From dc0f91071c3aedd89e9b415e21bb4add91822fd9 Mon Sep 17 00:00:00 2001 From: micaelae Date: Thu, 21 May 2026 16:17:57 -0700 Subject: [PATCH 1/7] chore: baseline tests --- .../src/utils/transaction.test.ts | 155 +++++++++++++++++- 1 file changed, 147 insertions(+), 8 deletions(-) diff --git a/packages/bridge-status-controller/src/utils/transaction.test.ts b/packages/bridge-status-controller/src/utils/transaction.test.ts index 34b5baadcc..2adc651ccd 100644 --- a/packages/bridge-status-controller/src/utils/transaction.test.ts +++ b/packages/bridge-status-controller/src/utils/transaction.test.ts @@ -1726,7 +1726,14 @@ describe('Bridge Status Controller Transaction Utils', () => { [FeeType.METABRIDGE]: { amount: '100000000000000000', }, - txFee: '50000000000000000', + ...(overrides.gasIncluded7702 || overrides.gasIncluded + ? { + txFee: { + maxFeePerGas: '50000000000000000', + maxPriorityFeePerGas: '50000000000000000', + }, + } + : {}), }, gasIncluded: overrides.gasIncluded ?? false, gasIncluded7702: overrides.gasIncluded7702 ?? false, @@ -1764,7 +1771,7 @@ describe('Bridge Status Controller Transaction Utils', () => { valueInCurrency: '200', usd: '200', }, - }) as never; + } as never); const createMockMessagingSystem = ( estimateGasFeeOverrides: Record = { estimates: {} }, @@ -1803,7 +1810,7 @@ describe('Bridge Status Controller Transaction Utils', () => { } return undefined; }), - }) as unknown as BridgeStatusControllerMessenger; + } as unknown as BridgeStatusControllerMessenger); beforeEach(() => { jest.clearAllMocks(); @@ -1831,6 +1838,14 @@ describe('Bridge Status Controller Transaction Utils', () => { expect(result.transactions).toHaveLength(2); expect(result.transactions[0].type).toBe(TransactionType.bridgeApproval); expect(result.transactions[1].type).toBe(TransactionType.bridge); + expect(result.transactions[1].params).toMatchInlineSnapshot(` + { + "data": "0xbridgeData", + "from": "0xUserAddress", + "to": "0xBridgeContract", + "value": "0x1000", + } + `); }); it('should handle gasIncluded7702 flag set to false', async () => { @@ -1851,6 +1866,17 @@ describe('Bridge Status Controller Transaction Utils', () => { // Should not use txFee for gas calculation when both gasIncluded and gasIncluded7702 are false expect(result.transactions).toHaveLength(1); expect(result.transactions[0].type).toBe(TransactionType.swap); + expect(result.transactions[0].params).toMatchInlineSnapshot(` + { + "data": "0xbridgeData", + "from": "0xUserAddress", + "gas": "0x5208", + "maxFeePerGas": "0x0", + "maxPriorityFeePerGas": "0x0", + "to": "0xBridgeContract", + "value": "0x1000", + } + `); }); it('uses swap approval when approval provided and isBridgeTx is false', async () => { @@ -1869,6 +1895,17 @@ describe('Bridge Status Controller Transaction Utils', () => { expect(result.transactions).toHaveLength(2); expect(result.transactions[0].type).toBe(TransactionType.swapApproval); expect(result.transactions[1].type).toBe(TransactionType.swap); + expect(result.transactions[1].params).toMatchInlineSnapshot(` + { + "data": "0xbridgeData", + "from": "0xUserAddress", + "gas": "0x5208", + "maxFeePerGas": "0x0", + "maxPriorityFeePerGas": "0x0", + "to": "0xBridgeContract", + "value": "0x1000", + } + `); }); it('uses swap approval type for resetApproval when isBridgeTx is false', async () => { @@ -1911,6 +1948,17 @@ describe('Bridge Status Controller Transaction Utils', () => { expect(result.transactions).toHaveLength(2); expect(result.transactions[0].type).toBe(TransactionType.bridgeApproval); expect(result.transactions[1].type).toBe(TransactionType.bridge); + expect(result.transactions[1].params).toMatchInlineSnapshot(` + { + "data": "0xbridgeData", + "from": "0xUserAddress", + "gas": "0x5208", + "maxFeePerGas": "0xb1a2bc2ec50000", + "maxPriorityFeePerGas": "0xb1a2bc2ec50000", + "to": "0xBridgeContract", + "value": "0x1000", + } + `); }); it('should set isGasFeeIncluded to false and set disable7702 to true when gasIncluded7702 is undefined', async () => { @@ -1927,6 +1975,36 @@ describe('Bridge Status Controller Transaction Utils', () => { expect(result.isGasFeeIncluded).toBe(false); expect(result.disable7702).toBe(true); + expect(result).toMatchInlineSnapshot(` + { + "disable7702": true, + "from": "0xUserAddress", + "isGasFeeIncluded": false, + "isGasFeeSponsored": false, + "isInternal": true, + "networkClientId": undefined, + "origin": "metamask", + "requireApproval": false, + "transactions": [ + { + "assetsFiatValues": { + "receiving": "200", + "sending": "100", + }, + "params": { + "data": "0xbridgeData", + "from": "0xUserAddress", + "gas": "0x5208", + "maxFeePerGas": "0x0", + "maxPriorityFeePerGas": "0x0", + "to": "0xBridgeContract", + "value": "0x1000", + }, + "type": "swap", + }, + ], + } + `); }); it('should set isGasFeeIncluded to true and disable7702 to false when gasIncluded7702 is true', async () => { @@ -1943,6 +2021,33 @@ describe('Bridge Status Controller Transaction Utils', () => { expect(result.isGasFeeIncluded).toBe(true); expect(result.disable7702).toBe(false); + expect(result).toMatchInlineSnapshot(` + { + "disable7702": false, + "from": "0xUserAddress", + "isGasFeeIncluded": true, + "isGasFeeSponsored": false, + "isInternal": true, + "networkClientId": undefined, + "origin": "metamask", + "requireApproval": false, + "transactions": [ + { + "assetsFiatValues": { + "receiving": "200", + "sending": "100", + }, + "params": { + "data": "0xbridgeData", + "from": "0xUserAddress", + "to": "0xBridgeContract", + "value": "0x1000", + }, + "type": "swap", + }, + ], + } + `); }); it('should set isGasFeeIncluded to false and disable7702 to true when gasIncluded7702 is false', async () => { @@ -1959,6 +2064,36 @@ describe('Bridge Status Controller Transaction Utils', () => { expect(result.isGasFeeIncluded).toBe(false); expect(result.disable7702).toBe(true); + expect(result).toMatchInlineSnapshot(` + { + "disable7702": true, + "from": "0xUserAddress", + "isGasFeeIncluded": false, + "isGasFeeSponsored": false, + "isInternal": true, + "networkClientId": undefined, + "origin": "metamask", + "requireApproval": false, + "transactions": [ + { + "assetsFiatValues": { + "receiving": "200", + "sending": "100", + }, + "params": { + "data": "0xbridgeData", + "from": "0xUserAddress", + "gas": "0x5208", + "maxFeePerGas": "0x0", + "maxPriorityFeePerGas": "0x0", + "to": "0xBridgeContract", + "value": "0x1000", + }, + "type": "swap", + }, + ], + } + `); }); it('should enable 7702 but include gas fields when isDelegatedAccount is true and gasIncluded7702 is false', async () => { @@ -2052,11 +2187,15 @@ describe('Bridge Status Controller Transaction Utils', () => { ).toHaveLength(0); // Transaction params should NOT include gas fields expect(result.transactions).toHaveLength(1); - expect(result.transactions[0].params).not.toHaveProperty('gas'); - expect(result.transactions[0].params).not.toHaveProperty('maxFeePerGas'); - expect(result.transactions[0].params).not.toHaveProperty( - 'maxPriorityFeePerGas', - ); + // These are the txFee values from the quote response + expect(result.transactions[0].params).toMatchInlineSnapshot(` + { + "data": "0xbridgeData", + "from": "0xUserAddress", + "to": "0xBridgeContract", + "value": "0x1000", + } + `); }); }); From 980668443ba51d51696b0b5d6a21be271d2c5272 Mon Sep 17 00:00:00 2001 From: micaelae Date: Thu, 21 May 2026 11:58:37 -0700 Subject: [PATCH 2/7] chore: remove unused GetGasFeeState call --- .../bridge-status-controller.test.ts.snap | 78 ------------------- .../src/bridge-status-controller.test.ts | 54 +------------ .../bridge-status-controller/src/types.ts | 2 - .../src/utils/gas.test.ts | 31 +------- .../src/utils/transaction.test.ts | 21 ----- .../src/utils/transaction.ts | 16 ---- 6 files changed, 6 insertions(+), 196 deletions(-) diff --git a/packages/bridge-status-controller/src/__snapshots__/bridge-status-controller.test.ts.snap b/packages/bridge-status-controller/src/__snapshots__/bridge-status-controller.test.ts.snap index 06e65352d1..b10b9463fe 100644 --- a/packages/bridge-status-controller/src/__snapshots__/bridge-status-controller.test.ts.snap +++ b/packages/bridge-status-controller/src/__snapshots__/bridge-status-controller.test.ts.snap @@ -652,9 +652,6 @@ exports[`BridgeStatusController submitTx: EVM bridge should delay after submitti "NetworkController:findNetworkClientIdByChainId", "0xa4b1", ], - [ - "GasFeeController:getState", - ], [ "TransactionController:estimateGasFee", { @@ -704,9 +701,6 @@ exports[`BridgeStatusController submitTx: EVM bridge should delay after submitti "NetworkController:findNetworkClientIdByChainId", "0xa4b1", ], - [ - "GasFeeController:getState", - ], [ "TransactionController:estimateGasFee", { @@ -977,9 +971,6 @@ exports[`BridgeStatusController submitTx: EVM bridge should delay after submitti "NetworkController:findNetworkClientIdByChainId", "0xa4b1", ], - [ - "GasFeeController:getState", - ], [ "TransactionController:estimateGasFee", { @@ -1029,9 +1020,6 @@ exports[`BridgeStatusController submitTx: EVM bridge should delay after submitti "NetworkController:findNetworkClientIdByChainId", "0xa4b1", ], - [ - "GasFeeController:getState", - ], [ "TransactionController:estimateGasFee", { @@ -1352,9 +1340,6 @@ exports[`BridgeStatusController submitTx: EVM bridge should handle smart transac "NetworkController:findNetworkClientIdByChainId", "0xa4b1", ], - [ - "GasFeeController:getState", - ], [ "TransactionController:estimateGasFee", { @@ -1604,9 +1589,6 @@ exports[`BridgeStatusController submitTx: EVM bridge should not call handleMobil "NetworkController:findNetworkClientIdByChainId", "0xa4b1", ], - [ - "GasFeeController:getState", - ], [ "TransactionController:estimateGasFee", { @@ -1656,9 +1638,6 @@ exports[`BridgeStatusController submitTx: EVM bridge should not call handleMobil "NetworkController:findNetworkClientIdByChainId", "0xa4b1", ], - [ - "GasFeeController:getState", - ], [ "TransactionController:estimateGasFee", { @@ -1932,9 +1911,6 @@ exports[`BridgeStatusController submitTx: EVM bridge should not call handleMobil "NetworkController:findNetworkClientIdByChainId", "0xa4b1", ], - [ - "GasFeeController:getState", - ], [ "TransactionController:estimateGasFee", { @@ -1984,9 +1960,6 @@ exports[`BridgeStatusController submitTx: EVM bridge should not call handleMobil "NetworkController:findNetworkClientIdByChainId", "0xa4b1", ], - [ - "GasFeeController:getState", - ], [ "TransactionController:estimateGasFee", { @@ -2260,9 +2233,6 @@ exports[`BridgeStatusController submitTx: EVM bridge should reset USDT allowance "NetworkController:findNetworkClientIdByChainId", "0x1", ], - [ - "GasFeeController:getState", - ], [ "TransactionController:estimateGasFee", { @@ -2312,9 +2282,6 @@ exports[`BridgeStatusController submitTx: EVM bridge should reset USDT allowance "NetworkController:findNetworkClientIdByChainId", "0xa4b1", ], - [ - "GasFeeController:getState", - ], [ "TransactionController:estimateGasFee", { @@ -2364,9 +2331,6 @@ exports[`BridgeStatusController submitTx: EVM bridge should reset USDT allowance "NetworkController:findNetworkClientIdByChainId", "0xa4b1", ], - [ - "GasFeeController:getState", - ], [ "TransactionController:estimateGasFee", { @@ -2615,9 +2579,6 @@ exports[`BridgeStatusController submitTx: EVM bridge should successfully submit "NetworkController:findNetworkClientIdByChainId", "0xa4b1", ], - [ - "GasFeeController:getState", - ], [ "TransactionController:estimateGasFee", { @@ -2667,9 +2628,6 @@ exports[`BridgeStatusController submitTx: EVM bridge should successfully submit "NetworkController:findNetworkClientIdByChainId", "0xa4b1", ], - [ - "GasFeeController:getState", - ], [ "TransactionController:estimateGasFee", { @@ -2918,9 +2876,6 @@ exports[`BridgeStatusController submitTx: EVM bridge should successfully submit "NetworkController:findNetworkClientIdByChainId", "0xa4b1", ], - [ - "GasFeeController:getState", - ], [ "TransactionController:estimateGasFee", { @@ -3021,9 +2976,6 @@ exports[`BridgeStatusController submitTx: EVM bridge should throw an error if ap "NetworkController:findNetworkClientIdByChainId", "0xa4b1", ], - [ - "GasFeeController:getState", - ], [ "TransactionController:estimateGasFee", { @@ -3150,9 +3102,6 @@ exports[`BridgeStatusController submitTx: EVM bridge should throw an error if ap "NetworkController:findNetworkClientIdByChainId", "0xa4b1", ], - [ - "GasFeeController:getState", - ], [ "TransactionController:estimateGasFee", { @@ -3430,9 +3379,6 @@ exports[`BridgeStatusController submitTx: EVM bridge waits for approval tx confi "NetworkController:findNetworkClientIdByChainId", "0xa4b1", ], - [ - "GasFeeController:getState", - ], [ "TransactionController:estimateGasFee", { @@ -3482,9 +3428,6 @@ exports[`BridgeStatusController submitTx: EVM bridge waits for approval tx confi "NetworkController:findNetworkClientIdByChainId", "0xa4b1", ], - [ - "GasFeeController:getState", - ], [ "TransactionController:estimateGasFee", { @@ -3629,9 +3572,6 @@ exports[`BridgeStatusController submitTx: EVM swap should gracefully handle isAt "NetworkController:findNetworkClientIdByChainId", "0xa4b1", ], - [ - "GasFeeController:getState", - ], [ "TransactionController:estimateGasFee", { @@ -3681,9 +3621,6 @@ exports[`BridgeStatusController submitTx: EVM swap should gracefully handle isAt "NetworkController:findNetworkClientIdByChainId", "0xa4b1", ], - [ - "GasFeeController:getState", - ], [ "TransactionController:estimateGasFee", { @@ -4091,9 +4028,6 @@ exports[`BridgeStatusController submitTx: EVM swap should handle smart transacti "NetworkController:findNetworkClientIdByChainId", "0xa4b1", ], - [ - "GasFeeController:getState", - ], [ "TransactionController:estimateGasFee", { @@ -4108,9 +4042,6 @@ exports[`BridgeStatusController submitTx: EVM swap should handle smart transacti }, }, ], - [ - "GasFeeController:getState", - ], [ "TransactionController:estimateGasFee", { @@ -4218,9 +4149,6 @@ exports[`BridgeStatusController submitTx: EVM swap should successfully submit an "NetworkController:findNetworkClientIdByChainId", "0xa4b1", ], - [ - "GasFeeController:getState", - ], [ "TransactionController:estimateGasFee", { @@ -4270,9 +4198,6 @@ exports[`BridgeStatusController submitTx: EVM swap should successfully submit an "NetworkController:findNetworkClientIdByChainId", "0xa4b1", ], - [ - "GasFeeController:getState", - ], [ "TransactionController:estimateGasFee", { @@ -4517,9 +4442,6 @@ exports[`BridgeStatusController submitTx: EVM swap should successfully submit an "NetworkController:findNetworkClientIdByChainId", "0xa4b1", ], - [ - "GasFeeController:getState", - ], [ "TransactionController:estimateGasFee", { diff --git a/packages/bridge-status-controller/src/bridge-status-controller.test.ts b/packages/bridge-status-controller/src/bridge-status-controller.test.ts index e03bf27b4e..6e0246837a 100644 --- a/packages/bridge-status-controller/src/bridge-status-controller.test.ts +++ b/packages/bridge-status-controller/src/bridge-status-controller.test.ts @@ -580,7 +580,6 @@ function getControllerMessenger( 'TransactionController:isAtomicBatchSupported', 'BridgeController:trackUnifiedSwapBridgeEvent', 'BridgeController:stopPollingForQuotes', - 'GasFeeController:getState', 'RemoteFeatureFlagController:getState', 'AuthenticationController:getBearerToken', 'KeyringController:signTypedMessage', @@ -2863,9 +2862,6 @@ describe('BridgeStatusController', () => { const setupApprovalMocks = (mockCall: jest.Mock) => { mockCall.mockReturnValueOnce(mockSelectedAccount); mockCall.mockReturnValueOnce('arbitrum-client-id'); - mockCall.mockReturnValueOnce({ - gasFeeEstimates: { estimatedBaseFee: '0x1234' }, - }); mockMessengerCall.mockResolvedValueOnce(mockEstimateGasFeeResult); mockMessengerCall.mockResolvedValueOnce({ transactionMeta: mockApprovalTxMeta, @@ -2879,9 +2875,6 @@ describe('BridgeStatusController', () => { const setupBridgeMocks = (mockCall: jest.Mock) => { mockCall.mockReturnValueOnce(mockSelectedAccount); mockCall.mockReturnValueOnce('arbitrum'); - mockCall.mockReturnValueOnce({ - gasFeeEstimates: { estimatedBaseFee: '0x1234' }, - }); mockCall.mockResolvedValueOnce(mockEstimateGasFeeResult); mockCall.mockResolvedValueOnce({ transactionMeta: mockEvmTxMeta, @@ -2901,9 +2894,6 @@ describe('BridgeStatusController', () => { const setupBridgeStxMocks = (mockCall: jest.Mock) => { mockCall.mockReturnValueOnce(mockSelectedAccount); mockCall.mockReturnValueOnce('arbitrum'); - mockCall.mockReturnValueOnce({ - gasFeeEstimates: { estimatedBaseFee: '0x1234' }, - }); mockCall.mockResolvedValueOnce(mockEstimateGasFeeResult); addTransactionBatchFn.mockResolvedValueOnce({ batchId: 'batchId1', @@ -3188,17 +3178,8 @@ describe('BridgeStatusController', () => { setupEventTrackingMocks(mockMessengerCall); mockMessengerCall.mockReturnValueOnce(mockSelectedAccount); mockMessengerCall.mockReturnValueOnce('arbitrum'); - mockMessengerCall.mockReturnValueOnce({ - gasFeeEstimates: { estimatedBaseFee: '0x1234' }, - }); mockMessengerCall.mockResolvedValueOnce(mockEstimateGasFeeResult); - mockMessengerCall.mockReturnValueOnce({ - gasFeeEstimates: { estimatedBaseFee: '0x1234' }, - }); mockMessengerCall.mockResolvedValueOnce(mockEstimateGasFeeResult); - mockMessengerCall.mockReturnValueOnce({ - gasFeeEstimates: { estimatedBaseFee: '0x1234' }, - }); mockMessengerCall.mockResolvedValueOnce(mockEstimateGasFeeResult); addTransactionBatchFn.mockResolvedValueOnce({ batchId: 'batchId1', @@ -3257,7 +3238,7 @@ describe('BridgeStatusController', () => { action === 'TransactionController:updateTransaction', ), ).toHaveLength(1); - expect(mockMessengerCall).toHaveBeenCalledTimes(14); + expect(mockMessengerCall).toHaveBeenCalledTimes(11); }, ); }); @@ -3266,9 +3247,6 @@ describe('BridgeStatusController', () => { setupEventTrackingMocks(mockMessengerCall); mockMessengerCall.mockReturnValueOnce(mockSelectedAccount); mockMessengerCall.mockReturnValueOnce('arbitrum-client-id'); - mockMessengerCall.mockReturnValueOnce({ - gasFeeEstimates: { estimatedBaseFee: '0x1234' }, - }); mockMessengerCall.mockResolvedValueOnce(mockEstimateGasFeeResult); mockMessengerCall.mockRejectedValueOnce(new Error('Approval tx failed')); @@ -3294,9 +3272,6 @@ describe('BridgeStatusController', () => { setupEventTrackingMocks(mockMessengerCall); mockMessengerCall.mockReturnValueOnce(mockSelectedAccount); mockMessengerCall.mockReturnValueOnce('arbitrum-client-id'); - mockMessengerCall.mockReturnValueOnce({ - gasFeeEstimates: { estimatedBaseFee: '0x1234' }, - }); mockMessengerCall.mockResolvedValueOnce(mockEstimateGasFeeResult); mockMessengerCall.mockResolvedValueOnce({ transactionMeta: undefined, @@ -3656,9 +3631,6 @@ describe('BridgeStatusController', () => { // Setup for trade tx (no approval) mockMessengerCall.mockReturnValueOnce(mockSelectedAccount); mockMessengerCall.mockReturnValueOnce('arbitrum-client-id'); - mockMessengerCall.mockReturnValueOnce({ - gasFeeEstimates: { estimatedBaseFee: '0x1234' }, - }); mockMessengerCall.mockResolvedValueOnce({ estimates: { high: { @@ -3859,9 +3831,6 @@ describe('BridgeStatusController', () => { const setupApprovalMocks = () => { mockMessengerCall.mockReturnValueOnce(mockSelectedAccount); mockMessengerCall.mockReturnValueOnce('arbitrum-client-id'); - mockMessengerCall.mockReturnValueOnce({ - gasFeeEstimates: { estimatedBaseFee: '0x1234' }, - }); mockMessengerCall.mockResolvedValueOnce(mockEstimateGasFeeResult); mockMessengerCall.mockResolvedValueOnce({ transactionMeta: mockApprovalTxMeta, @@ -3875,9 +3844,6 @@ describe('BridgeStatusController', () => { const setupBridgeMocks = () => { mockMessengerCall.mockReturnValueOnce(mockSelectedAccount); mockMessengerCall.mockReturnValueOnce('arbitrum'); - mockMessengerCall.mockReturnValueOnce({ - gasFeeEstimates: { estimatedBaseFee: '0x1234' }, - }); mockMessengerCall.mockResolvedValueOnce(mockEstimateGasFeeResult); mockMessengerCall.mockResolvedValueOnce({ transactionMeta: mockEvmTxMeta, @@ -3919,7 +3885,7 @@ describe('BridgeStatusController', () => { ([action]) => action === 'TransactionController:addTransaction', ), ).toHaveLength(2); - expect(mockMessengerCall).toHaveBeenCalledTimes(16); + expect(mockMessengerCall).toHaveBeenCalledTimes(14); }, ); }); @@ -4379,13 +4345,7 @@ describe('BridgeStatusController', () => { setupEventTrackingMocks(mockMessengerCall); mockMessengerCall.mockReturnValueOnce(mockSelectedAccount); mockMessengerCall.mockReturnValueOnce('arbitrum'); - mockMessengerCall.mockReturnValueOnce({ - gasFeeEstimates: { estimatedBaseFee: '0x1234' }, - }); mockMessengerCall.mockResolvedValueOnce(mockEstimateGasFeeResult); - mockMessengerCall.mockReturnValueOnce({ - gasFeeEstimates: { estimatedBaseFee: '0x1234' }, - }); mockMessengerCall.mockResolvedValueOnce(mockEstimateGasFeeResult); addTransactionBatchFn.mockResolvedValueOnce({ batchId: 'batchId1', @@ -4505,13 +4465,7 @@ describe('BridgeStatusController', () => { setupEventTrackingMocks(mockMessengerCall); mockMessengerCall.mockReturnValueOnce(mockSelectedAccount); mockMessengerCall.mockReturnValueOnce('arbitrum'); - mockMessengerCall.mockReturnValueOnce({ - gasFeeEstimates: { estimatedBaseFee: '0x1234' }, - }); mockMessengerCall.mockResolvedValueOnce(mockEstimateGasFeeResult); - mockMessengerCall.mockReturnValueOnce({ - gasFeeEstimates: { estimatedBaseFee: '0x1234' }, - }); mockMessengerCall.mockResolvedValueOnce(mockEstimateGasFeeResult); addTransactionBatchFn.mockResolvedValueOnce({ batchId: 'batchId1', @@ -4552,7 +4506,7 @@ describe('BridgeStatusController', () => { ), ).toHaveLength(0); expect(addTransactionBatchFn).toHaveBeenCalledTimes(1); - expect(mockMessengerCall).toHaveBeenCalledTimes(12); + expect(mockMessengerCall).toHaveBeenCalledTimes(10); expect( mockCalls.find( ([action, eventName]) => @@ -4628,7 +4582,7 @@ describe('BridgeStatusController', () => { ([action]) => action === 'TransactionController:addTransaction', ), ).toHaveLength(2); - expect(mockMessengerCall).toHaveBeenCalledTimes(16); + expect(mockMessengerCall).toHaveBeenCalledTimes(14); expect(addTransactionBatchFn).not.toHaveBeenCalled(); expect(mockCalls).toMatchSnapshot(); expect(result).toMatchInlineSnapshot(` diff --git a/packages/bridge-status-controller/src/types.ts b/packages/bridge-status-controller/src/types.ts index 05222f513d..287b835035 100644 --- a/packages/bridge-status-controller/src/types.ts +++ b/packages/bridge-status-controller/src/types.ts @@ -13,7 +13,6 @@ import type { QuoteResponse, MetaMetricsSwapsEventSource, } from '@metamask/bridge-controller'; -import type { GetGasFeeState } from '@metamask/gas-fee-controller'; import type { KeyringControllerSignTypedMessageAction } from '@metamask/keyring-controller'; import type { Messenger } from '@metamask/messenger'; import type { @@ -312,7 +311,6 @@ type AllowedActions = | TransactionControllerIsAtomicBatchSupportedAction | BridgeControllerAction | BridgeControllerAction - | GetGasFeeState | AccountsControllerGetAccountByAddressAction | AuthenticationControllerGetBearerTokenAction | KeyringControllerSignTypedMessageAction; diff --git a/packages/bridge-status-controller/src/utils/gas.test.ts b/packages/bridge-status-controller/src/utils/gas.test.ts index 5967defba9..87aa092e11 100644 --- a/packages/bridge-status-controller/src/utils/gas.test.ts +++ b/packages/bridge-status-controller/src/utils/gas.test.ts @@ -5,7 +5,6 @@ import { import type { GasFeeState } from '@metamask/gas-fee-controller'; import type { FeeMarketGasFeeEstimates } from '@metamask/transaction-controller'; import { GasFeeEstimateLevel } from '@metamask/transaction-controller'; -import { BigNumber } from 'bignumber.js'; import { calculateGasFees, getTxGasEstimates } from './transaction'; @@ -39,10 +38,7 @@ describe('gas calculation utils', () => { jest.clearAllMocks(); }); - it('should return gas fee estimates with baseAndPriorityFeePerGas when maxPriorityFeePerGas is provided', async () => { - mockMessenger.call.mockReturnValueOnce({ - gasFeeEstimates: mockNetworkGasFeeEstimates, - }); + it('should return gas fee estimates when maxPriorityFeePerGas is provided', async () => { mockMessenger.call.mockReturnValueOnce({ estimates: mockTxGasFeeEstimates, }); @@ -54,20 +50,12 @@ describe('gas calculation utils', () => { // Verify the result expect(result).toStrictEqual({ - baseAndPriorityFeePerGas: new BigNumber('0.00000001', 10) - .times(10 ** 9) - .plus('0x1234567890', 16), maxFeePerGas: '0x1234567890', maxPriorityFeePerGas: '0x1234567890', }); }); it('should handle missing property in txGasFeeEstimates', async () => { - mockMessenger.call.mockReturnValueOnce({ - gasFeeEstimates: { - estimatedBaseFee: '0.00000001', - } as GasFeeState['gasFeeEstimates'], - }); mockMessenger.call.mockReturnValueOnce({ estimates: {}, }); @@ -75,7 +63,6 @@ describe('gas calculation utils', () => { const result = await getTxGasEstimates(mockMessenger); expect(result).toStrictEqual({ - baseAndPriorityFeePerGas: undefined, maxFeePerGas: undefined, maxPriorityFeePerGas: undefined, }); @@ -98,9 +85,6 @@ describe('gas calculation utils', () => { }, } as FeeMarketGasFeeEstimates; - mockMessenger.call.mockReturnValueOnce({ - gasFeeEstimates: mockNetworkGasFeeEstimates, - }); mockMessenger.call.mockReturnValueOnce({ estimates, }); @@ -121,9 +105,6 @@ describe('gas calculation utils', () => { it('should use default estimatedBaseFee when not provided in networkGasFeeEstimates', async () => { // Mock data mockMessengerCall.mockClear(); - mockMessengerCall.mockReturnValueOnce({ - gasFeeEstimates: {}, - }); mockMessengerCall.mockResolvedValueOnce({ estimates: mockTxGasFeeEstimates, }); @@ -136,9 +117,6 @@ describe('gas calculation utils', () => { // Verify the result expect(result).toStrictEqual({ - baseAndPriorityFeePerGas: new BigNumber('0', 10) - .times(10 ** 9) - .plus('0x1234567890', 16), maxFeePerGas: '0x1234567890', maxPriorityFeePerGas: '0x1234567890', }); @@ -197,12 +175,7 @@ describe('gas calculation utils', () => { ])( 'should return $expectedGas if trade.gasLimit is $gasLimit', async ({ gasLimit, expectedGas }) => { - const mockCall = jest.fn().mockReturnValueOnce({ - gasFeeEstimates: { - estimatedBaseFee: '0x1234', - }, - }); - mockCall.mockResolvedValueOnce({ + const mockCall = jest.fn().mockResolvedValueOnce({ estimates: { [GasFeeEstimateLevel.Medium]: { maxFeePerGas: '0x1234567890', diff --git a/packages/bridge-status-controller/src/utils/transaction.test.ts b/packages/bridge-status-controller/src/utils/transaction.test.ts index 2adc651ccd..a89ca2f80a 100644 --- a/packages/bridge-status-controller/src/utils/transaction.test.ts +++ b/packages/bridge-status-controller/src/utils/transaction.test.ts @@ -1787,24 +1787,6 @@ describe('Bridge Status Controller Transaction Utils', () => { rpcUrl: 'https://mainnet.infura.io/v3/API_KEY', }; } - if (method === 'GasFeeController:getState') { - return { - gasFeeEstimates: { - low: { - suggestedMaxFeePerGas: '20', - suggestedMaxPriorityFeePerGas: '1', - }, - medium: { - suggestedMaxFeePerGas: '30', - suggestedMaxPriorityFeePerGas: '2', - }, - high: { - suggestedMaxFeePerGas: '40', - suggestedMaxPriorityFeePerGas: '3', - }, - }, - }; - } if (method === 'TransactionController:estimateGasFee') { return estimateGasFeeOverrides; } @@ -2133,9 +2115,6 @@ describe('Bridge Status Controller Transaction Utils', () => { "NetworkController:findNetworkClientIdByChainId", "0x1", ], - [ - "GasFeeController:getState", - ], [ "TransactionController:estimateGasFee", { diff --git a/packages/bridge-status-controller/src/utils/transaction.ts b/packages/bridge-status-controller/src/utils/transaction.ts index bb8663727b..d074bdfcb4 100644 --- a/packages/bridge-status-controller/src/utils/transaction.ts +++ b/packages/bridge-status-controller/src/utils/transaction.ts @@ -69,29 +69,13 @@ export const getTxGasEstimates = async ( messenger: BridgeStatusControllerMessenger, estimateGasFeeParams: Parameters[0], ) => { - const { gasFeeEstimates } = messenger.call('GasFeeController:getState'); - const estimatedBaseFee = - 'estimatedBaseFee' in gasFeeEstimates - ? gasFeeEstimates.estimatedBaseFee - : '0'; - // Get transaction's 1559 gas fee estimates const { maxFeePerGas, maxPriorityFeePerGas } = await getGasFeeEstimates( messenger, estimateGasFeeParams, ); - /** - * @deprecated this is unused - */ - const baseAndPriorityFeePerGas = maxPriorityFeePerGas - ? new BigNumber(estimatedBaseFee, 10) - .times(10 ** 9) - .plus(maxPriorityFeePerGas, 16) - : undefined; - return { - baseAndPriorityFeePerGas, maxFeePerGas, maxPriorityFeePerGas, }; From f0c1bbb9334b94ab409f8101d760f9d328b5e3f4 Mon Sep 17 00:00:00 2001 From: micaelae Date: Thu, 21 May 2026 11:59:29 -0700 Subject: [PATCH 3/7] test: history-less metrics --- .../bridge-status-controller.test.ts.snap | 4 +- .../src/bridge-status-controller.test.ts | 82 ++++++++++++++++++- 2 files changed, 82 insertions(+), 4 deletions(-) diff --git a/packages/bridge-status-controller/src/__snapshots__/bridge-status-controller.test.ts.snap b/packages/bridge-status-controller/src/__snapshots__/bridge-status-controller.test.ts.snap index b10b9463fe..d28828aced 100644 --- a/packages/bridge-status-controller/src/__snapshots__/bridge-status-controller.test.ts.snap +++ b/packages/bridge-status-controller/src/__snapshots__/bridge-status-controller.test.ts.snap @@ -14,7 +14,7 @@ exports[`BridgeStatusController constructor rehydrates the tx history state 1`] "hasApprovalTx": false, "initialDestAssetBalance": undefined, "isStxEnabled": false, - "location": undefined, + "location": "Main View", "originalTransactionId": "bridgeTxMetaId1", "pricingData": { "amountSent": "1.234", @@ -269,7 +269,7 @@ exports[`BridgeStatusController startPollingForBridgeTxStatus sets the inital tx "hasApprovalTx": false, "initialDestAssetBalance": undefined, "isStxEnabled": false, - "location": undefined, + "location": "Main View", "originalTransactionId": "bridgeTxMetaId1", "pricingData": { "amountSent": "1.234", diff --git a/packages/bridge-status-controller/src/bridge-status-controller.test.ts b/packages/bridge-status-controller/src/bridge-status-controller.test.ts index 6e0246837a..25fd771166 100644 --- a/packages/bridge-status-controller/src/bridge-status-controller.test.ts +++ b/packages/bridge-status-controller/src/bridge-status-controller.test.ts @@ -17,6 +17,7 @@ import { FeatureId, getQuotesReceivedProperties, UnifiedSwapBridgeEventName, + MetaMetricsSwapsEventSource, } from '@metamask/bridge-controller'; import { Messenger, MOCK_ANY_NAMESPACE } from '@metamask/messenger'; import type { @@ -56,6 +57,7 @@ import type { } from './types'; import * as bridgeStatusUtils from './utils/bridge-status'; import * as historyUtils from './utils/history'; +import * as metricsUtils from './utils/metrics'; import * as transactionUtils from './utils/transaction'; type AllBridgeStatusControllerActions = @@ -332,6 +334,7 @@ const getMockStartPollingForBridgeTxStatusArgs = ({ initialDestAssetBalance: undefined, targetContractAddress: '0x23981fC34e69eeDFE2BD9a0a9fCb0719Fe09DbFC', isStxEnabled, + location: MetaMetricsSwapsEventSource.MainView, }); const MockTxHistory = { @@ -432,7 +435,7 @@ const MockTxHistory = { completionTime: undefined, attempts, featureId, - location: undefined, + location: MetaMetricsSwapsEventSource.MainView, }, }), getUnknown: ({ @@ -547,7 +550,7 @@ const MockTxHistory = { isStxEnabled: true, hasApprovalTx: false, attempts: undefined, - location: undefined, + location: MetaMetricsSwapsEventSource.MainView, }, }), }; @@ -5054,6 +5057,81 @@ describe('BridgeStatusController', () => { expect(messengerCallSpy.mock.lastCall).toMatchSnapshot(); }); + it('should use txMeta properties if history item does not exist', () => { + const messengerCallSpy = jest.spyOn(mockBridgeStatusMessenger, 'call'); + + const transactionMeta = { + error: { name: 'Error', message: 'tx-error' }, + chainId: CHAIN_IDS.ARBITRUM, + networkClientId: 'eth-id', + time: Date.now(), + txParams: {} as unknown as TransactionParams, + type: TransactionType.bridge, + status: TransactionStatus.failed, + id: 'bridgeTxMetaId1', + }; + const getEVMTxPropertiesFromTransactionMetaSpy = jest + .spyOn(metricsUtils, 'getEVMTxPropertiesFromTransactionMeta') + .mockImplementationOnce(() => { + bridgeStatusController.wipeBridgeStatus({ + address: 'otherAccount', + ignoreNetwork: true, + }); + return metricsUtils.getEVMTxPropertiesFromTransactionMeta( + transactionMeta, + ); + }); + mockMessenger.publish( + 'TransactionController:transactionStatusUpdated', + { + transactionMeta, + }, + ); + + expect(getEVMTxPropertiesFromTransactionMetaSpy).toHaveBeenCalledTimes( + 2, + ); + expect(bridgeStatusController.state.txHistory).toStrictEqual({}); + expect(messengerCallSpy.mock.lastCall).toMatchInlineSnapshot(` + [ + "BridgeController:trackUnifiedSwapBridgeEvent", + "Unified SwapBridge Failed", + { + "account_hardware_type": null, + "action_type": "swapbridge-v1", + "actual_time_minutes": 0, + "chain_id_destination": "eip155:42161", + "chain_id_source": "eip155:42161", + "custom_slippage": false, + "error_message": "Transaction failed. tx-error", + "gas_included": false, + "gas_included_7702": false, + "is_hardware_wallet": false, + "location": "Main View", + "price_impact": 0, + "provider": "", + "quote_vs_execution_ratio": 0, + "quoted_time_minutes": 0, + "quoted_vs_used_gas_ratio": 0, + "security_warnings": [], + "source_transaction": "FAILED", + "stx_enabled": false, + "swap_type": "crosschain", + "token_address_destination": "eip155:42161/slip44:60", + "token_address_source": "eip155:42161/slip44:60", + "token_security_type_destination": null, + "token_symbol_destination": "", + "token_symbol_source": "", + "usd_actual_gas": 0, + "usd_actual_return": 0, + "usd_amount_source": 0, + "usd_quoted_gas": 0, + "usd_quoted_return": 0, + }, + ] + `); + }); + it('should include ab_tests and active_ab_tests from history in tracked event properties', () => { const abTestsTxMetaId = 'bridgeTxMetaIdAbTests'; mockMessenger.call( From eae8297bbb4f34ccd0f367aca0a661c8d83a9acd Mon Sep 17 00:00:00 2001 From: micaelae Date: Thu, 21 May 2026 12:16:15 -0700 Subject: [PATCH 4/7] refactor: handle BatchSell quoteResponse array in transaction utils fix: delegated account + gasIncluded7702=false --- eslint-suppressions.json | 2 +- .../bridge-status-controller/CHANGELOG.md | 9 + .../bridge-status-controller.test.ts.snap | 153 +---- .../src/bridge-status-controller.test.ts | 8 +- .../src/bridge-status-controller.ts | 46 +- .../bridge-status-controller/src/types.ts | 26 + .../src/utils/gas.test.ts | 201 ------ .../src/utils/transaction.test.ts | 248 ++++--- .../src/utils/transaction.ts | 617 ++++++++---------- 9 files changed, 540 insertions(+), 770 deletions(-) delete mode 100644 packages/bridge-status-controller/src/utils/gas.test.ts diff --git a/eslint-suppressions.json b/eslint-suppressions.json index 5ba155be96..fd16ca9414 100644 --- a/eslint-suppressions.json +++ b/eslint-suppressions.json @@ -742,7 +742,7 @@ }, "packages/bridge-status-controller/src/utils/transaction.ts": { "no-restricted-syntax": { - "count": 4 + "count": 2 } }, "packages/chain-agnostic-permission/src/caip25Permission.ts": { diff --git a/packages/bridge-status-controller/CHANGELOG.md b/packages/bridge-status-controller/CHANGELOG.md index 2b732e4b5d..695300f67c 100644 --- a/packages/bridge-status-controller/CHANGELOG.md +++ b/packages/bridge-status-controller/CHANGELOG.md @@ -10,8 +10,17 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ### Changed - Bump `@metamask/bridge-controller` from `^72.0.4` to `^73.0.1` ([#8850](https://github.com/MetaMask/core/pull/8850), [#8866](https://github.com/MetaMask/core/pull/8866)) +- Refactor batch transaction utils to handle multiple quote requests within a batch (for BatchSell integration) ([#8886](https://github.com/MetaMask/core/pull/8886)) + +### Removed + +- Remove unused GasFeeController:getState call result ([#8886](https://github.com/MetaMask/core/pull/8886)) - Remove unnecessary type assertions for bridge quotes ([#8805](https://github.com/MetaMask/core/pull/8805)) +### Fixed + +- Use txFee from the bridge-api whenever it's provided ([#8805](https://github.com/MetaMask/core/pull/8805)) + ## [71.2.0] ### Changed diff --git a/packages/bridge-status-controller/src/__snapshots__/bridge-status-controller.test.ts.snap b/packages/bridge-status-controller/src/__snapshots__/bridge-status-controller.test.ts.snap index d28828aced..e4360b51ac 100644 --- a/packages/bridge-status-controller/src/__snapshots__/bridge-status-controller.test.ts.snap +++ b/packages/bridge-status-controller/src/__snapshots__/bridge-status-controller.test.ts.snap @@ -658,11 +658,9 @@ exports[`BridgeStatusController submitTx: EVM bridge should delay after submitti "chainId": "0xa4b1", "networkClientId": "arbitrum-client-id", "transactionParams": { - "chainId": "0xa4b1", "data": "0xapprovalData", "from": "0xaccount1", - "gas": "21000", - "gasLimit": "21000", + "gas": "0x5208", "to": "0xtokenContract", "value": "0x0", }, @@ -671,11 +669,9 @@ exports[`BridgeStatusController submitTx: EVM bridge should delay after submitti [ "TransactionController:addTransaction", { - "chainId": "0xa4b1", "data": "0xapprovalData", "from": "0xaccount1", "gas": "0x5208", - "gasLimit": "21000", "maxFeePerGas": undefined, "maxPriorityFeePerGas": undefined, "to": "0xtokenContract", @@ -707,9 +703,9 @@ exports[`BridgeStatusController submitTx: EVM bridge should delay after submitti "chainId": "0xa4b1", "networkClientId": "arbitrum", "transactionParams": { - "chainId": "0xa4b1", "data": "0xdata", "from": "0xaccount1", + "gas": undefined, "to": "0xbridgeContract", "value": "0x0", }, @@ -718,7 +714,6 @@ exports[`BridgeStatusController submitTx: EVM bridge should delay after submitti [ "TransactionController:addTransaction", { - "chainId": "0xa4b1", "data": "0xdata", "from": "0xaccount1", "gas": undefined, @@ -977,11 +972,9 @@ exports[`BridgeStatusController submitTx: EVM bridge should delay after submitti "chainId": "0xa4b1", "networkClientId": "arbitrum-client-id", "transactionParams": { - "chainId": "0xa4b1", "data": "0xapprovalData", "from": "0xaccount1", - "gas": "21000", - "gasLimit": "21000", + "gas": "0x5208", "to": "0xtokenContract", "value": "0x0", }, @@ -990,11 +983,9 @@ exports[`BridgeStatusController submitTx: EVM bridge should delay after submitti [ "TransactionController:addTransaction", { - "chainId": "0xa4b1", "data": "0xapprovalData", "from": "0xaccount1", "gas": "0x5208", - "gasLimit": "21000", "maxFeePerGas": undefined, "maxPriorityFeePerGas": undefined, "to": "0xtokenContract", @@ -1026,9 +1017,9 @@ exports[`BridgeStatusController submitTx: EVM bridge should delay after submitti "chainId": "0xa4b1", "networkClientId": "arbitrum", "transactionParams": { - "chainId": "0xa4b1", "data": "0xdata", "from": "0xaccount1", + "gas": undefined, "to": "0xbridgeContract", "value": "0x0", }, @@ -1037,7 +1028,6 @@ exports[`BridgeStatusController submitTx: EVM bridge should delay after submitti [ "TransactionController:addTransaction", { - "chainId": "0xa4b1", "data": "0xdata", "from": "0xaccount1", "gas": undefined, @@ -1239,6 +1229,7 @@ exports[`BridgeStatusController submitTx: EVM bridge should handle smart transac [ [ { + "atomic": true, "disable7702": true, "from": "0xaccount1", "isGasFeeIncluded": false, @@ -1257,8 +1248,8 @@ exports[`BridgeStatusController submitTx: EVM bridge should handle smart transac "data": "0xdata", "from": "0xaccount1", "gas": "0x5208", - "maxFeePerGas": "0x0", - "maxPriorityFeePerGas": "0x0", + "maxFeePerGas": undefined, + "maxPriorityFeePerGas": undefined, "to": "0xbridgeContract", "value": "0x0", }, @@ -1348,7 +1339,7 @@ exports[`BridgeStatusController submitTx: EVM bridge should handle smart transac "transactionParams": { "data": "0xdata", "from": "0xaccount1", - "gas": "21000", + "gas": "0x5208", "to": "0xbridgeContract", "value": "0x0", }, @@ -1595,11 +1586,9 @@ exports[`BridgeStatusController submitTx: EVM bridge should not call handleMobil "chainId": "0xa4b1", "networkClientId": "arbitrum-client-id", "transactionParams": { - "chainId": "0xa4b1", "data": "0xapprovalData", "from": "0xaccount1", - "gas": "21000", - "gasLimit": "21000", + "gas": "0x5208", "to": "0xtokenContract", "value": "0x0", }, @@ -1608,11 +1597,9 @@ exports[`BridgeStatusController submitTx: EVM bridge should not call handleMobil [ "TransactionController:addTransaction", { - "chainId": "0xa4b1", "data": "0xapprovalData", "from": "0xaccount1", "gas": "0x5208", - "gasLimit": "21000", "maxFeePerGas": undefined, "maxPriorityFeePerGas": undefined, "to": "0xtokenContract", @@ -1644,11 +1631,9 @@ exports[`BridgeStatusController submitTx: EVM bridge should not call handleMobil "chainId": "0xa4b1", "networkClientId": "arbitrum", "transactionParams": { - "chainId": "0xa4b1", "data": "0xdata", "from": "0xaccount1", - "gas": "21000", - "gasLimit": "21000", + "gas": "0x5208", "to": "0xbridgeContract", "value": "0x0", }, @@ -1657,11 +1642,9 @@ exports[`BridgeStatusController submitTx: EVM bridge should not call handleMobil [ "TransactionController:addTransaction", { - "chainId": "0xa4b1", "data": "0xdata", "from": "0xaccount1", "gas": "0x5208", - "gasLimit": "21000", "maxFeePerGas": undefined, "maxPriorityFeePerGas": undefined, "to": "0xbridgeContract", @@ -1917,11 +1900,9 @@ exports[`BridgeStatusController submitTx: EVM bridge should not call handleMobil "chainId": "0xa4b1", "networkClientId": "arbitrum-client-id", "transactionParams": { - "chainId": "0xa4b1", "data": "0xapprovalData", "from": "0xaccount1", - "gas": "21000", - "gasLimit": "21000", + "gas": "0x5208", "to": "0xtokenContract", "value": "0x0", }, @@ -1930,11 +1911,9 @@ exports[`BridgeStatusController submitTx: EVM bridge should not call handleMobil [ "TransactionController:addTransaction", { - "chainId": "0xa4b1", "data": "0xapprovalData", "from": "0xaccount1", "gas": "0x5208", - "gasLimit": "21000", "maxFeePerGas": undefined, "maxPriorityFeePerGas": undefined, "to": "0xtokenContract", @@ -1966,11 +1945,9 @@ exports[`BridgeStatusController submitTx: EVM bridge should not call handleMobil "chainId": "0xa4b1", "networkClientId": "arbitrum", "transactionParams": { - "chainId": "0xa4b1", "data": "0xdata", "from": "0xaccount1", - "gas": "21000", - "gasLimit": "21000", + "gas": "0x5208", "to": "0xbridgeContract", "value": "0x0", }, @@ -1979,11 +1956,9 @@ exports[`BridgeStatusController submitTx: EVM bridge should not call handleMobil [ "TransactionController:addTransaction", { - "chainId": "0xa4b1", "data": "0xdata", "from": "0xaccount1", "gas": "0x5208", - "gasLimit": "21000", "maxFeePerGas": undefined, "maxPriorityFeePerGas": undefined, "to": "0xbridgeContract", @@ -2239,11 +2214,9 @@ exports[`BridgeStatusController submitTx: EVM bridge should reset USDT allowance "chainId": "0x1", "networkClientId": "arbitrum-client-id", "transactionParams": { - "chainId": "0x1", "data": "0x095ea7b3000000000000000000000000881d40237659c251811cec9c364ef91dc08d300c0000000000000000000000000000000000000000000000000000000000000000", "from": "0xaccount1", - "gas": "21000", - "gasLimit": "21000", + "gas": "0x5208", "to": "0xtokenContract", "value": "0x0", }, @@ -2252,11 +2225,9 @@ exports[`BridgeStatusController submitTx: EVM bridge should reset USDT allowance [ "TransactionController:addTransaction", { - "chainId": "0x1", "data": "0x095ea7b3000000000000000000000000881d40237659c251811cec9c364ef91dc08d300c0000000000000000000000000000000000000000000000000000000000000000", "from": "0xaccount1", "gas": "0x5208", - "gasLimit": "21000", "maxFeePerGas": undefined, "maxPriorityFeePerGas": undefined, "to": "0xtokenContract", @@ -2288,11 +2259,9 @@ exports[`BridgeStatusController submitTx: EVM bridge should reset USDT allowance "chainId": "0xa4b1", "networkClientId": "arbitrum-client-id", "transactionParams": { - "chainId": "0xa4b1", "data": "0xapprovalData", "from": "0xaccount1", - "gas": "21000", - "gasLimit": "21000", + "gas": "0x5208", "to": "0xtokenContract", "value": "0x0", }, @@ -2301,11 +2270,9 @@ exports[`BridgeStatusController submitTx: EVM bridge should reset USDT allowance [ "TransactionController:addTransaction", { - "chainId": "0xa4b1", "data": "0xapprovalData", "from": "0xaccount1", "gas": "0x5208", - "gasLimit": "21000", "maxFeePerGas": undefined, "maxPriorityFeePerGas": undefined, "to": "0xtokenContract", @@ -2337,11 +2304,9 @@ exports[`BridgeStatusController submitTx: EVM bridge should reset USDT allowance "chainId": "0xa4b1", "networkClientId": "arbitrum", "transactionParams": { - "chainId": "0xa4b1", "data": "0xdata", "from": "0xaccount1", - "gas": "21000", - "gasLimit": "21000", + "gas": "0x5208", "to": "0xbridgeContract", "value": "0x0", }, @@ -2350,11 +2315,9 @@ exports[`BridgeStatusController submitTx: EVM bridge should reset USDT allowance [ "TransactionController:addTransaction", { - "chainId": "0xa4b1", "data": "0xdata", "from": "0xaccount1", "gas": "0x5208", - "gasLimit": "21000", "maxFeePerGas": undefined, "maxPriorityFeePerGas": undefined, "to": "0xbridgeContract", @@ -2585,11 +2548,9 @@ exports[`BridgeStatusController submitTx: EVM bridge should successfully submit "chainId": "0xa4b1", "networkClientId": "arbitrum-client-id", "transactionParams": { - "chainId": "0xa4b1", "data": "0xapprovalData", "from": "0xaccount1", - "gas": "21000", - "gasLimit": "21000", + "gas": "0x5208", "to": "0xtokenContract", "value": "0x0", }, @@ -2598,11 +2559,9 @@ exports[`BridgeStatusController submitTx: EVM bridge should successfully submit [ "TransactionController:addTransaction", { - "chainId": "0xa4b1", "data": "0xapprovalData", "from": "0xaccount1", "gas": "0x5208", - "gasLimit": "21000", "maxFeePerGas": undefined, "maxPriorityFeePerGas": undefined, "to": "0xtokenContract", @@ -2634,11 +2593,9 @@ exports[`BridgeStatusController submitTx: EVM bridge should successfully submit "chainId": "0xa4b1", "networkClientId": "arbitrum", "transactionParams": { - "chainId": "0xa4b1", "data": "0xdata", "from": "0xaccount1", - "gas": "21000", - "gasLimit": "21000", + "gas": "0x5208", "to": "0xbridgeContract", "value": "0x0", }, @@ -2647,11 +2604,9 @@ exports[`BridgeStatusController submitTx: EVM bridge should successfully submit [ "TransactionController:addTransaction", { - "chainId": "0xa4b1", "data": "0xdata", "from": "0xaccount1", "gas": "0x5208", - "gasLimit": "21000", "maxFeePerGas": undefined, "maxPriorityFeePerGas": undefined, "to": "0xbridgeContract", @@ -2882,11 +2837,9 @@ exports[`BridgeStatusController submitTx: EVM bridge should successfully submit "chainId": "0xa4b1", "networkClientId": "arbitrum", "transactionParams": { - "chainId": "0xa4b1", "data": "0xdata", "from": "0xaccount1", - "gas": "21000", - "gasLimit": "21000", + "gas": "0x5208", "to": "0xbridgeContract", "value": "0x0", }, @@ -2895,11 +2848,9 @@ exports[`BridgeStatusController submitTx: EVM bridge should successfully submit [ "TransactionController:addTransaction", { - "chainId": "0xa4b1", "data": "0xdata", "from": "0xaccount1", "gas": "0x5208", - "gasLimit": "21000", "maxFeePerGas": undefined, "maxPriorityFeePerGas": undefined, "to": "0xbridgeContract", @@ -2982,11 +2933,9 @@ exports[`BridgeStatusController submitTx: EVM bridge should throw an error if ap "chainId": "0xa4b1", "networkClientId": "arbitrum-client-id", "transactionParams": { - "chainId": "0xa4b1", "data": "0xapprovalData", "from": "0xaccount1", - "gas": "21000", - "gasLimit": "21000", + "gas": "0x5208", "to": "0xtokenContract", "value": "0x0", }, @@ -2995,11 +2944,9 @@ exports[`BridgeStatusController submitTx: EVM bridge should throw an error if ap [ "TransactionController:addTransaction", { - "chainId": "0xa4b1", "data": "0xapprovalData", "from": "0xaccount1", "gas": "0x5208", - "gasLimit": "21000", "maxFeePerGas": undefined, "maxPriorityFeePerGas": undefined, "to": "0xtokenContract", @@ -3108,11 +3055,9 @@ exports[`BridgeStatusController submitTx: EVM bridge should throw an error if ap "chainId": "0xa4b1", "networkClientId": "arbitrum-client-id", "transactionParams": { - "chainId": "0xa4b1", "data": "0xapprovalData", "from": "0xaccount1", - "gas": "21000", - "gasLimit": "21000", + "gas": "0x5208", "to": "0xtokenContract", "value": "0x0", }, @@ -3121,11 +3066,9 @@ exports[`BridgeStatusController submitTx: EVM bridge should throw an error if ap [ "TransactionController:addTransaction", { - "chainId": "0xa4b1", "data": "0xapprovalData", "from": "0xaccount1", "gas": "0x5208", - "gasLimit": "21000", "maxFeePerGas": undefined, "maxPriorityFeePerGas": undefined, "to": "0xtokenContract", @@ -3385,11 +3328,9 @@ exports[`BridgeStatusController submitTx: EVM bridge waits for approval tx confi "chainId": "0xa4b1", "networkClientId": "arbitrum-client-id", "transactionParams": { - "chainId": "0xa4b1", "data": "0xapprovalData", "from": "0xaccount1", - "gas": "21000", - "gasLimit": "21000", + "gas": "0x5208", "to": "0xtokenContract", "value": "0x0", }, @@ -3398,11 +3339,9 @@ exports[`BridgeStatusController submitTx: EVM bridge waits for approval tx confi [ "TransactionController:addTransaction", { - "chainId": "0xa4b1", "data": "0xapprovalData", "from": "0xaccount1", "gas": "0x5208", - "gasLimit": "21000", "maxFeePerGas": undefined, "maxPriorityFeePerGas": undefined, "to": "0xtokenContract", @@ -3434,11 +3373,9 @@ exports[`BridgeStatusController submitTx: EVM bridge waits for approval tx confi "chainId": "0xa4b1", "networkClientId": "arbitrum", "transactionParams": { - "chainId": "0xa4b1", "data": "0xdata", "from": "0xaccount1", - "gas": "21000", - "gasLimit": "21000", + "gas": "0x5208", "to": "0xbridgeContract", "value": "0x0", }, @@ -3447,11 +3384,9 @@ exports[`BridgeStatusController submitTx: EVM bridge waits for approval tx confi [ "TransactionController:addTransaction", { - "chainId": "0xa4b1", "data": "0xdata", "from": "0xaccount1", "gas": "0x5208", - "gasLimit": "21000", "maxFeePerGas": undefined, "maxPriorityFeePerGas": undefined, "to": "0xbridgeContract", @@ -3578,11 +3513,9 @@ exports[`BridgeStatusController submitTx: EVM swap should gracefully handle isAt "chainId": "0xa4b1", "networkClientId": "arbitrum-client-id", "transactionParams": { - "chainId": "0xa4b1", "data": "0xapprovalData", "from": "0xaccount1", - "gas": "21000", - "gasLimit": "21000", + "gas": "0x5208", "to": "0xtokenContract", "value": "0x0", }, @@ -3591,11 +3524,9 @@ exports[`BridgeStatusController submitTx: EVM swap should gracefully handle isAt [ "TransactionController:addTransaction", { - "chainId": "0xa4b1", "data": "0xapprovalData", "from": "0xaccount1", "gas": "0x5208", - "gasLimit": "21000", "maxFeePerGas": undefined, "maxPriorityFeePerGas": undefined, "to": "0xtokenContract", @@ -3627,11 +3558,9 @@ exports[`BridgeStatusController submitTx: EVM swap should gracefully handle isAt "chainId": "0xa4b1", "networkClientId": "arbitrum", "transactionParams": { - "chainId": "0xa4b1", "data": "0xdata", "from": "0xaccount1", - "gas": "21000", - "gasLimit": "21000", + "gas": "0x5208", "to": "0xbridgeContract", "value": "0x0", }, @@ -3640,11 +3569,9 @@ exports[`BridgeStatusController submitTx: EVM swap should gracefully handle isAt [ "TransactionController:addTransaction", { - "chainId": "0xa4b1", "data": "0xdata", "from": "0xaccount1", "gas": "0x5208", - "gasLimit": "21000", "maxFeePerGas": undefined, "maxPriorityFeePerGas": undefined, "to": "0xbridgeContract", @@ -3929,6 +3856,7 @@ exports[`BridgeStatusController submitTx: EVM swap should handle smart transacti [ [ { + "atomic": true, "disable7702": true, "from": "0xaccount1", "isGasFeeIncluded": false, @@ -3939,12 +3867,13 @@ exports[`BridgeStatusController submitTx: EVM swap should handle smart transacti "requireApproval": false, "transactions": [ { + "assetsFiatValues": undefined, "params": { "data": "0xapprovalData", "from": "0xaccount1", "gas": "0x5208", - "maxFeePerGas": "0x0", - "maxPriorityFeePerGas": "0x0", + "maxFeePerGas": undefined, + "maxPriorityFeePerGas": undefined, "to": "0xtokenContract", "value": "0x0", }, @@ -3959,8 +3888,8 @@ exports[`BridgeStatusController submitTx: EVM swap should handle smart transacti "data": "0xdata", "from": "0xaccount1", "gas": "0x5208", - "maxFeePerGas": "0x0", - "maxPriorityFeePerGas": "0x0", + "maxFeePerGas": undefined, + "maxPriorityFeePerGas": undefined, "to": "0xbridgeContract", "value": "0x0", }, @@ -4036,7 +3965,7 @@ exports[`BridgeStatusController submitTx: EVM swap should handle smart transacti "transactionParams": { "data": "0xapprovalData", "from": "0xaccount1", - "gas": "21000", + "gas": "0x5208", "to": "0xtokenContract", "value": "0x0", }, @@ -4050,7 +3979,7 @@ exports[`BridgeStatusController submitTx: EVM swap should handle smart transacti "transactionParams": { "data": "0xdata", "from": "0xaccount1", - "gas": "21000", + "gas": "0x5208", "to": "0xbridgeContract", "value": "0x0", }, @@ -4155,11 +4084,9 @@ exports[`BridgeStatusController submitTx: EVM swap should successfully submit an "chainId": "0xa4b1", "networkClientId": "arbitrum-client-id", "transactionParams": { - "chainId": "0xa4b1", "data": "0xapprovalData", "from": "0xaccount1", - "gas": "21000", - "gasLimit": "21000", + "gas": "0x5208", "to": "0xtokenContract", "value": "0x0", }, @@ -4168,11 +4095,9 @@ exports[`BridgeStatusController submitTx: EVM swap should successfully submit an [ "TransactionController:addTransaction", { - "chainId": "0xa4b1", "data": "0xapprovalData", "from": "0xaccount1", "gas": "0x5208", - "gasLimit": "21000", "maxFeePerGas": undefined, "maxPriorityFeePerGas": undefined, "to": "0xtokenContract", @@ -4204,11 +4129,9 @@ exports[`BridgeStatusController submitTx: EVM swap should successfully submit an "chainId": "0xa4b1", "networkClientId": "arbitrum", "transactionParams": { - "chainId": "0xa4b1", "data": "0xdata", "from": "0xaccount1", - "gas": "21000", - "gasLimit": "21000", + "gas": "0x5208", "to": "0xbridgeContract", "value": "0x0", }, @@ -4217,11 +4140,9 @@ exports[`BridgeStatusController submitTx: EVM swap should successfully submit an [ "TransactionController:addTransaction", { - "chainId": "0xa4b1", "data": "0xdata", "from": "0xaccount1", "gas": "0x5208", - "gasLimit": "21000", "maxFeePerGas": undefined, "maxPriorityFeePerGas": undefined, "to": "0xbridgeContract", @@ -4448,11 +4369,9 @@ exports[`BridgeStatusController submitTx: EVM swap should successfully submit an "chainId": "0xa4b1", "networkClientId": "arbitrum", "transactionParams": { - "chainId": "0xa4b1", "data": "0xdata", "from": "0xaccount1", - "gas": "21000", - "gasLimit": "21000", + "gas": "0x5208", "to": "0xbridgeContract", "value": "0x0", }, @@ -4461,11 +4380,9 @@ exports[`BridgeStatusController submitTx: EVM swap should successfully submit an [ "TransactionController:addTransaction", { - "chainId": "0xa4b1", "data": "0xdata", "from": "0xaccount1", "gas": "0x5208", - "gasLimit": "21000", "maxFeePerGas": undefined, "maxPriorityFeePerGas": undefined, "to": "0xbridgeContract", diff --git a/packages/bridge-status-controller/src/bridge-status-controller.test.ts b/packages/bridge-status-controller/src/bridge-status-controller.test.ts index 25fd771166..69a9924102 100644 --- a/packages/bridge-status-controller/src/bridge-status-controller.test.ts +++ b/packages/bridge-status-controller/src/bridge-status-controller.test.ts @@ -26,7 +26,10 @@ import type { MockAnyNamespace, } from '@metamask/messenger'; import type { Provider } from '@metamask/network-controller'; -import { CHAIN_IDS } from '@metamask/transaction-controller'; +import { + CHAIN_IDS, + GasFeeEstimateType, +} from '@metamask/transaction-controller'; import { TransactionType, TransactionStatus, @@ -2833,6 +2836,7 @@ describe('BridgeStatusController', () => { const mockEstimateGasFeeResult = { estimates: { + type: GasFeeEstimateType.FeeMarket, high: { suggestedMaxFeePerGas: '0x1234', suggestedMaxPriorityFeePerGas: '0x5678', @@ -3636,6 +3640,7 @@ describe('BridgeStatusController', () => { mockMessengerCall.mockReturnValueOnce('arbitrum-client-id'); mockMessengerCall.mockResolvedValueOnce({ estimates: { + type: GasFeeEstimateType.FeeMarket, high: { suggestedMaxFeePerGas: '0x1234', suggestedMaxPriorityFeePerGas: '0x5678', @@ -3806,6 +3811,7 @@ describe('BridgeStatusController', () => { const mockEstimateGasFeeResult = { estimates: { + type: GasFeeEstimateType.FeeMarket, high: { suggestedMaxFeePerGas: '0x1234', suggestedMaxPriorityFeePerGas: '0x5678', diff --git a/packages/bridge-status-controller/src/bridge-status-controller.ts b/packages/bridge-status-controller/src/bridge-status-controller.ts index 3265f7c6e3..37fa42145b 100644 --- a/packages/bridge-status-controller/src/bridge-status-controller.ts +++ b/packages/bridge-status-controller/src/bridge-status-controller.ts @@ -91,7 +91,6 @@ import { import { handleNonEvmTx } from './utils/snaps'; import { getApprovalTraceParams, getTraceParams } from './utils/trace'; import { - getAddTransactionBatchParams, handleApprovalDelay, handleMobileHardwareWalletDelay, generateActionId, @@ -1014,38 +1013,40 @@ export class BridgeStatusController extends StaticIntervalPollingController[0], - 'messenger' | 'estimateGasFeeFn' - >, - ): Promise<{ + readonly #handleEvmTransactionBatch = async (args: { + requireApproval: boolean; + isDelegatedAccount: boolean; + isBridgeTx: boolean; + quoteResponse: QuoteResponse & QuoteMetadata; + }): Promise<{ approvalMeta?: TransactionMeta; tradeMeta: TransactionMeta; }> => { - const transactionParams = await getAddTransactionBatchParams({ - messenger: this.messenger, - ...args, - }); - - return await addTransactionBatch( + const { tradeMeta, approvalMeta } = await addTransactionBatch( this.messenger, this.#addTransactionBatchFn, - transactionParams, + args.quoteResponse, + args.isBridgeTx, + args.requireApproval, + args.isDelegatedAccount, ); + + if (!tradeMeta) { + throw new Error( + 'Failed to update cross-chain swap transaction batch: tradeMeta not found', + ); + } + return { tradeMeta, approvalMeta }; }; /** @@ -1200,13 +1201,6 @@ export class BridgeStatusController extends StaticIntervalPollingController; export type RefuelStatusResponse = object & StatusResponse; +/** + * This type ties together the quote, its tx params and the submitted txMeta. + * Each trade/approval will have its own QuoteAndTxMetadata object. + */ +export type QuoteAndTxMetadata = { + type: TransactionType; + quoteResponse: QuoteResponse & QuoteMetadata; + /** + * The approval or trade object from the quote response + */ + tx: TxData; + assetsFiatValues?: { sending?: string; receiving?: string }; + /** + * The simulated gas fee limits for the transaction provided by the bridge-api + */ + txFee?: SimulatedGasFeeLimits | TxFeeGasLimits; + /** + * Transaction metadata from the TransactionController after submission + */ + txMeta?: TransactionMeta; +}; + export type BridgeHistoryItem = { txMetaId?: string; // Optional: not available pre-submission or on sync failure actionId?: string; // Only for non-batch EVM transactions diff --git a/packages/bridge-status-controller/src/utils/gas.test.ts b/packages/bridge-status-controller/src/utils/gas.test.ts deleted file mode 100644 index 87aa092e11..0000000000 --- a/packages/bridge-status-controller/src/utils/gas.test.ts +++ /dev/null @@ -1,201 +0,0 @@ -import { - BRIDGE_PREFERRED_GAS_ESTIMATE, - TxData, -} from '@metamask/bridge-controller'; -import type { GasFeeState } from '@metamask/gas-fee-controller'; -import type { FeeMarketGasFeeEstimates } from '@metamask/transaction-controller'; -import { GasFeeEstimateLevel } from '@metamask/transaction-controller'; - -import { calculateGasFees, getTxGasEstimates } from './transaction'; - -// Mock data -const mockTxGasFeeEstimates = { - type: 'fee-market', - [GasFeeEstimateLevel.Low]: { - maxFeePerGas: '0x1234567890', - maxPriorityFeePerGas: '0x1234567890', - }, - [GasFeeEstimateLevel.Medium]: { - maxFeePerGas: '0x1234567890', - maxPriorityFeePerGas: '0x1234567890', - }, - [GasFeeEstimateLevel.High]: { - maxFeePerGas: '0x1234567890', - maxPriorityFeePerGas: '0x1234567890', - }, -} as FeeMarketGasFeeEstimates; - -const mockNetworkGasFeeEstimates = { - estimatedBaseFee: '0.00000001', -} as GasFeeState['gasFeeEstimates']; - -const mockMessengerCall = jest.fn(); -const mockMessenger = { call: mockMessengerCall }; - -describe('gas calculation utils', () => { - describe('getTxGasEstimates', () => { - beforeEach(() => { - jest.clearAllMocks(); - }); - - it('should return gas fee estimates when maxPriorityFeePerGas is provided', async () => { - mockMessenger.call.mockReturnValueOnce({ - estimates: mockTxGasFeeEstimates, - }); - // Call the function - const result = await getTxGasEstimates(mockMessenger, { - txGasFeeEstimates: mockTxGasFeeEstimates, - networkGasFeeEstimates: mockNetworkGasFeeEstimates, - }); - - // Verify the result - expect(result).toStrictEqual({ - maxFeePerGas: '0x1234567890', - maxPriorityFeePerGas: '0x1234567890', - }); - }); - - it('should handle missing property in txGasFeeEstimates', async () => { - mockMessenger.call.mockReturnValueOnce({ - estimates: {}, - }); - - const result = await getTxGasEstimates(mockMessenger); - - expect(result).toStrictEqual({ - maxFeePerGas: undefined, - maxPriorityFeePerGas: undefined, - }); - }); - - it('should use Bridge preferred gas estimate as gas estimates', async () => { - const estimates = { - type: 'fee-market', - [GasFeeEstimateLevel.Low]: { - maxFeePerGas: '0xLOW', - maxPriorityFeePerGas: '0xLOW_PRIORITY', - }, - [GasFeeEstimateLevel.Medium]: { - maxFeePerGas: '0xMEDIUM', - maxPriorityFeePerGas: '0xMEDIUM_PRIORITY', - }, - [GasFeeEstimateLevel.High]: { - maxFeePerGas: '0xHIGH', - maxPriorityFeePerGas: '0xHIGH_PRIORITY', - }, - } as FeeMarketGasFeeEstimates; - - mockMessenger.call.mockReturnValueOnce({ - estimates, - }); - - const result = await getTxGasEstimates(mockMessenger, { - txGasFeeEstimates: estimates, - networkGasFeeEstimates: mockNetworkGasFeeEstimates, - }); - - expect(result.maxFeePerGas).toBe( - estimates[BRIDGE_PREFERRED_GAS_ESTIMATE]?.maxFeePerGas, - ); - expect(result.maxPriorityFeePerGas).toBe( - estimates[BRIDGE_PREFERRED_GAS_ESTIMATE]?.maxPriorityFeePerGas, - ); - }); - - it('should use default estimatedBaseFee when not provided in networkGasFeeEstimates', async () => { - // Mock data - mockMessengerCall.mockClear(); - mockMessengerCall.mockResolvedValueOnce({ - estimates: mockTxGasFeeEstimates, - }); - - // Call the function - const result = await getTxGasEstimates(mockMessenger, { - txGasFeeEstimates: mockTxGasFeeEstimates, - networkGasFeeEstimates: {}, - }); - - // Verify the result - expect(result).toStrictEqual({ - maxFeePerGas: '0x1234567890', - maxPriorityFeePerGas: '0x1234567890', - }); - }); - }); - - describe('calculateGasFees', () => { - const mockTrade: TxData = { - chainId: 1, - gasLimit: 1231, - to: '0x1', - data: '0x1', - from: '0x1', - value: '0x1', - }; - - it('should return empty object if gas fields should be skipped (skipGasFields is true)', async () => { - const result = await calculateGasFees( - true, - null as never, - mockTrade, - 'mainnet', - '0x1', - ); - expect(result).toStrictEqual({}); - }); - - it('should txFee when provided', async () => { - const result = await calculateGasFees( - false, - null as never, - mockTrade, - 'mainnet', - '0x1', - { - maxFeePerGas: '0x1234567890', - maxPriorityFeePerGas: '0x1234567890', - }, - ); - expect(result).toStrictEqual({ - maxFeePerGas: '0x1234567890', - maxPriorityFeePerGas: '0x1234567890', - gas: '1231', - }); - }); - - it.each([ - { - gasLimit: 1231, - expectedGas: '0x4cf', - }, - { - gasLimit: null, - expectedGas: '0x0', - }, - ])( - 'should return $expectedGas if trade.gasLimit is $gasLimit', - async ({ gasLimit, expectedGas }) => { - const mockCall = jest.fn().mockResolvedValueOnce({ - estimates: { - [GasFeeEstimateLevel.Medium]: { - maxFeePerGas: '0x1234567890', - maxPriorityFeePerGas: '0x1234567890', - }, - }, - }); - const result = await calculateGasFees( - false, - { call: mockCall } as never, - { ...mockTrade, gasLimit }, - 'mainnet', - '0x1', - ); - expect(result).toStrictEqual({ - gas: expectedGas, - maxFeePerGas: '0x1234567890', - maxPriorityFeePerGas: '0x1234567890', - }); - }, - ); - }); -}); diff --git a/packages/bridge-status-controller/src/utils/transaction.test.ts b/packages/bridge-status-controller/src/utils/transaction.test.ts index a89ca2f80a..55a7593c24 100644 --- a/packages/bridge-status-controller/src/utils/transaction.test.ts +++ b/packages/bridge-status-controller/src/utils/transaction.test.ts @@ -11,22 +11,26 @@ import type { TxData, } from '@metamask/bridge-controller'; import { + GasFeeEstimateType, TransactionStatus, TransactionType, } from '@metamask/transaction-controller'; import type { TransactionMeta } from '@metamask/transaction-controller'; import { APPROVAL_DELAY_MS } from '../constants'; -import type { BridgeStatusControllerMessenger } from '../types'; +import type { + BridgeStatusControllerMessenger, + QuoteAndTxMetadata, +} from '../types'; import { getStatusRequestParams } from './bridge-status'; import * as snaps from './snaps'; import { handleApprovalDelay, handleMobileHardwareWalletDelay, getAddTransactionBatchParams, - findAndUpdateTransactionsInBatch, + toQuoteAndTxMetadata, waitForTxConfirmation, - toBatchTxParams, + findAndUpdateTransactionsInBatch, } from './transaction'; describe('Bridge Status Controller Transaction Utils', () => { @@ -1664,26 +1668,6 @@ describe('Bridge Status Controller Transaction Utils', () => { }); }); - describe('toBatchTxParams', () => { - it('should return params without gas if skipGasFields is true', () => { - const mockTrade = { - chainId: 1, - gasLimit: 1231, - to: '0x1', - data: '0x1', - from: '0x1', - value: '0x1', - }; - const result = toBatchTxParams(true, mockTrade as TxData, {}); - expect(result).toStrictEqual({ - data: '0x1', - from: '0x1', - to: '0x1', - value: '0x1', - }); - }); - }); - describe('getAddTransactionBatchParams', () => { let mockMessagingSystem: BridgeStatusControllerMessenger; const mockAccount = { @@ -1752,6 +1736,7 @@ describe('Bridge Status Controller Transaction Utils', () => { to: '0xTokenContract', data: '0xapprovalData', from: '0xUserAddress', + chainId: ChainId.ETH, }, }), ...(overrides.includeResetApproval && { @@ -1759,6 +1744,7 @@ describe('Bridge Status Controller Transaction Utils', () => { to: '0xTokenContract', data: '0xresetData', from: '0xUserAddress', + chainId: ChainId.ETH, }, }), sentAmount: { @@ -1805,12 +1791,16 @@ describe('Bridge Status Controller Transaction Utils', () => { includeApproval: true, }); + const tradeData = toQuoteAndTxMetadata({ + quoteResponse: mockQuoteResponse, + isBridgeTx: true, + }); + const result = await getAddTransactionBatchParams({ + tradeData, + requireApproval: false, quoteResponse: mockQuoteResponse, messenger: mockMessagingSystem, - isBridgeTx: true, - trade: mockQuoteResponse.trade, - approval: mockQuoteResponse.approval, }); expect(result.disable7702).toBe(false); @@ -1824,6 +1814,9 @@ describe('Bridge Status Controller Transaction Utils', () => { { "data": "0xbridgeData", "from": "0xUserAddress", + "gas": "0x5208", + "maxFeePerGas": "0xb1a2bc2ec50000", + "maxPriorityFeePerGas": "0xb1a2bc2ec50000", "to": "0xBridgeContract", "value": "0x1000", } @@ -1835,11 +1828,14 @@ describe('Bridge Status Controller Transaction Utils', () => { gasIncluded7702: false, }); + const tradeData = toQuoteAndTxMetadata({ + quoteResponse: mockQuoteResponse, + isBridgeTx: false, + }); const result = await getAddTransactionBatchParams({ quoteResponse: mockQuoteResponse, messenger: mockMessagingSystem, - isBridgeTx: false, - trade: mockQuoteResponse.trade, + tradeData, }); expect(result.disable7702).toBe(true); @@ -1853,8 +1849,8 @@ describe('Bridge Status Controller Transaction Utils', () => { "data": "0xbridgeData", "from": "0xUserAddress", "gas": "0x5208", - "maxFeePerGas": "0x0", - "maxPriorityFeePerGas": "0x0", + "maxFeePerGas": undefined, + "maxPriorityFeePerGas": undefined, "to": "0xBridgeContract", "value": "0x1000", } @@ -1866,12 +1862,14 @@ describe('Bridge Status Controller Transaction Utils', () => { includeApproval: true, }); + const tradeData = toQuoteAndTxMetadata({ + quoteResponse: mockQuoteResponse, + isBridgeTx: false, + }); const result = await getAddTransactionBatchParams({ quoteResponse: mockQuoteResponse, messenger: mockMessagingSystem, - isBridgeTx: false, - trade: mockQuoteResponse.trade, - approval: mockQuoteResponse.approval, + tradeData, }); expect(result.transactions).toHaveLength(2); @@ -1882,8 +1880,8 @@ describe('Bridge Status Controller Transaction Utils', () => { "data": "0xbridgeData", "from": "0xUserAddress", "gas": "0x5208", - "maxFeePerGas": "0x0", - "maxPriorityFeePerGas": "0x0", + "maxFeePerGas": undefined, + "maxPriorityFeePerGas": undefined, "to": "0xBridgeContract", "value": "0x1000", } @@ -1895,12 +1893,14 @@ describe('Bridge Status Controller Transaction Utils', () => { includeResetApproval: true, }); + const tradeData = toQuoteAndTxMetadata({ + quoteResponse: mockQuoteResponse, + isBridgeTx: false, + }); const result = await getAddTransactionBatchParams({ quoteResponse: mockQuoteResponse, messenger: mockMessagingSystem, - isBridgeTx: false, - trade: mockQuoteResponse.trade, - resetApproval: mockQuoteResponse.resetApproval, + tradeData, }); expect(result.transactions).toHaveLength(2); @@ -1915,12 +1915,15 @@ describe('Bridge Status Controller Transaction Utils', () => { includeResetApproval: true, }); + const tradeData = toQuoteAndTxMetadata({ + quoteResponse: mockQuoteResponse, + isBridgeTx: true, + }); + const result = await getAddTransactionBatchParams({ quoteResponse: mockQuoteResponse, messenger: mockMessagingSystem, - isBridgeTx: true, - trade: mockQuoteResponse.trade, - resetApproval: mockQuoteResponse.resetApproval, + tradeData, }); expect(result.disable7702).toBe(true); @@ -1948,17 +1951,21 @@ describe('Bridge Status Controller Transaction Utils', () => { gasIncluded7702: undefined, }); + const tradeData = toQuoteAndTxMetadata({ + quoteResponse: mockQuoteResponse, + isBridgeTx: false, + }); const result = await getAddTransactionBatchParams({ quoteResponse: mockQuoteResponse, messenger: mockMessagingSystem, - isBridgeTx: false, - trade: mockQuoteResponse.trade, + tradeData, }); expect(result.isGasFeeIncluded).toBe(false); expect(result.disable7702).toBe(true); expect(result).toMatchInlineSnapshot(` { + "atomic": true, "disable7702": true, "from": "0xUserAddress", "isGasFeeIncluded": false, @@ -1977,8 +1984,8 @@ describe('Bridge Status Controller Transaction Utils', () => { "data": "0xbridgeData", "from": "0xUserAddress", "gas": "0x5208", - "maxFeePerGas": "0x0", - "maxPriorityFeePerGas": "0x0", + "maxFeePerGas": undefined, + "maxPriorityFeePerGas": undefined, "to": "0xBridgeContract", "value": "0x1000", }, @@ -1994,17 +2001,21 @@ describe('Bridge Status Controller Transaction Utils', () => { gasIncluded7702: true, }); + const tradeData = toQuoteAndTxMetadata({ + quoteResponse: mockQuoteResponse, + isBridgeTx: false, + }); const result = await getAddTransactionBatchParams({ quoteResponse: mockQuoteResponse, messenger: mockMessagingSystem, - isBridgeTx: false, - trade: mockQuoteResponse.trade, + tradeData, }); expect(result.isGasFeeIncluded).toBe(true); expect(result.disable7702).toBe(false); expect(result).toMatchInlineSnapshot(` { + "atomic": true, "disable7702": false, "from": "0xUserAddress", "isGasFeeIncluded": true, @@ -2022,6 +2033,9 @@ describe('Bridge Status Controller Transaction Utils', () => { "params": { "data": "0xbridgeData", "from": "0xUserAddress", + "gas": "0x5208", + "maxFeePerGas": "0xb1a2bc2ec50000", + "maxPriorityFeePerGas": "0xb1a2bc2ec50000", "to": "0xBridgeContract", "value": "0x1000", }, @@ -2037,17 +2051,21 @@ describe('Bridge Status Controller Transaction Utils', () => { gasIncluded7702: false, }); + const tradeData = toQuoteAndTxMetadata({ + quoteResponse: mockQuoteResponse, + isBridgeTx: false, + }); const result = await getAddTransactionBatchParams({ quoteResponse: mockQuoteResponse, messenger: mockMessagingSystem, - isBridgeTx: false, - trade: mockQuoteResponse.trade, + tradeData, }); expect(result.isGasFeeIncluded).toBe(false); expect(result.disable7702).toBe(true); expect(result).toMatchInlineSnapshot(` { + "atomic": true, "disable7702": true, "from": "0xUserAddress", "isGasFeeIncluded": false, @@ -2066,8 +2084,8 @@ describe('Bridge Status Controller Transaction Utils', () => { "data": "0xbridgeData", "from": "0xUserAddress", "gas": "0x5208", - "maxFeePerGas": "0x0", - "maxPriorityFeePerGas": "0x0", + "maxFeePerGas": undefined, + "maxPriorityFeePerGas": undefined, "to": "0xBridgeContract", "value": "0x1000", }, @@ -2085,6 +2103,7 @@ describe('Bridge Status Controller Transaction Utils', () => { const mockMessenger = createMockMessagingSystem({ estimates: { + type: GasFeeEstimateType.FeeMarket, medium: { maxFeePerGas: '0xabc', maxPriorityFeePerGas: '0xdef', @@ -2093,12 +2112,15 @@ describe('Bridge Status Controller Transaction Utils', () => { }); const callSpy = jest.spyOn(mockMessenger, 'call'); + const tradeData = toQuoteAndTxMetadata({ + quoteResponse: mockQuoteResponse, + isBridgeTx: true, + }); const result = await getAddTransactionBatchParams({ quoteResponse: mockQuoteResponse, messenger: mockMessenger, - isBridgeTx: true, - trade: mockQuoteResponse.trade, isDelegatedAccount: true, + tradeData, }); // 7702 should be enabled for delegated accounts @@ -2123,7 +2145,7 @@ describe('Bridge Status Controller Transaction Utils', () => { "transactionParams": { "data": "0xbridgeData", "from": "0xUserAddress", - "gas": "21000", + "gas": "0x5208", "to": "0xBridgeContract", "value": "0x1000", }, @@ -2133,11 +2155,18 @@ describe('Bridge Status Controller Transaction Utils', () => { `); // Transaction params should include gas fields expect(result.transactions).toHaveLength(1); - expect(result.transactions[0].params).toHaveProperty('gas'); - expect(result.transactions[0].params).toHaveProperty('maxFeePerGas'); - expect(result.transactions[0].params).toHaveProperty( - 'maxPriorityFeePerGas', - ); + // TxFee values from the estimateGasFee call + expect(result.transactions[0].params).toMatchInlineSnapshot(` + { + "data": "0xbridgeData", + "from": "0xUserAddress", + "gas": "0x5208", + "maxFeePerGas": "0xabc", + "maxPriorityFeePerGas": "0xdef", + "to": "0xBridgeContract", + "value": "0x1000", + } + `); }); it('should enable 7702 and omit gas fields when isDelegatedAccount is true and gasIncluded7702 is true', async () => { @@ -2146,12 +2175,17 @@ describe('Bridge Status Controller Transaction Utils', () => { }); const callSpy = jest.spyOn(mockMessagingSystem, 'call'); - const result = await getAddTransactionBatchParams({ + + const tradeData = toQuoteAndTxMetadata({ quoteResponse: mockQuoteResponse, - messenger: mockMessagingSystem, isBridgeTx: true, - trade: mockQuoteResponse.trade, + }); + + const result = await getAddTransactionBatchParams({ + tradeData, + messenger: mockMessagingSystem, isDelegatedAccount: true, + quoteResponse: mockQuoteResponse, }); // 7702 should be enabled @@ -2171,6 +2205,9 @@ describe('Bridge Status Controller Transaction Utils', () => { { "data": "0xbridgeData", "from": "0xUserAddress", + "gas": "0x5208", + "maxFeePerGas": "0xb1a2bc2ec50000", + "maxPriorityFeePerGas": "0xb1a2bc2ec50000", "to": "0xBridgeContract", "value": "0x1000", } @@ -2242,15 +2279,21 @@ describe('Bridge Status Controller Transaction Utils', () => { const mockMessagingSystem = createMockMessagingSystemWithTxs(txs); const callSpy = jest.spyOn(mockMessagingSystem, 'call'); - const txDataByType = { - [TransactionType.swap]: '0xswapData', - [TransactionType.swapApproval]: '0xapprovalData', - }; + const tradeData = [ + { + tx: { data: '0xswapData' }, + type: TransactionType.swap, + }, + { + tx: { data: '0xapprovalData' }, + type: TransactionType.swapApproval, + }, + ] as unknown as QuoteAndTxMetadata[]; findAndUpdateTransactionsInBatch({ messenger: mockMessagingSystem, batchId, - txDataByType, + tradeData, }); expect( @@ -2302,14 +2345,17 @@ describe('Bridge Status Controller Transaction Utils', () => { const mockMessenger = createMockMessagingSystemWithTxs(txs); const callSpy = jest.spyOn(mockMessenger, 'call'); - const txDataByType = { - [TransactionType.swap]: '0xswapData', - }; + const tradeData = [ + { + tx: { data: '0xswapData' }, + type: TransactionType.swap, + }, + ] as unknown as QuoteAndTxMetadata[]; findAndUpdateTransactionsInBatch({ messenger: mockMessenger as unknown as BridgeStatusControllerMessenger, batchId, - txDataByType, + tradeData, }); // Should identify and update 7702 transaction with delegationAddress @@ -2345,14 +2391,17 @@ describe('Bridge Status Controller Transaction Utils', () => { const mockMessenger = createMockMessagingSystemWithTxs(txs); const callSpy = jest.spyOn(mockMessenger, 'call'); - const txDataByType = { - [TransactionType.swapApproval]: '0xapprovalData', - }; + const tradeData = [ + { + tx: { data: '0xapprovalData' }, + type: TransactionType.swapApproval, + }, + ] as unknown as QuoteAndTxMetadata[]; findAndUpdateTransactionsInBatch({ messenger: mockMessenger as unknown as BridgeStatusControllerMessenger, batchId, - txDataByType, + tradeData, }); // Should match 7702 approval transaction by data @@ -2395,15 +2444,21 @@ describe('Bridge Status Controller Transaction Utils', () => { const mockMessenger = createMockMessagingSystemWithTxs(txs); const callSpy = jest.spyOn(mockMessenger, 'call'); - const txDataByType = { - [TransactionType.bridge]: '0xswapData', - [TransactionType.bridgeApproval]: '0xapprovalData', - }; + const tradeData = [ + { + tx: { data: '0xswapData' }, + type: TransactionType.bridge, + }, + { + tx: { data: '0xapprovalData' }, + type: TransactionType.bridgeApproval, + }, + ] as unknown as QuoteAndTxMetadata[]; findAndUpdateTransactionsInBatch({ messenger: mockMessenger as unknown as BridgeStatusControllerMessenger, batchId, - txDataByType, + tradeData, }); // Should update regular transactions by matching data @@ -2452,14 +2507,17 @@ describe('Bridge Status Controller Transaction Utils', () => { const mockMessagingSystem = createMockMessagingSystemWithTxs(txs); const callSpy = jest.spyOn(mockMessagingSystem, 'call'); - const txDataByType = { - [TransactionType.swap]: '0xswapData', - }; + const tradeData = [ + { + tx: { data: '0xswapData' }, + type: TransactionType.swap, + }, + ] as unknown as QuoteAndTxMetadata[]; findAndUpdateTransactionsInBatch({ messenger: mockMessagingSystem, batchId, - txDataByType, + tradeData, }); // Should not update transactions with different batchId @@ -2482,15 +2540,18 @@ describe('Bridge Status Controller Transaction Utils', () => { const mockMessagingSystem = createMockMessagingSystemWithTxs(txs); - const txDataByType = { - [TransactionType.bridge]: '0xbridgeData', - }; + const tradeData = [ + { + tx: { data: '0xbridgeData' }, + type: TransactionType.bridge, + }, + ] as unknown as QuoteAndTxMetadata[]; // Test with bridge transaction — should match batch type for 7702 const result = findAndUpdateTransactionsInBatch({ messenger: mockMessagingSystem, batchId, - txDataByType, + tradeData, }); // Should match since 7702 bridge transactions use batch type @@ -2526,14 +2587,17 @@ describe('Bridge Status Controller Transaction Utils', () => { txs, ) as unknown as BridgeStatusControllerMessenger; - const txDataByType = { - [TransactionType.bridgeApproval]: '0xapprovalData', - }; + const tradeData = [ + { + tx: { data: '0xapprovalData' }, + type: TransactionType.bridgeApproval, + }, + ] as unknown as QuoteAndTxMetadata[]; const result = findAndUpdateTransactionsInBatch({ messenger: mockMessagingSystem, batchId, - txDataByType, + tradeData, }); expect(mockMessagingSystem.call).toHaveBeenCalledWith( diff --git a/packages/bridge-status-controller/src/utils/transaction.ts b/packages/bridge-status-controller/src/utils/transaction.ts index d074bdfcb4..71a8535a47 100644 --- a/packages/bridge-status-controller/src/utils/transaction.ts +++ b/packages/bridge-status-controller/src/utils/transaction.ts @@ -3,120 +3,76 @@ import { ChainId, formatChainIdToHex, BRIDGE_PREFERRED_GAS_ESTIMATE, + isEvmTxData, + FeeType, } from '@metamask/bridge-controller'; import type { QuoteMetadata, QuoteResponse, + SimulatedGasFeeLimits, + Trade, TxData, + TxFeeGasLimits, } from '@metamask/bridge-controller'; import { toHex } from '@metamask/controller-utils'; import { + GasFeeEstimateType, TransactionStatus, TransactionType, } from '@metamask/transaction-controller'; import type { - BatchTransactionParams, IsAtomicBatchSupportedResultEntry, TransactionController, TransactionMeta, TransactionBatchSingleRequest, - TransactionParams, + BatchTransactionParams, } from '@metamask/transaction-controller'; -import { createProjectLogger, Hex } from '@metamask/utils'; -import { BigNumber } from 'bignumber.js'; +import { createProjectLogger } from '@metamask/utils'; +import type { Hex } from '@metamask/utils'; import { APPROVAL_DELAY_MS } from '../constants'; import type { BridgeStatusControllerMessenger } from '../types'; +import type { QuoteAndTxMetadata } from '../types'; import { getAccountByAddress } from './accounts'; import { getNetworkClientIdByChainId } from './network'; -const isApprovalTx = (type: TransactionType) => +export const isApprovalTx = (type: TransactionType) => type === TransactionType.bridgeApproval || type === TransactionType.swapApproval; -const isTradeTx = (type: TransactionType) => +export const isTradeTx = (type: TransactionType) => type === TransactionType.bridge || type === TransactionType.swap; export const isCrossChainTx = (type: TransactionType) => isTradeTx(type) || isApprovalTx(type); -export const getGasFeeEstimates = async ( - messenger: BridgeStatusControllerMessenger, - args: Parameters[0], -): Promise<{ maxFeePerGas?: string; maxPriorityFeePerGas?: string }> => { - const { estimates } = await messenger.call( - 'TransactionController:estimateGasFee', - args, - ); - if ( - BRIDGE_PREFERRED_GAS_ESTIMATE in estimates && - typeof estimates[BRIDGE_PREFERRED_GAS_ESTIMATE] === 'object' && - 'maxFeePerGas' in estimates[BRIDGE_PREFERRED_GAS_ESTIMATE] && - 'maxPriorityFeePerGas' in estimates[BRIDGE_PREFERRED_GAS_ESTIMATE] - ) { - return estimates[BRIDGE_PREFERRED_GAS_ESTIMATE]; - } - return {}; -}; - /** - * Get the gas fee estimates for a transaction + * For 7702 delegated transactions, check for delegation-specific fields + * These transactions might have authorizationList or delegationAddress * - * @param messenger - The messenger for the gas fee estimates - * @param estimateGasFeeParams - The parameters for the {@link TransactionController.estimateGasFee} method - - * @returns The gas fee estimates for the transaction + * @param tx - The transaction meta + * @returns Whether the transaction is a 7702 transaction */ -export const getTxGasEstimates = async ( - messenger: BridgeStatusControllerMessenger, - estimateGasFeeParams: Parameters[0], -) => { - // Get transaction's 1559 gas fee estimates - const { maxFeePerGas, maxPriorityFeePerGas } = await getGasFeeEstimates( - messenger, - estimateGasFeeParams, +const is7702Tx = (tx: TransactionMeta) => { + return ( + (Array.isArray(tx.txParams.authorizationList) && + tx.txParams.authorizationList.length > 0) || + Boolean(tx.delegationAddress) ); - - return { - maxFeePerGas, - maxPriorityFeePerGas, - }; }; -export const calculateGasFees = async ( - skipGasFields: boolean, +export const getGasFeeEstimates = async ( messenger: BridgeStatusControllerMessenger, - { chainId: _, gasLimit, ...trade }: TxData, - networkClientId: string, - chainId: Hex, - txFee?: { maxFeePerGas: string; maxPriorityFeePerGas: string }, + args: Parameters[0], ) => { - if (skipGasFields) { - return {}; - } - if (txFee) { - return { ...txFee, gas: gasLimit?.toString() }; - } - const transactionParams = { - ...trade, - gas: gasLimit?.toString(), - data: trade.data, - to: trade.to, - value: trade.value, - }; - const { maxFeePerGas, maxPriorityFeePerGas } = await getTxGasEstimates( - messenger, - { - transactionParams, - networkClientId, - chainId, - }, + const { estimates } = await messenger.call( + 'TransactionController:estimateGasFee', + args, ); - const maxGasLimit = toHex(transactionParams.gas ?? 0); - return { - maxFeePerGas, - maxPriorityFeePerGas, - gas: maxGasLimit, - }; + if (estimates?.type === GasFeeEstimateType.FeeMarket) { + return estimates[BRIDGE_PREFERRED_GAS_ESTIMATE]; + } + + return undefined; }; export const getTransactions = (messenger: BridgeStatusControllerMessenger) => { @@ -307,64 +263,120 @@ export const waitForTxConfirmation = async ( } }; -export const toBatchTxParams = ( - skipGasFields: boolean, - { chainId, gasLimit, ...trade }: TxData, - { - maxFeePerGas, - maxPriorityFeePerGas, - gas, - }: { maxFeePerGas?: string; maxPriorityFeePerGas?: string; gas?: string }, -): BatchTransactionParams => { - const params = { +export const toQuoteAndTxMetadata = ({ + quoteResponse, + isBridgeTx, +}: { + quoteResponse: QuoteResponse & QuoteMetadata; + isBridgeTx: boolean; +}) => { + const tradeData: QuoteAndTxMetadata[] = []; + + const approvalTxType = isBridgeTx + ? TransactionType.bridgeApproval + : TransactionType.swapApproval; + + if (quoteResponse.resetApproval) { + tradeData.push({ + quoteResponse, + tx: quoteResponse.resetApproval, + type: approvalTxType, + txFee: quoteResponse.quote.feeData[FeeType.TX_FEE], + }); + } + if (quoteResponse.approval && isEvmTxData(quoteResponse.approval)) { + tradeData.push({ + quoteResponse, + tx: quoteResponse.approval, + type: approvalTxType, + txFee: quoteResponse.quote.feeData[FeeType.TX_FEE], + }); + } + tradeData.push({ + quoteResponse, + tx: quoteResponse.trade as TxData, + type: isBridgeTx ? TransactionType.bridge : TransactionType.swap, + assetsFiatValues: { + sending: quoteResponse.sentAmount?.valueInCurrency?.toString(), + receiving: quoteResponse.toTokenAmount?.valueInCurrency?.toString(), + }, + txFee: quoteResponse.quote.feeData[FeeType.TX_FEE], + }); + + return tradeData; +}; + +/** + * Appends the gas fee estimates for a transaction and normalizes the trade data + * + * @param messenger - The messenger for the gas fee estimates + * @param trade - the trade data to append gas fees to + * @param trade.chainId - ignored, use chainId instead + * @param trade.gasLimit - the gas limit to use for the gas fee estimates + * @param networkClientId - the network client ID to use for the gas fee estimates + * @param chainId - the chain ID to use for the gas fee estimates + * @param simulatedGasFeeLimits - either the txFee from the quote or the simulated gas fee limits for the batch sell + * @returns The gas fee estimates for the transaction + */ +export const toTransactionParams = async ( + messenger: BridgeStatusControllerMessenger, + { chainId: tradeChainId, gasLimit, ...trade }: TxData, + networkClientId: string, + chainId: Hex, + simulatedGasFeeLimits?: SimulatedGasFeeLimits | TxFeeGasLimits, +): Promise => { + const normalizedTrade = { ...trade, data: trade.data, to: trade.to, + from: trade.from, value: trade.value, }; - if (skipGasFields) { - return params; + const transactionParams = { + ...trade, + // Only add gasLimit and gas if they're truthy + gas: gasLimit ? toHex(gasLimit) : undefined, + ...normalizedTrade, + }; + + // Use bridge-api's provided gas fee estimates + if (simulatedGasFeeLimits) { + return { + ...transactionParams, + maxFeePerGas: toHex(simulatedGasFeeLimits.maxFeePerGas), + maxPriorityFeePerGas: toHex(simulatedGasFeeLimits.maxPriorityFeePerGas), + }; } + // Get transaction's 1559 gas fee estimates + const gasFeeEstimates = await getGasFeeEstimates(messenger, { + transactionParams, + networkClientId, + chainId, + }); + return { - ...params, - gas: toHex(gas ?? 0), - maxFeePerGas: toHex(maxFeePerGas ?? 0), - maxPriorityFeePerGas: toHex(maxPriorityFeePerGas ?? 0), + ...transactionParams, + maxFeePerGas: gasFeeEstimates?.maxFeePerGas, + maxPriorityFeePerGas: gasFeeEstimates?.maxPriorityFeePerGas, }; }; export const getAddTransactionBatchParams = async ({ messenger, - isBridgeTx, - approval, - resetApproval, - trade, - quoteResponse: { - quote: { - feeData: { txFee }, - gasIncluded, - gasIncluded7702, - gasSponsored, - }, - sentAmount, - toTokenAmount, - }, + quoteResponse, + tradeData, requireApproval = false, - isDelegatedAccount = false, -}: { + isDelegatedAccount, + ...addTransactionBatchParams +}: Partial[0]> & { messenger: BridgeStatusControllerMessenger; - isBridgeTx: boolean; - trade: TxData; - quoteResponse: Omit & - Partial; - approval?: TxData; - resetApproval?: TxData; + quoteResponse: QuoteResponse & QuoteMetadata; + tradeData: QuoteAndTxMetadata[]; requireApproval?: boolean; isDelegatedAccount?: boolean; -}) => { - // eslint-disable-next-line @typescript-eslint/prefer-nullish-coalescing - const isGasless = gasIncluded || gasIncluded7702; +}): Promise[0]> => { + const trade = tradeData[0].tx; const selectedAccount = getAccountByAddress(messenger, trade.from); if (!selectedAccount) { throw new Error( @@ -374,238 +386,198 @@ export const getAddTransactionBatchParams = async ({ const hexChainId = formatChainIdToHex(trade.chainId); const networkClientId = getNetworkClientIdByChainId(messenger, hexChainId); - // Gas fields should be omitted only when gas is sponsored via 7702 - const skipGasFields = gasIncluded7702 === true; - // Enable 7702 batching when the quote includes gasless 7702 support, - // or when the account is already delegated (to avoid the in-flight - // transaction limit for delegated accounts) - let disable7702 = !skipGasFields && !isDelegatedAccount; - - // For gasless transactions with STX/sendBundle we keep disabling 7702. - if (gasIncluded && !gasIncluded7702) { - disable7702 = true; - } - - const transactions: TransactionBatchSingleRequest[] = []; - if (resetApproval) { - const gasFees = await calculateGasFees( - skipGasFields, - messenger, - resetApproval, - networkClientId, - hexChainId, - isGasless ? txFee : undefined, - ); - transactions.push({ - type: isBridgeTx - ? TransactionType.bridgeApproval - : TransactionType.swapApproval, - params: toBatchTxParams(skipGasFields, resetApproval, gasFees), - }); - } - if (approval) { - const gasFees = await calculateGasFees( - skipGasFields, - messenger, - approval, - networkClientId, - hexChainId, - isGasless ? txFee : undefined, - ); - transactions.push({ - type: isBridgeTx - ? TransactionType.bridgeApproval - : TransactionType.swapApproval, - params: toBatchTxParams(skipGasFields, approval, gasFees), - }); - } - const gasFees = await calculateGasFees( - skipGasFields, - messenger, - trade, - networkClientId, - hexChainId, - isGasless ? txFee : undefined, + const transactions: TransactionBatchSingleRequest[] = await Promise.all( + tradeData.map(async ({ tx, txFee, assetsFiatValues, type }) => ({ + params: await toTransactionParams( + messenger, + tx, + networkClientId, + hexChainId, + txFee, + ), + assetsFiatValues, + type, + })), ); - transactions.push({ - type: isBridgeTx ? TransactionType.bridge : TransactionType.swap, - params: toBatchTxParams(skipGasFields, trade, gasFees), - assetsFiatValues: { - sending: sentAmount?.valueInCurrency?.toString(), - receiving: toTokenAmount?.valueInCurrency?.toString(), - }, - }); - const transactionParams: Parameters< - TransactionController['addTransactionBatch'] - >[0] = { - disable7702, - isGasFeeIncluded: Boolean(gasIncluded7702), - isGasFeeSponsored: Boolean(gasSponsored), + + return { networkClientId, requireApproval, origin: 'metamask', - from: trade.from, + from: selectedAccount.address as Hex, isInternal: true, transactions, + atomic: true, + disable7702: + // Enable 7702 batching when the quote includes gasless 7702 support, + quoteResponse.quote.gasIncluded7702 + ? false + : // or when the account is already delegated (to avoid the in-flight transaction limit for delegated accounts) + !isDelegatedAccount || + // For gasless transactions with STX/sendBundle we keep disabling 7702. + quoteResponse.quote.gasIncluded, + isGasFeeSponsored: Boolean(quoteResponse.quote.gasSponsored), + isGasFeeIncluded: Boolean(quoteResponse.quote.gasIncluded7702), + ...addTransactionBatchParams, }; - - return transactionParams; }; -export const findAndUpdateTransactionsInBatch = ({ +/** + * This is a workaround to update the tx type after submission. Batch txs are submitted with + * the "batch" type, but we need to update to swap/bridge for display purposes. + * + * @param params - The parameters for the transaction search + * @param params.messenger - The messenger to use for the transaction + * @param params.batchId - The batch ID to filter for + * @param params.tradeData - The quote, tx data and type for each transaction in the batch + * @returns A list of transaction metas for each trade in the batch] + * + * @example + * [ + * {...tradeData[0], tradeMeta: TransactionMeta} + * {...tradeData[1], tradeMeta: TransactionMeta} + * {...tradeData[2], tradeMeta: TransactionMeta} + * {...tradeData[3], tradeMeta: TransactionMeta} + * ] + */ +const findAllTransactionsInBatch = ({ messenger, batchId, - txDataByType, + tradeData, }: { messenger: BridgeStatusControllerMessenger; batchId: string; - txDataByType: { [key in TransactionType]?: string }; -}) => { - const txs = getTransactions(messenger); - const txBatch: { - approvalMeta?: TransactionMeta; - tradeMeta?: TransactionMeta; - } = { - approvalMeta: undefined, - tradeMeta: undefined, - }; - - // This is a workaround to update the tx type after the tx is signed - // TODO: remove this once the tx type for batch txs is preserved in the tx controller - const txEntries = Object.entries(txDataByType) as [TransactionType, string][]; - txEntries.forEach(([txType, txData]) => { - // Skip types not present in the batch (e.g. swap entry is undefined for bridge txs) - if (txData === undefined) { - return; - } - - // Find transaction by batchId and either matching data or delegation characteristics - const txMeta = txs.find((tx: TransactionMeta) => { - if (tx.batchId !== batchId) { - return false; - } + tradeData: QuoteAndTxMetadata[]; +}): QuoteAndTxMetadata[] => { + // Filter for transactions with batchId + const txs = getTransactions(messenger).filter( + (tx: TransactionMeta) => tx.batchId === batchId, + ); - // For 7702 delegated transactions, check for delegation-specific fields - // These transactions might have authorizationList or delegationAddress - const is7702Transaction = - (Array.isArray(tx.txParams.authorizationList) && - tx.txParams.authorizationList.length > 0) || - Boolean(tx.delegationAddress); - - if (is7702Transaction) { - // For 7702 transactions, we need to match based on transaction type - // since the data field might be different (batch execute call) - if (isTradeTx(txType) && tx.type === TransactionType.batch) { - return true; + return tradeData.map((tradeWithMetadata) => { + const { tx, type } = tradeWithMetadata; + return { + ...tradeWithMetadata, + txMeta: txs.find((txMeta: TransactionMeta) => { + if (is7702Tx(txMeta)) { + // For 7702 transactions, we need to match based on transaction type + // since the data field might be different (batch execute call) + if (isTradeTx(type) && txMeta.type === TransactionType.batch) { + return true; + } + // Also check if it's an approval transaction for 7702 + if (isApprovalTx(type) && txMeta.txParams.data === tx.data) { + return true; + } } - // Also check if it's an approval transaction for 7702 - if (isApprovalTx(txType) && tx.txParams.data === txData) { + // Default matching logic for non-7702 transactions + if (txMeta.txParams.data === tx.data) { return true; } - } + return false; + }), + }; + }); +}; - // Default matching logic for non-7702 transactions - return tx.txParams.data === txData; - }); +const updateTransactionsInBatch = ({ + messenger, + allTradesWithMetadata, +}: { + messenger: BridgeStatusControllerMessenger; + allTradesWithMetadata: QuoteAndTxMetadata[]; +}) => { + return allTradesWithMetadata.map((tradeWithMetadata) => { + const { txMeta, type } = tradeWithMetadata; if (txMeta) { - const updatedTx = { ...txMeta, type: txType }; + // Update the tx type from batch to swap/bridge updateTransaction( messenger, txMeta, - { type: txType }, - `Update tx type to ${txType}`, + { type }, + `Update tx type to ${type}`, ); - const txTypes = [ - TransactionType.bridgeApproval, - TransactionType.swapApproval, - ] as readonly string[]; - txBatch[txTypes.includes(txType) ? 'approvalMeta' : 'tradeMeta'] = - updatedTx; + const updatedTx = { ...txMeta, type }; + return { ...tradeWithMetadata, txMeta: updatedTx, type }; } - }); - return txBatch; + return tradeWithMetadata; + }); }; -export const addTransactionBatch = async ( - messenger: BridgeStatusControllerMessenger, - addTransactionBatchFn: TransactionController['addTransactionBatch'], - ...args: Parameters -) => { - const txDataByType = { - [TransactionType.bridgeApproval]: args[0].transactions.find( - ({ type }) => type === TransactionType.bridgeApproval, - )?.params.data, - [TransactionType.swapApproval]: args[0].transactions.find( - ({ type }) => type === TransactionType.swapApproval, - )?.params.data, - [TransactionType.bridge]: args[0].transactions.find( - ({ type }) => type === TransactionType.bridge, - )?.params.data, - [TransactionType.swap]: args[0].transactions.find( - ({ type }) => type === TransactionType.swap, - )?.params.data, - }; - - const { batchId } = await addTransactionBatchFn(...args); - - const { approvalMeta, tradeMeta } = findAndUpdateTransactionsInBatch({ +/** + * Finds all transactions in a batch and updates the tx type from batch to swap/bridge + * + * @deprecated use findAllTransactionsInBatch and updateTransactionsInBatch separately instead + * @param options - The parameters for the transaction search + * @param options.messenger - The messenger to use for the transaction + * @param options.batchId - The batch ID to filter for + * @param options.tradeData - The quote, tx data and type for each transaction in the batch + * @returns The quote, tx data and tx metadata for each transaction in the batch + */ +export const findAndUpdateTransactionsInBatch = ({ + messenger, + batchId, + tradeData, +}: { + messenger: BridgeStatusControllerMessenger; + batchId: string; + tradeData: QuoteAndTxMetadata[]; +}) => { + const quoteAndTxMetas = findAllTransactionsInBatch({ messenger, batchId, - txDataByType, + tradeData, }); - if (!tradeMeta) { - throw new Error( - 'Failed to update cross-chain swap transaction batch: tradeMeta not found', - ); - } + const updatedQuoteAndTxMetas = updateTransactionsInBatch({ + messenger, + allTradesWithMetadata: quoteAndTxMetas, + }); - return { approvalMeta, tradeMeta }; + return { + approvalMeta: updatedQuoteAndTxMetas.find( + ({ type, txMeta }) => isApprovalTx(type) && txMeta, + )?.txMeta, + tradeMeta: updatedQuoteAndTxMetas.find( + ({ type, txMeta }) => isTradeTx(type) && txMeta, + )?.txMeta, + }; }; -// TODO rename -const getGasFeesForSubmission = async ( +export const addTransactionBatch = async ( messenger: BridgeStatusControllerMessenger, - transactionParams: TransactionParams, - networkClientId: string, - chainId: Hex, - txFee?: { maxFeePerGas: string; maxPriorityFeePerGas: string }, -): Promise<{ - maxFeePerGas?: string; // Hex - maxPriorityFeePerGas?: string; // Hex - gas?: Hex; -}> => { - const { gas } = transactionParams; - // If txFee is provided (gasIncluded case), use the quote's gas fees - // Convert to hex since txFee values from the quote are decimal strings - if (txFee) { - return { - maxFeePerGas: toHex(txFee.maxFeePerGas), - maxPriorityFeePerGas: toHex(txFee.maxPriorityFeePerGas), - gas: gas ? toHex(gas) : undefined, - }; - } + addTransactionBatchFn: TransactionController['addTransactionBatch'], + quoteResponse: QuoteResponse & QuoteMetadata, + isBridgeTx: boolean, + requireApproval?: boolean, + isDelegatedAccount?: boolean, +) => { + const tradeData = toQuoteAndTxMetadata({ + quoteResponse, + isBridgeTx, + }); - const { maxFeePerGas, maxPriorityFeePerGas } = await getTxGasEstimates( + const transactionParams = await getAddTransactionBatchParams({ + tradeData, + requireApproval, + isDelegatedAccount, messenger, - { - transactionParams, - chainId, - networkClientId, - }, - ); + quoteResponse, + }); - return { - maxFeePerGas, - maxPriorityFeePerGas, - gas: gas ? toHex(gas) : undefined, - }; + const { batchId } = await addTransactionBatchFn(transactionParams); + + return findAndUpdateTransactionsInBatch({ + messenger, + batchId, + tradeData, + }); }; /** - * Submits an EVM transaction to the TransactionController + * Submits an single EVM tx to the TransactionController and returns the txMeta * * @param params - The parameters for the transaction * @param params.transactionType - The type of transaction to submit @@ -651,35 +623,18 @@ export const submitEvmTransaction = async ({ origin: 'metamask', isInternal: true, }; - // Exclude gasLimit from trade to avoid type issues (it can be null) - const { gasLimit: tradeGasLimit, ...tradeWithoutGasLimit } = trade; - - const transactionParams: Parameters< - TransactionController['addTransaction'] - >[0] = { - ...tradeWithoutGasLimit, - chainId: hexChainId, - // Only add gasLimit and gas if they're valid (not undefined/null/zero) - ...(tradeGasLimit && - tradeGasLimit !== 0 && { - gasLimit: tradeGasLimit.toString(), - gas: tradeGasLimit.toString(), - }), - }; - const transactionParamsWithMaxGas: TransactionParams = { - ...transactionParams, - ...(await getGasFeesForSubmission( - messenger, - transactionParams, - networkClientId, - hexChainId, - txFee, - )), - }; + + const transactionParamsWithMaxGas = await toTransactionParams( + messenger, + trade, + networkClientId, + hexChainId, + txFee, + ); return await addTransaction( messenger, - transactionParamsWithMaxGas, + { ...transactionParamsWithMaxGas, from: trade.from }, requestOptions, ); }; From 6bd7a44c0647afe28725cc458ac35ef7a9912d6b Mon Sep 17 00:00:00 2001 From: micaelae Date: Thu, 21 May 2026 18:45:10 -0700 Subject: [PATCH 5/7] fix: lint --- MetaMask state logs.json | 325158 +++++++++++++++ .../src/utils/transaction.test.ts | 4 +- quote.json | 161 + 3 files changed, 325321 insertions(+), 2 deletions(-) create mode 100644 MetaMask state logs.json create mode 100644 quote.json diff --git a/MetaMask state logs.json b/MetaMask state logs.json new file mode 100644 index 0000000000..a358cd2b73 --- /dev/null +++ b/MetaMask state logs.json @@ -0,0 +1,325158 @@ +{ + "invalidCustomNetwork": { + "state": "CLOSED", + "networkName": "" + }, + "unconnectedAccount": { + "state": "CLOSED" + }, + "activeTab": { + "id": 809479887, + "title": "feat: submit batch sell quotes by micaelae · Pull Request #8775 · MetaMask/core", + "origin": "https://github.com", + "protocol": "https:", + "url": "https://github.com/MetaMask/core/pull/8775" + }, + "metamask": { + "isInitialized": true, + "isUnlocked": true, + "internalAccounts": { + "accounts": { + "cf6fe6ed-1d1c-4649-9662-a232e0aadb82": { + "id": "cf6fe6ed-1d1c-4649-9662-a232e0aadb82", + "address": "0x30e8ccad5a980bdf30447f8c2c48e70989d9d294", + "options": { + "entropySource": "01KJ6E9MG4VY87VPKWJPR6W39K", + "derivationPath": "m/44'/60'/0'/0/0", + "groupIndex": 0, + "entropy": { + "type": "mnemonic", + "id": "01KJ6E9MG4VY87VPKWJPR6W39K", + "derivationPath": "m/44'/60'/0'/0/0", + "groupIndex": 0 + } + }, + "methods": [ + "personal_sign", + "eth_sign", + "eth_signTransaction", + "eth_signTypedData_v1", + "eth_signTypedData_v3", + "eth_signTypedData_v4" + ], + "scopes": ["eip155:0"], + "type": "eip155:eoa", + "metadata": { + "name": "Account 1", + "importTime": 1771890332166, + "lastSelected": 1778721516063, + "keyring": { + "type": "HD Key Tree" + } + } + }, + "7020eb89-94df-4e67-ba9f-a9ebe6c40524": { + "id": "7020eb89-94df-4e67-ba9f-a9ebe6c40524", + "address": "0xf25bd11c334507fd007d584e2d0b7b2c6543f714", + "options": { + "entropySource": "01KJ6E9MG4VY87VPKWJPR6W39K", + "derivationPath": "m/44'/60'/0'/0/1", + "groupIndex": 1, + "entropy": { + "type": "mnemonic", + "id": "01KJ6E9MG4VY87VPKWJPR6W39K", + "derivationPath": "m/44'/60'/0'/0/1", + "groupIndex": 1 + } + }, + "methods": [ + "personal_sign", + "eth_sign", + "eth_signTransaction", + "eth_signTypedData_v1", + "eth_signTypedData_v3", + "eth_signTypedData_v4" + ], + "scopes": ["eip155:0"], + "type": "eip155:eoa", + "metadata": { + "name": "Account 2", + "importTime": 1771890336300, + "lastSelected": 1778721549394, + "keyring": { + "type": "HD Key Tree" + } + } + }, + "02c4222b-f0d3-448e-848f-7bf6b3ce3379": { + "id": "02c4222b-f0d3-448e-848f-7bf6b3ce3379", + "address": "0xe2f39519240814a77047490357ced4d094b6c9c7", + "options": { + "entropySource": "01KJ6E9MG4VY87VPKWJPR6W39K", + "derivationPath": "m/44'/60'/0'/0/2", + "groupIndex": 2, + "entropy": { + "type": "mnemonic", + "id": "01KJ6E9MG4VY87VPKWJPR6W39K", + "derivationPath": "m/44'/60'/0'/0/2", + "groupIndex": 2 + } + }, + "methods": [ + "personal_sign", + "eth_sign", + "eth_signTransaction", + "eth_signTypedData_v1", + "eth_signTypedData_v3", + "eth_signTypedData_v4" + ], + "scopes": ["eip155:0"], + "type": "eip155:eoa", + "metadata": { + "name": "Account 3", + "importTime": 1771890336302, + "lastSelected": 1778616449020, + "keyring": { + "type": "HD Key Tree" + } + } + }, + "2ddfe00a-fef1-4085-82f5-e5cdc9d8871f": { + "id": "2ddfe00a-fef1-4085-82f5-e5cdc9d8871f", + "address": "0x452ca3dad6db7f3a47bbf15b758b6749db579bbc", + "options": { + "entropySource": "01KJ6E9MG4VY87VPKWJPR6W39K", + "derivationPath": "m/44'/60'/0'/0/3", + "groupIndex": 3, + "entropy": { + "type": "mnemonic", + "id": "01KJ6E9MG4VY87VPKWJPR6W39K", + "derivationPath": "m/44'/60'/0'/0/3", + "groupIndex": 3 + } + }, + "methods": [ + "personal_sign", + "eth_sign", + "eth_signTransaction", + "eth_signTypedData_v1", + "eth_signTypedData_v3", + "eth_signTypedData_v4" + ], + "scopes": ["eip155:0"], + "type": "eip155:eoa", + "metadata": { + "name": "Account 4", + "importTime": 1771890336303, + "lastSelected": 1777420287284, + "keyring": { + "type": "HD Key Tree" + } + } + }, + "4ad41148-9589-48f1-a20d-1ddd6bcf1282": { + "id": "4ad41148-9589-48f1-a20d-1ddd6bcf1282", + "address": "0x2b6a82d1fea4d5b137095ca5306ba2589b630a08", + "options": { + "entropySource": "01KJ6E9MG4VY87VPKWJPR6W39K", + "derivationPath": "m/44'/60'/0'/0/4", + "groupIndex": 4, + "entropy": { + "type": "mnemonic", + "id": "01KJ6E9MG4VY87VPKWJPR6W39K", + "derivationPath": "m/44'/60'/0'/0/4", + "groupIndex": 4 + } + }, + "methods": [ + "personal_sign", + "eth_sign", + "eth_signTransaction", + "eth_signTypedData_v1", + "eth_signTypedData_v3", + "eth_signTypedData_v4" + ], + "scopes": ["eip155:0"], + "type": "eip155:eoa", + "metadata": { + "name": "Account 5", + "importTime": 1771890336305, + "lastSelected": 0, + "keyring": { + "type": "HD Key Tree" + } + } + }, + "4493467c-a178-494e-b87e-92f0d7a7d1a1": { + "id": "4493467c-a178-494e-b87e-92f0d7a7d1a1", + "address": "0x94d1362400e999b38c845ca2c305c084031dae84", + "options": { + "entropySource": "01KJ6E9MG4VY87VPKWJPR6W39K", + "derivationPath": "m/44'/60'/0'/0/5", + "groupIndex": 5, + "entropy": { + "type": "mnemonic", + "id": "01KJ6E9MG4VY87VPKWJPR6W39K", + "derivationPath": "m/44'/60'/0'/0/5", + "groupIndex": 5 + } + }, + "methods": [ + "personal_sign", + "eth_sign", + "eth_signTransaction", + "eth_signTypedData_v1", + "eth_signTypedData_v3", + "eth_signTypedData_v4" + ], + "scopes": ["eip155:0"], + "type": "eip155:eoa", + "metadata": { + "name": "Account 6", + "importTime": 1771890336306, + "lastSelected": 0, + "keyring": { + "type": "HD Key Tree" + } + } + }, + "77939f4e-1d05-4224-bf26-90dcc3382f5d": { + "id": "77939f4e-1d05-4224-bf26-90dcc3382f5d", + "address": "0x83ad6a1294d949d514361326bcebae4f73957327", + "options": { + "entropySource": "01KJ6E9MG4VY87VPKWJPR6W39K", + "derivationPath": "m/44'/60'/0'/0/6", + "groupIndex": 6, + "entropy": { + "type": "mnemonic", + "id": "01KJ6E9MG4VY87VPKWJPR6W39K", + "derivationPath": "m/44'/60'/0'/0/6", + "groupIndex": 6 + } + }, + "methods": [ + "personal_sign", + "eth_sign", + "eth_signTransaction", + "eth_signTypedData_v1", + "eth_signTypedData_v3", + "eth_signTypedData_v4" + ], + "scopes": ["eip155:0"], + "type": "eip155:eoa", + "metadata": { + "name": "Account 7", + "importTime": 1771890336307, + "lastSelected": 1772735626871, + "keyring": { + "type": "HD Key Tree" + } + } + }, + "08127c65-97e2-4502-b576-2b25c8cc765f": { + "id": "08127c65-97e2-4502-b576-2b25c8cc765f", + "address": "0xbcc30cc9b8109f87fcede0c57e3a8c3dc979e3d0", + "options": { + "entropySource": "01KJ6E9MG4VY87VPKWJPR6W39K", + "derivationPath": "m/44'/60'/0'/0/7", + "groupIndex": 7, + "entropy": { + "type": "mnemonic", + "id": "01KJ6E9MG4VY87VPKWJPR6W39K", + "derivationPath": "m/44'/60'/0'/0/7", + "groupIndex": 7 + } + }, + "methods": [ + "personal_sign", + "eth_sign", + "eth_signTransaction", + "eth_signTypedData_v1", + "eth_signTypedData_v3", + "eth_signTypedData_v4" + ], + "scopes": ["eip155:0"], + "type": "eip155:eoa", + "metadata": { + "name": "Account 8", + "importTime": 1771890336309, + "lastSelected": 0, + "keyring": { + "type": "HD Key Tree" + } + } + }, + "7e04501c-6e1f-457d-8dd5-68d8f3a4c84f": { + "id": "7e04501c-6e1f-457d-8dd5-68d8f3a4c84f", + "address": "0x3823c59973351f50e8b985e182b81300dae9bb45", + "options": { + "entropySource": "01KJ6E9MG4VY87VPKWJPR6W39K", + "derivationPath": "m/44'/60'/0'/0/8", + "groupIndex": 8, + "entropy": { + "type": "mnemonic", + "id": "01KJ6E9MG4VY87VPKWJPR6W39K", + "derivationPath": "m/44'/60'/0'/0/8", + "groupIndex": 8 + } + }, + "methods": [ + "personal_sign", + "eth_sign", + "eth_signTransaction", + "eth_signTypedData_v1", + "eth_signTypedData_v3", + "eth_signTypedData_v4" + ], + "scopes": ["eip155:0"], + "type": "eip155:eoa", + "metadata": { + "name": "Account 9", + "importTime": 1772573075929, + "lastSelected": 0, + "keyring": { + "type": "HD Key Tree" + } + } + }, + "db094d8c-3c7b-4a1f-97f5-6d43bf894549": { + "id": "db094d8c-3c7b-4a1f-97f5-6d43bf894549", + "address": "0xc9442048fd0c34b684035a82188b69c4ee5e8f21", + "options": { + "entropySource": "01KJ6E9MG4VY87VPKWJPR6W39K", + "derivationPath": "m/44'/60'/0'/0/9", + "groupIndex": 9, + "entropy": { + "type": "mnemonic", + "id": "01KJ6E9MG4VY87VPKWJPR6W39K", + "derivationPath": "m/44'/60'/0'/0/9", + "groupIndex": 9 + } + }, + "methods": [ + "personal_sign", + "eth_sign", + "eth_signTransaction", + "eth_signTypedData_v1", + "eth_signTypedData_v3", + "eth_signTypedData_v4" + ], + "scopes": ["eip155:0"], + "type": "eip155:eoa", + "metadata": { + "name": "", + "importTime": 1773330804680, + "lastSelected": 0, + "keyring": { + "type": "HD Key Tree" + } + } + }, + "fedf900d-3caf-4540-9e24-c63400ef2b18": { + "id": "fedf900d-3caf-4540-9e24-c63400ef2b18", + "address": "THV8AzsmaMCuCEW3xmxeHQe3nfVjcPESnG", + "type": "tron:eoa", + "options": { + "entropy": { + "type": "mnemonic", + "id": "01KJ6E9MG4VY87VPKWJPR6W39K", + "derivationPath": "m/44'/195'/0'/0/0", + "groupIndex": 0 + }, + "exportable": true, + "entropySource": "01KJ6E9MG4VY87VPKWJPR6W39K", + "index": 0, + "addressType": "tron:eoa", + "scope": "tron:728126428", + "groupIndex": 0 + }, + "methods": ["signMessage", "signTransaction"], + "scopes": ["tron:728126428", "tron:3448148188", "tron:2494104990"], + "metadata": { + "name": "Snap Account 1", + "importTime": 1771890335264, + "keyring": { + "type": "Snap Keyring" + }, + "snap": { + "id": "npm:@metamask/tron-wallet-snap" + }, + "lastSelected": 1778779624107 + } + }, + "1c2440b0-d05e-4b07-881c-ebb9bce2bbb7": { + "id": "1c2440b0-d05e-4b07-881c-ebb9bce2bbb7", + "address": "TTU9eC5J56EhSRhw56NqZW48bJFCC1V4zt", + "type": "tron:eoa", + "options": { + "entropy": { + "type": "mnemonic", + "id": "01KJ6E9MG4VY87VPKWJPR6W39K", + "derivationPath": "m/44'/195'/0'/0/1", + "groupIndex": 1 + }, + "exportable": true, + "entropySource": "01KJ6E9MG4VY87VPKWJPR6W39K", + "index": 1, + "addressType": "tron:eoa", + "scope": "tron:728126428", + "groupIndex": 1 + }, + "methods": ["signMessage", "signTransaction"], + "scopes": ["tron:728126428", "tron:3448148188", "tron:2494104990"], + "metadata": { + "name": "Snap Account 4", + "importTime": 1771890336357, + "keyring": { + "type": "Snap Keyring" + }, + "snap": { + "id": "npm:@metamask/tron-wallet-snap" + }, + "lastSelected": 0 + } + }, + "3d26ef67-6870-4750-af80-bce53fa4a0af": { + "id": "3d26ef67-6870-4750-af80-bce53fa4a0af", + "address": "TLQw3YKJkcBdBsuR4eUxXAYRjQdpD6eEMD", + "type": "tron:eoa", + "options": { + "entropy": { + "type": "mnemonic", + "id": "01KJ6E9MG4VY87VPKWJPR6W39K", + "derivationPath": "m/44'/195'/0'/0/2", + "groupIndex": 2 + }, + "exportable": true, + "entropySource": "01KJ6E9MG4VY87VPKWJPR6W39K", + "index": 2, + "addressType": "tron:eoa", + "scope": "tron:728126428", + "groupIndex": 2 + }, + "methods": ["signMessage", "signTransaction"], + "scopes": ["tron:728126428", "tron:3448148188", "tron:2494104990"], + "metadata": { + "name": "Snap Account 7", + "importTime": 1771890336415, + "keyring": { + "type": "Snap Keyring" + }, + "snap": { + "id": "npm:@metamask/tron-wallet-snap" + }, + "lastSelected": 0 + } + }, + "8b0e3ad2-d40d-47b1-a9c3-702eb67ab1ba": { + "id": "8b0e3ad2-d40d-47b1-a9c3-702eb67ab1ba", + "address": "TJQTuKiGEYBoFaScz3WdpYYVyA7osnLLMa", + "type": "tron:eoa", + "options": { + "entropy": { + "type": "mnemonic", + "id": "01KJ6E9MG4VY87VPKWJPR6W39K", + "derivationPath": "m/44'/195'/0'/0/3", + "groupIndex": 3 + }, + "exportable": true, + "entropySource": "01KJ6E9MG4VY87VPKWJPR6W39K", + "index": 3, + "addressType": "tron:eoa", + "scope": "tron:728126428", + "groupIndex": 3 + }, + "methods": ["signMessage", "signTransaction"], + "scopes": ["tron:728126428", "tron:3448148188", "tron:2494104990"], + "metadata": { + "name": "Snap Account 10", + "importTime": 1771890336466, + "keyring": { + "type": "Snap Keyring" + }, + "snap": { + "id": "npm:@metamask/tron-wallet-snap" + }, + "lastSelected": 0 + } + }, + "9e12503a-12d8-4bb4-835f-a0c203ccd67a": { + "id": "9e12503a-12d8-4bb4-835f-a0c203ccd67a", + "address": "TNhtgmd4AcnN4eB6AqBejjvSJppjg33kKV", + "type": "tron:eoa", + "options": { + "entropy": { + "type": "mnemonic", + "id": "01KJ6E9MG4VY87VPKWJPR6W39K", + "derivationPath": "m/44'/195'/0'/0/4", + "groupIndex": 4 + }, + "exportable": true, + "entropySource": "01KJ6E9MG4VY87VPKWJPR6W39K", + "index": 4, + "addressType": "tron:eoa", + "scope": "tron:728126428", + "groupIndex": 4 + }, + "methods": ["signMessage", "signTransaction"], + "scopes": ["tron:728126428", "tron:3448148188", "tron:2494104990"], + "metadata": { + "name": "Snap Account 12", + "importTime": 1771890336505, + "keyring": { + "type": "Snap Keyring" + }, + "snap": { + "id": "npm:@metamask/tron-wallet-snap" + }, + "lastSelected": 0 + } + }, + "c7cf5799-e458-4bb5-b60b-7e74cf2e7c0a": { + "id": "c7cf5799-e458-4bb5-b60b-7e74cf2e7c0a", + "address": "TQ2WcfeudHttr9ef9PykE4Vf5upUDhzCKy", + "type": "tron:eoa", + "options": { + "entropy": { + "type": "mnemonic", + "id": "01KJ6E9MG4VY87VPKWJPR6W39K", + "derivationPath": "m/44'/195'/0'/0/5", + "groupIndex": 5 + }, + "exportable": true, + "entropySource": "01KJ6E9MG4VY87VPKWJPR6W39K", + "index": 5, + "addressType": "tron:eoa", + "scope": "tron:728126428", + "groupIndex": 5 + }, + "methods": ["signMessage", "signTransaction"], + "scopes": ["tron:728126428", "tron:3448148188", "tron:2494104990"], + "metadata": { + "name": "Snap Account 15", + "importTime": 1771890336544, + "keyring": { + "type": "Snap Keyring" + }, + "snap": { + "id": "npm:@metamask/tron-wallet-snap" + }, + "lastSelected": 0 + } + }, + "f7f2ce83-85bc-49f9-8551-c36c5432a0c1": { + "id": "f7f2ce83-85bc-49f9-8551-c36c5432a0c1", + "address": "TPhMtQEUfTrEc3v6M75cnRfbSC41MZcaDB", + "type": "tron:eoa", + "options": { + "entropy": { + "type": "mnemonic", + "id": "01KJ6E9MG4VY87VPKWJPR6W39K", + "derivationPath": "m/44'/195'/0'/0/6", + "groupIndex": 6 + }, + "exportable": true, + "entropySource": "01KJ6E9MG4VY87VPKWJPR6W39K", + "index": 6, + "addressType": "tron:eoa", + "scope": "tron:728126428", + "groupIndex": 6 + }, + "methods": ["signMessage", "signTransaction"], + "scopes": ["tron:728126428", "tron:3448148188", "tron:2494104990"], + "metadata": { + "name": "Snap Account 17", + "importTime": 1771890336582, + "keyring": { + "type": "Snap Keyring" + }, + "snap": { + "id": "npm:@metamask/tron-wallet-snap" + }, + "lastSelected": 0 + } + }, + "73a28e8a-5ecb-4b36-b6f3-d2c12294eebf": { + "id": "73a28e8a-5ecb-4b36-b6f3-d2c12294eebf", + "address": "TQEG7f85Eawvcw3QV4JsMfHJvXcCC8Kxq5", + "type": "tron:eoa", + "options": { + "entropy": { + "type": "mnemonic", + "id": "01KJ6E9MG4VY87VPKWJPR6W39K", + "derivationPath": "m/44'/195'/0'/0/7", + "groupIndex": 7 + }, + "exportable": true, + "entropySource": "01KJ6E9MG4VY87VPKWJPR6W39K", + "index": 7, + "addressType": "tron:eoa", + "scope": "tron:728126428", + "groupIndex": 7 + }, + "methods": ["signMessage", "signTransaction"], + "scopes": ["tron:728126428", "tron:3448148188", "tron:2494104990"], + "metadata": { + "name": "Snap Account 19", + "importTime": 1771890336622, + "keyring": { + "type": "Snap Keyring" + }, + "snap": { + "id": "npm:@metamask/tron-wallet-snap" + }, + "lastSelected": 0 + } + }, + "78ccb0a9-3647-4bb6-94b4-54d8b4e0b397": { + "id": "78ccb0a9-3647-4bb6-94b4-54d8b4e0b397", + "address": "TU2aNJSfrhLZnSvPRCiAHdpLBhxW2n8HA8", + "type": "tron:eoa", + "options": { + "entropy": { + "type": "mnemonic", + "id": "01KJ6E9MG4VY87VPKWJPR6W39K", + "derivationPath": "m/44'/195'/0'/0/8", + "groupIndex": 8 + }, + "exportable": true, + "entropySource": "01KJ6E9MG4VY87VPKWJPR6W39K", + "index": 8, + "addressType": "tron:eoa", + "scope": "tron:728126428", + "groupIndex": 8 + }, + "methods": ["signMessage", "signTransaction"], + "scopes": ["tron:728126428", "tron:3448148188", "tron:2494104990"], + "metadata": { + "name": "Snap Account 25", + "importTime": 1772573075959, + "keyring": { + "type": "Snap Keyring" + }, + "snap": { + "id": "npm:@metamask/tron-wallet-snap" + }, + "lastSelected": 0 + } + }, + "77a6514e-0024-4dc2-b08d-e78c664c37c5": { + "id": "77a6514e-0024-4dc2-b08d-e78c664c37c5", + "address": "TWYHHhNY6TA3sVLbkZ4suQDMuKxYqLPDja", + "type": "tron:eoa", + "options": { + "entropy": { + "type": "mnemonic", + "id": "01KJ6E9MG4VY87VPKWJPR6W39K", + "derivationPath": "m/44'/195'/0'/0/9", + "groupIndex": 9 + }, + "exportable": true, + "entropySource": "01KJ6E9MG4VY87VPKWJPR6W39K", + "index": 9, + "addressType": "tron:eoa", + "scope": "tron:728126428", + "groupIndex": 9 + }, + "methods": ["signMessage", "signTransaction"], + "scopes": ["tron:728126428", "tron:3448148188", "tron:2494104990"], + "metadata": { + "name": "", + "importTime": 1773330804800, + "keyring": { + "type": "Snap Keyring" + }, + "snap": { + "id": "npm:@metamask/tron-wallet-snap" + }, + "lastSelected": 0 + } + }, + "c5bf70b0-2c4b-4016-9107-cab94be5fbb0": { + "id": "c5bf70b0-2c4b-4016-9107-cab94be5fbb0", + "address": "TXmjzabcG63GjXgGKuaStJh6oCorb8jyja", + "type": "tron:eoa", + "options": { + "entropy": { + "type": "mnemonic", + "id": "01KMK79H2SG3MB2Q7XWEXMZ013", + "derivationPath": "m/44'/195'/0'/0/0", + "groupIndex": 0 + }, + "exportable": true, + "entropySource": "01KMK79H2SG3MB2Q7XWEXMZ013", + "index": 0, + "addressType": "tron:eoa", + "scope": "tron:728126428", + "groupIndex": 0 + }, + "methods": ["signMessage", "signTransaction"], + "scopes": ["tron:728126428", "tron:3448148188", "tron:2494104990"], + "metadata": { + "name": "", + "importTime": 1774466679971, + "keyring": { + "type": "Snap Keyring" + }, + "snap": { + "id": "npm:@metamask/tron-wallet-snap" + }, + "lastSelected": 0 + } + }, + "658962cf-0ecb-496e-beb8-91b663d244de": { + "id": "658962cf-0ecb-496e-beb8-91b663d244de", + "address": "TVnpirfVZPZg4eybigftt2bGcLVawnLVHy", + "type": "tron:eoa", + "options": { + "entropy": { + "type": "mnemonic", + "id": "01KMK79H2SG3MB2Q7XWEXMZ013", + "derivationPath": "m/44'/195'/0'/0/1", + "groupIndex": 1 + }, + "exportable": true, + "entropySource": "01KMK79H2SG3MB2Q7XWEXMZ013", + "index": 1, + "addressType": "tron:eoa", + "scope": "tron:728126428", + "groupIndex": 1 + }, + "methods": ["signMessage", "signTransaction"], + "scopes": ["tron:728126428", "tron:3448148188", "tron:2494104990"], + "metadata": { + "name": "", + "importTime": 1774466681776, + "keyring": { + "type": "Snap Keyring" + }, + "snap": { + "id": "npm:@metamask/tron-wallet-snap" + }, + "lastSelected": 0 + } + }, + "1dd2b0a9-a1ea-4308-92e8-303665fd25c5": { + "id": "1dd2b0a9-a1ea-4308-92e8-303665fd25c5", + "address": "TFZKVArzmNQTpv3bKe1QUkCXruf8PTuJdG", + "type": "tron:eoa", + "options": { + "entropy": { + "type": "mnemonic", + "id": "01KMK79H2SG3MB2Q7XWEXMZ013", + "derivationPath": "m/44'/195'/0'/0/2", + "groupIndex": 2 + }, + "exportable": true, + "entropySource": "01KMK79H2SG3MB2Q7XWEXMZ013", + "index": 2, + "addressType": "tron:eoa", + "scope": "tron:728126428", + "groupIndex": 2 + }, + "methods": ["signMessage", "signTransaction"], + "scopes": ["tron:728126428", "tron:3448148188", "tron:2494104990"], + "metadata": { + "name": "", + "importTime": 1774466681836, + "keyring": { + "type": "Snap Keyring" + }, + "snap": { + "id": "npm:@metamask/tron-wallet-snap" + }, + "lastSelected": 0 + } + }, + "d8086b4c-4361-49ab-8955-efaa5240f561": { + "id": "d8086b4c-4361-49ab-8955-efaa5240f561", + "address": "TVgYW8xdwbKPw5MkiYbz5Vmto9wna2zNdr", + "type": "tron:eoa", + "options": { + "entropy": { + "type": "mnemonic", + "id": "01KMK79H2SG3MB2Q7XWEXMZ013", + "derivationPath": "m/44'/195'/0'/0/3", + "groupIndex": 3 + }, + "exportable": true, + "entropySource": "01KMK79H2SG3MB2Q7XWEXMZ013", + "index": 3, + "addressType": "tron:eoa", + "scope": "tron:728126428", + "groupIndex": 3 + }, + "methods": ["signMessage", "signTransaction"], + "scopes": ["tron:728126428", "tron:3448148188", "tron:2494104990"], + "metadata": { + "name": "", + "importTime": 1774466681880, + "keyring": { + "type": "Snap Keyring" + }, + "snap": { + "id": "npm:@metamask/tron-wallet-snap" + }, + "lastSelected": 0 + } + }, + "8fd0b8c5-b42d-462d-965b-2979b4057c88": { + "id": "8fd0b8c5-b42d-462d-965b-2979b4057c88", + "address": "TGhD1GruvbKNbhAUBxqiHQVpXe4tL4WzMN", + "type": "tron:eoa", + "options": { + "entropy": { + "type": "mnemonic", + "id": "01KMK79H2SG3MB2Q7XWEXMZ013", + "derivationPath": "m/44'/195'/0'/0/4", + "groupIndex": 4 + }, + "exportable": true, + "entropySource": "01KMK79H2SG3MB2Q7XWEXMZ013", + "index": 4, + "addressType": "tron:eoa", + "scope": "tron:728126428", + "groupIndex": 4 + }, + "methods": ["signMessage", "signTransaction"], + "scopes": ["tron:728126428", "tron:3448148188", "tron:2494104990"], + "metadata": { + "name": "", + "importTime": 1774466681909, + "keyring": { + "type": "Snap Keyring" + }, + "snap": { + "id": "npm:@metamask/tron-wallet-snap" + }, + "lastSelected": 0 + } + }, + "e6f7d2e7-8c4c-48f7-9d04-958add8113b7": { + "id": "e6f7d2e7-8c4c-48f7-9d04-958add8113b7", + "address": "TGzh1crEiU8jT2XNix6NWMVFCtwNyEiiX5", + "type": "tron:eoa", + "options": { + "entropy": { + "type": "mnemonic", + "id": "01KMK79H2SG3MB2Q7XWEXMZ013", + "derivationPath": "m/44'/195'/0'/0/5", + "groupIndex": 5 + }, + "exportable": true, + "entropySource": "01KMK79H2SG3MB2Q7XWEXMZ013", + "index": 5, + "addressType": "tron:eoa", + "scope": "tron:728126428", + "groupIndex": 5 + }, + "methods": ["signMessage", "signTransaction"], + "scopes": ["tron:728126428", "tron:3448148188", "tron:2494104990"], + "metadata": { + "name": "", + "importTime": 1774466682001, + "keyring": { + "type": "Snap Keyring" + }, + "snap": { + "id": "npm:@metamask/tron-wallet-snap" + }, + "lastSelected": 0 + } + }, + "ffb79cf7-3a88-4cfe-864c-a9f656ce1840": { + "type": "bip122:p2wpkh", + "scopes": ["bip122:000000000019d6689c085ae165831e93"], + "id": "ffb79cf7-3a88-4cfe-864c-a9f656ce1840", + "address": "bc1q2pxsagdzfdn6k6umvf9gj3eme7a27p7acym9g2", + "options": { + "entropySource": "01KJ6E9MG4VY87VPKWJPR6W39K", + "exportable": false, + "entropy": { + "type": "mnemonic", + "id": "01KJ6E9MG4VY87VPKWJPR6W39K", + "derivationPath": "m/84'/0'/0'", + "groupIndex": 0 + } + }, + "methods": [ + "signPsbt", + "computeFee", + "fillPsbt", + "broadcastPsbt", + "sendTransfer", + "getUtxo", + "listUtxos", + "publicDescriptor", + "signMessage" + ], + "metadata": { + "name": "Snap Account 2", + "importTime": 1771890335289, + "keyring": { + "type": "Snap Keyring" + }, + "snap": { + "id": "npm:@metamask/bitcoin-wallet-snap" + }, + "lastSelected": 1778779620046 + } + }, + "d05ca007-7a11-470f-8433-a89767f95995": { + "type": "bip122:p2wpkh", + "scopes": ["bip122:000000000019d6689c085ae165831e93"], + "id": "d05ca007-7a11-470f-8433-a89767f95995", + "address": "bc1qkv7fs9jkan5fk4dal9zm4hltvx3022mmnzt09l", + "options": { + "entropySource": "01KJ6E9MG4VY87VPKWJPR6W39K", + "exportable": false, + "entropy": { + "type": "mnemonic", + "id": "01KJ6E9MG4VY87VPKWJPR6W39K", + "derivationPath": "m/84'/0'/1'", + "groupIndex": 1 + } + }, + "methods": [ + "signPsbt", + "computeFee", + "fillPsbt", + "broadcastPsbt", + "sendTransfer", + "getUtxo", + "listUtxos", + "publicDescriptor", + "signMessage" + ], + "metadata": { + "name": "Snap Account 6", + "importTime": 1771890336360, + "keyring": { + "type": "Snap Keyring" + }, + "snap": { + "id": "npm:@metamask/bitcoin-wallet-snap" + }, + "lastSelected": 0 + } + }, + "23ce192d-62e7-4d4f-a168-93ae18dc915d": { + "type": "bip122:p2wpkh", + "scopes": ["bip122:000000000019d6689c085ae165831e93"], + "id": "23ce192d-62e7-4d4f-a168-93ae18dc915d", + "address": "bc1qjx6jn6jlkrglaqtt35hr0sc7qsehkuqyq6lmys", + "options": { + "entropySource": "01KJ6E9MG4VY87VPKWJPR6W39K", + "exportable": false, + "entropy": { + "type": "mnemonic", + "id": "01KJ6E9MG4VY87VPKWJPR6W39K", + "derivationPath": "m/84'/0'/2'", + "groupIndex": 2 + } + }, + "methods": [ + "signPsbt", + "computeFee", + "fillPsbt", + "broadcastPsbt", + "sendTransfer", + "getUtxo", + "listUtxos", + "publicDescriptor", + "signMessage" + ], + "metadata": { + "name": "Snap Account 8", + "importTime": 1771890336448, + "keyring": { + "type": "Snap Keyring" + }, + "snap": { + "id": "npm:@metamask/bitcoin-wallet-snap" + }, + "lastSelected": 0 + } + }, + "c6d62ae8-d02c-4a7a-8222-17ed6cdf0e52": { + "type": "bip122:p2wpkh", + "scopes": ["bip122:000000000019d6689c085ae165831e93"], + "id": "c6d62ae8-d02c-4a7a-8222-17ed6cdf0e52", + "address": "bc1q4802rfdtl8x6fc2lfrerpuqn3707mz9p6xaw5v", + "options": { + "entropySource": "01KJ6E9MG4VY87VPKWJPR6W39K", + "exportable": false, + "entropy": { + "type": "mnemonic", + "id": "01KJ6E9MG4VY87VPKWJPR6W39K", + "derivationPath": "m/84'/0'/3'", + "groupIndex": 3 + } + }, + "methods": [ + "signPsbt", + "computeFee", + "fillPsbt", + "broadcastPsbt", + "sendTransfer", + "getUtxo", + "listUtxos", + "publicDescriptor", + "signMessage" + ], + "metadata": { + "name": "Snap Account 11", + "importTime": 1771890336486, + "keyring": { + "type": "Snap Keyring" + }, + "snap": { + "id": "npm:@metamask/bitcoin-wallet-snap" + }, + "lastSelected": 0 + } + }, + "df59431e-d587-40a5-9c2b-3bdc6584b0e4": { + "type": "bip122:p2wpkh", + "scopes": ["bip122:000000000019d6689c085ae165831e93"], + "id": "df59431e-d587-40a5-9c2b-3bdc6584b0e4", + "address": "bc1qx95r6rrjndjmnc353mg0da5545smp9sakzxxtl", + "options": { + "entropySource": "01KJ6E9MG4VY87VPKWJPR6W39K", + "exportable": false, + "entropy": { + "type": "mnemonic", + "id": "01KJ6E9MG4VY87VPKWJPR6W39K", + "derivationPath": "m/84'/0'/4'", + "groupIndex": 4 + } + }, + "methods": [ + "signPsbt", + "computeFee", + "fillPsbt", + "broadcastPsbt", + "sendTransfer", + "getUtxo", + "listUtxos", + "publicDescriptor", + "signMessage" + ], + "metadata": { + "name": "Snap Account 14", + "importTime": 1771890336541, + "keyring": { + "type": "Snap Keyring" + }, + "snap": { + "id": "npm:@metamask/bitcoin-wallet-snap" + }, + "lastSelected": 0 + } + }, + "03d7de03-c856-4239-93fc-b3cc5352883a": { + "type": "bip122:p2wpkh", + "scopes": ["bip122:000000000019d6689c085ae165831e93"], + "id": "03d7de03-c856-4239-93fc-b3cc5352883a", + "address": "bc1qmkhzc8tx8xkkwzqfez4nuk27qemjg5mvf54csk", + "options": { + "entropySource": "01KJ6E9MG4VY87VPKWJPR6W39K", + "exportable": false, + "entropy": { + "type": "mnemonic", + "id": "01KJ6E9MG4VY87VPKWJPR6W39K", + "derivationPath": "m/84'/0'/5'", + "groupIndex": 5 + } + }, + "methods": [ + "signPsbt", + "computeFee", + "fillPsbt", + "broadcastPsbt", + "sendTransfer", + "getUtxo", + "listUtxos", + "publicDescriptor", + "signMessage" + ], + "metadata": { + "name": "Snap Account 18", + "importTime": 1771890336584, + "keyring": { + "type": "Snap Keyring" + }, + "snap": { + "id": "npm:@metamask/bitcoin-wallet-snap" + }, + "lastSelected": 0 + } + }, + "3d379cac-eb60-4b45-8374-370aac2b76c5": { + "type": "bip122:p2wpkh", + "scopes": ["bip122:000000000019d6689c085ae165831e93"], + "id": "3d379cac-eb60-4b45-8374-370aac2b76c5", + "address": "bc1qc5jermkwtwa4zput0tjrxqrq03906xfw0mtanx", + "options": { + "entropySource": "01KJ6E9MG4VY87VPKWJPR6W39K", + "exportable": false, + "entropy": { + "type": "mnemonic", + "id": "01KJ6E9MG4VY87VPKWJPR6W39K", + "derivationPath": "m/84'/0'/6'", + "groupIndex": 6 + } + }, + "methods": [ + "signPsbt", + "computeFee", + "fillPsbt", + "broadcastPsbt", + "sendTransfer", + "getUtxo", + "listUtxos", + "publicDescriptor", + "signMessage" + ], + "metadata": { + "name": "Snap Account 21", + "importTime": 1771890336635, + "keyring": { + "type": "Snap Keyring" + }, + "snap": { + "id": "npm:@metamask/bitcoin-wallet-snap" + }, + "lastSelected": 0 + } + }, + "744910ce-8368-414f-8e7c-1c5dba71831e": { + "type": "bip122:p2wpkh", + "scopes": ["bip122:000000000019d6689c085ae165831e93"], + "id": "744910ce-8368-414f-8e7c-1c5dba71831e", + "address": "bc1qc7s93vamc0zduhuv5aswq9a9lp5k4za20tl05l", + "options": { + "entropySource": "01KJ6E9MG4VY87VPKWJPR6W39K", + "exportable": false, + "entropy": { + "type": "mnemonic", + "id": "01KJ6E9MG4VY87VPKWJPR6W39K", + "derivationPath": "m/84'/0'/7'", + "groupIndex": 7 + } + }, + "methods": [ + "signPsbt", + "computeFee", + "fillPsbt", + "broadcastPsbt", + "sendTransfer", + "getUtxo", + "listUtxos", + "publicDescriptor", + "signMessage" + ], + "metadata": { + "name": "Snap Account 22", + "importTime": 1771890336681, + "keyring": { + "type": "Snap Keyring" + }, + "snap": { + "id": "npm:@metamask/bitcoin-wallet-snap" + }, + "lastSelected": 0 + } + }, + "d834c0ad-655b-4707-997d-7048c1896f89": { + "type": "bip122:p2wpkh", + "scopes": ["bip122:000000000019d6689c085ae165831e93"], + "id": "d834c0ad-655b-4707-997d-7048c1896f89", + "address": "bc1qlrssy7r7vfstz30g78d6duzfg0clj7m380punr", + "options": { + "entropySource": "01KJ6E9MG4VY87VPKWJPR6W39K", + "exportable": false, + "entropy": { + "type": "mnemonic", + "id": "01KJ6E9MG4VY87VPKWJPR6W39K", + "derivationPath": "m/84'/0'/8'", + "groupIndex": 8 + } + }, + "methods": [ + "signPsbt", + "computeFee", + "fillPsbt", + "broadcastPsbt", + "sendTransfer", + "getUtxo", + "listUtxos", + "publicDescriptor", + "signMessage" + ], + "metadata": { + "name": "Snap Account 27", + "importTime": 1772573075972, + "keyring": { + "type": "Snap Keyring" + }, + "snap": { + "id": "npm:@metamask/bitcoin-wallet-snap" + }, + "lastSelected": 0 + } + }, + "f5481e08-42e2-4504-9a1f-44c0bbe6e0bb": { + "type": "bip122:p2wpkh", + "scopes": ["bip122:000000000019d6689c085ae165831e93"], + "id": "f5481e08-42e2-4504-9a1f-44c0bbe6e0bb", + "address": "bc1quktjtsfqgk2y35vlucwvzczfqzkpawp066v3ww", + "options": { + "entropySource": "01KJ6E9MG4VY87VPKWJPR6W39K", + "exportable": false, + "entropy": { + "type": "mnemonic", + "id": "01KJ6E9MG4VY87VPKWJPR6W39K", + "derivationPath": "m/84'/0'/9'", + "groupIndex": 9 + } + }, + "methods": [ + "signPsbt", + "computeFee", + "fillPsbt", + "broadcastPsbt", + "sendTransfer", + "getUtxo", + "listUtxos", + "publicDescriptor", + "signMessage" + ], + "metadata": { + "name": "", + "importTime": 1773330804805, + "keyring": { + "type": "Snap Keyring" + }, + "snap": { + "id": "npm:@metamask/bitcoin-wallet-snap" + }, + "lastSelected": 0 + } + }, + "574cb22f-c2d5-40d2-86a5-e3393d33050f": { + "type": "bip122:p2wpkh", + "scopes": ["bip122:000000000019d6689c085ae165831e93"], + "id": "574cb22f-c2d5-40d2-86a5-e3393d33050f", + "address": "bc1qklk4c2g7pk2eertfh0zgw9gn6gaq7px9stmtsz", + "options": { + "entropySource": "01KMK79H2SG3MB2Q7XWEXMZ013", + "exportable": false, + "entropy": { + "type": "mnemonic", + "id": "01KMK79H2SG3MB2Q7XWEXMZ013", + "derivationPath": "m/84'/0'/0'", + "groupIndex": 0 + } + }, + "methods": [ + "signPsbt", + "computeFee", + "fillPsbt", + "broadcastPsbt", + "sendTransfer", + "getUtxo", + "listUtxos", + "publicDescriptor", + "signMessage" + ], + "metadata": { + "name": "", + "importTime": 1774466679976, + "keyring": { + "type": "Snap Keyring" + }, + "snap": { + "id": "npm:@metamask/bitcoin-wallet-snap" + }, + "lastSelected": 0 + } + }, + "e78a4c3d-7649-4797-90ad-9d6ddbe9e6dd": { + "type": "bip122:p2wpkh", + "scopes": ["bip122:000000000019d6689c085ae165831e93"], + "id": "e78a4c3d-7649-4797-90ad-9d6ddbe9e6dd", + "address": "bc1qzzgcr8ekdfgyjad8fdfmctj0jv0k6ntkj3jpxp", + "options": { + "entropySource": "01KMK79H2SG3MB2Q7XWEXMZ013", + "exportable": false, + "entropy": { + "type": "mnemonic", + "id": "01KMK79H2SG3MB2Q7XWEXMZ013", + "derivationPath": "m/84'/0'/1'", + "groupIndex": 1 + } + }, + "methods": [ + "signPsbt", + "computeFee", + "fillPsbt", + "broadcastPsbt", + "sendTransfer", + "getUtxo", + "listUtxos", + "publicDescriptor", + "signMessage" + ], + "metadata": { + "name": "", + "importTime": 1774466681787, + "keyring": { + "type": "Snap Keyring" + }, + "snap": { + "id": "npm:@metamask/bitcoin-wallet-snap" + }, + "lastSelected": 0 + } + }, + "a4c40c7c-01c0-4335-b574-72195898b31c": { + "type": "bip122:p2wpkh", + "scopes": ["bip122:000000000019d6689c085ae165831e93"], + "id": "a4c40c7c-01c0-4335-b574-72195898b31c", + "address": "bc1q07mlsqrpt80trs5zffk4ysl35s7e9tltazgnne", + "options": { + "entropySource": "01KMK79H2SG3MB2Q7XWEXMZ013", + "exportable": false, + "entropy": { + "type": "mnemonic", + "id": "01KMK79H2SG3MB2Q7XWEXMZ013", + "derivationPath": "m/84'/0'/2'", + "groupIndex": 2 + } + }, + "methods": [ + "signPsbt", + "computeFee", + "fillPsbt", + "broadcastPsbt", + "sendTransfer", + "getUtxo", + "listUtxos", + "publicDescriptor", + "signMessage" + ], + "metadata": { + "name": "", + "importTime": 1774466681818, + "keyring": { + "type": "Snap Keyring" + }, + "snap": { + "id": "npm:@metamask/bitcoin-wallet-snap" + }, + "lastSelected": 0 + } + }, + "c2c05428-c846-4992-a5a3-5d151b97fcdb": { + "type": "bip122:p2wpkh", + "scopes": ["bip122:000000000019d6689c085ae165831e93"], + "id": "c2c05428-c846-4992-a5a3-5d151b97fcdb", + "address": "bc1q20l4mt5f6k5k3utw6vwae83r5r9lzj3dd0567k", + "options": { + "entropySource": "01KMK79H2SG3MB2Q7XWEXMZ013", + "exportable": false, + "entropy": { + "type": "mnemonic", + "id": "01KMK79H2SG3MB2Q7XWEXMZ013", + "derivationPath": "m/84'/0'/3'", + "groupIndex": 3 + } + }, + "methods": [ + "signPsbt", + "computeFee", + "fillPsbt", + "broadcastPsbt", + "sendTransfer", + "getUtxo", + "listUtxos", + "publicDescriptor", + "signMessage" + ], + "metadata": { + "name": "", + "importTime": 1774466681861, + "keyring": { + "type": "Snap Keyring" + }, + "snap": { + "id": "npm:@metamask/bitcoin-wallet-snap" + }, + "lastSelected": 0 + } + }, + "1a14e831-0c2c-46ce-8e2b-d7d53cbefb63": { + "type": "bip122:p2wpkh", + "scopes": ["bip122:000000000019d6689c085ae165831e93"], + "id": "1a14e831-0c2c-46ce-8e2b-d7d53cbefb63", + "address": "bc1q79rp7e2avw8lnvrlaykt7uh4q7etkrau5nytjd", + "options": { + "entropySource": "01KMK79H2SG3MB2Q7XWEXMZ013", + "exportable": false, + "entropy": { + "type": "mnemonic", + "id": "01KMK79H2SG3MB2Q7XWEXMZ013", + "derivationPath": "m/84'/0'/4'", + "groupIndex": 4 + } + }, + "methods": [ + "signPsbt", + "computeFee", + "fillPsbt", + "broadcastPsbt", + "sendTransfer", + "getUtxo", + "listUtxos", + "publicDescriptor", + "signMessage" + ], + "metadata": { + "name": "", + "importTime": 1774466681905, + "keyring": { + "type": "Snap Keyring" + }, + "snap": { + "id": "npm:@metamask/bitcoin-wallet-snap" + }, + "lastSelected": 0 + } + }, + "80340772-85d8-41a5-b316-1d8fc8c2cea4": { + "type": "bip122:p2wpkh", + "scopes": ["bip122:000000000019d6689c085ae165831e93"], + "id": "80340772-85d8-41a5-b316-1d8fc8c2cea4", + "address": "bc1qntcy866amnqthda3j8uhtjd75gl0562sfaudwz", + "options": { + "entropySource": "01KMK79H2SG3MB2Q7XWEXMZ013", + "exportable": false, + "entropy": { + "type": "mnemonic", + "id": "01KMK79H2SG3MB2Q7XWEXMZ013", + "derivationPath": "m/84'/0'/5'", + "groupIndex": 5 + } + }, + "methods": [ + "signPsbt", + "computeFee", + "fillPsbt", + "broadcastPsbt", + "sendTransfer", + "getUtxo", + "listUtxos", + "publicDescriptor", + "signMessage" + ], + "metadata": { + "name": "", + "importTime": 1774466682016, + "keyring": { + "type": "Snap Keyring" + }, + "snap": { + "id": "npm:@metamask/bitcoin-wallet-snap" + }, + "lastSelected": 0 + } + }, + "55fe5095-3194-42c2-81d3-5701dcad1924": { + "type": "solana:data-account", + "id": "55fe5095-3194-42c2-81d3-5701dcad1924", + "address": "8jKM7u4xsyvDpnqL5DQMVrh8AXxZKJPKJw5QsM7KEF8J", + "options": { + "entropySource": "01KJ6E9MG4VY87VPKWJPR6W39K", + "derivationPath": "m/44'/501'/0'/0'", + "index": 0, + "entropy": { + "type": "mnemonic", + "id": "01KJ6E9MG4VY87VPKWJPR6W39K", + "groupIndex": 0, + "derivationPath": "m/44'/501'/0'/0'" + } + }, + "methods": [ + "signAndSendTransaction", + "signTransaction", + "signMessage", + "signIn" + ], + "scopes": [ + "solana:5eykt4UsFv8P8NJdTREpY1vzqKqZKvdp", + "solana:4uhcVJyU9pJkvQyS88uRDiswHXSCkY3z", + "solana:EtWTRABZaYq6iMfeYKouRu166VU2xqa1" + ], + "metadata": { + "name": "Snap Account 3", + "importTime": 1771890335311, + "keyring": { + "type": "Snap Keyring" + }, + "snap": { + "id": "npm:@metamask/solana-wallet-snap" + }, + "lastSelected": 1777417473758 + } + }, + "e4cb2ec8-15e3-494a-bde2-6ea14e6d0d6c": { + "type": "solana:data-account", + "id": "e4cb2ec8-15e3-494a-bde2-6ea14e6d0d6c", + "address": "D17b35MvfEann7FDStSUWH6EAXCyfvjBXJmx8zwCeMg5", + "options": { + "entropySource": "01KJ6E9MG4VY87VPKWJPR6W39K", + "derivationPath": "m/44'/501'/1'/0'", + "index": 1, + "entropy": { + "type": "mnemonic", + "id": "01KJ6E9MG4VY87VPKWJPR6W39K", + "groupIndex": 1, + "derivationPath": "m/44'/501'/1'/0'" + } + }, + "methods": [ + "signAndSendTransaction", + "signTransaction", + "signMessage", + "signIn" + ], + "scopes": [ + "solana:5eykt4UsFv8P8NJdTREpY1vzqKqZKvdp", + "solana:4uhcVJyU9pJkvQyS88uRDiswHXSCkY3z", + "solana:EtWTRABZaYq6iMfeYKouRu166VU2xqa1" + ], + "metadata": { + "name": "Snap Account 5", + "importTime": 1771890336359, + "keyring": { + "type": "Snap Keyring" + }, + "snap": { + "id": "npm:@metamask/solana-wallet-snap" + }, + "lastSelected": 0 + } + }, + "c86652a6-e1f3-4e4c-b411-c58efe220dcf": { + "type": "solana:data-account", + "id": "c86652a6-e1f3-4e4c-b411-c58efe220dcf", + "address": "EakrRNLYP3WCatjriJzKSy4HRbmHA4ogdN11dwPPQmJP", + "options": { + "entropySource": "01KJ6E9MG4VY87VPKWJPR6W39K", + "derivationPath": "m/44'/501'/2'/0'", + "index": 2, + "entropy": { + "type": "mnemonic", + "id": "01KJ6E9MG4VY87VPKWJPR6W39K", + "groupIndex": 2, + "derivationPath": "m/44'/501'/2'/0'" + } + }, + "methods": [ + "signAndSendTransaction", + "signTransaction", + "signMessage", + "signIn" + ], + "scopes": [ + "solana:5eykt4UsFv8P8NJdTREpY1vzqKqZKvdp", + "solana:4uhcVJyU9pJkvQyS88uRDiswHXSCkY3z", + "solana:EtWTRABZaYq6iMfeYKouRu166VU2xqa1" + ], + "metadata": { + "name": "Snap Account 9", + "importTime": 1771890336456, + "keyring": { + "type": "Snap Keyring" + }, + "snap": { + "id": "npm:@metamask/solana-wallet-snap" + }, + "lastSelected": 0 + } + }, + "5a747531-d39f-49d5-afbd-59c018cc4757": { + "type": "solana:data-account", + "id": "5a747531-d39f-49d5-afbd-59c018cc4757", + "address": "Bz3cfju4DDyduz7mRbgV7tN4aKg2mmZp4hqUc5dUJWct", + "options": { + "entropySource": "01KJ6E9MG4VY87VPKWJPR6W39K", + "derivationPath": "m/44'/501'/3'/0'", + "index": 3, + "entropy": { + "type": "mnemonic", + "id": "01KJ6E9MG4VY87VPKWJPR6W39K", + "groupIndex": 3, + "derivationPath": "m/44'/501'/3'/0'" + } + }, + "methods": [ + "signAndSendTransaction", + "signTransaction", + "signMessage", + "signIn" + ], + "scopes": [ + "solana:5eykt4UsFv8P8NJdTREpY1vzqKqZKvdp", + "solana:4uhcVJyU9pJkvQyS88uRDiswHXSCkY3z", + "solana:EtWTRABZaYq6iMfeYKouRu166VU2xqa1" + ], + "metadata": { + "name": "Snap Account 13", + "importTime": 1771890336516, + "keyring": { + "type": "Snap Keyring" + }, + "snap": { + "id": "npm:@metamask/solana-wallet-snap" + }, + "lastSelected": 0 + } + }, + "db7205b1-e72f-4082-92c4-5490fdba12c5": { + "type": "solana:data-account", + "id": "db7205b1-e72f-4082-92c4-5490fdba12c5", + "address": "HhoQAMYGpUr733KFgZJuZxwVVfqMKLgpChjzehYTRW4C", + "options": { + "entropySource": "01KJ6E9MG4VY87VPKWJPR6W39K", + "derivationPath": "m/44'/501'/4'/0'", + "index": 4, + "entropy": { + "type": "mnemonic", + "id": "01KJ6E9MG4VY87VPKWJPR6W39K", + "groupIndex": 4, + "derivationPath": "m/44'/501'/4'/0'" + } + }, + "methods": [ + "signAndSendTransaction", + "signTransaction", + "signMessage", + "signIn" + ], + "scopes": [ + "solana:5eykt4UsFv8P8NJdTREpY1vzqKqZKvdp", + "solana:4uhcVJyU9pJkvQyS88uRDiswHXSCkY3z", + "solana:EtWTRABZaYq6iMfeYKouRu166VU2xqa1" + ], + "metadata": { + "name": "Snap Account 16", + "importTime": 1771890336571, + "keyring": { + "type": "Snap Keyring" + }, + "snap": { + "id": "npm:@metamask/solana-wallet-snap" + }, + "lastSelected": 0 + } + }, + "c3fc6bba-683b-44c8-b637-89b55416a8dd": { + "type": "solana:data-account", + "id": "c3fc6bba-683b-44c8-b637-89b55416a8dd", + "address": "GBnbPgkU6Nz1iH8nE1aPc4K5vLt7Y8TLDJm55WEGVdK5", + "options": { + "entropySource": "01KJ6E9MG4VY87VPKWJPR6W39K", + "derivationPath": "m/44'/501'/5'/0'", + "index": 5, + "entropy": { + "type": "mnemonic", + "id": "01KJ6E9MG4VY87VPKWJPR6W39K", + "groupIndex": 5, + "derivationPath": "m/44'/501'/5'/0'" + } + }, + "methods": [ + "signAndSendTransaction", + "signTransaction", + "signMessage", + "signIn" + ], + "scopes": [ + "solana:5eykt4UsFv8P8NJdTREpY1vzqKqZKvdp", + "solana:4uhcVJyU9pJkvQyS88uRDiswHXSCkY3z", + "solana:EtWTRABZaYq6iMfeYKouRu166VU2xqa1" + ], + "metadata": { + "name": "Snap Account 20", + "importTime": 1771890336632, + "keyring": { + "type": "Snap Keyring" + }, + "snap": { + "id": "npm:@metamask/solana-wallet-snap" + }, + "lastSelected": 0 + } + }, + "2858af66-a9cd-456a-b29c-f2f5148a5ac8": { + "type": "solana:data-account", + "id": "2858af66-a9cd-456a-b29c-f2f5148a5ac8", + "address": "4fhPk4yRhMPQL21Ua2MMUxC2p5VT9q2K4Uep2aGAtYGJ", + "options": { + "entropySource": "01KJ6E9MG4VY87VPKWJPR6W39K", + "derivationPath": "m/44'/501'/6'/0'", + "index": 6, + "entropy": { + "type": "mnemonic", + "id": "01KJ6E9MG4VY87VPKWJPR6W39K", + "groupIndex": 6, + "derivationPath": "m/44'/501'/6'/0'" + } + }, + "methods": [ + "signAndSendTransaction", + "signTransaction", + "signMessage", + "signIn" + ], + "scopes": [ + "solana:5eykt4UsFv8P8NJdTREpY1vzqKqZKvdp", + "solana:4uhcVJyU9pJkvQyS88uRDiswHXSCkY3z", + "solana:EtWTRABZaYq6iMfeYKouRu166VU2xqa1" + ], + "metadata": { + "name": "Snap Account 23", + "importTime": 1771890336691, + "keyring": { + "type": "Snap Keyring" + }, + "snap": { + "id": "npm:@metamask/solana-wallet-snap" + }, + "lastSelected": 0 + } + }, + "44ca98ce-b819-4e06-b651-ba146dbe22c1": { + "type": "solana:data-account", + "id": "44ca98ce-b819-4e06-b651-ba146dbe22c1", + "address": "F7nHkrzPrE6J8r8jcvLPVE3KbuwGzosGWjiRzXyuWPx1", + "options": { + "entropySource": "01KJ6E9MG4VY87VPKWJPR6W39K", + "derivationPath": "m/44'/501'/7'/0'", + "index": 7, + "entropy": { + "type": "mnemonic", + "id": "01KJ6E9MG4VY87VPKWJPR6W39K", + "groupIndex": 7, + "derivationPath": "m/44'/501'/7'/0'" + } + }, + "methods": [ + "signAndSendTransaction", + "signTransaction", + "signMessage", + "signIn" + ], + "scopes": [ + "solana:5eykt4UsFv8P8NJdTREpY1vzqKqZKvdp", + "solana:4uhcVJyU9pJkvQyS88uRDiswHXSCkY3z", + "solana:EtWTRABZaYq6iMfeYKouRu166VU2xqa1" + ], + "metadata": { + "name": "Snap Account 24", + "importTime": 1771890336710, + "keyring": { + "type": "Snap Keyring" + }, + "snap": { + "id": "npm:@metamask/solana-wallet-snap" + }, + "lastSelected": 0 + } + }, + "e421a858-a232-40dc-8bbb-d3745bee215b": { + "type": "solana:data-account", + "id": "e421a858-a232-40dc-8bbb-d3745bee215b", + "address": "3PGGUjEUt8jUpqzfAB3bh7A3NWDZhqNcdtCGqeipT6bV", + "options": { + "entropySource": "01KJ6E9MG4VY87VPKWJPR6W39K", + "derivationPath": "m/44'/501'/8'/0'", + "index": 8, + "entropy": { + "type": "mnemonic", + "id": "01KJ6E9MG4VY87VPKWJPR6W39K", + "groupIndex": 8, + "derivationPath": "m/44'/501'/8'/0'" + } + }, + "methods": [ + "signAndSendTransaction", + "signTransaction", + "signMessage", + "signIn" + ], + "scopes": [ + "solana:5eykt4UsFv8P8NJdTREpY1vzqKqZKvdp", + "solana:4uhcVJyU9pJkvQyS88uRDiswHXSCkY3z", + "solana:EtWTRABZaYq6iMfeYKouRu166VU2xqa1" + ], + "metadata": { + "name": "Snap Account 26", + "importTime": 1772573075968, + "keyring": { + "type": "Snap Keyring" + }, + "snap": { + "id": "npm:@metamask/solana-wallet-snap" + }, + "lastSelected": 0 + } + }, + "891b1840-b34b-4059-895b-5f163cff8ff1": { + "type": "solana:data-account", + "id": "891b1840-b34b-4059-895b-5f163cff8ff1", + "address": "DRZLWUT14336p9NRrquuwt759BSydintJFGiRT6refdA", + "options": { + "entropySource": "01KJ6E9MG4VY87VPKWJPR6W39K", + "derivationPath": "m/44'/501'/9'/0'", + "index": 9, + "entropy": { + "type": "mnemonic", + "id": "01KJ6E9MG4VY87VPKWJPR6W39K", + "groupIndex": 9, + "derivationPath": "m/44'/501'/9'/0'" + } + }, + "methods": [ + "signAndSendTransaction", + "signTransaction", + "signMessage", + "signIn" + ], + "scopes": [ + "solana:5eykt4UsFv8P8NJdTREpY1vzqKqZKvdp", + "solana:4uhcVJyU9pJkvQyS88uRDiswHXSCkY3z", + "solana:EtWTRABZaYq6iMfeYKouRu166VU2xqa1" + ], + "metadata": { + "name": "", + "importTime": 1773330804865, + "keyring": { + "type": "Snap Keyring" + }, + "snap": { + "id": "npm:@metamask/solana-wallet-snap" + }, + "lastSelected": 0 + } + }, + "076cbb47-1752-40b0-9314-1f07e7b88ffa": { + "type": "solana:data-account", + "id": "076cbb47-1752-40b0-9314-1f07e7b88ffa", + "address": "CyGir7UdxRCsNXkA89qH1P5p3Zhx11XxsE97WSfNMnLT", + "options": { + "entropySource": "01KMK79H2SG3MB2Q7XWEXMZ013", + "derivationPath": "m/44'/501'/0'/0'", + "index": 0, + "entropy": { + "type": "mnemonic", + "id": "01KMK79H2SG3MB2Q7XWEXMZ013", + "groupIndex": 0, + "derivationPath": "m/44'/501'/0'/0'" + } + }, + "methods": [ + "signAndSendTransaction", + "signTransaction", + "signMessage", + "signIn" + ], + "scopes": [ + "solana:5eykt4UsFv8P8NJdTREpY1vzqKqZKvdp", + "solana:4uhcVJyU9pJkvQyS88uRDiswHXSCkY3z", + "solana:EtWTRABZaYq6iMfeYKouRu166VU2xqa1" + ], + "metadata": { + "name": "", + "importTime": 1774466679974, + "keyring": { + "type": "Snap Keyring" + }, + "snap": { + "id": "npm:@metamask/solana-wallet-snap" + }, + "lastSelected": 0 + } + }, + "e86326ea-c687-45bf-84b9-ad4d8618d084": { + "type": "solana:data-account", + "id": "e86326ea-c687-45bf-84b9-ad4d8618d084", + "address": "ATK5qHMB4bNuPh6Hj3RoCLRQrUafg9PoSdR5RhEf6nyz", + "options": { + "entropySource": "01KMK79H2SG3MB2Q7XWEXMZ013", + "derivationPath": "m/44'/501'/1'/0'", + "index": 1, + "entropy": { + "type": "mnemonic", + "id": "01KMK79H2SG3MB2Q7XWEXMZ013", + "groupIndex": 1, + "derivationPath": "m/44'/501'/1'/0'" + } + }, + "methods": [ + "signAndSendTransaction", + "signTransaction", + "signMessage", + "signIn" + ], + "scopes": [ + "solana:5eykt4UsFv8P8NJdTREpY1vzqKqZKvdp", + "solana:4uhcVJyU9pJkvQyS88uRDiswHXSCkY3z", + "solana:EtWTRABZaYq6iMfeYKouRu166VU2xqa1" + ], + "metadata": { + "name": "", + "importTime": 1774466681780, + "keyring": { + "type": "Snap Keyring" + }, + "snap": { + "id": "npm:@metamask/solana-wallet-snap" + }, + "lastSelected": 0 + } + }, + "575d130d-01da-44f0-a731-da9967adf412": { + "type": "solana:data-account", + "id": "575d130d-01da-44f0-a731-da9967adf412", + "address": "FauUtcWJ81uyS6naBZD6uSdjNuJvuD73tUnSLJMZUP2e", + "options": { + "entropySource": "01KMK79H2SG3MB2Q7XWEXMZ013", + "derivationPath": "m/44'/501'/2'/0'", + "index": 2, + "entropy": { + "type": "mnemonic", + "id": "01KMK79H2SG3MB2Q7XWEXMZ013", + "groupIndex": 2, + "derivationPath": "m/44'/501'/2'/0'" + } + }, + "methods": [ + "signAndSendTransaction", + "signTransaction", + "signMessage", + "signIn" + ], + "scopes": [ + "solana:5eykt4UsFv8P8NJdTREpY1vzqKqZKvdp", + "solana:4uhcVJyU9pJkvQyS88uRDiswHXSCkY3z", + "solana:EtWTRABZaYq6iMfeYKouRu166VU2xqa1" + ], + "metadata": { + "name": "", + "importTime": 1774466681823, + "keyring": { + "type": "Snap Keyring" + }, + "snap": { + "id": "npm:@metamask/solana-wallet-snap" + }, + "lastSelected": 0 + } + }, + "7f6eee30-338e-4926-86fa-19436da91f35": { + "type": "solana:data-account", + "id": "7f6eee30-338e-4926-86fa-19436da91f35", + "address": "uik8nmbvhYfhj1n9hrJ4vigneMrr3qbbbbWuhLLSboP", + "options": { + "entropySource": "01KMK79H2SG3MB2Q7XWEXMZ013", + "derivationPath": "m/44'/501'/3'/0'", + "index": 3, + "entropy": { + "type": "mnemonic", + "id": "01KMK79H2SG3MB2Q7XWEXMZ013", + "groupIndex": 3, + "derivationPath": "m/44'/501'/3'/0'" + } + }, + "methods": [ + "signAndSendTransaction", + "signTransaction", + "signMessage", + "signIn" + ], + "scopes": [ + "solana:5eykt4UsFv8P8NJdTREpY1vzqKqZKvdp", + "solana:4uhcVJyU9pJkvQyS88uRDiswHXSCkY3z", + "solana:EtWTRABZaYq6iMfeYKouRu166VU2xqa1" + ], + "metadata": { + "name": "", + "importTime": 1774466681884, + "keyring": { + "type": "Snap Keyring" + }, + "snap": { + "id": "npm:@metamask/solana-wallet-snap" + }, + "lastSelected": 0 + } + }, + "040b84bc-2341-4988-b8db-8063bbc6c708": { + "type": "solana:data-account", + "id": "040b84bc-2341-4988-b8db-8063bbc6c708", + "address": "fXSVz3jyNokxeNN1Z6bvh4eT4ZuXv1gtpGaSg4HxxXw", + "options": { + "entropySource": "01KMK79H2SG3MB2Q7XWEXMZ013", + "derivationPath": "m/44'/501'/4'/0'", + "index": 4, + "entropy": { + "type": "mnemonic", + "id": "01KMK79H2SG3MB2Q7XWEXMZ013", + "groupIndex": 4, + "derivationPath": "m/44'/501'/4'/0'" + } + }, + "methods": [ + "signAndSendTransaction", + "signTransaction", + "signMessage", + "signIn" + ], + "scopes": [ + "solana:5eykt4UsFv8P8NJdTREpY1vzqKqZKvdp", + "solana:4uhcVJyU9pJkvQyS88uRDiswHXSCkY3z", + "solana:EtWTRABZaYq6iMfeYKouRu166VU2xqa1" + ], + "metadata": { + "name": "", + "importTime": 1774466681980, + "keyring": { + "type": "Snap Keyring" + }, + "snap": { + "id": "npm:@metamask/solana-wallet-snap" + }, + "lastSelected": 0 + } + }, + "0089fc3c-35be-4ecf-ba88-22461a3d9503": { + "type": "solana:data-account", + "id": "0089fc3c-35be-4ecf-ba88-22461a3d9503", + "address": "ALcEx6ANnJams9dX2jUwamfSc2P7gA66tUt83o3F2ipv", + "options": { + "entropySource": "01KMK79H2SG3MB2Q7XWEXMZ013", + "derivationPath": "m/44'/501'/5'/0'", + "index": 5, + "entropy": { + "type": "mnemonic", + "id": "01KMK79H2SG3MB2Q7XWEXMZ013", + "groupIndex": 5, + "derivationPath": "m/44'/501'/5'/0'" + } + }, + "methods": [ + "signAndSendTransaction", + "signTransaction", + "signMessage", + "signIn" + ], + "scopes": [ + "solana:5eykt4UsFv8P8NJdTREpY1vzqKqZKvdp", + "solana:4uhcVJyU9pJkvQyS88uRDiswHXSCkY3z", + "solana:EtWTRABZaYq6iMfeYKouRu166VU2xqa1" + ], + "metadata": { + "name": "", + "importTime": 1774466682034, + "keyring": { + "type": "Snap Keyring" + }, + "snap": { + "id": "npm:@metamask/solana-wallet-snap" + }, + "lastSelected": 0 + } + }, + "a380d0c9-927f-4aa2-a382-15ed278e70a4": { + "id": "a380d0c9-927f-4aa2-a382-15ed278e70a4", + "address": "0x9dc641ccd7d1e7c66e47a25598ace7219548d887", + "options": {}, + "methods": [ + "personal_sign", + "eth_sign", + "eth_signTransaction", + "eth_signTypedData_v1", + "eth_signTypedData_v3", + "eth_signTypedData_v4" + ], + "scopes": ["eip155:0"], + "type": "eip155:eoa", + "metadata": { + "name": "", + "importTime": 1773330847736, + "lastSelected": 1773330847737, + "keyring": { + "type": "Ledger Hardware" + } + } + }, + "ae40b2c3-e8e1-45ed-b0cf-a5ba56e74041": { + "id": "ae40b2c3-e8e1-45ed-b0cf-a5ba56e74041", + "address": "0x6eff00186ba65c5fade98d75aa4d99ef71fa461b", + "options": {}, + "methods": [ + "personal_sign", + "eth_sign", + "eth_signTransaction", + "eth_signTypedData_v1", + "eth_signTypedData_v3", + "eth_signTypedData_v4" + ], + "scopes": ["eip155:0"], + "type": "eip155:eoa", + "metadata": { + "name": "", + "importTime": 1773330848214, + "lastSelected": 1773330848215, + "keyring": { + "type": "Ledger Hardware" + } + } + }, + "ea035e3a-ea43-4df0-96aa-b4e50c16396c": { + "id": "ea035e3a-ea43-4df0-96aa-b4e50c16396c", + "address": "0x04400bb51b1f886cff338eb2b4118f9ceb4e6fd5", + "options": {}, + "methods": [ + "personal_sign", + "eth_sign", + "eth_signTransaction", + "eth_signTypedData_v1", + "eth_signTypedData_v3", + "eth_signTypedData_v4" + ], + "scopes": ["eip155:0"], + "type": "eip155:eoa", + "metadata": { + "name": "", + "importTime": 1773330848686, + "lastSelected": 1773330848687, + "keyring": { + "type": "Ledger Hardware" + } + } + }, + "bf588376-0492-4a35-b653-0f1304a6c5f1": { + "id": "bf588376-0492-4a35-b653-0f1304a6c5f1", + "address": "0xb3864b298f4fddbbbd2fa5cf1a2a2748932b3b81", + "options": {}, + "methods": [ + "personal_sign", + "eth_sign", + "eth_signTransaction", + "eth_signTypedData_v1", + "eth_signTypedData_v3", + "eth_signTypedData_v4" + ], + "scopes": ["eip155:0"], + "type": "eip155:eoa", + "metadata": { + "name": "", + "importTime": 1773944251006, + "lastSelected": 1775851212951, + "keyring": { + "type": "Ledger Hardware" + } + } + }, + "7a1e85fa-7c26-48a7-890c-5b2ea56f650c": { + "id": "7a1e85fa-7c26-48a7-890c-5b2ea56f650c", + "address": "0xeeeab71a5989b7951389e3df313ea9876508856f", + "options": {}, + "methods": [ + "personal_sign", + "eth_sign", + "eth_signTransaction", + "eth_signTypedData_v1", + "eth_signTypedData_v3", + "eth_signTypedData_v4" + ], + "scopes": ["eip155:0"], + "type": "eip155:eoa", + "metadata": { + "name": "", + "importTime": 1773944251469, + "lastSelected": 1773944251470, + "keyring": { + "type": "Ledger Hardware" + } + } + }, + "88caeea6-0032-4313-b351-096e9f8e60a9": { + "id": "88caeea6-0032-4313-b351-096e9f8e60a9", + "address": "0x422b8d8914cdad779f587414d647e953bb3a87db", + "options": {}, + "methods": [ + "personal_sign", + "eth_sign", + "eth_signTransaction", + "eth_signTypedData_v1", + "eth_signTypedData_v3", + "eth_signTypedData_v4" + ], + "scopes": ["eip155:0"], + "type": "eip155:eoa", + "metadata": { + "name": "", + "importTime": 1773944251970, + "lastSelected": 1773944251971, + "keyring": { + "type": "Ledger Hardware" + } + } + }, + "2727ea45-0879-4ce8-bbac-e7b83a7ca3de": { + "id": "2727ea45-0879-4ce8-bbac-e7b83a7ca3de", + "address": "0x141d32a89a1e0a5ef360034a2f60a4b917c18838", + "options": { + "entropySource": "01KMK79H2SG3MB2Q7XWEXMZ013", + "derivationPath": "m/44'/60'/0'/0/0", + "groupIndex": 0, + "entropy": { + "type": "mnemonic", + "id": "01KMK79H2SG3MB2Q7XWEXMZ013", + "derivationPath": "m/44'/60'/0'/0/0", + "groupIndex": 0 + } + }, + "methods": [ + "personal_sign", + "eth_sign", + "eth_signTransaction", + "eth_signTypedData_v1", + "eth_signTypedData_v3", + "eth_signTypedData_v4" + ], + "scopes": ["eip155:0"], + "type": "eip155:eoa", + "metadata": { + "name": "", + "importTime": 1774466679899, + "lastSelected": 1778779626824, + "keyring": { + "type": "HD Key Tree" + } + } + }, + "d0a2da70-b536-4e45-beb8-82e35365093d": { + "id": "d0a2da70-b536-4e45-beb8-82e35365093d", + "address": "0x98931e2b2272891c2e8e47d675007d94ae90ce64", + "options": { + "entropySource": "01KMK79H2SG3MB2Q7XWEXMZ013", + "derivationPath": "m/44'/60'/0'/0/1", + "groupIndex": 1, + "entropy": { + "type": "mnemonic", + "id": "01KMK79H2SG3MB2Q7XWEXMZ013", + "derivationPath": "m/44'/60'/0'/0/1", + "groupIndex": 1 + } + }, + "methods": [ + "personal_sign", + "eth_sign", + "eth_signTransaction", + "eth_signTypedData_v1", + "eth_signTypedData_v3", + "eth_signTypedData_v4" + ], + "scopes": ["eip155:0"], + "type": "eip155:eoa", + "metadata": { + "name": "", + "importTime": 1774466681722, + "lastSelected": 0, + "keyring": { + "type": "HD Key Tree" + } + } + }, + "8163605d-535a-441d-a381-a5eac11ef57d": { + "id": "8163605d-535a-441d-a381-a5eac11ef57d", + "address": "0xf1f63d55e8f25c962079be324c71cdcf792c6047", + "options": { + "entropySource": "01KMK79H2SG3MB2Q7XWEXMZ013", + "derivationPath": "m/44'/60'/0'/0/2", + "groupIndex": 2, + "entropy": { + "type": "mnemonic", + "id": "01KMK79H2SG3MB2Q7XWEXMZ013", + "derivationPath": "m/44'/60'/0'/0/2", + "groupIndex": 2 + } + }, + "methods": [ + "personal_sign", + "eth_sign", + "eth_signTransaction", + "eth_signTypedData_v1", + "eth_signTypedData_v3", + "eth_signTypedData_v4" + ], + "scopes": ["eip155:0"], + "type": "eip155:eoa", + "metadata": { + "name": "", + "importTime": 1774466681725, + "lastSelected": 0, + "keyring": { + "type": "HD Key Tree" + } + } + }, + "d9d2faf4-e5f4-4505-bbe2-a03d3c9e10a1": { + "id": "d9d2faf4-e5f4-4505-bbe2-a03d3c9e10a1", + "address": "0xda04e0fe4e79eebcaffcbfff8ea0bdcd442d2119", + "options": { + "entropySource": "01KMK79H2SG3MB2Q7XWEXMZ013", + "derivationPath": "m/44'/60'/0'/0/3", + "groupIndex": 3, + "entropy": { + "type": "mnemonic", + "id": "01KMK79H2SG3MB2Q7XWEXMZ013", + "derivationPath": "m/44'/60'/0'/0/3", + "groupIndex": 3 + } + }, + "methods": [ + "personal_sign", + "eth_sign", + "eth_signTransaction", + "eth_signTypedData_v1", + "eth_signTypedData_v3", + "eth_signTypedData_v4" + ], + "scopes": ["eip155:0"], + "type": "eip155:eoa", + "metadata": { + "name": "", + "importTime": 1774466681727, + "lastSelected": 0, + "keyring": { + "type": "HD Key Tree" + } + } + }, + "3401973a-4989-44c5-9569-f27f25197c2d": { + "id": "3401973a-4989-44c5-9569-f27f25197c2d", + "address": "0xa30078e306614c2f444550da6bc759173dfb61fd", + "options": { + "entropySource": "01KMK79H2SG3MB2Q7XWEXMZ013", + "derivationPath": "m/44'/60'/0'/0/4", + "groupIndex": 4, + "entropy": { + "type": "mnemonic", + "id": "01KMK79H2SG3MB2Q7XWEXMZ013", + "derivationPath": "m/44'/60'/0'/0/4", + "groupIndex": 4 + } + }, + "methods": [ + "personal_sign", + "eth_sign", + "eth_signTransaction", + "eth_signTypedData_v1", + "eth_signTypedData_v3", + "eth_signTypedData_v4" + ], + "scopes": ["eip155:0"], + "type": "eip155:eoa", + "metadata": { + "name": "", + "importTime": 1774466681728, + "lastSelected": 0, + "keyring": { + "type": "HD Key Tree" + } + } + }, + "83bd90d5-eaa6-4f8d-b89b-b574273bd04e": { + "id": "83bd90d5-eaa6-4f8d-b89b-b574273bd04e", + "address": "0x09b8556833e53f92ee0b668db146b43ca2cab130", + "options": { + "entropySource": "01KMK79H2SG3MB2Q7XWEXMZ013", + "derivationPath": "m/44'/60'/0'/0/5", + "groupIndex": 5, + "entropy": { + "type": "mnemonic", + "id": "01KMK79H2SG3MB2Q7XWEXMZ013", + "derivationPath": "m/44'/60'/0'/0/5", + "groupIndex": 5 + } + }, + "methods": [ + "personal_sign", + "eth_sign", + "eth_signTransaction", + "eth_signTypedData_v1", + "eth_signTypedData_v3", + "eth_signTypedData_v4" + ], + "scopes": ["eip155:0"], + "type": "eip155:eoa", + "metadata": { + "name": "", + "importTime": 1774466681730, + "lastSelected": 0, + "keyring": { + "type": "HD Key Tree" + } + } + } + }, + "selectedAccount": "2727ea45-0879-4ce8-bbac-e7b83a7ca3de" + }, + "transactions": [ + { + "blockNumber": "92728105", + "chainId": "0x38", + "hash": "0xa4ffe05631fb6d092afeea824327ccf8b9f158eaff70b121394ab112543c4cf9", + "id": "0494bf80-38fb-11f1-a11d-3727d90ba13b", + "isTransfer": false, + "networkClientId": "bsc-mainnet", + "status": "confirmed", + "time": 1776278619000, + "toSmartContract": false, + "transferInformation": { + "amount": "8087463000000000000", + "contractAddress": "0x8ac76a51cc950d9822d68b83fe1ad97b32cd580d", + "decimals": 18, + "symbol": "USDC" + }, + "txParams": { + "chainId": "0x38", + "data": "0xcef6d209", + "from": "0xb01caea8c6c47bbf4f4b4c5080ca642043359c2e", + "gas": "0x8847b", + "gasPrice": "0x3938700", + "gasUsed": "0x66867", + "nonce": "0xc1dd2", + "to": "0xdb9b1e94b5b69df7e401ddbede43491141047db3", + "value": "0x0" + }, + "type": "incoming", + "verifiedOnBlockchain": false + }, + { + "blockNumber": "92728730", + "chainId": "0x38", + "hash": "0x5c198b97684dc3cdb3c7c83fae8022831a71a141cf7e4432b6dc58078f706e0b", + "id": "acaa8880-38fb-11f1-a11c-3727d90ba13b", + "isTransfer": false, + "networkClientId": "bsc-mainnet", + "status": "confirmed", + "time": 1776278901000, + "toSmartContract": false, + "transferInformation": { + "amount": "7901117635524923293", + "contractAddress": "0x55d398326f99059ff775485246999027b3197955", + "decimals": 18, + "symbol": "USDT" + }, + "txParams": { + "chainId": "0x38", + "data": "0x5f575529", + "from": "0x141d32a89a1e0a5ef360034a2f60a4b917c18838", + "gas": "0x5cdc7", + "gasPrice": "0x2faf080", + "gasUsed": "0x31fab", + "nonce": "0x47", + "to": "0x1a1ec25dc08e98e5e93f1104b5e5cdd298707d31", + "value": "0x2d7b3318cddde8" + }, + "type": "contractInteraction", + "verifiedOnBlockchain": false + }, + { + "blockNumber": "92728789", + "chainId": "0x38", + "hash": "0x6f29f74b255e1725cfb474dca4b0a9d6e0ea69ff35c42da6612cd9f06e85ee4b", + "id": "bc29d180-38fb-11f1-a11b-3727d90ba13b", + "isTransfer": false, + "networkClientId": "bsc-mainnet", + "status": "confirmed", + "time": 1776278927000, + "toSmartContract": false, + "transferInformation": { + "amount": "7901117635524923293", + "contractAddress": "0x55d398326f99059ff775485246999027b3197955", + "decimals": 18, + "symbol": "USDT" + }, + "txParams": { + "chainId": "0x38", + "data": "0xcef6d209", + "from": "0xb01caea8c6c47bbf4f4b4c5080ca642043359c2e", + "gas": "0x7d5be", + "gasPrice": "0x3938700", + "gasUsed": "0x5f102", + "nonce": "0xc1de7", + "to": "0xdb9b1e94b5b69df7e401ddbede43491141047db3", + "value": "0x0" + }, + "type": "incoming", + "verifiedOnBlockchain": false + }, + { + "blockNumber": "92729970", + "chainId": "0x38", + "hash": "0xd3238cc0e2fa732f7c9876952f77bc4bb3f3c4c270b07443ec9404c5feb669f4", + "id": "f9429380-38fc-11f1-a11a-3727d90ba13b", + "isTransfer": false, + "networkClientId": "bsc-mainnet", + "status": "confirmed", + "time": 1776279459000, + "toSmartContract": false, + "transferInformation": { + "amount": "7726247058710927665", + "contractAddress": "0x55d398326f99059ff775485246999027b3197955", + "decimals": 18, + "symbol": "USDT" + }, + "txParams": { + "chainId": "0x38", + "data": "0x5f575529", + "from": "0x141d32a89a1e0a5ef360034a2f60a4b917c18838", + "gas": "0x5cd9b", + "gasPrice": "0x2faf080", + "gasUsed": "0x2f9fc", + "nonce": "0x48", + "to": "0x1a1ec25dc08e98e5e93f1104b5e5cdd298707d31", + "value": "0x2c7c3068ff376b" + }, + "type": "contractInteraction", + "verifiedOnBlockchain": false + }, + { + "blockNumber": "92730035", + "chainId": "0x38", + "hash": "0x47a1e900367de8d034b0b84a2bd75c953eac0afe1d8ac1b0a7a3ababbc17bd8b", + "id": "0a8ba000-38fd-11f1-a119-3727d90ba13b", + "isTransfer": false, + "networkClientId": "bsc-mainnet", + "status": "confirmed", + "time": 1776279488000, + "toSmartContract": false, + "transferInformation": { + "amount": "7726247058710927665", + "contractAddress": "0x55d398326f99059ff775485246999027b3197955", + "decimals": 18, + "symbol": "USDT" + }, + "txParams": { + "chainId": "0x38", + "data": "0xcef6d209", + "from": "0xb01caea8c6c47bbf4f4b4c5080ca642043359c2e", + "gas": "0x767db", + "gasPrice": "0x3938700", + "gasUsed": "0x5a31c", + "nonce": "0xc1dfe", + "to": "0xdb9b1e94b5b69df7e401ddbede43491141047db3", + "value": "0x0" + }, + "type": "incoming", + "verifiedOnBlockchain": false + }, + { + "blockNumber": "92759998", + "chainId": "0x38", + "hash": "0x45d137ccd9df4f1c49958811cc1bca6da02250a7651191cff0160067992301ef", + "id": "7af5e980-391c-11f1-a118-3727d90ba13b", + "isTransfer": false, + "networkClientId": "bsc-mainnet", + "status": "confirmed", + "time": 1776292991000, + "toSmartContract": false, + "transferInformation": { + "amount": "7590999614638832733", + "contractAddress": "0x55d398326f99059ff775485246999027b3197955", + "decimals": 18, + "symbol": "USDT" + }, + "txParams": { + "chainId": "0x38", + "data": "0x5f575529", + "from": "0x141d32a89a1e0a5ef360034a2f60a4b917c18838", + "gas": "0x50f7a", + "gasPrice": "0x3938700", + "gasUsed": "0x2f76a", + "nonce": "0x49", + "to": "0x1a1ec25dc08e98e5e93f1104b5e5cdd298707d31", + "value": "0x2b86a25e1dd46e" + }, + "type": "contractInteraction", + "verifiedOnBlockchain": false + }, + { + "blockNumber": "150347153", + "chainId": "0xa", + "hash": "0x744d809d88bce96a3e37024a6456130a0fa5c8c6a13880da9376ccf97caeb1b8", + "id": "b1cbff80-391c-11f1-a117-3727d90ba13b", + "isTransfer": false, + "networkClientId": "optimism-mainnet", + "status": "confirmed", + "time": 1776293083000, + "toSmartContract": false, + "txParams": { + "chainId": "0xa", + "data": "0x3ce33bff", + "from": "0x141d32a89a1e0a5ef360034a2f60a4b917c18838", + "gas": "0xcb996", + "gasPrice": "0x18b0d", + "gasUsed": "0x70ab7", + "nonce": "0x68", + "to": "0xb90357f2b86dbfd59c3502215d4060f71df8ca0e", + "value": "0xaa87bee538000" + }, + "type": "contractInteraction", + "verifiedOnBlockchain": false + }, + { + "blockNumber": "85586684", + "chainId": "0x89", + "hash": "0xe65a458cbdf638b9f126bd5ad0f14d0c08cd289372df64bec076ea28d0a3d144", + "id": "75e56a00-391d-11f1-a115-3727d90ba13b", + "isTransfer": false, + "networkClientId": "polygon-mainnet", + "status": "confirmed", + "time": 1776293412000, + "toSmartContract": false, + "txParams": { + "chainId": "0x89", + "data": null, + "from": "0x141d32a89a1e0a5ef360034a2f60a4b917c18838", + "gas": "0x7b0c", + "gasPrice": "0x397103e07b", + "gasUsed": "0x5208", + "nonce": "0x5c", + "to": "0x141d32a89a1e0a5ef360034a2f60a4b917c18838", + "value": "0x0" + }, + "type": "simpleSend", + "verifiedOnBlockchain": false + }, + { + "blockNumber": "85586684", + "chainId": "0x89", + "hash": "0x8579a3edf400da926029004405786c1e9becf41f3e1738948c89268331a203c6", + "id": "75e56a01-391d-11f1-a115-3727d90ba13b", + "isTransfer": false, + "networkClientId": "polygon-mainnet", + "status": "confirmed", + "time": 1776293412000, + "toSmartContract": false, + "txParams": { + "chainId": "0x89", + "data": null, + "from": "0x141d32a89a1e0a5ef360034a2f60a4b917c18838", + "gas": "0x7b0c", + "gasPrice": "0x4d8a56549b", + "gasUsed": "0x5208", + "nonce": "0x5b", + "to": "0x141d32a89a1e0a5ef360034a2f60a4b917c18838", + "value": "0x0" + }, + "type": "simpleSend", + "verifiedOnBlockchain": false + }, + { + "blockNumber": "85586804", + "chainId": "0x89", + "hash": "0x2df5aee380031511fea7b6adbab155ceb24509fbd5e99a9c02f1800b73a9f4d8", + "id": "04f28200-391e-11f1-a114-3727d90ba13b", + "isTransfer": false, + "networkClientId": "polygon-mainnet", + "status": "confirmed", + "time": 1776293652000, + "toSmartContract": false, + "txParams": { + "chainId": "0x89", + "data": "0x3ce33bff", + "from": "0x141d32a89a1e0a5ef360034a2f60a4b917c18838", + "gas": "0xb9a29", + "gasPrice": "0x2c4903bccd", + "gasUsed": "0x5ec7d", + "nonce": "0x5d", + "to": "0x3a0b42ce6166abb05d30ddf12e726c95a83d7a16", + "value": "0xa8b5381137423cfec" + }, + "type": "contractInteraction", + "verifiedOnBlockchain": false + }, + { + "assetsFiatValues": { + "receiving": "12.45003634890888726788642087", + "sending": "13.12423066033204712481887024" + }, + "baseFeePerGas": "0xdad5916", + "batchId": "0x8e05f75be20d461b8c348914badb364f", + "blockTimestamp": "0x69e12d23", + "chainId": "0x1", + "defaultGasEstimates": { + "estimateType": "medium", + "gas": "0x16751", + "maxFeePerGas": "0x8bcc327f", + "maxPriorityFeePerGas": "0x7d2b7501" + }, + "disableGasBuffer": true, + "gasFeeEstimates": { + "high": { + "maxFeePerGas": "0x89cd8f1c", + "maxPriorityFeePerGas": "0x77359400" + }, + "low": { + "maxFeePerGas": "0xd08b2fa", + "maxPriorityFeePerGas": "0x80a8a" + }, + "medium": { + "maxFeePerGas": "0x89cd8f1c", + "maxPriorityFeePerGas": "0x77359400" + }, + "type": "fee-market" + }, + "gasFeeEstimatesLoaded": true, + "gasLimitNoBuffer": "0x16751", + "hash": "0xc8a9a70b2b2b3025a401d0560f03eacad3eab4f64141a6ec7926a711731b439c", + "id": "c0a4ae60-39c3-11f1-a13c-3727d90ba13b", + "isGasFeeTokenIgnoredIfBalance": false, + "networkClientId": "mainnet", + "origin": "metamask", + "r": "0xcccdb1f5949e82110883158eb7a43d4febf037ecc5af81ef100a11c46e3f4ad", + "rawTx": "0x02f902f90130847d2b7501848bcc327f83016751940439e60f02a8900a951603950d8d4527f400c3f18713329268315551b902853ce33bff00000000000000000000000000000000000000000000000000000000000000800000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001332926831555100000000000000000000000000000000000000000000000000000000000000c0000000000000000000000000000000000000000000000000000000000000000e72656c617941646170746572563200000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001a00000000000000000000000004cd00e387622c35bddb9b4c962c136462338bc310000000000000000000000004cd00e387622c35bddb9b4c962c136462338bc31000000000000000000000000000000000000000000000000000000000000a4b100000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001305bb2f4ff468000000000000000000000000000000000000000000000000000000000000014000000000000000000000000000000000000000000000000000002cd738e160e9000000000000000000000000e3478b0bb1a5084567c319096437924948be1964000000000000000000000000000000000000000000000000000000000000004449290c1c000000000000000000000000141d32a89a1e0a5ef360034a2f60a4b917c18838d4b107258218ce95d35a36726edf2898454fe732a822e59eb6575676afd130cd000000000000000000000000000000000000000000000000000000008cc080a00cccdb1f5949e82110883158eb7a43d4febf037ecc5af81ef100a11c46e3f4ada051c8705278456c30e8776dcc1d0a301ed273798e8787e95a64c7c26f30c9cdd9", + "s": "0x51c8705278456c30e8776dcc1d0a301ed273798e8787e95a64c7c26f30c9cdd9", + "status": "confirmed", + "submittedTime": 1776364834346, + "time": 1776364833862, + "txParams": { + "data": "0x3ce33bff00000000000000000000000000000000000000000000000000000000000000800000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001332926831555100000000000000000000000000000000000000000000000000000000000000c0000000000000000000000000000000000000000000000000000000000000000e72656c617941646170746572563200000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001a00000000000000000000000004cd00e387622c35bddb9b4c962c136462338bc310000000000000000000000004cd00e387622c35bddb9b4c962c136462338bc31000000000000000000000000000000000000000000000000000000000000a4b100000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001305bb2f4ff468000000000000000000000000000000000000000000000000000000000000014000000000000000000000000000000000000000000000000000002cd738e160e9000000000000000000000000e3478b0bb1a5084567c319096437924948be1964000000000000000000000000000000000000000000000000000000000000004449290c1c000000000000000000000000141d32a89a1e0a5ef360034a2f60a4b917c18838d4b107258218ce95d35a36726edf2898454fe732a822e59eb6575676afd130cd000000000000000000000000000000000000000000000000000000008c", + "from": "0x141d32a89a1e0a5ef360034a2f60a4b917c18838", + "gas": "0x16751", + "gasLimit": "0x16751", + "maxFeePerGas": "0x8bcc327f", + "maxPriorityFeePerGas": "0x7d2b7501", + "nonce": "0x30", + "to": "0x0439e60f02a8900a951603950d8d4527f400c3f1", + "type": "0x2", + "value": "0x13329268315551" + }, + "txParamsOriginal": { + "data": "0x3ce33bff00000000000000000000000000000000000000000000000000000000000000800000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001332926831555100000000000000000000000000000000000000000000000000000000000000c0000000000000000000000000000000000000000000000000000000000000000e72656c617941646170746572563200000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001a00000000000000000000000004cd00e387622c35bddb9b4c962c136462338bc310000000000000000000000004cd00e387622c35bddb9b4c962c136462338bc31000000000000000000000000000000000000000000000000000000000000a4b100000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001305bb2f4ff468000000000000000000000000000000000000000000000000000000000000014000000000000000000000000000000000000000000000000000002cd738e160e9000000000000000000000000e3478b0bb1a5084567c319096437924948be1964000000000000000000000000000000000000000000000000000000000000004449290c1c000000000000000000000000141d32a89a1e0a5ef360034a2f60a4b917c18838d4b107258218ce95d35a36726edf2898454fe732a822e59eb6575676afd130cd000000000000000000000000000000000000000000000000000000008c", + "from": "0x141d32a89a1e0a5ef360034a2f60a4b917c18838", + "gas": "0x16751", + "maxFeePerGas": "0x8bcc327f", + "maxPriorityFeePerGas": "0x7d2b7501", + "to": "0x0439e60f02a8900a951603950d8d4527f400c3f1", + "type": "0x2", + "value": "0x13329268315551" + }, + "txReceipt": { + "blockHash": "0x01e0ecd18fd76d539c5ec7e894aec023e9acb9084c51871cb21966818cbb0477", + "blockNumber": "0x17bdb25", + "contractAddress": null, + "cumulativeGasUsed": "0xa71513", + "effectiveGasPrice": "0x8ad8ce17", + "from": "0x141d32a89a1e0a5ef360034a2f60a4b917c18838", + "gasUsed": "0x130d2", + "logs": [ + { + "address": "0x9a47f3289794e9bbc6a3c571f6d96ad4e7baed16", + "blockHash": "0x01e0ecd18fd76d539c5ec7e894aec023e9acb9084c51871cb21966818cbb0477", + "blockNumber": "0x17bdb25", + "blockTimestamp": "0x69e12d23", + "data": "0x0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000e3478b0bb1a5084567c319096437924948be196400000000000000000000000000000000000000000000000000002cd738e160e9", + "logIndex": "0xf3", + "removed": false, + "topics": [ + "0x6ded982279c8387ad8a63e73385031a3807c1862e633f06e09d11bcb6e282f60" + ], + "transactionHash": "0xc8a9a70b2b2b3025a401d0560f03eacad3eab4f64141a6ec7926a711731b439c", + "transactionIndex": "0x52" + }, + { + "address": "0x4cd00e387622c35bddb9b4c962c136462338bc31", + "blockHash": "0x01e0ecd18fd76d539c5ec7e894aec023e9acb9084c51871cb21966818cbb0477", + "blockNumber": "0x17bdb25", + "blockTimestamp": "0x69e12d23", + "data": "0x000000000000000000000000141d32a89a1e0a5ef360034a2f60a4b917c18838000000000000000000000000000000000000000000000000001305bb2f4ff468d4b107258218ce95d35a36726edf2898454fe732a822e59eb6575676afd130cd", + "logIndex": "0xf4", + "removed": false, + "topics": [ + "0x8032066556caf3967d8fec4ad22a2d9e1e9576556b2903a0fcd5b1fd201e3477" + ], + "transactionHash": "0xc8a9a70b2b2b3025a401d0560f03eacad3eab4f64141a6ec7926a711731b439c", + "transactionIndex": "0x52" + }, + { + "address": "0x9a47f3289794e9bbc6a3c571f6d96ad4e7baed16", + "blockHash": "0x01e0ecd18fd76d539c5ec7e894aec023e9acb9084c51871cb21966818cbb0477", + "blockNumber": "0x17bdb25", + "blockTimestamp": "0x69e12d23", + "data": "0x000000000000000000000000141d32a89a1e0a5ef360034a2f60a4b917c188380000000000000000000000004cd00e387622c35bddb9b4c962c136462338bc31000000000000000000000000000000000000000000000000000000000000a4b100000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001305bb2f4ff468", + "logIndex": "0xf5", + "removed": false, + "topics": [ + "0x831bac9533a2034226daa21109dbd4f887674f0fe4877e1a8b35b3ffe1bdce76" + ], + "transactionHash": "0xc8a9a70b2b2b3025a401d0560f03eacad3eab4f64141a6ec7926a711731b439c", + "transactionIndex": "0x52" + } + ], + "logsBloom": "0x00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000100000000000002000000000000100000000000000000000000000000000000004000000000000000000000000000000000000002000000000800000000000000000000000000000000000000000000000000000000000000000000000000000000000200000000000000000000000000000400000000000004000000400000008000020000000000000040000000000000000000000000000000000000200000000000000000000000000000000000000000000000000000000000400000000", + "status": "0x1", + "to": "0x0439e60f02a8900a951603950d8d4527f400c3f1", + "transactionHash": "0xc8a9a70b2b2b3025a401d0560f03eacad3eab4f64141a6ec7926a711731b439c", + "transactionIndex": "0x52", + "type": "0x2" + }, + "type": "bridge", + "userEditedGasLimit": false, + "userFeeLevel": "medium", + "v": "0x0", + "verifiedOnBlockchain": true + }, + { + "blockNumber": "24894245", + "chainId": "0x1", + "hash": "0xc8a9a70b2b2b3025a401d0560f03eacad3eab4f64141a6ec7926a711731b439c", + "id": "c1525380-39c3-11f1-a13d-3727d90ba13b", + "isTransfer": false, + "networkClientId": "mainnet", + "status": "confirmed", + "time": 1776364835000, + "toSmartContract": false, + "txParams": { + "chainId": "0x1", + "data": "0x3ce33bff", + "from": "0x141d32a89a1e0a5ef360034a2f60a4b917c18838", + "gas": "0x16751", + "gasPrice": "0x8ad8ce17", + "gasUsed": "0x130d2", + "nonce": "0x30", + "to": "0x0439e60f02a8900a951603950d8d4527f400c3f1", + "value": "0x13329268315551" + }, + "type": "contractInteraction", + "verifiedOnBlockchain": false + }, + { + "blockNumber": "453184038", + "chainId": "0xa4b1", + "hash": "0xe2943b245749218241f8b60282c5e853a7705fbe9feb51673867c6b67d3c17b5", + "id": "c3b4ad80-39c3-11f1-a13c-3727d90ba13b", + "isTransfer": false, + "networkClientId": "arbitrum-mainnet", + "status": "confirmed", + "time": 1776364839000, + "toSmartContract": false, + "txParams": { + "chainId": "0xa4b1", + "data": "0xd4b10725", + "from": "0xf70da97812cb96acdf810712aa562db8dfa3dbef", + "gas": "0xaca8", + "gasPrice": "0x1326580", + "gasUsed": "0x5764", + "nonce": "0x913886", + "to": "0x141d32a89a1e0a5ef360034a2f60a4b917c18838", + "value": "0x12fd65f9c06e51" + }, + "type": "incoming", + "verifiedOnBlockchain": false + }, + { + "baseFeePerGas": "0x4c4b40", + "batchId": "0x9b387d273e404320bf046b7b63dceaa4", + "blockTimestamp": "0x69e13303", + "chainId": "0x2105", + "defaultGasEstimates": { + "estimateType": "medium", + "gas": "0x3a8a9", + "maxFeePerGas": "0x14fb180", + "maxPriorityFeePerGas": "0x1fbb4c" + }, + "delegationAddress": "0x63c0c19a282a1b52b07dd5a65b58948a07dae32b", + "gasFeeEstimates": { + "high": { + "maxFeePerGas": "0x329e317", + "maxPriorityFeePerGas": "0x2f0940" + }, + "low": { + "maxFeePerGas": "0xa88f2f", + "maxPriorityFeePerGas": "0x103445" + }, + "medium": { + "maxFeePerGas": "0x14fb180", + "maxPriorityFeePerGas": "0x1f1fcc" + }, + "type": "fee-market" + }, + "gasFeeEstimatesLoaded": true, + "gasLimitNoBuffer": "0x27071", + "hash": "0x3ed8255b9d59dc494570ba5cb2cfba5f219ad0813df9905557398e44561676df", + "id": "3ce48380-39c7-11f1-a1dd-3727d90ba13b", + "isGasFeeIncluded": true, + "isGasFeeSponsored": false, + "isGasFeeTokenIgnoredIfBalance": false, + "layer1GasFee": "0x0260efd782", + "nestedTransactions": [ + { + "data": "0x095ea7b3000000000000000000000000a20ecbc821fb54064aa7b5c6ac81173b8b34df710000000000000000000000000000000000000000000000000000000001671d3b", + "effectiveGas": 55449, + "from": "0x141d32a89a1e0a5Ef360034a2f60a4B917c18838", + "to": "0x833589fcd6edb6e08f4c7c32d4f71b54bda02913", + "type": "bridgeApproval", + "value": "0x0" + }, + { + "data": "0x3ce33bff0000000000000000000000000000000000000000000000000000000000000080000000000000000000000000833589fcd6edb6e08f4c7c32d4f71b54bda029130000000000000000000000000000000000000000000000000000000001671d3b00000000000000000000000000000000000000000000000000000000000000c0000000000000000000000000000000000000000000000000000000000000000e72656c617941646170746572563200000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001e00000000000000000000000004cd00e387622c35bddb9b4c962c136462338bc310000000000000000000000004cd00e387622c35bddb9b4c962c136462338bc310000000000000000000000000000000000000000000000000000000000000001000000000000000000000000833589fcd6edb6e08f4c7c32d4f71b54bda029130000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000163d374000000000000000000000000000000000000000000000000000000000000014000000000000000000000000000000000000000000000000000000000000349c7000000000000000000000000e3478b0bb1a5084567c319096437924948be19640000000000000000000000000000000000000000000000000000000000000084e8017952000000000000000000000000141d32a89a1e0a5ef360034a2f60a4b917c18838000000000000000000000000833589fcd6edb6e08f4c7c32d4f71b54bda02913000000000000000000000000000000000000000000000000000000000163d37414e387806f12e30257c6616fd834d95d22ea6b41428f89f3ea11cfa093d7e0c80000000000000000000000000000000000000000000000000000000098", + "effectiveGas": 109714, + "from": "0x141d32a89a1e0a5Ef360034a2f60a4B917c18838", + "to": "0xa20ECbC821fB54064aa7B5C6aC81173b8b34Df71", + "type": "bridge", + "value": "0x0" + } + ], + "networkClientId": "base-mainnet", + "origin": "metamask", + "originalGasEstimate": "0x3a8a9", + "r": "0x8bc50d36b7ec079f2319d2f4c3024f0da9b107d7ac5468d3c90d6925b24dd13a", + "rawTx": "0x02f905928221053b831fbb4c84014fb1808303a8a994141d32a89a1e0a5ef360034a2f60a4b917c1883880b90524e9ae5c530100000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000004000000000000000000000000000000000000000000000000000000000000004c00000000000000000000000000000000000000000000000000000000000000020000000000000000000000000000000000000000000000000000000000000000200000000000000000000000000000000000000000000000000000000000000400000000000000000000000000000000000000000000000000000000000000120000000000000000000000000833589fcd6edb6e08f4c7c32d4f71b54bda02913000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000600000000000000000000000000000000000000000000000000000000000000044095ea7b3000000000000000000000000a20ecbc821fb54064aa7b5c6ac81173b8b34df710000000000000000000000000000000000000000000000000000000001671d3b00000000000000000000000000000000000000000000000000000000000000000000000000000000a20ecbc821fb54064aa7b5c6ac81173b8b34df710000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000002c53ce33bff0000000000000000000000000000000000000000000000000000000000000080000000000000000000000000833589fcd6edb6e08f4c7c32d4f71b54bda029130000000000000000000000000000000000000000000000000000000001671d3b00000000000000000000000000000000000000000000000000000000000000c0000000000000000000000000000000000000000000000000000000000000000e72656c617941646170746572563200000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001e00000000000000000000000004cd00e387622c35bddb9b4c962c136462338bc310000000000000000000000004cd00e387622c35bddb9b4c962c136462338bc310000000000000000000000000000000000000000000000000000000000000001000000000000000000000000833589fcd6edb6e08f4c7c32d4f71b54bda029130000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000163d374000000000000000000000000000000000000000000000000000000000000014000000000000000000000000000000000000000000000000000000000000349c7000000000000000000000000e3478b0bb1a5084567c319096437924948be19640000000000000000000000000000000000000000000000000000000000000084e8017952000000000000000000000000141d32a89a1e0a5ef360034a2f60a4b917c18838000000000000000000000000833589fcd6edb6e08f4c7c32d4f71b54bda02913000000000000000000000000000000000000000000000000000000000163d37414e387806f12e30257c6616fd834d95d22ea6b41428f89f3ea11cfa093d7e0c80000000000000000000000000000000000000000000000000000000098000000000000000000000000000000000000000000000000000000c001a08bc50d36b7ec079f2319d2f4c3024f0da9b107d7ac5468d3c90d6925b24dd13aa06dc757a43675ab2ea92135b298e03251737a12829e9932d3d426a3a1cdd9d852", + "s": "0x6dc757a43675ab2ea92135b298e03251737a12829e9932d3d426a3a1cdd9d852", + "status": "confirmed", + "submittedTime": 1776366340599, + "time": 1776366330808, + "txParams": { + "data": "0xe9ae5c530100000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000004000000000000000000000000000000000000000000000000000000000000004c00000000000000000000000000000000000000000000000000000000000000020000000000000000000000000000000000000000000000000000000000000000200000000000000000000000000000000000000000000000000000000000000400000000000000000000000000000000000000000000000000000000000000120000000000000000000000000833589fcd6edb6e08f4c7c32d4f71b54bda02913000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000600000000000000000000000000000000000000000000000000000000000000044095ea7b3000000000000000000000000a20ecbc821fb54064aa7b5c6ac81173b8b34df710000000000000000000000000000000000000000000000000000000001671d3b00000000000000000000000000000000000000000000000000000000000000000000000000000000a20ecbc821fb54064aa7b5c6ac81173b8b34df710000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000002c53ce33bff0000000000000000000000000000000000000000000000000000000000000080000000000000000000000000833589fcd6edb6e08f4c7c32d4f71b54bda029130000000000000000000000000000000000000000000000000000000001671d3b00000000000000000000000000000000000000000000000000000000000000c0000000000000000000000000000000000000000000000000000000000000000e72656c617941646170746572563200000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001e00000000000000000000000004cd00e387622c35bddb9b4c962c136462338bc310000000000000000000000004cd00e387622c35bddb9b4c962c136462338bc310000000000000000000000000000000000000000000000000000000000000001000000000000000000000000833589fcd6edb6e08f4c7c32d4f71b54bda029130000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000163d374000000000000000000000000000000000000000000000000000000000000014000000000000000000000000000000000000000000000000000000000000349c7000000000000000000000000e3478b0bb1a5084567c319096437924948be19640000000000000000000000000000000000000000000000000000000000000084e8017952000000000000000000000000141d32a89a1e0a5ef360034a2f60a4b917c18838000000000000000000000000833589fcd6edb6e08f4c7c32d4f71b54bda02913000000000000000000000000000000000000000000000000000000000163d37414e387806f12e30257c6616fd834d95d22ea6b41428f89f3ea11cfa093d7e0c80000000000000000000000000000000000000000000000000000000098000000000000000000000000000000000000000000000000000000", + "from": "0x141d32a89a1e0a5ef360034a2f60a4b917c18838", + "gas": "0x3a8a9", + "gasLimit": "0x3a8a9", + "maxFeePerGas": "0x14fb180", + "maxPriorityFeePerGas": "0x1fbb4c", + "to": "0x141d32a89a1e0a5ef360034a2f60a4b917c18838", + "type": "0x2", + "value": "0x0" + }, + "txParamsOriginal": { + "data": "0xe9ae5c530100000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000004000000000000000000000000000000000000000000000000000000000000004c00000000000000000000000000000000000000000000000000000000000000020000000000000000000000000000000000000000000000000000000000000000200000000000000000000000000000000000000000000000000000000000000400000000000000000000000000000000000000000000000000000000000000120000000000000000000000000833589fcd6edb6e08f4c7c32d4f71b54bda02913000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000600000000000000000000000000000000000000000000000000000000000000044095ea7b3000000000000000000000000a20ecbc821fb54064aa7b5c6ac81173b8b34df710000000000000000000000000000000000000000000000000000000001671d3b00000000000000000000000000000000000000000000000000000000000000000000000000000000a20ecbc821fb54064aa7b5c6ac81173b8b34df710000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000002c53ce33bff0000000000000000000000000000000000000000000000000000000000000080000000000000000000000000833589fcd6edb6e08f4c7c32d4f71b54bda029130000000000000000000000000000000000000000000000000000000001671d3b00000000000000000000000000000000000000000000000000000000000000c0000000000000000000000000000000000000000000000000000000000000000e72656c617941646170746572563200000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001e00000000000000000000000004cd00e387622c35bddb9b4c962c136462338bc310000000000000000000000004cd00e387622c35bddb9b4c962c136462338bc310000000000000000000000000000000000000000000000000000000000000001000000000000000000000000833589fcd6edb6e08f4c7c32d4f71b54bda029130000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000163d374000000000000000000000000000000000000000000000000000000000000014000000000000000000000000000000000000000000000000000000000000349c7000000000000000000000000e3478b0bb1a5084567c319096437924948be19640000000000000000000000000000000000000000000000000000000000000084e8017952000000000000000000000000141d32a89a1e0a5ef360034a2f60a4b917c18838000000000000000000000000833589fcd6edb6e08f4c7c32d4f71b54bda02913000000000000000000000000000000000000000000000000000000000163d37414e387806f12e30257c6616fd834d95d22ea6b41428f89f3ea11cfa093d7e0c80000000000000000000000000000000000000000000000000000000098000000000000000000000000000000000000000000000000000000", + "from": "0x141d32a89a1e0a5ef360034a2f60a4b917c18838", + "to": "0x141d32a89a1e0a5ef360034a2f60a4b917c18838", + "type": "0x2", + "value": "0x0" + }, + "txReceipt": { + "blobGasUsed": "0x14fe4", + "blockHash": "0x54b8f6145efd406fb63811ffe209cabe3cf64fcf8140d39787db9a23d52587f4", + "blockNumber": "0x2ab6b10", + "contractAddress": null, + "cumulativeGasUsed": "0x10abafd", + "daFootprintGasScalar": "0x94", + "effectiveGasPrice": "0x5b8d81", + "from": "0xc066ac5d385419b1a8c43a0e146fa439837a8b8c", + "gasUsed": "0x4203d", + "l1BaseFeeScalar": "0x8dd", + "l1BlobBaseFee": "0x1195ea0", + "l1BlobBaseFeeScalar": "0x101c12", + "l1Fee": "0x40e0e4160", + "l1GasPrice": "0x1136aa15", + "l1GasUsed": "0x2457", + "logs": [ + { + "address": "0x04658b29f6b82ed55274221a06fc97d318e25416", + "blockHash": "0x54b8f6145efd406fb63811ffe209cabe3cf64fcf8140d39787db9a23d52587f4", + "blockNumber": "0x2ab6b10", + "blockTimestamp": "0x69e13303", + "data": "0x00000000000000000000000000000000000000000000000000000000000000010000000000000000000000000000000000000000000000000000000000000001", + "logIndex": "0x1ef", + "removed": false, + "topics": [ + "0x449da07f2c06c9d1a6b19d2454ffe749e8cf991d22f686e076a1a4844c5ff370", + "0x000000000000000000000000db9b1e94b5b69df7e401ddbede43491141047db3", + "0x000000000000000000000000c066ac5d385419b1a8c43a0e146fa439837a8b8c", + "0xddd29bdb9182709a42eb20a764a4b4bbffc4bee8482a6c27dfe22a7bc158a104" + ], + "transactionHash": "0x3ed8255b9d59dc494570ba5cb2cfba5f219ad0813df9905557398e44561676df", + "transactionIndex": "0x6a" + }, + { + "address": "0x833589fcd6edb6e08f4c7c32d4f71b54bda02913", + "blockHash": "0x54b8f6145efd406fb63811ffe209cabe3cf64fcf8140d39787db9a23d52587f4", + "blockNumber": "0x2ab6b10", + "blockTimestamp": "0x69e13303", + "data": "0x0000000000000000000000000000000000000000000000000000000001671d3b", + "logIndex": "0x1f0", + "removed": false, + "topics": [ + "0x8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925", + "0x000000000000000000000000141d32a89a1e0a5ef360034a2f60a4b917c18838", + "0x000000000000000000000000a20ecbc821fb54064aa7b5c6ac81173b8b34df71" + ], + "transactionHash": "0x3ed8255b9d59dc494570ba5cb2cfba5f219ad0813df9905557398e44561676df", + "transactionIndex": "0x6a" + }, + { + "address": "0x833589fcd6edb6e08f4c7c32d4f71b54bda02913", + "blockHash": "0x54b8f6145efd406fb63811ffe209cabe3cf64fcf8140d39787db9a23d52587f4", + "blockNumber": "0x2ab6b10", + "blockTimestamp": "0x69e13303", + "data": "0x0000000000000000000000000000000000000000000000000000000001671d3b", + "logIndex": "0x1f1", + "removed": false, + "topics": [ + "0xddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef", + "0x000000000000000000000000141d32a89a1e0a5ef360034a2f60a4b917c18838", + "0x000000000000000000000000a5c1ce365ddb5a91ff466774ec4bdf8f97cb9f55" + ], + "transactionHash": "0x3ed8255b9d59dc494570ba5cb2cfba5f219ad0813df9905557398e44561676df", + "transactionIndex": "0x6a" + }, + { + "address": "0x833589fcd6edb6e08f4c7c32d4f71b54bda02913", + "blockHash": "0x54b8f6145efd406fb63811ffe209cabe3cf64fcf8140d39787db9a23d52587f4", + "blockNumber": "0x2ab6b10", + "blockTimestamp": "0x69e13303", + "data": "0x00000000000000000000000000000000000000000000000000000000000349c7", + "logIndex": "0x1f2", + "removed": false, + "topics": [ + "0xddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef", + "0x000000000000000000000000a5c1ce365ddb5a91ff466774ec4bdf8f97cb9f55", + "0x000000000000000000000000e3478b0bb1a5084567c319096437924948be1964" + ], + "transactionHash": "0x3ed8255b9d59dc494570ba5cb2cfba5f219ad0813df9905557398e44561676df", + "transactionIndex": "0x6a" + }, + { + "address": "0xa5c1ce365ddb5a91ff466774ec4bdf8f97cb9f55", + "blockHash": "0x54b8f6145efd406fb63811ffe209cabe3cf64fcf8140d39787db9a23d52587f4", + "blockNumber": "0x2ab6b10", + "blockTimestamp": "0x69e13303", + "data": "0x000000000000000000000000833589fcd6edb6e08f4c7c32d4f71b54bda02913000000000000000000000000e3478b0bb1a5084567c319096437924948be196400000000000000000000000000000000000000000000000000000000000349c7", + "logIndex": "0x1f3", + "removed": false, + "topics": [ + "0x6ded982279c8387ad8a63e73385031a3807c1862e633f06e09d11bcb6e282f60" + ], + "transactionHash": "0x3ed8255b9d59dc494570ba5cb2cfba5f219ad0813df9905557398e44561676df", + "transactionIndex": "0x6a" + }, + { + "address": "0x833589fcd6edb6e08f4c7c32d4f71b54bda02913", + "blockHash": "0x54b8f6145efd406fb63811ffe209cabe3cf64fcf8140d39787db9a23d52587f4", + "blockNumber": "0x2ab6b10", + "blockTimestamp": "0x69e13303", + "data": "0x000000000000000000000000000000000000000000000000000000000163d374", + "logIndex": "0x1f4", + "removed": false, + "topics": [ + "0xddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef", + "0x000000000000000000000000a5c1ce365ddb5a91ff466774ec4bdf8f97cb9f55", + "0x0000000000000000000000004cd00e387622c35bddb9b4c962c136462338bc31" + ], + "transactionHash": "0x3ed8255b9d59dc494570ba5cb2cfba5f219ad0813df9905557398e44561676df", + "transactionIndex": "0x6a" + }, + { + "address": "0x4cd00e387622c35bddb9b4c962c136462338bc31", + "blockHash": "0x54b8f6145efd406fb63811ffe209cabe3cf64fcf8140d39787db9a23d52587f4", + "blockNumber": "0x2ab6b10", + "blockTimestamp": "0x69e13303", + "data": "0x000000000000000000000000141d32a89a1e0a5ef360034a2f60a4b917c18838000000000000000000000000833589fcd6edb6e08f4c7c32d4f71b54bda02913000000000000000000000000000000000000000000000000000000000163d37414e387806f12e30257c6616fd834d95d22ea6b41428f89f3ea11cfa093d7e0c8", + "logIndex": "0x1f5", + "removed": false, + "topics": [ + "0x49fed1d0b752ce30eee63c7a81133f3363b532fec5d4d7dd1ccfd005de4555e1" + ], + "transactionHash": "0x3ed8255b9d59dc494570ba5cb2cfba5f219ad0813df9905557398e44561676df", + "transactionIndex": "0x6a" + }, + { + "address": "0xa5c1ce365ddb5a91ff466774ec4bdf8f97cb9f55", + "blockHash": "0x54b8f6145efd406fb63811ffe209cabe3cf64fcf8140d39787db9a23d52587f4", + "blockNumber": "0x2ab6b10", + "blockTimestamp": "0x69e13303", + "data": "0x000000000000000000000000141d32a89a1e0a5ef360034a2f60a4b917c188380000000000000000000000004cd00e387622c35bddb9b4c962c136462338bc310000000000000000000000000000000000000000000000000000000000000001000000000000000000000000833589fcd6edb6e08f4c7c32d4f71b54bda029130000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000163d374", + "logIndex": "0x1f6", + "removed": false, + "topics": [ + "0x831bac9533a2034226daa21109dbd4f887674f0fe4877e1a8b35b3ffe1bdce76" + ], + "transactionHash": "0x3ed8255b9d59dc494570ba5cb2cfba5f219ad0813df9905557398e44561676df", + "transactionIndex": "0x6a" + }, + { + "address": "0xdb9b1e94b5b69df7e401ddbede43491141047db3", + "blockHash": "0x54b8f6145efd406fb63811ffe209cabe3cf64fcf8140d39787db9a23d52587f4", + "blockNumber": "0x2ab6b10", + "blockTimestamp": "0x69e13303", + "data": "0x00000000000000000000000000000000000000000000000000000000000000200000000000000000000000000000000000000000000000000000000000000a11000000000000000000000000141d32a89a1e0a5ef360034a2f60a4b917c18838ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff00000000000000000000000000000000000000000000000000000000000000c000000000000000000000000000000000000000000000000000000000b875174200000000000000000000000000000000000000000000000000000000000007400000000000000000000000000000000000000000000000000000000000000002000000000000000000000000000000000000000000000000000000000000004000000000000000000000000000000000000000000000000000000000000005a00000000000000000000000001e141e455d08721dd5bcda1baa6ea5633afd50170000000000000000000000000000000000000000000000000000000000000060000000000000000000000000000000000000000000000000000000000000054000000000000000000000000000000000000000000000000000000000000004c00000000000000000000000000000000000000000000000000000000000000020000000000000000000000000000000000000000000000000000000000000000200000000000000000000000000000000000000000000000000000000000000400000000000000000000000000000000000000000000000000000000000000120000000000000000000000000833589fcd6edb6e08f4c7c32d4f71b54bda02913000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000600000000000000000000000000000000000000000000000000000000000000044095ea7b3000000000000000000000000a20ecbc821fb54064aa7b5c6ac81173b8b34df710000000000000000000000000000000000000000000000000000000001671d3b00000000000000000000000000000000000000000000000000000000000000000000000000000000a20ecbc821fb54064aa7b5c6ac81173b8b34df710000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000002c53ce33bff0000000000000000000000000000000000000000000000000000000000000080000000000000000000000000833589fcd6edb6e08f4c7c32d4f71b54bda029130000000000000000000000000000000000000000000000000000000001671d3b00000000000000000000000000000000000000000000000000000000000000c0000000000000000000000000000000000000000000000000000000000000000e72656c617941646170746572563200000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001e00000000000000000000000004cd00e387622c35bddb9b4c962c136462338bc310000000000000000000000004cd00e387622c35bddb9b4c962c136462338bc310000000000000000000000000000000000000000000000000000000000000001000000000000000000000000833589fcd6edb6e08f4c7c32d4f71b54bda029130000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000163d374000000000000000000000000000000000000000000000000000000000000014000000000000000000000000000000000000000000000000000000000000349c7000000000000000000000000e3478b0bb1a5084567c319096437924948be19640000000000000000000000000000000000000000000000000000000000000084e8017952000000000000000000000000141d32a89a1e0a5ef360034a2f60a4b917c18838000000000000000000000000833589fcd6edb6e08f4c7c32d4f71b54bda02913000000000000000000000000000000000000000000000000000000000163d37414e387806f12e30257c6616fd834d95d22ea6b41428f89f3ea11cfa093d7e0c80000000000000000000000000000000000000000000000000000000098000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000004658b29f6b82ed55274221a06fc97d318e25416000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000000a0000000000000000000000000000000000000000000000000000000000000002000000000000000000000000000000000000000000000000000000000000000010000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000004114b2b0a07d23f7a63d1ee30eb500bfe59db56c297aa94f81730d820b3218ae236c6bb175463b3a74e280280978f7bbdff78057e2bb0dd192d345294d58929e391b00000000000000000000000000000000000000000000000000000000000000", + "logIndex": "0x1f7", + "removed": false, + "topics": [ + "0x40dadaa36c6c2e3d7317e24757451ffb2d603d875f0ad5e92c5dd156573b1873", + "0x000000000000000000000000141d32a89a1e0a5ef360034a2f60a4b917c18838", + "0x000000000000000000000000c066ac5d385419b1a8c43a0e146fa439837a8b8c" + ], + "transactionHash": "0x3ed8255b9d59dc494570ba5cb2cfba5f219ad0813df9905557398e44561676df", + "transactionIndex": "0x6a" + } + ], + "logsBloom": "0x0000000000000010000002000000000800000000000000000000100000000400004000000000000000000000000010000000008000802000000000100020000010000081008001202200000802410000000000000009000000020000000000000480000000000000000000000000000090000000200000000080001000000000000000000000000100008002000000000000000000000001200000000000000002000000000000000000000000000100800000000000000000c000000000000008080022004000000000000000000000000000000000004000000000000200000010040000000000000010000480120000020000000000000000000000000000", + "status": "0x1", + "to": "0xdb9b1e94b5b69df7e401ddbede43491141047db3", + "transactionHash": "0x3ed8255b9d59dc494570ba5cb2cfba5f219ad0813df9905557398e44561676df", + "transactionIndex": "0x6a", + "type": "0x2" + }, + "type": "bridge", + "userEditedGasLimit": false, + "userFeeLevel": "medium", + "v": "0x1", + "verifiedOnBlockchain": true + }, + { + "blockNumber": "44788496", + "chainId": "0x2105", + "hash": "0x3ed8255b9d59dc494570ba5cb2cfba5f219ad0813df9905557398e44561676df", + "id": "41c68380-39c7-11f1-a1dd-3727d90ba13b", + "isTransfer": false, + "networkClientId": "base-mainnet", + "status": "confirmed", + "time": 1776366339000, + "toSmartContract": false, + "transferInformation": { + "amount": "23534907", + "contractAddress": "0x833589fcd6edb6e08f4c7c32d4f71b54bda02913", + "decimals": 6, + "symbol": "USDC" + }, + "txParams": { + "chainId": "0x2105", + "data": "0xcef6d209", + "from": "0xc066ac5d385419b1a8c43a0e146fa439837a8b8c", + "gas": "0x50c76", + "gasPrice": "0x5b8d81", + "gasUsed": "0x4203d", + "nonce": "0x1f0be", + "to": "0xdb9b1e94b5b69df7e401ddbede43491141047db3", + "value": "0x0" + }, + "type": "incoming", + "verifiedOnBlockchain": false + }, + { + "blockNumber": "24894371", + "chainId": "0x1", + "hash": "0xbf006ccfc6f025cae589ef2f549bce8576f14ec9572b868ec12aea5c223ba5ab", + "id": "468b3780-39c7-11f1-a283-3727d90ba13b", + "isTransfer": false, + "networkClientId": "mainnet", + "status": "confirmed", + "time": 1776366347000, + "toSmartContract": false, + "txParams": { + "chainId": "0x1", + "data": "0x14e38780", + "from": "0x331d9a049d496385998067abf6cbb6371c8d2466", + "gas": "0x6270", + "gasPrice": "0x115d1b9d", + "gasUsed": "0x5708", + "nonce": "0x20499", + "to": "0x141d32a89a1e0a5ef360034a2f60a4b917c18838", + "value": "0x23468f9c07b72f" + }, + "type": "incoming", + "verifiedOnBlockchain": false + }, + { + "assetsFiatValues": { + "receiving": "22.611023315058376370122902864", + "sending": "23.392662778241671753687926528" + }, + "baseFeePerGas": "0x105b6f85", + "batchId": "0xbb15bdb911894b408de56bc7eed766c1", + "blockTimestamp": "0x69e1332f", + "chainId": "0x1", + "defaultGasEstimates": { + "estimateType": "medium", + "gas": "0x1675e", + "maxFeePerGas": "0x8f66d21e", + "maxPriorityFeePerGas": "0x7d2b7501" + }, + "disableGasBuffer": true, + "gasFeeEstimates": { + "high": { + "maxFeePerGas": "0x8e6250e7", + "maxPriorityFeePerGas": "0x77359400" + }, + "low": { + "maxFeePerGas": "0x103d65ad", + "maxPriorityFeePerGas": "0x8a121" + }, + "medium": { + "maxFeePerGas": "0x8e6250e7", + "maxPriorityFeePerGas": "0x77359400" + }, + "type": "fee-market" + }, + "gasFeeEstimatesLoaded": true, + "gasLimitNoBuffer": "0x1675e", + "hash": "0xf35aa01f3d30bca6d855deda71b9bb47108342dd8027e12dc4857a2ba5bdd52a", + "id": "563eafe0-39c7-11f1-a22e-3727d90ba13b", + "isGasFeeTokenIgnoredIfBalance": false, + "networkClientId": "mainnet", + "origin": "metamask", + "r": "0x57a73e79fa730e71fcb9a00f129c75e7670fe69766a7ff854cec6e70b5c1d09c", + "rawTx": "0x02f902f90131847d2b7501848f66d21e8301675e940439e60f02a8900a951603950d8d4527f400c3f187229bca63ad40a6b902853ce33bff0000000000000000000000000000000000000000000000000000000000000080000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000229bca63ad40a600000000000000000000000000000000000000000000000000000000000000c0000000000000000000000000000000000000000000000000000000000000000e72656c617941646170746572563200000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001a00000000000000000000000004cd00e387622c35bddb9b4c962c136462338bc310000000000000000000000004cd00e387622c35bddb9b4c962c136462338bc31000000000000000000000000000000000000000000000000000000000000a4b10000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000224c61ae55db3c000000000000000000000000000000000000000000000000000000000000014000000000000000000000000000000000000000000000000000004f68b557656a000000000000000000000000e3478b0bb1a5084567c319096437924948be1964000000000000000000000000000000000000000000000000000000000000004449290c1c000000000000000000000000141d32a89a1e0a5ef360034a2f60a4b917c188389f396c4ee81bffb5f4a8ed8020f75475a21568c3fe8488c1cf31c8354355ea430000000000000000000000000000000000000000000000000000000056c080a057a73e79fa730e71fcb9a00f129c75e7670fe69766a7ff854cec6e70b5c1d09ca04628e31af8ffa5962544283f280de27b2008bf248b1a930d9cbf451110891a00", + "s": "0x4628e31af8ffa5962544283f280de27b2008bf248b1a930d9cbf451110891a00", + "status": "confirmed", + "submittedTime": 1776366373723, + "time": 1776366373342, + "txParams": { + "data": "0x3ce33bff0000000000000000000000000000000000000000000000000000000000000080000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000229bca63ad40a600000000000000000000000000000000000000000000000000000000000000c0000000000000000000000000000000000000000000000000000000000000000e72656c617941646170746572563200000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001a00000000000000000000000004cd00e387622c35bddb9b4c962c136462338bc310000000000000000000000004cd00e387622c35bddb9b4c962c136462338bc31000000000000000000000000000000000000000000000000000000000000a4b10000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000224c61ae55db3c000000000000000000000000000000000000000000000000000000000000014000000000000000000000000000000000000000000000000000004f68b557656a000000000000000000000000e3478b0bb1a5084567c319096437924948be1964000000000000000000000000000000000000000000000000000000000000004449290c1c000000000000000000000000141d32a89a1e0a5ef360034a2f60a4b917c188389f396c4ee81bffb5f4a8ed8020f75475a21568c3fe8488c1cf31c8354355ea430000000000000000000000000000000000000000000000000000000056", + "from": "0x141d32a89a1e0a5ef360034a2f60a4b917c18838", + "gas": "0x1675e", + "gasLimit": "0x1675e", + "maxFeePerGas": "0x8f66d21e", + "maxPriorityFeePerGas": "0x7d2b7501", + "nonce": "0x31", + "to": "0x0439e60f02a8900a951603950d8d4527f400c3f1", + "type": "0x2", + "value": "0x229bca63ad40a6" + }, + "txParamsOriginal": { + "data": "0x3ce33bff0000000000000000000000000000000000000000000000000000000000000080000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000229bca63ad40a600000000000000000000000000000000000000000000000000000000000000c0000000000000000000000000000000000000000000000000000000000000000e72656c617941646170746572563200000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001a00000000000000000000000004cd00e387622c35bddb9b4c962c136462338bc310000000000000000000000004cd00e387622c35bddb9b4c962c136462338bc31000000000000000000000000000000000000000000000000000000000000a4b10000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000224c61ae55db3c000000000000000000000000000000000000000000000000000000000000014000000000000000000000000000000000000000000000000000004f68b557656a000000000000000000000000e3478b0bb1a5084567c319096437924948be1964000000000000000000000000000000000000000000000000000000000000004449290c1c000000000000000000000000141d32a89a1e0a5ef360034a2f60a4b917c188389f396c4ee81bffb5f4a8ed8020f75475a21568c3fe8488c1cf31c8354355ea430000000000000000000000000000000000000000000000000000000056", + "from": "0x141d32a89a1e0a5ef360034a2f60a4b917c18838", + "gas": "0x1675e", + "maxFeePerGas": "0x8f66d21e", + "maxPriorityFeePerGas": "0x7d2b7501", + "to": "0x0439e60f02a8900a951603950d8d4527f400c3f1", + "type": "0x2", + "value": "0x229bca63ad40a6" + }, + "txReceipt": { + "blockHash": "0x5711d96b0b564bbe08a940a86ca3316fbaa4989ff26ac4bb807154678fcd0263", + "blockNumber": "0x17bdba6", + "contractAddress": null, + "cumulativeGasUsed": "0xcdd5d0", + "effectiveGasPrice": "0x8d86e486", + "from": "0x141d32a89a1e0a5ef360034a2f60a4b917c18838", + "gasUsed": "0x130d2", + "logs": [ + { + "address": "0x9a47f3289794e9bbc6a3c571f6d96ad4e7baed16", + "blockHash": "0x5711d96b0b564bbe08a940a86ca3316fbaa4989ff26ac4bb807154678fcd0263", + "blockNumber": "0x17bdba6", + "blockTimestamp": "0x69e1332f", + "data": "0x0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000e3478b0bb1a5084567c319096437924948be196400000000000000000000000000000000000000000000000000004f68b557656a", + "logIndex": "0x193", + "removed": false, + "topics": [ + "0x6ded982279c8387ad8a63e73385031a3807c1862e633f06e09d11bcb6e282f60" + ], + "transactionHash": "0xf35aa01f3d30bca6d855deda71b9bb47108342dd8027e12dc4857a2ba5bdd52a", + "transactionIndex": "0x5e" + }, + { + "address": "0x4cd00e387622c35bddb9b4c962c136462338bc31", + "blockHash": "0x5711d96b0b564bbe08a940a86ca3316fbaa4989ff26ac4bb807154678fcd0263", + "blockNumber": "0x17bdba6", + "blockTimestamp": "0x69e1332f", + "data": "0x000000000000000000000000141d32a89a1e0a5ef360034a2f60a4b917c1883800000000000000000000000000000000000000000000000000224c61ae55db3c9f396c4ee81bffb5f4a8ed8020f75475a21568c3fe8488c1cf31c8354355ea43", + "logIndex": "0x194", + "removed": false, + "topics": [ + "0x8032066556caf3967d8fec4ad22a2d9e1e9576556b2903a0fcd5b1fd201e3477" + ], + "transactionHash": "0xf35aa01f3d30bca6d855deda71b9bb47108342dd8027e12dc4857a2ba5bdd52a", + "transactionIndex": "0x5e" + }, + { + "address": "0x9a47f3289794e9bbc6a3c571f6d96ad4e7baed16", + "blockHash": "0x5711d96b0b564bbe08a940a86ca3316fbaa4989ff26ac4bb807154678fcd0263", + "blockNumber": "0x17bdba6", + "blockTimestamp": "0x69e1332f", + "data": "0x000000000000000000000000141d32a89a1e0a5ef360034a2f60a4b917c188380000000000000000000000004cd00e387622c35bddb9b4c962c136462338bc31000000000000000000000000000000000000000000000000000000000000a4b10000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000224c61ae55db3c", + "logIndex": "0x195", + "removed": false, + "topics": [ + "0x831bac9533a2034226daa21109dbd4f887674f0fe4877e1a8b35b3ffe1bdce76" + ], + "transactionHash": "0xf35aa01f3d30bca6d855deda71b9bb47108342dd8027e12dc4857a2ba5bdd52a", + "transactionIndex": "0x5e" + } + ], + "logsBloom": "0x00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000100000000000002000000000000100000000000000000000000000000000000004000000000000000000000000000000000000002000000000800000000000000000000000000000000000000000000000000000000000000000000000000000000000200000000000000000000000000000400000000000004000000400000008000020000000000000040000000000000000000000000000000000000200000000000000000000000000000000000000000000000000000000000400000000", + "status": "0x1", + "to": "0x0439e60f02a8900a951603950d8d4527f400c3f1", + "transactionHash": "0xf35aa01f3d30bca6d855deda71b9bb47108342dd8027e12dc4857a2ba5bdd52a", + "transactionIndex": "0x5e", + "type": "0x2" + }, + "type": "bridge", + "userEditedGasLimit": false, + "userFeeLevel": "medium", + "v": "0x0", + "verifiedOnBlockchain": true + }, + { + "blockNumber": "24894374", + "chainId": "0x1", + "hash": "0xf35aa01f3d30bca6d855deda71b9bb47108342dd8027e12dc4857a2ba5bdd52a", + "id": "5c006180-39c7-11f1-a282-3727d90ba13b", + "isTransfer": false, + "networkClientId": "mainnet", + "status": "confirmed", + "time": 1776366383000, + "toSmartContract": false, + "txParams": { + "chainId": "0x1", + "data": "0x3ce33bff", + "from": "0x141d32a89a1e0a5ef360034a2f60a4b917c18838", + "gas": "0x1675e", + "gasPrice": "0x8d86e486", + "gasUsed": "0x130d2", + "nonce": "0x31", + "to": "0x0439e60f02a8900a951603950d8d4527f400c3f1", + "value": "0x229bca63ad40a6" + }, + "type": "contractInteraction", + "verifiedOnBlockchain": false + }, + { + "blockNumber": "453190200", + "chainId": "0xa4b1", + "hash": "0x80711caaa4fd650b455541f6afaa14cfefe6e004b5c3e65c3f574848ced9465a", + "id": "5dca2500-39c7-11f1-a281-3727d90ba13b", + "isTransfer": false, + "networkClientId": "arbitrum-mainnet", + "status": "confirmed", + "time": 1776366386000, + "toSmartContract": false, + "txParams": { + "chainId": "0xa4b1", + "data": "0x9f396c4e", + "from": "0xf70da97812cb96acdf810712aa562db8dfa3dbef", + "gas": "0xafa0", + "gasPrice": "0x131e0b0", + "gasUsed": "0x5828", + "nonce": "0x9138e8", + "to": "0x141d32a89a1e0a5ef360034a2f60a4b917c18838", + "value": "0x2244132423f93f" + }, + "type": "incoming", + "verifiedOnBlockchain": false + }, + { + "assetsFiatValues": { + "receiving": "34.778356485299929284265223158", + "sending": "35.138086032029867071882444857" + }, + "baseFeePerGas": "0x1315410", + "batchId": "0xf3cca04fd9da447f8eaf554014fe08df", + "blockTimestamp": "0x69e133b3", + "chainId": "0xa4b1", + "defaultGasEstimates": { + "estimateType": "medium", + "gas": "0x1fea8", + "maxFeePerGas": "0x15775c9", + "maxPriorityFeePerGas": "0x1" + }, + "disableGasBuffer": true, + "gasFeeEstimates": { + "high": { + "maxFeePerGas": "0x20701a0", + "maxPriorityFeePerGas": "0x0" + }, + "low": { + "maxFeePerGas": "0x1314c40", + "maxPriorityFeePerGas": "0x0" + }, + "medium": { + "maxFeePerGas": "0x19c26f0", + "maxPriorityFeePerGas": "0x0" + }, + "type": "fee-market" + }, + "gasFeeEstimatesLoaded": true, + "gasLimitNoBuffer": "0x1fea8", + "hash": "0x303af96afa1a1e9a42299f146147a41722e44a56c1644ec45a87fb939d08f78f", + "id": "aa940ae0-39c7-11f1-a280-3727d90ba13b", + "isGasFeeTokenIgnoredIfBalance": false, + "networkClientId": "arbitrum-mainnet", + "origin": "metamask", + "r": "0xbc8392f787570b2b2fad4f68f9784b24cae1fbbbfbf3325dffcfd32ac35fb64", + "rawTx": "0x02f902f782a4b1270184015775c98301fea89423981fc34e69eedfe2bd9a0a9fcb0719fe09dbfc87353ff7470f1141b902853ce33bff0000000000000000000000000000000000000000000000000000000000000080000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000353ff7470f114100000000000000000000000000000000000000000000000000000000000000c0000000000000000000000000000000000000000000000000000000000000000e72656c617941646170746572563200000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001a00000000000000000000000004cd00e387622c35bddb9b4c962c136462338bc310000000000000000000000004cd00e387622c35bddb9b4c962c136462338bc310000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000034c8a8ec279f0c00000000000000000000000000000000000000000000000000000000000001400000000000000000000000000000000000000000000000000000774e5ae77235000000000000000000000000e3478b0bb1a5084567c319096437924948be1964000000000000000000000000000000000000000000000000000000000000004449290c1c000000000000000000000000141d32a89a1e0a5ef360034a2f60a4b917c188388b7a0b271409c32f512e2617e8c0bda23b5a90f8fb15c4a9e0baa8f0e791590e000000000000000000000000000000000000000000000000000000005ec080a00bc8392f787570b2b2fad4f68f9784b24cae1fbbbfbf3325dffcfd32ac35fb64a00ec616bfb46093e63d1039a6ace61c7249c129ab676f7b0a2233b69f83ce6b08", + "s": "0xec616bfb46093e63d1039a6ace61c7249c129ab676f7b0a2233b69f83ce6b08", + "status": "confirmed", + "submittedTime": 1776366515261, + "time": 1776366514830, + "txParams": { + "data": "0x3ce33bff0000000000000000000000000000000000000000000000000000000000000080000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000353ff7470f114100000000000000000000000000000000000000000000000000000000000000c0000000000000000000000000000000000000000000000000000000000000000e72656c617941646170746572563200000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001a00000000000000000000000004cd00e387622c35bddb9b4c962c136462338bc310000000000000000000000004cd00e387622c35bddb9b4c962c136462338bc310000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000034c8a8ec279f0c00000000000000000000000000000000000000000000000000000000000001400000000000000000000000000000000000000000000000000000774e5ae77235000000000000000000000000e3478b0bb1a5084567c319096437924948be1964000000000000000000000000000000000000000000000000000000000000004449290c1c000000000000000000000000141d32a89a1e0a5ef360034a2f60a4b917c188388b7a0b271409c32f512e2617e8c0bda23b5a90f8fb15c4a9e0baa8f0e791590e000000000000000000000000000000000000000000000000000000005e", + "from": "0x141d32a89a1e0a5ef360034a2f60a4b917c18838", + "gas": "0x1fea8", + "gasLimit": "0x1fea8", + "maxFeePerGas": "0x15775c9", + "maxPriorityFeePerGas": "0x1", + "nonce": "0x27", + "to": "0x23981fc34e69eedfe2bd9a0a9fcb0719fe09dbfc", + "type": "0x2", + "value": "0x353ff7470f1141" + }, + "txParamsOriginal": { + "data": "0x3ce33bff0000000000000000000000000000000000000000000000000000000000000080000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000353ff7470f114100000000000000000000000000000000000000000000000000000000000000c0000000000000000000000000000000000000000000000000000000000000000e72656c617941646170746572563200000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001a00000000000000000000000004cd00e387622c35bddb9b4c962c136462338bc310000000000000000000000004cd00e387622c35bddb9b4c962c136462338bc310000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000034c8a8ec279f0c00000000000000000000000000000000000000000000000000000000000001400000000000000000000000000000000000000000000000000000774e5ae77235000000000000000000000000e3478b0bb1a5084567c319096437924948be1964000000000000000000000000000000000000000000000000000000000000004449290c1c000000000000000000000000141d32a89a1e0a5ef360034a2f60a4b917c188388b7a0b271409c32f512e2617e8c0bda23b5a90f8fb15c4a9e0baa8f0e791590e000000000000000000000000000000000000000000000000000000005e", + "from": "0x141d32a89a1e0a5ef360034a2f60a4b917c18838", + "gas": "0x1fea8", + "maxFeePerGas": "0x15775c9", + "maxPriorityFeePerGas": "0x1", + "to": "0x23981fc34e69eedfe2bd9a0a9fcb0719fe09dbfc", + "type": "0x2", + "value": "0x353ff7470f1141" + }, + "txReceipt": { + "blockHash": "0xd3e95f2d87fc6db23d1d0427f14057f6e367e4e5a946af650ca64fb3fbf371b2", + "blockNumber": "0x1b03243a", + "contractAddress": null, + "cumulativeGasUsed": "0x13c5d", + "effectiveGasPrice": "0x1315410", + "from": "0x141d32a89a1e0a5ef360034a2f60a4b917c18838", + "gasUsed": "0x13c5d", + "gasUsedForL1": "0xb97", + "l1BlockNumber": "0x17bdbb0", + "logs": [ + { + "address": "0x7a70cb77a12fa2dc3fa1bc1dcbca4c79db71a289", + "blockHash": "0xd3e95f2d87fc6db23d1d0427f14057f6e367e4e5a946af650ca64fb3fbf371b2", + "blockNumber": "0x1b03243a", + "blockTimestamp": "0x69e133b3", + "data": "0x0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000e3478b0bb1a5084567c319096437924948be19640000000000000000000000000000000000000000000000000000774e5ae77235", + "logIndex": "0x0", + "removed": false, + "topics": [ + "0x6ded982279c8387ad8a63e73385031a3807c1862e633f06e09d11bcb6e282f60" + ], + "transactionHash": "0x303af96afa1a1e9a42299f146147a41722e44a56c1644ec45a87fb939d08f78f", + "transactionIndex": "0x1" + }, + { + "address": "0x4cd00e387622c35bddb9b4c962c136462338bc31", + "blockHash": "0xd3e95f2d87fc6db23d1d0427f14057f6e367e4e5a946af650ca64fb3fbf371b2", + "blockNumber": "0x1b03243a", + "blockTimestamp": "0x69e133b3", + "data": "0x000000000000000000000000141d32a89a1e0a5ef360034a2f60a4b917c188380000000000000000000000000000000000000000000000000034c8a8ec279f0c8b7a0b271409c32f512e2617e8c0bda23b5a90f8fb15c4a9e0baa8f0e791590e", + "logIndex": "0x1", + "removed": false, + "topics": [ + "0x8032066556caf3967d8fec4ad22a2d9e1e9576556b2903a0fcd5b1fd201e3477" + ], + "transactionHash": "0x303af96afa1a1e9a42299f146147a41722e44a56c1644ec45a87fb939d08f78f", + "transactionIndex": "0x1" + }, + { + "address": "0x7a70cb77a12fa2dc3fa1bc1dcbca4c79db71a289", + "blockHash": "0xd3e95f2d87fc6db23d1d0427f14057f6e367e4e5a946af650ca64fb3fbf371b2", + "blockNumber": "0x1b03243a", + "blockTimestamp": "0x69e133b3", + "data": "0x000000000000000000000000141d32a89a1e0a5ef360034a2f60a4b917c188380000000000000000000000004cd00e387622c35bddb9b4c962c136462338bc310000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000034c8a8ec279f0c", + "logIndex": "0x2", + "removed": false, + "topics": [ + "0x831bac9533a2034226daa21109dbd4f887674f0fe4877e1a8b35b3ffe1bdce76" + ], + "transactionHash": "0x303af96afa1a1e9a42299f146147a41722e44a56c1644ec45a87fb939d08f78f", + "transactionIndex": "0x1" + } + ], + "logsBloom": "0x00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000100000000000002000000000000100000000000000000000000000000000000004000000000000000000000000000000000000002000000000800000000000000000000000000000000000000000000000000000000000000000000000000000000000200000000000000000000000000000000000000000004000000000000008000020000000000000040000000000000000000000200000000000000000000000000000000000000000000000000000000000800000000004000400000000", + "status": "0x1", + "timeboosted": false, + "to": "0x23981fc34e69eedfe2bd9a0a9fcb0719fe09dbfc", + "transactionHash": "0x303af96afa1a1e9a42299f146147a41722e44a56c1644ec45a87fb939d08f78f", + "transactionIndex": "0x1", + "type": "0x2" + }, + "type": "bridge", + "userEditedGasLimit": false, + "userFeeLevel": "medium", + "v": "0x0", + "verifiedOnBlockchain": true + }, + { + "blockNumber": "453190714", + "chainId": "0xa4b1", + "hash": "0x303af96afa1a1e9a42299f146147a41722e44a56c1644ec45a87fb939d08f78f", + "id": "aaadfb80-39c7-11f1-a280-3727d90ba13b", + "isTransfer": false, + "networkClientId": "arbitrum-mainnet", + "status": "confirmed", + "time": 1776366515000, + "toSmartContract": false, + "txParams": { + "chainId": "0xa4b1", + "data": "0x3ce33bff", + "from": "0x141d32a89a1e0a5ef360034a2f60a4b917c18838", + "gas": "0x1fea8", + "gasPrice": "0x1315411", + "gasUsed": "0x13c5d", + "nonce": "0x27", + "to": "0x23981fc34e69eedfe2bd9a0a9fcb0719fe09dbfc", + "value": "0x353ff7470f1141" + }, + "type": "contractInteraction", + "verifiedOnBlockchain": false + }, + { + "blockNumber": "24894387", + "chainId": "0x1", + "hash": "0xdc4e0284fdf36a74a858e96d65a0c7ea4af4bcb82b237db1fc7f469482be87b1", + "id": "b8fc1780-39c7-11f1-a2d3-3727d90ba13b", + "isTransfer": false, + "networkClientId": "mainnet", + "status": "confirmed", + "time": 1776366539000, + "toSmartContract": false, + "txParams": { + "chainId": "0x1", + "data": "0x8b7a0b27", + "from": "0xabb2acd3be814a80e502575d6c1dc5f789e9cd10", + "gas": "0x6270", + "gasPrice": "0xf5c5a0e", + "gasUsed": "0x5708", + "nonce": "0x1b3a2", + "to": "0x141d32a89a1e0a5ef360034a2f60a4b917c18838", + "value": "0x34b763f9bfbe8e" + }, + "type": "incoming", + "verifiedOnBlockchain": false + }, + { + "assetsFiatValues": { + "receiving": "23.190860159630196912127314752", + "sending": "23.41717338332" + }, + "baseFeePerGas": "0xe2d1e05", + "batchId": "0xf69c3e0167d64772a3cdcb3e9d6f3514", + "blockTimestamp": "0x69e133ef", + "chainId": "0x1", + "defaultGasEstimates": { + "estimateType": "medium", + "gas": "0x182bc", + "maxFeePerGas": "0x8b3e79bd", + "maxPriorityFeePerGas": "0x77359400" + }, + "disableGasBuffer": true, + "gasFeeEstimates": { + "high": { + "maxFeePerGas": "0x8b3e79bd", + "maxPriorityFeePerGas": "0x77359400" + }, + "low": { + "maxFeePerGas": "0xe0bbcb4", + "maxPriorityFeePerGas": "0x91878" + }, + "medium": { + "maxFeePerGas": "0x8b3e79bd", + "maxPriorityFeePerGas": "0x77359400" + }, + "type": "fee-market" + }, + "gasFeeEstimatesLoaded": true, + "gasLimitNoBuffer": "0x182bc", + "hash": "0x2d98c88d1e57cd29f5648fd8307e5aaed4c8e7a3cb8c7b797e0842a08f450d99", + "id": "c94ce150-39c7-11f1-a325-3727d90ba13b", + "isGasFeeTokenIgnoredIfBalance": false, + "networkClientId": "mainnet", + "origin": "metamask", + "r": "0xe1df264d5f69dd685313115b458df28b7e1d8c81b8c782a34cd61d8a6351ad1c", + "rawTx": "0x02f902f901328477359400848b3e79bd830182bc940439e60f02a8900a951603950d8d4527f400c3f1872386f26fc10000b902853ce33bff00000000000000000000000000000000000000000000000000000000000000800000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000002386f26fc1000000000000000000000000000000000000000000000000000000000000000000c0000000000000000000000000000000000000000000000000000000000000000e72656c617941646170746572563200000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001a00000000000000000000000004cd00e387622c35bddb9b4c962c136462338bc310000000000000000000000004cd00e387622c35bddb9b4c962c136462338bc31000000000000000000000000000000000000000000000000000000000000a4b1000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000023375dc1560800000000000000000000000000000000000000000000000000000000000000014000000000000000000000000000000000000000000000000000004f94ae6af800000000000000000000000000e6b738da243e8fa2a0ed5915645789add5de5152000000000000000000000000000000000000000000000000000000000000004449290c1c000000000000000000000000141d32a89a1e0a5ef360034a2f60a4b917c18838ac362318f901ab1a5572eabdc78c02c20efd2d4004bc5be5840b35b8200abd2e00000000000000000000000000000000000000000000000000000000f9c080a0e1df264d5f69dd685313115b458df28b7e1d8c81b8c782a34cd61d8a6351ad1ca0283a6f2a1bad17ee223da243c5c4f7a4414b8dd7cf6b69cb5ce738f1a1fa0b86", + "s": "0x283a6f2a1bad17ee223da243c5c4f7a4414b8dd7cf6b69cb5ce738f1a1fa0b86", + "status": "confirmed", + "submittedTime": 1776366566640, + "time": 1776366566373, + "txParams": { + "data": "0x3ce33bff00000000000000000000000000000000000000000000000000000000000000800000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000002386f26fc1000000000000000000000000000000000000000000000000000000000000000000c0000000000000000000000000000000000000000000000000000000000000000e72656c617941646170746572563200000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001a00000000000000000000000004cd00e387622c35bddb9b4c962c136462338bc310000000000000000000000004cd00e387622c35bddb9b4c962c136462338bc31000000000000000000000000000000000000000000000000000000000000a4b1000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000023375dc1560800000000000000000000000000000000000000000000000000000000000000014000000000000000000000000000000000000000000000000000004f94ae6af800000000000000000000000000e6b738da243e8fa2a0ed5915645789add5de5152000000000000000000000000000000000000000000000000000000000000004449290c1c000000000000000000000000141d32a89a1e0a5ef360034a2f60a4b917c18838ac362318f901ab1a5572eabdc78c02c20efd2d4004bc5be5840b35b8200abd2e00000000000000000000000000000000000000000000000000000000f9", + "from": "0x141d32a89a1e0a5ef360034a2f60a4b917c18838", + "gas": "0x182bc", + "gasLimit": "0x182bc", + "maxFeePerGas": "0x8b3e79bd", + "maxPriorityFeePerGas": "0x77359400", + "nonce": "0x32", + "to": "0x0439e60f02a8900a951603950d8d4527f400c3f1", + "type": "0x2", + "value": "0x2386f26fc10000" + }, + "txParamsOriginal": { + "data": "0x3ce33bff00000000000000000000000000000000000000000000000000000000000000800000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000002386f26fc1000000000000000000000000000000000000000000000000000000000000000000c0000000000000000000000000000000000000000000000000000000000000000e72656c617941646170746572563200000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001a00000000000000000000000004cd00e387622c35bddb9b4c962c136462338bc310000000000000000000000004cd00e387622c35bddb9b4c962c136462338bc31000000000000000000000000000000000000000000000000000000000000a4b1000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000023375dc1560800000000000000000000000000000000000000000000000000000000000000014000000000000000000000000000000000000000000000000000004f94ae6af800000000000000000000000000e6b738da243e8fa2a0ed5915645789add5de5152000000000000000000000000000000000000000000000000000000000000004449290c1c000000000000000000000000141d32a89a1e0a5ef360034a2f60a4b917c18838ac362318f901ab1a5572eabdc78c02c20efd2d4004bc5be5840b35b8200abd2e00000000000000000000000000000000000000000000000000000000f9", + "from": "0x141d32a89a1e0a5ef360034a2f60a4b917c18838", + "gas": "0x182bc", + "maxFeePerGas": "0x8b3e79bd", + "maxPriorityFeePerGas": "0x77359400", + "to": "0x0439e60f02a8900a951603950d8d4527f400c3f1", + "type": "0x2", + "value": "0x2386f26fc10000" + }, + "txReceipt": { + "blockHash": "0x1ef47eff952377974e7c19ba652e995a297d8acc0ca70dba88fb25962599c300", + "blockNumber": "0x17bdbb6", + "contractAddress": null, + "cumulativeGasUsed": "0x5cd169", + "effectiveGasPrice": "0x8562b205", + "from": "0x141d32a89a1e0a5ef360034a2f60a4b917c18838", + "gasUsed": "0x1495b", + "logs": [ + { + "address": "0xe6b738da243e8fa2a0ed5915645789add5de5152", + "blockHash": "0x1ef47eff952377974e7c19ba652e995a297d8acc0ca70dba88fb25962599c300", + "blockNumber": "0x17bdbb6", + "blockTimestamp": "0x69e133ef", + "data": "0x00000000000000000000000000000000000000000000000000004f94ae6af800", + "logIndex": "0xa6", + "removed": false, + "topics": [ + "0x3d0ce9bfc3ed7d6862dbb28b2dea94561fe714a1b4d019aa8af39730d1ad7c3d", + "0x0000000000000000000000009a47f3289794e9bbc6a3c571f6d96ad4e7baed16" + ], + "transactionHash": "0x2d98c88d1e57cd29f5648fd8307e5aaed4c8e7a3cb8c7b797e0842a08f450d99", + "transactionIndex": "0x57" + }, + { + "address": "0x9a47f3289794e9bbc6a3c571f6d96ad4e7baed16", + "blockHash": "0x1ef47eff952377974e7c19ba652e995a297d8acc0ca70dba88fb25962599c300", + "blockNumber": "0x17bdbb6", + "blockTimestamp": "0x69e133ef", + "data": "0x0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000e6b738da243e8fa2a0ed5915645789add5de515200000000000000000000000000000000000000000000000000004f94ae6af800", + "logIndex": "0xa7", + "removed": false, + "topics": [ + "0x6ded982279c8387ad8a63e73385031a3807c1862e633f06e09d11bcb6e282f60" + ], + "transactionHash": "0x2d98c88d1e57cd29f5648fd8307e5aaed4c8e7a3cb8c7b797e0842a08f450d99", + "transactionIndex": "0x57" + }, + { + "address": "0x4cd00e387622c35bddb9b4c962c136462338bc31", + "blockHash": "0x1ef47eff952377974e7c19ba652e995a297d8acc0ca70dba88fb25962599c300", + "blockNumber": "0x17bdbb6", + "blockTimestamp": "0x69e133ef", + "data": "0x000000000000000000000000141d32a89a1e0a5ef360034a2f60a4b917c188380000000000000000000000000000000000000000000000000023375dc1560800ac362318f901ab1a5572eabdc78c02c20efd2d4004bc5be5840b35b8200abd2e", + "logIndex": "0xa8", + "removed": false, + "topics": [ + "0x8032066556caf3967d8fec4ad22a2d9e1e9576556b2903a0fcd5b1fd201e3477" + ], + "transactionHash": "0x2d98c88d1e57cd29f5648fd8307e5aaed4c8e7a3cb8c7b797e0842a08f450d99", + "transactionIndex": "0x57" + }, + { + "address": "0x9a47f3289794e9bbc6a3c571f6d96ad4e7baed16", + "blockHash": "0x1ef47eff952377974e7c19ba652e995a297d8acc0ca70dba88fb25962599c300", + "blockNumber": "0x17bdbb6", + "blockTimestamp": "0x69e133ef", + "data": "0x000000000000000000000000141d32a89a1e0a5ef360034a2f60a4b917c188380000000000000000000000004cd00e387622c35bddb9b4c962c136462338bc31000000000000000000000000000000000000000000000000000000000000a4b1000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000023375dc1560800", + "logIndex": "0xa9", + "removed": false, + "topics": [ + "0x831bac9533a2034226daa21109dbd4f887674f0fe4877e1a8b35b3ffe1bdce76" + ], + "transactionHash": "0x2d98c88d1e57cd29f5648fd8307e5aaed4c8e7a3cb8c7b797e0842a08f450d99", + "transactionIndex": "0x57" + } + ], + "logsBloom": "0x00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000040400000000000000000000000000000000100000000000002000000000000100000000000000000000000000000000000004000000000000000000000000002001000000002000000000800000000000000000000000000000000000000000000000000000000000000000000000000000000000200000000000000040000000000000400000000000004000000400000008000020000000000000040000000000000000000000002000800000000220000000000000000000000000800000000000000000000000000000000400000000", + "status": "0x1", + "to": "0x0439e60f02a8900a951603950d8d4527f400c3f1", + "transactionHash": "0x2d98c88d1e57cd29f5648fd8307e5aaed4c8e7a3cb8c7b797e0842a08f450d99", + "transactionIndex": "0x57", + "type": "0x2" + }, + "type": "bridge", + "userEditedGasLimit": false, + "userFeeLevel": "medium", + "v": "0x0", + "verifiedOnBlockchain": true + }, + { + "blockNumber": "24894390", + "chainId": "0x1", + "hash": "0x2d98c88d1e57cd29f5648fd8307e5aaed4c8e7a3cb8c7b797e0842a08f450d99", + "id": "ce714180-39c7-11f1-a325-3727d90ba13b", + "isTransfer": false, + "networkClientId": "mainnet", + "status": "confirmed", + "time": 1776366575000, + "toSmartContract": false, + "txParams": { + "chainId": "0x1", + "data": "0x3ce33bff", + "from": "0x141d32a89a1e0a5ef360034a2f60a4b917c18838", + "gas": "0x182bc", + "gasPrice": "0x8562b205", + "gasUsed": "0x1495b", + "nonce": "0x32", + "to": "0x0439e60f02a8900a951603950d8d4527f400c3f1", + "value": "0x2386f26fc10000" + }, + "type": "contractInteraction", + "verifiedOnBlockchain": false + }, + { + "blockNumber": "453190971", + "chainId": "0xa4b1", + "hash": "0xa69989b05125e09d738dc946845fae490140337378a139a3cb8aed99bd76d36d", + "id": "d0d39b80-39c7-11f1-a3ca-3727d90ba13b", + "isTransfer": false, + "networkClientId": "arbitrum-mainnet", + "status": "confirmed", + "time": 1776366579000, + "toSmartContract": false, + "txParams": { + "chainId": "0xa4b1", + "data": "0xac362318", + "from": "0xf70da97812cb96acdf810712aa562db8dfa3dbef", + "gas": "0xaf82", + "gasPrice": "0x132dab0", + "gasUsed": "0x5817", + "nonce": "0x913903", + "to": "0x141d32a89a1e0a5ef360034a2f60a4b917c18838", + "value": "0x232f0cb9000bb0" + }, + "type": "incoming", + "verifiedOnBlockchain": false + }, + { + "actionId": "1776373338457.2598", + "baseFeePerGas": "0x1329460", + "blockTimestamp": "0x69e14e5b", + "chainId": "0xa4b1", + "defaultGasEstimates": { + "estimateType": "medium", + "gas": "0x1f2fc", + "maxFeePerGas": "0x159479b", + "maxPriorityFeePerGas": "0x1" + }, + "gasFeeEstimates": { + "high": { + "maxFeePerGas": "0x206cc80", + "maxPriorityFeePerGas": "0x0" + }, + "low": { + "maxFeePerGas": "0x1312d00", + "maxPriorityFeePerGas": "0x0" + }, + "medium": { + "maxFeePerGas": "0x19bfcc0", + "maxPriorityFeePerGas": "0x0" + }, + "type": "fee-market" + }, + "gasFeeEstimatesLoaded": true, + "gasLimitNoBuffer": "0x1f2fc", + "hash": "0xa3e05b352b25c37b607c8d6200bfad67e030cc1f1cccfbde23eca29fd25ef0f6", + "id": "8dc780d0-39d7-11f1-b3fb-3727d90ba13b", + "isGasFeeTokenIgnoredIfBalance": false, + "networkClientId": "arbitrum-mainnet", + "origin": "metamask", + "r": "0x84af2760cc86a3ce1f00c5784561cb1c518496d3cf79b931224c7287dcb179c", + "rawTx": "0x02f902f782a4b12801840159479b8301f2fc9423981fc34e69eedfe2bd9a0a9fcb0719fe09dbfc87232d9f0de6e60cb902853ce33bff0000000000000000000000000000000000000000000000000000000000000080000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000232d9f0de6e60c00000000000000000000000000000000000000000000000000000000000000c0000000000000000000000000000000000000000000000000000000000000000e72656c617941646170746572563200000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001a00000000000000000000000004cd00e387622c35bddb9b4c962c136462338bc310000000000000000000000004cd00e387622c35bddb9b4c962c136462338bc310000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000022decbd02a13e5000000000000000000000000000000000000000000000000000000000000014000000000000000000000000000000000000000000000000000004ed33dbcd227000000000000000000000000e3478b0bb1a5084567c319096437924948be1964000000000000000000000000000000000000000000000000000000000000004449290c1c000000000000000000000000141d32a89a1e0a5ef360034a2f60a4b917c188386787355ce639dea1fc3b63506d59cdc0cd151a13cc190e9f6ee8aac4a7a1063c0000000000000000000000000000000000000000000000000000000016c080a0084af2760cc86a3ce1f00c5784561cb1c518496d3cf79b931224c7287dcb179ca04c96c774af11d36c61f7feb03d3339ba043fd69ea2e3ebbc9f8b46c2a3dfc6f2", + "s": "0x4c96c774af11d36c61f7feb03d3339ba043fd69ea2e3ebbc9f8b46c2a3dfc6f2", + "status": "confirmed", + "submittedTime": 1776373339054, + "time": 1776373338461, + "txParams": { + "data": "0x3ce33bff0000000000000000000000000000000000000000000000000000000000000080000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000232d9f0de6e60c00000000000000000000000000000000000000000000000000000000000000c0000000000000000000000000000000000000000000000000000000000000000e72656c617941646170746572563200000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001a00000000000000000000000004cd00e387622c35bddb9b4c962c136462338bc310000000000000000000000004cd00e387622c35bddb9b4c962c136462338bc310000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000022decbd02a13e5000000000000000000000000000000000000000000000000000000000000014000000000000000000000000000000000000000000000000000004ed33dbcd227000000000000000000000000e3478b0bb1a5084567c319096437924948be1964000000000000000000000000000000000000000000000000000000000000004449290c1c000000000000000000000000141d32a89a1e0a5ef360034a2f60a4b917c188386787355ce639dea1fc3b63506d59cdc0cd151a13cc190e9f6ee8aac4a7a1063c0000000000000000000000000000000000000000000000000000000016", + "from": "0x141d32a89a1e0a5ef360034a2f60a4b917c18838", + "gas": "0x1f2fc", + "gasLimit": "0x1f2fc", + "maxFeePerGas": "0x159479b", + "maxPriorityFeePerGas": "0x1", + "nonce": "0x28", + "to": "0x23981fc34e69eedfe2bd9a0a9fcb0719fe09dbfc", + "type": "0x2", + "value": "0x232d9f0de6e60c" + }, + "txParamsOriginal": { + "data": "0x3ce33bff0000000000000000000000000000000000000000000000000000000000000080000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000232d9f0de6e60c00000000000000000000000000000000000000000000000000000000000000c0000000000000000000000000000000000000000000000000000000000000000e72656c617941646170746572563200000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001a00000000000000000000000004cd00e387622c35bddb9b4c962c136462338bc310000000000000000000000004cd00e387622c35bddb9b4c962c136462338bc310000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000022decbd02a13e5000000000000000000000000000000000000000000000000000000000000014000000000000000000000000000000000000000000000000000004ed33dbcd227000000000000000000000000e3478b0bb1a5084567c319096437924948be1964000000000000000000000000000000000000000000000000000000000000004449290c1c000000000000000000000000141d32a89a1e0a5ef360034a2f60a4b917c188386787355ce639dea1fc3b63506d59cdc0cd151a13cc190e9f6ee8aac4a7a1063c0000000000000000000000000000000000000000000000000000000016", + "from": "0x141d32a89a1e0a5ef360034a2f60a4b917c18838", + "gas": "0x1f2fc", + "gasLimit": "0x127740", + "maxFeePerGas": "0x159479b", + "maxPriorityFeePerGas": "0x1", + "to": "0x23981fc34e69eedfe2bd9a0a9fcb0719fe09dbfc", + "type": "0x2", + "value": "0x232d9f0de6e60c" + }, + "txReceipt": { + "blockHash": "0x12a687c57295e0eeb2cce4aa48394d618f47b2285fdce00ddbdce12fa18beb23", + "blockNumber": "0x1b038e52", + "contractAddress": null, + "cumulativeGasUsed": "0x4b538", + "effectiveGasPrice": "0x1329460", + "from": "0x141d32a89a1e0a5ef360034a2f60a4b917c18838", + "gasUsed": "0x135d6", + "gasUsedForL1": "0x510", + "l1BlockNumber": "0x17bdde8", + "logs": [ + { + "address": "0x7a70cb77a12fa2dc3fa1bc1dcbca4c79db71a289", + "blockHash": "0x12a687c57295e0eeb2cce4aa48394d618f47b2285fdce00ddbdce12fa18beb23", + "blockNumber": "0x1b038e52", + "blockTimestamp": "0x69e14e5b", + "data": "0x0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000e3478b0bb1a5084567c319096437924948be196400000000000000000000000000000000000000000000000000004ed33dbcd227", + "logIndex": "0x7", + "removed": false, + "topics": [ + "0x6ded982279c8387ad8a63e73385031a3807c1862e633f06e09d11bcb6e282f60" + ], + "transactionHash": "0xa3e05b352b25c37b607c8d6200bfad67e030cc1f1cccfbde23eca29fd25ef0f6", + "transactionIndex": "0x3" + }, + { + "address": "0x4cd00e387622c35bddb9b4c962c136462338bc31", + "blockHash": "0x12a687c57295e0eeb2cce4aa48394d618f47b2285fdce00ddbdce12fa18beb23", + "blockNumber": "0x1b038e52", + "blockTimestamp": "0x69e14e5b", + "data": "0x000000000000000000000000141d32a89a1e0a5ef360034a2f60a4b917c188380000000000000000000000000000000000000000000000000022decbd02a13e56787355ce639dea1fc3b63506d59cdc0cd151a13cc190e9f6ee8aac4a7a1063c", + "logIndex": "0x8", + "removed": false, + "topics": [ + "0x8032066556caf3967d8fec4ad22a2d9e1e9576556b2903a0fcd5b1fd201e3477" + ], + "transactionHash": "0xa3e05b352b25c37b607c8d6200bfad67e030cc1f1cccfbde23eca29fd25ef0f6", + "transactionIndex": "0x3" + }, + { + "address": "0x7a70cb77a12fa2dc3fa1bc1dcbca4c79db71a289", + "blockHash": "0x12a687c57295e0eeb2cce4aa48394d618f47b2285fdce00ddbdce12fa18beb23", + "blockNumber": "0x1b038e52", + "blockTimestamp": "0x69e14e5b", + "data": "0x000000000000000000000000141d32a89a1e0a5ef360034a2f60a4b917c188380000000000000000000000004cd00e387622c35bddb9b4c962c136462338bc310000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000022decbd02a13e5", + "logIndex": "0x9", + "removed": false, + "topics": [ + "0x831bac9533a2034226daa21109dbd4f887674f0fe4877e1a8b35b3ffe1bdce76" + ], + "transactionHash": "0xa3e05b352b25c37b607c8d6200bfad67e030cc1f1cccfbde23eca29fd25ef0f6", + "transactionIndex": "0x3" + } + ], + "logsBloom": "0x00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000100000000000002000000000000100000000000000000000000000000000000004000000000000000000000000000000000000002000000000800000000000000000000000000000000000000000000000000000000000000000000000000000000000200000000000000000000000000000000000000000004000000000000008000020000000000000040000000000000000000000200000000000000000000000000000000000000000000000000000000000800000000004000400000000", + "status": "0x1", + "timeboosted": false, + "to": "0x23981fc34e69eedfe2bd9a0a9fcb0719fe09dbfc", + "transactionHash": "0xa3e05b352b25c37b607c8d6200bfad67e030cc1f1cccfbde23eca29fd25ef0f6", + "transactionIndex": "0x3", + "type": "0x2" + }, + "type": "bridge", + "userEditedGasLimit": false, + "userFeeLevel": "medium", + "v": "0x0", + "verifiedOnBlockchain": true + }, + { + "blockNumber": "453217874", + "chainId": "0xa4b1", + "hash": "0xa3e05b352b25c37b607c8d6200bfad67e030cc1f1cccfbde23eca29fd25ef0f6", + "id": "8e19bf80-39d7-11f1-b3fb-3727d90ba13b", + "isTransfer": false, + "networkClientId": "arbitrum-mainnet", + "status": "confirmed", + "time": 1776373339000, + "toSmartContract": false, + "txParams": { + "chainId": "0xa4b1", + "data": "0x3ce33bff", + "from": "0x141d32a89a1e0a5ef360034a2f60a4b917c18838", + "gas": "0x1f2fc", + "gasPrice": "0x1329461", + "gasUsed": "0x135d6", + "nonce": "0x28", + "to": "0x23981fc34e69eedfe2bd9a0a9fcb0719fe09dbfc", + "value": "0x232d9f0de6e60c" + }, + "type": "contractInteraction", + "verifiedOnBlockchain": false + }, + { + "blockNumber": "24894954", + "chainId": "0x1", + "hash": "0xdaf4a004470fe35e64ab5e59eebf80a2c30b33521043211978765153b4307a89", + "id": "907c1980-39d7-11f1-b44e-3727d90ba13b", + "isTransfer": false, + "networkClientId": "mainnet", + "status": "confirmed", + "time": 1776373343000, + "toSmartContract": false, + "txParams": { + "chainId": "0x1", + "data": "0x6787355c", + "from": "0xabb2acd3be814a80e502575d6c1dc5f789e9cd10", + "gas": "0x6270", + "gasPrice": "0xbbc9bce", + "gasUsed": "0x5708", + "nonce": "0x1b414", + "to": "0x141d32a89a1e0a5ef360034a2f60a4b917c18838", + "value": "0x22d070cb28fbc9" + }, + "type": "incoming", + "verifiedOnBlockchain": false + }, + { + "actionId": 1776374972700.9622, + "baseFeePerGas": "0x131e0b0", + "blockTimestamp": "0x69e154bf", + "chainId": "0xa4b1", + "customNonceValue": "", + "defaultGasEstimates": { + "estimateType": "medium", + "gas": "0xdaca", + "maxFeePerGas": "0x19c1c64", + "maxPriorityFeePerGas": "0x0" + }, + "gasFeeEstimates": { + "high": { + "maxFeePerGas": "0x206f458", + "maxPriorityFeePerGas": "0x0" + }, + "low": { + "maxFeePerGas": "0x1314470", + "maxPriorityFeePerGas": "0x0" + }, + "medium": { + "maxFeePerGas": "0x19c1c64", + "maxPriorityFeePerGas": "0x0" + }, + "type": "fee-market" + }, + "gasFeeEstimatesLoaded": true, + "gasFeeTokens": [], + "gasLimitNoBuffer": "0xb653", + "gasUsed": "0xb4eb", + "hash": "0x6be89108da0ad03063ffa6379f1f718baa52e95147f304f1da51d266ca3f1490", + "id": "5bdcbcd0-39db-11f1-bbe3-3727d90ba13b", + "isActive": false, + "isFirstTimeInteraction": true, + "isGasFeeSponsored": false, + "isGasFeeTokenIgnoredIfBalance": false, + "networkClientId": "arbitrum-mainnet", + "origin": "metamask", + "originalGasEstimate": "0xdaca", + "r": "0x6ba4bc4f70f4e203a0096e0a094c41151c938437aec4c8b05db723539e0b424d", + "rawTx": "0x04f8c882a4b1298084019c1c6482daca94141d32a89a1e0a5ef360034a2f60a4b917c188388080c0f85ef85c82a4b19463c0c19a282a1b52b07dd5a65b58948a07dae32b2a01a070e1d5ebfa0f9a458d4d2c59f420073b1ab5c519f2ecfd53aac1103e370ffaf1a06f284dbbe07f23c7aefdc5f945e25158fec575c9311e79bc1ec8665fb53e58ed01a06ba4bc4f70f4e203a0096e0a094c41151c938437aec4c8b05db723539e0b424da0777923e24fab5372246edadb9437064430050073259739f4dd0317e139ba7d9d", + "s": "0x777923e24fab5372246edadb9437064430050073259739f4dd0317e139ba7d9d", + "simulationData": { + "callTraceErrors": [], + "tokenBalanceChanges": [] + }, + "status": "confirmed", + "submittedTime": 1776374975806, + "time": 1776374972701, + "txParams": { + "authorizationList": [ + { + "address": "0x63c0c19a282a1B52b07dD5a65b58948A07DAE32B", + "chainId": "0xa4b1", + "nonce": "0x2a", + "r": "0x70e1d5ebfa0f9a458d4d2c59f420073b1ab5c519f2ecfd53aac1103e370ffaf1", + "s": "0x6f284dbbe07f23c7aefdc5f945e25158fec575c9311e79bc1ec8665fb53e58ed", + "yParity": "0x1" + } + ], + "from": "0x141d32a89a1e0a5ef360034a2f60a4b917c18838", + "gas": "0xdaca", + "gasLimit": "0xdaca", + "maxFeePerGas": "0x19c1c64", + "maxPriorityFeePerGas": "0x0", + "nonce": "0x29", + "to": "0x141d32a89a1e0a5ef360034a2f60a4b917c18838", + "type": "0x4", + "value": "0x0" + }, + "txParamsOriginal": { + "authorizationList": [ + { + "address": "0x63c0c19a282a1B52b07dD5a65b58948A07DAE32B" + } + ], + "from": "0x141d32a89a1e0a5ef360034a2f60a4b917c18838", + "to": "0x141d32a89a1e0a5ef360034a2f60a4b917c18838", + "type": "0x4", + "value": "0x0" + }, + "txReceipt": { + "blockHash": "0xdfcc3c810e6599ea7b110fe61c24025faf3c95a4eb9b5d5024bbca5161204c3f", + "blockNumber": "0x1b03a7cb", + "contractAddress": null, + "cumulativeGasUsed": "0x1287c", + "effectiveGasPrice": "0x131e0b0", + "from": "0x141d32a89a1e0a5ef360034a2f60a4b917c18838", + "gasUsed": "0x916b", + "gasUsedForL1": "0x17f", + "l1BlockNumber": "0x17bde71", + "logs": [], + "logsBloom": "0x00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", + "status": "0x1", + "timeboosted": false, + "to": "0x141d32a89a1e0a5ef360034a2f60a4b917c18838", + "transactionHash": "0x6be89108da0ad03063ffa6379f1f718baa52e95147f304f1da51d266ca3f1490", + "transactionIndex": "0x2", + "type": "0x4" + }, + "type": "batch", + "userEditedGasLimit": false, + "userFeeLevel": "medium", + "v": "0x1", + "verifiedOnBlockchain": true + }, + { + "blockNumber": "453224395", + "chainId": "0xa4b1", + "hash": "0x6be89108da0ad03063ffa6379f1f718baa52e95147f304f1da51d266ca3f1490", + "id": "5d3b8980-39db-11f1-bbe8-3727d90ba13b", + "isTransfer": false, + "networkClientId": "arbitrum-mainnet", + "status": "confirmed", + "time": 1776374975000, + "toSmartContract": false, + "txParams": { + "chainId": "0xa4b1", + "data": null, + "from": "0x141d32a89a1e0a5ef360034a2f60a4b917c18838", + "gas": "0xdaca", + "gasPrice": "0x131e0b0", + "gasUsed": "0x916b", + "nonce": "0x29", + "to": "0x141d32a89a1e0a5ef360034a2f60a4b917c18838", + "value": "0x0" + }, + "type": "simpleSend", + "verifiedOnBlockchain": false + }, + { + "actionId": 1776374995066.6648, + "baseFeePerGas": "0x6961bf7", + "blockTimestamp": "0x69e154ef", + "chainId": "0x1", + "customNonceValue": "", + "defaultGasEstimates": { + "estimateType": "medium", + "gas": "0x10fc5", + "maxFeePerGas": "0x832fbdc3", + "maxPriorityFeePerGas": "0x77359400" + }, + "gasFeeEstimates": { + "high": { + "maxFeePerGas": "0x832fbdc3", + "maxPriorityFeePerGas": "0x77359400" + }, + "low": { + "maxFeePerGas": "0x86f6dc6", + "maxPriorityFeePerGas": "0xf4240" + }, + "medium": { + "maxFeePerGas": "0x832fbdc3", + "maxPriorityFeePerGas": "0x77359400" + }, + "type": "fee-market" + }, + "gasFeeEstimatesLoaded": true, + "gasFeeTokens": [ + { + "amount": "0x14965db0e0fccf05", + "balance": "0x8ac7230489e80000", + "decimals": 18, + "fee": "0x556642460418b49", + "gas": "0xb565", + "maxFeePerGas": "0x8a9600ba", + "maxPriorityFeePerGas": "0x7d2b7504", + "rateWei": "0x184bc606bf127", + "recipient": "0xe3478b0bb1a5084567c319096437924948be1964", + "symbol": "DAI", + "tokenAddress": "0x6b175474e89094c44da98b954eedeac495271d0f" + } + ], + "gasLimitNoBuffer": "0xb52e", + "gasUsed": "0xb3e7", + "hash": "0xf64f465a4b4639b9ae2ad7cb53088b42ce1c1c797666a6824f4ec80e6c8d4cd0", + "id": "693184b0-39db-11f1-bbe4-3727d90ba13b", + "isActive": false, + "isFirstTimeInteraction": false, + "isGasFeeSponsored": false, + "isGasFeeTokenIgnoredIfBalance": false, + "networkClientId": "mainnet", + "origin": "metamask", + "originalGasEstimate": "0x10fc5", + "r": "0x3a6fb7be79952478d100ba63191f0899cef61187dce5c00e39d9b05f898a6396", + "rawTx": "0x04f8c90133847735940084832fbdc383010fc594141d32a89a1e0a5ef360034a2f60a4b917c188388080c0f85cf85a019463c0c19a282a1b52b07dd5a65b58948a07dae32b3480a0fb0bc6e688b0e01810b6e373313696a3e12ac017278b94c892e51caec6628fcca00d4c5cb41d97686c7b5a42d2c19ea5acf20b6e55d7a6623d63f4a6d34756ed8a01a03a6fb7be79952478d100ba63191f0899cef61187dce5c00e39d9b05f898a6396a011e1e3f37e0f119bf23071936bf4be330fec944c4f5e22a9cd71c297179bad00", + "s": "0x11e1e3f37e0f119bf23071936bf4be330fec944c4f5e22a9cd71c297179bad00", + "simulationData": { + "callTraceErrors": [], + "tokenBalanceChanges": [] + }, + "status": "confirmed", + "submittedTime": 1776374997545, + "time": 1776374995067, + "txParams": { + "authorizationList": [ + { + "address": "0x63c0c19a282a1B52b07dD5a65b58948A07DAE32B", + "chainId": "0x1", + "nonce": "0x34", + "r": "0xfb0bc6e688b0e01810b6e373313696a3e12ac017278b94c892e51caec6628fcc", + "s": "0x0d4c5cb41d97686c7b5a42d2c19ea5acf20b6e55d7a6623d63f4a6d34756ed8a", + "yParity": "0x0" + } + ], + "from": "0x141d32a89a1e0a5ef360034a2f60a4b917c18838", + "gas": "0x10fc5", + "gasLimit": "0x10fc5", + "maxFeePerGas": "0x832fbdc3", + "maxPriorityFeePerGas": "0x77359400", + "nonce": "0x33", + "to": "0x141d32a89a1e0a5ef360034a2f60a4b917c18838", + "type": "0x4", + "value": "0x0" + }, + "txParamsOriginal": { + "authorizationList": [ + { + "address": "0x63c0c19a282a1B52b07dD5a65b58948A07DAE32B" + } + ], + "from": "0x141d32a89a1e0a5ef360034a2f60a4b917c18838", + "to": "0x141d32a89a1e0a5ef360034a2f60a4b917c18838", + "type": "0x4", + "value": "0x0" + }, + "txReceipt": { + "blockHash": "0x00128c3383e311a7203cb4931304b7b630fe3f307febd611afde0fd4a16900e3", + "blockNumber": "0x17bde76", + "contractAddress": null, + "cumulativeGasUsed": "0x8669d4", + "effectiveGasPrice": "0x7dcbaff7", + "from": "0x141d32a89a1e0a5ef360034a2f60a4b917c18838", + "gasUsed": "0x8fec", + "logs": [], + "logsBloom": "0x00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", + "status": "0x1", + "to": "0x141d32a89a1e0a5ef360034a2f60a4b917c18838", + "transactionHash": "0xf64f465a4b4639b9ae2ad7cb53088b42ce1c1c797666a6824f4ec80e6c8d4cd0", + "transactionIndex": "0x49", + "type": "0x4" + }, + "type": "batch", + "userEditedGasLimit": false, + "userFeeLevel": "medium", + "v": "0x1", + "verifiedOnBlockchain": true + }, + { + "blockNumber": "24895094", + "chainId": "0x1", + "hash": "0xf64f465a4b4639b9ae2ad7cb53088b42ce1c1c797666a6824f4ec80e6c8d4cd0", + "id": "79d7c180-39db-11f1-bbe7-3727d90ba13b", + "isTransfer": false, + "networkClientId": "mainnet", + "status": "confirmed", + "time": 1776375023000, + "toSmartContract": false, + "txParams": { + "chainId": "0x1", + "data": null, + "from": "0x141d32a89a1e0a5ef360034a2f60a4b917c18838", + "gas": "0x10fc5", + "gasPrice": "0x7dcbaff7", + "gasUsed": "0x8fec", + "nonce": "0x33", + "to": "0x141d32a89a1e0a5ef360034a2f60a4b917c18838", + "value": "0x0" + }, + "type": "simpleSend", + "verifiedOnBlockchain": false + }, + { + "assetsFiatValues": { + "receiving": "32.933861945091401367338221656", + "sending": "33.764377335151183940035251708" + }, + "baseFeePerGas": "0x6e12d09", + "batchId": "0x9326029b55e54103ba3d30692852c37c", + "blockTimestamp": "0x69e15507", + "chainId": "0x1", + "defaultGasEstimates": { + "estimateType": "medium", + "gas": "0x182f0", + "maxFeePerGas": "0x840cc0ae", + "maxPriorityFeePerGas": "0x7d2b7501" + }, + "delegationAddress": "0x63c0c19a282a1b52b07dd5a65b58948a07dae32b", + "disableGasBuffer": true, + "gasFeeEstimates": { + "high": { + "maxFeePerGas": "0x7ff4616c", + "maxPriorityFeePerGas": "0x77359400" + }, + "low": { + "maxFeePerGas": "0x632e4bd", + "maxPriorityFeePerGas": "0x154c23" + }, + "medium": { + "maxFeePerGas": "0x7ff4616c", + "maxPriorityFeePerGas": "0x77359400" + }, + "type": "fee-market" + }, + "gasFeeEstimatesLoaded": true, + "gasLimitNoBuffer": "0x182f0", + "hash": "0xca8213d009d229e05f39dcd4400c0cbcfa8223c0749ed2d32b359eb0540a2ef3", + "id": "87097100-39db-11f1-bbe5-3727d90ba13b", + "isGasFeeTokenIgnoredIfBalance": false, + "networkClientId": "mainnet", + "origin": "metamask", + "r": "0x6368063fee71fabff59c208b54692159d12c47a5a6fa62f0c5aacf3c783c432f", + "rawTx": "0x02f902f90135847d2b750184840cc0ae830182f0940439e60f02a8900a951603950d8d4527f400c3f1873275f98a9082cfb902853ce33bff00000000000000000000000000000000000000000000000000000000000000800000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000003275f98a9082cf00000000000000000000000000000000000000000000000000000000000000c0000000000000000000000000000000000000000000000000000000000000000e72656c617941646170746572563200000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001a00000000000000000000000004cd00e387622c35bddb9b4c962c136462338bc310000000000000000000000004cd00e387622c35bddb9b4c962c136462338bc31000000000000000000000000000000000000000000000000000000000000a4b100000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000003203323223ca870000000000000000000000000000000000000000000000000000000000000140000000000000000000000000000000000000000000000000000072c7586cb848000000000000000000000000e6b738da243e8fa2a0ed5915645789add5de5152000000000000000000000000000000000000000000000000000000000000004449290c1c000000000000000000000000141d32a89a1e0a5ef360034a2f60a4b917c188381035d4e4d6bbeee624d6720ec2f36cee54c7b1f5a981f67c94dc2be864c9a490000000000000000000000000000000000000000000000000000000004ec080a06368063fee71fabff59c208b54692159d12c47a5a6fa62f0c5aacf3c783c432fa04a41744290dc6f9587a31036eda090e3f1fcea9bfc8021a857348f756a4f55ce", + "s": "0x4a41744290dc6f9587a31036eda090e3f1fcea9bfc8021a857348f756a4f55ce", + "status": "confirmed", + "submittedTime": 1776375051944, + "time": 1776375045136, + "txParams": { + "data": "0x3ce33bff00000000000000000000000000000000000000000000000000000000000000800000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000003275f98a9082cf00000000000000000000000000000000000000000000000000000000000000c0000000000000000000000000000000000000000000000000000000000000000e72656c617941646170746572563200000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001a00000000000000000000000004cd00e387622c35bddb9b4c962c136462338bc310000000000000000000000004cd00e387622c35bddb9b4c962c136462338bc31000000000000000000000000000000000000000000000000000000000000a4b100000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000003203323223ca870000000000000000000000000000000000000000000000000000000000000140000000000000000000000000000000000000000000000000000072c7586cb848000000000000000000000000e6b738da243e8fa2a0ed5915645789add5de5152000000000000000000000000000000000000000000000000000000000000004449290c1c000000000000000000000000141d32a89a1e0a5ef360034a2f60a4b917c188381035d4e4d6bbeee624d6720ec2f36cee54c7b1f5a981f67c94dc2be864c9a490000000000000000000000000000000000000000000000000000000004e", + "from": "0x141d32a89a1e0a5ef360034a2f60a4b917c18838", + "gas": "0x182f0", + "gasLimit": "0x182f0", + "maxFeePerGas": "0x840cc0ae", + "maxPriorityFeePerGas": "0x7d2b7501", + "nonce": "0x35", + "to": "0x0439e60f02a8900a951603950d8d4527f400c3f1", + "type": "0x2", + "value": "0x3275f98a9082cf" + }, + "txParamsOriginal": { + "data": "0x3ce33bff00000000000000000000000000000000000000000000000000000000000000800000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000003275f98a9082cf00000000000000000000000000000000000000000000000000000000000000c0000000000000000000000000000000000000000000000000000000000000000e72656c617941646170746572563200000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001a00000000000000000000000004cd00e387622c35bddb9b4c962c136462338bc310000000000000000000000004cd00e387622c35bddb9b4c962c136462338bc31000000000000000000000000000000000000000000000000000000000000a4b100000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000003203323223ca870000000000000000000000000000000000000000000000000000000000000140000000000000000000000000000000000000000000000000000072c7586cb848000000000000000000000000e6b738da243e8fa2a0ed5915645789add5de5152000000000000000000000000000000000000000000000000000000000000004449290c1c000000000000000000000000141d32a89a1e0a5ef360034a2f60a4b917c188381035d4e4d6bbeee624d6720ec2f36cee54c7b1f5a981f67c94dc2be864c9a490000000000000000000000000000000000000000000000000000000004e", + "from": "0x141d32a89a1e0a5ef360034a2f60a4b917c18838", + "gas": "0x182f0", + "maxFeePerGas": "0x840cc0ae", + "maxPriorityFeePerGas": "0x7d2b7501", + "to": "0x0439e60f02a8900a951603950d8d4527f400c3f1", + "type": "0x2", + "value": "0x3275f98a9082cf" + }, + "txReceipt": { + "blockHash": "0xbd016259598c7357b89bd4f5d50fcbacecce24c9f49ddc7faf608dd29a551664", + "blockNumber": "0x17bde78", + "contractAddress": null, + "cumulativeGasUsed": "0x8e9360", + "effectiveGasPrice": "0x840ca20a", + "from": "0x141d32a89a1e0a5ef360034a2f60a4b917c18838", + "gasUsed": "0x1498b", + "logs": [ + { + "address": "0xe6b738da243e8fa2a0ed5915645789add5de5152", + "blockHash": "0xbd016259598c7357b89bd4f5d50fcbacecce24c9f49ddc7faf608dd29a551664", + "blockNumber": "0x17bde78", + "blockTimestamp": "0x69e15507", + "data": "0x000000000000000000000000000000000000000000000000000072c7586cb848", + "logIndex": "0xd7", + "removed": false, + "topics": [ + "0x3d0ce9bfc3ed7d6862dbb28b2dea94561fe714a1b4d019aa8af39730d1ad7c3d", + "0x0000000000000000000000009a47f3289794e9bbc6a3c571f6d96ad4e7baed16" + ], + "transactionHash": "0xca8213d009d229e05f39dcd4400c0cbcfa8223c0749ed2d32b359eb0540a2ef3", + "transactionIndex": "0x6a" + }, + { + "address": "0x9a47f3289794e9bbc6a3c571f6d96ad4e7baed16", + "blockHash": "0xbd016259598c7357b89bd4f5d50fcbacecce24c9f49ddc7faf608dd29a551664", + "blockNumber": "0x17bde78", + "blockTimestamp": "0x69e15507", + "data": "0x0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000e6b738da243e8fa2a0ed5915645789add5de5152000000000000000000000000000000000000000000000000000072c7586cb848", + "logIndex": "0xd8", + "removed": false, + "topics": [ + "0x6ded982279c8387ad8a63e73385031a3807c1862e633f06e09d11bcb6e282f60" + ], + "transactionHash": "0xca8213d009d229e05f39dcd4400c0cbcfa8223c0749ed2d32b359eb0540a2ef3", + "transactionIndex": "0x6a" + }, + { + "address": "0x4cd00e387622c35bddb9b4c962c136462338bc31", + "blockHash": "0xbd016259598c7357b89bd4f5d50fcbacecce24c9f49ddc7faf608dd29a551664", + "blockNumber": "0x17bde78", + "blockTimestamp": "0x69e15507", + "data": "0x000000000000000000000000141d32a89a1e0a5ef360034a2f60a4b917c18838000000000000000000000000000000000000000000000000003203323223ca871035d4e4d6bbeee624d6720ec2f36cee54c7b1f5a981f67c94dc2be864c9a490", + "logIndex": "0xd9", + "removed": false, + "topics": [ + "0x8032066556caf3967d8fec4ad22a2d9e1e9576556b2903a0fcd5b1fd201e3477" + ], + "transactionHash": "0xca8213d009d229e05f39dcd4400c0cbcfa8223c0749ed2d32b359eb0540a2ef3", + "transactionIndex": "0x6a" + }, + { + "address": "0x9a47f3289794e9bbc6a3c571f6d96ad4e7baed16", + "blockHash": "0xbd016259598c7357b89bd4f5d50fcbacecce24c9f49ddc7faf608dd29a551664", + "blockNumber": "0x17bde78", + "blockTimestamp": "0x69e15507", + "data": "0x000000000000000000000000141d32a89a1e0a5ef360034a2f60a4b917c188380000000000000000000000004cd00e387622c35bddb9b4c962c136462338bc31000000000000000000000000000000000000000000000000000000000000a4b100000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000003203323223ca87", + "logIndex": "0xda", + "removed": false, + "topics": [ + "0x831bac9533a2034226daa21109dbd4f887674f0fe4877e1a8b35b3ffe1bdce76" + ], + "transactionHash": "0xca8213d009d229e05f39dcd4400c0cbcfa8223c0749ed2d32b359eb0540a2ef3", + "transactionIndex": "0x6a" + } + ], + "logsBloom": "0x00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000040400000000000000000000000000000000100000000000002000000000000100000000000000000000000000000000000004000000000000000000000000002001000000002000000000800000000000000000000000000000000000000000000000000000000000000000000000000000000000200000000000000040000000000000400000000000004000000400000008000020000000000000040000000000000000000000002000800000000220000000000000000000000000800000000000000000000000000000000400000000", + "status": "0x1", + "to": "0x0439e60f02a8900a951603950d8d4527f400c3f1", + "transactionHash": "0xca8213d009d229e05f39dcd4400c0cbcfa8223c0749ed2d32b359eb0540a2ef3", + "transactionIndex": "0x6a", + "type": "0x2" + }, + "type": "bridge", + "userEditedGasLimit": false, + "userFeeLevel": "medium", + "v": "0x0", + "verifiedOnBlockchain": true + }, + { + "blockNumber": "24895096", + "chainId": "0x1", + "hash": "0xca8213d009d229e05f39dcd4400c0cbcfa8223c0749ed2d32b359eb0540a2ef3", + "id": "8825dd80-39db-11f1-bbe6-3727d90ba13b", + "isTransfer": false, + "networkClientId": "mainnet", + "status": "confirmed", + "time": 1776375047000, + "toSmartContract": false, + "txParams": { + "chainId": "0x1", + "data": "0x3ce33bff", + "from": "0x141d32a89a1e0a5ef360034a2f60a4b917c18838", + "gas": "0x182f0", + "gasPrice": "0x840ca20a", + "gasUsed": "0x1498b", + "nonce": "0x35", + "to": "0x0439e60f02a8900a951603950d8d4527f400c3f1", + "value": "0x3275f98a9082cf" + }, + "type": "contractInteraction", + "verifiedOnBlockchain": false + }, + { + "blockNumber": "453224698", + "chainId": "0xa4b1", + "hash": "0x47c96bb707133eaf0e922ef46ced8e0c3f1e5d2d47042cea504222e415986150", + "id": "89efa100-39db-11f1-bbe5-3727d90ba13b", + "isTransfer": false, + "networkClientId": "arbitrum-mainnet", + "status": "confirmed", + "time": 1776375050000, + "toSmartContract": false, + "txParams": { + "chainId": "0xa4b1", + "data": "0xcd6e13f7", + "from": "0xf70da97812cb96acdf810712aa562db8dfa3dbef", + "gas": "0x287f6", + "gasPrice": "0x1312d00", + "gasUsed": "0x101ba", + "nonce": "0x913b3c", + "to": "0xb92fe925dc43a0ecde6c8b1a2709c170ec4fff4f", + "value": "0x31fae838fe8ec4" + }, + "type": "incoming", + "verifiedOnBlockchain": false + }, + { + "blockNumber": "453224839", + "chainId": "0xa4b1", + "hash": "0x8e50804fe5d9726e6f7a501f27ce71299a28320876c8508d6434e1cbab681dbd", + "id": "9ecc3480-39db-11f1-bc96-3727d90ba13b", + "isTransfer": false, + "networkClientId": "arbitrum-mainnet", + "status": "confirmed", + "time": 1776375085000, + "toSmartContract": false, + "txParams": { + "chainId": "0xa4b1", + "data": "0x3ce33bff", + "from": "0x141d32a89a1e0a5ef360034a2f60a4b917c18838", + "gas": "0x2177c", + "gasPrice": "0x13134d1", + "gasUsed": "0x14ddb", + "nonce": "0x2b", + "to": "0x23981fc34e69eedfe2bd9a0a9fcb0719fe09dbfc", + "value": "0x31f8ee5657d8d7" + }, + "type": "contractInteraction", + "verifiedOnBlockchain": false + }, + { + "assetsFiatValues": { + "receiving": "32.582309960267337396719482708", + "sending": "32.936025025201072622318781016" + }, + "baseFeePerGas": "0x13134d0", + "batchId": "0xce36b3117b3b4175a32f757f08f37c12", + "blockTimestamp": "0x69e1552d", + "chainId": "0xa4b1", + "defaultGasEstimates": { + "estimateType": "medium", + "gas": "0x2177c", + "maxFeePerGas": "0x158b231", + "maxPriorityFeePerGas": "0x1" + }, + "delegationAddress": "0x63c0c19a282a1b52b07dd5a65b58948a07dae32b", + "disableGasBuffer": true, + "gasFeeEstimates": { + "high": { + "maxFeePerGas": "0x208ed08", + "maxPriorityFeePerGas": "0x0" + }, + "low": { + "maxFeePerGas": "0x1326d50", + "maxPriorityFeePerGas": "0x0" + }, + "medium": { + "maxFeePerGas": "0x19dad2c", + "maxPriorityFeePerGas": "0x0" + }, + "type": "fee-market" + }, + "gasFeeEstimatesLoaded": true, + "gasLimitNoBuffer": "0x2177c", + "hash": "0x8e50804fe5d9726e6f7a501f27ce71299a28320876c8508d6434e1cbab681dbd", + "id": "9ef2a840-39db-11f1-bc3b-3727d90ba13b", + "isGasFeeTokenIgnoredIfBalance": false, + "networkClientId": "arbitrum-mainnet", + "origin": "metamask", + "r": "0x7ac8c0da1c532cd5ebbef36c861896cdf8293ad06c1bf167a577f9b9bfb85019", + "rawTx": "0x02f902f782a4b12b01840158b2318302177c9423981fc34e69eedfe2bd9a0a9fcb0719fe09dbfc8731f8ee5657d8d7b902853ce33bff000000000000000000000000000000000000000000000000000000000000008000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000031f8ee5657d8d700000000000000000000000000000000000000000000000000000000000000c0000000000000000000000000000000000000000000000000000000000000000e72656c617941646170746572563200000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001a00000000000000000000000004cd00e387622c35bddb9b4c962c136462338bc310000000000000000000000004cd00e387622c35bddb9b4c962c136462338bc31000000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000003188f7dce8118c000000000000000000000000000000000000000000000000000000000000014000000000000000000000000000000000000000000000000000006ff6796fc74b00000000000000000000000056ca675c3633cc16bd6849e2b431d4e8de5e23bf000000000000000000000000000000000000000000000000000000000000004449290c1c000000000000000000000000141d32a89a1e0a5ef360034a2f60a4b917c18838d2625815fbdf1c8919355a0504501d72d0c4fb9298773f1feed1f323785582e00000000000000000000000000000000000000000000000000000000013c001a07ac8c0da1c532cd5ebbef36c861896cdf8293ad06c1bf167a577f9b9bfb85019a074b6811e09c82e03eb51562cf185bbfd5f92d73ea39a3bb7801e6a682b9a5822", + "s": "0x74b6811e09c82e03eb51562cf185bbfd5f92d73ea39a3bb7801e6a682b9a5822", + "status": "confirmed", + "submittedTime": 1776375086476, + "time": 1776375085252, + "txParams": { + "data": "0x3ce33bff000000000000000000000000000000000000000000000000000000000000008000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000031f8ee5657d8d700000000000000000000000000000000000000000000000000000000000000c0000000000000000000000000000000000000000000000000000000000000000e72656c617941646170746572563200000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001a00000000000000000000000004cd00e387622c35bddb9b4c962c136462338bc310000000000000000000000004cd00e387622c35bddb9b4c962c136462338bc31000000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000003188f7dce8118c000000000000000000000000000000000000000000000000000000000000014000000000000000000000000000000000000000000000000000006ff6796fc74b00000000000000000000000056ca675c3633cc16bd6849e2b431d4e8de5e23bf000000000000000000000000000000000000000000000000000000000000004449290c1c000000000000000000000000141d32a89a1e0a5ef360034a2f60a4b917c18838d2625815fbdf1c8919355a0504501d72d0c4fb9298773f1feed1f323785582e00000000000000000000000000000000000000000000000000000000013", + "from": "0x141d32a89a1e0a5ef360034a2f60a4b917c18838", + "gas": "0x2177c", + "gasLimit": "0x2177c", + "maxFeePerGas": "0x158b231", + "maxPriorityFeePerGas": "0x1", + "nonce": "0x2b", + "to": "0x23981fc34e69eedfe2bd9a0a9fcb0719fe09dbfc", + "type": "0x2", + "value": "0x31f8ee5657d8d7" + }, + "txParamsOriginal": { + "data": "0x3ce33bff000000000000000000000000000000000000000000000000000000000000008000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000031f8ee5657d8d700000000000000000000000000000000000000000000000000000000000000c0000000000000000000000000000000000000000000000000000000000000000e72656c617941646170746572563200000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001a00000000000000000000000004cd00e387622c35bddb9b4c962c136462338bc310000000000000000000000004cd00e387622c35bddb9b4c962c136462338bc31000000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000003188f7dce8118c000000000000000000000000000000000000000000000000000000000000014000000000000000000000000000000000000000000000000000006ff6796fc74b00000000000000000000000056ca675c3633cc16bd6849e2b431d4e8de5e23bf000000000000000000000000000000000000000000000000000000000000004449290c1c000000000000000000000000141d32a89a1e0a5ef360034a2f60a4b917c18838d2625815fbdf1c8919355a0504501d72d0c4fb9298773f1feed1f323785582e00000000000000000000000000000000000000000000000000000000013", + "from": "0x141d32a89a1e0a5ef360034a2f60a4b917c18838", + "gas": "0x2177c", + "maxFeePerGas": "0x158b231", + "maxPriorityFeePerGas": "0x1", + "to": "0x23981fc34e69eedfe2bd9a0a9fcb0719fe09dbfc", + "type": "0x2", + "value": "0x31f8ee5657d8d7" + }, + "txReceipt": { + "blockHash": "0x7e214866347a00dc356b96955721bd1150aca12ef68d5201244124e3833c4aa0", + "blockNumber": "0x1b03a987", + "contractAddress": null, + "cumulativeGasUsed": "0x2429c", + "effectiveGasPrice": "0x13134d0", + "from": "0x141d32a89a1e0a5ef360034a2f60a4b917c18838", + "gasUsed": "0x14ddb", + "gasUsedForL1": "0x45c", + "l1BlockNumber": "0x17bde7a", + "logs": [ + { + "address": "0x56ca675c3633cc16bd6849e2b431d4e8de5e23bf", + "blockHash": "0x7e214866347a00dc356b96955721bd1150aca12ef68d5201244124e3833c4aa0", + "blockNumber": "0x1b03a987", + "blockTimestamp": "0x69e1552d", + "data": "0x00000000000000000000000000000000000000000000000000006ff6796fc74b", + "logIndex": "0x1", + "removed": false, + "topics": [ + "0x3d0ce9bfc3ed7d6862dbb28b2dea94561fe714a1b4d019aa8af39730d1ad7c3d", + "0x0000000000000000000000007a70cb77a12fa2dc3fa1bc1dcbca4c79db71a289" + ], + "transactionHash": "0x8e50804fe5d9726e6f7a501f27ce71299a28320876c8508d6434e1cbab681dbd", + "transactionIndex": "0x2" + }, + { + "address": "0x7a70cb77a12fa2dc3fa1bc1dcbca4c79db71a289", + "blockHash": "0x7e214866347a00dc356b96955721bd1150aca12ef68d5201244124e3833c4aa0", + "blockNumber": "0x1b03a987", + "blockTimestamp": "0x69e1552d", + "data": "0x000000000000000000000000000000000000000000000000000000000000000000000000000000000000000056ca675c3633cc16bd6849e2b431d4e8de5e23bf00000000000000000000000000000000000000000000000000006ff6796fc74b", + "logIndex": "0x2", + "removed": false, + "topics": [ + "0x6ded982279c8387ad8a63e73385031a3807c1862e633f06e09d11bcb6e282f60" + ], + "transactionHash": "0x8e50804fe5d9726e6f7a501f27ce71299a28320876c8508d6434e1cbab681dbd", + "transactionIndex": "0x2" + }, + { + "address": "0x4cd00e387622c35bddb9b4c962c136462338bc31", + "blockHash": "0x7e214866347a00dc356b96955721bd1150aca12ef68d5201244124e3833c4aa0", + "blockNumber": "0x1b03a987", + "blockTimestamp": "0x69e1552d", + "data": "0x000000000000000000000000141d32a89a1e0a5ef360034a2f60a4b917c18838000000000000000000000000000000000000000000000000003188f7dce8118cd2625815fbdf1c8919355a0504501d72d0c4fb9298773f1feed1f323785582e0", + "logIndex": "0x3", + "removed": false, + "topics": [ + "0x8032066556caf3967d8fec4ad22a2d9e1e9576556b2903a0fcd5b1fd201e3477" + ], + "transactionHash": "0x8e50804fe5d9726e6f7a501f27ce71299a28320876c8508d6434e1cbab681dbd", + "transactionIndex": "0x2" + }, + { + "address": "0x7a70cb77a12fa2dc3fa1bc1dcbca4c79db71a289", + "blockHash": "0x7e214866347a00dc356b96955721bd1150aca12ef68d5201244124e3833c4aa0", + "blockNumber": "0x1b03a987", + "blockTimestamp": "0x69e1552d", + "data": "0x000000000000000000000000141d32a89a1e0a5ef360034a2f60a4b917c188380000000000000000000000004cd00e387622c35bddb9b4c962c136462338bc31000000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000003188f7dce8118c", + "logIndex": "0x4", + "removed": false, + "topics": [ + "0x831bac9533a2034226daa21109dbd4f887674f0fe4877e1a8b35b3ffe1bdce76" + ], + "transactionHash": "0x8e50804fe5d9726e6f7a501f27ce71299a28320876c8508d6434e1cbab681dbd", + "transactionIndex": "0x2" + } + ], + "logsBloom": "0x00000000000000000000000000000000000000000000000000000000000000004000000000000080000000000000000000000000000000000000000000000000100000000000002000000000000100000000000000000000000000001000000004000000000010000000000000000001000000002000000000800000000000000000000000000000000000000000000000000000000000000000000000000000000000200000000000000040000000000000000000000000004000000000100008000020000000000000040000000000000000000000200000000000000000000000000000000000000080800000000000000000800000000004000400000000", + "status": "0x1", + "timeboosted": false, + "to": "0x23981fc34e69eedfe2bd9a0a9fcb0719fe09dbfc", + "transactionHash": "0x8e50804fe5d9726e6f7a501f27ce71299a28320876c8508d6434e1cbab681dbd", + "transactionIndex": "0x2", + "type": "0x2" + }, + "type": "bridge", + "userEditedGasLimit": false, + "userFeeLevel": "medium", + "v": "0x1", + "verifiedOnBlockchain": true + }, + { + "blockNumber": "24895100", + "chainId": "0x1", + "hash": "0x260d0b76a9118fdd29b43140426dc185ba5812a0a6df79bcbe4bed63da6e3dc6", + "id": "a4c21580-39db-11f1-bc95-3727d90ba13b", + "isTransfer": false, + "networkClientId": "mainnet", + "status": "confirmed", + "time": 1776375095000, + "toSmartContract": false, + "txParams": { + "chainId": "0x1", + "data": "0xcd6e13f7", + "from": "0xada5bb90d0de0bd1b6f3938708f49295a8d1f7cb", + "gas": "0x17cfe", + "gasPrice": "0xdf7dc23", + "gasUsed": "0xfdf3", + "nonce": "0x1b62f", + "to": "0xb92fe925dc43a0ecde6c8b1a2709c170ec4fff4f", + "value": "0x317253fd88ffde" + }, + "type": "incoming", + "verifiedOnBlockchain": false + }, + { + "assetsFiatValues": { + "receiving": "31.82774314327230765570593886", + "sending": "32.658515343737659473775597234" + }, + "baseFeePerGas": "0x76a29eb", + "batchId": "0x20245866a5b543c1af94b98e209ee1e1", + "blockTimestamp": "0x69e1558b", + "chainId": "0x1", + "defaultGasEstimates": { + "estimateType": "medium", + "gas": "0x182f0", + "maxFeePerGas": "0x85a05cbb", + "maxPriorityFeePerGas": "0x7d2b7501" + }, + "delegationAddress": "0x63c0c19a282a1b52b07dd5a65b58948a07dae32b", + "disableGasBuffer": true, + "gasFeeEstimates": { + "high": { + "maxFeePerGas": "0x81c75740", + "maxPriorityFeePerGas": "0x77359400" + }, + "low": { + "maxFeePerGas": "0x7736689", + "maxPriorityFeePerGas": "0xf4240" + }, + "medium": { + "maxFeePerGas": "0x81c75740", + "maxPriorityFeePerGas": "0x77359400" + }, + "type": "fee-market" + }, + "gasFeeEstimatesLoaded": true, + "gasLimitNoBuffer": "0x182f0", + "hash": "0x400089af7cf7bdf032a84d27c3dab0a0a1326f8ef62f94ee260c70bfcb82b43b", + "id": "d3bf32a0-39db-11f1-bc94-3727d90ba13b", + "isGasFeeTokenIgnoredIfBalance": false, + "networkClientId": "mainnet", + "origin": "metamask", + "r": "0x113ff3342553bb5116ebbe761cee6d370e10f32140609a09befcdde470261adb", + "rawTx": "0x02f902f90136847d2b75018485a05cbb830182f0940439e60f02a8900a951603950d8d4527f400c3f18730c5f60297e7d9b902853ce33bff000000000000000000000000000000000000000000000000000000000000008000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000030c5f60297e7d900000000000000000000000000000000000000000000000000000000000000c0000000000000000000000000000000000000000000000000000000000000000e72656c617941646170746572563200000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001a00000000000000000000000004cd00e387622c35bddb9b4c962c136462338bc310000000000000000000000004cd00e387622c35bddb9b4c962c136462338bc31000000000000000000000000000000000000000000000000000000000000a4b100000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000003056f109a7a576000000000000000000000000000000000000000000000000000000000000014000000000000000000000000000000000000000000000000000006f04f8f04263000000000000000000000000e6b738da243e8fa2a0ed5915645789add5de5152000000000000000000000000000000000000000000000000000000000000004449290c1c000000000000000000000000141d32a89a1e0a5ef360034a2f60a4b917c18838467ded05917cefa50e95b3a483ac35dd45f4a6712ab67d5fc9b8a29617cbde7800000000000000000000000000000000000000000000000000000000dec080a0113ff3342553bb5116ebbe761cee6d370e10f32140609a09befcdde470261adba029fe445e0c5c33d22e8c076d6582dabfce8c99f3dd31af39d81ae6af78c4dfb5", + "s": "0x29fe445e0c5c33d22e8c076d6582dabfce8c99f3dd31af39d81ae6af78c4dfb5", + "status": "confirmed", + "submittedTime": 1776375180675, + "time": 1776375173834, + "txParams": { + "data": "0x3ce33bff000000000000000000000000000000000000000000000000000000000000008000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000030c5f60297e7d900000000000000000000000000000000000000000000000000000000000000c0000000000000000000000000000000000000000000000000000000000000000e72656c617941646170746572563200000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001a00000000000000000000000004cd00e387622c35bddb9b4c962c136462338bc310000000000000000000000004cd00e387622c35bddb9b4c962c136462338bc31000000000000000000000000000000000000000000000000000000000000a4b100000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000003056f109a7a576000000000000000000000000000000000000000000000000000000000000014000000000000000000000000000000000000000000000000000006f04f8f04263000000000000000000000000e6b738da243e8fa2a0ed5915645789add5de5152000000000000000000000000000000000000000000000000000000000000004449290c1c000000000000000000000000141d32a89a1e0a5ef360034a2f60a4b917c18838467ded05917cefa50e95b3a483ac35dd45f4a6712ab67d5fc9b8a29617cbde7800000000000000000000000000000000000000000000000000000000de", + "from": "0x141d32a89a1e0a5ef360034a2f60a4b917c18838", + "gas": "0x182f0", + "gasLimit": "0x182f0", + "maxFeePerGas": "0x85a05cbb", + "maxPriorityFeePerGas": "0x7d2b7501", + "nonce": "0x36", + "to": "0x0439e60f02a8900a951603950d8d4527f400c3f1", + "type": "0x2", + "value": "0x30c5f60297e7d9" + }, + "txParamsOriginal": { + "data": "0x3ce33bff000000000000000000000000000000000000000000000000000000000000008000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000030c5f60297e7d900000000000000000000000000000000000000000000000000000000000000c0000000000000000000000000000000000000000000000000000000000000000e72656c617941646170746572563200000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001a00000000000000000000000004cd00e387622c35bddb9b4c962c136462338bc310000000000000000000000004cd00e387622c35bddb9b4c962c136462338bc31000000000000000000000000000000000000000000000000000000000000a4b100000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000003056f109a7a576000000000000000000000000000000000000000000000000000000000000014000000000000000000000000000000000000000000000000000006f04f8f04263000000000000000000000000e6b738da243e8fa2a0ed5915645789add5de5152000000000000000000000000000000000000000000000000000000000000004449290c1c000000000000000000000000141d32a89a1e0a5ef360034a2f60a4b917c18838467ded05917cefa50e95b3a483ac35dd45f4a6712ab67d5fc9b8a29617cbde7800000000000000000000000000000000000000000000000000000000de", + "from": "0x141d32a89a1e0a5ef360034a2f60a4b917c18838", + "gas": "0x182f0", + "maxFeePerGas": "0x85a05cbb", + "maxPriorityFeePerGas": "0x7d2b7501", + "to": "0x0439e60f02a8900a951603950d8d4527f400c3f1", + "type": "0x2", + "value": "0x30c5f60297e7d9" + }, + "txReceipt": { + "blockHash": "0x3c8679b744834f47a70e97f406e40385b856fb1ca7c70bc13eaeefb8c9e5f90f", + "blockNumber": "0x17bde83", + "contractAddress": null, + "cumulativeGasUsed": "0xccb0b8", + "effectiveGasPrice": "0x84959eec", + "from": "0x141d32a89a1e0a5ef360034a2f60a4b917c18838", + "gasUsed": "0x1498b", + "logs": [ + { + "address": "0xe6b738da243e8fa2a0ed5915645789add5de5152", + "blockHash": "0x3c8679b744834f47a70e97f406e40385b856fb1ca7c70bc13eaeefb8c9e5f90f", + "blockNumber": "0x17bde83", + "blockTimestamp": "0x69e1558b", + "data": "0x00000000000000000000000000000000000000000000000000006f04f8f04263", + "logIndex": "0xdc", + "removed": false, + "topics": [ + "0x3d0ce9bfc3ed7d6862dbb28b2dea94561fe714a1b4d019aa8af39730d1ad7c3d", + "0x0000000000000000000000009a47f3289794e9bbc6a3c571f6d96ad4e7baed16" + ], + "transactionHash": "0x400089af7cf7bdf032a84d27c3dab0a0a1326f8ef62f94ee260c70bfcb82b43b", + "transactionIndex": "0x3d" + }, + { + "address": "0x9a47f3289794e9bbc6a3c571f6d96ad4e7baed16", + "blockHash": "0x3c8679b744834f47a70e97f406e40385b856fb1ca7c70bc13eaeefb8c9e5f90f", + "blockNumber": "0x17bde83", + "blockTimestamp": "0x69e1558b", + "data": "0x0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000e6b738da243e8fa2a0ed5915645789add5de515200000000000000000000000000000000000000000000000000006f04f8f04263", + "logIndex": "0xdd", + "removed": false, + "topics": [ + "0x6ded982279c8387ad8a63e73385031a3807c1862e633f06e09d11bcb6e282f60" + ], + "transactionHash": "0x400089af7cf7bdf032a84d27c3dab0a0a1326f8ef62f94ee260c70bfcb82b43b", + "transactionIndex": "0x3d" + }, + { + "address": "0x4cd00e387622c35bddb9b4c962c136462338bc31", + "blockHash": "0x3c8679b744834f47a70e97f406e40385b856fb1ca7c70bc13eaeefb8c9e5f90f", + "blockNumber": "0x17bde83", + "blockTimestamp": "0x69e1558b", + "data": "0x000000000000000000000000141d32a89a1e0a5ef360034a2f60a4b917c18838000000000000000000000000000000000000000000000000003056f109a7a576467ded05917cefa50e95b3a483ac35dd45f4a6712ab67d5fc9b8a29617cbde78", + "logIndex": "0xde", + "removed": false, + "topics": [ + "0x8032066556caf3967d8fec4ad22a2d9e1e9576556b2903a0fcd5b1fd201e3477" + ], + "transactionHash": "0x400089af7cf7bdf032a84d27c3dab0a0a1326f8ef62f94ee260c70bfcb82b43b", + "transactionIndex": "0x3d" + }, + { + "address": "0x9a47f3289794e9bbc6a3c571f6d96ad4e7baed16", + "blockHash": "0x3c8679b744834f47a70e97f406e40385b856fb1ca7c70bc13eaeefb8c9e5f90f", + "blockNumber": "0x17bde83", + "blockTimestamp": "0x69e1558b", + "data": "0x000000000000000000000000141d32a89a1e0a5ef360034a2f60a4b917c188380000000000000000000000004cd00e387622c35bddb9b4c962c136462338bc31000000000000000000000000000000000000000000000000000000000000a4b100000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000003056f109a7a576", + "logIndex": "0xdf", + "removed": false, + "topics": [ + "0x831bac9533a2034226daa21109dbd4f887674f0fe4877e1a8b35b3ffe1bdce76" + ], + "transactionHash": "0x400089af7cf7bdf032a84d27c3dab0a0a1326f8ef62f94ee260c70bfcb82b43b", + "transactionIndex": "0x3d" + } + ], + "logsBloom": "0x00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000040400000000000000000000000000000000100000000000002000000000000100000000000000000000000000000000000004000000000000000000000000002001000000002000000000800000000000000000000000000000000000000000000000000000000000000000000000000000000000200000000000000040000000000000400000000000004000000400000008000020000000000000040000000000000000000000002000800000000220000000000000000000000000800000000000000000000000000000000400000000", + "status": "0x1", + "to": "0x0439e60f02a8900a951603950d8d4527f400c3f1", + "transactionHash": "0x400089af7cf7bdf032a84d27c3dab0a0a1326f8ef62f94ee260c70bfcb82b43b", + "transactionIndex": "0x3d", + "type": "0x2" + }, + "type": "bridge", + "userEditedGasLimit": false, + "userFeeLevel": "medium", + "v": "0x0", + "verifiedOnBlockchain": true + }, + { + "blockNumber": "24895107", + "chainId": "0x1", + "hash": "0x400089af7cf7bdf032a84d27c3dab0a0a1326f8ef62f94ee260c70bfcb82b43b", + "id": "d6d37780-39db-11f1-bc94-3727d90ba13b", + "isTransfer": false, + "networkClientId": "mainnet", + "status": "confirmed", + "time": 1776375179000, + "toSmartContract": false, + "txParams": { + "chainId": "0x1", + "data": "0x3ce33bff", + "from": "0x141d32a89a1e0a5ef360034a2f60a4b917c18838", + "gas": "0x182f0", + "gasPrice": "0x84959eec", + "gasUsed": "0x1498b", + "nonce": "0x36", + "to": "0x0439e60f02a8900a951603950d8d4527f400c3f1", + "value": "0x30c5f60297e7d9" + }, + "type": "contractInteraction", + "verifiedOnBlockchain": false + }, + { + "blockNumber": "453225227", + "chainId": "0xa4b1", + "hash": "0xd5f58e1a26c2ba999201d2af7999d94c55c4a384b4899dbf1313ceb53a8342c3", + "id": "d89d3b00-39db-11f1-bcc1-3727d90ba13b", + "isTransfer": false, + "networkClientId": "arbitrum-mainnet", + "status": "confirmed", + "time": 1776375182000, + "toSmartContract": false, + "txParams": { + "chainId": "0xa4b1", + "data": "0xcd6e13f7", + "from": "0xf70da97812cb96acdf810712aa562db8dfa3dbef", + "gas": "0x287f6", + "gasPrice": "0x131d8e0", + "gasUsed": "0x1019e", + "nonce": "0x913b43", + "to": "0xb92fe925dc43a0ecde6c8b1a2709c170ec4fff4f", + "value": "0x304d2d3239eca2" + }, + "type": "incoming", + "verifiedOnBlockchain": false + }, + { + "actionId": "1776375343140.5833", + "baseFeePerGas": "0x1d0ad95", + "blockTimestamp": "0x69e15630", + "chainId": "0xa86a", + "defaultGasEstimates": { + "estimateType": "medium", + "gas": "0xdbb0", + "maxFeePerGas": "0x5be1c9e2", + "maxPriorityFeePerGas": "0x59682f00" + }, + "gasFeeEstimates": { + "high": { + "maxFeePerGas": "0x7a53737b", + "maxPriorityFeePerGas": "0x77359400" + }, + "low": { + "maxFeePerGas": "0x3d702048", + "maxPriorityFeePerGas": "0x3b9aca00" + }, + "medium": { + "maxFeePerGas": "0x5be1c9e2", + "maxPriorityFeePerGas": "0x59682f00" + }, + "type": "fee-market" + }, + "gasFeeEstimatesLoaded": true, + "gasLimitNoBuffer": "0xdbb0", + "hash": "0xdc14a79f7b195b493dbb5390d529c9aa043939887e6f8033524b22fe90efa6a6", + "id": "38af31b0-39dc-11f1-bcee-3727d90ba13b", + "isGasFeeTokenIgnoredIfBalance": false, + "networkClientId": "d6eb1507-ce8a-40d4-ba91-1e8231b1f2a3", + "origin": "metamask", + "r": "0xc0611cf3441b02f85a23fa9df37dce4264564dd642eef506e2acf86adff69171", + "rawTx": "0x02f8b182a86a808459682f00845be1c9e282dbb094b97ef9ef8734c71904d8002f8b6bc66dd9c48a6e80b844095ea7b30000000000000000000000001a1ec25dc08e98e5e93f1104b5e5cdd298707d310000000000000000000000000000000000000000000000000000000000c0b1d2c080a0c0611cf3441b02f85a23fa9df37dce4264564dd642eef506e2acf86adff69171a056a50849d9e45f028f1b19f7bab9f6071ff706810b88059157a809bd86d5ae9f", + "s": "0x56a50849d9e45f028f1b19f7bab9f6071ff706810b88059157a809bd86d5ae9f", + "status": "confirmed", + "submittedTime": 1776375343415, + "time": 1776375343179, + "txParams": { + "data": "0x095ea7b30000000000000000000000001a1ec25dc08e98e5e93f1104b5e5cdd298707d310000000000000000000000000000000000000000000000000000000000c0b1d2", + "from": "0x141d32a89a1e0a5ef360034a2f60a4b917c18838", + "gas": "0xdbb0", + "gasLimit": "0xdbb0", + "maxFeePerGas": "0x5be1c9e2", + "maxPriorityFeePerGas": "0x59682f00", + "nonce": "0x0", + "to": "0xb97ef9ef8734c71904d8002f8b6bc66dd9c48a6e", + "type": "0x2", + "value": "0x0" + }, + "txParamsOriginal": { + "data": "0x095ea7b30000000000000000000000001a1ec25dc08e98e5e93f1104b5e5cdd298707d310000000000000000000000000000000000000000000000000000000000c0b1d2", + "from": "0x141d32a89a1e0a5ef360034a2f60a4b917c18838", + "gas": "0xdbb0", + "gasLimit": "0x56240", + "maxFeePerGas": "0x5be1c9e2", + "maxPriorityFeePerGas": "0x59682f00", + "to": "0xb97ef9ef8734c71904d8002f8b6bc66dd9c48a6e", + "type": "0x2", + "value": "0x0" + }, + "txReceipt": { + "blockHash": "0xc8e069184c9a9e083b5b2d46f6734fb5f137d4e857000342af522de19a4fe422", + "blockNumber": "0x4f44d81", + "contractAddress": null, + "cumulativeGasUsed": "0xd88d", + "effectiveGasPrice": "0x5b38dc95", + "from": "0x141d32a89a1e0a5ef360034a2f60a4b917c18838", + "gasUsed": "0xd88d", + "logs": [ + { + "address": "0xb97ef9ef8734c71904d8002f8b6bc66dd9c48a6e", + "blockHash": "0xc8e069184c9a9e083b5b2d46f6734fb5f137d4e857000342af522de19a4fe422", + "blockNumber": "0x4f44d81", + "data": "0x0000000000000000000000000000000000000000000000000000000000c0b1d2", + "logIndex": "0x0", + "removed": false, + "topics": [ + "0x8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925", + "0x000000000000000000000000141d32a89a1e0a5ef360034a2f60a4b917c18838", + "0x0000000000000000000000001a1ec25dc08e98e5e93f1104b5e5cdd298707d31" + ], + "transactionHash": "0xdc14a79f7b195b493dbb5390d529c9aa043939887e6f8033524b22fe90efa6a6", + "transactionIndex": "0x0" + } + ], + "logsBloom": "0x00000000000000000000000000000001000000040000000000000000000000000000000000000000000000000000000000000000000000000000020000200000000000010000010000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001000000000800000000000001000010000000000000000000020000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000010000000000000000000000000000000000000000000000000000000000000", + "status": "0x1", + "to": "0xb97ef9ef8734c71904d8002f8b6bc66dd9c48a6e", + "transactionHash": "0xdc14a79f7b195b493dbb5390d529c9aa043939887e6f8033524b22fe90efa6a6", + "transactionIndex": "0x0", + "type": "0x2" + }, + "type": "swapApproval", + "userEditedGasLimit": false, + "userFeeLevel": "medium", + "v": "0x0", + "verifiedOnBlockchain": true + }, + { + "actionId": "1776375343417.1826", + "baseFeePerGas": "0x1d0ad95", + "blockTimestamp": "0x69e15630", + "chainId": "0xa86a", + "defaultGasEstimates": { + "estimateType": "medium", + "gas": "0xd7915", + "maxFeePerGas": "0x5be1c9e2", + "maxPriorityFeePerGas": "0x59682f00" + }, + "gasFeeEstimates": { + "high": { + "maxFeePerGas": "0x7a53737b", + "maxPriorityFeePerGas": "0x77359400" + }, + "low": { + "maxFeePerGas": "0x3d702048", + "maxPriorityFeePerGas": "0x3b9aca00" + }, + "medium": { + "maxFeePerGas": "0x5be1c9e2", + "maxPriorityFeePerGas": "0x59682f00" + }, + "type": "fee-market" + }, + "gasFeeEstimatesLoaded": true, + "gasLimitNoBuffer": "0xd7915", + "hash": "0x48a711af5af1500af1e2fe4911c94f482fbd2003be27422c6e39a4520695924a", + "id": "38d6b6e0-39dc-11f1-bcee-3727d90ba13b", + "isGasFeeTokenIgnoredIfBalance": false, + "networkClientId": "d6eb1507-ce8a-40d4-ba91-1e8231b1f2a3", + "origin": "metamask", + "postTxBalance": "0x14e2a15f4e83457e", + "preTxBalance": "0x2facbd5f203efc1", + "r": "0xcbabadc542f15708b7c11514f69db6c49c14344e86eed2b6288cd4f756e8e7a1", + "rawTx": "0x02f9103482a86a018459682f00845be1c9e2830d7915941a1ec25dc08e98e5e93f1104b5e5cdd298707d3180b90fc55f5755290000000000000000000000000000000000000000000000000000000000000080000000000000000000000000b97ef9ef8734c71904d8002f8b6bc66dd9c48a6e0000000000000000000000000000000000000000000000000000000000c0b1d200000000000000000000000000000000000000000000000000000000000000c000000000000000000000000000000000000000000000000000000000000000136b796265725377617046656544796e616d6963000000000000000000000000000000000000000000000000000000000000000000000000000000000000000ee0000000000000000000000000b97ef9ef8734c71904d8002f8b6bc66dd9c48a6e00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000bf02300000000000000000000000000000000000000000000000001191a5a61fb7f8980000000000000000000000000000000000000000000000000000000000000120000000000000000000000000000000000000000000000000000000000001afa2000000000000000000000000ef320f172714eab39ef6df6ee23a29d2467b6fbf00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000da4e21fd0e9000000000000000000000000000000000000000000000000000000000000002000000000000000000000000063242a4ea82847b20e506b63b0e2e2eff0cc6cb0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000a00000000000000000000000000000000000000000000000000000000000000a600000000000000000000000000000000000000000000000000000000000000ca000000000000000000000000000000000000000000000000000000000000009a000000000000000000000000000bf023000000000000000000000000000bf0230000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000000e000000000000000000000000000000000000000000000000000000000000000412210122a98dba052bb217d2c4a636d5b2e6ce9a61d2f8b22340bdcf3c99495ab484cc097e258e683244d728c48d80093c01a810037ff6d32f4b495f1ce8571671c0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000008a0000000000000000000000000c590175e458b83680867afd273527ff58f74c02b0000000000000000000000000000000000000000000000000000000000000140000000000000000000000000000000000000000000000000000000000000018000000000000000000000000000b5754700000000000000000000000000c88f1800000000000000000000000000bf0230000000000000000011ed6f8f6448c96e0000000000000000000000000000000000012cc5f496f20000000f42400000000000000000000000000000004f82e73edb06d29ff62c91ec8f5ff06571bdeb2900000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000069e15adc0000000000000000000000000000000000000000000000000000000000000880000000000000000000000000000000000000000000000000000000000000000161f598cd00000000000000003261c1bf28a7663c8ecccf14914a2c02ce17e566000000000000000000000000000000000000000000000000000000000000000500000000000000000000000000000000000000000000000000000000000000a0000000000000000000000000000000000000000000000000000000000000022000000000000000000000000000000000000000000000000000000000000003a000000000000000000000000000000000000000000000000000000000000005200000000000000000000000000000000000000000000000000000000000000660000000000000000000000000b97ef9ef8734c71904d8002f8b6bc66dd9c48a6e8000000000000000000000000000000c00000000000000000000000000bf02300000000000000000000000000000000000000000000000000000000000000060000000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000000000200000000000000000000000000000000000000000000000000000000000bf02303b9d6e0900000000000000015455c918e405a2831fbff8595c0aae35ee3db9d1000000000000000000000000000000000000000000000000000000000000008000000000000000000000000063242a4ea82847b20e506b63b0e2e2eff0cc6cb000000000000000000000000000000000000000000000000000000000000000400000000000000000000000001150403b19315615aad1638d9dd86cd866b2f456000000000000000000000000000000000000270ffdbe72847b89e899461529a80000000000000000000000009702230a8ea53601f5cd2dc00fdbc13d4df4a8c78000000000000000000000000000000c00000000000000000000000000bef2ed0000000000000000000000000000000000000000000000000000000000000060000000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000000000200000000000000000000000000000000000000000000000000000000000bef2ed6efd106f00000000000000020c3b706efa1da39450c968e669fdc442fc375021000000000000000000000000000000000000000000000000000000000000008000000000000000000000000063242a4ea82847b20e506b63b0e2e2eff0cc6cb000000000000000000000000000000000000000000000000000000000000000400000000000000000000000001abe428146795bc754170af24cfd78663f257d29000000000000000000000000ff120d460d67f1db5b71087bd404babb342b598700000000000000000000000049d5c2bdffac6ce2bfdb6640f4f80f226bc10bab8000000000000000000000013e6e606700000000000000000012fadfb68adb790000000000000000000000000000000000000000000000000000000000000060000000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000000000200000000000000000000000000000000000000000000000000012fadfb68adb793b9d6e0900000000000000035455c918e405a2831fbff8595c0aae35ee3db9d1000000000000000000000000000000000000000000000000000000000000008000000000000000000000000063242a4ea82847b20e506b63b0e2e2eff0cc6cb00000000000000000000000000000000000000000000000000000000000000040000000000000000000000000840c5f0167e3a335be0938916962c38c16b948df0000000000000000000000000000000000000000000000000000000100ad139d000000000000000000000000b31f66aa3c1e785363f0875a1b74e27b85fd66c780000000000000000000012cc5f496f2000000000000000011ed6f8f6448c96e00000000000000000000000000000000000000000000000000000000000000600000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000002000000000000000000000000000000000000000000000000011ed6f8f6448c96e0000000000000000000000040000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000008000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000eeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeee8000000000000000000000000000000100000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000b97ef9ef8734c71904d8002f8b6bc66dd9c48a6e000000000000000000000000eeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeee000000000000000000000000000000000000000000000000000000000000016000000000000000000000000000000000000000000000000000000000000001a000000000000000000000000000000000000000000000000000000000000001e00000000000000000000000000000000000000000000000000000000000000200000000000000000000000000c590175e458b83680867afd273527ff58f74c02b0000000000000000000000000000000000000000000000000000000000bf02300000000000000000000000000000000000000000000000001191a5a61fb7f89800000000000000000000000000000000000000000000000000000000000002000000000000000000000000000000000000000000000000000000000000000220000000000000000000000000000000000000000000000000000000000000000100000000000000000000000063242a4ea82847b20e506b63b0e2e2eff0cc6cb000000000000000000000000000000000000000000000000000000000000000010000000000000000000000000000000000000000000000000000000000bf023000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000b17b22536f75726365223a226d6574616d61736b222c22416d6f756e74496e555344223a2231322e343934363635222c22416d6f756e744f7574555344223a2231322e353031393836222c22416d6f756e744f7574223a2231323931383131333239373738363938363035222c22526f7574654944223a22663463316332306531784248424c31503a62356263653766334c6e5a4c495a7331222c2254696d657374616d70223a313737363337353334307d0000000000000000000000000000000000000000000000000000000000000000000000000000000000000078c001a0cbabadc542f15708b7c11514f69db6c49c14344e86eed2b6288cd4f756e8e7a1a009408178fac4c6755f35256b809e19756b9ba88103515af09c84000a5aee1a7f", + "s": "0x9408178fac4c6755f35256b809e19756b9ba88103515af09c84000a5aee1a7f", + "status": "confirmed", + "submittedTime": 1776375343730, + "time": 1776375343438, + "txParams": { + "data": "0x5f5755290000000000000000000000000000000000000000000000000000000000000080000000000000000000000000b97ef9ef8734c71904d8002f8b6bc66dd9c48a6e0000000000000000000000000000000000000000000000000000000000c0b1d200000000000000000000000000000000000000000000000000000000000000c000000000000000000000000000000000000000000000000000000000000000136b796265725377617046656544796e616d6963000000000000000000000000000000000000000000000000000000000000000000000000000000000000000ee0000000000000000000000000b97ef9ef8734c71904d8002f8b6bc66dd9c48a6e00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000bf02300000000000000000000000000000000000000000000000001191a5a61fb7f8980000000000000000000000000000000000000000000000000000000000000120000000000000000000000000000000000000000000000000000000000001afa2000000000000000000000000ef320f172714eab39ef6df6ee23a29d2467b6fbf00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000da4e21fd0e9000000000000000000000000000000000000000000000000000000000000002000000000000000000000000063242a4ea82847b20e506b63b0e2e2eff0cc6cb0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000a00000000000000000000000000000000000000000000000000000000000000a600000000000000000000000000000000000000000000000000000000000000ca000000000000000000000000000000000000000000000000000000000000009a000000000000000000000000000bf023000000000000000000000000000bf0230000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000000e000000000000000000000000000000000000000000000000000000000000000412210122a98dba052bb217d2c4a636d5b2e6ce9a61d2f8b22340bdcf3c99495ab484cc097e258e683244d728c48d80093c01a810037ff6d32f4b495f1ce8571671c0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000008a0000000000000000000000000c590175e458b83680867afd273527ff58f74c02b0000000000000000000000000000000000000000000000000000000000000140000000000000000000000000000000000000000000000000000000000000018000000000000000000000000000b5754700000000000000000000000000c88f1800000000000000000000000000bf0230000000000000000011ed6f8f6448c96e0000000000000000000000000000000000012cc5f496f20000000f42400000000000000000000000000000004f82e73edb06d29ff62c91ec8f5ff06571bdeb2900000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000069e15adc0000000000000000000000000000000000000000000000000000000000000880000000000000000000000000000000000000000000000000000000000000000161f598cd00000000000000003261c1bf28a7663c8ecccf14914a2c02ce17e566000000000000000000000000000000000000000000000000000000000000000500000000000000000000000000000000000000000000000000000000000000a0000000000000000000000000000000000000000000000000000000000000022000000000000000000000000000000000000000000000000000000000000003a000000000000000000000000000000000000000000000000000000000000005200000000000000000000000000000000000000000000000000000000000000660000000000000000000000000b97ef9ef8734c71904d8002f8b6bc66dd9c48a6e8000000000000000000000000000000c00000000000000000000000000bf02300000000000000000000000000000000000000000000000000000000000000060000000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000000000200000000000000000000000000000000000000000000000000000000000bf02303b9d6e0900000000000000015455c918e405a2831fbff8595c0aae35ee3db9d1000000000000000000000000000000000000000000000000000000000000008000000000000000000000000063242a4ea82847b20e506b63b0e2e2eff0cc6cb000000000000000000000000000000000000000000000000000000000000000400000000000000000000000001150403b19315615aad1638d9dd86cd866b2f456000000000000000000000000000000000000270ffdbe72847b89e899461529a80000000000000000000000009702230a8ea53601f5cd2dc00fdbc13d4df4a8c78000000000000000000000000000000c00000000000000000000000000bef2ed0000000000000000000000000000000000000000000000000000000000000060000000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000000000200000000000000000000000000000000000000000000000000000000000bef2ed6efd106f00000000000000020c3b706efa1da39450c968e669fdc442fc375021000000000000000000000000000000000000000000000000000000000000008000000000000000000000000063242a4ea82847b20e506b63b0e2e2eff0cc6cb000000000000000000000000000000000000000000000000000000000000000400000000000000000000000001abe428146795bc754170af24cfd78663f257d29000000000000000000000000ff120d460d67f1db5b71087bd404babb342b598700000000000000000000000049d5c2bdffac6ce2bfdb6640f4f80f226bc10bab8000000000000000000000013e6e606700000000000000000012fadfb68adb790000000000000000000000000000000000000000000000000000000000000060000000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000000000200000000000000000000000000000000000000000000000000012fadfb68adb793b9d6e0900000000000000035455c918e405a2831fbff8595c0aae35ee3db9d1000000000000000000000000000000000000000000000000000000000000008000000000000000000000000063242a4ea82847b20e506b63b0e2e2eff0cc6cb00000000000000000000000000000000000000000000000000000000000000040000000000000000000000000840c5f0167e3a335be0938916962c38c16b948df0000000000000000000000000000000000000000000000000000000100ad139d000000000000000000000000b31f66aa3c1e785363f0875a1b74e27b85fd66c780000000000000000000012cc5f496f2000000000000000011ed6f8f6448c96e00000000000000000000000000000000000000000000000000000000000000600000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000002000000000000000000000000000000000000000000000000011ed6f8f6448c96e0000000000000000000000040000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000008000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000eeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeee8000000000000000000000000000000100000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000b97ef9ef8734c71904d8002f8b6bc66dd9c48a6e000000000000000000000000eeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeee000000000000000000000000000000000000000000000000000000000000016000000000000000000000000000000000000000000000000000000000000001a000000000000000000000000000000000000000000000000000000000000001e00000000000000000000000000000000000000000000000000000000000000200000000000000000000000000c590175e458b83680867afd273527ff58f74c02b0000000000000000000000000000000000000000000000000000000000bf02300000000000000000000000000000000000000000000000001191a5a61fb7f89800000000000000000000000000000000000000000000000000000000000002000000000000000000000000000000000000000000000000000000000000000220000000000000000000000000000000000000000000000000000000000000000100000000000000000000000063242a4ea82847b20e506b63b0e2e2eff0cc6cb000000000000000000000000000000000000000000000000000000000000000010000000000000000000000000000000000000000000000000000000000bf023000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000b17b22536f75726365223a226d6574616d61736b222c22416d6f756e74496e555344223a2231322e343934363635222c22416d6f756e744f7574555344223a2231322e353031393836222c22416d6f756e744f7574223a2231323931383131333239373738363938363035222c22526f7574654944223a22663463316332306531784248424c31503a62356263653766334c6e5a4c495a7331222c2254696d657374616d70223a313737363337353334307d0000000000000000000000000000000000000000000000000000000000000000000000000000000000000078", + "from": "0x141d32a89a1e0a5ef360034a2f60a4b917c18838", + "gas": "0xd7915", + "gasLimit": "0xd7915", + "maxFeePerGas": "0x5be1c9e2", + "maxPriorityFeePerGas": "0x59682f00", + "nonce": "0x1", + "to": "0x1a1ec25dc08e98e5e93f1104b5e5cdd298707d31", + "type": "0x2", + "value": "0x0" + }, + "txParamsOriginal": { + "data": "0x5f5755290000000000000000000000000000000000000000000000000000000000000080000000000000000000000000b97ef9ef8734c71904d8002f8b6bc66dd9c48a6e0000000000000000000000000000000000000000000000000000000000c0b1d200000000000000000000000000000000000000000000000000000000000000c000000000000000000000000000000000000000000000000000000000000000136b796265725377617046656544796e616d6963000000000000000000000000000000000000000000000000000000000000000000000000000000000000000ee0000000000000000000000000b97ef9ef8734c71904d8002f8b6bc66dd9c48a6e00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000bf02300000000000000000000000000000000000000000000000001191a5a61fb7f8980000000000000000000000000000000000000000000000000000000000000120000000000000000000000000000000000000000000000000000000000001afa2000000000000000000000000ef320f172714eab39ef6df6ee23a29d2467b6fbf00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000da4e21fd0e9000000000000000000000000000000000000000000000000000000000000002000000000000000000000000063242a4ea82847b20e506b63b0e2e2eff0cc6cb0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000a00000000000000000000000000000000000000000000000000000000000000a600000000000000000000000000000000000000000000000000000000000000ca000000000000000000000000000000000000000000000000000000000000009a000000000000000000000000000bf023000000000000000000000000000bf0230000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000000e000000000000000000000000000000000000000000000000000000000000000412210122a98dba052bb217d2c4a636d5b2e6ce9a61d2f8b22340bdcf3c99495ab484cc097e258e683244d728c48d80093c01a810037ff6d32f4b495f1ce8571671c0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000008a0000000000000000000000000c590175e458b83680867afd273527ff58f74c02b0000000000000000000000000000000000000000000000000000000000000140000000000000000000000000000000000000000000000000000000000000018000000000000000000000000000b5754700000000000000000000000000c88f1800000000000000000000000000bf0230000000000000000011ed6f8f6448c96e0000000000000000000000000000000000012cc5f496f20000000f42400000000000000000000000000000004f82e73edb06d29ff62c91ec8f5ff06571bdeb2900000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000069e15adc0000000000000000000000000000000000000000000000000000000000000880000000000000000000000000000000000000000000000000000000000000000161f598cd00000000000000003261c1bf28a7663c8ecccf14914a2c02ce17e566000000000000000000000000000000000000000000000000000000000000000500000000000000000000000000000000000000000000000000000000000000a0000000000000000000000000000000000000000000000000000000000000022000000000000000000000000000000000000000000000000000000000000003a000000000000000000000000000000000000000000000000000000000000005200000000000000000000000000000000000000000000000000000000000000660000000000000000000000000b97ef9ef8734c71904d8002f8b6bc66dd9c48a6e8000000000000000000000000000000c00000000000000000000000000bf02300000000000000000000000000000000000000000000000000000000000000060000000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000000000200000000000000000000000000000000000000000000000000000000000bf02303b9d6e0900000000000000015455c918e405a2831fbff8595c0aae35ee3db9d1000000000000000000000000000000000000000000000000000000000000008000000000000000000000000063242a4ea82847b20e506b63b0e2e2eff0cc6cb000000000000000000000000000000000000000000000000000000000000000400000000000000000000000001150403b19315615aad1638d9dd86cd866b2f456000000000000000000000000000000000000270ffdbe72847b89e899461529a80000000000000000000000009702230a8ea53601f5cd2dc00fdbc13d4df4a8c78000000000000000000000000000000c00000000000000000000000000bef2ed0000000000000000000000000000000000000000000000000000000000000060000000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000000000200000000000000000000000000000000000000000000000000000000000bef2ed6efd106f00000000000000020c3b706efa1da39450c968e669fdc442fc375021000000000000000000000000000000000000000000000000000000000000008000000000000000000000000063242a4ea82847b20e506b63b0e2e2eff0cc6cb000000000000000000000000000000000000000000000000000000000000000400000000000000000000000001abe428146795bc754170af24cfd78663f257d29000000000000000000000000ff120d460d67f1db5b71087bd404babb342b598700000000000000000000000049d5c2bdffac6ce2bfdb6640f4f80f226bc10bab8000000000000000000000013e6e606700000000000000000012fadfb68adb790000000000000000000000000000000000000000000000000000000000000060000000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000000000200000000000000000000000000000000000000000000000000012fadfb68adb793b9d6e0900000000000000035455c918e405a2831fbff8595c0aae35ee3db9d1000000000000000000000000000000000000000000000000000000000000008000000000000000000000000063242a4ea82847b20e506b63b0e2e2eff0cc6cb00000000000000000000000000000000000000000000000000000000000000040000000000000000000000000840c5f0167e3a335be0938916962c38c16b948df0000000000000000000000000000000000000000000000000000000100ad139d000000000000000000000000b31f66aa3c1e785363f0875a1b74e27b85fd66c780000000000000000000012cc5f496f2000000000000000011ed6f8f6448c96e00000000000000000000000000000000000000000000000000000000000000600000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000002000000000000000000000000000000000000000000000000011ed6f8f6448c96e0000000000000000000000040000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000008000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000eeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeee8000000000000000000000000000000100000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000b97ef9ef8734c71904d8002f8b6bc66dd9c48a6e000000000000000000000000eeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeee000000000000000000000000000000000000000000000000000000000000016000000000000000000000000000000000000000000000000000000000000001a000000000000000000000000000000000000000000000000000000000000001e00000000000000000000000000000000000000000000000000000000000000200000000000000000000000000c590175e458b83680867afd273527ff58f74c02b0000000000000000000000000000000000000000000000000000000000bf02300000000000000000000000000000000000000000000000001191a5a61fb7f89800000000000000000000000000000000000000000000000000000000000002000000000000000000000000000000000000000000000000000000000000000220000000000000000000000000000000000000000000000000000000000000000100000000000000000000000063242a4ea82847b20e506b63b0e2e2eff0cc6cb000000000000000000000000000000000000000000000000000000000000000010000000000000000000000000000000000000000000000000000000000bf023000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000b17b22536f75726365223a226d6574616d61736b222c22416d6f756e74496e555344223a2231322e343934363635222c22416d6f756e744f7574555344223a2231322e353031393836222c22416d6f756e744f7574223a2231323931383131333239373738363938363035222c22526f7574654944223a22663463316332306531784248424c31503a62356263653766334c6e5a4c495a7331222c2254696d657374616d70223a313737363337353334307d0000000000000000000000000000000000000000000000000000000000000000000000000000000000000078", + "from": "0x141d32a89a1e0a5ef360034a2f60a4b917c18838", + "gas": "0xd7915", + "gasLimit": "0x882965", + "maxFeePerGas": "0x5be1c9e2", + "maxPriorityFeePerGas": "0x59682f00", + "to": "0x1a1ec25dc08e98e5e93f1104b5e5cdd298707d31", + "type": "0x2", + "value": "0x0" + }, + "txReceipt": { + "blockHash": "0xc8e069184c9a9e083b5b2d46f6734fb5f137d4e857000342af522de19a4fe422", + "blockNumber": "0x4f44d81", + "contractAddress": null, + "cumulativeGasUsed": "0x9958b", + "effectiveGasPrice": "0x5b38dc95", + "from": "0x141d32a89a1e0a5ef360034a2f60a4b917c18838", + "gasUsed": "0x8bcfe", + "logs": [ + { + "address": "0xb97ef9ef8734c71904d8002f8b6bc66dd9c48a6e", + "blockHash": "0xc8e069184c9a9e083b5b2d46f6734fb5f137d4e857000342af522de19a4fe422", + "blockNumber": "0x4f44d81", + "data": "0x0000000000000000000000000000000000000000000000000000000000c0b1d2", + "logIndex": "0x1", + "removed": false, + "topics": [ + "0xddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef", + "0x000000000000000000000000141d32a89a1e0a5ef360034a2f60a4b917c18838", + "0x000000000000000000000000c590175e458b83680867afd273527ff58f74c02b" + ], + "transactionHash": "0x48a711af5af1500af1e2fe4911c94f482fbd2003be27422c6e39a4520695924a", + "transactionIndex": "0x1" + }, + { + "address": "0xb97ef9ef8734c71904d8002f8b6bc66dd9c48a6e", + "blockHash": "0xc8e069184c9a9e083b5b2d46f6734fb5f137d4e857000342af522de19a4fe422", + "blockNumber": "0x4f44d81", + "data": "0x0000000000000000000000000000000000000000000000000000000000bf0230", + "logIndex": "0x2", + "removed": false, + "topics": [ + "0xddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef", + "0x000000000000000000000000c590175e458b83680867afd273527ff58f74c02b", + "0x00000000000000000000000063242a4ea82847b20e506b63b0e2e2eff0cc6cb0" + ], + "transactionHash": "0x48a711af5af1500af1e2fe4911c94f482fbd2003be27422c6e39a4520695924a", + "transactionIndex": "0x1" + }, + { + "address": "0x9702230a8ea53601f5cd2dc00fdbc13d4df4a8c7", + "blockHash": "0xc8e069184c9a9e083b5b2d46f6734fb5f137d4e857000342af522de19a4fe422", + "blockNumber": "0x4f44d81", + "data": "0x0000000000000000000000000000000000000000000000000000000000bef1f3", + "logIndex": "0x3", + "removed": false, + "topics": [ + "0xddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef", + "0x0000000000000000000000001150403b19315615aad1638d9dd86cd866b2f456", + "0x00000000000000000000000063242a4ea82847b20e506b63b0e2e2eff0cc6cb0" + ], + "transactionHash": "0x48a711af5af1500af1e2fe4911c94f482fbd2003be27422c6e39a4520695924a", + "transactionIndex": "0x1" + }, + { + "address": "0xb97ef9ef8734c71904d8002f8b6bc66dd9c48a6e", + "blockHash": "0xc8e069184c9a9e083b5b2d46f6734fb5f137d4e857000342af522de19a4fe422", + "blockNumber": "0x4f44d81", + "data": "0x0000000000000000000000000000000000000000000000000000000000bf0230", + "logIndex": "0x4", + "removed": false, + "topics": [ + "0xddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef", + "0x00000000000000000000000063242a4ea82847b20e506b63b0e2e2eff0cc6cb0", + "0x0000000000000000000000001150403b19315615aad1638d9dd86cd866b2f456" + ], + "transactionHash": "0x48a711af5af1500af1e2fe4911c94f482fbd2003be27422c6e39a4520695924a", + "transactionIndex": "0x1" + }, + { + "address": "0x1150403b19315615aad1638d9dd86cd866b2f456", + "blockHash": "0xc8e069184c9a9e083b5b2d46f6734fb5f137d4e857000342af522de19a4fe422", + "blockNumber": "0x4f44d81", + "data": "0xffffffffffffffffffffffffffffffffffffffffffffffffffffffffff410e0d0000000000000000000000000000000000000000000000000000000000bf023000000000000000000000000000000000000000010009e617418480a7bbb1834d00000000000000000000000000000000000000000000000000045f377b53b9000000000000000000000000000000000000000000000000000000000000000003", + "logIndex": "0x5", + "removed": false, + "topics": [ + "0xc42079f94a6350d7e6235f29174924f928cc2ac818eb64fed8004e115fbcca67", + "0x00000000000000000000000063242a4ea82847b20e506b63b0e2e2eff0cc6cb0", + "0x00000000000000000000000063242a4ea82847b20e506b63b0e2e2eff0cc6cb0" + ], + "transactionHash": "0x48a711af5af1500af1e2fe4911c94f482fbd2003be27422c6e39a4520695924a", + "transactionIndex": "0x1" + }, + { + "address": "0x63242a4ea82847b20e506b63b0e2e2eff0cc6cb0", + "blockHash": "0xc8e069184c9a9e083b5b2d46f6734fb5f137d4e857000342af522de19a4fe422", + "blockNumber": "0x4f44d81", + "data": "0x0000000000000000000000001150403b19315615aad1638d9dd86cd866b2f456000000000000000000000000b97ef9ef8734c71904d8002f8b6bc66dd9c48a6e0000000000000000000000009702230a8ea53601f5cd2dc00fdbc13d4df4a8c70000000000000000000000000000000000000000000000000000000000bf02300000000000000000000000000000000000000000000000000000000000bef1f3", + "logIndex": "0x6", + "removed": false, + "topics": [ + "0xa6fee24309b1d83d9ec7b9e4dbb73c6f882746efbfb26db7b7d9e9f2fb6dc95a" + ], + "transactionHash": "0x48a711af5af1500af1e2fe4911c94f482fbd2003be27422c6e39a4520695924a", + "transactionIndex": "0x1" + }, + { + "address": "0x49d5c2bdffac6ce2bfdb6640f4f80f226bc10bab", + "blockHash": "0xc8e069184c9a9e083b5b2d46f6734fb5f137d4e857000342af522de19a4fe422", + "blockNumber": "0x4f44d81", + "data": "0x0000000000000000000000000000000000000000000000000012fac6f03e3ae6", + "logIndex": "0x7", + "removed": false, + "topics": [ + "0xddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef", + "0x0000000000000000000000001abe428146795bc754170af24cfd78663f257d29", + "0x00000000000000000000000063242a4ea82847b20e506b63b0e2e2eff0cc6cb0" + ], + "transactionHash": "0x48a711af5af1500af1e2fe4911c94f482fbd2003be27422c6e39a4520695924a", + "transactionIndex": "0x1" + }, + { + "address": "0x9702230a8ea53601f5cd2dc00fdbc13d4df4a8c7", + "blockHash": "0xc8e069184c9a9e083b5b2d46f6734fb5f137d4e857000342af522de19a4fe422", + "blockNumber": "0x4f44d81", + "data": "0x0000000000000000000000000000000000000000000000000000000000bef1f3", + "logIndex": "0x8", + "removed": false, + "topics": [ + "0xddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef", + "0x00000000000000000000000063242a4ea82847b20e506b63b0e2e2eff0cc6cb0", + "0x0000000000000000000000001abe428146795bc754170af24cfd78663f257d29" + ], + "transactionHash": "0x48a711af5af1500af1e2fe4911c94f482fbd2003be27422c6e39a4520695924a", + "transactionIndex": "0x1" + }, + { + "address": "0x9702230a8ea53601f5cd2dc00fdbc13d4df4a8c7", + "blockHash": "0xc8e069184c9a9e083b5b2d46f6734fb5f137d4e857000342af522de19a4fe422", + "blockNumber": "0x4f44d81", + "data": "0x00000000000000000000000000000000000000000000000000000000000030e2", + "logIndex": "0x9", + "removed": false, + "topics": [ + "0xddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef", + "0x0000000000000000000000001abe428146795bc754170af24cfd78663f257d29", + "0x0000000000000000000000009baad5311cd37c46c6448eb980843487709e6457" + ], + "transactionHash": "0x48a711af5af1500af1e2fe4911c94f482fbd2003be27422c6e39a4520695924a", + "transactionIndex": "0x1" + }, + { + "address": "0x1abe428146795bc754170af24cfd78663f257d29", + "blockHash": "0xc8e069184c9a9e083b5b2d46f6734fb5f137d4e857000342af522de19a4fe422", + "blockNumber": "0x4f44d81", + "data": "0x00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", + "logIndex": "0xa", + "removed": false, + "topics": [ + "0x9443903d84c9719611bd4bba871daaf18a3950d00d5d78b1a2fa701f76df54ff", + "0x00000000000000000000000063242a4ea82847b20e506b63b0e2e2eff0cc6cb0" + ], + "transactionHash": "0x48a711af5af1500af1e2fe4911c94f482fbd2003be27422c6e39a4520695924a", + "transactionIndex": "0x1" + }, + { + "address": "0x1abe428146795bc754170af24cfd78663f257d29", + "blockHash": "0xc8e069184c9a9e083b5b2d46f6734fb5f137d4e857000342af522de19a4fe422", + "blockNumber": "0x4f44d81", + "data": "0xffffffffffffffffffffffffffffffffffffffffffffffffffed05390fc1c51a0000000000000000000000000000000000000000000000000000000000bef1f3000000000000000000000000000000000000000000032b96d53169ad26ed959c0000000000000000000000000000000000000000000000000047be882c49ce3ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffcf7ab", + "logIndex": "0xb", + "removed": false, + "topics": [ + "0xc42079f94a6350d7e6235f29174924f928cc2ac818eb64fed8004e115fbcca67", + "0x00000000000000000000000063242a4ea82847b20e506b63b0e2e2eff0cc6cb0", + "0x00000000000000000000000063242a4ea82847b20e506b63b0e2e2eff0cc6cb0" + ], + "transactionHash": "0x48a711af5af1500af1e2fe4911c94f482fbd2003be27422c6e39a4520695924a", + "transactionIndex": "0x1" + }, + { + "address": "0x63242a4ea82847b20e506b63b0e2e2eff0cc6cb0", + "blockHash": "0xc8e069184c9a9e083b5b2d46f6734fb5f137d4e857000342af522de19a4fe422", + "blockNumber": "0x4f44d81", + "data": "0x0000000000000000000000001abe428146795bc754170af24cfd78663f257d290000000000000000000000009702230a8ea53601f5cd2dc00fdbc13d4df4a8c700000000000000000000000049d5c2bdffac6ce2bfdb6640f4f80f226bc10bab0000000000000000000000000000000000000000000000000000000000bef1f30000000000000000000000000000000000000000000000000012fac6f03e3ae6", + "logIndex": "0xc", + "removed": false, + "topics": [ + "0xa6fee24309b1d83d9ec7b9e4dbb73c6f882746efbfb26db7b7d9e9f2fb6dc95a" + ], + "transactionHash": "0x48a711af5af1500af1e2fe4911c94f482fbd2003be27422c6e39a4520695924a", + "transactionIndex": "0x1" + }, + { + "address": "0xb31f66aa3c1e785363f0875a1b74e27b85fd66c7", + "blockHash": "0xc8e069184c9a9e083b5b2d46f6734fb5f137d4e857000342af522de19a4fe422", + "blockNumber": "0x4f44d81", + "data": "0x00000000000000000000000000000000000000000000000011eb3fd2bdfed3a4", + "logIndex": "0xd", + "removed": false, + "topics": [ + "0xddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef", + "0x000000000000000000000000840c5f0167e3a335be0938916962c38c16b948df", + "0x00000000000000000000000063242a4ea82847b20e506b63b0e2e2eff0cc6cb0" + ], + "transactionHash": "0x48a711af5af1500af1e2fe4911c94f482fbd2003be27422c6e39a4520695924a", + "transactionIndex": "0x1" + }, + { + "address": "0x49d5c2bdffac6ce2bfdb6640f4f80f226bc10bab", + "blockHash": "0xc8e069184c9a9e083b5b2d46f6734fb5f137d4e857000342af522de19a4fe422", + "blockNumber": "0x4f44d81", + "data": "0x0000000000000000000000000000000000000000000000000012fac6f03e3ae6", + "logIndex": "0xe", + "removed": false, + "topics": [ + "0xddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef", + "0x00000000000000000000000063242a4ea82847b20e506b63b0e2e2eff0cc6cb0", + "0x000000000000000000000000840c5f0167e3a335be0938916962c38c16b948df" + ], + "transactionHash": "0x48a711af5af1500af1e2fe4911c94f482fbd2003be27422c6e39a4520695924a", + "transactionIndex": "0x1" + }, + { + "address": "0x840c5f0167e3a335be0938916962c38c16b948df", + "blockHash": "0xc8e069184c9a9e083b5b2d46f6734fb5f137d4e857000342af522de19a4fe422", + "blockNumber": "0x4f44d81", + "data": "0x0000000000000000000000000000000000000000000000000012fac6f03e3ae6ffffffffffffffffffffffffffffffffffffffffffffffffee14c02d42012c5c000000000000000000000000000000000000000f8c75a208f0f7598d48ad27c700000000000000000000000000000000000000000000003f52a82e3b88e0cfe2000000000000000000000000000000000000000000000000000000000000d662", + "logIndex": "0xf", + "removed": false, + "topics": [ + "0xc42079f94a6350d7e6235f29174924f928cc2ac818eb64fed8004e115fbcca67", + "0x00000000000000000000000063242a4ea82847b20e506b63b0e2e2eff0cc6cb0", + "0x00000000000000000000000063242a4ea82847b20e506b63b0e2e2eff0cc6cb0" + ], + "transactionHash": "0x48a711af5af1500af1e2fe4911c94f482fbd2003be27422c6e39a4520695924a", + "transactionIndex": "0x1" + }, + { + "address": "0x63242a4ea82847b20e506b63b0e2e2eff0cc6cb0", + "blockHash": "0xc8e069184c9a9e083b5b2d46f6734fb5f137d4e857000342af522de19a4fe422", + "blockNumber": "0x4f44d81", + "data": "0x000000000000000000000000840c5f0167e3a335be0938916962c38c16b948df00000000000000000000000049d5c2bdffac6ce2bfdb6640f4f80f226bc10bab000000000000000000000000b31f66aa3c1e785363f0875a1b74e27b85fd66c70000000000000000000000000000000000000000000000000012fac6f03e3ae600000000000000000000000000000000000000000000000011eb3fd2bdfed3a4", + "logIndex": "0x10", + "removed": false, + "topics": [ + "0xa6fee24309b1d83d9ec7b9e4dbb73c6f882746efbfb26db7b7d9e9f2fb6dc95a" + ], + "transactionHash": "0x48a711af5af1500af1e2fe4911c94f482fbd2003be27422c6e39a4520695924a", + "transactionIndex": "0x1" + }, + { + "address": "0xb31f66aa3c1e785363f0875a1b74e27b85fd66c7", + "blockHash": "0xc8e069184c9a9e083b5b2d46f6734fb5f137d4e857000342af522de19a4fe422", + "blockNumber": "0x4f44d81", + "data": "0x00000000000000000000000000000000000000000000000011eb3fd2bdfed3a4", + "logIndex": "0x11", + "removed": false, + "topics": [ + "0x7fcf532c15f0a6db0bd6d0e038bea71d30d808c7d98cb3bf7268a95bf5081b65", + "0x00000000000000000000000063242a4ea82847b20e506b63b0e2e2eff0cc6cb0" + ], + "transactionHash": "0x48a711af5af1500af1e2fe4911c94f482fbd2003be27422c6e39a4520695924a", + "transactionIndex": "0x1" + }, + { + "address": "0x6131b5fae19ea4f9d964eac0408e4408b66337b5", + "blockHash": "0xc8e069184c9a9e083b5b2d46f6734fb5f137d4e857000342af522de19a4fe422", + "blockNumber": "0x4f44d81", + "data": "0x000000000000000000000000c590175e458b83680867afd273527ff58f74c02b000000000000000000000000b97ef9ef8734c71904d8002f8b6bc66dd9c48a6e000000000000000000000000eeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeee000000000000000000000000c590175e458b83680867afd273527ff58f74c02b0000000000000000000000000000000000000000000000000000000000bf023000000000000000000000000000000000000000000000000011eb3fd2bdfed3a4", + "logIndex": "0x12", + "removed": false, + "topics": [ + "0xd6d4f5681c246c9f42c203e287975af1601f8df8035a9251f79aab5c8f09e2f8" + ], + "transactionHash": "0x48a711af5af1500af1e2fe4911c94f482fbd2003be27422c6e39a4520695924a", + "transactionIndex": "0x1" + }, + { + "address": "0x6131b5fae19ea4f9d964eac0408e4408b66337b5", + "blockHash": "0xc8e069184c9a9e083b5b2d46f6734fb5f137d4e857000342af522de19a4fe422", + "blockNumber": "0x4f44d81", + "data": "0x00000000000000000000000063242a4ea82847b20e506b63b0e2e2eff0cc6cb000000000000000000000000000000000000000000000000011eb3fd2bdfed3a4000000000000000000000000b31f66aa3c1e785363f0875a1b74e27b85fd66c7", + "logIndex": "0x13", + "removed": false, + "topics": [ + "0xddac40937f35385a34f721af292e5a83fc5b840f722bff57c2fc71adba708c48" + ], + "transactionHash": "0x48a711af5af1500af1e2fe4911c94f482fbd2003be27422c6e39a4520695924a", + "transactionIndex": "0x1" + }, + { + "address": "0x6131b5fae19ea4f9d964eac0408e4408b66337b5", + "blockHash": "0xc8e069184c9a9e083b5b2d46f6734fb5f137d4e857000342af522de19a4fe422", + "blockNumber": "0x4f44d81", + "data": "0x000000000000000000000000000000000000000000000000000000000000002000000000000000000000000000000000000000000000000000000000000000b17b22536f75726365223a226d6574616d61736b222c22416d6f756e74496e555344223a2231322e343934363635222c22416d6f756e744f7574555344223a2231322e353031393836222c22416d6f756e744f7574223a2231323931383131333239373738363938363035222c22526f7574654944223a22663463316332306531784248424c31503a62356263653766334c6e5a4c495a7331222c2254696d657374616d70223a313737363337353334307d000000000000000000000000000000", + "logIndex": "0x14", + "removed": false, + "topics": [ + "0x095e66fa4dd6a6f7b43fb8444a7bd0edb870508c7abf639bc216efb0bcff9779" + ], + "transactionHash": "0x48a711af5af1500af1e2fe4911c94f482fbd2003be27422c6e39a4520695924a", + "transactionIndex": "0x1" + }, + { + "address": "0xb97ef9ef8734c71904d8002f8b6bc66dd9c48a6e", + "blockHash": "0xc8e069184c9a9e083b5b2d46f6734fb5f137d4e857000342af522de19a4fe422", + "blockNumber": "0x4f44d81", + "data": "0x000000000000000000000000000000000000000000000000000000000001afa2", + "logIndex": "0x15", + "removed": false, + "topics": [ + "0xddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef", + "0x000000000000000000000000c590175e458b83680867afd273527ff58f74c02b", + "0x000000000000000000000000ef320f172714eab39ef6df6ee23a29d2467b6fbf" + ], + "transactionHash": "0x48a711af5af1500af1e2fe4911c94f482fbd2003be27422c6e39a4520695924a", + "transactionIndex": "0x1" + }, + { + "address": "0x1a1ec25dc08e98e5e93f1104b5e5cdd298707d31", + "blockHash": "0xc8e069184c9a9e083b5b2d46f6734fb5f137d4e857000342af522de19a4fe422", + "blockNumber": "0x4f44d81", + "data": "0x", + "logIndex": "0x16", + "removed": false, + "topics": [ + "0xbeee1e6e7fe307ddcf84b0a16137a4430ad5e2480fc4f4a8e250ab56ccd7630d", + "0xa06d1ebec95550faee235885bf6dd56b011479008896fbe07e1c3bf19fead10e", + "0x000000000000000000000000141d32a89a1e0a5ef360034a2f60a4b917c18838" + ], + "transactionHash": "0x48a711af5af1500af1e2fe4911c94f482fbd2003be27422c6e39a4520695924a", + "transactionIndex": "0x1" + } + ], + "logsBloom": "0x000000000100000000080040000000011000800400000a0860200000200000010200000000200000004010000000000004010400200060000008020000000000002080010000010800020008000000010000000002400100002000000020000800020000000008000000000080000000000000000080040000000010000a00000000000800001001000000010000008000000010000000020000000000000000000000000000000000000000000000000000400000000000004000002000208080000002000000000000000060601000000000000400000040000002001000000020000000000000000000000200000044008000010000020008200000002120", + "status": "0x1", + "to": "0x1a1ec25dc08e98e5e93f1104b5e5cdd298707d31", + "transactionHash": "0x48a711af5af1500af1e2fe4911c94f482fbd2003be27422c6e39a4520695924a", + "transactionIndex": "0x1", + "type": "0x2" + }, + "type": "swap", + "userEditedGasLimit": false, + "userFeeLevel": "medium", + "v": "0x1", + "verifiedOnBlockchain": true + }, + { + "actionId": "1778785382584.9138", + "baseFeePerGas": "0x3ac6e8f23a", + "blockTimestamp": "0x6a061c69", + "chainId": "0x89", + "defaultGasEstimates": { + "estimateType": "medium", + "gas": "0xe6cf", + "maxFeePerGas": "0x6cc007c3de", + "maxPriorityFeePerGas": "0x1ccc4c5980" + }, + "gasFeeEstimates": { + "high": { + "maxFeePerGas": "0x82ece1b904", + "maxPriorityFeePerGas": "0x1e3eb35900" + }, + "low": { + "maxFeePerGas": "0x4cbb8d64b7", + "maxPriorityFeePerGas": "0x118244f000" + }, + "medium": { + "maxFeePerGas": "0x6cc007c3de", + "maxPriorityFeePerGas": "0x1ccc4c5980" + }, + "type": "fee-market" + }, + "gasFeeEstimatesLoaded": true, + "gasLimitNoBuffer": "0xe6cf", + "hash": "0x88b9f974cf74422e0ea46099ba70819cfe157efd0c69cebb92038d891205b55b", + "id": "8821aab0-4fc7-11f1-8307-b914f900c1b6", + "isGasFeeTokenIgnoredIfBalance": false, + "networkClientId": "polygon-mainnet", + "origin": "metamask", + "r": "0xf3e80e476118b31d2c248f044281ea8e73210789a24293cfc9d3924861bb7b90", + "rawTx": "0x02f8b281895e851ccc4c5980856cc007c3de82e6cf94c2132d05d31c914a87c6611c10748aeb04b58e8f80b844095ea7b30000000000000000000000001a1ec25dc08e98e5e93f1104b5e5cdd298707d310000000000000000000000000000000000000000000000000000000000065676c001a0f3e80e476118b31d2c248f044281ea8e73210789a24293cfc9d3924861bb7b90a03726441d512e063c2ae3804ac6e99f1eb2bc874dcf0ed9c0665fa94579838e2e", + "s": "0x3726441d512e063c2ae3804ac6e99f1eb2bc874dcf0ed9c0665fa94579838e2e", + "status": "confirmed", + "submittedTime": 1778785382904, + "time": 1778785382619, + "txParams": { + "data": "0x095ea7b30000000000000000000000001a1ec25dc08e98e5e93f1104b5e5cdd298707d310000000000000000000000000000000000000000000000000000000000065676", + "from": "0x141d32a89a1e0a5ef360034a2f60a4b917c18838", + "gas": "0xe6cf", + "gasLimit": "0xe6cf", + "maxFeePerGas": "0x6cc007c3de", + "maxPriorityFeePerGas": "0x1ccc4c5980", + "nonce": "0x5e", + "to": "0xc2132d05d31c914a87c6611c10748aeb04b58e8f", + "type": "0x2", + "value": "0x0" + }, + "txReceipt": { + "blockHash": "0x175821d5c81c31d204072c5e22fd9b7d2d7571196dd1d034746668b4b0740fc8", + "blockNumber": "0x52dbbac", + "contractAddress": null, + "cumulativeGasUsed": "0x2af2568", + "effectiveGasPrice": "0x5793354bba", + "from": "0x141d32a89a1e0a5ef360034a2f60a4b917c18838", + "gasUsed": "0xc9c2", + "logs": [ + { + "address": "0xc2132d05d31c914a87c6611c10748aeb04b58e8f", + "blockHash": "0x175821d5c81c31d204072c5e22fd9b7d2d7571196dd1d034746668b4b0740fc8", + "blockNumber": "0x52dbbac", + "blockTimestamp": "0x6a061c69", + "data": "0x0000000000000000000000000000000000000000000000000000000000065676", + "logIndex": "0x786", + "removed": false, + "topics": [ + "0x8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925", + "0x000000000000000000000000141d32a89a1e0a5ef360034a2f60a4b917c18838", + "0x0000000000000000000000001a1ec25dc08e98e5e93f1104b5e5cdd298707d31" + ], + "transactionHash": "0x88b9f974cf74422e0ea46099ba70819cfe157efd0c69cebb92038d891205b55b", + "transactionIndex": "0x8b" + }, + { + "address": "0x0000000000000000000000000000000000001010", + "blockHash": "0x175821d5c81c31d204072c5e22fd9b7d2d7571196dd1d034746668b4b0740fc8", + "blockNumber": "0x52dbbac", + "blockTimestamp": "0x6a061c69", + "data": "0x0000000000000000000000000000000000000000000000000016b23ac421530000000000000000000000000000000000000000000000000001284d4f63ed21100000000000000000000000000000000000000000001125a8650a408f319ba14c00000000000000000000000000000000000000000000000001119b149fcbce100000000000000000000000000000000000000000001125a86520f2c9f5bcf44c", + "logIndex": "0x787", + "removed": false, + "topics": [ + "0x4dfe1bbbcf077ddc3e01291eea2d5c70c2b422b415d95645b9adcfd678cb1d63", + "0x0000000000000000000000000000000000000000000000000000000000001010", + "0x000000000000000000000000141d32a89a1e0a5ef360034a2f60a4b917c18838", + "0x0000000000000000000000007ee41d8a25641000661b1ef5e6ae8a00400466b0" + ], + "transactionHash": "0x88b9f974cf74422e0ea46099ba70819cfe157efd0c69cebb92038d891205b55b", + "transactionIndex": "0x8b" + } + ], + "logsBloom": "0x00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000100008000000000000000000000200000000000010000010000000000000000800000000000000000000100000000000000000000000000000000000000000000000000000000000080000000000000000000000000080001020000000c00000000000001000010000000000000000000220000000000000000000000000000000000000000000000000000000000004000000000000000000001000000000000400000400000000000100000000000000010000000000000000000000000000000000000000000000000000000100000", + "status": "0x1", + "to": "0xc2132d05d31c914a87c6611c10748aeb04b58e8f", + "transactionHash": "0x88b9f974cf74422e0ea46099ba70819cfe157efd0c69cebb92038d891205b55b", + "transactionIndex": "0x8b", + "type": "0x2" + }, + "type": "swapApproval", + "userEditedGasLimit": false, + "userFeeLevel": "medium", + "v": "0x1", + "verifiedOnBlockchain": true + }, + { + "actionId": "1778785382907.707", + "chainId": "0x89", + "defaultGasEstimates": { + "estimateType": "medium", + "gas": "0x68e7c", + "maxFeePerGas": "0x6af84067ef", + "maxPriorityFeePerGas": "0x1d242de880" + }, + "error": { + "message": "RPC submit: insufficient funds for gas * price + value: balance 83401596480594192, tx cost 197414041754462660, overshot 114012445273868468", + "name": "Error", + "stack": "Error: RPC submit: insufficient funds for gas * price + value: balance 83401596480594192, tx cost 197414041754462660, overshot 114012445273868468\n at TransactionController._TransactionController_publishTransaction (chrome-extension://hebhblbkkdabgoldnojllkipeoacjioc/js-node_modules_metamask_s.js:47207:15)\n at async chrome-extension://hebhblbkkdabgoldnojllkipeoacjioc/js-node_modules_metamask_s.js:47893:47\n at async TransactionController._TransactionController_defaultPublishHook (chrome-extension://hebhblbkkdabgoldnojllkipeoacjioc/js-node_modules_metamask_s.js:47886:5)\n at async TransactionController._TransactionController_approveTransaction (chrome-extension://hebhblbkkdabgoldnojllkipeoacjioc/js-node_modules_metamask_s.js:47157:43)\n at async TransactionController._TransactionController_processApproval (chrome-extension://hebhblbkkdabgoldnojllkipeoacjioc/js-node_modules_metamask_s.js:47021:40)\n at async waitForHashAndReturnFinalTxMeta (chrome-extension://hebhblbkkdabgoldnojllkipeoacjioc/js-node_modules_metamask_a.js:56074:20)\n at async addTransaction (chrome-extension://hebhblbkkdabgoldnojllkipeoacjioc/js-node_modules_metamask_a.js:56083:12)\n at async submitEvmTransaction (chrome-extension://hebhblbkkdabgoldnojllkipeoacjioc/js-node_modules_metamask_a.js:56295:12)\n at async handleSingleTx (chrome-extension://hebhblbkkdabgoldnojllkipeoacjioc/js-node_modules_metamask_a.js:33557:111)\n at async submitEvmHandler (chrome-extension://hebhblbkkdabgoldnojllkipeoacjioc/js-node_modules_metamask_a.js:33620:23)" + }, + "gasFeeEstimates": { + "high": { + "maxFeePerGas": "0x7f72a92e82", + "maxPriorityFeePerGas": "0x1d7116a100" + }, + "low": { + "maxFeePerGas": "0x4b28d7615b", + "maxPriorityFeePerGas": "0x118244f000" + }, + "medium": { + "maxFeePerGas": "0x6af84067ef", + "maxPriorityFeePerGas": "0x1d242de880" + }, + "type": "fee-market" + }, + "gasFeeEstimatesLoaded": true, + "gasLimitNoBuffer": "0x68e7c", + "id": "886dcee0-4fc7-11f1-8307-b914f900c1b6", + "isGasFeeTokenIgnoredIfBalance": false, + "networkClientId": "polygon-mainnet", + "origin": "metamask", + "r": "0xb92407b5c226d704e00efa33c5044b5124c013aa28b5f2a159dac334a2029f0c", + "rawTx": "0x02f9031581895f851d242de880856af84067ef83068e7c941a1ec25dc08e98e5e93f1104b5e5cdd298707d3180b902a55f5755290000000000000000000000000000000000000000000000000000000000000080000000000000000000000000c2132d05d31c914a87c6611c10748aeb04b58e8f000000000000000000000000000000000000000000000000000000000006567600000000000000000000000000000000000000000000000000000000000000c000000000000000000000000000000000000000000000000000000000000000136f6e65496e6368563646656544796e616d69630000000000000000000000000000000000000000000000000000000000000000000000000000000000000001c0000000000000000000000000c2132d05d31c914a87c6611c10748aeb04b58e8f0000000000000000000000002791bca1f2de4661ed88a30c99a7a9449aa8417400000000000000000000000000000000000000000000000000000000000656760000000000000000000000000000000000000000000000000000000000063d9200000000000000000000000000000000000000000000000000000000000001200000000000000000000000000000000000000000000000000000000000000e2c000000000000000000000000930dedddb92fef1b4ab2665d250877339f064eac0000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000008883800a8e000000000000000000000000c2132d05d31c914a87c6611c10748aeb04b58e8f00000000000000000000000000000000000000000000000000000000000656760000000000000000000000000000000000000000000000000000000000064bac08000000000000003b8b87c020bf018fddba3b352f3d913fe1c81b846fe0f4907dcbea7c000000000000000000000000000000000000000000000000f3c001a0b92407b5c226d704e00efa33c5044b5124c013aa28b5f2a159dac334a2029f0ca039fca812679cf16ce8fd24882fbdb6d6e5b04b7de20bf00f4a7ae834b6eed76c", + "s": "0x39fca812679cf16ce8fd24882fbdb6d6e5b04b7de20bf00f4a7ae834b6eed76c", + "status": "failed", + "time": 1778785383118, + "txParams": { + "data": "0x5f5755290000000000000000000000000000000000000000000000000000000000000080000000000000000000000000c2132d05d31c914a87c6611c10748aeb04b58e8f000000000000000000000000000000000000000000000000000000000006567600000000000000000000000000000000000000000000000000000000000000c000000000000000000000000000000000000000000000000000000000000000136f6e65496e6368563646656544796e616d69630000000000000000000000000000000000000000000000000000000000000000000000000000000000000001c0000000000000000000000000c2132d05d31c914a87c6611c10748aeb04b58e8f0000000000000000000000002791bca1f2de4661ed88a30c99a7a9449aa8417400000000000000000000000000000000000000000000000000000000000656760000000000000000000000000000000000000000000000000000000000063d9200000000000000000000000000000000000000000000000000000000000001200000000000000000000000000000000000000000000000000000000000000e2c000000000000000000000000930dedddb92fef1b4ab2665d250877339f064eac0000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000008883800a8e000000000000000000000000c2132d05d31c914a87c6611c10748aeb04b58e8f00000000000000000000000000000000000000000000000000000000000656760000000000000000000000000000000000000000000000000000000000064bac08000000000000003b8b87c020bf018fddba3b352f3d913fe1c81b846fe0f4907dcbea7c000000000000000000000000000000000000000000000000f3", + "from": "0x141d32a89a1e0a5ef360034a2f60a4b917c18838", + "gas": "0x68e7c", + "gasLimit": "0x68e7c", + "maxFeePerGas": "0x6af84067ef", + "maxPriorityFeePerGas": "0x1d242de880", + "nonce": "0x5f", + "to": "0x1a1ec25dc08e98e5e93f1104b5e5cdd298707d31", + "type": "0x2", + "value": "0x0" + }, + "type": "swap", + "userEditedGasLimit": false, + "userFeeLevel": "medium", + "v": "0x1", + "verifiedOnBlockchain": false + }, + { + "actionId": "1778785542034.9695", + "chainId": "0x89", + "defaultGasEstimates": { + "estimateType": "medium", + "gas": "0x68e7c", + "maxFeePerGas": "0x6211a13261", + "maxPriorityFeePerGas": "0x141c27b430" + }, + "error": { + "message": "RPC submit: insufficient funds for gas * price + value: balance 63974383933502492, tx cost 180987375513253116, overshot 117012991579750624", + "name": "Error", + "stack": "Error: RPC submit: insufficient funds for gas * price + value: balance 63974383933502492, tx cost 180987375513253116, overshot 117012991579750624\n at TransactionController._TransactionController_publishTransaction (chrome-extension://hebhblbkkdabgoldnojllkipeoacjioc/js-node_modules_metamask_s.js:47207:15)\n at async chrome-extension://hebhblbkkdabgoldnojllkipeoacjioc/js-node_modules_metamask_s.js:47893:47\n at async TransactionController._TransactionController_defaultPublishHook (chrome-extension://hebhblbkkdabgoldnojllkipeoacjioc/js-node_modules_metamask_s.js:47886:5)\n at async TransactionController._TransactionController_approveTransaction (chrome-extension://hebhblbkkdabgoldnojllkipeoacjioc/js-node_modules_metamask_s.js:47157:43)\n at async TransactionController._TransactionController_processApproval (chrome-extension://hebhblbkkdabgoldnojllkipeoacjioc/js-node_modules_metamask_s.js:47021:40)\n at async waitForHashAndReturnFinalTxMeta (chrome-extension://hebhblbkkdabgoldnojllkipeoacjioc/js-node_modules_metamask_a.js:56074:20)\n at async addTransaction (chrome-extension://hebhblbkkdabgoldnojllkipeoacjioc/js-node_modules_metamask_a.js:56083:12)\n at async submitEvmTransaction (chrome-extension://hebhblbkkdabgoldnojllkipeoacjioc/js-node_modules_metamask_a.js:56295:12)\n at async handleSingleTx (chrome-extension://hebhblbkkdabgoldnojllkipeoacjioc/js-node_modules_metamask_a.js:33557:111)\n at async submitEvmHandler (chrome-extension://hebhblbkkdabgoldnojllkipeoacjioc/js-node_modules_metamask_a.js:33620:23)" + }, + "gasFeeEstimates": { + "high": { + "maxFeePerGas": "0x767cdd0f5b", + "maxPriorityFeePerGas": "0x14513a9660" + }, + "low": { + "maxFeePerGas": "0x4d3c3f9106", + "maxPriorityFeePerGas": "0x137cef0da0" + }, + "medium": { + "maxFeePerGas": "0x6211a13261", + "maxPriorityFeePerGas": "0x141c27b430" + }, + "type": "fee-market" + }, + "gasFeeEstimatesLoaded": true, + "gasLimitNoBuffer": "0x68e7c", + "id": "e730fe70-4fc7-11f1-a036-6759fca0f8c4", + "isGasFeeTokenIgnoredIfBalance": false, + "networkClientId": "polygon-mainnet", + "origin": "metamask", + "r": "0x1fe9a070c2d16ed408bdcc23dbe30f98d6ad15c1a4a7017edbe128948814b35", + "rawTx": "0x02f9031581895f85141c27b430856211a1326183068e7c941a1ec25dc08e98e5e93f1104b5e5cdd298707d3180b902a55f5755290000000000000000000000000000000000000000000000000000000000000080000000000000000000000000c2132d05d31c914a87c6611c10748aeb04b58e8f000000000000000000000000000000000000000000000000000000000006567600000000000000000000000000000000000000000000000000000000000000c000000000000000000000000000000000000000000000000000000000000000136f6e65496e6368563646656544796e616d69630000000000000000000000000000000000000000000000000000000000000000000000000000000000000001c0000000000000000000000000c2132d05d31c914a87c6611c10748aeb04b58e8f0000000000000000000000002791bca1f2de4661ed88a30c99a7a9449aa8417400000000000000000000000000000000000000000000000000000000000656760000000000000000000000000000000000000000000000000000000000063d9200000000000000000000000000000000000000000000000000000000000001200000000000000000000000000000000000000000000000000000000000000e2c000000000000000000000000930dedddb92fef1b4ab2665d250877339f064eac0000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000008883800a8e000000000000000000000000c2132d05d31c914a87c6611c10748aeb04b58e8f00000000000000000000000000000000000000000000000000000000000656760000000000000000000000000000000000000000000000000000000000064bac08000000000000003b8b87c020bf018fddba3b352f3d913fe1c81b846fe0f4907dcbea7c000000000000000000000000000000000000000000000000f3c001a001fe9a070c2d16ed408bdcc23dbe30f98d6ad15c1a4a7017edbe128948814b35a06f822b9d1592cd38e16efaf2d6c2603cb54fbd15f81796cca6ef2b021e44ab5f", + "s": "0x6f822b9d1592cd38e16efaf2d6c2603cb54fbd15f81796cca6ef2b021e44ab5f", + "status": "failed", + "time": 1778785542103, + "txParams": { + "data": "0x5f5755290000000000000000000000000000000000000000000000000000000000000080000000000000000000000000c2132d05d31c914a87c6611c10748aeb04b58e8f000000000000000000000000000000000000000000000000000000000006567600000000000000000000000000000000000000000000000000000000000000c000000000000000000000000000000000000000000000000000000000000000136f6e65496e6368563646656544796e616d69630000000000000000000000000000000000000000000000000000000000000000000000000000000000000001c0000000000000000000000000c2132d05d31c914a87c6611c10748aeb04b58e8f0000000000000000000000002791bca1f2de4661ed88a30c99a7a9449aa8417400000000000000000000000000000000000000000000000000000000000656760000000000000000000000000000000000000000000000000000000000063d9200000000000000000000000000000000000000000000000000000000000001200000000000000000000000000000000000000000000000000000000000000e2c000000000000000000000000930dedddb92fef1b4ab2665d250877339f064eac0000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000008883800a8e000000000000000000000000c2132d05d31c914a87c6611c10748aeb04b58e8f00000000000000000000000000000000000000000000000000000000000656760000000000000000000000000000000000000000000000000000000000064bac08000000000000003b8b87c020bf018fddba3b352f3d913fe1c81b846fe0f4907dcbea7c000000000000000000000000000000000000000000000000f3", + "from": "0x141d32a89a1e0a5ef360034a2f60a4b917c18838", + "gas": "0x68e7c", + "gasLimit": "0x68e7c", + "maxFeePerGas": "0x6211a13261", + "maxPriorityFeePerGas": "0x141c27b430", + "nonce": "0x5f", + "to": "0x1a1ec25dc08e98e5e93f1104b5e5cdd298707d31", + "type": "0x2", + "value": "0x0" + }, + "type": "swap", + "userEditedGasLimit": false, + "userFeeLevel": "medium", + "v": "0x1", + "verifiedOnBlockchain": false + }, + { + "actionId": "1778785601332.0654", + "chainId": "0x89", + "defaultGasEstimates": { + "estimateType": "medium", + "gas": "0x68e7c", + "maxFeePerGas": "0x71ff103f7c", + "maxPriorityFeePerGas": "0x233db00080" + }, + "error": { + "message": "RPC submit: insufficient funds for gas * price + value: balance 63974383933502492, tx cost 210381740470798352, overshot 146407356537295860", + "name": "Error", + "stack": "Error: RPC submit: insufficient funds for gas * price + value: balance 63974383933502492, tx cost 210381740470798352, overshot 146407356537295860\n at TransactionController._TransactionController_publishTransaction (chrome-extension://hebhblbkkdabgoldnojllkipeoacjioc/js-node_modules_metamask_s.js:47207:15)\n at async chrome-extension://hebhblbkkdabgoldnojllkipeoacjioc/js-node_modules_metamask_s.js:47893:47\n at async TransactionController._TransactionController_defaultPublishHook (chrome-extension://hebhblbkkdabgoldnojllkipeoacjioc/js-node_modules_metamask_s.js:47886:5)\n at async TransactionController._TransactionController_approveTransaction (chrome-extension://hebhblbkkdabgoldnojllkipeoacjioc/js-node_modules_metamask_s.js:47157:43)\n at async TransactionController._TransactionController_processApproval (chrome-extension://hebhblbkkdabgoldnojllkipeoacjioc/js-node_modules_metamask_s.js:47021:40)\n at async waitForHashAndReturnFinalTxMeta (chrome-extension://hebhblbkkdabgoldnojllkipeoacjioc/js-node_modules_metamask_a.js:56074:20)\n at async addTransaction (chrome-extension://hebhblbkkdabgoldnojllkipeoacjioc/js-node_modules_metamask_a.js:56083:12)\n at async submitEvmTransaction (chrome-extension://hebhblbkkdabgoldnojllkipeoacjioc/js-node_modules_metamask_a.js:56295:12)\n at async handleSingleTx (chrome-extension://hebhblbkkdabgoldnojllkipeoacjioc/js-node_modules_metamask_a.js:33557:111)\n at async submitEvmHandler (chrome-extension://hebhblbkkdabgoldnojllkipeoacjioc/js-node_modules_metamask_a.js:33620:23)" + }, + "gasFeeEstimates": { + "high": { + "maxFeePerGas": "0x86c7180d5a", + "maxPriorityFeePerGas": "0x239ab1d100" + }, + "low": { + "maxFeePerGas": "0x56954937b7", + "maxPriorityFeePerGas": "0x1c3eeef619" + }, + "medium": { + "maxFeePerGas": "0x71ff103f7c", + "maxPriorityFeePerGas": "0x233db00080" + }, + "type": "fee-market" + }, + "gasFeeEstimatesLoaded": true, + "gasLimitNoBuffer": "0x68e7c", + "id": "0aa253e0-4fc8-11f1-b8dd-23b347bd50db", + "isGasFeeTokenIgnoredIfBalance": false, + "networkClientId": "polygon-mainnet", + "origin": "metamask", + "r": "0x6eba2601f334c4f694311a6ebd85564eaa8962729e951d0f68068282445972f5", + "rawTx": "0x02f9031581895f85233db000808571ff103f7c83068e7c941a1ec25dc08e98e5e93f1104b5e5cdd298707d3180b902a55f5755290000000000000000000000000000000000000000000000000000000000000080000000000000000000000000c2132d05d31c914a87c6611c10748aeb04b58e8f000000000000000000000000000000000000000000000000000000000006567600000000000000000000000000000000000000000000000000000000000000c000000000000000000000000000000000000000000000000000000000000000136f6e65496e6368563646656544796e616d69630000000000000000000000000000000000000000000000000000000000000000000000000000000000000001c0000000000000000000000000c2132d05d31c914a87c6611c10748aeb04b58e8f0000000000000000000000002791bca1f2de4661ed88a30c99a7a9449aa8417400000000000000000000000000000000000000000000000000000000000656760000000000000000000000000000000000000000000000000000000000063d9200000000000000000000000000000000000000000000000000000000000001200000000000000000000000000000000000000000000000000000000000000e2c000000000000000000000000930dedddb92fef1b4ab2665d250877339f064eac0000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000008883800a8e000000000000000000000000c2132d05d31c914a87c6611c10748aeb04b58e8f00000000000000000000000000000000000000000000000000000000000656760000000000000000000000000000000000000000000000000000000000064bac08000000000000003b8b87c020bf018fddba3b352f3d913fe1c81b846fe0f4907dcbea7c000000000000000000000000000000000000000000000000f3c080a06eba2601f334c4f694311a6ebd85564eaa8962729e951d0f68068282445972f5a073d38bc6ba7ceed677461b3a10656e663ea36b0b577307aa07668428babaffbc", + "s": "0x73d38bc6ba7ceed677461b3a10656e663ea36b0b577307aa07668428babaffbc", + "status": "failed", + "time": 1778785601566, + "txParams": { + "data": "0x5f5755290000000000000000000000000000000000000000000000000000000000000080000000000000000000000000c2132d05d31c914a87c6611c10748aeb04b58e8f000000000000000000000000000000000000000000000000000000000006567600000000000000000000000000000000000000000000000000000000000000c000000000000000000000000000000000000000000000000000000000000000136f6e65496e6368563646656544796e616d69630000000000000000000000000000000000000000000000000000000000000000000000000000000000000001c0000000000000000000000000c2132d05d31c914a87c6611c10748aeb04b58e8f0000000000000000000000002791bca1f2de4661ed88a30c99a7a9449aa8417400000000000000000000000000000000000000000000000000000000000656760000000000000000000000000000000000000000000000000000000000063d9200000000000000000000000000000000000000000000000000000000000001200000000000000000000000000000000000000000000000000000000000000e2c000000000000000000000000930dedddb92fef1b4ab2665d250877339f064eac0000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000008883800a8e000000000000000000000000c2132d05d31c914a87c6611c10748aeb04b58e8f00000000000000000000000000000000000000000000000000000000000656760000000000000000000000000000000000000000000000000000000000064bac08000000000000003b8b87c020bf018fddba3b352f3d913fe1c81b846fe0f4907dcbea7c000000000000000000000000000000000000000000000000f3", + "from": "0x141d32a89a1e0a5ef360034a2f60a4b917c18838", + "gas": "0x68e7c", + "gasLimit": "0x68e7c", + "maxFeePerGas": "0x71ff103f7c", + "maxPriorityFeePerGas": "0x233db00080", + "nonce": "0x5f", + "to": "0x1a1ec25dc08e98e5e93f1104b5e5cdd298707d31", + "type": "0x2", + "value": "0x0" + }, + "type": "swap", + "userEditedGasLimit": false, + "userFeeLevel": "medium", + "v": "0x0", + "verifiedOnBlockchain": false + }, + { + "actionId": "1778785716284.8086", + "chainId": "0x89", + "defaultGasEstimates": { + "estimateType": "medium", + "gas": "0x68e7c", + "maxFeePerGas": "0x6fbd7f483c", + "maxPriorityFeePerGas": "0x2151174400" + }, + "error": { + "message": "RPC submit: insufficient funds for gas * price + value: balance 63974383933502492, tx cost 206218044708504848, overshot 142243660775002356", + "name": "Error", + "stack": "Error: RPC submit: insufficient funds for gas * price + value: balance 63974383933502492, tx cost 206218044708504848, overshot 142243660775002356\n at TransactionController._TransactionController_publishTransaction (chrome-extension://hebhblbkkdabgoldnojllkipeoacjioc/js-node_modules_metamask_s.js:47207:15)\n at async chrome-extension://hebhblbkkdabgoldnojllkipeoacjioc/js-node_modules_metamask_s.js:47893:47\n at async TransactionController._TransactionController_defaultPublishHook (chrome-extension://hebhblbkkdabgoldnojllkipeoacjioc/js-node_modules_metamask_s.js:47886:5)\n at async TransactionController._TransactionController_approveTransaction (chrome-extension://hebhblbkkdabgoldnojllkipeoacjioc/js-node_modules_metamask_s.js:47157:43)\n at async TransactionController._TransactionController_processApproval (chrome-extension://hebhblbkkdabgoldnojllkipeoacjioc/js-node_modules_metamask_s.js:47021:40)\n at async waitForHashAndReturnFinalTxMeta (chrome-extension://hebhblbkkdabgoldnojllkipeoacjioc/js-node_modules_metamask_a.js:56074:20)\n at async addTransaction (chrome-extension://hebhblbkkdabgoldnojllkipeoacjioc/js-node_modules_metamask_a.js:56083:12)\n at async submitEvmTransaction (chrome-extension://hebhblbkkdabgoldnojllkipeoacjioc/js-node_modules_metamask_a.js:56295:12)\n at async handleSingleTx (chrome-extension://hebhblbkkdabgoldnojllkipeoacjioc/js-node_modules_metamask_a.js:33557:111)\n at async submitEvmHandler (chrome-extension://hebhblbkkdabgoldnojllkipeoacjioc/js-node_modules_metamask_a.js:33620:23)" + }, + "gasFeeEstimates": { + "high": { + "maxFeePerGas": "0x846a6b9213", + "maxPriorityFeePerGas": "0x21a9050800" + }, + "low": { + "maxFeePerGas": "0x56e06d966d", + "maxPriorityFeePerGas": "0x1cc9041808" + }, + "medium": { + "maxFeePerGas": "0x6fbd7f483c", + "maxPriorityFeePerGas": "0x2151174400" + }, + "type": "fee-market" + }, + "gasFeeEstimatesLoaded": true, + "gasLimitNoBuffer": "0x68e7c", + "id": "4f070670-4fc8-11f1-b80b-f93297e5f743", + "isGasFeeTokenIgnoredIfBalance": false, + "networkClientId": "polygon-mainnet", + "origin": "metamask", + "r": "0xf178f41fba0b5b8297c360cd3170b513b58c689bf87cd219bfd1d09844b01e9b", + "rawTx": "0x02f9031581895f852151174400856fbd7f483c83068e7c941a1ec25dc08e98e5e93f1104b5e5cdd298707d3180b902a55f5755290000000000000000000000000000000000000000000000000000000000000080000000000000000000000000c2132d05d31c914a87c6611c10748aeb04b58e8f000000000000000000000000000000000000000000000000000000000006567600000000000000000000000000000000000000000000000000000000000000c000000000000000000000000000000000000000000000000000000000000000136f6e65496e6368563646656544796e616d69630000000000000000000000000000000000000000000000000000000000000000000000000000000000000001c0000000000000000000000000c2132d05d31c914a87c6611c10748aeb04b58e8f0000000000000000000000002791bca1f2de4661ed88a30c99a7a9449aa8417400000000000000000000000000000000000000000000000000000000000656760000000000000000000000000000000000000000000000000000000000063d9200000000000000000000000000000000000000000000000000000000000001200000000000000000000000000000000000000000000000000000000000000e2c000000000000000000000000930dedddb92fef1b4ab2665d250877339f064eac0000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000008883800a8e000000000000000000000000c2132d05d31c914a87c6611c10748aeb04b58e8f00000000000000000000000000000000000000000000000000000000000656760000000000000000000000000000000000000000000000000000000000064bac08000000000000003b8b87c020bf018fddba3b352f3d913fe1c81b846fe0f4907dcbea7c000000000000000000000000000000000000000000000000f3c080a0f178f41fba0b5b8297c360cd3170b513b58c689bf87cd219bfd1d09844b01e9ba00c2d3acec3136083d5456169d062f8843d7926edeff6a2d3a136de62de97e04a", + "s": "0xc2d3acec3136083d5456169d062f8843d7926edeff6a2d3a136de62de97e04a", + "status": "failed", + "time": 1778785716311, + "txParams": { + "data": "0x5f5755290000000000000000000000000000000000000000000000000000000000000080000000000000000000000000c2132d05d31c914a87c6611c10748aeb04b58e8f000000000000000000000000000000000000000000000000000000000006567600000000000000000000000000000000000000000000000000000000000000c000000000000000000000000000000000000000000000000000000000000000136f6e65496e6368563646656544796e616d69630000000000000000000000000000000000000000000000000000000000000000000000000000000000000001c0000000000000000000000000c2132d05d31c914a87c6611c10748aeb04b58e8f0000000000000000000000002791bca1f2de4661ed88a30c99a7a9449aa8417400000000000000000000000000000000000000000000000000000000000656760000000000000000000000000000000000000000000000000000000000063d9200000000000000000000000000000000000000000000000000000000000001200000000000000000000000000000000000000000000000000000000000000e2c000000000000000000000000930dedddb92fef1b4ab2665d250877339f064eac0000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000008883800a8e000000000000000000000000c2132d05d31c914a87c6611c10748aeb04b58e8f00000000000000000000000000000000000000000000000000000000000656760000000000000000000000000000000000000000000000000000000000064bac08000000000000003b8b87c020bf018fddba3b352f3d913fe1c81b846fe0f4907dcbea7c000000000000000000000000000000000000000000000000f3", + "from": "0x141d32a89a1e0a5ef360034a2f60a4b917c18838", + "gas": "0x68e7c", + "gasLimit": "0x68e7c", + "maxFeePerGas": "0x6fbd7f483c", + "maxPriorityFeePerGas": "0x2151174400", + "nonce": "0x5f", + "to": "0x1a1ec25dc08e98e5e93f1104b5e5cdd298707d31", + "type": "0x2", + "value": "0x0" + }, + "type": "swap", + "userEditedGasLimit": false, + "userFeeLevel": "medium", + "v": "0x0", + "verifiedOnBlockchain": false + }, + { + "actionId": "1778786350483.7222", + "chainId": "0x89", + "defaultGasEstimates": { + "estimateType": "medium", + "gas": "0x68e7c", + "maxFeePerGas": "0x6dc1abae6e", + "maxPriorityFeePerGas": "0x1dd0028e40" + }, + "error": { + "message": "RPC submit: insufficient funds for gas * price + value: balance 63974383933502492, tx cost 202557104970367304, overshot 138582721036864812", + "name": "Error", + "stack": "Error: RPC submit: insufficient funds for gas * price + value: balance 63974383933502492, tx cost 202557104970367304, overshot 138582721036864812\n at TransactionController._TransactionController_publishTransaction (chrome-extension://hebhblbkkdabgoldnojllkipeoacjioc/js-node_modules_metamask_s.js:47207:15)\n at async chrome-extension://hebhblbkkdabgoldnojllkipeoacjioc/js-node_modules_metamask_s.js:47893:47\n at async TransactionController._TransactionController_defaultPublishHook (chrome-extension://hebhblbkkdabgoldnojllkipeoacjioc/js-node_modules_metamask_s.js:47886:5)\n at async TransactionController._TransactionController_approveTransaction (chrome-extension://hebhblbkkdabgoldnojllkipeoacjioc/js-node_modules_metamask_s.js:47157:43)\n at async TransactionController._TransactionController_processApproval (chrome-extension://hebhblbkkdabgoldnojllkipeoacjioc/js-node_modules_metamask_s.js:47021:40)\n at async waitForHashAndReturnFinalTxMeta (chrome-extension://hebhblbkkdabgoldnojllkipeoacjioc/js-node_modules_metamask_a.js:56077:20)\n at async addTransaction (chrome-extension://hebhblbkkdabgoldnojllkipeoacjioc/js-node_modules_metamask_a.js:56086:12)\n at async submitEvmTransaction (chrome-extension://hebhblbkkdabgoldnojllkipeoacjioc/js-node_modules_metamask_a.js:56299:12)\n at async handleSingleTx (chrome-extension://hebhblbkkdabgoldnojllkipeoacjioc/js-node_modules_metamask_a.js:33557:111)\n at async submitEvmHandler (chrome-extension://hebhblbkkdabgoldnojllkipeoacjioc/js-node_modules_metamask_a.js:33620:23)" + }, + "gasFeeEstimates": { + "high": { + "maxFeePerGas": "0x82ca435ecd", + "maxPriorityFeePerGas": "0x1e1eb0c480" + }, + "low": { + "maxFeePerGas": "0x56da569e8f", + "maxPriorityFeePerGas": "0x1ba296f880" + }, + "medium": { + "maxFeePerGas": "0x6dc1abae6e", + "maxPriorityFeePerGas": "0x1dd0028e40" + }, + "type": "fee-market" + }, + "gasFeeEstimatesLoaded": true, + "gasLimitNoBuffer": "0x68e7c", + "id": "c909cec0-4fc9-11f1-ab6a-195e0938ee4c", + "isGasFeeTokenIgnoredIfBalance": false, + "networkClientId": "polygon-mainnet", + "origin": "metamask", + "r": "0x6f11e90718e99e95ce7f925beaaef8c2ea4abebf0aaed9cc5e7fd8abadf78d3e", + "rawTx": "0x02f9031581895f851dd0028e40856dc1abae6e83068e7c941a1ec25dc08e98e5e93f1104b5e5cdd298707d3180b902a55f5755290000000000000000000000000000000000000000000000000000000000000080000000000000000000000000c2132d05d31c914a87c6611c10748aeb04b58e8f000000000000000000000000000000000000000000000000000000000006567600000000000000000000000000000000000000000000000000000000000000c000000000000000000000000000000000000000000000000000000000000000136f6e65496e6368563646656544796e616d69630000000000000000000000000000000000000000000000000000000000000000000000000000000000000001c0000000000000000000000000c2132d05d31c914a87c6611c10748aeb04b58e8f0000000000000000000000002791bca1f2de4661ed88a30c99a7a9449aa8417400000000000000000000000000000000000000000000000000000000000656760000000000000000000000000000000000000000000000000000000000063d9200000000000000000000000000000000000000000000000000000000000001200000000000000000000000000000000000000000000000000000000000000e2c000000000000000000000000930dedddb92fef1b4ab2665d250877339f064eac0000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000008883800a8e000000000000000000000000c2132d05d31c914a87c6611c10748aeb04b58e8f00000000000000000000000000000000000000000000000000000000000656760000000000000000000000000000000000000000000000000000000000064bac08000000000000003b8b87c020bf018fddba3b352f3d913fe1c81b846fe0f4907dcbea7c000000000000000000000000000000000000000000000000f3c080a06f11e90718e99e95ce7f925beaaef8c2ea4abebf0aaed9cc5e7fd8abadf78d3ea00eb87bb26446df2bb1bcab44e7a416086e832dc2e58cd5d886aaca01c620be82", + "s": "0xeb87bb26446df2bb1bcab44e7a416086e832dc2e58cd5d886aaca01c620be82", + "status": "failed", + "time": 1778786350508, + "txParams": { + "data": "0x5f5755290000000000000000000000000000000000000000000000000000000000000080000000000000000000000000c2132d05d31c914a87c6611c10748aeb04b58e8f000000000000000000000000000000000000000000000000000000000006567600000000000000000000000000000000000000000000000000000000000000c000000000000000000000000000000000000000000000000000000000000000136f6e65496e6368563646656544796e616d69630000000000000000000000000000000000000000000000000000000000000000000000000000000000000001c0000000000000000000000000c2132d05d31c914a87c6611c10748aeb04b58e8f0000000000000000000000002791bca1f2de4661ed88a30c99a7a9449aa8417400000000000000000000000000000000000000000000000000000000000656760000000000000000000000000000000000000000000000000000000000063d9200000000000000000000000000000000000000000000000000000000000001200000000000000000000000000000000000000000000000000000000000000e2c000000000000000000000000930dedddb92fef1b4ab2665d250877339f064eac0000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000008883800a8e000000000000000000000000c2132d05d31c914a87c6611c10748aeb04b58e8f00000000000000000000000000000000000000000000000000000000000656760000000000000000000000000000000000000000000000000000000000064bac08000000000000003b8b87c020bf018fddba3b352f3d913fe1c81b846fe0f4907dcbea7c000000000000000000000000000000000000000000000000f3", + "from": "0x141d32a89a1e0a5ef360034a2f60a4b917c18838", + "gas": "0x68e7c", + "gasLimit": "0x68e7c", + "maxFeePerGas": "0x6dc1abae6e", + "maxPriorityFeePerGas": "0x1dd0028e40", + "nonce": "0x5f", + "to": "0x1a1ec25dc08e98e5e93f1104b5e5cdd298707d31", + "type": "0x2", + "value": "0x0" + }, + "type": "swap", + "userEditedGasLimit": false, + "userFeeLevel": "medium", + "v": "0x0", + "verifiedOnBlockchain": false + }, + { + "actionId": "1778786574185.9194", + "chainId": "0x89", + "defaultGasEstimates": { + "estimateType": "medium", + "gas": "0x68e7c", + "maxFeePerGas": "0x69aab09961", + "maxPriorityFeePerGas": "0x1ada5eb6f6" + }, + "error": { + "message": "RPC submit: insufficient funds for gas * price + value: balance 63974383933502492, tx cost 195009383290378492, overshot 131034999356876000", + "name": "Error", + "stack": "Error: RPC submit: insufficient funds for gas * price + value: balance 63974383933502492, tx cost 195009383290378492, overshot 131034999356876000\n at TransactionController._TransactionController_publishTransaction (chrome-extension://hebhblbkkdabgoldnojllkipeoacjioc/js-node_modules_metamask_s.js:47207:15)\n at async chrome-extension://hebhblbkkdabgoldnojllkipeoacjioc/js-node_modules_metamask_s.js:47893:47\n at async TransactionController._TransactionController_defaultPublishHook (chrome-extension://hebhblbkkdabgoldnojllkipeoacjioc/js-node_modules_metamask_s.js:47886:5)\n at async TransactionController._TransactionController_approveTransaction (chrome-extension://hebhblbkkdabgoldnojllkipeoacjioc/js-node_modules_metamask_s.js:47157:43)\n at async TransactionController._TransactionController_processApproval (chrome-extension://hebhblbkkdabgoldnojllkipeoacjioc/js-node_modules_metamask_s.js:47021:40)\n at async waitForHashAndReturnFinalTxMeta (chrome-extension://hebhblbkkdabgoldnojllkipeoacjioc/js-node_modules_metamask_a.js:56078:20)\n at async addTransaction (chrome-extension://hebhblbkkdabgoldnojllkipeoacjioc/js-node_modules_metamask_a.js:56087:12)\n at async submitEvmTransaction (chrome-extension://hebhblbkkdabgoldnojllkipeoacjioc/js-node_modules_metamask_a.js:56300:12)\n at async handleSingleTx (chrome-extension://hebhblbkkdabgoldnojllkipeoacjioc/js-node_modules_metamask_a.js:33557:111)\n at async submitEvmHandler (chrome-extension://hebhblbkkdabgoldnojllkipeoacjioc/js-node_modules_metamask_a.js:33620:23)" + }, + "gasFeeEstimates": { + "high": { + "maxFeePerGas": "0x882f0a9fd2", + "maxPriorityFeePerGas": "0x24efd2eb00" + }, + "low": { + "maxFeePerGas": "0x4e13f99e03", + "maxPriorityFeePerGas": "0x13b28d8e00" + }, + "medium": { + "maxFeePerGas": "0x69aab09961", + "maxPriorityFeePerGas": "0x1ada5eb6f6" + }, + "type": "fee-market" + }, + "gasFeeEstimatesLoaded": true, + "gasLimitNoBuffer": "0x68e7c", + "id": "4e681c70-4fca-11f1-9521-1d53fa8fa56d", + "isGasFeeTokenIgnoredIfBalance": false, + "networkClientId": "polygon-mainnet", + "origin": "metamask", + "r": "0x9308c6e4ea4a9dddadcb9e1c76846d0903232eba63743635ff00ceba8468aa4e", + "rawTx": "0x02f9031581895f851ada5eb6f68569aab0996183068e7c941a1ec25dc08e98e5e93f1104b5e5cdd298707d3180b902a55f5755290000000000000000000000000000000000000000000000000000000000000080000000000000000000000000c2132d05d31c914a87c6611c10748aeb04b58e8f000000000000000000000000000000000000000000000000000000000006567600000000000000000000000000000000000000000000000000000000000000c000000000000000000000000000000000000000000000000000000000000000136f6e65496e6368563646656544796e616d69630000000000000000000000000000000000000000000000000000000000000000000000000000000000000001c0000000000000000000000000c2132d05d31c914a87c6611c10748aeb04b58e8f0000000000000000000000002791bca1f2de4661ed88a30c99a7a9449aa8417400000000000000000000000000000000000000000000000000000000000656760000000000000000000000000000000000000000000000000000000000063d9200000000000000000000000000000000000000000000000000000000000001200000000000000000000000000000000000000000000000000000000000000e2c000000000000000000000000930dedddb92fef1b4ab2665d250877339f064eac0000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000008883800a8e000000000000000000000000c2132d05d31c914a87c6611c10748aeb04b58e8f00000000000000000000000000000000000000000000000000000000000656760000000000000000000000000000000000000000000000000000000000064bac08000000000000003b8b87c020bf018fddba3b352f3d913fe1c81b846fe0f4907dcbea7c000000000000000000000000000000000000000000000000f3c001a09308c6e4ea4a9dddadcb9e1c76846d0903232eba63743635ff00ceba8468aa4ea02bc4b95ea533dfb1f080d0c061972af51e9139ccee38836279b93db278ff79ca", + "s": "0x2bc4b95ea533dfb1f080d0c061972af51e9139ccee38836279b93db278ff79ca", + "status": "failed", + "time": 1778786574263, + "txParams": { + "data": "0x5f5755290000000000000000000000000000000000000000000000000000000000000080000000000000000000000000c2132d05d31c914a87c6611c10748aeb04b58e8f000000000000000000000000000000000000000000000000000000000006567600000000000000000000000000000000000000000000000000000000000000c000000000000000000000000000000000000000000000000000000000000000136f6e65496e6368563646656544796e616d69630000000000000000000000000000000000000000000000000000000000000000000000000000000000000001c0000000000000000000000000c2132d05d31c914a87c6611c10748aeb04b58e8f0000000000000000000000002791bca1f2de4661ed88a30c99a7a9449aa8417400000000000000000000000000000000000000000000000000000000000656760000000000000000000000000000000000000000000000000000000000063d9200000000000000000000000000000000000000000000000000000000000001200000000000000000000000000000000000000000000000000000000000000e2c000000000000000000000000930dedddb92fef1b4ab2665d250877339f064eac0000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000008883800a8e000000000000000000000000c2132d05d31c914a87c6611c10748aeb04b58e8f00000000000000000000000000000000000000000000000000000000000656760000000000000000000000000000000000000000000000000000000000064bac08000000000000003b8b87c020bf018fddba3b352f3d913fe1c81b846fe0f4907dcbea7c000000000000000000000000000000000000000000000000f3", + "from": "0x141d32a89a1e0a5ef360034a2f60a4b917c18838", + "gas": "0x68e7c", + "gasLimit": "0x68e7c", + "maxFeePerGas": "0x69aab09961", + "maxPriorityFeePerGas": "0x1ada5eb6f6", + "nonce": "0x5f", + "to": "0x1a1ec25dc08e98e5e93f1104b5e5cdd298707d31", + "type": "0x2", + "value": "0x0" + }, + "type": "swap", + "userEditedGasLimit": false, + "userFeeLevel": "medium", + "v": "0x1", + "verifiedOnBlockchain": false + }, + { + "actionId": "1778791682371.7283", + "chainId": "0x89", + "defaultGasEstimates": { + "estimateType": "medium", + "gas": "0x68e7c", + "maxFeePerGas": "0x6ce9826e7f", + "maxPriorityFeePerGas": "0x1cc6768c1e" + }, + "error": { + "message": "RPC submit: insufficient funds for gas * price + value: balance 63974383933502492, tx cost 200998791698052996, overshot 137024407764550504", + "name": "Error", + "stack": "Error: RPC submit: insufficient funds for gas * price + value: balance 63974383933502492, tx cost 200998791698052996, overshot 137024407764550504\n at TransactionController._TransactionController_publishTransaction (chrome-extension://hebhblbkkdabgoldnojllkipeoacjioc/js-node_modules_metamask_s.js:47207:15)\n at async chrome-extension://hebhblbkkdabgoldnojllkipeoacjioc/js-node_modules_metamask_s.js:47893:47\n at async TransactionController._TransactionController_defaultPublishHook (chrome-extension://hebhblbkkdabgoldnojllkipeoacjioc/js-node_modules_metamask_s.js:47886:5)\n at async TransactionController._TransactionController_approveTransaction (chrome-extension://hebhblbkkdabgoldnojllkipeoacjioc/js-node_modules_metamask_s.js:47157:43)\n at async TransactionController._TransactionController_processApproval (chrome-extension://hebhblbkkdabgoldnojllkipeoacjioc/js-node_modules_metamask_s.js:47021:40)\n at async waitForHashAndReturnFinalTxMeta (chrome-extension://hebhblbkkdabgoldnojllkipeoacjioc/js-node_modules_metamask_a.js:56083:20)\n at async addTransaction (chrome-extension://hebhblbkkdabgoldnojllkipeoacjioc/js-node_modules_metamask_a.js:56092:12)\n at async submitEvmTransaction (chrome-extension://hebhblbkkdabgoldnojllkipeoacjioc/js-node_modules_metamask_a.js:56305:12)\n at async handleSingleTx (chrome-extension://hebhblbkkdabgoldnojllkipeoacjioc/js-node_modules_metamask_a.js:33557:111)\n at async submitEvmHandler (chrome-extension://hebhblbkkdabgoldnojllkipeoacjioc/js-node_modules_metamask_a.js:33620:23)" + }, + "gasFeeEstimates": { + "high": { + "maxFeePerGas": "0x84938e1f12", + "maxPriorityFeePerGas": "0x1fa9cb0200" + }, + "low": { + "maxFeePerGas": "0x4dafe24f0b", + "maxPriorityFeePerGas": "0x12538da75b" + }, + "medium": { + "maxFeePerGas": "0x6ce9826e7f", + "maxPriorityFeePerGas": "0x1cc6768c1e" + }, + "type": "fee-market" + }, + "gasFeeEstimatesLoaded": true, + "gasLimitNoBuffer": "0x68e7c", + "id": "331732b0-4fd6-11f1-935b-b583734c346f", + "isGasFeeTokenIgnoredIfBalance": false, + "networkClientId": "polygon-mainnet", + "origin": "metamask", + "r": "0x16afa28c200359e378c1fb52587196476d0394f9a400a3c3f3ec3afda266703e", + "rawTx": "0x02f9031581895f851cc6768c1e856ce9826e7f83068e7c941a1ec25dc08e98e5e93f1104b5e5cdd298707d3180b902a55f5755290000000000000000000000000000000000000000000000000000000000000080000000000000000000000000c2132d05d31c914a87c6611c10748aeb04b58e8f000000000000000000000000000000000000000000000000000000000006567600000000000000000000000000000000000000000000000000000000000000c000000000000000000000000000000000000000000000000000000000000000136f6e65496e6368563646656544796e616d69630000000000000000000000000000000000000000000000000000000000000000000000000000000000000001c0000000000000000000000000c2132d05d31c914a87c6611c10748aeb04b58e8f0000000000000000000000002791bca1f2de4661ed88a30c99a7a9449aa8417400000000000000000000000000000000000000000000000000000000000656760000000000000000000000000000000000000000000000000000000000063dc900000000000000000000000000000000000000000000000000000000000001200000000000000000000000000000000000000000000000000000000000000e2c000000000000000000000000930dedddb92fef1b4ab2665d250877339f064eac0000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000008883800a8e000000000000000000000000c2132d05d31c914a87c6611c10748aeb04b58e8f00000000000000000000000000000000000000000000000000000000000656760000000000000000000000000000000000000000000000000000000000064be308000000000000003b8b87c020bf018fddba3b352f3d913fe1c81b846fe0f4907dcbea7c00000000000000000000000000000000000000000000000086c080a016afa28c200359e378c1fb52587196476d0394f9a400a3c3f3ec3afda266703ea044dd6b97ad15a415c7e759187eee6d231d39adba74aa758363cb6a39e2275d03", + "s": "0x44dd6b97ad15a415c7e759187eee6d231d39adba74aa758363cb6a39e2275d03", + "status": "failed", + "time": 1778791682395, + "txParams": { + "data": "0x5f5755290000000000000000000000000000000000000000000000000000000000000080000000000000000000000000c2132d05d31c914a87c6611c10748aeb04b58e8f000000000000000000000000000000000000000000000000000000000006567600000000000000000000000000000000000000000000000000000000000000c000000000000000000000000000000000000000000000000000000000000000136f6e65496e6368563646656544796e616d69630000000000000000000000000000000000000000000000000000000000000000000000000000000000000001c0000000000000000000000000c2132d05d31c914a87c6611c10748aeb04b58e8f0000000000000000000000002791bca1f2de4661ed88a30c99a7a9449aa8417400000000000000000000000000000000000000000000000000000000000656760000000000000000000000000000000000000000000000000000000000063dc900000000000000000000000000000000000000000000000000000000000001200000000000000000000000000000000000000000000000000000000000000e2c000000000000000000000000930dedddb92fef1b4ab2665d250877339f064eac0000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000008883800a8e000000000000000000000000c2132d05d31c914a87c6611c10748aeb04b58e8f00000000000000000000000000000000000000000000000000000000000656760000000000000000000000000000000000000000000000000000000000064be308000000000000003b8b87c020bf018fddba3b352f3d913fe1c81b846fe0f4907dcbea7c00000000000000000000000000000000000000000000000086", + "from": "0x141d32a89a1e0a5ef360034a2f60a4b917c18838", + "gas": "0x68e7c", + "gasLimit": "0x68e7c", + "maxFeePerGas": "0x6ce9826e7f", + "maxPriorityFeePerGas": "0x1cc6768c1e", + "nonce": "0x5f", + "to": "0x1a1ec25dc08e98e5e93f1104b5e5cdd298707d31", + "type": "0x2", + "value": "0x0" + }, + "type": "swap", + "userEditedGasLimit": false, + "userFeeLevel": "medium", + "v": "0x0", + "verifiedOnBlockchain": false + }, + { + "baseFeePerGas": "0x3abcbe16cb", + "batchId": "0x19e286f5d28", + "blockTimestamp": "0x6a063dcb", + "chainId": "0x89", + "defaultGasEstimates": { + "estimateType": "medium", + "gas": "0x10f954", + "maxFeePerGas": "0x61619d10c2", + "maxPriorityFeePerGas": "0x124b230e80" + }, + "gasFeeEstimates": { + "high": { + "maxFeePerGas": "0x7612fad5c5", + "maxPriorityFeePerGas": "0x127b6aad00" + }, + "low": { + "maxFeePerGas": "0x462f0aa45e", + "maxPriorityFeePerGas": "0xb99a6c89f" + }, + "medium": { + "maxFeePerGas": "0x61619d10c2", + "maxPriorityFeePerGas": "0x124b230e80" + }, + "type": "fee-market" + }, + "gasFeeEstimatesLoaded": true, + "gasLimitNoBuffer": "0xb50e3", + "hash": "0xa409941b8fb0650254d6f73e20530bae227a62bf40487ff5236fdfd8f3d79d0e", + "id": "6c056100-4fdb-11f1-b40a-151a477935d3", + "isGasFeeIncluded": true, + "isGasFeeSponsored": false, + "isGasFeeTokenIgnoredIfBalance": false, + "nestedTransactions": [ + { + "data": "0x5f5755290000000000000000000000000000000000000000000000000000000000000080000000000000000000000000c2132d05d31c914a87c6611c10748aeb04b58e8f000000000000000000000000000000000000000000000000000000000006567600000000000000000000000000000000000000000000000000000000000000c000000000000000000000000000000000000000000000000000000000000000136f6e65496e6368563646656544796e616d69630000000000000000000000000000000000000000000000000000000000000000000000000000000000000001c0000000000000000000000000c2132d05d31c914a87c6611c10748aeb04b58e8f0000000000000000000000002791bca1f2de4661ed88a30c99a7a9449aa8417400000000000000000000000000000000000000000000000000000000000656760000000000000000000000000000000000000000000000000000000000063de500000000000000000000000000000000000000000000000000000000000001200000000000000000000000000000000000000000000000000000000000000e2d000000000000000000000000930dedddb92fef1b4ab2665d250877339f064eac0000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000008883800a8e000000000000000000000000c2132d05d31c914a87c6611c10748aeb04b58e8f00000000000000000000000000000000000000000000000000000000000656760000000000000000000000000000000000000000000000000000000000064c0008000000000000003b8b87c020bf018fddba3b352f3d913fe1c81b846fe0f4907dcbea7c00000000000000000000000000000000000000000000000069", + "from": "0x141d32a89a1e0a5ef360034a2f60a4b917c18838", + "to": "0x1a1ec25DC08e98e5E93F1104B5e5cdD298707d31", + "type": "swap", + "value": "0x0" + }, + { + "data": "0x095ea7b30000000000000000000000001a1ec25dc08e98e5e93f1104b5e5cdd298707d31000000000000000000000000000000000000000000000000072ce120a34f6940", + "from": "0x141d32a89a1e0a5ef360034a2f60a4b917c18838", + "to": "0xb33eaad8d922b1083446dc23f610c2567fb5180f", + "type": "swapApproval", + "value": "0x0" + }, + { + "data": "0x5f5755290000000000000000000000000000000000000000000000000000000000000080000000000000000000000000b33eaad8d922b1083446dc23f610c2567fb5180f000000000000000000000000000000000000000000000000072ce120a34f694000000000000000000000000000000000000000000000000000000000000000c000000000000000000000000000000000000000000000000000000000000000136f6e65496e6368563646656544796e616d69630000000000000000000000000000000000000000000000000000000000000000000000000000000000000001e0000000000000000000000000b33eaad8d922b1083446dc23f610c2567fb5180f0000000000000000000000002791bca1f2de4661ed88a30c99a7a9449aa84174000000000000000000000000000000000000000000000000072ce120a34f694000000000000000000000000000000000000000000000000000000000001d30d60000000000000000000000000000000000000000000000000000000000000120000000000000000000000000000000000000000000000000000000000000424b000000000000000000000000930dedddb92fef1b4ab2665d250877339f064eac000000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000000000a88770ba91000000000000000000000000b33eaad8d922b1083446dc23f610c2567fb5180f000000000000000000000000000000000000000000000000072ce120a34f694000000000000000000000000000000000000000000000000000000000001d72cc08000000000000003b6d0340b5e1a07c9b6ab3bee8d9bf4066d324c5da89c07f00000000000000003b6d03407d51bad48d253dae37cc82cad07f73849286deec7dcbea7c0000000000000000000000000000000000000000000000005c", + "from": "0x141d32a89a1e0a5ef360034a2f60a4b917c18838", + "to": "0x1a1ec25DC08e98e5E93F1104B5e5cdD298707d31", + "type": "swap", + "value": "0x0" + }, + { + "data": "0x095ea7b30000000000000000000000001a1ec25dc08e98e5e93f1104b5e5cdd298707d310000000000000000000000000000000000000000000000000161c7f85ff8bef6", + "from": "0x141d32a89a1e0a5ef360034a2f60a4b917c18838", + "to": "0x53e0bca35ec356bd5dddfebbd1fc0fd03fabad39", + "type": "swapApproval", + "value": "0x0" + }, + { + "data": "0x5f575529000000000000000000000000000000000000000000000000000000000000008000000000000000000000000053e0bca35ec356bd5dddfebbd1fc0fd03fabad390000000000000000000000000000000000000000000000000161c7f85ff8bef600000000000000000000000000000000000000000000000000000000000000c00000000000000000000000000000000000000000000000000000000000000018756e69737761705065726d69743246656544796e616d69630000000000000000000000000000000000000000000000000000000000000000000000000000034000000000000000000000000053e0bca35ec356bd5dddfebbd1fc0fd03fabad390000000000000000000000002791bca1f2de4661ed88a30c99a7a9449aa841740000000000000000000000000000000000000000000000000161c7f85ff8bef600000000000000000000000000000000000000000000000000000000000fce4c000000000000000000000000000000000000000000000000000000000000012000000000000000000000000000000000000000000000000000000000000023e5000000000000000000000000930dedddb92fef1b4ab2665d250877339f064eac0000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000020e3593564c000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000000a0000000000000000000000000000000000000000000000000000000006a0644b400000000000000000000000000000000000000000000000000000000000000010000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000000000200000000000000000000000000000000000000000000000000000000000000100000000000000000000000000c590175e458b83680867afd273527ff58f74c02b0000000000000000000000000000000000000000000000000161c7f85ff8bef600000000000000000000000000000000000000000000000000000000000ff21d00000000000000000000000000000000000000000000000000000000000000a00000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000002b53e0bca35ec356bd5dddfebbd1fc0fd03fabad390001f42791bca1f2de4661ed88a30c99a7a9449aa84174000000000000000000000000000000000000000000756e69780000b2c5de0b000000000000000000000000000000000000cb", + "from": "0x141d32a89a1e0a5ef360034a2f60a4b917c18838", + "to": "0x1a1ec25DC08e98e5E93F1104B5e5cdD298707d31", + "type": "swap", + "value": "0x0" + }, + { + "data": "0xa9059cbb000000000000000000000000e3478b0bb1a5084567c319096437924948be1964000000000000000000000000000000000000000000000000000000000000d5ab", + "from": "0x141d32a89a1e0a5ef360034a2f60a4b917c18838", + "to": "0x2791bca1f2de4661ed88a30c99a7a9449aa84174", + "type": "transfer", + "value": "0x0" + } + ], + "networkClientId": "polygon-mainnet", + "origin": "metamask", + "originalGasEstimate": "0x10f954", + "postTxBalance": "0xe3485cfd14b41c", + "r": "0x8029f79bf5b0c6e5f00a2704b7dfff34d570ebb2fbf0c59a55c47b7545a6b9a0", + "rawTx": "0x04f9103381895f85124b230e808561619d10c28310f95494141d32a89a1e0a5ef360034a2f60a4b917c1883880b90f64e9ae5c53010100000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000400000000000000000000000000000000000000000000000000000000000000f000000000000000000000000000000000000000000000000000000000000000020000000000000000000000000000000000000000000000000000000000000000600000000000000000000000000000000000000000000000000000000000000c0000000000000000000000000000000000000000000000000000000000000040000000000000000000000000000000000000000000000000000000000000004e0000000000000000000000000000000000000000000000000000000000000084000000000000000000000000000000000000000000000000000000000000009200000000000000000000000000000000000000000000000000000000000000de00000000000000000000000001a1ec25dc08e98e5e93f1104b5e5cdd298707d310000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000002a55f5755290000000000000000000000000000000000000000000000000000000000000080000000000000000000000000c2132d05d31c914a87c6611c10748aeb04b58e8f000000000000000000000000000000000000000000000000000000000006567600000000000000000000000000000000000000000000000000000000000000c000000000000000000000000000000000000000000000000000000000000000136f6e65496e6368563646656544796e616d69630000000000000000000000000000000000000000000000000000000000000000000000000000000000000001c0000000000000000000000000c2132d05d31c914a87c6611c10748aeb04b58e8f0000000000000000000000002791bca1f2de4661ed88a30c99a7a9449aa8417400000000000000000000000000000000000000000000000000000000000656760000000000000000000000000000000000000000000000000000000000063de500000000000000000000000000000000000000000000000000000000000001200000000000000000000000000000000000000000000000000000000000000e2d000000000000000000000000930dedddb92fef1b4ab2665d250877339f064eac0000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000008883800a8e000000000000000000000000c2132d05d31c914a87c6611c10748aeb04b58e8f00000000000000000000000000000000000000000000000000000000000656760000000000000000000000000000000000000000000000000000000000064c0008000000000000003b8b87c020bf018fddba3b352f3d913fe1c81b846fe0f4907dcbea7c00000000000000000000000000000000000000000000000069000000000000000000000000000000000000000000000000000000000000000000000000000000b33eaad8d922b1083446dc23f610c2567fb5180f000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000600000000000000000000000000000000000000000000000000000000000000044095ea7b30000000000000000000000001a1ec25dc08e98e5e93f1104b5e5cdd298707d31000000000000000000000000000000000000000000000000072ce120a34f6940000000000000000000000000000000000000000000000000000000000000000000000000000000001a1ec25dc08e98e5e93f1104b5e5cdd298707d310000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000002c55f5755290000000000000000000000000000000000000000000000000000000000000080000000000000000000000000b33eaad8d922b1083446dc23f610c2567fb5180f000000000000000000000000000000000000000000000000072ce120a34f694000000000000000000000000000000000000000000000000000000000000000c000000000000000000000000000000000000000000000000000000000000000136f6e65496e6368563646656544796e616d69630000000000000000000000000000000000000000000000000000000000000000000000000000000000000001e0000000000000000000000000b33eaad8d922b1083446dc23f610c2567fb5180f0000000000000000000000002791bca1f2de4661ed88a30c99a7a9449aa84174000000000000000000000000000000000000000000000000072ce120a34f694000000000000000000000000000000000000000000000000000000000001d30d60000000000000000000000000000000000000000000000000000000000000120000000000000000000000000000000000000000000000000000000000000424b000000000000000000000000930dedddb92fef1b4ab2665d250877339f064eac000000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000000000a88770ba91000000000000000000000000b33eaad8d922b1083446dc23f610c2567fb5180f000000000000000000000000000000000000000000000000072ce120a34f694000000000000000000000000000000000000000000000000000000000001d72cc08000000000000003b6d0340b5e1a07c9b6ab3bee8d9bf4066d324c5da89c07f00000000000000003b6d03407d51bad48d253dae37cc82cad07f73849286deec7dcbea7c0000000000000000000000000000000000000000000000005c00000000000000000000000000000000000000000000000000000000000000000000000000000053e0bca35ec356bd5dddfebbd1fc0fd03fabad39000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000600000000000000000000000000000000000000000000000000000000000000044095ea7b30000000000000000000000001a1ec25dc08e98e5e93f1104b5e5cdd298707d310000000000000000000000000000000000000000000000000161c7f85ff8bef6000000000000000000000000000000000000000000000000000000000000000000000000000000001a1ec25dc08e98e5e93f1104b5e5cdd298707d310000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000004255f575529000000000000000000000000000000000000000000000000000000000000008000000000000000000000000053e0bca35ec356bd5dddfebbd1fc0fd03fabad390000000000000000000000000000000000000000000000000161c7f85ff8bef600000000000000000000000000000000000000000000000000000000000000c00000000000000000000000000000000000000000000000000000000000000018756e69737761705065726d69743246656544796e616d69630000000000000000000000000000000000000000000000000000000000000000000000000000034000000000000000000000000053e0bca35ec356bd5dddfebbd1fc0fd03fabad390000000000000000000000002791bca1f2de4661ed88a30c99a7a9449aa841740000000000000000000000000000000000000000000000000161c7f85ff8bef600000000000000000000000000000000000000000000000000000000000fce4c000000000000000000000000000000000000000000000000000000000000012000000000000000000000000000000000000000000000000000000000000023e5000000000000000000000000930dedddb92fef1b4ab2665d250877339f064eac0000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000020e3593564c000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000000a0000000000000000000000000000000000000000000000000000000006a0644b400000000000000000000000000000000000000000000000000000000000000010000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000000000200000000000000000000000000000000000000000000000000000000000000100000000000000000000000000c590175e458b83680867afd273527ff58f74c02b0000000000000000000000000000000000000000000000000161c7f85ff8bef600000000000000000000000000000000000000000000000000000000000ff21d00000000000000000000000000000000000000000000000000000000000000a00000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000002b53e0bca35ec356bd5dddfebbd1fc0fd03fabad390001f42791bca1f2de4661ed88a30c99a7a9449aa84174000000000000000000000000000000000000000000756e69780000b2c5de0b000000000000000000000000000000000000cb0000000000000000000000000000000000000000000000000000000000000000000000000000002791bca1f2de4661ed88a30c99a7a9449aa84174000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000600000000000000000000000000000000000000000000000000000000000000044a9059cbb000000000000000000000000e3478b0bb1a5084567c319096437924948be1964000000000000000000000000000000000000000000000000000000000000d5ab00000000000000000000000000000000000000000000000000000000c0f85df85b81899463c0c19a282a1b52b07dd5a65b58948a07dae32b6001a0727e14962f44d7c82b78a7e1b082f1862ef235345da34926d6e3015ff55805c1a04caf0a9e2c916bbd3cb42d167140a608f6ea7447e1ae273a4990900618d9786480a08029f79bf5b0c6e5f00a2704b7dfff34d570ebb2fbf0c59a55c47b7545a6b9a0a06c9365c0b5580bc04183bf088a5086a6c7b6715541fc3b8a45b812f59216f0c3", + "s": "0x6c9365c0b5580bc04183bf088a5086a6c7b6715541fc3b8a45b812f59216f0c3", + "status": "confirmed", + "submittedTime": 1778793931434, + "time": 1778793925392, + "txParams": { + "authorizationList": [ + { + "address": "0x63c0c19a282a1B52b07dD5a65b58948A07DAE32B", + "chainId": "0x89", + "nonce": "0x60", + "r": "0x727e14962f44d7c82b78a7e1b082f1862ef235345da34926d6e3015ff55805c1", + "s": "0x4caf0a9e2c916bbd3cb42d167140a608f6ea7447e1ae273a4990900618d97864", + "yParity": "0x1" + } + ], + "data": "0xe9ae5c53010100000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000400000000000000000000000000000000000000000000000000000000000000f000000000000000000000000000000000000000000000000000000000000000020000000000000000000000000000000000000000000000000000000000000000600000000000000000000000000000000000000000000000000000000000000c0000000000000000000000000000000000000000000000000000000000000040000000000000000000000000000000000000000000000000000000000000004e0000000000000000000000000000000000000000000000000000000000000084000000000000000000000000000000000000000000000000000000000000009200000000000000000000000000000000000000000000000000000000000000de00000000000000000000000001a1ec25dc08e98e5e93f1104b5e5cdd298707d310000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000002a55f5755290000000000000000000000000000000000000000000000000000000000000080000000000000000000000000c2132d05d31c914a87c6611c10748aeb04b58e8f000000000000000000000000000000000000000000000000000000000006567600000000000000000000000000000000000000000000000000000000000000c000000000000000000000000000000000000000000000000000000000000000136f6e65496e6368563646656544796e616d69630000000000000000000000000000000000000000000000000000000000000000000000000000000000000001c0000000000000000000000000c2132d05d31c914a87c6611c10748aeb04b58e8f0000000000000000000000002791bca1f2de4661ed88a30c99a7a9449aa8417400000000000000000000000000000000000000000000000000000000000656760000000000000000000000000000000000000000000000000000000000063de500000000000000000000000000000000000000000000000000000000000001200000000000000000000000000000000000000000000000000000000000000e2d000000000000000000000000930dedddb92fef1b4ab2665d250877339f064eac0000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000008883800a8e000000000000000000000000c2132d05d31c914a87c6611c10748aeb04b58e8f00000000000000000000000000000000000000000000000000000000000656760000000000000000000000000000000000000000000000000000000000064c0008000000000000003b8b87c020bf018fddba3b352f3d913fe1c81b846fe0f4907dcbea7c00000000000000000000000000000000000000000000000069000000000000000000000000000000000000000000000000000000000000000000000000000000b33eaad8d922b1083446dc23f610c2567fb5180f000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000600000000000000000000000000000000000000000000000000000000000000044095ea7b30000000000000000000000001a1ec25dc08e98e5e93f1104b5e5cdd298707d31000000000000000000000000000000000000000000000000072ce120a34f6940000000000000000000000000000000000000000000000000000000000000000000000000000000001a1ec25dc08e98e5e93f1104b5e5cdd298707d310000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000002c55f5755290000000000000000000000000000000000000000000000000000000000000080000000000000000000000000b33eaad8d922b1083446dc23f610c2567fb5180f000000000000000000000000000000000000000000000000072ce120a34f694000000000000000000000000000000000000000000000000000000000000000c000000000000000000000000000000000000000000000000000000000000000136f6e65496e6368563646656544796e616d69630000000000000000000000000000000000000000000000000000000000000000000000000000000000000001e0000000000000000000000000b33eaad8d922b1083446dc23f610c2567fb5180f0000000000000000000000002791bca1f2de4661ed88a30c99a7a9449aa84174000000000000000000000000000000000000000000000000072ce120a34f694000000000000000000000000000000000000000000000000000000000001d30d60000000000000000000000000000000000000000000000000000000000000120000000000000000000000000000000000000000000000000000000000000424b000000000000000000000000930dedddb92fef1b4ab2665d250877339f064eac000000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000000000a88770ba91000000000000000000000000b33eaad8d922b1083446dc23f610c2567fb5180f000000000000000000000000000000000000000000000000072ce120a34f694000000000000000000000000000000000000000000000000000000000001d72cc08000000000000003b6d0340b5e1a07c9b6ab3bee8d9bf4066d324c5da89c07f00000000000000003b6d03407d51bad48d253dae37cc82cad07f73849286deec7dcbea7c0000000000000000000000000000000000000000000000005c00000000000000000000000000000000000000000000000000000000000000000000000000000053e0bca35ec356bd5dddfebbd1fc0fd03fabad39000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000600000000000000000000000000000000000000000000000000000000000000044095ea7b30000000000000000000000001a1ec25dc08e98e5e93f1104b5e5cdd298707d310000000000000000000000000000000000000000000000000161c7f85ff8bef6000000000000000000000000000000000000000000000000000000000000000000000000000000001a1ec25dc08e98e5e93f1104b5e5cdd298707d310000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000004255f575529000000000000000000000000000000000000000000000000000000000000008000000000000000000000000053e0bca35ec356bd5dddfebbd1fc0fd03fabad390000000000000000000000000000000000000000000000000161c7f85ff8bef600000000000000000000000000000000000000000000000000000000000000c00000000000000000000000000000000000000000000000000000000000000018756e69737761705065726d69743246656544796e616d69630000000000000000000000000000000000000000000000000000000000000000000000000000034000000000000000000000000053e0bca35ec356bd5dddfebbd1fc0fd03fabad390000000000000000000000002791bca1f2de4661ed88a30c99a7a9449aa841740000000000000000000000000000000000000000000000000161c7f85ff8bef600000000000000000000000000000000000000000000000000000000000fce4c000000000000000000000000000000000000000000000000000000000000012000000000000000000000000000000000000000000000000000000000000023e5000000000000000000000000930dedddb92fef1b4ab2665d250877339f064eac0000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000020e3593564c000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000000a0000000000000000000000000000000000000000000000000000000006a0644b400000000000000000000000000000000000000000000000000000000000000010000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000000000200000000000000000000000000000000000000000000000000000000000000100000000000000000000000000c590175e458b83680867afd273527ff58f74c02b0000000000000000000000000000000000000000000000000161c7f85ff8bef600000000000000000000000000000000000000000000000000000000000ff21d00000000000000000000000000000000000000000000000000000000000000a00000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000002b53e0bca35ec356bd5dddfebbd1fc0fd03fabad390001f42791bca1f2de4661ed88a30c99a7a9449aa84174000000000000000000000000000000000000000000756e69780000b2c5de0b000000000000000000000000000000000000cb0000000000000000000000000000000000000000000000000000000000000000000000000000002791bca1f2de4661ed88a30c99a7a9449aa84174000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000600000000000000000000000000000000000000000000000000000000000000044a9059cbb000000000000000000000000e3478b0bb1a5084567c319096437924948be1964000000000000000000000000000000000000000000000000000000000000d5ab00000000000000000000000000000000000000000000000000000000", + "from": "0x141d32a89a1e0a5ef360034a2f60a4b917c18838", + "gas": "0x10f954", + "gasLimit": "0x10f954", + "maxFeePerGas": "0x61619d10c2", + "maxPriorityFeePerGas": "0x124b230e80", + "to": "0x141d32a89a1e0a5ef360034a2f60a4b917c18838", + "type": "0x4", + "value": "0x0" + }, + "txReceipt": { + "blockHash": "0x8d1e208afe40d386d2d7728a404ec107dc993bd3ca31b4ba430d81a4a8829ec7", + "blockNumber": "0x52dcebf", + "contractAddress": null, + "cumulativeGasUsed": "0x2534ad2", + "effectiveGasPrice": "0x4dc47f5d17", + "from": "0xb01caea8c6c47bbf4f4b4c5080ca642043359c2e", + "gasUsed": "0xcc352", + "logs": [ + { + "address": "0x04658b29f6b82ed55274221a06fc97d318e25416", + "blockHash": "0x8d1e208afe40d386d2d7728a404ec107dc993bd3ca31b4ba430d81a4a8829ec7", + "blockNumber": "0x52dcebf", + "blockTimestamp": "0x6a063dcb", + "data": "0x00000000000000000000000000000000000000000000000000000000000000010000000000000000000000000000000000000000000000000000000000000001", + "logIndex": "0x683", + "removed": false, + "topics": [ + "0x449da07f2c06c9d1a6b19d2454ffe749e8cf991d22f686e076a1a4844c5ff370", + "0x000000000000000000000000db9b1e94b5b69df7e401ddbede43491141047db3", + "0x000000000000000000000000b01caea8c6c47bbf4f4b4c5080ca642043359c2e", + "0x2703078db4a888ed3b3b853e47eddd7bb98699a26916ed703e1e7bf5ee3b38e0" + ], + "transactionHash": "0xa409941b8fb0650254d6f73e20530bae227a62bf40487ff5236fdfd8f3d79d0e", + "transactionIndex": "0x84" + }, + { + "address": "0xc2132d05d31c914a87c6611c10748aeb04b58e8f", + "blockHash": "0x8d1e208afe40d386d2d7728a404ec107dc993bd3ca31b4ba430d81a4a8829ec7", + "blockNumber": "0x52dcebf", + "blockTimestamp": "0x6a063dcb", + "data": "0x0000000000000000000000000000000000000000000000000000000000065676", + "logIndex": "0x684", + "removed": false, + "topics": [ + "0xddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef", + "0x000000000000000000000000141d32a89a1e0a5ef360034a2f60a4b917c18838", + "0x000000000000000000000000c590175e458b83680867afd273527ff58f74c02b" + ], + "transactionHash": "0xa409941b8fb0650254d6f73e20530bae227a62bf40487ff5236fdfd8f3d79d0e", + "transactionIndex": "0x84" + }, + { + "address": "0xc2132d05d31c914a87c6611c10748aeb04b58e8f", + "blockHash": "0x8d1e208afe40d386d2d7728a404ec107dc993bd3ca31b4ba430d81a4a8829ec7", + "blockNumber": "0x52dcebf", + "blockTimestamp": "0x6a063dcb", + "data": "0x0000000000000000000000000000000000000000000000000000000000000000", + "logIndex": "0x685", + "removed": false, + "topics": [ + "0x8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925", + "0x000000000000000000000000141d32a89a1e0a5ef360034a2f60a4b917c18838", + "0x0000000000000000000000001a1ec25dc08e98e5e93f1104b5e5cdd298707d31" + ], + "transactionHash": "0xa409941b8fb0650254d6f73e20530bae227a62bf40487ff5236fdfd8f3d79d0e", + "transactionIndex": "0x84" + }, + { + "address": "0xc2132d05d31c914a87c6611c10748aeb04b58e8f", + "blockHash": "0x8d1e208afe40d386d2d7728a404ec107dc993bd3ca31b4ba430d81a4a8829ec7", + "blockNumber": "0x52dcebf", + "blockTimestamp": "0x6a063dcb", + "data": "0x0000000000000000000000000000000000000000000000000000000000065676", + "logIndex": "0x686", + "removed": false, + "topics": [ + "0xddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef", + "0x000000000000000000000000c590175e458b83680867afd273527ff58f74c02b", + "0x00000000000000000000000020bf018fddba3b352f3d913fe1c81b846fe0f490" + ], + "transactionHash": "0xa409941b8fb0650254d6f73e20530bae227a62bf40487ff5236fdfd8f3d79d0e", + "transactionIndex": "0x84" + }, + { + "address": "0xc2132d05d31c914a87c6611c10748aeb04b58e8f", + "blockHash": "0x8d1e208afe40d386d2d7728a404ec107dc993bd3ca31b4ba430d81a4a8829ec7", + "blockNumber": "0x52dcebf", + "blockTimestamp": "0x6a063dcb", + "data": "0xfffffffffffffffffffffffffffffffffffffffffffffffffffffbf3ef0dabd3", + "logIndex": "0x687", + "removed": false, + "topics": [ + "0x8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925", + "0x000000000000000000000000c590175e458b83680867afd273527ff58f74c02b", + "0x000000000000000000000000111111125421ca6dc452d289314280a0f8842a65" + ], + "transactionHash": "0xa409941b8fb0650254d6f73e20530bae227a62bf40487ff5236fdfd8f3d79d0e", + "transactionIndex": "0x84" + }, + { + "address": "0x2791bca1f2de4661ed88a30c99a7a9449aa84174", + "blockHash": "0x8d1e208afe40d386d2d7728a404ec107dc993bd3ca31b4ba430d81a4a8829ec7", + "blockNumber": "0x52dcebf", + "blockTimestamp": "0x6a063dcb", + "data": "0x000000000000000000000000000000000000000000000000000000000006541a", + "logIndex": "0x688", + "removed": false, + "topics": [ + "0xddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef", + "0x00000000000000000000000020bf018fddba3b352f3d913fe1c81b846fe0f490", + "0x000000000000000000000000c590175e458b83680867afd273527ff58f74c02b" + ], + "transactionHash": "0xa409941b8fb0650254d6f73e20530bae227a62bf40487ff5236fdfd8f3d79d0e", + "transactionIndex": "0x84" + }, + { + "address": "0x20bf018fddba3b352f3d913fe1c81b846fe0f490", + "blockHash": "0x8d1e208afe40d386d2d7728a404ec107dc993bd3ca31b4ba430d81a4a8829ec7", + "blockNumber": "0x52dcebf", + "blockTimestamp": "0x6a063dcb", + "data": "0x0000000000000000000000000000000000000000000000000000000e44f70f320000000000000000000000000000000000000000000000000000000e46a692e0", + "logIndex": "0x689", + "removed": false, + "topics": [ + "0x1c411e9a96e071241c2f21f7726b17ae89e3cab4c78be50e062b03a9fffbbad1" + ], + "transactionHash": "0xa409941b8fb0650254d6f73e20530bae227a62bf40487ff5236fdfd8f3d79d0e", + "transactionIndex": "0x84" + }, + { + "address": "0x20bf018fddba3b352f3d913fe1c81b846fe0f490", + "blockHash": "0x8d1e208afe40d386d2d7728a404ec107dc993bd3ca31b4ba430d81a4a8829ec7", + "blockNumber": "0x52dcebf", + "blockTimestamp": "0x6a063dcb", + "data": "0x00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000065676000000000000000000000000000000000000000000000000000000000006541a0000000000000000000000000000000000000000000000000000000000000000", + "logIndex": "0x68a", + "removed": false, + "topics": [ + "0xd78ad95fa46c994b6551d0da85fc275fe613ce37657fb8d5e3d130840159d822", + "0x000000000000000000000000111111125421ca6dc452d289314280a0f8842a65", + "0x000000000000000000000000c590175e458b83680867afd273527ff58f74c02b" + ], + "transactionHash": "0xa409941b8fb0650254d6f73e20530bae227a62bf40487ff5236fdfd8f3d79d0e", + "transactionIndex": "0x84" + }, + { + "address": "0x2791bca1f2de4661ed88a30c99a7a9449aa84174", + "blockHash": "0x8d1e208afe40d386d2d7728a404ec107dc993bd3ca31b4ba430d81a4a8829ec7", + "blockNumber": "0x52dcebf", + "blockTimestamp": "0x6a063dcb", + "data": "0x0000000000000000000000000000000000000000000000000000000000000e2d", + "logIndex": "0x68b", + "removed": false, + "topics": [ + "0xddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef", + "0x000000000000000000000000c590175e458b83680867afd273527ff58f74c02b", + "0x000000000000000000000000930dedddb92fef1b4ab2665d250877339f064eac" + ], + "transactionHash": "0xa409941b8fb0650254d6f73e20530bae227a62bf40487ff5236fdfd8f3d79d0e", + "transactionIndex": "0x84" + }, + { + "address": "0x2791bca1f2de4661ed88a30c99a7a9449aa84174", + "blockHash": "0x8d1e208afe40d386d2d7728a404ec107dc993bd3ca31b4ba430d81a4a8829ec7", + "blockNumber": "0x52dcebf", + "blockTimestamp": "0x6a063dcb", + "data": "0x00000000000000000000000000000000000000000000000000000000000645ed", + "logIndex": "0x68c", + "removed": false, + "topics": [ + "0xddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef", + "0x000000000000000000000000c590175e458b83680867afd273527ff58f74c02b", + "0x000000000000000000000000141d32a89a1e0a5ef360034a2f60a4b917c18838" + ], + "transactionHash": "0xa409941b8fb0650254d6f73e20530bae227a62bf40487ff5236fdfd8f3d79d0e", + "transactionIndex": "0x84" + }, + { + "address": "0x1a1ec25dc08e98e5e93f1104b5e5cdd298707d31", + "blockHash": "0x8d1e208afe40d386d2d7728a404ec107dc993bd3ca31b4ba430d81a4a8829ec7", + "blockNumber": "0x52dcebf", + "blockTimestamp": "0x6a063dcb", + "data": "0x", + "logIndex": "0x68d", + "removed": false, + "topics": [ + "0xbeee1e6e7fe307ddcf84b0a16137a4430ad5e2480fc4f4a8e250ab56ccd7630d", + "0x6fb9a5a70689d237d6be4cb3f77d4974b3e8d5b00c05e153d174c88bade66e7e", + "0x000000000000000000000000141d32a89a1e0a5ef360034a2f60a4b917c18838" + ], + "transactionHash": "0xa409941b8fb0650254d6f73e20530bae227a62bf40487ff5236fdfd8f3d79d0e", + "transactionIndex": "0x84" + }, + { + "address": "0xb33eaad8d922b1083446dc23f610c2567fb5180f", + "blockHash": "0x8d1e208afe40d386d2d7728a404ec107dc993bd3ca31b4ba430d81a4a8829ec7", + "blockNumber": "0x52dcebf", + "blockTimestamp": "0x6a063dcb", + "data": "0x000000000000000000000000000000000000000000000000072ce120a34f6940", + "logIndex": "0x68e", + "removed": false, + "topics": [ + "0x8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925", + "0x000000000000000000000000141d32a89a1e0a5ef360034a2f60a4b917c18838", + "0x0000000000000000000000001a1ec25dc08e98e5e93f1104b5e5cdd298707d31" + ], + "transactionHash": "0xa409941b8fb0650254d6f73e20530bae227a62bf40487ff5236fdfd8f3d79d0e", + "transactionIndex": "0x84" + }, + { + "address": "0xb33eaad8d922b1083446dc23f610c2567fb5180f", + "blockHash": "0x8d1e208afe40d386d2d7728a404ec107dc993bd3ca31b4ba430d81a4a8829ec7", + "blockNumber": "0x52dcebf", + "blockTimestamp": "0x6a063dcb", + "data": "0x000000000000000000000000000000000000000000000000072ce120a34f6940", + "logIndex": "0x68f", + "removed": false, + "topics": [ + "0xddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef", + "0x000000000000000000000000141d32a89a1e0a5ef360034a2f60a4b917c18838", + "0x000000000000000000000000c590175e458b83680867afd273527ff58f74c02b" + ], + "transactionHash": "0xa409941b8fb0650254d6f73e20530bae227a62bf40487ff5236fdfd8f3d79d0e", + "transactionIndex": "0x84" + }, + { + "address": "0xb33eaad8d922b1083446dc23f610c2567fb5180f", + "blockHash": "0x8d1e208afe40d386d2d7728a404ec107dc993bd3ca31b4ba430d81a4a8829ec7", + "blockNumber": "0x52dcebf", + "blockTimestamp": "0x6a063dcb", + "data": "0x0000000000000000000000000000000000000000000000000000000000000000", + "logIndex": "0x690", + "removed": false, + "topics": [ + "0x8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925", + "0x000000000000000000000000141d32a89a1e0a5ef360034a2f60a4b917c18838", + "0x0000000000000000000000001a1ec25dc08e98e5e93f1104b5e5cdd298707d31" + ], + "transactionHash": "0xa409941b8fb0650254d6f73e20530bae227a62bf40487ff5236fdfd8f3d79d0e", + "transactionIndex": "0x84" + }, + { + "address": "0xb33eaad8d922b1083446dc23f610c2567fb5180f", + "blockHash": "0x8d1e208afe40d386d2d7728a404ec107dc993bd3ca31b4ba430d81a4a8829ec7", + "blockNumber": "0x52dcebf", + "blockTimestamp": "0x6a063dcb", + "data": "0x000000000000000000000000000000000000000000000000072ce120a34f6940", + "logIndex": "0x691", + "removed": false, + "topics": [ + "0xddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef", + "0x000000000000000000000000c590175e458b83680867afd273527ff58f74c02b", + "0x000000000000000000000000b5e1a07c9b6ab3bee8d9bf4066d324c5da89c07f" + ], + "transactionHash": "0xa409941b8fb0650254d6f73e20530bae227a62bf40487ff5236fdfd8f3d79d0e", + "transactionIndex": "0x84" + }, + { + "address": "0xb33eaad8d922b1083446dc23f610c2567fb5180f", + "blockHash": "0x8d1e208afe40d386d2d7728a404ec107dc993bd3ca31b4ba430d81a4a8829ec7", + "blockNumber": "0x52dcebf", + "blockTimestamp": "0x6a063dcb", + "data": "0xffffffffffffffffffffffffffffffffffffffffffffff296eebc027c6cd96ea", + "logIndex": "0x692", + "removed": false, + "topics": [ + "0x8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925", + "0x000000000000000000000000c590175e458b83680867afd273527ff58f74c02b", + "0x000000000000000000000000111111125421ca6dc452d289314280a0f8842a65" + ], + "transactionHash": "0xa409941b8fb0650254d6f73e20530bae227a62bf40487ff5236fdfd8f3d79d0e", + "transactionIndex": "0x84" + }, + { + "address": "0x7ceb23fd6bc0add59e62ac25578270cff1b9f619", + "blockHash": "0x8d1e208afe40d386d2d7728a404ec107dc993bd3ca31b4ba430d81a4a8829ec7", + "blockNumber": "0x52dcebf", + "blockTimestamp": "0x6a063dcb", + "data": "0x0000000000000000000000000000000000000000000000000003026a7926c97c", + "logIndex": "0x693", + "removed": false, + "topics": [ + "0xddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef", + "0x000000000000000000000000b5e1a07c9b6ab3bee8d9bf4066d324c5da89c07f", + "0x0000000000000000000000007d51bad48d253dae37cc82cad07f73849286deec" + ], + "transactionHash": "0xa409941b8fb0650254d6f73e20530bae227a62bf40487ff5236fdfd8f3d79d0e", + "transactionIndex": "0x84" + }, + { + "address": "0xb5e1a07c9b6ab3bee8d9bf4066d324c5da89c07f", + "blockHash": "0x8d1e208afe40d386d2d7728a404ec107dc993bd3ca31b4ba430d81a4a8829ec7", + "blockNumber": "0x52dcebf", + "blockTimestamp": "0x6a063dcb", + "data": "0x00000000000000000000000000000000000000000000000033474c298f458b95000000000000000000000000000000000000000000000079ec4c28ba92b87fef", + "logIndex": "0x694", + "removed": false, + "topics": [ + "0x1c411e9a96e071241c2f21f7726b17ae89e3cab4c78be50e062b03a9fffbbad1" + ], + "transactionHash": "0xa409941b8fb0650254d6f73e20530bae227a62bf40487ff5236fdfd8f3d79d0e", + "transactionIndex": "0x84" + }, + { + "address": "0xb5e1a07c9b6ab3bee8d9bf4066d324c5da89c07f", + "blockHash": "0x8d1e208afe40d386d2d7728a404ec107dc993bd3ca31b4ba430d81a4a8829ec7", + "blockNumber": "0x52dcebf", + "blockTimestamp": "0x6a063dcb", + "data": "0x0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000072ce120a34f69400000000000000000000000000000000000000000000000000003026a7926c97c0000000000000000000000000000000000000000000000000000000000000000", + "logIndex": "0x695", + "removed": false, + "topics": [ + "0xd78ad95fa46c994b6551d0da85fc275fe613ce37657fb8d5e3d130840159d822", + "0x000000000000000000000000111111125421ca6dc452d289314280a0f8842a65", + "0x0000000000000000000000007d51bad48d253dae37cc82cad07f73849286deec" + ], + "transactionHash": "0xa409941b8fb0650254d6f73e20530bae227a62bf40487ff5236fdfd8f3d79d0e", + "transactionIndex": "0x84" + }, + { + "address": "0x2791bca1f2de4661ed88a30c99a7a9449aa84174", + "blockHash": "0x8d1e208afe40d386d2d7728a404ec107dc993bd3ca31b4ba430d81a4a8829ec7", + "blockNumber": "0x52dcebf", + "blockTimestamp": "0x6a063dcb", + "data": "0x00000000000000000000000000000000000000000000000000000000001d98af", + "logIndex": "0x696", + "removed": false, + "topics": [ + "0xddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef", + "0x0000000000000000000000007d51bad48d253dae37cc82cad07f73849286deec", + "0x000000000000000000000000c590175e458b83680867afd273527ff58f74c02b" + ], + "transactionHash": "0xa409941b8fb0650254d6f73e20530bae227a62bf40487ff5236fdfd8f3d79d0e", + "transactionIndex": "0x84" + }, + { + "address": "0x7d51bad48d253dae37cc82cad07f73849286deec", + "blockHash": "0x8d1e208afe40d386d2d7728a404ec107dc993bd3ca31b4ba430d81a4a8829ec7", + "blockNumber": "0x52dcebf", + "blockTimestamp": "0x6a063dcb", + "data": "0x00000000000000000000000000000000000000000000000000000005232a39090000000000000000000000000000000000000000000000008556fbab0c7bfbf3", + "logIndex": "0x697", + "removed": false, + "topics": [ + "0x1c411e9a96e071241c2f21f7726b17ae89e3cab4c78be50e062b03a9fffbbad1" + ], + "transactionHash": "0xa409941b8fb0650254d6f73e20530bae227a62bf40487ff5236fdfd8f3d79d0e", + "transactionIndex": "0x84" + }, + { + "address": "0x7d51bad48d253dae37cc82cad07f73849286deec", + "blockHash": "0x8d1e208afe40d386d2d7728a404ec107dc993bd3ca31b4ba430d81a4a8829ec7", + "blockNumber": "0x52dcebf", + "blockTimestamp": "0x6a063dcb", + "data": "0x00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000003026a7926c97c00000000000000000000000000000000000000000000000000000000001d98af0000000000000000000000000000000000000000000000000000000000000000", + "logIndex": "0x698", + "removed": false, + "topics": [ + "0xd78ad95fa46c994b6551d0da85fc275fe613ce37657fb8d5e3d130840159d822", + "0x000000000000000000000000111111125421ca6dc452d289314280a0f8842a65", + "0x000000000000000000000000c590175e458b83680867afd273527ff58f74c02b" + ], + "transactionHash": "0xa409941b8fb0650254d6f73e20530bae227a62bf40487ff5236fdfd8f3d79d0e", + "transactionIndex": "0x84" + }, + { + "address": "0x2791bca1f2de4661ed88a30c99a7a9449aa84174", + "blockHash": "0x8d1e208afe40d386d2d7728a404ec107dc993bd3ca31b4ba430d81a4a8829ec7", + "blockNumber": "0x52dcebf", + "blockTimestamp": "0x6a063dcb", + "data": "0x000000000000000000000000000000000000000000000000000000000000424b", + "logIndex": "0x699", + "removed": false, + "topics": [ + "0xddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef", + "0x000000000000000000000000c590175e458b83680867afd273527ff58f74c02b", + "0x000000000000000000000000930dedddb92fef1b4ab2665d250877339f064eac" + ], + "transactionHash": "0xa409941b8fb0650254d6f73e20530bae227a62bf40487ff5236fdfd8f3d79d0e", + "transactionIndex": "0x84" + }, + { + "address": "0x2791bca1f2de4661ed88a30c99a7a9449aa84174", + "blockHash": "0x8d1e208afe40d386d2d7728a404ec107dc993bd3ca31b4ba430d81a4a8829ec7", + "blockNumber": "0x52dcebf", + "blockTimestamp": "0x6a063dcb", + "data": "0x00000000000000000000000000000000000000000000000000000000001d5664", + "logIndex": "0x69a", + "removed": false, + "topics": [ + "0xddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef", + "0x000000000000000000000000c590175e458b83680867afd273527ff58f74c02b", + "0x000000000000000000000000141d32a89a1e0a5ef360034a2f60a4b917c18838" + ], + "transactionHash": "0xa409941b8fb0650254d6f73e20530bae227a62bf40487ff5236fdfd8f3d79d0e", + "transactionIndex": "0x84" + }, + { + "address": "0x1a1ec25dc08e98e5e93f1104b5e5cdd298707d31", + "blockHash": "0x8d1e208afe40d386d2d7728a404ec107dc993bd3ca31b4ba430d81a4a8829ec7", + "blockNumber": "0x52dcebf", + "blockTimestamp": "0x6a063dcb", + "data": "0x", + "logIndex": "0x69b", + "removed": false, + "topics": [ + "0xbeee1e6e7fe307ddcf84b0a16137a4430ad5e2480fc4f4a8e250ab56ccd7630d", + "0x6fb9a5a70689d237d6be4cb3f77d4974b3e8d5b00c05e153d174c88bade66e7e", + "0x000000000000000000000000141d32a89a1e0a5ef360034a2f60a4b917c18838" + ], + "transactionHash": "0xa409941b8fb0650254d6f73e20530bae227a62bf40487ff5236fdfd8f3d79d0e", + "transactionIndex": "0x84" + }, + { + "address": "0x53e0bca35ec356bd5dddfebbd1fc0fd03fabad39", + "blockHash": "0x8d1e208afe40d386d2d7728a404ec107dc993bd3ca31b4ba430d81a4a8829ec7", + "blockNumber": "0x52dcebf", + "blockTimestamp": "0x6a063dcb", + "data": "0x0000000000000000000000000000000000000000000000000161c7f85ff8bef6", + "logIndex": "0x69c", + "removed": false, + "topics": [ + "0x8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925", + "0x000000000000000000000000141d32a89a1e0a5ef360034a2f60a4b917c18838", + "0x0000000000000000000000001a1ec25dc08e98e5e93f1104b5e5cdd298707d31" + ], + "transactionHash": "0xa409941b8fb0650254d6f73e20530bae227a62bf40487ff5236fdfd8f3d79d0e", + "transactionIndex": "0x84" + }, + { + "address": "0x53e0bca35ec356bd5dddfebbd1fc0fd03fabad39", + "blockHash": "0x8d1e208afe40d386d2d7728a404ec107dc993bd3ca31b4ba430d81a4a8829ec7", + "blockNumber": "0x52dcebf", + "blockTimestamp": "0x6a063dcb", + "data": "0x0000000000000000000000000000000000000000000000000161c7f85ff8bef6", + "logIndex": "0x69d", + "removed": false, + "topics": [ + "0xddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef", + "0x000000000000000000000000141d32a89a1e0a5ef360034a2f60a4b917c18838", + "0x000000000000000000000000c590175e458b83680867afd273527ff58f74c02b" + ], + "transactionHash": "0xa409941b8fb0650254d6f73e20530bae227a62bf40487ff5236fdfd8f3d79d0e", + "transactionIndex": "0x84" + }, + { + "address": "0x53e0bca35ec356bd5dddfebbd1fc0fd03fabad39", + "blockHash": "0x8d1e208afe40d386d2d7728a404ec107dc993bd3ca31b4ba430d81a4a8829ec7", + "blockNumber": "0x52dcebf", + "blockTimestamp": "0x6a063dcb", + "data": "0x0000000000000000000000000000000000000000000000000000000000000000", + "logIndex": "0x69e", + "removed": false, + "topics": [ + "0x8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925", + "0x000000000000000000000000141d32a89a1e0a5ef360034a2f60a4b917c18838", + "0x0000000000000000000000001a1ec25dc08e98e5e93f1104b5e5cdd298707d31" + ], + "transactionHash": "0xa409941b8fb0650254d6f73e20530bae227a62bf40487ff5236fdfd8f3d79d0e", + "transactionIndex": "0x84" + }, + { + "address": "0x000000000022d473030f116ddee9f6b43ac78ba3", + "blockHash": "0x8d1e208afe40d386d2d7728a404ec107dc993bd3ca31b4ba430d81a4a8829ec7", + "blockNumber": "0x52dcebf", + "blockTimestamp": "0x6a063dcb", + "data": "0x0000000000000000000000000000000000000000000000000161c7f85ff8bef6000000000000000000000000000000000000000000000000000000006a063dcb", + "logIndex": "0x69f", + "removed": false, + "topics": [ + "0xda9fa7c1b00402c17d0161b249b1ab8bbec047c5a52207b9c112deffd817036b", + "0x000000000000000000000000c590175e458b83680867afd273527ff58f74c02b", + "0x00000000000000000000000053e0bca35ec356bd5dddfebbd1fc0fd03fabad39", + "0x0000000000000000000000001095692a6237d83c6a72f3f5efedb9a670c49223" + ], + "transactionHash": "0xa409941b8fb0650254d6f73e20530bae227a62bf40487ff5236fdfd8f3d79d0e", + "transactionIndex": "0x84" + }, + { + "address": "0x2791bca1f2de4661ed88a30c99a7a9449aa84174", + "blockHash": "0x8d1e208afe40d386d2d7728a404ec107dc993bd3ca31b4ba430d81a4a8829ec7", + "blockNumber": "0x52dcebf", + "blockTimestamp": "0x6a063dcb", + "data": "0x0000000000000000000000000000000000000000000000000000000000100687", + "logIndex": "0x6a0", + "removed": false, + "topics": [ + "0xddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef", + "0x00000000000000000000000022177148e681a6ca5242c9888ace170ee7ec47bd", + "0x000000000000000000000000c590175e458b83680867afd273527ff58f74c02b" + ], + "transactionHash": "0xa409941b8fb0650254d6f73e20530bae227a62bf40487ff5236fdfd8f3d79d0e", + "transactionIndex": "0x84" + }, + { + "address": "0x53e0bca35ec356bd5dddfebbd1fc0fd03fabad39", + "blockHash": "0x8d1e208afe40d386d2d7728a404ec107dc993bd3ca31b4ba430d81a4a8829ec7", + "blockNumber": "0x52dcebf", + "blockTimestamp": "0x6a063dcb", + "data": "0x0000000000000000000000000000000000000000000000000161c7f85ff8bef6", + "logIndex": "0x6a1", + "removed": false, + "topics": [ + "0xddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef", + "0x000000000000000000000000c590175e458b83680867afd273527ff58f74c02b", + "0x00000000000000000000000022177148e681a6ca5242c9888ace170ee7ec47bd" + ], + "transactionHash": "0xa409941b8fb0650254d6f73e20530bae227a62bf40487ff5236fdfd8f3d79d0e", + "transactionIndex": "0x84" + }, + { + "address": "0x53e0bca35ec356bd5dddfebbd1fc0fd03fabad39", + "blockHash": "0x8d1e208afe40d386d2d7728a404ec107dc993bd3ca31b4ba430d81a4a8829ec7", + "blockNumber": "0x52dcebf", + "blockTimestamp": "0x6a063dcb", + "data": "0xfffffffffffffffffffffffffffffffffffffffffffffffd7c5edc915cd31ecb", + "logIndex": "0x6a2", + "removed": false, + "topics": [ + "0x8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925", + "0x000000000000000000000000c590175e458b83680867afd273527ff58f74c02b", + "0x000000000000000000000000000000000022d473030f116ddee9f6b43ac78ba3" + ], + "transactionHash": "0xa409941b8fb0650254d6f73e20530bae227a62bf40487ff5236fdfd8f3d79d0e", + "transactionIndex": "0x84" + }, + { + "address": "0x22177148e681a6ca5242c9888ace170ee7ec47bd", + "blockHash": "0x8d1e208afe40d386d2d7728a404ec107dc993bd3ca31b4ba430d81a4a8829ec7", + "blockNumber": "0x52dcebf", + "blockTimestamp": "0x6a063dcb", + "data": "0xffffffffffffffffffffffffffffffffffffffffffffffffffffffffffeff9790000000000000000000000000000000000000000000000000161c7f85ff8bef6000000000000000000000000000000000004b2b2460bb0eca40d4bf7e02027c60000000000000000000000000000000000000000000000000003f1cbef25e4d9000000000000000000000000000000000000000000000000000000000003db5a", + "logIndex": "0x6a3", + "removed": false, + "topics": [ + "0xc42079f94a6350d7e6235f29174924f928cc2ac818eb64fed8004e115fbcca67", + "0x0000000000000000000000001095692a6237d83c6a72f3f5efedb9a670c49223", + "0x000000000000000000000000c590175e458b83680867afd273527ff58f74c02b" + ], + "transactionHash": "0xa409941b8fb0650254d6f73e20530bae227a62bf40487ff5236fdfd8f3d79d0e", + "transactionIndex": "0x84" + }, + { + "address": "0x2791bca1f2de4661ed88a30c99a7a9449aa84174", + "blockHash": "0x8d1e208afe40d386d2d7728a404ec107dc993bd3ca31b4ba430d81a4a8829ec7", + "blockNumber": "0x52dcebf", + "blockTimestamp": "0x6a063dcb", + "data": "0x00000000000000000000000000000000000000000000000000000000000023e5", + "logIndex": "0x6a4", + "removed": false, + "topics": [ + "0xddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef", + "0x000000000000000000000000c590175e458b83680867afd273527ff58f74c02b", + "0x000000000000000000000000930dedddb92fef1b4ab2665d250877339f064eac" + ], + "transactionHash": "0xa409941b8fb0650254d6f73e20530bae227a62bf40487ff5236fdfd8f3d79d0e", + "transactionIndex": "0x84" + }, + { + "address": "0x2791bca1f2de4661ed88a30c99a7a9449aa84174", + "blockHash": "0x8d1e208afe40d386d2d7728a404ec107dc993bd3ca31b4ba430d81a4a8829ec7", + "blockNumber": "0x52dcebf", + "blockTimestamp": "0x6a063dcb", + "data": "0x00000000000000000000000000000000000000000000000000000000000fe2a2", + "logIndex": "0x6a5", + "removed": false, + "topics": [ + "0xddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef", + "0x000000000000000000000000c590175e458b83680867afd273527ff58f74c02b", + "0x000000000000000000000000141d32a89a1e0a5ef360034a2f60a4b917c18838" + ], + "transactionHash": "0xa409941b8fb0650254d6f73e20530bae227a62bf40487ff5236fdfd8f3d79d0e", + "transactionIndex": "0x84" + }, + { + "address": "0x1a1ec25dc08e98e5e93f1104b5e5cdd298707d31", + "blockHash": "0x8d1e208afe40d386d2d7728a404ec107dc993bd3ca31b4ba430d81a4a8829ec7", + "blockNumber": "0x52dcebf", + "blockTimestamp": "0x6a063dcb", + "data": "0x", + "logIndex": "0x6a6", + "removed": false, + "topics": [ + "0xbeee1e6e7fe307ddcf84b0a16137a4430ad5e2480fc4f4a8e250ab56ccd7630d", + "0x9cc844e2828788f25f9d674f9dfb6a66ef6b8c38360c0ec1fa99e0b18c32eae8", + "0x000000000000000000000000141d32a89a1e0a5ef360034a2f60a4b917c18838" + ], + "transactionHash": "0xa409941b8fb0650254d6f73e20530bae227a62bf40487ff5236fdfd8f3d79d0e", + "transactionIndex": "0x84" + }, + { + "address": "0x2791bca1f2de4661ed88a30c99a7a9449aa84174", + "blockHash": "0x8d1e208afe40d386d2d7728a404ec107dc993bd3ca31b4ba430d81a4a8829ec7", + "blockNumber": "0x52dcebf", + "blockTimestamp": "0x6a063dcb", + "data": "0x000000000000000000000000000000000000000000000000000000000000d5ab", + "logIndex": "0x6a7", + "removed": false, + "topics": [ + "0xddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef", + "0x000000000000000000000000141d32a89a1e0a5ef360034a2f60a4b917c18838", + "0x000000000000000000000000e3478b0bb1a5084567c319096437924948be1964" + ], + "transactionHash": "0xa409941b8fb0650254d6f73e20530bae227a62bf40487ff5236fdfd8f3d79d0e", + "transactionIndex": "0x84" + }, + { + "address": "0xdb9b1e94b5b69df7e401ddbede43491141047db3", + "blockHash": "0x8d1e208afe40d386d2d7728a404ec107dc993bd3ca31b4ba430d81a4a8829ec7", + "blockNumber": "0x52dcebf", + "blockTimestamp": "0x6a063dcb", + "data": "0x00000000000000000000000000000000000000000000000000000000000000200000000000000000000000000000000000000000000000000000000000000a11000000000000000000000000141d32a89a1e0a5ef360034a2f60a4b917c18838ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff00000000000000000000000000000000000000000000000000000000000000c0ccb0ae71ecd51cce6e0c8753b60ad5c1735f49273787db56fcd6ca10223265dd000000000000000000000000000000000000000000000000000000000000118000000000000000000000000000000000000000000000000000000000000000020000000000000000000000000000000000000000000000000000000000000040000000000000000000000000000000000000000000000000000000000000010000000000000000000000000004658b29f6b82ed55274221a06fc97d318e25416000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000000a00000000000000000000000000000000000000000000000000000000000000020000000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000000000000000000000000000000000001e141e455d08721dd5bcda1baa6ea5633afd501700000000000000000000000000000000000000000000000000000000000000600000000000000000000000000000000000000000000000000000000000000f800000000000000000000000000000000000000000000000000000000000000f000000000000000000000000000000000000000000000000000000000000000020000000000000000000000000000000000000000000000000000000000000000600000000000000000000000000000000000000000000000000000000000000c0000000000000000000000000000000000000000000000000000000000000040000000000000000000000000000000000000000000000000000000000000004e0000000000000000000000000000000000000000000000000000000000000084000000000000000000000000000000000000000000000000000000000000009200000000000000000000000000000000000000000000000000000000000000de00000000000000000000000001a1ec25dc08e98e5e93f1104b5e5cdd298707d310000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000002a55f5755290000000000000000000000000000000000000000000000000000000000000080000000000000000000000000c2132d05d31c914a87c6611c10748aeb04b58e8f000000000000000000000000000000000000000000000000000000000006567600000000000000000000000000000000000000000000000000000000000000c000000000000000000000000000000000000000000000000000000000000000136f6e65496e6368563646656544796e616d69630000000000000000000000000000000000000000000000000000000000000000000000000000000000000001c0000000000000000000000000c2132d05d31c914a87c6611c10748aeb04b58e8f0000000000000000000000002791bca1f2de4661ed88a30c99a7a9449aa8417400000000000000000000000000000000000000000000000000000000000656760000000000000000000000000000000000000000000000000000000000063de500000000000000000000000000000000000000000000000000000000000001200000000000000000000000000000000000000000000000000000000000000e2d000000000000000000000000930dedddb92fef1b4ab2665d250877339f064eac0000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000008883800a8e000000000000000000000000c2132d05d31c914a87c6611c10748aeb04b58e8f00000000000000000000000000000000000000000000000000000000000656760000000000000000000000000000000000000000000000000000000000064c0008000000000000003b8b87c020bf018fddba3b352f3d913fe1c81b846fe0f4907dcbea7c00000000000000000000000000000000000000000000000069000000000000000000000000000000000000000000000000000000000000000000000000000000b33eaad8d922b1083446dc23f610c2567fb5180f000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000600000000000000000000000000000000000000000000000000000000000000044095ea7b30000000000000000000000001a1ec25dc08e98e5e93f1104b5e5cdd298707d31000000000000000000000000000000000000000000000000072ce120a34f6940000000000000000000000000000000000000000000000000000000000000000000000000000000001a1ec25dc08e98e5e93f1104b5e5cdd298707d310000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000002c55f5755290000000000000000000000000000000000000000000000000000000000000080000000000000000000000000b33eaad8d922b1083446dc23f610c2567fb5180f000000000000000000000000000000000000000000000000072ce120a34f694000000000000000000000000000000000000000000000000000000000000000c000000000000000000000000000000000000000000000000000000000000000136f6e65496e6368563646656544796e616d69630000000000000000000000000000000000000000000000000000000000000000000000000000000000000001e0000000000000000000000000b33eaad8d922b1083446dc23f610c2567fb5180f0000000000000000000000002791bca1f2de4661ed88a30c99a7a9449aa84174000000000000000000000000000000000000000000000000072ce120a34f694000000000000000000000000000000000000000000000000000000000001d30d60000000000000000000000000000000000000000000000000000000000000120000000000000000000000000000000000000000000000000000000000000424b000000000000000000000000930dedddb92fef1b4ab2665d250877339f064eac000000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000000000a88770ba91000000000000000000000000b33eaad8d922b1083446dc23f610c2567fb5180f000000000000000000000000000000000000000000000000072ce120a34f694000000000000000000000000000000000000000000000000000000000001d72cc08000000000000003b6d0340b5e1a07c9b6ab3bee8d9bf4066d324c5da89c07f00000000000000003b6d03407d51bad48d253dae37cc82cad07f73849286deec7dcbea7c0000000000000000000000000000000000000000000000005c00000000000000000000000000000000000000000000000000000000000000000000000000000053e0bca35ec356bd5dddfebbd1fc0fd03fabad39000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000600000000000000000000000000000000000000000000000000000000000000044095ea7b30000000000000000000000001a1ec25dc08e98e5e93f1104b5e5cdd298707d310000000000000000000000000000000000000000000000000161c7f85ff8bef6000000000000000000000000000000000000000000000000000000000000000000000000000000001a1ec25dc08e98e5e93f1104b5e5cdd298707d310000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000004255f575529000000000000000000000000000000000000000000000000000000000000008000000000000000000000000053e0bca35ec356bd5dddfebbd1fc0fd03fabad390000000000000000000000000000000000000000000000000161c7f85ff8bef600000000000000000000000000000000000000000000000000000000000000c00000000000000000000000000000000000000000000000000000000000000018756e69737761705065726d69743246656544796e616d69630000000000000000000000000000000000000000000000000000000000000000000000000000034000000000000000000000000053e0bca35ec356bd5dddfebbd1fc0fd03fabad390000000000000000000000002791bca1f2de4661ed88a30c99a7a9449aa841740000000000000000000000000000000000000000000000000161c7f85ff8bef600000000000000000000000000000000000000000000000000000000000fce4c000000000000000000000000000000000000000000000000000000000000012000000000000000000000000000000000000000000000000000000000000023e5000000000000000000000000930dedddb92fef1b4ab2665d250877339f064eac0000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000020e3593564c000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000000a0000000000000000000000000000000000000000000000000000000006a0644b400000000000000000000000000000000000000000000000000000000000000010000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000000000200000000000000000000000000000000000000000000000000000000000000100000000000000000000000000c590175e458b83680867afd273527ff58f74c02b0000000000000000000000000000000000000000000000000161c7f85ff8bef600000000000000000000000000000000000000000000000000000000000ff21d00000000000000000000000000000000000000000000000000000000000000a00000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000002b53e0bca35ec356bd5dddfebbd1fc0fd03fabad390001f42791bca1f2de4661ed88a30c99a7a9449aa84174000000000000000000000000000000000000000000756e69780000b2c5de0b000000000000000000000000000000000000cb0000000000000000000000000000000000000000000000000000000000000000000000000000002791bca1f2de4661ed88a30c99a7a9449aa84174000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000600000000000000000000000000000000000000000000000000000000000000044a9059cbb000000000000000000000000e3478b0bb1a5084567c319096437924948be1964000000000000000000000000000000000000000000000000000000000000d5ab0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000041a86afe61725d346d6f91188cfa97c34dcf56620989db43c260b4b0c79b1c874c1f96eed6cd037031057b89165b8d7b858a545a4ec7cf706a2a8328b836603b171c00000000000000000000000000000000000000000000000000000000000000", + "logIndex": "0x6a8", + "removed": false, + "topics": [ + "0x40dadaa36c6c2e3d7317e24757451ffb2d603d875f0ad5e92c5dd156573b1873", + "0x000000000000000000000000141d32a89a1e0a5ef360034a2f60a4b917c18838", + "0x000000000000000000000000b01caea8c6c47bbf4f4b4c5080ca642043359c2e" + ], + "transactionHash": "0xa409941b8fb0650254d6f73e20530bae227a62bf40487ff5236fdfd8f3d79d0e", + "transactionIndex": "0x84" + }, + { + "address": "0x0000000000000000000000000000000000001010", + "blockHash": "0x8d1e208afe40d386d2d7728a404ec107dc993bd3ca31b4ba430d81a4a8829ec7", + "blockNumber": "0x52dcebf", + "blockTimestamp": "0x6a063dcb", + "data": "0x00000000000000000000000000000000000000000000000000f2e210000468580000000000000000000000000000000000000000000025df483d207474c1a82e000000000000000000000000000000000000000000112bf3c03b02f008577f940000000000000000000000000000000000000000000025df474a3e6474bd3fd6000000000000000000000000000000000000000000112bf3c12de500085be7ec", + "logIndex": "0x6a9", + "removed": false, + "topics": [ + "0x4dfe1bbbcf077ddc3e01291eea2d5c70c2b422b415d95645b9adcfd678cb1d63", + "0x0000000000000000000000000000000000000000000000000000000000001010", + "0x000000000000000000000000b01caea8c6c47bbf4f4b4c5080ca642043359c2e", + "0x0000000000000000000000007ee41d8a25641000661b1ef5e6ae8a00400466b0" + ], + "transactionHash": "0xa409941b8fb0650254d6f73e20530bae227a62bf40487ff5236fdfd8f3d79d0e", + "transactionIndex": "0x84" + } + ], + "logsBloom": "0x00210000002000000008000080000000000000000000000844400000800404000040000000000000001010000202000100018000808020000000001000280000000020810800010806024008020020a00000002002000c00000140000001000000100000024000000100000000000400900000000004000180000014004900000021080000880041020408020c0000000001000900001088200000400200080022100000080000000100000000000100c0000040100000000000010800000040200800024000000000010000000000004000004000000050401000002000000000300080000021000002000004000300c0000004020000000000000000110500", + "status": "0x1", + "to": "0xdb9b1e94b5b69df7e401ddbede43491141047db3", + "transactionHash": "0xa409941b8fb0650254d6f73e20530bae227a62bf40487ff5236fdfd8f3d79d0e", + "transactionIndex": "0x84", + "type": "0x4" + }, + "type": "swap", + "userEditedGasLimit": false, + "userFeeLevel": "medium", + "v": "0x0", + "verifiedOnBlockchain": true + }, + { + "baseFeePerGas": "0x1312d00", + "batchId": "0x37313779af02408989f137e6541596ed", + "blockTimestamp": "0x6a06404a", + "chainId": "0xa4b1", + "defaultGasEstimates": { + "estimateType": "medium", + "gas": "0x1e834", + "maxFeePerGas": "0x395a210", + "maxPriorityFeePerGas": "0x0" + }, + "delegationAddress": "0x63c0c19a282a1b52b07dd5a65b58948a07dae32b", + "gasFeeEstimates": { + "high": { + "maxFeePerGas": "0xbf2c6e0", + "maxPriorityFeePerGas": "0x0" + }, + "low": { + "maxFeePerGas": "0x263c160", + "maxPriorityFeePerGas": "0x0" + }, + "medium": { + "maxFeePerGas": "0x395a210", + "maxPriorityFeePerGas": "0x0" + }, + "type": "fee-market" + }, + "gasFeeEstimatesLoaded": true, + "gasLimitNoBuffer": "0x196d6", + "hash": "0x905c4d1137e0fb354433854d51eaa563ddd4d222010ca6cd12f11b046757224f", + "id": "ebc8c980-4fdc-11f1-b40a-151a477935d3", + "isGasFeeIncluded": false, + "isGasFeeSponsored": false, + "isGasFeeTokenIgnoredIfBalance": false, + "nestedTransactions": [ + { + "data": "0x3ce33bff000000000000000000000000000000000000000000000000000000000000008000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000011c37937e0800000000000000000000000000000000000000000000000000000000000000000c0000000000000000000000000000000000000000000000000000000000000000e72656c617941646170746572563200000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001a00000000000000000000000004cd00e387622c35bddb9b4c962c136462338bc310000000000000000000000004cd00e387622c35bddb9b4c962c136462338bc310000000000000000000000000000000000000000000000000000000000000038000000000000000000000000000000000000000000000000000000000000000000000000000000000000000055d398326f99059ff775485246999027b319795500000000000000000000000000000000000000000000000000119baee0ab04000000000000000000000000000000000000000000000000000000000000000140000000000000000000000000000000000000000000000000000027ca57357c0000000000000000000000000056ca675c3633cc16bd6849e2b431d4e8de5e23bf000000000000000000000000000000000000000000000000000000000000004449290c1c000000000000000000000000141d32a89a1e0a5ef360034a2f60a4b917c1883898a0daaba6718116f5e32861eb177f82fda2b12c3ce8db0702614b3403ce103b0000000000000000000000000000000000000000000000000000000005", + "effectiveGas": 84621, + "feeEstimate": 1697497260000, + "from": "0x141d32a89a1e0a5ef360034a2f60a4b917c18838", + "gas": "0x21153", + "gasCost": "1697497260000", + "gasIncludedFeeData": { + "balanceNeeded": "0x11c61d1204fb8a", + "currentBalance": "0x3c396afd1751c6", + "error": "", + "gas": "0x160e2", + "maxFeePerGas": "0x1ea4c94", + "maxPriorityFeePerGas": "0x4" + }, + "maxFeePerGas": "0x395a210", + "maxPriorityFeePerGas": "0x0", + "to": "0x23981fC34e69eeDFE2BD9a0a9fCb0719Fe09DbFC", + "type": "bridge", + "value": "0x11c37937e08000" + } + ], + "networkClientId": "arbitrum-mainnet", + "origin": "metamask", + "originalGasEstimate": "0x1e834", + "r": "0x8b911cfefbff1891bca4eb341aeeb21f063866fe14394bc64c10e37bc6ffa4aa", + "rawTx": "0x02f9044f82a4b12c80840395a2108301e83494141d32a89a1e0a5ef360034a2f60a4b917c1883880b903e4e9ae5c5301000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000040000000000000000000000000000000000000000000000000000000000000038000000000000000000000000000000000000000000000000000000000000000200000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000002000000000000000000000000023981fc34e69eedfe2bd9a0a9fcb0719fe09dbfc0000000000000000000000000000000000000000000000000011c37937e08000000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000002853ce33bff000000000000000000000000000000000000000000000000000000000000008000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000011c37937e0800000000000000000000000000000000000000000000000000000000000000000c0000000000000000000000000000000000000000000000000000000000000000e72656c617941646170746572563200000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001a00000000000000000000000004cd00e387622c35bddb9b4c962c136462338bc310000000000000000000000004cd00e387622c35bddb9b4c962c136462338bc310000000000000000000000000000000000000000000000000000000000000038000000000000000000000000000000000000000000000000000000000000000000000000000000000000000055d398326f99059ff775485246999027b319795500000000000000000000000000000000000000000000000000119baee0ab04000000000000000000000000000000000000000000000000000000000000000140000000000000000000000000000000000000000000000000000027ca57357c0000000000000000000000000056ca675c3633cc16bd6849e2b431d4e8de5e23bf000000000000000000000000000000000000000000000000000000000000004449290c1c000000000000000000000000141d32a89a1e0a5ef360034a2f60a4b917c1883898a0daaba6718116f5e32861eb177f82fda2b12c3ce8db0702614b3403ce103b0000000000000000000000000000000000000000000000000000000005000000000000000000000000000000000000000000000000000000c080a08b911cfefbff1891bca4eb341aeeb21f063866fe14394bc64c10e37bc6ffa4aaa06502a05e03c0ff97e2198298c38ac192fce5c321ce0c2c8afd3db8b61672d115", + "s": "0x6502a05e03c0ff97e2198298c38ac192fce5c321ce0c2c8afd3db8b61672d115", + "status": "confirmed", + "submittedTime": 1778794569944, + "time": 1778794569240, + "txParams": { + "data": "0xe9ae5c5301000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000040000000000000000000000000000000000000000000000000000000000000038000000000000000000000000000000000000000000000000000000000000000200000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000002000000000000000000000000023981fc34e69eedfe2bd9a0a9fcb0719fe09dbfc0000000000000000000000000000000000000000000000000011c37937e08000000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000002853ce33bff000000000000000000000000000000000000000000000000000000000000008000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000011c37937e0800000000000000000000000000000000000000000000000000000000000000000c0000000000000000000000000000000000000000000000000000000000000000e72656c617941646170746572563200000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001a00000000000000000000000004cd00e387622c35bddb9b4c962c136462338bc310000000000000000000000004cd00e387622c35bddb9b4c962c136462338bc310000000000000000000000000000000000000000000000000000000000000038000000000000000000000000000000000000000000000000000000000000000000000000000000000000000055d398326f99059ff775485246999027b319795500000000000000000000000000000000000000000000000000119baee0ab04000000000000000000000000000000000000000000000000000000000000000140000000000000000000000000000000000000000000000000000027ca57357c0000000000000000000000000056ca675c3633cc16bd6849e2b431d4e8de5e23bf000000000000000000000000000000000000000000000000000000000000004449290c1c000000000000000000000000141d32a89a1e0a5ef360034a2f60a4b917c1883898a0daaba6718116f5e32861eb177f82fda2b12c3ce8db0702614b3403ce103b0000000000000000000000000000000000000000000000000000000005000000000000000000000000000000000000000000000000000000", + "from": "0x141d32a89a1e0a5ef360034a2f60a4b917c18838", + "gas": "0x1e834", + "gasLimit": "0x1e834", + "maxFeePerGas": "0x395a210", + "maxPriorityFeePerGas": "0x0", + "nonce": "0x2c", + "to": "0x141d32a89a1e0a5ef360034a2f60a4b917c18838", + "type": "0x2", + "value": "0x0" + }, + "txReceipt": { + "blockHash": "0x522051b2b11698154686e40e17b7590bba5476679066c8b5d1c38bdea0a047c7", + "blockNumber": "0x1b96d99a", + "contractAddress": null, + "cumulativeGasUsed": "0x358b5", + "effectiveGasPrice": "0x1312d00", + "from": "0x141d32a89a1e0a5ef360034a2f60a4b917c18838", + "gasUsed": "0x17fbe", + "gasUsedForL1": "0x56", + "l1BlockNumber": "0x17eefa8", + "logs": [ + { + "address": "0x56ca675c3633cc16bd6849e2b431d4e8de5e23bf", + "blockHash": "0x522051b2b11698154686e40e17b7590bba5476679066c8b5d1c38bdea0a047c7", + "blockNumber": "0x1b96d99a", + "blockTimestamp": "0x6a06404a", + "data": "0x000000000000000000000000000000000000000000000000000027ca57357c00", + "logIndex": "0x3", + "removed": false, + "topics": [ + "0x3d0ce9bfc3ed7d6862dbb28b2dea94561fe714a1b4d019aa8af39730d1ad7c3d", + "0x0000000000000000000000007a70cb77a12fa2dc3fa1bc1dcbca4c79db71a289" + ], + "transactionHash": "0x905c4d1137e0fb354433854d51eaa563ddd4d222010ca6cd12f11b046757224f", + "transactionIndex": "0x2" + }, + { + "address": "0x7a70cb77a12fa2dc3fa1bc1dcbca4c79db71a289", + "blockHash": "0x522051b2b11698154686e40e17b7590bba5476679066c8b5d1c38bdea0a047c7", + "blockNumber": "0x1b96d99a", + "blockTimestamp": "0x6a06404a", + "data": "0x000000000000000000000000000000000000000000000000000000000000000000000000000000000000000056ca675c3633cc16bd6849e2b431d4e8de5e23bf000000000000000000000000000000000000000000000000000027ca57357c00", + "logIndex": "0x4", + "removed": false, + "topics": [ + "0x6ded982279c8387ad8a63e73385031a3807c1862e633f06e09d11bcb6e282f60" + ], + "transactionHash": "0x905c4d1137e0fb354433854d51eaa563ddd4d222010ca6cd12f11b046757224f", + "transactionIndex": "0x2" + }, + { + "address": "0x4cd00e387622c35bddb9b4c962c136462338bc31", + "blockHash": "0x522051b2b11698154686e40e17b7590bba5476679066c8b5d1c38bdea0a047c7", + "blockNumber": "0x1b96d99a", + "blockTimestamp": "0x6a06404a", + "data": "0x000000000000000000000000141d32a89a1e0a5ef360034a2f60a4b917c1883800000000000000000000000000000000000000000000000000119baee0ab040098a0daaba6718116f5e32861eb177f82fda2b12c3ce8db0702614b3403ce103b", + "logIndex": "0x5", + "removed": false, + "topics": [ + "0x8032066556caf3967d8fec4ad22a2d9e1e9576556b2903a0fcd5b1fd201e3477" + ], + "transactionHash": "0x905c4d1137e0fb354433854d51eaa563ddd4d222010ca6cd12f11b046757224f", + "transactionIndex": "0x2" + }, + { + "address": "0x7a70cb77a12fa2dc3fa1bc1dcbca4c79db71a289", + "blockHash": "0x522051b2b11698154686e40e17b7590bba5476679066c8b5d1c38bdea0a047c7", + "blockNumber": "0x1b96d99a", + "blockTimestamp": "0x6a06404a", + "data": "0x000000000000000000000000141d32a89a1e0a5ef360034a2f60a4b917c188380000000000000000000000004cd00e387622c35bddb9b4c962c136462338bc310000000000000000000000000000000000000000000000000000000000000038000000000000000000000000000000000000000000000000000000000000000000000000000000000000000055d398326f99059ff775485246999027b319795500000000000000000000000000000000000000000000000000119baee0ab0400", + "logIndex": "0x6", + "removed": false, + "topics": [ + "0x831bac9533a2034226daa21109dbd4f887674f0fe4877e1a8b35b3ffe1bdce76" + ], + "transactionHash": "0x905c4d1137e0fb354433854d51eaa563ddd4d222010ca6cd12f11b046757224f", + "transactionIndex": "0x2" + } + ], + "logsBloom": "0x00000000000000000000000000000000000000000000000000000000000000004000000000000080000000000000000000000000000000000000000000000000100000000000002000000000000100000000000000000000000000001000000004000000000010000000000000000001000000002000000000800000000000000000000000000000000000000000000000000000000000000000000000000000000000200000000000000040000000000000000000000000004000000000100008000020000000000000040000000000000000000000200000000000000000000000000000000000000080800000000000000000800000000004000400000000", + "status": "0x1", + "timeboosted": false, + "to": "0x141d32a89a1e0a5ef360034a2f60a4b917c18838", + "transactionHash": "0x905c4d1137e0fb354433854d51eaa563ddd4d222010ca6cd12f11b046757224f", + "transactionIndex": "0x2", + "type": "0x2" + }, + "type": "bridge", + "userEditedGasLimit": false, + "userFeeLevel": "medium", + "v": "0x0", + "verifiedOnBlockchain": true + }, + { + "batchId": "0x19e287b2d20", + "chainId": "0x38", + "defaultGasEstimates": { + "estimateType": "medium", + "gas": "0x8a5b7", + "maxFeePerGas": "0x2faf080", + "maxPriorityFeePerGas": "0x2faf080" + }, + "delegationAddress": "0x63c0c19a282a1b52b07dd5a65b58948a07dae32b", + "error": { + "message": "RPC submit: gas required exceeds allowance (505823)", + "name": "Error", + "stack": "Error: RPC submit: gas required exceeds allowance (505823)\n at TransactionController._TransactionController_publishTransaction (chrome-extension://hebhblbkkdabgoldnojllkipeoacjioc/js-node_modules_metamask_s.js:47207:15)\n at async chrome-extension://hebhblbkkdabgoldnojllkipeoacjioc/js-node_modules_metamask_s.js:47893:47\n at async TransactionController._TransactionController_defaultPublishHook (chrome-extension://hebhblbkkdabgoldnojllkipeoacjioc/js-node_modules_metamask_s.js:47886:5)\n at async TransactionController._TransactionController_approveTransaction (chrome-extension://hebhblbkkdabgoldnojllkipeoacjioc/js-node_modules_metamask_s.js:47157:43)\n at async TransactionController._TransactionController_processApproval (chrome-extension://hebhblbkkdabgoldnojllkipeoacjioc/js-node_modules_metamask_s.js:47021:40)\n at async addTransactionBatchWith7702 (chrome-extension://hebhblbkkdabgoldnojllkipeoacjioc/js-node_modules_metamask_s.js:30910:29)\n at async addTransactionBatch (chrome-extension://hebhblbkkdabgoldnojllkipeoacjioc/js-node_modules_metamask_s.js:30717:20)\n at async TransactionController.addTransactionBatch (chrome-extension://hebhblbkkdabgoldnojllkipeoacjioc/js-node_modules_metamask_s.js:45785:16)\n at async addTransactionBatch (chrome-extension://hebhblbkkdabgoldnojllkipeoacjioc/js-node_modules_metamask_a.js:56267:25)\n at async submitBatchSellHandler (chrome-extension://hebhblbkkdabgoldnojllkipeoacjioc/js-node_modules_metamask_a.js:18238:33)" + }, + "gasFeeEstimates": { + "high": { + "maxFeePerGas": "0x2faf080", + "maxPriorityFeePerGas": "0x2faf080" + }, + "low": { + "maxFeePerGas": "0x2faf080", + "maxPriorityFeePerGas": "0x2faf080" + }, + "medium": { + "maxFeePerGas": "0x2faf080", + "maxPriorityFeePerGas": "0x2faf080" + }, + "type": "fee-market" + }, + "gasFeeEstimatesLoaded": true, + "gasLimitNoBuffer": "0x8a5b7", + "id": "43539080-4fde-11f1-b40a-151a477935d3", + "isGasFeeIncluded": true, + "isGasFeeSponsored": false, + "isGasFeeTokenIgnoredIfBalance": false, + "nestedTransactions": [ + { + "data": "0x095ea7b30000000000000000000000001a1ec25dc08e98e5e93f1104b5e5cdd298707d310000000000000000000000000000000000000000000000000298348bed9600b7", + "from": "0x141d32a89a1e0a5ef360034a2f60a4b917c18838", + "to": "0xf8a0bf9cf54bb92f17374d9e9a321e6a111a51bd", + "type": "swapApproval", + "value": "0x0" + }, + { + "data": "0x5f5755290000000000000000000000000000000000000000000000000000000000000080000000000000000000000000f8a0bf9cf54bb92f17374d9e9a321e6a111a51bd0000000000000000000000000000000000000000000000000298348bed9600b700000000000000000000000000000000000000000000000000000000000000c00000000000000000000000000000000000000000000000000000000000000018756e69737761705065726d69743246656544796e616d696300000000000000000000000000000000000000000000000000000000000000000000000000000360000000000000000000000000f8a0bf9cf54bb92f17374d9e9a321e6a111a51bd00000000000000000000000055d398326f99059ff775485246999027b31979550000000000000000000000000000000000000000000000000298348bed9600b70000000000000000000000000000000000000000000000001ab2a73a9f2201cb0000000000000000000000000000000000000000000000000000000000000120000000000000000000000000000000000000000000000000003d8ff6d7e19783000000000000000000000000b28da7bc87a9dd1e60849aa7fcb5da24ea913c420000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000022e3593564c000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000000a0000000000000000000000000000000000000000000000000000000006a06498d00000000000000000000000000000000000000000000000000000000000000010000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000000000200000000000000000000000000000000000000000000000000000000000000120000000000000000000000000c590175e458b83680867afd273527ff58f74c02b0000000000000000000000000000000000000000000000000298348bed9600b70000000000000000000000000000000000000000000000001af1be52a765a14c00000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000000000000000000000000000000010000000000000000000000000000000000000000000000000000000000000042f8a0bf9cf54bb92f17374d9e9a321e6a111a51bd0001f42170ed0880ac9a755fd29b2688956bd959f933f80001f455d398326f99059ff775485246999027b3197955000000000000000000000000000000000000000000000000000000000000756e69780000b2c5de0b000000000000000000000000000000000000ad", + "from": "0x141d32a89a1e0a5ef360034a2f60a4b917c18838", + "to": "0x1a1ec25DC08e98e5E93F1104B5e5cdD298707d31", + "type": "swap", + "value": "0x0" + }, + { + "data": "0x095ea7b30000000000000000000000001a1ec25dc08e98e5e93f1104b5e5cdd298707d310000000000000000000000000000000000000000000000001af6aaa3c79f6657", + "from": "0x141d32a89a1e0a5ef360034a2f60a4b917c18838", + "to": "0x000ae314e2a2172a039b26378814c252734f556a", + "type": "swapApproval", + "value": "0x0" + }, + { + "data": "0x5f5755290000000000000000000000000000000000000000000000000000000000000080000000000000000000000000000ae314e2a2172a039b26378814c252734f556a0000000000000000000000000000000000000000000000001af6aaa3c79f665700000000000000000000000000000000000000000000000000000000000000c00000000000000000000000000000000000000000000000000000000000000018756e69737761705065726d69743246656544796e616d696300000000000000000000000000000000000000000000000000000000000000000000000000000340000000000000000000000000000ae314e2a2172a039b26378814c252734f556a00000000000000000000000055d398326f99059ff775485246999027b31979550000000000000000000000000000000000000000000000001af6aaa3c79f665700000000000000000000000000000000000000000000000011dd825eb779b23d00000000000000000000000000000000000000000000000000000000000001200000000000000000000000000000000000000000000000000029320357f066c9000000000000000000000000b28da7bc87a9dd1e60849aa7fcb5da24ea913c420000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000020e3593564c000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000000a0000000000000000000000000000000000000000000000000000000006a06498d00000000000000000000000000000000000000000000000000000000000000010000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000000000200000000000000000000000000000000000000000000000000000000000000100000000000000000000000000c590175e458b83680867afd273527ff58f74c02b0000000000000000000000000000000000000000000000001af6aaa3c79f66570000000000000000000000000000000000000000000000001207ba1cfcc2244b00000000000000000000000000000000000000000000000000000000000000a00000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000002b000ae314e2a2172a039b26378814c252734f556a0001f455d398326f99059ff775485246999027b3197955000000000000000000000000000000000000000000756e69780000b2c5de0b000000000000000000000000000000000000e0", + "from": "0x141d32a89a1e0a5ef360034a2f60a4b917c18838", + "to": "0x1a1ec25DC08e98e5E93F1104B5e5cdD298707d31", + "type": "swap", + "value": "0x0" + }, + { + "data": "0xa9059cbb000000000000000000000000e3478b0bb1a5084567c319096437924948be196400000000000000000000000000000000000000000000000000ba7fcd7dc8bade", + "from": "0x141d32a89a1e0a5ef360034a2f60a4b917c18838", + "to": "0x55d398326f99059ff775485246999027b3197955", + "type": "transfer", + "value": "0x0" + } + ], + "networkClientId": "9a1eafde-5f04-434b-b011-e9de5c50baf0", + "origin": "metamask", + "originalGasEstimate": "0x8a5b7", + "r": "0xb07541667b9413696707b768385f6d8254d47a142b7b112f8a261e05825bb1e8", + "rawTx": "0x02f90df138528402faf0808402faf0808308a5b794141d32a89a1e0a5ef360034a2f60a4b917c1883880b90d84e9ae5c53010100000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000400000000000000000000000000000000000000000000000000000000000000d200000000000000000000000000000000000000000000000000000000000000020000000000000000000000000000000000000000000000000000000000000000500000000000000000000000000000000000000000000000000000000000000a00000000000000000000000000000000000000000000000000000000000000180000000000000000000000000000000000000000000000000000000000000066000000000000000000000000000000000000000000000000000000000000007400000000000000000000000000000000000000000000000000000000000000c00000000000000000000000000f8a0bf9cf54bb92f17374d9e9a321e6a111a51bd000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000600000000000000000000000000000000000000000000000000000000000000044095ea7b30000000000000000000000001a1ec25dc08e98e5e93f1104b5e5cdd298707d310000000000000000000000000000000000000000000000000298348bed9600b7000000000000000000000000000000000000000000000000000000000000000000000000000000001a1ec25dc08e98e5e93f1104b5e5cdd298707d310000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000004455f5755290000000000000000000000000000000000000000000000000000000000000080000000000000000000000000f8a0bf9cf54bb92f17374d9e9a321e6a111a51bd0000000000000000000000000000000000000000000000000298348bed9600b700000000000000000000000000000000000000000000000000000000000000c00000000000000000000000000000000000000000000000000000000000000018756e69737761705065726d69743246656544796e616d696300000000000000000000000000000000000000000000000000000000000000000000000000000360000000000000000000000000f8a0bf9cf54bb92f17374d9e9a321e6a111a51bd00000000000000000000000055d398326f99059ff775485246999027b31979550000000000000000000000000000000000000000000000000298348bed9600b70000000000000000000000000000000000000000000000001ab2a73a9f2201cb0000000000000000000000000000000000000000000000000000000000000120000000000000000000000000000000000000000000000000003d8ff6d7e19783000000000000000000000000b28da7bc87a9dd1e60849aa7fcb5da24ea913c420000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000022e3593564c000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000000a0000000000000000000000000000000000000000000000000000000006a06498d00000000000000000000000000000000000000000000000000000000000000010000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000000000200000000000000000000000000000000000000000000000000000000000000120000000000000000000000000c590175e458b83680867afd273527ff58f74c02b0000000000000000000000000000000000000000000000000298348bed9600b70000000000000000000000000000000000000000000000001af1be52a765a14c00000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000000000000000000000000000000010000000000000000000000000000000000000000000000000000000000000042f8a0bf9cf54bb92f17374d9e9a321e6a111a51bd0001f42170ed0880ac9a755fd29b2688956bd959f933f80001f455d398326f99059ff775485246999027b3197955000000000000000000000000000000000000000000000000000000000000756e69780000b2c5de0b000000000000000000000000000000000000ad000000000000000000000000000000000000000000000000000000000000000000000000000000000ae314e2a2172a039b26378814c252734f556a000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000600000000000000000000000000000000000000000000000000000000000000044095ea7b30000000000000000000000001a1ec25dc08e98e5e93f1104b5e5cdd298707d310000000000000000000000000000000000000000000000001af6aaa3c79f6657000000000000000000000000000000000000000000000000000000000000000000000000000000001a1ec25dc08e98e5e93f1104b5e5cdd298707d310000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000004255f5755290000000000000000000000000000000000000000000000000000000000000080000000000000000000000000000ae314e2a2172a039b26378814c252734f556a0000000000000000000000000000000000000000000000001af6aaa3c79f665700000000000000000000000000000000000000000000000000000000000000c00000000000000000000000000000000000000000000000000000000000000018756e69737761705065726d69743246656544796e616d696300000000000000000000000000000000000000000000000000000000000000000000000000000340000000000000000000000000000ae314e2a2172a039b26378814c252734f556a00000000000000000000000055d398326f99059ff775485246999027b31979550000000000000000000000000000000000000000000000001af6aaa3c79f665700000000000000000000000000000000000000000000000011dd825eb779b23d00000000000000000000000000000000000000000000000000000000000001200000000000000000000000000000000000000000000000000029320357f066c9000000000000000000000000b28da7bc87a9dd1e60849aa7fcb5da24ea913c420000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000020e3593564c000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000000a0000000000000000000000000000000000000000000000000000000006a06498d00000000000000000000000000000000000000000000000000000000000000010000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000000000200000000000000000000000000000000000000000000000000000000000000100000000000000000000000000c590175e458b83680867afd273527ff58f74c02b0000000000000000000000000000000000000000000000001af6aaa3c79f66570000000000000000000000000000000000000000000000001207ba1cfcc2244b00000000000000000000000000000000000000000000000000000000000000a00000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000002b000ae314e2a2172a039b26378814c252734f556a0001f455d398326f99059ff775485246999027b3197955000000000000000000000000000000000000000000756e69780000b2c5de0b000000000000000000000000000000000000e000000000000000000000000000000000000000000000000000000000000000000000000000000055d398326f99059ff775485246999027b3197955000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000600000000000000000000000000000000000000000000000000000000000000044a9059cbb000000000000000000000000e3478b0bb1a5084567c319096437924948be196400000000000000000000000000000000000000000000000000ba7fcd7dc8bade00000000000000000000000000000000000000000000000000000000c080a0b07541667b9413696707b768385f6d8254d47a142b7b112f8a261e05825bb1e8a0525857ed3f4b63eeab43364b6a703b9ae5b6bab5c0d20561ae0f176275c0a25f", + "s": "0x525857ed3f4b63eeab43364b6a703b9ae5b6bab5c0d20561ae0f176275c0a25f", + "status": "failed", + "time": 1778795145608, + "txParams": { + "data": "0xe9ae5c53010100000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000400000000000000000000000000000000000000000000000000000000000000d200000000000000000000000000000000000000000000000000000000000000020000000000000000000000000000000000000000000000000000000000000000500000000000000000000000000000000000000000000000000000000000000a00000000000000000000000000000000000000000000000000000000000000180000000000000000000000000000000000000000000000000000000000000066000000000000000000000000000000000000000000000000000000000000007400000000000000000000000000000000000000000000000000000000000000c00000000000000000000000000f8a0bf9cf54bb92f17374d9e9a321e6a111a51bd000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000600000000000000000000000000000000000000000000000000000000000000044095ea7b30000000000000000000000001a1ec25dc08e98e5e93f1104b5e5cdd298707d310000000000000000000000000000000000000000000000000298348bed9600b7000000000000000000000000000000000000000000000000000000000000000000000000000000001a1ec25dc08e98e5e93f1104b5e5cdd298707d310000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000004455f5755290000000000000000000000000000000000000000000000000000000000000080000000000000000000000000f8a0bf9cf54bb92f17374d9e9a321e6a111a51bd0000000000000000000000000000000000000000000000000298348bed9600b700000000000000000000000000000000000000000000000000000000000000c00000000000000000000000000000000000000000000000000000000000000018756e69737761705065726d69743246656544796e616d696300000000000000000000000000000000000000000000000000000000000000000000000000000360000000000000000000000000f8a0bf9cf54bb92f17374d9e9a321e6a111a51bd00000000000000000000000055d398326f99059ff775485246999027b31979550000000000000000000000000000000000000000000000000298348bed9600b70000000000000000000000000000000000000000000000001ab2a73a9f2201cb0000000000000000000000000000000000000000000000000000000000000120000000000000000000000000000000000000000000000000003d8ff6d7e19783000000000000000000000000b28da7bc87a9dd1e60849aa7fcb5da24ea913c420000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000022e3593564c000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000000a0000000000000000000000000000000000000000000000000000000006a06498d00000000000000000000000000000000000000000000000000000000000000010000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000000000200000000000000000000000000000000000000000000000000000000000000120000000000000000000000000c590175e458b83680867afd273527ff58f74c02b0000000000000000000000000000000000000000000000000298348bed9600b70000000000000000000000000000000000000000000000001af1be52a765a14c00000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000000000000000000000000000000010000000000000000000000000000000000000000000000000000000000000042f8a0bf9cf54bb92f17374d9e9a321e6a111a51bd0001f42170ed0880ac9a755fd29b2688956bd959f933f80001f455d398326f99059ff775485246999027b3197955000000000000000000000000000000000000000000000000000000000000756e69780000b2c5de0b000000000000000000000000000000000000ad000000000000000000000000000000000000000000000000000000000000000000000000000000000ae314e2a2172a039b26378814c252734f556a000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000600000000000000000000000000000000000000000000000000000000000000044095ea7b30000000000000000000000001a1ec25dc08e98e5e93f1104b5e5cdd298707d310000000000000000000000000000000000000000000000001af6aaa3c79f6657000000000000000000000000000000000000000000000000000000000000000000000000000000001a1ec25dc08e98e5e93f1104b5e5cdd298707d310000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000004255f5755290000000000000000000000000000000000000000000000000000000000000080000000000000000000000000000ae314e2a2172a039b26378814c252734f556a0000000000000000000000000000000000000000000000001af6aaa3c79f665700000000000000000000000000000000000000000000000000000000000000c00000000000000000000000000000000000000000000000000000000000000018756e69737761705065726d69743246656544796e616d696300000000000000000000000000000000000000000000000000000000000000000000000000000340000000000000000000000000000ae314e2a2172a039b26378814c252734f556a00000000000000000000000055d398326f99059ff775485246999027b31979550000000000000000000000000000000000000000000000001af6aaa3c79f665700000000000000000000000000000000000000000000000011dd825eb779b23d00000000000000000000000000000000000000000000000000000000000001200000000000000000000000000000000000000000000000000029320357f066c9000000000000000000000000b28da7bc87a9dd1e60849aa7fcb5da24ea913c420000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000020e3593564c000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000000a0000000000000000000000000000000000000000000000000000000006a06498d00000000000000000000000000000000000000000000000000000000000000010000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000000000200000000000000000000000000000000000000000000000000000000000000100000000000000000000000000c590175e458b83680867afd273527ff58f74c02b0000000000000000000000000000000000000000000000001af6aaa3c79f66570000000000000000000000000000000000000000000000001207ba1cfcc2244b00000000000000000000000000000000000000000000000000000000000000a00000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000002b000ae314e2a2172a039b26378814c252734f556a0001f455d398326f99059ff775485246999027b3197955000000000000000000000000000000000000000000756e69780000b2c5de0b000000000000000000000000000000000000e000000000000000000000000000000000000000000000000000000000000000000000000000000055d398326f99059ff775485246999027b3197955000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000600000000000000000000000000000000000000000000000000000000000000044a9059cbb000000000000000000000000e3478b0bb1a5084567c319096437924948be196400000000000000000000000000000000000000000000000000ba7fcd7dc8bade00000000000000000000000000000000000000000000000000000000", + "from": "0x141d32a89a1e0a5ef360034a2f60a4b917c18838", + "gas": "0x8a5b7", + "gasLimit": "0x8a5b7", + "maxFeePerGas": "0x2faf080", + "maxPriorityFeePerGas": "0x2faf080", + "nonce": "0x52", + "to": "0x141d32a89a1e0a5ef360034a2f60a4b917c18838", + "type": "0x2", + "value": "0x0" + }, + "type": "batch", + "userEditedGasLimit": false, + "userFeeLevel": "medium", + "v": "0x0", + "verifiedOnBlockchain": false + }, + { + "batchId": "0x19e287fdf25", + "chainId": "0x38", + "defaultGasEstimates": { + "estimateType": "medium", + "gas": "0x8e8c1", + "maxFeePerGas": "0x2faf080", + "maxPriorityFeePerGas": "0x2faf080" + }, + "delegationAddress": "0x63c0c19a282a1b52b07dd5a65b58948a07dae32b", + "error": { + "message": "RPC submit: gas required exceeds allowance (505823)", + "name": "Error", + "stack": "Error: RPC submit: gas required exceeds allowance (505823)\n at TransactionController._TransactionController_publishTransaction (chrome-extension://hebhblbkkdabgoldnojllkipeoacjioc/js-node_modules_metamask_s.js:47207:15)\n at async chrome-extension://hebhblbkkdabgoldnojllkipeoacjioc/js-node_modules_metamask_s.js:47893:47\n at async TransactionController._TransactionController_defaultPublishHook (chrome-extension://hebhblbkkdabgoldnojllkipeoacjioc/js-node_modules_metamask_s.js:47886:5)\n at async TransactionController._TransactionController_approveTransaction (chrome-extension://hebhblbkkdabgoldnojllkipeoacjioc/js-node_modules_metamask_s.js:47157:43)\n at async TransactionController._TransactionController_processApproval (chrome-extension://hebhblbkkdabgoldnojllkipeoacjioc/js-node_modules_metamask_s.js:47021:40)\n at async addTransactionBatchWith7702 (chrome-extension://hebhblbkkdabgoldnojllkipeoacjioc/js-node_modules_metamask_s.js:30910:29)\n at async addTransactionBatch (chrome-extension://hebhblbkkdabgoldnojllkipeoacjioc/js-node_modules_metamask_s.js:30717:20)\n at async TransactionController.addTransactionBatch (chrome-extension://hebhblbkkdabgoldnojllkipeoacjioc/js-node_modules_metamask_s.js:45785:16)\n at async addTransactionBatch (chrome-extension://hebhblbkkdabgoldnojllkipeoacjioc/js-node_modules_metamask_a.js:56268:25)\n at async submitBatchSellHandler (chrome-extension://hebhblbkkdabgoldnojllkipeoacjioc/js-node_modules_metamask_a.js:18238:33)" + }, + "gasFeeEstimates": { + "high": { + "maxFeePerGas": "0x2faf080", + "maxPriorityFeePerGas": "0x2faf080" + }, + "low": { + "maxFeePerGas": "0x2faf080", + "maxPriorityFeePerGas": "0x2faf080" + }, + "medium": { + "maxFeePerGas": "0x2faf080", + "maxPriorityFeePerGas": "0x2faf080" + }, + "type": "fee-market" + }, + "gasFeeEstimatesLoaded": true, + "gasLimitNoBuffer": "0x8e8c1", + "id": "d7baa230-4fdf-11f1-9318-cfacaf67204b", + "isGasFeeIncluded": true, + "isGasFeeSponsored": false, + "isGasFeeTokenIgnoredIfBalance": false, + "nestedTransactions": [ + { + "data": "0x095ea7b30000000000000000000000001a1ec25dc08e98e5e93f1104b5e5cdd298707d310000000000000000000000000000000000000000000000000298348bed9600b7", + "from": "0x141d32a89a1e0a5ef360034a2f60a4b917c18838", + "to": "0xf8a0bf9cf54bb92f17374d9e9a321e6a111a51bd", + "type": "swapApproval", + "value": "0x0" + }, + { + "data": "0x5f5755290000000000000000000000000000000000000000000000000000000000000080000000000000000000000000f8a0bf9cf54bb92f17374d9e9a321e6a111a51bd0000000000000000000000000000000000000000000000000298348bed9600b700000000000000000000000000000000000000000000000000000000000000c00000000000000000000000000000000000000000000000000000000000000018756e69737761705065726d69743246656544796e616d696300000000000000000000000000000000000000000000000000000000000000000000000000000360000000000000000000000000f8a0bf9cf54bb92f17374d9e9a321e6a111a51bd00000000000000000000000055d398326f99059ff775485246999027b31979550000000000000000000000000000000000000000000000000298348bed9600b70000000000000000000000000000000000000000000000001ab0fe10758301d60000000000000000000000000000000000000000000000000000000000000120000000000000000000000000000000000000000000000000003d8c2275bc8e85000000000000000000000000b28da7bc87a9dd1e60849aa7fcb5da24ea913c420000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000022e3593564c000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000000a0000000000000000000000000000000000000000000000000000000006a064c3300000000000000000000000000000000000000000000000000000000000000010000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000000000200000000000000000000000000000000000000000000000000000000000000120000000000000000000000000c590175e458b83680867afd273527ff58f74c02b0000000000000000000000000000000000000000000000000298348bed9600b70000000000000000000000000000000000000000000000001af0113bc6dfb8e500000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000000000000000000000000000000010000000000000000000000000000000000000000000000000000000000000042f8a0bf9cf54bb92f17374d9e9a321e6a111a51bd0001f42170ed0880ac9a755fd29b2688956bd959f933f80001f455d398326f99059ff775485246999027b3197955000000000000000000000000000000000000000000000000000000000000756e69780000b2c5de0b000000000000000000000000000000000000b4", + "from": "0x141d32a89a1e0a5ef360034a2f60a4b917c18838", + "to": "0x1a1ec25DC08e98e5E93F1104B5e5cdD298707d31", + "type": "swap", + "value": "0x0" + }, + { + "data": "0x095ea7b30000000000000000000000001a1ec25dc08e98e5e93f1104b5e5cdd298707d31000000000000000000000000000000000000000000000000123fd18867a38000", + "from": "0x141d32a89a1e0a5ef360034a2f60a4b917c18838", + "to": "0x1af3f329e8be154074d8769d1ffa4ee058b1dbc3", + "type": "swapApproval", + "value": "0x0" + }, + { + "data": "0x5f57552900000000000000000000000000000000000000000000000000000000000000800000000000000000000000001af3f329e8be154074d8769d1ffa4ee058b1dbc3000000000000000000000000000000000000000000000000123fd18867a3800000000000000000000000000000000000000000000000000000000000000000c00000000000000000000000000000000000000000000000000000000000000018756e69737761705065726d69743246656544796e616d6963000000000000000000000000000000000000000000000000000000000000000000000000000003400000000000000000000000001af3f329e8be154074d8769d1ffa4ee058b1dbc300000000000000000000000055d398326f99059ff775485246999027b31979550000000000000000000000000000000000000000000000001216f0a8cfb11c0000000000000000000000000000000000000000000000000011b8454bdad407f500000000000000000000000000000000000000000000000000000000000001200000000000000000000000000000000000000000000000000028e0df97f26400000000000000000000000000b28da7bc87a9dd1e60849aa7fcb5da24ea913c420000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000020e3593564c000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000000a0000000000000000000000000000000000000000000000000000000006a064c3300000000000000000000000000000000000000000000000000000000000000010000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000000000200000000000000000000000000000000000000000000000000000000000000100000000000000000000000000c590175e458b83680867afd273527ff58f74c02b0000000000000000000000000000000000000000000000001216f0a8cfb11c0000000000000000000000000000000000000000000000000011ba15ff0dee717a00000000000000000000000000000000000000000000000000000000000000a00000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000002b1af3f329e8be154074d8769d1ffa4ee058b1dbc3000bb855d398326f99059ff775485246999027b3197955000000000000000000000000000000000000000000756e69780000b2c5de0b00000000000000000000000000000000000014", + "from": "0x141d32a89a1e0a5ef360034a2f60a4b917c18838", + "to": "0x1a1ec25DC08e98e5E93F1104B5e5cdD298707d31", + "type": "swap", + "value": "0x0" + }, + { + "data": "0xa9059cbb000000000000000000000000e3478b0bb1a5084567c319096437924948be196400000000000000000000000000000000000000000000000000bec11c7e96deb0", + "from": "0x141d32a89a1e0a5ef360034a2f60a4b917c18838", + "to": "0x55d398326f99059ff775485246999027b3197955", + "type": "transfer", + "value": "0x0" + } + ], + "networkClientId": "9a1eafde-5f04-434b-b011-e9de5c50baf0", + "origin": "metamask", + "originalGasEstimate": "0x8e8c1", + "r": "0xc46c0e69f3855555786db2dc2a5f744a1f7263d2472a0f9462ad4eb4c41a1bd0", + "rawTx": "0x02f90df138528402faf0808402faf0808308e8c194141d32a89a1e0a5ef360034a2f60a4b917c1883880b90d84e9ae5c53010100000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000400000000000000000000000000000000000000000000000000000000000000d200000000000000000000000000000000000000000000000000000000000000020000000000000000000000000000000000000000000000000000000000000000500000000000000000000000000000000000000000000000000000000000000a00000000000000000000000000000000000000000000000000000000000000180000000000000000000000000000000000000000000000000000000000000066000000000000000000000000000000000000000000000000000000000000007400000000000000000000000000000000000000000000000000000000000000c00000000000000000000000000f8a0bf9cf54bb92f17374d9e9a321e6a111a51bd000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000600000000000000000000000000000000000000000000000000000000000000044095ea7b30000000000000000000000001a1ec25dc08e98e5e93f1104b5e5cdd298707d310000000000000000000000000000000000000000000000000298348bed9600b7000000000000000000000000000000000000000000000000000000000000000000000000000000001a1ec25dc08e98e5e93f1104b5e5cdd298707d310000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000004455f5755290000000000000000000000000000000000000000000000000000000000000080000000000000000000000000f8a0bf9cf54bb92f17374d9e9a321e6a111a51bd0000000000000000000000000000000000000000000000000298348bed9600b700000000000000000000000000000000000000000000000000000000000000c00000000000000000000000000000000000000000000000000000000000000018756e69737761705065726d69743246656544796e616d696300000000000000000000000000000000000000000000000000000000000000000000000000000360000000000000000000000000f8a0bf9cf54bb92f17374d9e9a321e6a111a51bd00000000000000000000000055d398326f99059ff775485246999027b31979550000000000000000000000000000000000000000000000000298348bed9600b70000000000000000000000000000000000000000000000001ab0fe10758301d60000000000000000000000000000000000000000000000000000000000000120000000000000000000000000000000000000000000000000003d8c2275bc8e85000000000000000000000000b28da7bc87a9dd1e60849aa7fcb5da24ea913c420000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000022e3593564c000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000000a0000000000000000000000000000000000000000000000000000000006a064c3300000000000000000000000000000000000000000000000000000000000000010000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000000000200000000000000000000000000000000000000000000000000000000000000120000000000000000000000000c590175e458b83680867afd273527ff58f74c02b0000000000000000000000000000000000000000000000000298348bed9600b70000000000000000000000000000000000000000000000001af0113bc6dfb8e500000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000000000000000000000000000000010000000000000000000000000000000000000000000000000000000000000042f8a0bf9cf54bb92f17374d9e9a321e6a111a51bd0001f42170ed0880ac9a755fd29b2688956bd959f933f80001f455d398326f99059ff775485246999027b3197955000000000000000000000000000000000000000000000000000000000000756e69780000b2c5de0b000000000000000000000000000000000000b40000000000000000000000000000000000000000000000000000000000000000000000000000001af3f329e8be154074d8769d1ffa4ee058b1dbc3000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000600000000000000000000000000000000000000000000000000000000000000044095ea7b30000000000000000000000001a1ec25dc08e98e5e93f1104b5e5cdd298707d31000000000000000000000000000000000000000000000000123fd18867a38000000000000000000000000000000000000000000000000000000000000000000000000000000000001a1ec25dc08e98e5e93f1104b5e5cdd298707d310000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000004255f57552900000000000000000000000000000000000000000000000000000000000000800000000000000000000000001af3f329e8be154074d8769d1ffa4ee058b1dbc3000000000000000000000000000000000000000000000000123fd18867a3800000000000000000000000000000000000000000000000000000000000000000c00000000000000000000000000000000000000000000000000000000000000018756e69737761705065726d69743246656544796e616d6963000000000000000000000000000000000000000000000000000000000000000000000000000003400000000000000000000000001af3f329e8be154074d8769d1ffa4ee058b1dbc300000000000000000000000055d398326f99059ff775485246999027b31979550000000000000000000000000000000000000000000000001216f0a8cfb11c0000000000000000000000000000000000000000000000000011b8454bdad407f500000000000000000000000000000000000000000000000000000000000001200000000000000000000000000000000000000000000000000028e0df97f26400000000000000000000000000b28da7bc87a9dd1e60849aa7fcb5da24ea913c420000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000020e3593564c000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000000a0000000000000000000000000000000000000000000000000000000006a064c3300000000000000000000000000000000000000000000000000000000000000010000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000000000200000000000000000000000000000000000000000000000000000000000000100000000000000000000000000c590175e458b83680867afd273527ff58f74c02b0000000000000000000000000000000000000000000000001216f0a8cfb11c0000000000000000000000000000000000000000000000000011ba15ff0dee717a00000000000000000000000000000000000000000000000000000000000000a00000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000002b1af3f329e8be154074d8769d1ffa4ee058b1dbc3000bb855d398326f99059ff775485246999027b3197955000000000000000000000000000000000000000000756e69780000b2c5de0b0000000000000000000000000000000000001400000000000000000000000000000000000000000000000000000000000000000000000000000055d398326f99059ff775485246999027b3197955000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000600000000000000000000000000000000000000000000000000000000000000044a9059cbb000000000000000000000000e3478b0bb1a5084567c319096437924948be196400000000000000000000000000000000000000000000000000bec11c7e96deb000000000000000000000000000000000000000000000000000000000c001a0c46c0e69f3855555786db2dc2a5f744a1f7263d2472a0f9462ad4eb4c41a1bd0a067619c595c1526c896229ed25900db3fd44fc08e39aeb21745905f757ab2d621", + "s": "0x67619c595c1526c896229ed25900db3fd44fc08e39aeb21745905f757ab2d621", + "status": "failed", + "time": 1778795824083, + "txParams": { + "data": "0xe9ae5c53010100000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000400000000000000000000000000000000000000000000000000000000000000d200000000000000000000000000000000000000000000000000000000000000020000000000000000000000000000000000000000000000000000000000000000500000000000000000000000000000000000000000000000000000000000000a00000000000000000000000000000000000000000000000000000000000000180000000000000000000000000000000000000000000000000000000000000066000000000000000000000000000000000000000000000000000000000000007400000000000000000000000000000000000000000000000000000000000000c00000000000000000000000000f8a0bf9cf54bb92f17374d9e9a321e6a111a51bd000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000600000000000000000000000000000000000000000000000000000000000000044095ea7b30000000000000000000000001a1ec25dc08e98e5e93f1104b5e5cdd298707d310000000000000000000000000000000000000000000000000298348bed9600b7000000000000000000000000000000000000000000000000000000000000000000000000000000001a1ec25dc08e98e5e93f1104b5e5cdd298707d310000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000004455f5755290000000000000000000000000000000000000000000000000000000000000080000000000000000000000000f8a0bf9cf54bb92f17374d9e9a321e6a111a51bd0000000000000000000000000000000000000000000000000298348bed9600b700000000000000000000000000000000000000000000000000000000000000c00000000000000000000000000000000000000000000000000000000000000018756e69737761705065726d69743246656544796e616d696300000000000000000000000000000000000000000000000000000000000000000000000000000360000000000000000000000000f8a0bf9cf54bb92f17374d9e9a321e6a111a51bd00000000000000000000000055d398326f99059ff775485246999027b31979550000000000000000000000000000000000000000000000000298348bed9600b70000000000000000000000000000000000000000000000001ab0fe10758301d60000000000000000000000000000000000000000000000000000000000000120000000000000000000000000000000000000000000000000003d8c2275bc8e85000000000000000000000000b28da7bc87a9dd1e60849aa7fcb5da24ea913c420000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000022e3593564c000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000000a0000000000000000000000000000000000000000000000000000000006a064c3300000000000000000000000000000000000000000000000000000000000000010000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000000000200000000000000000000000000000000000000000000000000000000000000120000000000000000000000000c590175e458b83680867afd273527ff58f74c02b0000000000000000000000000000000000000000000000000298348bed9600b70000000000000000000000000000000000000000000000001af0113bc6dfb8e500000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000000000000000000000000000000010000000000000000000000000000000000000000000000000000000000000042f8a0bf9cf54bb92f17374d9e9a321e6a111a51bd0001f42170ed0880ac9a755fd29b2688956bd959f933f80001f455d398326f99059ff775485246999027b3197955000000000000000000000000000000000000000000000000000000000000756e69780000b2c5de0b000000000000000000000000000000000000b40000000000000000000000000000000000000000000000000000000000000000000000000000001af3f329e8be154074d8769d1ffa4ee058b1dbc3000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000600000000000000000000000000000000000000000000000000000000000000044095ea7b30000000000000000000000001a1ec25dc08e98e5e93f1104b5e5cdd298707d31000000000000000000000000000000000000000000000000123fd18867a38000000000000000000000000000000000000000000000000000000000000000000000000000000000001a1ec25dc08e98e5e93f1104b5e5cdd298707d310000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000004255f57552900000000000000000000000000000000000000000000000000000000000000800000000000000000000000001af3f329e8be154074d8769d1ffa4ee058b1dbc3000000000000000000000000000000000000000000000000123fd18867a3800000000000000000000000000000000000000000000000000000000000000000c00000000000000000000000000000000000000000000000000000000000000018756e69737761705065726d69743246656544796e616d6963000000000000000000000000000000000000000000000000000000000000000000000000000003400000000000000000000000001af3f329e8be154074d8769d1ffa4ee058b1dbc300000000000000000000000055d398326f99059ff775485246999027b31979550000000000000000000000000000000000000000000000001216f0a8cfb11c0000000000000000000000000000000000000000000000000011b8454bdad407f500000000000000000000000000000000000000000000000000000000000001200000000000000000000000000000000000000000000000000028e0df97f26400000000000000000000000000b28da7bc87a9dd1e60849aa7fcb5da24ea913c420000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000020e3593564c000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000000a0000000000000000000000000000000000000000000000000000000006a064c3300000000000000000000000000000000000000000000000000000000000000010000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000000000200000000000000000000000000000000000000000000000000000000000000100000000000000000000000000c590175e458b83680867afd273527ff58f74c02b0000000000000000000000000000000000000000000000001216f0a8cfb11c0000000000000000000000000000000000000000000000000011ba15ff0dee717a00000000000000000000000000000000000000000000000000000000000000a00000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000002b1af3f329e8be154074d8769d1ffa4ee058b1dbc3000bb855d398326f99059ff775485246999027b3197955000000000000000000000000000000000000000000756e69780000b2c5de0b0000000000000000000000000000000000001400000000000000000000000000000000000000000000000000000000000000000000000000000055d398326f99059ff775485246999027b3197955000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000600000000000000000000000000000000000000000000000000000000000000044a9059cbb000000000000000000000000e3478b0bb1a5084567c319096437924948be196400000000000000000000000000000000000000000000000000bec11c7e96deb000000000000000000000000000000000000000000000000000000000", + "from": "0x141d32a89a1e0a5ef360034a2f60a4b917c18838", + "gas": "0x8e8c1", + "gasLimit": "0x8e8c1", + "maxFeePerGas": "0x2faf080", + "maxPriorityFeePerGas": "0x2faf080", + "nonce": "0x52", + "to": "0x141d32a89a1e0a5ef360034a2f60a4b917c18838", + "type": "0x2", + "value": "0x0" + }, + "type": "batch", + "userEditedGasLimit": false, + "userFeeLevel": "medium", + "v": "0x1", + "verifiedOnBlockchain": false + }, + { + "batchId": "0x19e28868c54", + "chainId": "0x38", + "defaultGasEstimates": { + "estimateType": "medium", + "gas": "0x7d0f1", + "maxFeePerGas": "0x3938700", + "maxPriorityFeePerGas": "0x3938700" + }, + "delegationAddress": "0x63c0c19a282a1b52b07dd5a65b58948a07dae32b", + "error": { + "message": "RPC submit: Internal error", + "name": "Error", + "stack": "Error: RPC submit: Internal error\n at TransactionController._TransactionController_publishTransaction (chrome-extension://hebhblbkkdabgoldnojllkipeoacjioc/js-node_modules_metamask_s.js:47207:15)\n at async chrome-extension://hebhblbkkdabgoldnojllkipeoacjioc/js-node_modules_metamask_s.js:47893:47\n at async TransactionController._TransactionController_defaultPublishHook (chrome-extension://hebhblbkkdabgoldnojllkipeoacjioc/js-node_modules_metamask_s.js:47886:5)\n at async TransactionController._TransactionController_approveTransaction (chrome-extension://hebhblbkkdabgoldnojllkipeoacjioc/js-node_modules_metamask_s.js:47157:43)\n at async TransactionController._TransactionController_processApproval (chrome-extension://hebhblbkkdabgoldnojllkipeoacjioc/js-node_modules_metamask_s.js:47021:40)\n at async addTransactionBatchWith7702 (chrome-extension://hebhblbkkdabgoldnojllkipeoacjioc/js-node_modules_metamask_s.js:30910:29)\n at async addTransactionBatch (chrome-extension://hebhblbkkdabgoldnojllkipeoacjioc/js-node_modules_metamask_s.js:30717:20)\n at async TransactionController.addTransactionBatch (chrome-extension://hebhblbkkdabgoldnojllkipeoacjioc/js-node_modules_metamask_s.js:45785:16)\n at async addTransactionBatch (chrome-extension://hebhblbkkdabgoldnojllkipeoacjioc/js-node_modules_metamask_a.js:56268:25)\n at async submitBatchSellHandler (chrome-extension://hebhblbkkdabgoldnojllkipeoacjioc/js-node_modules_metamask_a.js:18238:33)" + }, + "gasFeeEstimates": { + "high": { + "maxFeePerGas": "0x2faf080", + "maxPriorityFeePerGas": "0x2faf080" + }, + "low": { + "maxFeePerGas": "0x2faf080", + "maxPriorityFeePerGas": "0x2faf080" + }, + "medium": { + "maxFeePerGas": "0x2faf080", + "maxPriorityFeePerGas": "0x2faf080" + }, + "type": "fee-market" + }, + "gasFeeEstimatesLoaded": true, + "gasLimitNoBuffer": "0x7d0f1", + "id": "daf53e50-4fe0-11f1-b70f-4dcca78b91f8", + "isGasFeeIncluded": true, + "isGasFeeSponsored": false, + "isGasFeeTokenIgnoredIfBalance": false, + "nestedTransactions": [ + { + "data": "0x095ea7b30000000000000000000000001a1ec25dc08e98e5e93f1104b5e5cdd298707d310000000000000000000000000000000000000000000000000298348bed9600b7", + "from": "0x141d32a89a1e0a5ef360034a2f60a4b917c18838", + "gas": "0x110fa", + "maxFeePerGas": "0x3938700", + "maxPriorityFeePerGas": "0x3938700", + "to": "0xf8a0bf9cf54bb92f17374d9e9a321e6a111a51bd", + "type": "swapApproval", + "value": "0x0" + }, + { + "data": "0x5f5755290000000000000000000000000000000000000000000000000000000000000080000000000000000000000000f8a0bf9cf54bb92f17374d9e9a321e6a111a51bd0000000000000000000000000000000000000000000000000298348bed9600b700000000000000000000000000000000000000000000000000000000000000c0000000000000000000000000000000000000000000000000000000000000001b70616e63616b6553776170526f7574657246656544796e616d696300000000000000000000000000000000000000000000000000000000000000000000000220000000000000000000000000f8a0bf9cf54bb92f17374d9e9a321e6a111a51bd00000000000000000000000055d398326f99059ff775485246999027b31979550000000000000000000000000000000000000000000000000298348bed9600b70000000000000000000000000000000000000000000000001a9a2f99f18359de0000000000000000000000000000000000000000000000000000000000000120000000000000000000000000000000000000000000000000003d578b9a0a9756000000000000000000000000b28da7bc87a9dd1e60849aa7fcb5da24ea913c42000000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000000000e404e45aaf000000000000000000000000f8a0bf9cf54bb92f17374d9e9a321e6a111a51bd00000000000000000000000055d398326f99059ff775485246999027b319795500000000000000000000000000000000000000000000000000000000000009c4000000000000000000000000c590175e458b83680867afd273527ff58f74c02b0000000000000000000000000000000000000000000000000298348bed9600b70000000000000000000000000000000000000000000000001ad90ce04866732300000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000060", + "from": "0x141d32a89a1e0a5ef360034a2f60a4b917c18838", + "gas": "0x5de27", + "maxFeePerGas": "0x3938700", + "maxPriorityFeePerGas": "0x3938700", + "to": "0x1a1ec25DC08e98e5E93F1104B5e5cdD298707d31", + "type": "swap", + "value": "0x0" + }, + { + "data": "0x095ea7b30000000000000000000000001a1ec25dc08e98e5e93f1104b5e5cdd298707d31000000000000000000000000000000000000000000000000123fd18867a38000", + "from": "0x141d32a89a1e0a5ef360034a2f60a4b917c18838", + "gas": "0x110fa", + "maxFeePerGas": "0x3938700", + "maxPriorityFeePerGas": "0x3938700", + "to": "0x1af3f329e8be154074d8769d1ffa4ee058b1dbc3", + "type": "swapApproval", + "value": "0x0" + }, + { + "data": "0x5f57552900000000000000000000000000000000000000000000000000000000000000800000000000000000000000001af3f329e8be154074d8769d1ffa4ee058b1dbc3000000000000000000000000000000000000000000000000123fd18867a3800000000000000000000000000000000000000000000000000000000000000000c0000000000000000000000000000000000000000000000000000000000000001b70616e63616b6553776170526f7574657246656544796e616d6963000000000000000000000000000000000000000000000000000000000000000000000002200000000000000000000000001af3f329e8be154074d8769d1ffa4ee058b1dbc300000000000000000000000055d398326f99059ff775485246999027b31979550000000000000000000000000000000000000000000000001216f0a8cfb11c0000000000000000000000000000000000000000000000000011b823441f3b9f7d00000000000000000000000000000000000000000000000000000000000001200000000000000000000000000000000000000000000000000028e0df97f26400000000000000000000000000b28da7bc87a9dd1e60849aa7fcb5da24ea913c42000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000e404e45aaf0000000000000000000000001af3f329e8be154074d8769d1ffa4ee058b1dbc300000000000000000000000055d398326f99059ff775485246999027b31979550000000000000000000000000000000000000000000000000000000000000064000000000000000000000000c590175e458b83680867afd273527ff58f74c02b0000000000000000000000000000000000000000000000001216f0a8cfb11c0000000000000000000000000000000000000000000000000011b9f3f3d5e5cd240000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000005c", + "from": "0x141d32a89a1e0a5ef360034a2f60a4b917c18838", + "gas": "0x5b8f6", + "maxFeePerGas": "0x3938700", + "maxPriorityFeePerGas": "0x3938700", + "to": "0x1a1ec25DC08e98e5E93F1104B5e5cdD298707d31", + "type": "swap", + "value": "0x0" + }, + { + "data": "0xa9059cbb000000000000000000000000e3478b0bb1a5084567c319096437924948be196400000000000000000000000000000000000000000000000000a94ec52d664f82", + "from": "0x141d32a89a1e0a5ef360034a2f60a4b917c18838", + "gas": "0xcc57", + "maxFeePerGas": "0x3938700", + "maxPriorityFeePerGas": "0x3938700", + "to": "0x55d398326f99059ff775485246999027b3197955", + "type": "transfer", + "value": "0x0" + } + ], + "networkClientId": "9a1eafde-5f04-434b-b011-e9de5c50baf0", + "origin": "metamask", + "originalGasEstimate": "0x7d0f1", + "r": "0x933f48c3cc8648cafaee08c7d1cf0a25c26ac16c8d0904bc7cd4c889b1acf96e", + "rawTx": "0x02f90b913852840393870084039387008307d0f194141d32a89a1e0a5ef360034a2f60a4b917c1883880b90b24e9ae5c53010100000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000400000000000000000000000000000000000000000000000000000000000000ac00000000000000000000000000000000000000000000000000000000000000020000000000000000000000000000000000000000000000000000000000000000500000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000000000000000000000000000001800000000000000000000000000000000000000000000000000000000000000520000000000000000000000000000000000000000000000000000000000000060000000000000000000000000000000000000000000000000000000000000009a0000000000000000000000000f8a0bf9cf54bb92f17374d9e9a321e6a111a51bd000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000600000000000000000000000000000000000000000000000000000000000000044095ea7b30000000000000000000000001a1ec25dc08e98e5e93f1104b5e5cdd298707d310000000000000000000000000000000000000000000000000298348bed9600b7000000000000000000000000000000000000000000000000000000000000000000000000000000001a1ec25dc08e98e5e93f1104b5e5cdd298707d310000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000003055f5755290000000000000000000000000000000000000000000000000000000000000080000000000000000000000000f8a0bf9cf54bb92f17374d9e9a321e6a111a51bd0000000000000000000000000000000000000000000000000298348bed9600b700000000000000000000000000000000000000000000000000000000000000c0000000000000000000000000000000000000000000000000000000000000001b70616e63616b6553776170526f7574657246656544796e616d696300000000000000000000000000000000000000000000000000000000000000000000000220000000000000000000000000f8a0bf9cf54bb92f17374d9e9a321e6a111a51bd00000000000000000000000055d398326f99059ff775485246999027b31979550000000000000000000000000000000000000000000000000298348bed9600b70000000000000000000000000000000000000000000000001a9a2f99f18359de0000000000000000000000000000000000000000000000000000000000000120000000000000000000000000000000000000000000000000003d578b9a0a9756000000000000000000000000b28da7bc87a9dd1e60849aa7fcb5da24ea913c42000000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000000000e404e45aaf000000000000000000000000f8a0bf9cf54bb92f17374d9e9a321e6a111a51bd00000000000000000000000055d398326f99059ff775485246999027b319795500000000000000000000000000000000000000000000000000000000000009c4000000000000000000000000c590175e458b83680867afd273527ff58f74c02b0000000000000000000000000000000000000000000000000298348bed9600b70000000000000000000000000000000000000000000000001ad90ce048667323000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000600000000000000000000000000000000000000000000000000000000000000000000000000000001af3f329e8be154074d8769d1ffa4ee058b1dbc3000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000600000000000000000000000000000000000000000000000000000000000000044095ea7b30000000000000000000000001a1ec25dc08e98e5e93f1104b5e5cdd298707d31000000000000000000000000000000000000000000000000123fd18867a38000000000000000000000000000000000000000000000000000000000000000000000000000000000001a1ec25dc08e98e5e93f1104b5e5cdd298707d310000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000003055f57552900000000000000000000000000000000000000000000000000000000000000800000000000000000000000001af3f329e8be154074d8769d1ffa4ee058b1dbc3000000000000000000000000000000000000000000000000123fd18867a3800000000000000000000000000000000000000000000000000000000000000000c0000000000000000000000000000000000000000000000000000000000000001b70616e63616b6553776170526f7574657246656544796e616d6963000000000000000000000000000000000000000000000000000000000000000000000002200000000000000000000000001af3f329e8be154074d8769d1ffa4ee058b1dbc300000000000000000000000055d398326f99059ff775485246999027b31979550000000000000000000000000000000000000000000000001216f0a8cfb11c0000000000000000000000000000000000000000000000000011b823441f3b9f7d00000000000000000000000000000000000000000000000000000000000001200000000000000000000000000000000000000000000000000028e0df97f26400000000000000000000000000b28da7bc87a9dd1e60849aa7fcb5da24ea913c42000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000e404e45aaf0000000000000000000000001af3f329e8be154074d8769d1ffa4ee058b1dbc300000000000000000000000055d398326f99059ff775485246999027b31979550000000000000000000000000000000000000000000000000000000000000064000000000000000000000000c590175e458b83680867afd273527ff58f74c02b0000000000000000000000000000000000000000000000001216f0a8cfb11c0000000000000000000000000000000000000000000000000011b9f3f3d5e5cd240000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000005c00000000000000000000000000000000000000000000000000000000000000000000000000000055d398326f99059ff775485246999027b3197955000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000600000000000000000000000000000000000000000000000000000000000000044a9059cbb000000000000000000000000e3478b0bb1a5084567c319096437924948be196400000000000000000000000000000000000000000000000000a94ec52d664f8200000000000000000000000000000000000000000000000000000000c080a0933f48c3cc8648cafaee08c7d1cf0a25c26ac16c8d0904bc7cd4c889b1acf96ea0182c494f39d80d257ceffa53adb3b5230f00867e992f6f9724b699c549e3e835", + "s": "0x182c494f39d80d257ceffa53adb3b5230f00867e992f6f9724b699c549e3e835", + "status": "failed", + "time": 1778796258997, + "txParams": { + "data": "0xe9ae5c53010100000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000400000000000000000000000000000000000000000000000000000000000000ac00000000000000000000000000000000000000000000000000000000000000020000000000000000000000000000000000000000000000000000000000000000500000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000000000000000000000000000001800000000000000000000000000000000000000000000000000000000000000520000000000000000000000000000000000000000000000000000000000000060000000000000000000000000000000000000000000000000000000000000009a0000000000000000000000000f8a0bf9cf54bb92f17374d9e9a321e6a111a51bd000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000600000000000000000000000000000000000000000000000000000000000000044095ea7b30000000000000000000000001a1ec25dc08e98e5e93f1104b5e5cdd298707d310000000000000000000000000000000000000000000000000298348bed9600b7000000000000000000000000000000000000000000000000000000000000000000000000000000001a1ec25dc08e98e5e93f1104b5e5cdd298707d310000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000003055f5755290000000000000000000000000000000000000000000000000000000000000080000000000000000000000000f8a0bf9cf54bb92f17374d9e9a321e6a111a51bd0000000000000000000000000000000000000000000000000298348bed9600b700000000000000000000000000000000000000000000000000000000000000c0000000000000000000000000000000000000000000000000000000000000001b70616e63616b6553776170526f7574657246656544796e616d696300000000000000000000000000000000000000000000000000000000000000000000000220000000000000000000000000f8a0bf9cf54bb92f17374d9e9a321e6a111a51bd00000000000000000000000055d398326f99059ff775485246999027b31979550000000000000000000000000000000000000000000000000298348bed9600b70000000000000000000000000000000000000000000000001a9a2f99f18359de0000000000000000000000000000000000000000000000000000000000000120000000000000000000000000000000000000000000000000003d578b9a0a9756000000000000000000000000b28da7bc87a9dd1e60849aa7fcb5da24ea913c42000000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000000000e404e45aaf000000000000000000000000f8a0bf9cf54bb92f17374d9e9a321e6a111a51bd00000000000000000000000055d398326f99059ff775485246999027b319795500000000000000000000000000000000000000000000000000000000000009c4000000000000000000000000c590175e458b83680867afd273527ff58f74c02b0000000000000000000000000000000000000000000000000298348bed9600b70000000000000000000000000000000000000000000000001ad90ce048667323000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000600000000000000000000000000000000000000000000000000000000000000000000000000000001af3f329e8be154074d8769d1ffa4ee058b1dbc3000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000600000000000000000000000000000000000000000000000000000000000000044095ea7b30000000000000000000000001a1ec25dc08e98e5e93f1104b5e5cdd298707d31000000000000000000000000000000000000000000000000123fd18867a38000000000000000000000000000000000000000000000000000000000000000000000000000000000001a1ec25dc08e98e5e93f1104b5e5cdd298707d310000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000003055f57552900000000000000000000000000000000000000000000000000000000000000800000000000000000000000001af3f329e8be154074d8769d1ffa4ee058b1dbc3000000000000000000000000000000000000000000000000123fd18867a3800000000000000000000000000000000000000000000000000000000000000000c0000000000000000000000000000000000000000000000000000000000000001b70616e63616b6553776170526f7574657246656544796e616d6963000000000000000000000000000000000000000000000000000000000000000000000002200000000000000000000000001af3f329e8be154074d8769d1ffa4ee058b1dbc300000000000000000000000055d398326f99059ff775485246999027b31979550000000000000000000000000000000000000000000000001216f0a8cfb11c0000000000000000000000000000000000000000000000000011b823441f3b9f7d00000000000000000000000000000000000000000000000000000000000001200000000000000000000000000000000000000000000000000028e0df97f26400000000000000000000000000b28da7bc87a9dd1e60849aa7fcb5da24ea913c42000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000e404e45aaf0000000000000000000000001af3f329e8be154074d8769d1ffa4ee058b1dbc300000000000000000000000055d398326f99059ff775485246999027b31979550000000000000000000000000000000000000000000000000000000000000064000000000000000000000000c590175e458b83680867afd273527ff58f74c02b0000000000000000000000000000000000000000000000001216f0a8cfb11c0000000000000000000000000000000000000000000000000011b9f3f3d5e5cd240000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000005c00000000000000000000000000000000000000000000000000000000000000000000000000000055d398326f99059ff775485246999027b3197955000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000600000000000000000000000000000000000000000000000000000000000000044a9059cbb000000000000000000000000e3478b0bb1a5084567c319096437924948be196400000000000000000000000000000000000000000000000000a94ec52d664f8200000000000000000000000000000000000000000000000000000000", + "from": "0x141d32a89a1e0a5ef360034a2f60a4b917c18838", + "gas": "0x7d0f1", + "gasLimit": "0x7d0f1", + "maxFeePerGas": "0x3938700", + "maxPriorityFeePerGas": "0x3938700", + "nonce": "0x52", + "to": "0x141d32a89a1e0a5ef360034a2f60a4b917c18838", + "type": "0x2", + "value": "0x0" + }, + "type": "batch", + "userEditedGasLimit": false, + "userFeeLevel": "medium", + "v": "0x0", + "verifiedOnBlockchain": false + }, + { + "batchId": "0x19e28915f3f", + "chainId": "0x38", + "defaultGasEstimates": { + "estimateType": "medium", + "gas": "0xa4927", + "maxFeePerGas": "0x3938700", + "maxPriorityFeePerGas": "0x3938700" + }, + "delegationAddress": "0x63c0c19a282a1b52b07dd5a65b58948a07dae32b", + "error": { + "message": "RPC submit: gas required exceeds allowance (421519)", + "name": "Error", + "stack": "Error: RPC submit: gas required exceeds allowance (421519)\n at TransactionController._TransactionController_publishTransaction (chrome-extension://hebhblbkkdabgoldnojllkipeoacjioc/js-node_modules_metamask_s.js:60032:15)\n at async chrome-extension://hebhblbkkdabgoldnojllkipeoacjioc/js-node_modules_metamask_s.js:60718:47\n at async TransactionController._TransactionController_defaultPublishHook (chrome-extension://hebhblbkkdabgoldnojllkipeoacjioc/js-node_modules_metamask_s.js:60711:5)\n at async TransactionController._TransactionController_approveTransaction (chrome-extension://hebhblbkkdabgoldnojllkipeoacjioc/js-node_modules_metamask_s.js:59982:43)\n at async TransactionController._TransactionController_processApproval (chrome-extension://hebhblbkkdabgoldnojllkipeoacjioc/js-node_modules_metamask_s.js:59846:40)\n at async addTransactionBatchWith7702 (chrome-extension://hebhblbkkdabgoldnojllkipeoacjioc/js-node_modules_metamask_s.js:41170:29)\n at async addTransactionBatch (chrome-extension://hebhblbkkdabgoldnojllkipeoacjioc/js-node_modules_metamask_s.js:40973:20)\n at async TransactionController.addTransactionBatch (chrome-extension://hebhblbkkdabgoldnojllkipeoacjioc/js-node_modules_metamask_s.js:58610:16)\n at async addTransactionBatch (chrome-extension://hebhblbkkdabgoldnojllkipeoacjioc/js-node_modules_metamask_a.js:67560:25)\n at async submitBatchSellHandler (chrome-extension://hebhblbkkdabgoldnojllkipeoacjioc/js-node_modules_metamask_a.js:20660:33)" + }, + "gasFeeEstimates": { + "high": { + "maxFeePerGas": "0x2faf080", + "maxPriorityFeePerGas": "0x2faf080" + }, + "low": { + "maxFeePerGas": "0x2faf080", + "maxPriorityFeePerGas": "0x2faf080" + }, + "medium": { + "maxFeePerGas": "0x2faf080", + "maxPriorityFeePerGas": "0x2faf080" + }, + "type": "fee-market" + }, + "gasFeeEstimatesLoaded": true, + "gasLimitNoBuffer": "0xa4927", + "id": "777251e0-4fe2-11f1-986b-bdacd19bf474", + "isGasFeeIncluded": true, + "isGasFeeSponsored": false, + "isGasFeeTokenIgnoredIfBalance": false, + "nestedTransactions": [ + { + "data": "0x095ea7b30000000000000000000000001a1ec25dc08e98e5e93f1104b5e5cdd298707d310000000000000000000000000000000000000000000000000298348bed9600b7", + "from": "0x141d32a89a1e0a5ef360034a2f60a4b917c18838", + "gas": "0x110fa", + "maxFeePerGas": "0x3938700", + "maxPriorityFeePerGas": "0x3938700", + "to": "0xf8a0bf9cf54bb92f17374d9e9a321e6a111a51bd", + "type": "swapApproval", + "value": "0x0" + }, + { + "data": "0x5f5755290000000000000000000000000000000000000000000000000000000000000080000000000000000000000000f8a0bf9cf54bb92f17374d9e9a321e6a111a51bd0000000000000000000000000000000000000000000000000298348bed9600b700000000000000000000000000000000000000000000000000000000000000c00000000000000000000000000000000000000000000000000000000000000004307856320000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000007a0000000000000000000000000f8a0bf9cf54bb92f17374d9e9a321e6a111a51bd00000000000000000000000055d398326f99059ff775485246999027b31979550000000000000000000000000000000000000000000000000298348bed9600b70000000000000000000000000000000000000000000000001ab6f8ee3d2792900000000000000000000000000000000000000000000000000000000000000120000000000000000000000000000000000000000000000000003d99ec787508d6000000000000000000000000b28da7bc87a9dd1e60849aa7fcb5da24ea913c42000000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000000006642213bc0b000000000000000000000000c2eff1f1ce35d395408a34ad881dbcd978f40b89000000000000000000000000f8a0bf9cf54bb92f17374d9e9a321e6a111a51bd0000000000000000000000000000000000000000000000000298348bed9600b7000000000000000000000000c2eff1f1ce35d395408a34ad881dbcd978f40b8900000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000000000000000000000000000005841fff991f000000000000000000000000c590175e458b83680867afd273527ff58f74c02b00000000000000000000000055d398326f99059ff775485246999027b31979550000000000000000000000000000000000000000000000001b39be39cf27478400000000000000000000000000000000000000000000000000000000000000a0e9aca974a1e80b3e36b2acaf0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000300000000000000000000000000000000000000000000000000000000000000600000000000000000000000000000000000000000000000000000000000000220000000000000000000000000000000000000000000000000000000000000040000000000000000000000000000000000000000000000000000000000000001843036d6a6000000000000000000000000c2eff1f1ce35d395408a34ad881dbcd978f40b89000000000000000000000000f8a0bf9cf54bb92f17374d9e9a321e6a111a51bd0000000000000000000000000000000000000000000000000298348bed9600b70000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000006a064ab90000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000000000016000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000040f8a0bf9cf54bb92f17374d9e9a321e6a111a51bd000001f4fffd8963efd1fc6a506488495d951d5263988d252170ed0880ac9a755fd29b2688956bd959f933f800000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001a4df753f1e000000000000000000000000c2eff1f1ce35d395408a34ad881dbcd978f40b890000000000000000000000002170ed0880ac9a755fd29b2688956bd959f933f8000000000000000000000000000000000000000000000000000000000000271000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000002000000000000000000000000000000000000000000000000ffffffffffffffc5000000000000000000000000000000000000000000000000000000000000010000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000066271000000000000000000000000000000001000276a40155d398326f99059ff775485246999027b31979550000000000000000000000000000000000000000000000430000000000000000000000000000000000000000000000000000000000640000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000008434ee90ca000000000000000000000000d0a67cb08be17475f4315a04c5f0be3e200ef66c00000000000000000000000055d398326f99059ff775485246999027b31979550000000000000000000000000000000000000000000000001b8146d1019c7471000000000000000000000000000000000000000000000000000000000000271000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000081", + "from": "0x141d32a89a1e0a5ef360034a2f60a4b917c18838", + "gas": "0x92121", + "maxFeePerGas": "0x3938700", + "maxPriorityFeePerGas": "0x3938700", + "to": "0x1a1ec25DC08e98e5E93F1104B5e5cdD298707d31", + "type": "swap", + "value": "0x0" + }, + { + "data": "0x095ea7b30000000000000000000000001a1ec25dc08e98e5e93f1104b5e5cdd298707d31000000000000000000000000000000000000000000000000123fd18867a38000", + "from": "0x141d32a89a1e0a5ef360034a2f60a4b917c18838", + "gas": "0x110fa", + "maxFeePerGas": "0x3938700", + "maxPriorityFeePerGas": "0x3938700", + "to": "0x1af3f329e8be154074d8769d1ffa4ee058b1dbc3", + "type": "swapApproval", + "value": "0x0" + }, + { + "data": "0x5f57552900000000000000000000000000000000000000000000000000000000000000800000000000000000000000001af3f329e8be154074d8769d1ffa4ee058b1dbc3000000000000000000000000000000000000000000000000123fd18867a3800000000000000000000000000000000000000000000000000000000000000000c00000000000000000000000000000000000000000000000000000000000000018756e69737761705065726d69743246656544796e616d6963000000000000000000000000000000000000000000000000000000000000000000000000000006000000000000000000000000001af3f329e8be154074d8769d1ffa4ee058b1dbc300000000000000000000000055d398326f99059ff775485246999027b31979550000000000000000000000000000000000000000000000001216f0a8cfb11c0000000000000000000000000000000000000000000000000011b9f88422bc320d00000000000000000000000000000000000000000000000000000000000001200000000000000000000000000000000000000000000000000028e0df97f26400000000000000000000000000b28da7bc87a9dd1e60849aa7fcb5da24ea913c42000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000004ce3593564c000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000000a0000000000000000000000000000000000000000000000000000000006a065096000000000000000000000000000000000000000000000000000000000000000110000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000002000000000000000000000000000000000000000000000000000000000000003c0000000000000000000000000000000000000000000000000000000000000004000000000000000000000000000000000000000000000000000000000000000800000000000000000000000000000000000000000000000000000000000000003070b0e000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000030000000000000000000000000000000000000000000000000000000000000060000000000000000000000000000000000000000000000000000000000000022000000000000000000000000000000000000000000000000000000000000002a000000000000000000000000000000000000000000000000000000000000001a000000000000000000000000000000000000000000000000000000000000000200000000000000000000000001af3f329e8be154074d8769d1ffa4ee058b1dbc300000000000000000000000000000000000000000000000000000000000000800000000000000000000000000000000000000000000000001216f0a8cfb11c0000000000000000000000000000000000000000000000000011bbc963eb6e50300000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000002000000000000000000000000055d398326f99059ff775485246999027b319795500000000000000000000000000000000000000000000000000000000000000640000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000a0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000600000000000000000000000001af3f329e8be154074d8769d1ffa4ee058b1dbc300000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000006000000000000000000000000055d398326f99059ff775485246999027b3197955000000000000000000000000c590175e458b83680867afd273527ff58f74c02b0000000000000000000000000000000000000000000000000000000000000000756e69780000b2c5de0b0000000000000000000000000000000000005e", + "from": "0x141d32a89a1e0a5ef360034a2f60a4b917c18838", + "gas": "0x5d0e7", + "maxFeePerGas": "0x3938700", + "maxPriorityFeePerGas": "0x3938700", + "to": "0x1a1ec25DC08e98e5E93F1104B5e5cdD298707d31", + "type": "swap", + "value": "0x0" + }, + { + "data": "0xa9059cbb000000000000000000000000e3478b0bb1a5084567c319096437924948be196400000000000000000000000000000000000000000000000000e158d1fadf55c0", + "from": "0x141d32a89a1e0a5ef360034a2f60a4b917c18838", + "gas": "0xcc57", + "maxFeePerGas": "0x3938700", + "maxPriorityFeePerGas": "0x3938700", + "to": "0x55d398326f99059ff775485246999027b3197955", + "type": "transfer", + "value": "0x0" + } + ], + "networkClientId": "9a1eafde-5f04-434b-b011-e9de5c50baf0", + "origin": "metamask", + "originalGasEstimate": "0xa4927", + "r": "0xd54b20a287675daeb5bef4118956289c76edc38213ae2f5f7639a4dc787ee3eb", + "rawTx": "0x02f914f1385284039387008403938700830a492794141d32a89a1e0a5ef360034a2f60a4b917c1883880b91484e9ae5c530101000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000004000000000000000000000000000000000000000000000000000000000000014200000000000000000000000000000000000000000000000000000000000000020000000000000000000000000000000000000000000000000000000000000000500000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000000000000000000000000000001800000000000000000000000000000000000000000000000000000000000000aa00000000000000000000000000000000000000000000000000000000000000b800000000000000000000000000000000000000000000000000000000000001300000000000000000000000000f8a0bf9cf54bb92f17374d9e9a321e6a111a51bd000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000600000000000000000000000000000000000000000000000000000000000000044095ea7b30000000000000000000000001a1ec25dc08e98e5e93f1104b5e5cdd298707d310000000000000000000000000000000000000000000000000298348bed9600b7000000000000000000000000000000000000000000000000000000000000000000000000000000001a1ec25dc08e98e5e93f1104b5e5cdd298707d310000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000008855f5755290000000000000000000000000000000000000000000000000000000000000080000000000000000000000000f8a0bf9cf54bb92f17374d9e9a321e6a111a51bd0000000000000000000000000000000000000000000000000298348bed9600b700000000000000000000000000000000000000000000000000000000000000c00000000000000000000000000000000000000000000000000000000000000004307856320000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000007a0000000000000000000000000f8a0bf9cf54bb92f17374d9e9a321e6a111a51bd00000000000000000000000055d398326f99059ff775485246999027b31979550000000000000000000000000000000000000000000000000298348bed9600b70000000000000000000000000000000000000000000000001ab6f8ee3d2792900000000000000000000000000000000000000000000000000000000000000120000000000000000000000000000000000000000000000000003d99ec787508d6000000000000000000000000b28da7bc87a9dd1e60849aa7fcb5da24ea913c42000000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000000006642213bc0b000000000000000000000000c2eff1f1ce35d395408a34ad881dbcd978f40b89000000000000000000000000f8a0bf9cf54bb92f17374d9e9a321e6a111a51bd0000000000000000000000000000000000000000000000000298348bed9600b7000000000000000000000000c2eff1f1ce35d395408a34ad881dbcd978f40b8900000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000000000000000000000000000005841fff991f000000000000000000000000c590175e458b83680867afd273527ff58f74c02b00000000000000000000000055d398326f99059ff775485246999027b31979550000000000000000000000000000000000000000000000001b39be39cf27478400000000000000000000000000000000000000000000000000000000000000a0e9aca974a1e80b3e36b2acaf0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000300000000000000000000000000000000000000000000000000000000000000600000000000000000000000000000000000000000000000000000000000000220000000000000000000000000000000000000000000000000000000000000040000000000000000000000000000000000000000000000000000000000000001843036d6a6000000000000000000000000c2eff1f1ce35d395408a34ad881dbcd978f40b89000000000000000000000000f8a0bf9cf54bb92f17374d9e9a321e6a111a51bd0000000000000000000000000000000000000000000000000298348bed9600b70000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000006a064ab90000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000000000016000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000040f8a0bf9cf54bb92f17374d9e9a321e6a111a51bd000001f4fffd8963efd1fc6a506488495d951d5263988d252170ed0880ac9a755fd29b2688956bd959f933f800000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001a4df753f1e000000000000000000000000c2eff1f1ce35d395408a34ad881dbcd978f40b890000000000000000000000002170ed0880ac9a755fd29b2688956bd959f933f8000000000000000000000000000000000000000000000000000000000000271000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000002000000000000000000000000000000000000000000000000ffffffffffffffc5000000000000000000000000000000000000000000000000000000000000010000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000066271000000000000000000000000000000001000276a40155d398326f99059ff775485246999027b31979550000000000000000000000000000000000000000000000430000000000000000000000000000000000000000000000000000000000640000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000008434ee90ca000000000000000000000000d0a67cb08be17475f4315a04c5f0be3e200ef66c00000000000000000000000055d398326f99059ff775485246999027b31979550000000000000000000000000000000000000000000000001b8146d1019c74710000000000000000000000000000000000000000000000000000000000002710000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000810000000000000000000000000000000000000000000000000000000000000000000000000000001af3f329e8be154074d8769d1ffa4ee058b1dbc3000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000600000000000000000000000000000000000000000000000000000000000000044095ea7b30000000000000000000000001a1ec25dc08e98e5e93f1104b5e5cdd298707d31000000000000000000000000000000000000000000000000123fd18867a38000000000000000000000000000000000000000000000000000000000000000000000000000000000001a1ec25dc08e98e5e93f1104b5e5cdd298707d310000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000006e55f57552900000000000000000000000000000000000000000000000000000000000000800000000000000000000000001af3f329e8be154074d8769d1ffa4ee058b1dbc3000000000000000000000000000000000000000000000000123fd18867a3800000000000000000000000000000000000000000000000000000000000000000c00000000000000000000000000000000000000000000000000000000000000018756e69737761705065726d69743246656544796e616d6963000000000000000000000000000000000000000000000000000000000000000000000000000006000000000000000000000000001af3f329e8be154074d8769d1ffa4ee058b1dbc300000000000000000000000055d398326f99059ff775485246999027b31979550000000000000000000000000000000000000000000000001216f0a8cfb11c0000000000000000000000000000000000000000000000000011b9f88422bc320d00000000000000000000000000000000000000000000000000000000000001200000000000000000000000000000000000000000000000000028e0df97f26400000000000000000000000000b28da7bc87a9dd1e60849aa7fcb5da24ea913c42000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000004ce3593564c000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000000a0000000000000000000000000000000000000000000000000000000006a065096000000000000000000000000000000000000000000000000000000000000000110000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000002000000000000000000000000000000000000000000000000000000000000003c0000000000000000000000000000000000000000000000000000000000000004000000000000000000000000000000000000000000000000000000000000000800000000000000000000000000000000000000000000000000000000000000003070b0e000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000030000000000000000000000000000000000000000000000000000000000000060000000000000000000000000000000000000000000000000000000000000022000000000000000000000000000000000000000000000000000000000000002a000000000000000000000000000000000000000000000000000000000000001a000000000000000000000000000000000000000000000000000000000000000200000000000000000000000001af3f329e8be154074d8769d1ffa4ee058b1dbc300000000000000000000000000000000000000000000000000000000000000800000000000000000000000000000000000000000000000001216f0a8cfb11c0000000000000000000000000000000000000000000000000011bbc963eb6e50300000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000002000000000000000000000000055d398326f99059ff775485246999027b319795500000000000000000000000000000000000000000000000000000000000000640000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000a0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000600000000000000000000000001af3f329e8be154074d8769d1ffa4ee058b1dbc300000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000006000000000000000000000000055d398326f99059ff775485246999027b3197955000000000000000000000000c590175e458b83680867afd273527ff58f74c02b0000000000000000000000000000000000000000000000000000000000000000756e69780000b2c5de0b0000000000000000000000000000000000005e00000000000000000000000000000000000000000000000000000000000000000000000000000055d398326f99059ff775485246999027b3197955000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000600000000000000000000000000000000000000000000000000000000000000044a9059cbb000000000000000000000000e3478b0bb1a5084567c319096437924948be196400000000000000000000000000000000000000000000000000e158d1fadf55c000000000000000000000000000000000000000000000000000000000c001a0d54b20a287675daeb5bef4118956289c76edc38213ae2f5f7639a4dc787ee3eba03a63f211e7e841f518a5716c0f6df0fa401ac01108ce5622592d864eb151c3e3", + "s": "0x3a63f211e7e841f518a5716c0f6df0fa401ac01108ce5622592d864eb151c3e3", + "status": "failed", + "time": 1778796951038, + "txParams": { + "data": "0xe9ae5c530101000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000004000000000000000000000000000000000000000000000000000000000000014200000000000000000000000000000000000000000000000000000000000000020000000000000000000000000000000000000000000000000000000000000000500000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000000000000000000000000000001800000000000000000000000000000000000000000000000000000000000000aa00000000000000000000000000000000000000000000000000000000000000b800000000000000000000000000000000000000000000000000000000000001300000000000000000000000000f8a0bf9cf54bb92f17374d9e9a321e6a111a51bd000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000600000000000000000000000000000000000000000000000000000000000000044095ea7b30000000000000000000000001a1ec25dc08e98e5e93f1104b5e5cdd298707d310000000000000000000000000000000000000000000000000298348bed9600b7000000000000000000000000000000000000000000000000000000000000000000000000000000001a1ec25dc08e98e5e93f1104b5e5cdd298707d310000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000008855f5755290000000000000000000000000000000000000000000000000000000000000080000000000000000000000000f8a0bf9cf54bb92f17374d9e9a321e6a111a51bd0000000000000000000000000000000000000000000000000298348bed9600b700000000000000000000000000000000000000000000000000000000000000c00000000000000000000000000000000000000000000000000000000000000004307856320000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000007a0000000000000000000000000f8a0bf9cf54bb92f17374d9e9a321e6a111a51bd00000000000000000000000055d398326f99059ff775485246999027b31979550000000000000000000000000000000000000000000000000298348bed9600b70000000000000000000000000000000000000000000000001ab6f8ee3d2792900000000000000000000000000000000000000000000000000000000000000120000000000000000000000000000000000000000000000000003d99ec787508d6000000000000000000000000b28da7bc87a9dd1e60849aa7fcb5da24ea913c42000000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000000006642213bc0b000000000000000000000000c2eff1f1ce35d395408a34ad881dbcd978f40b89000000000000000000000000f8a0bf9cf54bb92f17374d9e9a321e6a111a51bd0000000000000000000000000000000000000000000000000298348bed9600b7000000000000000000000000c2eff1f1ce35d395408a34ad881dbcd978f40b8900000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000000000000000000000000000005841fff991f000000000000000000000000c590175e458b83680867afd273527ff58f74c02b00000000000000000000000055d398326f99059ff775485246999027b31979550000000000000000000000000000000000000000000000001b39be39cf27478400000000000000000000000000000000000000000000000000000000000000a0e9aca974a1e80b3e36b2acaf0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000300000000000000000000000000000000000000000000000000000000000000600000000000000000000000000000000000000000000000000000000000000220000000000000000000000000000000000000000000000000000000000000040000000000000000000000000000000000000000000000000000000000000001843036d6a6000000000000000000000000c2eff1f1ce35d395408a34ad881dbcd978f40b89000000000000000000000000f8a0bf9cf54bb92f17374d9e9a321e6a111a51bd0000000000000000000000000000000000000000000000000298348bed9600b70000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000006a064ab90000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000000000016000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000040f8a0bf9cf54bb92f17374d9e9a321e6a111a51bd000001f4fffd8963efd1fc6a506488495d951d5263988d252170ed0880ac9a755fd29b2688956bd959f933f800000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001a4df753f1e000000000000000000000000c2eff1f1ce35d395408a34ad881dbcd978f40b890000000000000000000000002170ed0880ac9a755fd29b2688956bd959f933f8000000000000000000000000000000000000000000000000000000000000271000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000002000000000000000000000000000000000000000000000000ffffffffffffffc5000000000000000000000000000000000000000000000000000000000000010000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000066271000000000000000000000000000000001000276a40155d398326f99059ff775485246999027b31979550000000000000000000000000000000000000000000000430000000000000000000000000000000000000000000000000000000000640000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000008434ee90ca000000000000000000000000d0a67cb08be17475f4315a04c5f0be3e200ef66c00000000000000000000000055d398326f99059ff775485246999027b31979550000000000000000000000000000000000000000000000001b8146d1019c74710000000000000000000000000000000000000000000000000000000000002710000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000810000000000000000000000000000000000000000000000000000000000000000000000000000001af3f329e8be154074d8769d1ffa4ee058b1dbc3000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000600000000000000000000000000000000000000000000000000000000000000044095ea7b30000000000000000000000001a1ec25dc08e98e5e93f1104b5e5cdd298707d31000000000000000000000000000000000000000000000000123fd18867a38000000000000000000000000000000000000000000000000000000000000000000000000000000000001a1ec25dc08e98e5e93f1104b5e5cdd298707d310000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000006e55f57552900000000000000000000000000000000000000000000000000000000000000800000000000000000000000001af3f329e8be154074d8769d1ffa4ee058b1dbc3000000000000000000000000000000000000000000000000123fd18867a3800000000000000000000000000000000000000000000000000000000000000000c00000000000000000000000000000000000000000000000000000000000000018756e69737761705065726d69743246656544796e616d6963000000000000000000000000000000000000000000000000000000000000000000000000000006000000000000000000000000001af3f329e8be154074d8769d1ffa4ee058b1dbc300000000000000000000000055d398326f99059ff775485246999027b31979550000000000000000000000000000000000000000000000001216f0a8cfb11c0000000000000000000000000000000000000000000000000011b9f88422bc320d00000000000000000000000000000000000000000000000000000000000001200000000000000000000000000000000000000000000000000028e0df97f26400000000000000000000000000b28da7bc87a9dd1e60849aa7fcb5da24ea913c42000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000004ce3593564c000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000000a0000000000000000000000000000000000000000000000000000000006a065096000000000000000000000000000000000000000000000000000000000000000110000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000002000000000000000000000000000000000000000000000000000000000000003c0000000000000000000000000000000000000000000000000000000000000004000000000000000000000000000000000000000000000000000000000000000800000000000000000000000000000000000000000000000000000000000000003070b0e000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000030000000000000000000000000000000000000000000000000000000000000060000000000000000000000000000000000000000000000000000000000000022000000000000000000000000000000000000000000000000000000000000002a000000000000000000000000000000000000000000000000000000000000001a000000000000000000000000000000000000000000000000000000000000000200000000000000000000000001af3f329e8be154074d8769d1ffa4ee058b1dbc300000000000000000000000000000000000000000000000000000000000000800000000000000000000000000000000000000000000000001216f0a8cfb11c0000000000000000000000000000000000000000000000000011bbc963eb6e50300000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000002000000000000000000000000055d398326f99059ff775485246999027b319795500000000000000000000000000000000000000000000000000000000000000640000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000a0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000600000000000000000000000001af3f329e8be154074d8769d1ffa4ee058b1dbc300000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000006000000000000000000000000055d398326f99059ff775485246999027b3197955000000000000000000000000c590175e458b83680867afd273527ff58f74c02b0000000000000000000000000000000000000000000000000000000000000000756e69780000b2c5de0b0000000000000000000000000000000000005e00000000000000000000000000000000000000000000000000000000000000000000000000000055d398326f99059ff775485246999027b3197955000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000600000000000000000000000000000000000000000000000000000000000000044a9059cbb000000000000000000000000e3478b0bb1a5084567c319096437924948be196400000000000000000000000000000000000000000000000000e158d1fadf55c000000000000000000000000000000000000000000000000000000000", + "from": "0x141d32a89a1e0a5ef360034a2f60a4b917c18838", + "gas": "0xa4927", + "gasLimit": "0xa4927", + "maxFeePerGas": "0x3938700", + "maxPriorityFeePerGas": "0x3938700", + "nonce": "0x52", + "to": "0x141d32a89a1e0a5ef360034a2f60a4b917c18838", + "type": "0x2", + "value": "0x0" + }, + "type": "batch", + "userEditedGasLimit": false, + "userFeeLevel": "medium", + "v": "0x1", + "verifiedOnBlockchain": false + }, + { + "batchId": "0x19e28972b09", + "chainId": "0x38", + "defaultGasEstimates": { + "estimateType": "medium", + "gas": "0x808fb", + "maxFeePerGas": "0x3e9bd50", + "maxPriorityFeePerGas": "0x3e9bd50" + }, + "delegationAddress": "0x63c0c19a282a1b52b07dd5a65b58948a07dae32b", + "error": { + "message": "RPC submit: Internal error", + "name": "Error", + "stack": "Error: RPC submit: Internal error\n at TransactionController._TransactionController_publishTransaction (chrome-extension://hebhblbkkdabgoldnojllkipeoacjioc/js-node_modules_metamask_s.js:60032:15)\n at async chrome-extension://hebhblbkkdabgoldnojllkipeoacjioc/js-node_modules_metamask_s.js:60718:47\n at async TransactionController._TransactionController_defaultPublishHook (chrome-extension://hebhblbkkdabgoldnojllkipeoacjioc/js-node_modules_metamask_s.js:60711:5)\n at async TransactionController._TransactionController_approveTransaction (chrome-extension://hebhblbkkdabgoldnojllkipeoacjioc/js-node_modules_metamask_s.js:59982:43)\n at async TransactionController._TransactionController_processApproval (chrome-extension://hebhblbkkdabgoldnojllkipeoacjioc/js-node_modules_metamask_s.js:59846:40)\n at async addTransactionBatchWith7702 (chrome-extension://hebhblbkkdabgoldnojllkipeoacjioc/js-node_modules_metamask_s.js:41170:29)\n at async addTransactionBatch (chrome-extension://hebhblbkkdabgoldnojllkipeoacjioc/js-node_modules_metamask_s.js:40973:20)\n at async TransactionController.addTransactionBatch (chrome-extension://hebhblbkkdabgoldnojllkipeoacjioc/js-node_modules_metamask_s.js:58610:16)\n at async addTransactionBatch (chrome-extension://hebhblbkkdabgoldnojllkipeoacjioc/js-node_modules_metamask_a.js:67560:25)\n at async submitBatchSellHandler (chrome-extension://hebhblbkkdabgoldnojllkipeoacjioc/js-node_modules_metamask_a.js:20660:33)" + }, + "gasFeeEstimates": { + "high": { + "maxFeePerGas": "0x2faf080", + "maxPriorityFeePerGas": "0x2faf080" + }, + "low": { + "maxFeePerGas": "0x2faf080", + "maxPriorityFeePerGas": "0x2faf080" + }, + "medium": { + "maxFeePerGas": "0x2faf080", + "maxPriorityFeePerGas": "0x2faf080" + }, + "type": "fee-market" + }, + "gasFeeEstimatesLoaded": true, + "gasLimitNoBuffer": "0x808fb", + "id": "41b75360-4fe3-11f1-93d2-a510343ca17a", + "isGasFeeIncluded": true, + "isGasFeeSponsored": false, + "isGasFeeTokenIgnoredIfBalance": false, + "nestedTransactions": [ + { + "data": "0x095ea7b30000000000000000000000001a1ec25dc08e98e5e93f1104b5e5cdd298707d310000000000000000000000000000000000000000000000000298348bed9600b7", + "from": "0x141d32a89a1e0a5ef360034a2f60a4b917c18838", + "gas": "0x110fa", + "maxFeePerGas": "0x3e9bd50", + "maxPriorityFeePerGas": "0x3e9bd50", + "to": "0xf8a0bf9cf54bb92f17374d9e9a321e6a111a51bd", + "type": "swapApproval", + "value": "0x0" + }, + { + "data": "0x5f5755290000000000000000000000000000000000000000000000000000000000000080000000000000000000000000f8a0bf9cf54bb92f17374d9e9a321e6a111a51bd0000000000000000000000000000000000000000000000000298348bed9600b700000000000000000000000000000000000000000000000000000000000000c0000000000000000000000000000000000000000000000000000000000000001b70616e63616b6553776170526f7574657246656544796e616d696300000000000000000000000000000000000000000000000000000000000000000000000220000000000000000000000000f8a0bf9cf54bb92f17374d9e9a321e6a111a51bd00000000000000000000000055d398326f99059ff775485246999027b31979550000000000000000000000000000000000000000000000000298348bed9600b70000000000000000000000000000000000000000000000001a9b23a0b284c1b90000000000000000000000000000000000000000000000000000000000000120000000000000000000000000000000000000000000000000003d59be4cc7afd6000000000000000000000000b28da7bc87a9dd1e60849aa7fcb5da24ea913c42000000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000000000e404e45aaf000000000000000000000000f8a0bf9cf54bb92f17374d9e9a321e6a111a51bd00000000000000000000000055d398326f99059ff775485246999027b319795500000000000000000000000000000000000000000000000000000000000009c4000000000000000000000000c590175e458b83680867afd273527ff58f74c02b0000000000000000000000000000000000000000000000000298348bed9600b70000000000000000000000000000000000000000000000001ada0327b32f617c000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000a3", + "from": "0x141d32a89a1e0a5ef360034a2f60a4b917c18838", + "gas": "0x5b63a", + "maxFeePerGas": "0x3e9bd50", + "maxPriorityFeePerGas": "0x3e9bd50", + "to": "0x1a1ec25DC08e98e5E93F1104B5e5cdD298707d31", + "type": "swap", + "value": "0x0" + }, + { + "data": "0x095ea7b30000000000000000000000001a1ec25dc08e98e5e93f1104b5e5cdd298707d31000000000000000000000000000000000000000000000000123fd18867a38000", + "from": "0x141d32a89a1e0a5ef360034a2f60a4b917c18838", + "gas": "0x110fa", + "maxFeePerGas": "0x3e9bd50", + "maxPriorityFeePerGas": "0x3e9bd50", + "to": "0x1af3f329e8be154074d8769d1ffa4ee058b1dbc3", + "type": "swapApproval", + "value": "0x0" + }, + { + "data": "0x5f57552900000000000000000000000000000000000000000000000000000000000000800000000000000000000000001af3f329e8be154074d8769d1ffa4ee058b1dbc3000000000000000000000000000000000000000000000000123fd18867a3800000000000000000000000000000000000000000000000000000000000000000c00000000000000000000000000000000000000000000000000000000000000018756e69737761705065726d69743246656544796e616d6963000000000000000000000000000000000000000000000000000000000000000000000000000006000000000000000000000000001af3f329e8be154074d8769d1ffa4ee058b1dbc300000000000000000000000055d398326f99059ff775485246999027b31979550000000000000000000000000000000000000000000000001216f0a8cfb11c0000000000000000000000000000000000000000000000000011b9f7bfd9880dfc00000000000000000000000000000000000000000000000000000000000001200000000000000000000000000000000000000000000000000028e0df97f26400000000000000000000000000b28da7bc87a9dd1e60849aa7fcb5da24ea913c42000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000004ce3593564c000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000000a0000000000000000000000000000000000000000000000000000000006a0651ee000000000000000000000000000000000000000000000000000000000000000110000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000002000000000000000000000000000000000000000000000000000000000000003c0000000000000000000000000000000000000000000000000000000000000004000000000000000000000000000000000000000000000000000000000000000800000000000000000000000000000000000000000000000000000000000000003070b0e000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000030000000000000000000000000000000000000000000000000000000000000060000000000000000000000000000000000000000000000000000000000000022000000000000000000000000000000000000000000000000000000000000002a000000000000000000000000000000000000000000000000000000000000001a000000000000000000000000000000000000000000000000000000000000000200000000000000000000000001af3f329e8be154074d8769d1ffa4ee058b1dbc300000000000000000000000000000000000000000000000000000000000000800000000000000000000000000000000000000000000000001216f0a8cfb11c0000000000000000000000000000000000000000000000000011bbc89f8e1e98490000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000002000000000000000000000000055d398326f99059ff775485246999027b319795500000000000000000000000000000000000000000000000000000000000000640000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000a0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000600000000000000000000000001af3f329e8be154074d8769d1ffa4ee058b1dbc300000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000006000000000000000000000000055d398326f99059ff775485246999027b3197955000000000000000000000000c590175e458b83680867afd273527ff58f74c02b0000000000000000000000000000000000000000000000000000000000000000756e69780000b2c5de0b000000000000000000000000000000000000d9", + "from": "0x141d32a89a1e0a5ef360034a2f60a4b917c18838", + "gas": "0x5d0e7", + "maxFeePerGas": "0x3e9bd50", + "maxPriorityFeePerGas": "0x3e9bd50", + "to": "0x1a1ec25DC08e98e5E93F1104B5e5cdD298707d31", + "type": "swap", + "value": "0x0" + }, + { + "data": "0xa9059cbb000000000000000000000000e3478b0bb1a5084567c319096437924948be196400000000000000000000000000000000000000000000000000b3aed99b0b08d2", + "from": "0x141d32a89a1e0a5ef360034a2f60a4b917c18838", + "gas": "0xcc57", + "maxFeePerGas": "0x3e9bd50", + "maxPriorityFeePerGas": "0x3e9bd50", + "to": "0x55d398326f99059ff775485246999027b3197955", + "type": "transfer", + "value": "0x0" + } + ], + "networkClientId": "9a1eafde-5f04-434b-b011-e9de5c50baf0", + "origin": "metamask", + "originalGasEstimate": "0x808fb", + "r": "0x9e0f3f948702ce05a11aac1a4677261a57650214e091d3a1c3f80f5b717c5d07", + "rawTx": "0x02f90f7138528403e9bd508403e9bd50830808fb94141d32a89a1e0a5ef360034a2f60a4b917c1883880b90f04e9ae5c53010100000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000400000000000000000000000000000000000000000000000000000000000000ea00000000000000000000000000000000000000000000000000000000000000020000000000000000000000000000000000000000000000000000000000000000500000000000000000000000000000000000000000000000000000000000000a00000000000000000000000000000000000000000000000000000000000000180000000000000000000000000000000000000000000000000000000000000052000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000000d80000000000000000000000000f8a0bf9cf54bb92f17374d9e9a321e6a111a51bd000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000600000000000000000000000000000000000000000000000000000000000000044095ea7b30000000000000000000000001a1ec25dc08e98e5e93f1104b5e5cdd298707d310000000000000000000000000000000000000000000000000298348bed9600b7000000000000000000000000000000000000000000000000000000000000000000000000000000001a1ec25dc08e98e5e93f1104b5e5cdd298707d310000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000003055f5755290000000000000000000000000000000000000000000000000000000000000080000000000000000000000000f8a0bf9cf54bb92f17374d9e9a321e6a111a51bd0000000000000000000000000000000000000000000000000298348bed9600b700000000000000000000000000000000000000000000000000000000000000c0000000000000000000000000000000000000000000000000000000000000001b70616e63616b6553776170526f7574657246656544796e616d696300000000000000000000000000000000000000000000000000000000000000000000000220000000000000000000000000f8a0bf9cf54bb92f17374d9e9a321e6a111a51bd00000000000000000000000055d398326f99059ff775485246999027b31979550000000000000000000000000000000000000000000000000298348bed9600b70000000000000000000000000000000000000000000000001a9b23a0b284c1b90000000000000000000000000000000000000000000000000000000000000120000000000000000000000000000000000000000000000000003d59be4cc7afd6000000000000000000000000b28da7bc87a9dd1e60849aa7fcb5da24ea913c42000000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000000000e404e45aaf000000000000000000000000f8a0bf9cf54bb92f17374d9e9a321e6a111a51bd00000000000000000000000055d398326f99059ff775485246999027b319795500000000000000000000000000000000000000000000000000000000000009c4000000000000000000000000c590175e458b83680867afd273527ff58f74c02b0000000000000000000000000000000000000000000000000298348bed9600b70000000000000000000000000000000000000000000000001ada0327b32f617c000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000a30000000000000000000000000000000000000000000000000000000000000000000000000000001af3f329e8be154074d8769d1ffa4ee058b1dbc3000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000600000000000000000000000000000000000000000000000000000000000000044095ea7b30000000000000000000000001a1ec25dc08e98e5e93f1104b5e5cdd298707d31000000000000000000000000000000000000000000000000123fd18867a38000000000000000000000000000000000000000000000000000000000000000000000000000000000001a1ec25dc08e98e5e93f1104b5e5cdd298707d310000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000006e55f57552900000000000000000000000000000000000000000000000000000000000000800000000000000000000000001af3f329e8be154074d8769d1ffa4ee058b1dbc3000000000000000000000000000000000000000000000000123fd18867a3800000000000000000000000000000000000000000000000000000000000000000c00000000000000000000000000000000000000000000000000000000000000018756e69737761705065726d69743246656544796e616d6963000000000000000000000000000000000000000000000000000000000000000000000000000006000000000000000000000000001af3f329e8be154074d8769d1ffa4ee058b1dbc300000000000000000000000055d398326f99059ff775485246999027b31979550000000000000000000000000000000000000000000000001216f0a8cfb11c0000000000000000000000000000000000000000000000000011b9f7bfd9880dfc00000000000000000000000000000000000000000000000000000000000001200000000000000000000000000000000000000000000000000028e0df97f26400000000000000000000000000b28da7bc87a9dd1e60849aa7fcb5da24ea913c42000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000004ce3593564c000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000000a0000000000000000000000000000000000000000000000000000000006a0651ee000000000000000000000000000000000000000000000000000000000000000110000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000002000000000000000000000000000000000000000000000000000000000000003c0000000000000000000000000000000000000000000000000000000000000004000000000000000000000000000000000000000000000000000000000000000800000000000000000000000000000000000000000000000000000000000000003070b0e000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000030000000000000000000000000000000000000000000000000000000000000060000000000000000000000000000000000000000000000000000000000000022000000000000000000000000000000000000000000000000000000000000002a000000000000000000000000000000000000000000000000000000000000001a000000000000000000000000000000000000000000000000000000000000000200000000000000000000000001af3f329e8be154074d8769d1ffa4ee058b1dbc300000000000000000000000000000000000000000000000000000000000000800000000000000000000000000000000000000000000000001216f0a8cfb11c0000000000000000000000000000000000000000000000000011bbc89f8e1e98490000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000002000000000000000000000000055d398326f99059ff775485246999027b319795500000000000000000000000000000000000000000000000000000000000000640000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000a0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000600000000000000000000000001af3f329e8be154074d8769d1ffa4ee058b1dbc300000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000006000000000000000000000000055d398326f99059ff775485246999027b3197955000000000000000000000000c590175e458b83680867afd273527ff58f74c02b0000000000000000000000000000000000000000000000000000000000000000756e69780000b2c5de0b000000000000000000000000000000000000d900000000000000000000000000000000000000000000000000000000000000000000000000000055d398326f99059ff775485246999027b3197955000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000600000000000000000000000000000000000000000000000000000000000000044a9059cbb000000000000000000000000e3478b0bb1a5084567c319096437924948be196400000000000000000000000000000000000000000000000000b3aed99b0b08d200000000000000000000000000000000000000000000000000000000c001a09e0f3f948702ce05a11aac1a4677261a57650214e091d3a1c3f80f5b717c5d07a047ce50a2362c19fc02f06dbf1e9d8c30c81554935b9788b2474ba59baaab6682", + "s": "0x47ce50a2362c19fc02f06dbf1e9d8c30c81554935b9788b2474ba59baaab6682", + "status": "failed", + "time": 1778797290390, + "txParams": { + "data": "0xe9ae5c53010100000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000400000000000000000000000000000000000000000000000000000000000000ea00000000000000000000000000000000000000000000000000000000000000020000000000000000000000000000000000000000000000000000000000000000500000000000000000000000000000000000000000000000000000000000000a00000000000000000000000000000000000000000000000000000000000000180000000000000000000000000000000000000000000000000000000000000052000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000000d80000000000000000000000000f8a0bf9cf54bb92f17374d9e9a321e6a111a51bd000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000600000000000000000000000000000000000000000000000000000000000000044095ea7b30000000000000000000000001a1ec25dc08e98e5e93f1104b5e5cdd298707d310000000000000000000000000000000000000000000000000298348bed9600b7000000000000000000000000000000000000000000000000000000000000000000000000000000001a1ec25dc08e98e5e93f1104b5e5cdd298707d310000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000003055f5755290000000000000000000000000000000000000000000000000000000000000080000000000000000000000000f8a0bf9cf54bb92f17374d9e9a321e6a111a51bd0000000000000000000000000000000000000000000000000298348bed9600b700000000000000000000000000000000000000000000000000000000000000c0000000000000000000000000000000000000000000000000000000000000001b70616e63616b6553776170526f7574657246656544796e616d696300000000000000000000000000000000000000000000000000000000000000000000000220000000000000000000000000f8a0bf9cf54bb92f17374d9e9a321e6a111a51bd00000000000000000000000055d398326f99059ff775485246999027b31979550000000000000000000000000000000000000000000000000298348bed9600b70000000000000000000000000000000000000000000000001a9b23a0b284c1b90000000000000000000000000000000000000000000000000000000000000120000000000000000000000000000000000000000000000000003d59be4cc7afd6000000000000000000000000b28da7bc87a9dd1e60849aa7fcb5da24ea913c42000000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000000000e404e45aaf000000000000000000000000f8a0bf9cf54bb92f17374d9e9a321e6a111a51bd00000000000000000000000055d398326f99059ff775485246999027b319795500000000000000000000000000000000000000000000000000000000000009c4000000000000000000000000c590175e458b83680867afd273527ff58f74c02b0000000000000000000000000000000000000000000000000298348bed9600b70000000000000000000000000000000000000000000000001ada0327b32f617c000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000a30000000000000000000000000000000000000000000000000000000000000000000000000000001af3f329e8be154074d8769d1ffa4ee058b1dbc3000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000600000000000000000000000000000000000000000000000000000000000000044095ea7b30000000000000000000000001a1ec25dc08e98e5e93f1104b5e5cdd298707d31000000000000000000000000000000000000000000000000123fd18867a38000000000000000000000000000000000000000000000000000000000000000000000000000000000001a1ec25dc08e98e5e93f1104b5e5cdd298707d310000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000006e55f57552900000000000000000000000000000000000000000000000000000000000000800000000000000000000000001af3f329e8be154074d8769d1ffa4ee058b1dbc3000000000000000000000000000000000000000000000000123fd18867a3800000000000000000000000000000000000000000000000000000000000000000c00000000000000000000000000000000000000000000000000000000000000018756e69737761705065726d69743246656544796e616d6963000000000000000000000000000000000000000000000000000000000000000000000000000006000000000000000000000000001af3f329e8be154074d8769d1ffa4ee058b1dbc300000000000000000000000055d398326f99059ff775485246999027b31979550000000000000000000000000000000000000000000000001216f0a8cfb11c0000000000000000000000000000000000000000000000000011b9f7bfd9880dfc00000000000000000000000000000000000000000000000000000000000001200000000000000000000000000000000000000000000000000028e0df97f26400000000000000000000000000b28da7bc87a9dd1e60849aa7fcb5da24ea913c42000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000004ce3593564c000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000000a0000000000000000000000000000000000000000000000000000000006a0651ee000000000000000000000000000000000000000000000000000000000000000110000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000002000000000000000000000000000000000000000000000000000000000000003c0000000000000000000000000000000000000000000000000000000000000004000000000000000000000000000000000000000000000000000000000000000800000000000000000000000000000000000000000000000000000000000000003070b0e000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000030000000000000000000000000000000000000000000000000000000000000060000000000000000000000000000000000000000000000000000000000000022000000000000000000000000000000000000000000000000000000000000002a000000000000000000000000000000000000000000000000000000000000001a000000000000000000000000000000000000000000000000000000000000000200000000000000000000000001af3f329e8be154074d8769d1ffa4ee058b1dbc300000000000000000000000000000000000000000000000000000000000000800000000000000000000000000000000000000000000000001216f0a8cfb11c0000000000000000000000000000000000000000000000000011bbc89f8e1e98490000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000002000000000000000000000000055d398326f99059ff775485246999027b319795500000000000000000000000000000000000000000000000000000000000000640000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000a0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000600000000000000000000000001af3f329e8be154074d8769d1ffa4ee058b1dbc300000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000006000000000000000000000000055d398326f99059ff775485246999027b3197955000000000000000000000000c590175e458b83680867afd273527ff58f74c02b0000000000000000000000000000000000000000000000000000000000000000756e69780000b2c5de0b000000000000000000000000000000000000d900000000000000000000000000000000000000000000000000000000000000000000000000000055d398326f99059ff775485246999027b3197955000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000600000000000000000000000000000000000000000000000000000000000000044a9059cbb000000000000000000000000e3478b0bb1a5084567c319096437924948be196400000000000000000000000000000000000000000000000000b3aed99b0b08d200000000000000000000000000000000000000000000000000000000", + "from": "0x141d32a89a1e0a5ef360034a2f60a4b917c18838", + "gas": "0x808fb", + "gasLimit": "0x808fb", + "maxFeePerGas": "0x3e9bd50", + "maxPriorityFeePerGas": "0x3e9bd50", + "nonce": "0x52", + "to": "0x141d32a89a1e0a5ef360034a2f60a4b917c18838", + "type": "0x2", + "value": "0x0" + }, + "type": "batch", + "userEditedGasLimit": false, + "userFeeLevel": "medium", + "v": "0x1", + "verifiedOnBlockchain": false + }, + { + "batchId": "0x19e28acb476", + "chainId": "0x38", + "defaultGasEstimates": { + "estimateType": "medium", + "gas": "0x91644", + "maxFeePerGas": "0x3938700", + "maxPriorityFeePerGas": "0x3938700" + }, + "delegationAddress": "0x63c0c19a282a1b52b07dd5a65b58948a07dae32b", + "error": { + "message": "RPC submit: gas required exceeds allowance (421519)", + "name": "Error", + "stack": "Error: RPC submit: gas required exceeds allowance (421519)\n at TransactionController._TransactionController_publishTransaction (chrome-extension://hebhblbkkdabgoldnojllkipeoacjioc/js-node_modules_metamask_s.js:60032:15)\n at async chrome-extension://hebhblbkkdabgoldnojllkipeoacjioc/js-node_modules_metamask_s.js:60718:47\n at async TransactionController._TransactionController_defaultPublishHook (chrome-extension://hebhblbkkdabgoldnojllkipeoacjioc/js-node_modules_metamask_s.js:60711:5)\n at async TransactionController._TransactionController_approveTransaction (chrome-extension://hebhblbkkdabgoldnojllkipeoacjioc/js-node_modules_metamask_s.js:59982:43)\n at async TransactionController._TransactionController_processApproval (chrome-extension://hebhblbkkdabgoldnojllkipeoacjioc/js-node_modules_metamask_s.js:59846:40)\n at async addTransactionBatchWith7702 (chrome-extension://hebhblbkkdabgoldnojllkipeoacjioc/js-node_modules_metamask_s.js:41170:29)\n at async addTransactionBatch (chrome-extension://hebhblbkkdabgoldnojllkipeoacjioc/js-node_modules_metamask_s.js:40973:20)\n at async TransactionController.addTransactionBatch (chrome-extension://hebhblbkkdabgoldnojllkipeoacjioc/js-node_modules_metamask_s.js:58610:16)\n at async addTransactionBatch (chrome-extension://hebhblbkkdabgoldnojllkipeoacjioc/js-node_modules_metamask_a.js:67560:25)\n at async submitBatchSellHandler (chrome-extension://hebhblbkkdabgoldnojllkipeoacjioc/js-node_modules_metamask_a.js:20660:33)" + }, + "gasFeeEstimates": { + "high": { + "maxFeePerGas": "0x2faf080", + "maxPriorityFeePerGas": "0x2faf080" + }, + "low": { + "maxFeePerGas": "0x2faf080", + "maxPriorityFeePerGas": "0x2faf080" + }, + "medium": { + "maxFeePerGas": "0x2faf080", + "maxPriorityFeePerGas": "0x2faf080" + }, + "type": "fee-market" + }, + "gasFeeEstimatesLoaded": true, + "gasLimitNoBuffer": "0x91644", + "id": "31a75130-4fe5-11f1-af8d-890ebd613267", + "isGasFeeIncluded": true, + "isGasFeeSponsored": false, + "isGasFeeTokenIgnoredIfBalance": false, + "nestedTransactions": [ + { + "data": "0x095ea7b30000000000000000000000001a1ec25dc08e98e5e93f1104b5e5cdd298707d310000000000000000000000000000000000000000000000000298348bed9600b7", + "from": "0x141d32a89a1e0a5ef360034a2f60a4b917c18838", + "gas": "0x110fa", + "maxFeePerGas": "0x3938700", + "maxPriorityFeePerGas": "0x3938700", + "to": "0xf8a0bf9cf54bb92f17374d9e9a321e6a111a51bd", + "type": "swapApproval", + "value": "0x0" + }, + { + "data": "0x5f5755290000000000000000000000000000000000000000000000000000000000000080000000000000000000000000f8a0bf9cf54bb92f17374d9e9a321e6a111a51bd0000000000000000000000000000000000000000000000000298348bed9600b700000000000000000000000000000000000000000000000000000000000000c00000000000000000000000000000000000000000000000000000000000000018756e69737761705065726d69743246656544796e616d696300000000000000000000000000000000000000000000000000000000000000000000000000000360000000000000000000000000f8a0bf9cf54bb92f17374d9e9a321e6a111a51bd00000000000000000000000055d398326f99059ff775485246999027b31979550000000000000000000000000000000000000000000000000298348bed9600b70000000000000000000000000000000000000000000000001ab337e661aca3b70000000000000000000000000000000000000000000000000000000000000120000000000000000000000000000000000000000000000000003d9144704ce95a000000000000000000000000b28da7bc87a9dd1e60849aa7fcb5da24ea913c420000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000022e3593564c000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000000a0000000000000000000000000000000000000000000000000000000006a06552b00000000000000000000000000000000000000000000000000000000000000010000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000000000200000000000000000000000000000000000000000000000000000000000000120000000000000000000000000c590175e458b83680867afd273527ff58f74c02b0000000000000000000000000000000000000000000000000298348bed9600b70000000000000000000000000000000000000000000000001af2505449d1b25a00000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000000000000000000000000000000010000000000000000000000000000000000000000000000000000000000000042f8a0bf9cf54bb92f17374d9e9a321e6a111a51bd0001f42170ed0880ac9a755fd29b2688956bd959f933f80001f455d398326f99059ff775485246999027b3197955000000000000000000000000000000000000000000000000000000000000756e69780000b2c5de0b00000000000000000000000000000000000030", + "from": "0x141d32a89a1e0a5ef360034a2f60a4b917c18838", + "gas": "0x793ca", + "maxFeePerGas": "0x3938700", + "maxPriorityFeePerGas": "0x3938700", + "to": "0x1a1ec25DC08e98e5E93F1104B5e5cdD298707d31", + "type": "swap", + "value": "0x0" + }, + { + "data": "0x095ea7b30000000000000000000000001a1ec25dc08e98e5e93f1104b5e5cdd298707d31000000000000000000000000000000000000000000000000123fd18867a38000", + "from": "0x141d32a89a1e0a5ef360034a2f60a4b917c18838", + "gas": "0x110fa", + "maxFeePerGas": "0x3938700", + "maxPriorityFeePerGas": "0x3938700", + "to": "0x1af3f329e8be154074d8769d1ffa4ee058b1dbc3", + "type": "swapApproval", + "value": "0x0" + }, + { + "data": "0x5f57552900000000000000000000000000000000000000000000000000000000000000800000000000000000000000001af3f329e8be154074d8769d1ffa4ee058b1dbc3000000000000000000000000000000000000000000000000123fd18867a3800000000000000000000000000000000000000000000000000000000000000000c00000000000000000000000000000000000000000000000000000000000000018756e69737761705065726d69743246656544796e616d6963000000000000000000000000000000000000000000000000000000000000000000000000000006000000000000000000000000001af3f329e8be154074d8769d1ffa4ee058b1dbc300000000000000000000000055d398326f99059ff775485246999027b31979550000000000000000000000000000000000000000000000001216f0a8cfb11c0000000000000000000000000000000000000000000000000011b9f7bfd9880dfc00000000000000000000000000000000000000000000000000000000000001200000000000000000000000000000000000000000000000000028e0df97f26400000000000000000000000000b28da7bc87a9dd1e60849aa7fcb5da24ea913c42000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000004ce3593564c000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000000a0000000000000000000000000000000000000000000000000000000006a06552b000000000000000000000000000000000000000000000000000000000000000110000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000002000000000000000000000000000000000000000000000000000000000000003c0000000000000000000000000000000000000000000000000000000000000004000000000000000000000000000000000000000000000000000000000000000800000000000000000000000000000000000000000000000000000000000000003070b0e000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000030000000000000000000000000000000000000000000000000000000000000060000000000000000000000000000000000000000000000000000000000000022000000000000000000000000000000000000000000000000000000000000002a000000000000000000000000000000000000000000000000000000000000001a000000000000000000000000000000000000000000000000000000000000000200000000000000000000000001af3f329e8be154074d8769d1ffa4ee058b1dbc300000000000000000000000000000000000000000000000000000000000000800000000000000000000000000000000000000000000000001216f0a8cfb11c0000000000000000000000000000000000000000000000000011bbc89f8e1e98490000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000002000000000000000000000000055d398326f99059ff775485246999027b319795500000000000000000000000000000000000000000000000000000000000000640000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000a0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000600000000000000000000000001af3f329e8be154074d8769d1ffa4ee058b1dbc300000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000006000000000000000000000000055d398326f99059ff775485246999027b3197955000000000000000000000000c590175e458b83680867afd273527ff58f74c02b0000000000000000000000000000000000000000000000000000000000000000756e69780000b2c5de0b00000000000000000000000000000000000053", + "from": "0x141d32a89a1e0a5ef360034a2f60a4b917c18838", + "gas": "0x5d0e7", + "maxFeePerGas": "0x3938700", + "maxPriorityFeePerGas": "0x3938700", + "to": "0x1a1ec25DC08e98e5E93F1104B5e5cdD298707d31", + "type": "swap", + "value": "0x0" + }, + { + "data": "0xa9059cbb000000000000000000000000e3478b0bb1a5084567c319096437924948be196400000000000000000000000000000000000000000000000000c66f495812cc88", + "from": "0x141d32a89a1e0a5ef360034a2f60a4b917c18838", + "gas": "0xcc57", + "maxFeePerGas": "0x3938700", + "maxPriorityFeePerGas": "0x3938700", + "to": "0x55d398326f99059ff775485246999027b3197955", + "type": "transfer", + "value": "0x0" + } + ], + "networkClientId": "9a1eafde-5f04-434b-b011-e9de5c50baf0", + "origin": "metamask", + "originalGasEstimate": "0x91644", + "r": "0x87596909125213928c859547effddd2831c43726a03884bbe0899947558bf500", + "rawTx": "0x02f910b13852840393870084039387008309164494141d32a89a1e0a5ef360034a2f60a4b917c1883880b91044e9ae5c53010100000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000400000000000000000000000000000000000000000000000000000000000000fe00000000000000000000000000000000000000000000000000000000000000020000000000000000000000000000000000000000000000000000000000000000500000000000000000000000000000000000000000000000000000000000000a00000000000000000000000000000000000000000000000000000000000000180000000000000000000000000000000000000000000000000000000000000066000000000000000000000000000000000000000000000000000000000000007400000000000000000000000000000000000000000000000000000000000000ec0000000000000000000000000f8a0bf9cf54bb92f17374d9e9a321e6a111a51bd000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000600000000000000000000000000000000000000000000000000000000000000044095ea7b30000000000000000000000001a1ec25dc08e98e5e93f1104b5e5cdd298707d310000000000000000000000000000000000000000000000000298348bed9600b7000000000000000000000000000000000000000000000000000000000000000000000000000000001a1ec25dc08e98e5e93f1104b5e5cdd298707d310000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000004455f5755290000000000000000000000000000000000000000000000000000000000000080000000000000000000000000f8a0bf9cf54bb92f17374d9e9a321e6a111a51bd0000000000000000000000000000000000000000000000000298348bed9600b700000000000000000000000000000000000000000000000000000000000000c00000000000000000000000000000000000000000000000000000000000000018756e69737761705065726d69743246656544796e616d696300000000000000000000000000000000000000000000000000000000000000000000000000000360000000000000000000000000f8a0bf9cf54bb92f17374d9e9a321e6a111a51bd00000000000000000000000055d398326f99059ff775485246999027b31979550000000000000000000000000000000000000000000000000298348bed9600b70000000000000000000000000000000000000000000000001ab337e661aca3b70000000000000000000000000000000000000000000000000000000000000120000000000000000000000000000000000000000000000000003d9144704ce95a000000000000000000000000b28da7bc87a9dd1e60849aa7fcb5da24ea913c420000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000022e3593564c000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000000a0000000000000000000000000000000000000000000000000000000006a06552b00000000000000000000000000000000000000000000000000000000000000010000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000000000200000000000000000000000000000000000000000000000000000000000000120000000000000000000000000c590175e458b83680867afd273527ff58f74c02b0000000000000000000000000000000000000000000000000298348bed9600b70000000000000000000000000000000000000000000000001af2505449d1b25a00000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000000000000000000000000000000010000000000000000000000000000000000000000000000000000000000000042f8a0bf9cf54bb92f17374d9e9a321e6a111a51bd0001f42170ed0880ac9a755fd29b2688956bd959f933f80001f455d398326f99059ff775485246999027b3197955000000000000000000000000000000000000000000000000000000000000756e69780000b2c5de0b000000000000000000000000000000000000300000000000000000000000000000000000000000000000000000000000000000000000000000001af3f329e8be154074d8769d1ffa4ee058b1dbc3000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000600000000000000000000000000000000000000000000000000000000000000044095ea7b30000000000000000000000001a1ec25dc08e98e5e93f1104b5e5cdd298707d31000000000000000000000000000000000000000000000000123fd18867a38000000000000000000000000000000000000000000000000000000000000000000000000000000000001a1ec25dc08e98e5e93f1104b5e5cdd298707d310000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000006e55f57552900000000000000000000000000000000000000000000000000000000000000800000000000000000000000001af3f329e8be154074d8769d1ffa4ee058b1dbc3000000000000000000000000000000000000000000000000123fd18867a3800000000000000000000000000000000000000000000000000000000000000000c00000000000000000000000000000000000000000000000000000000000000018756e69737761705065726d69743246656544796e616d6963000000000000000000000000000000000000000000000000000000000000000000000000000006000000000000000000000000001af3f329e8be154074d8769d1ffa4ee058b1dbc300000000000000000000000055d398326f99059ff775485246999027b31979550000000000000000000000000000000000000000000000001216f0a8cfb11c0000000000000000000000000000000000000000000000000011b9f7bfd9880dfc00000000000000000000000000000000000000000000000000000000000001200000000000000000000000000000000000000000000000000028e0df97f26400000000000000000000000000b28da7bc87a9dd1e60849aa7fcb5da24ea913c42000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000004ce3593564c000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000000a0000000000000000000000000000000000000000000000000000000006a06552b000000000000000000000000000000000000000000000000000000000000000110000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000002000000000000000000000000000000000000000000000000000000000000003c0000000000000000000000000000000000000000000000000000000000000004000000000000000000000000000000000000000000000000000000000000000800000000000000000000000000000000000000000000000000000000000000003070b0e000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000030000000000000000000000000000000000000000000000000000000000000060000000000000000000000000000000000000000000000000000000000000022000000000000000000000000000000000000000000000000000000000000002a000000000000000000000000000000000000000000000000000000000000001a000000000000000000000000000000000000000000000000000000000000000200000000000000000000000001af3f329e8be154074d8769d1ffa4ee058b1dbc300000000000000000000000000000000000000000000000000000000000000800000000000000000000000000000000000000000000000001216f0a8cfb11c0000000000000000000000000000000000000000000000000011bbc89f8e1e98490000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000002000000000000000000000000055d398326f99059ff775485246999027b319795500000000000000000000000000000000000000000000000000000000000000640000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000a0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000600000000000000000000000001af3f329e8be154074d8769d1ffa4ee058b1dbc300000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000006000000000000000000000000055d398326f99059ff775485246999027b3197955000000000000000000000000c590175e458b83680867afd273527ff58f74c02b0000000000000000000000000000000000000000000000000000000000000000756e69780000b2c5de0b0000000000000000000000000000000000005300000000000000000000000000000000000000000000000000000000000000000000000000000055d398326f99059ff775485246999027b3197955000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000600000000000000000000000000000000000000000000000000000000000000044a9059cbb000000000000000000000000e3478b0bb1a5084567c319096437924948be196400000000000000000000000000000000000000000000000000c66f495812cc8800000000000000000000000000000000000000000000000000000000c001a087596909125213928c859547effddd2831c43726a03884bbe0899947558bf500a015cc54210fa12dfe4af29409828a0b0ac21fbddfc33dff971961b3e900ef8c7d", + "s": "0x15cc54210fa12dfe4af29409828a0b0ac21fbddfc33dff971961b3e900ef8c7d", + "status": "failed", + "time": 1778798122435, + "txParams": { + "data": "0xe9ae5c53010100000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000400000000000000000000000000000000000000000000000000000000000000fe00000000000000000000000000000000000000000000000000000000000000020000000000000000000000000000000000000000000000000000000000000000500000000000000000000000000000000000000000000000000000000000000a00000000000000000000000000000000000000000000000000000000000000180000000000000000000000000000000000000000000000000000000000000066000000000000000000000000000000000000000000000000000000000000007400000000000000000000000000000000000000000000000000000000000000ec0000000000000000000000000f8a0bf9cf54bb92f17374d9e9a321e6a111a51bd000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000600000000000000000000000000000000000000000000000000000000000000044095ea7b30000000000000000000000001a1ec25dc08e98e5e93f1104b5e5cdd298707d310000000000000000000000000000000000000000000000000298348bed9600b7000000000000000000000000000000000000000000000000000000000000000000000000000000001a1ec25dc08e98e5e93f1104b5e5cdd298707d310000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000004455f5755290000000000000000000000000000000000000000000000000000000000000080000000000000000000000000f8a0bf9cf54bb92f17374d9e9a321e6a111a51bd0000000000000000000000000000000000000000000000000298348bed9600b700000000000000000000000000000000000000000000000000000000000000c00000000000000000000000000000000000000000000000000000000000000018756e69737761705065726d69743246656544796e616d696300000000000000000000000000000000000000000000000000000000000000000000000000000360000000000000000000000000f8a0bf9cf54bb92f17374d9e9a321e6a111a51bd00000000000000000000000055d398326f99059ff775485246999027b31979550000000000000000000000000000000000000000000000000298348bed9600b70000000000000000000000000000000000000000000000001ab337e661aca3b70000000000000000000000000000000000000000000000000000000000000120000000000000000000000000000000000000000000000000003d9144704ce95a000000000000000000000000b28da7bc87a9dd1e60849aa7fcb5da24ea913c420000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000022e3593564c000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000000a0000000000000000000000000000000000000000000000000000000006a06552b00000000000000000000000000000000000000000000000000000000000000010000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000000000200000000000000000000000000000000000000000000000000000000000000120000000000000000000000000c590175e458b83680867afd273527ff58f74c02b0000000000000000000000000000000000000000000000000298348bed9600b70000000000000000000000000000000000000000000000001af2505449d1b25a00000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000000000000000000000000000000010000000000000000000000000000000000000000000000000000000000000042f8a0bf9cf54bb92f17374d9e9a321e6a111a51bd0001f42170ed0880ac9a755fd29b2688956bd959f933f80001f455d398326f99059ff775485246999027b3197955000000000000000000000000000000000000000000000000000000000000756e69780000b2c5de0b000000000000000000000000000000000000300000000000000000000000000000000000000000000000000000000000000000000000000000001af3f329e8be154074d8769d1ffa4ee058b1dbc3000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000600000000000000000000000000000000000000000000000000000000000000044095ea7b30000000000000000000000001a1ec25dc08e98e5e93f1104b5e5cdd298707d31000000000000000000000000000000000000000000000000123fd18867a38000000000000000000000000000000000000000000000000000000000000000000000000000000000001a1ec25dc08e98e5e93f1104b5e5cdd298707d310000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000006e55f57552900000000000000000000000000000000000000000000000000000000000000800000000000000000000000001af3f329e8be154074d8769d1ffa4ee058b1dbc3000000000000000000000000000000000000000000000000123fd18867a3800000000000000000000000000000000000000000000000000000000000000000c00000000000000000000000000000000000000000000000000000000000000018756e69737761705065726d69743246656544796e616d6963000000000000000000000000000000000000000000000000000000000000000000000000000006000000000000000000000000001af3f329e8be154074d8769d1ffa4ee058b1dbc300000000000000000000000055d398326f99059ff775485246999027b31979550000000000000000000000000000000000000000000000001216f0a8cfb11c0000000000000000000000000000000000000000000000000011b9f7bfd9880dfc00000000000000000000000000000000000000000000000000000000000001200000000000000000000000000000000000000000000000000028e0df97f26400000000000000000000000000b28da7bc87a9dd1e60849aa7fcb5da24ea913c42000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000004ce3593564c000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000000a0000000000000000000000000000000000000000000000000000000006a06552b000000000000000000000000000000000000000000000000000000000000000110000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000002000000000000000000000000000000000000000000000000000000000000003c0000000000000000000000000000000000000000000000000000000000000004000000000000000000000000000000000000000000000000000000000000000800000000000000000000000000000000000000000000000000000000000000003070b0e000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000030000000000000000000000000000000000000000000000000000000000000060000000000000000000000000000000000000000000000000000000000000022000000000000000000000000000000000000000000000000000000000000002a000000000000000000000000000000000000000000000000000000000000001a000000000000000000000000000000000000000000000000000000000000000200000000000000000000000001af3f329e8be154074d8769d1ffa4ee058b1dbc300000000000000000000000000000000000000000000000000000000000000800000000000000000000000000000000000000000000000001216f0a8cfb11c0000000000000000000000000000000000000000000000000011bbc89f8e1e98490000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000002000000000000000000000000055d398326f99059ff775485246999027b319795500000000000000000000000000000000000000000000000000000000000000640000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000a0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000600000000000000000000000001af3f329e8be154074d8769d1ffa4ee058b1dbc300000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000006000000000000000000000000055d398326f99059ff775485246999027b3197955000000000000000000000000c590175e458b83680867afd273527ff58f74c02b0000000000000000000000000000000000000000000000000000000000000000756e69780000b2c5de0b0000000000000000000000000000000000005300000000000000000000000000000000000000000000000000000000000000000000000000000055d398326f99059ff775485246999027b3197955000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000600000000000000000000000000000000000000000000000000000000000000044a9059cbb000000000000000000000000e3478b0bb1a5084567c319096437924948be196400000000000000000000000000000000000000000000000000c66f495812cc8800000000000000000000000000000000000000000000000000000000", + "from": "0x141d32a89a1e0a5ef360034a2f60a4b917c18838", + "gas": "0x91644", + "gasLimit": "0x91644", + "maxFeePerGas": "0x3938700", + "maxPriorityFeePerGas": "0x3938700", + "nonce": "0x52", + "to": "0x141d32a89a1e0a5ef360034a2f60a4b917c18838", + "type": "0x2", + "value": "0x0" + }, + "type": "batch", + "userEditedGasLimit": false, + "userFeeLevel": "medium", + "v": "0x1", + "verifiedOnBlockchain": false + }, + { + "batchId": "0x19e28a92365", + "chainId": "0x38", + "defaultGasEstimates": { + "estimateType": "medium", + "gas": "0x92600", + "maxFeePerGas": "0x3938700", + "maxPriorityFeePerGas": "0x3938700" + }, + "delegationAddress": "0x63c0c19a282a1b52b07dd5a65b58948a07dae32b", + "error": { + "message": "RPC submit: gas required exceeds allowance (421519)", + "name": "Error", + "stack": "Error: RPC submit: gas required exceeds allowance (421519)\n at TransactionController._TransactionController_publishTransaction (chrome-extension://hebhblbkkdabgoldnojllkipeoacjioc/js-node_modules_metamask_s.js:60037:15)\n at async chrome-extension://hebhblbkkdabgoldnojllkipeoacjioc/js-node_modules_metamask_s.js:60723:47\n at async TransactionController._TransactionController_defaultPublishHook (chrome-extension://hebhblbkkdabgoldnojllkipeoacjioc/js-node_modules_metamask_s.js:60716:5)\n at async TransactionController._TransactionController_approveTransaction (chrome-extension://hebhblbkkdabgoldnojllkipeoacjioc/js-node_modules_metamask_s.js:59987:43)\n at async TransactionController._TransactionController_processApproval (chrome-extension://hebhblbkkdabgoldnojllkipeoacjioc/js-node_modules_metamask_s.js:59851:40)\n at async addTransactionBatchWith7702 (chrome-extension://hebhblbkkdabgoldnojllkipeoacjioc/js-node_modules_metamask_s.js:41175:29)\n at async addTransactionBatch (chrome-extension://hebhblbkkdabgoldnojllkipeoacjioc/js-node_modules_metamask_s.js:40973:20)\n at async TransactionController.addTransactionBatch (chrome-extension://hebhblbkkdabgoldnojllkipeoacjioc/js-node_modules_metamask_s.js:58615:16)\n at async addTransactionBatch (chrome-extension://hebhblbkkdabgoldnojllkipeoacjioc/js-node_modules_metamask_a.js:67560:25)\n at async submitBatchSellHandler (chrome-extension://hebhblbkkdabgoldnojllkipeoacjioc/js-node_modules_metamask_a.js:20660:33)" + }, + "gasFeeEstimates": { + "high": { + "maxFeePerGas": "0x2faf080", + "maxPriorityFeePerGas": "0x2faf080" + }, + "low": { + "maxFeePerGas": "0x2faf080", + "maxPriorityFeePerGas": "0x2faf080" + }, + "medium": { + "maxFeePerGas": "0x2faf080", + "maxPriorityFeePerGas": "0x2faf080" + }, + "type": "fee-market" + }, + "gasFeeEstimatesLoaded": true, + "gasLimitNoBuffer": "0x92600", + "id": "1db3a1a0-4fe6-11f1-8370-f7a3226f6a5c", + "isGasFeeIncluded": true, + "isGasFeeSponsored": false, + "isGasFeeTokenIgnoredIfBalance": false, + "nestedTransactions": [ + { + "data": "0x095ea7b30000000000000000000000001a1ec25dc08e98e5e93f1104b5e5cdd298707d310000000000000000000000000000000000000000000000000298348bed9600b7", + "from": "0x141d32a89a1e0a5ef360034a2f60a4b917c18838", + "gas": "0x110fa", + "maxFeePerGas": "0x3938700", + "maxPriorityFeePerGas": "0x3938700", + "to": "0xf8a0bf9cf54bb92f17374d9e9a321e6a111a51bd", + "type": "swapApproval", + "value": "0x0" + }, + { + "data": "0x5f5755290000000000000000000000000000000000000000000000000000000000000080000000000000000000000000f8a0bf9cf54bb92f17374d9e9a321e6a111a51bd0000000000000000000000000000000000000000000000000298348bed9600b700000000000000000000000000000000000000000000000000000000000000c00000000000000000000000000000000000000000000000000000000000000018756e69737761705065726d69743246656544796e616d696300000000000000000000000000000000000000000000000000000000000000000000000000000360000000000000000000000000f8a0bf9cf54bb92f17374d9e9a321e6a111a51bd00000000000000000000000055d398326f99059ff775485246999027b31979550000000000000000000000000000000000000000000000000298348bed9600b70000000000000000000000000000000000000000000000001ab3265f13d372100000000000000000000000000000000000000000000000000000000000000120000000000000000000000000000000000000000000000000003d911c05112b68000000000000000000000000b28da7bc87a9dd1e60849aa7fcb5da24ea913c420000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000022e3593564c000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000000a0000000000000000000000000000000000000000000000000000000006a06567a00000000000000000000000000000000000000000000000000000000000000010000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000000000200000000000000000000000000000000000000000000000000000000000000120000000000000000000000000c590175e458b83680867afd273527ff58f74c02b0000000000000000000000000000000000000000000000000298348bed9600b70000000000000000000000000000000000000000000000001af23ea38ff0c22800000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000000000000000000000000000000010000000000000000000000000000000000000000000000000000000000000042f8a0bf9cf54bb92f17374d9e9a321e6a111a51bd0001f42170ed0880ac9a755fd29b2688956bd959f933f80001f455d398326f99059ff775485246999027b3197955000000000000000000000000000000000000000000000000000000000000756e69780000b2c5de0b000000000000000000000000000000000000a2", + "from": "0x141d32a89a1e0a5ef360034a2f60a4b917c18838", + "gas": "0x793ca", + "maxFeePerGas": "0x3938700", + "maxPriorityFeePerGas": "0x3938700", + "to": "0x1a1ec25DC08e98e5E93F1104B5e5cdD298707d31", + "type": "swap", + "value": "0x0" + }, + { + "data": "0x095ea7b30000000000000000000000001a1ec25dc08e98e5e93f1104b5e5cdd298707d31000000000000000000000000000000000000000000000000123fd18867a38000", + "from": "0x141d32a89a1e0a5ef360034a2f60a4b917c18838", + "gas": "0x110fa", + "maxFeePerGas": "0x3938700", + "maxPriorityFeePerGas": "0x3938700", + "to": "0x1af3f329e8be154074d8769d1ffa4ee058b1dbc3", + "type": "swapApproval", + "value": "0x0" + }, + { + "data": "0x5f57552900000000000000000000000000000000000000000000000000000000000000800000000000000000000000001af3f329e8be154074d8769d1ffa4ee058b1dbc3000000000000000000000000000000000000000000000000123fd18867a3800000000000000000000000000000000000000000000000000000000000000000c0000000000000000000000000000000000000000000000000000000000000001b70616e63616b6553776170526f7574657246656544796e616d6963000000000000000000000000000000000000000000000000000000000000000000000002200000000000000000000000001af3f329e8be154074d8769d1ffa4ee058b1dbc300000000000000000000000055d398326f99059ff775485246999027b31979550000000000000000000000000000000000000000000000001216f0a8cfb11c0000000000000000000000000000000000000000000000000011b9126b47df5d7300000000000000000000000000000000000000000000000000000000000001200000000000000000000000000000000000000000000000000028e0df97f26400000000000000000000000000b28da7bc87a9dd1e60849aa7fcb5da24ea913c42000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000e404e45aaf0000000000000000000000001af3f329e8be154074d8769d1ffa4ee058b1dbc300000000000000000000000055d398326f99059ff775485246999027b31979550000000000000000000000000000000000000000000000000000000000000064000000000000000000000000c590175e458b83680867afd273527ff58f74c02b0000000000000000000000000000000000000000000000001216f0a8cfb11c0000000000000000000000000000000000000000000000000011bae3337e4c24f1000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000fd", + "from": "0x141d32a89a1e0a5ef360034a2f60a4b917c18838", + "gas": "0x5b923", + "maxFeePerGas": "0x3938700", + "maxPriorityFeePerGas": "0x3938700", + "to": "0x1a1ec25DC08e98e5E93F1104B5e5cdD298707d31", + "type": "swap", + "value": "0x0" + }, + { + "data": "0xa9059cbb000000000000000000000000e3478b0bb1a5084567c319096437924948be196400000000000000000000000000000000000000000000000000c07216d3c9a96f", + "from": "0x141d32a89a1e0a5ef360034a2f60a4b917c18838", + "gas": "0xcc57", + "maxFeePerGas": "0x3938700", + "maxPriorityFeePerGas": "0x3938700", + "to": "0x55d398326f99059ff775485246999027b3197955", + "type": "transfer", + "value": "0x0" + } + ], + "networkClientId": "9a1eafde-5f04-434b-b011-e9de5c50baf0", + "origin": "metamask", + "originalGasEstimate": "0x92600", + "r": "0xc657ceca0c70ad67c1d961a045d2d32729a2488f312bed3033854dc88e75d291", + "rawTx": "0x02f90cd13852840393870084039387008309260094141d32a89a1e0a5ef360034a2f60a4b917c1883880b90c64e9ae5c53010100000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000400000000000000000000000000000000000000000000000000000000000000c000000000000000000000000000000000000000000000000000000000000000020000000000000000000000000000000000000000000000000000000000000000500000000000000000000000000000000000000000000000000000000000000a00000000000000000000000000000000000000000000000000000000000000180000000000000000000000000000000000000000000000000000000000000066000000000000000000000000000000000000000000000000000000000000007400000000000000000000000000000000000000000000000000000000000000ae0000000000000000000000000f8a0bf9cf54bb92f17374d9e9a321e6a111a51bd000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000600000000000000000000000000000000000000000000000000000000000000044095ea7b30000000000000000000000001a1ec25dc08e98e5e93f1104b5e5cdd298707d310000000000000000000000000000000000000000000000000298348bed9600b7000000000000000000000000000000000000000000000000000000000000000000000000000000001a1ec25dc08e98e5e93f1104b5e5cdd298707d310000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000004455f5755290000000000000000000000000000000000000000000000000000000000000080000000000000000000000000f8a0bf9cf54bb92f17374d9e9a321e6a111a51bd0000000000000000000000000000000000000000000000000298348bed9600b700000000000000000000000000000000000000000000000000000000000000c00000000000000000000000000000000000000000000000000000000000000018756e69737761705065726d69743246656544796e616d696300000000000000000000000000000000000000000000000000000000000000000000000000000360000000000000000000000000f8a0bf9cf54bb92f17374d9e9a321e6a111a51bd00000000000000000000000055d398326f99059ff775485246999027b31979550000000000000000000000000000000000000000000000000298348bed9600b70000000000000000000000000000000000000000000000001ab3265f13d372100000000000000000000000000000000000000000000000000000000000000120000000000000000000000000000000000000000000000000003d911c05112b68000000000000000000000000b28da7bc87a9dd1e60849aa7fcb5da24ea913c420000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000022e3593564c000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000000a0000000000000000000000000000000000000000000000000000000006a06567a00000000000000000000000000000000000000000000000000000000000000010000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000000000200000000000000000000000000000000000000000000000000000000000000120000000000000000000000000c590175e458b83680867afd273527ff58f74c02b0000000000000000000000000000000000000000000000000298348bed9600b70000000000000000000000000000000000000000000000001af23ea38ff0c22800000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000000000000000000000000000000010000000000000000000000000000000000000000000000000000000000000042f8a0bf9cf54bb92f17374d9e9a321e6a111a51bd0001f42170ed0880ac9a755fd29b2688956bd959f933f80001f455d398326f99059ff775485246999027b3197955000000000000000000000000000000000000000000000000000000000000756e69780000b2c5de0b000000000000000000000000000000000000a20000000000000000000000000000000000000000000000000000000000000000000000000000001af3f329e8be154074d8769d1ffa4ee058b1dbc3000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000600000000000000000000000000000000000000000000000000000000000000044095ea7b30000000000000000000000001a1ec25dc08e98e5e93f1104b5e5cdd298707d31000000000000000000000000000000000000000000000000123fd18867a38000000000000000000000000000000000000000000000000000000000000000000000000000000000001a1ec25dc08e98e5e93f1104b5e5cdd298707d310000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000003055f57552900000000000000000000000000000000000000000000000000000000000000800000000000000000000000001af3f329e8be154074d8769d1ffa4ee058b1dbc3000000000000000000000000000000000000000000000000123fd18867a3800000000000000000000000000000000000000000000000000000000000000000c0000000000000000000000000000000000000000000000000000000000000001b70616e63616b6553776170526f7574657246656544796e616d6963000000000000000000000000000000000000000000000000000000000000000000000002200000000000000000000000001af3f329e8be154074d8769d1ffa4ee058b1dbc300000000000000000000000055d398326f99059ff775485246999027b31979550000000000000000000000000000000000000000000000001216f0a8cfb11c0000000000000000000000000000000000000000000000000011b9126b47df5d7300000000000000000000000000000000000000000000000000000000000001200000000000000000000000000000000000000000000000000028e0df97f26400000000000000000000000000b28da7bc87a9dd1e60849aa7fcb5da24ea913c42000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000e404e45aaf0000000000000000000000001af3f329e8be154074d8769d1ffa4ee058b1dbc300000000000000000000000055d398326f99059ff775485246999027b31979550000000000000000000000000000000000000000000000000000000000000064000000000000000000000000c590175e458b83680867afd273527ff58f74c02b0000000000000000000000000000000000000000000000001216f0a8cfb11c0000000000000000000000000000000000000000000000000011bae3337e4c24f1000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000fd00000000000000000000000000000000000000000000000000000000000000000000000000000055d398326f99059ff775485246999027b3197955000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000600000000000000000000000000000000000000000000000000000000000000044a9059cbb000000000000000000000000e3478b0bb1a5084567c319096437924948be196400000000000000000000000000000000000000000000000000c07216d3c9a96f00000000000000000000000000000000000000000000000000000000c080a0c657ceca0c70ad67c1d961a045d2d32729a2488f312bed3033854dc88e75d291a0345abced04b0b3c8e9916cd5d370b88ab02f3816045908e39ce7eb2766bc1294", + "s": "0x345abced04b0b3c8e9916cd5d370b88ab02f3816045908e39ce7eb2766bc1294", + "status": "failed", + "time": 1778798518458, + "txParams": { + "data": "0xe9ae5c53010100000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000400000000000000000000000000000000000000000000000000000000000000c000000000000000000000000000000000000000000000000000000000000000020000000000000000000000000000000000000000000000000000000000000000500000000000000000000000000000000000000000000000000000000000000a00000000000000000000000000000000000000000000000000000000000000180000000000000000000000000000000000000000000000000000000000000066000000000000000000000000000000000000000000000000000000000000007400000000000000000000000000000000000000000000000000000000000000ae0000000000000000000000000f8a0bf9cf54bb92f17374d9e9a321e6a111a51bd000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000600000000000000000000000000000000000000000000000000000000000000044095ea7b30000000000000000000000001a1ec25dc08e98e5e93f1104b5e5cdd298707d310000000000000000000000000000000000000000000000000298348bed9600b7000000000000000000000000000000000000000000000000000000000000000000000000000000001a1ec25dc08e98e5e93f1104b5e5cdd298707d310000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000004455f5755290000000000000000000000000000000000000000000000000000000000000080000000000000000000000000f8a0bf9cf54bb92f17374d9e9a321e6a111a51bd0000000000000000000000000000000000000000000000000298348bed9600b700000000000000000000000000000000000000000000000000000000000000c00000000000000000000000000000000000000000000000000000000000000018756e69737761705065726d69743246656544796e616d696300000000000000000000000000000000000000000000000000000000000000000000000000000360000000000000000000000000f8a0bf9cf54bb92f17374d9e9a321e6a111a51bd00000000000000000000000055d398326f99059ff775485246999027b31979550000000000000000000000000000000000000000000000000298348bed9600b70000000000000000000000000000000000000000000000001ab3265f13d372100000000000000000000000000000000000000000000000000000000000000120000000000000000000000000000000000000000000000000003d911c05112b68000000000000000000000000b28da7bc87a9dd1e60849aa7fcb5da24ea913c420000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000022e3593564c000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000000a0000000000000000000000000000000000000000000000000000000006a06567a00000000000000000000000000000000000000000000000000000000000000010000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000000000200000000000000000000000000000000000000000000000000000000000000120000000000000000000000000c590175e458b83680867afd273527ff58f74c02b0000000000000000000000000000000000000000000000000298348bed9600b70000000000000000000000000000000000000000000000001af23ea38ff0c22800000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000000000000000000000000000000010000000000000000000000000000000000000000000000000000000000000042f8a0bf9cf54bb92f17374d9e9a321e6a111a51bd0001f42170ed0880ac9a755fd29b2688956bd959f933f80001f455d398326f99059ff775485246999027b3197955000000000000000000000000000000000000000000000000000000000000756e69780000b2c5de0b000000000000000000000000000000000000a20000000000000000000000000000000000000000000000000000000000000000000000000000001af3f329e8be154074d8769d1ffa4ee058b1dbc3000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000600000000000000000000000000000000000000000000000000000000000000044095ea7b30000000000000000000000001a1ec25dc08e98e5e93f1104b5e5cdd298707d31000000000000000000000000000000000000000000000000123fd18867a38000000000000000000000000000000000000000000000000000000000000000000000000000000000001a1ec25dc08e98e5e93f1104b5e5cdd298707d310000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000003055f57552900000000000000000000000000000000000000000000000000000000000000800000000000000000000000001af3f329e8be154074d8769d1ffa4ee058b1dbc3000000000000000000000000000000000000000000000000123fd18867a3800000000000000000000000000000000000000000000000000000000000000000c0000000000000000000000000000000000000000000000000000000000000001b70616e63616b6553776170526f7574657246656544796e616d6963000000000000000000000000000000000000000000000000000000000000000000000002200000000000000000000000001af3f329e8be154074d8769d1ffa4ee058b1dbc300000000000000000000000055d398326f99059ff775485246999027b31979550000000000000000000000000000000000000000000000001216f0a8cfb11c0000000000000000000000000000000000000000000000000011b9126b47df5d7300000000000000000000000000000000000000000000000000000000000001200000000000000000000000000000000000000000000000000028e0df97f26400000000000000000000000000b28da7bc87a9dd1e60849aa7fcb5da24ea913c42000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000e404e45aaf0000000000000000000000001af3f329e8be154074d8769d1ffa4ee058b1dbc300000000000000000000000055d398326f99059ff775485246999027b31979550000000000000000000000000000000000000000000000000000000000000064000000000000000000000000c590175e458b83680867afd273527ff58f74c02b0000000000000000000000000000000000000000000000001216f0a8cfb11c0000000000000000000000000000000000000000000000000011bae3337e4c24f1000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000fd00000000000000000000000000000000000000000000000000000000000000000000000000000055d398326f99059ff775485246999027b3197955000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000600000000000000000000000000000000000000000000000000000000000000044a9059cbb000000000000000000000000e3478b0bb1a5084567c319096437924948be196400000000000000000000000000000000000000000000000000c07216d3c9a96f00000000000000000000000000000000000000000000000000000000", + "from": "0x141d32a89a1e0a5ef360034a2f60a4b917c18838", + "gas": "0x92600", + "gasLimit": "0x92600", + "maxFeePerGas": "0x3938700", + "maxPriorityFeePerGas": "0x3938700", + "nonce": "0x52", + "to": "0x141d32a89a1e0a5ef360034a2f60a4b917c18838", + "type": "0x2", + "value": "0x0" + }, + "type": "batch", + "userEditedGasLimit": false, + "userFeeLevel": "medium", + "v": "0x0", + "verifiedOnBlockchain": false + }, + { + "batchId": "0x19e28baaa6d", + "chainId": "0x38", + "delegationAddress": "0x63c0c19a282a1b52b07dd5a65b58948a07dae32b", + "error": { + "message": "RPC submit: gas=0 intrinsicGas=47316: invalid gas", + "name": "Error", + "stack": "Error: RPC submit: gas=0 intrinsicGas=47316: invalid gas\n at TransactionController._TransactionController_publishTransaction (chrome-extension://hebhblbkkdabgoldnojllkipeoacjioc/js-node_modules_metamask_s.js:60041:15)\n at async chrome-extension://hebhblbkkdabgoldnojllkipeoacjioc/js-node_modules_metamask_s.js:60727:47\n at async TransactionController._TransactionController_defaultPublishHook (chrome-extension://hebhblbkkdabgoldnojllkipeoacjioc/js-node_modules_metamask_s.js:60720:5)\n at async TransactionController._TransactionController_approveTransaction (chrome-extension://hebhblbkkdabgoldnojllkipeoacjioc/js-node_modules_metamask_s.js:59991:43)\n at async TransactionController._TransactionController_processApproval (chrome-extension://hebhblbkkdabgoldnojllkipeoacjioc/js-node_modules_metamask_s.js:59854:40)\n at async addTransactionBatchWith7702 (chrome-extension://hebhblbkkdabgoldnojllkipeoacjioc/js-node_modules_metamask_s.js:41175:29)\n at async addTransactionBatch (chrome-extension://hebhblbkkdabgoldnojllkipeoacjioc/js-node_modules_metamask_s.js:40973:20)\n at async TransactionController.addTransactionBatch (chrome-extension://hebhblbkkdabgoldnojllkipeoacjioc/js-node_modules_metamask_s.js:58615:16)\n at async addTransactionBatch (chrome-extension://hebhblbkkdabgoldnojllkipeoacjioc/js-node_modules_metamask_a.js:67563:25)\n at async submitBatchSellHandler (chrome-extension://hebhblbkkdabgoldnojllkipeoacjioc/js-node_modules_metamask_a.js:20661:33)" + }, + "gasFeeEstimates": { + "high": { + "maxFeePerGas": "0x3099680", + "maxPriorityFeePerGas": "0x3099680" + }, + "low": { + "maxFeePerGas": "0x2faf080", + "maxPriorityFeePerGas": "0x2faf080" + }, + "medium": { + "maxFeePerGas": "0x2faf080", + "maxPriorityFeePerGas": "0x2faf080" + }, + "type": "fee-market" + }, + "gasFeeEstimatesLoaded": true, + "id": "9072b6c0-4fe8-11f1-b512-3d7e68ba040f", + "isGasFeeIncluded": true, + "isGasFeeSponsored": false, + "isGasFeeTokenIgnoredIfBalance": false, + "nestedTransactions": [ + { + "data": "0x095ea7b30000000000000000000000001a1ec25dc08e98e5e93f1104b5e5cdd298707d310000000000000000000000000000000000000000000000000298348bed9600b7", + "from": "0x141d32a89a1e0a5ef360034a2f60a4b917c18838", + "gas": "0x110fa", + "maxFeePerGas": "0x3938700", + "maxPriorityFeePerGas": "0x3938700", + "to": "0xf8a0bf9cf54bb92f17374d9e9a321e6a111a51bd", + "type": "swapApproval", + "value": "0x0" + }, + { + "data": "0x5f5755290000000000000000000000000000000000000000000000000000000000000080000000000000000000000000f8a0bf9cf54bb92f17374d9e9a321e6a111a51bd0000000000000000000000000000000000000000000000000298348bed9600b700000000000000000000000000000000000000000000000000000000000000c00000000000000000000000000000000000000000000000000000000000000018756e69737761705065726d69743246656544796e616d696300000000000000000000000000000000000000000000000000000000000000000000000000000360000000000000000000000000f8a0bf9cf54bb92f17374d9e9a321e6a111a51bd00000000000000000000000055d398326f99059ff775485246999027b31979550000000000000000000000000000000000000000000000000298348bed9600b70000000000000000000000000000000000000000000000001aafef9d42701d280000000000000000000000000000000000000000000000000000000000000120000000000000000000000000000000000000000000000000003d89b2d4ecc39e000000000000000000000000b28da7bc87a9dd1e60849aa7fcb5da24ea913c420000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000022e3593564c000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000000a0000000000000000000000000000000000000000000000000000000006a065aca00000000000000000000000000000000000000000000000000000000000000010000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000000000200000000000000000000000000000000000000000000000000000000000000120000000000000000000000000c590175e458b83680867afd273527ff58f74c02b0000000000000000000000000000000000000000000000000298348bed9600b70000000000000000000000000000000000000000000000001aef004978d5f9bd00000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000000000000000000000000000000010000000000000000000000000000000000000000000000000000000000000042f8a0bf9cf54bb92f17374d9e9a321e6a111a51bd0001f42170ed0880ac9a755fd29b2688956bd959f933f80001f455d398326f99059ff775485246999027b3197955000000000000000000000000000000000000000000000000000000000000756e69780000b2c5de0b00000000000000000000000000000000000018", + "from": "0x141d32a89a1e0a5ef360034a2f60a4b917c18838", + "gas": "0x793fb", + "maxFeePerGas": "0x3938700", + "maxPriorityFeePerGas": "0x3938700", + "to": "0x1a1ec25DC08e98e5E93F1104B5e5cdD298707d31", + "type": "swap", + "value": "0x0" + }, + { + "data": "0x095ea7b30000000000000000000000001a1ec25dc08e98e5e93f1104b5e5cdd298707d31000000000000000000000000000000000000000000000000123fd18867a38000", + "from": "0x141d32a89a1e0a5ef360034a2f60a4b917c18838", + "gas": "0x110fa", + "maxFeePerGas": "0x3938700", + "maxPriorityFeePerGas": "0x3938700", + "to": "0x1af3f329e8be154074d8769d1ffa4ee058b1dbc3", + "type": "swapApproval", + "value": "0x0" + }, + { + "data": "0x5f57552900000000000000000000000000000000000000000000000000000000000000800000000000000000000000001af3f329e8be154074d8769d1ffa4ee058b1dbc3000000000000000000000000000000000000000000000000123fd18867a3800000000000000000000000000000000000000000000000000000000000000000c00000000000000000000000000000000000000000000000000000000000000018756e69737761705065726d69743246656544796e616d6963000000000000000000000000000000000000000000000000000000000000000000000000000006000000000000000000000000001af3f329e8be154074d8769d1ffa4ee058b1dbc300000000000000000000000055d398326f99059ff775485246999027b31979550000000000000000000000000000000000000000000000001216f0a8cfb11c0000000000000000000000000000000000000000000000000011b9f5efe1ba2b5700000000000000000000000000000000000000000000000000000000000001200000000000000000000000000000000000000000000000000028e0df97f26400000000000000000000000000b28da7bc87a9dd1e60849aa7fcb5da24ea913c42000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000004ce3593564c000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000000a0000000000000000000000000000000000000000000000000000000006a065aca000000000000000000000000000000000000000000000000000000000000000110000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000002000000000000000000000000000000000000000000000000000000000000003c0000000000000000000000000000000000000000000000000000000000000004000000000000000000000000000000000000000000000000000000000000000800000000000000000000000000000000000000000000000000000000000000003070b0e000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000030000000000000000000000000000000000000000000000000000000000000060000000000000000000000000000000000000000000000000000000000000022000000000000000000000000000000000000000000000000000000000000002a000000000000000000000000000000000000000000000000000000000000001a000000000000000000000000000000000000000000000000000000000000000200000000000000000000000001af3f329e8be154074d8769d1ffa4ee058b1dbc300000000000000000000000000000000000000000000000000000000000000800000000000000000000000000000000000000000000000001216f0a8cfb11c0000000000000000000000000000000000000000000000000011bbc6cf66c9333f0000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000002000000000000000000000000055d398326f99059ff775485246999027b319795500000000000000000000000000000000000000000000000000000000000000640000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000a0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000600000000000000000000000001af3f329e8be154074d8769d1ffa4ee058b1dbc300000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000006000000000000000000000000055d398326f99059ff775485246999027b3197955000000000000000000000000c590175e458b83680867afd273527ff58f74c02b0000000000000000000000000000000000000000000000000000000000000000756e69780000b2c5de0b00000000000000000000000000000000000027", + "from": "0x141d32a89a1e0a5ef360034a2f60a4b917c18838", + "gas": "0x5d0e7", + "maxFeePerGas": "0x3938700", + "maxPriorityFeePerGas": "0x3938700", + "to": "0x1a1ec25DC08e98e5E93F1104B5e5cdD298707d31", + "type": "swap", + "value": "0x0" + }, + { + "data": "0xa9059cbb000000000000000000000000e3478b0bb1a5084567c319096437924948be196400000000000000000000000000000000000000000000000000c66b933356b974", + "from": "0x141d32a89a1e0a5ef360034a2f60a4b917c18838", + "gas": "0xcc57", + "maxFeePerGas": "0x3938700", + "maxPriorityFeePerGas": "0x3938700", + "to": "0x55d398326f99059ff775485246999027b3197955", + "type": "transfer", + "value": "0x0" + } + ], + "networkClientId": "9a1eafde-5f04-434b-b011-e9de5c50baf0", + "origin": "metamask", + "r": "0x51f4d753bffc4b5c529b3f5ec56cda2cb1f918c2369ac0f424e1961f47843b3b", + "rawTx": "0x02f910ae3852840393870084039387008094141d32a89a1e0a5ef360034a2f60a4b917c1883880b91044e9ae5c53010100000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000400000000000000000000000000000000000000000000000000000000000000fe00000000000000000000000000000000000000000000000000000000000000020000000000000000000000000000000000000000000000000000000000000000500000000000000000000000000000000000000000000000000000000000000a00000000000000000000000000000000000000000000000000000000000000180000000000000000000000000000000000000000000000000000000000000066000000000000000000000000000000000000000000000000000000000000007400000000000000000000000000000000000000000000000000000000000000ec0000000000000000000000000f8a0bf9cf54bb92f17374d9e9a321e6a111a51bd000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000600000000000000000000000000000000000000000000000000000000000000044095ea7b30000000000000000000000001a1ec25dc08e98e5e93f1104b5e5cdd298707d310000000000000000000000000000000000000000000000000298348bed9600b7000000000000000000000000000000000000000000000000000000000000000000000000000000001a1ec25dc08e98e5e93f1104b5e5cdd298707d310000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000004455f5755290000000000000000000000000000000000000000000000000000000000000080000000000000000000000000f8a0bf9cf54bb92f17374d9e9a321e6a111a51bd0000000000000000000000000000000000000000000000000298348bed9600b700000000000000000000000000000000000000000000000000000000000000c00000000000000000000000000000000000000000000000000000000000000018756e69737761705065726d69743246656544796e616d696300000000000000000000000000000000000000000000000000000000000000000000000000000360000000000000000000000000f8a0bf9cf54bb92f17374d9e9a321e6a111a51bd00000000000000000000000055d398326f99059ff775485246999027b31979550000000000000000000000000000000000000000000000000298348bed9600b70000000000000000000000000000000000000000000000001aafef9d42701d280000000000000000000000000000000000000000000000000000000000000120000000000000000000000000000000000000000000000000003d89b2d4ecc39e000000000000000000000000b28da7bc87a9dd1e60849aa7fcb5da24ea913c420000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000022e3593564c000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000000a0000000000000000000000000000000000000000000000000000000006a065aca00000000000000000000000000000000000000000000000000000000000000010000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000000000200000000000000000000000000000000000000000000000000000000000000120000000000000000000000000c590175e458b83680867afd273527ff58f74c02b0000000000000000000000000000000000000000000000000298348bed9600b70000000000000000000000000000000000000000000000001aef004978d5f9bd00000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000000000000000000000000000000010000000000000000000000000000000000000000000000000000000000000042f8a0bf9cf54bb92f17374d9e9a321e6a111a51bd0001f42170ed0880ac9a755fd29b2688956bd959f933f80001f455d398326f99059ff775485246999027b3197955000000000000000000000000000000000000000000000000000000000000756e69780000b2c5de0b000000000000000000000000000000000000180000000000000000000000000000000000000000000000000000000000000000000000000000001af3f329e8be154074d8769d1ffa4ee058b1dbc3000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000600000000000000000000000000000000000000000000000000000000000000044095ea7b30000000000000000000000001a1ec25dc08e98e5e93f1104b5e5cdd298707d31000000000000000000000000000000000000000000000000123fd18867a38000000000000000000000000000000000000000000000000000000000000000000000000000000000001a1ec25dc08e98e5e93f1104b5e5cdd298707d310000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000006e55f57552900000000000000000000000000000000000000000000000000000000000000800000000000000000000000001af3f329e8be154074d8769d1ffa4ee058b1dbc3000000000000000000000000000000000000000000000000123fd18867a3800000000000000000000000000000000000000000000000000000000000000000c00000000000000000000000000000000000000000000000000000000000000018756e69737761705065726d69743246656544796e616d6963000000000000000000000000000000000000000000000000000000000000000000000000000006000000000000000000000000001af3f329e8be154074d8769d1ffa4ee058b1dbc300000000000000000000000055d398326f99059ff775485246999027b31979550000000000000000000000000000000000000000000000001216f0a8cfb11c0000000000000000000000000000000000000000000000000011b9f5efe1ba2b5700000000000000000000000000000000000000000000000000000000000001200000000000000000000000000000000000000000000000000028e0df97f26400000000000000000000000000b28da7bc87a9dd1e60849aa7fcb5da24ea913c42000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000004ce3593564c000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000000a0000000000000000000000000000000000000000000000000000000006a065aca000000000000000000000000000000000000000000000000000000000000000110000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000002000000000000000000000000000000000000000000000000000000000000003c0000000000000000000000000000000000000000000000000000000000000004000000000000000000000000000000000000000000000000000000000000000800000000000000000000000000000000000000000000000000000000000000003070b0e000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000030000000000000000000000000000000000000000000000000000000000000060000000000000000000000000000000000000000000000000000000000000022000000000000000000000000000000000000000000000000000000000000002a000000000000000000000000000000000000000000000000000000000000001a000000000000000000000000000000000000000000000000000000000000000200000000000000000000000001af3f329e8be154074d8769d1ffa4ee058b1dbc300000000000000000000000000000000000000000000000000000000000000800000000000000000000000000000000000000000000000001216f0a8cfb11c0000000000000000000000000000000000000000000000000011bbc6cf66c9333f0000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000002000000000000000000000000055d398326f99059ff775485246999027b319795500000000000000000000000000000000000000000000000000000000000000640000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000a0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000600000000000000000000000001af3f329e8be154074d8769d1ffa4ee058b1dbc300000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000006000000000000000000000000055d398326f99059ff775485246999027b3197955000000000000000000000000c590175e458b83680867afd273527ff58f74c02b0000000000000000000000000000000000000000000000000000000000000000756e69780000b2c5de0b0000000000000000000000000000000000002700000000000000000000000000000000000000000000000000000000000000000000000000000055d398326f99059ff775485246999027b3197955000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000600000000000000000000000000000000000000000000000000000000000000044a9059cbb000000000000000000000000e3478b0bb1a5084567c319096437924948be196400000000000000000000000000000000000000000000000000c66b933356b97400000000000000000000000000000000000000000000000000000000c001a051f4d753bffc4b5c529b3f5ec56cda2cb1f918c2369ac0f424e1961f47843b3ba0731ea4074073f695ce587551a1648e1c38cbd6f88f30ed5c1882348f1720a1b9", + "s": "0x731ea4074073f695ce587551a1648e1c38cbd6f88f30ed5c1882348f1720a1b9", + "status": "failed", + "time": 1778799569964, + "txParams": { + "data": "0xe9ae5c53010100000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000400000000000000000000000000000000000000000000000000000000000000fe00000000000000000000000000000000000000000000000000000000000000020000000000000000000000000000000000000000000000000000000000000000500000000000000000000000000000000000000000000000000000000000000a00000000000000000000000000000000000000000000000000000000000000180000000000000000000000000000000000000000000000000000000000000066000000000000000000000000000000000000000000000000000000000000007400000000000000000000000000000000000000000000000000000000000000ec0000000000000000000000000f8a0bf9cf54bb92f17374d9e9a321e6a111a51bd000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000600000000000000000000000000000000000000000000000000000000000000044095ea7b30000000000000000000000001a1ec25dc08e98e5e93f1104b5e5cdd298707d310000000000000000000000000000000000000000000000000298348bed9600b7000000000000000000000000000000000000000000000000000000000000000000000000000000001a1ec25dc08e98e5e93f1104b5e5cdd298707d310000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000004455f5755290000000000000000000000000000000000000000000000000000000000000080000000000000000000000000f8a0bf9cf54bb92f17374d9e9a321e6a111a51bd0000000000000000000000000000000000000000000000000298348bed9600b700000000000000000000000000000000000000000000000000000000000000c00000000000000000000000000000000000000000000000000000000000000018756e69737761705065726d69743246656544796e616d696300000000000000000000000000000000000000000000000000000000000000000000000000000360000000000000000000000000f8a0bf9cf54bb92f17374d9e9a321e6a111a51bd00000000000000000000000055d398326f99059ff775485246999027b31979550000000000000000000000000000000000000000000000000298348bed9600b70000000000000000000000000000000000000000000000001aafef9d42701d280000000000000000000000000000000000000000000000000000000000000120000000000000000000000000000000000000000000000000003d89b2d4ecc39e000000000000000000000000b28da7bc87a9dd1e60849aa7fcb5da24ea913c420000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000022e3593564c000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000000a0000000000000000000000000000000000000000000000000000000006a065aca00000000000000000000000000000000000000000000000000000000000000010000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000000000200000000000000000000000000000000000000000000000000000000000000120000000000000000000000000c590175e458b83680867afd273527ff58f74c02b0000000000000000000000000000000000000000000000000298348bed9600b70000000000000000000000000000000000000000000000001aef004978d5f9bd00000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000000000000000000000000000000010000000000000000000000000000000000000000000000000000000000000042f8a0bf9cf54bb92f17374d9e9a321e6a111a51bd0001f42170ed0880ac9a755fd29b2688956bd959f933f80001f455d398326f99059ff775485246999027b3197955000000000000000000000000000000000000000000000000000000000000756e69780000b2c5de0b000000000000000000000000000000000000180000000000000000000000000000000000000000000000000000000000000000000000000000001af3f329e8be154074d8769d1ffa4ee058b1dbc3000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000600000000000000000000000000000000000000000000000000000000000000044095ea7b30000000000000000000000001a1ec25dc08e98e5e93f1104b5e5cdd298707d31000000000000000000000000000000000000000000000000123fd18867a38000000000000000000000000000000000000000000000000000000000000000000000000000000000001a1ec25dc08e98e5e93f1104b5e5cdd298707d310000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000006e55f57552900000000000000000000000000000000000000000000000000000000000000800000000000000000000000001af3f329e8be154074d8769d1ffa4ee058b1dbc3000000000000000000000000000000000000000000000000123fd18867a3800000000000000000000000000000000000000000000000000000000000000000c00000000000000000000000000000000000000000000000000000000000000018756e69737761705065726d69743246656544796e616d6963000000000000000000000000000000000000000000000000000000000000000000000000000006000000000000000000000000001af3f329e8be154074d8769d1ffa4ee058b1dbc300000000000000000000000055d398326f99059ff775485246999027b31979550000000000000000000000000000000000000000000000001216f0a8cfb11c0000000000000000000000000000000000000000000000000011b9f5efe1ba2b5700000000000000000000000000000000000000000000000000000000000001200000000000000000000000000000000000000000000000000028e0df97f26400000000000000000000000000b28da7bc87a9dd1e60849aa7fcb5da24ea913c42000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000004ce3593564c000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000000a0000000000000000000000000000000000000000000000000000000006a065aca000000000000000000000000000000000000000000000000000000000000000110000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000002000000000000000000000000000000000000000000000000000000000000003c0000000000000000000000000000000000000000000000000000000000000004000000000000000000000000000000000000000000000000000000000000000800000000000000000000000000000000000000000000000000000000000000003070b0e000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000030000000000000000000000000000000000000000000000000000000000000060000000000000000000000000000000000000000000000000000000000000022000000000000000000000000000000000000000000000000000000000000002a000000000000000000000000000000000000000000000000000000000000001a000000000000000000000000000000000000000000000000000000000000000200000000000000000000000001af3f329e8be154074d8769d1ffa4ee058b1dbc300000000000000000000000000000000000000000000000000000000000000800000000000000000000000000000000000000000000000001216f0a8cfb11c0000000000000000000000000000000000000000000000000011bbc6cf66c9333f0000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000002000000000000000000000000055d398326f99059ff775485246999027b319795500000000000000000000000000000000000000000000000000000000000000640000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000a0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000600000000000000000000000001af3f329e8be154074d8769d1ffa4ee058b1dbc300000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000006000000000000000000000000055d398326f99059ff775485246999027b3197955000000000000000000000000c590175e458b83680867afd273527ff58f74c02b0000000000000000000000000000000000000000000000000000000000000000756e69780000b2c5de0b0000000000000000000000000000000000002700000000000000000000000000000000000000000000000000000000000000000000000000000055d398326f99059ff775485246999027b3197955000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000600000000000000000000000000000000000000000000000000000000000000044a9059cbb000000000000000000000000e3478b0bb1a5084567c319096437924948be196400000000000000000000000000000000000000000000000000c66b933356b97400000000000000000000000000000000000000000000000000000000", + "from": "0x141d32a89a1e0a5ef360034a2f60a4b917c18838", + "gas": "0x91664", + "maxFeePerGas": "0x3938700", + "maxPriorityFeePerGas": "0x3938700", + "nonce": "0x52", + "to": "0x141d32a89a1e0a5ef360034a2f60a4b917c18838", + "type": "0x2", + "value": "0x0" + }, + "type": "batch", + "userEditedGasLimit": false, + "v": "0x1", + "verifiedOnBlockchain": false + }, + { + "batchId": "0x19e28c59373", + "chainId": "0x38", + "delegationAddress": "0x63c0c19a282a1b52b07dd5a65b58948a07dae32b", + "error": { + "message": "RPC submit: gas=0 intrinsicGas=45520: invalid gas", + "name": "Error", + "stack": "Error: RPC submit: gas=0 intrinsicGas=45520: invalid gas\n at TransactionController._TransactionController_publishTransaction (chrome-extension://hebhblbkkdabgoldnojllkipeoacjioc/js-node_modules_metamask_s.js:60041:15)\n at async chrome-extension://hebhblbkkdabgoldnojllkipeoacjioc/js-node_modules_metamask_s.js:60727:47\n at async TransactionController._TransactionController_defaultPublishHook (chrome-extension://hebhblbkkdabgoldnojllkipeoacjioc/js-node_modules_metamask_s.js:60720:5)\n at async TransactionController._TransactionController_approveTransaction (chrome-extension://hebhblbkkdabgoldnojllkipeoacjioc/js-node_modules_metamask_s.js:59991:43)\n at async TransactionController._TransactionController_processApproval (chrome-extension://hebhblbkkdabgoldnojllkipeoacjioc/js-node_modules_metamask_s.js:59854:40)\n at async addTransactionBatchWith7702 (chrome-extension://hebhblbkkdabgoldnojllkipeoacjioc/js-node_modules_metamask_s.js:41175:29)\n at async addTransactionBatch (chrome-extension://hebhblbkkdabgoldnojllkipeoacjioc/js-node_modules_metamask_s.js:40973:20)\n at async TransactionController.addTransactionBatch (chrome-extension://hebhblbkkdabgoldnojllkipeoacjioc/js-node_modules_metamask_s.js:58615:16)\n at async addTransactionBatch (chrome-extension://hebhblbkkdabgoldnojllkipeoacjioc/js-node_modules_metamask_a.js:67563:25)\n at async submitBatchSellHandler (chrome-extension://hebhblbkkdabgoldnojllkipeoacjioc/js-node_modules_metamask_a.js:20661:33)" + }, + "gasFeeEstimates": { + "high": { + "maxFeePerGas": "0x2faf080", + "maxPriorityFeePerGas": "0x2faf080" + }, + "low": { + "maxFeePerGas": "0x2faf080", + "maxPriorityFeePerGas": "0x2faf080" + }, + "medium": { + "maxFeePerGas": "0x2faf080", + "maxPriorityFeePerGas": "0x2faf080" + }, + "type": "fee-market" + }, + "gasFeeEstimatesLoaded": true, + "id": "18f46f10-4fea-11f1-992c-0d4ef830a3e0", + "isExternalSign": false, + "isGasFeeIncluded": true, + "isGasFeeSponsored": false, + "isGasFeeTokenIgnoredIfBalance": true, + "nestedTransactions": [ + { + "data": "0x095ea7b30000000000000000000000001a1ec25dc08e98e5e93f1104b5e5cdd298707d310000000000000000000000000000000000000000000000000298348bed9600b7", + "from": "0x141d32a89a1e0a5ef360034a2f60a4b917c18838", + "gas": "0x110fa", + "maxFeePerGas": "0x3938700", + "maxPriorityFeePerGas": "0x3938700", + "to": "0xf8a0bf9cf54bb92f17374d9e9a321e6a111a51bd", + "type": "swapApproval", + "value": "0x0" + }, + { + "data": "0x5f5755290000000000000000000000000000000000000000000000000000000000000080000000000000000000000000f8a0bf9cf54bb92f17374d9e9a321e6a111a51bd0000000000000000000000000000000000000000000000000298348bed9600b700000000000000000000000000000000000000000000000000000000000000c0000000000000000000000000000000000000000000000000000000000000001b70616e63616b6553776170526f7574657246656544796e616d696300000000000000000000000000000000000000000000000000000000000000000000000220000000000000000000000000f8a0bf9cf54bb92f17374d9e9a321e6a111a51bd00000000000000000000000055d398326f99059ff775485246999027b31979550000000000000000000000000000000000000000000000000298348bed9600b70000000000000000000000000000000000000000000000001a80778579a98ba20000000000000000000000000000000000000000000000000000000000000120000000000000000000000000000000000000000000000000003d1c3d6ea02c25000000000000000000000000b28da7bc87a9dd1e60849aa7fcb5da24ea913c42000000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000000000e4472b43f30000000000000000000000000000000000000000000000000298348bed9600b70000000000000000000000000000000000000000000000001abf1804dae6254c0000000000000000000000000000000000000000000000000000000000000080000000000000000000000000c590175e458b83680867afd273527ff58f74c02b0000000000000000000000000000000000000000000000000000000000000002000000000000000000000000f8a0bf9cf54bb92f17374d9e9a321e6a111a51bd00000000000000000000000055d398326f99059ff775485246999027b319795500000000000000000000000000000000000000000000000000000000dd", + "from": "0x141d32a89a1e0a5ef360034a2f60a4b917c18838", + "gas": "0x59531", + "maxFeePerGas": "0x3938700", + "maxPriorityFeePerGas": "0x3938700", + "to": "0x1a1ec25DC08e98e5E93F1104B5e5cdD298707d31", + "type": "swap", + "value": "0x0" + }, + { + "data": "0x095ea7b30000000000000000000000001a1ec25dc08e98e5e93f1104b5e5cdd298707d31000000000000000000000000000000000000000000000000123fd18867a38000", + "from": "0x141d32a89a1e0a5ef360034a2f60a4b917c18838", + "gas": "0x110fa", + "maxFeePerGas": "0x3938700", + "maxPriorityFeePerGas": "0x3938700", + "to": "0x1af3f329e8be154074d8769d1ffa4ee058b1dbc3", + "type": "swapApproval", + "value": "0x0" + }, + { + "data": "0x5f57552900000000000000000000000000000000000000000000000000000000000000800000000000000000000000001af3f329e8be154074d8769d1ffa4ee058b1dbc3000000000000000000000000000000000000000000000000123fd18867a3800000000000000000000000000000000000000000000000000000000000000000c00000000000000000000000000000000000000000000000000000000000000018756e69737761705065726d69743246656544796e616d6963000000000000000000000000000000000000000000000000000000000000000000000000000006000000000000000000000000001af3f329e8be154074d8769d1ffa4ee058b1dbc300000000000000000000000055d398326f99059ff775485246999027b31979550000000000000000000000000000000000000000000000001216f0a8cfb11c0000000000000000000000000000000000000000000000000011b9f1a97f0d73c600000000000000000000000000000000000000000000000000000000000001200000000000000000000000000000000000000000000000000028e0df97f26400000000000000000000000000b28da7bc87a9dd1e60849aa7fcb5da24ea913c42000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000004ce3593564c000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000000a0000000000000000000000000000000000000000000000000000000006a065d61000000000000000000000000000000000000000000000000000000000000000110000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000002000000000000000000000000000000000000000000000000000000000000003c0000000000000000000000000000000000000000000000000000000000000004000000000000000000000000000000000000000000000000000000000000000800000000000000000000000000000000000000000000000000000000000000003070b0e000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000030000000000000000000000000000000000000000000000000000000000000060000000000000000000000000000000000000000000000000000000000000022000000000000000000000000000000000000000000000000000000000000002a000000000000000000000000000000000000000000000000000000000000001a000000000000000000000000000000000000000000000000000000000000000200000000000000000000000001af3f329e8be154074d8769d1ffa4ee058b1dbc300000000000000000000000000000000000000000000000000000000000000800000000000000000000000000000000000000000000000001216f0a8cfb11c0000000000000000000000000000000000000000000000000011bbc2889400585e0000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000002000000000000000000000000055d398326f99059ff775485246999027b319795500000000000000000000000000000000000000000000000000000000000000640000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000a0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000600000000000000000000000001af3f329e8be154074d8769d1ffa4ee058b1dbc300000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000006000000000000000000000000055d398326f99059ff775485246999027b3197955000000000000000000000000c590175e458b83680867afd273527ff58f74c02b0000000000000000000000000000000000000000000000000000000000000000756e69780000b2c5de0b000000000000000000000000000000000000c3", + "from": "0x141d32a89a1e0a5ef360034a2f60a4b917c18838", + "gas": "0x5d0d5", + "maxFeePerGas": "0x3938700", + "maxPriorityFeePerGas": "0x3938700", + "to": "0x1a1ec25DC08e98e5E93F1104B5e5cdD298707d31", + "type": "swap", + "value": "0x0" + }, + { + "data": "0xa9059cbb000000000000000000000000e3478b0bb1a5084567c319096437924948be196400000000000000000000000000000000000000000000000000b211f0989a6ab8", + "from": "0x141d32a89a1e0a5ef360034a2f60a4b917c18838", + "gas": "0xcc57", + "maxFeePerGas": "0x3938700", + "maxPriorityFeePerGas": "0x3938700", + "to": "0x55d398326f99059ff775485246999027b3197955", + "type": "transfer", + "value": "0x0" + } + ], + "networkClientId": "9a1eafde-5f04-434b-b011-e9de5c50baf0", + "origin": "metamask", + "r": "0xf93011d1aa0257cb6e3df31b50511710fd3e646b8abd4b897e6833f96701ba87", + "rawTx": "0x02f90f6e3852840393870084039387008094141d32a89a1e0a5ef360034a2f60a4b917c1883880b90f04e9ae5c53010100000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000400000000000000000000000000000000000000000000000000000000000000ea00000000000000000000000000000000000000000000000000000000000000020000000000000000000000000000000000000000000000000000000000000000500000000000000000000000000000000000000000000000000000000000000a00000000000000000000000000000000000000000000000000000000000000180000000000000000000000000000000000000000000000000000000000000052000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000000d80000000000000000000000000f8a0bf9cf54bb92f17374d9e9a321e6a111a51bd000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000600000000000000000000000000000000000000000000000000000000000000044095ea7b30000000000000000000000001a1ec25dc08e98e5e93f1104b5e5cdd298707d310000000000000000000000000000000000000000000000000298348bed9600b7000000000000000000000000000000000000000000000000000000000000000000000000000000001a1ec25dc08e98e5e93f1104b5e5cdd298707d310000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000003055f5755290000000000000000000000000000000000000000000000000000000000000080000000000000000000000000f8a0bf9cf54bb92f17374d9e9a321e6a111a51bd0000000000000000000000000000000000000000000000000298348bed9600b700000000000000000000000000000000000000000000000000000000000000c0000000000000000000000000000000000000000000000000000000000000001b70616e63616b6553776170526f7574657246656544796e616d696300000000000000000000000000000000000000000000000000000000000000000000000220000000000000000000000000f8a0bf9cf54bb92f17374d9e9a321e6a111a51bd00000000000000000000000055d398326f99059ff775485246999027b31979550000000000000000000000000000000000000000000000000298348bed9600b70000000000000000000000000000000000000000000000001a80778579a98ba20000000000000000000000000000000000000000000000000000000000000120000000000000000000000000000000000000000000000000003d1c3d6ea02c25000000000000000000000000b28da7bc87a9dd1e60849aa7fcb5da24ea913c42000000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000000000e4472b43f30000000000000000000000000000000000000000000000000298348bed9600b70000000000000000000000000000000000000000000000001abf1804dae6254c0000000000000000000000000000000000000000000000000000000000000080000000000000000000000000c590175e458b83680867afd273527ff58f74c02b0000000000000000000000000000000000000000000000000000000000000002000000000000000000000000f8a0bf9cf54bb92f17374d9e9a321e6a111a51bd00000000000000000000000055d398326f99059ff775485246999027b319795500000000000000000000000000000000000000000000000000000000dd0000000000000000000000000000000000000000000000000000000000000000000000000000001af3f329e8be154074d8769d1ffa4ee058b1dbc3000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000600000000000000000000000000000000000000000000000000000000000000044095ea7b30000000000000000000000001a1ec25dc08e98e5e93f1104b5e5cdd298707d31000000000000000000000000000000000000000000000000123fd18867a38000000000000000000000000000000000000000000000000000000000000000000000000000000000001a1ec25dc08e98e5e93f1104b5e5cdd298707d310000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000006e55f57552900000000000000000000000000000000000000000000000000000000000000800000000000000000000000001af3f329e8be154074d8769d1ffa4ee058b1dbc3000000000000000000000000000000000000000000000000123fd18867a3800000000000000000000000000000000000000000000000000000000000000000c00000000000000000000000000000000000000000000000000000000000000018756e69737761705065726d69743246656544796e616d6963000000000000000000000000000000000000000000000000000000000000000000000000000006000000000000000000000000001af3f329e8be154074d8769d1ffa4ee058b1dbc300000000000000000000000055d398326f99059ff775485246999027b31979550000000000000000000000000000000000000000000000001216f0a8cfb11c0000000000000000000000000000000000000000000000000011b9f1a97f0d73c600000000000000000000000000000000000000000000000000000000000001200000000000000000000000000000000000000000000000000028e0df97f26400000000000000000000000000b28da7bc87a9dd1e60849aa7fcb5da24ea913c42000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000004ce3593564c000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000000a0000000000000000000000000000000000000000000000000000000006a065d61000000000000000000000000000000000000000000000000000000000000000110000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000002000000000000000000000000000000000000000000000000000000000000003c0000000000000000000000000000000000000000000000000000000000000004000000000000000000000000000000000000000000000000000000000000000800000000000000000000000000000000000000000000000000000000000000003070b0e000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000030000000000000000000000000000000000000000000000000000000000000060000000000000000000000000000000000000000000000000000000000000022000000000000000000000000000000000000000000000000000000000000002a000000000000000000000000000000000000000000000000000000000000001a000000000000000000000000000000000000000000000000000000000000000200000000000000000000000001af3f329e8be154074d8769d1ffa4ee058b1dbc300000000000000000000000000000000000000000000000000000000000000800000000000000000000000000000000000000000000000001216f0a8cfb11c0000000000000000000000000000000000000000000000000011bbc2889400585e0000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000002000000000000000000000000055d398326f99059ff775485246999027b319795500000000000000000000000000000000000000000000000000000000000000640000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000a0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000600000000000000000000000001af3f329e8be154074d8769d1ffa4ee058b1dbc300000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000006000000000000000000000000055d398326f99059ff775485246999027b3197955000000000000000000000000c590175e458b83680867afd273527ff58f74c02b0000000000000000000000000000000000000000000000000000000000000000756e69780000b2c5de0b000000000000000000000000000000000000c300000000000000000000000000000000000000000000000000000000000000000000000000000055d398326f99059ff775485246999027b3197955000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000600000000000000000000000000000000000000000000000000000000000000044a9059cbb000000000000000000000000e3478b0bb1a5084567c319096437924948be196400000000000000000000000000000000000000000000000000b211f0989a6ab800000000000000000000000000000000000000000000000000000000c080a0f93011d1aa0257cb6e3df31b50511710fd3e646b8abd4b897e6833f96701ba87a02e7b5e6f9dde228d5b0786d45c2c8890e2aa166a16bcefb0616e497b5997a0d6", + "s": "0x2e7b5e6f9dde228d5b0786d45c2c8890e2aa166a16bcefb0616e497b5997a0d6", + "status": "failed", + "time": 1778800228481, + "txParams": { + "data": "0xe9ae5c53010100000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000400000000000000000000000000000000000000000000000000000000000000ea00000000000000000000000000000000000000000000000000000000000000020000000000000000000000000000000000000000000000000000000000000000500000000000000000000000000000000000000000000000000000000000000a00000000000000000000000000000000000000000000000000000000000000180000000000000000000000000000000000000000000000000000000000000052000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000000d80000000000000000000000000f8a0bf9cf54bb92f17374d9e9a321e6a111a51bd000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000600000000000000000000000000000000000000000000000000000000000000044095ea7b30000000000000000000000001a1ec25dc08e98e5e93f1104b5e5cdd298707d310000000000000000000000000000000000000000000000000298348bed9600b7000000000000000000000000000000000000000000000000000000000000000000000000000000001a1ec25dc08e98e5e93f1104b5e5cdd298707d310000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000003055f5755290000000000000000000000000000000000000000000000000000000000000080000000000000000000000000f8a0bf9cf54bb92f17374d9e9a321e6a111a51bd0000000000000000000000000000000000000000000000000298348bed9600b700000000000000000000000000000000000000000000000000000000000000c0000000000000000000000000000000000000000000000000000000000000001b70616e63616b6553776170526f7574657246656544796e616d696300000000000000000000000000000000000000000000000000000000000000000000000220000000000000000000000000f8a0bf9cf54bb92f17374d9e9a321e6a111a51bd00000000000000000000000055d398326f99059ff775485246999027b31979550000000000000000000000000000000000000000000000000298348bed9600b70000000000000000000000000000000000000000000000001a80778579a98ba20000000000000000000000000000000000000000000000000000000000000120000000000000000000000000000000000000000000000000003d1c3d6ea02c25000000000000000000000000b28da7bc87a9dd1e60849aa7fcb5da24ea913c42000000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000000000e4472b43f30000000000000000000000000000000000000000000000000298348bed9600b70000000000000000000000000000000000000000000000001abf1804dae6254c0000000000000000000000000000000000000000000000000000000000000080000000000000000000000000c590175e458b83680867afd273527ff58f74c02b0000000000000000000000000000000000000000000000000000000000000002000000000000000000000000f8a0bf9cf54bb92f17374d9e9a321e6a111a51bd00000000000000000000000055d398326f99059ff775485246999027b319795500000000000000000000000000000000000000000000000000000000dd0000000000000000000000000000000000000000000000000000000000000000000000000000001af3f329e8be154074d8769d1ffa4ee058b1dbc3000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000600000000000000000000000000000000000000000000000000000000000000044095ea7b30000000000000000000000001a1ec25dc08e98e5e93f1104b5e5cdd298707d31000000000000000000000000000000000000000000000000123fd18867a38000000000000000000000000000000000000000000000000000000000000000000000000000000000001a1ec25dc08e98e5e93f1104b5e5cdd298707d310000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000006e55f57552900000000000000000000000000000000000000000000000000000000000000800000000000000000000000001af3f329e8be154074d8769d1ffa4ee058b1dbc3000000000000000000000000000000000000000000000000123fd18867a3800000000000000000000000000000000000000000000000000000000000000000c00000000000000000000000000000000000000000000000000000000000000018756e69737761705065726d69743246656544796e616d6963000000000000000000000000000000000000000000000000000000000000000000000000000006000000000000000000000000001af3f329e8be154074d8769d1ffa4ee058b1dbc300000000000000000000000055d398326f99059ff775485246999027b31979550000000000000000000000000000000000000000000000001216f0a8cfb11c0000000000000000000000000000000000000000000000000011b9f1a97f0d73c600000000000000000000000000000000000000000000000000000000000001200000000000000000000000000000000000000000000000000028e0df97f26400000000000000000000000000b28da7bc87a9dd1e60849aa7fcb5da24ea913c42000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000004ce3593564c000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000000a0000000000000000000000000000000000000000000000000000000006a065d61000000000000000000000000000000000000000000000000000000000000000110000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000002000000000000000000000000000000000000000000000000000000000000003c0000000000000000000000000000000000000000000000000000000000000004000000000000000000000000000000000000000000000000000000000000000800000000000000000000000000000000000000000000000000000000000000003070b0e000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000030000000000000000000000000000000000000000000000000000000000000060000000000000000000000000000000000000000000000000000000000000022000000000000000000000000000000000000000000000000000000000000002a000000000000000000000000000000000000000000000000000000000000001a000000000000000000000000000000000000000000000000000000000000000200000000000000000000000001af3f329e8be154074d8769d1ffa4ee058b1dbc300000000000000000000000000000000000000000000000000000000000000800000000000000000000000000000000000000000000000001216f0a8cfb11c0000000000000000000000000000000000000000000000000011bbc2889400585e0000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000002000000000000000000000000055d398326f99059ff775485246999027b319795500000000000000000000000000000000000000000000000000000000000000640000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000a0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000600000000000000000000000001af3f329e8be154074d8769d1ffa4ee058b1dbc300000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000006000000000000000000000000055d398326f99059ff775485246999027b3197955000000000000000000000000c590175e458b83680867afd273527ff58f74c02b0000000000000000000000000000000000000000000000000000000000000000756e69780000b2c5de0b000000000000000000000000000000000000c300000000000000000000000000000000000000000000000000000000000000000000000000000055d398326f99059ff775485246999027b3197955000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000600000000000000000000000000000000000000000000000000000000000000044a9059cbb000000000000000000000000e3478b0bb1a5084567c319096437924948be196400000000000000000000000000000000000000000000000000b211f0989a6ab800000000000000000000000000000000000000000000000000000000", + "from": "0x141d32a89a1e0a5ef360034a2f60a4b917c18838", + "gas": "0x7f334", + "maxFeePerGas": "0x3938700", + "maxPriorityFeePerGas": "0x3938700", + "nonce": "0x52", + "to": "0x141d32a89a1e0a5ef360034a2f60a4b917c18838", + "type": "0x2", + "value": "0x0" + }, + "type": "batch", + "userEditedGasLimit": false, + "v": "0x0", + "verifiedOnBlockchain": false + }, + { + "batchId": "0x19e28d0e1e9", + "chainId": "0x38", + "defaultGasEstimates": { + "estimateType": "medium", + "gas": "0x91639", + "maxFeePerGas": "0x3938700", + "maxPriorityFeePerGas": "0x3938700" + }, + "delegationAddress": "0x63c0c19a282a1b52b07dd5a65b58948a07dae32b", + "error": { + "message": "Gas fee token not found and insufficient native balance", + "name": "Error", + "stack": "Error: Gas fee token not found and insufficient native balance\n at checkGasFeeTokenBeforePublish (chrome-extension://hebhblbkkdabgoldnojllkipeoacjioc/js-node_modules_metamask_s.js:50763:15)\n at async TransactionController._TransactionController_signTransaction (chrome-extension://hebhblbkkdabgoldnojllkipeoacjioc/js-node_modules_metamask_s.js:60276:5)\n at async TransactionController._TransactionController_approveTransaction (chrome-extension://hebhblbkkdabgoldnojllkipeoacjioc/js-node_modules_metamask_s.js:59945:23)\n at async TransactionController._TransactionController_processApproval (chrome-extension://hebhblbkkdabgoldnojllkipeoacjioc/js-node_modules_metamask_s.js:59854:40)\n at async addTransactionBatchWith7702 (chrome-extension://hebhblbkkdabgoldnojllkipeoacjioc/js-node_modules_metamask_s.js:41175:29)\n at async addTransactionBatch (chrome-extension://hebhblbkkdabgoldnojllkipeoacjioc/js-node_modules_metamask_s.js:40973:20)\n at async TransactionController.addTransactionBatch (chrome-extension://hebhblbkkdabgoldnojllkipeoacjioc/js-node_modules_metamask_s.js:58615:16)\n at async addTransactionBatch (chrome-extension://hebhblbkkdabgoldnojllkipeoacjioc/js-node_modules_metamask_a.js:67563:25)\n at async submitBatchSellHandler (chrome-extension://hebhblbkkdabgoldnojllkipeoacjioc/js-node_modules_metamask_a.js:20661:33)\n at async BridgeStatusController. (chrome-extension://hebhblbkkdabgoldnojllkipeoacjioc/js-node_modules_metamask_a.js:53097:46)" + }, + "gasFeeEstimates": { + "high": { + "maxFeePerGas": "0x2faf080", + "maxPriorityFeePerGas": "0x2faf080" + }, + "low": { + "maxFeePerGas": "0x2faf080", + "maxPriorityFeePerGas": "0x2faf080" + }, + "medium": { + "maxFeePerGas": "0x2faf080", + "maxPriorityFeePerGas": "0x2faf080" + }, + "type": "fee-market" + }, + "gasFeeEstimatesLoaded": true, + "gasFeeTokens": [], + "gasLimitNoBuffer": "0x91639", + "id": "7db3e840-4fea-11f1-9eaf-6d41ddad5d97", + "isExternalSign": true, + "isGasFeeIncluded": true, + "isGasFeeSponsored": false, + "isGasFeeTokenIgnoredIfBalance": true, + "nestedTransactions": [ + { + "data": "0x095ea7b30000000000000000000000001a1ec25dc08e98e5e93f1104b5e5cdd298707d310000000000000000000000000000000000000000000000000298348bed9600b7", + "from": "0x141d32a89a1e0a5ef360034a2f60a4b917c18838", + "gas": "0x110fa", + "maxFeePerGas": "0x3938700", + "maxPriorityFeePerGas": "0x3938700", + "to": "0xf8a0bf9cf54bb92f17374d9e9a321e6a111a51bd", + "type": "swapApproval", + "value": "0x0" + }, + { + "data": "0x5f5755290000000000000000000000000000000000000000000000000000000000000080000000000000000000000000f8a0bf9cf54bb92f17374d9e9a321e6a111a51bd0000000000000000000000000000000000000000000000000298348bed9600b700000000000000000000000000000000000000000000000000000000000000c00000000000000000000000000000000000000000000000000000000000000018756e69737761705065726d69743246656544796e616d696300000000000000000000000000000000000000000000000000000000000000000000000000000360000000000000000000000000f8a0bf9cf54bb92f17374d9e9a321e6a111a51bd00000000000000000000000055d398326f99059ff775485246999027b31979550000000000000000000000000000000000000000000000000298348bed9600b70000000000000000000000000000000000000000000000001a8e09b3111a01c70000000000000000000000000000000000000000000000000000000000000120000000000000000000000000000000000000000000000000003d3b8881edf8ba000000000000000000000000b28da7bc87a9dd1e60849aa7fcb5da24ea913c420000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000022e3593564c000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000000a0000000000000000000000000000000000000000000000000000000006a065e1100000000000000000000000000000000000000000000000000000000000000010000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000000000200000000000000000000000000000000000000000000000000000000000000120000000000000000000000000c590175e458b83680867afd273527ff58f74c02b0000000000000000000000000000000000000000000000000298348bed9600b70000000000000000000000000000000000000000000000001accca44571f98b700000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000000000000000000000000000000010000000000000000000000000000000000000000000000000000000000000042f8a0bf9cf54bb92f17374d9e9a321e6a111a51bd0001f42170ed0880ac9a755fd29b2688956bd959f933f80001f455d398326f99059ff775485246999027b3197955000000000000000000000000000000000000000000000000000000000000756e69780000b2c5de0b000000000000000000000000000000000000ca", + "from": "0x141d32a89a1e0a5ef360034a2f60a4b917c18838", + "gas": "0x793cd", + "maxFeePerGas": "0x3938700", + "maxPriorityFeePerGas": "0x3938700", + "to": "0x1a1ec25DC08e98e5E93F1104B5e5cdD298707d31", + "type": "swap", + "value": "0x0" + }, + { + "data": "0x095ea7b30000000000000000000000001a1ec25dc08e98e5e93f1104b5e5cdd298707d31000000000000000000000000000000000000000000000000123fd18867a38000", + "from": "0x141d32a89a1e0a5ef360034a2f60a4b917c18838", + "gas": "0x110fa", + "maxFeePerGas": "0x3938700", + "maxPriorityFeePerGas": "0x3938700", + "to": "0x1af3f329e8be154074d8769d1ffa4ee058b1dbc3", + "type": "swapApproval", + "value": "0x0" + }, + { + "data": "0x5f57552900000000000000000000000000000000000000000000000000000000000000800000000000000000000000001af3f329e8be154074d8769d1ffa4ee058b1dbc3000000000000000000000000000000000000000000000000123fd18867a3800000000000000000000000000000000000000000000000000000000000000000c00000000000000000000000000000000000000000000000000000000000000018756e69737761705065726d69743246656544796e616d6963000000000000000000000000000000000000000000000000000000000000000000000000000006000000000000000000000000001af3f329e8be154074d8769d1ffa4ee058b1dbc300000000000000000000000055d398326f99059ff775485246999027b31979550000000000000000000000000000000000000000000000001216f0a8cfb11c0000000000000000000000000000000000000000000000000011b9f1a97f0d73c600000000000000000000000000000000000000000000000000000000000001200000000000000000000000000000000000000000000000000028e0df97f26400000000000000000000000000b28da7bc87a9dd1e60849aa7fcb5da24ea913c42000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000004ce3593564c000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000000a0000000000000000000000000000000000000000000000000000000006a065e11000000000000000000000000000000000000000000000000000000000000000110000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000002000000000000000000000000000000000000000000000000000000000000003c0000000000000000000000000000000000000000000000000000000000000004000000000000000000000000000000000000000000000000000000000000000800000000000000000000000000000000000000000000000000000000000000003070b0e000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000030000000000000000000000000000000000000000000000000000000000000060000000000000000000000000000000000000000000000000000000000000022000000000000000000000000000000000000000000000000000000000000002a000000000000000000000000000000000000000000000000000000000000001a000000000000000000000000000000000000000000000000000000000000000200000000000000000000000001af3f329e8be154074d8769d1ffa4ee058b1dbc300000000000000000000000000000000000000000000000000000000000000800000000000000000000000000000000000000000000000001216f0a8cfb11c0000000000000000000000000000000000000000000000000011bbc2889400585e0000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000002000000000000000000000000055d398326f99059ff775485246999027b319795500000000000000000000000000000000000000000000000000000000000000640000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000a0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000600000000000000000000000001af3f329e8be154074d8769d1ffa4ee058b1dbc300000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000006000000000000000000000000055d398326f99059ff775485246999027b3197955000000000000000000000000c590175e458b83680867afd273527ff58f74c02b0000000000000000000000000000000000000000000000000000000000000000756e69780000b2c5de0b0000000000000000000000000000000000008b", + "from": "0x141d32a89a1e0a5ef360034a2f60a4b917c18838", + "gas": "0x5d0d5", + "maxFeePerGas": "0x3938700", + "maxPriorityFeePerGas": "0x3938700", + "to": "0x1a1ec25DC08e98e5E93F1104B5e5cdD298707d31", + "type": "swap", + "value": "0x0" + }, + { + "data": "0xa9059cbb000000000000000000000000e3478b0bb1a5084567c319096437924948be196400000000000000000000000000000000000000000000000000c6260e1199aa22", + "from": "0x141d32a89a1e0a5ef360034a2f60a4b917c18838", + "gas": "0xcc57", + "maxFeePerGas": "0x3938700", + "maxPriorityFeePerGas": "0x3938700", + "to": "0x55d398326f99059ff775485246999027b3197955", + "type": "transfer", + "value": "0x0" + } + ], + "networkClientId": "9a1eafde-5f04-434b-b011-e9de5c50baf0", + "origin": "metamask", + "originalGasEstimate": "0x91639", + "selectedGasFeeToken": "0x55d398326f99059ff775485246999027b3197955", + "status": "failed", + "time": 1778800397508, + "txParams": { + "data": "0xe9ae5c53010100000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000400000000000000000000000000000000000000000000000000000000000000fe00000000000000000000000000000000000000000000000000000000000000020000000000000000000000000000000000000000000000000000000000000000500000000000000000000000000000000000000000000000000000000000000a00000000000000000000000000000000000000000000000000000000000000180000000000000000000000000000000000000000000000000000000000000066000000000000000000000000000000000000000000000000000000000000007400000000000000000000000000000000000000000000000000000000000000ec0000000000000000000000000f8a0bf9cf54bb92f17374d9e9a321e6a111a51bd000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000600000000000000000000000000000000000000000000000000000000000000044095ea7b30000000000000000000000001a1ec25dc08e98e5e93f1104b5e5cdd298707d310000000000000000000000000000000000000000000000000298348bed9600b7000000000000000000000000000000000000000000000000000000000000000000000000000000001a1ec25dc08e98e5e93f1104b5e5cdd298707d310000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000004455f5755290000000000000000000000000000000000000000000000000000000000000080000000000000000000000000f8a0bf9cf54bb92f17374d9e9a321e6a111a51bd0000000000000000000000000000000000000000000000000298348bed9600b700000000000000000000000000000000000000000000000000000000000000c00000000000000000000000000000000000000000000000000000000000000018756e69737761705065726d69743246656544796e616d696300000000000000000000000000000000000000000000000000000000000000000000000000000360000000000000000000000000f8a0bf9cf54bb92f17374d9e9a321e6a111a51bd00000000000000000000000055d398326f99059ff775485246999027b31979550000000000000000000000000000000000000000000000000298348bed9600b70000000000000000000000000000000000000000000000001a8e09b3111a01c70000000000000000000000000000000000000000000000000000000000000120000000000000000000000000000000000000000000000000003d3b8881edf8ba000000000000000000000000b28da7bc87a9dd1e60849aa7fcb5da24ea913c420000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000022e3593564c000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000000a0000000000000000000000000000000000000000000000000000000006a065e1100000000000000000000000000000000000000000000000000000000000000010000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000000000200000000000000000000000000000000000000000000000000000000000000120000000000000000000000000c590175e458b83680867afd273527ff58f74c02b0000000000000000000000000000000000000000000000000298348bed9600b70000000000000000000000000000000000000000000000001accca44571f98b700000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000000000000000000000000000000010000000000000000000000000000000000000000000000000000000000000042f8a0bf9cf54bb92f17374d9e9a321e6a111a51bd0001f42170ed0880ac9a755fd29b2688956bd959f933f80001f455d398326f99059ff775485246999027b3197955000000000000000000000000000000000000000000000000000000000000756e69780000b2c5de0b000000000000000000000000000000000000ca0000000000000000000000000000000000000000000000000000000000000000000000000000001af3f329e8be154074d8769d1ffa4ee058b1dbc3000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000600000000000000000000000000000000000000000000000000000000000000044095ea7b30000000000000000000000001a1ec25dc08e98e5e93f1104b5e5cdd298707d31000000000000000000000000000000000000000000000000123fd18867a38000000000000000000000000000000000000000000000000000000000000000000000000000000000001a1ec25dc08e98e5e93f1104b5e5cdd298707d310000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000006e55f57552900000000000000000000000000000000000000000000000000000000000000800000000000000000000000001af3f329e8be154074d8769d1ffa4ee058b1dbc3000000000000000000000000000000000000000000000000123fd18867a3800000000000000000000000000000000000000000000000000000000000000000c00000000000000000000000000000000000000000000000000000000000000018756e69737761705065726d69743246656544796e616d6963000000000000000000000000000000000000000000000000000000000000000000000000000006000000000000000000000000001af3f329e8be154074d8769d1ffa4ee058b1dbc300000000000000000000000055d398326f99059ff775485246999027b31979550000000000000000000000000000000000000000000000001216f0a8cfb11c0000000000000000000000000000000000000000000000000011b9f1a97f0d73c600000000000000000000000000000000000000000000000000000000000001200000000000000000000000000000000000000000000000000028e0df97f26400000000000000000000000000b28da7bc87a9dd1e60849aa7fcb5da24ea913c42000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000004ce3593564c000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000000a0000000000000000000000000000000000000000000000000000000006a065e11000000000000000000000000000000000000000000000000000000000000000110000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000002000000000000000000000000000000000000000000000000000000000000003c0000000000000000000000000000000000000000000000000000000000000004000000000000000000000000000000000000000000000000000000000000000800000000000000000000000000000000000000000000000000000000000000003070b0e000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000030000000000000000000000000000000000000000000000000000000000000060000000000000000000000000000000000000000000000000000000000000022000000000000000000000000000000000000000000000000000000000000002a000000000000000000000000000000000000000000000000000000000000001a000000000000000000000000000000000000000000000000000000000000000200000000000000000000000001af3f329e8be154074d8769d1ffa4ee058b1dbc300000000000000000000000000000000000000000000000000000000000000800000000000000000000000000000000000000000000000001216f0a8cfb11c0000000000000000000000000000000000000000000000000011bbc2889400585e0000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000002000000000000000000000000055d398326f99059ff775485246999027b319795500000000000000000000000000000000000000000000000000000000000000640000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000a0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000600000000000000000000000001af3f329e8be154074d8769d1ffa4ee058b1dbc300000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000006000000000000000000000000055d398326f99059ff775485246999027b3197955000000000000000000000000c590175e458b83680867afd273527ff58f74c02b0000000000000000000000000000000000000000000000000000000000000000756e69780000b2c5de0b0000000000000000000000000000000000008b00000000000000000000000000000000000000000000000000000000000000000000000000000055d398326f99059ff775485246999027b3197955000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000600000000000000000000000000000000000000000000000000000000000000044a9059cbb000000000000000000000000e3478b0bb1a5084567c319096437924948be196400000000000000000000000000000000000000000000000000c6260e1199aa2200000000000000000000000000000000000000000000000000000000", + "from": "0x141d32a89a1e0a5ef360034a2f60a4b917c18838", + "gas": "0x91639", + "gasLimit": "0x91639", + "maxFeePerGas": "0x3938700", + "maxPriorityFeePerGas": "0x3938700", + "to": "0x141d32a89a1e0a5ef360034a2f60a4b917c18838", + "type": "0x2", + "value": "0x0" + }, + "type": "batch", + "userEditedGasLimit": false, + "userFeeLevel": "medium", + "verifiedOnBlockchain": false + }, + { + "batchId": "0x19e28ccbae0", + "chainId": "0x38", + "defaultGasEstimates": { + "estimateType": "medium", + "gas": "0x85bfd", + "maxFeePerGas": "0x3938700", + "maxPriorityFeePerGas": "0x3938700" + }, + "delegationAddress": "0x63c0c19a282a1b52b07dd5a65b58948a07dae32b", + "error": { + "message": "RPC submit: gas required exceeds allowance (421519)", + "name": "Error", + "stack": "Error: RPC submit: gas required exceeds allowance (421519)\n at TransactionController._TransactionController_publishTransaction (chrome-extension://hebhblbkkdabgoldnojllkipeoacjioc/js-node_modules_metamask_s.js:60041:15)\n at async chrome-extension://hebhblbkkdabgoldnojllkipeoacjioc/js-node_modules_metamask_s.js:60727:47\n at async TransactionController._TransactionController_defaultPublishHook (chrome-extension://hebhblbkkdabgoldnojllkipeoacjioc/js-node_modules_metamask_s.js:60720:5)\n at async TransactionController._TransactionController_approveTransaction (chrome-extension://hebhblbkkdabgoldnojllkipeoacjioc/js-node_modules_metamask_s.js:59991:43)\n at async TransactionController._TransactionController_processApproval (chrome-extension://hebhblbkkdabgoldnojllkipeoacjioc/js-node_modules_metamask_s.js:59854:40)\n at async addTransactionBatchWith7702 (chrome-extension://hebhblbkkdabgoldnojllkipeoacjioc/js-node_modules_metamask_s.js:41175:29)\n at async addTransactionBatch (chrome-extension://hebhblbkkdabgoldnojllkipeoacjioc/js-node_modules_metamask_s.js:40973:20)\n at async TransactionController.addTransactionBatch (chrome-extension://hebhblbkkdabgoldnojllkipeoacjioc/js-node_modules_metamask_s.js:58615:16)\n at async addTransactionBatch (chrome-extension://hebhblbkkdabgoldnojllkipeoacjioc/js-node_modules_metamask_a.js:67563:25)\n at async submitBatchSellHandler (chrome-extension://hebhblbkkdabgoldnojllkipeoacjioc/js-node_modules_metamask_a.js:20661:33)" + }, + "excludeNativeTokenForFee": true, + "gasFeeEstimates": { + "high": { + "maxFeePerGas": "0x2faf080", + "maxPriorityFeePerGas": "0x2faf080" + }, + "low": { + "maxFeePerGas": "0x2faf080", + "maxPriorityFeePerGas": "0x2faf080" + }, + "medium": { + "maxFeePerGas": "0x2faf080", + "maxPriorityFeePerGas": "0x2faf080" + }, + "type": "fee-market" + }, + "gasFeeEstimatesLoaded": true, + "gasLimitNoBuffer": "0x85bfd", + "id": "a116a240-4feb-11f1-8f78-ef6a792329b2", + "isGasFeeIncluded": true, + "isGasFeeSponsored": false, + "isGasFeeTokenIgnoredIfBalance": false, + "nestedTransactions": [ + { + "data": "0x095ea7b30000000000000000000000001a1ec25dc08e98e5e93f1104b5e5cdd298707d310000000000000000000000000000000000000000000000000298348bed9600b7", + "from": "0x141d32a89a1e0a5ef360034a2f60a4b917c18838", + "gas": "0x110fa", + "maxFeePerGas": "0x3938700", + "maxPriorityFeePerGas": "0x3938700", + "to": "0xf8a0bf9cf54bb92f17374d9e9a321e6a111a51bd", + "type": "swapApproval", + "value": "0x0" + }, + { + "data": "0x5f5755290000000000000000000000000000000000000000000000000000000000000080000000000000000000000000f8a0bf9cf54bb92f17374d9e9a321e6a111a51bd0000000000000000000000000000000000000000000000000298348bed9600b700000000000000000000000000000000000000000000000000000000000000c00000000000000000000000000000000000000000000000000000000000000018756e69737761705065726d69743246656544796e616d6963000000000000000000000000000000000000000000000000000000000000000000000000000006e0000000000000000000000000f8a0bf9cf54bb92f17374d9e9a321e6a111a51bd00000000000000000000000055d398326f99059ff775485246999027b31979550000000000000000000000000000000000000000000000000298348bed9600b70000000000000000000000000000000000000000000000001a85e40d6281a5430000000000000000000000000000000000000000000000000000000000000120000000000000000000000000000000000000000000000000003d28bf3b986359000000000000000000000000b28da7bc87a9dd1e60849aa7fcb5da24ea913c42000000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000000005ae3593564c000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000000a0000000000000000000000000000000000000000000000000000000006a065ff8000000000000000000000000000000000000000000000000000000000000000110000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000002000000000000000000000000000000000000000000000000000000000000004a0000000000000000000000000000000000000000000000000000000000000004000000000000000000000000000000000000000000000000000000000000000800000000000000000000000000000000000000000000000000000000000000003070b0e0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000300000000000000000000000000000000000000000000000000000000000000600000000000000000000000000000000000000000000000000000000000000300000000000000000000000000000000000000000000000000000000000000038000000000000000000000000000000000000000000000000000000000000002800000000000000000000000000000000000000000000000000000000000000020000000000000000000000000f8a0bf9cf54bb92f17374d9e9a321e6a111a51bd00000000000000000000000000000000000000000000000000000000000000800000000000000000000000000000000000000000000000000298348bed9600b70000000000000000000000000000000000000000000000001ac4915e06ffbdb00000000000000000000000000000000000000000000000000000000000000002000000000000000000000000000000000000000000000000000000000000004000000000000000000000000000000000000000000000000000000000000001000000000000000000000000008ac76a51cc950d9822d68b83fe1ad97b32cd580d0000000000000000000000000000000000000000000000000000000000000bb8000000000000000000000000000000000000000000000000000000000000003c000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000a0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000055d398326f99059ff775485246999027b319795500000000000000000000000000000000000000000000000000000000000000020000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000060000000000000000000000000f8a0bf9cf54bb92f17374d9e9a321e6a111a51bd00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000006000000000000000000000000055d398326f99059ff775485246999027b3197955000000000000000000000000c590175e458b83680867afd273527ff58f74c02b0000000000000000000000000000000000000000000000000000000000000000756e69780000b2c5de0b000000000000000000000000000000000000dc", + "from": "0x141d32a89a1e0a5ef360034a2f60a4b917c18838", + "gas": "0x6a37c", + "maxFeePerGas": "0x3938700", + "maxPriorityFeePerGas": "0x3938700", + "to": "0x1a1ec25DC08e98e5E93F1104B5e5cdD298707d31", + "type": "swap", + "value": "0x0" + }, + { + "data": "0x095ea7b30000000000000000000000001a1ec25dc08e98e5e93f1104b5e5cdd298707d31000000000000000000000000000000000000000000000000123fd18867a38000", + "from": "0x141d32a89a1e0a5ef360034a2f60a4b917c18838", + "gas": "0x110fa", + "maxFeePerGas": "0x3938700", + "maxPriorityFeePerGas": "0x3938700", + "to": "0x1af3f329e8be154074d8769d1ffa4ee058b1dbc3", + "type": "swapApproval", + "value": "0x0" + }, + { + "data": "0x5f57552900000000000000000000000000000000000000000000000000000000000000800000000000000000000000001af3f329e8be154074d8769d1ffa4ee058b1dbc3000000000000000000000000000000000000000000000000123fd18867a3800000000000000000000000000000000000000000000000000000000000000000c00000000000000000000000000000000000000000000000000000000000000018756e69737761705065726d69743246656544796e616d6963000000000000000000000000000000000000000000000000000000000000000000000000000006000000000000000000000000001af3f329e8be154074d8769d1ffa4ee058b1dbc300000000000000000000000055d398326f99059ff775485246999027b31979550000000000000000000000000000000000000000000000001216f0a8cfb11c0000000000000000000000000000000000000000000000000011b9f041e18f6fb800000000000000000000000000000000000000000000000000000000000001200000000000000000000000000000000000000000000000000028e0df97f26400000000000000000000000000b28da7bc87a9dd1e60849aa7fcb5da24ea913c42000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000004ce3593564c000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000000a0000000000000000000000000000000000000000000000000000000006a065ff7000000000000000000000000000000000000000000000000000000000000000110000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000002000000000000000000000000000000000000000000000000000000000000003c0000000000000000000000000000000000000000000000000000000000000004000000000000000000000000000000000000000000000000000000000000000800000000000000000000000000000000000000000000000000000000000000003070b0e000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000030000000000000000000000000000000000000000000000000000000000000060000000000000000000000000000000000000000000000000000000000000022000000000000000000000000000000000000000000000000000000000000002a000000000000000000000000000000000000000000000000000000000000001a000000000000000000000000000000000000000000000000000000000000000200000000000000000000000001af3f329e8be154074d8769d1ffa4ee058b1dbc300000000000000000000000000000000000000000000000000000000000000800000000000000000000000000000000000000000000000001216f0a8cfb11c0000000000000000000000000000000000000000000000000011bbc120d1ab75cf0000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000002000000000000000000000000055d398326f99059ff775485246999027b319795500000000000000000000000000000000000000000000000000000000000000640000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000a0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000600000000000000000000000001af3f329e8be154074d8769d1ffa4ee058b1dbc300000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000006000000000000000000000000055d398326f99059ff775485246999027b3197955000000000000000000000000c590175e458b83680867afd273527ff58f74c02b0000000000000000000000000000000000000000000000000000000000000000756e69780000b2c5de0b000000000000000000000000000000000000c1", + "from": "0x141d32a89a1e0a5ef360034a2f60a4b917c18838", + "gas": "0x5d0e7", + "maxFeePerGas": "0x3938700", + "maxPriorityFeePerGas": "0x3938700", + "to": "0x1a1ec25DC08e98e5E93F1104B5e5cdD298707d31", + "type": "swap", + "value": "0x0" + }, + { + "data": "0xa9059cbb000000000000000000000000e3478b0bb1a5084567c319096437924948be196400000000000000000000000000000000000000000000000000c1178274cf4230", + "from": "0x141d32a89a1e0a5ef360034a2f60a4b917c18838", + "gas": "0xcc57", + "maxFeePerGas": "0x3938700", + "maxPriorityFeePerGas": "0x3938700", + "to": "0x55d398326f99059ff775485246999027b3197955", + "type": "transfer", + "value": "0x0" + } + ], + "networkClientId": "9a1eafde-5f04-434b-b011-e9de5c50baf0", + "origin": "metamask", + "originalGasEstimate": "0x85bfd", + "r": "0x399313380120ebd55bb958c9a0cd2da8fb043745978a52fa17b95c302866c556", + "rawTx": "0x02f9143138528403938700840393870083085bfd94141d32a89a1e0a5ef360034a2f60a4b917c1883880b913c4e9ae5c530101000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000004000000000000000000000000000000000000000000000000000000000000013600000000000000000000000000000000000000000000000000000000000000020000000000000000000000000000000000000000000000000000000000000000500000000000000000000000000000000000000000000000000000000000000a0000000000000000000000000000000000000000000000000000000000000018000000000000000000000000000000000000000000000000000000000000009e00000000000000000000000000000000000000000000000000000000000000ac00000000000000000000000000000000000000000000000000000000000001240000000000000000000000000f8a0bf9cf54bb92f17374d9e9a321e6a111a51bd000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000600000000000000000000000000000000000000000000000000000000000000044095ea7b30000000000000000000000001a1ec25dc08e98e5e93f1104b5e5cdd298707d310000000000000000000000000000000000000000000000000298348bed9600b7000000000000000000000000000000000000000000000000000000000000000000000000000000001a1ec25dc08e98e5e93f1104b5e5cdd298707d310000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000007c55f5755290000000000000000000000000000000000000000000000000000000000000080000000000000000000000000f8a0bf9cf54bb92f17374d9e9a321e6a111a51bd0000000000000000000000000000000000000000000000000298348bed9600b700000000000000000000000000000000000000000000000000000000000000c00000000000000000000000000000000000000000000000000000000000000018756e69737761705065726d69743246656544796e616d6963000000000000000000000000000000000000000000000000000000000000000000000000000006e0000000000000000000000000f8a0bf9cf54bb92f17374d9e9a321e6a111a51bd00000000000000000000000055d398326f99059ff775485246999027b31979550000000000000000000000000000000000000000000000000298348bed9600b70000000000000000000000000000000000000000000000001a85e40d6281a5430000000000000000000000000000000000000000000000000000000000000120000000000000000000000000000000000000000000000000003d28bf3b986359000000000000000000000000b28da7bc87a9dd1e60849aa7fcb5da24ea913c42000000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000000005ae3593564c000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000000a0000000000000000000000000000000000000000000000000000000006a065ff8000000000000000000000000000000000000000000000000000000000000000110000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000002000000000000000000000000000000000000000000000000000000000000004a0000000000000000000000000000000000000000000000000000000000000004000000000000000000000000000000000000000000000000000000000000000800000000000000000000000000000000000000000000000000000000000000003070b0e0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000300000000000000000000000000000000000000000000000000000000000000600000000000000000000000000000000000000000000000000000000000000300000000000000000000000000000000000000000000000000000000000000038000000000000000000000000000000000000000000000000000000000000002800000000000000000000000000000000000000000000000000000000000000020000000000000000000000000f8a0bf9cf54bb92f17374d9e9a321e6a111a51bd00000000000000000000000000000000000000000000000000000000000000800000000000000000000000000000000000000000000000000298348bed9600b70000000000000000000000000000000000000000000000001ac4915e06ffbdb00000000000000000000000000000000000000000000000000000000000000002000000000000000000000000000000000000000000000000000000000000004000000000000000000000000000000000000000000000000000000000000001000000000000000000000000008ac76a51cc950d9822d68b83fe1ad97b32cd580d0000000000000000000000000000000000000000000000000000000000000bb8000000000000000000000000000000000000000000000000000000000000003c000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000a0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000055d398326f99059ff775485246999027b319795500000000000000000000000000000000000000000000000000000000000000020000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000060000000000000000000000000f8a0bf9cf54bb92f17374d9e9a321e6a111a51bd00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000006000000000000000000000000055d398326f99059ff775485246999027b3197955000000000000000000000000c590175e458b83680867afd273527ff58f74c02b0000000000000000000000000000000000000000000000000000000000000000756e69780000b2c5de0b000000000000000000000000000000000000dc0000000000000000000000000000000000000000000000000000000000000000000000000000001af3f329e8be154074d8769d1ffa4ee058b1dbc3000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000600000000000000000000000000000000000000000000000000000000000000044095ea7b30000000000000000000000001a1ec25dc08e98e5e93f1104b5e5cdd298707d31000000000000000000000000000000000000000000000000123fd18867a38000000000000000000000000000000000000000000000000000000000000000000000000000000000001a1ec25dc08e98e5e93f1104b5e5cdd298707d310000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000006e55f57552900000000000000000000000000000000000000000000000000000000000000800000000000000000000000001af3f329e8be154074d8769d1ffa4ee058b1dbc3000000000000000000000000000000000000000000000000123fd18867a3800000000000000000000000000000000000000000000000000000000000000000c00000000000000000000000000000000000000000000000000000000000000018756e69737761705065726d69743246656544796e616d6963000000000000000000000000000000000000000000000000000000000000000000000000000006000000000000000000000000001af3f329e8be154074d8769d1ffa4ee058b1dbc300000000000000000000000055d398326f99059ff775485246999027b31979550000000000000000000000000000000000000000000000001216f0a8cfb11c0000000000000000000000000000000000000000000000000011b9f041e18f6fb800000000000000000000000000000000000000000000000000000000000001200000000000000000000000000000000000000000000000000028e0df97f26400000000000000000000000000b28da7bc87a9dd1e60849aa7fcb5da24ea913c42000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000004ce3593564c000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000000a0000000000000000000000000000000000000000000000000000000006a065ff7000000000000000000000000000000000000000000000000000000000000000110000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000002000000000000000000000000000000000000000000000000000000000000003c0000000000000000000000000000000000000000000000000000000000000004000000000000000000000000000000000000000000000000000000000000000800000000000000000000000000000000000000000000000000000000000000003070b0e000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000030000000000000000000000000000000000000000000000000000000000000060000000000000000000000000000000000000000000000000000000000000022000000000000000000000000000000000000000000000000000000000000002a000000000000000000000000000000000000000000000000000000000000001a000000000000000000000000000000000000000000000000000000000000000200000000000000000000000001af3f329e8be154074d8769d1ffa4ee058b1dbc300000000000000000000000000000000000000000000000000000000000000800000000000000000000000000000000000000000000000001216f0a8cfb11c0000000000000000000000000000000000000000000000000011bbc120d1ab75cf0000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000002000000000000000000000000055d398326f99059ff775485246999027b319795500000000000000000000000000000000000000000000000000000000000000640000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000a0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000600000000000000000000000001af3f329e8be154074d8769d1ffa4ee058b1dbc300000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000006000000000000000000000000055d398326f99059ff775485246999027b3197955000000000000000000000000c590175e458b83680867afd273527ff58f74c02b0000000000000000000000000000000000000000000000000000000000000000756e69780000b2c5de0b000000000000000000000000000000000000c100000000000000000000000000000000000000000000000000000000000000000000000000000055d398326f99059ff775485246999027b3197955000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000600000000000000000000000000000000000000000000000000000000000000044a9059cbb000000000000000000000000e3478b0bb1a5084567c319096437924948be196400000000000000000000000000000000000000000000000000c1178274cf423000000000000000000000000000000000000000000000000000000000c080a0399313380120ebd55bb958c9a0cd2da8fb043745978a52fa17b95c302866c556a07711827b0e60922c073563b28c6543bd3619d3a33a406386cc9326b0372fc0ac", + "s": "0x7711827b0e60922c073563b28c6543bd3619d3a33a406386cc9326b0372fc0ac", + "selectedGasFeeToken": "0x55d398326f99059ff775485246999027b3197955", + "status": "failed", + "time": 1778800886372, + "txParams": { + "data": "0xe9ae5c530101000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000004000000000000000000000000000000000000000000000000000000000000013600000000000000000000000000000000000000000000000000000000000000020000000000000000000000000000000000000000000000000000000000000000500000000000000000000000000000000000000000000000000000000000000a0000000000000000000000000000000000000000000000000000000000000018000000000000000000000000000000000000000000000000000000000000009e00000000000000000000000000000000000000000000000000000000000000ac00000000000000000000000000000000000000000000000000000000000001240000000000000000000000000f8a0bf9cf54bb92f17374d9e9a321e6a111a51bd000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000600000000000000000000000000000000000000000000000000000000000000044095ea7b30000000000000000000000001a1ec25dc08e98e5e93f1104b5e5cdd298707d310000000000000000000000000000000000000000000000000298348bed9600b7000000000000000000000000000000000000000000000000000000000000000000000000000000001a1ec25dc08e98e5e93f1104b5e5cdd298707d310000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000007c55f5755290000000000000000000000000000000000000000000000000000000000000080000000000000000000000000f8a0bf9cf54bb92f17374d9e9a321e6a111a51bd0000000000000000000000000000000000000000000000000298348bed9600b700000000000000000000000000000000000000000000000000000000000000c00000000000000000000000000000000000000000000000000000000000000018756e69737761705065726d69743246656544796e616d6963000000000000000000000000000000000000000000000000000000000000000000000000000006e0000000000000000000000000f8a0bf9cf54bb92f17374d9e9a321e6a111a51bd00000000000000000000000055d398326f99059ff775485246999027b31979550000000000000000000000000000000000000000000000000298348bed9600b70000000000000000000000000000000000000000000000001a85e40d6281a5430000000000000000000000000000000000000000000000000000000000000120000000000000000000000000000000000000000000000000003d28bf3b986359000000000000000000000000b28da7bc87a9dd1e60849aa7fcb5da24ea913c42000000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000000005ae3593564c000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000000a0000000000000000000000000000000000000000000000000000000006a065ff8000000000000000000000000000000000000000000000000000000000000000110000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000002000000000000000000000000000000000000000000000000000000000000004a0000000000000000000000000000000000000000000000000000000000000004000000000000000000000000000000000000000000000000000000000000000800000000000000000000000000000000000000000000000000000000000000003070b0e0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000300000000000000000000000000000000000000000000000000000000000000600000000000000000000000000000000000000000000000000000000000000300000000000000000000000000000000000000000000000000000000000000038000000000000000000000000000000000000000000000000000000000000002800000000000000000000000000000000000000000000000000000000000000020000000000000000000000000f8a0bf9cf54bb92f17374d9e9a321e6a111a51bd00000000000000000000000000000000000000000000000000000000000000800000000000000000000000000000000000000000000000000298348bed9600b70000000000000000000000000000000000000000000000001ac4915e06ffbdb00000000000000000000000000000000000000000000000000000000000000002000000000000000000000000000000000000000000000000000000000000004000000000000000000000000000000000000000000000000000000000000001000000000000000000000000008ac76a51cc950d9822d68b83fe1ad97b32cd580d0000000000000000000000000000000000000000000000000000000000000bb8000000000000000000000000000000000000000000000000000000000000003c000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000a0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000055d398326f99059ff775485246999027b319795500000000000000000000000000000000000000000000000000000000000000020000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000060000000000000000000000000f8a0bf9cf54bb92f17374d9e9a321e6a111a51bd00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000006000000000000000000000000055d398326f99059ff775485246999027b3197955000000000000000000000000c590175e458b83680867afd273527ff58f74c02b0000000000000000000000000000000000000000000000000000000000000000756e69780000b2c5de0b000000000000000000000000000000000000dc0000000000000000000000000000000000000000000000000000000000000000000000000000001af3f329e8be154074d8769d1ffa4ee058b1dbc3000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000600000000000000000000000000000000000000000000000000000000000000044095ea7b30000000000000000000000001a1ec25dc08e98e5e93f1104b5e5cdd298707d31000000000000000000000000000000000000000000000000123fd18867a38000000000000000000000000000000000000000000000000000000000000000000000000000000000001a1ec25dc08e98e5e93f1104b5e5cdd298707d310000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000006e55f57552900000000000000000000000000000000000000000000000000000000000000800000000000000000000000001af3f329e8be154074d8769d1ffa4ee058b1dbc3000000000000000000000000000000000000000000000000123fd18867a3800000000000000000000000000000000000000000000000000000000000000000c00000000000000000000000000000000000000000000000000000000000000018756e69737761705065726d69743246656544796e616d6963000000000000000000000000000000000000000000000000000000000000000000000000000006000000000000000000000000001af3f329e8be154074d8769d1ffa4ee058b1dbc300000000000000000000000055d398326f99059ff775485246999027b31979550000000000000000000000000000000000000000000000001216f0a8cfb11c0000000000000000000000000000000000000000000000000011b9f041e18f6fb800000000000000000000000000000000000000000000000000000000000001200000000000000000000000000000000000000000000000000028e0df97f26400000000000000000000000000b28da7bc87a9dd1e60849aa7fcb5da24ea913c42000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000004ce3593564c000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000000a0000000000000000000000000000000000000000000000000000000006a065ff7000000000000000000000000000000000000000000000000000000000000000110000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000002000000000000000000000000000000000000000000000000000000000000003c0000000000000000000000000000000000000000000000000000000000000004000000000000000000000000000000000000000000000000000000000000000800000000000000000000000000000000000000000000000000000000000000003070b0e000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000030000000000000000000000000000000000000000000000000000000000000060000000000000000000000000000000000000000000000000000000000000022000000000000000000000000000000000000000000000000000000000000002a000000000000000000000000000000000000000000000000000000000000001a000000000000000000000000000000000000000000000000000000000000000200000000000000000000000001af3f329e8be154074d8769d1ffa4ee058b1dbc300000000000000000000000000000000000000000000000000000000000000800000000000000000000000000000000000000000000000001216f0a8cfb11c0000000000000000000000000000000000000000000000000011bbc120d1ab75cf0000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000002000000000000000000000000055d398326f99059ff775485246999027b319795500000000000000000000000000000000000000000000000000000000000000640000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000a0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000600000000000000000000000001af3f329e8be154074d8769d1ffa4ee058b1dbc300000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000006000000000000000000000000055d398326f99059ff775485246999027b3197955000000000000000000000000c590175e458b83680867afd273527ff58f74c02b0000000000000000000000000000000000000000000000000000000000000000756e69780000b2c5de0b000000000000000000000000000000000000c100000000000000000000000000000000000000000000000000000000000000000000000000000055d398326f99059ff775485246999027b3197955000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000600000000000000000000000000000000000000000000000000000000000000044a9059cbb000000000000000000000000e3478b0bb1a5084567c319096437924948be196400000000000000000000000000000000000000000000000000c1178274cf423000000000000000000000000000000000000000000000000000000000", + "from": "0x141d32a89a1e0a5ef360034a2f60a4b917c18838", + "gas": "0x85bfd", + "gasLimit": "0x85bfd", + "maxFeePerGas": "0x3938700", + "maxPriorityFeePerGas": "0x3938700", + "nonce": "0x52", + "to": "0x141d32a89a1e0a5ef360034a2f60a4b917c18838", + "type": "0x2", + "value": "0x0" + }, + "type": "batch", + "userEditedGasLimit": false, + "userFeeLevel": "medium", + "v": "0x0", + "verifiedOnBlockchain": false + }, + { + "batchId": "0x19e28da83eb", + "chainId": "0x38", + "defaultGasEstimates": { + "estimateType": "medium", + "gas": "0x9221a", + "maxFeePerGas": "0x3e9bd50", + "maxPriorityFeePerGas": "0x3e9bd50" + }, + "delegationAddress": "0x63c0c19a282a1b52b07dd5a65b58948a07dae32b", + "error": { + "message": "Gas fee token not found and insufficient native balance", + "name": "Error", + "stack": "Error: Gas fee token not found and insufficient native balance\n at checkGasFeeTokenBeforePublish (chrome-extension://hebhblbkkdabgoldnojllkipeoacjioc/js-node_modules_metamask_s.js:50763:15)\n at async TransactionController._TransactionController_signTransaction (chrome-extension://hebhblbkkdabgoldnojllkipeoacjioc/js-node_modules_metamask_s.js:60276:5)\n at async TransactionController._TransactionController_approveTransaction (chrome-extension://hebhblbkkdabgoldnojllkipeoacjioc/js-node_modules_metamask_s.js:59945:23)\n at async TransactionController._TransactionController_processApproval (chrome-extension://hebhblbkkdabgoldnojllkipeoacjioc/js-node_modules_metamask_s.js:59854:40)\n at async addTransactionBatchWith7702 (chrome-extension://hebhblbkkdabgoldnojllkipeoacjioc/js-node_modules_metamask_s.js:41175:29)\n at async addTransactionBatch (chrome-extension://hebhblbkkdabgoldnojllkipeoacjioc/js-node_modules_metamask_s.js:40973:20)\n at async TransactionController.addTransactionBatch (chrome-extension://hebhblbkkdabgoldnojllkipeoacjioc/js-node_modules_metamask_s.js:58615:16)\n at async addTransactionBatch (chrome-extension://hebhblbkkdabgoldnojllkipeoacjioc/js-node_modules_metamask_a.js:67563:25)\n at async submitBatchSellHandler (chrome-extension://hebhblbkkdabgoldnojllkipeoacjioc/js-node_modules_metamask_a.js:20661:33)\n at async BridgeStatusController. (chrome-extension://hebhblbkkdabgoldnojllkipeoacjioc/js-node_modules_metamask_a.js:53097:46)" + }, + "excludeNativeTokenForFee": false, + "gasFeeEstimates": { + "high": { + "maxFeePerGas": "0x2faf080", + "maxPriorityFeePerGas": "0x2faf080" + }, + "low": { + "maxFeePerGas": "0x2faf080", + "maxPriorityFeePerGas": "0x2faf080" + }, + "medium": { + "maxFeePerGas": "0x2faf080", + "maxPriorityFeePerGas": "0x2faf080" + }, + "type": "fee-market" + }, + "gasFeeEstimatesLoaded": true, + "gasFeeTokens": [], + "gasLimitNoBuffer": "0x9221a", + "id": "620113f0-4fec-11f1-b881-ad9cf9533ddd", + "isExternalSign": true, + "isGasFeeIncluded": true, + "isGasFeeSponsored": false, + "isGasFeeTokenIgnoredIfBalance": true, + "nestedTransactions": [ + { + "data": "0x095ea7b30000000000000000000000001a1ec25dc08e98e5e93f1104b5e5cdd298707d310000000000000000000000000000000000000000000000000298348bed960080", + "from": "0x141d32a89a1e0a5ef360034a2f60a4b917c18838", + "gas": "0x110fa", + "maxFeePerGas": "0x3e9bd50", + "maxPriorityFeePerGas": "0x3e9bd50", + "to": "0xf8a0bf9cf54bb92f17374d9e9a321e6a111a51bd", + "type": "swapApproval", + "value": "0x0" + }, + { + "data": "0x5f5755290000000000000000000000000000000000000000000000000000000000000080000000000000000000000000f8a0bf9cf54bb92f17374d9e9a321e6a111a51bd0000000000000000000000000000000000000000000000000298348bed96008000000000000000000000000000000000000000000000000000000000000000c00000000000000000000000000000000000000000000000000000000000000018756e69737761705065726d69743246656544796e616d696300000000000000000000000000000000000000000000000000000000000000000000000000000360000000000000000000000000f8a0bf9cf54bb92f17374d9e9a321e6a111a51bd00000000000000000000000055d398326f99059ff775485246999027b31979550000000000000000000000000000000000000000000000000298348bed9600800000000000000000000000000000000000000000000000001a86be982e224be30000000000000000000000000000000000000000000000000000000000000120000000000000000000000000000000000000000000000000003d2ab72acc3ded000000000000000000000000b28da7bc87a9dd1e60849aa7fcb5da24ea913c420000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000022e3593564c000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000000a0000000000000000000000000000000000000000000000000000000006a06613e00000000000000000000000000000000000000000000000000000000000000010000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000000000200000000000000000000000000000000000000000000000000000000000000120000000000000000000000000c590175e458b83680867afd273527ff58f74c02b0000000000000000000000000000000000000000000000000298348bed9600800000000000000000000000000000000000000000000000001ac56ded43853bb200000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000000000000000000000000000000010000000000000000000000000000000000000000000000000000000000000042f8a0bf9cf54bb92f17374d9e9a321e6a111a51bd0001f42170ed0880ac9a755fd29b2688956bd959f933f80001f455d398326f99059ff775485246999027b3197955000000000000000000000000000000000000000000000000000000000000756e69780000b2c5de0b00000000000000000000000000000000000040", + "from": "0x141d32a89a1e0a5ef360034a2f60a4b917c18838", + "gas": "0x78ddc", + "maxFeePerGas": "0x3e9bd50", + "maxPriorityFeePerGas": "0x3e9bd50", + "to": "0x1a1ec25DC08e98e5E93F1104B5e5cdD298707d31", + "type": "swap", + "value": "0x0" + }, + { + "data": "0x095ea7b30000000000000000000000001a1ec25dc08e98e5e93f1104b5e5cdd298707d31000000000000000000000000000000000000000000000000123fd18867a38000", + "from": "0x141d32a89a1e0a5ef360034a2f60a4b917c18838", + "gas": "0x110fa", + "maxFeePerGas": "0x3e9bd50", + "maxPriorityFeePerGas": "0x3e9bd50", + "to": "0x1af3f329e8be154074d8769d1ffa4ee058b1dbc3", + "type": "swapApproval", + "value": "0x0" + }, + { + "data": "0x5f57552900000000000000000000000000000000000000000000000000000000000000800000000000000000000000001af3f329e8be154074d8769d1ffa4ee058b1dbc3000000000000000000000000000000000000000000000000123fd18867a3800000000000000000000000000000000000000000000000000000000000000000c0000000000000000000000000000000000000000000000000000000000000001b70616e63616b6553776170526f7574657246656544796e616d6963000000000000000000000000000000000000000000000000000000000000000000000002200000000000000000000000001af3f329e8be154074d8769d1ffa4ee058b1dbc300000000000000000000000055d398326f99059ff775485246999027b31979550000000000000000000000000000000000000000000000001216f0a8cfb11c0000000000000000000000000000000000000000000000000011b91279a85928a900000000000000000000000000000000000000000000000000000000000001200000000000000000000000000000000000000000000000000028e0df97f26400000000000000000000000000b28da7bc87a9dd1e60849aa7fcb5da24ea913c42000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000e404e45aaf0000000000000000000000001af3f329e8be154074d8769d1ffa4ee058b1dbc300000000000000000000000055d398326f99059ff775485246999027b31979550000000000000000000000000000000000000000000000000000000000000064000000000000000000000000c590175e458b83680867afd273527ff58f74c02b0000000000000000000000000000000000000000000000001216f0a8cfb11c0000000000000000000000000000000000000000000000000011bae341e03ef8390000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000008e", + "from": "0x141d32a89a1e0a5ef360034a2f60a4b917c18838", + "gas": "0x5b923", + "maxFeePerGas": "0x3e9bd50", + "maxPriorityFeePerGas": "0x3e9bd50", + "to": "0x1a1ec25DC08e98e5E93F1104B5e5cdD298707d31", + "type": "swap", + "value": "0x0" + }, + { + "data": "0xa9059cbb000000000000000000000000e3478b0bb1a5084567c319096437924948be196400000000000000000000000000000000000000000000000000d20fd457ceb729", + "from": "0x141d32a89a1e0a5ef360034a2f60a4b917c18838", + "gas": "0xcc57", + "maxFeePerGas": "0x3e9bd50", + "maxPriorityFeePerGas": "0x3e9bd50", + "to": "0x55d398326f99059ff775485246999027b3197955", + "type": "transfer", + "value": "0x0" + } + ], + "networkClientId": "9a1eafde-5f04-434b-b011-e9de5c50baf0", + "origin": "metamask", + "originalGasEstimate": "0x9221a", + "selectedGasFeeToken": "0x55d398326f99059ff775485246999027b3197955", + "status": "failed", + "time": 1778801210031, + "txParams": { + "data": "0xe9ae5c53010100000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000400000000000000000000000000000000000000000000000000000000000000c000000000000000000000000000000000000000000000000000000000000000020000000000000000000000000000000000000000000000000000000000000000500000000000000000000000000000000000000000000000000000000000000a00000000000000000000000000000000000000000000000000000000000000180000000000000000000000000000000000000000000000000000000000000066000000000000000000000000000000000000000000000000000000000000007400000000000000000000000000000000000000000000000000000000000000ae0000000000000000000000000f8a0bf9cf54bb92f17374d9e9a321e6a111a51bd000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000600000000000000000000000000000000000000000000000000000000000000044095ea7b30000000000000000000000001a1ec25dc08e98e5e93f1104b5e5cdd298707d310000000000000000000000000000000000000000000000000298348bed960080000000000000000000000000000000000000000000000000000000000000000000000000000000001a1ec25dc08e98e5e93f1104b5e5cdd298707d310000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000004455f5755290000000000000000000000000000000000000000000000000000000000000080000000000000000000000000f8a0bf9cf54bb92f17374d9e9a321e6a111a51bd0000000000000000000000000000000000000000000000000298348bed96008000000000000000000000000000000000000000000000000000000000000000c00000000000000000000000000000000000000000000000000000000000000018756e69737761705065726d69743246656544796e616d696300000000000000000000000000000000000000000000000000000000000000000000000000000360000000000000000000000000f8a0bf9cf54bb92f17374d9e9a321e6a111a51bd00000000000000000000000055d398326f99059ff775485246999027b31979550000000000000000000000000000000000000000000000000298348bed9600800000000000000000000000000000000000000000000000001a86be982e224be30000000000000000000000000000000000000000000000000000000000000120000000000000000000000000000000000000000000000000003d2ab72acc3ded000000000000000000000000b28da7bc87a9dd1e60849aa7fcb5da24ea913c420000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000022e3593564c000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000000a0000000000000000000000000000000000000000000000000000000006a06613e00000000000000000000000000000000000000000000000000000000000000010000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000000000200000000000000000000000000000000000000000000000000000000000000120000000000000000000000000c590175e458b83680867afd273527ff58f74c02b0000000000000000000000000000000000000000000000000298348bed9600800000000000000000000000000000000000000000000000001ac56ded43853bb200000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000000000000000000000000000000010000000000000000000000000000000000000000000000000000000000000042f8a0bf9cf54bb92f17374d9e9a321e6a111a51bd0001f42170ed0880ac9a755fd29b2688956bd959f933f80001f455d398326f99059ff775485246999027b3197955000000000000000000000000000000000000000000000000000000000000756e69780000b2c5de0b000000000000000000000000000000000000400000000000000000000000000000000000000000000000000000000000000000000000000000001af3f329e8be154074d8769d1ffa4ee058b1dbc3000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000600000000000000000000000000000000000000000000000000000000000000044095ea7b30000000000000000000000001a1ec25dc08e98e5e93f1104b5e5cdd298707d31000000000000000000000000000000000000000000000000123fd18867a38000000000000000000000000000000000000000000000000000000000000000000000000000000000001a1ec25dc08e98e5e93f1104b5e5cdd298707d310000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000003055f57552900000000000000000000000000000000000000000000000000000000000000800000000000000000000000001af3f329e8be154074d8769d1ffa4ee058b1dbc3000000000000000000000000000000000000000000000000123fd18867a3800000000000000000000000000000000000000000000000000000000000000000c0000000000000000000000000000000000000000000000000000000000000001b70616e63616b6553776170526f7574657246656544796e616d6963000000000000000000000000000000000000000000000000000000000000000000000002200000000000000000000000001af3f329e8be154074d8769d1ffa4ee058b1dbc300000000000000000000000055d398326f99059ff775485246999027b31979550000000000000000000000000000000000000000000000001216f0a8cfb11c0000000000000000000000000000000000000000000000000011b91279a85928a900000000000000000000000000000000000000000000000000000000000001200000000000000000000000000000000000000000000000000028e0df97f26400000000000000000000000000b28da7bc87a9dd1e60849aa7fcb5da24ea913c42000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000e404e45aaf0000000000000000000000001af3f329e8be154074d8769d1ffa4ee058b1dbc300000000000000000000000055d398326f99059ff775485246999027b31979550000000000000000000000000000000000000000000000000000000000000064000000000000000000000000c590175e458b83680867afd273527ff58f74c02b0000000000000000000000000000000000000000000000001216f0a8cfb11c0000000000000000000000000000000000000000000000000011bae341e03ef8390000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000008e00000000000000000000000000000000000000000000000000000000000000000000000000000055d398326f99059ff775485246999027b3197955000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000600000000000000000000000000000000000000000000000000000000000000044a9059cbb000000000000000000000000e3478b0bb1a5084567c319096437924948be196400000000000000000000000000000000000000000000000000d20fd457ceb72900000000000000000000000000000000000000000000000000000000", + "from": "0x141d32a89a1e0a5ef360034a2f60a4b917c18838", + "gas": "0x9221a", + "gasLimit": "0x9221a", + "maxFeePerGas": "0x3e9bd50", + "maxPriorityFeePerGas": "0x3e9bd50", + "to": "0x141d32a89a1e0a5ef360034a2f60a4b917c18838", + "type": "0x2", + "value": "0x0" + }, + "type": "batch", + "userEditedGasLimit": false, + "userFeeLevel": "medium", + "verifiedOnBlockchain": false + }, + { + "batchId": "0x19e28de1677", + "chainId": "0x38", + "defaultGasEstimates": { + "estimateType": "medium", + "gas": "0x9126d", + "maxFeePerGas": "0x3938700", + "maxPriorityFeePerGas": "0x3938700" + }, + "delegationAddress": "0x63c0c19a282a1b52b07dd5a65b58948a07dae32b", + "error": { + "message": "RPC submit: gas required exceeds allowance (421519)", + "name": "Error", + "stack": "Error: RPC submit: gas required exceeds allowance (421519)\n at TransactionController._TransactionController_publishTransaction (chrome-extension://hebhblbkkdabgoldnojllkipeoacjioc/js-node_modules_metamask_s.js:60041:15)\n at async chrome-extension://hebhblbkkdabgoldnojllkipeoacjioc/js-node_modules_metamask_s.js:60727:47\n at async TransactionController._TransactionController_defaultPublishHook (chrome-extension://hebhblbkkdabgoldnojllkipeoacjioc/js-node_modules_metamask_s.js:60720:5)\n at async TransactionController._TransactionController_approveTransaction (chrome-extension://hebhblbkkdabgoldnojllkipeoacjioc/js-node_modules_metamask_s.js:59991:43)\n at async TransactionController._TransactionController_processApproval (chrome-extension://hebhblbkkdabgoldnojllkipeoacjioc/js-node_modules_metamask_s.js:59854:40)\n at async addTransactionBatchWith7702 (chrome-extension://hebhblbkkdabgoldnojllkipeoacjioc/js-node_modules_metamask_s.js:41175:29)\n at async addTransactionBatch (chrome-extension://hebhblbkkdabgoldnojllkipeoacjioc/js-node_modules_metamask_s.js:40973:20)\n at async TransactionController.addTransactionBatch (chrome-extension://hebhblbkkdabgoldnojllkipeoacjioc/js-node_modules_metamask_s.js:58615:16)\n at async addTransactionBatch (chrome-extension://hebhblbkkdabgoldnojllkipeoacjioc/js-node_modules_metamask_a.js:67563:25)\n at async submitBatchSellHandler (chrome-extension://hebhblbkkdabgoldnojllkipeoacjioc/js-node_modules_metamask_a.js:20661:33)" + }, + "excludeNativeTokenForFee": true, + "gasFeeEstimates": { + "high": { + "maxFeePerGas": "0x2faf080", + "maxPriorityFeePerGas": "0x2faf080" + }, + "low": { + "maxFeePerGas": "0x2faf080", + "maxPriorityFeePerGas": "0x2faf080" + }, + "medium": { + "maxFeePerGas": "0x2faf080", + "maxPriorityFeePerGas": "0x2faf080" + }, + "type": "fee-market" + }, + "gasFeeEstimatesLoaded": true, + "gasLimitNoBuffer": "0x9126d", + "id": "4c792fd0-4fed-11f1-abe9-0fa9cf6d3f73", + "isGasFeeIncluded": true, + "isGasFeeSponsored": false, + "isGasFeeTokenIgnoredIfBalance": false, + "nestedTransactions": [ + { + "data": "0x095ea7b30000000000000000000000001a1ec25dc08e98e5e93f1104b5e5cdd298707d310000000000000000000000000000000000000000000000000298348bed9600b7", + "from": "0x141d32a89a1e0a5ef360034a2f60a4b917c18838", + "gas": "0x110fa", + "maxFeePerGas": "0x3938700", + "maxPriorityFeePerGas": "0x3938700", + "to": "0xf8a0bf9cf54bb92f17374d9e9a321e6a111a51bd", + "type": "swapApproval", + "value": "0x0" + }, + { + "data": "0x5f5755290000000000000000000000000000000000000000000000000000000000000080000000000000000000000000f8a0bf9cf54bb92f17374d9e9a321e6a111a51bd0000000000000000000000000000000000000000000000000298348bed9600b700000000000000000000000000000000000000000000000000000000000000c00000000000000000000000000000000000000000000000000000000000000018756e69737761705065726d69743246656544796e616d696300000000000000000000000000000000000000000000000000000000000000000000000000000360000000000000000000000000f8a0bf9cf54bb92f17374d9e9a321e6a111a51bd00000000000000000000000055d398326f99059ff775485246999027b31979550000000000000000000000000000000000000000000000000298348bed9600b70000000000000000000000000000000000000000000000001a8b86cbfecb2ce30000000000000000000000000000000000000000000000000000000000000120000000000000000000000000000000000000000000000000003d35be0b5588ae000000000000000000000000b28da7bc87a9dd1e60849aa7fcb5da24ea913c420000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000022e3593564c000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000000a0000000000000000000000000000000000000000000000000000000006a0662c900000000000000000000000000000000000000000000000000000000000000010000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000000000200000000000000000000000000000000000000000000000000000000000000120000000000000000000000000c590175e458b83680867afd273527ff58f74c02b0000000000000000000000000000000000000000000000000298348bed9600b70000000000000000000000000000000000000000000000001aca416e038dbfea00000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000000000000000000000000000000010000000000000000000000000000000000000000000000000000000000000042f8a0bf9cf54bb92f17374d9e9a321e6a111a51bd0001f42170ed0880ac9a755fd29b2688956bd959f933f80001f455d398326f99059ff775485246999027b3197955000000000000000000000000000000000000000000000000000000000000756e69780000b2c5de0b000000000000000000000000000000000000ee", + "from": "0x141d32a89a1e0a5ef360034a2f60a4b917c18838", + "gas": "0x78df5", + "maxFeePerGas": "0x3938700", + "maxPriorityFeePerGas": "0x3938700", + "to": "0x1a1ec25DC08e98e5E93F1104B5e5cdD298707d31", + "type": "swap", + "value": "0x0" + }, + { + "data": "0x095ea7b30000000000000000000000001a1ec25dc08e98e5e93f1104b5e5cdd298707d31000000000000000000000000000000000000000000000000123fd18867a38000", + "from": "0x141d32a89a1e0a5ef360034a2f60a4b917c18838", + "gas": "0x110fa", + "maxFeePerGas": "0x3938700", + "maxPriorityFeePerGas": "0x3938700", + "to": "0x1af3f329e8be154074d8769d1ffa4ee058b1dbc3", + "type": "swapApproval", + "value": "0x0" + }, + { + "data": "0x5f57552900000000000000000000000000000000000000000000000000000000000000800000000000000000000000001af3f329e8be154074d8769d1ffa4ee058b1dbc3000000000000000000000000000000000000000000000000123fd18867a3800000000000000000000000000000000000000000000000000000000000000000c00000000000000000000000000000000000000000000000000000000000000018756e69737761705065726d69743246656544796e616d6963000000000000000000000000000000000000000000000000000000000000000000000000000006000000000000000000000000001af3f329e8be154074d8769d1ffa4ee058b1dbc300000000000000000000000055d398326f99059ff775485246999027b31979550000000000000000000000000000000000000000000000001216f0a8cfb11c0000000000000000000000000000000000000000000000000011b9f010ce44ebae00000000000000000000000000000000000000000000000000000000000001200000000000000000000000000000000000000000000000000028e0df97f26400000000000000000000000000b28da7bc87a9dd1e60849aa7fcb5da24ea913c42000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000004ce3593564c000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000000a0000000000000000000000000000000000000000000000000000000006a0662c6000000000000000000000000000000000000000000000000000000000000000110000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000002000000000000000000000000000000000000000000000000000000000000003c0000000000000000000000000000000000000000000000000000000000000004000000000000000000000000000000000000000000000000000000000000000800000000000000000000000000000000000000000000000000000000000000003070b0e000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000030000000000000000000000000000000000000000000000000000000000000060000000000000000000000000000000000000000000000000000000000000022000000000000000000000000000000000000000000000000000000000000002a000000000000000000000000000000000000000000000000000000000000001a000000000000000000000000000000000000000000000000000000000000000200000000000000000000000001af3f329e8be154074d8769d1ffa4ee058b1dbc300000000000000000000000000000000000000000000000000000000000000800000000000000000000000000000000000000000000000001216f0a8cfb11c0000000000000000000000000000000000000000000000000011bbc0efb959f2d70000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000002000000000000000000000000055d398326f99059ff775485246999027b319795500000000000000000000000000000000000000000000000000000000000000640000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000a0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000600000000000000000000000001af3f329e8be154074d8769d1ffa4ee058b1dbc300000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000006000000000000000000000000055d398326f99059ff775485246999027b3197955000000000000000000000000c590175e458b83680867afd273527ff58f74c02b0000000000000000000000000000000000000000000000000000000000000000756e69780000b2c5de0b00000000000000000000000000000000000065", + "from": "0x141d32a89a1e0a5ef360034a2f60a4b917c18838", + "gas": "0x5d0e7", + "maxFeePerGas": "0x3938700", + "maxPriorityFeePerGas": "0x3938700", + "to": "0x1a1ec25DC08e98e5E93F1104B5e5cdD298707d31", + "type": "swap", + "value": "0x0" + }, + { + "data": "0xa9059cbb000000000000000000000000e3478b0bb1a5084567c319096437924948be196400000000000000000000000000000000000000000000000000c5ed1180aa5e51", + "from": "0x141d32a89a1e0a5ef360034a2f60a4b917c18838", + "gas": "0xcc57", + "maxFeePerGas": "0x3938700", + "maxPriorityFeePerGas": "0x3938700", + "to": "0x55d398326f99059ff775485246999027b3197955", + "type": "transfer", + "value": "0x0" + } + ], + "networkClientId": "9a1eafde-5f04-434b-b011-e9de5c50baf0", + "origin": "metamask", + "originalGasEstimate": "0x9126d", + "r": "0x5b3fa75c4e562381359726d3ba754f5ecfa6005f6aa03c428c5dc2431735c047", + "rawTx": "0x02f910b13852840393870084039387008309126d94141d32a89a1e0a5ef360034a2f60a4b917c1883880b91044e9ae5c53010100000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000400000000000000000000000000000000000000000000000000000000000000fe00000000000000000000000000000000000000000000000000000000000000020000000000000000000000000000000000000000000000000000000000000000500000000000000000000000000000000000000000000000000000000000000a00000000000000000000000000000000000000000000000000000000000000180000000000000000000000000000000000000000000000000000000000000066000000000000000000000000000000000000000000000000000000000000007400000000000000000000000000000000000000000000000000000000000000ec0000000000000000000000000f8a0bf9cf54bb92f17374d9e9a321e6a111a51bd000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000600000000000000000000000000000000000000000000000000000000000000044095ea7b30000000000000000000000001a1ec25dc08e98e5e93f1104b5e5cdd298707d310000000000000000000000000000000000000000000000000298348bed9600b7000000000000000000000000000000000000000000000000000000000000000000000000000000001a1ec25dc08e98e5e93f1104b5e5cdd298707d310000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000004455f5755290000000000000000000000000000000000000000000000000000000000000080000000000000000000000000f8a0bf9cf54bb92f17374d9e9a321e6a111a51bd0000000000000000000000000000000000000000000000000298348bed9600b700000000000000000000000000000000000000000000000000000000000000c00000000000000000000000000000000000000000000000000000000000000018756e69737761705065726d69743246656544796e616d696300000000000000000000000000000000000000000000000000000000000000000000000000000360000000000000000000000000f8a0bf9cf54bb92f17374d9e9a321e6a111a51bd00000000000000000000000055d398326f99059ff775485246999027b31979550000000000000000000000000000000000000000000000000298348bed9600b70000000000000000000000000000000000000000000000001a8b86cbfecb2ce30000000000000000000000000000000000000000000000000000000000000120000000000000000000000000000000000000000000000000003d35be0b5588ae000000000000000000000000b28da7bc87a9dd1e60849aa7fcb5da24ea913c420000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000022e3593564c000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000000a0000000000000000000000000000000000000000000000000000000006a0662c900000000000000000000000000000000000000000000000000000000000000010000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000000000200000000000000000000000000000000000000000000000000000000000000120000000000000000000000000c590175e458b83680867afd273527ff58f74c02b0000000000000000000000000000000000000000000000000298348bed9600b70000000000000000000000000000000000000000000000001aca416e038dbfea00000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000000000000000000000000000000010000000000000000000000000000000000000000000000000000000000000042f8a0bf9cf54bb92f17374d9e9a321e6a111a51bd0001f42170ed0880ac9a755fd29b2688956bd959f933f80001f455d398326f99059ff775485246999027b3197955000000000000000000000000000000000000000000000000000000000000756e69780000b2c5de0b000000000000000000000000000000000000ee0000000000000000000000000000000000000000000000000000000000000000000000000000001af3f329e8be154074d8769d1ffa4ee058b1dbc3000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000600000000000000000000000000000000000000000000000000000000000000044095ea7b30000000000000000000000001a1ec25dc08e98e5e93f1104b5e5cdd298707d31000000000000000000000000000000000000000000000000123fd18867a38000000000000000000000000000000000000000000000000000000000000000000000000000000000001a1ec25dc08e98e5e93f1104b5e5cdd298707d310000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000006e55f57552900000000000000000000000000000000000000000000000000000000000000800000000000000000000000001af3f329e8be154074d8769d1ffa4ee058b1dbc3000000000000000000000000000000000000000000000000123fd18867a3800000000000000000000000000000000000000000000000000000000000000000c00000000000000000000000000000000000000000000000000000000000000018756e69737761705065726d69743246656544796e616d6963000000000000000000000000000000000000000000000000000000000000000000000000000006000000000000000000000000001af3f329e8be154074d8769d1ffa4ee058b1dbc300000000000000000000000055d398326f99059ff775485246999027b31979550000000000000000000000000000000000000000000000001216f0a8cfb11c0000000000000000000000000000000000000000000000000011b9f010ce44ebae00000000000000000000000000000000000000000000000000000000000001200000000000000000000000000000000000000000000000000028e0df97f26400000000000000000000000000b28da7bc87a9dd1e60849aa7fcb5da24ea913c42000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000004ce3593564c000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000000a0000000000000000000000000000000000000000000000000000000006a0662c6000000000000000000000000000000000000000000000000000000000000000110000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000002000000000000000000000000000000000000000000000000000000000000003c0000000000000000000000000000000000000000000000000000000000000004000000000000000000000000000000000000000000000000000000000000000800000000000000000000000000000000000000000000000000000000000000003070b0e000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000030000000000000000000000000000000000000000000000000000000000000060000000000000000000000000000000000000000000000000000000000000022000000000000000000000000000000000000000000000000000000000000002a000000000000000000000000000000000000000000000000000000000000001a000000000000000000000000000000000000000000000000000000000000000200000000000000000000000001af3f329e8be154074d8769d1ffa4ee058b1dbc300000000000000000000000000000000000000000000000000000000000000800000000000000000000000000000000000000000000000001216f0a8cfb11c0000000000000000000000000000000000000000000000000011bbc0efb959f2d70000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000002000000000000000000000000055d398326f99059ff775485246999027b319795500000000000000000000000000000000000000000000000000000000000000640000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000a0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000600000000000000000000000001af3f329e8be154074d8769d1ffa4ee058b1dbc300000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000006000000000000000000000000055d398326f99059ff775485246999027b3197955000000000000000000000000c590175e458b83680867afd273527ff58f74c02b0000000000000000000000000000000000000000000000000000000000000000756e69780000b2c5de0b0000000000000000000000000000000000006500000000000000000000000000000000000000000000000000000000000000000000000000000055d398326f99059ff775485246999027b3197955000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000600000000000000000000000000000000000000000000000000000000000000044a9059cbb000000000000000000000000e3478b0bb1a5084567c319096437924948be196400000000000000000000000000000000000000000000000000c5ed1180aa5e5100000000000000000000000000000000000000000000000000000000c080a05b3fa75c4e562381359726d3ba754f5ecfa6005f6aa03c428c5dc2431735c047a06b99a9dec1c65ad36e38ff265251fa79655b05117b8e9599c8b5a94b8bc66df9", + "s": "0x6b99a9dec1c65ad36e38ff265251fa79655b05117b8e9599c8b5a94b8bc66df9", + "selectedGasFeeToken": "0x55d398326f99059ff775485246999027b3197955", + "status": "failed", + "time": 1778801603405, + "txParams": { + "data": "0xe9ae5c53010100000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000400000000000000000000000000000000000000000000000000000000000000fe00000000000000000000000000000000000000000000000000000000000000020000000000000000000000000000000000000000000000000000000000000000500000000000000000000000000000000000000000000000000000000000000a00000000000000000000000000000000000000000000000000000000000000180000000000000000000000000000000000000000000000000000000000000066000000000000000000000000000000000000000000000000000000000000007400000000000000000000000000000000000000000000000000000000000000ec0000000000000000000000000f8a0bf9cf54bb92f17374d9e9a321e6a111a51bd000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000600000000000000000000000000000000000000000000000000000000000000044095ea7b30000000000000000000000001a1ec25dc08e98e5e93f1104b5e5cdd298707d310000000000000000000000000000000000000000000000000298348bed9600b7000000000000000000000000000000000000000000000000000000000000000000000000000000001a1ec25dc08e98e5e93f1104b5e5cdd298707d310000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000004455f5755290000000000000000000000000000000000000000000000000000000000000080000000000000000000000000f8a0bf9cf54bb92f17374d9e9a321e6a111a51bd0000000000000000000000000000000000000000000000000298348bed9600b700000000000000000000000000000000000000000000000000000000000000c00000000000000000000000000000000000000000000000000000000000000018756e69737761705065726d69743246656544796e616d696300000000000000000000000000000000000000000000000000000000000000000000000000000360000000000000000000000000f8a0bf9cf54bb92f17374d9e9a321e6a111a51bd00000000000000000000000055d398326f99059ff775485246999027b31979550000000000000000000000000000000000000000000000000298348bed9600b70000000000000000000000000000000000000000000000001a8b86cbfecb2ce30000000000000000000000000000000000000000000000000000000000000120000000000000000000000000000000000000000000000000003d35be0b5588ae000000000000000000000000b28da7bc87a9dd1e60849aa7fcb5da24ea913c420000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000022e3593564c000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000000a0000000000000000000000000000000000000000000000000000000006a0662c900000000000000000000000000000000000000000000000000000000000000010000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000000000200000000000000000000000000000000000000000000000000000000000000120000000000000000000000000c590175e458b83680867afd273527ff58f74c02b0000000000000000000000000000000000000000000000000298348bed9600b70000000000000000000000000000000000000000000000001aca416e038dbfea00000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000000000000000000000000000000010000000000000000000000000000000000000000000000000000000000000042f8a0bf9cf54bb92f17374d9e9a321e6a111a51bd0001f42170ed0880ac9a755fd29b2688956bd959f933f80001f455d398326f99059ff775485246999027b3197955000000000000000000000000000000000000000000000000000000000000756e69780000b2c5de0b000000000000000000000000000000000000ee0000000000000000000000000000000000000000000000000000000000000000000000000000001af3f329e8be154074d8769d1ffa4ee058b1dbc3000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000600000000000000000000000000000000000000000000000000000000000000044095ea7b30000000000000000000000001a1ec25dc08e98e5e93f1104b5e5cdd298707d31000000000000000000000000000000000000000000000000123fd18867a38000000000000000000000000000000000000000000000000000000000000000000000000000000000001a1ec25dc08e98e5e93f1104b5e5cdd298707d310000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000006e55f57552900000000000000000000000000000000000000000000000000000000000000800000000000000000000000001af3f329e8be154074d8769d1ffa4ee058b1dbc3000000000000000000000000000000000000000000000000123fd18867a3800000000000000000000000000000000000000000000000000000000000000000c00000000000000000000000000000000000000000000000000000000000000018756e69737761705065726d69743246656544796e616d6963000000000000000000000000000000000000000000000000000000000000000000000000000006000000000000000000000000001af3f329e8be154074d8769d1ffa4ee058b1dbc300000000000000000000000055d398326f99059ff775485246999027b31979550000000000000000000000000000000000000000000000001216f0a8cfb11c0000000000000000000000000000000000000000000000000011b9f010ce44ebae00000000000000000000000000000000000000000000000000000000000001200000000000000000000000000000000000000000000000000028e0df97f26400000000000000000000000000b28da7bc87a9dd1e60849aa7fcb5da24ea913c42000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000004ce3593564c000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000000a0000000000000000000000000000000000000000000000000000000006a0662c6000000000000000000000000000000000000000000000000000000000000000110000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000002000000000000000000000000000000000000000000000000000000000000003c0000000000000000000000000000000000000000000000000000000000000004000000000000000000000000000000000000000000000000000000000000000800000000000000000000000000000000000000000000000000000000000000003070b0e000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000030000000000000000000000000000000000000000000000000000000000000060000000000000000000000000000000000000000000000000000000000000022000000000000000000000000000000000000000000000000000000000000002a000000000000000000000000000000000000000000000000000000000000001a000000000000000000000000000000000000000000000000000000000000000200000000000000000000000001af3f329e8be154074d8769d1ffa4ee058b1dbc300000000000000000000000000000000000000000000000000000000000000800000000000000000000000000000000000000000000000001216f0a8cfb11c0000000000000000000000000000000000000000000000000011bbc0efb959f2d70000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000002000000000000000000000000055d398326f99059ff775485246999027b319795500000000000000000000000000000000000000000000000000000000000000640000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000a0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000600000000000000000000000001af3f329e8be154074d8769d1ffa4ee058b1dbc300000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000006000000000000000000000000055d398326f99059ff775485246999027b3197955000000000000000000000000c590175e458b83680867afd273527ff58f74c02b0000000000000000000000000000000000000000000000000000000000000000756e69780000b2c5de0b0000000000000000000000000000000000006500000000000000000000000000000000000000000000000000000000000000000000000000000055d398326f99059ff775485246999027b3197955000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000600000000000000000000000000000000000000000000000000000000000000044a9059cbb000000000000000000000000e3478b0bb1a5084567c319096437924948be196400000000000000000000000000000000000000000000000000c5ed1180aa5e5100000000000000000000000000000000000000000000000000000000", + "from": "0x141d32a89a1e0a5ef360034a2f60a4b917c18838", + "gas": "0x9126d", + "gasLimit": "0x9126d", + "maxFeePerGas": "0x3938700", + "maxPriorityFeePerGas": "0x3938700", + "nonce": "0x52", + "to": "0x141d32a89a1e0a5ef360034a2f60a4b917c18838", + "type": "0x2", + "value": "0x0" + }, + "type": "batch", + "userEditedGasLimit": false, + "userFeeLevel": "medium", + "v": "0x0", + "verifiedOnBlockchain": false + }, + { + "batchId": "0x19e28df3b3c", + "chainId": "0x38", + "defaultGasEstimates": { + "estimateType": "medium", + "gas": "0x91279", + "maxFeePerGas": "0x3938700", + "maxPriorityFeePerGas": "0x3938700" + }, + "delegationAddress": "0x63c0c19a282a1b52b07dd5a65b58948a07dae32b", + "error": { + "message": "RPC submit: gas required exceeds allowance (421519)", + "name": "Error", + "stack": "Error: RPC submit: gas required exceeds allowance (421519)\n at TransactionController._TransactionController_publishTransaction (chrome-extension://hebhblbkkdabgoldnojllkipeoacjioc/js-node_modules_metamask_s.js:60041:15)\n at async chrome-extension://hebhblbkkdabgoldnojllkipeoacjioc/js-node_modules_metamask_s.js:60727:47\n at async TransactionController._TransactionController_defaultPublishHook (chrome-extension://hebhblbkkdabgoldnojllkipeoacjioc/js-node_modules_metamask_s.js:60720:5)\n at async TransactionController._TransactionController_approveTransaction (chrome-extension://hebhblbkkdabgoldnojllkipeoacjioc/js-node_modules_metamask_s.js:59991:43)\n at async TransactionController._TransactionController_processApproval (chrome-extension://hebhblbkkdabgoldnojllkipeoacjioc/js-node_modules_metamask_s.js:59854:40)\n at async addTransactionBatchWith7702 (chrome-extension://hebhblbkkdabgoldnojllkipeoacjioc/js-node_modules_metamask_s.js:41175:29)\n at async addTransactionBatch (chrome-extension://hebhblbkkdabgoldnojllkipeoacjioc/js-node_modules_metamask_s.js:40973:20)\n at async TransactionController.addTransactionBatch (chrome-extension://hebhblbkkdabgoldnojllkipeoacjioc/js-node_modules_metamask_s.js:58615:16)\n at async addTransactionBatch (chrome-extension://hebhblbkkdabgoldnojllkipeoacjioc/js-node_modules_metamask_a.js:67563:25)\n at async submitBatchSellHandler (chrome-extension://hebhblbkkdabgoldnojllkipeoacjioc/js-node_modules_metamask_a.js:20661:33)" + }, + "excludeNativeTokenForFee": true, + "gasFeeEstimates": { + "high": { + "maxFeePerGas": "0x2faf080", + "maxPriorityFeePerGas": "0x2faf080" + }, + "low": { + "maxFeePerGas": "0x2faf080", + "maxPriorityFeePerGas": "0x2faf080" + }, + "medium": { + "maxFeePerGas": "0x2faf080", + "maxPriorityFeePerGas": "0x2faf080" + }, + "type": "fee-market" + }, + "gasFeeEstimatesLoaded": true, + "gasLimitNoBuffer": "0x91279", + "id": "6faae430-4fed-11f1-83ab-2144928c92c4", + "isGasFeeIncluded": true, + "isGasFeeSponsored": false, + "isGasFeeTokenIgnoredIfBalance": false, + "nestedTransactions": [ + { + "data": "0x095ea7b30000000000000000000000001a1ec25dc08e98e5e93f1104b5e5cdd298707d310000000000000000000000000000000000000000000000000298348bed9600b7", + "from": "0x141d32a89a1e0a5ef360034a2f60a4b917c18838", + "gas": "0x110fa", + "maxFeePerGas": "0x3938700", + "maxPriorityFeePerGas": "0x3938700", + "to": "0xf8a0bf9cf54bb92f17374d9e9a321e6a111a51bd", + "type": "swapApproval", + "value": "0x0" + }, + { + "data": "0x5f5755290000000000000000000000000000000000000000000000000000000000000080000000000000000000000000f8a0bf9cf54bb92f17374d9e9a321e6a111a51bd0000000000000000000000000000000000000000000000000298348bed9600b700000000000000000000000000000000000000000000000000000000000000c00000000000000000000000000000000000000000000000000000000000000018756e69737761705065726d69743246656544796e616d696300000000000000000000000000000000000000000000000000000000000000000000000000000360000000000000000000000000f8a0bf9cf54bb92f17374d9e9a321e6a111a51bd00000000000000000000000055d398326f99059ff775485246999027b31979550000000000000000000000000000000000000000000000000298348bed9600b70000000000000000000000000000000000000000000000001a8ad845eef94ec00000000000000000000000000000000000000000000000000000000000000120000000000000000000000000000000000000000000000000003d342b9c99e188000000000000000000000000b28da7bc87a9dd1e60849aa7fcb5da24ea913c420000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000022e3593564c000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000000a0000000000000000000000000000000000000000000000000000000006a06630200000000000000000000000000000000000000000000000000000000000000010000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000000000200000000000000000000000000000000000000000000000000000000000000120000000000000000000000000c590175e458b83680867afd273527ff58f74c02b0000000000000000000000000000000000000000000000000298348bed9600b70000000000000000000000000000000000000000000000001ac9914b8830b19300000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000000000000000000000000000000010000000000000000000000000000000000000000000000000000000000000042f8a0bf9cf54bb92f17374d9e9a321e6a111a51bd0001f42170ed0880ac9a755fd29b2688956bd959f933f80001f455d398326f99059ff775485246999027b3197955000000000000000000000000000000000000000000000000000000000000756e69780000b2c5de0b0000000000000000000000000000000000008c", + "from": "0x141d32a89a1e0a5ef360034a2f60a4b917c18838", + "gas": "0x78e07", + "maxFeePerGas": "0x3938700", + "maxPriorityFeePerGas": "0x3938700", + "to": "0x1a1ec25DC08e98e5E93F1104B5e5cdD298707d31", + "type": "swap", + "value": "0x0" + }, + { + "data": "0x095ea7b30000000000000000000000001a1ec25dc08e98e5e93f1104b5e5cdd298707d31000000000000000000000000000000000000000000000000123fd18867a38000", + "from": "0x141d32a89a1e0a5ef360034a2f60a4b917c18838", + "gas": "0x110fa", + "maxFeePerGas": "0x3938700", + "maxPriorityFeePerGas": "0x3938700", + "to": "0x1af3f329e8be154074d8769d1ffa4ee058b1dbc3", + "type": "swapApproval", + "value": "0x0" + }, + { + "data": "0x5f57552900000000000000000000000000000000000000000000000000000000000000800000000000000000000000001af3f329e8be154074d8769d1ffa4ee058b1dbc3000000000000000000000000000000000000000000000000123fd18867a3800000000000000000000000000000000000000000000000000000000000000000c00000000000000000000000000000000000000000000000000000000000000018756e69737761705065726d69743246656544796e616d6963000000000000000000000000000000000000000000000000000000000000000000000000000006000000000000000000000000001af3f329e8be154074d8769d1ffa4ee058b1dbc300000000000000000000000055d398326f99059ff775485246999027b31979550000000000000000000000000000000000000000000000001216f0a8cfb11c0000000000000000000000000000000000000000000000000011b9f010ce44ebae00000000000000000000000000000000000000000000000000000000000001200000000000000000000000000000000000000000000000000028e0df97f26400000000000000000000000000b28da7bc87a9dd1e60849aa7fcb5da24ea913c42000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000004ce3593564c000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000000a0000000000000000000000000000000000000000000000000000000006a066301000000000000000000000000000000000000000000000000000000000000000110000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000002000000000000000000000000000000000000000000000000000000000000003c0000000000000000000000000000000000000000000000000000000000000004000000000000000000000000000000000000000000000000000000000000000800000000000000000000000000000000000000000000000000000000000000003070b0e000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000030000000000000000000000000000000000000000000000000000000000000060000000000000000000000000000000000000000000000000000000000000022000000000000000000000000000000000000000000000000000000000000002a000000000000000000000000000000000000000000000000000000000000001a000000000000000000000000000000000000000000000000000000000000000200000000000000000000000001af3f329e8be154074d8769d1ffa4ee058b1dbc300000000000000000000000000000000000000000000000000000000000000800000000000000000000000000000000000000000000000001216f0a8cfb11c0000000000000000000000000000000000000000000000000011bbc0efb959f2d70000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000002000000000000000000000000055d398326f99059ff775485246999027b319795500000000000000000000000000000000000000000000000000000000000000640000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000a0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000600000000000000000000000001af3f329e8be154074d8769d1ffa4ee058b1dbc300000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000006000000000000000000000000055d398326f99059ff775485246999027b3197955000000000000000000000000c590175e458b83680867afd273527ff58f74c02b0000000000000000000000000000000000000000000000000000000000000000756e69780000b2c5de0b00000000000000000000000000000000000026", + "from": "0x141d32a89a1e0a5ef360034a2f60a4b917c18838", + "gas": "0x5d0e7", + "maxFeePerGas": "0x3938700", + "maxPriorityFeePerGas": "0x3938700", + "to": "0x1a1ec25DC08e98e5E93F1104B5e5cdD298707d31", + "type": "swap", + "value": "0x0" + }, + { + "data": "0xa9059cbb000000000000000000000000e3478b0bb1a5084567c319096437924948be196400000000000000000000000000000000000000000000000000c5ee5d2a939498", + "from": "0x141d32a89a1e0a5ef360034a2f60a4b917c18838", + "gas": "0xcc57", + "maxFeePerGas": "0x3938700", + "maxPriorityFeePerGas": "0x3938700", + "to": "0x55d398326f99059ff775485246999027b3197955", + "type": "transfer", + "value": "0x0" + } + ], + "networkClientId": "9a1eafde-5f04-434b-b011-e9de5c50baf0", + "origin": "metamask", + "originalGasEstimate": "0x91279", + "r": "0x1ebc02e7f944a62377155328a460e818672500e4710fd68e694d4526b3a24c5e", + "rawTx": "0x02f910b13852840393870084039387008309127994141d32a89a1e0a5ef360034a2f60a4b917c1883880b91044e9ae5c53010100000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000400000000000000000000000000000000000000000000000000000000000000fe00000000000000000000000000000000000000000000000000000000000000020000000000000000000000000000000000000000000000000000000000000000500000000000000000000000000000000000000000000000000000000000000a00000000000000000000000000000000000000000000000000000000000000180000000000000000000000000000000000000000000000000000000000000066000000000000000000000000000000000000000000000000000000000000007400000000000000000000000000000000000000000000000000000000000000ec0000000000000000000000000f8a0bf9cf54bb92f17374d9e9a321e6a111a51bd000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000600000000000000000000000000000000000000000000000000000000000000044095ea7b30000000000000000000000001a1ec25dc08e98e5e93f1104b5e5cdd298707d310000000000000000000000000000000000000000000000000298348bed9600b7000000000000000000000000000000000000000000000000000000000000000000000000000000001a1ec25dc08e98e5e93f1104b5e5cdd298707d310000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000004455f5755290000000000000000000000000000000000000000000000000000000000000080000000000000000000000000f8a0bf9cf54bb92f17374d9e9a321e6a111a51bd0000000000000000000000000000000000000000000000000298348bed9600b700000000000000000000000000000000000000000000000000000000000000c00000000000000000000000000000000000000000000000000000000000000018756e69737761705065726d69743246656544796e616d696300000000000000000000000000000000000000000000000000000000000000000000000000000360000000000000000000000000f8a0bf9cf54bb92f17374d9e9a321e6a111a51bd00000000000000000000000055d398326f99059ff775485246999027b31979550000000000000000000000000000000000000000000000000298348bed9600b70000000000000000000000000000000000000000000000001a8ad845eef94ec00000000000000000000000000000000000000000000000000000000000000120000000000000000000000000000000000000000000000000003d342b9c99e188000000000000000000000000b28da7bc87a9dd1e60849aa7fcb5da24ea913c420000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000022e3593564c000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000000a0000000000000000000000000000000000000000000000000000000006a06630200000000000000000000000000000000000000000000000000000000000000010000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000000000200000000000000000000000000000000000000000000000000000000000000120000000000000000000000000c590175e458b83680867afd273527ff58f74c02b0000000000000000000000000000000000000000000000000298348bed9600b70000000000000000000000000000000000000000000000001ac9914b8830b19300000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000000000000000000000000000000010000000000000000000000000000000000000000000000000000000000000042f8a0bf9cf54bb92f17374d9e9a321e6a111a51bd0001f42170ed0880ac9a755fd29b2688956bd959f933f80001f455d398326f99059ff775485246999027b3197955000000000000000000000000000000000000000000000000000000000000756e69780000b2c5de0b0000000000000000000000000000000000008c0000000000000000000000000000000000000000000000000000000000000000000000000000001af3f329e8be154074d8769d1ffa4ee058b1dbc3000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000600000000000000000000000000000000000000000000000000000000000000044095ea7b30000000000000000000000001a1ec25dc08e98e5e93f1104b5e5cdd298707d31000000000000000000000000000000000000000000000000123fd18867a38000000000000000000000000000000000000000000000000000000000000000000000000000000000001a1ec25dc08e98e5e93f1104b5e5cdd298707d310000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000006e55f57552900000000000000000000000000000000000000000000000000000000000000800000000000000000000000001af3f329e8be154074d8769d1ffa4ee058b1dbc3000000000000000000000000000000000000000000000000123fd18867a3800000000000000000000000000000000000000000000000000000000000000000c00000000000000000000000000000000000000000000000000000000000000018756e69737761705065726d69743246656544796e616d6963000000000000000000000000000000000000000000000000000000000000000000000000000006000000000000000000000000001af3f329e8be154074d8769d1ffa4ee058b1dbc300000000000000000000000055d398326f99059ff775485246999027b31979550000000000000000000000000000000000000000000000001216f0a8cfb11c0000000000000000000000000000000000000000000000000011b9f010ce44ebae00000000000000000000000000000000000000000000000000000000000001200000000000000000000000000000000000000000000000000028e0df97f26400000000000000000000000000b28da7bc87a9dd1e60849aa7fcb5da24ea913c42000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000004ce3593564c000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000000a0000000000000000000000000000000000000000000000000000000006a066301000000000000000000000000000000000000000000000000000000000000000110000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000002000000000000000000000000000000000000000000000000000000000000003c0000000000000000000000000000000000000000000000000000000000000004000000000000000000000000000000000000000000000000000000000000000800000000000000000000000000000000000000000000000000000000000000003070b0e000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000030000000000000000000000000000000000000000000000000000000000000060000000000000000000000000000000000000000000000000000000000000022000000000000000000000000000000000000000000000000000000000000002a000000000000000000000000000000000000000000000000000000000000001a000000000000000000000000000000000000000000000000000000000000000200000000000000000000000001af3f329e8be154074d8769d1ffa4ee058b1dbc300000000000000000000000000000000000000000000000000000000000000800000000000000000000000000000000000000000000000001216f0a8cfb11c0000000000000000000000000000000000000000000000000011bbc0efb959f2d70000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000002000000000000000000000000055d398326f99059ff775485246999027b319795500000000000000000000000000000000000000000000000000000000000000640000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000a0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000600000000000000000000000001af3f329e8be154074d8769d1ffa4ee058b1dbc300000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000006000000000000000000000000055d398326f99059ff775485246999027b3197955000000000000000000000000c590175e458b83680867afd273527ff58f74c02b0000000000000000000000000000000000000000000000000000000000000000756e69780000b2c5de0b0000000000000000000000000000000000002600000000000000000000000000000000000000000000000000000000000000000000000000000055d398326f99059ff775485246999027b3197955000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000600000000000000000000000000000000000000000000000000000000000000044a9059cbb000000000000000000000000e3478b0bb1a5084567c319096437924948be196400000000000000000000000000000000000000000000000000c5ee5d2a93949800000000000000000000000000000000000000000000000000000000c001a01ebc02e7f944a62377155328a460e818672500e4710fd68e694d4526b3a24c5ea048bd9ccf078af98a10cfb1dbcf9e319e7471dfaafe41f8951776e2dce3917d4e", + "s": "0x48bd9ccf078af98a10cfb1dbcf9e319e7471dfaafe41f8951776e2dce3917d4e", + "selectedGasFeeToken": "0x55d398326f99059ff775485246999027b3197955", + "status": "failed", + "time": 1778801662451, + "txParams": { + "data": "0xe9ae5c53010100000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000400000000000000000000000000000000000000000000000000000000000000fe00000000000000000000000000000000000000000000000000000000000000020000000000000000000000000000000000000000000000000000000000000000500000000000000000000000000000000000000000000000000000000000000a00000000000000000000000000000000000000000000000000000000000000180000000000000000000000000000000000000000000000000000000000000066000000000000000000000000000000000000000000000000000000000000007400000000000000000000000000000000000000000000000000000000000000ec0000000000000000000000000f8a0bf9cf54bb92f17374d9e9a321e6a111a51bd000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000600000000000000000000000000000000000000000000000000000000000000044095ea7b30000000000000000000000001a1ec25dc08e98e5e93f1104b5e5cdd298707d310000000000000000000000000000000000000000000000000298348bed9600b7000000000000000000000000000000000000000000000000000000000000000000000000000000001a1ec25dc08e98e5e93f1104b5e5cdd298707d310000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000004455f5755290000000000000000000000000000000000000000000000000000000000000080000000000000000000000000f8a0bf9cf54bb92f17374d9e9a321e6a111a51bd0000000000000000000000000000000000000000000000000298348bed9600b700000000000000000000000000000000000000000000000000000000000000c00000000000000000000000000000000000000000000000000000000000000018756e69737761705065726d69743246656544796e616d696300000000000000000000000000000000000000000000000000000000000000000000000000000360000000000000000000000000f8a0bf9cf54bb92f17374d9e9a321e6a111a51bd00000000000000000000000055d398326f99059ff775485246999027b31979550000000000000000000000000000000000000000000000000298348bed9600b70000000000000000000000000000000000000000000000001a8ad845eef94ec00000000000000000000000000000000000000000000000000000000000000120000000000000000000000000000000000000000000000000003d342b9c99e188000000000000000000000000b28da7bc87a9dd1e60849aa7fcb5da24ea913c420000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000022e3593564c000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000000a0000000000000000000000000000000000000000000000000000000006a06630200000000000000000000000000000000000000000000000000000000000000010000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000000000200000000000000000000000000000000000000000000000000000000000000120000000000000000000000000c590175e458b83680867afd273527ff58f74c02b0000000000000000000000000000000000000000000000000298348bed9600b70000000000000000000000000000000000000000000000001ac9914b8830b19300000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000000000000000000000000000000010000000000000000000000000000000000000000000000000000000000000042f8a0bf9cf54bb92f17374d9e9a321e6a111a51bd0001f42170ed0880ac9a755fd29b2688956bd959f933f80001f455d398326f99059ff775485246999027b3197955000000000000000000000000000000000000000000000000000000000000756e69780000b2c5de0b0000000000000000000000000000000000008c0000000000000000000000000000000000000000000000000000000000000000000000000000001af3f329e8be154074d8769d1ffa4ee058b1dbc3000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000600000000000000000000000000000000000000000000000000000000000000044095ea7b30000000000000000000000001a1ec25dc08e98e5e93f1104b5e5cdd298707d31000000000000000000000000000000000000000000000000123fd18867a38000000000000000000000000000000000000000000000000000000000000000000000000000000000001a1ec25dc08e98e5e93f1104b5e5cdd298707d310000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000006e55f57552900000000000000000000000000000000000000000000000000000000000000800000000000000000000000001af3f329e8be154074d8769d1ffa4ee058b1dbc3000000000000000000000000000000000000000000000000123fd18867a3800000000000000000000000000000000000000000000000000000000000000000c00000000000000000000000000000000000000000000000000000000000000018756e69737761705065726d69743246656544796e616d6963000000000000000000000000000000000000000000000000000000000000000000000000000006000000000000000000000000001af3f329e8be154074d8769d1ffa4ee058b1dbc300000000000000000000000055d398326f99059ff775485246999027b31979550000000000000000000000000000000000000000000000001216f0a8cfb11c0000000000000000000000000000000000000000000000000011b9f010ce44ebae00000000000000000000000000000000000000000000000000000000000001200000000000000000000000000000000000000000000000000028e0df97f26400000000000000000000000000b28da7bc87a9dd1e60849aa7fcb5da24ea913c42000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000004ce3593564c000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000000a0000000000000000000000000000000000000000000000000000000006a066301000000000000000000000000000000000000000000000000000000000000000110000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000002000000000000000000000000000000000000000000000000000000000000003c0000000000000000000000000000000000000000000000000000000000000004000000000000000000000000000000000000000000000000000000000000000800000000000000000000000000000000000000000000000000000000000000003070b0e000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000030000000000000000000000000000000000000000000000000000000000000060000000000000000000000000000000000000000000000000000000000000022000000000000000000000000000000000000000000000000000000000000002a000000000000000000000000000000000000000000000000000000000000001a000000000000000000000000000000000000000000000000000000000000000200000000000000000000000001af3f329e8be154074d8769d1ffa4ee058b1dbc300000000000000000000000000000000000000000000000000000000000000800000000000000000000000000000000000000000000000001216f0a8cfb11c0000000000000000000000000000000000000000000000000011bbc0efb959f2d70000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000002000000000000000000000000055d398326f99059ff775485246999027b319795500000000000000000000000000000000000000000000000000000000000000640000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000a0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000600000000000000000000000001af3f329e8be154074d8769d1ffa4ee058b1dbc300000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000006000000000000000000000000055d398326f99059ff775485246999027b3197955000000000000000000000000c590175e458b83680867afd273527ff58f74c02b0000000000000000000000000000000000000000000000000000000000000000756e69780000b2c5de0b0000000000000000000000000000000000002600000000000000000000000000000000000000000000000000000000000000000000000000000055d398326f99059ff775485246999027b3197955000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000600000000000000000000000000000000000000000000000000000000000000044a9059cbb000000000000000000000000e3478b0bb1a5084567c319096437924948be196400000000000000000000000000000000000000000000000000c5ee5d2a93949800000000000000000000000000000000000000000000000000000000", + "from": "0x141d32a89a1e0a5ef360034a2f60a4b917c18838", + "gas": "0x91279", + "gasLimit": "0x91279", + "maxFeePerGas": "0x3938700", + "maxPriorityFeePerGas": "0x3938700", + "nonce": "0x52", + "to": "0x141d32a89a1e0a5ef360034a2f60a4b917c18838", + "type": "0x2", + "value": "0x0" + }, + "type": "batch", + "userEditedGasLimit": false, + "userFeeLevel": "medium", + "v": "0x1", + "verifiedOnBlockchain": false + }, + { + "batchId": "0x19e28e0bae6", + "chainId": "0x38", + "defaultGasEstimates": { + "estimateType": "medium", + "gas": "0x85bfd", + "maxFeePerGas": "0x3938700", + "maxPriorityFeePerGas": "0x3938700" + }, + "delegationAddress": "0x63c0c19a282a1b52b07dd5a65b58948a07dae32b", + "error": { + "message": "RPC submit: gas required exceeds allowance (421519)", + "name": "Error", + "stack": "Error: RPC submit: gas required exceeds allowance (421519)\n at TransactionController._TransactionController_publishTransaction (chrome-extension://hebhblbkkdabgoldnojllkipeoacjioc/js-node_modules_metamask_s.js:60041:15)\n at async chrome-extension://hebhblbkkdabgoldnojllkipeoacjioc/js-node_modules_metamask_s.js:60727:47\n at async TransactionController._TransactionController_defaultPublishHook (chrome-extension://hebhblbkkdabgoldnojllkipeoacjioc/js-node_modules_metamask_s.js:60720:5)\n at async TransactionController._TransactionController_approveTransaction (chrome-extension://hebhblbkkdabgoldnojllkipeoacjioc/js-node_modules_metamask_s.js:59991:43)\n at async TransactionController._TransactionController_processApproval (chrome-extension://hebhblbkkdabgoldnojllkipeoacjioc/js-node_modules_metamask_s.js:59854:40)\n at async addTransactionBatchWith7702 (chrome-extension://hebhblbkkdabgoldnojllkipeoacjioc/js-node_modules_metamask_s.js:41175:29)\n at async addTransactionBatch (chrome-extension://hebhblbkkdabgoldnojllkipeoacjioc/js-node_modules_metamask_s.js:40973:20)\n at async TransactionController.addTransactionBatch (chrome-extension://hebhblbkkdabgoldnojllkipeoacjioc/js-node_modules_metamask_s.js:58615:16)\n at async addTransactionBatch (chrome-extension://hebhblbkkdabgoldnojllkipeoacjioc/js-node_modules_metamask_a.js:67563:25)\n at async submitBatchSellHandler (chrome-extension://hebhblbkkdabgoldnojllkipeoacjioc/js-node_modules_metamask_a.js:20661:33)" + }, + "excludeNativeTokenForFee": true, + "gasFeeEstimates": { + "high": { + "maxFeePerGas": "0x2faf080", + "maxPriorityFeePerGas": "0x2faf080" + }, + "low": { + "maxFeePerGas": "0x2faf080", + "maxPriorityFeePerGas": "0x2faf080" + }, + "medium": { + "maxFeePerGas": "0x2faf080", + "maxPriorityFeePerGas": "0x2faf080" + }, + "type": "fee-market" + }, + "gasFeeEstimatesLoaded": true, + "gasLimitNoBuffer": "0x85bfd", + "id": "c3bc3be0-4fee-11f1-affc-677c85a0a356", + "isGasFeeIncluded": true, + "isGasFeeSponsored": false, + "isGasFeeTokenIgnoredIfBalance": false, + "nestedTransactions": [ + { + "data": "0x095ea7b30000000000000000000000001a1ec25dc08e98e5e93f1104b5e5cdd298707d310000000000000000000000000000000000000000000000000298348bed9600b7", + "from": "0x141d32a89a1e0a5ef360034a2f60a4b917c18838", + "gas": "0x110fa", + "maxFeePerGas": "0x3938700", + "maxPriorityFeePerGas": "0x3938700", + "to": "0xf8a0bf9cf54bb92f17374d9e9a321e6a111a51bd", + "type": "swapApproval", + "value": "0x0" + }, + { + "data": "0x5f5755290000000000000000000000000000000000000000000000000000000000000080000000000000000000000000f8a0bf9cf54bb92f17374d9e9a321e6a111a51bd0000000000000000000000000000000000000000000000000298348bed9600b700000000000000000000000000000000000000000000000000000000000000c00000000000000000000000000000000000000000000000000000000000000018756e69737761705065726d69743246656544796e616d6963000000000000000000000000000000000000000000000000000000000000000000000000000006e0000000000000000000000000f8a0bf9cf54bb92f17374d9e9a321e6a111a51bd00000000000000000000000055d398326f99059ff775485246999027b31979550000000000000000000000000000000000000000000000000298348bed9600b70000000000000000000000000000000000000000000000001a85e18d1195a89e0000000000000000000000000000000000000000000000000000000000000120000000000000000000000000000000000000000000000000003d28b97718a335000000000000000000000000b28da7bc87a9dd1e60849aa7fcb5da24ea913c42000000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000000005ae3593564c000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000000a0000000000000000000000000000000000000000000000000000000006a066537000000000000000000000000000000000000000000000000000000000000000110000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000002000000000000000000000000000000000000000000000000000000000000004a0000000000000000000000000000000000000000000000000000000000000004000000000000000000000000000000000000000000000000000000000000000800000000000000000000000000000000000000000000000000000000000000003070b0e0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000300000000000000000000000000000000000000000000000000000000000000600000000000000000000000000000000000000000000000000000000000000300000000000000000000000000000000000000000000000000000000000000038000000000000000000000000000000000000000000000000000000000000002800000000000000000000000000000000000000000000000000000000000000020000000000000000000000000f8a0bf9cf54bb92f17374d9e9a321e6a111a51bd00000000000000000000000000000000000000000000000000000000000000800000000000000000000000000000000000000000000000000298348bed9600b70000000000000000000000000000000000000000000000001ac48ed7ccef3af70000000000000000000000000000000000000000000000000000000000000002000000000000000000000000000000000000000000000000000000000000004000000000000000000000000000000000000000000000000000000000000001000000000000000000000000008ac76a51cc950d9822d68b83fe1ad97b32cd580d0000000000000000000000000000000000000000000000000000000000000bb8000000000000000000000000000000000000000000000000000000000000003c000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000a0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000055d398326f99059ff775485246999027b319795500000000000000000000000000000000000000000000000000000000000000010000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000060000000000000000000000000f8a0bf9cf54bb92f17374d9e9a321e6a111a51bd00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000006000000000000000000000000055d398326f99059ff775485246999027b3197955000000000000000000000000c590175e458b83680867afd273527ff58f74c02b0000000000000000000000000000000000000000000000000000000000000000756e69780000b2c5de0b00000000000000000000000000000000000085", + "from": "0x141d32a89a1e0a5ef360034a2f60a4b917c18838", + "gas": "0x6a37c", + "maxFeePerGas": "0x3938700", + "maxPriorityFeePerGas": "0x3938700", + "to": "0x1a1ec25DC08e98e5E93F1104B5e5cdD298707d31", + "type": "swap", + "value": "0x0" + }, + { + "data": "0x095ea7b30000000000000000000000001a1ec25dc08e98e5e93f1104b5e5cdd298707d31000000000000000000000000000000000000000000000000123fd18867a38000", + "from": "0x141d32a89a1e0a5ef360034a2f60a4b917c18838", + "gas": "0x110fa", + "maxFeePerGas": "0x3938700", + "maxPriorityFeePerGas": "0x3938700", + "to": "0x1af3f329e8be154074d8769d1ffa4ee058b1dbc3", + "type": "swapApproval", + "value": "0x0" + }, + { + "data": "0x5f57552900000000000000000000000000000000000000000000000000000000000000800000000000000000000000001af3f329e8be154074d8769d1ffa4ee058b1dbc3000000000000000000000000000000000000000000000000123fd18867a3800000000000000000000000000000000000000000000000000000000000000000c00000000000000000000000000000000000000000000000000000000000000018756e69737761705065726d69743246656544796e616d6963000000000000000000000000000000000000000000000000000000000000000000000000000006000000000000000000000000001af3f329e8be154074d8769d1ffa4ee058b1dbc300000000000000000000000055d398326f99059ff775485246999027b31979550000000000000000000000000000000000000000000000001216f0a8cfb11c0000000000000000000000000000000000000000000000000011b9f010ce44ebae00000000000000000000000000000000000000000000000000000000000001200000000000000000000000000000000000000000000000000028e0df97f26400000000000000000000000000b28da7bc87a9dd1e60849aa7fcb5da24ea913c42000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000004ce3593564c000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000000a0000000000000000000000000000000000000000000000000000000006a066537000000000000000000000000000000000000000000000000000000000000000110000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000002000000000000000000000000000000000000000000000000000000000000003c0000000000000000000000000000000000000000000000000000000000000004000000000000000000000000000000000000000000000000000000000000000800000000000000000000000000000000000000000000000000000000000000003070b0e000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000030000000000000000000000000000000000000000000000000000000000000060000000000000000000000000000000000000000000000000000000000000022000000000000000000000000000000000000000000000000000000000000002a000000000000000000000000000000000000000000000000000000000000001a000000000000000000000000000000000000000000000000000000000000000200000000000000000000000001af3f329e8be154074d8769d1ffa4ee058b1dbc300000000000000000000000000000000000000000000000000000000000000800000000000000000000000000000000000000000000000001216f0a8cfb11c0000000000000000000000000000000000000000000000000011bbc0efb959f2d70000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000002000000000000000000000000055d398326f99059ff775485246999027b319795500000000000000000000000000000000000000000000000000000000000000640000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000a0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000600000000000000000000000001af3f329e8be154074d8769d1ffa4ee058b1dbc300000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000006000000000000000000000000055d398326f99059ff775485246999027b3197955000000000000000000000000c590175e458b83680867afd273527ff58f74c02b0000000000000000000000000000000000000000000000000000000000000000756e69780000b2c5de0b00000000000000000000000000000000000084", + "from": "0x141d32a89a1e0a5ef360034a2f60a4b917c18838", + "gas": "0x5d0e7", + "maxFeePerGas": "0x3938700", + "maxPriorityFeePerGas": "0x3938700", + "to": "0x1a1ec25DC08e98e5E93F1104B5e5cdD298707d31", + "type": "swap", + "value": "0x0" + }, + { + "data": "0xa9059cbb000000000000000000000000e3478b0bb1a5084567c319096437924948be196400000000000000000000000000000000000000000000000000c12165fdc576f5", + "from": "0x141d32a89a1e0a5ef360034a2f60a4b917c18838", + "gas": "0xcc57", + "maxFeePerGas": "0x3938700", + "maxPriorityFeePerGas": "0x3938700", + "to": "0x55d398326f99059ff775485246999027b3197955", + "type": "transfer", + "value": "0x0" + } + ], + "networkClientId": "9a1eafde-5f04-434b-b011-e9de5c50baf0", + "origin": "metamask", + "originalGasEstimate": "0x85bfd", + "r": "0x88fb101357d52940fcc5ba4526d9c5a137bb14e50dc342797c0725aa4148a2b", + "rawTx": "0x02f9143138528403938700840393870083085bfd94141d32a89a1e0a5ef360034a2f60a4b917c1883880b913c4e9ae5c530101000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000004000000000000000000000000000000000000000000000000000000000000013600000000000000000000000000000000000000000000000000000000000000020000000000000000000000000000000000000000000000000000000000000000500000000000000000000000000000000000000000000000000000000000000a0000000000000000000000000000000000000000000000000000000000000018000000000000000000000000000000000000000000000000000000000000009e00000000000000000000000000000000000000000000000000000000000000ac00000000000000000000000000000000000000000000000000000000000001240000000000000000000000000f8a0bf9cf54bb92f17374d9e9a321e6a111a51bd000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000600000000000000000000000000000000000000000000000000000000000000044095ea7b30000000000000000000000001a1ec25dc08e98e5e93f1104b5e5cdd298707d310000000000000000000000000000000000000000000000000298348bed9600b7000000000000000000000000000000000000000000000000000000000000000000000000000000001a1ec25dc08e98e5e93f1104b5e5cdd298707d310000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000007c55f5755290000000000000000000000000000000000000000000000000000000000000080000000000000000000000000f8a0bf9cf54bb92f17374d9e9a321e6a111a51bd0000000000000000000000000000000000000000000000000298348bed9600b700000000000000000000000000000000000000000000000000000000000000c00000000000000000000000000000000000000000000000000000000000000018756e69737761705065726d69743246656544796e616d6963000000000000000000000000000000000000000000000000000000000000000000000000000006e0000000000000000000000000f8a0bf9cf54bb92f17374d9e9a321e6a111a51bd00000000000000000000000055d398326f99059ff775485246999027b31979550000000000000000000000000000000000000000000000000298348bed9600b70000000000000000000000000000000000000000000000001a85e18d1195a89e0000000000000000000000000000000000000000000000000000000000000120000000000000000000000000000000000000000000000000003d28b97718a335000000000000000000000000b28da7bc87a9dd1e60849aa7fcb5da24ea913c42000000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000000005ae3593564c000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000000a0000000000000000000000000000000000000000000000000000000006a066537000000000000000000000000000000000000000000000000000000000000000110000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000002000000000000000000000000000000000000000000000000000000000000004a0000000000000000000000000000000000000000000000000000000000000004000000000000000000000000000000000000000000000000000000000000000800000000000000000000000000000000000000000000000000000000000000003070b0e0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000300000000000000000000000000000000000000000000000000000000000000600000000000000000000000000000000000000000000000000000000000000300000000000000000000000000000000000000000000000000000000000000038000000000000000000000000000000000000000000000000000000000000002800000000000000000000000000000000000000000000000000000000000000020000000000000000000000000f8a0bf9cf54bb92f17374d9e9a321e6a111a51bd00000000000000000000000000000000000000000000000000000000000000800000000000000000000000000000000000000000000000000298348bed9600b70000000000000000000000000000000000000000000000001ac48ed7ccef3af70000000000000000000000000000000000000000000000000000000000000002000000000000000000000000000000000000000000000000000000000000004000000000000000000000000000000000000000000000000000000000000001000000000000000000000000008ac76a51cc950d9822d68b83fe1ad97b32cd580d0000000000000000000000000000000000000000000000000000000000000bb8000000000000000000000000000000000000000000000000000000000000003c000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000a0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000055d398326f99059ff775485246999027b319795500000000000000000000000000000000000000000000000000000000000000010000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000060000000000000000000000000f8a0bf9cf54bb92f17374d9e9a321e6a111a51bd00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000006000000000000000000000000055d398326f99059ff775485246999027b3197955000000000000000000000000c590175e458b83680867afd273527ff58f74c02b0000000000000000000000000000000000000000000000000000000000000000756e69780000b2c5de0b000000000000000000000000000000000000850000000000000000000000000000000000000000000000000000000000000000000000000000001af3f329e8be154074d8769d1ffa4ee058b1dbc3000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000600000000000000000000000000000000000000000000000000000000000000044095ea7b30000000000000000000000001a1ec25dc08e98e5e93f1104b5e5cdd298707d31000000000000000000000000000000000000000000000000123fd18867a38000000000000000000000000000000000000000000000000000000000000000000000000000000000001a1ec25dc08e98e5e93f1104b5e5cdd298707d310000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000006e55f57552900000000000000000000000000000000000000000000000000000000000000800000000000000000000000001af3f329e8be154074d8769d1ffa4ee058b1dbc3000000000000000000000000000000000000000000000000123fd18867a3800000000000000000000000000000000000000000000000000000000000000000c00000000000000000000000000000000000000000000000000000000000000018756e69737761705065726d69743246656544796e616d6963000000000000000000000000000000000000000000000000000000000000000000000000000006000000000000000000000000001af3f329e8be154074d8769d1ffa4ee058b1dbc300000000000000000000000055d398326f99059ff775485246999027b31979550000000000000000000000000000000000000000000000001216f0a8cfb11c0000000000000000000000000000000000000000000000000011b9f010ce44ebae00000000000000000000000000000000000000000000000000000000000001200000000000000000000000000000000000000000000000000028e0df97f26400000000000000000000000000b28da7bc87a9dd1e60849aa7fcb5da24ea913c42000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000004ce3593564c000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000000a0000000000000000000000000000000000000000000000000000000006a066537000000000000000000000000000000000000000000000000000000000000000110000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000002000000000000000000000000000000000000000000000000000000000000003c0000000000000000000000000000000000000000000000000000000000000004000000000000000000000000000000000000000000000000000000000000000800000000000000000000000000000000000000000000000000000000000000003070b0e000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000030000000000000000000000000000000000000000000000000000000000000060000000000000000000000000000000000000000000000000000000000000022000000000000000000000000000000000000000000000000000000000000002a000000000000000000000000000000000000000000000000000000000000001a000000000000000000000000000000000000000000000000000000000000000200000000000000000000000001af3f329e8be154074d8769d1ffa4ee058b1dbc300000000000000000000000000000000000000000000000000000000000000800000000000000000000000000000000000000000000000001216f0a8cfb11c0000000000000000000000000000000000000000000000000011bbc0efb959f2d70000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000002000000000000000000000000055d398326f99059ff775485246999027b319795500000000000000000000000000000000000000000000000000000000000000640000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000a0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000600000000000000000000000001af3f329e8be154074d8769d1ffa4ee058b1dbc300000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000006000000000000000000000000055d398326f99059ff775485246999027b3197955000000000000000000000000c590175e458b83680867afd273527ff58f74c02b0000000000000000000000000000000000000000000000000000000000000000756e69780000b2c5de0b0000000000000000000000000000000000008400000000000000000000000000000000000000000000000000000000000000000000000000000055d398326f99059ff775485246999027b3197955000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000600000000000000000000000000000000000000000000000000000000000000044a9059cbb000000000000000000000000e3478b0bb1a5084567c319096437924948be196400000000000000000000000000000000000000000000000000c12165fdc576f500000000000000000000000000000000000000000000000000000000c001a0088fb101357d52940fcc5ba4526d9c5a137bb14e50dc342797c0725aa4148a2ba02d101634da10da483712150068c8c2f7e578de5f98b62a239e39c9b1d0f4a3a0", + "s": "0x2d101634da10da483712150068c8c2f7e578de5f98b62a239e39c9b1d0f4a3a0", + "selectedGasFeeToken": "0x55d398326f99059ff775485246999027b3197955", + "status": "failed", + "time": 1778802232990, + "txParams": { + "data": "0xe9ae5c530101000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000004000000000000000000000000000000000000000000000000000000000000013600000000000000000000000000000000000000000000000000000000000000020000000000000000000000000000000000000000000000000000000000000000500000000000000000000000000000000000000000000000000000000000000a0000000000000000000000000000000000000000000000000000000000000018000000000000000000000000000000000000000000000000000000000000009e00000000000000000000000000000000000000000000000000000000000000ac00000000000000000000000000000000000000000000000000000000000001240000000000000000000000000f8a0bf9cf54bb92f17374d9e9a321e6a111a51bd000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000600000000000000000000000000000000000000000000000000000000000000044095ea7b30000000000000000000000001a1ec25dc08e98e5e93f1104b5e5cdd298707d310000000000000000000000000000000000000000000000000298348bed9600b7000000000000000000000000000000000000000000000000000000000000000000000000000000001a1ec25dc08e98e5e93f1104b5e5cdd298707d310000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000007c55f5755290000000000000000000000000000000000000000000000000000000000000080000000000000000000000000f8a0bf9cf54bb92f17374d9e9a321e6a111a51bd0000000000000000000000000000000000000000000000000298348bed9600b700000000000000000000000000000000000000000000000000000000000000c00000000000000000000000000000000000000000000000000000000000000018756e69737761705065726d69743246656544796e616d6963000000000000000000000000000000000000000000000000000000000000000000000000000006e0000000000000000000000000f8a0bf9cf54bb92f17374d9e9a321e6a111a51bd00000000000000000000000055d398326f99059ff775485246999027b31979550000000000000000000000000000000000000000000000000298348bed9600b70000000000000000000000000000000000000000000000001a85e18d1195a89e0000000000000000000000000000000000000000000000000000000000000120000000000000000000000000000000000000000000000000003d28b97718a335000000000000000000000000b28da7bc87a9dd1e60849aa7fcb5da24ea913c42000000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000000005ae3593564c000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000000a0000000000000000000000000000000000000000000000000000000006a066537000000000000000000000000000000000000000000000000000000000000000110000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000002000000000000000000000000000000000000000000000000000000000000004a0000000000000000000000000000000000000000000000000000000000000004000000000000000000000000000000000000000000000000000000000000000800000000000000000000000000000000000000000000000000000000000000003070b0e0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000300000000000000000000000000000000000000000000000000000000000000600000000000000000000000000000000000000000000000000000000000000300000000000000000000000000000000000000000000000000000000000000038000000000000000000000000000000000000000000000000000000000000002800000000000000000000000000000000000000000000000000000000000000020000000000000000000000000f8a0bf9cf54bb92f17374d9e9a321e6a111a51bd00000000000000000000000000000000000000000000000000000000000000800000000000000000000000000000000000000000000000000298348bed9600b70000000000000000000000000000000000000000000000001ac48ed7ccef3af70000000000000000000000000000000000000000000000000000000000000002000000000000000000000000000000000000000000000000000000000000004000000000000000000000000000000000000000000000000000000000000001000000000000000000000000008ac76a51cc950d9822d68b83fe1ad97b32cd580d0000000000000000000000000000000000000000000000000000000000000bb8000000000000000000000000000000000000000000000000000000000000003c000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000a0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000055d398326f99059ff775485246999027b319795500000000000000000000000000000000000000000000000000000000000000010000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000060000000000000000000000000f8a0bf9cf54bb92f17374d9e9a321e6a111a51bd00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000006000000000000000000000000055d398326f99059ff775485246999027b3197955000000000000000000000000c590175e458b83680867afd273527ff58f74c02b0000000000000000000000000000000000000000000000000000000000000000756e69780000b2c5de0b000000000000000000000000000000000000850000000000000000000000000000000000000000000000000000000000000000000000000000001af3f329e8be154074d8769d1ffa4ee058b1dbc3000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000600000000000000000000000000000000000000000000000000000000000000044095ea7b30000000000000000000000001a1ec25dc08e98e5e93f1104b5e5cdd298707d31000000000000000000000000000000000000000000000000123fd18867a38000000000000000000000000000000000000000000000000000000000000000000000000000000000001a1ec25dc08e98e5e93f1104b5e5cdd298707d310000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000006e55f57552900000000000000000000000000000000000000000000000000000000000000800000000000000000000000001af3f329e8be154074d8769d1ffa4ee058b1dbc3000000000000000000000000000000000000000000000000123fd18867a3800000000000000000000000000000000000000000000000000000000000000000c00000000000000000000000000000000000000000000000000000000000000018756e69737761705065726d69743246656544796e616d6963000000000000000000000000000000000000000000000000000000000000000000000000000006000000000000000000000000001af3f329e8be154074d8769d1ffa4ee058b1dbc300000000000000000000000055d398326f99059ff775485246999027b31979550000000000000000000000000000000000000000000000001216f0a8cfb11c0000000000000000000000000000000000000000000000000011b9f010ce44ebae00000000000000000000000000000000000000000000000000000000000001200000000000000000000000000000000000000000000000000028e0df97f26400000000000000000000000000b28da7bc87a9dd1e60849aa7fcb5da24ea913c42000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000004ce3593564c000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000000a0000000000000000000000000000000000000000000000000000000006a066537000000000000000000000000000000000000000000000000000000000000000110000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000002000000000000000000000000000000000000000000000000000000000000003c0000000000000000000000000000000000000000000000000000000000000004000000000000000000000000000000000000000000000000000000000000000800000000000000000000000000000000000000000000000000000000000000003070b0e000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000030000000000000000000000000000000000000000000000000000000000000060000000000000000000000000000000000000000000000000000000000000022000000000000000000000000000000000000000000000000000000000000002a000000000000000000000000000000000000000000000000000000000000001a000000000000000000000000000000000000000000000000000000000000000200000000000000000000000001af3f329e8be154074d8769d1ffa4ee058b1dbc300000000000000000000000000000000000000000000000000000000000000800000000000000000000000000000000000000000000000001216f0a8cfb11c0000000000000000000000000000000000000000000000000011bbc0efb959f2d70000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000002000000000000000000000000055d398326f99059ff775485246999027b319795500000000000000000000000000000000000000000000000000000000000000640000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000a0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000600000000000000000000000001af3f329e8be154074d8769d1ffa4ee058b1dbc300000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000006000000000000000000000000055d398326f99059ff775485246999027b3197955000000000000000000000000c590175e458b83680867afd273527ff58f74c02b0000000000000000000000000000000000000000000000000000000000000000756e69780000b2c5de0b0000000000000000000000000000000000008400000000000000000000000000000000000000000000000000000000000000000000000000000055d398326f99059ff775485246999027b3197955000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000600000000000000000000000000000000000000000000000000000000000000044a9059cbb000000000000000000000000e3478b0bb1a5084567c319096437924948be196400000000000000000000000000000000000000000000000000c12165fdc576f500000000000000000000000000000000000000000000000000000000", + "from": "0x141d32a89a1e0a5ef360034a2f60a4b917c18838", + "gas": "0x85bfd", + "gasLimit": "0x85bfd", + "maxFeePerGas": "0x3938700", + "maxPriorityFeePerGas": "0x3938700", + "nonce": "0x52", + "to": "0x141d32a89a1e0a5ef360034a2f60a4b917c18838", + "type": "0x2", + "value": "0x0" + }, + "type": "batch", + "userEditedGasLimit": false, + "userFeeLevel": "medium", + "v": "0x1", + "verifiedOnBlockchain": false + }, + { + "baseFeePerGas": "0x0", + "batchId": "0x19e28ec4d87", + "blockTimestamp": "0x6a065ee4", + "chainId": "0x38", + "defaultGasEstimates": { + "estimateType": "medium", + "gas": "0x85bfd", + "maxFeePerGas": "0x3938700", + "maxPriorityFeePerGas": "0x3938700" + }, + "delegationAddress": "0x63c0c19a282a1b52b07dd5a65b58948a07dae32b", + "excludeNativeTokenForFee": true, + "gasFeeEstimates": { + "high": { + "maxFeePerGas": "0x2faf080", + "maxPriorityFeePerGas": "0x2faf080" + }, + "low": { + "maxFeePerGas": "0x2faf080", + "maxPriorityFeePerGas": "0x2faf080" + }, + "medium": { + "maxFeePerGas": "0x2faf080", + "maxPriorityFeePerGas": "0x2faf080" + }, + "type": "fee-market" + }, + "gasFeeEstimatesLoaded": true, + "gasLimitNoBuffer": "0x85bfd", + "hash": "0x85c243aeeb7065fbc8f33c0f1a5dd352b911420280c4ff947264d8fb9fdbc6b1", + "id": "291f2100-4fef-11f1-97dc-cb72b8adab55", + "isGasFeeIncluded": true, + "isGasFeeSponsored": false, + "isGasFeeTokenIgnoredIfBalance": false, + "nestedTransactions": [ + { + "data": "0x095ea7b30000000000000000000000001a1ec25dc08e98e5e93f1104b5e5cdd298707d310000000000000000000000000000000000000000000000000298348bed9600b7", + "from": "0x141d32a89a1e0a5ef360034a2f60a4b917c18838", + "gas": "0x110fa", + "maxFeePerGas": "0x3938700", + "maxPriorityFeePerGas": "0x3938700", + "to": "0xf8a0bf9cf54bb92f17374d9e9a321e6a111a51bd", + "type": "swapApproval", + "value": "0x0" + }, + { + "data": "0x5f5755290000000000000000000000000000000000000000000000000000000000000080000000000000000000000000f8a0bf9cf54bb92f17374d9e9a321e6a111a51bd0000000000000000000000000000000000000000000000000298348bed9600b700000000000000000000000000000000000000000000000000000000000000c00000000000000000000000000000000000000000000000000000000000000018756e69737761705065726d69743246656544796e616d6963000000000000000000000000000000000000000000000000000000000000000000000000000006e0000000000000000000000000f8a0bf9cf54bb92f17374d9e9a321e6a111a51bd00000000000000000000000055d398326f99059ff775485246999027b31979550000000000000000000000000000000000000000000000000298348bed9600b70000000000000000000000000000000000000000000000001a85de2ff398a0430000000000000000000000000000000000000000000000000000000000000120000000000000000000000000000000000000000000000000003d28b1b5744116000000000000000000000000b28da7bc87a9dd1e60849aa7fcb5da24ea913c42000000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000000005ae3593564c000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000000a0000000000000000000000000000000000000000000000000000000006a0665e5000000000000000000000000000000000000000000000000000000000000000110000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000002000000000000000000000000000000000000000000000000000000000000004a0000000000000000000000000000000000000000000000000000000000000004000000000000000000000000000000000000000000000000000000000000000800000000000000000000000000000000000000000000000000000000000000003070b0e0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000300000000000000000000000000000000000000000000000000000000000000600000000000000000000000000000000000000000000000000000000000000300000000000000000000000000000000000000000000000000000000000000038000000000000000000000000000000000000000000000000000000000000002800000000000000000000000000000000000000000000000000000000000000020000000000000000000000000f8a0bf9cf54bb92f17374d9e9a321e6a111a51bd00000000000000000000000000000000000000000000000000000000000000800000000000000000000000000000000000000000000000000298348bed9600b70000000000000000000000000000000000000000000000001ac48b72bc0641c30000000000000000000000000000000000000000000000000000000000000002000000000000000000000000000000000000000000000000000000000000004000000000000000000000000000000000000000000000000000000000000001000000000000000000000000008ac76a51cc950d9822d68b83fe1ad97b32cd580d0000000000000000000000000000000000000000000000000000000000000bb8000000000000000000000000000000000000000000000000000000000000003c000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000a0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000055d398326f99059ff775485246999027b319795500000000000000000000000000000000000000000000000000000000000000010000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000060000000000000000000000000f8a0bf9cf54bb92f17374d9e9a321e6a111a51bd00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000006000000000000000000000000055d398326f99059ff775485246999027b3197955000000000000000000000000c590175e458b83680867afd273527ff58f74c02b0000000000000000000000000000000000000000000000000000000000000000756e69780000b2c5de0b0000000000000000000000000000000000003d", + "from": "0x141d32a89a1e0a5ef360034a2f60a4b917c18838", + "gas": "0x6a37c", + "maxFeePerGas": "0x3938700", + "maxPriorityFeePerGas": "0x3938700", + "to": "0x1a1ec25DC08e98e5E93F1104B5e5cdD298707d31", + "type": "swap", + "value": "0x0" + }, + { + "data": "0x095ea7b30000000000000000000000001a1ec25dc08e98e5e93f1104b5e5cdd298707d31000000000000000000000000000000000000000000000000123fd18867a38000", + "from": "0x141d32a89a1e0a5ef360034a2f60a4b917c18838", + "gas": "0x110fa", + "maxFeePerGas": "0x3938700", + "maxPriorityFeePerGas": "0x3938700", + "to": "0x1af3f329e8be154074d8769d1ffa4ee058b1dbc3", + "type": "swapApproval", + "value": "0x0" + }, + { + "data": "0x5f57552900000000000000000000000000000000000000000000000000000000000000800000000000000000000000001af3f329e8be154074d8769d1ffa4ee058b1dbc3000000000000000000000000000000000000000000000000123fd18867a3800000000000000000000000000000000000000000000000000000000000000000c00000000000000000000000000000000000000000000000000000000000000018756e69737761705065726d69743246656544796e616d6963000000000000000000000000000000000000000000000000000000000000000000000000000006000000000000000000000000001af3f329e8be154074d8769d1ffa4ee058b1dbc300000000000000000000000055d398326f99059ff775485246999027b31979550000000000000000000000000000000000000000000000001216f0a8cfb11c0000000000000000000000000000000000000000000000000011b9f010ce44ebae00000000000000000000000000000000000000000000000000000000000001200000000000000000000000000000000000000000000000000028e0df97f26400000000000000000000000000b28da7bc87a9dd1e60849aa7fcb5da24ea913c42000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000004ce3593564c000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000000a0000000000000000000000000000000000000000000000000000000006a0665e5000000000000000000000000000000000000000000000000000000000000000110000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000002000000000000000000000000000000000000000000000000000000000000003c0000000000000000000000000000000000000000000000000000000000000004000000000000000000000000000000000000000000000000000000000000000800000000000000000000000000000000000000000000000000000000000000003070b0e000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000030000000000000000000000000000000000000000000000000000000000000060000000000000000000000000000000000000000000000000000000000000022000000000000000000000000000000000000000000000000000000000000002a000000000000000000000000000000000000000000000000000000000000001a000000000000000000000000000000000000000000000000000000000000000200000000000000000000000001af3f329e8be154074d8769d1ffa4ee058b1dbc300000000000000000000000000000000000000000000000000000000000000800000000000000000000000000000000000000000000000001216f0a8cfb11c0000000000000000000000000000000000000000000000000011bbc0efb959f2d70000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000002000000000000000000000000055d398326f99059ff775485246999027b319795500000000000000000000000000000000000000000000000000000000000000640000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000a0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000600000000000000000000000001af3f329e8be154074d8769d1ffa4ee058b1dbc300000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000006000000000000000000000000055d398326f99059ff775485246999027b3197955000000000000000000000000c590175e458b83680867afd273527ff58f74c02b0000000000000000000000000000000000000000000000000000000000000000756e69780000b2c5de0b0000000000000000000000000000000000004a", + "from": "0x141d32a89a1e0a5ef360034a2f60a4b917c18838", + "gas": "0x5d0e7", + "maxFeePerGas": "0x3938700", + "maxPriorityFeePerGas": "0x3938700", + "to": "0x1a1ec25DC08e98e5E93F1104B5e5cdD298707d31", + "type": "swap", + "value": "0x0" + }, + { + "data": "0xa9059cbb000000000000000000000000e3478b0bb1a5084567c319096437924948be196400000000000000000000000000000000000000000000000000c11eb3cc1e44ab", + "from": "0x141d32a89a1e0a5ef360034a2f60a4b917c18838", + "gas": "0xcc57", + "maxFeePerGas": "0x3938700", + "maxPriorityFeePerGas": "0x3938700", + "to": "0x55d398326f99059ff775485246999027b3197955", + "type": "transfer", + "value": "0x0" + } + ], + "networkClientId": "9a1eafde-5f04-434b-b011-e9de5c50baf0", + "origin": "metamask", + "originalGasEstimate": "0x85bfd", + "postTxBalance": "0x170090655980", + "r": "0xd4d9d08f1ffcd7eea62b583459433f9cc46a0b344373f865d36ae28961d387eb", + "rawTx": "0x02f9143138528403938700840393870083085bfd94141d32a89a1e0a5ef360034a2f60a4b917c1883880b913c4e9ae5c530101000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000004000000000000000000000000000000000000000000000000000000000000013600000000000000000000000000000000000000000000000000000000000000020000000000000000000000000000000000000000000000000000000000000000500000000000000000000000000000000000000000000000000000000000000a0000000000000000000000000000000000000000000000000000000000000018000000000000000000000000000000000000000000000000000000000000009e00000000000000000000000000000000000000000000000000000000000000ac00000000000000000000000000000000000000000000000000000000000001240000000000000000000000000f8a0bf9cf54bb92f17374d9e9a321e6a111a51bd000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000600000000000000000000000000000000000000000000000000000000000000044095ea7b30000000000000000000000001a1ec25dc08e98e5e93f1104b5e5cdd298707d310000000000000000000000000000000000000000000000000298348bed9600b7000000000000000000000000000000000000000000000000000000000000000000000000000000001a1ec25dc08e98e5e93f1104b5e5cdd298707d310000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000007c55f5755290000000000000000000000000000000000000000000000000000000000000080000000000000000000000000f8a0bf9cf54bb92f17374d9e9a321e6a111a51bd0000000000000000000000000000000000000000000000000298348bed9600b700000000000000000000000000000000000000000000000000000000000000c00000000000000000000000000000000000000000000000000000000000000018756e69737761705065726d69743246656544796e616d6963000000000000000000000000000000000000000000000000000000000000000000000000000006e0000000000000000000000000f8a0bf9cf54bb92f17374d9e9a321e6a111a51bd00000000000000000000000055d398326f99059ff775485246999027b31979550000000000000000000000000000000000000000000000000298348bed9600b70000000000000000000000000000000000000000000000001a85de2ff398a0430000000000000000000000000000000000000000000000000000000000000120000000000000000000000000000000000000000000000000003d28b1b5744116000000000000000000000000b28da7bc87a9dd1e60849aa7fcb5da24ea913c42000000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000000005ae3593564c000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000000a0000000000000000000000000000000000000000000000000000000006a0665e5000000000000000000000000000000000000000000000000000000000000000110000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000002000000000000000000000000000000000000000000000000000000000000004a0000000000000000000000000000000000000000000000000000000000000004000000000000000000000000000000000000000000000000000000000000000800000000000000000000000000000000000000000000000000000000000000003070b0e0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000300000000000000000000000000000000000000000000000000000000000000600000000000000000000000000000000000000000000000000000000000000300000000000000000000000000000000000000000000000000000000000000038000000000000000000000000000000000000000000000000000000000000002800000000000000000000000000000000000000000000000000000000000000020000000000000000000000000f8a0bf9cf54bb92f17374d9e9a321e6a111a51bd00000000000000000000000000000000000000000000000000000000000000800000000000000000000000000000000000000000000000000298348bed9600b70000000000000000000000000000000000000000000000001ac48b72bc0641c30000000000000000000000000000000000000000000000000000000000000002000000000000000000000000000000000000000000000000000000000000004000000000000000000000000000000000000000000000000000000000000001000000000000000000000000008ac76a51cc950d9822d68b83fe1ad97b32cd580d0000000000000000000000000000000000000000000000000000000000000bb8000000000000000000000000000000000000000000000000000000000000003c000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000a0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000055d398326f99059ff775485246999027b319795500000000000000000000000000000000000000000000000000000000000000010000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000060000000000000000000000000f8a0bf9cf54bb92f17374d9e9a321e6a111a51bd00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000006000000000000000000000000055d398326f99059ff775485246999027b3197955000000000000000000000000c590175e458b83680867afd273527ff58f74c02b0000000000000000000000000000000000000000000000000000000000000000756e69780000b2c5de0b0000000000000000000000000000000000003d0000000000000000000000000000000000000000000000000000000000000000000000000000001af3f329e8be154074d8769d1ffa4ee058b1dbc3000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000600000000000000000000000000000000000000000000000000000000000000044095ea7b30000000000000000000000001a1ec25dc08e98e5e93f1104b5e5cdd298707d31000000000000000000000000000000000000000000000000123fd18867a38000000000000000000000000000000000000000000000000000000000000000000000000000000000001a1ec25dc08e98e5e93f1104b5e5cdd298707d310000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000006e55f57552900000000000000000000000000000000000000000000000000000000000000800000000000000000000000001af3f329e8be154074d8769d1ffa4ee058b1dbc3000000000000000000000000000000000000000000000000123fd18867a3800000000000000000000000000000000000000000000000000000000000000000c00000000000000000000000000000000000000000000000000000000000000018756e69737761705065726d69743246656544796e616d6963000000000000000000000000000000000000000000000000000000000000000000000000000006000000000000000000000000001af3f329e8be154074d8769d1ffa4ee058b1dbc300000000000000000000000055d398326f99059ff775485246999027b31979550000000000000000000000000000000000000000000000001216f0a8cfb11c0000000000000000000000000000000000000000000000000011b9f010ce44ebae00000000000000000000000000000000000000000000000000000000000001200000000000000000000000000000000000000000000000000028e0df97f26400000000000000000000000000b28da7bc87a9dd1e60849aa7fcb5da24ea913c42000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000004ce3593564c000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000000a0000000000000000000000000000000000000000000000000000000006a0665e5000000000000000000000000000000000000000000000000000000000000000110000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000002000000000000000000000000000000000000000000000000000000000000003c0000000000000000000000000000000000000000000000000000000000000004000000000000000000000000000000000000000000000000000000000000000800000000000000000000000000000000000000000000000000000000000000003070b0e000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000030000000000000000000000000000000000000000000000000000000000000060000000000000000000000000000000000000000000000000000000000000022000000000000000000000000000000000000000000000000000000000000002a000000000000000000000000000000000000000000000000000000000000001a000000000000000000000000000000000000000000000000000000000000000200000000000000000000000001af3f329e8be154074d8769d1ffa4ee058b1dbc300000000000000000000000000000000000000000000000000000000000000800000000000000000000000000000000000000000000000001216f0a8cfb11c0000000000000000000000000000000000000000000000000011bbc0efb959f2d70000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000002000000000000000000000000055d398326f99059ff775485246999027b319795500000000000000000000000000000000000000000000000000000000000000640000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000a0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000600000000000000000000000001af3f329e8be154074d8769d1ffa4ee058b1dbc300000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000006000000000000000000000000055d398326f99059ff775485246999027b3197955000000000000000000000000c590175e458b83680867afd273527ff58f74c02b0000000000000000000000000000000000000000000000000000000000000000756e69780000b2c5de0b0000000000000000000000000000000000004a00000000000000000000000000000000000000000000000000000000000000000000000000000055d398326f99059ff775485246999027b3197955000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000600000000000000000000000000000000000000000000000000000000000000044a9059cbb000000000000000000000000e3478b0bb1a5084567c319096437924948be196400000000000000000000000000000000000000000000000000c11eb3cc1e44ab00000000000000000000000000000000000000000000000000000000c001a0d4d9d08f1ffcd7eea62b583459433f9cc46a0b344373f865d36ae28961d387eba015771933aa63ae6bc0c0430663795cf8dc187ffa69881d855da343fb93934499", + "s": "0x15771933aa63ae6bc0c0430663795cf8dc187ffa69881d855da343fb93934499", + "selectedGasFeeToken": "0x55d398326f99059ff775485246999027b3197955", + "status": "confirmed", + "submittedTime": 1778802405748, + "time": 1778802403088, + "txParams": { + "data": "0xe9ae5c530101000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000004000000000000000000000000000000000000000000000000000000000000013600000000000000000000000000000000000000000000000000000000000000020000000000000000000000000000000000000000000000000000000000000000500000000000000000000000000000000000000000000000000000000000000a0000000000000000000000000000000000000000000000000000000000000018000000000000000000000000000000000000000000000000000000000000009e00000000000000000000000000000000000000000000000000000000000000ac00000000000000000000000000000000000000000000000000000000000001240000000000000000000000000f8a0bf9cf54bb92f17374d9e9a321e6a111a51bd000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000600000000000000000000000000000000000000000000000000000000000000044095ea7b30000000000000000000000001a1ec25dc08e98e5e93f1104b5e5cdd298707d310000000000000000000000000000000000000000000000000298348bed9600b7000000000000000000000000000000000000000000000000000000000000000000000000000000001a1ec25dc08e98e5e93f1104b5e5cdd298707d310000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000007c55f5755290000000000000000000000000000000000000000000000000000000000000080000000000000000000000000f8a0bf9cf54bb92f17374d9e9a321e6a111a51bd0000000000000000000000000000000000000000000000000298348bed9600b700000000000000000000000000000000000000000000000000000000000000c00000000000000000000000000000000000000000000000000000000000000018756e69737761705065726d69743246656544796e616d6963000000000000000000000000000000000000000000000000000000000000000000000000000006e0000000000000000000000000f8a0bf9cf54bb92f17374d9e9a321e6a111a51bd00000000000000000000000055d398326f99059ff775485246999027b31979550000000000000000000000000000000000000000000000000298348bed9600b70000000000000000000000000000000000000000000000001a85de2ff398a0430000000000000000000000000000000000000000000000000000000000000120000000000000000000000000000000000000000000000000003d28b1b5744116000000000000000000000000b28da7bc87a9dd1e60849aa7fcb5da24ea913c42000000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000000005ae3593564c000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000000a0000000000000000000000000000000000000000000000000000000006a0665e5000000000000000000000000000000000000000000000000000000000000000110000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000002000000000000000000000000000000000000000000000000000000000000004a0000000000000000000000000000000000000000000000000000000000000004000000000000000000000000000000000000000000000000000000000000000800000000000000000000000000000000000000000000000000000000000000003070b0e0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000300000000000000000000000000000000000000000000000000000000000000600000000000000000000000000000000000000000000000000000000000000300000000000000000000000000000000000000000000000000000000000000038000000000000000000000000000000000000000000000000000000000000002800000000000000000000000000000000000000000000000000000000000000020000000000000000000000000f8a0bf9cf54bb92f17374d9e9a321e6a111a51bd00000000000000000000000000000000000000000000000000000000000000800000000000000000000000000000000000000000000000000298348bed9600b70000000000000000000000000000000000000000000000001ac48b72bc0641c30000000000000000000000000000000000000000000000000000000000000002000000000000000000000000000000000000000000000000000000000000004000000000000000000000000000000000000000000000000000000000000001000000000000000000000000008ac76a51cc950d9822d68b83fe1ad97b32cd580d0000000000000000000000000000000000000000000000000000000000000bb8000000000000000000000000000000000000000000000000000000000000003c000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000a0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000055d398326f99059ff775485246999027b319795500000000000000000000000000000000000000000000000000000000000000010000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000060000000000000000000000000f8a0bf9cf54bb92f17374d9e9a321e6a111a51bd00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000006000000000000000000000000055d398326f99059ff775485246999027b3197955000000000000000000000000c590175e458b83680867afd273527ff58f74c02b0000000000000000000000000000000000000000000000000000000000000000756e69780000b2c5de0b0000000000000000000000000000000000003d0000000000000000000000000000000000000000000000000000000000000000000000000000001af3f329e8be154074d8769d1ffa4ee058b1dbc3000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000600000000000000000000000000000000000000000000000000000000000000044095ea7b30000000000000000000000001a1ec25dc08e98e5e93f1104b5e5cdd298707d31000000000000000000000000000000000000000000000000123fd18867a38000000000000000000000000000000000000000000000000000000000000000000000000000000000001a1ec25dc08e98e5e93f1104b5e5cdd298707d310000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000006e55f57552900000000000000000000000000000000000000000000000000000000000000800000000000000000000000001af3f329e8be154074d8769d1ffa4ee058b1dbc3000000000000000000000000000000000000000000000000123fd18867a3800000000000000000000000000000000000000000000000000000000000000000c00000000000000000000000000000000000000000000000000000000000000018756e69737761705065726d69743246656544796e616d6963000000000000000000000000000000000000000000000000000000000000000000000000000006000000000000000000000000001af3f329e8be154074d8769d1ffa4ee058b1dbc300000000000000000000000055d398326f99059ff775485246999027b31979550000000000000000000000000000000000000000000000001216f0a8cfb11c0000000000000000000000000000000000000000000000000011b9f010ce44ebae00000000000000000000000000000000000000000000000000000000000001200000000000000000000000000000000000000000000000000028e0df97f26400000000000000000000000000b28da7bc87a9dd1e60849aa7fcb5da24ea913c42000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000004ce3593564c000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000000a0000000000000000000000000000000000000000000000000000000006a0665e5000000000000000000000000000000000000000000000000000000000000000110000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000002000000000000000000000000000000000000000000000000000000000000003c0000000000000000000000000000000000000000000000000000000000000004000000000000000000000000000000000000000000000000000000000000000800000000000000000000000000000000000000000000000000000000000000003070b0e000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000030000000000000000000000000000000000000000000000000000000000000060000000000000000000000000000000000000000000000000000000000000022000000000000000000000000000000000000000000000000000000000000002a000000000000000000000000000000000000000000000000000000000000001a000000000000000000000000000000000000000000000000000000000000000200000000000000000000000001af3f329e8be154074d8769d1ffa4ee058b1dbc300000000000000000000000000000000000000000000000000000000000000800000000000000000000000000000000000000000000000001216f0a8cfb11c0000000000000000000000000000000000000000000000000011bbc0efb959f2d70000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000002000000000000000000000000055d398326f99059ff775485246999027b319795500000000000000000000000000000000000000000000000000000000000000640000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000a0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000600000000000000000000000001af3f329e8be154074d8769d1ffa4ee058b1dbc300000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000006000000000000000000000000055d398326f99059ff775485246999027b3197955000000000000000000000000c590175e458b83680867afd273527ff58f74c02b0000000000000000000000000000000000000000000000000000000000000000756e69780000b2c5de0b0000000000000000000000000000000000004a00000000000000000000000000000000000000000000000000000000000000000000000000000055d398326f99059ff775485246999027b3197955000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000600000000000000000000000000000000000000000000000000000000000000044a9059cbb000000000000000000000000e3478b0bb1a5084567c319096437924948be196400000000000000000000000000000000000000000000000000c11eb3cc1e44ab00000000000000000000000000000000000000000000000000000000", + "from": "0x141d32a89a1e0a5ef360034a2f60a4b917c18838", + "gas": "0x85bfd", + "gasLimit": "0x85bfd", + "maxFeePerGas": "0x3938700", + "maxPriorityFeePerGas": "0x3938700", + "to": "0x141d32a89a1e0a5ef360034a2f60a4b917c18838", + "type": "0x2", + "value": "0x0" + }, + "txReceipt": { + "blockHash": "0x14a973a77fc71f318f1ef60efb6e7dbbbf8b27ee99bfd82e13bedbd7bc9cce42", + "blockNumber": "0x5dc61a6", + "contractAddress": null, + "cumulativeGasUsed": "0xd3bb2", + "effectiveGasPrice": "0x3938700", + "from": "0xb01caea8c6c47bbf4f4b4c5080ca642043359c2e", + "gasUsed": "0xa559c", + "logs": [ + { + "address": "0x04658b29f6b82ed55274221a06fc97d318e25416", + "blockHash": "0x14a973a77fc71f318f1ef60efb6e7dbbbf8b27ee99bfd82e13bedbd7bc9cce42", + "blockNumber": "0x5dc61a6", + "blockTimestamp": "0x6a065ee4", + "data": "0x00000000000000000000000000000000000000000000000000000000000000010000000000000000000000000000000000000000000000000000000000000001", + "logIndex": "0x4", + "removed": false, + "topics": [ + "0x449da07f2c06c9d1a6b19d2454ffe749e8cf991d22f686e076a1a4844c5ff370", + "0x000000000000000000000000db9b1e94b5b69df7e401ddbede43491141047db3", + "0x000000000000000000000000b01caea8c6c47bbf4f4b4c5080ca642043359c2e", + "0xefc7b06b339cf01850f71b5eb84fbd0c3c3f22b072fadc9b70973747c67f875c" + ], + "transactionHash": "0x85c243aeeb7065fbc8f33c0f1a5dd352b911420280c4ff947264d8fb9fdbc6b1", + "transactionIndex": "0x2" + }, + { + "address": "0xf8a0bf9cf54bb92f17374d9e9a321e6a111a51bd", + "blockHash": "0x14a973a77fc71f318f1ef60efb6e7dbbbf8b27ee99bfd82e13bedbd7bc9cce42", + "blockNumber": "0x5dc61a6", + "blockTimestamp": "0x6a065ee4", + "data": "0x0000000000000000000000000000000000000000000000000298348bed9600b7", + "logIndex": "0x5", + "removed": false, + "topics": [ + "0x8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925", + "0x000000000000000000000000141d32a89a1e0a5ef360034a2f60a4b917c18838", + "0x0000000000000000000000001a1ec25dc08e98e5e93f1104b5e5cdd298707d31" + ], + "transactionHash": "0x85c243aeeb7065fbc8f33c0f1a5dd352b911420280c4ff947264d8fb9fdbc6b1", + "transactionIndex": "0x2" + }, + { + "address": "0xf8a0bf9cf54bb92f17374d9e9a321e6a111a51bd", + "blockHash": "0x14a973a77fc71f318f1ef60efb6e7dbbbf8b27ee99bfd82e13bedbd7bc9cce42", + "blockNumber": "0x5dc61a6", + "blockTimestamp": "0x6a065ee4", + "data": "0x0000000000000000000000000000000000000000000000000298348bed9600b7", + "logIndex": "0x6", + "removed": false, + "topics": [ + "0xddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef", + "0x000000000000000000000000141d32a89a1e0a5ef360034a2f60a4b917c18838", + "0x000000000000000000000000c590175e458b83680867afd273527ff58f74c02b" + ], + "transactionHash": "0x85c243aeeb7065fbc8f33c0f1a5dd352b911420280c4ff947264d8fb9fdbc6b1", + "transactionIndex": "0x2" + }, + { + "address": "0xf8a0bf9cf54bb92f17374d9e9a321e6a111a51bd", + "blockHash": "0x14a973a77fc71f318f1ef60efb6e7dbbbf8b27ee99bfd82e13bedbd7bc9cce42", + "blockNumber": "0x5dc61a6", + "blockTimestamp": "0x6a065ee4", + "data": "0x0000000000000000000000000000000000000000000000000000000000000000", + "logIndex": "0x7", + "removed": false, + "topics": [ + "0x8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925", + "0x000000000000000000000000141d32a89a1e0a5ef360034a2f60a4b917c18838", + "0x0000000000000000000000001a1ec25dc08e98e5e93f1104b5e5cdd298707d31" + ], + "transactionHash": "0x85c243aeeb7065fbc8f33c0f1a5dd352b911420280c4ff947264d8fb9fdbc6b1", + "transactionIndex": "0x2" + }, + { + "address": "0x000000000022d473030f116ddee9f6b43ac78ba3", + "blockHash": "0x14a973a77fc71f318f1ef60efb6e7dbbbf8b27ee99bfd82e13bedbd7bc9cce42", + "blockNumber": "0x5dc61a6", + "blockTimestamp": "0x6a065ee4", + "data": "0x0000000000000000000000000000000000000000000000000298348bed9600b7000000000000000000000000000000000000000000000000000000006a065ee4", + "logIndex": "0x8", + "removed": false, + "topics": [ + "0xda9fa7c1b00402c17d0161b249b1ab8bbec047c5a52207b9c112deffd817036b", + "0x000000000000000000000000c590175e458b83680867afd273527ff58f74c02b", + "0x000000000000000000000000f8a0bf9cf54bb92f17374d9e9a321e6a111a51bd", + "0x0000000000000000000000001906c1d672b88cd1b9ac7593301ca990f94eae07" + ], + "transactionHash": "0x85c243aeeb7065fbc8f33c0f1a5dd352b911420280c4ff947264d8fb9fdbc6b1", + "transactionIndex": "0x2" + }, + { + "address": "0x28e2ea090877bf75740558f6bfb36a5ffee9e9df", + "blockHash": "0x14a973a77fc71f318f1ef60efb6e7dbbbf8b27ee99bfd82e13bedbd7bc9cce42", + "blockNumber": "0x5dc61a6", + "blockTimestamp": "0x6a065ee4", + "data": "0x0000000000000000000000000000000000000000000000001b4e1aa7c448cbfffffffffffffffffffffffffffffffffffffffffffffffffffd67cb741269ff4900000000000000000000000000000000000000004edebf580ed80de2dea2c00300000000000000000000000000000000000000000000001127a66d137a2cba69ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffa4030000000000000000000000000000000000000000000000000000000000000bb8", + "logIndex": "0x9", + "removed": false, + "topics": [ + "0x40e9cecb9f5f1f1c5b9c97dec2917b7ee92e57ba5563708daca94dd84ad7112f", + "0xde0466a03cdfda060d385b4973a474f65b3d28a4ca9c8a79804d3ef8cb90cd27", + "0x0000000000000000000000001906c1d672b88cd1b9ac7593301ca990f94eae07" + ], + "transactionHash": "0x85c243aeeb7065fbc8f33c0f1a5dd352b911420280c4ff947264d8fb9fdbc6b1", + "transactionIndex": "0x2" + }, + { + "address": "0x28e2ea090877bf75740558f6bfb36a5ffee9e9df", + "blockHash": "0x14a973a77fc71f318f1ef60efb6e7dbbbf8b27ee99bfd82e13bedbd7bc9cce42", + "blockNumber": "0x5dc61a6", + "blockTimestamp": "0x6a065ee4", + "data": "0x0000000000000000000000000000000000000000000000001b4d9cd41d16cbc4ffffffffffffffffffffffffffffffffffffffffffffffffe4b1e5583bb7340100000000000000000000000000000000000000010002458af6812d050a950503000000000000000000000000000000000000000000fe6070bf9659fdaef8d9b400000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001", + "logIndex": "0xa", + "removed": false, + "topics": [ + "0x40e9cecb9f5f1f1c5b9c97dec2917b7ee92e57ba5563708daca94dd84ad7112f", + "0x8321c1f53959b14ece4b5400e60aeac59e7b6b8bac446f2f0a89b9e84e68a08a", + "0x0000000000000000000000001906c1d672b88cd1b9ac7593301ca990f94eae07" + ], + "transactionHash": "0x85c243aeeb7065fbc8f33c0f1a5dd352b911420280c4ff947264d8fb9fdbc6b1", + "transactionIndex": "0x2" + }, + { + "address": "0xf8a0bf9cf54bb92f17374d9e9a321e6a111a51bd", + "blockHash": "0x14a973a77fc71f318f1ef60efb6e7dbbbf8b27ee99bfd82e13bedbd7bc9cce42", + "blockNumber": "0x5dc61a6", + "blockTimestamp": "0x6a065ee4", + "data": "0x0000000000000000000000000000000000000000000000000298348bed9600b7", + "logIndex": "0xb", + "removed": false, + "topics": [ + "0xddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef", + "0x000000000000000000000000c590175e458b83680867afd273527ff58f74c02b", + "0x00000000000000000000000028e2ea090877bf75740558f6bfb36a5ffee9e9df" + ], + "transactionHash": "0x85c243aeeb7065fbc8f33c0f1a5dd352b911420280c4ff947264d8fb9fdbc6b1", + "transactionIndex": "0x2" + }, + { + "address": "0xf8a0bf9cf54bb92f17374d9e9a321e6a111a51bd", + "blockHash": "0x14a973a77fc71f318f1ef60efb6e7dbbbf8b27ee99bfd82e13bedbd7bc9cce42", + "blockNumber": "0x5dc61a6", + "blockTimestamp": "0x6a065ee4", + "data": "0xfffffffffffffffffffffffffffffffffffffffffffffffa7a8f6ad09d677858", + "logIndex": "0xc", + "removed": false, + "topics": [ + "0x8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925", + "0x000000000000000000000000c590175e458b83680867afd273527ff58f74c02b", + "0x000000000000000000000000000000000022d473030f116ddee9f6b43ac78ba3" + ], + "transactionHash": "0x85c243aeeb7065fbc8f33c0f1a5dd352b911420280c4ff947264d8fb9fdbc6b1", + "transactionIndex": "0x2" + }, + { + "address": "0x55d398326f99059ff775485246999027b3197955", + "blockHash": "0x14a973a77fc71f318f1ef60efb6e7dbbbf8b27ee99bfd82e13bedbd7bc9cce42", + "blockNumber": "0x5dc61a6", + "blockTimestamp": "0x6a065ee4", + "data": "0x0000000000000000000000000000000000000000000000001b4d9cd41d16cbc4", + "logIndex": "0xd", + "removed": false, + "topics": [ + "0xddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef", + "0x00000000000000000000000028e2ea090877bf75740558f6bfb36a5ffee9e9df", + "0x000000000000000000000000c590175e458b83680867afd273527ff58f74c02b" + ], + "transactionHash": "0x85c243aeeb7065fbc8f33c0f1a5dd352b911420280c4ff947264d8fb9fdbc6b1", + "transactionIndex": "0x2" + }, + { + "address": "0x55d398326f99059ff775485246999027b3197955", + "blockHash": "0x14a973a77fc71f318f1ef60efb6e7dbbbf8b27ee99bfd82e13bedbd7bc9cce42", + "blockNumber": "0x5dc61a6", + "blockTimestamp": "0x6a065ee4", + "data": "0x000000000000000000000000000000000000000000000000003d28b1b5744116", + "logIndex": "0xe", + "removed": false, + "topics": [ + "0xddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef", + "0x000000000000000000000000c590175e458b83680867afd273527ff58f74c02b", + "0x000000000000000000000000b28da7bc87a9dd1e60849aa7fcb5da24ea913c42" + ], + "transactionHash": "0x85c243aeeb7065fbc8f33c0f1a5dd352b911420280c4ff947264d8fb9fdbc6b1", + "transactionIndex": "0x2" + }, + { + "address": "0x55d398326f99059ff775485246999027b3197955", + "blockHash": "0x14a973a77fc71f318f1ef60efb6e7dbbbf8b27ee99bfd82e13bedbd7bc9cce42", + "blockNumber": "0x5dc61a6", + "blockTimestamp": "0x6a065ee4", + "data": "0x0000000000000000000000000000000000000000000000001b10742267a28aae", + "logIndex": "0xf", + "removed": false, + "topics": [ + "0xddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef", + "0x000000000000000000000000c590175e458b83680867afd273527ff58f74c02b", + "0x000000000000000000000000141d32a89a1e0a5ef360034a2f60a4b917c18838" + ], + "transactionHash": "0x85c243aeeb7065fbc8f33c0f1a5dd352b911420280c4ff947264d8fb9fdbc6b1", + "transactionIndex": "0x2" + }, + { + "address": "0x1a1ec25dc08e98e5e93f1104b5e5cdd298707d31", + "blockHash": "0x14a973a77fc71f318f1ef60efb6e7dbbbf8b27ee99bfd82e13bedbd7bc9cce42", + "blockNumber": "0x5dc61a6", + "blockTimestamp": "0x6a065ee4", + "data": "0x", + "logIndex": "0x10", + "removed": false, + "topics": [ + "0xbeee1e6e7fe307ddcf84b0a16137a4430ad5e2480fc4f4a8e250ab56ccd7630d", + "0x9cc844e2828788f25f9d674f9dfb6a66ef6b8c38360c0ec1fa99e0b18c32eae8", + "0x000000000000000000000000141d32a89a1e0a5ef360034a2f60a4b917c18838" + ], + "transactionHash": "0x85c243aeeb7065fbc8f33c0f1a5dd352b911420280c4ff947264d8fb9fdbc6b1", + "transactionIndex": "0x2" + }, + { + "address": "0x1af3f329e8be154074d8769d1ffa4ee058b1dbc3", + "blockHash": "0x14a973a77fc71f318f1ef60efb6e7dbbbf8b27ee99bfd82e13bedbd7bc9cce42", + "blockNumber": "0x5dc61a6", + "blockTimestamp": "0x6a065ee4", + "data": "0x000000000000000000000000000000000000000000000000123fd18867a38000", + "logIndex": "0x11", + "removed": false, + "topics": [ + "0x8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925", + "0x000000000000000000000000141d32a89a1e0a5ef360034a2f60a4b917c18838", + "0x0000000000000000000000001a1ec25dc08e98e5e93f1104b5e5cdd298707d31" + ], + "transactionHash": "0x85c243aeeb7065fbc8f33c0f1a5dd352b911420280c4ff947264d8fb9fdbc6b1", + "transactionIndex": "0x2" + }, + { + "address": "0x1af3f329e8be154074d8769d1ffa4ee058b1dbc3", + "blockHash": "0x14a973a77fc71f318f1ef60efb6e7dbbbf8b27ee99bfd82e13bedbd7bc9cce42", + "blockNumber": "0x5dc61a6", + "blockTimestamp": "0x6a065ee4", + "data": "0x000000000000000000000000000000000000000000000000123fd18867a38000", + "logIndex": "0x12", + "removed": false, + "topics": [ + "0xddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef", + "0x000000000000000000000000141d32a89a1e0a5ef360034a2f60a4b917c18838", + "0x000000000000000000000000c590175e458b83680867afd273527ff58f74c02b" + ], + "transactionHash": "0x85c243aeeb7065fbc8f33c0f1a5dd352b911420280c4ff947264d8fb9fdbc6b1", + "transactionIndex": "0x2" + }, + { + "address": "0x1af3f329e8be154074d8769d1ffa4ee058b1dbc3", + "blockHash": "0x14a973a77fc71f318f1ef60efb6e7dbbbf8b27ee99bfd82e13bedbd7bc9cce42", + "blockNumber": "0x5dc61a6", + "blockTimestamp": "0x6a065ee4", + "data": "0x0000000000000000000000000000000000000000000000000000000000000000", + "logIndex": "0x13", + "removed": false, + "topics": [ + "0x8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925", + "0x000000000000000000000000141d32a89a1e0a5ef360034a2f60a4b917c18838", + "0x0000000000000000000000001a1ec25dc08e98e5e93f1104b5e5cdd298707d31" + ], + "transactionHash": "0x85c243aeeb7065fbc8f33c0f1a5dd352b911420280c4ff947264d8fb9fdbc6b1", + "transactionIndex": "0x2" + }, + { + "address": "0x000000000022d473030f116ddee9f6b43ac78ba3", + "blockHash": "0x14a973a77fc71f318f1ef60efb6e7dbbbf8b27ee99bfd82e13bedbd7bc9cce42", + "blockNumber": "0x5dc61a6", + "blockTimestamp": "0x6a065ee4", + "data": "0x0000000000000000000000000000000000000000000000001216f0a8cfb11c00000000000000000000000000000000000000000000000000000000006a065ee4", + "logIndex": "0x14", + "removed": false, + "topics": [ + "0xda9fa7c1b00402c17d0161b249b1ab8bbec047c5a52207b9c112deffd817036b", + "0x000000000000000000000000c590175e458b83680867afd273527ff58f74c02b", + "0x0000000000000000000000001af3f329e8be154074d8769d1ffa4ee058b1dbc3", + "0x0000000000000000000000001906c1d672b88cd1b9ac7593301ca990f94eae07" + ], + "transactionHash": "0x85c243aeeb7065fbc8f33c0f1a5dd352b911420280c4ff947264d8fb9fdbc6b1", + "transactionIndex": "0x2" + }, + { + "address": "0x28e2ea090877bf75740558f6bfb36a5ffee9e9df", + "blockHash": "0x14a973a77fc71f318f1ef60efb6e7dbbbf8b27ee99bfd82e13bedbd7bc9cce42", + "blockNumber": "0x5dc61a6", + "blockTimestamp": "0x6a065ee4", + "data": "0xffffffffffffffffffffffffffffffffffffffffffffffffede90f57304ee40000000000000000000000000000000000000000000000000012168c79a37558fb0000000000000000000000000000000000000001000080ea2cad5e018016fadd000000000000000000000000000000000000000000087b92bf3c2710fa8e764d00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000064", + "logIndex": "0x15", + "removed": false, + "topics": [ + "0x40e9cecb9f5f1f1c5b9c97dec2917b7ee92e57ba5563708daca94dd84ad7112f", + "0x1eb0be4b2330177969b56f8a813d9ffa0d01ed3a95da8618482bb1cb42805656", + "0x0000000000000000000000001906c1d672b88cd1b9ac7593301ca990f94eae07" + ], + "transactionHash": "0x85c243aeeb7065fbc8f33c0f1a5dd352b911420280c4ff947264d8fb9fdbc6b1", + "transactionIndex": "0x2" + }, + { + "address": "0x1af3f329e8be154074d8769d1ffa4ee058b1dbc3", + "blockHash": "0x14a973a77fc71f318f1ef60efb6e7dbbbf8b27ee99bfd82e13bedbd7bc9cce42", + "blockNumber": "0x5dc61a6", + "blockTimestamp": "0x6a065ee4", + "data": "0x0000000000000000000000000000000000000000000000001216f0a8cfb11c00", + "logIndex": "0x16", + "removed": false, + "topics": [ + "0xddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef", + "0x000000000000000000000000c590175e458b83680867afd273527ff58f74c02b", + "0x00000000000000000000000028e2ea090877bf75740558f6bfb36a5ffee9e9df" + ], + "transactionHash": "0x85c243aeeb7065fbc8f33c0f1a5dd352b911420280c4ff947264d8fb9fdbc6b1", + "transactionIndex": "0x2" + }, + { + "address": "0x1af3f329e8be154074d8769d1ffa4ee058b1dbc3", + "blockHash": "0x14a973a77fc71f318f1ef60efb6e7dbbbf8b27ee99bfd82e13bedbd7bc9cce42", + "blockNumber": "0x5dc61a6", + "blockTimestamp": "0x6a065ee4", + "data": "0xfffffffffffffffffffffffffffffffffffffffffffffe077775c79c460b0ec3", + "logIndex": "0x17", + "removed": false, + "topics": [ + "0x8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925", + "0x000000000000000000000000c590175e458b83680867afd273527ff58f74c02b", + "0x000000000000000000000000000000000022d473030f116ddee9f6b43ac78ba3" + ], + "transactionHash": "0x85c243aeeb7065fbc8f33c0f1a5dd352b911420280c4ff947264d8fb9fdbc6b1", + "transactionIndex": "0x2" + }, + { + "address": "0x55d398326f99059ff775485246999027b3197955", + "blockHash": "0x14a973a77fc71f318f1ef60efb6e7dbbbf8b27ee99bfd82e13bedbd7bc9cce42", + "blockNumber": "0x5dc61a6", + "blockTimestamp": "0x6a065ee4", + "data": "0x00000000000000000000000000000000000000000000000012168c79a37558fb", + "logIndex": "0x18", + "removed": false, + "topics": [ + "0xddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef", + "0x00000000000000000000000028e2ea090877bf75740558f6bfb36a5ffee9e9df", + "0x000000000000000000000000c590175e458b83680867afd273527ff58f74c02b" + ], + "transactionHash": "0x85c243aeeb7065fbc8f33c0f1a5dd352b911420280c4ff947264d8fb9fdbc6b1", + "transactionIndex": "0x2" + }, + { + "address": "0x1af3f329e8be154074d8769d1ffa4ee058b1dbc3", + "blockHash": "0x14a973a77fc71f318f1ef60efb6e7dbbbf8b27ee99bfd82e13bedbd7bc9cce42", + "blockNumber": "0x5dc61a6", + "blockTimestamp": "0x6a065ee4", + "data": "0x0000000000000000000000000000000000000000000000000028e0df97f26400", + "logIndex": "0x19", + "removed": false, + "topics": [ + "0xddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef", + "0x000000000000000000000000c590175e458b83680867afd273527ff58f74c02b", + "0x000000000000000000000000b28da7bc87a9dd1e60849aa7fcb5da24ea913c42" + ], + "transactionHash": "0x85c243aeeb7065fbc8f33c0f1a5dd352b911420280c4ff947264d8fb9fdbc6b1", + "transactionIndex": "0x2" + }, + { + "address": "0x55d398326f99059ff775485246999027b3197955", + "blockHash": "0x14a973a77fc71f318f1ef60efb6e7dbbbf8b27ee99bfd82e13bedbd7bc9cce42", + "blockNumber": "0x5dc61a6", + "blockTimestamp": "0x6a065ee4", + "data": "0x00000000000000000000000000000000000000000000000012168c79a37558fb", + "logIndex": "0x1a", + "removed": false, + "topics": [ + "0xddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef", + "0x000000000000000000000000c590175e458b83680867afd273527ff58f74c02b", + "0x000000000000000000000000141d32a89a1e0a5ef360034a2f60a4b917c18838" + ], + "transactionHash": "0x85c243aeeb7065fbc8f33c0f1a5dd352b911420280c4ff947264d8fb9fdbc6b1", + "transactionIndex": "0x2" + }, + { + "address": "0x1a1ec25dc08e98e5e93f1104b5e5cdd298707d31", + "blockHash": "0x14a973a77fc71f318f1ef60efb6e7dbbbf8b27ee99bfd82e13bedbd7bc9cce42", + "blockNumber": "0x5dc61a6", + "blockTimestamp": "0x6a065ee4", + "data": "0x", + "logIndex": "0x1b", + "removed": false, + "topics": [ + "0xbeee1e6e7fe307ddcf84b0a16137a4430ad5e2480fc4f4a8e250ab56ccd7630d", + "0x9cc844e2828788f25f9d674f9dfb6a66ef6b8c38360c0ec1fa99e0b18c32eae8", + "0x000000000000000000000000141d32a89a1e0a5ef360034a2f60a4b917c18838" + ], + "transactionHash": "0x85c243aeeb7065fbc8f33c0f1a5dd352b911420280c4ff947264d8fb9fdbc6b1", + "transactionIndex": "0x2" + }, + { + "address": "0x55d398326f99059ff775485246999027b3197955", + "blockHash": "0x14a973a77fc71f318f1ef60efb6e7dbbbf8b27ee99bfd82e13bedbd7bc9cce42", + "blockNumber": "0x5dc61a6", + "blockTimestamp": "0x6a065ee4", + "data": "0x00000000000000000000000000000000000000000000000000c11eb3cc1e44ab", + "logIndex": "0x1c", + "removed": false, + "topics": [ + "0xddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef", + "0x000000000000000000000000141d32a89a1e0a5ef360034a2f60a4b917c18838", + "0x000000000000000000000000e3478b0bb1a5084567c319096437924948be1964" + ], + "transactionHash": "0x85c243aeeb7065fbc8f33c0f1a5dd352b911420280c4ff947264d8fb9fdbc6b1", + "transactionIndex": "0x2" + }, + { + "address": "0xdb9b1e94b5b69df7e401ddbede43491141047db3", + "blockHash": "0x14a973a77fc71f318f1ef60efb6e7dbbbf8b27ee99bfd82e13bedbd7bc9cce42", + "blockNumber": "0x5dc61a6", + "blockTimestamp": "0x6a065ee4", + "data": "0x00000000000000000000000000000000000000000000000000000000000000200000000000000000000000000000000000000000000000000000000000000a11000000000000000000000000141d32a89a1e0a5ef360034a2f60a4b917c18838ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff00000000000000000000000000000000000000000000000000000000000000c0968ed8fd53202eb5ee4bb8296295cc65da3fe5e28ba8c681bc0f3abffae60b9500000000000000000000000000000000000000000000000000000000000015e000000000000000000000000000000000000000000000000000000000000000020000000000000000000000000000000000000000000000000000000000000040000000000000000000000000000000000000000000000000000000000000010000000000000000000000000004658b29f6b82ed55274221a06fc97d318e25416000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000000a00000000000000000000000000000000000000000000000000000000000000020000000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000000000000000000000000000000000001e141e455d08721dd5bcda1baa6ea5633afd5017000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000013e000000000000000000000000000000000000000000000000000000000000013600000000000000000000000000000000000000000000000000000000000000020000000000000000000000000000000000000000000000000000000000000000500000000000000000000000000000000000000000000000000000000000000a0000000000000000000000000000000000000000000000000000000000000018000000000000000000000000000000000000000000000000000000000000009e00000000000000000000000000000000000000000000000000000000000000ac00000000000000000000000000000000000000000000000000000000000001240000000000000000000000000f8a0bf9cf54bb92f17374d9e9a321e6a111a51bd000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000600000000000000000000000000000000000000000000000000000000000000044095ea7b30000000000000000000000001a1ec25dc08e98e5e93f1104b5e5cdd298707d310000000000000000000000000000000000000000000000000298348bed9600b7000000000000000000000000000000000000000000000000000000000000000000000000000000001a1ec25dc08e98e5e93f1104b5e5cdd298707d310000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000007c55f5755290000000000000000000000000000000000000000000000000000000000000080000000000000000000000000f8a0bf9cf54bb92f17374d9e9a321e6a111a51bd0000000000000000000000000000000000000000000000000298348bed9600b700000000000000000000000000000000000000000000000000000000000000c00000000000000000000000000000000000000000000000000000000000000018756e69737761705065726d69743246656544796e616d6963000000000000000000000000000000000000000000000000000000000000000000000000000006e0000000000000000000000000f8a0bf9cf54bb92f17374d9e9a321e6a111a51bd00000000000000000000000055d398326f99059ff775485246999027b31979550000000000000000000000000000000000000000000000000298348bed9600b70000000000000000000000000000000000000000000000001a85de2ff398a0430000000000000000000000000000000000000000000000000000000000000120000000000000000000000000000000000000000000000000003d28b1b5744116000000000000000000000000b28da7bc87a9dd1e60849aa7fcb5da24ea913c42000000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000000005ae3593564c000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000000a0000000000000000000000000000000000000000000000000000000006a0665e5000000000000000000000000000000000000000000000000000000000000000110000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000002000000000000000000000000000000000000000000000000000000000000004a0000000000000000000000000000000000000000000000000000000000000004000000000000000000000000000000000000000000000000000000000000000800000000000000000000000000000000000000000000000000000000000000003070b0e0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000300000000000000000000000000000000000000000000000000000000000000600000000000000000000000000000000000000000000000000000000000000300000000000000000000000000000000000000000000000000000000000000038000000000000000000000000000000000000000000000000000000000000002800000000000000000000000000000000000000000000000000000000000000020000000000000000000000000f8a0bf9cf54bb92f17374d9e9a321e6a111a51bd00000000000000000000000000000000000000000000000000000000000000800000000000000000000000000000000000000000000000000298348bed9600b70000000000000000000000000000000000000000000000001ac48b72bc0641c30000000000000000000000000000000000000000000000000000000000000002000000000000000000000000000000000000000000000000000000000000004000000000000000000000000000000000000000000000000000000000000001000000000000000000000000008ac76a51cc950d9822d68b83fe1ad97b32cd580d0000000000000000000000000000000000000000000000000000000000000bb8000000000000000000000000000000000000000000000000000000000000003c000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000a0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000055d398326f99059ff775485246999027b319795500000000000000000000000000000000000000000000000000000000000000010000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000060000000000000000000000000f8a0bf9cf54bb92f17374d9e9a321e6a111a51bd00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000006000000000000000000000000055d398326f99059ff775485246999027b3197955000000000000000000000000c590175e458b83680867afd273527ff58f74c02b0000000000000000000000000000000000000000000000000000000000000000756e69780000b2c5de0b0000000000000000000000000000000000003d0000000000000000000000000000000000000000000000000000000000000000000000000000001af3f329e8be154074d8769d1ffa4ee058b1dbc3000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000600000000000000000000000000000000000000000000000000000000000000044095ea7b30000000000000000000000001a1ec25dc08e98e5e93f1104b5e5cdd298707d31000000000000000000000000000000000000000000000000123fd18867a38000000000000000000000000000000000000000000000000000000000000000000000000000000000001a1ec25dc08e98e5e93f1104b5e5cdd298707d310000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000006e55f57552900000000000000000000000000000000000000000000000000000000000000800000000000000000000000001af3f329e8be154074d8769d1ffa4ee058b1dbc3000000000000000000000000000000000000000000000000123fd18867a3800000000000000000000000000000000000000000000000000000000000000000c00000000000000000000000000000000000000000000000000000000000000018756e69737761705065726d69743246656544796e616d6963000000000000000000000000000000000000000000000000000000000000000000000000000006000000000000000000000000001af3f329e8be154074d8769d1ffa4ee058b1dbc300000000000000000000000055d398326f99059ff775485246999027b31979550000000000000000000000000000000000000000000000001216f0a8cfb11c0000000000000000000000000000000000000000000000000011b9f010ce44ebae00000000000000000000000000000000000000000000000000000000000001200000000000000000000000000000000000000000000000000028e0df97f26400000000000000000000000000b28da7bc87a9dd1e60849aa7fcb5da24ea913c42000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000004ce3593564c000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000000a0000000000000000000000000000000000000000000000000000000006a0665e5000000000000000000000000000000000000000000000000000000000000000110000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000002000000000000000000000000000000000000000000000000000000000000003c0000000000000000000000000000000000000000000000000000000000000004000000000000000000000000000000000000000000000000000000000000000800000000000000000000000000000000000000000000000000000000000000003070b0e000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000030000000000000000000000000000000000000000000000000000000000000060000000000000000000000000000000000000000000000000000000000000022000000000000000000000000000000000000000000000000000000000000002a000000000000000000000000000000000000000000000000000000000000001a000000000000000000000000000000000000000000000000000000000000000200000000000000000000000001af3f329e8be154074d8769d1ffa4ee058b1dbc300000000000000000000000000000000000000000000000000000000000000800000000000000000000000000000000000000000000000001216f0a8cfb11c0000000000000000000000000000000000000000000000000011bbc0efb959f2d70000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000002000000000000000000000000055d398326f99059ff775485246999027b319795500000000000000000000000000000000000000000000000000000000000000640000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000a0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000600000000000000000000000001af3f329e8be154074d8769d1ffa4ee058b1dbc300000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000006000000000000000000000000055d398326f99059ff775485246999027b3197955000000000000000000000000c590175e458b83680867afd273527ff58f74c02b0000000000000000000000000000000000000000000000000000000000000000756e69780000b2c5de0b0000000000000000000000000000000000004a00000000000000000000000000000000000000000000000000000000000000000000000000000055d398326f99059ff775485246999027b3197955000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000600000000000000000000000000000000000000000000000000000000000000044a9059cbb000000000000000000000000e3478b0bb1a5084567c319096437924948be196400000000000000000000000000000000000000000000000000c11eb3cc1e44ab0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000041ab9573538b3727283d224b0ec2fb72b691b12265f13570849ad290bf491631005e1006510f3ef818902a452315304d5da931c632b8a80f9f1bb68b5c5761aee91b00000000000000000000000000000000000000000000000000000000000000", + "logIndex": "0x1d", + "removed": false, + "topics": [ + "0x40dadaa36c6c2e3d7317e24757451ffb2d603d875f0ad5e92c5dd156573b1873", + "0x000000000000000000000000141d32a89a1e0a5ef360034a2f60a4b917c18838", + "0x000000000000000000000000b01caea8c6c47bbf4f4b4c5080ca642043359c2e" + ], + "transactionHash": "0x85c243aeeb7065fbc8f33c0f1a5dd352b911420280c4ff947264d8fb9fdbc6b1", + "transactionIndex": "0x2" + } + ], + "logsBloom": "0x40010000000000000808000000040800000000000000000840000000000084000040000000000000000010000000000000010000848000000080001000a80000000000810000010007024008020020040000040002000822000000100001100008000200000000000000010000000000900000000000802000000010000100020020000000000001808000020800000000000001000010002000000000000000220000000000000001000000000001008000000040000000000200080000000800080002000000000000000000040000280900100000004040000002000800000030000000000000004200000400020040000001000000000000000000080500", + "status": "0x1", + "to": "0xdb9b1e94b5b69df7e401ddbede43491141047db3", + "transactionHash": "0x85c243aeeb7065fbc8f33c0f1a5dd352b911420280c4ff947264d8fb9fdbc6b1", + "transactionIndex": "0x2", + "type": "0x2" + }, + "type": "swap", + "userEditedGasLimit": false, + "userFeeLevel": "medium", + "v": "0x1", + "verifiedOnBlockchain": true + }, + { + "baseFeePerGas": "0x0", + "batchId": "0xe2d6918e3d7f4b79abbd846c43a1a6ba", + "blockTimestamp": "0x6a0660e4", + "chainId": "0x38", + "defaultGasEstimates": { + "estimateType": "medium", + "gas": "0x42d99", + "maxFeePerGas": "0x2faf080", + "maxPriorityFeePerGas": "0x2faf080" + }, + "delegationAddress": "0x63c0c19a282a1b52b07dd5a65b58948a07dae32b", + "excludeNativeTokenForFee": true, + "gasFeeEstimates": { + "high": { + "maxFeePerGas": "0x2faf080", + "maxPriorityFeePerGas": "0x2faf080" + }, + "low": { + "maxFeePerGas": "0x2faf080", + "maxPriorityFeePerGas": "0x2faf080" + }, + "medium": { + "maxFeePerGas": "0x2faf080", + "maxPriorityFeePerGas": "0x2faf080" + }, + "type": "fee-market" + }, + "gasFeeEstimatesLoaded": true, + "gasLimitNoBuffer": "0x42d99", + "hash": "0x5401970c5672b7b813dd54f1f709604848b2625f0ca64f3e67eeaef4579d0d26", + "id": "5a9bc7a0-4ff0-11f1-8f4f-fd80170bf1a5", + "isGasFeeIncluded": false, + "isGasFeeSponsored": false, + "isGasFeeTokenIgnoredIfBalance": false, + "nestedTransactions": [ + { + "data": "0x095ea7b30000000000000000000000001a1ec25dc08e98e5e93f1104b5e5cdd298707d3100000000000000000000000000000000000000000000000003ebbdcb7fcd807d", + "effectiveGas": 46218, + "feeEstimate": 2773080000000, + "from": "0x141d32a89a1e0a5ef360034a2f60a4b917c18838", + "gas": "0xc83d", + "gasCost": "0", + "gasIncludedFeeData": { + "balanceNeeded": "0x28afe963800", + "currentBalance": "0x163fff2eae00", + "error": "", + "gas": "0xb608", + "maxFeePerGas": "0x39386ff", + "maxPriorityFeePerGas": "0x39386ff" + }, + "maxFeePerGas": "0x2faf080", + "maxPriorityFeePerGas": "0x2faf080", + "to": "0xf8a0bf9cf54bb92f17374d9e9a321e6a111a51bd", + "type": "swapApproval", + "value": "0x0" + }, + { + "data": "0x5f5755290000000000000000000000000000000000000000000000000000000000000080000000000000000000000000f8a0bf9cf54bb92f17374d9e9a321e6a111a51bd00000000000000000000000000000000000000000000000003ebbdcb7fcd807d00000000000000000000000000000000000000000000000000000000000000c0000000000000000000000000000000000000000000000000000000000000001b70616e63616b6553776170526f7574657246656544796e616d696300000000000000000000000000000000000000000000000000000000000000000000000220000000000000000000000000f8a0bf9cf54bb92f17374d9e9a321e6a111a51bd00000000000000000000000055d398326f99059ff775485246999027b319795500000000000000000000000000000000000000000000000003ebbdcb7fcd807d000000000000000000000000000000000000000000000000280162ef76ef688a0000000000000000000000000000000000000000000000000000000000000120000000000000000000000000000000000000000000000000005c3f84e6a5523f000000000000000000000000b28da7bc87a9dd1e60849aa7fcb5da24ea913c42000000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000000000e4472b43f300000000000000000000000000000000000000000000000003ebbdcb7fcd807d000000000000000000000000000000000000000000000000285fec8af4196baa0000000000000000000000000000000000000000000000000000000000000080000000000000000000000000c590175e458b83680867afd273527ff58f74c02b0000000000000000000000000000000000000000000000000000000000000002000000000000000000000000f8a0bf9cf54bb92f17374d9e9a321e6a111a51bd00000000000000000000000055d398326f99059ff775485246999027b319795500000000000000000000000000000000000000000000000000000000ad", + "effectiveGas": 190260, + "feeEstimate": 11415600000000, + "from": "0x141d32a89a1e0a5ef360034a2f60a4b917c18838", + "gas": "0x5954f", + "gasCost": "0", + "gasIncludedFeeData": { + "balanceNeeded": "0xd4fbb8a9900", + "currentBalance": "0x13b500987600", + "error": "", + "gas": "0x3b8df", + "maxFeePerGas": "0x39386ff", + "maxPriorityFeePerGas": "0x39386ff" + }, + "maxFeePerGas": "0x2faf080", + "maxPriorityFeePerGas": "0x2faf080", + "to": "0x1a1ec25DC08e98e5E93F1104B5e5cdD298707d31", + "type": "swap", + "value": "0x0" + } + ], + "networkClientId": "9a1eafde-5f04-434b-b011-e9de5c50baf0", + "origin": "metamask", + "originalGasEstimate": "0x42d99", + "postTxBalance": "0xc87215f1e00", + "r": "0x96bc689b88244941ce2459410d89a79948efa0dd360fa63d380fe458f2fb6e5c", + "rawTx": "0x02f905d138558402faf0808402faf08083042d9994141d32a89a1e0a5ef360034a2f60a4b917c1883880b90564e9ae5c530100000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000004000000000000000000000000000000000000000000000000000000000000005000000000000000000000000000000000000000000000000000000000000000020000000000000000000000000000000000000000000000000000000000000000200000000000000000000000000000000000000000000000000000000000000400000000000000000000000000000000000000000000000000000000000000120000000000000000000000000f8a0bf9cf54bb92f17374d9e9a321e6a111a51bd000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000600000000000000000000000000000000000000000000000000000000000000044095ea7b30000000000000000000000001a1ec25dc08e98e5e93f1104b5e5cdd298707d3100000000000000000000000000000000000000000000000003ebbdcb7fcd807d000000000000000000000000000000000000000000000000000000000000000000000000000000001a1ec25dc08e98e5e93f1104b5e5cdd298707d310000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000003055f5755290000000000000000000000000000000000000000000000000000000000000080000000000000000000000000f8a0bf9cf54bb92f17374d9e9a321e6a111a51bd00000000000000000000000000000000000000000000000003ebbdcb7fcd807d00000000000000000000000000000000000000000000000000000000000000c0000000000000000000000000000000000000000000000000000000000000001b70616e63616b6553776170526f7574657246656544796e616d696300000000000000000000000000000000000000000000000000000000000000000000000220000000000000000000000000f8a0bf9cf54bb92f17374d9e9a321e6a111a51bd00000000000000000000000055d398326f99059ff775485246999027b319795500000000000000000000000000000000000000000000000003ebbdcb7fcd807d000000000000000000000000000000000000000000000000280162ef76ef688a0000000000000000000000000000000000000000000000000000000000000120000000000000000000000000000000000000000000000000005c3f84e6a5523f000000000000000000000000b28da7bc87a9dd1e60849aa7fcb5da24ea913c42000000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000000000e4472b43f300000000000000000000000000000000000000000000000003ebbdcb7fcd807d000000000000000000000000000000000000000000000000285fec8af4196baa0000000000000000000000000000000000000000000000000000000000000080000000000000000000000000c590175e458b83680867afd273527ff58f74c02b0000000000000000000000000000000000000000000000000000000000000002000000000000000000000000f8a0bf9cf54bb92f17374d9e9a321e6a111a51bd00000000000000000000000055d398326f99059ff775485246999027b319795500000000000000000000000000000000000000000000000000000000ad000000000000000000000000000000000000000000000000000000c080a096bc689b88244941ce2459410d89a79948efa0dd360fa63d380fe458f2fb6e5ca04573389a3205a4b9a5516596823113efd11d657c2449ee2ba47f38fe6cf848c2", + "s": "0x4573389a3205a4b9a5516596823113efd11d657c2449ee2ba47f38fe6cf848c2", + "status": "confirmed", + "submittedTime": 1778802916059, + "time": 1778802915610, + "txParams": { + "data": "0xe9ae5c530100000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000004000000000000000000000000000000000000000000000000000000000000005000000000000000000000000000000000000000000000000000000000000000020000000000000000000000000000000000000000000000000000000000000000200000000000000000000000000000000000000000000000000000000000000400000000000000000000000000000000000000000000000000000000000000120000000000000000000000000f8a0bf9cf54bb92f17374d9e9a321e6a111a51bd000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000600000000000000000000000000000000000000000000000000000000000000044095ea7b30000000000000000000000001a1ec25dc08e98e5e93f1104b5e5cdd298707d3100000000000000000000000000000000000000000000000003ebbdcb7fcd807d000000000000000000000000000000000000000000000000000000000000000000000000000000001a1ec25dc08e98e5e93f1104b5e5cdd298707d310000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000003055f5755290000000000000000000000000000000000000000000000000000000000000080000000000000000000000000f8a0bf9cf54bb92f17374d9e9a321e6a111a51bd00000000000000000000000000000000000000000000000003ebbdcb7fcd807d00000000000000000000000000000000000000000000000000000000000000c0000000000000000000000000000000000000000000000000000000000000001b70616e63616b6553776170526f7574657246656544796e616d696300000000000000000000000000000000000000000000000000000000000000000000000220000000000000000000000000f8a0bf9cf54bb92f17374d9e9a321e6a111a51bd00000000000000000000000055d398326f99059ff775485246999027b319795500000000000000000000000000000000000000000000000003ebbdcb7fcd807d000000000000000000000000000000000000000000000000280162ef76ef688a0000000000000000000000000000000000000000000000000000000000000120000000000000000000000000000000000000000000000000005c3f84e6a5523f000000000000000000000000b28da7bc87a9dd1e60849aa7fcb5da24ea913c42000000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000000000e4472b43f300000000000000000000000000000000000000000000000003ebbdcb7fcd807d000000000000000000000000000000000000000000000000285fec8af4196baa0000000000000000000000000000000000000000000000000000000000000080000000000000000000000000c590175e458b83680867afd273527ff58f74c02b0000000000000000000000000000000000000000000000000000000000000002000000000000000000000000f8a0bf9cf54bb92f17374d9e9a321e6a111a51bd00000000000000000000000055d398326f99059ff775485246999027b319795500000000000000000000000000000000000000000000000000000000ad000000000000000000000000000000000000000000000000000000", + "from": "0x141d32a89a1e0a5ef360034a2f60a4b917c18838", + "gas": "0x42d99", + "gasLimit": "0x42d99", + "maxFeePerGas": "0x2faf080", + "maxPriorityFeePerGas": "0x2faf080", + "nonce": "0x55", + "to": "0x141d32a89a1e0a5ef360034a2f60a4b917c18838", + "type": "0x2", + "value": "0x0" + }, + "txReceipt": { + "blockHash": "0xe4661c80cd4c056800dd6f50865751daf0a5d850c68bd79b04be99218fdc67c6", + "blockNumber": "0x5dc6617", + "contractAddress": null, + "cumulativeGasUsed": "0x1753cf", + "effectiveGasPrice": "0x2faf080", + "from": "0x141d32a89a1e0a5ef360034a2f60a4b917c18838", + "gasUsed": "0x34320", + "logs": [ + { + "address": "0xf8a0bf9cf54bb92f17374d9e9a321e6a111a51bd", + "blockHash": "0xe4661c80cd4c056800dd6f50865751daf0a5d850c68bd79b04be99218fdc67c6", + "blockNumber": "0x5dc6617", + "blockTimestamp": "0x6a0660e4", + "data": "0x00000000000000000000000000000000000000000000000003ebbdcb7fcd807d", + "logIndex": "0x2b", + "removed": false, + "topics": [ + "0x8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925", + "0x000000000000000000000000141d32a89a1e0a5ef360034a2f60a4b917c18838", + "0x0000000000000000000000001a1ec25dc08e98e5e93f1104b5e5cdd298707d31" + ], + "transactionHash": "0x5401970c5672b7b813dd54f1f709604848b2625f0ca64f3e67eeaef4579d0d26", + "transactionIndex": "0x7" + }, + { + "address": "0xf8a0bf9cf54bb92f17374d9e9a321e6a111a51bd", + "blockHash": "0xe4661c80cd4c056800dd6f50865751daf0a5d850c68bd79b04be99218fdc67c6", + "blockNumber": "0x5dc6617", + "blockTimestamp": "0x6a0660e4", + "data": "0x00000000000000000000000000000000000000000000000003ebbdcb7fcd807d", + "logIndex": "0x2c", + "removed": false, + "topics": [ + "0xddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef", + "0x000000000000000000000000141d32a89a1e0a5ef360034a2f60a4b917c18838", + "0x000000000000000000000000c590175e458b83680867afd273527ff58f74c02b" + ], + "transactionHash": "0x5401970c5672b7b813dd54f1f709604848b2625f0ca64f3e67eeaef4579d0d26", + "transactionIndex": "0x7" + }, + { + "address": "0xf8a0bf9cf54bb92f17374d9e9a321e6a111a51bd", + "blockHash": "0xe4661c80cd4c056800dd6f50865751daf0a5d850c68bd79b04be99218fdc67c6", + "blockNumber": "0x5dc6617", + "blockTimestamp": "0x6a0660e4", + "data": "0x0000000000000000000000000000000000000000000000000000000000000000", + "logIndex": "0x2d", + "removed": false, + "topics": [ + "0x8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925", + "0x000000000000000000000000141d32a89a1e0a5ef360034a2f60a4b917c18838", + "0x0000000000000000000000001a1ec25dc08e98e5e93f1104b5e5cdd298707d31" + ], + "transactionHash": "0x5401970c5672b7b813dd54f1f709604848b2625f0ca64f3e67eeaef4579d0d26", + "transactionIndex": "0x7" + }, + { + "address": "0xf8a0bf9cf54bb92f17374d9e9a321e6a111a51bd", + "blockHash": "0xe4661c80cd4c056800dd6f50865751daf0a5d850c68bd79b04be99218fdc67c6", + "blockNumber": "0x5dc6617", + "blockTimestamp": "0x6a0660e4", + "data": "0x00000000000000000000000000000000000000000000000003ebbdcb7fcd807d", + "logIndex": "0x2e", + "removed": false, + "topics": [ + "0xddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef", + "0x000000000000000000000000c590175e458b83680867afd273527ff58f74c02b", + "0x000000000000000000000000653684a7edb13e44425845a88b2cee741e95b782" + ], + "transactionHash": "0x5401970c5672b7b813dd54f1f709604848b2625f0ca64f3e67eeaef4579d0d26", + "transactionIndex": "0x7" + }, + { + "address": "0xf8a0bf9cf54bb92f17374d9e9a321e6a111a51bd", + "blockHash": "0xe4661c80cd4c056800dd6f50865751daf0a5d850c68bd79b04be99218fdc67c6", + "blockNumber": "0x5dc6617", + "blockTimestamp": "0x6a0660e4", + "data": "0xfffffffffffffffffffffffffffffffffffffffffffffffb84a1192ad185e130", + "logIndex": "0x2f", + "removed": false, + "topics": [ + "0x8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925", + "0x000000000000000000000000c590175e458b83680867afd273527ff58f74c02b", + "0x00000000000000000000000013f4ea83d0bd40e75c8222255bc855a974568dd4" + ], + "transactionHash": "0x5401970c5672b7b813dd54f1f709604848b2625f0ca64f3e67eeaef4579d0d26", + "transactionIndex": "0x7" + }, + { + "address": "0x55d398326f99059ff775485246999027b3197955", + "blockHash": "0xe4661c80cd4c056800dd6f50865751daf0a5d850c68bd79b04be99218fdc67c6", + "blockNumber": "0x5dc6617", + "blockTimestamp": "0x6a0660e4", + "data": "0x000000000000000000000000000000000000000000000000292ea47940a949fb", + "logIndex": "0x30", + "removed": false, + "topics": [ + "0xddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef", + "0x000000000000000000000000653684a7edb13e44425845a88b2cee741e95b782", + "0x000000000000000000000000c590175e458b83680867afd273527ff58f74c02b" + ], + "transactionHash": "0x5401970c5672b7b813dd54f1f709604848b2625f0ca64f3e67eeaef4579d0d26", + "transactionIndex": "0x7" + }, + { + "address": "0x653684a7edb13e44425845a88b2cee741e95b782", + "blockHash": "0xe4661c80cd4c056800dd6f50865751daf0a5d850c68bd79b04be99218fdc67c6", + "blockNumber": "0x5dc6617", + "blockTimestamp": "0x6a0660e4", + "data": "0x00000000000000000000000000000000000000000000003176ce08ace5082c36000000000000000000000000000000000000000000000004b6811127a514ee6e", + "logIndex": "0x31", + "removed": false, + "topics": [ + "0x1c411e9a96e071241c2f21f7726b17ae89e3cab4c78be50e062b03a9fffbbad1" + ], + "transactionHash": "0x5401970c5672b7b813dd54f1f709604848b2625f0ca64f3e67eeaef4579d0d26", + "transactionIndex": "0x7" + }, + { + "address": "0x653684a7edb13e44425845a88b2cee741e95b782", + "blockHash": "0xe4661c80cd4c056800dd6f50865751daf0a5d850c68bd79b04be99218fdc67c6", + "blockNumber": "0x5dc6617", + "blockTimestamp": "0x6a0660e4", + "data": "0x000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000003ebbdcb7fcd807d000000000000000000000000000000000000000000000000292ea47940a949fb0000000000000000000000000000000000000000000000000000000000000000", + "logIndex": "0x32", + "removed": false, + "topics": [ + "0xd78ad95fa46c994b6551d0da85fc275fe613ce37657fb8d5e3d130840159d822", + "0x00000000000000000000000013f4ea83d0bd40e75c8222255bc855a974568dd4", + "0x000000000000000000000000c590175e458b83680867afd273527ff58f74c02b" + ], + "transactionHash": "0x5401970c5672b7b813dd54f1f709604848b2625f0ca64f3e67eeaef4579d0d26", + "transactionIndex": "0x7" + }, + { + "address": "0x55d398326f99059ff775485246999027b3197955", + "blockHash": "0xe4661c80cd4c056800dd6f50865751daf0a5d850c68bd79b04be99218fdc67c6", + "blockNumber": "0x5dc6617", + "blockTimestamp": "0x6a0660e4", + "data": "0x000000000000000000000000000000000000000000000000005c3f84e6a5523f", + "logIndex": "0x33", + "removed": false, + "topics": [ + "0xddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef", + "0x000000000000000000000000c590175e458b83680867afd273527ff58f74c02b", + "0x000000000000000000000000b28da7bc87a9dd1e60849aa7fcb5da24ea913c42" + ], + "transactionHash": "0x5401970c5672b7b813dd54f1f709604848b2625f0ca64f3e67eeaef4579d0d26", + "transactionIndex": "0x7" + }, + { + "address": "0x55d398326f99059ff775485246999027b3197955", + "blockHash": "0xe4661c80cd4c056800dd6f50865751daf0a5d850c68bd79b04be99218fdc67c6", + "blockNumber": "0x5dc6617", + "blockTimestamp": "0x6a0660e4", + "data": "0x00000000000000000000000000000000000000000000000028d264f45a03f7bc", + "logIndex": "0x34", + "removed": false, + "topics": [ + "0xddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef", + "0x000000000000000000000000c590175e458b83680867afd273527ff58f74c02b", + "0x000000000000000000000000141d32a89a1e0a5ef360034a2f60a4b917c18838" + ], + "transactionHash": "0x5401970c5672b7b813dd54f1f709604848b2625f0ca64f3e67eeaef4579d0d26", + "transactionIndex": "0x7" + }, + { + "address": "0x1a1ec25dc08e98e5e93f1104b5e5cdd298707d31", + "blockHash": "0xe4661c80cd4c056800dd6f50865751daf0a5d850c68bd79b04be99218fdc67c6", + "blockNumber": "0x5dc6617", + "blockTimestamp": "0x6a0660e4", + "data": "0x", + "logIndex": "0x35", + "removed": false, + "topics": [ + "0xbeee1e6e7fe307ddcf84b0a16137a4430ad5e2480fc4f4a8e250ab56ccd7630d", + "0xd969a3bb30e73717f53a24e5c1c2ce9fdcee5967213ee0e44f1087749bf35ff8", + "0x000000000000000000000000141d32a89a1e0a5ef360034a2f60a4b917c18838" + ], + "transactionHash": "0x5401970c5672b7b813dd54f1f709604848b2625f0ca64f3e67eeaef4579d0d26", + "transactionIndex": "0x7" + } + ], + "logsBloom": "0x402000000000000000080000800408000000000000000008400000000000000080000000000000000000100000000000000100040000000000000000002000000000000101000100010a0008000000202000000002001000000000000000000000000000000000000000400000000000000000000000000000008010000800000000000000200001008000000800000000000001000010080000004000000000220000000000000000000000000000000000000000000000000000200000000000000002000000000000000000040000200000000000001000000000000400000030000000000000000000000000000040000000000000000000000000080000", + "status": "0x1", + "to": "0x141d32a89a1e0a5ef360034a2f60a4b917c18838", + "transactionHash": "0x5401970c5672b7b813dd54f1f709604848b2625f0ca64f3e67eeaef4579d0d26", + "transactionIndex": "0x7", + "type": "0x2" + }, + "type": "swap", + "userEditedGasLimit": false, + "userFeeLevel": "medium", + "v": "0x0", + "verifiedOnBlockchain": true + }, + { + "baseFeePerGas": "0x0", + "batchId": "0x19e28fdf541", + "blockTimestamp": "0x6a066286", + "chainId": "0x38", + "defaultGasEstimates": { + "estimateType": "medium", + "gas": "0x849a4", + "maxFeePerGas": "0x3938700", + "maxPriorityFeePerGas": "0x3938700" + }, + "delegationAddress": "0x63c0c19a282a1b52b07dd5a65b58948a07dae32b", + "excludeNativeTokenForFee": true, + "gasFeeEstimates": { + "high": { + "maxFeePerGas": "0x2faf080", + "maxPriorityFeePerGas": "0x2faf080" + }, + "low": { + "maxFeePerGas": "0x2faf080", + "maxPriorityFeePerGas": "0x2faf080" + }, + "medium": { + "maxFeePerGas": "0x2faf080", + "maxPriorityFeePerGas": "0x2faf080" + }, + "type": "fee-market" + }, + "gasFeeEstimatesLoaded": true, + "gasLimitNoBuffer": "0x849a4", + "hash": "0x4f276a96fc9eb03c9250127caf964284ce56d1e024316981db50372d83b05f6c", + "id": "53814750-4ff1-11f1-b329-9d6502987406", + "isGasFeeIncluded": true, + "isGasFeeSponsored": false, + "isGasFeeTokenIgnoredIfBalance": false, + "nestedTransactions": [ + { + "data": "0x095ea7b30000000000000000000000001a1ec25dc08e98e5e93f1104b5e5cdd298707d31000000000000000000000000000000000000000000000000029522d1a9a48529", + "from": "0x141d32a89a1e0a5ef360034a2f60a4b917c18838", + "gas": "0x1110c", + "maxFeePerGas": "0x3938700", + "maxPriorityFeePerGas": "0x3938700", + "to": "0xf8a0bf9cf54bb92f17374d9e9a321e6a111a51bd", + "type": "swapApproval", + "value": "0x0" + }, + { + "data": "0x5f5755290000000000000000000000000000000000000000000000000000000000000080000000000000000000000000f8a0bf9cf54bb92f17374d9e9a321e6a111a51bd000000000000000000000000000000000000000000000000029522d1a9a4852900000000000000000000000000000000000000000000000000000000000000c0000000000000000000000000000000000000000000000000000000000000000430785632000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000620000000000000000000000000f8a0bf9cf54bb92f17374d9e9a321e6a111a51bd00000000000000000000000055d398326f99059ff775485246999027b3197955000000000000000000000000000000000000000000000000029522d1a9a485290000000000000000000000000000000000000000000000001a54dcc9639922cf0000000000000000000000000000000000000000000000000000000000000120000000000000000000000000000000000000000000000000003cb7b1626fb173000000000000000000000000b28da7bc87a9dd1e60849aa7fcb5da24ea913c42000000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000000004e42213bc0b000000000000000000000000c2eff1f1ce35d395408a34ad881dbcd978f40b89000000000000000000000000f8a0bf9cf54bb92f17374d9e9a321e6a111a51bd000000000000000000000000000000000000000000000000029522d1a9a48529000000000000000000000000c2eff1f1ce35d395408a34ad881dbcd978f40b8900000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000000000000000000000000000004041fff991f000000000000000000000000c590175e458b83680867afd273527ff58f74c02b00000000000000000000000055d398326f99059ff775485246999027b31979550000000000000000000000000000000000000000000000001ad5c1d3815d320000000000000000000000000000000000000000000000000000000000000000a0d43c254c3f608344feba3dc60000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000300000000000000000000000000000000000000000000000000000000000000600000000000000000000000000000000000000000000000000000000000000180000000000000000000000000000000000000000000000000000000000000028000000000000000000000000000000000000000000000000000000000000000e4c1fb425e000000000000000000000000c71ae603efb29bc8eedd9c9c5323011e167179a2000000000000000000000000f8a0bf9cf54bb92f17374d9e9a321e6a111a51bd000000000000000000000000000000000000000000000000029522d1a9a485290000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000006a0663aa00000000000000000000000000000000000000000000000000000000000000c000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000c4103b48be000000000000000000000000c2eff1f1ce35d395408a34ad881dbcd978f40b89000000000000000000000000f8a0bf9cf54bb92f17374d9e9a321e6a111a51bd0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000c71ae603efb29bc8eedd9c9c5323011e167179a20000000000000000000000000000000000000000000000000000000000001e00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000008434ee90ca000000000000000000000000d0a67cb08be17475f4315a04c5f0be3e200ef66c00000000000000000000000055d398326f99059ff775485246999027b31979550000000000000000000000000000000000000000000000001b1c46a242a4973b0000000000000000000000000000000000000000000000000000000000002710000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000f0", + "from": "0x141d32a89a1e0a5ef360034a2f60a4b917c18838", + "gas": "0x61785", + "maxFeePerGas": "0x3938700", + "maxPriorityFeePerGas": "0x3938700", + "to": "0x1a1ec25DC08e98e5E93F1104B5e5cdD298707d31", + "type": "swap", + "value": "0x0" + }, + { + "data": "0x095ea7b30000000000000000000000001a1ec25dc08e98e5e93f1104b5e5cdd298707d3100000000000000000000000000000000000000000000000016809af82bd260ea", + "from": "0x141d32a89a1e0a5ef360034a2f60a4b917c18838", + "gas": "0x1110c", + "maxFeePerGas": "0x3938700", + "maxPriorityFeePerGas": "0x3938700", + "to": "0x1af3f329e8be154074d8769d1ffa4ee058b1dbc3", + "type": "swapApproval", + "value": "0x0" + }, + { + "data": "0x5f57552900000000000000000000000000000000000000000000000000000000000000800000000000000000000000001af3f329e8be154074d8769d1ffa4ee058b1dbc300000000000000000000000000000000000000000000000016809af82bd260ea00000000000000000000000000000000000000000000000000000000000000c00000000000000000000000000000000000000000000000000000000000000018756e69737761705065726d69743246656544796e616d6963000000000000000000000000000000000000000000000000000000000000000000000000000006000000000000000000000000001af3f329e8be154074d8769d1ffa4ee058b1dbc300000000000000000000000055d398326f99059ff775485246999027b3197955000000000000000000000000000000000000000000000000164e3336a3c2234500000000000000000000000000000000000000000000000015db8526486372290000000000000000000000000000000000000000000000000000000000000120000000000000000000000000000000000000000000000000003267c188103da5000000000000000000000000b28da7bc87a9dd1e60849aa7fcb5da24ea913c42000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000004ce3593564c000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000000a0000000000000000000000000000000000000000000000000000000006a066987000000000000000000000000000000000000000000000000000000000000000110000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000002000000000000000000000000000000000000000000000000000000000000003c0000000000000000000000000000000000000000000000000000000000000004000000000000000000000000000000000000000000000000000000000000000800000000000000000000000000000000000000000000000000000000000000003070b0e000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000030000000000000000000000000000000000000000000000000000000000000060000000000000000000000000000000000000000000000000000000000000022000000000000000000000000000000000000000000000000000000000000002a000000000000000000000000000000000000000000000000000000000000001a000000000000000000000000000000000000000000000000000000000000000200000000000000000000000001af3f329e8be154074d8769d1ffa4ee058b1dbc30000000000000000000000000000000000000000000000000000000000000080000000000000000000000000000000000000000000000000164e3336a3c2234500000000000000000000000000000000000000000000000015ddc25c2e9a30710000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000002000000000000000000000000055d398326f99059ff775485246999027b319795500000000000000000000000000000000000000000000000000000000000000640000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000a0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000600000000000000000000000001af3f329e8be154074d8769d1ffa4ee058b1dbc300000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000006000000000000000000000000055d398326f99059ff775485246999027b3197955000000000000000000000000c590175e458b83680867afd273527ff58f74c02b0000000000000000000000000000000000000000000000000000000000000000756e69780000b2c5de0b00000000000000000000000000000000000076", + "from": "0x141d32a89a1e0a5ef360034a2f60a4b917c18838", + "gas": "0x5d131", + "maxFeePerGas": "0x3938700", + "maxPriorityFeePerGas": "0x3938700", + "to": "0x1a1ec25DC08e98e5E93F1104B5e5cdD298707d31", + "type": "swap", + "value": "0x0" + }, + { + "data": "0xa9059cbb000000000000000000000000e3478b0bb1a5084567c319096437924948be196400000000000000000000000000000000000000000000000000bedde0c4bd4047", + "from": "0x141d32a89a1e0a5ef360034a2f60a4b917c18838", + "gas": "0xcc57", + "maxFeePerGas": "0x3938700", + "maxPriorityFeePerGas": "0x3938700", + "to": "0x55d398326f99059ff775485246999027b3197955", + "type": "transfer", + "value": "0x0" + } + ], + "networkClientId": "9a1eafde-5f04-434b-b011-e9de5c50baf0", + "origin": "metamask", + "originalGasEstimate": "0x849a4", + "postTxBalance": "0xf328db17a00", + "r": "0x3edc62b4e958b050785e6e56f7f0cfae8e1d7766da11f7c367943db645e05cdd", + "rawTx": "0x02f91371385984039387008403938700830849a494141d32a89a1e0a5ef360034a2f60a4b917c1883880b91304e9ae5c530101000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000004000000000000000000000000000000000000000000000000000000000000012a00000000000000000000000000000000000000000000000000000000000000020000000000000000000000000000000000000000000000000000000000000000500000000000000000000000000000000000000000000000000000000000000a0000000000000000000000000000000000000000000000000000000000000018000000000000000000000000000000000000000000000000000000000000009200000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000000000000000000000000000001180000000000000000000000000f8a0bf9cf54bb92f17374d9e9a321e6a111a51bd000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000600000000000000000000000000000000000000000000000000000000000000044095ea7b30000000000000000000000001a1ec25dc08e98e5e93f1104b5e5cdd298707d31000000000000000000000000000000000000000000000000029522d1a9a48529000000000000000000000000000000000000000000000000000000000000000000000000000000001a1ec25dc08e98e5e93f1104b5e5cdd298707d310000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000007055f5755290000000000000000000000000000000000000000000000000000000000000080000000000000000000000000f8a0bf9cf54bb92f17374d9e9a321e6a111a51bd000000000000000000000000000000000000000000000000029522d1a9a4852900000000000000000000000000000000000000000000000000000000000000c0000000000000000000000000000000000000000000000000000000000000000430785632000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000620000000000000000000000000f8a0bf9cf54bb92f17374d9e9a321e6a111a51bd00000000000000000000000055d398326f99059ff775485246999027b3197955000000000000000000000000000000000000000000000000029522d1a9a485290000000000000000000000000000000000000000000000001a54dcc9639922cf0000000000000000000000000000000000000000000000000000000000000120000000000000000000000000000000000000000000000000003cb7b1626fb173000000000000000000000000b28da7bc87a9dd1e60849aa7fcb5da24ea913c42000000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000000004e42213bc0b000000000000000000000000c2eff1f1ce35d395408a34ad881dbcd978f40b89000000000000000000000000f8a0bf9cf54bb92f17374d9e9a321e6a111a51bd000000000000000000000000000000000000000000000000029522d1a9a48529000000000000000000000000c2eff1f1ce35d395408a34ad881dbcd978f40b8900000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000000000000000000000000000004041fff991f000000000000000000000000c590175e458b83680867afd273527ff58f74c02b00000000000000000000000055d398326f99059ff775485246999027b31979550000000000000000000000000000000000000000000000001ad5c1d3815d320000000000000000000000000000000000000000000000000000000000000000a0d43c254c3f608344feba3dc60000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000300000000000000000000000000000000000000000000000000000000000000600000000000000000000000000000000000000000000000000000000000000180000000000000000000000000000000000000000000000000000000000000028000000000000000000000000000000000000000000000000000000000000000e4c1fb425e000000000000000000000000c71ae603efb29bc8eedd9c9c5323011e167179a2000000000000000000000000f8a0bf9cf54bb92f17374d9e9a321e6a111a51bd000000000000000000000000000000000000000000000000029522d1a9a485290000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000006a0663aa00000000000000000000000000000000000000000000000000000000000000c000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000c4103b48be000000000000000000000000c2eff1f1ce35d395408a34ad881dbcd978f40b89000000000000000000000000f8a0bf9cf54bb92f17374d9e9a321e6a111a51bd0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000c71ae603efb29bc8eedd9c9c5323011e167179a20000000000000000000000000000000000000000000000000000000000001e00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000008434ee90ca000000000000000000000000d0a67cb08be17475f4315a04c5f0be3e200ef66c00000000000000000000000055d398326f99059ff775485246999027b31979550000000000000000000000000000000000000000000000001b1c46a242a4973b0000000000000000000000000000000000000000000000000000000000002710000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000f00000000000000000000000000000000000000000000000000000000000000000000000000000001af3f329e8be154074d8769d1ffa4ee058b1dbc3000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000600000000000000000000000000000000000000000000000000000000000000044095ea7b30000000000000000000000001a1ec25dc08e98e5e93f1104b5e5cdd298707d3100000000000000000000000000000000000000000000000016809af82bd260ea000000000000000000000000000000000000000000000000000000000000000000000000000000001a1ec25dc08e98e5e93f1104b5e5cdd298707d310000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000006e55f57552900000000000000000000000000000000000000000000000000000000000000800000000000000000000000001af3f329e8be154074d8769d1ffa4ee058b1dbc300000000000000000000000000000000000000000000000016809af82bd260ea00000000000000000000000000000000000000000000000000000000000000c00000000000000000000000000000000000000000000000000000000000000018756e69737761705065726d69743246656544796e616d6963000000000000000000000000000000000000000000000000000000000000000000000000000006000000000000000000000000001af3f329e8be154074d8769d1ffa4ee058b1dbc300000000000000000000000055d398326f99059ff775485246999027b3197955000000000000000000000000000000000000000000000000164e3336a3c2234500000000000000000000000000000000000000000000000015db8526486372290000000000000000000000000000000000000000000000000000000000000120000000000000000000000000000000000000000000000000003267c188103da5000000000000000000000000b28da7bc87a9dd1e60849aa7fcb5da24ea913c42000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000004ce3593564c000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000000a0000000000000000000000000000000000000000000000000000000006a066987000000000000000000000000000000000000000000000000000000000000000110000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000002000000000000000000000000000000000000000000000000000000000000003c0000000000000000000000000000000000000000000000000000000000000004000000000000000000000000000000000000000000000000000000000000000800000000000000000000000000000000000000000000000000000000000000003070b0e000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000030000000000000000000000000000000000000000000000000000000000000060000000000000000000000000000000000000000000000000000000000000022000000000000000000000000000000000000000000000000000000000000002a000000000000000000000000000000000000000000000000000000000000001a000000000000000000000000000000000000000000000000000000000000000200000000000000000000000001af3f329e8be154074d8769d1ffa4ee058b1dbc30000000000000000000000000000000000000000000000000000000000000080000000000000000000000000000000000000000000000000164e3336a3c2234500000000000000000000000000000000000000000000000015ddc25c2e9a30710000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000002000000000000000000000000055d398326f99059ff775485246999027b319795500000000000000000000000000000000000000000000000000000000000000640000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000a0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000600000000000000000000000001af3f329e8be154074d8769d1ffa4ee058b1dbc300000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000006000000000000000000000000055d398326f99059ff775485246999027b3197955000000000000000000000000c590175e458b83680867afd273527ff58f74c02b0000000000000000000000000000000000000000000000000000000000000000756e69780000b2c5de0b0000000000000000000000000000000000007600000000000000000000000000000000000000000000000000000000000000000000000000000055d398326f99059ff775485246999027b3197955000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000600000000000000000000000000000000000000000000000000000000000000044a9059cbb000000000000000000000000e3478b0bb1a5084567c319096437924948be196400000000000000000000000000000000000000000000000000bedde0c4bd404700000000000000000000000000000000000000000000000000000000c001a03edc62b4e958b050785e6e56f7f0cfae8e1d7766da11f7c367943db645e05cdda0724cbf4ea0d4764c24f210bd686eb8154a232ef6c2b522cc6c3d5101c4b5f8bc", + "s": "0x724cbf4ea0d4764c24f210bd686eb8154a232ef6c2b522cc6c3d5101c4b5f8bc", + "selectedGasFeeToken": "0x55d398326f99059ff775485246999027b3197955", + "status": "confirmed", + "submittedTime": 1778803335991, + "time": 1778803333189, + "txParams": { + "data": "0xe9ae5c530101000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000004000000000000000000000000000000000000000000000000000000000000012a00000000000000000000000000000000000000000000000000000000000000020000000000000000000000000000000000000000000000000000000000000000500000000000000000000000000000000000000000000000000000000000000a0000000000000000000000000000000000000000000000000000000000000018000000000000000000000000000000000000000000000000000000000000009200000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000000000000000000000000000001180000000000000000000000000f8a0bf9cf54bb92f17374d9e9a321e6a111a51bd000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000600000000000000000000000000000000000000000000000000000000000000044095ea7b30000000000000000000000001a1ec25dc08e98e5e93f1104b5e5cdd298707d31000000000000000000000000000000000000000000000000029522d1a9a48529000000000000000000000000000000000000000000000000000000000000000000000000000000001a1ec25dc08e98e5e93f1104b5e5cdd298707d310000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000007055f5755290000000000000000000000000000000000000000000000000000000000000080000000000000000000000000f8a0bf9cf54bb92f17374d9e9a321e6a111a51bd000000000000000000000000000000000000000000000000029522d1a9a4852900000000000000000000000000000000000000000000000000000000000000c0000000000000000000000000000000000000000000000000000000000000000430785632000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000620000000000000000000000000f8a0bf9cf54bb92f17374d9e9a321e6a111a51bd00000000000000000000000055d398326f99059ff775485246999027b3197955000000000000000000000000000000000000000000000000029522d1a9a485290000000000000000000000000000000000000000000000001a54dcc9639922cf0000000000000000000000000000000000000000000000000000000000000120000000000000000000000000000000000000000000000000003cb7b1626fb173000000000000000000000000b28da7bc87a9dd1e60849aa7fcb5da24ea913c42000000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000000004e42213bc0b000000000000000000000000c2eff1f1ce35d395408a34ad881dbcd978f40b89000000000000000000000000f8a0bf9cf54bb92f17374d9e9a321e6a111a51bd000000000000000000000000000000000000000000000000029522d1a9a48529000000000000000000000000c2eff1f1ce35d395408a34ad881dbcd978f40b8900000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000000000000000000000000000004041fff991f000000000000000000000000c590175e458b83680867afd273527ff58f74c02b00000000000000000000000055d398326f99059ff775485246999027b31979550000000000000000000000000000000000000000000000001ad5c1d3815d320000000000000000000000000000000000000000000000000000000000000000a0d43c254c3f608344feba3dc60000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000300000000000000000000000000000000000000000000000000000000000000600000000000000000000000000000000000000000000000000000000000000180000000000000000000000000000000000000000000000000000000000000028000000000000000000000000000000000000000000000000000000000000000e4c1fb425e000000000000000000000000c71ae603efb29bc8eedd9c9c5323011e167179a2000000000000000000000000f8a0bf9cf54bb92f17374d9e9a321e6a111a51bd000000000000000000000000000000000000000000000000029522d1a9a485290000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000006a0663aa00000000000000000000000000000000000000000000000000000000000000c000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000c4103b48be000000000000000000000000c2eff1f1ce35d395408a34ad881dbcd978f40b89000000000000000000000000f8a0bf9cf54bb92f17374d9e9a321e6a111a51bd0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000c71ae603efb29bc8eedd9c9c5323011e167179a20000000000000000000000000000000000000000000000000000000000001e00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000008434ee90ca000000000000000000000000d0a67cb08be17475f4315a04c5f0be3e200ef66c00000000000000000000000055d398326f99059ff775485246999027b31979550000000000000000000000000000000000000000000000001b1c46a242a4973b0000000000000000000000000000000000000000000000000000000000002710000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000f00000000000000000000000000000000000000000000000000000000000000000000000000000001af3f329e8be154074d8769d1ffa4ee058b1dbc3000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000600000000000000000000000000000000000000000000000000000000000000044095ea7b30000000000000000000000001a1ec25dc08e98e5e93f1104b5e5cdd298707d3100000000000000000000000000000000000000000000000016809af82bd260ea000000000000000000000000000000000000000000000000000000000000000000000000000000001a1ec25dc08e98e5e93f1104b5e5cdd298707d310000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000006e55f57552900000000000000000000000000000000000000000000000000000000000000800000000000000000000000001af3f329e8be154074d8769d1ffa4ee058b1dbc300000000000000000000000000000000000000000000000016809af82bd260ea00000000000000000000000000000000000000000000000000000000000000c00000000000000000000000000000000000000000000000000000000000000018756e69737761705065726d69743246656544796e616d6963000000000000000000000000000000000000000000000000000000000000000000000000000006000000000000000000000000001af3f329e8be154074d8769d1ffa4ee058b1dbc300000000000000000000000055d398326f99059ff775485246999027b3197955000000000000000000000000000000000000000000000000164e3336a3c2234500000000000000000000000000000000000000000000000015db8526486372290000000000000000000000000000000000000000000000000000000000000120000000000000000000000000000000000000000000000000003267c188103da5000000000000000000000000b28da7bc87a9dd1e60849aa7fcb5da24ea913c42000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000004ce3593564c000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000000a0000000000000000000000000000000000000000000000000000000006a066987000000000000000000000000000000000000000000000000000000000000000110000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000002000000000000000000000000000000000000000000000000000000000000003c0000000000000000000000000000000000000000000000000000000000000004000000000000000000000000000000000000000000000000000000000000000800000000000000000000000000000000000000000000000000000000000000003070b0e000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000030000000000000000000000000000000000000000000000000000000000000060000000000000000000000000000000000000000000000000000000000000022000000000000000000000000000000000000000000000000000000000000002a000000000000000000000000000000000000000000000000000000000000001a000000000000000000000000000000000000000000000000000000000000000200000000000000000000000001af3f329e8be154074d8769d1ffa4ee058b1dbc30000000000000000000000000000000000000000000000000000000000000080000000000000000000000000000000000000000000000000164e3336a3c2234500000000000000000000000000000000000000000000000015ddc25c2e9a30710000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000002000000000000000000000000055d398326f99059ff775485246999027b319795500000000000000000000000000000000000000000000000000000000000000640000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000a0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000600000000000000000000000001af3f329e8be154074d8769d1ffa4ee058b1dbc300000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000006000000000000000000000000055d398326f99059ff775485246999027b3197955000000000000000000000000c590175e458b83680867afd273527ff58f74c02b0000000000000000000000000000000000000000000000000000000000000000756e69780000b2c5de0b0000000000000000000000000000000000007600000000000000000000000000000000000000000000000000000000000000000000000000000055d398326f99059ff775485246999027b3197955000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000600000000000000000000000000000000000000000000000000000000000000044a9059cbb000000000000000000000000e3478b0bb1a5084567c319096437924948be196400000000000000000000000000000000000000000000000000bedde0c4bd404700000000000000000000000000000000000000000000000000000000", + "from": "0x141d32a89a1e0a5ef360034a2f60a4b917c18838", + "gas": "0x849a4", + "gasLimit": "0x849a4", + "maxFeePerGas": "0x3938700", + "maxPriorityFeePerGas": "0x3938700", + "to": "0x141d32a89a1e0a5ef360034a2f60a4b917c18838", + "type": "0x2", + "value": "0x0" + }, + "txReceipt": { + "blockHash": "0x403f651d5952d0cea578c9d79abd97f24a1d07d3a68a512397d66a09f73513ad", + "blockNumber": "0x5dc69b8", + "contractAddress": null, + "cumulativeGasUsed": "0x100758", + "effectiveGasPrice": "0x3938700", + "from": "0xb01caea8c6c47bbf4f4b4c5080ca642043359c2e", + "gasUsed": "0x9db97", + "logs": [ + { + "address": "0x04658b29f6b82ed55274221a06fc97d318e25416", + "blockHash": "0x403f651d5952d0cea578c9d79abd97f24a1d07d3a68a512397d66a09f73513ad", + "blockNumber": "0x5dc69b8", + "blockTimestamp": "0x6a066286", + "data": "0x00000000000000000000000000000000000000000000000000000000000000010000000000000000000000000000000000000000000000000000000000000001", + "logIndex": "0x7", + "removed": false, + "topics": [ + "0x449da07f2c06c9d1a6b19d2454ffe749e8cf991d22f686e076a1a4844c5ff370", + "0x000000000000000000000000db9b1e94b5b69df7e401ddbede43491141047db3", + "0x000000000000000000000000b01caea8c6c47bbf4f4b4c5080ca642043359c2e", + "0x1c5162b17d91c951060fd2e96f6cff8919555f25408c69b5c7829d9ee520021a" + ], + "transactionHash": "0x4f276a96fc9eb03c9250127caf964284ce56d1e024316981db50372d83b05f6c", + "transactionIndex": "0x3" + }, + { + "address": "0xf8a0bf9cf54bb92f17374d9e9a321e6a111a51bd", + "blockHash": "0x403f651d5952d0cea578c9d79abd97f24a1d07d3a68a512397d66a09f73513ad", + "blockNumber": "0x5dc69b8", + "blockTimestamp": "0x6a066286", + "data": "0x000000000000000000000000000000000000000000000000029522d1a9a48529", + "logIndex": "0x8", + "removed": false, + "topics": [ + "0x8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925", + "0x000000000000000000000000141d32a89a1e0a5ef360034a2f60a4b917c18838", + "0x0000000000000000000000001a1ec25dc08e98e5e93f1104b5e5cdd298707d31" + ], + "transactionHash": "0x4f276a96fc9eb03c9250127caf964284ce56d1e024316981db50372d83b05f6c", + "transactionIndex": "0x3" + }, + { + "address": "0xf8a0bf9cf54bb92f17374d9e9a321e6a111a51bd", + "blockHash": "0x403f651d5952d0cea578c9d79abd97f24a1d07d3a68a512397d66a09f73513ad", + "blockNumber": "0x5dc69b8", + "blockTimestamp": "0x6a066286", + "data": "0x000000000000000000000000000000000000000000000000029522d1a9a48529", + "logIndex": "0x9", + "removed": false, + "topics": [ + "0xddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef", + "0x000000000000000000000000141d32a89a1e0a5ef360034a2f60a4b917c18838", + "0x000000000000000000000000c590175e458b83680867afd273527ff58f74c02b" + ], + "transactionHash": "0x4f276a96fc9eb03c9250127caf964284ce56d1e024316981db50372d83b05f6c", + "transactionIndex": "0x3" + }, + { + "address": "0xf8a0bf9cf54bb92f17374d9e9a321e6a111a51bd", + "blockHash": "0x403f651d5952d0cea578c9d79abd97f24a1d07d3a68a512397d66a09f73513ad", + "blockNumber": "0x5dc69b8", + "blockTimestamp": "0x6a066286", + "data": "0x0000000000000000000000000000000000000000000000000000000000000000", + "logIndex": "0xa", + "removed": false, + "topics": [ + "0x8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925", + "0x000000000000000000000000141d32a89a1e0a5ef360034a2f60a4b917c18838", + "0x0000000000000000000000001a1ec25dc08e98e5e93f1104b5e5cdd298707d31" + ], + "transactionHash": "0x4f276a96fc9eb03c9250127caf964284ce56d1e024316981db50372d83b05f6c", + "transactionIndex": "0x3" + }, + { + "address": "0xf8a0bf9cf54bb92f17374d9e9a321e6a111a51bd", + "blockHash": "0x403f651d5952d0cea578c9d79abd97f24a1d07d3a68a512397d66a09f73513ad", + "blockNumber": "0x5dc69b8", + "blockTimestamp": "0x6a066286", + "data": "0x000000000000000000000000000000000000000000000000029522d1a9a48529", + "logIndex": "0xb", + "removed": false, + "topics": [ + "0xddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef", + "0x000000000000000000000000c590175e458b83680867afd273527ff58f74c02b", + "0x000000000000000000000000c71ae603efb29bc8eedd9c9c5323011e167179a2" + ], + "transactionHash": "0x4f276a96fc9eb03c9250127caf964284ce56d1e024316981db50372d83b05f6c", + "transactionIndex": "0x3" + }, + { + "address": "0xf8a0bf9cf54bb92f17374d9e9a321e6a111a51bd", + "blockHash": "0x403f651d5952d0cea578c9d79abd97f24a1d07d3a68a512397d66a09f73513ad", + "blockNumber": "0x5dc69b8", + "blockTimestamp": "0x6a066286", + "data": "0xfffffffffffffffffffffffffffffffffffffffffffffb8f24d186a2dcd660a6", + "logIndex": "0xc", + "removed": false, + "topics": [ + "0x8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925", + "0x000000000000000000000000c590175e458b83680867afd273527ff58f74c02b", + "0x0000000000000000000000000000000000001ff3684f28c67538d4d072c22734" + ], + "transactionHash": "0x4f276a96fc9eb03c9250127caf964284ce56d1e024316981db50372d83b05f6c", + "transactionIndex": "0x3" + }, + { + "address": "0x55d398326f99059ff775485246999027b3197955", + "blockHash": "0x403f651d5952d0cea578c9d79abd97f24a1d07d3a68a512397d66a09f73513ad", + "blockNumber": "0x5dc69b8", + "blockTimestamp": "0x6a066286", + "data": "0x0000000000000000000000000000000000000000000000001b1b260bf1dcef18", + "logIndex": "0xd", + "removed": false, + "topics": [ + "0xddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef", + "0x000000000000000000000000c71ae603efb29bc8eedd9c9c5323011e167179a2", + "0x000000000000000000000000c2eff1f1ce35d395408a34ad881dbcd978f40b89" + ], + "transactionHash": "0x4f276a96fc9eb03c9250127caf964284ce56d1e024316981db50372d83b05f6c", + "transactionIndex": "0x3" + }, + { + "address": "0xc71ae603efb29bc8eedd9c9c5323011e167179a2", + "blockHash": "0x403f651d5952d0cea578c9d79abd97f24a1d07d3a68a512397d66a09f73513ad", + "blockNumber": "0x5dc69b8", + "blockTimestamp": "0x6a066286", + "data": "0x0000000000000000000000000000000000000000000000354848aebe64d4093e00000000000000000000000000000000000000000000000512475e7f11ed6106", + "logIndex": "0xe", + "removed": false, + "topics": [ + "0x1c411e9a96e071241c2f21f7726b17ae89e3cab4c78be50e062b03a9fffbbad1" + ], + "transactionHash": "0x4f276a96fc9eb03c9250127caf964284ce56d1e024316981db50372d83b05f6c", + "transactionIndex": "0x3" + }, + { + "address": "0xc71ae603efb29bc8eedd9c9c5323011e167179a2", + "blockHash": "0x403f651d5952d0cea578c9d79abd97f24a1d07d3a68a512397d66a09f73513ad", + "blockNumber": "0x5dc69b8", + "blockTimestamp": "0x6a066286", + "data": "0x0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000029522d1a9a485290000000000000000000000000000000000000000000000001b1b260bf1dcef180000000000000000000000000000000000000000000000000000000000000000", + "logIndex": "0xf", + "removed": false, + "topics": [ + "0xd78ad95fa46c994b6551d0da85fc275fe613ce37657fb8d5e3d130840159d822", + "0x000000000000000000000000c2eff1f1ce35d395408a34ad881dbcd978f40b89", + "0x000000000000000000000000c2eff1f1ce35d395408a34ad881dbcd978f40b89" + ], + "transactionHash": "0x4f276a96fc9eb03c9250127caf964284ce56d1e024316981db50372d83b05f6c", + "transactionIndex": "0x3" + }, + { + "address": "0x55d398326f99059ff775485246999027b3197955", + "blockHash": "0x403f651d5952d0cea578c9d79abd97f24a1d07d3a68a512397d66a09f73513ad", + "blockNumber": "0x5dc69b8", + "blockTimestamp": "0x6a066286", + "data": "0x0000000000000000000000000000000000000000000000001b1b260bf1dcef18", + "logIndex": "0x10", + "removed": false, + "topics": [ + "0xddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef", + "0x000000000000000000000000c2eff1f1ce35d395408a34ad881dbcd978f40b89", + "0x000000000000000000000000c590175e458b83680867afd273527ff58f74c02b" + ], + "transactionHash": "0x4f276a96fc9eb03c9250127caf964284ce56d1e024316981db50372d83b05f6c", + "transactionIndex": "0x3" + }, + { + "address": "0x55d398326f99059ff775485246999027b3197955", + "blockHash": "0x403f651d5952d0cea578c9d79abd97f24a1d07d3a68a512397d66a09f73513ad", + "blockNumber": "0x5dc69b8", + "blockTimestamp": "0x6a066286", + "data": "0x000000000000000000000000000000000000000000000000003cb7b1626fb173", + "logIndex": "0x11", + "removed": false, + "topics": [ + "0xddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef", + "0x000000000000000000000000c590175e458b83680867afd273527ff58f74c02b", + "0x000000000000000000000000b28da7bc87a9dd1e60849aa7fcb5da24ea913c42" + ], + "transactionHash": "0x4f276a96fc9eb03c9250127caf964284ce56d1e024316981db50372d83b05f6c", + "transactionIndex": "0x3" + }, + { + "address": "0x55d398326f99059ff775485246999027b3197955", + "blockHash": "0x403f651d5952d0cea578c9d79abd97f24a1d07d3a68a512397d66a09f73513ad", + "blockNumber": "0x5dc69b8", + "blockTimestamp": "0x6a066286", + "data": "0x0000000000000000000000000000000000000000000000001ade6e5a8f6d3da5", + "logIndex": "0x12", + "removed": false, + "topics": [ + "0xddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef", + "0x000000000000000000000000c590175e458b83680867afd273527ff58f74c02b", + "0x000000000000000000000000141d32a89a1e0a5ef360034a2f60a4b917c18838" + ], + "transactionHash": "0x4f276a96fc9eb03c9250127caf964284ce56d1e024316981db50372d83b05f6c", + "transactionIndex": "0x3" + }, + { + "address": "0x1a1ec25dc08e98e5e93f1104b5e5cdd298707d31", + "blockHash": "0x403f651d5952d0cea578c9d79abd97f24a1d07d3a68a512397d66a09f73513ad", + "blockNumber": "0x5dc69b8", + "blockTimestamp": "0x6a066286", + "data": "0x", + "logIndex": "0x13", + "removed": false, + "topics": [ + "0xbeee1e6e7fe307ddcf84b0a16137a4430ad5e2480fc4f4a8e250ab56ccd7630d", + "0x83203d0886d1c2c42122151c4282225c18a1e1561f04ae69d57528da4bb99db6", + "0x000000000000000000000000141d32a89a1e0a5ef360034a2f60a4b917c18838" + ], + "transactionHash": "0x4f276a96fc9eb03c9250127caf964284ce56d1e024316981db50372d83b05f6c", + "transactionIndex": "0x3" + }, + { + "address": "0x1af3f329e8be154074d8769d1ffa4ee058b1dbc3", + "blockHash": "0x403f651d5952d0cea578c9d79abd97f24a1d07d3a68a512397d66a09f73513ad", + "blockNumber": "0x5dc69b8", + "blockTimestamp": "0x6a066286", + "data": "0x00000000000000000000000000000000000000000000000016809af82bd260ea", + "logIndex": "0x14", + "removed": false, + "topics": [ + "0x8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925", + "0x000000000000000000000000141d32a89a1e0a5ef360034a2f60a4b917c18838", + "0x0000000000000000000000001a1ec25dc08e98e5e93f1104b5e5cdd298707d31" + ], + "transactionHash": "0x4f276a96fc9eb03c9250127caf964284ce56d1e024316981db50372d83b05f6c", + "transactionIndex": "0x3" + }, + { + "address": "0x1af3f329e8be154074d8769d1ffa4ee058b1dbc3", + "blockHash": "0x403f651d5952d0cea578c9d79abd97f24a1d07d3a68a512397d66a09f73513ad", + "blockNumber": "0x5dc69b8", + "blockTimestamp": "0x6a066286", + "data": "0x00000000000000000000000000000000000000000000000016809af82bd260ea", + "logIndex": "0x15", + "removed": false, + "topics": [ + "0xddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef", + "0x000000000000000000000000141d32a89a1e0a5ef360034a2f60a4b917c18838", + "0x000000000000000000000000c590175e458b83680867afd273527ff58f74c02b" + ], + "transactionHash": "0x4f276a96fc9eb03c9250127caf964284ce56d1e024316981db50372d83b05f6c", + "transactionIndex": "0x3" + }, + { + "address": "0x1af3f329e8be154074d8769d1ffa4ee058b1dbc3", + "blockHash": "0x403f651d5952d0cea578c9d79abd97f24a1d07d3a68a512397d66a09f73513ad", + "blockNumber": "0x5dc69b8", + "blockTimestamp": "0x6a066286", + "data": "0x0000000000000000000000000000000000000000000000000000000000000000", + "logIndex": "0x16", + "removed": false, + "topics": [ + "0x8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925", + "0x000000000000000000000000141d32a89a1e0a5ef360034a2f60a4b917c18838", + "0x0000000000000000000000001a1ec25dc08e98e5e93f1104b5e5cdd298707d31" + ], + "transactionHash": "0x4f276a96fc9eb03c9250127caf964284ce56d1e024316981db50372d83b05f6c", + "transactionIndex": "0x3" + }, + { + "address": "0x000000000022d473030f116ddee9f6b43ac78ba3", + "blockHash": "0x403f651d5952d0cea578c9d79abd97f24a1d07d3a68a512397d66a09f73513ad", + "blockNumber": "0x5dc69b8", + "blockTimestamp": "0x6a066286", + "data": "0x000000000000000000000000000000000000000000000000164e3336a3c22345000000000000000000000000000000000000000000000000000000006a066286", + "logIndex": "0x17", + "removed": false, + "topics": [ + "0xda9fa7c1b00402c17d0161b249b1ab8bbec047c5a52207b9c112deffd817036b", + "0x000000000000000000000000c590175e458b83680867afd273527ff58f74c02b", + "0x0000000000000000000000001af3f329e8be154074d8769d1ffa4ee058b1dbc3", + "0x0000000000000000000000001906c1d672b88cd1b9ac7593301ca990f94eae07" + ], + "transactionHash": "0x4f276a96fc9eb03c9250127caf964284ce56d1e024316981db50372d83b05f6c", + "transactionIndex": "0x3" + }, + { + "address": "0x28e2ea090877bf75740558f6bfb36a5ffee9e9df", + "blockHash": "0x403f651d5952d0cea578c9d79abd97f24a1d07d3a68a512397d66a09f73513ad", + "blockNumber": "0x5dc69b8", + "blockTimestamp": "0x6a066286", + "data": "0xffffffffffffffffffffffffffffffffffffffffffffffffe9b1ccc95c3ddcbb000000000000000000000000000000000000000000000000164db6e3254b5a5f000000000000000000000000000000000000000100007c1cbc879ab8ec3f5c9d000000000000000000000000000000000000000000087b92bf3c2710fa8e764d00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000064", + "logIndex": "0x18", + "removed": false, + "topics": [ + "0x40e9cecb9f5f1f1c5b9c97dec2917b7ee92e57ba5563708daca94dd84ad7112f", + "0x1eb0be4b2330177969b56f8a813d9ffa0d01ed3a95da8618482bb1cb42805656", + "0x0000000000000000000000001906c1d672b88cd1b9ac7593301ca990f94eae07" + ], + "transactionHash": "0x4f276a96fc9eb03c9250127caf964284ce56d1e024316981db50372d83b05f6c", + "transactionIndex": "0x3" + }, + { + "address": "0x1af3f329e8be154074d8769d1ffa4ee058b1dbc3", + "blockHash": "0x403f651d5952d0cea578c9d79abd97f24a1d07d3a68a512397d66a09f73513ad", + "blockNumber": "0x5dc69b8", + "blockTimestamp": "0x6a066286", + "data": "0x000000000000000000000000000000000000000000000000164e3336a3c22345", + "logIndex": "0x19", + "removed": false, + "topics": [ + "0xddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef", + "0x000000000000000000000000c590175e458b83680867afd273527ff58f74c02b", + "0x00000000000000000000000028e2ea090877bf75740558f6bfb36a5ffee9e9df" + ], + "transactionHash": "0x4f276a96fc9eb03c9250127caf964284ce56d1e024316981db50372d83b05f6c", + "transactionIndex": "0x3" + }, + { + "address": "0x1af3f329e8be154074d8769d1ffa4ee058b1dbc3", + "blockHash": "0x403f651d5952d0cea578c9d79abd97f24a1d07d3a68a512397d66a09f73513ad", + "blockNumber": "0x5dc69b8", + "blockTimestamp": "0x6a066286", + "data": "0xfffffffffffffffffffffffffffffffffffffffffffffe0761279465a248eb7e", + "logIndex": "0x1a", + "removed": false, + "topics": [ + "0x8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925", + "0x000000000000000000000000c590175e458b83680867afd273527ff58f74c02b", + "0x000000000000000000000000000000000022d473030f116ddee9f6b43ac78ba3" + ], + "transactionHash": "0x4f276a96fc9eb03c9250127caf964284ce56d1e024316981db50372d83b05f6c", + "transactionIndex": "0x3" + }, + { + "address": "0x55d398326f99059ff775485246999027b3197955", + "blockHash": "0x403f651d5952d0cea578c9d79abd97f24a1d07d3a68a512397d66a09f73513ad", + "blockNumber": "0x5dc69b8", + "blockTimestamp": "0x6a066286", + "data": "0x000000000000000000000000000000000000000000000000164db6e3254b5a5f", + "logIndex": "0x1b", + "removed": false, + "topics": [ + "0xddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef", + "0x00000000000000000000000028e2ea090877bf75740558f6bfb36a5ffee9e9df", + "0x000000000000000000000000c590175e458b83680867afd273527ff58f74c02b" + ], + "transactionHash": "0x4f276a96fc9eb03c9250127caf964284ce56d1e024316981db50372d83b05f6c", + "transactionIndex": "0x3" + }, + { + "address": "0x1af3f329e8be154074d8769d1ffa4ee058b1dbc3", + "blockHash": "0x403f651d5952d0cea578c9d79abd97f24a1d07d3a68a512397d66a09f73513ad", + "blockNumber": "0x5dc69b8", + "blockTimestamp": "0x6a066286", + "data": "0x000000000000000000000000000000000000000000000000003267c188103da5", + "logIndex": "0x1c", + "removed": false, + "topics": [ + "0xddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef", + "0x000000000000000000000000c590175e458b83680867afd273527ff58f74c02b", + "0x000000000000000000000000b28da7bc87a9dd1e60849aa7fcb5da24ea913c42" + ], + "transactionHash": "0x4f276a96fc9eb03c9250127caf964284ce56d1e024316981db50372d83b05f6c", + "transactionIndex": "0x3" + }, + { + "address": "0x55d398326f99059ff775485246999027b3197955", + "blockHash": "0x403f651d5952d0cea578c9d79abd97f24a1d07d3a68a512397d66a09f73513ad", + "blockNumber": "0x5dc69b8", + "blockTimestamp": "0x6a066286", + "data": "0x000000000000000000000000000000000000000000000000164db6e3254b5a5f", + "logIndex": "0x1d", + "removed": false, + "topics": [ + "0xddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef", + "0x000000000000000000000000c590175e458b83680867afd273527ff58f74c02b", + "0x000000000000000000000000141d32a89a1e0a5ef360034a2f60a4b917c18838" + ], + "transactionHash": "0x4f276a96fc9eb03c9250127caf964284ce56d1e024316981db50372d83b05f6c", + "transactionIndex": "0x3" + }, + { + "address": "0x1a1ec25dc08e98e5e93f1104b5e5cdd298707d31", + "blockHash": "0x403f651d5952d0cea578c9d79abd97f24a1d07d3a68a512397d66a09f73513ad", + "blockNumber": "0x5dc69b8", + "blockTimestamp": "0x6a066286", + "data": "0x", + "logIndex": "0x1e", + "removed": false, + "topics": [ + "0xbeee1e6e7fe307ddcf84b0a16137a4430ad5e2480fc4f4a8e250ab56ccd7630d", + "0x9cc844e2828788f25f9d674f9dfb6a66ef6b8c38360c0ec1fa99e0b18c32eae8", + "0x000000000000000000000000141d32a89a1e0a5ef360034a2f60a4b917c18838" + ], + "transactionHash": "0x4f276a96fc9eb03c9250127caf964284ce56d1e024316981db50372d83b05f6c", + "transactionIndex": "0x3" + }, + { + "address": "0x55d398326f99059ff775485246999027b3197955", + "blockHash": "0x403f651d5952d0cea578c9d79abd97f24a1d07d3a68a512397d66a09f73513ad", + "blockNumber": "0x5dc69b8", + "blockTimestamp": "0x6a066286", + "data": "0x00000000000000000000000000000000000000000000000000bedde0c4bd4047", + "logIndex": "0x1f", + "removed": false, + "topics": [ + "0xddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef", + "0x000000000000000000000000141d32a89a1e0a5ef360034a2f60a4b917c18838", + "0x000000000000000000000000e3478b0bb1a5084567c319096437924948be1964" + ], + "transactionHash": "0x4f276a96fc9eb03c9250127caf964284ce56d1e024316981db50372d83b05f6c", + "transactionIndex": "0x3" + }, + { + "address": "0xdb9b1e94b5b69df7e401ddbede43491141047db3", + "blockHash": "0x403f651d5952d0cea578c9d79abd97f24a1d07d3a68a512397d66a09f73513ad", + "blockNumber": "0x5dc69b8", + "blockTimestamp": "0x6a066286", + "data": "0x00000000000000000000000000000000000000000000000000000000000000200000000000000000000000000000000000000000000000000000000000000a11000000000000000000000000141d32a89a1e0a5ef360034a2f60a4b917c18838ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff00000000000000000000000000000000000000000000000000000000000000c08ad11d2ea35bbd87fb771504da81da1710e66a0da9b7fd9b46f7f044a5d6b450000000000000000000000000000000000000000000000000000000000000152000000000000000000000000000000000000000000000000000000000000000020000000000000000000000000000000000000000000000000000000000000040000000000000000000000000000000000000000000000000000000000000010000000000000000000000000004658b29f6b82ed55274221a06fc97d318e25416000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000000a00000000000000000000000000000000000000000000000000000000000000020000000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000000000000000000000000000000000001e141e455d08721dd5bcda1baa6ea5633afd50170000000000000000000000000000000000000000000000000000000000000060000000000000000000000000000000000000000000000000000000000000132000000000000000000000000000000000000000000000000000000000000012a00000000000000000000000000000000000000000000000000000000000000020000000000000000000000000000000000000000000000000000000000000000500000000000000000000000000000000000000000000000000000000000000a0000000000000000000000000000000000000000000000000000000000000018000000000000000000000000000000000000000000000000000000000000009200000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000000000000000000000000000001180000000000000000000000000f8a0bf9cf54bb92f17374d9e9a321e6a111a51bd000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000600000000000000000000000000000000000000000000000000000000000000044095ea7b30000000000000000000000001a1ec25dc08e98e5e93f1104b5e5cdd298707d31000000000000000000000000000000000000000000000000029522d1a9a48529000000000000000000000000000000000000000000000000000000000000000000000000000000001a1ec25dc08e98e5e93f1104b5e5cdd298707d310000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000007055f5755290000000000000000000000000000000000000000000000000000000000000080000000000000000000000000f8a0bf9cf54bb92f17374d9e9a321e6a111a51bd000000000000000000000000000000000000000000000000029522d1a9a4852900000000000000000000000000000000000000000000000000000000000000c0000000000000000000000000000000000000000000000000000000000000000430785632000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000620000000000000000000000000f8a0bf9cf54bb92f17374d9e9a321e6a111a51bd00000000000000000000000055d398326f99059ff775485246999027b3197955000000000000000000000000000000000000000000000000029522d1a9a485290000000000000000000000000000000000000000000000001a54dcc9639922cf0000000000000000000000000000000000000000000000000000000000000120000000000000000000000000000000000000000000000000003cb7b1626fb173000000000000000000000000b28da7bc87a9dd1e60849aa7fcb5da24ea913c42000000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000000004e42213bc0b000000000000000000000000c2eff1f1ce35d395408a34ad881dbcd978f40b89000000000000000000000000f8a0bf9cf54bb92f17374d9e9a321e6a111a51bd000000000000000000000000000000000000000000000000029522d1a9a48529000000000000000000000000c2eff1f1ce35d395408a34ad881dbcd978f40b8900000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000000000000000000000000000004041fff991f000000000000000000000000c590175e458b83680867afd273527ff58f74c02b00000000000000000000000055d398326f99059ff775485246999027b31979550000000000000000000000000000000000000000000000001ad5c1d3815d320000000000000000000000000000000000000000000000000000000000000000a0d43c254c3f608344feba3dc60000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000300000000000000000000000000000000000000000000000000000000000000600000000000000000000000000000000000000000000000000000000000000180000000000000000000000000000000000000000000000000000000000000028000000000000000000000000000000000000000000000000000000000000000e4c1fb425e000000000000000000000000c71ae603efb29bc8eedd9c9c5323011e167179a2000000000000000000000000f8a0bf9cf54bb92f17374d9e9a321e6a111a51bd000000000000000000000000000000000000000000000000029522d1a9a485290000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000006a0663aa00000000000000000000000000000000000000000000000000000000000000c000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000c4103b48be000000000000000000000000c2eff1f1ce35d395408a34ad881dbcd978f40b89000000000000000000000000f8a0bf9cf54bb92f17374d9e9a321e6a111a51bd0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000c71ae603efb29bc8eedd9c9c5323011e167179a20000000000000000000000000000000000000000000000000000000000001e00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000008434ee90ca000000000000000000000000d0a67cb08be17475f4315a04c5f0be3e200ef66c00000000000000000000000055d398326f99059ff775485246999027b31979550000000000000000000000000000000000000000000000001b1c46a242a4973b0000000000000000000000000000000000000000000000000000000000002710000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000f00000000000000000000000000000000000000000000000000000000000000000000000000000001af3f329e8be154074d8769d1ffa4ee058b1dbc3000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000600000000000000000000000000000000000000000000000000000000000000044095ea7b30000000000000000000000001a1ec25dc08e98e5e93f1104b5e5cdd298707d3100000000000000000000000000000000000000000000000016809af82bd260ea000000000000000000000000000000000000000000000000000000000000000000000000000000001a1ec25dc08e98e5e93f1104b5e5cdd298707d310000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000006e55f57552900000000000000000000000000000000000000000000000000000000000000800000000000000000000000001af3f329e8be154074d8769d1ffa4ee058b1dbc300000000000000000000000000000000000000000000000016809af82bd260ea00000000000000000000000000000000000000000000000000000000000000c00000000000000000000000000000000000000000000000000000000000000018756e69737761705065726d69743246656544796e616d6963000000000000000000000000000000000000000000000000000000000000000000000000000006000000000000000000000000001af3f329e8be154074d8769d1ffa4ee058b1dbc300000000000000000000000055d398326f99059ff775485246999027b3197955000000000000000000000000000000000000000000000000164e3336a3c2234500000000000000000000000000000000000000000000000015db8526486372290000000000000000000000000000000000000000000000000000000000000120000000000000000000000000000000000000000000000000003267c188103da5000000000000000000000000b28da7bc87a9dd1e60849aa7fcb5da24ea913c42000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000004ce3593564c000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000000a0000000000000000000000000000000000000000000000000000000006a066987000000000000000000000000000000000000000000000000000000000000000110000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000002000000000000000000000000000000000000000000000000000000000000003c0000000000000000000000000000000000000000000000000000000000000004000000000000000000000000000000000000000000000000000000000000000800000000000000000000000000000000000000000000000000000000000000003070b0e000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000030000000000000000000000000000000000000000000000000000000000000060000000000000000000000000000000000000000000000000000000000000022000000000000000000000000000000000000000000000000000000000000002a000000000000000000000000000000000000000000000000000000000000001a000000000000000000000000000000000000000000000000000000000000000200000000000000000000000001af3f329e8be154074d8769d1ffa4ee058b1dbc30000000000000000000000000000000000000000000000000000000000000080000000000000000000000000000000000000000000000000164e3336a3c2234500000000000000000000000000000000000000000000000015ddc25c2e9a30710000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000002000000000000000000000000055d398326f99059ff775485246999027b319795500000000000000000000000000000000000000000000000000000000000000640000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000a0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000600000000000000000000000001af3f329e8be154074d8769d1ffa4ee058b1dbc300000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000006000000000000000000000000055d398326f99059ff775485246999027b3197955000000000000000000000000c590175e458b83680867afd273527ff58f74c02b0000000000000000000000000000000000000000000000000000000000000000756e69780000b2c5de0b0000000000000000000000000000000000007600000000000000000000000000000000000000000000000000000000000000000000000000000055d398326f99059ff775485246999027b3197955000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000600000000000000000000000000000000000000000000000000000000000000044a9059cbb000000000000000000000000e3478b0bb1a5084567c319096437924948be196400000000000000000000000000000000000000000000000000bedde0c4bd4047000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000004152064fab3dd9256fdd33ca9a461262abcc15b1797b25a011cb3f7e2710f23cb96650ba1e61b85c7359574ec35e6d5031957fe272ca784a65c6bf55cf1afdbeaf1b00000000000000000000000000000000000000000000000000000000000000", + "logIndex": "0x20", + "removed": false, + "topics": [ + "0x40dadaa36c6c2e3d7317e24757451ffb2d603d875f0ad5e92c5dd156573b1873", + "0x000000000000000000000000141d32a89a1e0a5ef360034a2f60a4b917c18838", + "0x000000000000000000000000b01caea8c6c47bbf4f4b4c5080ca642043359c2e" + ], + "transactionHash": "0x4f276a96fc9eb03c9250127caf964284ce56d1e024316981db50372d83b05f6c", + "transactionIndex": "0x3" + } + ], + "logsBloom": "0x4061000800000000080800008004080000000000000010084000000000008400004000002000000000001000000100000001000084800000008000100028280000000081000001000702400802002024000000000200082200000000000110000800000000000040000001000800000090000000000000000000001000010002002400000000000180800002080080000000000100001088200000400000000022000000080000000100000000000100800000004000000000000008400000080008000a000000000000000000040000200900000000005040200002100000000030000000000000004200000400020040000000000000000000000000080500", + "status": "0x1", + "to": "0xdb9b1e94b5b69df7e401ddbede43491141047db3", + "transactionHash": "0x4f276a96fc9eb03c9250127caf964284ce56d1e024316981db50372d83b05f6c", + "transactionIndex": "0x3", + "type": "0x2" + }, + "type": "swap", + "userEditedGasLimit": false, + "userFeeLevel": "medium", + "v": "0x1", + "verifiedOnBlockchain": true + }, + { + "baseFeePerGas": "0x0", + "batchId": "0x19e28f7e5fc", + "blockTimestamp": "0x6a0663c5", + "chainId": "0x38", + "defaultGasEstimates": { + "estimateType": "medium", + "gas": "0x916a8", + "maxFeePerGas": "0x3938700", + "maxPriorityFeePerGas": "0x3938700" + }, + "delegationAddress": "0x63c0c19a282a1b52b07dd5a65b58948a07dae32b", + "excludeNativeTokenForFee": true, + "gasLimitNoBuffer": "0x916a8", + "hash": "0x1af8fb2bebcc7b224ced25e09d3952f2b3a98f4bb8924502510d53301a0df3d5", + "id": "108f1b10-4ff2-11f1-9f48-c9082a6dd9ea", + "isGasFeeIncluded": true, + "isGasFeeSponsored": false, + "isGasFeeTokenIgnoredIfBalance": false, + "nestedTransactions": [ + { + "data": "0x095ea7b30000000000000000000000001a1ec25dc08e98e5e93f1104b5e5cdd298707d310000000000000000000000000000000000000000000000000295b637bd12ec91", + "from": "0x141d32a89a1e0a5ef360034a2f60a4b917c18838", + "gas": "0x1110c", + "maxFeePerGas": "0x3938700", + "maxPriorityFeePerGas": "0x3938700", + "to": "0xf8a0bf9cf54bb92f17374d9e9a321e6a111a51bd", + "type": "swapApproval", + "value": "0x0" + }, + { + "data": "0x5f5755290000000000000000000000000000000000000000000000000000000000000080000000000000000000000000f8a0bf9cf54bb92f17374d9e9a321e6a111a51bd0000000000000000000000000000000000000000000000000295b637bd12ec9100000000000000000000000000000000000000000000000000000000000000c00000000000000000000000000000000000000000000000000000000000000018756e69737761705065726d69743246656544796e616d696300000000000000000000000000000000000000000000000000000000000000000000000000000360000000000000000000000000f8a0bf9cf54bb92f17374d9e9a321e6a111a51bd00000000000000000000000055d398326f99059ff775485246999027b31979550000000000000000000000000000000000000000000000000295b637bd12ec910000000000000000000000000000000000000000000000001a6091f10cd19fbb0000000000000000000000000000000000000000000000000000000000000120000000000000000000000000000000000000000000000000003cd2b07f1fb9f4000000000000000000000000b28da7bc87a9dd1e60849aa7fcb5da24ea913c420000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000022e3593564c000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000000a0000000000000000000000000000000000000000000000000000000006a066ac100000000000000000000000000000000000000000000000000000000000000010000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000000000200000000000000000000000000000000000000000000000000000000000000120000000000000000000000000c590175e458b83680867afd273527ff58f74c02b0000000000000000000000000000000000000000000000000295b637bd12ec910000000000000000000000000000000000000000000000001a9ee71032febe7d00000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000000000000000000000000000000010000000000000000000000000000000000000000000000000000000000000042f8a0bf9cf54bb92f17374d9e9a321e6a111a51bd0001f42170ed0880ac9a755fd29b2688956bd959f933f80001f455d398326f99059ff775485246999027b3197955000000000000000000000000000000000000000000000000000000000000756e69780000b2c5de0b0000000000000000000000000000000000008e", + "from": "0x141d32a89a1e0a5ef360034a2f60a4b917c18838", + "gas": "0x793f5", + "maxFeePerGas": "0x3938700", + "maxPriorityFeePerGas": "0x3938700", + "to": "0x1a1ec25DC08e98e5E93F1104B5e5cdD298707d31", + "type": "swap", + "value": "0x0" + }, + { + "data": "0x095ea7b30000000000000000000000001a1ec25dc08e98e5e93f1104b5e5cdd298707d310000000000000000000000000000000000000000000000003203235c920cba32", + "from": "0x141d32a89a1e0a5ef360034a2f60a4b917c18838", + "gas": "0x1110c", + "maxFeePerGas": "0x3938700", + "maxPriorityFeePerGas": "0x3938700", + "to": "0x1af3f329e8be154074d8769d1ffa4ee058b1dbc3", + "type": "swapApproval", + "value": "0x0" + }, + { + "data": "0x5f57552900000000000000000000000000000000000000000000000000000000000000800000000000000000000000001af3f329e8be154074d8769d1ffa4ee058b1dbc30000000000000000000000000000000000000000000000003203235c920cba3200000000000000000000000000000000000000000000000000000000000000c00000000000000000000000000000000000000000000000000000000000000018756e69737761705065726d69743246656544796e616d6963000000000000000000000000000000000000000000000000000000000000000000000000000006000000000000000000000000001af3f329e8be154074d8769d1ffa4ee058b1dbc300000000000000000000000055d398326f99059ff775485246999027b319795500000000000000000000000000000000000000000000000031931c550a5f2d0c000000000000000000000000000000000000000000000000309435be821a88f300000000000000000000000000000000000000000000000000000000000001200000000000000000000000000000000000000000000000000070070787ad8d26000000000000000000000000b28da7bc87a9dd1e60849aa7fcb5da24ea913c42000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000004ce3593564c000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000000a0000000000000000000000000000000000000000000000000000000006a066ac1000000000000000000000000000000000000000000000000000000000000000110000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000002000000000000000000000000000000000000000000000000000000000000003c0000000000000000000000000000000000000000000000000000000000000004000000000000000000000000000000000000000000000000000000000000000800000000000000000000000000000000000000000000000000000000000000003070b0e000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000030000000000000000000000000000000000000000000000000000000000000060000000000000000000000000000000000000000000000000000000000000022000000000000000000000000000000000000000000000000000000000000002a000000000000000000000000000000000000000000000000000000000000001a000000000000000000000000000000000000000000000000000000000000000200000000000000000000000001af3f329e8be154074d8769d1ffa4ee058b1dbc3000000000000000000000000000000000000000000000000000000000000008000000000000000000000000000000000000000000000000031931c550a5f2d0c00000000000000000000000000000000000000000000000030992fb8beccff6d0000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000002000000000000000000000000055d398326f99059ff775485246999027b319795500000000000000000000000000000000000000000000000000000000000000640000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000a0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000600000000000000000000000001af3f329e8be154074d8769d1ffa4ee058b1dbc300000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000006000000000000000000000000055d398326f99059ff775485246999027b3197955000000000000000000000000c590175e458b83680867afd273527ff58f74c02b0000000000000000000000000000000000000000000000000000000000000000756e69780000b2c5de0b0000000000000000000000000000000000005c", + "from": "0x141d32a89a1e0a5ef360034a2f60a4b917c18838", + "gas": "0x5d131", + "maxFeePerGas": "0x3938700", + "maxPriorityFeePerGas": "0x3938700", + "to": "0x1a1ec25DC08e98e5E93F1104B5e5cdD298707d31", + "type": "swap", + "value": "0x0" + }, + { + "data": "0xa9059cbb000000000000000000000000e3478b0bb1a5084567c319096437924948be196400000000000000000000000000000000000000000000000000c673dfa365026d", + "from": "0x141d32a89a1e0a5ef360034a2f60a4b917c18838", + "gas": "0xcc57", + "maxFeePerGas": "0x3938700", + "maxPriorityFeePerGas": "0x3938700", + "to": "0x55d398326f99059ff775485246999027b3197955", + "type": "transfer", + "value": "0x0" + } + ], + "networkClientId": "9a1eafde-5f04-434b-b011-e9de5c50baf0", + "origin": "metamask", + "originalGasEstimate": "0x916a8", + "postTxBalance": "0x105e7a033200", + "r": "0x36c7f0a5e218d9724269d6d9d0ed4612887e4b3d48d032ef38697f19eea62289", + "rawTx": "0x02f910b1385c84039387008403938700830916a894141d32a89a1e0a5ef360034a2f60a4b917c1883880b91044e9ae5c53010100000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000400000000000000000000000000000000000000000000000000000000000000fe00000000000000000000000000000000000000000000000000000000000000020000000000000000000000000000000000000000000000000000000000000000500000000000000000000000000000000000000000000000000000000000000a00000000000000000000000000000000000000000000000000000000000000180000000000000000000000000000000000000000000000000000000000000066000000000000000000000000000000000000000000000000000000000000007400000000000000000000000000000000000000000000000000000000000000ec0000000000000000000000000f8a0bf9cf54bb92f17374d9e9a321e6a111a51bd000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000600000000000000000000000000000000000000000000000000000000000000044095ea7b30000000000000000000000001a1ec25dc08e98e5e93f1104b5e5cdd298707d310000000000000000000000000000000000000000000000000295b637bd12ec91000000000000000000000000000000000000000000000000000000000000000000000000000000001a1ec25dc08e98e5e93f1104b5e5cdd298707d310000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000004455f5755290000000000000000000000000000000000000000000000000000000000000080000000000000000000000000f8a0bf9cf54bb92f17374d9e9a321e6a111a51bd0000000000000000000000000000000000000000000000000295b637bd12ec9100000000000000000000000000000000000000000000000000000000000000c00000000000000000000000000000000000000000000000000000000000000018756e69737761705065726d69743246656544796e616d696300000000000000000000000000000000000000000000000000000000000000000000000000000360000000000000000000000000f8a0bf9cf54bb92f17374d9e9a321e6a111a51bd00000000000000000000000055d398326f99059ff775485246999027b31979550000000000000000000000000000000000000000000000000295b637bd12ec910000000000000000000000000000000000000000000000001a6091f10cd19fbb0000000000000000000000000000000000000000000000000000000000000120000000000000000000000000000000000000000000000000003cd2b07f1fb9f4000000000000000000000000b28da7bc87a9dd1e60849aa7fcb5da24ea913c420000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000022e3593564c000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000000a0000000000000000000000000000000000000000000000000000000006a066ac100000000000000000000000000000000000000000000000000000000000000010000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000000000200000000000000000000000000000000000000000000000000000000000000120000000000000000000000000c590175e458b83680867afd273527ff58f74c02b0000000000000000000000000000000000000000000000000295b637bd12ec910000000000000000000000000000000000000000000000001a9ee71032febe7d00000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000000000000000000000000000000010000000000000000000000000000000000000000000000000000000000000042f8a0bf9cf54bb92f17374d9e9a321e6a111a51bd0001f42170ed0880ac9a755fd29b2688956bd959f933f80001f455d398326f99059ff775485246999027b3197955000000000000000000000000000000000000000000000000000000000000756e69780000b2c5de0b0000000000000000000000000000000000008e0000000000000000000000000000000000000000000000000000000000000000000000000000001af3f329e8be154074d8769d1ffa4ee058b1dbc3000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000600000000000000000000000000000000000000000000000000000000000000044095ea7b30000000000000000000000001a1ec25dc08e98e5e93f1104b5e5cdd298707d310000000000000000000000000000000000000000000000003203235c920cba32000000000000000000000000000000000000000000000000000000000000000000000000000000001a1ec25dc08e98e5e93f1104b5e5cdd298707d310000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000006e55f57552900000000000000000000000000000000000000000000000000000000000000800000000000000000000000001af3f329e8be154074d8769d1ffa4ee058b1dbc30000000000000000000000000000000000000000000000003203235c920cba3200000000000000000000000000000000000000000000000000000000000000c00000000000000000000000000000000000000000000000000000000000000018756e69737761705065726d69743246656544796e616d6963000000000000000000000000000000000000000000000000000000000000000000000000000006000000000000000000000000001af3f329e8be154074d8769d1ffa4ee058b1dbc300000000000000000000000055d398326f99059ff775485246999027b319795500000000000000000000000000000000000000000000000031931c550a5f2d0c000000000000000000000000000000000000000000000000309435be821a88f300000000000000000000000000000000000000000000000000000000000001200000000000000000000000000000000000000000000000000070070787ad8d26000000000000000000000000b28da7bc87a9dd1e60849aa7fcb5da24ea913c42000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000004ce3593564c000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000000a0000000000000000000000000000000000000000000000000000000006a066ac1000000000000000000000000000000000000000000000000000000000000000110000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000002000000000000000000000000000000000000000000000000000000000000003c0000000000000000000000000000000000000000000000000000000000000004000000000000000000000000000000000000000000000000000000000000000800000000000000000000000000000000000000000000000000000000000000003070b0e000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000030000000000000000000000000000000000000000000000000000000000000060000000000000000000000000000000000000000000000000000000000000022000000000000000000000000000000000000000000000000000000000000002a000000000000000000000000000000000000000000000000000000000000001a000000000000000000000000000000000000000000000000000000000000000200000000000000000000000001af3f329e8be154074d8769d1ffa4ee058b1dbc3000000000000000000000000000000000000000000000000000000000000008000000000000000000000000000000000000000000000000031931c550a5f2d0c00000000000000000000000000000000000000000000000030992fb8beccff6d0000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000002000000000000000000000000055d398326f99059ff775485246999027b319795500000000000000000000000000000000000000000000000000000000000000640000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000a0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000600000000000000000000000001af3f329e8be154074d8769d1ffa4ee058b1dbc300000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000006000000000000000000000000055d398326f99059ff775485246999027b3197955000000000000000000000000c590175e458b83680867afd273527ff58f74c02b0000000000000000000000000000000000000000000000000000000000000000756e69780000b2c5de0b0000000000000000000000000000000000005c00000000000000000000000000000000000000000000000000000000000000000000000000000055d398326f99059ff775485246999027b3197955000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000600000000000000000000000000000000000000000000000000000000000000044a9059cbb000000000000000000000000e3478b0bb1a5084567c319096437924948be196400000000000000000000000000000000000000000000000000c673dfa365026d00000000000000000000000000000000000000000000000000000000c001a036c7f0a5e218d9724269d6d9d0ed4612887e4b3d48d032ef38697f19eea62289a0388c9351834ccf3f9439936564f0fcad7594717a049cc3bc6bc2cbb731a74bce", + "s": "0x388c9351834ccf3f9439936564f0fcad7594717a049cc3bc6bc2cbb731a74bce", + "selectedGasFeeToken": "0x55d398326f99059ff775485246999027b3197955", + "status": "confirmed", + "submittedTime": 1778803654101, + "time": 1778803650369, + "txParams": { + "data": "0xe9ae5c53010100000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000400000000000000000000000000000000000000000000000000000000000000fe00000000000000000000000000000000000000000000000000000000000000020000000000000000000000000000000000000000000000000000000000000000500000000000000000000000000000000000000000000000000000000000000a00000000000000000000000000000000000000000000000000000000000000180000000000000000000000000000000000000000000000000000000000000066000000000000000000000000000000000000000000000000000000000000007400000000000000000000000000000000000000000000000000000000000000ec0000000000000000000000000f8a0bf9cf54bb92f17374d9e9a321e6a111a51bd000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000600000000000000000000000000000000000000000000000000000000000000044095ea7b30000000000000000000000001a1ec25dc08e98e5e93f1104b5e5cdd298707d310000000000000000000000000000000000000000000000000295b637bd12ec91000000000000000000000000000000000000000000000000000000000000000000000000000000001a1ec25dc08e98e5e93f1104b5e5cdd298707d310000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000004455f5755290000000000000000000000000000000000000000000000000000000000000080000000000000000000000000f8a0bf9cf54bb92f17374d9e9a321e6a111a51bd0000000000000000000000000000000000000000000000000295b637bd12ec9100000000000000000000000000000000000000000000000000000000000000c00000000000000000000000000000000000000000000000000000000000000018756e69737761705065726d69743246656544796e616d696300000000000000000000000000000000000000000000000000000000000000000000000000000360000000000000000000000000f8a0bf9cf54bb92f17374d9e9a321e6a111a51bd00000000000000000000000055d398326f99059ff775485246999027b31979550000000000000000000000000000000000000000000000000295b637bd12ec910000000000000000000000000000000000000000000000001a6091f10cd19fbb0000000000000000000000000000000000000000000000000000000000000120000000000000000000000000000000000000000000000000003cd2b07f1fb9f4000000000000000000000000b28da7bc87a9dd1e60849aa7fcb5da24ea913c420000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000022e3593564c000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000000a0000000000000000000000000000000000000000000000000000000006a066ac100000000000000000000000000000000000000000000000000000000000000010000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000000000200000000000000000000000000000000000000000000000000000000000000120000000000000000000000000c590175e458b83680867afd273527ff58f74c02b0000000000000000000000000000000000000000000000000295b637bd12ec910000000000000000000000000000000000000000000000001a9ee71032febe7d00000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000000000000000000000000000000010000000000000000000000000000000000000000000000000000000000000042f8a0bf9cf54bb92f17374d9e9a321e6a111a51bd0001f42170ed0880ac9a755fd29b2688956bd959f933f80001f455d398326f99059ff775485246999027b3197955000000000000000000000000000000000000000000000000000000000000756e69780000b2c5de0b0000000000000000000000000000000000008e0000000000000000000000000000000000000000000000000000000000000000000000000000001af3f329e8be154074d8769d1ffa4ee058b1dbc3000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000600000000000000000000000000000000000000000000000000000000000000044095ea7b30000000000000000000000001a1ec25dc08e98e5e93f1104b5e5cdd298707d310000000000000000000000000000000000000000000000003203235c920cba32000000000000000000000000000000000000000000000000000000000000000000000000000000001a1ec25dc08e98e5e93f1104b5e5cdd298707d310000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000006e55f57552900000000000000000000000000000000000000000000000000000000000000800000000000000000000000001af3f329e8be154074d8769d1ffa4ee058b1dbc30000000000000000000000000000000000000000000000003203235c920cba3200000000000000000000000000000000000000000000000000000000000000c00000000000000000000000000000000000000000000000000000000000000018756e69737761705065726d69743246656544796e616d6963000000000000000000000000000000000000000000000000000000000000000000000000000006000000000000000000000000001af3f329e8be154074d8769d1ffa4ee058b1dbc300000000000000000000000055d398326f99059ff775485246999027b319795500000000000000000000000000000000000000000000000031931c550a5f2d0c000000000000000000000000000000000000000000000000309435be821a88f300000000000000000000000000000000000000000000000000000000000001200000000000000000000000000000000000000000000000000070070787ad8d26000000000000000000000000b28da7bc87a9dd1e60849aa7fcb5da24ea913c42000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000004ce3593564c000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000000a0000000000000000000000000000000000000000000000000000000006a066ac1000000000000000000000000000000000000000000000000000000000000000110000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000002000000000000000000000000000000000000000000000000000000000000003c0000000000000000000000000000000000000000000000000000000000000004000000000000000000000000000000000000000000000000000000000000000800000000000000000000000000000000000000000000000000000000000000003070b0e000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000030000000000000000000000000000000000000000000000000000000000000060000000000000000000000000000000000000000000000000000000000000022000000000000000000000000000000000000000000000000000000000000002a000000000000000000000000000000000000000000000000000000000000001a000000000000000000000000000000000000000000000000000000000000000200000000000000000000000001af3f329e8be154074d8769d1ffa4ee058b1dbc3000000000000000000000000000000000000000000000000000000000000008000000000000000000000000000000000000000000000000031931c550a5f2d0c00000000000000000000000000000000000000000000000030992fb8beccff6d0000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000002000000000000000000000000055d398326f99059ff775485246999027b319795500000000000000000000000000000000000000000000000000000000000000640000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000a0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000600000000000000000000000001af3f329e8be154074d8769d1ffa4ee058b1dbc300000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000006000000000000000000000000055d398326f99059ff775485246999027b3197955000000000000000000000000c590175e458b83680867afd273527ff58f74c02b0000000000000000000000000000000000000000000000000000000000000000756e69780000b2c5de0b0000000000000000000000000000000000005c00000000000000000000000000000000000000000000000000000000000000000000000000000055d398326f99059ff775485246999027b3197955000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000600000000000000000000000000000000000000000000000000000000000000044a9059cbb000000000000000000000000e3478b0bb1a5084567c319096437924948be196400000000000000000000000000000000000000000000000000c673dfa365026d00000000000000000000000000000000000000000000000000000000", + "from": "0x141d32a89a1e0a5ef360034a2f60a4b917c18838", + "gas": "0x916a8", + "gasLimit": "0x916a8", + "maxFeePerGas": "0x3938700", + "maxPriorityFeePerGas": "0x3938700", + "to": "0x141d32a89a1e0a5ef360034a2f60a4b917c18838", + "type": "0x2", + "value": "0x0" + }, + "txReceipt": { + "blockHash": "0x94bda0986812c233d57f540ac3cb541248523800d84170a645aba6e8c7b32b9e", + "blockNumber": "0x5dc6c7b", + "contractAddress": null, + "cumulativeGasUsed": "0xe47b5f", + "effectiveGasPrice": "0x3938700", + "from": "0xb01caea8c6c47bbf4f4b4c5080ca642043359c2e", + "gasUsed": "0xa5e8a", + "logs": [ + { + "address": "0x04658b29f6b82ed55274221a06fc97d318e25416", + "blockHash": "0x94bda0986812c233d57f540ac3cb541248523800d84170a645aba6e8c7b32b9e", + "blockNumber": "0x5dc6c7b", + "blockTimestamp": "0x6a0663c5", + "data": "0x00000000000000000000000000000000000000000000000000000000000000010000000000000000000000000000000000000000000000000000000000000001", + "logIndex": "0x53", + "removed": false, + "topics": [ + "0x449da07f2c06c9d1a6b19d2454ffe749e8cf991d22f686e076a1a4844c5ff370", + "0x000000000000000000000000db9b1e94b5b69df7e401ddbede43491141047db3", + "0x000000000000000000000000b01caea8c6c47bbf4f4b4c5080ca642043359c2e", + "0xc97821ba3c26f250e32b78375bcd768b437799e983d548e4a736e863c517f3b1" + ], + "transactionHash": "0x1af8fb2bebcc7b224ced25e09d3952f2b3a98f4bb8924502510d53301a0df3d5", + "transactionIndex": "0xe" + }, + { + "address": "0xf8a0bf9cf54bb92f17374d9e9a321e6a111a51bd", + "blockHash": "0x94bda0986812c233d57f540ac3cb541248523800d84170a645aba6e8c7b32b9e", + "blockNumber": "0x5dc6c7b", + "blockTimestamp": "0x6a0663c5", + "data": "0x0000000000000000000000000000000000000000000000000295b637bd12ec91", + "logIndex": "0x54", + "removed": false, + "topics": [ + "0x8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925", + "0x000000000000000000000000141d32a89a1e0a5ef360034a2f60a4b917c18838", + "0x0000000000000000000000001a1ec25dc08e98e5e93f1104b5e5cdd298707d31" + ], + "transactionHash": "0x1af8fb2bebcc7b224ced25e09d3952f2b3a98f4bb8924502510d53301a0df3d5", + "transactionIndex": "0xe" + }, + { + "address": "0xf8a0bf9cf54bb92f17374d9e9a321e6a111a51bd", + "blockHash": "0x94bda0986812c233d57f540ac3cb541248523800d84170a645aba6e8c7b32b9e", + "blockNumber": "0x5dc6c7b", + "blockTimestamp": "0x6a0663c5", + "data": "0x0000000000000000000000000000000000000000000000000295b637bd12ec91", + "logIndex": "0x55", + "removed": false, + "topics": [ + "0xddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef", + "0x000000000000000000000000141d32a89a1e0a5ef360034a2f60a4b917c18838", + "0x000000000000000000000000c590175e458b83680867afd273527ff58f74c02b" + ], + "transactionHash": "0x1af8fb2bebcc7b224ced25e09d3952f2b3a98f4bb8924502510d53301a0df3d5", + "transactionIndex": "0xe" + }, + { + "address": "0xf8a0bf9cf54bb92f17374d9e9a321e6a111a51bd", + "blockHash": "0x94bda0986812c233d57f540ac3cb541248523800d84170a645aba6e8c7b32b9e", + "blockNumber": "0x5dc6c7b", + "blockTimestamp": "0x6a0663c5", + "data": "0x0000000000000000000000000000000000000000000000000000000000000000", + "logIndex": "0x56", + "removed": false, + "topics": [ + "0x8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925", + "0x000000000000000000000000141d32a89a1e0a5ef360034a2f60a4b917c18838", + "0x0000000000000000000000001a1ec25dc08e98e5e93f1104b5e5cdd298707d31" + ], + "transactionHash": "0x1af8fb2bebcc7b224ced25e09d3952f2b3a98f4bb8924502510d53301a0df3d5", + "transactionIndex": "0xe" + }, + { + "address": "0x000000000022d473030f116ddee9f6b43ac78ba3", + "blockHash": "0x94bda0986812c233d57f540ac3cb541248523800d84170a645aba6e8c7b32b9e", + "blockNumber": "0x5dc6c7b", + "blockTimestamp": "0x6a0663c5", + "data": "0x0000000000000000000000000000000000000000000000000295b637bd12ec91000000000000000000000000000000000000000000000000000000006a0663c5", + "logIndex": "0x57", + "removed": false, + "topics": [ + "0xda9fa7c1b00402c17d0161b249b1ab8bbec047c5a52207b9c112deffd817036b", + "0x000000000000000000000000c590175e458b83680867afd273527ff58f74c02b", + "0x000000000000000000000000f8a0bf9cf54bb92f17374d9e9a321e6a111a51bd", + "0x0000000000000000000000001906c1d672b88cd1b9ac7593301ca990f94eae07" + ], + "transactionHash": "0x1af8fb2bebcc7b224ced25e09d3952f2b3a98f4bb8924502510d53301a0df3d5", + "transactionIndex": "0xe" + }, + { + "address": "0x2170ed0880ac9a755fd29b2688956bd959f933f8", + "blockHash": "0x94bda0986812c233d57f540ac3cb541248523800d84170a645aba6e8c7b32b9e", + "blockNumber": "0x5dc6c7b", + "blockTimestamp": "0x6a0663c5", + "data": "0x00000000000000000000000000000000000000000000000000030a96c0247c82", + "logIndex": "0x58", + "removed": false, + "topics": [ + "0xddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef", + "0x000000000000000000000000783eb90b7d2cd01f981a23e6cf92314a3819535d", + "0x0000000000000000000000001906c1d672b88cd1b9ac7593301ca990f94eae07" + ], + "transactionHash": "0x1af8fb2bebcc7b224ced25e09d3952f2b3a98f4bb8924502510d53301a0df3d5", + "transactionIndex": "0xe" + }, + { + "address": "0xf8a0bf9cf54bb92f17374d9e9a321e6a111a51bd", + "blockHash": "0x94bda0986812c233d57f540ac3cb541248523800d84170a645aba6e8c7b32b9e", + "blockNumber": "0x5dc6c7b", + "blockTimestamp": "0x6a0663c5", + "data": "0x0000000000000000000000000000000000000000000000000295b637bd12ec91", + "logIndex": "0x59", + "removed": false, + "topics": [ + "0xddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef", + "0x000000000000000000000000c590175e458b83680867afd273527ff58f74c02b", + "0x000000000000000000000000783eb90b7d2cd01f981a23e6cf92314a3819535d" + ], + "transactionHash": "0x1af8fb2bebcc7b224ced25e09d3952f2b3a98f4bb8924502510d53301a0df3d5", + "transactionIndex": "0xe" + }, + { + "address": "0xf8a0bf9cf54bb92f17374d9e9a321e6a111a51bd", + "blockHash": "0x94bda0986812c233d57f540ac3cb541248523800d84170a645aba6e8c7b32b9e", + "blockNumber": "0x5dc6c7b", + "blockTimestamp": "0x6a0663c5", + "data": "0xfffffffffffffffffffffffffffffffffffffffffffffffa77f9b498e0548bc7", + "logIndex": "0x5a", + "removed": false, + "topics": [ + "0x8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925", + "0x000000000000000000000000c590175e458b83680867afd273527ff58f74c02b", + "0x000000000000000000000000000000000022d473030f116ddee9f6b43ac78ba3" + ], + "transactionHash": "0x1af8fb2bebcc7b224ced25e09d3952f2b3a98f4bb8924502510d53301a0df3d5", + "transactionIndex": "0xe" + }, + { + "address": "0x783eb90b7d2cd01f981a23e6cf92314a3819535d", + "blockHash": "0x94bda0986812c233d57f540ac3cb541248523800d84170a645aba6e8c7b32b9e", + "blockNumber": "0x5dc6c7b", + "blockTimestamp": "0x6a0663c5", + "data": "0xfffffffffffffffffffffffffffffffffffffffffffffffffffcf5693fdb837e0000000000000000000000000000000000000000000000000295b637bd12ec91000000000000000000000000000000000000000ec0d72b107527c2c327340ab1000000000000000000000000000000000000000000000000c1274e2ee7353085000000000000000000000000000000000000000000000000000000000000d248", + "logIndex": "0x5b", + "removed": false, + "topics": [ + "0xc42079f94a6350d7e6235f29174924f928cc2ac818eb64fed8004e115fbcca67", + "0x0000000000000000000000001906c1d672b88cd1b9ac7593301ca990f94eae07", + "0x0000000000000000000000001906c1d672b88cd1b9ac7593301ca990f94eae07" + ], + "transactionHash": "0x1af8fb2bebcc7b224ced25e09d3952f2b3a98f4bb8924502510d53301a0df3d5", + "transactionIndex": "0xe" + }, + { + "address": "0x55d398326f99059ff775485246999027b3197955", + "blockHash": "0x94bda0986812c233d57f540ac3cb541248523800d84170a645aba6e8c7b32b9e", + "blockNumber": "0x5dc6c7b", + "blockTimestamp": "0x6a0663c5", + "data": "0x0000000000000000000000000000000000000000000000001b27335d52bc28b3", + "logIndex": "0x5c", + "removed": false, + "topics": [ + "0xddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef", + "0x000000000000000000000000f9878a5dd55edc120fde01893ea713a4f032229c", + "0x000000000000000000000000c590175e458b83680867afd273527ff58f74c02b" + ], + "transactionHash": "0x1af8fb2bebcc7b224ced25e09d3952f2b3a98f4bb8924502510d53301a0df3d5", + "transactionIndex": "0xe" + }, + { + "address": "0x2170ed0880ac9a755fd29b2688956bd959f933f8", + "blockHash": "0x94bda0986812c233d57f540ac3cb541248523800d84170a645aba6e8c7b32b9e", + "blockNumber": "0x5dc6c7b", + "blockTimestamp": "0x6a0663c5", + "data": "0x00000000000000000000000000000000000000000000000000030a96c0247c82", + "logIndex": "0x5d", + "removed": false, + "topics": [ + "0xddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef", + "0x0000000000000000000000001906c1d672b88cd1b9ac7593301ca990f94eae07", + "0x000000000000000000000000f9878a5dd55edc120fde01893ea713a4f032229c" + ], + "transactionHash": "0x1af8fb2bebcc7b224ced25e09d3952f2b3a98f4bb8924502510d53301a0df3d5", + "transactionIndex": "0xe" + }, + { + "address": "0xf9878a5dd55edc120fde01893ea713a4f032229c", + "blockHash": "0x94bda0986812c233d57f540ac3cb541248523800d84170a645aba6e8c7b32b9e", + "blockNumber": "0x5dc6c7b", + "blockTimestamp": "0x6a0663c5", + "data": "0x00000000000000000000000000000000000000000000000000030a96c0247c82ffffffffffffffffffffffffffffffffffffffffffffffffe4d8cca2ad43d74d000000000000000000000000000000000000002fd1c3f61124e278d883bd5eb000000000000000000000000000000000000000000000060f6632205180d3a9db0000000000000000000000000000000000000000000000000000000000012e28", + "logIndex": "0x5e", + "removed": false, + "topics": [ + "0xc42079f94a6350d7e6235f29174924f928cc2ac818eb64fed8004e115fbcca67", + "0x0000000000000000000000001906c1d672b88cd1b9ac7593301ca990f94eae07", + "0x000000000000000000000000c590175e458b83680867afd273527ff58f74c02b" + ], + "transactionHash": "0x1af8fb2bebcc7b224ced25e09d3952f2b3a98f4bb8924502510d53301a0df3d5", + "transactionIndex": "0xe" + }, + { + "address": "0x55d398326f99059ff775485246999027b3197955", + "blockHash": "0x94bda0986812c233d57f540ac3cb541248523800d84170a645aba6e8c7b32b9e", + "blockNumber": "0x5dc6c7b", + "blockTimestamp": "0x6a0663c5", + "data": "0x000000000000000000000000000000000000000000000000003cd2b07f1fb9f4", + "logIndex": "0x5f", + "removed": false, + "topics": [ + "0xddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef", + "0x000000000000000000000000c590175e458b83680867afd273527ff58f74c02b", + "0x000000000000000000000000b28da7bc87a9dd1e60849aa7fcb5da24ea913c42" + ], + "transactionHash": "0x1af8fb2bebcc7b224ced25e09d3952f2b3a98f4bb8924502510d53301a0df3d5", + "transactionIndex": "0xe" + }, + { + "address": "0x55d398326f99059ff775485246999027b3197955", + "blockHash": "0x94bda0986812c233d57f540ac3cb541248523800d84170a645aba6e8c7b32b9e", + "blockNumber": "0x5dc6c7b", + "blockTimestamp": "0x6a0663c5", + "data": "0x0000000000000000000000000000000000000000000000001aea60acd39c6ebf", + "logIndex": "0x60", + "removed": false, + "topics": [ + "0xddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef", + "0x000000000000000000000000c590175e458b83680867afd273527ff58f74c02b", + "0x000000000000000000000000141d32a89a1e0a5ef360034a2f60a4b917c18838" + ], + "transactionHash": "0x1af8fb2bebcc7b224ced25e09d3952f2b3a98f4bb8924502510d53301a0df3d5", + "transactionIndex": "0xe" + }, + { + "address": "0x1a1ec25dc08e98e5e93f1104b5e5cdd298707d31", + "blockHash": "0x94bda0986812c233d57f540ac3cb541248523800d84170a645aba6e8c7b32b9e", + "blockNumber": "0x5dc6c7b", + "blockTimestamp": "0x6a0663c5", + "data": "0x", + "logIndex": "0x61", + "removed": false, + "topics": [ + "0xbeee1e6e7fe307ddcf84b0a16137a4430ad5e2480fc4f4a8e250ab56ccd7630d", + "0x9cc844e2828788f25f9d674f9dfb6a66ef6b8c38360c0ec1fa99e0b18c32eae8", + "0x000000000000000000000000141d32a89a1e0a5ef360034a2f60a4b917c18838" + ], + "transactionHash": "0x1af8fb2bebcc7b224ced25e09d3952f2b3a98f4bb8924502510d53301a0df3d5", + "transactionIndex": "0xe" + }, + { + "address": "0x1af3f329e8be154074d8769d1ffa4ee058b1dbc3", + "blockHash": "0x94bda0986812c233d57f540ac3cb541248523800d84170a645aba6e8c7b32b9e", + "blockNumber": "0x5dc6c7b", + "blockTimestamp": "0x6a0663c5", + "data": "0x0000000000000000000000000000000000000000000000003203235c920cba32", + "logIndex": "0x62", + "removed": false, + "topics": [ + "0x8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925", + "0x000000000000000000000000141d32a89a1e0a5ef360034a2f60a4b917c18838", + "0x0000000000000000000000001a1ec25dc08e98e5e93f1104b5e5cdd298707d31" + ], + "transactionHash": "0x1af8fb2bebcc7b224ced25e09d3952f2b3a98f4bb8924502510d53301a0df3d5", + "transactionIndex": "0xe" + }, + { + "address": "0x1af3f329e8be154074d8769d1ffa4ee058b1dbc3", + "blockHash": "0x94bda0986812c233d57f540ac3cb541248523800d84170a645aba6e8c7b32b9e", + "blockNumber": "0x5dc6c7b", + "blockTimestamp": "0x6a0663c5", + "data": "0x0000000000000000000000000000000000000000000000003203235c920cba32", + "logIndex": "0x63", + "removed": false, + "topics": [ + "0xddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef", + "0x000000000000000000000000141d32a89a1e0a5ef360034a2f60a4b917c18838", + "0x000000000000000000000000c590175e458b83680867afd273527ff58f74c02b" + ], + "transactionHash": "0x1af8fb2bebcc7b224ced25e09d3952f2b3a98f4bb8924502510d53301a0df3d5", + "transactionIndex": "0xe" + }, + { + "address": "0x1af3f329e8be154074d8769d1ffa4ee058b1dbc3", + "blockHash": "0x94bda0986812c233d57f540ac3cb541248523800d84170a645aba6e8c7b32b9e", + "blockNumber": "0x5dc6c7b", + "blockTimestamp": "0x6a0663c5", + "data": "0x0000000000000000000000000000000000000000000000000000000000000000", + "logIndex": "0x64", + "removed": false, + "topics": [ + "0x8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925", + "0x000000000000000000000000141d32a89a1e0a5ef360034a2f60a4b917c18838", + "0x0000000000000000000000001a1ec25dc08e98e5e93f1104b5e5cdd298707d31" + ], + "transactionHash": "0x1af8fb2bebcc7b224ced25e09d3952f2b3a98f4bb8924502510d53301a0df3d5", + "transactionIndex": "0xe" + }, + { + "address": "0x000000000022d473030f116ddee9f6b43ac78ba3", + "blockHash": "0x94bda0986812c233d57f540ac3cb541248523800d84170a645aba6e8c7b32b9e", + "blockNumber": "0x5dc6c7b", + "blockTimestamp": "0x6a0663c5", + "data": "0x00000000000000000000000000000000000000000000000031931c550a5f2d0c000000000000000000000000000000000000000000000000000000006a0663c5", + "logIndex": "0x65", + "removed": false, + "topics": [ + "0xda9fa7c1b00402c17d0161b249b1ab8bbec047c5a52207b9c112deffd817036b", + "0x000000000000000000000000c590175e458b83680867afd273527ff58f74c02b", + "0x0000000000000000000000001af3f329e8be154074d8769d1ffa4ee058b1dbc3", + "0x0000000000000000000000001906c1d672b88cd1b9ac7593301ca990f94eae07" + ], + "transactionHash": "0x1af8fb2bebcc7b224ced25e09d3952f2b3a98f4bb8924502510d53301a0df3d5", + "transactionIndex": "0xe" + }, + { + "address": "0x28e2ea090877bf75740558f6bfb36a5ffee9e9df", + "blockHash": "0x94bda0986812c233d57f540ac3cb541248523800d84170a645aba6e8c7b32b9e", + "blockNumber": "0x5dc6c7b", + "blockTimestamp": "0x6a0663c5", + "data": "0xffffffffffffffffffffffffffffffffffffffffffffffffce6ce3aaf5a0d2f40000000000000000000000000000000000000000000000003192029899a82342000000000000000000000000000000000000000100006c845eb0ec9d4a75de84000000000000000000000000000000000000000000087b92bf3c2710fa8e764d00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000064", + "logIndex": "0x66", + "removed": false, + "topics": [ + "0x40e9cecb9f5f1f1c5b9c97dec2917b7ee92e57ba5563708daca94dd84ad7112f", + "0x1eb0be4b2330177969b56f8a813d9ffa0d01ed3a95da8618482bb1cb42805656", + "0x0000000000000000000000001906c1d672b88cd1b9ac7593301ca990f94eae07" + ], + "transactionHash": "0x1af8fb2bebcc7b224ced25e09d3952f2b3a98f4bb8924502510d53301a0df3d5", + "transactionIndex": "0xe" + }, + { + "address": "0x1af3f329e8be154074d8769d1ffa4ee058b1dbc3", + "blockHash": "0x94bda0986812c233d57f540ac3cb541248523800d84170a645aba6e8c7b32b9e", + "blockNumber": "0x5dc6c7b", + "blockTimestamp": "0x6a0663c5", + "data": "0x00000000000000000000000000000000000000000000000031931c550a5f2d0c", + "logIndex": "0x67", + "removed": false, + "topics": [ + "0xddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef", + "0x000000000000000000000000c590175e458b83680867afd273527ff58f74c02b", + "0x00000000000000000000000028e2ea090877bf75740558f6bfb36a5ffee9e9df" + ], + "transactionHash": "0x1af8fb2bebcc7b224ced25e09d3952f2b3a98f4bb8924502510d53301a0df3d5", + "transactionIndex": "0xe" + }, + { + "address": "0x1af3f329e8be154074d8769d1ffa4ee058b1dbc3", + "blockHash": "0x94bda0986812c233d57f540ac3cb541248523800d84170a645aba6e8c7b32b9e", + "blockNumber": "0x5dc6c7b", + "blockTimestamp": "0x6a0663c5", + "data": "0xfffffffffffffffffffffffffffffffffffffffffffffe072f94781097e9be72", + "logIndex": "0x68", + "removed": false, + "topics": [ + "0x8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925", + "0x000000000000000000000000c590175e458b83680867afd273527ff58f74c02b", + "0x000000000000000000000000000000000022d473030f116ddee9f6b43ac78ba3" + ], + "transactionHash": "0x1af8fb2bebcc7b224ced25e09d3952f2b3a98f4bb8924502510d53301a0df3d5", + "transactionIndex": "0xe" + }, + { + "address": "0x55d398326f99059ff775485246999027b3197955", + "blockHash": "0x94bda0986812c233d57f540ac3cb541248523800d84170a645aba6e8c7b32b9e", + "blockNumber": "0x5dc6c7b", + "blockTimestamp": "0x6a0663c5", + "data": "0x0000000000000000000000000000000000000000000000003192029899a82342", + "logIndex": "0x69", + "removed": false, + "topics": [ + "0xddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef", + "0x00000000000000000000000028e2ea090877bf75740558f6bfb36a5ffee9e9df", + "0x000000000000000000000000c590175e458b83680867afd273527ff58f74c02b" + ], + "transactionHash": "0x1af8fb2bebcc7b224ced25e09d3952f2b3a98f4bb8924502510d53301a0df3d5", + "transactionIndex": "0xe" + }, + { + "address": "0x1af3f329e8be154074d8769d1ffa4ee058b1dbc3", + "blockHash": "0x94bda0986812c233d57f540ac3cb541248523800d84170a645aba6e8c7b32b9e", + "blockNumber": "0x5dc6c7b", + "blockTimestamp": "0x6a0663c5", + "data": "0x0000000000000000000000000000000000000000000000000070070787ad8d26", + "logIndex": "0x6a", + "removed": false, + "topics": [ + "0xddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef", + "0x000000000000000000000000c590175e458b83680867afd273527ff58f74c02b", + "0x000000000000000000000000b28da7bc87a9dd1e60849aa7fcb5da24ea913c42" + ], + "transactionHash": "0x1af8fb2bebcc7b224ced25e09d3952f2b3a98f4bb8924502510d53301a0df3d5", + "transactionIndex": "0xe" + }, + { + "address": "0x55d398326f99059ff775485246999027b3197955", + "blockHash": "0x94bda0986812c233d57f540ac3cb541248523800d84170a645aba6e8c7b32b9e", + "blockNumber": "0x5dc6c7b", + "blockTimestamp": "0x6a0663c5", + "data": "0x0000000000000000000000000000000000000000000000003192029899a82342", + "logIndex": "0x6b", + "removed": false, + "topics": [ + "0xddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef", + "0x000000000000000000000000c590175e458b83680867afd273527ff58f74c02b", + "0x000000000000000000000000141d32a89a1e0a5ef360034a2f60a4b917c18838" + ], + "transactionHash": "0x1af8fb2bebcc7b224ced25e09d3952f2b3a98f4bb8924502510d53301a0df3d5", + "transactionIndex": "0xe" + }, + { + "address": "0x1a1ec25dc08e98e5e93f1104b5e5cdd298707d31", + "blockHash": "0x94bda0986812c233d57f540ac3cb541248523800d84170a645aba6e8c7b32b9e", + "blockNumber": "0x5dc6c7b", + "blockTimestamp": "0x6a0663c5", + "data": "0x", + "logIndex": "0x6c", + "removed": false, + "topics": [ + "0xbeee1e6e7fe307ddcf84b0a16137a4430ad5e2480fc4f4a8e250ab56ccd7630d", + "0x9cc844e2828788f25f9d674f9dfb6a66ef6b8c38360c0ec1fa99e0b18c32eae8", + "0x000000000000000000000000141d32a89a1e0a5ef360034a2f60a4b917c18838" + ], + "transactionHash": "0x1af8fb2bebcc7b224ced25e09d3952f2b3a98f4bb8924502510d53301a0df3d5", + "transactionIndex": "0xe" + }, + { + "address": "0x55d398326f99059ff775485246999027b3197955", + "blockHash": "0x94bda0986812c233d57f540ac3cb541248523800d84170a645aba6e8c7b32b9e", + "blockNumber": "0x5dc6c7b", + "blockTimestamp": "0x6a0663c5", + "data": "0x00000000000000000000000000000000000000000000000000c673dfa365026d", + "logIndex": "0x6d", + "removed": false, + "topics": [ + "0xddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef", + "0x000000000000000000000000141d32a89a1e0a5ef360034a2f60a4b917c18838", + "0x000000000000000000000000e3478b0bb1a5084567c319096437924948be1964" + ], + "transactionHash": "0x1af8fb2bebcc7b224ced25e09d3952f2b3a98f4bb8924502510d53301a0df3d5", + "transactionIndex": "0xe" + }, + { + "address": "0xdb9b1e94b5b69df7e401ddbede43491141047db3", + "blockHash": "0x94bda0986812c233d57f540ac3cb541248523800d84170a645aba6e8c7b32b9e", + "blockNumber": "0x5dc6c7b", + "blockTimestamp": "0x6a0663c5", + "data": "0x00000000000000000000000000000000000000000000000000000000000000200000000000000000000000000000000000000000000000000000000000000a11000000000000000000000000141d32a89a1e0a5ef360034a2f60a4b917c18838ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff00000000000000000000000000000000000000000000000000000000000000c02c4fe590405569e95eb14868d74e7f3fb9567b825a2b98d15f280bfc03f3152d000000000000000000000000000000000000000000000000000000000000126000000000000000000000000000000000000000000000000000000000000000020000000000000000000000000000000000000000000000000000000000000040000000000000000000000000000000000000000000000000000000000000010000000000000000000000000004658b29f6b82ed55274221a06fc97d318e25416000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000000a00000000000000000000000000000000000000000000000000000000000000020000000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000000000000000000000000000000000001e141e455d08721dd5bcda1baa6ea5633afd5017000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000010600000000000000000000000000000000000000000000000000000000000000fe00000000000000000000000000000000000000000000000000000000000000020000000000000000000000000000000000000000000000000000000000000000500000000000000000000000000000000000000000000000000000000000000a00000000000000000000000000000000000000000000000000000000000000180000000000000000000000000000000000000000000000000000000000000066000000000000000000000000000000000000000000000000000000000000007400000000000000000000000000000000000000000000000000000000000000ec0000000000000000000000000f8a0bf9cf54bb92f17374d9e9a321e6a111a51bd000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000600000000000000000000000000000000000000000000000000000000000000044095ea7b30000000000000000000000001a1ec25dc08e98e5e93f1104b5e5cdd298707d310000000000000000000000000000000000000000000000000295b637bd12ec91000000000000000000000000000000000000000000000000000000000000000000000000000000001a1ec25dc08e98e5e93f1104b5e5cdd298707d310000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000004455f5755290000000000000000000000000000000000000000000000000000000000000080000000000000000000000000f8a0bf9cf54bb92f17374d9e9a321e6a111a51bd0000000000000000000000000000000000000000000000000295b637bd12ec9100000000000000000000000000000000000000000000000000000000000000c00000000000000000000000000000000000000000000000000000000000000018756e69737761705065726d69743246656544796e616d696300000000000000000000000000000000000000000000000000000000000000000000000000000360000000000000000000000000f8a0bf9cf54bb92f17374d9e9a321e6a111a51bd00000000000000000000000055d398326f99059ff775485246999027b31979550000000000000000000000000000000000000000000000000295b637bd12ec910000000000000000000000000000000000000000000000001a6091f10cd19fbb0000000000000000000000000000000000000000000000000000000000000120000000000000000000000000000000000000000000000000003cd2b07f1fb9f4000000000000000000000000b28da7bc87a9dd1e60849aa7fcb5da24ea913c420000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000022e3593564c000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000000a0000000000000000000000000000000000000000000000000000000006a066ac100000000000000000000000000000000000000000000000000000000000000010000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000000000200000000000000000000000000000000000000000000000000000000000000120000000000000000000000000c590175e458b83680867afd273527ff58f74c02b0000000000000000000000000000000000000000000000000295b637bd12ec910000000000000000000000000000000000000000000000001a9ee71032febe7d00000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000000000000000000000000000000010000000000000000000000000000000000000000000000000000000000000042f8a0bf9cf54bb92f17374d9e9a321e6a111a51bd0001f42170ed0880ac9a755fd29b2688956bd959f933f80001f455d398326f99059ff775485246999027b3197955000000000000000000000000000000000000000000000000000000000000756e69780000b2c5de0b0000000000000000000000000000000000008e0000000000000000000000000000000000000000000000000000000000000000000000000000001af3f329e8be154074d8769d1ffa4ee058b1dbc3000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000600000000000000000000000000000000000000000000000000000000000000044095ea7b30000000000000000000000001a1ec25dc08e98e5e93f1104b5e5cdd298707d310000000000000000000000000000000000000000000000003203235c920cba32000000000000000000000000000000000000000000000000000000000000000000000000000000001a1ec25dc08e98e5e93f1104b5e5cdd298707d310000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000006e55f57552900000000000000000000000000000000000000000000000000000000000000800000000000000000000000001af3f329e8be154074d8769d1ffa4ee058b1dbc30000000000000000000000000000000000000000000000003203235c920cba3200000000000000000000000000000000000000000000000000000000000000c00000000000000000000000000000000000000000000000000000000000000018756e69737761705065726d69743246656544796e616d6963000000000000000000000000000000000000000000000000000000000000000000000000000006000000000000000000000000001af3f329e8be154074d8769d1ffa4ee058b1dbc300000000000000000000000055d398326f99059ff775485246999027b319795500000000000000000000000000000000000000000000000031931c550a5f2d0c000000000000000000000000000000000000000000000000309435be821a88f300000000000000000000000000000000000000000000000000000000000001200000000000000000000000000000000000000000000000000070070787ad8d26000000000000000000000000b28da7bc87a9dd1e60849aa7fcb5da24ea913c42000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000004ce3593564c000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000000a0000000000000000000000000000000000000000000000000000000006a066ac1000000000000000000000000000000000000000000000000000000000000000110000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000002000000000000000000000000000000000000000000000000000000000000003c0000000000000000000000000000000000000000000000000000000000000004000000000000000000000000000000000000000000000000000000000000000800000000000000000000000000000000000000000000000000000000000000003070b0e000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000030000000000000000000000000000000000000000000000000000000000000060000000000000000000000000000000000000000000000000000000000000022000000000000000000000000000000000000000000000000000000000000002a000000000000000000000000000000000000000000000000000000000000001a000000000000000000000000000000000000000000000000000000000000000200000000000000000000000001af3f329e8be154074d8769d1ffa4ee058b1dbc3000000000000000000000000000000000000000000000000000000000000008000000000000000000000000000000000000000000000000031931c550a5f2d0c00000000000000000000000000000000000000000000000030992fb8beccff6d0000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000002000000000000000000000000055d398326f99059ff775485246999027b319795500000000000000000000000000000000000000000000000000000000000000640000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000a0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000600000000000000000000000001af3f329e8be154074d8769d1ffa4ee058b1dbc300000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000006000000000000000000000000055d398326f99059ff775485246999027b3197955000000000000000000000000c590175e458b83680867afd273527ff58f74c02b0000000000000000000000000000000000000000000000000000000000000000756e69780000b2c5de0b0000000000000000000000000000000000005c00000000000000000000000000000000000000000000000000000000000000000000000000000055d398326f99059ff775485246999027b3197955000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000600000000000000000000000000000000000000000000000000000000000000044a9059cbb000000000000000000000000e3478b0bb1a5084567c319096437924948be196400000000000000000000000000000000000000000000000000c673dfa365026d00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000414c5f51aca6a0133412bf7ec4206a80961cf6b47e176523282526e3436cabca8f4f75a93541510a0059c1400f898adec1bb8c0bbcb91ad2db77636866ce23d9901b00000000000000000000000000000000000000000000000000000000000000", + "logIndex": "0x6e", + "removed": false, + "topics": [ + "0x40dadaa36c6c2e3d7317e24757451ffb2d603d875f0ad5e92c5dd156573b1873", + "0x000000000000000000000000141d32a89a1e0a5ef360034a2f60a4b917c18838", + "0x000000000000000000000000b01caea8c6c47bbf4f4b4c5080ca642043359c2e" + ], + "transactionHash": "0x1af8fb2bebcc7b224ced25e09d3952f2b3a98f4bb8924502510d53301a0df3d5", + "transactionIndex": "0xe" + } + ], + "logsBloom": "0x40010000000000000888000000040804000000000000000840000000000084000040000000000000000010204000000000010000848020000080401000a80000000000810000010807024008020020040100002002400822000000100001100008000000000000000000010000000000900000010000800000000210000900020020000000000001808000020802000000000001000010002000000000000000220000000000000001000000000001008000000040000000000000080000000800080002000000000000000000040000200900000000004840000002000000000030001000000002004200100400020040000000000000001000000000080500", + "status": "0x1", + "to": "0xdb9b1e94b5b69df7e401ddbede43491141047db3", + "transactionHash": "0x1af8fb2bebcc7b224ced25e09d3952f2b3a98f4bb8924502510d53301a0df3d5", + "transactionIndex": "0xe", + "type": "0x2" + }, + "type": "swap", + "userEditedGasLimit": false, + "userFeeLevel": "medium", + "v": "0x1", + "verifiedOnBlockchain": true + } + ], + "networkConfigurations": {}, + "addressBook": { + "*": { + "0x2b6a82d1Fea4D5B137095cA5306BA2589B630A08": { + "address": "0x2b6a82d1Fea4D5B137095cA5306BA2589B630A08", + "chainId": "*", + "isEns": false, + "lastUpdatedAt": 1772573102953, + "memo": "", + "name": "Account 5" + }, + "0x30E8ccaD5A980BDF30447f8c2C48e70989D9d294": { + "address": "0x30E8ccaD5A980BDF30447f8c2C48e70989D9d294", + "chainId": "*", + "isEns": false, + "lastUpdatedAt": 1772573102953, + "memo": "", + "name": "Account 1" + }, + "0x3823C59973351F50e8B985e182b81300Dae9Bb45": { + "address": "0x3823C59973351F50e8B985e182b81300Dae9Bb45", + "chainId": "*", + "isEns": false, + "lastUpdatedAt": 1772573102953, + "memo": "", + "name": "Account 9" + }, + "0x452cA3DAd6dB7F3a47bbF15b758B6749Db579bBc": { + "address": "0x452cA3DAd6dB7F3a47bbF15b758B6749Db579bBc", + "chainId": "*", + "isEns": false, + "lastUpdatedAt": 1772573102953, + "memo": "", + "name": "Account 4" + }, + "0x83AD6A1294d949d514361326bcebAe4F73957327": { + "address": "0x83AD6A1294d949d514361326bcebAe4F73957327", + "chainId": "*", + "isEns": false, + "lastUpdatedAt": 1772573102953, + "memo": "", + "name": "Account 7" + }, + "0x94d1362400E999b38C845cA2c305c084031DAe84": { + "address": "0x94d1362400E999b38C845cA2c305c084031DAe84", + "chainId": "*", + "isEns": false, + "lastUpdatedAt": 1772573102953, + "memo": "", + "name": "Account 6" + }, + "0x9f66e62Fd52eeb9286385f620d2bCbe02C94443E": { + "address": "0x9f66e62Fd52eeb9286385f620d2bCbe02C94443E", + "chainId": "*", + "isEns": false, + "lastUpdatedAt": 1772573102954, + "memo": "", + "name": "Ledger 1" + }, + "0xE2F39519240814a77047490357cEd4d094B6C9C7": { + "address": "0xE2F39519240814a77047490357cEd4d094B6C9C7", + "chainId": "*", + "isEns": false, + "lastUpdatedAt": 1772573102953, + "memo": "", + "name": "Account 3" + }, + "0xF25bd11C334507Fd007d584E2D0b7b2C6543f714": { + "address": "0xF25bd11C334507Fd007d584E2D0b7b2C6543f714", + "chainId": "*", + "isEns": false, + "lastUpdatedAt": 1772573102953, + "memo": "", + "name": "Account 2" + }, + "0xbcc30CC9B8109f87fcEDE0C57E3A8c3DC979e3D0": { + "address": "0xbcc30CC9B8109f87fcEDE0C57E3A8c3DC979e3D0", + "chainId": "*", + "isEns": false, + "lastUpdatedAt": 1772573102953, + "memo": "", + "name": "Account 8" + } + } + }, + "featureFlags": {}, + "currentLocale": "en", + "preferences": { + "avatarType": "maskicon", + "dismissSmartAccountSuggestionEnabled": false, + "featureNotificationsEnabled": false, + "hideZeroBalanceTokens": false, + "privacyMode": false, + "showConfirmationAdvancedDetails": false, + "showDefaultAddress": true, + "defaultAddressScope": "eip155", + "showExtensionInFullSizeView": false, + "showFiatInTestnets": false, + "showMultiRpcModal": false, + "showNativeTokenAsMainBalance": false, + "showTestNetworks": false, + "skipDeepLinkInterstitial": false, + "smartTransactionsOptInStatus": true, + "smartTransactionsMigrationApplied": false, + "tokenNetworkFilter": { + "0x38": true + }, + "tokenSortConfig": { + "key": "tokenFiatAmount", + "order": "dsc", + "sortCallback": "stringNumeric" + }, + "useNativeCurrencyAsPrimaryCurrency": true, + "useSidePanelAsDefault": true, + "smartAccountOptIn": true + }, + "firstTimeFlowType": "import", + "completedOnboarding": true, + "knownMethodData": { + "0x095ea7b3": { + "name": "Approve", + "params": [ + { + "type": "address" + }, + { + "type": "uint256" + } + ] + }, + "0x3ce33bff": { + "name": "Bridge", + "params": [ + { + "type": "string" + }, + { + "type": "address" + }, + { + "type": "uint256" + }, + { + "type": "bytes" + } + ] + }, + "0x5f575529": { + "name": "Swap", + "params": [ + { + "type": "string" + }, + { + "type": "address" + }, + { + "type": "uint256" + }, + { + "type": "bytes" + } + ] + }, + "0x6a761202": { + "name": "Exec Transaction", + "params": [ + { + "type": "address" + }, + { + "type": "uint256" + }, + { + "type": "bytes" + }, + { + "type": "uint8" + }, + { + "type": "uint256" + }, + { + "type": "uint256" + }, + { + "type": "uint256" + }, + { + "type": "address" + }, + { + "type": "address" + }, + { + "type": "bytes" + } + ] + }, + "0xa9059cbb": { + "name": "Transfer", + "params": [ + { + "type": "address" + }, + { + "type": "uint256" + } + ] + }, + "0xe9ae5c53": { + "name": "Execute", + "params": [ + { + "type": "bytes32" + }, + { + "type": "bytes" + } + ] + } + }, + "use4ByteResolution": true, + "participateInMetaMetrics": true, + "dataCollectionForMarketing": false, + "currencyRates": { + "AVAX": { + "conversionDate": 1778867784.1, + "conversionRate": 9.579763203, + "usdConversionRate": 9.579763203 + }, + "BNB": { + "conversionDate": 1778867784.1, + "conversionRate": 674.811586071, + "usdConversionRate": 674.811586071 + }, + "ETH": { + "conversionDate": 1778867784.1, + "conversionRate": 2226.480729313, + "usdConversionRate": 2226.480729313 + }, + "HYPE": { + "conversionDate": 1775750925.036, + "conversionRate": 39.688261839, + "usdConversionRate": 39.688261839 + }, + "MON": { + "conversionDate": 1778867784.1, + "conversionRate": 0.029400263, + "usdConversionRate": 0.029400263 + }, + "POL": { + "conversionDate": 1778867784.1, + "conversionRate": 0.090777756, + "usdConversionRate": 0.090777756 + }, + "SepoliaETH": { + "conversionDate": 1771890341.608, + "conversionRate": 1855.207672678, + "usdConversionRate": 1855.207672678 + } + }, + "throttledOrigins": {}, + "isSeedlessOnboardingUserAuthenticated": false, + "accountIdByAddress": { + "0x30e8ccad5a980bdf30447f8c2c48e70989d9d294": "cf6fe6ed-1d1c-4649-9662-a232e0aadb82", + "0xf25bd11c334507fd007d584e2d0b7b2c6543f714": "7020eb89-94df-4e67-ba9f-a9ebe6c40524", + "0xe2f39519240814a77047490357ced4d094b6c9c7": "02c4222b-f0d3-448e-848f-7bf6b3ce3379", + "0x452ca3dad6db7f3a47bbf15b758b6749db579bbc": "2ddfe00a-fef1-4085-82f5-e5cdc9d8871f", + "0x2b6a82d1fea4d5b137095ca5306ba2589b630a08": "4ad41148-9589-48f1-a20d-1ddd6bcf1282", + "0x94d1362400e999b38c845ca2c305c084031dae84": "4493467c-a178-494e-b87e-92f0d7a7d1a1", + "0x83ad6a1294d949d514361326bcebae4f73957327": "77939f4e-1d05-4224-bf26-90dcc3382f5d", + "0xbcc30cc9b8109f87fcede0c57e3a8c3dc979e3d0": "08127c65-97e2-4502-b576-2b25c8cc765f", + "0x3823c59973351f50e8b985e182b81300dae9bb45": "7e04501c-6e1f-457d-8dd5-68d8f3a4c84f", + "0xc9442048fd0c34b684035a82188b69c4ee5e8f21": "db094d8c-3c7b-4a1f-97f5-6d43bf894549", + "THV8AzsmaMCuCEW3xmxeHQe3nfVjcPESnG": "fedf900d-3caf-4540-9e24-c63400ef2b18", + "TTU9eC5J56EhSRhw56NqZW48bJFCC1V4zt": "1c2440b0-d05e-4b07-881c-ebb9bce2bbb7", + "TLQw3YKJkcBdBsuR4eUxXAYRjQdpD6eEMD": "3d26ef67-6870-4750-af80-bce53fa4a0af", + "TJQTuKiGEYBoFaScz3WdpYYVyA7osnLLMa": "8b0e3ad2-d40d-47b1-a9c3-702eb67ab1ba", + "TNhtgmd4AcnN4eB6AqBejjvSJppjg33kKV": "9e12503a-12d8-4bb4-835f-a0c203ccd67a", + "TQ2WcfeudHttr9ef9PykE4Vf5upUDhzCKy": "c7cf5799-e458-4bb5-b60b-7e74cf2e7c0a", + "TPhMtQEUfTrEc3v6M75cnRfbSC41MZcaDB": "f7f2ce83-85bc-49f9-8551-c36c5432a0c1", + "TQEG7f85Eawvcw3QV4JsMfHJvXcCC8Kxq5": "73a28e8a-5ecb-4b36-b6f3-d2c12294eebf", + "TU2aNJSfrhLZnSvPRCiAHdpLBhxW2n8HA8": "78ccb0a9-3647-4bb6-94b4-54d8b4e0b397", + "TWYHHhNY6TA3sVLbkZ4suQDMuKxYqLPDja": "77a6514e-0024-4dc2-b08d-e78c664c37c5", + "TXmjzabcG63GjXgGKuaStJh6oCorb8jyja": "c5bf70b0-2c4b-4016-9107-cab94be5fbb0", + "TVnpirfVZPZg4eybigftt2bGcLVawnLVHy": "658962cf-0ecb-496e-beb8-91b663d244de", + "TFZKVArzmNQTpv3bKe1QUkCXruf8PTuJdG": "1dd2b0a9-a1ea-4308-92e8-303665fd25c5", + "TVgYW8xdwbKPw5MkiYbz5Vmto9wna2zNdr": "d8086b4c-4361-49ab-8955-efaa5240f561", + "TGhD1GruvbKNbhAUBxqiHQVpXe4tL4WzMN": "8fd0b8c5-b42d-462d-965b-2979b4057c88", + "TGzh1crEiU8jT2XNix6NWMVFCtwNyEiiX5": "e6f7d2e7-8c4c-48f7-9d04-958add8113b7", + "bc1q2pxsagdzfdn6k6umvf9gj3eme7a27p7acym9g2": "ffb79cf7-3a88-4cfe-864c-a9f656ce1840", + "bc1qkv7fs9jkan5fk4dal9zm4hltvx3022mmnzt09l": "d05ca007-7a11-470f-8433-a89767f95995", + "bc1qjx6jn6jlkrglaqtt35hr0sc7qsehkuqyq6lmys": "23ce192d-62e7-4d4f-a168-93ae18dc915d", + "bc1q4802rfdtl8x6fc2lfrerpuqn3707mz9p6xaw5v": "c6d62ae8-d02c-4a7a-8222-17ed6cdf0e52", + "bc1qx95r6rrjndjmnc353mg0da5545smp9sakzxxtl": "df59431e-d587-40a5-9c2b-3bdc6584b0e4", + "bc1qmkhzc8tx8xkkwzqfez4nuk27qemjg5mvf54csk": "03d7de03-c856-4239-93fc-b3cc5352883a", + "bc1qc5jermkwtwa4zput0tjrxqrq03906xfw0mtanx": "3d379cac-eb60-4b45-8374-370aac2b76c5", + "bc1qc7s93vamc0zduhuv5aswq9a9lp5k4za20tl05l": "744910ce-8368-414f-8e7c-1c5dba71831e", + "bc1qlrssy7r7vfstz30g78d6duzfg0clj7m380punr": "d834c0ad-655b-4707-997d-7048c1896f89", + "bc1quktjtsfqgk2y35vlucwvzczfqzkpawp066v3ww": "f5481e08-42e2-4504-9a1f-44c0bbe6e0bb", + "bc1qklk4c2g7pk2eertfh0zgw9gn6gaq7px9stmtsz": "574cb22f-c2d5-40d2-86a5-e3393d33050f", + "bc1qzzgcr8ekdfgyjad8fdfmctj0jv0k6ntkj3jpxp": "e78a4c3d-7649-4797-90ad-9d6ddbe9e6dd", + "bc1q07mlsqrpt80trs5zffk4ysl35s7e9tltazgnne": "a4c40c7c-01c0-4335-b574-72195898b31c", + "bc1q20l4mt5f6k5k3utw6vwae83r5r9lzj3dd0567k": "c2c05428-c846-4992-a5a3-5d151b97fcdb", + "bc1q79rp7e2avw8lnvrlaykt7uh4q7etkrau5nytjd": "1a14e831-0c2c-46ce-8e2b-d7d53cbefb63", + "bc1qntcy866amnqthda3j8uhtjd75gl0562sfaudwz": "80340772-85d8-41a5-b316-1d8fc8c2cea4", + "8jKM7u4xsyvDpnqL5DQMVrh8AXxZKJPKJw5QsM7KEF8J": "55fe5095-3194-42c2-81d3-5701dcad1924", + "D17b35MvfEann7FDStSUWH6EAXCyfvjBXJmx8zwCeMg5": "e4cb2ec8-15e3-494a-bde2-6ea14e6d0d6c", + "EakrRNLYP3WCatjriJzKSy4HRbmHA4ogdN11dwPPQmJP": "c86652a6-e1f3-4e4c-b411-c58efe220dcf", + "Bz3cfju4DDyduz7mRbgV7tN4aKg2mmZp4hqUc5dUJWct": "5a747531-d39f-49d5-afbd-59c018cc4757", + "HhoQAMYGpUr733KFgZJuZxwVVfqMKLgpChjzehYTRW4C": "db7205b1-e72f-4082-92c4-5490fdba12c5", + "GBnbPgkU6Nz1iH8nE1aPc4K5vLt7Y8TLDJm55WEGVdK5": "c3fc6bba-683b-44c8-b637-89b55416a8dd", + "4fhPk4yRhMPQL21Ua2MMUxC2p5VT9q2K4Uep2aGAtYGJ": "2858af66-a9cd-456a-b29c-f2f5148a5ac8", + "F7nHkrzPrE6J8r8jcvLPVE3KbuwGzosGWjiRzXyuWPx1": "44ca98ce-b819-4e06-b651-ba146dbe22c1", + "3PGGUjEUt8jUpqzfAB3bh7A3NWDZhqNcdtCGqeipT6bV": "e421a858-a232-40dc-8bbb-d3745bee215b", + "DRZLWUT14336p9NRrquuwt759BSydintJFGiRT6refdA": "891b1840-b34b-4059-895b-5f163cff8ff1", + "CyGir7UdxRCsNXkA89qH1P5p3Zhx11XxsE97WSfNMnLT": "076cbb47-1752-40b0-9314-1f07e7b88ffa", + "ATK5qHMB4bNuPh6Hj3RoCLRQrUafg9PoSdR5RhEf6nyz": "e86326ea-c687-45bf-84b9-ad4d8618d084", + "FauUtcWJ81uyS6naBZD6uSdjNuJvuD73tUnSLJMZUP2e": "575d130d-01da-44f0-a731-da9967adf412", + "uik8nmbvhYfhj1n9hrJ4vigneMrr3qbbbbWuhLLSboP": "7f6eee30-338e-4926-86fa-19436da91f35", + "fXSVz3jyNokxeNN1Z6bvh4eT4ZuXv1gtpGaSg4HxxXw": "040b84bc-2341-4988-b8db-8063bbc6c708", + "ALcEx6ANnJams9dX2jUwamfSc2P7gA66tUt83o3F2ipv": "0089fc3c-35be-4ecf-ba88-22461a3d9503", + "0x9dc641ccd7d1e7c66e47a25598ace7219548d887": "a380d0c9-927f-4aa2-a382-15ed278e70a4", + "0x6eff00186ba65c5fade98d75aa4d99ef71fa461b": "ae40b2c3-e8e1-45ed-b0cf-a5ba56e74041", + "0x04400bb51b1f886cff338eb2b4118f9ceb4e6fd5": "ea035e3a-ea43-4df0-96aa-b4e50c16396c", + "0xb3864b298f4fddbbbd2fa5cf1a2a2748932b3b81": "bf588376-0492-4a35-b653-0f1304a6c5f1", + "0xeeeab71a5989b7951389e3df313ea9876508856f": "7a1e85fa-7c26-48a7-890c-5b2ea56f650c", + "0x422b8d8914cdad779f587414d647e953bb3a87db": "88caeea6-0032-4313-b351-096e9f8e60a9", + "0x141d32a89a1e0a5ef360034a2f60a4b917c18838": "2727ea45-0879-4ce8-bbac-e7b83a7ca3de", + "0x98931e2b2272891c2e8e47d675007d94ae90ce64": "d0a2da70-b536-4e45-beb8-82e35365093d", + "0xf1f63d55e8f25c962079be324c71cdcf792c6047": "8163605d-535a-441d-a381-a5eac11ef57d", + "0xda04e0fe4e79eebcaffcbfff8ea0bdcd442d2119": "d9d2faf4-e5f4-4505-bbe2-a03d3c9e10a1", + "0xa30078e306614c2f444550da6bc759173dfb61fd": "3401973a-4989-44c5-9569-f27f25197c2d", + "0x09b8556833e53f92ee0b668db146b43ca2cab130": "83bd90d5-eaa6-4f8d-b89b-b574273bd04e" + }, + "activeQrCodeScanRequest": null, + "appActiveTab": { + "id": 809479887, + "title": "feat: submit batch sell quotes by micaelae · Pull Request #8775 · MetaMask/core", + "origin": "https://github.com", + "protocol": "https:", + "url": "https://github.com/MetaMask/core/pull/8775", + "host": "github.com", + "href": "https://github.com/MetaMask/core/pull/8775", + "favIconUrl": "https://github.githubassets.com/favicons/favicon-failure.svg" + }, + "browserEnvironment": { + "os": "mac", + "browser": "chrome" + }, + "connectedStatusPopoverHasBeenShown": true, + "defaultHomeActiveTabName": "activity", + "fullScreenGasPollTokens": [], + "hadAdvancedGasFeesSetPriorToMigration92_3": false, + "canTrackWalletFundsObtained": false, + "pendingExtensionVersion": null, + "lastUpdatedAt": 1778267056698, + "lastUpdatedFromVersion": "13.31.0.0", + "lastViewedUserSurvey": null, + "newPrivacyPolicyToastClickedOrClosed": null, + "newPrivacyPolicyToastShownDate": 1771890310130, + "pna25Acknowledged": true, + "notificationGasPollTokens": [], + "onboardingDate": 1771890310173, + "outdatedBrowserWarningLastShown": null, + "popupGasPollTokens": [], + "sidePanelGasPollTokens": [ + "fdac2de5-72aa-425f-ba7a-e4b489f4ce8d", + "51564284-8e6d-4961-a7a9-bbc285581cf7", + "154e135d-2331-414a-b405-255d03b6e113", + "5671c86c-d89b-4ba7-9424-d269194d1ebd", + "b449631e-a2ac-4d2b-a763-0fa254b3e051", + "3381a098-7c1b-48ca-aea0-4173f149d904", + "a60eb15d-e0d1-4745-9b0d-e24725c9402e", + "3664071b-8329-47fb-bfd4-981abfd3a277", + "95150619-954b-4b9a-9071-0d54855aa9c1", + "2d2cd621-d497-4725-b7ab-782d508c2171", + "77bdfbf2-5980-47ae-a64d-2abefa21a6cc", + "38b973f2-5943-4e15-94d7-d6efe4dcdfa0", + "42b7e094-5810-4f93-b627-f9dc36ae3969" + ], + "productTour": "accountIcon", + "recoveryPhraseReminderHasBeenShown": false, + "recoveryPhraseReminderLastShown": 1771890309165, + "showDownloadMobileAppSlide": true, + "slides": [], + "shieldSubscriptionError": null, + "shieldEndingToastLastClickedOrClosed": null, + "shieldPausedToastLastClickedOrClosed": null, + "timeoutMinutes": 0, + "trezorModel": null, + "updateModalLastDismissedAt": null, + "hasShownMultichainAccountsIntroModal": false, + "musdConversionEducationSeen": false, + "musdConversionDismissedCtaKeys": [], + "showShieldEntryModalOnce": null, + "pendingRedirectRoute": null, + "lastVisitedRoute": null, + "pendingShieldCohort": null, + "pendingShieldCohortTxType": null, + "isWalletResetInProgress": false, + "dappSwapComparisonData": {}, + "storageWriteErrorType": null, + "passkeyAutoUnlockSuppressed": false, + "addressSecurityAlertResponses": {}, + "currentExtensionPopupId": 0, + "nftsDropdownState": {}, + "signatureSecurityAlertResponses": {}, + "networkConnectionBanner": { + "status": "available" + }, + "lastInteractedConfirmationInfo": { + "chainId": "0x1", + "id": "693184b0-39db-11f1-bbe4-3727d90ba13b", + "origin": "metamask", + "timestamp": 1776374996001 + }, + "termsOfUseLastAgreed": 1771890322764, + "currentAppVersion": "13.32.0", + "previousAppVersion": "13.31.0", + "previousMigrationVersion": 209, + "currentMigrationVersion": 211, + "firstTimeInfo": { + "date": 1771890309175, + "version": "13.21.0" + }, + "accountsAssets": { + "0089fc3c-35be-4ecf-ba88-22461a3d9503": [ + "solana:5eykt4UsFv8P8NJdTREpY1vzqKqZKvdp/slip44:501" + ], + "03d7de03-c856-4239-93fc-b3cc5352883a": [ + "bip122:000000000019d6689c085ae165831e93/slip44:0" + ], + "040b84bc-2341-4988-b8db-8063bbc6c708": [ + "solana:5eykt4UsFv8P8NJdTREpY1vzqKqZKvdp/slip44:501" + ], + "076cbb47-1752-40b0-9314-1f07e7b88ffa": [ + "solana:5eykt4UsFv8P8NJdTREpY1vzqKqZKvdp/slip44:501", + "solana:5eykt4UsFv8P8NJdTREpY1vzqKqZKvdp/token:CKfatsPMUf8SkiURsDXs7eK6GWb4Jsd6UDbs7twMCWxo", + "solana:5eykt4UsFv8P8NJdTREpY1vzqKqZKvdp/token:HeLp6NuQkmYB4pYWo2zYs22mESHXPQYzXbB8n4V98jwC" + ], + "1a14e831-0c2c-46ce-8e2b-d7d53cbefb63": [ + "bip122:000000000019d6689c085ae165831e93/slip44:0" + ], + "1c2440b0-d05e-4b07-881c-ebb9bce2bbb7": [ + "tron:728126428/slip44:195", + "tron:3448148188/slip44:195", + "tron:2494104990/slip44:195", + "tron:728126428/slip44:195-staked-for-bandwidth", + "tron:3448148188/slip44:195-staked-for-bandwidth", + "tron:2494104990/slip44:195-staked-for-bandwidth", + "tron:728126428/slip44:195-staked-for-energy", + "tron:3448148188/slip44:195-staked-for-energy", + "tron:2494104990/slip44:195-staked-for-energy", + "tron:728126428/slip44:bandwidth", + "tron:3448148188/slip44:bandwidth", + "tron:2494104990/slip44:bandwidth", + "tron:728126428/slip44:maximum-bandwidth", + "tron:3448148188/slip44:maximum-bandwidth", + "tron:2494104990/slip44:maximum-bandwidth", + "tron:728126428/slip44:energy", + "tron:3448148188/slip44:energy", + "tron:2494104990/slip44:energy", + "tron:728126428/slip44:maximum-energy", + "tron:3448148188/slip44:maximum-energy", + "tron:2494104990/slip44:maximum-energy", + "tron:728126428/slip44:195-ready-for-withdrawal", + "tron:728126428/slip44:195-in-lock-period", + "tron:728126428/slip44:195-staking-rewards" + ], + "1dd2b0a9-a1ea-4308-92e8-303665fd25c5": [ + "tron:728126428/slip44:195", + "tron:3448148188/slip44:195", + "tron:2494104990/slip44:195", + "tron:728126428/slip44:195-staked-for-bandwidth", + "tron:3448148188/slip44:195-staked-for-bandwidth", + "tron:2494104990/slip44:195-staked-for-bandwidth", + "tron:728126428/slip44:195-staked-for-energy", + "tron:3448148188/slip44:195-staked-for-energy", + "tron:2494104990/slip44:195-staked-for-energy", + "tron:728126428/slip44:bandwidth", + "tron:3448148188/slip44:bandwidth", + "tron:2494104990/slip44:bandwidth", + "tron:728126428/slip44:maximum-bandwidth", + "tron:3448148188/slip44:maximum-bandwidth", + "tron:2494104990/slip44:maximum-bandwidth", + "tron:728126428/slip44:energy", + "tron:3448148188/slip44:energy", + "tron:2494104990/slip44:energy", + "tron:728126428/slip44:maximum-energy", + "tron:3448148188/slip44:maximum-energy", + "tron:2494104990/slip44:maximum-energy" + ], + "23ce192d-62e7-4d4f-a168-93ae18dc915d": [ + "bip122:000000000019d6689c085ae165831e93/slip44:0" + ], + "2858af66-a9cd-456a-b29c-f2f5148a5ac8": [ + "solana:5eykt4UsFv8P8NJdTREpY1vzqKqZKvdp/slip44:501" + ], + "3d26ef67-6870-4750-af80-bce53fa4a0af": [ + "tron:728126428/slip44:195", + "tron:3448148188/slip44:195", + "tron:2494104990/slip44:195", + "tron:728126428/slip44:195-staked-for-bandwidth", + "tron:3448148188/slip44:195-staked-for-bandwidth", + "tron:2494104990/slip44:195-staked-for-bandwidth", + "tron:728126428/slip44:195-staked-for-energy", + "tron:3448148188/slip44:195-staked-for-energy", + "tron:2494104990/slip44:195-staked-for-energy", + "tron:728126428/slip44:bandwidth", + "tron:3448148188/slip44:bandwidth", + "tron:2494104990/slip44:bandwidth", + "tron:728126428/slip44:maximum-bandwidth", + "tron:3448148188/slip44:maximum-bandwidth", + "tron:2494104990/slip44:maximum-bandwidth", + "tron:728126428/slip44:energy", + "tron:3448148188/slip44:energy", + "tron:2494104990/slip44:energy", + "tron:728126428/slip44:maximum-energy", + "tron:3448148188/slip44:maximum-energy", + "tron:2494104990/slip44:maximum-energy", + "tron:728126428/trc20:TR7NHqjeKQxGTCi8q8ZY4pL8otSzgjLj6t", + "tron:728126428/slip44:195-ready-for-withdrawal", + "tron:728126428/slip44:195-in-lock-period", + "tron:728126428/slip44:195-staking-rewards" + ], + "3d379cac-eb60-4b45-8374-370aac2b76c5": [ + "bip122:000000000019d6689c085ae165831e93/slip44:0" + ], + "44ca98ce-b819-4e06-b651-ba146dbe22c1": [ + "solana:5eykt4UsFv8P8NJdTREpY1vzqKqZKvdp/slip44:501" + ], + "55fe5095-3194-42c2-81d3-5701dcad1924": [ + "solana:5eykt4UsFv8P8NJdTREpY1vzqKqZKvdp/slip44:501", + "solana:5eykt4UsFv8P8NJdTREpY1vzqKqZKvdp/token:CKfatsPMUf8SkiURsDXs7eK6GWb4Jsd6UDbs7twMCWxo" + ], + "574cb22f-c2d5-40d2-86a5-e3393d33050f": [ + "bip122:000000000019d6689c085ae165831e93/slip44:0" + ], + "575d130d-01da-44f0-a731-da9967adf412": [ + "solana:5eykt4UsFv8P8NJdTREpY1vzqKqZKvdp/slip44:501" + ], + "5a747531-d39f-49d5-afbd-59c018cc4757": [ + "solana:5eykt4UsFv8P8NJdTREpY1vzqKqZKvdp/slip44:501" + ], + "658962cf-0ecb-496e-beb8-91b663d244de": [ + "tron:728126428/slip44:195", + "tron:3448148188/slip44:195", + "tron:2494104990/slip44:195", + "tron:728126428/slip44:195-staked-for-bandwidth", + "tron:3448148188/slip44:195-staked-for-bandwidth", + "tron:2494104990/slip44:195-staked-for-bandwidth", + "tron:728126428/slip44:195-staked-for-energy", + "tron:3448148188/slip44:195-staked-for-energy", + "tron:2494104990/slip44:195-staked-for-energy", + "tron:728126428/slip44:bandwidth", + "tron:3448148188/slip44:bandwidth", + "tron:2494104990/slip44:bandwidth", + "tron:728126428/slip44:maximum-bandwidth", + "tron:3448148188/slip44:maximum-bandwidth", + "tron:2494104990/slip44:maximum-bandwidth", + "tron:728126428/slip44:energy", + "tron:3448148188/slip44:energy", + "tron:2494104990/slip44:energy", + "tron:728126428/slip44:maximum-energy", + "tron:3448148188/slip44:maximum-energy", + "tron:2494104990/slip44:maximum-energy" + ], + "73a28e8a-5ecb-4b36-b6f3-d2c12294eebf": [ + "tron:728126428/slip44:195", + "tron:3448148188/slip44:195", + "tron:2494104990/slip44:195", + "tron:728126428/slip44:195-staked-for-bandwidth", + "tron:3448148188/slip44:195-staked-for-bandwidth", + "tron:2494104990/slip44:195-staked-for-bandwidth", + "tron:728126428/slip44:195-staked-for-energy", + "tron:3448148188/slip44:195-staked-for-energy", + "tron:2494104990/slip44:195-staked-for-energy", + "tron:728126428/slip44:bandwidth", + "tron:3448148188/slip44:bandwidth", + "tron:2494104990/slip44:bandwidth", + "tron:728126428/slip44:maximum-bandwidth", + "tron:3448148188/slip44:maximum-bandwidth", + "tron:2494104990/slip44:maximum-bandwidth", + "tron:728126428/slip44:energy", + "tron:3448148188/slip44:energy", + "tron:2494104990/slip44:energy", + "tron:728126428/slip44:maximum-energy", + "tron:3448148188/slip44:maximum-energy", + "tron:2494104990/slip44:maximum-energy" + ], + "744910ce-8368-414f-8e7c-1c5dba71831e": [ + "bip122:000000000019d6689c085ae165831e93/slip44:0" + ], + "77a6514e-0024-4dc2-b08d-e78c664c37c5": [ + "tron:728126428/slip44:195", + "tron:3448148188/slip44:195", + "tron:2494104990/slip44:195", + "tron:728126428/slip44:195-staked-for-bandwidth", + "tron:3448148188/slip44:195-staked-for-bandwidth", + "tron:2494104990/slip44:195-staked-for-bandwidth", + "tron:728126428/slip44:195-staked-for-energy", + "tron:3448148188/slip44:195-staked-for-energy", + "tron:2494104990/slip44:195-staked-for-energy", + "tron:728126428/slip44:bandwidth", + "tron:3448148188/slip44:bandwidth", + "tron:2494104990/slip44:bandwidth", + "tron:728126428/slip44:maximum-bandwidth", + "tron:3448148188/slip44:maximum-bandwidth", + "tron:2494104990/slip44:maximum-bandwidth", + "tron:728126428/slip44:energy", + "tron:3448148188/slip44:energy", + "tron:2494104990/slip44:energy", + "tron:728126428/slip44:maximum-energy", + "tron:3448148188/slip44:maximum-energy", + "tron:2494104990/slip44:maximum-energy" + ], + "78ccb0a9-3647-4bb6-94b4-54d8b4e0b397": [ + "tron:728126428/slip44:195", + "tron:3448148188/slip44:195", + "tron:2494104990/slip44:195", + "tron:728126428/slip44:195-staked-for-bandwidth", + "tron:3448148188/slip44:195-staked-for-bandwidth", + "tron:2494104990/slip44:195-staked-for-bandwidth", + "tron:728126428/slip44:195-staked-for-energy", + "tron:3448148188/slip44:195-staked-for-energy", + "tron:2494104990/slip44:195-staked-for-energy", + "tron:728126428/slip44:bandwidth", + "tron:3448148188/slip44:bandwidth", + "tron:2494104990/slip44:bandwidth", + "tron:728126428/slip44:maximum-bandwidth", + "tron:3448148188/slip44:maximum-bandwidth", + "tron:2494104990/slip44:maximum-bandwidth", + "tron:728126428/slip44:energy", + "tron:3448148188/slip44:energy", + "tron:2494104990/slip44:energy", + "tron:728126428/slip44:maximum-energy", + "tron:3448148188/slip44:maximum-energy", + "tron:2494104990/slip44:maximum-energy" + ], + "7f6eee30-338e-4926-86fa-19436da91f35": [ + "solana:5eykt4UsFv8P8NJdTREpY1vzqKqZKvdp/slip44:501" + ], + "80340772-85d8-41a5-b316-1d8fc8c2cea4": [ + "bip122:000000000019d6689c085ae165831e93/slip44:0" + ], + "891b1840-b34b-4059-895b-5f163cff8ff1": [ + "solana:5eykt4UsFv8P8NJdTREpY1vzqKqZKvdp/slip44:501" + ], + "8b0e3ad2-d40d-47b1-a9c3-702eb67ab1ba": [ + "tron:728126428/slip44:195", + "tron:3448148188/slip44:195", + "tron:2494104990/slip44:195", + "tron:728126428/slip44:195-staked-for-bandwidth", + "tron:3448148188/slip44:195-staked-for-bandwidth", + "tron:2494104990/slip44:195-staked-for-bandwidth", + "tron:728126428/slip44:195-staked-for-energy", + "tron:3448148188/slip44:195-staked-for-energy", + "tron:2494104990/slip44:195-staked-for-energy", + "tron:728126428/slip44:bandwidth", + "tron:3448148188/slip44:bandwidth", + "tron:2494104990/slip44:bandwidth", + "tron:728126428/slip44:maximum-bandwidth", + "tron:3448148188/slip44:maximum-bandwidth", + "tron:2494104990/slip44:maximum-bandwidth", + "tron:728126428/slip44:energy", + "tron:3448148188/slip44:energy", + "tron:2494104990/slip44:energy", + "tron:728126428/slip44:maximum-energy", + "tron:3448148188/slip44:maximum-energy", + "tron:2494104990/slip44:maximum-energy", + "tron:728126428/slip44:195-ready-for-withdrawal", + "tron:728126428/slip44:195-in-lock-period", + "tron:728126428/slip44:195-staking-rewards" + ], + "8fd0b8c5-b42d-462d-965b-2979b4057c88": [ + "tron:728126428/slip44:195", + "tron:3448148188/slip44:195", + "tron:2494104990/slip44:195", + "tron:728126428/slip44:195-staked-for-bandwidth", + "tron:3448148188/slip44:195-staked-for-bandwidth", + "tron:2494104990/slip44:195-staked-for-bandwidth", + "tron:728126428/slip44:195-staked-for-energy", + "tron:3448148188/slip44:195-staked-for-energy", + "tron:2494104990/slip44:195-staked-for-energy", + "tron:728126428/slip44:bandwidth", + "tron:3448148188/slip44:bandwidth", + "tron:2494104990/slip44:bandwidth", + "tron:728126428/slip44:maximum-bandwidth", + "tron:3448148188/slip44:maximum-bandwidth", + "tron:2494104990/slip44:maximum-bandwidth", + "tron:728126428/slip44:energy", + "tron:3448148188/slip44:energy", + "tron:2494104990/slip44:energy", + "tron:728126428/slip44:maximum-energy", + "tron:3448148188/slip44:maximum-energy", + "tron:2494104990/slip44:maximum-energy" + ], + "9e12503a-12d8-4bb4-835f-a0c203ccd67a": [ + "tron:728126428/slip44:195", + "tron:3448148188/slip44:195", + "tron:2494104990/slip44:195", + "tron:728126428/slip44:195-staked-for-bandwidth", + "tron:3448148188/slip44:195-staked-for-bandwidth", + "tron:2494104990/slip44:195-staked-for-bandwidth", + "tron:728126428/slip44:195-staked-for-energy", + "tron:3448148188/slip44:195-staked-for-energy", + "tron:2494104990/slip44:195-staked-for-energy", + "tron:728126428/slip44:bandwidth", + "tron:3448148188/slip44:bandwidth", + "tron:2494104990/slip44:bandwidth", + "tron:728126428/slip44:maximum-bandwidth", + "tron:3448148188/slip44:maximum-bandwidth", + "tron:2494104990/slip44:maximum-bandwidth", + "tron:728126428/slip44:energy", + "tron:3448148188/slip44:energy", + "tron:2494104990/slip44:energy", + "tron:728126428/slip44:maximum-energy", + "tron:3448148188/slip44:maximum-energy", + "tron:2494104990/slip44:maximum-energy" + ], + "a4c40c7c-01c0-4335-b574-72195898b31c": [ + "bip122:000000000019d6689c085ae165831e93/slip44:0" + ], + "c2c05428-c846-4992-a5a3-5d151b97fcdb": [ + "bip122:000000000019d6689c085ae165831e93/slip44:0" + ], + "c3fc6bba-683b-44c8-b637-89b55416a8dd": [ + "solana:5eykt4UsFv8P8NJdTREpY1vzqKqZKvdp/slip44:501" + ], + "c5bf70b0-2c4b-4016-9107-cab94be5fbb0": [ + "tron:728126428/slip44:195", + "tron:3448148188/slip44:195", + "tron:2494104990/slip44:195", + "tron:728126428/slip44:195-staked-for-bandwidth", + "tron:3448148188/slip44:195-staked-for-bandwidth", + "tron:2494104990/slip44:195-staked-for-bandwidth", + "tron:728126428/slip44:195-staked-for-energy", + "tron:3448148188/slip44:195-staked-for-energy", + "tron:2494104990/slip44:195-staked-for-energy", + "tron:728126428/slip44:bandwidth", + "tron:3448148188/slip44:bandwidth", + "tron:2494104990/slip44:bandwidth", + "tron:728126428/slip44:maximum-bandwidth", + "tron:3448148188/slip44:maximum-bandwidth", + "tron:2494104990/slip44:maximum-bandwidth", + "tron:728126428/slip44:energy", + "tron:3448148188/slip44:energy", + "tron:2494104990/slip44:energy", + "tron:728126428/slip44:maximum-energy", + "tron:3448148188/slip44:maximum-energy", + "tron:2494104990/slip44:maximum-energy", + "tron:728126428/slip44:195-ready-for-withdrawal", + "tron:728126428/slip44:195-in-lock-period", + "tron:728126428/slip44:195-staking-rewards" + ], + "c6d62ae8-d02c-4a7a-8222-17ed6cdf0e52": [ + "bip122:000000000019d6689c085ae165831e93/slip44:0" + ], + "c7cf5799-e458-4bb5-b60b-7e74cf2e7c0a": [ + "tron:728126428/slip44:195", + "tron:3448148188/slip44:195", + "tron:2494104990/slip44:195", + "tron:728126428/slip44:195-staked-for-bandwidth", + "tron:3448148188/slip44:195-staked-for-bandwidth", + "tron:2494104990/slip44:195-staked-for-bandwidth", + "tron:728126428/slip44:195-staked-for-energy", + "tron:3448148188/slip44:195-staked-for-energy", + "tron:2494104990/slip44:195-staked-for-energy", + "tron:728126428/slip44:bandwidth", + "tron:3448148188/slip44:bandwidth", + "tron:2494104990/slip44:bandwidth", + "tron:728126428/slip44:maximum-bandwidth", + "tron:3448148188/slip44:maximum-bandwidth", + "tron:2494104990/slip44:maximum-bandwidth", + "tron:728126428/slip44:energy", + "tron:3448148188/slip44:energy", + "tron:2494104990/slip44:energy", + "tron:728126428/slip44:maximum-energy", + "tron:3448148188/slip44:maximum-energy", + "tron:2494104990/slip44:maximum-energy" + ], + "c86652a6-e1f3-4e4c-b411-c58efe220dcf": [ + "solana:5eykt4UsFv8P8NJdTREpY1vzqKqZKvdp/slip44:501" + ], + "d05ca007-7a11-470f-8433-a89767f95995": [ + "bip122:000000000019d6689c085ae165831e93/slip44:0" + ], + "d8086b4c-4361-49ab-8955-efaa5240f561": [ + "tron:728126428/slip44:195", + "tron:3448148188/slip44:195", + "tron:2494104990/slip44:195", + "tron:728126428/slip44:195-staked-for-bandwidth", + "tron:3448148188/slip44:195-staked-for-bandwidth", + "tron:2494104990/slip44:195-staked-for-bandwidth", + "tron:728126428/slip44:195-staked-for-energy", + "tron:3448148188/slip44:195-staked-for-energy", + "tron:2494104990/slip44:195-staked-for-energy", + "tron:728126428/slip44:bandwidth", + "tron:3448148188/slip44:bandwidth", + "tron:2494104990/slip44:bandwidth", + "tron:728126428/slip44:maximum-bandwidth", + "tron:3448148188/slip44:maximum-bandwidth", + "tron:2494104990/slip44:maximum-bandwidth", + "tron:728126428/slip44:energy", + "tron:3448148188/slip44:energy", + "tron:2494104990/slip44:energy", + "tron:728126428/slip44:maximum-energy", + "tron:3448148188/slip44:maximum-energy", + "tron:2494104990/slip44:maximum-energy" + ], + "d834c0ad-655b-4707-997d-7048c1896f89": [ + "bip122:000000000019d6689c085ae165831e93/slip44:0" + ], + "db7205b1-e72f-4082-92c4-5490fdba12c5": [ + "solana:5eykt4UsFv8P8NJdTREpY1vzqKqZKvdp/slip44:501" + ], + "df59431e-d587-40a5-9c2b-3bdc6584b0e4": [ + "bip122:000000000019d6689c085ae165831e93/slip44:0" + ], + "e421a858-a232-40dc-8bbb-d3745bee215b": [ + "solana:5eykt4UsFv8P8NJdTREpY1vzqKqZKvdp/slip44:501" + ], + "e4cb2ec8-15e3-494a-bde2-6ea14e6d0d6c": [ + "solana:5eykt4UsFv8P8NJdTREpY1vzqKqZKvdp/slip44:501" + ], + "e6f7d2e7-8c4c-48f7-9d04-958add8113b7": [ + "tron:728126428/slip44:195", + "tron:3448148188/slip44:195", + "tron:2494104990/slip44:195", + "tron:728126428/slip44:195-staked-for-bandwidth", + "tron:3448148188/slip44:195-staked-for-bandwidth", + "tron:2494104990/slip44:195-staked-for-bandwidth", + "tron:728126428/slip44:195-staked-for-energy", + "tron:3448148188/slip44:195-staked-for-energy", + "tron:2494104990/slip44:195-staked-for-energy", + "tron:728126428/slip44:bandwidth", + "tron:3448148188/slip44:bandwidth", + "tron:2494104990/slip44:bandwidth", + "tron:728126428/slip44:maximum-bandwidth", + "tron:3448148188/slip44:maximum-bandwidth", + "tron:2494104990/slip44:maximum-bandwidth", + "tron:728126428/slip44:energy", + "tron:3448148188/slip44:energy", + "tron:2494104990/slip44:energy", + "tron:728126428/slip44:maximum-energy", + "tron:3448148188/slip44:maximum-energy", + "tron:2494104990/slip44:maximum-energy" + ], + "e78a4c3d-7649-4797-90ad-9d6ddbe9e6dd": [ + "bip122:000000000019d6689c085ae165831e93/slip44:0" + ], + "e86326ea-c687-45bf-84b9-ad4d8618d084": [ + "solana:5eykt4UsFv8P8NJdTREpY1vzqKqZKvdp/slip44:501" + ], + "f5481e08-42e2-4504-9a1f-44c0bbe6e0bb": [ + "bip122:000000000019d6689c085ae165831e93/slip44:0" + ], + "f7f2ce83-85bc-49f9-8551-c36c5432a0c1": [ + "tron:728126428/slip44:195", + "tron:3448148188/slip44:195", + "tron:2494104990/slip44:195", + "tron:728126428/slip44:195-staked-for-bandwidth", + "tron:3448148188/slip44:195-staked-for-bandwidth", + "tron:2494104990/slip44:195-staked-for-bandwidth", + "tron:728126428/slip44:195-staked-for-energy", + "tron:3448148188/slip44:195-staked-for-energy", + "tron:2494104990/slip44:195-staked-for-energy", + "tron:728126428/slip44:bandwidth", + "tron:3448148188/slip44:bandwidth", + "tron:2494104990/slip44:bandwidth", + "tron:728126428/slip44:maximum-bandwidth", + "tron:3448148188/slip44:maximum-bandwidth", + "tron:2494104990/slip44:maximum-bandwidth", + "tron:728126428/slip44:energy", + "tron:3448148188/slip44:energy", + "tron:2494104990/slip44:energy", + "tron:728126428/slip44:maximum-energy", + "tron:3448148188/slip44:maximum-energy", + "tron:2494104990/slip44:maximum-energy" + ], + "fedf900d-3caf-4540-9e24-c63400ef2b18": [ + "tron:728126428/slip44:195", + "tron:3448148188/slip44:195", + "tron:2494104990/slip44:195", + "tron:728126428/slip44:195-staked-for-bandwidth", + "tron:3448148188/slip44:195-staked-for-bandwidth", + "tron:2494104990/slip44:195-staked-for-bandwidth", + "tron:728126428/slip44:195-staked-for-energy", + "tron:3448148188/slip44:195-staked-for-energy", + "tron:2494104990/slip44:195-staked-for-energy", + "tron:728126428/slip44:bandwidth", + "tron:3448148188/slip44:bandwidth", + "tron:2494104990/slip44:bandwidth", + "tron:728126428/slip44:maximum-bandwidth", + "tron:3448148188/slip44:maximum-bandwidth", + "tron:2494104990/slip44:maximum-bandwidth", + "tron:728126428/slip44:energy", + "tron:3448148188/slip44:energy", + "tron:2494104990/slip44:energy", + "tron:728126428/slip44:maximum-energy", + "tron:3448148188/slip44:maximum-energy", + "tron:2494104990/slip44:maximum-energy", + "tron:728126428/slip44:195-ready-for-withdrawal", + "tron:728126428/slip44:195-in-lock-period", + "tron:728126428/slip44:195-staking-rewards" + ], + "ffb79cf7-3a88-4cfe-864c-a9f656ce1840": [ + "bip122:000000000019d6689c085ae165831e93/slip44:0" + ] + }, + "assetsMetadata": { + "bip122:000000000019d6689c085ae165831e93/slip44:0": { + "fungible": true, + "iconUrl": "data:image/svg+xml;base64,PHN2ZyB4bWxuczpyZGY9Imh0dHA6Ly93d3cudzMub3JnLzE5OTkvMDIvMjItcmRmLXN5bnRheC1ucyMiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgdmVyc2lvbj0iMS4xIiB4bWxuczpjYz0iaHR0cDovL2NyZWF0aXZlY29tbW9ucy5vcmcvbnMjIiB4bWxuczpkYz0iaHR0cDovL3B1cmwub3JnL2RjL2VsZW1lbnRzLzEuMS8iIHZpZXdCb3g9IjAgMCA2NSA2NSIgd2lkdGg9IjIwIiBoZWlnaHQ9IjIwIiBjbGFzcz0ibmctc3Rhci1pbnNlcnRlZCI+PGcgdHJhbnNmb3JtPSJ0cmFuc2xhdGUoMC4wMDYzMDg3NiwtMC4wMDMwMTk4NCkiPjxwYXRoIGQ9Im02My4wMzMsMzkuNzQ0Yy00LjI3NCwxNy4xNDMtMjEuNjM3LDI3LjU3Ni0zOC43ODIsMjMuMzAxLTE3LjEzOC00LjI3NC0yNy41NzEtMjEuNjM4LTIzLjI5NS0zOC43OCw0LjI3Mi0xNy4xNDUsMjEuNjM1LTI3LjU3OSwzOC43NzUtMjMuMzA1LDE3LjE0NCw0LjI3NCwyNy41NzYsMjEuNjQsMjMuMzAyLDM4Ljc4NHoiIGZpbGw9IiNmNzkzMWEiPjwvcGF0aD48cGF0aCBmaWxsPSIjRkZGIiBkPSJtNDYuMTAzLDI3LjQ0NGMwLjYzNy00LjI1OC0yLjYwNS02LjU0Ny03LjAzOC04LjA3NGwxLjQzOC01Ljc2OC0zLjUxMS0wLjg3NS0xLjQsNS42MTZjLTAuOTIzLTAuMjMtMS44NzEtMC40NDctMi44MTMtMC42NjJsMS40MS01LjY1My0zLjUwOS0wLjg3NS0xLjQzOSw1Ljc2NmMtMC43NjQtMC4xNzQtMS41MTQtMC4zNDYtMi4yNDItMC41MjdsMC4wMDQtMC4wMTgtNC44NDItMS4yMDktMC45MzQsMy43NXMyLjYwNSwwLjU5NywyLjU1LDAuNjM0YzEuNDIyLDAuMzU1LDEuNjc5LDEuMjk2LDEuNjM2LDIuMDQybC0xLjYzOCw2LjU3MWMwLjA5OCwwLjAyNSwwLjIyNSwwLjA2MSwwLjM2NSwwLjExNy0wLjExNy0wLjAyOS0wLjI0Mi0wLjA2MS0wLjM3MS0wLjA5MmwtMi4yOTYsOS4yMDVjLTAuMTc0LDAuNDMyLTAuNjE1LDEuMDgtMS42MDksMC44MzQsMC4wMzUsMC4wNTEtMi41NTItMC42MzctMi41NTItMC42MzdsLTEuNzQzLDQuMDE5LDQuNTY5LDEuMTM5YzAuODUsMC4yMTMsMS42ODMsMC40MzYsMi41MDMsMC42NDZsLTEuNDUzLDUuODM0LDMuNTA3LDAuODc1LDEuNDM5LTUuNzcyYzAuOTU4LDAuMjYsMS44ODgsMC41LDIuNzk4LDAuNzI2bC0xLjQzNCw1Ljc0NSwzLjUxMSwwLjg3NSwxLjQ1My01LjgyM2M1Ljk4NywxLjEzMywxMC40ODksMC42NzYsMTIuMzg0LTQuNzM5LDEuNTI3LTQuMzYtMC4wNzYtNi44NzUtMy4yMjYtOC41MTUsMi4yOTQtMC41MjksNC4wMjItMi4wMzgsNC40ODMtNS4xNTV6bS04LjAyMiwxMS4yNDljLTEuMDg1LDQuMzYtOC40MjYsMi4wMDMtMTAuODA2LDEuNDEybDEuOTI4LTcuNzI5YzIuMzgsMC41OTQsMTAuMDEyLDEuNzcsOC44NzgsNi4zMTd6bTEuMDg2LTExLjMxMmMtMC45OSwzLjk2Ni03LjEsMS45NTEtOS4wODIsMS40NTdsMS43NDgtNy4wMWMxLjk4MiwwLjQ5NCw4LjM2NSwxLjQxNiw3LjMzNCw1LjU1M3oiPjwvcGF0aD48L2c+PC9zdmc+", + "name": "Bitcoin", + "symbol": "BTC", + "units": [ + { + "decimals": 8, + "name": "Bitcoin", + "symbol": "BTC" + }, + { + "decimals": 6, + "name": "CentiBitcoin", + "symbol": "cBTC" + }, + { + "decimals": 5, + "name": "MilliBitcoin", + "symbol": "mBTC" + }, + { + "decimals": 2, + "name": "Bit", + "symbol": "bits" + }, + { + "decimals": 0, + "name": "Satoshi", + "symbol": "satoshi" + } + ] + }, + "solana:5eykt4UsFv8P8NJdTREpY1vzqKqZKvdp/slip44:501": { + "fungible": true, + "iconUrl": "https://static.cx.metamask.io/api/v2/tokenIcons/assets/solana/5eykt4UsFv8P8NJdTREpY1vzqKqZKvdp/slip44/501.png", + "name": "Solana", + "symbol": "SOL", + "units": [ + { + "decimals": 9, + "name": "Solana", + "symbol": "SOL" + } + ] + }, + "solana:5eykt4UsFv8P8NJdTREpY1vzqKqZKvdp/token:CKfatsPMUf8SkiURsDXs7eK6GWb4Jsd6UDbs7twMCWxo": { + "fungible": true, + "iconUrl": "https://static.cx.metamask.io/api/v2/tokenIcons/assets/solana/5eykt4UsFv8P8NJdTREpY1vzqKqZKvdp/token/CKfatsPMUf8SkiURsDXs7eK6GWb4Jsd6UDbs7twMCWxo.png", + "name": "BonkEarn", + "symbol": "BERN", + "units": [ + { + "decimals": 5, + "name": "BonkEarn", + "symbol": "BERN" + } + ] + }, + "solana:5eykt4UsFv8P8NJdTREpY1vzqKqZKvdp/token:EPjFWdd5AufqSSqeM2qN1xzybapC8G4wEGGkZwyTDt1v": { + "fungible": true, + "iconUrl": "https://static.cx.metamask.io/api/v2/tokenIcons/assets/solana/5eykt4UsFv8P8NJdTREpY1vzqKqZKvdp/token/EPjFWdd5AufqSSqeM2qN1xzybapC8G4wEGGkZwyTDt1v.png", + "name": "USDC", + "symbol": "USDC", + "units": [ + { + "decimals": 6, + "name": "USDC", + "symbol": "USDC" + } + ] + }, + "solana:5eykt4UsFv8P8NJdTREpY1vzqKqZKvdp/token:HeLp6NuQkmYB4pYWo2zYs22mESHXPQYzXbB8n4V98jwC": { + "fungible": true, + "iconUrl": "https://static.cx.metamask.io/api/v2/tokenIcons/assets/solana/5eykt4UsFv8P8NJdTREpY1vzqKqZKvdp/token/HeLp6NuQkmYB4pYWo2zYs22mESHXPQYzXbB8n4V98jwC.png", + "name": "ai16z", + "symbol": "AI16Z", + "units": [ + { + "decimals": 9, + "name": "ai16z", + "symbol": "AI16Z" + } + ] + }, + "tron:728126428/slip44:195": { + "fungible": true, + "iconUrl": "https://raw.githubusercontent.com/trustwallet/assets/master/blockchains/tron/info/logo.png", + "name": "Tron", + "symbol": "TRX", + "units": [ + { + "decimals": 6, + "name": "Tron", + "symbol": "TRX" + } + ] + }, + "tron:728126428/slip44:195-in-lock-period": { + "fungible": true, + "iconUrl": "https://raw.githubusercontent.com/trustwallet/assets/master/blockchains/tron/info/logo.png", + "name": "In Lock Period", + "symbol": "trx-in-lock-period", + "units": [ + { + "decimals": 6, + "name": "In Lock Period", + "symbol": "trx-in-lock-period" + } + ] + }, + "tron:728126428/slip44:195-ready-for-withdrawal": { + "fungible": true, + "iconUrl": "https://raw.githubusercontent.com/trustwallet/assets/master/blockchains/tron/info/logo.png", + "name": "Ready for Withdrawal", + "symbol": "trx-ready-for-withdrawal", + "units": [ + { + "decimals": 6, + "name": "Ready for Withdrawal", + "symbol": "trx-ready-for-withdrawal" + } + ] + }, + "tron:728126428/slip44:195-staked-for-bandwidth": { + "fungible": true, + "iconUrl": "https://raw.githubusercontent.com/trustwallet/assets/master/blockchains/tron/info/logo.png", + "name": "Staked for Bandwidth", + "symbol": "sTRX-BANDWIDTH", + "units": [ + { + "decimals": 6, + "name": "Staked for Bandwidth", + "symbol": "sTRX-BANDWIDTH" + } + ] + }, + "tron:728126428/slip44:195-staked-for-energy": { + "fungible": true, + "iconUrl": "https://raw.githubusercontent.com/trustwallet/assets/master/blockchains/tron/info/logo.png", + "name": "Staked for Energy", + "symbol": "sTRX-ENERGY", + "units": [ + { + "decimals": 6, + "name": "Staked for Energy", + "symbol": "sTRX-ENERGY" + } + ] + }, + "tron:728126428/slip44:195-staking-rewards": { + "fungible": true, + "iconUrl": "https://raw.githubusercontent.com/trustwallet/assets/master/blockchains/tron/info/logo.png", + "name": "Staking Rewards", + "symbol": "trx-staking-rewards", + "units": [ + { + "decimals": 6, + "name": "Staking Rewards", + "symbol": "trx-staking-rewards" + } + ] + }, + "tron:728126428/slip44:bandwidth": { + "fungible": true, + "iconUrl": "https://raw.githubusercontent.com/trustwallet/assets/master/blockchains/tron/info/logo.png", + "name": "Bandwidth", + "symbol": "BANDWIDTH", + "units": [ + { + "decimals": 0, + "name": "Bandwidth", + "symbol": "BANDWIDTH" + } + ] + }, + "tron:728126428/slip44:energy": { + "fungible": true, + "iconUrl": "https://raw.githubusercontent.com/trustwallet/assets/master/blockchains/tron/info/logo.png", + "name": "Energy", + "symbol": "ENERGY", + "units": [ + { + "decimals": 0, + "name": "Energy", + "symbol": "ENERGY" + } + ] + }, + "tron:728126428/slip44:maximum-bandwidth": { + "fungible": true, + "iconUrl": "https://raw.githubusercontent.com/trustwallet/assets/master/blockchains/tron/info/logo.png", + "name": "Max Bandwidth", + "symbol": "MAX-BANDWIDTH", + "units": [ + { + "decimals": 0, + "name": "Max Bandwidth", + "symbol": "MAX-BANDWIDTH" + } + ] + }, + "tron:728126428/slip44:maximum-energy": { + "fungible": true, + "iconUrl": "https://raw.githubusercontent.com/trustwallet/assets/master/blockchains/tron/info/logo.png", + "name": "Max Energy", + "symbol": "MAX-ENERGY", + "units": [ + { + "decimals": 0, + "name": "Max Energy", + "symbol": "MAX-ENERGY" + } + ] + }, + "tron:728126428/trc20:TR7NHqjeKQxGTCi8q8ZY4pL8otSzgjLj6t": { + "fungible": true, + "iconUrl": "https://static.cx.metamask.io/api/v2/tokenIcons/assets/tron/728126428/trc20/TR7NHqjeKQxGTCi8q8ZY4pL8otSzgjLj6t.png", + "name": "Tether", + "symbol": "USDT", + "units": [ + { + "decimals": 6, + "name": "Tether", + "symbol": "USDT" + } + ] + } + }, + "allIgnoredAssets": {}, + "balances": { + "0089fc3c-35be-4ecf-ba88-22461a3d9503": { + "solana:5eykt4UsFv8P8NJdTREpY1vzqKqZKvdp/slip44:501": { + "amount": "0", + "unit": "SOL" + } + }, + "03d7de03-c856-4239-93fc-b3cc5352883a": { + "bip122:000000000019d6689c085ae165831e93/slip44:0": { + "amount": "0", + "unit": "BTC" + } + }, + "040b84bc-2341-4988-b8db-8063bbc6c708": { + "solana:5eykt4UsFv8P8NJdTREpY1vzqKqZKvdp/slip44:501": { + "amount": "0", + "unit": "SOL" + } + }, + "076cbb47-1752-40b0-9314-1f07e7b88ffa": { + "solana:5eykt4UsFv8P8NJdTREpY1vzqKqZKvdp/slip44:501": { + "unit": "SOL", + "amount": "0.015372701" + }, + "solana:5eykt4UsFv8P8NJdTREpY1vzqKqZKvdp/token:7vfCXTUXx5WJV5JADk17DUJ4ksgau7utNKj4b963voxs": { + "unit": "ETH", + "amount": "0" + }, + "solana:5eykt4UsFv8P8NJdTREpY1vzqKqZKvdp/token:CKfatsPMUf8SkiURsDXs7eK6GWb4Jsd6UDbs7twMCWxo": { + "unit": "BERN", + "amount": "0.00005" + }, + "solana:5eykt4UsFv8P8NJdTREpY1vzqKqZKvdp/token:EPjFWdd5AufqSSqeM2qN1xzybapC8G4wEGGkZwyTDt1v": { + "unit": "USDC", + "amount": "0" + }, + "solana:5eykt4UsFv8P8NJdTREpY1vzqKqZKvdp/token:HeLp6NuQkmYB4pYWo2zYs22mESHXPQYzXbB8n4V98jwC": { + "unit": "AI16Z", + "amount": "16.403260987" + }, + "solana:5eykt4UsFv8P8NJdTREpY1vzqKqZKvdp/token:JUPyiwrYJFskUPiHa7hkeR8VUtAeFoSYbKedZNsDvCN": { + "unit": "JUP", + "amount": "0" + } + }, + "1a14e831-0c2c-46ce-8e2b-d7d53cbefb63": { + "bip122:000000000019d6689c085ae165831e93/slip44:0": { + "amount": "0", + "unit": "BTC" + } + }, + "1c2440b0-d05e-4b07-881c-ebb9bce2bbb7": { + "tron:2494104990/slip44:195": { + "amount": "0", + "unit": "TRX" + }, + "tron:2494104990/slip44:195-staked-for-bandwidth": { + "amount": "0", + "unit": "sTRX-BANDWIDTH" + }, + "tron:2494104990/slip44:195-staked-for-energy": { + "amount": "0", + "unit": "sTRX-ENERGY" + }, + "tron:2494104990/slip44:bandwidth": { + "amount": "0", + "unit": "BANDWIDTH" + }, + "tron:2494104990/slip44:energy": { + "amount": "0", + "unit": "ENERGY" + }, + "tron:2494104990/slip44:maximum-bandwidth": { + "amount": "0", + "unit": "MAX-BANDWIDTH" + }, + "tron:2494104990/slip44:maximum-energy": { + "amount": "0", + "unit": "MAX-ENERGY" + }, + "tron:3448148188/slip44:195": { + "amount": "0", + "unit": "TRX" + }, + "tron:3448148188/slip44:195-staked-for-bandwidth": { + "amount": "0", + "unit": "sTRX-BANDWIDTH" + }, + "tron:3448148188/slip44:195-staked-for-energy": { + "amount": "0", + "unit": "sTRX-ENERGY" + }, + "tron:3448148188/slip44:bandwidth": { + "amount": "0", + "unit": "BANDWIDTH" + }, + "tron:3448148188/slip44:energy": { + "amount": "0", + "unit": "ENERGY" + }, + "tron:3448148188/slip44:maximum-bandwidth": { + "amount": "0", + "unit": "MAX-BANDWIDTH" + }, + "tron:3448148188/slip44:maximum-energy": { + "amount": "0", + "unit": "MAX-ENERGY" + }, + "tron:728126428/slip44:195": { + "amount": "0", + "unit": "TRX" + }, + "tron:728126428/slip44:195-in-lock-period": { + "amount": "0", + "unit": "trx-in-lock-period" + }, + "tron:728126428/slip44:195-ready-for-withdrawal": { + "amount": "0", + "unit": "trx-ready-for-withdrawal" + }, + "tron:728126428/slip44:195-staked-for-bandwidth": { + "amount": "0", + "unit": "sTRX-BANDWIDTH" + }, + "tron:728126428/slip44:195-staked-for-energy": { + "amount": "0", + "unit": "sTRX-ENERGY" + }, + "tron:728126428/slip44:195-staking-rewards": { + "amount": "0", + "unit": "trx-staking-rewards" + }, + "tron:728126428/slip44:bandwidth": { + "amount": "0", + "unit": "BANDWIDTH" + }, + "tron:728126428/slip44:energy": { + "amount": "0", + "unit": "ENERGY" + }, + "tron:728126428/slip44:maximum-bandwidth": { + "amount": "0", + "unit": "MAX-BANDWIDTH" + }, + "tron:728126428/slip44:maximum-energy": { + "amount": "0", + "unit": "MAX-ENERGY" + } + }, + "1dd2b0a9-a1ea-4308-92e8-303665fd25c5": { + "tron:2494104990/slip44:195": { + "amount": "0", + "unit": "TRX" + }, + "tron:2494104990/slip44:195-staked-for-bandwidth": { + "amount": "0", + "unit": "sTRX-BANDWIDTH" + }, + "tron:2494104990/slip44:195-staked-for-energy": { + "amount": "0", + "unit": "sTRX-ENERGY" + }, + "tron:2494104990/slip44:bandwidth": { + "amount": "0", + "unit": "BANDWIDTH" + }, + "tron:2494104990/slip44:energy": { + "amount": "0", + "unit": "ENERGY" + }, + "tron:2494104990/slip44:maximum-bandwidth": { + "amount": "0", + "unit": "MAX-BANDWIDTH" + }, + "tron:2494104990/slip44:maximum-energy": { + "amount": "0", + "unit": "MAX-ENERGY" + }, + "tron:3448148188/slip44:195": { + "amount": "0", + "unit": "TRX" + }, + "tron:3448148188/slip44:195-staked-for-bandwidth": { + "amount": "0", + "unit": "sTRX-BANDWIDTH" + }, + "tron:3448148188/slip44:195-staked-for-energy": { + "amount": "0", + "unit": "sTRX-ENERGY" + }, + "tron:3448148188/slip44:bandwidth": { + "amount": "0", + "unit": "BANDWIDTH" + }, + "tron:3448148188/slip44:energy": { + "amount": "0", + "unit": "ENERGY" + }, + "tron:3448148188/slip44:maximum-bandwidth": { + "amount": "0", + "unit": "MAX-BANDWIDTH" + }, + "tron:3448148188/slip44:maximum-energy": { + "amount": "0", + "unit": "MAX-ENERGY" + }, + "tron:728126428/slip44:195": { + "amount": "0", + "unit": "TRX" + }, + "tron:728126428/slip44:195-staked-for-bandwidth": { + "amount": "0", + "unit": "sTRX-BANDWIDTH" + }, + "tron:728126428/slip44:195-staked-for-energy": { + "amount": "0", + "unit": "sTRX-ENERGY" + }, + "tron:728126428/slip44:bandwidth": { + "amount": "0", + "unit": "BANDWIDTH" + }, + "tron:728126428/slip44:energy": { + "amount": "0", + "unit": "ENERGY" + }, + "tron:728126428/slip44:maximum-bandwidth": { + "amount": "0", + "unit": "MAX-BANDWIDTH" + }, + "tron:728126428/slip44:maximum-energy": { + "amount": "0", + "unit": "MAX-ENERGY" + } + }, + "23ce192d-62e7-4d4f-a168-93ae18dc915d": { + "bip122:000000000019d6689c085ae165831e93/slip44:0": { + "amount": "0", + "unit": "BTC" + } + }, + "2858af66-a9cd-456a-b29c-f2f5148a5ac8": { + "solana:5eykt4UsFv8P8NJdTREpY1vzqKqZKvdp/slip44:501": { + "amount": "0", + "unit": "SOL" + } + }, + "3d26ef67-6870-4750-af80-bce53fa4a0af": { + "tron:2494104990/slip44:195": { + "amount": "0", + "unit": "TRX" + }, + "tron:2494104990/slip44:195-staked-for-bandwidth": { + "amount": "0", + "unit": "sTRX-BANDWIDTH" + }, + "tron:2494104990/slip44:195-staked-for-energy": { + "amount": "0", + "unit": "sTRX-ENERGY" + }, + "tron:2494104990/slip44:bandwidth": { + "amount": "0", + "unit": "BANDWIDTH" + }, + "tron:2494104990/slip44:energy": { + "amount": "0", + "unit": "ENERGY" + }, + "tron:2494104990/slip44:maximum-bandwidth": { + "amount": "0", + "unit": "MAX-BANDWIDTH" + }, + "tron:2494104990/slip44:maximum-energy": { + "amount": "0", + "unit": "MAX-ENERGY" + }, + "tron:3448148188/slip44:195": { + "amount": "0", + "unit": "TRX" + }, + "tron:3448148188/slip44:195-staked-for-bandwidth": { + "amount": "0", + "unit": "sTRX-BANDWIDTH" + }, + "tron:3448148188/slip44:195-staked-for-energy": { + "amount": "0", + "unit": "sTRX-ENERGY" + }, + "tron:3448148188/slip44:bandwidth": { + "amount": "0", + "unit": "BANDWIDTH" + }, + "tron:3448148188/slip44:energy": { + "amount": "0", + "unit": "ENERGY" + }, + "tron:3448148188/slip44:maximum-bandwidth": { + "amount": "0", + "unit": "MAX-BANDWIDTH" + }, + "tron:3448148188/slip44:maximum-energy": { + "amount": "0", + "unit": "MAX-ENERGY" + }, + "tron:728126428/slip44:195": { + "amount": "53.676935", + "unit": "TRX" + }, + "tron:728126428/slip44:195-in-lock-period": { + "amount": "0", + "unit": "trx-in-lock-period" + }, + "tron:728126428/slip44:195-ready-for-withdrawal": { + "amount": "0", + "unit": "trx-ready-for-withdrawal" + }, + "tron:728126428/slip44:195-staked-for-bandwidth": { + "amount": "0", + "unit": "sTRX-BANDWIDTH" + }, + "tron:728126428/slip44:195-staked-for-energy": { + "amount": "0", + "unit": "sTRX-ENERGY" + }, + "tron:728126428/slip44:195-staking-rewards": { + "amount": "0", + "unit": "trx-staking-rewards" + }, + "tron:728126428/slip44:bandwidth": { + "amount": "600", + "unit": "BANDWIDTH" + }, + "tron:728126428/slip44:energy": { + "amount": "0", + "unit": "ENERGY" + }, + "tron:728126428/slip44:maximum-bandwidth": { + "amount": "600", + "unit": "MAX-BANDWIDTH" + }, + "tron:728126428/slip44:maximum-energy": { + "amount": "0", + "unit": "MAX-ENERGY" + }, + "tron:728126428/trc20:TR7NHqjeKQxGTCi8q8ZY4pL8otSzgjLj6t": { + "amount": "10.349701", + "unit": "USDT" + } + }, + "3d379cac-eb60-4b45-8374-370aac2b76c5": { + "bip122:000000000019d6689c085ae165831e93/slip44:0": { + "amount": "0", + "unit": "BTC" + } + }, + "44ca98ce-b819-4e06-b651-ba146dbe22c1": { + "solana:5eykt4UsFv8P8NJdTREpY1vzqKqZKvdp/slip44:501": { + "amount": "0", + "unit": "SOL" + } + }, + "55fe5095-3194-42c2-81d3-5701dcad1924": { + "solana:5eykt4UsFv8P8NJdTREpY1vzqKqZKvdp/slip44:501": { + "amount": "0.002413557", + "unit": "SOL" + }, + "solana:5eykt4UsFv8P8NJdTREpY1vzqKqZKvdp/token:27G8MtK7VtTcCHkpASjSDdkWWYfoqT6ggEuKidVJidD4": { + "amount": "0", + "unit": "JLP" + }, + "solana:5eykt4UsFv8P8NJdTREpY1vzqKqZKvdp/token:7atgF8KQo4wJrD5ATGX7t1V2zVvykPJbFfNeVf1icFv1": { + "amount": "0", + "unit": "$CWIF" + }, + "solana:5eykt4UsFv8P8NJdTREpY1vzqKqZKvdp/token:8crhketCxuYMFfkvGfikwp6LGuN9sXx5i3oTC4PXpump": { + "amount": "0", + "unit": "SLMN" + }, + "solana:5eykt4UsFv8P8NJdTREpY1vzqKqZKvdp/token:9zNQRsGLjNKwCUU5Gq5LR8beUCPzQMVMqKAi3SSZh54u": { + "amount": "0", + "unit": "FDUSD" + }, + "solana:5eykt4UsFv8P8NJdTREpY1vzqKqZKvdp/token:CKfatsPMUf8SkiURsDXs7eK6GWb4Jsd6UDbs7twMCWxo": { + "amount": "13.43184", + "unit": "BERN" + }, + "solana:5eykt4UsFv8P8NJdTREpY1vzqKqZKvdp/token:EPjFWdd5AufqSSqeM2qN1xzybapC8G4wEGGkZwyTDt1v": { + "amount": "0", + "unit": "USDC" + }, + "solana:5eykt4UsFv8P8NJdTREpY1vzqKqZKvdp/token:Es9vMFrzaCERmJfrF4H2FYD4KCoNkY11McCe8BenwNYB": { + "amount": "0", + "unit": "USDT" + } + }, + "574cb22f-c2d5-40d2-86a5-e3393d33050f": { + "bip122:000000000019d6689c085ae165831e93/slip44:0": { + "amount": "0.00015445", + "unit": "BTC" + } + }, + "575d130d-01da-44f0-a731-da9967adf412": { + "solana:5eykt4UsFv8P8NJdTREpY1vzqKqZKvdp/slip44:501": { + "amount": "0", + "unit": "SOL" + } + }, + "5a747531-d39f-49d5-afbd-59c018cc4757": { + "solana:5eykt4UsFv8P8NJdTREpY1vzqKqZKvdp/slip44:501": { + "amount": "0", + "unit": "SOL" + } + }, + "658962cf-0ecb-496e-beb8-91b663d244de": { + "tron:2494104990/slip44:195": { + "amount": "0", + "unit": "TRX" + }, + "tron:2494104990/slip44:195-staked-for-bandwidth": { + "amount": "0", + "unit": "sTRX-BANDWIDTH" + }, + "tron:2494104990/slip44:195-staked-for-energy": { + "amount": "0", + "unit": "sTRX-ENERGY" + }, + "tron:2494104990/slip44:bandwidth": { + "amount": "0", + "unit": "BANDWIDTH" + }, + "tron:2494104990/slip44:energy": { + "amount": "0", + "unit": "ENERGY" + }, + "tron:2494104990/slip44:maximum-bandwidth": { + "amount": "0", + "unit": "MAX-BANDWIDTH" + }, + "tron:2494104990/slip44:maximum-energy": { + "amount": "0", + "unit": "MAX-ENERGY" + }, + "tron:3448148188/slip44:195": { + "amount": "0", + "unit": "TRX" + }, + "tron:3448148188/slip44:195-staked-for-bandwidth": { + "amount": "0", + "unit": "sTRX-BANDWIDTH" + }, + "tron:3448148188/slip44:195-staked-for-energy": { + "amount": "0", + "unit": "sTRX-ENERGY" + }, + "tron:3448148188/slip44:bandwidth": { + "amount": "0", + "unit": "BANDWIDTH" + }, + "tron:3448148188/slip44:energy": { + "amount": "0", + "unit": "ENERGY" + }, + "tron:3448148188/slip44:maximum-bandwidth": { + "amount": "0", + "unit": "MAX-BANDWIDTH" + }, + "tron:3448148188/slip44:maximum-energy": { + "amount": "0", + "unit": "MAX-ENERGY" + }, + "tron:728126428/slip44:195": { + "amount": "0", + "unit": "TRX" + }, + "tron:728126428/slip44:195-staked-for-bandwidth": { + "amount": "0", + "unit": "sTRX-BANDWIDTH" + }, + "tron:728126428/slip44:195-staked-for-energy": { + "amount": "0", + "unit": "sTRX-ENERGY" + }, + "tron:728126428/slip44:bandwidth": { + "amount": "0", + "unit": "BANDWIDTH" + }, + "tron:728126428/slip44:energy": { + "amount": "0", + "unit": "ENERGY" + }, + "tron:728126428/slip44:maximum-bandwidth": { + "amount": "0", + "unit": "MAX-BANDWIDTH" + }, + "tron:728126428/slip44:maximum-energy": { + "amount": "0", + "unit": "MAX-ENERGY" + } + }, + "73a28e8a-5ecb-4b36-b6f3-d2c12294eebf": { + "tron:2494104990/slip44:195": { + "amount": "0", + "unit": "TRX" + }, + "tron:2494104990/slip44:195-staked-for-bandwidth": { + "amount": "0", + "unit": "sTRX-BANDWIDTH" + }, + "tron:2494104990/slip44:195-staked-for-energy": { + "amount": "0", + "unit": "sTRX-ENERGY" + }, + "tron:2494104990/slip44:bandwidth": { + "amount": "0", + "unit": "BANDWIDTH" + }, + "tron:2494104990/slip44:energy": { + "amount": "0", + "unit": "ENERGY" + }, + "tron:2494104990/slip44:maximum-bandwidth": { + "amount": "0", + "unit": "MAX-BANDWIDTH" + }, + "tron:2494104990/slip44:maximum-energy": { + "amount": "0", + "unit": "MAX-ENERGY" + }, + "tron:3448148188/slip44:195": { + "amount": "0", + "unit": "TRX" + }, + "tron:3448148188/slip44:195-staked-for-bandwidth": { + "amount": "0", + "unit": "sTRX-BANDWIDTH" + }, + "tron:3448148188/slip44:195-staked-for-energy": { + "amount": "0", + "unit": "sTRX-ENERGY" + }, + "tron:3448148188/slip44:bandwidth": { + "amount": "0", + "unit": "BANDWIDTH" + }, + "tron:3448148188/slip44:energy": { + "amount": "0", + "unit": "ENERGY" + }, + "tron:3448148188/slip44:maximum-bandwidth": { + "amount": "0", + "unit": "MAX-BANDWIDTH" + }, + "tron:3448148188/slip44:maximum-energy": { + "amount": "0", + "unit": "MAX-ENERGY" + }, + "tron:728126428/slip44:195": { + "amount": "0", + "unit": "TRX" + }, + "tron:728126428/slip44:195-staked-for-bandwidth": { + "amount": "0", + "unit": "sTRX-BANDWIDTH" + }, + "tron:728126428/slip44:195-staked-for-energy": { + "amount": "0", + "unit": "sTRX-ENERGY" + }, + "tron:728126428/slip44:bandwidth": { + "amount": "0", + "unit": "BANDWIDTH" + }, + "tron:728126428/slip44:energy": { + "amount": "0", + "unit": "ENERGY" + }, + "tron:728126428/slip44:maximum-bandwidth": { + "amount": "0", + "unit": "MAX-BANDWIDTH" + }, + "tron:728126428/slip44:maximum-energy": { + "amount": "0", + "unit": "MAX-ENERGY" + } + }, + "744910ce-8368-414f-8e7c-1c5dba71831e": { + "bip122:000000000019d6689c085ae165831e93/slip44:0": { + "amount": "0", + "unit": "BTC" + } + }, + "77a6514e-0024-4dc2-b08d-e78c664c37c5": { + "tron:2494104990/slip44:195": { + "amount": "0", + "unit": "TRX" + }, + "tron:2494104990/slip44:195-staked-for-bandwidth": { + "amount": "0", + "unit": "sTRX-BANDWIDTH" + }, + "tron:2494104990/slip44:195-staked-for-energy": { + "amount": "0", + "unit": "sTRX-ENERGY" + }, + "tron:2494104990/slip44:bandwidth": { + "amount": "0", + "unit": "BANDWIDTH" + }, + "tron:2494104990/slip44:energy": { + "amount": "0", + "unit": "ENERGY" + }, + "tron:2494104990/slip44:maximum-bandwidth": { + "amount": "0", + "unit": "MAX-BANDWIDTH" + }, + "tron:2494104990/slip44:maximum-energy": { + "amount": "0", + "unit": "MAX-ENERGY" + }, + "tron:3448148188/slip44:195": { + "amount": "0", + "unit": "TRX" + }, + "tron:3448148188/slip44:195-staked-for-bandwidth": { + "amount": "0", + "unit": "sTRX-BANDWIDTH" + }, + "tron:3448148188/slip44:195-staked-for-energy": { + "amount": "0", + "unit": "sTRX-ENERGY" + }, + "tron:3448148188/slip44:bandwidth": { + "amount": "0", + "unit": "BANDWIDTH" + }, + "tron:3448148188/slip44:energy": { + "amount": "0", + "unit": "ENERGY" + }, + "tron:3448148188/slip44:maximum-bandwidth": { + "amount": "0", + "unit": "MAX-BANDWIDTH" + }, + "tron:3448148188/slip44:maximum-energy": { + "amount": "0", + "unit": "MAX-ENERGY" + }, + "tron:728126428/slip44:195": { + "amount": "0", + "unit": "TRX" + }, + "tron:728126428/slip44:195-staked-for-bandwidth": { + "amount": "0", + "unit": "sTRX-BANDWIDTH" + }, + "tron:728126428/slip44:195-staked-for-energy": { + "amount": "0", + "unit": "sTRX-ENERGY" + }, + "tron:728126428/slip44:bandwidth": { + "amount": "0", + "unit": "BANDWIDTH" + }, + "tron:728126428/slip44:energy": { + "amount": "0", + "unit": "ENERGY" + }, + "tron:728126428/slip44:maximum-bandwidth": { + "amount": "0", + "unit": "MAX-BANDWIDTH" + }, + "tron:728126428/slip44:maximum-energy": { + "amount": "0", + "unit": "MAX-ENERGY" + } + }, + "78ccb0a9-3647-4bb6-94b4-54d8b4e0b397": { + "tron:2494104990/slip44:195": { + "amount": "0", + "unit": "TRX" + }, + "tron:2494104990/slip44:195-staked-for-bandwidth": { + "amount": "0", + "unit": "sTRX-BANDWIDTH" + }, + "tron:2494104990/slip44:195-staked-for-energy": { + "amount": "0", + "unit": "sTRX-ENERGY" + }, + "tron:2494104990/slip44:bandwidth": { + "amount": "0", + "unit": "BANDWIDTH" + }, + "tron:2494104990/slip44:energy": { + "amount": "0", + "unit": "ENERGY" + }, + "tron:2494104990/slip44:maximum-bandwidth": { + "amount": "0", + "unit": "MAX-BANDWIDTH" + }, + "tron:2494104990/slip44:maximum-energy": { + "amount": "0", + "unit": "MAX-ENERGY" + }, + "tron:3448148188/slip44:195": { + "amount": "0", + "unit": "TRX" + }, + "tron:3448148188/slip44:195-staked-for-bandwidth": { + "amount": "0", + "unit": "sTRX-BANDWIDTH" + }, + "tron:3448148188/slip44:195-staked-for-energy": { + "amount": "0", + "unit": "sTRX-ENERGY" + }, + "tron:3448148188/slip44:bandwidth": { + "amount": "0", + "unit": "BANDWIDTH" + }, + "tron:3448148188/slip44:energy": { + "amount": "0", + "unit": "ENERGY" + }, + "tron:3448148188/slip44:maximum-bandwidth": { + "amount": "0", + "unit": "MAX-BANDWIDTH" + }, + "tron:3448148188/slip44:maximum-energy": { + "amount": "0", + "unit": "MAX-ENERGY" + }, + "tron:728126428/slip44:195": { + "amount": "0", + "unit": "TRX" + }, + "tron:728126428/slip44:195-staked-for-bandwidth": { + "amount": "0", + "unit": "sTRX-BANDWIDTH" + }, + "tron:728126428/slip44:195-staked-for-energy": { + "amount": "0", + "unit": "sTRX-ENERGY" + }, + "tron:728126428/slip44:bandwidth": { + "amount": "0", + "unit": "BANDWIDTH" + }, + "tron:728126428/slip44:energy": { + "amount": "0", + "unit": "ENERGY" + }, + "tron:728126428/slip44:maximum-bandwidth": { + "amount": "0", + "unit": "MAX-BANDWIDTH" + }, + "tron:728126428/slip44:maximum-energy": { + "amount": "0", + "unit": "MAX-ENERGY" + } + }, + "7f6eee30-338e-4926-86fa-19436da91f35": { + "solana:5eykt4UsFv8P8NJdTREpY1vzqKqZKvdp/slip44:501": { + "amount": "0", + "unit": "SOL" + } + }, + "80340772-85d8-41a5-b316-1d8fc8c2cea4": { + "bip122:000000000019d6689c085ae165831e93/slip44:0": { + "amount": "0", + "unit": "BTC" + } + }, + "891b1840-b34b-4059-895b-5f163cff8ff1": { + "solana:5eykt4UsFv8P8NJdTREpY1vzqKqZKvdp/slip44:501": { + "amount": "0", + "unit": "SOL" + } + }, + "8b0e3ad2-d40d-47b1-a9c3-702eb67ab1ba": { + "tron:2494104990/slip44:195": { + "amount": "0", + "unit": "TRX" + }, + "tron:2494104990/slip44:195-staked-for-bandwidth": { + "amount": "0", + "unit": "sTRX-BANDWIDTH" + }, + "tron:2494104990/slip44:195-staked-for-energy": { + "amount": "0", + "unit": "sTRX-ENERGY" + }, + "tron:2494104990/slip44:bandwidth": { + "amount": "0", + "unit": "BANDWIDTH" + }, + "tron:2494104990/slip44:energy": { + "amount": "0", + "unit": "ENERGY" + }, + "tron:2494104990/slip44:maximum-bandwidth": { + "amount": "0", + "unit": "MAX-BANDWIDTH" + }, + "tron:2494104990/slip44:maximum-energy": { + "amount": "0", + "unit": "MAX-ENERGY" + }, + "tron:3448148188/slip44:195": { + "amount": "0", + "unit": "TRX" + }, + "tron:3448148188/slip44:195-staked-for-bandwidth": { + "amount": "0", + "unit": "sTRX-BANDWIDTH" + }, + "tron:3448148188/slip44:195-staked-for-energy": { + "amount": "0", + "unit": "sTRX-ENERGY" + }, + "tron:3448148188/slip44:bandwidth": { + "amount": "0", + "unit": "BANDWIDTH" + }, + "tron:3448148188/slip44:energy": { + "amount": "0", + "unit": "ENERGY" + }, + "tron:3448148188/slip44:maximum-bandwidth": { + "amount": "0", + "unit": "MAX-BANDWIDTH" + }, + "tron:3448148188/slip44:maximum-energy": { + "amount": "0", + "unit": "MAX-ENERGY" + }, + "tron:728126428/slip44:195": { + "amount": "0", + "unit": "TRX" + }, + "tron:728126428/slip44:195-in-lock-period": { + "amount": "0", + "unit": "trx-in-lock-period" + }, + "tron:728126428/slip44:195-ready-for-withdrawal": { + "amount": "0", + "unit": "trx-ready-for-withdrawal" + }, + "tron:728126428/slip44:195-staked-for-bandwidth": { + "amount": "0", + "unit": "sTRX-BANDWIDTH" + }, + "tron:728126428/slip44:195-staked-for-energy": { + "amount": "0", + "unit": "sTRX-ENERGY" + }, + "tron:728126428/slip44:195-staking-rewards": { + "amount": "0", + "unit": "trx-staking-rewards" + }, + "tron:728126428/slip44:bandwidth": { + "amount": "0", + "unit": "BANDWIDTH" + }, + "tron:728126428/slip44:energy": { + "amount": "0", + "unit": "ENERGY" + }, + "tron:728126428/slip44:maximum-bandwidth": { + "amount": "0", + "unit": "MAX-BANDWIDTH" + }, + "tron:728126428/slip44:maximum-energy": { + "amount": "0", + "unit": "MAX-ENERGY" + } + }, + "8fd0b8c5-b42d-462d-965b-2979b4057c88": { + "tron:2494104990/slip44:195": { + "amount": "0", + "unit": "TRX" + }, + "tron:2494104990/slip44:195-staked-for-bandwidth": { + "amount": "0", + "unit": "sTRX-BANDWIDTH" + }, + "tron:2494104990/slip44:195-staked-for-energy": { + "amount": "0", + "unit": "sTRX-ENERGY" + }, + "tron:2494104990/slip44:bandwidth": { + "amount": "0", + "unit": "BANDWIDTH" + }, + "tron:2494104990/slip44:energy": { + "amount": "0", + "unit": "ENERGY" + }, + "tron:2494104990/slip44:maximum-bandwidth": { + "amount": "0", + "unit": "MAX-BANDWIDTH" + }, + "tron:2494104990/slip44:maximum-energy": { + "amount": "0", + "unit": "MAX-ENERGY" + }, + "tron:3448148188/slip44:195": { + "amount": "0", + "unit": "TRX" + }, + "tron:3448148188/slip44:195-staked-for-bandwidth": { + "amount": "0", + "unit": "sTRX-BANDWIDTH" + }, + "tron:3448148188/slip44:195-staked-for-energy": { + "amount": "0", + "unit": "sTRX-ENERGY" + }, + "tron:3448148188/slip44:bandwidth": { + "amount": "0", + "unit": "BANDWIDTH" + }, + "tron:3448148188/slip44:energy": { + "amount": "0", + "unit": "ENERGY" + }, + "tron:3448148188/slip44:maximum-bandwidth": { + "amount": "0", + "unit": "MAX-BANDWIDTH" + }, + "tron:3448148188/slip44:maximum-energy": { + "amount": "0", + "unit": "MAX-ENERGY" + }, + "tron:728126428/slip44:195": { + "amount": "0", + "unit": "TRX" + }, + "tron:728126428/slip44:195-staked-for-bandwidth": { + "amount": "0", + "unit": "sTRX-BANDWIDTH" + }, + "tron:728126428/slip44:195-staked-for-energy": { + "amount": "0", + "unit": "sTRX-ENERGY" + }, + "tron:728126428/slip44:bandwidth": { + "amount": "0", + "unit": "BANDWIDTH" + }, + "tron:728126428/slip44:energy": { + "amount": "0", + "unit": "ENERGY" + }, + "tron:728126428/slip44:maximum-bandwidth": { + "amount": "0", + "unit": "MAX-BANDWIDTH" + }, + "tron:728126428/slip44:maximum-energy": { + "amount": "0", + "unit": "MAX-ENERGY" + } + }, + "9e12503a-12d8-4bb4-835f-a0c203ccd67a": { + "tron:2494104990/slip44:195": { + "amount": "0", + "unit": "TRX" + }, + "tron:2494104990/slip44:195-staked-for-bandwidth": { + "amount": "0", + "unit": "sTRX-BANDWIDTH" + }, + "tron:2494104990/slip44:195-staked-for-energy": { + "amount": "0", + "unit": "sTRX-ENERGY" + }, + "tron:2494104990/slip44:bandwidth": { + "amount": "0", + "unit": "BANDWIDTH" + }, + "tron:2494104990/slip44:energy": { + "amount": "0", + "unit": "ENERGY" + }, + "tron:2494104990/slip44:maximum-bandwidth": { + "amount": "0", + "unit": "MAX-BANDWIDTH" + }, + "tron:2494104990/slip44:maximum-energy": { + "amount": "0", + "unit": "MAX-ENERGY" + }, + "tron:3448148188/slip44:195": { + "amount": "0", + "unit": "TRX" + }, + "tron:3448148188/slip44:195-staked-for-bandwidth": { + "amount": "0", + "unit": "sTRX-BANDWIDTH" + }, + "tron:3448148188/slip44:195-staked-for-energy": { + "amount": "0", + "unit": "sTRX-ENERGY" + }, + "tron:3448148188/slip44:bandwidth": { + "amount": "0", + "unit": "BANDWIDTH" + }, + "tron:3448148188/slip44:energy": { + "amount": "0", + "unit": "ENERGY" + }, + "tron:3448148188/slip44:maximum-bandwidth": { + "amount": "0", + "unit": "MAX-BANDWIDTH" + }, + "tron:3448148188/slip44:maximum-energy": { + "amount": "0", + "unit": "MAX-ENERGY" + }, + "tron:728126428/slip44:195": { + "amount": "0", + "unit": "TRX" + }, + "tron:728126428/slip44:195-staked-for-bandwidth": { + "amount": "0", + "unit": "sTRX-BANDWIDTH" + }, + "tron:728126428/slip44:195-staked-for-energy": { + "amount": "0", + "unit": "sTRX-ENERGY" + }, + "tron:728126428/slip44:bandwidth": { + "amount": "0", + "unit": "BANDWIDTH" + }, + "tron:728126428/slip44:energy": { + "amount": "0", + "unit": "ENERGY" + }, + "tron:728126428/slip44:maximum-bandwidth": { + "amount": "0", + "unit": "MAX-BANDWIDTH" + }, + "tron:728126428/slip44:maximum-energy": { + "amount": "0", + "unit": "MAX-ENERGY" + } + }, + "a4c40c7c-01c0-4335-b574-72195898b31c": { + "bip122:000000000019d6689c085ae165831e93/slip44:0": { + "amount": "0", + "unit": "BTC" + } + }, + "c2c05428-c846-4992-a5a3-5d151b97fcdb": { + "bip122:000000000019d6689c085ae165831e93/slip44:0": { + "amount": "0", + "unit": "BTC" + } + }, + "c3fc6bba-683b-44c8-b637-89b55416a8dd": { + "solana:5eykt4UsFv8P8NJdTREpY1vzqKqZKvdp/slip44:501": { + "amount": "0", + "unit": "SOL" + } + }, + "c5bf70b0-2c4b-4016-9107-cab94be5fbb0": { + "tron:2494104990/slip44:195": { + "amount": "0", + "unit": "TRX" + }, + "tron:2494104990/slip44:195-staked-for-bandwidth": { + "amount": "0", + "unit": "sTRX-BANDWIDTH" + }, + "tron:2494104990/slip44:195-staked-for-energy": { + "amount": "0", + "unit": "sTRX-ENERGY" + }, + "tron:2494104990/slip44:bandwidth": { + "amount": "0", + "unit": "BANDWIDTH" + }, + "tron:2494104990/slip44:energy": { + "amount": "0", + "unit": "ENERGY" + }, + "tron:2494104990/slip44:maximum-bandwidth": { + "amount": "0", + "unit": "MAX-BANDWIDTH" + }, + "tron:2494104990/slip44:maximum-energy": { + "amount": "0", + "unit": "MAX-ENERGY" + }, + "tron:3448148188/slip44:195": { + "amount": "0", + "unit": "TRX" + }, + "tron:3448148188/slip44:195-staked-for-bandwidth": { + "amount": "0", + "unit": "sTRX-BANDWIDTH" + }, + "tron:3448148188/slip44:195-staked-for-energy": { + "amount": "0", + "unit": "sTRX-ENERGY" + }, + "tron:3448148188/slip44:bandwidth": { + "amount": "0", + "unit": "BANDWIDTH" + }, + "tron:3448148188/slip44:energy": { + "amount": "0", + "unit": "ENERGY" + }, + "tron:3448148188/slip44:maximum-bandwidth": { + "amount": "0", + "unit": "MAX-BANDWIDTH" + }, + "tron:3448148188/slip44:maximum-energy": { + "amount": "0", + "unit": "MAX-ENERGY" + }, + "tron:728126428/slip44:195": { + "unit": "TRX", + "amount": "49.889968" + }, + "tron:728126428/slip44:195-in-lock-period": { + "unit": "trx-in-lock-period", + "amount": "0" + }, + "tron:728126428/slip44:195-ready-for-withdrawal": { + "unit": "trx-ready-for-withdrawal", + "amount": "0" + }, + "tron:728126428/slip44:195-staked-for-bandwidth": { + "unit": "sTRX-BANDWIDTH", + "amount": "0" + }, + "tron:728126428/slip44:195-staked-for-energy": { + "unit": "sTRX-ENERGY", + "amount": "0" + }, + "tron:728126428/slip44:195-staking-rewards": { + "unit": "trx-staking-rewards", + "amount": "0" + }, + "tron:728126428/slip44:bandwidth": { + "unit": "BANDWIDTH", + "amount": "600" + }, + "tron:728126428/slip44:energy": { + "unit": "ENERGY", + "amount": "0" + }, + "tron:728126428/slip44:maximum-bandwidth": { + "unit": "MAX-BANDWIDTH", + "amount": "600" + }, + "tron:728126428/slip44:maximum-energy": { + "unit": "MAX-ENERGY", + "amount": "0" + } + }, + "c6d62ae8-d02c-4a7a-8222-17ed6cdf0e52": { + "bip122:000000000019d6689c085ae165831e93/slip44:0": { + "amount": "0", + "unit": "BTC" + } + }, + "c7cf5799-e458-4bb5-b60b-7e74cf2e7c0a": { + "tron:2494104990/slip44:195": { + "amount": "0", + "unit": "TRX" + }, + "tron:2494104990/slip44:195-staked-for-bandwidth": { + "amount": "0", + "unit": "sTRX-BANDWIDTH" + }, + "tron:2494104990/slip44:195-staked-for-energy": { + "amount": "0", + "unit": "sTRX-ENERGY" + }, + "tron:2494104990/slip44:bandwidth": { + "amount": "0", + "unit": "BANDWIDTH" + }, + "tron:2494104990/slip44:energy": { + "amount": "0", + "unit": "ENERGY" + }, + "tron:2494104990/slip44:maximum-bandwidth": { + "amount": "0", + "unit": "MAX-BANDWIDTH" + }, + "tron:2494104990/slip44:maximum-energy": { + "amount": "0", + "unit": "MAX-ENERGY" + }, + "tron:3448148188/slip44:195": { + "amount": "0", + "unit": "TRX" + }, + "tron:3448148188/slip44:195-staked-for-bandwidth": { + "amount": "0", + "unit": "sTRX-BANDWIDTH" + }, + "tron:3448148188/slip44:195-staked-for-energy": { + "amount": "0", + "unit": "sTRX-ENERGY" + }, + "tron:3448148188/slip44:bandwidth": { + "amount": "0", + "unit": "BANDWIDTH" + }, + "tron:3448148188/slip44:energy": { + "amount": "0", + "unit": "ENERGY" + }, + "tron:3448148188/slip44:maximum-bandwidth": { + "amount": "0", + "unit": "MAX-BANDWIDTH" + }, + "tron:3448148188/slip44:maximum-energy": { + "amount": "0", + "unit": "MAX-ENERGY" + }, + "tron:728126428/slip44:195": { + "amount": "0", + "unit": "TRX" + }, + "tron:728126428/slip44:195-staked-for-bandwidth": { + "amount": "0", + "unit": "sTRX-BANDWIDTH" + }, + "tron:728126428/slip44:195-staked-for-energy": { + "amount": "0", + "unit": "sTRX-ENERGY" + }, + "tron:728126428/slip44:bandwidth": { + "amount": "0", + "unit": "BANDWIDTH" + }, + "tron:728126428/slip44:energy": { + "amount": "0", + "unit": "ENERGY" + }, + "tron:728126428/slip44:maximum-bandwidth": { + "amount": "0", + "unit": "MAX-BANDWIDTH" + }, + "tron:728126428/slip44:maximum-energy": { + "amount": "0", + "unit": "MAX-ENERGY" + } + }, + "c86652a6-e1f3-4e4c-b411-c58efe220dcf": { + "solana:5eykt4UsFv8P8NJdTREpY1vzqKqZKvdp/slip44:501": { + "amount": "0", + "unit": "SOL" + } + }, + "d05ca007-7a11-470f-8433-a89767f95995": { + "bip122:000000000019d6689c085ae165831e93/slip44:0": { + "amount": "0", + "unit": "BTC" + } + }, + "d8086b4c-4361-49ab-8955-efaa5240f561": { + "tron:2494104990/slip44:195": { + "amount": "0", + "unit": "TRX" + }, + "tron:2494104990/slip44:195-staked-for-bandwidth": { + "amount": "0", + "unit": "sTRX-BANDWIDTH" + }, + "tron:2494104990/slip44:195-staked-for-energy": { + "amount": "0", + "unit": "sTRX-ENERGY" + }, + "tron:2494104990/slip44:bandwidth": { + "amount": "0", + "unit": "BANDWIDTH" + }, + "tron:2494104990/slip44:energy": { + "amount": "0", + "unit": "ENERGY" + }, + "tron:2494104990/slip44:maximum-bandwidth": { + "amount": "0", + "unit": "MAX-BANDWIDTH" + }, + "tron:2494104990/slip44:maximum-energy": { + "amount": "0", + "unit": "MAX-ENERGY" + }, + "tron:3448148188/slip44:195": { + "amount": "0", + "unit": "TRX" + }, + "tron:3448148188/slip44:195-staked-for-bandwidth": { + "amount": "0", + "unit": "sTRX-BANDWIDTH" + }, + "tron:3448148188/slip44:195-staked-for-energy": { + "amount": "0", + "unit": "sTRX-ENERGY" + }, + "tron:3448148188/slip44:bandwidth": { + "amount": "0", + "unit": "BANDWIDTH" + }, + "tron:3448148188/slip44:energy": { + "amount": "0", + "unit": "ENERGY" + }, + "tron:3448148188/slip44:maximum-bandwidth": { + "amount": "0", + "unit": "MAX-BANDWIDTH" + }, + "tron:3448148188/slip44:maximum-energy": { + "amount": "0", + "unit": "MAX-ENERGY" + }, + "tron:728126428/slip44:195": { + "amount": "0", + "unit": "TRX" + }, + "tron:728126428/slip44:195-staked-for-bandwidth": { + "amount": "0", + "unit": "sTRX-BANDWIDTH" + }, + "tron:728126428/slip44:195-staked-for-energy": { + "amount": "0", + "unit": "sTRX-ENERGY" + }, + "tron:728126428/slip44:bandwidth": { + "amount": "0", + "unit": "BANDWIDTH" + }, + "tron:728126428/slip44:energy": { + "amount": "0", + "unit": "ENERGY" + }, + "tron:728126428/slip44:maximum-bandwidth": { + "amount": "0", + "unit": "MAX-BANDWIDTH" + }, + "tron:728126428/slip44:maximum-energy": { + "amount": "0", + "unit": "MAX-ENERGY" + } + }, + "d834c0ad-655b-4707-997d-7048c1896f89": { + "bip122:000000000019d6689c085ae165831e93/slip44:0": { + "amount": "0", + "unit": "BTC" + } + }, + "db7205b1-e72f-4082-92c4-5490fdba12c5": { + "solana:5eykt4UsFv8P8NJdTREpY1vzqKqZKvdp/slip44:501": { + "amount": "0", + "unit": "SOL" + } + }, + "df59431e-d587-40a5-9c2b-3bdc6584b0e4": { + "bip122:000000000019d6689c085ae165831e93/slip44:0": { + "amount": "0", + "unit": "BTC" + } + }, + "e421a858-a232-40dc-8bbb-d3745bee215b": { + "solana:5eykt4UsFv8P8NJdTREpY1vzqKqZKvdp/slip44:501": { + "amount": "0", + "unit": "SOL" + } + }, + "e4cb2ec8-15e3-494a-bde2-6ea14e6d0d6c": { + "solana:5eykt4UsFv8P8NJdTREpY1vzqKqZKvdp/slip44:501": { + "amount": "0", + "unit": "SOL" + } + }, + "e6f7d2e7-8c4c-48f7-9d04-958add8113b7": { + "tron:2494104990/slip44:195": { + "amount": "0", + "unit": "TRX" + }, + "tron:2494104990/slip44:195-staked-for-bandwidth": { + "amount": "0", + "unit": "sTRX-BANDWIDTH" + }, + "tron:2494104990/slip44:195-staked-for-energy": { + "amount": "0", + "unit": "sTRX-ENERGY" + }, + "tron:2494104990/slip44:bandwidth": { + "amount": "0", + "unit": "BANDWIDTH" + }, + "tron:2494104990/slip44:energy": { + "amount": "0", + "unit": "ENERGY" + }, + "tron:2494104990/slip44:maximum-bandwidth": { + "amount": "0", + "unit": "MAX-BANDWIDTH" + }, + "tron:2494104990/slip44:maximum-energy": { + "amount": "0", + "unit": "MAX-ENERGY" + }, + "tron:3448148188/slip44:195": { + "amount": "0", + "unit": "TRX" + }, + "tron:3448148188/slip44:195-staked-for-bandwidth": { + "amount": "0", + "unit": "sTRX-BANDWIDTH" + }, + "tron:3448148188/slip44:195-staked-for-energy": { + "amount": "0", + "unit": "sTRX-ENERGY" + }, + "tron:3448148188/slip44:bandwidth": { + "amount": "0", + "unit": "BANDWIDTH" + }, + "tron:3448148188/slip44:energy": { + "amount": "0", + "unit": "ENERGY" + }, + "tron:3448148188/slip44:maximum-bandwidth": { + "amount": "0", + "unit": "MAX-BANDWIDTH" + }, + "tron:3448148188/slip44:maximum-energy": { + "amount": "0", + "unit": "MAX-ENERGY" + }, + "tron:728126428/slip44:195": { + "amount": "0", + "unit": "TRX" + }, + "tron:728126428/slip44:195-staked-for-bandwidth": { + "amount": "0", + "unit": "sTRX-BANDWIDTH" + }, + "tron:728126428/slip44:195-staked-for-energy": { + "amount": "0", + "unit": "sTRX-ENERGY" + }, + "tron:728126428/slip44:bandwidth": { + "amount": "0", + "unit": "BANDWIDTH" + }, + "tron:728126428/slip44:energy": { + "amount": "0", + "unit": "ENERGY" + }, + "tron:728126428/slip44:maximum-bandwidth": { + "amount": "0", + "unit": "MAX-BANDWIDTH" + }, + "tron:728126428/slip44:maximum-energy": { + "amount": "0", + "unit": "MAX-ENERGY" + } + }, + "e78a4c3d-7649-4797-90ad-9d6ddbe9e6dd": { + "bip122:000000000019d6689c085ae165831e93/slip44:0": { + "amount": "0", + "unit": "BTC" + } + }, + "e86326ea-c687-45bf-84b9-ad4d8618d084": { + "solana:5eykt4UsFv8P8NJdTREpY1vzqKqZKvdp/slip44:501": { + "amount": "0", + "unit": "SOL" + } + }, + "f5481e08-42e2-4504-9a1f-44c0bbe6e0bb": { + "bip122:000000000019d6689c085ae165831e93/slip44:0": { + "amount": "0", + "unit": "BTC" + } + }, + "f7f2ce83-85bc-49f9-8551-c36c5432a0c1": { + "tron:2494104990/slip44:195": { + "amount": "0", + "unit": "TRX" + }, + "tron:2494104990/slip44:195-staked-for-bandwidth": { + "amount": "0", + "unit": "sTRX-BANDWIDTH" + }, + "tron:2494104990/slip44:195-staked-for-energy": { + "amount": "0", + "unit": "sTRX-ENERGY" + }, + "tron:2494104990/slip44:bandwidth": { + "amount": "0", + "unit": "BANDWIDTH" + }, + "tron:2494104990/slip44:energy": { + "amount": "0", + "unit": "ENERGY" + }, + "tron:2494104990/slip44:maximum-bandwidth": { + "amount": "0", + "unit": "MAX-BANDWIDTH" + }, + "tron:2494104990/slip44:maximum-energy": { + "amount": "0", + "unit": "MAX-ENERGY" + }, + "tron:3448148188/slip44:195": { + "amount": "0", + "unit": "TRX" + }, + "tron:3448148188/slip44:195-staked-for-bandwidth": { + "amount": "0", + "unit": "sTRX-BANDWIDTH" + }, + "tron:3448148188/slip44:195-staked-for-energy": { + "amount": "0", + "unit": "sTRX-ENERGY" + }, + "tron:3448148188/slip44:bandwidth": { + "amount": "0", + "unit": "BANDWIDTH" + }, + "tron:3448148188/slip44:energy": { + "amount": "0", + "unit": "ENERGY" + }, + "tron:3448148188/slip44:maximum-bandwidth": { + "amount": "0", + "unit": "MAX-BANDWIDTH" + }, + "tron:3448148188/slip44:maximum-energy": { + "amount": "0", + "unit": "MAX-ENERGY" + }, + "tron:728126428/slip44:195": { + "amount": "0", + "unit": "TRX" + }, + "tron:728126428/slip44:195-staked-for-bandwidth": { + "amount": "0", + "unit": "sTRX-BANDWIDTH" + }, + "tron:728126428/slip44:195-staked-for-energy": { + "amount": "0", + "unit": "sTRX-ENERGY" + }, + "tron:728126428/slip44:bandwidth": { + "amount": "0", + "unit": "BANDWIDTH" + }, + "tron:728126428/slip44:energy": { + "amount": "0", + "unit": "ENERGY" + }, + "tron:728126428/slip44:maximum-bandwidth": { + "amount": "0", + "unit": "MAX-BANDWIDTH" + }, + "tron:728126428/slip44:maximum-energy": { + "amount": "0", + "unit": "MAX-ENERGY" + } + }, + "fedf900d-3caf-4540-9e24-c63400ef2b18": { + "tron:2494104990/slip44:195": { + "amount": "0", + "unit": "TRX" + }, + "tron:2494104990/slip44:195-staked-for-bandwidth": { + "amount": "0", + "unit": "sTRX-BANDWIDTH" + }, + "tron:2494104990/slip44:195-staked-for-energy": { + "amount": "0", + "unit": "sTRX-ENERGY" + }, + "tron:2494104990/slip44:bandwidth": { + "amount": "0", + "unit": "BANDWIDTH" + }, + "tron:2494104990/slip44:energy": { + "amount": "0", + "unit": "ENERGY" + }, + "tron:2494104990/slip44:maximum-bandwidth": { + "amount": "0", + "unit": "MAX-BANDWIDTH" + }, + "tron:2494104990/slip44:maximum-energy": { + "amount": "0", + "unit": "MAX-ENERGY" + }, + "tron:3448148188/slip44:195": { + "amount": "0", + "unit": "TRX" + }, + "tron:3448148188/slip44:195-staked-for-bandwidth": { + "amount": "0", + "unit": "sTRX-BANDWIDTH" + }, + "tron:3448148188/slip44:195-staked-for-energy": { + "amount": "0", + "unit": "sTRX-ENERGY" + }, + "tron:3448148188/slip44:bandwidth": { + "amount": "0", + "unit": "BANDWIDTH" + }, + "tron:3448148188/slip44:energy": { + "amount": "0", + "unit": "ENERGY" + }, + "tron:3448148188/slip44:maximum-bandwidth": { + "amount": "0", + "unit": "MAX-BANDWIDTH" + }, + "tron:3448148188/slip44:maximum-energy": { + "amount": "0", + "unit": "MAX-ENERGY" + }, + "tron:728126428/slip44:195": { + "amount": "0", + "unit": "TRX" + }, + "tron:728126428/slip44:195-in-lock-period": { + "amount": "0", + "unit": "trx-in-lock-period" + }, + "tron:728126428/slip44:195-ready-for-withdrawal": { + "amount": "0", + "unit": "trx-ready-for-withdrawal" + }, + "tron:728126428/slip44:195-staked-for-bandwidth": { + "amount": "0", + "unit": "sTRX-BANDWIDTH" + }, + "tron:728126428/slip44:195-staked-for-energy": { + "amount": "0", + "unit": "sTRX-ENERGY" + }, + "tron:728126428/slip44:195-staking-rewards": { + "amount": "0", + "unit": "trx-staking-rewards" + }, + "tron:728126428/slip44:bandwidth": { + "amount": "0", + "unit": "BANDWIDTH" + }, + "tron:728126428/slip44:energy": { + "amount": "0", + "unit": "ENERGY" + }, + "tron:728126428/slip44:maximum-bandwidth": { + "amount": "0", + "unit": "MAX-BANDWIDTH" + }, + "tron:728126428/slip44:maximum-energy": { + "amount": "0", + "unit": "MAX-ENERGY" + } + }, + "ffb79cf7-3a88-4cfe-864c-a9f656ce1840": { + "bip122:000000000019d6689c085ae165831e93/slip44:0": { + "amount": "0", + "unit": "BTC" + } + } + }, + "nonEvmTransactions": { + "0089fc3c-35be-4ecf-ba88-22461a3d9503": {}, + "03d7de03-c856-4239-93fc-b3cc5352883a": {}, + "040b84bc-2341-4988-b8db-8063bbc6c708": {}, + "076cbb47-1752-40b0-9314-1f07e7b88ffa": { + "solana:5eykt4UsFv8P8NJdTREpY1vzqKqZKvdp": { + "transactions": [ + { + "id": "jpoyN5Wp3Ut1o7V6WkBqzFxZJikT4zTFG1e1gjP1txkPesN9yTLWcj9pxGAgpaN5fMpaxncGaoNtvvUwdU2zWAP", + "account": "076cbb47-1752-40b0-9314-1f07e7b88ffa", + "timestamp": 1776730390, + "chain": "solana:5eykt4UsFv8P8NJdTREpY1vzqKqZKvdp", + "status": "confirmed", + "type": "send", + "from": [ + { + "address": "CyGir7UdxRCsNXkA89qH1P5p3Zhx11XxsE97WSfNMnLT", + "asset": { + "fungible": true, + "type": "solana:5eykt4UsFv8P8NJdTREpY1vzqKqZKvdp/slip44:501", + "unit": "SOL", + "amount": "0.01" + } + } + ], + "to": [ + { + "address": "47YRE7eLAdYzvGqSH1XLg2o8xUtywk7sS5BKv1oR4Y7i", + "asset": { + "fungible": true, + "type": "solana:5eykt4UsFv8P8NJdTREpY1vzqKqZKvdp/slip44:501", + "unit": "SOL", + "amount": "0.0000875" + } + }, + { + "address": "7uTT8Xi5RWXzy7h9XL244GRgEycDYDhLjr3ZyNdXi8pZ", + "asset": { + "fungible": true, + "type": "solana:5eykt4UsFv8P8NJdTREpY1vzqKqZKvdp/slip44:501", + "unit": "SOL", + "amount": "0.0099125" + } + } + ], + "fees": [ + { + "type": "base", + "asset": { + "fungible": true, + "type": "solana:5eykt4UsFv8P8NJdTREpY1vzqKqZKvdp/slip44:501", + "unit": "SOL", + "amount": "0.000005" + } + }, + { + "type": "priority", + "asset": { + "fungible": true, + "type": "solana:5eykt4UsFv8P8NJdTREpY1vzqKqZKvdp/slip44:501", + "unit": "SOL", + "amount": "0.000003909" + } + } + ], + "events": [ + { + "status": "confirmed", + "timestamp": 1776730390 + } + ] + }, + { + "id": "629zuNU9bH6Y2hL4S4ewfSwWbEXfj6rFp7EUTf9oGsvKcYX2s2S5WLG2gTrm5aYhByo6aGSdYyCFDAuqrN3CpPuU", + "account": "076cbb47-1752-40b0-9314-1f07e7b88ffa", + "timestamp": 1775782707, + "chain": "solana:5eykt4UsFv8P8NJdTREpY1vzqKqZKvdp", + "status": "confirmed", + "type": "send", + "from": [ + { + "address": "CyGir7UdxRCsNXkA89qH1P5p3Zhx11XxsE97WSfNMnLT", + "asset": { + "fungible": true, + "type": "solana:5eykt4UsFv8P8NJdTREpY1vzqKqZKvdp/token:EPjFWdd5AufqSSqeM2qN1xzybapC8G4wEGGkZwyTDt1v", + "unit": "USDC", + "amount": "2.043238" + } + } + ], + "to": [ + { + "address": "47YRE7eLAdYzvGqSH1XLg2o8xUtywk7sS5BKv1oR4Y7i", + "asset": { + "fungible": true, + "type": "solana:5eykt4UsFv8P8NJdTREpY1vzqKqZKvdp/token:EPjFWdd5AufqSSqeM2qN1xzybapC8G4wEGGkZwyTDt1v", + "unit": "USDC", + "amount": "0.017878" + } + }, + { + "address": "7uTT8Xi5RWXzy7h9XL244GRgEycDYDhLjr3ZyNdXi8pZ", + "asset": { + "fungible": true, + "type": "solana:5eykt4UsFv8P8NJdTREpY1vzqKqZKvdp/token:EPjFWdd5AufqSSqeM2qN1xzybapC8G4wEGGkZwyTDt1v", + "unit": "USDC", + "amount": "2.02536" + } + } + ], + "fees": [ + { + "type": "base", + "asset": { + "fungible": true, + "type": "solana:5eykt4UsFv8P8NJdTREpY1vzqKqZKvdp/slip44:501", + "unit": "SOL", + "amount": "0.000005" + } + }, + { + "type": "priority", + "asset": { + "fungible": true, + "type": "solana:5eykt4UsFv8P8NJdTREpY1vzqKqZKvdp/slip44:501", + "unit": "SOL", + "amount": "0.000004316" + } + } + ], + "events": [ + { + "status": "confirmed", + "timestamp": 1775782707 + } + ] + }, + { + "id": "3AMJwWowVgW3B1nw7F5TrdJd45WzkzzA4SaVrLEmSB5GE8Hzu3JicYYAEhfnvSxxiZVx8RayuMKwuoE2gdWEXnCN", + "account": "076cbb47-1752-40b0-9314-1f07e7b88ffa", + "timestamp": 1775568331, + "chain": "solana:5eykt4UsFv8P8NJdTREpY1vzqKqZKvdp", + "status": "confirmed", + "type": "unknown", + "from": [], + "to": [], + "fees": [ + { + "type": "base", + "asset": { + "fungible": true, + "type": "solana:5eykt4UsFv8P8NJdTREpY1vzqKqZKvdp/slip44:501", + "unit": "SOL", + "amount": "0.000005" + } + }, + { + "type": "priority", + "asset": { + "fungible": true, + "type": "solana:5eykt4UsFv8P8NJdTREpY1vzqKqZKvdp/slip44:501", + "unit": "SOL", + "amount": "0.0000203" + } + } + ], + "events": [ + { + "status": "confirmed", + "timestamp": 1775568331 + } + ] + }, + { + "id": "5A2McQdKtfx9iMDRVRjiRP3QNgFux82EFgpW3pcQ8mtxwFmUFFb9gAyGoTiJ3Siv1yrxHqob5fbVySTexqp9h3K5", + "account": "076cbb47-1752-40b0-9314-1f07e7b88ffa", + "timestamp": 1773675011, + "chain": "solana:5eykt4UsFv8P8NJdTREpY1vzqKqZKvdp", + "status": "confirmed", + "type": "unknown", + "from": [], + "to": [], + "fees": [ + { + "type": "base", + "asset": { + "fungible": true, + "type": "solana:5eykt4UsFv8P8NJdTREpY1vzqKqZKvdp/slip44:501", + "unit": "SOL", + "amount": "0.000005" + } + }, + { + "type": "priority", + "asset": { + "fungible": true, + "type": "solana:5eykt4UsFv8P8NJdTREpY1vzqKqZKvdp/slip44:501", + "unit": "SOL", + "amount": "0.0000203" + } + } + ], + "events": [ + { + "status": "confirmed", + "timestamp": 1773675011 + } + ] + }, + { + "id": "DaSWvYycV2ye5P1oiWHNC6Gmuw2paFHc761W3icwQFWC4q1KPX3tFPfZAkLYxchqWFfDQsRsnNqzBwrmb64DDRt", + "account": "076cbb47-1752-40b0-9314-1f07e7b88ffa", + "timestamp": 1769081993, + "chain": "solana:5eykt4UsFv8P8NJdTREpY1vzqKqZKvdp", + "status": "confirmed", + "type": "unknown", + "from": [], + "to": [], + "fees": [ + { + "type": "base", + "asset": { + "fungible": true, + "type": "solana:5eykt4UsFv8P8NJdTREpY1vzqKqZKvdp/slip44:501", + "unit": "SOL", + "amount": "0.000005" + } + }, + { + "type": "priority", + "asset": { + "fungible": true, + "type": "solana:5eykt4UsFv8P8NJdTREpY1vzqKqZKvdp/slip44:501", + "unit": "SOL", + "amount": "0.0000203" + } + } + ], + "events": [ + { + "status": "confirmed", + "timestamp": 1769081993 + } + ] + }, + { + "id": "EwbRaKm9YY5eaWRudUgXJFaL3NAYrA425P4kqyTDNXiYc6iSppQVwuGfnGTrxjK731dNHCcRrwA58VQ3bkFXPgo", + "account": "076cbb47-1752-40b0-9314-1f07e7b88ffa", + "timestamp": 1768995587, + "chain": "solana:5eykt4UsFv8P8NJdTREpY1vzqKqZKvdp", + "status": "confirmed", + "type": "unknown", + "from": [], + "to": [], + "fees": [ + { + "type": "base", + "asset": { + "fungible": true, + "type": "solana:5eykt4UsFv8P8NJdTREpY1vzqKqZKvdp/slip44:501", + "unit": "SOL", + "amount": "0.000005" + } + }, + { + "type": "priority", + "asset": { + "fungible": true, + "type": "solana:5eykt4UsFv8P8NJdTREpY1vzqKqZKvdp/slip44:501", + "unit": "SOL", + "amount": "0.0000203" + } + } + ], + "events": [ + { + "status": "confirmed", + "timestamp": 1768995587 + } + ] + }, + { + "id": "3ijJgEyRHV17dXGJ3cM3xootWn3pzDNiNaxvx4KhgGdavzi7dUhjXKXajsbEAWRd5m2mYeUfEe9Fkoxib7eTJmNk", + "account": "076cbb47-1752-40b0-9314-1f07e7b88ffa", + "timestamp": 1768909100, + "chain": "solana:5eykt4UsFv8P8NJdTREpY1vzqKqZKvdp", + "status": "confirmed", + "type": "unknown", + "from": [], + "to": [], + "fees": [ + { + "type": "base", + "asset": { + "fungible": true, + "type": "solana:5eykt4UsFv8P8NJdTREpY1vzqKqZKvdp/slip44:501", + "unit": "SOL", + "amount": "0.000005" + } + }, + { + "type": "priority", + "asset": { + "fungible": true, + "type": "solana:5eykt4UsFv8P8NJdTREpY1vzqKqZKvdp/slip44:501", + "unit": "SOL", + "amount": "0.0000203" + } + } + ], + "events": [ + { + "status": "confirmed", + "timestamp": 1768909100 + } + ] + }, + { + "account": "076cbb47-1752-40b0-9314-1f07e7b88ffa", + "chain": "solana:5eykt4UsFv8P8NJdTREpY1vzqKqZKvdp", + "events": [ + { + "status": "confirmed", + "timestamp": 1768822723 + } + ], + "fees": [ + { + "asset": { + "amount": "0.000005", + "fungible": true, + "type": "solana:5eykt4UsFv8P8NJdTREpY1vzqKqZKvdp/slip44:501", + "unit": "SOL" + }, + "type": "base" + }, + { + "asset": { + "amount": "0.0000203", + "fungible": true, + "type": "solana:5eykt4UsFv8P8NJdTREpY1vzqKqZKvdp/slip44:501", + "unit": "SOL" + }, + "type": "priority" + } + ], + "from": [], + "id": "4kFMomYxVup5VTSgFjs8N3scdZE7jTetbJTbc9PUTpqs5wkYdPcL6CgWSNJJPEvQdTEtpJZdxhopYoUErtYdiG3x", + "status": "confirmed", + "timestamp": 1768822723, + "to": [], + "type": "unknown" + }, + { + "id": "3UMZwLcAakxKnX7aKRLrNrbUrjStnA2ZTZQYtY59tfdfHo8X2akpa9R8hJoGFeEXn22DPLQwyh7zfo9pYmyxtSMH", + "account": "076cbb47-1752-40b0-9314-1f07e7b88ffa", + "timestamp": 1760381364, + "chain": "solana:5eykt4UsFv8P8NJdTREpY1vzqKqZKvdp", + "status": "confirmed", + "type": "send", + "from": [ + { + "address": "CyGir7UdxRCsNXkA89qH1P5p3Zhx11XxsE97WSfNMnLT", + "asset": { + "fungible": true, + "type": "solana:5eykt4UsFv8P8NJdTREpY1vzqKqZKvdp/slip44:501", + "unit": "SOL", + "amount": "0.005" + } + } + ], + "to": [ + { + "address": "47YRE7eLAdYzvGqSH1XLg2o8xUtywk7sS5BKv1oR4Y7i", + "asset": { + "fungible": true, + "type": "solana:5eykt4UsFv8P8NJdTREpY1vzqKqZKvdp/slip44:501", + "unit": "SOL", + "amount": "0.00004375" + } + }, + { + "address": "F7p3dFrjRTbtRp8FRF6qHLomXbKRBzpvBLjtQcfcgmNe", + "asset": { + "fungible": true, + "type": "solana:5eykt4UsFv8P8NJdTREpY1vzqKqZKvdp/slip44:501", + "unit": "SOL", + "amount": "0.00495625" + } + } + ], + "fees": [ + { + "type": "base", + "asset": { + "fungible": true, + "type": "solana:5eykt4UsFv8P8NJdTREpY1vzqKqZKvdp/slip44:501", + "unit": "SOL", + "amount": "0.000005" + } + }, + { + "type": "priority", + "asset": { + "fungible": true, + "type": "solana:5eykt4UsFv8P8NJdTREpY1vzqKqZKvdp/slip44:501", + "unit": "SOL", + "amount": "0.000016315" + } + } + ], + "events": [ + { + "status": "confirmed", + "timestamp": 1760381364 + } + ] + }, + { + "account": "076cbb47-1752-40b0-9314-1f07e7b88ffa", + "chain": "solana:5eykt4UsFv8P8NJdTREpY1vzqKqZKvdp", + "events": [ + { + "status": "confirmed", + "timestamp": 1760381327 + } + ], + "fees": [ + { + "asset": { + "amount": "0.000005", + "fungible": true, + "type": "solana:5eykt4UsFv8P8NJdTREpY1vzqKqZKvdp/slip44:501", + "unit": "SOL" + }, + "type": "base" + }, + { + "asset": { + "amount": "0.000023624", + "fungible": true, + "type": "solana:5eykt4UsFv8P8NJdTREpY1vzqKqZKvdp/slip44:501", + "unit": "SOL" + }, + "type": "priority" + } + ], + "from": [ + { + "address": "CyGir7UdxRCsNXkA89qH1P5p3Zhx11XxsE97WSfNMnLT", + "asset": { + "amount": "0.01", + "fungible": true, + "type": "solana:5eykt4UsFv8P8NJdTREpY1vzqKqZKvdp/slip44:501", + "unit": "SOL" + } + } + ], + "id": "5qsB2WN6jeUBYXpzgwPcLQohAfA189fa84fL1yqpZYvtGRxvsuDuKyhbfmRy3KtGHKG4rqxKCFkFFoTio4TQeGjn", + "status": "confirmed", + "timestamp": 1760381327, + "to": [ + { + "address": "CyGir7UdxRCsNXkA89qH1P5p3Zhx11XxsE97WSfNMnLT", + "asset": { + "amount": "2.043238", + "fungible": true, + "type": "solana:5eykt4UsFv8P8NJdTREpY1vzqKqZKvdp/token:EPjFWdd5AufqSSqeM2qN1xzybapC8G4wEGGkZwyTDt1v", + "unit": "USDC" + } + } + ], + "type": "swap" + }, + { + "account": "076cbb47-1752-40b0-9314-1f07e7b88ffa", + "chain": "solana:5eykt4UsFv8P8NJdTREpY1vzqKqZKvdp", + "events": [ + { + "status": "confirmed", + "timestamp": 1757014376 + } + ], + "fees": [ + { + "asset": { + "amount": "0.000005", + "fungible": true, + "type": "solana:5eykt4UsFv8P8NJdTREpY1vzqKqZKvdp/slip44:501", + "unit": "SOL" + }, + "type": "base" + }, + { + "asset": { + "amount": "0.00003254", + "fungible": true, + "type": "solana:5eykt4UsFv8P8NJdTREpY1vzqKqZKvdp/slip44:501", + "unit": "SOL" + }, + "type": "priority" + } + ], + "from": [ + { + "address": "CyGir7UdxRCsNXkA89qH1P5p3Zhx11XxsE97WSfNMnLT", + "asset": { + "amount": "5.764819", + "fungible": true, + "type": "solana:5eykt4UsFv8P8NJdTREpY1vzqKqZKvdp/token:JUPyiwrYJFskUPiHa7hkeR8VUtAeFoSYbKedZNsDvCN", + "unit": "JUP" + } + }, + { + "address": "8cjeuVV3KQ9k8RqW1JUyCfey2TDAhuo7f4hPDMeGfxv", + "asset": { + "amount": "2.317131", + "fungible": true, + "type": "solana:5eykt4UsFv8P8NJdTREpY1vzqKqZKvdp/token:EPjFWdd5AufqSSqeM2qN1xzybapC8G4wEGGkZwyTDt1v", + "unit": "USDC" + } + }, + { + "address": "BhQEFZCRnWKQ21LEt4DUby7fKynfmLVJcNjfHNqjEF61", + "asset": { + "amount": "0.409106", + "fungible": true, + "type": "solana:5eykt4UsFv8P8NJdTREpY1vzqKqZKvdp/token:EPjFWdd5AufqSSqeM2qN1xzybapC8G4wEGGkZwyTDt1v", + "unit": "USDC" + } + } + ], + "id": "M2Jb7vv64TXyqmwLycXyKwSGAyfrHA9nEGt94yeLqZYVe96BvJFxkS7GAEdW6uinfP7wjKTDJSiBYAT78bjtzR3", + "status": "confirmed", + "timestamp": 1757014376, + "to": [ + { + "address": "HbBHuvgWoChfztoqz2izLRF5mSoLKQXfU68kueBmhcmL", + "asset": { + "amount": "0.050442", + "fungible": true, + "type": "solana:5eykt4UsFv8P8NJdTREpY1vzqKqZKvdp/token:JUPyiwrYJFskUPiHa7hkeR8VUtAeFoSYbKedZNsDvCN", + "unit": "JUP" + } + }, + { + "address": "F7p3dFrjRTbtRp8FRF6qHLomXbKRBzpvBLjtQcfcgmNe", + "asset": { + "amount": "2.726237", + "fungible": true, + "type": "solana:5eykt4UsFv8P8NJdTREpY1vzqKqZKvdp/token:EPjFWdd5AufqSSqeM2qN1xzybapC8G4wEGGkZwyTDt1v", + "unit": "USDC" + } + }, + { + "address": "HWcEXBF7Gu2HnjBPfrSYpUKYrV4bBrkMJRWnb5Qn1zUe", + "asset": { + "amount": "4.857221", + "fungible": true, + "type": "solana:5eykt4UsFv8P8NJdTREpY1vzqKqZKvdp/token:JUPyiwrYJFskUPiHa7hkeR8VUtAeFoSYbKedZNsDvCN", + "unit": "JUP" + } + }, + { + "address": "BhQEFZCRnWKQ21LEt4DUby7fKynfmLVJcNjfHNqjEF61", + "asset": { + "amount": "0.857156", + "fungible": true, + "type": "solana:5eykt4UsFv8P8NJdTREpY1vzqKqZKvdp/token:JUPyiwrYJFskUPiHa7hkeR8VUtAeFoSYbKedZNsDvCN", + "unit": "JUP" + } + } + ], + "type": "send" + }, + { + "account": "076cbb47-1752-40b0-9314-1f07e7b88ffa", + "chain": "solana:5eykt4UsFv8P8NJdTREpY1vzqKqZKvdp", + "events": [ + { + "status": "confirmed", + "timestamp": 1757013124 + } + ], + "fees": [ + { + "asset": { + "amount": "0.000005", + "fungible": true, + "type": "solana:5eykt4UsFv8P8NJdTREpY1vzqKqZKvdp/slip44:501", + "unit": "SOL" + }, + "type": "base" + }, + { + "asset": { + "amount": "0.000040561", + "fungible": true, + "type": "solana:5eykt4UsFv8P8NJdTREpY1vzqKqZKvdp/slip44:501", + "unit": "SOL" + }, + "type": "priority" + } + ], + "from": [ + { + "address": "CyGir7UdxRCsNXkA89qH1P5p3Zhx11XxsE97WSfNMnLT", + "asset": { + "amount": "5", + "fungible": true, + "type": "solana:5eykt4UsFv8P8NJdTREpY1vzqKqZKvdp/token:EPjFWdd5AufqSSqeM2qN1xzybapC8G4wEGGkZwyTDt1v", + "unit": "USDC" + } + }, + { + "address": "HLnpSz9h2S4hiLQ43rnSD9XkcUThA7B8hQMKmDaiTLcC", + "asset": { + "amount": "0.024341646", + "fungible": true, + "type": "solana:5eykt4UsFv8P8NJdTREpY1vzqKqZKvdp/token:So11111111111111111111111111111111111111112", + "unit": "" + } + }, + { + "address": "8CPypcvEBUoqAyjrpKyWa5y1V4xKh3WxUh3K9ZiDCm8u", + "asset": { + "amount": "0.00115694", + "fungible": true, + "type": "solana:5eykt4UsFv8P8NJdTREpY1vzqKqZKvdp/token:7vfCXTUXx5WJV5JADk17DUJ4ksgau7utNKj4b963voxs", + "unit": "ETH" + } + }, + { + "address": "CyGir7UdxRCsNXkA89qH1P5p3Zhx11XxsE97WSfNMnLT", + "asset": { + "amount": "0.00503904", + "fungible": true, + "type": "solana:5eykt4UsFv8P8NJdTREpY1vzqKqZKvdp/slip44:501", + "unit": "SOL" + } + }, + { + "address": "sx8hCMCauCdbZ7sVBGSJmH7b7JmtuN8d8YwYmBpuPLH", + "asset": { + "amount": "0.024341646", + "fungible": true, + "type": "solana:5eykt4UsFv8P8NJdTREpY1vzqKqZKvdp/slip44:501", + "unit": "SOL" + } + } + ], + "id": "7Le683oKsgkxPtkZYeF9J8p57VoSuLLwKNq9qHam26YZAe6TEMcaRfAmCEnwzw3GMBZG2QSpkPkTvgj8us4N51z", + "status": "confirmed", + "timestamp": 1757013124, + "to": [ + { + "address": "HbBHuvgWoChfztoqz2izLRF5mSoLKQXfU68kueBmhcmL", + "asset": { + "amount": "0.04375", + "fungible": true, + "type": "solana:5eykt4UsFv8P8NJdTREpY1vzqKqZKvdp/token:EPjFWdd5AufqSSqeM2qN1xzybapC8G4wEGGkZwyTDt1v", + "unit": "USDC" + } + }, + { + "address": "HLnpSz9h2S4hiLQ43rnSD9XkcUThA7B8hQMKmDaiTLcC", + "asset": { + "amount": "4.95625", + "fungible": true, + "type": "solana:5eykt4UsFv8P8NJdTREpY1vzqKqZKvdp/token:EPjFWdd5AufqSSqeM2qN1xzybapC8G4wEGGkZwyTDt1v", + "unit": "USDC" + } + }, + { + "address": "8CPypcvEBUoqAyjrpKyWa5y1V4xKh3WxUh3K9ZiDCm8u", + "asset": { + "amount": "0.024341646", + "fungible": true, + "type": "solana:5eykt4UsFv8P8NJdTREpY1vzqKqZKvdp/token:So11111111111111111111111111111111111111112", + "unit": "" + } + }, + { + "address": "9KH9N69HMnfSMS3cJPo4sjPUA1gHyAhDUsMS7ZtFPuhT", + "asset": { + "amount": "0.00115694", + "fungible": true, + "type": "solana:5eykt4UsFv8P8NJdTREpY1vzqKqZKvdp/token:7vfCXTUXx5WJV5JADk17DUJ4ksgau7utNKj4b963voxs", + "unit": "ETH" + } + }, + { + "address": "4r9QbXNdh2PdzAMEj2PK1vyULMn9VayC2D2MajYjymWG", + "asset": { + "amount": "0.00203928", + "fungible": true, + "type": "solana:5eykt4UsFv8P8NJdTREpY1vzqKqZKvdp/slip44:501", + "unit": "SOL" + } + }, + { + "address": "9KH9N69HMnfSMS3cJPo4sjPUA1gHyAhDUsMS7ZtFPuhT", + "asset": { + "amount": "0.00096048", + "fungible": true, + "type": "solana:5eykt4UsFv8P8NJdTREpY1vzqKqZKvdp/slip44:501", + "unit": "SOL" + } + }, + { + "address": "9NVVrXwBqRCfRkEnf554kAq4RpMpXeDYPMbqMMnk9VN4", + "asset": { + "amount": "0.00203928", + "fungible": true, + "type": "solana:5eykt4UsFv8P8NJdTREpY1vzqKqZKvdp/slip44:501", + "unit": "SOL" + } + }, + { + "address": "4SwCYJXFDVKnP9CXGb5cFKUtaii9vj4cxjffLuff2PAU", + "asset": { + "amount": "0.024341646", + "fungible": true, + "type": "solana:5eykt4UsFv8P8NJdTREpY1vzqKqZKvdp/slip44:501", + "unit": "SOL" + } + } + ], + "type": "send" + }, + { + "account": "076cbb47-1752-40b0-9314-1f07e7b88ffa", + "chain": "solana:5eykt4UsFv8P8NJdTREpY1vzqKqZKvdp", + "events": [ + { + "status": "confirmed", + "timestamp": 1747335377 + } + ], + "fees": [ + { + "asset": { + "amount": "0.000005", + "fungible": true, + "type": "solana:5eykt4UsFv8P8NJdTREpY1vzqKqZKvdp/slip44:501", + "unit": "SOL" + }, + "type": "base" + }, + { + "asset": { + "amount": "0.000070171", + "fungible": true, + "type": "solana:5eykt4UsFv8P8NJdTREpY1vzqKqZKvdp/slip44:501", + "unit": "SOL" + }, + "type": "priority" + } + ], + "from": [ + { + "address": "CyGir7UdxRCsNXkA89qH1P5p3Zhx11XxsE97WSfNMnLT", + "asset": { + "amount": "0.03207408", + "fungible": true, + "type": "solana:5eykt4UsFv8P8NJdTREpY1vzqKqZKvdp/slip44:501", + "unit": "SOL" + } + } + ], + "id": "33LfknAQsrLC1WzmNybkZWUtuGANRFHNupsQ1YLCnjXGXxbBE93BbVTeKLLdE7Sz3WUdxnFW5HQhPuUayrXyqWky", + "status": "confirmed", + "timestamp": 1747335377, + "to": [ + { + "address": "CyGir7UdxRCsNXkA89qH1P5p3Zhx11XxsE97WSfNMnLT", + "asset": { + "amount": "16.403260987", + "fungible": true, + "type": "solana:5eykt4UsFv8P8NJdTREpY1vzqKqZKvdp/token:HeLp6NuQkmYB4pYWo2zYs22mESHXPQYzXbB8n4V98jwC", + "unit": "AI16Z" + } + } + ], + "type": "swap" + }, + { + "account": "076cbb47-1752-40b0-9314-1f07e7b88ffa", + "chain": "solana:5eykt4UsFv8P8NJdTREpY1vzqKqZKvdp", + "events": [ + { + "status": "confirmed", + "timestamp": 1740630423 + } + ], + "fees": [], + "from": [ + { + "address": "8vq5YU8j3MxgpPMUm1EaAUopikLRzRK8Yf4TNGerF7kL", + "asset": { + "amount": "5.766548", + "fungible": true, + "type": "solana:5eykt4UsFv8P8NJdTREpY1vzqKqZKvdp/token:JUPyiwrYJFskUPiHa7hkeR8VUtAeFoSYbKedZNsDvCN", + "unit": "JUP" + } + }, + { + "address": "B88xH3Jmhq4WEaiRno2mYmsxV35MmgSY45ZmQnbL8yft", + "asset": { + "amount": "0.0005", + "fungible": true, + "type": "solana:5eykt4UsFv8P8NJdTREpY1vzqKqZKvdp/slip44:501", + "unit": "SOL" + } + }, + { + "address": "Ax6pwfMfn2gnvLqePhp6PEbwhMb7oMdquYX8g6atYNUo", + "asset": { + "amount": "0.00203928", + "fungible": true, + "type": "solana:5eykt4UsFv8P8NJdTREpY1vzqKqZKvdp/slip44:501", + "unit": "SOL" + } + } + ], + "id": "5YA8oS1WfrPzZDUt8Pj77NtkbYvx5yVCToDgA1ZzsoAtfuhbzG798GRMf47WknPL1xkD4NNb7cHQW3wER2CNdQfT", + "status": "confirmed", + "timestamp": 1740630423, + "to": [ + { + "address": "CyGir7UdxRCsNXkA89qH1P5p3Zhx11XxsE97WSfNMnLT", + "asset": { + "amount": "5.764819", + "fungible": true, + "type": "solana:5eykt4UsFv8P8NJdTREpY1vzqKqZKvdp/token:JUPyiwrYJFskUPiHa7hkeR8VUtAeFoSYbKedZNsDvCN", + "unit": "JUP" + } + } + ], + "type": "receive" + } + ], + "next": null, + "lastUpdated": 1779126365691 + } + }, + "1a14e831-0c2c-46ce-8e2b-d7d53cbefb63": {}, + "1c2440b0-d05e-4b07-881c-ebb9bce2bbb7": {}, + "1dd2b0a9-a1ea-4308-92e8-303665fd25c5": {}, + "23ce192d-62e7-4d4f-a168-93ae18dc915d": {}, + "2858af66-a9cd-456a-b29c-f2f5148a5ac8": {}, + "3d26ef67-6870-4750-af80-bce53fa4a0af": {}, + "3d379cac-eb60-4b45-8374-370aac2b76c5": {}, + "44ca98ce-b819-4e06-b651-ba146dbe22c1": {}, + "55fe5095-3194-42c2-81d3-5701dcad1924": { + "solana:5eykt4UsFv8P8NJdTREpY1vzqKqZKvdp": { + "lastUpdated": 1778721518793, + "next": null, + "transactions": [ + { + "account": "55fe5095-3194-42c2-81d3-5701dcad1924", + "chain": "solana:5eykt4UsFv8P8NJdTREpY1vzqKqZKvdp", + "events": [ + { + "status": "confirmed", + "timestamp": 1775567131 + } + ], + "fees": [ + { + "asset": { + "amount": "0.000005", + "fungible": true, + "type": "solana:5eykt4UsFv8P8NJdTREpY1vzqKqZKvdp/slip44:501", + "unit": "SOL" + }, + "type": "base" + }, + { + "asset": { + "amount": "0.0000203", + "fungible": true, + "type": "solana:5eykt4UsFv8P8NJdTREpY1vzqKqZKvdp/slip44:501", + "unit": "SOL" + }, + "type": "priority" + } + ], + "from": [], + "id": "4obUTVEN77oMZnL9u9CntDciwfCEYx4Pdhk7Rqw6UfTLnMMuEUuswafGNfZ8PH9o3pj6LY1krgCcsbzm7d7Vm78w", + "status": "confirmed", + "timestamp": 1775567131, + "to": [], + "type": "unknown" + }, + { + "account": "55fe5095-3194-42c2-81d3-5701dcad1924", + "chain": "solana:5eykt4UsFv8P8NJdTREpY1vzqKqZKvdp", + "events": [ + { + "status": "confirmed", + "timestamp": 1775524996 + } + ], + "fees": [ + { + "asset": { + "amount": "0.000005", + "fungible": true, + "type": "solana:5eykt4UsFv8P8NJdTREpY1vzqKqZKvdp/slip44:501", + "unit": "SOL" + }, + "type": "base" + }, + { + "asset": { + "amount": "0.0000203", + "fungible": true, + "type": "solana:5eykt4UsFv8P8NJdTREpY1vzqKqZKvdp/slip44:501", + "unit": "SOL" + }, + "type": "priority" + } + ], + "from": [], + "id": "31pu5QbRtkYJwDNMLwnwMCbeKaPQGQtfv8oV9G4Hh4qL4FfiVoNdugdw8v4DbYJpjS6cwdbQtZYqtayKi2TXaXu2", + "status": "confirmed", + "timestamp": 1775524996, + "to": [], + "type": "unknown" + }, + { + "account": "55fe5095-3194-42c2-81d3-5701dcad1924", + "chain": "solana:5eykt4UsFv8P8NJdTREpY1vzqKqZKvdp", + "events": [ + { + "status": "confirmed", + "timestamp": 1775518451 + } + ], + "fees": [ + { + "asset": { + "amount": "0.000005", + "fungible": true, + "type": "solana:5eykt4UsFv8P8NJdTREpY1vzqKqZKvdp/slip44:501", + "unit": "SOL" + }, + "type": "base" + }, + { + "asset": { + "amount": "0.0000203", + "fungible": true, + "type": "solana:5eykt4UsFv8P8NJdTREpY1vzqKqZKvdp/slip44:501", + "unit": "SOL" + }, + "type": "priority" + } + ], + "from": [], + "id": "31PBWBX9uZBVWzv8aHY3kSm5xV3YvHVXahbb85GAkrU62KViDymRVxKJxC9vYc5jPN8GM86WRfrwUu8VxdQd4rq", + "status": "confirmed", + "timestamp": 1775518451, + "to": [], + "type": "unknown" + }, + { + "account": "55fe5095-3194-42c2-81d3-5701dcad1924", + "chain": "solana:5eykt4UsFv8P8NJdTREpY1vzqKqZKvdp", + "events": [ + { + "status": "confirmed", + "timestamp": 1774368795 + } + ], + "fees": [ + { + "asset": { + "amount": "0.000005", + "fungible": true, + "type": "solana:5eykt4UsFv8P8NJdTREpY1vzqKqZKvdp/slip44:501", + "unit": "SOL" + }, + "type": "base" + }, + { + "asset": { + "amount": "0.000009926", + "fungible": true, + "type": "solana:5eykt4UsFv8P8NJdTREpY1vzqKqZKvdp/slip44:501", + "unit": "SOL" + }, + "type": "priority" + } + ], + "from": [ + { + "address": "8jKM7u4xsyvDpnqL5DQMVrh8AXxZKJPKJw5QsM7KEF8J", + "asset": { + "amount": "12.195221", + "fungible": true, + "type": "solana:5eykt4UsFv8P8NJdTREpY1vzqKqZKvdp/token:EPjFWdd5AufqSSqeM2qN1xzybapC8G4wEGGkZwyTDt1v", + "unit": "USDC" + } + } + ], + "id": "25hxmUkG1mx2BpuD17BWD1caSddVhyPqmqjsgDiajkBni5gij3fXgDfasgqrGwfTtsjQU1eWZ1RH7uwPwkJPnYkY", + "status": "confirmed", + "timestamp": 1774368795, + "to": [ + { + "address": "47YRE7eLAdYzvGqSH1XLg2o8xUtywk7sS5BKv1oR4Y7i", + "asset": { + "amount": "0.106708", + "fungible": true, + "type": "solana:5eykt4UsFv8P8NJdTREpY1vzqKqZKvdp/token:EPjFWdd5AufqSSqeM2qN1xzybapC8G4wEGGkZwyTDt1v", + "unit": "USDC" + } + }, + { + "address": "7uTT8Xi5RWXzy7h9XL244GRgEycDYDhLjr3ZyNdXi8pZ", + "asset": { + "amount": "12.088513", + "fungible": true, + "type": "solana:5eykt4UsFv8P8NJdTREpY1vzqKqZKvdp/token:EPjFWdd5AufqSSqeM2qN1xzybapC8G4wEGGkZwyTDt1v", + "unit": "USDC" + } + } + ], + "type": "send" + }, + { + "account": "55fe5095-3194-42c2-81d3-5701dcad1924", + "chain": "solana:5eykt4UsFv8P8NJdTREpY1vzqKqZKvdp", + "events": [ + { + "status": "confirmed", + "timestamp": 1774368772 + } + ], + "fees": [ + { + "asset": { + "amount": "0.000005", + "fungible": true, + "type": "solana:5eykt4UsFv8P8NJdTREpY1vzqKqZKvdp/slip44:501", + "unit": "SOL" + }, + "type": "base" + }, + { + "asset": { + "amount": "0.000000986", + "fungible": true, + "type": "solana:5eykt4UsFv8P8NJdTREpY1vzqKqZKvdp/slip44:501", + "unit": "SOL" + }, + "type": "priority" + } + ], + "from": [ + { + "address": "8jKM7u4xsyvDpnqL5DQMVrh8AXxZKJPKJw5QsM7KEF8J", + "asset": { + "amount": "0.03", + "fungible": true, + "type": "solana:5eykt4UsFv8P8NJdTREpY1vzqKqZKvdp/slip44:501", + "unit": "SOL" + } + } + ], + "id": "4BKsWpMNQu22sd3K4LYip1mja72hmi1ovrPNw9yfppvz6PPLvrXdjBQeuxqMP8QEMytj7yW3ioMF7hBWQHc5EhR", + "status": "confirmed", + "timestamp": 1774368772, + "to": [ + { + "address": "47YRE7eLAdYzvGqSH1XLg2o8xUtywk7sS5BKv1oR4Y7i", + "asset": { + "amount": "0.0002625", + "fungible": true, + "type": "solana:5eykt4UsFv8P8NJdTREpY1vzqKqZKvdp/slip44:501", + "unit": "SOL" + } + }, + { + "address": "HSDZnRgcdKboym7ghucEKvhqJ3ZQJZkaruWaHKXZLLrg", + "asset": { + "amount": "0.0297375", + "fungible": true, + "type": "solana:5eykt4UsFv8P8NJdTREpY1vzqKqZKvdp/slip44:501", + "unit": "SOL" + } + } + ], + "type": "send" + }, + { + "account": "55fe5095-3194-42c2-81d3-5701dcad1924", + "chain": "solana:5eykt4UsFv8P8NJdTREpY1vzqKqZKvdp", + "events": [ + { + "status": "confirmed", + "timestamp": 1774368739 + } + ], + "fees": [], + "from": [ + { + "address": "E4bX4nCwe2GcKqt9NpofnXVrCeRp37PAMaiZtV9x3kxC", + "asset": { + "amount": "11.152977", + "fungible": true, + "type": "solana:5eykt4UsFv8P8NJdTREpY1vzqKqZKvdp/token:EPjFWdd5AufqSSqeM2qN1xzybapC8G4wEGGkZwyTDt1v", + "unit": "USDC" + } + }, + { + "address": "E4bX4nCwe2GcKqt9NpofnXVrCeRp37PAMaiZtV9x3kxC", + "asset": { + "amount": "0.00120408", + "fungible": true, + "type": "solana:5eykt4UsFv8P8NJdTREpY1vzqKqZKvdp/slip44:501", + "unit": "SOL" + } + } + ], + "id": "5cxkuveQ2pQi9RA99gfHZSrG1HCGdyVVn7VDBUTbiTqqwkKuRFcMmfEDwr1jNRAVY9ubh4Dr4yf9cCZ4uPoUGAeV", + "status": "confirmed", + "timestamp": 1774368739, + "to": [ + { + "address": "8jKM7u4xsyvDpnqL5DQMVrh8AXxZKJPKJw5QsM7KEF8J", + "asset": { + "amount": "11.152977", + "fungible": true, + "type": "solana:5eykt4UsFv8P8NJdTREpY1vzqKqZKvdp/token:EPjFWdd5AufqSSqeM2qN1xzybapC8G4wEGGkZwyTDt1v", + "unit": "USDC" + } + } + ], + "type": "receive" + }, + { + "account": "55fe5095-3194-42c2-81d3-5701dcad1924", + "chain": "solana:5eykt4UsFv8P8NJdTREpY1vzqKqZKvdp", + "events": [ + { + "status": "confirmed", + "timestamp": 1773674032 + } + ], + "fees": [ + { + "asset": { + "amount": "0.000005", + "fungible": true, + "type": "solana:5eykt4UsFv8P8NJdTREpY1vzqKqZKvdp/slip44:501", + "unit": "SOL" + }, + "type": "base" + }, + { + "asset": { + "amount": "0.0000203", + "fungible": true, + "type": "solana:5eykt4UsFv8P8NJdTREpY1vzqKqZKvdp/slip44:501", + "unit": "SOL" + }, + "type": "priority" + } + ], + "from": [], + "id": "2L7xeCALqhhG6kkwymTxugPL3TVKcdSouewxZaDnUu5YuX3dHvFGaxnLfNjqNGRQz74rKcvmLYDYdNojCYyozDs1", + "status": "confirmed", + "timestamp": 1773674032, + "to": [], + "type": "unknown" + }, + { + "account": "55fe5095-3194-42c2-81d3-5701dcad1924", + "chain": "solana:5eykt4UsFv8P8NJdTREpY1vzqKqZKvdp", + "events": [ + { + "status": "confirmed", + "timestamp": 1772733298 + } + ], + "fees": [ + { + "asset": { + "amount": "0.000005", + "fungible": true, + "type": "solana:5eykt4UsFv8P8NJdTREpY1vzqKqZKvdp/slip44:501", + "unit": "SOL" + }, + "type": "base" + }, + { + "asset": { + "amount": "0.000015613", + "fungible": true, + "type": "solana:5eykt4UsFv8P8NJdTREpY1vzqKqZKvdp/slip44:501", + "unit": "SOL" + }, + "type": "priority" + } + ], + "from": [ + { + "address": "8jKM7u4xsyvDpnqL5DQMVrh8AXxZKJPKJw5QsM7KEF8J", + "asset": { + "amount": "1", + "fungible": true, + "type": "solana:5eykt4UsFv8P8NJdTREpY1vzqKqZKvdp/token:EPjFWdd5AufqSSqeM2qN1xzybapC8G4wEGGkZwyTDt1v", + "unit": "USDC" + } + } + ], + "id": "5wb4bfBRr9AZ113FoTf3euyqQN7SuVASVJta4Z36puZtnuuw2YTLKLGpzC33t83DDsiFrkZrB1JyRQYc94PvW1HB", + "status": "confirmed", + "timestamp": 1772733298, + "to": [ + { + "address": "8jKM7u4xsyvDpnqL5DQMVrh8AXxZKJPKJw5QsM7KEF8J", + "asset": { + "amount": "0.011232718", + "fungible": true, + "type": "solana:5eykt4UsFv8P8NJdTREpY1vzqKqZKvdp/slip44:501", + "unit": "SOL" + } + } + ], + "type": "swap" + }, + { + "account": "55fe5095-3194-42c2-81d3-5701dcad1924", + "chain": "solana:5eykt4UsFv8P8NJdTREpY1vzqKqZKvdp", + "events": [ + { + "status": "confirmed", + "timestamp": 1772483631 + } + ], + "fees": [ + { + "asset": { + "amount": "0.000005", + "fungible": true, + "type": "solana:5eykt4UsFv8P8NJdTREpY1vzqKqZKvdp/slip44:501", + "unit": "SOL" + }, + "type": "base" + }, + { + "asset": { + "amount": "0.000003267", + "fungible": true, + "type": "solana:5eykt4UsFv8P8NJdTREpY1vzqKqZKvdp/slip44:501", + "unit": "SOL" + }, + "type": "priority" + } + ], + "from": [ + { + "address": "8jKM7u4xsyvDpnqL5DQMVrh8AXxZKJPKJw5QsM7KEF8J", + "asset": { + "amount": "0.01", + "fungible": true, + "type": "solana:5eykt4UsFv8P8NJdTREpY1vzqKqZKvdp/slip44:501", + "unit": "SOL" + } + } + ], + "id": "Va1aa2KFEbR9dQomfVhRA2cFaEtHVp7NdDzUyVcmJFfr7qJc8kRp7x41uKb6gfJUSvSD6osnrevbV8oNYm6AbWs", + "status": "confirmed", + "timestamp": 1772483631, + "to": [ + { + "address": "47YRE7eLAdYzvGqSH1XLg2o8xUtywk7sS5BKv1oR4Y7i", + "asset": { + "amount": "0.0000875", + "fungible": true, + "type": "solana:5eykt4UsFv8P8NJdTREpY1vzqKqZKvdp/slip44:501", + "unit": "SOL" + } + }, + { + "address": "7uTT8Xi5RWXzy7h9XL244GRgEycDYDhLjr3ZyNdXi8pZ", + "asset": { + "amount": "0.0099125", + "fungible": true, + "type": "solana:5eykt4UsFv8P8NJdTREpY1vzqKqZKvdp/slip44:501", + "unit": "SOL" + } + } + ], + "type": "send" + }, + { + "account": "55fe5095-3194-42c2-81d3-5701dcad1924", + "chain": "solana:5eykt4UsFv8P8NJdTREpY1vzqKqZKvdp", + "events": [ + { + "status": "confirmed", + "timestamp": 1772233537 + } + ], + "fees": [], + "from": [ + { + "address": "F7p3dFrjRTbtRp8FRF6qHLomXbKRBzpvBLjtQcfcgmNe", + "asset": { + "amount": "1.160336", + "fungible": true, + "type": "solana:5eykt4UsFv8P8NJdTREpY1vzqKqZKvdp/token:EPjFWdd5AufqSSqeM2qN1xzybapC8G4wEGGkZwyTDt1v", + "unit": "USDC" + } + } + ], + "id": "2LkkGji2aqRy24v5Tr582PwUZbuJvTxK97wde7KB7Hzf1efZiHpSwdXNSZvu9Mpyb28yoqnk6W79xfVssyBmytzr", + "status": "confirmed", + "timestamp": 1772233537, + "to": [ + { + "address": "8jKM7u4xsyvDpnqL5DQMVrh8AXxZKJPKJw5QsM7KEF8J", + "asset": { + "amount": "1.160336", + "fungible": true, + "type": "solana:5eykt4UsFv8P8NJdTREpY1vzqKqZKvdp/token:EPjFWdd5AufqSSqeM2qN1xzybapC8G4wEGGkZwyTDt1v", + "unit": "USDC" + } + } + ], + "type": "receive" + }, + { + "account": "55fe5095-3194-42c2-81d3-5701dcad1924", + "chain": "solana:5eykt4UsFv8P8NJdTREpY1vzqKqZKvdp", + "events": [ + { + "status": "confirmed", + "timestamp": 1772221243 + } + ], + "fees": [ + { + "asset": { + "amount": "0.000005", + "fungible": true, + "type": "solana:5eykt4UsFv8P8NJdTREpY1vzqKqZKvdp/slip44:501", + "unit": "SOL" + }, + "type": "base" + }, + { + "asset": { + "amount": "0.000002255", + "fungible": true, + "type": "solana:5eykt4UsFv8P8NJdTREpY1vzqKqZKvdp/slip44:501", + "unit": "SOL" + }, + "type": "priority" + } + ], + "from": [ + { + "address": "8jKM7u4xsyvDpnqL5DQMVrh8AXxZKJPKJw5QsM7KEF8J", + "asset": { + "amount": "0.01", + "fungible": true, + "type": "solana:5eykt4UsFv8P8NJdTREpY1vzqKqZKvdp/slip44:501", + "unit": "SOL" + } + } + ], + "id": "3mm2UQ6WzKALFAenzJffNxMS85dEtNgyBufsQ9CLe6hL8SAwupbY9cWqGTr8sj8GtqQYmbAXhgJNBwhmaqMZ2an5", + "status": "confirmed", + "timestamp": 1772221243, + "to": [ + { + "address": "47YRE7eLAdYzvGqSH1XLg2o8xUtywk7sS5BKv1oR4Y7i", + "asset": { + "amount": "0.0000875", + "fungible": true, + "type": "solana:5eykt4UsFv8P8NJdTREpY1vzqKqZKvdp/slip44:501", + "unit": "SOL" + } + }, + { + "address": "7uTT8Xi5RWXzy7h9XL244GRgEycDYDhLjr3ZyNdXi8pZ", + "asset": { + "amount": "0.0099125", + "fungible": true, + "type": "solana:5eykt4UsFv8P8NJdTREpY1vzqKqZKvdp/slip44:501", + "unit": "SOL" + } + } + ], + "type": "send" + }, + { + "account": "55fe5095-3194-42c2-81d3-5701dcad1924", + "chain": "solana:5eykt4UsFv8P8NJdTREpY1vzqKqZKvdp", + "events": [ + { + "status": "confirmed", + "timestamp": 1772221193 + } + ], + "fees": [ + { + "asset": { + "amount": "0.000005", + "fungible": true, + "type": "solana:5eykt4UsFv8P8NJdTREpY1vzqKqZKvdp/slip44:501", + "unit": "SOL" + }, + "type": "base" + }, + { + "asset": { + "amount": "0.000001349", + "fungible": true, + "type": "solana:5eykt4UsFv8P8NJdTREpY1vzqKqZKvdp/slip44:501", + "unit": "SOL" + }, + "type": "priority" + } + ], + "from": [ + { + "address": "8jKM7u4xsyvDpnqL5DQMVrh8AXxZKJPKJw5QsM7KEF8J", + "asset": { + "amount": "0.001", + "fungible": true, + "type": "solana:5eykt4UsFv8P8NJdTREpY1vzqKqZKvdp/slip44:501", + "unit": "SOL" + } + } + ], + "id": "2U8HzdTkKqtGYLSkPzx86kSSuW3DsEKQWe2nnBXFHw1ZfL5q6dDwKNBZCuesPXShvTG6SADEFSHWiZzfhHpNBgUo", + "status": "confirmed", + "timestamp": 1772221193, + "to": [ + { + "address": "47YRE7eLAdYzvGqSH1XLg2o8xUtywk7sS5BKv1oR4Y7i", + "asset": { + "amount": "0.00000875", + "fungible": true, + "type": "solana:5eykt4UsFv8P8NJdTREpY1vzqKqZKvdp/slip44:501", + "unit": "SOL" + } + }, + { + "address": "7uTT8Xi5RWXzy7h9XL244GRgEycDYDhLjr3ZyNdXi8pZ", + "asset": { + "amount": "0.00099125", + "fungible": true, + "type": "solana:5eykt4UsFv8P8NJdTREpY1vzqKqZKvdp/slip44:501", + "unit": "SOL" + } + } + ], + "type": "send" + }, + { + "account": "55fe5095-3194-42c2-81d3-5701dcad1924", + "chain": "solana:5eykt4UsFv8P8NJdTREpY1vzqKqZKvdp", + "events": [ + { + "status": "confirmed", + "timestamp": 1772130665 + } + ], + "fees": [], + "from": [ + { + "address": "F7p3dFrjRTbtRp8FRF6qHLomXbKRBzpvBLjtQcfcgmNe", + "asset": { + "amount": "0.037638862", + "fungible": true, + "type": "solana:5eykt4UsFv8P8NJdTREpY1vzqKqZKvdp/slip44:501", + "unit": "SOL" + } + } + ], + "id": "64rfL2PBGYVM5gdtwCBEXfNtn1LYtiNueAtZ9pzFFcbMrq1KSd6GXNJiKx1R8UBywG94k1W5fNvEjxGnhbAYhu78", + "status": "confirmed", + "timestamp": 1772130665, + "to": [ + { + "address": "8jKM7u4xsyvDpnqL5DQMVrh8AXxZKJPKJw5QsM7KEF8J", + "asset": { + "amount": "0.037638862", + "fungible": true, + "type": "solana:5eykt4UsFv8P8NJdTREpY1vzqKqZKvdp/slip44:501", + "unit": "SOL" + } + } + ], + "type": "receive" + }, + { + "account": "55fe5095-3194-42c2-81d3-5701dcad1924", + "chain": "solana:5eykt4UsFv8P8NJdTREpY1vzqKqZKvdp", + "events": [ + { + "status": "confirmed", + "timestamp": 1772069017 + } + ], + "fees": [ + { + "asset": { + "amount": "0.000005", + "fungible": true, + "type": "solana:5eykt4UsFv8P8NJdTREpY1vzqKqZKvdp/slip44:501", + "unit": "SOL" + }, + "type": "base" + } + ], + "from": [], + "id": "45bvty9hScYb7dVNzrnZ5X8uxrmdv1rxaxqnesumXox5YxU9feBBdQSnezdhuwFfuXDY68N6MiQrrKMQ1Jom2Hbo", + "status": "confirmed", + "timestamp": 1772069017, + "to": [], + "type": "unknown" + }, + { + "account": "55fe5095-3194-42c2-81d3-5701dcad1924", + "chain": "solana:5eykt4UsFv8P8NJdTREpY1vzqKqZKvdp", + "events": [ + { + "status": "confirmed", + "timestamp": 1772068999 + } + ], + "fees": [ + { + "asset": { + "amount": "0.000005", + "fungible": true, + "type": "solana:5eykt4UsFv8P8NJdTREpY1vzqKqZKvdp/slip44:501", + "unit": "SOL" + }, + "type": "base" + }, + { + "asset": { + "amount": "0.00002951", + "fungible": true, + "type": "solana:5eykt4UsFv8P8NJdTREpY1vzqKqZKvdp/slip44:501", + "unit": "SOL" + }, + "type": "priority" + } + ], + "from": [ + { + "address": "AZEKRYWew6zAyoksytTeBFJRHyYdwycPMBn1P2QgfDpQ", + "asset": { + "amount": "0.880624", + "fungible": true, + "type": "solana:5eykt4UsFv8P8NJdTREpY1vzqKqZKvdp/token:EPjFWdd5AufqSSqeM2qN1xzybapC8G4wEGGkZwyTDt1v", + "unit": "USDC" + } + }, + { + "address": "8jKM7u4xsyvDpnqL5DQMVrh8AXxZKJPKJw5QsM7KEF8J", + "asset": { + "amount": "0.01457968", + "fungible": true, + "type": "solana:5eykt4UsFv8P8NJdTREpY1vzqKqZKvdp/slip44:501", + "unit": "SOL" + } + } + ], + "id": "zdKqYEzqVuX1sWhU2FFzdj3WG5H8ynQQK84h3qbhQVjF7Gn7gH9gJZjEci8iXFebJymXWstYFQ1hPQyqks2BMaX", + "status": "confirmed", + "timestamp": 1772068999, + "to": [ + { + "address": "AZEKRYWew6zAyoksytTeBFJRHyYdwycPMBn1P2QgfDpQ", + "asset": { + "amount": "0.0099125", + "fungible": true, + "type": "solana:5eykt4UsFv8P8NJdTREpY1vzqKqZKvdp/token:So11111111111111111111111111111111111111112", + "unit": "" + } + }, + { + "address": "2phX1dsgdGbGvygx6pDG9RGNZ1Jk9ALufhbFV9Ps3rYA", + "asset": { + "amount": "0.880624", + "fungible": true, + "type": "solana:5eykt4UsFv8P8NJdTREpY1vzqKqZKvdp/token:EPjFWdd5AufqSSqeM2qN1xzybapC8G4wEGGkZwyTDt1v", + "unit": "USDC" + } + }, + { + "address": "2phX1dsgdGbGvygx6pDG9RGNZ1Jk9ALufhbFV9Ps3rYA", + "asset": { + "amount": "0.0025404", + "fungible": true, + "type": "solana:5eykt4UsFv8P8NJdTREpY1vzqKqZKvdp/slip44:501", + "unit": "SOL" + } + }, + { + "address": "47YRE7eLAdYzvGqSH1XLg2o8xUtywk7sS5BKv1oR4Y7i", + "asset": { + "amount": "0.0000875", + "fungible": true, + "type": "solana:5eykt4UsFv8P8NJdTREpY1vzqKqZKvdp/slip44:501", + "unit": "SOL" + } + }, + { + "address": "4ddHyNeBSNXmhNAcFTgGVKMye1BX3Su75FFXfD39QG3d", + "asset": { + "amount": "0.00203928", + "fungible": true, + "type": "solana:5eykt4UsFv8P8NJdTREpY1vzqKqZKvdp/slip44:501", + "unit": "SOL" + } + }, + { + "address": "LNgaY8wE76tVikn1fyexrxgr2D4CAKy1LLhCE3B2ZWp", + "asset": { + "amount": "0.0099125", + "fungible": true, + "type": "solana:5eykt4UsFv8P8NJdTREpY1vzqKqZKvdp/slip44:501", + "unit": "SOL" + } + } + ], + "type": "send" + }, + { + "account": "55fe5095-3194-42c2-81d3-5701dcad1924", + "chain": "solana:5eykt4UsFv8P8NJdTREpY1vzqKqZKvdp", + "events": [ + { + "status": "confirmed", + "timestamp": 1772068976 + } + ], + "fees": [], + "from": [ + { + "address": "2DsBrZi5MwiPgJDJjd1yYs8kAUQsEHY6W5okPHhZf5vg", + "asset": { + "amount": "0.01161656", + "fungible": true, + "type": "solana:5eykt4UsFv8P8NJdTREpY1vzqKqZKvdp/token:So11111111111111111111111111111111111111112", + "unit": "" + } + }, + { + "address": "CD4ZRZALgKHJ8N5QQMg5RM8snrke6Mxv3Ey4FhFzFnpg", + "asset": { + "amount": "0.01365584", + "fungible": true, + "type": "solana:5eykt4UsFv8P8NJdTREpY1vzqKqZKvdp/slip44:501", + "unit": "SOL" + } + } + ], + "id": "2uftikMEvPCTREfP2JmfoYZb3ugEFuKchZyDCeePdV1monaNp2Mn4ewK9E2yYrFKTwttiWomh9rnUAsqvqTQvMbC", + "status": "confirmed", + "timestamp": 1772068976, + "to": [ + { + "address": "8jKM7u4xsyvDpnqL5DQMVrh8AXxZKJPKJw5QsM7KEF8J", + "asset": { + "amount": "0.011613076", + "fungible": true, + "type": "solana:5eykt4UsFv8P8NJdTREpY1vzqKqZKvdp/slip44:501", + "unit": "SOL" + } + } + ], + "type": "receive" + }, + { + "account": "55fe5095-3194-42c2-81d3-5701dcad1924", + "chain": "solana:5eykt4UsFv8P8NJdTREpY1vzqKqZKvdp", + "events": [ + { + "status": "confirmed", + "timestamp": 1772068975 + } + ], + "fees": [], + "from": [ + { + "address": "GnWFhrfgciKVoqgAqarwWEQ79NuD2LnRd9EEYaB1kUoc", + "asset": { + "amount": "1.03222", + "fungible": true, + "type": "solana:5eykt4UsFv8P8NJdTREpY1vzqKqZKvdp/token:EPjFWdd5AufqSSqeM2qN1xzybapC8G4wEGGkZwyTDt1v", + "unit": "USDC" + } + }, + { + "address": "51FQwjrvo8J8zXUaKyAznJ5NYpoiTCuqAqCu3HAMB9NZ", + "asset": { + "amount": "0.01161656", + "fungible": true, + "type": "solana:5eykt4UsFv8P8NJdTREpY1vzqKqZKvdp/token:So11111111111111111111111111111111111111112", + "unit": "" + } + }, + { + "address": "FxGiN5NkigicwrnFshZEAUH9C13yrBALmgYxA9x8sfnQ", + "asset": { + "amount": "0.01161656", + "fungible": true, + "type": "solana:5eykt4UsFv8P8NJdTREpY1vzqKqZKvdp/slip44:501", + "unit": "SOL" + } + } + ], + "id": "2diNRdox3fz9of4hzs39soXZvrZZ9dkjT4m7Hiy7aFuKqdLzuZZFTWLRgbvhsFXrKaRZNDwvt2LSi4rq2QyTnwoW", + "status": "confirmed", + "timestamp": 1772068975, + "to": [], + "type": "receive" + }, + { + "account": "55fe5095-3194-42c2-81d3-5701dcad1924", + "chain": "solana:5eykt4UsFv8P8NJdTREpY1vzqKqZKvdp", + "events": [ + { + "status": "confirmed", + "timestamp": 1772068901 + } + ], + "fees": [ + { + "asset": { + "amount": "0.000005", + "fungible": true, + "type": "solana:5eykt4UsFv8P8NJdTREpY1vzqKqZKvdp/slip44:501", + "unit": "SOL" + }, + "type": "base" + }, + { + "asset": { + "amount": "0.000028773", + "fungible": true, + "type": "solana:5eykt4UsFv8P8NJdTREpY1vzqKqZKvdp/slip44:501", + "unit": "SOL" + }, + "type": "priority" + } + ], + "from": [ + { + "address": "8jKM7u4xsyvDpnqL5DQMVrh8AXxZKJPKJw5QsM7KEF8J", + "asset": { + "amount": "0.01", + "fungible": true, + "type": "solana:5eykt4UsFv8P8NJdTREpY1vzqKqZKvdp/slip44:501", + "unit": "SOL" + } + } + ], + "id": "J9k7H8Moe4ZAnt6ALqHtL9UFFxjKEG9ey5Ev6V5ehVcq7Bp7ML1QiD1pYoLqDSsBWx9p5KRoDL4a27sVFYVD1ej", + "status": "confirmed", + "timestamp": 1772068901, + "to": [ + { + "address": "8jKM7u4xsyvDpnqL5DQMVrh8AXxZKJPKJw5QsM7KEF8J", + "asset": { + "amount": "0.881908", + "fungible": true, + "type": "solana:5eykt4UsFv8P8NJdTREpY1vzqKqZKvdp/token:EPjFWdd5AufqSSqeM2qN1xzybapC8G4wEGGkZwyTDt1v", + "unit": "USDC" + } + } + ], + "type": "swap" + }, + { + "account": "55fe5095-3194-42c2-81d3-5701dcad1924", + "chain": "solana:5eykt4UsFv8P8NJdTREpY1vzqKqZKvdp", + "events": [ + { + "status": "confirmed", + "timestamp": 1772068890 + } + ], + "fees": [ + { + "asset": { + "amount": "0.000005", + "fungible": true, + "type": "solana:5eykt4UsFv8P8NJdTREpY1vzqKqZKvdp/slip44:501", + "unit": "SOL" + }, + "type": "base" + }, + { + "asset": { + "amount": "0.000018912", + "fungible": true, + "type": "solana:5eykt4UsFv8P8NJdTREpY1vzqKqZKvdp/slip44:501", + "unit": "SOL" + }, + "type": "priority" + } + ], + "from": [ + { + "address": "8jKM7u4xsyvDpnqL5DQMVrh8AXxZKJPKJw5QsM7KEF8J", + "asset": { + "amount": "1.162623", + "fungible": true, + "type": "solana:5eykt4UsFv8P8NJdTREpY1vzqKqZKvdp/token:EPjFWdd5AufqSSqeM2qN1xzybapC8G4wEGGkZwyTDt1v", + "unit": "USDC" + } + } + ], + "id": "4o7GuVLKDzWX7TFrrtwbz8TZ4k2JUo5mxVub12qvoCKqCDt5gPbwuGAcG5sk8qtYpK6jWrg4HAVcci4Jb7rKCEhp", + "status": "confirmed", + "timestamp": 1772068890, + "to": [ + { + "address": "8jKM7u4xsyvDpnqL5DQMVrh8AXxZKJPKJw5QsM7KEF8J", + "asset": { + "amount": "0.012939875", + "fungible": true, + "type": "solana:5eykt4UsFv8P8NJdTREpY1vzqKqZKvdp/slip44:501", + "unit": "SOL" + } + } + ], + "type": "swap" + }, + { + "account": "55fe5095-3194-42c2-81d3-5701dcad1924", + "chain": "solana:5eykt4UsFv8P8NJdTREpY1vzqKqZKvdp", + "events": [ + { + "status": "confirmed", + "timestamp": 1770149607 + } + ], + "fees": [ + { + "asset": { + "amount": "0.000005", + "fungible": true, + "type": "solana:5eykt4UsFv8P8NJdTREpY1vzqKqZKvdp/slip44:501", + "unit": "SOL" + }, + "type": "base" + }, + { + "asset": { + "amount": "0.000003665", + "fungible": true, + "type": "solana:5eykt4UsFv8P8NJdTREpY1vzqKqZKvdp/slip44:501", + "unit": "SOL" + }, + "type": "priority" + } + ], + "from": [ + { + "address": "8jKM7u4xsyvDpnqL5DQMVrh8AXxZKJPKJw5QsM7KEF8J", + "asset": { + "amount": "0.03", + "fungible": true, + "type": "solana:5eykt4UsFv8P8NJdTREpY1vzqKqZKvdp/slip44:501", + "unit": "SOL" + } + } + ], + "id": "2uTk53wMAd4YohmLiHk99GcyYUj3e7BUZBshqZMJt4UXYT74zRCq95MFmyc4SNuknxsNe8rLr8pTE7cyHQBNyRxi", + "status": "confirmed", + "timestamp": 1770149607, + "to": [ + { + "address": "47YRE7eLAdYzvGqSH1XLg2o8xUtywk7sS5BKv1oR4Y7i", + "asset": { + "amount": "0.0002625", + "fungible": true, + "type": "solana:5eykt4UsFv8P8NJdTREpY1vzqKqZKvdp/slip44:501", + "unit": "SOL" + } + }, + { + "address": "F7p3dFrjRTbtRp8FRF6qHLomXbKRBzpvBLjtQcfcgmNe", + "asset": { + "amount": "0.0297375", + "fungible": true, + "type": "solana:5eykt4UsFv8P8NJdTREpY1vzqKqZKvdp/slip44:501", + "unit": "SOL" + } + } + ], + "type": "send" + }, + { + "account": "55fe5095-3194-42c2-81d3-5701dcad1924", + "chain": "solana:5eykt4UsFv8P8NJdTREpY1vzqKqZKvdp", + "events": [ + { + "status": "confirmed", + "timestamp": 1769733565 + } + ], + "fees": [ + { + "asset": { + "amount": "0.000005", + "fungible": true, + "type": "solana:5eykt4UsFv8P8NJdTREpY1vzqKqZKvdp/slip44:501", + "unit": "SOL" + }, + "type": "base" + }, + { + "asset": { + "amount": "0.000058663", + "fungible": true, + "type": "solana:5eykt4UsFv8P8NJdTREpY1vzqKqZKvdp/slip44:501", + "unit": "SOL" + }, + "type": "priority" + } + ], + "from": [ + { + "address": "8jKM7u4xsyvDpnqL5DQMVrh8AXxZKJPKJw5QsM7KEF8J", + "asset": { + "amount": "0.01", + "fungible": true, + "type": "solana:5eykt4UsFv8P8NJdTREpY1vzqKqZKvdp/slip44:501", + "unit": "SOL" + } + } + ], + "id": "3a7Vj352Dm7aiCx6iwmwo3uTiJ4KwDcx5tML525uYvwmv67w2EcMxM8EasTsRoVaEu1YQXcUCnAV2uDEKa5UAQTF", + "status": "confirmed", + "timestamp": 1769733565, + "to": [ + { + "address": "8jKM7u4xsyvDpnqL5DQMVrh8AXxZKJPKJw5QsM7KEF8J", + "asset": { + "amount": "1.162623", + "fungible": true, + "type": "solana:5eykt4UsFv8P8NJdTREpY1vzqKqZKvdp/token:EPjFWdd5AufqSSqeM2qN1xzybapC8G4wEGGkZwyTDt1v", + "unit": "USDC" + } + } + ], + "type": "swap" + }, + { + "account": "55fe5095-3194-42c2-81d3-5701dcad1924", + "chain": "solana:5eykt4UsFv8P8NJdTREpY1vzqKqZKvdp", + "events": [ + { + "status": "confirmed", + "timestamp": 1769194037 + } + ], + "fees": [ + { + "asset": { + "amount": "0.000005", + "fungible": true, + "type": "solana:5eykt4UsFv8P8NJdTREpY1vzqKqZKvdp/slip44:501", + "unit": "SOL" + }, + "type": "base" + }, + { + "asset": { + "amount": "0.000009395", + "fungible": true, + "type": "solana:5eykt4UsFv8P8NJdTREpY1vzqKqZKvdp/slip44:501", + "unit": "SOL" + }, + "type": "priority" + } + ], + "from": [ + { + "address": "8jKM7u4xsyvDpnqL5DQMVrh8AXxZKJPKJw5QsM7KEF8J", + "asset": { + "amount": "2.55546", + "fungible": true, + "type": "solana:5eykt4UsFv8P8NJdTREpY1vzqKqZKvdp/token:EPjFWdd5AufqSSqeM2qN1xzybapC8G4wEGGkZwyTDt1v", + "unit": "USDC" + } + } + ], + "id": "5WyKzT2EFi5mtoh4R7f4pmWbdWNrsZYEmrX2fyGU4AEfyWgnZxUezDHnQBUK3iLbSpKWK3J5RQzi81CwXuNqEEzf", + "status": "confirmed", + "timestamp": 1769194037, + "to": [ + { + "address": "8jKM7u4xsyvDpnqL5DQMVrh8AXxZKJPKJw5QsM7KEF8J", + "asset": { + "amount": "0.019626284", + "fungible": true, + "type": "solana:5eykt4UsFv8P8NJdTREpY1vzqKqZKvdp/slip44:501", + "unit": "SOL" + } + } + ], + "type": "swap" + }, + { + "account": "55fe5095-3194-42c2-81d3-5701dcad1924", + "chain": "solana:5eykt4UsFv8P8NJdTREpY1vzqKqZKvdp", + "events": [ + { + "status": "confirmed", + "timestamp": 1769194017 + } + ], + "fees": [ + { + "asset": { + "amount": "0.000005", + "fungible": true, + "type": "solana:5eykt4UsFv8P8NJdTREpY1vzqKqZKvdp/slip44:501", + "unit": "SOL" + }, + "type": "base" + }, + { + "asset": { + "amount": "0.000018861", + "fungible": true, + "type": "solana:5eykt4UsFv8P8NJdTREpY1vzqKqZKvdp/slip44:501", + "unit": "SOL" + }, + "type": "priority" + } + ], + "from": [ + { + "address": "8jKM7u4xsyvDpnqL5DQMVrh8AXxZKJPKJw5QsM7KEF8J", + "asset": { + "amount": "0.02", + "fungible": true, + "type": "solana:5eykt4UsFv8P8NJdTREpY1vzqKqZKvdp/slip44:501", + "unit": "SOL" + } + } + ], + "id": "5ZauwaZnuXipxcjhS4xV5Tmtyw7P6Yk7FiqBeoosAs8mPgLRVgsBZfitHaiqvZP2WkWPGL1RpJoTCEPCeqHrM3AB", + "status": "confirmed", + "timestamp": 1769194017, + "to": [ + { + "address": "8jKM7u4xsyvDpnqL5DQMVrh8AXxZKJPKJw5QsM7KEF8J", + "asset": { + "amount": "2.55546", + "fungible": true, + "type": "solana:5eykt4UsFv8P8NJdTREpY1vzqKqZKvdp/token:EPjFWdd5AufqSSqeM2qN1xzybapC8G4wEGGkZwyTDt1v", + "unit": "USDC" + } + } + ], + "type": "swap" + }, + { + "account": "55fe5095-3194-42c2-81d3-5701dcad1924", + "chain": "solana:5eykt4UsFv8P8NJdTREpY1vzqKqZKvdp", + "events": [ + { + "status": "confirmed", + "timestamp": 1769192383 + } + ], + "fees": [ + { + "asset": { + "amount": "0.000005", + "fungible": true, + "type": "solana:5eykt4UsFv8P8NJdTREpY1vzqKqZKvdp/slip44:501", + "unit": "SOL" + }, + "type": "base" + }, + { + "asset": { + "amount": "0.000003581", + "fungible": true, + "type": "solana:5eykt4UsFv8P8NJdTREpY1vzqKqZKvdp/slip44:501", + "unit": "SOL" + }, + "type": "priority" + } + ], + "from": [ + { + "address": "8jKM7u4xsyvDpnqL5DQMVrh8AXxZKJPKJw5QsM7KEF8J", + "asset": { + "amount": "2.718964", + "fungible": true, + "type": "solana:5eykt4UsFv8P8NJdTREpY1vzqKqZKvdp/token:EPjFWdd5AufqSSqeM2qN1xzybapC8G4wEGGkZwyTDt1v", + "unit": "USDC" + } + } + ], + "id": "65mwzRE9RvKncawQgS6h6Wu49UJ7EMt2VJHF2XymaMCNcNHtg3WirdreohZNhXY8nNoJJmFgKEZ2nPeg774jpryU", + "status": "confirmed", + "timestamp": 1769192383, + "to": [ + { + "address": "8jKM7u4xsyvDpnqL5DQMVrh8AXxZKJPKJw5QsM7KEF8J", + "asset": { + "amount": "0.020914403", + "fungible": true, + "type": "solana:5eykt4UsFv8P8NJdTREpY1vzqKqZKvdp/slip44:501", + "unit": "SOL" + } + } + ], + "type": "swap" + }, + { + "account": "55fe5095-3194-42c2-81d3-5701dcad1924", + "chain": "solana:5eykt4UsFv8P8NJdTREpY1vzqKqZKvdp", + "events": [ + { + "status": "confirmed", + "timestamp": 1769080978 + } + ], + "fees": [ + { + "asset": { + "amount": "0.000005", + "fungible": true, + "type": "solana:5eykt4UsFv8P8NJdTREpY1vzqKqZKvdp/slip44:501", + "unit": "SOL" + }, + "type": "base" + }, + { + "asset": { + "amount": "0.0000203", + "fungible": true, + "type": "solana:5eykt4UsFv8P8NJdTREpY1vzqKqZKvdp/slip44:501", + "unit": "SOL" + }, + "type": "priority" + } + ], + "from": [], + "id": "4jkAnMNChYhLa4xbU76GAszZXKKk2iRWEEPpHMvcy9YFAK8Yjo9NTPbrmBpidhjAvf2F7fDRiQ9Za7dmbcjeTvF8", + "status": "confirmed", + "timestamp": 1769080978, + "to": [], + "type": "unknown" + }, + { + "account": "55fe5095-3194-42c2-81d3-5701dcad1924", + "chain": "solana:5eykt4UsFv8P8NJdTREpY1vzqKqZKvdp", + "events": [ + { + "status": "confirmed", + "timestamp": 1768994563 + } + ], + "fees": [ + { + "asset": { + "amount": "0.000005", + "fungible": true, + "type": "solana:5eykt4UsFv8P8NJdTREpY1vzqKqZKvdp/slip44:501", + "unit": "SOL" + }, + "type": "base" + }, + { + "asset": { + "amount": "0.0000203", + "fungible": true, + "type": "solana:5eykt4UsFv8P8NJdTREpY1vzqKqZKvdp/slip44:501", + "unit": "SOL" + }, + "type": "priority" + } + ], + "from": [], + "id": "4EBQYHaSxUHcDESCCxUds82WybpbmpttgCzhKnfJWPCWou3U3X92FN5uUaZe5v7wzRTGLSDMJjq3V4yTKwj5pEJ4", + "status": "confirmed", + "timestamp": 1768994563, + "to": [], + "type": "unknown" + }, + { + "account": "55fe5095-3194-42c2-81d3-5701dcad1924", + "chain": "solana:5eykt4UsFv8P8NJdTREpY1vzqKqZKvdp", + "events": [ + { + "status": "confirmed", + "timestamp": 1768908088 + } + ], + "fees": [ + { + "asset": { + "amount": "0.000005", + "fungible": true, + "type": "solana:5eykt4UsFv8P8NJdTREpY1vzqKqZKvdp/slip44:501", + "unit": "SOL" + }, + "type": "base" + }, + { + "asset": { + "amount": "0.0000203", + "fungible": true, + "type": "solana:5eykt4UsFv8P8NJdTREpY1vzqKqZKvdp/slip44:501", + "unit": "SOL" + }, + "type": "priority" + } + ], + "from": [], + "id": "3XR7GL9zkcHseHR4wfgFv12sXybCRVrtCV6sXZ2KcxUaBQAk1vcxfPFnVHTiDpCfkQta6TAv5T47T4mKLKproBqc", + "status": "confirmed", + "timestamp": 1768908088, + "to": [], + "type": "unknown" + }, + { + "account": "55fe5095-3194-42c2-81d3-5701dcad1924", + "chain": "solana:5eykt4UsFv8P8NJdTREpY1vzqKqZKvdp", + "events": [ + { + "status": "confirmed", + "timestamp": 1768821738 + } + ], + "fees": [ + { + "asset": { + "amount": "0.000005", + "fungible": true, + "type": "solana:5eykt4UsFv8P8NJdTREpY1vzqKqZKvdp/slip44:501", + "unit": "SOL" + }, + "type": "base" + }, + { + "asset": { + "amount": "0.0000203", + "fungible": true, + "type": "solana:5eykt4UsFv8P8NJdTREpY1vzqKqZKvdp/slip44:501", + "unit": "SOL" + }, + "type": "priority" + } + ], + "from": [], + "id": "4CLnKgdXZM1bYp4V2J19MaT9q8XQvVdHY4dxcQ2yeD6SVDPcQsxrkVQt9tUMnBCaFs764X3tZZAkoj37hSdrJaTC", + "status": "confirmed", + "timestamp": 1768821738, + "to": [], + "type": "unknown" + }, + { + "account": "55fe5095-3194-42c2-81d3-5701dcad1924", + "chain": "solana:5eykt4UsFv8P8NJdTREpY1vzqKqZKvdp", + "events": [ + { + "status": "confirmed", + "timestamp": 1768735293 + } + ], + "fees": [ + { + "asset": { + "amount": "0.000005", + "fungible": true, + "type": "solana:5eykt4UsFv8P8NJdTREpY1vzqKqZKvdp/slip44:501", + "unit": "SOL" + }, + "type": "base" + }, + { + "asset": { + "amount": "0.0000203", + "fungible": true, + "type": "solana:5eykt4UsFv8P8NJdTREpY1vzqKqZKvdp/slip44:501", + "unit": "SOL" + }, + "type": "priority" + } + ], + "from": [], + "id": "YhfbDt31RvkeYBSph82rdPbZVVz1WfHPi2MhcWtkWW2a8jXZsveWCBDKWxQhbc3n5BN1LGCYxQEn1EC2232DGcM", + "status": "confirmed", + "timestamp": 1768735293, + "to": [], + "type": "unknown" + }, + { + "account": "55fe5095-3194-42c2-81d3-5701dcad1924", + "chain": "solana:5eykt4UsFv8P8NJdTREpY1vzqKqZKvdp", + "events": [ + { + "status": "confirmed", + "timestamp": 1765992554 + } + ], + "fees": [ + { + "asset": { + "amount": "0.000005", + "fungible": true, + "type": "solana:5eykt4UsFv8P8NJdTREpY1vzqKqZKvdp/slip44:501", + "unit": "SOL" + }, + "type": "base" + }, + { + "asset": { + "amount": "0.000053753", + "fungible": true, + "type": "solana:5eykt4UsFv8P8NJdTREpY1vzqKqZKvdp/slip44:501", + "unit": "SOL" + }, + "type": "priority" + } + ], + "from": [ + { + "address": "8jKM7u4xsyvDpnqL5DQMVrh8AXxZKJPKJw5QsM7KEF8J", + "asset": { + "amount": "0.0221", + "fungible": true, + "type": "solana:5eykt4UsFv8P8NJdTREpY1vzqKqZKvdp/slip44:501", + "unit": "SOL" + } + } + ], + "id": "3ZaCc8m1XWksFqe8QgtERuo8g7HnKDqXLNnRJ5DP4caQf7W458tHy6KdWoL5oXkoUbkZEThnKvtnD6iJF4G7U7a6", + "status": "confirmed", + "timestamp": 1765992554, + "to": [ + { + "address": "8jKM7u4xsyvDpnqL5DQMVrh8AXxZKJPKJw5QsM7KEF8J", + "asset": { + "amount": "2.717222", + "fungible": true, + "type": "solana:5eykt4UsFv8P8NJdTREpY1vzqKqZKvdp/token:EPjFWdd5AufqSSqeM2qN1xzybapC8G4wEGGkZwyTDt1v", + "unit": "USDC" + } + } + ], + "type": "swap" + }, + { + "account": "55fe5095-3194-42c2-81d3-5701dcad1924", + "chain": "solana:5eykt4UsFv8P8NJdTREpY1vzqKqZKvdp", + "events": [ + { + "status": "confirmed", + "timestamp": 1764971969 + } + ], + "fees": [ + { + "asset": { + "amount": "0.000005", + "fungible": true, + "type": "solana:5eykt4UsFv8P8NJdTREpY1vzqKqZKvdp/slip44:501", + "unit": "SOL" + }, + "type": "base" + }, + { + "asset": { + "amount": "0.000062923", + "fungible": true, + "type": "solana:5eykt4UsFv8P8NJdTREpY1vzqKqZKvdp/slip44:501", + "unit": "SOL" + }, + "type": "priority" + } + ], + "from": [ + { + "address": "8jKM7u4xsyvDpnqL5DQMVrh8AXxZKJPKJw5QsM7KEF8J", + "asset": { + "amount": "0.001", + "fungible": true, + "type": "solana:5eykt4UsFv8P8NJdTREpY1vzqKqZKvdp/slip44:501", + "unit": "SOL" + } + } + ], + "id": "3kTGzVLZ7KexWA5TvW6aJPKiNXLKBKXNn8aeuumdPf3rsNKNVQQahPfh62JKBjNxSnuLMhD5pSX4JQdjpszEiLGX", + "status": "confirmed", + "timestamp": 1764971969, + "to": [ + { + "address": "8jKM7u4xsyvDpnqL5DQMVrh8AXxZKJPKJw5QsM7KEF8J", + "asset": { + "amount": "0.131293", + "fungible": true, + "type": "solana:5eykt4UsFv8P8NJdTREpY1vzqKqZKvdp/token:EPjFWdd5AufqSSqeM2qN1xzybapC8G4wEGGkZwyTDt1v", + "unit": "USDC" + } + } + ], + "type": "swap" + }, + { + "account": "55fe5095-3194-42c2-81d3-5701dcad1924", + "chain": "solana:5eykt4UsFv8P8NJdTREpY1vzqKqZKvdp", + "events": [ + { + "status": "confirmed", + "timestamp": 1756858325 + } + ], + "fees": [ + { + "asset": { + "amount": "0.000005", + "fungible": true, + "type": "solana:5eykt4UsFv8P8NJdTREpY1vzqKqZKvdp/slip44:501", + "unit": "SOL" + }, + "type": "base" + }, + { + "asset": { + "amount": "0.000043272", + "fungible": true, + "type": "solana:5eykt4UsFv8P8NJdTREpY1vzqKqZKvdp/slip44:501", + "unit": "SOL" + }, + "type": "priority" + } + ], + "from": [ + { + "address": "8jKM7u4xsyvDpnqL5DQMVrh8AXxZKJPKJw5QsM7KEF8J", + "asset": { + "amount": "0.454449", + "fungible": true, + "type": "solana:5eykt4UsFv8P8NJdTREpY1vzqKqZKvdp/token:27G8MtK7VtTcCHkpASjSDdkWWYfoqT6ggEuKidVJidD4", + "unit": "JLP" + } + } + ], + "id": "3QKR2R4MDhwnxGZEzpdvkpy8n9QppkSJ7XnB4mF4ETNqfHeN6Xfy68Lotb9E3CBqguoY4BVoT1kHEtzBNkb2u4yy", + "status": "confirmed", + "timestamp": 1756858325, + "to": [ + { + "address": "8jKM7u4xsyvDpnqL5DQMVrh8AXxZKJPKJw5QsM7KEF8J", + "asset": { + "amount": "2.465849", + "fungible": true, + "type": "solana:5eykt4UsFv8P8NJdTREpY1vzqKqZKvdp/token:EPjFWdd5AufqSSqeM2qN1xzybapC8G4wEGGkZwyTDt1v", + "unit": "USDC" + } + } + ], + "type": "swap" + }, + { + "account": "55fe5095-3194-42c2-81d3-5701dcad1924", + "chain": "solana:5eykt4UsFv8P8NJdTREpY1vzqKqZKvdp", + "events": [ + { + "status": "confirmed", + "timestamp": 1750361827 + } + ], + "fees": [ + { + "asset": { + "amount": "0.000005", + "fungible": true, + "type": "solana:5eykt4UsFv8P8NJdTREpY1vzqKqZKvdp/slip44:501", + "unit": "SOL" + }, + "type": "base" + }, + { + "asset": { + "amount": "0.000008492", + "fungible": true, + "type": "solana:5eykt4UsFv8P8NJdTREpY1vzqKqZKvdp/slip44:501", + "unit": "SOL" + }, + "type": "priority" + } + ], + "from": [ + { + "address": "8jKM7u4xsyvDpnqL5DQMVrh8AXxZKJPKJw5QsM7KEF8J", + "asset": { + "amount": "2", + "fungible": true, + "type": "solana:5eykt4UsFv8P8NJdTREpY1vzqKqZKvdp/token:EPjFWdd5AufqSSqeM2qN1xzybapC8G4wEGGkZwyTDt1v", + "unit": "USDC" + } + } + ], + "id": "3hN1i9gR1NCvmHggJWaDD1suPzJKhEtqakVqbEiFXSLjbf6J7fSeNpYVif95opSY9wppyiZji8tXQFxeSe56GzEf", + "status": "confirmed", + "timestamp": 1750361827, + "to": [ + { + "address": "8jKM7u4xsyvDpnqL5DQMVrh8AXxZKJPKJw5QsM7KEF8J", + "asset": { + "amount": "0.454449", + "fungible": true, + "type": "solana:5eykt4UsFv8P8NJdTREpY1vzqKqZKvdp/token:27G8MtK7VtTcCHkpASjSDdkWWYfoqT6ggEuKidVJidD4", + "unit": "JLP" + } + } + ], + "type": "swap" + }, + { + "account": "55fe5095-3194-42c2-81d3-5701dcad1924", + "chain": "solana:5eykt4UsFv8P8NJdTREpY1vzqKqZKvdp", + "events": [ + { + "status": "confirmed", + "timestamp": 1750361531 + } + ], + "fees": [ + { + "asset": { + "amount": "0.000005", + "fungible": true, + "type": "solana:5eykt4UsFv8P8NJdTREpY1vzqKqZKvdp/slip44:501", + "unit": "SOL" + }, + "type": "base" + }, + { + "asset": { + "amount": "0.00009833", + "fungible": true, + "type": "solana:5eykt4UsFv8P8NJdTREpY1vzqKqZKvdp/slip44:501", + "unit": "SOL" + }, + "type": "priority" + } + ], + "from": [ + { + "address": "8jKM7u4xsyvDpnqL5DQMVrh8AXxZKJPKJw5QsM7KEF8J", + "asset": { + "amount": "0.03", + "fungible": true, + "type": "solana:5eykt4UsFv8P8NJdTREpY1vzqKqZKvdp/slip44:501", + "unit": "SOL" + } + } + ], + "id": "5cN15j9RRZX2nTjFmQvJCV8xwmHQ1MfNnApQobQ2D1XWwHykHXus7ij8cdtkAuyZ95pqyv8GEn8seAJusduRppcf", + "status": "confirmed", + "timestamp": 1750361531, + "to": [ + { + "address": "8jKM7u4xsyvDpnqL5DQMVrh8AXxZKJPKJw5QsM7KEF8J", + "asset": { + "amount": "4.326183", + "fungible": true, + "type": "solana:5eykt4UsFv8P8NJdTREpY1vzqKqZKvdp/token:EPjFWdd5AufqSSqeM2qN1xzybapC8G4wEGGkZwyTDt1v", + "unit": "USDC" + } + } + ], + "type": "swap" + }, + { + "account": "55fe5095-3194-42c2-81d3-5701dcad1924", + "chain": "solana:5eykt4UsFv8P8NJdTREpY1vzqKqZKvdp", + "events": [ + { + "status": "confirmed", + "timestamp": 1750360985 + } + ], + "fees": [ + { + "asset": { + "amount": "0.000005", + "fungible": true, + "type": "solana:5eykt4UsFv8P8NJdTREpY1vzqKqZKvdp/slip44:501", + "unit": "SOL" + }, + "type": "base" + }, + { + "asset": { + "amount": "0.000016887", + "fungible": true, + "type": "solana:5eykt4UsFv8P8NJdTREpY1vzqKqZKvdp/slip44:501", + "unit": "SOL" + }, + "type": "priority" + } + ], + "from": [ + { + "address": "8jKM7u4xsyvDpnqL5DQMVrh8AXxZKJPKJw5QsM7KEF8J", + "asset": { + "amount": "8948254.71", + "fungible": true, + "type": "solana:5eykt4UsFv8P8NJdTREpY1vzqKqZKvdp/token:7atgF8KQo4wJrD5ATGX7t1V2zVvykPJbFfNeVf1icFv1", + "unit": "$CWIF" + } + } + ], + "id": "4BaYw5wtJYqJTSKKv2NPUbEH2qeRsr14xDEdzQTuvgB8i5sLmuZcvakn6HfuE9m6M12456XagZUgxPMDet5YeRrQ", + "status": "confirmed", + "timestamp": 1750360985, + "to": [ + { + "address": "8jKM7u4xsyvDpnqL5DQMVrh8AXxZKJPKJw5QsM7KEF8J", + "asset": { + "amount": "0.657835", + "fungible": true, + "type": "solana:5eykt4UsFv8P8NJdTREpY1vzqKqZKvdp/token:EPjFWdd5AufqSSqeM2qN1xzybapC8G4wEGGkZwyTDt1v", + "unit": "USDC" + } + } + ], + "type": "swap" + }, + { + "account": "55fe5095-3194-42c2-81d3-5701dcad1924", + "chain": "solana:5eykt4UsFv8P8NJdTREpY1vzqKqZKvdp", + "events": [ + { + "status": "confirmed", + "timestamp": 1750350731 + } + ], + "fees": [ + { + "asset": { + "amount": "0.000005", + "fungible": true, + "type": "solana:5eykt4UsFv8P8NJdTREpY1vzqKqZKvdp/slip44:501", + "unit": "SOL" + }, + "type": "base" + }, + { + "asset": { + "amount": "0.000005845", + "fungible": true, + "type": "solana:5eykt4UsFv8P8NJdTREpY1vzqKqZKvdp/slip44:501", + "unit": "SOL" + }, + "type": "priority" + } + ], + "from": [ + { + "address": "8jKM7u4xsyvDpnqL5DQMVrh8AXxZKJPKJw5QsM7KEF8J", + "asset": { + "amount": "3.600231", + "fungible": true, + "type": "solana:5eykt4UsFv8P8NJdTREpY1vzqKqZKvdp/token:9zNQRsGLjNKwCUU5Gq5LR8beUCPzQMVMqKAi3SSZh54u", + "unit": "FDUSD" + } + } + ], + "id": "3Axy11JYEzJ5SXLFubHEMELGSBXhv7G7mtKqThNGCRTCam8Y1kQ333WAL5EXGFacA18A9Sh59XA3eSv7KkdYsq6Z", + "status": "confirmed", + "timestamp": 1750350731, + "to": [ + { + "address": "8jKM7u4xsyvDpnqL5DQMVrh8AXxZKJPKJw5QsM7KEF8J", + "asset": { + "amount": "3.55998", + "fungible": true, + "type": "solana:5eykt4UsFv8P8NJdTREpY1vzqKqZKvdp/token:EPjFWdd5AufqSSqeM2qN1xzybapC8G4wEGGkZwyTDt1v", + "unit": "USDC" + } + } + ], + "type": "swap" + }, + { + "account": "55fe5095-3194-42c2-81d3-5701dcad1924", + "chain": "solana:5eykt4UsFv8P8NJdTREpY1vzqKqZKvdp", + "events": [ + { + "status": "confirmed", + "timestamp": 1750350543 + } + ], + "fees": [ + { + "asset": { + "amount": "0.000005", + "fungible": true, + "type": "solana:5eykt4UsFv8P8NJdTREpY1vzqKqZKvdp/slip44:501", + "unit": "SOL" + }, + "type": "base" + }, + { + "asset": { + "amount": "0.000010235", + "fungible": true, + "type": "solana:5eykt4UsFv8P8NJdTREpY1vzqKqZKvdp/slip44:501", + "unit": "SOL" + }, + "type": "priority" + } + ], + "from": [ + { + "address": "8jKM7u4xsyvDpnqL5DQMVrh8AXxZKJPKJw5QsM7KEF8J", + "asset": { + "amount": "2.708102", + "fungible": true, + "type": "solana:5eykt4UsFv8P8NJdTREpY1vzqKqZKvdp/token:EPjFWdd5AufqSSqeM2qN1xzybapC8G4wEGGkZwyTDt1v", + "unit": "USDC" + } + } + ], + "id": "49EeDcP7kC6Kiw8g8eZcaA13CZazwG1xLrn6btLNZBYuFcZQXbTimWx2xvhiALYyrfSBTaBUd8xGsbK8bMa53RVV", + "status": "confirmed", + "timestamp": 1750350543, + "to": [ + { + "address": "8jKM7u4xsyvDpnqL5DQMVrh8AXxZKJPKJw5QsM7KEF8J", + "asset": { + "amount": "2.689561", + "fungible": true, + "type": "solana:5eykt4UsFv8P8NJdTREpY1vzqKqZKvdp/token:9zNQRsGLjNKwCUU5Gq5LR8beUCPzQMVMqKAi3SSZh54u", + "unit": "FDUSD" + } + } + ], + "type": "swap" + }, + { + "account": "55fe5095-3194-42c2-81d3-5701dcad1924", + "chain": "solana:5eykt4UsFv8P8NJdTREpY1vzqKqZKvdp", + "events": [ + { + "status": "confirmed", + "timestamp": 1750199234 + } + ], + "fees": [ + { + "asset": { + "amount": "0.000005", + "fungible": true, + "type": "solana:5eykt4UsFv8P8NJdTREpY1vzqKqZKvdp/slip44:501", + "unit": "SOL" + }, + "type": "base" + }, + { + "asset": { + "amount": "0.000042857", + "fungible": true, + "type": "solana:5eykt4UsFv8P8NJdTREpY1vzqKqZKvdp/slip44:501", + "unit": "SOL" + }, + "type": "priority" + } + ], + "from": [ + { + "address": "8jKM7u4xsyvDpnqL5DQMVrh8AXxZKJPKJw5QsM7KEF8J", + "asset": { + "amount": "1.965154", + "fungible": true, + "type": "solana:5eykt4UsFv8P8NJdTREpY1vzqKqZKvdp/token:9zNQRsGLjNKwCUU5Gq5LR8beUCPzQMVMqKAi3SSZh54u", + "unit": "FDUSD" + } + }, + { + "address": "F5oK5zdyUktrzTgSJdBFL73xUdCLcHfHfHdBcpydhXoK", + "asset": { + "amount": "1.960756", + "fungible": true, + "type": "solana:5eykt4UsFv8P8NJdTREpY1vzqKqZKvdp/token:Es9vMFrzaCERmJfrF4H2FYD4KCoNkY11McCe8BenwNYB", + "unit": "USDT" + } + }, + { + "address": "AHhiY6GAKfBkvseQDQbBC7qp3fTRNpyZccuEdYSdPFEf", + "asset": { + "amount": "1.960286", + "fungible": true, + "type": "solana:5eykt4UsFv8P8NJdTREpY1vzqKqZKvdp/token:EPjFWdd5AufqSSqeM2qN1xzybapC8G4wEGGkZwyTDt1v", + "unit": "USDC" + } + }, + { + "address": "5LAzU2jn92pJpUbBUSurT7i4GgSPkrrWbqfchUNU8fyB", + "asset": { + "amount": "0.013266262", + "fungible": true, + "type": "solana:5eykt4UsFv8P8NJdTREpY1vzqKqZKvdp/token:So11111111111111111111111111111111111111112", + "unit": "" + } + }, + { + "address": "3GdPJYjhRkHj2nUzsvFNz45ieaCWUswuoe7C8Sjjea4c", + "asset": { + "amount": "0.013266262", + "fungible": true, + "type": "solana:5eykt4UsFv8P8NJdTREpY1vzqKqZKvdp/slip44:501", + "unit": "SOL" + } + } + ], + "id": "2tVftvvoUns4S52SBHnnQgEMiBgZtcGBKUX3BiMusCWAs3uwJg4iZkkagrx7Vfy3e7xxkYxaYBgu25tyTU7fsGnJ", + "status": "confirmed", + "timestamp": 1750199234, + "to": [ + { + "address": "F7p3dFrjRTbtRp8FRF6qHLomXbKRBzpvBLjtQcfcgmNe", + "asset": { + "amount": "1.960286", + "fungible": true, + "type": "solana:5eykt4UsFv8P8NJdTREpY1vzqKqZKvdp/token:EPjFWdd5AufqSSqeM2qN1xzybapC8G4wEGGkZwyTDt1v", + "unit": "USDC" + } + }, + { + "address": "F5oK5zdyUktrzTgSJdBFL73xUdCLcHfHfHdBcpydhXoK", + "asset": { + "amount": "1.965154", + "fungible": true, + "type": "solana:5eykt4UsFv8P8NJdTREpY1vzqKqZKvdp/token:9zNQRsGLjNKwCUU5Gq5LR8beUCPzQMVMqKAi3SSZh54u", + "unit": "FDUSD" + } + }, + { + "address": "AHhiY6GAKfBkvseQDQbBC7qp3fTRNpyZccuEdYSdPFEf", + "asset": { + "amount": "0.013266262", + "fungible": true, + "type": "solana:5eykt4UsFv8P8NJdTREpY1vzqKqZKvdp/token:So11111111111111111111111111111111111111112", + "unit": "" + } + }, + { + "address": "5LAzU2jn92pJpUbBUSurT7i4GgSPkrrWbqfchUNU8fyB", + "asset": { + "amount": "1.960756", + "fungible": true, + "type": "solana:5eykt4UsFv8P8NJdTREpY1vzqKqZKvdp/token:Es9vMFrzaCERmJfrF4H2FYD4KCoNkY11McCe8BenwNYB", + "unit": "USDT" + } + }, + { + "address": "Cu6yvJiPeLxV6FDoyD8P8NxaSjz5iC2zr6i9GfjyyN5f", + "asset": { + "amount": "0.013266262", + "fungible": true, + "type": "solana:5eykt4UsFv8P8NJdTREpY1vzqKqZKvdp/slip44:501", + "unit": "SOL" + } + } + ], + "type": "send" + }, + { + "account": "55fe5095-3194-42c2-81d3-5701dcad1924", + "chain": "solana:5eykt4UsFv8P8NJdTREpY1vzqKqZKvdp", + "events": [ + { + "status": "confirmed", + "timestamp": 1750195801 + } + ], + "fees": [ + { + "asset": { + "amount": "0.000005", + "fungible": true, + "type": "solana:5eykt4UsFv8P8NJdTREpY1vzqKqZKvdp/slip44:501", + "unit": "SOL" + }, + "type": "base" + }, + { + "asset": { + "amount": "0.000044045", + "fungible": true, + "type": "solana:5eykt4UsFv8P8NJdTREpY1vzqKqZKvdp/slip44:501", + "unit": "SOL" + }, + "type": "priority" + } + ], + "from": [ + { + "address": "8jKM7u4xsyvDpnqL5DQMVrh8AXxZKJPKJw5QsM7KEF8J", + "asset": { + "amount": "1.982499", + "fungible": true, + "type": "solana:5eykt4UsFv8P8NJdTREpY1vzqKqZKvdp/token:9zNQRsGLjNKwCUU5Gq5LR8beUCPzQMVMqKAi3SSZh54u", + "unit": "FDUSD" + } + }, + { + "address": "AxHocY4moH8roYQXMQWqoehtW5piMtTJQYmfL4wQ83D8", + "asset": { + "amount": "1.961335", + "fungible": true, + "type": "solana:5eykt4UsFv8P8NJdTREpY1vzqKqZKvdp/token:EPjFWdd5AufqSSqeM2qN1xzybapC8G4wEGGkZwyTDt1v", + "unit": "USDC" + } + }, + { + "address": "F5oK5zdyUktrzTgSJdBFL73xUdCLcHfHfHdBcpydhXoK", + "asset": { + "amount": "1.960778", + "fungible": true, + "type": "solana:5eykt4UsFv8P8NJdTREpY1vzqKqZKvdp/token:Es9vMFrzaCERmJfrF4H2FYD4KCoNkY11McCe8BenwNYB", + "unit": "USDT" + } + } + ], + "id": "KeQUqnCSHavf4W163usmS7xsseHBwPHXwD2HG13QuRahRgqnJ8Pgywv1sFMDDNA3Ui9y5n2FW5kdb9vxHajURMk", + "status": "confirmed", + "timestamp": 1750195801, + "to": [ + { + "address": "4cLUBQKZgCv2AqGXbh8ncGhrDRcicUe3WSDzjgPY2oTA", + "asset": { + "amount": "0.017345", + "fungible": true, + "type": "solana:5eykt4UsFv8P8NJdTREpY1vzqKqZKvdp/token:9zNQRsGLjNKwCUU5Gq5LR8beUCPzQMVMqKAi3SSZh54u", + "unit": "FDUSD" + } + }, + { + "address": "F7p3dFrjRTbtRp8FRF6qHLomXbKRBzpvBLjtQcfcgmNe", + "asset": { + "amount": "1.961335", + "fungible": true, + "type": "solana:5eykt4UsFv8P8NJdTREpY1vzqKqZKvdp/token:EPjFWdd5AufqSSqeM2qN1xzybapC8G4wEGGkZwyTDt1v", + "unit": "USDC" + } + }, + { + "address": "AxHocY4moH8roYQXMQWqoehtW5piMtTJQYmfL4wQ83D8", + "asset": { + "amount": "1.960778", + "fungible": true, + "type": "solana:5eykt4UsFv8P8NJdTREpY1vzqKqZKvdp/token:Es9vMFrzaCERmJfrF4H2FYD4KCoNkY11McCe8BenwNYB", + "unit": "USDT" + } + }, + { + "address": "F5oK5zdyUktrzTgSJdBFL73xUdCLcHfHfHdBcpydhXoK", + "asset": { + "amount": "1.965154", + "fungible": true, + "type": "solana:5eykt4UsFv8P8NJdTREpY1vzqKqZKvdp/token:9zNQRsGLjNKwCUU5Gq5LR8beUCPzQMVMqKAi3SSZh54u", + "unit": "FDUSD" + } + } + ], + "type": "send" + }, + { + "account": "55fe5095-3194-42c2-81d3-5701dcad1924", + "chain": "solana:5eykt4UsFv8P8NJdTREpY1vzqKqZKvdp", + "events": [ + { + "status": "confirmed", + "timestamp": 1750192504 + } + ], + "fees": [ + { + "asset": { + "amount": "0.000005", + "fungible": true, + "type": "solana:5eykt4UsFv8P8NJdTREpY1vzqKqZKvdp/slip44:501", + "unit": "SOL" + }, + "type": "base" + }, + { + "asset": { + "amount": "0.000042857", + "fungible": true, + "type": "solana:5eykt4UsFv8P8NJdTREpY1vzqKqZKvdp/slip44:501", + "unit": "SOL" + }, + "type": "priority" + } + ], + "from": [ + { + "address": "8jKM7u4xsyvDpnqL5DQMVrh8AXxZKJPKJw5QsM7KEF8J", + "asset": { + "amount": "1.965154", + "fungible": true, + "type": "solana:5eykt4UsFv8P8NJdTREpY1vzqKqZKvdp/token:9zNQRsGLjNKwCUU5Gq5LR8beUCPzQMVMqKAi3SSZh54u", + "unit": "FDUSD" + } + }, + { + "address": "3nMFwZXwY1s1M5s8vYAHqd4wGs4iSxXE4LRoUMMYqEgF", + "asset": { + "amount": "0.01317796", + "fungible": true, + "type": "solana:5eykt4UsFv8P8NJdTREpY1vzqKqZKvdp/token:So11111111111111111111111111111111111111112", + "unit": "" + } + }, + { + "address": "F5oK5zdyUktrzTgSJdBFL73xUdCLcHfHfHdBcpydhXoK", + "asset": { + "amount": "1.960791", + "fungible": true, + "type": "solana:5eykt4UsFv8P8NJdTREpY1vzqKqZKvdp/token:Es9vMFrzaCERmJfrF4H2FYD4KCoNkY11McCe8BenwNYB", + "unit": "USDT" + } + }, + { + "address": "J4uBbeoWpZE8fH58PM1Fp9n9K6f1aThyeVCyRdJbaXqt", + "asset": { + "amount": "1.960856", + "fungible": true, + "type": "solana:5eykt4UsFv8P8NJdTREpY1vzqKqZKvdp/token:EPjFWdd5AufqSSqeM2qN1xzybapC8G4wEGGkZwyTDt1v", + "unit": "USDC" + } + }, + { + "address": "AbcuyoPeYnddzFoFQudsiFka8qd6tTwvLgxwtpTKTpKC", + "asset": { + "amount": "0.01317796", + "fungible": true, + "type": "solana:5eykt4UsFv8P8NJdTREpY1vzqKqZKvdp/slip44:501", + "unit": "SOL" + } + } + ], + "id": "4npdHyFnYr6VppXz1qqfvjbgcYHp3NUW6ZeSygeCL7qKsvTXWba3Hjrtbpt5ThEcbqcxftJwSoEUUzo2kv3jETpL", + "status": "confirmed", + "timestamp": 1750192504, + "to": [ + { + "address": "F7p3dFrjRTbtRp8FRF6qHLomXbKRBzpvBLjtQcfcgmNe", + "asset": { + "amount": "1.960856", + "fungible": true, + "type": "solana:5eykt4UsFv8P8NJdTREpY1vzqKqZKvdp/token:EPjFWdd5AufqSSqeM2qN1xzybapC8G4wEGGkZwyTDt1v", + "unit": "USDC" + } + }, + { + "address": "3nMFwZXwY1s1M5s8vYAHqd4wGs4iSxXE4LRoUMMYqEgF", + "asset": { + "amount": "1.960791", + "fungible": true, + "type": "solana:5eykt4UsFv8P8NJdTREpY1vzqKqZKvdp/token:Es9vMFrzaCERmJfrF4H2FYD4KCoNkY11McCe8BenwNYB", + "unit": "USDT" + } + }, + { + "address": "F5oK5zdyUktrzTgSJdBFL73xUdCLcHfHfHdBcpydhXoK", + "asset": { + "amount": "1.965154", + "fungible": true, + "type": "solana:5eykt4UsFv8P8NJdTREpY1vzqKqZKvdp/token:9zNQRsGLjNKwCUU5Gq5LR8beUCPzQMVMqKAi3SSZh54u", + "unit": "FDUSD" + } + }, + { + "address": "J4uBbeoWpZE8fH58PM1Fp9n9K6f1aThyeVCyRdJbaXqt", + "asset": { + "amount": "0.01317796", + "fungible": true, + "type": "solana:5eykt4UsFv8P8NJdTREpY1vzqKqZKvdp/token:So11111111111111111111111111111111111111112", + "unit": "" + } + }, + { + "address": "4maNZQtYFA1cdB55aLS321dxwdH1Y8NWaH4qiMedKpTZ", + "asset": { + "amount": "0.01317796", + "fungible": true, + "type": "solana:5eykt4UsFv8P8NJdTREpY1vzqKqZKvdp/slip44:501", + "unit": "SOL" + } + } + ], + "type": "send" + }, + { + "account": "55fe5095-3194-42c2-81d3-5701dcad1924", + "chain": "solana:5eykt4UsFv8P8NJdTREpY1vzqKqZKvdp", + "events": [ + { + "status": "confirmed", + "timestamp": 1750185239 + } + ], + "fees": [ + { + "asset": { + "amount": "0.000005", + "fungible": true, + "type": "solana:5eykt4UsFv8P8NJdTREpY1vzqKqZKvdp/slip44:501", + "unit": "SOL" + }, + "type": "base" + }, + { + "asset": { + "amount": "0.000017481", + "fungible": true, + "type": "solana:5eykt4UsFv8P8NJdTREpY1vzqKqZKvdp/slip44:501", + "unit": "SOL" + }, + "type": "priority" + } + ], + "from": [ + { + "address": "8jKM7u4xsyvDpnqL5DQMVrh8AXxZKJPKJw5QsM7KEF8J", + "asset": { + "amount": "2", + "fungible": true, + "type": "solana:5eykt4UsFv8P8NJdTREpY1vzqKqZKvdp/token:EPjFWdd5AufqSSqeM2qN1xzybapC8G4wEGGkZwyTDt1v", + "unit": "USDC" + } + }, + { + "address": "8jKM7u4xsyvDpnqL5DQMVrh8AXxZKJPKJw5QsM7KEF8J", + "asset": { + "amount": "0.00203928", + "fungible": true, + "type": "solana:5eykt4UsFv8P8NJdTREpY1vzqKqZKvdp/slip44:501", + "unit": "SOL" + } + } + ], + "id": "5uNJixYCaS2uf2CM57ZHt5yjnvbUWFbuaywA5mvHSovfW3UwCDzRUg7ZHgBNbtze2uDzhiPtQvsxcLyghbWjuGxS", + "status": "confirmed", + "timestamp": 1750185239, + "to": [ + { + "address": "8jKM7u4xsyvDpnqL5DQMVrh8AXxZKJPKJw5QsM7KEF8J", + "asset": { + "amount": "1.981453", + "fungible": true, + "type": "solana:5eykt4UsFv8P8NJdTREpY1vzqKqZKvdp/token:9zNQRsGLjNKwCUU5Gq5LR8beUCPzQMVMqKAi3SSZh54u", + "unit": "FDUSD" + } + } + ], + "type": "swap" + }, + { + "account": "55fe5095-3194-42c2-81d3-5701dcad1924", + "chain": "solana:5eykt4UsFv8P8NJdTREpY1vzqKqZKvdp", + "events": [ + { + "status": "confirmed", + "timestamp": 1747413522 + } + ], + "fees": [ + { + "asset": { + "amount": "0.000005", + "fungible": true, + "type": "solana:5eykt4UsFv8P8NJdTREpY1vzqKqZKvdp/slip44:501", + "unit": "SOL" + }, + "type": "base" + }, + { + "asset": { + "amount": "0.000097266", + "fungible": true, + "type": "solana:5eykt4UsFv8P8NJdTREpY1vzqKqZKvdp/slip44:501", + "unit": "SOL" + }, + "type": "priority" + } + ], + "from": [ + { + "address": "8jKM7u4xsyvDpnqL5DQMVrh8AXxZKJPKJw5QsM7KEF8J", + "asset": { + "amount": "20543.775754", + "fungible": true, + "type": "solana:5eykt4UsFv8P8NJdTREpY1vzqKqZKvdp/token:8crhketCxuYMFfkvGfikwp6LGuN9sXx5i3oTC4PXpump", + "unit": "SLMN" + } + }, + { + "address": "8jKM7u4xsyvDpnqL5DQMVrh8AXxZKJPKJw5QsM7KEF8J", + "asset": { + "amount": "0.00203928", + "fungible": true, + "type": "solana:5eykt4UsFv8P8NJdTREpY1vzqKqZKvdp/slip44:501", + "unit": "SOL" + } + } + ], + "id": "56RDqk4ge61qbPRkXJ5oJU52s98Np8uoQSqkAtuWAsERykYjr6sCEdKQfj5M2kqEakRyGeys8HiMKbhfGgXLDj1H", + "status": "confirmed", + "timestamp": 1747413522, + "to": [ + { + "address": "8jKM7u4xsyvDpnqL5DQMVrh8AXxZKJPKJw5QsM7KEF8J", + "asset": { + "amount": "42.87418", + "fungible": true, + "type": "solana:5eykt4UsFv8P8NJdTREpY1vzqKqZKvdp/token:CKfatsPMUf8SkiURsDXs7eK6GWb4Jsd6UDbs7twMCWxo", + "unit": "BERN" + } + } + ], + "type": "swap" + }, + { + "account": "55fe5095-3194-42c2-81d3-5701dcad1924", + "chain": "solana:5eykt4UsFv8P8NJdTREpY1vzqKqZKvdp", + "events": [ + { + "status": "confirmed", + "timestamp": 1747413460 + } + ], + "fees": [ + { + "asset": { + "amount": "0.000005", + "fungible": true, + "type": "solana:5eykt4UsFv8P8NJdTREpY1vzqKqZKvdp/slip44:501", + "unit": "SOL" + }, + "type": "base" + }, + { + "asset": { + "amount": "0.000119477", + "fungible": true, + "type": "solana:5eykt4UsFv8P8NJdTREpY1vzqKqZKvdp/slip44:501", + "unit": "SOL" + }, + "type": "priority" + } + ], + "from": [ + { + "address": "8jKM7u4xsyvDpnqL5DQMVrh8AXxZKJPKJw5QsM7KEF8J", + "asset": { + "amount": "0.1", + "fungible": true, + "type": "solana:5eykt4UsFv8P8NJdTREpY1vzqKqZKvdp/token:EPjFWdd5AufqSSqeM2qN1xzybapC8G4wEGGkZwyTDt1v", + "unit": "USDC" + } + }, + { + "address": "8jKM7u4xsyvDpnqL5DQMVrh8AXxZKJPKJw5QsM7KEF8J", + "asset": { + "amount": "0.002039222", + "fungible": true, + "type": "solana:5eykt4UsFv8P8NJdTREpY1vzqKqZKvdp/slip44:501", + "unit": "SOL" + } + } + ], + "id": "5HCeWunZGVu3N4xFCrakWqbXQWxD8VvfU9WQ22v6DRXwqRHKDqdmSZNtEwj1yRX8Qq4jANm4BiR78nzMZrgYb1vX", + "status": "confirmed", + "timestamp": 1747413460, + "to": [ + { + "address": "8jKM7u4xsyvDpnqL5DQMVrh8AXxZKJPKJw5QsM7KEF8J", + "asset": { + "amount": "20543.775754", + "fungible": true, + "type": "solana:5eykt4UsFv8P8NJdTREpY1vzqKqZKvdp/token:8crhketCxuYMFfkvGfikwp6LGuN9sXx5i3oTC4PXpump", + "unit": "SLMN" + } + } + ], + "type": "swap" + } + ] + } + }, + "574cb22f-c2d5-40d2-86a5-e3393d33050f": { + "bip122:000000000019d6689c085ae165831e93": { + "lastUpdated": 1774466682535, + "next": null, + "transactions": [ + { + "account": "574cb22f-c2d5-40d2-86a5-e3393d33050f", + "chain": "bip122:000000000019d6689c085ae165831e93", + "events": [ + { + "status": "unconfirmed", + "timestamp": null + }, + { + "status": "confirmed", + "timestamp": 1768589476 + } + ], + "fees": [ + { + "asset": { + "amount": "0.0000087", + "fungible": true, + "type": "bip122:000000000019d6689c085ae165831e93/slip44:0", + "unit": "BTC" + }, + "type": "priority" + } + ], + "from": [], + "id": "6de22d6dbb1dce186ab6254653e45812351f38cc4128d157cb948d4d88d47c73", + "status": "confirmed", + "timestamp": 1768589476, + "to": [ + { + "address": "bc1qq2mvrp4g3ugd424dw4xv53rgsf8szkrv853jrc", + "asset": { + "amount": "0.00009913", + "fungible": true, + "type": "bip122:000000000019d6689c085ae165831e93/slip44:0", + "unit": "BTC" + } + } + ], + "type": "send" + }, + { + "account": "574cb22f-c2d5-40d2-86a5-e3393d33050f", + "chain": "bip122:000000000019d6689c085ae165831e93", + "events": [ + { + "status": "unconfirmed", + "timestamp": null + }, + { + "status": "confirmed", + "timestamp": 1761608745 + } + ], + "fees": [], + "from": [], + "id": "3b4698ba503c10d5dd86183c2ece6844870b2ceb9d4e3cf3d86776d2ad9ede4a", + "status": "confirmed", + "timestamp": 1761608745, + "to": [ + { + "address": "bc1qklk4c2g7pk2eertfh0zgw9gn6gaq7px9stmtsz", + "asset": { + "amount": "0.00012921", + "fungible": true, + "type": "bip122:000000000019d6689c085ae165831e93/slip44:0", + "unit": "BTC" + } + } + ], + "type": "receive" + }, + { + "account": "574cb22f-c2d5-40d2-86a5-e3393d33050f", + "chain": "bip122:000000000019d6689c085ae165831e93", + "events": [ + { + "status": "unconfirmed", + "timestamp": null + }, + { + "status": "confirmed", + "timestamp": 1761607796 + } + ], + "fees": [], + "from": [], + "id": "9ab6d6a1ec0c137f10bf7b20ffe07011a0a714624d5f354ad628cc7509638663", + "status": "confirmed", + "timestamp": 1761607796, + "to": [ + { + "address": "bc1qklk4c2g7pk2eertfh0zgw9gn6gaq7px9stmtsz", + "asset": { + "amount": "0.00006216", + "fungible": true, + "type": "bip122:000000000019d6689c085ae165831e93/slip44:0", + "unit": "BTC" + } + } + ], + "type": "receive" + }, + { + "account": "574cb22f-c2d5-40d2-86a5-e3393d33050f", + "chain": "bip122:000000000019d6689c085ae165831e93", + "events": [ + { + "status": "unconfirmed", + "timestamp": null + }, + { + "status": "confirmed", + "timestamp": 1761604663 + } + ], + "fees": [], + "from": [], + "id": "22444284e81c3eef99601eed091421d83a29ca869e4823b09e8db584217554ef", + "status": "confirmed", + "timestamp": 1761604663, + "to": [ + { + "address": "bc1qklk4c2g7pk2eertfh0zgw9gn6gaq7px9stmtsz", + "asset": { + "amount": "0.00007091", + "fungible": true, + "type": "bip122:000000000019d6689c085ae165831e93/slip44:0", + "unit": "BTC" + } + } + ], + "type": "receive" + } + ] + } + }, + "575d130d-01da-44f0-a731-da9967adf412": {}, + "5a747531-d39f-49d5-afbd-59c018cc4757": {}, + "658962cf-0ecb-496e-beb8-91b663d244de": {}, + "73a28e8a-5ecb-4b36-b6f3-d2c12294eebf": {}, + "744910ce-8368-414f-8e7c-1c5dba71831e": {}, + "77a6514e-0024-4dc2-b08d-e78c664c37c5": {}, + "78ccb0a9-3647-4bb6-94b4-54d8b4e0b397": {}, + "7f6eee30-338e-4926-86fa-19436da91f35": {}, + "80340772-85d8-41a5-b316-1d8fc8c2cea4": {}, + "891b1840-b34b-4059-895b-5f163cff8ff1": {}, + "8b0e3ad2-d40d-47b1-a9c3-702eb67ab1ba": {}, + "8fd0b8c5-b42d-462d-965b-2979b4057c88": {}, + "9e12503a-12d8-4bb4-835f-a0c203ccd67a": {}, + "a4c40c7c-01c0-4335-b574-72195898b31c": {}, + "c2c05428-c846-4992-a5a3-5d151b97fcdb": {}, + "c3fc6bba-683b-44c8-b637-89b55416a8dd": {}, + "c5bf70b0-2c4b-4016-9107-cab94be5fbb0": {}, + "c6d62ae8-d02c-4a7a-8222-17ed6cdf0e52": {}, + "c7cf5799-e458-4bb5-b60b-7e74cf2e7c0a": {}, + "c86652a6-e1f3-4e4c-b411-c58efe220dcf": {}, + "d05ca007-7a11-470f-8433-a89767f95995": {}, + "d8086b4c-4361-49ab-8955-efaa5240f561": {}, + "d834c0ad-655b-4707-997d-7048c1896f89": {}, + "db7205b1-e72f-4082-92c4-5490fdba12c5": {}, + "df59431e-d587-40a5-9c2b-3bdc6584b0e4": {}, + "e421a858-a232-40dc-8bbb-d3745bee215b": {}, + "e4cb2ec8-15e3-494a-bde2-6ea14e6d0d6c": {}, + "e6f7d2e7-8c4c-48f7-9d04-958add8113b7": {}, + "e78a4c3d-7649-4797-90ad-9d6ddbe9e6dd": {}, + "e86326ea-c687-45bf-84b9-ad4d8618d084": {}, + "f5481e08-42e2-4504-9a1f-44c0bbe6e0bb": {}, + "f7f2ce83-85bc-49f9-8551-c36c5432a0c1": {}, + "fedf900d-3caf-4540-9e24-c63400ef2b18": {}, + "ffb79cf7-3a88-4cfe-864c-a9f656ce1840": {} + }, + "conversionRates": { + "bip122:000000000019d6689c085ae165831e93/slip44:0": { + "conversionTime": 1778883654, + "currency": "swift:0/iso4217:USD", + "expirationTime": 1778883714, + "marketData": { + "allTimeHigh": "126080", + "allTimeLow": "67.81", + "circulatingSupply": "20029850", + "fungible": true, + "marketCap": "1582485707813", + "pricePercentChange": { + "P14D": 1.5054289617212426, + "P1D": -2.9594667127628713, + "P1Y": -23.588785565955206, + "P200D": -31.01113447398371, + "P30D": 5.719636948975058, + "P7D": -1.4853112476964745, + "PT1H": -0.12641870504260302 + }, + "totalVolume": "38672267829" + }, + "rate": "79031" + }, + "solana:5eykt4UsFv8P8NJdTREpY1vzqKqZKvdp/slip44:501": { + "conversionTime": 1778883654928, + "currency": "swift:0/iso4217:USD", + "expirationTime": 1778883714928, + "marketData": { + "allTimeHigh": "293.31", + "allTimeLow": "0.500801", + "circulatingSupply": "578119635.982831", + "fungible": true, + "marketCap": "51533178683", + "pricePercentChange": { + "P14D": 6.87742605656866, + "P1D": -3.8711814275648573, + "P1Y": -47.42232175311722, + "P200D": -55.25178913539312, + "P30D": 5.154765868040944, + "P7D": -3.190483985535217, + "PT1H": -0.14127191858445717 + }, + "totalVolume": "3161966021" + }, + "rate": "89.18" + }, + "solana:5eykt4UsFv8P8NJdTREpY1vzqKqZKvdp/token:CKfatsPMUf8SkiURsDXs7eK6GWb4Jsd6UDbs7twMCWxo": { + "conversionTime": 1778883654928, + "currency": "swift:0/iso4217:USD", + "expirationTime": 1778883714928, + "marketData": { + "allTimeHigh": "0.0400155", + "allTimeLow": "0.000000126334", + "circulatingSupply": "949129850.20701", + "fungible": true, + "marketCap": "749202", + "pricePercentChange": { + "P14D": 14.862518609550488, + "P1D": 7.3006442908221585, + "P1Y": -59.98070259811704, + "P200D": -59.91185775808495, + "P30D": 5.360310860346837, + "P7D": 4.527201949424081, + "PT1H": 0.6909528142019298 + }, + "totalVolume": "42.92" + }, + "rate": "0.00078997" + }, + "solana:5eykt4UsFv8P8NJdTREpY1vzqKqZKvdp/token:EPjFWdd5AufqSSqeM2qN1xzybapC8G4wEGGkZwyTDt1v": { + "conversionTime": 1775782690944, + "currency": "swift:0/iso4217:USD", + "expirationTime": 1775782750944, + "marketData": { + "allTimeHigh": "1.043", + "allTimeLow": "0.877647", + "circulatingSupply": "78372107497.56459", + "fungible": true, + "marketCap": "78373103638", + "pricePercentChange": { + "P14D": 0.028577631134345256, + "P1D": 0.010847119102307434, + "P1Y": 0.012811413402346905, + "P200D": 0.0368191099165073, + "P30D": 0.007645887802362862, + "P7D": -0.0017600412540627046, + "PT1H": 0.017467976489816257 + }, + "totalVolume": "13777922244" + }, + "rate": "1" + }, + "solana:5eykt4UsFv8P8NJdTREpY1vzqKqZKvdp/token:HeLp6NuQkmYB4pYWo2zYs22mESHXPQYzXbB8n4V98jwC": { + "conversionTime": 1778883654928, + "currency": "swift:0/iso4217:USD", + "expirationTime": 1778883714928, + "marketData": { + "allTimeHigh": "0.000889407667438147", + "allTimeLow": "0.000463525853260071", + "circulatingSupply": "0", + "fungible": true, + "marketCap": "0", + "pricePercentChange": { + "P1D": 0.41, + "PT1H": 0 + }, + "totalVolume": "23396127.858097084" + }, + "rate": "0.00064451682755887" + }, + "tron:728126428/slip44:195": { + "conversionTime": 1778883654297, + "currency": "swift:0/iso4217:USD", + "expirationTime": 1778883714297, + "marketData": { + "allTimeHigh": "0.431288", + "allTimeLow": "0.00180434", + "circulatingSupply": "94799036569.8615", + "fungible": true, + "marketCap": "33321457985", + "pricePercentChange": { + "P14D": 7.675279076690246, + "P1D": -0.5197478439691818, + "P1Y": 28.46600360121107, + "P200D": 17.455164714260412, + "P30D": 7.18872806430282, + "P7D": 0.5101487900033224, + "PT1H": 0.022868797531495236 + }, + "totalVolume": "508196552" + }, + "rate": "0.351641" + }, + "tron:728126428/trc20:TR7NHqjeKQxGTCi8q8ZY4pL8otSzgjLj6t": { + "conversionTime": 1778883654297, + "currency": "swift:0/iso4217:USD", + "expirationTime": 1778883714297, + "marketData": { + "allTimeHigh": "1.32", + "allTimeLow": "0.572521", + "circulatingSupply": "189857486520.226", + "fungible": true, + "marketCap": "189744171708", + "pricePercentChange": { + "P14D": -0.03387798395344689, + "P1D": -0.02535220514776764, + "P1Y": -0.06373228934736208, + "P200D": -0.06949974556027452, + "P30D": -0.07433101914580983, + "P7D": -0.0394601966608393, + "PT1H": 0.005024140054265617 + }, + "totalVolume": "66288777691" + }, + "rate": "0.999444" + } + }, + "historicalPrices": {}, + "marketData": { + "0x1": { + "0x0000000000000000000000000000000000000000": { + "allTimeHigh": 2.22823027616017, + "allTimeLow": 0.000195060081629089, + "assetId": "eip155:1/slip44:60", + "chainId": "0x1", + "circulatingSupply": 120686088.4883335, + "currency": "ETH", + "dilutedMarketCap": 120632328.063185, + "high1d": 1.03593189624545, + "id": "eip155:1/slip44:60", + "liquidity": 222194313.86783212, + "low1d": 0.994647432378864, + "marketCap": 120632328.063185, + "marketCapPercentChange1d": -3.38257, + "price": 1.00002198119956, + "priceChange1d": -76.26458719134371, + "pricePercentChange14d": -2.8277430344045373, + "pricePercentChange1d": -3.321572381861271, + "pricePercentChange1h": -0.1574400201994797, + "pricePercentChange1y": -12.471360273752076, + "pricePercentChange200d": -46.284177457432776, + "pricePercentChange30d": -6.087299720981746, + "pricePercentChange7d": -3.74558363779934, + "tokenAddress": "0x0000000000000000000000000000000000000000", + "totalVolume": 7739734.11936854 + }, + "0x14c3abF95Cb9C93a8b82C1CdCB76D72Cb87b2d4c": { + "allTimeHigh": null, + "allTimeLow": null, + "assetId": "eip155:1/erc20:0x14c3abf95cb9c93a8b82c1cdcb76d72cb87b2d4c", + "chainId": "0x1", + "circulatingSupply": null, + "currency": "ETH", + "dilutedMarketCap": 1991022097.40325, + "high1d": null, + "holderCount": 4077, + "id": "eip155:1/erc20:0x14c3abf95cb9c93a8b82c1cdcb76d72cb87b2d4c", + "low1d": null, + "marketCap": 1973183126.43974, + "marketCapPercentChange1d": null, + "price": 0.135560280380161, + "priceChange1d": null, + "pricePercentChange14d": null, + "pricePercentChange1d": 0.604561452034013, + "pricePercentChange1h": 0.08265308835922244, + "pricePercentChange1y": null, + "pricePercentChange200d": null, + "pricePercentChange30d": null, + "pricePercentChange7d": null, + "tokenAddress": "0x14c3abF95Cb9C93a8b82C1CdCB76D72Cb87b2d4c", + "totalSupply": 14687356000, + "totalVolume": 24652.6012683251 + }, + "0x6B175474E89094C44Da98b954EedeAC495271d0F": { + "allTimeHigh": 0.000549618571772508, + "allTimeLow": 0.000397329176688919, + "assetId": "eip155:1/erc20:0x6b175474e89094c44da98b954eedeac495271d0f", + "chainId": "0x1", + "circulatingSupply": 4367360463.951176, + "currency": "ETH", + "dilutedMarketCap": 1967012.69895026, + "high1d": 0.000450471435987982, + "id": "eip155:1/erc20:0x6b175474e89094c44da98b954eedeac495271d0f", + "liquidity": 60379963.43409096, + "low1d": 0.000450269608840315, + "marketCap": 1967012.69895026, + "marketCapPercentChange1d": -0.45195, + "price": 0.000450385389146008, + "priceChange1d": 0.00020955, + "pricePercentChange14d": -0.008813718515418416, + "pricePercentChange1d": 0.020965078596308084, + "pricePercentChange1h": 0.0030072144047737985, + "pricePercentChange1y": -0.04536756697679789, + "pricePercentChange200d": 0.03932527738770285, + "pricePercentChange30d": 0.01234198028596749, + "pricePercentChange7d": 0.0001514695859619424, + "tokenAddress": "0x6B175474E89094C44Da98b954EedeAC495271d0F", + "totalVolume": 111105.315445083 + }, + "0xD4419C2d3DAA986Dc30444Fa333a846be44Fd1eb": { + "allTimeHigh": 9.733304043957e-8, + "allTimeLow": 3.475375083538e-8, + "assetId": "eip155:1/erc20:0xd4419c2d3daa986dc30444fa333a846be44fd1eb", + "chainId": "0x1", + "circulatingSupply": 0, + "currency": "ETH", + "dilutedMarketCap": null, + "high1d": 5.772070530653e-8, + "id": "eip155:1/erc20:0xd4419c2d3daa986dc30444fa333a846be44fd1eb", + "low1d": 4.894030195976e-8, + "marketCap": 0, + "marketCapPercentChange1d": null, + "price": 5.276101450542e-8, + "priceChange1d": null, + "pricePercentChange14d": null, + "pricePercentChange1d": -3.28, + "pricePercentChange1h": 0, + "pricePercentChange1y": null, + "pricePercentChange200d": null, + "pricePercentChange30d": null, + "pricePercentChange7d": null, + "tokenAddress": "0xD4419C2d3DAA986Dc30444Fa333a846be44Fd1eb", + "totalVolume": 11354.7618723628 + }, + "0xacA92E438df0B2401fF60dA7E4337B687a2435DA": { + "allTimeHigh": 0.00048024048976188, + "allTimeLow": 0.000441409487159126, + "assetId": "eip155:1/erc20:0xaca92e438df0b2401ff60da7e4337b687a2435da", + "chainId": "0x1", + "circulatingSupply": 32316361.588697, + "currency": "ETH", + "dilutedMarketCap": 14555.7396512304, + "high1d": 0.000450507026043039, + "id": "eip155:1/erc20:0xaca92e438df0b2401ff60da7e4337b687a2435da", + "liquidity": 85643568.11797117, + "low1d": 0.000450304748388346, + "marketCap": 14555.7396512304, + "marketCapPercentChange1d": 3.20778, + "price": 0.000450411969060544, + "priceChange1d": 0.00011277, + "pricePercentChange14d": -0.05357011892774954, + "pricePercentChange1d": 0.011280512458890201, + "pricePercentChange1h": 0.00034274662372168167, + "pricePercentChange1y": null, + "pricePercentChange200d": 0.06785083497607862, + "pricePercentChange30d": -0.01352896373467335, + "pricePercentChange7d": 0.05234431818678485, + "tokenAddress": "0xacA92E438df0B2401fF60dA7E4337B687a2435DA", + "totalVolume": 1935.99627952063 + }, + "0xdAC17F958D2ee523a2206206994597C13D831ec7": { + "allTimeHigh": 0.000594669274376812, + "allTimeLow": 0.000257924733057187, + "assetId": "eip155:1/erc20:0xdac17f958d2ee523a2206206994597c13d831ec7", + "chainId": "0x1", + "circulatingSupply": 189857486520.226, + "currency": "ETH", + "dilutedMarketCap": 87942507.566859, + "high1d": 0.000450415573116752, + "id": "eip155:1/erc20:0xdac17f958d2ee523a2206206994597c13d831ec7", + "liquidity": 2848536010.9797935, + "low1d": 0.000450234018785257, + "marketCap": 85481082.5051709, + "marketCapPercentChange1d": -0.03779, + "price": 0.000450248435010091, + "priceChange1d": -0.000271573841914896, + "pricePercentChange14d": -0.03569121842096829, + "pricePercentChange1d": -0.027165594260039498, + "pricePercentChange1h": 0.002308422882559855, + "pricePercentChange1y": -0.06554498230287469, + "pricePercentChange200d": -0.07131233390284242, + "pricePercentChange30d": -0.07614351985637191, + "pricePercentChange7d": -0.04127332987545341, + "tokenAddress": "0xdAC17F958D2ee523a2206206994597C13D831ec7", + "totalVolume": 29828646.7306762 + } + }, + "0x10e6": { + "0x0000000000000000000000000000000000000000": { + "allTimeHigh": 2.22146544314654, + "allTimeLow": 0.000194467885708423, + "assetId": "eip155:4326/erc20:0x0000000000000000000000000000000000000000", + "chainId": "0x10e6", + "circulatingSupply": 120686088.4883335, + "currency": "ETH", + "dilutedMarketCap": 120720128.093345, + "high1d": 1.03975748342298, + "id": "eip155:4326/erc20:0x0000000000000000000000000000000000000000", + "liquidity": 223330440.70177978, + "low1d": 0.991627715853388, + "marketCap": 120720128.093345, + "marketCapPercentChange1d": -3.56045, + "price": 1.00011644865542, + "priceChange1d": -81.83246205101068, + "pricePercentChange14d": -3.2872704250270655, + "pricePercentChange1d": -3.5447206118919516, + "pricePercentChange1h": 0.2582454430094721, + "pricePercentChange1y": -12.783633768681588, + "pricePercentChange200d": -46.63493727333306, + "pricePercentChange30d": -4.507052948151581, + "pricePercentChange7d": -2.821105875967681, + "tokenAddress": "0x0000000000000000000000000000000000000000", + "totalVolume": 8094503.6751173 + }, + "0x021ee124cF23D302A7f725AE7a01B77A8ce9782B": { + "allTimeHigh": 0.000050231514486367, + "allTimeLow": 0.0000395164767127384, + "assetId": "eip155:4326/erc20:0x021ee124cf23d302a7f725ae7a01b77a8ce9782b", + "chainId": "0x10e6", + "circulatingSupply": 999998, + "currency": "ETH", + "dilutedMarketCap": 40.2630400334173, + "high1d": 0.000050231514486367, + "id": "eip155:4326/erc20:0x021ee124cf23d302a7f725ae7a01b77a8ce9782b", + "low1d": 0.0000395164767127384, + "marketCap": 40.2630400334173, + "marketCapPercentChange1d": 0, + "price": 0.000040272422337261, + "priceChange1d": -0.018242515298354134, + "pricePercentChange14d": null, + "pricePercentChange1d": -16.83154629765667, + "pricePercentChange1h": 1.5010520235567582, + "pricePercentChange1y": null, + "pricePercentChange200d": null, + "pricePercentChange30d": null, + "pricePercentChange7d": null, + "tokenAddress": "0x021ee124cF23D302A7f725AE7a01B77A8ce9782B", + "totalVolume": 2.46278327653212 + }, + "0x141cF6BFe9D5057883B9BECB39fEE8A62982dC93": { + "allTimeHigh": 3.916045571476e-8, + "allTimeLow": 8.91541513864e-9, + "assetId": "eip155:4326/erc20:0x141cf6bfe9d5057883b9becb39fee8a62982dc93", + "chainId": "0x10e6", + "circulatingSupply": 1000000000, + "currency": "ETH", + "dilutedMarketCap": 8.9722806656252, + "high1d": 1.020444493451e-8, + "id": "eip155:4326/erc20:0x141cf6bfe9d5057883b9becb39fee8a62982dc93", + "low1d": 8.91541513864e-9, + "marketCap": 8.9722806656252, + "marketCapPercentChange1d": -11.05245, + "price": 8.97380324785e-9, + "priceChange1d": -0.000002481538597954, + "pricePercentChange14d": -56.3091553718725, + "pricePercentChange1d": -11.049612079999722, + "pricePercentChange1h": -0.03367699255946559, + "pricePercentChange1y": null, + "pricePercentChange200d": null, + "pricePercentChange30d": null, + "pricePercentChange7d": -31.234316016961134, + "tokenAddress": "0x141cF6BFe9D5057883B9BECB39fEE8A62982dC93", + "totalVolume": 0.191971120330301 + }, + "0x28B7E77f82B25B95953825F1E3eA0E36c1c29861": { + "allTimeHigh": 0.000101011428951114, + "allTimeLow": 0.0000435620208713585, + "assetId": "eip155:4326/erc20:0x28b7e77f82b25b95953825f1e3ea0e36c1c29861", + "chainId": "0x10e6", + "circulatingSupply": 1129792788, + "currency": "ETH", + "dilutedMarketCap": 442465.13658534, + "high1d": 0.0000481567159276941, + "id": "eip155:4326/erc20:0x28b7e77f82b25b95953825f1e3ea0e36c1c29861", + "liquidity": 2855239.9891444533, + "low1d": 0.0000435620208713585, + "marketCap": 49989.3920188362, + "marketCapPercentChange1d": -7.09271, + "price": 0.0000442469583064427, + "priceChange1d": -0.007530708191308022, + "pricePercentChange14d": -36.06214202171261, + "pricePercentChange1d": -7.101346455427031, + "pricePercentChange1h": 0.14967476779480912, + "pricePercentChange1y": null, + "pricePercentChange200d": null, + "pricePercentChange30d": null, + "pricePercentChange7d": -17.732750283621616, + "tokenAddress": "0x28B7E77f82B25B95953825F1E3eA0E36c1c29861", + "totalVolume": 11953.7360685871 + }, + "0x2A3a4c92ce37ABd7239fB010BC390710f4062407": { + "allTimeHigh": 1.4770364536185e-7, + "allTimeLow": 4.206710206269e-8, + "assetId": "eip155:4326/erc20:0x2a3a4c92ce37abd7239fb010bc390710f4062407", + "chainId": "0x10e6", + "circulatingSupply": 1000000000, + "currency": "ETH", + "dilutedMarketCap": 94.3153096398602, + "high1d": 9.44121630394e-8, + "id": "eip155:4326/erc20:0x2a3a4c92ce37abd7239fb010bc390710f4062407", + "low1d": 5.292441236138e-8, + "marketCap": 94.3153096398602, + "marketCapPercentChange1d": 45.5544, + "price": 9.444312074675e-8, + "priceChange1d": 0.00006704, + "pricePercentChange14d": null, + "pricePercentChange1d": 45.753409801359936, + "pricePercentChange1h": 9.704145974622687, + "pricePercentChange1y": null, + "pricePercentChange200d": null, + "pricePercentChange30d": null, + "pricePercentChange7d": null, + "tokenAddress": "0x2A3a4c92ce37ABd7239fB010BC390710f4062407", + "totalVolume": 13.5059633082996 + }, + "0x551DFe38994eC53c9E7E18084D73893225Eea3bf": { + "allTimeHigh": 0.00560525848514851, + "allTimeLow": 0.000119399641101792, + "assetId": "eip155:4326/erc20:0x551dfe38994ec53c9e7e18084d73893225eea3bf", + "chainId": "0x10e6", + "circulatingSupply": 24307735, + "currency": "ETH", + "dilutedMarketCap": 5901.65808623722, + "high1d": 0.00026151225669028, + "id": "eip155:4326/erc20:0x551dfe38994ec53c9e7e18084d73893225eea3bf", + "liquidity": 427719.15401152876, + "low1d": 0.000242347931826273, + "marketCap": 5901.65898451582, + "marketCapPercentChange1d": -6.89892, + "price": 0.000243147399783289, + "priceChange1d": -0.03945605703638788, + "pricePercentChange14d": 0.46856877312401923, + "pricePercentChange1d": -6.793178567321702, + "pricePercentChange1h": 0.056885781252187635, + "pricePercentChange1y": -64.41541275201574, + "pricePercentChange200d": -63.45407892457979, + "pricePercentChange30d": -24.487791647213893, + "pricePercentChange7d": -4.78953293448421, + "tokenAddress": "0x551DFe38994eC53c9E7E18084D73893225Eea3bf", + "totalVolume": 440.183464018802 + }, + "0x5d3a1Ff2b6BAb83b63cd9AD0787074081a52ef34": { + "allTimeHigh": 0.000464410037952208, + "allTimeLow": 0.000417468692974899, + "assetId": "eip155:4326/erc20:0x5d3a1ff2b6bab83b63cd9ad0787074081a52ef34", + "chainId": "0x10e6", + "circulatingSupply": 4232150408.086951, + "currency": "ETH", + "dilutedMarketCap": 1901123.64022415, + "high1d": 0.000449588440996286, + "id": "eip155:4326/erc20:0x5d3a1ff2b6bab83b63cd9ad0787074081a52ef34", + "liquidity": 525892196.31861883, + "low1d": 0.000449139301694592, + "marketCap": 1901123.64022415, + "marketCapPercentChange1d": 2.51353, + "price": 0.000449139301694592, + "priceChange1d": -0.000163887231527493, + "pricePercentChange14d": 0.09062972134891878, + "pricePercentChange1d": -0.01638243407765554, + "pricePercentChange1h": 0.0035920985512261356, + "pricePercentChange1y": -0.05544490072527043, + "pricePercentChange200d": 0.10212559281064268, + "pricePercentChange30d": 0.0041774338997160165, + "pricePercentChange7d": 0.11019939244659449, + "tokenAddress": "0x5d3a1Ff2b6BAb83b63cd9AD0787074081a52ef34", + "totalVolume": 138484.167386066 + }, + "0x601aC63637933D88285A025C685AC4e9a92a98dA": { + "allTimeHigh": 3.2678795811929, + "allTimeLow": 0.251548570880395, + "assetId": "eip155:4326/erc20:0x601ac63637933d88285a025c685ac4e9a92a98da", + "bondingCurveProgressPercent": null, + "chainId": "0x10e6", + "circulatingSupply": 3380818.245608431, + "currency": "ETH", + "dilutedMarketCap": 4240298.51367444, + "high1d": 1.29066926256799, + "id": "eip155:4326/erc20:0x601ac63637933d88285a025c685ac4e9a92a98da", + "liquidity": 8077159.6306, + "low1d": 1.24354274977244, + "marketCap": 4240298.51367444, + "marketCapPercentChange1d": -1.12805, + "price": 1.25391022229275, + "priceChange1d": -37.235236253446146, + "pricePercentChange14d": 1.2063039653358774, + "pricePercentChange1d": -1.3197330751332634, + "pricePercentChange1h": 0.13357444173607796, + "pricePercentChange1y": -12.151001581806655, + "pricePercentChange200d": -42.028607111084625, + "pricePercentChange30d": 1.201128478278992, + "pricePercentChange7d": -3.7223883402848177, + "tokenAddress": "0x601aC63637933D88285A025C685AC4e9a92a98dA", + "totalVolume": 1454.33436319387 + }, + "0x88887bE419578051FF9F4eb6C858A951921D8888": { + "allTimeHigh": null, + "allTimeLow": null, + "assetId": "eip155:4326/erc20:0x88887be419578051ff9f4eb6c858a951921d8888", + "bondingCurveProgressPercent": null, + "chainId": "0x10e6", + "circulatingSupply": null, + "currency": "ETH", + "dilutedMarketCap": 1.36845079891639, + "high1d": null, + "id": "eip155:4326/erc20:0x88887be419578051ff9f4eb6c858a951921d8888", + "liquidity": 432356.40254465915, + "low1d": null, + "marketCap": null, + "marketCapPercentChange1d": null, + "price": 0.000477670077265062, + "priceChange1d": null, + "pricePercentChange14d": null, + "pricePercentChange1d": 0.02, + "pricePercentChange1h": 0, + "pricePercentChange1y": null, + "pricePercentChange200d": null, + "pricePercentChange30d": null, + "pricePercentChange7d": null, + "tokenAddress": "0x88887bE419578051FF9F4eb6C858A951921D8888", + "totalSupply": 2864.845139, + "totalVolume": 14.3119574860866 + }, + "0xB0F70C0bD6FD87dbEb7C10dC692a2a6106817072": { + "allTimeHigh": 56.4713297192755, + "allTimeLow": 3.5024186143151, + "assetId": "eip155:4326/erc20:0xb0f70c0bd6fd87dbeb7c10dc692a2a6106817072", + "bondingCurveProgressPercent": null, + "chainId": "0x10e6", + "circulatingSupply": 2683.21139279, + "currency": "ETH", + "dilutedMarketCap": 95787.4410140557, + "high1d": 36.5361812967418, + "id": "eip155:4326/erc20:0xb0f70c0bd6fd87dbeb7c10dc692a2a6106817072", + "liquidity": 2240904.615, + "low1d": 35.3561619329811, + "marketCap": 95787.4410140557, + "marketCapPercentChange1d": -1.48625, + "price": 35.7160005374429, + "priceChange1d": -1140.6284209429577, + "pricePercentChange14d": 4.842534662084739, + "pricePercentChange1d": -1.412647133548963, + "pricePercentChange1h": -0.2090915274563225, + "pricePercentChange1y": -23.52439534278479, + "pricePercentChange200d": -28.47365733529833, + "pricePercentChange30d": 10.332383149092921, + "pricePercentChange7d": -2.3539126387487546, + "tokenAddress": "0xB0F70C0bD6FD87dbEb7C10dC692a2a6106817072", + "totalVolume": 3900.74020768621 + }, + "0xB8CE59FC3717ada4C02eaDF9682A9e934F625ebb": { + "allTimeHigh": 0.000472494545382711, + "allTimeLow": 0.000438241834817576, + "assetId": "eip155:4326/erc20:0xb8ce59fc3717ada4c02eadf9682a9e934f625ebb", + "chainId": "0x10e6", + "circulatingSupply": 4064676256.80415, + "currency": "ETH", + "dilutedMarketCap": 1824555.96157524, + "high1d": 0.000449139301694592, + "id": "eip155:4326/erc20:0xb8ce59fc3717ada4c02eadf9682a9e934f625ebb", + "liquidity": 158753467.87302837, + "low1d": 0.00044865917178108, + "marketCap": 1824555.96157524, + "marketCapPercentChange1d": -0.01865, + "price": 0.000448911588068633, + "priceChange1d": -0.000499799877974549, + "pricePercentChange14d": -0.017156270178099318, + "pricePercentChange1d": -0.04998034251347325, + "pricePercentChange1h": 0.02862789282903502, + "pricePercentChange1y": -0.11391889449250431, + "pricePercentChange200d": -0.03486240254428877, + "pricePercentChange30d": -0.0719008113930739, + "pricePercentChange7d": -0.03854745674308781, + "tokenAddress": "0xB8CE59FC3717ada4C02eaDF9682A9e934F625ebb", + "totalVolume": 65709.5568238572 + }, + "0xFAfDdbb3FC7688494971a79cc65DCa3EF82079E7": { + "allTimeHigh": 0.0004567746698234, + "allTimeLow": 0.000438860748775311, + "assetId": "eip155:4326/erc20:0xfafddbb3fc7688494971a79cc65dca3ef82079e7", + "chainId": "0x10e6", + "circulatingSupply": 281275585.6147235, + "currency": "ETH", + "dilutedMarketCap": 126256.623872405, + "high1d": 0.000450037580297981, + "id": "eip155:4326/erc20:0xfafddbb3fc7688494971a79cc65dca3ef82079e7", + "liquidity": 13345597.746442312, + "low1d": 0.000447623007412071, + "marketCap": 126256.623872405, + "marketCapPercentChange1d": 4.40592, + "price": 0.000448871614670782, + "priceChange1d": -0.001378740863767325, + "pricePercentChange14d": -0.2108647292307075, + "pricePercentChange1d": -0.13776625342665758, + "pricePercentChange1h": 0.05596716350669015, + "pricePercentChange1y": null, + "pricePercentChange200d": null, + "pricePercentChange30d": -0.02513336939546402, + "pricePercentChange7d": -0.1441819905878118, + "tokenAddress": "0xFAfDdbb3FC7688494971a79cc65DCa3EF82079E7", + "totalVolume": 2618.45338396416 + }, + "0xcCcc62962d17b8914c62D74FfB843d73B2a3cccC": { + "allTimeHigh": 0.000525492982982672, + "allTimeLow": 0.000407420099378086, + "assetId": "eip155:4326/erc20:0xcccc62962d17b8914c62d74ffb843d73b2a3cccc", + "chainId": "0x10e6", + "circulatingSupply": 123899232.9785529, + "currency": "ETH", + "dilutedMarketCap": 55633.0334995682, + "high1d": 0.00044905935489889, + "id": "eip155:4326/erc20:0xcccc62962d17b8914c62d74ffb843d73b2a3cccc", + "liquidity": 26950.36414154749, + "low1d": 0.000449018483222436, + "marketCap": 55633.0334995682, + "marketCapPercentChange1d": 8.605, + "price": 0.000449018483222436, + "priceChange1d": -0.000090829999999986, + "pricePercentChange14d": -0.01004569551248654, + "pricePercentChange1d": -0.009084620605468429, + "pricePercentChange1h": null, + "pricePercentChange1y": null, + "pricePercentChange200d": -0.1954312465533966, + "pricePercentChange30d": -0.01810459664436961, + "pricePercentChange7d": -0.016730705360790535, + "tokenAddress": "0xcCcc62962d17b8914c62D74FfB843d73B2a3cccC", + "totalVolume": 3.67164192906502 + } + }, + "0x144": { + "0x0000000000000000000000000000000000000000": { + "allTimeHigh": 2.22146544314654, + "allTimeLow": 0.000194467885708423, + "assetId": "eip155:324/slip44:60", + "chainId": "0x144", + "circulatingSupply": 120686088.4883335, + "currency": "ETH", + "dilutedMarketCap": 120720128.093345, + "high1d": 1.03975748342298, + "id": "eip155:324/slip44:60", + "liquidity": 223330440.70177978, + "low1d": 0.991627715853388, + "marketCap": 120720128.093345, + "marketCapPercentChange1d": -3.56045, + "price": 1.00011644865542, + "priceChange1d": -81.83246205101068, + "pricePercentChange14d": -3.2872704250270655, + "pricePercentChange1d": -3.5447206118919516, + "pricePercentChange1h": 0.2582454430094721, + "pricePercentChange1y": -12.783633768681588, + "pricePercentChange200d": -46.63493727333306, + "pricePercentChange30d": -4.507052948151581, + "pricePercentChange7d": -2.821105875967681, + "tokenAddress": "0x0000000000000000000000000000000000000000", + "totalVolume": 8094503.6751173 + } + }, + "0x2105": { + "0x0000000000000000000000000000000000000000": { + "allTimeHigh": 2.22146544314654, + "allTimeLow": 0.000194467885708423, + "assetId": "eip155:8453/slip44:60", + "chainId": "0x2105", + "circulatingSupply": 120686088.4883335, + "currency": "ETH", + "dilutedMarketCap": 120720128.093345, + "high1d": 1.03975748342298, + "id": "eip155:8453/slip44:60", + "liquidity": 223330440.70177978, + "low1d": 0.991627715853388, + "marketCap": 120720128.093345, + "marketCapPercentChange1d": -3.56045, + "price": 1.00011644865542, + "priceChange1d": -81.83246205101068, + "pricePercentChange14d": -3.2872704250270655, + "pricePercentChange1d": -3.5447206118919516, + "pricePercentChange1h": 0.2582454430094721, + "pricePercentChange1y": -12.783633768681588, + "pricePercentChange200d": -46.63493727333306, + "pricePercentChange30d": -4.507052948151581, + "pricePercentChange7d": -2.821105875967681, + "tokenAddress": "0x0000000000000000000000000000000000000000", + "totalVolume": 8094503.6751173 + }, + "0x07d15798a67253D76cea61F0eA6F57AeDC59DffB": { + "allTimeHigh": 1.17674497044e-8, + "allTimeLow": 1.72918631152e-9, + "assetId": "eip155:8453/erc20:0x07d15798a67253d76cea61f0ea6f57aedc59dffb", + "chainId": "0x2105", + "circulatingSupply": 57280056931.41685, + "currency": "ETH", + "dilutedMarketCap": 140.452596729423, + "high1d": 2.32654158278e-9, + "id": "eip155:8453/erc20:0x07d15798a67253d76cea61f0ea6f57aedc59dffb", + "low1d": 2.22773093641e-9, + "marketCap": 129.082635307026, + "marketCapPercentChange1d": -1.65997, + "price": 2.25467929451e-9, + "priceChange1d": -8.2699184879e-8, + "pricePercentChange14d": -32.30970582175867, + "pricePercentChange1d": -1.6208714761641232, + "pricePercentChange1h": 0.2941338910852457, + "pricePercentChange1y": null, + "pricePercentChange200d": -77.95905579822896, + "pricePercentChange30d": 3.3369888456255006, + "pricePercentChange7d": -13.349111200132851, + "tokenAddress": "0x07d15798a67253D76cea61F0eA6F57AeDC59DffB", + "totalVolume": 0.0630636493509376 + }, + "0x3d63825B0d8669307366E6c8202f656b9E91D368": { + "allTimeHigh": 6.0791902762966e-7, + "allTimeLow": 1.40131462129e-9, + "assetId": "eip155:8453/erc20:0x3d63825b0d8669307366e6c8202f656b9e91d368", + "bondingCurveProgressPercent": null, + "chainId": "0x2105", + "circulatingSupply": 4000000000, + "currency": "ETH", + "dilutedMarketCap": 13.8406767210205, + "high1d": 3.61107998562e-9, + "id": "eip155:8453/erc20:0x3d63825b0d8669307366e6c8202f656b9e91d368", + "liquidity": 11387.8844, + "low1d": 3.43591565796e-9, + "marketCap": 13.8406767210205, + "marketCapPercentChange1d": -3.93333, + "price": 3.45837262305e-9, + "priceChange1d": -3.29129201587e-7, + "pricePercentChange14d": -2.3357451974726313, + "pricePercentChange1d": -4.09713020375724, + "pricePercentChange1h": 0.16441515038346624, + "pricePercentChange1y": -89.85827637768575, + "pricePercentChange200d": -89.90275105023916, + "pricePercentChange30d": -37.529899727974566, + "pricePercentChange7d": -36.41436168250692, + "tokenAddress": "0x3d63825B0d8669307366E6c8202f656b9E91D368", + "totalSupply": 4998268339.84631, + "totalVolume": 0.0265351499441165 + }, + "0x623cD3a3EdF080057892aaF8D773Bbb7A5C9b6e9": { + "allTimeHigh": 0.0000282930811709491, + "allTimeLow": 1.308517071743e-7, + "assetId": "eip155:8453/erc20:0x623cd3a3edf080057892aaf8d773bbb7a5c9b6e9", + "chainId": "0x2105", + "circulatingSupply": 541911440.967264, + "currency": "ETH", + "dilutedMarketCap": null, + "high1d": 2.9787055131682e-7, + "id": "eip155:8453/erc20:0x623cd3a3edf080057892aaf8d773bbb7a5c9b6e9", + "low1d": 2.7582891975252e-7, + "marketCap": 160.912210589189, + "marketCapPercentChange1d": null, + "price": 2.9693451443279e-7, + "priceChange1d": null, + "pricePercentChange14d": null, + "pricePercentChange1d": 0, + "pricePercentChange1h": 0, + "pricePercentChange1y": null, + "pricePercentChange200d": null, + "pricePercentChange30d": null, + "pricePercentChange7d": null, + "tokenAddress": "0x623cD3a3EdF080057892aaF8D773Bbb7A5C9b6e9", + "totalVolume": 1000.3589078184 + }, + "0x88Fb150BDc53A65fe94Dea0c9BA0a6dAf8C6e196": { + "allTimeHigh": 0.023669641199305, + "allTimeLow": 0.0000665548091430097, + "assetId": "eip155:8453/erc20:0x88fb150bdc53a65fe94dea0c9ba0a6daf8c6e196", + "chainId": "0x2105", + "circulatingSupply": 727099970.4255477, + "currency": "ETH", + "dilutedMarketCap": 4536336.15015277, + "high1d": 0.00481028192114908, + "id": "eip155:8453/erc20:0x88fb150bdc53a65fe94dea0c9ba0a6daf8c6e196", + "liquidity": 25394733.905408483, + "low1d": 0.00449139301694592, + "marketCap": 3298369.88046457, + "marketCapPercentChange1d": -5.45313, + "price": 0.00453630694711538, + "priceChange1d": -0.5860760264187057, + "pricePercentChange14d": 9.549562890507982, + "pricePercentChange1d": -5.484734458033978, + "pricePercentChange1h": 0.27955988434552076, + "pricePercentChange1y": -38.457091989408184, + "pricePercentChange200d": -45.076452354811074, + "pricePercentChange30d": 10.19714737918484, + "pricePercentChange7d": 0.2734768865069643, + "tokenAddress": "0x88Fb150BDc53A65fe94Dea0c9BA0a6dAf8C6e196", + "totalVolume": 174421.187161979 + }, + "0xC438B0c0E80A8Fa1B36898d1b36A3fc2eC371C54": { + "allTimeHigh": 0.00000176089338070445, + "allTimeLow": 9.32644248634e-9, + "assetId": "eip155:8453/erc20:0xc438b0c0e80a8fa1b36898d1b36a3fc2ec371c54", + "chainId": "0x2105", + "circulatingSupply": 999999999.999993, + "currency": "ETH", + "dilutedMarketCap": 9.77526070034692, + "high1d": 1.00490398109e-8, + "id": "eip155:8453/erc20:0xc438b0c0e80a8fa1b36898d1b36a3fc2ec371c54", + "low1d": 9.55533977548e-9, + "marketCap": 9.77526070034692, + "marketCapPercentChange1d": -1.37639, + "price": 9.77526070034e-9, + "priceChange1d": -1.95298887221e-7, + "pricePercentChange14d": -4.017200874762987, + "pricePercentChange1d": -0.8887153254685204, + "pricePercentChange1h": 1.2671305504680657, + "pricePercentChange1y": -89.47149524623555, + "pricePercentChange200d": -46.98406565336412, + "pricePercentChange30d": -11.057703277084032, + "pricePercentChange7d": -0.6531534823651103, + "tokenAddress": "0xC438B0c0E80A8Fa1B36898d1b36A3fc2eC371C54", + "totalVolume": 0.00662006865611191 + }, + "0xCa72827a3D211CfD8F6b00Ac98824872b72CAb49": { + "allTimeHigh": 0.000489112699545411, + "allTimeLow": 0.000325322824699935, + "assetId": "eip155:8453/erc20:0xca72827a3d211cfd8f6b00ac98824872b72cab49", + "chainId": "0x2105", + "circulatingSupply": 75655587.465199, + "currency": "ETH", + "dilutedMarketCap": 33809.6337457343, + "high1d": 0.000446932680305366, + "id": "eip155:8453/erc20:0xca72827a3d211cfd8f6b00ac98824872b72cab49", + "liquidity": 23190.7601403022, + "low1d": 0.000446064943174492, + "marketCap": 33809.6337457343, + "marketCapPercentChange1d": 0.19225, + "price": 0.000446929985469556, + "priceChange1d": 0.00176613, + "pricePercentChange14d": 0.13495542348879913, + "pricePercentChange1d": 0.17780131505349114, + "pricePercentChange1h": -0.00012403951379980248, + "pricePercentChange1y": -2.2753388874703075, + "pricePercentChange200d": -0.01097618847535708, + "pricePercentChange30d": -0.003764989536322369, + "pricePercentChange7d": 0.1289981566894027, + "tokenAddress": "0xCa72827a3D211CfD8F6b00Ac98824872b72CAb49", + "totalVolume": 0.016281299686429 + }, + "0xD968196FA6977c4e58F2af5aC01C655ea8332d22": { + "allTimeHigh": 1.24134363191e-9, + "allTimeLow": 1.7475115803e-10, + "assetId": "eip155:8453/erc20:0xd968196fa6977c4e58f2af5ac01c655ea8332d22", + "chainId": "0x2105", + "circulatingSupply": 1000000000000, + "currency": "ETH", + "dilutedMarketCap": null, + "high1d": 2.1401144223e-10, + "id": "eip155:8453/erc20:0xd968196fa6977c4e58f2af5ac01c655ea8332d22", + "low1d": 2.0278850548e-10, + "marketCap": 203.93453604027, + "marketCapPercentChange1d": null, + "price": 2.0393453604e-10, + "priceChange1d": null, + "pricePercentChange14d": null, + "pricePercentChange1d": 0, + "pricePercentChange1h": 0, + "pricePercentChange1y": null, + "pricePercentChange200d": null, + "pricePercentChange30d": null, + "pricePercentChange7d": null, + "tokenAddress": "0xD968196FA6977c4e58F2af5aC01C655ea8332d22", + "totalVolume": 24096.8106952107 + } + }, + "0x38": { + "0x0000000000000000000000000000000000000000": { + "allTimeHigh": 2.02837046289812, + "allTimeLow": 0.0000589530190589262, + "assetId": "eip155:56/slip44:714", + "chainId": "0x38", + "circulatingSupply": 134785404.6, + "currency": "BNB", + "dilutedMarketCap": 134793081.239679, + "high1d": 1.0208700193964, + "id": "eip155:56/slip44:714", + "liquidity": 24211012.802103695, + "low1d": 0.993183300766199, + "marketCap": 134793081.959238, + "marketCapPercentChange1d": -1.18365, + "price": 1.00006796609403, + "priceChange1d": -8.392781575008257, + "pricePercentChange14d": 8.838013662942206, + "pricePercentChange1d": -1.2272858615710187, + "pricePercentChange1h": 0.16068818413752303, + "pricePercentChange1y": 3.1686042052888475, + "pricePercentChange200d": -40.937249206600924, + "pricePercentChange30d": 8.842672837217838, + "pricePercentChange7d": 5.13020022049412, + "tokenAddress": "0x0000000000000000000000000000000000000000", + "totalVolume": 1736806.69848602 + }, + "0x000Ae314E2A2172a039B26378814C252734f556A": { + "allTimeHigh": 0.00356818138496227, + "allTimeLow": 0.000147632394372922, + "assetId": "eip155:56/erc20:0x000ae314e2a2172a039b26378814c252734f556a", + "chainId": "0x38", + "circulatingSupply": 2579922243.4698935, + "currency": "BNB", + "dilutedMarketCap": 7747697.17679333, + "high1d": 0.001025462757428, + "id": "eip155:56/erc20:0x000ae314e2a2172a039b26378814c252734f556a", + "liquidity": 4790543.990589259, + "low1d": 0.000972622580893597, + "marketCap": 2555343.53433793, + "marketCapPercentChange1d": -1.15991, + "price": 0.000990587855966266, + "priceChange1d": -0.007843650335220942, + "pricePercentChange14d": 1.3287347990856841, + "pricePercentChange1d": -1.1587594494266478, + "pricePercentChange1h": 0.2642577610938094, + "pricePercentChange1y": null, + "pricePercentChange200d": -38.13233364844654, + "pricePercentChange30d": 1.429224312589996, + "pricePercentChange7d": 0.13593561184418324, + "tokenAddress": "0x000Ae314E2A2172a039B26378814C252734f556A", + "totalVolume": 187952.731499434 + }, + "0x1AF3F329e8BE154074D8769D1FFa4eE058B1DBc3": { + "allTimeHigh": 0.00156644643373032, + "allTimeLow": 0.00122361675072168, + "assetId": "eip155:56/erc20:0x1af3f329e8be154074d8769d1ffa4ee058b1dbc3", + "chainId": "0x38", + "circulatingSupply": 31102957.95169499, + "currency": "BNB", + "dilutedMarketCap": null, + "high1d": 0.0014928731608682, + "id": "eip155:56/erc20:0x1af3f329e8be154074d8769d1ffa4ee058b1dbc3", + "low1d": 0.00145999041999434, + "marketCap": 46023.0144285128, + "marketCapPercentChange1d": null, + "price": 0.00147969895660695, + "priceChange1d": null, + "pricePercentChange14d": null, + "pricePercentChange1d": -0.02, + "pricePercentChange1h": 0.03, + "pricePercentChange1y": null, + "pricePercentChange200d": null, + "pricePercentChange30d": null, + "pricePercentChange7d": null, + "tokenAddress": "0x1AF3F329e8BE154074D8769D1FFa4eE058B1DBc3", + "totalVolume": 1011.93270401443 + }, + "0x55d398326f99059fF775485246999027B3197955": { + "allTimeHigh": 0.00155460184822008, + "allTimeLow": 0.00139497533044484, + "assetId": "eip155:56/erc20:0x55d398326f99059ff775485246999027b3197955", + "chainId": "0x38", + "circulatingSupply": 9184992539.61384, + "currency": "BNB", + "dilutedMarketCap": 13590527.0788058, + "high1d": 0.00148205376196981, + "id": "eip155:56/erc20:0x55d398326f99059ff775485246999027b3197955", + "liquidity": 9507150363.942354, + "low1d": 0.00147804436977459, + "marketCap": 13590527.0788058, + "marketCapPercentChange1d": -0.08503, + "price": 0.00147984770791852, + "priceChange1d": -0.000340430601630359, + "pricePercentChange14d": -0.0322063239459094, + "pricePercentChange1d": -0.034048150598278024, + "pricePercentChange1h": 0.00581404996661114, + "pricePercentChange1y": -0.0428302882383756, + "pricePercentChange200d": -0.04613295589955028, + "pricePercentChange30d": -0.08244182974357114, + "pricePercentChange7d": -0.02470303236214015, + "tokenAddress": "0x55d398326f99059fF775485246999027B3197955", + "totalVolume": 1263277.47916745 + }, + "0x5CA42204cDaa70d5c773946e69dE942b85CA6706": { + "allTimeHigh": 0.0127406692261219, + "allTimeLow": 0.0000019953766713796, + "assetId": "eip155:56/erc20:0x5ca42204cdaa70d5c773946e69de942b85ca6706", + "chainId": "0x38", + "circulatingSupply": 91800000, + "currency": "BNB", + "dilutedMarketCap": null, + "high1d": 0.00000236941773164109, + "id": "eip155:56/erc20:0x5ca42204cdaa70d5c773946e69de942b85ca6706", + "low1d": 0.00000230481338751991, + "marketCap": 214.93303019038, + "marketCapPercentChange1d": null, + "price": 0.00000234131841165992, + "priceChange1d": null, + "pricePercentChange14d": null, + "pricePercentChange1d": 0, + "pricePercentChange1h": 0, + "pricePercentChange1y": null, + "pricePercentChange200d": null, + "pricePercentChange30d": null, + "pricePercentChange7d": null, + "tokenAddress": "0x5CA42204cDaa70d5c773946e69dE942b85CA6706", + "totalVolume": 445.212919855975 + }, + "0x683e9dCf085E5efCc7925858aAcE94D4b8882024": { + "allTimeHigh": 3.41191423e-12, + "allTimeLow": 1.995212e-14, + "assetId": "eip155:56/erc20:0x683e9dcf085e5efcc7925858aace94d4b8882024", + "chainId": "0x38", + "circulatingSupply": 0, + "currency": "BNB", + "dilutedMarketCap": null, + "high1d": 3.728611e-14, + "id": "eip155:56/erc20:0x683e9dcf085e5efcc7925858aace94d4b8882024", + "low1d": 3.443452e-14, + "marketCap": 0, + "marketCapPercentChange1d": null, + "price": 3.550574e-14, + "priceChange1d": null, + "pricePercentChange14d": null, + "pricePercentChange1d": 0, + "pricePercentChange1h": 0, + "pricePercentChange1y": null, + "pricePercentChange200d": null, + "pricePercentChange30d": null, + "pricePercentChange7d": null, + "tokenAddress": "0x683e9dCf085E5efCc7925858aAcE94D4b8882024", + "totalVolume": 17674583537.9567 + }, + "0xF8A0BF9cF54Bb92F17374d9e9A321E6a111a51bD": { + "allTimeHigh": 0.07802620704876, + "allTimeLow": 0.000219395776833139, + "assetId": "eip155:56/erc20:0xf8a0bf9cf54bb92f17374d9e9a321e6a111a51bd", + "chainId": "0x38", + "circulatingSupply": 727099970.4255477, + "currency": "BNB", + "dilutedMarketCap": 14966341.1641704, + "high1d": 0.0158569388518448, + "id": "eip155:56/erc20:0xf8a0bf9cf54bb92f17374d9e9a321e6a111a51bd", + "liquidity": 25394733.905408483, + "low1d": 0.0148057318878102, + "marketCap": 10882026.218014, + "marketCapPercentChange1d": -5.15101, + "price": 0.0149685949385762, + "priceChange1d": -0.5751111324333795, + "pricePercentChange14d": 9.619839629825584, + "pricePercentChange1d": -5.3843810398898535, + "pricePercentChange1h": 0.3191299402527536, + "pricePercentChange1y": -38.417611823636726, + "pricePercentChange200d": -45.04121855069159, + "pricePercentChange30d": 10.267839548058673, + "pricePercentChange7d": 0.33780295782744973, + "tokenAddress": "0xF8A0BF9cF54Bb92F17374d9e9A321E6a111a51bD", + "totalVolume": 574526.434998599 + } + }, + "0x89": { + "0x0000000000000000000000000000000000001010": { + "allTimeHigh": 14.2105297064184, + "allTimeLow": 0.89727928385806, + "assetId": "eip155:137/slip44:966", + "chainId": "0x89", + "circulatingSupply": 10643422083.23364, + "currency": "POL", + "dilutedMarketCap": 10645690633.0824, + "high1d": 1.05135887998494, + "id": "eip155:137/slip44:966", + "liquidity": 60510.19173914319, + "low1d": 0.990705254741885, + "marketCap": 10645690633.0824, + "marketCapPercentChange1d": -3.96397, + "price": 1.00002471840982, + "priceChange1d": -0.003760478954601507, + "pricePercentChange14d": -4.427381671318122, + "pricePercentChange1d": -3.977658708234026, + "pricePercentChange1h": 0.2537464177575439, + "pricePercentChange1y": -62.021560144973535, + "pricePercentChange200d": -54.63098793051571, + "pricePercentChange30d": 6.913323318502579, + "pricePercentChange7d": -8.75604708259211, + "tokenAddress": "0x0000000000000000000000000000000000001010", + "totalVolume": 582879278.609737 + }, + "0x2791Bca1f2de4661ED88A30C99A7a9449Aa84174": { + "allTimeHigh": 11.3243601071303, + "allTimeLow": 10.7474897124512, + "assetId": "eip155:137/erc20:0x2791bca1f2de4661ed88a30c99a7a9449aa84174", + "chainId": "0x89", + "circulatingSupply": 1086234797.438771, + "currency": "POL", + "dilutedMarketCap": null, + "high1d": 11.1058934336372, + "id": "eip155:137/erc20:0x2791bca1f2de4661ed88a30c99a7a9449aa84174", + "low1d": 10.9080419904757, + "marketCap": 11966693764.9871, + "marketCapPercentChange1d": null, + "price": 11.0166731844748, + "priceChange1d": null, + "pricePercentChange14d": null, + "pricePercentChange1d": -0.1, + "pricePercentChange1h": 0, + "pricePercentChange1y": null, + "pricePercentChange200d": null, + "pricePercentChange30d": null, + "pricePercentChange7d": null, + "tokenAddress": "0x2791Bca1f2de4661ED88A30C99A7a9449Aa84174", + "totalVolume": 208697735.901715 + }, + "0x53E0bca35eC356BD5ddDFebbD1Fc0fD03FaBad39": { + "allTimeHigh": 580.538694207945, + "allTimeLow": 1.63237125851643, + "assetId": "eip155:137/erc20:0x53e0bca35ec356bd5dddfebbd1fc0fd03fabad39", + "chainId": "0x89", + "circulatingSupply": 727099970.4255477, + "currency": "POL", + "dilutedMarketCap": 111261452715.866, + "high1d": 117.980444306776, + "id": "eip155:137/erc20:0x53e0bca35ec356bd5dddfebbd1fc0fd03fabad39", + "liquidity": 25394733.905408483, + "low1d": 110.159145010995, + "marketCap": 80898198975.4851, + "marketCapPercentChange1d": -5.45313, + "price": 111.260736461105, + "priceChange1d": -0.5860760264187057, + "pricePercentChange14d": 9.549562890507982, + "pricePercentChange1d": -5.484734458033978, + "pricePercentChange1h": 0.27955988434552076, + "pricePercentChange1y": -38.457091989408184, + "pricePercentChange200d": -45.076452354811074, + "pricePercentChange30d": 10.19714737918484, + "pricePercentChange7d": 0.2734768865069643, + "tokenAddress": "0x53E0bca35eC356BD5ddDFebbD1Fc0fD03FaBad39", + "totalVolume": 4277979855.48627 + }, + "0xb33EaAd8d922B1083446DC23f610c2567fB5180f": { + "allTimeHigh": 494.834879389391, + "allTimeLow": 11.3463919361325, + "assetId": "eip155:137/erc20:0xb33eaad8d922b1083446dc23f610c2567fb5180f", + "chainId": "0x89", + "circulatingSupply": 635997562.7428479, + "currency": "POL", + "dilutedMarketCap": 35723971407.4518, + "high1d": 41.9706342491892, + "id": "eip155:137/erc20:0xb33eaad8d922b1083446dc23f610c2567fb5180f", + "liquidity": 25788996.39359487, + "low1d": 38.9963373338923, + "marketCap": 25367950326.9606, + "marketCapPercentChange1d": -3.88664, + "price": 39.8776104939803, + "priceChange1d": -0.14793270385247315, + "pricePercentChange14d": 11.797533610679723, + "pricePercentChange1d": -3.925322263653529, + "pricePercentChange1h": 0.010346656659446021, + "pricePercentChange1y": -43.8629380828583, + "pricePercentChange200d": -44.89712834287892, + "pricePercentChange30d": 12.893037122398027, + "pricePercentChange7d": -1.7880864770974902, + "tokenAddress": "0xb33EaAd8d922B1083446DC23f610c2567fB5180f", + "totalVolume": 2503012970.5353 + }, + "0xc2132D05D31c914a87C6611C10748AEb04B58e8F": { + "allTimeHigh": 11.5887420551567, + "allTimeLow": 10.7486353675594, + "assetId": "eip155:137/erc20:0xc2132d05d31c914a87c6611c10748aeb04b58e8f", + "chainId": "0x89", + "circulatingSupply": 4064676256.80415, + "currency": "POL", + "dilutedMarketCap": 44750375661.5168, + "high1d": 11.0159145010995, + "id": "eip155:137/erc20:0xc2132d05d31c914a87c6611c10748aeb04b58e8f", + "liquidity": 158753467.87302837, + "low1d": 11.0041384884979, + "marketCap": 44750375661.5168, + "marketCapPercentChange1d": -0.01865, + "price": 11.0103294324475, + "priceChange1d": -0.000499799877974549, + "pricePercentChange14d": -0.017156270178099318, + "pricePercentChange1d": -0.04998034251347325, + "pricePercentChange1h": 0.02862789282903502, + "pricePercentChange1y": -0.11391889449250431, + "pricePercentChange200d": -0.03486240254428877, + "pricePercentChange30d": -0.0719008113930739, + "pricePercentChange7d": -0.03854745674308781, + "tokenAddress": "0xc2132D05D31c914a87C6611C10748AEb04B58e8F", + "totalVolume": 1611639990.41206 + } + }, + "0x8f": { + "0x0000000000000000000000000000000000000000": { + "allTimeHigh": 1.66243020862296, + "allTimeLow": 0.557227058378067, + "assetId": "eip155:143/slip44:268435779", + "chainId": "0x8f", + "circulatingSupply": 11825165000, + "currency": "MON", + "dilutedMarketCap": 100914612964.205, + "high1d": 1.03934499806736, + "id": "eip155:143/slip44:268435779", + "liquidity": 53644804.84210516, + "low1d": 0.930517788315227, + "marketCap": 11852376663.9911, + "marketCapPercentChange1d": -2.72479, + "price": 0.999949744241782, + "priceChange1d": -0.000864362355085961, + "pricePercentChange14d": -1.8260527562853124, + "pricePercentChange1d": -2.858818566929386, + "pricePercentChange1h": 1.9404298251457675, + "pricePercentChange1y": null, + "pricePercentChange200d": null, + "pricePercentChange30d": -14.170488550559297, + "pricePercentChange7d": -11.139930743691275, + "tokenAddress": "0x0000000000000000000000000000000000000000", + "totalVolume": 3817234564.27235 + }, + "0xacA92E438df0B2401fF60dA7E4337B687a2435DA": { + "allTimeHigh": 36.2929865338674, + "allTimeLow": 33.3584296095708, + "assetId": "eip155:143/erc20:0xaca92e438df0b2401ff60da7e4337b687a2435da", + "chainId": "0x8f", + "circulatingSupply": 32316361.588697, + "currency": "MON", + "dilutedMarketCap": 1099876558.66686, + "high1d": 34.0459535964985, + "id": "eip155:143/erc20:0xaca92e438df0b2401ff60da7e4337b687a2435da", + "liquidity": 85813150.63163133, + "low1d": 34.0298839064009, + "marketCap": 1099876558.66686, + "marketCapPercentChange1d": 3.20193, + "price": 34.0350929373012, + "priceChange1d": -0.000057035796905192, + "pricePercentChange14d": 0.01572917070943231, + "pricePercentChange1d": -0.005705074543817154, + "pricePercentChange1h": -0.0003039376355489215, + "pricePercentChange1y": null, + "pricePercentChange200d": -0.06808755347266159, + "pricePercentChange30d": -0.0042079606346404775, + "pricePercentChange7d": -0.09207498988041965, + "tokenAddress": "0xacA92E438df0B2401fF60dA7E4337B687a2435DA", + "totalVolume": 147313606.846457 + } + }, + "0xa": { + "0x0000000000000000000000000000000000000000": { + "allTimeHigh": 2.22146544314654, + "allTimeLow": 0.000194467885708423, + "assetId": "eip155:10/slip44:60", + "chainId": "0xa", + "circulatingSupply": 120686088.4883335, + "currency": "ETH", + "dilutedMarketCap": 120720128.093345, + "high1d": 1.03975748342298, + "id": "eip155:10/slip44:60", + "liquidity": 223330440.70177978, + "low1d": 0.991627715853388, + "marketCap": 120720128.093345, + "marketCapPercentChange1d": -3.56045, + "price": 1.00011644865542, + "priceChange1d": -81.83246205101068, + "pricePercentChange14d": -3.2872704250270655, + "pricePercentChange1d": -3.5447206118919516, + "pricePercentChange1h": 0.2582454430094721, + "pricePercentChange1y": -12.783633768681588, + "pricePercentChange200d": -46.63493727333306, + "pricePercentChange30d": -4.507052948151581, + "pricePercentChange7d": -2.821105875967681, + "tokenAddress": "0x0000000000000000000000000000000000000000", + "totalVolume": 8094503.6751173 + }, + "0x0994206dfE8De6Ec6920FF4D779B0d950605Fb53": { + "allTimeHigh": 0.00690327106704588, + "allTimeLow": 0.0000810040696178264, + "assetId": "eip155:10/erc20:0x0994206dfe8de6ec6920ff4d779b0d950605fb53", + "chainId": "0xa", + "circulatingSupply": 1514071548, + "currency": "ETH", + "dilutedMarketCap": 272993.747036657, + "high1d": 0.000126966740056742, + "id": "eip155:10/erc20:0x0994206dfe8de6ec6920ff4d779b0d950605fb53", + "liquidity": 389830586.4304264, + "low1d": 0.00011218466735937, + "marketCap": 173604.548609458, + "marketCapPercentChange1d": -7.67087, + "price": 0.000114656730075897, + "priceChange1d": -0.021277513210629484, + "pricePercentChange14d": 8.564341628588119, + "pricePercentChange1d": -7.693675388847159, + "pricePercentChange1h": 0.4797973673074949, + "pricePercentChange1y": -63.62616496077348, + "pricePercentChange200d": -54.71182008657508, + "pricePercentChange30d": 15.742847581333777, + "pricePercentChange7d": 0.4894960376092653, + "tokenAddress": "0x0994206dfE8De6Ec6920FF4D779B0d950605Fb53", + "totalVolume": 25509.302304867 + }, + "0x0b2C639c533813f4Aa9D7837CAf62653d097Ff85": { + "allTimeHigh": 0.000468452291667459, + "allTimeLow": 0.000394185760714353, + "assetId": "eip155:10/erc20:0x0b2c639c533813f4aa9d7837caf62653d097ff85", + "chainId": "0xa", + "circulatingSupply": 76796921674.73596, + "currency": "ETH", + "dilutedMarketCap": 34512147.8943669, + "high1d": 0.000449110556779283, + "id": "eip155:10/erc20:0x0b2c639c533813f4aa9d7837caf62653d097ff85", + "liquidity": 3840460242.036409, + "low1d": 0.000448916977740253, + "marketCap": 34485816.11919, + "marketCapPercentChange1d": 0.16289, + "price": 0.000449078667888863, + "priceChange1d": 0.00018845, + "pricePercentChange14d": 0.011809346958569604, + "pricePercentChange1d": 0.0188514096130968, + "pricePercentChange1h": 0.008489031317734158, + "pricePercentChange1y": -0.003625826646326508, + "pricePercentChange200d": 0.005680937362676892, + "pricePercentChange30d": -0.0024888694324691797, + "pricePercentChange7d": 0.0036215549340642412, + "tokenAddress": "0x0b2C639c533813f4Aa9D7837CAf62653d097Ff85", + "totalVolume": 7374042.18453205 + }, + "0x4200000000000000000000000000000000000042": { + "allTimeHigh": 0.00217383422020182, + "allTimeLow": 0.0000449471664777846, + "assetId": "eip155:10/erc20:0x4200000000000000000000000000000000000042", + "chainId": "0xa", + "circulatingSupply": 2150875957, + "currency": "ETH", + "dilutedMarketCap": 265345.342190478, + "high1d": 0.0000661739390151727, + "id": "eip155:10/erc20:0x4200000000000000000000000000000000000042", + "liquidity": 1165291.2050915887, + "low1d": 0.0000605817055697733, + "marketCap": 132882.249599044, + "marketCapPercentChange1d": -5.82819, + "price": 0.0000617665350476437, + "priceChange1d": -0.008547286150973471, + "pricePercentChange14d": 12.597174623988316, + "pricePercentChange1d": -5.851532673623518, + "pricePercentChange1h": 0.5463510769544153, + "pricePercentChange1y": -82.68246632286184, + "pricePercentChange200d": -69.91166721908262, + "pricePercentChange30d": 15.232922699398573, + "pricePercentChange7d": -10.572598608621297, + "tokenAddress": "0x4200000000000000000000000000000000000042", + "totalVolume": 26195.1721531416 + }, + "0xDA10009cBd5D07dd0CeCc66161FC93D7c9000da1": { + "allTimeHigh": 0.000476536799097962, + "allTimeLow": 0.00042932417398243, + "assetId": "eip155:10/erc20:0xda10009cbd5d07dd0cecc66161fc93d7c9000da1", + "chainId": "0xa", + "circulatingSupply": 14826507.10279941, + "currency": "ETH", + "dilutedMarketCap": null, + "high1d": 0.000453332529212905, + "id": "eip155:10/erc20:0xda10009cbd5d07dd0cecc66161fc93d7c9000da1", + "low1d": 0.00044545650868861, + "marketCap": 6656.69724545923, + "marketCapPercentChange1d": null, + "price": 0.000448972721579338, + "priceChange1d": null, + "pricePercentChange14d": null, + "pricePercentChange1d": -0.01, + "pricePercentChange1h": -0.11, + "pricePercentChange1y": null, + "pricePercentChange200d": null, + "pricePercentChange30d": null, + "pricePercentChange7d": null, + "tokenAddress": "0xDA10009cBd5D07dd0CeCc66161FC93D7c9000da1", + "totalVolume": 100.888190203282 + } + }, + "0xa4b1": { + "0x0000000000000000000000000000000000000000": { + "allTimeHigh": 2.22146544314654, + "allTimeLow": 0.000194467885708423, + "assetId": "eip155:42161/slip44:60", + "chainId": "0xa4b1", + "circulatingSupply": 120686088.4883335, + "currency": "ETH", + "dilutedMarketCap": 120720128.093345, + "high1d": 1.03975748342298, + "id": "eip155:42161/slip44:60", + "liquidity": 223330440.70177978, + "low1d": 0.991627715853388, + "marketCap": 120720128.093345, + "marketCapPercentChange1d": -3.56045, + "price": 1.00011644865542, + "priceChange1d": -81.83246205101068, + "pricePercentChange14d": -3.2872704250270655, + "pricePercentChange1d": -3.5447206118919516, + "pricePercentChange1h": 0.2582454430094721, + "pricePercentChange1y": -12.783633768681588, + "pricePercentChange200d": -46.63493727333306, + "pricePercentChange30d": -4.507052948151581, + "pricePercentChange7d": -2.821105875967681, + "tokenAddress": "0x0000000000000000000000000000000000000000", + "totalVolume": 8094503.6751173 + }, + "0x306fD3e7b169Aa4ee19412323e1a5995B8c1a1f4": { + "allTimeHigh": 0.0000012736405615002, + "allTimeLow": 1.4792193e-13, + "assetId": "eip155:42161/erc20:0x306fd3e7b169aa4ee19412323e1a5995b8c1a1f4", + "bondingCurveProgressPercent": null, + "chainId": "0xa4b1", + "circulatingSupply": 59996494221475.84, + "currency": "ETH", + "dilutedMarketCap": 36.2824986576759, + "high1d": 6.068364e-13, + "id": "eip155:42161/erc20:0x306fd3e7b169aa4ee19412323e1a5995b8c1a1f4", + "liquidity": 1914495.8632, + "low1d": 5.9029889e-13, + "marketCap": 36.2824986576759, + "marketCapPercentChange1d": 1.63993, + "price": 6.0454004e-13, + "priceChange1d": 2.2621e-11, + "pricePercentChange14d": 16.337858584806682, + "pricePercentChange1d": 1.748403301650532, + "pricePercentChange1h": null, + "pricePercentChange1y": -74.44657673737993, + "pricePercentChange200d": -52.30050908702219, + "pricePercentChange30d": -24.73610551316709, + "pricePercentChange7d": 16.337858584806682, + "tokenAddress": "0x306fD3e7b169Aa4ee19412323e1a5995B8c1a1f4", + "totalVolume": 0.00175022561958053 + }, + "0xaf88d065e77c8cC2239327C5EDb3A432268e5831": { + "allTimeHigh": 0.000468452291667459, + "allTimeLow": 0.000394185760714353, + "assetId": "eip155:42161/erc20:0xaf88d065e77c8cc2239327c5edb3a432268e5831", + "chainId": "0xa4b1", + "circulatingSupply": 76796921674.73596, + "currency": "ETH", + "dilutedMarketCap": 34512147.8943669, + "high1d": 0.000449110556779283, + "id": "eip155:42161/erc20:0xaf88d065e77c8cc2239327c5edb3a432268e5831", + "liquidity": 3840460242.036409, + "low1d": 0.000448916977740253, + "marketCap": 34485816.11919, + "marketCapPercentChange1d": 0.16289, + "price": 0.000449078667888863, + "priceChange1d": 0.00018845, + "pricePercentChange14d": 0.011809346958569604, + "pricePercentChange1d": 0.0188514096130968, + "pricePercentChange1h": 0.008489031317734158, + "pricePercentChange1y": -0.003625826646326508, + "pricePercentChange200d": 0.005680937362676892, + "pricePercentChange30d": -0.0024888694324691797, + "pricePercentChange7d": 0.0036215549340642412, + "tokenAddress": "0xaf88d065e77c8cC2239327C5EDb3A432268e5831", + "totalVolume": 7374042.18453205 + } + }, + "0xa86a": { + "0x0000000000000000000000000000000000000000": { + "allTimeHigh": 15.1318980355623, + "allTimeLow": 0.292282798700155, + "assetId": "eip155:43114/slip44:9005", + "chainId": "0xa86a", + "circulatingSupply": 431771961.1772119, + "currency": "AVAX", + "dilutedMarketCap": 463273992.345079, + "high1d": 1.0553496767352, + "id": "eip155:43114/slip44:9005", + "liquidity": 125505.00371154159, + "low1d": 0.986454445613023, + "marketCap": 431616308.897371, + "marketCapPercentChange1d": -4.57326, + "price": 1.00002471840982, + "priceChange1d": -0.45020154276195257, + "pricePercentChange14d": 4.310020620896604, + "pricePercentChange1d": -4.489963245795265, + "pricePercentChange1h": 0.36065039902351126, + "pricePercentChange1y": -59.64013936629286, + "pricePercentChange200d": -53.20853127219428, + "pricePercentChange30d": 2.302326755899511, + "pricePercentChange7d": -1.56460624937826, + "tokenAddress": "0x0000000000000000000000000000000000000000", + "totalVolume": 23624967.2557266 + }, + "0xB97EF9Ef8734C71904D8002F8b6Bc66Dd9c48a6E": { + "allTimeHigh": 0.108875342515808, + "allTimeLow": 0.0916146862252839, + "assetId": "eip155:43114/erc20:0xb97ef9ef8734c71904d8002f8b6bc66dd9c48a6e", + "chainId": "0xa86a", + "circulatingSupply": 76796921674.73596, + "currency": "AVAX", + "dilutedMarketCap": 8021141084.78472, + "high1d": 0.104380033071799, + "id": "eip155:43114/erc20:0xb97ef9ef8734c71904d8002f8b6bc66dd9c48a6e", + "liquidity": 3840460242.036409, + "low1d": 0.104335042398142, + "marketCap": 8015021185.08003, + "marketCapPercentChange1d": 0.16289, + "price": 0.104372621615118, + "priceChange1d": 0.00018845, + "pricePercentChange14d": 0.011809346958569604, + "pricePercentChange1d": 0.0188514096130968, + "pricePercentChange1h": 0.008489031317734158, + "pricePercentChange1y": -0.003625826646326508, + "pricePercentChange200d": 0.005680937362676892, + "pricePercentChange30d": -0.0024888694324691797, + "pricePercentChange7d": 0.0036215549340642412, + "tokenAddress": "0xB97EF9Ef8734C71904D8002F8b6Bc66Dd9c48a6E", + "totalVolume": 1713838063.87025 + } + }, + "0xaa36a7": {}, + "0xe708": { + "0x0000000000000000000000000000000000000000": { + "allTimeHigh": 2.22146544314654, + "allTimeLow": 0.000194467885708423, + "assetId": "eip155:59144/slip44:60", + "chainId": "0xe708", + "circulatingSupply": 120686088.4883335, + "currency": "ETH", + "dilutedMarketCap": 120720128.093345, + "high1d": 1.03975748342298, + "id": "eip155:59144/slip44:60", + "liquidity": 223330440.70177978, + "low1d": 0.991627715853388, + "marketCap": 120720128.093345, + "marketCapPercentChange1d": -3.56045, + "price": 1.00011644865542, + "priceChange1d": -81.83246205101068, + "pricePercentChange14d": -3.2872704250270655, + "pricePercentChange1d": -3.5447206118919516, + "pricePercentChange1h": 0.2582454430094721, + "pricePercentChange1y": -12.783633768681588, + "pricePercentChange200d": -46.63493727333306, + "pricePercentChange30d": -4.507052948151581, + "pricePercentChange7d": -2.821105875967681, + "tokenAddress": "0x0000000000000000000000000000000000000000", + "totalVolume": 8094503.6751173 + }, + "0x176211869cA2b568f2A7D4EE941E073a821EE1ff": { + "allTimeHigh": 0.000507527410914889, + "allTimeLow": 0.000413608789816136, + "assetId": "eip155:59144/erc20:0x176211869ca2b568f2a7d4ee941e073a821ee1ff", + "chainId": "0xe708", + "circulatingSupply": 89149161.205714, + "currency": "ETH", + "dilutedMarketCap": 40057.0226482619, + "high1d": 0.000450037580297981, + "id": "eip155:59144/erc20:0x176211869ca2b568f2a7d4ee941e073a821ee1ff", + "liquidity": 1651097.4105562274, + "low1d": 0.000446811412693909, + "marketCap": 40057.0226482619, + "marketCapPercentChange1d": -0.04147, + "price": 0.000449588440996286, + "priceChange1d": 0.0019428, + "pricePercentChange14d": 0.1593580198994818, + "pricePercentChange1d": 0.19452603756965092, + "pricePercentChange1h": 0.21174908218567134, + "pricePercentChange1y": 0.3091859694516067, + "pricePercentChange200d": 0.11592036903700619, + "pricePercentChange30d": 0.23421824343825173, + "pricePercentChange7d": 0.24499504980210163, + "tokenAddress": "0x176211869cA2b568f2A7D4EE941E073a821EE1ff", + "totalVolume": 169.907601273857 + }, + "0xacA92E438df0B2401fF60dA7E4337B687a2435DA": { + "allTimeHigh": 0.000478782495606435, + "allTimeLow": 0.000440069382636171, + "assetId": "eip155:59144/erc20:0xaca92e438df0b2401ff60da7e4337b687a2435da", + "chainId": "0xe708", + "circulatingSupply": 32316361.588697, + "currency": "ETH", + "dilutedMarketCap": 14509.8893400132, + "high1d": 0.000449139301694592, + "id": "eip155:59144/erc20:0xaca92e438df0b2401ff60da7e4337b687a2435da", + "liquidity": 85813150.63163133, + "low1d": 0.000448927307944192, + "marketCap": 14509.8893400132, + "marketCapPercentChange1d": 3.19028, + "price": 0.000449037347073107, + "priceChange1d": 0.00020092, + "pricePercentChange14d": 0.02494576759028871, + "pricePercentChange1d": 0.020100105040449668, + "pricePercentChange1h": 0.0031125470240999315, + "pricePercentChange1y": null, + "pricePercentChange200d": -0.05887868042649664, + "pricePercentChange30d": 0.005006799010172332, + "pricePercentChange7d": -0.08286832731188067, + "tokenAddress": "0xacA92E438df0B2401fF60dA7E4337B687a2435DA", + "totalVolume": 1942.42327951112 + } + } + }, + "multichainNetworkConfigurationsByChainId": { + "bip122:000000000019d6689c085ae165831e93": { + "chainId": "bip122:000000000019d6689c085ae165831e93", + "name": "Bitcoin", + "nativeCurrency": "bip122:000000000019d6689c085ae165831e93/slip44:0", + "isEvm": false + }, + "bip122:000000000933ea01ad0ee984209779ba": { + "chainId": "bip122:000000000933ea01ad0ee984209779ba", + "name": "Bitcoin Testnet", + "nativeCurrency": "bip122:000000000933ea01ad0ee984209779ba/slip44:0", + "isEvm": false + }, + "bip122:00000000da84f2bafbbc53dee25a72ae": { + "chainId": "bip122:00000000da84f2bafbbc53dee25a72ae", + "name": "Bitcoin Testnet4", + "nativeCurrency": "bip122:00000000da84f2bafbbc53dee25a72ae/slip44:0", + "isEvm": false + }, + "bip122:00000008819873e925422c1ff0f99f7c": { + "chainId": "bip122:00000008819873e925422c1ff0f99f7c", + "name": "Bitcoin Mutinynet", + "nativeCurrency": "bip122:00000008819873e925422c1ff0f99f7c/slip44:0", + "isEvm": false + }, + "bip122:regtest": { + "chainId": "bip122:regtest", + "name": "Bitcoin Regtest", + "nativeCurrency": "bip122:regtest/slip44:0", + "isEvm": false + }, + "solana:5eykt4UsFv8P8NJdTREpY1vzqKqZKvdp": { + "chainId": "solana:5eykt4UsFv8P8NJdTREpY1vzqKqZKvdp", + "name": "Solana", + "nativeCurrency": "solana:5eykt4UsFv8P8NJdTREpY1vzqKqZKvdp/slip44:501", + "isEvm": false + }, + "solana:4uhcVJyU9pJkvQyS88uRDiswHXSCkY3z": { + "chainId": "solana:4uhcVJyU9pJkvQyS88uRDiswHXSCkY3z", + "name": "Solana Testnet", + "nativeCurrency": "solana:4uhcVJyU9pJkvQyS88uRDiswHXSCkY3z/slip44:501", + "isEvm": false + }, + "solana:EtWTRABZaYq6iMfeYKouRu166VU2xqa1": { + "chainId": "solana:EtWTRABZaYq6iMfeYKouRu166VU2xqa1", + "name": "Solana Devnet", + "nativeCurrency": "solana:EtWTRABZaYq6iMfeYKouRu166VU2xqa1/slip44:501", + "isEvm": false + }, + "tron:728126428": { + "chainId": "tron:728126428", + "name": "Tron", + "nativeCurrency": "tron:728126428/slip44:195", + "isEvm": false + }, + "tron:3448148188": { + "chainId": "tron:3448148188", + "name": "Tron Nile", + "nativeCurrency": "tron:3448148188/slip44:195", + "isEvm": false + }, + "tron:2494104990": { + "chainId": "tron:2494104990", + "name": "Tron Shasta", + "nativeCurrency": "tron:2494104990/slip44:195", + "isEvm": false + } + }, + "selectedMultichainNetworkChainId": "tron:728126428", + "isEvmSelected": true, + "networksWithTransactionActivity": {}, + "selectedNetworkClientId": "9a1eafde-5f04-434b-b011-e9de5c50baf0", + "networksMetadata": { + "1394e455-b6e3-4de8-828f-a22e0304d0fb": { + "EIPS": { + "1559": true + }, + "status": "available" + }, + "48f1466d-e206-4702-b7e0-9ff67aebe410": { + "EIPS": { + "1559": true + }, + "status": "available" + }, + "513895d9-e255-4075-9b95-99c38266dcf5": { + "EIPS": { + "1559": true + }, + "status": "available" + }, + "9a1eafde-5f04-434b-b011-e9de5c50baf0": { + "EIPS": { + "1559": true + }, + "status": "available" + }, + "9bdb2902-cd78-4c1c-bb25-a5be100259a1": { + "EIPS": { + "1559": true + }, + "status": "available" + }, + "arbitrum-mainnet": { + "EIPS": { + "1559": true + }, + "status": "available" + }, + "d108790b-593d-4fec-88e8-69229f9c58e0": { + "EIPS": { + "1559": true + }, + "status": "available" + }, + "ed27287b-32ec-498c-974c-713308e966da": { + "EIPS": { + "1559": true + }, + "status": "available" + }, + "linea-mainnet": { + "EIPS": { + "1559": true + }, + "status": "available" + }, + "linea-sepolia": { + "EIPS": {}, + "status": "available" + }, + "mainnet": { + "EIPS": { + "1559": true + }, + "status": "available" + }, + "megaeth-testnet-v2": { + "EIPS": {}, + "status": "available" + }, + "monad-testnet": { + "EIPS": {}, + "status": "available" + }, + "polygon-mainnet": { + "EIPS": { + "1559": true + }, + "status": "available" + }, + "sepolia": { + "EIPS": {}, + "status": "available" + } + }, + "networkConfigurationsByChainId": { + "0x1": { + "blockExplorerUrls": ["https://etherscan.io"], + "chainId": "0x1", + "defaultBlockExplorerUrlIndex": 0, + "defaultRpcEndpointIndex": 0, + "name": "Ethereum", + "nativeCurrency": "ETH", + "rpcEndpoints": [ + { + "failoverUrls": [], + "networkClientId": "mainnet", + "type": "infura", + "url": "https://mainnet.infura.io/v3/{infuraProjectId}" + } + ] + }, + "0x10e6": { + "blockExplorerUrls": ["https://megaeth.blockscout.com/"], + "chainId": "0x10e6", + "defaultBlockExplorerUrlIndex": 0, + "defaultRpcEndpointIndex": 0, + "lastUpdatedAt": 1772568303713, + "name": "MegaETH", + "nativeCurrency": "ETH", + "rpcEndpoints": [ + { + "failoverUrls": [], + "networkClientId": "d108790b-593d-4fec-88e8-69229f9c58e0", + "type": "custom", + "url": "https://megaeth-mainnet.infura.io/v3/b6bf7d3508c941499b10025c0776eaf8" + } + ] + }, + "0x144": { + "blockExplorerUrls": ["https://explorer.zksync.io/"], + "chainId": "0x144", + "defaultBlockExplorerUrlIndex": 0, + "defaultRpcEndpointIndex": 0, + "lastUpdatedAt": 1777413318059, + "name": "zkSync Era", + "nativeCurrency": "ETH", + "rpcEndpoints": [ + { + "failoverUrls": [], + "networkClientId": "513895d9-e255-4075-9b95-99c38266dcf5", + "type": "custom", + "url": "https://mainnet.era.zksync.io" + } + ] + }, + "0x18c7": { + "blockExplorerUrls": ["https://megaeth-testnet-v2.blockscout.com"], + "chainId": "0x18c7", + "defaultBlockExplorerUrlIndex": 0, + "defaultRpcEndpointIndex": 0, + "name": "MegaETH Testnet", + "nativeCurrency": "MegaETH", + "rpcEndpoints": [ + { + "failoverUrls": [], + "networkClientId": "megaeth-testnet-v2", + "type": "custom", + "url": "https://carrot.megaeth.com/rpc" + } + ] + }, + "0x2105": { + "blockExplorerUrls": ["https://basescan.org"], + "chainId": "0x2105", + "defaultBlockExplorerUrlIndex": 0, + "defaultRpcEndpointIndex": 0, + "lastUpdatedAt": 1778794279956, + "name": "Base", + "nativeCurrency": "ETH", + "rpcEndpoints": [ + { + "failoverUrls": [], + "networkClientId": "9bdb2902-cd78-4c1c-bb25-a5be100259a1", + "type": "custom", + "url": "https://base-mainnet.infura.io/v3/b6bf7d3508c941499b10025c0776eaf8" + } + ] + }, + "0x279f": { + "blockExplorerUrls": ["https://testnet.monadexplorer.com"], + "chainId": "0x279f", + "defaultBlockExplorerUrlIndex": 0, + "defaultRpcEndpointIndex": 0, + "name": "Monad Testnet", + "nativeCurrency": "MON", + "rpcEndpoints": [ + { + "failoverUrls": [], + "networkClientId": "monad-testnet", + "type": "custom", + "url": "https://testnet-rpc.monad.xyz" + } + ] + }, + "0x38": { + "blockExplorerUrls": ["https://bscscan.com/"], + "chainId": "0x38", + "defaultBlockExplorerUrlIndex": 0, + "defaultRpcEndpointIndex": 0, + "lastUpdatedAt": 1777411262318, + "name": "BNB Chain", + "nativeCurrency": "BNB", + "rpcEndpoints": [ + { + "failoverUrls": [], + "networkClientId": "9a1eafde-5f04-434b-b011-e9de5c50baf0", + "type": "custom", + "url": "https://bsc-mainnet.infura.io/v3/b6bf7d3508c941499b10025c0776eaf8" + } + ] + }, + "0x89": { + "blockExplorerUrls": ["https://polygonscan.com"], + "chainId": "0x89", + "defaultBlockExplorerUrlIndex": 0, + "defaultRpcEndpointIndex": 0, + "name": "Polygon", + "nativeCurrency": "POL", + "rpcEndpoints": [ + { + "failoverUrls": [], + "networkClientId": "polygon-mainnet", + "type": "infura", + "url": "https://polygon-mainnet.infura.io/v3/{infuraProjectId}" + } + ] + }, + "0x8f": { + "blockExplorerUrls": ["https://monadscan.com/"], + "chainId": "0x8f", + "defaultBlockExplorerUrlIndex": 0, + "defaultRpcEndpointIndex": 0, + "lastUpdatedAt": 1777413745202, + "name": "Monad", + "nativeCurrency": "MON", + "rpcEndpoints": [ + { + "failoverUrls": [], + "networkClientId": "1394e455-b6e3-4de8-828f-a22e0304d0fb", + "type": "custom", + "url": "https://monad-mainnet.infura.io/v3/b6bf7d3508c941499b10025c0776eaf8" + } + ] + }, + "0xa": { + "blockExplorerUrls": ["https://optimistic.etherscan.io/"], + "chainId": "0xa", + "defaultBlockExplorerUrlIndex": 0, + "defaultRpcEndpointIndex": 0, + "lastUpdatedAt": 1778267093190, + "name": "OP", + "nativeCurrency": "ETH", + "rpcEndpoints": [ + { + "failoverUrls": [], + "networkClientId": "48f1466d-e206-4702-b7e0-9ff67aebe410", + "type": "custom", + "url": "https://optimism-mainnet.infura.io/v3/b6bf7d3508c941499b10025c0776eaf8" + } + ] + }, + "0xa4b1": { + "blockExplorerUrls": ["https://arbiscan.io"], + "chainId": "0xa4b1", + "defaultBlockExplorerUrlIndex": 0, + "defaultRpcEndpointIndex": 0, + "name": "Arbitrum", + "nativeCurrency": "ETH", + "rpcEndpoints": [ + { + "failoverUrls": [], + "networkClientId": "arbitrum-mainnet", + "type": "infura", + "url": "https://arbitrum-mainnet.infura.io/v3/{infuraProjectId}" + } + ] + }, + "0xa86a": { + "blockExplorerUrls": ["https://snowtrace.io/"], + "chainId": "0xa86a", + "defaultBlockExplorerUrlIndex": 0, + "defaultRpcEndpointIndex": 0, + "lastUpdatedAt": 1777412764053, + "name": "Avalanche", + "nativeCurrency": "AVAX", + "rpcEndpoints": [ + { + "failoverUrls": [], + "networkClientId": "ed27287b-32ec-498c-974c-713308e966da", + "type": "custom", + "url": "https://avalanche-mainnet.infura.io/v3/b6bf7d3508c941499b10025c0776eaf8" + } + ] + }, + "0xaa36a7": { + "blockExplorerUrls": ["https://sepolia.etherscan.io"], + "chainId": "0xaa36a7", + "defaultBlockExplorerUrlIndex": 0, + "defaultRpcEndpointIndex": 0, + "name": "Sepolia", + "nativeCurrency": "SepoliaETH", + "rpcEndpoints": [ + { + "failoverUrls": [], + "networkClientId": "sepolia", + "type": "infura", + "url": "https://sepolia.infura.io/v3/{infuraProjectId}" + } + ] + }, + "0xe705": { + "blockExplorerUrls": ["https://sepolia.lineascan.build"], + "chainId": "0xe705", + "defaultBlockExplorerUrlIndex": 0, + "defaultRpcEndpointIndex": 0, + "name": "Linea Sepolia", + "nativeCurrency": "LineaETH", + "rpcEndpoints": [ + { + "failoverUrls": [], + "networkClientId": "linea-sepolia", + "type": "infura", + "url": "https://linea-sepolia.infura.io/v3/{infuraProjectId}" + } + ] + }, + "0xe708": { + "blockExplorerUrls": ["https://lineascan.build"], + "chainId": "0xe708", + "defaultBlockExplorerUrlIndex": 0, + "defaultRpcEndpointIndex": 0, + "name": "Linea", + "nativeCurrency": "ETH", + "rpcEndpoints": [ + { + "failoverUrls": [], + "networkClientId": "linea-mainnet", + "type": "infura", + "url": "https://linea-mainnet.infura.io/v3/{infuraProjectId}" + } + ] + } + }, + "keyrings": [ + { + "type": "HD Key Tree", + "accounts": [ + "0x30e8ccad5a980bdf30447f8c2c48e70989d9d294", + "0xf25bd11c334507fd007d584e2d0b7b2c6543f714", + "0xe2f39519240814a77047490357ced4d094b6c9c7", + "0x452ca3dad6db7f3a47bbf15b758b6749db579bbc", + "0x2b6a82d1fea4d5b137095ca5306ba2589b630a08", + "0x94d1362400e999b38c845ca2c305c084031dae84", + "0x83ad6a1294d949d514361326bcebae4f73957327", + "0xbcc30cc9b8109f87fcede0c57e3a8c3dc979e3d0", + "0x3823c59973351f50e8b985e182b81300dae9bb45", + "0xc9442048fd0c34b684035a82188b69c4ee5e8f21" + ], + "metadata": { + "id": "01KJ6E9MG4VY87VPKWJPR6W39K", + "name": "" + } + }, + { + "type": "Snap Keyring", + "accounts": [ + "THV8AzsmaMCuCEW3xmxeHQe3nfVjcPESnG", + "TTU9eC5J56EhSRhw56NqZW48bJFCC1V4zt", + "TLQw3YKJkcBdBsuR4eUxXAYRjQdpD6eEMD", + "TJQTuKiGEYBoFaScz3WdpYYVyA7osnLLMa", + "TNhtgmd4AcnN4eB6AqBejjvSJppjg33kKV", + "TQ2WcfeudHttr9ef9PykE4Vf5upUDhzCKy", + "TPhMtQEUfTrEc3v6M75cnRfbSC41MZcaDB", + "TQEG7f85Eawvcw3QV4JsMfHJvXcCC8Kxq5", + "TU2aNJSfrhLZnSvPRCiAHdpLBhxW2n8HA8", + "TWYHHhNY6TA3sVLbkZ4suQDMuKxYqLPDja", + "TXmjzabcG63GjXgGKuaStJh6oCorb8jyja", + "TVnpirfVZPZg4eybigftt2bGcLVawnLVHy", + "TFZKVArzmNQTpv3bKe1QUkCXruf8PTuJdG", + "TVgYW8xdwbKPw5MkiYbz5Vmto9wna2zNdr", + "TGhD1GruvbKNbhAUBxqiHQVpXe4tL4WzMN", + "TGzh1crEiU8jT2XNix6NWMVFCtwNyEiiX5", + "bc1q2pxsagdzfdn6k6umvf9gj3eme7a27p7acym9g2", + "bc1qkv7fs9jkan5fk4dal9zm4hltvx3022mmnzt09l", + "bc1qjx6jn6jlkrglaqtt35hr0sc7qsehkuqyq6lmys", + "bc1q4802rfdtl8x6fc2lfrerpuqn3707mz9p6xaw5v", + "bc1qx95r6rrjndjmnc353mg0da5545smp9sakzxxtl", + "bc1qmkhzc8tx8xkkwzqfez4nuk27qemjg5mvf54csk", + "bc1qc5jermkwtwa4zput0tjrxqrq03906xfw0mtanx", + "bc1qc7s93vamc0zduhuv5aswq9a9lp5k4za20tl05l", + "bc1qlrssy7r7vfstz30g78d6duzfg0clj7m380punr", + "bc1quktjtsfqgk2y35vlucwvzczfqzkpawp066v3ww", + "bc1qklk4c2g7pk2eertfh0zgw9gn6gaq7px9stmtsz", + "bc1qzzgcr8ekdfgyjad8fdfmctj0jv0k6ntkj3jpxp", + "bc1q07mlsqrpt80trs5zffk4ysl35s7e9tltazgnne", + "bc1q20l4mt5f6k5k3utw6vwae83r5r9lzj3dd0567k", + "bc1q79rp7e2avw8lnvrlaykt7uh4q7etkrau5nytjd", + "bc1qntcy866amnqthda3j8uhtjd75gl0562sfaudwz", + "8jKM7u4xsyvDpnqL5DQMVrh8AXxZKJPKJw5QsM7KEF8J", + "D17b35MvfEann7FDStSUWH6EAXCyfvjBXJmx8zwCeMg5", + "EakrRNLYP3WCatjriJzKSy4HRbmHA4ogdN11dwPPQmJP", + "Bz3cfju4DDyduz7mRbgV7tN4aKg2mmZp4hqUc5dUJWct", + "HhoQAMYGpUr733KFgZJuZxwVVfqMKLgpChjzehYTRW4C", + "GBnbPgkU6Nz1iH8nE1aPc4K5vLt7Y8TLDJm55WEGVdK5", + "4fhPk4yRhMPQL21Ua2MMUxC2p5VT9q2K4Uep2aGAtYGJ", + "F7nHkrzPrE6J8r8jcvLPVE3KbuwGzosGWjiRzXyuWPx1", + "3PGGUjEUt8jUpqzfAB3bh7A3NWDZhqNcdtCGqeipT6bV", + "DRZLWUT14336p9NRrquuwt759BSydintJFGiRT6refdA", + "CyGir7UdxRCsNXkA89qH1P5p3Zhx11XxsE97WSfNMnLT", + "ATK5qHMB4bNuPh6Hj3RoCLRQrUafg9PoSdR5RhEf6nyz", + "FauUtcWJ81uyS6naBZD6uSdjNuJvuD73tUnSLJMZUP2e", + "uik8nmbvhYfhj1n9hrJ4vigneMrr3qbbbbWuhLLSboP", + "fXSVz3jyNokxeNN1Z6bvh4eT4ZuXv1gtpGaSg4HxxXw", + "ALcEx6ANnJams9dX2jUwamfSc2P7gA66tUt83o3F2ipv" + ], + "metadata": { + "id": "01KJ6E9MGBJ0TR5BZ3PPW4017R", + "name": "" + } + }, + { + "type": "Trezor Hardware", + "accounts": [], + "metadata": { + "id": "01KKHBZ0K2HXJ8BCXQRHJN2V5Q", + "name": "" + } + }, + { + "type": "OneKey Hardware", + "accounts": [], + "metadata": { + "id": "01KKHBZ0KPME6MM0KN3R0HJM65", + "name": "" + } + }, + { + "type": "Ledger Hardware", + "accounts": [ + "0x9dc641ccd7d1e7c66e47a25598ace7219548d887", + "0x6eff00186ba65c5fade98d75aa4d99ef71fa461b", + "0x04400bb51b1f886cff338eb2b4118f9ceb4e6fd5", + "0xb3864b298f4fddbbbd2fa5cf1a2a2748932b3b81", + "0xeeeab71a5989b7951389e3df313ea9876508856f", + "0x422b8d8914cdad779f587414d647e953bb3a87db" + ], + "metadata": { + "id": "01KKHBZ0KXRB6RYTCBEGX8HBHS", + "name": "" + } + }, + { + "type": "Lattice Hardware", + "accounts": [], + "metadata": { + "id": "01KKHBZ0M43R5X11V0EZBKKHQK", + "name": "" + } + }, + { + "type": "HD Key Tree", + "accounts": [ + "0x141d32a89a1e0a5ef360034a2f60a4b917c18838", + "0x98931e2b2272891c2e8e47d675007d94ae90ce64", + "0xf1f63d55e8f25c962079be324c71cdcf792c6047", + "0xda04e0fe4e79eebcaffcbfff8ea0bdcd442d2119", + "0xa30078e306614c2f444550da6bc759173dfb61fd", + "0x09b8556833e53f92ee0b668db146b43ca2cab130" + ], + "metadata": { + "id": "01KMK79H2SG3MB2Q7XWEXMZ013", + "name": "" + } + } + ], + "addSnapAccountEnabled": false, + "advancedGasFee": {}, + "dismissSeedBackUpReminder": false, + "enableMV3TimestampSave": true, + "forgottenPassword": false, + "ipfsGateway": "dweb.link", + "isIpfsGatewayEnabled": true, + "ledgerTransportType": "webhid", + "manageInstitutionalWallets": false, + "openSeaEnabled": true, + "overrideContentSecurityPolicyHeader": true, + "securityAlertsEnabled": true, + "showSidePanelMigrationToast": false, + "snapRegistryList": {}, + "snapsAddSnapAccountModalDismissed": false, + "theme": "os", + "useAddressBarEnsResolution": true, + "useCurrencyRateCheck": true, + "useExternalNameSources": true, + "useExternalServices": true, + "isMultiAccountBalancesEnabled": true, + "useMultiAccountBalanceChecker": true, + "useNftDetection": true, + "usePhishDetect": true, + "useSafeChainsListValidation": true, + "useTokenDetection": true, + "useTransactionSimulations": true, + "watchEthereumAccountEnabled": false, + "referrals": { + "asterdex": {}, + "gmx": {}, + "hyperliquid": {} + }, + "metaMetricsId": "0x585932e95120a60224e1b9306442908dee59fd4785240188a2f92eb49c668e92", + "marketingCampaignCookieId": null, + "latestNonAnonymousEventTimestamp": 1779126377021, + "eventsBeforeMetricsOptIn": [], + "tracesBeforeMetricsOptIn": [], + "traits": { + "install_date_ext": "2026-03-10", + "storage_kind": "split" + }, + "fragments": { + "transaction-submitted-ce002dc0-1829-11f1-b7d6-03d70bc40886": { + "category": "Transactions", + "id": "transaction-submitted-ce002dc0-1829-11f1-b7d6-03d70bc40886", + "initialEvent": "Transaction Submitted", + "lastUpdated": 1772670326178, + "persist": true, + "properties": { + "account_type": "MetaMask", + "address_alert_response": "Loading", + "api_method": "eth_sendTransaction", + "asset_type": "UNKNOWN", + "chain_id": "0x89", + "eip7702_upgrade_transaction": false, + "eip_1559_version": "2", + "gas_edit_attempted": "none", + "gas_edit_type": "none", + "gas_estimation_failed": false, + "gas_fee_selected": "medium", + "gas_insufficient_native_asset": false, + "hd_entropy_index": 0, + "is_smart_transaction": true, + "network": "137", + "referrer": "metamask", + "rpc_domain": "private", + "simulation_receiving_assets_total_value": "1.029770649732954801319844949", + "simulation_sending_assets_total_value": "1.03808998", + "source": "user", + "status": "submitted", + "token_standard": "NONE", + "transaction_advanced_view": false, + "transaction_contract_method": ["Swap"], + "transaction_internal_id": "ce002dc0-1829-11f1-b7d6-03d70bc40886", + "transaction_speed_up": false, + "transaction_type": "mm_swap", + "ui_customizations": null + }, + "sensitiveProperties": { + "account_eip7702_upgraded": "0x63c0c19a282a1b52b07dd5a65b58948a07dae32b", + "default_estimate": "medium", + "default_gas": "0.000370779", + "default_max_fee_per_gas": "237.669242655", + "default_max_priority_fee_per_gas": "116.4", + "first_seen": 1772670325404, + "gas_limit": "0x5a85b", + "max_fee_per_gas": "270.309416677", + "max_priority_fee_per_gas": "117.6", + "transaction_contract_address": [ + "0x1a1ec25dc08e98e5e93f1104b5e5cdd298707d31" + ], + "transaction_contract_method_4byte": "0x5f575529", + "transaction_envelope_type": "fee-market" + }, + "successEvent": "Transaction Finalized", + "uniqueIdentifier": "transaction-submitted-ce002dc0-1829-11f1-b7d6-03d70bc40886" + }, + "transaction-submitted-ce33c0e0-1829-11f1-b7d6-03d70bc40886": { + "category": "Transactions", + "id": "transaction-submitted-ce33c0e0-1829-11f1-b7d6-03d70bc40886", + "initialEvent": "Transaction Submitted", + "lastUpdated": 1772670326484, + "persist": true, + "properties": { + "account_type": "MetaMask", + "address_alert_response": "Loading", + "api_method": "eth_sendTransaction", + "asset_type": "UNKNOWN", + "chain_id": "0x89", + "eip7702_upgrade_transaction": false, + "eip_1559_version": "2", + "gas_edit_attempted": "none", + "gas_edit_type": "none", + "gas_estimation_failed": false, + "gas_fee_selected": "medium", + "gas_insufficient_native_asset": false, + "hd_entropy_index": 0, + "is_smart_transaction": true, + "network": "137", + "referrer": "metamask", + "rpc_domain": "private", + "simulation_receiving_assets_total_value": "1.029770649732954801319844949", + "simulation_sending_assets_total_value": "1.03808998", + "source": "user", + "status": "submitted", + "token_standard": "NONE", + "transaction_advanced_view": false, + "transaction_contract_method": ["Swap"], + "transaction_internal_id": "ce33c0e0-1829-11f1-b7d6-03d70bc40886", + "transaction_speed_up": false, + "transaction_type": "mm_swap", + "ui_customizations": null + }, + "sensitiveProperties": { + "account_eip7702_upgraded": "0x63c0c19a282a1b52b07dd5a65b58948a07dae32b", + "default_estimate": "medium", + "default_gas": "0.000370779", + "default_max_fee_per_gas": "237.669242655", + "default_max_priority_fee_per_gas": "116.4", + "first_seen": 1772670325742, + "gas_limit": "0x5a85b", + "max_fee_per_gas": "270.309416677", + "max_priority_fee_per_gas": "117.6", + "transaction_contract_address": [ + "0x1a1ec25dc08e98e5e93f1104b5e5cdd298707d31" + ], + "transaction_contract_method_4byte": "0x5f575529", + "transaction_envelope_type": "fee-market" + }, + "successEvent": "Transaction Finalized", + "uniqueIdentifier": "transaction-submitted-ce33c0e0-1829-11f1-b7d6-03d70bc40886" + } + }, + "segmentApiCalls": {}, + "metaMetricsDataDeletionId": null, + "metaMetricsDataDeletionTimestamp": 0, + "currentCurrency": "usd", + "alertEnabledness": { + "smartTransactionsMigration": false, + "unconnectedAccount": true, + "web3ShimUsage": true + }, + "unconnectedAccountAlertShownOrigins": {}, + "web3ShimUsageOrigins": {}, + "seedPhraseBackedUp": null, + "onboardingTabs": {}, + "socialBackupsMetadata": [], + "subscriptions": [], + "trialedProducts": [], + "pricing": { + "paymentMethods": [ + { + "type": "card" + }, + { + "chains": [ + { + "chainId": "0x1", + "isSponsorshipSupported": true, + "paymentAddress": "0x15Dac0Bc513d89D54dd14F476e4bCB4cD7eED2eA", + "tokens": [ + { + "address": "0xacA92E438df0B2401fF60dA7E4337B687a2435DA", + "conversionRate": { + "usd": "1.0" + }, + "decimals": 6, + "symbol": "mUSD" + }, + { + "address": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "conversionRate": { + "usd": "1.0" + }, + "decimals": 6, + "symbol": "USDC" + }, + { + "address": "0xdAC17F958D2ee523a2206206994597C13D831ec7", + "conversionRate": { + "usd": "1.0" + }, + "decimals": 6, + "symbol": "USDT" + } + ] + } + ], + "type": "crypto" + } + ], + "products": [ + { + "name": "shield", + "prices": [ + { + "currency": "usd", + "interval": "month", + "minBillingCycles": 12, + "minBillingCyclesForBalance": 1, + "trialPeriodDays": 14, + "unitAmount": 999, + "unitDecimals": 2 + }, + { + "currency": "usd", + "interval": "year", + "minBillingCycles": 1, + "minBillingCyclesForBalance": 1, + "trialPeriodDays": 14, + "unitAmount": 9900, + "unitDecimals": 2 + } + ] + } + ] + }, + "subjects": { + "http://localhost:3000": { + "origin": "http://localhost:3000", + "permissions": { + "wallet_snap": { + "caveats": [ + { + "type": "snapIds", + "value": { + "npm:@metamask/institutional-wallet-snap": {} + } + } + ], + "date": 1771890332054, + "id": "_4kducl9HpHu7aWeZV2pj", + "invoker": "http://localhost:3000", + "parentCapability": "wallet_snap" + } + } + }, + "http://localhost:8000": { + "origin": "http://localhost:8000", + "permissions": { + "wallet_snap": { + "caveats": [ + { + "type": "snapIds", + "value": { + "npm:@metamask/institutional-wallet-snap": {} + } + } + ], + "date": 1771890332054, + "id": "-z2Mu-HqzRyzjKLAufoGI", + "invoker": "http://localhost:8000", + "parentCapability": "wallet_snap" + } + } + }, + "https://alpha.mycactus.io": { + "origin": "https://alpha.mycactus.io", + "permissions": { + "wallet_snap": { + "caveats": [ + { + "type": "snapIds", + "value": { + "npm:@metamask/institutional-wallet-snap": {} + } + } + ], + "date": 1771890332055, + "id": "XKmq0L_OiFzV6qh2SW_0p", + "invoker": "https://alpha.mycactus.io", + "parentCapability": "wallet_snap" + } + } + }, + "https://app-beta.signer.cubist.dev": { + "origin": "https://app-beta.signer.cubist.dev", + "permissions": { + "wallet_snap": { + "caveats": [ + { + "type": "snapIds", + "value": { + "npm:@metamask/institutional-wallet-snap": {} + } + } + ], + "date": 1775785213703, + "id": "CqE2-15pdFQSEHI4k1rAh", + "invoker": "https://app-beta.signer.cubist.dev", + "parentCapability": "wallet_snap" + } + } + }, + "https://app-gamma.signer.cubist.dev": { + "origin": "https://app-gamma.signer.cubist.dev", + "permissions": { + "wallet_snap": { + "caveats": [ + { + "type": "snapIds", + "value": { + "npm:@metamask/institutional-wallet-snap": {} + } + } + ], + "date": 1775785213703, + "id": "g8Fqb8vperpQTYsbCCRux", + "invoker": "https://app-gamma.signer.cubist.dev", + "parentCapability": "wallet_snap" + } + } + }, + "https://app.bitgo-test.com": { + "origin": "https://app.bitgo-test.com", + "permissions": { + "wallet_snap": { + "caveats": [ + { + "type": "snapIds", + "value": { + "npm:@metamask/institutional-wallet-snap": {} + } + } + ], + "date": 1771890332055, + "id": "ggcVAKu0j7eZk9fqImmRD", + "invoker": "https://app.bitgo-test.com", + "parentCapability": "wallet_snap" + } + } + }, + "https://app.bitgo.com": { + "origin": "https://app.bitgo.com", + "permissions": { + "wallet_snap": { + "caveats": [ + { + "type": "snapIds", + "value": { + "npm:@metamask/institutional-wallet-snap": {} + } + } + ], + "date": 1771890332055, + "id": "zYkwa4x8VV3GYeeSOMprn", + "invoker": "https://app.bitgo.com", + "parentCapability": "wallet_snap" + } + } + }, + "https://app.metamask.io": { + "origin": "https://app.metamask.io", + "permissions": { + "wallet_snap": { + "caveats": [ + { + "type": "snapIds", + "value": { + "npm:@metamask/message-signing-snap": {} + } + } + ], + "date": 1771890332037, + "id": "Lixmv4Cr5C0ND7-DAt8W1", + "invoker": "https://app.metamask.io", + "parentCapability": "wallet_snap" + } + } + }, + "https://app.safe.global": { + "origin": "https://app.safe.global", + "permissions": { + "endowment:caip25": { + "caveats": [ + { + "type": "authorizedScopes", + "value": { + "isMultichainOrigin": true, + "optionalScopes": { + "bip122:000000000019d6689c085ae165831e93": { + "accounts": [ + "bip122:000000000019d6689c085ae165831e93:bc1q2pxsagdzfdn6k6umvf9gj3eme7a27p7acym9g2" + ] + }, + "eip155:1": { + "accounts": [ + "eip155:1:0x30e8ccad5a980bdf30447f8c2c48e70989d9d294" + ] + }, + "eip155:137": { + "accounts": [ + "eip155:137:0x30e8ccad5a980bdf30447f8c2c48e70989d9d294" + ] + }, + "eip155:42161": { + "accounts": [ + "eip155:42161:0x30e8ccad5a980bdf30447f8c2c48e70989d9d294" + ] + }, + "eip155:4326": { + "accounts": [ + "eip155:4326:0x30e8ccad5a980bdf30447f8c2c48e70989d9d294" + ] + }, + "eip155:59144": { + "accounts": [ + "eip155:59144:0x30e8ccad5a980bdf30447f8c2c48e70989d9d294" + ] + }, + "solana:5eykt4UsFv8P8NJdTREpY1vzqKqZKvdp": { + "accounts": [ + "solana:5eykt4UsFv8P8NJdTREpY1vzqKqZKvdp:8jKM7u4xsyvDpnqL5DQMVrh8AXxZKJPKJw5QsM7KEF8J" + ] + }, + "tron:728126428": { + "accounts": [ + "tron:728126428:THV8AzsmaMCuCEW3xmxeHQe3nfVjcPESnG" + ] + }, + "wallet:eip155": { + "accounts": [] + } + }, + "requiredScopes": {}, + "sessionProperties": { + "eip1193-compatible": true + } + } + } + ], + "date": 1773330798316, + "id": "xzrEsPho3ILawIS3p7TqY", + "invoker": "https://app.safe.global", + "parentCapability": "endowment:caip25" + } + } + }, + "https://app.signer.cubist.dev": { + "origin": "https://app.signer.cubist.dev", + "permissions": { + "wallet_snap": { + "caveats": [ + { + "type": "snapIds", + "value": { + "npm:@metamask/institutional-wallet-snap": {} + } + } + ], + "date": 1775785213704, + "id": "Zfy4CP7fPbyfGH4BE7Sdw", + "invoker": "https://app.signer.cubist.dev", + "parentCapability": "wallet_snap" + } + } + }, + "https://apps-portal.safe.global": { + "origin": "https://apps-portal.safe.global", + "permissions": { + "wallet_snap": { + "caveats": [ + { + "type": "snapIds", + "value": { + "npm:@metamask/institutional-wallet-snap": {} + } + } + ], + "date": 1771890332055, + "id": "Mf4p7sYFJ8eUZIsCgpbMu", + "invoker": "https://apps-portal.safe.global", + "parentCapability": "wallet_snap" + } + } + }, + "https://console.dev.mpcvault.com": { + "origin": "https://console.dev.mpcvault.com", + "permissions": { + "wallet_snap": { + "caveats": [ + { + "type": "snapIds", + "value": { + "npm:@metamask/institutional-wallet-snap": {} + } + } + ], + "date": 1771890332055, + "id": "Ap10lLAQQWrDlfFdZZ648", + "invoker": "https://console.dev.mpcvault.com", + "parentCapability": "wallet_snap" + } + } + }, + "https://console.fireblocks.io": { + "origin": "https://console.fireblocks.io", + "permissions": { + "wallet_snap": { + "caveats": [ + { + "type": "snapIds", + "value": { + "npm:@metamask/institutional-wallet-snap": {} + } + } + ], + "date": 1771890332054, + "id": "mo2y8Q3TLWNvnXVxq_QtP", + "invoker": "https://console.fireblocks.io", + "parentCapability": "wallet_snap" + } + } + }, + "https://console.mpcvault.com": { + "origin": "https://console.mpcvault.com", + "permissions": { + "wallet_snap": { + "caveats": [ + { + "type": "snapIds", + "value": { + "npm:@metamask/institutional-wallet-snap": {} + } + } + ], + "date": 1771890332055, + "id": "ke_246jhYOjO6PnVzMTDs", + "invoker": "https://console.mpcvault.com", + "parentCapability": "wallet_snap" + } + } + }, + "https://debug.mycactus.dev:1443": { + "origin": "https://debug.mycactus.dev:1443", + "permissions": { + "wallet_snap": { + "caveats": [ + { + "type": "snapIds", + "value": { + "npm:@metamask/institutional-wallet-snap": {} + } + } + ], + "date": 1771890332055, + "id": "dtZZsyX3eWzi5gQnVbvDB", + "invoker": "https://debug.mycactus.dev:1443", + "parentCapability": "wallet_snap" + } + } + }, + "https://dev10-console.waterballoons.xyz": { + "origin": "https://dev10-console.waterballoons.xyz", + "permissions": { + "wallet_snap": { + "caveats": [ + { + "type": "snapIds", + "value": { + "npm:@metamask/institutional-wallet-snap": {} + } + } + ], + "date": 1771890332055, + "id": "y0r8hBFEs_Cq3G5u_Afch", + "invoker": "https://dev10-console.waterballoons.xyz", + "parentCapability": "wallet_snap" + } + } + }, + "https://dev4-console.waterballoons.xyz": { + "origin": "https://dev4-console.waterballoons.xyz", + "permissions": { + "wallet_snap": { + "caveats": [ + { + "type": "snapIds", + "value": { + "npm:@metamask/institutional-wallet-snap": {} + } + } + ], + "date": 1771890332055, + "id": "dAWlZAW-gNcHIxgN2kc1p", + "invoker": "https://dev4-console.waterballoons.xyz", + "parentCapability": "wallet_snap" + } + } + }, + "https://developer.metamask.io": { + "origin": "https://developer.metamask.io", + "permissions": { + "wallet_snap": { + "caveats": [ + { + "type": "snapIds", + "value": { + "npm:@metamask/message-signing-snap": {} + } + } + ], + "date": 1771890332037, + "id": "69wBbTXxmn67KQittk3GY", + "invoker": "https://developer.metamask.io", + "parentCapability": "wallet_snap" + } + } + }, + "https://docs.metamask.io": { + "origin": "https://docs.metamask.io", + "permissions": { + "wallet_snap": { + "caveats": [ + { + "type": "snapIds", + "value": { + "npm:@metamask/message-signing-snap": {} + } + } + ], + "date": 1771890332037, + "id": "GzHhsjKrdXDZrpQX73koF", + "invoker": "https://docs.metamask.io", + "parentCapability": "wallet_snap" + } + } + }, + "https://eu-console.fireblocks.io": { + "origin": "https://eu-console.fireblocks.io", + "permissions": { + "wallet_snap": { + "caveats": [ + { + "type": "snapIds", + "value": { + "npm:@metamask/institutional-wallet-snap": {} + } + } + ], + "date": 1771890332054, + "id": "slS4TOVu_io-XY5MHBdGf", + "invoker": "https://eu-console.fireblocks.io", + "parentCapability": "wallet_snap" + } + } + }, + "https://eu2-console.fireblocks.io": { + "origin": "https://eu2-console.fireblocks.io", + "permissions": { + "wallet_snap": { + "caveats": [ + { + "type": "snapIds", + "value": { + "npm:@metamask/institutional-wallet-snap": {} + } + } + ], + "date": 1771890332054, + "id": "IS__Pms1l0TSrAQmurMUV", + "invoker": "https://eu2-console.fireblocks.io", + "parentCapability": "wallet_snap" + } + } + }, + "https://local.waterballoons.xyz:4200": { + "origin": "https://local.waterballoons.xyz:4200", + "permissions": { + "wallet_snap": { + "caveats": [ + { + "type": "snapIds", + "value": { + "npm:@metamask/institutional-wallet-snap": {} + } + } + ], + "date": 1771890332054, + "id": "M2GkuQpLp2sHBaGifGnX0", + "invoker": "https://local.waterballoons.xyz:4200", + "parentCapability": "wallet_snap" + } + } + }, + "https://localhost:3000": { + "origin": "https://localhost:3000", + "permissions": { + "wallet_snap": { + "caveats": [ + { + "type": "snapIds", + "value": { + "npm:@metamask/institutional-wallet-snap": {} + } + } + ], + "date": 1771890332054, + "id": "JDNkqWIssJGadxkV8s4uJ", + "invoker": "https://localhost:3000", + "parentCapability": "wallet_snap" + } + } + }, + "https://neptune-custody-ui.metamask-institutional.io": { + "origin": "https://neptune-custody-ui.metamask-institutional.io", + "permissions": { + "wallet_snap": { + "caveats": [ + { + "type": "snapIds", + "value": { + "npm:@metamask/institutional-wallet-snap": {} + } + } + ], + "date": 1771890332054, + "id": "2_-N-bosIAB2ivJCGTJdo", + "invoker": "https://neptune-custody-ui.metamask-institutional.io", + "parentCapability": "wallet_snap" + } + } + }, + "https://portfolio-builds.metafi-dev.codefi.network": { + "origin": "https://portfolio-builds.metafi-dev.codefi.network", + "permissions": { + "wallet_snap": { + "caveats": [ + { + "type": "snapIds", + "value": { + "npm:@metamask/message-signing-snap": {} + } + } + ], + "date": 1771890332037, + "id": "p26TfzJriMgXQMp38ybCS", + "invoker": "https://portfolio-builds.metafi-dev.codefi.network", + "parentCapability": "wallet_snap" + } + } + }, + "https://portfolio.metamask.io": { + "origin": "https://portfolio.metamask.io", + "permissions": { + "wallet_snap": { + "caveats": [ + { + "type": "snapIds", + "value": { + "npm:@metamask/message-signing-snap": {}, + "npm:@metamask/solana-wallet-snap": {}, + "npm:@metamask/tron-wallet-snap": {} + } + } + ], + "date": 1771890332037, + "id": "sYQWDJ-eshbwK8Cq4LT-2", + "invoker": "https://portfolio.metamask.io", + "parentCapability": "wallet_snap" + } + } + }, + "https://pre.mycactus.com": { + "origin": "https://pre.mycactus.com", + "permissions": { + "wallet_snap": { + "caveats": [ + { + "type": "snapIds", + "value": { + "npm:@metamask/institutional-wallet-snap": {} + } + } + ], + "date": 1771890332055, + "id": "4Wc59gG3BL2XMm3BgL608", + "invoker": "https://pre.mycactus.com", + "parentCapability": "wallet_snap" + } + } + }, + "https://sandbox.fireblocks.io": { + "origin": "https://sandbox.fireblocks.io", + "permissions": { + "wallet_snap": { + "caveats": [ + { + "type": "snapIds", + "value": { + "npm:@metamask/institutional-wallet-snap": {} + } + } + ], + "date": 1771890332054, + "id": "2ejJ2BwvdL7UTsqxOZZrS", + "invoker": "https://sandbox.fireblocks.io", + "parentCapability": "wallet_snap" + } + } + }, + "https://saturn-custody-ui.metamask-institutional.io": { + "origin": "https://saturn-custody-ui.metamask-institutional.io", + "permissions": { + "wallet_snap": { + "caveats": [ + { + "type": "snapIds", + "value": { + "npm:@metamask/institutional-wallet-snap": {} + } + } + ], + "date": 1771890332055, + "id": "P4Zlcq27mCugHYVvL-Tby", + "invoker": "https://saturn-custody-ui.metamask-institutional.io", + "parentCapability": "wallet_snap" + } + } + }, + "https://ui-preprod-v2.qa.zodia.io": { + "origin": "https://ui-preprod-v2.qa.zodia.io", + "permissions": { + "wallet_snap": { + "caveats": [ + { + "type": "snapIds", + "value": { + "npm:@metamask/institutional-wallet-snap": {} + } + } + ], + "date": 1771890332054, + "id": "advCeAO9Io-Aj-O_HpQYJ", + "invoker": "https://ui-preprod-v2.qa.zodia.io", + "parentCapability": "wallet_snap" + } + } + }, + "https://ui-preprod-v2.uat.zodia.io": { + "origin": "https://ui-preprod-v2.uat.zodia.io", + "permissions": { + "wallet_snap": { + "caveats": [ + { + "type": "snapIds", + "value": { + "npm:@metamask/institutional-wallet-snap": {} + } + } + ], + "date": 1771890332054, + "id": "rOtf5iFFgP7YZXHnTCDWY", + "invoker": "https://ui-preprod-v2.uat.zodia.io", + "parentCapability": "wallet_snap" + } + } + }, + "https://ui-v2.qa.zodia.io": { + "origin": "https://ui-v2.qa.zodia.io", + "permissions": { + "wallet_snap": { + "caveats": [ + { + "type": "snapIds", + "value": { + "npm:@metamask/institutional-wallet-snap": {} + } + } + ], + "date": 1771890332054, + "id": "wutfK0ZvOxntZ_hE-5Un5", + "invoker": "https://ui-v2.qa.zodia.io", + "parentCapability": "wallet_snap" + } + } + }, + "https://ui-v2.sit.zodia.io": { + "origin": "https://ui-v2.sit.zodia.io", + "permissions": { + "wallet_snap": { + "caveats": [ + { + "type": "snapIds", + "value": { + "npm:@metamask/institutional-wallet-snap": {} + } + } + ], + "date": 1771890332054, + "id": "e6TCmeelZBVfdrboWz712", + "invoker": "https://ui-v2.sit.zodia.io", + "parentCapability": "wallet_snap" + } + } + }, + "https://v2.custody.zodia.io": { + "origin": "https://v2.custody.zodia.io", + "permissions": { + "wallet_snap": { + "caveats": [ + { + "type": "snapIds", + "value": { + "npm:@metamask/institutional-wallet-snap": {} + } + } + ], + "date": 1771890332054, + "id": "Fmob3Pb0kz-3482zIbarT", + "invoker": "https://v2.custody.zodia.io", + "parentCapability": "wallet_snap" + } + } + }, + "https://www.mycactus.com": { + "origin": "https://www.mycactus.com", + "permissions": { + "wallet_snap": { + "caveats": [ + { + "type": "snapIds", + "value": { + "npm:@metamask/institutional-wallet-snap": {} + } + } + ], + "date": 1771890332056, + "id": "BApjghTXkrofbIclHYPlP", + "invoker": "https://www.mycactus.com", + "parentCapability": "wallet_snap" + } + } + }, + "https://www.mycactus.dev": { + "origin": "https://www.mycactus.dev", + "permissions": { + "wallet_snap": { + "caveats": [ + { + "type": "snapIds", + "value": { + "npm:@metamask/institutional-wallet-snap": {} + } + } + ], + "date": 1771890332055, + "id": "PTf1dya14JRavyVhwqyaT", + "invoker": "https://www.mycactus.dev", + "parentCapability": "wallet_snap" + } + } + }, + "localhost:8000": { + "origin": "localhost:8000", + "permissions": { + "wallet_snap": { + "caveats": [ + { + "type": "snapIds", + "value": { + "npm:@metamask/institutional-wallet-snap": {} + } + } + ], + "date": 1771890332054, + "id": "VFTp1-PFYmZBnlkNEpbnO", + "invoker": "localhost:8000", + "parentCapability": "wallet_snap" + } + } + }, + "npm:@metamask/bitcoin-wallet-snap": { + "origin": "npm:@metamask/bitcoin-wallet-snap", + "permissions": { + "endowment:assets": { + "caveats": [ + { + "type": "chainIds", + "value": [ + "bip122:000000000019d6689c085ae165831e93", + "bip122:000000000933ea01ad0ee984209779ba", + "bip122:00000000da84f2bafbbc53dee25a72ae", + "bip122:00000008819873e925422c1ff0f99f7c", + "bip122:regtest" + ] + } + ], + "date": 1771890332092, + "id": "NTtqm1yIq6b_1ygXb6Nq6", + "invoker": "npm:@metamask/bitcoin-wallet-snap", + "parentCapability": "endowment:assets" + }, + "endowment:cronjob": { + "caveats": [ + { + "type": "snapCronjob", + "value": { + "jobs": [ + { + "duration": "PT30S", + "request": { + "method": "synchronizeAccounts" + } + } + ] + } + } + ], + "date": 1771890332092, + "id": "lBJ5gk7xZ3oS9kH6IBDC3", + "invoker": "npm:@metamask/bitcoin-wallet-snap", + "parentCapability": "endowment:cronjob" + }, + "endowment:keyring": { + "caveats": null, + "date": 1776364729642, + "id": "3R0MYAk_AXm0qtDsQWykT", + "invoker": "npm:@metamask/bitcoin-wallet-snap", + "parentCapability": "endowment:keyring" + }, + "endowment:lifecycle-hooks": { + "caveats": null, + "date": 1771890332092, + "id": "V4Rz8keQxwWMpYyiFXzj9", + "invoker": "npm:@metamask/bitcoin-wallet-snap", + "parentCapability": "endowment:lifecycle-hooks" + }, + "endowment:network-access": { + "caveats": null, + "date": 1771890332092, + "id": "WmBfr8fbmEfHOr5E8S77_", + "invoker": "npm:@metamask/bitcoin-wallet-snap", + "parentCapability": "endowment:network-access" + }, + "endowment:webassembly": { + "caveats": null, + "date": 1771890332092, + "id": "JJwH0WFTt1CZ6WKCd0X5C", + "invoker": "npm:@metamask/bitcoin-wallet-snap", + "parentCapability": "endowment:webassembly" + }, + "snap_dialog": { + "caveats": null, + "date": 1771890332092, + "id": "G3KR2xPb9xcbDKad8Ermw", + "invoker": "npm:@metamask/bitcoin-wallet-snap", + "parentCapability": "snap_dialog" + }, + "snap_getBip32Entropy": { + "caveats": [ + { + "type": "permittedDerivationPaths", + "value": [ + { + "curve": "secp256k1", + "path": ["m", "44'", "0'"] + }, + { + "curve": "secp256k1", + "path": ["m", "44'", "1'"] + }, + { + "curve": "secp256k1", + "path": ["m", "49'", "0'"] + }, + { + "curve": "secp256k1", + "path": ["m", "49'", "1'"] + }, + { + "curve": "secp256k1", + "path": ["m", "84'", "0'"] + }, + { + "curve": "secp256k1", + "path": ["m", "84'", "1'"] + }, + { + "curve": "secp256k1", + "path": ["m", "86'", "0'"] + }, + { + "curve": "secp256k1", + "path": ["m", "86'", "1'"] + } + ] + } + ], + "date": 1771890332092, + "id": "q0tSpXP7FMGP3hUu6KQoV", + "invoker": "npm:@metamask/bitcoin-wallet-snap", + "parentCapability": "snap_getBip32Entropy" + }, + "snap_getPreferences": { + "caveats": null, + "date": 1771890332092, + "id": "Z-4Dv13O4BAJBO5y7S7X8", + "invoker": "npm:@metamask/bitcoin-wallet-snap", + "parentCapability": "snap_getPreferences" + }, + "snap_manageAccounts": { + "caveats": null, + "date": 1771890332092, + "id": "vnokUXq4s2-6K9c0d19Gd", + "invoker": "npm:@metamask/bitcoin-wallet-snap", + "parentCapability": "snap_manageAccounts" + }, + "snap_manageState": { + "caveats": null, + "date": 1771890332092, + "id": "Hm64yPNvsjqBlFzC7N3aC", + "invoker": "npm:@metamask/bitcoin-wallet-snap", + "parentCapability": "snap_manageState" + } + } + }, + "npm:@metamask/ens-resolver-snap": { + "origin": "npm:@metamask/ens-resolver-snap", + "permissions": { + "endowment:caip25": { + "caveats": [ + { + "type": "authorizedScopes", + "value": { + "isMultichainOrigin": false, + "optionalScopes": { + "eip155:1": { + "accounts": [] + }, + "wallet:eip155": { + "accounts": [ + "wallet:eip155:0x30e8ccad5a980bdf30447f8c2c48e70989d9d294", + "wallet:eip155:0xf25bd11c334507fd007d584e2d0b7b2c6543f714", + "wallet:eip155:0xe2f39519240814a77047490357ced4d094b6c9c7", + "wallet:eip155:0x452ca3dad6db7f3a47bbf15b758b6749db579bbc", + "wallet:eip155:0x2b6a82d1fea4d5b137095ca5306ba2589b630a08", + "wallet:eip155:0x94d1362400e999b38c845ca2c305c084031dae84", + "wallet:eip155:0x83ad6a1294d949d514361326bcebae4f73957327", + "wallet:eip155:0xbcc30cc9b8109f87fcede0c57e3a8c3dc979e3d0", + "wallet:eip155:0x3823c59973351f50e8b985e182b81300dae9bb45", + "wallet:eip155:0xc9442048fd0c34b684035a82188b69c4ee5e8f21", + "wallet:eip155:0x9dc641ccd7d1e7c66e47a25598ace7219548d887", + "wallet:eip155:0x6eff00186ba65c5fade98d75aa4d99ef71fa461b", + "wallet:eip155:0x04400bb51b1f886cff338eb2b4118f9ceb4e6fd5", + "wallet:eip155:0xb3864b298f4fddbbbd2fa5cf1a2a2748932b3b81", + "wallet:eip155:0xeeeab71a5989b7951389e3df313ea9876508856f", + "wallet:eip155:0x422b8d8914cdad779f587414d647e953bb3a87db", + "wallet:eip155:0x141d32a89a1e0a5ef360034a2f60a4b917c18838", + "wallet:eip155:0x98931e2b2272891c2e8e47d675007d94ae90ce64", + "wallet:eip155:0xf1f63d55e8f25c962079be324c71cdcf792c6047", + "wallet:eip155:0xda04e0fe4e79eebcaffcbfff8ea0bdcd442d2119", + "wallet:eip155:0xa30078e306614c2f444550da6bc759173dfb61fd", + "wallet:eip155:0x09b8556833e53f92ee0b668db146b43ca2cab130" + ] + } + }, + "requiredScopes": {}, + "sessionProperties": { + "eip1193-compatible": true + } + } + } + ], + "date": 1777417482156, + "id": "0QNrzrkoICz1rUOQH-j4y", + "invoker": "npm:@metamask/ens-resolver-snap", + "parentCapability": "endowment:caip25" + }, + "endowment:ethereum-provider": { + "caveats": null, + "date": 1771890332041, + "id": "cT0DnjQjtdaVgkLKI9RBr", + "invoker": "npm:@metamask/ens-resolver-snap", + "parentCapability": "endowment:ethereum-provider" + }, + "endowment:name-lookup": { + "caveats": null, + "date": 1771890332041, + "id": "E9gqZ1uUnFrHfpunkAzfK", + "invoker": "npm:@metamask/ens-resolver-snap", + "parentCapability": "endowment:name-lookup" + }, + "endowment:network-access": { + "caveats": null, + "date": 1771890332041, + "id": "_Q58Ivtk-Nkdlchaxc89e", + "invoker": "npm:@metamask/ens-resolver-snap", + "parentCapability": "endowment:network-access" + } + } + }, + "npm:@metamask/gator-permissions-snap": { + "origin": "npm:@metamask/gator-permissions-snap", + "permissions": { + "endowment:ethereum-provider": { + "caveats": null, + "date": 1771890332035, + "id": "FoyUQ1by14fmox98G-MOX", + "invoker": "npm:@metamask/gator-permissions-snap", + "parentCapability": "endowment:ethereum-provider" + }, + "endowment:network-access": { + "caveats": null, + "date": 1771890332035, + "id": "9Sc9iPIOMBK75awVpEx0X", + "invoker": "npm:@metamask/gator-permissions-snap", + "parentCapability": "endowment:network-access" + }, + "endowment:rpc": { + "caveats": [ + { + "type": "rpcOrigin", + "value": { + "dapps": false, + "snaps": true + } + } + ], + "date": 1771890332035, + "id": "AneryV4VnLjVjhaQ4svbC", + "invoker": "npm:@metamask/gator-permissions-snap", + "parentCapability": "endowment:rpc" + }, + "snap_dialog": { + "caveats": null, + "date": 1771890332035, + "id": "tyrWMZOZE3HAxzaZVGz4u", + "invoker": "npm:@metamask/gator-permissions-snap", + "parentCapability": "snap_dialog" + }, + "snap_getPreferences": { + "caveats": null, + "date": 1771890332035, + "id": "eigCMzy2MpN5AolhItCqL", + "invoker": "npm:@metamask/gator-permissions-snap", + "parentCapability": "snap_getPreferences" + }, + "snap_manageState": { + "caveats": null, + "date": 1771890332035, + "id": "vP6Si3ZM5yQAOzaH2y5Sq", + "invoker": "npm:@metamask/gator-permissions-snap", + "parentCapability": "snap_manageState" + }, + "wallet_snap": { + "caveats": [ + { + "type": "snapIds", + "value": { + "npm:@metamask/message-signing-snap": {} + } + } + ], + "date": 1771890332037, + "id": "ASgvsQgNHnP4Y1SVNFNy7", + "invoker": "npm:@metamask/gator-permissions-snap", + "parentCapability": "wallet_snap" + } + } + }, + "npm:@metamask/institutional-wallet-snap": { + "origin": "npm:@metamask/institutional-wallet-snap", + "permissions": { + "endowment:cronjob": { + "caveats": [ + { + "type": "snapCronjob", + "value": { + "jobs": [ + { + "expression": "5/15 * * * * *", + "request": { + "method": "execute" + } + }, + { + "expression": "* * * * *", + "request": { + "method": "manageSleepState" + } + } + ] + } + } + ], + "date": 1771890332053, + "id": "TlOi4UcFExDqGccrpFJ-K", + "invoker": "npm:@metamask/institutional-wallet-snap", + "parentCapability": "endowment:cronjob" + }, + "endowment:ethereum-provider": { + "caveats": null, + "date": 1771890332053, + "id": "EOtEE3S7b89kiKmen0zx8", + "invoker": "npm:@metamask/institutional-wallet-snap", + "parentCapability": "endowment:ethereum-provider" + }, + "endowment:keyring": { + "caveats": [ + { + "type": "keyringOrigin", + "value": { + "allowedOrigins": ["localhost:8000", "http://localhost:8000"] + } + } + ], + "date": 1771890332053, + "id": "28NWZavCxrbPY_EgAAdlq", + "invoker": "npm:@metamask/institutional-wallet-snap", + "parentCapability": "endowment:keyring" + }, + "endowment:network-access": { + "caveats": null, + "date": 1771890332053, + "id": "NN5JCM9vGsMYa3TCcqqaS", + "invoker": "npm:@metamask/institutional-wallet-snap", + "parentCapability": "endowment:network-access" + }, + "endowment:page-home": { + "caveats": null, + "date": 1771890332053, + "id": "iy7hHqFUnuOZDV42wRrK_", + "invoker": "npm:@metamask/institutional-wallet-snap", + "parentCapability": "endowment:page-home" + }, + "endowment:rpc": { + "caveats": [ + { + "type": "rpcOrigin", + "value": { + "allowedOrigins": [ + "localhost:8000", + "http://localhost:8000", + "localhost:3000", + "https://localhost:3000", + "http://localhost:3000", + "https://neptune-custody-ui.metamask-institutional.io", + "https://zodia.io", + "https://ui-v2.sit.zodia.io", + "https://ui-v2.qa.zodia.io", + "https://ui-preprod-v2.qa.zodia.io", + "https://ui-preprod-v2.uat.zodia.io", + "https://v2.custody.zodia.io", + "https://console.fireblocks.io", + "https://eu-console.fireblocks.io", + "https://eu2-console.fireblocks.io", + "https://sandbox.fireblocks.io", + "https://local.waterballoons.xyz:4200", + "https://dev4-console.waterballoons.xyz", + "https://dev10-console.waterballoons.xyz", + "https://console.dev.mpcvault.com", + "https://saturn-custody-ui.metamask-institutional.io", + "https://console.mpcvault.com", + "https://app.bitgo.com", + "https://app.bitgo-test.com", + "https://apps-portal.safe.global", + "https://alpha.mycactus.io", + "https://pre.mycactus.com", + "https://www.mycactus.dev", + "https://debug.mycactus.dev:1443", + "https://www.mycactus.com", + "https://app-gamma.signer.cubist.dev", + "https://app-beta.signer.cubist.dev", + "https://app.signer.cubist.dev" + ] + } + } + ], + "date": 1775785213703, + "id": "gMfCwOSvAoHu6ZE-owfD4", + "invoker": "npm:@metamask/institutional-wallet-snap", + "parentCapability": "endowment:rpc" + }, + "snap_dialog": { + "caveats": null, + "date": 1771890332053, + "id": "tjg7oaLB1x6gevuzKEJWS", + "invoker": "npm:@metamask/institutional-wallet-snap", + "parentCapability": "snap_dialog" + }, + "snap_manageAccounts": { + "caveats": null, + "date": 1771890332053, + "id": "iv9So6HjWyFjP47_Y9TR-", + "invoker": "npm:@metamask/institutional-wallet-snap", + "parentCapability": "snap_manageAccounts" + }, + "snap_manageState": { + "caveats": null, + "date": 1771890332053, + "id": "-jYPKH7WS7mPvj9ZQT8CJ", + "invoker": "npm:@metamask/institutional-wallet-snap", + "parentCapability": "snap_manageState" + }, + "snap_notify": { + "caveats": null, + "date": 1771890332053, + "id": "ICa1O64W66d52W051FZDf", + "invoker": "npm:@metamask/institutional-wallet-snap", + "parentCapability": "snap_notify" + } + } + }, + "npm:@metamask/message-signing-snap": { + "origin": "npm:@metamask/message-signing-snap", + "permissions": { + "endowment:rpc": { + "caveats": [ + { + "type": "rpcOrigin", + "value": { + "dapps": true, + "snaps": true + } + } + ], + "date": 1771890332037, + "id": "Vg5wljrs8kT16psraqK5k", + "invoker": "npm:@metamask/message-signing-snap", + "parentCapability": "endowment:rpc" + }, + "snap_getEntropy": { + "caveats": null, + "date": 1771890332037, + "id": "vs4TIHm4X0lI_b_hzXkbF", + "invoker": "npm:@metamask/message-signing-snap", + "parentCapability": "snap_getEntropy" + } + } + }, + "npm:@metamask/permissions-kernel-snap": { + "origin": "npm:@metamask/permissions-kernel-snap", + "permissions": { + "endowment:rpc": { + "caveats": [ + { + "type": "rpcOrigin", + "value": { + "dapps": true, + "snaps": false + } + } + ], + "date": 1771890332023, + "id": "KPvzwP2_YWhzGcWvktAgV", + "invoker": "npm:@metamask/permissions-kernel-snap", + "parentCapability": "endowment:rpc" + }, + "wallet_snap": { + "caveats": [ + { + "type": "snapIds", + "value": { + "npm:@metamask/gator-permissions-snap": {} + } + } + ], + "date": 1771890332035, + "id": "88uNjbz5XYigoHylXjZ69", + "invoker": "npm:@metamask/permissions-kernel-snap", + "parentCapability": "wallet_snap" + } + } + }, + "npm:@metamask/solana-wallet-snap": { + "origin": "npm:@metamask/solana-wallet-snap", + "permissions": { + "endowment:assets": { + "caveats": [ + { + "type": "chainIds", + "value": [ + "solana:5eykt4UsFv8P8NJdTREpY1vzqKqZKvdp", + "solana:EtWTRABZaYq6iMfeYKouRu166VU2xqa1" + ] + } + ], + "date": 1771890332099, + "id": "Thdyo_Iq-5FknZrCJpp4h", + "invoker": "npm:@metamask/solana-wallet-snap", + "parentCapability": "endowment:assets" + }, + "endowment:cronjob": { + "caveats": [ + { + "type": "snapCronjob", + "value": { + "jobs": [] + } + } + ], + "date": 1771890332099, + "id": "LdWITV3gQZ_dooA4CVB6D", + "invoker": "npm:@metamask/solana-wallet-snap", + "parentCapability": "endowment:cronjob" + }, + "endowment:keyring": { + "caveats": [ + { + "type": "keyringOrigin", + "value": { + "allowedOrigins": ["https://portfolio.metamask.io"] + } + } + ], + "date": 1771890332099, + "id": "s1XFBw5SFDPKAlGn9-MEm", + "invoker": "npm:@metamask/solana-wallet-snap", + "parentCapability": "endowment:keyring" + }, + "endowment:lifecycle-hooks": { + "caveats": null, + "date": 1771890332099, + "id": "RrniYEnCakWPZmEXuKwtI", + "invoker": "npm:@metamask/solana-wallet-snap", + "parentCapability": "endowment:lifecycle-hooks" + }, + "endowment:name-lookup": { + "caveats": [ + { + "type": "chainIds", + "value": [ + "solana:5eykt4UsFv8P8NJdTREpY1vzqKqZKvdp", + "solana:EtWTRABZaYq6iMfeYKouRu166VU2xqa1" + ] + } + ], + "date": 1771890332099, + "id": "m8WSV1rS5z3eFsqXVh3KT", + "invoker": "npm:@metamask/solana-wallet-snap", + "parentCapability": "endowment:name-lookup" + }, + "endowment:network-access": { + "caveats": null, + "date": 1771890332099, + "id": "vxu3GzU6vP2uycSM4Rb_v", + "invoker": "npm:@metamask/solana-wallet-snap", + "parentCapability": "endowment:network-access" + }, + "endowment:protocol": { + "caveats": [ + { + "type": "protocolSnapScopes", + "value": { + "solana:5eykt4UsFv8P8NJdTREpY1vzqKqZKvdp": { + "methods": [ + "getGenesisHash", + "getLatestBlockhash", + "getMinimumBalanceForRentExemption" + ] + }, + "solana:EtWTRABZaYq6iMfeYKouRu166VU2xqa1": { + "methods": [ + "getGenesisHash", + "getLatestBlockhash", + "getMinimumBalanceForRentExemption" + ] + } + } + } + ], + "date": 1771890332099, + "id": "E2ynzNN6TnbJqk_-gRKxR", + "invoker": "npm:@metamask/solana-wallet-snap", + "parentCapability": "endowment:protocol" + }, + "endowment:rpc": { + "caveats": [ + { + "type": "rpcOrigin", + "value": { + "dapps": true, + "snaps": false + } + } + ], + "date": 1771890332099, + "id": "d5HEPL1mP2Q61X5IGYksP", + "invoker": "npm:@metamask/solana-wallet-snap", + "parentCapability": "endowment:rpc" + }, + "snap_dialog": { + "caveats": null, + "date": 1771890332099, + "id": "9mONRXYR5LWF1p5D33WkM", + "invoker": "npm:@metamask/solana-wallet-snap", + "parentCapability": "snap_dialog" + }, + "snap_getBip32Entropy": { + "caveats": [ + { + "type": "permittedDerivationPaths", + "value": [ + { + "curve": "ed25519", + "path": ["m", "44'", "501'"] + } + ] + } + ], + "date": 1771890332099, + "id": "zL7N4lt_DJ9UsWCni3AjB", + "invoker": "npm:@metamask/solana-wallet-snap", + "parentCapability": "snap_getBip32Entropy" + }, + "snap_getPreferences": { + "caveats": null, + "date": 1771890332099, + "id": "p8NV0kmCYJsBYuqWAiNuR", + "invoker": "npm:@metamask/solana-wallet-snap", + "parentCapability": "snap_getPreferences" + }, + "snap_manageAccounts": { + "caveats": null, + "date": 1771890332099, + "id": "L7Mk_DTpN-smD6jV-o0xx", + "invoker": "npm:@metamask/solana-wallet-snap", + "parentCapability": "snap_manageAccounts" + }, + "snap_manageState": { + "caveats": null, + "date": 1771890332099, + "id": "ZkrOZYNNPpQ9J7wGNrg_n", + "invoker": "npm:@metamask/solana-wallet-snap", + "parentCapability": "snap_manageState" + } + } + }, + "npm:@metamask/tron-wallet-snap": { + "origin": "npm:@metamask/tron-wallet-snap", + "permissions": { + "endowment:assets": { + "caveats": [ + { + "type": "chainIds", + "value": ["tron:728126428"] + } + ], + "date": 1771890332111, + "id": "ovEtQQYrml7a5Qw0uutfY", + "invoker": "npm:@metamask/tron-wallet-snap", + "parentCapability": "endowment:assets" + }, + "endowment:cronjob": { + "caveats": [ + { + "type": "snapCronjob", + "value": { + "jobs": [ + { + "duration": "PT30S", + "request": { + "method": "onSynchronizeSelectedAccountsCronjob" + } + } + ] + } + } + ], + "date": 1771890332111, + "id": "RvEnpy83rpTXpYX8f1N9A", + "invoker": "npm:@metamask/tron-wallet-snap", + "parentCapability": "endowment:cronjob" + }, + "endowment:keyring": { + "caveats": [ + { + "type": "keyringOrigin", + "value": { + "allowedOrigins": ["https://portfolio.metamask.io"] + } + } + ], + "date": 1771890332111, + "id": "nxn2meVgFYgRA9Z8t0c4n", + "invoker": "npm:@metamask/tron-wallet-snap", + "parentCapability": "endowment:keyring" + }, + "endowment:network-access": { + "caveats": null, + "date": 1771890332111, + "id": "I6k5hAQhPSKhyFfaQpCL3", + "invoker": "npm:@metamask/tron-wallet-snap", + "parentCapability": "endowment:network-access" + }, + "snap_dialog": { + "caveats": null, + "date": 1771890332111, + "id": "MMGZ09ZRS_I-qO8VYSwSk", + "invoker": "npm:@metamask/tron-wallet-snap", + "parentCapability": "snap_dialog" + }, + "snap_getBip32Entropy": { + "caveats": [ + { + "type": "permittedDerivationPaths", + "value": [ + { + "curve": "secp256k1", + "path": ["m", "44'", "195'"] + } + ] + } + ], + "date": 1771890332111, + "id": "8xfDhwtZPtz3-DZdCfUFL", + "invoker": "npm:@metamask/tron-wallet-snap", + "parentCapability": "snap_getBip32Entropy" + }, + "snap_getPreferences": { + "caveats": null, + "date": 1771890332111, + "id": "4BPIq3AT8OENA3vBw7hbO", + "invoker": "npm:@metamask/tron-wallet-snap", + "parentCapability": "snap_getPreferences" + }, + "snap_manageAccounts": { + "caveats": null, + "date": 1771890332111, + "id": "g4-F18BK0Ju1oqhEmuP1T", + "invoker": "npm:@metamask/tron-wallet-snap", + "parentCapability": "snap_manageAccounts" + }, + "snap_manageState": { + "caveats": null, + "date": 1771890332111, + "id": "saocexCEDfU5XhzYgrEqt", + "invoker": "npm:@metamask/tron-wallet-snap", + "parentCapability": "snap_manageState" + } + } + } + }, + "permissionHistory": { + "https://app.safe.global": { + "eth_accounts": { + "accounts": { + "0x30e8ccad5a980bdf30447f8c2c48e70989d9d294": 1778721516064, + "0x9f66e62fd52eeb9286385f620d2bcbe02c94443e": 1773944221525, + "0xb3864b298f4fddbbbd2fa5cf1a2a2748932b3b81": 1773330662625, + "0xeeeab71a5989b7951389e3df313ea9876508856f": 1773330701544 + }, + "lastApproved": 1773331224412 + } + }, + "npm:@metamask/ens-resolver-snap": { + "eth_accounts": { + "accounts": { + "0x04400bb51b1f886cff338eb2b4118f9ceb4e6fd5": 1778721557374, + "0x09b8556833e53f92ee0b668db146b43ca2cab130": 1778721557374, + "0x141d32a89a1e0a5ef360034a2f60a4b917c18838": 1778721557374, + "0x2b6a82d1fea4d5b137095ca5306ba2589b630a08": 1778721557374, + "0x30e8ccad5a980bdf30447f8c2c48e70989d9d294": 1778721557374, + "0x3823c59973351f50e8b985e182b81300dae9bb45": 1778721557374, + "0x422b8d8914cdad779f587414d647e953bb3a87db": 1778721557374, + "0x452ca3dad6db7f3a47bbf15b758b6749db579bbc": 1778721557374, + "0x6eff00186ba65c5fade98d75aa4d99ef71fa461b": 1778721557374, + "0x83ad6a1294d949d514361326bcebae4f73957327": 1778721557374, + "0x94d1362400e999b38c845ca2c305c084031dae84": 1778721557374, + "0x98931e2b2272891c2e8e47d675007d94ae90ce64": 1778721557374, + "0x9dc641ccd7d1e7c66e47a25598ace7219548d887": 1778721557374, + "0xa30078e306614c2f444550da6bc759173dfb61fd": 1778721557374, + "0xb3864b298f4fddbbbd2fa5cf1a2a2748932b3b81": 1778721557374, + "0xbcc30cc9b8109f87fcede0c57e3a8c3dc979e3d0": 1778721557374, + "0xc9442048fd0c34b684035a82188b69c4ee5e8f21": 1778721557374, + "0xda04e0fe4e79eebcaffcbfff8ea0bdcd442d2119": 1778721557374, + "0xe2f39519240814a77047490357ced4d094b6c9c7": 1778721557374, + "0xeeeab71a5989b7951389e3df313ea9876508856f": 1778721557374, + "0xf1f63d55e8f25c962079be324c71cdcf792c6047": 1778721557374, + "0xf25bd11c334507fd007d584e2d0b7b2c6543f714": 1778721557374 + } + } + } + }, + "permissionActivityLog": [ + { + "id": 999677210, + "method": "snap_manageState", + "methodType": "restricted", + "origin": "npm:@metamask/institutional-wallet-snap", + "requestTime": 1779124920016, + "responseTime": 1779124920017, + "success": true + }, + { + "id": 999677211, + "method": "snap_manageState", + "methodType": "restricted", + "origin": "npm:@metamask/institutional-wallet-snap", + "requestTime": 1779124920019, + "responseTime": 1779124920019, + "success": true + }, + { + "id": 999677213, + "method": "snap_manageState", + "methodType": "restricted", + "origin": "npm:@metamask/institutional-wallet-snap", + "requestTime": 1779124980015, + "responseTime": 1779124980015, + "success": true + }, + { + "id": 999677214, + "method": "snap_manageState", + "methodType": "restricted", + "origin": "npm:@metamask/institutional-wallet-snap", + "requestTime": 1779124980017, + "responseTime": 1779124980017, + "success": true + }, + { + "id": 999677216, + "method": "snap_manageState", + "methodType": "restricted", + "origin": "npm:@metamask/institutional-wallet-snap", + "requestTime": 1779125040015, + "responseTime": 1779125040015, + "success": true + }, + { + "id": 999677217, + "method": "snap_manageState", + "methodType": "restricted", + "origin": "npm:@metamask/institutional-wallet-snap", + "requestTime": 1779125040016, + "responseTime": 1779125040016, + "success": true + }, + { + "id": 999677219, + "method": "snap_manageState", + "methodType": "restricted", + "origin": "npm:@metamask/institutional-wallet-snap", + "requestTime": 1779125100016, + "responseTime": 1779125100016, + "success": true + }, + { + "id": 999677220, + "method": "snap_manageState", + "methodType": "restricted", + "origin": "npm:@metamask/institutional-wallet-snap", + "requestTime": 1779125100018, + "responseTime": 1779125100018, + "success": true + }, + { + "id": 999677222, + "method": "snap_manageState", + "methodType": "restricted", + "origin": "npm:@metamask/institutional-wallet-snap", + "requestTime": 1779125160013, + "responseTime": 1779125160013, + "success": true + }, + { + "id": 999677223, + "method": "snap_manageState", + "methodType": "restricted", + "origin": "npm:@metamask/institutional-wallet-snap", + "requestTime": 1779125160014, + "responseTime": 1779125160015, + "success": true + }, + { + "id": 999677225, + "method": "snap_manageState", + "methodType": "restricted", + "origin": "npm:@metamask/institutional-wallet-snap", + "requestTime": 1779125220012, + "responseTime": 1779125220013, + "success": true + }, + { + "id": 999677226, + "method": "snap_manageState", + "methodType": "restricted", + "origin": "npm:@metamask/institutional-wallet-snap", + "requestTime": 1779125220014, + "responseTime": 1779125220015, + "success": true + }, + { + "id": 999677228, + "method": "snap_manageState", + "methodType": "restricted", + "origin": "npm:@metamask/institutional-wallet-snap", + "requestTime": 1779125280010, + "responseTime": 1779125280010, + "success": true + }, + { + "id": 999677229, + "method": "snap_manageState", + "methodType": "restricted", + "origin": "npm:@metamask/institutional-wallet-snap", + "requestTime": 1779125280011, + "responseTime": 1779125280012, + "success": true + }, + { + "id": 999677231, + "method": "snap_manageState", + "methodType": "restricted", + "origin": "npm:@metamask/institutional-wallet-snap", + "requestTime": 1779125340016, + "responseTime": 1779125340016, + "success": true + }, + { + "id": 999677232, + "method": "snap_manageState", + "methodType": "restricted", + "origin": "npm:@metamask/institutional-wallet-snap", + "requestTime": 1779125340018, + "responseTime": 1779125340018, + "success": true + }, + { + "id": 999677234, + "method": "snap_manageState", + "methodType": "restricted", + "origin": "npm:@metamask/institutional-wallet-snap", + "requestTime": 1779125400015, + "responseTime": 1779125400016, + "success": true + }, + { + "id": 999677235, + "method": "snap_manageState", + "methodType": "restricted", + "origin": "npm:@metamask/institutional-wallet-snap", + "requestTime": 1779125400017, + "responseTime": 1779125400018, + "success": true + }, + { + "id": 999677237, + "method": "snap_manageState", + "methodType": "restricted", + "origin": "npm:@metamask/institutional-wallet-snap", + "requestTime": 1779125460012, + "responseTime": 1779125460013, + "success": true + }, + { + "id": 999677238, + "method": "snap_manageState", + "methodType": "restricted", + "origin": "npm:@metamask/institutional-wallet-snap", + "requestTime": 1779125460014, + "responseTime": 1779125460014, + "success": true + }, + { + "id": 999677240, + "method": "snap_manageState", + "methodType": "restricted", + "origin": "npm:@metamask/institutional-wallet-snap", + "requestTime": 1779125520011, + "responseTime": 1779125520011, + "success": true + }, + { + "id": 999677241, + "method": "snap_manageState", + "methodType": "restricted", + "origin": "npm:@metamask/institutional-wallet-snap", + "requestTime": 1779125520014, + "responseTime": 1779125520015, + "success": true + }, + { + "id": 999677243, + "method": "snap_manageState", + "methodType": "restricted", + "origin": "npm:@metamask/institutional-wallet-snap", + "requestTime": 1779125580011, + "responseTime": 1779125580011, + "success": true + }, + { + "id": 999677244, + "method": "snap_manageState", + "methodType": "restricted", + "origin": "npm:@metamask/institutional-wallet-snap", + "requestTime": 1779125580012, + "responseTime": 1779125580012, + "success": true + }, + { + "id": 999677246, + "method": "snap_manageState", + "methodType": "restricted", + "origin": "npm:@metamask/institutional-wallet-snap", + "requestTime": 1779125640015, + "responseTime": 1779125640015, + "success": true + }, + { + "id": 999677247, + "method": "snap_manageState", + "methodType": "restricted", + "origin": "npm:@metamask/institutional-wallet-snap", + "requestTime": 1779125640016, + "responseTime": 1779125640017, + "success": true + }, + { + "id": 999677249, + "method": "snap_manageState", + "methodType": "restricted", + "origin": "npm:@metamask/institutional-wallet-snap", + "requestTime": 1779125700013, + "responseTime": 1779125700013, + "success": true + }, + { + "id": 999677250, + "method": "snap_manageState", + "methodType": "restricted", + "origin": "npm:@metamask/institutional-wallet-snap", + "requestTime": 1779125700015, + "responseTime": 1779125700015, + "success": true + }, + { + "id": 999677252, + "method": "snap_manageState", + "methodType": "restricted", + "origin": "npm:@metamask/institutional-wallet-snap", + "requestTime": 1779125760016, + "responseTime": 1779125760017, + "success": true + }, + { + "id": 999677253, + "method": "snap_manageState", + "methodType": "restricted", + "origin": "npm:@metamask/institutional-wallet-snap", + "requestTime": 1779125760019, + "responseTime": 1779125760019, + "success": true + }, + { + "id": 999677255, + "method": "snap_manageState", + "methodType": "restricted", + "origin": "npm:@metamask/institutional-wallet-snap", + "requestTime": 1779125820012, + "responseTime": 1779125820016, + "success": true + }, + { + "id": 999677256, + "method": "snap_manageState", + "methodType": "restricted", + "origin": "npm:@metamask/institutional-wallet-snap", + "requestTime": 1779125820017, + "responseTime": 1779125820017, + "success": true + }, + { + "id": 999677258, + "method": "snap_manageState", + "methodType": "restricted", + "origin": "npm:@metamask/institutional-wallet-snap", + "requestTime": 1779125880014, + "responseTime": 1779125880015, + "success": true + }, + { + "id": 999677259, + "method": "snap_manageState", + "methodType": "restricted", + "origin": "npm:@metamask/institutional-wallet-snap", + "requestTime": 1779125880017, + "responseTime": 1779125880017, + "success": true + }, + { + "id": 999677261, + "method": "snap_manageState", + "methodType": "restricted", + "origin": "npm:@metamask/institutional-wallet-snap", + "requestTime": 1779125940016, + "responseTime": 1779125940017, + "success": true + }, + { + "id": 999677262, + "method": "snap_manageState", + "methodType": "restricted", + "origin": "npm:@metamask/institutional-wallet-snap", + "requestTime": 1779125940018, + "responseTime": 1779125940018, + "success": true + }, + { + "id": 999677264, + "method": "snap_manageState", + "methodType": "restricted", + "origin": "npm:@metamask/institutional-wallet-snap", + "requestTime": 1779126000009, + "responseTime": 1779126000010, + "success": true + }, + { + "id": 999677265, + "method": "snap_manageState", + "methodType": "restricted", + "origin": "npm:@metamask/institutional-wallet-snap", + "requestTime": 1779126000011, + "responseTime": 1779126000011, + "success": true + }, + { + "id": 999677267, + "method": "snap_manageState", + "methodType": "restricted", + "origin": "npm:@metamask/institutional-wallet-snap", + "requestTime": 1779126060014, + "responseTime": 1779126060015, + "success": true + }, + { + "id": 999677268, + "method": "snap_manageState", + "methodType": "restricted", + "origin": "npm:@metamask/institutional-wallet-snap", + "requestTime": 1779126060016, + "responseTime": 1779126060016, + "success": true + }, + { + "id": 999677270, + "method": "snap_manageState", + "methodType": "restricted", + "origin": "npm:@metamask/institutional-wallet-snap", + "requestTime": 1779126120014, + "responseTime": 1779126120015, + "success": true + }, + { + "id": 999677271, + "method": "snap_manageState", + "methodType": "restricted", + "origin": "npm:@metamask/institutional-wallet-snap", + "requestTime": 1779126120018, + "responseTime": 1779126120018, + "success": true + }, + { + "id": 999677273, + "method": "snap_manageState", + "methodType": "restricted", + "origin": "npm:@metamask/institutional-wallet-snap", + "requestTime": 1779126180014, + "responseTime": 1779126180014, + "success": true + }, + { + "id": 999677274, + "method": "snap_manageState", + "methodType": "restricted", + "origin": "npm:@metamask/institutional-wallet-snap", + "requestTime": 1779126180015, + "responseTime": 1779126180015, + "success": true + }, + { + "id": 999677276, + "method": "snap_manageState", + "methodType": "restricted", + "origin": "npm:@metamask/institutional-wallet-snap", + "requestTime": 1779126240012, + "responseTime": 1779126240012, + "success": true + }, + { + "id": 999677277, + "method": "snap_manageState", + "methodType": "restricted", + "origin": "npm:@metamask/institutional-wallet-snap", + "requestTime": 1779126240013, + "responseTime": 1779126240013, + "success": true + }, + { + "id": 999677279, + "method": "snap_manageState", + "methodType": "restricted", + "origin": "npm:@metamask/institutional-wallet-snap", + "requestTime": 1779126300016, + "responseTime": 1779126300017, + "success": true + }, + { + "id": 999677280, + "method": "snap_manageState", + "methodType": "restricted", + "origin": "npm:@metamask/institutional-wallet-snap", + "requestTime": 1779126300018, + "responseTime": 1779126300018, + "success": true + }, + { + "id": 999677282, + "method": "snap_manageState", + "methodType": "restricted", + "origin": "npm:@metamask/institutional-wallet-snap", + "requestTime": 1779126360008, + "responseTime": 1779126360009, + "success": true + }, + { + "id": 999677283, + "method": "snap_manageState", + "methodType": "restricted", + "origin": "npm:@metamask/institutional-wallet-snap", + "requestTime": 1779126360011, + "responseTime": 1779126360011, + "success": true + }, + { + "id": 548121306, + "method": "snap_manageAccounts", + "methodType": "restricted", + "origin": "npm:@metamask/bitcoin-wallet-snap", + "requestTime": 1779126362107, + "responseTime": 1779126362107, + "success": true + }, + { + "id": 1937469011, + "method": "snap_manageAccounts", + "methodType": "restricted", + "origin": "npm:@metamask/solana-wallet-snap", + "requestTime": 1779126363294, + "responseTime": 1779126363294, + "success": true + }, + { + "id": 435827325, + "method": "snap_getEntropy", + "methodType": "restricted", + "origin": "npm:@metamask/message-signing-snap", + "requestTime": 1779126363403, + "responseTime": 1779126363405, + "success": true + }, + { + "id": 548121329, + "method": "snap_manageAccounts", + "methodType": "restricted", + "origin": "npm:@metamask/bitcoin-wallet-snap", + "requestTime": 1779126363725, + "responseTime": 1779126363726, + "success": true + }, + { + "id": 548121330, + "method": "snap_manageAccounts", + "methodType": "restricted", + "origin": "npm:@metamask/bitcoin-wallet-snap", + "requestTime": 1779126363726, + "responseTime": 1779126363727, + "success": true + }, + { + "id": 1937469026, + "method": "snap_getBip32Entropy", + "methodType": "restricted", + "origin": "npm:@metamask/solana-wallet-snap", + "requestTime": 1779126363752, + "responseTime": 1779126363759, + "success": true + }, + { + "id": 435827326, + "method": "snap_getEntropy", + "methodType": "restricted", + "origin": "npm:@metamask/message-signing-snap", + "requestTime": 1779126363932, + "responseTime": 1779126363934, + "success": true + }, + { + "id": 1937469033, + "method": "snap_manageState", + "methodType": "restricted", + "origin": "npm:@metamask/solana-wallet-snap", + "requestTime": 1779126363969, + "responseTime": 1779126363970, + "success": true + }, + { + "id": 548121335, + "method": "snap_manageAccounts", + "methodType": "restricted", + "origin": "npm:@metamask/bitcoin-wallet-snap", + "requestTime": 1779126363977, + "responseTime": 1779126363977, + "success": true + }, + { + "id": 548121340, + "method": "snap_manageAccounts", + "methodType": "restricted", + "origin": "npm:@metamask/bitcoin-wallet-snap", + "requestTime": 1779126364025, + "responseTime": 1779126364025, + "success": true + }, + { + "id": 1937469040, + "method": "snap_manageState", + "methodType": "restricted", + "origin": "npm:@metamask/solana-wallet-snap", + "requestTime": 1779126364030, + "responseTime": 1779126364031, + "success": true + }, + { + "id": 1937469041, + "method": "snap_manageAccounts", + "methodType": "restricted", + "origin": "npm:@metamask/solana-wallet-snap", + "requestTime": 1779126364033, + "responseTime": 1779126364033, + "success": true + }, + { + "id": 548121344, + "method": "snap_manageAccounts", + "methodType": "restricted", + "origin": "npm:@metamask/bitcoin-wallet-snap", + "requestTime": 1779126364045, + "responseTime": 1779126364045, + "success": true + }, + { + "id": 548121348, + "method": "snap_manageAccounts", + "methodType": "restricted", + "origin": "npm:@metamask/bitcoin-wallet-snap", + "requestTime": 1779126364059, + "responseTime": 1779126364059, + "success": true + }, + { + "id": 548121352, + "method": "snap_manageAccounts", + "methodType": "restricted", + "origin": "npm:@metamask/bitcoin-wallet-snap", + "requestTime": 1779126364072, + "responseTime": 1779126364073, + "success": true + }, + { + "id": 548121356, + "method": "snap_manageAccounts", + "methodType": "restricted", + "origin": "npm:@metamask/bitcoin-wallet-snap", + "requestTime": 1779126364085, + "responseTime": 1779126364085, + "success": true + }, + { + "id": 548121360, + "method": "snap_manageAccounts", + "methodType": "restricted", + "origin": "npm:@metamask/bitcoin-wallet-snap", + "requestTime": 1779126364100, + "responseTime": 1779126364100, + "success": true + }, + { + "id": 548121364, + "method": "snap_manageAccounts", + "methodType": "restricted", + "origin": "npm:@metamask/bitcoin-wallet-snap", + "requestTime": 1779126364116, + "responseTime": 1779126364116, + "success": true + }, + { + "id": 548121368, + "method": "snap_manageAccounts", + "methodType": "restricted", + "origin": "npm:@metamask/bitcoin-wallet-snap", + "requestTime": 1779126364129, + "responseTime": 1779126364130, + "success": true + }, + { + "id": 1937469047, + "method": "snap_manageState", + "methodType": "restricted", + "origin": "npm:@metamask/solana-wallet-snap", + "requestTime": 1779126364226, + "responseTime": 1779126364227, + "success": true + }, + { + "id": 1937469071, + "method": "snap_getBip32Entropy", + "methodType": "restricted", + "origin": "npm:@metamask/solana-wallet-snap", + "requestTime": 1779126364536, + "responseTime": 1779126364537, + "success": true + }, + { + "id": 548121372, + "method": "snap_manageAccounts", + "methodType": "restricted", + "origin": "npm:@metamask/bitcoin-wallet-snap", + "requestTime": 1779126364560, + "responseTime": 1779126364561, + "success": true + }, + { + "id": 548121376, + "method": "snap_manageAccounts", + "methodType": "restricted", + "origin": "npm:@metamask/bitcoin-wallet-snap", + "requestTime": 1779126364577, + "responseTime": 1779126364577, + "success": true + }, + { + "id": 548121380, + "method": "snap_manageAccounts", + "methodType": "restricted", + "origin": "npm:@metamask/bitcoin-wallet-snap", + "requestTime": 1779126364591, + "responseTime": 1779126364591, + "success": true + }, + { + "id": 548121384, + "method": "snap_manageAccounts", + "methodType": "restricted", + "origin": "npm:@metamask/bitcoin-wallet-snap", + "requestTime": 1779126364603, + "responseTime": 1779126364603, + "success": true + }, + { + "id": 548121388, + "method": "snap_manageAccounts", + "methodType": "restricted", + "origin": "npm:@metamask/bitcoin-wallet-snap", + "requestTime": 1779126364619, + "responseTime": 1779126364619, + "success": true + }, + { + "id": 548121392, + "method": "snap_manageAccounts", + "methodType": "restricted", + "origin": "npm:@metamask/bitcoin-wallet-snap", + "requestTime": 1779126364634, + "responseTime": 1779126364634, + "success": true + }, + { + "id": 1937469079, + "method": "snap_manageState", + "methodType": "restricted", + "origin": "npm:@metamask/solana-wallet-snap", + "requestTime": 1779126364796, + "responseTime": 1779126364797, + "success": true + }, + { + "id": 1937469083, + "method": "snap_manageState", + "methodType": "restricted", + "origin": "npm:@metamask/solana-wallet-snap", + "requestTime": 1779126364805, + "responseTime": 1779126364806, + "success": true + }, + { + "id": 1937469084, + "method": "snap_manageAccounts", + "methodType": "restricted", + "origin": "npm:@metamask/solana-wallet-snap", + "requestTime": 1779126364806, + "responseTime": 1779126364807, + "success": true + }, + { + "id": 1937469087, + "method": "snap_manageState", + "methodType": "restricted", + "origin": "npm:@metamask/solana-wallet-snap", + "requestTime": 1779126364826, + "responseTime": 1779126364826, + "success": true + }, + { + "id": 1937469088, + "method": "snap_manageAccounts", + "methodType": "restricted", + "origin": "npm:@metamask/solana-wallet-snap", + "requestTime": 1779126364827, + "responseTime": 1779126364828, + "success": true + }, + { + "id": 1937469089, + "method": "snap_manageAccounts", + "methodType": "restricted", + "origin": "npm:@metamask/solana-wallet-snap", + "requestTime": 1779126364828, + "responseTime": 1779126364829, + "success": true + }, + { + "id": 1144056634, + "method": "snap_manageAccounts", + "methodType": "restricted", + "origin": "npm:@metamask/tron-wallet-snap", + "requestTime": 1779126365644, + "responseTime": 1779126365644, + "success": true + }, + { + "id": 1937469093, + "method": "snap_manageState", + "methodType": "restricted", + "origin": "npm:@metamask/solana-wallet-snap", + "requestTime": 1779126365687, + "responseTime": 1779126365688, + "success": true + }, + { + "id": 1937469094, + "method": "snap_manageAccounts", + "methodType": "restricted", + "origin": "npm:@metamask/solana-wallet-snap", + "requestTime": 1779126365690, + "responseTime": 1779126365691, + "success": true + }, + { + "id": 1144056638, + "method": "snap_manageState", + "methodType": "restricted", + "origin": "npm:@metamask/tron-wallet-snap", + "requestTime": 1779126366103, + "responseTime": 1779126366103, + "success": true + }, + { + "id": 1144056640, + "method": "snap_manageAccounts", + "methodType": "restricted", + "origin": "npm:@metamask/tron-wallet-snap", + "requestTime": 1779126366106, + "responseTime": 1779126366106, + "success": true + }, + { + "id": 1144056641, + "method": "snap_manageAccounts", + "methodType": "restricted", + "origin": "npm:@metamask/tron-wallet-snap", + "requestTime": 1779126366108, + "responseTime": 1779126366108, + "success": true + }, + { + "id": 548121397, + "method": "snap_manageAccounts", + "methodType": "restricted", + "origin": "npm:@metamask/bitcoin-wallet-snap", + "requestTime": 1779126366109, + "responseTime": 1779126366110, + "success": true + }, + { + "id": 1144056643, + "method": "snap_manageState", + "methodType": "restricted", + "origin": "npm:@metamask/tron-wallet-snap", + "requestTime": 1779126366114, + "responseTime": 1779126366114, + "success": true + }, + { + "id": 1144056644, + "method": "snap_manageAccounts", + "methodType": "restricted", + "origin": "npm:@metamask/tron-wallet-snap", + "requestTime": 1779126366115, + "responseTime": 1779126366115, + "success": true + }, + { + "id": 548121399, + "method": "snap_manageAccounts", + "methodType": "restricted", + "origin": "npm:@metamask/bitcoin-wallet-snap", + "requestTime": 1779126373493, + "responseTime": 1779126373493, + "success": true + }, + { + "id": 1144056646, + "method": "snap_manageAccounts", + "methodType": "restricted", + "origin": "npm:@metamask/tron-wallet-snap", + "requestTime": 1779126373645, + "responseTime": 1779126373646, + "success": true + }, + { + "id": 548121401, + "method": "snap_manageAccounts", + "methodType": "restricted", + "origin": "npm:@metamask/bitcoin-wallet-snap", + "requestTime": 1779126373811, + "responseTime": 1779126373811, + "success": true + }, + { + "id": 1144056651, + "method": "snap_manageAccounts", + "methodType": "restricted", + "origin": "npm:@metamask/tron-wallet-snap", + "requestTime": 1779126373930, + "responseTime": 1779126373930, + "success": true + }, + { + "id": 1144056652, + "method": "snap_manageState", + "methodType": "restricted", + "origin": "npm:@metamask/tron-wallet-snap", + "requestTime": 1779126373933, + "responseTime": 1779126373933, + "success": true + }, + { + "id": 1144056654, + "method": "snap_manageAccounts", + "methodType": "restricted", + "origin": "npm:@metamask/tron-wallet-snap", + "requestTime": 1779126373934, + "responseTime": 1779126373934, + "success": true + }, + { + "id": 1144056655, + "method": "snap_manageState", + "methodType": "restricted", + "origin": "npm:@metamask/tron-wallet-snap", + "requestTime": 1779126373937, + "responseTime": 1779126373938, + "success": true + }, + { + "id": 1144056656, + "method": "snap_manageAccounts", + "methodType": "restricted", + "origin": "npm:@metamask/tron-wallet-snap", + "requestTime": 1779126373939, + "responseTime": 1779126373939, + "success": true + } + ], + "subjectMetadata": { + "http://localhost:3000": { + "extensionId": null, + "iconUrl": "http://localhost:3000/assets/favicon-CoJgG2Jx.svg", + "name": "Create New Core Release", + "origin": "http://localhost:3000", + "subjectType": "website" + }, + "https://app.safe.global": { + "extensionId": null, + "iconUrl": "https://app.safe.global/favicons/favicon.ico", + "name": "Safe{Wallet} – Transaction details", + "origin": "https://app.safe.global", + "subjectType": "website" + }, + "https://docs.metamask.io": { + "extensionId": null, + "iconUrl": "https://docs.metamask.io/img/favicons/favicon-96x96.png", + "name": "Services introduction | MetaMask developer documentation", + "origin": "https://docs.metamask.io", + "subjectType": "website" + }, + "npm:@metamask/bitcoin-wallet-snap": { + "extensionId": null, + "iconUrl": null, + "name": "Bitcoin", + "origin": "npm:@metamask/bitcoin-wallet-snap", + "subjectType": "snap", + "svgIcon": "\n\n\n\n\n\n\n\n\n\n", + "version": "1.10.1" + }, + "npm:@metamask/ens-resolver-snap": { + "extensionId": null, + "iconUrl": null, + "name": "Ethereum Name Service resolver", + "origin": "npm:@metamask/ens-resolver-snap", + "subjectType": "snap", + "svgIcon": "\n \n \n \n \n \n \n \n \n\n", + "version": "1.2.0" + }, + "npm:@metamask/gator-permissions-snap": { + "extensionId": null, + "iconUrl": null, + "name": "Gator Permissions", + "origin": "npm:@metamask/gator-permissions-snap", + "subjectType": "snap", + "svgIcon": "\n\n\n\n\n\n\n\n\n\n", + "version": "2.1.0" + }, + "npm:@metamask/institutional-wallet-snap": { + "extensionId": null, + "iconUrl": null, + "name": "Institutional Wallet", + "origin": "npm:@metamask/institutional-wallet-snap", + "subjectType": "snap", + "svgIcon": "\n", + "version": "1.5.0" + }, + "npm:@metamask/message-signing-snap": { + "extensionId": null, + "iconUrl": null, + "name": "Sign in with MetaMask", + "origin": "npm:@metamask/message-signing-snap", + "subjectType": "snap", + "svgIcon": "\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n", + "version": "1.1.4" + }, + "npm:@metamask/permissions-kernel-snap": { + "extensionId": null, + "iconUrl": null, + "name": "MetaMask Permissions Kernel", + "origin": "npm:@metamask/permissions-kernel-snap", + "subjectType": "snap", + "svgIcon": "\n\n\n\n\n\n\n\n\n\n", + "version": "1.3.0" + }, + "npm:@metamask/solana-wallet-snap": { + "extensionId": null, + "iconUrl": null, + "name": "Solana", + "origin": "npm:@metamask/solana-wallet-snap", + "subjectType": "snap", + "svgIcon": "\n\n\n\n\n\n\n\n\n\n\n\n\n", + "version": "2.8.0" + }, + "npm:@metamask/tron-wallet-snap": { + "extensionId": null, + "iconUrl": null, + "name": "Tron", + "origin": "npm:@metamask/tron-wallet-snap", + "subjectType": "snap", + "svgIcon": "", + "version": "1.25.3" + }, + "https://github.com": { + "origin": "https://github.com", + "name": "feat: submit batch sell quotes by micaelae · Pull Request #8775 · MetaMask/core", + "iconUrl": "https://github.githubassets.com/favicons/favicon-failure.svg", + "subjectType": "website", + "extensionId": null + }, + "https://consensys.okta.com": { + "origin": "https://consensys.okta.com", + "name": "consensys.okta.com/login/token/redirect?stateToken=02.id.a_HlTxxdBUfVBJTEQPcYltNp6Pj8bzdU68FIq7ZX", + "iconUrl": null, + "subjectType": "website", + "extensionId": null + } + }, + "announcements": {}, + "orderedNetworkList": [ + { + "networkId": "eip155:1" + }, + { + "networkId": "eip155:59144" + }, + { + "networkId": "eip155:42161" + }, + { + "networkId": "eip155:137" + }, + { + "networkId": "eip155:4326" + }, + { + "networkId": "eip155:56" + }, + { + "networkId": "eip155:43114" + }, + { + "networkId": "eip155:324" + }, + { + "networkId": "eip155:143" + }, + { + "networkId": "eip155:10" + }, + { + "networkId": "eip155:8453" + } + ], + "enabledNetworkMap": { + "bip122": { + "bip122:000000000019d6689c085ae165831e93": true, + "bip122:000000000933ea01ad0ee984209779ba": false, + "bip122:00000000da84f2bafbbc53dee25a72ae": false, + "bip122:00000008819873e925422c1ff0f99f7c": false, + "bip122:regtest": false + }, + "eip155": { + "0x1": true, + "0x10e6": true, + "0x144": true, + "0x18c7": false, + "0x2105": true, + "0x279f": false, + "0x38": true, + "0x89": true, + "0x8f": true, + "0xa": true, + "0xa4b1": true, + "0xa86a": true, + "0xaa36a7": false, + "0xe705": false, + "0xe708": true + }, + "solana": { + "solana:4uhcVJyU9pJkvQyS88uRDiswHXSCkY3z": false, + "solana:5eykt4UsFv8P8NJdTREpY1vzqKqZKvdp": true, + "solana:EtWTRABZaYq6iMfeYKouRu166VU2xqa1": false + }, + "tron": { + "tron:2494104990": false, + "tron:3448148188": false, + "tron:728126428": true + } + }, + "nativeAssetIdentifiers": { + "eip155:1": "eip155:1/slip44:60", + "eip155:10": "eip155:10/slip44:60", + "eip155:10143": "eip155:10143/slip44:1", + "eip155:11155111": "eip155:11155111/slip44:1", + "eip155:137": "eip155:137/slip44:966", + "eip155:143": "eip155:143/slip44:268435779", + "eip155:324": "eip155:324/slip44:60", + "eip155:42161": "eip155:42161/slip44:60", + "eip155:43114": "eip155:43114/slip44:9005", + "eip155:4326": "eip155:4326/slip44:60", + "eip155:56": "eip155:56/slip44:714", + "eip155:59141": "eip155:59141/slip44:1", + "eip155:59144": "eip155:59144/slip44:60", + "eip155:6343": "eip155:6343/slip44:60", + "eip155:8453": "eip155:8453/slip44:60" + }, + "pinnedAccountList": [], + "hiddenAccountList": [], + "gasFeeEstimatesByChainId": { + "0x1": { + "gasFeeEstimates": { + "low": { + "suggestedMaxPriorityFeePerGas": "0.001395747", + "suggestedMaxFeePerGas": "0.129072258", + "minWaitTimeEstimate": 24000, + "maxWaitTimeEstimate": 48000 + }, + "medium": { + "suggestedMaxPriorityFeePerGas": "2", + "suggestedMaxFeePerGas": "2.182577411", + "minWaitTimeEstimate": 12000, + "maxWaitTimeEstimate": 24000 + }, + "high": { + "suggestedMaxPriorityFeePerGas": "2", + "suggestedMaxFeePerGas": "2.182577411", + "minWaitTimeEstimate": 12000, + "maxWaitTimeEstimate": 12000 + }, + "estimatedBaseFee": "0.127676511", + "historicalBaseFeeRange": ["0.104663499", "0.188412831"], + "baseFeeTrend": "up", + "latestPriorityFeeRange": ["0.00438723", "1.5"], + "historicalPriorityFeeRange": ["0.0000001", "32.184323319"], + "priorityFeeTrend": "down", + "networkCongestion": 0.2899 + }, + "estimatedGasFeeTimeBounds": { + "lowerTimeBound": 12000, + "upperTimeBound": 12000 + }, + "gasEstimateType": "fee-market" + }, + "0x10e6": { + "estimatedGasFeeTimeBounds": { + "lowerTimeBound": 250, + "upperTimeBound": 500 + }, + "gasEstimateType": "fee-market", + "gasFeeEstimates": { + "baseFeeTrend": "down", + "estimatedBaseFee": "0.001", + "high": { + "maxWaitTimeEstimate": 500, + "minWaitTimeEstimate": 250, + "suggestedMaxFeePerGas": "0.001", + "suggestedMaxPriorityFeePerGas": "0" + }, + "historicalBaseFeeRange": ["0.001", "0.001"], + "historicalPriorityFeeRange": ["0", "0.0004"], + "latestPriorityFeeRange": ["0", "0.0004"], + "low": { + "maxWaitTimeEstimate": 1000, + "minWaitTimeEstimate": 250, + "suggestedMaxFeePerGas": "0.001", + "suggestedMaxPriorityFeePerGas": "0" + }, + "medium": { + "maxWaitTimeEstimate": 750, + "minWaitTimeEstimate": 250, + "suggestedMaxFeePerGas": "0.001", + "suggestedMaxPriorityFeePerGas": "0" + }, + "networkCongestion": 0, + "priorityFeeTrend": "down" + } + }, + "0x144": { + "estimatedGasFeeTimeBounds": { + "lowerTimeBound": 1000, + "upperTimeBound": 2000 + }, + "gasEstimateType": "fee-market", + "gasFeeEstimates": { + "baseFeeTrend": "down", + "estimatedBaseFee": "0.04525", + "high": { + "maxWaitTimeEstimate": 2000, + "minWaitTimeEstimate": 1000, + "suggestedMaxFeePerGas": "0.076925", + "suggestedMaxPriorityFeePerGas": "0" + }, + "historicalBaseFeeRange": ["0.04525", "0.04525"], + "historicalPriorityFeeRange": ["0", "0"], + "latestPriorityFeeRange": ["0", "0"], + "low": { + "maxWaitTimeEstimate": 4000, + "minWaitTimeEstimate": 1000, + "suggestedMaxFeePerGas": "0.04525", + "suggestedMaxPriorityFeePerGas": "0" + }, + "medium": { + "maxWaitTimeEstimate": 3000, + "minWaitTimeEstimate": 1000, + "suggestedMaxFeePerGas": "0.0610875", + "suggestedMaxPriorityFeePerGas": "0" + }, + "networkCongestion": 0, + "priorityFeeTrend": "down" + } + }, + "0x2105": { + "estimatedGasFeeTimeBounds": { + "lowerTimeBound": 2000, + "upperTimeBound": 4000 + }, + "gasEstimateType": "fee-market", + "gasFeeEstimates": { + "baseFeeTrend": "down", + "estimatedBaseFee": "0.005", + "high": { + "maxWaitTimeEstimate": 4000, + "minWaitTimeEstimate": 2000, + "suggestedMaxFeePerGas": "0.057", + "suggestedMaxPriorityFeePerGas": "0.007" + }, + "historicalBaseFeeRange": ["0.005", "0.005"], + "historicalPriorityFeeRange": ["0.000000001", "1.2488225"], + "latestPriorityFeeRange": ["0.000000001", "0.0148099"], + "low": { + "maxWaitTimeEstimate": 8000, + "minWaitTimeEstimate": 2000, + "suggestedMaxFeePerGas": "0.0111", + "suggestedMaxPriorityFeePerGas": "0.0011" + }, + "medium": { + "maxWaitTimeEstimate": 6000, + "minWaitTimeEstimate": 2000, + "suggestedMaxFeePerGas": "0.027", + "suggestedMaxPriorityFeePerGas": "0.007" + }, + "networkCongestion": 0, + "priorityFeeTrend": "down" + } + }, + "0x38": { + "gasFeeEstimates": { + "low": { + "suggestedMaxPriorityFeePerGas": "0.05", + "suggestedMaxFeePerGas": "0.05", + "minWaitTimeEstimate": 333, + "maxWaitTimeEstimate": 1332 + }, + "medium": { + "suggestedMaxPriorityFeePerGas": "0.05", + "suggestedMaxFeePerGas": "0.05", + "minWaitTimeEstimate": 333, + "maxWaitTimeEstimate": 999 + }, + "high": { + "suggestedMaxPriorityFeePerGas": "0.05", + "suggestedMaxFeePerGas": "0.05", + "minWaitTimeEstimate": 333, + "maxWaitTimeEstimate": 666 + }, + "estimatedBaseFee": "0", + "historicalBaseFeeRange": ["0", "0"], + "baseFeeTrend": "down", + "latestPriorityFeeRange": ["0.05", "0.100000011"], + "historicalPriorityFeeRange": ["0.05", "0.100000011"], + "priorityFeeTrend": "up", + "networkCongestion": 0 + }, + "estimatedGasFeeTimeBounds": { + "lowerTimeBound": 333, + "upperTimeBound": 666 + }, + "gasEstimateType": "fee-market" + }, + "0x3e7": { + "estimatedGasFeeTimeBounds": { + "lowerTimeBound": 1000, + "upperTimeBound": 2000 + }, + "gasEstimateType": "fee-market", + "gasFeeEstimates": { + "baseFeeTrend": "down", + "estimatedBaseFee": "0.1", + "high": { + "maxWaitTimeEstimate": 2000, + "minWaitTimeEstimate": 1000, + "suggestedMaxFeePerGas": "1.000000001", + "suggestedMaxPriorityFeePerGas": "0.000000001" + }, + "historicalBaseFeeRange": ["0.087675", "0.129604202"], + "historicalPriorityFeeRange": ["0.000000001", "886.361671017"], + "latestPriorityFeeRange": ["0.000000001", "2.25"], + "low": { + "maxWaitTimeEstimate": 4000, + "minWaitTimeEstimate": 1000, + "suggestedMaxFeePerGas": "0.200000001", + "suggestedMaxPriorityFeePerGas": "0.000000001" + }, + "medium": { + "maxWaitTimeEstimate": 3000, + "minWaitTimeEstimate": 1000, + "suggestedMaxFeePerGas": "0.400000001", + "suggestedMaxPriorityFeePerGas": "0.000000001" + }, + "networkCongestion": 0.04, + "priorityFeeTrend": "down" + } + }, + "0x89": { + "estimatedGasFeeTimeBounds": { + "lowerTimeBound": 2000, + "upperTimeBound": 6000 + }, + "gasEstimateType": "fee-market", + "gasFeeEstimates": { + "baseFeeTrend": "up", + "estimatedBaseFee": "248.473131234", + "high": { + "maxWaitTimeEstimate": 4000, + "minWaitTimeEstimate": 2000, + "suggestedMaxFeePerGas": "504.048123098", + "suggestedMaxPriorityFeePerGas": "81.6438" + }, + "historicalBaseFeeRange": ["244.563520761", "259.318230691"], + "historicalPriorityFeeRange": ["24.948004796", "11070.859480767"], + "latestPriorityFeeRange": ["83.31", "4227.526868766"], + "low": { + "maxWaitTimeEstimate": 8000, + "minWaitTimeEstimate": 2000, + "suggestedMaxFeePerGas": "324.613131234", + "suggestedMaxPriorityFeePerGas": "76.14" + }, + "medium": { + "maxWaitTimeEstimate": 6000, + "minWaitTimeEstimate": 2000, + "suggestedMaxFeePerGas": "414.008727166", + "suggestedMaxPriorityFeePerGas": "78.57" + }, + "networkCongestion": 0.18155, + "priorityFeeTrend": "up" + } + }, + "0x8f": { + "estimatedGasFeeTimeBounds": { + "lowerTimeBound": 500, + "upperTimeBound": 1500 + }, + "gasEstimateType": "fee-market", + "gasFeeEstimates": { + "baseFeeTrend": "down", + "estimatedBaseFee": "100", + "high": { + "maxWaitTimeEstimate": 1000, + "minWaitTimeEstimate": 500, + "suggestedMaxFeePerGas": "171.96", + "suggestedMaxPriorityFeePerGas": "1.96" + }, + "historicalBaseFeeRange": ["100", "100"], + "historicalPriorityFeeRange": ["0.2", "11244.420485386"], + "latestPriorityFeeRange": ["2", "617.58261773"], + "low": { + "maxWaitTimeEstimate": 2000, + "minWaitTimeEstimate": 500, + "suggestedMaxFeePerGas": "101.88", + "suggestedMaxPriorityFeePerGas": "1.88" + }, + "medium": { + "maxWaitTimeEstimate": 1500, + "minWaitTimeEstimate": 500, + "suggestedMaxFeePerGas": "136.94", + "suggestedMaxPriorityFeePerGas": "1.94" + }, + "networkCongestion": 0, + "priorityFeeTrend": "down" + } + }, + "0xa": { + "estimatedGasFeeTimeBounds": { + "lowerTimeBound": 2000, + "upperTimeBound": 4000 + }, + "gasEstimateType": "fee-market", + "gasFeeEstimates": { + "baseFeeTrend": "down", + "estimatedBaseFee": "0.00000034", + "high": { + "maxWaitTimeEstimate": 4000, + "minWaitTimeEstimate": 2000, + "suggestedMaxFeePerGas": "0.0001034", + "suggestedMaxPriorityFeePerGas": "0.0001" + }, + "historicalBaseFeeRange": ["0.000000339", "0.000000342"], + "historicalPriorityFeeRange": ["0.000000001", "2"], + "latestPriorityFeeRange": ["0.000000001", "0.001440792"], + "low": { + "maxWaitTimeEstimate": 8000, + "minWaitTimeEstimate": 2000, + "suggestedMaxFeePerGas": "0.00010068", + "suggestedMaxPriorityFeePerGas": "0.0001" + }, + "medium": { + "maxWaitTimeEstimate": 6000, + "minWaitTimeEstimate": 2000, + "suggestedMaxFeePerGas": "0.00010102", + "suggestedMaxPriorityFeePerGas": "0.0001" + }, + "networkCongestion": 0.4, + "priorityFeeTrend": "up" + } + }, + "0xa4b1": { + "estimatedGasFeeTimeBounds": { + "lowerTimeBound": 250, + "upperTimeBound": 500 + }, + "gasEstimateType": "fee-market", + "gasFeeEstimates": { + "baseFeeTrend": "down", + "estimatedBaseFee": "0.020014", + "high": { + "maxWaitTimeEstimate": 500, + "minWaitTimeEstimate": 250, + "suggestedMaxFeePerGas": "0.20014", + "suggestedMaxPriorityFeePerGas": "0" + }, + "historicalBaseFeeRange": ["0.02", "0.020646"], + "historicalPriorityFeeRange": ["0", "0"], + "latestPriorityFeeRange": ["0", "0"], + "low": { + "maxWaitTimeEstimate": 1000, + "minWaitTimeEstimate": 250, + "suggestedMaxFeePerGas": "0.040028", + "suggestedMaxPriorityFeePerGas": "0" + }, + "medium": { + "maxWaitTimeEstimate": 750, + "minWaitTimeEstimate": 250, + "suggestedMaxFeePerGas": "0.060042", + "suggestedMaxPriorityFeePerGas": "0" + }, + "networkCongestion": 0.36, + "priorityFeeTrend": "down" + } + }, + "0xa86a": { + "estimatedGasFeeTimeBounds": { + "lowerTimeBound": 1000, + "upperTimeBound": 3000 + }, + "gasEstimateType": "fee-market", + "gasFeeEstimates": { + "baseFeeTrend": "down", + "estimatedBaseFee": "0.000028691", + "high": { + "maxWaitTimeEstimate": 2000, + "minWaitTimeEstimate": 1000, + "suggestedMaxFeePerGas": "2.000048775", + "suggestedMaxPriorityFeePerGas": "2" + }, + "historicalBaseFeeRange": ["0.000023696", "0.00002916"], + "historicalPriorityFeeRange": ["0.000000009", "212.121060137"], + "latestPriorityFeeRange": ["0.000001", "1.5"], + "low": { + "maxWaitTimeEstimate": 4000, + "minWaitTimeEstimate": 1000, + "suggestedMaxFeePerGas": "1.000028691", + "suggestedMaxPriorityFeePerGas": "1" + }, + "medium": { + "maxWaitTimeEstimate": 3000, + "minWaitTimeEstimate": 1000, + "suggestedMaxFeePerGas": "1.500038733", + "suggestedMaxPriorityFeePerGas": "1.5" + }, + "networkCongestion": 0.242, + "priorityFeeTrend": "up" + } + }, + "0xe708": { + "estimatedGasFeeTimeBounds": { + "lowerTimeBound": 2000, + "upperTimeBound": 4000 + }, + "gasEstimateType": "fee-market", + "gasFeeEstimates": { + "baseFeeTrend": "down", + "estimatedBaseFee": "0.000000007", + "high": { + "maxWaitTimeEstimate": 4000, + "minWaitTimeEstimate": 2000, + "suggestedMaxFeePerGas": "0.041904005", + "suggestedMaxPriorityFeePerGas": "0.041903993" + }, + "historicalBaseFeeRange": ["0.000000007", "0.000000007"], + "historicalPriorityFeeRange": ["0.041903993", "0.041903993"], + "latestPriorityFeeRange": ["0.041903993", "0.041903993"], + "low": { + "maxWaitTimeEstimate": 8000, + "minWaitTimeEstimate": 2000, + "suggestedMaxFeePerGas": "0.041904", + "suggestedMaxPriorityFeePerGas": "0.041903993" + }, + "medium": { + "maxWaitTimeEstimate": 6000, + "minWaitTimeEstimate": 2000, + "suggestedMaxFeePerGas": "0.041904003", + "suggestedMaxPriorityFeePerGas": "0.041903993" + }, + "networkCongestion": 0, + "priorityFeeTrend": "down" + } + } + }, + "gasFeeEstimates": { + "low": { + "suggestedMaxPriorityFeePerGas": "0.05", + "suggestedMaxFeePerGas": "0.05", + "minWaitTimeEstimate": 333, + "maxWaitTimeEstimate": 1332 + }, + "medium": { + "suggestedMaxPriorityFeePerGas": "0.05", + "suggestedMaxFeePerGas": "0.05", + "minWaitTimeEstimate": 333, + "maxWaitTimeEstimate": 999 + }, + "high": { + "suggestedMaxPriorityFeePerGas": "0.05", + "suggestedMaxFeePerGas": "0.05", + "minWaitTimeEstimate": 333, + "maxWaitTimeEstimate": 666 + }, + "estimatedBaseFee": "0", + "historicalBaseFeeRange": ["0", "0"], + "baseFeeTrend": "down", + "latestPriorityFeeRange": ["0.05", "0.100000011"], + "historicalPriorityFeeRange": ["0.05", "0.100000011"], + "priorityFeeTrend": "up", + "networkCongestion": 0 + }, + "estimatedGasFeeTimeBounds": { + "lowerTimeBound": 333, + "upperTimeBound": 666 + }, + "gasEstimateType": "fee-market", + "nonRPCGasFeeApisDisabled": false, + "tokensChainsCache": { + "0x1": { + "data": { + "0xc011a73ee8576fb46f5e1c5751ca3b9fe0af2a6f": { + "address": "0xc011a73ee8576fb46f5e1c5751ca3b9fe0af2a6f", + "symbol": "SNX", + "decimals": 18, + "name": "Synthetix Network Token", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xc011a73ee8576fb46f5e1c5751ca3b9fe0af2a6f.png", + "aggregators": [ + "Metamask", + "1inch", + "LiFi", + "TrustWallet", + "Socket", + "Rubic", + "Squid", + "Rango", + "Sonarwatch", + "SushiSwap", + "Bancor" + ], + "occurrences": 11 + }, + "0x7fc66500c84a76ad7e9c93437bfc5ac33e2ddae9": { + "address": "0x7fc66500c84a76ad7e9c93437bfc5ac33e2ddae9", + "symbol": "AAVE", + "decimals": 18, + "name": "Aave", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x7fc66500c84a76ad7e9c93437bfc5ac33e2ddae9.png", + "aggregators": [ + "Metamask", + "1inch", + "LiFi", + "TrustWallet", + "Socket", + "Rubic", + "Squid", + "Rango", + "Sonarwatch", + "SushiSwap", + "Bancor" + ], + "occurrences": 11 + }, + "0x6b175474e89094c44da98b954eedeac495271d0f": { + "address": "0x6b175474e89094c44da98b954eedeac495271d0f", + "symbol": "DAI", + "decimals": 18, + "name": "Dai Stablecoin", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x6b175474e89094c44da98b954eedeac495271d0f.png", + "aggregators": [ + "Metamask", + "1inch", + "LiFi", + "TrustWallet", + "Socket", + "Rubic", + "Squid", + "Rango", + "Sonarwatch", + "SushiSwap", + "Bancor" + ], + "occurrences": 11 + }, + "0x514910771af9ca656af840dff83e8264ecf986ca": { + "address": "0x514910771af9ca656af840dff83e8264ecf986ca", + "symbol": "LINK", + "decimals": 18, + "name": "Chainlink Token", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x514910771af9ca656af840dff83e8264ecf986ca.png", + "aggregators": [ + "Metamask", + "1inch", + "LiFi", + "TrustWallet", + "Socket", + "Rubic", + "Squid", + "Rango", + "Sonarwatch", + "SushiSwap", + "Bancor" + ], + "occurrences": 11 + }, + "0x57ab1ec28d129707052df4df418d58a2d46d5f51": { + "address": "0x57ab1ec28d129707052df4df418d58a2d46d5f51", + "symbol": "SUSD", + "decimals": 18, + "name": "Synth sUSD", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x57ab1ec28d129707052df4df418d58a2d46d5f51.png", + "aggregators": [ + "Metamask", + "1inch", + "LiFi", + "TrustWallet", + "Socket", + "Rubic", + "Squid", + "Rango", + "Sonarwatch", + "SushiSwap", + "Bancor" + ], + "occurrences": 11 + }, + "0x1f9840a85d5af5bf1d1762f925bdaddc4201f984": { + "address": "0x1f9840a85d5af5bf1d1762f925bdaddc4201f984", + "symbol": "UNI", + "decimals": 18, + "name": "Uniswap", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x1f9840a85d5af5bf1d1762f925bdaddc4201f984.png", + "aggregators": [ + "Metamask", + "1inch", + "LiFi", + "TrustWallet", + "Socket", + "Rubic", + "Squid", + "Rango", + "Sonarwatch", + "SushiSwap", + "Bancor" + ], + "occurrences": 11 + }, + "0x2260fac5e5542a773aa44fbcfedf7c193bc2c599": { + "address": "0x2260fac5e5542a773aa44fbcfedf7c193bc2c599", + "symbol": "WBTC", + "decimals": 8, + "name": "Wrapped Bitcoin", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x2260fac5e5542a773aa44fbcfedf7c193bc2c599.png", + "aggregators": [ + "Metamask", + "1inch", + "LiFi", + "TrustWallet", + "Socket", + "Rubic", + "Squid", + "Rango", + "Sonarwatch", + "SushiSwap", + "Bancor" + ], + "occurrences": 11 + }, + "0x0bc529c00c6401aef6d220be8c6ea1667f6ad93e": { + "address": "0x0bc529c00c6401aef6d220be8c6ea1667f6ad93e", + "symbol": "YFI", + "decimals": 18, + "name": "yearn.finance", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x0bc529c00c6401aef6d220be8c6ea1667f6ad93e.png", + "aggregators": [ + "Metamask", + "1inch", + "LiFi", + "TrustWallet", + "Socket", + "Rubic", + "Squid", + "Rango", + "Sonarwatch", + "SushiSwap", + "Bancor" + ], + "occurrences": 11 + }, + "0x9f8f72aa9304c8b593d555f12ef6589cc3a579a2": { + "address": "0x9f8f72aa9304c8b593d555f12ef6589cc3a579a2", + "symbol": "MKR", + "decimals": 18, + "name": "Maker", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x9f8f72aa9304c8b593d555f12ef6589cc3a579a2.png", + "aggregators": [ + "Metamask", + "1inch", + "LiFi", + "TrustWallet", + "Socket", + "Rubic", + "Squid", + "Sonarwatch", + "SushiSwap", + "Bancor" + ], + "occurrences": 10 + }, + "0xba100000625a3754423978a60c9317c58a424e3d": { + "address": "0xba100000625a3754423978a60c9317c58a424e3d", + "symbol": "BAL", + "decimals": 18, + "name": "Balancer (BAL)", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xba100000625a3754423978a60c9317c58a424e3d.png", + "aggregators": [ + "Metamask", + "1inch", + "LiFi", + "TrustWallet", + "Socket", + "Rubic", + "Squid", + "Rango", + "Sonarwatch", + "SushiSwap", + "Bancor" + ], + "occurrences": 11 + }, + "0xc00e94cb662c3520282e6f5717214004a7f26888": { + "address": "0xc00e94cb662c3520282e6f5717214004a7f26888", + "symbol": "COMP", + "decimals": 18, + "name": "Compound", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xc00e94cb662c3520282e6f5717214004a7f26888.png", + "aggregators": [ + "Metamask", + "1inch", + "LiFi", + "TrustWallet", + "Socket", + "Rubic", + "Squid", + "Rango", + "Sonarwatch", + "SushiSwap", + "Bancor" + ], + "occurrences": 11 + }, + "0xd533a949740bb3306d119cc777fa900ba034cd52": { + "address": "0xd533a949740bb3306d119cc777fa900ba034cd52", + "symbol": "CRV", + "decimals": 18, + "name": "Curve DAO Token", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xd533a949740bb3306d119cc777fa900ba034cd52.png", + "aggregators": [ + "Metamask", + "1inch", + "LiFi", + "TrustWallet", + "Socket", + "Rubic", + "Squid", + "Rango", + "Sonarwatch", + "SushiSwap", + "Bancor" + ], + "occurrences": 11 + }, + "0x0f5d2fb29fb7d3cfee444a200298f468908cc942": { + "address": "0x0f5d2fb29fb7d3cfee444a200298f468908cc942", + "symbol": "MANA", + "decimals": 18, + "name": "Decentraland", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x0f5d2fb29fb7d3cfee444a200298f468908cc942.png", + "aggregators": [ + "Metamask", + "1inch", + "LiFi", + "TrustWallet", + "Socket", + "Rubic", + "Squid", + "Rango", + "Sonarwatch", + "SushiSwap", + "Bancor" + ], + "occurrences": 11 + }, + "0x408e41876cccdc0f92210600ef50372656052a38": { + "address": "0x408e41876cccdc0f92210600ef50372656052a38", + "symbol": "REN", + "decimals": 18, + "name": "Republic Token", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x408e41876cccdc0f92210600ef50372656052a38.png", + "aggregators": [ + "Metamask", + "1inch", + "LiFi", + "TrustWallet", + "Socket", + "Rubic", + "Squid", + "Rango", + "Sonarwatch", + "SushiSwap", + "Bancor" + ], + "occurrences": 11 + }, + "0x6b3595068778dd592e39a122f4f5a5cf09c90fe2": { + "address": "0x6b3595068778dd592e39a122f4f5a5cf09c90fe2", + "symbol": "SUSHI", + "decimals": 18, + "name": "SushiSwap", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x6b3595068778dd592e39a122f4f5a5cf09c90fe2.png", + "aggregators": [ + "Metamask", + "1inch", + "LiFi", + "TrustWallet", + "Socket", + "Rubic", + "Squid", + "Rango", + "Sonarwatch", + "SushiSwap", + "Bancor" + ], + "occurrences": 11 + }, + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48": { + "address": "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "symbol": "USDC", + "decimals": 6, + "name": "USDC", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48.png", + "aggregators": [ + "Metamask", + "1inch", + "LiFi", + "TrustWallet", + "Socket", + "Rubic", + "Squid", + "Rango", + "Sonarwatch", + "SushiSwap", + "Bancor" + ], + "occurrences": 11 + }, + "0xec67005c4e498ec7f55e092bd1d35cbc47c91892": { + "address": "0xec67005c4e498ec7f55e092bd1d35cbc47c91892", + "symbol": "MLN", + "decimals": 18, + "name": "Enzyme Finance", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xec67005c4e498ec7f55e092bd1d35cbc47c91892.png", + "aggregators": [ + "Metamask", + "1inch", + "LiFi", + "Socket", + "Rubic", + "Squid", + "Rango", + "Sonarwatch", + "SushiSwap", + "Bancor" + ], + "occurrences": 10 + }, + "0xe41d2489571d322189246dafa5ebde1f4699f498": { + "address": "0xe41d2489571d322189246dafa5ebde1f4699f498", + "symbol": "ZRX", + "decimals": 18, + "name": "0x", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xe41d2489571d322189246dafa5ebde1f4699f498.png", + "aggregators": [ + "Metamask", + "1inch", + "LiFi", + "TrustWallet", + "Socket", + "Rubic", + "Rango", + "Sonarwatch", + "SushiSwap", + "Bancor" + ], + "occurrences": 10 + }, + "0x111111111117dc0aa78b770fa6a738034120c302": { + "address": "0x111111111117dc0aa78b770fa6a738034120c302", + "symbol": "1INCH", + "decimals": 18, + "name": "1INCH Token", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x111111111117dc0aa78b770fa6a738034120c302.png", + "aggregators": [ + "Metamask", + "1inch", + "LiFi", + "TrustWallet", + "Socket", + "Rubic", + "Squid", + "Rango", + "Sonarwatch", + "SushiSwap", + "Bancor" + ], + "occurrences": 11 + }, + "0xf629cbd94d3791c9250152bd8dfbdf380e2a3b9c": { + "address": "0xf629cbd94d3791c9250152bd8dfbdf380e2a3b9c", + "symbol": "ENJ", + "decimals": 18, + "name": "Enjin Coin", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xf629cbd94d3791c9250152bd8dfbdf380e2a3b9c.png", + "aggregators": [ + "Metamask", + "1inch", + "LiFi", + "TrustWallet", + "Socket", + "Rubic", + "Squid", + "Rango", + "Sonarwatch", + "SushiSwap", + "Bancor" + ], + "occurrences": 11 + }, + "0xc944e90c64b2c07662a292be6244bdf05cda44a7": { + "address": "0xc944e90c64b2c07662a292be6244bdf05cda44a7", + "symbol": "GRT", + "decimals": 18, + "name": "Graph Token", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xc944e90c64b2c07662a292be6244bdf05cda44a7.png", + "aggregators": [ + "Metamask", + "1inch", + "LiFi", + "TrustWallet", + "Socket", + "Rubic", + "Squid", + "Rango", + "Sonarwatch", + "SushiSwap", + "Bancor" + ], + "occurrences": 11 + }, + "0x04fa0d235c4abf4bcf4787af4cf447de572ef828": { + "address": "0x04fa0d235c4abf4bcf4787af4cf447de572ef828", + "symbol": "UMA", + "decimals": 18, + "name": "UMA", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x04fa0d235c4abf4bcf4787af4cf447de572ef828.png", + "aggregators": [ + "Metamask", + "1inch", + "LiFi", + "TrustWallet", + "Socket", + "Rubic", + "Squid", + "Rango", + "Sonarwatch", + "SushiSwap", + "Bancor" + ], + "occurrences": 11 + }, + "0xdac17f958d2ee523a2206206994597c13d831ec7": { + "address": "0xdac17f958d2ee523a2206206994597c13d831ec7", + "symbol": "USDT", + "decimals": 6, + "name": "Tether USD", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xdac17f958d2ee523a2206206994597c13d831ec7.png", + "aggregators": [ + "Metamask", + "1inch", + "LiFi", + "TrustWallet", + "Socket", + "Rubic", + "Squid", + "Rango", + "Sonarwatch", + "SushiSwap", + "Bancor" + ], + "occurrences": 11 + }, + "0x2ba592f78db6436527729929aaf6c908497cb200": { + "address": "0x2ba592f78db6436527729929aaf6c908497cb200", + "symbol": "CREAM", + "decimals": 18, + "name": "Cream", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x2ba592f78db6436527729929aaf6c908497cb200.png", + "aggregators": [ + "Metamask", + "1inch", + "LiFi", + "TrustWallet", + "Socket", + "Rubic", + "Squid", + "Rango", + "Sonarwatch", + "SushiSwap", + "Bancor" + ], + "occurrences": 11 + }, + "0x0d8775f648430679a709e98d2b0cb6250d2887ef": { + "address": "0x0d8775f648430679a709e98d2b0cb6250d2887ef", + "symbol": "BAT", + "decimals": 18, + "name": "Basic Attention Token", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x0d8775f648430679a709e98d2b0cb6250d2887ef.png", + "aggregators": [ + "Metamask", + "1inch", + "LiFi", + "TrustWallet", + "Socket", + "Rubic", + "Rango", + "Sonarwatch", + "SushiSwap", + "Bancor" + ], + "occurrences": 10 + }, + "0x3432b6a60d23ca0dfca7761b7ab56459d9c964d0": { + "address": "0x3432b6a60d23ca0dfca7761b7ab56459d9c964d0", + "symbol": "FXS", + "decimals": 18, + "name": "Frax Share", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x3432b6a60d23ca0dfca7761b7ab56459d9c964d0.png", + "aggregators": [ + "Metamask", + "1inch", + "LiFi", + "Socket", + "Rubic", + "Squid", + "Rango", + "Sonarwatch", + "SushiSwap", + "Bancor" + ], + "occurrences": 10 + }, + "0xe28b3b32b6c345a34ff64674606124dd5aceca30": { + "address": "0xe28b3b32b6c345a34ff64674606124dd5aceca30", + "symbol": "INJ", + "decimals": 18, + "name": "Injective", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xe28b3b32b6c345a34ff64674606124dd5aceca30.png", + "aggregators": [ + "Metamask", + "1inch", + "LiFi", + "TrustWallet", + "Socket", + "Rubic", + "Squid", + "Rango", + "Sonarwatch", + "SushiSwap" + ], + "occurrences": 10 + }, + "0xbbbbca6a901c926f240b89eacb641d8aec7aeafd": { + "address": "0xbbbbca6a901c926f240b89eacb641d8aec7aeafd", + "symbol": "LRC", + "decimals": 18, + "name": "Loopring", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xbbbbca6a901c926f240b89eacb641d8aec7aeafd.png", + "aggregators": [ + "Metamask", + "1inch", + "LiFi", + "TrustWallet", + "Socket", + "Rubic", + "Rango", + "Sonarwatch", + "SushiSwap", + "Bancor" + ], + "occurrences": 10 + }, + "0x8f8221afbb33998d8584a2b05749ba73c37a938a": { + "address": "0x8f8221afbb33998d8584a2b05749ba73c37a938a", + "symbol": "REQ", + "decimals": 18, + "name": "Request", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x8f8221afbb33998d8584a2b05749ba73c37a938a.png", + "aggregators": [ + "Metamask", + "1inch", + "LiFi", + "TrustWallet", + "Socket", + "Rubic", + "Squid", + "Rango", + "Sonarwatch", + "Bancor" + ], + "occurrences": 10 + }, + "0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c": { + "address": "0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c", + "symbol": "BNT", + "decimals": 18, + "name": "Bancor Network Token", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c.png", + "aggregators": [ + "Metamask", + "1inch", + "LiFi", + "Socket", + "Rubic", + "Rango", + "Sonarwatch", + "SushiSwap", + "Bancor" + ], + "occurrences": 9 + }, + "0xff20817765cb7f73d4bde2e66e067e58d11095c2": { + "address": "0xff20817765cb7f73d4bde2e66e067e58d11095c2", + "symbol": "AMP", + "decimals": 18, + "name": "Amp", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xff20817765cb7f73d4bde2e66e067e58d11095c2.png", + "aggregators": [ + "OpenSwap", + "1inch", + "LiFi", + "TrustWallet", + "Socket", + "Rubic", + "Squid", + "Rango", + "Sonarwatch", + "SushiSwap", + "Bancor" + ], + "occurrences": 11 + }, + "0xba11d00c5f74255f56a5e366f4f77f5a186d7f55": { + "address": "0xba11d00c5f74255f56a5e366f4f77f5a186d7f55", + "symbol": "BAND", + "decimals": 18, + "name": "Band Protocol", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xba11d00c5f74255f56a5e366f4f77f5a186d7f55.png", + "aggregators": [ + "OpenSwap", + "1inch", + "LiFi", + "TrustWallet", + "Socket", + "Rubic", + "Squid", + "Rango", + "Sonarwatch", + "SushiSwap", + "Bancor" + ], + "occurrences": 11 + }, + "0x4fabb145d64652a948d72533023f6e7a623c7c53": { + "address": "0x4fabb145d64652a948d72533023f6e7a623c7c53", + "symbol": "BUSD", + "decimals": 18, + "name": "Binance USD", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x4fabb145d64652a948d72533023f6e7a623c7c53.png", + "aggregators": [ + "Metamask", + "1inch", + "LiFi", + "TrustWallet", + "Socket", + "Rubic", + "Squid", + "Rango", + "Sonarwatch", + "SushiSwap", + "Bancor" + ], + "occurrences": 11 + }, + "0xc18360217d8f7ab5e7c516566761ea12ce7f9d72": { + "address": "0xc18360217d8f7ab5e7c516566761ea12ce7f9d72", + "symbol": "ENS", + "decimals": 18, + "name": "Ethereum Name Service", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xc18360217d8f7ab5e7c516566761ea12ce7f9d72.png", + "aggregators": [ + "Metamask", + "1inch", + "LiFi", + "TrustWallet", + "Socket", + "Rubic", + "Squid", + "Rango", + "Sonarwatch", + "SushiSwap", + "Bancor" + ], + "occurrences": 11 + }, + "0x967da4048cd07ab37855c090aaf366e4ce1b9f48": { + "address": "0x967da4048cd07ab37855c090aaf366e4ce1b9f48", + "symbol": "OCEAN", + "decimals": 18, + "name": "Ocean Token", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x967da4048cd07ab37855c090aaf366e4ce1b9f48.png", + "aggregators": [ + "Metamask", + "1inch", + "LiFi", + "TrustWallet", + "Socket", + "Rubic", + "Squid", + "Rango", + "Sonarwatch", + "SushiSwap", + "Bancor" + ], + "occurrences": 11 + }, + "0x45804880de22913dafe09f4980848ece6ecbaf78": { + "address": "0x45804880de22913dafe09f4980848ece6ecbaf78", + "symbol": "PAXG", + "decimals": 18, + "name": "PAX Gold", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x45804880de22913dafe09f4980848ece6ecbaf78.png", + "aggregators": [ + "Metamask", + "1inch", + "LiFi", + "TrustWallet", + "Socket", + "Rubic", + "Squid", + "Rango", + "Sonarwatch", + "SushiSwap", + "Bancor" + ], + "occurrences": 11 + }, + "0xbc396689893d065f41bc2c6ecbee5e0085233447": { + "address": "0xbc396689893d065f41bc2c6ecbee5e0085233447", + "symbol": "PERP", + "decimals": 18, + "name": "Perpetual", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xbc396689893d065f41bc2c6ecbee5e0085233447.png", + "aggregators": [ + "Metamask", + "1inch", + "LiFi", + "TrustWallet", + "Socket", + "Rubic", + "Squid", + "Rango", + "Sonarwatch", + "SushiSwap", + "Bancor" + ], + "occurrences": 11 + }, + "0x4691937a7508860f876c9c0a2a617e7d9e945d4b": { + "address": "0x4691937a7508860f876c9c0a2a617e7d9e945d4b", + "symbol": "WOO", + "decimals": 18, + "name": "Wootrade Network", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x4691937a7508860f876c9c0a2a617e7d9e945d4b.png", + "aggregators": [ + "Metamask", + "1inch", + "LiFi", + "TrustWallet", + "Socket", + "Rubic", + "Squid", + "Rango", + "Sonarwatch", + "SushiSwap", + "Bancor" + ], + "occurrences": 11 + }, + "0xdbdb4d16eda451d0503b854cf79d55697f90c8df": { + "address": "0xdbdb4d16eda451d0503b854cf79d55697f90c8df", + "symbol": "ALCX", + "decimals": 18, + "name": "Alchemix", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xdbdb4d16eda451d0503b854cf79d55697f90c8df.png", + "aggregators": [ + "OpenSwap", + "1inch", + "LiFi", + "Socket", + "Rubic", + "Squid", + "Rango", + "Sonarwatch", + "SushiSwap", + "Bancor" + ], + "occurrences": 10 + }, + "0x84ca8bc7997272c7cfb4d0cd3d55cd942b3c9419": { + "address": "0x84ca8bc7997272c7cfb4d0cd3d55cd942b3c9419", + "symbol": "DIA", + "decimals": 18, + "name": "DIAdata", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x84ca8bc7997272c7cfb4d0cd3d55cd942b3c9419.png", + "aggregators": [ + "Metamask", + "1inch", + "LiFi", + "TrustWallet", + "Socket", + "Rubic", + "Squid", + "Rango", + "Sonarwatch", + "SushiSwap" + ], + "occurrences": 10 + }, + "0xa0246c9032bc3a600820415ae600c6388619a14d": { + "address": "0xa0246c9032bc3a600820415ae600c6388619a14d", + "symbol": "FARM", + "decimals": 18, + "name": "Harvest Finance", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xa0246c9032bc3a600820415ae600c6388619a14d.png", + "aggregators": [ + "OpenSwap", + "1inch", + "LiFi", + "TrustWallet", + "Socket", + "Rubic", + "Rango", + "Sonarwatch", + "SushiSwap", + "Bancor" + ], + "occurrences": 10 + }, + "0x6810e776880c02933d47db1b9fc05908e5386b96": { + "address": "0x6810e776880c02933d47db1b9fc05908e5386b96", + "symbol": "GNO", + "decimals": 18, + "name": "Gnosis Token", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x6810e776880c02933d47db1b9fc05908e5386b96.png", + "aggregators": [ + "Metamask", + "1inch", + "LiFi", + "TrustWallet", + "Socket", + "Rubic", + "Rango", + "Sonarwatch", + "SushiSwap", + "Bancor" + ], + "occurrences": 10 + }, + "0x4a220e6096b25eadb88358cb44068a3248254675": { + "address": "0x4a220e6096b25eadb88358cb44068a3248254675", + "symbol": "QNT", + "decimals": 18, + "name": "Quant Network", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x4a220e6096b25eadb88358cb44068a3248254675.png", + "aggregators": [ + "Metamask", + "1inch", + "LiFi", + "TrustWallet", + "Socket", + "Rubic", + "Squid", + "Rango", + "Sonarwatch", + "Bancor" + ], + "occurrences": 10 + }, + "0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2": { + "address": "0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", + "symbol": "WETH", + "decimals": 18, + "name": "Wrapped Ether", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2.png", + "aggregators": [ + "Metamask", + "1inch", + "LiFi", + "TrustWallet", + "Socket", + "Rubic", + "Squid", + "Rango", + "Sonarwatch", + "SushiSwap" + ], + "occurrences": 10 + }, + "0x5a98fcbea516cf06857215779fd812ca3bef1b32": { + "address": "0x5a98fcbea516cf06857215779fd812ca3bef1b32", + "symbol": "LDO", + "decimals": 18, + "name": "Lido DAO Token", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x5a98fcbea516cf06857215779fd812ca3bef1b32.png", + "aggregators": [ + "Metamask", + "1inch", + "LiFi", + "Socket", + "Rubic", + "Squid", + "Rango", + "Sonarwatch", + "SushiSwap" + ], + "occurrences": 9 + }, + "0x1ceb5cb57c4d4e2b2433641b95dd330a33185a44": { + "address": "0x1ceb5cb57c4d4e2b2433641b95dd330a33185a44", + "symbol": "KP3R", + "decimals": 18, + "name": "Keep3rV1", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x1ceb5cb57c4d4e2b2433641b95dd330a33185a44.png", + "aggregators": [ + "OpenSwap", + "1inch", + "LiFi", + "TrustWallet", + "Socket", + "Rubic", + "Squid", + "Rango", + "Sonarwatch", + "SushiSwap", + "Bancor" + ], + "occurrences": 11 + }, + "0x7d1afa7b718fb893db30a3abc0cfc608aacfebb0": { + "address": "0x7d1afa7b718fb893db30a3abc0cfc608aacfebb0", + "symbol": "MATIC", + "decimals": 18, + "name": "Matic Network Token", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x7d1afa7b718fb893db30a3abc0cfc608aacfebb0.png", + "aggregators": [ + "Metamask", + "1inch", + "LiFi", + "TrustWallet", + "Socket", + "Rubic", + "Squid", + "Rango", + "Sonarwatch", + "SushiSwap", + "Bancor" + ], + "occurrences": 11 + }, + "0x607f4c5bb672230e8672085532f7e901544a7375": { + "address": "0x607f4c5bb672230e8672085532f7e901544a7375", + "symbol": "RLC", + "decimals": 9, + "name": "iExec RLC Token", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x607f4c5bb672230e8672085532f7e901544a7375.png", + "aggregators": [ + "Metamask", + "1inch", + "LiFi", + "TrustWallet", + "Socket", + "Rubic", + "Squid", + "Rango", + "Sonarwatch", + "SushiSwap", + "Bancor" + ], + "occurrences": 11 + }, + "0x090185f2135308bad17527004364ebcc2d37e5f6": { + "address": "0x090185f2135308bad17527004364ebcc2d37e5f6", + "symbol": "SPELL", + "decimals": 18, + "name": "Spell Token", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x090185f2135308bad17527004364ebcc2d37e5f6.png", + "aggregators": [ + "OpenSwap", + "1inch", + "LiFi", + "TrustWallet", + "Socket", + "Rubic", + "Squid", + "Rango", + "Sonarwatch", + "SushiSwap", + "Bancor" + ], + "occurrences": 11 + }, + "0x4c19596f5aaff459fa38b0f7ed92f11ae6543784": { + "address": "0x4c19596f5aaff459fa38b0f7ed92f11ae6543784", + "symbol": "TRU", + "decimals": 8, + "name": "TrueFi", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x4c19596f5aaff459fa38b0f7ed92f11ae6543784.png", + "aggregators": [ + "OpenSwap", + "1inch", + "LiFi", + "TrustWallet", + "Socket", + "Rubic", + "Squid", + "Rango", + "Sonarwatch", + "SushiSwap", + "Bancor" + ], + "occurrences": 11 + }, + "0xa1faa113cbe53436df28ff0aee54275c13b40975": { + "address": "0xa1faa113cbe53436df28ff0aee54275c13b40975", + "symbol": "ALPHA", + "decimals": 18, + "name": "AlphaToken", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xa1faa113cbe53436df28ff0aee54275c13b40975.png", + "aggregators": [ + "CoinMarketCap", + "1inch", + "LiFi", + "Socket", + "Rubic", + "Squid", + "Rango", + "Sonarwatch", + "SushiSwap", + "Bancor" + ], + "occurrences": 10 + }, + "0x0b38210ea11411557c13457d4da7dc6ea731b88a": { + "address": "0x0b38210ea11411557c13457d4da7dc6ea731b88a", + "symbol": "API3", + "decimals": 18, + "name": "API3", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x0b38210ea11411557c13457d4da7dc6ea731b88a.png", + "aggregators": [ + "OpenSwap", + "1inch", + "LiFi", + "Socket", + "Rubic", + "Squid", + "Rango", + "Sonarwatch", + "SushiSwap", + "Bancor" + ], + "occurrences": 10 + }, + "0x18aaa7115705e8be94bffebde57af9bfc265b998": { + "address": "0x18aaa7115705e8be94bffebde57af9bfc265b998", + "symbol": "AUDIO", + "decimals": 18, + "name": "Audius", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x18aaa7115705e8be94bffebde57af9bfc265b998.png", + "aggregators": [ + "Metamask", + "1inch", + "LiFi", + "TrustWallet", + "Socket", + "Rubic", + "Squid", + "Rango", + "Sonarwatch", + "SushiSwap" + ], + "occurrences": 10 + }, + "0x1494ca1f11d487c2bbe4543e90080aeba4ba3c2b": { + "address": "0x1494ca1f11d487c2bbe4543e90080aeba4ba3c2b", + "symbol": "DPI", + "decimals": 18, + "name": "DeFi Pulse Index", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x1494ca1f11d487c2bbe4543e90080aeba4ba3c2b.png", + "aggregators": [ + "CoinMarketCap", + "1inch", + "LiFi", + "TrustWallet", + "Socket", + "Rubic", + "Squid", + "Rango", + "Sonarwatch", + "SushiSwap" + ], + "occurrences": 10 + }, + "0xd26114cd6ee289accf82350c8d8487fedb8a0c07": { + "address": "0xd26114cd6ee289accf82350c8d8487fedb8a0c07", + "symbol": "OMG", + "decimals": 18, + "name": "OmiseGO", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xd26114cd6ee289accf82350c8d8487fedb8a0c07.png", + "aggregators": [ + "Metamask", + "1inch", + "LiFi", + "TrustWallet", + "Socket", + "Rubic", + "Rango", + "Sonarwatch", + "SushiSwap", + "Bancor" + ], + "occurrences": 10 + }, + "0x03ab458634910aad20ef5f1c8ee96f1d6ac54919": { + "address": "0x03ab458634910aad20ef5f1c8ee96f1d6ac54919", + "symbol": "RAI", + "decimals": 18, + "name": "Rai Reflex Index", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x03ab458634910aad20ef5f1c8ee96f1d6ac54919.png", + "aggregators": [ + "Metamask", + "1inch", + "LiFi", + "TrustWallet", + "Socket", + "Rubic", + "Squid", + "Rango", + "Sonarwatch", + "SushiSwap" + ], + "occurrences": 10 + }, + "0xfca59cd816ab1ead66534d82bc21e7515ce441cf": { + "address": "0xfca59cd816ab1ead66534d82bc21e7515ce441cf", + "symbol": "RARI", + "decimals": 18, + "name": "Rarible", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xfca59cd816ab1ead66534d82bc21e7515ce441cf.png", + "aggregators": [ + "Metamask", + "1inch", + "LiFi", + "TrustWallet", + "Socket", + "Rubic", + "Rango", + "Sonarwatch", + "SushiSwap", + "Bancor" + ], + "occurrences": 10 + }, + "0x0000000000085d4780b73119b644ae5ecd22b376": { + "address": "0x0000000000085d4780b73119b644ae5ecd22b376", + "symbol": "TUSD", + "decimals": 18, + "name": "TrueUSD", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x0000000000085d4780b73119b644ae5ecd22b376.png", + "aggregators": [ + "Metamask", + "1inch", + "LiFi", + "TrustWallet", + "Socket", + "Rubic", + "Squid", + "Rango", + "Sonarwatch", + "SushiSwap" + ], + "occurrences": 10 + }, + "0x0ae055097c6d159879521c384f1d2123d1f195e6": { + "address": "0x0ae055097c6d159879521c384f1d2123d1f195e6", + "symbol": "STAKE", + "decimals": 18, + "name": "STAKE Token", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x0ae055097c6d159879521c384f1d2123d1f195e6.png", + "aggregators": [ + "Metamask", + "1inch", + "LiFi", + "TrustWallet", + "Socket", + "Rubic", + "Rango", + "Sonarwatch", + "SushiSwap", + "Bancor" + ], + "occurrences": 10 + }, + "0xeb4c2781e4eba804ce9a9803c67d0893436bb27d": { + "address": "0xeb4c2781e4eba804ce9a9803c67d0893436bb27d", + "symbol": "RENBTC", + "decimals": 8, + "name": "renBTC", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xeb4c2781e4eba804ce9a9803c67d0893436bb27d.png", + "aggregators": [ + "Metamask", + "1inch", + "LiFi", + "TrustWallet", + "Socket", + "Rubic", + "Rango", + "Sonarwatch", + "SushiSwap", + "Bancor" + ], + "occurrences": 10 + }, + "0xb753428af26e81097e7fd17f40c88aaa3e04902c": { + "address": "0xb753428af26e81097e7fd17f40c88aaa3e04902c", + "symbol": "SFI", + "decimals": 18, + "name": "Spice", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xb753428af26e81097e7fd17f40c88aaa3e04902c.png", + "aggregators": [ + "Metamask", + "1inch", + "LiFi", + "TrustWallet", + "Socket", + "Rubic", + "Rango", + "Sonarwatch", + "SushiSwap", + "Bancor" + ], + "occurrences": 10 + }, + "0xb62132e35a6c13ee1ee0f84dc5d40bad8d815206": { + "address": "0xb62132e35a6c13ee1ee0f84dc5d40bad8d815206", + "symbol": "NEXO", + "decimals": 18, + "name": "NEXO", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xb62132e35a6c13ee1ee0f84dc5d40bad8d815206.png", + "aggregators": [ + "Metamask", + "1inch", + "LiFi", + "TrustWallet", + "Socket", + "Rubic", + "Rango", + "Sonarwatch", + "SushiSwap", + "Bancor" + ], + "occurrences": 10 + }, + "0xbb0e17ef65f82ab018d8edd776e8dd940327b28b": { + "address": "0xbb0e17ef65f82ab018d8edd776e8dd940327b28b", + "symbol": "AXS", + "decimals": 18, + "name": "Axie Infinity Shard", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xbb0e17ef65f82ab018d8edd776e8dd940327b28b.png", + "aggregators": [ + "Metamask", + "1inch", + "LiFi", + "Socket", + "Rubic", + "Rango", + "Sonarwatch", + "SushiSwap", + "Bancor" + ], + "occurrences": 9 + }, + "0xbbc2ae13b23d715c30720f079fcd9b4a74093505": { + "address": "0xbbc2ae13b23d715c30720f079fcd9b4a74093505", + "symbol": "ERN", + "decimals": 18, + "name": "Ethernity Chain Token", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xbbc2ae13b23d715c30720f079fcd9b4a74093505.png", + "aggregators": [ + "Metamask", + "1inch", + "LiFi", + "TrustWallet", + "Socket", + "Rubic", + "Squid", + "Rango", + "Sonarwatch" + ], + "occurrences": 9 + }, + "0x7dd9c5cba05e151c895fde1cf355c9a1d5da6429": { + "address": "0x7dd9c5cba05e151c895fde1cf355c9a1d5da6429", + "symbol": "GLM", + "decimals": 18, + "name": "Golem Network Token", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x7dd9c5cba05e151c895fde1cf355c9a1d5da6429.png", + "aggregators": [ + "Metamask", + "1inch", + "LiFi", + "Socket", + "Rubic", + "Squid", + "Rango", + "Sonarwatch", + "SushiSwap" + ], + "occurrences": 9 + }, + "0xf57e7e7c23978c3caec3c3548e3d615c346e79ff": { + "address": "0xf57e7e7c23978c3caec3c3548e3d615c346e79ff", + "symbol": "IMX", + "decimals": 18, + "name": "Immutable X", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xf57e7e7c23978c3caec3c3548e3d615c346e79ff.png", + "aggregators": [ + "Metamask", + "1inch", + "LiFi", + "Socket", + "Rubic", + "Squid", + "Rango", + "Sonarwatch", + "SushiSwap" + ], + "occurrences": 9 + }, + "0x1776e1f26f98b1a5df9cd347953a26dd3cb46671": { + "address": "0x1776e1f26f98b1a5df9cd347953a26dd3cb46671", + "symbol": "NMR", + "decimals": 18, + "name": "Numeraire", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x1776e1f26f98b1a5df9cd347953a26dd3cb46671.png", + "aggregators": [ + "Metamask", + "1inch", + "LiFi", + "Socket", + "Rubic", + "Squid", + "Rango", + "Sonarwatch", + "Bancor" + ], + "occurrences": 9 + }, + "0x8207c1ffc5b6804f6024322ccf34f29c3541ae26": { + "address": "0x8207c1ffc5b6804f6024322ccf34f29c3541ae26", + "symbol": "OGN", + "decimals": 18, + "name": "Origin Protocol", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x8207c1ffc5b6804f6024322ccf34f29c3541ae26.png", + "aggregators": [ + "Metamask", + "1inch", + "LiFi", + "TrustWallet", + "Socket", + "Rubic", + "Rango", + "Sonarwatch", + "SushiSwap" + ], + "occurrences": 9 + }, + "0x83e6f1e41cdd28eaceb20cb649155049fac3d5aa": { + "address": "0x83e6f1e41cdd28eaceb20cb649155049fac3d5aa", + "symbol": "POLS", + "decimals": 18, + "name": "PolkastarterToken", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x83e6f1e41cdd28eaceb20cb649155049fac3d5aa.png", + "aggregators": [ + "Metamask", + "1inch", + "LiFi", + "TrustWallet", + "Socket", + "Rubic", + "Squid", + "Rango", + "Sonarwatch" + ], + "occurrences": 9 + }, + "0x3845badade8e6dff049820680d1f14bd3903a5d0": { + "address": "0x3845badade8e6dff049820680d1f14bd3903a5d0", + "symbol": "SAND", + "decimals": 18, + "name": "SAND", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x3845badade8e6dff049820680d1f14bd3903a5d0.png", + "aggregators": [ + "Metamask", + "1inch", + "LiFi", + "TrustWallet", + "Socket", + "Rubic", + "Squid", + "Rango", + "Sonarwatch" + ], + "occurrences": 9 + }, + "0x95ad61b0a150d79219dcf64e1e6cc01f0b64c4ce": { + "address": "0x95ad61b0a150d79219dcf64e1e6cc01f0b64c4ce", + "symbol": "SHIB", + "decimals": 18, + "name": "SHIBA INU", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x95ad61b0a150d79219dcf64e1e6cc01f0b64c4ce.png", + "aggregators": [ + "Metamask", + "1inch", + "TrustWallet", + "Socket", + "Rubic", + "Squid", + "Rango", + "Sonarwatch", + "Bancor" + ], + "occurrences": 9 + }, + "0x3472a5a71965499acd81997a54bba8d852c6e53d": { + "address": "0x3472a5a71965499acd81997a54bba8d852c6e53d", + "symbol": "BADGER", + "decimals": 18, + "name": "BADGER", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x3472a5a71965499acd81997a54bba8d852c6e53d.png", + "aggregators": [ + "Metamask", + "1inch", + "LiFi", + "Socket", + "Rubic", + "Rango", + "Sonarwatch", + "SushiSwap" + ], + "occurrences": 8 + }, + "0x3506424f91fd33084466f402d5d97f05f8e3b4af": { + "address": "0x3506424f91fd33084466f402d5d97f05f8e3b4af", + "symbol": "CHZ", + "decimals": 18, + "name": "chiliZ", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x3506424f91fd33084466f402d5d97f05f8e3b4af.png", + "aggregators": [ + "Metamask", + "1inch", + "LiFi", + "Socket", + "Rubic", + "Rango", + "Sonarwatch", + "Bancor" + ], + "occurrences": 8 + }, + "0x3a880652f47bfaa771908c07dd8673a787daed3a": { + "address": "0x3a880652f47bfaa771908c07dd8673a787daed3a", + "symbol": "DDX", + "decimals": 18, + "name": "DerivaDAO", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x3a880652f47bfaa771908c07dd8673a787daed3a.png", + "aggregators": [ + "Metamask", + "LiFi", + "Socket", + "Rubic", + "Rango", + "Sonarwatch", + "SushiSwap", + "Bancor" + ], + "occurrences": 8 + }, + "0x58b6a8a3302369daec383334672404ee733ab239": { + "address": "0x58b6a8a3302369daec383334672404ee733ab239", + "symbol": "LPT", + "decimals": 18, + "name": "Livepeer", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x58b6a8a3302369daec383334672404ee733ab239.png", + "aggregators": [ + "Metamask", + "1inch", + "LiFi", + "Socket", + "Rubic", + "Squid", + "Rango", + "Sonarwatch" + ], + "occurrences": 8 + }, + "0x69af81e73a73b40adf4f3d4223cd9b1ece623074": { + "address": "0x69af81e73a73b40adf4f3d4223cd9b1ece623074", + "symbol": "MASK", + "decimals": 18, + "name": "Mask Network", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x69af81e73a73b40adf4f3d4223cd9b1ece623074.png", + "aggregators": [ + "Metamask", + "1inch", + "LiFi", + "TrustWallet", + "Socket", + "Rubic", + "Squid", + "Rango", + "Sonarwatch", + "SushiSwap", + "Bancor" + ], + "occurrences": 11 + }, + "0x725c263e32c72ddc3a19bea12c5a0479a81ee688": { + "address": "0x725c263e32c72ddc3a19bea12c5a0479a81ee688", + "symbol": "BMI", + "decimals": 18, + "name": "Bridge Mutual", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x725c263e32c72ddc3a19bea12c5a0479a81ee688.png", + "aggregators": [ + "CoinMarketCap", + "1inch", + "LiFi", + "TrustWallet", + "Socket", + "Rubic", + "Squid", + "Rango", + "Sonarwatch", + "SushiSwap", + "Bancor" + ], + "occurrences": 11 + }, + "0xade00c28244d5ce17d72e40330b1c318cd12b7c3": { + "address": "0xade00c28244d5ce17d72e40330b1c318cd12b7c3", + "symbol": "ADX", + "decimals": 18, + "name": "AdEx Token", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xade00c28244d5ce17d72e40330b1c318cd12b7c3.png", + "aggregators": [ + "Metamask", + "1inch", + "LiFi", + "TrustWallet", + "Socket", + "Rubic", + "Squid", + "Rango", + "Sonarwatch", + "SushiSwap" + ], + "occurrences": 10 + }, + "0x8290333cef9e6d528dd5618fb97a76f268f3edd4": { + "address": "0x8290333cef9e6d528dd5618fb97a76f268f3edd4", + "symbol": "ANKR", + "decimals": 18, + "name": "Ankr Network", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x8290333cef9e6d528dd5618fb97a76f268f3edd4.png", + "aggregators": [ + "OpenSwap", + "1inch", + "LiFi", + "Socket", + "Rubic", + "Squid", + "Rango", + "Sonarwatch", + "SushiSwap", + "Bancor" + ], + "occurrences": 10 + }, + "0x4d224452801aced8b2f0aebe155379bb5d594381": { + "address": "0x4d224452801aced8b2f0aebe155379bb5d594381", + "symbol": "APE", + "decimals": 18, + "name": "ApeCoin", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x4d224452801aced8b2f0aebe155379bb5d594381.png", + "aggregators": [ + "Metamask", + "1inch", + "LiFi", + "TrustWallet", + "Socket", + "Rubic", + "Squid", + "Rango", + "Sonarwatch", + "SushiSwap" + ], + "occurrences": 10 + }, + "0x4e3fbd56cd56c3e72c1403e103b45db9da5b9d2b": { + "address": "0x4e3fbd56cd56c3e72c1403e103b45db9da5b9d2b", + "symbol": "CVX", + "decimals": 18, + "name": "Convex Token", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x4e3fbd56cd56c3e72c1403e103b45db9da5b9d2b.png", + "aggregators": [ + "OpenSwap", + "1inch", + "LiFi", + "TrustWallet", + "Socket", + "Rubic", + "Squid", + "Rango", + "Sonarwatch", + "SushiSwap" + ], + "occurrences": 10 + }, + "0x853d955acef822db058eb8505911ed77f175b99e": { + "address": "0x853d955acef822db058eb8505911ed77f175b99e", + "symbol": "FRAX", + "decimals": 18, + "name": "Frax", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x853d955acef822db058eb8505911ed77f175b99e.png", + "aggregators": [ + "Metamask", + "1inch", + "LiFi", + "TrustWallet", + "Socket", + "Rubic", + "Squid", + "Rango", + "Sonarwatch", + "SushiSwap" + ], + "occurrences": 10 + }, + "0x767fe9edc9e0df98e07454847909b5e959d7ca0e": { + "address": "0x767fe9edc9e0df98e07454847909b5e959d7ca0e", + "symbol": "ILV", + "decimals": 18, + "name": "Illuvium", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x767fe9edc9e0df98e07454847909b5e959d7ca0e.png", + "aggregators": [ + "Metamask", + "1inch", + "LiFi", + "TrustWallet", + "Socket", + "Rubic", + "Squid", + "Rango", + "Sonarwatch", + "SushiSwap" + ], + "occurrences": 10 + }, + "0xd46ba6d942050d489dbd938a2c909a5d5039a161": { + "address": "0xd46ba6d942050d489dbd938a2c909a5d5039a161", + "symbol": "AMPL", + "decimals": 9, + "name": "Ampleforth", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xd46ba6d942050d489dbd938a2c909a5d5039a161.png", + "aggregators": [ + "Metamask", + "1inch", + "LiFi", + "TrustWallet", + "Socket", + "Rubic", + "Rango", + "Sonarwatch", + "SushiSwap", + "Bancor" + ], + "occurrences": 10 + }, + "0x476c5e26a75bd202a9683ffd34359c0cc15be0ff": { + "address": "0x476c5e26a75bd202a9683ffd34359c0cc15be0ff", + "symbol": "SRM", + "decimals": 6, + "name": "Serum", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x476c5e26a75bd202a9683ffd34359c0cc15be0ff.png", + "aggregators": [ + "CoinMarketCap", + "1inch", + "LiFi", + "Socket", + "Rubic", + "Squid", + "Rango", + "Sonarwatch", + "SushiSwap", + "Bancor" + ], + "occurrences": 10 + }, + "0xa3bed4e1c75d00fa6f4e5e6922db7261b5e9acd2": { + "address": "0xa3bed4e1c75d00fa6f4e5e6922db7261b5e9acd2", + "symbol": "MTA", + "decimals": 18, + "name": "Meta", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xa3bed4e1c75d00fa6f4e5e6922db7261b5e9acd2.png", + "aggregators": [ + "Metamask", + "1inch", + "LiFi", + "TrustWallet", + "Socket", + "Rubic", + "Rango", + "Sonarwatch", + "SushiSwap", + "Bancor" + ], + "occurrences": 10 + }, + "0x584bc13c7d411c00c01a62e8019472de68768430": { + "address": "0x584bc13c7d411c00c01a62e8019472de68768430", + "symbol": "HEGIC", + "decimals": 18, + "name": "Hegic", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x584bc13c7d411c00c01a62e8019472de68768430.png", + "aggregators": [ + "CoinMarketCap", + "1inch", + "LiFi", + "TrustWallet", + "Socket", + "Rubic", + "Rango", + "Sonarwatch", + "SushiSwap", + "Bancor" + ], + "occurrences": 10 + }, + "0x429881672b9ae42b8eba0e26cd9c73711b891ca5": { + "address": "0x429881672b9ae42b8eba0e26cd9c73711b891ca5", + "symbol": "PICKLE", + "decimals": 18, + "name": "Pickle Finance", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x429881672b9ae42b8eba0e26cd9c73711b891ca5.png", + "aggregators": [ + "CoinMarketCap", + "1inch", + "LiFi", + "TrustWallet", + "Socket", + "Rubic", + "Squid", + "Rango", + "Sonarwatch", + "SushiSwap" + ], + "occurrences": 10 + }, + "0x6c6ee5e31d828de241282b9606c8e98ea48526e2": { + "address": "0x6c6ee5e31d828de241282b9606c8e98ea48526e2", + "symbol": "HOT", + "decimals": 18, + "name": "HoloToken", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x6c6ee5e31d828de241282b9606c8e98ea48526e2.png", + "aggregators": [ + "Metamask", + "1inch", + "LiFi", + "TrustWallet", + "Socket", + "Rubic", + "Squid", + "Rango", + "Sonarwatch", + "Bancor" + ], + "occurrences": 10 + }, + "0x7f39c581f595b53c5cb19bd0b3f8da6c935e2ca0": { + "address": "0x7f39c581f595b53c5cb19bd0b3f8da6c935e2ca0", + "symbol": "WSTETH", + "decimals": 18, + "name": "Wrapped liquid staked Ether 2.0", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x7f39c581f595b53c5cb19bd0b3f8da6c935e2ca0.png", + "aggregators": [ + "Metamask", + "1inch", + "LiFi", + "Socket", + "Rubic", + "Squid", + "Rango", + "Sonarwatch", + "SushiSwap", + "Bancor" + ], + "occurrences": 10 + }, + "0x27702a26126e0b3702af63ee09ac4d1a084ef628": { + "address": "0x27702a26126e0b3702af63ee09ac4d1a084ef628", + "symbol": "ALEPH", + "decimals": 18, + "name": "Aleph.im Token", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x27702a26126e0b3702af63ee09ac4d1a084ef628.png", + "aggregators": [ + "Metamask", + "1inch", + "LiFi", + "Socket", + "Rubic", + "Rango", + "Sonarwatch", + "SushiSwap", + "Bancor" + ], + "occurrences": 9 + }, + "0xa117000000f279d81a1d3cc75430faa017fa5a2e": { + "address": "0xa117000000f279d81a1d3cc75430faa017fa5a2e", + "symbol": "ANT", + "decimals": 18, + "name": "Aragon Network Token", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xa117000000f279d81a1d3cc75430faa017fa5a2e.png", + "aggregators": [ + "Metamask", + "LiFi", + "TrustWallet", + "Socket", + "Rubic", + "Squid", + "Rango", + "Sonarwatch", + "SushiSwap" + ], + "occurrences": 9 + }, + "0xb50721bcf8d664c30412cfbc6cf7a15145234ad1": { + "address": "0xb50721bcf8d664c30412cfbc6cf7a15145234ad1", + "symbol": "ARB", + "decimals": 18, + "name": "Arbitrum", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xb50721bcf8d664c30412cfbc6cf7a15145234ad1.png", + "aggregators": [ + "Metamask", + "1inch", + "LiFi", + "Socket", + "Rubic", + "Squid", + "Rango", + "Sonarwatch", + "SushiSwap" + ], + "occurrences": 9 + }, + "0xa0b73e1ff0b80914ab6fe0444e65848c4c34450b": { + "address": "0xa0b73e1ff0b80914ab6fe0444e65848c4c34450b", + "symbol": "CRO", + "decimals": 8, + "name": "Cronos", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xa0b73e1ff0b80914ab6fe0444e65848c4c34450b.png", + "aggregators": [ + "Metamask", + "1inch", + "LiFi", + "Socket", + "Rubic", + "Rango", + "Sonarwatch", + "SushiSwap", + "Bancor" + ], + "occurrences": 9 + }, + "0xc770eefad204b5180df6a14ee197d99d808ee52d": { + "address": "0xc770eefad204b5180df6a14ee197d99d808ee52d", + "symbol": "FOX", + "decimals": 18, + "name": "FOX", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xc770eefad204b5180df6a14ee197d99d808ee52d.png", + "aggregators": [ + "OpenSwap", + "1inch", + "LiFi", + "Socket", + "Rubic", + "Squid", + "Rango", + "Sonarwatch", + "Bancor" + ], + "occurrences": 9 + }, + "0xde30da39c46104798bb5aa3fe8b9e0e1f348163f": { + "address": "0xde30da39c46104798bb5aa3fe8b9e0e1f348163f", + "symbol": "GTC", + "decimals": 18, + "name": "Gitcoin", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xde30da39c46104798bb5aa3fe8b9e0e1f348163f.png", + "aggregators": [ + "Metamask", + "1inch", + "LiFi", + "Socket", + "Rubic", + "Squid", + "Rango", + "Sonarwatch", + "Bancor" + ], + "occurrences": 9 + }, + "0x0954906da0bf32d5479e25f46056d22f08464cab": { + "address": "0x0954906da0bf32d5479e25f46056d22f08464cab", + "symbol": "INDEX", + "decimals": 18, + "name": "Index", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x0954906da0bf32d5479e25f46056d22f08464cab.png", + "aggregators": [ + "CoinMarketCap", + "1inch", + "LiFi", + "Socket", + "Rubic", + "Rango", + "Sonarwatch", + "SushiSwap", + "Bancor" + ], + "occurrences": 9 + }, + "0x41d5d79431a913c4ae7d69a668ecdfe5ff9dfb68": { + "address": "0x41d5d79431a913c4ae7d69a668ecdfe5ff9dfb68", + "symbol": "INV", + "decimals": 18, + "name": "Inverse DAO", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x41d5d79431a913c4ae7d69a668ecdfe5ff9dfb68.png", + "aggregators": [ + "OpenSwap", + "1inch", + "LiFi", + "Socket", + "Rubic", + "Squid", + "Rango", + "Sonarwatch", + "SushiSwap" + ], + "occurrences": 9 + }, + "0x57b946008913b82e4df85f501cbaed910e58d26c": { + "address": "0x57b946008913b82e4df85f501cbaed910e58d26c", + "symbol": "POND", + "decimals": 18, + "name": "Marlin", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x57b946008913b82e4df85f501cbaed910e58d26c.png", + "aggregators": [ + "Metamask", + "1inch", + "LiFi", + "Socket", + "Rubic", + "Squid", + "Rango", + "Sonarwatch", + "SushiSwap" + ], + "occurrences": 9 + }, + "0xd291e7a03283640fdc51b121ac401383a46cc623": { + "address": "0xd291e7a03283640fdc51b121ac401383a46cc623", + "symbol": "RGT", + "decimals": 18, + "name": "Rari Governance Token", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xd291e7a03283640fdc51b121ac401383a46cc623.png", + "aggregators": [ + "OpenSwap", + "1inch", + "LiFi", + "Socket", + "Rubic", + "Rango", + "Sonarwatch", + "SushiSwap", + "Bancor" + ], + "occurrences": 9 + }, + "0x00c83aecc790e8a4453e5dd3b0b4b3680501a7a7": { + "address": "0x00c83aecc790e8a4453e5dd3b0b4b3680501a7a7", + "symbol": "SKL", + "decimals": 18, + "name": "SKALE", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x00c83aecc790e8a4453e5dd3b0b4b3680501a7a7.png", + "aggregators": [ + "Metamask", + "1inch", + "LiFi", + "TrustWallet", + "Socket", + "Rubic", + "Squid", + "Rango", + "Sonarwatch" + ], + "occurrences": 9 + }, + "0x0f2d719407fdbeff09d87557abb7232601fd9f29": { + "address": "0x0f2d719407fdbeff09d87557abb7232601fd9f29", + "symbol": "SYN", + "decimals": 18, + "name": "Synapse", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x0f2d719407fdbeff09d87557abb7232601fd9f29.png", + "aggregators": [ + "OpenSwap", + "1inch", + "LiFi", + "Socket", + "Rubic", + "Squid", + "Rango", + "Sonarwatch", + "SushiSwap" + ], + "occurrences": 9 + }, + "0x55296f69f40ea6d20e478533c15a6b08b654e758": { + "address": "0x55296f69f40ea6d20e478533c15a6b08b654e758", + "symbol": "XYO", + "decimals": 18, + "name": "XY Oracle", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x55296f69f40ea6d20e478533c15a6b08b654e758.png", + "aggregators": [ + "OpenSwap", + "1inch", + "LiFi", + "Socket", + "Rubic", + "Rango", + "Sonarwatch", + "SushiSwap", + "Bancor" + ], + "occurrences": 9 + }, + "0xaaaf91d9b90df800df4f55c205fd6989c977e73a": { + "address": "0xaaaf91d9b90df800df4f55c205fd6989c977e73a", + "symbol": "TKN", + "decimals": 8, + "name": "Monolith TKN", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xaaaf91d9b90df800df4f55c205fd6989c977e73a.png", + "aggregators": [ + "Metamask", + "1inch", + "LiFi", + "TrustWallet", + "Socket", + "Rubic", + "Rango", + "Sonarwatch", + "Bancor" + ], + "occurrences": 9 + }, + "0x8a854288a5976036a725879164ca3e91d30c6a1b": { + "address": "0x8a854288a5976036a725879164ca3e91d30c6a1b", + "symbol": "GET", + "decimals": 18, + "name": "Guaranteed Entrance Token", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x8a854288a5976036a725879164ca3e91d30c6a1b.png", + "aggregators": [ + "Metamask", + "LiFi", + "TrustWallet", + "Socket", + "Rubic", + "Squid", + "Rango", + "Sonarwatch", + "SushiSwap" + ], + "occurrences": 9 + }, + "0xaaaebe6fe48e54f431b0c390cfaf0b017d09d42d": { + "address": "0xaaaebe6fe48e54f431b0c390cfaf0b017d09d42d", + "symbol": "CEL", + "decimals": 4, + "name": "Celsius", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xaaaebe6fe48e54f431b0c390cfaf0b017d09d42d.png", + "aggregators": [ + "Metamask", + "1inch", + "LiFi", + "TrustWallet", + "Socket", + "Rubic", + "Sonarwatch", + "SushiSwap", + "Bancor" + ], + "occurrences": 9 + }, + "0x5732046a883704404f284ce41ffadd5b007fd668": { + "address": "0x5732046a883704404f284ce41ffadd5b007fd668", + "symbol": "BLZ", + "decimals": 18, + "name": "Bluzelle Token", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x5732046a883704404f284ce41ffadd5b007fd668.png", + "aggregators": [ + "Metamask", + "1inch", + "LiFi", + "Socket", + "Rubic", + "Squid", + "Rango", + "Sonarwatch" + ], + "occurrences": 8 + }, + "0xccc8cb5229b0ac8069c51fd58367fd1e622afd97": { + "address": "0xccc8cb5229b0ac8069c51fd58367fd1e622afd97", + "symbol": "GODS", + "decimals": 18, + "name": "Gods Unchained", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xccc8cb5229b0ac8069c51fd58367fd1e622afd97.png", + "aggregators": [ + "Metamask", + "LiFi", + "Socket", + "Rubic", + "Squid", + "Rango", + "Sonarwatch", + "SushiSwap" + ], + "occurrences": 8 + }, + "0x85eee30c52b0b379b046fb0f85f4f3dc3009afec": { + "address": "0x85eee30c52b0b379b046fb0f85f4f3dc3009afec", + "symbol": "KEEP", + "decimals": 18, + "name": "KEEP", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x85eee30c52b0b379b046fb0f85f4f3dc3009afec.png", + "aggregators": [ + "Metamask", + "1inch", + "LiFi", + "TrustWallet", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 8 + }, + "0x595832f8fc6bf59c85c527fec3740a1b7a361269": { + "address": "0x595832f8fc6bf59c85c527fec3740a1b7a361269", + "symbol": "POWR", + "decimals": 6, + "name": "PowerLedger", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x595832f8fc6bf59c85c527fec3740a1b7a361269.png", + "aggregators": [ + "Metamask", + "1inch", + "LiFi", + "Socket", + "Rubic", + "Rango", + "Sonarwatch", + "Bancor" + ], + "occurrences": 8 + }, + "0x744d70fdbe2ba4cf95131626614a1763df805b9e": { + "address": "0x744d70fdbe2ba4cf95131626614a1763df805b9e", + "symbol": "SNT", + "decimals": 18, + "name": "Status Network Token", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x744d70fdbe2ba4cf95131626614a1763df805b9e.png", + "aggregators": [ + "Metamask", + "1inch", + "LiFi", + "Socket", + "Rubic", + "Rango", + "Sonarwatch", + "Bancor" + ], + "occurrences": 8 + }, + "0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac": { + "address": "0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac", + "symbol": "STORJ", + "decimals": 8, + "name": "Storj", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac.png", + "aggregators": [ + "Metamask", + "1inch", + "LiFi", + "Socket", + "Rubic", + "Squid", + "Rango", + "Sonarwatch" + ], + "occurrences": 8 + }, + "0xa1d0e215a23d7030842fc67ce582a6afa3ccab83": { + "address": "0xa1d0e215a23d7030842fc67ce582a6afa3ccab83", + "symbol": "YFII", + "decimals": 18, + "name": "YFII.finance", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xa1d0e215a23d7030842fc67ce582a6afa3ccab83.png", + "aggregators": [ + "OpenSwap", + "1inch", + "LiFi", + "Socket", + "Rubic", + "Rango", + "Sonarwatch", + "SushiSwap" + ], + "occurrences": 8 + }, + "0x875773784af8135ea0ef43b5a374aad105c5d39e": { + "address": "0x875773784af8135ea0ef43b5a374aad105c5d39e", + "symbol": "IDLE", + "decimals": 18, + "name": "Idle DAO Token", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x875773784af8135ea0ef43b5a374aad105c5d39e.png", + "aggregators": [ + "Metamask", + "LiFi", + "Socket", + "Rubic", + "Rango", + "Sonarwatch", + "SushiSwap", + "Bancor" + ], + "occurrences": 8 + }, + "0xaea46a60368a7bd060eec7df8cba43b7ef41ad85": { + "address": "0xaea46a60368a7bd060eec7df8cba43b7ef41ad85", + "symbol": "FET", + "decimals": 18, + "name": "Fetch", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xaea46a60368a7bd060eec7df8cba43b7ef41ad85.png", + "aggregators": [ + "Metamask", + "1inch", + "LiFi", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 7 + }, + "0x6dea81c8171d0ba574754ef6f8b412f2ed88c54d": { + "address": "0x6dea81c8171d0ba574754ef6f8b412f2ed88c54d", + "symbol": "LQTY", + "decimals": 18, + "name": "LQTY", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x6dea81c8171d0ba574754ef6f8b412f2ed88c54d.png", + "aggregators": [ + "OpenSwap", + "1inch", + "LiFi", + "Socket", + "Rubic", + "Sonarwatch", + "Bancor" + ], + "occurrences": 7 + }, + "0xe2f2a5c287993345a840db3b0845fbc70f5935a5": { + "address": "0xe2f2a5c287993345a840db3b0845fbc70f5935a5", + "symbol": "MSUSD", + "decimals": 18, + "name": "mStable USD", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xe2f2a5c287993345a840db3b0845fbc70f5935a5.png", + "aggregators": [ + "Metamask", + "1inch", + "LiFi", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 7 + }, + "0x9992ec3cf6a55b00978cddf2b27bc6882d88d1ec": { + "address": "0x9992ec3cf6a55b00978cddf2b27bc6882d88d1ec", + "symbol": "POLY", + "decimals": 18, + "name": "Polymath", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x9992ec3cf6a55b00978cddf2b27bc6882d88d1ec.png", + "aggregators": [ + "Metamask", + "1inch", + "LiFi", + "Socket", + "Rubic", + "Sonarwatch", + "SushiSwap" + ], + "occurrences": 7 + }, + "0x491604c0fdf08347dd1fa4ee062a822a5dd06b5d": { + "address": "0x491604c0fdf08347dd1fa4ee062a822a5dd06b5d", + "symbol": "CTSI", + "decimals": 18, + "name": "Cartesi Token", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x491604c0fdf08347dd1fa4ee062a822a5dd06b5d.png", + "aggregators": [ + "OpenSwap", + "LiFi", + "Socket", + "Rubic", + "Sonarwatch", + "Bancor" + ], + "occurrences": 6 + }, + "0xfe18be6b3bd88a2d2a7f928d00292e7a9963cfc6": { + "address": "0xfe18be6b3bd88a2d2a7f928d00292e7a9963cfc6", + "symbol": "SBTC", + "decimals": 18, + "name": "Synth sBTC", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xfe18be6b3bd88a2d2a7f928d00292e7a9963cfc6.png", + "aggregators": ["Metamask", "LiFi", "Rubic", "Rango", "Bancor"], + "occurrences": 5 + }, + "0x0391d2021f89dc339f60fff84546ea23e337750f": { + "address": "0x0391d2021f89dc339f60fff84546ea23e337750f", + "symbol": "BOND", + "decimals": 18, + "name": "BarnBridge Governance Token", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x0391d2021f89dc339f60fff84546ea23e337750f.png", + "aggregators": [ + "OpenSwap", + "1inch", + "LiFi", + "Socket", + "Rubic", + "Squid", + "Rango", + "Sonarwatch", + "SushiSwap", + "Bancor" + ], + "occurrences": 10 + }, + "0x221657776846890989a759ba2973e427dff5c9bb": { + "address": "0x221657776846890989a759ba2973e427dff5c9bb", + "symbol": "REPV2", + "decimals": 18, + "name": "Reputation", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x221657776846890989a759ba2973e427dff5c9bb.png", + "aggregators": [ + "Metamask", + "1inch", + "LiFi", + "TrustWallet", + "Socket", + "Rubic", + "Squid", + "Rango", + "Sonarwatch", + "SushiSwap" + ], + "occurrences": 10 + }, + "0x8ce9137d39326ad0cd6491fb5cc0cba0e089b6a9": { + "address": "0x8ce9137d39326ad0cd6491fb5cc0cba0e089b6a9", + "symbol": "SXP", + "decimals": 18, + "name": "Swipe", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x8ce9137d39326ad0cd6491fb5cc0cba0e089b6a9.png", + "aggregators": [ + "CoinGecko", + "1inch", + "LiFi", + "TrustWallet", + "Socket", + "Rubic", + "Rango", + "Sonarwatch", + "SushiSwap", + "Bancor" + ], + "occurrences": 10 + }, + "0xaa7a9ca87d3694b5755f213b5d04094b8d0f0a6f": { + "address": "0xaa7a9ca87d3694b5755f213b5d04094b8d0f0a6f", + "symbol": "TRAC", + "decimals": 18, + "name": "Trace Token", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xaa7a9ca87d3694b5755f213b5d04094b8d0f0a6f.png", + "aggregators": [ + "OpenSwap", + "1inch", + "LiFi", + "TrustWallet", + "Socket", + "Rubic", + "Squid", + "Rango", + "Sonarwatch", + "Bancor" + ], + "occurrences": 10 + }, + "0x1559fa1b8f28238fd5d76d9f434ad86fd20d1559": { + "address": "0x1559fa1b8f28238fd5d76d9f434ad86fd20d1559", + "symbol": "EDEN", + "decimals": 18, + "name": "EDEN", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x1559fa1b8f28238fd5d76d9f434ad86fd20d1559.png", + "aggregators": [ + "CoinMarketCap", + "1inch", + "LiFi", + "Socket", + "Rubic", + "Squid", + "Rango", + "Sonarwatch", + "SushiSwap", + "Bancor" + ], + "occurrences": 10 + }, + "0x4c2e59d098df7b6cbae0848d66de2f8a4889b9c3": { + "address": "0x4c2e59d098df7b6cbae0848d66de2f8a4889b9c3", + "symbol": "FODL", + "decimals": 18, + "name": "Fodl", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x4c2e59d098df7b6cbae0848d66de2f8a4889b9c3.png", + "aggregators": [ + "CoinMarketCap", + "1inch", + "LiFi", + "Socket", + "Rubic", + "Squid", + "Rango", + "Sonarwatch", + "SushiSwap", + "Bancor" + ], + "occurrences": 10 + }, + "0xe76c6c83af64e4c60245d8c7de953df673a7a33d": { + "address": "0xe76c6c83af64e4c60245d8c7de953df673a7a33d", + "symbol": "RAIL", + "decimals": 18, + "name": "Rail", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xe76c6c83af64e4c60245d8c7de953df673a7a33d.png", + "aggregators": [ + "CoinMarketCap", + "1inch", + "LiFi", + "Socket", + "Rubic", + "Squid", + "Rango", + "Sonarwatch", + "SushiSwap", + "Bancor" + ], + "occurrences": 10 + }, + "0xcc4304a31d09258b0029ea7fe63d032f52e44efe": { + "address": "0xcc4304a31d09258b0029ea7fe63d032f52e44efe", + "symbol": "SWAP", + "decimals": 18, + "name": "TrustSwap Token", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xcc4304a31d09258b0029ea7fe63d032f52e44efe.png", + "aggregators": [ + "CoinMarketCap", + "1inch", + "LiFi", + "TrustWallet", + "Socket", + "Rubic", + "Squid", + "Rango", + "Sonarwatch", + "SushiSwap" + ], + "occurrences": 10 + }, + "0x0f51bb10119727a7e5ea3538074fb341f56b09ad": { + "address": "0x0f51bb10119727a7e5ea3538074fb341f56b09ad", + "symbol": "DAO", + "decimals": 18, + "name": "DAO Maker", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x0f51bb10119727a7e5ea3538074fb341f56b09ad.png", + "aggregators": [ + "CoinMarketCap", + "1inch", + "LiFi", + "TrustWallet", + "Socket", + "Rubic", + "Rango", + "Sonarwatch", + "SushiSwap", + "Bancor" + ], + "occurrences": 10 + }, + "0x8798249c2e607446efb7ad49ec89dd1865ff4272": { + "address": "0x8798249c2e607446efb7ad49ec89dd1865ff4272", + "symbol": "XSUSHI", + "decimals": 18, + "name": "SushiBar", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x8798249c2e607446efb7ad49ec89dd1865ff4272.png", + "aggregators": [ + "CoinMarketCap", + "1inch", + "LiFi", + "Socket", + "Rubic", + "Squid", + "Rango", + "Sonarwatch", + "SushiSwap", + "Bancor" + ], + "occurrences": 10 + }, + "0x4104b135dbc9609fc1a9490e61369036497660c8": { + "address": "0x4104b135dbc9609fc1a9490e61369036497660c8", + "symbol": "APW", + "decimals": 18, + "name": "APWine Token", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x4104b135dbc9609fc1a9490e61369036497660c8.png", + "aggregators": [ + "CoinMarketCap", + "1inch", + "LiFi", + "Socket", + "Rubic", + "Squid", + "Rango", + "Sonarwatch", + "SushiSwap", + "Bancor" + ], + "occurrences": 10 + }, + "0x8888801af4d980682e47f1a9036e589479e835c5": { + "address": "0x8888801af4d980682e47f1a9036e589479e835c5", + "symbol": "MPH", + "decimals": 18, + "name": "88mph.app", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x8888801af4d980682e47f1a9036e589479e835c5.png", + "aggregators": [ + "CoinMarketCap", + "1inch", + "LiFi", + "TrustWallet", + "Socket", + "Rubic", + "Rango", + "Sonarwatch", + "SushiSwap", + "Bancor" + ], + "occurrences": 10 + }, + "0xf17e65822b568b3903685a7c9f496cf7656cc6c2": { + "address": "0xf17e65822b568b3903685a7c9f496cf7656cc6c2", + "symbol": "BICO", + "decimals": 18, + "name": "Biconomy Token", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xf17e65822b568b3903685a7c9f496cf7656cc6c2.png", + "aggregators": [ + "OpenSwap", + "1inch", + "LiFi", + "Socket", + "Rubic", + "Squid", + "Rango", + "Sonarwatch", + "SushiSwap" + ], + "occurrences": 9 + }, + "0x1a4b46696b2bb4794eb3d4c26f1c55f9170fa4c5": { + "address": "0x1a4b46696b2bb4794eb3d4c26f1c55f9170fa4c5", + "symbol": "BIT", + "decimals": 18, + "name": "BitDAO", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x1a4b46696b2bb4794eb3d4c26f1c55f9170fa4c5.png", + "aggregators": [ + "Metamask", + "1inch", + "LiFi", + "Socket", + "Rubic", + "Squid", + "Rango", + "Sonarwatch", + "SushiSwap" + ], + "occurrences": 9 + }, + "0x5283d291dbcf85356a21ba090e6db59121208b44": { + "address": "0x5283d291dbcf85356a21ba090e6db59121208b44", + "symbol": "BLUR", + "decimals": 18, + "name": "Blur", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x5283d291dbcf85356a21ba090e6db59121208b44.png", + "aggregators": [ + "CoinMarketCap", + "1inch", + "LiFi", + "Socket", + "Rubic", + "Squid", + "Rango", + "Sonarwatch", + "SushiSwap" + ], + "occurrences": 9 + }, + "0xdef1ca1fb7fbcdc777520aa7f396b4e015f497ab": { + "address": "0xdef1ca1fb7fbcdc777520aa7f396b4e015f497ab", + "symbol": "COW", + "decimals": 18, + "name": "CoW Protocol Token", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xdef1ca1fb7fbcdc777520aa7f396b4e015f497ab.png", + "aggregators": [ + "Metamask", + "1inch", + "LiFi", + "Socket", + "Rubic", + "Squid", + "Rango", + "Sonarwatch", + "SushiSwap" + ], + "occurrences": 9 + }, + "0x4e15361fd6b4bb609fa63c81a2be19d873717870": { + "address": "0x4e15361fd6b4bb609fa63c81a2be19d873717870", + "symbol": "FTM", + "decimals": 18, + "name": "Fantom", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x4e15361fd6b4bb609fa63c81a2be19d873717870.png", + "aggregators": [ + "Metamask", + "1inch", + "LiFi", + "Socket", + "Rubic", + "Squid", + "Rango", + "Sonarwatch", + "SushiSwap" + ], + "occurrences": 9 + }, + "0x99d8a9c45b2eca8864373a26d1459e3dff1e17f3": { + "address": "0x99d8a9c45b2eca8864373a26d1459e3dff1e17f3", + "symbol": "MIM", + "decimals": 18, + "name": "Magic Internet Money", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x99d8a9c45b2eca8864373a26d1459e3dff1e17f3.png", + "aggregators": [ + "OpenSwap", + "1inch", + "LiFi", + "Socket", + "Rubic", + "Squid", + "Rango", + "Sonarwatch", + "SushiSwap" + ], + "occurrences": 9 + }, + "0x275f5ad03be0fa221b4c6649b8aee09a42d9412a": { + "address": "0x275f5ad03be0fa221b4c6649b8aee09a42d9412a", + "symbol": "MONA", + "decimals": 18, + "name": "Monavale", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x275f5ad03be0fa221b4c6649b8aee09a42d9412a.png", + "aggregators": [ + "CoinMarketCap", + "1inch", + "LiFi", + "Socket", + "Rubic", + "Squid", + "Rango", + "Sonarwatch", + "Bancor" + ], + "occurrences": 9 + }, + "0x65ef703f5594d2573eb71aaf55bc0cb548492df4": { + "address": "0x65ef703f5594d2573eb71aaf55bc0cb548492df4", + "symbol": "MULTI", + "decimals": 18, + "name": "Multichain", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x65ef703f5594d2573eb71aaf55bc0cb548492df4.png", + "aggregators": [ + "OpenSwap", + "1inch", + "LiFi", + "Socket", + "Rubic", + "Squid", + "Rango", + "Sonarwatch", + "SushiSwap" + ], + "occurrences": 9 + }, + "0x4fe83213d56308330ec302a8bd641f1d0113a4cc": { + "address": "0x4fe83213d56308330ec302a8bd641f1d0113a4cc", + "symbol": "NU", + "decimals": 18, + "name": "NuCypher", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x4fe83213d56308330ec302a8bd641f1d0113a4cc.png", + "aggregators": [ + "OpenSwap", + "1inch", + "LiFi", + "TrustWallet", + "Socket", + "Rubic", + "Rango", + "Sonarwatch", + "SushiSwap" + ], + "occurrences": 9 + }, + "0x0258f474786ddfd37abce6df6bbb1dd5dfc4434a": { + "address": "0x0258f474786ddfd37abce6df6bbb1dd5dfc4434a", + "symbol": "ORN", + "decimals": 8, + "name": "Orion Protocol", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x0258f474786ddfd37abce6df6bbb1dd5dfc4434a.png", + "aggregators": [ + "OpenSwap", + "1inch", + "LiFi", + "TrustWallet", + "Socket", + "Rubic", + "Rango", + "Sonarwatch", + "SushiSwap" + ], + "occurrences": 9 + }, + "0x808507121b80c02388fad14726482e061b8da827": { + "address": "0x808507121b80c02388fad14726482e061b8da827", + "symbol": "PENDLE", + "decimals": 18, + "name": "Pendle", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x808507121b80c02388fad14726482e061b8da827.png", + "aggregators": [ + "CoinMarketCap", + "1inch", + "LiFi", + "Socket", + "Rubic", + "Squid", + "Rango", + "Sonarwatch", + "SushiSwap" + ], + "occurrences": 9 + }, + "0xba5bde662c17e2adff1075610382b9b691296350": { + "address": "0xba5bde662c17e2adff1075610382b9b691296350", + "symbol": "RARE", + "decimals": 18, + "name": "SuperRare Token", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xba5bde662c17e2adff1075610382b9b691296350.png", + "aggregators": [ + "Metamask", + "1inch", + "LiFi", + "Socket", + "Rubic", + "Squid", + "Rango", + "Sonarwatch", + "SushiSwap" + ], + "occurrences": 9 + }, + "0x557b933a7c2c45672b610f8954a3deb39a51a8ca": { + "address": "0x557b933a7c2c45672b610f8954a3deb39a51a8ca", + "symbol": "REVV", + "decimals": 18, + "name": "REVV", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x557b933a7c2c45672b610f8954a3deb39a51a8ca.png", + "aggregators": [ + "Metamask", + "1inch", + "LiFi", + "TrustWallet", + "Socket", + "Rubic", + "Rango", + "Sonarwatch", + "SushiSwap" + ], + "occurrences": 9 + }, + "0xe53ec727dbdeb9e2d5456c3be40cff031ab40a55": { + "address": "0xe53ec727dbdeb9e2d5456c3be40cff031ab40a55", + "symbol": "SUPER", + "decimals": 18, + "name": "SuperVerse", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xe53ec727dbdeb9e2d5456c3be40cff031ab40a55.png", + "aggregators": [ + "OpenSwap", + "1inch", + "LiFi", + "TrustWallet", + "Socket", + "Rubic", + "Squid", + "Rango", + "Sonarwatch" + ], + "occurrences": 9 + }, + "0x2e9d63788249371f1dfc918a52f8d799f4a38c94": { + "address": "0x2e9d63788249371f1dfc918a52f8d799f4a38c94", + "symbol": "TOKE", + "decimals": 18, + "name": "Tokemak", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x2e9d63788249371f1dfc918a52f8d799f4a38c94.png", + "aggregators": [ + "OpenSwap", + "1inch", + "LiFi", + "Socket", + "Rubic", + "Squid", + "Rango", + "Sonarwatch", + "SushiSwap" + ], + "occurrences": 9 + }, + "0x431ad2ff6a9c365805ebad47ee021148d6f7dbe0": { + "address": "0x431ad2ff6a9c365805ebad47ee021148d6f7dbe0", + "symbol": "DF", + "decimals": 18, + "name": "dForce", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x431ad2ff6a9c365805ebad47ee021148d6f7dbe0.png", + "aggregators": [ + "Metamask", + "1inch", + "LiFi", + "TrustWallet", + "Socket", + "Rubic", + "Squid", + "Rango", + "Sonarwatch" + ], + "occurrences": 9 + }, + "0x38e4adb44ef08f22f5b5b76a8f0c2d0dcbe7dca1": { + "address": "0x38e4adb44ef08f22f5b5b76a8f0c2d0dcbe7dca1", + "symbol": "CVP", + "decimals": 18, + "name": "Concentrated Voting Power", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x38e4adb44ef08f22f5b5b76a8f0c2d0dcbe7dca1.png", + "aggregators": [ + "Metamask", + "1inch", + "LiFi", + "TrustWallet", + "Socket", + "Rubic", + "Rango", + "Sonarwatch", + "SushiSwap" + ], + "occurrences": 9 + }, + "0xe5caef4af8780e59df925470b050fb23c43ca68c": { + "address": "0xe5caef4af8780e59df925470b050fb23c43ca68c", + "symbol": "FRM", + "decimals": 6, + "name": "Ferrum Network Token", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xe5caef4af8780e59df925470b050fb23c43ca68c.png", + "aggregators": [ + "Metamask", + "1inch", + "LiFi", + "TrustWallet", + "Socket", + "Rubic", + "Rango", + "Sonarwatch", + "Bancor" + ], + "occurrences": 9 + }, + "0xe3818504c1b32bf1557b16c238b2e01fd3149c17": { + "address": "0xe3818504c1b32bf1557b16c238b2e01fd3149c17", + "symbol": "PLR", + "decimals": 18, + "name": "Pillar", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xe3818504c1b32bf1557b16c238b2e01fd3149c17.png", + "aggregators": [ + "Metamask", + "1inch", + "LiFi", + "TrustWallet", + "Socket", + "Rubic", + "Rango", + "Sonarwatch", + "Bancor" + ], + "occurrences": 9 + }, + "0x1b40183efb4dd766f11bda7a7c3ad8982e998421": { + "address": "0x1b40183efb4dd766f11bda7a7c3ad8982e998421", + "symbol": "VSP", + "decimals": 18, + "name": "Vesper", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x1b40183efb4dd766f11bda7a7c3ad8982e998421.png", + "aggregators": [ + "Metamask", + "1inch", + "LiFi", + "TrustWallet", + "Socket", + "Rubic", + "Rango", + "Sonarwatch", + "SushiSwap" + ], + "occurrences": 9 + }, + "0x6399c842dd2be3de30bf99bc7d1bbf6fa3650e70": { + "address": "0x6399c842dd2be3de30bf99bc7d1bbf6fa3650e70", + "symbol": "PREMIA", + "decimals": 18, + "name": "Premia", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x6399c842dd2be3de30bf99bc7d1bbf6fa3650e70.png", + "aggregators": [ + "CoinMarketCap", + "1inch", + "LiFi", + "Socket", + "Rubic", + "Squid", + "Rango", + "Sonarwatch", + "SushiSwap" + ], + "occurrences": 9 + }, + "0xd084944d3c05cd115c09d072b9f44ba3e0e45921": { + "address": "0xd084944d3c05cd115c09d072b9f44ba3e0e45921", + "symbol": "FOLD", + "decimals": 18, + "name": "Manifold Finance", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xd084944d3c05cd115c09d072b9f44ba3e0e45921.png", + "aggregators": [ + "Metamask", + "1inch", + "LiFi", + "Socket", + "Rubic", + "Squid", + "Rango", + "Sonarwatch", + "SushiSwap" + ], + "occurrences": 9 + }, + "0x8400d94a5cb0fa0d041a3788e395285d61c9ee5e": { + "address": "0x8400d94a5cb0fa0d041a3788e395285d61c9ee5e", + "symbol": "UBT", + "decimals": 8, + "name": "Unibright", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x8400d94a5cb0fa0d041a3788e395285d61c9ee5e.png", + "aggregators": [ + "Metamask", + "1inch", + "LiFi", + "TrustWallet", + "Socket", + "Rubic", + "Rango", + "Sonarwatch", + "Bancor" + ], + "occurrences": 9 + }, + "0x888888888889c00c67689029d7856aac1065ec11": { + "address": "0x888888888889c00c67689029d7856aac1065ec11", + "symbol": "OPIUM", + "decimals": 18, + "name": "Opium Governance Token", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x888888888889c00c67689029d7856aac1065ec11.png", + "aggregators": [ + "CoinMarketCap", + "1inch", + "LiFi", + "Socket", + "Rubic", + "Rango", + "Sonarwatch", + "SushiSwap", + "Bancor" + ], + "occurrences": 9 + }, + "0xae78736cd615f374d3085123a210448e74fc6393": { + "address": "0xae78736cd615f374d3085123a210448e74fc6393", + "symbol": "RETH", + "decimals": 18, + "name": "Rocket Pool ETH", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xae78736cd615f374d3085123a210448e74fc6393.png", + "aggregators": [ + "Metamask", + "1inch", + "LiFi", + "Socket", + "Rubic", + "Squid", + "Rango", + "Sonarwatch", + "Bancor" + ], + "occurrences": 9 + }, + "0x0d438f3b5175bebc262bf23753c1e53d03432bde": { + "address": "0x0d438f3b5175bebc262bf23753c1e53d03432bde", + "symbol": "WNXM", + "decimals": 18, + "name": "Wrapped NXM", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x0d438f3b5175bebc262bf23753c1e53d03432bde.png", + "aggregators": [ + "CoinMarketCap", + "1inch", + "LiFi", + "Socket", + "Rubic", + "Rango", + "Sonarwatch", + "SushiSwap", + "Bancor" + ], + "occurrences": 9 + }, + "0x856c4efb76c1d1ae02e20ceb03a2a6a08b0b8dc3": { + "address": "0x856c4efb76c1d1ae02e20ceb03a2a6a08b0b8dc3", + "symbol": "OETH", + "decimals": 18, + "name": "Origin Ether", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x856c4efb76c1d1ae02e20ceb03a2a6a08b0b8dc3.png", + "aggregators": [ + "Metamask", + "1inch", + "LiFi", + "Socket", + "Rubic", + "Squid", + "Rango", + "Sonarwatch", + "SushiSwap" + ], + "occurrences": 9 + }, + "0x32353a6c91143bfd6c7d363b546e62a9a2489a20": { + "address": "0x32353a6c91143bfd6c7d363b546e62a9a2489a20", + "symbol": "AGLD", + "decimals": 18, + "name": "Adventure Gold", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x32353a6c91143bfd6c7d363b546e62a9a2489a20.png", + "aggregators": [ + "OpenSwap", + "1inch", + "LiFi", + "Socket", + "Rubic", + "Rango", + "Sonarwatch", + "SushiSwap" + ], + "occurrences": 8 + }, + "0x27054b13b1b798b345b591a4d22e6562d47ea75a": { + "address": "0x27054b13b1b798b345b591a4d22e6562d47ea75a", + "symbol": "AST", + "decimals": 4, + "name": "AirSwap Token", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x27054b13b1b798b345b591a4d22e6562d47ea75a.png", + "aggregators": [ + "Metamask", + "1inch", + "LiFi", + "Socket", + "Rubic", + "Rango", + "Sonarwatch", + "Bancor" + ], + "occurrences": 8 + }, + "0x321c2fe4446c7c963dc41dd58879af648838f98d": { + "address": "0x321c2fe4446c7c963dc41dd58879af648838f98d", + "symbol": "CTX", + "decimals": 18, + "name": "Cryptex Finance", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x321c2fe4446c7c963dc41dd58879af648838f98d.png", + "aggregators": [ + "Metamask", + "1inch", + "LiFi", + "Socket", + "Rubic", + "Rango", + "Sonarwatch", + "SushiSwap" + ], + "occurrences": 8 + }, + "0xf1f955016ecbcd7321c7266bccfb96c68ea5e49b": { + "address": "0xf1f955016ecbcd7321c7266bccfb96c68ea5e49b", + "symbol": "RLY", + "decimals": 18, + "name": "Rally", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xf1f955016ecbcd7321c7266bccfb96c68ea5e49b.png", + "aggregators": [ + "OpenSwap", + "1inch", + "TrustWallet", + "Socket", + "Rubic", + "Squid", + "Rango", + "Sonarwatch" + ], + "occurrences": 8 + }, + "0xfa5047c9c78b8877af97bdcb85db743fd7313d4a": { + "address": "0xfa5047c9c78b8877af97bdcb85db743fd7313d4a", + "symbol": "ROOK", + "decimals": 18, + "name": "ROOK", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xfa5047c9c78b8877af97bdcb85db743fd7313d4a.png", + "aggregators": [ + "Metamask", + "LiFi", + "Socket", + "Rubic", + "Rango", + "Sonarwatch", + "SushiSwap", + "Bancor" + ], + "occurrences": 8 + }, + "0xd33526068d116ce69f19a9ee46f0bd304f21a51f": { + "address": "0xd33526068d116ce69f19a9ee46f0bd304f21a51f", + "symbol": "RPL", + "decimals": 18, + "name": "Rocket Pool", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xd33526068d116ce69f19a9ee46f0bd304f21a51f.png", + "aggregators": [ + "Metamask", + "1inch", + "LiFi", + "Socket", + "Rubic", + "Rango", + "Sonarwatch", + "Bancor" + ], + "occurrences": 8 + }, + "0x8d0d000ee44948fc98c9b98a4fa4921476f08b0d": { + "address": "0x8d0d000ee44948fc98c9b98a4fa4921476f08b0d", + "symbol": "USD1", + "decimals": 18, + "name": "USD1", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x8d0d000ee44948fc98c9b98a4fa4921476f08b0d.png", + "aggregators": [ + "CoinMarketCap", + "1inch", + "LiFi", + "Socket", + "Rubic", + "Squid", + "Rango", + "Sonarwatch" + ], + "occurrences": 8 + }, + "0x80fb784b7ed66730e8b1dbd9820afd29931aab03": { + "address": "0x80fb784b7ed66730e8b1dbd9820afd29931aab03", + "symbol": "LEND", + "decimals": 18, + "name": "ETHLend Token", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x80fb784b7ed66730e8b1dbd9820afd29931aab03.png", + "aggregators": [ + "Metamask", + "1inch", + "LiFi", + "Socket", + "Rubic", + "Rango", + "Sonarwatch", + "SushiSwap" + ], + "occurrences": 8 + }, + "0x56d811088235f11c8920698a204a5010a788f4b3": { + "address": "0x56d811088235f11c8920698a204a5010a788f4b3", + "symbol": "BZRX", + "decimals": 18, + "name": "bZx Protocol Token (BZRX)", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x56d811088235f11c8920698a204a5010a788f4b3.png", + "aggregators": [ + "Metamask", + "LiFi", + "Socket", + "Rubic", + "Rango", + "Sonarwatch", + "SushiSwap", + "Bancor" + ], + "occurrences": 8 + }, + "0x8a9c67fee641579deba04928c4bc45f66e26343a": { + "address": "0x8a9c67fee641579deba04928c4bc45f66e26343a", + "symbol": "JRT", + "decimals": 18, + "name": "Jarvis Reward Token", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x8a9c67fee641579deba04928c4bc45f66e26343a.png", + "aggregators": [ + "CoinMarketCap", + "LiFi", + "Socket", + "Rubic", + "Rango", + "Sonarwatch", + "SushiSwap", + "Bancor" + ], + "occurrences": 8 + }, + "0x2a8e1e676ec238d8a992307b495b45b3feaa5e86": { + "address": "0x2a8e1e676ec238d8a992307b495b45b3feaa5e86", + "symbol": "OUSD", + "decimals": 18, + "name": "Origin Dollar", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x2a8e1e676ec238d8a992307b495b45b3feaa5e86.png", + "aggregators": [ + "Metamask", + "1inch", + "LiFi", + "Socket", + "Rubic", + "Rango", + "Sonarwatch", + "SushiSwap" + ], + "occurrences": 8 + }, + "0xae7ab96520de3a18e5e111b5eaab095312d7fe84": { + "address": "0xae7ab96520de3a18e5e111b5eaab095312d7fe84", + "symbol": "STETH", + "decimals": 18, + "name": "Liquid staked Ether 2.0", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xae7ab96520de3a18e5e111b5eaab095312d7fe84.png", + "aggregators": [ + "Metamask", + "1inch", + "LiFi", + "Socket", + "Rubic", + "Squid", + "Rango", + "Sonarwatch" + ], + "occurrences": 8 + }, + "0x7c5a0ce9267ed19b22f8cae653f198e3e8daf098": { + "address": "0x7c5a0ce9267ed19b22f8cae653f198e3e8daf098", + "symbol": "SAN", + "decimals": 18, + "name": "Santiment", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x7c5a0ce9267ed19b22f8cae653f198e3e8daf098.png", + "aggregators": [ + "Metamask", + "1inch", + "LiFi", + "Socket", + "Rubic", + "Rango", + "Sonarwatch", + "Bancor" + ], + "occurrences": 8 + }, + "0x93ed3fbe21207ec2e8f2d3c3de6e058cb73bc04d": { + "address": "0x93ed3fbe21207ec2e8f2d3c3de6e058cb73bc04d", + "symbol": "PNK", + "decimals": 18, + "name": "Pinakion Token", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x93ed3fbe21207ec2e8f2d3c3de6e058cb73bc04d.png", + "aggregators": [ + "Metamask", + "1inch", + "LiFi", + "TrustWallet", + "Socket", + "Rubic", + "Sonarwatch", + "SushiSwap" + ], + "occurrences": 8 + }, + "0xfa2b947eec368f42195f24f36d2af29f7c24cec2": { + "address": "0xfa2b947eec368f42195f24f36d2af29f7c24cec2", + "symbol": "USDF", + "decimals": 18, + "name": "Falcon USD", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xfa2b947eec368f42195f24f36d2af29f7c24cec2.png", + "aggregators": [ + "CoinMarketCap", + "1inch", + "LiFi", + "Socket", + "Rubic", + "Squid", + "Rango", + "Sonarwatch" + ], + "occurrences": 8 + }, + "0x970b9bb2c0444f5e81e9d0efb84c8ccdcdcaf84d": { + "address": "0x970b9bb2c0444f5e81e9d0efb84c8ccdcdcaf84d", + "symbol": "FUSE", + "decimals": 18, + "name": "Fuse Token", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x970b9bb2c0444f5e81e9d0efb84c8ccdcdcaf84d.png", + "aggregators": [ + "Metamask", + "1inch", + "LiFi", + "Socket", + "Rubic", + "Rango", + "Sonarwatch", + "SushiSwap" + ], + "occurrences": 8 + }, + "0xbf2179859fc6d5bee9bf9158632dc51678a4100e": { + "address": "0xbf2179859fc6d5bee9bf9158632dc51678a4100e", + "symbol": "ELF", + "decimals": 18, + "name": "AELF", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xbf2179859fc6d5bee9bf9158632dc51678a4100e.png", + "aggregators": [ + "Metamask", + "1inch", + "LiFi", + "Socket", + "Rubic", + "Rango", + "Sonarwatch", + "Bancor" + ], + "occurrences": 8 + }, + "0x91af0fbb28aba7e31403cb457106ce79397fd4e6": { + "address": "0x91af0fbb28aba7e31403cb457106ce79397fd4e6", + "symbol": "AERGO", + "decimals": 18, + "name": "Aergo", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x91af0fbb28aba7e31403cb457106ce79397fd4e6.png", + "aggregators": [ + "Metamask", + "Socket", + "Rubic", + "Squid", + "Rango", + "Sonarwatch", + "SushiSwap" + ], + "occurrences": 7 + }, + "0x0abdace70d3790235af448c88547603b945604ea": { + "address": "0x0abdace70d3790235af448c88547603b945604ea", + "symbol": "DNT", + "decimals": 18, + "name": "district0x", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x0abdace70d3790235af448c88547603b945604ea.png", + "aggregators": [ + "Metamask", + "LiFi", + "Socket", + "Rubic", + "Rango", + "Sonarwatch", + "SushiSwap" + ], + "occurrences": 7 + }, + "0xb705268213d593b8fd88d3fdeff93aff5cbdcfae": { + "address": "0xb705268213d593b8fd88d3fdeff93aff5cbdcfae", + "symbol": "IDEX", + "decimals": 18, + "name": "IDEX", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xb705268213d593b8fd88d3fdeff93aff5cbdcfae.png", + "aggregators": [ + "OpenSwap", + "1inch", + "LiFi", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 7 + }, + "0xd8912c10681d8b21fd3742244f44658dba12264e": { + "address": "0xd8912c10681d8b21fd3742244f44658dba12264e", + "symbol": "PLU", + "decimals": 18, + "name": "Pluton", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xd8912c10681d8b21fd3742244f44658dba12264e.png", + "aggregators": [ + "Metamask", + "1inch", + "LiFi", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 7 + }, + "0x6123b0049f904d730db3c36a31167d9d4121fa6b": { + "address": "0x6123b0049f904d730db3c36a31167d9d4121fa6b", + "symbol": "RBN", + "decimals": 18, + "name": "Ribbon Finance", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x6123b0049f904d730db3c36a31167d9d4121fa6b.png", + "aggregators": [ + "OpenSwap", + "LiFi", + "Socket", + "Rubic", + "Squid", + "Rango", + "Sonarwatch" + ], + "occurrences": 7 + }, + "0x5afe3855358e112b5647b952709e6165e1c1eeee": { + "address": "0x5afe3855358e112b5647b952709e6165e1c1eeee", + "symbol": "SAFE", + "decimals": 18, + "name": "Safe Token", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x5afe3855358e112b5647b952709e6165e1c1eeee.png", + "aggregators": [ + "Metamask", + "1inch", + "LiFi", + "Socket", + "Rubic", + "Sonarwatch", + "SushiSwap" + ], + "occurrences": 7 + }, + "0xac6df26a590f08dcc95d5a4705ae8abbc88509ef": { + "address": "0xac6df26a590f08dcc95d5a4705ae8abbc88509ef", + "symbol": "AENJ", + "decimals": 18, + "name": "Aave ENJ", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xac6df26a590f08dcc95d5a4705ae8abbc88509ef.png", + "aggregators": [ + "Metamask", + "1inch", + "LiFi", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 7 + }, + "0x39aa39c021dfbae8fac545936693ac917d5e7563": { + "address": "0x39aa39c021dfbae8fac545936693ac917d5e7563", + "symbol": "CUSDC", + "decimals": 8, + "name": "Compound USD Coin", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x39aa39c021dfbae8fac545936693ac917d5e7563.png", + "aggregators": [ + "Metamask", + "1inch", + "LiFi", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 7 + }, + "0x43dfc4159d86f3a37a5a4b3d4580b888ad7d4ddd": { + "address": "0x43dfc4159d86f3a37a5a4b3d4580b888ad7d4ddd", + "symbol": "DODO", + "decimals": 18, + "name": "DODO bird", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x43dfc4159d86f3a37a5a4b3d4580b888ad7d4ddd.png", + "aggregators": [ + "Metamask", + "1inch", + "LiFi", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 7 + }, + "0x89d24a6b4ccb1b6faa2625fe562bdd9a23260359": { + "address": "0x89d24a6b4ccb1b6faa2625fe562bdd9a23260359", + "symbol": "SAI", + "decimals": 18, + "name": "Sai Stablecoin v1.0", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x89d24a6b4ccb1b6faa2625fe562bdd9a23260359.png", + "aggregators": [ + "Metamask", + "1inch", + "LiFi", + "Socket", + "Rubic", + "Sonarwatch", + "Bancor" + ], + "occurrences": 7 + }, + "0xf8c3527cc04340b208c854e985240c02f7b7793f": { + "address": "0xf8c3527cc04340b208c854e985240c02f7b7793f", + "symbol": "FRONT", + "decimals": 18, + "name": "Frontier", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xf8c3527cc04340b208c854e985240c02f7b7793f.png", + "aggregators": [ + "CoinMarketCap", + "LiFi", + "Socket", + "Rubic", + "Rango", + "Sonarwatch", + "SushiSwap" + ], + "occurrences": 7 + }, + "0x8daebade922df735c38c80c7ebd708af50815faa": { + "address": "0x8daebade922df735c38c80c7ebd708af50815faa", + "symbol": "TBTC", + "decimals": 18, + "name": "tBTC", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x8daebade922df735c38c80c7ebd708af50815faa.png", + "aggregators": [ + "Metamask", + "LiFi", + "TrustWallet", + "Socket", + "Rubic", + "Rango", + "SushiSwap" + ], + "occurrences": 7 + }, + "0x249ca82617ec3dfb2589c4c17ab7ec9765350a18": { + "address": "0x249ca82617ec3dfb2589c4c17ab7ec9765350a18", + "symbol": "VERSE", + "decimals": 18, + "name": "Verse", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x249ca82617ec3dfb2589c4c17ab7ec9765350a18.png", + "aggregators": [ + "Metamask", + "1inch", + "Socket", + "Rubic", + "Rango", + "Sonarwatch", + "SushiSwap" + ], + "occurrences": 7 + }, + "0xdb25f211ab05b1c97d595516f45794528a807ad8": { + "address": "0xdb25f211ab05b1c97d595516f45794528a807ad8", + "symbol": "EURS", + "decimals": 2, + "name": "STASIS EURS Token", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xdb25f211ab05b1c97d595516f45794528a807ad8.png", + "aggregators": [ + "Metamask", + "1inch", + "LiFi", + "Socket", + "Rubic", + "Sonarwatch", + "Bancor" + ], + "occurrences": 7 + }, + "0xf4d861575ecc9493420a3f5a14f85b13f0b50eb3": { + "address": "0xf4d861575ecc9493420a3f5a14f85b13f0b50eb3", + "symbol": "FCL", + "decimals": 18, + "name": "Fractal Protocol", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xf4d861575ecc9493420a3f5a14f85b13f0b50eb3.png", + "aggregators": [ + "Metamask", + "TrustWallet", + "Socket", + "Rubic", + "Rango", + "Sonarwatch", + "SushiSwap" + ], + "occurrences": 7 + }, + "0x1985365e9f78359a9b6ad760e32412f4a445e862": { + "address": "0x1985365e9f78359a9b6ad760e32412f4a445e862", + "symbol": "REP", + "decimals": 18, + "name": "Reputation Old", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x1985365e9f78359a9b6ad760e32412f4a445e862.png", + "aggregators": [ + "Metamask", + "LiFi", + "TrustWallet", + "Socket", + "Rubic", + "Rango" + ], + "occurrences": 6 + }, + "0x71fc860f7d3a592a4a98740e39db31d25db65ae8": { + "address": "0x71fc860f7d3a592a4a98740e39db31d25db65ae8", + "symbol": "AUSDT", + "decimals": 6, + "name": "Aave USDT v1", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x71fc860f7d3a592a4a98740e39db31d25db65ae8.png", + "aggregators": [ + "CoinMarketCap", + "LiFi", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 6 + }, + "0x8ab7404063ec4dbcfd4598215992dc3f8ec853d7": { + "address": "0x8ab7404063ec4dbcfd4598215992dc3f8ec853d7", + "symbol": "AKRO", + "decimals": 18, + "name": "Akropolis", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x8ab7404063ec4dbcfd4598215992dc3f8ec853d7.png", + "aggregators": [ + "CoinMarketCap", + "Socket", + "Rubic", + "Rango", + "Sonarwatch", + "SushiSwap" + ], + "occurrences": 6 + }, + "0x5e74c9036fb86bd7ecdcb084a0673efc32ea31cb": { + "address": "0x5e74c9036fb86bd7ecdcb084a0673efc32ea31cb", + "symbol": "SETH", + "decimals": 18, + "name": "Synth sETH", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x5e74c9036fb86bd7ecdcb084a0673efc32ea31cb.png", + "aggregators": [ + "Metamask", + "LiFi", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 6 + }, + "0x4ddc2d193948926d02f9b1fe9e1daa0718270ed5": { + "address": "0x4ddc2d193948926d02f9b1fe9e1daa0718270ed5", + "symbol": "CETH", + "decimals": 8, + "name": "Compound Ether", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x4ddc2d193948926d02f9b1fe9e1daa0718270ed5.png", + "aggregators": [ + "Metamask", + "LiFi", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 6 + }, + "0x0cec1a9154ff802e7934fc916ed7ca50bde6844e": { + "address": "0x0cec1a9154ff802e7934fc916ed7ca50bde6844e", + "symbol": "POOL", + "decimals": 18, + "name": "PoolTogether", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x0cec1a9154ff802e7934fc916ed7ca50bde6844e.png", + "aggregators": [ + "CoinMarketCap", + "1inch", + "LiFi", + "TrustWallet", + "Socket", + "Rubic", + "Squid", + "Rango", + "Sonarwatch", + "SushiSwap", + "Bancor" + ], + "occurrences": 11 + }, + "0x5f98805a4e8be255a32880fdec7f6728c6568ba0": { + "address": "0x5f98805a4e8be255a32880fdec7f6728c6568ba0", + "symbol": "LUSD", + "decimals": 18, + "name": "Liquity USD", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x5f98805a4e8be255a32880fdec7f6728c6568ba0.png", + "aggregators": [ + "CoinMarketCap", + "1inch", + "LiFi", + "TrustWallet", + "Socket", + "Rubic", + "Squid", + "Rango", + "Sonarwatch", + "SushiSwap" + ], + "occurrences": 10 + }, + "0xc7283b66eb1eb5fb86327f08e1b5816b0720212b": { + "address": "0xc7283b66eb1eb5fb86327f08e1b5816b0720212b", + "symbol": "TRIBE", + "decimals": 18, + "name": "Tribe", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xc7283b66eb1eb5fb86327f08e1b5816b0720212b.png", + "aggregators": [ + "OpenSwap", + "1inch", + "LiFi", + "TrustWallet", + "Socket", + "Rubic", + "Rango", + "Sonarwatch", + "SushiSwap", + "Bancor" + ], + "occurrences": 10 + }, + "0x1337def16f9b486faed0293eb623dc8395dfe46a": { + "address": "0x1337def16f9b486faed0293eb623dc8395dfe46a", + "symbol": "ARMOR", + "decimals": 18, + "name": "ARMOR", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x1337def16f9b486faed0293eb623dc8395dfe46a.png", + "aggregators": [ + "CoinGecko", + "1inch", + "LiFi", + "TrustWallet", + "Socket", + "Rubic", + "Rango", + "Sonarwatch", + "SushiSwap", + "Bancor" + ], + "occurrences": 10 + }, + "0x626e8036deb333b408be468f951bdb42433cbf18": { + "address": "0x626e8036deb333b408be468f951bdb42433cbf18", + "symbol": "AIOZ", + "decimals": 18, + "name": "AIOZ Network", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x626e8036deb333b408be468f951bdb42433cbf18.png", + "aggregators": [ + "OpenSwap", + "1inch", + "LiFi", + "TrustWallet", + "Socket", + "Rubic", + "Squid", + "Rango", + "Sonarwatch" + ], + "occurrences": 9 + }, + "0xbe9895146f7af43049ca1c1ae358b0541ea49704": { + "address": "0xbe9895146f7af43049ca1c1ae358b0541ea49704", + "symbol": "CBETH", + "decimals": 18, + "name": "Coinbase Wrapped Staked ETH", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xbe9895146f7af43049ca1c1ae358b0541ea49704.png", + "aggregators": [ + "CoinMarketCap", + "1inch", + "LiFi", + "Socket", + "Rubic", + "Squid", + "Rango", + "Sonarwatch", + "SushiSwap" + ], + "occurrences": 9 + }, + "0xddb3422497e61e13543bea06989c0789117555c5": { + "address": "0xddb3422497e61e13543bea06989c0789117555c5", + "symbol": "COTI", + "decimals": 18, + "name": "COTI", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xddb3422497e61e13543bea06989c0789117555c5.png", + "aggregators": [ + "OpenSwap", + "1inch", + "LiFi", + "TrustWallet", + "Socket", + "Rubic", + "Squid", + "Rango", + "Sonarwatch" + ], + "occurrences": 9 + }, + "0xcf0c122c6b73ff809c693db761e7baebe62b6a2e": { + "address": "0xcf0c122c6b73ff809c693db761e7baebe62b6a2e", + "symbol": "FLOKI", + "decimals": 9, + "name": "FLOKI", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xcf0c122c6b73ff809c693db761e7baebe62b6a2e.png", + "aggregators": [ + "Metamask", + "1inch", + "TrustWallet", + "Socket", + "Rubic", + "Squid", + "Rango", + "Sonarwatch", + "SushiSwap" + ], + "occurrences": 9 + }, + "0xdd974d5c2e2928dea5f71b9825b8b646686bd200": { + "address": "0xdd974d5c2e2928dea5f71b9825b8b646686bd200", + "symbol": "KNC", + "decimals": 18, + "name": "Kyber Network Crystal", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xdd974d5c2e2928dea5f71b9825b8b646686bd200.png", + "aggregators": [ + "Metamask", + "1inch", + "LiFi", + "Socket", + "Rubic", + "Rango", + "Sonarwatch", + "SushiSwap", + "Bancor" + ], + "occurrences": 9 + }, + "0x320623b8e4ff03373931769a31fc52a4e78b5d70": { + "address": "0x320623b8e4ff03373931769a31fc52a4e78b5d70", + "symbol": "RSR", + "decimals": 18, + "name": "Reserve Rights", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x320623b8e4ff03373931769a31fc52a4e78b5d70.png", + "aggregators": [ + "Metamask", + "1inch", + "LiFi", + "Socket", + "Rubic", + "Squid", + "Rango", + "Sonarwatch", + "Bancor" + ], + "occurrences": 9 + }, + "0x25f8087ead173b73d6e8b84329989a8eea16cf73": { + "address": "0x25f8087ead173b73d6e8b84329989a8eea16cf73", + "symbol": "YGG", + "decimals": 18, + "name": "Yield Guild Games Token", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x25f8087ead173b73d6e8b84329989a8eea16cf73.png", + "aggregators": [ + "CoinMarketCap", + "1inch", + "LiFi", + "Socket", + "Rubic", + "Squid", + "Rango", + "Sonarwatch", + "SushiSwap" + ], + "occurrences": 9 + }, + "0x0000000000095413afc295d19edeb1ad7b71c952": { + "address": "0x0000000000095413afc295d19edeb1ad7b71c952", + "symbol": "LON", + "decimals": 18, + "name": "Tokenlon", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x0000000000095413afc295d19edeb1ad7b71c952.png", + "aggregators": [ + "CoinMarketCap", + "1inch", + "LiFi", + "TrustWallet", + "Socket", + "Rubic", + "Rango", + "Sonarwatch", + "SushiSwap" + ], + "occurrences": 9 + }, + "0xebd9d99a3982d547c5bb4db7e3b1f9f14b67eb83": { + "address": "0xebd9d99a3982d547c5bb4db7e3b1f9f14b67eb83", + "symbol": "ID", + "decimals": 18, + "name": "Everest", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xebd9d99a3982d547c5bb4db7e3b1f9f14b67eb83.png", + "aggregators": [ + "CoinMarketCap", + "1inch", + "TrustWallet", + "Socket", + "Rubic", + "Rango", + "Sonarwatch", + "SushiSwap", + "Bancor" + ], + "occurrences": 9 + }, + "0x66a0f676479cee1d7373f3dc2e2952778bff5bd6": { + "address": "0x66a0f676479cee1d7373f3dc2e2952778bff5bd6", + "symbol": "WISE", + "decimals": 18, + "name": "WISE Token", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x66a0f676479cee1d7373f3dc2e2952778bff5bd6.png", + "aggregators": [ + "Metamask", + "1inch", + "LiFi", + "TrustWallet", + "Socket", + "Rubic", + "Squid", + "Rango", + "Sonarwatch" + ], + "occurrences": 9 + }, + "0xeef9f339514298c6a857efcfc1a762af84438dee": { + "address": "0xeef9f339514298c6a857efcfc1a762af84438dee", + "symbol": "HEZ", + "decimals": 18, + "name": "Hermez Network Token", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xeef9f339514298c6a857efcfc1a762af84438dee.png", + "aggregators": [ + "CoinMarketCap", + "1inch", + "LiFi", + "TrustWallet", + "Socket", + "Rubic", + "Rango", + "Sonarwatch", + "SushiSwap" + ], + "occurrences": 9 + }, + "0x0c7d5ae016f806603cb1782bea29ac69471cab9c": { + "address": "0x0c7d5ae016f806603cb1782bea29ac69471cab9c", + "symbol": "BFC", + "decimals": 18, + "name": "Bifrost", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x0c7d5ae016f806603cb1782bea29ac69471cab9c.png", + "aggregators": [ + "CoinMarketCap", + "1inch", + "LiFi", + "TrustWallet", + "Socket", + "Rubic", + "Rango", + "Sonarwatch", + "SushiSwap" + ], + "occurrences": 9 + }, + "0x44709a920fccf795fbc57baa433cc3dd53c44dbe": { + "address": "0x44709a920fccf795fbc57baa433cc3dd53c44dbe", + "symbol": "RADAR", + "decimals": 18, + "name": "DappRadar", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x44709a920fccf795fbc57baa433cc3dd53c44dbe.png", + "aggregators": [ + "CoinMarketCap", + "1inch", + "LiFi", + "Socket", + "Rubic", + "Squid", + "Rango", + "Sonarwatch", + "SushiSwap" + ], + "occurrences": 9 + }, + "0x7659ce147d0e714454073a5dd7003544234b6aa0": { + "address": "0x7659ce147d0e714454073a5dd7003544234b6aa0", + "symbol": "XCAD", + "decimals": 18, + "name": "XCAD Token", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x7659ce147d0e714454073a5dd7003544234b6aa0.png", + "aggregators": [ + "Metamask", + "1inch", + "LiFi", + "TrustWallet", + "Socket", + "Rubic", + "Rango", + "Sonarwatch", + "SushiSwap" + ], + "occurrences": 9 + }, + "0x903bef1736cddf2a537176cf3c64579c3867a881": { + "address": "0x903bef1736cddf2a537176cf3c64579c3867a881", + "symbol": "ICHI", + "decimals": 9, + "name": "ichifarm", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x903bef1736cddf2a537176cf3c64579c3867a881.png", + "aggregators": [ + "CoinMarketCap", + "LiFi", + "Socket", + "Rubic", + "Squid", + "Rango", + "Sonarwatch", + "SushiSwap", + "Bancor" + ], + "occurrences": 9 + }, + "0x579cea1889991f68acc35ff5c3dd0621ff29b0c9": { + "address": "0x579cea1889991f68acc35ff5c3dd0621ff29b0c9", + "symbol": "IQ", + "decimals": 18, + "name": "Everipedia IQ", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x579cea1889991f68acc35ff5c3dd0621ff29b0c9.png", + "aggregators": [ + "CoinMarketCap", + "1inch", + "LiFi", + "Socket", + "Rubic", + "Squid", + "Rango", + "Sonarwatch", + "SushiSwap" + ], + "occurrences": 9 + }, + "0x419d0d8bdd9af5e606ae2232ed285aff190e711b": { + "address": "0x419d0d8bdd9af5e606ae2232ed285aff190e711b", + "symbol": "FUN", + "decimals": 8, + "name": "FunFair", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x419d0d8bdd9af5e606ae2232ed285aff190e711b.png", + "aggregators": [ + "Metamask", + "1inch", + "LiFi", + "TrustWallet", + "Socket", + "Rubic", + "Squid", + "Rango", + "Sonarwatch" + ], + "occurrences": 9 + }, + "0xf203ca1769ca8e9e8fe1da9d147db68b6c919817": { + "address": "0xf203ca1769ca8e9e8fe1da9d147db68b6c919817", + "symbol": "WNCG", + "decimals": 18, + "name": "Wrapped NCG", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xf203ca1769ca8e9e8fe1da9d147db68b6c919817.png", + "aggregators": [ + "CoinMarketCap", + "1inch", + "LiFi", + "Socket", + "Rubic", + "Squid", + "Rango", + "Sonarwatch", + "SushiSwap" + ], + "occurrences": 9 + }, + "0xcafe001067cdef266afb7eb5a286dcfd277f3de5": { + "address": "0xcafe001067cdef266afb7eb5a286dcfd277f3de5", + "symbol": "PSP", + "decimals": 18, + "name": "ParaSwap", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xcafe001067cdef266afb7eb5a286dcfd277f3de5.png", + "aggregators": [ + "CoinMarketCap", + "1inch", + "LiFi", + "Socket", + "Rubic", + "Rango", + "Sonarwatch", + "SushiSwap", + "Bancor" + ], + "occurrences": 9 + }, + "0xdefa4e8a7bcba345f687a2f1456f5edd9ce97202": { + "address": "0xdefa4e8a7bcba345f687a2f1456f5edd9ce97202", + "symbol": "KNC", + "decimals": 18, + "name": "Kyber Network Crystal v2", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xdefa4e8a7bcba345f687a2f1456f5edd9ce97202.png", + "aggregators": [ + "CoinMarketCap", + "1inch", + "LiFi", + "Socket", + "Rubic", + "Squid", + "Rango", + "Sonarwatch", + "Bancor" + ], + "occurrences": 9 + }, + "0x1796ae0b0fa4862485106a0de9b654efe301d0b2": { + "address": "0x1796ae0b0fa4862485106a0de9b654efe301d0b2", + "symbol": "PMON", + "decimals": 18, + "name": "Polychain Monsters", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x1796ae0b0fa4862485106a0de9b654efe301d0b2.png", + "aggregators": [ + "Metamask", + "1inch", + "LiFi", + "TrustWallet", + "Socket", + "Rubic", + "Rango", + "Sonarwatch", + "SushiSwap" + ], + "occurrences": 9 + }, + "0xe95a203b1a91a908f9b9ce46459d101078c2c3cb": { + "address": "0xe95a203b1a91a908f9b9ce46459d101078c2c3cb", + "symbol": "AETHC", + "decimals": 18, + "name": "ankrETH", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xe95a203b1a91a908f9b9ce46459d101078c2c3cb.png", + "aggregators": [ + "CoinMarketCap", + "1inch", + "LiFi", + "TrustWallet", + "Socket", + "Rubic", + "Rango", + "Sonarwatch", + "SushiSwap" + ], + "occurrences": 9 + }, + "0x21bfbda47a0b4b5b1248c767ee49f7caa9b23697": { + "address": "0x21bfbda47a0b4b5b1248c767ee49f7caa9b23697", + "symbol": "OVR", + "decimals": 18, + "name": "OVR", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x21bfbda47a0b4b5b1248c767ee49f7caa9b23697.png", + "aggregators": [ + "Metamask", + "1inch", + "LiFi", + "TrustWallet", + "Socket", + "Rubic", + "Squid", + "Rango", + "Sonarwatch" + ], + "occurrences": 9 + }, + "0x5f64ab1544d28732f0a24f4713c2c8ec0da089f0": { + "address": "0x5f64ab1544d28732f0a24f4713c2c8ec0da089f0", + "symbol": "DEXTF", + "decimals": 18, + "name": "DEXTF Token", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x5f64ab1544d28732f0a24f4713c2c8ec0da089f0.png", + "aggregators": [ + "CoinMarketCap", + "1inch", + "LiFi", + "TrustWallet", + "Socket", + "Rubic", + "Rango", + "Sonarwatch", + "SushiSwap" + ], + "occurrences": 9 + }, + "0xd23ac27148af6a2f339bd82d0e3cff380b5093de": { + "address": "0xd23ac27148af6a2f339bd82d0e3cff380b5093de", + "symbol": "SI", + "decimals": 18, + "name": "SIREN", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xd23ac27148af6a2f339bd82d0e3cff380b5093de.png", + "aggregators": [ + "CoinMarketCap", + "1inch", + "LiFi", + "TrustWallet", + "Socket", + "Rubic", + "Rango", + "Sonarwatch", + "SushiSwap" + ], + "occurrences": 9 + }, + "0x9ab7bb7fdc60f4357ecfef43986818a2a3569c62": { + "address": "0x9ab7bb7fdc60f4357ecfef43986818a2a3569c62", + "symbol": "GOG", + "decimals": 18, + "name": "Guild of Guardians", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x9ab7bb7fdc60f4357ecfef43986818a2a3569c62.png", + "aggregators": [ + "CoinMarketCap", + "1inch", + "LiFi", + "Socket", + "Rubic", + "Squid", + "Rango", + "Sonarwatch", + "SushiSwap" + ], + "occurrences": 9 + }, + "0x940a2db1b7008b6c776d4faaca729d6d4a4aa551": { + "address": "0x940a2db1b7008b6c776d4faaca729d6d4a4aa551", + "symbol": "DUSK", + "decimals": 18, + "name": "Dusk Network", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x940a2db1b7008b6c776d4faaca729d6d4a4aa551.png", + "aggregators": [ + "CoinMarketCap", + "1inch", + "LiFi", + "Socket", + "Rubic", + "Squid", + "Rango", + "Sonarwatch", + "Bancor" + ], + "occurrences": 9 + }, + "0xdf801468a808a32656d2ed2d2d80b72a129739f4": { + "address": "0xdf801468a808a32656d2ed2d2d80b72a129739f4", + "symbol": "CUBE", + "decimals": 8, + "name": "Somnium Space CUBEs", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xdf801468a808a32656d2ed2d2d80b72a129739f4.png", + "aggregators": [ + "OpenSwap", + "1inch", + "LiFi", + "Socket", + "Rubic", + "Squid", + "Rango", + "Sonarwatch" + ], + "occurrences": 8 + }, + "0x41e5560054824ea6b0732e656e3ad64e20e94e45": { + "address": "0x41e5560054824ea6b0732e656e3ad64e20e94e45", + "symbol": "CVC", + "decimals": 8, + "name": "Civic", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x41e5560054824ea6b0732e656e3ad64e20e94e45.png", + "aggregators": [ + "OpenSwap", + "1inch", + "LiFi", + "Socket", + "Rubic", + "Squid", + "Rango", + "Sonarwatch" + ], + "occurrences": 8 + }, + "0xec53bf9167f50cdeb3ae105f56099aaab9061f83": { + "address": "0xec53bf9167f50cdeb3ae105f56099aaab9061f83", + "symbol": "EIGEN", + "decimals": 18, + "name": "Eigenlayer", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xec53bf9167f50cdeb3ae105f56099aaab9061f83.png", + "aggregators": [ + "CoinMarketCap", + "1inch", + "LiFi", + "Socket", + "Rubic", + "Squid", + "Rango", + "Sonarwatch" + ], + "occurrences": 8 + }, + "0x056fd409e1d7a124bd7017459dfea2f387b6d5cd": { + "address": "0x056fd409e1d7a124bd7017459dfea2f387b6d5cd", + "symbol": "GUSD", + "decimals": 2, + "name": "Gemini Dollar", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x056fd409e1d7a124bd7017459dfea2f387b6d5cd.png", + "aggregators": [ + "Metamask", + "1inch", + "LiFi", + "Socket", + "Rubic", + "Rango", + "Sonarwatch", + "Bancor" + ], + "occurrences": 8 + }, + "0x71ab77b7dbb4fa7e017bc15090b2163221420282": { + "address": "0x71ab77b7dbb4fa7e017bc15090b2163221420282", + "symbol": "HIGH", + "decimals": 18, + "name": "Highstreet", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x71ab77b7dbb4fa7e017bc15090b2163221420282.png", + "aggregators": [ + "OpenSwap", + "1inch", + "LiFi", + "Socket", + "Rubic", + "Squid", + "Rango", + "Sonarwatch" + ], + "occurrences": 8 + }, + "0xf5581dfefd8fb0e4aec526be659cfab1f8c781da": { + "address": "0xf5581dfefd8fb0e4aec526be659cfab1f8c781da", + "symbol": "HOPR", + "decimals": 18, + "name": "HOPR Token", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xf5581dfefd8fb0e4aec526be659cfab1f8c781da.png", + "aggregators": [ + "CoinMarketCap", + "1inch", + "LiFi", + "Socket", + "Rubic", + "Rango", + "Sonarwatch", + "SushiSwap" + ], + "occurrences": 8 + }, + "0x949d48eca67b17269629c7194f4b727d4ef9e5d6": { + "address": "0x949d48eca67b17269629c7194f4b727d4ef9e5d6", + "symbol": "MC", + "decimals": 18, + "name": "Merit Circle", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x949d48eca67b17269629c7194f4b727d4ef9e5d6.png", + "aggregators": [ + "OpenSwap", + "1inch", + "LiFi", + "Socket", + "Rubic", + "Squid", + "Rango", + "Sonarwatch" + ], + "occurrences": 8 + }, + "0x09a3ecafa817268f77be1283176b946c4ff2e608": { + "address": "0x09a3ecafa817268f77be1283176b946c4ff2e608", + "symbol": "MIR", + "decimals": 18, + "name": "Wrapped MIR Token", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x09a3ecafa817268f77be1283176b946c4ff2e608.png", + "aggregators": [ + "Metamask", + "1inch", + "LiFi", + "TrustWallet", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 8 + }, + "0xb6ca7399b4f9ca56fc27cbff44f4d2e4eef1fc81": { + "address": "0xb6ca7399b4f9ca56fc27cbff44f4d2e4eef1fc81", + "symbol": "MUSE", + "decimals": 18, + "name": "Muse DAO", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xb6ca7399b4f9ca56fc27cbff44f4d2e4eef1fc81.png", + "aggregators": [ + "CoinMarketCap", + "1inch", + "LiFi", + "Socket", + "Rubic", + "Squid", + "Rango", + "Sonarwatch" + ], + "occurrences": 8 + }, + "0x6982508145454ce325ddbe47a25d4ec3d2311933": { + "address": "0x6982508145454ce325ddbe47a25d4ec3d2311933", + "symbol": "PEPE", + "decimals": 18, + "name": "Pepe", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x6982508145454ce325ddbe47a25d4ec3d2311933.png", + "aggregators": [ + "CoinMarketCap", + "1inch", + "Socket", + "Rubic", + "Squid", + "Rango", + "Sonarwatch", + "SushiSwap" + ], + "occurrences": 8 + }, + "0x56072c95faa701256059aa122697b133aded9279": { + "address": "0x56072c95faa701256059aa122697b133aded9279", + "symbol": "SKY", + "decimals": 18, + "name": "Sky Ecosystem", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x56072c95faa701256059aa122697b133aded9279.png", + "aggregators": [ + "Metamask", + "1inch", + "LiFi", + "Socket", + "Rubic", + "Squid", + "Rango", + "Sonarwatch" + ], + "occurrences": 8 + }, + "0x23b608675a2b2fb1890d3abbd85c5775c51691d5": { + "address": "0x23b608675a2b2fb1890d3abbd85c5775c51691d5", + "symbol": "SOCKS", + "decimals": 18, + "name": "Unisocks Edition 0", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x23b608675a2b2fb1890d3abbd85c5775c51691d5.png", + "aggregators": [ + "CoinMarketCap", + "1inch", + "LiFi", + "TrustWallet", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 8 + }, + "0x88df592f8eb5d7bd38bfef7deb0fbc02cf3778a0": { + "address": "0x88df592f8eb5d7bd38bfef7deb0fbc02cf3778a0", + "symbol": "TRB", + "decimals": 18, + "name": "Tellor Tributes", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x88df592f8eb5d7bd38bfef7deb0fbc02cf3778a0.png", + "aggregators": [ + "Metamask", + "1inch", + "LiFi", + "Socket", + "Rubic", + "Squid", + "Rango", + "Sonarwatch" + ], + "occurrences": 8 + }, + "0xdc035d45d973e3ec169d2276ddab16f1e407384f": { + "address": "0xdc035d45d973e3ec169d2276ddab16f1e407384f", + "symbol": "USDS", + "decimals": 18, + "name": "Sky Dollar", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xdc035d45d973e3ec169d2276ddab16f1e407384f.png", + "aggregators": [ + "Metamask", + "1inch", + "LiFi", + "Socket", + "Rubic", + "Squid", + "Rango", + "Sonarwatch" + ], + "occurrences": 8 + }, + "0x89ab32156e46f46d02ade3fecbe5fc4243b9aaed": { + "address": "0x89ab32156e46f46d02ade3fecbe5fc4243b9aaed", + "symbol": "PNT", + "decimals": 18, + "name": "pNetwork", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x89ab32156e46f46d02ade3fecbe5fc4243b9aaed.png", + "aggregators": [ + "CoinMarketCap", + "1inch", + "LiFi", + "TrustWallet", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 8 + }, + "0xf4cd3d3fda8d7fd6c5a500203e38640a70bf9577": { + "address": "0xf4cd3d3fda8d7fd6c5a500203e38640a70bf9577", + "symbol": "YF-DAI", + "decimals": 18, + "name": "YfDAI.finance", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xf4cd3d3fda8d7fd6c5a500203e38640a70bf9577.png", + "aggregators": [ + "CoinMarketCap", + "1inch", + "LiFi", + "TrustWallet", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 8 + }, + "0x33d0568941c0c64ff7e0fb4fba0b11bd37deed9f": { + "address": "0x33d0568941c0c64ff7e0fb4fba0b11bd37deed9f", + "symbol": "RAMP", + "decimals": 18, + "name": "RAMP DEFI", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x33d0568941c0c64ff7e0fb4fba0b11bd37deed9f.png", + "aggregators": [ + "CoinMarketCap", + "1inch", + "LiFi", + "TrustWallet", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 8 + }, + "0x95a4492f028aa1fd432ea71146b433e7b4446611": { + "address": "0x95a4492f028aa1fd432ea71146b433e7b4446611", + "symbol": "APY", + "decimals": 18, + "name": "APY.Finance", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x95a4492f028aa1fd432ea71146b433e7b4446611.png", + "aggregators": [ + "CoinMarketCap", + "1inch", + "LiFi", + "TrustWallet", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 8 + }, + "0xa5f2211b9b8170f694421f2046281775e8468044": { + "address": "0xa5f2211b9b8170f694421f2046281775e8468044", + "symbol": "THOR", + "decimals": 18, + "name": "THORSwap Token", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xa5f2211b9b8170f694421f2046281775e8468044.png", + "aggregators": [ + "CoinMarketCap", + "1inch", + "Socket", + "Rubic", + "Squid", + "Rango", + "Sonarwatch", + "SushiSwap" + ], + "occurrences": 8 + }, + "0xf406f7a9046793267bc276908778b29563323996": { + "address": "0xf406f7a9046793267bc276908778b29563323996", + "symbol": "VISION", + "decimals": 18, + "name": "Vision Token", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xf406f7a9046793267bc276908778b29563323996.png", + "aggregators": [ + "CoinMarketCap", + "1inch", + "LiFi", + "Socket", + "Rubic", + "Rango", + "Sonarwatch", + "Bancor" + ], + "occurrences": 8 + }, + "0xaf9f549774ecedbd0966c52f250acc548d3f36e5": { + "address": "0xaf9f549774ecedbd0966c52f250acc548d3f36e5", + "symbol": "RFUEL", + "decimals": 18, + "name": "RFUEL", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xaf9f549774ecedbd0966c52f250acc548d3f36e5.png", + "aggregators": [ + "Metamask", + "1inch", + "LiFi", + "TrustWallet", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 8 + }, + "0x3449fc1cd036255ba1eb19d65ff4ba2b8903a69a": { + "address": "0x3449fc1cd036255ba1eb19d65ff4ba2b8903a69a", + "symbol": "BAC", + "decimals": 18, + "name": "Basis Cash", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x3449fc1cd036255ba1eb19d65ff4ba2b8903a69a.png", + "aggregators": [ + "CoinMarketCap", + "1inch", + "LiFi", + "Socket", + "Rubic", + "Rango", + "Sonarwatch", + "SushiSwap" + ], + "occurrences": 8 + }, + "0x6e0dade58d2d89ebbe7afc384e3e4f15b70b14d8": { + "address": "0x6e0dade58d2d89ebbe7afc384e3e4f15b70b14d8", + "symbol": "QRX", + "decimals": 18, + "name": "QuiverX", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x6e0dade58d2d89ebbe7afc384e3e4f15b70b14d8.png", + "aggregators": [ + "Metamask", + "1inch", + "LiFi", + "TrustWallet", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 8 + }, + "0x6fc13eace26590b80cccab1ba5d51890577d83b2": { + "address": "0x6fc13eace26590b80cccab1ba5d51890577d83b2", + "symbol": "UMB", + "decimals": 18, + "name": "Umbrella Network", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x6fc13eace26590b80cccab1ba5d51890577d83b2.png", + "aggregators": [ + "CoinMarketCap", + "1inch", + "TrustWallet", + "Socket", + "Rubic", + "Rango", + "Sonarwatch", + "SushiSwap" + ], + "occurrences": 8 + }, + "0x7ca4408137eb639570f8e647d9bd7b7e8717514a": { + "address": "0x7ca4408137eb639570f8e647d9bd7b7e8717514a", + "symbol": "ALPA", + "decimals": 18, + "name": "Alpaca", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x7ca4408137eb639570f8e647d9bd7b7e8717514a.png", + "aggregators": [ + "CoinMarketCap", + "1inch", + "LiFi", + "Socket", + "Rubic", + "Rango", + "Sonarwatch", + "SushiSwap" + ], + "occurrences": 8 + }, + "0x163f8c2467924be0ae7b5347228cabf260318753": { + "address": "0x163f8c2467924be0ae7b5347228cabf260318753", + "symbol": "WLD", + "decimals": 18, + "name": "Worldcoin", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x163f8c2467924be0ae7b5347228cabf260318753.png", + "aggregators": [ + "CoinMarketCap", + "1inch", + "LiFi", + "Socket", + "Rubic", + "Squid", + "Rango", + "Sonarwatch" + ], + "occurrences": 8 + }, + "0x06f3c323f0238c72bf35011071f2b5b7f43a054c": { + "address": "0x06f3c323f0238c72bf35011071f2b5b7f43a054c", + "symbol": "MASQ", + "decimals": 18, + "name": "MASQ", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x06f3c323f0238c72bf35011071f2b5b7f43a054c.png", + "aggregators": [ + "CoinMarketCap", + "LiFi", + "Socket", + "Rubic", + "Squid", + "Rango", + "Sonarwatch", + "SushiSwap" + ], + "occurrences": 8 + }, + "0x87d73e916d7057945c9bcd8cdd94e42a6f47f776": { + "address": "0x87d73e916d7057945c9bcd8cdd94e42a6f47f776", + "symbol": "NFTX", + "decimals": 18, + "name": "NFTX", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x87d73e916d7057945c9bcd8cdd94e42a6f47f776.png", + "aggregators": [ + "CoinMarketCap", + "1inch", + "LiFi", + "Socket", + "Rubic", + "Rango", + "Sonarwatch", + "SushiSwap" + ], + "occurrences": 8 + }, + "0xc5102fe9359fd9a28f877a67e36b0f050d81a3cc": { + "address": "0xc5102fe9359fd9a28f877a67e36b0f050d81a3cc", + "symbol": "HOP", + "decimals": 18, + "name": "Hop", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xc5102fe9359fd9a28f877a67e36b0f050d81a3cc.png", + "aggregators": [ + "CoinMarketCap", + "LiFi", + "Socket", + "Rubic", + "Squid", + "Rango", + "Sonarwatch", + "SushiSwap" + ], + "occurrences": 8 + }, + "0xffffffff2ba8f66d4e51811c5190992176930278": { + "address": "0xffffffff2ba8f66d4e51811c5190992176930278", + "symbol": "COMBO", + "decimals": 18, + "name": "Furucombo", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xffffffff2ba8f66d4e51811c5190992176930278.png", + "aggregators": [ + "CoinMarketCap", + "1inch", + "LiFi", + "Socket", + "Rubic", + "Rango", + "Sonarwatch", + "SushiSwap" + ], + "occurrences": 8 + }, + "0xd5f7838f5c461feff7fe49ea5ebaf7728bb0adfa": { + "address": "0xd5f7838f5c461feff7fe49ea5ebaf7728bb0adfa", + "symbol": "METH", + "decimals": 18, + "name": "Mantle Staked Ether", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xd5f7838f5c461feff7fe49ea5ebaf7728bb0adfa.png", + "aggregators": [ + "Metamask", + "1inch", + "LiFi", + "Socket", + "Rubic", + "Squid", + "Rango", + "Sonarwatch" + ], + "occurrences": 8 + }, + "0xff56cc6b1e6ded347aa0b7676c85ab0b3d08b0fa": { + "address": "0xff56cc6b1e6ded347aa0b7676c85ab0b3d08b0fa", + "symbol": "ORBS", + "decimals": 18, + "name": "Orbs", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xff56cc6b1e6ded347aa0b7676c85ab0b3d08b0fa.png", + "aggregators": [ + "Metamask", + "1inch", + "LiFi", + "Socket", + "Rubic", + "Squid", + "Rango", + "Sonarwatch" + ], + "occurrences": 8 + }, + "0x9469d013805bffb7d3debe5e7839237e535ec483": { + "address": "0x9469d013805bffb7d3debe5e7839237e535ec483", + "symbol": "RING", + "decimals": 18, + "name": "Darwinia Network Native Token", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x9469d013805bffb7d3debe5e7839237e535ec483.png", + "aggregators": [ + "Metamask", + "1inch", + "LiFi", + "TrustWallet", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 8 + }, + "0xe0ad1806fd3e7edf6ff52fdb822432e847411033": { + "address": "0xe0ad1806fd3e7edf6ff52fdb822432e847411033", + "symbol": "ONX", + "decimals": 18, + "name": "OnX.finance", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xe0ad1806fd3e7edf6ff52fdb822432e847411033.png", + "aggregators": [ + "CoinMarketCap", + "1inch", + "LiFi", + "Socket", + "Rubic", + "Rango", + "Sonarwatch", + "SushiSwap" + ], + "occurrences": 8 + }, + "0x73968b9a57c6e53d41345fd57a6e6ae27d6cdb2f": { + "address": "0x73968b9a57c6e53d41345fd57a6e6ae27d6cdb2f", + "symbol": "SDT", + "decimals": 18, + "name": "Stake DAO", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x73968b9a57c6e53d41345fd57a6e6ae27d6cdb2f.png", + "aggregators": [ + "CoinMarketCap", + "1inch", + "LiFi", + "Socket", + "Rubic", + "Rango", + "Sonarwatch", + "SushiSwap" + ], + "occurrences": 8 + }, + "0x08c32b0726c5684024ea6e141c50ade9690bbdcc": { + "address": "0x08c32b0726c5684024ea6e141c50ade9690bbdcc", + "symbol": "STOS", + "decimals": 18, + "name": "Stratos Token", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x08c32b0726c5684024ea6e141c50ade9690bbdcc.png", + "aggregators": [ + "Metamask", + "1inch", + "LiFi", + "Socket", + "Rubic", + "Squid", + "Rango", + "Sonarwatch" + ], + "occurrences": 8 + }, + "0xde4ee8057785a7e8e800db58f9784845a5c2cbd6": { + "address": "0xde4ee8057785a7e8e800db58f9784845a5c2cbd6", + "symbol": "DEXE", + "decimals": 18, + "name": "Dexe", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xde4ee8057785a7e8e800db58f9784845a5c2cbd6.png", + "aggregators": [ + "CoinMarketCap", + "1inch", + "Socket", + "Rubic", + "Squid", + "Rango", + "Sonarwatch", + "Bancor" + ], + "occurrences": 8 + }, + "0x3affcca64c2a6f4e3b6bd9c64cd2c969efd1ecbe": { + "address": "0x3affcca64c2a6f4e3b6bd9c64cd2c969efd1ecbe", + "symbol": "DSLA", + "decimals": 18, + "name": "DSLA", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x3affcca64c2a6f4e3b6bd9c64cd2c969efd1ecbe.png", + "aggregators": [ + "CoinMarketCap", + "1inch", + "TrustWallet", + "Socket", + "Rubic", + "Rango", + "Sonarwatch", + "Bancor" + ], + "occurrences": 8 + }, + "0x64aa3364f17a4d01c6f1751fd97c2bd3d7e7f1d5": { + "address": "0x64aa3364f17a4d01c6f1751fd97c2bd3d7e7f1d5", + "symbol": "OHM", + "decimals": 9, + "name": "Olympus", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x64aa3364f17a4d01c6f1751fd97c2bd3d7e7f1d5.png", + "aggregators": [ + "Metamask", + "1inch", + "LiFi", + "Socket", + "Rubic", + "Rango", + "Sonarwatch", + "SushiSwap" + ], + "occurrences": 8 + }, + "0x0aacfbec6a24756c20d41914f2caba817c0d8521": { + "address": "0x0aacfbec6a24756c20d41914f2caba817c0d8521", + "symbol": "YAM", + "decimals": 18, + "name": "YAM", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x0aacfbec6a24756c20d41914f2caba817c0d8521.png", + "aggregators": [ + "CoinMarketCap", + "1inch", + "LiFi", + "Socket", + "Rubic", + "Rango", + "Sonarwatch", + "SushiSwap" + ], + "occurrences": 8 + }, + "0xf16e81dce15b08f326220742020379b855b87df9": { + "address": "0xf16e81dce15b08f326220742020379b855b87df9", + "symbol": "ICE", + "decimals": 18, + "name": "IceToken", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xf16e81dce15b08f326220742020379b855b87df9.png", + "aggregators": [ + "CoinMarketCap", + "1inch", + "LiFi", + "Socket", + "Rubic", + "Squid", + "Sonarwatch", + "SushiSwap" + ], + "occurrences": 8 + }, + "0x64bc2ca1be492be7185faa2c8835d9b824c8a194": { + "address": "0x64bc2ca1be492be7185faa2c8835d9b824c8a194", + "symbol": "BIGTIME", + "decimals": 18, + "name": "Big Time", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x64bc2ca1be492be7185faa2c8835d9b824c8a194.png", + "aggregators": [ + "CoinMarketCap", + "LiFi", + "Socket", + "Rubic", + "Squid", + "Rango", + "Sonarwatch" + ], + "occurrences": 7 + }, + "0x92d6c1e31e14520e676a687f0a93788b716beff5": { + "address": "0x92d6c1e31e14520e676a687f0a93788b716beff5", + "symbol": "DYDX", + "decimals": 18, + "name": "dYdX", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x92d6c1e31e14520e676a687f0a93788b716beff5.png", + "aggregators": [ + "Metamask", + "LiFi", + "Rubic", + "Squid", + "Sonarwatch", + "SushiSwap", + "Bancor" + ], + "occurrences": 7 + }, + "0x6fb3e0a217407efff7ca062d46c26e5d60a14d69": { + "address": "0x6fb3e0a217407efff7ca062d46c26e5d60a14d69", + "symbol": "IOTX", + "decimals": 18, + "name": "IoTeX", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x6fb3e0a217407efff7ca062d46c26e5d60a14d69.png", + "aggregators": [ + "Metamask", + "1inch", + "LiFi", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 7 + }, + "0x7420b4b9a0110cdc71fb720908340c03f9bc03ec": { + "address": "0x7420b4b9a0110cdc71fb720908340c03f9bc03ec", + "symbol": "JASMY", + "decimals": 18, + "name": "JasmyCoin", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x7420b4b9a0110cdc71fb720908340c03f9bc03ec.png", + "aggregators": [ + "Metamask", + "1inch", + "LiFi", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 7 + }, + "0x4cc19356f2d37338b9802aa8e8fc58b0373296e7": { + "address": "0x4cc19356f2d37338b9802aa8e8fc58b0373296e7", + "symbol": "KEY", + "decimals": 18, + "name": "Selfkey", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x4cc19356f2d37338b9802aa8e8fc58b0373296e7.png", + "aggregators": [ + "Metamask", + "LiFi", + "Socket", + "Rubic", + "Rango", + "Sonarwatch", + "Bancor" + ], + "occurrences": 7 + }, + "0x08d967bb0134f2d07f7cfb6e246680c53927dd30": { + "address": "0x08d967bb0134f2d07f7cfb6e246680c53927dd30", + "symbol": "MATH", + "decimals": 18, + "name": "MATH Token", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x08d967bb0134f2d07f7cfb6e246680c53927dd30.png", + "aggregators": [ + "Metamask", + "1inch", + "LiFi", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 7 + }, + "0x9e46a38f5daabe8683e10793b06749eef7d733d1": { + "address": "0x9e46a38f5daabe8683e10793b06749eef7d733d1", + "symbol": "NCT", + "decimals": 18, + "name": "PolySwarm Nectar", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x9e46a38f5daabe8683e10793b06749eef7d733d1.png", + "aggregators": [ + "Metamask", + "LiFi", + "Socket", + "Rubic", + "Rango", + "Sonarwatch", + "Bancor" + ], + "occurrences": 7 + }, + "0x4575f41308ec1483f3d399aa9a2826d74da13deb": { + "address": "0x4575f41308ec1483f3d399aa9a2826d74da13deb", + "symbol": "OXT", + "decimals": 18, + "name": "Orchid", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x4575f41308ec1483f3d399aa9a2826d74da13deb.png", + "aggregators": [ + "Metamask", + "LiFi", + "TrustWallet", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 7 + }, + "0x362bc847a3a9637d3af6624eec853618a43ed7d2": { + "address": "0x362bc847a3a9637d3af6624eec853618a43ed7d2", + "symbol": "PRQ", + "decimals": 18, + "name": "PARSIQ", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x362bc847a3a9637d3af6624eec853618a43ed7d2.png", + "aggregators": [ + "Metamask", + "LiFi", + "TrustWallet", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 7 + }, + "0x31c8eacbffdd875c74b94b077895bd78cf1e64a3": { + "address": "0x31c8eacbffdd875c74b94b077895bd78cf1e64a3", + "symbol": "RAD", + "decimals": 18, + "name": "Radworks", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x31c8eacbffdd875c74b94b077895bd78cf1e64a3.png", + "aggregators": [ + "OpenSwap", + "1inch", + "LiFi", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 7 + }, + "0xca14007eff0db1f8135f4c25b34de49ab0d42766": { + "address": "0xca14007eff0db1f8135f4c25b34de49ab0d42766", + "symbol": "STRK", + "decimals": 18, + "name": "StarkNet Token", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xca14007eff0db1f8135f4c25b34de49ab0d42766.png", + "aggregators": [ + "CoinMarketCap", + "1inch", + "Socket", + "Rubic", + "Rango", + "Sonarwatch", + "SushiSwap" + ], + "occurrences": 7 + }, + "0xf293d23bf2cdc05411ca0eddd588eb1977e8dcd4": { + "address": "0xf293d23bf2cdc05411ca0eddd588eb1977e8dcd4", + "symbol": "SYLO", + "decimals": 18, + "name": "Sylo", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xf293d23bf2cdc05411ca0eddd588eb1977e8dcd4.png", + "aggregators": [ + "Metamask", + "1inch", + "Socket", + "Rubic", + "Squid", + "Rango", + "Sonarwatch" + ], + "occurrences": 7 + }, + "0x030ba81f1c18d280636f32af80b9aad02cf0854e": { + "address": "0x030ba81f1c18d280636f32af80b9aad02cf0854e", + "symbol": "AWETH", + "decimals": 18, + "name": "Aave WETH", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x030ba81f1c18d280636f32af80b9aad02cf0854e.png", + "aggregators": [ + "Metamask", + "1inch", + "LiFi", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 7 + }, + "0x5165d24277cd063f5ac44efd447b27025e888f37": { + "address": "0x5165d24277cd063f5ac44efd447b27025e888f37", + "symbol": "AYFI", + "decimals": 18, + "name": "Aave YFI", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x5165d24277cd063f5ac44efd447b27025e888f37.png", + "aggregators": [ + "Metamask", + "1inch", + "LiFi", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 7 + }, + "0xdf7ff54aacacbff42dfe29dd6144a69b629f8c9e": { + "address": "0xdf7ff54aacacbff42dfe29dd6144a69b629f8c9e", + "symbol": "AZRX", + "decimals": 18, + "name": "Aave ZRX", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xdf7ff54aacacbff42dfe29dd6144a69b629f8c9e.png", + "aggregators": [ + "Metamask", + "1inch", + "LiFi", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 7 + }, + "0xb9d7cb55f463405cdfbe4e90a6d2df01c2b92bf1": { + "address": "0xb9d7cb55f463405cdfbe4e90a6d2df01c2b92bf1", + "symbol": "AUNI", + "decimals": 18, + "name": "Aave UNI", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xb9d7cb55f463405cdfbe4e90a6d2df01c2b92bf1.png", + "aggregators": [ + "Metamask", + "1inch", + "LiFi", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 7 + }, + "0xffc97d72e13e01096502cb8eb52dee56f74dad7b": { + "address": "0xffc97d72e13e01096502cb8eb52dee56f74dad7b", + "symbol": "AAAVE", + "decimals": 18, + "name": "Aave AAVE", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xffc97d72e13e01096502cb8eb52dee56f74dad7b.png", + "aggregators": [ + "Metamask", + "1inch", + "LiFi", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 7 + }, + "0x05ec93c0365baaeabf7aeffb0972ea7ecdd39cf1": { + "address": "0x05ec93c0365baaeabf7aeffb0972ea7ecdd39cf1", + "symbol": "ABAT", + "decimals": 18, + "name": "Aave BAT", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x05ec93c0365baaeabf7aeffb0972ea7ecdd39cf1.png", + "aggregators": [ + "Metamask", + "1inch", + "LiFi", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 7 + }, + "0xa361718326c15715591c299427c62086f69923d9": { + "address": "0xa361718326c15715591c299427c62086f69923d9", + "symbol": "ABUSD", + "decimals": 18, + "name": "Aave BUSD", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xa361718326c15715591c299427c62086f69923d9.png", + "aggregators": [ + "Metamask", + "1inch", + "LiFi", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 7 + }, + "0x028171bca77440897b824ca71d1c56cac55b68a3": { + "address": "0x028171bca77440897b824ca71d1c56cac55b68a3", + "symbol": "ADAI", + "decimals": 18, + "name": "Aave DAI", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x028171bca77440897b824ca71d1c56cac55b68a3.png", + "aggregators": [ + "Metamask", + "1inch", + "LiFi", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 7 + }, + "0x39c6b3e42d6a679d7d776778fe880bc9487c2eda": { + "address": "0x39c6b3e42d6a679d7d776778fe880bc9487c2eda", + "symbol": "AKNC", + "decimals": 18, + "name": "Aave KNC", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x39c6b3e42d6a679d7d776778fe880bc9487c2eda.png", + "aggregators": [ + "Metamask", + "1inch", + "LiFi", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 7 + }, + "0xa685a61171bb30d4072b338c80cb7b2c865c873e": { + "address": "0xa685a61171bb30d4072b338c80cb7b2c865c873e", + "symbol": "AMANA", + "decimals": 18, + "name": "Aave MANA", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xa685a61171bb30d4072b338c80cb7b2c865c873e.png", + "aggregators": [ + "Metamask", + "1inch", + "LiFi", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 7 + }, + "0xc713e5e149d5d0715dcd1c156a020976e7e56b88": { + "address": "0xc713e5e149d5d0715dcd1c156a020976e7e56b88", + "symbol": "AMKR", + "decimals": 18, + "name": "Aave MKR", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xc713e5e149d5d0715dcd1c156a020976e7e56b88.png", + "aggregators": [ + "Metamask", + "1inch", + "LiFi", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 7 + }, + "0xcc12abe4ff81c9378d670de1b57f8e0dd228d77a": { + "address": "0xcc12abe4ff81c9378d670de1b57f8e0dd228d77a", + "symbol": "AREN", + "decimals": 18, + "name": "Aave REN", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xcc12abe4ff81c9378d670de1b57f8e0dd228d77a.png", + "aggregators": [ + "Metamask", + "1inch", + "LiFi", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 7 + }, + "0x35f6b052c598d933d69a4eec4d04c73a191fe6c2": { + "address": "0x35f6b052c598d933d69a4eec4d04c73a191fe6c2", + "symbol": "ASNX", + "decimals": 18, + "name": "Aave SNX", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x35f6b052c598d933d69a4eec4d04c73a191fe6c2.png", + "aggregators": [ + "Metamask", + "1inch", + "LiFi", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 7 + }, + "0x6c5024cd4f8a59110119c56f8933403a539555eb": { + "address": "0x6c5024cd4f8a59110119c56f8933403a539555eb", + "symbol": "ASUSD", + "decimals": 18, + "name": "Aave SUSD", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x6c5024cd4f8a59110119c56f8933403a539555eb.png", + "aggregators": [ + "Metamask", + "1inch", + "LiFi", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 7 + }, + "0x101cc05f4a51c0319f570d5e146a8c625198e636": { + "address": "0x101cc05f4a51c0319f570d5e146a8c625198e636", + "symbol": "ATUSD", + "decimals": 18, + "name": "Aave TUSD", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x101cc05f4a51c0319f570d5e146a8c625198e636.png", + "aggregators": [ + "Metamask", + "1inch", + "LiFi", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 7 + }, + "0x0e29e5abbb5fd88e28b2d355774e73bd47de3bcd": { + "address": "0x0e29e5abbb5fd88e28b2d355774e73bd47de3bcd", + "symbol": "HAKKA", + "decimals": 18, + "name": "Hakka Finance", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x0e29e5abbb5fd88e28b2d355774e73bd47de3bcd.png", + "aggregators": [ + "CoinMarketCap", + "1inch", + "LiFi", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 7 + }, + "0xc12d099be31567add4e4e4d0d45691c3f58f5663": { + "address": "0xc12d099be31567add4e4e4d0d45691c3f58f5663", + "symbol": "AUC", + "decimals": 18, + "name": "Auctus", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xc12d099be31567add4e4e4d0d45691c3f58f5663.png", + "aggregators": [ + "Metamask", + "LiFi", + "Socket", + "Rubic", + "Rango", + "Sonarwatch", + "Bancor" + ], + "occurrences": 7 + }, + "0x5d3a536e4d6dbd6114cc1ead35777bab948e3643": { + "address": "0x5d3a536e4d6dbd6114cc1ead35777bab948e3643", + "symbol": "CDAI", + "decimals": 8, + "name": "Compound Dai", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x5d3a536e4d6dbd6114cc1ead35777bab948e3643.png", + "aggregators": [ + "Metamask", + "1inch", + "LiFi", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 7 + }, + "0x20945ca1df56d237fd40036d47e866c7dccd2114": { + "address": "0x20945ca1df56d237fd40036d47e866c7dccd2114", + "symbol": "NSURE", + "decimals": 18, + "name": "Nsure Network", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x20945ca1df56d237fd40036d47e866c7dccd2114.png", + "aggregators": [ + "CoinMarketCap", + "1inch", + "LiFi", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 7 + }, + "0x28d38df637db75533bd3f71426f3410a82041544": { + "address": "0x28d38df637db75533bd3f71426f3410a82041544", + "symbol": "PROMPT", + "decimals": 18, + "name": "Wayfinder", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x28d38df637db75533bd3f71426f3410a82041544.png", + "aggregators": [ + "CoinMarketCap", + "1inch", + "LiFi", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 7 + }, + "0xeca82185adce47f39c684352b0439f030f860318": { + "address": "0xeca82185adce47f39c684352b0439f030f860318", + "symbol": "PERL", + "decimals": 18, + "name": "Perlin", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xeca82185adce47f39c684352b0439f030f860318.png", + "aggregators": [ + "Metamask", + "1inch", + "LiFi", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 7 + }, + "0xbdf43ecadc5cef51b7d1772f722e40596bc1788b": { + "address": "0xbdf43ecadc5cef51b7d1772f722e40596bc1788b", + "symbol": "SEI", + "decimals": 18, + "name": "LayerZero Bridged Sei", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xbdf43ecadc5cef51b7d1772f722e40596bc1788b.png", + "aggregators": [ + "CoinGecko", + "1inch", + "LiFi", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 7 + }, + "0x61dbbbb552dc893ab3aad09f289f811e67cef285": { + "address": "0x61dbbbb552dc893ab3aad09f289f811e67cef285", + "symbol": "SKATE", + "decimals": 18, + "name": "Skate", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x61dbbbb552dc893ab3aad09f289f811e67cef285.png", + "aggregators": [ + "CoinMarketCap", + "1inch", + "LiFi", + "Socket", + "Rubic", + "Squid", + "Rango" + ], + "occurrences": 7 + }, + "0xdf2c7238198ad8b389666574f2d8bc411a4b7428": { + "address": "0xdf2c7238198ad8b389666574f2d8bc411a4b7428", + "symbol": "MFT", + "decimals": 18, + "name": "Mainframe Token", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xdf2c7238198ad8b389666574f2d8bc411a4b7428.png", + "aggregators": [ + "CoinMarketCap", + "LiFi", + "Socket", + "Rubic", + "Rango", + "Sonarwatch", + "Bancor" + ], + "occurrences": 7 + }, + "0x7a58c0be72be218b41c608b7fe7c5bb630736c71": { + "address": "0x7a58c0be72be218b41c608b7fe7c5bb630736c71", + "symbol": "PEOPLE", + "decimals": 18, + "name": "ConstitutionDAO", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x7a58c0be72be218b41c608b7fe7c5bb630736c71.png", + "aggregators": [ + "Metamask", + "LiFi", + "Socket", + "Rubic", + "Squid", + "Rango", + "Sonarwatch" + ], + "occurrences": 7 + }, + "0x4274cd7277c7bb0806bd5fe84b9adae466a8da0a": { + "address": "0x4274cd7277c7bb0806bd5fe84b9adae466a8da0a", + "symbol": "YUSD", + "decimals": 18, + "name": "Aegis YUSD", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x4274cd7277c7bb0806bd5fe84b9adae466a8da0a.png", + "aggregators": [ + "CoinMarketCap", + "1inch", + "LiFi", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 7 + }, + "0x075f23b9cdfce2cc0ca466f4ee6cb4bd29d83bef": { + "address": "0x075f23b9cdfce2cc0ca466f4ee6cb4bd29d83bef", + "symbol": "PUNDIAI", + "decimals": 18, + "name": "Pundi AI", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x075f23b9cdfce2cc0ca466f4ee6cb4bd29d83bef.png", + "aggregators": [ + "CoinMarketCap", + "LiFi", + "Socket", + "Rubic", + "Squid", + "Rango", + "Sonarwatch" + ], + "occurrences": 7 + }, + "0x0000000000c5dc95539589fbd24be07c6c14eca4": { + "address": "0x0000000000c5dc95539589fbd24be07c6c14eca4", + "symbol": "CULT", + "decimals": 18, + "name": "Milady Cult Coin", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x0000000000c5dc95539589fbd24be07c6c14eca4.png", + "aggregators": [ + "CoinMarketCap", + "1inch", + "Socket", + "Rubic", + "Squid", + "Rango", + "Sonarwatch" + ], + "occurrences": 7 + }, + "0x6710c63432a2de02954fc0f851db07146a6c0312": { + "address": "0x6710c63432a2de02954fc0f851db07146a6c0312", + "symbol": "MFG", + "decimals": 18, + "name": "MFG", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x6710c63432a2de02954fc0f851db07146a6c0312.png", + "aggregators": [ + "Metamask", + "LiFi", + "Socket", + "Rubic", + "Rango", + "Sonarwatch", + "Bancor" + ], + "occurrences": 7 + }, + "0x72f020f8f3e8fd9382705723cd26380f8d0c66bb": { + "address": "0x72f020f8f3e8fd9382705723cd26380f8d0c66bb", + "symbol": "PLOT", + "decimals": 18, + "name": "PLOT", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x72f020f8f3e8fd9382705723cd26380f8d0c66bb.png", + "aggregators": [ + "Metamask", + "1inch", + "LiFi", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 7 + }, + "0x31429d1856ad1377a8a0079410b297e1a9e214c2": { + "address": "0x31429d1856ad1377a8a0079410b297e1a9e214c2", + "symbol": "ANGLE", + "decimals": 18, + "name": "ANGLE", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x31429d1856ad1377a8a0079410b297e1a9e214c2.png", + "aggregators": [ + "Metamask", + "LiFi", + "Socket", + "Rubic", + "Rango", + "Sonarwatch", + "SushiSwap" + ], + "occurrences": 7 + }, + "0x8eef5a82e6aa222a60f009ac18c24ee12dbf4b41": { + "address": "0x8eef5a82e6aa222a60f009ac18c24ee12dbf4b41", + "symbol": "TXL", + "decimals": 18, + "name": "Tixl", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x8eef5a82e6aa222a60f009ac18c24ee12dbf4b41.png", + "aggregators": [ + "Metamask", + "LiFi", + "Socket", + "Rubic", + "Rango", + "Sonarwatch", + "SushiSwap" + ], + "occurrences": 7 + }, + "0x888888435fde8e7d4c54cab67f206e4199454c60": { + "address": "0x888888435fde8e7d4c54cab67f206e4199454c60", + "symbol": "DFX", + "decimals": 18, + "name": "DFX", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x888888435fde8e7d4c54cab67f206e4199454c60.png", + "aggregators": [ + "CoinMarketCap", + "LiFi", + "Socket", + "Rubic", + "Rango", + "Sonarwatch", + "SushiSwap" + ], + "occurrences": 7 + }, + "0x798d1be841a82a273720ce31c822c61a67a601c3": { + "address": "0x798d1be841a82a273720ce31c822c61a67a601c3", + "symbol": "DIGG", + "decimals": 9, + "name": "Digg", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x798d1be841a82a273720ce31c822c61a67a601c3.png", + "aggregators": [ + "CoinMarketCap", + "LiFi", + "Socket", + "Rubic", + "Rango", + "Sonarwatch", + "SushiSwap" + ], + "occurrences": 7 + }, + "0xb8c77482e45f1f44de1745f52c74426c631bdd52": { + "address": "0xb8c77482e45f1f44de1745f52c74426c631bdd52", + "symbol": "BNB", + "decimals": 18, + "name": "Binance Coin", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xb8c77482e45f1f44de1745f52c74426c631bdd52.png", + "aggregators": [ + "Metamask", + "1inch", + "LiFi", + "Socket", + "Rubic", + "Sonarwatch", + "Bancor" + ], + "occurrences": 7 + }, + "0x3e9bc21c9b189c09df3ef1b824798658d5011937": { + "address": "0x3e9bc21c9b189c09df3ef1b824798658d5011937", + "symbol": "LINA", + "decimals": 18, + "name": "Linear Token", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x3e9bc21c9b189c09df3ef1b824798658d5011937.png", + "aggregators": [ + "CoinMarketCap", + "1inch", + "Socket", + "Rubic", + "Rango", + "Sonarwatch", + "SushiSwap" + ], + "occurrences": 7 + }, + "0x544c42fbb96b39b21df61cf322b5edc285ee7429": { + "address": "0x544c42fbb96b39b21df61cf322b5edc285ee7429", + "symbol": "INSUR", + "decimals": 18, + "name": "InsurAce", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x544c42fbb96b39b21df61cf322b5edc285ee7429.png", + "aggregators": [ + "Metamask", + "LiFi", + "Socket", + "Rubic", + "Rango", + "Sonarwatch", + "SushiSwap" + ], + "occurrences": 7 + }, + "0xfe3e6a25e6b192a42a44ecddcd13796471735acf": { + "address": "0xfe3e6a25e6b192a42a44ecddcd13796471735acf", + "symbol": "REEF", + "decimals": 18, + "name": "Reef Finance", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xfe3e6a25e6b192a42a44ecddcd13796471735acf.png", + "aggregators": [ + "Metamask", + "1inch", + "TrustWallet", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 7 + }, + "0xa9b1eb5908cfc3cdf91f9b8b3a74108598009096": { + "address": "0xa9b1eb5908cfc3cdf91f9b8b3a74108598009096", + "symbol": "AUCTION", + "decimals": 18, + "name": "Bounce Token", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xa9b1eb5908cfc3cdf91f9b8b3a74108598009096.png", + "aggregators": [ + "OpenSwap", + "Socket", + "Rubic", + "Rango", + "Sonarwatch", + "SushiSwap" + ], + "occurrences": 6 + }, + "0x33349b282065b0284d756f0577fb39c158f935e6": { + "address": "0x33349b282065b0284d756f0577fb39c158f935e6", + "symbol": "MPL", + "decimals": 18, + "name": "Maple Finance", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x33349b282065b0284d756f0577fb39c158f935e6.png", + "aggregators": [ + "Metamask", + "LiFi", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 6 + }, + "0x0763fdccf1ae541a5961815c0872a8c5bc6de4d7": { + "address": "0x0763fdccf1ae541a5961815c0872a8c5bc6de4d7", + "symbol": "SUKU", + "decimals": 18, + "name": "SUKU", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x0763fdccf1ae541a5961815c0872a8c5bc6de4d7.png", + "aggregators": [ + "OpenSwap", + "LiFi", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 6 + }, + "0xe1ba0fb44ccb0d11b80f92f4f8ed94ca3ff51d00": { + "address": "0xe1ba0fb44ccb0d11b80f92f4f8ed94ca3ff51d00", + "symbol": "ABAT", + "decimals": 18, + "name": "Aave BAT v1", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xe1ba0fb44ccb0d11b80f92f4f8ed94ca3ff51d00.png", + "aggregators": [ + "CoinMarketCap", + "LiFi", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 6 + }, + "0x6fce4a401b6b80ace52baaefe4421bd188e76f6f": { + "address": "0x6fce4a401b6b80ace52baaefe4421bd188e76f6f", + "symbol": "AMANA", + "decimals": 18, + "name": "Aave MANA v1", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x6fce4a401b6b80ace52baaefe4421bd188e76f6f.png", + "aggregators": [ + "CoinMarketCap", + "LiFi", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 6 + }, + "0x9ff58f4ffb29fa2266ab25e75e2a8b3503311656": { + "address": "0x9ff58f4ffb29fa2266ab25e75e2a8b3503311656", + "symbol": "AWBTC", + "decimals": 8, + "name": "Aave WBTC", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x9ff58f4ffb29fa2266ab25e75e2a8b3503311656.png", + "aggregators": [ + "Metamask", + "1inch", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 6 + }, + "0xa06bc25b5805d5f8d82847d191cb4af5a3e873e0": { + "address": "0xa06bc25b5805d5f8d82847d191cb4af5a3e873e0", + "symbol": "ALINK", + "decimals": 18, + "name": "Aave LINK", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xa06bc25b5805d5f8d82847d191cb4af5a3e873e0.png", + "aggregators": [ + "Metamask", + "1inch", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 6 + }, + "0xb8baa0e4287890a5f79863ab62b7f175cecbd433": { + "address": "0xb8baa0e4287890a5f79863ab62b7f175cecbd433", + "symbol": "SWRV", + "decimals": 18, + "name": "Swerve DAO Token", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xb8baa0e4287890a5f79863ab62b7f175cecbd433.png", + "aggregators": [ + "Metamask", + "Socket", + "Rubic", + "Rango", + "Sonarwatch", + "Bancor" + ], + "occurrences": 6 + }, + "0x6c8c6b02e7b2be14d4fa6022dfd6d75921d90e4e": { + "address": "0x6c8c6b02e7b2be14d4fa6022dfd6d75921d90e4e", + "symbol": "CBAT", + "decimals": 8, + "name": "Compound Basic Attention Token", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x6c8c6b02e7b2be14d4fa6022dfd6d75921d90e4e.png", + "aggregators": [ + "Metamask", + "LiFi", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 6 + }, + "0xb3319f5d18bc0d84dd1b4825dcde5d5f7266d407": { + "address": "0xb3319f5d18bc0d84dd1b4825dcde5d5f7266d407", + "symbol": "CZRX", + "decimals": 8, + "name": "Compound 0x", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xb3319f5d18bc0d84dd1b4825dcde5d5f7266d407.png", + "aggregators": [ + "Metamask", + "LiFi", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 6 + }, + "0xca1207647ff814039530d7d35df0e1dd2e91fa84": { + "address": "0xca1207647ff814039530d7d35df0e1dd2e91fa84", + "symbol": "DHT", + "decimals": 18, + "name": "dHEDGE DAO Token", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xca1207647ff814039530d7d35df0e1dd2e91fa84.png", + "aggregators": [ + "Metamask", + "LiFi", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 6 + }, + "0x7240ac91f01233baaf8b064248e80feaa5912ba3": { + "address": "0x7240ac91f01233baaf8b064248e80feaa5912ba3", + "symbol": "OCTO", + "decimals": 18, + "name": "OctoFi", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x7240ac91f01233baaf8b064248e80feaa5912ba3.png", + "aggregators": [ + "Metamask", + "LiFi", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 6 + }, + "0xcb84d72e61e383767c4dfeb2d8ff7f4fb89abc6e": { + "address": "0xcb84d72e61e383767c4dfeb2d8ff7f4fb89abc6e", + "symbol": "VEGA", + "decimals": 18, + "name": "Vega", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xcb84d72e61e383767c4dfeb2d8ff7f4fb89abc6e.png", + "aggregators": [ + "CoinMarketCap", + "Socket", + "Rubic", + "Rango", + "Sonarwatch", + "SushiSwap" + ], + "occurrences": 6 + }, + "0x8642a849d0dcb7a15a974794668adcfbe4794b56": { + "address": "0x8642a849d0dcb7a15a974794668adcfbe4794b56", + "symbol": "PROS", + "decimals": 18, + "name": "Prosper", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x8642a849d0dcb7a15a974794668adcfbe4794b56.png", + "aggregators": [ + "Metamask", + "Socket", + "Rubic", + "Rango", + "Sonarwatch", + "SushiSwap" + ], + "occurrences": 6 + }, + "0x4946fcea7c692606e8908002e55a582af44ac121": { + "address": "0x4946fcea7c692606e8908002e55a582af44ac121", + "symbol": "FOAM", + "decimals": 18, + "name": "FOAM", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x4946fcea7c692606e8908002e55a582af44ac121.png", + "aggregators": [ + "Metamask", + "LiFi", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 6 + }, + "0x7f280dac515121dcda3eac69eb4c13a52392cace": { + "address": "0x7f280dac515121dcda3eac69eb4c13a52392cace", + "symbol": "FNC", + "decimals": 18, + "name": "Fancy Games", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x7f280dac515121dcda3eac69eb4c13a52392cace.png", + "aggregators": [ + "CoinMarketCap", + "LiFi", + "Socket", + "Rubic", + "Rango", + "SushiSwap" + ], + "occurrences": 6 + }, + "0xc11b1268c1a384e55c48c2391d8d480264a3a7f4": { + "address": "0xc11b1268c1a384e55c48c2391d8d480264a3a7f4", + "symbol": "CWBTC", + "decimals": 8, + "name": "Compound Wrapped BTC", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xc11b1268c1a384e55c48c2391d8d480264a3a7f4.png", + "aggregators": ["Metamask", "Socket", "Rubic", "Rango"], + "occurrences": 4 + }, + "0x50d1c9771902476076ecfc8b2a83ad6b9355a4c9": { + "address": "0x50d1c9771902476076ecfc8b2a83ad6b9355a4c9", + "symbol": "FTXTOKEN", + "decimals": 18, + "name": "FTT", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x50d1c9771902476076ecfc8b2a83ad6b9355a4c9.png", + "aggregators": [ + "CoinMarketCap", + "1inch", + "LiFi", + "Socket", + "Rubic", + "Squid", + "Rango", + "Sonarwatch", + "SushiSwap", + "Bancor" + ], + "occurrences": 10 + }, + "0x9e32b13ce7f2e80a01932b42553652e053d6ed8e": { + "address": "0x9e32b13ce7f2e80a01932b42553652e053d6ed8e", + "symbol": "METIS", + "decimals": 18, + "name": "MetisDAO", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x9e32b13ce7f2e80a01932b42553652e053d6ed8e.png", + "aggregators": [ + "CoinMarketCap", + "1inch", + "LiFi", + "TrustWallet", + "Socket", + "Rubic", + "Squid", + "Rango", + "Sonarwatch" + ], + "occurrences": 9 + }, + "0xaf5191b0de278c7286d6c7cc6ab6bb8a73ba2cd6": { + "address": "0xaf5191b0de278c7286d6c7cc6ab6bb8a73ba2cd6", + "symbol": "STG", + "decimals": 18, + "name": "StargateToken", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xaf5191b0de278c7286d6c7cc6ab6bb8a73ba2cd6.png", + "aggregators": [ + "CoinMarketCap", + "1inch", + "LiFi", + "TrustWallet", + "Socket", + "Rubic", + "Rango", + "Sonarwatch", + "SushiSwap" + ], + "occurrences": 9 + }, + "0x18084fba666a33d37592fa2633fd49a74dd93a88": { + "address": "0x18084fba666a33d37592fa2633fd49a74dd93a88", + "symbol": "TBTC", + "decimals": 18, + "name": "tBTC", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x18084fba666a33d37592fa2633fd49a74dd93a88.png", + "aggregators": [ + "CoinMarketCap", + "1inch", + "LiFi", + "Socket", + "Rubic", + "Squid", + "Rango", + "Sonarwatch", + "SushiSwap" + ], + "occurrences": 9 + }, + "0x6985884c4392d348587b19cb9eaaf157f13271cd": { + "address": "0x6985884c4392d348587b19cb9eaaf157f13271cd", + "symbol": "ZRO", + "decimals": 18, + "name": "LayerZero", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x6985884c4392d348587b19cb9eaaf157f13271cd.png", + "aggregators": [ + "CoinMarketCap", + "1inch", + "LiFi", + "Socket", + "Rubic", + "Squid", + "Rango", + "Sonarwatch", + "SushiSwap" + ], + "occurrences": 9 + }, + "0x5228a22e72ccc52d415ecfd199f99d0665e7733b": { + "address": "0x5228a22e72ccc52d415ecfd199f99d0665e7733b", + "symbol": "PBTC", + "decimals": 18, + "name": "pTokens BTC", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x5228a22e72ccc52d415ecfd199f99d0665e7733b.png", + "aggregators": [ + "CoinGecko", + "1inch", + "LiFi", + "TrustWallet", + "Socket", + "Rubic", + "Rango", + "Sonarwatch", + "Bancor" + ], + "occurrences": 9 + }, + "0x24a6a37576377f63f194caa5f518a60f45b42921": { + "address": "0x24a6a37576377f63f194caa5f518a60f45b42921", + "symbol": "BANK", + "decimals": 18, + "name": "Float Bank", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x24a6a37576377f63f194caa5f518a60f45b42921.png", + "aggregators": [ + "CoinGecko", + "1inch", + "LiFi", + "Socket", + "Rubic", + "Squid", + "Rango", + "Sonarwatch", + "SushiSwap" + ], + "occurrences": 9 + }, + "0x7de91b204c1c737bcee6f000aaa6569cf7061cb7": { + "address": "0x7de91b204c1c737bcee6f000aaa6569cf7061cb7", + "symbol": "XRT", + "decimals": 9, + "name": "Robonomics", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x7de91b204c1c737bcee6f000aaa6569cf7061cb7.png", + "aggregators": [ + "CoinMarketCap", + "1inch", + "LiFi", + "TrustWallet", + "Socket", + "Rubic", + "Rango", + "Sonarwatch", + "Bancor" + ], + "occurrences": 9 + }, + "0xc719d010b63e5bbf2c0551872cd5316ed26acd83": { + "address": "0xc719d010b63e5bbf2c0551872cd5316ed26acd83", + "symbol": "DIP", + "decimals": 18, + "name": "Decentralized Insurance Protocol", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xc719d010b63e5bbf2c0551872cd5316ed26acd83.png", + "aggregators": [ + "CoinMarketCap", + "1inch", + "LiFi", + "TrustWallet", + "Socket", + "Rubic", + "Rango", + "Sonarwatch", + "Bancor" + ], + "occurrences": 9 + }, + "0x40d16fc0246ad3160ccc09b8d0d3a2cd28ae6c2f": { + "address": "0x40d16fc0246ad3160ccc09b8d0d3a2cd28ae6c2f", + "symbol": "GHO", + "decimals": 18, + "name": "GHO Token", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x40d16fc0246ad3160ccc09b8d0d3a2cd28ae6c2f.png", + "aggregators": [ + "Metamask", + "1inch", + "LiFi", + "Socket", + "Rubic", + "Squid", + "Rango", + "Sonarwatch", + "SushiSwap" + ], + "occurrences": 9 + }, + "0x07150e919b4de5fd6a63de1f9384828396f25fdc": { + "address": "0x07150e919b4de5fd6a63de1f9384828396f25fdc", + "symbol": "BASE", + "decimals": 9, + "name": "Base Protocol", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x07150e919b4de5fd6a63de1f9384828396f25fdc.png", + "aggregators": [ + "CoinMarketCap", + "1inch", + "LiFi", + "TrustWallet", + "Socket", + "Rubic", + "Rango", + "Sonarwatch", + "SushiSwap" + ], + "occurrences": 9 + }, + "0x1c9922314ed1415c95b9fd453c3818fd41867d0b": { + "address": "0x1c9922314ed1415c95b9fd453c3818fd41867d0b", + "symbol": "TOWER", + "decimals": 18, + "name": "TOWER", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x1c9922314ed1415c95b9fd453c3818fd41867d0b.png", + "aggregators": [ + "CoinMarketCap", + "1inch", + "LiFi", + "TrustWallet", + "Socket", + "Rubic", + "Rango", + "Sonarwatch", + "SushiSwap" + ], + "occurrences": 9 + }, + "0x3b484b82567a09e2588a13d54d032153f0c0aee0": { + "address": "0x3b484b82567a09e2588a13d54d032153f0c0aee0", + "symbol": "SOS", + "decimals": 18, + "name": "OpenDAO", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x3b484b82567a09e2588a13d54d032153f0c0aee0.png", + "aggregators": [ + "CoinMarketCap", + "1inch", + "TrustWallet", + "Socket", + "Rubic", + "Squid", + "Rango", + "Sonarwatch", + "SushiSwap" + ], + "occurrences": 9 + }, + "0x956f47f50a910163d8bf957cf5846d573e7f87ca": { + "address": "0x956f47f50a910163d8bf957cf5846d573e7f87ca", + "symbol": "FEI", + "decimals": 18, + "name": "Fei USD", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x956f47f50a910163d8bf957cf5846d573e7f87ca.png", + "aggregators": [ + "CoinMarketCap", + "1inch", + "LiFi", + "TrustWallet", + "Socket", + "Rubic", + "Rango", + "Sonarwatch", + "SushiSwap" + ], + "occurrences": 9 + }, + "0x85f17cf997934a597031b2e18a9ab6ebd4b9f6a4": { + "address": "0x85f17cf997934a597031b2e18a9ab6ebd4b9f6a4", + "symbol": "NEAR", + "decimals": 24, + "name": "NEAR", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x85f17cf997934a597031b2e18a9ab6ebd4b9f6a4.png", + "aggregators": [ + "Metamask", + "1inch", + "LiFi", + "Socket", + "Rubic", + "Squid", + "Rango", + "Sonarwatch", + "SushiSwap" + ], + "occurrences": 9 + }, + "0x8f693ca8d21b157107184d29d398a8d082b38b76": { + "address": "0x8f693ca8d21b157107184d29d398a8d082b38b76", + "symbol": "DATA", + "decimals": 18, + "name": "Streamr", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x8f693ca8d21b157107184d29d398a8d082b38b76.png", + "aggregators": [ + "Metamask", + "1inch", + "LiFi", + "Socket", + "Rubic", + "Rango", + "Sonarwatch", + "SushiSwap", + "Bancor" + ], + "occurrences": 9 + }, + "0xd13c7342e1ef687c5ad21b27c2b65d772cab5c8c": { + "address": "0xd13c7342e1ef687c5ad21b27c2b65d772cab5c8c", + "symbol": "UOS", + "decimals": 4, + "name": "Ultra Token", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xd13c7342e1ef687c5ad21b27c2b65d772cab5c8c.png", + "aggregators": [ + "CoinMarketCap", + "1inch", + "LiFi", + "Socket", + "Rubic", + "Squid", + "Rango", + "Sonarwatch", + "Bancor" + ], + "occurrences": 9 + }, + "0x44108f0223a3c3028f5fe7aec7f9bb2e66bef82f": { + "address": "0x44108f0223a3c3028f5fe7aec7f9bb2e66bef82f", + "symbol": "ACX", + "decimals": 18, + "name": "Across Protocol Token", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x44108f0223a3c3028f5fe7aec7f9bb2e66bef82f.png", + "aggregators": [ + "CoinMarketCap", + "1inch", + "LiFi", + "Rubic", + "Squid", + "Rango", + "Sonarwatch", + "SushiSwap" + ], + "occurrences": 8 + }, + "0xbe0ed4138121ecfc5c0e56b40517da27e6c5226b": { + "address": "0xbe0ed4138121ecfc5c0e56b40517da27e6c5226b", + "symbol": "ATH", + "decimals": 18, + "name": "Aethir", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xbe0ed4138121ecfc5c0e56b40517da27e6c5226b.png", + "aggregators": [ + "CoinMarketCap", + "1inch", + "LiFi", + "Socket", + "Rubic", + "Squid", + "Rango", + "Sonarwatch" + ], + "occurrences": 8 + }, + "0x467719ad09025fcc6cf6f8311755809d45a5e5f3": { + "address": "0x467719ad09025fcc6cf6f8311755809d45a5e5f3", + "symbol": "AXL", + "decimals": 6, + "name": "Axelar", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x467719ad09025fcc6cf6f8311755809d45a5e5f3.png", + "aggregators": [ + "Metamask", + "1inch", + "LiFi", + "Socket", + "Rubic", + "Squid", + "Rango", + "Sonarwatch" + ], + "occurrences": 8 + }, + "0x42bbfa2e77757c645eeaad1655e0911a7553efbc": { + "address": "0x42bbfa2e77757c645eeaad1655e0911a7553efbc", + "symbol": "BOBA", + "decimals": 18, + "name": "Boba Token", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x42bbfa2e77757c645eeaad1655e0911a7553efbc.png", + "aggregators": [ + "CoinMarketCap", + "1inch", + "LiFi", + "Socket", + "Rubic", + "Rango", + "Sonarwatch", + "Bancor" + ], + "occurrences": 8 + }, + "0xae12c5930881c53715b369cec7606b70d8eb229f": { + "address": "0xae12c5930881c53715b369cec7606b70d8eb229f", + "symbol": "C98", + "decimals": 18, + "name": "Coin98", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xae12c5930881c53715b369cec7606b70d8eb229f.png", + "aggregators": [ + "CoinMarketCap", + "LiFi", + "Socket", + "Rubic", + "Squid", + "Rango", + "Sonarwatch", + "SushiSwap" + ], + "occurrences": 8 + }, + "0xcbb7c0000ab88b473b1f5afd9ef808440eed33bf": { + "address": "0xcbb7c0000ab88b473b1f5afd9ef808440eed33bf", + "symbol": "CBBTC", + "decimals": 8, + "name": "Coinbase Wrapped BTC", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xcbb7c0000ab88b473b1f5afd9ef808440eed33bf.png", + "aggregators": [ + "CoinMarketCap", + "1inch", + "LiFi", + "Socket", + "Rubic", + "Squid", + "Rango", + "Sonarwatch" + ], + "occurrences": 8 + }, + "0xfb7b4564402e5500db5bb6d63ae671302777c75a": { + "address": "0xfb7b4564402e5500db5bb6d63ae671302777c75a", + "symbol": "DEXT", + "decimals": 18, + "name": "DexTools", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xfb7b4564402e5500db5bb6d63ae671302777c75a.png", + "aggregators": [ + "CoinMarketCap", + "1inch", + "LiFi", + "Socket", + "Rubic", + "Squid", + "Rango", + "Sonarwatch" + ], + "occurrences": 8 + }, + "0x761d38e5ddf6ccf6cf7c55759d5210750b5d60f3": { + "address": "0x761d38e5ddf6ccf6cf7c55759d5210750b5d60f3", + "symbol": "ELON", + "decimals": 18, + "name": "Dogelon", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x761d38e5ddf6ccf6cf7c55759d5210750b5d60f3.png", + "aggregators": [ + "OpenSwap", + "1inch", + "TrustWallet", + "Socket", + "Rubic", + "Squid", + "Rango", + "Sonarwatch" + ], + "occurrences": 8 + }, + "0x57e114b691db790c35207b2e685d4a43181e6061": { + "address": "0x57e114b691db790c35207b2e685d4a43181e6061", + "symbol": "ENA", + "decimals": 18, + "name": "Ethena", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x57e114b691db790c35207b2e685d4a43181e6061.png", + "aggregators": [ + "CoinMarketCap", + "1inch", + "LiFi", + "Socket", + "Rubic", + "Squid", + "Rango", + "Sonarwatch" + ], + "occurrences": 8 + }, + "0xfe0c30065b384f05761f15d0cc899d4f9f9cc0eb": { + "address": "0xfe0c30065b384f05761f15d0cc899d4f9f9cc0eb", + "symbol": "ETHFI", + "decimals": 18, + "name": "Ether fi", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xfe0c30065b384f05761f15d0cc899d4f9f9cc0eb.png", + "aggregators": [ + "CoinMarketCap", + "1inch", + "LiFi", + "Socket", + "Rubic", + "Squid", + "Rango", + "Sonarwatch" + ], + "occurrences": 8 + }, + "0x455e53cbb86018ac2b8092fdcd39d8444affc3f6": { + "address": "0x455e53cbb86018ac2b8092fdcd39d8444affc3f6", + "symbol": "POL", + "decimals": 18, + "name": "Polygon Network Token", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x455e53cbb86018ac2b8092fdcd39d8444affc3f6.png", + "aggregators": [ + "Metamask", + "1inch", + "LiFi", + "Socket", + "Rubic", + "Squid", + "Rango", + "Sonarwatch" + ], + "occurrences": 8 + }, + "0x6c3ea9036406852006290770bedfcaba0e23a0e8": { + "address": "0x6c3ea9036406852006290770bedfcaba0e23a0e8", + "symbol": "PYUSD", + "decimals": 6, + "name": "PayPal USD", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x6c3ea9036406852006290770bedfcaba0e23a0e8.png", + "aggregators": [ + "Metamask", + "1inch", + "LiFi", + "Socket", + "Rubic", + "Squid", + "Rango", + "Sonarwatch" + ], + "occurrences": 8 + }, + "0x6de037ef9ad2725eb40118bb1702ebb27e4aeb24": { + "address": "0x6de037ef9ad2725eb40118bb1702ebb27e4aeb24", + "symbol": "RNDR", + "decimals": 18, + "name": "Render Token", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x6de037ef9ad2725eb40118bb1702ebb27e4aeb24.png", + "aggregators": [ + "Metamask", + "1inch", + "LiFi", + "Socket", + "Rubic", + "Squid", + "Rango", + "Sonarwatch" + ], + "occurrences": 8 + }, + "0x8e870d67f660d95d5be530380d0ec0bd388289e1": { + "address": "0x8e870d67f660d95d5be530380d0ec0bd388289e1", + "symbol": "USDP", + "decimals": 18, + "name": "Pax Dollar", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x8e870d67f660d95d5be530380d0ec0bd388289e1.png", + "aggregators": [ + "Metamask", + "1inch", + "LiFi", + "Socket", + "Rubic", + "Rango", + "Sonarwatch", + "SushiSwap" + ], + "occurrences": 8 + }, + "0x44ff8620b8ca30902395a7bd3f2407e1a091bf73": { + "address": "0x44ff8620b8ca30902395a7bd3f2407e1a091bf73", + "symbol": "VIRTUAL", + "decimals": 18, + "name": "Virtuals Protocol", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x44ff8620b8ca30902395a7bd3f2407e1a091bf73.png", + "aggregators": [ + "CoinMarketCap", + "1inch", + "LiFi", + "Socket", + "Rubic", + "Squid", + "Rango", + "Sonarwatch" + ], + "occurrences": 8 + }, + "0x62359ed7505efc61ff1d56fef82158ccaffa23d7": { + "address": "0x62359ed7505efc61ff1d56fef82158ccaffa23d7", + "symbol": "CORE", + "decimals": 18, + "name": "cVault.finance", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x62359ed7505efc61ff1d56fef82158ccaffa23d7.png", + "aggregators": [ + "CoinMarketCap", + "1inch", + "LiFi", + "TrustWallet", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 8 + }, + "0xadb2437e6f65682b85f814fbc12fec0508a7b1d0": { + "address": "0xadb2437e6f65682b85f814fbc12fec0508a7b1d0", + "symbol": "UNCX", + "decimals": 18, + "name": "UniCrypt", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xadb2437e6f65682b85f814fbc12fec0508a7b1d0.png", + "aggregators": [ + "CoinMarketCap", + "1inch", + "LiFi", + "TrustWallet", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 8 + }, + "0x62b9c7356a2dc64a1969e19c23e4f579f9810aa7": { + "address": "0x62b9c7356a2dc64a1969e19c23e4f579f9810aa7", + "symbol": "CVXCRV", + "decimals": 18, + "name": "Convex CRV", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x62b9c7356a2dc64a1969e19c23e4f579f9810aa7.png", + "aggregators": [ + "CoinMarketCap", + "1inch", + "LiFi", + "Socket", + "Rubic", + "Rango", + "Sonarwatch", + "SushiSwap" + ], + "occurrences": 8 + }, + "0xc4c2614e694cf534d407ee49f8e44d125e4681c4": { + "address": "0xc4c2614e694cf534d407ee49f8e44d125e4681c4", + "symbol": "CHAIN", + "decimals": 18, + "name": "Chain Games", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xc4c2614e694cf534d407ee49f8e44d125e4681c4.png", + "aggregators": [ + "CoinMarketCap", + "1inch", + "LiFi", + "TrustWallet", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 8 + }, + "0xbc19712feb3a26080ebf6f2f7849b417fdd792ca": { + "address": "0xbc19712feb3a26080ebf6f2f7849b417fdd792ca", + "symbol": "BORING", + "decimals": 18, + "name": "BoringDAO", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xbc19712feb3a26080ebf6f2f7849b417fdd792ca.png", + "aggregators": [ + "CoinMarketCap", + "1inch", + "LiFi", + "Socket", + "Rubic", + "Rango", + "Sonarwatch", + "Bancor" + ], + "occurrences": 8 + }, + "0x3d3d35bb9bec23b06ca00fe472b50e7a4c692c30": { + "address": "0x3d3d35bb9bec23b06ca00fe472b50e7a4c692c30", + "symbol": "VIDYA", + "decimals": 18, + "name": "Vidya", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x3d3d35bb9bec23b06ca00fe472b50e7a4c692c30.png", + "aggregators": [ + "CoinMarketCap", + "1inch", + "LiFi", + "TrustWallet", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 8 + }, + "0xbc6da0fe9ad5f3b0d58160288917aa56653660e9": { + "address": "0xbc6da0fe9ad5f3b0d58160288917aa56653660e9", + "symbol": "ALUSD", + "decimals": 18, + "name": "Alchemix USD", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xbc6da0fe9ad5f3b0d58160288917aa56653660e9.png", + "aggregators": [ + "CoinMarketCap", + "1inch", + "LiFi", + "Socket", + "Rubic", + "Rango", + "Sonarwatch", + "SushiSwap" + ], + "occurrences": 8 + }, + "0xbaac2b4491727d78d2b78815144570b9f2fe8899": { + "address": "0xbaac2b4491727d78d2b78815144570b9f2fe8899", + "symbol": "DOG", + "decimals": 18, + "name": "The Doge NFT", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xbaac2b4491727d78d2b78815144570b9f2fe8899.png", + "aggregators": [ + "CoinMarketCap", + "LiFi", + "Socket", + "Rubic", + "Squid", + "Rango", + "Sonarwatch", + "SushiSwap" + ], + "occurrences": 8 + }, + "0x990f341946a3fdb507ae7e52d17851b87168017c": { + "address": "0x990f341946a3fdb507ae7e52d17851b87168017c", + "symbol": "STRONG", + "decimals": 18, + "name": "Strong", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x990f341946a3fdb507ae7e52d17851b87168017c.png", + "aggregators": [ + "CoinMarketCap", + "1inch", + "LiFi", + "TrustWallet", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 8 + }, + "0x0ec9f76202a7061eb9b3a7d6b59d36215a7e37da": { + "address": "0x0ec9f76202a7061eb9b3a7d6b59d36215a7e37da", + "symbol": "BPT", + "decimals": 18, + "name": "BlackPool Token", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x0ec9f76202a7061eb9b3a7d6b59d36215a7e37da.png", + "aggregators": [ + "CoinMarketCap", + "LiFi", + "Socket", + "Rubic", + "Squid", + "Rango", + "Sonarwatch", + "SushiSwap" + ], + "occurrences": 8 + }, + "0xbea98c05eeae2f3bc8c3565db7551eb738c8ccab": { + "address": "0xbea98c05eeae2f3bc8c3565db7551eb738c8ccab", + "symbol": "GYSR", + "decimals": 18, + "name": "GYSR", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xbea98c05eeae2f3bc8c3565db7551eb738c8ccab.png", + "aggregators": [ + "CoinMarketCap", + "1inch", + "LiFi", + "TrustWallet", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 8 + }, + "0x865377367054516e17014ccded1e7d814edc9ce4": { + "address": "0x865377367054516e17014ccded1e7d814edc9ce4", + "symbol": "DOLA", + "decimals": 18, + "name": "DOLA USD Stablecoin", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x865377367054516e17014ccded1e7d814edc9ce4.png", + "aggregators": [ + "CoinMarketCap", + "1inch", + "LiFi", + "Socket", + "Rubic", + "Rango", + "Sonarwatch", + "SushiSwap" + ], + "occurrences": 8 + }, + "0xf939e0a03fb07f59a73314e73794be0e57ac1b4e": { + "address": "0xf939e0a03fb07f59a73314e73794be0e57ac1b4e", + "symbol": "CRVUSD", + "decimals": 18, + "name": "Curve.Fi USD Stablecoin", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xf939e0a03fb07f59a73314e73794be0e57ac1b4e.png", + "aggregators": [ + "Metamask", + "1inch", + "LiFi", + "Socket", + "Rubic", + "Squid", + "Rango", + "Sonarwatch" + ], + "occurrences": 8 + }, + "0xa393473d64d2f9f026b60b6df7859a689715d092": { + "address": "0xa393473d64d2f9f026b60b6df7859a689715d092", + "symbol": "LTX", + "decimals": 8, + "name": "Lattice Token", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xa393473d64d2f9f026b60b6df7859a689715d092.png", + "aggregators": [ + "CoinMarketCap", + "1inch", + "LiFi", + "TrustWallet", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 8 + }, + "0x72e9d9038ce484ee986fea183f8d8df93f9ada13": { + "address": "0x72e9d9038ce484ee986fea183f8d8df93f9ada13", + "symbol": "SMARTCREDIT", + "decimals": 18, + "name": "SmartCredit Token", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x72e9d9038ce484ee986fea183f8d8df93f9ada13.png", + "aggregators": [ + "CoinMarketCap", + "1inch", + "TrustWallet", + "Socket", + "Rubic", + "Rango", + "Sonarwatch", + "Bancor" + ], + "occurrences": 8 + }, + "0x674c6ad92fd080e4004b2312b45f796a192d27a0": { + "address": "0x674c6ad92fd080e4004b2312b45f796a192d27a0", + "symbol": "USDN", + "decimals": 18, + "name": "Neutrino USD", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x674c6ad92fd080e4004b2312b45f796a192d27a0.png", + "aggregators": [ + "Metamask", + "1inch", + "LiFi", + "Socket", + "Rubic", + "Rango", + "Sonarwatch", + "SushiSwap" + ], + "occurrences": 8 + }, + "0x77e06c9eccf2e797fd462a92b6d7642ef85b0a44": { + "address": "0x77e06c9eccf2e797fd462a92b6d7642ef85b0a44", + "symbol": "WTAO", + "decimals": 9, + "name": "Wrapped TAO", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x77e06c9eccf2e797fd462a92b6d7642ef85b0a44.png", + "aggregators": [ + "CoinMarketCap", + "1inch", + "LiFi", + "Socket", + "Rubic", + "Squid", + "Rango", + "Sonarwatch" + ], + "occurrences": 8 + }, + "0x2791bfd60d232150bff86b39b7146c0eaaa2ba81": { + "address": "0x2791bfd60d232150bff86b39b7146c0eaaa2ba81", + "symbol": "BIFI", + "decimals": 18, + "name": "BiFi", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x2791bfd60d232150bff86b39b7146c0eaaa2ba81.png", + "aggregators": [ + "CoinMarketCap", + "LiFi", + "Socket", + "Rubic", + "Squid", + "Rango", + "Sonarwatch", + "SushiSwap" + ], + "occurrences": 8 + }, + "0xd478161c952357f05f0292b56012cd8457f1cfbf": { + "address": "0xd478161c952357f05f0292b56012cd8457f1cfbf", + "symbol": "POLK", + "decimals": 18, + "name": "Polkamarkets", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xd478161c952357f05f0292b56012cd8457f1cfbf.png", + "aggregators": [ + "CoinMarketCap", + "1inch", + "LiFi", + "TrustWallet", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 8 + }, + "0x226f7b842e0f0120b7e194d05432b3fd14773a9d": { + "address": "0x226f7b842e0f0120b7e194d05432b3fd14773a9d", + "symbol": "UNN", + "decimals": 18, + "name": "UNION Protocol Governance Token", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x226f7b842e0f0120b7e194d05432b3fd14773a9d.png", + "aggregators": [ + "CoinMarketCap", + "LiFi", + "TrustWallet", + "Socket", + "Rubic", + "Rango", + "Sonarwatch", + "Bancor" + ], + "occurrences": 8 + }, + "0xec213f83defb583af3a000b1c0ada660b1902a0f": { + "address": "0xec213f83defb583af3a000b1c0ada660b1902a0f", + "symbol": "PRE", + "decimals": 18, + "name": "Presearch", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xec213f83defb583af3a000b1c0ada660b1902a0f.png", + "aggregators": [ + "CoinMarketCap", + "1inch", + "LiFi", + "Socket", + "Rubic", + "Rango", + "Sonarwatch", + "SushiSwap" + ], + "occurrences": 8 + }, + "0x6c5ba91642f10282b576d91922ae6448c9d52f4e": { + "address": "0x6c5ba91642f10282b576d91922ae6448c9d52f4e", + "symbol": "PHA", + "decimals": 18, + "name": "PHALA", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x6c5ba91642f10282b576d91922ae6448c9d52f4e.png", + "aggregators": [ + "CoinMarketCap", + "1inch", + "LiFi", + "Socket", + "Rubic", + "Squid", + "Rango", + "Sonarwatch" + ], + "occurrences": 8 + }, + "0x16eccfdbb4ee1a85a33f3a9b21175cd7ae753db4": { + "address": "0x16eccfdbb4ee1a85a33f3a9b21175cd7ae753db4", + "symbol": "ROUTE", + "decimals": 18, + "name": "Route", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x16eccfdbb4ee1a85a33f3a9b21175cd7ae753db4.png", + "aggregators": [ + "Metamask", + "1inch", + "LiFi", + "Socket", + "Rubic", + "Rango", + "Sonarwatch", + "SushiSwap" + ], + "occurrences": 8 + }, + "0x19d97d8fa813ee2f51ad4b4e04ea08baf4dffc28": { + "address": "0x19d97d8fa813ee2f51ad4b4e04ea08baf4dffc28", + "symbol": "BBADGER", + "decimals": 18, + "name": "Badger Sett Badger", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x19d97d8fa813ee2f51ad4b4e04ea08baf4dffc28.png", + "aggregators": [ + "CoinGecko", + "LiFi", + "Socket", + "Rubic", + "Rango", + "Sonarwatch", + "SushiSwap", + "Bancor" + ], + "occurrences": 8 + }, + "0xa1d6df714f91debf4e0802a542e13067f31b8262": { + "address": "0xa1d6df714f91debf4e0802a542e13067f31b8262", + "symbol": "RFOX", + "decimals": 18, + "name": "RFOX", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xa1d6df714f91debf4e0802a542e13067f31b8262.png", + "aggregators": [ + "CoinMarketCap", + "1inch", + "LiFi", + "TrustWallet", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 8 + }, + "0x2b591e99afe9f32eaa6214f7b7629768c40eeb39": { + "address": "0x2b591e99afe9f32eaa6214f7b7629768c40eeb39", + "symbol": "HEX", + "decimals": 8, + "name": "HEX", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x2b591e99afe9f32eaa6214f7b7629768c40eeb39.png", + "aggregators": [ + "Metamask", + "1inch", + "LiFi", + "TrustWallet", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 8 + }, + "0xa02120696c7b8fe16c09c749e4598819b2b0e915": { + "address": "0xa02120696c7b8fe16c09c749e4598819b2b0e915", + "symbol": "WXT", + "decimals": 18, + "name": "Wirex Token", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xa02120696c7b8fe16c09c749e4598819b2b0e915.png", + "aggregators": [ + "CoinMarketCap", + "1inch", + "LiFi", + "Socket", + "Rubic", + "Rango", + "Sonarwatch", + "Bancor" + ], + "occurrences": 8 + }, + "0xd7efb00d12c2c13131fd319336fdf952525da2af": { + "address": "0xd7efb00d12c2c13131fd319336fdf952525da2af", + "symbol": "XPR", + "decimals": 4, + "name": "Proton", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xd7efb00d12c2c13131fd319336fdf952525da2af.png", + "aggregators": [ + "Metamask", + "1inch", + "LiFi", + "Socket", + "Rubic", + "Squid", + "Rango", + "Sonarwatch" + ], + "occurrences": 8 + }, + "0x3af33bef05c2dcb3c7288b77fe1c8d2aeba4d789": { + "address": "0x3af33bef05c2dcb3c7288b77fe1c8d2aeba4d789", + "symbol": "KROM", + "decimals": 18, + "name": "Kromatika", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x3af33bef05c2dcb3c7288b77fe1c8d2aeba4d789.png", + "aggregators": [ + "Metamask", + "1inch", + "LiFi", + "Socket", + "Rubic", + "Squid", + "Rango", + "Sonarwatch" + ], + "occurrences": 8 + }, + "0x8b39b70e39aa811b69365398e0aace9bee238aeb": { + "address": "0x8b39b70e39aa811b69365398e0aace9bee238aeb", + "symbol": "PKF", + "decimals": 18, + "name": "PolkaFoundry", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x8b39b70e39aa811b69365398e0aace9bee238aeb.png", + "aggregators": [ + "Metamask", + "1inch", + "LiFi", + "TrustWallet", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 8 + }, + "0x4c11249814f11b9346808179cf06e71ac328c1b5": { + "address": "0x4c11249814f11b9346808179cf06e71ac328c1b5", + "symbol": "ORAI", + "decimals": 18, + "name": "Oraichain Token", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x4c11249814f11b9346808179cf06e71ac328c1b5.png", + "aggregators": [ + "CoinMarketCap", + "1inch", + "LiFi", + "TrustWallet", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 8 + }, + "0xb9ef770b6a5e12e45983c5d80545258aa38f3b78": { + "address": "0xb9ef770b6a5e12e45983c5d80545258aa38f3b78", + "symbol": "ZCN", + "decimals": 10, + "name": "0chain", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xb9ef770b6a5e12e45983c5d80545258aa38f3b78.png", + "aggregators": [ + "CoinMarketCap", + "LiFi", + "TrustWallet", + "Socket", + "Rubic", + "Rango", + "Sonarwatch", + "Bancor" + ], + "occurrences": 8 + }, + "0x9f9c8ec3534c3ce16f928381372bfbfbfb9f4d24": { + "address": "0x9f9c8ec3534c3ce16f928381372bfbfbfb9f4d24", + "symbol": "GLQ", + "decimals": 18, + "name": "GraphLinq", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x9f9c8ec3534c3ce16f928381372bfbfbfb9f4d24.png", + "aggregators": [ + "Metamask", + "1inch", + "LiFi", + "TrustWallet", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 8 + }, + "0x340d2bde5eb28c1eed91b2f790723e3b160613b7": { + "address": "0x340d2bde5eb28c1eed91b2f790723e3b160613b7", + "symbol": "VEE", + "decimals": 18, + "name": "BLOCKv", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x340d2bde5eb28c1eed91b2f790723e3b160613b7.png", + "aggregators": [ + "CoinMarketCap", + "1inch", + "LiFi", + "Socket", + "Rubic", + "Squid", + "Rango", + "Sonarwatch" + ], + "occurrences": 8 + }, + "0xfd09911130e6930bf87f2b0554c44f400bd80d3e": { + "address": "0xfd09911130e6930bf87f2b0554c44f400bd80d3e", + "symbol": "ETHIX", + "decimals": 18, + "name": "Ethix", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xfd09911130e6930bf87f2b0554c44f400bd80d3e.png", + "aggregators": [ + "CoinMarketCap", + "1inch", + "LiFi", + "Socket", + "Rubic", + "Squid", + "Rango", + "Sonarwatch" + ], + "occurrences": 8 + }, + "0xcd5fe23c85820f7b72d0926fc9b05b43e359b7ee": { + "address": "0xcd5fe23c85820f7b72d0926fc9b05b43e359b7ee", + "symbol": "WEETH", + "decimals": 18, + "name": "Wrapped eETH", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xcd5fe23c85820f7b72d0926fc9b05b43e359b7ee.png", + "aggregators": [ + "Metamask", + "1inch", + "LiFi", + "Socket", + "Rubic", + "Squid", + "Rango", + "Sonarwatch" + ], + "occurrences": 8 + }, + "0x0f7f961648ae6db43c75663ac7e5414eb79b5704": { + "address": "0x0f7f961648ae6db43c75663ac7e5414eb79b5704", + "symbol": "XIO", + "decimals": 18, + "name": "Blockzero Labs", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x0f7f961648ae6db43c75663ac7e5414eb79b5704.png", + "aggregators": [ + "CoinMarketCap", + "1inch", + "LiFi", + "TrustWallet", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 8 + }, + "0x0202be363b8a4820f3f4de7faf5224ff05943ab1": { + "address": "0x0202be363b8a4820f3f4de7faf5224ff05943ab1", + "symbol": "UFT", + "decimals": 18, + "name": "UniLend", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x0202be363b8a4820f3f4de7faf5224ff05943ab1.png", + "aggregators": [ + "CoinMarketCap", + "1inch", + "LiFi", + "TrustWallet", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 8 + }, + "0xf94b5c5651c888d928439ab6514b93944eee6f48": { + "address": "0xf94b5c5651c888d928439ab6514b93944eee6f48", + "symbol": "YLD", + "decimals": 18, + "name": "Yield App", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xf94b5c5651c888d928439ab6514b93944eee6f48.png", + "aggregators": [ + "Metamask", + "LiFi", + "TrustWallet", + "Socket", + "Rubic", + "Rango", + "Sonarwatch", + "SushiSwap" + ], + "occurrences": 8 + }, + "0xeeaa40b28a2d1b0b08f6f97bb1dd4b75316c6107": { + "address": "0xeeaa40b28a2d1b0b08f6f97bb1dd4b75316c6107", + "symbol": "GOVI", + "decimals": 18, + "name": "GOVI", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xeeaa40b28a2d1b0b08f6f97bb1dd4b75316c6107.png", + "aggregators": [ + "CoinMarketCap", + "1inch", + "LiFi", + "TrustWallet", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 8 + }, + "0x9355372396e3f6daf13359b7b607a3374cc638e0": { + "address": "0x9355372396e3f6daf13359b7b607a3374cc638e0", + "symbol": "WHALE", + "decimals": 4, + "name": "WHALE", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x9355372396e3f6daf13359b7b607a3374cc638e0.png", + "aggregators": [ + "CoinMarketCap", + "1inch", + "LiFi", + "TrustWallet", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 8 + }, + "0x63b4f3e3fa4e438698ce330e365e831f7ccd1ef4": { + "address": "0x63b4f3e3fa4e438698ce330e365e831f7ccd1ef4", + "symbol": "CFI", + "decimals": 18, + "name": "CyberFi Token", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x63b4f3e3fa4e438698ce330e365e831f7ccd1ef4.png", + "aggregators": [ + "CoinMarketCap", + "1inch", + "LiFi", + "TrustWallet", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 8 + }, + "0xde5ed76e7c05ec5e4572cfc88d1acea165109e44": { + "address": "0xde5ed76e7c05ec5e4572cfc88d1acea165109e44", + "symbol": "DEUS", + "decimals": 18, + "name": "DEUS Finance", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xde5ed76e7c05ec5e4572cfc88d1acea165109e44.png", + "aggregators": [ + "CoinMarketCap", + "1inch", + "LiFi", + "Socket", + "Rubic", + "Squid", + "Rango", + "Sonarwatch" + ], + "occurrences": 8 + }, + "0xba8a621b4a54e61c442f5ec623687e2a942225ef": { + "address": "0xba8a621b4a54e61c442f5ec623687e2a942225ef", + "symbol": "QUARTZ", + "decimals": 18, + "name": "Sandclock", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xba8a621b4a54e61c442f5ec623687e2a942225ef.png", + "aggregators": [ + "CoinMarketCap", + "LiFi", + "Socket", + "Rubic", + "Squid", + "Rango", + "Sonarwatch", + "SushiSwap" + ], + "occurrences": 8 + }, + "0xf4d2888d29d722226fafa5d9b24f9164c092421e": { + "address": "0xf4d2888d29d722226fafa5d9b24f9164c092421e", + "symbol": "LOOKS", + "decimals": 18, + "name": "LooksRare", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xf4d2888d29d722226fafa5d9b24f9164c092421e.png", + "aggregators": [ + "CoinMarketCap", + "1inch", + "LiFi", + "TrustWallet", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 8 + }, + "0xcf3c8be2e2c42331da80ef210e9b1b307c03d36a": { + "address": "0xcf3c8be2e2c42331da80ef210e9b1b307c03d36a", + "symbol": "BEPRO", + "decimals": 18, + "name": "BEPRO Network", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xcf3c8be2e2c42331da80ef210e9b1b307c03d36a.png", + "aggregators": [ + "CoinMarketCap", + "1inch", + "LiFi", + "TrustWallet", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 8 + }, + "0xb6ff96b8a8d214544ca0dbc9b33f7ad6503efd32": { + "address": "0xb6ff96b8a8d214544ca0dbc9b33f7ad6503efd32", + "symbol": "SYNC", + "decimals": 18, + "name": "SYNC", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xb6ff96b8a8d214544ca0dbc9b33f7ad6503efd32.png", + "aggregators": [ + "CoinMarketCap", + "1inch", + "LiFi", + "TrustWallet", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 8 + }, + "0xc0ba369c8db6eb3924965e5c4fd0b4c1b91e305f": { + "address": "0xc0ba369c8db6eb3924965e5c4fd0b4c1b91e305f", + "symbol": "DUCK", + "decimals": 18, + "name": "DLP Duck Token", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xc0ba369c8db6eb3924965e5c4fd0b4c1b91e305f.png", + "aggregators": [ + "Metamask", + "1inch", + "LiFi", + "TrustWallet", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 8 + }, + "0xd9016a907dc0ecfa3ca425ab20b6b785b42f2373": { + "address": "0xd9016a907dc0ecfa3ca425ab20b6b785b42f2373", + "symbol": "GMEE", + "decimals": 18, + "name": "GAMEE", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xd9016a907dc0ecfa3ca425ab20b6b785b42f2373.png", + "aggregators": [ + "CoinMarketCap", + "1inch", + "LiFi", + "Socket", + "Rubic", + "Rango", + "Sonarwatch", + "SushiSwap" + ], + "occurrences": 8 + }, + "0x374cb8c27130e2c9e04f44303f3c8351b9de61c1": { + "address": "0x374cb8c27130e2c9e04f44303f3c8351b9de61c1", + "symbol": "BAO", + "decimals": 18, + "name": "Bao Finance", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x374cb8c27130e2c9e04f44303f3c8351b9de61c1.png", + "aggregators": [ + "CoinGecko", + "1inch", + "Socket", + "Rubic", + "Squid", + "Rango", + "Sonarwatch", + "SushiSwap" + ], + "occurrences": 8 + }, + "0xd3e4ba569045546d09cf021ecc5dfe42b1d7f6e4": { + "address": "0xd3e4ba569045546d09cf021ecc5dfe42b1d7f6e4", + "symbol": "MNW", + "decimals": 18, + "name": "MorpheusNetwork", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xd3e4ba569045546d09cf021ecc5dfe42b1d7f6e4.png", + "aggregators": [ + "CoinMarketCap", + "1inch", + "LiFi", + "Socket", + "Rubic", + "Rango", + "Sonarwatch", + "Bancor" + ], + "occurrences": 8 + }, + "0x77777feddddffc19ff86db637967013e6c6a116c": { + "address": "0x77777feddddffc19ff86db637967013e6c6a116c", + "symbol": "TORN", + "decimals": 18, + "name": "Tornado Cash", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x77777feddddffc19ff86db637967013e6c6a116c.png", + "aggregators": [ + "CoinMarketCap", + "LiFi", + "TrustWallet", + "Socket", + "Rubic", + "Rango", + "Sonarwatch", + "SushiSwap" + ], + "occurrences": 8 + }, + "0xc0f9bd5fa5698b6505f643900ffa515ea5df54a9": { + "address": "0xc0f9bd5fa5698b6505f643900ffa515ea5df54a9", + "symbol": "DONUT", + "decimals": 18, + "name": "Donut", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xc0f9bd5fa5698b6505f643900ffa515ea5df54a9.png", + "aggregators": [ + "CoinMarketCap", + "1inch", + "LiFi", + "Socket", + "Rubic", + "Rango", + "Sonarwatch", + "SushiSwap" + ], + "occurrences": 8 + }, + "0xa47c8bf37f92abed4a126bda807a7b7498661acd": { + "address": "0xa47c8bf37f92abed4a126bda807a7b7498661acd", + "symbol": "USTC", + "decimals": 18, + "name": "Wrapped USTC Token", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xa47c8bf37f92abed4a126bda807a7b7498661acd.png", + "aggregators": [ + "Metamask", + "1inch", + "LiFi", + "Socket", + "Rubic", + "Rango", + "Sonarwatch", + "SushiSwap" + ], + "occurrences": 8 + }, + "0xb0b195aefa3650a6908f15cdac7d92f8a5791b0b": { + "address": "0xb0b195aefa3650a6908f15cdac7d92f8a5791b0b", + "symbol": "BOB", + "decimals": 18, + "name": "BOB", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xb0b195aefa3650a6908f15cdac7d92f8a5791b0b.png", + "aggregators": [ + "CoinMarketCap", + "1inch", + "LiFi", + "Socket", + "Rubic", + "Rango", + "Sonarwatch", + "SushiSwap" + ], + "occurrences": 8 + }, + "0x5caf454ba92e6f2c929df14667ee360ed9fd5b26": { + "address": "0x5caf454ba92e6f2c929df14667ee360ed9fd5b26", + "symbol": "DEV", + "decimals": 18, + "name": "Dev", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x5caf454ba92e6f2c929df14667ee360ed9fd5b26.png", + "aggregators": [ + "CoinMarketCap", + "1inch", + "LiFi", + "TrustWallet", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 8 + }, + "0x86772b1409b61c639eaac9ba0acfbb6e238e5f83": { + "address": "0x86772b1409b61c639eaac9ba0acfbb6e238e5f83", + "symbol": "NDX", + "decimals": 18, + "name": "Indexed", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x86772b1409b61c639eaac9ba0acfbb6e238e5f83.png", + "aggregators": [ + "CoinMarketCap", + "LiFi", + "Socket", + "Rubic", + "Rango", + "Sonarwatch", + "SushiSwap", + "Bancor" + ], + "occurrences": 8 + }, + "0x1337def18c680af1f9f45cbcab6309562975b1dd": { + "address": "0x1337def18c680af1f9f45cbcab6309562975b1dd", + "symbol": "ARNXM", + "decimals": 18, + "name": "Armor NXM", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x1337def18c680af1f9f45cbcab6309562975b1dd.png", + "aggregators": [ + "CoinMarketCap", + "1inch", + "LiFi", + "TrustWallet", + "Rubic", + "Rango", + "SushiSwap", + "Bancor" + ], + "occurrences": 8 + }, + "0x3593d125a4f7849a1b059e64f4517a86dd60c95d": { + "address": "0x3593d125a4f7849a1b059e64f4517a86dd60c95d", + "symbol": "OM", + "decimals": 18, + "name": "MANTRA", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x3593d125a4f7849a1b059e64f4517a86dd60c95d.png", + "aggregators": [ + "1inch", + "LiFi", + "TrustWallet", + "Socket", + "Rubic", + "Squid", + "Rango", + "Sonarwatch" + ], + "occurrences": 8 + }, + "0x8457ca5040ad67fdebbcc8edce889a335bc0fbfb": { + "address": "0x8457ca5040ad67fdebbcc8edce889a335bc0fbfb", + "symbol": "ALT", + "decimals": 18, + "name": "AltLayer", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x8457ca5040ad67fdebbcc8edce889a335bc0fbfb.png", + "aggregators": [ + "CoinMarketCap", + "1inch", + "LiFi", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 7 + }, + "0x6e2a43be0b1d33b726f0ca3b8de60b3482b8b050": { + "address": "0x6e2a43be0b1d33b726f0ca3b8de60b3482b8b050", + "symbol": "ARKM", + "decimals": 18, + "name": "Arkham", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x6e2a43be0b1d33b726f0ca3b8de60b3482b8b050.png", + "aggregators": [ + "CoinMarketCap", + "1inch", + "LiFi", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 7 + }, + "0x62d0a8458ed7719fdaf978fe5929c6d342b0bfce": { + "address": "0x62d0a8458ed7719fdaf978fe5929c6d342b0bfce", + "symbol": "BEAM", + "decimals": 18, + "name": "Beam", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x62d0a8458ed7719fdaf978fe5929c6d342b0bfce.png", + "aggregators": [ + "CoinMarketCap", + "1inch", + "Socket", + "Rubic", + "Squid", + "Rango", + "Sonarwatch" + ], + "occurrences": 7 + }, + "0x3597bfd533a99c9aa083587b074434e61eb0a258": { + "address": "0x3597bfd533a99c9aa083587b074434e61eb0a258", + "symbol": "DENT", + "decimals": 8, + "name": "Dent", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x3597bfd533a99c9aa083587b074434e61eb0a258.png", + "aggregators": [ + "CoinMarketCap", + "1inch", + "Socket", + "Rubic", + "Squid", + "Rango", + "Sonarwatch" + ], + "occurrences": 7 + }, + "0xd9fcd98c322942075a5c3860693e9f4f03aae07b": { + "address": "0xd9fcd98c322942075a5c3860693e9f4f03aae07b", + "symbol": "EUL", + "decimals": 18, + "name": "Euler", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xd9fcd98c322942075a5c3860693e9f4f03aae07b.png", + "aggregators": [ + "Metamask", + "1inch", + "LiFi", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 7 + }, + "0x1abaea1f7c830bd89acc67ec4af516284b1bc33c": { + "address": "0x1abaea1f7c830bd89acc67ec4af516284b1bc33c", + "symbol": "EURC", + "decimals": 6, + "name": "EURC", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x1abaea1f7c830bd89acc67ec4af516284b1bc33c.png", + "aggregators": [ + "Metamask", + "1inch", + "LiFi", + "Rubic", + "Squid", + "Rango", + "Sonarwatch" + ], + "occurrences": 7 + }, + "0x77fba179c79de5b7653f68b5039af940ada60ce0": { + "address": "0x77fba179c79de5b7653f68b5039af940ada60ce0", + "symbol": "FORTH", + "decimals": 18, + "name": "Ampleforth Governance", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x77fba179c79de5b7653f68b5039af940ada60ce0.png", + "aggregators": [ + "OpenSwap", + "1inch", + "LiFi", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 7 + }, + "0x3f382dbd960e3a9bbceae22651e88158d2791550": { + "address": "0x3f382dbd960e3a9bbceae22651e88158d2791550", + "symbol": "GHST", + "decimals": 18, + "name": "Aavegotchi", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x3f382dbd960e3a9bbceae22651e88158d2791550.png", + "aggregators": [ + "CoinMarketCap", + "1inch", + "LiFi", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 7 + }, + "0xb3999f658c0391d94a37f7ff328f3fec942bcadc": { + "address": "0xb3999f658c0391d94a37f7ff328f3fec942bcadc", + "symbol": "HFT", + "decimals": 18, + "name": "Hashflow", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xb3999f658c0391d94a37f7ff328f3fec942bcadc.png", + "aggregators": [ + "CoinMarketCap", + "1inch", + "LiFi", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 7 + }, + "0x4b1e80cac91e2216eeb63e29b957eb91ae9c2be8": { + "address": "0x4b1e80cac91e2216eeb63e29b957eb91ae9c2be8", + "symbol": "JUP", + "decimals": 18, + "name": "Jupiter", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x4b1e80cac91e2216eeb63e29b957eb91ae9c2be8.png", + "aggregators": [ + "CoinMarketCap", + "1inch", + "TrustWallet", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 7 + }, + "0x037a54aab062628c9bbae1fdb1583c195585fe41": { + "address": "0x037a54aab062628c9bbae1fdb1583c195585fe41", + "symbol": "LCX", + "decimals": 18, + "name": "LCX", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x037a54aab062628c9bbae1fdb1583c195585fe41.png", + "aggregators": [ + "OpenSwap", + "1inch", + "LiFi", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 7 + }, + "0x814e0908b12a99fecf5bc101bb5d0b8b5cdf7d26": { + "address": "0x814e0908b12a99fecf5bc101bb5d0b8b5cdf7d26", + "symbol": "MDT", + "decimals": 18, + "name": "Measurable Data Token", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x814e0908b12a99fecf5bc101bb5d0b8b5cdf7d26.png", + "aggregators": [ + "OpenSwap", + "LiFi", + "Socket", + "Rubic", + "Rango", + "Sonarwatch", + "Bancor" + ], + "occurrences": 7 + }, + "0xb131f4a55907b10d1f0a50d8ab8fa09ec342cd74": { + "address": "0xb131f4a55907b10d1f0a50d8ab8fa09ec342cd74", + "symbol": "MEME", + "decimals": 18, + "name": "Memecoin", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xb131f4a55907b10d1f0a50d8ab8fa09ec342cd74.png", + "aggregators": [ + "CoinMarketCap", + "1inch", + "LiFi", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 7 + }, + "0x6c28aef8977c9b773996d0e8376d2ee379446f2f": { + "address": "0x6c28aef8977c9b773996d0e8376d2ee379446f2f", + "symbol": "QUICK", + "decimals": 18, + "name": "Quickswap", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x6c28aef8977c9b773996d0e8376d2ee379446f2f.png", + "aggregators": [ + "OpenSwap", + "LiFi", + "Socket", + "Rubic", + "Rango", + "Sonarwatch", + "Bancor" + ], + "occurrences": 7 + }, + "0xcc8fa225d80b9c7d42f96e9570156c65d6caaa25": { + "address": "0xcc8fa225d80b9c7d42f96e9570156c65d6caaa25", + "symbol": "SLP", + "decimals": 18, + "name": "Smooth Love Potion", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xcc8fa225d80b9c7d42f96e9570156c65d6caaa25.png", + "aggregators": [ + "Metamask", + "1inch", + "LiFi", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 7 + }, + "0xd31a59c85ae9d8edefec411d448f90841571b89c": { + "address": "0xd31a59c85ae9d8edefec411d448f90841571b89c", + "symbol": "SOL", + "decimals": 9, + "name": "Wormhole Bridged SOL", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xd31a59c85ae9d8edefec411d448f90841571b89c.png", + "aggregators": [ + "OpenSwap", + "1inch", + "LiFi", + "Rubic", + "Squid", + "Rango", + "Sonarwatch" + ], + "occurrences": 7 + }, + "0xd084b83c305dafd76ae3e1b4e1f1fe2ecccb3988": { + "address": "0xd084b83c305dafd76ae3e1b4e1f1fe2ecccb3988", + "symbol": "TVK", + "decimals": 18, + "name": "Terra Virtua Kolect", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xd084b83c305dafd76ae3e1b4e1f1fe2ecccb3988.png", + "aggregators": [ + "CoinGecko", + "LiFi", + "TrustWallet", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 7 + }, + "0xc221b7e65ffc80de234bbb6667abdd46593d34f0": { + "address": "0xc221b7e65ffc80de234bbb6667abdd46593d34f0", + "symbol": "WCFG", + "decimals": 18, + "name": "Wrapped Centrifuge", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xc221b7e65ffc80de234bbb6667abdd46593d34f0.png", + "aggregators": [ + "CoinMarketCap", + "1inch", + "LiFi", + "Rubic", + "Squid", + "Rango", + "Sonarwatch" + ], + "occurrences": 7 + }, + "0xf091867ec603a6628ed83d274e835539d82e9cc8": { + "address": "0xf091867ec603a6628ed83d274e835539d82e9cc8", + "symbol": "ZETA", + "decimals": 18, + "name": "Zeta", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xf091867ec603a6628ed83d274e835539d82e9cc8.png", + "aggregators": [ + "CoinMarketCap", + "LiFi", + "Socket", + "Rubic", + "Rango", + "Sonarwatch", + "SushiSwap" + ], + "occurrences": 7 + }, + "0xbcca60bb61934080951369a648fb03df4f96263c": { + "address": "0xbcca60bb61934080951369a648fb03df4f96263c", + "symbol": "AUSDC", + "decimals": 6, + "name": "Aave USDC", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xbcca60bb61934080951369a648fb03df4f96263c.png", + "aggregators": [ + "Metamask", + "1inch", + "LiFi", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 7 + }, + "0xf80d589b3dbe130c270a69f1a69d050f268786df": { + "address": "0xf80d589b3dbe130c270a69f1a69d050f268786df", + "symbol": "DAM", + "decimals": 18, + "name": "Datamine", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xf80d589b3dbe130c270a69f1a69d050f268786df.png", + "aggregators": [ + "CoinMarketCap", + "LiFi", + "Socket", + "Rubic", + "Rango", + "Sonarwatch", + "SushiSwap" + ], + "occurrences": 7 + }, + "0x4e352cf164e64adcbad318c3a1e222e9eba4ce42": { + "address": "0x4e352cf164e64adcbad318c3a1e222e9eba4ce42", + "symbol": "MCB", + "decimals": 18, + "name": "MCDEX Token", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x4e352cf164e64adcbad318c3a1e222e9eba4ce42.png", + "aggregators": [ + "CoinMarketCap", + "LiFi", + "TrustWallet", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 7 + }, + "0x7968bc6a03017ea2de509aaa816f163db0f35148": { + "address": "0x7968bc6a03017ea2de509aaa816f163db0f35148", + "symbol": "HGET", + "decimals": 6, + "name": "Hedget", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x7968bc6a03017ea2de509aaa816f163db0f35148.png", + "aggregators": [ + "CoinMarketCap", + "1inch", + "LiFi", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 7 + }, + "0xa58a4f5c4bb043d2cc1e170613b74e767c94189b": { + "address": "0xa58a4f5c4bb043d2cc1e170613b74e767c94189b", + "symbol": "UTU", + "decimals": 18, + "name": "UTU Coin", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xa58a4f5c4bb043d2cc1e170613b74e767c94189b.png", + "aggregators": [ + "CoinMarketCap", + "1inch", + "LiFi", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 7 + }, + "0x1beef31946fbbb40b877a72e4ae04a8d1a5cee06": { + "address": "0x1beef31946fbbb40b877a72e4ae04a8d1a5cee06", + "symbol": "PAR", + "decimals": 18, + "name": "Parachute", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x1beef31946fbbb40b877a72e4ae04a8d1a5cee06.png", + "aggregators": [ + "CoinMarketCap", + "1inch", + "Socket", + "Rubic", + "Rango", + "Sonarwatch", + "Bancor" + ], + "occurrences": 7 + }, + "0x9c78ee466d6cb57a4d01fd887d2b5dfb2d46288f": { + "address": "0x9c78ee466d6cb57a4d01fd887d2b5dfb2d46288f", + "symbol": "MUST", + "decimals": 18, + "name": "Must", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x9c78ee466d6cb57a4d01fd887d2b5dfb2d46288f.png", + "aggregators": [ + "CoinMarketCap", + "LiFi", + "Socket", + "Rubic", + "Rango", + "Sonarwatch", + "SushiSwap" + ], + "occurrences": 7 + }, + "0x7866e48c74cbfb8183cd1a929cd9b95a7a5cb4f4": { + "address": "0x7866e48c74cbfb8183cd1a929cd9b95a7a5cb4f4", + "symbol": "KIT", + "decimals": 18, + "name": "DexKit", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x7866e48c74cbfb8183cd1a929cd9b95a7a5cb4f4.png", + "aggregators": [ + "CoinMarketCap", + "1inch", + "LiFi", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 7 + }, + "0xc57d533c50bc22247d49a368880fb49a1caa39f7": { + "address": "0xc57d533c50bc22247d49a368880fb49a1caa39f7", + "symbol": "PTF", + "decimals": 18, + "name": "PowerTrade Fuel", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xc57d533c50bc22247d49a368880fb49a1caa39f7.png", + "aggregators": [ + "CoinMarketCap", + "LiFi", + "TrustWallet", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 7 + }, + "0x6b9f031d718dded0d681c20cb754f97b3bb81b78": { + "address": "0x6b9f031d718dded0d681c20cb754f97b3bb81b78", + "symbol": "GEEQ", + "decimals": 18, + "name": "GEEQ", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x6b9f031d718dded0d681c20cb754f97b3bb81b78.png", + "aggregators": [ + "CoinMarketCap", + "1inch", + "LiFi", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 7 + }, + "0x6b785a0322126826d8226d77e173d75dafb84d11": { + "address": "0x6b785a0322126826d8226d77e173d75dafb84d11", + "symbol": "VLT", + "decimals": 18, + "name": "Bankroll Vault", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x6b785a0322126826d8226d77e173d75dafb84d11.png", + "aggregators": [ + "CoinMarketCap", + "1inch", + "LiFi", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 7 + }, + "0x038a68ff68c393373ec894015816e33ad41bd564": { + "address": "0x038a68ff68c393373ec894015816e33ad41bd564", + "symbol": "GLCH", + "decimals": 18, + "name": "Glitch Protocol", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x038a68ff68c393373ec894015816e33ad41bd564.png", + "aggregators": [ + "CoinMarketCap", + "1inch", + "LiFi", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 7 + }, + "0xdf574c24545e5ffecb9a659c229253d4111d87e1": { + "address": "0xdf574c24545e5ffecb9a659c229253d4111d87e1", + "symbol": "HUSD", + "decimals": 8, + "name": "HUSD", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xdf574c24545e5ffecb9a659c229253d4111d87e1.png", + "aggregators": [ + "Metamask", + "LiFi", + "Socket", + "Rubic", + "Rango", + "Sonarwatch", + "SushiSwap" + ], + "occurrences": 7 + }, + "0x5218e472cfcfe0b64a064f055b43b4cdc9efd3a6": { + "address": "0x5218e472cfcfe0b64a064f055b43b4cdc9efd3a6", + "symbol": "ERSDL", + "decimals": 18, + "name": "unFederalReserve Token", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x5218e472cfcfe0b64a064f055b43b4cdc9efd3a6.png", + "aggregators": [ + "Metamask", + "TrustWallet", + "Socket", + "Rubic", + "Rango", + "Sonarwatch", + "Bancor" + ], + "occurrences": 7 + }, + "0x69fa0fee221ad11012bab0fdb45d444d3d2ce71c": { + "address": "0x69fa0fee221ad11012bab0fdb45d444d3d2ce71c", + "symbol": "XRUNE", + "decimals": 18, + "name": "XRUNE Token", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x69fa0fee221ad11012bab0fdb45d444d3d2ce71c.png", + "aggregators": [ + "CoinMarketCap", + "Socket", + "Rubic", + "Squid", + "Rango", + "Sonarwatch", + "SushiSwap" + ], + "occurrences": 7 + }, + "0xb755506531786c8ac63b756bab1ac387bacb0c04": { + "address": "0xb755506531786c8ac63b756bab1ac387bacb0c04", + "symbol": "ZARP", + "decimals": 18, + "name": "ZARP Stablecoin", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xb755506531786c8ac63b756bab1ac387bacb0c04.png", + "aggregators": [ + "CoinMarketCap", + "1inch", + "Socket", + "Rubic", + "Squid", + "Rango", + "Sonarwatch" + ], + "occurrences": 7 + }, + "0xf411903cbc70a74d22900a5de66a2dda66507255": { + "address": "0xf411903cbc70a74d22900a5de66a2dda66507255", + "symbol": "VRA", + "decimals": 18, + "name": "Verasity", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xf411903cbc70a74d22900a5de66a2dda66507255.png", + "aggregators": [ + "CoinMarketCap", + "1inch", + "TrustWallet", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 7 + }, + "0x6f80310ca7f2c654691d1383149fa1a57d8ab1f8": { + "address": "0x6f80310ca7f2c654691d1383149fa1a57d8ab1f8", + "symbol": "SILO", + "decimals": 18, + "name": "Silo Governance Token", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x6f80310ca7f2c654691d1383149fa1a57d8ab1f8.png", + "aggregators": [ + "CoinGecko", + "LiFi", + "Socket", + "Rubic", + "Rango", + "Sonarwatch", + "Bancor" + ], + "occurrences": 7 + }, + "0xc813ea5e3b48bebeedb796ab42a30c5599b01740": { + "address": "0xc813ea5e3b48bebeedb796ab42a30c5599b01740", + "symbol": "NIOX", + "decimals": 4, + "name": "Autonio", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xc813ea5e3b48bebeedb796ab42a30c5599b01740.png", + "aggregators": [ + "CoinMarketCap", + "1inch", + "LiFi", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 7 + }, + "0xaac41ec512808d64625576eddd580e7ea40ef8b2": { + "address": "0xaac41ec512808d64625576eddd580e7ea40ef8b2", + "symbol": "GSWAP", + "decimals": 18, + "name": "Gameswap", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xaac41ec512808d64625576eddd580e7ea40ef8b2.png", + "aggregators": [ + "CoinMarketCap", + "1inch", + "LiFi", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 7 + }, + "0x0e8d6b471e332f140e7d9dbb99e5e3822f728da6": { + "address": "0x0e8d6b471e332f140e7d9dbb99e5e3822f728da6", + "symbol": "ABYSS", + "decimals": 18, + "name": "Abyss", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x0e8d6b471e332f140e7d9dbb99e5e3822f728da6.png", + "aggregators": [ + "CoinMarketCap", + "1inch", + "LiFi", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 7 + }, + "0x910dfc18d6ea3d6a7124a6f8b5458f281060fa4c": { + "address": "0x910dfc18d6ea3d6a7124a6f8b5458f281060fa4c", + "symbol": "X8X", + "decimals": 18, + "name": "X8XToken", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x910dfc18d6ea3d6a7124a6f8b5458f281060fa4c.png", + "aggregators": [ + "CoinMarketCap", + "LiFi", + "Socket", + "Rubic", + "Rango", + "Sonarwatch", + "Bancor" + ], + "occurrences": 7 + }, + "0xba3335588d9403515223f109edc4eb7269a9ab5d": { + "address": "0xba3335588d9403515223f109edc4eb7269a9ab5d", + "symbol": "GEAR", + "decimals": 18, + "name": "Gearbox", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xba3335588d9403515223f109edc4eb7269a9ab5d.png", + "aggregators": [ + "Metamask", + "1inch", + "LiFi", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 7 + }, + "0x3c8d2fce49906e11e71cb16fa0ffeb2b16c29638": { + "address": "0x3c8d2fce49906e11e71cb16fa0ffeb2b16c29638", + "symbol": "NFTL", + "decimals": 18, + "name": "Nifty League", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x3c8d2fce49906e11e71cb16fa0ffeb2b16c29638.png", + "aggregators": [ + "CoinMarketCap", + "Socket", + "Rubic", + "Squid", + "Rango", + "Sonarwatch", + "SushiSwap" + ], + "occurrences": 7 + }, + "0x9d65ff81a3c488d585bbfb0bfe3c7707c7917f54": { + "address": "0x9d65ff81a3c488d585bbfb0bfe3c7707c7917f54", + "symbol": "SSV", + "decimals": 18, + "name": "SSV Network", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x9d65ff81a3c488d585bbfb0bfe3c7707c7917f54.png", + "aggregators": [ + "CoinMarketCap", + "1inch", + "LiFi", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 7 + }, + "0x6e9730ecffbed43fd876a264c982e254ef05a0de": { + "address": "0x6e9730ecffbed43fd876a264c982e254ef05a0de", + "symbol": "NORD", + "decimals": 18, + "name": "Nord Finance", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x6e9730ecffbed43fd876a264c982e254ef05a0de.png", + "aggregators": [ + "CoinMarketCap", + "1inch", + "LiFi", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 7 + }, + "0x32a7c02e79c4ea1008dd6564b35f131428673c41": { + "address": "0x32a7c02e79c4ea1008dd6564b35f131428673c41", + "symbol": "CRU", + "decimals": 18, + "name": "CRUST", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x32a7c02e79c4ea1008dd6564b35f131428673c41.png", + "aggregators": [ + "Metamask", + "1inch", + "LiFi", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 7 + }, + "0xa1290d69c65a6fe4df752f95823fae25cb99e5a7": { + "address": "0xa1290d69c65a6fe4df752f95823fae25cb99e5a7", + "symbol": "RSETH", + "decimals": 18, + "name": "Kelp DAO Restaked ETH", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xa1290d69c65a6fe4df752f95823fae25cb99e5a7.png", + "aggregators": [ + "CoinMarketCap", + "1inch", + "LiFi", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 7 + }, + "0x2e1e15c44ffe4df6a0cb7371cd00d5028e571d14": { + "address": "0x2e1e15c44ffe4df6a0cb7371cd00d5028e571d14", + "symbol": "MTLX", + "decimals": 18, + "name": "Mettalex", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x2e1e15c44ffe4df6a0cb7371cd00d5028e571d14.png", + "aggregators": [ + "Metamask", + "1inch", + "TrustWallet", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 7 + }, + "0x35fa164735182de50811e8e2e824cfb9b6118ac2": { + "address": "0x35fa164735182de50811e8e2e824cfb9b6118ac2", + "symbol": "EETH", + "decimals": 18, + "name": "ether.fi Staked ETH", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x35fa164735182de50811e8e2e824cfb9b6118ac2.png", + "aggregators": [ + "Metamask", + "1inch", + "LiFi", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 7 + }, + "0x4cf89ca06ad997bc732dc876ed2a7f26a9e7f361": { + "address": "0x4cf89ca06ad997bc732dc876ed2a7f26a9e7f361", + "symbol": "MYST", + "decimals": 18, + "name": "Mysterium", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x4cf89ca06ad997bc732dc876ed2a7f26a9e7f361.png", + "aggregators": [ + "Metamask", + "1inch", + "LiFi", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 7 + }, + "0xb6ed7644c69416d67b522e20bc294a9a9b405b31": { + "address": "0xb6ed7644c69416d67b522e20bc294a9a9b405b31", + "symbol": "0XBTC", + "decimals": 8, + "name": "0xBitcoin Token", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xb6ed7644c69416d67b522e20bc294a9a9b405b31.png", + "aggregators": [ + "Metamask", + "1inch", + "LiFi", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 7 + }, + "0xedf6568618a00c6f0908bf7758a16f76b6e04af9": { + "address": "0xedf6568618a00c6f0908bf7758a16f76b6e04af9", + "symbol": "ARIA20", + "decimals": 18, + "name": "Arianee", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xedf6568618a00c6f0908bf7758a16f76b6e04af9.png", + "aggregators": [ + "Metamask", + "1inch", + "LiFi", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 7 + }, + "0x0488401c3f535193fa8df029d9ffe615a06e74e6": { + "address": "0x0488401c3f535193fa8df029d9ffe615a06e74e6", + "symbol": "SRK", + "decimals": 18, + "name": "SparkPoint", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x0488401c3f535193fa8df029d9ffe615a06e74e6.png", + "aggregators": [ + "CoinMarketCap", + "1inch", + "TrustWallet", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 7 + }, + "0x6f259637dcd74c767781e37bc6133cd6a68aa161": { + "address": "0x6f259637dcd74c767781e37bc6133cd6a68aa161", + "symbol": "HT", + "decimals": 18, + "name": "Huobi", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x6f259637dcd74c767781e37bc6133cd6a68aa161.png", + "aggregators": [ + "CoinMarketCap", + "1inch", + "LiFi", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 7 + }, + "0x0ff6ffcfda92c53f615a4a75d982f399c989366b": { + "address": "0x0ff6ffcfda92c53f615a4a75d982f399c989366b", + "symbol": "LAYER", + "decimals": 18, + "name": "Unilayer", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x0ff6ffcfda92c53f615a4a75d982f399c989366b.png", + "aggregators": [ + "CoinMarketCap", + "LiFi", + "TrustWallet", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 7 + }, + "0x34950ff2b487d9e5282c5ab342d08a2f712eb79f": { + "address": "0x34950ff2b487d9e5282c5ab342d08a2f712eb79f", + "symbol": "WOZX", + "decimals": 18, + "name": "Efforce", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x34950ff2b487d9e5282c5ab342d08a2f712eb79f.png", + "aggregators": [ + "CoinMarketCap", + "1inch", + "LiFi", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 7 + }, + "0x50de6856358cc35f3a9a57eaaa34bd4cb707d2cd": { + "address": "0x50de6856358cc35f3a9a57eaaa34bd4cb707d2cd", + "symbol": "RAZOR", + "decimals": 18, + "name": "Razor Network", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x50de6856358cc35f3a9a57eaaa34bd4cb707d2cd.png", + "aggregators": [ + "CoinMarketCap", + "LiFi", + "TrustWallet", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 7 + }, + "0x16cda4028e9e872a38acb903176719299beaed87": { + "address": "0x16cda4028e9e872a38acb903176719299beaed87", + "symbol": "MARS4", + "decimals": 18, + "name": "MARS4", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x16cda4028e9e872a38acb903176719299beaed87.png", + "aggregators": [ + "CoinMarketCap", + "Socket", + "Rubic", + "Squid", + "Rango", + "Sonarwatch", + "SushiSwap" + ], + "occurrences": 7 + }, + "0x0316eb71485b0ab14103307bf65a021042c6d380": { + "address": "0x0316eb71485b0ab14103307bf65a021042c6d380", + "symbol": "HBTC", + "decimals": 18, + "name": "Huobi BTC", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x0316eb71485b0ab14103307bf65a021042c6d380.png", + "aggregators": [ + "CoinMarketCap", + "LiFi", + "Socket", + "Rubic", + "Rango", + "Sonarwatch", + "SushiSwap" + ], + "occurrences": 7 + }, + "0x62dc4817588d53a056cbbd18231d91ffccd34b2a": { + "address": "0x62dc4817588d53a056cbbd18231d91ffccd34b2a", + "symbol": "DHV", + "decimals": 18, + "name": "DeHive", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x62dc4817588d53a056cbbd18231d91ffccd34b2a.png", + "aggregators": [ + "Metamask", + "1inch", + "LiFi", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 7 + }, + "0x6468e79a80c0eab0f9a2b574c8d5bc374af59414": { + "address": "0x6468e79a80c0eab0f9a2b574c8d5bc374af59414", + "symbol": "EXRD", + "decimals": 18, + "name": "e Radix", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x6468e79a80c0eab0f9a2b574c8d5bc374af59414.png", + "aggregators": [ + "CoinMarketCap", + "1inch", + "LiFi", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 7 + }, + "0xa8b12cc90abf65191532a12bb5394a714a46d358": { + "address": "0xa8b12cc90abf65191532a12bb5394a714a46d358", + "symbol": "PBTC35A", + "decimals": 18, + "name": "pBTC35A", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xa8b12cc90abf65191532a12bb5394a714a46d358.png", + "aggregators": [ + "CoinMarketCap", + "1inch", + "LiFi", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 7 + }, + "0xfe9a29ab92522d14fc65880d817214261d8479ae": { + "address": "0xfe9a29ab92522d14fc65880d817214261d8479ae", + "symbol": "SNOW", + "decimals": 18, + "name": "Snowswap", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xfe9a29ab92522d14fc65880d817214261d8479ae.png", + "aggregators": [ + "CoinMarketCap", + "1inch", + "LiFi", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 7 + }, + "0x0ab87046fbb341d058f17cbc4c1133f25a20a52f": { + "address": "0x0ab87046fbb341d058f17cbc4c1133f25a20a52f", + "symbol": "GOHM", + "decimals": 18, + "name": "Governance OHM", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x0ab87046fbb341d058f17cbc4c1133f25a20a52f.png", + "aggregators": [ + "Metamask", + "1inch", + "LiFi", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 7 + }, + "0xb056c38f6b7dc4064367403e26424cd2c60655e1": { + "address": "0xb056c38f6b7dc4064367403e26424cd2c60655e1", + "symbol": "CEEK", + "decimals": 18, + "name": "CEEK", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xb056c38f6b7dc4064367403e26424cd2c60655e1.png", + "aggregators": [ + "CoinMarketCap", + "LiFi", + "Socket", + "Rubic", + "Rango", + "Sonarwatch", + "Bancor" + ], + "occurrences": 7 + }, + "0xc477d038d5420c6a9e0b031712f61c5120090de9": { + "address": "0xc477d038d5420c6a9e0b031712f61c5120090de9", + "symbol": "BOSON", + "decimals": 18, + "name": "Boson Token", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xc477d038d5420c6a9e0b031712f61c5120090de9.png", + "aggregators": [ + "Metamask", + "1inch", + "LiFi", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 7 + }, + "0x3505f494c3f0fed0b594e01fa41dd3967645ca39": { + "address": "0x3505f494c3f0fed0b594e01fa41dd3967645ca39", + "symbol": "SWM", + "decimals": 18, + "name": "SWARM", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x3505f494c3f0fed0b594e01fa41dd3967645ca39.png", + "aggregators": [ + "Metamask", + "1inch", + "LiFi", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 7 + }, + "0xc28e931814725bbeb9e670676fabbcb694fe7df2": { + "address": "0xc28e931814725bbeb9e670676fabbcb694fe7df2", + "symbol": "EQUAD", + "decimals": 18, + "name": "Quadrant Protocol", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xc28e931814725bbeb9e670676fabbcb694fe7df2.png", + "aggregators": [ + "CoinMarketCap", + "1inch", + "LiFi", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 7 + }, + "0xfbeea1c75e4c4465cb2fccc9c6d6afe984558e20": { + "address": "0xfbeea1c75e4c4465cb2fccc9c6d6afe984558e20", + "symbol": "DDIM", + "decimals": 18, + "name": "DuckDaoDime", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xfbeea1c75e4c4465cb2fccc9c6d6afe984558e20.png", + "aggregators": [ + "Metamask", + "LiFi", + "TrustWallet", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 7 + }, + "0x3c9d6c1c73b31c837832c72e04d3152f051fc1a9": { + "address": "0x3c9d6c1c73b31c837832c72e04d3152f051fc1a9", + "symbol": "BOR", + "decimals": 18, + "name": "BoringDAO", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x3c9d6c1c73b31c837832c72e04d3152f051fc1a9.png", + "aggregators": [ + "CoinMarketCap", + "LiFi", + "Rubic", + "Rango", + "Sonarwatch", + "SushiSwap", + "Bancor" + ], + "occurrences": 7 + }, + "0x70401dfd142a16dc7031c56e862fc88cb9537ce0": { + "address": "0x70401dfd142a16dc7031c56e862fc88cb9537ce0", + "symbol": "BIRD", + "decimals": 18, + "name": "Bird.Money", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x70401dfd142a16dc7031c56e862fc88cb9537ce0.png", + "aggregators": [ + "CoinMarketCap", + "LiFi", + "TrustWallet", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 7 + }, + "0x368b3a58b5f49392e5c9e4c998cb0bb966752e51": { + "address": "0x368b3a58b5f49392e5c9e4c998cb0bb966752e51", + "symbol": "MIC", + "decimals": 18, + "name": "Mithril Cash", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x368b3a58b5f49392e5c9e4c998cb0bb966752e51.png", + "aggregators": [ + "CoinMarketCap", + "1inch", + "LiFi", + "Socket", + "Rubic", + "Rango", + "SushiSwap" + ], + "occurrences": 7 + }, + "0x16c52ceece2ed57dad87319d91b5e3637d50afa4": { + "address": "0x16c52ceece2ed57dad87319d91b5e3637d50afa4", + "symbol": "TCAP", + "decimals": 18, + "name": "TCAP Token", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x16c52ceece2ed57dad87319d91b5e3637d50afa4.png", + "aggregators": [ + "Metamask", + "1inch", + "LiFi", + "Socket", + "Rubic", + "Rango", + "SushiSwap" + ], + "occurrences": 7 + }, + "0x178c820f862b14f316509ec36b13123da19a6054": { + "address": "0x178c820f862b14f316509ec36b13123da19a6054", + "symbol": "EWTB", + "decimals": 18, + "name": "Energy Web Token Bridged", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x178c820f862b14f316509ec36b13123da19a6054.png", + "aggregators": [ + "Metamask", + "1inch", + "LiFi", + "Socket", + "Rubic", + "Rango", + "Bancor" + ], + "occurrences": 7 + }, + "0x3155ba85d5f96b2d030a4966af206230e46849cb": { + "address": "0x3155ba85d5f96b2d030a4966af206230e46849cb", + "symbol": "RUNE", + "decimals": 18, + "name": "THORChain ETHRUNE", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x3155ba85d5f96b2d030a4966af206230e46849cb.png", + "aggregators": [ + "1inch", + "LiFi", + "Rubic", + "Squid", + "Rango", + "SushiSwap", + "Bancor" + ], + "occurrences": 7 + }, + "0xed04915c23f00a313a544955524eb7dbd823143d": { + "address": "0xed04915c23f00a313a544955524eb7dbd823143d", + "symbol": "ACH", + "decimals": 8, + "name": "Alchemy Pay", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xed04915c23f00a313a544955524eb7dbd823143d.png", + "aggregators": [ + "Metamask", + "1inch", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 6 + }, + "0xb528edbef013aff855ac3c50b381f253af13b997": { + "address": "0xb528edbef013aff855ac3c50b381f253af13b997", + "symbol": "AEVO", + "decimals": 18, + "name": "Aevo", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xb528edbef013aff855ac3c50b381f253af13b997.png", + "aggregators": [ + "CoinMarketCap", + "1inch", + "LiFi", + "Socket", + "Rubic", + "Sonarwatch" + ], + "occurrences": 6 + }, + "0xba50933c268f567bdc86e1ac131be072c6b0b71a": { + "address": "0xba50933c268f567bdc86e1ac131be072c6b0b71a", + "symbol": "ARPA", + "decimals": 18, + "name": "ARPA", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xba50933c268f567bdc86e1ac131be072c6b0b71a.png", + "aggregators": [ + "OpenSwap", + "LiFi", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 6 + }, + "0x64d91f12ece7362f91a6f8e7940cd55f05060b92": { + "address": "0x64d91f12ece7362f91a6f8e7940cd55f05060b92", + "symbol": "ASH", + "decimals": 18, + "name": "ASH", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x64d91f12ece7362f91a6f8e7940cd55f05060b92.png", + "aggregators": [ + "OpenSwap", + "1inch", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 6 + }, + "0x80c62fe4487e1351b47ba49809ebd60ed085bf52": { + "address": "0x80c62fe4487e1351b47ba49809ebd60ed085bf52", + "symbol": "CLV", + "decimals": 18, + "name": "Clover Finance", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x80c62fe4487e1351b47ba49809ebd60ed085bf52.png", + "aggregators": [ + "OpenSwap", + "1inch", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 6 + }, + "0x8c15ef5b4b21951d50e53e4fbda8298ffad25057": { + "address": "0x8c15ef5b4b21951d50e53e4fbda8298ffad25057", + "symbol": "FX", + "decimals": 18, + "name": "Function X", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x8c15ef5b4b21951d50e53e4fbda8298ffad25057.png", + "aggregators": [ + "OpenSwap", + "LiFi", + "TrustWallet", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 6 + }, + "0xdab396ccf3d84cf2d07c4454e10c8a6f5b008d2b": { + "address": "0xdab396ccf3d84cf2d07c4454e10c8a6f5b008d2b", + "symbol": "GFI", + "decimals": 18, + "name": "Goldfinch", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xdab396ccf3d84cf2d07c4454e10c8a6f5b008d2b.png", + "aggregators": [ + "OpenSwap", + "1inch", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 6 + }, + "0x1789e0043623282d5dcc7f213d703c6d8bafbb04": { + "address": "0x1789e0043623282d5dcc7f213d703c6d8bafbb04", + "symbol": "LINEA", + "decimals": 18, + "name": "Linea", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x1789e0043623282d5dcc7f213d703c6d8bafbb04.png", + "aggregators": [ + "Metamask", + "1inch", + "LiFi", + "Rubic", + "Squid", + "Rango" + ], + "occurrences": 6 + }, + "0x7c84e62859d0715eb77d1b1c4154ecd6abb21bec": { + "address": "0x7c84e62859d0715eb77d1b1c4154ecd6abb21bec", + "symbol": "SHPING", + "decimals": 18, + "name": "Shping Coin", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x7c84e62859d0715eb77d1b1c4154ecd6abb21bec.png", + "aggregators": [ + "OpenSwap", + "Socket", + "Rubic", + "Rango", + "Sonarwatch", + "SushiSwap" + ], + "occurrences": 6 + }, + "0xc20059e0317de91738d13af027dfc4a50781b066": { + "address": "0xc20059e0317de91738d13af027dfc4a50781b066", + "symbol": "SPARK", + "decimals": 18, + "name": "Spark", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xc20059e0317de91738d13af027dfc4a50781b066.png", + "aggregators": [ + "CoinMarketCap", + "1inch", + "LiFi", + "Socket", + "Rubic", + "Squid" + ], + "occurrences": 6 + }, + "0xfc1e690f61efd961294b3e1ce3313fbd8aa4f85d": { + "address": "0xfc1e690f61efd961294b3e1ce3313fbd8aa4f85d", + "symbol": "ADAI", + "decimals": 18, + "name": "Aave DAI v1", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xfc1e690f61efd961294b3e1ce3313fbd8aa4f85d.png", + "aggregators": [ + "CoinMarketCap", + "LiFi", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 6 + }, + "0x4da9b813057d04baef4e5800e36083717b4a0341": { + "address": "0x4da9b813057d04baef4e5800e36083717b4a0341", + "symbol": "ATUSD", + "decimals": 18, + "name": "Aave TUSD v1", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x4da9b813057d04baef4e5800e36083717b4a0341.png", + "aggregators": [ + "CoinMarketCap", + "LiFi", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 6 + }, + "0xfc4b8ed459e00e5400be803a9bb3954234fd50e3": { + "address": "0xfc4b8ed459e00e5400be803a9bb3954234fd50e3", + "symbol": "AWBTC", + "decimals": 8, + "name": "Aave WBTC v1", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xfc4b8ed459e00e5400be803a9bb3954234fd50e3.png", + "aggregators": [ + "CoinMarketCap", + "LiFi", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 6 + }, + "0x6781a0f84c7e9e846dcb84a9a5bd49333067b104": { + "address": "0x6781a0f84c7e9e846dcb84a9a5bd49333067b104", + "symbol": "ZAP", + "decimals": 18, + "name": "ZAP TOKEN", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x6781a0f84c7e9e846dcb84a9a5bd49333067b104.png", + "aggregators": [ + "Metamask", + "LiFi", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 6 + }, + "0xed0439eacf4c4965ae4613d77a5c2efe10e5f183": { + "address": "0xed0439eacf4c4965ae4613d77a5c2efe10e5f183", + "symbol": "SHROOM", + "decimals": 18, + "name": "Niftyx Protocol", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xed0439eacf4c4965ae4613d77a5c2efe10e5f183.png", + "aggregators": [ + "CoinMarketCap", + "1inch", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 6 + }, + "0x2edf094db69d6dcd487f1b3db9febe2eec0dd4c5": { + "address": "0x2edf094db69d6dcd487f1b3db9febe2eec0dd4c5", + "symbol": "ZEE", + "decimals": 18, + "name": "ZeroSwap", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x2edf094db69d6dcd487f1b3db9febe2eec0dd4c5.png", + "aggregators": [ + "CoinMarketCap", + "TrustWallet", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 6 + }, + "0x0cdf9acd87e940837ff21bb40c9fd55f68bba059": { + "address": "0x0cdf9acd87e940837ff21bb40c9fd55f68bba059", + "symbol": "MINT", + "decimals": 18, + "name": "Public Mint", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x0cdf9acd87e940837ff21bb40c9fd55f68bba059.png", + "aggregators": [ + "CoinMarketCap", + "TrustWallet", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 6 + }, + "0xf0939011a9bb95c3b791f0cb546377ed2693a574": { + "address": "0xf0939011a9bb95c3b791f0cb546377ed2693a574", + "symbol": "ZERO", + "decimals": 18, + "name": "0 exchange", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xf0939011a9bb95c3b791f0cb546377ed2693a574.png", + "aggregators": [ + "CoinMarketCap", + "1inch", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 6 + }, + "0x4156d3342d5c385a87d264f90653733592000581": { + "address": "0x4156d3342d5c385a87d264f90653733592000581", + "symbol": "SALT", + "decimals": 8, + "name": "SALT", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x4156d3342d5c385a87d264f90653733592000581.png", + "aggregators": [ + "CoinMarketCap", + "LiFi", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 6 + }, + "0x5d60d8d7ef6d37e16ebabc324de3be57f135e0bc": { + "address": "0x5d60d8d7ef6d37e16ebabc324de3be57f135e0bc", + "symbol": "MYB", + "decimals": 18, + "name": "MyBit", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x5d60d8d7ef6d37e16ebabc324de3be57f135e0bc.png", + "aggregators": [ + "Metamask", + "Socket", + "Rubic", + "Rango", + "Sonarwatch", + "Bancor" + ], + "occurrences": 6 + }, + "0x9aab071b4129b083b01cb5a0cb513ce7eca26fa5": { + "address": "0x9aab071b4129b083b01cb5a0cb513ce7eca26fa5", + "symbol": "HUNT", + "decimals": 18, + "name": "HUNT Token", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x9aab071b4129b083b01cb5a0cb513ce7eca26fa5.png", + "aggregators": [ + "Metamask", + "1inch", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 6 + }, + "0x6440f144b7e50d6a8439336510312d2f54beb01d": { + "address": "0x6440f144b7e50d6a8439336510312d2f54beb01d", + "symbol": "BOLD", + "decimals": 18, + "name": "Liquity BOLD", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x6440f144b7e50d6a8439336510312d2f54beb01d.png", + "aggregators": [ + "CoinMarketCap", + "1inch", + "LiFi", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 6 + }, + "0xd3fd63209fa2d55b07a0f6db36c2f43900be3094": { + "address": "0xd3fd63209fa2d55b07a0f6db36c2f43900be3094", + "symbol": "WSRUSD", + "decimals": 18, + "name": "Wrapped Savings rUSD", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xd3fd63209fa2d55b07a0f6db36c2f43900be3094.png", + "aggregators": [ + "CoinGecko", + "LiFi", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 6 + }, + "0xea7cc765ebc94c4805e3bff28d7e4ae48d06468a": { + "address": "0xea7cc765ebc94c4805e3bff28d7e4ae48d06468a", + "symbol": "PAD", + "decimals": 18, + "name": "NearPad Token", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xea7cc765ebc94c4805e3bff28d7e4ae48d06468a.png", + "aggregators": [ + "Metamask", + "Socket", + "Rubic", + "Rango", + "Sonarwatch", + "SushiSwap" + ], + "occurrences": 6 + }, + "0x030b69280892c888670edcdcd8b69fd8026a0bf3": { + "address": "0x030b69280892c888670edcdcd8b69fd8026a0bf3", + "symbol": "MMEV", + "decimals": 18, + "name": "Midas mMEV", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x030b69280892c888670edcdcd8b69fd8026a0bf3.png", + "aggregators": [ + "CoinGecko", + "LiFi", + "Rubic", + "Squid", + "Rango", + "Sonarwatch" + ], + "occurrences": 6 + }, + "0x19ebd191f7a24ece672ba13a302212b5ef7f35cb": { + "address": "0x19ebd191f7a24ece672ba13a302212b5ef7f35cb", + "symbol": "YUSD", + "decimals": 18, + "name": "YieldFi yToken", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x19ebd191f7a24ece672ba13a302212b5ef7f35cb.png", + "aggregators": [ + "CoinMarketCap", + "LiFi", + "Rubic", + "Squid", + "Rango", + "Sonarwatch" + ], + "occurrences": 6 + }, + "0x4730fb1463a6f1f44aeb45f6c5c422427f37f4d0": { + "address": "0x4730fb1463a6f1f44aeb45f6c5c422427f37f4d0", + "symbol": "FOUR", + "decimals": 18, + "name": "The 4th Pillar Token", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x4730fb1463a6f1f44aeb45f6c5c422427f37f4d0.png", + "aggregators": [ + "Metamask", + "1inch", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 6 + }, + "0x6bea7cfef803d1e3d5f7c0103f7ded065644e197": { + "address": "0x6bea7cfef803d1e3d5f7c0103f7ded065644e197", + "symbol": "GAMMA", + "decimals": 18, + "name": "Gamma", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x6bea7cfef803d1e3d5f7c0103f7ded065644e197.png", + "aggregators": [ + "Metamask", + "LiFi", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 6 + }, + "0xe868084cf08f3c3db11f4b73a95473762d9463f7": { + "address": "0xe868084cf08f3c3db11f4b73a95473762d9463f7", + "symbol": "YU", + "decimals": 18, + "name": "YU", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xe868084cf08f3c3db11f4b73a95473762d9463f7.png", + "aggregators": [ + "CoinMarketCap", + "LiFi", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 6 + }, + "0x6b7774cb12ed7573a7586e7d0e62a2a563ddd3f0": { + "address": "0x6b7774cb12ed7573a7586e7d0e62a2a563ddd3f0", + "symbol": "SOPH", + "decimals": 18, + "name": "Sophon", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x6b7774cb12ed7573a7586e7d0e62a2a563ddd3f0.png", + "aggregators": [ + "CoinMarketCap", + "1inch", + "Rubic", + "Squid", + "Rango", + "Sonarwatch" + ], + "occurrences": 6 + }, + "0x3231cb76718cdef2155fc47b5286d82e6eda273f": { + "address": "0x3231cb76718cdef2155fc47b5286d82e6eda273f", + "symbol": "EURE", + "decimals": 18, + "name": "Monerium EUR", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x3231cb76718cdef2155fc47b5286d82e6eda273f.png", + "aggregators": [ + "Metamask", + "LiFi", + "Socket", + "Rubic", + "Squid", + "Sonarwatch" + ], + "occurrences": 6 + }, + "0x89bd2e7e388fab44ae88bef4e1ad12b4f1e0911c": { + "address": "0x89bd2e7e388fab44ae88bef4e1ad12b4f1e0911c", + "symbol": "NUX", + "decimals": 18, + "name": "Peanut", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x89bd2e7e388fab44ae88bef4e1ad12b4f1e0911c.png", + "aggregators": [ + "CoinMarketCap", + "1inch", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 6 + }, + "0x5f0e628b693018f639d10e4a4f59bd4d8b2b6b44": { + "address": "0x5f0e628b693018f639d10e4a4f59bd4d8b2b6b44", + "symbol": "WHITE", + "decimals": 18, + "name": "Whiteheart", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x5f0e628b693018f639d10e4a4f59bd4d8b2b6b44.png", + "aggregators": [ + "CoinMarketCap", + "1inch", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 6 + }, + "0x0de05f6447ab4d22c8827449ee4ba2d5c288379b": { + "address": "0x0de05f6447ab4d22c8827449ee4ba2d5c288379b", + "symbol": "OOKI", + "decimals": 18, + "name": "OOKI", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x0de05f6447ab4d22c8827449ee4ba2d5c288379b.png", + "aggregators": [ + "Metamask", + "LiFi", + "Socket", + "Rubic", + "Sonarwatch", + "SushiSwap" + ], + "occurrences": 6 + }, + "0x40fd72257597aa14c7231a7b1aaa29fce868f677": { + "address": "0x40fd72257597aa14c7231a7b1aaa29fce868f677", + "symbol": "XOR", + "decimals": 18, + "name": "SORA", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x40fd72257597aa14c7231a7b1aaa29fce868f677.png", + "aggregators": [ + "Metamask", + "TrustWallet", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 6 + }, + "0x60be1e1fe41c1370adaf5d8e66f07cf1c2df2268": { + "address": "0x60be1e1fe41c1370adaf5d8e66f07cf1c2df2268", + "symbol": "PERC", + "decimals": 18, + "name": "Perion Credits", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x60be1e1fe41c1370adaf5d8e66f07cf1c2df2268.png", + "aggregators": [ + "Metamask", + "Socket", + "Rubic", + "Rango", + "Sonarwatch", + "SushiSwap" + ], + "occurrences": 6 + }, + "0xdd1ad9a21ce722c151a836373babe42c868ce9a4": { + "address": "0xdd1ad9a21ce722c151a836373babe42c868ce9a4", + "symbol": "UBI", + "decimals": 18, + "name": "Universal Basic Income", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xdd1ad9a21ce722c151a836373babe42c868ce9a4.png", + "aggregators": [ + "Metamask", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0xccb365d2e11ae4d6d74715c680f56cf58bf4bf10": { + "address": "0xccb365d2e11ae4d6d74715c680f56cf58bf4bf10", + "symbol": "WEPE", + "decimals": 18, + "name": "Wall Street Pepe", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xccb365d2e11ae4d6d74715c680f56cf58bf4bf10.png", + "aggregators": [ + "CoinMarketCap", + "1inch", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 6 + }, + "0x99999999999999cc837c997b882957dafdcb1af9": { + "address": "0x99999999999999cc837c997b882957dafdcb1af9", + "symbol": "WUSDN", + "decimals": 18, + "name": "SMARDEX WRAPPED USDN", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x99999999999999cc837c997b882957dafdcb1af9.png", + "aggregators": [ + "CoinGecko", + "LiFi", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 6 + }, + "0xf2c88757f8d03634671208935974b60a2a28bdb3": { + "address": "0xf2c88757f8d03634671208935974b60a2a28bdb3", + "symbol": "SHELL", + "decimals": 18, + "name": "MyShell", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xf2c88757f8d03634671208935974b60a2a28bdb3.png", + "aggregators": [ + "CoinMarketCap", + "LiFi", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 6 + }, + "0x0d02755a5700414b26ff040e1de35d337df56218": { + "address": "0x0d02755a5700414b26ff040e1de35d337df56218", + "symbol": "BEND", + "decimals": 18, + "name": "Bend Token", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x0d02755a5700414b26ff040e1de35d337df56218.png", + "aggregators": [ + "Metamask", + "1inch", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 6 + }, + "0xbb51e2a15a9158ebe2b0ceb8678511e063ab7a55": { + "address": "0xbb51e2a15a9158ebe2b0ceb8678511e063ab7a55", + "symbol": "MEDGE", + "decimals": 18, + "name": "Midas mEDGE", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xbb51e2a15a9158ebe2b0ceb8678511e063ab7a55.png", + "aggregators": [ + "CoinGecko", + "LiFi", + "Rubic", + "Squid", + "Rango", + "Sonarwatch" + ], + "occurrences": 6 + }, + "0xe24a3dc889621612422a64e6388927901608b91d": { + "address": "0xe24a3dc889621612422a64e6388927901608b91d", + "symbol": "SUSN", + "decimals": 18, + "name": "Staked USN", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xe24a3dc889621612422a64e6388927901608b91d.png", + "aggregators": [ + "CoinGecko", + "LiFi", + "Rubic", + "Squid", + "Rango", + "Sonarwatch" + ], + "occurrences": 6 + }, + "0x946fb08103b400d1c79e07acccdef5cfd26cd374": { + "address": "0x946fb08103b400d1c79e07acccdef5cfd26cd374", + "symbol": "KIP", + "decimals": 18, + "name": "KIP", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x946fb08103b400d1c79e07acccdef5cfd26cd374.png", + "aggregators": [ + "CoinMarketCap", + "Socket", + "Rubic", + "Squid", + "Rango", + "Sonarwatch" + ], + "occurrences": 6 + }, + "0xd4c435f5b09f855c3317c8524cb1f586e42795fa": { + "address": "0xd4c435f5b09f855c3317c8524cb1f586e42795fa", + "symbol": "CND", + "decimals": 18, + "name": "Cindicator", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xd4c435f5b09f855c3317c8524cb1f586e42795fa.png", + "aggregators": [ + "CoinMarketCap", + "1inch", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 6 + }, + "0xacfa209fb73bf3dd5bbfb1101b9bc999c49062a5": { + "address": "0xacfa209fb73bf3dd5bbfb1101b9bc999c49062a5", + "symbol": "BCDT", + "decimals": 18, + "name": "EvidenZ", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xacfa209fb73bf3dd5bbfb1101b9bc999c49062a5.png", + "aggregators": [ + "CoinMarketCap", + "LiFi", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 6 + }, + "0x86ed939b500e121c0c5f493f399084db596dad20": { + "address": "0x86ed939b500e121c0c5f493f399084db596dad20", + "symbol": "SPC", + "decimals": 18, + "name": "SpaceChain ERC 20", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x86ed939b500e121c0c5f493f399084db596dad20.png", + "aggregators": [ + "CoinMarketCap", + "1inch", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 6 + }, + "0x147faf8de9d8d8daae129b187f0d02d819126750": { + "address": "0x147faf8de9d8d8daae129b187f0d02d819126750", + "symbol": "GEO", + "decimals": 18, + "name": "GeoDB", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x147faf8de9d8d8daae129b187f0d02d819126750.png", + "aggregators": [ + "CoinMarketCap", + "1inch", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 6 + }, + "0x509a38b7a1cc0dcd83aa9d06214663d9ec7c7f4a": { + "address": "0x509a38b7a1cc0dcd83aa9d06214663d9ec7c7f4a", + "symbol": "BST", + "decimals": 18, + "name": "Blocksquare Token", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x509a38b7a1cc0dcd83aa9d06214663d9ec7c7f4a.png", + "aggregators": [ + "Metamask", + "1inch", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 6 + }, + "0xfa1c09fc8b491b6a4d3ff53a10cad29381b3f949": { + "address": "0xfa1c09fc8b491b6a4d3ff53a10cad29381b3f949", + "symbol": "FF", + "decimals": 18, + "name": "Falcon Finance", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xfa1c09fc8b491b6a4d3ff53a10cad29381b3f949.png", + "aggregators": [ + "CoinMarketCap", + "1inch", + "LiFi", + "Socket", + "Rubic", + "Rango" + ], + "occurrences": 6 + }, + "0xe88f8313e61a97cec1871ee37fbbe2a8bf3ed1e4": { + "address": "0xe88f8313e61a97cec1871ee37fbbe2a8bf3ed1e4", + "symbol": "VAL", + "decimals": 18, + "name": "SORA Validator", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xe88f8313e61a97cec1871ee37fbbe2a8bf3ed1e4.png", + "aggregators": [ + "Metamask", + "1inch", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 6 + }, + "0xc5d6a7b61d18afa11435a889557b068bb9f29930": { + "address": "0xc5d6a7b61d18afa11435a889557b068bb9f29930", + "symbol": "SUSDD", + "decimals": 18, + "name": "Savings USDD", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xc5d6a7b61d18afa11435a889557b068bb9f29930.png", + "aggregators": [ + "Metamask", + "1inch", + "LiFi", + "Socket", + "Rubic", + "Rango" + ], + "occurrences": 6 + }, + "0x8c543aed163909142695f2d2acd0d55791a9edb9": { + "address": "0x8c543aed163909142695f2d2acd0d55791a9edb9", + "symbol": "VLX", + "decimals": 18, + "name": "VLX", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x8c543aed163909142695f2d2acd0d55791a9edb9.png", + "aggregators": [ + "CoinMarketCap", + "1inch", + "Socket", + "Rubic", + "Sonarwatch", + "Bancor" + ], + "occurrences": 6 + }, + "0x618679df9efcd19694bb1daa8d00718eacfa2883": { + "address": "0x618679df9efcd19694bb1daa8d00718eacfa2883", + "symbol": "XYZ", + "decimals": 18, + "name": "XYZ Governance Token", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x618679df9efcd19694bb1daa8d00718eacfa2883.png", + "aggregators": [ + "CoinMarketCap", + "Socket", + "Rubic", + "Rango", + "Sonarwatch", + "SushiSwap" + ], + "occurrences": 6 + }, + "0xd58826d2c0babf1a60d8b508160b52e9c19aff07": { + "address": "0xd58826d2c0babf1a60d8b508160b52e9c19aff07", + "symbol": "CYBRO", + "decimals": 18, + "name": "CYBRO", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xd58826d2c0babf1a60d8b508160b52e9c19aff07.png", + "aggregators": [ + "CoinMarketCap", + "LiFi", + "Socket", + "Rubic", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x4f8e5de400de08b164e7421b3ee387f461becd1a": { + "address": "0x4f8e5de400de08b164e7421b3ee387f461becd1a", + "symbol": "USDD", + "decimals": 18, + "name": "Decentralized USD", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x4f8e5de400de08b164e7421b3ee387f461becd1a.png", + "aggregators": [ + "Metamask", + "1inch", + "LiFi", + "Socket", + "Rubic", + "Rango" + ], + "occurrences": 6 + }, + "0xf8e386eda857484f5a12e4b5daa9984e06e73705": { + "address": "0xf8e386eda857484f5a12e4b5daa9984e06e73705", + "symbol": "IND", + "decimals": 18, + "name": "Indorse Token", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xf8e386eda857484f5a12e4b5daa9984e06e73705.png", + "aggregators": [ + "CoinMarketCap", + "1inch", + "LiFi", + "Rubic", + "Rango", + "Bancor" + ], + "occurrences": 6 + }, + "0x543ff227f64aa17ea132bf9886cab5db55dcaddf": { + "address": "0x543ff227f64aa17ea132bf9886cab5db55dcaddf", + "symbol": "GEN", + "decimals": 18, + "name": "DAOstack", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x543ff227f64aa17ea132bf9886cab5db55dcaddf.png", + "aggregators": [ + "Metamask", + "1inch", + "LiFi", + "Socket", + "Rubic", + "Rango" + ], + "occurrences": 6 + }, + "0xb683d83a532e2cb7dfa5275eed3698436371cc9f": { + "address": "0xb683d83a532e2cb7dfa5275eed3698436371cc9f", + "symbol": "BTU", + "decimals": 18, + "name": "BTU", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xb683d83a532e2cb7dfa5275eed3698436371cc9f.png", + "aggregators": [ + "Metamask", + "LiFi", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 6 + }, + "0xdc5864ede28bd4405aa04d93e05a0531797d9d59": { + "address": "0xdc5864ede28bd4405aa04d93e05a0531797d9d59", + "symbol": "FNT", + "decimals": 6, + "name": "Falcon", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xdc5864ede28bd4405aa04d93e05a0531797d9d59.png", + "aggregators": [ + "Metamask", + "1inch", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 6 + }, + "0x36f3fd68e7325a35eb768f1aedaae9ea0689d723": { + "address": "0x36f3fd68e7325a35eb768f1aedaae9ea0689d723", + "symbol": "ESD", + "decimals": 18, + "name": "Empty Set Dollar", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x36f3fd68e7325a35eb768f1aedaae9ea0689d723.png", + "aggregators": [ + "CoinMarketCap", + "LiFi", + "Rubic", + "Rango", + "SushiSwap", + "Bancor" + ], + "occurrences": 6 + }, + "0x26607ac599266b21d13c7acf7942c7701a8b699c": { + "address": "0x26607ac599266b21d13c7acf7942c7701a8b699c", + "symbol": "PIPT", + "decimals": 18, + "name": "Power Index Pool Token", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x26607ac599266b21d13c7acf7942c7701a8b699c.png", + "aggregators": [ + "CoinMarketCap", + "1inch", + "Socket", + "Rubic", + "Rango", + "SushiSwap" + ], + "occurrences": 6 + }, + "0xa0bed124a09ac2bd941b10349d8d224fe3c955eb": { + "address": "0xa0bed124a09ac2bd941b10349d8d224fe3c955eb", + "symbol": "DEPAY", + "decimals": 18, + "name": "DePay", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xa0bed124a09ac2bd941b10349d8d224fe3c955eb.png", + "aggregators": [ + "CoinMarketCap", + "1inch", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 6 + }, + "0x8a9c4dfe8b9d8962b31e4e16f8321c44d48e246e": { + "address": "0x8a9c4dfe8b9d8962b31e4e16f8321c44d48e246e", + "symbol": "NCT", + "decimals": 18, + "name": "NameChangeToken", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x8a9c4dfe8b9d8962b31e4e16f8321c44d48e246e.png", + "aggregators": [ + "CoinMarketCap", + "1inch", + "Socket", + "Rubic", + "Rango", + "SushiSwap" + ], + "occurrences": 6 + }, + "0x7f3edcdd180dbe4819bd98fee8929b5cedb3adeb": { + "address": "0x7f3edcdd180dbe4819bd98fee8929b5cedb3adeb", + "symbol": "XTK", + "decimals": 18, + "name": "xToken", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x7f3edcdd180dbe4819bd98fee8929b5cedb3adeb.png", + "aggregators": [ + "CoinMarketCap", + "TrustWallet", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 6 + }, + "0x1c5db575e2ff833e46a2e9864c22f4b22e0b37c2": { + "address": "0x1c5db575e2ff833e46a2e9864c22f4b22e0b37c2", + "symbol": "RENZEC", + "decimals": 8, + "name": "renZEC", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x1c5db575e2ff833e46a2e9864c22f4b22e0b37c2.png", + "aggregators": [ + "CoinMarketCap", + "1inch", + "LiFi", + "Rubic", + "Rango", + "Bancor" + ], + "occurrences": 6 + }, + "0x9625ce7753ace1fa1865a47aae2c5c2ce4418569": { + "address": "0x9625ce7753ace1fa1865a47aae2c5c2ce4418569", + "symbol": "KAP", + "decimals": 18, + "name": "KAP Games", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x9625ce7753ace1fa1865a47aae2c5c2ce4418569.png", + "aggregators": [ + "Metamask", + "LiFi", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 6 + }, + "0x0c10bf8fcb7bf5412187a595ab97a3609160b5c6": { + "address": "0x0c10bf8fcb7bf5412187a595ab97a3609160b5c6", + "symbol": "USDDOLD", + "decimals": 18, + "name": "USDDOLD (BTTC Bridge)", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x0c10bf8fcb7bf5412187a595ab97a3609160b5c6.png", + "aggregators": [ + "Metamask", + "1inch", + "LiFi", + "Socket", + "Rubic", + "Rango" + ], + "occurrences": 6 + }, + "0x72b886d09c117654ab7da13a14d603001de0b777": { + "address": "0x72b886d09c117654ab7da13a14d603001de0b777", + "symbol": "XDEFI", + "decimals": 18, + "name": "XDEFI", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x72b886d09c117654ab7da13a14d603001de0b777.png", + "aggregators": [ + "LiFi", + "Rubic", + "Squid", + "Rango", + "Sonarwatch", + "SushiSwap" + ], + "occurrences": 6 + }, + "0x799ebfabe77a6e34311eeee9825190b9ece32824": { + "address": "0x799ebfabe77a6e34311eeee9825190b9ece32824", + "symbol": "BTRST", + "decimals": 18, + "name": "Braintrust", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x799ebfabe77a6e34311eeee9825190b9ece32824.png", + "aggregators": [ + "OpenSwap", + "1inch", + "Socket", + "Rubic", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x1fcdce58959f536621d76f5b7ffb955baa5a672f": { + "address": "0x1fcdce58959f536621d76f5b7ffb955baa5a672f", + "symbol": "FOR", + "decimals": 18, + "name": "ForTube", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x1fcdce58959f536621d76f5b7ffb955baa5a672f.png", + "aggregators": [ + "CoinMarketCap", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0xa1d65e8fb6e87b60feccbc582f7f97804b725521": { + "address": "0xa1d65e8fb6e87b60feccbc582f7f97804b725521", + "symbol": "DXD", + "decimals": 18, + "name": "DXdao", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xa1d65e8fb6e87b60feccbc582f7f97804b725521.png", + "aggregators": [ + "CoinMarketCap", + "LiFi", + "Rubic", + "Rango", + "Bancor" + ], + "occurrences": 5 + }, + "0xf650c3d88d12db855b8bf7d11be6c55a4e07dcc9": { + "address": "0xf650c3d88d12db855b8bf7d11be6c55a4e07dcc9", + "symbol": "CUSDT", + "decimals": 8, + "name": "Compound Tether", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xf650c3d88d12db855b8bf7d11be6c55a4e07dcc9.png", + "aggregators": ["Metamask", "1inch", "LiFi", "Rubic", "Rango"], + "occurrences": 5 + }, + "0x43044f861ec040db59a7e324c40507addb673142": { + "address": "0x43044f861ec040db59a7e324c40507addb673142", + "symbol": "CAP", + "decimals": 18, + "name": "Cap", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x43044f861ec040db59a7e324c40507addb673142.png", + "aggregators": [ + "CoinMarketCap", + "LiFi", + "Rubic", + "Rango", + "Bancor" + ], + "occurrences": 5 + }, + "0xad32a8e6220741182940c5abf610bde99e737b2d": { + "address": "0xad32a8e6220741182940c5abf610bde99e737b2d", + "symbol": "DOUGH", + "decimals": 18, + "name": "PieDAO", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xad32a8e6220741182940c5abf610bde99e737b2d.png", + "aggregators": [ + "CoinMarketCap", + "LiFi", + "Rubic", + "Rango", + "SushiSwap" + ], + "occurrences": 5 + }, + "0x70e36f6bf80a52b3b46b3af8e106cc0ed743e8e4": { + "address": "0x70e36f6bf80a52b3b46b3af8e106cc0ed743e8e4", + "symbol": "CCOMP", + "decimals": 8, + "name": "Compound Collateral", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x70e36f6bf80a52b3b46b3af8e106cc0ed743e8e4.png", + "aggregators": [ + "Metamask", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x817bbdbc3e8a1204f3691d14bb44992841e3db35": { + "address": "0x817bbdbc3e8a1204f3691d14bb44992841e3db35", + "symbol": "CUDOS", + "decimals": 18, + "name": "Cudos", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x817bbdbc3e8a1204f3691d14bb44992841e3db35.png", + "aggregators": [ + "CoinMarketCap", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0xdc9ac3c20d1ed0b540df9b1fedc10039df13f99c": { + "address": "0xdc9ac3c20d1ed0b540df9b1fedc10039df13f99c", + "symbol": "UTK", + "decimals": 18, + "name": "xMoney", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xdc9ac3c20d1ed0b540df9b1fedc10039df13f99c.png", + "aggregators": [ + "CoinMarketCap", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x9f284e1337a815fe77d2ff4ae46544645b20c5ff": { + "address": "0x9f284e1337a815fe77d2ff4ae46544645b20c5ff", + "symbol": "KTON", + "decimals": 18, + "name": "Darwinia Commitment Token", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x9f284e1337a815fe77d2ff4ae46544645b20c5ff.png", + "aggregators": [ + "Metamask", + "LiFi", + "Socket", + "Rubic", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x6fe56c0bcdd471359019fcbc48863d6c3e9d4f41": { + "address": "0x6fe56c0bcdd471359019fcbc48863d6c3e9d4f41", + "symbol": "PROPS", + "decimals": 18, + "name": "Props Token", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x6fe56c0bcdd471359019fcbc48863d6c3e9d4f41.png", + "aggregators": ["Metamask", "LiFi", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 5 + }, + "0x4b4d2e899658fb59b1d518b68fe836b100ee8958": { + "address": "0x4b4d2e899658fb59b1d518b68fe836b100ee8958", + "symbol": "MIS", + "decimals": 18, + "name": "Mithril Shares", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x4b4d2e899658fb59b1d518b68fe836b100ee8958.png", + "aggregators": [ + "CoinMarketCap", + "Socket", + "Rubic", + "Rango", + "SushiSwap" + ], + "occurrences": 5 + }, + "0x55c08ca52497e2f1534b59e2917bf524d4765257": { + "address": "0x55c08ca52497e2f1534b59e2917bf524d4765257", + "symbol": "UWU", + "decimals": 18, + "name": "UwU Lend", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x55c08ca52497e2f1534b59e2917bf524d4765257.png", + "aggregators": [ + "CoinMarketCap", + "Rubic", + "Rango", + "Sonarwatch", + "SushiSwap" + ], + "occurrences": 5 + }, + "0xb4272071ecadd69d933adcd19ca99fe80664fc08": { + "address": "0xb4272071ecadd69d933adcd19ca99fe80664fc08", + "symbol": "XCHF", + "decimals": 18, + "name": "CryptoFranc", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xb4272071ecadd69d933adcd19ca99fe80664fc08.png", + "aggregators": ["Metamask", "LiFi", "Socket", "Rubic"], + "occurrences": 4 + }, + "0xe5a3229ccb22b6484594973a03a3851dcd948756": { + "address": "0xe5a3229ccb22b6484594973a03a3851dcd948756", + "symbol": "RAE", + "decimals": 18, + "name": "RAE Token", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xe5a3229ccb22b6484594973a03a3851dcd948756.png", + "aggregators": ["Metamask", "LiFi", "Rubic", "Rango"], + "occurrences": 4 + }, + "0xd1d2eb1b1e90b638588728b4130137d262c87cae": { + "address": "0xd1d2eb1b1e90b638588728b4130137d262c87cae", + "symbol": "GALA", + "decimals": 8, + "name": "Gala", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xd1d2eb1b1e90b638588728b4130137d262c87cae.png", + "aggregators": [ + "CoinMarketCap", + "1inch", + "LiFi", + "TrustWallet", + "Socket", + "Rubic", + "Rango", + "Sonarwatch", + "SushiSwap" + ], + "occurrences": 9 + }, + "0xee2a03aa6dacf51c18679c516ad5283d8e7c2637": { + "address": "0xee2a03aa6dacf51c18679c516ad5283d8e7c2637", + "symbol": "NEIRO", + "decimals": 9, + "name": "Neiro", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xee2a03aa6dacf51c18679c516ad5283d8e7c2637.png", + "aggregators": [ + "CoinMarketCap", + "1inch", + "LiFi", + "Socket", + "Rubic", + "Squid", + "Rango", + "Sonarwatch", + "SushiSwap" + ], + "occurrences": 9 + }, + "0x152649ea73beab28c5b49b26eb48f7ead6d4c898": { + "address": "0x152649ea73beab28c5b49b26eb48f7ead6d4c898", + "symbol": "CAKE", + "decimals": 18, + "name": "PancakeSwap", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x152649ea73beab28c5b49b26eb48f7ead6d4c898.png", + "aggregators": [ + "CoinMarketCap", + "1inch", + "LiFi", + "Socket", + "Rubic", + "Squid", + "Rango", + "Sonarwatch" + ], + "occurrences": 8 + }, + "0x58d97b57bb95320f9a05dc918aef65434969c2b2": { + "address": "0x58d97b57bb95320f9a05dc918aef65434969c2b2", + "symbol": "MORPHO", + "decimals": 18, + "name": "Morpho", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x58d97b57bb95320f9a05dc918aef65434969c2b2.png", + "aggregators": [ + "CoinMarketCap", + "1inch", + "LiFi", + "Socket", + "Rubic", + "Squid", + "Rango", + "Sonarwatch" + ], + "occurrences": 8 + }, + "0x75231f58b43240c9718dd58b4967c5114342a86c": { + "address": "0x75231f58b43240c9718dd58b4967c5114342a86c", + "symbol": "OKB", + "decimals": 18, + "name": "OKB", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x75231f58b43240c9718dd58b4967c5114342a86c.png", + "aggregators": [ + "CoinGecko", + "1inch", + "LiFi", + "Socket", + "Rubic", + "Squid", + "Rango", + "Sonarwatch" + ], + "occurrences": 8 + }, + "0xfaba6f8e4a5e8ab82f62fe7c39859fa577269be3": { + "address": "0xfaba6f8e4a5e8ab82f62fe7c39859fa577269be3", + "symbol": "ONDO", + "decimals": 18, + "name": "Ondo", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xfaba6f8e4a5e8ab82f62fe7c39859fa577269be3.png", + "aggregators": [ + "CoinMarketCap", + "1inch", + "LiFi", + "Socket", + "Rubic", + "Squid", + "Rango", + "Sonarwatch" + ], + "occurrences": 8 + }, + "0x467bccd9d29f223bce8043b84e8c8b282827790f": { + "address": "0x467bccd9d29f223bce8043b84e8c8b282827790f", + "symbol": "TEL", + "decimals": 2, + "name": "Telcoin", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x467bccd9d29f223bce8043b84e8c8b282827790f.png", + "aggregators": [ + "CoinMarketCap", + "1inch", + "LiFi", + "Socket", + "Rubic", + "Squid", + "Rango", + "Sonarwatch" + ], + "occurrences": 8 + }, + "0xa2cd3d43c775978a96bdbf12d733d5a1ed94fb18": { + "address": "0xa2cd3d43c775978a96bdbf12d733d5a1ed94fb18", + "symbol": "XCN", + "decimals": 18, + "name": "Onyxcoin", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xa2cd3d43c775978a96bdbf12d733d5a1ed94fb18.png", + "aggregators": [ + "CoinMarketCap", + "1inch", + "LiFi", + "Socket", + "Rubic", + "Squid", + "Rango", + "Sonarwatch" + ], + "occurrences": 8 + }, + "0xb26631c6dda06ad89b93c71400d25692de89c068": { + "address": "0xb26631c6dda06ad89b93c71400d25692de89c068", + "symbol": "MINDS", + "decimals": 18, + "name": "Minds", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xb26631c6dda06ad89b93c71400d25692de89c068.png", + "aggregators": [ + "Metamask", + "1inch", + "LiFi", + "TrustWallet", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 8 + }, + "0x4c9edd5852cd905f086c759e8383e09bff1e68b3": { + "address": "0x4c9edd5852cd905f086c759e8383e09bff1e68b3", + "symbol": "USDE", + "decimals": 18, + "name": "Ethena USDe", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x4c9edd5852cd905f086c759e8383e09bff1e68b3.png", + "aggregators": [ + "CoinMarketCap", + "1inch", + "LiFi", + "Socket", + "Rubic", + "Squid", + "Rango", + "Sonarwatch" + ], + "occurrences": 8 + }, + "0xa3931d71877c0e7a3148cb7eb4463524fec27fbd": { + "address": "0xa3931d71877c0e7a3148cb7eb4463524fec27fbd", + "symbol": "SUSDS", + "decimals": 18, + "name": "Savings USDS", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xa3931d71877c0e7a3148cb7eb4463524fec27fbd.png", + "aggregators": [ + "Metamask", + "1inch", + "LiFi", + "Socket", + "Rubic", + "Squid", + "Rango", + "Sonarwatch" + ], + "occurrences": 8 + }, + "0x25e1474170c4c0aa64fa98123bdc8db49d7802fa": { + "address": "0x25e1474170c4c0aa64fa98123bdc8db49d7802fa", + "symbol": "BID", + "decimals": 18, + "name": "Bidao", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x25e1474170c4c0aa64fa98123bdc8db49d7802fa.png", + "aggregators": [ + "CoinMarketCap", + "1inch", + "LiFi", + "TrustWallet", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 8 + }, + "0x0fd10b9899882a6f2fcb5c371e17e70fdee00c38": { + "address": "0x0fd10b9899882a6f2fcb5c371e17e70fdee00c38", + "symbol": "PUNDIX", + "decimals": 18, + "name": "Pundi X", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x0fd10b9899882a6f2fcb5c371e17e70fdee00c38.png", + "aggregators": [ + "CoinGecko", + "TrustWallet", + "Socket", + "Rubic", + "Squid", + "Rango", + "Sonarwatch", + "SushiSwap" + ], + "occurrences": 8 + }, + "0x81f8f0bb1cb2a06649e51913a151f0e7ef6fa321": { + "address": "0x81f8f0bb1cb2a06649e51913a151f0e7ef6fa321", + "symbol": "VITA", + "decimals": 18, + "name": "VitaDAO Token", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x81f8f0bb1cb2a06649e51913a151f0e7ef6fa321.png", + "aggregators": [ + "CoinMarketCap", + "1inch", + "LiFi", + "Socket", + "Rubic", + "Rango", + "Sonarwatch", + "Bancor" + ], + "occurrences": 8 + }, + "0x35e78b3982e87ecfd5b3f3265b601c046cdbe232": { + "address": "0x35e78b3982e87ecfd5b3f3265b601c046cdbe232", + "symbol": "XAI", + "decimals": 18, + "name": "SideShift Token", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x35e78b3982e87ecfd5b3f3265b601c046cdbe232.png", + "aggregators": [ + "CoinMarketCap", + "1inch", + "LiFi", + "Socket", + "Rubic", + "Rango", + "Sonarwatch", + "SushiSwap" + ], + "occurrences": 8 + }, + "0xfb782396c9b20e564a64896181c7ac8d8979d5f4": { + "address": "0xfb782396c9b20e564a64896181c7ac8d8979d5f4", + "symbol": "DIVER", + "decimals": 18, + "name": "DivergenceProtocol", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xfb782396c9b20e564a64896181c7ac8d8979d5f4.png", + "aggregators": [ + "CoinMarketCap", + "1inch", + "LiFi", + "Socket", + "Rubic", + "Rango", + "Sonarwatch", + "SushiSwap" + ], + "occurrences": 8 + }, + "0x72e364f2abdc788b7e918bc238b21f109cd634d7": { + "address": "0x72e364f2abdc788b7e918bc238b21f109cd634d7", + "symbol": "MVI", + "decimals": 18, + "name": "Metaverse Index", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x72e364f2abdc788b7e918bc238b21f109cd634d7.png", + "aggregators": [ + "CoinMarketCap", + "1inch", + "LiFi", + "TrustWallet", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 8 + }, + "0x41a3dba3d677e573636ba691a70ff2d606c29666": { + "address": "0x41a3dba3d677e573636ba691a70ff2d606c29666", + "symbol": "BLANK", + "decimals": 18, + "name": "GoBlank", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x41a3dba3d677e573636ba691a70ff2d606c29666.png", + "aggregators": [ + "CoinMarketCap", + "1inch", + "LiFi", + "TrustWallet", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 8 + }, + "0x5de8ab7e27f6e7a1fff3e5b337584aa43961beef": { + "address": "0x5de8ab7e27f6e7a1fff3e5b337584aa43961beef", + "symbol": "SDEX", + "decimals": 18, + "name": "SMARDEX", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x5de8ab7e27f6e7a1fff3e5b337584aa43961beef.png", + "aggregators": [ + "CoinMarketCap", + "1inch", + "LiFi", + "Socket", + "Rubic", + "Squid", + "Rango", + "Sonarwatch" + ], + "occurrences": 8 + }, + "0x5e8422345238f34275888049021821e8e08caa1f": { + "address": "0x5e8422345238f34275888049021821e8e08caa1f", + "symbol": "FRXETH", + "decimals": 18, + "name": "Frax Ether", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x5e8422345238f34275888049021821e8e08caa1f.png", + "aggregators": [ + "CoinMarketCap", + "1inch", + "LiFi", + "Socket", + "Rubic", + "Squid", + "Rango", + "Sonarwatch" + ], + "occurrences": 8 + }, + "0x83f20f44975d03b1b09e64809b757c47f942beea": { + "address": "0x83f20f44975d03b1b09e64809b757c47f942beea", + "symbol": "SDAI", + "decimals": 18, + "name": "Savings Dai", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x83f20f44975d03b1b09e64809b757c47f942beea.png", + "aggregators": [ + "CoinMarketCap", + "1inch", + "LiFi", + "Socket", + "Rubic", + "Squid", + "Rango", + "Sonarwatch" + ], + "occurrences": 8 + }, + "0xbf5495efe5db9ce00f80364c8b423567e58d2110": { + "address": "0xbf5495efe5db9ce00f80364c8b423567e58d2110", + "symbol": "EZETH", + "decimals": 18, + "name": "Renzo Restaked ETH", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xbf5495efe5db9ce00f80364c8b423567e58d2110.png", + "aggregators": [ + "CoinMarketCap", + "1inch", + "LiFi", + "Socket", + "Rubic", + "Squid", + "Rango", + "Sonarwatch" + ], + "occurrences": 8 + }, + "0xa8b919680258d369114910511cc87595aec0be6d": { + "address": "0xa8b919680258d369114910511cc87595aec0be6d", + "symbol": "LYXE", + "decimals": 18, + "name": "LUKSO", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xa8b919680258d369114910511cc87595aec0be6d.png", + "aggregators": [ + "CoinGecko", + "1inch", + "LiFi", + "TrustWallet", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 8 + }, + "0x27c70cd1946795b66be9d954418546998b546634": { + "address": "0x27c70cd1946795b66be9d954418546998b546634", + "symbol": "LEASH", + "decimals": 18, + "name": "DOGE KILLER", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x27c70cd1946795b66be9d954418546998b546634.png", + "aggregators": [ + "CoinMarketCap", + "1inch", + "LiFi", + "TrustWallet", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 8 + }, + "0xab2a7b5876d707e0126b3a75ef7781c77c8877ee": { + "address": "0xab2a7b5876d707e0126b3a75ef7781c77c8877ee", + "symbol": "QUAD", + "decimals": 18, + "name": "Quadency Token", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xab2a7b5876d707e0126b3a75ef7781c77c8877ee.png", + "aggregators": [ + "CoinMarketCap", + "1inch", + "LiFi", + "Socket", + "Rubic", + "Rango", + "Sonarwatch", + "SushiSwap" + ], + "occurrences": 8 + }, + "0x9d39a5de30e57443bff2a8307a4256c8797a3497": { + "address": "0x9d39a5de30e57443bff2a8307a4256c8797a3497", + "symbol": "SUSDE", + "decimals": 18, + "name": "Ethena Staked USDe", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x9d39a5de30e57443bff2a8307a4256c8797a3497.png", + "aggregators": [ + "CoinMarketCap", + "1inch", + "LiFi", + "Socket", + "Rubic", + "Squid", + "Rango", + "Sonarwatch" + ], + "occurrences": 8 + }, + "0xc5f0f7b66764f6ec8c8dff7ba683102295e16409": { + "address": "0xc5f0f7b66764f6ec8c8dff7ba683102295e16409", + "symbol": "FDUSD", + "decimals": 18, + "name": "First Digital USD", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xc5f0f7b66764f6ec8c8dff7ba683102295e16409.png", + "aggregators": [ + "CoinMarketCap", + "1inch", + "LiFi", + "Socket", + "Rubic", + "Squid", + "Rango", + "Sonarwatch" + ], + "occurrences": 8 + }, + "0xa2e3356610840701bdf5611a53974510ae27e2e1": { + "address": "0xa2e3356610840701bdf5611a53974510ae27e2e1", + "symbol": "WBETH", + "decimals": 18, + "name": "Wrapped Beacon ETH", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xa2e3356610840701bdf5611a53974510ae27e2e1.png", + "aggregators": [ + "CoinMarketCap", + "1inch", + "LiFi", + "Socket", + "Rubic", + "Squid", + "Rango", + "Sonarwatch" + ], + "occurrences": 8 + }, + "0x8236a87084f8b84306f72007f36f2618a5634494": { + "address": "0x8236a87084f8b84306f72007f36f2618a5634494", + "symbol": "LBTC", + "decimals": 8, + "name": "Lombard Staked BTC", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x8236a87084f8b84306f72007f36f2618a5634494.png", + "aggregators": [ + "CoinMarketCap", + "1inch", + "LiFi", + "Socket", + "Rubic", + "Squid", + "Rango", + "Sonarwatch" + ], + "occurrences": 8 + }, + "0x6243d8cea23066d098a15582d81a598b4e8391f4": { + "address": "0x6243d8cea23066d098a15582d81a598b4e8391f4", + "symbol": "FLX", + "decimals": 18, + "name": "Reflexer Ungovernance Token", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x6243d8cea23066d098a15582d81a598b4e8391f4.png", + "aggregators": [ + "Metamask", + "1inch", + "LiFi", + "TrustWallet", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 8 + }, + "0x954b890704693af242613edef1b603825afcd708": { + "address": "0x954b890704693af242613edef1b603825afcd708", + "symbol": "CARD", + "decimals": 18, + "name": "Cardstack", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x954b890704693af242613edef1b603825afcd708.png", + "aggregators": [ + "CoinMarketCap", + "1inch", + "LiFi", + "TrustWallet", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 8 + }, + "0x26c8afbbfe1ebaca03c2bb082e69d0476bffe099": { + "address": "0x26c8afbbfe1ebaca03c2bb082e69d0476bffe099", + "symbol": "CELL", + "decimals": 18, + "name": "Cellframe", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x26c8afbbfe1ebaca03c2bb082e69d0476bffe099.png", + "aggregators": [ + "CoinMarketCap", + "1inch", + "LiFi", + "TrustWallet", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 8 + }, + "0x6b4c7a5e3f0b99fcd83e9c089bddd6c7fce5c611": { + "address": "0x6b4c7a5e3f0b99fcd83e9c089bddd6c7fce5c611", + "symbol": "MM", + "decimals": 18, + "name": "Million", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x6b4c7a5e3f0b99fcd83e9c089bddd6c7fce5c611.png", + "aggregators": [ + "Metamask", + "1inch", + "LiFi", + "Socket", + "Rubic", + "Rango", + "Sonarwatch", + "SushiSwap" + ], + "occurrences": 8 + }, + "0xdb5c3c46e28b53a39c255aa39a411dd64e5fed9c": { + "address": "0xdb5c3c46e28b53a39c255aa39a411dd64e5fed9c", + "symbol": "NCR", + "decimals": 18, + "name": "Neos Credits", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xdb5c3c46e28b53a39c255aa39a411dd64e5fed9c.png", + "aggregators": [ + "CoinGecko", + "1inch", + "LiFi", + "Socket", + "Rubic", + "Rango", + "Sonarwatch", + "SushiSwap" + ], + "occurrences": 8 + }, + "0x39fbbabf11738317a448031930706cd3e612e1b9": { + "address": "0x39fbbabf11738317a448031930706cd3e612e1b9", + "symbol": "WXRP", + "decimals": 18, + "name": "Wrapped XRP", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x39fbbabf11738317a448031930706cd3e612e1b9.png", + "aggregators": [ + "Metamask", + "1inch", + "LiFi", + "Socket", + "Rubic", + "Rango", + "Sonarwatch", + "SushiSwap" + ], + "occurrences": 8 + }, + "0xd38bb40815d2b0c2d2c866e0c72c5728ffc76dd9": { + "address": "0xd38bb40815d2b0c2d2c866e0c72c5728ffc76dd9", + "symbol": "SIS", + "decimals": 18, + "name": "Symbiosis", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xd38bb40815d2b0c2d2c866e0c72c5728ffc76dd9.png", + "aggregators": [ + "CoinMarketCap", + "1inch", + "LiFi", + "Socket", + "Rubic", + "Squid", + "Rango", + "Sonarwatch" + ], + "occurrences": 8 + }, + "0x232fb065d9d24c34708eedbf03724f2e95abe768": { + "address": "0x232fb065d9d24c34708eedbf03724f2e95abe768", + "symbol": "SHEESHA", + "decimals": 18, + "name": "Sheesha Finance", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x232fb065d9d24c34708eedbf03724f2e95abe768.png", + "aggregators": [ + "CoinGecko", + "1inch", + "LiFi", + "Socket", + "Rubic", + "Rango", + "Sonarwatch", + "Bancor" + ], + "occurrences": 8 + }, + "0x1e4ede388cbc9f4b5c79681b7f94d36a11abebc9": { + "address": "0x1e4ede388cbc9f4b5c79681b7f94d36a11abebc9", + "symbol": "X2Y2", + "decimals": 18, + "name": "X2Y2Token", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x1e4ede388cbc9f4b5c79681b7f94d36a11abebc9.png", + "aggregators": [ + "CoinMarketCap", + "1inch", + "LiFi", + "TrustWallet", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 8 + }, + "0x98585dfc8d9e7d48f0b1ae47ce33332cf4237d96": { + "address": "0x98585dfc8d9e7d48f0b1ae47ce33332cf4237d96", + "symbol": "NEWO", + "decimals": 18, + "name": "New Order", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x98585dfc8d9e7d48f0b1ae47ce33332cf4237d96.png", + "aggregators": [ + "CoinMarketCap", + "1inch", + "LiFi", + "Socket", + "Rubic", + "Rango", + "Sonarwatch", + "SushiSwap" + ], + "occurrences": 8 + }, + "0xf418588522d5dd018b425e472991e52ebbeeeeee": { + "address": "0xf418588522d5dd018b425e472991e52ebbeeeeee", + "symbol": "PUSH", + "decimals": 18, + "name": "PUSH", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xf418588522d5dd018b425e472991e52ebbeeeeee.png", + "aggregators": [ + "CoinMarketCap", + "1inch", + "LiFi", + "TrustWallet", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 8 + }, + "0xc52c326331e9ce41f04484d3b5e5648158028804": { + "address": "0xc52c326331e9ce41f04484d3b5e5648158028804", + "symbol": "ZCX", + "decimals": 18, + "name": "Unizen", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xc52c326331e9ce41f04484d3b5e5648158028804.png", + "aggregators": [ + "CoinMarketCap", + "1inch", + "LiFi", + "TrustWallet", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 8 + }, + "0xe1b4d34e8754600962cd944b535180bd758e6c2e": { + "address": "0xe1b4d34e8754600962cd944b535180bd758e6c2e", + "symbol": "AGETH", + "decimals": 18, + "name": "Kelp Gain", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xe1b4d34e8754600962cd944b535180bd758e6c2e.png", + "aggregators": [ + "CoinMarketCap", + "1inch", + "LiFi", + "Socket", + "Rubic", + "Squid", + "Rango", + "Sonarwatch" + ], + "occurrences": 8 + }, + "0x24fcfc492c1393274b6bcd568ac9e225bec93584": { + "address": "0x24fcfc492c1393274b6bcd568ac9e225bec93584", + "symbol": "MAVIA", + "decimals": 18, + "name": "Heroes of Mavia", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x24fcfc492c1393274b6bcd568ac9e225bec93584.png", + "aggregators": [ + "CoinMarketCap", + "1inch", + "LiFi", + "Socket", + "Rubic", + "Squid", + "Rango", + "Sonarwatch" + ], + "occurrences": 8 + }, + "0xb0c7a3ba49c7a6eaba6cd4a96c55a1391070ac9a": { + "address": "0xb0c7a3ba49c7a6eaba6cd4a96c55a1391070ac9a", + "symbol": "MAGIC", + "decimals": 18, + "name": "Treasure", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xb0c7a3ba49c7a6eaba6cd4a96c55a1391070ac9a.png", + "aggregators": [ + "Metamask", + "LiFi", + "TrustWallet", + "Socket", + "Rubic", + "Squid", + "Rango", + "Sonarwatch" + ], + "occurrences": 8 + }, + "0xb0ffa8000886e57f86dd5264b9582b2ad87b2b91": { + "address": "0xb0ffa8000886e57f86dd5264b9582b2ad87b2b91", + "symbol": "W", + "decimals": 18, + "name": "Wormhole", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xb0ffa8000886e57f86dd5264b9582b2ad87b2b91.png", + "aggregators": [ + "CoinMarketCap", + "1inch", + "LiFi", + "Socket", + "Rubic", + "Squid", + "Rango", + "Sonarwatch" + ], + "occurrences": 8 + }, + "0x1fe24f25b1cf609b9c4e7e12d802e3640dfa5e43": { + "address": "0x1fe24f25b1cf609b9c4e7e12d802e3640dfa5e43", + "symbol": "CGG", + "decimals": 18, + "name": "ChainGuardians Governance Token", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x1fe24f25b1cf609b9c4e7e12d802e3640dfa5e43.png", + "aggregators": [ + "CoinMarketCap", + "LiFi", + "TrustWallet", + "Socket", + "Rubic", + "Rango", + "Sonarwatch", + "SushiSwap" + ], + "occurrences": 8 + }, + "0x01ba67aac7f75f647d94220cc98fb30fcc5105bf": { + "address": "0x01ba67aac7f75f647d94220cc98fb30fcc5105bf", + "symbol": "LYRA", + "decimals": 18, + "name": "Lyra Token", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x01ba67aac7f75f647d94220cc98fb30fcc5105bf.png", + "aggregators": [ + "CoinMarketCap", + "LiFi", + "Socket", + "Rubic", + "Rango", + "Sonarwatch", + "SushiSwap", + "Bancor" + ], + "occurrences": 8 + }, + "0x1a7e4e63778b4f12a199c062f3efdd288afcbce8": { + "address": "0x1a7e4e63778b4f12a199c062f3efdd288afcbce8", + "symbol": "EURA", + "decimals": 18, + "name": "EURA", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x1a7e4e63778b4f12a199c062f3efdd288afcbce8.png", + "aggregators": [ + "Metamask", + "1inch", + "LiFi", + "Rubic", + "Rango", + "Sonarwatch", + "SushiSwap" + ], + "occurrences": 7 + }, + "0x6b0b3a982b4634ac68dd83a4dbf02311ce324181": { + "address": "0x6b0b3a982b4634ac68dd83a4dbf02311ce324181", + "symbol": "ALI", + "decimals": 18, + "name": "Artificial Liquid Intelligence", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x6b0b3a982b4634ac68dd83a4dbf02311ce324181.png", + "aggregators": [ + "CoinMarketCap", + "1inch", + "LiFi", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 7 + }, + "0x3d658390460295fb963f54dc0899cfb1c30776df": { + "address": "0x3d658390460295fb963f54dc0899cfb1c30776df", + "symbol": "COVAL", + "decimals": 8, + "name": "Circuits of Value", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x3d658390460295fb963f54dc0899cfb1c30776df.png", + "aggregators": [ + "OpenSwap", + "1inch", + "LiFi", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 7 + }, + "0x66761fa41377003622aee3c7675fc7b5c1c2fac5": { + "address": "0x66761fa41377003622aee3c7675fc7b5c1c2fac5", + "symbol": "CPOOL", + "decimals": 18, + "name": "Clearpool", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x66761fa41377003622aee3c7675fc7b5c1c2fac5.png", + "aggregators": [ + "CoinMarketCap", + "1inch", + "LiFi", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 7 + }, + "0x961c8c0b1aad0c0b10a51fef6a867e3091bcef17": { + "address": "0x961c8c0b1aad0c0b10a51fef6a867e3091bcef17", + "symbol": "DYP", + "decimals": 18, + "name": "Dypius OLD", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x961c8c0b1aad0c0b10a51fef6a867e3091bcef17.png", + "aggregators": [ + "CoinGecko", + "1inch", + "LiFi", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 7 + }, + "0xef3a930e1ffffacd2fc13434ac81bd278b0ecc8d": { + "address": "0xef3a930e1ffffacd2fc13434ac81bd278b0ecc8d", + "symbol": "FIS", + "decimals": 18, + "name": "Stafi", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xef3a930e1ffffacd2fc13434ac81bd278b0ecc8d.png", + "aggregators": [ + "CoinMarketCap", + "1inch", + "LiFi", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 7 + }, + "0x41545f8b9472d758bb669ed8eaeeecd7a9c4ec29": { + "address": "0x41545f8b9472d758bb669ed8eaeeecd7a9c4ec29", + "symbol": "FORT", + "decimals": 18, + "name": "Forta", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x41545f8b9472d758bb669ed8eaeeecd7a9c4ec29.png", + "aggregators": [ + "CoinMarketCap", + "1inch", + "LiFi", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 7 + }, + "0xc08512927d12348f6620a698105e1baac6ecd911": { + "address": "0xc08512927d12348f6620a698105e1baac6ecd911", + "symbol": "GYEN", + "decimals": 6, + "name": "GYEN", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xc08512927d12348f6620a698105e1baac6ecd911.png", + "aggregators": [ + "OpenSwap", + "1inch", + "LiFi", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 7 + }, + "0x6033f7f88332b8db6ad452b7c6d5bb643990ae3f": { + "address": "0x6033f7f88332b8db6ad452b7c6d5bb643990ae3f", + "symbol": "LSK", + "decimals": 18, + "name": "Lisk", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x6033f7f88332b8db6ad452b7c6d5bb643990ae3f.png", + "aggregators": [ + "CoinMarketCap", + "1inch", + "LiFi", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 7 + }, + "0xfc98e825a2264d890f9a1e68ed50e1526abccacd": { + "address": "0xfc98e825a2264d890f9a1e68ed50e1526abccacd", + "symbol": "MCO2", + "decimals": 18, + "name": "Moss Carbon Credit", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xfc98e825a2264d890f9a1e68ed50e1526abccacd.png", + "aggregators": [ + "OpenSwap", + "LiFi", + "TrustWallet", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 7 + }, + "0x3c3a81e81dc49a522a592e7622a7e711c06bf354": { + "address": "0x3c3a81e81dc49a522a592e7622a7e711c06bf354", + "symbol": "MNT", + "decimals": 18, + "name": "Mantle", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x3c3a81e81dc49a522a592e7622a7e711c06bf354.png", + "aggregators": [ + "CoinMarketCap", + "1inch", + "LiFi", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 7 + }, + "0x5cf04716ba20127f1e2297addcf4b5035000c9eb": { + "address": "0x5cf04716ba20127f1e2297addcf4b5035000c9eb", + "symbol": "NKN", + "decimals": 18, + "name": "NKN", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x5cf04716ba20127f1e2297addcf4b5035000c9eb.png", + "aggregators": [ + "OpenSwap", + "1inch", + "LiFi", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 7 + }, + "0x226bb599a12c826476e3a771454697ea52e9e220": { + "address": "0x226bb599a12c826476e3a771454697ea52e9e220", + "symbol": "PRO", + "decimals": 8, + "name": "Propy", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x226bb599a12c826476e3a771454697ea52e9e220.png", + "aggregators": [ + "OpenSwap", + "1inch", + "LiFi", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 7 + }, + "0x30d20208d987713f46dfd34ef128bb16c404d10f": { + "address": "0x30d20208d987713f46dfd34ef128bb16c404d10f", + "symbol": "SD", + "decimals": 18, + "name": "Stader", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x30d20208d987713f46dfd34ef128bb16c404d10f.png", + "aggregators": [ + "CoinMarketCap", + "1inch", + "LiFi", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 7 + }, + "0xcdf7028ceab81fa0c6971208e83fa7872994bee5": { + "address": "0xcdf7028ceab81fa0c6971208e83fa7872994bee5", + "symbol": "T", + "decimals": 18, + "name": "Threshold Network", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xcdf7028ceab81fa0c6971208e83fa7872994bee5.png", + "aggregators": [ + "CoinMarketCap", + "1inch", + "LiFi", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 7 + }, + "0x4507cef57c46789ef8d1a19ea45f4216bae2b528": { + "address": "0x4507cef57c46789ef8d1a19ea45f4216bae2b528", + "symbol": "TOKEN", + "decimals": 9, + "name": "TokenFi", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x4507cef57c46789ef8d1a19ea45f4216bae2b528.png", + "aggregators": [ + "Metamask", + "1inch", + "Socket", + "Rubic", + "Squid", + "Rango", + "Sonarwatch" + ], + "occurrences": 7 + }, + "0xa35923162c49cf95e6bf26623385eb431ad920d3": { + "address": "0xa35923162c49cf95e6bf26623385eb431ad920d3", + "symbol": "TURBO", + "decimals": 18, + "name": "Turbo", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xa35923162c49cf95e6bf26623385eb431ad920d3.png", + "aggregators": [ + "CoinMarketCap", + "LiFi", + "Socket", + "Rubic", + "Squid", + "Rango", + "Sonarwatch" + ], + "occurrences": 7 + }, + "0x3ed3b47dd13ec9a98b44e6204a523e766b225811": { + "address": "0x3ed3b47dd13ec9a98b44e6204a523e766b225811", + "symbol": "AUSDT", + "decimals": 6, + "name": "Aave USDT", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x3ed3b47dd13ec9a98b44e6204a523e766b225811.png", + "aggregators": [ + "Metamask", + "1inch", + "LiFi", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 7 + }, + "0x30f271c9e86d2b7d00a6376cd96a1cfbd5f0b9b3": { + "address": "0x30f271c9e86d2b7d00a6376cd96a1cfbd5f0b9b3", + "symbol": "DEC", + "decimals": 18, + "name": "Decentr", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x30f271c9e86d2b7d00a6376cd96a1cfbd5f0b9b3.png", + "aggregators": [ + "CoinMarketCap", + "LiFi", + "TrustWallet", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 7 + }, + "0x9e6be44cc1236eef7e1f197418592d363bedcd5a": { + "address": "0x9e6be44cc1236eef7e1f197418592d363bedcd5a", + "symbol": "AZUR", + "decimals": 18, + "name": "Azuro Protocol", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x9e6be44cc1236eef7e1f197418592d363bedcd5a.png", + "aggregators": [ + "CoinMarketCap", + "1inch", + "LiFi", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 7 + }, + "0x2370f9d504c7a6e775bf6e14b3f12846b594cd53": { + "address": "0x2370f9d504c7a6e775bf6e14b3f12846b594cd53", + "symbol": "JPYC", + "decimals": 18, + "name": "JPY Coin", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x2370f9d504c7a6e775bf6e14b3f12846b594cd53.png", + "aggregators": [ + "CoinMarketCap", + "LiFi", + "Socket", + "Rubic", + "Rango", + "Sonarwatch", + "SushiSwap" + ], + "occurrences": 7 + }, + "0x06450dee7fd2fb8e39061434babcfc05599a6fb8": { + "address": "0x06450dee7fd2fb8e39061434babcfc05599a6fb8", + "symbol": "XEN", + "decimals": 18, + "name": "XEN Crypto", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x06450dee7fd2fb8e39061434babcfc05599a6fb8.png", + "aggregators": [ + "CoinMarketCap", + "1inch", + "Socket", + "Rubic", + "Squid", + "Rango", + "Sonarwatch" + ], + "occurrences": 7 + }, + "0xf3dcbc6d72a4e1892f7917b7c43b74131df8480e": { + "address": "0xf3dcbc6d72a4e1892f7917b7c43b74131df8480e", + "symbol": "BDP", + "decimals": 18, + "name": "Big Data Protocol", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xf3dcbc6d72a4e1892f7917b7c43b74131df8480e.png", + "aggregators": [ + "CoinMarketCap", + "1inch", + "LiFi", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 7 + }, + "0x6c3f90f043a72fa612cbac8115ee7e52bde6e490": { + "address": "0x6c3f90f043a72fa612cbac8115ee7e52bde6e490", + "symbol": "3CRV", + "decimals": 18, + "name": "LP 3pool Curve", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x6c3f90f043a72fa612cbac8115ee7e52bde6e490.png", + "aggregators": [ + "CoinMarketCap", + "1inch", + "LiFi", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 7 + }, + "0x9ed8e7c9604790f7ec589f99b94361d8aab64e5e": { + "address": "0x9ed8e7c9604790f7ec589f99b94361d8aab64e5e", + "symbol": "UNISTAKE", + "decimals": 18, + "name": "Unistake", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x9ed8e7c9604790f7ec589f99b94361d8aab64e5e.png", + "aggregators": [ + "CoinMarketCap", + "1inch", + "TrustWallet", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 7 + }, + "0x469eda64aed3a3ad6f868c44564291aa415cb1d9": { + "address": "0x469eda64aed3a3ad6f868c44564291aa415cb1d9", + "symbol": "FLUX", + "decimals": 18, + "name": "FLUX", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x469eda64aed3a3ad6f868c44564291aa415cb1d9.png", + "aggregators": [ + "CoinMarketCap", + "LiFi", + "Socket", + "Rubic", + "Rango", + "Sonarwatch", + "SushiSwap" + ], + "occurrences": 7 + }, + "0x88acdd2a6425c3faae4bc9650fd7e27e0bebb7ab": { + "address": "0x88acdd2a6425c3faae4bc9650fd7e27e0bebb7ab", + "symbol": "⚗️", + "decimals": 18, + "name": "Alchemist", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x88acdd2a6425c3faae4bc9650fd7e27e0bebb7ab.png", + "aggregators": [ + "CoinMarketCap", + "LiFi", + "TrustWallet", + "Rubic", + "Rango", + "Sonarwatch", + "SushiSwap" + ], + "occurrences": 7 + }, + "0x2f109021afe75b949429fe30523ee7c0d5b27207": { + "address": "0x2f109021afe75b949429fe30523ee7c0d5b27207", + "symbol": "OCC", + "decimals": 18, + "name": "OccamFi", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x2f109021afe75b949429fe30523ee7c0d5b27207.png", + "aggregators": [ + "CoinMarketCap", + "1inch", + "LiFi", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 7 + }, + "0x0f17bc9a994b87b5225cfb6a2cd4d667adb4f20b": { + "address": "0x0f17bc9a994b87b5225cfb6a2cd4d667adb4f20b", + "symbol": "JEUR", + "decimals": 18, + "name": "Jarvis Synthetic Euro", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x0f17bc9a994b87b5225cfb6a2cd4d667adb4f20b.png", + "aggregators": [ + "CoinMarketCap", + "LiFi", + "Socket", + "Rubic", + "Rango", + "Sonarwatch", + "SushiSwap" + ], + "occurrences": 7 + }, + "0xfc979087305a826c2b2a0056cfaba50aad3e6439": { + "address": "0xfc979087305a826c2b2a0056cfaba50aad3e6439", + "symbol": "DAFI", + "decimals": 18, + "name": "Dafi Protocol", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xfc979087305a826c2b2a0056cfaba50aad3e6439.png", + "aggregators": [ + "CoinMarketCap", + "1inch", + "LiFi", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 7 + }, + "0xdfdb7f72c1f195c5951a234e8db9806eb0635346": { + "address": "0xdfdb7f72c1f195c5951a234e8db9806eb0635346", + "symbol": "NFD", + "decimals": 18, + "name": "Feisty Doge NFT", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xdfdb7f72c1f195c5951a234e8db9806eb0635346.png", + "aggregators": [ + "CoinMarketCap", + "Socket", + "Rubic", + "Squid", + "Rango", + "Sonarwatch", + "SushiSwap" + ], + "occurrences": 7 + }, + "0xf3ae5d769e153ef72b4e3591ac004e89f48107a1": { + "address": "0xf3ae5d769e153ef72b4e3591ac004e89f48107a1", + "symbol": "DPR", + "decimals": 18, + "name": "Deeper Network", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xf3ae5d769e153ef72b4e3591ac004e89f48107a1.png", + "aggregators": [ + "CoinMarketCap", + "1inch", + "LiFi", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 7 + }, + "0x505b5eda5e25a67e1c24a2bf1a527ed9eb88bf04": { + "address": "0x505b5eda5e25a67e1c24a2bf1a527ed9eb88bf04", + "symbol": "CWEB", + "decimals": 18, + "name": "Coinweb", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x505b5eda5e25a67e1c24a2bf1a527ed9eb88bf04.png", + "aggregators": [ + "CoinMarketCap", + "1inch", + "LiFi", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 7 + }, + "0x2af1df3ab0ab157e1e2ad8f88a7d04fbea0c7dc6": { + "address": "0x2af1df3ab0ab157e1e2ad8f88a7d04fbea0c7dc6", + "symbol": "BED", + "decimals": 18, + "name": "Bankless BED Index", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x2af1df3ab0ab157e1e2ad8f88a7d04fbea0c7dc6.png", + "aggregators": [ + "CoinMarketCap", + "1inch", + "LiFi", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 7 + }, + "0xaa6e8127831c9de45ae56bb1b0d4d4da6e5665bd": { + "address": "0xaa6e8127831c9de45ae56bb1b0d4d4da6e5665bd", + "symbol": "ETH2X-FLI", + "decimals": 18, + "name": "ETH 2x Flexible Leverage Index", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xaa6e8127831c9de45ae56bb1b0d4d4da6e5665bd.png", + "aggregators": [ + "CoinMarketCap", + "LiFi", + "TrustWallet", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 7 + }, + "0x0b498ff89709d3838a063f1dfa463091f9801c2b": { + "address": "0x0b498ff89709d3838a063f1dfa463091f9801c2b", + "symbol": "BTC2X-FLI", + "decimals": 18, + "name": "BTC 2x Flexible Leverage Index", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x0b498ff89709d3838a063f1dfa463091f9801c2b.png", + "aggregators": [ + "CoinMarketCap", + "LiFi", + "Socket", + "Rubic", + "Rango", + "Sonarwatch", + "SushiSwap" + ], + "occurrences": 7 + }, + "0xd9c2d319cd7e6177336b0a9c93c21cb48d84fb54": { + "address": "0xd9c2d319cd7e6177336b0a9c93c21cb48d84fb54", + "symbol": "HAPI", + "decimals": 18, + "name": "HAPI", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xd9c2d319cd7e6177336b0a9c93c21cb48d84fb54.png", + "aggregators": [ + "CoinMarketCap", + "1inch", + "LiFi", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 7 + }, + "0x892a6f9df0147e5f079b0993f486f9aca3c87881": { + "address": "0x892a6f9df0147e5f079b0993f486f9aca3c87881", + "symbol": "XFUND", + "decimals": 9, + "name": "xFUND", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x892a6f9df0147e5f079b0993f486f9aca3c87881.png", + "aggregators": [ + "CoinMarketCap", + "1inch", + "LiFi", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 7 + }, + "0xac3e018457b222d93114458476f3e3416abbe38f": { + "address": "0xac3e018457b222d93114458476f3e3416abbe38f", + "symbol": "SFRXETH", + "decimals": 18, + "name": "Staked Frax Ether", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xac3e018457b222d93114458476f3e3416abbe38f.png", + "aggregators": [ + "CoinMarketCap", + "LiFi", + "Socket", + "Rubic", + "Squid", + "Rango", + "Sonarwatch" + ], + "occurrences": 7 + }, + "0x3496b523e5c00a4b4150d6721320cddb234c3079": { + "address": "0x3496b523e5c00a4b4150d6721320cddb234c3079", + "symbol": "NUM", + "decimals": 18, + "name": "NUM Token", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x3496b523e5c00a4b4150d6721320cddb234c3079.png", + "aggregators": [ + "CoinMarketCap", + "1inch", + "Socket", + "Rubic", + "Rango", + "Sonarwatch", + "SushiSwap" + ], + "occurrences": 7 + }, + "0x993864e43caa7f7f12953ad6feb1d1ca635b875f": { + "address": "0x993864e43caa7f7f12953ad6feb1d1ca635b875f", + "symbol": "SDAO", + "decimals": 18, + "name": "SingularityDAO", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x993864e43caa7f7f12953ad6feb1d1ca635b875f.png", + "aggregators": [ + "CoinMarketCap", + "1inch", + "LiFi", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 7 + }, + "0xdcee70654261af21c44c093c300ed3bb97b78192": { + "address": "0xdcee70654261af21c44c093c300ed3bb97b78192", + "symbol": "WOETH", + "decimals": 18, + "name": "Wrapped OETH", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xdcee70654261af21c44c093c300ed3bb97b78192.png", + "aggregators": [ + "CoinMarketCap", + "LiFi", + "Socket", + "Rubic", + "Rango", + "Sonarwatch", + "SushiSwap" + ], + "occurrences": 7 + }, + "0x8390a1da07e376ef7add4be859ba74fb83aa02d5": { + "address": "0x8390a1da07e376ef7add4be859ba74fb83aa02d5", + "symbol": "GROK", + "decimals": 9, + "name": "Grok", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x8390a1da07e376ef7add4be859ba74fb83aa02d5.png", + "aggregators": [ + "CoinGecko", + "1inch", + "Socket", + "Rubic", + "Squid", + "Rango", + "Sonarwatch" + ], + "occurrences": 7 + }, + "0x4a615bb7166210cce20e6642a6f8fb5d4d044496": { + "address": "0x4a615bb7166210cce20e6642a6f8fb5d4d044496", + "symbol": "NAOS", + "decimals": 18, + "name": "NAOS Finance", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x4a615bb7166210cce20e6642a6f8fb5d4d044496.png", + "aggregators": [ + "Metamask", + "LiFi", + "Socket", + "Rubic", + "Rango", + "Sonarwatch", + "SushiSwap" + ], + "occurrences": 7 + }, + "0x419c4db4b9e25d6db2ad9691ccb832c8d9fda05e": { + "address": "0x419c4db4b9e25d6db2ad9691ccb832c8d9fda05e", + "symbol": "DRGN", + "decimals": 18, + "name": "Dragon", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x419c4db4b9e25d6db2ad9691ccb832c8d9fda05e.png", + "aggregators": [ + "CoinMarketCap", + "LiFi", + "Socket", + "Rubic", + "Rango", + "Sonarwatch", + "Bancor" + ], + "occurrences": 7 + }, + "0xf1c9acdc66974dfb6decb12aa385b9cd01190e38": { + "address": "0xf1c9acdc66974dfb6decb12aa385b9cd01190e38", + "symbol": "OSETH", + "decimals": 18, + "name": "StakeWise Staked ETH", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xf1c9acdc66974dfb6decb12aa385b9cd01190e38.png", + "aggregators": [ + "CoinMarketCap", + "1inch", + "LiFi", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 7 + }, + "0x470ebf5f030ed85fc1ed4c2d36b9dd02e77cf1b7": { + "address": "0x470ebf5f030ed85fc1ed4c2d36b9dd02e77cf1b7", + "symbol": "TEMPLE", + "decimals": 18, + "name": "Temple", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x470ebf5f030ed85fc1ed4c2d36b9dd02e77cf1b7.png", + "aggregators": [ + "CoinMarketCap", + "LiFi", + "Socket", + "Rubic", + "Rango", + "Sonarwatch", + "SushiSwap" + ], + "occurrences": 7 + }, + "0x59d9356e565ab3a36dd77763fc0d87feaf85508c": { + "address": "0x59d9356e565ab3a36dd77763fc0d87feaf85508c", + "symbol": "USDM", + "decimals": 18, + "name": "Mountain Protocol USD", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x59d9356e565ab3a36dd77763fc0d87feaf85508c.png", + "aggregators": [ + "CoinMarketCap", + "1inch", + "LiFi", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 7 + }, + "0xfd418e42783382e86ae91e445406600ba144d162": { + "address": "0xfd418e42783382e86ae91e445406600ba144d162", + "symbol": "ZRC", + "decimals": 18, + "name": "Zircuit", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xfd418e42783382e86ae91e445406600ba144d162.png", + "aggregators": [ + "CoinMarketCap", + "1inch", + "LiFi", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 7 + }, + "0x385d65ed9241e415cfc689c3e0bcf5ab2f0505c2": { + "address": "0x385d65ed9241e415cfc689c3e0bcf5ab2f0505c2", + "symbol": "MOLLARS", + "decimals": 9, + "name": "MollarsToken", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x385d65ed9241e415cfc689c3e0bcf5ab2f0505c2.png", + "aggregators": [ + "CoinMarketCap", + "LiFi", + "Socket", + "Rubic", + "Squid", + "Rango", + "Sonarwatch" + ], + "occurrences": 7 + }, + "0x8947da500eb47f82df21143d0c01a29862a8c3c5": { + "address": "0x8947da500eb47f82df21143d0c01a29862a8c3c5", + "symbol": "THALES", + "decimals": 18, + "name": "Thales DAO Token", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x8947da500eb47f82df21143d0c01a29862a8c3c5.png", + "aggregators": [ + "CoinMarketCap", + "LiFi", + "Socket", + "Rubic", + "Rango", + "Sonarwatch", + "Bancor" + ], + "occurrences": 7 + }, + "0xf819d9cb1c2a819fd991781a822de3ca8607c3c9": { + "address": "0xf819d9cb1c2a819fd991781a822de3ca8607c3c9", + "symbol": "UNIBOT", + "decimals": 18, + "name": "Unibot", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xf819d9cb1c2a819fd991781a822de3ca8607c3c9.png", + "aggregators": [ + "CoinMarketCap", + "LiFi", + "Socket", + "Rubic", + "Rango", + "Sonarwatch", + "SushiSwap" + ], + "occurrences": 7 + }, + "0x9813037ee2218799597d83d4a5b6f3b6778218d9": { + "address": "0x9813037ee2218799597d83d4a5b6f3b6778218d9", + "symbol": "BONE", + "decimals": 18, + "name": "Bone ShibaSwap", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x9813037ee2218799597d83d4a5b6f3b6778218d9.png", + "aggregators": [ + "CoinMarketCap", + "1inch", + "LiFi", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 7 + }, + "0xf951e335afb289353dc249e82926178eac7ded78": { + "address": "0xf951e335afb289353dc249e82926178eac7ded78", + "symbol": "SWETH", + "decimals": 18, + "name": "Swell Ethereum", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xf951e335afb289353dc249e82926178eac7ded78.png", + "aggregators": [ + "CoinMarketCap", + "1inch", + "LiFi", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 7 + }, + "0x73a15fed60bf67631dc6cd7bc5b6e8da8190acf5": { + "address": "0x73a15fed60bf67631dc6cd7bc5b6e8da8190acf5", + "symbol": "USD0", + "decimals": 18, + "name": "Usual USD", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x73a15fed60bf67631dc6cd7bc5b6e8da8190acf5.png", + "aggregators": [ + "CoinMarketCap", + "1inch", + "LiFi", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 7 + }, + "0xc0c293ce456ff0ed870add98a0828dd4d2903dbf": { + "address": "0xc0c293ce456ff0ed870add98a0828dd4d2903dbf", + "symbol": "AURA", + "decimals": 18, + "name": "Aura Finance", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xc0c293ce456ff0ed870add98a0828dd4d2903dbf.png", + "aggregators": [ + "CoinMarketCap", + "1inch", + "LiFi", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 7 + }, + "0x662b67d00a13faf93254714dd601f5ed49ef2f51": { + "address": "0x662b67d00a13faf93254714dd601f5ed49ef2f51", + "symbol": "ORC", + "decimals": 18, + "name": "Orbit Chain", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x662b67d00a13faf93254714dd601f5ed49ef2f51.png", + "aggregators": [ + "CoinMarketCap", + "1inch", + "LiFi", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 7 + }, + "0x99295f1141d58a99e939f7be6bbe734916a875b8": { + "address": "0x99295f1141d58a99e939f7be6bbe734916a875b8", + "symbol": "LPL", + "decimals": 18, + "name": "LinkPool", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x99295f1141d58a99e939f7be6bbe734916a875b8.png", + "aggregators": [ + "CoinMarketCap", + "LiFi", + "Socket", + "Rubic", + "Rango", + "Sonarwatch", + "Bancor" + ], + "occurrences": 7 + }, + "0x9695e0114e12c0d3a3636fab5a18e6b737529023": { + "address": "0x9695e0114e12c0d3a3636fab5a18e6b737529023", + "symbol": "DFYN", + "decimals": 18, + "name": "Dfyn Network", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x9695e0114e12c0d3a3636fab5a18e6b737529023.png", + "aggregators": [ + "CoinMarketCap", + "1inch", + "LiFi", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 7 + }, + "0xe0b9a2c3e9f40cf74b2c7f591b2b0cca055c3112": { + "address": "0xe0b9a2c3e9f40cf74b2c7f591b2b0cca055c3112", + "symbol": "GS", + "decimals": 18, + "name": "Genesis Shards", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xe0b9a2c3e9f40cf74b2c7f591b2b0cca055c3112.png", + "aggregators": [ + "CoinMarketCap", + "1inch", + "LiFi", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 7 + }, + "0xbd2949f67dcdc549c6ebe98696449fa79d988a9f": { + "address": "0xbd2949f67dcdc549c6ebe98696449fa79d988a9f", + "symbol": "EMTRG", + "decimals": 18, + "name": "Meter Governance mapped by Meter io", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xbd2949f67dcdc549c6ebe98696449fa79d988a9f.png", + "aggregators": [ + "CoinMarketCap", + "1inch", + "LiFi", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 7 + }, + "0xae697f994fc5ebc000f8e22ebffee04612f98a0d": { + "address": "0xae697f994fc5ebc000f8e22ebffee04612f98a0d", + "symbol": "LGCY", + "decimals": 18, + "name": "LGCY Network", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xae697f994fc5ebc000f8e22ebffee04612f98a0d.png", + "aggregators": [ + "CoinMarketCap", + "1inch", + "TrustWallet", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 7 + }, + "0xd9a442856c234a39a81a089c06451ebaa4306a72": { + "address": "0xd9a442856c234a39a81a089c06451ebaa4306a72", + "symbol": "PUFETH", + "decimals": 18, + "name": "pufETH", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xd9a442856c234a39a81a089c06451ebaa4306a72.png", + "aggregators": [ + "CoinMarketCap", + "1inch", + "LiFi", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 7 + }, + "0x4fbb350052bca5417566f188eb2ebce5b19bc964": { + "address": "0x4fbb350052bca5417566f188eb2ebce5b19bc964", + "symbol": "GRG", + "decimals": 18, + "name": "Rigo", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x4fbb350052bca5417566f188eb2ebce5b19bc964.png", + "aggregators": [ + "Metamask", + "LiFi", + "Socket", + "Rubic", + "Rango", + "Sonarwatch", + "Bancor" + ], + "occurrences": 7 + }, + "0xe796d6ca1ceb1b022ece5296226bf784110031cd": { + "address": "0xe796d6ca1ceb1b022ece5296226bf784110031cd", + "symbol": "BLES", + "decimals": 18, + "name": "Blind Boxes", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xe796d6ca1ceb1b022ece5296226bf784110031cd.png", + "aggregators": [ + "CoinMarketCap", + "1inch", + "LiFi", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 7 + }, + "0xa487bf43cf3b10dffc97a9a744cbb7036965d3b9": { + "address": "0xa487bf43cf3b10dffc97a9a744cbb7036965d3b9", + "symbol": "DERI", + "decimals": 18, + "name": "Deri Token", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xa487bf43cf3b10dffc97a9a744cbb7036965d3b9.png", + "aggregators": [ + "CoinGecko", + "LiFi", + "Socket", + "Rubic", + "Rango", + "Sonarwatch", + "SushiSwap" + ], + "occurrences": 7 + }, + "0xb4b9dc1c77bdbb135ea907fd5a08094d98883a35": { + "address": "0xb4b9dc1c77bdbb135ea907fd5a08094d98883a35", + "symbol": "SWEAT", + "decimals": 18, + "name": "SWEAT", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xb4b9dc1c77bdbb135ea907fd5a08094d98883a35.png", + "aggregators": [ + "CoinMarketCap", + "1inch", + "LiFi", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 7 + }, + "0x68d57c9a1c35f63e2c83ee8e49a64e9d70528d25": { + "address": "0x68d57c9a1c35f63e2c83ee8e49a64e9d70528d25", + "symbol": "SRN", + "decimals": 18, + "name": "SIRIN", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x68d57c9a1c35f63e2c83ee8e49a64e9d70528d25.png", + "aggregators": [ + "CoinMarketCap", + "LiFi", + "Socket", + "Rubic", + "Rango", + "Sonarwatch", + "Bancor" + ], + "occurrences": 7 + }, + "0xd559f20296ff4895da39b5bd9add54b442596a61": { + "address": "0xd559f20296ff4895da39b5bd9add54b442596a61", + "symbol": "FTX", + "decimals": 18, + "name": "FintruX Network", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xd559f20296ff4895da39b5bd9add54b442596a61.png", + "aggregators": [ + "CoinMarketCap", + "LiFi", + "Socket", + "Rubic", + "Rango", + "Sonarwatch", + "Bancor" + ], + "occurrences": 7 + }, + "0x0f71b8de197a1c84d31de0f1fa7926c365f052b3": { + "address": "0x0f71b8de197a1c84d31de0f1fa7926c365f052b3", + "symbol": "ARCONA", + "decimals": 18, + "name": "Arcona Distribution Contract", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x0f71b8de197a1c84d31de0f1fa7926c365f052b3.png", + "aggregators": [ + "CoinMarketCap", + "1inch", + "Socket", + "Rubic", + "Rango", + "Sonarwatch", + "Bancor" + ], + "occurrences": 7 + }, + "0xa0cf46eb152656c7090e769916eb44a138aaa406": { + "address": "0xa0cf46eb152656c7090e769916eb44a138aaa406", + "symbol": "SPH", + "decimals": 18, + "name": "Spheroid", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xa0cf46eb152656c7090e769916eb44a138aaa406.png", + "aggregators": [ + "CoinMarketCap", + "LiFi", + "Socket", + "Rubic", + "Rango", + "Sonarwatch", + "Bancor" + ], + "occurrences": 7 + }, + "0x14da7b27b2e0fedefe0a664118b0c9bc68e2e9af": { + "address": "0x14da7b27b2e0fedefe0a664118b0c9bc68e2e9af", + "symbol": "BCUG", + "decimals": 18, + "name": "Blockchain Cuties Universe Governance", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x14da7b27b2e0fedefe0a664118b0c9bc68e2e9af.png", + "aggregators": [ + "CoinMarketCap", + "1inch", + "LiFi", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 7 + }, + "0x68037790a0229e9ce6eaa8a99ea92964106c4703": { + "address": "0x68037790a0229e9ce6eaa8a99ea92964106c4703", + "symbol": "PAR", + "decimals": 18, + "name": "Parallel", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x68037790a0229e9ce6eaa8a99ea92964106c4703.png", + "aggregators": [ + "CoinMarketCap", + "1inch", + "LiFi", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 7 + }, + "0x43a96962254855f16b925556f9e97be436a43448": { + "address": "0x43a96962254855f16b925556f9e97be436a43448", + "symbol": "HORD", + "decimals": 18, + "name": "Hord", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x43a96962254855f16b925556f9e97be436a43448.png", + "aggregators": [ + "CoinMarketCap", + "1inch", + "LiFi", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 7 + }, + "0x48c3399719b582dd63eb5aadf12a40b4c3f52fa2": { + "address": "0x48c3399719b582dd63eb5aadf12a40b4c3f52fa2", + "symbol": "SWISE", + "decimals": 18, + "name": "StakeWise", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x48c3399719b582dd63eb5aadf12a40b4c3f52fa2.png", + "aggregators": [ + "CoinMarketCap", + "1inch", + "LiFi", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 7 + }, + "0x675bbc7514013e2073db7a919f6e4cbef576de37": { + "address": "0x675bbc7514013e2073db7a919f6e4cbef576de37", + "symbol": "CLS", + "decimals": 18, + "name": "Coldstack", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x675bbc7514013e2073db7a919f6e4cbef576de37.png", + "aggregators": [ + "CoinMarketCap", + "1inch", + "LiFi", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 7 + }, + "0x9506d37f70eb4c3d79c398d326c871abbf10521d": { + "address": "0x9506d37f70eb4c3d79c398d326c871abbf10521d", + "symbol": "MLT", + "decimals": 18, + "name": "Media Licensing Token", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x9506d37f70eb4c3d79c398d326c871abbf10521d.png", + "aggregators": [ + "CoinMarketCap", + "1inch", + "LiFi", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 7 + }, + "0xfe2e637202056d30016725477c5da089ab0a043a": { + "address": "0xfe2e637202056d30016725477c5da089ab0a043a", + "symbol": "SETH2", + "decimals": 18, + "name": "sETH2", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xfe2e637202056d30016725477c5da089ab0a043a.png", + "aggregators": [ + "CoinMarketCap", + "1inch", + "LiFi", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 7 + }, + "0x37fe0f067fa808ffbdd12891c0858532cfe7361d": { + "address": "0x37fe0f067fa808ffbdd12891c0858532cfe7361d", + "symbol": "CIV", + "decimals": 18, + "name": "Civilization", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x37fe0f067fa808ffbdd12891c0858532cfe7361d.png", + "aggregators": [ + "CoinMarketCap", + "1inch", + "LiFi", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 7 + }, + "0xe7f58a92476056627f9fdb92286778abd83b285f": { + "address": "0xe7f58a92476056627f9fdb92286778abd83b285f", + "symbol": "DWEB", + "decimals": 18, + "name": "DecentraWeb", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xe7f58a92476056627f9fdb92286778abd83b285f.png", + "aggregators": [ + "CoinMarketCap", + "1inch", + "LiFi", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 7 + }, + "0xaaaaaa20d9e0e2461697782ef11675f668207961": { + "address": "0xaaaaaa20d9e0e2461697782ef11675f668207961", + "symbol": "AURORA", + "decimals": 18, + "name": "Aurora", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xaaaaaa20d9e0e2461697782ef11675f668207961.png", + "aggregators": [ + "CoinMarketCap", + "1inch", + "LiFi", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 7 + }, + "0x73d7c860998ca3c01ce8c808f5577d94d545d1b4": { + "address": "0x73d7c860998ca3c01ce8c808f5577d94d545d1b4", + "symbol": "IXS", + "decimals": 18, + "name": "IXS", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x73d7c860998ca3c01ce8c808f5577d94d545d1b4.png", + "aggregators": [ + "CoinMarketCap", + "1inch", + "LiFi", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 7 + }, + "0xf1376bcef0f78459c0ed0ba5ddce976f1ddf51f4": { + "address": "0xf1376bcef0f78459c0ed0ba5ddce976f1ddf51f4", + "symbol": "UNIETH", + "decimals": 18, + "name": "Universal ETH", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xf1376bcef0f78459c0ed0ba5ddce976f1ddf51f4.png", + "aggregators": [ + "CoinMarketCap", + "LiFi", + "Socket", + "Rubic", + "Rango", + "Sonarwatch", + "SushiSwap" + ], + "occurrences": 7 + }, + "0xe60779cc1b2c1d0580611c526a8df0e3f870ec48": { + "address": "0xe60779cc1b2c1d0580611c526a8df0e3f870ec48", + "symbol": "USH", + "decimals": 18, + "name": "unshETHing_Token", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xe60779cc1b2c1d0580611c526a8df0e3f870ec48.png", + "aggregators": [ + "CoinMarketCap", + "LiFi", + "Socket", + "Rubic", + "Rango", + "Sonarwatch", + "SushiSwap" + ], + "occurrences": 7 + }, + "0x3ebb4a4e91ad83be51f8d596533818b246f4bee1": { + "address": "0x3ebb4a4e91ad83be51f8d596533818b246f4bee1", + "symbol": "SATA", + "decimals": 18, + "name": "Signata", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x3ebb4a4e91ad83be51f8d596533818b246f4bee1.png", + "aggregators": [ + "CoinMarketCap", + "LiFi", + "Socket", + "Rubic", + "Rango", + "Sonarwatch", + "Bancor" + ], + "occurrences": 7 + }, + "0x4f640f2529ee0cf119a2881485845fa8e61a782a": { + "address": "0x4f640f2529ee0cf119a2881485845fa8e61a782a", + "symbol": "ORE", + "decimals": 18, + "name": "ORE Network", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x4f640f2529ee0cf119a2881485845fa8e61a782a.png", + "aggregators": [ + "CoinMarketCap", + "1inch", + "LiFi", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 7 + }, + "0xb1f1ee126e9c96231cc3d3fad7c08b4cf873b1f1": { + "address": "0xb1f1ee126e9c96231cc3d3fad7c08b4cf873b1f1", + "symbol": "BIFI", + "decimals": 18, + "name": "Beefy", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xb1f1ee126e9c96231cc3d3fad7c08b4cf873b1f1.png", + "aggregators": [ + "CoinMarketCap", + "1inch", + "LiFi", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 7 + }, + "0x38e68a37e401f7271568cecaac63c6b1e19130b4": { + "address": "0x38e68a37e401f7271568cecaac63c6b1e19130b4", + "symbol": "BANANA", + "decimals": 18, + "name": "Banana Gun", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x38e68a37e401f7271568cecaac63c6b1e19130b4.png", + "aggregators": [ + "CoinMarketCap", + "1inch", + "Socket", + "Rubic", + "Squid", + "Rango", + "Sonarwatch" + ], + "occurrences": 7 + }, + "0x15e6e0d4ebeac120f9a97e71faa6a0235b85ed12": { + "address": "0x15e6e0d4ebeac120f9a97e71faa6a0235b85ed12", + "symbol": "SAVM", + "decimals": 18, + "name": "SatoshiVM", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x15e6e0d4ebeac120f9a97e71faa6a0235b85ed12.png", + "aggregators": [ + "CoinMarketCap", + "1inch", + "LiFi", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 7 + }, + "0xdbb7a34bf10169d6d2d0d02a6cbb436cf4381bfa": { + "address": "0xdbb7a34bf10169d6d2d0d02a6cbb436cf4381bfa", + "symbol": "ZENT", + "decimals": 18, + "name": "Zentry", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xdbb7a34bf10169d6d2d0d02a6cbb436cf4381bfa.png", + "aggregators": [ + "CoinMarketCap", + "1inch", + "LiFi", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 7 + }, + "0xf944e35f95e819e752f3ccb5faf40957d311e8c5": { + "address": "0xf944e35f95e819e752f3ccb5faf40957d311e8c5", + "symbol": "MOCA", + "decimals": 18, + "name": "Moca Network", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xf944e35f95e819e752f3ccb5faf40957d311e8c5.png", + "aggregators": [ + "CoinMarketCap", + "1inch", + "LiFi", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 7 + }, + "0x15b7c0c907e4c6b9adaaaabc300c08991d6cea05": { + "address": "0x15b7c0c907e4c6b9adaaaabc300c08991d6cea05", + "symbol": "GEL", + "decimals": 18, + "name": "Gelato", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x15b7c0c907e4c6b9adaaaabc300c08991d6cea05.png", + "aggregators": [ + "CoinMarketCap", + "1inch", + "LiFi", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 7 + }, + "0x111111517e4929d3dcbdfa7cce55d30d4b6bc4d6": { + "address": "0x111111517e4929d3dcbdfa7cce55d30d4b6bc4d6", + "symbol": "ICHI", + "decimals": 18, + "name": "ICHI", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x111111517e4929d3dcbdfa7cce55d30d4b6bc4d6.png", + "aggregators": [ + "CoinMarketCap", + "1inch", + "LiFi", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 7 + }, + "0x826180541412d574cf1336d22c0c0a287822678a": { + "address": "0x826180541412d574cf1336d22c0c0a287822678a", + "symbol": "FLIP", + "decimals": 18, + "name": "Chainflip", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x826180541412d574cf1336d22c0c0a287822678a.png", + "aggregators": [ + "CoinMarketCap", + "LiFi", + "Socket", + "Rubic", + "Squid", + "Rango", + "Sonarwatch" + ], + "occurrences": 7 + }, + "0xa35b1b31ce002fbf2058d22f30f95d405200a15b": { + "address": "0xa35b1b31ce002fbf2058d22f30f95d405200a15b", + "symbol": "ETHX", + "decimals": 18, + "name": "Stader ETHx", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xa35b1b31ce002fbf2058d22f30f95d405200a15b.png", + "aggregators": [ + "CoinMarketCap", + "1inch", + "LiFi", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 7 + }, + "0xc98d64da73a6616c42117b582e832812e7b8d57f": { + "address": "0xc98d64da73a6616c42117b582e832812e7b8d57f", + "symbol": "RSS3", + "decimals": 18, + "name": "RSS3", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xc98d64da73a6616c42117b582e832812e7b8d57f.png", + "aggregators": [ + "CoinMarketCap", + "1inch", + "LiFi", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 7 + }, + "0xe6828d65bf5023ae1851d90d8783cc821ba7eee1": { + "address": "0xe6828d65bf5023ae1851d90d8783cc821ba7eee1", + "symbol": "ABOND", + "decimals": 18, + "name": "ApeBond", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xe6828d65bf5023ae1851d90d8783cc821ba7eee1.png", + "aggregators": [ + "CoinMarketCap", + "LiFi", + "Socket", + "Rubic", + "Squid", + "Rango", + "Sonarwatch" + ], + "occurrences": 7 + }, + "0xf99d58e463a2e07e5692127302c20a191861b4d6": { + "address": "0xf99d58e463a2e07e5692127302c20a191861b4d6", + "symbol": "ANY", + "decimals": 18, + "name": "Anyswap", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xf99d58e463a2e07e5692127302c20a191861b4d6.png", + "aggregators": [ + "CoinMarketCap", + "LiFi", + "Socket", + "Rubic", + "Rango", + "Sonarwatch", + "SushiSwap" + ], + "occurrences": 7 + }, + "0xf970b8e36e23f7fc3fd752eea86f8be8d83375a6": { + "address": "0xf970b8e36e23f7fc3fd752eea86f8be8d83375a6", + "symbol": "RCN", + "decimals": 18, + "name": "Ripio Credit Network Token", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xf970b8e36e23f7fc3fd752eea86f8be8d83375a6.png", + "aggregators": [ + "CoinMarketCap", + "LiFi", + "Socket", + "Rubic", + "Rango", + "Sonarwatch", + "Bancor" + ], + "occurrences": 7 + }, + "0xb1191f691a355b43542bea9b8847bc73e7abb137": { + "address": "0xb1191f691a355b43542bea9b8847bc73e7abb137", + "symbol": "KIRO", + "decimals": 18, + "name": "KIRO", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xb1191f691a355b43542bea9b8847bc73e7abb137.png", + "aggregators": [ + "CoinMarketCap", + "1inch", + "LiFi", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 7 + }, + "0xb78b3320493a4efaa1028130c5ba26f0b6085ef8": { + "address": "0xb78b3320493a4efaa1028130c5ba26f0b6085ef8", + "symbol": "DRC", + "decimals": 18, + "name": "Dracula", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xb78b3320493a4efaa1028130c5ba26f0b6085ef8.png", + "aggregators": [ + "Metamask", + "1inch", + "LiFi", + "Socket", + "Rubic", + "Rango", + "SushiSwap" + ], + "occurrences": 7 + }, + "0x515d7e9d75e2b76db60f8a051cd890eba23286bc": { + "address": "0x515d7e9d75e2b76db60f8a051cd890eba23286bc", + "symbol": "GDAO", + "decimals": 18, + "name": "Governor DAO", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x515d7e9d75e2b76db60f8a051cd890eba23286bc.png", + "aggregators": [ + "CoinMarketCap", + "1inch", + "LiFi", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 7 + }, + "0x745407c86df8db893011912d3ab28e68b62e49b0": { + "address": "0x745407c86df8db893011912d3ab28e68b62e49b0", + "symbol": "MAHA", + "decimals": 18, + "name": "MahaDAO", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x745407c86df8db893011912d3ab28e68b62e49b0.png", + "aggregators": [ + "Metamask", + "LiFi", + "TrustWallet", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 7 + }, + "0x10be9a8dae441d276a5027936c3aaded2d82bc15": { + "address": "0x10be9a8dae441d276a5027936c3aaded2d82bc15", + "symbol": "UMX", + "decimals": 18, + "name": "UniMex Network", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x10be9a8dae441d276a5027936c3aaded2d82bc15.png", + "aggregators": [ + "CoinMarketCap", + "1inch", + "LiFi", + "TrustWallet", + "Socket", + "Rubic", + "Rango" + ], + "occurrences": 7 + }, + "0x7697b462a7c4ff5f8b55bdbc2f4076c2af9cf51a": { + "address": "0x7697b462a7c4ff5f8b55bdbc2f4076c2af9cf51a", + "symbol": "SARCO", + "decimals": 18, + "name": "Sarcophagus", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x7697b462a7c4ff5f8b55bdbc2f4076c2af9cf51a.png", + "aggregators": [ + "CoinMarketCap", + "1inch", + "LiFi", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 7 + }, + "0xc36b4311b21fc0c2ead46f1ea6ce97c9c4d98d3d": { + "address": "0xc36b4311b21fc0c2ead46f1ea6ce97c9c4d98d3d", + "symbol": "CRE8", + "decimals": 18, + "name": "Creaticles", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xc36b4311b21fc0c2ead46f1ea6ce97c9c4d98d3d.png", + "aggregators": [ + "CoinMarketCap", + "LiFi", + "Socket", + "Rubic", + "Rango", + "Sonarwatch", + "SushiSwap" + ], + "occurrences": 7 + }, + "0xe80c0cd204d654cebe8dd64a4857cab6be8345a3": { + "address": "0xe80c0cd204d654cebe8dd64a4857cab6be8345a3", + "symbol": "JPEG", + "decimals": 18, + "name": "JPEGd Governance Token", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xe80c0cd204d654cebe8dd64a4857cab6be8345a3.png", + "aggregators": [ + "CoinMarketCap", + "Socket", + "Rubic", + "Squid", + "Rango", + "Sonarwatch", + "SushiSwap" + ], + "occurrences": 7 + }, + "0x15700b564ca08d9439c58ca5053166e8317aa138": { + "address": "0x15700b564ca08d9439c58ca5053166e8317aa138", + "symbol": "DEUSD", + "decimals": 18, + "name": "Elixir deUSD", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x15700b564ca08d9439c58ca5053166e8317aa138.png", + "aggregators": [ + "Metamask", + "LiFi", + "Socket", + "Rubic", + "Squid", + "Rango", + "Sonarwatch" + ], + "occurrences": 7 + }, + "0x960b236a07cf122663c4303350609a66a7b288c0": { + "address": "0x960b236a07cf122663c4303350609a66a7b288c0", + "symbol": "ANTV1", + "decimals": 18, + "name": "Aragon Network Token v1", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x960b236a07cf122663c4303350609a66a7b288c0.png", + "aggregators": [ + "Metamask", + "1inch", + "LiFi", + "Socket", + "Rubic", + "Rango", + "Bancor" + ], + "occurrences": 7 + }, + "0x677ddbd918637e5f2c79e164d402454de7da8619": { + "address": "0x677ddbd918637e5f2c79e164d402454de7da8619", + "symbol": "VUSD", + "decimals": 18, + "name": "VUSD", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x677ddbd918637e5f2c79e164d402454de7da8619.png", + "aggregators": [ + "1inch", + "LiFi", + "Socket", + "Rubic", + "Rango", + "Sonarwatch", + "SushiSwap" + ], + "occurrences": 7 + }, + "0x3e5a19c91266ad8ce2477b91585d1856b84062df": { + "address": "0x3e5a19c91266ad8ce2477b91585d1856b84062df", + "symbol": "A8", + "decimals": 18, + "name": "Ancient8", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x3e5a19c91266ad8ce2477b91585d1856b84062df.png", + "aggregators": [ + "CoinMarketCap", + "1inch", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 6 + }, + "0xb98d4c97425d9908e66e53a6fdf673acca0be986": { + "address": "0xb98d4c97425d9908e66e53a6fdf673acca0be986", + "symbol": "ABT", + "decimals": 18, + "name": "Arcblock", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xb98d4c97425d9908e66e53a6fdf673acca0be986.png", + "aggregators": [ + "CoinMarketCap", + "1inch", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 6 + }, + "0xac51066d7bec65dc4589368da368b212745d63e8": { + "address": "0xac51066d7bec65dc4589368da368b212745d63e8", + "symbol": "ALICE", + "decimals": 6, + "name": "My Neighbor Alice", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xac51066d7bec65dc4589368da368b212745d63e8.png", + "aggregators": [ + "OpenSwap", + "LiFi", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 6 + }, + "0x594daad7d77592a2b97b725a7ad59d7e188b5bfa": { + "address": "0x594daad7d77592a2b97b725a7ad59d7e188b5bfa", + "symbol": "APU", + "decimals": 18, + "name": "Apu Apustaja", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x594daad7d77592a2b97b725a7ad59d7e188b5bfa.png", + "aggregators": [ + "CoinMarketCap", + "1inch", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 6 + }, + "0x4f9254c83eb525f9fcf346490bbb3ed28a81c667": { + "address": "0x4f9254c83eb525f9fcf346490bbb3ed28a81c667", + "symbol": "CELR", + "decimals": 18, + "name": "Celer Network Token", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x4f9254c83eb525f9fcf346490bbb3ed28a81c667.png", + "aggregators": [ + "Metamask", + "LiFi", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 6 + }, + "0x464ebe77c293e473b48cfe96ddcf88fcf7bfdac0": { + "address": "0x464ebe77c293e473b48cfe96ddcf88fcf7bfdac0", + "symbol": "KRL", + "decimals": 18, + "name": "KRYLL", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x464ebe77c293e473b48cfe96ddcf88fcf7bfdac0.png", + "aggregators": [ + "OpenSwap", + "LiFi", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 6 + }, + "0xb59490ab09a0f526cc7305822ac65f2ab12f9723": { + "address": "0xb59490ab09a0f526cc7305822ac65f2ab12f9723", + "symbol": "LIT", + "decimals": 18, + "name": "Litentry", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xb59490ab09a0f526cc7305822ac65f2ab12f9723.png", + "aggregators": [ + "CoinMarketCap", + "LiFi", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 6 + }, + "0xa4e8c3ec456107ea67d3075bf9e3df3a75823db0": { + "address": "0xa4e8c3ec456107ea67d3075bf9e3df3a75823db0", + "symbol": "LOOM", + "decimals": 18, + "name": "Loom Token", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xa4e8c3ec456107ea67d3075bf9e3df3a75823db0.png", + "aggregators": [ + "Metamask", + "LiFi", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 6 + }, + "0x8c1bed5b9a0928467c9b1341da1d7bd5e10b6549": { + "address": "0x8c1bed5b9a0928467c9b1341da1d7bd5e10b6549", + "symbol": "LSETH", + "decimals": 18, + "name": "Liquid Staked ETH", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x8c1bed5b9a0928467c9b1341da1d7bd5e10b6549.png", + "aggregators": [ + "CoinMarketCap", + "LiFi", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 6 + }, + "0xfb5c6815ca3ac72ce9f5006869ae67f18bf77006": { + "address": "0xfb5c6815ca3ac72ce9f5006869ae67f18bf77006", + "symbol": "PSTAKE", + "decimals": 18, + "name": "pSTAKE Finance", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xfb5c6815ca3ac72ce9f5006869ae67f18bf77006.png", + "aggregators": [ + "Metamask", + "Socket", + "Rubic", + "Squid", + "Rango", + "Sonarwatch" + ], + "occurrences": 6 + }, + "0x3b50805453023a91a8bf641e279401a0b23fa6f9": { + "address": "0x3b50805453023a91a8bf641e279401a0b23fa6f9", + "symbol": "REZ", + "decimals": 18, + "name": "Renzo", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x3b50805453023a91a8bf641e279401a0b23fa6f9.png", + "aggregators": [ + "CoinMarketCap", + "1inch", + "LiFi", + "Socket", + "Rubic", + "Sonarwatch" + ], + "occurrences": 6 + }, + "0x441761326490cacf7af299725b6292597ee822c2": { + "address": "0x441761326490cacf7af299725b6292597ee822c2", + "symbol": "UNFI", + "decimals": 18, + "name": "Unifi Protocol DAO", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x441761326490cacf7af299725b6292597ee822c2.png", + "aggregators": [ + "OpenSwap", + "LiFi", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 6 + }, + "0x8de5b80a0c1b02fe4976851d030b36122dbb8624": { + "address": "0x8de5b80a0c1b02fe4976851d030b36122dbb8624", + "symbol": "VANRY", + "decimals": 18, + "name": "Vanar Chain", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x8de5b80a0c1b02fe4976851d030b36122dbb8624.png", + "aggregators": [ + "CoinMarketCap", + "Socket", + "Rubic", + "Squid", + "Rango", + "Sonarwatch" + ], + "occurrences": 6 + }, + "0x9ba00d6856a4edf4665bca2c2309936572473b7e": { + "address": "0x9ba00d6856a4edf4665bca2c2309936572473b7e", + "symbol": "AUSDC", + "decimals": 6, + "name": "Aave v1 USDC", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x9ba00d6856a4edf4665bca2c2309936572473b7e.png", + "aggregators": [ + "CoinGecko", + "LiFi", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 6 + }, + "0x625ae63000f46200499120b906716420bd059240": { + "address": "0x625ae63000f46200499120b906716420bd059240", + "symbol": "ASUSD", + "decimals": 18, + "name": "Aave SUSD v1", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x625ae63000f46200499120b906716420bd059240.png", + "aggregators": [ + "CoinGecko", + "LiFi", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 6 + }, + "0xa64bd6c70cb9051f6a9ba1f163fdc07e0dfb5f84": { + "address": "0xa64bd6c70cb9051f6a9ba1f163fdc07e0dfb5f84", + "symbol": "ALINK", + "decimals": 18, + "name": "Aave LINK v1", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xa64bd6c70cb9051f6a9ba1f163fdc07e0dfb5f84.png", + "aggregators": [ + "CoinGecko", + "LiFi", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 6 + }, + "0x9d91be44c06d373a8a226e1f3b146956083803eb": { + "address": "0x9d91be44c06d373a8a226e1f3b146956083803eb", + "symbol": "AKNC", + "decimals": 18, + "name": "Aave KNC v1", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x9d91be44c06d373a8a226e1f3b146956083803eb.png", + "aggregators": [ + "CoinGecko", + "LiFi", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 6 + }, + "0x7deb5e830be29f91e298ba5ff1356bb7f8146998": { + "address": "0x7deb5e830be29f91e298ba5ff1356bb7f8146998", + "symbol": "AMKR", + "decimals": 18, + "name": "Aave MKR v1", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x7deb5e830be29f91e298ba5ff1356bb7f8146998.png", + "aggregators": [ + "CoinGecko", + "LiFi", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 6 + }, + "0x6fb0855c404e09c47c3fbca25f08d4e41f9f062f": { + "address": "0x6fb0855c404e09c47c3fbca25f08d4e41f9f062f", + "symbol": "AZRX", + "decimals": 18, + "name": "Aave ZRX v1", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x6fb0855c404e09c47c3fbca25f08d4e41f9f062f.png", + "aggregators": [ + "CoinGecko", + "LiFi", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 6 + }, + "0x328c4c80bc7aca0834db37e6600a6c49e12da4de": { + "address": "0x328c4c80bc7aca0834db37e6600a6c49e12da4de", + "symbol": "ASNX", + "decimals": 18, + "name": "Aave SNX v1", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x328c4c80bc7aca0834db37e6600a6c49e12da4de.png", + "aggregators": [ + "CoinGecko", + "LiFi", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 6 + }, + "0x712db54daa836b53ef1ecbb9c6ba3b9efb073f40": { + "address": "0x712db54daa836b53ef1ecbb9c6ba3b9efb073f40", + "symbol": "AENJ", + "decimals": 18, + "name": "Aave ENJ v1", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x712db54daa836b53ef1ecbb9c6ba3b9efb073f40.png", + "aggregators": [ + "CoinMarketCap", + "LiFi", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 6 + }, + "0x69948cc03f478b95283f7dbf1ce764d0fc7ec54c": { + "address": "0x69948cc03f478b95283f7dbf1ce764d0fc7ec54c", + "symbol": "AREN", + "decimals": 18, + "name": "Aave REN v1", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x69948cc03f478b95283f7dbf1ce764d0fc7ec54c.png", + "aggregators": [ + "CoinMarketCap", + "LiFi", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 6 + }, + "0xd7c49cee7e9188cca6ad8ff264c1da2e69d4cf3b": { + "address": "0xd7c49cee7e9188cca6ad8ff264c1da2e69d4cf3b", + "symbol": "NXM", + "decimals": 18, + "name": "Nexus Mutual", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xd7c49cee7e9188cca6ad8ff264c1da2e69d4cf3b.png", + "aggregators": [ + "CoinMarketCap", + "LiFi", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 6 + }, + "0xf5dce57282a584d2746faf1593d3121fcac444dc": { + "address": "0xf5dce57282a584d2746faf1593d3121fcac444dc", + "symbol": "CSAI", + "decimals": 8, + "name": "Compound Sai", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xf5dce57282a584d2746faf1593d3121fcac444dc.png", + "aggregators": [ + "Metamask", + "1inch", + "LiFi", + "Socket", + "Rubic", + "Rango" + ], + "occurrences": 6 + }, + "0x5bc25f649fc4e26069ddf4cf4010f9f706c23831": { + "address": "0x5bc25f649fc4e26069ddf4cf4010f9f706c23831", + "symbol": "DUSD", + "decimals": 18, + "name": "DefiDollar", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x5bc25f649fc4e26069ddf4cf4010f9f706c23831.png", + "aggregators": [ + "CoinMarketCap", + "LiFi", + "Socket", + "Rubic", + "Rango", + "SushiSwap" + ], + "occurrences": 6 + }, + "0xfc05987bd2be489accf0f509e44b0145d68240f7": { + "address": "0xfc05987bd2be489accf0f509e44b0145d68240f7", + "symbol": "ESS", + "decimals": 18, + "name": "Essentia", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xfc05987bd2be489accf0f509e44b0145d68240f7.png", + "aggregators": [ + "CoinMarketCap", + "1inch", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 6 + }, + "0x474021845c4643113458ea4414bdb7fb74a01a77": { + "address": "0x474021845c4643113458ea4414bdb7fb74a01a77", + "symbol": "UNO", + "decimals": 18, + "name": "Lunos", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x474021845c4643113458ea4414bdb7fb74a01a77.png", + "aggregators": [ + "CoinMarketCap", + "1inch", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 6 + }, + "0x3aada3e213abf8529606924d8d1c55cbdc70bf74": { + "address": "0x3aada3e213abf8529606924d8d1c55cbdc70bf74", + "symbol": "XMON", + "decimals": 18, + "name": "XMON", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x3aada3e213abf8529606924d8d1c55cbdc70bf74.png", + "aggregators": [ + "CoinMarketCap", + "1inch", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 6 + }, + "0x697ef32b4a3f5a4c39de1cb7563f24ca7bfc5947": { + "address": "0x697ef32b4a3f5a4c39de1cb7563f24ca7bfc5947", + "symbol": "ISLA", + "decimals": 18, + "name": "Insula Token", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x697ef32b4a3f5a4c39de1cb7563f24ca7bfc5947.png", + "aggregators": [ + "Metamask", + "LiFi", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 6 + }, + "0x73374ea518de7addd4c2b624c0e8b113955ee041": { + "address": "0x73374ea518de7addd4c2b624c0e8b113955ee041", + "symbol": "JGN", + "decimals": 18, + "name": "Juggernaut", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x73374ea518de7addd4c2b624c0e8b113955ee041.png", + "aggregators": [ + "CoinMarketCap", + "1inch", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 6 + }, + "0x2c537e5624e4af88a7ae4060c022609376c8d0eb": { + "address": "0x2c537e5624e4af88a7ae4060c022609376c8d0eb", + "symbol": "TRYB", + "decimals": 6, + "name": "BiLira", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x2c537e5624e4af88a7ae4060c022609376c8d0eb.png", + "aggregators": [ + "CoinMarketCap", + "LiFi", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 6 + }, + "0x35bd01fc9d6d5d81ca9e055db88dc49aa2c699a8": { + "address": "0x35bd01fc9d6d5d81ca9e055db88dc49aa2c699a8", + "symbol": "FWB", + "decimals": 18, + "name": "FWB Pro", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x35bd01fc9d6d5d81ca9e055db88dc49aa2c699a8.png", + "aggregators": [ + "Metamask", + "LiFi", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 6 + }, + "0x53c8395465a84955c95159814461466053dedede": { + "address": "0x53c8395465a84955c95159814461466053dedede", + "symbol": "DG", + "decimals": 18, + "name": "DeGate Token", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x53c8395465a84955c95159814461466053dedede.png", + "aggregators": [ + "Metamask", + "1inch", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 6 + }, + "0xcd2828fc4d8e8a0ede91bb38cf64b1a81de65bf6": { + "address": "0xcd2828fc4d8e8a0ede91bb38cf64b1a81de65bf6", + "symbol": "ODDZ", + "decimals": 18, + "name": "Oddz", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xcd2828fc4d8e8a0ede91bb38cf64b1a81de65bf6.png", + "aggregators": [ + "CoinMarketCap", + "LiFi", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 6 + }, + "0x056c1d42fb1326f57da7f19ebb7dda4673f1ff55": { + "address": "0x056c1d42fb1326f57da7f19ebb7dda4673f1ff55", + "symbol": "GAINS", + "decimals": 18, + "name": "Gains", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x056c1d42fb1326f57da7f19ebb7dda4673f1ff55.png", + "aggregators": [ + "CoinMarketCap", + "1inch", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 6 + }, + "0x0cf0ee63788a0849fe5297f3407f701e122cc023": { + "address": "0x0cf0ee63788a0849fe5297f3407f701e122cc023", + "symbol": "XDATA", + "decimals": 18, + "name": "Streamr (old)", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x0cf0ee63788a0849fe5297f3407f701e122cc023.png", + "aggregators": [ + "Metamask", + "LiFi", + "Socket", + "Rubic", + "Sonarwatch", + "Bancor" + ], + "occurrences": 6 + }, + "0x80d55c03180349fff4a229102f62328220a96444": { + "address": "0x80d55c03180349fff4a229102f62328220a96444", + "symbol": "OPUL", + "decimals": 18, + "name": "Opulous", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x80d55c03180349fff4a229102f62328220a96444.png", + "aggregators": [ + "CoinMarketCap", + "1inch", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 6 + }, + "0x549020a9cb845220d66d3e9c6d9f9ef61c981102": { + "address": "0x549020a9cb845220d66d3e9c6d9f9ef61c981102", + "symbol": "SIDUS", + "decimals": 18, + "name": "Sidus", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x549020a9cb845220d66d3e9c6d9f9ef61c981102.png", + "aggregators": [ + "CoinMarketCap", + "1inch", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 6 + }, + "0x881ba05de1e78f549cc63a8f6cabb1d4ad32250d": { + "address": "0x881ba05de1e78f549cc63a8f6cabb1d4ad32250d", + "symbol": "00", + "decimals": 18, + "name": "00", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x881ba05de1e78f549cc63a8f6cabb1d4ad32250d.png", + "aggregators": [ + "Metamask", + "LiFi", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 6 + }, + "0x9f52c8ecbee10e00d9faaac5ee9ba0ff6550f511": { + "address": "0x9f52c8ecbee10e00d9faaac5ee9ba0ff6550f511", + "symbol": "SIPHER", + "decimals": 18, + "name": "SIPHER", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x9f52c8ecbee10e00d9faaac5ee9ba0ff6550f511.png", + "aggregators": [ + "CoinMarketCap", + "LiFi", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 6 + }, + "0x4740735aa98dc8aa232bd049f8f0210458e7fca3": { + "address": "0x4740735aa98dc8aa232bd049f8f0210458e7fca3", + "symbol": "RDT", + "decimals": 18, + "name": "Ridotto", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x4740735aa98dc8aa232bd049f8f0210458e7fca3.png", + "aggregators": [ + "CoinMarketCap", + "1inch", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 6 + }, + "0x80c8c3dcfb854f9542567c8dac3f44d709ebc1de": { + "address": "0x80c8c3dcfb854f9542567c8dac3f44d709ebc1de", + "symbol": "MILK2", + "decimals": 18, + "name": "Spaceswap MILK2", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x80c8c3dcfb854f9542567c8dac3f44d709ebc1de.png", + "aggregators": [ + "CoinMarketCap", + "1inch", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 6 + }, + "0xed1167b6dc64e8a366db86f2e952a482d0981ebd": { + "address": "0xed1167b6dc64e8a366db86f2e952a482d0981ebd", + "symbol": "LBR", + "decimals": 18, + "name": "Lybra", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xed1167b6dc64e8a366db86f2e952a482d0981ebd.png", + "aggregators": [ + "CoinMarketCap", + "1inch", + "LiFi", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 6 + }, + "0xa41f142b6eb2b164f8164cae0716892ce02f311f": { + "address": "0xa41f142b6eb2b164f8164cae0716892ce02f311f", + "symbol": "AVG", + "decimals": 18, + "name": "Avocado DAO", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xa41f142b6eb2b164f8164cae0716892ce02f311f.png", + "aggregators": [ + "CoinMarketCap", + "1inch", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 6 + }, + "0x850aab69f0e0171a9a49db8be3e71351c8247df4": { + "address": "0x850aab69f0e0171a9a49db8be3e71351c8247df4", + "symbol": "KONO", + "decimals": 18, + "name": "Konomi Network", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x850aab69f0e0171a9a49db8be3e71351c8247df4.png", + "aggregators": [ + "CoinMarketCap", + "1inch", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 6 + }, + "0x8aec4bbdcfb451aa289bfbd3c2f4e34a44ada1be": { + "address": "0x8aec4bbdcfb451aa289bfbd3c2f4e34a44ada1be", + "symbol": "DOGWIFHAT", + "decimals": 9, + "name": "dogwifhat Eth", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x8aec4bbdcfb451aa289bfbd3c2f4e34a44ada1be.png", + "aggregators": [ + "CoinGecko", + "1inch", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 6 + }, + "0x2af5d2ad76741191d15dfe7bf6ac92d4bd912ca3": { + "address": "0x2af5d2ad76741191d15dfe7bf6ac92d4bd912ca3", + "symbol": "LEO", + "decimals": 18, + "name": "LEO Token", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x2af5d2ad76741191d15dfe7bf6ac92d4bd912ca3.png", + "aggregators": [ + "CoinMarketCap", + "LiFi", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 6 + }, + "0xfa14fa6958401314851a17d6c5360ca29f74b57b": { + "address": "0xfa14fa6958401314851a17d6c5360ca29f74b57b", + "symbol": "SAITO", + "decimals": 18, + "name": "Saito", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xfa14fa6958401314851a17d6c5360ca29f74b57b.png", + "aggregators": [ + "CoinMarketCap", + "LiFi", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 6 + }, + "0x6a6c2ada3ce053561c2fbc3ee211f23d9b8c520a": { + "address": "0x6a6c2ada3ce053561c2fbc3ee211f23d9b8c520a", + "symbol": "TON", + "decimals": 18, + "name": "TON Community", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x6a6c2ada3ce053561c2fbc3ee211f23d9b8c520a.png", + "aggregators": [ + "CoinMarketCap", + "LiFi", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 6 + }, + "0x120a3879da835a5af037bb2d1456bebd6b54d4ba": { + "address": "0x120a3879da835a5af037bb2d1456bebd6b54d4ba", + "symbol": "RVST", + "decimals": 18, + "name": "Revest Finance", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x120a3879da835a5af037bb2d1456bebd6b54d4ba.png", + "aggregators": [ + "CoinMarketCap", + "1inch", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 6 + }, + "0x5a9261b023692405f2f680240c6b010638e416dd": { + "address": "0x5a9261b023692405f2f680240c6b010638e416dd", + "symbol": "JAN", + "decimals": 18, + "name": "Storm Warfare", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x5a9261b023692405f2f680240c6b010638e416dd.png", + "aggregators": [ + "CoinMarketCap", + "Socket", + "Rubic", + "Squid", + "Rango", + "Sonarwatch" + ], + "occurrences": 6 + }, + "0x4b9278b94a1112cad404048903b8d343a810b07e": { + "address": "0x4b9278b94a1112cad404048903b8d343a810b07e", + "symbol": "HIFI", + "decimals": 18, + "name": "Hifi Finance", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x4b9278b94a1112cad404048903b8d343a810b07e.png", + "aggregators": [ + "Metamask", + "LiFi", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 6 + }, + "0xa130e3a33a4d84b04c3918c4e5762223ae252f80": { + "address": "0xa130e3a33a4d84b04c3918c4e5762223ae252f80", + "symbol": "SWASH", + "decimals": 18, + "name": "Swash Token", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xa130e3a33a4d84b04c3918c4e5762223ae252f80.png", + "aggregators": [ + "Metamask", + "LiFi", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 6 + }, + "0xba0dda8762c24da9487f5fa026a9b64b695a07ea": { + "address": "0xba0dda8762c24da9487f5fa026a9b64b695a07ea", + "symbol": "OX", + "decimals": 18, + "name": "OX Coin", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xba0dda8762c24da9487f5fa026a9b64b695a07ea.png", + "aggregators": [ + "CoinMarketCap", + "Socket", + "Rubic", + "Squid", + "Rango", + "Sonarwatch" + ], + "occurrences": 6 + }, + "0x4a029f7bcf33acb03547d8fa7be840347973e24e": { + "address": "0x4a029f7bcf33acb03547d8fa7be840347973e24e", + "symbol": "MAZZE", + "decimals": 18, + "name": "Mazze", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x4a029f7bcf33acb03547d8fa7be840347973e24e.png", + "aggregators": [ + "CoinMarketCap", + "1inch", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 6 + }, + "0xff75ced57419bcaebe5f05254983b013b0646ef5": { + "address": "0xff75ced57419bcaebe5f05254983b013b0646ef5", + "symbol": "COOK", + "decimals": 18, + "name": "Cook", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xff75ced57419bcaebe5f05254983b013b0646ef5.png", + "aggregators": [ + "CoinMarketCap", + "1inch", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 6 + }, + "0x35a18000230da775cac24873d00ff85bccded550": { + "address": "0x35a18000230da775cac24873d00ff85bccded550", + "symbol": "CUNI", + "decimals": 8, + "name": "cUNI", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x35a18000230da775cac24873d00ff85bccded550.png", + "aggregators": [ + "CoinMarketCap", + "LiFi", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 6 + }, + "0x8e729198d1c59b82bd6bba579310c40d740a11c2": { + "address": "0x8e729198d1c59b82bd6bba579310c40d740a11c2", + "symbol": "ALVA", + "decimals": 18, + "name": "Alvara Protocol", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x8e729198d1c59b82bd6bba579310c40d740a11c2.png", + "aggregators": [ + "CoinMarketCap", + "Socket", + "Rubic", + "Squid", + "Rango", + "Sonarwatch" + ], + "occurrences": 6 + }, + "0x519c1001d550c0a1dae7d1fc220f7d14c2a521bb": { + "address": "0x519c1001d550c0a1dae7d1fc220f7d14c2a521bb", + "symbol": "PSWAP", + "decimals": 18, + "name": "Polkaswap", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x519c1001d550c0a1dae7d1fc220f7d14c2a521bb.png", + "aggregators": [ + "Metamask", + "LiFi", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 6 + }, + "0xea26c4ac16d4a5a106820bc8aee85fd0b7b2b664": { + "address": "0xea26c4ac16d4a5a106820bc8aee85fd0b7b2b664", + "symbol": "QKC", + "decimals": 18, + "name": "QuarkChain", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xea26c4ac16d4a5a106820bc8aee85fd0b7b2b664.png", + "aggregators": [ + "CoinMarketCap", + "LiFi", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 6 + }, + "0x9ae380f0272e2162340a5bb646c354271c0f5cfc": { + "address": "0x9ae380f0272e2162340a5bb646c354271c0f5cfc", + "symbol": "CNC", + "decimals": 18, + "name": "Conic", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x9ae380f0272e2162340a5bb646c354271c0f5cfc.png", + "aggregators": [ + "CoinMarketCap", + "LiFi", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 6 + }, + "0x76bc677d444f1e9d57daf5187ee2b7dc852745ae": { + "address": "0x76bc677d444f1e9d57daf5187ee2b7dc852745ae", + "symbol": "XFT", + "decimals": 18, + "name": "Offshift", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x76bc677d444f1e9d57daf5187ee2b7dc852745ae.png", + "aggregators": [ + "CoinGecko", + "Socket", + "Rubic", + "Squid", + "Rango", + "Sonarwatch" + ], + "occurrences": 6 + }, + "0x2b89bf8ba858cd2fcee1fada378d5cd6936968be": { + "address": "0x2b89bf8ba858cd2fcee1fada378d5cd6936968be", + "symbol": "WSCRT", + "decimals": 6, + "name": "Wrapped SCRT", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x2b89bf8ba858cd2fcee1fada378d5cd6936968be.png", + "aggregators": [ + "CoinGecko", + "Socket", + "Rubic", + "Rango", + "Sonarwatch", + "SushiSwap" + ], + "occurrences": 6 + }, + "0xcc7ab8d78dba187dc95bf3bb86e65e0c26d0041f": { + "address": "0xcc7ab8d78dba187dc95bf3bb86e65e0c26d0041f", + "symbol": "SPACE", + "decimals": 18, + "name": "Spacelens", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xcc7ab8d78dba187dc95bf3bb86e65e0c26d0041f.png", + "aggregators": [ + "Metamask", + "Socket", + "Rubic", + "Rango", + "Sonarwatch", + "Bancor" + ], + "occurrences": 6 + }, + "0x9ee91f9f426fa633d227f7a9b000e28b9dfd8599": { + "address": "0x9ee91f9f426fa633d227f7a9b000e28b9dfd8599", + "symbol": "STMATIC", + "decimals": 18, + "name": "Liquid staked MATIC", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x9ee91f9f426fa633d227f7a9b000e28b9dfd8599.png", + "aggregators": [ + "Metamask", + "LiFi", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 6 + }, + "0x9a96ec9b57fb64fbc60b423d1f4da7691bd35079": { + "address": "0x9a96ec9b57fb64fbc60b423d1f4da7691bd35079", + "symbol": "AJNA", + "decimals": 18, + "name": "Ajna Protocol", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x9a96ec9b57fb64fbc60b423d1f4da7691bd35079.png", + "aggregators": [ + "CoinMarketCap", + "LiFi", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 6 + }, + "0xfae103dc9cf190ed75350761e95403b7b8afa6c0": { + "address": "0xfae103dc9cf190ed75350761e95403b7b8afa6c0", + "symbol": "RSWETH", + "decimals": 18, + "name": "Restaked Swell ETH", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xfae103dc9cf190ed75350761e95403b7b8afa6c0.png", + "aggregators": [ + "CoinMarketCap", + "1inch", + "LiFi", + "Socket", + "Rubic", + "Sonarwatch" + ], + "occurrences": 6 + }, + "0x42476f744292107e34519f9c357927074ea3f75d": { + "address": "0x42476f744292107e34519f9c357927074ea3f75d", + "symbol": "LOOM", + "decimals": 18, + "name": "Loom", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x42476f744292107e34519f9c357927074ea3f75d.png", + "aggregators": [ + "Metamask", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x2ebd53d035150f328bd754d6dc66b99b0edb89aa": { + "address": "0x2ebd53d035150f328bd754d6dc66b99b0edb89aa", + "symbol": "MET", + "decimals": 18, + "name": "Metronome", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x2ebd53d035150f328bd754d6dc66b99b0edb89aa.png", + "aggregators": [ + "CoinMarketCap", + "1inch", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 6 + }, + "0x5c872500c00565505f3624ab435c222e558e9ff8": { + "address": "0x5c872500c00565505f3624ab435c222e558e9ff8", + "symbol": "COT", + "decimals": 18, + "name": "CoTrader", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x5c872500c00565505f3624ab435c222e558e9ff8.png", + "aggregators": [ + "CoinMarketCap", + "Socket", + "Rubic", + "Rango", + "Sonarwatch", + "Bancor" + ], + "occurrences": 6 + }, + "0xcb8d1260f9c92a3a545d409466280ffdd7af7042": { + "address": "0xcb8d1260f9c92a3a545d409466280ffdd7af7042", + "symbol": "NFT", + "decimals": 18, + "name": "NFT Protocol", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xcb8d1260f9c92a3a545d409466280ffdd7af7042.png", + "aggregators": [ + "CoinMarketCap", + "LiFi", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 6 + }, + "0xc4de189abf94c57f396bd4c52ab13b954febefd8": { + "address": "0xc4de189abf94c57f396bd4c52ab13b954febefd8", + "symbol": "B20", + "decimals": 18, + "name": "B20", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xc4de189abf94c57f396bd4c52ab13b954febefd8.png", + "aggregators": [ + "CoinMarketCap", + "LiFi", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 6 + }, + "0x6df0e641fc9847c0c6fde39be6253045440c14d3": { + "address": "0x6df0e641fc9847c0c6fde39be6253045440c14d3", + "symbol": "DINERO", + "decimals": 18, + "name": "Dinero", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x6df0e641fc9847c0c6fde39be6253045440c14d3.png", + "aggregators": [ + "CoinMarketCap", + "LiFi", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 6 + }, + "0x3b9be07d622accaed78f479bc0edabfd6397e320": { + "address": "0x3b9be07d622accaed78f479bc0edabfd6397e320", + "symbol": "LSS", + "decimals": 18, + "name": "Lossless", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x3b9be07d622accaed78f479bc0edabfd6397e320.png", + "aggregators": [ + "CoinMarketCap", + "1inch", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 6 + }, + "0x03be5c903c727ee2c8c4e9bc0acc860cca4715e2": { + "address": "0x03be5c903c727ee2c8c4e9bc0acc860cca4715e2", + "symbol": "CAPS", + "decimals": 18, + "name": "Ternoa", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x03be5c903c727ee2c8c4e9bc0acc860cca4715e2.png", + "aggregators": [ + "CoinMarketCap", + "1inch", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 6 + }, + "0x2e85ae1c47602f7927bcabc2ff99c40aa222ae15": { + "address": "0x2e85ae1c47602f7927bcabc2ff99c40aa222ae15", + "symbol": "KATA", + "decimals": 18, + "name": "Katana Inu", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x2e85ae1c47602f7927bcabc2ff99c40aa222ae15.png", + "aggregators": [ + "CoinMarketCap", + "Socket", + "Rubic", + "Squid", + "Rango", + "Sonarwatch" + ], + "occurrences": 6 + }, + "0x10633216e7e8281e33c86f02bf8e565a635d9770": { + "address": "0x10633216e7e8281e33c86f02bf8e565a635d9770", + "symbol": "DVI", + "decimals": 18, + "name": "Dvision Network", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x10633216e7e8281e33c86f02bf8e565a635d9770.png", + "aggregators": [ + "Metamask", + "1inch", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 6 + }, + "0x12ef10a4fc6e1ea44b4ca9508760ff51c647bb71": { + "address": "0x12ef10a4fc6e1ea44b4ca9508760ff51c647bb71", + "symbol": "RSTK", + "decimals": 18, + "name": "Restake Finance", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x12ef10a4fc6e1ea44b4ca9508760ff51c647bb71.png", + "aggregators": [ + "CoinMarketCap", + "Socket", + "Rubic", + "Squid", + "Rango", + "Sonarwatch" + ], + "occurrences": 6 + }, + "0x908ddb096bfb3acb19e2280aad858186ea4935c4": { + "address": "0x908ddb096bfb3acb19e2280aad858186ea4935c4", + "symbol": "ESE", + "decimals": 18, + "name": "Eesee", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x908ddb096bfb3acb19e2280aad858186ea4935c4.png", + "aggregators": [ + "CoinMarketCap", + "Socket", + "Rubic", + "Squid", + "Rango", + "Sonarwatch" + ], + "occurrences": 6 + }, + "0x19247618d79e3fc4d4866169789e4b8eedef52e6": { + "address": "0x19247618d79e3fc4d4866169789e4b8eedef52e6", + "symbol": "CAI", + "decimals": 18, + "name": "Chasm", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x19247618d79e3fc4d4866169789e4b8eedef52e6.png", + "aggregators": [ + "CoinMarketCap", + "Socket", + "Rubic", + "Squid", + "Rango", + "Sonarwatch" + ], + "occurrences": 6 + }, + "0x42069026eac8eee0fd9b5f7adfa4f6e6d69a2b39": { + "address": "0x42069026eac8eee0fd9b5f7adfa4f6e6d69a2b39", + "symbol": "MSTR", + "decimals": 9, + "name": "MSTR2100", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x42069026eac8eee0fd9b5f7adfa4f6e6d69a2b39.png", + "aggregators": [ + "CoinMarketCap", + "Socket", + "Rubic", + "Squid", + "Rango", + "Sonarwatch" + ], + "occurrences": 6 + }, + "0x823556202e86763853b40e9cde725f412e294689": { + "address": "0x823556202e86763853b40e9cde725f412e294689", + "symbol": "ASTO", + "decimals": 18, + "name": "Altered State Machine", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x823556202e86763853b40e9cde725f412e294689.png", + "aggregators": [ + "CoinMarketCap", + "1inch", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 6 + }, + "0x4f604735c1cf31399c6e711d5962b2b3e0225ad3": { + "address": "0x4f604735c1cf31399c6e711d5962b2b3e0225ad3", + "symbol": "USDGLO", + "decimals": 18, + "name": "Glo Dollar", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x4f604735c1cf31399c6e711d5962b2b3e0225ad3.png", + "aggregators": [ + "CoinMarketCap", + "Socket", + "Rubic", + "Squid", + "Rango", + "Sonarwatch" + ], + "occurrences": 6 + }, + "0x70bc0dc6414eb8974bc70685f798838a87d8cce4": { + "address": "0x70bc0dc6414eb8974bc70685f798838a87d8cce4", + "symbol": "CHRP", + "decimals": 18, + "name": "Chirpley", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x70bc0dc6414eb8974bc70685f798838a87d8cce4.png", + "aggregators": [ + "CoinMarketCap", + "Socket", + "Rubic", + "Squid", + "Rango", + "Sonarwatch" + ], + "occurrences": 6 + }, + "0x63f88a2298a5c4aee3c216aa6d926b184a4b2437": { + "address": "0x63f88a2298a5c4aee3c216aa6d926b184a4b2437", + "symbol": "GAME", + "decimals": 18, + "name": "GAME Credits", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x63f88a2298a5c4aee3c216aa6d926b184a4b2437.png", + "aggregators": [ + "Metamask", + "LiFi", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 6 + }, + "0xf1290473e210b2108a85237fbcd7b6eb42cc654f": { + "address": "0xf1290473e210b2108a85237fbcd7b6eb42cc654f", + "symbol": "HEDG", + "decimals": 18, + "name": "HedgeTrade", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xf1290473e210b2108a85237fbcd7b6eb42cc654f.png", + "aggregators": [ + "CoinMarketCap", + "Socket", + "Rubic", + "Rango", + "Sonarwatch", + "Bancor" + ], + "occurrences": 6 + }, + "0xf2f9a7e93f845b3ce154efbeb64fb9346fcce509": { + "address": "0xf2f9a7e93f845b3ce154efbeb64fb9346fcce509", + "symbol": "POWER", + "decimals": 18, + "name": "POWER", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xf2f9a7e93f845b3ce154efbeb64fb9346fcce509.png", + "aggregators": [ + "CoinMarketCap", + "1inch", + "LiFi", + "Socket", + "Rubic", + "Rango" + ], + "occurrences": 6 + }, + "0xdfe691f37b6264a90ff507eb359c45d55037951c": { + "address": "0xdfe691f37b6264a90ff507eb359c45d55037951c", + "symbol": "KARMA", + "decimals": 4, + "name": "KARMA", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xdfe691f37b6264a90ff507eb359c45d55037951c.png", + "aggregators": [ + "CoinMarketCap", + "1inch", + "LiFi", + "Socket", + "Rubic", + "Rango" + ], + "occurrences": 6 + }, + "0xc3dd23a0a854b4f9ae80670f528094e9eb607ccb": { + "address": "0xc3dd23a0a854b4f9ae80670f528094e9eb607ccb", + "symbol": "TRND", + "decimals": 18, + "name": "TRND", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xc3dd23a0a854b4f9ae80670f528094e9eb607ccb.png", + "aggregators": [ + "CoinMarketCap", + "1inch", + "LiFi", + "Socket", + "Rubic", + "Rango" + ], + "occurrences": 6 + }, + "0x6a7ef4998eb9d0f706238756949f311a59e05745": { + "address": "0x6a7ef4998eb9d0f706238756949f311a59e05745", + "symbol": "KEN", + "decimals": 18, + "name": "Keysians Network", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x6a7ef4998eb9d0f706238756949f311a59e05745.png", + "aggregators": [ + "CoinMarketCap", + "1inch", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 6 + }, + "0x39795344cbcc76cc3fb94b9d1b15c23c2070c66d": { + "address": "0x39795344cbcc76cc3fb94b9d1b15c23c2070c66d", + "symbol": "SHARE", + "decimals": 9, + "name": "Seigniorage Shares", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x39795344cbcc76cc3fb94b9d1b15c23c2070c66d.png", + "aggregators": [ + "CoinMarketCap", + "1inch", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 6 + }, + "0x177ba0cac51bfc7ea24bad39d81dcefd59d74faa": { + "address": "0x177ba0cac51bfc7ea24bad39d81dcefd59d74faa", + "symbol": "KIF", + "decimals": 18, + "name": "KittenFinance", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x177ba0cac51bfc7ea24bad39d81dcefd59d74faa.png", + "aggregators": [ + "CoinMarketCap", + "LiFi", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 6 + }, + "0x6006fc2a849fedaba8330ce36f5133de01f96189": { + "address": "0x6006fc2a849fedaba8330ce36f5133de01f96189", + "symbol": "SHAKE", + "decimals": 18, + "name": "Spaceswap SHAKE", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x6006fc2a849fedaba8330ce36f5133de01f96189.png", + "aggregators": [ + "CoinMarketCap", + "1inch", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 6 + }, + "0x739763a258640919981f9ba610ae65492455be53": { + "address": "0x739763a258640919981f9ba610ae65492455be53", + "symbol": "NDR", + "decimals": 18, + "name": "NodeRunners", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x739763a258640919981f9ba610ae65492455be53.png", + "aggregators": [ + "CoinMarketCap", + "1inch", + "LiFi", + "Socket", + "Rubic", + "Rango" + ], + "occurrences": 6 + }, + "0x159751323a9e0415dd3d6d42a1212fe9f4a0848c": { + "address": "0x159751323a9e0415dd3d6d42a1212fe9f4a0848c", + "symbol": "INFI", + "decimals": 18, + "name": "INFI", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x159751323a9e0415dd3d6d42a1212fe9f4a0848c.png", + "aggregators": [ + "CoinMarketCap", + "1inch", + "LiFi", + "Socket", + "Rubic", + "Rango" + ], + "occurrences": 6 + }, + "0x945facb997494cc2570096c74b5f66a3507330a1": { + "address": "0x945facb997494cc2570096c74b5f66a3507330a1", + "symbol": "MBTC", + "decimals": 18, + "name": "mStable BTC", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x945facb997494cc2570096c74b5f66a3507330a1.png", + "aggregators": [ + "CoinMarketCap", + "LiFi", + "Socket", + "Rubic", + "Rango", + "SushiSwap" + ], + "occurrences": 6 + }, + "0x6149c26cd2f7b5ccdb32029af817123f6e37df5b": { + "address": "0x6149c26cd2f7b5ccdb32029af817123f6e37df5b", + "symbol": "LPOOL", + "decimals": 18, + "name": "Launchpool", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x6149c26cd2f7b5ccdb32029af817123f6e37df5b.png", + "aggregators": [ + "CoinMarketCap", + "LiFi", + "TrustWallet", + "Socket", + "Rubic", + "Rango" + ], + "occurrences": 6 + }, + "0x1da87b114f35e1dc91f72bf57fc07a768ad40bb0": { + "address": "0x1da87b114f35e1dc91f72bf57fc07a768ad40bb0", + "symbol": "EQZ", + "decimals": 18, + "name": "Equalizer", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x1da87b114f35e1dc91f72bf57fc07a768ad40bb0.png", + "aggregators": [ + "Metamask", + "LiFi", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 6 + }, + "0x46e98ffe40e408ba6412beb670507e083c8b95ff": { + "address": "0x46e98ffe40e408ba6412beb670507e083c8b95ff", + "symbol": "PRIMATE", + "decimals": 18, + "name": "PRIMATE", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x46e98ffe40e408ba6412beb670507e083c8b95ff.png", + "aggregators": [ + "CoinMarketCap", + "LiFi", + "Socket", + "Rubic", + "Sonarwatch", + "SushiSwap" + ], + "occurrences": 6 + }, + "0x30dcba0405004cf124045793e1933c798af9e66a": { + "address": "0x30dcba0405004cf124045793e1933c798af9e66a", + "symbol": "YDF", + "decimals": 18, + "name": "Yieldification", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x30dcba0405004cf124045793e1933c798af9e66a.png", + "aggregators": [ + "CoinMarketCap", + "1inch", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 6 + }, + "0x329c6e459ffa7475718838145e5e85802db2a303": { + "address": "0x329c6e459ffa7475718838145e5e85802db2a303", + "symbol": "EMAID", + "decimals": 18, + "name": "MaidSafeCoin", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x329c6e459ffa7475718838145e5e85802db2a303.png", + "aggregators": [ + "CoinMarketCap", + "LiFi", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 6 + }, + "0x3ba925fdeae6b46d0bb4d424d829982cb2f7309e": { + "address": "0x3ba925fdeae6b46d0bb4d424d829982cb2f7309e", + "symbol": "RBX", + "decimals": 18, + "name": "RabbitX", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x3ba925fdeae6b46d0bb4d424d829982cb2f7309e.png", + "aggregators": [ + "CoinMarketCap", + "Socket", + "Rubic", + "Squid", + "Rango", + "Sonarwatch" + ], + "occurrences": 6 + }, + "0x69a95185ee2a045cdc4bcd1b1df10710395e4e23": { + "address": "0x69a95185ee2a045cdc4bcd1b1df10710395e4e23", + "symbol": "POOLZ", + "decimals": 18, + "name": "$Poolz Finance", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x69a95185ee2a045cdc4bcd1b1df10710395e4e23.png", + "aggregators": [ + "Metamask", + "LiFi", + "Rubic", + "Rango", + "Sonarwatch", + "Bancor" + ], + "occurrences": 6 + }, + "0x1f3f9d3068568f8040775be2e8c03c103c61f3af": { + "address": "0x1f3f9d3068568f8040775be2e8c03c103c61f3af", + "symbol": "ARCH", + "decimals": 18, + "name": "Archer DAO", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x1f3f9d3068568f8040775be2e8c03c103c61f3af.png", + "aggregators": [ + "1inch", + "LiFi", + "Socket", + "Rubic", + "Rango", + "SushiSwap" + ], + "occurrences": 6 + }, + "0x7815bda662050d84718b988735218cffd32f75ea": { + "address": "0x7815bda662050d84718b988735218cffd32f75ea", + "symbol": "YEL", + "decimals": 18, + "name": "YEL Token", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x7815bda662050d84718b988735218cffd32f75ea.png", + "aggregators": [ + "1inch", + "Socket", + "Rubic", + "Squid", + "Rango", + "SushiSwap" + ], + "occurrences": 6 + }, + "0x69bbc3f8787d573f1bbdd0a5f40c7ba0aee9bcc9": { + "address": "0x69bbc3f8787d573f1bbdd0a5f40c7ba0aee9bcc9", + "symbol": "YUP", + "decimals": 18, + "name": "Yup", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x69bbc3f8787d573f1bbdd0a5f40c7ba0aee9bcc9.png", + "aggregators": [ + "LiFi", + "Socket", + "Rubic", + "Squid", + "Rango", + "Sonarwatch" + ], + "occurrences": 6 + }, + "0x8b1484d57abbe239bb280661377363b03c89caea": { + "address": "0x8b1484d57abbe239bb280661377363b03c89caea", + "symbol": "ADI", + "decimals": 18, + "name": "ADI", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x8b1484d57abbe239bb280661377363b03c89caea.png", + "aggregators": ["CoinMarketCap", "1inch", "LiFi", "Rubic", "Rango"], + "occurrences": 5 + }, + "0x4d7078ddd6ccfed2f85db5b7d3ff16828d378d48": { + "address": "0x4d7078ddd6ccfed2f85db5b7d3ff16828d378d48", + "symbol": "AI", + "decimals": 18, + "name": "Gensyn", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x4d7078ddd6ccfed2f85db5b7d3ff16828d378d48.png", + "aggregators": [ + "CoinMarketCap", + "LiFi", + "Socket", + "Rubic", + "Rango" + ], + "occurrences": 5 + }, + "0x2565ae0385659badcada1031db704442e1b69982": { + "address": "0x2565ae0385659badcada1031db704442e1b69982", + "symbol": "ASM", + "decimals": 18, + "name": "Assemble AI", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x2565ae0385659badcada1031db704442e1b69982.png", + "aggregators": [ + "OpenSwap", + "LiFi", + "Socket", + "Rubic", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0xa27ec0006e59f245217ff08cd52a7e8b169e62d2": { + "address": "0xa27ec0006e59f245217ff08cd52a7e8b169e62d2", + "symbol": "AZTEC", + "decimals": 18, + "name": "AZTEC", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xa27ec0006e59f245217ff08cd52a7e8b169e62d2.png", + "aggregators": [ + "CoinMarketCap", + "Socket", + "Rubic", + "Squid", + "Rango" + ], + "occurrences": 5 + }, + "0xf0db65d17e30a966c2ae6a21f6bba71cea6e9754": { + "address": "0xf0db65d17e30a966c2ae6a21f6bba71cea6e9754", + "symbol": "BARD", + "decimals": 18, + "name": "Lombard", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xf0db65d17e30a966c2ae6a21f6bba71cea6e9754.png", + "aggregators": [ + "CoinMarketCap", + "LiFi", + "Socket", + "Rubic", + "Rango" + ], + "occurrences": 5 + }, + "0xb1110919016846972056ab995054d65560d5f05e": { + "address": "0xb1110919016846972056ab995054d65560d5f05e", + "symbol": "BILL", + "decimals": 18, + "name": "Billions", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xb1110919016846972056ab995054d65560d5f05e.png", + "aggregators": [ + "CoinMarketCap", + "LiFi", + "Socket", + "Rubic", + "Rango" + ], + "occurrences": 5 + }, + "0xd8a271974e8edae9d7b58e3370dc1669427503f4": { + "address": "0xd8a271974e8edae9d7b58e3370dc1669427503f4", + "symbol": "BLEND", + "decimals": 18, + "name": "Fluent", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xd8a271974e8edae9d7b58e3370dc1669427503f4.png", + "aggregators": [ + "CoinMarketCap", + "LiFi", + "Socket", + "Rubic", + "Rango" + ], + "occurrences": 5 + }, + "0x08389495d7456e1951ddf7c3a1314a4bfb646d8b": { + "address": "0x08389495d7456e1951ddf7c3a1314a4bfb646d8b", + "symbol": "CRPT", + "decimals": 18, + "name": "Crypterium", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x08389495d7456e1951ddf7c3a1314a4bfb646d8b.png", + "aggregators": [ + "OpenSwap", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x031de51f3e8016514bd0963d0b2ab825a591db9a": { + "address": "0x031de51f3e8016514bd0963d0b2ab825a591db9a", + "symbol": "ESP", + "decimals": 18, + "name": "Espresso", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x031de51f3e8016514bd0963d0b2ab825a591db9a.png", + "aggregators": [ + "CoinMarketCap", + "LiFi", + "Socket", + "Rubic", + "Rango" + ], + "occurrences": 5 + }, + "0x904567252d8f48555b7447c67dca23f0372e16be": { + "address": "0x904567252d8f48555b7447c67dca23f0372e16be", + "symbol": "KITE", + "decimals": 18, + "name": "Kite", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x904567252d8f48555b7447c67dca23f0372e16be.png", + "aggregators": [ + "CoinMarketCap", + "LiFi", + "Socket", + "Rubic", + "Rango" + ], + "occurrences": 5 + }, + "0x6bef15d938d4e72056ac92ea4bdd0d76b1c4ad29": { + "address": "0x6bef15d938d4e72056ac92ea4bdd0d76b1c4ad29", + "symbol": "PROVE", + "decimals": 18, + "name": "Succinct", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x6bef15d938d4e72056ac92ea4bdd0d76b1c4ad29.png", + "aggregators": [ + "CoinMarketCap", + "LiFi", + "Socket", + "Rubic", + "Rango" + ], + "occurrences": 5 + }, + "0x56a3ba04e95d34268a19b2a4474dc979babdaf76": { + "address": "0x56a3ba04e95d34268a19b2a4474dc979babdaf76", + "symbol": "SENT", + "decimals": 18, + "name": "Sentient", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x56a3ba04e95d34268a19b2a4474dc979babdaf76.png", + "aggregators": [ + "CoinMarketCap", + "LiFi", + "Socket", + "Rubic", + "Rango" + ], + "occurrences": 5 + }, + "0x0bb217e40f8a5cb79adf04e1aab60e5abd0dfc1e": { + "address": "0x0bb217e40f8a5cb79adf04e1aab60e5abd0dfc1e", + "symbol": "SWFTC", + "decimals": 8, + "name": "SWFTCOIN", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x0bb217e40f8a5cb79adf04e1aab60e5abd0dfc1e.png", + "aggregators": [ + "CoinMarketCap", + "1inch", + "Socket", + "Rubic", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0xcedbea37c8872c4171259cdfd5255cb8923cf8e7": { + "address": "0xcedbea37c8872c4171259cdfd5255cb8923cf8e7", + "symbol": "XAN", + "decimals": 18, + "name": "Anoma", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xcedbea37c8872c4171259cdfd5255cb8923cf8e7.png", + "aggregators": [ + "CoinMarketCap", + "1inch", + "Socket", + "Rubic", + "Rango" + ], + "occurrences": 5 + }, + "0x01791f726b4103694969820be083196cc7c045ff": { + "address": "0x01791f726b4103694969820be083196cc7c045ff", + "symbol": "YB", + "decimals": 18, + "name": "Yield Basis", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x01791f726b4103694969820be083196cc7c045ff.png", + "aggregators": ["Metamask", "1inch", "Socket", "Rubic", "Rango"], + "occurrences": 5 + }, + "0xa12cc123ba206d4031d1c7f6223d1c2ec249f4f3": { + "address": "0xa12cc123ba206d4031d1c7f6223d1c2ec249f4f3", + "symbol": "ZAMA", + "decimals": 18, + "name": "Zama", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xa12cc123ba206d4031d1c7f6223d1c2ec249f4f3.png", + "aggregators": [ + "CoinMarketCap", + "Socket", + "Rubic", + "Squid", + "Rango" + ], + "occurrences": 5 + }, + "0x3a3a65aab0dd2a17e3f1947ba16138cd37d08c04": { + "address": "0x3a3a65aab0dd2a17e3f1947ba16138cd37d08c04", + "symbol": "AETH", + "decimals": 18, + "name": "AETH", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x3a3a65aab0dd2a17e3f1947ba16138cd37d08c04.png", + "aggregators": [ + "CoinMarketCap", + "LiFi", + "Socket", + "Rubic", + "Rango" + ], + "occurrences": 5 + }, + "0xe1afe1fd76fd88f78cbf599ea1846231b8ba3b6b": { + "address": "0xe1afe1fd76fd88f78cbf599ea1846231b8ba3b6b", + "symbol": "SDEFI", + "decimals": 18, + "name": "Synth sDEFI", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xe1afe1fd76fd88f78cbf599ea1846231b8ba3b6b.png", + "aggregators": ["Synthetix", "LiFi", "Rubic", "Rango", "SushiSwap"], + "occurrences": 5 + }, + "0xc28e27870558cf22add83540d2126da2e4b464c2": { + "address": "0xc28e27870558cf22add83540d2126da2e4b464c2", + "symbol": "SASHIMI", + "decimals": 18, + "name": "Sashimi", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xc28e27870558cf22add83540d2126da2e4b464c2.png", + "aggregators": [ + "CoinMarketCap", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0xa89ac6e529acf391cfbbd377f3ac9d93eae9664e": { + "address": "0xa89ac6e529acf391cfbbd377f3ac9d93eae9664e", + "symbol": "KP4R", + "decimals": 18, + "name": "KP4R", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xa89ac6e529acf391cfbbd377f3ac9d93eae9664e.png", + "aggregators": [ + "CoinMarketCap", + "1inch", + "LiFi", + "Socket", + "Rango" + ], + "occurrences": 5 + }, + "0x20c36f062a31865bed8a5b1e512d9a1a20aa333a": { + "address": "0x20c36f062a31865bed8a5b1e512d9a1a20aa333a", + "symbol": "DFD", + "decimals": 18, + "name": "DefiDollar DAO", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x20c36f062a31865bed8a5b1e512d9a1a20aa333a.png", + "aggregators": [ + "CoinMarketCap", + "Socket", + "Rubic", + "Rango", + "SushiSwap" + ], + "occurrences": 5 + }, + "0x67b66c99d3eb37fa76aa3ed1ff33e8e39f0b9c7a": { + "address": "0x67b66c99d3eb37fa76aa3ed1ff33e8e39f0b9c7a", + "symbol": "IBETH", + "decimals": 18, + "name": "Interest Bearing ETH", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x67b66c99d3eb37fa76aa3ed1ff33e8e39f0b9c7a.png", + "aggregators": [ + "CoinMarketCap", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0xc3eb2622190c57429aac3901808994443b64b466": { + "address": "0xc3eb2622190c57429aac3901808994443b64b466", + "symbol": "ORO", + "decimals": 18, + "name": "ORO", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xc3eb2622190c57429aac3901808994443b64b466.png", + "aggregators": [ + "CoinMarketCap", + "LiFi", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0xd71ecff9342a5ced620049e616c5035f1db98620": { + "address": "0xd71ecff9342a5ced620049e616c5035f1db98620", + "symbol": "SEUR", + "decimals": 18, + "name": "sEUR", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xd71ecff9342a5ced620049e616c5035f1db98620.png", + "aggregators": [ + "Synthetix", + "LiFi", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x01995a697752266d8e748738aaa3f06464b8350b": { + "address": "0x01995a697752266d8e748738aaa3f06464b8350b", + "symbol": "CANA", + "decimals": 18, + "name": "CANA Holdings California Carbon Credits", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x01995a697752266d8e748738aaa3f06464b8350b.png", + "aggregators": ["CoinGecko", "LiFi", "Socket", "Rubic", "Rango"], + "occurrences": 5 + }, + "0x1b1ff83ae0751ffb7ce0224e9c330e859e95dd16": { + "address": "0x1b1ff83ae0751ffb7ce0224e9c330e859e95dd16", + "symbol": "LEGEND", + "decimals": 18, + "name": "Legend", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x1b1ff83ae0751ffb7ce0224e9c330e859e95dd16.png", + "aggregators": ["CoinGecko", "Socket", "Rubic", "Sonarwatch"], + "occurrences": 4 + }, + "0x054d64b73d3d8a21af3d764efd76bcaa774f3bb2": { + "address": "0x054d64b73d3d8a21af3d764efd76bcaa774f3bb2", + "symbol": "PPAY", + "decimals": 18, + "name": "Plasma Finance", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x054d64b73d3d8a21af3d764efd76bcaa774f3bb2.png", + "aggregators": [ + "CoinMarketCap", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x259338656198ec7a76c729514d3cb45dfbf768a1": { + "address": "0x259338656198ec7a76c729514d3cb45dfbf768a1", + "symbol": "RESOLV", + "decimals": 18, + "name": "Resolv", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x259338656198ec7a76c729514d3cb45dfbf768a1.png", + "aggregators": [ + "CoinMarketCap", + "LiFi", + "Socket", + "Rubic", + "Rango" + ], + "occurrences": 5 + }, + "0xe9b076b476d8865cdf79d1cf7df420ee397a7f75": { + "address": "0xe9b076b476d8865cdf79d1cf7df420ee397a7f75", + "symbol": "FUND", + "decimals": 9, + "name": "Unification", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xe9b076b476d8865cdf79d1cf7df420ee397a7f75.png", + "aggregators": [ + "CoinMarketCap", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x10ea9e5303670331bdddfa66a4cea47dae4fcf3b": { + "address": "0x10ea9e5303670331bdddfa66a4cea47dae4fcf3b", + "symbol": "SESH", + "decimals": 9, + "name": "Session Token", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x10ea9e5303670331bdddfa66a4cea47dae4fcf3b.png", + "aggregators": [ + "CoinMarketCap", + "LiFi", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0xaff2565091e7207191dbe340b8528d02fa78d044": { + "address": "0xaff2565091e7207191dbe340b8528d02fa78d044", + "symbol": "ASTEROID", + "decimals": 18, + "name": "Asteroid", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xaff2565091e7207191dbe340b8528d02fa78d044.png", + "aggregators": ["CoinGecko", "LiFi", "Rubic", "Squid", "Rango"], + "occurrences": 5 + }, + "0x4116f14b6d462b32a1c10f98049e4b1765e34fa9": { + "address": "0x4116f14b6d462b32a1c10f98049e4b1765e34fa9", + "symbol": "MOOV", + "decimals": 18, + "name": "Dotmoovs", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x4116f14b6d462b32a1c10f98049e4b1765e34fa9.png", + "aggregators": [ + "Metamask", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0xb33d999469a7e6b9ebc25a3a05248287b855ed46": { + "address": "0xb33d999469a7e6b9ebc25a3a05248287b855ed46", + "symbol": "FLOCK", + "decimals": 18, + "name": "Flockerz", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xb33d999469a7e6b9ebc25a3a05248287b855ed46.png", + "aggregators": [ + "CoinMarketCap", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x066798d9ef0833ccc719076dab77199ecbd178b0": { + "address": "0x066798d9ef0833ccc719076dab77199ecbd178b0", + "symbol": "SAKE", + "decimals": 18, + "name": "SakeSwap", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x066798d9ef0833ccc719076dab77199ecbd178b0.png", + "aggregators": [ + "CoinMarketCap", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0xaacbc3725e0af980e8aa9df4c4441a625b387a91": { + "address": "0xaacbc3725e0af980e8aa9df4c4441a625b387a91", + "symbol": "AETHRA", + "decimals": 18, + "name": "Aethra AI", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xaacbc3725e0af980e8aa9df4c4441a625b387a91.png", + "aggregators": [ + "CoinMarketCap", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0xbc68ff3b062bc588603d71ec8d4273391edf152c": { + "address": "0xbc68ff3b062bc588603d71ec8d4273391edf152c", + "symbol": "OWCT", + "decimals": 18, + "name": "One World Chain", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xbc68ff3b062bc588603d71ec8d4273391edf152c.png", + "aggregators": [ + "CoinGecko", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0xf0b2dd79324a66d2108c961d680f7616e1486bb0": { + "address": "0xf0b2dd79324a66d2108c961d680f7616e1486bb0", + "symbol": "SILO", + "decimals": 18, + "name": "Silo Finance", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xf0b2dd79324a66d2108c961d680f7616e1486bb0.png", + "aggregators": [ + "CoinMarketCap", + "LiFi", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x4ae149fd6059af772b962efac6bf0236872d6940": { + "address": "0x4ae149fd6059af772b962efac6bf0236872d6940", + "symbol": "LBAI", + "decimals": 18, + "name": "Lemmy The Bat", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x4ae149fd6059af772b962efac6bf0236872d6940.png", + "aggregators": [ + "CoinMarketCap", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x3e6a1b21bd267677fa49be6425aebe2fc0f89bde": { + "address": "0x3e6a1b21bd267677fa49be6425aebe2fc0f89bde", + "symbol": "QBIO", + "decimals": 18, + "name": "Quantum Biology DAO", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x3e6a1b21bd267677fa49be6425aebe2fc0f89bde.png", + "aggregators": [ + "CoinGecko", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0xf970706063b7853877f39515c96932d49d5ac9cd": { + "address": "0xf970706063b7853877f39515c96932d49d5ac9cd", + "symbol": "YALA", + "decimals": 18, + "name": "YALA", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xf970706063b7853877f39515c96932d49d5ac9cd.png", + "aggregators": [ + "CoinMarketCap", + "LiFi", + "Socket", + "Rubic", + "Rango" + ], + "occurrences": 5 + }, + "0x17205fab260a7a6383a81452ce6315a39370db97": { + "address": "0x17205fab260a7a6383a81452ce6315a39370db97", + "symbol": "RAVE", + "decimals": 18, + "name": "RaveDAO", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x17205fab260a7a6383a81452ce6315a39370db97.png", + "aggregators": [ + "CoinMarketCap", + "LiFi", + "Socket", + "Rubic", + "Rango" + ], + "occurrences": 5 + }, + "0x672fdba7055bddfa8fd6bd45b1455ce5eb97f499": { + "address": "0x672fdba7055bddfa8fd6bd45b1455ce5eb97f499", + "symbol": "ARC", + "decimals": 18, + "name": "ARC", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x672fdba7055bddfa8fd6bd45b1455ce5eb97f499.png", + "aggregators": [ + "CoinMarketCap", + "1inch", + "Socket", + "Rubic", + "Rango" + ], + "occurrences": 5 + }, + "0x39b8b6385416f4ca36a20319f70d28621895279d": { + "address": "0x39b8b6385416f4ca36a20319f70d28621895279d", + "symbol": "EURE", + "decimals": 18, + "name": "Monerium EUR emoney", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x39b8b6385416f4ca36a20319f70d28621895279d.png", + "aggregators": [ + "CoinMarketCap", + "1inch", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x7204b7dbf9412567835633b6f00c3edc3a8d6330": { + "address": "0x7204b7dbf9412567835633b6f00c3edc3a8d6330", + "symbol": "CSUSDC", + "decimals": 18, + "name": "Coinshift USDC", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x7204b7dbf9412567835633b6f00c3edc3a8d6330.png", + "aggregators": [ + "CoinGecko", + "LiFi", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x23238f20b894f29041f48d88ee91131c395aaa71": { + "address": "0x23238f20b894f29041f48d88ee91131c395aaa71", + "symbol": "USDAT", + "decimals": 6, + "name": "Saturn Dollar", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x23238f20b894f29041f48d88ee91131c395aaa71.png", + "aggregators": ["CoinGecko", "LiFi", "Socket", "Rubic", "Rango"], + "occurrences": 5 + }, + "0xcab84bc21f9092167fcfe0ea60f5ce053ab39a1e": { + "address": "0xcab84bc21f9092167fcfe0ea60f5ce053ab39a1e", + "symbol": "BLOCK", + "decimals": 18, + "name": "Block", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xcab84bc21f9092167fcfe0ea60f5ce053ab39a1e.png", + "aggregators": ["CoinGecko", "1inch", "Socket", "Rubic", "Rango"], + "occurrences": 5 + }, + "0x440017a1b021006d556d7fc06a54c32e42eb745b": { + "address": "0x440017a1b021006d556d7fc06a54c32e42eb745b", + "symbol": "G", + "decimals": 18, + "name": "Graphite Network", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x440017a1b021006d556d7fc06a54c32e42eb745b.png", + "aggregators": [ + "CoinGecko", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x781db9a4d8ae055571e8796dd4423bc13cee5dd6": { + "address": "0x781db9a4d8ae055571e8796dd4423bc13cee5dd6", + "symbol": "DEAI", + "decimals": 18, + "name": "DeCenter AI", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x781db9a4d8ae055571e8796dd4423bc13cee5dd6.png", + "aggregators": [ + "CoinGecko", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x399ef659fdead53b3e7f97e9491e727925667945": { + "address": "0x399ef659fdead53b3e7f97e9491e727925667945", + "symbol": "L1X", + "decimals": 18, + "name": "Layer One X", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x399ef659fdead53b3e7f97e9491e727925667945.png", + "aggregators": [ + "CoinMarketCap", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x2781246fe707bb15cee3e5ea354e2154a2877b16": { + "address": "0x2781246fe707bb15cee3e5ea354e2154a2877b16", + "symbol": "EL", + "decimals": 18, + "name": "ELYSIA", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x2781246fe707bb15cee3e5ea354e2154a2877b16.png", + "aggregators": [ + "Metamask", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x95af4af910c28e8ece4512bfe46f1f33687424ce": { + "address": "0x95af4af910c28e8ece4512bfe46f1f33687424ce", + "symbol": "MANYU", + "decimals": 9, + "name": "Manyu", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x95af4af910c28e8ece4512bfe46f1f33687424ce.png", + "aggregators": ["CoinGecko", "1inch", "Rubic", "Squid", "Rango"], + "occurrences": 5 + }, + "0x39903a1a6f289a67e0de94096915c4ccd506ab2a": { + "address": "0x39903a1a6f289a67e0de94096915c4ccd506ab2a", + "symbol": "MAIV", + "decimals": 18, + "name": "Multi Asset Investment Vehicle", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x39903a1a6f289a67e0de94096915c4ccd506ab2a.png", + "aggregators": [ + "CoinMarketCap", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0xdae0fafd65385e7775cf75b1398735155ef6acd2": { + "address": "0xdae0fafd65385e7775cf75b1398735155ef6acd2", + "symbol": "TRUU", + "decimals": 10, + "name": "Truth", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xdae0fafd65385e7775cf75b1398735155ef6acd2.png", + "aggregators": [ + "CoinMarketCap", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x33b481cbbf3c24f2b3184ee7cb02daad1c4f49a8": { + "address": "0x33b481cbbf3c24f2b3184ee7cb02daad1c4f49a8", + "symbol": "D", + "decimals": 6, + "name": "Dar Open Network", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x33b481cbbf3c24f2b3184ee7cb02daad1c4f49a8.png", + "aggregators": [ + "CoinMarketCap", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0xb31561f0e2aac72406103b1926356d756f07a481": { + "address": "0xb31561f0e2aac72406103b1926356d756f07a481", + "symbol": "VOOI", + "decimals": 18, + "name": "VOOI", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xb31561f0e2aac72406103b1926356d756f07a481.png", + "aggregators": [ + "CoinMarketCap", + "LiFi", + "Socket", + "Rubic", + "Rango" + ], + "occurrences": 5 + }, + "0x156994e6cabea296e7a73cf3742355bf71a64cec": { + "address": "0x156994e6cabea296e7a73cf3742355bf71a64cec", + "symbol": "RANDOM9", + "decimals": 9, + "name": "Elons Gamertag", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x156994e6cabea296e7a73cf3742355bf71a64cec.png", + "aggregators": [ + "CoinGecko", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x5fd48ca1212a409ca1020ea43b49f7ec40010435": { + "address": "0x5fd48ca1212a409ca1020ea43b49f7ec40010435", + "symbol": "ADEX", + "decimals": 18, + "name": "AstraDex AI", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x5fd48ca1212a409ca1020ea43b49f7ec40010435.png", + "aggregators": [ + "CoinGecko", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x76a0e27618462bdac7a29104bdcfff4e6bfcea2d": { + "address": "0x76a0e27618462bdac7a29104bdcfff4e6bfcea2d", + "symbol": "SOSO", + "decimals": 18, + "name": "SoSoValue", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x76a0e27618462bdac7a29104bdcfff4e6bfcea2d.png", + "aggregators": [ + "CoinMarketCap", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x614a48c41be6ba6762b63a92cc33cfb5e8149332": { + "address": "0x614a48c41be6ba6762b63a92cc33cfb5e8149332", + "symbol": "DUSTY", + "decimals": 9, + "name": "Dusty", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x614a48c41be6ba6762b63a92cc33cfb5e8149332.png", + "aggregators": [ + "CoinMarketCap", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x81e32d4652be82ae225dedd1bd0bf3bcba8fee07": { + "address": "0x81e32d4652be82ae225dedd1bd0bf3bcba8fee07", + "symbol": "XRING", + "decimals": 18, + "name": "Darwinia Network xRING", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x81e32d4652be82ae225dedd1bd0bf3bcba8fee07.png", + "aggregators": [ + "CoinGecko", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x4eca7761a516f8300711cbf920c0b85555261993": { + "address": "0x4eca7761a516f8300711cbf920c0b85555261993", + "symbol": "GOATX", + "decimals": 18, + "name": "GOATX", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x4eca7761a516f8300711cbf920c0b85555261993.png", + "aggregators": [ + "CoinGecko", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0xf2fc894381792ded27a7f08d9f0f246363cbe1ea": { + "address": "0xf2fc894381792ded27a7f08d9f0f246363cbe1ea", + "symbol": "MATRIX", + "decimals": 18, + "name": "Matrix Win", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xf2fc894381792ded27a7f08d9f0f246363cbe1ea.png", + "aggregators": [ + "CoinGecko", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x098697ba3fee4ea76294c5d6a466a4e3b3e95fe6": { + "address": "0x098697ba3fee4ea76294c5d6a466a4e3b3e95fe6", + "symbol": "USP", + "decimals": 18, + "name": "USP", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x098697ba3fee4ea76294c5d6a466a4e3b3e95fe6.png", + "aggregators": ["CoinGecko", "1inch", "LiFi", "Rubic", "Rango"], + "occurrences": 5 + }, + "0xca4f53e6117623992126a9a45ce61682fe8678df": { + "address": "0xca4f53e6117623992126a9a45ce61682fe8678df", + "symbol": "POPPY", + "decimals": 9, + "name": "Poppy", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xca4f53e6117623992126a9a45ce61682fe8678df.png", + "aggregators": [ + "CoinMarketCap", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x4dfd742c6e5e28f11bcbcf6c5e51a965d15ea315": { + "address": "0x4dfd742c6e5e28f11bcbcf6c5e51a965d15ea315", + "symbol": "AMINO", + "decimals": 18, + "name": "Amino", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x4dfd742c6e5e28f11bcbcf6c5e51a965d15ea315.png", + "aggregators": [ + "CoinMarketCap", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x00000000000007c8612ba63df8ddefd9e6077c97": { + "address": "0x00000000000007c8612ba63df8ddefd9e6077c97", + "symbol": "⌘", + "decimals": 18, + "name": "NANI", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x00000000000007c8612ba63df8ddefd9e6077c97.png", + "aggregators": [ + "CoinGecko", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x1db1afd9552eeb28e2e36597082440598b7f1320": { + "address": "0x1db1afd9552eeb28e2e36597082440598b7f1320", + "symbol": "XRPL", + "decimals": 18, + "name": "Constellation Staked RPL", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x1db1afd9552eeb28e2e36597082440598b7f1320.png", + "aggregators": [ + "CoinGecko", + "LiFi", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x7636d8722fdf7cd34232a915e48e96aa3eb386bf": { + "address": "0x7636d8722fdf7cd34232a915e48e96aa3eb386bf", + "symbol": "SFI", + "decimals": 18, + "name": "Singularity Finance", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x7636d8722fdf7cd34232a915e48e96aa3eb386bf.png", + "aggregators": [ + "CoinMarketCap", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0xa02c49da76a085e4e1ee60a6b920ddbc8db599f4": { + "address": "0xa02c49da76a085e4e1ee60a6b920ddbc8db599f4", + "symbol": "TREAT", + "decimals": 18, + "name": "Shiba Inu Treat", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xa02c49da76a085e4e1ee60a6b920ddbc8db599f4.png", + "aggregators": [ + "CoinMarketCap", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x957c7fa189a408e78543113412f6ae1a9b4022c4": { + "address": "0x957c7fa189a408e78543113412f6ae1a9b4022c4", + "symbol": "LF", + "decimals": 18, + "name": "LF", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x957c7fa189a408e78543113412f6ae1a9b4022c4.png", + "aggregators": [ + "CoinMarketCap", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0xf8f173e20e15f3b6cb686fb64724d370689de083": { + "address": "0xf8f173e20e15f3b6cb686fb64724d370689de083", + "symbol": "HEI", + "decimals": 18, + "name": "Heima", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xf8f173e20e15f3b6cb686fb64724d370689de083.png", + "aggregators": [ + "CoinMarketCap", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x841a3083074b1a40b644bf2ba2491a731b6da277": { + "address": "0x841a3083074b1a40b644bf2ba2491a731b6da277", + "symbol": "FATAL", + "decimals": 12, + "name": "Fatalismftw", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x841a3083074b1a40b644bf2ba2491a731b6da277.png", + "aggregators": [ + "CoinGecko", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x76887cb94cf29ec539b3219ba62104be04f26a5c": { + "address": "0x76887cb94cf29ec539b3219ba62104be04f26a5c", + "symbol": "NITRO", + "decimals": 18, + "name": "Nitro", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x76887cb94cf29ec539b3219ba62104be04f26a5c.png", + "aggregators": [ + "CoinMarketCap", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0xa62cc35625b0c8dc1faea39d33625bb4c15bd71c": { + "address": "0xa62cc35625b0c8dc1faea39d33625bb4c15bd71c", + "symbol": "STMX", + "decimals": 18, + "name": "StormX", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xa62cc35625b0c8dc1faea39d33625bb4c15bd71c.png", + "aggregators": [ + "Metamask", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0xdac070102b0cfde1493026454c9c608924f6db71": { + "address": "0xdac070102b0cfde1493026454c9c608924f6db71", + "symbol": "POPG", + "decimals": 18, + "name": "POPG", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xdac070102b0cfde1493026454c9c608924f6db71.png", + "aggregators": [ + "CoinMarketCap", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0xf1bb41f9ed87e6c7e1f70e921b7b4bee1df7ae9c": { + "address": "0xf1bb41f9ed87e6c7e1f70e921b7b4bee1df7ae9c", + "symbol": "DCOIN", + "decimals": 18, + "name": "Dogcoin", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xf1bb41f9ed87e6c7e1f70e921b7b4bee1df7ae9c.png", + "aggregators": [ + "CoinMarketCap", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x56cfc19d8cbf7d417d370844249be9cb2d2e19a1": { + "address": "0x56cfc19d8cbf7d417d370844249be9cb2d2e19a1", + "symbol": "DOGECAUCUS", + "decimals": 9, + "name": "Doge Caucus", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x56cfc19d8cbf7d417d370844249be9cb2d2e19a1.png", + "aggregators": [ + "CoinMarketCap", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x4448726b23483927c492f09c1dbfdffd3967b452": { + "address": "0x4448726b23483927c492f09c1dbfdffd3967b452", + "symbol": "PERCY", + "decimals": 9, + "name": "Percy Verence", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x4448726b23483927c492f09c1dbfdffd3967b452.png", + "aggregators": [ + "CoinGecko", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0xca76bf98b6e44df7360da8650e701f6d9d94bb58": { + "address": "0xca76bf98b6e44df7360da8650e701f6d9d94bb58", + "symbol": "MK", + "decimals": 18, + "name": "Memelinked", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xca76bf98b6e44df7360da8650e701f6d9d94bb58.png", + "aggregators": [ + "CoinGecko", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0xfdffb411c4a70aa7c95d5c981a6fb4da867e1111": { + "address": "0xfdffb411c4a70aa7c95d5c981a6fb4da867e1111", + "symbol": "SAHARA", + "decimals": 18, + "name": "Sahara AI", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xfdffb411c4a70aa7c95d5c981a6fb4da867e1111.png", + "aggregators": [ + "CoinMarketCap", + "LiFi", + "Socket", + "Rubic", + "Rango" + ], + "occurrences": 5 + }, + "0xaf0db65b7296c02ab043f5cb17300c8ee949f247": { + "address": "0xaf0db65b7296c02ab043f5cb17300c8ee949f247", + "symbol": "SHAO", + "decimals": 18, + "name": "SHAO", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xaf0db65b7296c02ab043f5cb17300c8ee949f247.png", + "aggregators": [ + "CoinGecko", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x4e9623b7e5b6438542458f5ee828d65c24d3af8c": { + "address": "0x4e9623b7e5b6438542458f5ee828d65c24d3af8c", + "symbol": "JYAI", + "decimals": 18, + "name": "Jerry The Turtle By Matt Furie", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x4e9623b7e5b6438542458f5ee828d65c24d3af8c.png", + "aggregators": [ + "CoinMarketCap", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x282a69142bac47855c3fbe1693fcc4ba3b4d5ed6": { + "address": "0x282a69142bac47855c3fbe1693fcc4ba3b4d5ed6", + "symbol": "CARROT", + "decimals": 18, + "name": "Carrot by Puffer", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x282a69142bac47855c3fbe1693fcc4ba3b4d5ed6.png", + "aggregators": [ + "CoinMarketCap", + "LiFi", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x8074836637eb9cc73a01a65d5700907fc639c4e9": { + "address": "0x8074836637eb9cc73a01a65d5700907fc639c4e9", + "symbol": "DNOW", + "decimals": 18, + "name": "DuelNow", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x8074836637eb9cc73a01a65d5700907fc639c4e9.png", + "aggregators": [ + "CoinMarketCap", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x7ff7fa94b8b66ef313f7970d4eebd2cb3103a2c0": { + "address": "0x7ff7fa94b8b66ef313f7970d4eebd2cb3103a2c0", + "symbol": "VANA", + "decimals": 18, + "name": "VANA", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x7ff7fa94b8b66ef313f7970d4eebd2cb3103a2c0.png", + "aggregators": [ + "CoinMarketCap", + "LiFi", + "Socket", + "Rubic", + "Rango" + ], + "occurrences": 5 + }, + "0x238a700ed6165261cf8b2e544ba797bc11e466ba": { + "address": "0x238a700ed6165261cf8b2e544ba797bc11e466ba", + "symbol": "MF-ONE", + "decimals": 18, + "name": "MF-ONE", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x238a700ed6165261cf8b2e544ba797bc11e466ba.png", + "aggregators": ["CoinGecko", "LiFi", "Rubic", "Squid", "Rango"], + "occurrences": 5 + }, + "0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a": { + "address": "0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a", + "symbol": "PPT", + "decimals": 8, + "name": "Populous", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a.png", + "aggregators": [ + "Metamask", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0xaf04f0912e793620824f4442b03f4d984af29853": { + "address": "0xaf04f0912e793620824f4442b03f4d984af29853", + "symbol": "HYDRA", + "decimals": 18, + "name": "HydraDAO", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xaf04f0912e793620824f4442b03f4d984af29853.png", + "aggregators": [ + "CoinGecko", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0xd89cc9d79ad3c49e2cd477a8bbc8e63dee53f82e": { + "address": "0xd89cc9d79ad3c49e2cd477a8bbc8e63dee53f82e", + "symbol": "KEE", + "decimals": 18, + "name": "Keeshond", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xd89cc9d79ad3c49e2cd477a8bbc8e63dee53f82e.png", + "aggregators": [ + "CoinGecko", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x558e7139800f8bc119f68d23a6126fffd43a66a6": { + "address": "0x558e7139800f8bc119f68d23a6126fffd43a66a6", + "symbol": "U2U", + "decimals": 18, + "name": "U2U Network", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x558e7139800f8bc119f68d23a6126fffd43a66a6.png", + "aggregators": [ + "CoinMarketCap", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x11113ff3a60c2450f4b22515cb760417259ee94b": { + "address": "0x11113ff3a60c2450f4b22515cb760417259ee94b", + "symbol": "NBASIS", + "decimals": 6, + "name": "Nest Basis Vault", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x11113ff3a60c2450f4b22515cb760417259ee94b.png", + "aggregators": [ + "CoinMarketCap", + "LiFi", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x9ea59db651a3c79a8d52a394a49da8e9a214d6ae": { + "address": "0x9ea59db651a3c79a8d52a394a49da8e9a214d6ae", + "symbol": "BALLS", + "decimals": 9, + "name": "Big Balls", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x9ea59db651a3c79a8d52a394a49da8e9a214d6ae.png", + "aggregators": [ + "CoinGecko", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x4d4574f50dd8b9dbe623cf329dcc78d76935e610": { + "address": "0x4d4574f50dd8b9dbe623cf329dcc78d76935e610", + "symbol": "ZEUS", + "decimals": 9, + "name": "Zeus", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x4d4574f50dd8b9dbe623cf329dcc78d76935e610.png", + "aggregators": [ + "CoinGecko", + "1inch", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x0885f91c72a8de62a5349d4c89ca31b4ef650929": { + "address": "0x0885f91c72a8de62a5349d4c89ca31b4ef650929", + "symbol": "ALF", + "decimals": 18, + "name": "ALF TOKEN", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x0885f91c72a8de62a5349d4c89ca31b4ef650929.png", + "aggregators": [ + "CoinMarketCap", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0xae3013789c836345dfd63a9df713e3c23fb3a664": { + "address": "0xae3013789c836345dfd63a9df713e3c23fb3a664", + "symbol": "GEOFF", + "decimals": 18, + "name": "Geoff", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xae3013789c836345dfd63a9df713e3c23fb3a664.png", + "aggregators": [ + "CoinGecko", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0xabab3b0db38f2303acbcab672905e41a18e396d8": { + "address": "0xabab3b0db38f2303acbcab672905e41a18e396d8", + "symbol": "APEMAN", + "decimals": 9, + "name": "Ape Man", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xabab3b0db38f2303acbcab672905e41a18e396d8.png", + "aggregators": [ + "CoinMarketCap", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x65086e9928d297ebae6a7d24d8c3aea6f8f6b5d7": { + "address": "0x65086e9928d297ebae6a7d24d8c3aea6f8f6b5d7", + "symbol": "TOKI", + "decimals": 18, + "name": "Toki", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x65086e9928d297ebae6a7d24d8c3aea6f8f6b5d7.png", + "aggregators": [ + "CoinMarketCap", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x5dd1a7a369e8273371d2dbf9d83356057088082c": { + "address": "0x5dd1a7a369e8273371d2dbf9d83356057088082c", + "symbol": "FT", + "decimals": 18, + "name": "Flying Tulip", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x5dd1a7a369e8273371d2dbf9d83356057088082c.png", + "aggregators": [ + "CoinMarketCap", + "LiFi", + "Socket", + "Rubic", + "Rango" + ], + "occurrences": 5 + }, + "0x2e3c5e514eef46727de1fe44618027a9b70d92fc": { + "address": "0x2e3c5e514eef46727de1fe44618027a9b70d92fc", + "symbol": "VYUSD", + "decimals": 18, + "name": "VYUSD", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x2e3c5e514eef46727de1fe44618027a9b70d92fc.png", + "aggregators": ["CoinMarketCap", "LiFi", "Rubic", "Squid", "Rango"], + "occurrences": 5 + }, + "0xaca92e438df0b2401ff60da7e4337b687a2435da": { + "address": "0xaca92e438df0b2401ff60da7e4337b687a2435da", + "symbol": "MUSD", + "decimals": 6, + "name": "MetaMask USD", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xaca92e438df0b2401ff60da7e4337b687a2435da.png", + "aggregators": ["Metamask", "LiFi", "Socket", "Rubic", "Rango"], + "occurrences": 5 + }, + "0x8e4f1ce473b292d56934c36976356e3e22c35585": { + "address": "0x8e4f1ce473b292d56934c36976356e3e22c35585", + "symbol": "FIAS", + "decimals": 18, + "name": "FIAS", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x8e4f1ce473b292d56934c36976356e3e22c35585.png", + "aggregators": [ + "CoinGecko", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x7dc9748da8e762e569f9269f48f69a1a9f8ea761": { + "address": "0x7dc9748da8e762e569f9269f48f69a1a9f8ea761", + "symbol": "ZEUSD", + "decimals": 6, + "name": "ZeUSD", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x7dc9748da8e762e569f9269f48f69a1a9f8ea761.png", + "aggregators": ["CoinGecko", "LiFi", "Rubic", "Sonarwatch"], + "occurrences": 4 + }, + "0xe7c3d8c9a439fede00d2600032d5db0be71c3c29": { + "address": "0xe7c3d8c9a439fede00d2600032d5db0be71c3c29", + "symbol": "JPYC", + "decimals": 18, + "name": "JPYC", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xe7c3d8c9a439fede00d2600032d5db0be71c3c29.png", + "aggregators": ["CoinGecko", "1inch", "LiFi", "Rubic", "Rango"], + "occurrences": 5 + }, + "0xc50673edb3a7b94e8cad8a7d4e0cd68864e33edf": { + "address": "0xc50673edb3a7b94e8cad8a7d4e0cd68864e33edf", + "symbol": "PNKSTR", + "decimals": 18, + "name": "PunkStrategy", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xc50673edb3a7b94e8cad8a7d4e0cd68864e33edf.png", + "aggregators": ["CoinGecko", "1inch", "Rubic", "Squid", "Rango"], + "occurrences": 5 + }, + "0x699f088b5dddcafb7c4824db5b10b57b37cb0c66": { + "address": "0x699f088b5dddcafb7c4824db5b10b57b37cb0c66", + "symbol": "ENSO", + "decimals": 18, + "name": "Enso", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x699f088b5dddcafb7c4824db5b10b57b37cb0c66.png", + "aggregators": [ + "CoinMarketCap", + "LiFi", + "Socket", + "Rubic", + "Rango" + ], + "occurrences": 5 + }, + "0x4f5fa8f2d12e5eb780f6082dd656c565c48e0f24": { + "address": "0x4f5fa8f2d12e5eb780f6082dd656c565c48e0f24", + "symbol": "GUM", + "decimals": 18, + "name": "Gourmet Galaxy", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x4f5fa8f2d12e5eb780f6082dd656c565c48e0f24.png", + "aggregators": [ + "CoinMarketCap", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0xd19b72e027cd66bde41d8f60a13740a26c4be8f3": { + "address": "0xd19b72e027cd66bde41d8f60a13740a26c4be8f3", + "symbol": "SUIAI", + "decimals": 18, + "name": "SUI Agents", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xd19b72e027cd66bde41d8f60a13740a26c4be8f3.png", + "aggregators": [ + "CoinGecko", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0xdb99b0477574ac0b2d9c8cec56b42277da3fdb82": { + "address": "0xdb99b0477574ac0b2d9c8cec56b42277da3fdb82", + "symbol": "DECT", + "decimals": 18, + "name": "DEC Token", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xdb99b0477574ac0b2d9c8cec56b42277da3fdb82.png", + "aggregators": [ + "CoinGecko", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0xf6b1117ec07684d3958cad8beb1b302bfd21103f": { + "address": "0xf6b1117ec07684d3958cad8beb1b302bfd21103f", + "symbol": "TSLAON", + "decimals": 18, + "name": "Tesla (Ondo Tokenized)", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xf6b1117ec07684d3958cad8beb1b302bfd21103f.png", + "aggregators": ["CoinGecko", "LiFi", "Rubic", "Rango", "Ondo"], + "occurrences": 5, + "rwaData": { + "market": { + "nextOpen": "2026-05-18T20:01:00.000Z", + "nextClose": "2026-05-18T19:59:00.000Z" + }, + "nextPause": { + "start": null, + "end": null + }, + "ticker": "TSLA", + "instrumentType": "stock" + } + }, + "0xfedc5f4a6c38211c1338aa411018dfaf26612c08": { + "address": "0xfedc5f4a6c38211c1338aa411018dfaf26612c08", + "symbol": "SPYON", + "decimals": 18, + "name": "SPDR S&P 500 ETF (Ondo Tokenized)", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xfedc5f4a6c38211c1338aa411018dfaf26612c08.png", + "aggregators": ["CoinGecko", "LiFi", "Rubic", "Rango", "Ondo"], + "occurrences": 5, + "rwaData": { + "market": { + "nextOpen": "2026-05-18T20:01:00.000Z", + "nextClose": "2026-05-18T19:59:00.000Z" + }, + "nextPause": { + "start": null, + "end": null + }, + "ticker": "SPY", + "instrumentType": "stock" + } + }, + "0x0e397938c1aa0680954093495b70a9f5e2249aba": { + "address": "0x0e397938c1aa0680954093495b70a9f5e2249aba", + "symbol": "QQQON", + "decimals": 18, + "name": "Invesco QQQ (Ondo Tokenized)", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x0e397938c1aa0680954093495b70a9f5e2249aba.png", + "aggregators": ["CoinGecko", "LiFi", "Rubic", "Rango", "Ondo"], + "occurrences": 5, + "rwaData": { + "market": { + "nextOpen": "2026-05-18T20:01:00.000Z", + "nextClose": "2026-05-18T19:59:00.000Z" + }, + "nextPause": { + "start": null, + "end": null + }, + "ticker": "QQQ", + "instrumentType": "stock" + } + }, + "0xd166337499e176bbc38a1fbd113ab144e5bd2df7": { + "address": "0xd166337499e176bbc38a1fbd113ab144e5bd2df7", + "symbol": "SUSDAT", + "decimals": 18, + "name": "Saturn sUSDat", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xd166337499e176bbc38a1fbd113ab144e5bd2df7.png", + "aggregators": ["CoinGecko", "LiFi", "Socket", "Rubic", "Rango"], + "occurrences": 5 + }, + "0x488e0369f9bc5c40c002ea7c1fe4fd01a198801c": { + "address": "0x488e0369f9bc5c40c002ea7c1fe4fd01a198801c", + "symbol": "GOF", + "decimals": 18, + "name": "Golff", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x488e0369f9bc5c40c002ea7c1fe4fd01a198801c.png", + "aggregators": [ + "CoinMarketCap", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x668dbf100635f593a3847c0bdaf21f0a09380188": { + "address": "0x668dbf100635f593a3847c0bdaf21f0a09380188", + "symbol": "BNSD", + "decimals": 18, + "name": "BNSD Finance", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x668dbf100635f593a3847c0bdaf21f0a09380188.png", + "aggregators": [ + "CoinMarketCap", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x87de305311d5788e8da38d19bb427645b09cb4e5": { + "address": "0x87de305311d5788e8da38d19bb427645b09cb4e5", + "symbol": "VRX", + "decimals": 18, + "name": "Verox", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x87de305311d5788e8da38d19bb427645b09cb4e5.png", + "aggregators": [ + "CoinMarketCap", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x5d285f735998f36631f678ff41fb56a10a4d0429": { + "address": "0x5d285f735998f36631f678ff41fb56a10a4d0429", + "symbol": "MIX", + "decimals": 18, + "name": "MixMarvel", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x5d285f735998f36631f678ff41fb56a10a4d0429.png", + "aggregators": [ + "CoinMarketCap", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x3bbfb303842dd4a76da4c927be644e9cf3170afd": { + "address": "0x3bbfb303842dd4a76da4c927be644e9cf3170afd", + "symbol": "XCREDI", + "decimals": 18, + "name": "xCREDI", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x3bbfb303842dd4a76da4c927be644e9cf3170afd.png", + "aggregators": [ + "CoinGecko", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x8de39b057cc6522230ab19c0205080a8663331ef": { + "address": "0x8de39b057cc6522230ab19c0205080a8663331ef", + "symbol": "WOJAK", + "decimals": 18, + "name": "wojak", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x8de39b057cc6522230ab19c0205080a8663331ef.png", + "aggregators": ["CoinGecko", "1inch", "Socket", "Rubic", "Rango"], + "occurrences": 5 + }, + "0xddd6a0ecc3c6f6c102e5ea3d8af7b801d1a77ac8": { + "address": "0xddd6a0ecc3c6f6c102e5ea3d8af7b801d1a77ac8", + "symbol": "UNIX", + "decimals": 18, + "name": "UniX", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xddd6a0ecc3c6f6c102e5ea3d8af7b801d1a77ac8.png", + "aggregators": [ + "CoinMarketCap", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x49642110b712c1fd7261bc074105e9e44676c68f": { + "address": "0x49642110b712c1fd7261bc074105e9e44676c68f", + "symbol": "DINO", + "decimals": 18, + "name": "DinoLFG", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x49642110b712c1fd7261bc074105e9e44676c68f.png", + "aggregators": [ + "Metamask", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x487d62468282bd04ddf976631c23128a425555ee": { + "address": "0x487d62468282bd04ddf976631c23128a425555ee", + "symbol": "UPC", + "decimals": 5, + "name": "UPCX", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x487d62468282bd04ddf976631c23128a425555ee.png", + "aggregators": [ + "Metamask", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x781d201db8c837ea2aefea7394554071da45ff0f": { + "address": "0x781d201db8c837ea2aefea7394554071da45ff0f", + "symbol": "ATAI", + "decimals": 18, + "name": "ArtemisAI", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x781d201db8c837ea2aefea7394554071da45ff0f.png", + "aggregators": [ + "CoinGecko", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x808688c820ab080a6ff1019f03e5ec227d9b522b": { + "address": "0x808688c820ab080a6ff1019f03e5ec227d9b522b", + "symbol": "BAG", + "decimals": 18, + "name": "BAG", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x808688c820ab080a6ff1019f03e5ec227d9b522b.png", + "aggregators": [ + "Metamask", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x525574c899a7c877a11865339e57376092168258": { + "address": "0x525574c899a7c877a11865339e57376092168258", + "symbol": "GURU", + "decimals": 18, + "name": "Guru Network", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x525574c899a7c877a11865339e57376092168258.png", + "aggregators": [ + "CoinMarketCap", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x46fdcddfad7c72a621e8298d231033cc00e067c6": { + "address": "0x46fdcddfad7c72a621e8298d231033cc00e067c6", + "symbol": "DOGE", + "decimals": 18, + "name": "Department Of Government Efficiency", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x46fdcddfad7c72a621e8298d231033cc00e067c6.png", + "aggregators": [ + "CoinGecko", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0xe8fc52b1bb3a40fd8889c0f8f75879676310ddf0": { + "address": "0xe8fc52b1bb3a40fd8889c0f8f75879676310ddf0", + "symbol": "XZK", + "decimals": 18, + "name": "ExpandZK Token", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xe8fc52b1bb3a40fd8889c0f8f75879676310ddf0.png", + "aggregators": [ + "Metamask", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x38e382f74dfb84608f3c1f10187f6bef5951de93": { + "address": "0x38e382f74dfb84608f3c1f10187f6bef5951de93", + "symbol": "MUBI", + "decimals": 18, + "name": "MUBI", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x38e382f74dfb84608f3c1f10187f6bef5951de93.png", + "aggregators": [ + "Metamask", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x14778860e937f509e651192a90589de711fb88a9": { + "address": "0x14778860e937f509e651192a90589de711fb88a9", + "symbol": "CYBER", + "decimals": 18, + "name": "Cyber", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x14778860e937f509e651192a90589de711fb88a9.png", + "aggregators": [ + "Metamask", + "LiFi", + "Socket", + "Rubic", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x5026f006b85729a8b14553fae6af249ad16c9aab": { + "address": "0x5026f006b85729a8b14553fae6af249ad16c9aab", + "symbol": "WOJAK", + "decimals": 18, + "name": "Wojak", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x5026f006b85729a8b14553fae6af249ad16c9aab.png", + "aggregators": [ + "CoinGecko", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0xb841f365d5221bed66d60e69094418d8c2aa5a44": { + "address": "0xb841f365d5221bed66d60e69094418d8c2aa5a44", + "symbol": "DSTRX", + "decimals": 18, + "name": "Districts", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xb841f365d5221bed66d60e69094418d8c2aa5a44.png", + "aggregators": [ + "CoinGecko", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x0c1c1c109fe34733fca54b82d7b46b75cfb71f6e": { + "address": "0x0c1c1c109fe34733fca54b82d7b46b75cfb71f6e", + "symbol": "CHIP", + "decimals": 18, + "name": "USD.AI", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x0c1c1c109fe34733fca54b82d7b46b75cfb71f6e.png", + "aggregators": [ + "CoinMarketCap", + "LiFi", + "Socket", + "Rubic", + "Rango" + ], + "occurrences": 5 + }, + "0x53cce6d10e43d1b3d11872ad22ec2acd8d2537b8": { + "address": "0x53cce6d10e43d1b3d11872ad22ec2acd8d2537b8", + "symbol": "SMOL", + "decimals": 18, + "name": "SMOL", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x53cce6d10e43d1b3d11872ad22ec2acd8d2537b8.png", + "aggregators": [ + "CoinGecko", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x0b2b2b2076d95dda7817e785989fe353fe955ef9": { + "address": "0x0b2b2b2076d95dda7817e785989fe353fe955ef9", + "symbol": "SUSDAI", + "decimals": 18, + "name": "Staked USDai", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x0b2b2b2076d95dda7817e785989fe353fe955ef9.png", + "aggregators": ["CoinGecko", "LiFi", "Socket", "Rubic", "Rango"], + "occurrences": 5 + }, + "0xc9b53ab2679f573e480d01e0f49e2b5cfb7a3eab": { + "address": "0xc9b53ab2679f573e480d01e0f49e2b5cfb7a3eab", + "symbol": "WXTZ", + "decimals": 18, + "name": "WXTZ", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xc9b53ab2679f573e480d01e0f49e2b5cfb7a3eab.png", + "aggregators": [ + "CoinMarketCap", + "LiFi", + "Socket", + "Rubic", + "Rango" + ], + "occurrences": 5 + }, + "0x0b3eaead748facdb9d943d3407011f16eb17d0cf": { + "address": "0x0b3eaead748facdb9d943d3407011f16eb17d0cf", + "symbol": "PMX", + "decimals": 18, + "name": "Primex Finance", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x0b3eaead748facdb9d943d3407011f16eb17d0cf.png", + "aggregators": ["CoinGecko", "Socket", "Rubic", "Sonarwatch"], + "occurrences": 4 + }, + "0x6418c0dd099a9fda397c766304cdd918233e8847": { + "address": "0x6418c0dd099a9fda397c766304cdd918233e8847", + "symbol": "PENGU", + "decimals": 18, + "name": "PENGU", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x6418c0dd099a9fda397c766304cdd918233e8847.png", + "aggregators": [ + "CoinMarketCap", + "LiFi", + "Socket", + "Rubic", + "Rango" + ], + "occurrences": 5 + }, + "0x6c76de483f1752ac8473e2b4983a873991e70da7": { + "address": "0x6c76de483f1752ac8473e2b4983a873991e70da7", + "symbol": "BTR", + "decimals": 18, + "name": "Bitlayer", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x6c76de483f1752ac8473e2b4983a873991e70da7.png", + "aggregators": [ + "CoinMarketCap", + "LiFi", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x5fa487bca6158c64046b2813623e20755091da0b": { + "address": "0x5fa487bca6158c64046b2813623e20755091da0b", + "symbol": "THBILL", + "decimals": 6, + "name": "THBILL", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x5fa487bca6158c64046b2813623e20755091da0b.png", + "aggregators": ["CoinGecko", "LiFi", "Socket", "Rubic", "Rango"], + "occurrences": 5 + }, + "0xb4444468e444f89e1c2cac2f1d3ee7e336cbd1f5": { + "address": "0xb4444468e444f89e1c2cac2f1d3ee7e336cbd1f5", + "symbol": "RZR", + "decimals": 18, + "name": "Rezerve.money", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xb4444468e444f89e1c2cac2f1d3ee7e336cbd1f5.png", + "aggregators": [ + "CoinMarketCap", + "LiFi", + "Socket", + "Rubic", + "Rango" + ], + "occurrences": 5 + }, + "0x4b948d64de1f71fcd12fb586f4c776421a35b3ee": { + "address": "0x4b948d64de1f71fcd12fb586f4c776421a35b3ee", + "symbol": "0G", + "decimals": 18, + "name": "0G", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x4b948d64de1f71fcd12fb586f4c776421a35b3ee.png", + "aggregators": [ + "CoinMarketCap", + "LiFi", + "Socket", + "Rubic", + "Rango" + ], + "occurrences": 5 + }, + "0x0a1a1a107e45b7ced86833863f482bc5f4ed82ef": { + "address": "0x0a1a1a107e45b7ced86833863f482bc5f4ed82ef", + "symbol": "USDAI", + "decimals": 18, + "name": "USDai", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x0a1a1a107e45b7ced86833863f482bc5f4ed82ef.png", + "aggregators": ["CoinGecko", "LiFi", "Socket", "Rubic", "Rango"], + "occurrences": 5 + }, + "0xff7f8f301f7a706e3cfd3d2275f5dc0b9ee8009b": { + "address": "0xff7f8f301f7a706e3cfd3d2275f5dc0b9ee8009b", + "symbol": "FOLKS", + "decimals": 6, + "name": "FOLKS", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xff7f8f301f7a706e3cfd3d2275f5dc0b9ee8009b.png", + "aggregators": ["CoinMarketCap", "1inch", "LiFi", "Rubic", "Rango"], + "occurrences": 5 + }, + "0x14862c03a0caccc1ab328b062e64e31b2a1afcd7": { + "address": "0x14862c03a0caccc1ab328b062e64e31b2a1afcd7", + "symbol": "SEDA", + "decimals": 18, + "name": "SEDA", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x14862c03a0caccc1ab328b062e64e31b2a1afcd7.png", + "aggregators": [ + "CoinMarketCap", + "LiFi", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x4d4eb0e8b160f6ebf63cc6d36060ffec09301b42": { + "address": "0x4d4eb0e8b160f6ebf63cc6d36060ffec09301b42", + "symbol": "LITKEY", + "decimals": 18, + "name": "Lit Protocol", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x4d4eb0e8b160f6ebf63cc6d36060ffec09301b42.png", + "aggregators": [ + "CoinMarketCap", + "LiFi", + "Socket", + "Rubic", + "Rango" + ], + "occurrences": 5 + }, + "0x24a3d725c37a8d1a66eb87f0e5d07fe67c120035": { + "address": "0x24a3d725c37a8d1a66eb87f0e5d07fe67c120035", + "symbol": "EDEN", + "decimals": 18, + "name": "EDEN", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x24a3d725c37a8d1a66eb87f0e5d07fe67c120035.png", + "aggregators": [ + "CoinMarketCap", + "LiFi", + "Socket", + "Rubic", + "Rango" + ], + "occurrences": 5 + }, + "0x12b19d3e2ccc14da04fae33e63652ce469b3f2fd": { + "address": "0x12b19d3e2ccc14da04fae33e63652ce469b3f2fd", + "symbol": "GRID", + "decimals": 12, + "name": "GridPlus", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x12b19d3e2ccc14da04fae33e63652ce469b3f2fd.png", + "aggregators": ["Metamask", "LiFi", "Rubic", "Rango", "Bancor"], + "occurrences": 5 + }, + "0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6": { + "address": "0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6", + "symbol": "RDN", + "decimals": 18, + "name": "Raiden Network Token", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6.png", + "aggregators": ["Metamask", "LiFi", "Rubic", "Rango", "Bancor"], + "occurrences": 5 + }, + "0x1234567461d3f8db7496581774bd869c83d51c93": { + "address": "0x1234567461d3f8db7496581774bd869c83d51c93", + "symbol": "CAT", + "decimals": 18, + "name": "BitClave", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x1234567461d3f8db7496581774bd869c83d51c93.png", + "aggregators": ["Metamask", "Socket", "Rubic", "Rango", "Bancor"], + "occurrences": 5 + }, + "0x5adc961d6ac3f7062d2ea45fefb8d8167d44b190": { + "address": "0x5adc961d6ac3f7062d2ea45fefb8d8167d44b190", + "symbol": "DTH", + "decimals": 18, + "name": "Dether", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x5adc961d6ac3f7062d2ea45fefb8d8167d44b190.png", + "aggregators": ["Metamask", "1inch", "LiFi", "Rubic", "Rango"], + "occurrences": 5 + }, + "0xbc86727e770de68b1060c91f6bb6945c73e10388": { + "address": "0xbc86727e770de68b1060c91f6bb6945c73e10388", + "symbol": "XNK", + "decimals": 18, + "name": "Ink Protocol", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xbc86727e770de68b1060c91f6bb6945c73e10388.png", + "aggregators": ["Metamask", "Socket", "Rubic", "Rango", "Bancor"], + "occurrences": 5 + }, + "0xfcf8eda095e37a41e002e266daad7efc1579bc0a": { + "address": "0xfcf8eda095e37a41e002e266daad7efc1579bc0a", + "symbol": "FLEX", + "decimals": 18, + "name": "Flex Coin", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xfcf8eda095e37a41e002e266daad7efc1579bc0a.png", + "aggregators": [ + "CoinMarketCap", + "Socket", + "Rubic", + "Rango", + "SushiSwap" + ], + "occurrences": 5 + }, + "0xe48972fcd82a274411c01834e2f031d4377fa2c0": { + "address": "0xe48972fcd82a274411c01834e2f031d4377fa2c0", + "symbol": "2KEY", + "decimals": 18, + "name": "TwoKeyEconomy", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xe48972fcd82a274411c01834e2f031d4377fa2c0.png", + "aggregators": ["Metamask", "1inch", "LiFi", "Rubic", "Rango"], + "occurrences": 5 + }, + "0x4d953cf077c0c95ba090226e59a18fcf97db44ec": { + "address": "0x4d953cf077c0c95ba090226e59a18fcf97db44ec", + "symbol": "MINI", + "decimals": 18, + "name": "MiniSwap", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x4d953cf077c0c95ba090226e59a18fcf97db44ec.png", + "aggregators": [ + "CoinMarketCap", + "LiFi", + "Socket", + "Rubic", + "Rango" + ], + "occurrences": 5 + }, + "0xb6c4267c4877bb0d6b1685cfd85b0fbe82f105ec": { + "address": "0xb6c4267c4877bb0d6b1685cfd85b0fbe82f105ec", + "symbol": "REL", + "decimals": 18, + "name": "REL", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xb6c4267c4877bb0d6b1685cfd85b0fbe82f105ec.png", + "aggregators": [ + "CoinMarketCap", + "1inch", + "Socket", + "Rubic", + "Rango" + ], + "occurrences": 5 + }, + "0x9c2dc0c3cc2badde84b0025cf4df1c5af288d835": { + "address": "0x9c2dc0c3cc2badde84b0025cf4df1c5af288d835", + "symbol": "COR", + "decimals": 18, + "name": "Coreto", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x9c2dc0c3cc2badde84b0025cf4df1c5af288d835.png", + "aggregators": [ + "Metamask", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x92e187a03b6cd19cb6af293ba17f2745fd2357d5": { + "address": "0x92e187a03b6cd19cb6af293ba17f2745fd2357d5", + "symbol": "DUCK", + "decimals": 18, + "name": "Unit Protocol", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x92e187a03b6cd19cb6af293ba17f2745fd2357d5.png", + "aggregators": [ + "CoinMarketCap", + "Socket", + "Rubic", + "Rango", + "SushiSwap" + ], + "occurrences": 5 + }, + "0xdcb01cc464238396e213a6fdd933e36796eaff9f": { + "address": "0xdcb01cc464238396e213a6fdd933e36796eaff9f", + "symbol": "YLD", + "decimals": 18, + "name": "Yield", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xdcb01cc464238396e213a6fdd933e36796eaff9f.png", + "aggregators": [ + "Metamask", + "LiFi", + "TrustWallet", + "Socket", + "Rubic" + ], + "occurrences": 5 + }, + "0x66c0dded8433c9ea86c8cf91237b14e10b4d70b7": { + "address": "0x66c0dded8433c9ea86c8cf91237b14e10b4d70b7", + "symbol": "MARS", + "decimals": 18, + "name": "MarsToken", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x66c0dded8433c9ea86c8cf91237b14e10b4d70b7.png", + "aggregators": [ + "CoinMarketCap", + "Socket", + "Rubic", + "Rango", + "SushiSwap" + ], + "occurrences": 5 + }, + "0x4c25bdf026ea05f32713f00f73ca55857fbf6342": { + "address": "0x4c25bdf026ea05f32713f00f73ca55857fbf6342", + "symbol": "FONT", + "decimals": 18, + "name": "Font", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x4c25bdf026ea05f32713f00f73ca55857fbf6342.png", + "aggregators": [ + "CoinMarketCap", + "1inch", + "Rubic", + "Rango", + "SushiSwap" + ], + "occurrences": 5 + }, + "0x32e6c34cd57087abbd59b5a4aecc4cb495924356": { + "address": "0x32e6c34cd57087abbd59b5a4aecc4cb495924356", + "symbol": "BTBS", + "decimals": 18, + "name": "BitBase", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x32e6c34cd57087abbd59b5a4aecc4cb495924356.png", + "aggregators": ["Metamask", "1inch", "LiFi", "Rubic", "Rango"], + "occurrences": 5 + }, + "0xa01199c61841fce3b3dafb83fefc1899715c8756": { + "address": "0xa01199c61841fce3b3dafb83fefc1899715c8756", + "symbol": "CIRUS", + "decimals": 18, + "name": "Cirus", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xa01199c61841fce3b3dafb83fefc1899715c8756.png", + "aggregators": [ + "CoinMarketCap", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x000000c396558ffbab5ea628f39658bdf61345b3": { + "address": "0x000000c396558ffbab5ea628f39658bdf61345b3", + "symbol": "BUNNI", + "decimals": 18, + "name": "Bunni", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x000000c396558ffbab5ea628f39658bdf61345b3.png", + "aggregators": [ + "CoinMarketCap", + "LiFi", + "Rubic", + "Squid", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x341c05c0e9b33c0e38d64de76516b2ce970bb3be": { + "address": "0x341c05c0e9b33c0e38d64de76516b2ce970bb3be", + "symbol": "DSETH", + "decimals": 18, + "name": "Diversified Staked ETH Index (dsETH)", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x341c05c0e9b33c0e38d64de76516b2ce970bb3be.png", + "aggregators": [ + "CoinMarketCap", + "LiFi", + "Socket", + "Rubic", + "SushiSwap" + ], + "occurrences": 5 + }, + "0xa9f94f19abf3089d535b1de2cc058a365ea716c7": { + "address": "0xa9f94f19abf3089d535b1de2cc058a365ea716c7", + "symbol": "AITA", + "decimals": 18, + "name": "AITA", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xa9f94f19abf3089d535b1de2cc058a365ea716c7.png", + "aggregators": [ + "Metamask", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0xe07a836f5201a46f376934a8a4a17185df1708c4": { + "address": "0xe07a836f5201a46f376934a8a4a17185df1708c4", + "symbol": "CHAMPZ", + "decimals": 8, + "name": "Champignons of Arborethia", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xe07a836f5201a46f376934a8a4a17185df1708c4.png", + "aggregators": [ + "CoinMarketCap", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x12652c6d93fdb6f4f37d48a8687783c782bb0d10": { + "address": "0x12652c6d93fdb6f4f37d48a8687783c782bb0d10", + "symbol": "NGL", + "decimals": 18, + "name": "Entangle", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x12652c6d93fdb6f4f37d48a8687783c782bb0d10.png", + "aggregators": [ + "Metamask", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0xdc300854b0ef52650057158e8a33afe703525539": { + "address": "0xdc300854b0ef52650057158e8a33afe703525539", + "symbol": "BMR", + "decimals": 18, + "name": "BetMore Casino", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xdc300854b0ef52650057158e8a33afe703525539.png", + "aggregators": [ + "CoinMarketCap", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x2025b2f4c7abe6dcb3843c62c32dfa14990a6269": { + "address": "0x2025b2f4c7abe6dcb3843c62c32dfa14990a6269", + "symbol": "SNEK", + "decimals": 9, + "name": "ETH Snek", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x2025b2f4c7abe6dcb3843c62c32dfa14990a6269.png", + "aggregators": [ + "CoinMarketCap", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0xc04207ebf4bbbd81c14596b78ece7cd8c17fb5cf": { + "address": "0xc04207ebf4bbbd81c14596b78ece7cd8c17fb5cf", + "symbol": "BSEN", + "decimals": 18, + "name": "Baby Sen by Sentio", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xc04207ebf4bbbd81c14596b78ece7cd8c17fb5cf.png", + "aggregators": [ + "CoinMarketCap", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0xd6f8ab9b0f0a06a87ec2599c97e8b867b0fa7814": { + "address": "0xd6f8ab9b0f0a06a87ec2599c97e8b867b0fa7814", + "symbol": "DATBOI", + "decimals": 18, + "name": "Dat Boi", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xd6f8ab9b0f0a06a87ec2599c97e8b867b0fa7814.png", + "aggregators": [ + "CoinMarketCap", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x0f48e776a4d983c0dddf4c0c946d66e3786f134f": { + "address": "0x0f48e776a4d983c0dddf4c0c946d66e3786f134f", + "symbol": "XETRA", + "decimals": 9, + "name": "Xetra AI", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x0f48e776a4d983c0dddf4c0c946d66e3786f134f.png", + "aggregators": [ + "CoinMarketCap", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0xddbcdd8637d5cedd15eeee398108fca05a71b32b": { + "address": "0xddbcdd8637d5cedd15eeee398108fca05a71b32b", + "symbol": "CRAI", + "decimals": 18, + "name": "Cryptify AI", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xddbcdd8637d5cedd15eeee398108fca05a71b32b.png", + "aggregators": [ + "CoinMarketCap", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x247e3866f743cce280433b865a669c9361421ecc": { + "address": "0x247e3866f743cce280433b865a669c9361421ecc", + "symbol": "TXN", + "decimals": 9, + "name": "TXNScan", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x247e3866f743cce280433b865a669c9361421ecc.png", + "aggregators": [ + "CoinMarketCap", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x1010107b4757c915bc2f1ecd08c85d1bb0be92e0": { + "address": "0x1010107b4757c915bc2f1ecd08c85d1bb0be92e0", + "symbol": "BRAIN", + "decimals": 18, + "name": "Brain Frog", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x1010107b4757c915bc2f1ecd08c85d1bb0be92e0.png", + "aggregators": [ + "CoinMarketCap", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0xf2478a732e5232acd0acef5e410e230b49b35a12": { + "address": "0xf2478a732e5232acd0acef5e410e230b49b35a12", + "symbol": "ROUGE", + "decimals": 9, + "name": "Rouge Studio", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xf2478a732e5232acd0acef5e410e230b49b35a12.png", + "aggregators": [ + "CoinMarketCap", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x525536d71848f21b66da0d239546c50ee4c1a358": { + "address": "0x525536d71848f21b66da0d239546c50ee4c1a358", + "symbol": "CTF", + "decimals": 9, + "name": "Crypto Task Force", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x525536d71848f21b66da0d239546c50ee4c1a358.png", + "aggregators": [ + "CoinMarketCap", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x9b79ea20a8258649401f8c58973281081d905b9f": { + "address": "0x9b79ea20a8258649401f8c58973281081d905b9f", + "symbol": "N3", + "decimals": 18, + "name": "Network3", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x9b79ea20a8258649401f8c58973281081d905b9f.png", + "aggregators": [ + "CoinMarketCap", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x1a4e7febd24b6689704b10685857d8b30885f05e": { + "address": "0x1a4e7febd24b6689704b10685857d8b30885f05e", + "symbol": "BEATAI", + "decimals": 9, + "name": "eBeat AI", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x1a4e7febd24b6689704b10685857d8b30885f05e.png", + "aggregators": [ + "CoinMarketCap", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0xafb942e2a12ac0861ad81b5c37682f588912c1d9": { + "address": "0xafb942e2a12ac0861ad81b5c37682f588912c1d9", + "symbol": "PRIVIX", + "decimals": 9, + "name": "Privix", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xafb942e2a12ac0861ad81b5c37682f588912c1d9.png", + "aggregators": [ + "CoinMarketCap", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x44017598f2af1bd733f9d87b5017b4e7c1b28dde": { + "address": "0x44017598f2af1bd733f9d87b5017b4e7c1b28dde", + "symbol": "STKATOM", + "decimals": 6, + "name": "pSTAKE Staked Atom", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x44017598f2af1bd733f9d87b5017b4e7c1b28dde.png", + "aggregators": ["1inch", "Socket", "Rubic", "Rango", "SushiSwap"], + "occurrences": 5 + }, + "0xc5bddf9843308380375a611c18b50fb9341f502a": { + "address": "0xc5bddf9843308380375a611c18b50fb9341f502a", + "symbol": "YVECRV-DAO", + "decimals": 18, + "name": "veCRV-DAO yVault", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xc5bddf9843308380375a611c18b50fb9341f502a.png", + "aggregators": ["1inch", "Socket", "Rubic", "Rango", "SushiSwap"], + "occurrences": 5 + }, + "0xa15c7ebe1f07caf6bff097d8a589fb8ac49ae5b3": { + "address": "0xa15c7ebe1f07caf6bff097d8a589fb8ac49ae5b3", + "symbol": "NPXS", + "decimals": 18, + "name": "Pundi X Token", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xa15c7ebe1f07caf6bff097d8a589fb8ac49ae5b3.png", + "aggregators": ["Socket", "Rubic", "Rango", "Sonarwatch", "Bancor"], + "occurrences": 5 + }, + "0x158079ee67fce2f58472a96584a73c7ab9ac95c1": { + "address": "0x158079ee67fce2f58472a96584a73c7ab9ac95c1", + "symbol": "CREP", + "decimals": 8, + "name": "Compound Augur", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x158079ee67fce2f58472a96584a73c7ab9ac95c1.png", + "aggregators": ["CoinMarketCap", "LiFi", "Rubic", "Rango"], + "occurrences": 4 + }, + "0x83984d6142934bb535793a82adb0a46ef0f66b6d": { + "address": "0x83984d6142934bb535793a82adb0a46ef0f66b6d", + "symbol": "REM", + "decimals": 4, + "name": "REMME token", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x83984d6142934bb535793a82adb0a46ef0f66b6d.png", + "aggregators": ["CoinMarketCap", "Rubic", "Rango", "Bancor"], + "occurrences": 4 + }, + "0xdb05ea0877a2622883941b939f0bb11d1ac7c400": { + "address": "0xdb05ea0877a2622883941b939f0bb11d1ac7c400", + "symbol": "OPCT", + "decimals": 18, + "name": "Opacity", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xdb05ea0877a2622883941b939f0bb11d1ac7c400.png", + "aggregators": ["Metamask", "Socket", "Rubic", "Rango"], + "occurrences": 4 + }, + "0xcbd55d4ffc43467142761a764763652b48b969ff": { + "address": "0xcbd55d4ffc43467142761a764763652b48b969ff", + "symbol": "ASTRO", + "decimals": 18, + "name": "AstroTools", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xcbd55d4ffc43467142761a764763652b48b969ff.png", + "aggregators": ["CoinMarketCap", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0x9a0aba393aac4dfbff4333b06c407458002c6183": { + "address": "0x9a0aba393aac4dfbff4333b06c407458002c6183", + "symbol": "AC", + "decimals": 18, + "name": "ACoconut", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x9a0aba393aac4dfbff4333b06c407458002c6183.png", + "aggregators": ["CoinMarketCap", "LiFi", "Socket", "Rubic"], + "occurrences": 4 + }, + "0xe50e009ddb1a4d8ec668eac9d8b2df1f96348707": { + "address": "0xe50e009ddb1a4d8ec668eac9d8b2df1f96348707", + "symbol": "CTRL", + "decimals": 18, + "name": "Ctrl", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xe50e009ddb1a4d8ec668eac9d8b2df1f96348707.png", + "aggregators": ["CoinMarketCap", "Socket", "Rubic", "Sonarwatch"], + "occurrences": 4 + }, + "0x1614f18fc94f47967a3fbe5ffcd46d4e7da3d787": { + "address": "0x1614f18fc94f47967a3fbe5ffcd46d4e7da3d787", + "symbol": "PAID", + "decimals": 18, + "name": "PAID Network", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x1614f18fc94f47967a3fbe5ffcd46d4e7da3d787.png", + "aggregators": ["LiFi", "TrustWallet", "Rubic", "Rango"], + "occurrences": 4 + }, + "0x94d863173ee77439e4292284ff13fad54b3ba182": { + "address": "0x94d863173ee77439e4292284ff13fad54b3ba182", + "symbol": "ADEL", + "decimals": 18, + "name": "Akropolis Delphi", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x94d863173ee77439e4292284ff13fad54b3ba182.png", + "aggregators": ["CoinMarketCap", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x0d88ed6e74bbfd96b831231638b66c05571e824f": { + "address": "0x0d88ed6e74bbfd96b831231638b66c05571e824f", + "symbol": "AVT", + "decimals": 18, + "name": "Aventus", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x0d88ed6e74bbfd96b831231638b66c05571e824f.png", + "aggregators": ["Metamask", "Socket", "Sonarwatch"], + "occurrences": 3 + }, + "0x0c572544a4ee47904d54aaa6a970af96b6f00e1b": { + "address": "0x0c572544a4ee47904d54aaa6a970af96b6f00e1b", + "symbol": "WAS", + "decimals": 18, + "name": "Wasder", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x0c572544a4ee47904d54aaa6a970af96b6f00e1b.png", + "aggregators": ["CoinMarketCap", "Rubic", "Sonarwatch"], + "occurrences": 3 + }, + "0x70e8de73ce538da2beed35d14187f6959a8eca96": { + "address": "0x70e8de73ce538da2beed35d14187f6959a8eca96", + "symbol": "XSGD", + "decimals": 6, + "name": "XSGD", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x70e8de73ce538da2beed35d14187f6959a8eca96.png", + "aggregators": [ + "CoinMarketCap", + "1inch", + "LiFi", + "TrustWallet", + "Socket", + "Rubic", + "Squid", + "Rango", + "Sonarwatch" + ], + "occurrences": 9 + }, + "0x6f40d4a6237c257fff2db00fa0510deeecd303eb": { + "address": "0x6f40d4a6237c257fff2db00fa0510deeecd303eb", + "symbol": "INST", + "decimals": 18, + "name": "Fluid", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x6f40d4a6237c257fff2db00fa0510deeecd303eb.png", + "aggregators": [ + "CoinMarketCap", + "1inch", + "LiFi", + "Socket", + "Rubic", + "Squid", + "Rango", + "Sonarwatch", + "Bancor" + ], + "occurrences": 9 + }, + "0x5b7533812759b45c2b44c19e320ba2cd2681b542": { + "address": "0x5b7533812759b45c2b44c19e320ba2cd2681b542", + "symbol": "AGIX", + "decimals": 8, + "name": "SingularityNET Token", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x5b7533812759b45c2b44c19e320ba2cd2681b542.png", + "aggregators": [ + "CoinMarketCap", + "1inch", + "LiFi", + "TrustWallet", + "Socket", + "Rubic", + "Squid", + "Rango", + "Sonarwatch" + ], + "occurrences": 9 + }, + "0xb23d80f5fefcddaa212212f028021b41ded428cf": { + "address": "0xb23d80f5fefcddaa212212f028021b41ded428cf", + "symbol": "PRIME", + "decimals": 18, + "name": "Echelon Prime", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xb23d80f5fefcddaa212212f028021b41ded428cf.png", + "aggregators": [ + "CoinGecko", + "1inch", + "LiFi", + "Socket", + "Rubic", + "Squid", + "Rango", + "Sonarwatch" + ], + "occurrences": 8 + }, + "0xe0f63a424a4439cbe457d80e4f4b51ad25b2c56c": { + "address": "0xe0f63a424a4439cbe457d80e4f4b51ad25b2c56c", + "symbol": "SPX", + "decimals": 8, + "name": "SPX6900", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xe0f63a424a4439cbe457d80e4f4b51ad25b2c56c.png", + "aggregators": [ + "CoinMarketCap", + "1inch", + "LiFi", + "Socket", + "Rubic", + "Squid", + "Rango", + "Sonarwatch" + ], + "occurrences": 8 + }, + "0x68749665ff8d2d112fa859aa293f07a622782f38": { + "address": "0x68749665ff8d2d112fa859aa293f07a622782f38", + "symbol": "XAUT", + "decimals": 6, + "name": "Tether Gold", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x68749665ff8d2d112fa859aa293f07a622782f38.png", + "aggregators": [ + "CoinMarketCap", + "1inch", + "LiFi", + "Socket", + "Rubic", + "Squid", + "Rango", + "Sonarwatch" + ], + "occurrences": 8 + }, + "0x06a01a4d579479dd5d884ebf61a31727a3d8d442": { + "address": "0x06a01a4d579479dd5d884ebf61a31727a3d8d442", + "symbol": "SKEY", + "decimals": 8, + "name": "SmartKey", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x06a01a4d579479dd5d884ebf61a31727a3d8d442.png", + "aggregators": [ + "CoinMarketCap", + "1inch", + "LiFi", + "TrustWallet", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 8 + }, + "0x9be89d2a4cd102d8fecc6bf9da793be995c22541": { + "address": "0x9be89d2a4cd102d8fecc6bf9da793be995c22541", + "symbol": "BBTC", + "decimals": 8, + "name": "Binance Wrapped BTC", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x9be89d2a4cd102d8fecc6bf9da793be995c22541.png", + "aggregators": [ + "CoinGecko", + "1inch", + "LiFi", + "TrustWallet", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 8 + }, + "0x9ea3b5b4ec044b70375236a281986106457b20ef": { + "address": "0x9ea3b5b4ec044b70375236a281986106457b20ef", + "symbol": "DELTA", + "decimals": 18, + "name": "Delta Financial", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x9ea3b5b4ec044b70375236a281986106457b20ef.png", + "aggregators": [ + "CoinMarketCap", + "LiFi", + "TrustWallet", + "Socket", + "Rubic", + "Squid", + "Sonarwatch", + "SushiSwap" + ], + "occurrences": 8 + }, + "0x2d94aa3e47d9d5024503ca8491fce9a2fb4da198": { + "address": "0x2d94aa3e47d9d5024503ca8491fce9a2fb4da198", + "symbol": "BANK/BANKLESS", + "decimals": 18, + "name": "Bankless Token", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x2d94aa3e47d9d5024503ca8491fce9a2fb4da198.png", + "aggregators": [ + "CoinMarketCap", + "1inch", + "LiFi", + "Socket", + "Rubic", + "Rango", + "Sonarwatch", + "SushiSwap" + ], + "occurrences": 8 + }, + "0x66a1e37c9b0eaddca17d3662d6c05f4decf3e110": { + "address": "0x66a1e37c9b0eaddca17d3662d6c05f4decf3e110", + "symbol": "USR", + "decimals": 18, + "name": "Resolv USR", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x66a1e37c9b0eaddca17d3662d6c05f4decf3e110.png", + "aggregators": [ + "CoinMarketCap", + "1inch", + "LiFi", + "Socket", + "Rubic", + "Squid", + "Rango", + "Sonarwatch" + ], + "occurrences": 8 + }, + "0x269616d549d7e8eaa82dfb17028d0b212d11232a": { + "address": "0x269616d549d7e8eaa82dfb17028d0b212d11232a", + "symbol": "PUNK", + "decimals": 18, + "name": "Punk Vault NFTX", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x269616d549d7e8eaa82dfb17028d0b212d11232a.png", + "aggregators": [ + "CoinGecko", + "1inch", + "LiFi", + "Socket", + "Rubic", + "Squid", + "Rango", + "Sonarwatch" + ], + "occurrences": 8 + }, + "0x8afe4055ebc86bd2afb3940c0095c9aca511d852": { + "address": "0x8afe4055ebc86bd2afb3940c0095c9aca511d852", + "symbol": "AIUS", + "decimals": 18, + "name": "Arbius", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x8afe4055ebc86bd2afb3940c0095c9aca511d852.png", + "aggregators": [ + "CoinMarketCap", + "LiFi", + "Socket", + "Rubic", + "Squid", + "Rango", + "Sonarwatch", + "SushiSwap" + ], + "occurrences": 8 + }, + "0x8be3460a480c80728a8c4d7a5d5303c85ba7b3b9": { + "address": "0x8be3460a480c80728a8c4d7a5d5303c85ba7b3b9", + "symbol": "SENA", + "decimals": 18, + "name": "Ethena Staked ENA", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x8be3460a480c80728a8c4d7a5d5303c85ba7b3b9.png", + "aggregators": [ + "CoinGecko", + "1inch", + "LiFi", + "Socket", + "Rubic", + "Squid", + "Rango", + "Sonarwatch" + ], + "occurrences": 8 + }, + "0x96f6ef951840721adbf46ac996b59e0235cb985c": { + "address": "0x96f6ef951840721adbf46ac996b59e0235cb985c", + "symbol": "USDY", + "decimals": 18, + "name": "Ondo US Dollar Yield", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x96f6ef951840721adbf46ac996b59e0235cb985c.png", + "aggregators": [ + "CoinMarketCap", + "1inch", + "LiFi", + "Socket", + "Rubic", + "Squid", + "Rango", + "Sonarwatch" + ], + "occurrences": 8 + }, + "0x9ce84f6a69986a83d92c324df10bc8e64771030f": { + "address": "0x9ce84f6a69986a83d92c324df10bc8e64771030f", + "symbol": "CHEX", + "decimals": 18, + "name": "CHEX Token", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x9ce84f6a69986a83d92c324df10bc8e64771030f.png", + "aggregators": [ + "CoinMarketCap", + "1inch", + "LiFi", + "Socket", + "Rubic", + "Squid", + "Rango", + "Sonarwatch" + ], + "occurrences": 8 + }, + "0xa95c5ebb86e0de73b4fb8c47a45b792cfea28c23": { + "address": "0xa95c5ebb86e0de73b4fb8c47a45b792cfea28c23", + "symbol": "SDL", + "decimals": 18, + "name": "stake.link", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xa95c5ebb86e0de73b4fb8c47a45b792cfea28c23.png", + "aggregators": [ + "CoinMarketCap", + "1inch", + "LiFi", + "Socket", + "Rubic", + "Rango", + "Sonarwatch", + "SushiSwap" + ], + "occurrences": 8 + }, + "0xa150db9b1fa65b44799d4dd949d922c0a33ee606": { + "address": "0xa150db9b1fa65b44799d4dd949d922c0a33ee606", + "symbol": "DRC", + "decimals": 0, + "name": "Digital Reserve Currency", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xa150db9b1fa65b44799d4dd949d922c0a33ee606.png", + "aggregators": [ + "CoinMarketCap", + "1inch", + "LiFi", + "Socket", + "Rubic", + "Rango", + "Sonarwatch", + "Bancor" + ], + "occurrences": 8 + }, + "0x8ed97a637a790be1feff5e888d43629dc05408f6": { + "address": "0x8ed97a637a790be1feff5e888d43629dc05408f6", + "symbol": "NPC", + "decimals": 18, + "name": "Non Playable Coin", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x8ed97a637a790be1feff5e888d43629dc05408f6.png", + "aggregators": [ + "CoinMarketCap", + "1inch", + "LiFi", + "Socket", + "Rubic", + "Squid", + "Rango", + "Sonarwatch" + ], + "occurrences": 8 + }, + "0xa8c8cfb141a3bb59fea1e2ea6b79b5ecbcd7b6ca": { + "address": "0xa8c8cfb141a3bb59fea1e2ea6b79b5ecbcd7b6ca", + "symbol": "NOIA", + "decimals": 18, + "name": "Syntropy", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xa8c8cfb141a3bb59fea1e2ea6b79b5ecbcd7b6ca.png", + "aggregators": [ + "CoinMarketCap", + "1inch", + "LiFi", + "TrustWallet", + "Socket", + "Rubic", + "Rango", + "Bancor" + ], + "occurrences": 8 + }, + "0x72e4f9f808c49a2a61de9c5896298920dc4eeea9": { + "address": "0x72e4f9f808c49a2a61de9c5896298920dc4eeea9", + "symbol": "BITCOIN", + "decimals": 8, + "name": "HarryPotterObamaSonic10Inu ETH", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x72e4f9f808c49a2a61de9c5896298920dc4eeea9.png", + "aggregators": [ + "CoinGecko", + "LiFi", + "Socket", + "Rubic", + "Squid", + "Rango", + "Sonarwatch" + ], + "occurrences": 7 + }, + "0xaaee1a9723aadb7afa2810263653a34ba2c21c7a": { + "address": "0xaaee1a9723aadb7afa2810263653a34ba2c21c7a", + "symbol": "MOG", + "decimals": 18, + "name": "Mog Coin", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xaaee1a9723aadb7afa2810263653a34ba2c21c7a.png", + "aggregators": [ + "CoinMarketCap", + "1inch", + "Socket", + "Rubic", + "Squid", + "Rango", + "Sonarwatch" + ], + "occurrences": 7 + }, + "0x3073f7aaa4db83f95e9fff17424f71d4751a3073": { + "address": "0x3073f7aaa4db83f95e9fff17424f71d4751a3073", + "symbol": "MOVE", + "decimals": 8, + "name": "Movement", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x3073f7aaa4db83f95e9fff17424f71d4751a3073.png", + "aggregators": [ + "CoinMarketCap", + "LiFi", + "Socket", + "Rubic", + "Squid", + "Rango", + "Sonarwatch" + ], + "occurrences": 7 + }, + "0x812ba41e071c7b7fa4ebcfb62df5f45f6fa853ee": { + "address": "0x812ba41e071c7b7fa4ebcfb62df5f45f6fa853ee", + "symbol": "NEIRO", + "decimals": 9, + "name": "Neiro", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x812ba41e071c7b7fa4ebcfb62df5f45f6fa853ee.png", + "aggregators": [ + "CoinMarketCap", + "1inch", + "Socket", + "Rubic", + "Squid", + "Rango", + "Sonarwatch" + ], + "occurrences": 7 + }, + "0x7613c48e0cd50e42dd9bf0f6c235063145f6f8dc": { + "address": "0x7613c48e0cd50e42dd9bf0f6c235063145f6f8dc", + "symbol": "PIRATE", + "decimals": 18, + "name": "Pirate Nation Token", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x7613c48e0cd50e42dd9bf0f6c235063145f6f8dc.png", + "aggregators": [ + "CoinMarketCap", + "LiFi", + "Socket", + "Rubic", + "Rango", + "Sonarwatch", + "SushiSwap" + ], + "occurrences": 7 + }, + "0x643c4e15d7d62ad0abec4a9bd4b001aa3ef52d66": { + "address": "0x643c4e15d7d62ad0abec4a9bd4b001aa3ef52d66", + "symbol": "SYRUP", + "decimals": 18, + "name": "Maple Finance", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x643c4e15d7d62ad0abec4a9bd4b001aa3ef52d66.png", + "aggregators": [ + "CoinMarketCap", + "LiFi", + "Socket", + "Rubic", + "Squid", + "Rango", + "Sonarwatch" + ], + "occurrences": 7 + }, + "0x5a666c7d92e5fa7edcb6390e4efd6d0cdd69cf37": { + "address": "0x5a666c7d92e5fa7edcb6390e4efd6d0cdd69cf37", + "symbol": "MARSH", + "decimals": 18, + "name": "UnMarshal", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x5a666c7d92e5fa7edcb6390e4efd6d0cdd69cf37.png", + "aggregators": [ + "CoinMarketCap", + "1inch", + "TrustWallet", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 7 + }, + "0x6f87d756daf0503d08eb8993686c7fc01dc44fb1": { + "address": "0x6f87d756daf0503d08eb8993686c7fc01dc44fb1", + "symbol": "TRADE", + "decimals": 18, + "name": "UniTrade", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x6f87d756daf0503d08eb8993686c7fc01dc44fb1.png", + "aggregators": [ + "CoinMarketCap", + "LiFi", + "TrustWallet", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 7 + }, + "0x5befbb272290dd5b8521d4a938f6c4757742c430": { + "address": "0x5befbb272290dd5b8521d4a938f6c4757742c430", + "symbol": "XFI", + "decimals": 18, + "name": "Xfinance", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x5befbb272290dd5b8521d4a938f6c4757742c430.png", + "aggregators": [ + "CoinMarketCap", + "LiFi", + "TrustWallet", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 7 + }, + "0xa4ef4b0b23c1fc81d3f9ecf93510e64f58a4a016": { + "address": "0xa4ef4b0b23c1fc81d3f9ecf93510e64f58a4a016", + "symbol": "1MIL", + "decimals": 18, + "name": "1MillionNFTs", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xa4ef4b0b23c1fc81d3f9ecf93510e64f58a4a016.png", + "aggregators": [ + "CoinMarketCap", + "1inch", + "LiFi", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 7 + }, + "0xea1ea0972fa092dd463f2968f9bb51cc4c981d71": { + "address": "0xea1ea0972fa092dd463f2968f9bb51cc4c981d71", + "symbol": "MOD", + "decimals": 18, + "name": "Modefi", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xea1ea0972fa092dd463f2968f9bb51cc4c981d71.png", + "aggregators": [ + "CoinMarketCap", + "LiFi", + "TrustWallet", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 7 + }, + "0x16980b3b4a3f9d89e33311b5aa8f80303e5ca4f8": { + "address": "0x16980b3b4a3f9d89e33311b5aa8f80303e5ca4f8", + "symbol": "KEX", + "decimals": 6, + "name": "KIRA Network", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x16980b3b4a3f9d89e33311b5aa8f80303e5ca4f8.png", + "aggregators": [ + "CoinMarketCap", + "1inch", + "TrustWallet", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 7 + }, + "0x491e136ff7ff03e6ab097e54734697bb5802fc1c": { + "address": "0x491e136ff7ff03e6ab097e54734697bb5802fc1c", + "symbol": "KTN", + "decimals": 18, + "name": "Kattana", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x491e136ff7ff03e6ab097e54734697bb5802fc1c.png", + "aggregators": [ + "CoinMarketCap", + "LiFi", + "Socket", + "Rubic", + "Rango", + "Sonarwatch", + "Bancor" + ], + "occurrences": 7 + }, + "0x0100546f2cd4c9d97f798ffc9755e47865ff7ee6": { + "address": "0x0100546f2cd4c9d97f798ffc9755e47865ff7ee6", + "symbol": "ALETH", + "decimals": 18, + "name": "Alchemix ETH", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x0100546f2cd4c9d97f798ffc9755e47865ff7ee6.png", + "aggregators": [ + "CoinGecko", + "1inch", + "LiFi", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 7 + }, + "0x3446dd70b2d52a6bf4a5a192d9b0a161295ab7f9": { + "address": "0x3446dd70b2d52a6bf4a5a192d9b0a161295ab7f9", + "symbol": "SUDO", + "decimals": 18, + "name": "Sudo Governance Token", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x3446dd70b2d52a6bf4a5a192d9b0a161295ab7f9.png", + "aggregators": [ + "CoinMarketCap", + "LiFi", + "Socket", + "Rubic", + "Rango", + "Sonarwatch", + "SushiSwap" + ], + "occurrences": 7 + }, + "0xb58e61c3098d85632df34eecfb899a1ed80921cb": { + "address": "0xb58e61c3098d85632df34eecfb899a1ed80921cb", + "symbol": "ZCHF", + "decimals": 18, + "name": "Frankencoin", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xb58e61c3098d85632df34eecfb899a1ed80921cb.png", + "aggregators": [ + "Metamask", + "1inch", + "LiFi", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 7 + }, + "0x2a3bff78b79a009976eea096a51a948a3dc00e34": { + "address": "0x2a3bff78b79a009976eea096a51a948a3dc00e34", + "symbol": "WILD", + "decimals": 18, + "name": "Wilder World", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x2a3bff78b79a009976eea096a51a948a3dc00e34.png", + "aggregators": [ + "CoinMarketCap", + "1inch", + "LiFi", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 7 + }, + "0x99fe3b1391503a1bc1788051347a1324bff41452": { + "address": "0x99fe3b1391503a1bc1788051347a1324bff41452", + "symbol": "SX", + "decimals": 18, + "name": "SportX", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x99fe3b1391503a1bc1788051347a1324bff41452.png", + "aggregators": [ + "CoinGecko", + "LiFi", + "Socket", + "Rubic", + "Rango", + "Sonarwatch", + "SushiSwap" + ], + "occurrences": 7 + }, + "0xf94e7d0710709388bce3161c32b4eea56d3f91cc": { + "address": "0xf94e7d0710709388bce3161c32b4eea56d3f91cc", + "symbol": "DSYNC", + "decimals": 18, + "name": "Destra Network", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xf94e7d0710709388bce3161c32b4eea56d3f91cc.png", + "aggregators": [ + "CoinMarketCap", + "1inch", + "Socket", + "Rubic", + "Squid", + "Rango", + "Sonarwatch" + ], + "occurrences": 7 + }, + "0x83e9f223e1edb3486f876ee888d76bfba26c475a": { + "address": "0x83e9f223e1edb3486f876ee888d76bfba26c475a", + "symbol": "GUILD", + "decimals": 18, + "name": "BlockchainSpace", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x83e9f223e1edb3486f876ee888d76bfba26c475a.png", + "aggregators": [ + "CoinMarketCap", + "1inch", + "LiFi", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 7 + }, + "0x5ca135cb8527d76e932f34b5145575f9d8cbe08e": { + "address": "0x5ca135cb8527d76e932f34b5145575f9d8cbe08e", + "symbol": "FPI", + "decimals": 18, + "name": "Frax Price Index", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x5ca135cb8527d76e932f34b5145575f9d8cbe08e.png", + "aggregators": [ + "CoinMarketCap", + "LiFi", + "Socket", + "Rubic", + "Squid", + "Rango", + "Sonarwatch" + ], + "occurrences": 7 + }, + "0xa91ac63d040deb1b7a5e4d4134ad23eb0ba07e14": { + "address": "0xa91ac63d040deb1b7a5e4d4134ad23eb0ba07e14", + "symbol": "BEL", + "decimals": 18, + "name": "Bella Protocol", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xa91ac63d040deb1b7a5e4d4134ad23eb0ba07e14.png", + "aggregators": [ + "CoinMarketCap", + "LiFi", + "TrustWallet", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 7 + }, + "0xabd4c63d2616a5201454168269031355f4764337": { + "address": "0xabd4c63d2616a5201454168269031355f4764337", + "symbol": "ORDER", + "decimals": 18, + "name": "Orderly Network", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xabd4c63d2616a5201454168269031355f4764337.png", + "aggregators": [ + "CoinMarketCap", + "LiFi", + "Socket", + "Rubic", + "Squid", + "Rango", + "Sonarwatch" + ], + "occurrences": 7 + }, + "0xb0ac2b5a73da0e67a8e5489ba922b3f8d582e058": { + "address": "0xb0ac2b5a73da0e67a8e5489ba922b3f8d582e058", + "symbol": "SHIRO", + "decimals": 18, + "name": "Shiro Neko", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xb0ac2b5a73da0e67a8e5489ba922b3f8d582e058.png", + "aggregators": [ + "CoinMarketCap", + "1inch", + "Socket", + "Rubic", + "Squid", + "Rango", + "Sonarwatch" + ], + "occurrences": 7 + }, + "0x05d3606d5c81eb9b7b18530995ec9b29da05faba": { + "address": "0x05d3606d5c81eb9b7b18530995ec9b29da05faba", + "symbol": "TOMOE", + "decimals": 18, + "name": "TomoChain", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x05d3606d5c81eb9b7b18530995ec9b29da05faba.png", + "aggregators": [ + "CoinMarketCap", + "Socket", + "Rubic", + "Rango", + "Sonarwatch", + "SushiSwap", + "Bancor" + ], + "occurrences": 7 + }, + "0x15874d65e649880c2614e7a480cb7c9a55787ff6": { + "address": "0x15874d65e649880c2614e7a480cb7c9a55787ff6", + "symbol": "EMAX", + "decimals": 18, + "name": "EthereumMax", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x15874d65e649880c2614e7a480cb7c9a55787ff6.png", + "aggregators": [ + "CoinMarketCap", + "1inch", + "TrustWallet", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 7 + }, + "0x7a2bc711e19ba6aff6ce8246c546e8c4b4944dfd": { + "address": "0x7a2bc711e19ba6aff6ce8246c546e8c4b4944dfd", + "symbol": "WAXE", + "decimals": 8, + "name": "WAXE", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x7a2bc711e19ba6aff6ce8246c546e8c4b4944dfd.png", + "aggregators": [ + "CoinMarketCap", + "1inch", + "TrustWallet", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 7 + }, + "0xee573a945b01b788b9287ce062a0cfc15be9fd86": { + "address": "0xee573a945b01b788b9287ce062a0cfc15be9fd86", + "symbol": "XED", + "decimals": 18, + "name": "Exeedme", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xee573a945b01b788b9287ce062a0cfc15be9fd86.png", + "aggregators": [ + "CoinGecko", + "LiFi", + "TrustWallet", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 7 + }, + "0x365accfca291e7d3914637abf1f7635db165bb09": { + "address": "0x365accfca291e7d3914637abf1f7635db165bb09", + "symbol": "FXN", + "decimals": 18, + "name": "f x Protocol", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x365accfca291e7d3914637abf1f7635db165bb09.png", + "aggregators": [ + "CoinGecko", + "1inch", + "LiFi", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 7 + }, + "0xb17548c7b510427baac4e267bea62e800b247173": { + "address": "0xb17548c7b510427baac4e267bea62e800b247173", + "symbol": "SMT", + "decimals": 18, + "name": "Swarm Markets", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xb17548c7b510427baac4e267bea62e800b247173.png", + "aggregators": [ + "CoinMarketCap", + "LiFi", + "Socket", + "Rubic", + "Squid", + "Rango", + "Sonarwatch" + ], + "occurrences": 7 + }, + "0x9ad37205d608b8b219e6a2573f922094cec5c200": { + "address": "0x9ad37205d608b8b219e6a2573f922094cec5c200", + "symbol": "IZI", + "decimals": 18, + "name": "iZUMi Finance", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x9ad37205d608b8b219e6a2573f922094cec5c200.png", + "aggregators": [ + "CoinMarketCap", + "LiFi", + "Socket", + "Rubic", + "Squid", + "Rango", + "Sonarwatch" + ], + "occurrences": 7 + }, + "0x298d492e8c1d909d3f63bc4a36c66c64acb3d695": { + "address": "0x298d492e8c1d909d3f63bc4a36c66c64acb3d695", + "symbol": "PBR", + "decimals": 18, + "name": "PolkaBridge", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x298d492e8c1d909d3f63bc4a36c66c64acb3d695.png", + "aggregators": [ + "CoinMarketCap", + "1inch", + "LiFi", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 7 + }, + "0xdacd69347de42babfaecd09dc88958378780fb62": { + "address": "0xdacd69347de42babfaecd09dc88958378780fb62", + "symbol": "ATRI", + "decimals": 18, + "name": "Atari Token", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xdacd69347de42babfaecd09dc88958378780fb62.png", + "aggregators": [ + "Metamask", + "LiFi", + "TrustWallet", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 7 + }, + "0xed35af169af46a02ee13b9d79eb57d6d68c1749e": { + "address": "0xed35af169af46a02ee13b9d79eb57d6d68c1749e", + "symbol": "OMI", + "decimals": 18, + "name": "ECOMI", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xed35af169af46a02ee13b9d79eb57d6d68c1749e.png", + "aggregators": [ + "CoinMarketCap", + "LiFi", + "Socket", + "Rubic", + "Squid", + "Rango", + "Sonarwatch" + ], + "occurrences": 7 + }, + "0xfad45e47083e4607302aa43c65fb3106f1cd7607": { + "address": "0xfad45e47083e4607302aa43c65fb3106f1cd7607", + "symbol": "HOGE", + "decimals": 9, + "name": "Hoge Finance", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xfad45e47083e4607302aa43c65fb3106f1cd7607.png", + "aggregators": [ + "Metamask", + "1inch", + "TrustWallet", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 7 + }, + "0xaa4e3edb11afa93c41db59842b29de64b72e355b": { + "address": "0xaa4e3edb11afa93c41db59842b29de64b72e355b", + "symbol": "MFI", + "decimals": 18, + "name": "MarginSwap", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xaa4e3edb11afa93c41db59842b29de64b72e355b.png", + "aggregators": [ + "CoinGecko", + "LiFi", + "Socket", + "Rubic", + "Rango", + "Sonarwatch", + "Bancor" + ], + "occurrences": 7 + }, + "0xb9d99c33ea2d86ec5ec6b8a4dd816ebba64404af": { + "address": "0xb9d99c33ea2d86ec5ec6b8a4dd816ebba64404af", + "symbol": "K21", + "decimals": 18, + "name": "K21", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xb9d99c33ea2d86ec5ec6b8a4dd816ebba64404af.png", + "aggregators": [ + "CoinMarketCap", + "1inch", + "TrustWallet", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 7 + }, + "0x91dfbee3965baaee32784c2d546b7a0c62f268c9": { + "address": "0x91dfbee3965baaee32784c2d546b7a0c62f268c9", + "symbol": "BONDLY", + "decimals": 18, + "name": "Forj", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x91dfbee3965baaee32784c2d546b7a0c62f268c9.png", + "aggregators": [ + "CoinGecko", + "1inch", + "LiFi", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 7 + }, + "0xc581b735a1688071a1746c968e0798d642ede491": { + "address": "0xc581b735a1688071a1746c968e0798d642ede491", + "symbol": "EURT", + "decimals": 6, + "name": "Euro Tether", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xc581b735a1688071a1746c968e0798d642ede491.png", + "aggregators": [ + "CoinMarketCap", + "1inch", + "LiFi", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 7 + }, + "0xcb56b52316041a62b6b5d0583dce4a8ae7a3c629": { + "address": "0xcb56b52316041a62b6b5d0583dce4a8ae7a3c629", + "symbol": "CIG", + "decimals": 18, + "name": "Cigarettes", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xcb56b52316041a62b6b5d0583dce4a8ae7a3c629.png", + "aggregators": [ + "Metamask", + "LiFi", + "Socket", + "Rubic", + "Squid", + "Rango", + "Sonarwatch", + "SushiSwap" + ], + "occurrences": 8 + }, + "0x70bef3bb2f001da2fddb207dae696cd9faff3f5d": { + "address": "0x70bef3bb2f001da2fddb207dae696cd9faff3f5d", + "symbol": "NST", + "decimals": 18, + "name": "Ninja Squad Token", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x70bef3bb2f001da2fddb207dae696cd9faff3f5d.png", + "aggregators": [ + "CoinMarketCap", + "LiFi", + "Socket", + "Rubic", + "Rango", + "Sonarwatch", + "SushiSwap" + ], + "occurrences": 7 + }, + "0xf0f9d895aca5c8678f706fb8216fa22957685a13": { + "address": "0xf0f9d895aca5c8678f706fb8216fa22957685a13", + "symbol": "CULT", + "decimals": 18, + "name": "Cult DAO", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xf0f9d895aca5c8678f706fb8216fa22957685a13.png", + "aggregators": [ + "CoinMarketCap", + "1inch", + "Socket", + "Rubic", + "Squid", + "Rango", + "Sonarwatch" + ], + "occurrences": 7 + }, + "0x04c154b66cb340f3ae24111cc767e0184ed00cc6": { + "address": "0x04c154b66cb340f3ae24111cc767e0184ed00cc6", + "symbol": "PXETH", + "decimals": 18, + "name": "Dinero Staked ETH", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x04c154b66cb340f3ae24111cc767e0184ed00cc6.png", + "aggregators": [ + "CoinGecko", + "1inch", + "LiFi", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 7 + }, + "0x8881562783028f5c1bcb985d2283d5e170d88888": { + "address": "0x8881562783028f5c1bcb985d2283d5e170d88888", + "symbol": "SHFL", + "decimals": 18, + "name": "Shuffle", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x8881562783028f5c1bcb985d2283d5e170d88888.png", + "aggregators": [ + "CoinMarketCap", + "LiFi", + "Socket", + "Rubic", + "Squid", + "Rango", + "Sonarwatch" + ], + "occurrences": 7 + }, + "0x289ff00235d2b98b0145ff5d4435d3e92f9540a6": { + "address": "0x289ff00235d2b98b0145ff5d4435d3e92f9540a6", + "symbol": "BOOE", + "decimals": 18, + "name": "Book of Ethereum", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x289ff00235d2b98b0145ff5d4435d3e92f9540a6.png", + "aggregators": [ + "CoinMarketCap", + "1inch", + "LiFi", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 7 + }, + "0xfeac2eae96899709a43e252b6b92971d32f9c0f9": { + "address": "0xfeac2eae96899709a43e252b6b92971d32f9c0f9", + "symbol": "ANYONE", + "decimals": 18, + "name": "ANyONe Protocol", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xfeac2eae96899709a43e252b6b92971d32f9c0f9.png", + "aggregators": [ + "CoinMarketCap", + "LiFi", + "Socket", + "Rubic", + "Squid", + "Rango", + "Sonarwatch" + ], + "occurrences": 7 + }, + "0x1121acc14c63f3c872bfca497d10926a6098aac5": { + "address": "0x1121acc14c63f3c872bfca497d10926a6098aac5", + "symbol": "DOGE", + "decimals": 18, + "name": "Department Of Government Efficiency", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x1121acc14c63f3c872bfca497d10926a6098aac5.png", + "aggregators": [ + "CoinGecko", + "1inch", + "Socket", + "Rubic", + "Squid", + "Rango", + "Sonarwatch" + ], + "occurrences": 7 + }, + "0xeec2be5c91ae7f8a338e1e5f3b5de49d07afdc81": { + "address": "0xeec2be5c91ae7f8a338e1e5f3b5de49d07afdc81", + "symbol": "DPX", + "decimals": 18, + "name": "Dopex Governance Token", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xeec2be5c91ae7f8a338e1e5f3b5de49d07afdc81.png", + "aggregators": [ + "CoinMarketCap", + "LiFi", + "TrustWallet", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 7 + }, + "0xcfcecfe2bd2fed07a9145222e8a7ad9cf1ccd22a": { + "address": "0xcfcecfe2bd2fed07a9145222e8a7ad9cf1ccd22a", + "symbol": "ADS", + "decimals": 11, + "name": "Adshares", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xcfcecfe2bd2fed07a9145222e8a7ad9cf1ccd22a.png", + "aggregators": [ + "CoinMarketCap", + "1inch", + "LiFi", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 7 + }, + "0x656c00e1bcd96f256f224ad9112ff426ef053733": { + "address": "0x656c00e1bcd96f256f224ad9112ff426ef053733", + "symbol": "EFI", + "decimals": 18, + "name": "Efinity Token", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x656c00e1bcd96f256f224ad9112ff426ef053733.png", + "aggregators": [ + "CoinMarketCap", + "LiFi", + "Socket", + "Rubic", + "Rango", + "Sonarwatch", + "Bancor" + ], + "occurrences": 7 + }, + "0x2dff88a56767223a5529ea5960da7a3f5f766406": { + "address": "0x2dff88a56767223a5529ea5960da7a3f5f766406", + "symbol": "ID", + "decimals": 18, + "name": "SPACE ID", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x2dff88a56767223a5529ea5960da7a3f5f766406.png", + "aggregators": [ + "CoinMarketCap", + "LiFi", + "Socket", + "Rubic", + "Squid", + "Rango", + "Sonarwatch" + ], + "occurrences": 7 + }, + "0xb34e17562e4f1f63a2d4cf684ed8bc124e519771": { + "address": "0xb34e17562e4f1f63a2d4cf684ed8bc124e519771", + "symbol": "NLS", + "decimals": 6, + "name": "Nolus", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xb34e17562e4f1f63a2d4cf684ed8bc124e519771.png", + "aggregators": [ + "CoinGecko", + "LiFi", + "Socket", + "Rubic", + "Squid", + "Rango", + "Sonarwatch" + ], + "occurrences": 7 + }, + "0x26dcfbfa8bc267b250432c01c982eaf81cc5480c": { + "address": "0x26dcfbfa8bc267b250432c01c982eaf81cc5480c", + "symbol": "AMATICC", + "decimals": 18, + "name": "Ankr Reward Bearing MATIC", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x26dcfbfa8bc267b250432c01c982eaf81cc5480c.png", + "aggregators": [ + "CoinMarketCap", + "LiFi", + "Socket", + "Rubic", + "Rango", + "Sonarwatch", + "SushiSwap" + ], + "occurrences": 7 + }, + "0x137ddb47ee24eaa998a535ab00378d6bfa84f893": { + "address": "0x137ddb47ee24eaa998a535ab00378d6bfa84f893", + "symbol": "RDNT", + "decimals": 18, + "name": "Radiant Capital", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x137ddb47ee24eaa998a535ab00378d6bfa84f893.png", + "aggregators": [ + "CoinMarketCap", + "LiFi", + "Socket", + "Rubic", + "Squid", + "Rango", + "Sonarwatch" + ], + "occurrences": 7 + }, + "0xd5525d397898e5502075ea5e830d8914f6f0affe": { + "address": "0xd5525d397898e5502075ea5e830d8914f6f0affe", + "symbol": "MEME", + "decimals": 8, + "name": "MEME", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xd5525d397898e5502075ea5e830d8914f6f0affe.png", + "aggregators": [ + "CoinMarketCap", + "LiFi", + "TrustWallet", + "Socket", + "Rubic", + "Rango", + "SushiSwap" + ], + "occurrences": 7 + }, + "0xb987d48ed8f2c468d52d6405624eadba5e76d723": { + "address": "0xb987d48ed8f2c468d52d6405624eadba5e76d723", + "symbol": "STBZ", + "decimals": 18, + "name": "Stabilize Token", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xb987d48ed8f2c468d52d6405624eadba5e76d723.png", + "aggregators": [ + "CoinMarketCap", + "1inch", + "LiFi", + "TrustWallet", + "Socket", + "Rubic", + "Rango" + ], + "occurrences": 7 + }, + "0xea319e87cf06203dae107dd8e5672175e3ee976c": { + "address": "0xea319e87cf06203dae107dd8e5672175e3ee976c", + "symbol": "SURF", + "decimals": 18, + "name": "SURF Finance", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xea319e87cf06203dae107dd8e5672175e3ee976c.png", + "aggregators": [ + "CoinMarketCap", + "1inch", + "LiFi", + "TrustWallet", + "Socket", + "Rubic", + "Rango" + ], + "occurrences": 7 + }, + "0x67c597624b17b16fb77959217360b7cd18284253": { + "address": "0x67c597624b17b16fb77959217360b7cd18284253", + "symbol": "MARK", + "decimals": 9, + "name": "Benchmark Protocol", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x67c597624b17b16fb77959217360b7cd18284253.png", + "aggregators": [ + "CoinMarketCap", + "1inch", + "LiFi", + "TrustWallet", + "Socket", + "Rubic", + "Rango" + ], + "occurrences": 7 + }, + "0xcb5f72d37685c3d5ad0bb5f982443bc8fcdf570e": { + "address": "0xcb5f72d37685c3d5ad0bb5f982443bc8fcdf570e", + "symbol": "ROOT", + "decimals": 18, + "name": "Rootkit Finance", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xcb5f72d37685c3d5ad0bb5f982443bc8fcdf570e.png", + "aggregators": [ + "CoinMarketCap", + "1inch", + "LiFi", + "TrustWallet", + "Socket", + "Rubic", + "Rango" + ], + "occurrences": 7 + }, + "0xe452e6ea2ddeb012e20db73bf5d3863a3ac8d77a": { + "address": "0xe452e6ea2ddeb012e20db73bf5d3863a3ac8d77a", + "symbol": "WCELO", + "decimals": 18, + "name": "WCELO", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xe452e6ea2ddeb012e20db73bf5d3863a3ac8d77a.png", + "aggregators": [ + "CoinMarketCap", + "LiFi", + "TrustWallet", + "Socket", + "Rubic", + "Rango", + "SushiSwap" + ], + "occurrences": 7 + }, + "0xcbfef8fdd706cde6f208460f2bf39aa9c785f05d": { + "address": "0xcbfef8fdd706cde6f208460f2bf39aa9c785f05d", + "symbol": "KINE", + "decimals": 18, + "name": "Kine Governance Token", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xcbfef8fdd706cde6f208460f2bf39aa9c785f05d.png", + "aggregators": [ + "CoinMarketCap", + "1inch", + "TrustWallet", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 7 + }, + "0x9040e237c3bf18347bb00957dc22167d0f2b999d": { + "address": "0x9040e237c3bf18347bb00957dc22167d0f2b999d", + "symbol": "STND", + "decimals": 18, + "name": "Standard", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x9040e237c3bf18347bb00957dc22167d0f2b999d.png", + "aggregators": [ + "CoinMarketCap", + "LiFi", + "Socket", + "Rubic", + "Rango", + "Sonarwatch", + "SushiSwap" + ], + "occurrences": 7 + }, + "0xe1fc4455f62a6e89476f1072530c20cf1a0622da": { + "address": "0xe1fc4455f62a6e89476f1072530c20cf1a0622da", + "symbol": "PHTR", + "decimals": 18, + "name": "Phuture", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xe1fc4455f62a6e89476f1072530c20cf1a0622da.png", + "aggregators": [ + "CoinMarketCap", + "Socket", + "Rubic", + "Rango", + "Sonarwatch", + "SushiSwap", + "Bancor" + ], + "occurrences": 7 + }, + "0x8d6cebd76f18e1558d4db88138e2defb3909fad6": { + "address": "0x8d6cebd76f18e1558d4db88138e2defb3909fad6", + "symbol": "MAI", + "decimals": 18, + "name": "Mai Stablecoin", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x8d6cebd76f18e1558d4db88138e2defb3909fad6.png", + "aggregators": [ + "CoinMarketCap", + "LiFi", + "Socket", + "Rubic", + "Squid", + "Rango", + "SushiSwap" + ], + "occurrences": 7 + }, + "0x108a850856db3f85d0269a2693d896b394c80325": { + "address": "0x108a850856db3f85d0269a2693d896b394c80325", + "symbol": "TGT", + "decimals": 18, + "name": "THORWallet Governance Token", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x108a850856db3f85d0269a2693d896b394c80325.png", + "aggregators": [ + "CoinMarketCap", + "LiFi", + "Socket", + "Rubic", + "Rango", + "Sonarwatch", + "SushiSwap" + ], + "occurrences": 7 + }, + "0x6bba316c48b49bd1eac44573c5c871ff02958469": { + "address": "0x6bba316c48b49bd1eac44573c5c871ff02958469", + "symbol": "GAS", + "decimals": 18, + "name": "Gas DAO", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x6bba316c48b49bd1eac44573c5c871ff02958469.png", + "aggregators": [ + "CoinMarketCap", + "TrustWallet", + "Socket", + "Rubic", + "Rango", + "Sonarwatch", + "SushiSwap" + ], + "occurrences": 7 + }, + "0x2b1d36f5b61addaf7da7ebbd11b35fd8cfb0de31": { + "address": "0x2b1d36f5b61addaf7da7ebbd11b35fd8cfb0de31", + "symbol": "ITP", + "decimals": 18, + "name": "Interport Token", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x2b1d36f5b61addaf7da7ebbd11b35fd8cfb0de31.png", + "aggregators": [ + "CoinMarketCap", + "Socket", + "Rubic", + "Squid", + "Rango", + "Sonarwatch", + "SushiSwap" + ], + "occurrences": 7 + }, + "0x9d9535dae62f5f12ab83f1183dca1ead244b0db3": { + "address": "0x9d9535dae62f5f12ab83f1183dca1ead244b0db3", + "symbol": "YBR", + "decimals": 18, + "name": "YieldBricks", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x9d9535dae62f5f12ab83f1183dca1ead244b0db3.png", + "aggregators": [ + "CoinMarketCap", + "LiFi", + "Socket", + "Rubic", + "Squid", + "Rango", + "Sonarwatch" + ], + "occurrences": 7 + }, + "0xa2120b9e674d3fc3875f415a7df52e382f141225": { + "address": "0xa2120b9e674d3fc3875f415a7df52e382f141225", + "symbol": "ATA", + "decimals": 18, + "name": "Automata", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xa2120b9e674d3fc3875f415a7df52e382f141225.png", + "aggregators": [ + "CoinMarketCap", + "LiFi", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 6 + }, + "0x4cce605ed955295432958d8951d0b176c10720d5": { + "address": "0x4cce605ed955295432958d8951d0b176c10720d5", + "symbol": "AUDD", + "decimals": 6, + "name": "Novatti Australian Digital Dollar", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x4cce605ed955295432958d8951d0b176c10720d5.png", + "aggregators": [ + "CoinMarketCap", + "Socket", + "Rubic", + "Squid", + "Rango", + "Sonarwatch" + ], + "occurrences": 6 + }, + "0x8a2279d4a90b6fe1c4b30fa660cc9f926797baa2": { + "address": "0x8a2279d4a90b6fe1c4b30fa660cc9f926797baa2", + "symbol": "CHR", + "decimals": 6, + "name": "Chromia", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x8a2279d4a90b6fe1c4b30fa660cc9f926797baa2.png", + "aggregators": [ + "CoinMarketCap", + "LiFi", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 6 + }, + "0xe6fd75ff38adca4b97fbcd938c86b98772431867": { + "address": "0xe6fd75ff38adca4b97fbcd938c86b98772431867", + "symbol": "ELA", + "decimals": 18, + "name": "Elastos", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xe6fd75ff38adca4b97fbcd938c86b98772431867.png", + "aggregators": [ + "CoinMarketCap", + "Socket", + "Rubic", + "Squid", + "Rango", + "Sonarwatch" + ], + "occurrences": 6 + }, + "0x88909d489678dd17aa6d9609f89b0419bf78fd9a": { + "address": "0x88909d489678dd17aa6d9609f89b0419bf78fd9a", + "symbol": "L3", + "decimals": 18, + "name": "Layer3", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x88909d489678dd17aa6d9609f89b0419bf78fd9a.png", + "aggregators": [ + "CoinMarketCap", + "LiFi", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 6 + }, + "0x61e90a50137e1f645c9ef4a0d3a4f01477738406": { + "address": "0x61e90a50137e1f645c9ef4a0d3a4f01477738406", + "symbol": "LOKA", + "decimals": 18, + "name": "League of Kingdoms", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x61e90a50137e1f645c9ef4a0d3a4f01477738406.png", + "aggregators": [ + "CoinMarketCap", + "LiFi", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 6 + }, + "0xa9e8acf069c58aec8825542845fd754e41a9489a": { + "address": "0xa9e8acf069c58aec8825542845fd754e41a9489a", + "symbol": "PEPECOIN", + "decimals": 18, + "name": "PepeCoin", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xa9e8acf069c58aec8825542845fd754e41a9489a.png", + "aggregators": [ + "CoinMarketCap", + "LiFi", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 6 + }, + "0x1bbe973bef3a977fc51cbed703e8ffdefe001fed": { + "address": "0x1bbe973bef3a977fc51cbed703e8ffdefe001fed", + "symbol": "PORTAL", + "decimals": 18, + "name": "Portal", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x1bbe973bef3a977fc51cbed703e8ffdefe001fed.png", + "aggregators": [ + "CoinMarketCap", + "LiFi", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 6 + }, + "0x4d1c297d39c5c1277964d0e3f8aa901493664530": { + "address": "0x4d1c297d39c5c1277964d0e3f8aa901493664530", + "symbol": "PUFFER", + "decimals": 18, + "name": "Puffer", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x4d1c297d39c5c1277964d0e3f8aa901493664530.png", + "aggregators": [ + "CoinMarketCap", + "LiFi", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 6 + }, + "0x0a6e7ba5042b38349e437ec6db6214aec7b35676": { + "address": "0x0a6e7ba5042b38349e437ec6db6214aec7b35676", + "symbol": "SWELL", + "decimals": 18, + "name": "Swell", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x0a6e7ba5042b38349e437ec6db6214aec7b35676.png", + "aggregators": [ + "CoinMarketCap", + "LiFi", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 6 + }, + "0x888888848b652b3e3a0f34c96e00eec0f3a23f72": { + "address": "0x888888848b652b3e3a0f34c96e00eec0f3a23f72", + "symbol": "TLM", + "decimals": 4, + "name": "Alien Worlds", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x888888848b652b3e3a0f34c96e00eec0f3a23f72.png", + "aggregators": [ + "CoinMarketCap", + "LiFi", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 6 + }, + "0xc4441c2be5d8fa8126822b9929ca0b81ea0de38e": { + "address": "0xc4441c2be5d8fa8126822b9929ca0b81ea0de38e", + "symbol": "USUAL", + "decimals": 18, + "name": "Usual", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xc4441c2be5d8fa8126822b9929ca0b81ea0de38e.png", + "aggregators": [ + "CoinMarketCap", + "LiFi", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 6 + }, + "0xedb171c18ce90b633db442f2a6f72874093b49ef": { + "address": "0xedb171c18ce90b633db442f2a6f72874093b49ef", + "symbol": "WAMPL", + "decimals": 18, + "name": "Wrapped Ampleforth", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xedb171c18ce90b633db442f2a6f72874093b49ef.png", + "aggregators": [ + "CoinMarketCap", + "LiFi", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 6 + }, + "0x6ee0f7bb50a54ab5253da0667b0dc2ee526c30a8": { + "address": "0x6ee0f7bb50a54ab5253da0667b0dc2ee526c30a8", + "symbol": "ABUSD", + "decimals": 18, + "name": "Aave BUSD v1", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x6ee0f7bb50a54ab5253da0667b0dc2ee526c30a8.png", + "aggregators": [ + "CoinGecko", + "LiFi", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 6 + }, + "0x8762db106b2c2a0bccb3a80d1ed41273552616e8": { + "address": "0x8762db106b2c2a0bccb3a80d1ed41273552616e8", + "symbol": "RSR", + "decimals": 18, + "name": "Reserve Rights", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x8762db106b2c2a0bccb3a80d1ed41273552616e8.png", + "aggregators": [ + "CMC", + "LiFi", + "Socket", + "Rubic", + "Rango", + "Bancor" + ], + "occurrences": 6 + }, + "0xab37e1358b639fd877f015027bb62d3ddaa7557e": { + "address": "0xab37e1358b639fd877f015027bb62d3ddaa7557e", + "symbol": "LIEN", + "decimals": 8, + "name": "Lien", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xab37e1358b639fd877f015027bb62d3ddaa7557e.png", + "aggregators": [ + "CoinMarketCap", + "LiFi", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 6 + }, + "0x29cbd0510eec0327992cd6006e63f9fa8e7f33b7": { + "address": "0x29cbd0510eec0327992cd6006e63f9fa8e7f33b7", + "symbol": "TIDAL", + "decimals": 18, + "name": "Tidal Finance", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x29cbd0510eec0327992cd6006e63f9fa8e7f33b7.png", + "aggregators": [ + "CoinMarketCap", + "1inch", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 6 + }, + "0xf1f508c7c9f0d1b15a76fba564eef2d956220cf7": { + "address": "0xf1f508c7c9f0d1b15a76fba564eef2d956220cf7", + "symbol": "PPDEX", + "decimals": 18, + "name": "Pepedex", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xf1f508c7c9f0d1b15a76fba564eef2d956220cf7.png", + "aggregators": [ + "CoinMarketCap", + "LiFi", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 6 + }, + "0x1a57367c6194199e5d9aea1ce027431682dfb411": { + "address": "0x1a57367c6194199e5d9aea1ce027431682dfb411", + "symbol": "MDF", + "decimals": 18, + "name": "MatrixETF", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x1a57367c6194199e5d9aea1ce027431682dfb411.png", + "aggregators": [ + "CoinMarketCap", + "LiFi", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 6 + }, + "0xc834fa996fa3bec7aad3693af486ae53d8aa8b50": { + "address": "0xc834fa996fa3bec7aad3693af486ae53d8aa8b50", + "symbol": "CONV", + "decimals": 18, + "name": "Convergence", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xc834fa996fa3bec7aad3693af486ae53d8aa8b50.png", + "aggregators": [ + "CoinMarketCap", + "TrustWallet", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 6 + }, + "0x471d113059324321749e097705197a2b44a070fc": { + "address": "0x471d113059324321749e097705197a2b44a070fc", + "symbol": "KNG", + "decimals": 18, + "name": "Kanga Exchange", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x471d113059324321749e097705197a2b44a070fc.png", + "aggregators": [ + "CoinMarketCap", + "LiFi", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 6 + }, + "0x3010ccb5419f1ef26d40a7cd3f0d707a0fa127dc": { + "address": "0x3010ccb5419f1ef26d40a7cd3f0d707a0fa127dc", + "symbol": "GEMS", + "decimals": 18, + "name": "Gems VIP", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x3010ccb5419f1ef26d40a7cd3f0d707a0fa127dc.png", + "aggregators": [ + "CoinMarketCap", + "LiFi", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 6 + }, + "0xbb1ee07d6c7baeb702949904080eb61f5d5e7732": { + "address": "0xbb1ee07d6c7baeb702949904080eb61f5d5e7732", + "symbol": "DINU", + "decimals": 18, + "name": "Dogey Inu", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xbb1ee07d6c7baeb702949904080eb61f5d5e7732.png", + "aggregators": [ + "CoinMarketCap", + "1inch", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 6 + }, + "0xc40af1e4fecfa05ce6bab79dcd8b373d2e436c4e": { + "address": "0xc40af1e4fecfa05ce6bab79dcd8b373d2e436c4e", + "symbol": "HOKK", + "decimals": 9, + "name": "Hokkaidu Inu", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xc40af1e4fecfa05ce6bab79dcd8b373d2e436c4e.png", + "aggregators": [ + "CoinMarketCap", + "Socket", + "Rubic", + "Squid", + "Rango", + "Sonarwatch" + ], + "occurrences": 6 + }, + "0xf2051511b9b121394fa75b8f7d4e7424337af687": { + "address": "0xf2051511b9b121394fa75b8f7d4e7424337af687", + "symbol": "HAUS", + "decimals": 18, + "name": "DAOhaus", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xf2051511b9b121394fa75b8f7d4e7424337af687.png", + "aggregators": [ + "CoinMarketCap", + "LiFi", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 6 + }, + "0x7a5ce6abd131ea6b148a022cb76fc180ae3315a6": { + "address": "0x7a5ce6abd131ea6b148a022cb76fc180ae3315a6", + "symbol": "BALPHA", + "decimals": 18, + "name": "bAlpha", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x7a5ce6abd131ea6b148a022cb76fc180ae3315a6.png", + "aggregators": [ + "CoinMarketCap", + "1inch", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 6 + }, + "0x4d2ee5dae46c86da2ff521f7657dad98834f97b8": { + "address": "0x4d2ee5dae46c86da2ff521f7657dad98834f97b8", + "symbol": "PPBLZ", + "decimals": 18, + "name": "Pepemon Pepeballs", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x4d2ee5dae46c86da2ff521f7657dad98834f97b8.png", + "aggregators": [ + "CoinMarketCap", + "LiFi", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 6 + }, + "0x666d875c600aa06ac1cf15641361dec3b00432ef": { + "address": "0x666d875c600aa06ac1cf15641361dec3b00432ef", + "symbol": "BTSE", + "decimals": 8, + "name": "BTSE Token", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x666d875c600aa06ac1cf15641361dec3b00432ef.png", + "aggregators": [ + "CoinMarketCap", + "LiFi", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 6 + }, + "0xa19f5264f7d7be11c451c093d8f92592820bea86": { + "address": "0xa19f5264f7d7be11c451c093d8f92592820bea86", + "symbol": "BYTES", + "decimals": 18, + "name": "Neo Tokyo", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xa19f5264f7d7be11c451c093d8f92592820bea86.png", + "aggregators": [ + "CoinMarketCap", + "LiFi", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 6 + }, + "0x56015bbe3c01fe05bc30a8a9a9fd9a88917e7db3": { + "address": "0x56015bbe3c01fe05bc30a8a9a9fd9a88917e7db3", + "symbol": "CAT", + "decimals": 18, + "name": "Mooncat CAT", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x56015bbe3c01fe05bc30a8a9a9fd9a88917e7db3.png", + "aggregators": [ + "CoinMarketCap", + "LiFi", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 6 + }, + "0x667102bd3413bfeaa3dffb48fa8288819e480a88": { + "address": "0x667102bd3413bfeaa3dffb48fa8288819e480a88", + "symbol": "TKX", + "decimals": 8, + "name": "Tokenize Xchange", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x667102bd3413bfeaa3dffb48fa8288819e480a88.png", + "aggregators": [ + "CoinMarketCap", + "1inch", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 6 + }, + "0x1735db6ab5baa19ea55d0adceed7bcdc008b3136": { + "address": "0x1735db6ab5baa19ea55d0adceed7bcdc008b3136", + "symbol": "URQA", + "decimals": 18, + "name": "UREEQA", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x1735db6ab5baa19ea55d0adceed7bcdc008b3136.png", + "aggregators": [ + "CoinMarketCap", + "1inch", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 6 + }, + "0x430ef9263e76dae63c84292c3409d61c598e9682": { + "address": "0x430ef9263e76dae63c84292c3409d61c598e9682", + "symbol": "PYR", + "decimals": 18, + "name": "Vulcan Forged", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x430ef9263e76dae63c84292c3409d61c598e9682.png", + "aggregators": [ + "CoinGecko", + "LiFi", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 6 + }, + "0x24e89bdf2f65326b94e36978a7edeac63623dafa": { + "address": "0x24e89bdf2f65326b94e36978a7edeac63623dafa", + "symbol": "TKING", + "decimals": 18, + "name": "Tiger King Coin", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x24e89bdf2f65326b94e36978a7edeac63623dafa.png", + "aggregators": [ + "CoinMarketCap", + "1inch", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 6 + }, + "0xfa99a87b14b02e2240c79240c5a20f945ca5ef76": { + "address": "0xfa99a87b14b02e2240c79240c5a20f945ca5ef76", + "symbol": "GGTK", + "decimals": 18, + "name": "GG", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xfa99a87b14b02e2240c79240c5a20f945ca5ef76.png", + "aggregators": [ + "CoinMarketCap", + "LiFi", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 6 + }, + "0x777e2ae845272a2f540ebf6a3d03734a5a8f618e": { + "address": "0x777e2ae845272a2f540ebf6a3d03734a5a8f618e", + "symbol": "RYOSHI", + "decimals": 18, + "name": "Ryoshis Vision", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x777e2ae845272a2f540ebf6a3d03734a5a8f618e.png", + "aggregators": [ + "CoinMarketCap", + "1inch", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 6 + }, + "0x1e4e46b7bf03ece908c88ff7cc4975560010893a": { + "address": "0x1e4e46b7bf03ece908c88ff7cc4975560010893a", + "symbol": "IOEN", + "decimals": 18, + "name": "Internet of Energy Network", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x1e4e46b7bf03ece908c88ff7cc4975560010893a.png", + "aggregators": [ + "CoinMarketCap", + "LiFi", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 6 + }, + "0xf655c8567e0f213e6c634cd2a68d992152161dc6": { + "address": "0xf655c8567e0f213e6c634cd2a68d992152161dc6", + "symbol": "IBEX", + "decimals": 18, + "name": "Impermax", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xf655c8567e0f213e6c634cd2a68d992152161dc6.png", + "aggregators": [ + "CoinMarketCap", + "LiFi", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 6 + }, + "0x11eef04c884e24d9b7b4760e7476d06ddf797f36": { + "address": "0x11eef04c884e24d9b7b4760e7476d06ddf797f36", + "symbol": "MX", + "decimals": 18, + "name": "MX", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x11eef04c884e24d9b7b4760e7476d06ddf797f36.png", + "aggregators": [ + "CoinMarketCap", + "LiFi", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 6 + }, + "0x01597e397605bf280674bf292623460b4204c375": { + "address": "0x01597e397605bf280674bf292623460b4204c375", + "symbol": "BENT", + "decimals": 18, + "name": "Bent Finance", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x01597e397605bf280674bf292623460b4204c375.png", + "aggregators": [ + "CoinMarketCap", + "Socket", + "Rubic", + "Rango", + "Sonarwatch", + "SushiSwap" + ], + "occurrences": 6 + }, + "0x09395a2a58db45db0da254c7eaa5ac469d8bdc85": { + "address": "0x09395a2a58db45db0da254c7eaa5ac469d8bdc85", + "symbol": "SQT", + "decimals": 18, + "name": "SubQuery Network", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x09395a2a58db45db0da254c7eaa5ac469d8bdc85.png", + "aggregators": [ + "CoinMarketCap", + "LiFi", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 6 + }, + "0xfeef77d3f69374f66429c91d732a244f074bdf74": { + "address": "0xfeef77d3f69374f66429c91d732a244f074bdf74", + "symbol": "CVXFXS", + "decimals": 18, + "name": "Convex FXS", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xfeef77d3f69374f66429c91d732a244f074bdf74.png", + "aggregators": [ + "CoinMarketCap", + "LiFi", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 6 + }, + "0x28cca76f6e8ec81e4550ecd761f899110b060e97": { + "address": "0x28cca76f6e8ec81e4550ecd761f899110b060e97", + "symbol": "ARGO", + "decimals": 18, + "name": "ArGoApp", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x28cca76f6e8ec81e4550ecd761f899110b060e97.png", + "aggregators": [ + "CoinMarketCap", + "LiFi", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 6 + }, + "0x0001a500a6b18995b03f44bb040a5ffc28e45cb0": { + "address": "0x0001a500a6b18995b03f44bb040a5ffc28e45cb0", + "symbol": "OLAS", + "decimals": 18, + "name": "Autonolas", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x0001a500a6b18995b03f44bb040a5ffc28e45cb0.png", + "aggregators": [ + "CoinMarketCap", + "LiFi", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 6 + }, + "0x2596825a84888e8f24b747df29e11b5dd03c81d7": { + "address": "0x2596825a84888e8f24b747df29e11b5dd03c81d7", + "symbol": "FTRB", + "decimals": 18, + "name": "Faith Tribe", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x2596825a84888e8f24b747df29e11b5dd03c81d7.png", + "aggregators": [ + "CoinMarketCap", + "LiFi", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 6 + }, + "0xa8b61cff52564758a204f841e636265bebc8db9b": { + "address": "0xa8b61cff52564758a204f841e636265bebc8db9b", + "symbol": "YIELD", + "decimals": 18, + "name": "Yield Protocol", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xa8b61cff52564758a204f841e636265bebc8db9b.png", + "aggregators": [ + "CoinMarketCap", + "1inch", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 6 + }, + "0xb2a63a5dd36c91ec2da59b188ff047f66fac122a": { + "address": "0xb2a63a5dd36c91ec2da59b188ff047f66fac122a", + "symbol": "FOLO", + "decimals": 18, + "name": "Alpha Impact", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xb2a63a5dd36c91ec2da59b188ff047f66fac122a.png", + "aggregators": [ + "CoinMarketCap", + "LiFi", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 6 + }, + "0xccba0b2bc4babe4cbfb6bd2f1edc2a9e86b7845f": { + "address": "0xccba0b2bc4babe4cbfb6bd2f1edc2a9e86b7845f", + "symbol": "WINTER", + "decimals": 18, + "name": "Winter", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xccba0b2bc4babe4cbfb6bd2f1edc2a9e86b7845f.png", + "aggregators": [ + "CoinMarketCap", + "LiFi", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 6 + }, + "0xa92e7c82b11d10716ab534051b271d2f6aef7df5": { + "address": "0xa92e7c82b11d10716ab534051b271d2f6aef7df5", + "symbol": "ARA", + "decimals": 18, + "name": "Ara Token", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xa92e7c82b11d10716ab534051b271d2f6aef7df5.png", + "aggregators": [ + "CoinMarketCap", + "Socket", + "Rubic", + "Rango", + "Sonarwatch", + "SushiSwap" + ], + "occurrences": 6 + }, + "0xa52bffad02b1fe3f86a543a4e81962d3b3bb01a7": { + "address": "0xa52bffad02b1fe3f86a543a4e81962d3b3bb01a7", + "symbol": "DUCKER", + "decimals": 18, + "name": "Duckereum", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xa52bffad02b1fe3f86a543a4e81962d3b3bb01a7.png", + "aggregators": [ + "CoinMarketCap", + "1inch", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 6 + }, + "0x6595b8fd9c920c81500dca94e53cdc712513fb1f": { + "address": "0x6595b8fd9c920c81500dca94e53cdc712513fb1f", + "symbol": "OLY", + "decimals": 18, + "name": "Olyverse", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x6595b8fd9c920c81500dca94e53cdc712513fb1f.png", + "aggregators": [ + "CoinMarketCap", + "1inch", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 6 + }, + "0xa49d7499271ae71cd8ab9ac515e6694c755d400c": { + "address": "0xa49d7499271ae71cd8ab9ac515e6694c755d400c", + "symbol": "MUTE", + "decimals": 18, + "name": "Mute", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xa49d7499271ae71cd8ab9ac515e6694c755d400c.png", + "aggregators": [ + "CoinMarketCap", + "LiFi", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 6 + }, + "0x88a9a52f944315d5b4e917b9689e65445c401e83": { + "address": "0x88a9a52f944315d5b4e917b9689e65445c401e83", + "symbol": "FEAR", + "decimals": 18, + "name": "FEAR", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x88a9a52f944315d5b4e917b9689e65445c401e83.png", + "aggregators": [ + "CoinMarketCap", + "LiFi", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 6 + }, + "0xf17a3fe536f8f7847f1385ec1bc967b2ca9cae8d": { + "address": "0xf17a3fe536f8f7847f1385ec1bc967b2ca9cae8d", + "symbol": "AMKT", + "decimals": 18, + "name": "Alongside Crypto Market Index", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xf17a3fe536f8f7847f1385ec1bc967b2ca9cae8d.png", + "aggregators": [ + "CoinMarketCap", + "LiFi", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 6 + }, + "0x67f4c72a50f8df6487720261e188f2abe83f57d7": { + "address": "0x67f4c72a50f8df6487720261e188f2abe83f57d7", + "symbol": "WPOKT", + "decimals": 6, + "name": "Wrapped POKT", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x67f4c72a50f8df6487720261e188f2abe83f57d7.png", + "aggregators": [ + "CoinMarketCap", + "LiFi", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 6 + }, + "0xdd69db25f6d620a7bad3023c5d32761d353d3de9": { + "address": "0xdd69db25f6d620a7bad3023c5d32761d353d3de9", + "symbol": "GETH", + "decimals": 18, + "name": "Goerli ETH", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xdd69db25f6d620a7bad3023c5d32761d353d3de9.png", + "aggregators": [ + "CoinMarketCap", + "LiFi", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 6 + }, + "0x4b520c812e8430659fc9f12f6d0c39026c83588d": { + "address": "0x4b520c812e8430659fc9f12f6d0c39026c83588d", + "symbol": "DG", + "decimals": 18, + "name": "Decentral Games", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x4b520c812e8430659fc9f12f6d0c39026c83588d.png", + "aggregators": [ + "CoinMarketCap", + "LiFi", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 6 + }, + "0xddf7fd345d54ff4b40079579d4c4670415dbfd0a": { + "address": "0xddf7fd345d54ff4b40079579d4c4670415dbfd0a", + "symbol": "SG", + "decimals": 18, + "name": "SocialGood", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xddf7fd345d54ff4b40079579d4c4670415dbfd0a.png", + "aggregators": [ + "CoinMarketCap", + "LiFi", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 6 + }, + "0x2559813bbb508c4c79e9ccce4703bcb1f149edd7": { + "address": "0x2559813bbb508c4c79e9ccce4703bcb1f149edd7", + "symbol": "WAIT", + "decimals": 9, + "name": "Hourglass", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x2559813bbb508c4c79e9ccce4703bcb1f149edd7.png", + "aggregators": [ + "CoinMarketCap", + "LiFi", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 6 + }, + "0x8f3470a7388c05ee4e7af3d01d8c722b0ff52374": { + "address": "0x8f3470a7388c05ee4e7af3d01d8c722b0ff52374", + "symbol": "VERI", + "decimals": 18, + "name": "Veritaseum", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x8f3470a7388c05ee4e7af3d01d8c722b0ff52374.png", + "aggregators": [ + "CoinMarketCap", + "LiFi", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 6 + }, + "0x3ea8ea4237344c9931214796d9417af1a1180770": { + "address": "0x3ea8ea4237344c9931214796d9417af1a1180770", + "symbol": "FLX", + "decimals": 18, + "name": "Flux Protocol", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x3ea8ea4237344c9931214796d9417af1a1180770.png", + "aggregators": [ + "CoinMarketCap", + "1inch", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 6 + }, + "0xb97048628db6b661d4c2aa833e95dbe1a905b280": { + "address": "0xb97048628db6b661d4c2aa833e95dbe1a905b280", + "symbol": "PAY", + "decimals": 18, + "name": "TenX", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xb97048628db6b661d4c2aa833e95dbe1a905b280.png", + "aggregators": [ + "CoinMarketCap", + "LiFi", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 6 + }, + "0xdd66781d0e9a08d4fbb5ec7bac80b691be27f21d": { + "address": "0xdd66781d0e9a08d4fbb5ec7bac80b691be27f21d", + "symbol": "AXGT", + "decimals": 18, + "name": "AxonDAO Governance Token", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xdd66781d0e9a08d4fbb5ec7bac80b691be27f21d.png", + "aggregators": [ + "CoinGecko", + "LiFi", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 6 + }, + "0x40e3d1a4b2c47d9aa61261f5606136ef73e28042": { + "address": "0x40e3d1a4b2c47d9aa61261f5606136ef73e28042", + "symbol": "SERV", + "decimals": 18, + "name": "OpenServ", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x40e3d1a4b2c47d9aa61261f5606136ef73e28042.png", + "aggregators": [ + "CoinMarketCap", + "Socket", + "Rubic", + "Squid", + "Rango", + "Sonarwatch" + ], + "occurrences": 6 + }, + "0xaa8330fb2b4d5d07abfe7a72262752a8505c6b37": { + "address": "0xaa8330fb2b4d5d07abfe7a72262752a8505c6b37", + "symbol": "POLC", + "decimals": 18, + "name": "Polkacity", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xaa8330fb2b4d5d07abfe7a72262752a8505c6b37.png", + "aggregators": [ + "CoinMarketCap", + "1inch", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 6 + }, + "0xda47862a83dac0c112ba89c6abc2159b95afd71c": { + "address": "0xda47862a83dac0c112ba89c6abc2159b95afd71c", + "symbol": "PRISMA", + "decimals": 18, + "name": "Prisma Governance Token", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xda47862a83dac0c112ba89c6abc2159b95afd71c.png", + "aggregators": [ + "CoinMarketCap", + "1inch", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 6 + }, + "0x09db87a538bd693e9d08544577d5ccfaa6373a48": { + "address": "0x09db87a538bd693e9d08544577d5ccfaa6373a48", + "symbol": "YNETH", + "decimals": 18, + "name": "YieldNest Restaked ETH", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x09db87a538bd693e9d08544577d5ccfaa6373a48.png", + "aggregators": [ + "Metamask", + "LiFi", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 6 + }, + "0x7d51888c5abb7cdfa9cdd6a50673c7f8afaccd7f": { + "address": "0x7d51888c5abb7cdfa9cdd6a50673c7f8afaccd7f", + "symbol": "DD", + "decimals": 18, + "name": "DuckDAO Token", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x7d51888c5abb7cdfa9cdd6a50673c7f8afaccd7f.png", + "aggregators": [ + "Metamask", + "LiFi", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 6 + }, + "0xadf7c35560035944e805d98ff17d58cde2449389": { + "address": "0xadf7c35560035944e805d98ff17d58cde2449389", + "symbol": "SPEC", + "decimals": 18, + "name": "Spectral", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xadf7c35560035944e805d98ff17d58cde2449389.png", + "aggregators": [ + "CoinMarketCap", + "LiFi", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 6 + }, + "0x4c3bae16c79c30eeb1004fb03c878d89695e3a99": { + "address": "0x4c3bae16c79c30eeb1004fb03c878d89695e3a99", + "symbol": "AUTUMN", + "decimals": 18, + "name": "Autumn", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x4c3bae16c79c30eeb1004fb03c878d89695e3a99.png", + "aggregators": [ + "CoinMarketCap", + "LiFi", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 6 + }, + "0x9609b540e5dedddb147abbf9812ade06b1e61b2c": { + "address": "0x9609b540e5dedddb147abbf9812ade06b1e61b2c", + "symbol": "MICKEY", + "decimals": 18, + "name": "Steamboat Willie", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x9609b540e5dedddb147abbf9812ade06b1e61b2c.png", + "aggregators": [ + "CoinMarketCap", + "LiFi", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 6 + }, + "0xda30f261a962d5aae94c9ecd170544600d193766": { + "address": "0xda30f261a962d5aae94c9ecd170544600d193766", + "symbol": "ORBR", + "decimals": 18, + "name": "Orbler", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xda30f261a962d5aae94c9ecd170544600d193766.png", + "aggregators": [ + "CoinMarketCap", + "LiFi", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 6 + }, + "0xb14ebf566511b9e6002bb286016ab2497b9b9c9d": { + "address": "0xb14ebf566511b9e6002bb286016ab2497b9b9c9d", + "symbol": "HID", + "decimals": 18, + "name": "Hypersign Identity", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xb14ebf566511b9e6002bb286016ab2497b9b9c9d.png", + "aggregators": [ + "CoinMarketCap", + "LiFi", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 6 + }, + "0xa64dfe8d86963151e6496bee513e366f6e42ed79": { + "address": "0xa64dfe8d86963151e6496bee513e366f6e42ed79", + "symbol": "GOKU", + "decimals": 9, + "name": "Goku", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xa64dfe8d86963151e6496bee513e366f6e42ed79.png", + "aggregators": [ + "CoinMarketCap", + "1inch", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 6 + }, + "0x42c83a91b3a79de5488cd9280a4df564e13a79ee": { + "address": "0x42c83a91b3a79de5488cd9280a4df564e13a79ee", + "symbol": "MIRAI", + "decimals": 18, + "name": "MIRAI", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x42c83a91b3a79de5488cd9280a4df564e13a79ee.png", + "aggregators": [ + "CoinGecko", + "Socket", + "Rubic", + "Squid", + "Rango", + "Sonarwatch" + ], + "occurrences": 6 + }, + "0x841fb148863454a3b3570f515414759be9091465": { + "address": "0x841fb148863454a3b3570f515414759be9091465", + "symbol": "SHIH", + "decimals": 18, + "name": "Shih Tzu", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x841fb148863454a3b3570f515414759be9091465.png", + "aggregators": [ + "CoinMarketCap", + "1inch", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 6 + }, + "0x922d8563631b03c2c4cf817f4d18f6883aba0109": { + "address": "0x922d8563631b03c2c4cf817f4d18f6883aba0109", + "symbol": "LOCK", + "decimals": 18, + "name": "Houdini Swap", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x922d8563631b03c2c4cf817f4d18f6883aba0109.png", + "aggregators": [ + "CoinMarketCap", + "1inch", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 6 + }, + "0x9e20461bc2c4c980f62f1b279d71734207a6a356": { + "address": "0x9e20461bc2c4c980f62f1b279d71734207a6a356", + "symbol": "OMNI", + "decimals": 18, + "name": "OmniCat", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x9e20461bc2c4c980f62f1b279d71734207a6a356.png", + "aggregators": [ + "CoinMarketCap", + "Socket", + "Rubic", + "Rango", + "Sonarwatch", + "SushiSwap" + ], + "occurrences": 6 + }, + "0x046eee2cc3188071c02bfc1745a6b17c656e3f3d": { + "address": "0x046eee2cc3188071c02bfc1745a6b17c656e3f3d", + "symbol": "RLB", + "decimals": 18, + "name": "Rollbit Coin", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x046eee2cc3188071c02bfc1745a6b17c656e3f3d.png", + "aggregators": [ + "CoinMarketCap", + "LiFi", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 6 + }, + "0x887168120cb89fb06f3e74dc4af20d67df0977f6": { + "address": "0x887168120cb89fb06f3e74dc4af20d67df0977f6", + "symbol": "SKRT", + "decimals": 18, + "name": "Sekuritance", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x887168120cb89fb06f3e74dc4af20d67df0977f6.png", + "aggregators": [ + "CoinMarketCap", + "LiFi", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 6 + }, + "0xd85a6ae55a7f33b0ee113c234d2ee308edeaf7fd": { + "address": "0xd85a6ae55a7f33b0ee113c234d2ee308edeaf7fd", + "symbol": "CBK", + "decimals": 18, + "name": "Cobak", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xd85a6ae55a7f33b0ee113c234d2ee308edeaf7fd.png", + "aggregators": [ + "CoinMarketCap", + "LiFi", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 6 + }, + "0xdb82c0d91e057e05600c8f8dc836beb41da6df14": { + "address": "0xdb82c0d91e057e05600c8f8dc836beb41da6df14", + "symbol": "SLN", + "decimals": 18, + "name": "Smart Layer Network", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xdb82c0d91e057e05600c8f8dc836beb41da6df14.png", + "aggregators": [ + "CoinMarketCap", + "LiFi", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 6 + }, + "0x9669890e48f330acd88b78d63e1a6b3482652cd9": { + "address": "0x9669890e48f330acd88b78d63e1a6b3482652cd9", + "symbol": "BCNT", + "decimals": 18, + "name": "Bincentive", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x9669890e48f330acd88b78d63e1a6b3482652cd9.png", + "aggregators": [ + "CoinMarketCap", + "LiFi", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 6 + }, + "0xd5d86fc8d5c0ea1ac1ac5dfab6e529c9967a45e9": { + "address": "0xd5d86fc8d5c0ea1ac1ac5dfab6e529c9967a45e9", + "symbol": "WRLD", + "decimals": 18, + "name": "NFT Worlds", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xd5d86fc8d5c0ea1ac1ac5dfab6e529c9967a45e9.png", + "aggregators": [ + "CoinMarketCap", + "LiFi", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 6 + }, + "0x7138eb0d563f3f6722500936a11dcae99d738a2c": { + "address": "0x7138eb0d563f3f6722500936a11dcae99d738a2c", + "symbol": "LIF3", + "decimals": 18, + "name": "Lif3", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x7138eb0d563f3f6722500936a11dcae99d738a2c.png", + "aggregators": [ + "CoinMarketCap", + "LiFi", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 6 + }, + "0xaaa9214f675316182eaa21c85f0ca99160cc3aaa": { + "address": "0xaaa9214f675316182eaa21c85f0ca99160cc3aaa", + "symbol": "QANX", + "decimals": 18, + "name": "QANplatform", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xaaa9214f675316182eaa21c85f0ca99160cc3aaa.png", + "aggregators": [ + "CoinMarketCap", + "Socket", + "Rubic", + "Squid", + "Rango", + "Sonarwatch" + ], + "occurrences": 6 + }, + "0x5dc60c4d5e75d22588fa17ffeb90a63e535efce0": { + "address": "0x5dc60c4d5e75d22588fa17ffeb90a63e535efce0", + "symbol": "DKA", + "decimals": 18, + "name": "dKargo", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x5dc60c4d5e75d22588fa17ffeb90a63e535efce0.png", + "aggregators": [ + "Metamask", + "LiFi", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 6 + }, + "0x3d1c949a761c11e4cc50c3ae6bdb0f24fd7a39da": { + "address": "0x3d1c949a761c11e4cc50c3ae6bdb0f24fd7a39da", + "symbol": "NEURA", + "decimals": 18, + "name": "Neurahub", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x3d1c949a761c11e4cc50c3ae6bdb0f24fd7a39da.png", + "aggregators": [ + "CoinMarketCap", + "1inch", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 6 + }, + "0x1f557fb2aa33dce484902695ca1374f413875519": { + "address": "0x1f557fb2aa33dce484902695ca1374f413875519", + "symbol": "VES", + "decimals": 18, + "name": "Vestate", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x1f557fb2aa33dce484902695ca1374f413875519.png", + "aggregators": [ + "CoinMarketCap", + "LiFi", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 6 + }, + "0xcbf4d5efa82e32a9187385480a7c74cb062b956c": { + "address": "0xcbf4d5efa82e32a9187385480a7c74cb062b956c", + "symbol": "SATOSHI", + "decimals": 9, + "name": "Satoshi Nakamoto", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xcbf4d5efa82e32a9187385480a7c74cb062b956c.png", + "aggregators": [ + "CoinMarketCap", + "Socket", + "Rubic", + "Squid", + "Rango", + "Sonarwatch" + ], + "occurrences": 6 + }, + "0x3429d03c6f7521aec737a0bbf2e5ddcef2c3ae31": { + "address": "0x3429d03c6f7521aec737a0bbf2e5ddcef2c3ae31", + "symbol": "PIXEL", + "decimals": 18, + "name": "Pixels", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x3429d03c6f7521aec737a0bbf2e5ddcef2c3ae31.png", + "aggregators": [ + "CoinMarketCap", + "1inch", + "LiFi", + "Socket", + "Rubic", + "Sonarwatch" + ], + "occurrences": 6 + }, + "0x7cb683151a83c2b10a30cbb003cda9996228a2ba": { + "address": "0x7cb683151a83c2b10a30cbb003cda9996228a2ba", + "symbol": "IYKYK", + "decimals": 18, + "name": "IYKYK", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x7cb683151a83c2b10a30cbb003cda9996228a2ba.png", + "aggregators": [ + "CoinMarketCap", + "Socket", + "Rubic", + "Squid", + "Rango", + "Sonarwatch" + ], + "occurrences": 6 + }, + "0x3330bfb7332ca23cd071631837dc289b09c33333": { + "address": "0x3330bfb7332ca23cd071631837dc289b09c33333", + "symbol": "RBC", + "decimals": 18, + "name": "Rubic", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x3330bfb7332ca23cd071631837dc289b09c33333.png", + "aggregators": [ + "CoinMarketCap", + "LiFi", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 6 + }, + "0xf03a7eb46d01d9ecaa104558c732cf82f6b6b645": { + "address": "0xf03a7eb46d01d9ecaa104558c732cf82f6b6b645", + "symbol": "MATICX", + "decimals": 18, + "name": "Stader MaticX", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xf03a7eb46d01d9ecaa104558c732cf82f6b6b645.png", + "aggregators": [ + "CoinMarketCap", + "LiFi", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 6 + }, + "0x7448c7456a97769f6cd04f1e83a4a23ccdc46abd": { + "address": "0x7448c7456a97769f6cd04f1e83a4a23ccdc46abd", + "symbol": "MAV", + "decimals": 18, + "name": "Maverick Protocol", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x7448c7456a97769f6cd04f1e83a4a23ccdc46abd.png", + "aggregators": [ + "CoinMarketCap", + "LiFi", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 6 + }, + "0x1a3496c18d558bd9c6c8f609e1b129f67ab08163": { + "address": "0x1a3496c18d558bd9c6c8f609e1b129f67ab08163", + "symbol": "DEP", + "decimals": 18, + "name": "DEAPCOIN", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x1a3496c18d558bd9c6c8f609e1b129f67ab08163.png", + "aggregators": [ + "CoinMarketCap", + "LiFi", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 6 + }, + "0x1f57da732a77636d913c9a75d685b26cc85dcc3a": { + "address": "0x1f57da732a77636d913c9a75d685b26cc85dcc3a", + "symbol": "OL", + "decimals": 18, + "name": "OPENLOOT", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x1f57da732a77636d913c9a75d685b26cc85dcc3a.png", + "aggregators": [ + "CoinMarketCap", + "LiFi", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 6 + }, + "0x54d2252757e1672eead234d27b1270728ff90581": { + "address": "0x54d2252757e1672eead234d27b1270728ff90581", + "symbol": "BGB", + "decimals": 18, + "name": "Bitget Token", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x54d2252757e1672eead234d27b1270728ff90581.png", + "aggregators": [ + "CoinMarketCap", + "Socket", + "Rubic", + "Squid", + "Rango", + "Sonarwatch" + ], + "occurrences": 6 + }, + "0x6dca182ac5e3f99985bc4ee0f726d6472ab1ec55": { + "address": "0x6dca182ac5e3f99985bc4ee0f726d6472ab1ec55", + "symbol": "USHI", + "decimals": 18, + "name": "Ushi", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x6dca182ac5e3f99985bc4ee0f726d6472ab1ec55.png", + "aggregators": [ + "CoinMarketCap", + "1inch", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 6 + }, + "0x614da3b37b6f66f7ce69b4bbbcf9a55ce6168707": { + "address": "0x614da3b37b6f66f7ce69b4bbbcf9a55ce6168707", + "symbol": "MMX", + "decimals": 18, + "name": "MMX", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x614da3b37b6f66f7ce69b4bbbcf9a55ce6168707.png", + "aggregators": [ + "CoinMarketCap", + "LiFi", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 6 + }, + "0x22b6c31c2beb8f2d0d5373146eed41ab9ede3caf": { + "address": "0x22b6c31c2beb8f2d0d5373146eed41ab9ede3caf", + "symbol": "COC", + "decimals": 8, + "name": "The Cocktailbar", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x22b6c31c2beb8f2d0d5373146eed41ab9ede3caf.png", + "aggregators": [ + "CoinMarketCap", + "LiFi", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 6 + }, + "0xe939f011a3d8fc0aa874c97e8156053a903d7176": { + "address": "0xe939f011a3d8fc0aa874c97e8156053a903d7176", + "symbol": "DOLZ", + "decimals": 18, + "name": "DOLZ io", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xe939f011a3d8fc0aa874c97e8156053a903d7176.png", + "aggregators": [ + "CoinMarketCap", + "LiFi", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 6 + }, + "0x900db999074d9277c5da2a43f252d74366230da0": { + "address": "0x900db999074d9277c5da2a43f252d74366230da0", + "symbol": "GIV", + "decimals": 18, + "name": "Giveth", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x900db999074d9277c5da2a43f252d74366230da0.png", + "aggregators": [ + "CoinMarketCap", + "LiFi", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 6 + }, + "0xb6ee9668771a79be7967ee29a63d4184f8097143": { + "address": "0xb6ee9668771a79be7967ee29a63d4184f8097143", + "symbol": "CXO", + "decimals": 18, + "name": "CargoX", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xb6ee9668771a79be7967ee29a63d4184f8097143.png", + "aggregators": [ + "CoinMarketCap", + "LiFi", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 6 + }, + "0x1cf4592ebffd730c7dc92c1bdffdfc3b9efcf29a": { + "address": "0x1cf4592ebffd730c7dc92c1bdffdfc3b9efcf29a", + "symbol": "WAVES", + "decimals": 18, + "name": "WAVES", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x1cf4592ebffd730c7dc92c1bdffdfc3b9efcf29a.png", + "aggregators": [ + "Metamask", + "Socket", + "Rubic", + "Rango", + "Sonarwatch", + "SushiSwap" + ], + "occurrences": 6 + }, + "0xfc82bb4ba86045af6f327323a46e80412b91b27d": { + "address": "0xfc82bb4ba86045af6f327323a46e80412b91b27d", + "symbol": "PROM", + "decimals": 18, + "name": "Prom", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xfc82bb4ba86045af6f327323a46e80412b91b27d.png", + "aggregators": [ + "CoinMarketCap", + "LiFi", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 6 + }, + "0x5e3346444010135322268a4630d2ed5f8d09446c": { + "address": "0x5e3346444010135322268a4630d2ed5f8d09446c", + "symbol": "LOC", + "decimals": 18, + "name": "LockTrip", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x5e3346444010135322268a4630d2ed5f8d09446c.png", + "aggregators": [ + "CoinMarketCap", + "LiFi", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 6 + }, + "0x58cb30368ceb2d194740b144eab4c2da8a917dcb": { + "address": "0x58cb30368ceb2d194740b144eab4c2da8a917dcb", + "symbol": "ZYN", + "decimals": 18, + "name": "ZynCoin", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x58cb30368ceb2d194740b144eab4c2da8a917dcb.png", + "aggregators": [ + "CoinMarketCap", + "Socket", + "Rubic", + "Squid", + "Rango", + "Sonarwatch" + ], + "occurrences": 6 + }, + "0x57b96d4af698605563a4653d882635da59bf11af": { + "address": "0x57b96d4af698605563a4653d882635da59bf11af", + "symbol": "RCH", + "decimals": 18, + "name": "RCH Token", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x57b96d4af698605563a4653d882635da59bf11af.png", + "aggregators": [ + "CoinMarketCap", + "Socket", + "Rubic", + "Squid", + "Rango", + "Sonarwatch" + ], + "occurrences": 6 + }, + "0xfa3e941d1f6b7b10ed84a0c211bfa8aee907965e": { + "address": "0xfa3e941d1f6b7b10ed84a0c211bfa8aee907965e", + "symbol": "HAY", + "decimals": 18, + "name": "HayCoin", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xfa3e941d1f6b7b10ed84a0c211bfa8aee907965e.png", + "aggregators": [ + "CoinMarketCap", + "LiFi", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 6 + }, + "0xd567b5f02b9073ad3a982a099a23bf019ff11d1c": { + "address": "0xd567b5f02b9073ad3a982a099a23bf019ff11d1c", + "symbol": "GAME", + "decimals": 5, + "name": "Gamestarter", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xd567b5f02b9073ad3a982a099a23bf019ff11d1c.png", + "aggregators": [ + "CoinMarketCap", + "LiFi", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 6 + }, + "0xf04af3f4e4929f7cd25a751e6149a3318373d4fe": { + "address": "0xf04af3f4e4929f7cd25a751e6149a3318373d4fe", + "symbol": "SPRING", + "decimals": 18, + "name": "Spring Token", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xf04af3f4e4929f7cd25a751e6149a3318373d4fe.png", + "aggregators": [ + "CoinMarketCap", + "LiFi", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 6 + }, + "0x5b649c07e7ba0a1c529deaabed0b47699919b4a2": { + "address": "0x5b649c07e7ba0a1c529deaabed0b47699919b4a2", + "symbol": "SGT", + "decimals": 8, + "name": "AI Avatar", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x5b649c07e7ba0a1c529deaabed0b47699919b4a2.png", + "aggregators": [ + "CoinMarketCap", + "LiFi", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 6 + }, + "0x6369c3dadfc00054a42ba8b2c09c48131dd4aa38": { + "address": "0x6369c3dadfc00054a42ba8b2c09c48131dd4aa38", + "symbol": "MPH", + "decimals": 18, + "name": "Morpher", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x6369c3dadfc00054a42ba8b2c09c48131dd4aa38.png", + "aggregators": [ + "CoinMarketCap", + "LiFi", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 6 + }, + "0xdc524e3c6910257744c1f93cf15e9f472b5bd236": { + "address": "0xdc524e3c6910257744c1f93cf15e9f472b5bd236", + "symbol": "WITCH", + "decimals": 18, + "name": "Witch Token", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xdc524e3c6910257744c1f93cf15e9f472b5bd236.png", + "aggregators": [ + "CoinMarketCap", + "LiFi", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 6 + }, + "0xadd39272e83895e7d3f244f696b7a25635f34234": { + "address": "0xadd39272e83895e7d3f244f696b7a25635f34234", + "symbol": "PEPU", + "decimals": 18, + "name": "Pepe Unchained", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xadd39272e83895e7d3f244f696b7a25635f34234.png", + "aggregators": [ + "CoinGecko", + "LiFi", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 6 + }, + "0x4d4f3715050571a447fffa2cd4cf091c7014ca5c": { + "address": "0x4d4f3715050571a447fffa2cd4cf091c7014ca5c", + "symbol": "SUMMER", + "decimals": 18, + "name": "Summer", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x4d4f3715050571a447fffa2cd4cf091c7014ca5c.png", + "aggregators": [ + "CoinMarketCap", + "LiFi", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 6 + }, + "0x421b05cf5ce28cb7347e73e2278e84472f0e4a88": { + "address": "0x421b05cf5ce28cb7347e73e2278e84472f0e4a88", + "symbol": "SEN", + "decimals": 18, + "name": "Sentio AI", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x421b05cf5ce28cb7347e73e2278e84472f0e4a88.png", + "aggregators": [ + "CoinMarketCap", + "LiFi", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 6 + }, + "0xd2ba23de8a19316a638dc1e7a9adda1d74233368": { + "address": "0xd2ba23de8a19316a638dc1e7a9adda1d74233368", + "symbol": "QUICK", + "decimals": 18, + "name": "QuickSwap", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xd2ba23de8a19316a638dc1e7a9adda1d74233368.png", + "aggregators": [ + "Metamask", + "LiFi", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 6 + }, + "0x2598c30330d5771ae9f983979209486ae26de875": { + "address": "0x2598c30330d5771ae9f983979209486ae26de875", + "symbol": "AI", + "decimals": 18, + "name": "Any Inu", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x2598c30330d5771ae9f983979209486ae26de875.png", + "aggregators": [ + "CoinMarketCap", + "Socket", + "Rubic", + "Squid", + "Rango", + "Sonarwatch" + ], + "occurrences": 6 + }, + "0x186ef81fd8e77eec8bffc3039e7ec41d5fc0b457": { + "address": "0x186ef81fd8e77eec8bffc3039e7ec41d5fc0b457", + "symbol": "INSP", + "decimals": 18, + "name": "Inspect", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x186ef81fd8e77eec8bffc3039e7ec41d5fc0b457.png", + "aggregators": [ + "CoinMarketCap", + "LiFi", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 6 + }, + "0xfd0205066521550d7d7ab19da8f72bb004b4c341": { + "address": "0xfd0205066521550d7d7ab19da8f72bb004b4c341", + "symbol": "LIT", + "decimals": 18, + "name": "Timeless", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xfd0205066521550d7d7ab19da8f72bb004b4c341.png", + "aggregators": [ + "CoinGecko", + "LiFi", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 6 + }, + "0xacd2c239012d17beb128b0944d49015104113650": { + "address": "0xacd2c239012d17beb128b0944d49015104113650", + "symbol": "KARRAT", + "decimals": 18, + "name": "Karrat", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xacd2c239012d17beb128b0944d49015104113650.png", + "aggregators": [ + "CoinMarketCap", + "LiFi", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 6 + }, + "0x249e38ea4102d0cf8264d3701f1a0e39c4f2dc3b": { + "address": "0x249e38ea4102d0cf8264d3701f1a0e39c4f2dc3b", + "symbol": "UFO", + "decimals": 18, + "name": "UFO Gaming", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x249e38ea4102d0cf8264d3701f1a0e39c4f2dc3b.png", + "aggregators": [ + "CoinMarketCap", + "1inch", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 6 + }, + "0x9343e24716659a3551eb10aff9472a2dcad5db2d": { + "address": "0x9343e24716659a3551eb10aff9472a2dcad5db2d", + "symbol": "STFX", + "decimals": 18, + "name": "STFX", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x9343e24716659a3551eb10aff9472a2dcad5db2d.png", + "aggregators": [ + "CoinMarketCap", + "LiFi", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 6 + }, + "0x02f92800f57bcd74066f5709f1daa1a4302df875": { + "address": "0x02f92800f57bcd74066f5709f1daa1a4302df875", + "symbol": "PEAS", + "decimals": 18, + "name": "Peapods Finance", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x02f92800f57bcd74066f5709f1daa1a4302df875.png", + "aggregators": [ + "CoinMarketCap", + "LiFi", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 6 + }, + "0x33333333fede34409fb7f67c6585047e1f653333": { + "address": "0x33333333fede34409fb7f67c6585047e1f653333", + "symbol": "ORA", + "decimals": 18, + "name": "ORA Coin", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x33333333fede34409fb7f67c6585047e1f653333.png", + "aggregators": [ + "CoinMarketCap", + "LiFi", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 6 + }, + "0xf0d33beda4d734c72684b5f9abbebf715d0a7935": { + "address": "0xf0d33beda4d734c72684b5f9abbebf715d0a7935", + "symbol": "NTX", + "decimals": 6, + "name": "NuNet", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xf0d33beda4d734c72684b5f9abbebf715d0a7935.png", + "aggregators": [ + "CoinMarketCap", + "1inch", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 6 + }, + "0x686f2404e77ab0d9070a46cdfb0b7fecdd2318b0": { + "address": "0x686f2404e77ab0d9070a46cdfb0b7fecdd2318b0", + "symbol": "LORDS", + "decimals": 18, + "name": "LORDS", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x686f2404e77ab0d9070a46cdfb0b7fecdd2318b0.png", + "aggregators": [ + "CoinMarketCap", + "LiFi", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 6 + }, + "0xd13cfd3133239a3c73a9e535a5c4dadee36b395c": { + "address": "0xd13cfd3133239a3c73a9e535a5c4dadee36b395c", + "symbol": "VAI", + "decimals": 18, + "name": "VAIOT", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xd13cfd3133239a3c73a9e535a5c4dadee36b395c.png", + "aggregators": [ + "CoinMarketCap", + "LiFi", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 6 + }, + "0xd807f7e2818db8eda0d28b5be74866338eaedb86": { + "address": "0xd807f7e2818db8eda0d28b5be74866338eaedb86", + "symbol": "JIM", + "decimals": 18, + "name": "jim", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xd807f7e2818db8eda0d28b5be74866338eaedb86.png", + "aggregators": [ + "CoinMarketCap", + "Socket", + "Rubic", + "Rango", + "Sonarwatch", + "SushiSwap" + ], + "occurrences": 6 + }, + "0x6e5970dbd6fc7eb1f29c6d2edf2bc4c36124c0c1": { + "address": "0x6e5970dbd6fc7eb1f29c6d2edf2bc4c36124c0c1", + "symbol": "TRADE", + "decimals": 18, + "name": "Polytrade", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x6e5970dbd6fc7eb1f29c6d2edf2bc4c36124c0c1.png", + "aggregators": [ + "CoinMarketCap", + "LiFi", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 6 + }, + "0x64d0f55cd8c7133a9d7102b13987235f486f2224": { + "address": "0x64d0f55cd8c7133a9d7102b13987235f486f2224", + "symbol": "BORG", + "decimals": 18, + "name": "SwissBorg", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x64d0f55cd8c7133a9d7102b13987235f486f2224.png", + "aggregators": [ + "CoinMarketCap", + "1inch", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 6 + }, + "0x644192291cc835a93d6330b24ea5f5fedd0eef9e": { + "address": "0x644192291cc835a93d6330b24ea5f5fedd0eef9e", + "symbol": "NXRA", + "decimals": 18, + "name": "Nexera", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x644192291cc835a93d6330b24ea5f5fedd0eef9e.png", + "aggregators": [ + "CoinMarketCap", + "LiFi", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 6 + }, + "0x2fb652314c3d850e9049057bbe9813f1eee882d3": { + "address": "0x2fb652314c3d850e9049057bbe9813f1eee882d3", + "symbol": "RVF", + "decimals": 18, + "name": "RocketX Exchange", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x2fb652314c3d850e9049057bbe9813f1eee882d3.png", + "aggregators": [ + "CoinMarketCap", + "LiFi", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 6 + }, + "0x738865301a9b7dd80dc3666dd48cf034ec42bdda": { + "address": "0x738865301a9b7dd80dc3666dd48cf034ec42bdda", + "symbol": "AGRS", + "decimals": 8, + "name": "Agoras Tau Net", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x738865301a9b7dd80dc3666dd48cf034ec42bdda.png", + "aggregators": [ + "CoinMarketCap", + "1inch", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 6 + }, + "0x2c974b2d0ba1716e644c1fc59982a89ddd2ff724": { + "address": "0x2c974b2d0ba1716e644c1fc59982a89ddd2ff724", + "symbol": "VIB", + "decimals": 18, + "name": "Vibe", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x2c974b2d0ba1716e644c1fc59982a89ddd2ff724.png", + "aggregators": [ + "CoinMarketCap", + "Socket", + "Rubic", + "Rango", + "Sonarwatch", + "Bancor" + ], + "occurrences": 6 + }, + "0xac3211a5025414af2866ff09c23fc18bc97e79b1": { + "address": "0xac3211a5025414af2866ff09c23fc18bc97e79b1", + "symbol": "DOV", + "decimals": 18, + "name": "Dovu OLD", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xac3211a5025414af2866ff09c23fc18bc97e79b1.png", + "aggregators": [ + "CoinMarketCap", + "1inch", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 6 + }, + "0xc690f7c7fcffa6a82b79fab7508c466fefdfc8c5": { + "address": "0xc690f7c7fcffa6a82b79fab7508c466fefdfc8c5", + "symbol": "LYM", + "decimals": 18, + "name": "Lympo", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xc690f7c7fcffa6a82b79fab7508c466fefdfc8c5.png", + "aggregators": [ + "CoinMarketCap", + "1inch", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 6 + }, + "0x765f0c16d1ddc279295c1a7c24b0883f62d33f75": { + "address": "0x765f0c16d1ddc279295c1a7c24b0883f62d33f75", + "symbol": "DTX", + "decimals": 18, + "name": "DaTa eXchange DTX", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x765f0c16d1ddc279295c1a7c24b0883f62d33f75.png", + "aggregators": [ + "CoinMarketCap", + "LiFi", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 6 + }, + "0x6226e00bcac68b0fe55583b90a1d727c14fab77f": { + "address": "0x6226e00bcac68b0fe55583b90a1d727c14fab77f", + "symbol": "MTV", + "decimals": 18, + "name": "MultiVAC", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x6226e00bcac68b0fe55583b90a1d727c14fab77f.png", + "aggregators": [ + "CoinMarketCap", + "LiFi", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 6 + }, + "0x04c17b9d3b29a78f7bd062a57cf44fc633e71f85": { + "address": "0x04c17b9d3b29a78f7bd062a57cf44fc633e71f85", + "symbol": "IMPT", + "decimals": 18, + "name": "IMPT", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x04c17b9d3b29a78f7bd062a57cf44fc633e71f85.png", + "aggregators": [ + "CoinMarketCap", + "LiFi", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 6 + }, + "0x83869de76b9ad8125e22b857f519f001588c0f62": { + "address": "0x83869de76b9ad8125e22b857f519f001588c0f62", + "symbol": "EXM", + "decimals": 8, + "name": "EXMO Coin", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x83869de76b9ad8125e22b857f519f001588c0f62.png", + "aggregators": [ + "CoinMarketCap", + "LiFi", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 6 + }, + "0x3301ee63fb29f863f2333bd4466acb46cd8323e6": { + "address": "0x3301ee63fb29f863f2333bd4466acb46cd8323e6", + "symbol": "AKITA", + "decimals": 18, + "name": "Akita Inu", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x3301ee63fb29f863f2333bd4466acb46cd8323e6.png", + "aggregators": [ + "CoinGecko", + "1inch", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 6 + }, + "0xa7de087329bfcda5639247f96140f9dabe3deed1": { + "address": "0xa7de087329bfcda5639247f96140f9dabe3deed1", + "symbol": "STA", + "decimals": 18, + "name": "Statera", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xa7de087329bfcda5639247f96140f9dabe3deed1.png", + "aggregators": [ + "CoinMarketCap", + "LiFi", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 6 + }, + "0xf65b5c5104c4fafd4b709d9d60a185eae063276c": { + "address": "0xf65b5c5104c4fafd4b709d9d60a185eae063276c", + "symbol": "TRU", + "decimals": 18, + "name": "Truebit Protocol", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xf65b5c5104c4fafd4b709d9d60a185eae063276c.png", + "aggregators": [ + "CoinMarketCap", + "LiFi", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 6 + }, + "0xb2617246d0c6c0087f18703d576831899ca94f01": { + "address": "0xb2617246d0c6c0087f18703d576831899ca94f01", + "symbol": "ZIG", + "decimals": 18, + "name": "ZIGChain", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xb2617246d0c6c0087f18703d576831899ca94f01.png", + "aggregators": [ + "CoinMarketCap", + "Socket", + "Rubic", + "Squid", + "Rango", + "Sonarwatch" + ], + "occurrences": 6 + }, + "0xc6dddb5bc6e61e0841c54f3e723ae1f3a807260b": { + "address": "0xc6dddb5bc6e61e0841c54f3e723ae1f3a807260b", + "symbol": "URUS", + "decimals": 18, + "name": "Aurox", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xc6dddb5bc6e61e0841c54f3e723ae1f3a807260b.png", + "aggregators": [ + "CoinMarketCap", + "1inch", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 6 + }, + "0x74232704659ef37c08995e386a2e26cc27a8d7b1": { + "address": "0x74232704659ef37c08995e386a2e26cc27a8d7b1", + "symbol": "STRK", + "decimals": 18, + "name": "Strike Token", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x74232704659ef37c08995e386a2e26cc27a8d7b1.png", + "aggregators": [ + "CoinMarketCap", + "Socket", + "Rubic", + "Rango", + "Sonarwatch", + "SushiSwap" + ], + "occurrences": 6 + }, + "0x9196e18bc349b1f64bc08784eae259525329a1ad": { + "address": "0x9196e18bc349b1f64bc08784eae259525329a1ad", + "symbol": "PUSSY", + "decimals": 18, + "name": "Pussy Financial", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x9196e18bc349b1f64bc08784eae259525329a1ad.png", + "aggregators": [ + "CoinMarketCap", + "Socket", + "Rubic", + "Squid", + "Rango", + "Sonarwatch" + ], + "occurrences": 6 + }, + "0xcda4e840411c00a614ad9205caec807c7458a0e3": { + "address": "0xcda4e840411c00a614ad9205caec807c7458a0e3", + "symbol": "UFI", + "decimals": 18, + "name": "PureFi", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xcda4e840411c00a614ad9205caec807c7458a0e3.png", + "aggregators": [ + "CoinMarketCap", + "LiFi", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 6 + }, + "0x20bc832ca081b91433ff6c17f85701b6e92486c5": { + "address": "0x20bc832ca081b91433ff6c17f85701b6e92486c5", + "symbol": "RETH2", + "decimals": 18, + "name": "rETH2", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x20bc832ca081b91433ff6c17f85701b6e92486c5.png", + "aggregators": [ + "CoinMarketCap", + "LiFi", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 6 + }, + "0x8e6cd950ad6ba651f6dd608dc70e5886b1aa6b24": { + "address": "0x8e6cd950ad6ba651f6dd608dc70e5886b1aa6b24", + "symbol": "STARL", + "decimals": 18, + "name": "StarLink", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x8e6cd950ad6ba651f6dd608dc70e5886b1aa6b24.png", + "aggregators": [ + "CoinMarketCap", + "1inch", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 6 + }, + "0x8db1d28ee0d822367af8d220c0dc7cb6fe9dc442": { + "address": "0x8db1d28ee0d822367af8d220c0dc7cb6fe9dc442", + "symbol": "ETHPAD", + "decimals": 18, + "name": "ETHPad", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x8db1d28ee0d822367af8d220c0dc7cb6fe9dc442.png", + "aggregators": [ + "CoinMarketCap", + "1inch", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 6 + }, + "0xa1a36d3537bbe375cc9694795f663ddc8d516db9": { + "address": "0xa1a36d3537bbe375cc9694795f663ddc8d516db9", + "symbol": "POLI", + "decimals": 18, + "name": "Polinate", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xa1a36d3537bbe375cc9694795f663ddc8d516db9.png", + "aggregators": [ + "CoinMarketCap", + "LiFi", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 6 + }, + "0xb26c4b3ca601136daf98593feaeff9e0ca702a8d": { + "address": "0xb26c4b3ca601136daf98593feaeff9e0ca702a8d", + "symbol": "ALD", + "decimals": 18, + "name": "Aladdin DAO", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xb26c4b3ca601136daf98593feaeff9e0ca702a8d.png", + "aggregators": [ + "CoinMarketCap", + "1inch", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 6 + }, + "0xd502f487e1841fdc805130e13eae80c61186bc98": { + "address": "0xd502f487e1841fdc805130e13eae80c61186bc98", + "symbol": "ITGR", + "decimals": 18, + "name": "Integral", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xd502f487e1841fdc805130e13eae80c61186bc98.png", + "aggregators": [ + "CoinMarketCap", + "LiFi", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 6 + }, + "0xe66747a101bff2dba3697199dcce5b743b454759": { + "address": "0xe66747a101bff2dba3697199dcce5b743b454759", + "symbol": "GT", + "decimals": 18, + "name": "Gate", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xe66747a101bff2dba3697199dcce5b743b454759.png", + "aggregators": [ + "CoinMarketCap", + "LiFi", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 6 + }, + "0x6100dd79fcaa88420750dcee3f735d168abcb771": { + "address": "0x6100dd79fcaa88420750dcee3f735d168abcb771", + "symbol": "OS", + "decimals": 18, + "name": "Ethereans", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x6100dd79fcaa88420750dcee3f735d168abcb771.png", + "aggregators": [ + "CoinMarketCap", + "LiFi", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 6 + }, + "0x710287d1d39dcf62094a83ebb3e736e79400068a": { + "address": "0x710287d1d39dcf62094a83ebb3e736e79400068a", + "symbol": "ENQAI", + "decimals": 18, + "name": "enqAI", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x710287d1d39dcf62094a83ebb3e736e79400068a.png", + "aggregators": [ + "CoinMarketCap", + "LiFi", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 6 + }, + "0x34be5b8c30ee4fde069dc878989686abe9884470": { + "address": "0x34be5b8c30ee4fde069dc878989686abe9884470", + "symbol": "SENATE", + "decimals": 18, + "name": "SENATE", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x34be5b8c30ee4fde069dc878989686abe9884470.png", + "aggregators": [ + "CoinMarketCap", + "LiFi", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 6 + }, + "0xc555d625828c4527d477e595ff1dd5801b4a600e": { + "address": "0xc555d625828c4527d477e595ff1dd5801b4a600e", + "symbol": "MON", + "decimals": 18, + "name": "MON", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xc555d625828c4527d477e595ff1dd5801b4a600e.png", + "aggregators": [ + "CoinMarketCap", + "LiFi", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 6 + }, + "0x5c1d9aa868a30795f92fae903edc9eff269044bf": { + "address": "0x5c1d9aa868a30795f92fae903edc9eff269044bf", + "symbol": "CNG", + "decimals": 18, + "name": "Changer", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x5c1d9aa868a30795f92fae903edc9eff269044bf.png", + "aggregators": [ + "CoinMarketCap", + "LiFi", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 6 + }, + "0x32b86b99441480a7e5bd3a26c124ec2373e3f015": { + "address": "0x32b86b99441480a7e5bd3a26c124ec2373e3f015", + "symbol": "BAD", + "decimals": 18, + "name": "Bad Idea AI", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x32b86b99441480a7e5bd3a26c124ec2373e3f015.png", + "aggregators": [ + "CoinMarketCap", + "1inch", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 6 + }, + "0xae41b275aaaf484b541a5881a2dded9515184cca": { + "address": "0xae41b275aaaf484b541a5881a2dded9515184cca", + "symbol": "CSWAP", + "decimals": 18, + "name": "ChainSwap", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xae41b275aaaf484b541a5881a2dded9515184cca.png", + "aggregators": [ + "CoinMarketCap", + "1inch", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 6 + }, + "0x777172d858dc1599914a1c4c6c9fc48c99a60990": { + "address": "0x777172d858dc1599914a1c4c6c9fc48c99a60990", + "symbol": "SOLID", + "decimals": 18, + "name": "Solidly", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x777172d858dc1599914a1c4c6c9fc48c99a60990.png", + "aggregators": [ + "CoinMarketCap", + "LiFi", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 6 + }, + "0xbcd4d5ac29e06e4973a1ddcd782cd035d04bc0b7": { + "address": "0xbcd4d5ac29e06e4973a1ddcd782cd035d04bc0b7", + "symbol": "QKNTL", + "decimals": 18, + "name": "Quick Intel", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xbcd4d5ac29e06e4973a1ddcd782cd035d04bc0b7.png", + "aggregators": [ + "CoinMarketCap", + "LiFi", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 6 + }, + "0xba386a4ca26b85fd057ab1ef86e3dc7bdeb5ce70": { + "address": "0xba386a4ca26b85fd057ab1ef86e3dc7bdeb5ce70", + "symbol": "JESUS", + "decimals": 18, + "name": "Jesus Coin", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xba386a4ca26b85fd057ab1ef86e3dc7bdeb5ce70.png", + "aggregators": [ + "CoinMarketCap", + "1inch", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 6 + }, + "0x955d5c14c8d4944da1ea7836bd44d54a8ec35ba1": { + "address": "0x955d5c14c8d4944da1ea7836bd44d54a8ec35ba1", + "symbol": "RFD", + "decimals": 18, + "name": "REFUND", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x955d5c14c8d4944da1ea7836bd44d54a8ec35ba1.png", + "aggregators": [ + "CoinMarketCap", + "Socket", + "Rubic", + "Rango", + "Sonarwatch", + "SushiSwap" + ], + "occurrences": 6 + }, + "0xd96e84ddbc7cbe1d73c55b6fe8c64f3a6550deea": { + "address": "0xd96e84ddbc7cbe1d73c55b6fe8c64f3a6550deea", + "symbol": "GMAC", + "decimals": 18, + "name": "Gemach", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xd96e84ddbc7cbe1d73c55b6fe8c64f3a6550deea.png", + "aggregators": [ + "CoinMarketCap", + "LiFi", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 6 + }, + "0xbe042e9d09cb588331ff911c2b46fd833a3e5bd6": { + "address": "0xbe042e9d09cb588331ff911c2b46fd833a3e5bd6", + "symbol": "PEPE", + "decimals": 18, + "name": "Pepe Community", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xbe042e9d09cb588331ff911c2b46fd833a3e5bd6.png", + "aggregators": [ + "Metamask", + "LiFi", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 6 + }, + "0x9ee8c380e1926730ad89e91665ff27063b13c90a": { + "address": "0x9ee8c380e1926730ad89e91665ff27063b13c90a", + "symbol": "CA", + "decimals": 18, + "name": "Coupon Assets", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x9ee8c380e1926730ad89e91665ff27063b13c90a.png", + "aggregators": [ + "CoinMarketCap", + "LiFi", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 6 + }, + "0xbef26bd568e421d6708cca55ad6e35f8bfa0c406": { + "address": "0xbef26bd568e421d6708cca55ad6e35f8bfa0c406", + "symbol": "BCUT", + "decimals": 18, + "name": "bitsCrunch Token", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xbef26bd568e421d6708cca55ad6e35f8bfa0c406.png", + "aggregators": [ + "CoinMarketCap", + "LiFi", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 6 + }, + "0x02d3a27ac3f55d5d91fb0f52759842696a864217": { + "address": "0x02d3a27ac3f55d5d91fb0f52759842696a864217", + "symbol": "IONX", + "decimals": 18, + "name": "Charged Particles", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x02d3a27ac3f55d5d91fb0f52759842696a864217.png", + "aggregators": [ + "CoinMarketCap", + "LiFi", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 6 + }, + "0x19062190b1925b5b6689d7073fdfc8c2976ef8cb": { + "address": "0x19062190b1925b5b6689d7073fdfc8c2976ef8cb", + "symbol": "BZZ", + "decimals": 16, + "name": "Swarm", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x19062190b1925b5b6689d7073fdfc8c2976ef8cb.png", + "aggregators": [ + "Metamask", + "LiFi", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 6 + }, + "0x8af78f0c818302164f73b2365fe152c2d1fe80e1": { + "address": "0x8af78f0c818302164f73b2365fe152c2d1fe80e1", + "symbol": "FNCT", + "decimals": 18, + "name": "Financie Token", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x8af78f0c818302164f73b2365fe152c2d1fe80e1.png", + "aggregators": [ + "CoinMarketCap", + "LiFi", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 6 + }, + "0x82a605d6d9114f4ad6d5ee461027477eeed31e34": { + "address": "0x82a605d6d9114f4ad6d5ee461027477eeed31e34", + "symbol": "SNSY", + "decimals": 18, + "name": "Sensay", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x82a605d6d9114f4ad6d5ee461027477eeed31e34.png", + "aggregators": [ + "CoinMarketCap", + "LiFi", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 6 + }, + "0xc28eb2250d1ae32c7e74cfb6d6b86afc9beb6509": { + "address": "0xc28eb2250d1ae32c7e74cfb6d6b86afc9beb6509", + "symbol": "OPN", + "decimals": 18, + "name": "OPEN Ticketing Ecosystem", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xc28eb2250d1ae32c7e74cfb6d6b86afc9beb6509.png", + "aggregators": [ + "CoinMarketCap", + "LiFi", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 6 + }, + "0x52a8845df664d76c69d2eea607cd793565af42b8": { + "address": "0x52a8845df664d76c69d2eea607cd793565af42b8", + "symbol": "APEX", + "decimals": 18, + "name": "ApeX", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x52a8845df664d76c69d2eea607cd793565af42b8.png", + "aggregators": [ + "CoinMarketCap", + "LiFi", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 6 + }, + "0xd1ba9bac957322d6e8c07a160a3a8da11a0d2867": { + "address": "0xd1ba9bac957322d6e8c07a160a3a8da11a0d2867", + "symbol": "HMT", + "decimals": 18, + "name": "HUMAN Protocol", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xd1ba9bac957322d6e8c07a160a3a8da11a0d2867.png", + "aggregators": [ + "CoinMarketCap", + "LiFi", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 6 + }, + "0x473f4068073cd5b2ab0e4cc8e146f9edc6fb52cc": { + "address": "0x473f4068073cd5b2ab0e4cc8e146f9edc6fb52cc", + "symbol": "NUT", + "decimals": 18, + "name": "NutCoin", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x473f4068073cd5b2ab0e4cc8e146f9edc6fb52cc.png", + "aggregators": [ + "CoinMarketCap", + "Socket", + "Rubic", + "Squid", + "Rango", + "Sonarwatch" + ], + "occurrences": 6 + }, + "0x623cd3a3edf080057892aaf8d773bbb7a5c9b6e9": { + "address": "0x623cd3a3edf080057892aaf8d773bbb7a5c9b6e9", + "symbol": "SKYA", + "decimals": 18, + "name": "Sekuya Multiverse", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x623cd3a3edf080057892aaf8d773bbb7a5c9b6e9.png", + "aggregators": [ + "CoinMarketCap", + "LiFi", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 6 + }, + "0xc96de26018a54d51c097160568752c4e3bd6c364": { + "address": "0xc96de26018a54d51c097160568752c4e3bd6c364", + "symbol": "FBTC", + "decimals": 8, + "name": "Function BTC", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xc96de26018a54d51c097160568752c4e3bd6c364.png", + "aggregators": [ + "CoinMarketCap", + "LiFi", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 6 + }, + "0xeeb4d8400aeefafc1b2953e0094134a887c76bd8": { + "address": "0xeeb4d8400aeefafc1b2953e0094134a887c76bd8", + "symbol": "AVAIL", + "decimals": 18, + "name": "Avail", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xeeb4d8400aeefafc1b2953e0094134a887c76bd8.png", + "aggregators": [ + "CoinMarketCap", + "LiFi", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 6 + }, + "0x20d4db1946859e2adb0e5acc2eac58047ad41395": { + "address": "0x20d4db1946859e2adb0e5acc2eac58047ad41395", + "symbol": "MOONEY", + "decimals": 18, + "name": "Moon DAO", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x20d4db1946859e2adb0e5acc2eac58047ad41395.png", + "aggregators": [ + "CoinMarketCap", + "LiFi", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 6 + }, + "0x569424c5ee13884a193773fdc5d1c5f79c443a51": { + "address": "0x569424c5ee13884a193773fdc5d1c5f79c443a51", + "symbol": "PINE", + "decimals": 18, + "name": "Pine", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x569424c5ee13884a193773fdc5d1c5f79c443a51.png", + "aggregators": [ + "CoinMarketCap", + "LiFi", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 6 + }, + "0x423352f2c6e0e72422b69af03aba259310146d90": { + "address": "0x423352f2c6e0e72422b69af03aba259310146d90", + "symbol": "RMV", + "decimals": 18, + "name": "Reality Metaverse", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x423352f2c6e0e72422b69af03aba259310146d90.png", + "aggregators": [ + "CoinMarketCap", + "LiFi", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 6 + }, + "0xb8647e90c0645152fccf4d9abb6b59eb4aa99052": { + "address": "0xb8647e90c0645152fccf4d9abb6b59eb4aa99052", + "symbol": "KEYFI", + "decimals": 18, + "name": "KeyFi", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xb8647e90c0645152fccf4d9abb6b59eb4aa99052.png", + "aggregators": [ + "CoinMarketCap", + "LiFi", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 6 + }, + "0x391cf4b21f557c935c7f670218ef42c21bd8d686": { + "address": "0x391cf4b21f557c935c7f670218ef42c21bd8d686", + "symbol": "XMW", + "decimals": 18, + "name": "Morphware", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x391cf4b21f557c935c7f670218ef42c21bd8d686.png", + "aggregators": [ + "CoinMarketCap", + "LiFi", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 6 + }, + "0x33f391f4c4fe802b70b77ae37670037a92114a7c": { + "address": "0x33f391f4c4fe802b70b77ae37670037a92114a7c", + "symbol": "BURP", + "decimals": 18, + "name": "Burp", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x33f391f4c4fe802b70b77ae37670037a92114a7c.png", + "aggregators": [ + "CoinMarketCap", + "LiFi", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 6 + }, + "0x5f0bc16d50f72d10b719dbf6845de2e599eb5624": { + "address": "0x5f0bc16d50f72d10b719dbf6845de2e599eb5624", + "symbol": "VENT", + "decimals": 18, + "name": "Vent Finance", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x5f0bc16d50f72d10b719dbf6845de2e599eb5624.png", + "aggregators": [ + "CoinMarketCap", + "LiFi", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 6 + }, + "0x4ec1b60b96193a64acae44778e51f7bff2007831": { + "address": "0x4ec1b60b96193a64acae44778e51f7bff2007831", + "symbol": "EDGE", + "decimals": 18, + "name": "Edge", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x4ec1b60b96193a64acae44778e51f7bff2007831.png", + "aggregators": [ + "CoinMarketCap", + "LiFi", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 6 + }, + "0x1095ae55b62174d9ea3bc6a4136acacad461d7ce": { + "address": "0x1095ae55b62174d9ea3bc6a4136acacad461d7ce", + "symbol": "ITHACA", + "decimals": 18, + "name": "Ithaca Protocol", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x1095ae55b62174d9ea3bc6a4136acacad461d7ce.png", + "aggregators": [ + "CoinMarketCap", + "Socket", + "Rubic", + "Squid", + "Rango", + "Sonarwatch" + ], + "occurrences": 6 + }, + "0xfe18ae03741a5b84e39c295ac9c856ed7991c38e": { + "address": "0xfe18ae03741a5b84e39c295ac9c856ed7991c38e", + "symbol": "CDCETH", + "decimals": 18, + "name": "Crypto com Staked ETH", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xfe18ae03741a5b84e39c295ac9c856ed7991c38e.png", + "aggregators": [ + "CoinMarketCap", + "1inch", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 6 + }, + "0x580e933d90091b9ce380740e3a4a39c67eb85b4c": { + "address": "0x580e933d90091b9ce380740e3a4a39c67eb85b4c", + "symbol": "GSWIFT", + "decimals": 18, + "name": "GameSwift", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x580e933d90091b9ce380740e3a4a39c67eb85b4c.png", + "aggregators": [ + "CoinMarketCap", + "LiFi", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 6 + }, + "0x39d5313c3750140e5042887413ba8aa6145a9bd2": { + "address": "0x39d5313c3750140e5042887413ba8aa6145a9bd2", + "symbol": "EMP", + "decimals": 18, + "name": "Empyreal", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x39d5313c3750140e5042887413ba8aa6145a9bd2.png", + "aggregators": [ + "CoinMarketCap", + "LiFi", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 6 + }, + "0x31e4efe290973ebe91b3a875a7994f650942d28f": { + "address": "0x31e4efe290973ebe91b3a875a7994f650942d28f", + "symbol": "SHRAP", + "decimals": 18, + "name": "Shrapnel", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x31e4efe290973ebe91b3a875a7994f650942d28f.png", + "aggregators": [ + "CoinMarketCap", + "LiFi", + "Socket", + "Rubic", + "Squid", + "Sonarwatch" + ], + "occurrences": 6 + }, + "0xa2c2c937333165d4c5f2dc5f31a43e1239fecfeb": { + "address": "0xa2c2c937333165d4c5f2dc5f31a43e1239fecfeb", + "symbol": "HERA", + "decimals": 18, + "name": "Hera Finance", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xa2c2c937333165d4c5f2dc5f31a43e1239fecfeb.png", + "aggregators": [ + "CoinMarketCap", + "LiFi", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 6 + }, + "0xcdb37a4fbc2da5b78aa4e41a432792f9533e85cc": { + "address": "0xcdb37a4fbc2da5b78aa4e41a432792f9533e85cc", + "symbol": "CDT", + "decimals": 18, + "name": "CheckDot", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xcdb37a4fbc2da5b78aa4e41a432792f9533e85cc.png", + "aggregators": [ + "CoinMarketCap", + "LiFi", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 6 + }, + "0x5fab9761d60419c9eeebe3915a8fa1ed7e8d2e1b": { + "address": "0x5fab9761d60419c9eeebe3915a8fa1ed7e8d2e1b", + "symbol": "DIMO", + "decimals": 18, + "name": "DIMO", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x5fab9761d60419c9eeebe3915a8fa1ed7e8d2e1b.png", + "aggregators": [ + "CoinMarketCap", + "LiFi", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 6 + }, + "0xb712d62fe84258292d1961b5150a19bc4ab49026": { + "address": "0xb712d62fe84258292d1961b5150a19bc4ab49026", + "symbol": "XCHNG", + "decimals": 18, + "name": "Chainge", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xb712d62fe84258292d1961b5150a19bc4ab49026.png", + "aggregators": [ + "CoinMarketCap", + "LiFi", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 6 + }, + "0xfe80d611c6403f70e5b1b9b722d2b3510b740b2b": { + "address": "0xfe80d611c6403f70e5b1b9b722d2b3510b740b2b", + "symbol": "EQB", + "decimals": 18, + "name": "Equilibria Finance", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xfe80d611c6403f70e5b1b9b722d2b3510b740b2b.png", + "aggregators": [ + "CoinMarketCap", + "LiFi", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 6 + }, + "0x9393fdc77090f31c7db989390d43f454b1a6e7f3": { + "address": "0x9393fdc77090f31c7db989390d43f454b1a6e7f3", + "symbol": "DEC", + "decimals": 3, + "name": "Dark Energy Crystals", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x9393fdc77090f31c7db989390d43f454b1a6e7f3.png", + "aggregators": [ + "CoinMarketCap", + "1inch", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 6 + }, + "0x8861cff2366c1128fd699b68304ad99a0764ef9a": { + "address": "0x8861cff2366c1128fd699b68304ad99a0764ef9a", + "symbol": "CYC", + "decimals": 18, + "name": "Cyclone Protocol", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x8861cff2366c1128fd699b68304ad99a0764ef9a.png", + "aggregators": [ + "CoinMarketCap", + "LiFi", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 6 + }, + "0xa693b19d2931d498c5b318df961919bb4aee87a5": { + "address": "0xa693b19d2931d498c5b318df961919bb4aee87a5", + "symbol": "UST", + "decimals": 6, + "name": "UST Token", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xa693b19d2931d498c5b318df961919bb4aee87a5.png", + "aggregators": [ + "Metamask", + "LiFi", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 6 + }, + "0x193f4a4a6ea24102f49b931deeeb931f6e32405d": { + "address": "0x193f4a4a6ea24102f49b931deeeb931f6e32405d", + "symbol": "TLOS", + "decimals": 18, + "name": "Telos", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x193f4a4a6ea24102f49b931deeeb931f6e32405d.png", + "aggregators": [ + "CoinMarketCap", + "LiFi", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 6 + }, + "0xee9801669c6138e84bd50deb500827b776777d28": { + "address": "0xee9801669c6138e84bd50deb500827b776777d28", + "symbol": "O3", + "decimals": 18, + "name": "O3 Swap", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xee9801669c6138e84bd50deb500827b776777d28.png", + "aggregators": [ + "CoinMarketCap", + "LiFi", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 6 + }, + "0xcf67815cce72e682eb4429eca46843bed81ca739": { + "address": "0xcf67815cce72e682eb4429eca46843bed81ca739", + "symbol": "G3", + "decimals": 18, + "name": "GAM3S GG", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xcf67815cce72e682eb4429eca46843bed81ca739.png", + "aggregators": [ + "CoinMarketCap", + "LiFi", + "Socket", + "Rubic", + "Squid", + "Sonarwatch" + ], + "occurrences": 6 + }, + "0x1416946162b1c2c871a73b07e932d2fb6c932069": { + "address": "0x1416946162b1c2c871a73b07e932d2fb6c932069", + "symbol": "NRG", + "decimals": 18, + "name": "Energi", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x1416946162b1c2c871a73b07e932d2fb6c932069.png", + "aggregators": [ + "Metamask", + "LiFi", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 6 + }, + "0xeeeeeb57642040be42185f49c52f7e9b38f8eeee": { + "address": "0xeeeeeb57642040be42185f49c52f7e9b38f8eeee", + "symbol": "ELK", + "decimals": 18, + "name": "Elk Finance", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xeeeeeb57642040be42185f49c52f7e9b38f8eeee.png", + "aggregators": [ + "CoinMarketCap", + "LiFi", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 6 + }, + "0x4563554284aa7148d6e6d0351519e954ba3b6e02": { + "address": "0x4563554284aa7148d6e6d0351519e954ba3b6e02", + "symbol": "RWA", + "decimals": 18, + "name": "Xend Finance", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x4563554284aa7148d6e6d0351519e954ba3b6e02.png", + "aggregators": [ + "CoinMarketCap", + "LiFi", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 6 + }, + "0x3be775b699fee916e7de117994358ff8f48e4569": { + "address": "0x3be775b699fee916e7de117994358ff8f48e4569", + "symbol": "VCNT", + "decimals": 18, + "name": "ViciCoin", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x3be775b699fee916e7de117994358ff8f48e4569.png", + "aggregators": [ + "CoinMarketCap", + "LiFi", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 6 + }, + "0xd3cc9d8f3689b83c91b7b59cab4946b063eb894a": { + "address": "0xd3cc9d8f3689b83c91b7b59cab4946b063eb894a", + "symbol": "XVS", + "decimals": 18, + "name": "Venus", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xd3cc9d8f3689b83c91b7b59cab4946b063eb894a.png", + "aggregators": [ + "CoinMarketCap", + "LiFi", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 6 + }, + "0x42d6622dece394b54999fbd73d108123806f6a18": { + "address": "0x42d6622dece394b54999fbd73d108123806f6a18", + "symbol": "SPANK", + "decimals": 18, + "name": "SPANK", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x42d6622dece394b54999fbd73d108123806f6a18.png", + "aggregators": [ + "Metamask", + "LiFi", + "Socket", + "Rubic", + "Rango", + "SushiSwap" + ], + "occurrences": 6 + }, + "0x3a1bda28adb5b0a812a7cf10a1950c920f79bcd3": { + "address": "0x3a1bda28adb5b0a812a7cf10a1950c920f79bcd3", + "symbol": "FLP", + "decimals": 18, + "name": "Gameflip", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x3a1bda28adb5b0a812a7cf10a1950c920f79bcd3.png", + "aggregators": [ + "CoinMarketCap", + "LiFi", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 6 + }, + "0x38a2fdc11f526ddd5a607c1f251c065f40fbf2f7": { + "address": "0x38a2fdc11f526ddd5a607c1f251c065f40fbf2f7", + "symbol": "PHNX", + "decimals": 18, + "name": "PhoenixDAO", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x38a2fdc11f526ddd5a607c1f251c065f40fbf2f7.png", + "aggregators": [ + "CoinMarketCap", + "LiFi", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 6 + }, + "0x7b123f53421b1bf8533339bfbdc7c98aa94163db": { + "address": "0x7b123f53421b1bf8533339bfbdc7c98aa94163db", + "symbol": "BUIDL", + "decimals": 18, + "name": "DFOhub", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x7b123f53421b1bf8533339bfbdc7c98aa94163db.png", + "aggregators": [ + "CoinMarketCap", + "LiFi", + "TrustWallet", + "Socket", + "Rubic", + "Rango" + ], + "occurrences": 6 + }, + "0x536381a8628dbcc8c70ac9a30a7258442eab4c92": { + "address": "0x536381a8628dbcc8c70ac9a30a7258442eab4c92", + "symbol": "PAN", + "decimals": 8, + "name": "Pantos Token ", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x536381a8628dbcc8c70ac9a30a7258442eab4c92.png", + "aggregators": [ + "Metamask", + "LiFi", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 6 + }, + "0x95172ccbe8344fecd73d0a30f54123652981bd6f": { + "address": "0x95172ccbe8344fecd73d0a30f54123652981bd6f", + "symbol": "LOCK", + "decimals": 18, + "name": "LOCK", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x95172ccbe8344fecd73d0a30f54123652981bd6f.png", + "aggregators": [ + "CoinMarketCap", + "1inch", + "LiFi", + "Socket", + "Rubic", + "Rango" + ], + "occurrences": 6 + }, + "0xfffffffff15abf397da76f1dcc1a1604f45126db": { + "address": "0xfffffffff15abf397da76f1dcc1a1604f45126db", + "symbol": "FSW", + "decimals": 18, + "name": "FalconSwap Token", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xfffffffff15abf397da76f1dcc1a1604f45126db.png", + "aggregators": [ + "CoinMarketCap", + "1inch", + "LiFi", + "TrustWallet", + "Rubic", + "Rango" + ], + "occurrences": 6 + }, + "0x68a3637ba6e75c0f66b61a42639c4e9fcd3d4824": { + "address": "0x68a3637ba6e75c0f66b61a42639c4e9fcd3d4824", + "symbol": "MOON", + "decimals": 18, + "name": "MoonToken", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x68a3637ba6e75c0f66b61a42639c4e9fcd3d4824.png", + "aggregators": [ + "CoinMarketCap", + "1inch", + "LiFi", + "Socket", + "Rubic", + "Rango" + ], + "occurrences": 6 + }, + "0x9d47894f8becb68b9cf3428d256311affe8b068b": { + "address": "0x9d47894f8becb68b9cf3428d256311affe8b068b", + "symbol": "$ROPE", + "decimals": 18, + "name": "$ROPE", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x9d47894f8becb68b9cf3428d256311affe8b068b.png", + "aggregators": [ + "CoinMarketCap", + "1inch", + "LiFi", + "Socket", + "Rubic", + "Rango" + ], + "occurrences": 6 + }, + "0x3383c5a8969dc413bfddc9656eb80a1408e4ba20": { + "address": "0x3383c5a8969dc413bfddc9656eb80a1408e4ba20", + "symbol": "WANATHA", + "decimals": 18, + "name": "Anatha", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x3383c5a8969dc413bfddc9656eb80a1408e4ba20.png", + "aggregators": [ + "CoinMarketCap", + "1inch", + "LiFi", + "TrustWallet", + "Rubic", + "Rango" + ], + "occurrences": 6 + }, + "0xcb0d82f4dfa503c9e3b8abc7a3caa01175b2da39": { + "address": "0xcb0d82f4dfa503c9e3b8abc7a3caa01175b2da39", + "symbol": "AX", + "decimals": 18, + "name": "AurusX", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xcb0d82f4dfa503c9e3b8abc7a3caa01175b2da39.png", + "aggregators": [ + "CoinMarketCap", + "LiFi", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 6 + }, + "0x00aba6fe5557de1a1d565658cbddddf7c710a1eb": { + "address": "0x00aba6fe5557de1a1d565658cbddddf7c710a1eb", + "symbol": "EZ", + "decimals": 18, + "name": "EasyFi V2", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x00aba6fe5557de1a1d565658cbddddf7c710a1eb.png", + "aggregators": [ + "CoinMarketCap", + "LiFi", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 6 + }, + "0x87edffde3e14c7a66c9b9724747a1c5696b742e6": { + "address": "0x87edffde3e14c7a66c9b9724747a1c5696b742e6", + "symbol": "SWAG", + "decimals": 18, + "name": "Swag Finance", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x87edffde3e14c7a66c9b9724747a1c5696b742e6.png", + "aggregators": [ + "CoinMarketCap", + "LiFi", + "Socket", + "Rubic", + "Rango", + "SushiSwap" + ], + "occurrences": 6 + }, + "0xa283aa7cfbb27ef0cfbcb2493dd9f4330e0fd304": { + "address": "0xa283aa7cfbb27ef0cfbcb2493dd9f4330e0fd304", + "symbol": "MM", + "decimals": 18, + "name": "MMToken", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xa283aa7cfbb27ef0cfbcb2493dd9f4330e0fd304.png", + "aggregators": [ + "CoinMarketCap", + "LiFi", + "Socket", + "Rubic", + "Rango", + "SushiSwap" + ], + "occurrences": 6 + }, + "0x4688a8b1f292fdab17e9a90c8bc379dc1dbd8713": { + "address": "0x4688a8b1f292fdab17e9a90c8bc379dc1dbd8713", + "symbol": "COVER", + "decimals": 18, + "name": "Cover Protocol", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x4688a8b1f292fdab17e9a90c8bc379dc1dbd8713.png", + "aggregators": [ + "CoinMarketCap", + "LiFi", + "Socket", + "Rubic", + "Rango", + "SushiSwap" + ], + "occurrences": 6 + }, + "0x3832d2f059e55934220881f831be501d180671a7": { + "address": "0x3832d2f059e55934220881f831be501d180671a7", + "symbol": "RENDOGE", + "decimals": 8, + "name": "renDOGE", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x3832d2f059e55934220881f831be501d180671a7.png", + "aggregators": [ + "CoinMarketCap", + "LiFi", + "Socket", + "Rubic", + "Rango", + "SushiSwap" + ], + "occurrences": 6 + }, + "0x8a40c222996f9f3431f63bf80244c36822060f12": { + "address": "0x8a40c222996f9f3431f63bf80244c36822060f12", + "symbol": "FXF", + "decimals": 18, + "name": "Finxflo", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x8a40c222996f9f3431f63bf80244c36822060f12.png", + "aggregators": [ + "CoinMarketCap", + "LiFi", + "TrustWallet", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 6 + }, + "0x9cea2ed9e47059260c97d697f82b8a14efa61ea5": { + "address": "0x9cea2ed9e47059260c97d697f82b8a14efa61ea5", + "symbol": "PUNK", + "decimals": 18, + "name": "Punk", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x9cea2ed9e47059260c97d697f82b8a14efa61ea5.png", + "aggregators": [ + "CoinMarketCap", + "LiFi", + "Socket", + "Rubic", + "Rango", + "SushiSwap" + ], + "occurrences": 6 + }, + "0x1fbd3df007eb8a7477a1eab2c63483dcc24effd6": { + "address": "0x1fbd3df007eb8a7477a1eab2c63483dcc24effd6", + "symbol": "SCA", + "decimals": 18, + "name": "Scaleswap", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x1fbd3df007eb8a7477a1eab2c63483dcc24effd6.png", + "aggregators": [ + "CoinMarketCap", + "LiFi", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 6 + }, + "0xb2dbf14d0b47ed3ba02bdb7c954e05a72deb7544": { + "address": "0xb2dbf14d0b47ed3ba02bdb7c954e05a72deb7544", + "symbol": "MOFI", + "decimals": 18, + "name": "MobiFi", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xb2dbf14d0b47ed3ba02bdb7c954e05a72deb7544.png", + "aggregators": [ + "CoinMarketCap", + "LiFi", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 6 + }, + "0xf938424f7210f31df2aee3011291b658f872e91e": { + "address": "0xf938424f7210f31df2aee3011291b658f872e91e", + "symbol": "VISR", + "decimals": 18, + "name": "VISOR", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xf938424f7210f31df2aee3011291b658f872e91e.png", + "aggregators": [ + "Metamask", + "LiFi", + "TrustWallet", + "Socket", + "Rubic", + "Rango" + ], + "occurrences": 6 + }, + "0x79126d32a86e6663f3aaac4527732d0701c1ae6c": { + "address": "0x79126d32a86e6663f3aaac4527732d0701c1ae6c", + "symbol": "DMT", + "decimals": 18, + "name": "Dark Matter", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x79126d32a86e6663f3aaac4527732d0701c1ae6c.png", + "aggregators": [ + "CoinMarketCap", + "LiFi", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 6 + }, + "0x69fa8e7f6bf1ca1fb0de61e1366f7412b827cc51": { + "address": "0x69fa8e7f6bf1ca1fb0de61e1366f7412b827cc51", + "symbol": "NRCH", + "decimals": 9, + "name": "Enreach", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x69fa8e7f6bf1ca1fb0de61e1366f7412b827cc51.png", + "aggregators": [ + "CoinMarketCap", + "1inch", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 6 + }, + "0xbc194e6f748a222754c3e8b9946922c09e7d4e91": { + "address": "0xbc194e6f748a222754c3e8b9946922c09e7d4e91", + "symbol": "LEV", + "decimals": 18, + "name": "Lever", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xbc194e6f748a222754c3e8b9946922c09e7d4e91.png", + "aggregators": [ + "CoinMarketCap", + "LiFi", + "Rubic", + "Rango", + "Sonarwatch", + "SushiSwap" + ], + "occurrences": 6 + }, + "0x6bb61215298f296c55b19ad842d3df69021da2ef": { + "address": "0x6bb61215298f296c55b19ad842d3df69021da2ef", + "symbol": "DOP", + "decimals": 18, + "name": "Drops Ownership Power", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x6bb61215298f296c55b19ad842d3df69021da2ef.png", + "aggregators": [ + "CoinMarketCap", + "LiFi", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 6 + }, + "0x42dbbd5ae373fea2fc320f62d44c058522bb3758": { + "address": "0x42dbbd5ae373fea2fc320f62d44c058522bb3758", + "symbol": "MEM", + "decimals": 18, + "name": "Memecoin", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x42dbbd5ae373fea2fc320f62d44c058522bb3758.png", + "aggregators": [ + "CoinMarketCap", + "LiFi", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 6 + }, + "0xa4cb0dce4849bdcad2d553e9e68644cf40e26cce": { + "address": "0xa4cb0dce4849bdcad2d553e9e68644cf40e26cce", + "symbol": "BAKED", + "decimals": 18, + "name": "Baked", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xa4cb0dce4849bdcad2d553e9e68644cf40e26cce.png", + "aggregators": [ + "CoinMarketCap", + "LiFi", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 6 + }, + "0xe9f84de264e91529af07fa2c746e934397810334": { + "address": "0xe9f84de264e91529af07fa2c746e934397810334", + "symbol": "SAK3", + "decimals": 18, + "name": "Sake", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xe9f84de264e91529af07fa2c746e934397810334.png", + "aggregators": [ + "CoinMarketCap", + "LiFi", + "Rubic", + "Squid", + "Rango", + "SushiSwap" + ], + "occurrences": 6 + }, + "0x0b63128c40737b13647552e0c926bcfeccc35f93": { + "address": "0x0b63128c40737b13647552e0c926bcfeccc35f93", + "symbol": "WLITI", + "decimals": 18, + "name": "wLitiCapital", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x0b63128c40737b13647552e0c926bcfeccc35f93.png", + "aggregators": [ + "CoinMarketCap", + "1inch", + "LiFi", + "Socket", + "Rubic", + "Rango" + ], + "occurrences": 6 + }, + "0xf32aa187d5bc16a2c02a6afb7df1459d0d107574": { + "address": "0xf32aa187d5bc16a2c02a6afb7df1459d0d107574", + "symbol": "INU", + "decimals": 18, + "name": "HachikoInu", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xf32aa187d5bc16a2c02a6afb7df1459d0d107574.png", + "aggregators": [ + "CoinMarketCap", + "1inch", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 6 + }, + "0x52662717e448be36cb54588499d5a8328bd95292": { + "address": "0x52662717e448be36cb54588499d5a8328bd95292", + "symbol": "TENSHI", + "decimals": 18, + "name": "Tenshi", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x52662717e448be36cb54588499d5a8328bd95292.png", + "aggregators": [ + "CoinMarketCap", + "1inch", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 6 + }, + "0x9cf98eb8a8b28c83e8612046cf55701ce3eb0063": { + "address": "0x9cf98eb8a8b28c83e8612046cf55701ce3eb0063", + "symbol": "UGT", + "decimals": 18, + "name": "Unreal Finance", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x9cf98eb8a8b28c83e8612046cf55701ce3eb0063.png", + "aggregators": [ + "CoinMarketCap", + "LiFi", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 6 + }, + "0x2610f0bfc21ef389fe4d03cfb7de9ac1e6c99d6e": { + "address": "0x2610f0bfc21ef389fe4d03cfb7de9ac1e6c99d6e", + "symbol": "SKYRIM", + "decimals": 18, + "name": "Skyrim Finance", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x2610f0bfc21ef389fe4d03cfb7de9ac1e6c99d6e.png", + "aggregators": [ + "CoinMarketCap", + "Socket", + "Rubic", + "Rango", + "Sonarwatch", + "SushiSwap" + ], + "occurrences": 6 + }, + "0x7ae1d57b58fa6411f32948314badd83583ee0e8c": { + "address": "0x7ae1d57b58fa6411f32948314badd83583ee0e8c", + "symbol": "PAPER", + "decimals": 18, + "name": "Dope World Paper", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x7ae1d57b58fa6411f32948314badd83583ee0e8c.png", + "aggregators": [ + "CoinMarketCap", + "LiFi", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 6 + }, + "0xc8d3dcb63c38607cb0c9d3f55e8ecce628a01c36": { + "address": "0xc8d3dcb63c38607cb0c9d3f55e8ecce628a01c36", + "symbol": "MATRIX", + "decimals": 18, + "name": "Matrix Labs", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xc8d3dcb63c38607cb0c9d3f55e8ecce628a01c36.png", + "aggregators": [ + "CoinMarketCap", + "LiFi", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 6 + }, + "0x60e683c6514edd5f758a55b6f393bebbafaa8d5e": { + "address": "0x60e683c6514edd5f758a55b6f393bebbafaa8d5e", + "symbol": "PAGE", + "decimals": 8, + "name": "Page", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x60e683c6514edd5f758a55b6f393bebbafaa8d5e.png", + "aggregators": [ + "CoinMarketCap", + "LiFi", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 6 + }, + "0x38d9eb07a7b8df7d86f440a4a5c4a4c1a27e1a08": { + "address": "0x38d9eb07a7b8df7d86f440a4a5c4a4c1a27e1a08", + "symbol": "BLXM", + "decimals": 18, + "name": "bloXmove", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x38d9eb07a7b8df7d86f440a4a5c4a4c1a27e1a08.png", + "aggregators": [ + "CoinMarketCap", + "LiFi", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 6 + }, + "0xf56408077487cb879c992909c5b5c66d68c02eb4": { + "address": "0xf56408077487cb879c992909c5b5c66d68c02eb4", + "symbol": "RIOT", + "decimals": 18, + "name": "Riot Racers", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xf56408077487cb879c992909c5b5c66d68c02eb4.png", + "aggregators": [ + "CoinMarketCap", + "LiFi", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 6 + }, + "0xda0c94c73d127ee191955fb46bacd7ff999b2bcd": { + "address": "0xda0c94c73d127ee191955fb46bacd7ff999b2bcd", + "symbol": "STANDARD", + "decimals": 18, + "name": "Stakeborg Standard", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xda0c94c73d127ee191955fb46bacd7ff999b2bcd.png", + "aggregators": [ + "CoinMarketCap", + "Socket", + "Rubic", + "Rango", + "Sonarwatch", + "SushiSwap" + ], + "occurrences": 6 + }, + "0xdac657ffd44a3b9d8aba8749830bf14beb66ff2d": { + "address": "0xdac657ffd44a3b9d8aba8749830bf14beb66ff2d", + "symbol": "HDAO", + "decimals": 18, + "name": "humanDAO", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xdac657ffd44a3b9d8aba8749830bf14beb66ff2d.png", + "aggregators": [ + "CoinMarketCap", + "LiFi", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 6 + }, + "0x3f5294df68f871241c4b18fcf78ebd8ac18ab654": { + "address": "0x3f5294df68f871241c4b18fcf78ebd8ac18ab654", + "symbol": "STZ", + "decimals": 18, + "name": "99Starz", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x3f5294df68f871241c4b18fcf78ebd8ac18ab654.png", + "aggregators": [ + "CoinMarketCap", + "Socket", + "Rubic", + "Rango", + "Sonarwatch", + "SushiSwap" + ], + "occurrences": 6 + }, + "0x43d4a3cd90ddd2f8f4f693170c9c8098163502ad": { + "address": "0x43d4a3cd90ddd2f8f4f693170c9c8098163502ad", + "symbol": "D2D", + "decimals": 18, + "name": "Prime", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x43d4a3cd90ddd2f8f4f693170c9c8098163502ad.png", + "aggregators": [ + "CoinMarketCap", + "LiFi", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 6 + }, + "0x7f3141c4d6b047fb930991b450f1ed996a51cb26": { + "address": "0x7f3141c4d6b047fb930991b450f1ed996a51cb26", + "symbol": "X", + "decimals": 18, + "name": "X", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x7f3141c4d6b047fb930991b450f1ed996a51cb26.png", + "aggregators": [ + "CoinMarketCap", + "Socket", + "Rubic", + "Rango", + "Sonarwatch", + "SushiSwap" + ], + "occurrences": 6 + }, + "0x6524b87960c2d573ae514fd4181777e7842435d4": { + "address": "0x6524b87960c2d573ae514fd4181777e7842435d4", + "symbol": "BZN", + "decimals": 18, + "name": "Benzene", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x6524b87960c2d573ae514fd4181777e7842435d4.png", + "aggregators": [ + "CoinMarketCap", + "LiFi", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 6 + }, + "0x3541a5c1b04adaba0b83f161747815cd7b1516bc": { + "address": "0x3541a5c1b04adaba0b83f161747815cd7b1516bc", + "symbol": "KNIGHT", + "decimals": 18, + "name": "CitaDAO", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x3541a5c1b04adaba0b83f161747815cd7b1516bc.png", + "aggregators": [ + "CoinMarketCap", + "1inch", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 6 + }, + "0xc55126051b22ebb829d00368f4b12bde432de5da": { + "address": "0xc55126051b22ebb829d00368f4b12bde432de5da", + "symbol": "BTRFLY", + "decimals": 18, + "name": "Redacted", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xc55126051b22ebb829d00368f4b12bde432de5da.png", + "aggregators": [ + "CoinMarketCap", + "LiFi", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 6 + }, + "0x1f7e5118521b550bb1a9b435727c003eb033fc51": { + "address": "0x1f7e5118521b550bb1a9b435727c003eb033fc51", + "symbol": "AGLA", + "decimals": 18, + "name": "Angola", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x1f7e5118521b550bb1a9b435727c003eb033fc51.png", + "aggregators": [ + "CoinMarketCap", + "LiFi", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 6 + }, + "0x45f93404ae1e4f0411a7f42bc6a5dc395792738d": { + "address": "0x45f93404ae1e4f0411a7f42bc6a5dc395792738d", + "symbol": "DGEN", + "decimals": 18, + "name": "DGEN", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x45f93404ae1e4f0411a7f42bc6a5dc395792738d.png", + "aggregators": [ + "CoinMarketCap", + "LiFi", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 6 + }, + "0xd8f1460044925d2d5c723c7054cd9247027415b7": { + "address": "0xd8f1460044925d2d5c723c7054cd9247027415b7", + "symbol": "SAIL", + "decimals": 18, + "name": "SAIL Token", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xd8f1460044925d2d5c723c7054cd9247027415b7.png", + "aggregators": [ + "CoinMarketCap", + "Socket", + "Rubic", + "Rango", + "Sonarwatch", + "SushiSwap" + ], + "occurrences": 6 + }, + "0x0000206329b97db379d5e1bf586bbdb969c63274": { + "address": "0x0000206329b97db379d5e1bf586bbdb969c63274", + "symbol": "USDA", + "decimals": 18, + "name": "USDA", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x0000206329b97db379d5e1bf586bbdb969c63274.png", + "aggregators": [ + "Metamask", + "LiFi", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 6 + }, + "0x06af07097c9eeb7fd685c692751d5c66db49c215": { + "address": "0x06af07097c9eeb7fd685c692751d5c66db49c215", + "symbol": "CHAI", + "decimals": 18, + "name": "Chai", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x06af07097c9eeb7fd685c692751d5c66db49c215.png", + "aggregators": [ + "Metamask", + "1inch", + "LiFi", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 6 + }, + "0xd01409314acb3b245cea9500ece3f6fd4d70ea30": { + "address": "0xd01409314acb3b245cea9500ece3f6fd4d70ea30", + "symbol": "LTO", + "decimals": 8, + "name": "LTO Network Token", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xd01409314acb3b245cea9500ece3f6fd4d70ea30.png", + "aggregators": [ + "Metamask", + "1inch", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 6 + }, + "0x7abc8a5768e6be61a6c693a6e4eacb5b60602c4d": { + "address": "0x7abc8a5768e6be61a6c693a6e4eacb5b60602c4d", + "symbol": "CXT", + "decimals": 18, + "name": "Covalent X Token", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x7abc8a5768e6be61a6c693a6e4eacb5b60602c4d.png", + "aggregators": [ + "CoinMarketCap", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x9c7beba8f6ef6643abd725e45a4e8387ef260649": { + "address": "0x9c7beba8f6ef6643abd725e45a4e8387ef260649", + "symbol": "G", + "decimals": 18, + "name": "Gravity by Galxe", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x9c7beba8f6ef6643abd725e45a4e8387ef260649.png", + "aggregators": [ + "CoinMarketCap", + "LiFi", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x23894dc9da6c94ecb439911caf7d337746575a72": { + "address": "0x23894dc9da6c94ecb439911caf7d337746575a72", + "symbol": "JAM", + "decimals": 18, + "name": "Geojam", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x23894dc9da6c94ecb439911caf7d337746575a72.png", + "aggregators": [ + "CoinMarketCap", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x96543ef8d2c75c26387c1a319ae69c0bee6f3fe7": { + "address": "0x96543ef8d2c75c26387c1a319ae69c0bee6f3fe7", + "symbol": "KUJI", + "decimals": 6, + "name": "Kujira", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x96543ef8d2c75c26387c1a319ae69c0bee6f3fe7.png", + "aggregators": [ + "CoinMarketCap", + "LiFi", + "Socket", + "Rubic", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0xd0a6053f087e87a25dc60701ba6e663b1a548e85": { + "address": "0xd0a6053f087e87a25dc60701ba6e663b1a548e85", + "symbol": "LRDS", + "decimals": 18, + "name": "BLOCKLORDS", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xd0a6053f087e87a25dc60701ba6e663b1a548e85.png", + "aggregators": [ + "CoinMarketCap", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0xf433089366899d83a9f26a773d59ec7ecf30355e": { + "address": "0xf433089366899d83a9f26a773d59ec7ecf30355e", + "symbol": "MTL", + "decimals": 8, + "name": "Metal", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xf433089366899d83a9f26a773d59ec7ecf30355e.png", + "aggregators": ["Metamask", "LiFi", "Rubic", "Rango", "Bancor"], + "occurrences": 5 + }, + "0x36e66fbbce51e4cd5bd3c62b637eb411b18949d4": { + "address": "0x36e66fbbce51e4cd5bd3c62b637eb411b18949d4", + "symbol": "OMNI", + "decimals": 18, + "name": "Omni Network", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x36e66fbbce51e4cd5bd3c62b637eb411b18949d4.png", + "aggregators": [ + "CoinMarketCap", + "1inch", + "Socket", + "Rubic", + "Rango" + ], + "occurrences": 5 + }, + "0x0d3cbed3f69ee050668adf3d9ea57241cba33a2b": { + "address": "0x0d3cbed3f69ee050668adf3d9ea57241cba33a2b", + "symbol": "PDA", + "decimals": 18, + "name": "PlayDapp", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x0d3cbed3f69ee050668adf3d9ea57241cba33a2b.png", + "aggregators": [ + "CoinMarketCap", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0xa4eed63db85311e22df4473f87ccfc3dadcfa3e3": { + "address": "0xa4eed63db85311e22df4473f87ccfc3dadcfa3e3", + "symbol": "RBC", + "decimals": 18, + "name": "Rubic", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xa4eed63db85311e22df4473f87ccfc3dadcfa3e3.png", + "aggregators": [ + "Metamask", + "LiFi", + "TrustWallet", + "Socket", + "Rango" + ], + "occurrences": 5 + }, + "0x006bea43baa3f7a6f765f14f10a1a1b08334ef45": { + "address": "0x006bea43baa3f7a6f765f14f10a1a1b08334ef45", + "symbol": "STX", + "decimals": 18, + "name": "Stox", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x006bea43baa3f7a6f765f14f10a1a1b08334ef45.png", + "aggregators": ["OpenSwap", "LiFi", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 5 + }, + "0x485d17a6f1b8780392d53d64751824253011a260": { + "address": "0x485d17a6f1b8780392d53d64751824253011a260", + "symbol": "TIME", + "decimals": 8, + "name": "chrono tech", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x485d17a6f1b8780392d53d64751824253011a260.png", + "aggregators": [ + "CoinMarketCap", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x70d2b7c19352bb76e4409858ff5746e500f2b67c": { + "address": "0x70d2b7c19352bb76e4409858ff5746e500f2b67c", + "symbol": "UPI", + "decimals": 18, + "name": "Pawtocol", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x70d2b7c19352bb76e4409858ff5746e500f2b67c.png", + "aggregators": [ + "OpenSwap", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0xed91879919b71bb6905f23af0a68d231ecf87b14": { + "address": "0xed91879919b71bb6905f23af0a68d231ecf87b14", + "symbol": "DMG", + "decimals": 18, + "name": "DMM: Governance", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xed91879919b71bb6905f23af0a68d231ecf87b14.png", + "aggregators": [ + "CoinMarketCap", + "LiFi", + "TrustWallet", + "Rubic", + "Rango" + ], + "occurrences": 5 + }, + "0xa3d58c4e56fedcae3a7c43a725aee9a71f0ece4e": { + "address": "0xa3d58c4e56fedcae3a7c43a725aee9a71f0ece4e", + "symbol": "MET", + "decimals": 18, + "name": "Metronome", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xa3d58c4e56fedcae3a7c43a725aee9a71f0ece4e.png", + "aggregators": ["Metamask", "LiFi", "Socket", "Rubic", "Rango"], + "occurrences": 5 + }, + "0x220b71671b649c03714da9c621285943f3cbcdc6": { + "address": "0x220b71671b649c03714da9c621285943f3cbcdc6", + "symbol": "DIS", + "decimals": 18, + "name": "TosDis", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x220b71671b649c03714da9c621285943f3cbcdc6.png", + "aggregators": [ + "CoinMarketCap", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x29ceddcf0da3c1d8068a7dfbd0fb06c2e438ff70": { + "address": "0x29ceddcf0da3c1d8068a7dfbd0fb06c2e438ff70", + "symbol": "FREL", + "decimals": 18, + "name": "Freela", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x29ceddcf0da3c1d8068a7dfbd0fb06c2e438ff70.png", + "aggregators": [ + "CoinMarketCap", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x4955f6641bf9c8c163604c321f4b36e988698f75": { + "address": "0x4955f6641bf9c8c163604c321f4b36e988698f75", + "symbol": "DOGECAST", + "decimals": 9, + "name": "Dogecast", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x4955f6641bf9c8c163604c321f4b36e988698f75.png", + "aggregators": [ + "CoinMarketCap", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0xda31d0d1bc934fc34f7189e38a413ca0a5e8b44f": { + "address": "0xda31d0d1bc934fc34f7189e38a413ca0a5e8b44f", + "symbol": "BSSB", + "decimals": 18, + "name": "BitStable Finance", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xda31d0d1bc934fc34f7189e38a413ca0a5e8b44f.png", + "aggregators": [ + "CoinMarketCap", + "LiFi", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x80ee5c641a8ffc607545219a3856562f56427fe9": { + "address": "0x80ee5c641a8ffc607545219a3856562f56427fe9", + "symbol": "BRETT", + "decimals": 9, + "name": "Brett ETH", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x80ee5c641a8ffc607545219a3856562f56427fe9.png", + "aggregators": [ + "CoinMarketCap", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x9dfad1b7102d46b1b197b90095b5c4e9f5845bba": { + "address": "0x9dfad1b7102d46b1b197b90095b5c4e9f5845bba", + "symbol": "BOTTO", + "decimals": 18, + "name": "Botto", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x9dfad1b7102d46b1b197b90095b5c4e9f5845bba.png", + "aggregators": [ + "CoinMarketCap", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x7d5121505149065b562c789a0145ed750e6e8cdd": { + "address": "0x7d5121505149065b562c789a0145ed750e6e8cdd", + "symbol": "VR", + "decimals": 18, + "name": "Victoria VR", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x7d5121505149065b562c789a0145ed750e6e8cdd.png", + "aggregators": [ + "CoinMarketCap", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0xeeee2a2e650697d2a8e8bc990c2f3d04203be06f": { + "address": "0xeeee2a2e650697d2a8e8bc990c2f3d04203be06f", + "symbol": "FP", + "decimals": 18, + "name": "Forgotten Playland", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xeeee2a2e650697d2a8e8bc990c2f3d04203be06f.png", + "aggregators": [ + "CoinMarketCap", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0xb9d4b6dc1e1ee3577cc442de015cc11f238b35ed": { + "address": "0xb9d4b6dc1e1ee3577cc442de015cc11f238b35ed", + "symbol": "MAG", + "decimals": 18, + "name": "Magnum", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xb9d4b6dc1e1ee3577cc442de015cc11f238b35ed.png", + "aggregators": [ + "CoinGecko", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x3a810ff7211b40c4fa76205a14efe161615d0385": { + "address": "0x3a810ff7211b40c4fa76205a14efe161615d0385", + "symbol": "AIN", + "decimals": 18, + "name": "AI Network", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x3a810ff7211b40c4fa76205a14efe161615d0385.png", + "aggregators": [ + "CoinMarketCap", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x910524678c0b1b23ffb9285a81f99c29c11cbaed": { + "address": "0x910524678c0b1b23ffb9285a81f99c29c11cbaed", + "symbol": "AZUKI", + "decimals": 18, + "name": "Azuki", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x910524678c0b1b23ffb9285a81f99c29c11cbaed.png", + "aggregators": [ + "CoinMarketCap", + "LiFi", + "Socket", + "Rubic", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x191557728e4d8caa4ac94f86af842148c0fa8f7e": { + "address": "0x191557728e4d8caa4ac94f86af842148c0fa8f7e", + "symbol": "ECO", + "decimals": 8, + "name": "Ormeus Ecosystem", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x191557728e4d8caa4ac94f86af842148c0fa8f7e.png", + "aggregators": [ + "CoinMarketCap", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x168e209d7b2f58f1f24b8ae7b7d35e662bbf11cc": { + "address": "0x168e209d7b2f58f1f24b8ae7b7d35e662bbf11cc", + "symbol": "LAI", + "decimals": 18, + "name": "LayerAI", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x168e209d7b2f58f1f24b8ae7b7d35e662bbf11cc.png", + "aggregators": [ + "CoinMarketCap", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x747e550a7b848ace786c3cfe754aa78febc8a022": { + "address": "0x747e550a7b848ace786c3cfe754aa78febc8a022", + "symbol": "DODO", + "decimals": 18, + "name": "DODO", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x747e550a7b848ace786c3cfe754aa78febc8a022.png", + "aggregators": [ + "CoinMarketCap", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x3e5d9d8a63cc8a88748f229999cf59487e90721e": { + "address": "0x3e5d9d8a63cc8a88748f229999cf59487e90721e", + "symbol": "XMT", + "decimals": 18, + "name": "MetalSwap", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x3e5d9d8a63cc8a88748f229999cf59487e90721e.png", + "aggregators": [ + "CoinMarketCap", + "LiFi", + "Socket", + "Rubic", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0xd528cf2e081f72908e086f8800977df826b5a483": { + "address": "0xd528cf2e081f72908e086f8800977df826b5a483", + "symbol": "PBX", + "decimals": 18, + "name": "Paribus", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xd528cf2e081f72908e086f8800977df826b5a483.png", + "aggregators": [ + "CoinMarketCap", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x1bbf25e71ec48b84d773809b4ba55b6f4be946fb": { + "address": "0x1bbf25e71ec48b84d773809b4ba55b6f4be946fb", + "symbol": "VOW", + "decimals": 18, + "name": "Vow", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x1bbf25e71ec48b84d773809b4ba55b6f4be946fb.png", + "aggregators": [ + "CoinMarketCap", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0xd2a08ff5f31d2f2d70c91960323c2ed31268ae25": { + "address": "0xd2a08ff5f31d2f2d70c91960323c2ed31268ae25", + "symbol": "NEOS", + "decimals": 18, + "name": "Neos ai", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xd2a08ff5f31d2f2d70c91960323c2ed31268ae25.png", + "aggregators": [ + "CoinMarketCap", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x1cc7047e15825f639e0752eb1b89e4225f5327f2": { + "address": "0x1cc7047e15825f639e0752eb1b89e4225f5327f2", + "symbol": "PLX", + "decimals": 18, + "name": "Pullix", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x1cc7047e15825f639e0752eb1b89e4225f5327f2.png", + "aggregators": [ + "CoinMarketCap", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x886c869cdc619214138c87f1db0ada522b16dfa3": { + "address": "0x886c869cdc619214138c87f1db0ada522b16dfa3", + "symbol": "WIF", + "decimals": 18, + "name": "WIF on ETH", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x886c869cdc619214138c87f1db0ada522b16dfa3.png", + "aggregators": [ + "CoinMarketCap", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0xe66b3aa360bb78468c00bebe163630269db3324f": { + "address": "0xe66b3aa360bb78468c00bebe163630269db3324f", + "symbol": "MTO", + "decimals": 18, + "name": "Merchant", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xe66b3aa360bb78468c00bebe163630269db3324f.png", + "aggregators": [ + "CoinMarketCap", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x1c4853ec0d55e420002c5efabc7ed8e0ba7a4121": { + "address": "0x1c4853ec0d55e420002c5efabc7ed8e0ba7a4121", + "symbol": "OKINAMI", + "decimals": 9, + "name": "Kanagawa Nami", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x1c4853ec0d55e420002c5efabc7ed8e0ba7a4121.png", + "aggregators": [ + "CoinMarketCap", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0xdc0327d50e6c73db2f8117760592c8bbf1cdcf38": { + "address": "0xdc0327d50e6c73db2f8117760592c8bbf1cdcf38", + "symbol": "STRNGR", + "decimals": 18, + "name": "Stronger", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xdc0327d50e6c73db2f8117760592c8bbf1cdcf38.png", + "aggregators": [ + "CoinMarketCap", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0xeb953eda0dc65e3246f43dc8fa13f35623bdd5ed": { + "address": "0xeb953eda0dc65e3246f43dc8fa13f35623bdd5ed", + "symbol": "RAINI", + "decimals": 18, + "name": "Raini", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xeb953eda0dc65e3246f43dc8fa13f35623bdd5ed.png", + "aggregators": [ + "CoinMarketCap", + "1inch", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0xcf078da6e85389de507ceede0e3d217e457b9d49": { + "address": "0xcf078da6e85389de507ceede0e3d217e457b9d49", + "symbol": "SKAI", + "decimals": 18, + "name": "Skillful AI", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xcf078da6e85389de507ceede0e3d217e457b9d49.png", + "aggregators": [ + "CoinMarketCap", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0xb56aaac80c931161548a49181c9e000a19489c44": { + "address": "0xb56aaac80c931161548a49181c9e000a19489c44", + "symbol": "ABDS", + "decimals": 18, + "name": "ABDS Token", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xb56aaac80c931161548a49181c9e000a19489c44.png", + "aggregators": [ + "CoinMarketCap", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0xc575bd129848ce06a460a19466c30e1d0328f52c": { + "address": "0xc575bd129848ce06a460a19466c30e1d0328f52c", + "symbol": "RAI", + "decimals": 18, + "name": "Reploy", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xc575bd129848ce06a460a19466c30e1d0328f52c.png", + "aggregators": [ + "CoinMarketCap", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0xce391315b414d4c7555956120461d21808a69f3a": { + "address": "0xce391315b414d4c7555956120461d21808a69f3a", + "symbol": "BAO", + "decimals": 18, + "name": "Bao Finance V2", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xce391315b414d4c7555956120461d21808a69f3a.png", + "aggregators": [ + "CoinMarketCap", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x3bd7d4f524d09f4e331577247a048d56e4b67a7f": { + "address": "0x3bd7d4f524d09f4e331577247a048d56e4b67a7f", + "symbol": "5IRE", + "decimals": 18, + "name": "5ire", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x3bd7d4f524d09f4e331577247a048d56e4b67a7f.png", + "aggregators": [ + "CoinMarketCap", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0xa0ef786bf476fe0810408caba05e536ac800ff86": { + "address": "0xa0ef786bf476fe0810408caba05e536ac800ff86", + "symbol": "MYRIA", + "decimals": 18, + "name": "Myria", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xa0ef786bf476fe0810408caba05e536ac800ff86.png", + "aggregators": [ + "CoinMarketCap", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x6bc08509b36a98e829dffad49fde5e412645d0a3": { + "address": "0x6bc08509b36a98e829dffad49fde5e412645d0a3", + "symbol": "WOOF", + "decimals": 18, + "name": "WoofWork io", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x6bc08509b36a98e829dffad49fde5e412645d0a3.png", + "aggregators": [ + "CoinMarketCap", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x86eab36585eddb7a949a0b4771ba733d942a8aa7": { + "address": "0x86eab36585eddb7a949a0b4771ba733d942a8aa7", + "symbol": "REDDIT", + "decimals": 9, + "name": "Reddit", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x86eab36585eddb7a949a0b4771ba733d942a8aa7.png", + "aggregators": [ + "CoinMarketCap", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x3819f64f282bf135d62168c1e513280daf905e06": { + "address": "0x3819f64f282bf135d62168c1e513280daf905e06", + "symbol": "HDRN", + "decimals": 9, + "name": "Hedron", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x3819f64f282bf135d62168c1e513280daf905e06.png", + "aggregators": [ + "CoinMarketCap", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x295b42684f90c77da7ea46336001010f2791ec8c": { + "address": "0x295b42684f90c77da7ea46336001010f2791ec8c", + "symbol": "XI", + "decimals": 18, + "name": "Xi", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x295b42684f90c77da7ea46336001010f2791ec8c.png", + "aggregators": [ + "CoinMarketCap", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x508e00d5cef397b02d260d035e5ee80775e4c821": { + "address": "0x508e00d5cef397b02d260d035e5ee80775e4c821", + "symbol": "1CAT", + "decimals": 18, + "name": "Bitcoin Cats", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x508e00d5cef397b02d260d035e5ee80775e4c821.png", + "aggregators": [ + "CoinMarketCap", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x4f7d2d728ce137dd01ec63ef7b225805c7b54575": { + "address": "0x4f7d2d728ce137dd01ec63ef7b225805c7b54575", + "symbol": "WALLY", + "decimals": 9, + "name": "Emotional Support Alligator", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x4f7d2d728ce137dd01ec63ef7b225805c7b54575.png", + "aggregators": [ + "CoinMarketCap", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x4dd942baa75810a3c1e876e79d5cd35e09c97a76": { + "address": "0x4dd942baa75810a3c1e876e79d5cd35e09c97a76", + "symbol": "D2T", + "decimals": 18, + "name": "Dash 2 Trade", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x4dd942baa75810a3c1e876e79d5cd35e09c97a76.png", + "aggregators": [ + "CoinMarketCap", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x808c16ace7404777fe24a6777a9cb2335aa82451": { + "address": "0x808c16ace7404777fe24a6777a9cb2335aa82451", + "symbol": "JOTCHUA", + "decimals": 18, + "name": "PERRO DINERO", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x808c16ace7404777fe24a6777a9cb2335aa82451.png", + "aggregators": [ + "CoinMarketCap", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0xd7b2c1a7f3c67fb0ea57a7ef29bc1f18d7be3195": { + "address": "0xd7b2c1a7f3c67fb0ea57a7ef29bc1f18d7be3195", + "symbol": "VMINT", + "decimals": 18, + "name": "VoluMint", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xd7b2c1a7f3c67fb0ea57a7ef29bc1f18d7be3195.png", + "aggregators": [ + "CoinMarketCap", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0xea7b7dc089c9a4a916b5a7a37617f59fd54e37e4": { + "address": "0xea7b7dc089c9a4a916b5a7a37617f59fd54e37e4", + "symbol": "HYPC", + "decimals": 6, + "name": "HyperCycle", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xea7b7dc089c9a4a916b5a7a37617f59fd54e37e4.png", + "aggregators": [ + "CoinMarketCap", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x9ff58067bd8d239000010c154c6983a325df138e": { + "address": "0x9ff58067bd8d239000010c154c6983a325df138e", + "symbol": "PROPC", + "decimals": 18, + "name": "Propchain", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x9ff58067bd8d239000010c154c6983a325df138e.png", + "aggregators": [ + "CoinMarketCap", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0xf477ac7719e2e659001455cdda0cc8f3ad10b604": { + "address": "0xf477ac7719e2e659001455cdda0cc8f3ad10b604", + "symbol": "AUTOS", + "decimals": 18, + "name": "CryptoAutos", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xf477ac7719e2e659001455cdda0cc8f3ad10b604.png", + "aggregators": [ + "CoinMarketCap", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0xd8e163967fed76806df0097b704ba721b9b37656": { + "address": "0xd8e163967fed76806df0097b704ba721b9b37656", + "symbol": "COPE", + "decimals": 18, + "name": "Cope", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xd8e163967fed76806df0097b704ba721b9b37656.png", + "aggregators": [ + "Metamask", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x176bc22e1855cd5cf5a840081c6c5b92b55e2210": { + "address": "0x176bc22e1855cd5cf5a840081c6c5b92b55e2210", + "symbol": "GBE", + "decimals": 18, + "name": "Gambex", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x176bc22e1855cd5cf5a840081c6c5b92b55e2210.png", + "aggregators": [ + "CoinMarketCap", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x14da230d6726c50f759bc1838717f8ce6373509c": { + "address": "0x14da230d6726c50f759bc1838717f8ce6373509c", + "symbol": "KAT", + "decimals": 18, + "name": "Kambria", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x14da230d6726c50f759bc1838717f8ce6373509c.png", + "aggregators": [ + "CoinMarketCap", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0xf4308b0263723b121056938c2172868e408079d0": { + "address": "0xf4308b0263723b121056938c2172868e408079d0", + "symbol": "CRYO", + "decimals": 18, + "name": "CryoDAO", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xf4308b0263723b121056938c2172868e408079d0.png", + "aggregators": [ + "CoinMarketCap", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0xed4e879087ebd0e8a77d66870012b5e0dffd0fa4": { + "address": "0xed4e879087ebd0e8a77d66870012b5e0dffd0fa4", + "symbol": "APX", + "decimals": 18, + "name": "AstroPepeX", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xed4e879087ebd0e8a77d66870012b5e0dffd0fa4.png", + "aggregators": [ + "CoinMarketCap", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x7076de6ff1d91e00be7e92458089c833de99e22e": { + "address": "0x7076de6ff1d91e00be7e92458089c833de99e22e", + "symbol": "BONE", + "decimals": 9, + "name": "FLEABONE", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x7076de6ff1d91e00be7e92458089c833de99e22e.png", + "aggregators": [ + "Metamask", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x73c6a7491d0db90bdb0060308cde0f49dfd1d0b0": { + "address": "0x73c6a7491d0db90bdb0060308cde0f49dfd1d0b0", + "symbol": "DOBO", + "decimals": 18, + "name": "DogeBonk", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x73c6a7491d0db90bdb0060308cde0f49dfd1d0b0.png", + "aggregators": [ + "CoinMarketCap", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0xfbd5fd3f85e9f4c5e8b40eec9f8b8ab1caaa146b": { + "address": "0xfbd5fd3f85e9f4c5e8b40eec9f8b8ab1caaa146b", + "symbol": "TREAT", + "decimals": 18, + "name": "Treat Token", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xfbd5fd3f85e9f4c5e8b40eec9f8b8ab1caaa146b.png", + "aggregators": [ + "CoinMarketCap", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x2de7b02ae3b1f11d51ca7b2495e9094874a064c0": { + "address": "0x2de7b02ae3b1f11d51ca7b2495e9094874a064c0", + "symbol": "SHIB2", + "decimals": 18, + "name": "SHIB2", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x2de7b02ae3b1f11d51ca7b2495e9094874a064c0.png", + "aggregators": [ + "CoinMarketCap", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0xff8c479134a18918059493243943150776cf8cf2": { + "address": "0xff8c479134a18918059493243943150776cf8cf2", + "symbol": "RENQ", + "decimals": 18, + "name": "Renq Finance", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xff8c479134a18918059493243943150776cf8cf2.png", + "aggregators": [ + "CoinMarketCap", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x20561172f791f915323241e885b4f7d5187c36e1": { + "address": "0x20561172f791f915323241e885b4f7d5187c36e1", + "symbol": "CAL", + "decimals": 18, + "name": "Calcium", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x20561172f791f915323241e885b4f7d5187c36e1.png", + "aggregators": [ + "CoinMarketCap", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x5aa158404fed6b4730c13f49d3a7f820e14a636f": { + "address": "0x5aa158404fed6b4730c13f49d3a7f820e14a636f", + "symbol": "ULX", + "decimals": 18, + "name": "ULTRON", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x5aa158404fed6b4730c13f49d3a7f820e14a636f.png", + "aggregators": [ + "CoinMarketCap", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x76e222b07c53d28b89b0bac18602810fc22b49a8": { + "address": "0x76e222b07c53d28b89b0bac18602810fc22b49a8", + "symbol": "JOE", + "decimals": 18, + "name": "Joe Coin", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x76e222b07c53d28b89b0bac18602810fc22b49a8.png", + "aggregators": [ + "CoinMarketCap", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x44971abf0251958492fee97da3e5c5ada88b9185": { + "address": "0x44971abf0251958492fee97da3e5c5ada88b9185", + "symbol": "BASEDAI", + "decimals": 18, + "name": "BasedAI", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x44971abf0251958492fee97da3e5c5ada88b9185.png", + "aggregators": [ + "CoinMarketCap", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0xd1f17b7a6bff962659ed608bcd6d318bb5fbb249": { + "address": "0xd1f17b7a6bff962659ed608bcd6d318bb5fbb249", + "symbol": "ZUZALU", + "decimals": 18, + "name": "Zuzalu Inu", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xd1f17b7a6bff962659ed608bcd6d318bb5fbb249.png", + "aggregators": [ + "CoinMarketCap", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0xa0dd6dd7775e93eb842db0aa142c9c581031ed3b": { + "address": "0xa0dd6dd7775e93eb842db0aa142c9c581031ed3b", + "symbol": "MND", + "decimals": 18, + "name": "Mind", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xa0dd6dd7775e93eb842db0aa142c9c581031ed3b.png", + "aggregators": [ + "CoinMarketCap", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x5de869e3e62b0fb2c15573246ba3bb3fd97a2275": { + "address": "0x5de869e3e62b0fb2c15573246ba3bb3fd97a2275", + "symbol": "SHEB", + "decimals": 18, + "name": "Sheboshis", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x5de869e3e62b0fb2c15573246ba3bb3fd97a2275.png", + "aggregators": [ + "CoinMarketCap", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x7163436b8efffb469f6bb81cc908b1661d4795e6": { + "address": "0x7163436b8efffb469f6bb81cc908b1661d4795e6", + "symbol": "ESCO", + "decimals": 18, + "name": "Esco coin", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x7163436b8efffb469f6bb81cc908b1661d4795e6.png", + "aggregators": [ + "Metamask", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0xed9f6aa6532869576211fd6367e3c328810fbeb3": { + "address": "0xed9f6aa6532869576211fd6367e3c328810fbeb3", + "symbol": "GPTPLUS", + "decimals": 18, + "name": "GPTPlus", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xed9f6aa6532869576211fd6367e3c328810fbeb3.png", + "aggregators": [ + "CoinMarketCap", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x8ab2ff0116a279a99950c66a12298962d152b83c": { + "address": "0x8ab2ff0116a279a99950c66a12298962d152b83c", + "symbol": "ORDS", + "decimals": 18, + "name": "Ordiswap", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x8ab2ff0116a279a99950c66a12298962d152b83c.png", + "aggregators": [ + "CoinMarketCap", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x8b9b95292f890df47fff5ac9cbe93d5fc242bd51": { + "address": "0x8b9b95292f890df47fff5ac9cbe93d5fc242bd51", + "symbol": "BEFI", + "decimals": 18, + "name": "BeFi Labs", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x8b9b95292f890df47fff5ac9cbe93d5fc242bd51.png", + "aggregators": [ + "CoinMarketCap", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x943af2ece93118b973c95c2f698ee9d15002e604": { + "address": "0x943af2ece93118b973c95c2f698ee9d15002e604", + "symbol": "DUEL", + "decimals": 18, + "name": "GameGPT", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x943af2ece93118b973c95c2f698ee9d15002e604.png", + "aggregators": [ + "CoinMarketCap", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x069d89974f4edabde69450f9cf5cf7d8cbd2568d": { + "address": "0x069d89974f4edabde69450f9cf5cf7d8cbd2568d", + "symbol": "BVM", + "decimals": 18, + "name": "BVM", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x069d89974f4edabde69450f9cf5cf7d8cbd2568d.png", + "aggregators": [ + "CoinMarketCap", + "LiFi", + "Socket", + "Rubic", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x944824290cc12f31ae18ef51216a223ba4063092": { + "address": "0x944824290cc12f31ae18ef51216a223ba4063092", + "symbol": "MASA", + "decimals": 18, + "name": "Masa", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x944824290cc12f31ae18ef51216a223ba4063092.png", + "aggregators": [ + "CoinMarketCap", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0xb8a87405d9a4f2f866319b77004e88dff66c0d92": { + "address": "0xb8a87405d9a4f2f866319b77004e88dff66c0d92", + "symbol": "SORA", + "decimals": 18, + "name": "Sora AI", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xb8a87405d9a4f2f866319b77004e88dff66c0d92.png", + "aggregators": [ + "CoinMarketCap", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x40a7df3df8b56147b781353d379cb960120211d7": { + "address": "0x40a7df3df8b56147b781353d379cb960120211d7", + "symbol": "MOBY", + "decimals": 18, + "name": "Moby", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x40a7df3df8b56147b781353d379cb960120211d7.png", + "aggregators": [ + "CoinMarketCap", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x1495bc9e44af1f8bcb62278d2bec4540cf0c05ea": { + "address": "0x1495bc9e44af1f8bcb62278d2bec4540cf0c05ea", + "symbol": "DEAI", + "decimals": 18, + "name": "Zero1 Labs", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x1495bc9e44af1f8bcb62278d2bec4540cf0c05ea.png", + "aggregators": [ + "CoinMarketCap", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x9fdfb933ee990955d3219d4f892fd1f786b47c9b": { + "address": "0x9fdfb933ee990955d3219d4f892fd1f786b47c9b", + "symbol": "MK", + "decimals": 18, + "name": "Meme Kombat", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x9fdfb933ee990955d3219d4f892fd1f786b47c9b.png", + "aggregators": [ + "CoinMarketCap", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x0a3bb08b3a15a19b4de82f8acfc862606fb69a2d": { + "address": "0x0a3bb08b3a15a19b4de82f8acfc862606fb69a2d", + "symbol": "IUSD", + "decimals": 18, + "name": "iZUMi Bond USD", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x0a3bb08b3a15a19b4de82f8acfc862606fb69a2d.png", + "aggregators": [ + "CoinMarketCap", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x69457a1c9ec492419344da01daf0df0e0369d5d0": { + "address": "0x69457a1c9ec492419344da01daf0df0e0369d5d0", + "symbol": "FJO", + "decimals": 18, + "name": "Fjord Foundry", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x69457a1c9ec492419344da01daf0df0e0369d5d0.png", + "aggregators": [ + "CoinMarketCap", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x25b4f5d4c314bcd5d7962734936c957b947cb7cf": { + "address": "0x25b4f5d4c314bcd5d7962734936c957b947cb7cf", + "symbol": "TGC", + "decimals": 18, + "name": "TG Casino", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x25b4f5d4c314bcd5d7962734936c957b947cb7cf.png", + "aggregators": [ + "CoinMarketCap", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x4bdcb66b968060d9390c1d12bd29734496205581": { + "address": "0x4bdcb66b968060d9390c1d12bd29734496205581", + "symbol": "ACQ", + "decimals": 18, + "name": "Acquire Fi", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x4bdcb66b968060d9390c1d12bd29734496205581.png", + "aggregators": [ + "CoinMarketCap", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x71da932ccda723ba3ab730c976bc66daaf9c598c": { + "address": "0x71da932ccda723ba3ab730c976bc66daaf9c598c", + "symbol": "MAG", + "decimals": 18, + "name": "Magnify Cash", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x71da932ccda723ba3ab730c976bc66daaf9c598c.png", + "aggregators": [ + "CoinMarketCap", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x9b4a69de6ca0defdd02c0c4ce6cb84de5202944e": { + "address": "0x9b4a69de6ca0defdd02c0c4ce6cb84de5202944e", + "symbol": "PROOF", + "decimals": 9, + "name": "PROOF Platform", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x9b4a69de6ca0defdd02c0c4ce6cb84de5202944e.png", + "aggregators": [ + "Metamask", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x6968676661ac9851c38907bdfcc22d5dd77b564d": { + "address": "0x6968676661ac9851c38907bdfcc22d5dd77b564d", + "symbol": "BOYSCLUB", + "decimals": 18, + "name": "Matt Furie s Boys Club", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x6968676661ac9851c38907bdfcc22d5dd77b564d.png", + "aggregators": [ + "CoinMarketCap", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0xa84f95eb3dabdc1bbd613709ef5f2fd42ce5be8d": { + "address": "0xa84f95eb3dabdc1bbd613709ef5f2fd42ce5be8d", + "symbol": "EAI", + "decimals": 18, + "name": "EternalAI", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xa84f95eb3dabdc1bbd613709ef5f2fd42ce5be8d.png", + "aggregators": [ + "CoinMarketCap", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x0a638f07acc6969abf392bb009f216d22adea36d": { + "address": "0x0a638f07acc6969abf392bb009f216d22adea36d", + "symbol": "BKN", + "decimals": 18, + "name": "Brickken", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x0a638f07acc6969abf392bb009f216d22adea36d.png", + "aggregators": [ + "CoinMarketCap", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x74950fc112473caba58193c6bf6412a6f1e4d7d2": { + "address": "0x74950fc112473caba58193c6bf6412a6f1e4d7d2", + "symbol": "WVTRS", + "decimals": 18, + "name": "Vitreus", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x74950fc112473caba58193c6bf6412a6f1e4d7d2.png", + "aggregators": [ + "CoinMarketCap", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0xcbde0453d4e7d748077c1b0ac2216c011dd2f406": { + "address": "0xcbde0453d4e7d748077c1b0ac2216c011dd2f406", + "symbol": "TERMINUS", + "decimals": 9, + "name": "Terminus", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xcbde0453d4e7d748077c1b0ac2216c011dd2f406.png", + "aggregators": [ + "CoinMarketCap", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x584a4dd38d28fd1ea0e147ba7b70aed29a37e335": { + "address": "0x584a4dd38d28fd1ea0e147ba7b70aed29a37e335", + "symbol": "BTCINU", + "decimals": 18, + "name": "Bitcoin Inu", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x584a4dd38d28fd1ea0e147ba7b70aed29a37e335.png", + "aggregators": [ + "CoinMarketCap", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0xb1c9d42fa4ba691efe21656a7e6953d999b990c4": { + "address": "0xb1c9d42fa4ba691efe21656a7e6953d999b990c4", + "symbol": "KANG", + "decimals": 18, + "name": "Kangamoon", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xb1c9d42fa4ba691efe21656a7e6953d999b990c4.png", + "aggregators": [ + "CoinMarketCap", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0xc55c2175e90a46602fd42e931f62b3acc1a013ca": { + "address": "0xc55c2175e90a46602fd42e931f62b3acc1a013ca", + "symbol": "STARS", + "decimals": 18, + "name": "Mogul Productions OLD", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xc55c2175e90a46602fd42e931f62b3acc1a013ca.png", + "aggregators": [ + "CoinMarketCap", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x8802269d1283cdb2a5a329649e5cb4cdcee91ab6": { + "address": "0x8802269d1283cdb2a5a329649e5cb4cdcee91ab6", + "symbol": "FIGHT", + "decimals": 9, + "name": "Fight to MAGA", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x8802269d1283cdb2a5a329649e5cb4cdcee91ab6.png", + "aggregators": [ + "CoinMarketCap", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x1e18821e69b9faa8e6e75dffe54e7e25754beda0": { + "address": "0x1e18821e69b9faa8e6e75dffe54e7e25754beda0", + "symbol": "KIMCHI", + "decimals": 18, + "name": "KIMCHI finance", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x1e18821e69b9faa8e6e75dffe54e7e25754beda0.png", + "aggregators": [ + "CoinMarketCap", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0xad5fdc8c3c18d50315331fca7f66efe5033f6c4c": { + "address": "0xad5fdc8c3c18d50315331fca7f66efe5033f6c4c", + "symbol": "CRAZY", + "decimals": 18, + "name": "Crazy Frog Coin", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xad5fdc8c3c18d50315331fca7f66efe5033f6c4c.png", + "aggregators": [ + "CoinMarketCap", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x236501327e701692a281934230af0b6be8df3353": { + "address": "0x236501327e701692a281934230af0b6be8df3353", + "symbol": "FLT", + "decimals": 18, + "name": "Fluence", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x236501327e701692a281934230af0b6be8df3353.png", + "aggregators": [ + "CoinMarketCap", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x225e5b78f289c6d7d7757ad2b9d23b6ab31a5eea": { + "address": "0x225e5b78f289c6d7d7757ad2b9d23b6ab31a5eea", + "symbol": "MAGATRUMP", + "decimals": 18, + "name": "MAGA Trump", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x225e5b78f289c6d7d7757ad2b9d23b6ab31a5eea.png", + "aggregators": [ + "CoinMarketCap", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x3802c218221390025bceabbad5d8c59f40eb74b8": { + "address": "0x3802c218221390025bceabbad5d8c59f40eb74b8", + "symbol": "GETH", + "decimals": 18, + "name": "Guarded Ether", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x3802c218221390025bceabbad5d8c59f40eb74b8.png", + "aggregators": [ + "CoinMarketCap", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x243cacb4d5ff6814ad668c3e225246efa886ad5a": { + "address": "0x243cacb4d5ff6814ad668c3e225246efa886ad5a", + "symbol": "SHI", + "decimals": 18, + "name": "Shina Inu", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x243cacb4d5ff6814ad668c3e225246efa886ad5a.png", + "aggregators": [ + "Metamask", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x8dd09822e83313adca54c75696ae80c5429697ff": { + "address": "0x8dd09822e83313adca54c75696ae80c5429697ff", + "symbol": "SIFU", + "decimals": 18, + "name": "Sifu Vision", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x8dd09822e83313adca54c75696ae80c5429697ff.png", + "aggregators": [ + "CoinMarketCap", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x69e15ab0fd240de689d09e4851181a6667968008": { + "address": "0x69e15ab0fd240de689d09e4851181a6667968008", + "symbol": "PEPE", + "decimals": 9, + "name": "El Sapo Pepe", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x69e15ab0fd240de689d09e4851181a6667968008.png", + "aggregators": [ + "CoinMarketCap", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x23fa3aa82858e7ad1f0f04352f4bb7f5e1bbfb68": { + "address": "0x23fa3aa82858e7ad1f0f04352f4bb7f5e1bbfb68", + "symbol": "FRIC", + "decimals": 18, + "name": "Frictionless", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x23fa3aa82858e7ad1f0f04352f4bb7f5e1bbfb68.png", + "aggregators": [ + "CoinMarketCap", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0xc0db17bc219c5ca8746c29ee47862ee3ad742f4a": { + "address": "0xc0db17bc219c5ca8746c29ee47862ee3ad742f4a", + "symbol": "SCOTTY", + "decimals": 18, + "name": "ScottyTheAi", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xc0db17bc219c5ca8746c29ee47862ee3ad742f4a.png", + "aggregators": [ + "CoinMarketCap", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x8be8c50e7d7acff6084899e71a6db085ff7134c8": { + "address": "0x8be8c50e7d7acff6084899e71a6db085ff7134c8", + "symbol": "OPSEC", + "decimals": 18, + "name": "OpSec", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x8be8c50e7d7acff6084899e71a6db085ff7134c8.png", + "aggregators": [ + "CoinMarketCap", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x2c06ba9e7f0daccbc1f6a33ea67e85bb68fbee3a": { + "address": "0x2c06ba9e7f0daccbc1f6a33ea67e85bb68fbee3a", + "symbol": "LENDS", + "decimals": 18, + "name": "Lends", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x2c06ba9e7f0daccbc1f6a33ea67e85bb68fbee3a.png", + "aggregators": [ + "CoinMarketCap", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0xd5fa38027462691769b8a8ba6c444890103b5b94": { + "address": "0xd5fa38027462691769b8a8ba6c444890103b5b94", + "symbol": "DAWG", + "decimals": 9, + "name": "Dawg Coin", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xd5fa38027462691769b8a8ba6c444890103b5b94.png", + "aggregators": [ + "CoinMarketCap", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x1a3a8cf347b2bf5890d3d6a1b981c4f4432c8661": { + "address": "0x1a3a8cf347b2bf5890d3d6a1b981c4f4432c8661", + "symbol": "FAC", + "decimals": 18, + "name": "Flying Avocado Cat", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x1a3a8cf347b2bf5890d3d6a1b981c4f4432c8661.png", + "aggregators": [ + "CoinMarketCap", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0xec9333e7dadeebf82d290d6cb12e66cc30ce46b0": { + "address": "0xec9333e7dadeebf82d290d6cb12e66cc30ce46b0", + "symbol": "LUSH", + "decimals": 18, + "name": "LushAI", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xec9333e7dadeebf82d290d6cb12e66cc30ce46b0.png", + "aggregators": [ + "CoinMarketCap", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x68b36248477277865c64dfc78884ef80577078f3": { + "address": "0x68b36248477277865c64dfc78884ef80577078f3", + "symbol": "HOLD", + "decimals": 18, + "name": "Everybody", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x68b36248477277865c64dfc78884ef80577078f3.png", + "aggregators": [ + "CoinMarketCap", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0xe9732d4b1e7d3789004ff029f032ba3034db059c": { + "address": "0xe9732d4b1e7d3789004ff029f032ba3034db059c", + "symbol": "PATRIOT", + "decimals": 18, + "name": "Patriot", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xe9732d4b1e7d3789004ff029f032ba3034db059c.png", + "aggregators": [ + "CoinMarketCap", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0xdc9cb148ecb70876db0abeb92f515a5e1dc9f580": { + "address": "0xdc9cb148ecb70876db0abeb92f515a5e1dc9f580", + "symbol": "GBTC", + "decimals": 18, + "name": "Green Bitcoin", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xdc9cb148ecb70876db0abeb92f515a5e1dc9f580.png", + "aggregators": [ + "CoinMarketCap", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0xab814ce69e15f6b9660a3b184c0b0c97b9394a6b": { + "address": "0xab814ce69e15f6b9660a3b184c0b0c97b9394a6b", + "symbol": "NEURON", + "decimals": 18, + "name": "Cerebrum DAO", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xab814ce69e15f6b9660a3b184c0b0c97b9394a6b.png", + "aggregators": [ + "CoinMarketCap", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0xd6203889c22d9fe5e938a9200f50fdffe9dd8e02": { + "address": "0xd6203889c22d9fe5e938a9200f50fdffe9dd8e02", + "symbol": "SBR", + "decimals": 9, + "name": "Strategic Bitcoin Reserve", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xd6203889c22d9fe5e938a9200f50fdffe9dd8e02.png", + "aggregators": [ + "CoinMarketCap", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x0000000000ca73a6df4c58b84c5b4b847fe8ff39": { + "address": "0x0000000000ca73a6df4c58b84c5b4b847fe8ff39", + "symbol": "ASTX", + "decimals": 18, + "name": "Asterix", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x0000000000ca73a6df4c58b84c5b4b847fe8ff39.png", + "aggregators": [ + "CoinMarketCap", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x669c01caf0edcad7c2b8dc771474ad937a7ca4af": { + "address": "0x669c01caf0edcad7c2b8dc771474ad937a7ca4af", + "symbol": "WMINIMA", + "decimals": 18, + "name": "Wrapped Minima", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x669c01caf0edcad7c2b8dc771474ad937a7ca4af.png", + "aggregators": [ + "CoinMarketCap", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x590f820444fa3638e022776752c5eef34e2f89a6": { + "address": "0x590f820444fa3638e022776752c5eef34e2f89a6", + "symbol": "ALPH", + "decimals": 18, + "name": "Alephium", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x590f820444fa3638e022776752c5eef34e2f89a6.png", + "aggregators": [ + "CoinMarketCap", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x728f30fa2f100742c7949d1961804fa8e0b1387d": { + "address": "0x728f30fa2f100742c7949d1961804fa8e0b1387d", + "symbol": "GHX", + "decimals": 18, + "name": "GamerCoin", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x728f30fa2f100742c7949d1961804fa8e0b1387d.png", + "aggregators": [ + "CoinMarketCap", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0xb36cf340a35f9860d0bb59afb0355580f0000dad": { + "address": "0xb36cf340a35f9860d0bb59afb0355580f0000dad", + "symbol": "PADRE", + "decimals": 18, + "name": "Padre", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xb36cf340a35f9860d0bb59afb0355580f0000dad.png", + "aggregators": [ + "CoinMarketCap", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x35d8949372d46b7a3d5a56006ae77b215fc69bc0": { + "address": "0x35d8949372d46b7a3d5a56006ae77b215fc69bc0", + "symbol": "USD0++", + "decimals": 18, + "name": "Staked USD0", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x35d8949372d46b7a3d5a56006ae77b215fc69bc0.png", + "aggregators": [ + "CoinMarketCap", + "1inch", + "LiFi", + "Rubic", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x48fd84c0dfc47f1b61ed6a86367895aaa6ad2a45": { + "address": "0x48fd84c0dfc47f1b61ed6a86367895aaa6ad2a45", + "symbol": "TWIN", + "decimals": 18, + "name": "Twin Protocol", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x48fd84c0dfc47f1b61ed6a86367895aaa6ad2a45.png", + "aggregators": [ + "CoinMarketCap", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x04f121600c8c47a754636fc9d75661a9525e05d5": { + "address": "0x04f121600c8c47a754636fc9d75661a9525e05d5", + "symbol": "STARS", + "decimals": 18, + "name": "STARS", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x04f121600c8c47a754636fc9d75661a9525e05d5.png", + "aggregators": [ + "CoinMarketCap", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0xf107edabf59ba696e38de62ad5327415bd4d4236": { + "address": "0xf107edabf59ba696e38de62ad5327415bd4d4236", + "symbol": "SLAP", + "decimals": 18, + "name": "CatSlap", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xf107edabf59ba696e38de62ad5327415bd4d4236.png", + "aggregators": [ + "CoinMarketCap", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x157a6df6b74f4e5e45af4e4615fde7b49225a662": { + "address": "0x157a6df6b74f4e5e45af4e4615fde7b49225a662", + "symbol": "ISLAND", + "decimals": 18, + "name": "ISLAND Token", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x157a6df6b74f4e5e45af4e4615fde7b49225a662.png", + "aggregators": [ + "CoinMarketCap", + "LiFi", + "Socket", + "Rubic", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x51cb253744189f11241becb29bedd3f1b5384fdb": { + "address": "0x51cb253744189f11241becb29bedd3f1b5384fdb", + "symbol": "DMTR", + "decimals": 18, + "name": "Dimitra", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x51cb253744189f11241becb29bedd3f1b5384fdb.png", + "aggregators": [ + "CoinMarketCap", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x5e3f09ab25548616b4b97f6163ff19cf6027930d": { + "address": "0x5e3f09ab25548616b4b97f6163ff19cf6027930d", + "symbol": "USACOIN", + "decimals": 9, + "name": "USAcoin", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x5e3f09ab25548616b4b97f6163ff19cf6027930d.png", + "aggregators": [ + "CoinMarketCap", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0xba41ddf06b7ffd89d1267b5a93bfef2424eb2003": { + "address": "0xba41ddf06b7ffd89d1267b5a93bfef2424eb2003", + "symbol": "MYTH", + "decimals": 18, + "name": "Mythos", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xba41ddf06b7ffd89d1267b5a93bfef2424eb2003.png", + "aggregators": [ + "CoinMarketCap", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0xa3d4bee77b05d4a0c943877558ce21a763c4fa29": { + "address": "0xa3d4bee77b05d4a0c943877558ce21a763c4fa29", + "symbol": "ROOT", + "decimals": 6, + "name": "The Root Network", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xa3d4bee77b05d4a0c943877558ce21a763c4fa29.png", + "aggregators": [ + "CoinMarketCap", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x9cdf242ef7975d8c68d5c1f5b6905801699b1940": { + "address": "0x9cdf242ef7975d8c68d5c1f5b6905801699b1940", + "symbol": "WHITE", + "decimals": 18, + "name": "WhiteRock", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x9cdf242ef7975d8c68d5c1f5b6905801699b1940.png", + "aggregators": [ + "CoinMarketCap", + "LiFi", + "Socket", + "Rubic", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x8248270620aa532e4d64316017be5e873e37cc09": { + "address": "0x8248270620aa532e4d64316017be5e873e37cc09", + "symbol": "DEVVE", + "decimals": 18, + "name": "DevvE", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x8248270620aa532e4d64316017be5e873e37cc09.png", + "aggregators": [ + "CoinMarketCap", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0xc4f6e93aeddc11dc22268488465babcaf09399ac": { + "address": "0xc4f6e93aeddc11dc22268488465babcaf09399ac", + "symbol": "HI", + "decimals": 18, + "name": "hi Dollar", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xc4f6e93aeddc11dc22268488465babcaf09399ac.png", + "aggregators": [ + "CoinMarketCap", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0xc2544a32872a91f4a553b404c6950e89de901fdb": { + "address": "0xc2544a32872a91f4a553b404c6950e89de901fdb", + "symbol": "FPIS", + "decimals": 18, + "name": "Frax Price Index Share", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xc2544a32872a91f4a553b404c6950e89de901fdb.png", + "aggregators": [ + "CoinMarketCap", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x94a8b4ee5cd64c79d0ee816f467ea73009f51aa0": { + "address": "0x94a8b4ee5cd64c79d0ee816f467ea73009f51aa0", + "symbol": "RIO", + "decimals": 18, + "name": "Realio Network Token", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x94a8b4ee5cd64c79d0ee816f467ea73009f51aa0.png", + "aggregators": [ + "CoinMarketCap", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x4e9fcd48af4738e3bf1382009dc1e93ebfce698f": { + "address": "0x4e9fcd48af4738e3bf1382009dc1e93ebfce698f", + "symbol": "TAONU", + "decimals": 18, + "name": "TAO INU", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x4e9fcd48af4738e3bf1382009dc1e93ebfce698f.png", + "aggregators": [ + "CoinMarketCap", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x761a3557184cbc07b7493da0661c41177b2f97fa": { + "address": "0x761a3557184cbc07b7493da0661c41177b2f97fa", + "symbol": "GROW", + "decimals": 18, + "name": "ValleyDAO", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x761a3557184cbc07b7493da0661c41177b2f97fa.png", + "aggregators": [ + "CoinMarketCap", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x8e0e57dcb1ce8d9091df38ec1bfc3b224529754a": { + "address": "0x8e0e57dcb1ce8d9091df38ec1bfc3b224529754a", + "symbol": "CAH", + "decimals": 18, + "name": "Moon Tropica", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x8e0e57dcb1ce8d9091df38ec1bfc3b224529754a.png", + "aggregators": [ + "CoinMarketCap", + "LiFi", + "Socket", + "Rubic", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x58aea10748a00d1781d6651f9d78a414ea32ca46": { + "address": "0x58aea10748a00d1781d6651f9d78a414ea32ca46", + "symbol": "VSG", + "decimals": 18, + "name": "Vector Smart Gas", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x58aea10748a00d1781d6651f9d78a414ea32ca46.png", + "aggregators": [ + "CoinGecko", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0xc666081073e8dff8d3d1c2292a29ae1a2153ec09": { + "address": "0xc666081073e8dff8d3d1c2292a29ae1a2153ec09", + "symbol": "DGTX", + "decimals": 18, + "name": "Digitex", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xc666081073e8dff8d3d1c2292a29ae1a2153ec09.png", + "aggregators": [ + "CoinMarketCap", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0xb17c88bda07d28b3838e0c1de6a30eafbcf52d85": { + "address": "0xb17c88bda07d28b3838e0c1de6a30eafbcf52d85", + "symbol": "SHFT", + "decimals": 18, + "name": "Shyft Network", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xb17c88bda07d28b3838e0c1de6a30eafbcf52d85.png", + "aggregators": [ + "CoinMarketCap", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x5f474906637bdcda05f29c74653f6962bb0f8eda": { + "address": "0x5f474906637bdcda05f29c74653f6962bb0f8eda", + "symbol": "DEFX", + "decimals": 18, + "name": "DeFinity", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x5f474906637bdcda05f29c74653f6962bb0f8eda.png", + "aggregators": [ + "CoinMarketCap", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0xd0929d411954c47438dc1d871dd6081f5c5e149c": { + "address": "0xd0929d411954c47438dc1d871dd6081f5c5e149c", + "symbol": "RFR", + "decimals": 4, + "name": "Refereum", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xd0929d411954c47438dc1d871dd6081f5c5e149c.png", + "aggregators": [ + "Metamask", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x01ff50f8b7f74e4f00580d9596cd3d0d6d6e326f": { + "address": "0x01ff50f8b7f74e4f00580d9596cd3d0d6d6e326f", + "symbol": "BFT", + "decimals": 18, + "name": "BnkToTheFuture", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x01ff50f8b7f74e4f00580d9596cd3d0d6d6e326f.png", + "aggregators": [ + "CoinMarketCap", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0xf1ca9cb74685755965c7458528a36934df52a3ef": { + "address": "0xf1ca9cb74685755965c7458528a36934df52a3ef", + "symbol": "AVINOC", + "decimals": 18, + "name": "AVINOC", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xf1ca9cb74685755965c7458528a36934df52a3ef.png", + "aggregators": [ + "CoinMarketCap", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0xe0c8b298db4cffe05d1bea0bb1ba414522b33c1b": { + "address": "0xe0c8b298db4cffe05d1bea0bb1ba414522b33c1b", + "symbol": "NCDT", + "decimals": 18, + "name": "nuco cloud", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xe0c8b298db4cffe05d1bea0bb1ba414522b33c1b.png", + "aggregators": [ + "CoinMarketCap", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x630d98424efe0ea27fb1b3ab7741907dffeaad78": { + "address": "0x630d98424efe0ea27fb1b3ab7741907dffeaad78", + "symbol": "PEAK", + "decimals": 8, + "name": "PEAKDEFI", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x630d98424efe0ea27fb1b3ab7741907dffeaad78.png", + "aggregators": [ + "CoinMarketCap", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x49e833337ece7afe375e44f4e3e8481029218e5c": { + "address": "0x49e833337ece7afe375e44f4e3e8481029218e5c", + "symbol": "VALUE", + "decimals": 18, + "name": "Value DeFi", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x49e833337ece7afe375e44f4e3e8481029218e5c.png", + "aggregators": [ + "CoinMarketCap", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x45080a6531d671ddff20db42f93792a489685e32": { + "address": "0x45080a6531d671ddff20db42f93792a489685e32", + "symbol": "FVT", + "decimals": 18, + "name": "Finance Vote", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x45080a6531d671ddff20db42f93792a489685e32.png", + "aggregators": [ + "CoinMarketCap", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0xaeb3607ec434454ceb308f5cd540875efb54309a": { + "address": "0xaeb3607ec434454ceb308f5cd540875efb54309a", + "symbol": "STRDY", + "decimals": 18, + "name": "Sturdy", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xaeb3607ec434454ceb308f5cd540875efb54309a.png", + "aggregators": [ + "CoinMarketCap", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x6e765d26388a17a6e86c49a8e41df3f58abcd337": { + "address": "0x6e765d26388a17a6e86c49a8e41df3f58abcd337", + "symbol": "KANGAL", + "decimals": 18, + "name": "Kangal", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x6e765d26388a17a6e86c49a8e41df3f58abcd337.png", + "aggregators": [ + "Metamask", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0xac5b038058bcd0424c9c252c6487c25f032e5ddc": { + "address": "0xac5b038058bcd0424c9c252c6487c25f032e5ddc", + "symbol": "AIEPK", + "decimals": 18, + "name": "EpiK Protocol", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xac5b038058bcd0424c9c252c6487c25f032e5ddc.png", + "aggregators": [ + "CoinMarketCap", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0xc8807f0f5ba3fa45ffbdc66928d71c5289249014": { + "address": "0xc8807f0f5ba3fa45ffbdc66928d71c5289249014", + "symbol": "ISP", + "decimals": 18, + "name": "Ispolink", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xc8807f0f5ba3fa45ffbdc66928d71c5289249014.png", + "aggregators": [ + "CoinMarketCap", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x80008bcd713c38af90a9930288d446bc3bd2e684": { + "address": "0x80008bcd713c38af90a9930288d446bc3bd2e684", + "symbol": "KARATE", + "decimals": 18, + "name": "Karate Combat", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x80008bcd713c38af90a9930288d446bc3bd2e684.png", + "aggregators": [ + "CoinMarketCap", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x2ba8349123de45e931a8c8264c332e6e9cf593f9": { + "address": "0x2ba8349123de45e931a8c8264c332e6e9cf593f9", + "symbol": "BCMC", + "decimals": 18, + "name": "Blockchain Monster Hunt", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x2ba8349123de45e931a8c8264c332e6e9cf593f9.png", + "aggregators": [ + "CoinMarketCap", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x772358ef6ed3e18bde1263f7d229601c5fa81875": { + "address": "0x772358ef6ed3e18bde1263f7d229601c5fa81875", + "symbol": "SNPAD", + "decimals": 18, + "name": "SNPad", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x772358ef6ed3e18bde1263f7d229601c5fa81875.png", + "aggregators": [ + "CoinMarketCap", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x4554cc10898f92d45378b98d6d6c2dd54c687fb2": { + "address": "0x4554cc10898f92d45378b98d6d6c2dd54c687fb2", + "symbol": "JBX", + "decimals": 18, + "name": "Juicebox", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x4554cc10898f92d45378b98d6d6c2dd54c687fb2.png", + "aggregators": [ + "CoinMarketCap", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x8fac8031e079f409135766c7d5de29cf22ef897c": { + "address": "0x8fac8031e079f409135766c7d5de29cf22ef897c", + "symbol": "HEART", + "decimals": 18, + "name": "Humans ai", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x8fac8031e079f409135766c7d5de29cf22ef897c.png", + "aggregators": [ + "CoinMarketCap", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x71fc1f555a39e0b698653ab0b475488ec3c34d57": { + "address": "0x71fc1f555a39e0b698653ab0b475488ec3c34d57", + "symbol": "RAIN", + "decimals": 18, + "name": "Rainmaker Games", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x71fc1f555a39e0b698653ab0b475488ec3c34d57.png", + "aggregators": [ + "CoinMarketCap", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x4da34f8264cb33a5c9f17081b9ef5ff6091116f4": { + "address": "0x4da34f8264cb33a5c9f17081b9ef5ff6091116f4", + "symbol": "ELFI", + "decimals": 18, + "name": "Elyfi", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x4da34f8264cb33a5c9f17081b9ef5ff6091116f4.png", + "aggregators": [ + "Metamask", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x4b5f49487ea7b3609b1ad05459be420548789f1f": { + "address": "0x4b5f49487ea7b3609b1ad05459be420548789f1f", + "symbol": "LEVER", + "decimals": 18, + "name": "LeverFi", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x4b5f49487ea7b3609b1ad05459be420548789f1f.png", + "aggregators": [ + "CoinMarketCap", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x94025780a1ab58868d9b2dbbb775f44b32e8e6e5": { + "address": "0x94025780a1ab58868d9b2dbbb775f44b32e8e6e5", + "symbol": "BETS", + "decimals": 18, + "name": "BetSwirl", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x94025780a1ab58868d9b2dbbb775f44b32e8e6e5.png", + "aggregators": [ + "CoinMarketCap", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x26ebb8213fb8d66156f1af8908d43f7e3e367c1d": { + "address": "0x26ebb8213fb8d66156f1af8908d43f7e3e367c1d", + "symbol": "RETIK", + "decimals": 18, + "name": "Retik Finance", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x26ebb8213fb8d66156f1af8908d43f7e3e367c1d.png", + "aggregators": [ + "CoinMarketCap", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0xfc1c93a2507975e98b9d0e9260ded61a00152bf1": { + "address": "0xfc1c93a2507975e98b9d0e9260ded61a00152bf1", + "symbol": "NAVI", + "decimals": 18, + "name": "Atlas Navi", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xfc1c93a2507975e98b9d0e9260ded61a00152bf1.png", + "aggregators": [ + "CoinMarketCap", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x4385328cc4d643ca98dfea734360c0f596c83449": { + "address": "0x4385328cc4d643ca98dfea734360c0f596c83449", + "symbol": "TOMI", + "decimals": 18, + "name": "TOMI", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x4385328cc4d643ca98dfea734360c0f596c83449.png", + "aggregators": [ + "CoinMarketCap", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0xa31b1767e09f842ecfd4bc471fe44f830e3891aa": { + "address": "0xa31b1767e09f842ecfd4bc471fe44f830e3891aa", + "symbol": "ROOBEE", + "decimals": 18, + "name": "ROOBEE", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xa31b1767e09f842ecfd4bc471fe44f830e3891aa.png", + "aggregators": [ + "Metamask", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0xe0151763455a8a021e64880c238ba1cff3787ff0": { + "address": "0xe0151763455a8a021e64880c238ba1cff3787ff0", + "symbol": "APED", + "decimals": 18, + "name": "Aped", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xe0151763455a8a021e64880c238ba1cff3787ff0.png", + "aggregators": [ + "CoinMarketCap", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0xa444ec96ee01bb219a44b285de47bf33c3447ad5": { + "address": "0xa444ec96ee01bb219a44b285de47bf33c3447ad5", + "symbol": "LEOX", + "decimals": 18, + "name": "LEOX", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xa444ec96ee01bb219a44b285de47bf33c3447ad5.png", + "aggregators": [ + "CoinMarketCap", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x2c95d751da37a5c1d9c5a7fd465c1d50f3d96160": { + "address": "0x2c95d751da37a5c1d9c5a7fd465c1d50f3d96160", + "symbol": "WASSIE", + "decimals": 18, + "name": "WASSIE", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x2c95d751da37a5c1d9c5a7fd465c1d50f3d96160.png", + "aggregators": [ + "Metamask", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0xe9572938bcbf08adcee86fd12a7c0d08dc4ab841": { + "address": "0xe9572938bcbf08adcee86fd12a7c0d08dc4ab841", + "symbol": "INS", + "decimals": 18, + "name": "Inscribe", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xe9572938bcbf08adcee86fd12a7c0d08dc4ab841.png", + "aggregators": [ + "CoinMarketCap", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0xd2bdaaf2b9cc6981fd273dcb7c04023bfbe0a7fe": { + "address": "0xd2bdaaf2b9cc6981fd273dcb7c04023bfbe0a7fe", + "symbol": "AVI", + "decimals": 18, + "name": "Aviator", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xd2bdaaf2b9cc6981fd273dcb7c04023bfbe0a7fe.png", + "aggregators": [ + "CoinMarketCap", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0xccccb68e1a848cbdb5b60a974e07aae143ed40c3": { + "address": "0xccccb68e1a848cbdb5b60a974e07aae143ed40c3", + "symbol": "TOPIA", + "decimals": 18, + "name": "TOPIA", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xccccb68e1a848cbdb5b60a974e07aae143ed40c3.png", + "aggregators": [ + "CoinMarketCap", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0xf9ca9523e5b5a42c3018c62b084db8543478c400": { + "address": "0xf9ca9523e5b5a42c3018c62b084db8543478c400", + "symbol": "LAKE", + "decimals": 18, + "name": "Data Lake", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xf9ca9523e5b5a42c3018c62b084db8543478c400.png", + "aggregators": [ + "CoinMarketCap", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x6bfdb6f4e65ead27118592a41eb927cea6956198": { + "address": "0x6bfdb6f4e65ead27118592a41eb927cea6956198", + "symbol": "FMC", + "decimals": 18, + "name": "FAME AI", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x6bfdb6f4e65ead27118592a41eb927cea6956198.png", + "aggregators": [ + "CoinMarketCap", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x96add417293a49e80f024734e96cfd8b355bcc14": { + "address": "0x96add417293a49e80f024734e96cfd8b355bcc14", + "symbol": "LILA", + "decimals": 18, + "name": "LiquidLayer", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x96add417293a49e80f024734e96cfd8b355bcc14.png", + "aggregators": [ + "CoinMarketCap", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x72fdc31f4a9a1edf6b6132d3c1754f1cdcf5d9b1": { + "address": "0x72fdc31f4a9a1edf6b6132d3c1754f1cdcf5d9b1", + "symbol": "QBX", + "decimals": 18, + "name": "QBX", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x72fdc31f4a9a1edf6b6132d3c1754f1cdcf5d9b1.png", + "aggregators": [ + "CoinMarketCap", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x0800394f6e23dd539929c8b77a3d45c96f76aefc": { + "address": "0x0800394f6e23dd539929c8b77a3d45c96f76aefc", + "symbol": "TURT", + "decimals": 18, + "name": "TurtSat", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x0800394f6e23dd539929c8b77a3d45c96f76aefc.png", + "aggregators": [ + "CoinMarketCap", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0xc434268603ca8854e0be1a3ff15cad73bd6ec49a": { + "address": "0xc434268603ca8854e0be1a3ff15cad73bd6ec49a", + "symbol": "ZAPI", + "decimals": 9, + "name": "Zapicorn", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xc434268603ca8854e0be1a3ff15cad73bd6ec49a.png", + "aggregators": [ + "CoinMarketCap", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x9e9fbde7c7a83c43913bddc8779158f1368f0413": { + "address": "0x9e9fbde7c7a83c43913bddc8779158f1368f0413", + "symbol": "PANDORA", + "decimals": 18, + "name": "Pandora", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x9e9fbde7c7a83c43913bddc8779158f1368f0413.png", + "aggregators": [ + "CoinMarketCap", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x777be1c6075c20184c4fd76344b7b0b7c858fe6b": { + "address": "0x777be1c6075c20184c4fd76344b7b0b7c858fe6b", + "symbol": "BAR", + "decimals": 18, + "name": "Gold Standard", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x777be1c6075c20184c4fd76344b7b0b7c858fe6b.png", + "aggregators": [ + "CoinMarketCap", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x4309e88d1d511f3764ee0f154cee98d783b61f09": { + "address": "0x4309e88d1d511f3764ee0f154cee98d783b61f09", + "symbol": "OCAI", + "decimals": 18, + "name": "Onchain AI", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x4309e88d1d511f3764ee0f154cee98d783b61f09.png", + "aggregators": [ + "CoinMarketCap", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x6b1a8f210ec6b7b6643cea3583fb0c079f367898": { + "address": "0x6b1a8f210ec6b7b6643cea3583fb0c079f367898", + "symbol": "BXX", + "decimals": 18, + "name": "Baanx", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x6b1a8f210ec6b7b6643cea3583fb0c079f367898.png", + "aggregators": [ + "CoinMarketCap", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0xd7f0cc50ad69408ae58be033f4f85d2367c2e468": { + "address": "0xd7f0cc50ad69408ae58be033f4f85d2367c2e468", + "symbol": "VERA", + "decimals": 18, + "name": "Vera", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xd7f0cc50ad69408ae58be033f4f85d2367c2e468.png", + "aggregators": [ + "CoinMarketCap", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x67466be17df832165f8c80a5a120ccc652bd7e69": { + "address": "0x67466be17df832165f8c80a5a120ccc652bd7e69", + "symbol": "WOLF", + "decimals": 18, + "name": "LandWolf", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x67466be17df832165f8c80a5a120ccc652bd7e69.png", + "aggregators": [ + "CoinMarketCap", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0xa059b81568fee88791de88232e838465826cf419": { + "address": "0xa059b81568fee88791de88232e838465826cf419", + "symbol": "THREE", + "decimals": 9, + "name": "THREE", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xa059b81568fee88791de88232e838465826cf419.png", + "aggregators": [ + "CoinMarketCap", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x90685e300a4c4532efcefe91202dfe1dfd572f47": { + "address": "0x90685e300a4c4532efcefe91202dfe1dfd572f47", + "symbol": "CTA", + "decimals": 18, + "name": "Cross The Ages", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x90685e300a4c4532efcefe91202dfe1dfd572f47.png", + "aggregators": [ + "CoinMarketCap", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0xe9689028ede16c2fdfe3d11855d28f8e3fc452a3": { + "address": "0xe9689028ede16c2fdfe3d11855d28f8e3fc452a3", + "symbol": "BUBBLE", + "decimals": 18, + "name": "Imaginary Ones", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xe9689028ede16c2fdfe3d11855d28f8e3fc452a3.png", + "aggregators": [ + "CoinMarketCap", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x9fd9278f04f01c6a39a9d1c1cd79f7782c6ade08": { + "address": "0x9fd9278f04f01c6a39a9d1c1cd79f7782c6ade08", + "symbol": "BIAO", + "decimals": 9, + "name": "Biaoqing", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x9fd9278f04f01c6a39a9d1c1cd79f7782c6ade08.png", + "aggregators": [ + "CoinMarketCap", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x3b991130eae3cca364406d718da22fa1c3e7c256": { + "address": "0x3b991130eae3cca364406d718da22fa1c3e7c256", + "symbol": "SHRUB", + "decimals": 18, + "name": "Shrub", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x3b991130eae3cca364406d718da22fa1c3e7c256.png", + "aggregators": [ + "CoinMarketCap", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x97aee01ed2aabad9f54692f94461ae761d225f17": { + "address": "0x97aee01ed2aabad9f54692f94461ae761d225f17", + "symbol": "DEGA", + "decimals": 18, + "name": "DEGA", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x97aee01ed2aabad9f54692f94461ae761d225f17.png", + "aggregators": [ + "CoinMarketCap", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x5484581038cbf8ef33b7f6daec7a2f01f71db3c2": { + "address": "0x5484581038cbf8ef33b7f6daec7a2f01f71db3c2", + "symbol": "HARAMBEAI", + "decimals": 18, + "name": "Harambe AI", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x5484581038cbf8ef33b7f6daec7a2f01f71db3c2.png", + "aggregators": [ + "CoinMarketCap", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0xcb76314c2540199f4b844d4ebbc7998c604880ca": { + "address": "0xcb76314c2540199f4b844d4ebbc7998c604880ca", + "symbol": "BERRY", + "decimals": 18, + "name": "Strawberry AI", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xcb76314c2540199f4b844d4ebbc7998c604880ca.png", + "aggregators": [ + "CoinMarketCap", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x393f1d49425d94f47b26e591a9d111df5cd61065": { + "address": "0x393f1d49425d94f47b26e591a9d111df5cd61065", + "symbol": "GUA", + "decimals": 18, + "name": "GUA", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x393f1d49425d94f47b26e591a9d111df5cd61065.png", + "aggregators": [ + "CoinMarketCap", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x6942040b6d25d6207e98f8e26c6101755d67ac89": { + "address": "0x6942040b6d25d6207e98f8e26c6101755d67ac89", + "symbol": "MELLOW", + "decimals": 9, + "name": "Mellow Man", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x6942040b6d25d6207e98f8e26c6101755d67ac89.png", + "aggregators": [ + "CoinMarketCap", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0xb72e76ccf005313868db7b48070901a44629da98": { + "address": "0xb72e76ccf005313868db7b48070901a44629da98", + "symbol": "SQGROW", + "decimals": 9, + "name": "SquidGrow", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xb72e76ccf005313868db7b48070901a44629da98.png", + "aggregators": [ + "CoinMarketCap", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0xf8206a19fca5999425358de4e4cdefc7f5c5d4ca": { + "address": "0xf8206a19fca5999425358de4e4cdefc7f5c5d4ca", + "symbol": "WIGL", + "decimals": 9, + "name": "Wigl", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xf8206a19fca5999425358de4e4cdefc7f5c5d4ca.png", + "aggregators": [ + "CoinMarketCap", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0xae6e307c3fe9e922e5674dbd7f830ed49c014c6b": { + "address": "0xae6e307c3fe9e922e5674dbd7f830ed49c014c6b", + "symbol": "CREDI", + "decimals": 18, + "name": "Credefi", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xae6e307c3fe9e922e5674dbd7f830ed49c014c6b.png", + "aggregators": [ + "CoinMarketCap", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x888c1a341ce9d9ae9c2d2a75a72a7f0d2551a2dc": { + "address": "0x888c1a341ce9d9ae9c2d2a75a72a7f0d2551a2dc", + "symbol": "CSI", + "decimals": 18, + "name": "CSI888", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x888c1a341ce9d9ae9c2d2a75a72a7f0d2551a2dc.png", + "aggregators": [ + "CoinMarketCap", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x4c44a8b7823b80161eb5e6d80c014024752607f2": { + "address": "0x4c44a8b7823b80161eb5e6d80c014024752607f2", + "symbol": "PAC", + "decimals": 9, + "name": "America Pac", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x4c44a8b7823b80161eb5e6d80c014024752607f2.png", + "aggregators": [ + "CoinMarketCap", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0xebb66a88cedd12bfe3a289df6dfee377f2963f12": { + "address": "0xebb66a88cedd12bfe3a289df6dfee377f2963f12", + "symbol": "OSCAR", + "decimals": 9, + "name": "OSCAR", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xebb66a88cedd12bfe3a289df6dfee377f2963f12.png", + "aggregators": [ + "CoinMarketCap", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0xebb1afb0a4ddc9b1f84d9aa72ff956cd1c1eb4be": { + "address": "0xebb1afb0a4ddc9b1f84d9aa72ff956cd1c1eb4be", + "symbol": "EMRLD", + "decimals": 18, + "name": "The Emerald Company", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xebb1afb0a4ddc9b1f84d9aa72ff956cd1c1eb4be.png", + "aggregators": [ + "CoinMarketCap", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x628a3b2e302c7e896acc432d2d0dd22b6cb9bc88": { + "address": "0x628a3b2e302c7e896acc432d2d0dd22b6cb9bc88", + "symbol": "LMWR", + "decimals": 18, + "name": "LimeWire", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x628a3b2e302c7e896acc432d2d0dd22b6cb9bc88.png", + "aggregators": [ + "CoinMarketCap", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x22514ffb0d7232a56f0c24090e7b68f179faa940": { + "address": "0x22514ffb0d7232a56f0c24090e7b68f179faa940", + "symbol": "QORPO", + "decimals": 18, + "name": "QORPO WORLD", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x22514ffb0d7232a56f0c24090e7b68f179faa940.png", + "aggregators": [ + "CoinMarketCap", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0xa849eaae994fb86afa73382e9bd88c2b6b18dc71": { + "address": "0xa849eaae994fb86afa73382e9bd88c2b6b18dc71", + "symbol": "MVL", + "decimals": 18, + "name": "Mass Vehicle Ledger", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xa849eaae994fb86afa73382e9bd88c2b6b18dc71.png", + "aggregators": [ + "Metamask", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x188e817b02e635d482ae4d81e25dda98a97c4a42": { + "address": "0x188e817b02e635d482ae4d81e25dda98a97c4a42", + "symbol": "LITH", + "decimals": 18, + "name": "Lithium Finance", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x188e817b02e635d482ae4d81e25dda98a97c4a42.png", + "aggregators": [ + "CoinMarketCap", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x423071774c43c0aaf4210b439e7cda8c797e2f26": { + "address": "0x423071774c43c0aaf4210b439e7cda8c797e2f26", + "symbol": "GALAXIS", + "decimals": 18, + "name": "GALAXIS Token", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x423071774c43c0aaf4210b439e7cda8c797e2f26.png", + "aggregators": [ + "CoinMarketCap", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x764a726d9ced0433a8d7643335919deb03a9a935": { + "address": "0x764a726d9ced0433a8d7643335919deb03a9a935", + "symbol": "POKT", + "decimals": 6, + "name": "Pocket Network", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x764a726d9ced0433a8d7643335919deb03a9a935.png", + "aggregators": [ + "Metamask", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x0921799cb1d702148131024d18fcde022129dc73": { + "address": "0x0921799cb1d702148131024d18fcde022129dc73", + "symbol": "LL", + "decimals": 18, + "name": "LightLink", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x0921799cb1d702148131024d18fcde022129dc73.png", + "aggregators": [ + "CoinMarketCap", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x73fbd93bfda83b111ddc092aa3a4ca77fd30d380": { + "address": "0x73fbd93bfda83b111ddc092aa3a4ca77fd30d380", + "symbol": "SOPH", + "decimals": 18, + "name": "SophiaVerse", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x73fbd93bfda83b111ddc092aa3a4ca77fd30d380.png", + "aggregators": [ + "CoinMarketCap", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x25931894a86d47441213199621f1f2994e1c39aa": { + "address": "0x25931894a86d47441213199621f1f2994e1c39aa", + "symbol": "CGPT", + "decimals": 18, + "name": "ChainGPT", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x25931894a86d47441213199621f1f2994e1c39aa.png", + "aggregators": [ + "CoinMarketCap", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x6b66ccd1340c479b07b390d326eadcbb84e726ba": { + "address": "0x6b66ccd1340c479b07b390d326eadcbb84e726ba", + "symbol": "SEAM", + "decimals": 18, + "name": "Seamless Protocol", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x6b66ccd1340c479b07b390d326eadcbb84e726ba.png", + "aggregators": [ + "CoinMarketCap", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0xd101dcc414f310268c37eeb4cd376ccfa507f571": { + "address": "0xd101dcc414f310268c37eeb4cd376ccfa507f571", + "symbol": "RSC", + "decimals": 18, + "name": "ResearchCoin", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xd101dcc414f310268c37eeb4cd376ccfa507f571.png", + "aggregators": [ + "CoinMarketCap", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x051fb509e4a775fabd257611eea1efaed8f91359": { + "address": "0x051fb509e4a775fabd257611eea1efaed8f91359", + "symbol": "CATE", + "decimals": 9, + "name": "CateCoin", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x051fb509e4a775fabd257611eea1efaed8f91359.png", + "aggregators": [ + "CoinGecko", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x186d0ba3dfc3386c464eecd96a61fbb1e2da00bf": { + "address": "0x186d0ba3dfc3386c464eecd96a61fbb1e2da00bf", + "symbol": "TRAVA", + "decimals": 18, + "name": "Trava Finance", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x186d0ba3dfc3386c464eecd96a61fbb1e2da00bf.png", + "aggregators": [ + "CoinMarketCap", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0xbe03e60757f21f4b6fc8f16676ad9d5b1002e512": { + "address": "0xbe03e60757f21f4b6fc8f16676ad9d5b1002e512", + "symbol": "RST", + "decimals": 18, + "name": "Raini Studios Token", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xbe03e60757f21f4b6fc8f16676ad9d5b1002e512.png", + "aggregators": [ + "CoinMarketCap", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x7b4328c127b85369d9f82ca0503b000d09cf9180": { + "address": "0x7b4328c127b85369d9f82ca0503b000d09cf9180", + "symbol": "DC", + "decimals": 18, + "name": "Dogechain", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x7b4328c127b85369d9f82ca0503b000d09cf9180.png", + "aggregators": [ + "CoinMarketCap", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x12bb890508c125661e03b09ec06e404bc9289040": { + "address": "0x12bb890508c125661e03b09ec06e404bc9289040", + "symbol": "RACA", + "decimals": 18, + "name": "Radio Caca", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x12bb890508c125661e03b09ec06e404bc9289040.png", + "aggregators": [ + "CoinMarketCap", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x968f6f898a6df937fc1859b323ac2f14643e3fed": { + "address": "0x968f6f898a6df937fc1859b323ac2f14643e3fed", + "symbol": "NWC", + "decimals": 18, + "name": "Numerico", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x968f6f898a6df937fc1859b323ac2f14643e3fed.png", + "aggregators": [ + "Metamask", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x45c2f8c9b4c0bdc76200448cc26c48ab6ffef83f": { + "address": "0x45c2f8c9b4c0bdc76200448cc26c48ab6ffef83f", + "symbol": "DOMI", + "decimals": 18, + "name": "Domi", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x45c2f8c9b4c0bdc76200448cc26c48ab6ffef83f.png", + "aggregators": [ + "CoinMarketCap", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0xc17c30e98541188614df99239cabd40280810ca3": { + "address": "0xc17c30e98541188614df99239cabd40280810ca3", + "symbol": "RISE", + "decimals": 18, + "name": "EverRise", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xc17c30e98541188614df99239cabd40280810ca3.png", + "aggregators": [ + "CoinMarketCap", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0xaef420fd77477d9dc8b46d704d44dd09d6c27866": { + "address": "0xaef420fd77477d9dc8b46d704d44dd09d6c27866", + "symbol": "CGV", + "decimals": 6, + "name": "Cogito Finance", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xaef420fd77477d9dc8b46d704d44dd09d6c27866.png", + "aggregators": [ + "CoinMarketCap", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x5b52bfb8062ce664d74bbcd4cd6dc7df53fd7233": { + "address": "0x5b52bfb8062ce664d74bbcd4cd6dc7df53fd7233", + "symbol": "ZENIQ", + "decimals": 18, + "name": "ZENIQ", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x5b52bfb8062ce664d74bbcd4cd6dc7df53fd7233.png", + "aggregators": [ + "CoinMarketCap", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x6b431b8a964bfcf28191b07c91189ff4403957d0": { + "address": "0x6b431b8a964bfcf28191b07c91189ff4403957d0", + "symbol": "CORGIAI", + "decimals": 18, + "name": "CorgiAI", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x6b431b8a964bfcf28191b07c91189ff4403957d0.png", + "aggregators": [ + "CoinMarketCap", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x19373ecbb4b8cc2253d70f2a246fa299303227ba": { + "address": "0x19373ecbb4b8cc2253d70f2a246fa299303227ba", + "symbol": "OCH", + "decimals": 18, + "name": "Orchai", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x19373ecbb4b8cc2253d70f2a246fa299303227ba.png", + "aggregators": [ + "CoinMarketCap", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0xf97e2a78f1f3d1fd438ff7cc3bb7de01e5945b83": { + "address": "0xf97e2a78f1f3d1fd438ff7cc3bb7de01e5945b83", + "symbol": "RIDE", + "decimals": 18, + "name": "holoride", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xf97e2a78f1f3d1fd438ff7cc3bb7de01e5945b83.png", + "aggregators": [ + "CoinMarketCap", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x19e1f2f837a3b90ebd0730cb6111189be0e1b6d6": { + "address": "0x19e1f2f837a3b90ebd0730cb6111189be0e1b6d6", + "symbol": "LAIKA", + "decimals": 18, + "name": "La ka", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x19e1f2f837a3b90ebd0730cb6111189be0e1b6d6.png", + "aggregators": [ + "CoinMarketCap", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0xf469fbd2abcd6b9de8e169d128226c0fc90a012e": { + "address": "0xf469fbd2abcd6b9de8e169d128226c0fc90a012e", + "symbol": "PUMPBTC", + "decimals": 8, + "name": "pumpBTC", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xf469fbd2abcd6b9de8e169d128226c0fc90a012e.png", + "aggregators": [ + "CoinGecko", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x675b68aa4d9c2d3bb3f0397048e62e6b7192079c": { + "address": "0x675b68aa4d9c2d3bb3f0397048e62e6b7192079c", + "symbol": "FUEL", + "decimals": 9, + "name": "Fuel Network", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x675b68aa4d9c2d3bb3f0397048e62e6b7192079c.png", + "aggregators": [ + "CoinMarketCap", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x5ac34c53a04b9aaa0bf047e7291fb4e8a48f2a18": { + "address": "0x5ac34c53a04b9aaa0bf047e7291fb4e8a48f2a18", + "symbol": "NAI", + "decimals": 18, + "name": "Nuklai", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x5ac34c53a04b9aaa0bf047e7291fb4e8a48f2a18.png", + "aggregators": [ + "CoinMarketCap", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x79f05c263055ba20ee0e814acd117c20caa10e0c": { + "address": "0x79f05c263055ba20ee0e814acd117c20caa10e0c", + "symbol": "ICE", + "decimals": 18, + "name": "Ice Open Network", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x79f05c263055ba20ee0e814acd117c20caa10e0c.png", + "aggregators": [ + "CoinGecko", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x667088b212ce3d06a1b553a7221e1fd19000d9af": { + "address": "0x667088b212ce3d06a1b553a7221e1fd19000d9af", + "symbol": "WINGS", + "decimals": 18, + "name": "WINGS", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x667088b212ce3d06a1b553a7221e1fd19000d9af.png", + "aggregators": ["Metamask", "LiFi", "Rubic", "Rango", "Bancor"], + "occurrences": 5 + }, + "0xfa05a73ffe78ef8f1a739473e462c54bae6567d9": { + "address": "0xfa05a73ffe78ef8f1a739473e462c54bae6567d9", + "symbol": "LUN", + "decimals": 18, + "name": "Lunyr Token", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xfa05a73ffe78ef8f1a739473e462c54bae6567d9.png", + "aggregators": [ + "Metamask", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x701c244b988a513c945973defa05de933b23fe1d": { + "address": "0x701c244b988a513c945973defa05de933b23fe1d", + "symbol": "OAX", + "decimals": 18, + "name": "openANX Token", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x701c244b988a513c945973defa05de933b23fe1d.png", + "aggregators": [ + "CoinMarketCap", + "Rubic", + "Rango", + "Sonarwatch", + "Bancor" + ], + "occurrences": 5 + }, + "0x05f4a42e251f2d52b8ed15e9fedaacfcef1fad27": { + "address": "0x05f4a42e251f2d52b8ed15e9fedaacfcef1fad27", + "symbol": "ZIL", + "decimals": 12, + "name": "Zilliqa", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x05f4a42e251f2d52b8ed15e9fedaacfcef1fad27.png", + "aggregators": ["Metamask", "LiFi", "Socket", "Rubic", "Bancor"], + "occurrences": 5 + }, + "0x4f3afec4e5a3f2a6a1a411def7d7dfe50ee057bf": { + "address": "0x4f3afec4e5a3f2a6a1a411def7d7dfe50ee057bf", + "symbol": "DGX", + "decimals": 9, + "name": "Digix Gold Token", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x4f3afec4e5a3f2a6a1a411def7d7dfe50ee057bf.png", + "aggregators": [ + "CoinMarketCap", + "LiFi", + "Socket", + "Rubic", + "Rango" + ], + "occurrences": 5 + }, + "0xadd5e881984783dd432f80381fb52f45b53f3e70": { + "address": "0xadd5e881984783dd432f80381fb52f45b53f3e70", + "symbol": "VITE", + "decimals": 18, + "name": "Vite", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xadd5e881984783dd432f80381fb52f45b53f3e70.png", + "aggregators": [ + "CoinMarketCap", + "Rubic", + "Rango", + "Sonarwatch", + "SushiSwap" + ], + "occurrences": 5 + }, + "0x0a913bead80f321e7ac35285ee10d9d922659cb7": { + "address": "0x0a913bead80f321e7ac35285ee10d9d922659cb7", + "symbol": "DOS", + "decimals": 18, + "name": "DOS Network", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x0a913bead80f321e7ac35285ee10d9d922659cb7.png", + "aggregators": [ + "CoinMarketCap", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0xdfbc9050f5b01df53512dcc39b4f2b2bbacd517a": { + "address": "0xdfbc9050f5b01df53512dcc39b4f2b2bbacd517a", + "symbol": "JOB", + "decimals": 8, + "name": "Jobchain", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xdfbc9050f5b01df53512dcc39b4f2b2bbacd517a.png", + "aggregators": [ + "Metamask", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x035df12e0f3ac6671126525f1015e47d79dfeddf": { + "address": "0x035df12e0f3ac6671126525f1015e47d79dfeddf", + "symbol": "0XMR", + "decimals": 18, + "name": "0xMonero", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x035df12e0f3ac6671126525f1015e47d79dfeddf.png", + "aggregators": [ + "CoinMarketCap", + "LiFi", + "Socket", + "Rubic", + "Rango" + ], + "occurrences": 5 + }, + "0xef9cd7882c067686691b6ff49e650b43afbbcc6b": { + "address": "0xef9cd7882c067686691b6ff49e650b43afbbcc6b", + "symbol": "FNX", + "decimals": 18, + "name": "FinNexus", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xef9cd7882c067686691b6ff49e650b43afbbcc6b.png", + "aggregators": [ + "CoinMarketCap", + "LiFi", + "Rubic", + "Rango", + "SushiSwap" + ], + "occurrences": 5 + }, + "0xf29e46887ffae92f1ff87dfe39713875da541373": { + "address": "0xf29e46887ffae92f1ff87dfe39713875da541373", + "symbol": "UNC", + "decimals": 18, + "name": "UNC", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xf29e46887ffae92f1ff87dfe39713875da541373.png", + "aggregators": ["CoinMarketCap", "1inch", "LiFi", "Rubic", "Rango"], + "occurrences": 5 + }, + "0x57700244b20f84799a31c6c96dadff373ca9d6c5": { + "address": "0x57700244b20f84799a31c6c96dadff373ca9d6c5", + "symbol": "TRUST", + "decimals": 18, + "name": "TRUST", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x57700244b20f84799a31c6c96dadff373ca9d6c5.png", + "aggregators": ["CoinMarketCap", "1inch", "LiFi", "Rubic", "Rango"], + "occurrences": 5 + }, + "0xf911a7ec46a2c6fa49193212fe4a2a9b95851c27": { + "address": "0xf911a7ec46a2c6fa49193212fe4a2a9b95851c27", + "symbol": "XAMP", + "decimals": 9, + "name": "XAMP", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xf911a7ec46a2c6fa49193212fe4a2a9b95851c27.png", + "aggregators": ["CoinMarketCap", "1inch", "LiFi", "Rubic", "Rango"], + "occurrences": 5 + }, + "0x607c794cda77efb21f8848b7910ecf27451ae842": { + "address": "0x607c794cda77efb21f8848b7910ecf27451ae842", + "symbol": "PIE", + "decimals": 18, + "name": "PIE", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x607c794cda77efb21f8848b7910ecf27451ae842.png", + "aggregators": ["CoinMarketCap", "1inch", "LiFi", "Rubic", "Rango"], + "occurrences": 5 + }, + "0x9b53e429b0badd98ef7f01f03702986c516a5715": { + "address": "0x9b53e429b0badd98ef7f01f03702986c516a5715", + "symbol": "HY", + "decimals": 18, + "name": "hybrix hydra", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x9b53e429b0badd98ef7f01f03702986c516a5715.png", + "aggregators": [ + "CoinMarketCap", + "1inch", + "Rubic", + "Rango", + "Bancor" + ], + "occurrences": 5 + }, + "0x9cb2f26a23b8d89973f08c957c4d7cdf75cd341c": { + "address": "0x9cb2f26a23b8d89973f08c957c4d7cdf75cd341c", + "symbol": "DZAR", + "decimals": 6, + "name": "DZAR", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x9cb2f26a23b8d89973f08c957c4d7cdf75cd341c.png", + "aggregators": ["CoinMarketCap", "1inch", "LiFi", "Rubic", "Rango"], + "occurrences": 5 + }, + "0xe17f017475a709de58e976081eb916081ff4c9d5": { + "address": "0xe17f017475a709de58e976081eb916081ff4c9d5", + "symbol": "RMPL", + "decimals": 9, + "name": "RMPL", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xe17f017475a709de58e976081eb916081ff4c9d5.png", + "aggregators": ["CoinMarketCap", "1inch", "LiFi", "Rubic", "Rango"], + "occurrences": 5 + }, + "0xa462d0e6bb788c7807b1b1c96992ce1f7069e195": { + "address": "0xa462d0e6bb788c7807b1b1c96992ce1f7069e195", + "symbol": "EQMT", + "decimals": 18, + "name": "EQMT", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xa462d0e6bb788c7807b1b1c96992ce1f7069e195.png", + "aggregators": ["CoinMarketCap", "1inch", "LiFi", "Rubic", "Rango"], + "occurrences": 5 + }, + "0x8a6f3bf52a26a21531514e23016eeae8ba7e7018": { + "address": "0x8a6f3bf52a26a21531514e23016eeae8ba7e7018", + "symbol": "MXX", + "decimals": 8, + "name": "Multiplier", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x8a6f3bf52a26a21531514e23016eeae8ba7e7018.png", + "aggregators": [ + "CoinMarketCap", + "1inch", + "Socket", + "Rubic", + "Rango" + ], + "occurrences": 5 + }, + "0x4fe5851c9af07df9e5ad8217afae1ea72737ebda": { + "address": "0x4fe5851c9af07df9e5ad8217afae1ea72737ebda", + "symbol": "OPT", + "decimals": 18, + "name": "Open Predict Token", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x4fe5851c9af07df9e5ad8217afae1ea72737ebda.png", + "aggregators": [ + "CoinMarketCap", + "1inch", + "Socket", + "Rubic", + "Rango" + ], + "occurrences": 5 + }, + "0x3e780920601d61cedb860fe9c4a90c9ea6a35e78": { + "address": "0x3e780920601d61cedb860fe9c4a90c9ea6a35e78", + "symbol": "BOOST", + "decimals": 18, + "name": "Boosted Finance", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x3e780920601d61cedb860fe9c4a90c9ea6a35e78.png", + "aggregators": [ + "CoinMarketCap", + "1inch", + "Socket", + "Rubic", + "Rango" + ], + "occurrences": 5 + }, + "0xdf49c9f599a0a9049d97cff34d0c30e468987389": { + "address": "0xdf49c9f599a0a9049d97cff34d0c30e468987389", + "symbol": "SATT", + "decimals": 18, + "name": "SaTT", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xdf49c9f599a0a9049d97cff34d0c30e468987389.png", + "aggregators": [ + "Metamask", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x26cf82e4ae43d31ea51e72b663d26e26a75af729": { + "address": "0x26cf82e4ae43d31ea51e72b663d26e26a75af729", + "symbol": "MBBASED", + "decimals": 18, + "name": "Moonbase", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x26cf82e4ae43d31ea51e72b663d26e26a75af729.png", + "aggregators": [ + "CoinMarketCap", + "LiFi", + "Rubic", + "Rango", + "SushiSwap" + ], + "occurrences": 5 + }, + "0x5d858bcd53e085920620549214a8b27ce2f04670": { + "address": "0x5d858bcd53e085920620549214a8b27ce2f04670", + "symbol": "POP", + "decimals": 18, + "name": "POP Network Token", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x5d858bcd53e085920620549214a8b27ce2f04670.png", + "aggregators": [ + "Metamask", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x3fa729b4548becbad4eab6ef18413470e6d5324c": { + "address": "0x3fa729b4548becbad4eab6ef18413470e6d5324c", + "symbol": "MOVE", + "decimals": 18, + "name": "Mover", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x3fa729b4548becbad4eab6ef18413470e6d5324c.png", + "aggregators": [ + "CoinMarketCap", + "LiFi", + "Socket", + "Rubic", + "Rango" + ], + "occurrences": 5 + }, + "0x4a64515e5e1d1073e83f30cb97bed20400b66e10": { + "address": "0x4a64515e5e1d1073e83f30cb97bed20400b66e10", + "symbol": "WZEC", + "decimals": 18, + "name": "Wrapped ZEC", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x4a64515e5e1d1073e83f30cb97bed20400b66e10.png", + "aggregators": [ + "CoinMarketCap", + "LiFi", + "Rubic", + "Rango", + "SushiSwap" + ], + "occurrences": 5 + }, + "0xbbff34e47e559ef680067a6b1c980639eeb64d24": { + "address": "0xbbff34e47e559ef680067a6b1c980639eeb64d24", + "symbol": "L2", + "decimals": 18, + "name": "Leverj Gluon", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xbbff34e47e559ef680067a6b1c980639eeb64d24.png", + "aggregators": [ + "CoinMarketCap", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x7eaf9c89037e4814dc0d9952ac7f888c784548db": { + "address": "0x7eaf9c89037e4814dc0d9952ac7f888c784548db", + "symbol": "ROYA", + "decimals": 18, + "name": "Royale", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x7eaf9c89037e4814dc0d9952ac7f888c784548db.png", + "aggregators": ["CoinMarketCap", "1inch", "LiFi", "Rubic", "Rango"], + "occurrences": 5 + }, + "0xcb8fb2438a805664cd8c3e640b85ac473da5be87": { + "address": "0xcb8fb2438a805664cd8c3e640b85ac473da5be87", + "symbol": "CTI", + "decimals": 18, + "name": "ClinTex CTi", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xcb8fb2438a805664cd8c3e640b85ac473da5be87.png", + "aggregators": [ + "CoinMarketCap", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x9248c485b0b80f76da451f167a8db30f33c70907": { + "address": "0x9248c485b0b80f76da451f167a8db30f33c70907", + "symbol": "DEBASE", + "decimals": 18, + "name": "Debase", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x9248c485b0b80f76da451f167a8db30f33c70907.png", + "aggregators": [ + "CoinMarketCap", + "1inch", + "Socket", + "Rubic", + "Rango" + ], + "occurrences": 5 + }, + "0xb4bebd34f6daafd808f73de0d10235a92fbb6c3d": { + "address": "0xb4bebd34f6daafd808f73de0d10235a92fbb6c3d", + "symbol": "YETI", + "decimals": 18, + "name": "Yearn Ecosystem Token Index", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xb4bebd34f6daafd808f73de0d10235a92fbb6c3d.png", + "aggregators": [ + "CoinMarketCap", + "LiFi", + "Rubic", + "Rango", + "SushiSwap" + ], + "occurrences": 5 + }, + "0x965697b4ef02f0de01384d0d4f9f782b1670c163": { + "address": "0x965697b4ef02f0de01384d0d4f9f782b1670c163", + "symbol": "OXY", + "decimals": 6, + "name": "Oxygen", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x965697b4ef02f0de01384d0d4f9f782b1670c163.png", + "aggregators": [ + "CoinMarketCap", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x17525e4f4af59fbc29551bc4ece6ab60ed49ce31": { + "address": "0x17525e4f4af59fbc29551bc4ece6ab60ed49ce31", + "symbol": "YPIE", + "decimals": 18, + "name": "PieDAO Yearn Ecosystem Pie", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x17525e4f4af59fbc29551bc4ece6ab60ed49ce31.png", + "aggregators": [ + "CoinMarketCap", + "LiFi", + "Rubic", + "Rango", + "SushiSwap" + ], + "occurrences": 5 + }, + "0x018fb5af9d015af25592a014c4266a84143de7a0": { + "address": "0x018fb5af9d015af25592a014c4266a84143de7a0", + "symbol": "MP3", + "decimals": 18, + "name": "mp3", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x018fb5af9d015af25592a014c4266a84143de7a0.png", + "aggregators": [ + "CoinMarketCap", + "1inch", + "Socket", + "Rubic", + "Rango" + ], + "occurrences": 5 + }, + "0x196c81385bc536467433014042788eb707703934": { + "address": "0x196c81385bc536467433014042788eb707703934", + "symbol": "CTASK", + "decimals": 18, + "name": "CTASK Token", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x196c81385bc536467433014042788eb707703934.png", + "aggregators": [ + "CoinMarketCap", + "1inch", + "Socket", + "Rubic", + "Rango" + ], + "occurrences": 5 + }, + "0x76c5449f4950f6338a393f53cda8b53b0cd3ca3a": { + "address": "0x76c5449f4950f6338a393f53cda8b53b0cd3ca3a", + "symbol": "BT", + "decimals": 18, + "name": "BT.Finance", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x76c5449f4950f6338a393f53cda8b53b0cd3ca3a.png", + "aggregators": [ + "CoinMarketCap", + "1inch", + "Socket", + "Rubic", + "Rango" + ], + "occurrences": 5 + }, + "0x4c6ec08cf3fc987c6c4beb03184d335a2dfc4042": { + "address": "0x4c6ec08cf3fc987c6c4beb03184d335a2dfc4042", + "symbol": "PAINT", + "decimals": 18, + "name": "MurAll", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x4c6ec08cf3fc987c6c4beb03184d335a2dfc4042.png", + "aggregators": [ + "CoinMarketCap", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x358aa737e033f34df7c54306960a38d09aabd523": { + "address": "0x358aa737e033f34df7c54306960a38d09aabd523", + "symbol": "ARES", + "decimals": 18, + "name": "Ares Protocol", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x358aa737e033f34df7c54306960a38d09aabd523.png", + "aggregators": [ + "Metamask", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x59e9261255644c411afdd00bd89162d09d862e38": { + "address": "0x59e9261255644c411afdd00bd89162d09d862e38", + "symbol": "ETHA", + "decimals": 18, + "name": "ETHA Lend", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x59e9261255644c411afdd00bd89162d09d862e38.png", + "aggregators": [ + "CoinMarketCap", + "LiFi", + "Socket", + "Rubic", + "Rango" + ], + "occurrences": 5 + }, + "0x182f4c4c97cd1c24e1df8fc4c053e5c47bf53bef": { + "address": "0x182f4c4c97cd1c24e1df8fc4c053e5c47bf53bef", + "symbol": "TANGO", + "decimals": 18, + "name": "keyTango Token", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x182f4c4c97cd1c24e1df8fc4c053e5c47bf53bef.png", + "aggregators": ["Metamask", "1inch", "Socket", "Rubic", "Rango"], + "occurrences": 5 + }, + "0x33e07f5055173cf8febede8b21b12d1e2b523205": { + "address": "0x33e07f5055173cf8febede8b21b12d1e2b523205", + "symbol": "ELAND", + "decimals": 18, + "name": "Etherland", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x33e07f5055173cf8febede8b21b12d1e2b523205.png", + "aggregators": [ + "CoinMarketCap", + "LiFi", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x4da0c48376c277cdbd7fc6fdc6936dee3e4adf75": { + "address": "0x4da0c48376c277cdbd7fc6fdc6936dee3e4adf75", + "symbol": "EPIK", + "decimals": 18, + "name": "Epik Prime", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x4da0c48376c277cdbd7fc6fdc6936dee3e4adf75.png", + "aggregators": [ + "CoinMarketCap", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x8cb924583681cbfe487a62140a994a49f833c244": { + "address": "0x8cb924583681cbfe487a62140a994a49f833c244", + "symbol": "SWAPP", + "decimals": 18, + "name": "Swapp Token", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x8cb924583681cbfe487a62140a994a49f833c244.png", + "aggregators": [ + "CoinMarketCap", + "1inch", + "Socket", + "Rubic", + "Rango" + ], + "occurrences": 5 + }, + "0x00813e3421e1367353bfe7615c7f7f133c89df74": { + "address": "0x00813e3421e1367353bfe7615c7f7f133c89df74", + "symbol": "SPS", + "decimals": 18, + "name": "Splintershards", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x00813e3421e1367353bfe7615c7f7f133c89df74.png", + "aggregators": [ + "CoinMarketCap", + "LiFi", + "Rubic", + "Rango", + "SushiSwap" + ], + "occurrences": 5 + }, + "0x785c34312dfa6b74f6f1829f79ade39042222168": { + "address": "0x785c34312dfa6b74f6f1829f79ade39042222168", + "symbol": "BUMP", + "decimals": 18, + "name": "Bumper", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x785c34312dfa6b74f6f1829f79ade39042222168.png", + "aggregators": [ + "CoinMarketCap", + "LiFi", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x96610186f3ab8d73ebee1cf950c750f3b1fb79c2": { + "address": "0x96610186f3ab8d73ebee1cf950c750f3b1fb79c2", + "symbol": "EJS", + "decimals": 18, + "name": "Enjinstarter", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x96610186f3ab8d73ebee1cf950c750f3b1fb79c2.png", + "aggregators": [ + "CoinMarketCap", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x97872eafd79940c7b24f7bcc1eadb1457347adc9": { + "address": "0x97872eafd79940c7b24f7bcc1eadb1457347adc9", + "symbol": "STRP", + "decimals": 18, + "name": "Strips Token", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x97872eafd79940c7b24f7bcc1eadb1457347adc9.png", + "aggregators": [ + "CoinMarketCap", + "LiFi", + "Rubic", + "Rango", + "SushiSwap" + ], + "occurrences": 5 + }, + "0x65a8fba02f641a13bb7b01d5e1129b0521004f52": { + "address": "0x65a8fba02f641a13bb7b01d5e1129b0521004f52", + "symbol": "AMAS", + "decimals": 18, + "name": "Amasa", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x65a8fba02f641a13bb7b01d5e1129b0521004f52.png", + "aggregators": [ + "CoinMarketCap", + "LiFi", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0xf8e9f10c22840b613cda05a0c5fdb59a4d6cd7ef": { + "address": "0xf8e9f10c22840b613cda05a0c5fdb59a4d6cd7ef", + "symbol": "DOE", + "decimals": 18, + "name": "Dogs Of Elon", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xf8e9f10c22840b613cda05a0c5fdb59a4d6cd7ef.png", + "aggregators": [ + "CoinMarketCap", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x10010078a54396f62c96df8532dc2b4847d47ed3": { + "address": "0x10010078a54396f62c96df8532dc2b4847d47ed3", + "symbol": "HND", + "decimals": 18, + "name": "Hundred Finance", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x10010078a54396f62c96df8532dc2b4847d47ed3.png", + "aggregators": [ + "CoinMarketCap", + "LiFi", + "Rubic", + "Rango", + "SushiSwap" + ], + "occurrences": 5 + }, + "0x333000333b26ee30214b4af6419d9ab07a450400": { + "address": "0x333000333b26ee30214b4af6419d9ab07a450400", + "symbol": "MELD", + "decimals": 18, + "name": "MELD", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x333000333b26ee30214b4af6419d9ab07a450400.png", + "aggregators": [ + "CoinMarketCap", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x07f9702ce093db82dfdc92c2c6e578d6ea8d5e22": { + "address": "0x07f9702ce093db82dfdc92c2c6e578d6ea8d5e22", + "symbol": "OBT", + "decimals": 18, + "name": "Oobit", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x07f9702ce093db82dfdc92c2c6e578d6ea8d5e22.png", + "aggregators": [ + "CoinMarketCap", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0xa54d2ebfd977ad836203c85f18db2f0a0cf88854": { + "address": "0xa54d2ebfd977ad836203c85f18db2f0a0cf88854", + "symbol": "BACON", + "decimals": 18, + "name": "Bacon", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xa54d2ebfd977ad836203c85f18db2f0a0cf88854.png", + "aggregators": [ + "Metamask", + "Socket", + "Rubic", + "Rango", + "SushiSwap" + ], + "occurrences": 5 + }, + "0x16cc8367055ae7e9157dbcb9d86fd6ce82522b31": { + "address": "0x16cc8367055ae7e9157dbcb9d86fd6ce82522b31", + "symbol": "VXL", + "decimals": 18, + "name": "Voxel X Network", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x16cc8367055ae7e9157dbcb9d86fd6ce82522b31.png", + "aggregators": [ + "CoinMarketCap", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x0335a7610d817aeca1bebbefbd392ecc2ed587b8": { + "address": "0x0335a7610d817aeca1bebbefbd392ecc2ed587b8", + "symbol": "NITRO", + "decimals": 18, + "name": "Nitro League", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x0335a7610d817aeca1bebbefbd392ecc2ed587b8.png", + "aggregators": [ + "CoinMarketCap", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0xf0187b76be05c1fcaa24f39c0a3aab4434099c4f": { + "address": "0xf0187b76be05c1fcaa24f39c0a3aab4434099c4f", + "symbol": "AEG", + "decimals": 18, + "name": "Aether Games", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xf0187b76be05c1fcaa24f39c0a3aab4434099c4f.png", + "aggregators": [ + "CoinMarketCap", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x000000007a58f5f58e697e51ab0357bc9e260a04": { + "address": "0x000000007a58f5f58e697e51ab0357bc9e260a04", + "symbol": "CNV", + "decimals": 18, + "name": "Concave", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x000000007a58f5f58e697e51ab0357bc9e260a04.png", + "aggregators": [ + "CoinMarketCap", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x9c354503c38481a7a7a51629142963f98ecc12d0": { + "address": "0x9c354503c38481a7a7a51629142963f98ecc12d0", + "symbol": "OGV", + "decimals": 18, + "name": "Origin DeFi Governance", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x9c354503c38481a7a7a51629142963f98ecc12d0.png", + "aggregators": ["Metamask", "LiFi", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 5 + }, + "0x0c9c7712c83b3c70e7c5e11100d33d9401bdf9dd": { + "address": "0x0c9c7712c83b3c70e7c5e11100d33d9401bdf9dd", + "symbol": "WOMBAT", + "decimals": 18, + "name": "Wombat", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x0c9c7712c83b3c70e7c5e11100d33d9401bdf9dd.png", + "aggregators": [ + "CoinMarketCap", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x256d1fce1b1221e8398f65f9b36033ce50b2d497": { + "address": "0x256d1fce1b1221e8398f65f9b36033ce50b2d497", + "symbol": "WALV", + "decimals": 18, + "name": "Alvey Chain", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x256d1fce1b1221e8398f65f9b36033ce50b2d497.png", + "aggregators": [ + "CoinMarketCap", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0xb9d7dddca9a4ac480991865efef82e01273f79c3": { + "address": "0xb9d7dddca9a4ac480991865efef82e01273f79c3", + "symbol": "BLUSD", + "decimals": 18, + "name": "LUSD Chicken Bonds", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xb9d7dddca9a4ac480991865efef82e01273f79c3.png", + "aggregators": [ + "CoinMarketCap", + "LiFi", + "Socket", + "Rubic", + "Rango" + ], + "occurrences": 5 + }, + "0x70008f18fc58928dce982b0a69c2c21ff80dca54": { + "address": "0x70008f18fc58928dce982b0a69c2c21ff80dca54", + "symbol": "X7R", + "decimals": 18, + "name": "X7R", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x70008f18fc58928dce982b0a69c2c21ff80dca54.png", + "aggregators": [ + "CoinMarketCap", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x1e4746dc744503b53b4a082cb3607b169a289090": { + "address": "0x1e4746dc744503b53b4a082cb3607b169a289090", + "symbol": "IPOR", + "decimals": 18, + "name": "IPOR", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x1e4746dc744503b53b4a082cb3607b169a289090.png", + "aggregators": [ + "CoinMarketCap", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x02de007d412266a2e0fa9287c103474170f06560": { + "address": "0x02de007d412266a2e0fa9287c103474170f06560", + "symbol": "EXD", + "decimals": 18, + "name": "Exorde", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x02de007d412266a2e0fa9287c103474170f06560.png", + "aggregators": [ + "CoinMarketCap", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0xc4c346edc55504574cceb00aa1091d22404a4bc3": { + "address": "0xc4c346edc55504574cceb00aa1091d22404a4bc3", + "symbol": "MEZZ", + "decimals": 18, + "name": "MEZZ", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xc4c346edc55504574cceb00aa1091d22404a4bc3.png", + "aggregators": [ + "CoinMarketCap", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0xac87d4cbb82ce7f4bcf31dbdc0024306cfd3ec5a": { + "address": "0xac87d4cbb82ce7f4bcf31dbdc0024306cfd3ec5a", + "symbol": "KEI", + "decimals": 18, + "name": "KEI Finance", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xac87d4cbb82ce7f4bcf31dbdc0024306cfd3ec5a.png", + "aggregators": [ + "CoinMarketCap", + "LiFi", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0xf47245e9a3ba3dca8b004e34afc1290b1d435a52": { + "address": "0xf47245e9a3ba3dca8b004e34afc1290b1d435a52", + "symbol": "MBLK", + "decimals": 18, + "name": "Magical Blocks", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xf47245e9a3ba3dca8b004e34afc1290b1d435a52.png", + "aggregators": [ + "CoinMarketCap", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x788d86e00ab31db859c3d6b80d5a9375801d7f2a": { + "address": "0x788d86e00ab31db859c3d6b80d5a9375801d7f2a", + "symbol": "TENET", + "decimals": 18, + "name": "TENET", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x788d86e00ab31db859c3d6b80d5a9375801d7f2a.png", + "aggregators": [ + "CoinMarketCap", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x5582a479f0c403e207d2578963ccef5d03ba636f": { + "address": "0x5582a479f0c403e207d2578963ccef5d03ba636f", + "symbol": "SALD", + "decimals": 18, + "name": "Salad", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x5582a479f0c403e207d2578963ccef5d03ba636f.png", + "aggregators": [ + "CoinMarketCap", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x0ae38f7e10a43b5b2fb064b42a2f4514cba909ef": { + "address": "0x0ae38f7e10a43b5b2fb064b42a2f4514cba909ef", + "symbol": "UNSHETH", + "decimals": 18, + "name": "unshETH Ether", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x0ae38f7e10a43b5b2fb064b42a2f4514cba909ef.png", + "aggregators": [ + "CoinMarketCap", + "LiFi", + "Rubic", + "Rango", + "SushiSwap" + ], + "occurrences": 5 + }, + "0xfe67a4450907459c3e1fff623aa927dd4e28c67a": { + "address": "0xfe67a4450907459c3e1fff623aa927dd4e28c67a", + "symbol": "NEXT", + "decimals": 18, + "name": "Everclear", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xfe67a4450907459c3e1fff623aa927dd4e28c67a.png", + "aggregators": [ + "CoinMarketCap", + "LiFi", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x4c45bbec2ff7810ef4a77ad7bd4757c446fe4155": { + "address": "0x4c45bbec2ff7810ef4a77ad7bd4757c446fe4155", + "symbol": "JNGL", + "decimals": 18, + "name": "Jungle Labz", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x4c45bbec2ff7810ef4a77ad7bd4757c446fe4155.png", + "aggregators": [ + "CoinMarketCap", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0xc9eb61ffb66d5815d643bbb8195e17c49687ae1e": { + "address": "0xc9eb61ffb66d5815d643bbb8195e17c49687ae1e", + "symbol": "MIND", + "decimals": 18, + "name": "Morpheus Infrastructure Node", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xc9eb61ffb66d5815d643bbb8195e17c49687ae1e.png", + "aggregators": [ + "CoinMarketCap", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0xfc10cd3895f2c66d6639ec33ae6360d6cfca7d6d": { + "address": "0xfc10cd3895f2c66d6639ec33ae6360d6cfca7d6d", + "symbol": "YES", + "decimals": 18, + "name": "YES", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xfc10cd3895f2c66d6639ec33ae6360d6cfca7d6d.png", + "aggregators": [ + "CoinMarketCap", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x328a268b191ef593b72498a9e8a481c086eb21be": { + "address": "0x328a268b191ef593b72498a9e8a481c086eb21be", + "symbol": "MZERO", + "decimals": 18, + "name": "MetaZero", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x328a268b191ef593b72498a9e8a481c086eb21be.png", + "aggregators": [ + "CoinMarketCap", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x8fc17671d853341d9e8b001f5fc3c892d09cb53a": { + "address": "0x8fc17671d853341d9e8b001f5fc3c892d09cb53a", + "symbol": "BLOCK", + "decimals": 18, + "name": "BlockGames", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x8fc17671d853341d9e8b001f5fc3c892d09cb53a.png", + "aggregators": [ + "CoinMarketCap", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x7717f2828fe4dac8558d23ee4cdfed9544e9321f": { + "address": "0x7717f2828fe4dac8558d23ee4cdfed9544e9321f", + "symbol": "OTX", + "decimals": 18, + "name": "OTX EXCHANGE", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x7717f2828fe4dac8558d23ee4cdfed9544e9321f.png", + "aggregators": [ + "CoinMarketCap", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x84fad63f8f26335f4f1bebc9fbf5ba277fd23c9e": { + "address": "0x84fad63f8f26335f4f1bebc9fbf5ba277fd23c9e", + "symbol": "AB", + "decimals": 18, + "name": "Arma Block", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x84fad63f8f26335f4f1bebc9fbf5ba277fd23c9e.png", + "aggregators": [ + "CoinMarketCap", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0xe07f9d810a48ab5c3c914ba3ca53af14e4491e8a": { + "address": "0xe07f9d810a48ab5c3c914ba3ca53af14e4491e8a", + "symbol": "GYD", + "decimals": 18, + "name": "Gyroscope GYD", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xe07f9d810a48ab5c3c914ba3ca53af14e4491e8a.png", + "aggregators": ["CoinMarketCap", "1inch", "LiFi", "Rubic", "Rango"], + "occurrences": 5 + }, + "0xda987c655ebc38c801db64a8608bc1aa56cd9a31": { + "address": "0xda987c655ebc38c801db64a8608bc1aa56cd9a31", + "symbol": "SYNT", + "decimals": 18, + "name": "Synternet", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xda987c655ebc38c801db64a8608bc1aa56cd9a31.png", + "aggregators": [ + "CoinMarketCap", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x06561dc5cedcc012a4ea68609b17d41499622e4c": { + "address": "0x06561dc5cedcc012a4ea68609b17d41499622e4c", + "symbol": "NOOB", + "decimals": 18, + "name": "Blast Royale", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x06561dc5cedcc012a4ea68609b17d41499622e4c.png", + "aggregators": [ + "CoinMarketCap", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x5da42c37dea61d1c31e7a810e7d2aff736a41643": { + "address": "0x5da42c37dea61d1c31e7a810e7d2aff736a41643", + "symbol": "YES", + "decimals": 18, + "name": "Yes Chad", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x5da42c37dea61d1c31e7a810e7d2aff736a41643.png", + "aggregators": [ + "CoinMarketCap", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0xaf4144cd943ed5362fed2bae6573184659cbe6ff": { + "address": "0xaf4144cd943ed5362fed2bae6573184659cbe6ff", + "symbol": "LIZ", + "decimals": 18, + "name": "Lizcoin", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xaf4144cd943ed5362fed2bae6573184659cbe6ff.png", + "aggregators": [ + "CoinMarketCap", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x683989afc948477fd38567f8327f501562c955ac": { + "address": "0x683989afc948477fd38567f8327f501562c955ac", + "symbol": "MORPHAI", + "decimals": 9, + "name": "Morph AI", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x683989afc948477fd38567f8327f501562c955ac.png", + "aggregators": [ + "CoinMarketCap", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x6499999951f0b5ba8b9187958884f9f5b50e45fd": { + "address": "0x6499999951f0b5ba8b9187958884f9f5b50e45fd", + "symbol": "ORBIT", + "decimals": 18, + "name": "OrbitAI", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x6499999951f0b5ba8b9187958884f9f5b50e45fd.png", + "aggregators": [ + "CoinMarketCap", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x148255a3b10666d9788ec48bc61ea3e48974bf2c": { + "address": "0x148255a3b10666d9788ec48bc61ea3e48974bf2c", + "symbol": "DMCC", + "decimals": 18, + "name": "DMCCOIN", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x148255a3b10666d9788ec48bc61ea3e48974bf2c.png", + "aggregators": [ + "Metamask", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x77776b40c3d75cb07ce54dea4b2fd1d07f865222": { + "address": "0x77776b40c3d75cb07ce54dea4b2fd1d07f865222", + "symbol": "BBUSD", + "decimals": 18, + "name": "BounceBit USD", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x77776b40c3d75cb07ce54dea4b2fd1d07f865222.png", + "aggregators": [ + "Metamask", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x8d96b4ab6c741a4c8679ae323a100d74f085ba8f": { + "address": "0x8d96b4ab6c741a4c8679ae323a100d74f085ba8f", + "symbol": "BZR", + "decimals": 18, + "name": "Bazaars", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x8d96b4ab6c741a4c8679ae323a100d74f085ba8f.png", + "aggregators": [ + "Metamask", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0xf5e11df1ebcf78b6b6d26e04ff19cd786a1e81dc": { + "address": "0xf5e11df1ebcf78b6b6d26e04ff19cd786a1e81dc", + "symbol": "BBTC", + "decimals": 18, + "name": "BounceBit BTC", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xf5e11df1ebcf78b6b6d26e04ff19cd786a1e81dc.png", + "aggregators": [ + "Metamask", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x8eb24319393716668d768dcec29356ae9cffe285": { + "address": "0x8eb24319393716668d768dcec29356ae9cffe285", + "symbol": "AGI", + "decimals": 8, + "name": "SingularityNET Token", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x8eb24319393716668d768dcec29356ae9cffe285.png", + "aggregators": ["1inch", "LiFi", "Socket", "Rubic", "Rango"], + "occurrences": 5 + }, + "0xcca0c9c383076649604ee31b20248bc04fdf61ca": { + "address": "0xcca0c9c383076649604ee31b20248bc04fdf61ca", + "symbol": "BTMX", + "decimals": 18, + "name": "BitMax token", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xcca0c9c383076649604ee31b20248bc04fdf61ca.png", + "aggregators": ["1inch", "LiFi", "Socket", "Rubic", "Rango"], + "occurrences": 5 + }, + "0xabe580e7ee158da464b51ee1a83ac0289622e6be": { + "address": "0xabe580e7ee158da464b51ee1a83ac0289622e6be", + "symbol": "XFT", + "decimals": 18, + "name": "Offshift", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xabe580e7ee158da464b51ee1a83ac0289622e6be.png", + "aggregators": ["LiFi", "Socket", "Rubic", "Rango", "SushiSwap"], + "occurrences": 5 + }, + "0x4abb9cc67bd3da9eb966d1159a71a0e68bd15432": { + "address": "0x4abb9cc67bd3da9eb966d1159a71a0e68bd15432", + "symbol": "KEL", + "decimals": 18, + "name": "KelVPN", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x4abb9cc67bd3da9eb966d1159a71a0e68bd15432.png", + "aggregators": ["LiFi", "Socket", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 5 + }, + "0xee7527841a932d2912224e20a405e1a1ff747084": { + "address": "0xee7527841a932d2912224e20a405e1a1ff747084", + "symbol": "SHX", + "decimals": 7, + "name": "Stronghold SHx", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xee7527841a932d2912224e20a405e1a1ff747084.png", + "aggregators": [ + "Socket", + "Rubic", + "Rango", + "Sonarwatch", + "SushiSwap" + ], + "occurrences": 5 + }, + "0x21413c119b0c11c5d96ae1bd328917bc5c8ed67e": { + "address": "0x21413c119b0c11c5d96ae1bd328917bc5c8ed67e", + "symbol": "GENE", + "decimals": 18, + "name": "GenomesDAO", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x21413c119b0c11c5d96ae1bd328917bc5c8ed67e.png", + "aggregators": [ + "Socket", + "Rubic", + "Rango", + "Sonarwatch", + "SushiSwap" + ], + "occurrences": 5 + }, + "0x4f2b33840227ddd0e28da8d4185d6fa07adfed87": { + "address": "0x4f2b33840227ddd0e28da8d4185d6fa07adfed87", + "symbol": "BASED", + "decimals": 18, + "name": "Based Token", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x4f2b33840227ddd0e28da8d4185d6fa07adfed87.png", + "aggregators": ["CoinMarketCap", "Socket", "Rubic", "Rango"], + "occurrences": 4 + }, + "0xc9746f73cc33a36c2cd55b8aefd732586946cedd": { + "address": "0xc9746f73cc33a36c2cd55b8aefd732586946cedd", + "symbol": "BOB", + "decimals": 18, + "name": "BOB", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xc9746f73cc33a36c2cd55b8aefd732586946cedd.png", + "aggregators": ["CoinGecko", "LiFi", "Rubic", "Rango"], + "occurrences": 4 + }, + "0x086f405146ce90135750bbec9a063a8b20a8bffb": { + "address": "0x086f405146ce90135750bbec9a063a8b20a8bffb", + "symbol": "BREV", + "decimals": 18, + "name": "Brevis", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x086f405146ce90135750bbec9a063a8b20a8bffb.png", + "aggregators": ["CoinMarketCap", "Socket", "Rubic", "Rango"], + "occurrences": 4 + }, + "0x6af487beb661ccecd1d045e9561a0dac9aa5c7db": { + "address": "0x6af487beb661ccecd1d045e9561a0dac9aa5c7db", + "symbol": "DUAL", + "decimals": 18, + "name": "Dual", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x6af487beb661ccecd1d045e9561a0dac9aa5c7db.png", + "aggregators": ["CoinMarketCap", "LiFi", "Rubic", "Rango"], + "occurrences": 4 + }, + "0xb0076de78dc50581770bba1d211ddc0ad4f2a241": { + "address": "0xb0076de78dc50581770bba1d211ddc0ad4f2a241", + "symbol": "EDGE", + "decimals": 18, + "name": "Edge", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xb0076de78dc50581770bba1d211ddc0ad4f2a241.png", + "aggregators": ["CoinMarketCap", "LiFi", "Rubic", "Rango"], + "occurrences": 4 + }, + "0xe7e7e741c23a4767831a56a8c99f522c5ac1e7e7": { + "address": "0xe7e7e741c23a4767831a56a8c99f522c5ac1e7e7", + "symbol": "EV", + "decimals": 18, + "name": "Everything", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xe7e7e741c23a4767831a56a8c99f522c5ac1e7e7.png", + "aggregators": ["CoinMarketCap", "LiFi", "Rubic", "Rango"], + "occurrences": 4 + }, + "0x2798b1cc5a993085e8a9d46e80499f1b63f42204": { + "address": "0x2798b1cc5a993085e8a9d46e80499f1b63f42204", + "symbol": "GWEI", + "decimals": 18, + "name": "ETHGas", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x2798b1cc5a993085e8a9d46e80499f1b63f42204.png", + "aggregators": ["CoinMarketCap", "Rubic", "Squid", "Rango"], + "occurrences": 4 + }, + "0xfb072b42907da2bf7a8e8cb5dcaa790d45fd81a8": { + "address": "0xfb072b42907da2bf7a8e8cb5dcaa790d45fd81a8", + "symbol": "K", + "decimals": 18, + "name": "Sidekick", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xfb072b42907da2bf7a8e8cb5dcaa790d45fd81a8.png", + "aggregators": ["CoinMarketCap", "Socket", "Rubic", "Rango"], + "occurrences": 4 + }, + "0x5ca381bbfb58f0092df149bd3d243b08b9a8386e": { + "address": "0x5ca381bbfb58f0092df149bd3d243b08b9a8386e", + "symbol": "MXC", + "decimals": 18, + "name": "MXCToken", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x5ca381bbfb58f0092df149bd3d243b08b9a8386e.png", + "aggregators": ["UniswapLabs", "LiFi", "Rubic", "Rango"], + "occurrences": 4 + }, + "0xd0ec028a3d21533fdd200838f39c85b03679285d": { + "address": "0xd0ec028a3d21533fdd200838f39c85b03679285d", + "symbol": "NEWT", + "decimals": 18, + "name": "Newton Protocol", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xd0ec028a3d21533fdd200838f39c85b03679285d.png", + "aggregators": ["CoinMarketCap", "Socket", "Rubic", "Rango"], + "occurrences": 4 + }, + "0x868fced65edbf0056c4163515dd840e9f287a4c3": { + "address": "0x868fced65edbf0056c4163515dd840e9f287a4c3", + "symbol": "SIGN", + "decimals": 18, + "name": "Sign", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x868fced65edbf0056c4163515dd840e9f287a4c3.png", + "aggregators": ["CoinMarketCap", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0x1bab804803159ad84b8854581aa53ac72455614e": { + "address": "0x1bab804803159ad84b8854581aa53ac72455614e", + "symbol": "SYND", + "decimals": 18, + "name": "Syndicate", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x1bab804803159ad84b8854581aa53ac72455614e.png", + "aggregators": ["CoinMarketCap", "Socket", "Rubic", "Rango"], + "occurrences": 4 + }, + "0x77146784315ba81904d654466968e3a7c196d1f3": { + "address": "0x77146784315ba81904d654466968e3a7c196d1f3", + "symbol": "TREE", + "decimals": 18, + "name": "Treehouse Token", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x77146784315ba81904d654466968e3a7c196d1f3.png", + "aggregators": ["CoinMarketCap", "LiFi", "Rubic", "Rango"], + "occurrences": 4 + }, + "0x3c4b6e6e1ea3d4863700d7f76b36b7f3d3f13e3d": { + "address": "0x3c4b6e6e1ea3d4863700d7f76b36b7f3d3f13e3d", + "symbol": "VGX", + "decimals": 8, + "name": "VGX Token", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x3c4b6e6e1ea3d4863700d7f76b36b7f3d3f13e3d.png", + "aggregators": ["OpenSwap", "Socket", "Rubic", "Sonarwatch"], + "occurrences": 4 + }, + "0x000006c2a22ff4a44ff1f5d0f2ed65f781f55555": { + "address": "0x000006c2a22ff4a44ff1f5d0f2ed65f781f55555", + "symbol": "ZKC", + "decimals": 18, + "name": "ZK Coin", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x000006c2a22ff4a44ff1f5d0f2ed65f781f55555.png", + "aggregators": ["CoinMarketCap", "Socket", "Rubic", "Rango"], + "occurrences": 4 + }, + "0xe1be424f442d0687129128c6c38aace44f8c8dbc": { + "address": "0xe1be424f442d0687129128c6c38aace44f8c8dbc", + "symbol": "ZKP", + "decimals": 18, + "name": "zkPass", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xe1be424f442d0687129128c6c38aace44f8c8dbc.png", + "aggregators": ["CoinMarketCap", "Socket", "Rubic", "Rango"], + "occurrences": 4 + }, + "0x12e51e77daaa58aa0e9247db7510ea4b46f9bead": { + "address": "0x12e51e77daaa58aa0e9247db7510ea4b46f9bead", + "symbol": "AYFI", + "decimals": 18, + "name": "Aave Interest bearing YFI", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x12e51e77daaa58aa0e9247db7510ea4b46f9bead.png", + "aggregators": ["CoinMarketCap", "LiFi", "Socket", "Rubic"], + "occurrences": 4 + }, + "0xcc80c051057b774cd75067dc48f8987c4eb97a5e": { + "address": "0xcc80c051057b774cd75067dc48f8987c4eb97a5e", + "symbol": "NEC", + "decimals": 18, + "name": "NEC", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xcc80c051057b774cd75067dc48f8987c4eb97a5e.png", + "aggregators": ["CoinMarketCap", "LiFi", "Rubic", "Rango"], + "occurrences": 4 + }, + "0x196f4727526ea7fb1e17b2071b3d8eaa38486988": { + "address": "0x196f4727526ea7fb1e17b2071b3d8eaa38486988", + "symbol": "RSV", + "decimals": 18, + "name": "Reserve", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x196f4727526ea7fb1e17b2071b3d8eaa38486988.png", + "aggregators": ["Metamask", "LiFi", "Rubic", "Rango"], + "occurrences": 4 + }, + "0x0327112423f3a68efdf1fcf402f6c5cb9f7c33fd": { + "address": "0x0327112423f3a68efdf1fcf402f6c5cb9f7c33fd", + "symbol": "BTC++", + "decimals": 18, + "name": "BTC++", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x0327112423f3a68efdf1fcf402f6c5cb9f7c33fd.png", + "aggregators": ["CoinMarketCap", "LiFi", "Rubic", "Rango"], + "occurrences": 4 + }, + "0xb1dc9124c395c1e97773ab855d66e879f053a289": { + "address": "0xb1dc9124c395c1e97773ab855d66e879f053a289", + "symbol": "YAX", + "decimals": 18, + "name": "yAxis", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xb1dc9124c395c1e97773ab855d66e879f053a289.png", + "aggregators": ["Metamask", "LiFi", "Rubic", "Rango"], + "occurrences": 4 + }, + "0x054f76beed60ab6dbeb23502178c52d6c5debe40": { + "address": "0x054f76beed60ab6dbeb23502178c52d6c5debe40", + "symbol": "FIN", + "decimals": 18, + "name": "DeFiner", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x054f76beed60ab6dbeb23502178c52d6c5debe40.png", + "aggregators": ["CoinMarketCap", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0x44b28991b167582f18ba0259e0173176ca125505": { + "address": "0x44b28991b167582f18ba0259e0173176ca125505", + "symbol": "UPEG", + "decimals": 18, + "name": "Unipeg", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x44b28991b167582f18ba0259e0173176ca125505.png", + "aggregators": ["CoinMarketCap", "Socket", "Rubic", "Rango"], + "occurrences": 4 + }, + "0xace8e719899f6e91831b18ae746c9a965c2119f1": { + "address": "0xace8e719899f6e91831b18ae746c9a965c2119f1", + "symbol": "USDON", + "decimals": 18, + "name": "Ondo U.S. Dollar Token", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xace8e719899f6e91831b18ae746c9a965c2119f1.png", + "aggregators": ["CoinGecko", "Rubic", "Rango", "Ondo"], + "occurrences": 4 + }, + "0x50bd66d59911f5e086ec87ae43c811e0d059dd11": { + "address": "0x50bd66d59911f5e086ec87ae43c811e0d059dd11", + "symbol": "SBOLD", + "decimals": 18, + "name": "sBold", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x50bd66d59911f5e086ec87ae43c811e0d059dd11.png", + "aggregators": ["CoinGecko", "LiFi", "Rubic"], + "occurrences": 3 + }, + "0xb214b79eac9378a56d14d6e6d452150c80d6ad79": { + "address": "0xb214b79eac9378a56d14d6e6d452150c80d6ad79", + "symbol": "MEMEX", + "decimals": 18, + "name": "Meme Index", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xb214b79eac9378a56d14d6e6d452150c80d6ad79.png", + "aggregators": ["CoinMarketCap", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0x9f277edfc463ebaa3d2a6274b01177697e910391": { + "address": "0x9f277edfc463ebaa3d2a6274b01177697e910391", + "symbol": "WOOLLY", + "decimals": 18, + "name": "Miniature Woolly Mammoth", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x9f277edfc463ebaa3d2a6274b01177697e910391.png", + "aggregators": ["CoinMarketCap", "1inch", "Rubic", "Rango"], + "occurrences": 4 + }, + "0x3db228fe836d99ccb25ec4dfdc80ed6d2cddcb4b": { + "address": "0x3db228fe836d99ccb25ec4dfdc80ed6d2cddcb4b", + "symbol": "YNUSDX", + "decimals": 18, + "name": "ynUSD Max", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x3db228fe836d99ccb25ec4dfdc80ed6d2cddcb4b.png", + "aggregators": ["CoinMarketCap", "LiFi", "Rubic"], + "occurrences": 3 + }, + "0x57240c3e140f98abe315ca8e0213c7a77f34a334": { + "address": "0x57240c3e140f98abe315ca8e0213c7a77f34a334", + "symbol": "RDO", + "decimals": 18, + "name": "Reddio", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x57240c3e140f98abe315ca8e0213c7a77f34a334.png", + "aggregators": ["CoinMarketCap", "Rubic", "Sonarwatch"], + "occurrences": 3 + }, + "0x97ccc1c046d067ab945d3cf3cc6920d3b1e54c88": { + "address": "0x97ccc1c046d067ab945d3cf3cc6920d3b1e54c88", + "symbol": "USP", + "decimals": 18, + "name": "USP", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x97ccc1c046d067ab945d3cf3cc6920d3b1e54c88.png", + "aggregators": ["CoinGecko", "LiFi", "Rubic", "Rango"], + "occurrences": 4 + }, + "0x08efcc2f3e61185d0ea7f8830b3fec9bfa2ee313": { + "address": "0x08efcc2f3e61185d0ea7f8830b3fec9bfa2ee313", + "symbol": "SNUSD", + "decimals": 18, + "name": "Staked NUSD", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x08efcc2f3e61185d0ea7f8830b3fec9bfa2ee313.png", + "aggregators": ["CoinGecko", "LiFi", "Rubic"], + "occurrences": 3 + }, + "0xf5f52266a57e6d7312da39bd7ab9527b9e975c40": { + "address": "0xf5f52266a57e6d7312da39bd7ab9527b9e975c40", + "symbol": "AVM", + "decimals": 18, + "name": "Agents Virtual Machine", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xf5f52266a57e6d7312da39bd7ab9527b9e975c40.png", + "aggregators": ["CoinMarketCap", "1inch", "Rubic", "Rango"], + "occurrences": 4 + }, + "0x690f1eef8acead09ac695d9111af081045c6d5b7": { + "address": "0x690f1eef8acead09ac695d9111af081045c6d5b7", + "symbol": "GNET", + "decimals": 18, + "name": "GNET", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x690f1eef8acead09ac695d9111af081045c6d5b7.png", + "aggregators": ["CoinMarketCap", "LiFi", "Rubic"], + "occurrences": 3 + }, + "0x71d24baeb0a033ec5f90ff65c4210545af378d97": { + "address": "0x71d24baeb0a033ec5f90ff65c4210545af378d97", + "symbol": "GMEON", + "decimals": 18, + "name": "GameStop (Ondo Tokenized)", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x71d24baeb0a033ec5f90ff65c4210545af378d97.png", + "aggregators": ["CoinGecko", "Rubic", "Rango", "Ondo"], + "occurrences": 4, + "rwaData": { + "market": { + "nextOpen": "2026-05-18T20:01:00.000Z", + "nextClose": "2026-05-18T19:59:00.000Z" + }, + "nextPause": { + "start": "2026-06-09T09:00:00.000Z", + "end": "2026-06-09T23:30:00.000Z" + }, + "ticker": "GME", + "instrumentType": "stock" + } + }, + "0xecca809227d43b895754382f1fd871628d7e51fb": { + "address": "0xecca809227d43b895754382f1fd871628d7e51fb", + "symbol": "LANLAN", + "decimals": 9, + "name": "LanLan Cat", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xecca809227d43b895754382f1fd871628d7e51fb.png", + "aggregators": ["CoinMarketCap", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0x6133dca8149c0eb57328cf8fa4f212f0241ffbb1": { + "address": "0x6133dca8149c0eb57328cf8fa4f212f0241ffbb1", + "symbol": "CORN", + "decimals": 18, + "name": "Cornbit", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x6133dca8149c0eb57328cf8fa4f212f0241ffbb1.png", + "aggregators": ["CoinGecko", "Rubic", "Sonarwatch"], + "occurrences": 3 + }, + "0x11fa1193743061591cbe47c9e0765eaebaa3a046": { + "address": "0x11fa1193743061591cbe47c9e0765eaebaa3a046", + "symbol": "NKP", + "decimals": 18, + "name": "NonKyotoProtocol", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x11fa1193743061591cbe47c9e0765eaebaa3a046.png", + "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0x9fb442d6b612a6dcd2acc67bb53771ef1d9f661a": { + "address": "0x9fb442d6b612a6dcd2acc67bb53771ef1d9f661a", + "symbol": "MRE7BTC", + "decimals": 18, + "name": "Midas Re7 BTC", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x9fb442d6b612a6dcd2acc67bb53771ef1d9f661a.png", + "aggregators": ["CoinGecko", "LiFi", "Rubic"], + "occurrences": 3 + }, + "0x8cf5f383fd3a5a730813c61371f90b6ecddf2d3e": { + "address": "0x8cf5f383fd3a5a730813c61371f90b6ecddf2d3e", + "symbol": "QU3", + "decimals": 18, + "name": "QU3ai", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x8cf5f383fd3a5a730813c61371f90b6ecddf2d3e.png", + "aggregators": ["CoinMarketCap", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0x2e8fafaf34f610af898d6a5eabcad82417c56ed9": { + "address": "0x2e8fafaf34f610af898d6a5eabcad82417c56ed9", + "symbol": "DEXL", + "decimals": 18, + "name": "Dexlens", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x2e8fafaf34f610af898d6a5eabcad82417c56ed9.png", + "aggregators": ["CoinGecko", "Socket", "Rubic"], + "occurrences": 3 + }, + "0x2f714d7b9a035d4ce24af8d9b6091c07e37f43fb": { + "address": "0x2f714d7b9a035d4ce24af8d9b6091c07e37f43fb", + "symbol": "NODE", + "decimals": 18, + "name": "NODE", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x2f714d7b9a035d4ce24af8d9b6091c07e37f43fb.png", + "aggregators": ["CoinMarketCap", "LiFi", "Rubic", "Rango"], + "occurrences": 4 + }, + "0xa4b855f6713d1a04a2331149db995476dc3e694b": { + "address": "0xa4b855f6713d1a04a2331149db995476dc3e694b", + "symbol": "BABYDOG", + "decimals": 9, + "name": "Babydog", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xa4b855f6713d1a04a2331149db995476dc3e694b.png", + "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0xf816507e690f5aa4e29d164885eb5fa7a5627860": { + "address": "0xf816507e690f5aa4e29d164885eb5fa7a5627860", + "symbol": "RATO", + "decimals": 9, + "name": "Rato The Rat", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xf816507e690f5aa4e29d164885eb5fa7a5627860.png", + "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0x52c7aa73dc430dab948eee73ea253383fd223420": { + "address": "0x52c7aa73dc430dab948eee73ea253383fd223420", + "symbol": "BBBTC", + "decimals": 18, + "name": "Big Back Bitcoin", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x52c7aa73dc430dab948eee73ea253383fd223420.png", + "aggregators": ["CoinMarketCap", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0x5eeaa2dcb23056f4e8654a349e57ebe5e76b5e6e": { + "address": "0x5eeaa2dcb23056f4e8654a349e57ebe5e76b5e6e", + "symbol": "VPP", + "decimals": 18, + "name": "Virtue Poker Points", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x5eeaa2dcb23056f4e8654a349e57ebe5e76b5e6e.png", + "aggregators": ["CoinMarketCap", "Socket", "Rubic", "Sonarwatch"], + "occurrences": 4 + }, + "0x6c0aeceedc55c9d55d8b99216a670d85330941c3": { + "address": "0x6c0aeceedc55c9d55d8b99216a670d85330941c3", + "symbol": "PRL", + "decimals": 18, + "name": "PRL", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x6c0aeceedc55c9d55d8b99216a670d85330941c3.png", + "aggregators": ["CoinMarketCap", "LiFi", "Rubic", "Rango"], + "occurrences": 4 + }, + "0xd014cb8d4bbccb75fc3a7c941528fd5e891259cf": { + "address": "0xd014cb8d4bbccb75fc3a7c941528fd5e891259cf", + "symbol": "L", + "decimals": 18, + "name": "Launch On USD1", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xd014cb8d4bbccb75fc3a7c941528fd5e891259cf.png", + "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0xd588099529386028455ab8d91dc82552e9e5aaf0": { + "address": "0xd588099529386028455ab8d91dc82552e9e5aaf0", + "symbol": "ANJU", + "decimals": 9, + "name": "Anju", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xd588099529386028455ab8d91dc82552e9e5aaf0.png", + "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0x04e69ff14a86e1ca9a155a8563e95887973ee175": { + "address": "0x04e69ff14a86e1ca9a155a8563e95887973ee175", + "symbol": "AITV", + "decimals": 18, + "name": "Agentcoin TV", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x04e69ff14a86e1ca9a155a8563e95887973ee175.png", + "aggregators": ["CoinMarketCap", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0x67d9c7daecc5b87c3e68ac89f33ee924fac88c05": { + "address": "0x67d9c7daecc5b87c3e68ac89f33ee924fac88c05", + "symbol": "MOOCOW", + "decimals": 9, + "name": "Moo Cow", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x67d9c7daecc5b87c3e68ac89f33ee924fac88c05.png", + "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0x666acd390fa42d5bf86e9c42dc2fa6f6b4b2d8ab": { + "address": "0x666acd390fa42d5bf86e9c42dc2fa6f6b4b2d8ab", + "symbol": "GORTH", + "decimals": 18, + "name": "Gorth", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x666acd390fa42d5bf86e9c42dc2fa6f6b4b2d8ab.png", + "aggregators": ["CoinMarketCap", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0xf42845b7fd65709f251146ab373933f20e9d7c41": { + "address": "0xf42845b7fd65709f251146ab373933f20e9d7c41", + "symbol": "FROGO", + "decimals": 18, + "name": "FROGO", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xf42845b7fd65709f251146ab373933f20e9d7c41.png", + "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0x0c8276e4fec072cf7854be69c70f7773d1610857": { + "address": "0x0c8276e4fec072cf7854be69c70f7773d1610857", + "symbol": "COSTON", + "decimals": 18, + "name": "Costco (Ondo Tokenized)", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x0c8276e4fec072cf7854be69c70f7773d1610857.png", + "aggregators": ["CoinGecko", "Rubic", "Rango", "Ondo"], + "occurrences": 4, + "rwaData": { + "market": { + "nextOpen": "2026-05-18T20:01:00.000Z", + "nextClose": "2026-05-18T19:59:00.000Z" + }, + "nextPause": { + "start": "2026-05-28T20:00:00.000Z", + "end": "2026-05-28T23:30:00.000Z" + }, + "ticker": "COST", + "instrumentType": "stock" + } + }, + "0x323c03c48660fe31186fa82c289b0766d331ce21": { + "address": "0x323c03c48660fe31186fa82c289b0766d331ce21", + "symbol": "OPEN", + "decimals": 18, + "name": "Open Stablecoin Index", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x323c03c48660fe31186fa82c289b0766d331ce21.png", + "aggregators": ["CoinGecko", "Rubic", "Sonarwatch"], + "occurrences": 3 + }, + "0xd86571bfb6753c252764c4ae37fd54888774d32e": { + "address": "0xd86571bfb6753c252764c4ae37fd54888774d32e", + "symbol": "KABOSU", + "decimals": 18, + "name": "Kabosu ERC20", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xd86571bfb6753c252764c4ae37fd54888774d32e.png", + "aggregators": ["CoinMarketCap", "Rubic", "Sonarwatch"], + "occurrences": 3 + }, + "0xf30f62963cce132f32306d7f18a8587958b30ea9": { + "address": "0xf30f62963cce132f32306d7f18a8587958b30ea9", + "symbol": "ATVUSDC", + "decimals": 18, + "name": "aarna atv USDC", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xf30f62963cce132f32306d7f18a8587958b30ea9.png", + "aggregators": ["CoinGecko", "LiFi", "Rubic"], + "occurrences": 3 + }, + "0xc7290af237d1d3f6b207b7acb3dd186b868da500": { + "address": "0xc7290af237d1d3f6b207b7acb3dd186b868da500", + "symbol": "BEAT", + "decimals": 18, + "name": "Beat Matchmaker", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xc7290af237d1d3f6b207b7acb3dd186b868da500.png", + "aggregators": ["CoinGecko", "Socket", "Rubic", "Rango"], + "occurrences": 4 + }, + "0x20226607b4fa64228abf3072ce561d6257683464": { + "address": "0x20226607b4fa64228abf3072ce561d6257683464", + "symbol": "MSYRUPUSD", + "decimals": 18, + "name": "syrupUSDC supercharged", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x20226607b4fa64228abf3072ce561d6257683464.png", + "aggregators": ["CoinGecko", "LiFi", "Rubic"], + "occurrences": 3 + }, + "0x6604c7d7e343e2abd10aa66f6c496abee875cf71": { + "address": "0x6604c7d7e343e2abd10aa66f6c496abee875cf71", + "symbol": "LAI", + "decimals": 9, + "name": "Live AI", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x6604c7d7e343e2abd10aa66f6c496abee875cf71.png", + "aggregators": ["CoinGecko", "Socket", "Rubic", "Rango"], + "occurrences": 4 + }, + "0xb6d369faf21cda1b281013ea83badf6bb26b884d": { + "address": "0xb6d369faf21cda1b281013ea83badf6bb26b884d", + "symbol": "MU", + "decimals": 9, + "name": "Mu Chan", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xb6d369faf21cda1b281013ea83badf6bb26b884d.png", + "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0x586675a3a46b008d8408933cf42d8ff6c9cc61a1": { + "address": "0x586675a3a46b008d8408933cf42d8ff6c9cc61a1", + "symbol": "YOGOLD", + "decimals": 6, + "name": "yoGOLD", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x586675a3a46b008d8408933cf42d8ff6c9cc61a1.png", + "aggregators": ["CoinGecko", "LiFi", "Rubic"], + "occurrences": 3 + }, + "0xe6f98920852a360497dbcc8ec895f1bb1f7c8df4": { + "address": "0xe6f98920852a360497dbcc8ec895f1bb1f7c8df4", + "symbol": "VISION", + "decimals": 9, + "name": "OpenVision", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xe6f98920852a360497dbcc8ec895f1bb1f7c8df4.png", + "aggregators": ["CoinMarketCap", "1inch", "Rubic", "Rango"], + "occurrences": 4 + }, + "0x2bbd8602091bd1b90797d894163c0de76045f71c": { + "address": "0x2bbd8602091bd1b90797d894163c0de76045f71c", + "symbol": "END", + "decimals": 18, + "name": "END", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x2bbd8602091bd1b90797d894163c0de76045f71c.png", + "aggregators": ["CoinMarketCap", "Rubic", "Squid", "Rango"], + "occurrences": 4 + }, + "0xe6d07e1a7c9f8f9826aa82e6faf7feab698dd4fe": { + "address": "0xe6d07e1a7c9f8f9826aa82e6faf7feab698dd4fe", + "symbol": "ROCKET", + "decimals": 9, + "name": "Project Rocket", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xe6d07e1a7c9f8f9826aa82e6faf7feab698dd4fe.png", + "aggregators": ["CoinGecko", "Rubic", "Sonarwatch"], + "occurrences": 3 + }, + "0x3859385363f7bb4dfe42811ccf3f294fcd41dd1d": { + "address": "0x3859385363f7bb4dfe42811ccf3f294fcd41dd1d", + "symbol": "ABTON", + "decimals": 18, + "name": "Abbott (Ondo Tokenized)", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x3859385363f7bb4dfe42811ccf3f294fcd41dd1d.png", + "aggregators": ["CoinGecko", "Rubic", "Rango", "Ondo"], + "occurrences": 4, + "rwaData": { + "market": { + "nextOpen": "2026-05-18T20:01:00.000Z", + "nextClose": "2026-05-18T19:59:00.000Z" + }, + "nextPause": { + "start": null, + "end": null + }, + "ticker": "ABT", + "instrumentType": "stock" + } + }, + "0xca468554e5c0423ee858fe3942c9568c51fcaa79": { + "address": "0xca468554e5c0423ee858fe3942c9568c51fcaa79", + "symbol": "HIMSON", + "decimals": 18, + "name": "Hims & Hers Health (Ondo Tokenized)", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xca468554e5c0423ee858fe3942c9568c51fcaa79.png", + "aggregators": ["CoinGecko", "Rubic", "Rango", "Ondo"], + "occurrences": 4, + "rwaData": { + "market": { + "nextOpen": "2026-05-18T20:01:00.000Z", + "nextClose": "2026-05-18T19:59:00.000Z" + }, + "nextPause": { + "start": null, + "end": null + }, + "ticker": "HIMS", + "instrumentType": "stock" + } + }, + "0x1e33e98af620f1d563fcd3cfd3c75ace841204ef": { + "address": "0x1e33e98af620f1d563fcd3cfd3c75ace841204ef", + "symbol": "DUSD", + "decimals": 18, + "name": "Dialectic USD", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x1e33e98af620f1d563fcd3cfd3c75ace841204ef.png", + "aggregators": ["CoinGecko", "LiFi", "Rubic", "Rango"], + "occurrences": 4 + }, + "0xae9f227a68a307afa799fa024198ba6d1d83da4b": { + "address": "0xae9f227a68a307afa799fa024198ba6d1d83da4b", + "symbol": "TARO", + "decimals": 9, + "name": "Taro", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xae9f227a68a307afa799fa024198ba6d1d83da4b.png", + "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0x699ccf919c1dfdfa4c374292f42cadc9899bf753": { + "address": "0x699ccf919c1dfdfa4c374292f42cadc9899bf753", + "symbol": "VSN", + "decimals": 18, + "name": "Vision", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x699ccf919c1dfdfa4c374292f42cadc9899bf753.png", + "aggregators": ["CoinMarketCap", "LiFi", "Rubic", "Rango"], + "occurrences": 4 + }, + "0x61fac5f038515572d6f42d4bcb6b581642753d50": { + "address": "0x61fac5f038515572d6f42d4bcb6b581642753d50", + "symbol": "IN", + "decimals": 18, + "name": "IN", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x61fac5f038515572d6f42d4bcb6b581642753d50.png", + "aggregators": ["CoinMarketCap", "Socket", "Rubic", "Rango"], + "occurrences": 4 + }, + "0x5bcd8195e3ef58f677aef9ebc276b5087c027050": { + "address": "0x5bcd8195e3ef58f677aef9ebc276b5087c027050", + "symbol": "UBERON", + "decimals": 18, + "name": "Uber (Ondo Tokenized)", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x5bcd8195e3ef58f677aef9ebc276b5087c027050.png", + "aggregators": ["CoinGecko", "Rubic", "Rango", "Ondo"], + "occurrences": 4, + "rwaData": { + "market": { + "nextOpen": "2026-05-18T20:01:00.000Z", + "nextClose": "2026-05-18T19:59:00.000Z" + }, + "nextPause": { + "start": null, + "end": null + }, + "ticker": "UBER", + "instrumentType": "stock" + } + }, + "0xe3419710c1f77d44b4dab02316d3f048818c4e59": { + "address": "0xe3419710c1f77d44b4dab02316d3f048818c4e59", + "symbol": "QCOMON", + "decimals": 18, + "name": "Qualcomm (Ondo Tokenized)", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xe3419710c1f77d44b4dab02316d3f048818c4e59.png", + "aggregators": ["CoinGecko", "Rubic", "Rango", "Ondo"], + "occurrences": 4, + "rwaData": { + "market": { + "nextOpen": "2026-05-18T20:01:00.000Z", + "nextClose": "2026-05-18T19:59:00.000Z" + }, + "nextPause": { + "start": "2026-06-03T23:52:00.000Z", + "end": "2026-06-04T00:12:00.000Z" + }, + "ticker": "QCOM", + "instrumentType": "stock" + } + }, + "0x5accb2e5c22d84bc2e34decd9b769a0c46b0deba": { + "address": "0x5accb2e5c22d84bc2e34decd9b769a0c46b0deba", + "symbol": "MIDAS", + "decimals": 18, + "name": "Midas of DeFi", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x5accb2e5c22d84bc2e34decd9b769a0c46b0deba.png", + "aggregators": ["CoinGecko", "Rubic", "Sonarwatch"], + "occurrences": 3 + }, + "0xf0bb20865277abd641a307ece5ee04e79073416c": { + "address": "0xf0bb20865277abd641a307ece5ee04e79073416c", + "symbol": "LIQUIDETH", + "decimals": 18, + "name": "LIQUIDETH", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xf0bb20865277abd641a307ece5ee04e79073416c.png", + "aggregators": ["CoinGecko", "Socket", "Rubic", "Rango"], + "occurrences": 4 + }, + "0x774eaf7a53471628768dc679da945847d34b9a55": { + "address": "0x774eaf7a53471628768dc679da945847d34b9a55", + "symbol": "GASS", + "decimals": 18, + "name": "Gasspas", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x774eaf7a53471628768dc679da945847d34b9a55.png", + "aggregators": ["CoinMarketCap", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0x9cf12ccd6020b6888e4d4c4e4c7aca33c1eb91f8": { + "address": "0x9cf12ccd6020b6888e4d4c4e4c7aca33c1eb91f8", + "symbol": "USDAF", + "decimals": 18, + "name": "USDAF", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x9cf12ccd6020b6888e4d4c4e4c7aca33c1eb91f8.png", + "aggregators": ["CoinGecko", "LiFi", "Rubic", "Rango"], + "occurrences": 4 + }, + "0xdeb6b89088ca9b7d7756087c8a0f7c6df46f319c": { + "address": "0xdeb6b89088ca9b7d7756087c8a0f7c6df46f319c", + "symbol": "JDON", + "decimals": 18, + "name": "JD.com (Ondo Tokenized)", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xdeb6b89088ca9b7d7756087c8a0f7c6df46f319c.png", + "aggregators": ["CoinGecko", "Rubic", "Rango", "Ondo"], + "occurrences": 4, + "rwaData": { + "market": { + "nextOpen": "2026-05-18T20:01:00.000Z", + "nextClose": "2026-05-18T19:59:00.000Z" + }, + "nextPause": { + "start": null, + "end": null + }, + "ticker": "JD", + "instrumentType": "stock" + } + }, + "0x30cbdfdaab4bc15e26caf11e1a4703323d77cd3e": { + "address": "0x30cbdfdaab4bc15e26caf11e1a4703323d77cd3e", + "symbol": "CMX", + "decimals": 18, + "name": "CMX Agent", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x30cbdfdaab4bc15e26caf11e1a4703323d77cd3e.png", + "aggregators": ["CoinMarketCap", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0x593ccca4c4bf58b7526a4c164ceef4003c6388db": { + "address": "0x593ccca4c4bf58b7526a4c164ceef4003c6388db", + "symbol": "NALPHA", + "decimals": 6, + "name": "Nest Alpha Vault", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x593ccca4c4bf58b7526a4c164ceef4003c6388db.png", + "aggregators": ["CoinMarketCap", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0x6a76a004f3bda1447b7d8bbea8355866420b8cb5": { + "address": "0x6a76a004f3bda1447b7d8bbea8355866420b8cb5", + "symbol": "CHARLIE", + "decimals": 8, + "name": "Charlie", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x6a76a004f3bda1447b7d8bbea8355866420b8cb5.png", + "aggregators": ["CoinGecko", "Rubic", "Sonarwatch"], + "occurrences": 3 + }, + "0x6f49ee65d1f7953b8724c0c15e22ad189fecd579": { + "address": "0x6f49ee65d1f7953b8724c0c15e22ad189fecd579", + "symbol": "MIPRAMI", + "decimals": 9, + "name": "Mi Prami Le Kibro", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x6f49ee65d1f7953b8724c0c15e22ad189fecd579.png", + "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0xc7f380530c789f61dff8b022874e5185076cc1fb": { + "address": "0xc7f380530c789f61dff8b022874e5185076cc1fb", + "symbol": "GPECTRA", + "decimals": 9, + "name": "Pectra Giraffe", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xc7f380530c789f61dff8b022874e5185076cc1fb.png", + "aggregators": ["CoinMarketCap", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0xcb69e5750f8dc3b69647b9d8b1f45466ace0a027": { + "address": "0xcb69e5750f8dc3b69647b9d8b1f45466ace0a027", + "symbol": "XIAOBAI", + "decimals": 9, + "name": "XiaoBai", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xcb69e5750f8dc3b69647b9d8b1f45466ace0a027.png", + "aggregators": ["CoinGecko", "Rubic", "Squid", "Rango"], + "occurrences": 4 + }, + "0x7e4c9923fd8f18442532a737365c1bfb52579d2f": { + "address": "0x7e4c9923fd8f18442532a737365c1bfb52579d2f", + "symbol": "ARCOS", + "decimals": 18, + "name": "ArcadiaOS", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x7e4c9923fd8f18442532a737365c1bfb52579d2f.png", + "aggregators": ["CoinMarketCap", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0xa1aa371e450c5aee7fff259cbf5cca9384227272": { + "address": "0xa1aa371e450c5aee7fff259cbf5cca9384227272", + "symbol": "PC", + "decimals": 18, + "name": "PC", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xa1aa371e450c5aee7fff259cbf5cca9384227272.png", + "aggregators": ["CoinMarketCap", "LiFi", "Rubic", "Rango"], + "occurrences": 4 + }, + "0x0994bd54cde8f83eab517d833a581b4be5b6f919": { + "address": "0x0994bd54cde8f83eab517d833a581b4be5b6f919", + "symbol": "PALCOIN", + "decimals": 4, + "name": "PALCOIN Ventures", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x0994bd54cde8f83eab517d833a581b4be5b6f919.png", + "aggregators": ["CoinMarketCap", "Rubic", "Sonarwatch"], + "occurrences": 3 + }, + "0x82106347ddbb23ce44cf4ce4053ef1adf8b9323b": { + "address": "0x82106347ddbb23ce44cf4ce4053ef1adf8b9323b", + "symbol": "WMTON", + "decimals": 18, + "name": "Walmart (Ondo Tokenized)", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x82106347ddbb23ce44cf4ce4053ef1adf8b9323b.png", + "aggregators": ["CoinGecko", "Rubic", "Rango", "Ondo"], + "occurrences": 4, + "rwaData": { + "market": { + "nextOpen": "2026-05-18T20:01:00.000Z", + "nextClose": "2026-05-18T19:59:00.000Z" + }, + "nextPause": { + "start": "2026-05-21T09:00:00.000Z", + "end": "2026-05-21T13:31:00.000Z" + }, + "ticker": "WMT", + "instrumentType": "stock" + } + }, + "0xa9431d354cfad3c6b76e50f0e73b43d48be80cd0": { + "address": "0xa9431d354cfad3c6b76e50f0e73b43d48be80cd0", + "symbol": "RDDTON", + "decimals": 18, + "name": "Reddit (Ondo Tokenized)", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xa9431d354cfad3c6b76e50f0e73b43d48be80cd0.png", + "aggregators": ["CoinGecko", "Rubic", "Rango", "Ondo"], + "occurrences": 4, + "rwaData": { + "market": { + "nextOpen": "2026-05-18T20:01:00.000Z", + "nextClose": "2026-05-18T19:59:00.000Z" + }, + "nextPause": { + "start": null, + "end": null + }, + "ticker": "RDDT", + "instrumentType": "stock" + } + }, + "0xbc843b147db4c7e00721d76037b8b92e13afe13f": { + "address": "0xbc843b147db4c7e00721d76037b8b92e13afe13f", + "symbol": "SPGION", + "decimals": 18, + "name": "S&P Global (Ondo Tokenized)", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xbc843b147db4c7e00721d76037b8b92e13afe13f.png", + "aggregators": ["CoinGecko", "Rubic", "Rango", "Ondo"], + "occurrences": 4, + "rwaData": { + "market": { + "nextOpen": "2026-05-18T20:01:00.000Z", + "nextClose": "2026-05-18T19:59:00.000Z" + }, + "nextPause": { + "start": null, + "end": null + }, + "ticker": "SPGI", + "instrumentType": "stock" + } + }, + "0x51477a3002ee04b7542adfe63ccdb50c00ee5147": { + "address": "0x51477a3002ee04b7542adfe63ccdb50c00ee5147", + "symbol": "SLAY", + "decimals": 6, + "name": "SatLayer", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x51477a3002ee04b7542adfe63ccdb50c00ee5147.png", + "aggregators": ["CoinMarketCap", "Socket", "Rubic"], + "occurrences": 3 + }, + "0xbb8774fb97436d23d74c1b882e8e9a69322cfd31": { + "address": "0xbb8774fb97436d23d74c1b882e8e9a69322cfd31", + "symbol": "AMZNON", + "decimals": 18, + "name": "Amazon (Ondo Tokenized)", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xbb8774fb97436d23d74c1b882e8e9a69322cfd31.png", + "aggregators": ["CoinGecko", "Rubic", "Rango", "Ondo"], + "occurrences": 4, + "rwaData": { + "market": { + "nextOpen": "2026-05-18T20:01:00.000Z", + "nextClose": "2026-05-18T19:59:00.000Z" + }, + "nextPause": { + "start": null, + "end": null + }, + "ticker": "AMZN", + "instrumentType": "stock" + } + }, + "0x01ba69727e2860b37bc1a2bd56999c1afb4c15d8": { + "address": "0x01ba69727e2860b37bc1a2bd56999c1afb4c15d8", + "symbol": "YNRWAX", + "decimals": 18, + "name": "YNRWAX", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x01ba69727e2860b37bc1a2bd56999c1afb4c15d8.png", + "aggregators": ["CoinGecko", "LiFi", "Rubic", "Rango"], + "occurrences": 4 + }, + "0x88887be419578051ff9f4eb6c858a951921d8888": { + "address": "0x88887be419578051ff9f4eb6c858a951921d8888", + "symbol": "STCUSD", + "decimals": 18, + "name": "Staked Cap USD", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x88887be419578051ff9f4eb6c858a951921d8888.png", + "aggregators": ["Metamask", "LiFi", "Rubic", "Rango"], + "occurrences": 4 + }, + "0x25d3f236b2d61656eebdea86ac6d42168e340011": { + "address": "0x25d3f236b2d61656eebdea86ac6d42168e340011", + "symbol": "IBMON", + "decimals": 18, + "name": "IBM (Ondo Tokenized)", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x25d3f236b2d61656eebdea86ac6d42168e340011.png", + "aggregators": ["CoinGecko", "Rubic", "Rango", "Ondo"], + "occurrences": 4, + "rwaData": { + "market": { + "nextOpen": "2026-05-18T20:01:00.000Z", + "nextClose": "2026-05-18T19:59:00.000Z" + }, + "nextPause": { + "start": null, + "end": null + }, + "ticker": "IBM", + "instrumentType": "stock" + } + }, + "0x241958c86c7744d15d5f6314ba1ea4c81dda2896": { + "address": "0x241958c86c7744d15d5f6314ba1ea4c81dda2896", + "symbol": "DASHON", + "decimals": 18, + "name": "DoorDash (Ondo Tokenized)", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x241958c86c7744d15d5f6314ba1ea4c81dda2896.png", + "aggregators": ["CoinGecko", "Rubic", "Rango", "Ondo"], + "occurrences": 4, + "rwaData": { + "market": { + "nextOpen": "2026-05-18T20:01:00.000Z", + "nextClose": "2026-05-18T19:59:00.000Z" + }, + "nextPause": { + "start": null, + "end": null + }, + "ticker": "DASH", + "instrumentType": "stock" + } + }, + "0xfd50fc4e3686a8da814c5c3d6121d8ab98a537f0": { + "address": "0xfd50fc4e3686a8da814c5c3d6121d8ab98a537f0", + "symbol": "IJHON", + "decimals": 18, + "name": "iShares Core S&P MidCap ETF (Ondo Tokenized)", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xfd50fc4e3686a8da814c5c3d6121d8ab98a537f0.png", + "aggregators": ["CoinGecko", "Rubic", "Rango", "Ondo"], + "occurrences": 4, + "rwaData": { + "market": { + "nextOpen": "2026-05-18T20:01:00.000Z", + "nextClose": "2026-05-18T19:59:00.000Z" + }, + "nextPause": { + "start": "2027-06-09T23:50:00.000Z", + "end": "2027-06-11T00:00:00.000Z" + }, + "ticker": "IJH", + "instrumentType": "stock" + } + }, + "0x691b126cf619707ed5d16cab1b27c000aa8de300": { + "address": "0x691b126cf619707ed5d16cab1b27c000aa8de300", + "symbol": "LMTON", + "decimals": 18, + "name": "Lockheed (Ondo Tokenized)", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x691b126cf619707ed5d16cab1b27c000aa8de300.png", + "aggregators": ["CoinGecko", "Rubic", "Rango", "Ondo"], + "occurrences": 4, + "rwaData": { + "market": { + "nextOpen": "2026-05-18T20:01:00.000Z", + "nextClose": "2026-05-18T19:59:00.000Z" + }, + "nextPause": { + "start": "2026-05-31T23:52:00.000Z", + "end": "2026-06-01T00:12:00.000Z" + }, + "ticker": "LMT", + "instrumentType": "stock" + } + }, + "0x93aa0ccd1e5628d3a841c4dbdf602d9eb04085d6": { + "address": "0x93aa0ccd1e5628d3a841c4dbdf602d9eb04085d6", + "symbol": "PEPU", + "decimals": 18, + "name": "Pepe Unchained", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x93aa0ccd1e5628d3a841c4dbdf602d9eb04085d6.png", + "aggregators": ["CoinGecko", "LiFi", "Rubic", "Rango"], + "occurrences": 4 + }, + "0xdb57d9c14e357fc01e49035a808779df41e9b4e2": { + "address": "0xdb57d9c14e357fc01e49035a808779df41e9b4e2", + "symbol": "GSON", + "decimals": 18, + "name": "Goldman Sachs (Ondo Tokenized)", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xdb57d9c14e357fc01e49035a808779df41e9b4e2.png", + "aggregators": ["CoinGecko", "Rubic", "Rango", "Ondo"], + "occurrences": 4, + "rwaData": { + "market": { + "nextOpen": "2026-05-18T20:01:00.000Z", + "nextClose": "2026-05-18T19:59:00.000Z" + }, + "nextPause": { + "start": "2026-05-31T23:52:00.000Z", + "end": "2026-06-01T00:12:00.000Z" + }, + "ticker": "GS", + "instrumentType": "stock" + } + }, + "0xda7ad9dea9397cffddae2f8a052b82f1484252b3": { + "address": "0xda7ad9dea9397cffddae2f8a052b82f1484252b3", + "symbol": "RIVER", + "decimals": 18, + "name": "River", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xda7ad9dea9397cffddae2f8a052b82f1484252b3.png", + "aggregators": ["CoinMarketCap", "Rubic", "Squid", "Rango"], + "occurrences": 4 + }, + "0xb812837b81a3a6b81d7cd74cfb19a7f2784555e5": { + "address": "0xb812837b81a3a6b81d7cd74cfb19a7f2784555e5", + "symbol": "MSFTON", + "decimals": 18, + "name": "Microsoft (Ondo Tokenized)", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xb812837b81a3a6b81d7cd74cfb19a7f2784555e5.png", + "aggregators": ["CoinGecko", "Rubic", "Rango", "Ondo"], + "occurrences": 4, + "rwaData": { + "market": { + "nextOpen": "2026-05-18T20:01:00.000Z", + "nextClose": "2026-05-18T19:59:00.000Z" + }, + "nextPause": { + "start": "2026-05-20T23:52:00.000Z", + "end": "2026-05-21T00:12:00.000Z" + }, + "ticker": "MSFT", + "instrumentType": "stock" + } + }, + "0x000000fa00b200406de700041cfc6b19bbfb4d13": { + "address": "0x000000fa00b200406de700041cfc6b19bbfb4d13", + "symbol": "TOWNS", + "decimals": 18, + "name": "TOWNS", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x000000fa00b200406de700041cfc6b19bbfb4d13.png", + "aggregators": ["CoinMarketCap", "Socket", "Rubic", "Rango"], + "occurrences": 4 + }, + "0x350e52bb0f874f3b558a3679aac24268ee37a699": { + "address": "0x350e52bb0f874f3b558a3679aac24268ee37a699", + "symbol": "SAAS", + "decimals": 18, + "name": "SaaSGo", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x350e52bb0f874f3b558a3679aac24268ee37a699.png", + "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0x890a5122aa1da30fec4286de7904ff808f0bd74a": { + "address": "0x890a5122aa1da30fec4286de7904ff808f0bd74a", + "symbol": "MSY", + "decimals": 18, + "name": "MSY", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x890a5122aa1da30fec4286de7904ff808f0bd74a.png", + "aggregators": ["CoinGecko", "LiFi", "Rubic", "Rango"], + "occurrences": 4 + }, + "0x66d13dc0e8c2428c9ff4bc0bd93e934110d17fce": { + "address": "0x66d13dc0e8c2428c9ff4bc0bd93e934110d17fce", + "symbol": "SNARDLER", + "decimals": 9, + "name": "Snardler Wormfriend", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x66d13dc0e8c2428c9ff4bc0bd93e934110d17fce.png", + "aggregators": ["CoinGecko", "Rubic", "Sonarwatch"], + "occurrences": 3 + }, + "0xe778fd9a8d074e4a808092896b33fe3d3452c125": { + "address": "0xe778fd9a8d074e4a808092896b33fe3d3452c125", + "symbol": "FROGGER", + "decimals": 18, + "name": "FROGGER", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xe778fd9a8d074e4a808092896b33fe3d3452c125.png", + "aggregators": ["CoinMarketCap", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0xb0415d55f2c87b7f99285848bd341c367feac1ea": { + "address": "0xb0415d55f2c87b7f99285848bd341c367feac1ea", + "symbol": "1R0R", + "decimals": 18, + "name": "R0AR Token", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xb0415d55f2c87b7f99285848bd341c367feac1ea.png", + "aggregators": ["CoinMarketCap", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0x0b2fa18342d38909e3e44d7103cf3f37b0a0403a": { + "address": "0x0b2fa18342d38909e3e44d7103cf3f37b0a0403a", + "symbol": "TANUKI", + "decimals": 9, + "name": "TANUKI", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x0b2fa18342d38909e3e44d7103cf3f37b0a0403a.png", + "aggregators": ["CoinMarketCap", "1inch", "Rubic", "Rango"], + "occurrences": 4 + }, + "0xe4ad6e3a254d545215089c972056494dfc12406c": { + "address": "0xe4ad6e3a254d545215089c972056494dfc12406c", + "symbol": "KOLT", + "decimals": 9, + "name": "Kolytics", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xe4ad6e3a254d545215089c972056494dfc12406c.png", + "aggregators": ["CoinGecko", "Rubic", "Sonarwatch"], + "occurrences": 3 + }, + "0x0f7dc5d02cc1e1f5ee47854d534d332a1081ccc8": { + "address": "0x0f7dc5d02cc1e1f5ee47854d534d332a1081ccc8", + "symbol": "ZEUS", + "decimals": 9, + "name": "Pepes Dog", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x0f7dc5d02cc1e1f5ee47854d534d332a1081ccc8.png", + "aggregators": ["CoinMarketCap", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0xfd409bc96d126bc8a56479d4c7672015d539f96c": { + "address": "0xfd409bc96d126bc8a56479d4c7672015d539f96c", + "symbol": "VICE", + "decimals": 18, + "name": "VICE", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xfd409bc96d126bc8a56479d4c7672015d539f96c.png", + "aggregators": ["CoinMarketCap", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0x0a2a015a15a8e019abc386fee88b8a6d7a0d90df": { + "address": "0x0a2a015a15a8e019abc386fee88b8a6d7a0d90df", + "symbol": "MXNA", + "decimals": 18, + "name": "Machina", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x0a2a015a15a8e019abc386fee88b8a6d7a0d90df.png", + "aggregators": ["CoinMarketCap", "Rubic", "Sonarwatch"], + "occurrences": 3 + }, + "0xf7af0a8079f12f19533b0df69ce7ee6718b0c46f": { + "address": "0xf7af0a8079f12f19533b0df69ce7ee6718b0c46f", + "symbol": "STHUSD", + "decimals": 18, + "name": "Staked Tharwa USD", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xf7af0a8079f12f19533b0df69ce7ee6718b0c46f.png", + "aggregators": ["CoinMarketCap", "LiFi", "Rubic"], + "occurrences": 3 + }, + "0xb6c0189080a6441caf056b856dd4d795b909c460": { + "address": "0xb6c0189080a6441caf056b856dd4d795b909c460", + "symbol": "MOON", + "decimals": 18, + "name": "Black Unicorn Corp", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xb6c0189080a6441caf056b856dd4d795b909c460.png", + "aggregators": ["CoinMarketCap", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0xbc4c5dff630a86b864bebf48f55faa626ef12323": { + "address": "0xbc4c5dff630a86b864bebf48f55faa626ef12323", + "symbol": "UNIT", + "decimals": 18, + "name": "UNIT", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xbc4c5dff630a86b864bebf48f55faa626ef12323.png", + "aggregators": ["CoinMarketCap", "Rubic", "Sonarwatch"], + "occurrences": 3 + }, + "0x9fbc367b9bb966a2a537989817a088afcaffdc4c": { + "address": "0x9fbc367b9bb966a2a537989817a088afcaffdc4c", + "symbol": "NELIXIR", + "decimals": 6, + "name": "Nest Elixir Vault", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x9fbc367b9bb966a2a537989817a088afcaffdc4c.png", + "aggregators": ["CoinGecko", "Rubic", "Sonarwatch"], + "occurrences": 3 + }, + "0x41b723c73fe13e8f979d5fa80229ce7f24ebedb8": { + "address": "0x41b723c73fe13e8f979d5fa80229ce7f24ebedb8", + "symbol": "ONTACT", + "decimals": 8, + "name": "OnTact", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x41b723c73fe13e8f979d5fa80229ce7f24ebedb8.png", + "aggregators": ["CoinMarketCap", "Rubic", "Sonarwatch"], + "occurrences": 3 + }, + "0x1db1591540d7a6062be0837ca3c808add28844f6": { + "address": "0x1db1591540d7a6062be0837ca3c808add28844f6", + "symbol": "HOHM", + "decimals": 18, + "name": "Origami hOHM", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x1db1591540d7a6062be0837ca3c808add28844f6.png", + "aggregators": ["CoinGecko", "1inch", "Rubic", "Rango"], + "occurrences": 4 + }, + "0xea87148a703adc0de89db2ac2b6b381093ae8ee0": { + "address": "0xea87148a703adc0de89db2ac2b6b381093ae8ee0", + "symbol": "IRIS", + "decimals": 18, + "name": "I.R.I.S by Virtuals", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xea87148a703adc0de89db2ac2b6b381093ae8ee0.png", + "aggregators": ["CoinGecko", "Socket", "Rubic", "Rango"], + "occurrences": 4 + }, + "0xd86830e9c56785e2b703eb0029ae71a943e4d442": { + "address": "0xd86830e9c56785e2b703eb0029ae71a943e4d442", + "symbol": "KOBUSHI", + "decimals": 9, + "name": "Kobushi", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xd86830e9c56785e2b703eb0029ae71a943e4d442.png", + "aggregators": ["CoinMarketCap", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0x271c616157e69a43b4977412a64183cf110edf16": { + "address": "0x271c616157e69a43b4977412a64183cf110edf16", + "symbol": "SUSP", + "decimals": 18, + "name": "SUSP", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x271c616157e69a43b4977412a64183cf110edf16.png", + "aggregators": ["CoinGecko", "LiFi", "Rubic", "Rango"], + "occurrences": 4 + }, + "0x926759a8eaecfadb5d8bdc7a9c7b193c5085f507": { + "address": "0x926759a8eaecfadb5d8bdc7a9c7b193c5085f507", + "symbol": "NURA", + "decimals": 18, + "name": "Nura Labs", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x926759a8eaecfadb5d8bdc7a9c7b193c5085f507.png", + "aggregators": ["CoinMarketCap", "1inch", "Rubic", "Rango"], + "occurrences": 4 + }, + "0xcdbddbdefb0ee3ef03a89afcd714aa4ef310d567": { + "address": "0xcdbddbdefb0ee3ef03a89afcd714aa4ef310d567", + "symbol": "VERTAI", + "decimals": 18, + "name": "Vertical AI", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xcdbddbdefb0ee3ef03a89afcd714aa4ef310d567.png", + "aggregators": ["CoinMarketCap", "Socket", "Rubic", "Sonarwatch"], + "occurrences": 4 + }, + "0x6243558a24cc6116abe751f27e6d7ede50abfc76": { + "address": "0x6243558a24cc6116abe751f27e6d7ede50abfc76", + "symbol": "LVVA", + "decimals": 18, + "name": "Levva Protocol", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x6243558a24cc6116abe751f27e6d7ede50abfc76.png", + "aggregators": ["CoinMarketCap", "Socket", "Rubic", "Sonarwatch"], + "occurrences": 4 + }, + "0x9dc44ae5be187eca9e2a67e33f27a4c91cea1223": { + "address": "0x9dc44ae5be187eca9e2a67e33f27a4c91cea1223", + "symbol": "POWER", + "decimals": 18, + "name": "Power", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x9dc44ae5be187eca9e2a67e33f27a4c91cea1223.png", + "aggregators": ["CoinMarketCap", "LiFi", "Rubic", "Rango"], + "occurrences": 4 + }, + "0x9e72a0e219cff0011069ae7b0da73fa26280f41b": { + "address": "0x9e72a0e219cff0011069ae7b0da73fa26280f41b", + "symbol": "IZZY", + "decimals": 9, + "name": "Izzy", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x9e72a0e219cff0011069ae7b0da73fa26280f41b.png", + "aggregators": ["CoinMarketCap", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0xbf2e353f5db1a01e4e7f051222c666afc81b2574": { + "address": "0xbf2e353f5db1a01e4e7f051222c666afc81b2574", + "symbol": "THEDOGEFATHER", + "decimals": 9, + "name": "DogeFather", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xbf2e353f5db1a01e4e7f051222c666afc81b2574.png", + "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0x45e02bc2875a2914c4f585bbf92a6f28bc07cb70": { + "address": "0x45e02bc2875a2914c4f585bbf92a6f28bc07cb70", + "symbol": "$MBG", + "decimals": 18, + "name": "$MBG Token", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x45e02bc2875a2914c4f585bbf92a6f28bc07cb70.png", + "aggregators": ["CoinMarketCap", "1inch", "Rubic", "Rango"], + "occurrences": 4 + }, + "0xdfa208bb0b811cfbb5fa3ea98ec37aa86180e668": { + "address": "0xdfa208bb0b811cfbb5fa3ea98ec37aa86180e668", + "symbol": "W🍖", + "decimals": 3, + "name": "Unicorn Meat", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xdfa208bb0b811cfbb5fa3ea98ec37aa86180e668.png", + "aggregators": ["CoinGecko", "Socket", "Rubic", "Rango"], + "occurrences": 4 + }, + "0xfc7ea2eb0e0ba0d1d1951ce0a12999f761cfdb98": { + "address": "0xfc7ea2eb0e0ba0d1d1951ce0a12999f761cfdb98", + "symbol": "MATO", + "decimals": 9, + "name": "Mato The Mouse", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xfc7ea2eb0e0ba0d1d1951ce0a12999f761cfdb98.png", + "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0xf8ea18ca502de3ffaa9b8ed95a21878ee41a2f4a": { + "address": "0xf8ea18ca502de3ffaa9b8ed95a21878ee41a2f4a", + "symbol": "BOOCHIE", + "decimals": 18, + "name": "Boochie by Matt Furie", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xf8ea18ca502de3ffaa9b8ed95a21878ee41a2f4a.png", + "aggregators": ["CoinMarketCap", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0x14cf922aa1512adfc34409b63e18d391e4a86a2f": { + "address": "0x14cf922aa1512adfc34409b63e18d391e4a86a2f", + "symbol": "STRAT", + "decimals": 18, + "name": "STRAT", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x14cf922aa1512adfc34409b63e18d391e4a86a2f.png", + "aggregators": ["CoinGecko", "LiFi", "Rubic", "Rango"], + "occurrences": 4 + }, + "0xde496a902836601e86e79d5b10e713c95580640b": { + "address": "0xde496a902836601e86e79d5b10e713c95580640b", + "symbol": "CLOAK", + "decimals": 18, + "name": "Cloak Network", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xde496a902836601e86e79d5b10e713c95580640b.png", + "aggregators": ["CoinMarketCap", "Rubic", "Sonarwatch"], + "occurrences": 3 + }, + "0x21e133e07b6cb3ff846b5a32fa9869a1e5040da1": { + "address": "0x21e133e07b6cb3ff846b5a32fa9869a1e5040da1", + "symbol": "TOR", + "decimals": 18, + "name": "Syntor Ai", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x21e133e07b6cb3ff846b5a32fa9869a1e5040da1.png", + "aggregators": ["CoinMarketCap", "Rubic", "Sonarwatch"], + "occurrences": 3 + }, + "0x404d3295c8b1c61662068db584125a7ebcc0d651": { + "address": "0x404d3295c8b1c61662068db584125a7ebcc0d651", + "symbol": "MAMBO", + "decimals": 18, + "name": "Mambo", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x404d3295c8b1c61662068db584125a7ebcc0d651.png", + "aggregators": ["CoinMarketCap", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0xbc2ecbe2195114b82f03680ed4270fa7008f3be0": { + "address": "0xbc2ecbe2195114b82f03680ed4270fa7008f3be0", + "symbol": "BTC2", + "decimals": 18, + "name": "Bitcoin 2 0", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xbc2ecbe2195114b82f03680ed4270fa7008f3be0.png", + "aggregators": ["CoinMarketCap", "Rubic", "Sonarwatch"], + "occurrences": 3 + }, + "0x14c3abf95cb9c93a8b82c1cdcb76d72cb87b2d4c": { + "address": "0x14c3abf95cb9c93a8b82c1cdcb76d72cb87b2d4c", + "symbol": "AAPLON", + "decimals": 18, + "name": "Apple (Ondo Tokenized)", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x14c3abf95cb9c93a8b82c1cdcb76d72cb87b2d4c.png", + "aggregators": ["CoinGecko", "Rubic", "Rango", "Ondo"], + "occurrences": 4, + "rwaData": { + "market": { + "nextOpen": "2026-05-18T20:01:00.000Z", + "nextClose": "2026-05-18T19:59:00.000Z" + }, + "nextPause": { + "start": null, + "end": null + }, + "ticker": "AAPL", + "instrumentType": "stock" + } + }, + "0xb035c3d5083bdc80074f380aebc9fcb68aba0a28": { + "address": "0xb035c3d5083bdc80074f380aebc9fcb68aba0a28", + "symbol": "ABNBON", + "decimals": 18, + "name": "Airbnb (Ondo Tokenized)", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xb035c3d5083bdc80074f380aebc9fcb68aba0a28.png", + "aggregators": ["CoinGecko", "Rubic", "Rango", "Ondo"], + "occurrences": 4, + "rwaData": { + "market": { + "nextOpen": "2026-05-18T20:01:00.000Z", + "nextClose": "2026-05-18T19:59:00.000Z" + }, + "nextPause": { + "start": null, + "end": null + }, + "ticker": "ABNB", + "instrumentType": "stock" + } + }, + "0xaba9ae731aad63335c604e5f6e6a5db2e05f549d": { + "address": "0xaba9ae731aad63335c604e5f6e6a5db2e05f549d", + "symbol": "ACNON", + "decimals": 18, + "name": "Accenture (Ondo Tokenized)", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xaba9ae731aad63335c604e5f6e6a5db2e05f549d.png", + "aggregators": ["CoinGecko", "Rubic", "Rango", "Ondo"], + "occurrences": 4, + "rwaData": { + "market": { + "nextOpen": "2026-05-18T20:01:00.000Z", + "nextClose": "2026-05-18T19:59:00.000Z" + }, + "nextPause": { + "start": null, + "end": null + }, + "ticker": "ACN", + "instrumentType": "stock" + } + }, + "0x7042a8ffc7c7049684bfbc2fcb41b72380755a43": { + "address": "0x7042a8ffc7c7049684bfbc2fcb41b72380755a43", + "symbol": "ADBEON", + "decimals": 18, + "name": "Adobe (Ondo Tokenized)", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x7042a8ffc7c7049684bfbc2fcb41b72380755a43.png", + "aggregators": ["CoinGecko", "Rubic", "Rango", "Ondo"], + "occurrences": 4, + "rwaData": { + "market": { + "nextOpen": "2026-05-18T20:01:00.000Z", + "nextClose": "2026-05-18T19:59:00.000Z" + }, + "nextPause": { + "start": "2026-06-11T20:00:00.000Z", + "end": "2026-06-11T23:30:00.000Z" + }, + "ticker": "ADBE", + "instrumentType": "stock" + } + }, + "0xff7cf16aa2ffc463b996db2f7b7cf0130336899d": { + "address": "0xff7cf16aa2ffc463b996db2f7b7cf0130336899d", + "symbol": "AGGON", + "decimals": 18, + "name": "iShares Core US Aggregate Bond ETF (Ondo Tokenized)", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xff7cf16aa2ffc463b996db2f7b7cf0130336899d.png", + "aggregators": ["CoinGecko", "Rubic", "Rango", "Ondo"], + "occurrences": 4, + "rwaData": { + "market": { + "nextOpen": "2026-05-18T20:01:00.000Z", + "nextClose": "2026-05-18T19:59:00.000Z" + }, + "nextPause": { + "start": "2027-06-30T23:50:00.000Z", + "end": "2027-07-02T00:00:00.000Z" + }, + "ticker": "AGG", + "instrumentType": "stock" + } + }, + "0x0c1f3412a44ff99e40bf14e06e5ea321ae7b3938": { + "address": "0x0c1f3412a44ff99e40bf14e06e5ea321ae7b3938", + "symbol": "AMDON", + "decimals": 18, + "name": "AMD (Ondo Tokenized)", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x0c1f3412a44ff99e40bf14e06e5ea321ae7b3938.png", + "aggregators": ["CoinGecko", "Rubic", "Rango", "Ondo"], + "occurrences": 4, + "rwaData": { + "market": { + "nextOpen": "2026-05-18T20:01:00.000Z", + "nextClose": "2026-05-18T19:59:00.000Z" + }, + "nextPause": { + "start": null, + "end": null + }, + "ticker": "AMD", + "instrumentType": "stock" + } + }, + "0x4d21affd27183b07335935f81a5c26b6a5a15355": { + "address": "0x4d21affd27183b07335935f81a5c26b6a5a15355", + "symbol": "APOON", + "decimals": 18, + "name": "Apollo Global Management (Ondo Tokenized)", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x4d21affd27183b07335935f81a5c26b6a5a15355.png", + "aggregators": ["CoinGecko", "Rubic", "Rango", "Ondo"], + "occurrences": 4, + "rwaData": { + "market": { + "nextOpen": "2026-05-18T20:01:00.000Z", + "nextClose": "2026-05-18T19:59:00.000Z" + }, + "nextPause": { + "start": "2026-05-18T23:52:00.000Z", + "end": "2026-05-19T00:12:00.000Z" + }, + "ticker": "APO", + "instrumentType": "stock" + } + }, + "0xe2fc85bfb48c4cf147921fbe110cf92ef9f26f94": { + "address": "0xe2fc85bfb48c4cf147921fbe110cf92ef9f26f94", + "symbol": "XUSD", + "decimals": 6, + "name": "XUSD", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xe2fc85bfb48c4cf147921fbe110cf92ef9f26f94.png", + "aggregators": ["CoinMarketCap", "LiFi", "Rubic", "Rango"], + "occurrences": 4 + }, + "0x7743e50f534a7f9f1791dde7dcd89f7783eefc39": { + "address": "0x7743e50f534a7f9f1791dde7dcd89f7783eefc39", + "symbol": "FXSAVE", + "decimals": 18, + "name": "FXSAVE", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x7743e50f534a7f9f1791dde7dcd89f7783eefc39.png", + "aggregators": ["CoinGecko", "LiFi", "Rubic", "Rango"], + "occurrences": 4 + }, + "0x48f9e38f3070ad8945dfeae3fa70987722e3d89c": { + "address": "0x48f9e38f3070ad8945dfeae3fa70987722e3d89c", + "symbol": "IUSD", + "decimals": 18, + "name": "IUSD", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x48f9e38f3070ad8945dfeae3fa70987722e3d89c.png", + "aggregators": ["CoinGecko", "LiFi", "Rubic", "Rango"], + "occurrences": 4 + }, + "0xd5c5b2883735fa9b658dd52e2fcc8d7c0f1a42ce": { + "address": "0xd5c5b2883735fa9b658dd52e2fcc8d7c0f1a42ce", + "symbol": "APPON", + "decimals": 18, + "name": "AppLovin (Ondo Tokenized)", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xd5c5b2883735fa9b658dd52e2fcc8d7c0f1a42ce.png", + "aggregators": ["CoinGecko", "Rubic", "Rango", "Ondo"], + "occurrences": 4, + "rwaData": { + "market": { + "nextOpen": "2026-05-18T20:01:00.000Z", + "nextClose": "2026-05-18T19:59:00.000Z" + }, + "nextPause": { + "start": null, + "end": null + }, + "ticker": "APP", + "instrumentType": "stock" + } + }, + "0x0aff507ac29b8cea2fb10d2ad14408c2d79a35ad": { + "address": "0x0aff507ac29b8cea2fb10d2ad14408c2d79a35ad", + "symbol": "TALK", + "decimals": 18, + "name": "CrypTalk", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x0aff507ac29b8cea2fb10d2ad14408c2d79a35ad.png", + "aggregators": ["CoinMarketCap", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0x5bf1b2a808598c0ef4af1673a5457d86fe6d7b3d": { + "address": "0x5bf1b2a808598c0ef4af1673a5457d86fe6d7b3d", + "symbol": "ARMON", + "decimals": 18, + "name": "Arm Holdings plc (Ondo Tokenized)", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x5bf1b2a808598c0ef4af1673a5457d86fe6d7b3d.png", + "aggregators": ["CoinGecko", "Rubic", "Rango", "Ondo"], + "occurrences": 4, + "rwaData": { + "market": { + "nextOpen": "2026-05-18T20:01:00.000Z", + "nextClose": "2026-05-18T19:59:00.000Z" + }, + "nextPause": { + "start": null, + "end": null + }, + "ticker": "ARM", + "instrumentType": "stock" + } + }, + "0xe51ba774ebf6392c45bf1d9e6b334d07992460d3": { + "address": "0xe51ba774ebf6392c45bf1d9e6b334d07992460d3", + "symbol": "ASMLON", + "decimals": 18, + "name": "ASML Holding NV (Ondo Tokenized)", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xe51ba774ebf6392c45bf1d9e6b334d07992460d3.png", + "aggregators": ["CoinGecko", "Rubic", "Rango", "Ondo"], + "occurrences": 4, + "rwaData": { + "market": { + "nextOpen": "2026-05-18T20:01:00.000Z", + "nextClose": "2026-05-18T19:59:00.000Z" + }, + "nextPause": { + "start": null, + "end": null + }, + "ticker": "ASML", + "instrumentType": "stock" + } + }, + "0x2ee7097bfdd98fce2ac08a1896038a7cd9aaed81": { + "address": "0x2ee7097bfdd98fce2ac08a1896038a7cd9aaed81", + "symbol": "GAIA", + "decimals": 18, + "name": "GAIA", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x2ee7097bfdd98fce2ac08a1896038a7cd9aaed81.png", + "aggregators": ["CoinMarketCap", "Socket", "Rubic", "Rango"], + "occurrences": 4 + }, + "0x0d54d4279b9e8c54cd8547c2c75a8ee81a0bcae8": { + "address": "0x0d54d4279b9e8c54cd8547c2c75a8ee81a0bcae8", + "symbol": "AVGOON", + "decimals": 18, + "name": "Broadcom (Ondo Tokenized)", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x0d54d4279b9e8c54cd8547c2c75a8ee81a0bcae8.png", + "aggregators": ["CoinGecko", "Rubic", "Rango", "Ondo"], + "occurrences": 4, + "rwaData": { + "market": { + "nextOpen": "2026-05-18T20:01:00.000Z", + "nextClose": "2026-05-18T19:59:00.000Z" + }, + "nextPause": { + "start": "2026-06-03T20:00:00.000Z", + "end": "2026-06-03T23:30:00.000Z" + }, + "ticker": "AVGO", + "instrumentType": "stock" + } + }, + "0x2bc7ff0c5da9f1a4a51f96e77c5b0f7165dc06d2": { + "address": "0x2bc7ff0c5da9f1a4a51f96e77c5b0f7165dc06d2", + "symbol": "AXPON", + "decimals": 18, + "name": "American Express (Ondo Tokenized)", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x2bc7ff0c5da9f1a4a51f96e77c5b0f7165dc06d2.png", + "aggregators": ["CoinGecko", "Rubic", "Rango", "Ondo"], + "occurrences": 4, + "rwaData": { + "market": { + "nextOpen": "2026-05-18T20:01:00.000Z", + "nextClose": "2026-05-18T19:59:00.000Z" + }, + "nextPause": { + "start": null, + "end": null + }, + "ticker": "AXP", + "instrumentType": "stock" + } + }, + "0x41765f0fcddc276309195166c7a62ae522fa09ef": { + "address": "0x41765f0fcddc276309195166c7a62ae522fa09ef", + "symbol": "BABAON", + "decimals": 18, + "name": "Alibaba (Ondo Tokenized)", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x41765f0fcddc276309195166c7a62ae522fa09ef.png", + "aggregators": ["CoinGecko", "Rubic", "Rango", "Ondo"], + "occurrences": 4, + "rwaData": { + "market": { + "nextOpen": "2026-05-18T20:01:00.000Z", + "nextClose": "2026-05-18T19:59:00.000Z" + }, + "nextPause": { + "start": null, + "end": null + }, + "ticker": "BABA", + "instrumentType": "stock" + } + }, + "0x57270d35a840bc5c094da6fbeca033fb71ea6ab0": { + "address": "0x57270d35a840bc5c094da6fbeca033fb71ea6ab0", + "symbol": "BAON", + "decimals": 18, + "name": "Boeing (Ondo Tokenized)", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x57270d35a840bc5c094da6fbeca033fb71ea6ab0.png", + "aggregators": ["CoinGecko", "Rubic", "Rango", "Ondo"], + "occurrences": 4, + "rwaData": { + "market": { + "nextOpen": "2026-05-18T20:01:00.000Z", + "nextClose": "2026-05-18T19:59:00.000Z" + }, + "nextPause": { + "start": null, + "end": null + }, + "ticker": "BA", + "instrumentType": "stock" + } + }, + "0x9d4c6ad12b55e4645b585209f90cc26614061e91": { + "address": "0x9d4c6ad12b55e4645b585209f90cc26614061e91", + "symbol": "BIDUON", + "decimals": 18, + "name": "Baidu (Ondo Tokenized)", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x9d4c6ad12b55e4645b585209f90cc26614061e91.png", + "aggregators": ["CoinGecko", "Rubic", "Rango", "Ondo"], + "occurrences": 4, + "rwaData": { + "market": { + "nextOpen": "2026-05-18T20:01:00.000Z", + "nextClose": "2026-05-18T19:59:00.000Z" + }, + "nextPause": { + "start": null, + "end": null + }, + "ticker": "BIDU", + "instrumentType": "stock" + } + }, + "0x7a0f89c1606f71499950aa2590d547c3975b728e": { + "address": "0x7a0f89c1606f71499950aa2590d547c3975b728e", + "symbol": "BLKON", + "decimals": 18, + "name": "Blackrock, Inc. (Ondo Tokenized)", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x7a0f89c1606f71499950aa2590d547c3975b728e.png", + "aggregators": ["CoinGecko", "Rubic", "Rango", "Ondo"], + "occurrences": 4, + "rwaData": { + "market": { + "nextOpen": "2026-05-18T20:01:00.000Z", + "nextClose": "2026-05-18T19:59:00.000Z" + }, + "nextPause": { + "start": null, + "end": null + }, + "ticker": "BLK", + "instrumentType": "stock" + } + }, + "0x5845684b49aef79a5c0f887f50401c247dca7ac6": { + "address": "0x5845684b49aef79a5c0f887f50401c247dca7ac6", + "symbol": "CYC", + "decimals": 18, + "name": "Cycle Network Token", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x5845684b49aef79a5c0f887f50401c247dca7ac6.png", + "aggregators": ["CoinMarketCap", "Socket", "Rubic"], + "occurrences": 3 + }, + "0x25018520138bbab60684ad7983d4432e8b8e926b": { + "address": "0x25018520138bbab60684ad7983d4432e8b8e926b", + "symbol": "CMGON", + "decimals": 18, + "name": "Chipotle (Ondo Tokenized)", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x25018520138bbab60684ad7983d4432e8b8e926b.png", + "aggregators": ["CoinGecko", "Rubic", "Rango", "Ondo"], + "occurrences": 4, + "rwaData": { + "market": { + "nextOpen": "2026-05-18T20:01:00.000Z", + "nextClose": "2026-05-18T19:59:00.000Z" + }, + "nextPause": { + "start": null, + "end": null + }, + "ticker": "CMG", + "instrumentType": "stock" + } + }, + "0xf042cfa86cf1d598a75bdb55c3507a1f39f9493b": { + "address": "0xf042cfa86cf1d598a75bdb55c3507a1f39f9493b", + "symbol": "COINON", + "decimals": 18, + "name": "Coinbase (Ondo Tokenized)", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xf042cfa86cf1d598a75bdb55c3507a1f39f9493b.png", + "aggregators": ["CoinGecko", "Rubic", "Rango", "Ondo"], + "occurrences": 4, + "rwaData": { + "market": { + "nextOpen": "2026-05-18T20:01:00.000Z", + "nextClose": "2026-05-18T19:59:00.000Z" + }, + "nextPause": { + "start": null, + "end": null + }, + "ticker": "COIN", + "instrumentType": "stock" + } + }, + "0x55720ef5b023fd043ae5f8d2e526030207978950": { + "address": "0x55720ef5b023fd043ae5f8d2e526030207978950", + "symbol": "CRMON", + "decimals": 18, + "name": "Salesforce (Ondo Tokenized)", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x55720ef5b023fd043ae5f8d2e526030207978950.png", + "aggregators": ["CoinGecko", "Rubic", "Rango", "Ondo"], + "occurrences": 4, + "rwaData": { + "market": { + "nextOpen": "2026-05-18T20:01:00.000Z", + "nextClose": "2026-05-18T19:59:00.000Z" + }, + "nextPause": { + "start": "2026-05-27T20:00:00.000Z", + "end": "2026-05-27T23:30:00.000Z" + }, + "ticker": "CRM", + "instrumentType": "stock" + } + }, + "0x3632dea96a953c11dac2f00b4a05a32cd1063fae": { + "address": "0x3632dea96a953c11dac2f00b4a05a32cd1063fae", + "symbol": "CRCLON", + "decimals": 18, + "name": "Circle Internet Group (Ondo Tokenized)", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x3632dea96a953c11dac2f00b4a05a32cd1063fae.png", + "aggregators": ["CoinGecko", "Rubic", "Rango", "Ondo"], + "occurrences": 4, + "rwaData": { + "market": { + "nextOpen": "2026-05-18T20:01:00.000Z", + "nextClose": "2026-05-18T19:59:00.000Z" + }, + "nextPause": { + "start": null, + "end": null + }, + "ticker": "CRCL", + "instrumentType": "stock" + } + }, + "0x980a1001ee94e54142b231f44c7ca7c9df71fbe1": { + "address": "0x980a1001ee94e54142b231f44c7ca7c9df71fbe1", + "symbol": "CSCOON", + "decimals": 18, + "name": "Cisco Systems (Ondo Tokenized)", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x980a1001ee94e54142b231f44c7ca7c9df71fbe1.png", + "aggregators": ["CoinGecko", "Rubic", "Rango", "Ondo"], + "occurrences": 4, + "rwaData": { + "market": { + "nextOpen": "2026-05-18T20:01:00.000Z", + "nextClose": "2026-05-18T19:59:00.000Z" + }, + "nextPause": { + "start": null, + "end": null + }, + "ticker": "CSCO", + "instrumentType": "stock" + } + }, + "0x5a42864b14c0c8241ef5ab62dae975b163a2e0c1": { + "address": "0x5a42864b14c0c8241ef5ab62dae975b163a2e0c1", + "symbol": "MHYPERETH", + "decimals": 18, + "name": "Midas Hyperithm ETH", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x5a42864b14c0c8241ef5ab62dae975b163a2e0c1.png", + "aggregators": ["CoinGecko", "LiFi", "Rubic"], + "occurrences": 3 + }, + "0x8f3e41b378ae010c46d255f36bfc1d303b52dceb": { + "address": "0x8f3e41b378ae010c46d255f36bfc1d303b52dceb", + "symbol": "CVXON", + "decimals": 18, + "name": "Chevron (Ondo Tokenized)", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x8f3e41b378ae010c46d255f36bfc1d303b52dceb.png", + "aggregators": ["CoinGecko", "Rubic", "Rango", "Ondo"], + "occurrences": 4, + "rwaData": { + "market": { + "nextOpen": "2026-05-18T20:01:00.000Z", + "nextClose": "2026-05-18T19:59:00.000Z" + }, + "nextPause": { + "start": "2026-05-18T23:52:00.000Z", + "end": "2026-05-19T00:12:00.000Z" + }, + "ticker": "CVX", + "instrumentType": "stock" + } + }, + "0xc3d93b45249e8e06cfeb01d25a96337e8893265d": { + "address": "0xc3d93b45249e8e06cfeb01d25a96337e8893265d", + "symbol": "DISON", + "decimals": 18, + "name": "Disney (Ondo Tokenized)", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xc3d93b45249e8e06cfeb01d25a96337e8893265d.png", + "aggregators": ["CoinGecko", "Rubic", "Rango", "Ondo"], + "occurrences": 4, + "rwaData": { + "market": { + "nextOpen": "2026-05-18T20:01:00.000Z", + "nextClose": "2026-05-18T19:59:00.000Z" + }, + "nextPause": { + "start": "2026-06-29T23:52:00.000Z", + "end": "2026-06-30T00:12:00.000Z" + }, + "ticker": "DIS", + "instrumentType": "stock" + } + }, + "0x77a1a02e4a888ada8620b93c30de8a41e621126c": { + "address": "0x77a1a02e4a888ada8620b93c30de8a41e621126c", + "symbol": "EEMON", + "decimals": 18, + "name": "iShares MSCI Emerging Markets ETF (Ondo Tokenized)", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x77a1a02e4a888ada8620b93c30de8a41e621126c.png", + "aggregators": ["CoinGecko", "Rubic", "Rango", "Ondo"], + "occurrences": 4, + "rwaData": { + "market": { + "nextOpen": "2026-05-18T20:01:00.000Z", + "nextClose": "2026-05-18T19:59:00.000Z" + }, + "nextPause": { + "start": "2027-06-09T23:50:00.000Z", + "end": "2027-06-11T00:00:00.000Z" + }, + "ticker": "EEM", + "instrumentType": "stock" + } + }, + "0x4111b60bc87f2bd1e81e783e271d7f0ec6ee088b": { + "address": "0x4111b60bc87f2bd1e81e783e271d7f0ec6ee088b", + "symbol": "EFAON", + "decimals": 18, + "name": "iShares MSCI EAFE ETF (Ondo Tokenized)", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x4111b60bc87f2bd1e81e783e271d7f0ec6ee088b.png", + "aggregators": ["CoinGecko", "Rubic", "Rango", "Ondo"], + "occurrences": 4, + "rwaData": { + "market": { + "nextOpen": "2026-05-18T20:01:00.000Z", + "nextClose": "2026-05-18T19:59:00.000Z" + }, + "nextPause": { + "start": "2027-06-09T23:50:00.000Z", + "end": "2027-06-11T00:00:00.000Z" + }, + "ticker": "EFA", + "instrumentType": "stock" + } + }, + "0x73d2ccee12c120e7da265a2de9d9f952a0101b4f": { + "address": "0x73d2ccee12c120e7da265a2de9d9f952a0101b4f", + "symbol": "EQIXON", + "decimals": 18, + "name": "Equinix (Ondo Tokenized)", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x73d2ccee12c120e7da265a2de9d9f952a0101b4f.png", + "aggregators": ["CoinGecko", "Rubic", "Rango", "Ondo"], + "occurrences": 4, + "rwaData": { + "market": { + "nextOpen": "2026-05-18T20:01:00.000Z", + "nextClose": "2026-05-18T19:59:00.000Z" + }, + "nextPause": { + "start": "2026-05-19T23:52:00.000Z", + "end": "2026-05-20T00:12:00.000Z" + }, + "ticker": "EQIX", + "instrumentType": "stock" + } + }, + "0x8464f6ecae1ea58ec816c13f964030eab8ec123a": { + "address": "0x8464f6ecae1ea58ec816c13f964030eab8ec123a", + "symbol": "YETH", + "decimals": 18, + "name": "YieldFi yETH", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x8464f6ecae1ea58ec816c13f964030eab8ec123a.png", + "aggregators": ["CoinGecko", "Rubic", "Squid"], + "occurrences": 3 + }, + "0x073e7a0669833d356fa88ca65cc6d454efaaa3c5": { + "address": "0x073e7a0669833d356fa88ca65cc6d454efaaa3c5", + "symbol": "FIGON", + "decimals": 18, + "name": "Figma (Ondo Tokenized)", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x073e7a0669833d356fa88ca65cc6d454efaaa3c5.png", + "aggregators": ["CoinGecko", "Rubic", "Rango", "Ondo"], + "occurrences": 4, + "rwaData": { + "market": { + "nextOpen": "2026-05-18T20:01:00.000Z", + "nextClose": "2026-05-18T19:59:00.000Z" + }, + "nextPause": { + "start": null, + "end": null + }, + "ticker": "FIG", + "instrumentType": "stock" + } + }, + "0x5ce215d9c37a195df88e294a06b8396c296b4e15": { + "address": "0x5ce215d9c37a195df88e294a06b8396c296b4e15", + "symbol": "FUTUON", + "decimals": 18, + "name": "Futu Holdings (Ondo Tokenized)", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x5ce215d9c37a195df88e294a06b8396c296b4e15.png", + "aggregators": ["CoinGecko", "Rubic", "Rango", "Ondo"], + "occurrences": 4, + "rwaData": { + "market": { + "nextOpen": "2026-05-18T20:01:00.000Z", + "nextClose": "2026-05-18T19:59:00.000Z" + }, + "nextPause": { + "start": "2026-06-04T09:00:00.000Z", + "end": "2026-06-04T23:30:00.000Z" + }, + "ticker": "FUTU", + "instrumentType": "stock" + } + }, + "0xd904bcf89b7cedf5c89f9df7e829191d695f847e": { + "address": "0xd904bcf89b7cedf5c89f9df7e829191d695f847e", + "symbol": "GEON", + "decimals": 18, + "name": "General Electric (Ondo Tokenized)", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xd904bcf89b7cedf5c89f9df7e829191d695f847e.png", + "aggregators": ["CoinGecko", "Rubic", "Rango", "Ondo"], + "occurrences": 4, + "rwaData": { + "market": { + "nextOpen": "2026-05-18T20:01:00.000Z", + "nextClose": "2026-05-18T19:59:00.000Z" + }, + "nextPause": { + "start": null, + "end": null + }, + "ticker": "GE", + "instrumentType": "stock" + } + }, + "0x0fedba9178b70e8b54e2af08ebffcf28a1e5a43b": { + "address": "0x0fedba9178b70e8b54e2af08ebffcf28a1e5a43b", + "symbol": "DAM", + "decimals": 18, + "name": "DAM", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x0fedba9178b70e8b54e2af08ebffcf28a1e5a43b.png", + "aggregators": ["CoinMarketCap", "Socket", "Rubic", "Rango"], + "occurrences": 4 + }, + "0xba47214edd2bb43099611b208f75e4b42fdcfedc": { + "address": "0xba47214edd2bb43099611b208f75e4b42fdcfedc", + "symbol": "GOOGLON", + "decimals": 18, + "name": "Alphabet Class A (Ondo Tokenized)", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xba47214edd2bb43099611b208f75e4b42fdcfedc.png", + "aggregators": ["CoinGecko", "Rubic", "Rango", "Ondo"], + "occurrences": 4, + "rwaData": { + "market": { + "nextOpen": "2026-05-18T20:01:00.000Z", + "nextClose": "2026-05-18T19:59:00.000Z" + }, + "nextPause": { + "start": "2026-06-07T23:52:00.000Z", + "end": "2026-06-08T00:12:00.000Z" + }, + "ticker": "GOOGL", + "instrumentType": "stock" + } + }, + "0x998f02a9e343ef6e3e6f28700d5a20f839fd74e6": { + "address": "0x998f02a9e343ef6e3e6f28700d5a20f839fd74e6", + "symbol": "HOODON", + "decimals": 18, + "name": "Robinhood Markets (Ondo Tokenized)", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x998f02a9e343ef6e3e6f28700d5a20f839fd74e6.png", + "aggregators": ["CoinGecko", "Rubic", "Rango", "Ondo"], + "occurrences": 4, + "rwaData": { + "market": { + "nextOpen": "2026-05-18T20:01:00.000Z", + "nextClose": "2026-05-18T19:59:00.000Z" + }, + "nextPause": { + "start": null, + "end": null + }, + "ticker": "HOOD", + "instrumentType": "stock" + } + }, + "0xed3618bb8778f8ebbe2f241da532227591771d04": { + "address": "0xed3618bb8778f8ebbe2f241da532227591771d04", + "symbol": "HYGON", + "decimals": 18, + "name": "iBoxx $ High Yield Corporate Bond ETF (Ondo Tokenized)", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xed3618bb8778f8ebbe2f241da532227591771d04.png", + "aggregators": ["CoinGecko", "Rubic", "Rango", "Ondo"], + "occurrences": 4, + "rwaData": { + "market": { + "nextOpen": "2026-05-18T20:01:00.000Z", + "nextClose": "2026-05-18T19:59:00.000Z" + }, + "nextPause": { + "start": "2027-06-30T23:50:00.000Z", + "end": "2027-07-02T00:00:00.000Z" + }, + "ticker": "HYG", + "instrumentType": "stock" + } + }, + "0x4f0ca3df1c2e6b943cf82e649d576ffe7b2fabcf": { + "address": "0x4f0ca3df1c2e6b943cf82e649d576ffe7b2fabcf", + "symbol": "IAUON", + "decimals": 18, + "name": "iShares Gold Trust (Ondo Tokenized)", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x4f0ca3df1c2e6b943cf82e649d576ffe7b2fabcf.png", + "aggregators": ["CoinGecko", "Rubic", "Rango", "Ondo"], + "occurrences": 4, + "rwaData": { + "market": { + "nextOpen": "2026-05-18T20:01:00.000Z", + "nextClose": "2026-05-18T19:59:00.000Z" + }, + "nextPause": { + "start": null, + "end": null + }, + "ticker": "IAU", + "instrumentType": "stock" + } + }, + "0xfeff7a377a86462f5a2a872009722c154707f09e": { + "address": "0xfeff7a377a86462f5a2a872009722c154707f09e", + "symbol": "IEFAON", + "decimals": 18, + "name": "iShares Core MSCI EAFE ETF (Ondo Tokenized)", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xfeff7a377a86462f5a2a872009722c154707f09e.png", + "aggregators": ["CoinGecko", "Rubic", "Rango", "Ondo"], + "occurrences": 4, + "rwaData": { + "market": { + "nextOpen": "2026-05-18T20:01:00.000Z", + "nextClose": "2026-05-18T19:59:00.000Z" + }, + "nextPause": { + "start": "2027-06-09T23:50:00.000Z", + "end": "2027-06-11T00:00:00.000Z" + }, + "ticker": "IEFA", + "instrumentType": "stock" + } + }, + "0xcdd60d15125bf3362b6838d2506b0fa33bc1a515": { + "address": "0xcdd60d15125bf3362b6838d2506b0fa33bc1a515", + "symbol": "IEMGON", + "decimals": 18, + "name": "iShares Core MSCI Emerging Markets ETF (Ondo Tokenized)", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xcdd60d15125bf3362b6838d2506b0fa33bc1a515.png", + "aggregators": ["CoinGecko", "Rubic", "Rango", "Ondo"], + "occurrences": 4, + "rwaData": { + "market": { + "nextOpen": "2026-05-18T20:01:00.000Z", + "nextClose": "2026-05-18T19:59:00.000Z" + }, + "nextPause": { + "start": null, + "end": null + }, + "ticker": "IEMG", + "instrumentType": "stock" + } + }, + "0xfda09936dbd717368de0835ba441d9e62069d36f": { + "address": "0xfda09936dbd717368de0835ba441d9e62069d36f", + "symbol": "INTCON", + "decimals": 18, + "name": "Intel (Ondo Tokenized)", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xfda09936dbd717368de0835ba441d9e62069d36f.png", + "aggregators": ["CoinGecko", "Rubic", "Rango", "Ondo"], + "occurrences": 4, + "rwaData": { + "market": { + "nextOpen": "2026-05-18T20:01:00.000Z", + "nextClose": "2026-05-18T19:59:00.000Z" + }, + "nextPause": { + "start": null, + "end": null + }, + "ticker": "INTC", + "instrumentType": "stock" + } + }, + "0x6cc0afd51ce4cb6920b775f3d6376ab82b9a93bb": { + "address": "0x6cc0afd51ce4cb6920b775f3d6376ab82b9a93bb", + "symbol": "INTUON", + "decimals": 18, + "name": "Intuit (Ondo Tokenized)", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x6cc0afd51ce4cb6920b775f3d6376ab82b9a93bb.png", + "aggregators": ["CoinGecko", "Rubic", "Rango", "Ondo"], + "occurrences": 4, + "rwaData": { + "market": { + "nextOpen": "2026-05-18T20:01:00.000Z", + "nextClose": "2026-05-18T19:59:00.000Z" + }, + "nextPause": { + "start": "2026-05-20T20:00:00.000Z", + "end": "2026-05-20T23:30:00.000Z" + }, + "ticker": "INTU", + "instrumentType": "stock" + } + }, + "0x0692481c369e2bdc728a69ae31b848343a4567be": { + "address": "0x0692481c369e2bdc728a69ae31b848343a4567be", + "symbol": "ITOTON", + "decimals": 18, + "name": "iShares Core S&P Total US Stock Market ETF (Ondo Tokenized)", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x0692481c369e2bdc728a69ae31b848343a4567be.png", + "aggregators": ["CoinGecko", "Rubic", "Rango", "Ondo"], + "occurrences": 4, + "rwaData": { + "market": { + "nextOpen": "2026-05-18T20:01:00.000Z", + "nextClose": "2026-05-18T19:59:00.000Z" + }, + "nextPause": { + "start": "2027-06-09T23:50:00.000Z", + "end": "2027-06-11T00:00:00.000Z" + }, + "ticker": "ITOT", + "instrumentType": "stock" + } + }, + "0x62ca254a363dc3c748e7e955c20447ab5bf06ff7": { + "address": "0x62ca254a363dc3c748e7e955c20447ab5bf06ff7", + "symbol": "IVVON", + "decimals": 18, + "name": "iShares Core S&P 500 ETF (Ondo Tokenized)", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x62ca254a363dc3c748e7e955c20447ab5bf06ff7.png", + "aggregators": ["CoinGecko", "Rubic", "Rango", "Ondo"], + "occurrences": 4, + "rwaData": { + "market": { + "nextOpen": "2026-05-18T20:01:00.000Z", + "nextClose": "2026-05-18T19:59:00.000Z" + }, + "nextPause": { + "start": "2027-06-09T23:50:00.000Z", + "end": "2027-06-11T00:00:00.000Z" + }, + "ticker": "IVV", + "instrumentType": "stock" + } + }, + "0xeb964a1a6fab73b8c72a0d15c7337fa4804f484d": { + "address": "0xeb964a1a6fab73b8c72a0d15c7337fa4804f484d", + "symbol": "HEMI", + "decimals": 18, + "name": "Hemi", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xeb964a1a6fab73b8c72a0d15c7337fa4804f484d.png", + "aggregators": ["CoinMarketCap", "LiFi", "Rubic", "Rango"], + "occurrences": 4 + }, + "0x8d05432c2786e3f93f1a9a62b9572dbf54f3ea06": { + "address": "0x8d05432c2786e3f93f1a9a62b9572dbf54f3ea06", + "symbol": "IWFON", + "decimals": 18, + "name": "iShares Russell 1000 Growth ETF (Ondo Tokenized)", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x8d05432c2786e3f93f1a9a62b9572dbf54f3ea06.png", + "aggregators": ["CoinGecko", "Rubic", "Rango", "Ondo"], + "occurrences": 4, + "rwaData": { + "market": { + "nextOpen": "2026-05-18T20:01:00.000Z", + "nextClose": "2026-05-18T19:59:00.000Z" + }, + "nextPause": { + "start": "2027-06-09T23:50:00.000Z", + "end": "2027-06-11T00:00:00.000Z" + }, + "ticker": "IWF", + "instrumentType": "stock" + } + }, + "0xb3b3c527ba57cd61648e2ec2f5e006a0b390a9f8": { + "address": "0xb3b3c527ba57cd61648e2ec2f5e006a0b390a9f8", + "symbol": "SAID", + "decimals": 18, + "name": "Staked AI Dollar", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xb3b3c527ba57cd61648e2ec2f5e006a0b390a9f8.png", + "aggregators": ["CoinGecko", "LiFi", "Rubic"], + "occurrences": 3 + }, + "0x070d79021dd7e841123cb0cf554993bf683c511d": { + "address": "0x070d79021dd7e841123cb0cf554993bf683c511d", + "symbol": "IWMON", + "decimals": 18, + "name": "iShares Russell 2000 ETF (Ondo Tokenized)", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x070d79021dd7e841123cb0cf554993bf683c511d.png", + "aggregators": ["CoinGecko", "Rubic", "Rango", "Ondo"], + "occurrences": 4, + "rwaData": { + "market": { + "nextOpen": "2026-05-18T20:01:00.000Z", + "nextClose": "2026-05-18T19:59:00.000Z" + }, + "nextPause": { + "start": "2027-06-09T23:50:00.000Z", + "end": "2027-06-11T00:00:00.000Z" + }, + "ticker": "IWM", + "instrumentType": "stock" + } + }, + "0x9dcf7f739b8c0270e2fc0cc8d0dabe355a150dba": { + "address": "0x9dcf7f739b8c0270e2fc0cc8d0dabe355a150dba", + "symbol": "IWNON", + "decimals": 18, + "name": "iShares Russell 2000 Value ETF (Ondo Tokenized)", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x9dcf7f739b8c0270e2fc0cc8d0dabe355a150dba.png", + "aggregators": ["CoinGecko", "Rubic", "Rango", "Ondo"], + "occurrences": 4, + "rwaData": { + "market": { + "nextOpen": "2026-05-18T20:01:00.000Z", + "nextClose": "2026-05-18T19:59:00.000Z" + }, + "nextPause": { + "start": "2027-06-09T23:50:00.000Z", + "end": "2027-06-11T00:00:00.000Z" + }, + "ticker": "IWN", + "instrumentType": "stock" + } + }, + "0x03c1ec4ca9dbb168e6db0def827c085999cbffaf": { + "address": "0x03c1ec4ca9dbb168e6db0def827c085999cbffaf", + "symbol": "JPMON", + "decimals": 18, + "name": "JPMorgan Chase (Ondo Tokenized)", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x03c1ec4ca9dbb168e6db0def827c085999cbffaf.png", + "aggregators": ["CoinGecko", "Rubic", "Rango", "Ondo"], + "occurrences": 4, + "rwaData": { + "market": { + "nextOpen": "2026-05-18T20:01:00.000Z", + "nextClose": "2026-05-18T19:59:00.000Z" + }, + "nextPause": { + "start": null, + "end": null + }, + "ticker": "JPM", + "instrumentType": "stock" + } + }, + "0x6505f1cc7c08061c6d77a62f59cb501e7550cd50": { + "address": "0x6505f1cc7c08061c6d77a62f59cb501e7550cd50", + "symbol": "LMGX", + "decimals": 18, + "name": "LMGroupToken", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x6505f1cc7c08061c6d77a62f59cb501e7550cd50.png", + "aggregators": ["CoinGecko", "Rubic", "Sonarwatch"], + "occurrences": 3 + }, + "0x74a03d741226f738098c35da8188e57aca50d146": { + "address": "0x74a03d741226f738098c35da8188e57aca50d146", + "symbol": "KOON", + "decimals": 18, + "name": "Coca-Cola (Ondo Tokenized)", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x74a03d741226f738098c35da8188e57aca50d146.png", + "aggregators": ["CoinGecko", "Rubic", "Rango", "Ondo"], + "occurrences": 4, + "rwaData": { + "market": { + "nextOpen": "2026-05-18T20:01:00.000Z", + "nextClose": "2026-05-18T19:59:00.000Z" + }, + "nextPause": { + "start": "2026-06-14T23:52:00.000Z", + "end": "2026-06-15T00:12:00.000Z" + }, + "ticker": "KO", + "instrumentType": "stock" + } + }, + "0xf192957ae52db3eb088654403cc2eded014ae556": { + "address": "0xf192957ae52db3eb088654403cc2eded014ae556", + "symbol": "LLYON", + "decimals": 18, + "name": "Eli Lilly (Ondo Tokenized)", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xf192957ae52db3eb088654403cc2eded014ae556.png", + "aggregators": ["CoinGecko", "Rubic", "Rango", "Ondo"], + "occurrences": 4, + "rwaData": { + "market": { + "nextOpen": "2026-05-18T20:01:00.000Z", + "nextClose": "2026-05-18T19:59:00.000Z" + }, + "nextPause": { + "start": null, + "end": null + }, + "ticker": "LLY", + "instrumentType": "stock" + } + }, + "0xa29dc2102dfc2a0a4a5dcb84af984315567c9858": { + "address": "0xa29dc2102dfc2a0a4a5dcb84af984315567c9858", + "symbol": "MAON", + "decimals": 18, + "name": "Mastercard (Ondo Tokenized)", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xa29dc2102dfc2a0a4a5dcb84af984315567c9858.png", + "aggregators": ["CoinGecko", "Rubic", "Rango", "Ondo"], + "occurrences": 4, + "rwaData": { + "market": { + "nextOpen": "2026-05-18T20:01:00.000Z", + "nextClose": "2026-05-18T19:59:00.000Z" + }, + "nextPause": { + "start": null, + "end": null + }, + "ticker": "MA", + "instrumentType": "stock" + } + }, + "0x7cf9dec92ca9fd46f8d86e7798b72624bc116c05": { + "address": "0x7cf9dec92ca9fd46f8d86e7798b72624bc116c05", + "symbol": "MAPOLLO", + "decimals": 18, + "name": "MAPOLLO", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x7cf9dec92ca9fd46f8d86e7798b72624bc116c05.png", + "aggregators": ["CoinGecko", "LiFi", "Rubic", "Rango"], + "occurrences": 4 + }, + "0x4604b0b581269843ac7a6b70a5fc019e7762e511": { + "address": "0x4604b0b581269843ac7a6b70a5fc019e7762e511", + "symbol": "MARAON", + "decimals": 18, + "name": "MARA Holdings (Ondo Tokenized)", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x4604b0b581269843ac7a6b70a5fc019e7762e511.png", + "aggregators": ["CoinGecko", "Rubic", "Rango", "Ondo"], + "occurrences": 4, + "rwaData": { + "market": { + "nextOpen": "2026-05-18T20:01:00.000Z", + "nextClose": "2026-05-18T19:59:00.000Z" + }, + "nextPause": { + "start": null, + "end": null + }, + "ticker": "MARA", + "instrumentType": "stock" + } + }, + "0x4c82c8cd9a218612dce60b156b73a36705645e3b": { + "address": "0x4c82c8cd9a218612dce60b156b73a36705645e3b", + "symbol": "MCDON", + "decimals": 18, + "name": "McDonald's (Ondo Tokenized)", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x4c82c8cd9a218612dce60b156b73a36705645e3b.png", + "aggregators": ["CoinGecko", "Rubic", "Rango", "Ondo"], + "occurrences": 4, + "rwaData": { + "market": { + "nextOpen": "2026-05-18T20:01:00.000Z", + "nextClose": "2026-05-18T19:59:00.000Z" + }, + "nextPause": { + "start": null, + "end": null + }, + "ticker": "MCD", + "instrumentType": "stock" + } + }, + "0x4ad2118da8a65eaa81402a3d583fef6ee76bdf3f": { + "address": "0x4ad2118da8a65eaa81402a3d583fef6ee76bdf3f", + "symbol": "WFCON", + "decimals": 18, + "name": "Wells Fargo (Ondo Tokenized)", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x4ad2118da8a65eaa81402a3d583fef6ee76bdf3f.png", + "aggregators": ["CoinGecko", "Rubic", "Rango", "Ondo"], + "occurrences": 4, + "rwaData": { + "market": { + "nextOpen": "2026-05-18T20:01:00.000Z", + "nextClose": "2026-05-18T19:59:00.000Z" + }, + "nextPause": { + "start": null, + "end": null + }, + "ticker": "WFC", + "instrumentType": "stock" + } + }, + "0x188d12eb13a5eadd0867074ce8354b1ad6f4790b": { + "address": "0x188d12eb13a5eadd0867074ce8354b1ad6f4790b", + "symbol": "DFX", + "decimals": 18, + "name": "CoinDesk DeFi Select Index", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x188d12eb13a5eadd0867074ce8354b1ad6f4790b.png", + "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0xac37c20c1d0e5285035e056101a64e263ff94a41": { + "address": "0xac37c20c1d0e5285035e056101a64e263ff94a41", + "symbol": "VON", + "decimals": 18, + "name": "Visa (Ondo Tokenized)", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xac37c20c1d0e5285035e056101a64e263ff94a41.png", + "aggregators": ["CoinGecko", "Rubic", "Rango", "Ondo"], + "occurrences": 4, + "rwaData": { + "market": { + "nextOpen": "2026-05-18T20:01:00.000Z", + "nextClose": "2026-05-18T19:59:00.000Z" + }, + "nextPause": { + "start": null, + "end": null + }, + "ticker": "V", + "instrumentType": "stock" + } + }, + "0xbeef088055857739c12cd3765f20b7679def0f51": { + "address": "0xbeef088055857739c12cd3765f20b7679def0f51", + "symbol": "STEAKUSDC", + "decimals": 18, + "name": "STEAKUSDC", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xbeef088055857739c12cd3765f20b7679def0f51.png", + "aggregators": ["CoinGecko", "LiFi", "Rubic", "Rango"], + "occurrences": 4 + }, + "0xb788144df611029c60b859df47e79b7726c4deba": { + "address": "0xb788144df611029c60b859df47e79b7726c4deba", + "symbol": "VULT", + "decimals": 18, + "name": "Vultisig Token", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xb788144df611029c60b859df47e79b7726c4deba.png", + "aggregators": ["CoinMarketCap", "Socket", "Rubic", "Rango"], + "occurrences": 4 + }, + "0x01b19c68f8a9ee3a480da788ba401cfabdf19b93": { + "address": "0x01b19c68f8a9ee3a480da788ba401cfabdf19b93", + "symbol": "LINON", + "decimals": 18, + "name": "Linde plc (Ondo Tokenized)", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x01b19c68f8a9ee3a480da788ba401cfabdf19b93.png", + "aggregators": ["CoinGecko", "Rubic", "Rango", "Ondo"], + "occurrences": 4, + "rwaData": { + "market": { + "nextOpen": "2026-05-18T20:01:00.000Z", + "nextClose": "2026-05-18T19:59:00.000Z" + }, + "nextPause": { + "start": "2026-06-03T23:52:00.000Z", + "end": "2026-06-04T00:12:00.000Z" + }, + "ticker": "LIN", + "instrumentType": "stock" + } + }, + "0xdbdc1ef57537e34680b898e1febd3d68c7389bcb": { + "address": "0xdbdc1ef57537e34680b898e1febd3d68c7389bcb", + "symbol": "SIUSD", + "decimals": 18, + "name": "Staked infiniFi USD", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xdbdc1ef57537e34680b898e1febd3d68c7389bcb.png", + "aggregators": ["CoinGecko", "LiFi", "Rubic"], + "occurrences": 3 + }, + "0x74697d4fd0536c6885334b11d5c6dbf58729369f": { + "address": "0x74697d4fd0536c6885334b11d5c6dbf58729369f", + "symbol": "NEKO", + "decimals": 9, + "name": "Neko", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x74697d4fd0536c6885334b11d5c6dbf58729369f.png", + "aggregators": ["CoinGecko", "Socket", "Rubic"], + "occurrences": 3 + }, + "0x9b5528528656dbc094765e2abb79f293c21191b9": { + "address": "0x9b5528528656dbc094765e2abb79f293c21191b9", + "symbol": "MHYPER", + "decimals": 18, + "name": "MHYPER", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x9b5528528656dbc094765e2abb79f293c21191b9.png", + "aggregators": ["CoinGecko", "LiFi", "Rubic", "Rango"], + "occurrences": 4 + }, + "0xa19f6e0df08a7917f2f8a33db66d0af31ff5eca6": { + "address": "0xa19f6e0df08a7917f2f8a33db66d0af31ff5eca6", + "symbol": "MFARM", + "decimals": 18, + "name": "Midas Farm Capital", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xa19f6e0df08a7917f2f8a33db66d0af31ff5eca6.png", + "aggregators": ["CoinGecko", "LiFi", "Rubic"], + "occurrences": 3 + }, + "0x66bcf6151d5558afb47c38b20663589843156078": { + "address": "0x66bcf6151d5558afb47c38b20663589843156078", + "symbol": "LIUSD-4W", + "decimals": 18, + "name": "Locked iUSD - 4 weeks", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x66bcf6151d5558afb47c38b20663589843156078.png", + "aggregators": ["CoinGecko", "LiFi", "Rubic"], + "occurrences": 3 + }, + "0x2fe058ccf29f123f9dd2aec0418aa66a877d8e50": { + "address": "0x2fe058ccf29f123f9dd2aec0418aa66a877d8e50", + "symbol": "MSYRUPUSDP", + "decimals": 18, + "name": "MSYRUPUSDP", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x2fe058ccf29f123f9dd2aec0418aa66a877d8e50.png", + "aggregators": ["CoinGecko", "LiFi", "Rubic", "Rango"], + "occurrences": 4 + }, + "0xfdc9d2a3cae56e484a85de3c2e812784a8184d0d": { + "address": "0xfdc9d2a3cae56e484a85de3c2e812784a8184d0d", + "symbol": "YUGE", + "decimals": 18, + "name": "ErectusDAO", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xfdc9d2a3cae56e484a85de3c2e812784a8184d0d.png", + "aggregators": ["CoinGecko", "Socket", "Rubic"], + "occurrences": 3 + }, + "0xe556aba6fe6036275ec1f87eda296be72c811bce": { + "address": "0xe556aba6fe6036275ec1f87eda296be72c811bce", + "symbol": "NUSD", + "decimals": 18, + "name": "NUSD", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xe556aba6fe6036275ec1f87eda296be72c811bce.png", + "aggregators": ["CoinGecko", "LiFi", "Rubic", "Rango"], + "occurrences": 4 + }, + "0x871ab8e36cae9af35c6a3488b049965233deb7ed": { + "address": "0x871ab8e36cae9af35c6a3488b049965233deb7ed", + "symbol": "DETH", + "decimals": 18, + "name": "DETH", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x871ab8e36cae9af35c6a3488b049965233deb7ed.png", + "aggregators": ["CoinGecko", "LiFi", "Rubic", "Rango"], + "occurrences": 4 + }, + "0xe33fbe7584eb79e2673abe576b7ac8c0de62565c": { + "address": "0xe33fbe7584eb79e2673abe576b7ac8c0de62565c", + "symbol": "HPP", + "decimals": 18, + "name": "HousePartyProtocol", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xe33fbe7584eb79e2673abe576b7ac8c0de62565c.png", + "aggregators": ["CoinMarketCap", "LiFi", "Rubic"], + "occurrences": 3 + }, + "0x972966bcc17f7d818de4f27dc146ef539c231bdf": { + "address": "0x972966bcc17f7d818de4f27dc146ef539c231bdf", + "symbol": "DBIT", + "decimals": 18, + "name": "DBIT", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x972966bcc17f7d818de4f27dc146ef539c231bdf.png", + "aggregators": ["CoinGecko", "LiFi", "Rubic", "Rango"], + "occurrences": 4 + }, + "0x66fd8de541c0594b4dccdfc13bf3a390e50d3afd": { + "address": "0x66fd8de541c0594b4dccdfc13bf3a390e50d3afd", + "symbol": "TURTLE", + "decimals": 18, + "name": "TURTLE", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x66fd8de541c0594b4dccdfc13bf3a390e50d3afd.png", + "aggregators": ["CoinMarketCap", "LiFi", "Rubic", "Rango"], + "occurrences": 4 + }, + "0xfe0ccc9942e98c963fe6b4e5194eb6e3baa4cb64": { + "address": "0xfe0ccc9942e98c963fe6b4e5194eb6e3baa4cb64", + "symbol": "SYUSD", + "decimals": 18, + "name": "SYUSD", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xfe0ccc9942e98c963fe6b4e5194eb6e3baa4cb64.png", + "aggregators": ["CoinGecko", "LiFi", "Rubic", "Rango"], + "occurrences": 4 + }, + "0xec1227bfb3e76d7a2a9bca24d9e98f68de8bf808": { + "address": "0xec1227bfb3e76d7a2a9bca24d9e98f68de8bf808", + "symbol": "MPRA", + "decimals": 18, + "name": "Maya Preferred PRA", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xec1227bfb3e76d7a2a9bca24d9e98f68de8bf808.png", + "aggregators": ["CoinMarketCap", "Rubic", "Sonarwatch"], + "occurrences": 3 + }, + "0xfb70859efec2ceb84dd4935a0842aa69290020bc": { + "address": "0xfb70859efec2ceb84dd4935a0842aa69290020bc", + "symbol": "PAIRS", + "decimals": 18, + "name": "Pairs", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xfb70859efec2ceb84dd4935a0842aa69290020bc.png", + "aggregators": ["CoinGecko", "Rubic", "Sonarwatch"], + "occurrences": 3 + }, + "0x075756f3b6381a79633438faa8964946bf40163d": { + "address": "0x075756f3b6381a79633438faa8964946bf40163d", + "symbol": "UNHON", + "decimals": 18, + "name": "UnitedHealth (Ondo Tokenized)", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x075756f3b6381a79633438faa8964946bf40163d.png", + "aggregators": ["CoinGecko", "Rubic", "Rango", "Ondo"], + "occurrences": 4, + "rwaData": { + "market": { + "nextOpen": "2026-05-18T20:01:00.000Z", + "nextClose": "2026-05-18T19:59:00.000Z" + }, + "nextPause": { + "start": null, + "end": null + }, + "ticker": "UNH", + "instrumentType": "stock" + } + }, + "0x3cafdbfe682aec17d5ace2f97a2f3ab3dcf6a4a9": { + "address": "0x3cafdbfe682aec17d5ace2f97a2f3ab3dcf6a4a9", + "symbol": "TSMON", + "decimals": 18, + "name": "Taiwan Semiconductor Manufacturing (Ondo Tokenized)", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x3cafdbfe682aec17d5ace2f97a2f3ab3dcf6a4a9.png", + "aggregators": ["CoinGecko", "Rubic", "Rango", "Ondo"], + "occurrences": 4, + "rwaData": { + "market": { + "nextOpen": "2026-05-18T20:01:00.000Z", + "nextClose": "2026-05-18T19:59:00.000Z" + }, + "nextPause": { + "start": null, + "end": null + }, + "ticker": "TSM", + "instrumentType": "stock" + } + }, + "0xab02fc332e9278ebcbbc6b4a8038050c01d15f69": { + "address": "0xab02fc332e9278ebcbbc6b4a8038050c01d15f69", + "symbol": "TMON", + "decimals": 18, + "name": "Toyota (Ondo Tokenized)", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xab02fc332e9278ebcbbc6b4a8038050c01d15f69.png", + "aggregators": ["CoinGecko", "Rubic", "Rango", "Ondo"], + "occurrences": 4, + "rwaData": { + "market": { + "nextOpen": "2026-05-18T20:01:00.000Z", + "nextClose": "2026-05-18T19:59:00.000Z" + }, + "nextPause": { + "start": null, + "end": null + }, + "ticker": "TM", + "instrumentType": "stock" + } + }, + "0x992651bfeb9a0dcc4457610e284ba66d86489d4d": { + "address": "0x992651bfeb9a0dcc4457610e284ba66d86489d4d", + "symbol": "TLTON", + "decimals": 18, + "name": "iShares 20+ Year Treasury Bond ETF (Ondo Tokenized)", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x992651bfeb9a0dcc4457610e284ba66d86489d4d.png", + "aggregators": ["CoinGecko", "Rubic", "Rango", "Ondo"], + "occurrences": 4, + "rwaData": { + "market": { + "nextOpen": "2026-05-18T20:01:00.000Z", + "nextClose": "2026-05-18T19:59:00.000Z" + }, + "nextPause": { + "start": "2027-06-30T23:50:00.000Z", + "end": "2027-07-02T00:00:00.000Z" + }, + "ticker": "TLT", + "instrumentType": "stock" + } + }, + "0x2df38ca485d01fc15e4fd85847ed26b7ef871c1c": { + "address": "0x2df38ca485d01fc15e4fd85847ed26b7ef871c1c", + "symbol": "TIPON", + "decimals": 18, + "name": "iShares TIPS Bond ETF (Ondo Tokenized)", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x2df38ca485d01fc15e4fd85847ed26b7ef871c1c.png", + "aggregators": ["CoinGecko", "Rubic", "Rango", "Ondo"], + "occurrences": 4, + "rwaData": { + "market": { + "nextOpen": "2026-05-18T20:01:00.000Z", + "nextClose": "2026-05-18T19:59:00.000Z" + }, + "nextPause": { + "start": "2027-06-30T23:50:00.000Z", + "end": "2027-07-02T00:00:00.000Z" + }, + "ticker": "TIP", + "instrumentType": "stock" + } + }, + "0x590f21186489ca1612f49a4b1ff5c66acd6796a9": { + "address": "0x590f21186489ca1612f49a4b1ff5c66acd6796a9", + "symbol": "SPOTON", + "decimals": 18, + "name": "Spotify (Ondo Tokenized)", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x590f21186489ca1612f49a4b1ff5c66acd6796a9.png", + "aggregators": ["CoinGecko", "Rubic", "Rango", "Ondo"], + "occurrences": 4, + "rwaData": { + "market": { + "nextOpen": "2026-05-18T20:01:00.000Z", + "nextClose": "2026-05-18T19:59:00.000Z" + }, + "nextPause": { + "start": null, + "end": null + }, + "ticker": "SPOT", + "instrumentType": "stock" + } + }, + "0x5d1a9a9b118ff19721e0111f094f2360b6ef7a2f": { + "address": "0x5d1a9a9b118ff19721e0111f094f2360b6ef7a2f", + "symbol": "SNOWON", + "decimals": 18, + "name": "Snowflake (Ondo Tokenized)", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x5d1a9a9b118ff19721e0111f094f2360b6ef7a2f.png", + "aggregators": ["CoinGecko", "Rubic", "Rango", "Ondo"], + "occurrences": 4, + "rwaData": { + "market": { + "nextOpen": "2026-05-18T20:01:00.000Z", + "nextClose": "2026-05-18T19:59:00.000Z" + }, + "nextPause": { + "start": "2026-05-27T20:00:00.000Z", + "end": "2026-05-27T23:30:00.000Z" + }, + "ticker": "SNOW", + "instrumentType": "stock" + } + }, + "0x2ca12a3f9635fd69c21580def14f25c210ca9612": { + "address": "0x2ca12a3f9635fd69c21580def14f25c210ca9612", + "symbol": "SMCION", + "decimals": 18, + "name": "Super Micro Computer (Ondo Tokenized)", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x2ca12a3f9635fd69c21580def14f25c210ca9612.png", + "aggregators": ["CoinGecko", "Rubic", "Rango", "Ondo"], + "occurrences": 4, + "rwaData": { + "market": { + "nextOpen": "2026-05-18T20:01:00.000Z", + "nextClose": "2026-05-18T19:59:00.000Z" + }, + "nextPause": { + "start": null, + "end": null + }, + "ticker": "SMCI", + "instrumentType": "stock" + } + }, + "0xf3e4872e6a4cf365888d93b6146a2baa7348f1a4": { + "address": "0xf3e4872e6a4cf365888d93b6146a2baa7348f1a4", + "symbol": "SLVON", + "decimals": 18, + "name": "iShares Silver Trust (Ondo Tokenized)", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xf3e4872e6a4cf365888d93b6146a2baa7348f1a4.png", + "aggregators": ["CoinGecko", "Rubic", "Rango", "Ondo"], + "occurrences": 4, + "rwaData": { + "market": { + "nextOpen": "2026-05-18T20:01:00.000Z", + "nextClose": "2026-05-18T19:59:00.000Z" + }, + "nextPause": { + "start": null, + "end": null + }, + "ticker": "SLV", + "instrumentType": "stock" + } + }, + "0x908266c1192628371cff7ad2f5eba4de061a0ac5": { + "address": "0x908266c1192628371cff7ad2f5eba4de061a0ac5", + "symbol": "SHOPON", + "decimals": 18, + "name": "Shopify (Ondo Tokenized)", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x908266c1192628371cff7ad2f5eba4de061a0ac5.png", + "aggregators": ["CoinGecko", "Rubic", "Rango", "Ondo"], + "occurrences": 4, + "rwaData": { + "market": { + "nextOpen": "2026-05-18T20:01:00.000Z", + "nextClose": "2026-05-18T19:59:00.000Z" + }, + "nextPause": { + "start": null, + "end": null + }, + "ticker": "SHOP", + "instrumentType": "stock" + } + }, + "0xf15fbc1349ab99abad63db3f9a510bf413be3bef": { + "address": "0xf15fbc1349ab99abad63db3f9a510bf413be3bef", + "symbol": "SBUXON", + "decimals": 18, + "name": "Starbucks (Ondo Tokenized)", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xf15fbc1349ab99abad63db3f9a510bf413be3bef.png", + "aggregators": ["CoinGecko", "Rubic", "Rango", "Ondo"], + "occurrences": 4, + "rwaData": { + "market": { + "nextOpen": "2026-05-18T20:01:00.000Z", + "nextClose": "2026-05-18T19:59:00.000Z" + }, + "nextPause": { + "start": null, + "end": null + }, + "ticker": "SBUX", + "instrumentType": "stock" + } + }, + "0xfdb46864a7c476f0914c5e82cded3364a9f56f8a": { + "address": "0xfdb46864a7c476f0914c5e82cded3364a9f56f8a", + "symbol": "SBETON", + "decimals": 18, + "name": "SharpLink Gaming (Ondo Tokenized)", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xfdb46864a7c476f0914c5e82cded3364a9f56f8a.png", + "aggregators": ["CoinGecko", "Rubic", "Rango", "Ondo"], + "occurrences": 4, + "rwaData": { + "market": { + "nextOpen": "2026-05-18T20:01:00.000Z", + "nextClose": "2026-05-18T19:59:00.000Z" + }, + "nextPause": { + "start": null, + "end": null + }, + "ticker": "SBET", + "instrumentType": "stock" + } + }, + "0x21deafd91116fce9fe87c8f15bde03f99a309b72": { + "address": "0x21deafd91116fce9fe87c8f15bde03f99a309b72", + "symbol": "RIOTON", + "decimals": 18, + "name": "Riot Platforms (Ondo Tokenized)", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x21deafd91116fce9fe87c8f15bde03f99a309b72.png", + "aggregators": ["CoinGecko", "Rubic", "Rango", "Ondo"], + "occurrences": 4, + "rwaData": { + "market": { + "nextOpen": "2026-05-18T20:01:00.000Z", + "nextClose": "2026-05-18T19:59:00.000Z" + }, + "nextPause": { + "start": null, + "end": null + }, + "ticker": "RIOT", + "instrumentType": "stock" + } + }, + "0x3807562a482b824c08a564dfefcc471806d3e00a": { + "address": "0x3807562a482b824c08a564dfefcc471806d3e00a", + "symbol": "QBTSON", + "decimals": 18, + "name": "D-Wave Quantum (Ondo Tokenized)", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x3807562a482b824c08a564dfefcc471806d3e00a.png", + "aggregators": ["CoinGecko", "Rubic", "Rango", "Ondo"], + "occurrences": 4, + "rwaData": { + "market": { + "nextOpen": "2026-05-18T20:01:00.000Z", + "nextClose": "2026-05-18T19:59:00.000Z" + }, + "nextPause": { + "start": null, + "end": null + }, + "ticker": "QBTS", + "instrumentType": "stock" + } + }, + "0x4efd92f372898b57f292de69fce377dd7d912bdd": { + "address": "0x4efd92f372898b57f292de69fce377dd7d912bdd", + "symbol": "PYPLON", + "decimals": 18, + "name": "PayPal (Ondo Tokenized)", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x4efd92f372898b57f292de69fce377dd7d912bdd.png", + "aggregators": ["CoinGecko", "Rubic", "Rango", "Ondo"], + "occurrences": 4, + "rwaData": { + "market": { + "nextOpen": "2026-05-18T20:01:00.000Z", + "nextClose": "2026-05-18T19:59:00.000Z" + }, + "nextPause": { + "start": "2026-06-03T23:52:00.000Z", + "end": "2026-06-04T00:12:00.000Z" + }, + "ticker": "PYPL", + "instrumentType": "stock" + } + }, + "0x0c666485b02f7a87d21add7aeb9f5e64975aa490": { + "address": "0x0c666485b02f7a87d21add7aeb9f5e64975aa490", + "symbol": "PLTRON", + "decimals": 18, + "name": "Palantir Technologies (Ondo Tokenized)", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x0c666485b02f7a87d21add7aeb9f5e64975aa490.png", + "aggregators": ["CoinGecko", "Rubic", "Rango", "Ondo"], + "occurrences": 4, + "rwaData": { + "market": { + "nextOpen": "2026-05-18T20:01:00.000Z", + "nextClose": "2026-05-18T19:59:00.000Z" + }, + "nextPause": { + "start": null, + "end": null + }, + "ticker": "PLTR", + "instrumentType": "stock" + } + }, + "0x339ce23a355ed6d513dd3e1462975c4ecd86823a": { + "address": "0x339ce23a355ed6d513dd3e1462975c4ecd86823a", + "symbol": "PGON", + "decimals": 18, + "name": "Procter & Gamble (Ondo Tokenized)", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x339ce23a355ed6d513dd3e1462975c4ecd86823a.png", + "aggregators": ["CoinGecko", "Rubic", "Rango", "Ondo"], + "occurrences": 4, + "rwaData": { + "market": { + "nextOpen": "2026-05-18T20:01:00.000Z", + "nextClose": "2026-05-18T19:59:00.000Z" + }, + "nextPause": { + "start": null, + "end": null + }, + "ticker": "PG", + "instrumentType": "stock" + } + }, + "0x06954faa913fa14c28eb1b2e459594f22f33f3de": { + "address": "0x06954faa913fa14c28eb1b2e459594f22f33f3de", + "symbol": "PFEON", + "decimals": 18, + "name": "Pfizer (Ondo Tokenized)", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x06954faa913fa14c28eb1b2e459594f22f33f3de.png", + "aggregators": ["CoinGecko", "Rubic", "Rango", "Ondo"], + "occurrences": 4, + "rwaData": { + "market": { + "nextOpen": "2026-05-18T20:01:00.000Z", + "nextClose": "2026-05-18T19:59:00.000Z" + }, + "nextPause": { + "start": null, + "end": null + }, + "ticker": "PFE", + "instrumentType": "stock" + } + }, + "0x3ce219d498d807317f840f4cb0f03fa27dd65046": { + "address": "0x3ce219d498d807317f840f4cb0f03fa27dd65046", + "symbol": "PEPON", + "decimals": 18, + "name": "PepsiCo (Ondo Tokenized)", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x3ce219d498d807317f840f4cb0f03fa27dd65046.png", + "aggregators": ["CoinGecko", "Rubic", "Rango", "Ondo"], + "occurrences": 4, + "rwaData": { + "market": { + "nextOpen": "2026-05-18T20:01:00.000Z", + "nextClose": "2026-05-18T19:59:00.000Z" + }, + "nextPause": { + "start": "2026-06-04T23:52:00.000Z", + "end": "2026-06-05T00:12:00.000Z" + }, + "ticker": "PEP", + "instrumentType": "stock" + } + }, + "0xd08ddb436e731f32455fe302723ee0fd2e9e8706": { + "address": "0xd08ddb436e731f32455fe302723ee0fd2e9e8706", + "symbol": "PBRON", + "decimals": 18, + "name": "Petrobras (Ondo Tokenized)", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xd08ddb436e731f32455fe302723ee0fd2e9e8706.png", + "aggregators": ["CoinGecko", "Rubic", "Rango", "Ondo"], + "occurrences": 4, + "rwaData": { + "market": { + "nextOpen": "2026-05-18T20:01:00.000Z", + "nextClose": "2026-05-18T19:59:00.000Z" + }, + "nextPause": { + "start": null, + "end": null + }, + "ticker": "PBR", + "instrumentType": "stock" + } + }, + "0x34bfdff25f0fda6d3ad0c33f1e06c0d40bd68885": { + "address": "0x34bfdff25f0fda6d3ad0c33f1e06c0d40bd68885", + "symbol": "PANWON", + "decimals": 18, + "name": "Palo Alto Networks (Ondo Tokenized)", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x34bfdff25f0fda6d3ad0c33f1e06c0d40bd68885.png", + "aggregators": ["CoinGecko", "Rubic", "Rango", "Ondo"], + "occurrences": 4, + "rwaData": { + "market": { + "nextOpen": "2026-05-18T20:01:00.000Z", + "nextClose": "2026-05-18T19:59:00.000Z" + }, + "nextPause": { + "start": "2026-06-02T20:00:00.000Z", + "end": "2026-06-02T23:30:00.000Z" + }, + "ticker": "PANW", + "instrumentType": "stock" + } + }, + "0x8a23c6baadb88512b30475c83df6a63881e33e1e": { + "address": "0x8a23c6baadb88512b30475c83df6a63881e33e1e", + "symbol": "ORCLON", + "decimals": 18, + "name": "Oracle (Ondo Tokenized)", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x8a23c6baadb88512b30475c83df6a63881e33e1e.png", + "aggregators": ["CoinGecko", "Rubic", "Rango", "Ondo"], + "occurrences": 4, + "rwaData": { + "market": { + "nextOpen": "2026-05-18T20:01:00.000Z", + "nextClose": "2026-05-18T19:59:00.000Z" + }, + "nextPause": { + "start": "2026-06-10T09:00:00.000Z", + "end": "2026-06-10T23:30:00.000Z" + }, + "ticker": "ORCL", + "instrumentType": "stock" + } + }, + "0x28151f5888833d3d767c4d6945a0ee50d1b193e3": { + "address": "0x28151f5888833d3d767c4d6945a0ee50d1b193e3", + "symbol": "NVOON", + "decimals": 18, + "name": "Novo Nordisk (Ondo Tokenized)", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x28151f5888833d3d767c4d6945a0ee50d1b193e3.png", + "aggregators": ["CoinGecko", "Rubic", "Rango", "Ondo"], + "occurrences": 4, + "rwaData": { + "market": { + "nextOpen": "2026-05-18T20:01:00.000Z", + "nextClose": "2026-05-18T19:59:00.000Z" + }, + "nextPause": { + "start": null, + "end": null + }, + "ticker": "NVO", + "instrumentType": "stock" + } + }, + "0x2d1f7226bd1f780af6b9a49dcc0ae00e8df4bdee": { + "address": "0x2d1f7226bd1f780af6b9a49dcc0ae00e8df4bdee", + "symbol": "NVDAON", + "decimals": 18, + "name": "NVIDIA (Ondo Tokenized)", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x2d1f7226bd1f780af6b9a49dcc0ae00e8df4bdee.png", + "aggregators": ["CoinGecko", "Rubic", "Rango", "Ondo"], + "occurrences": 4, + "rwaData": { + "market": { + "nextOpen": "2026-05-18T20:01:00.000Z", + "nextClose": "2026-05-18T19:59:00.000Z" + }, + "nextPause": { + "start": "2026-05-20T20:00:00.000Z", + "end": "2026-05-20T23:30:00.000Z" + }, + "ticker": "NVDA", + "instrumentType": "stock" + } + }, + "0x8bcf9012f4b0c1c3d359edb7133c294f82f80790": { + "address": "0x8bcf9012f4b0c1c3d359edb7133c294f82f80790", + "symbol": "NOWON", + "decimals": 18, + "name": "ServiceNow (Ondo Tokenized)", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x8bcf9012f4b0c1c3d359edb7133c294f82f80790.png", + "aggregators": ["CoinGecko", "Rubic", "Rango", "Ondo"], + "occurrences": 4, + "rwaData": { + "market": { + "nextOpen": "2026-05-18T20:01:00.000Z", + "nextClose": "2026-05-18T19:59:00.000Z" + }, + "nextPause": { + "start": null, + "end": null + }, + "ticker": "NOW", + "instrumentType": "stock" + } + }, + "0x391883a5d2438716796336f2e420a92e52b45efe": { + "address": "0x391883a5d2438716796336f2e420a92e52b45efe", + "symbol": "REMUS", + "decimals": 18, + "name": "New Ancient DNA", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x391883a5d2438716796336f2e420a92e52b45efe.png", + "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0xd8e26fcc879b30cb0a0b543925a2b3500f074d81": { + "address": "0xd8e26fcc879b30cb0a0b543925a2b3500f074d81", + "symbol": "NKEON", + "decimals": 18, + "name": "Nike (Ondo Tokenized)", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xd8e26fcc879b30cb0a0b543925a2b3500f074d81.png", + "aggregators": ["CoinGecko", "Rubic", "Rango", "Ondo"], + "occurrences": 4, + "rwaData": { + "market": { + "nextOpen": "2026-05-18T20:01:00.000Z", + "nextClose": "2026-05-18T19:59:00.000Z" + }, + "nextPause": { + "start": "2026-05-31T23:52:00.000Z", + "end": "2026-06-01T00:12:00.000Z" + }, + "ticker": "NKE", + "instrumentType": "stock" + } + }, + "0x032dec3372f25c41ea8054b4987a7c4832cdb338": { + "address": "0x032dec3372f25c41ea8054b4987a7c4832cdb338", + "symbol": "NFLXON", + "decimals": 18, + "name": "Netflix (Ondo Tokenized)", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x032dec3372f25c41ea8054b4987a7c4832cdb338.png", + "aggregators": ["CoinGecko", "Rubic", "Rango", "Ondo"], + "occurrences": 4, + "rwaData": { + "market": { + "nextOpen": "2026-05-18T20:01:00.000Z", + "nextClose": "2026-05-18T19:59:00.000Z" + }, + "nextPause": { + "start": null, + "end": null + }, + "ticker": "NFLX", + "instrumentType": "stock" + } + }, + "0x050362ab1072cb2ce74d74770e22a3203ad04ee5": { + "address": "0x050362ab1072cb2ce74d74770e22a3203ad04ee5", + "symbol": "MUON", + "decimals": 18, + "name": "Micron Technology (Ondo Tokenized)", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x050362ab1072cb2ce74d74770e22a3203ad04ee5.png", + "aggregators": ["CoinGecko", "Rubic", "Rango", "Ondo"], + "occurrences": 4, + "rwaData": { + "market": { + "nextOpen": "2026-05-18T20:01:00.000Z", + "nextClose": "2026-05-18T19:59:00.000Z" + }, + "nextPause": { + "start": null, + "end": null + }, + "ticker": "MU", + "instrumentType": "stock" + } + }, + "0xcabd955322dfbf94c084929ac5e9eca3feb5556f": { + "address": "0xcabd955322dfbf94c084929ac5e9eca3feb5556f", + "symbol": "MSTRON", + "decimals": 18, + "name": "MicroStrategy (Ondo Tokenized)", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xcabd955322dfbf94c084929ac5e9eca3feb5556f.png", + "aggregators": ["CoinGecko", "Rubic", "Rango", "Ondo"], + "occurrences": 4, + "rwaData": { + "market": { + "nextOpen": "2026-05-18T20:01:00.000Z", + "nextClose": "2026-05-18T19:59:00.000Z" + }, + "nextPause": { + "start": null, + "end": null + }, + "ticker": "MSTR", + "instrumentType": "stock" + } + }, + "0xf404e5f887dbd5508e16a1198fcdd5de1a4296b8": { + "address": "0xf404e5f887dbd5508e16a1198fcdd5de1a4296b8", + "symbol": "MRVLON", + "decimals": 18, + "name": "Marvell Technology (Ondo Tokenized)", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xf404e5f887dbd5508e16a1198fcdd5de1a4296b8.png", + "aggregators": ["CoinGecko", "Rubic", "Rango", "Ondo"], + "occurrences": 4, + "rwaData": { + "market": { + "nextOpen": "2026-05-18T20:01:00.000Z", + "nextClose": "2026-05-18T19:59:00.000Z" + }, + "nextPause": { + "start": "2026-05-27T20:00:00.000Z", + "end": "2026-05-27T23:30:00.000Z" + }, + "ticker": "MRVL", + "instrumentType": "stock" + } + }, + "0x59644165402b611b350645555b50afb581c71eb2": { + "address": "0x59644165402b611b350645555b50afb581c71eb2", + "symbol": "METAON", + "decimals": 18, + "name": "Meta Platforms (Ondo Tokenized)", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x59644165402b611b350645555b50afb581c71eb2.png", + "aggregators": ["CoinGecko", "Rubic", "Rango", "Ondo"], + "occurrences": 4, + "rwaData": { + "market": { + "nextOpen": "2026-05-18T20:01:00.000Z", + "nextClose": "2026-05-18T19:59:00.000Z" + }, + "nextPause": { + "start": null, + "end": null + }, + "ticker": "META", + "instrumentType": "stock" + } + }, + "0x2816169a49953c548bfeb3948dcf05c4a0e4657d": { + "address": "0x2816169a49953c548bfeb3948dcf05c4a0e4657d", + "symbol": "MELION", + "decimals": 18, + "name": "MercadoLibre (Ondo Tokenized)", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x2816169a49953c548bfeb3948dcf05c4a0e4657d.png", + "aggregators": ["CoinGecko", "Rubic", "Rango", "Ondo"], + "occurrences": 4, + "rwaData": { + "market": { + "nextOpen": "2026-05-18T20:01:00.000Z", + "nextClose": "2026-05-18T19:59:00.000Z" + }, + "nextPause": { + "start": null, + "end": null + }, + "ticker": "MELI", + "instrumentType": "stock" + } + }, + "0x92cc36d66e9d739d50673d1f27929a371fb83a67": { + "address": "0x92cc36d66e9d739d50673d1f27929a371fb83a67", + "symbol": "WAGMI", + "decimals": 18, + "name": "Wagmi", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x92cc36d66e9d739d50673d1f27929a371fb83a67.png", + "aggregators": ["CoinGecko", "Socket", "Rubic", "Sonarwatch"], + "occurrences": 4 + }, + "0xdefa1d21c5f1cbeac00eeb54b44c7d86467cc3a3": { + "address": "0xdefa1d21c5f1cbeac00eeb54b44c7d86467cc3a3", + "symbol": "ALMANAK", + "decimals": 18, + "name": "Almanak", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xdefa1d21c5f1cbeac00eeb54b44c7d86467cc3a3.png", + "aggregators": ["CoinMarketCap", "LiFi", "Rubic", "Rango"], + "occurrences": 4 + }, + "0x67e1f506b148d0fc95a4e3ffb49068ceb6855c05": { + "address": "0x67e1f506b148d0fc95a4e3ffb49068ceb6855c05", + "symbol": "MROX", + "decimals": 18, + "name": "Midas Rockaway Market Neutral", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x67e1f506b148d0fc95a4e3ffb49068ceb6855c05.png", + "aggregators": ["CoinGecko", "LiFi", "Rubic"], + "occurrences": 3 + }, + "0x27f6c8289550fce67f6b50bed1f519966afe5287": { + "address": "0x27f6c8289550fce67f6b50bed1f519966afe5287", + "symbol": "TGBP", + "decimals": 18, + "name": "TGBP", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x27f6c8289550fce67f6b50bed1f519966afe5287.png", + "aggregators": ["CoinMarketCap", "LiFi", "Rubic", "Rango"], + "occurrences": 4 + }, + "0x627ea69929212916ec57b1b26d2e1a19f6129b53": { + "address": "0x627ea69929212916ec57b1b26d2e1a19f6129b53", + "symbol": "SRMHYPER", + "decimals": 18, + "name": "Strata Senior mHYPER", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x627ea69929212916ec57b1b26d2e1a19f6129b53.png", + "aggregators": ["CoinGecko", "LiFi", "Rubic"], + "occurrences": 3 + }, + "0xeb205d26e9e605ec82d1c0d652e00037c278714b": { + "address": "0xeb205d26e9e605ec82d1c0d652e00037c278714b", + "symbol": "JRMHYPER", + "decimals": 18, + "name": "Strata Junior mHYPER", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xeb205d26e9e605ec82d1c0d652e00037c278714b.png", + "aggregators": ["CoinGecko", "LiFi", "Rubic"], + "occurrences": 3 + }, + "0x63230728bc219d991d2995ce92e96c16fcf8beb6": { + "address": "0x63230728bc219d991d2995ce92e96c16fcf8beb6", + "symbol": "KCT", + "decimals": 18, + "name": "Konnect", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x63230728bc219d991d2995ce92e96c16fcf8beb6.png", + "aggregators": ["CoinMarketCap", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0x6403af1267cacc0714c1bd916b12f80e179c0558": { + "address": "0x6403af1267cacc0714c1bd916b12f80e179c0558", + "symbol": "HAI", + "decimals": 18, + "name": "HAI", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x6403af1267cacc0714c1bd916b12f80e179c0558.png", + "aggregators": ["CoinMarketCap", "Socket", "Rubic", "Rango"], + "occurrences": 4 + }, + "0x5a0f93d040de44e78f251b03c43be9cf317dcf64": { + "address": "0x5a0f93d040de44e78f251b03c43be9cf317dcf64", + "symbol": "JAAA", + "decimals": 6, + "name": "JAAA", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x5a0f93d040de44e78f251b03c43be9cf317dcf64.png", + "aggregators": ["CoinGecko", "LiFi", "Rubic", "Rango"], + "occurrences": 4 + }, + "0x8c213ee79581ff4984583c6a801e5263418c4b86": { + "address": "0x8c213ee79581ff4984583c6a801e5263418c4b86", + "symbol": "JTRSY", + "decimals": 6, + "name": "JTRSY", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x8c213ee79581ff4984583c6a801e5263418c4b86.png", + "aggregators": ["CoinGecko", "LiFi", "Rubic", "Rango"], + "occurrences": 4 + }, + "0xc477b6dfd26ec2460b3b92de18837fd476ea7549": { + "address": "0xc477b6dfd26ec2460b3b92de18837fd476ea7549", + "symbol": "JCT", + "decimals": 18, + "name": "JCT", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xc477b6dfd26ec2460b3b92de18837fd476ea7549.png", + "aggregators": ["CoinMarketCap", "LiFi", "Rubic", "Rango"], + "occurrences": 4 + }, + "0x8c7ac134ed985367eadc6f727d79e8295e11435c": { + "address": "0x8c7ac134ed985367eadc6f727d79e8295e11435c", + "symbol": "KEKEC", + "decimals": 18, + "name": "The Balkan Dwarf", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x8c7ac134ed985367eadc6f727d79e8295e11435c.png", + "aggregators": ["CoinMarketCap", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0x962c8a85f500519266269f77dffba4cea0b46da1": { + "address": "0x962c8a85f500519266269f77dffba4cea0b46da1", + "symbol": "BERRY", + "decimals": 9, + "name": "Strawberry In Bloom", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x962c8a85f500519266269f77dffba4cea0b46da1.png", + "aggregators": ["CoinMarketCap", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0xe0b7ad7f8f26e2b00c8b47b5df370f15f90fcf48": { + "address": "0xe0b7ad7f8f26e2b00c8b47b5df370f15f90fcf48", + "symbol": "SOLX", + "decimals": 18, + "name": "Solaxy", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xe0b7ad7f8f26e2b00c8b47b5df370f15f90fcf48.png", + "aggregators": ["CoinMarketCap", "1inch", "Rubic", "Rango"], + "occurrences": 4 + }, + "0x18f52b3fb465118731d9e0d276d4eb3599d57596": { + "address": "0x18f52b3fb465118731d9e0d276d4eb3599d57596", + "symbol": "AID", + "decimals": 18, + "name": "AI Dollar", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x18f52b3fb465118731d9e0d276d4eb3599d57596.png", + "aggregators": ["CoinGecko", "LiFi", "Rubic"], + "occurrences": 3 + }, + "0x5422374b27757da72d5265cc745ea906e0446634": { + "address": "0x5422374b27757da72d5265cc745ea906e0446634", + "symbol": "USDCV", + "decimals": 18, + "name": "USDCV", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x5422374b27757da72d5265cc745ea906e0446634.png", + "aggregators": ["CoinMarketCap", "1inch", "Rubic", "Rango"], + "occurrences": 4 + }, + "0xbba39fd2935d5769116ce38d46a71bde9cf03099": { + "address": "0xbba39fd2935d5769116ce38d46a71bde9cf03099", + "symbol": "CHO", + "decimals": 18, + "name": "Choise ai", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xbba39fd2935d5769116ce38d46a71bde9cf03099.png", + "aggregators": ["CoinMarketCap", "Socket", "Rubic", "Sonarwatch"], + "occurrences": 4 + }, + "0xb17be9a85d1e04d1aa6ea4b83c0bb6a2030c261f": { + "address": "0xb17be9a85d1e04d1aa6ea4b83c0bb6a2030c261f", + "symbol": "QBIT", + "decimals": 18, + "name": "Qubit", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xb17be9a85d1e04d1aa6ea4b83c0bb6a2030c261f.png", + "aggregators": ["CoinMarketCap", "1inch", "Rubic", "Rango"], + "occurrences": 4 + }, + "0xb4c6fedd984bc983b1a758d0875f1ea34f81a6af": { + "address": "0xb4c6fedd984bc983b1a758d0875f1ea34f81a6af", + "symbol": "OVPP", + "decimals": 9, + "name": "OpenVPP", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xb4c6fedd984bc983b1a758d0875f1ea34f81a6af.png", + "aggregators": ["CoinMarketCap", "1inch", "Rubic", "Rango"], + "occurrences": 4 + }, + "0xc19d38925f9f645337b1d1f37baf3c0647a48e50": { + "address": "0xc19d38925f9f645337b1d1f37baf3c0647a48e50", + "symbol": "GAIB", + "decimals": 18, + "name": "GAIB", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xc19d38925f9f645337b1d1f37baf3c0647a48e50.png", + "aggregators": ["CoinMarketCap", "Socket", "Rubic", "Rango"], + "occurrences": 4 + }, + "0x3d7d6fdf07ee548b939a80edbc9b2256d0cdc003": { + "address": "0x3d7d6fdf07ee548b939a80edbc9b2256d0cdc003", + "symbol": "SRUSDE", + "decimals": 18, + "name": "SRUSDE", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x3d7d6fdf07ee548b939a80edbc9b2256d0cdc003.png", + "aggregators": ["CoinGecko", "LiFi", "Rubic", "Rango"], + "occurrences": 4 + }, + "0x0d45b129dc868963025db79a9074ea9c9e32cae4": { + "address": "0x0d45b129dc868963025db79a9074ea9c9e32cae4", + "symbol": "SUSDP", + "decimals": 18, + "name": "SUSDP", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x0d45b129dc868963025db79a9074ea9c9e32cae4.png", + "aggregators": ["CoinGecko", "LiFi", "Rubic", "Rango"], + "occurrences": 4 + }, + "0x5f342382d5f77f0f99e8f26161e689df6c7cded3": { + "address": "0x5f342382d5f77f0f99e8f26161e689df6c7cded3", + "symbol": "GTWETHB", + "decimals": 18, + "name": "Gauntlet WETH Balanced", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x5f342382d5f77f0f99e8f26161e689df6c7cded3.png", + "aggregators": ["CoinGecko", "LiFi", "Rubic"], + "occurrences": 3 + }, + "0x5791254f5d7a4d7ce4dda0391ce15812b65ac2a2": { + "address": "0x5791254f5d7a4d7ce4dda0391ce15812b65ac2a2", + "symbol": "SLUGLORD", + "decimals": 9, + "name": "G O", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x5791254f5d7a4d7ce4dda0391ce15812b65ac2a2.png", + "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0x6b0faca7ba905a86f221ceb5ca404f605e5b3131": { + "address": "0x6b0faca7ba905a86f221ceb5ca404f605e5b3131", + "symbol": "DEFI", + "decimals": 18, + "name": "DeFi", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x6b0faca7ba905a86f221ceb5ca404f605e5b3131.png", + "aggregators": ["CoinMarketCap", "Socket", "Rubic", "Sonarwatch"], + "occurrences": 4 + }, + "0x140007c65535aa9c3801ea3bbd3f83c378c7f457": { + "address": "0x140007c65535aa9c3801ea3bbd3f83c378c7f457", + "symbol": "X", + "decimals": 9, + "name": "Free Speech", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x140007c65535aa9c3801ea3bbd3f83c378c7f457.png", + "aggregators": ["CoinMarketCap", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0xc58d044404d8b14e953c115e67823784dea53d8f": { + "address": "0xc58d044404d8b14e953c115e67823784dea53d8f", + "symbol": "JRUSDE", + "decimals": 18, + "name": "JRUSDE", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xc58d044404d8b14e953c115e67823784dea53d8f.png", + "aggregators": ["CoinGecko", "LiFi", "Rubic", "Rango"], + "occurrences": 4 + }, + "0xcccc62962d17b8914c62d74ffb843d73b2a3cccc": { + "address": "0xcccc62962d17b8914c62d74ffb843d73b2a3cccc", + "symbol": "CUSD", + "decimals": 18, + "name": "Cap USD", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xcccc62962d17b8914c62d74ffb843d73b2a3cccc.png", + "aggregators": ["Metamask", "LiFi", "Rubic", "Rango"], + "occurrences": 4 + }, + "0xb64c014307622eb15046c66ff71d04258f5963dc": { + "address": "0xb64c014307622eb15046c66ff71d04258f5963dc", + "symbol": "MEVBTC", + "decimals": 18, + "name": "Bitcoin MEV Capital", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xb64c014307622eb15046c66ff71d04258f5963dc.png", + "aggregators": ["CoinGecko", "LiFi", "Rubic"], + "occurrences": 3 + }, + "0xecabe1ff8a9e1dc55899cf58dac8497ece5ae84c": { + "address": "0xecabe1ff8a9e1dc55899cf58dac8497ece5ae84c", + "symbol": "STRCON", + "decimals": 18, + "name": "Strategy Stretch Preferred (Ondo Tokenized)", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xecabe1ff8a9e1dc55899cf58dac8497ece5ae84c.png", + "aggregators": ["CoinGecko", "Rubic", "Rango", "Ondo"], + "occurrences": 4, + "rwaData": { + "market": { + "nextOpen": "2026-05-18T20:01:00.000Z", + "nextClose": "2026-05-18T19:59:00.000Z" + }, + "nextPause": { + "start": null, + "end": null + }, + "ticker": "STRC", + "instrumentType": "stock" + } + }, + "0x769916a66fdac0e3d57363129caac59386ea622b": { + "address": "0x769916a66fdac0e3d57363129caac59386ea622b", + "symbol": "TEER", + "decimals": 12, + "name": "Integritee", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x769916a66fdac0e3d57363129caac59386ea622b.png", + "aggregators": ["CoinMarketCap", "Rubic", "Sonarwatch"], + "occurrences": 3 + }, + "0x70be40667385500c5da7f108a022e21b606045dd": { + "address": "0x70be40667385500c5da7f108a022e21b606045dd", + "symbol": "ST", + "decimals": 18, + "name": "Sentio Token", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x70be40667385500c5da7f108a022e21b606045dd.png", + "aggregators": ["CoinMarketCap", "Socket", "Rubic", "Rango"], + "occurrences": 4 + }, + "0x9b61879e91a0b1322f3d61c23aaf936231882096": { + "address": "0x9b61879e91a0b1322f3d61c23aaf936231882096", + "symbol": "BR", + "decimals": 18, + "name": "BR", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x9b61879e91a0b1322f3d61c23aaf936231882096.png", + "aggregators": ["CoinMarketCap", "LiFi", "Rubic", "Rango"], + "occurrences": 4 + }, + "0xecedb6f8108b9f7bbf499da843dced6c2bb6e270": { + "address": "0xecedb6f8108b9f7bbf499da843dced6c2bb6e270", + "symbol": "USDUC", + "decimals": 18, + "name": "USDUC", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xecedb6f8108b9f7bbf499da843dced6c2bb6e270.png", + "aggregators": ["CoinGecko", "Socket", "Rubic", "Rango"], + "occurrences": 4 + }, + "0xc845b2894dbddd03858fd2d643b4ef725fe0849d": { + "address": "0xc845b2894dbddd03858fd2d643b4ef725fe0849d", + "symbol": "NVDAX", + "decimals": 18, + "name": "NVIDIA xStock", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xc845b2894dbddd03858fd2d643b4ef725fe0849d.png", + "aggregators": ["CoinGecko", "LiFi", "Rubic", "Rango"], + "occurrences": 4 + }, + "0xe94db607eba8f76a377d9bcc327c9856ed90fbde": { + "address": "0xe94db607eba8f76a377d9bcc327c9856ed90fbde", + "symbol": "NINA", + "decimals": 9, + "name": "Nina", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xe94db607eba8f76a377d9bcc327c9856ed90fbde.png", + "aggregators": ["CoinMarketCap", "Rubic", "Sonarwatch"], + "occurrences": 3 + }, + "0x1e44f98cc78d505a61f63b26d13b116cf51dbb87": { + "address": "0x1e44f98cc78d505a61f63b26d13b116cf51dbb87", + "symbol": "RBTC", + "decimals": 18, + "name": "RBTC", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x1e44f98cc78d505a61f63b26d13b116cf51dbb87.png", + "aggregators": ["CoinMarketCap", "Socket", "Rubic", "Rango"], + "occurrences": 4 + }, + "0x3157874a7508fcf972379d24590c6806522b784f": { + "address": "0x3157874a7508fcf972379d24590c6806522b784f", + "symbol": "PFVS", + "decimals": 18, + "name": "Puffverse", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x3157874a7508fcf972379d24590c6806522b784f.png", + "aggregators": ["CoinMarketCap", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0x4af322ff4a6f2858f6b51e546b9ec499654493c5": { + "address": "0x4af322ff4a6f2858f6b51e546b9ec499654493c5", + "symbol": "OBT", + "decimals": 18, + "name": "OBT", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x4af322ff4a6f2858f6b51e546b9ec499654493c5.png", + "aggregators": ["CoinMarketCap", "LiFi", "Rubic", "Rango"], + "occurrences": 4 + }, + "0x856d602e73545deaa1491a3726cf628d49f74f51": { + "address": "0x856d602e73545deaa1491a3726cf628d49f74f51", + "symbol": "GRAMPUS", + "decimals": 18, + "name": "GRAM Ecosystem", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x856d602e73545deaa1491a3726cf628d49f74f51.png", + "aggregators": ["CoinGecko", "Rubic", "Sonarwatch"], + "occurrences": 3 + }, + "0x93a2db22b7c736b341c32ff666307f4a9ed910f5": { + "address": "0x93a2db22b7c736b341c32ff666307f4a9ed910f5", + "symbol": "HYPER", + "decimals": 18, + "name": "Hyperlane", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x93a2db22b7c736b341c32ff666307f4a9ed910f5.png", + "aggregators": ["CoinMarketCap", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0x90a2a4c76b5d8c0bc892a69ea28aa775a8f2dd48": { + "address": "0x90a2a4c76b5d8c0bc892a69ea28aa775a8f2dd48", + "symbol": "SPYX", + "decimals": 18, + "name": "SP500 xStock", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x90a2a4c76b5d8c0bc892a69ea28aa775a8f2dd48.png", + "aggregators": ["CoinGecko", "LiFi", "Rubic", "Rango"], + "occurrences": 4 + }, + "0xa753a7395cae905cd615da0b82a53e0560f250af": { + "address": "0xa753a7395cae905cd615da0b82a53e0560f250af", + "symbol": "QQQX", + "decimals": 18, + "name": "Nasdaq xStock", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xa753a7395cae905cd615da0b82a53e0560f250af.png", + "aggregators": ["CoinGecko", "LiFi", "Rubic", "Rango"], + "occurrences": 4 + }, + "0x9f1e8f87c6321b84bad7dda7dfb86d5115a47605": { + "address": "0x9f1e8f87c6321b84bad7dda7dfb86d5115a47605", + "symbol": "RIZE", + "decimals": 18, + "name": "RIZE", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x9f1e8f87c6321b84bad7dda7dfb86d5115a47605.png", + "aggregators": ["CoinMarketCap", "LiFi", "Rubic", "Rango"], + "occurrences": 4 + }, + "0xbc33b4d48f76d17a1800afcb730e8a6aaada7fe5": { + "address": "0xbc33b4d48f76d17a1800afcb730e8a6aaada7fe5", + "symbol": "VDOT", + "decimals": 18, + "name": "Voucher DOT", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xbc33b4d48f76d17a1800afcb730e8a6aaada7fe5.png", + "aggregators": ["CoinGecko", "Rubic", "Sonarwatch"], + "occurrences": 3 + }, + "0x0f13fc8a93ab8edc9fde0a1e19aac693161599a5": { + "address": "0x0f13fc8a93ab8edc9fde0a1e19aac693161599a5", + "symbol": "SCAI", + "decimals": 18, + "name": "SecureChain AI", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x0f13fc8a93ab8edc9fde0a1e19aac693161599a5.png", + "aggregators": ["CoinGecko", "Rubic", "Sonarwatch"], + "occurrences": 3 + }, + "0x0e7779e698052f8fe56c415c3818fcf89de9ac6d": { + "address": "0x0e7779e698052f8fe56c415c3818fcf89de9ac6d", + "symbol": "ULTI", + "decimals": 18, + "name": "Ultiverse", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x0e7779e698052f8fe56c415c3818fcf89de9ac6d.png", + "aggregators": ["CoinMarketCap", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0xd2e57e7019a8faea8b3e4a3738ee5b269975008a": { + "address": "0xd2e57e7019a8faea8b3e4a3738ee5b269975008a", + "symbol": "THAT", + "decimals": 18, + "name": "THAT", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xd2e57e7019a8faea8b3e4a3738ee5b269975008a.png", + "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0x7528bd0f620d1568c307cc8d5db481a29e8d4e37": { + "address": "0x7528bd0f620d1568c307cc8d5db481a29e8d4e37", + "symbol": "P33L", + "decimals": 18, + "name": "THE P33L", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x7528bd0f620d1568c307cc8d5db481a29e8d4e37.png", + "aggregators": ["CoinMarketCap", "Socket", "Rubic"], + "occurrences": 3 + }, + "0x0d37af9d8ae74f35f3a38bd2a08fcb29890ca6d2": { + "address": "0x0d37af9d8ae74f35f3a38bd2a08fcb29890ca6d2", + "symbol": "AIXBT", + "decimals": 18, + "name": "AIXBT", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x0d37af9d8ae74f35f3a38bd2a08fcb29890ca6d2.png", + "aggregators": ["CoinMarketCap", "Socket", "Rubic", "Rango"], + "occurrences": 4 + }, + "0x78d11e37e890af4589fc9d0f6f884fd165c5aa0a": { + "address": "0x78d11e37e890af4589fc9d0f6f884fd165c5aa0a", + "symbol": "CRYPTO", + "decimals": 18, + "name": "CRYPTO", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x78d11e37e890af4589fc9d0f6f884fd165c5aa0a.png", + "aggregators": ["CoinMarketCap", "LiFi", "Rubic", "Rango"], + "occurrences": 4 + }, + "0x01b603be3d545f096015741e6503440282bf45fb": { + "address": "0x01b603be3d545f096015741e6503440282bf45fb", + "symbol": "RIF", + "decimals": 18, + "name": "RIF", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x01b603be3d545f096015741e6503440282bf45fb.png", + "aggregators": ["CoinMarketCap", "Socket", "Rubic", "Rango"], + "occurrences": 4 + }, + "0xb45ffb51984d626ee758b336c61cf20990c6bf13": { + "address": "0xb45ffb51984d626ee758b336c61cf20990c6bf13", + "symbol": "RBNT", + "decimals": 18, + "name": "Redbelly Network", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xb45ffb51984d626ee758b336c61cf20990c6bf13.png", + "aggregators": ["CoinMarketCap", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0x6bf7788eaa948d9ffba7e9bb386e2d3c9810e0fc": { + "address": "0x6bf7788eaa948d9ffba7e9bb386e2d3c9810e0fc", + "symbol": "SIERRA", + "decimals": 6, + "name": "SIERRA", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x6bf7788eaa948d9ffba7e9bb386e2d3c9810e0fc.png", + "aggregators": ["CoinGecko", "LiFi", "Rubic", "Rango"], + "occurrences": 4 + }, + "0x9b3a8f7cec208e247d97dee13313690977e24459": { + "address": "0x9b3a8f7cec208e247d97dee13313690977e24459", + "symbol": "USDP", + "decimals": 18, + "name": "USDP", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x9b3a8f7cec208e247d97dee13313690977e24459.png", + "aggregators": ["CoinGecko", "LiFi", "Rubic", "Rango"], + "occurrences": 4 + }, + "0x8ad3c73f833d3f9a523ab01476625f269aeb7cf0": { + "address": "0x8ad3c73f833d3f9a523ab01476625f269aeb7cf0", + "symbol": "TSLAX", + "decimals": 18, + "name": "Tesla xStock", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x8ad3c73f833d3f9a523ab01476625f269aeb7cf0.png", + "aggregators": ["CoinGecko", "LiFi", "Rubic", "Rango"], + "occurrences": 4 + }, + "0x04acaf8d2865c0714f79da09645c13fd2888977f": { + "address": "0x04acaf8d2865c0714f79da09645c13fd2888977f", + "symbol": "WFRAX", + "decimals": 18, + "name": "WFRAX", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x04acaf8d2865c0714f79da09645c13fd2888977f.png", + "aggregators": ["CoinMarketCap", "Socket", "Rubic", "Rango"], + "occurrences": 4 + }, + "0xae2f842ef90c0d5213259ab82639d5bbf649b08e": { + "address": "0xae2f842ef90c0d5213259ab82639d5bbf649b08e", + "symbol": "MSTRX", + "decimals": 18, + "name": "MicroStrategy xStock", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xae2f842ef90c0d5213259ab82639d5bbf649b08e.png", + "aggregators": ["CoinGecko", "LiFi", "Rubic", "Rango"], + "occurrences": 4 + }, + "0x4ba01f22827018b4772cd326c7627fb4956a7c00": { + "address": "0x4ba01f22827018b4772cd326c7627fb4956a7c00", + "symbol": "MSUSD", + "decimals": 18, + "name": "MSUSD", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x4ba01f22827018b4772cd326c7627fb4956a7c00.png", + "aggregators": ["CoinGecko", "LiFi", "Rubic", "Rango"], + "occurrences": 4 + }, + "0x01a8b61e7b03891a736b5df865e0ef9c511850ad": { + "address": "0x01a8b61e7b03891a736b5df865e0ef9c511850ad", + "symbol": "SYBTC", + "decimals": 8, + "name": "SYBTC", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x01a8b61e7b03891a736b5df865e0ef9c511850ad.png", + "aggregators": ["CoinGecko", "LiFi", "Rubic", "Rango"], + "occurrences": 4 + }, + "0x356b8d89c1e1239cbbb9de4815c39a1474d5ba7d": { + "address": "0x356b8d89c1e1239cbbb9de4815c39a1474d5ba7d", + "symbol": "SYRUPUSDT", + "decimals": 6, + "name": "SYRUPUSDT", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x356b8d89c1e1239cbbb9de4815c39a1474d5ba7d.png", + "aggregators": ["CoinMarketCap", "LiFi", "Rubic", "Rango"], + "occurrences": 4 + }, + "0xe7c253ead50976caf7b0c2cbca569146a7741b50": { + "address": "0xe7c253ead50976caf7b0c2cbca569146a7741b50", + "symbol": "SOLVBTC.BERA", + "decimals": 18, + "name": "SolvBTC Bera Vault", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xe7c253ead50976caf7b0c2cbca569146a7741b50.png", + "aggregators": ["CoinGecko", "LiFi", "Rubic"], + "occurrences": 3 + }, + "0xd9343a049d5dbd89cd19dc6bca8c48fb3a0a42a7": { + "address": "0xd9343a049d5dbd89cd19dc6bca8c48fb3a0a42a7", + "symbol": "LUMIA", + "decimals": 18, + "name": "LUMIA", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xd9343a049d5dbd89cd19dc6bca8c48fb3a0a42a7.png", + "aggregators": ["CoinMarketCap", "Socket", "Rubic", "Rango"], + "occurrences": 4 + }, + "0x833e53f1e2d320e0768671dee5cec88b2d93330f": { + "address": "0x833e53f1e2d320e0768671dee5cec88b2d93330f", + "symbol": "CAPX", + "decimals": 18, + "name": "CAPX", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x833e53f1e2d320e0768671dee5cec88b2d93330f.png", + "aggregators": ["CoinGecko", "LiFi", "Rubic", "Rango"], + "occurrences": 4 + }, + "0x4ed257678fc4e76df9642a416b223729fdedbefd": { + "address": "0x4ed257678fc4e76df9642a416b223729fdedbefd", + "symbol": "STRX", + "decimals": 18, + "name": "STRX", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x4ed257678fc4e76df9642a416b223729fdedbefd.png", + "aggregators": ["CoinMarketCap", "Rubic", "Squid", "Rango"], + "occurrences": 4 + }, + "0x8d010bf9c26881788b4e6bf5fd1bdc358c8f90b8": { + "address": "0x8d010bf9c26881788b4e6bf5fd1bdc358c8f90b8", + "symbol": "DOT", + "decimals": 18, + "name": "Polkadot Token (Relay Chain)", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x8d010bf9c26881788b4e6bf5fd1bdc358c8f90b8.png", + "aggregators": ["CoinMarketCap", "LiFi", "Rubic", "Rango"], + "occurrences": 4 + }, + "0x516d31321928700c6b4fb0db0c8c6bc5d6799787": { + "address": "0x516d31321928700c6b4fb0db0c8c6bc5d6799787", + "symbol": "SHX", + "decimals": 7, + "name": "SHX", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x516d31321928700c6b4fb0db0c8c6bc5d6799787.png", + "aggregators": ["CoinMarketCap", "Rubic", "Squid", "Rango"], + "occurrences": 4 + }, + "0x6a89228055c7c28430692e342f149f37462b478b": { + "address": "0x6a89228055c7c28430692e342f149f37462b478b", + "symbol": "SPECTRA", + "decimals": 18, + "name": "Spectra", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x6a89228055c7c28430692e342f149f37462b478b.png", + "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0xea17df5cf6d172224892b5477a16acb111182478": { + "address": "0xea17df5cf6d172224892b5477a16acb111182478", + "symbol": "ELIZAOS", + "decimals": 9, + "name": "ELIZAOS", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xea17df5cf6d172224892b5477a16acb111182478.png", + "aggregators": ["CoinMarketCap", "1inch", "Rubic", "Rango"], + "occurrences": 4 + }, + "0x20f7a3ddf244dc9299975b4da1c39f8d5d75f05a": { + "address": "0x20f7a3ddf244dc9299975b4da1c39f8d5d75f05a", + "symbol": "SPN", + "decimals": 6, + "name": "Sapien Network Token", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x20f7a3ddf244dc9299975b4da1c39f8d5d75f05a.png", + "aggregators": ["Metamask", "Socket", "Rubic", "Rango"], + "occurrences": 4 + }, + "0x8971f9fd7196e5cee2c1032b50f656855af7dd26": { + "address": "0x8971f9fd7196e5cee2c1032b50f656855af7dd26", + "symbol": "LAMB", + "decimals": 18, + "name": "Lambda", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x8971f9fd7196e5cee2c1032b50f656855af7dd26.png", + "aggregators": ["Metamask", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0xe5b826ca2ca02f09c1725e9bd98d9a8874c30532": { + "address": "0xe5b826ca2ca02f09c1725e9bd98d9a8874c30532", + "symbol": "ZEON", + "decimals": 18, + "name": "ZEON", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xe5b826ca2ca02f09c1725e9bd98d9a8874c30532.png", + "aggregators": ["Metamask", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0x297e4e5e59ad72b1b0a2fd446929e76117be0e0a": { + "address": "0x297e4e5e59ad72b1b0a2fd446929e76117be0e0a", + "symbol": "VALOR", + "decimals": 18, + "name": "Smart Valor", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x297e4e5e59ad72b1b0a2fd446929e76117be0e0a.png", + "aggregators": ["CoinMarketCap", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0x1c48f86ae57291f7686349f12601910bd8d470bb": { + "address": "0x1c48f86ae57291f7686349f12601910bd8d470bb", + "symbol": "USDK", + "decimals": 18, + "name": "USDK", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x1c48f86ae57291f7686349f12601910bd8d470bb.png", + "aggregators": ["CoinMarketCap", "LiFi", "Socket", "Rubic"], + "occurrences": 4 + }, + "0xeb269732ab75a6fd61ea60b06fe994cd32a83549": { + "address": "0xeb269732ab75a6fd61ea60b06fe994cd32a83549", + "symbol": "USDX", + "decimals": 18, + "name": "dForce USDx", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xeb269732ab75a6fd61ea60b06fe994cd32a83549.png", + "aggregators": ["Metamask", "LiFi", "Socket", "Rubic"], + "occurrences": 4 + }, + "0x48f07301e9e29c3c38a80ae8d9ae771f224f1054": { + "address": "0x48f07301e9e29c3c38a80ae8d9ae771f224f1054", + "symbol": "XZAR", + "decimals": 18, + "name": "South African Tether", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x48f07301e9e29c3c38a80ae8d9ae771f224f1054.png", + "aggregators": ["CoinMarketCap", "LiFi", "Rubic", "Bancor"], + "occurrences": 4 + }, + "0x6c972b70c533e2e045f333ee28b9ffb8d717be69": { + "address": "0x6c972b70c533e2e045f333ee28b9ffb8d717be69", + "symbol": "FRY", + "decimals": 18, + "name": "Foundry Logistics Token", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x6c972b70c533e2e045f333ee28b9ffb8d717be69.png", + "aggregators": ["CoinMarketCap", "LiFi", "Socket", "Rubic"], + "occurrences": 4 + }, + "0x34612903db071e888a4dadcaa416d3ee263a87b9": { + "address": "0x34612903db071e888a4dadcaa416d3ee263a87b9", + "symbol": "ARTE", + "decimals": 18, + "name": "ethart", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x34612903db071e888a4dadcaa416d3ee263a87b9.png", + "aggregators": ["CoinMarketCap", "LiFi", "Socket", "Rubic"], + "occurrences": 4 + }, + "0x1a5f9352af8af974bfc03399e3767df6370d82e4": { + "address": "0x1a5f9352af8af974bfc03399e3767df6370d82e4", + "symbol": "OWL", + "decimals": 18, + "name": "OWL", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x1a5f9352af8af974bfc03399e3767df6370d82e4.png", + "aggregators": ["CoinMarketCap", "LiFi", "Rubic", "Rango"], + "occurrences": 4 + }, + "0xf552b656022c218c26dad43ad88881fc04116f76": { + "address": "0xf552b656022c218c26dad43ad88881fc04116f76", + "symbol": "MORK", + "decimals": 4, + "name": "Mork", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xf552b656022c218c26dad43ad88881fc04116f76.png", + "aggregators": ["CoinMarketCap", "LiFi", "Socket", "Rubic"], + "occurrences": 4 + }, + "0x87b008e57f640d94ee44fd893f0323af933f9195": { + "address": "0x87b008e57f640d94ee44fd893f0323af933f9195", + "symbol": "COIN", + "decimals": 18, + "name": "coin_artist", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x87b008e57f640d94ee44fd893f0323af933f9195.png", + "aggregators": ["CoinMarketCap", "LiFi", "Socket", "Rubic"], + "occurrences": 4 + }, + "0xad6a626ae2b43dcb1b39430ce496d2fa0365ba9c": { + "address": "0xad6a626ae2b43dcb1b39430ce496d2fa0365ba9c", + "symbol": "DEFI+S", + "decimals": 18, + "name": "PieDAO DEFI Small Cap", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xad6a626ae2b43dcb1b39430ce496d2fa0365ba9c.png", + "aggregators": ["CoinMarketCap", "LiFi", "Socket", "Rubic"], + "occurrences": 4 + }, + "0x00000000441378008ea67f4284a57932b1c000a5": { + "address": "0x00000000441378008ea67f4284a57932b1c000a5", + "symbol": "TGBP", + "decimals": 18, + "name": "TrueGBP", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x00000000441378008ea67f4284a57932b1c000a5.png", + "aggregators": ["Metamask", "Rubic", "Rango", "SushiSwap"], + "occurrences": 4 + }, + "0x6d0f5149c502faf215c89ab306ec3e50b15e2892": { + "address": "0x6d0f5149c502faf215c89ab306ec3e50b15e2892", + "symbol": "PRT", + "decimals": 18, + "name": "Portion Token", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x6d0f5149c502faf215c89ab306ec3e50b15e2892.png", + "aggregators": ["Metamask", "1inch", "Rubic", "Rango"], + "occurrences": 4 + }, + "0xa10740ff9ff6852eac84cdcff9184e1d6d27c057": { + "address": "0xa10740ff9ff6852eac84cdcff9184e1d6d27c057", + "symbol": "WG0", + "decimals": 18, + "name": "Wrapped Gen 0", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xa10740ff9ff6852eac84cdcff9184e1d6d27c057.png", + "aggregators": ["CoinMarketCap", "LiFi", "Socket", "Rubic"], + "occurrences": 4 + }, + "0x4cff49d0a19ed6ff845a9122fa912abcfb1f68a6": { + "address": "0x4cff49d0a19ed6ff845a9122fa912abcfb1f68a6", + "symbol": "WTK", + "decimals": 18, + "name": "WadzPay", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x4cff49d0a19ed6ff845a9122fa912abcfb1f68a6.png", + "aggregators": ["CoinMarketCap", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0xe4ae84448db5cfe1daf1e6fb172b469c161cb85f": { + "address": "0xe4ae84448db5cfe1daf1e6fb172b469c161cb85f", + "symbol": "UOP", + "decimals": 18, + "name": "Utopia Genesis Foundation", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xe4ae84448db5cfe1daf1e6fb172b469c161cb85f.png", + "aggregators": ["CoinMarketCap", "Rubic", "Rango", "SushiSwap"], + "occurrences": 4 + }, + "0xea6412fb370e8d1605e6aeeaa21ad07c3c7e9f24": { + "address": "0xea6412fb370e8d1605e6aeeaa21ad07c3c7e9f24", + "symbol": "MUSH", + "decimals": 18, + "name": "MUSH", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xea6412fb370e8d1605e6aeeaa21ad07c3c7e9f24.png", + "aggregators": ["CoinMarketCap", "Rubic", "SushiSwap", "Bancor"], + "occurrences": 4 + }, + "0x7777777777697cfeecf846a76326da79cc606517": { + "address": "0x7777777777697cfeecf846a76326da79cc606517", + "symbol": "SIG", + "decimals": 18, + "name": "xSigma", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x7777777777697cfeecf846a76326da79cc606517.png", + "aggregators": ["CoinMarketCap", "1inch", "Rubic", "Rango"], + "occurrences": 4 + }, + "0x0e192d382a36de7011f795acc4391cd302003606": { + "address": "0x0e192d382a36de7011f795acc4391cd302003606", + "symbol": "FST", + "decimals": 18, + "name": "Futureswap", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x0e192d382a36de7011f795acc4391cd302003606.png", + "aggregators": ["CoinMarketCap", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0x90de74265a416e1393a450752175aed98fe11517": { + "address": "0x90de74265a416e1393a450752175aed98fe11517", + "symbol": "UDT", + "decimals": 18, + "name": "Unlock Protocol", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x90de74265a416e1393a450752175aed98fe11517.png", + "aggregators": ["CoinMarketCap", "LiFi", "Rubic", "Rango"], + "occurrences": 4 + }, + "0xe516d78d784c77d479977be58905b3f2b1111126": { + "address": "0xe516d78d784c77d479977be58905b3f2b1111126", + "symbol": "SPWN", + "decimals": 18, + "name": "Bitspawn", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xe516d78d784c77d479977be58905b3f2b1111126.png", + "aggregators": ["Metamask", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0x21381e026ad6d8266244f2a583b35f9e4413fa2a": { + "address": "0x21381e026ad6d8266244f2a583b35f9e4413fa2a", + "symbol": "FORM", + "decimals": 18, + "name": "Formation Finance", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x21381e026ad6d8266244f2a583b35f9e4413fa2a.png", + "aggregators": ["Metamask", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0xe94b97b6b43639e238c851a7e693f50033efd75c": { + "address": "0xe94b97b6b43639e238c851a7e693f50033efd75c", + "symbol": "RNBW", + "decimals": 18, + "name": "Rainbow Token", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xe94b97b6b43639e238c851a7e693f50033efd75c.png", + "aggregators": ["Metamask", "Socket", "Rubic", "Rango"], + "occurrences": 4 + }, + "0x1321f1f1aa541a56c31682c57b80ecfccd9bb288": { + "address": "0x1321f1f1aa541a56c31682c57b80ecfccd9bb288", + "symbol": "ARCX", + "decimals": 18, + "name": "ARC Governance", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x1321f1f1aa541a56c31682c57b80ecfccd9bb288.png", + "aggregators": ["CoinMarketCap", "Rubic", "Rango", "SushiSwap"], + "occurrences": 4 + }, + "0x8355dbe8b0e275abad27eb843f3eaf3fc855e525": { + "address": "0x8355dbe8b0e275abad27eb843f3eaf3fc855e525", + "symbol": "WOOL", + "decimals": 18, + "name": "Wolf Game Wool", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x8355dbe8b0e275abad27eb843f3eaf3fc855e525.png", + "aggregators": ["CoinMarketCap", "Socket", "Rubic", "Sonarwatch"], + "occurrences": 4 + }, + "0x1117ac6ad6cdf1a3bc543bad3b133724620522d5": { + "address": "0x1117ac6ad6cdf1a3bc543bad3b133724620522d5", + "symbol": "MODA", + "decimals": 18, + "name": "moda", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x1117ac6ad6cdf1a3bc543bad3b133724620522d5.png", + "aggregators": ["CoinMarketCap", "Rubic", "Rango", "SushiSwap"], + "occurrences": 4 + }, + "0x77777777772cf0455fb38ee0e75f38034dfa50de": { + "address": "0x77777777772cf0455fb38ee0e75f38034dfa50de", + "symbol": "XY", + "decimals": 18, + "name": "XY Finance", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x77777777772cf0455fb38ee0e75f38034dfa50de.png", + "aggregators": ["CoinMarketCap", "LiFi", "Rubic", "Rango"], + "occurrences": 4 + }, + "0x2f9411088cef82fd9fb904eb8092f28eb485c8f6": { + "address": "0x2f9411088cef82fd9fb904eb8092f28eb485c8f6", + "symbol": "ATH", + "decimals": 18, + "name": "Athens", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x2f9411088cef82fd9fb904eb8092f28eb485c8f6.png", + "aggregators": ["CoinMarketCap", "Socket", "Rubic", "Rango"], + "occurrences": 4 + }, + "0xe2cfbbedbce1bd59b1b799c44282e6396d692b84": { + "address": "0xe2cfbbedbce1bd59b1b799c44282e6396d692b84", + "symbol": "DEXIO", + "decimals": 18, + "name": "Dexioprotocol", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xe2cfbbedbce1bd59b1b799c44282e6396d692b84.png", + "aggregators": ["CoinMarketCap", "Socket", "Rubic", "Rango"], + "occurrences": 4 + }, + "0x7105e64bf67eca3ae9b123f0e5ca2b83b2ef2da0": { + "address": "0x7105e64bf67eca3ae9b123f0e5ca2b83b2ef2da0", + "symbol": "X7DAO", + "decimals": 18, + "name": "X7DAO", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x7105e64bf67eca3ae9b123f0e5ca2b83b2ef2da0.png", + "aggregators": ["CoinMarketCap", "Socket", "Rubic", "Rango"], + "occurrences": 4 + }, + "0x045da4bfe02b320f4403674b3b7d121737727a36": { + "address": "0x045da4bfe02b320f4403674b3b7d121737727a36", + "symbol": "DCHF", + "decimals": 18, + "name": "DeFi Franc", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x045da4bfe02b320f4403674b3b7d121737727a36.png", + "aggregators": ["CoinMarketCap", "Socket", "Rubic", "Rango"], + "occurrences": 4 + }, + "0x3a872ae95f645acdd17db8aa961f4d39e0f5bc39": { + "address": "0x3a872ae95f645acdd17db8aa961f4d39e0f5bc39", + "symbol": "BRLN", + "decimals": 18, + "name": "Brillion", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x3a872ae95f645acdd17db8aa961f4d39e0f5bc39.png", + "aggregators": ["CoinMarketCap", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0xbb556b0ee2cbd89ed95ddea881477723a3aa8f8b": { + "address": "0xbb556b0ee2cbd89ed95ddea881477723a3aa8f8b", + "symbol": "ALCA", + "decimals": 18, + "name": "AliceNet", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xbb556b0ee2cbd89ed95ddea881477723a3aa8f8b.png", + "aggregators": ["CoinMarketCap", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0x8f828a0644f12fa352888e645a90333d30f6fd7d": { + "address": "0x8f828a0644f12fa352888e645a90333d30f6fd7d", + "symbol": "RINIA", + "decimals": 9, + "name": "Rinia Inu", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x8f828a0644f12fa352888e645a90333d30f6fd7d.png", + "aggregators": ["CoinMarketCap", "Socket", "Rubic", "Rango"], + "occurrences": 4 + }, + "0x9559aaa82d9649c7a7b220e7c461d2e74c9a3593": { + "address": "0x9559aaa82d9649c7a7b220e7c461d2e74c9a3593", + "symbol": "RETH", + "decimals": 18, + "name": "StaFi", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x9559aaa82d9649c7a7b220e7c461d2e74c9a3593.png", + "aggregators": ["CoinMarketCap", "LiFi", "Rubic", "Rango"], + "occurrences": 4 + }, + "0xb9d27bc093ed0a3b7c18366266704cfe5e7af77b": { + "address": "0xb9d27bc093ed0a3b7c18366266704cfe5e7af77b", + "symbol": "CBY", + "decimals": 18, + "name": "Carbify", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xb9d27bc093ed0a3b7c18366266704cfe5e7af77b.png", + "aggregators": ["CoinMarketCap", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0x982b50e55394641ca975a0eec630b120b671391a": { + "address": "0x982b50e55394641ca975a0eec630b120b671391a", + "symbol": "ECOTERRA", + "decimals": 9, + "name": "Ecoterra", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x982b50e55394641ca975a0eec630b120b671391a.png", + "aggregators": ["CoinMarketCap", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0x1294f4183763743c7c9519bec51773fb3acd78fd": { + "address": "0x1294f4183763743c7c9519bec51773fb3acd78fd", + "symbol": "FI", + "decimals": 18, + "name": "Fideum", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x1294f4183763743c7c9519bec51773fb3acd78fd.png", + "aggregators": ["CoinMarketCap", "Socket", "Rubic", "Rango"], + "occurrences": 4 + }, + "0xce6e54daa1ea95fb3530859d69d4bdb978dd821b": { + "address": "0xce6e54daa1ea95fb3530859d69d4bdb978dd821b", + "symbol": "ORBK", + "decimals": 18, + "name": "Ordibank", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xce6e54daa1ea95fb3530859d69d4bdb978dd821b.png", + "aggregators": ["CoinMarketCap", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0x55a05cf8898dd1c582eef939df645d5d235c6f74": { + "address": "0x55a05cf8898dd1c582eef939df645d5d235c6f74", + "symbol": "COSMIC", + "decimals": 18, + "name": "Cosmic Network", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x55a05cf8898dd1c582eef939df645d5d235c6f74.png", + "aggregators": ["CoinMarketCap", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0x97a9a15168c22b3c137e6381037e1499c8ad0978": { + "address": "0x97a9a15168c22b3c137e6381037e1499c8ad0978", + "symbol": "DOP", + "decimals": 18, + "name": "Data Ownership Protocol", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x97a9a15168c22b3c137e6381037e1499c8ad0978.png", + "aggregators": ["CoinMarketCap", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0xb67cf01958b1a06c330f5a46501fe1fb2ec82aaa": { + "address": "0xb67cf01958b1a06c330f5a46501fe1fb2ec82aaa", + "symbol": "OPTION", + "decimals": 18, + "name": "OptionsAI", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xb67cf01958b1a06c330f5a46501fe1fb2ec82aaa.png", + "aggregators": ["CoinMarketCap", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0x04cd37283e0f921b4a8838fee72e4264c87a692b": { + "address": "0x04cd37283e0f921b4a8838fee72e4264c87a692b", + "symbol": "STAR", + "decimals": 18, + "name": "Sponstar", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x04cd37283e0f921b4a8838fee72e4264c87a692b.png", + "aggregators": ["CoinMarketCap", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0x60d95823f795f1972dbdbcd886955095e36e04cd": { + "address": "0x60d95823f795f1972dbdbcd886955095e36e04cd", + "symbol": "GENIE", + "decimals": 18, + "name": "GENIE AI", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x60d95823f795f1972dbdbcd886955095e36e04cd.png", + "aggregators": ["CoinMarketCap", "Socket", "Rubic", "Sonarwatch"], + "occurrences": 4 + }, + "0x6a1d6a577b17b425f3437c8a7c2c4d3a161816d8": { + "address": "0x6a1d6a577b17b425f3437c8a7c2c4d3a161816d8", + "symbol": "PILLAR", + "decimals": 18, + "name": "PillarFi", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x6a1d6a577b17b425f3437c8a7c2c4d3a161816d8.png", + "aggregators": ["CoinMarketCap", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0xfa1b1f13080857bf373de0de93970c96d2c29fd0": { + "address": "0xfa1b1f13080857bf373de0de93970c96d2c29fd0", + "symbol": "ONDOAI", + "decimals": 18, + "name": "Ondo DeFAI", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xfa1b1f13080857bf373de0de93970c96d2c29fd0.png", + "aggregators": ["CoinMarketCap", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0xf38deb975d9a34bc2b8f678de0c1d53692363851": { + "address": "0xf38deb975d9a34bc2b8f678de0c1d53692363851", + "symbol": "BRAWL", + "decimals": 18, + "name": "Metabrawl", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xf38deb975d9a34bc2b8f678de0c1d53692363851.png", + "aggregators": ["CoinMarketCap", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0x12c88a3c30a7aabc1dd7f2c08a97145f5dccd830": { + "address": "0x12c88a3c30a7aabc1dd7f2c08a97145f5dccd830", + "symbol": "G7", + "decimals": 18, + "name": "Game7", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x12c88a3c30a7aabc1dd7f2c08a97145f5dccd830.png", + "aggregators": ["CoinMarketCap", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0x63f718c15f4500326dd5015f95ccbde770ad21af": { + "address": "0x63f718c15f4500326dd5015f95ccbde770ad21af", + "symbol": "EEFS", + "decimals": 18, + "name": "Eefs", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x63f718c15f4500326dd5015f95ccbde770ad21af.png", + "aggregators": ["CoinMarketCap", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0xc71104001a3ccda1bef1177d765831bd1bfe8ee6": { + "address": "0xc71104001a3ccda1bef1177d765831bd1bfe8ee6", + "symbol": "NDEPS", + "decimals": 18, + "name": "Native Decentralized Euro Protocol Shar", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xc71104001a3ccda1bef1177d765831bd1bfe8ee6.png", + "aggregators": ["CoinMarketCap", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0x9e3b5582b22e3835896368017baff6d942a41cd9": { + "address": "0x9e3b5582b22e3835896368017baff6d942a41cd9", + "symbol": "H1", + "decimals": 18, + "name": "Haven1", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x9e3b5582b22e3835896368017baff6d942a41cd9.png", + "aggregators": ["CoinMarketCap", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0x92d3447e956613ee066ad5b4077a8c6e66424d5d": { + "address": "0x92d3447e956613ee066ad5b4077a8c6e66424d5d", + "symbol": "AIAF", + "decimals": 18, + "name": "AI Agent Factory", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x92d3447e956613ee066ad5b4077a8c6e66424d5d.png", + "aggregators": ["CoinMarketCap", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0x4f1aac70b303818ddd0823570af3bb46681d9bd8": { + "address": "0x4f1aac70b303818ddd0823570af3bb46681d9bd8", + "symbol": "SBET", + "decimals": 9, + "name": "SharpLink Gaming", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x4f1aac70b303818ddd0823570af3bb46681d9bd8.png", + "aggregators": ["Metamask", "1inch", "Rubic", "Rango"], + "occurrences": 4 + }, + "0x7bef710a5759d197ec0bf621c3df802c2d60d848": { + "address": "0x7bef710a5759d197ec0bf621c3df802c2d60d848", + "symbol": "SHOPX", + "decimals": 18, + "name": "SHOPX", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x7bef710a5759d197ec0bf621c3df802c2d60d848.png", + "aggregators": ["Metamask", "Socket", "Rubic", "Rango"], + "occurrences": 4 + }, + "0x90b831fa3bebf58e9744a14d638e25b4ee06f9bc": { + "address": "0x90b831fa3bebf58e9744a14d638e25b4ee06f9bc", + "symbol": "MIMO", + "decimals": 18, + "name": "MIMO Parallel Governance Token", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x90b831fa3bebf58e9744a14d638e25b4ee06f9bc.png", + "aggregators": ["LiFi", "Socket", "Rubic", "Rango"], + "occurrences": 4 + }, + "0x7b0c06043468469967dba22d1af33d77d44056c8": { + "address": "0x7b0c06043468469967dba22d1af33d77d44056c8", + "symbol": "MRPH", + "decimals": 4, + "name": "MorpheusNetwork", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x7b0c06043468469967dba22d1af33d77d44056c8.png", + "aggregators": ["LiFi", "Socket", "Rubic", "Bancor"], + "occurrences": 4 + }, + "0x1c9b158e71bc274ea5519ca57a73e337cac72b3a": { + "address": "0x1c9b158e71bc274ea5519ca57a73e337cac72b3a", + "symbol": "GROWAI", + "decimals": 18, + "name": "SocialGrowAI", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x1c9b158e71bc274ea5519ca57a73e337cac72b3a.png", + "aggregators": ["Socket", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0x0f719591e2bcb6fcc3e68b16d2a88c89c6ae0d42": { + "address": "0x0f719591e2bcb6fcc3e68b16d2a88c89c6ae0d42", + "symbol": "EVOLVE", + "decimals": 18, + "name": "Evolve Network", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x0f719591e2bcb6fcc3e68b16d2a88c89c6ae0d42.png", + "aggregators": ["Socket", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0x5dbcf33d8c2e976c6b560249878e6f1491bca25c": { + "address": "0x5dbcf33d8c2e976c6b560249878e6f1491bca25c", + "symbol": "YUSD", + "decimals": 18, + "name": "yearn Curve", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x5dbcf33d8c2e976c6b560249878e6f1491bca25c.png", + "aggregators": ["Socket", "Rubic", "Rango", "SushiSwap"], + "occurrences": 4 + }, + "0xe0bceef36f3a6efdd5eebfacd591423f8549b9d5": { + "address": "0xe0bceef36f3a6efdd5eebfacd591423f8549b9d5", + "symbol": "FACTR", + "decimals": 18, + "name": "Defactor", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xe0bceef36f3a6efdd5eebfacd591423f8549b9d5.png", + "aggregators": ["Socket", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0x28cfe98c33b8a8bb5f5ac5068a95d9db6bee5ffd": { + "address": "0x28cfe98c33b8a8bb5f5ac5068a95d9db6bee5ffd", + "symbol": "SOUP", + "decimals": 18, + "name": "soup game", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x28cfe98c33b8a8bb5f5ac5068a95d9db6bee5ffd.png", + "aggregators": ["Socket", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0xa11bd36801d8fa4448f0ac4ea7a62e3634ce8c7c": { + "address": "0xa11bd36801d8fa4448f0ac4ea7a62e3634ce8c7c", + "symbol": "ABR", + "decimals": 18, + "name": "Allbridge", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xa11bd36801d8fa4448f0ac4ea7a62e3634ce8c7c.png", + "aggregators": ["Socket", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0xd98f75b1a3261dab9eed4956c93f33749027a964": { + "address": "0xd98f75b1a3261dab9eed4956c93f33749027a964", + "symbol": "SHR", + "decimals": 2, + "name": "Share", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xd98f75b1a3261dab9eed4956c93f33749027a964.png", + "aggregators": ["Socket", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0x07c8b9deae988726fd443ea8c3c1367f98a31f9c": { + "address": "0x07c8b9deae988726fd443ea8c3c1367f98a31f9c", + "symbol": "BIOHACK", + "decimals": 18, + "name": "BiohackerDAO", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x07c8b9deae988726fd443ea8c3c1367f98a31f9c.png", + "aggregators": ["Socket", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0xddf7d080c82b8048baae54e376a3406572429b4e": { + "address": "0xddf7d080c82b8048baae54e376a3406572429b4e", + "symbol": "OOOOOO", + "decimals": 18, + "name": "GODDOG", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xddf7d080c82b8048baae54e376a3406572429b4e.png", + "aggregators": ["Socket", "Rubic", "Squid", "Rango"], + "occurrences": 4 + }, + "0x784f4004cffdf43d13e490f81bcbd762b60d0e21": { + "address": "0x784f4004cffdf43d13e490f81bcbd762b60d0e21", + "symbol": "AX", + "decimals": 9, + "name": "Axoria", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x784f4004cffdf43d13e490f81bcbd762b60d0e21.png", + "aggregators": ["Socket", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0x6f2ee0e1ebfa00015d3040760f6c039f46b6c662": { + "address": "0x6f2ee0e1ebfa00015d3040760f6c039f46b6c662", + "symbol": "OMNIT", + "decimals": 18, + "name": "OmniTensor", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x6f2ee0e1ebfa00015d3040760f6c039f46b6c662.png", + "aggregators": ["Socket", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0xe021baa5b70c62a9ab2468490d3f8ce0afdd88df": { + "address": "0xe021baa5b70c62a9ab2468490d3f8ce0afdd88df", + "symbol": "SOR", + "decimals": 18, + "name": "Sorra", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xe021baa5b70c62a9ab2468490d3f8ce0afdd88df.png", + "aggregators": ["Socket", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0xbf358f7023d6fd0d11ac284eb47b877c1af635aa": { + "address": "0xbf358f7023d6fd0d11ac284eb47b877c1af635aa", + "symbol": "ARCA", + "decimals": 18, + "name": "ArcheriumAi", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xbf358f7023d6fd0d11ac284eb47b877c1af635aa.png", + "aggregators": ["Socket", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0xb6182b03d9aea18b6b2a0e5e41d99f0f7f2e5ee9": { + "address": "0xb6182b03d9aea18b6b2a0e5e41d99f0f7f2e5ee9", + "symbol": "DEXED", + "decimals": 9, + "name": "DEXED", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xb6182b03d9aea18b6b2a0e5e41d99f0f7f2e5ee9.png", + "aggregators": ["Socket", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0x86b874397ecc811c5d9c1db2d8b68f3425d61a61": { + "address": "0x86b874397ecc811c5d9c1db2d8b68f3425d61a61", + "symbol": "PAUL", + "decimals": 9, + "name": "Paul", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x86b874397ecc811c5d9c1db2d8b68f3425d61a61.png", + "aggregators": ["Socket", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0x5e3d723c0cb363127d4a6ab5d43d504a17a5c05d": { + "address": "0x5e3d723c0cb363127d4a6ab5d43d504a17a5c05d", + "symbol": "ERC-AI", + "decimals": 9, + "name": "Euruka Tech", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x5e3d723c0cb363127d4a6ab5d43d504a17a5c05d.png", + "aggregators": ["Socket", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0x770880c3927e63e31d4b90314f7a37e09fbbf2fd": { + "address": "0x770880c3927e63e31d4b90314f7a37e09fbbf2fd", + "symbol": "EVOAI", + "decimals": 18, + "name": "EvolvAi", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x770880c3927e63e31d4b90314f7a37e09fbbf2fd.png", + "aggregators": ["Socket", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0xcac88fbd9b3fb2b018be2b68e3c55aa90628be6e": { + "address": "0xcac88fbd9b3fb2b018be2b68e3c55aa90628be6e", + "symbol": "ARBX", + "decimals": 9, + "name": "Arbitrax AI", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xcac88fbd9b3fb2b018be2b68e3c55aa90628be6e.png", + "aggregators": ["Socket", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0x3e43efbfa058d351a926fc611e997f2338adc2a4": { + "address": "0x3e43efbfa058d351a926fc611e997f2338adc2a4", + "symbol": "ORI", + "decimals": 9, + "name": "Origent Ai", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x3e43efbfa058d351a926fc611e997f2338adc2a4.png", + "aggregators": ["Socket", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0xb28a3778e1a78a8c327693516ed4f5b11db41306": { + "address": "0xb28a3778e1a78a8c327693516ed4f5b11db41306", + "symbol": "CTRL", + "decimals": 9, + "name": "AltCTRL", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xb28a3778e1a78a8c327693516ed4f5b11db41306.png", + "aggregators": ["Socket", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0x95ad53e32942c0cf9fd60208964782af8bedb709": { + "address": "0x95ad53e32942c0cf9fd60208964782af8bedb709", + "symbol": "KUMA", + "decimals": 9, + "name": "Kuma", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x95ad53e32942c0cf9fd60208964782af8bedb709.png", + "aggregators": ["Socket", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0x782f97c02c6ace8a3677c4a4c495d048ad67dba2": { + "address": "0x782f97c02c6ace8a3677c4a4c495d048ad67dba2", + "symbol": "LENS", + "decimals": 18, + "name": "Social Lens Ai", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x782f97c02c6ace8a3677c4a4c495d048ad67dba2.png", + "aggregators": ["Socket", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0xd8a2f109bec88d9c9df6f4958c3301bd9d1929fd": { + "address": "0xd8a2f109bec88d9c9df6f4958c3301bd9d1929fd", + "symbol": "CLX", + "decimals": 9, + "name": "CloneX AI", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xd8a2f109bec88d9c9df6f4958c3301bd9d1929fd.png", + "aggregators": ["Socket", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0x5c2d8b2c6c0289aa514f42e0b5423f20b99177ac": { + "address": "0x5c2d8b2c6c0289aa514f42e0b5423f20b99177ac", + "symbol": "MEGA", + "decimals": 18, + "name": "MEGAonEth", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x5c2d8b2c6c0289aa514f42e0b5423f20b99177ac.png", + "aggregators": ["Socket", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0xa579472f17b6e1b6c5ded2a785067a89ec536ce8": { + "address": "0xa579472f17b6e1b6c5ded2a785067a89ec536ce8", + "symbol": "ADDON", + "decimals": 18, + "name": "AddOn Ai", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xa579472f17b6e1b6c5ded2a785067a89ec536ce8.png", + "aggregators": ["Socket", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0x6aaeb26b663e37c4d0c995758c69d5e54bbe9984": { + "address": "0x6aaeb26b663e37c4d0c995758c69d5e54bbe9984", + "symbol": "ONAI", + "decimals": 18, + "name": "Onchain AI", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x6aaeb26b663e37c4d0c995758c69d5e54bbe9984.png", + "aggregators": ["Socket", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0x2893a91b29b80ab62deffff6eb135f32dda8e1d3": { + "address": "0x2893a91b29b80ab62deffff6eb135f32dda8e1d3", + "symbol": "FAI", + "decimals": 18, + "name": "FORTIFY AI", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x2893a91b29b80ab62deffff6eb135f32dda8e1d3.png", + "aggregators": ["Socket", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0xb5274d9f803b4b15607c6e180ef8f68fe990f73b": { + "address": "0xb5274d9f803b4b15607c6e180ef8f68fe990f73b", + "symbol": "VOX", + "decimals": 9, + "name": "Neuravox", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xb5274d9f803b4b15607c6e180ef8f68fe990f73b.png", + "aggregators": ["Socket", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0x9d409a0a012cfba9b15f6d4b36ac57a46966ab9a": { + "address": "0x9d409a0a012cfba9b15f6d4b36ac57a46966ab9a", + "symbol": "YVBOOST", + "decimals": 18, + "name": "Yearn Compounding veCRV yVault", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x9d409a0a012cfba9b15f6d4b36ac57a46966ab9a.png", + "aggregators": ["Rubic", "Rango", "Sonarwatch", "SushiSwap"], + "occurrences": 4 + }, + "0xb1f66997a5760428d3a87d68b90bfe0ae64121cc": { + "address": "0xb1f66997a5760428d3a87d68b90bfe0ae64121cc", + "symbol": "LUA", + "decimals": 18, + "name": "LuaToken", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xb1f66997a5760428d3a87d68b90bfe0ae64121cc.png", + "aggregators": ["CoinMarketCap", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x2c4e8f2d746113d0696ce89b35f0d8bf88e0aeca": { + "address": "0x2c4e8f2d746113d0696ce89b35f0d8bf88e0aeca", + "symbol": "OST", + "decimals": 18, + "name": "Open Simple Token", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x2c4e8f2d746113d0696ce89b35f0d8bf88e0aeca.png", + "aggregators": ["Metamask", "Rubic", "Rango"], + "occurrences": 3 + }, + "0xa1afffe3f4d611d252010e3eaf6f4d77088b0cd7": { + "address": "0xa1afffe3f4d611d252010e3eaf6f4d77088b0cd7", + "symbol": "RFI", + "decimals": 9, + "name": "Reflect Finance", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xa1afffe3f4d611d252010e3eaf6f4d77088b0cd7.png", + "aggregators": ["Metamask", "Socket", "Rubic"], + "occurrences": 3 + }, + "0x17c50d62e6e8d20d2dc18e9ad79c43263d0720d9": { + "address": "0x17c50d62e6e8d20d2dc18e9ad79c43263d0720d9", + "symbol": "NFAI", + "decimals": 18, + "name": "Not Financial Advice", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x17c50d62e6e8d20d2dc18e9ad79c43263d0720d9.png", + "aggregators": ["CoinMarketCap", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x9bf1d7d63dd7a4ce167cf4866388226eeefa702e": { + "address": "0x9bf1d7d63dd7a4ce167cf4866388226eeefa702e", + "symbol": "BEN", + "decimals": 18, + "name": "Ben Coin", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x9bf1d7d63dd7a4ce167cf4866388226eeefa702e.png", + "aggregators": ["Metamask", "Rubic", "Rango"], + "occurrences": 3 + }, + "0xd979c468a68062e7bdff4ba6df7842dfd3492e0f": { + "address": "0xd979c468a68062e7bdff4ba6df7842dfd3492e0f", + "symbol": "BBL", + "decimals": 18, + "name": "Beoble", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xd979c468a68062e7bdff4ba6df7842dfd3492e0f.png", + "aggregators": ["CoinMarketCap", "Rubic", "Sonarwatch"], + "occurrences": 3 + }, + "0xcdb4a8742ed7d0259b51e3454c46c9d6c48d5e88": { + "address": "0xcdb4a8742ed7d0259b51e3454c46c9d6c48d5e88", + "symbol": "GPT", + "decimals": 18, + "name": "GPT Protocol", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xcdb4a8742ed7d0259b51e3454c46c9d6c48d5e88.png", + "aggregators": ["CoinMarketCap", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x15d4c048f83bd7e37d49ea4c83a07267ec4203da": { + "address": "0x15d4c048f83bd7e37d49ea4c83a07267ec4203da", + "symbol": "GALA", + "decimals": 8, + "name": "Gala", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x15d4c048f83bd7e37d49ea4c83a07267ec4203da.png", + "aggregators": ["Metamask", "Socket", "Rubic"], + "occurrences": 3 + }, + "0xedadeb5faa413e6c8623461849dfd0b7c3790c32": { + "address": "0xedadeb5faa413e6c8623461849dfd0b7c3790c32", + "symbol": "OBOT", + "decimals": 18, + "name": "OBORTECH", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xedadeb5faa413e6c8623461849dfd0b7c3790c32.png", + "aggregators": ["LiFi", "Rubic", "Rango"], + "occurrences": 3 + }, + "0xd9ec3ff1f8be459bb9369b4e79e9ebcf7141c093": { + "address": "0xd9ec3ff1f8be459bb9369b4e79e9ebcf7141c093", + "symbol": "KAI", + "decimals": 18, + "name": "KardiaChain Token", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xd9ec3ff1f8be459bb9369b4e79e9ebcf7141c093.png", + "aggregators": ["LiFi", "Socket", "Rubic"], + "occurrences": 3 + }, + "0xc82e3db60a52cf7529253b4ec688f631aad9e7c2": { + "address": "0xc82e3db60a52cf7529253b4ec688f631aad9e7c2", + "symbol": "ARC", + "decimals": 18, + "name": "Arc", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xc82e3db60a52cf7529253b4ec688f631aad9e7c2.png", + "aggregators": ["Socket", "Rubic", "Sonarwatch"], + "occurrences": 3 + }, + "0x672f4fa517894496b8a958b4b3fca068ce513a39": { + "address": "0x672f4fa517894496b8a958b4b3fca068ce513a39", + "symbol": "DCK", + "decimals": 18, + "name": "DexCheck AI", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x672f4fa517894496b8a958b4b3fca068ce513a39.png", + "aggregators": ["Rubic", "Rango", "Sonarwatch"], + "occurrences": 3 + }, + "0xb4357054c3da8d46ed642383f03139ac7f090343": { + "address": "0xb4357054c3da8d46ed642383f03139ac7f090343", + "symbol": "PORT3", + "decimals": 18, + "name": "Port3 Network", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xb4357054c3da8d46ed642383f03139ac7f090343.png", + "aggregators": ["Rubic", "Rango", "Sonarwatch"], + "occurrences": 3 + }, + "0x560363bda52bc6a44ca6c8c9b4a5fadbda32fa60": { + "address": "0x560363bda52bc6a44ca6c8c9b4a5fadbda32fa60", + "symbol": "SFUND", + "decimals": 18, + "name": "Seedify fund", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x560363bda52bc6a44ca6c8c9b4a5fadbda32fa60.png", + "aggregators": ["Rubic", "Rango", "Sonarwatch"], + "occurrences": 3 + }, + "0x1a2eb478fa07125c9935a77b3c03a82470801e30": { + "address": "0x1a2eb478fa07125c9935a77b3c03a82470801e30", + "symbol": "AMO", + "decimals": 18, + "name": "Amino OLD", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x1a2eb478fa07125c9935a77b3c03a82470801e30.png", + "aggregators": ["Rubic", "Rango", "Sonarwatch"], + "occurrences": 3 + }, + "0xcb1592591996765ec0efc1f92599a19767ee5ffa": { + "address": "0xcb1592591996765ec0efc1f92599a19767ee5ffa", + "symbol": "BIO", + "decimals": 18, + "name": "Bio Protocol", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xcb1592591996765ec0efc1f92599a19767ee5ffa.png", + "aggregators": [ + "CoinMarketCap", + "1inch", + "LiFi", + "Socket", + "Rubic", + "Squid", + "Rango", + "Sonarwatch" + ], + "occurrences": 8 + }, + "0x4d5f47fa6a74757f35c14fd3a6ef8e3c9bc514e8": { + "address": "0x4d5f47fa6a74757f35c14fd3a6ef8e3c9bc514e8", + "symbol": "AWETH", + "decimals": 18, + "name": "Aave v3 WETH", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x4d5f47fa6a74757f35c14fd3a6ef8e3c9bc514e8.png", + "aggregators": [ + "CoinMarketCap", + "1inch", + "LiFi", + "Socket", + "Rubic", + "Squid", + "Rango", + "Sonarwatch" + ], + "occurrences": 8 + }, + "0x5a3e6a77ba2f983ec0d371ea3b475f8bc0811ad5": { + "address": "0x5a3e6a77ba2f983ec0d371ea3b475f8bc0811ad5", + "symbol": "0X0", + "decimals": 9, + "name": "0x0 ai AI Smart Contract", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x5a3e6a77ba2f983ec0d371ea3b475f8bc0811ad5.png", + "aggregators": [ + "CoinMarketCap", + "1inch", + "LiFi", + "Socket", + "Rubic", + "Squid", + "Rango", + "Sonarwatch" + ], + "occurrences": 8 + }, + "0xb90b2a35c65dbc466b04240097ca756ad2005295": { + "address": "0xb90b2a35c65dbc466b04240097ca756ad2005295", + "symbol": "BOBO", + "decimals": 18, + "name": "BOBO", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xb90b2a35c65dbc466b04240097ca756ad2005295.png", + "aggregators": [ + "CoinMarketCap", + "1inch", + "LiFi", + "Socket", + "Rubic", + "Rango", + "Sonarwatch", + "SushiSwap" + ], + "occurrences": 8 + }, + "0x98c23e9d8f34fefb1b7bd6a91b7ff122f4e16f5c": { + "address": "0x98c23e9d8f34fefb1b7bd6a91b7ff122f4e16f5c", + "symbol": "AUSDC", + "decimals": 6, + "name": "Aave v3 USDC", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x98c23e9d8f34fefb1b7bd6a91b7ff122f4e16f5c.png", + "aggregators": [ + "Metamask", + "1inch", + "LiFi", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 7 + }, + "0x031b8d752d73d7fe9678acef26e818280d0646b4": { + "address": "0x031b8d752d73d7fe9678acef26e818280d0646b4", + "symbol": "SOVRN", + "decimals": 18, + "name": "Sovrun", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x031b8d752d73d7fe9678acef26e818280d0646b4.png", + "aggregators": [ + "CoinMarketCap", + "LiFi", + "Socket", + "Rubic", + "Squid", + "Rango", + "Sonarwatch" + ], + "occurrences": 7 + }, + "0x5c147e74d63b1d31aa3fd78eb229b65161983b2b": { + "address": "0x5c147e74d63b1d31aa3fd78eb229b65161983b2b", + "symbol": "WFLOW", + "decimals": 18, + "name": "Wrapped Flow", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x5c147e74d63b1d31aa3fd78eb229b65161983b2b.png", + "aggregators": [ + "CoinMarketCap", + "1inch", + "LiFi", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 7 + }, + "0x5ee5bf7ae06d1be5997a1a72006fe6c607ec6de8": { + "address": "0x5ee5bf7ae06d1be5997a1a72006fe6c607ec6de8", + "symbol": "AWBTC", + "decimals": 8, + "name": "Aave v3 WBTC", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x5ee5bf7ae06d1be5997a1a72006fe6c607ec6de8.png", + "aggregators": [ + "CoinGecko", + "1inch", + "LiFi", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 7 + }, + "0x23878914efe38d27c4d67ab83ed1b93a74d4086a": { + "address": "0x23878914efe38d27c4d67ab83ed1b93a74d4086a", + "symbol": "AUSDT", + "decimals": 6, + "name": "Aave v3 USDT", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x23878914efe38d27c4d67ab83ed1b93a74d4086a.png", + "aggregators": [ + "Metamask", + "1inch", + "LiFi", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 7 + }, + "0xcc9ee9483f662091a1de4795249e24ac0ac2630f": { + "address": "0xcc9ee9483f662091a1de4795249e24ac0ac2630f", + "symbol": "ARETH", + "decimals": 18, + "name": "Aave v3 rETH", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xcc9ee9483f662091a1de4795249e24ac0ac2630f.png", + "aggregators": [ + "CoinGecko", + "1inch", + "LiFi", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 7 + }, + "0x018008bfb33d285247a21d44e50697654f754e63": { + "address": "0x018008bfb33d285247a21d44e50697654f754e63", + "symbol": "ADAI", + "decimals": 18, + "name": "Aave v3 DAI", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x018008bfb33d285247a21d44e50697654f754e63.png", + "aggregators": [ + "Metamask", + "1inch", + "LiFi", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 7 + }, + "0xf6d2224916ddfbbab6e6bd0d1b7034f4ae0cab18": { + "address": "0xf6d2224916ddfbbab6e6bd0d1b7034f4ae0cab18", + "symbol": "AUNI", + "decimals": 18, + "name": "Aave v3 UNI", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xf6d2224916ddfbbab6e6bd0d1b7034f4ae0cab18.png", + "aggregators": [ + "CoinGecko", + "1inch", + "LiFi", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 7 + }, + "0x9a44fd41566876a39655f74971a3a6ea0a17a454": { + "address": "0x9a44fd41566876a39655f74971a3a6ea0a17a454", + "symbol": "ALDO", + "decimals": 18, + "name": "Aave v3 LDO", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x9a44fd41566876a39655f74971a3a6ea0a17a454.png", + "aggregators": [ + "CoinGecko", + "1inch", + "LiFi", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 7 + }, + "0x7b95ec873268a6bfc6427e7a28e396db9d0ebc65": { + "address": "0x7b95ec873268a6bfc6427e7a28e396db9d0ebc65", + "symbol": "ACRV", + "decimals": 18, + "name": "Aave v3 CRV", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x7b95ec873268a6bfc6427e7a28e396db9d0ebc65.png", + "aggregators": [ + "CoinGecko", + "1inch", + "LiFi", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 7 + }, + "0xc7b4c17861357b8abb91f25581e7263e08dcb59c": { + "address": "0xc7b4c17861357b8abb91f25581e7263e08dcb59c", + "symbol": "ASNX", + "decimals": 18, + "name": "Aave v3 SNX", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xc7b4c17861357b8abb91f25581e7263e08dcb59c.png", + "aggregators": [ + "CoinGecko", + "1inch", + "LiFi", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 7 + }, + "0x2516e7b3f76294e03c42aa4c5b5b4dce9c436fb8": { + "address": "0x2516e7b3f76294e03c42aa4c5b5b4dce9c436fb8", + "symbol": "ABAL", + "decimals": 18, + "name": "Aave v3 BAL", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x2516e7b3f76294e03c42aa4c5b5b4dce9c436fb8.png", + "aggregators": [ + "CoinGecko", + "1inch", + "LiFi", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 7 + }, + "0xd4e245848d6e1220dbe62e155d89fa327e43cb06": { + "address": "0xd4e245848d6e1220dbe62e155d89fa327e43cb06", + "symbol": "AFRAX", + "decimals": 18, + "name": "Aave v3 FRAX", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xd4e245848d6e1220dbe62e155d89fa327e43cb06.png", + "aggregators": [ + "CoinGecko", + "1inch", + "LiFi", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 7 + }, + "0x71aef7b30728b9bb371578f36c5a1f1502a5723e": { + "address": "0x71aef7b30728b9bb371578f36c5a1f1502a5723e", + "symbol": "A1INCH", + "decimals": 18, + "name": "Aave v3 1INCH", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x71aef7b30728b9bb371578f36c5a1f1502a5723e.png", + "aggregators": [ + "CoinGecko", + "1inch", + "LiFi", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 7 + }, + "0x545bd6c032efdde65a377a6719def2796c8e0f2e": { + "address": "0x545bd6c032efdde65a377a6719def2796c8e0f2e", + "symbol": "AENS", + "decimals": 18, + "name": "Aave v3 ENS", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x545bd6c032efdde65a377a6719def2796c8e0f2e.png", + "aggregators": [ + "CoinGecko", + "1inch", + "LiFi", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 7 + }, + "0xb76cf92076adbf1d9c39294fa8e7a67579fde357": { + "address": "0xb76cf92076adbf1d9c39294fa8e7a67579fde357", + "symbol": "ARPL", + "decimals": 18, + "name": "Aave v3 RPL", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xb76cf92076adbf1d9c39294fa8e7a67579fde357.png", + "aggregators": [ + "CoinGecko", + "1inch", + "LiFi", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 7 + }, + "0xa700b4eb416be35b2911fd5dee80678ff64ff6c9": { + "address": "0xa700b4eb416be35b2911fd5dee80678ff64ff6c9", + "symbol": "AAAVE", + "decimals": 18, + "name": "Aave v3 AAVE", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xa700b4eb416be35b2911fd5dee80678ff64ff6c9.png", + "aggregators": [ + "CoinGecko", + "1inch", + "LiFi", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 7 + }, + "0xe063f04f280c60aeca68b38341c2eecbec703ae2": { + "address": "0xe063f04f280c60aeca68b38341c2eecbec703ae2", + "symbol": "XETH", + "decimals": 18, + "name": "f x Protocol Leveraged ETH", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xe063f04f280c60aeca68b38341c2eecbec703ae2.png", + "aggregators": [ + "CoinGecko", + "1inch", + "LiFi", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 7 + }, + "0x02e7f808990638e9e67e1f00313037ede2362361": { + "address": "0x02e7f808990638e9e67e1f00313037ede2362361", + "symbol": "KIBSHI", + "decimals": 18, + "name": "KiboShib", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x02e7f808990638e9e67e1f00313037ede2362361.png", + "aggregators": [ + "CoinMarketCap", + "1inch", + "Socket", + "Rubic", + "Squid", + "Rango", + "Sonarwatch" + ], + "occurrences": 7 + }, + "0x4c612e3b15b96ff9a6faed838f8d07d479a8dd4c": { + "address": "0x4c612e3b15b96ff9a6faed838f8d07d479a8dd4c", + "symbol": "ASDAI", + "decimals": 18, + "name": "Aave v3 sDAI", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x4c612e3b15b96ff9a6faed838f8d07d479a8dd4c.png", + "aggregators": [ + "CoinGecko", + "1inch", + "LiFi", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 7 + }, + "0x5e8c8a7243651db1384c0ddfdbe39761e8e7e51a": { + "address": "0x5e8c8a7243651db1384c0ddfdbe39761e8e7e51a", + "symbol": "ALINK", + "decimals": 18, + "name": "Aave v3 LINK", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x5e8c8a7243651db1384c0ddfdbe39761e8e7e51a.png", + "aggregators": [ + "CoinGecko", + "1inch", + "LiFi", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 7 + }, + "0xd2af830e8cbdfed6cc11bab697bb25496ed6fa62": { + "address": "0xd2af830e8cbdfed6cc11bab697bb25496ed6fa62", + "symbol": "WOUSD", + "decimals": 18, + "name": "Wrapped OUSD", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xd2af830e8cbdfed6cc11bab697bb25496ed6fa62.png", + "aggregators": [ + "CoinMarketCap", + "1inch", + "LiFi", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 7 + }, + "0xf3b9569f82b18aef890de263b84189bd33ebe452": { + "address": "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "symbol": "CAW", + "decimals": 18, + "name": "A Hunters Dream", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xf3b9569f82b18aef890de263b84189bd33ebe452.png", + "aggregators": [ + "CoinGecko", + "1inch", + "Socket", + "Rubic", + "Squid", + "Rango", + "Sonarwatch" + ], + "occurrences": 7 + }, + "0x657e8c867d8b37dcc18fa4caead9c45eb088c642": { + "address": "0x657e8c867d8b37dcc18fa4caead9c45eb088c642", + "symbol": "EBTC", + "decimals": 8, + "name": "ether.fi Staked BTC", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x657e8c867d8b37dcc18fa4caead9c45eb088c642.png", + "aggregators": [ + "Metamask", + "LiFi", + "Socket", + "Rubic", + "Squid", + "Rango", + "Sonarwatch" + ], + "occurrences": 7 + }, + "0xbe1a001fe942f96eea22ba08783140b9dcc09d28": { + "address": "0xbe1a001fe942f96eea22ba08783140b9dcc09d28", + "symbol": "BETA", + "decimals": 18, + "name": "Beta Finance", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xbe1a001fe942f96eea22ba08783140b9dcc09d28.png", + "aggregators": [ + "CoinMarketCap", + "LiFi", + "Socket", + "Rubic", + "Squid", + "Rango", + "Sonarwatch" + ], + "occurrences": 7 + }, + "0x3fe6a295459fae07df8a0cecc36f37160fe86aa9": { + "address": "0x3fe6a295459fae07df8a0cecc36f37160fe86aa9", + "symbol": "ALUSD", + "decimals": 18, + "name": "Aave v3 LUSD", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x3fe6a295459fae07df8a0cecc36f37160fe86aa9.png", + "aggregators": [ + "CoinGecko", + "1inch", + "LiFi", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 7 + }, + "0x1151cb3d861920e07a38e03eead12c32178567f6": { + "address": "0x1151cb3d861920e07a38e03eead12c32178567f6", + "symbol": "BONK", + "decimals": 5, + "name": "Bonk", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x1151cb3d861920e07a38e03eead12c32178567f6.png", + "aggregators": [ + "CoinMarketCap", + "1inch", + "Socket", + "Rubic", + "Squid", + "Rango", + "Sonarwatch" + ], + "occurrences": 7 + }, + "0x977b6fc5de62598b08c85ac8cf2b745874e8b78c": { + "address": "0x977b6fc5de62598b08c85ac8cf2b745874e8b78c", + "symbol": "ACBETH", + "decimals": 18, + "name": "Aave v3 cbETH", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x977b6fc5de62598b08c85ac8cf2b745874e8b78c.png", + "aggregators": [ + "CoinGecko", + "1inch", + "LiFi", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 7 + }, + "0xcbb8f1bda10b9696c57e13bc128fe674769dcec0": { + "address": "0xcbb8f1bda10b9696c57e13bc128fe674769dcec0", + "symbol": "MOR", + "decimals": 18, + "name": "MorpheusAI", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xcbb8f1bda10b9696c57e13bc128fe674769dcec0.png", + "aggregators": [ + "CoinMarketCap", + "LiFi", + "Socket", + "Rubic", + "Squid", + "Rango", + "Sonarwatch" + ], + "occurrences": 7 + }, + "0xac57de9c1a09fec648e93eb98875b212db0d460b": { + "address": "0xac57de9c1a09fec648e93eb98875b212db0d460b", + "symbol": "BABYDOGE", + "decimals": 9, + "name": "Baby Doge Coin", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xac57de9c1a09fec648e93eb98875b212db0d460b.png", + "aggregators": [ + "CoinMarketCap", + "1inch", + "Socket", + "Rubic", + "Squid", + "Rango", + "Sonarwatch" + ], + "occurrences": 7 + }, + "0x50327c6c5a14dcade707abad2e27eb517df87ab5": { + "address": "0x50327c6c5a14dcade707abad2e27eb517df87ab5", + "symbol": "TRX", + "decimals": 6, + "name": "TRON", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x50327c6c5a14dcade707abad2e27eb517df87ab5.png", + "aggregators": [ + "CoinMarketCap", + "LiFi", + "Socket", + "Rubic", + "Rango", + "Sonarwatch", + "SushiSwap" + ], + "occurrences": 7 + }, + "0x9d79d5b61de59d882ce90125b18f74af650acb93": { + "address": "0x9d79d5b61de59d882ce90125b18f74af650acb93", + "symbol": "NSBT", + "decimals": 6, + "name": "Neutrino System Base Token", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x9d79d5b61de59d882ce90125b18f74af650acb93.png", + "aggregators": [ + "CoinMarketCap", + "LiFi", + "Socket", + "Rubic", + "Rango", + "Sonarwatch", + "SushiSwap" + ], + "occurrences": 7 + }, + "0x1456688345527be1f37e9e627da0837d6f08c925": { + "address": "0x1456688345527be1f37e9e627da0837d6f08c925", + "symbol": "USDP", + "decimals": 18, + "name": "USDP Stablecoin", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x1456688345527be1f37e9e627da0837d6f08c925.png", + "aggregators": [ + "CoinMarketCap", + "1inch", + "LiFi", + "Socket", + "Rubic", + "Rango", + "SushiSwap" + ], + "occurrences": 7 + }, + "0x0e573ce2736dd9637a0b21058352e1667925c7a8": { + "address": "0x0e573ce2736dd9637a0b21058352e1667925c7a8", + "symbol": "USDV", + "decimals": 6, + "name": "USDV", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x0e573ce2736dd9637a0b21058352e1667925c7a8.png", + "aggregators": [ + "CoinMarketCap", + "LiFi", + "Socket", + "Rubic", + "Rango", + "Sonarwatch", + "SushiSwap" + ], + "occurrences": 7 + }, + "0x081131434f93063751813c619ecca9c4dc7862a3": { + "address": "0x081131434f93063751813c619ecca9c4dc7862a3", + "symbol": "DAR", + "decimals": 6, + "name": "Mines of Dalarnia", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x081131434f93063751813c619ecca9c4dc7862a3.png", + "aggregators": [ + "CoinGecko", + "LiFi", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 6 + }, + "0xb1d1eae60eea9525032a6dcb4c1ce336a1de71be": { + "address": "0xb1d1eae60eea9525032a6dcb4c1ce336a1de71be", + "symbol": "DRV", + "decimals": 18, + "name": "Derive", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xb1d1eae60eea9525032a6dcb4c1ce336a1de71be.png", + "aggregators": [ + "CoinMarketCap", + "LiFi", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 6 + }, + "0x5faa989af96af85384b8a938c2ede4a7378d9875": { + "address": "0x5faa989af96af85384b8a938c2ede4a7378d9875", + "symbol": "GAL", + "decimals": 18, + "name": "GAL migrated to Gravity G", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x5faa989af96af85384b8a938c2ede4a7378d9875.png", + "aggregators": [ + "CoinGecko", + "LiFi", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 6 + }, + "0xae788f80f2756a86aa2f410c651f2af83639b95b": { + "address": "0xae788f80f2756a86aa2f410c651f2af83639b95b", + "symbol": "MV", + "decimals": 18, + "name": "GensoKishi Metaverse", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xae788f80f2756a86aa2f410c651f2af83639b95b.png", + "aggregators": [ + "CoinMarketCap", + "LiFi", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 6 + }, + "0x431d5dff03120afa4bdf332c61a6e1766ef37bdb": { + "address": "0x431d5dff03120afa4bdf332c61a6e1766ef37bdb", + "symbol": "JPYC", + "decimals": 18, + "name": "JPY Coin", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x431d5dff03120afa4bdf332c61a6e1766ef37bdb.png", + "aggregators": [ + "CoinMarketCap", + "LiFi", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 6 + }, + "0xbe428c3867f05dea2a89fc76a102b544eac7f772": { + "address": "0xbe428c3867f05dea2a89fc76a102b544eac7f772", + "symbol": "CVT", + "decimals": 18, + "name": "CyberVein", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xbe428c3867f05dea2a89fc76a102b544eac7f772.png", + "aggregators": [ + "CoinMarketCap", + "LiFi", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 6 + }, + "0x6e98e5401adcb0d76f4debfc3d794b3031f48790": { + "address": "0x6e98e5401adcb0d76f4debfc3d794b3031f48790", + "symbol": "AUR", + "decimals": 18, + "name": "Aurix", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x6e98e5401adcb0d76f4debfc3d794b3031f48790.png", + "aggregators": [ + "CoinMarketCap", + "LiFi", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 6 + }, + "0xc52fafdc900cb92ae01e6e4f8979af7f436e2eb2": { + "address": "0xc52fafdc900cb92ae01e6e4f8979af7f436e2eb2", + "symbol": "SEXY", + "decimals": 18, + "name": "Settled ETHXY Token", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xc52fafdc900cb92ae01e6e4f8979af7f436e2eb2.png", + "aggregators": [ + "CoinMarketCap", + "Socket", + "Rubic", + "Rango", + "Sonarwatch", + "SushiSwap" + ], + "occurrences": 6 + }, + "0x97a9bac06f90940bce9caec2b880ff17707519e4": { + "address": "0x97a9bac06f90940bce9caec2b880ff17707519e4", + "symbol": "MNTO", + "decimals": 18, + "name": "Minato", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x97a9bac06f90940bce9caec2b880ff17707519e4.png", + "aggregators": [ + "CoinMarketCap", + "LiFi", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 6 + }, + "0x217ddead61a42369a266f1fb754eb5d3ebadc88a": { + "address": "0x217ddead61a42369a266f1fb754eb5d3ebadc88a", + "symbol": "DON", + "decimals": 18, + "name": "Don key", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x217ddead61a42369a266f1fb754eb5d3ebadc88a.png", + "aggregators": [ + "CoinMarketCap", + "LiFi", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 6 + }, + "0x6c3fe25a4de7fa243c653cfe1f165bf11d99704e": { + "address": "0x6c3fe25a4de7fa243c653cfe1f165bf11d99704e", + "symbol": "HILO", + "decimals": 18, + "name": "Hilo", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x6c3fe25a4de7fa243c653cfe1f165bf11d99704e.png", + "aggregators": [ + "CoinMarketCap", + "LiFi", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 6 + }, + "0x7122985656e38bdc0302db86685bb972b145bd3c": { + "address": "0x7122985656e38bdc0302db86685bb972b145bd3c", + "symbol": "STONE", + "decimals": 18, + "name": "StakeStone ETH", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x7122985656e38bdc0302db86685bb972b145bd3c.png", + "aggregators": [ + "CoinGecko", + "LiFi", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 6 + }, + "0xeabb8996ea1662cad2f7fb715127852cd3262ae9": { + "address": "0xeabb8996ea1662cad2f7fb715127852cd3262ae9", + "symbol": "CNFI", + "decimals": 18, + "name": "Connect Financial", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xeabb8996ea1662cad2f7fb715127852cd3262ae9.png", + "aggregators": [ + "CoinMarketCap", + "LiFi", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 6 + }, + "0x5833dbb0749887174b254ba4a5df747ff523a905": { + "address": "0x5833dbb0749887174b254ba4a5df747ff523a905", + "symbol": "XRUN", + "decimals": 18, + "name": "XRun", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x5833dbb0749887174b254ba4a5df747ff523a905.png", + "aggregators": [ + "CoinGecko", + "LiFi", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 6 + }, + "0x3d26dcd840fcc8e4b2193ace8a092e4a65832f9f": { + "address": "0x3d26dcd840fcc8e4b2193ace8a092e4a65832f9f", + "symbol": "AAMMUNIUNIWETH", + "decimals": 18, + "name": "Aave AMM UniUNIWETH", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x3d26dcd840fcc8e4b2193ace8a092e4a65832f9f.png", + "aggregators": [ + "CoinGecko", + "LiFi", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 6 + }, + "0xe0a189c975e4928222978a74517442239a0b86ff": { + "address": "0xe0a189c975e4928222978a74517442239a0b86ff", + "symbol": "KEYS", + "decimals": 9, + "name": "Keys", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xe0a189c975e4928222978a74517442239a0b86ff.png", + "aggregators": [ + "CoinMarketCap", + "1inch", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 6 + }, + "0xee06a81a695750e71a662b51066f2c74cf4478a0": { + "address": "0xee06a81a695750e71a662b51066f2c74cf4478a0", + "symbol": "DG", + "decimals": 18, + "name": "decentral.games", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xee06a81a695750e71a662b51066f2c74cf4478a0.png", + "aggregators": [ + "CoinGecko", + "LiFi", + "Rubic", + "Rango", + "Sonarwatch", + "SushiSwap" + ], + "occurrences": 6 + }, + "0x7ce89243cc0d9e746609c57845eccbd9bb4b7315": { + "address": "0x7ce89243cc0d9e746609c57845eccbd9bb4b7315", + "symbol": "LILY", + "decimals": 18, + "name": "Lily s Coin", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x7ce89243cc0d9e746609c57845eccbd9bb4b7315.png", + "aggregators": [ + "CoinMarketCap", + "LiFi", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 6 + }, + "0xe03b2642a5111ad0efc0cbce766498c2dd562ae9": { + "address": "0xe03b2642a5111ad0efc0cbce766498c2dd562ae9", + "symbol": "BC", + "decimals": 9, + "name": "Old Bitcoin", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xe03b2642a5111ad0efc0cbce766498c2dd562ae9.png", + "aggregators": [ + "CoinMarketCap", + "LiFi", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 6 + }, + "0x2653891204f463fb2a2f4f412564b19e955166ae": { + "address": "0x2653891204f463fb2a2f4f412564b19e955166ae", + "symbol": "NGL", + "decimals": 18, + "name": "Gold Fever Native Gold", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x2653891204f463fb2a2f4f412564b19e955166ae.png", + "aggregators": [ + "CoinMarketCap", + "LiFi", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 6 + }, + "0xbe9f61555f50dd6167f2772e9cf7519790d96624": { + "address": "0xbe9f61555f50dd6167f2772e9cf7519790d96624", + "symbol": "SX", + "decimals": 18, + "name": "SX Network", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xbe9f61555f50dd6167f2772e9cf7519790d96624.png", + "aggregators": [ + "CoinMarketCap", + "LiFi", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 6 + }, + "0x4b1d0b9f081468d780ca1d5d79132b64301085d1": { + "address": "0x4b1d0b9f081468d780ca1d5d79132b64301085d1", + "symbol": "LMR", + "decimals": 8, + "name": "Lumerin", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x4b1d0b9f081468d780ca1d5d79132b64301085d1.png", + "aggregators": [ + "CoinMarketCap", + "LiFi", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 6 + }, + "0xf1b99e3e573a1a9c5e6b2ce818b617f0e664e86b": { + "address": "0xf1b99e3e573a1a9c5e6b2ce818b617f0e664e86b", + "symbol": "OSQTH", + "decimals": 18, + "name": "Opyn Squeeth", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xf1b99e3e573a1a9c5e6b2ce818b617f0e664e86b.png", + "aggregators": [ + "CoinMarketCap", + "LiFi", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 6 + }, + "0x721a1b990699ee9d90b6327faad0a3e840ae8335": { + "address": "0x721a1b990699ee9d90b6327faad0a3e840ae8335", + "symbol": "LOOT", + "decimals": 18, + "name": "Lootex", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x721a1b990699ee9d90b6327faad0a3e840ae8335.png", + "aggregators": [ + "CoinMarketCap", + "LiFi", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 6 + }, + "0xb90cb79b72eb10c39cbdf86e50b1c89f6a235f2e": { + "address": "0xb90cb79b72eb10c39cbdf86e50b1c89f6a235f2e", + "symbol": "AUDT", + "decimals": 18, + "name": "Auditchain", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xb90cb79b72eb10c39cbdf86e50b1c89f6a235f2e.png", + "aggregators": [ + "CoinMarketCap", + "LiFi", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 6 + }, + "0x8503a7b00b4b52692cc6c14e5b96f142e30547b7": { + "address": "0x8503a7b00b4b52692cc6c14e5b96f142e30547b7", + "symbol": "MEED", + "decimals": 18, + "name": "Meeds DAO", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x8503a7b00b4b52692cc6c14e5b96f142e30547b7.png", + "aggregators": [ + "CoinMarketCap", + "LiFi", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 6 + }, + "0x9e5bd9d9fad182ff0a93ba8085b664bcab00fa68": { + "address": "0x9e5bd9d9fad182ff0a93ba8085b664bcab00fa68", + "symbol": "DINGER", + "decimals": 9, + "name": "Dinger", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x9e5bd9d9fad182ff0a93ba8085b664bcab00fa68.png", + "aggregators": [ + "CoinMarketCap", + "1inch", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 6 + }, + "0x427a03fb96d9a94a6727fbcfbba143444090dd64": { + "address": "0x427a03fb96d9a94a6727fbcfbba143444090dd64", + "symbol": "PIXL", + "decimals": 18, + "name": "PIXL", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x427a03fb96d9a94a6727fbcfbba143444090dd64.png", + "aggregators": [ + "CoinGecko", + "LiFi", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 6 + }, + "0x2d80f5f5328fdcb6eceb7cacf5dd8aedaec94e20": { + "address": "0x2d80f5f5328fdcb6eceb7cacf5dd8aedaec94e20", + "symbol": "AGA", + "decimals": 4, + "name": "AGA", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x2d80f5f5328fdcb6eceb7cacf5dd8aedaec94e20.png", + "aggregators": [ + "CoinMarketCap", + "LiFi", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 6 + }, + "0xdc349913d53b446485e98b76800b6254f43df695": { + "address": "0xdc349913d53b446485e98b76800b6254f43df695", + "symbol": "BEZOGE", + "decimals": 9, + "name": "Bezoge Earth", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xdc349913d53b446485e98b76800b6254f43df695.png", + "aggregators": [ + "CoinMarketCap", + "1inch", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 6 + }, + "0x712bd4beb54c6b958267d9db0259abdbb0bff606": { + "address": "0x712bd4beb54c6b958267d9db0259abdbb0bff606", + "symbol": "UDS", + "decimals": 18, + "name": "Undeads Games", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x712bd4beb54c6b958267d9db0259abdbb0bff606.png", + "aggregators": [ + "CoinMarketCap", + "Socket", + "Rubic", + "Squid", + "Rango", + "Sonarwatch" + ], + "occurrences": 6 + }, + "0x5dd57da40e6866c9fcc34f4b6ddc89f1ba740dfe": { + "address": "0x5dd57da40e6866c9fcc34f4b6ddc89f1ba740dfe", + "symbol": "BRIGHT", + "decimals": 18, + "name": "BrightID", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x5dd57da40e6866c9fcc34f4b6ddc89f1ba740dfe.png", + "aggregators": [ + "CoinMarketCap", + "LiFi", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 6 + }, + "0x8e0eef788350f40255d86dfe8d91ec0ad3a4547f": { + "address": "0x8e0eef788350f40255d86dfe8d91ec0ad3a4547f", + "symbol": "COR", + "decimals": 18, + "name": "Cortensor", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x8e0eef788350f40255d86dfe8d91ec0ad3a4547f.png", + "aggregators": [ + "CoinMarketCap", + "LiFi", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 6 + }, + "0x5eed99d066a8caf10f3e4327c1b3d8b673485eed": { + "address": "0x5eed99d066a8caf10f3e4327c1b3d8b673485eed", + "symbol": "SEED", + "decimals": 18, + "name": "SEED", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x5eed99d066a8caf10f3e4327c1b3d8b673485eed.png", + "aggregators": [ + "Metamask", + "LiFi", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 6 + }, + "0xa354f35829ae975e850e23e9615b11da1b3dc4de": { + "address": "0xa354f35829ae975e850e23e9615b11da1b3dc4de", + "symbol": "YVUSDC", + "decimals": 6, + "name": "USDC yVault", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xa354f35829ae975e850e23e9615b11da1b3dc4de.png", + "aggregators": [ + "CoinGecko", + "LiFi", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 6 + }, + "0xc97d6c52f3add91fa1c5287a453d7444aecbca83": { + "address": "0xc97d6c52f3add91fa1c5287a453d7444aecbca83", + "symbol": "DZOO", + "decimals": 18, + "name": "Degen Zoo", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xc97d6c52f3add91fa1c5287a453d7444aecbca83.png", + "aggregators": [ + "CoinMarketCap", + "LiFi", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 6 + }, + "0xf66cd2f8755a21d3c8683a10269f795c0532dd58": { + "address": "0xf66cd2f8755a21d3c8683a10269f795c0532dd58", + "symbol": "COREDAO", + "decimals": 18, + "name": "coreDAO", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xf66cd2f8755a21d3c8683a10269f795c0532dd58.png", + "aggregators": [ + "CoinMarketCap", + "LiFi", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 6 + }, + "0x8a458a9dc9048e005d22849f470891b840296619": { + "address": "0x8a458a9dc9048e005d22849f470891b840296619", + "symbol": "AMKR", + "decimals": 18, + "name": "Aave v3 MKR", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x8a458a9dc9048e005d22849f470891b840296619.png", + "aggregators": [ + "CoinGecko", + "1inch", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 6 + }, + "0x4bb3205bf648b7f59ef90dee0f1b62f6116bc7ca": { + "address": "0x4bb3205bf648b7f59ef90dee0f1b62f6116bc7ca", + "symbol": "BYN", + "decimals": 18, + "name": "NBX", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x4bb3205bf648b7f59ef90dee0f1b62f6116bc7ca.png", + "aggregators": [ + "CoinMarketCap", + "LiFi", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 6 + }, + "0xd1b5651e55d4ceed36251c61c50c889b36f6abb5": { + "address": "0xd1b5651e55d4ceed36251c61c50c889b36f6abb5", + "symbol": "SDCRV", + "decimals": 18, + "name": "Stake DAO CRV", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xd1b5651e55d4ceed36251c61c50c889b36f6abb5.png", + "aggregators": [ + "CoinMarketCap", + "LiFi", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 6 + }, + "0x610dbd98a28ebba525e9926b6aaf88f9159edbfd": { + "address": "0x610dbd98a28ebba525e9926b6aaf88f9159edbfd", + "symbol": "NSTR", + "decimals": 18, + "name": "Nostra", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x610dbd98a28ebba525e9926b6aaf88f9159edbfd.png", + "aggregators": [ + "CoinMarketCap", + "LiFi", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 6 + }, + "0x9b3a8159e119eb09822115ae08ee1526849e1116": { + "address": "0x9b3a8159e119eb09822115ae08ee1526849e1116", + "symbol": "MMA", + "decimals": 9, + "name": "Meme Alliance", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x9b3a8159e119eb09822115ae08ee1526849e1116.png", + "aggregators": [ + "CoinMarketCap", + "Socket", + "Rubic", + "Squid", + "Rango", + "Sonarwatch" + ], + "occurrences": 6 + }, + "0xe7976c4efc60d9f4c200cc1bcef1a1e3b02c73e7": { + "address": "0xe7976c4efc60d9f4c200cc1bcef1a1e3b02c73e7", + "symbol": "MAX", + "decimals": 18, + "name": "MAX", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xe7976c4efc60d9f4c200cc1bcef1a1e3b02c73e7.png", + "aggregators": [ + "CoinMarketCap", + "LiFi", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 6 + }, + "0xf7413489c474ca4399eee604716c72879eea3615": { + "address": "0xf7413489c474ca4399eee604716c72879eea3615", + "symbol": "APYS", + "decimals": 18, + "name": "APYSwap", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xf7413489c474ca4399eee604716c72879eea3615.png", + "aggregators": [ + "CoinMarketCap", + "LiFi", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 6 + }, + "0x482df7483a52496f4c65ab499966dfcdf4ddfdbc": { + "address": "0x482df7483a52496f4c65ab499966dfcdf4ddfdbc", + "symbol": "LDY", + "decimals": 18, + "name": "Ledgity Token", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x482df7483a52496f4c65ab499966dfcdf4ddfdbc.png", + "aggregators": [ + "CoinMarketCap", + "LiFi", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 6 + }, + "0x8fe815417913a93ea99049fc0718ee1647a2a07c": { + "address": "0x8fe815417913a93ea99049fc0718ee1647a2a07c", + "symbol": "XSWAP", + "decimals": 18, + "name": "XSwap", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x8fe815417913a93ea99049fc0718ee1647a2a07c.png", + "aggregators": [ + "CoinMarketCap", + "LiFi", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 6 + }, + "0x49fb8ad7578148e17c3ef0c344ce23a66ed372c4": { + "address": "0x49fb8ad7578148e17c3ef0c344ce23a66ed372c4", + "symbol": "TAOBOT", + "decimals": 18, + "name": "tao bot", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x49fb8ad7578148e17c3ef0c344ce23a66ed372c4.png", + "aggregators": [ + "CoinMarketCap", + "Socket", + "Rubic", + "Squid", + "Rango", + "Sonarwatch" + ], + "occurrences": 6 + }, + "0x35ca1e5a9b1c09fa542fa18d1ba4d61c8edff852": { + "address": "0x35ca1e5a9b1c09fa542fa18d1ba4d61c8edff852", + "symbol": "SCHRODI", + "decimals": 18, + "name": "Schrodi", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x35ca1e5a9b1c09fa542fa18d1ba4d61c8edff852.png", + "aggregators": [ + "CoinMarketCap", + "LiFi", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 6 + }, + "0xde342a3e269056fc3305f9e315f4c40d917ba521": { + "address": "0xde342a3e269056fc3305f9e315f4c40d917ba521", + "symbol": "BYTE", + "decimals": 9, + "name": "Byte", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xde342a3e269056fc3305f9e315f4c40d917ba521.png", + "aggregators": [ + "CoinMarketCap", + "1inch", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 6 + }, + "0xe86df1970055e9caee93dae9b7d5fd71595d0e18": { + "address": "0xe86df1970055e9caee93dae9b7d5fd71595d0e18", + "symbol": "BTC20", + "decimals": 18, + "name": "Bitcoin20", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xe86df1970055e9caee93dae9b7d5fd71595d0e18.png", + "aggregators": [ + "CoinGecko", + "LiFi", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 6 + }, + "0xcfeaead4947f0705a14ec42ac3d44129e1ef3ed5": { + "address": "0xcfeaead4947f0705a14ec42ac3d44129e1ef3ed5", + "symbol": "NOTE", + "decimals": 8, + "name": "Notional Finance", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xcfeaead4947f0705a14ec42ac3d44129e1ef3ed5.png", + "aggregators": [ + "CoinMarketCap", + "LiFi", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 6 + }, + "0x30ae41d5f9988d359c733232c6c693c0e645c77e": { + "address": "0x30ae41d5f9988d359c733232c6c693c0e645c77e", + "symbol": "WAAC", + "decimals": 0, + "name": "Wrapped AyeAyeCoin", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x30ae41d5f9988d359c733232c6c693c0e645c77e.png", + "aggregators": [ + "CoinGecko", + "LiFi", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 6 + }, + "0x8e57c27761ebbd381b0f9d09bb92ceb51a358abb": { + "address": "0x8e57c27761ebbd381b0f9d09bb92ceb51a358abb", + "symbol": "XDNA", + "decimals": 18, + "name": "extraDNA", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x8e57c27761ebbd381b0f9d09bb92ceb51a358abb.png", + "aggregators": [ + "CoinMarketCap", + "LiFi", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 6 + }, + "0x825459139c897d769339f295e962396c4f9e4a4d": { + "address": "0x825459139c897d769339f295e962396c4f9e4a4d", + "symbol": "GAME", + "decimals": 18, + "name": "GameBuild", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x825459139c897d769339f295e962396c4f9e4a4d.png", + "aggregators": [ + "CoinMarketCap", + "LiFi", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 6 + }, + "0xc1abb8c93be6811affc70675b0432926c4bfbb5d": { + "address": "0xc1abb8c93be6811affc70675b0432926c4bfbb5d", + "symbol": "UERII", + "decimals": 18, + "name": "UERII", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xc1abb8c93be6811affc70675b0432926c4bfbb5d.png", + "aggregators": [ + "CoinGecko", + "LiFi", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 6 + }, + "0x82d09e30d5d682d69b4a5d97c61b7ba651457625": { + "address": "0x82d09e30d5d682d69b4a5d97c61b7ba651457625", + "symbol": "TKN", + "decimals": 18, + "name": "Token Name Service", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x82d09e30d5d682d69b4a5d97c61b7ba651457625.png", + "aggregators": [ + "CoinGecko", + "LiFi", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 6 + }, + "0x917cee801a67f933f2e6b33fc0cd1ed2d5909d88": { + "address": "0x917cee801a67f933f2e6b33fc0cd1ed2d5909d88", + "symbol": "WEETHS", + "decimals": 18, + "name": "ether fi weETHs", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x917cee801a67f933f2e6b33fc0cd1ed2d5909d88.png", + "aggregators": [ + "CoinGecko", + "LiFi", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 6 + }, + "0xc9bca88b04581699fab5aa276ccaff7df957cbbf": { + "address": "0xc9bca88b04581699fab5aa276ccaff7df957cbbf", + "symbol": "VISTA", + "decimals": 18, + "name": "Ethervista", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xc9bca88b04581699fab5aa276ccaff7df957cbbf.png", + "aggregators": [ + "CoinMarketCap", + "LiFi", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 6 + }, + "0x32b77729cd87f1ef2bea4c650c16f89f08472c69": { + "address": "0x32b77729cd87f1ef2bea4c650c16f89f08472c69", + "symbol": "BOX", + "decimals": 18, + "name": "DeBox", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x32b77729cd87f1ef2bea4c650c16f89f08472c69.png", + "aggregators": [ + "CoinMarketCap", + "LiFi", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 6 + }, + "0x3a707d56d538e85b783e8ce12b346e7fb6511f90": { + "address": "0x3a707d56d538e85b783e8ce12b346e7fb6511f90", + "symbol": "IETHV", + "decimals": 18, + "name": "Inverse Ethereum Volatility Index Token", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x3a707d56d538e85b783e8ce12b346e7fb6511f90.png", + "aggregators": [ + "CoinGecko", + "LiFi", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 6 + }, + "0x3391bc034f2935ef0e1e41619445f998b2680d35": { + "address": "0x3391bc034f2935ef0e1e41619445f998b2680d35", + "symbol": "IDLEUSDCSAFE", + "decimals": 18, + "name": "IdleUSDC Risk Adjusted", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x3391bc034f2935ef0e1e41619445f998b2680d35.png", + "aggregators": [ + "CoinGecko", + "LiFi", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 6 + }, + "0xa21af1050f7b26e0cff45ee51548254c41ed6b5c": { + "address": "0xa21af1050f7b26e0cff45ee51548254c41ed6b5c", + "symbol": "OSAK", + "decimals": 18, + "name": "Osaka Protocol", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xa21af1050f7b26e0cff45ee51548254c41ed6b5c.png", + "aggregators": [ + "CoinMarketCap", + "Socket", + "Rubic", + "Rango", + "Sonarwatch", + "SushiSwap" + ], + "occurrences": 6 + }, + "0x0789dbae94fb18e5789b8e4489bcb7a1adb58622": { + "address": "0x0789dbae94fb18e5789b8e4489bcb7a1adb58622", + "symbol": "FSCC", + "decimals": 8, + "name": "FISCO Coin", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x0789dbae94fb18e5789b8e4489bcb7a1adb58622.png", + "aggregators": [ + "CoinMarketCap", + "LiFi", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 6 + }, + "0x94804dc4948184ffd7355f62ccbb221c9765886f": { + "address": "0x94804dc4948184ffd7355f62ccbb221c9765886f", + "symbol": "RAGE", + "decimals": 18, + "name": "Rage Fan", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x94804dc4948184ffd7355f62ccbb221c9765886f.png", + "aggregators": [ + "CoinMarketCap", + "LiFi", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 6 + }, + "0xab93df617f51e1e415b5b4f8111f122d6b48e55c": { + "address": "0xab93df617f51e1e415b5b4f8111f122d6b48e55c", + "symbol": "DETO", + "decimals": 18, + "name": "Delta Exchange", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xab93df617f51e1e415b5b4f8111f122d6b48e55c.png", + "aggregators": [ + "CoinMarketCap", + "LiFi", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 6 + }, + "0x65ccd72c0813ce6f2703593b633202a0f3ca6a0c": { + "address": "0x65ccd72c0813ce6f2703593b633202a0f3ca6a0c", + "symbol": "EGG", + "decimals": 18, + "name": "Nestree", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x65ccd72c0813ce6f2703593b633202a0f3ca6a0c.png", + "aggregators": [ + "CoinMarketCap", + "LiFi", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 6 + }, + "0x7f792db54b0e580cdc755178443f0430cf799aca": { + "address": "0x7f792db54b0e580cdc755178443f0430cf799aca", + "symbol": "VOLT", + "decimals": 9, + "name": "Volt Inu", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x7f792db54b0e580cdc755178443f0430cf799aca.png", + "aggregators": [ + "CoinMarketCap", + "Socket", + "Rubic", + "Squid", + "Rango", + "Sonarwatch" + ], + "occurrences": 6 + }, + "0x80ce3027a70e0a928d9268994e9b85d03bd4cdcf": { + "address": "0x80ce3027a70e0a928d9268994e9b85d03bd4cdcf", + "symbol": "LKR", + "decimals": 18, + "name": "Lokr", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x80ce3027a70e0a928d9268994e9b85d03bd4cdcf.png", + "aggregators": [ + "CoinMarketCap", + "LiFi", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 6 + }, + "0xef53462838000184f35f7d991452e5f25110b207": { + "address": "0xef53462838000184f35f7d991452e5f25110b207", + "symbol": "KFT", + "decimals": 18, + "name": "Knit Finance", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xef53462838000184f35f7d991452e5f25110b207.png", + "aggregators": [ + "CoinMarketCap", + "LiFi", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 6 + }, + "0x418d75f65a02b3d53b2418fb8e1fe493759c7605": { + "address": "0x418d75f65a02b3d53b2418fb8e1fe493759c7605", + "symbol": "BNB", + "decimals": 18, + "name": "Binance Coin Wormhole", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x418d75f65a02b3d53b2418fb8e1fe493759c7605.png", + "aggregators": [ + "CoinMarketCap", + "1inch", + "LiFi", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 6 + }, + "0xa2b4c0af19cc16a6cfacce81f192b024d625817d": { + "address": "0xa2b4c0af19cc16a6cfacce81f192b024d625817d", + "symbol": "KISHU", + "decimals": 9, + "name": "Kishu Inu", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xa2b4c0af19cc16a6cfacce81f192b024d625817d.png", + "aggregators": [ + "CoinMarketCap", + "1inch", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 6 + }, + "0xd69f306549e9d96f183b1aeca30b8f4353c2ecc3": { + "address": "0xd69f306549e9d96f183b1aeca30b8f4353c2ecc3", + "symbol": "MCHC", + "decimals": 18, + "name": "MCH Coin", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xd69f306549e9d96f183b1aeca30b8f4353c2ecc3.png", + "aggregators": [ + "CoinMarketCap", + "LiFi", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 6 + }, + "0x2e44f3f609ff5aa4819b323fd74690f07c3607c4": { + "address": "0x2e44f3f609ff5aa4819b323fd74690f07c3607c4", + "symbol": "PIN", + "decimals": 18, + "name": "PinLink", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x2e44f3f609ff5aa4819b323fd74690f07c3607c4.png", + "aggregators": [ + "CoinMarketCap", + "1inch", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 6 + }, + "0x06b964d96f5dcf7eae9d7c559b09edce244d4b8e": { + "address": "0x06b964d96f5dcf7eae9d7c559b09edce244d4b8e", + "symbol": "USUALX", + "decimals": 18, + "name": "USUALx", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x06b964d96f5dcf7eae9d7c559b09edce244d4b8e.png", + "aggregators": [ + "CoinGecko", + "LiFi", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 6 + }, + "0x7a56e1c57c7475ccf742a1832b028f0456652f97": { + "address": "0x7a56e1c57c7475ccf742a1832b028f0456652f97", + "symbol": "SOLVBTC", + "decimals": 18, + "name": "Solv Protocol BTC", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x7a56e1c57c7475ccf742a1832b028f0456652f97.png", + "aggregators": [ + "CoinMarketCap", + "LiFi", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 6 + }, + "0x1982b2f5814301d4e9a8b0201555376e62f82428": { + "address": "0x1982b2f5814301d4e9a8b0201555376e62f82428", + "symbol": "ASTETH", + "decimals": 18, + "name": "Aave Interest Bearing STETH", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x1982b2f5814301d4e9a8b0201555376e62f82428.png", + "aggregators": [ + "CoinGecko", + "LiFi", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 6 + }, + "0x87b46212e805a3998b7e8077e9019c90759ea88c": { + "address": "0x87b46212e805a3998b7e8077e9019c90759ea88c", + "symbol": "AGA", + "decimals": 18, + "name": "AgoraHub", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x87b46212e805a3998b7e8077e9019c90759ea88c.png", + "aggregators": [ + "CoinMarketCap", + "LiFi", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 6 + }, + "0xa5f1dbb0e55bc31f32c6d032bee330288490e722": { + "address": "0xa5f1dbb0e55bc31f32c6d032bee330288490e722", + "symbol": "DBD", + "decimals": 18, + "name": "Day By Day", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xa5f1dbb0e55bc31f32c6d032bee330288490e722.png", + "aggregators": [ + "CoinMarketCap", + "LiFi", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 6 + }, + "0x1571ed0bed4d987fe2b498ddbae7dfa19519f651": { + "address": "0x1571ed0bed4d987fe2b498ddbae7dfa19519f651", + "symbol": "IFARM", + "decimals": 18, + "name": "iFARM", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x1571ed0bed4d987fe2b498ddbae7dfa19519f651.png", + "aggregators": [ + "CoinGecko", + "LiFi", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 6 + }, + "0x0655977feb2f289a4ab78af67bab0d17aab84367": { + "address": "0x0655977feb2f289a4ab78af67bab0d17aab84367", + "symbol": "SCRVUSD", + "decimals": 18, + "name": "Savings crvUSD", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x0655977feb2f289a4ab78af67bab0d17aab84367.png", + "aggregators": [ + "Metamask", + "1inch", + "LiFi", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 6 + }, + "0xa4cf2afd3b165975afffbf7e487cdd40c894ab6b": { + "address": "0xa4cf2afd3b165975afffbf7e487cdd40c894ab6b", + "symbol": "SHIBAKEN", + "decimals": 0, + "name": "Shibaken Finance", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xa4cf2afd3b165975afffbf7e487cdd40c894ab6b.png", + "aggregators": [ + "CoinGecko", + "1inch", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 6 + }, + "0x3540abe4f288b280a0740ad5121aec337c404d15": { + "address": "0x3540abe4f288b280a0740ad5121aec337c404d15", + "symbol": "TPRO", + "decimals": 18, + "name": "TPRO Network", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x3540abe4f288b280a0740ad5121aec337c404d15.png", + "aggregators": [ + "CoinMarketCap", + "LiFi", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 6 + }, + "0x1d96fd43ee07aa79f8fd003cbdf404fb5ce41ad2": { + "address": "0x1d96fd43ee07aa79f8fd003cbdf404fb5ce41ad2", + "symbol": "QWLA", + "decimals": 18, + "name": "Qawalla", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x1d96fd43ee07aa79f8fd003cbdf404fb5ce41ad2.png", + "aggregators": [ + "CoinMarketCap", + "LiFi", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 6 + }, + "0xe3944ab788a60ca266f1eec3c26925b95f6370ad": { + "address": "0xe3944ab788a60ca266f1eec3c26925b95f6370ad", + "symbol": "RAIN", + "decimals": 18, + "name": "Precipitate ai", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xe3944ab788a60ca266f1eec3c26925b95f6370ad.png", + "aggregators": [ + "CoinMarketCap", + "LiFi", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 6 + }, + "0x48fb253446873234f2febbf9bdeaa72d9d387f94": { + "address": "0x48fb253446873234f2febbf9bdeaa72d9d387f94", + "symbol": "VBNT", + "decimals": 18, + "name": "Bancor Governance Token", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x48fb253446873234f2febbf9bdeaa72d9d387f94.png", + "aggregators": [ + "CoinGecko", + "Socket", + "Rubic", + "Rango", + "Sonarwatch", + "Bancor" + ], + "occurrences": 6 + }, + "0x243c9be13faba09f945ccc565547293337da0ad7": { + "address": "0x243c9be13faba09f945ccc565547293337da0ad7", + "symbol": "TRUF", + "decimals": 18, + "name": "TRUF Network", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x243c9be13faba09f945ccc565547293337da0ad7.png", + "aggregators": [ + "CoinMarketCap", + "LiFi", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 6 + }, + "0xe485e2f1bab389c08721b291f6b59780fec83fd7": { + "address": "0xe485e2f1bab389c08721b291f6b59780fec83fd7", + "symbol": "SHU", + "decimals": 18, + "name": "Shutter", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xe485e2f1bab389c08721b291f6b59780fec83fd7.png", + "aggregators": [ + "CoinGecko", + "LiFi", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 6 + }, + "0xaa95f26e30001251fb905d264aa7b00ee9df6c18": { + "address": "0xaa95f26e30001251fb905d264aa7b00ee9df6c18", + "symbol": "KENDU", + "decimals": 18, + "name": "Kendu Inu", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xaa95f26e30001251fb905d264aa7b00ee9df6c18.png", + "aggregators": [ + "CoinMarketCap", + "Socket", + "Rubic", + "Squid", + "Rango", + "Sonarwatch" + ], + "occurrences": 6 + }, + "0xf63e309818e4ea13782678ce6c31c1234fa61809": { + "address": "0xf63e309818e4ea13782678ce6c31c1234fa61809", + "symbol": "JANET", + "decimals": 8, + "name": "Janet", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xf63e309818e4ea13782678ce6c31c1234fa61809.png", + "aggregators": [ + "CoinMarketCap", + "LiFi", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 6 + }, + "0x0bc37bea9068a86c221b8bd71ea6228260dad5a2": { + "address": "0x0bc37bea9068a86c221b8bd71ea6228260dad5a2", + "symbol": "SPARKLET", + "decimals": 18, + "name": "Upland", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x0bc37bea9068a86c221b8bd71ea6228260dad5a2.png", + "aggregators": [ + "CoinGecko", + "LiFi", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 6 + }, + "0xf9fbe825bfb2bf3e387af0dc18cac8d87f29dea8": { + "address": "0xf9fbe825bfb2bf3e387af0dc18cac8d87f29dea8", + "symbol": "RADAR", + "decimals": 18, + "name": "Radar", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xf9fbe825bfb2bf3e387af0dc18cac8d87f29dea8.png", + "aggregators": [ + "CoinMarketCap", + "1inch", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 6 + }, + "0xc064f4f215b6a1e4e7f39bd8530c4de0fc43ee9d": { + "address": "0xc064f4f215b6a1e4e7f39bd8530c4de0fc43ee9d", + "symbol": "LM", + "decimals": 18, + "name": "LeisureMeta", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xc064f4f215b6a1e4e7f39bd8530c4de0fc43ee9d.png", + "aggregators": [ + "CoinMarketCap", + "LiFi", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 6 + }, + "0xe9a95d175a5f4c9369f3b74222402eb1b837693b": { + "address": "0xe9a95d175a5f4c9369f3b74222402eb1b837693b", + "symbol": "NOW", + "decimals": 8, + "name": "ChangeNOW", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xe9a95d175a5f4c9369f3b74222402eb1b837693b.png", + "aggregators": [ + "CoinMarketCap", + "1inch", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 6 + }, + "0x36ac219f90f5a6a3c77f2a7b660e3cc701f68e25": { + "address": "0x36ac219f90f5a6a3c77f2a7b660e3cc701f68e25", + "symbol": "XCM", + "decimals": 18, + "name": "Coinmetro", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x36ac219f90f5a6a3c77f2a7b660e3cc701f68e25.png", + "aggregators": [ + "CoinMarketCap", + "LiFi", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 6 + }, + "0x246908bff0b1ba6ecadcf57fb94f6ae2fcd43a77": { + "address": "0x246908bff0b1ba6ecadcf57fb94f6ae2fcd43a77", + "symbol": "DIVI", + "decimals": 8, + "name": "Divi", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x246908bff0b1ba6ecadcf57fb94f6ae2fcd43a77.png", + "aggregators": [ + "CoinMarketCap", + "LiFi", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 6 + }, + "0x446c9033e7516d820cc9a2ce2d0b7328b579406f": { + "address": "0x446c9033e7516d820cc9a2ce2d0b7328b579406f", + "symbol": "SOLVE", + "decimals": 8, + "name": "SOLVE", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x446c9033e7516d820cc9a2ce2d0b7328b579406f.png", + "aggregators": [ + "CoinMarketCap", + "LiFi", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 6 + }, + "0x09617f6fd6cf8a71278ec86e23bbab29c04353a7": { + "address": "0x09617f6fd6cf8a71278ec86e23bbab29c04353a7", + "symbol": "ULT", + "decimals": 18, + "name": "Shardus", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x09617f6fd6cf8a71278ec86e23bbab29c04353a7.png", + "aggregators": [ + "CoinMarketCap", + "LiFi", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 6 + }, + "0x3d3af44cf092a49280e316f09c8f20ecf97bc933": { + "address": "0x3d3af44cf092a49280e316f09c8f20ecf97bc933", + "symbol": "UCX", + "decimals": 18, + "name": "UCX", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x3d3af44cf092a49280e316f09c8f20ecf97bc933.png", + "aggregators": [ + "CoinMarketCap", + "LiFi", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 6 + }, + "0x155ff1a85f440ee0a382ea949f24ce4e0b751c65": { + "address": "0x155ff1a85f440ee0a382ea949f24ce4e0b751c65", + "symbol": "EYE", + "decimals": 18, + "name": "Behodler", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x155ff1a85f440ee0a382ea949f24ce4e0b751c65.png", + "aggregators": [ + "CoinMarketCap", + "LiFi", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 6 + }, + "0xa2085073878152ac3090ea13d1e41bd69e60dc99": { + "address": "0xa2085073878152ac3090ea13d1e41bd69e60dc99", + "symbol": "ELG", + "decimals": 18, + "name": "EscoinToken", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xa2085073878152ac3090ea13d1e41bd69e60dc99.png", + "aggregators": [ + "CoinMarketCap", + "LiFi", + "Rubic", + "Rango", + "Sonarwatch", + "Bancor" + ], + "occurrences": 6 + }, + "0x12e2b8033420270db2f3b328e32370cb5b2ca134": { + "address": "0x12e2b8033420270db2f3b328e32370cb5b2ca134", + "symbol": "SFP", + "decimals": 18, + "name": "SafePal", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x12e2b8033420270db2f3b328e32370cb5b2ca134.png", + "aggregators": [ + "CoinMarketCap", + "1inch", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 6 + }, + "0xcd7492db29e2ab436e819b249452ee1bbdf52214": { + "address": "0xcd7492db29e2ab436e819b249452ee1bbdf52214", + "symbol": "SMI", + "decimals": 8, + "name": "SafeMoon Inu", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xcd7492db29e2ab436e819b249452ee1bbdf52214.png", + "aggregators": [ + "CoinMarketCap", + "1inch", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 6 + }, + "0x8cc0f052fff7ead7f2edcccac895502e884a8a71": { + "address": "0x8cc0f052fff7ead7f2edcccac895502e884a8a71", + "symbol": "ARTH", + "decimals": 18, + "name": "ARTH Valuecoin", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x8cc0f052fff7ead7f2edcccac895502e884a8a71.png", + "aggregators": [ + "Metamask", + "LiFi", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 6 + }, + "0x72e5390edb7727e3d4e3436451dadaff675dbcc0": { + "address": "0x72e5390edb7727e3d4e3436451dadaff675dbcc0", + "symbol": "HANU", + "decimals": 12, + "name": "Hanu Yokia", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x72e5390edb7727e3d4e3436451dadaff675dbcc0.png", + "aggregators": [ + "CoinMarketCap", + "1inch", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 6 + }, + "0xf519381791c03dd7666c142d4e49fd94d3536011": { + "address": "0xf519381791c03dd7666c142d4e49fd94d3536011", + "symbol": "ASIA", + "decimals": 18, + "name": "Asia Coin", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xf519381791c03dd7666c142d4e49fd94d3536011.png", + "aggregators": [ + "CoinMarketCap", + "LiFi", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 6 + }, + "0xd43be54c1aedf7ee4099104f2dae4ea88b18a249": { + "address": "0xd43be54c1aedf7ee4099104f2dae4ea88b18a249", + "symbol": "TRAXX", + "decimals": 18, + "name": "Traxx", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xd43be54c1aedf7ee4099104f2dae4ea88b18a249.png", + "aggregators": [ + "CoinMarketCap", + "LiFi", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 6 + }, + "0x94e496474f1725f1c1824cb5bdb92d7691a4f03a": { + "address": "0x94e496474f1725f1c1824cb5bdb92d7691a4f03a", + "symbol": "BANANA", + "decimals": 18, + "name": "Banana", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x94e496474f1725f1c1824cb5bdb92d7691a4f03a.png", + "aggregators": [ + "CoinMarketCap", + "LiFi", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 6 + }, + "0xc5fb36dd2fb59d3b98deff88425a3f425ee469ed": { + "address": "0xc5fb36dd2fb59d3b98deff88425a3f425ee469ed", + "symbol": "TSUKA", + "decimals": 9, + "name": "Dejitaru Tsuka", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xc5fb36dd2fb59d3b98deff88425a3f425ee469ed.png", + "aggregators": [ + "CoinMarketCap", + "LiFi", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 6 + }, + "0x616e8bfa43f920657b3497dbf40d6b1a02d4608d": { + "address": "0x616e8bfa43f920657b3497dbf40d6b1a02d4608d", + "symbol": "AURABAL", + "decimals": 18, + "name": "Aura BAL", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x616e8bfa43f920657b3497dbf40d6b1a02d4608d.png", + "aggregators": [ + "CoinMarketCap", + "LiFi", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 6 + }, + "0x0c90c57aaf95a3a87eadda6ec3974c99d786511f": { + "address": "0x0c90c57aaf95a3a87eadda6ec3974c99d786511f", + "symbol": "HAN", + "decimals": 18, + "name": "HanChain", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x0c90c57aaf95a3a87eadda6ec3974c99d786511f.png", + "aggregators": [ + "CoinMarketCap", + "LiFi", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 6 + }, + "0x525a8f6f3ba4752868cde25164382bfbae3990e1": { + "address": "0x525a8f6f3ba4752868cde25164382bfbae3990e1", + "symbol": "NYM", + "decimals": 6, + "name": "Nym", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x525a8f6f3ba4752868cde25164382bfbae3990e1.png", + "aggregators": [ + "CoinMarketCap", + "Socket", + "Rubic", + "Squid", + "Rango", + "Sonarwatch" + ], + "occurrences": 6 + }, + "0x4f08705fb8f33affc231ed66e626b40e84a71870": { + "address": "0x4f08705fb8f33affc231ed66e626b40e84a71870", + "symbol": "FLUT", + "decimals": 11, + "name": "Flute", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x4f08705fb8f33affc231ed66e626b40e84a71870.png", + "aggregators": [ + "CoinMarketCap", + "LiFi", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 6 + }, + "0x68a47fe1cf42eba4a030a10cd4d6a1031ca3ca0a": { + "address": "0x68a47fe1cf42eba4a030a10cd4d6a1031ca3ca0a", + "symbol": "TET", + "decimals": 8, + "name": "Tectum", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x68a47fe1cf42eba4a030a10cd4d6a1031ca3ca0a.png", + "aggregators": [ + "CoinMarketCap", + "LiFi", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 6 + }, + "0x15f74458ae0bfdaa1a96ca1aa779d715cc1eefe4": { + "address": "0x15f74458ae0bfdaa1a96ca1aa779d715cc1eefe4", + "symbol": "GRAI", + "decimals": 18, + "name": "Grai", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x15f74458ae0bfdaa1a96ca1aa779d715cc1eefe4.png", + "aggregators": [ + "CoinMarketCap", + "LiFi", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 6 + }, + "0x5aef5bba19e6a1644805bd4f5c93c8557b87c62c": { + "address": "0x5aef5bba19e6a1644805bd4f5c93c8557b87c62c", + "symbol": "FAKEAI", + "decimals": 18, + "name": "DeepFakeAI", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x5aef5bba19e6a1644805bd4f5c93c8557b87c62c.png", + "aggregators": [ + "CoinMarketCap", + "LiFi", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 6 + }, + "0x08a1c30bbb26425c1031ee9e43fa0b9960742539": { + "address": "0x08a1c30bbb26425c1031ee9e43fa0b9960742539", + "symbol": "LNDX", + "decimals": 6, + "name": "LandX Governance Token", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x08a1c30bbb26425c1031ee9e43fa0b9960742539.png", + "aggregators": [ + "CoinMarketCap", + "LiFi", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 6 + }, + "0x7fd4d7737597e7b4ee22acbf8d94362343ae0a79": { + "address": "0x7fd4d7737597e7b4ee22acbf8d94362343ae0a79", + "symbol": "WMC", + "decimals": 2, + "name": "Wrapped MistCoin", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x7fd4d7737597e7b4ee22acbf8d94362343ae0a79.png", + "aggregators": [ + "CoinMarketCap", + "LiFi", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 6 + }, + "0xad038eb671c44b853887a7e32528fab35dc5d710": { + "address": "0xad038eb671c44b853887a7e32528fab35dc5d710", + "symbol": "DBR", + "decimals": 18, + "name": "DOLA Borrowing Right", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xad038eb671c44b853887a7e32528fab35dc5d710.png", + "aggregators": [ + "CoinMarketCap", + "LiFi", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 6 + }, + "0x2da719db753dfa10a62e140f436e1d67f2ddb0d6": { + "address": "0x2da719db753dfa10a62e140f436e1d67f2ddb0d6", + "symbol": "CERE", + "decimals": 10, + "name": "Cere Network", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x2da719db753dfa10a62e140f436e1d67f2ddb0d6.png", + "aggregators": [ + "CoinMarketCap", + "LiFi", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 6 + }, + "0xa469b7ee9ee773642b3e93e842e5d9b5baa10067": { + "address": "0xa469b7ee9ee773642b3e93e842e5d9b5baa10067", + "symbol": "USDZ", + "decimals": 18, + "name": "Anzen USDz", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xa469b7ee9ee773642b3e93e842e5d9b5baa10067.png", + "aggregators": [ + "CoinGecko", + "LiFi", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 6 + }, + "0x3ffeea07a27fab7ad1df5297fa75e77a43cb5790": { + "address": "0x3ffeea07a27fab7ad1df5297fa75e77a43cb5790", + "symbol": "PEIPEI", + "decimals": 18, + "name": "PeiPei", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x3ffeea07a27fab7ad1df5297fa75e77a43cb5790.png", + "aggregators": [ + "CoinGecko", + "1inch", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 6 + }, + "0x6e15a54b5ecac17e58dadeddbe8506a7560252f9": { + "address": "0x6e15a54b5ecac17e58dadeddbe8506a7560252f9", + "symbol": "F", + "decimals": 18, + "name": "SynFutures", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x6e15a54b5ecac17e58dadeddbe8506a7560252f9.png", + "aggregators": [ + "CoinMarketCap", + "LiFi", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 6 + }, + "0x5cac718a3ae330d361e39244bf9e67ab17514ce8": { + "address": "0x5cac718a3ae330d361e39244bf9e67ab17514ce8", + "symbol": "COT", + "decimals": 18, + "name": "Cosplay Token", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x5cac718a3ae330d361e39244bf9e67ab17514ce8.png", + "aggregators": [ + "CoinMarketCap", + "LiFi", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 6 + }, + "0x28561b8a2360f463011c16b6cc0b0cbef8dbbcad": { + "address": "0x28561b8a2360f463011c16b6cc0b0cbef8dbbcad", + "symbol": "MOODENG", + "decimals": 9, + "name": "MOO DENG", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x28561b8a2360f463011c16b6cc0b0cbef8dbbcad.png", + "aggregators": [ + "CoinGecko", + "1inch", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 6 + }, + "0xc08e7e23c235073c6807c2efe7021304cb7c2815": { + "address": "0xc08e7e23c235073c6807c2efe7021304cb7c2815", + "symbol": "XUSD", + "decimals": 6, + "name": "StraitsX XUSD", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xc08e7e23c235073c6807c2efe7021304cb7c2815.png", + "aggregators": [ + "CoinMarketCap", + "Socket", + "Rubic", + "Squid", + "Rango", + "Sonarwatch" + ], + "occurrences": 6 + }, + "0x4aa41bc1649c9c3177ed16caaa11482295fc7441": { + "address": "0x4aa41bc1649c9c3177ed16caaa11482295fc7441", + "symbol": "XFIT", + "decimals": 18, + "name": "XFai", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x4aa41bc1649c9c3177ed16caaa11482295fc7441.png", + "aggregators": [ + "CoinMarketCap", + "Socket", + "Rubic", + "Squid", + "Rango", + "Sonarwatch" + ], + "occurrences": 6 + }, + "0x292fcdd1b104de5a00250febba9bc6a5092a0076": { + "address": "0x292fcdd1b104de5a00250febba9bc6a5092a0076", + "symbol": "HASHAI", + "decimals": 18, + "name": "HashAI", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x292fcdd1b104de5a00250febba9bc6a5092a0076.png", + "aggregators": [ + "CoinMarketCap", + "1inch", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 6 + }, + "0x5ee3188a3f8adee1d736edd4ae85000105c88f66": { + "address": "0x5ee3188a3f8adee1d736edd4ae85000105c88f66", + "symbol": "PEN", + "decimals": 18, + "name": "Pentagon Games", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x5ee3188a3f8adee1d736edd4ae85000105c88f66.png", + "aggregators": [ + "CoinMarketCap", + "LiFi", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 6 + }, + "0xea81dab2e0ecbc6b5c4172de4c22b6ef6e55bd8f": { + "address": "0xea81dab2e0ecbc6b5c4172de4c22b6ef6e55bd8f", + "symbol": "PLEB", + "decimals": 18, + "name": "Plebbit", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xea81dab2e0ecbc6b5c4172de4c22b6ef6e55bd8f.png", + "aggregators": [ + "CoinGecko", + "1inch", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 6 + }, + "0x9e91f79070926a191e41367d40ad582686f9e66d": { + "address": "0x9e91f79070926a191e41367d40ad582686f9e66d", + "symbol": "STYLE", + "decimals": 18, + "name": "STYLE Token", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x9e91f79070926a191e41367d40ad582686f9e66d.png", + "aggregators": [ + "CoinMarketCap", + "LiFi", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 6 + }, + "0x97ad75064b20fb2b2447fed4fa953bf7f007a706": { + "address": "0x97ad75064b20fb2b2447fed4fa953bf7f007a706", + "symbol": "BERASTONE", + "decimals": 18, + "name": "StakeStone Berachain Vault Token", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x97ad75064b20fb2b2447fed4fa953bf7f007a706.png", + "aggregators": [ + "CoinGecko", + "1inch", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 6 + }, + "0x968be3f7bfef0f8edc3c1ad90232ebb0da0867aa": { + "address": "0x968be3f7bfef0f8edc3c1ad90232ebb0da0867aa", + "symbol": "SWORLD", + "decimals": 18, + "name": "Seedworld", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x968be3f7bfef0f8edc3c1ad90232ebb0da0867aa.png", + "aggregators": [ + "CoinMarketCap", + "Socket", + "Rubic", + "Squid", + "Rango", + "Sonarwatch" + ], + "occurrences": 6 + }, + "0x3a856d4effa670c54585a5d523e96513e148e95d": { + "address": "0x3a856d4effa670c54585a5d523e96513e148e95d", + "symbol": "TRIAS", + "decimals": 18, + "name": "TriasLab", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x3a856d4effa670c54585a5d523e96513e148e95d.png", + "aggregators": [ + "CoinGecko", + "LiFi", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 6 + }, + "0x0b925ed163218f6662a35e0f0371ac234f9e9371": { + "address": "0x0b925ed163218f6662a35e0f0371ac234f9e9371", + "symbol": "AWSTETH", + "decimals": 18, + "name": "Aave v3 wstETH", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x0b925ed163218f6662a35e0f0371ac234f9e9371.png", + "aggregators": [ + "CoinGecko", + "1inch", + "LiFi", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 6 + }, + "0xf33893de6eb6ae9a67442e066ae9abd228f5290c": { + "address": "0xf33893de6eb6ae9a67442e066ae9abd228f5290c", + "symbol": "GRV", + "decimals": 8, + "name": "GroveCoin", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xf33893de6eb6ae9a67442e066ae9abd228f5290c.png", + "aggregators": [ + "CoinMarketCap", + "LiFi", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 6 + }, + "0x0b7f0e51cd1739d6c96982d55ad8fa634dd43a9c": { + "address": "0x0b7f0e51cd1739d6c96982d55ad8fa634dd43a9c", + "symbol": "DMT", + "decimals": 18, + "name": "Dream Machine Token", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x0b7f0e51cd1739d6c96982d55ad8fa634dd43a9c.png", + "aggregators": [ + "CoinGecko", + "LiFi", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 6 + }, + "0x0a5e677a6a24b2f1a2bf4f3bffc443231d2fdec8": { + "address": "0x0a5e677a6a24b2f1a2bf4f3bffc443231d2fdec8", + "symbol": "USX", + "decimals": 18, + "name": "dForce USD", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x0a5e677a6a24b2f1a2bf4f3bffc443231d2fdec8.png", + "aggregators": [ + "CoinMarketCap", + "LiFi", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 6 + }, + "0xb01cf1be9568f09449382a47cd5bf58e2a9d5922": { + "address": "0xb01cf1be9568f09449382a47cd5bf58e2a9d5922", + "symbol": "SPEED", + "decimals": 18, + "name": "Lightspeed", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xb01cf1be9568f09449382a47cd5bf58e2a9d5922.png", + "aggregators": [ + "CoinGecko", + "Socket", + "Rubic", + "Squid", + "Rango", + "Sonarwatch" + ], + "occurrences": 6 + }, + "0x6dc02164d75651758ac74435806093e421b64605": { + "address": "0x6dc02164d75651758ac74435806093e421b64605", + "symbol": "WCHI", + "decimals": 8, + "name": "XAYA", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x6dc02164d75651758ac74435806093e421b64605.png", + "aggregators": [ + "CoinMarketCap", + "LiFi", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 6 + }, + "0x31f69de127c8a0ff10819c0955490a4ae46fcc2a": { + "address": "0x31f69de127c8a0ff10819c0955490a4ae46fcc2a", + "symbol": "GBYTE", + "decimals": 18, + "name": "Obyte", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x31f69de127c8a0ff10819c0955490a4ae46fcc2a.png", + "aggregators": [ + "CoinMarketCap", + "LiFi", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 6 + }, + "0x9ac07635ddbde5db18648c360defb00f5f22537e": { + "address": "0x9ac07635ddbde5db18648c360defb00f5f22537e", + "symbol": "MOCA", + "decimals": 18, + "name": "Museum of Crypto Art", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x9ac07635ddbde5db18648c360defb00f5f22537e.png", + "aggregators": [ + "CoinGecko", + "LiFi", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 6 + }, + "0xc669928185dbce49d2230cc9b0979be6dc797957": { + "address": "0xc669928185dbce49d2230cc9b0979be6dc797957", + "symbol": "BTT", + "decimals": 18, + "name": "BitTorrent", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xc669928185dbce49d2230cc9b0979be6dc797957.png", + "aggregators": [ + "CoinGecko", + "1inch", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 6 + }, + "0x7825e833d495f3d1c28872415a4aee339d26ac88": { + "address": "0x7825e833d495f3d1c28872415a4aee339d26ac88", + "symbol": "TLOS", + "decimals": 18, + "name": "Telos", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x7825e833d495f3d1c28872415a4aee339d26ac88.png", + "aggregators": [ + "CoinGecko", + "Socket", + "Rubic", + "Rango", + "Sonarwatch", + "SushiSwap" + ], + "occurrences": 6 + }, + "0xd3c51de3e6dd9b53d7f37699afb3ee3bf9b9b3f4": { + "address": "0xd3c51de3e6dd9b53d7f37699afb3ee3bf9b9b3f4", + "symbol": "MCONTENT", + "decimals": 6, + "name": "MContent", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xd3c51de3e6dd9b53d7f37699afb3ee3bf9b9b3f4.png", + "aggregators": [ + "CoinMarketCap", + "1inch", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 6 + }, + "0x5052fa4a2a147eaaa4c0242e9cc54a10a4f42070": { + "address": "0x5052fa4a2a147eaaa4c0242e9cc54a10a4f42070", + "symbol": "HANEP", + "decimals": 18, + "name": "HANePlatform", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x5052fa4a2a147eaaa4c0242e9cc54a10a4f42070.png", + "aggregators": [ + "CoinGecko", + "LiFi", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 6 + }, + "0x8fc8f8269ebca376d046ce292dc7eac40c8d358a": { + "address": "0x8fc8f8269ebca376d046ce292dc7eac40c8d358a", + "symbol": "DFI", + "decimals": 8, + "name": "DeFiChain", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x8fc8f8269ebca376d046ce292dc7eac40c8d358a.png", + "aggregators": [ + "CoinMarketCap", + "LiFi", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 6 + }, + "0x88536c9b2c4701b8db824e6a16829d5b5eb84440": { + "address": "0x88536c9b2c4701b8db824e6a16829d5b5eb84440", + "symbol": "USV", + "decimals": 9, + "name": "Universal Store of Value", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x88536c9b2c4701b8db824e6a16829d5b5eb84440.png", + "aggregators": [ + "CoinMarketCap", + "Socket", + "Rubic", + "Rango", + "Sonarwatch", + "SushiSwap" + ], + "occurrences": 6 + }, + "0xe3c408bd53c31c085a1746af401a4042954ff740": { + "address": "0xe3c408bd53c31c085a1746af401a4042954ff740", + "symbol": "GMT", + "decimals": 8, + "name": "GMT", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xe3c408bd53c31c085a1746af401a4042954ff740.png", + "aggregators": [ + "CoinMarketCap", + "LiFi", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 6 + }, + "0x3b79a28264fc52c7b4cea90558aa0b162f7faf57": { + "address": "0x3b79a28264fc52c7b4cea90558aa0b162f7faf57", + "symbol": "WMEMO", + "decimals": 18, + "name": "Wonderful Memories", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x3b79a28264fc52c7b4cea90558aa0b162f7faf57.png", + "aggregators": [ + "CoinMarketCap", + "LiFi", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 6 + }, + "0xa80505c408c4defd9522981cd77e026f5a49fe63": { + "address": "0xa80505c408c4defd9522981cd77e026f5a49fe63", + "symbol": "NEUY", + "decimals": 18, + "name": "NEUY", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xa80505c408c4defd9522981cd77e026f5a49fe63.png", + "aggregators": [ + "CoinGecko", + "LiFi", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 6 + }, + "0xb299751b088336e165da313c33e3195b8c6663a6": { + "address": "0xb299751b088336e165da313c33e3195b8c6663a6", + "symbol": "STAR", + "decimals": 18, + "name": "StarHeroes", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xb299751b088336e165da313c33e3195b8c6663a6.png", + "aggregators": [ + "CoinMarketCap", + "LiFi", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 6 + }, + "0x31b6100f5f4466e6daeb1edb2f2ce6e548cf8938": { + "address": "0x31b6100f5f4466e6daeb1edb2f2ce6e548cf8938", + "symbol": "PUFF", + "decimals": 18, + "name": "Puff The Dragon", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x31b6100f5f4466e6daeb1edb2f2ce6e548cf8938.png", + "aggregators": [ + "CoinMarketCap", + "LiFi", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 6 + }, + "0x38f9bf9dce51833ec7f03c9dc218197999999999": { + "address": "0x38f9bf9dce51833ec7f03c9dc218197999999999", + "symbol": "NYA", + "decimals": 18, + "name": "Nya", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x38f9bf9dce51833ec7f03c9dc218197999999999.png", + "aggregators": [ + "CoinMarketCap", + "Socket", + "Rubic", + "Squid", + "Rango", + "Sonarwatch" + ], + "occurrences": 6 + }, + "0xe2dc070524a6e305ddb64d8513dc444b6a1ec845": { + "address": "0xe2dc070524a6e305ddb64d8513dc444b6a1ec845", + "symbol": "NEX", + "decimals": 8, + "name": "Nash", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xe2dc070524a6e305ddb64d8513dc444b6a1ec845.png", + "aggregators": [ + "CoinMarketCap", + "LiFi", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 6 + }, + "0xb4a3b0faf0ab53df58001804dda5bfc6a3d59008": { + "address": "0xb4a3b0faf0ab53df58001804dda5bfc6a3d59008", + "symbol": "SPA", + "decimals": 18, + "name": "Sperax", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xb4a3b0faf0ab53df58001804dda5bfc6a3d59008.png", + "aggregators": [ + "CoinMarketCap", + "LiFi", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 6 + }, + "0x08d32b0da63e2c3bcf8019c9c5d849d7a9d791e6": { + "address": "0x08d32b0da63e2c3bcf8019c9c5d849d7a9d791e6", + "symbol": "DCN", + "decimals": 18, + "name": "Dentacoin Token", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x08d32b0da63e2c3bcf8019c9c5d849d7a9d791e6.png", + "aggregators": [ + "Metamask", + "Socket", + "Rubic", + "Rango", + "Sonarwatch", + "Bancor" + ], + "occurrences": 6 + }, + "0xf04a8ac553fcedb5ba99a64799155826c136b0be": { + "address": "0xf04a8ac553fcedb5ba99a64799155826c136b0be", + "symbol": "FLIXX", + "decimals": 18, + "name": "Flixx", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xf04a8ac553fcedb5ba99a64799155826c136b0be.png", + "aggregators": [ + "CoinMarketCap", + "LiFi", + "Socket", + "Rubic", + "Rango", + "Bancor" + ], + "occurrences": 6 + }, + "0x4824a7b64e3966b0133f4f4ffb1b9d6beb75fff7": { + "address": "0x4824a7b64e3966b0133f4f4ffb1b9d6beb75fff7", + "symbol": "TCT", + "decimals": 18, + "name": "TokenClub", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x4824a7b64e3966b0133f4f4ffb1b9d6beb75fff7.png", + "aggregators": [ + "CoinMarketCap", + "LiFi", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 6 + }, + "0x4cf488387f035ff08c371515562cba712f9015d4": { + "address": "0x4cf488387f035ff08c371515562cba712f9015d4", + "symbol": "WPR", + "decimals": 18, + "name": "WePower", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x4cf488387f035ff08c371515562cba712f9015d4.png", + "aggregators": [ + "CoinMarketCap", + "LiFi", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 6 + }, + "0x3fd8f39a962efda04956981c31ab89fab5fb8bc8": { + "address": "0x3fd8f39a962efda04956981c31ab89fab5fb8bc8", + "symbol": "RTH", + "decimals": 18, + "name": "Rotharium", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x3fd8f39a962efda04956981c31ab89fab5fb8bc8.png", + "aggregators": [ + "CoinMarketCap", + "LiFi", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 6 + }, + "0xe4a6f23fb9e00fca037aa0ea0a6954de0a6c53bf": { + "address": "0xe4a6f23fb9e00fca037aa0ea0a6954de0a6c53bf", + "symbol": "TXAU", + "decimals": 18, + "name": "tGOLD", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xe4a6f23fb9e00fca037aa0ea0a6954de0a6c53bf.png", + "aggregators": [ + "CoinMarketCap", + "LiFi", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 6 + }, + "0x15b543e986b8c34074dfc9901136d9355a537e7e": { + "address": "0x15b543e986b8c34074dfc9901136d9355a537e7e", + "symbol": "STC", + "decimals": 18, + "name": "Student Coin", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x15b543e986b8c34074dfc9901136d9355a537e7e.png", + "aggregators": [ + "CoinMarketCap", + "LiFi", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 6 + }, + "0x88303fed02b31db9c7a9eafb711da9ef4a03e5d3": { + "address": "0x88303fed02b31db9c7a9eafb711da9ef4a03e5d3", + "symbol": "ZIK", + "decimals": 18, + "name": "Ziktalk", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x88303fed02b31db9c7a9eafb711da9ef4a03e5d3.png", + "aggregators": [ + "CoinMarketCap", + "LiFi", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 6 + }, + "0x106538cc16f938776c7c180186975bca23875287": { + "address": "0x106538cc16f938776c7c180186975bca23875287", + "symbol": "BASV2", + "decimals": 18, + "name": "BASv2", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x106538cc16f938776c7c180186975bca23875287.png", + "aggregators": [ + "CoinMarketCap", + "1inch", + "LiFi", + "Socket", + "Rubic", + "Rango" + ], + "occurrences": 6 + }, + "0x21ca39943e91d704678f5d00b6616650f066fd63": { + "address": "0x21ca39943e91d704678f5d00b6616650f066fd63", + "symbol": "MTSLA", + "decimals": 18, + "name": "Mirrored Tesla", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x21ca39943e91d704678f5d00b6616650f066fd63.png", + "aggregators": [ + "CoinMarketCap", + "LiFi", + "Socket", + "Rubic", + "Rango", + "SushiSwap" + ], + "occurrences": 6 + }, + "0xcaeaf8381d4b20b43afa42061d6f80319a8881f6": { + "address": "0xcaeaf8381d4b20b43afa42061d6f80319a8881f6", + "symbol": "R34P", + "decimals": 8, + "name": "R34P", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xcaeaf8381d4b20b43afa42061d6f80319a8881f6.png", + "aggregators": [ + "CoinMarketCap", + "LiFi", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 6 + }, + "0x93dfaf57d986b9ca77df9376c50878e013d9c7c8": { + "address": "0x93dfaf57d986b9ca77df9376c50878e013d9c7c8", + "symbol": "RARE", + "decimals": 18, + "name": "Unique One", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x93dfaf57d986b9ca77df9376c50878e013d9c7c8.png", + "aggregators": [ + "CoinMarketCap", + "LiFi", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 6 + }, + "0xaa602de53347579f86b996d2add74bb6f79462b2": { + "address": "0xaa602de53347579f86b996d2add74bb6f79462b2", + "symbol": "ZMT", + "decimals": 18, + "name": "Zipmex", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xaa602de53347579f86b996d2add74bb6f79462b2.png", + "aggregators": [ + "CoinMarketCap", + "LiFi", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 6 + }, + "0x297d33e17e61c2ddd812389c2105193f8348188a": { + "address": "0x297d33e17e61c2ddd812389c2105193f8348188a", + "symbol": "TRDL", + "decimals": 18, + "name": "Strudel Finance", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x297d33e17e61c2ddd812389c2105193f8348188a.png", + "aggregators": [ + "CoinMarketCap", + "LiFi", + "Socket", + "Rubic", + "Rango", + "SushiSwap" + ], + "occurrences": 6 + }, + "0x9f9913853f749b3fe6d6d4e16a1cc3c1656b6d51": { + "address": "0x9f9913853f749b3fe6d6d4e16a1cc3c1656b6d51", + "symbol": "BITT", + "decimals": 18, + "name": "BITT", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x9f9913853f749b3fe6d6d4e16a1cc3c1656b6d51.png", + "aggregators": [ + "CoinMarketCap", + "LiFi", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 6 + }, + "0x0f3adc247e91c3c50bc08721355a41037e89bc20": { + "address": "0x0f3adc247e91c3c50bc08721355a41037e89bc20", + "symbol": "ANC", + "decimals": 18, + "name": "Anchor Protocol", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x0f3adc247e91c3c50bc08721355a41037e89bc20.png", + "aggregators": [ + "CoinMarketCap", + "LiFi", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 6 + }, + "0x17ac188e09a7890a1844e5e65471fe8b0ccfadf3": { + "address": "0x17ac188e09a7890a1844e5e65471fe8b0ccfadf3", + "symbol": "CC10", + "decimals": 18, + "name": "Cryptocurrency Top 10 Tokens Index", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x17ac188e09a7890a1844e5e65471fe8b0ccfadf3.png", + "aggregators": [ + "CoinMarketCap", + "LiFi", + "TrustWallet", + "Socket", + "Rubic", + "Rango" + ], + "occurrences": 6 + }, + "0x33840024177a7daca3468912363bed8b425015c5": { + "address": "0x33840024177a7daca3468912363bed8b425015c5", + "symbol": "EBOX", + "decimals": 18, + "name": "ethbox Token", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x33840024177a7daca3468912363bed8b425015c5.png", + "aggregators": [ + "CoinMarketCap", + "LiFi", + "Socket", + "Rubic", + "Rango", + "Bancor" + ], + "occurrences": 6 + }, + "0xf59ae934f6fe444afc309586cc60a84a0f89aaea": { + "address": "0xf59ae934f6fe444afc309586cc60a84a0f89aaea", + "symbol": "PDEX", + "decimals": 18, + "name": "Polkadex", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xf59ae934f6fe444afc309586cc60a84a0f89aaea.png", + "aggregators": [ + "CoinMarketCap", + "LiFi", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 6 + }, + "0x5d30ad9c6374bf925d0a75454fa327aacf778492": { + "address": "0x5d30ad9c6374bf925d0a75454fa327aacf778492", + "symbol": "PERI", + "decimals": 18, + "name": "PERI Finance", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x5d30ad9c6374bf925d0a75454fa327aacf778492.png", + "aggregators": [ + "CoinMarketCap", + "LiFi", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 6 + }, + "0x33e18a092a93ff21ad04746c7da12e35d34dc7c4": { + "address": "0x33e18a092a93ff21ad04746c7da12e35d34dc7c4", + "symbol": "PLAY", + "decimals": 18, + "name": "Metaverse NFT Index", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x33e18a092a93ff21ad04746c7da12e35d34dc7c4.png", + "aggregators": [ + "CoinMarketCap", + "LiFi", + "Socket", + "Rubic", + "Rango", + "SushiSwap" + ], + "occurrences": 6 + }, + "0xf55a93b613d172b86c2ba3981a849dae2aecde2f": { + "address": "0xf55a93b613d172b86c2ba3981a849dae2aecde2f", + "symbol": "YFX", + "decimals": 18, + "name": "Your Futures Exchange", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xf55a93b613d172b86c2ba3981a849dae2aecde2f.png", + "aggregators": [ + "CoinMarketCap", + "LiFi", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 6 + }, + "0xa67e9f021b9d208f7e3365b2a155e3c55b27de71": { + "address": "0xa67e9f021b9d208f7e3365b2a155e3c55b27de71", + "symbol": "KLEE", + "decimals": 9, + "name": "KleeKai", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xa67e9f021b9d208f7e3365b2a155e3c55b27de71.png", + "aggregators": [ + "CoinMarketCap", + "1inch", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 6 + }, + "0xbeab712832112bd7664226db7cd025b153d3af55": { + "address": "0xbeab712832112bd7664226db7cd025b153d3af55", + "symbol": "BRIGHT", + "decimals": 18, + "name": "Bright Union", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xbeab712832112bd7664226db7cd025b153d3af55.png", + "aggregators": [ + "CoinMarketCap", + "LiFi", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 6 + }, + "0xe33ae4e795114279721047484e5ad5cc7df24fcb": { + "address": "0xe33ae4e795114279721047484e5ad5cc7df24fcb", + "symbol": "MCF", + "decimals": 10, + "name": "MCFinance", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xe33ae4e795114279721047484e5ad5cc7df24fcb.png", + "aggregators": [ + "CoinMarketCap", + "LiFi", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 6 + }, + "0x72377f31e30a405282b522d588aebbea202b4f23": { + "address": "0x72377f31e30a405282b522d588aebbea202b4f23", + "symbol": "VRN", + "decimals": 18, + "name": "Varen", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x72377f31e30a405282b522d588aebbea202b4f23.png", + "aggregators": [ + "CoinMarketCap", + "Socket", + "Rubic", + "Rango", + "Sonarwatch", + "SushiSwap" + ], + "occurrences": 6 + }, + "0x33d63ba1e57e54779f7ddaeaa7109349344cf5f1": { + "address": "0x33d63ba1e57e54779f7ddaeaa7109349344cf5f1", + "symbol": "DATA/INDEX", + "decimals": 18, + "name": "Data Economy Index", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x33d63ba1e57e54779f7ddaeaa7109349344cf5f1.png", + "aggregators": [ + "CoinMarketCap", + "LiFi", + "Socket", + "Rubic", + "Rango", + "SushiSwap" + ], + "occurrences": 6 + }, + "0x1f19f83fc9a25f3c861260143e36c17706257986": { + "address": "0x1f19f83fc9a25f3c861260143e36c17706257986", + "symbol": "VEST", + "decimals": 18, + "name": "DAO Invest", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x1f19f83fc9a25f3c861260143e36c17706257986.png", + "aggregators": [ + "CoinMarketCap", + "LiFi", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 6 + }, + "0xbd9908b0cdd50386f92efcc8e1d71766c2782df0": { + "address": "0xbd9908b0cdd50386f92efcc8e1d71766c2782df0", + "symbol": "RICE", + "decimals": 18, + "name": "DAOSquare", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xbd9908b0cdd50386f92efcc8e1d71766c2782df0.png", + "aggregators": [ + "CoinMarketCap", + "LiFi", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 6 + }, + "0x3ef389f264e07fff3106a3926f2a166d1393086f": { + "address": "0x3ef389f264e07fff3106a3926f2a166d1393086f", + "symbol": "SAO", + "decimals": 9, + "name": "Sator", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x3ef389f264e07fff3106a3926f2a166d1393086f.png", + "aggregators": [ + "CoinMarketCap", + "Socket", + "Rubic", + "Rango", + "Sonarwatch", + "Bancor" + ], + "occurrences": 6 + }, + "0xaaef88cea01475125522e117bfe45cf32044e238": { + "address": "0xaaef88cea01475125522e117bfe45cf32044e238", + "symbol": "GF", + "decimals": 18, + "name": "GuildFi", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xaaef88cea01475125522e117bfe45cf32044e238.png", + "aggregators": [ + "CoinMarketCap", + "LiFi", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 6 + }, + "0xe6602b34d8510b033e000975b3322537c7172441": { + "address": "0xe6602b34d8510b033e000975b3322537c7172441", + "symbol": "FRR", + "decimals": 18, + "name": "Frontrow", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xe6602b34d8510b033e000975b3322537c7172441.png", + "aggregators": [ + "CoinMarketCap", + "LiFi", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 6 + }, + "0xc0d4ceb216b3ba9c3701b291766fdcba977cec3a": { + "address": "0xc0d4ceb216b3ba9c3701b291766fdcba977cec3a", + "symbol": "BTRFLY", + "decimals": 9, + "name": "Redacted Cartel", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xc0d4ceb216b3ba9c3701b291766fdcba977cec3a.png", + "aggregators": [ + "CoinMarketCap", + "LiFi", + "Socket", + "Rubic", + "Rango", + "SushiSwap" + ], + "occurrences": 6 + }, + "0x84342e932797fc62814189f01f0fb05f52519708": { + "address": "0x84342e932797fc62814189f01f0fb05f52519708", + "symbol": "NHT", + "decimals": 18, + "name": "Neighbourhoods", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x84342e932797fc62814189f01f0fb05f52519708.png", + "aggregators": [ + "CoinMarketCap", + "LiFi", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 6 + }, + "0xa68dd8cb83097765263adad881af6eed479c4a33": { + "address": "0xa68dd8cb83097765263adad881af6eed479c4a33", + "symbol": "WTF", + "decimals": 18, + "name": "fees.wtf", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xa68dd8cb83097765263adad881af6eed479c4a33.png", + "aggregators": [ + "CoinMarketCap", + "1inch", + "LiFi", + "Socket", + "Rubic", + "Rango" + ], + "occurrences": 6 + }, + "0x3e828ac5c480069d4765654fb4b8733b910b13b2": { + "address": "0x3e828ac5c480069d4765654fb4b8733b910b13b2", + "symbol": "CLNY", + "decimals": 18, + "name": "Colony Network Token", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x3e828ac5c480069d4765654fb4b8733b910b13b2.png", + "aggregators": [ + "CoinMarketCap", + "LiFi", + "Rubic", + "Rango", + "Sonarwatch", + "SushiSwap" + ], + "occurrences": 6 + }, + "0xab846fb6c81370327e784ae7cbb6d6a6af6ff4bf": { + "address": "0xab846fb6c81370327e784ae7cbb6d6a6af6ff4bf", + "symbol": "PAL", + "decimals": 18, + "name": "Paladin", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xab846fb6c81370327e784ae7cbb6d6a6af6ff4bf.png", + "aggregators": [ + "CoinMarketCap", + "LiFi", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 6 + }, + "0x2a7cad775fd9c5c43f996a948660ffc21b4e628c": { + "address": "0x2a7cad775fd9c5c43f996a948660ffc21b4e628c", + "symbol": "DOP", + "decimals": 18, + "name": "D Drops", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x2a7cad775fd9c5c43f996a948660ffc21b4e628c.png", + "aggregators": [ + "CoinMarketCap", + "LiFi", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 6 + }, + "0x64b78325d7495d6d4be92f234fa3f3b8d8964b8b": { + "address": "0x64b78325d7495d6d4be92f234fa3f3b8d8964b8b", + "symbol": "SHOP", + "decimals": 18, + "name": "Shopping io", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x64b78325d7495d6d4be92f234fa3f3b8d8964b8b.png", + "aggregators": [ + "CoinMarketCap", + "LiFi", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 6 + }, + "0x57f12fe6a4e5fe819eec699fadf9db2d06606bb4": { + "address": "0x57f12fe6a4e5fe819eec699fadf9db2d06606bb4", + "symbol": "NPM", + "decimals": 18, + "name": "Neptune Mutual", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x57f12fe6a4e5fe819eec699fadf9db2d06606bb4.png", + "aggregators": [ + "CoinMarketCap", + "LiFi", + "Socket", + "Rubic", + "Rango", + "SushiSwap" + ], + "occurrences": 6 + }, + "0xf98ab0874b13a7fdc39d7295dedd49850a5d426b": { + "address": "0xf98ab0874b13a7fdc39d7295dedd49850a5d426b", + "symbol": "KIRA", + "decimals": 8, + "name": "KIRA", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xf98ab0874b13a7fdc39d7295dedd49850a5d426b.png", + "aggregators": [ + "CoinMarketCap", + "Rubic", + "Squid", + "Rango", + "Sonarwatch", + "SushiSwap" + ], + "occurrences": 6 + }, + "0xa735a3af76cc30791c61c10d585833829d36cbe0": { + "address": "0xa735a3af76cc30791c61c10d585833829d36cbe0", + "symbol": "IMGNAI", + "decimals": 9, + "name": "imgnAI", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xa735a3af76cc30791c61c10d585833829d36cbe0.png", + "aggregators": [ + "CoinMarketCap", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x820802fa8a99901f52e39acd21177b0be6ee2974": { + "address": "0x820802fa8a99901f52e39acd21177b0be6ee2974", + "symbol": "EUROE", + "decimals": 6, + "name": "EUROe Stablecoin", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x820802fa8a99901f52e39acd21177b0be6ee2974.png", + "aggregators": [ + "CoinMarketCap", + "LiFi", + "Rubic", + "Rango", + "Sonarwatch", + "SushiSwap" + ], + "occurrences": 6 + }, + "0x78a0a62fba6fb21a83fe8a3433d44c73a4017a6f": { + "address": "0x78a0a62fba6fb21a83fe8a3433d44c73a4017a6f", + "symbol": "OXOLD", + "decimals": 18, + "name": "Open Exchange Token", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x78a0a62fba6fb21a83fe8a3433d44c73a4017a6f.png", + "aggregators": [ + "CoinMarketCap", + "LiFi", + "Socket", + "Rubic", + "Squid", + "Sonarwatch" + ], + "occurrences": 6 + }, + "0x72a9b1c9b191781bb15f1b98f443a1d916557c92": { + "address": "0x72a9b1c9b191781bb15f1b98f443a1d916557c92", + "symbol": "FFM", + "decimals": 18, + "name": "Florence Finance Medici", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x72a9b1c9b191781bb15f1b98f443a1d916557c92.png", + "aggregators": [ + "CoinMarketCap", + "LiFi", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 6 + }, + "0x0e4e7f2aecf408aff4f82f067677050239bdc58a": { + "address": "0x0e4e7f2aecf408aff4f82f067677050239bdc58a", + "symbol": "FUNG", + "decimals": 18, + "name": "Fungify Token", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x0e4e7f2aecf408aff4f82f067677050239bdc58a.png", + "aggregators": [ + "CoinMarketCap", + "LiFi", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 6 + }, + "0x906c012fa4c30d580537c2b72d1789f56f488a80": { + "address": "0x906c012fa4c30d580537c2b72d1789f56f488a80", + "symbol": "POGS", + "decimals": 18, + "name": "Pog Coin", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x906c012fa4c30d580537c2b72d1789f56f488a80.png", + "aggregators": [ + "CoinMarketCap", + "LiFi", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 6 + }, + "0x0bbcefa5f3630cae34842cb9d9b36bc0d4257a0d": { + "address": "0x0bbcefa5f3630cae34842cb9d9b36bc0d4257a0d", + "symbol": "KAI", + "decimals": 18, + "name": "Kinetix Finance Token", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x0bbcefa5f3630cae34842cb9d9b36bc0d4257a0d.png", + "aggregators": [ + "CoinMarketCap", + "LiFi", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 6 + }, + "0xbdc7c08592ee4aa51d06c27ee23d5087d65adbcd": { + "address": "0xbdc7c08592ee4aa51d06c27ee23d5087d65adbcd", + "symbol": "USDL", + "decimals": 18, + "name": "Lift Dollar", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xbdc7c08592ee4aa51d06c27ee23d5087d65adbcd.png", + "aggregators": [ + "CoinMarketCap", + "1inch", + "LiFi", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 6 + }, + "0x299a1503e88433c0fd1bd68625c25c5a703eb64f": { + "address": "0x299a1503e88433c0fd1bd68625c25c5a703eb64f", + "symbol": "TEAR", + "decimals": 18, + "name": "TEAR", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x299a1503e88433c0fd1bd68625c25c5a703eb64f.png", + "aggregators": [ + "LiFi", + "Socket", + "Rubic", + "Squid", + "Rango", + "Sonarwatch" + ], + "occurrences": 6 + }, + "0x3294395e62f4eb6af3f1fcf89f5602d90fb3ef69": { + "address": "0x3294395e62f4eb6af3f1fcf89f5602d90fb3ef69", + "symbol": "CELO", + "decimals": 18, + "name": "Celo Wormhole", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x3294395e62f4eb6af3f1fcf89f5602d90fb3ef69.png", + "aggregators": [ + "UniswapLabs", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0xd417144312dbf50465b1c641d016962017ef6240": { + "address": "0xd417144312dbf50465b1c641d016962017ef6240", + "symbol": "CQT", + "decimals": 18, + "name": "Covalent Query Token", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xd417144312dbf50465b1c641d016962017ef6240.png", + "aggregators": [ + "CoinMarketCap", + "LiFi", + "Rubic", + "Rango", + "SushiSwap" + ], + "occurrences": 5 + }, + "0x2ab6bb8408ca3199b8fa6c92d5b455f820af03c4": { + "address": "0x2ab6bb8408ca3199b8fa6c92d5b455f820af03c4", + "symbol": "TONE", + "decimals": 18, + "name": "TE FOOD", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x2ab6bb8408ca3199b8fa6c92d5b455f820af03c4.png", + "aggregators": [ + "CoinMarketCap", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0xc83e27f270cce0a3a3a29521173a83f402c1768b": { + "address": "0xc83e27f270cce0a3a3a29521173a83f402c1768b", + "symbol": "USDQ", + "decimals": 6, + "name": "Quantoz USDQ", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xc83e27f270cce0a3a3a29521173a83f402c1768b.png", + "aggregators": [ + "CoinMarketCap", + "1inch", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x9af839687f6c94542ac5ece2e317daae355493a1": { + "address": "0x9af839687f6c94542ac5ece2e317daae355493a1", + "symbol": "HOT", + "decimals": 18, + "name": "Hydro Protocol Token", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x9af839687f6c94542ac5ece2e317daae355493a1.png", + "aggregators": [ + "CoinMarketCap", + "Socket", + "Rubic", + "Rango", + "Bancor" + ], + "occurrences": 5 + }, + "0x2baecdf43734f22fd5c152db08e3c27233f0c7d2": { + "address": "0x2baecdf43734f22fd5c152db08e3c27233f0c7d2", + "symbol": "OM", + "decimals": 18, + "name": "OM", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x2baecdf43734f22fd5c152db08e3c27233f0c7d2.png", + "aggregators": ["CMC", "LiFi", "Socket", "Rubic", "Rango"], + "occurrences": 5 + }, + "0xf8e57ac2730d3088d98b79209739b0d5ba085a03": { + "address": "0xf8e57ac2730d3088d98b79209739b0d5ba085a03", + "symbol": "OPAI", + "decimals": 18, + "name": "Optopia AI", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xf8e57ac2730d3088d98b79209739b0d5ba085a03.png", + "aggregators": [ + "CoinMarketCap", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x19848077f45356b21164c412eff3d3e4ff6ebc31": { + "address": "0x19848077f45356b21164c412eff3d3e4ff6ebc31", + "symbol": "SPIKE", + "decimals": 9, + "name": "Spike", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x19848077f45356b21164c412eff3d3e4ff6ebc31.png", + "aggregators": [ + "CoinMarketCap", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x471a202f69d6e975da55e363dab1bdb2e86e0c0f": { + "address": "0x471a202f69d6e975da55e363dab1bdb2e86e0c0f", + "symbol": "GEKE", + "decimals": 18, + "name": "Geke", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x471a202f69d6e975da55e363dab1bdb2e86e0c0f.png", + "aggregators": [ + "CoinMarketCap", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x723cbfc05e2cfcc71d3d89e770d32801a5eef5ab": { + "address": "0x723cbfc05e2cfcc71d3d89e770d32801a5eef5ab", + "symbol": "BTCP", + "decimals": 8, + "name": "Bitcoin Pro", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x723cbfc05e2cfcc71d3d89e770d32801a5eef5ab.png", + "aggregators": [ + "CoinMarketCap", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0xd7c1eb0fe4a30d3b2a846c04aa6300888f087a5f": { + "address": "0xd7c1eb0fe4a30d3b2a846c04aa6300888f087a5f", + "symbol": "POINTS", + "decimals": 18, + "name": "Points", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xd7c1eb0fe4a30d3b2a846c04aa6300888f087a5f.png", + "aggregators": [ + "CoinGecko", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x2f42b7d686ca3effc69778b6ed8493a7787b4d6e": { + "address": "0x2f42b7d686ca3effc69778b6ed8493a7787b4d6e", + "symbol": "TARA", + "decimals": 18, + "name": "Taraxa", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x2f42b7d686ca3effc69778b6ed8493a7787b4d6e.png", + "aggregators": [ + "CoinMarketCap", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0xec21890967a8ceb3e55a3f79dac4e90673ba3c2e": { + "address": "0xec21890967a8ceb3e55a3f79dac4e90673ba3c2e", + "symbol": "BEBE", + "decimals": 8, + "name": "BEBE", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xec21890967a8ceb3e55a3f79dac4e90673ba3c2e.png", + "aggregators": [ + "CoinMarketCap", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x2de509bf0014ddf697b220be628213034d320ece": { + "address": "0x2de509bf0014ddf697b220be628213034d320ece", + "symbol": "DBI", + "decimals": 18, + "name": "Don t Buy Inu", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x2de509bf0014ddf697b220be628213034d320ece.png", + "aggregators": [ + "CoinMarketCap", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x2602278ee1882889b946eb11dc0e810075650983": { + "address": "0x2602278ee1882889b946eb11dc0e810075650983", + "symbol": "VADER", + "decimals": 18, + "name": "Vader Protocol", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x2602278ee1882889b946eb11dc0e810075650983.png", + "aggregators": [ + "CoinMarketCap", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x20c3fa331a385b63ee39137e99d0cf2db142fce1": { + "address": "0x20c3fa331a385b63ee39137e99d0cf2db142fce1", + "symbol": "SHIL", + "decimals": 18, + "name": "Shila Inu", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x20c3fa331a385b63ee39137e99d0cf2db142fce1.png", + "aggregators": [ + "CoinMarketCap", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x7f0c8b125040f707441cad9e5ed8a8408673b455": { + "address": "0x7f0c8b125040f707441cad9e5ed8a8408673b455", + "symbol": "NEBO", + "decimals": 18, + "name": "Kinetic Kollective", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x7f0c8b125040f707441cad9e5ed8a8408673b455.png", + "aggregators": [ + "CoinMarketCap", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x6f222e04f6c53cc688ffb0abe7206aac66a8ff98": { + "address": "0x6f222e04f6c53cc688ffb0abe7206aac66a8ff98", + "symbol": "ROKO", + "decimals": 18, + "name": "Roko Network", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x6f222e04f6c53cc688ffb0abe7206aac66a8ff98.png", + "aggregators": [ + "CoinMarketCap", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x411099c0b413f4feddb10edf6a8be63bd321311c": { + "address": "0x411099c0b413f4feddb10edf6a8be63bd321311c", + "symbol": "HELLO", + "decimals": 18, + "name": "HELLO", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x411099c0b413f4feddb10edf6a8be63bd321311c.png", + "aggregators": [ + "CoinMarketCap", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0xf921ae2dac5fa128dc0f6168bf153ea0943d2d43": { + "address": "0xf921ae2dac5fa128dc0f6168bf153ea0943d2d43", + "symbol": "FIRE", + "decimals": 8, + "name": "Fire Protocol", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xf921ae2dac5fa128dc0f6168bf153ea0943d2d43.png", + "aggregators": [ + "CoinMarketCap", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x82d36570842fc1ac2a3b4dbe0e7c5c0e2e665090": { + "address": "0x82d36570842fc1ac2a3b4dbe0e7c5c0e2e665090", + "symbol": "NFNT", + "decimals": 18, + "name": "nfinityAI", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x82d36570842fc1ac2a3b4dbe0e7c5c0e2e665090.png", + "aggregators": [ + "CoinMarketCap", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0xd1b89856d82f978d049116eba8b7f9df2f342ff3": { + "address": "0xd1b89856d82f978d049116eba8b7f9df2f342ff3", + "symbol": "PEPO", + "decimals": 9, + "name": "Peepo", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xd1b89856d82f978d049116eba8b7f9df2f342ff3.png", + "aggregators": [ + "CoinMarketCap", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x03042482d64577a7bdb282260e2ea4c8a89c064b": { + "address": "0x03042482d64577a7bdb282260e2ea4c8a89c064b", + "symbol": "CNTR", + "decimals": 18, + "name": "Centaur", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x03042482d64577a7bdb282260e2ea4c8a89c064b.png", + "aggregators": [ + "CoinMarketCap", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x069f01cdd1e32d7bab5fc81527df191835136c9d": { + "address": "0x069f01cdd1e32d7bab5fc81527df191835136c9d", + "symbol": "APUGURL", + "decimals": 9, + "name": "Apu Gurl", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x069f01cdd1e32d7bab5fc81527df191835136c9d.png", + "aggregators": [ + "CoinMarketCap", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0xe8ff5c9c75deb346acac493c463c8950be03dfba": { + "address": "0xe8ff5c9c75deb346acac493c463c8950be03dfba", + "symbol": "VIBE", + "decimals": 18, + "name": "VIBE", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xe8ff5c9c75deb346acac493c463c8950be03dfba.png", + "aggregators": [ + "CoinMarketCap", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0xaec613188b1e178d42a05d352044d54854c3196a": { + "address": "0xaec613188b1e178d42a05d352044d54854c3196a", + "symbol": "DESCI", + "decimals": 18, + "name": "SUI Desci Agents", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xaec613188b1e178d42a05d352044d54854c3196a.png", + "aggregators": [ + "CoinMarketCap", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0xc07a150ecadf2cc352f5586396e344a6b17625eb": { + "address": "0xc07a150ecadf2cc352f5586396e344a6b17625eb", + "symbol": "BIOT", + "decimals": 9, + "name": "Bio Passport", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xc07a150ecadf2cc352f5586396e344a6b17625eb.png", + "aggregators": [ + "CoinMarketCap", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0xf8ad7dfe656188a23e89da09506adf7ad9290d5d": { + "address": "0xf8ad7dfe656188a23e89da09506adf7ad9290d5d", + "symbol": "BLY", + "decimals": 18, + "name": "Blocery Token", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xf8ad7dfe656188a23e89da09506adf7ad9290d5d.png", + "aggregators": [ + "CoinMarketCap", + "Rubic", + "Rango", + "Sonarwatch", + "Bancor" + ], + "occurrences": 5 + }, + "0xb19dd661f076998e3b0456935092a233e12c2280": { + "address": "0xb19dd661f076998e3b0456935092a233e12c2280", + "symbol": "UM", + "decimals": 18, + "name": "Continuum World", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xb19dd661f076998e3b0456935092a233e12c2280.png", + "aggregators": [ + "CoinMarketCap", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x55a380d134d722006a5ce2d510562e1239d225b1": { + "address": "0x55a380d134d722006a5ce2d510562e1239d225b1", + "symbol": "MARVIN", + "decimals": 18, + "name": "Marvin Inu", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x55a380d134d722006a5ce2d510562e1239d225b1.png", + "aggregators": [ + "CoinMarketCap", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0xa0bbbe391b0d0957f1d013381b643041d2ca4022": { + "address": "0xa0bbbe391b0d0957f1d013381b643041d2ca4022", + "symbol": "SHIN", + "decimals": 18, + "name": "Shina Inu", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xa0bbbe391b0d0957f1d013381b643041d2ca4022.png", + "aggregators": [ + "CoinMarketCap", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0xe3b9cfb8ea8a4f1279fbc28d3e15b4d2d86f18a0": { + "address": "0xe3b9cfb8ea8a4f1279fbc28d3e15b4d2d86f18a0", + "symbol": "FOTTIE", + "decimals": 9, + "name": "Fottie", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xe3b9cfb8ea8a4f1279fbc28d3e15b4d2d86f18a0.png", + "aggregators": [ + "CoinMarketCap", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0xd7c302fc3ac829c7e896a32c4bd126f3e8bd0a1f": { + "address": "0xd7c302fc3ac829c7e896a32c4bd126f3e8bd0a1f", + "symbol": "B2M", + "decimals": 18, + "name": "Bit2Me", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xd7c302fc3ac829c7e896a32c4bd126f3e8bd0a1f.png", + "aggregators": [ + "CoinMarketCap", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x4297394c20800e8a38a619a243e9bbe7681ff24e": { + "address": "0x4297394c20800e8a38a619a243e9bbe7681ff24e", + "symbol": "HOTCROSS", + "decimals": 18, + "name": "Hot Cross", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x4297394c20800e8a38a619a243e9bbe7681ff24e.png", + "aggregators": [ + "CoinMarketCap", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x2077d81d0c5258230d5a195233941547cb5f0989": { + "address": "0x2077d81d0c5258230d5a195233941547cb5f0989", + "symbol": "TROG", + "decimals": 9, + "name": "Trog", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x2077d81d0c5258230d5a195233941547cb5f0989.png", + "aggregators": [ + "CoinMarketCap", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x6c936d4ae98e6d2172db18c16c4b601c99918ee6": { + "address": "0x6c936d4ae98e6d2172db18c16c4b601c99918ee6", + "symbol": "LIFE", + "decimals": 18, + "name": "Life Crypto", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x6c936d4ae98e6d2172db18c16c4b601c99918ee6.png", + "aggregators": [ + "CoinMarketCap", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0xb53ecf1345cabee6ea1a65100ebb153cebcac40f": { + "address": "0xb53ecf1345cabee6ea1a65100ebb153cebcac40f", + "symbol": "O", + "decimals": 18, + "name": "Childhoods End", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xb53ecf1345cabee6ea1a65100ebb153cebcac40f.png", + "aggregators": [ + "CoinMarketCap", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x9f4909cc95fb870bf48c128c1fdbb5f482797632": { + "address": "0x9f4909cc95fb870bf48c128c1fdbb5f482797632", + "symbol": "GZLR", + "decimals": 18, + "name": "Guzzler", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x9f4909cc95fb870bf48c128c1fdbb5f482797632.png", + "aggregators": [ + "CoinMarketCap", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x85614a474dbeed440d5bbdb8ac50b0f22367f997": { + "address": "0x85614a474dbeed440d5bbdb8ac50b0f22367f997", + "symbol": "XVG", + "decimals": 18, + "name": "Verge ETH", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x85614a474dbeed440d5bbdb8ac50b0f22367f997.png", + "aggregators": [ + "CoinGecko", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0xa5c45d48d36607741e90c0cca29545a46f5ee121": { + "address": "0xa5c45d48d36607741e90c0cca29545a46f5ee121", + "symbol": "CHIB", + "decimals": 9, + "name": "Chiba Wan", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xa5c45d48d36607741e90c0cca29545a46f5ee121.png", + "aggregators": [ + "CoinMarketCap", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x52498f8d9791736f1d6398fe95ba3bd868114d10": { + "address": "0x52498f8d9791736f1d6398fe95ba3bd868114d10", + "symbol": "NETVR", + "decimals": 18, + "name": "Netvrk", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x52498f8d9791736f1d6398fe95ba3bd868114d10.png", + "aggregators": [ + "CoinMarketCap", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x4dfae3690b93c47470b03036a17b23c1be05127c": { + "address": "0x4dfae3690b93c47470b03036a17b23c1be05127c", + "symbol": "PEPE", + "decimals": 18, + "name": "The Original Pepe", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x4dfae3690b93c47470b03036a17b23c1be05127c.png", + "aggregators": [ + "CoinGecko", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0xb8a914a00664e9361eae187468eff94905dfbc15": { + "address": "0xb8a914a00664e9361eae187468eff94905dfbc15", + "symbol": "DRIP", + "decimals": 9, + "name": "DRIP", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xb8a914a00664e9361eae187468eff94905dfbc15.png", + "aggregators": [ + "CoinMarketCap", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0xe75f2acafba1ad56c5ed712ffbc1d31910e74396": { + "address": "0xe75f2acafba1ad56c5ed712ffbc1d31910e74396", + "symbol": "KAI", + "decimals": 18, + "name": "Komputai", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xe75f2acafba1ad56c5ed712ffbc1d31910e74396.png", + "aggregators": [ + "CoinGecko", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x3175df0976dfa876431c2e9ee6bc45b65d3473cc": { + "address": "0x3175df0976dfa876431c2e9ee6bc45b65d3473cc", + "symbol": "CRVFRAX", + "decimals": 18, + "name": "Curve fi FRAX USDC", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x3175df0976dfa876431c2e9ee6bc45b65d3473cc.png", + "aggregators": [ + "CoinMarketCap", + "LiFi", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x68aaa0d94ea163b9bbf659dc3766defb4c0ac7be": { + "address": "0x68aaa0d94ea163b9bbf659dc3766defb4c0ac7be", + "symbol": "ANDYMAN", + "decimals": 9, + "name": "Andyman", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x68aaa0d94ea163b9bbf659dc3766defb4c0ac7be.png", + "aggregators": [ + "CoinMarketCap", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x393bf304dd474f48210f5ce741f19a2a851703ca": { + "address": "0x393bf304dd474f48210f5ce741f19a2a851703ca", + "symbol": "BALL", + "decimals": 18, + "name": "Game 5 BALL", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x393bf304dd474f48210f5ce741f19a2a851703ca.png", + "aggregators": [ + "CoinMarketCap", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0xd7fa4cfc22ea07dfced53033fbe59d8b62b8ee9e": { + "address": "0xd7fa4cfc22ea07dfced53033fbe59d8b62b8ee9e", + "symbol": "VYPER", + "decimals": 18, + "name": "VYPER WIN", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xd7fa4cfc22ea07dfced53033fbe59d8b62b8ee9e.png", + "aggregators": [ + "CoinMarketCap", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x4ade2b180f65ed752b6f1296d0418ad21eb578c0": { + "address": "0x4ade2b180f65ed752b6f1296d0418ad21eb578c0", + "symbol": "KEK", + "decimals": 9, + "name": "Kekistan", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x4ade2b180f65ed752b6f1296d0418ad21eb578c0.png", + "aggregators": [ + "CoinMarketCap", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0xf4172630a656a47ece8616e75791290446fa41a0": { + "address": "0xf4172630a656a47ece8616e75791290446fa41a0", + "symbol": "PEPPA", + "decimals": 2, + "name": "PEPPA", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xf4172630a656a47ece8616e75791290446fa41a0.png", + "aggregators": [ + "CoinMarketCap", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x420110d74c4c3ea14043a09e81fad53e1932f54c": { + "address": "0x420110d74c4c3ea14043a09e81fad53e1932f54c", + "symbol": "GROGGO", + "decimals": 18, + "name": "Groggo By Matt Furie", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x420110d74c4c3ea14043a09e81fad53e1932f54c.png", + "aggregators": [ + "CoinMarketCap", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0xc9bd7011ee97a13dc07087e01499a769ab7e75b4": { + "address": "0xc9bd7011ee97a13dc07087e01499a769ab7e75b4", + "symbol": "PEEZY", + "decimals": 9, + "name": "Peezy", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xc9bd7011ee97a13dc07087e01499a769ab7e75b4.png", + "aggregators": [ + "CoinMarketCap", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0xfe8526a77a2c3590e5973ba81308b90bea21fbff": { + "address": "0xfe8526a77a2c3590e5973ba81308b90bea21fbff", + "symbol": "WAI", + "decimals": 18, + "name": "WienerAI", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xfe8526a77a2c3590e5973ba81308b90bea21fbff.png", + "aggregators": [ + "CoinMarketCap", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x6e79b51959cf968d87826592f46f819f92466615": { + "address": "0x6e79b51959cf968d87826592f46f819f92466615", + "symbol": "HOPPY", + "decimals": 9, + "name": "Hoppy", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x6e79b51959cf968d87826592f46f819f92466615.png", + "aggregators": [ + "Metamask", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x6ef6610d24593805144d73b13d4405e00a4e4ac7": { + "address": "0x6ef6610d24593805144d73b13d4405e00a4e4ac7", + "symbol": "DIE", + "decimals": 18, + "name": "Die Protocol", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x6ef6610d24593805144d73b13d4405e00a4e4ac7.png", + "aggregators": [ + "CoinMarketCap", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x668c50b1c7f46effbe3f242687071d7908aab00a": { + "address": "0x668c50b1c7f46effbe3f242687071d7908aab00a", + "symbol": "COSHI", + "decimals": 9, + "name": "CoShi Inu", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x668c50b1c7f46effbe3f242687071d7908aab00a.png", + "aggregators": [ + "CoinMarketCap", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x2b7c0fa747611d4412b54076c62119926474edb3": { + "address": "0x2b7c0fa747611d4412b54076c62119926474edb3", + "symbol": "NCAT", + "decimals": 9, + "name": "Neuracat", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x2b7c0fa747611d4412b54076c62119926474edb3.png", + "aggregators": [ + "CoinMarketCap", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0xc8388e437031b09b2c61fc4277469091382a1b13": { + "address": "0xc8388e437031b09b2c61fc4277469091382a1b13", + "symbol": "SHOG", + "decimals": 18, + "name": "SHOG", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xc8388e437031b09b2c61fc4277469091382a1b13.png", + "aggregators": [ + "CoinMarketCap", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x48c276e8d03813224bb1e55f953adb6d02fd3e02": { + "address": "0x48c276e8d03813224bb1e55f953adb6d02fd3e02", + "symbol": "KUMA", + "decimals": 18, + "name": "Kuma Inu", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x48c276e8d03813224bb1e55f953adb6d02fd3e02.png", + "aggregators": [ + "CoinMarketCap", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x535887989b9edffb63b1fd5c6b99a4d45443b49a": { + "address": "0x535887989b9edffb63b1fd5c6b99a4d45443b49a", + "symbol": "TRUMP47", + "decimals": 9, + "name": "47th POTUS", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x535887989b9edffb63b1fd5c6b99a4d45443b49a.png", + "aggregators": [ + "CoinMarketCap", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0xda23d301761e4e2bf474951f978f6dfb6f3c9f14": { + "address": "0xda23d301761e4e2bf474951f978f6dfb6f3c9f14", + "symbol": "TKINU", + "decimals": 9, + "name": "Tsuki Inu", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xda23d301761e4e2bf474951f978f6dfb6f3c9f14.png", + "aggregators": [ + "CoinMarketCap", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0xb612bfc5ce2fb1337bd29f5af24ca85dbb181ce2": { + "address": "0xb612bfc5ce2fb1337bd29f5af24ca85dbb181ce2", + "symbol": "KLAUS", + "decimals": 9, + "name": "KLAUS", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xb612bfc5ce2fb1337bd29f5af24ca85dbb181ce2.png", + "aggregators": [ + "CoinMarketCap", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x97b65710d03e12775189f0d113202cc1443b0aa2": { + "address": "0x97b65710d03e12775189f0d113202cc1443b0aa2", + "symbol": "ELONONE", + "decimals": 9, + "name": "AstroElon", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x97b65710d03e12775189f0d113202cc1443b0aa2.png", + "aggregators": [ + "CoinMarketCap", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x03d1e72765545729a035e909edd9371a405f77fb": { + "address": "0x03d1e72765545729a035e909edd9371a405f77fb", + "symbol": "NABOX", + "decimals": 18, + "name": "Nabox", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x03d1e72765545729a035e909edd9371a405f77fb.png", + "aggregators": [ + "CoinMarketCap", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x1341a2257fa7b770420ef70616f888056f90926c": { + "address": "0x1341a2257fa7b770420ef70616f888056f90926c", + "symbol": "ZOOT", + "decimals": 9, + "name": "Zoo", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x1341a2257fa7b770420ef70616f888056f90926c.png", + "aggregators": [ + "CoinMarketCap", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0xf10da48d4aaa8d784c5e369cb998e263cfe32aa8": { + "address": "0xf10da48d4aaa8d784c5e369cb998e263cfe32aa8", + "symbol": "BMONEY", + "decimals": 9, + "name": "B MONEY", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xf10da48d4aaa8d784c5e369cb998e263cfe32aa8.png", + "aggregators": [ + "CoinMarketCap", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0xea4a2327e75252517535fd013b7c6706609819db": { + "address": "0xea4a2327e75252517535fd013b7c6706609819db", + "symbol": "SNS", + "decimals": 18, + "name": "Shibarium Name Service", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xea4a2327e75252517535fd013b7c6706609819db.png", + "aggregators": [ + "CoinMarketCap", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0xf1a7000000950c7ad8aff13118bb7ab561a448ee": { + "address": "0xf1a7000000950c7ad8aff13118bb7ab561a448ee", + "symbol": "FLAY", + "decimals": 18, + "name": "Flayer", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xf1a7000000950c7ad8aff13118bb7ab561a448ee.png", + "aggregators": [ + "CoinMarketCap", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0xe7c6bf469e97eeb0bfb74c8dbff5bd47d4c1c98a": { + "address": "0xe7c6bf469e97eeb0bfb74c8dbff5bd47d4c1c98a", + "symbol": "HSK", + "decimals": 18, + "name": "HashKey Platform Token", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xe7c6bf469e97eeb0bfb74c8dbff5bd47d4c1c98a.png", + "aggregators": [ + "CoinMarketCap", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0xc5b3d3231001a776123194cf1290068e8b0c783b": { + "address": "0xc5b3d3231001a776123194cf1290068e8b0c783b", + "symbol": "LIT", + "decimals": 18, + "name": "LIT", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xc5b3d3231001a776123194cf1290068e8b0c783b.png", + "aggregators": [ + "CoinMarketCap", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x1fac00ccee478eced6a120a50ed2ab28ee7fe32b": { + "address": "0x1fac00ccee478eced6a120a50ed2ab28ee7fe32b", + "symbol": "TUNE", + "decimals": 18, + "name": "Bitune", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x1fac00ccee478eced6a120a50ed2ab28ee7fe32b.png", + "aggregators": [ + "CoinMarketCap", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0xf4b5470523ccd314c6b9da041076e7d79e0df267": { + "address": "0xf4b5470523ccd314c6b9da041076e7d79e0df267", + "symbol": "BBANK", + "decimals": 18, + "name": "blockbank", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xf4b5470523ccd314c6b9da041076e7d79e0df267.png", + "aggregators": [ + "CoinMarketCap", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x2e2e7a1f05946ecb2b43b99e3fc2984fa7d7e3bc": { + "address": "0x2e2e7a1f05946ecb2b43b99e3fc2984fa7d7e3bc", + "symbol": "ANDWU", + "decimals": 9, + "name": "Chinese Andy", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x2e2e7a1f05946ecb2b43b99e3fc2984fa7d7e3bc.png", + "aggregators": [ + "CoinMarketCap", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x8530b66ca3ddf50e0447eae8ad7ea7d5e62762ed": { + "address": "0x8530b66ca3ddf50e0447eae8ad7ea7d5e62762ed", + "symbol": "METADOGE", + "decimals": 18, + "name": "Meta Doge", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x8530b66ca3ddf50e0447eae8ad7ea7d5e62762ed.png", + "aggregators": [ + "CoinMarketCap", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x9be776559fed779cabd67042a7b8987aae592541": { + "address": "0x9be776559fed779cabd67042a7b8987aae592541", + "symbol": "BULL", + "decimals": 18, + "name": "Bull Market", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x9be776559fed779cabd67042a7b8987aae592541.png", + "aggregators": [ + "CoinMarketCap", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x5f944b0c4315cb7c3a846b025ab4045da44abf6c": { + "address": "0x5f944b0c4315cb7c3a846b025ab4045da44abf6c", + "symbol": "GCAKE", + "decimals": 18, + "name": "Pancake Games", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x5f944b0c4315cb7c3a846b025ab4045da44abf6c.png", + "aggregators": [ + "CoinMarketCap", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x38a94e92a19e970c144ded0b2dd47278ca11cc1f": { + "address": "0x38a94e92a19e970c144ded0b2dd47278ca11cc1f", + "symbol": "F9", + "decimals": 9, + "name": "Falcon Nine", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x38a94e92a19e970c144ded0b2dd47278ca11cc1f.png", + "aggregators": [ + "CoinMarketCap", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x9e04f519b094f5f8210441e285f603f4d2b50084": { + "address": "0x9e04f519b094f5f8210441e285f603f4d2b50084", + "symbol": "1EARTH", + "decimals": 18, + "name": "EarthFund", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x9e04f519b094f5f8210441e285f603f4d2b50084.png", + "aggregators": [ + "CoinMarketCap", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0xa1817b6d8d890f3943b61648992730373b71f156": { + "address": "0xa1817b6d8d890f3943b61648992730373b71f156", + "symbol": "MONGOOSE", + "decimals": 9, + "name": "Mongoose", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xa1817b6d8d890f3943b61648992730373b71f156.png", + "aggregators": [ + "CoinMarketCap", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x2f141ce366a2462f02cea3d12cf93e4dca49e4fd": { + "address": "0x2f141ce366a2462f02cea3d12cf93e4dca49e4fd", + "symbol": "FREE", + "decimals": 18, + "name": "FREEdom coin", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x2f141ce366a2462f02cea3d12cf93e4dca49e4fd.png", + "aggregators": [ + "CoinMarketCap", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0xda7c0810ce6f8329786160bb3d1734cf6661ca6e": { + "address": "0xda7c0810ce6f8329786160bb3d1734cf6661ca6e", + "symbol": "JAY", + "decimals": 18, + "name": "Jaypeggers", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xda7c0810ce6f8329786160bb3d1734cf6661ca6e.png", + "aggregators": [ + "CoinMarketCap", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x70edf1c215d0ce69e7f16fd4e6276ba0d99d4de7": { + "address": "0x70edf1c215d0ce69e7f16fd4e6276ba0d99d4de7", + "symbol": "CHEQ", + "decimals": 9, + "name": "CHEQD Network", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x70edf1c215d0ce69e7f16fd4e6276ba0d99d4de7.png", + "aggregators": [ + "CoinMarketCap", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x62f03b52c377fea3eb71d451a95ad86c818755d1": { + "address": "0x62f03b52c377fea3eb71d451a95ad86c818755d1", + "symbol": "DOGEVERSE", + "decimals": 18, + "name": "DogeVerse", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x62f03b52c377fea3eb71d451a95ad86c818755d1.png", + "aggregators": [ + "CoinMarketCap", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0xaee9ba9ce49fe810417a36408e34d9962b653e78": { + "address": "0xaee9ba9ce49fe810417a36408e34d9962b653e78", + "symbol": "SNIBBU", + "decimals": 9, + "name": "Snibbu", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xaee9ba9ce49fe810417a36408e34d9962b653e78.png", + "aggregators": [ + "CoinGecko", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0xdda31d354a519ecfb0bc2a536b5e7be147c0f7f4": { + "address": "0xdda31d354a519ecfb0bc2a536b5e7be147c0f7f4", + "symbol": "ELDG", + "decimals": 18, + "name": "Everlodge", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xdda31d354a519ecfb0bc2a536b5e7be147c0f7f4.png", + "aggregators": [ + "CoinGecko", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x39207d2e2feef178fbda8083914554c59d9f8c00": { + "address": "0x39207d2e2feef178fbda8083914554c59d9f8c00", + "symbol": "INUS", + "decimals": 18, + "name": "MultiPlanetary Inus", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x39207d2e2feef178fbda8083914554c59d9f8c00.png", + "aggregators": [ + "CoinMarketCap", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x2d8ea194902bc55431420bd26be92b0782dce91d": { + "address": "0x2d8ea194902bc55431420bd26be92b0782dce91d", + "symbol": "ZND", + "decimals": 18, + "name": "ZND Token", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x2d8ea194902bc55431420bd26be92b0782dce91d.png", + "aggregators": [ + "CoinMarketCap", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0xc9b6a17ebb43491635f603a01f8bb3e4b5d22228": { + "address": "0xc9b6a17ebb43491635f603a01f8bb3e4b5d22228", + "symbol": "MAGA", + "decimals": 9, + "name": "MAGA Coin ETH", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xc9b6a17ebb43491635f603a01f8bb3e4b5d22228.png", + "aggregators": [ + "CoinMarketCap", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x88800092ff476844f74dc2fc427974bbee2794ae": { + "address": "0x88800092ff476844f74dc2fc427974bbee2794ae", + "symbol": "WALLET", + "decimals": 18, + "name": "Ambire Wallet", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x88800092ff476844f74dc2fc427974bbee2794ae.png", + "aggregators": [ + "CoinMarketCap", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x986ee2b944c42d017f52af21c4c69b84dbea35d8": { + "address": "0x986ee2b944c42d017f52af21c4c69b84dbea35d8", + "symbol": "BMC", + "decimals": 18, + "name": "BitMartToken", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x986ee2b944c42d017f52af21c4c69b84dbea35d8.png", + "aggregators": [ + "Metamask", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x59d1e836f7b7210a978b25a855085cc46fd090b5": { + "address": "0x59d1e836f7b7210a978b25a855085cc46fd090b5", + "symbol": "JUSTICE", + "decimals": 18, + "name": "AssangeDAO", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x59d1e836f7b7210a978b25a855085cc46fd090b5.png", + "aggregators": [ + "CoinMarketCap", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x3927fb89f34bbee63351a6340558eebf51a19fb8": { + "address": "0x3927fb89f34bbee63351a6340558eebf51a19fb8", + "symbol": "SPURDO", + "decimals": 18, + "name": "SPURDO ON ETH", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x3927fb89f34bbee63351a6340558eebf51a19fb8.png", + "aggregators": [ + "CoinMarketCap", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0xa6586e19ef681b1ac0ed3d46413d199a555dbb95": { + "address": "0xa6586e19ef681b1ac0ed3d46413d199a555dbb95", + "symbol": "LETSGO", + "decimals": 18, + "name": "Lets Go Brandon", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xa6586e19ef681b1ac0ed3d46413d199a555dbb95.png", + "aggregators": [ + "CoinMarketCap", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x069e4aa272d17d9625aa3b6f863c7ef6cfb96713": { + "address": "0x069e4aa272d17d9625aa3b6f863c7ef6cfb96713", + "symbol": "BULEI", + "decimals": 9, + "name": "Bulei", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x069e4aa272d17d9625aa3b6f863c7ef6cfb96713.png", + "aggregators": [ + "CoinMarketCap", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x4ff57e25eeb7affbbb060e0bad2e1759efc8bec4": { + "address": "0x4ff57e25eeb7affbbb060e0bad2e1759efc8bec4", + "symbol": "BLOCX", + "decimals": 18, + "name": "BLOCX", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x4ff57e25eeb7affbbb060e0bad2e1759efc8bec4.png", + "aggregators": [ + "CoinMarketCap", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x489d79959e6ad1e3fef7c939a2d889deff1668a8": { + "address": "0x489d79959e6ad1e3fef7c939a2d889deff1668a8", + "symbol": "HOTTIE", + "decimals": 18, + "name": "Hottie Froggie", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x489d79959e6ad1e3fef7c939a2d889deff1668a8.png", + "aggregators": [ + "CoinGecko", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0xb44377b74ef1773639b663d0754cb8410a847d02": { + "address": "0xb44377b74ef1773639b663d0754cb8410a847d02", + "symbol": "DREAM", + "decimals": 18, + "name": "Dream", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xb44377b74ef1773639b663d0754cb8410a847d02.png", + "aggregators": [ + "CoinMarketCap", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0xa71d0588eaf47f12b13cf8ec750430d21df04974": { + "address": "0xa71d0588eaf47f12b13cf8ec750430d21df04974", + "symbol": "QOM", + "decimals": 18, + "name": "Shiba Predator", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xa71d0588eaf47f12b13cf8ec750430d21df04974.png", + "aggregators": [ + "CoinMarketCap", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x104f3152d8ebfc3f679392977356962ff36566ac": { + "address": "0x104f3152d8ebfc3f679392977356962ff36566ac", + "symbol": "PORTX", + "decimals": 18, + "name": "ChainPort", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x104f3152d8ebfc3f679392977356962ff36566ac.png", + "aggregators": [ + "CoinMarketCap", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0xc1f33e0cf7e40a67375007104b929e49a581bafe": { + "address": "0xc1f33e0cf7e40a67375007104b929e49a581bafe", + "symbol": "SPOT", + "decimals": 9, + "name": "Spot", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xc1f33e0cf7e40a67375007104b929e49a581bafe.png", + "aggregators": [ + "CoinMarketCap", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x77f9cf0bd8c500cffdf420e72343893aecc2ec0b": { + "address": "0x77f9cf0bd8c500cffdf420e72343893aecc2ec0b", + "symbol": "LAIKA", + "decimals": 18, + "name": "Laika", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x77f9cf0bd8c500cffdf420e72343893aecc2ec0b.png", + "aggregators": [ + "CoinMarketCap", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x2d9996f3b9d2e73540fdbfdfe81d71e9e08cbf03": { + "address": "0x2d9996f3b9d2e73540fdbfdfe81d71e9e08cbf03", + "symbol": "BOYSCLUB", + "decimals": 9, + "name": "BoysClub", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x2d9996f3b9d2e73540fdbfdfe81d71e9e08cbf03.png", + "aggregators": [ + "CoinMarketCap", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x3c48ca59bf2699e51d4974d4b6d284ae52076e5e": { + "address": "0x3c48ca59bf2699e51d4974d4b6d284ae52076e5e", + "symbol": "CDS", + "decimals": 18, + "name": "Capital DAO Starter", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x3c48ca59bf2699e51d4974d4b6d284ae52076e5e.png", + "aggregators": [ + "CoinMarketCap", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x33f289d91286535c47270c8479f6776fb3adeb3e": { + "address": "0x33f289d91286535c47270c8479f6776fb3adeb3e", + "symbol": "BXBT", + "decimals": 18, + "name": "BoxBet", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x33f289d91286535c47270c8479f6776fb3adeb3e.png", + "aggregators": [ + "CoinMarketCap", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x6a8fee0e33cb65a7e8d21badca62e87639ef74b3": { + "address": "0x6a8fee0e33cb65a7e8d21badca62e87639ef74b3", + "symbol": "PDX", + "decimals": 18, + "name": "PDX Coin", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x6a8fee0e33cb65a7e8d21badca62e87639ef74b3.png", + "aggregators": [ + "CoinGecko", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x19e2a43fbbc643c3b2d9667d858d49cad17bc2b5": { + "address": "0x19e2a43fbbc643c3b2d9667d858d49cad17bc2b5", + "symbol": "BNS", + "decimals": 8, + "name": "BNS", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x19e2a43fbbc643c3b2d9667d858d49cad17bc2b5.png", + "aggregators": [ + "CoinGecko", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x4521c9ad6a3d4230803ab752ed238be11f8b342f": { + "address": "0x4521c9ad6a3d4230803ab752ed238be11f8b342f", + "symbol": "SANI", + "decimals": 18, + "name": "Sanin Inu", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x4521c9ad6a3d4230803ab752ed238be11f8b342f.png", + "aggregators": [ + "CoinMarketCap", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x602f65bb8b8098ad804e99db6760fd36208cd967": { + "address": "0x602f65bb8b8098ad804e99db6760fd36208cd967", + "symbol": "MOPS", + "decimals": 18, + "name": "Mops", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x602f65bb8b8098ad804e99db6760fd36208cd967.png", + "aggregators": [ + "CoinMarketCap", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x24ccedebf841544c9e6a62af4e8c2fa6e5a46fde": { + "address": "0x24ccedebf841544c9e6a62af4e8c2fa6e5a46fde", + "symbol": "BLUESPARROW", + "decimals": 9, + "name": "BlueSparrow", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x24ccedebf841544c9e6a62af4e8c2fa6e5a46fde.png", + "aggregators": [ + "CoinMarketCap", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0xea60cd69f2b9fd6eb067bddbbf86a5bdeffbbc55": { + "address": "0xea60cd69f2b9fd6eb067bddbbf86a5bdeffbbc55", + "symbol": "WECAN", + "decimals": 18, + "name": "Wecan", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xea60cd69f2b9fd6eb067bddbbf86a5bdeffbbc55.png", + "aggregators": [ + "CoinMarketCap", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0xfd2cf2202f049064865dc32c6cf81eeb34074b39": { + "address": "0xfd2cf2202f049064865dc32c6cf81eeb34074b39", + "symbol": "DGH", + "decimals": 18, + "name": "DigiHealth", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xfd2cf2202f049064865dc32c6cf81eeb34074b39.png", + "aggregators": [ + "CoinMarketCap", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x998ffe1e43facffb941dc337dd0468d52ba5b48a": { + "address": "0x998ffe1e43facffb941dc337dd0468d52ba5b48a", + "symbol": "IDRT", + "decimals": 2, + "name": "Rupiah Token", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x998ffe1e43facffb941dc337dd0468d52ba5b48a.png", + "aggregators": [ + "Metamask", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x5d0ebc4ec5ac18d30512fb6287886245061b3dbd": { + "address": "0x5d0ebc4ec5ac18d30512fb6287886245061b3dbd", + "symbol": "GATSBY", + "decimals": 9, + "name": "Gatsby Inu", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x5d0ebc4ec5ac18d30512fb6287886245061b3dbd.png", + "aggregators": [ + "CoinMarketCap", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x59a529070fbb61e6d6c91f952ccb7f35c34cf8aa": { + "address": "0x59a529070fbb61e6d6c91f952ccb7f35c34cf8aa", + "symbol": "ASF", + "decimals": 18, + "name": "Asymmetry Finance", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x59a529070fbb61e6d6c91f952ccb7f35c34cf8aa.png", + "aggregators": [ + "CoinMarketCap", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0xd5930c307d7395ff807f2921f12c5eb82131a789": { + "address": "0xd5930c307d7395ff807f2921f12c5eb82131a789", + "symbol": "BOLT", + "decimals": 18, + "name": "Bolt", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xd5930c307d7395ff807f2921f12c5eb82131a789.png", + "aggregators": [ + "CoinMarketCap", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x53fd2342b43ecd24aef1535bc3797f509616ce8c": { + "address": "0x53fd2342b43ecd24aef1535bc3797f509616ce8c", + "symbol": "ANARCHY", + "decimals": 9, + "name": "Anarchy", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x53fd2342b43ecd24aef1535bc3797f509616ce8c.png", + "aggregators": [ + "CoinMarketCap", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x9a7703338730b82a803ba050df55f9b3959f3fb2": { + "address": "0x9a7703338730b82a803ba050df55f9b3959f3fb2", + "symbol": "CHIKUN", + "decimals": 9, + "name": "Arise Chikun", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x9a7703338730b82a803ba050df55f9b3959f3fb2.png", + "aggregators": [ + "CoinMarketCap", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x6a445e9f40e0b97c92d0b8a3366cef1d67f700bf": { + "address": "0x6a445e9f40e0b97c92d0b8a3366cef1d67f700bf", + "symbol": "FIDU", + "decimals": 18, + "name": "Fidu", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x6a445e9f40e0b97c92d0b8a3366cef1d67f700bf.png", + "aggregators": [ + "CoinGecko", + "Rubic", + "Squid", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x678e840c640f619e17848045d23072844224dd37": { + "address": "0x678e840c640f619e17848045d23072844224dd37", + "symbol": "CRTS", + "decimals": 18, + "name": "Cratos", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x678e840c640f619e17848045d23072844224dd37.png", + "aggregators": [ + "CoinMarketCap", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0xbd1848e1491d4308ad18287a745dd4db2a4bd55b": { + "address": "0xbd1848e1491d4308ad18287a745dd4db2a4bd55b", + "symbol": "MOMA", + "decimals": 18, + "name": "Mochi Market", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xbd1848e1491d4308ad18287a745dd4db2a4bd55b.png", + "aggregators": [ + "CoinMarketCap", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0xbe92b510007bd3ec0adb3d1fca338dd631e98de7": { + "address": "0xbe92b510007bd3ec0adb3d1fca338dd631e98de7", + "symbol": "DEGEN", + "decimals": 18, + "name": "DegensTogether", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xbe92b510007bd3ec0adb3d1fca338dd631e98de7.png", + "aggregators": [ + "CoinMarketCap", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x4b7c762af92dbd917d159eb282b85aa13e955739": { + "address": "0x4b7c762af92dbd917d159eb282b85aa13e955739", + "symbol": "POODL", + "decimals": 18, + "name": "Poodl Inu", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x4b7c762af92dbd917d159eb282b85aa13e955739.png", + "aggregators": [ + "CoinMarketCap", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x6b32022693210cd2cfc466b9ac0085de8fc34ea6": { + "address": "0x6b32022693210cd2cfc466b9ac0085de8fc34ea6", + "symbol": "DECI", + "decimals": 8, + "name": "Maximus DECI", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x6b32022693210cd2cfc466b9ac0085de8fc34ea6.png", + "aggregators": [ + "CoinMarketCap", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x599955aa9fbc197a1b717d8da6a7012cafe70ab3": { + "address": "0x599955aa9fbc197a1b717d8da6a7012cafe70ab3", + "symbol": "BOPE", + "decimals": 9, + "name": "Book of Pepe", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x599955aa9fbc197a1b717d8da6a7012cafe70ab3.png", + "aggregators": [ + "CoinMarketCap", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0xac1d3d7a8878e655cbb063d58e453540641f4117": { + "address": "0xac1d3d7a8878e655cbb063d58e453540641f4117", + "symbol": "TOAD", + "decimals": 18, + "name": "Acid Toad", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xac1d3d7a8878e655cbb063d58e453540641f4117.png", + "aggregators": [ + "CoinMarketCap", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x5ee84583f67d5ecea5420dbb42b462896e7f8d06": { + "address": "0x5ee84583f67d5ecea5420dbb42b462896e7f8d06", + "symbol": "PLSB", + "decimals": 12, + "name": "PulseBitcoin", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x5ee84583f67d5ecea5420dbb42b462896e7f8d06.png", + "aggregators": [ + "CoinMarketCap", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x505a84a03e382331a1be487b632cf357748b65d6": { + "address": "0x505a84a03e382331a1be487b632cf357748b65d6", + "symbol": "SHIBGF", + "decimals": 18, + "name": "SHIBGF", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x505a84a03e382331a1be487b632cf357748b65d6.png", + "aggregators": [ + "CoinMarketCap", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0xd794dd1cada4cf79c9eebaab8327a1b0507ef7d4": { + "address": "0xd794dd1cada4cf79c9eebaab8327a1b0507ef7d4", + "symbol": "HYVE", + "decimals": 18, + "name": "Hyve", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xd794dd1cada4cf79c9eebaab8327a1b0507ef7d4.png", + "aggregators": [ + "CoinMarketCap", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x9e10f61749c4952c320412a6b26901605ff6da1d": { + "address": "0x9e10f61749c4952c320412a6b26901605ff6da1d", + "symbol": "THEOS", + "decimals": 18, + "name": "Theos", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x9e10f61749c4952c320412a6b26901605ff6da1d.png", + "aggregators": [ + "CoinMarketCap", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0xab85fc558d722a2b7c040ffb77db676bd9e7d322": { + "address": "0xab85fc558d722a2b7c040ffb77db676bd9e7d322", + "symbol": "MOROS", + "decimals": 18, + "name": "MOROS NET", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xab85fc558d722a2b7c040ffb77db676bd9e7d322.png", + "aggregators": [ + "CoinMarketCap", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0xef6344de1fcfc5f48c30234c16c1389e8cdc572c": { + "address": "0xef6344de1fcfc5f48c30234c16c1389e8cdc572c", + "symbol": "DNA", + "decimals": 18, + "name": "EncrypGen", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xef6344de1fcfc5f48c30234c16c1389e8cdc572c.png", + "aggregators": [ + "CoinMarketCap", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x187df9748016da82578c83a61c3b3093ac6b8669": { + "address": "0x187df9748016da82578c83a61c3b3093ac6b8669", + "symbol": "KRAZY", + "decimals": 18, + "name": "krazy n d", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x187df9748016da82578c83a61c3b3093ac6b8669.png", + "aggregators": [ + "CoinMarketCap", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x2a961d752eaa791cbff05991e4613290aec0d9ac": { + "address": "0x2a961d752eaa791cbff05991e4613290aec0d9ac", + "symbol": "PATTON", + "decimals": 9, + "name": "Patton", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x2a961d752eaa791cbff05991e4613290aec0d9ac.png", + "aggregators": [ + "CoinMarketCap", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0xa876f27f13a9eb6e621202cefdd5afc4a90e6457": { + "address": "0xa876f27f13a9eb6e621202cefdd5afc4a90e6457", + "symbol": "IC", + "decimals": 9, + "name": "Icy", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xa876f27f13a9eb6e621202cefdd5afc4a90e6457.png", + "aggregators": [ + "CoinMarketCap", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0xf7554eac0bf20d702e69d08c425e817abb976aea": { + "address": "0xf7554eac0bf20d702e69d08c425e817abb976aea", + "symbol": "MAHA", + "decimals": 18, + "name": "Make America Healthy Again", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xf7554eac0bf20d702e69d08c425e817abb976aea.png", + "aggregators": [ + "CoinMarketCap", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0xbdcd291c32e06bbf2d7b1ffc823959e3258e3583": { + "address": "0xbdcd291c32e06bbf2d7b1ffc823959e3258e3583", + "symbol": "WASD", + "decimals": 9, + "name": "WASD Studios", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xbdcd291c32e06bbf2d7b1ffc823959e3258e3583.png", + "aggregators": [ + "CoinMarketCap", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x6c22910c6f75f828b305e57c6a54855d8adeabf8": { + "address": "0x6c22910c6f75f828b305e57c6a54855d8adeabf8", + "symbol": "SATS", + "decimals": 9, + "name": "Satoshis Vision", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x6c22910c6f75f828b305e57c6a54855d8adeabf8.png", + "aggregators": [ + "CoinMarketCap", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0xc4ee0aa2d993ca7c9263ecfa26c6f7e13009d2b6": { + "address": "0xc4ee0aa2d993ca7c9263ecfa26c6f7e13009d2b6", + "symbol": "HOICHI", + "decimals": 18, + "name": "Hoichi", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xc4ee0aa2d993ca7c9263ecfa26c6f7e13009d2b6.png", + "aggregators": [ + "CoinMarketCap", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0xeb575c45004bd7b61c6a8d3446a62a05a6ce18d8": { + "address": "0xeb575c45004bd7b61c6a8d3446a62a05a6ce18d8", + "symbol": "ELS", + "decimals": 18, + "name": "Ethlas", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xeb575c45004bd7b61c6a8d3446a62a05a6ce18d8.png", + "aggregators": [ + "CoinMarketCap", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0xc3681a720605bd6f8fe9a2fabff6a7cdecdc605d": { + "address": "0xc3681a720605bd6f8fe9a2fabff6a7cdecdc605d", + "symbol": "NIHAO", + "decimals": 18, + "name": "Nihao", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xc3681a720605bd6f8fe9a2fabff6a7cdecdc605d.png", + "aggregators": [ + "CoinMarketCap", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x13dbd5394c2c7e4bdb85b1838286faa66532a262": { + "address": "0x13dbd5394c2c7e4bdb85b1838286faa66532a262", + "symbol": "TZU", + "decimals": 18, + "name": "Sun Tzu", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x13dbd5394c2c7e4bdb85b1838286faa66532a262.png", + "aggregators": [ + "CoinMarketCap", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0xb939da54f9748440a1b279d42be1296942732288": { + "address": "0xb939da54f9748440a1b279d42be1296942732288", + "symbol": "FONZY", + "decimals": 18, + "name": "Fonzy", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xb939da54f9748440a1b279d42be1296942732288.png", + "aggregators": [ + "CoinMarketCap", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x7da2641000cbb407c329310c461b2cb9c70c3046": { + "address": "0x7da2641000cbb407c329310c461b2cb9c70c3046", + "symbol": "AGI", + "decimals": 18, + "name": "Delysium", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x7da2641000cbb407c329310c461b2cb9c70c3046.png", + "aggregators": [ + "CoinMarketCap", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0xad1a5b8538a866ecd56ddd328b50ed57ced5d936": { + "address": "0xad1a5b8538a866ecd56ddd328b50ed57ced5d936", + "symbol": "GENSLR", + "decimals": 18, + "name": "Good Gensler", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xad1a5b8538a866ecd56ddd328b50ed57ced5d936.png", + "aggregators": [ + "CoinMarketCap", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x80f0c1c49891dcfdd40b6e0f960f84e6042bcb6f": { + "address": "0x80f0c1c49891dcfdd40b6e0f960f84e6042bcb6f", + "symbol": "DXN", + "decimals": 18, + "name": "DBXen", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x80f0c1c49891dcfdd40b6e0f960f84e6042bcb6f.png", + "aggregators": [ + "CoinMarketCap", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x0d505c03d30e65f6e9b4ef88855a47a89e4b7676": { + "address": "0x0d505c03d30e65f6e9b4ef88855a47a89e4b7676", + "symbol": "ZOOMER", + "decimals": 18, + "name": "Zoomer", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x0d505c03d30e65f6e9b4ef88855a47a89e4b7676.png", + "aggregators": [ + "CoinMarketCap", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x577fee283e776eec29c9e4d258431982780a38a8": { + "address": "0x577fee283e776eec29c9e4d258431982780a38a8", + "symbol": "PEPA", + "decimals": 9, + "name": "Pepa ERC", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x577fee283e776eec29c9e4d258431982780a38a8.png", + "aggregators": [ + "CoinMarketCap", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0xee772cec929d8430b4fa7a01cd7fbd159a68aa83": { + "address": "0xee772cec929d8430b4fa7a01cd7fbd159a68aa83", + "symbol": "SHANG", + "decimals": 18, + "name": "Shanghai Inu", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xee772cec929d8430b4fa7a01cd7fbd159a68aa83.png", + "aggregators": [ + "CoinMarketCap", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0xad8d0de33c43eefe104a279cdb6ae250c12e6214": { + "address": "0xad8d0de33c43eefe104a279cdb6ae250c12e6214", + "symbol": "NARUTO", + "decimals": 9, + "name": "Naruto", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xad8d0de33c43eefe104a279cdb6ae250c12e6214.png", + "aggregators": [ + "CoinMarketCap", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0xe46091dce9c67691bcf22768bbee0bc9e20d4beb": { + "address": "0xe46091dce9c67691bcf22768bbee0bc9e20d4beb", + "symbol": "WSBC", + "decimals": 9, + "name": "WSB Classic", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xe46091dce9c67691bcf22768bbee0bc9e20d4beb.png", + "aggregators": [ + "CoinMarketCap", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x4c6e2c495b974b8d4220e370f23c7e0e1da9b644": { + "address": "0x4c6e2c495b974b8d4220e370f23c7e0e1da9b644", + "symbol": "SMILEY", + "decimals": 9, + "name": "Smiley Coin", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x4c6e2c495b974b8d4220e370f23c7e0e1da9b644.png", + "aggregators": [ + "CoinMarketCap", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x553afe6468949e0685959022217336717df5fbe8": { + "address": "0x553afe6468949e0685959022217336717df5fbe8", + "symbol": "PLT", + "decimals": 18, + "name": "Palette", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x553afe6468949e0685959022217336717df5fbe8.png", + "aggregators": [ + "CoinMarketCap", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x244b797d622d4dee8b188b03546acaabd0cf91a0": { + "address": "0x244b797d622d4dee8b188b03546acaabd0cf91a0", + "symbol": "FOUR", + "decimals": 18, + "name": "FourCoin", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x244b797d622d4dee8b188b03546acaabd0cf91a0.png", + "aggregators": [ + "CoinMarketCap", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x15f20f9dfdf96ccf6ac96653b7c0abfe4a9c9f0f": { + "address": "0x15f20f9dfdf96ccf6ac96653b7c0abfe4a9c9f0f", + "symbol": "WSB", + "decimals": 18, + "name": "Wall Street Baby", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x15f20f9dfdf96ccf6ac96653b7c0abfe4a9c9f0f.png", + "aggregators": [ + "CoinMarketCap", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0xb8c55c80a1cb7394088a36c6b634dc2bf3c6fb67": { + "address": "0xb8c55c80a1cb7394088a36c6b634dc2bf3c6fb67", + "symbol": "PEPEDOGE", + "decimals": 18, + "name": "Pepe Doge", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xb8c55c80a1cb7394088a36c6b634dc2bf3c6fb67.png", + "aggregators": [ + "CoinMarketCap", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x8a7b7b9b2f7d0c63f66171721339705a6188a7d5": { + "address": "0x8a7b7b9b2f7d0c63f66171721339705a6188a7d5", + "symbol": "EDOGE", + "decimals": 18, + "name": "EtherDoge", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x8a7b7b9b2f7d0c63f66171721339705a6188a7d5.png", + "aggregators": [ + "CoinMarketCap", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x2c7f442aab99d5e18cfae2291c507c0b5f3c1eb5": { + "address": "0x2c7f442aab99d5e18cfae2291c507c0b5f3c1eb5", + "symbol": "KEKO", + "decimals": 18, + "name": "Keko", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x2c7f442aab99d5e18cfae2291c507c0b5f3c1eb5.png", + "aggregators": [ + "CoinMarketCap", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x0414d8c87b271266a5864329fb4932bbe19c0c49": { + "address": "0x0414d8c87b271266a5864329fb4932bbe19c0c49", + "symbol": "WSB", + "decimals": 18, + "name": "WSB Coin", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x0414d8c87b271266a5864329fb4932bbe19c0c49.png", + "aggregators": [ + "CoinMarketCap", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0xd87d72248093597df8d56d2a53c1ab7c1a0cc8da": { + "address": "0xd87d72248093597df8d56d2a53c1ab7c1a0cc8da", + "symbol": "HAHA", + "decimals": 18, + "name": "HAHA", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xd87d72248093597df8d56d2a53c1ab7c1a0cc8da.png", + "aggregators": [ + "CoinMarketCap", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x586a7cfe21e55ec0e24f0bfb118f77fe4ca87bab": { + "address": "0x586a7cfe21e55ec0e24f0bfb118f77fe4ca87bab", + "symbol": "CRYPTO", + "decimals": 18, + "name": "BetbuInu", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x586a7cfe21e55ec0e24f0bfb118f77fe4ca87bab.png", + "aggregators": [ + "CoinMarketCap", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0xe9da5e227e3fa4fc933b5f540be021e7ecc3fd81": { + "address": "0xe9da5e227e3fa4fc933b5f540be021e7ecc3fd81", + "symbol": "GMFAM", + "decimals": 18, + "name": "GMFAM", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xe9da5e227e3fa4fc933b5f540be021e7ecc3fd81.png", + "aggregators": [ + "CoinMarketCap", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0xd4f4d0a10bcae123bb6655e8fe93a30d01eebd04": { + "address": "0xd4f4d0a10bcae123bb6655e8fe93a30d01eebd04", + "symbol": "LNQ", + "decimals": 18, + "name": "LinqAI", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xd4f4d0a10bcae123bb6655e8fe93a30d01eebd04.png", + "aggregators": [ + "CoinMarketCap", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x378e1be15be6d6d1f23cfe7090b6a77660dbf14d": { + "address": "0x378e1be15be6d6d1f23cfe7090b6a77660dbf14d", + "symbol": "FOXE", + "decimals": 18, + "name": "FOXE", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x378e1be15be6d6d1f23cfe7090b6a77660dbf14d.png", + "aggregators": [ + "CoinMarketCap", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0xc961da88bb5e8ee2ba7dfd4c62a875ef80f7202f": { + "address": "0xc961da88bb5e8ee2ba7dfd4c62a875ef80f7202f", + "symbol": "HARAM", + "decimals": 9, + "name": "Haram", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xc961da88bb5e8ee2ba7dfd4c62a875ef80f7202f.png", + "aggregators": [ + "CoinMarketCap", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x4fe8d4775b7cb2546b9ee86182081cdf8f77b053": { + "address": "0x4fe8d4775b7cb2546b9ee86182081cdf8f77b053", + "symbol": "KAIJU", + "decimals": 18, + "name": "KAIJUNO8", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x4fe8d4775b7cb2546b9ee86182081cdf8f77b053.png", + "aggregators": [ + "CoinMarketCap", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0xc092a137df3cf2b9e5971ba1874d26487c12626d": { + "address": "0xc092a137df3cf2b9e5971ba1874d26487c12626d", + "symbol": "RING", + "decimals": 18, + "name": "Ring AI", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xc092a137df3cf2b9e5971ba1874d26487c12626d.png", + "aggregators": [ + "CoinMarketCap", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x8013266cb5c9dd48be3ad7d1ce832874d64b3ce1": { + "address": "0x8013266cb5c9dd48be3ad7d1ce832874d64b3ce1", + "symbol": "BOOP", + "decimals": 18, + "name": "Boop", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x8013266cb5c9dd48be3ad7d1ce832874d64b3ce1.png", + "aggregators": [ + "CoinMarketCap", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0xcae3faa4b6cf660aef18474074949ba0948bc025": { + "address": "0xcae3faa4b6cf660aef18474074949ba0948bc025", + "symbol": "GEN", + "decimals": 18, + "name": "Generational Wealth", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xcae3faa4b6cf660aef18474074949ba0948bc025.png", + "aggregators": [ + "CoinMarketCap", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x3007083eaa95497cd6b2b809fb97b6a30bdf53d3": { + "address": "0x3007083eaa95497cd6b2b809fb97b6a30bdf53d3", + "symbol": "PSYOP", + "decimals": 18, + "name": "PSYOP", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x3007083eaa95497cd6b2b809fb97b6a30bdf53d3.png", + "aggregators": [ + "CoinMarketCap", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x9d7630adf7ab0b0cb00af747db76864df0ec82e4": { + "address": "0x9d7630adf7ab0b0cb00af747db76864df0ec82e4", + "symbol": "GATE", + "decimals": 18, + "name": "GATENet", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x9d7630adf7ab0b0cb00af747db76864df0ec82e4.png", + "aggregators": [ + "CoinMarketCap", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x4ad434b8cdc3aa5ac97932d6bd18b5d313ab0f6f": { + "address": "0x4ad434b8cdc3aa5ac97932d6bd18b5d313ab0f6f", + "symbol": "EVERMOON", + "decimals": 18, + "name": "EverMoon ERC", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x4ad434b8cdc3aa5ac97932d6bd18b5d313ab0f6f.png", + "aggregators": [ + "CoinMarketCap", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x369733153e6e08d38f2bc72ae2432e855cfbe221": { + "address": "0x369733153e6e08d38f2bc72ae2432e855cfbe221", + "symbol": "XALPHA", + "decimals": 18, + "name": "XALPHA AI", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x369733153e6e08d38f2bc72ae2432e855cfbe221.png", + "aggregators": [ + "CoinMarketCap", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x7a8adcf432ebcc2311b955d176ee4bfed13bb9a7": { + "address": "0x7a8adcf432ebcc2311b955d176ee4bfed13bb9a7", + "symbol": "MANDOX", + "decimals": 9, + "name": "MandoX", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x7a8adcf432ebcc2311b955d176ee4bfed13bb9a7.png", + "aggregators": [ + "CoinMarketCap", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0xda8263d8ce3f726233f8b5585bcb86a3120a58b6": { + "address": "0xda8263d8ce3f726233f8b5585bcb86a3120a58b6", + "symbol": "DOGC", + "decimals": 18, + "name": "DogeClub", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xda8263d8ce3f726233f8b5585bcb86a3120a58b6.png", + "aggregators": [ + "CoinMarketCap", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x445bd590a01fe6709d4f13a8f579c1e4846921db": { + "address": "0x445bd590a01fe6709d4f13a8f579c1e4846921db", + "symbol": "DUMMY", + "decimals": 18, + "name": "DUMMY", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x445bd590a01fe6709d4f13a8f579c1e4846921db.png", + "aggregators": [ + "CoinMarketCap", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x18cc2ba8995c6307e355726244adb023cf00522f": { + "address": "0x18cc2ba8995c6307e355726244adb023cf00522f", + "symbol": "MONKE", + "decimals": 9, + "name": "Monke", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x18cc2ba8995c6307e355726244adb023cf00522f.png", + "aggregators": [ + "CoinMarketCap", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x5fa20d59d2a907e5fed9fb80b4a8d9f0d069a48d": { + "address": "0x5fa20d59d2a907e5fed9fb80b4a8d9f0d069a48d", + "symbol": "NOGS", + "decimals": 18, + "name": "Noggles", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x5fa20d59d2a907e5fed9fb80b4a8d9f0d069a48d.png", + "aggregators": [ + "CoinMarketCap", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x112b08621e27e10773ec95d250604a041f36c582": { + "address": "0x112b08621e27e10773ec95d250604a041f36c582", + "symbol": "KAS", + "decimals": 8, + "name": "Wrapped Kaspa", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x112b08621e27e10773ec95d250604a041f36c582.png", + "aggregators": [ + "CoinMarketCap", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x2c623d3cc9a2cc158951b8093cb94e80cf56deea": { + "address": "0x2c623d3cc9a2cc158951b8093cb94e80cf56deea", + "symbol": "NEX", + "decimals": 18, + "name": "NexAI", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x2c623d3cc9a2cc158951b8093cb94e80cf56deea.png", + "aggregators": [ + "CoinMarketCap", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0xb3912b20b3abc78c15e85e13ec0bf334fbb924f7": { + "address": "0xb3912b20b3abc78c15e85e13ec0bf334fbb924f7", + "symbol": "HANA", + "decimals": 9, + "name": "Hana", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xb3912b20b3abc78c15e85e13ec0bf334fbb924f7.png", + "aggregators": [ + "CoinMarketCap", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x423f4e6138e475d85cf7ea071ac92097ed631eea": { + "address": "0x423f4e6138e475d85cf7ea071ac92097ed631eea", + "symbol": "PNDC", + "decimals": 18, + "name": "PondCoin", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x423f4e6138e475d85cf7ea071ac92097ed631eea.png", + "aggregators": [ + "CoinMarketCap", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0xabec00542d141bddf58649bfe860c6449807237c": { + "address": "0xabec00542d141bddf58649bfe860c6449807237c", + "symbol": "X", + "decimals": 18, + "name": "CruxDecussata", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xabec00542d141bddf58649bfe860c6449807237c.png", + "aggregators": [ + "CoinMarketCap", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x018dd3a0dd7f213cc822076b3800816d3ce1ed86": { + "address": "0x018dd3a0dd7f213cc822076b3800816d3ce1ed86", + "symbol": "HOTKEY", + "decimals": 18, + "name": "HotKeySwap", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x018dd3a0dd7f213cc822076b3800816d3ce1ed86.png", + "aggregators": [ + "CoinMarketCap", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x00c5ca160a968f47e7272a0cfcda36428f386cb6": { + "address": "0x00c5ca160a968f47e7272a0cfcda36428f386cb6", + "symbol": "USDEBT", + "decimals": 18, + "name": "USDEBT", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x00c5ca160a968f47e7272a0cfcda36428f386cb6.png", + "aggregators": [ + "CoinMarketCap", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x081f67afa0ccf8c7b17540767bbe95df2ba8d97f": { + "address": "0x081f67afa0ccf8c7b17540767bbe95df2ba8d97f", + "symbol": "CET", + "decimals": 18, + "name": "CoinEx", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x081f67afa0ccf8c7b17540767bbe95df2ba8d97f.png", + "aggregators": [ + "CoinMarketCap", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0xa0117792d4b100fd329b37e8ab4181df8a5b3326": { + "address": "0xa0117792d4b100fd329b37e8ab4181df8a5b3326", + "symbol": "BREPE", + "decimals": 18, + "name": "BREPE", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xa0117792d4b100fd329b37e8ab4181df8a5b3326.png", + "aggregators": [ + "CoinMarketCap", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x8353b92201f19b4812eee32efd325f7ede123718": { + "address": "0x8353b92201f19b4812eee32efd325f7ede123718", + "symbol": "SCM", + "decimals": 18, + "name": "ScamFari", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x8353b92201f19b4812eee32efd325f7ede123718.png", + "aggregators": [ + "CoinMarketCap", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x9863bcc2fb23dfdf5fe275aa4c5575a32a580911": { + "address": "0x9863bcc2fb23dfdf5fe275aa4c5575a32a580911", + "symbol": "PEPURAI", + "decimals": 18, + "name": "PEPURAI", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x9863bcc2fb23dfdf5fe275aa4c5575a32a580911.png", + "aggregators": [ + "CoinMarketCap", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x75c97384ca209f915381755c582ec0e2ce88c1ba": { + "address": "0x75c97384ca209f915381755c582ec0e2ce88c1ba", + "symbol": "FINE", + "decimals": 18, + "name": "FINE", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x75c97384ca209f915381755c582ec0e2ce88c1ba.png", + "aggregators": [ + "CoinMarketCap", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x4fbaf51b95b024d0d7cab575be2a1f0afedc9b64": { + "address": "0x4fbaf51b95b024d0d7cab575be2a1f0afedc9b64", + "symbol": "BONK", + "decimals": 18, + "name": "BONK on ETH", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x4fbaf51b95b024d0d7cab575be2a1f0afedc9b64.png", + "aggregators": [ + "CoinMarketCap", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x1aa51bc7eb181ce48ce626bf62f8956fa9555136": { + "address": "0x1aa51bc7eb181ce48ce626bf62f8956fa9555136", + "symbol": "PAW", + "decimals": 18, + "name": "PAWZONE", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x1aa51bc7eb181ce48ce626bf62f8956fa9555136.png", + "aggregators": [ + "CoinMarketCap", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0xc744df3419a8c9bd4d6b9852a503eb1c5308a326": { + "address": "0xc744df3419a8c9bd4d6b9852a503eb1c5308a326", + "symbol": "RED", + "decimals": 18, + "name": "RED TOKEN", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xc744df3419a8c9bd4d6b9852a503eb1c5308a326.png", + "aggregators": [ + "CoinMarketCap", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0xb48eb8368c9c6e9b0734de1ef4ceb9f484b80b9c": { + "address": "0xb48eb8368c9c6e9b0734de1ef4ceb9f484b80b9c", + "symbol": "VMPX", + "decimals": 18, + "name": "VMPX", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xb48eb8368c9c6e9b0734de1ef4ceb9f484b80b9c.png", + "aggregators": ["CoinGecko", "Socket", "Rubic", "Sonarwatch"], + "occurrences": 4 + }, + "0xfd1450a131599ff34f3be1775d8c8bf79e353d8c": { + "address": "0xfd1450a131599ff34f3be1775d8c8bf79e353d8c", + "symbol": "SHIBA", + "decimals": 18, + "name": "Shiba", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xfd1450a131599ff34f3be1775d8c8bf79e353d8c.png", + "aggregators": [ + "CoinMarketCap", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0xf017d3690346eb8234b85f74cee5e15821fee1f4": { + "address": "0xf017d3690346eb8234b85f74cee5e15821fee1f4", + "symbol": "GEKKO", + "decimals": 18, + "name": "GEKKO", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xf017d3690346eb8234b85f74cee5e15821fee1f4.png", + "aggregators": [ + "CoinMarketCap", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0xae3359ed3c567482fb0102c584c23daa2693eacf": { + "address": "0xae3359ed3c567482fb0102c584c23daa2693eacf", + "symbol": "DORK", + "decimals": 18, + "name": "DORK", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xae3359ed3c567482fb0102c584c23daa2693eacf.png", + "aggregators": [ + "CoinMarketCap", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x4c746edf20762dc201ac40135e0c13e400d23d58": { + "address": "0x4c746edf20762dc201ac40135e0c13e400d23d58", + "symbol": "GOD", + "decimals": 9, + "name": "GOD Coin", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x4c746edf20762dc201ac40135e0c13e400d23d58.png", + "aggregators": [ + "CoinMarketCap", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x23f3d4625aef6f0b84d50db1d53516e6015c0c9b": { + "address": "0x23f3d4625aef6f0b84d50db1d53516e6015c0c9b", + "symbol": "NUTS", + "decimals": 18, + "name": "Thetanuts Finance", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x23f3d4625aef6f0b84d50db1d53516e6015c0c9b.png", + "aggregators": [ + "CoinMarketCap", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x973e52691176d36453868d9d86572788d27041a9": { + "address": "0x973e52691176d36453868d9d86572788d27041a9", + "symbol": "DX", + "decimals": 18, + "name": "DxChain", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x973e52691176d36453868d9d86572788d27041a9.png", + "aggregators": [ + "CoinMarketCap", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x420b879b0d18cc182e7e82ad16a13877c3a88420": { + "address": "0x420b879b0d18cc182e7e82ad16a13877c3a88420", + "symbol": "BUD", + "decimals": 9, + "name": "Big Bud", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x420b879b0d18cc182e7e82ad16a13877c3a88420.png", + "aggregators": [ + "CoinMarketCap", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0xd08623fb2a1f044025eec65886011cf5d0f06b01": { + "address": "0xd08623fb2a1f044025eec65886011cf5d0f06b01", + "symbol": "LARRY", + "decimals": 18, + "name": "Larry", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xd08623fb2a1f044025eec65886011cf5d0f06b01.png", + "aggregators": [ + "CoinMarketCap", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x6900f7b42fb4abb615c938db6a26d73a9afbed69": { + "address": "0x6900f7b42fb4abb615c938db6a26d73a9afbed69", + "symbol": "DXY", + "decimals": 18, + "name": "US Degen Index 6900", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x6900f7b42fb4abb615c938db6a26d73a9afbed69.png", + "aggregators": [ + "CoinMarketCap", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0xab5d6508e4726141d29c6074ab366afa03f4ec8d": { + "address": "0xab5d6508e4726141d29c6074ab366afa03f4ec8d", + "symbol": "TRUCK", + "decimals": 18, + "name": "Cybertruck", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xab5d6508e4726141d29c6074ab366afa03f4ec8d.png", + "aggregators": [ + "CoinMarketCap", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x9cf0ed013e67db12ca3af8e7506fe401aa14dad6": { + "address": "0x9cf0ed013e67db12ca3af8e7506fe401aa14dad6", + "symbol": "SPECTRE", + "decimals": 18, + "name": "Spectre AI", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x9cf0ed013e67db12ca3af8e7506fe401aa14dad6.png", + "aggregators": [ + "Metamask", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0xc8168d5665f4418353728ac970713e09c0b7c20e": { + "address": "0xc8168d5665f4418353728ac970713e09c0b7c20e", + "symbol": "MONKE", + "decimals": 18, + "name": "Monke", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xc8168d5665f4418353728ac970713e09c0b7c20e.png", + "aggregators": [ + "CoinMarketCap", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x85225ed797fd4128ac45a992c46ea4681a7a15da": { + "address": "0x85225ed797fd4128ac45a992c46ea4681a7a15da", + "symbol": "HYPE", + "decimals": 18, + "name": "Hyperbolic Protocol", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x85225ed797fd4128ac45a992c46ea4681a7a15da.png", + "aggregators": [ + "CoinMarketCap", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0xbb3d7f42c58abd83616ad7c8c72473ee46df2678": { + "address": "0xbb3d7f42c58abd83616ad7c8c72473ee46df2678", + "symbol": "CHAT", + "decimals": 18, + "name": "VectorChat ai", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xbb3d7f42c58abd83616ad7c8c72473ee46df2678.png", + "aggregators": [ + "CoinMarketCap", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x7c68e725b0b2ffcba8947fded4198c3d1db041e6": { + "address": "0x7c68e725b0b2ffcba8947fded4198c3d1db041e6", + "symbol": "PONGO", + "decimals": 9, + "name": "Pongo", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x7c68e725b0b2ffcba8947fded4198c3d1db041e6.png", + "aggregators": [ + "CoinMarketCap", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0xb970e14df2161c0a2f32eba35901f2446581b482": { + "address": "0xb970e14df2161c0a2f32eba35901f2446581b482", + "symbol": "RKR", + "decimals": 9, + "name": "Reaktor", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xb970e14df2161c0a2f32eba35901f2446581b482.png", + "aggregators": [ + "CoinMarketCap", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x6942806d1b2d5886d95ce2f04314ece8eb825833": { + "address": "0x6942806d1b2d5886d95ce2f04314ece8eb825833", + "symbol": "GROYPER", + "decimals": 18, + "name": "Groyper", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x6942806d1b2d5886d95ce2f04314ece8eb825833.png", + "aggregators": [ + "CoinGecko", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x2d869ae129e308f94cc47e66eaefb448cee0d03e": { + "address": "0x2d869ae129e308f94cc47e66eaefb448cee0d03e", + "symbol": "ORAIX", + "decimals": 18, + "name": "OraiDEX", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x2d869ae129e308f94cc47e66eaefb448cee0d03e.png", + "aggregators": [ + "CoinMarketCap", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x600d601d8b9eb5de5ac90fefc68d0d08801bfd3f": { + "address": "0x600d601d8b9eb5de5ac90fefc68d0d08801bfd3f", + "symbol": "ELMT", + "decimals": 8, + "name": "Element", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x600d601d8b9eb5de5ac90fefc68d0d08801bfd3f.png", + "aggregators": [ + "CoinMarketCap", + "LiFi", + "Socket", + "Rubic", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0xa4ffdf3208f46898ce063e25c1c43056fa754739": { + "address": "0xa4ffdf3208f46898ce063e25c1c43056fa754739", + "symbol": "ATH", + "decimals": 18, + "name": "AthenaDAO", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xa4ffdf3208f46898ce063e25c1c43056fa754739.png", + "aggregators": [ + "CoinGecko", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0xd795eb12034c2b77d787a22292c26fab5f5c70aa": { + "address": "0xd795eb12034c2b77d787a22292c26fab5f5c70aa", + "symbol": "PIXFI", + "decimals": 18, + "name": "Pixelverse", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xd795eb12034c2b77d787a22292c26fab5f5c70aa.png", + "aggregators": [ + "CoinMarketCap", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0xcc9e0bd9438ca0056653d134de794abeaff8c676": { + "address": "0xcc9e0bd9438ca0056653d134de794abeaff8c676", + "symbol": "LESLIE", + "decimals": 9, + "name": "Leslie", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xcc9e0bd9438ca0056653d134de794abeaff8c676.png", + "aggregators": [ + "CoinMarketCap", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x43fe2b0c5485c10e772a1843e32a7642ace5b88c": { + "address": "0x43fe2b0c5485c10e772a1843e32a7642ace5b88c", + "symbol": "RPILL", + "decimals": 18, + "name": "Red Pill", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x43fe2b0c5485c10e772a1843e32a7642ace5b88c.png", + "aggregators": [ + "CoinMarketCap", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x66bff695f3b16a824869a8018a3a6e3685241269": { + "address": "0x66bff695f3b16a824869a8018a3a6e3685241269", + "symbol": "BRETT", + "decimals": 18, + "name": "Bretter Brett", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x66bff695f3b16a824869a8018a3a6e3685241269.png", + "aggregators": [ + "CoinMarketCap", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x89d584a1edb3a70b3b07963f9a3ea5399e38b136": { + "address": "0x89d584a1edb3a70b3b07963f9a3ea5399e38b136", + "symbol": "AIT", + "decimals": 18, + "name": "AIT Protocol", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x89d584a1edb3a70b3b07963f9a3ea5399e38b136.png", + "aggregators": [ + "CoinMarketCap", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x00c2999c8b2adf4abc835cc63209533973718eb1": { + "address": "0x00c2999c8b2adf4abc835cc63209533973718eb1", + "symbol": "STATE", + "decimals": 18, + "name": "New World Order", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x00c2999c8b2adf4abc835cc63209533973718eb1.png", + "aggregators": [ + "CoinMarketCap", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x8a0a9b663693a22235b896f70a229c4a22597623": { + "address": "0x8a0a9b663693a22235b896f70a229c4a22597623", + "symbol": "SCALE", + "decimals": 18, + "name": "Scalia Infrastructure", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x8a0a9b663693a22235b896f70a229c4a22597623.png", + "aggregators": [ + "CoinMarketCap", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x89fb927240750c1b15d4743cd58440fc5f14a11c": { + "address": "0x89fb927240750c1b15d4743cd58440fc5f14a11c", + "symbol": "ATT", + "decimals": 18, + "name": "Attila", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x89fb927240750c1b15d4743cd58440fc5f14a11c.png", + "aggregators": [ + "CoinMarketCap", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x420698cfdeddea6bc78d59bc17798113ad278f9d": { + "address": "0x420698cfdeddea6bc78d59bc17798113ad278f9d", + "symbol": "TOWELI", + "decimals": 18, + "name": "Towelie", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x420698cfdeddea6bc78d59bc17798113ad278f9d.png", + "aggregators": [ + "CoinMarketCap", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0xa562912e1328eea987e04c2650efb5703757850c": { + "address": "0xa562912e1328eea987e04c2650efb5703757850c", + "symbol": "DROPS", + "decimals": 18, + "name": "Drops", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xa562912e1328eea987e04c2650efb5703757850c.png", + "aggregators": [ + "CoinMarketCap", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0xd47bdf574b4f76210ed503e0efe81b58aa061f3d": { + "address": "0xd47bdf574b4f76210ed503e0efe81b58aa061f3d", + "symbol": "TRVL", + "decimals": 18, + "name": "Dtravel", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xd47bdf574b4f76210ed503e0efe81b58aa061f3d.png", + "aggregators": [ + "CoinGecko", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0xde5d2530a877871f6f0fc240b9fce117246dadae": { + "address": "0xde5d2530a877871f6f0fc240b9fce117246dadae", + "symbol": "JUICE", + "decimals": 18, + "name": "Juice", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xde5d2530a877871f6f0fc240b9fce117246dadae.png", + "aggregators": [ + "CoinMarketCap", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0xbdbe9f26918918bd3f43a0219d54e5fda9ce1bb3": { + "address": "0xbdbe9f26918918bd3f43a0219d54e5fda9ce1bb3", + "symbol": "MOLLY", + "decimals": 9, + "name": "Molly", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xbdbe9f26918918bd3f43a0219d54e5fda9ce1bb3.png", + "aggregators": [ + "CoinMarketCap", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0xd555498a524612c67f286df0e0a9a64a73a7cdc7": { + "address": "0xd555498a524612c67f286df0e0a9a64a73a7cdc7", + "symbol": "DEFROGS", + "decimals": 18, + "name": "DeFrogs", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xd555498a524612c67f286df0e0a9a64a73a7cdc7.png", + "aggregators": [ + "CoinMarketCap", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0xbb126042235e6bd38b17744cb31a8bf4a206c045": { + "address": "0xbb126042235e6bd38b17744cb31a8bf4a206c045", + "symbol": "FANC", + "decimals": 18, + "name": "fanC", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xbb126042235e6bd38b17744cb31a8bf4a206c045.png", + "aggregators": [ + "CoinMarketCap", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x6019dcb2d0b3e0d1d8b0ce8d16191b3a4f93703d": { + "address": "0x6019dcb2d0b3e0d1d8b0ce8d16191b3a4f93703d", + "symbol": "QF", + "decimals": 18, + "name": "Quantum Fusion", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x6019dcb2d0b3e0d1d8b0ce8d16191b3a4f93703d.png", + "aggregators": [ + "CoinMarketCap", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0xfc385a1df85660a7e041423db512f779070fcede": { + "address": "0xfc385a1df85660a7e041423db512f779070fcede", + "symbol": "ZKL", + "decimals": 18, + "name": "zkLink", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xfc385a1df85660a7e041423db512f779070fcede.png", + "aggregators": [ + "CoinMarketCap", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x42069d11a2cc72388a2e06210921e839cfbd3280": { + "address": "0x42069d11a2cc72388a2e06210921e839cfbd3280", + "symbol": "GNOME", + "decimals": 18, + "name": "GnomeLand", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x42069d11a2cc72388a2e06210921e839cfbd3280.png", + "aggregators": [ + "CoinMarketCap", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x6d7497751656618fc38cfb5478994a20f7e235df": { + "address": "0x6d7497751656618fc38cfb5478994a20f7e235df", + "symbol": "SPYRO", + "decimals": 18, + "name": "SPYRO", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x6d7497751656618fc38cfb5478994a20f7e235df.png", + "aggregators": [ + "CoinMarketCap", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0xffe203b59393593965842439ce1e7d7c78109b46": { + "address": "0xffe203b59393593965842439ce1e7d7c78109b46", + "symbol": "DOGE-1", + "decimals": 18, + "name": "Satellite Doge 1 Mission", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xffe203b59393593965842439ce1e7d7c78109b46.png", + "aggregators": [ + "CoinMarketCap", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0xeb51b8dc2d43469c0f0b7365c8a18438907bdf21": { + "address": "0xeb51b8dc2d43469c0f0b7365c8a18438907bdf21", + "symbol": "SHIV", + "decimals": 18, + "name": "Shiva Inu", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xeb51b8dc2d43469c0f0b7365c8a18438907bdf21.png", + "aggregators": [ + "CoinMarketCap", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x478156deabfac918369044d52a6bdb5cc5597994": { + "address": "0x478156deabfac918369044d52a6bdb5cc5597994", + "symbol": "SGR", + "decimals": 8, + "name": "Schrodinger", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x478156deabfac918369044d52a6bdb5cc5597994.png", + "aggregators": [ + "CoinMarketCap", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x5832fbf930dacbdd9a1697dca7b3c518277ff0b0": { + "address": "0x5832fbf930dacbdd9a1697dca7b3c518277ff0b0", + "symbol": "DDBAM", + "decimals": 8, + "name": "Didi Bam Bam", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x5832fbf930dacbdd9a1697dca7b3c518277ff0b0.png", + "aggregators": [ + "CoinMarketCap", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0xd55210bb6898c021a19de1f58d27b71f095921ee": { + "address": "0xd55210bb6898c021a19de1f58d27b71f095921ee", + "symbol": "CHKN", + "decimals": 18, + "name": "Chickencoin", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xd55210bb6898c021a19de1f58d27b71f095921ee.png", + "aggregators": [ + "CoinMarketCap", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x433f62964edd67d7349088fe44544f822f863a6c": { + "address": "0x433f62964edd67d7349088fe44544f822f863a6c", + "symbol": "MOGE", + "decimals": 9, + "name": "Moge", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x433f62964edd67d7349088fe44544f822f863a6c.png", + "aggregators": [ + "CoinMarketCap", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0xad913dcd987fe54ce823e4b755f90598cd62bb15": { + "address": "0xad913dcd987fe54ce823e4b755f90598cd62bb15", + "symbol": "MFERS", + "decimals": 18, + "name": "MFERS", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xad913dcd987fe54ce823e4b755f90598cd62bb15.png", + "aggregators": [ + "CoinMarketCap", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x85e0b9d3e7e4dba7e59090c533906d0e9211d8b6": { + "address": "0x85e0b9d3e7e4dba7e59090c533906d0e9211d8b6", + "symbol": "ISHI", + "decimals": 9, + "name": "Ishi", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x85e0b9d3e7e4dba7e59090c533906d0e9211d8b6.png", + "aggregators": [ + "CoinMarketCap", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x05fe069626543842439ef90d9fa1633640c50cf1": { + "address": "0x05fe069626543842439ef90d9fa1633640c50cf1", + "symbol": "EVEAI", + "decimals": 18, + "name": "Eve AI", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x05fe069626543842439ef90d9fa1633640c50cf1.png", + "aggregators": [ + "CoinMarketCap", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x52a047ee205701895ee06a375492490ec9c597ce": { + "address": "0x52a047ee205701895ee06a375492490ec9c597ce", + "symbol": "PULSE", + "decimals": 18, + "name": "PulseMarkets", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x52a047ee205701895ee06a375492490ec9c597ce.png", + "aggregators": [ + "CoinMarketCap", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x740a5ac14d0096c81d331adc1611cf2fd28ae317": { + "address": "0x740a5ac14d0096c81d331adc1611cf2fd28ae317", + "symbol": "PLEB", + "decimals": 9, + "name": "Plebz", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x740a5ac14d0096c81d331adc1611cf2fd28ae317.png", + "aggregators": [ + "CoinMarketCap", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x004626a008b1acdc4c74ab51644093b155e59a23": { + "address": "0x004626a008b1acdc4c74ab51644093b155e59a23", + "symbol": "STEUR", + "decimals": 18, + "name": "Staked EURA", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x004626a008b1acdc4c74ab51644093b155e59a23.png", + "aggregators": ["Metamask", "LiFi", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 5 + }, + "0x725024200cd4e1f259fcf2b7153d37fb477e139c": { + "address": "0x725024200cd4e1f259fcf2b7153d37fb477e139c", + "symbol": "FLOVI", + "decimals": 9, + "name": "Flovi Inu", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x725024200cd4e1f259fcf2b7153d37fb477e139c.png", + "aggregators": [ + "CoinMarketCap", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x346b46280f559def274f80c5d16471b4b7ef2f14": { + "address": "0x346b46280f559def274f80c5d16471b4b7ef2f14", + "symbol": "WSTOR", + "decimals": 18, + "name": "StorageChain", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x346b46280f559def274f80c5d16471b4b7ef2f14.png", + "aggregators": [ + "CoinMarketCap", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x2a7e415c169ce3a580c6f374dc26f6aaad1eccfe": { + "address": "0x2a7e415c169ce3a580c6f374dc26f6aaad1eccfe", + "symbol": "HACHI", + "decimals": 18, + "name": "Hachi", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x2a7e415c169ce3a580c6f374dc26f6aaad1eccfe.png", + "aggregators": [ + "CoinMarketCap", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0xca530408c3e552b020a2300debc7bd18820fb42f": { + "address": "0xca530408c3e552b020a2300debc7bd18820fb42f", + "symbol": "RYU", + "decimals": 18, + "name": "RyuJin", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xca530408c3e552b020a2300debc7bd18820fb42f.png", + "aggregators": [ + "CoinMarketCap", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0xfbe44cae91d7df8382208fcdc1fe80e40fbc7e9a": { + "address": "0xfbe44cae91d7df8382208fcdc1fe80e40fbc7e9a", + "symbol": "GEMAI", + "decimals": 18, + "name": "The Next Gem AI", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xfbe44cae91d7df8382208fcdc1fe80e40fbc7e9a.png", + "aggregators": [ + "CoinMarketCap", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0xc5ba042bf8832999b17c9036e8212f49dce0501a": { + "address": "0xc5ba042bf8832999b17c9036e8212f49dce0501a", + "symbol": "YOURAI", + "decimals": 18, + "name": "YOUR AI", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xc5ba042bf8832999b17c9036e8212f49dce0501a.png", + "aggregators": [ + "CoinMarketCap", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x50739bd5b6aff093ba2371365727c48a420a060d": { + "address": "0x50739bd5b6aff093ba2371365727c48a420a060d", + "symbol": "CRGPT", + "decimals": 18, + "name": "CryptoGPT", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x50739bd5b6aff093ba2371365727c48a420a060d.png", + "aggregators": [ + "CoinMarketCap", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0xea3665e272f14052442e433fb0059424d16cc6c7": { + "address": "0xea3665e272f14052442e433fb0059424d16cc6c7", + "symbol": "SMIDGE", + "decimals": 18, + "name": "Smidge", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xea3665e272f14052442e433fb0059424d16cc6c7.png", + "aggregators": [ + "CoinMarketCap", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x814a870726edb7dfc4798300ae1ce3e5da0ac467": { + "address": "0x814a870726edb7dfc4798300ae1ce3e5da0ac467", + "symbol": "DACAT", + "decimals": 18, + "name": "daCat", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x814a870726edb7dfc4798300ae1ce3e5da0ac467.png", + "aggregators": [ + "CoinMarketCap", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0xe635efcfac44c5f44508f4d17c3a96cb4ce421dd": { + "address": "0xe635efcfac44c5f44508f4d17c3a96cb4ce421dd", + "symbol": "SPOT", + "decimals": 18, + "name": "Defispot", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xe635efcfac44c5f44508f4d17c3a96cb4ce421dd.png", + "aggregators": [ + "CoinMarketCap", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x0b452278223d3954f4ac050949d7998e373e7e43": { + "address": "0x0b452278223d3954f4ac050949d7998e373e7e43", + "symbol": "SUZUME", + "decimals": 18, + "name": "Shita kiri Suzume", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x0b452278223d3954f4ac050949d7998e373e7e43.png", + "aggregators": [ + "CoinMarketCap", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x6e0615a03ed9527a6013fcd5b556e36ef4dab1ff": { + "address": "0x6e0615a03ed9527a6013fcd5b556e36ef4dab1ff", + "symbol": "HNB", + "decimals": 18, + "name": "HNB Protocol", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x6e0615a03ed9527a6013fcd5b556e36ef4dab1ff.png", + "aggregators": [ + "CoinMarketCap", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0xc06bf3589345a81f0c2845e4db76bdb64bbbbc9d": { + "address": "0xc06bf3589345a81f0c2845e4db76bdb64bbbbc9d", + "symbol": "MEGA", + "decimals": 18, + "name": "Make ETH Great Again", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xc06bf3589345a81f0c2845e4db76bdb64bbbbc9d.png", + "aggregators": [ + "CoinGecko", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x7eeab3de47a475fd2dec438aef05b128887c6105": { + "address": "0x7eeab3de47a475fd2dec438aef05b128887c6105", + "symbol": "TROPPY", + "decimals": 11, + "name": "TROPPY", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x7eeab3de47a475fd2dec438aef05b128887c6105.png", + "aggregators": [ + "CoinMarketCap", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x17d2628d30f8e9e966c9ba831c9b9b01ea8ea75c": { + "address": "0x17d2628d30f8e9e966c9ba831c9b9b01ea8ea75c", + "symbol": "ISK", + "decimals": 18, + "name": "ISKRA Token", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x17d2628d30f8e9e966c9ba831c9b9b01ea8ea75c.png", + "aggregators": [ + "CoinMarketCap", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x6630e3a2ec1e7e0a2f9f1d2289a9a89b0551683a": { + "address": "0x6630e3a2ec1e7e0a2f9f1d2289a9a89b0551683a", + "symbol": "WIFSA", + "decimals": 18, + "name": "dogwifsaudihat", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x6630e3a2ec1e7e0a2f9f1d2289a9a89b0551683a.png", + "aggregators": [ + "CoinMarketCap", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0xfc4913214444af5c715cc9f7b52655e788a569ed": { + "address": "0xfc4913214444af5c715cc9f7b52655e788a569ed", + "symbol": "ICSA", + "decimals": 9, + "name": "Icosa ETH", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xfc4913214444af5c715cc9f7b52655e788a569ed.png", + "aggregators": [ + "CoinMarketCap", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x8e7bd91f7d51d58145365341fdb37e0edfc8397f": { + "address": "0x8e7bd91f7d51d58145365341fdb37e0edfc8397f", + "symbol": "MAGAPEPE", + "decimals": 9, + "name": "MAGA PEPE ETH", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x8e7bd91f7d51d58145365341fdb37e0edfc8397f.png", + "aggregators": [ + "CoinMarketCap", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x1f70300bce8c2302780bd0a153ebb75b8ca7efcb": { + "address": "0x1f70300bce8c2302780bd0a153ebb75b8ca7efcb", + "symbol": "BARRON", + "decimals": 9, + "name": "Mini Donald", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x1f70300bce8c2302780bd0a153ebb75b8ca7efcb.png", + "aggregators": [ + "CoinMarketCap", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0xbc61e13ca6830fc7f035fd0e90a01cd08be6dcaa": { + "address": "0xbc61e13ca6830fc7f035fd0e90a01cd08be6dcaa", + "symbol": "SHOOT", + "decimals": 18, + "name": "SHOOT", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xbc61e13ca6830fc7f035fd0e90a01cd08be6dcaa.png", + "aggregators": [ + "CoinMarketCap", + "Rubic", + "Rango", + "Sonarwatch", + "SushiSwap" + ], + "occurrences": 5 + }, + "0x07040971246a73ebda9cf29ea1306bb47c7c4e76": { + "address": "0x07040971246a73ebda9cf29ea1306bb47c7c4e76", + "symbol": "USPEPE", + "decimals": 9, + "name": "American Pepe", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x07040971246a73ebda9cf29ea1306bb47c7c4e76.png", + "aggregators": [ + "CoinMarketCap", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0xa6422e3e219ee6d4c1b18895275fe43556fd50ed": { + "address": "0xa6422e3e219ee6d4c1b18895275fe43556fd50ed", + "symbol": "STBU", + "decimals": 18, + "name": "Stobox Token", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xa6422e3e219ee6d4c1b18895275fe43556fd50ed.png", + "aggregators": [ + "CoinMarketCap", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x7137e8a3b069c3f787c4ffbb901b91e4ba47d082": { + "address": "0x7137e8a3b069c3f787c4ffbb901b91e4ba47d082", + "symbol": "ZEUS", + "decimals": 9, + "name": "Zeus", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x7137e8a3b069c3f787c4ffbb901b91e4ba47d082.png", + "aggregators": [ + "CoinGecko", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0xc668695dcbcf682de106da94bde65c9bc79362d3": { + "address": "0xc668695dcbcf682de106da94bde65c9bc79362d3", + "symbol": "SVPN", + "decimals": 18, + "name": "Shadow Node", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xc668695dcbcf682de106da94bde65c9bc79362d3.png", + "aggregators": [ + "CoinMarketCap", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0xaf75d880b3128981d1fed3292fc02e3fb37acd53": { + "address": "0xaf75d880b3128981d1fed3292fc02e3fb37acd53", + "symbol": "TRUTH", + "decimals": 9, + "name": "TruthGPT", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xaf75d880b3128981d1fed3292fc02e3fb37acd53.png", + "aggregators": [ + "CoinMarketCap", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0xf6ce4be313ead51511215f1874c898239a331e37": { + "address": "0xf6ce4be313ead51511215f1874c898239a331e37", + "symbol": "BIRDDOG", + "decimals": 9, + "name": "Bird Dog", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xf6ce4be313ead51511215f1874c898239a331e37.png", + "aggregators": [ + "CoinMarketCap", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x8bcbef61acd66537362f38167f11875134ffcd63": { + "address": "0x8bcbef61acd66537362f38167f11875134ffcd63", + "symbol": "PEPEG", + "decimals": 18, + "name": "Pepe Girl", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x8bcbef61acd66537362f38167f11875134ffcd63.png", + "aggregators": [ + "CoinMarketCap", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0xabd0e3535ecfbf6959b1798220335faf1b7ada3a": { + "address": "0xabd0e3535ecfbf6959b1798220335faf1b7ada3a", + "symbol": "PREAI", + "decimals": 18, + "name": "Predict Crypto", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xabd0e3535ecfbf6959b1798220335faf1b7ada3a.png", + "aggregators": [ + "CoinMarketCap", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x53250b5dfa8c911547afeaf18db025024c8e919a": { + "address": "0x53250b5dfa8c911547afeaf18db025024c8e919a", + "symbol": "KERMIT", + "decimals": 9, + "name": "Kermit", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x53250b5dfa8c911547afeaf18db025024c8e919a.png", + "aggregators": [ + "CoinMarketCap", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x748509433ef209c4d11ada51347d5724a5da0ca5": { + "address": "0x748509433ef209c4d11ada51347d5724a5da0ca5", + "symbol": "ANDY", + "decimals": 9, + "name": "Andy on ETH", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x748509433ef209c4d11ada51347d5724a5da0ca5.png", + "aggregators": [ + "CoinGecko", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x68bbed6a47194eff1cf514b50ea91895597fc91e": { + "address": "0x68bbed6a47194eff1cf514b50ea91895597fc91e", + "symbol": "ANDY", + "decimals": 18, + "name": "ANDY ETH", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x68bbed6a47194eff1cf514b50ea91895597fc91e.png", + "aggregators": [ + "CoinGecko", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x830a8512db4f6fca51968593e2667156c2c483a8": { + "address": "0x830a8512db4f6fca51968593e2667156c2c483a8", + "symbol": "WEN", + "decimals": 18, + "name": "WEN Token", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x830a8512db4f6fca51968593e2667156c2c483a8.png", + "aggregators": [ + "CoinMarketCap", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x94be6962be41377d5beda8dfe1b100f3bf0eacf3": { + "address": "0x94be6962be41377d5beda8dfe1b100f3bf0eacf3", + "symbol": "DORKL", + "decimals": 18, + "name": "DORK LORD ETH", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x94be6962be41377d5beda8dfe1b100f3bf0eacf3.png", + "aggregators": [ + "CoinMarketCap", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x699ec925118567b6475fe495327ba0a778234aaa": { + "address": "0x699ec925118567b6475fe495327ba0a778234aaa", + "symbol": "DUCKY", + "decimals": 9, + "name": "Ducky", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x699ec925118567b6475fe495327ba0a778234aaa.png", + "aggregators": [ + "CoinGecko", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0xc56c7a0eaa804f854b536a5f3d5f49d2ec4b12b8": { + "address": "0xc56c7a0eaa804f854b536a5f3d5f49d2ec4b12b8", + "symbol": "GME", + "decimals": 9, + "name": "GME Ethereum", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xc56c7a0eaa804f854b536a5f3d5f49d2ec4b12b8.png", + "aggregators": [ + "CoinGecko", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x87904be82bc1c29e94a0b99474d183b4e08a7e47": { + "address": "0x87904be82bc1c29e94a0b99474d183b4e08a7e47", + "symbol": "AICM", + "decimals": 9, + "name": "AICM Marketplace", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x87904be82bc1c29e94a0b99474d183b4e08a7e47.png", + "aggregators": [ + "CoinMarketCap", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x8a001303158670e284950565164933372807cd48": { + "address": "0x8a001303158670e284950565164933372807cd48", + "symbol": "WFAI", + "decimals": 18, + "name": "WaifuAI", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x8a001303158670e284950565164933372807cd48.png", + "aggregators": [ + "CoinMarketCap", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x1fdd61ef9a5c31b9a2abc7d39c139c779e8412af": { + "address": "0x1fdd61ef9a5c31b9a2abc7d39c139c779e8412af", + "symbol": "JJ", + "decimals": 9, + "name": "JEJE", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x1fdd61ef9a5c31b9a2abc7d39c139c779e8412af.png", + "aggregators": [ + "CoinMarketCap", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x382ea807a61a418479318efd96f1efbc5c1f2c21": { + "address": "0x382ea807a61a418479318efd96f1efbc5c1f2c21", + "symbol": "PEW", + "decimals": 18, + "name": "pepe in a memes world", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x382ea807a61a418479318efd96f1efbc5c1f2c21.png", + "aggregators": [ + "CoinMarketCap", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0xa589d8868607b8d79ee4288ce192796051263b64": { + "address": "0xa589d8868607b8d79ee4288ce192796051263b64", + "symbol": "TATE", + "decimals": 18, + "name": "TATE", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xa589d8868607b8d79ee4288ce192796051263b64.png", + "aggregators": [ + "CoinMarketCap", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0xd8695414822e25ab796c1d360914ddf510a01138": { + "address": "0xd8695414822e25ab796c1d360914ddf510a01138", + "symbol": "KAI", + "decimals": 18, + "name": "Kreaitor", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xd8695414822e25ab796c1d360914ddf510a01138.png", + "aggregators": [ + "CoinMarketCap", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x5a858d94011566f7d53f92feb54aff9ee3785db1": { + "address": "0x5a858d94011566f7d53f92feb54aff9ee3785db1", + "symbol": "FEFE", + "decimals": 9, + "name": "Fefe", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x5a858d94011566f7d53f92feb54aff9ee3785db1.png", + "aggregators": [ + "CoinMarketCap", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x1776b223ff636d0d76adf2290821f176421dd889": { + "address": "0x1776b223ff636d0d76adf2290821f176421dd889", + "symbol": "AMERICA", + "decimals": 9, + "name": "America1776", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x1776b223ff636d0d76adf2290821f176421dd889.png", + "aggregators": [ + "CoinMarketCap", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x9afc975edb8a0b57f066e8e0a72a5e2adbdcb605": { + "address": "0x9afc975edb8a0b57f066e8e0a72a5e2adbdcb605", + "symbol": "FSN", + "decimals": 18, + "name": "FUSION", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x9afc975edb8a0b57f066e8e0a72a5e2adbdcb605.png", + "aggregators": [ + "CoinMarketCap", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x01eeffcd9a10266ed00946121df097eed173b43d": { + "address": "0x01eeffcd9a10266ed00946121df097eed173b43d", + "symbol": "XD", + "decimals": 18, + "name": "XDoge", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x01eeffcd9a10266ed00946121df097eed173b43d.png", + "aggregators": [ + "CoinMarketCap", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x53206bf5b6b8872c1bb0b3c533e06fde2f7e22e4": { + "address": "0x53206bf5b6b8872c1bb0b3c533e06fde2f7e22e4", + "symbol": "BLEPE", + "decimals": 18, + "name": "Blepe", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x53206bf5b6b8872c1bb0b3c533e06fde2f7e22e4.png", + "aggregators": [ + "CoinMarketCap", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x6d68015171eaa7af9a5a0a103664cf1e506ff699": { + "address": "0x6d68015171eaa7af9a5a0a103664cf1e506ff699", + "symbol": "TUZKI", + "decimals": 9, + "name": "Tuzki", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x6d68015171eaa7af9a5a0a103664cf1e506ff699.png", + "aggregators": [ + "CoinMarketCap", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x8eedefe828a0f16c8fc80e46a87bc0f1de2d960c": { + "address": "0x8eedefe828a0f16c8fc80e46a87bc0f1de2d960c", + "symbol": "DGMV", + "decimals": 18, + "name": "DigiMetaverse", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x8eedefe828a0f16c8fc80e46a87bc0f1de2d960c.png", + "aggregators": [ + "CoinMarketCap", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0xa44136dc2e7a1543abbbf1c2a97e57c8d885e0be": { + "address": "0xa44136dc2e7a1543abbbf1c2a97e57c8d885e0be", + "symbol": "PFROG", + "decimals": 9, + "name": "Peace Frog", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xa44136dc2e7a1543abbbf1c2a97e57c8d885e0be.png", + "aggregators": [ + "CoinMarketCap", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x6942016b8de9d18a5831eeda915e48b27cc8e23d": { + "address": "0x6942016b8de9d18a5831eeda915e48b27cc8e23d", + "symbol": "PICKLE", + "decimals": 9, + "name": "Pickle", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x6942016b8de9d18a5831eeda915e48b27cc8e23d.png", + "aggregators": [ + "CoinMarketCap", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x8808434a831efea81170a56a9ddc57cc9e6de1d8": { + "address": "0x8808434a831efea81170a56a9ddc57cc9e6de1d8", + "symbol": "BORK", + "decimals": 18, + "name": "Bork on Ethereum", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x8808434a831efea81170a56a9ddc57cc9e6de1d8.png", + "aggregators": [ + "CoinMarketCap", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0xa0385e7283c83e2871e9af49eec0966088421ddd": { + "address": "0xa0385e7283c83e2871e9af49eec0966088421ddd", + "symbol": "APE", + "decimals": 18, + "name": "Ape", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xa0385e7283c83e2871e9af49eec0966088421ddd.png", + "aggregators": [ + "CoinMarketCap", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0xc5d27f27f08d1fd1e3ebbaa50b3442e6c0d50439": { + "address": "0xc5d27f27f08d1fd1e3ebbaa50b3442e6c0d50439", + "symbol": "APP", + "decimals": 18, + "name": "RWAX", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xc5d27f27f08d1fd1e3ebbaa50b3442e6c0d50439.png", + "aggregators": [ + "CoinMarketCap", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x25cbb21a9da7c3c63bb77ccca5b2e2482aedb710": { + "address": "0x25cbb21a9da7c3c63bb77ccca5b2e2482aedb710", + "symbol": "HOBA", + "decimals": 9, + "name": "Honey Badger", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x25cbb21a9da7c3c63bb77ccca5b2e2482aedb710.png", + "aggregators": [ + "CoinMarketCap", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x3300b02efa180c99a2f61f4731665b51e4e254c4": { + "address": "0x3300b02efa180c99a2f61f4731665b51e4e254c4", + "symbol": "HMKR", + "decimals": 9, + "name": "Hitmakr", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x3300b02efa180c99a2f61f4731665b51e4e254c4.png", + "aggregators": [ + "CoinMarketCap", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0xcc54ac31164b5b3c39db4eef26d89275c468ec9d": { + "address": "0xcc54ac31164b5b3c39db4eef26d89275c468ec9d", + "symbol": "FUELX", + "decimals": 18, + "name": "Fuel", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xcc54ac31164b5b3c39db4eef26d89275c468ec9d.png", + "aggregators": [ + "CoinMarketCap", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0xd4419c2d3daa986dc30444fa333a846be44fd1eb": { + "address": "0xd4419c2d3daa986dc30444fa333a846be44fd1eb", + "symbol": "ZIK", + "decimals": 18, + "name": "ZIK coin", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xd4419c2d3daa986dc30444fa333a846be44fd1eb.png", + "aggregators": [ + "CoinMarketCap", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x6439221d2b06a4cdf38f52a55294ddc28e1bed08": { + "address": "0x6439221d2b06a4cdf38f52a55294ddc28e1bed08", + "symbol": "GNOMY", + "decimals": 18, + "name": "Gnomy", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x6439221d2b06a4cdf38f52a55294ddc28e1bed08.png", + "aggregators": [ + "CoinMarketCap", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0xfd4f2caf941b6d737382dce420b368de3fc7f2d4": { + "address": "0xfd4f2caf941b6d737382dce420b368de3fc7f2d4", + "symbol": "PATEX", + "decimals": 18, + "name": "Patex", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xfd4f2caf941b6d737382dce420b368de3fc7f2d4.png", + "aggregators": [ + "CoinMarketCap", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x508df5aa4746be37b5b6a69684dfd8bdc322219d": { + "address": "0x508df5aa4746be37b5b6a69684dfd8bdc322219d", + "symbol": "CRF", + "decimals": 18, + "name": "Crafting Finance", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x508df5aa4746be37b5b6a69684dfd8bdc322219d.png", + "aggregators": [ + "CoinMarketCap", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x5c559f3ee9a81da83e069c0093471cb05d84052a": { + "address": "0x5c559f3ee9a81da83e069c0093471cb05d84052a", + "symbol": "BABYPEPE", + "decimals": 18, + "name": "BabyPepe", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x5c559f3ee9a81da83e069c0093471cb05d84052a.png", + "aggregators": [ + "CoinMarketCap", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x9eec1a4814323a7396c938bc86aec46b97f1bd82": { + "address": "0x9eec1a4814323a7396c938bc86aec46b97f1bd82", + "symbol": "TOKU", + "decimals": 18, + "name": "Toku", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x9eec1a4814323a7396c938bc86aec46b97f1bd82.png", + "aggregators": [ + "CoinMarketCap", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x1a963df363d01eebb2816b366d61c917f20e1ebe": { + "address": "0x1a963df363d01eebb2816b366d61c917f20e1ebe", + "symbol": "MEMEME", + "decimals": 18, + "name": "MEMEME", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x1a963df363d01eebb2816b366d61c917f20e1ebe.png", + "aggregators": [ + "CoinMarketCap", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x590246bfbf89b113d8ac36faeea12b7589f7fe5b": { + "address": "0x590246bfbf89b113d8ac36faeea12b7589f7fe5b", + "symbol": "FLAPPY", + "decimals": 9, + "name": "Flappy", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x590246bfbf89b113d8ac36faeea12b7589f7fe5b.png", + "aggregators": [ + "CoinMarketCap", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x85f7cfe910393fb5593c65230622aa597e4223f1": { + "address": "0x85f7cfe910393fb5593c65230622aa597e4223f1", + "symbol": "NITEFEEDER", + "decimals": 9, + "name": "Nitefeeder", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x85f7cfe910393fb5593c65230622aa597e4223f1.png", + "aggregators": [ + "CoinMarketCap", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x82a77710495a35549d2add797412b4a4497d33ef": { + "address": "0x82a77710495a35549d2add797412b4a4497d33ef", + "symbol": "DOGZ", + "decimals": 18, + "name": "Dogz", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x82a77710495a35549d2add797412b4a4497d33ef.png", + "aggregators": [ + "CoinMarketCap", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x83249c6794bca5a77eb8c0af9f1a86e055459cea": { + "address": "0x83249c6794bca5a77eb8c0af9f1a86e055459cea", + "symbol": "GIGA", + "decimals": 9, + "name": "GigaSwap", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x83249c6794bca5a77eb8c0af9f1a86e055459cea.png", + "aggregators": [ + "CoinMarketCap", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x426a688ee72811773eb64f5717a32981b56f10c1": { + "address": "0x426a688ee72811773eb64f5717a32981b56f10c1", + "symbol": "AMC", + "decimals": 18, + "name": "AMC", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x426a688ee72811773eb64f5717a32981b56f10c1.png", + "aggregators": [ + "CoinMarketCap", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x07ddacf367f0d40bd68b4b80b4709a37bdc9f847": { + "address": "0x07ddacf367f0d40bd68b4b80b4709a37bdc9f847", + "symbol": "MOJO", + "decimals": 18, + "name": "Mojo", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x07ddacf367f0d40bd68b4b80b4709a37bdc9f847.png", + "aggregators": [ + "CoinMarketCap", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0xc328a59e7321747aebbc49fd28d1b32c1af8d3b2": { + "address": "0xc328a59e7321747aebbc49fd28d1b32c1af8d3b2", + "symbol": "PHIL", + "decimals": 18, + "name": "Phil", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xc328a59e7321747aebbc49fd28d1b32c1af8d3b2.png", + "aggregators": [ + "CoinMarketCap", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x5efcea234f7547de4569aad1215fa5d2adaced38": { + "address": "0x5efcea234f7547de4569aad1215fa5d2adaced38", + "symbol": "HONK", + "decimals": 18, + "name": "Clown Pepe", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x5efcea234f7547de4569aad1215fa5d2adaced38.png", + "aggregators": [ + "CoinMarketCap", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x724313985dcb55d432d3888ddc0b9e3d3859e86d": { + "address": "0x724313985dcb55d432d3888ddc0b9e3d3859e86d", + "symbol": "BRUNE", + "decimals": 18, + "name": "BitRunes", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x724313985dcb55d432d3888ddc0b9e3d3859e86d.png", + "aggregators": [ + "CoinMarketCap", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x69ee720c120ec7c9c52a625c04414459b3185f23": { + "address": "0x69ee720c120ec7c9c52a625c04414459b3185f23", + "symbol": "PEEZY", + "decimals": 18, + "name": "Young Peezy", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x69ee720c120ec7c9c52a625c04414459b3185f23.png", + "aggregators": [ + "CoinMarketCap", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x00282fd551d03dc033256c4bf119532e8c735d8a": { + "address": "0x00282fd551d03dc033256c4bf119532e8c735d8a", + "symbol": "BIAO", + "decimals": 2, + "name": "Biaocoin", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x00282fd551d03dc033256c4bf119532e8c735d8a.png", + "aggregators": [ + "CoinMarketCap", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x70fd93fb088150e203d2243b9bd3190276f80c70": { + "address": "0x70fd93fb088150e203d2243b9bd3190276f80c70", + "symbol": "BIRDDOG", + "decimals": 9, + "name": "Birddog", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x70fd93fb088150e203d2243b9bd3190276f80c70.png", + "aggregators": [ + "CoinMarketCap", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x910812c44ed2a3b611e4b051d9d83a88d652e2dd": { + "address": "0x910812c44ed2a3b611e4b051d9d83a88d652e2dd", + "symbol": "PLEDGE", + "decimals": 18, + "name": "Pledge", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x910812c44ed2a3b611e4b051d9d83a88d652e2dd.png", + "aggregators": [ + "CoinGecko", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0xbd32bec7c76d28aa054fc0c907d601b9263e22c7": { + "address": "0xbd32bec7c76d28aa054fc0c907d601b9263e22c7", + "symbol": "PE", + "decimals": 18, + "name": "PE", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xbd32bec7c76d28aa054fc0c907d601b9263e22c7.png", + "aggregators": [ + "CoinMarketCap", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0xaaf449bf8a33a32575c31ba8cbb90612dd95acfa": { + "address": "0xaaf449bf8a33a32575c31ba8cbb90612dd95acfa", + "symbol": "MBD", + "decimals": 18, + "name": "MBD Financials", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xaaf449bf8a33a32575c31ba8cbb90612dd95acfa.png", + "aggregators": [ + "CoinMarketCap", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x0c2e08e459fc43ddd1e2718c122f566473f59665": { + "address": "0x0c2e08e459fc43ddd1e2718c122f566473f59665", + "symbol": "BURGER", + "decimals": 9, + "name": "Crypto Burger", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x0c2e08e459fc43ddd1e2718c122f566473f59665.png", + "aggregators": [ + "CoinMarketCap", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x09d92c109b475dd513292c76544b4e250da13faa": { + "address": "0x09d92c109b475dd513292c76544b4e250da13faa", + "symbol": "DOGGY", + "decimals": 18, + "name": "DOGGY COIN", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x09d92c109b475dd513292c76544b4e250da13faa.png", + "aggregators": [ + "CoinMarketCap", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0xc76d53f988820fe70e01eccb0248b312c2f1c7ca": { + "address": "0xc76d53f988820fe70e01eccb0248b312c2f1c7ca", + "symbol": "INU", + "decimals": 18, + "name": "Inu Token", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xc76d53f988820fe70e01eccb0248b312c2f1c7ca.png", + "aggregators": [ + "CoinMarketCap", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0xc77336fdd91e22c737b0f5ec33f4c429caa1d13b": { + "address": "0xc77336fdd91e22c737b0f5ec33f4c429caa1d13b", + "symbol": "BALTO", + "decimals": 9, + "name": "BALTO", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xc77336fdd91e22c737b0f5ec33f4c429caa1d13b.png", + "aggregators": [ + "CoinMarketCap", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0xaf05ce8a2cef336006e933c02fc89887f5b3c726": { + "address": "0xaf05ce8a2cef336006e933c02fc89887f5b3c726", + "symbol": "LMI", + "decimals": 18, + "name": "Lockheed Martin Inu", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xaf05ce8a2cef336006e933c02fc89887f5b3c726.png", + "aggregators": [ + "CoinMarketCap", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x490bd60a5d3e1207fba9b699017561434cc8c675": { + "address": "0x490bd60a5d3e1207fba9b699017561434cc8c675", + "symbol": "BUGS", + "decimals": 18, + "name": "Bugs Bunny", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x490bd60a5d3e1207fba9b699017561434cc8c675.png", + "aggregators": [ + "CoinMarketCap", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x85d19fb57ca7da715695fcf347ca2169144523a7": { + "address": "0x85d19fb57ca7da715695fcf347ca2169144523a7", + "symbol": "CONAN", + "decimals": 9, + "name": "Conan", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x85d19fb57ca7da715695fcf347ca2169144523a7.png", + "aggregators": [ + "CoinMarketCap", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x067def80d66fb69c276e53b641f37ff7525162f6": { + "address": "0x067def80d66fb69c276e53b641f37ff7525162f6", + "symbol": "OGPU", + "decimals": 18, + "name": "OPEN GPU", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x067def80d66fb69c276e53b641f37ff7525162f6.png", + "aggregators": [ + "CoinMarketCap", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x616254b3c79639f89e756495ac687735b27b5e17": { + "address": "0x616254b3c79639f89e756495ac687735b27b5e17", + "symbol": "RINO", + "decimals": 18, + "name": "Rino", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x616254b3c79639f89e756495ac687735b27b5e17.png", + "aggregators": [ + "CoinMarketCap", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0xad86b91a1d1db15a4cd34d0634bbd4ecacb5b61a": { + "address": "0xad86b91a1d1db15a4cd34d0634bbd4ecacb5b61a", + "symbol": "DARAM", + "decimals": 18, + "name": "Daram", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xad86b91a1d1db15a4cd34d0634bbd4ecacb5b61a.png", + "aggregators": [ + "CoinMarketCap", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x73e0c0d45e048d25fc26fa3159b0aa04bfa4db98": { + "address": "0x73e0c0d45e048d25fc26fa3159b0aa04bfa4db98", + "symbol": "KBTC", + "decimals": 8, + "name": "Kraken Wrapped BTC", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x73e0c0d45e048d25fc26fa3159b0aa04bfa4db98.png", + "aggregators": [ + "CoinMarketCap", + "1inch", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x88417754ff7062c10f4e3a4ab7e9f9d9cbda6023": { + "address": "0x88417754ff7062c10f4e3a4ab7e9f9d9cbda6023", + "symbol": "PEEPA", + "decimals": 18, + "name": "Peepa", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x88417754ff7062c10f4e3a4ab7e9f9d9cbda6023.png", + "aggregators": [ + "CoinMarketCap", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x54012cdf4119de84218f7eb90eeb87e25ae6ebd7": { + "address": "0x54012cdf4119de84218f7eb90eeb87e25ae6ebd7", + "symbol": "LUFFY", + "decimals": 9, + "name": "Luffy", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x54012cdf4119de84218f7eb90eeb87e25ae6ebd7.png", + "aggregators": [ + "CoinMarketCap", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x2541a36be4cd39286ed61a3e6afc2307602489d6": { + "address": "0x2541a36be4cd39286ed61a3e6afc2307602489d6", + "symbol": "DOGE20", + "decimals": 18, + "name": "Dogecoin20", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x2541a36be4cd39286ed61a3e6afc2307602489d6.png", + "aggregators": [ + "CoinMarketCap", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x42069f39c71816cea208451598425b492dd2b380": { + "address": "0x42069f39c71816cea208451598425b492dd2b380", + "symbol": "GOOMPY", + "decimals": 9, + "name": "Goompy", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x42069f39c71816cea208451598425b492dd2b380.png", + "aggregators": [ + "CoinMarketCap", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x2282c726f54c93193e6b8e5bf1b82303dc11d36e": { + "address": "0x2282c726f54c93193e6b8e5bf1b82303dc11d36e", + "symbol": "DAY", + "decimals": 6, + "name": "Dayhub", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x2282c726f54c93193e6b8e5bf1b82303dc11d36e.png", + "aggregators": [ + "CoinMarketCap", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x396c95abe154b3b2ed204cf45c8726aa7ad47a4d": { + "address": "0x396c95abe154b3b2ed204cf45c8726aa7ad47a4d", + "symbol": "GDT", + "decimals": 18, + "name": "Gradient Protocol", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x396c95abe154b3b2ed204cf45c8726aa7ad47a4d.png", + "aggregators": [ + "CoinMarketCap", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x7a65cb87f596caf31a4932f074c59c0592be77d7": { + "address": "0x7a65cb87f596caf31a4932f074c59c0592be77d7", + "symbol": "ZYPTO", + "decimals": 18, + "name": "Zypto Token", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x7a65cb87f596caf31a4932f074c59c0592be77d7.png", + "aggregators": [ + "CoinMarketCap", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x5888641e3e6cbea6d84ba81edb217bd691d3be38": { + "address": "0x5888641e3e6cbea6d84ba81edb217bd691d3be38", + "symbol": "BOBO", + "decimals": 9, + "name": "Bobo", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x5888641e3e6cbea6d84ba81edb217bd691d3be38.png", + "aggregators": [ + "CoinMarketCap", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x26e550ac11b26f78a04489d5f20f24e3559f7dd9": { + "address": "0x26e550ac11b26f78a04489d5f20f24e3559f7dd9", + "symbol": "KEKIUS", + "decimals": 9, + "name": "Kekius Maximus", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x26e550ac11b26f78a04489d5f20f24e3559f7dd9.png", + "aggregators": [ + "CoinGecko", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x70ef0df8b656403fc8c632c52661f19fc9934471": { + "address": "0x70ef0df8b656403fc8c632c52661f19fc9934471", + "symbol": "SKULL", + "decimals": 18, + "name": "Wolf Skull", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x70ef0df8b656403fc8c632c52661f19fc9934471.png", + "aggregators": [ + "CoinMarketCap", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0xf4b7b9ab55a2eeb3bd6123b8f45b0abffd5089c7": { + "address": "0xf4b7b9ab55a2eeb3bd6123b8f45b0abffd5089c7", + "symbol": "SHIB", + "decimals": 9, + "name": "Strategic Hub for Innovation in Blockch", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xf4b7b9ab55a2eeb3bd6123b8f45b0abffd5089c7.png", + "aggregators": [ + "CoinMarketCap", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0xc01154b4ccb518232d6bbfc9b9e6c5068b766f82": { + "address": "0xc01154b4ccb518232d6bbfc9b9e6c5068b766f82", + "symbol": "NEX", + "decimals": 18, + "name": "NEXUS", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xc01154b4ccb518232d6bbfc9b9e6c5068b766f82.png", + "aggregators": [ + "CoinMarketCap", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x6c38f26eaee4e1bdf7d2b4d42467b7a8a6082f5a": { + "address": "0x6c38f26eaee4e1bdf7d2b4d42467b7a8a6082f5a", + "symbol": "SHIRO", + "decimals": 9, + "name": "Shiro Neko CTO", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x6c38f26eaee4e1bdf7d2b4d42467b7a8a6082f5a.png", + "aggregators": [ + "CoinGecko", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x90e3532cf06d567ef7e6385be532311f10c30096": { + "address": "0x90e3532cf06d567ef7e6385be532311f10c30096", + "symbol": "RSP", + "decimals": 18, + "name": "Reality Spiral", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x90e3532cf06d567ef7e6385be532311f10c30096.png", + "aggregators": [ + "CoinMarketCap", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x9a0df129e798438a8ad995368bd82baa7eee8913": { + "address": "0x9a0df129e798438a8ad995368bd82baa7eee8913", + "symbol": "BEEP", + "decimals": 18, + "name": "BEEP Coin", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x9a0df129e798438a8ad995368bd82baa7eee8913.png", + "aggregators": [ + "CoinMarketCap", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x252b9f56359901a0bde52d0675b1f1130d86f471": { + "address": "0x252b9f56359901a0bde52d0675b1f1130d86f471", + "symbol": "PANDO", + "decimals": 18, + "name": "Pando", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x252b9f56359901a0bde52d0675b1f1130d86f471.png", + "aggregators": [ + "CoinMarketCap", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0xd2b274cfbf9534f56b59ad0fb7e645e0354f4941": { + "address": "0xd2b274cfbf9534f56b59ad0fb7e645e0354f4941", + "symbol": "XDOGE", + "decimals": 8, + "name": "XDOGE", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xd2b274cfbf9534f56b59ad0fb7e645e0354f4941.png", + "aggregators": [ + "CoinMarketCap", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x6f2dec5da475333b0af4a3ffc9a33b0211a9a452": { + "address": "0x6f2dec5da475333b0af4a3ffc9a33b0211a9a452", + "symbol": "CT", + "decimals": 18, + "name": "CryptoTwitter", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x6f2dec5da475333b0af4a3ffc9a33b0211a9a452.png", + "aggregators": [ + "CoinMarketCap", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x7d3e4165fd7d8590fb2a415a550f7bdece5c4f52": { + "address": "0x7d3e4165fd7d8590fb2a415a550f7bdece5c4f52", + "symbol": "DNA", + "decimals": 18, + "name": "Muhdo Hub", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x7d3e4165fd7d8590fb2a415a550f7bdece5c4f52.png", + "aggregators": [ + "CoinMarketCap", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x99c6e435ec259a7e8d65e1955c9423db624ba54c": { + "address": "0x99c6e435ec259a7e8d65e1955c9423db624ba54c", + "symbol": "FMT", + "decimals": 18, + "name": "Finminity", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x99c6e435ec259a7e8d65e1955c9423db624ba54c.png", + "aggregators": [ + "CoinMarketCap", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x9727eaf447203be268e5d471b6503bf47a71ea72": { + "address": "0x9727eaf447203be268e5d471b6503bf47a71ea72", + "symbol": "ARKY", + "decimals": 9, + "name": "Arky", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x9727eaf447203be268e5d471b6503bf47a71ea72.png", + "aggregators": [ + "CoinMarketCap", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x9783b81438c24848f85848f8df31845097341771": { + "address": "0x9783b81438c24848f85848f8df31845097341771", + "symbol": "COLLAR", + "decimals": 18, + "name": "Dog Collar", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x9783b81438c24848f85848f8df31845097341771.png", + "aggregators": [ + "CoinMarketCap", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x420fbb6006fb251318414ffa530590c3d7618e33": { + "address": "0x420fbb6006fb251318414ffa530590c3d7618e33", + "symbol": "ICELAND", + "decimals": 9, + "name": "ICE LAND on ETH", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x420fbb6006fb251318414ffa530590c3d7618e33.png", + "aggregators": [ + "CoinMarketCap", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x2817cecf94465a9f7becf43d9b7c8025e88a4213": { + "address": "0x2817cecf94465a9f7becf43d9b7c8025e88a4213", + "symbol": "WX", + "decimals": 18, + "name": "Weave6", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x2817cecf94465a9f7becf43d9b7c8025e88a4213.png", + "aggregators": [ + "CoinMarketCap", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x6d57b2e05f26c26b549231c866bdd39779e4a488": { + "address": "0x6d57b2e05f26c26b549231c866bdd39779e4a488", + "symbol": "VNXAU", + "decimals": 18, + "name": "VNX Gold", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x6d57b2e05f26c26b549231c866bdd39779e4a488.png", + "aggregators": [ + "CoinMarketCap", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0xc06caead870d3a8af2504637b6c5b7248bed6116": { + "address": "0xc06caead870d3a8af2504637b6c5b7248bed6116", + "symbol": "BUSINESS", + "decimals": 8, + "name": "Business Coin", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xc06caead870d3a8af2504637b6c5b7248bed6116.png", + "aggregators": [ + "CoinGecko", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0xc5190e7fec4d97a3a3b1ab42dfedac608e2d0793": { + "address": "0xc5190e7fec4d97a3a3b1ab42dfedac608e2d0793", + "symbol": "FXI", + "decimals": 18, + "name": "FX1Sports", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xc5190e7fec4d97a3a3b1ab42dfedac608e2d0793.png", + "aggregators": [ + "CoinMarketCap", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0xa6c0c097741d55ecd9a3a7def3a8253fd022ceb9": { + "address": "0xa6c0c097741d55ecd9a3a7def3a8253fd022ceb9", + "symbol": "AVA", + "decimals": 18, + "name": "AVA Travala", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xa6c0c097741d55ecd9a3a7def3a8253fd022ceb9.png", + "aggregators": [ + "CoinGecko", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0xf19308f923582a6f7c465e5ce7a9dc1bec6665b1": { + "address": "0xf19308f923582a6f7c465e5ce7a9dc1bec6665b1", + "symbol": "TITANX", + "decimals": 18, + "name": "TitanX", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xf19308f923582a6f7c465e5ce7a9dc1bec6665b1.png", + "aggregators": [ + "CoinMarketCap", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x17a79792fe6fe5c95dfe95fe3fcee3caf4fe4cb7": { + "address": "0x17a79792fe6fe5c95dfe95fe3fcee3caf4fe4cb7", + "symbol": "AAMMUSDT", + "decimals": 6, + "name": "Aave AMM USDT", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x17a79792fe6fe5c95dfe95fe3fcee3caf4fe4cb7.png", + "aggregators": [ + "CoinMarketCap", + "LiFi", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x083d41d6dd21ee938f0c055ca4fb12268df0efac": { + "address": "0x083d41d6dd21ee938f0c055ca4fb12268df0efac", + "symbol": "GOL", + "decimals": 4, + "name": "GogolCoin", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x083d41d6dd21ee938f0c055ca4fb12268df0efac.png", + "aggregators": [ + "Metamask", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x6096b8765eb48cd2193f840a977f3727e7800356": { + "address": "0x6096b8765eb48cd2193f840a977f3727e7800356", + "symbol": "CRAB", + "decimals": 18, + "name": "CRABBY", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x6096b8765eb48cd2193f840a977f3727e7800356.png", + "aggregators": [ + "CoinMarketCap", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x1a11ea9d61588d756d9f1014c3cf0d226aedd279": { + "address": "0x1a11ea9d61588d756d9f1014c3cf0d226aedd279", + "symbol": "MILEI", + "decimals": 18, + "name": "MILEI Token", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x1a11ea9d61588d756d9f1014c3cf0d226aedd279.png", + "aggregators": [ + "CoinMarketCap", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x1b54a6fa1360bd71a0f28f77a1d6fba215d498c3": { + "address": "0x1b54a6fa1360bd71a0f28f77a1d6fba215d498c3", + "symbol": "CASINU", + "decimals": 9, + "name": "Casinu Inu", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x1b54a6fa1360bd71a0f28f77a1d6fba215d498c3.png", + "aggregators": [ + "CoinMarketCap", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x21cd589a989615a9e901328d3c089bbca16d00b2": { + "address": "0x21cd589a989615a9e901328d3c089bbca16d00b2", + "symbol": "XMONEY", + "decimals": 9, + "name": "X Money", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x21cd589a989615a9e901328d3c089bbca16d00b2.png", + "aggregators": [ + "CoinMarketCap", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0xd8dd38ca016f3e0b3bc545d33cce72af274ce075": { + "address": "0xd8dd38ca016f3e0b3bc545d33cce72af274ce075", + "symbol": "SWING", + "decimals": 18, + "name": "Swing xyz", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xd8dd38ca016f3e0b3bc545d33cce72af274ce075.png", + "aggregators": [ + "CoinMarketCap", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0xf70ce9ee486106882d3dc43ddbd84e0fa71ac2a5": { + "address": "0xf70ce9ee486106882d3dc43ddbd84e0fa71ac2a5", + "symbol": "DUCKER", + "decimals": 18, + "name": "Ducker", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xf70ce9ee486106882d3dc43ddbd84e0fa71ac2a5.png", + "aggregators": [ + "CoinMarketCap", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x2be056e595110b30ddd5eaf674bdac54615307d9": { + "address": "0x2be056e595110b30ddd5eaf674bdac54615307d9", + "symbol": "APUFF", + "decimals": 18, + "name": "Airpuff", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x2be056e595110b30ddd5eaf674bdac54615307d9.png", + "aggregators": [ + "CoinGecko", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x425087bf4969f45818c225ae30f8560ce518582e": { + "address": "0x425087bf4969f45818c225ae30f8560ce518582e", + "symbol": "LFDOG", + "decimals": 18, + "name": "lifedog", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x425087bf4969f45818c225ae30f8560ce518582e.png", + "aggregators": [ + "CoinMarketCap", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x9db0fb0aebe6a925b7838d16e3993a3976a64aab": { + "address": "0x9db0fb0aebe6a925b7838d16e3993a3976a64aab", + "symbol": "BAM", + "decimals": 18, + "name": "Bambi", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x9db0fb0aebe6a925b7838d16e3993a3976a64aab.png", + "aggregators": [ + "CoinMarketCap", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x5f5166c4fdb9055efb24a7e75cc1a21ca8ca61a3": { + "address": "0x5f5166c4fdb9055efb24a7e75cc1a21ca8ca61a3", + "symbol": "X", + "decimals": 9, + "name": "AI X", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x5f5166c4fdb9055efb24a7e75cc1a21ca8ca61a3.png", + "aggregators": [ + "CoinMarketCap", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x1f19d846d99a0e75581913b64510fe0e18bbc31f": { + "address": "0x1f19d846d99a0e75581913b64510fe0e18bbc31f", + "symbol": "FGM", + "decimals": 18, + "name": "Feels Good Man", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x1f19d846d99a0e75581913b64510fe0e18bbc31f.png", + "aggregators": [ + "CoinMarketCap", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x9194337c06405623c0f374e63fa1cc94e2788c58": { + "address": "0x9194337c06405623c0f374e63fa1cc94e2788c58", + "symbol": "CYBONK", + "decimals": 18, + "name": "CYBONK", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x9194337c06405623c0f374e63fa1cc94e2788c58.png", + "aggregators": [ + "CoinMarketCap", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x285db79fa7e0e89e822786f48a7c98c6c1dc1c7d": { + "address": "0x285db79fa7e0e89e822786f48a7c98c6c1dc1c7d", + "symbol": "MIC", + "decimals": 18, + "name": "Magic Internet Cash", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x285db79fa7e0e89e822786f48a7c98c6c1dc1c7d.png", + "aggregators": [ + "CoinMarketCap", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x0cba60ca5ef4d42f92a5070a8fedd13be93e2861": { + "address": "0x0cba60ca5ef4d42f92a5070a8fedd13be93e2861", + "symbol": "THE", + "decimals": 18, + "name": "The Protocol", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x0cba60ca5ef4d42f92a5070a8fedd13be93e2861.png", + "aggregators": [ + "CoinMarketCap", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x6afcff9189e8ed3fcc1cffa184feb1276f6a82a5": { + "address": "0x6afcff9189e8ed3fcc1cffa184feb1276f6a82a5", + "symbol": "PETS", + "decimals": 18, + "name": "PolkaPet World", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x6afcff9189e8ed3fcc1cffa184feb1276f6a82a5.png", + "aggregators": [ + "CoinMarketCap", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x60f67e1015b3f069dd4358a78c38f83fe3a667a9": { + "address": "0x60f67e1015b3f069dd4358a78c38f83fe3a667a9", + "symbol": "ROUTE", + "decimals": 18, + "name": "Router Protocol", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x60f67e1015b3f069dd4358a78c38f83fe3a667a9.png", + "aggregators": [ + "CoinGecko", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x6b985d38b1fc891bb57bff59573626b1896d4aa1": { + "address": "0x6b985d38b1fc891bb57bff59573626b1896d4aa1", + "symbol": "FIDO", + "decimals": 9, + "name": "Fido", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x6b985d38b1fc891bb57bff59573626b1896d4aa1.png", + "aggregators": [ + "CoinMarketCap", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x419777d3e39aa9b00405724eace5ea57620c9062": { + "address": "0x419777d3e39aa9b00405724eace5ea57620c9062", + "symbol": "PAW", + "decimals": 18, + "name": "PAW", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x419777d3e39aa9b00405724eace5ea57620c9062.png", + "aggregators": [ + "CoinMarketCap", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0xb9d09bc374577dac1ab853de412a903408204ea8": { + "address": "0xb9d09bc374577dac1ab853de412a903408204ea8", + "symbol": "SHEI", + "decimals": 18, + "name": "SheiShei", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xb9d09bc374577dac1ab853de412a903408204ea8.png", + "aggregators": [ + "CoinMarketCap", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x973e00eee6d180b5a0eb08ce3047ac4ea7a45cd5": { + "address": "0x973e00eee6d180b5a0eb08ce3047ac4ea7a45cd5", + "symbol": "TOTO", + "decimals": 9, + "name": "TOTO", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x973e00eee6d180b5a0eb08ce3047ac4ea7a45cd5.png", + "aggregators": [ + "CoinMarketCap", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x8f1cece048cade6b8a05dfa2f90ee4025f4f2662": { + "address": "0x8f1cece048cade6b8a05dfa2f90ee4025f4f2662", + "symbol": "GFOX", + "decimals": 18, + "name": "Galaxy Fox", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x8f1cece048cade6b8a05dfa2f90ee4025f4f2662.png", + "aggregators": [ + "CoinMarketCap", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0xe19f85c920b572ca48942315b06d6cac86585c87": { + "address": "0xe19f85c920b572ca48942315b06d6cac86585c87", + "symbol": "PLEB", + "decimals": 18, + "name": "PLEB Token", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xe19f85c920b572ca48942315b06d6cac86585c87.png", + "aggregators": [ + "CoinMarketCap", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x6f3277ad0782a7da3eb676b85a8346a100bf9c1c": { + "address": "0x6f3277ad0782a7da3eb676b85a8346a100bf9c1c", + "symbol": "DOGPAD", + "decimals": 18, + "name": "DogPad Finance", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x6f3277ad0782a7da3eb676b85a8346a100bf9c1c.png", + "aggregators": [ + "CoinMarketCap", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0xc64500dd7b0f1794807e67802f8abbf5f8ffb054": { + "address": "0xc64500dd7b0f1794807e67802f8abbf5f8ffb054", + "symbol": "LOCUS", + "decimals": 18, + "name": "Locus Chain", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xc64500dd7b0f1794807e67802f8abbf5f8ffb054.png", + "aggregators": [ + "CoinMarketCap", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x5d942f9872863645bcb181aba66c7d9646a91378": { + "address": "0x5d942f9872863645bcb181aba66c7d9646a91378", + "symbol": "ASI", + "decimals": 18, + "name": "AltSignals", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x5d942f9872863645bcb181aba66c7d9646a91378.png", + "aggregators": [ + "CoinMarketCap", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x8c130499d33097d4d000d3332e1672f75b431543": { + "address": "0x8c130499d33097d4d000d3332e1672f75b431543", + "symbol": "HOPPY", + "decimals": 8, + "name": "Hoppy Token", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x8c130499d33097d4d000d3332e1672f75b431543.png", + "aggregators": [ + "CoinMarketCap", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x60f5672a271c7e39e787427a18353ba59a4a3578": { + "address": "0x60f5672a271c7e39e787427a18353ba59a4a3578", + "symbol": "PIKA", + "decimals": 18, + "name": "Pika", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x60f5672a271c7e39e787427a18353ba59a4a3578.png", + "aggregators": [ + "CoinMarketCap", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0xdc7ac5d5d4a9c3b5d8f3183058a92776dc12f4f3": { + "address": "0xdc7ac5d5d4a9c3b5d8f3183058a92776dc12f4f3", + "symbol": "MONKAS", + "decimals": 9, + "name": "Monkas", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xdc7ac5d5d4a9c3b5d8f3183058a92776dc12f4f3.png", + "aggregators": [ + "CoinMarketCap", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0xaee5913ffd19dbca4fd1ef6f3925ed0414407d37": { + "address": "0xaee5913ffd19dbca4fd1ef6f3925ed0414407d37", + "symbol": "YLAY", + "decimals": 18, + "name": "Yelay", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xaee5913ffd19dbca4fd1ef6f3925ed0414407d37.png", + "aggregators": [ + "CoinMarketCap", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x2b81945875f892aff04af0a298d35fb2cf848c7b": { + "address": "0x2b81945875f892aff04af0a298d35fb2cf848c7b", + "symbol": "WEB", + "decimals": 9, + "name": "Web", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x2b81945875f892aff04af0a298d35fb2cf848c7b.png", + "aggregators": [ + "CoinMarketCap", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0xbeef698bd78139829e540622d5863e723e8715f1": { + "address": "0xbeef698bd78139829e540622d5863e723e8715f1", + "symbol": "BEEF", + "decimals": 9, + "name": "PepeBull", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xbeef698bd78139829e540622d5863e723e8715f1.png", + "aggregators": [ + "CoinMarketCap", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0xbadff0ef41d2a68f22de21eabca8a59aaf495cf0": { + "address": "0xbadff0ef41d2a68f22de21eabca8a59aaf495cf0", + "symbol": "KABOSU", + "decimals": 18, + "name": "Kabosu Inu", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xbadff0ef41d2a68f22de21eabca8a59aaf495cf0.png", + "aggregators": [ + "CoinMarketCap", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x6d614686550b9e1c1df4b2cd8f91c9d4df66c810": { + "address": "0x6d614686550b9e1c1df4b2cd8f91c9d4df66c810", + "symbol": "SKEB", + "decimals": 18, + "name": "Skeb", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x6d614686550b9e1c1df4b2cd8f91c9d4df66c810.png", + "aggregators": [ + "CoinMarketCap", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0xf03d5fc6e08de6ad886fca34abf9a59ef633b78a": { + "address": "0xf03d5fc6e08de6ad886fca34abf9a59ef633b78a", + "symbol": "CAPY", + "decimals": 18, + "name": "Capybara Token", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xf03d5fc6e08de6ad886fca34abf9a59ef633b78a.png", + "aggregators": [ + "CoinGecko", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x3e362038fd3d08887d498944d489af7909619a9b": { + "address": "0x3e362038fd3d08887d498944d489af7909619a9b", + "symbol": "CHOW", + "decimals": 18, + "name": "CHOW CHOW", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x3e362038fd3d08887d498944d489af7909619a9b.png", + "aggregators": [ + "CoinMarketCap", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x4da08a1bff50be96bded5c7019227164b49c2bfc": { + "address": "0x4da08a1bff50be96bded5c7019227164b49c2bfc", + "symbol": "MONONOKE-INU", + "decimals": 9, + "name": "Mononoke Inu", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x4da08a1bff50be96bded5c7019227164b49c2bfc.png", + "aggregators": [ + "CoinMarketCap", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x64c5cba9a1bfbd2a5faf601d91beff2dcac2c974": { + "address": "0x64c5cba9a1bfbd2a5faf601d91beff2dcac2c974", + "symbol": "MYSTERY", + "decimals": 18, + "name": "Mystery", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x64c5cba9a1bfbd2a5faf601d91beff2dcac2c974.png", + "aggregators": [ + "CoinMarketCap", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0xf56842af3b56fd72d17cb103f92d027bba912e89": { + "address": "0xf56842af3b56fd72d17cb103f92d027bba912e89", + "symbol": "BAMBOO", + "decimals": 18, + "name": "Bamboo DeFi", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xf56842af3b56fd72d17cb103f92d027bba912e89.png", + "aggregators": [ + "CoinMarketCap", + "LiFi", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x68b429161ec09a6c1d65ba70727ab1faa5bc4026": { + "address": "0x68b429161ec09a6c1d65ba70727ab1faa5bc4026", + "symbol": "ODOGE", + "decimals": 18, + "name": "Ordinal Doge", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x68b429161ec09a6c1d65ba70727ab1faa5bc4026.png", + "aggregators": [ + "CoinMarketCap", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0xc91b523a59acc63a64f61fc7bbfb4bfc82dd25f2": { + "address": "0xc91b523a59acc63a64f61fc7bbfb4bfc82dd25f2", + "symbol": "AI", + "decimals": 18, + "name": "Multiverse", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xc91b523a59acc63a64f61fc7bbfb4bfc82dd25f2.png", + "aggregators": [ + "CoinMarketCap", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x375abb85c329753b1ba849a601438ae77eec9893": { + "address": "0x375abb85c329753b1ba849a601438ae77eec9893", + "symbol": "PDT", + "decimals": 18, + "name": "ParagonsDAO", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x375abb85c329753b1ba849a601438ae77eec9893.png", + "aggregators": [ + "CoinMarketCap", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x74d2d73b455540b037298c0e0925bc702aedbe4a": { + "address": "0x74d2d73b455540b037298c0e0925bc702aedbe4a", + "symbol": "MEOW", + "decimals": 9, + "name": "Schrodinger", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x74d2d73b455540b037298c0e0925bc702aedbe4a.png", + "aggregators": [ + "CoinMarketCap", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x2196b84eace74867b73fb003aff93c11fce1d47a": { + "address": "0x2196b84eace74867b73fb003aff93c11fce1d47a", + "symbol": "PSY", + "decimals": 18, + "name": "PsyDAO", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x2196b84eace74867b73fb003aff93c11fce1d47a.png", + "aggregators": [ + "CoinGecko", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x95ed629b028cf6aadd1408bb988c6d1daabe4767": { + "address": "0x95ed629b028cf6aadd1408bb988c6d1daabe4767", + "symbol": "DORKY", + "decimals": 9, + "name": "Dork Lord", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x95ed629b028cf6aadd1408bb988c6d1daabe4767.png", + "aggregators": [ + "CoinMarketCap", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0xf5cfbc74057c610c8ef151a439252680ac68c6dc": { + "address": "0xf5cfbc74057c610c8ef151a439252680ac68c6dc", + "symbol": "OCT", + "decimals": 18, + "name": "Octopus Network", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xf5cfbc74057c610c8ef151a439252680ac68c6dc.png", + "aggregators": [ + "CoinMarketCap", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x2cc7a972ebc1865b346085655f929abfa74cd4dc": { + "address": "0x2cc7a972ebc1865b346085655f929abfa74cd4dc", + "symbol": "SHIFU", + "decimals": 18, + "name": "Shifu", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x2cc7a972ebc1865b346085655f929abfa74cd4dc.png", + "aggregators": [ + "CoinMarketCap", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x21e5c85a5b1f38bddde68307af77e38f747cd530": { + "address": "0x21e5c85a5b1f38bddde68307af77e38f747cd530", + "symbol": "DOGS", + "decimals": 9, + "name": "Doggensnout Skeptic", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x21e5c85a5b1f38bddde68307af77e38f747cd530.png", + "aggregators": [ + "CoinMarketCap", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0xf2dfdbe1ea71bbdcb5a4662a16dbf5e487be3ebe": { + "address": "0xf2dfdbe1ea71bbdcb5a4662a16dbf5e487be3ebe", + "symbol": "CLOUD", + "decimals": 18, + "name": "DeCloud", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xf2dfdbe1ea71bbdcb5a4662a16dbf5e487be3ebe.png", + "aggregators": [ + "CoinMarketCap", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0xd5eb7e91ae88ea2550f9bfd04208399c95df4dc7": { + "address": "0xd5eb7e91ae88ea2550f9bfd04208399c95df4dc7", + "symbol": "DOGL", + "decimals": 18, + "name": "DogLibre", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xd5eb7e91ae88ea2550f9bfd04208399c95df4dc7.png", + "aggregators": [ + "CoinMarketCap", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x1b6e9c73bee68102d9dd4a2627f97bff4183ab0a": { + "address": "0x1b6e9c73bee68102d9dd4a2627f97bff4183ab0a", + "symbol": "OLE", + "decimals": 18, + "name": "OpenLeverage", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x1b6e9c73bee68102d9dd4a2627f97bff4183ab0a.png", + "aggregators": [ + "CoinMarketCap", + "LiFi", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0xaada04204e9e1099daf67cf3d5d137e84e41cf41": { + "address": "0xaada04204e9e1099daf67cf3d5d137e84e41cf41", + "symbol": "PEEPO", + "decimals": 18, + "name": "Peepo", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xaada04204e9e1099daf67cf3d5d137e84e41cf41.png", + "aggregators": [ + "CoinMarketCap", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0xc40629464351c37c1e1f47b3640ea2e7aec31ea5": { + "address": "0xc40629464351c37c1e1f47b3640ea2e7aec31ea5", + "symbol": "HTS", + "decimals": 18, + "name": "Home3", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xc40629464351c37c1e1f47b3640ea2e7aec31ea5.png", + "aggregators": [ + "CoinMarketCap", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x18bc66f0c15e27179dd8e2277c1c9c056df0a14d": { + "address": "0x18bc66f0c15e27179dd8e2277c1c9c056df0a14d", + "symbol": "DEEPAI", + "decimals": 18, + "name": "Deep Whales AI", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x18bc66f0c15e27179dd8e2277c1c9c056df0a14d.png", + "aggregators": [ + "CoinMarketCap", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x3850952491606a0e420eb929b1a2e1a450d013f1": { + "address": "0x3850952491606a0e420eb929b1a2e1a450d013f1", + "symbol": "PANO", + "decimals": 18, + "name": "PanoVerse", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x3850952491606a0e420eb929b1a2e1a450d013f1.png", + "aggregators": [ + "CoinMarketCap", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0xe5097d9baeafb89f9bcb78c9290d545db5f9e9cb": { + "address": "0xe5097d9baeafb89f9bcb78c9290d545db5f9e9cb", + "symbol": "HBOT", + "decimals": 18, + "name": "Hummingbot", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xe5097d9baeafb89f9bcb78c9290d545db5f9e9cb.png", + "aggregators": [ + "CoinMarketCap", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0xf8428a5a99cb452ea50b6ea70b052daa3df4934f": { + "address": "0xf8428a5a99cb452ea50b6ea70b052daa3df4934f", + "symbol": "ZERC", + "decimals": 18, + "name": "zkRace", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xf8428a5a99cb452ea50b6ea70b052daa3df4934f.png", + "aggregators": [ + "CoinMarketCap", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0xaa3acc21d184cef6f7fc3385fbdb79575231afba": { + "address": "0xaa3acc21d184cef6f7fc3385fbdb79575231afba", + "symbol": "HSAI", + "decimals": 18, + "name": "HealthSci AI", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xaa3acc21d184cef6f7fc3385fbdb79575231afba.png", + "aggregators": [ + "CoinMarketCap", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x71297312753ea7a2570a5a3278ed70d9a75f4f44": { + "address": "0x71297312753ea7a2570a5a3278ed70d9a75f4f44", + "symbol": "EBULL", + "decimals": 9, + "name": "ETHEREUM IS GOOD", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x71297312753ea7a2570a5a3278ed70d9a75f4f44.png", + "aggregators": [ + "CoinMarketCap", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x9ce115f0341ae5dabc8b477b74e83db2018a6f42": { + "address": "0x9ce115f0341ae5dabc8b477b74e83db2018a6f42", + "symbol": "HAIR", + "decimals": 18, + "name": "HairDAO", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x9ce115f0341ae5dabc8b477b74e83db2018a6f42.png", + "aggregators": [ + "CoinMarketCap", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x91f322e0d0bd688acd511a789431a2b672a28013": { + "address": "0x91f322e0d0bd688acd511a789431a2b672a28013", + "symbol": "FTP", + "decimals": 18, + "name": "Fisttrumppump", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x91f322e0d0bd688acd511a789431a2b672a28013.png", + "aggregators": [ + "CoinMarketCap", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x6fd46112c8ec76e7940dbfdc150774ee6eff27b2": { + "address": "0x6fd46112c8ec76e7940dbfdc150774ee6eff27b2", + "symbol": "RUNNER", + "decimals": 18, + "name": "Runner on ETH", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x6fd46112c8ec76e7940dbfdc150774ee6eff27b2.png", + "aggregators": [ + "CoinMarketCap", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x1fdb29ad49330b07ae5a87483f598aa6b292039e": { + "address": "0x1fdb29ad49330b07ae5a87483f598aa6b292039e", + "symbol": "LTD", + "decimals": 18, + "name": "Living the Dream", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x1fdb29ad49330b07ae5a87483f598aa6b292039e.png", + "aggregators": [ + "CoinMarketCap", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x0e9cc0f7e550bd43bd2af2214563c47699f96479": { + "address": "0x0e9cc0f7e550bd43bd2af2214563c47699f96479", + "symbol": "UNLEASH", + "decimals": 18, + "name": "UnleashClub", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x0e9cc0f7e550bd43bd2af2214563c47699f96479.png", + "aggregators": [ + "CoinMarketCap", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0xe56a10448c632e44605dcc5201c36122ff9d0250": { + "address": "0xe56a10448c632e44605dcc5201c36122ff9d0250", + "symbol": "HEDGE", + "decimals": 18, + "name": "HedgeFi", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xe56a10448c632e44605dcc5201c36122ff9d0250.png", + "aggregators": [ + "CoinMarketCap", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0xd3c5bdbc6de5ea3899a28f6cd419f29c09fa749f": { + "address": "0xd3c5bdbc6de5ea3899a28f6cd419f29c09fa749f", + "symbol": "SANIN", + "decimals": 9, + "name": "Sanin", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xd3c5bdbc6de5ea3899a28f6cd419f29c09fa749f.png", + "aggregators": [ + "CoinMarketCap", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0xe1bad922f84b198a08292fb600319300ae32471b": { + "address": "0xe1bad922f84b198a08292fb600319300ae32471b", + "symbol": "FCT", + "decimals": 18, + "name": "Firmachain", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xe1bad922f84b198a08292fb600319300ae32471b.png", + "aggregators": [ + "CoinMarketCap", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x85122dc2c0ac24e8aacaff4a4ccfcbdf36e80f60": { + "address": "0x85122dc2c0ac24e8aacaff4a4ccfcbdf36e80f60", + "symbol": "DOPE", + "decimals": 9, + "name": "Decentralization obligatory practicali", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x85122dc2c0ac24e8aacaff4a4ccfcbdf36e80f60.png", + "aggregators": [ + "CoinGecko", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0xf8ebf4849f1fa4faf0dff2106a173d3a6cb2eb3a": { + "address": "0xf8ebf4849f1fa4faf0dff2106a173d3a6cb2eb3a", + "symbol": "TROLL", + "decimals": 18, + "name": "Troll", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xf8ebf4849f1fa4faf0dff2106a173d3a6cb2eb3a.png", + "aggregators": [ + "CoinGecko", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0xe6705367880b4d5d1aeae948fd620f55ef7413e4": { + "address": "0xe6705367880b4d5d1aeae948fd620f55ef7413e4", + "symbol": "DOGEI", + "decimals": 9, + "name": "Dogei", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xe6705367880b4d5d1aeae948fd620f55ef7413e4.png", + "aggregators": [ + "CoinMarketCap", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x694200465963898a9fef06a5b778d9e65721685c": { + "address": "0x694200465963898a9fef06a5b778d9e65721685c", + "symbol": "GECKY", + "decimals": 9, + "name": "Gecky", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x694200465963898a9fef06a5b778d9e65721685c.png", + "aggregators": [ + "CoinMarketCap", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x5f4ab80c2c7755d565371236f090597921d18ee5": { + "address": "0x5f4ab80c2c7755d565371236f090597921d18ee5", + "symbol": "WAGMI", + "decimals": 9, + "name": "WAGMICOIN", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x5f4ab80c2c7755d565371236f090597921d18ee5.png", + "aggregators": [ + "CoinMarketCap", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x426fc8be95573230f6e6bc4af91873f0c67b21b4": { + "address": "0x426fc8be95573230f6e6bc4af91873f0c67b21b4", + "symbol": "BPLC", + "decimals": 18, + "name": "BlackPearl", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x426fc8be95573230f6e6bc4af91873f0c67b21b4.png", + "aggregators": [ + "CoinMarketCap", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x4bd70556ae3f8a6ec6c4080a0c327b24325438f3": { + "address": "0x4bd70556ae3f8a6ec6c4080a0c327b24325438f3", + "symbol": "HXRO", + "decimals": 18, + "name": "HXRO", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x4bd70556ae3f8a6ec6c4080a0c327b24325438f3.png", + "aggregators": [ + "CoinMarketCap", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0xa1f410f13b6007fca76833ee7eb58478d47bc5ef": { + "address": "0xa1f410f13b6007fca76833ee7eb58478d47bc5ef", + "symbol": "RJV", + "decimals": 6, + "name": "Rejuve AI", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xa1f410f13b6007fca76833ee7eb58478d47bc5ef.png", + "aggregators": [ + "CoinMarketCap", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0xbb3a8fd6ec4bf0fdc6cd2739b1e41192d12b1873": { + "address": "0xbb3a8fd6ec4bf0fdc6cd2739b1e41192d12b1873", + "symbol": "OBI", + "decimals": 18, + "name": "Orbofi AI", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xbb3a8fd6ec4bf0fdc6cd2739b1e41192d12b1873.png", + "aggregators": [ + "CoinMarketCap", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x8ae4bf2c33a8e667de34b54938b0ccd03eb8cc06": { + "address": "0x8ae4bf2c33a8e667de34b54938b0ccd03eb8cc06", + "symbol": "PTOY", + "decimals": 8, + "name": "Patientory", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x8ae4bf2c33a8e667de34b54938b0ccd03eb8cc06.png", + "aggregators": [ + "CoinMarketCap", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0xf4134146af2d511dd5ea8cdb1c4ac88c57d60404": { + "address": "0xf4134146af2d511dd5ea8cdb1c4ac88c57d60404", + "symbol": "SNC", + "decimals": 18, + "name": "SunContract", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xf4134146af2d511dd5ea8cdb1c4ac88c57d60404.png", + "aggregators": [ + "CoinMarketCap", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x8806926ab68eb5a7b909dcaf6fdbe5d93271d6e2": { + "address": "0x8806926ab68eb5a7b909dcaf6fdbe5d93271d6e2", + "symbol": "UQC", + "decimals": 18, + "name": "Uquid Coin", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x8806926ab68eb5a7b909dcaf6fdbe5d93271d6e2.png", + "aggregators": [ + "CoinMarketCap", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0xd1f2586790a5bd6da1e443441df53af6ec213d83": { + "address": "0xd1f2586790a5bd6da1e443441df53af6ec213d83", + "symbol": "LEDGER", + "decimals": 18, + "name": "Ledger AI", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xd1f2586790a5bd6da1e443441df53af6ec213d83.png", + "aggregators": [ + "CoinMarketCap", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0xf920e4f3fbef5b3ad0a25017514b769bdc4ac135": { + "address": "0xf920e4f3fbef5b3ad0a25017514b769bdc4ac135", + "symbol": "BAX", + "decimals": 18, + "name": "BABB", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xf920e4f3fbef5b3ad0a25017514b769bdc4ac135.png", + "aggregators": [ + "CoinMarketCap", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x1e053d89e08c24aa2ce5c5b4206744dc2d7bd8f5": { + "address": "0x1e053d89e08c24aa2ce5c5b4206744dc2d7bd8f5", + "symbol": "TT", + "decimals": 18, + "name": "ThunderCore", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x1e053d89e08c24aa2ce5c5b4206744dc2d7bd8f5.png", + "aggregators": [ + "CoinMarketCap", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0xbd356a39bff2cada8e9248532dd879147221cf76": { + "address": "0xbd356a39bff2cada8e9248532dd879147221cf76", + "symbol": "WOM", + "decimals": 18, + "name": "WOM Protocol", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xbd356a39bff2cada8e9248532dd879147221cf76.png", + "aggregators": [ + "CoinMarketCap", + "Rubic", + "Rango", + "Sonarwatch", + "SushiSwap" + ], + "occurrences": 5 + }, + "0xb1f871ae9462f1b2c6826e88a7827e76f86751d4": { + "address": "0xb1f871ae9462f1b2c6826e88a7827e76f86751d4", + "symbol": "GNY", + "decimals": 18, + "name": "GNY", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xb1f871ae9462f1b2c6826e88a7827e76f86751d4.png", + "aggregators": [ + "CoinMarketCap", + "1inch", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0xef8e456967122db4c3c160314bde8d2602ad6199": { + "address": "0xef8e456967122db4c3c160314bde8d2602ad6199", + "symbol": "WAGMI", + "decimals": 9, + "name": "Wagmi Coin", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xef8e456967122db4c3c160314bde8d2602ad6199.png", + "aggregators": [ + "CoinMarketCap", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0xcb86c6a22cb56b6cf40cafedb06ba0df188a416e": { + "address": "0xcb86c6a22cb56b6cf40cafedb06ba0df188a416e", + "symbol": "SURE", + "decimals": 18, + "name": "inSure DeFi", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xcb86c6a22cb56b6cf40cafedb06ba0df188a416e.png", + "aggregators": [ + "CoinMarketCap", + "LiFi", + "Socket", + "Rubic", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x8dce83eca4af45dbe618da1779f9aaca43201084": { + "address": "0x8dce83eca4af45dbe618da1779f9aaca43201084", + "symbol": "AIKEK", + "decimals": 18, + "name": "AlphaKEK AI", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x8dce83eca4af45dbe618da1779f9aaca43201084.png", + "aggregators": [ + "CoinMarketCap", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0xc9fe6e1c76210be83dc1b5b20ec7fd010b0b1d15": { + "address": "0xc9fe6e1c76210be83dc1b5b20ec7fd010b0b1d15", + "symbol": "FRIN", + "decimals": 18, + "name": "Fringe Finance", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xc9fe6e1c76210be83dc1b5b20ec7fd010b0b1d15.png", + "aggregators": [ + "CoinMarketCap", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0xc314b0e758d5ff74f63e307a86ebfe183c95767b": { + "address": "0xc314b0e758d5ff74f63e307a86ebfe183c95767b", + "symbol": "ADP", + "decimals": 18, + "name": "Adappter", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xc314b0e758d5ff74f63e307a86ebfe183c95767b.png", + "aggregators": [ + "CoinMarketCap", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x85f6eb2bd5a062f5f8560be93fb7147e16c81472": { + "address": "0x85f6eb2bd5a062f5f8560be93fb7147e16c81472", + "symbol": "FLY", + "decimals": 4, + "name": "Franklin", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x85f6eb2bd5a062f5f8560be93fb7147e16c81472.png", + "aggregators": [ + "CoinMarketCap", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x5cb3ce6d081fb00d5f6677d196f2d70010ea3f4a": { + "address": "0x5cb3ce6d081fb00d5f6677d196f2d70010ea3f4a", + "symbol": "BUSY", + "decimals": 18, + "name": "Busy", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x5cb3ce6d081fb00d5f6677d196f2d70010ea3f4a.png", + "aggregators": [ + "CoinMarketCap", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x20a62aca58526836165ca53fe67dd884288c8abf": { + "address": "0x20a62aca58526836165ca53fe67dd884288c8abf", + "symbol": "RNB", + "decimals": 18, + "name": "Rentible", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x20a62aca58526836165ca53fe67dd884288c8abf.png", + "aggregators": [ + "CoinMarketCap", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x93c9175e26f57d2888c7df8b470c9eea5c0b0a93": { + "address": "0x93c9175e26f57d2888c7df8b470c9eea5c0b0a93", + "symbol": "BCUBE", + "decimals": 18, + "name": "B cube ai", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x93c9175e26f57d2888c7df8b470c9eea5c0b0a93.png", + "aggregators": [ + "CoinMarketCap", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x470c8950c0c3aa4b09654bc73b004615119a44b5": { + "address": "0x470c8950c0c3aa4b09654bc73b004615119a44b5", + "symbol": "KIZUNA", + "decimals": 18, + "name": "Kizuna", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x470c8950c0c3aa4b09654bc73b004615119a44b5.png", + "aggregators": [ + "CoinMarketCap", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x4947b72fed037ade3365da050a9be5c063e605a7": { + "address": "0x4947b72fed037ade3365da050a9be5c063e605a7", + "symbol": "PEANUT", + "decimals": 9, + "name": "Peanut", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x4947b72fed037ade3365da050a9be5c063e605a7.png", + "aggregators": [ + "CoinGecko", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x131157c6760f78f7ddf877c0019eba175ba4b6f6": { + "address": "0x131157c6760f78f7ddf877c0019eba175ba4b6f6", + "symbol": "BIGSB", + "decimals": 18, + "name": "BigShortBets", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x131157c6760f78f7ddf877c0019eba175ba4b6f6.png", + "aggregators": [ + "CoinMarketCap", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x1a688d3d294ee7bcc1f59011de93d608dc21c377": { + "address": "0x1a688d3d294ee7bcc1f59011de93d608dc21c377", + "symbol": "UCO", + "decimals": 8, + "name": "Archethic", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x1a688d3d294ee7bcc1f59011de93d608dc21c377.png", + "aggregators": [ + "CoinMarketCap", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0xf9c53268e9de692ae1b2ea5216e24e1c3ad7cb1e": { + "address": "0xf9c53268e9de692ae1b2ea5216e24e1c3ad7cb1e", + "symbol": "IDO", + "decimals": 18, + "name": "Idexo", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xf9c53268e9de692ae1b2ea5216e24e1c3ad7cb1e.png", + "aggregators": [ + "CoinMarketCap", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x727f064a78dc734d33eec18d5370aef32ffd46e4": { + "address": "0x727f064a78dc734d33eec18d5370aef32ffd46e4", + "symbol": "ORION", + "decimals": 18, + "name": "Orion Money", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x727f064a78dc734d33eec18d5370aef32ffd46e4.png", + "aggregators": [ + "CoinMarketCap", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x4674a4f24c5f63d53f22490fb3a08eaaad739ff8": { + "address": "0x4674a4f24c5f63d53f22490fb3a08eaaad739ff8", + "symbol": "BRKL", + "decimals": 18, + "name": "Brokoli", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x4674a4f24c5f63d53f22490fb3a08eaaad739ff8.png", + "aggregators": [ + "CoinMarketCap", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0xa5ef74068d04ba0809b7379dd76af5ce34ab7c57": { + "address": "0xa5ef74068d04ba0809b7379dd76af5ce34ab7c57", + "symbol": "LUCHOW", + "decimals": 18, + "name": "LunaChow", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xa5ef74068d04ba0809b7379dd76af5ce34ab7c57.png", + "aggregators": [ + "CoinMarketCap", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x4cd0c43b0d53bc318cc5342b77eb6f124e47f526": { + "address": "0x4cd0c43b0d53bc318cc5342b77eb6f124e47f526", + "symbol": "FREE", + "decimals": 18, + "name": "FreeRossDAO", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x4cd0c43b0d53bc318cc5342b77eb6f124e47f526.png", + "aggregators": [ + "CoinMarketCap", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0xea3983fc6d0fbbc41fb6f6091f68f3e08894dc06": { + "address": "0xea3983fc6d0fbbc41fb6f6091f68f3e08894dc06", + "symbol": "UDO", + "decimals": 18, + "name": "Unido", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xea3983fc6d0fbbc41fb6f6091f68f3e08894dc06.png", + "aggregators": [ + "CoinMarketCap", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x8bbe1a2961b41340468d0548c2cd5b7dfa9b684c": { + "address": "0x8bbe1a2961b41340468d0548c2cd5b7dfa9b684c", + "symbol": "HANDY", + "decimals": 18, + "name": "Handy", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x8bbe1a2961b41340468d0548c2cd5b7dfa9b684c.png", + "aggregators": [ + "CoinMarketCap", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0xf34b1db61aca1a371fe97bad2606c9f534fb9d7d": { + "address": "0xf34b1db61aca1a371fe97bad2606c9f534fb9d7d", + "symbol": "RBIS", + "decimals": 18, + "name": "ArbiSmart", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xf34b1db61aca1a371fe97bad2606c9f534fb9d7d.png", + "aggregators": [ + "CoinMarketCap", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x73a83269b9bbafc427e76be0a2c1a1db2a26f4c2": { + "address": "0x73a83269b9bbafc427e76be0a2c1a1db2a26f4c2", + "symbol": "0NE", + "decimals": 18, + "name": "Civfund Stone", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x73a83269b9bbafc427e76be0a2c1a1db2a26f4c2.png", + "aggregators": [ + "CoinMarketCap", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0xd721706581d97ecd202bbab5c71b5a85f0f78e69": { + "address": "0xd721706581d97ecd202bbab5c71b5a85f0f78e69", + "symbol": "DOGE1", + "decimals": 9, + "name": "DOGE 1", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xd721706581d97ecd202bbab5c71b5a85f0f78e69.png", + "aggregators": [ + "CoinGecko", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0xfb130d93e49dca13264344966a611dc79a456bc5": { + "address": "0xfb130d93e49dca13264344966a611dc79a456bc5", + "symbol": "DOGEGF", + "decimals": 18, + "name": "DogeGF", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xfb130d93e49dca13264344966a611dc79a456bc5.png", + "aggregators": [ + "CoinMarketCap", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x050d94685c6b0477e1fc555888af6e2bb8dfbda5": { + "address": "0x050d94685c6b0477e1fc555888af6e2bb8dfbda5", + "symbol": "INU", + "decimals": 18, + "name": "Inu", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x050d94685c6b0477e1fc555888af6e2bb8dfbda5.png", + "aggregators": [ + "CoinMarketCap", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x7051faed0775f664a0286af4f75ef5ed74e02754": { + "address": "0x7051faed0775f664a0286af4f75ef5ed74e02754", + "symbol": "CHANGE", + "decimals": 18, + "name": "Changex", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x7051faed0775f664a0286af4f75ef5ed74e02754.png", + "aggregators": [ + "CoinMarketCap", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x3f5dd1a1538a4f9f82e543098f01f22480b0a3a8": { + "address": "0x3f5dd1a1538a4f9f82e543098f01f22480b0a3a8", + "symbol": "DKUMA", + "decimals": 18, + "name": "KumaDex Token", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x3f5dd1a1538a4f9f82e543098f01f22480b0a3a8.png", + "aggregators": [ + "CoinMarketCap", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x8c088775e4139af116ac1fa6f281bbf71e8c1c73": { + "address": "0x8c088775e4139af116ac1fa6f281bbf71e8c1c73", + "symbol": "PUMLX", + "decimals": 18, + "name": "PUMLx", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x8c088775e4139af116ac1fa6f281bbf71e8c1c73.png", + "aggregators": [ + "CoinMarketCap", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x64df3aab3b21cc275bb76c4a581cf8b726478ee0": { + "address": "0x64df3aab3b21cc275bb76c4a581cf8b726478ee0", + "symbol": "CRAMER", + "decimals": 18, + "name": "Cramer Coin", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x64df3aab3b21cc275bb76c4a581cf8b726478ee0.png", + "aggregators": [ + "CoinMarketCap", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x0ebe30595a44e5288c24161ddfc1e9fa08e33a0c": { + "address": "0x0ebe30595a44e5288c24161ddfc1e9fa08e33a0c", + "symbol": "NYAN", + "decimals": 18, + "name": "Nyan Meme Coin", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x0ebe30595a44e5288c24161ddfc1e9fa08e33a0c.png", + "aggregators": [ + "CoinMarketCap", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x72953a5c32413614d24c29c84a66ae4b59581bbf": { + "address": "0x72953a5c32413614d24c29c84a66ae4b59581bbf", + "symbol": "CLEV", + "decimals": 18, + "name": "CLever", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x72953a5c32413614d24c29c84a66ae4b59581bbf.png", + "aggregators": [ + "CoinMarketCap", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0xf31698ddad0d11160fe85c500397a470cd3d492e": { + "address": "0xf31698ddad0d11160fe85c500397a470cd3d492e", + "symbol": "WEXO", + "decimals": 18, + "name": "Wexo", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xf31698ddad0d11160fe85c500397a470cd3d492e.png", + "aggregators": [ + "CoinMarketCap", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x24da31e7bb182cb2cabfef1d88db19c2ae1f5572": { + "address": "0x24da31e7bb182cb2cabfef1d88db19c2ae1f5572", + "symbol": "SHIK", + "decimals": 18, + "name": "Shikoku", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x24da31e7bb182cb2cabfef1d88db19c2ae1f5572.png", + "aggregators": [ + "CoinMarketCap", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0xcbe771323587ea16dacb6016e269d7f08a7acc4e": { + "address": "0xcbe771323587ea16dacb6016e269d7f08a7acc4e", + "symbol": "SPO", + "decimals": 18, + "name": "Spores Network", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xcbe771323587ea16dacb6016e269d7f08a7acc4e.png", + "aggregators": [ + "CoinMarketCap", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0xdb298285fe4c5410b05390ca80e8fbe9de1f259b": { + "address": "0xdb298285fe4c5410b05390ca80e8fbe9de1f259b", + "symbol": "FOREX", + "decimals": 18, + "name": "handle fi", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xdb298285fe4c5410b05390ca80e8fbe9de1f259b.png", + "aggregators": [ + "CoinMarketCap", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x6bf765c43030387a983f429c1438e9d2025b7e12": { + "address": "0x6bf765c43030387a983f429c1438e9d2025b7e12", + "symbol": "PEPES", + "decimals": 18, + "name": "McPepe s", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x6bf765c43030387a983f429c1438e9d2025b7e12.png", + "aggregators": [ + "CoinMarketCap", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x0ba74fb26ca523f2dc22fa4318581cc2452eaba1": { + "address": "0x0ba74fb26ca523f2dc22fa4318581cc2452eaba1", + "symbol": "BOG", + "decimals": 18, + "name": "Bogdanoff", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x0ba74fb26ca523f2dc22fa4318581cc2452eaba1.png", + "aggregators": [ + "CoinMarketCap", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x7d8daff6d70cead12c6f077048552cf89130a2b1": { + "address": "0x7d8daff6d70cead12c6f077048552cf89130a2b1", + "symbol": "ARX", + "decimals": 18, + "name": "ARCS", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x7d8daff6d70cead12c6f077048552cf89130a2b1.png", + "aggregators": [ + "CoinMarketCap", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x766d2fcece1e3eef32aae8711ab886ee95fd5b2a": { + "address": "0x766d2fcece1e3eef32aae8711ab886ee95fd5b2a", + "symbol": "MVP", + "decimals": 18, + "name": "MAGA VP", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x766d2fcece1e3eef32aae8711ab886ee95fd5b2a.png", + "aggregators": [ + "CoinMarketCap", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x2f573070e6090b3264fe707e2c9f201716f123c7": { + "address": "0x2f573070e6090b3264fe707e2c9f201716f123c7", + "symbol": "MUMU", + "decimals": 18, + "name": "Mumu", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x2f573070e6090b3264fe707e2c9f201716f123c7.png", + "aggregators": [ + "CoinMarketCap", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0xb69753c06bb5c366be51e73bfc0cc2e3dc07e371": { + "address": "0xb69753c06bb5c366be51e73bfc0cc2e3dc07e371", + "symbol": "POOH", + "decimals": 18, + "name": "POOH", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xb69753c06bb5c366be51e73bfc0cc2e3dc07e371.png", + "aggregators": [ + "CoinMarketCap", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0xb794ad95317f75c44090f64955954c3849315ffe": { + "address": "0xb794ad95317f75c44090f64955954c3849315ffe", + "symbol": "RIBBIT", + "decimals": 18, + "name": "Ribbit Meme", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xb794ad95317f75c44090f64955954c3849315ffe.png", + "aggregators": [ + "CoinMarketCap", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0xf831938caf837cd505de196bbb408d81a06376ab": { + "address": "0xf831938caf837cd505de196bbb408d81a06376ab", + "symbol": "JEFF", + "decimals": 18, + "name": "Jeff", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xf831938caf837cd505de196bbb408d81a06376ab.png", + "aggregators": [ + "CoinMarketCap", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x335f4e66b9b61cee5ceade4e727fcec20156b2f0": { + "address": "0x335f4e66b9b61cee5ceade4e727fcec20156b2f0", + "symbol": "ELMO", + "decimals": 18, + "name": "Elmo", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x335f4e66b9b61cee5ceade4e727fcec20156b2f0.png", + "aggregators": [ + "CoinMarketCap", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0xbddf903f43dc7d9801f3f0034ba306169074ef8e": { + "address": "0xbddf903f43dc7d9801f3f0034ba306169074ef8e", + "symbol": "AGB", + "decimals": 18, + "name": "Apes Go Bananas", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xbddf903f43dc7d9801f3f0034ba306169074ef8e.png", + "aggregators": [ + "CoinMarketCap", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x2ad9addd0d97ec3cdba27f92bf6077893b76ab0b": { + "address": "0x2ad9addd0d97ec3cdba27f92bf6077893b76ab0b", + "symbol": "PLANET", + "decimals": 18, + "name": "Planet Token", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x2ad9addd0d97ec3cdba27f92bf6077893b76ab0b.png", + "aggregators": [ + "CoinMarketCap", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x43d7e65b8ff49698d9550a7f315c87e67344fb59": { + "address": "0x43d7e65b8ff49698d9550a7f315c87e67344fb59", + "symbol": "SHIA", + "decimals": 18, + "name": "Shiba Saga", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x43d7e65b8ff49698d9550a7f315c87e67344fb59.png", + "aggregators": [ + "CoinMarketCap", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0xc32db1d3282e872d98f6437d3bcfa57801ca6d5c": { + "address": "0xc32db1d3282e872d98f6437d3bcfa57801ca6d5c", + "symbol": "ETHEREUM", + "decimals": 18, + "name": "VoldemortTrumpRobotnik 10Neko", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xc32db1d3282e872d98f6437d3bcfa57801ca6d5c.png", + "aggregators": [ + "CoinMarketCap", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0xec70ff4a5b09110e4d20ada4f2db4a86ec61fac6": { + "address": "0xec70ff4a5b09110e4d20ada4f2db4a86ec61fac6", + "symbol": "GRP", + "decimals": 18, + "name": "Grape", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xec70ff4a5b09110e4d20ada4f2db4a86ec61fac6.png", + "aggregators": [ + "CoinMarketCap", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x3ee4b152824b657644c7a9b50694787e80eb8f4a": { + "address": "0x3ee4b152824b657644c7a9b50694787e80eb8f4a", + "symbol": "BAZED", + "decimals": 18, + "name": "Bazed Games", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x3ee4b152824b657644c7a9b50694787e80eb8f4a.png", + "aggregators": [ + "CoinMarketCap", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x3d806324b6df5af3c1a81acba14a8a62fe6d643f": { + "address": "0x3d806324b6df5af3c1a81acba14a8a62fe6d643f", + "symbol": "SOLANA", + "decimals": 18, + "name": "BarbieCrashBandicootRFK88", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x3d806324b6df5af3c1a81acba14a8a62fe6d643f.png", + "aggregators": [ + "CoinMarketCap", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0xd0d56273290d339aaf1417d9bfa1bb8cfe8a0933": { + "address": "0xd0d56273290d339aaf1417d9bfa1bb8cfe8a0933", + "symbol": "FOOM", + "decimals": 18, + "name": "Foom", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xd0d56273290d339aaf1417d9bfa1bb8cfe8a0933.png", + "aggregators": [ + "CoinMarketCap", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x24249b5a869a445c9b0ce269a08d73c618df9d21": { + "address": "0x24249b5a869a445c9b0ce269a08d73c618df9d21", + "symbol": "ETHEREUM", + "decimals": 8, + "name": "HarryPotterTrumpHomerSimpson777Inu", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x24249b5a869a445c9b0ce269a08d73c618df9d21.png", + "aggregators": [ + "CoinMarketCap", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x00000000051b48047be6dc0ada6de5c3de86a588": { + "address": "0x00000000051b48047be6dc0ada6de5c3de86a588", + "symbol": "BABYSHIB", + "decimals": 18, + "name": "Baby Shiba Inu", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x00000000051b48047be6dc0ada6de5c3de86a588.png", + "aggregators": [ + "CoinMarketCap", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0xfcaf0e4498e78d65526a507360f755178b804ba8": { + "address": "0xfcaf0e4498e78d65526a507360f755178b804ba8", + "symbol": "SHIB", + "decimals": 18, + "name": "NicCageWaluigiElmo42069Inu", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xfcaf0e4498e78d65526a507360f755178b804ba8.png", + "aggregators": [ + "CoinMarketCap", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0xa9049425b938c46ac3e312d4cdaeccb26282aeb2": { + "address": "0xa9049425b938c46ac3e312d4cdaeccb26282aeb2", + "symbol": "WIK", + "decimals": 18, + "name": "WickedBet Casino", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xa9049425b938c46ac3e312d4cdaeccb26282aeb2.png", + "aggregators": [ + "CoinMarketCap", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x9e18d5bab2fa94a6a95f509ecb38f8f68322abd3": { + "address": "0x9e18d5bab2fa94a6a95f509ecb38f8f68322abd3", + "symbol": "OMIKAMI", + "decimals": 9, + "name": "AMATERASU OMIKAMI", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x9e18d5bab2fa94a6a95f509ecb38f8f68322abd3.png", + "aggregators": [ + "CoinMarketCap", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0xe2432110c32d0717e33c245fe0cfa2b26c07f47a": { + "address": "0xe2432110c32d0717e33c245fe0cfa2b26c07f47a", + "symbol": "AGX", + "decimals": 18, + "name": "AGIX", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xe2432110c32d0717e33c245fe0cfa2b26c07f47a.png", + "aggregators": [ + "CoinMarketCap", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0xa9d54f37ebb99f83b603cc95fc1a5f3907aaccfd": { + "address": "0xa9d54f37ebb99f83b603cc95fc1a5f3907aaccfd", + "symbol": "PIKA", + "decimals": 18, + "name": "Pikaboss", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xa9d54f37ebb99f83b603cc95fc1a5f3907aaccfd.png", + "aggregators": [ + "CoinMarketCap", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x7d4a7be025652995364e0e232063abd9e8d65e6e": { + "address": "0x7d4a7be025652995364e0e232063abd9e8d65e6e", + "symbol": "MONOPOLY", + "decimals": 18, + "name": "Meta Monopoly", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x7d4a7be025652995364e0e232063abd9e8d65e6e.png", + "aggregators": [ + "CoinMarketCap", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0xa2fe5e51729be71261bcf42854012827bc44c044": { + "address": "0xa2fe5e51729be71261bcf42854012827bc44c044", + "symbol": "BURN", + "decimals": 18, + "name": "BURN", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xa2fe5e51729be71261bcf42854012827bc44c044.png", + "aggregators": [ + "CoinMarketCap", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x0aa8a7d1fb4c64b3b1dcea9a7ade81c59c25b95b": { + "address": "0x0aa8a7d1fb4c64b3b1dcea9a7ade81c59c25b95b", + "symbol": "ASTRA", + "decimals": 18, + "name": "AstraAI", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x0aa8a7d1fb4c64b3b1dcea9a7ade81c59c25b95b.png", + "aggregators": [ + "CoinMarketCap", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x55a8f6c6b3aa58ad6d1f26f6afeded78f32e19f4": { + "address": "0x55a8f6c6b3aa58ad6d1f26f6afeded78f32e19f4", + "symbol": "AEGIS", + "decimals": 9, + "name": "Aegis Ai", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x55a8f6c6b3aa58ad6d1f26f6afeded78f32e19f4.png", + "aggregators": [ + "CoinMarketCap", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0xbc544207ff1c5b2bc47a35f745010b603b97e99e": { + "address": "0xbc544207ff1c5b2bc47a35f745010b603b97e99e", + "symbol": "AI", + "decimals": 18, + "name": "AI PIN", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xbc544207ff1c5b2bc47a35f745010b603b97e99e.png", + "aggregators": [ + "CoinMarketCap", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x695d38eb4e57e0f137e36df7c1f0f2635981246b": { + "address": "0x695d38eb4e57e0f137e36df7c1f0f2635981246b", + "symbol": "MEMEAI", + "decimals": 9, + "name": "Meme AI Coin", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x695d38eb4e57e0f137e36df7c1f0f2635981246b.png", + "aggregators": [ + "CoinMarketCap", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x443459d45c30a03f90037d011cbe22e2183d3b12": { + "address": "0x443459d45c30a03f90037d011cbe22e2183d3b12", + "symbol": "TYPE", + "decimals": 18, + "name": "TypeAI", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x443459d45c30a03f90037d011cbe22e2183d3b12.png", + "aggregators": [ + "CoinMarketCap", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x7d225c4cc612e61d26523b099b0718d03152edef": { + "address": "0x7d225c4cc612e61d26523b099b0718d03152edef", + "symbol": "FORK", + "decimals": 18, + "name": "FlokiFork", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x7d225c4cc612e61d26523b099b0718d03152edef.png", + "aggregators": [ + "CoinMarketCap", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0xd015422879a1308ba557510345e944b912b9ab73": { + "address": "0xd015422879a1308ba557510345e944b912b9ab73", + "symbol": "TRUMP", + "decimals": 18, + "name": "FreeTrump", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xd015422879a1308ba557510345e944b912b9ab73.png", + "aggregators": [ + "CoinMarketCap", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0xe92344b4edf545f3209094b192e46600a19e7c2d": { + "address": "0xe92344b4edf545f3209094b192e46600a19e7c2d", + "symbol": "ZKML", + "decimals": 18, + "name": "zKML", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xe92344b4edf545f3209094b192e46600a19e7c2d.png", + "aggregators": [ + "CoinMarketCap", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x1258d60b224c0c5cd888d37bbf31aa5fcfb7e870": { + "address": "0x1258d60b224c0c5cd888d37bbf31aa5fcfb7e870", + "symbol": "GPU", + "decimals": 18, + "name": "NodeAI", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x1258d60b224c0c5cd888d37bbf31aa5fcfb7e870.png", + "aggregators": [ + "CoinMarketCap", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0xeff9cdb294872b6553f4e9631fb4d1fa4f9c5e6b": { + "address": "0xeff9cdb294872b6553f4e9631fb4d1fa4f9c5e6b", + "symbol": "BUILD", + "decimals": 18, + "name": "BuildAI", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xeff9cdb294872b6553f4e9631fb4d1fa4f9c5e6b.png", + "aggregators": [ + "CoinMarketCap", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x033bbde722ea3cdcec73cffea6581df9f9c257de": { + "address": "0x033bbde722ea3cdcec73cffea6581df9f9c257de", + "symbol": "VELAR", + "decimals": 6, + "name": "Velar", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x033bbde722ea3cdcec73cffea6581df9f9c257de.png", + "aggregators": [ + "CoinMarketCap", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x84018071282d4b2996272659d9c01cb08dd7327f": { + "address": "0x84018071282d4b2996272659d9c01cb08dd7327f", + "symbol": "BLENDR", + "decimals": 18, + "name": "Blendr Network", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x84018071282d4b2996272659d9c01cb08dd7327f.png", + "aggregators": [ + "CoinMarketCap", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x1ae7e1d0ce06364ced9ad58225a1705b3e5db92b": { + "address": "0x1ae7e1d0ce06364ced9ad58225a1705b3e5db92b", + "symbol": "LMEOW", + "decimals": 9, + "name": "lmeow", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x1ae7e1d0ce06364ced9ad58225a1705b3e5db92b.png", + "aggregators": [ + "CoinGecko", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x91fbb2503ac69702061f1ac6885759fc853e6eae": { + "address": "0x91fbb2503ac69702061f1ac6885759fc853e6eae", + "symbol": "KNINE", + "decimals": 18, + "name": "K9 Finance DAO", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x91fbb2503ac69702061f1ac6885759fc853e6eae.png", + "aggregators": [ + "CoinMarketCap", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0xc61edb127f58f42f47a8be8aebe83cf602a53878": { + "address": "0xc61edb127f58f42f47a8be8aebe83cf602a53878", + "symbol": "COBE", + "decimals": 18, + "name": "Castle Of Blackwater", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xc61edb127f58f42f47a8be8aebe83cf602a53878.png", + "aggregators": [ + "CoinMarketCap", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x793a5d8b30aab326f83d20a9370c827fea8fdc51": { + "address": "0x793a5d8b30aab326f83d20a9370c827fea8fdc51", + "symbol": "GIAC", + "decimals": 18, + "name": "Gorilla In A Coupe", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x793a5d8b30aab326f83d20a9370c827fea8fdc51.png", + "aggregators": [ + "CoinMarketCap", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x7039cd6d7966672f194e8139074c3d5c4e6dcf65": { + "address": "0x7039cd6d7966672f194e8139074c3d5c4e6dcf65", + "symbol": "STRUMP", + "decimals": 9, + "name": "Super Trump", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x7039cd6d7966672f194e8139074c3d5c4e6dcf65.png", + "aggregators": [ + "CoinMarketCap", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0xbe8eff45293598919c99d1cbe5297f2a6935bc64": { + "address": "0xbe8eff45293598919c99d1cbe5297f2a6935bc64", + "symbol": "TIGRA", + "decimals": 18, + "name": "Tigra", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xbe8eff45293598919c99d1cbe5297f2a6935bc64.png", + "aggregators": [ + "CoinMarketCap", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x722a89f1b925fe41883978219c2176aecc7d6699": { + "address": "0x722a89f1b925fe41883978219c2176aecc7d6699", + "symbol": "XNK", + "decimals": 18, + "name": "Kinka", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x722a89f1b925fe41883978219c2176aecc7d6699.png", + "aggregators": [ + "CoinMarketCap", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x32b053f2cba79f80ada5078cb6b305da92bde6e1": { + "address": "0x32b053f2cba79f80ada5078cb6b305da92bde6e1", + "symbol": "NEURAL", + "decimals": 18, + "name": "NEURALAI", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x32b053f2cba79f80ada5078cb6b305da92bde6e1.png", + "aggregators": [ + "CoinMarketCap", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x6e8908cfa881c9f6f2c64d3436e7b80b1bf0093f": { + "address": "0x6e8908cfa881c9f6f2c64d3436e7b80b1bf0093f", + "symbol": "BIST", + "decimals": 18, + "name": "Bistroo", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x6e8908cfa881c9f6f2c64d3436e7b80b1bf0093f.png", + "aggregators": [ + "CoinMarketCap", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x60e254e35dd712394b3aba7a1d19114732e143dd": { + "address": "0x60e254e35dd712394b3aba7a1d19114732e143dd", + "symbol": "RIVUS", + "decimals": 18, + "name": "RivusDAO", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x60e254e35dd712394b3aba7a1d19114732e143dd.png", + "aggregators": [ + "CoinMarketCap", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x857ffc55b1aa61a7ff847c82072790cae73cd883": { + "address": "0x857ffc55b1aa61a7ff847c82072790cae73cd883", + "symbol": "EEFI", + "decimals": 18, + "name": "Elastic Finance Token", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x857ffc55b1aa61a7ff847c82072790cae73cd883.png", + "aggregators": [ + "CoinGecko", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x16c22a91c705ec3c2d5945dbe2aca37924f1d2ed": { + "address": "0x16c22a91c705ec3c2d5945dbe2aca37924f1d2ed", + "symbol": "ERIC", + "decimals": 9, + "name": "Elon s Pet Fish ERIC", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x16c22a91c705ec3c2d5945dbe2aca37924f1d2ed.png", + "aggregators": [ + "CoinMarketCap", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x059956483753947536204e89bfad909e1a434cc6": { + "address": "0x059956483753947536204e89bfad909e1a434cc6", + "symbol": "ML", + "decimals": 18, + "name": "Mintlayer", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x059956483753947536204e89bfad909e1a434cc6.png", + "aggregators": [ + "CoinMarketCap", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x69420e3a3aa9e17dea102bb3a9b3b73dcddb9528": { + "address": "0x69420e3a3aa9e17dea102bb3a9b3b73dcddb9528", + "symbol": "ELON", + "decimals": 9, + "name": "Elon", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x69420e3a3aa9e17dea102bb3a9b3b73dcddb9528.png", + "aggregators": [ + "CoinMarketCap", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x69a1e699f562d7af66fc6cc473d99f4430c3acd2": { + "address": "0x69a1e699f562d7af66fc6cc473d99f4430c3acd2", + "symbol": "PARAM", + "decimals": 18, + "name": "Param", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x69a1e699f562d7af66fc6cc473d99f4430c3acd2.png", + "aggregators": [ + "CoinMarketCap", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0xbddc20ed7978b7d59ef190962f441cd18c14e19f": { + "address": "0xbddc20ed7978b7d59ef190962f441cd18c14e19f", + "symbol": "CAGA", + "decimals": 18, + "name": "Crypto Asset Governance Alliance", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xbddc20ed7978b7d59ef190962f441cd18c14e19f.png", + "aggregators": [ + "CoinMarketCap", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x3bb1be077f3f96722ae92ec985ab37fd0a0c4c51": { + "address": "0x3bb1be077f3f96722ae92ec985ab37fd0a0c4c51", + "symbol": "MARV", + "decimals": 18, + "name": "Marv", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x3bb1be077f3f96722ae92ec985ab37fd0a0c4c51.png", + "aggregators": [ + "CoinMarketCap", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x0a2c375553e6965b42c135bb8b15a8914b08de0c": { + "address": "0x0a2c375553e6965b42c135bb8b15a8914b08de0c", + "symbol": "FROG", + "decimals": 9, + "name": "Frog on ETH", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x0a2c375553e6965b42c135bb8b15a8914b08de0c.png", + "aggregators": [ + "CoinMarketCap", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x636bd98fc13908e475f56d8a38a6e03616ec5563": { + "address": "0x636bd98fc13908e475f56d8a38a6e03616ec5563", + "symbol": "WAT", + "decimals": 18, + "name": "Wat", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x636bd98fc13908e475f56d8a38a6e03616ec5563.png", + "aggregators": [ + "CoinMarketCap", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0xe79031b5aaeb3ee8d0145e3d75b81b36bffe341d": { + "address": "0xe79031b5aaeb3ee8d0145e3d75b81b36bffe341d", + "symbol": "BOPPY", + "decimals": 9, + "name": "Boppy The Bat", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xe79031b5aaeb3ee8d0145e3d75b81b36bffe341d.png", + "aggregators": [ + "CoinMarketCap", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x683a4ac99e65200921f556a19dadf4b0214b5938": { + "address": "0x683a4ac99e65200921f556a19dadf4b0214b5938", + "symbol": "MAPE", + "decimals": 9, + "name": "MAGA Pepe", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x683a4ac99e65200921f556a19dadf4b0214b5938.png", + "aggregators": [ + "CoinMarketCap", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0xa0084063ea01d5f09e56ef3ff6232a9e18b0bacd": { + "address": "0xa0084063ea01d5f09e56ef3ff6232a9e18b0bacd", + "symbol": "CYDX", + "decimals": 18, + "name": "CyberDEX", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xa0084063ea01d5f09e56ef3ff6232a9e18b0bacd.png", + "aggregators": [ + "CoinGecko", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x3567aa22cd3ab9aef23d7e18ee0d7cf16974d7e6": { + "address": "0x3567aa22cd3ab9aef23d7e18ee0d7cf16974d7e6", + "symbol": "SAI", + "decimals": 18, + "name": "Sharpe AI", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x3567aa22cd3ab9aef23d7e18ee0d7cf16974d7e6.png", + "aggregators": [ + "CoinMarketCap", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x7777cec341e7434126864195adef9b05dcc3489c": { + "address": "0x7777cec341e7434126864195adef9b05dcc3489c", + "symbol": "ONI", + "decimals": 18, + "name": "Onigiri", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x7777cec341e7434126864195adef9b05dcc3489c.png", + "aggregators": [ + "CoinMarketCap", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x7316d973b0269863bbfed87302e11334e25ea565": { + "address": "0x7316d973b0269863bbfed87302e11334e25ea565", + "symbol": "KEN", + "decimals": 9, + "name": "Ken", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x7316d973b0269863bbfed87302e11334e25ea565.png", + "aggregators": [ + "CoinMarketCap", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0xc2eb40516ecaac04ae9964934983d1e9ebdf51fd": { + "address": "0xc2eb40516ecaac04ae9964934983d1e9ebdf51fd", + "symbol": "99BTC", + "decimals": 18, + "name": "99 Bitcoins", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xc2eb40516ecaac04ae9964934983d1e9ebdf51fd.png", + "aggregators": [ + "CoinMarketCap", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0xfefe157c9d0ae025213092ff9a5cb56ab492bab8": { + "address": "0xfefe157c9d0ae025213092ff9a5cb56ab492bab8", + "symbol": "FEFE", + "decimals": 9, + "name": "Fefe", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xfefe157c9d0ae025213092ff9a5cb56ab492bab8.png", + "aggregators": [ + "CoinMarketCap", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0xd09eb9099fac55edcbf4965e0a866779ca365a0c": { + "address": "0xd09eb9099fac55edcbf4965e0a866779ca365a0c", + "symbol": "COLON", + "decimals": 9, + "name": "Colon", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xd09eb9099fac55edcbf4965e0a866779ca365a0c.png", + "aggregators": [ + "CoinMarketCap", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0xb5d730d442e1d5b119fb4e5c843c48a64202ef92": { + "address": "0xb5d730d442e1d5b119fb4e5c843c48a64202ef92", + "symbol": "SABAI", + "decimals": 18, + "name": "Sabai Protocol", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xb5d730d442e1d5b119fb4e5c843c48a64202ef92.png", + "aggregators": [ + "CoinMarketCap", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x64945165255bcb83f2ef9f31a575975832ca4db4": { + "address": "0x64945165255bcb83f2ef9f31a575975832ca4db4", + "symbol": "KAGE", + "decimals": 18, + "name": "KAGE NETWORK", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x64945165255bcb83f2ef9f31a575975832ca4db4.png", + "aggregators": [ + "CoinMarketCap", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x0590cc9232ebf68d81f6707a119898219342ecb9": { + "address": "0x0590cc9232ebf68d81f6707a119898219342ecb9", + "symbol": "BCAT", + "decimals": 9, + "name": "BananaCat", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x0590cc9232ebf68d81f6707a119898219342ecb9.png", + "aggregators": [ + "CoinGecko", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x306fd3e7b169aa4ee19412323e1a5995b8c1a1f4": { + "address": "0x306fd3e7b169aa4ee19412323e1a5995b8c1a1f4", + "symbol": "FTW", + "decimals": 18, + "name": "Black Agnus", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x306fd3e7b169aa4ee19412323e1a5995b8c1a1f4.png", + "aggregators": [ + "CoinMarketCap", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x1b3be8fcd2e7c5ce9c5c242e0066fdd9740220d0": { + "address": "0x1b3be8fcd2e7c5ce9c5c242e0066fdd9740220d0", + "symbol": "LICKER", + "decimals": 9, + "name": "Licker", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x1b3be8fcd2e7c5ce9c5c242e0066fdd9740220d0.png", + "aggregators": [ + "CoinMarketCap", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x8e42fe26fc1697f57076c9f2a8d1ff69cf7f6fda": { + "address": "0x8e42fe26fc1697f57076c9f2a8d1ff69cf7f6fda", + "symbol": "AGURI", + "decimals": 9, + "name": "Aguri Chan", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x8e42fe26fc1697f57076c9f2a8d1ff69cf7f6fda.png", + "aggregators": [ + "CoinMarketCap", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x696733ce8f387c7a648443d9e21c6c1ee8519b94": { + "address": "0x696733ce8f387c7a648443d9e21c6c1ee8519b94", + "symbol": "SUKI", + "decimals": 9, + "name": "SUKI", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x696733ce8f387c7a648443d9e21c6c1ee8519b94.png", + "aggregators": [ + "CoinMarketCap", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x1bb4afbf2ce0c9ec86e6414ad4ba4d9aab1c0de4": { + "address": "0x1bb4afbf2ce0c9ec86e6414ad4ba4d9aab1c0de4", + "symbol": "TORA", + "decimals": 9, + "name": "TORA NEKO", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x1bb4afbf2ce0c9ec86e6414ad4ba4d9aab1c0de4.png", + "aggregators": [ + "CoinMarketCap", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x04c293144acc45a19da9c2817c08d1352e5be70e": { + "address": "0x04c293144acc45a19da9c2817c08d1352e5be70e", + "symbol": "MUGI", + "decimals": 9, + "name": "Mugi", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x04c293144acc45a19da9c2817c08d1352e5be70e.png", + "aggregators": [ + "CoinGecko", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x8baf5d75cae25c7df6d1e0d26c52d19ee848301a": { + "address": "0x8baf5d75cae25c7df6d1e0d26c52d19ee848301a", + "symbol": "CATALORIAN", + "decimals": 18, + "name": "Catalorian", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x8baf5d75cae25c7df6d1e0d26c52d19ee848301a.png", + "aggregators": [ + "CoinGecko", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x375e104af98872e5b4fe951919e504a47db1757c": { + "address": "0x375e104af98872e5b4fe951919e504a47db1757c", + "symbol": "GINNAN", + "decimals": 9, + "name": "Ginnan Doge s Brother", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x375e104af98872e5b4fe951919e504a47db1757c.png", + "aggregators": [ + "CoinMarketCap", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x8bd35250918ed056304fa8641e083be2c42308bb": { + "address": "0x8bd35250918ed056304fa8641e083be2c42308bb", + "symbol": "ESTEE", + "decimals": 18, + "name": "Kaga No Fuuka Go Sapporo Kagasou", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x8bd35250918ed056304fa8641e083be2c42308bb.png", + "aggregators": [ + "CoinMarketCap", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x41b1f9dcd5923c9542b6957b9b72169595acbc5c": { + "address": "0x41b1f9dcd5923c9542b6957b9b72169595acbc5c", + "symbol": "CHEEMS", + "decimals": 18, + "name": "Cheems CTO", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x41b1f9dcd5923c9542b6957b9b72169595acbc5c.png", + "aggregators": [ + "CoinMarketCap", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x13e4b8cffe704d3de6f19e52b201d92c21ec18bd": { + "address": "0x13e4b8cffe704d3de6f19e52b201d92c21ec18bd", + "symbol": "PAI", + "decimals": 18, + "name": "ParallelAI", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x13e4b8cffe704d3de6f19e52b201d92c21ec18bd.png", + "aggregators": [ + "CoinMarketCap", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x4298e4ad48be89bf63a6fdc470a4b4fe9ce633b1": { + "address": "0x4298e4ad48be89bf63a6fdc470a4b4fe9ce633b1", + "symbol": "ESTEE", + "decimals": 9, + "name": "Estee", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x4298e4ad48be89bf63a6fdc470a4b4fe9ce633b1.png", + "aggregators": [ + "CoinMarketCap", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x0ccae1bc46fb018dd396ed4c45565d4cb9d41098": { + "address": "0x0ccae1bc46fb018dd396ed4c45565d4cb9d41098", + "symbol": "MISHA", + "decimals": 9, + "name": "MISHA", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x0ccae1bc46fb018dd396ed4c45565d4cb9d41098.png", + "aggregators": [ + "CoinMarketCap", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x70c29e99ca32592c0e88bb571b87444bb0e08e33": { + "address": "0x70c29e99ca32592c0e88bb571b87444bb0e08e33", + "symbol": "MARVIN", + "decimals": 9, + "name": "The Martian Dog", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x70c29e99ca32592c0e88bb571b87444bb0e08e33.png", + "aggregators": [ + "CoinMarketCap", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x66b5228cfd34d9f4d9f03188d67816286c7c0b74": { + "address": "0x66b5228cfd34d9f4d9f03188d67816286c7c0b74", + "symbol": "VOLT", + "decimals": 18, + "name": "VOLT WIN", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x66b5228cfd34d9f4d9f03188d67816286c7c0b74.png", + "aggregators": [ + "CoinMarketCap", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x44e18207b6e98f4a786957954e462ed46b8c95be": { + "address": "0x44e18207b6e98f4a786957954e462ed46b8c95be", + "symbol": "TERMINUS", + "decimals": 9, + "name": "Terminus", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x44e18207b6e98f4a786957954e462ed46b8c95be.png", + "aggregators": [ + "CoinMarketCap", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x6969f3a3754ab674b48b7829a8572360e98132ba": { + "address": "0x6969f3a3754ab674b48b7829a8572360e98132ba", + "symbol": "IZZY", + "decimals": 9, + "name": "Izzy", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x6969f3a3754ab674b48b7829a8572360e98132ba.png", + "aggregators": [ + "CoinMarketCap", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x00f116ac0c304c570daaa68fa6c30a86a04b5c5f": { + "address": "0x00f116ac0c304c570daaa68fa6c30a86a04b5c5f", + "symbol": "INF", + "decimals": 18, + "name": "INFERNO", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x00f116ac0c304c570daaa68fa6c30a86a04b5c5f.png", + "aggregators": [ + "CoinMarketCap", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x3739426e21d912b604c106f852d136ba58f61517": { + "address": "0x3739426e21d912b604c106f852d136ba58f61517", + "symbol": "DOGGO", + "decimals": 18, + "name": "Doggo Inu", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x3739426e21d912b604c106f852d136ba58f61517.png", + "aggregators": [ + "CoinMarketCap", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x2597342ff387b63846eb456419590781c4bfcdaf": { + "address": "0x2597342ff387b63846eb456419590781c4bfcdaf", + "symbol": "TAXI", + "decimals": 18, + "name": "Robotaxi", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x2597342ff387b63846eb456419590781c4bfcdaf.png", + "aggregators": [ + "CoinMarketCap", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0xed2d1ef84a6a07dd49e8ca934908e9de005b7824": { + "address": "0xed2d1ef84a6a07dd49e8ca934908e9de005b7824", + "symbol": "WICKED", + "decimals": 18, + "name": "Wicked", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xed2d1ef84a6a07dd49e8ca934908e9de005b7824.png", + "aggregators": [ + "CoinMarketCap", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x7e7ef0ee0305c1c195fcae22fd7b207a813eef86": { + "address": "0x7e7ef0ee0305c1c195fcae22fd7b207a813eef86", + "symbol": "FIONA", + "decimals": 9, + "name": "Fiona", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x7e7ef0ee0305c1c195fcae22fd7b207a813eef86.png", + "aggregators": [ + "CoinMarketCap", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x103143acf2e717acf8f021823e86a1dbfe944fb5": { + "address": "0x103143acf2e717acf8f021823e86a1dbfe944fb5", + "symbol": "CHEESEBALL", + "decimals": 9, + "name": "Cheeseball the Wizard", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x103143acf2e717acf8f021823e86a1dbfe944fb5.png", + "aggregators": [ + "CoinMarketCap", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0xd0ebfe04adb5ef449ec5874e450810501dc53ed5": { + "address": "0xd0ebfe04adb5ef449ec5874e450810501dc53ed5", + "symbol": "BRUME", + "decimals": 18, + "name": "Brume", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xd0ebfe04adb5ef449ec5874e450810501dc53ed5.png", + "aggregators": [ + "CoinGecko", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x9f278dc799bbc61ecb8e5fb8035cbfa29803623b": { + "address": "0x9f278dc799bbc61ecb8e5fb8035cbfa29803623b", + "symbol": "BDX", + "decimals": 18, + "name": "Baby DragonX", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x9f278dc799bbc61ecb8e5fb8035cbfa29803623b.png", + "aggregators": [ + "CoinMarketCap", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x283d480dfd6921055e9c335fc177bf8cb9c94184": { + "address": "0x283d480dfd6921055e9c335fc177bf8cb9c94184", + "symbol": "VIX", + "decimals": 8, + "name": "VIX777", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x283d480dfd6921055e9c335fc177bf8cb9c94184.png", + "aggregators": [ + "CoinMarketCap", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0xa3bc09171c009f05df7f0b8aaa818ee42d8a91bc": { + "address": "0xa3bc09171c009f05df7f0b8aaa818ee42d8a91bc", + "symbol": "TSLA", + "decimals": 9, + "name": "TSLA6900", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xa3bc09171c009f05df7f0b8aaa818ee42d8a91bc.png", + "aggregators": [ + "CoinMarketCap", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x5981e98440e41fa993b26912b080922b8ed023c3": { + "address": "0x5981e98440e41fa993b26912b080922b8ed023c3", + "symbol": "MIHARU", + "decimals": 18, + "name": "Smiling Dolphin", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x5981e98440e41fa993b26912b080922b8ed023c3.png", + "aggregators": [ + "CoinGecko", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x11a7c8c9e9d5fc47134c305c59cebfcd1a4a9943": { + "address": "0x11a7c8c9e9d5fc47134c305c59cebfcd1a4a9943", + "symbol": "BOG", + "decimals": 18, + "name": "Bog", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x11a7c8c9e9d5fc47134c305c59cebfcd1a4a9943.png", + "aggregators": [ + "CoinMarketCap", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x1e762e1fac176bbb341656035daf5601b1c69be5": { + "address": "0x1e762e1fac176bbb341656035daf5601b1c69be5", + "symbol": "WEL", + "decimals": 18, + "name": "Welshare Health Token", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x1e762e1fac176bbb341656035daf5601b1c69be5.png", + "aggregators": [ + "CoinMarketCap", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x089453742936dd35134383aee9d78bee63a69b01": { + "address": "0x089453742936dd35134383aee9d78bee63a69b01", + "symbol": "GOLD", + "decimals": 18, + "name": "Gold", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x089453742936dd35134383aee9d78bee63a69b01.png", + "aggregators": [ + "CoinMarketCap", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0xeaa63125dd63f10874f99cdbbb18410e7fc79dd3": { + "address": "0xeaa63125dd63f10874f99cdbbb18410e7fc79dd3", + "symbol": "HEMULE", + "decimals": 18, + "name": "Hemule", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xeaa63125dd63f10874f99cdbbb18410e7fc79dd3.png", + "aggregators": [ + "CoinMarketCap", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0xff44b937788215eca197baaf9af69dbdc214aa04": { + "address": "0xff44b937788215eca197baaf9af69dbdc214aa04", + "symbol": "ROCKI", + "decimals": 18, + "name": "Rocki", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xff44b937788215eca197baaf9af69dbdc214aa04.png", + "aggregators": [ + "CoinMarketCap", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0xad996a45fd2373ed0b10efa4a8ecb9de445a4302": { + "address": "0xad996a45fd2373ed0b10efa4a8ecb9de445a4302", + "symbol": "SHI", + "decimals": 18, + "name": "Shirtum", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xad996a45fd2373ed0b10efa4a8ecb9de445a4302.png", + "aggregators": [ + "CoinMarketCap", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x6b89b97169a797d94f057f4a0b01e2ca303155e4": { + "address": "0x6b89b97169a797d94f057f4a0b01e2ca303155e4", + "symbol": "CHAD", + "decimals": 18, + "name": "Chad Coin", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x6b89b97169a797d94f057f4a0b01e2ca303155e4.png", + "aggregators": [ + "CoinMarketCap", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x80122c6a83c8202ea365233363d3f4837d13e888": { + "address": "0x80122c6a83c8202ea365233363d3f4837d13e888", + "symbol": "M87", + "decimals": 18, + "name": "MESSIER", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x80122c6a83c8202ea365233363d3f4837d13e888.png", + "aggregators": [ + "CoinMarketCap", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0xb9f599ce614feb2e1bbe58f180f370d05b39344e": { + "address": "0xb9f599ce614feb2e1bbe58f180f370d05b39344e", + "symbol": "PORK", + "decimals": 18, + "name": "PepeFork", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xb9f599ce614feb2e1bbe58f180f370d05b39344e.png", + "aggregators": [ + "CoinMarketCap", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x3b604747ad1720c01ded0455728b62c0d2f100f0": { + "address": "0x3b604747ad1720c01ded0455728b62c0d2f100f0", + "symbol": "WAGMIGAMES", + "decimals": 18, + "name": "WAGMI Games", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x3b604747ad1720c01ded0455728b62c0d2f100f0.png", + "aggregators": [ + "CoinMarketCap", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x7dedbce5a2e31e4c75f87fea60bf796c17718715": { + "address": "0x7dedbce5a2e31e4c75f87fea60bf796c17718715", + "symbol": "PNP", + "decimals": 18, + "name": "Penpie", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x7dedbce5a2e31e4c75f87fea60bf796c17718715.png", + "aggregators": [ + "CoinMarketCap", + "LiFi", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x44a023a4c32bdd2c89ee87ee76a2332b1a883012": { + "address": "0x44a023a4c32bdd2c89ee87ee76a2332b1a883012", + "symbol": "ZAZZLES", + "decimals": 9, + "name": "Zazzles", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x44a023a4c32bdd2c89ee87ee76a2332b1a883012.png", + "aggregators": [ + "CoinMarketCap", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0xf2a22b900dde3ba18ec2aef67d4c8c1a0dab6aac": { + "address": "0xf2a22b900dde3ba18ec2aef67d4c8c1a0dab6aac", + "symbol": "MONKEYS", + "decimals": 9, + "name": "Monkeys", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xf2a22b900dde3ba18ec2aef67d4c8c1a0dab6aac.png", + "aggregators": [ + "CoinMarketCap", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x064797ac7f833d01faeeae0e69f3af5a52a91fc8": { + "address": "0x064797ac7f833d01faeeae0e69f3af5a52a91fc8", + "symbol": "SU", + "decimals": 9, + "name": "Smol Su", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x064797ac7f833d01faeeae0e69f3af5a52a91fc8.png", + "aggregators": [ + "CoinMarketCap", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x0a58153a0cd1cfaea94ce1f7fdc5d7e679eca936": { + "address": "0x0a58153a0cd1cfaea94ce1f7fdc5d7e679eca936", + "symbol": "IM", + "decimals": 18, + "name": "Internet Money ETH", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x0a58153a0cd1cfaea94ce1f7fdc5d7e679eca936.png", + "aggregators": [ + "CoinMarketCap", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x1864ce27e9f7517047933caae530674e8c70b8a7": { + "address": "0x1864ce27e9f7517047933caae530674e8c70b8a7", + "symbol": "PIB", + "decimals": 18, + "name": "Pibble", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x1864ce27e9f7517047933caae530674e8c70b8a7.png", + "aggregators": [ + "CoinMarketCap", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x9afa9999e45484adf5d8eed8d9dfe0693bacd838": { + "address": "0x9afa9999e45484adf5d8eed8d9dfe0693bacd838", + "symbol": "EVERY", + "decimals": 18, + "name": "Everyworld", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x9afa9999e45484adf5d8eed8d9dfe0693bacd838.png", + "aggregators": [ + "CoinMarketCap", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x013062189dc3dcc99e9cee714c513033b8d99e3c": { + "address": "0x013062189dc3dcc99e9cee714c513033b8d99e3c", + "symbol": "INFRA", + "decimals": 18, + "name": "Bware", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x013062189dc3dcc99e9cee714c513033b8d99e3c.png", + "aggregators": [ + "CoinMarketCap", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0xa0f0546eb5e3ee7e8cfc5da12e5949f3ae622675": { + "address": "0xa0f0546eb5e3ee7e8cfc5da12e5949f3ae622675", + "symbol": "TOKO", + "decimals": 18, + "name": "Tokoin", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xa0f0546eb5e3ee7e8cfc5da12e5949f3ae622675.png", + "aggregators": [ + "CoinMarketCap", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0xb1a822ce8c799b0777ed1f260113819247e1bf26": { + "address": "0xb1a822ce8c799b0777ed1f260113819247e1bf26", + "symbol": "FTX", + "decimals": 18, + "name": "HairyPlotterFTX", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xb1a822ce8c799b0777ed1f260113819247e1bf26.png", + "aggregators": [ + "CoinMarketCap", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x66f73d0fd4161cfad4302dc145ff994375c13475": { + "address": "0x66f73d0fd4161cfad4302dc145ff994375c13475", + "symbol": "DXGM", + "decimals": 18, + "name": "DexGame", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x66f73d0fd4161cfad4302dc145ff994375c13475.png", + "aggregators": [ + "CoinMarketCap", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x357c915d7c12dc506d13332bb06c932af13e99a0": { + "address": "0x357c915d7c12dc506d13332bb06c932af13e99a0", + "symbol": "LUCKYSLP", + "decimals": 18, + "name": "LuckysLeprecoin", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x357c915d7c12dc506d13332bb06c932af13e99a0.png", + "aggregators": [ + "CoinMarketCap", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0xc6bdb96e29c38dc43f014eed44de4106a6a8eb5f": { + "address": "0xc6bdb96e29c38dc43f014eed44de4106a6a8eb5f", + "symbol": "INUINU", + "decimals": 18, + "name": "Inu Inu", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xc6bdb96e29c38dc43f014eed44de4106a6a8eb5f.png", + "aggregators": [ + "CoinMarketCap", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x2a79324c19ef2b89ea98b23bc669b7e7c9f8a517": { + "address": "0x2a79324c19ef2b89ea98b23bc669b7e7c9f8a517", + "symbol": "WAXP", + "decimals": 8, + "name": "WAX", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x2a79324c19ef2b89ea98b23bc669b7e7c9f8a517.png", + "aggregators": [ + "CoinMarketCap", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0xd105c45bcc7211f847ae73b187a41b7d8184ade2": { + "address": "0xd105c45bcc7211f847ae73b187a41b7d8184ade2", + "symbol": "NCASH", + "decimals": 18, + "name": "Nutcash", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xd105c45bcc7211f847ae73b187a41b7d8184ade2.png", + "aggregators": [ + "CoinMarketCap", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x9d1a7a3191102e9f900faa10540837ba84dcbae7": { + "address": "0x9d1a7a3191102e9f900faa10540837ba84dcbae7", + "symbol": "EURI", + "decimals": 18, + "name": "Eurite", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x9d1a7a3191102e9f900faa10540837ba84dcbae7.png", + "aggregators": [ + "CoinMarketCap", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x89e8e084cc60e6988527f0904b4be71656e8bfa9": { + "address": "0x89e8e084cc60e6988527f0904b4be71656e8bfa9", + "symbol": "SMOG", + "decimals": 6, + "name": "Smog", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x89e8e084cc60e6988527f0904b4be71656e8bfa9.png", + "aggregators": [ + "CoinMarketCap", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x6aa56e1d98b3805921c170eb4b3fe7d4fda6d89b": { + "address": "0x6aa56e1d98b3805921c170eb4b3fe7d4fda6d89b", + "symbol": "TRUMP", + "decimals": 9, + "name": "MAGA", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x6aa56e1d98b3805921c170eb4b3fe7d4fda6d89b.png", + "aggregators": [ + "CoinGecko", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x50d5118fb90d572b9d42ba65e0addc4900867809": { + "address": "0x50d5118fb90d572b9d42ba65e0addc4900867809", + "symbol": "OSEAN", + "decimals": 18, + "name": "Osean", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x50d5118fb90d572b9d42ba65e0addc4900867809.png", + "aggregators": [ + "CoinMarketCap", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x4e9e4ab99cfc14b852f552f5fb3aa68617825b6c": { + "address": "0x4e9e4ab99cfc14b852f552f5fb3aa68617825b6c", + "symbol": "SLR", + "decimals": 18, + "name": "Solarcoin", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x4e9e4ab99cfc14b852f552f5fb3aa68617825b6c.png", + "aggregators": [ + "CoinMarketCap", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x054c9d4c6f4ea4e14391addd1812106c97d05690": { + "address": "0x054c9d4c6f4ea4e14391addd1812106c97d05690", + "symbol": "LLD", + "decimals": 18, + "name": "Liberland LLD", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x054c9d4c6f4ea4e14391addd1812106c97d05690.png", + "aggregators": [ + "CoinMarketCap", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x75d86078625d1e2f612de2627d34c7bc411c18b8": { + "address": "0x75d86078625d1e2f612de2627d34c7bc411c18b8", + "symbol": "AGII", + "decimals": 18, + "name": "AGII", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x75d86078625d1e2f612de2627d34c7bc411c18b8.png", + "aggregators": [ + "CoinMarketCap", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x8db4beaccd1698892821a9a0dc367792c0cb9940": { + "address": "0x8db4beaccd1698892821a9a0dc367792c0cb9940", + "symbol": "4TOKEN", + "decimals": 18, + "name": "Ignore Fud", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x8db4beaccd1698892821a9a0dc367792c0cb9940.png", + "aggregators": [ + "CoinMarketCap", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0xc0b314a8c08637685fc3dafc477b92028c540cfb": { + "address": "0xc0b314a8c08637685fc3dafc477b92028c540cfb", + "symbol": "WOM", + "decimals": 18, + "name": "Wombat Exchange", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xc0b314a8c08637685fc3dafc477b92028c540cfb.png", + "aggregators": [ + "CoinMarketCap", + "LiFi", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x6731827cb6879a2091ce3ab3423f7bf20539b579": { + "address": "0x6731827cb6879a2091ce3ab3423f7bf20539b579", + "symbol": "MPWR", + "decimals": 18, + "name": "Empower", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x6731827cb6879a2091ce3ab3423f7bf20539b579.png", + "aggregators": [ + "CoinMarketCap", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0xe55d97a97ae6a17706ee281486e98a84095d8aaf": { + "address": "0xe55d97a97ae6a17706ee281486e98a84095d8aaf", + "symbol": "AIPAD", + "decimals": 18, + "name": "AIPad", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xe55d97a97ae6a17706ee281486e98a84095d8aaf.png", + "aggregators": [ + "CoinMarketCap", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x66d79b8f60ec93bfce0b56f5ac14a2714e509a99": { + "address": "0x66d79b8f60ec93bfce0b56f5ac14a2714e509a99", + "symbol": "MAPO", + "decimals": 18, + "name": "MAP Protocol", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x66d79b8f60ec93bfce0b56f5ac14a2714e509a99.png", + "aggregators": [ + "CoinMarketCap", + "LiFi", + "Socket", + "Rubic", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x3b9b5ad79cbb7649143decd5afc749a75f8e6c7f": { + "address": "0x3b9b5ad79cbb7649143decd5afc749a75f8e6c7f", + "symbol": "GORA", + "decimals": 18, + "name": "Gora", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x3b9b5ad79cbb7649143decd5afc749a75f8e6c7f.png", + "aggregators": [ + "CoinMarketCap", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x8287c7b963b405b7b8d467db9d79eec40625b13a": { + "address": "0x8287c7b963b405b7b8d467db9d79eec40625b13a", + "symbol": "SWINGBY", + "decimals": 18, + "name": "Swingby", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x8287c7b963b405b7b8d467db9d79eec40625b13a.png", + "aggregators": [ + "CoinMarketCap", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0xe0b0c16038845bed3fcf70304d3e167df81ce225": { + "address": "0xe0b0c16038845bed3fcf70304d3e167df81ce225", + "symbol": "CSWAP", + "decimals": 18, + "name": "CrossSwap", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xe0b0c16038845bed3fcf70304d3e167df81ce225.png", + "aggregators": [ + "CoinMarketCap", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x939b462ee3311f8926c047d2b576c389092b1649": { + "address": "0x939b462ee3311f8926c047d2b576c389092b1649", + "symbol": "DAPP", + "decimals": 4, + "name": "DAPP TOKEN", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x939b462ee3311f8926c047d2b576c389092b1649.png", + "aggregators": [ + "CoinMarketCap", + "Rubic", + "Rango", + "Sonarwatch", + "Bancor" + ], + "occurrences": 5 + }, + "0xf6719e1a8fcbb1b9c290019e37e004966a8916c9": { + "address": "0xf6719e1a8fcbb1b9c290019e37e004966a8916c9", + "symbol": "PGEN", + "decimals": 18, + "name": "Polygen", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xf6719e1a8fcbb1b9c290019e37e004966a8916c9.png", + "aggregators": [ + "CoinMarketCap", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x42baf1f659d765c65ade5bb7e08eb2c680360d9d": { + "address": "0x42baf1f659d765c65ade5bb7e08eb2c680360d9d", + "symbol": "COPI", + "decimals": 18, + "name": "Cornucopias", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x42baf1f659d765c65ade5bb7e08eb2c680360d9d.png", + "aggregators": [ + "CoinGecko", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x446f2a8a39cc730ef378be759a3c57f1a3fe824c": { + "address": "0x446f2a8a39cc730ef378be759a3c57f1a3fe824c", + "symbol": "NBT", + "decimals": 18, + "name": "NanoByte", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x446f2a8a39cc730ef378be759a3c57f1a3fe824c.png", + "aggregators": [ + "CoinMarketCap", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x345887cdb19e12833ed376bbf8b8b38269f5f5c8": { + "address": "0x345887cdb19e12833ed376bbf8b8b38269f5f5c8", + "symbol": "CSIX", + "decimals": 18, + "name": "Carbon Browser", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x345887cdb19e12833ed376bbf8b8b38269f5f5c8.png", + "aggregators": [ + "CoinMarketCap", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0xe636f94a71ec52cc61ef21787ae351ad832347b7": { + "address": "0xe636f94a71ec52cc61ef21787ae351ad832347b7", + "symbol": "CREO", + "decimals": 18, + "name": "Creo Engine", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xe636f94a71ec52cc61ef21787ae351ad832347b7.png", + "aggregators": [ + "CoinMarketCap", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x1901f826dfcbfd9d3138936932366b3493a50893": { + "address": "0x1901f826dfcbfd9d3138936932366b3493a50893", + "symbol": "SPHYNX", + "decimals": 18, + "name": "Sphynx Labs", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x1901f826dfcbfd9d3138936932366b3493a50893.png", + "aggregators": [ + "CoinMarketCap", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0xdb0170e2d0c1cc1b2e7a90313d9b9afa4f250289": { + "address": "0xdb0170e2d0c1cc1b2e7a90313d9b9afa4f250289", + "symbol": "ADAPAD", + "decimals": 18, + "name": "ADAPad", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xdb0170e2d0c1cc1b2e7a90313d9b9afa4f250289.png", + "aggregators": [ + "CoinMarketCap", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0xd373576a9e738f37dc6882328358ff69c4caf4c6": { + "address": "0xd373576a9e738f37dc6882328358ff69c4caf4c6", + "symbol": "ZAM", + "decimals": 18, + "name": "Zam io", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xd373576a9e738f37dc6882328358ff69c4caf4c6.png", + "aggregators": [ + "CoinMarketCap", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x2b867efd2de4ad2b583ca0cb3df9c4040ef4d329": { + "address": "0x2b867efd2de4ad2b583ca0cb3df9c4040ef4d329", + "symbol": "LBLOCK", + "decimals": 9, + "name": "Lucky Block", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x2b867efd2de4ad2b583ca0cb3df9c4040ef4d329.png", + "aggregators": [ + "CoinMarketCap", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x61ec85ab89377db65762e234c946b5c25a56e99e": { + "address": "0x61ec85ab89377db65762e234c946b5c25a56e99e", + "symbol": "HTX", + "decimals": 18, + "name": "HTX DAO", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x61ec85ab89377db65762e234c946b5c25a56e99e.png", + "aggregators": [ + "CoinMarketCap", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0xc36983d3d9d379ddfb306dfb919099cb6730e355": { + "address": "0xc36983d3d9d379ddfb306dfb919099cb6730e355", + "symbol": "COLLE", + "decimals": 18, + "name": "Colle AI", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xc36983d3d9d379ddfb306dfb919099cb6730e355.png", + "aggregators": [ + "CoinMarketCap", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0xa10bf0aba0c7953f279c4cb8192d3b5de5ea56e8": { + "address": "0xa10bf0aba0c7953f279c4cb8192d3b5de5ea56e8", + "symbol": "TAROT", + "decimals": 18, + "name": "Tarot", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xa10bf0aba0c7953f279c4cb8192d3b5de5ea56e8.png", + "aggregators": [ + "CoinMarketCap", + "LiFi", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x901a020915bc3577d85d29f68024b4c5e240b8cd": { + "address": "0x901a020915bc3577d85d29f68024b4c5e240b8cd", + "symbol": "BLASTUP", + "decimals": 18, + "name": "BlastUP", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x901a020915bc3577d85d29f68024b4c5e240b8cd.png", + "aggregators": [ + "CoinMarketCap", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0xe04f47ff45576249bc5083dfdf987e03d0550113": { + "address": "0xe04f47ff45576249bc5083dfdf987e03d0550113", + "symbol": "SAMA", + "decimals": 18, + "name": "Moonsama", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xe04f47ff45576249bc5083dfdf987e03d0550113.png", + "aggregators": [ + "CoinMarketCap", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x48b847cf774a5710f36f594b11fc10e2e59bba72": { + "address": "0x48b847cf774a5710f36f594b11fc10e2e59bba72", + "symbol": "UNIT0", + "decimals": 18, + "name": "Unit0", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x48b847cf774a5710f36f594b11fc10e2e59bba72.png", + "aggregators": [ + "CoinMarketCap", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x791a5c2261823dbf69b27b63e851b7745532cfa2": { + "address": "0x791a5c2261823dbf69b27b63e851b7745532cfa2", + "symbol": "TUA", + "decimals": 18, + "name": "Atua AI", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x791a5c2261823dbf69b27b63e851b7745532cfa2.png", + "aggregators": [ + "CoinMarketCap", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x0a77ef9bf662d62fbf9ba4cf861eaa83f9cc4fec": { + "address": "0x0a77ef9bf662d62fbf9ba4cf861eaa83f9cc4fec", + "symbol": "XWG", + "decimals": 18, + "name": "X World Games", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x0a77ef9bf662d62fbf9ba4cf861eaa83f9cc4fec.png", + "aggregators": [ + "CoinMarketCap", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0xb2492e97a68a6e4b9e9a11b99f6c42e5accd38c7": { + "address": "0xb2492e97a68a6e4b9e9a11b99f6c42e5accd38c7", + "symbol": "VEXT", + "decimals": 18, + "name": "Veloce", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xb2492e97a68a6e4b9e9a11b99f6c42e5accd38c7.png", + "aggregators": [ + "CoinMarketCap", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x56c03b8c4fa80ba37f5a7b60caaaef749bb5b220": { + "address": "0x56c03b8c4fa80ba37f5a7b60caaaef749bb5b220", + "symbol": "CANTO", + "decimals": 18, + "name": "CANTO", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x56c03b8c4fa80ba37f5a7b60caaaef749bb5b220.png", + "aggregators": [ + "CoinMarketCap", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0xb63b606ac810a52cca15e44bb630fd42d8d1d83d": { + "address": "0xb63b606ac810a52cca15e44bb630fd42d8d1d83d", + "symbol": "MCO", + "decimals": 8, + "name": "MCO", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xb63b606ac810a52cca15e44bb630fd42d8d1d83d.png", + "aggregators": [ + "CoinMarketCap", + "LiFi", + "Socket", + "Rubic", + "Rango" + ], + "occurrences": 5 + }, + "0xc237868a9c5729bdf3173dddacaa336a0a5bb6e0": { + "address": "0xc237868a9c5729bdf3173dddacaa336a0a5bb6e0", + "symbol": "WGR", + "decimals": 8, + "name": "Wagerr", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xc237868a9c5729bdf3173dddacaa336a0a5bb6e0.png", + "aggregators": [ + "CoinMarketCap", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0xfca47962d45adfdfd1ab2d972315db4ce7ccf094": { + "address": "0xfca47962d45adfdfd1ab2d972315db4ce7ccf094", + "symbol": "IXT", + "decimals": 8, + "name": "iXledger", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xfca47962d45adfdfd1ab2d972315db4ce7ccf094.png", + "aggregators": [ + "CoinMarketCap", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x3d1ba9be9f66b8ee101911bc36d3fb562eac2244": { + "address": "0x3d1ba9be9f66b8ee101911bc36d3fb562eac2244", + "symbol": "RVT", + "decimals": 18, + "name": "RvT", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x3d1ba9be9f66b8ee101911bc36d3fb562eac2244.png", + "aggregators": [ + "CoinMarketCap", + "LiFi", + "Rubic", + "Rango", + "Bancor" + ], + "occurrences": 5 + }, + "0x4a8f5f96d5436e43112c2fbc6a9f70da9e4e16d4": { + "address": "0x4a8f5f96d5436e43112c2fbc6a9f70da9e4e16d4", + "symbol": "INXT", + "decimals": 8, + "name": "Internxt", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x4a8f5f96d5436e43112c2fbc6a9f70da9e4e16d4.png", + "aggregators": [ + "CoinMarketCap", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x0c37bcf456bc661c14d596683325623076d7e283": { + "address": "0x0c37bcf456bc661c14d596683325623076d7e283", + "symbol": "ARNX", + "decimals": 18, + "name": "Aeron", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x0c37bcf456bc661c14d596683325623076d7e283.png", + "aggregators": [ + "CoinMarketCap", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x618e75ac90b12c6049ba3b27f5d5f8651b0037f6": { + "address": "0x618e75ac90b12c6049ba3b27f5d5f8651b0037f6", + "symbol": "QASH", + "decimals": 6, + "name": "QASH", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x618e75ac90b12c6049ba3b27f5d5f8651b0037f6.png", + "aggregators": [ + "CoinMarketCap", + "Socket", + "Rubic", + "Rango", + "Bancor" + ], + "occurrences": 5 + }, + "0x558ec3152e2eb2174905cd19aea4e34a23de9ad6": { + "address": "0x558ec3152e2eb2174905cd19aea4e34a23de9ad6", + "symbol": "BRD", + "decimals": 18, + "name": "Bread", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x558ec3152e2eb2174905cd19aea4e34a23de9ad6.png", + "aggregators": [ + "CoinMarketCap", + "LiFi", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0xd2d6158683aee4cc838067727209a0aaf4359de3": { + "address": "0xd2d6158683aee4cc838067727209a0aaf4359de3", + "symbol": "BNTY", + "decimals": 18, + "name": "Bounty0x Token", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xd2d6158683aee4cc838067727209a0aaf4359de3.png", + "aggregators": [ + "CoinMarketCap", + "LiFi", + "Socket", + "Rubic", + "Rango" + ], + "occurrences": 5 + }, + "0xe477292f1b3268687a29376116b0ed27a9c76170": { + "address": "0xe477292f1b3268687a29376116b0ed27a9c76170", + "symbol": "PLAY", + "decimals": 18, + "name": "Herocoin", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xe477292f1b3268687a29376116b0ed27a9c76170.png", + "aggregators": ["Metamask", "LiFi", "Socket", "Rubic", "Rango"], + "occurrences": 5 + }, + "0xb70835d7822ebb9426b56543e391846c107bd32c": { + "address": "0xb70835d7822ebb9426b56543e391846c107bd32c", + "symbol": "GTC", + "decimals": 18, + "name": "Game", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xb70835d7822ebb9426b56543e391846c107bd32c.png", + "aggregators": [ + "CoinMarketCap", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x79650799e7899a802cb96c0bc33a6a8d4ce4936c": { + "address": "0x79650799e7899a802cb96c0bc33a6a8d4ce4936c", + "symbol": "AIT", + "decimals": 18, + "name": "AICHAIN", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x79650799e7899a802cb96c0bc33a6a8d4ce4936c.png", + "aggregators": [ + "CoinMarketCap", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x3a92bd396aef82af98ebc0aa9030d25a23b11c6b": { + "address": "0x3a92bd396aef82af98ebc0aa9030d25a23b11c6b", + "symbol": "TBX", + "decimals": 18, + "name": "Tokenbox", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x3a92bd396aef82af98ebc0aa9030d25a23b11c6b.png", + "aggregators": [ + "CoinMarketCap", + "LiFi", + "Rubic", + "Rango", + "Bancor" + ], + "occurrences": 5 + }, + "0xd49ff13661451313ca1553fd6954bd1d9b6e02b9": { + "address": "0xd49ff13661451313ca1553fd6954bd1d9b6e02b9", + "symbol": "ELEC", + "decimals": 18, + "name": "Electrify Asia", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xd49ff13661451313ca1553fd6954bd1d9b6e02b9.png", + "aggregators": [ + "CoinMarketCap", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0xa13f0743951b4f6e3e3aa039f682e17279f52bc3": { + "address": "0xa13f0743951b4f6e3e3aa039f682e17279f52bc3", + "symbol": "SENC", + "decimals": 18, + "name": "Sentinel Chain", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xa13f0743951b4f6e3e3aa039f682e17279f52bc3.png", + "aggregators": [ + "CoinMarketCap", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0xfe5f141bf94fe84bc28ded0ab966c16b17490657": { + "address": "0xfe5f141bf94fe84bc28ded0ab966c16b17490657", + "symbol": "LBA", + "decimals": 18, + "name": "Libra Credit", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xfe5f141bf94fe84bc28ded0ab966c16b17490657.png", + "aggregators": [ + "CoinMarketCap", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x0f8c45b896784a1e408526b9300519ef8660209c": { + "address": "0x0f8c45b896784a1e408526b9300519ef8660209c", + "symbol": "XMX", + "decimals": 8, + "name": "XMax", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x0f8c45b896784a1e408526b9300519ef8660209c.png", + "aggregators": [ + "CoinMarketCap", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x846c66cf71c43f80403b51fe3906b3599d63336f": { + "address": "0x846c66cf71c43f80403b51fe3906b3599d63336f", + "symbol": "PMA", + "decimals": 18, + "name": "PumaPay", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x846c66cf71c43f80403b51fe3906b3599d63336f.png", + "aggregators": [ + "CoinMarketCap", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x0b5326da634f9270fb84481dd6f94d3dc2ca7096": { + "address": "0x0b5326da634f9270fb84481dd6f94d3dc2ca7096", + "symbol": "ETHO", + "decimals": 18, + "name": "Etho Protocol", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x0b5326da634f9270fb84481dd6f94d3dc2ca7096.png", + "aggregators": [ + "CoinMarketCap", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0xfe39c384d702914127a005523f9915addb9bd59b": { + "address": "0xfe39c384d702914127a005523f9915addb9bd59b", + "symbol": "HPO", + "decimals": 18, + "name": "Hippocrat", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xfe39c384d702914127a005523f9915addb9bd59b.png", + "aggregators": [ + "CoinMarketCap", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0xa4bdb11dc0a2bec88d24a3aa1e6bb17201112ebe": { + "address": "0xa4bdb11dc0a2bec88d24a3aa1e6bb17201112ebe", + "symbol": "USDS", + "decimals": 6, + "name": "StableUSD", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xa4bdb11dc0a2bec88d24a3aa1e6bb17201112ebe.png", + "aggregators": ["Metamask", "LiFi", "Socket", "Rubic", "Rango"], + "occurrences": 5 + }, + "0xaec7d1069e3a914a3eb50f0bfb1796751f2ce48a": { + "address": "0xaec7d1069e3a914a3eb50f0bfb1796751f2ce48a", + "symbol": "S4F", + "decimals": 18, + "name": "S4FE", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xaec7d1069e3a914a3eb50f0bfb1796751f2ce48a.png", + "aggregators": [ + "CoinMarketCap", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x4a57e687b9126435a9b19e4a802113e266adebde": { + "address": "0x4a57e687b9126435a9b19e4a802113e266adebde", + "symbol": "FXC", + "decimals": 18, + "name": "Flexacoin", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x4a57e687b9126435a9b19e4a802113e266adebde.png", + "aggregators": [ + "CoinMarketCap", + "LiFi", + "Rubic", + "Rango", + "Bancor" + ], + "occurrences": 5 + }, + "0x115ec79f1de567ec68b7ae7eda501b406626478e": { + "address": "0x115ec79f1de567ec68b7ae7eda501b406626478e", + "symbol": "CRE", + "decimals": 18, + "name": "Carry", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x115ec79f1de567ec68b7ae7eda501b406626478e.png", + "aggregators": [ + "CoinMarketCap", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0xd31695a1d35e489252ce57b129fd4b1b05e6acac": { + "address": "0xd31695a1d35e489252ce57b129fd4b1b05e6acac", + "symbol": "TKP", + "decimals": 18, + "name": "TOKPIE", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xd31695a1d35e489252ce57b129fd4b1b05e6acac.png", + "aggregators": [ + "CoinMarketCap", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0xc03fbf20a586fa89c2a5f6f941458e1fbc40c661": { + "address": "0xc03fbf20a586fa89c2a5f6f941458e1fbc40c661", + "symbol": "COMBO", + "decimals": 18, + "name": "COMBO", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xc03fbf20a586fa89c2a5f6f941458e1fbc40c661.png", + "aggregators": [ + "CoinMarketCap", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x42a501903afaa1086b5975773375c80e363f4063": { + "address": "0x42a501903afaa1086b5975773375c80e363f4063", + "symbol": "CTK", + "decimals": 8, + "name": "Cryptyk", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x42a501903afaa1086b5975773375c80e363f4063.png", + "aggregators": [ + "CoinMarketCap", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0xe0b9bcd54bf8a730ea5d3f1ffce0885e911a502c": { + "address": "0xe0b9bcd54bf8a730ea5d3f1ffce0885e911a502c", + "symbol": "ZUM", + "decimals": 8, + "name": "ZUM", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xe0b9bcd54bf8a730ea5d3f1ffce0885e911a502c.png", + "aggregators": [ + "CoinMarketCap", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x5b322514ff727253292637d9054301600c2c81e8": { + "address": "0x5b322514ff727253292637d9054301600c2c81e8", + "symbol": "DAD", + "decimals": 9, + "name": "DAD", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x5b322514ff727253292637d9054301600c2c81e8.png", + "aggregators": [ + "CoinMarketCap", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x9b9647431632af44be02ddd22477ed94d14aacaa": { + "address": "0x9b9647431632af44be02ddd22477ed94d14aacaa", + "symbol": "KOK", + "decimals": 18, + "name": "KOK", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x9b9647431632af44be02ddd22477ed94d14aacaa.png", + "aggregators": [ + "CoinMarketCap", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0xcd62b1c403fa761baadfc74c525ce2b51780b184": { + "address": "0xcd62b1c403fa761baadfc74c525ce2b51780b184", + "symbol": "ANJ", + "decimals": 18, + "name": "ANJ", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xcd62b1c403fa761baadfc74c525ce2b51780b184.png", + "aggregators": ["CoinMarketCap", "1inch", "LiFi", "Rubic", "Rango"], + "occurrences": 5 + }, + "0x8185bc4757572da2a610f887561c32298f1a5748": { + "address": "0x8185bc4757572da2a610f887561c32298f1a5748", + "symbol": "ALN", + "decimals": 18, + "name": "Aluna", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x8185bc4757572da2a610f887561c32298f1a5748.png", + "aggregators": [ + "CoinMarketCap", + "LiFi", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0xf5238462e7235c7b62811567e63dd17d12c2eaa0": { + "address": "0xf5238462e7235c7b62811567e63dd17d12c2eaa0", + "symbol": "CGT", + "decimals": 8, + "name": "CACHE Gold", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xf5238462e7235c7b62811567e63dd17d12c2eaa0.png", + "aggregators": [ + "CoinMarketCap", + "LiFi", + "Socket", + "Rubic", + "Bancor" + ], + "occurrences": 5 + }, + "0x4168bbc34baea34e55721809911bca5baaef6ba6": { + "address": "0x4168bbc34baea34e55721809911bca5baaef6ba6", + "symbol": "CEP", + "decimals": 18, + "name": "CEREAL", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x4168bbc34baea34e55721809911bca5baaef6ba6.png", + "aggregators": [ + "CoinMarketCap", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0xcd6926193308d3b371fdd6a6219067e550000000": { + "address": "0xcd6926193308d3b371fdd6a6219067e550000000", + "symbol": "NEST", + "decimals": 18, + "name": "Nest Protocol", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xcd6926193308d3b371fdd6a6219067e550000000.png", + "aggregators": [ + "CoinMarketCap", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0xeeeeeeeee2af8d0e1940679860398308e0ef24d6": { + "address": "0xeeeeeeeee2af8d0e1940679860398308e0ef24d6", + "symbol": "ETHV", + "decimals": 18, + "name": "ETHV", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xeeeeeeeee2af8d0e1940679860398308e0ef24d6.png", + "aggregators": [ + "CoinMarketCap", + "LiFi", + "Socket", + "Rubic", + "Rango" + ], + "occurrences": 5 + }, + "0x39d30828a163713d91c4eadbba2c497a9139ec5c": { + "address": "0x39d30828a163713d91c4eadbba2c497a9139ec5c", + "symbol": "HBDC", + "decimals": 18, + "name": "Happy Birthday Coin", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x39d30828a163713d91c4eadbba2c497a9139ec5c.png", + "aggregators": [ + "CoinMarketCap", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0xba21ef4c9f433ede00badefcc2754b8e74bd538a": { + "address": "0xba21ef4c9f433ede00badefcc2754b8e74bd538a", + "symbol": "SWFL", + "decimals": 18, + "name": "Swapfolio", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xba21ef4c9f433ede00badefcc2754b8e74bd538a.png", + "aggregators": [ + "CoinMarketCap", + "1inch", + "TrustWallet", + "Rubic", + "Rango" + ], + "occurrences": 5 + }, + "0xe63684bcf2987892cefb4caa79bd21b34e98a291": { + "address": "0xe63684bcf2987892cefb4caa79bd21b34e98a291", + "symbol": "KFC", + "decimals": 18, + "name": "Chicken", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xe63684bcf2987892cefb4caa79bd21b34e98a291.png", + "aggregators": [ + "CoinMarketCap", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x3a8cccb969a61532d1e6005e2ce12c200caece87": { + "address": "0x3a8cccb969a61532d1e6005e2ce12c200caece87", + "symbol": "TITAN", + "decimals": 18, + "name": "TitanSwap", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x3a8cccb969a61532d1e6005e2ce12c200caece87.png", + "aggregators": [ + "CoinMarketCap", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x78f225869c08d478c34e5f645d07a87d3fe8eb78": { + "address": "0x78f225869c08d478c34e5f645d07a87d3fe8eb78", + "symbol": "DEFI+L", + "decimals": 18, + "name": "PieDAO DEFI Large Cap", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x78f225869c08d478c34e5f645d07a87d3fe8eb78.png", + "aggregators": [ + "CoinMarketCap", + "LiFi", + "Rubic", + "Rango", + "SushiSwap" + ], + "occurrences": 5 + }, + "0x9ceb84f92a0561fa3cc4132ab9c0b76a59787544": { + "address": "0x9ceb84f92a0561fa3cc4132ab9c0b76a59787544", + "symbol": "DOKI", + "decimals": 18, + "name": "Doki Doki Finance", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x9ceb84f92a0561fa3cc4132ab9c0b76a59787544.png", + "aggregators": [ + "CoinMarketCap", + "LiFi", + "TrustWallet", + "Socket", + "Rubic" + ], + "occurrences": 5 + }, + "0x1cbb83ebcd552d5ebf8131ef8c9cd9d9bab342bc": { + "address": "0x1cbb83ebcd552d5ebf8131ef8c9cd9d9bab342bc", + "symbol": "NFY", + "decimals": 18, + "name": "Non-Fungible Yearn", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x1cbb83ebcd552d5ebf8131ef8c9cd9d9bab342bc.png", + "aggregators": [ + "CoinMarketCap", + "1inch", + "TrustWallet", + "Rubic", + "Rango" + ], + "occurrences": 5 + }, + "0xb1e9157c2fdcc5a856c8da8b2d89b6c32b3c1229": { + "address": "0xb1e9157c2fdcc5a856c8da8b2d89b6c32b3c1229", + "symbol": "ZEFU", + "decimals": 18, + "name": "Zenfuse", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xb1e9157c2fdcc5a856c8da8b2d89b6c32b3c1229.png", + "aggregators": [ + "CoinMarketCap", + "LiFi", + "TrustWallet", + "Socket", + "Rubic" + ], + "occurrences": 5 + }, + "0xa8e7ad77c60ee6f30bac54e2e7c0617bd7b5a03e": { + "address": "0xa8e7ad77c60ee6f30bac54e2e7c0617bd7b5a03e", + "symbol": "ZLOT", + "decimals": 18, + "name": "zLot Finance", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xa8e7ad77c60ee6f30bac54e2e7c0617bd7b5a03e.png", + "aggregators": [ + "CoinMarketCap", + "LiFi", + "Rubic", + "Rango", + "SushiSwap" + ], + "occurrences": 5 + }, + "0xca3fe04c7ee111f0bbb02c328c699226acf9fd33": { + "address": "0xca3fe04c7ee111f0bbb02c328c699226acf9fd33", + "symbol": "SEEN", + "decimals": 18, + "name": "seen.haus", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xca3fe04c7ee111f0bbb02c328c699226acf9fd33.png", + "aggregators": [ + "CoinMarketCap", + "LiFi", + "Rubic", + "Rango", + "SushiSwap" + ], + "occurrences": 5 + }, + "0x72630b1e3b42874bf335020ba0249e3e9e47bafc": { + "address": "0x72630b1e3b42874bf335020ba0249e3e9e47bafc", + "symbol": "EPAN", + "decimals": 18, + "name": "Paypolitan Token", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x72630b1e3b42874bf335020ba0249e3e9e47bafc.png", + "aggregators": [ + "CoinMarketCap", + "TrustWallet", + "Socket", + "Rubic", + "Rango" + ], + "occurrences": 5 + }, + "0xec681f28f4561c2a9534799aa38e0d36a83cf478": { + "address": "0xec681f28f4561c2a9534799aa38e0d36a83cf478", + "symbol": "YVS", + "decimals": 18, + "name": "YVS.Finance", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xec681f28f4561c2a9534799aa38e0d36a83cf478.png", + "aggregators": ["CoinMarketCap", "1inch", "LiFi", "Rubic", "Rango"], + "occurrences": 5 + }, + "0xd90e69f67203ebe02c917b5128629e77b4cd92dc": { + "address": "0xd90e69f67203ebe02c917b5128629e77b4cd92dc", + "symbol": "ONC", + "decimals": 18, + "name": "One Cash", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xd90e69f67203ebe02c917b5128629e77b4cd92dc.png", + "aggregators": [ + "CoinMarketCap", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x9b02dd390a603add5c07f9fd9175b7dabe8d63b7": { + "address": "0x9b02dd390a603add5c07f9fd9175b7dabe8d63b7", + "symbol": "SPI", + "decimals": 18, + "name": "Shopping.io", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x9b02dd390a603add5c07f9fd9175b7dabe8d63b7.png", + "aggregators": [ + "CoinMarketCap", + "LiFi", + "TrustWallet", + "Socket", + "Rubic" + ], + "occurrences": 5 + }, + "0xad3e3fc59dff318beceaab7d00eb4f68b1ecf195": { + "address": "0xad3e3fc59dff318beceaab7d00eb4f68b1ecf195", + "symbol": "WCUSD", + "decimals": 18, + "name": "Wrapped Celo Dollar", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xad3e3fc59dff318beceaab7d00eb4f68b1ecf195.png", + "aggregators": [ + "CoinMarketCap", + "LiFi", + "Rubic", + "Rango", + "SushiSwap" + ], + "occurrences": 5 + }, + "0x6d52dfefb16bb9cdc78bfca09061e44574886626": { + "address": "0x6d52dfefb16bb9cdc78bfca09061e44574886626", + "symbol": "CPU", + "decimals": 18, + "name": "CPUcoin", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x6d52dfefb16bb9cdc78bfca09061e44574886626.png", + "aggregators": [ + "CoinMarketCap", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x3a8d5bc8a8948b68dfc0ce9c14ac4150e083518c": { + "address": "0x3a8d5bc8a8948b68dfc0ce9c14ac4150e083518c", + "symbol": "PARA", + "decimals": 18, + "name": "Paralink Network", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x3a8d5bc8a8948b68dfc0ce9c14ac4150e083518c.png", + "aggregators": [ + "CoinMarketCap", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0xe4f726adc8e89c6a6017f01eada77865db22da14": { + "address": "0xe4f726adc8e89c6a6017f01eada77865db22da14", + "symbol": "BCP", + "decimals": 18, + "name": "PieDAO Balance Crypto Pie", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xe4f726adc8e89c6a6017f01eada77865db22da14.png", + "aggregators": [ + "CoinMarketCap", + "LiFi", + "Rubic", + "Rango", + "SushiSwap" + ], + "occurrences": 5 + }, + "0x69d9905b2e5f6f5433212b7f3c954433f23c1572": { + "address": "0x69d9905b2e5f6f5433212b7f3c954433f23c1572", + "symbol": "OOKS", + "decimals": 18, + "name": "Onooks", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x69d9905b2e5f6f5433212b7f3c954433f23c1572.png", + "aggregators": [ + "CoinMarketCap", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0xf680429328caaacabee69b7a9fdb21a71419c063": { + "address": "0xf680429328caaacabee69b7a9fdb21a71419c063", + "symbol": "BFLY", + "decimals": 18, + "name": "Butterfly Protocol Governance Token", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xf680429328caaacabee69b7a9fdb21a71419c063.png", + "aggregators": [ + "CoinMarketCap", + "LiFi", + "Socket", + "Rubic", + "Rango" + ], + "occurrences": 5 + }, + "0xfa6de2697d59e88ed7fc4dfe5a33dac43565ea41": { + "address": "0xfa6de2697d59e88ed7fc4dfe5a33dac43565ea41", + "symbol": "DEFI5", + "decimals": 18, + "name": "DEFI Top 5 Tokens Index", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xfa6de2697d59e88ed7fc4dfe5a33dac43565ea41.png", + "aggregators": [ + "CoinMarketCap", + "LiFi", + "Socket", + "Rubic", + "Rango" + ], + "occurrences": 5 + }, + "0x831091da075665168e01898c6dac004a867f1e1b": { + "address": "0x831091da075665168e01898c6dac004a867f1e1b", + "symbol": "GFARM2", + "decimals": 18, + "name": "Gains Farm v2", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x831091da075665168e01898c6dac004a867f1e1b.png", + "aggregators": [ + "CoinMarketCap", + "LiFi", + "Rubic", + "Rango", + "SushiSwap" + ], + "occurrences": 5 + }, + "0x7f1f2d3dfa99678675ece1c243d3f7bc3746db5d": { + "address": "0x7f1f2d3dfa99678675ece1c243d3f7bc3746db5d", + "symbol": "TAP", + "decimals": 18, + "name": "TAP", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x7f1f2d3dfa99678675ece1c243d3f7bc3746db5d.png", + "aggregators": [ + "CoinMarketCap", + "LiFi", + "Socket", + "Rubic", + "Rango" + ], + "occurrences": 5 + }, + "0x2af72850c504ddd3c1876c66a914caee7ff8a46a": { + "address": "0x2af72850c504ddd3c1876c66a914caee7ff8a46a", + "symbol": "WHL", + "decimals": 18, + "name": "WhaleRoom", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x2af72850c504ddd3c1876c66a914caee7ff8a46a.png", + "aggregators": [ + "CoinMarketCap", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x657b83a0336561c8f64389a6f5ade675c04b0c3b": { + "address": "0x657b83a0336561c8f64389a6f5ade675c04b0c3b", + "symbol": "PCNT", + "decimals": 18, + "name": "Playcent", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x657b83a0336561c8f64389a6f5ade675c04b0c3b.png", + "aggregators": [ + "CoinMarketCap", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0xb20043f149817bff5322f1b928e89abfc65a9925": { + "address": "0xb20043f149817bff5322f1b928e89abfc65a9925", + "symbol": "EXRT", + "decimals": 8, + "name": "EXRT", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xb20043f149817bff5322f1b928e89abfc65a9925.png", + "aggregators": [ + "CoinMarketCap", + "1inch", + "Socket", + "Rubic", + "Rango" + ], + "occurrences": 5 + }, + "0xfa2562da1bba7b954f26c74725df51fb62646313": { + "address": "0xfa2562da1bba7b954f26c74725df51fb62646313", + "symbol": "ASSY", + "decimals": 18, + "name": "ASSY Index", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xfa2562da1bba7b954f26c74725df51fb62646313.png", + "aggregators": [ + "CoinMarketCap", + "LiFi", + "Rubic", + "Rango", + "SushiSwap" + ], + "occurrences": 5 + }, + "0xa42f266684ac2ad6ecb00df95b1c76efbb6f136c": { + "address": "0xa42f266684ac2ad6ecb00df95b1c76efbb6f136c", + "symbol": "CATE", + "decimals": 18, + "name": "Cash Tech", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xa42f266684ac2ad6ecb00df95b1c76efbb6f136c.png", + "aggregators": [ + "CoinMarketCap", + "1inch", + "Socket", + "Rubic", + "Rango" + ], + "occurrences": 5 + }, + "0xbed4ab0019ff361d83ddeb74883dac8a70f5ea1e": { + "address": "0xbed4ab0019ff361d83ddeb74883dac8a70f5ea1e", + "symbol": "MRCH", + "decimals": 18, + "name": "MerchDAO", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xbed4ab0019ff361d83ddeb74883dac8a70f5ea1e.png", + "aggregators": [ + "CoinMarketCap", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x0b6f3c17e1626a7cbfa4302ce4e3c45522d23a83": { + "address": "0x0b6f3c17e1626a7cbfa4302ce4e3c45522d23a83", + "symbol": "WAD", + "decimals": 18, + "name": "WardenSwap", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x0b6f3c17e1626a7cbfa4302ce4e3c45522d23a83.png", + "aggregators": [ + "CoinMarketCap", + "LiFi", + "Socket", + "Rubic", + "Rango" + ], + "occurrences": 5 + }, + "0x896e145568624a498c5a909187363ae947631503": { + "address": "0x896e145568624a498c5a909187363ae947631503", + "symbol": "WASABI", + "decimals": 18, + "name": "Wasabi", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x896e145568624a498c5a909187363ae947631503.png", + "aggregators": [ + "CoinMarketCap", + "LiFi", + "Rubic", + "Rango", + "SushiSwap" + ], + "occurrences": 5 + }, + "0x06677dc4fe12d3ba3c7ccfd0df8cd45e4d4095bf": { + "address": "0x06677dc4fe12d3ba3c7ccfd0df8cd45e4d4095bf", + "symbol": "WQT", + "decimals": 18, + "name": "Work Quest", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x06677dc4fe12d3ba3c7ccfd0df8cd45e4d4095bf.png", + "aggregators": [ + "CoinMarketCap", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x5eaa69b29f99c84fe5de8200340b4e9b4ab38eac": { + "address": "0x5eaa69b29f99c84fe5de8200340b4e9b4ab38eac", + "symbol": "RAZE", + "decimals": 18, + "name": "Raze Network", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x5eaa69b29f99c84fe5de8200340b4e9b4ab38eac.png", + "aggregators": [ + "CoinMarketCap", + "LiFi", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x944eee930933be5e23b690c8589021ec8619a301": { + "address": "0x944eee930933be5e23b690c8589021ec8619a301", + "symbol": "MUNCH", + "decimals": 9, + "name": "MUNCH Token", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x944eee930933be5e23b690c8589021ec8619a301.png", + "aggregators": [ + "CoinMarketCap", + "1inch", + "Socket", + "Rubic", + "Rango" + ], + "occurrences": 5 + }, + "0x1f8a626883d7724dbd59ef51cbd4bf1cf2016d13": { + "address": "0x1f8a626883d7724dbd59ef51cbd4bf1cf2016d13", + "symbol": "STAK", + "decimals": 18, + "name": "Jigstack", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x1f8a626883d7724dbd59ef51cbd4bf1cf2016d13.png", + "aggregators": [ + "CoinMarketCap", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0xd714d91a169127e11d8fab3665d72e8b7ef9dbe2": { + "address": "0xd714d91a169127e11d8fab3665d72e8b7ef9dbe2", + "symbol": "BLACK", + "decimals": 18, + "name": "BlackHole Protocol", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xd714d91a169127e11d8fab3665d72e8b7ef9dbe2.png", + "aggregators": [ + "CoinMarketCap", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x60eb57d085c59932d5faa6c6026268a4386927d0": { + "address": "0x60eb57d085c59932d5faa6c6026268a4386927d0", + "symbol": "LOCG", + "decimals": 18, + "name": "LOCG", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x60eb57d085c59932d5faa6c6026268a4386927d0.png", + "aggregators": [ + "CoinMarketCap", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x8848812bd31aeee33313c10a840ffc3169078c5b": { + "address": "0x8848812bd31aeee33313c10a840ffc3169078c5b", + "symbol": "CRFI", + "decimals": 18, + "name": "CrossFi", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x8848812bd31aeee33313c10a840ffc3169078c5b.png", + "aggregators": [ + "CoinMarketCap", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0xd6a5ab46ead26f49b03bbb1f9eb1ad5c1767974a": { + "address": "0xd6a5ab46ead26f49b03bbb1f9eb1ad5c1767974a", + "symbol": "EMON", + "decimals": 18, + "name": "Ethermon", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xd6a5ab46ead26f49b03bbb1f9eb1ad5c1767974a.png", + "aggregators": [ + "CoinMarketCap", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x852e5427c86a3b46dd25e5fe027bb15f53c4bcb8": { + "address": "0x852e5427c86a3b46dd25e5fe027bb15f53c4bcb8", + "symbol": "NIIFI", + "decimals": 15, + "name": "NiiFi", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x852e5427c86a3b46dd25e5fe027bb15f53c4bcb8.png", + "aggregators": [ + "CoinMarketCap", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x7645ddfeeceda57e41f92679c4acd83c56a81d14": { + "address": "0x7645ddfeeceda57e41f92679c4acd83c56a81d14", + "symbol": "FLUX", + "decimals": 18, + "name": "Flux Protocol", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x7645ddfeeceda57e41f92679c4acd83c56a81d14.png", + "aggregators": [ + "CoinMarketCap", + "LiFi", + "Socket", + "Rubic", + "Rango" + ], + "occurrences": 5 + }, + "0xd81b71cbb89b2800cdb000aa277dc1491dc923c3": { + "address": "0xd81b71cbb89b2800cdb000aa277dc1491dc923c3", + "symbol": "NMT", + "decimals": 18, + "name": "NFTMart Token", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xd81b71cbb89b2800cdb000aa277dc1491dc923c3.png", + "aggregators": [ + "CoinMarketCap", + "LiFi", + "Socket", + "Rubic", + "Rango" + ], + "occurrences": 5 + }, + "0x2620638eda99f9e7e902ea24a285456ee9438861": { + "address": "0x2620638eda99f9e7e902ea24a285456ee9438861", + "symbol": "CSM", + "decimals": 18, + "name": "Crust Shadow", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x2620638eda99f9e7e902ea24a285456ee9438861.png", + "aggregators": [ + "CoinMarketCap", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0xd6327ce1fb9d6020e8c2c0e124a1ec23dcab7536": { + "address": "0xd6327ce1fb9d6020e8c2c0e124a1ec23dcab7536", + "symbol": "CUMINU", + "decimals": 18, + "name": "Cuminu", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xd6327ce1fb9d6020e8c2c0e124a1ec23dcab7536.png", + "aggregators": [ + "CoinMarketCap", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0xbdbf245c690d54b67c6e610a28486a2c6de08be6": { + "address": "0xbdbf245c690d54b67c6e610a28486a2c6de08be6", + "symbol": "SUNDER", + "decimals": 18, + "name": "Sunder Goverance Token", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xbdbf245c690d54b67c6e610a28486a2c6de08be6.png", + "aggregators": [ + "CoinMarketCap", + "LiFi", + "Rubic", + "Rango", + "SushiSwap" + ], + "occurrences": 5 + }, + "0x923b83c26b3809d960ff80332ed00aa46d7ed375": { + "address": "0x923b83c26b3809d960ff80332ed00aa46d7ed375", + "symbol": "CTR", + "decimals": 18, + "name": "Creator Platform", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x923b83c26b3809d960ff80332ed00aa46d7ed375.png", + "aggregators": [ + "CoinMarketCap", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x5166e09628b696285e3a151e84fb977736a83575": { + "address": "0x5166e09628b696285e3a151e84fb977736a83575", + "symbol": "VOL", + "decimals": 18, + "name": "Volatility Protocol Token", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x5166e09628b696285e3a151e84fb977736a83575.png", + "aggregators": [ + "CoinMarketCap", + "Socket", + "Rubic", + "Rango", + "SushiSwap" + ], + "occurrences": 5 + }, + "0xbd3de9a069648c84d27d74d701c9fa3253098b15": { + "address": "0xbd3de9a069648c84d27d74d701c9fa3253098b15", + "symbol": "EQX", + "decimals": 18, + "name": "EQIFi", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xbd3de9a069648c84d27d74d701c9fa3253098b15.png", + "aggregators": [ + "CoinMarketCap", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x34f797e7190c131cf630524655a618b5bd8738e7": { + "address": "0x34f797e7190c131cf630524655a618b5bd8738e7", + "symbol": "BACON", + "decimals": 18, + "name": "BaconDAO", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x34f797e7190c131cf630524655a618b5bd8738e7.png", + "aggregators": [ + "CoinMarketCap", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x9a2af0abb12bee5369b180976be01e8c80d0e7b6": { + "address": "0x9a2af0abb12bee5369b180976be01e8c80d0e7b6", + "symbol": "EMPIRE", + "decimals": 9, + "name": "Empire", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x9a2af0abb12bee5369b180976be01e8c80d0e7b6.png", + "aggregators": [ + "CoinMarketCap", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x2e95cea14dd384429eb3c4331b776c4cfbb6fcd9": { + "address": "0x2e95cea14dd384429eb3c4331b776c4cfbb6fcd9", + "symbol": "THN", + "decimals": 18, + "name": "Throne", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x2e95cea14dd384429eb3c4331b776c4cfbb6fcd9.png", + "aggregators": [ + "CoinMarketCap", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x76417e660df3e5c90c0361674c192da152a806e4": { + "address": "0x76417e660df3e5c90c0361674c192da152a806e4", + "symbol": "ZUSD", + "decimals": 18, + "name": "Zerogoki USD", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x76417e660df3e5c90c0361674c192da152a806e4.png", + "aggregators": [ + "CoinMarketCap", + "1inch", + "Socket", + "Rubic", + "Rango" + ], + "occurrences": 5 + }, + "0x20a8cec5fffea65be7122bcab2ffe32ed4ebf03a": { + "address": "0x20a8cec5fffea65be7122bcab2ffe32ed4ebf03a", + "symbol": "DNXC", + "decimals": 18, + "name": "DinoX", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x20a8cec5fffea65be7122bcab2ffe32ed4ebf03a.png", + "aggregators": [ + "CoinMarketCap", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x8c6bf16c273636523c29db7db04396143770f6a0": { + "address": "0x8c6bf16c273636523c29db7db04396143770f6a0", + "symbol": "AAA", + "decimals": 18, + "name": "Moon Rabbit", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x8c6bf16c273636523c29db7db04396143770f6a0.png", + "aggregators": [ + "CoinMarketCap", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0xa2881f7f441267042f9778ffa0d4f834693426be": { + "address": "0xa2881f7f441267042f9778ffa0d4f834693426be", + "symbol": "HUSL", + "decimals": 18, + "name": "The HUSL", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xa2881f7f441267042f9778ffa0d4f834693426be.png", + "aggregators": [ + "CoinMarketCap", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0xd7dcd9b99787c619b4d57979521258d1a7267ad7": { + "address": "0xd7dcd9b99787c619b4d57979521258d1a7267ad7", + "symbol": "EVRY", + "decimals": 18, + "name": "Evrynet", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xd7dcd9b99787c619b4d57979521258d1a7267ad7.png", + "aggregators": [ + "CoinMarketCap", + "LiFi", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x6286a9e6f7e745a6d884561d88f94542d6715698": { + "address": "0x6286a9e6f7e745a6d884561d88f94542d6715698", + "symbol": "TECH", + "decimals": 18, + "name": "Cryptomeda", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x6286a9e6f7e745a6d884561d88f94542d6715698.png", + "aggregators": [ + "CoinMarketCap", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x97abee33cd075c58bfdd174e0885e08e8f03556f": { + "address": "0x97abee33cd075c58bfdd174e0885e08e8f03556f", + "symbol": "SENT", + "decimals": 18, + "name": "Sentiment", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x97abee33cd075c58bfdd174e0885e08e8f03556f.png", + "aggregators": [ + "CoinMarketCap", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x44e2dec86b9f0e0266e9aa66e10323a2bd69cf9a": { + "address": "0x44e2dec86b9f0e0266e9aa66e10323a2bd69cf9a", + "symbol": "ATTR", + "decimals": 18, + "name": "Attrace", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x44e2dec86b9f0e0266e9aa66e10323a2bd69cf9a.png", + "aggregators": ["Metamask", "LiFi", "Rubic", "Rango", "SushiSwap"], + "occurrences": 5 + }, + "0xcfa0885131f602d11d4da248d2c65a62063567a9": { + "address": "0xcfa0885131f602d11d4da248d2c65a62063567a9", + "symbol": "TORG", + "decimals": 18, + "name": "TORG", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xcfa0885131f602d11d4da248d2c65a62063567a9.png", + "aggregators": [ + "CoinMarketCap", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x464fdb8affc9bac185a7393fd4298137866dcfb8": { + "address": "0x464fdb8affc9bac185a7393fd4298137866dcfb8", + "symbol": "REALM", + "decimals": 18, + "name": "Realm", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x464fdb8affc9bac185a7393fd4298137866dcfb8.png", + "aggregators": [ + "CoinMarketCap", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x3079f61704e9efa2bcf1db412f735d8d4cfa26f4": { + "address": "0x3079f61704e9efa2bcf1db412f735d8d4cfa26f4", + "symbol": "HAPPY", + "decimals": 18, + "name": "HappyFans", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x3079f61704e9efa2bcf1db412f735d8d4cfa26f4.png", + "aggregators": [ + "CoinMarketCap", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x0ff5a8451a839f5f0bb3562689d9a44089738d11": { + "address": "0x0ff5a8451a839f5f0bb3562689d9a44089738d11", + "symbol": "RDPX", + "decimals": 18, + "name": "Dopex Rebate", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x0ff5a8451a839f5f0bb3562689d9a44089738d11.png", + "aggregators": [ + "CoinMarketCap", + "LiFi", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x9b17baadf0f21f03e35249e0e59723f34994f806": { + "address": "0x9b17baadf0f21f03e35249e0e59723f34994f806", + "symbol": "GEM", + "decimals": 18, + "name": "NFTmall", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x9b17baadf0f21f03e35249e0e59723f34994f806.png", + "aggregators": [ + "CoinMarketCap", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x8e0fe2947752be0d5acf73aae77362daf79cb379": { + "address": "0x8e0fe2947752be0d5acf73aae77362daf79cb379", + "symbol": "NFTD", + "decimals": 18, + "name": "NFTrade", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x8e0fe2947752be0d5acf73aae77362daf79cb379.png", + "aggregators": [ + "CoinMarketCap", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x7ae0d42f23c33338de15bfa89c7405c068d9dc0a": { + "address": "0x7ae0d42f23c33338de15bfa89c7405c068d9dc0a", + "symbol": "VERSE", + "decimals": 18, + "name": "Shibaverse", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x7ae0d42f23c33338de15bfa89c7405c068d9dc0a.png", + "aggregators": [ + "CoinMarketCap", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0xd779eea9936b4e323cddff2529eb6f13d0a4d66e": { + "address": "0xd779eea9936b4e323cddff2529eb6f13d0a4d66e", + "symbol": "ENTR", + "decimals": 18, + "name": "ENTER Governance Token", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xd779eea9936b4e323cddff2529eb6f13d0a4d66e.png", + "aggregators": [ + "CoinMarketCap", + "Rubic", + "Rango", + "Sonarwatch", + "SushiSwap" + ], + "occurrences": 5 + }, + "0xdd2a36ae937bc134ea694d77fc7e2e36f5d86de0": { + "address": "0xdd2a36ae937bc134ea694d77fc7e2e36f5d86de0", + "symbol": "WELD", + "decimals": 18, + "name": "WELD", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xdd2a36ae937bc134ea694d77fc7e2e36f5d86de0.png", + "aggregators": [ + "CoinMarketCap", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x9c4a4204b79dd291d6b6571c5be8bbcd0622f050": { + "address": "0x9c4a4204b79dd291d6b6571c5be8bbcd0622f050", + "symbol": "TCR", + "decimals": 18, + "name": "Tracer", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x9c4a4204b79dd291d6b6571c5be8bbcd0622f050.png", + "aggregators": [ + "CoinMarketCap", + "LiFi", + "Rubic", + "Rango", + "SushiSwap" + ], + "occurrences": 5 + }, + "0x6cacdb97e3fc8136805a9e7c342d866ab77d0957": { + "address": "0x6cacdb97e3fc8136805a9e7c342d866ab77d0957", + "symbol": "SWPR", + "decimals": 18, + "name": "Swapr", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x6cacdb97e3fc8136805a9e7c342d866ab77d0957.png", + "aggregators": [ + "CoinMarketCap", + "LiFi", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0xcdb9d30a3ba48cdfcb0ecbe19317e6cf783672f1": { + "address": "0xcdb9d30a3ba48cdfcb0ecbe19317e6cf783672f1", + "symbol": "MNDCC", + "decimals": 18, + "name": "Mondo Community Coin", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xcdb9d30a3ba48cdfcb0ecbe19317e6cf783672f1.png", + "aggregators": [ + "CoinMarketCap", + "LiFi", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0xe1d7c7a4596b038ced2a84bf65b8647271c53208": { + "address": "0xe1d7c7a4596b038ced2a84bf65b8647271c53208", + "symbol": "NFTY", + "decimals": 18, + "name": "NFTY", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xe1d7c7a4596b038ced2a84bf65b8647271c53208.png", + "aggregators": [ + "CoinMarketCap", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x61107a409fffe1965126aa456af679719695c69c": { + "address": "0x61107a409fffe1965126aa456af679719695c69c", + "symbol": "UMI", + "decimals": 18, + "name": "Umi Digital", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x61107a409fffe1965126aa456af679719695c69c.png", + "aggregators": [ + "CoinMarketCap", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0xaee433adebe0fbb88daa47ef0c1a513caa52ef02": { + "address": "0xaee433adebe0fbb88daa47ef0c1a513caa52ef02", + "symbol": "TOON", + "decimals": 18, + "name": "Pontoon", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xaee433adebe0fbb88daa47ef0c1a513caa52ef02.png", + "aggregators": [ + "CoinMarketCap", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x8254e26e453eb5abd29b3c37ac9e8da32e5d3299": { + "address": "0x8254e26e453eb5abd29b3c37ac9e8da32e5d3299", + "symbol": "RBX", + "decimals": 18, + "name": "RBX", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x8254e26e453eb5abd29b3c37ac9e8da32e5d3299.png", + "aggregators": [ + "CoinMarketCap", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0xfb40e79e56cc7d406707b66c4fd175e07eb2ae3c": { + "address": "0xfb40e79e56cc7d406707b66c4fd175e07eb2ae3c", + "symbol": "ROTTS", + "decimals": 9, + "name": "ROTTSCHILD.com", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xfb40e79e56cc7d406707b66c4fd175e07eb2ae3c.png", + "aggregators": [ + "CoinMarketCap", + "1inch", + "Socket", + "Rubic", + "Rango" + ], + "occurrences": 5 + }, + "0x37fc4b48ce93469dbea9918468993c735049642a": { + "address": "0x37fc4b48ce93469dbea9918468993c735049642a", + "symbol": "CBX", + "decimals": 18, + "name": "CropBytes", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x37fc4b48ce93469dbea9918468993c735049642a.png", + "aggregators": [ + "CoinMarketCap", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0xc6e145421fd494b26dcf2bfeb1b02b7c5721978f": { + "address": "0xc6e145421fd494b26dcf2bfeb1b02b7c5721978f", + "symbol": "CRPX", + "decimals": 18, + "name": "Crypto Perx", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xc6e145421fd494b26dcf2bfeb1b02b7c5721978f.png", + "aggregators": [ + "CoinMarketCap", + "Rubic", + "Rango", + "Sonarwatch", + "SushiSwap" + ], + "occurrences": 5 + }, + "0x005d1123878fc55fbd56b54c73963b234a64af3c": { + "address": "0x005d1123878fc55fbd56b54c73963b234a64af3c", + "symbol": "KIBA", + "decimals": 18, + "name": "Kiba Inu", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x005d1123878fc55fbd56b54c73963b234a64af3c.png", + "aggregators": [ + "CoinMarketCap", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x916c5de09cf63f6602d1e1793fb41f6437814a62": { + "address": "0x916c5de09cf63f6602d1e1793fb41f6437814a62", + "symbol": "JACY", + "decimals": 9, + "name": "Jacy", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x916c5de09cf63f6602d1e1793fb41f6437814a62.png", + "aggregators": [ + "CoinMarketCap", + "1inch", + "Socket", + "Rubic", + "Rango" + ], + "occurrences": 5 + }, + "0x64a77277e37d44957fe5815d6ff442ab8b16cc29": { + "address": "0x64a77277e37d44957fe5815d6ff442ab8b16cc29", + "symbol": "DAWGS", + "decimals": 9, + "name": "SpaceDawgs", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x64a77277e37d44957fe5815d6ff442ab8b16cc29.png", + "aggregators": [ + "CoinMarketCap", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0xd0cd466b34a24fcb2f87676278af2005ca8a78c4": { + "address": "0xd0cd466b34a24fcb2f87676278af2005ca8a78c4", + "symbol": "POP", + "decimals": 18, + "name": "Popcorn", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xd0cd466b34a24fcb2f87676278af2005ca8a78c4.png", + "aggregators": [ + "CoinMarketCap", + "LiFi", + "Socket", + "Rubic", + "Rango" + ], + "occurrences": 5 + }, + "0x92868a5255c628da08f550a858a802f5351c5223": { + "address": "0x92868a5255c628da08f550a858a802f5351c5223", + "symbol": "BRIDGE", + "decimals": 18, + "name": "Cross Chain Bridge", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x92868a5255c628da08f550a858a802f5351c5223.png", + "aggregators": [ + "CoinMarketCap", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0xf1dc500fde233a4055e25e5bbf516372bc4f6871": { + "address": "0xf1dc500fde233a4055e25e5bbf516372bc4f6871", + "symbol": "SDL", + "decimals": 18, + "name": "Saddle DAO", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xf1dc500fde233a4055e25e5bbf516372bc4f6871.png", + "aggregators": [ + "CoinMarketCap", + "Socket", + "Rubic", + "Rango", + "SushiSwap" + ], + "occurrences": 5 + }, + "0x7118057ff0f4fd0994fb9d2d94de8231d5cca79e": { + "address": "0x7118057ff0f4fd0994fb9d2d94de8231d5cca79e", + "symbol": "SOURCE", + "decimals": 18, + "name": "Source", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x7118057ff0f4fd0994fb9d2d94de8231d5cca79e.png", + "aggregators": [ + "CoinMarketCap", + "Rubic", + "Rango", + "Sonarwatch", + "SushiSwap" + ], + "occurrences": 5 + }, + "0xb1a88c33091490218965787919fcc9862c1798ee": { + "address": "0xb1a88c33091490218965787919fcc9862c1798ee", + "symbol": "SHIBLI", + "decimals": 9, + "name": "Studio Shibli", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xb1a88c33091490218965787919fcc9862c1798ee.png", + "aggregators": [ + "CoinMarketCap", + "1inch", + "Socket", + "Rubic", + "Rango" + ], + "occurrences": 5 + }, + "0x5ba19d656b65f1684cfea4af428c23b9f3628f97": { + "address": "0x5ba19d656b65f1684cfea4af428c23b9f3628f97", + "symbol": "AAG", + "decimals": 18, + "name": "AAG", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x5ba19d656b65f1684cfea4af428c23b9f3628f97.png", + "aggregators": [ + "CoinMarketCap", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x25b24b3c47918b7962b3e49c4f468367f73cc0e0": { + "address": "0x25b24b3c47918b7962b3e49c4f468367f73cc0e0", + "symbol": "AXL", + "decimals": 18, + "name": "AXL INU", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x25b24b3c47918b7962b3e49c4f468367f73cc0e0.png", + "aggregators": [ + "CoinMarketCap", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x4daeb4a06f70f4b1a5c329115731fe4b89c0b227": { + "address": "0x4daeb4a06f70f4b1a5c329115731fe4b89c0b227", + "symbol": "QUA", + "decimals": 18, + "name": "Quasacoin", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x4daeb4a06f70f4b1a5c329115731fe4b89c0b227.png", + "aggregators": [ + "CoinMarketCap", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x612e1726435fe38dd49a0b35b4065b56f49c8f11": { + "address": "0x612e1726435fe38dd49a0b35b4065b56f49c8f11", + "symbol": "CCV2", + "decimals": 18, + "name": "CryptoCart V2", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x612e1726435fe38dd49a0b35b4065b56f49c8f11.png", + "aggregators": [ + "CoinMarketCap", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0xbd100d061e120b2c67a24453cf6368e63f1be056": { + "address": "0xbd100d061e120b2c67a24453cf6368e63f1be056", + "symbol": "IDYP", + "decimals": 18, + "name": "iDypius", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xbd100d061e120b2c67a24453cf6368e63f1be056.png", + "aggregators": [ + "CoinMarketCap", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0xb49fa25978abf9a248b8212ab4b87277682301c0": { + "address": "0xb49fa25978abf9a248b8212ab4b87277682301c0", + "symbol": "SOFI", + "decimals": 18, + "name": "RAI Finance", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xb49fa25978abf9a248b8212ab4b87277682301c0.png", + "aggregators": [ + "CoinMarketCap", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0xe7eaec9bca79d537539c00c58ae93117fb7280b9": { + "address": "0xe7eaec9bca79d537539c00c58ae93117fb7280b9", + "symbol": "DOGEP", + "decimals": 18, + "name": "Doge Protocol", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xe7eaec9bca79d537539c00c58ae93117fb7280b9.png", + "aggregators": [ + "CoinMarketCap", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x47110d43175f7f2c2425e7d15792acc5817eb44f": { + "address": "0x47110d43175f7f2c2425e7d15792acc5817eb44f", + "symbol": "GMI", + "decimals": 18, + "name": "Bankless DeFi Innovation Index", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x47110d43175f7f2c2425e7d15792acc5817eb44f.png", + "aggregators": [ + "CoinMarketCap", + "LiFi", + "Rubic", + "Rango", + "SushiSwap" + ], + "occurrences": 5 + }, + "0xd7d8f3b8bc8bc48d3acc37879eaba7b85889fa52": { + "address": "0xd7d8f3b8bc8bc48d3acc37879eaba7b85889fa52", + "symbol": "CLH", + "decimals": 18, + "name": "ClearDAO", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xd7d8f3b8bc8bc48d3acc37879eaba7b85889fa52.png", + "aggregators": [ + "CoinMarketCap", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x1e9d0bb190ac34492aa11b80d28c1c86487a341f": { + "address": "0x1e9d0bb190ac34492aa11b80d28c1c86487a341f", + "symbol": "NEKO", + "decimals": 18, + "name": "The Neko", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x1e9d0bb190ac34492aa11b80d28c1c86487a341f.png", + "aggregators": [ + "CoinMarketCap", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x5027fc44a7ba114b8f494b1e4970900c6652fedf": { + "address": "0x5027fc44a7ba114b8f494b1e4970900c6652fedf", + "symbol": "XAR", + "decimals": 18, + "name": "Arcana Network", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x5027fc44a7ba114b8f494b1e4970900c6652fedf.png", + "aggregators": [ + "CoinMarketCap", + "LiFi", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x9f7fc686cfd64aa5ae15b351d03071e91533094b": { + "address": "0x9f7fc686cfd64aa5ae15b351d03071e91533094b", + "symbol": "TRACE", + "decimals": 18, + "name": "Trace Network Labs", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x9f7fc686cfd64aa5ae15b351d03071e91533094b.png", + "aggregators": [ + "CoinMarketCap", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x6069c9223e8a5da1ec49ac5525d4bb757af72cd8": { + "address": "0x6069c9223e8a5da1ec49ac5525d4bb757af72cd8", + "symbol": "MUSK", + "decimals": 18, + "name": "MUSK Gold", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x6069c9223e8a5da1ec49ac5525d4bb757af72cd8.png", + "aggregators": [ + "CoinMarketCap", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x8162b5bc8f651007cc38a09f557bab2bf4cefb5b": { + "address": "0x8162b5bc8f651007cc38a09f557bab2bf4cefb5b", + "symbol": "STRM", + "decimals": 18, + "name": "Streamer Inu", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x8162b5bc8f651007cc38a09f557bab2bf4cefb5b.png", + "aggregators": [ + "CoinMarketCap", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x40803cea2b2a32bda1be61d3604af6a814e70976": { + "address": "0x40803cea2b2a32bda1be61d3604af6a814e70976", + "symbol": "SPOOL", + "decimals": 18, + "name": "Spool", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x40803cea2b2a32bda1be61d3604af6a814e70976.png", + "aggregators": [ + "CoinMarketCap", + "LiFi", + "Socket", + "Rubic", + "Rango" + ], + "occurrences": 5 + }, + "0x3c917054e03485808137eb306eafa8da0ab695cd": { + "address": "0x3c917054e03485808137eb306eafa8da0ab695cd", + "symbol": "ORB", + "decimals": 18, + "name": "Deroute AI", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x3c917054e03485808137eb306eafa8da0ab695cd.png", + "aggregators": [ + "CoinMarketCap", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x6988a804c74fd04f37da1ea4781cea68c9c00f86": { + "address": "0x6988a804c74fd04f37da1ea4781cea68c9c00f86", + "symbol": "TRIBL", + "decimals": 18, + "name": "Tribal Token", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x6988a804c74fd04f37da1ea4781cea68c9c00f86.png", + "aggregators": [ + "CoinMarketCap", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0xd16fd95d949f996e3808eeea0e3881c59e76ef1e": { + "address": "0xd16fd95d949f996e3808eeea0e3881c59e76ef1e", + "symbol": "PARA", + "decimals": 18, + "name": "Para", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xd16fd95d949f996e3808eeea0e3881c59e76ef1e.png", + "aggregators": [ + "CoinMarketCap", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x0a44a7ccea34a7563ba1d45a5f757d0b02281124": { + "address": "0x0a44a7ccea34a7563ba1d45a5f757d0b02281124", + "symbol": "BBL", + "decimals": 18, + "name": "BlockBlend", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x0a44a7ccea34a7563ba1d45a5f757d0b02281124.png", + "aggregators": [ + "CoinMarketCap", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x333a4823466879eef910a04d473505da62142069": { + "address": "0x333a4823466879eef910a04d473505da62142069", + "symbol": "NATION", + "decimals": 18, + "name": "Nation3", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x333a4823466879eef910a04d473505da62142069.png", + "aggregators": [ + "CoinMarketCap", + "LiFi", + "Socket", + "Rubic", + "Rango" + ], + "occurrences": 5 + }, + "0x0d86eb9f43c57f6ff3bc9e23d8f9d82503f0e84b": { + "address": "0x0d86eb9f43c57f6ff3bc9e23d8f9d82503f0e84b", + "symbol": "MAXI", + "decimals": 8, + "name": "Maximus DAO", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x0d86eb9f43c57f6ff3bc9e23d8f9d82503f0e84b.png", + "aggregators": [ + "CoinMarketCap", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x207e14389183a94343942de7afbc607f57460618": { + "address": "0x207e14389183a94343942de7afbc607f57460618", + "symbol": "THOL", + "decimals": 18, + "name": "AngelBlock", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x207e14389183a94343942de7afbc607f57460618.png", + "aggregators": [ + "CoinMarketCap", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0xb81408a1cc2f4be70a6a3178d351ca95a77c5a06": { + "address": "0xb81408a1cc2f4be70a6a3178d351ca95a77c5a06", + "symbol": "XODEX", + "decimals": 18, + "name": "XODEX", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xb81408a1cc2f4be70a6a3178d351ca95a77c5a06.png", + "aggregators": [ + "CoinMarketCap", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x632806bf5c8f062932dd121244c9fbe7becb8b48": { + "address": "0x632806bf5c8f062932dd121244c9fbe7becb8b48", + "symbol": "PDI", + "decimals": 18, + "name": "Phuture DeFi Index", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x632806bf5c8f062932dd121244c9fbe7becb8b48.png", + "aggregators": [ + "CoinMarketCap", + "LiFi", + "Socket", + "Rubic", + "Bancor" + ], + "occurrences": 5 + }, + "0xc4c75f2a0cb1a9acc33929512dc9733ea1fd6fde": { + "address": "0xc4c75f2a0cb1a9acc33929512dc9733ea1fd6fde", + "symbol": "MSI", + "decimals": 18, + "name": "Martin Shkreli Inu", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xc4c75f2a0cb1a9acc33929512dc9733ea1fd6fde.png", + "aggregators": [ + "CoinMarketCap", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x57b59f981730c6257df57cf6f0d98283749a9eeb": { + "address": "0x57b59f981730c6257df57cf6f0d98283749a9eeb", + "symbol": "BUILD", + "decimals": 18, + "name": "BUILD", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x57b59f981730c6257df57cf6f0d98283749a9eeb.png", + "aggregators": [ + "CoinMarketCap", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0xe8e8486228753e01dbc222da262aa706bd67e601": { + "address": "0xe8e8486228753e01dbc222da262aa706bd67e601", + "symbol": "WEB3", + "decimals": 18, + "name": "Arch Ethereum Web3", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xe8e8486228753e01dbc222da262aa706bd67e601.png", + "aggregators": [ + "CoinMarketCap", + "LiFi", + "Socket", + "Rubic", + "Rango" + ], + "occurrences": 5 + }, + "0x205ed31c867bf715e4182137af95afe9177cd8e7": { + "address": "0x205ed31c867bf715e4182137af95afe9177cd8e7", + "symbol": "DEFY", + "decimals": 18, + "name": "DEFY", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x205ed31c867bf715e4182137af95afe9177cd8e7.png", + "aggregators": [ + "CoinMarketCap", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x992d339532a9c42f1b0e59a57e95f38da38c66f6": { + "address": "0x992d339532a9c42f1b0e59a57e95f38da38c66f6", + "symbol": "SOUL", + "decimals": 18, + "name": "Soulsaver", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x992d339532a9c42f1b0e59a57e95f38da38c66f6.png", + "aggregators": [ + "CoinMarketCap", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x8ee325ae3e54e83956ef2d5952d3c8bc1fa6ec27": { + "address": "0x8ee325ae3e54e83956ef2d5952d3c8bc1fa6ec27", + "symbol": "TYRANT", + "decimals": 9, + "name": "Fable Of The Dragon", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x8ee325ae3e54e83956ef2d5952d3c8bc1fa6ec27.png", + "aggregators": [ + "CoinMarketCap", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x259ce0cb3581995d40cbb03fd4badeaaba1edaff": { + "address": "0x259ce0cb3581995d40cbb03fd4badeaaba1edaff", + "symbol": "SXS", + "decimals": 18, + "name": "SphereSXS", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x259ce0cb3581995d40cbb03fd4badeaaba1edaff.png", + "aggregators": [ + "CoinMarketCap", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0xd3cc3b3e226cf187181c57f8bcc2fa84250df651": { + "address": "0xd3cc3b3e226cf187181c57f8bcc2fa84250df651", + "symbol": "UPLOAD", + "decimals": 18, + "name": "UPLOAD", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xd3cc3b3e226cf187181c57f8bcc2fa84250df651.png", + "aggregators": [ + "CoinMarketCap", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0xda4dd9586d27202a338843dd6b9824d267006783": { + "address": "0xda4dd9586d27202a338843dd6b9824d267006783", + "symbol": "ECT", + "decimals": 9, + "name": "Echain Network", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xda4dd9586d27202a338843dd6b9824d267006783.png", + "aggregators": [ + "CoinMarketCap", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0xcccd1ba9f7acd6117834e0d28f25645decb1736a": { + "address": "0xcccd1ba9f7acd6117834e0d28f25645decb1736a", + "symbol": "ECOX", + "decimals": 18, + "name": "ECOx", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xcccd1ba9f7acd6117834e0d28f25645decb1736a.png", + "aggregators": [ + "CoinMarketCap", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x149d8290f653deb8e34c037d239d3d8eee9de5ad": { + "address": "0x149d8290f653deb8e34c037d239d3d8eee9de5ad", + "symbol": "KING", + "decimals": 18, + "name": "Kingdomverse", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x149d8290f653deb8e34c037d239d3d8eee9de5ad.png", + "aggregators": [ + "CoinMarketCap", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x7e77dcb127f99ece88230a64db8d595f31f1b068": { + "address": "0x7e77dcb127f99ece88230a64db8d595f31f1b068", + "symbol": "SILV2", + "decimals": 18, + "name": "Escrowed Illuvium 2", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x7e77dcb127f99ece88230a64db8d595f31f1b068.png", + "aggregators": [ + "CoinMarketCap", + "Rubic", + "Squid", + "Sonarwatch", + "SushiSwap" + ], + "occurrences": 5 + }, + "0x73c69d24ad28e2d43d03cbf35f79fe26ebde1011": { + "address": "0x73c69d24ad28e2d43d03cbf35f79fe26ebde1011", + "symbol": "ARCH", + "decimals": 18, + "name": "Archimedes Finance", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x73c69d24ad28e2d43d03cbf35f79fe26ebde1011.png", + "aggregators": [ + "CoinMarketCap", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0xbe00734799a67a62af2819825580318ac1b1e4ec": { + "address": "0xbe00734799a67a62af2819825580318ac1b1e4ec", + "symbol": "ORD", + "decimals": 18, + "name": "ordinex", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xbe00734799a67a62af2819825580318ac1b1e4ec.png", + "aggregators": [ + "CoinMarketCap", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x0d8ca4b20b115d4da5c13dc45dd582a5de3e78bf": { + "address": "0x0d8ca4b20b115d4da5c13dc45dd582a5de3e78bf", + "symbol": "GAI", + "decimals": 18, + "name": "Generaitiv", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x0d8ca4b20b115d4da5c13dc45dd582a5de3e78bf.png", + "aggregators": [ + "CoinMarketCap", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x17837004ea685690b32dbead02a274ec4333a26a": { + "address": "0x17837004ea685690b32dbead02a274ec4333a26a", + "symbol": "BEAR", + "decimals": 18, + "name": "Bear Inu", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x17837004ea685690b32dbead02a274ec4333a26a.png", + "aggregators": [ + "CoinMarketCap", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0xe632ea2ef2cfd8fc4a2731c76f99078aef6a4b31": { + "address": "0xe632ea2ef2cfd8fc4a2731c76f99078aef6a4b31", + "symbol": "THX", + "decimals": 18, + "name": "THX Network", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xe632ea2ef2cfd8fc4a2731c76f99078aef6a4b31.png", + "aggregators": [ + "CoinMarketCap", + "LiFi", + "Socket", + "Rubic", + "Rango" + ], + "occurrences": 5 + }, + "0x2c5bc2ba3614fd27fcc7022ea71d9172e2632c16": { + "address": "0x2c5bc2ba3614fd27fcc7022ea71d9172e2632c16", + "symbol": "SOV", + "decimals": 18, + "name": "Shib Original Vision", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x2c5bc2ba3614fd27fcc7022ea71d9172e2632c16.png", + "aggregators": [ + "CoinMarketCap", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0xfca89d55a768375ab7ca04485a35a964bea828dd": { + "address": "0xfca89d55a768375ab7ca04485a35a964bea828dd", + "symbol": "DELREY", + "decimals": 18, + "name": "Delrey Inu", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xfca89d55a768375ab7ca04485a35a964bea828dd.png", + "aggregators": [ + "CoinMarketCap", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x5f18ea482ad5cc6bc65803817c99f477043dce85": { + "address": "0x5f18ea482ad5cc6bc65803817c99f477043dce85", + "symbol": "AGI", + "decimals": 18, + "name": "Agility", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x5f18ea482ad5cc6bc65803817c99f477043dce85.png", + "aggregators": [ + "CoinMarketCap", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x3d9a4d8ab4f5bd1d5d08ae3a95e8ed8bb4d7e3b9": { + "address": "0x3d9a4d8ab4f5bd1d5d08ae3a95e8ed8bb4d7e3b9", + "symbol": "STONKS", + "decimals": 18, + "name": "STONKSDAO", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x3d9a4d8ab4f5bd1d5d08ae3a95e8ed8bb4d7e3b9.png", + "aggregators": [ + "CoinMarketCap", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x7690202e2c2297bcd03664e31116d1dffe7e3b73": { + "address": "0x7690202e2c2297bcd03664e31116d1dffe7e3b73", + "symbol": "BOXETH", + "decimals": 18, + "name": "Cat in a Box Ether", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x7690202e2c2297bcd03664e31116d1dffe7e3b73.png", + "aggregators": [ + "CoinMarketCap", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0xab306326bc72c2335bd08f42cbec383691ef8446": { + "address": "0xab306326bc72c2335bd08f42cbec383691ef8446", + "symbol": "PPIZZA", + "decimals": 18, + "name": "PPizza", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xab306326bc72c2335bd08f42cbec383691ef8446.png", + "aggregators": [ + "CoinMarketCap", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x878fcc2bdcccff8c56812607b9a58f29b274c4f0": { + "address": "0x878fcc2bdcccff8c56812607b9a58f29b274c4f0", + "symbol": "DERP", + "decimals": 18, + "name": "Derp Coin", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x878fcc2bdcccff8c56812607b9a58f29b274c4f0.png", + "aggregators": [ + "CoinMarketCap", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x0d248ce39e26fb00f911fb1e7a45a00d8c94341c": { + "address": "0x0d248ce39e26fb00f911fb1e7a45a00d8c94341c", + "symbol": "BUTTER", + "decimals": 18, + "name": "Butter", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x0d248ce39e26fb00f911fb1e7a45a00d8c94341c.png", + "aggregators": [ + "CoinMarketCap", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0xc57f1d079c862b70aa12faab19293f827187aaf6": { + "address": "0xc57f1d079c862b70aa12faab19293f827187aaf6", + "symbol": "GLG", + "decimals": 18, + "name": "Gilgeous", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xc57f1d079c862b70aa12faab19293f827187aaf6.png", + "aggregators": [ + "CoinMarketCap", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x9dcd367e2afa8d6e5d6cf0306094e3eb7bbaaf4d": { + "address": "0x9dcd367e2afa8d6e5d6cf0306094e3eb7bbaaf4d", + "symbol": "BROS", + "decimals": 18, + "name": "Crypto Bros", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x9dcd367e2afa8d6e5d6cf0306094e3eb7bbaaf4d.png", + "aggregators": [ + "CoinMarketCap", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x77571a64342667f7818520ef004b2b91f47a266b": { + "address": "0x77571a64342667f7818520ef004b2b91f47a266b", + "symbol": "SNM", + "decimals": 18, + "name": "SnailMoon", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x77571a64342667f7818520ef004b2b91f47a266b.png", + "aggregators": [ + "CoinMarketCap", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0xffd822149fa6749176c7a1424e71a417f26189c8": { + "address": "0xffd822149fa6749176c7a1424e71a417f26189c8", + "symbol": "THING", + "decimals": 18, + "name": "Nothing Token", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xffd822149fa6749176c7a1424e71a417f26189c8.png", + "aggregators": [ + "CoinMarketCap", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x049e9f5369358786a1ce6483d668d062cfe547ec": { + "address": "0x049e9f5369358786a1ce6483d668d062cfe547ec", + "symbol": "CHECKS", + "decimals": 18, + "name": "Checks Token", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x049e9f5369358786a1ce6483d668d062cfe547ec.png", + "aggregators": [ + "CoinMarketCap", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x4743a7a193cdf202035e9bc6830a07f1607630c4": { + "address": "0x4743a7a193cdf202035e9bc6830a07f1607630c4", + "symbol": "GUY", + "decimals": 18, + "name": "Family Guy", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x4743a7a193cdf202035e9bc6830a07f1607630c4.png", + "aggregators": [ + "CoinMarketCap", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x5dcd6272c3cbb250823f0b7e6c618bce11b21f90": { + "address": "0x5dcd6272c3cbb250823f0b7e6c618bce11b21f90", + "symbol": "PEAR", + "decimals": 18, + "name": "Pear Swap", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x5dcd6272c3cbb250823f0b7e6c618bce11b21f90.png", + "aggregators": [ + "CoinMarketCap", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0xcba78d126f0b1feda0c538bcaf4c852a7a171099": { + "address": "0xcba78d126f0b1feda0c538bcaf4c852a7a171099", + "symbol": "MOE", + "decimals": 18, + "name": "MOE", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xcba78d126f0b1feda0c538bcaf4c852a7a171099.png", + "aggregators": [ + "CoinMarketCap", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x70881d5c8a5950ceedf1f1b4b5d4105718642548": { + "address": "0x70881d5c8a5950ceedf1f1b4b5d4105718642548", + "symbol": "BAG", + "decimals": 18, + "name": "Bagholder", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x70881d5c8a5950ceedf1f1b4b5d4105718642548.png", + "aggregators": [ + "CoinMarketCap", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x551d0501cd5df92663c3d12c3201c9d70ba79998": { + "address": "0x551d0501cd5df92663c3d12c3201c9d70ba79998", + "symbol": "YOBASE", + "decimals": 18, + "name": "All Your Base", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x551d0501cd5df92663c3d12c3201c9d70ba79998.png", + "aggregators": [ + "CoinMarketCap", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x2ecba91da63c29ea80fbe7b52632ca2d1f8e5be0": { + "address": "0x2ecba91da63c29ea80fbe7b52632ca2d1f8e5be0", + "symbol": "FERC", + "decimals": 18, + "name": "FairERC20", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x2ecba91da63c29ea80fbe7b52632ca2d1f8e5be0.png", + "aggregators": [ + "CoinMarketCap", + "LiFi", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x52284158e02425290f6b627aeb5fff65edf058ad": { + "address": "0x52284158e02425290f6b627aeb5fff65edf058ad", + "symbol": "FMB", + "decimals": 18, + "name": "FlappyMoonbird", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x52284158e02425290f6b627aeb5fff65edf058ad.png", + "aggregators": [ + "CoinMarketCap", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x8526be2379e853d5cf02f9823bb9690e1a6ff9e2": { + "address": "0x8526be2379e853d5cf02f9823bb9690e1a6ff9e2", + "symbol": "HABIBI", + "decimals": 18, + "name": "Habibi", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x8526be2379e853d5cf02f9823bb9690e1a6ff9e2.png", + "aggregators": [ + "CoinMarketCap", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0xf4a509313437dfc64e2efed14e2b607b1aed30c5": { + "address": "0xf4a509313437dfc64e2efed14e2b607b1aed30c5", + "symbol": "FETS", + "decimals": 18, + "name": "FE TECH", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xf4a509313437dfc64e2efed14e2b607b1aed30c5.png", + "aggregators": [ + "CoinMarketCap", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x7f4c5447af6a96d8eeaee1d932338cfc57890dbd": { + "address": "0x7f4c5447af6a96d8eeaee1d932338cfc57890dbd", + "symbol": "DAVE", + "decimals": 18, + "name": "Dave Coin", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x7f4c5447af6a96d8eeaee1d932338cfc57890dbd.png", + "aggregators": [ + "CoinMarketCap", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x113c65707c530502fef959308197353f6df97867": { + "address": "0x113c65707c530502fef959308197353f6df97867", + "symbol": "JOKER", + "decimals": 18, + "name": "The Joker Coin", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x113c65707c530502fef959308197353f6df97867.png", + "aggregators": [ + "CoinMarketCap", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0xaa247c0d81b83812e1abf8bab078e4540d87e3fb": { + "address": "0xaa247c0d81b83812e1abf8bab078e4540d87e3fb", + "symbol": "MSN", + "decimals": 18, + "name": "Meson Network", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xaa247c0d81b83812e1abf8bab078e4540d87e3fb.png", + "aggregators": [ + "CoinMarketCap", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x38f9bb135ea88033f4377b9ea0fb5cfb773fec2f": { + "address": "0x38f9bb135ea88033f4377b9ea0fb5cfb773fec2f", + "symbol": "ALPHA", + "decimals": 18, + "name": "Alpha Shards", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x38f9bb135ea88033f4377b9ea0fb5cfb773fec2f.png", + "aggregators": [ + "CoinMarketCap", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x4c5cb5d87709387f8821709f7a6664f00dcf0c93": { + "address": "0x4c5cb5d87709387f8821709f7a6664f00dcf0c93", + "symbol": "RAFT", + "decimals": 18, + "name": "Raft", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x4c5cb5d87709387f8821709f7a6664f00dcf0c93.png", + "aggregators": [ + "CoinMarketCap", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x23d894fb4a0f551f2f923fc85e09819d1f3894b2": { + "address": "0x23d894fb4a0f551f2f923fc85e09819d1f3894b2", + "symbol": "ITX", + "decimals": 18, + "name": "Intellix", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x23d894fb4a0f551f2f923fc85e09819d1f3894b2.png", + "aggregators": [ + "CoinMarketCap", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0xd0b3a986fff305854a7238a8e099cce1ced01a3d": { + "address": "0xd0b3a986fff305854a7238a8e099cce1ced01a3d", + "symbol": "NOVA", + "decimals": 18, + "name": "Nova", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xd0b3a986fff305854a7238a8e099cce1ced01a3d.png", + "aggregators": [ + "CoinMarketCap", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x7bd44cf5c0566aab26150a0cd5c3d20c5535686f": { + "address": "0x7bd44cf5c0566aab26150a0cd5c3d20c5535686f", + "symbol": "EVILPEPE", + "decimals": 18, + "name": "Evil Pepe", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x7bd44cf5c0566aab26150a0cd5c3d20c5535686f.png", + "aggregators": [ + "CoinMarketCap", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0xc740181345c65552333e1edc797e03f11852b1c8": { + "address": "0xc740181345c65552333e1edc797e03f11852b1c8", + "symbol": "KNTO", + "decimals": 18, + "name": "Kento", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xc740181345c65552333e1edc797e03f11852b1c8.png", + "aggregators": [ + "CoinMarketCap", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0xcc8e21f599995d1c8367054841b8af5024ddf01b": { + "address": "0xcc8e21f599995d1c8367054841b8af5024ddf01b", + "symbol": "AG", + "decimals": 18, + "name": "Alpha Gardeners", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xcc8e21f599995d1c8367054841b8af5024ddf01b.png", + "aggregators": [ + "CoinMarketCap", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x3e34eabf5858a126cb583107e643080cee20ca64": { + "address": "0x3e34eabf5858a126cb583107e643080cee20ca64", + "symbol": "LINQ", + "decimals": 18, + "name": "Linq", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x3e34eabf5858a126cb583107e643080cee20ca64.png", + "aggregators": [ + "CoinMarketCap", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x59c6766de1dc50a9c9db86cb0461b5ce07408ab7": { + "address": "0x59c6766de1dc50a9c9db86cb0461b5ce07408ab7", + "symbol": "SPURDO", + "decimals": 8, + "name": "Spurdo", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x59c6766de1dc50a9c9db86cb0461b5ce07408ab7.png", + "aggregators": [ + "CoinMarketCap", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0xc14b4d4ca66f40f352d7a50fd230ef8b2fb3b8d4": { + "address": "0xc14b4d4ca66f40f352d7a50fd230ef8b2fb3b8d4", + "symbol": "TOOLS", + "decimals": 18, + "name": "Blocktools", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xc14b4d4ca66f40f352d7a50fd230ef8b2fb3b8d4.png", + "aggregators": [ + "CoinMarketCap", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x354c8cda7e3b737d360513a0dc5abcee8ee1cea3": { + "address": "0x354c8cda7e3b737d360513a0dc5abcee8ee1cea3", + "symbol": "BABYTRUMP", + "decimals": 18, + "name": "BABYTRUMP", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x354c8cda7e3b737d360513a0dc5abcee8ee1cea3.png", + "aggregators": [ + "CoinMarketCap", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x2f8221e82e0d4669ad66eabf02a5baed43ea49e7": { + "address": "0x2f8221e82e0d4669ad66eabf02a5baed43ea49e7", + "symbol": "NEWS", + "decimals": 18, + "name": "Newsly", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x2f8221e82e0d4669ad66eabf02a5baed43ea49e7.png", + "aggregators": [ + "CoinMarketCap", + "Socket", + "Rubic", + "Rango", + "SushiSwap" + ], + "occurrences": 5 + }, + "0x0b0a8c7c34374c1d0c649917a97eee6c6c929b1b": { + "address": "0x0b0a8c7c34374c1d0c649917a97eee6c6c929b1b", + "symbol": "SHEPE", + "decimals": 9, + "name": "Shiba V Pepe", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x0b0a8c7c34374c1d0c649917a97eee6c6c929b1b.png", + "aggregators": [ + "CoinMarketCap", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0xabd601423a2cd5723cb546acc5c40fb01c3422cf": { + "address": "0xabd601423a2cd5723cb546acc5c40fb01c3422cf", + "symbol": "BABYX", + "decimals": 9, + "name": "Baby X", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xabd601423a2cd5723cb546acc5c40fb01c3422cf.png", + "aggregators": [ + "CoinMarketCap", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x1123d17fcf93ed2b41440317503346a0fdfe3ed7": { + "address": "0x1123d17fcf93ed2b41440317503346a0fdfe3ed7", + "symbol": "PMPY", + "decimals": 18, + "name": "Prometheum Prodigy", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x1123d17fcf93ed2b41440317503346a0fdfe3ed7.png", + "aggregators": [ + "CoinMarketCap", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0xb61ebb6bceb7635ecd7e59884ee2e2bcdfd810ba": { + "address": "0xb61ebb6bceb7635ecd7e59884ee2e2bcdfd810ba", + "symbol": "XSHIB", + "decimals": 9, + "name": "XSHIB", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xb61ebb6bceb7635ecd7e59884ee2e2bcdfd810ba.png", + "aggregators": [ + "CoinMarketCap", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x667210a731447f8b385e068205759be2311b86d4": { + "address": "0x667210a731447f8b385e068205759be2311b86d4", + "symbol": "ETF", + "decimals": 18, + "name": "ETF The Token", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x667210a731447f8b385e068205759be2311b86d4.png", + "aggregators": [ + "CoinMarketCap", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x313cae7ad4454aac7b208c1f089da2b0e5825e46": { + "address": "0x313cae7ad4454aac7b208c1f089da2b0e5825e46", + "symbol": "RPK", + "decimals": 18, + "name": "RepubliK", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x313cae7ad4454aac7b208c1f089da2b0e5825e46.png", + "aggregators": [ + "CoinMarketCap", + "LiFi", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x5dfc78c4d073fd343bc6661668948178522a0de5": { + "address": "0x5dfc78c4d073fd343bc6661668948178522a0de5", + "symbol": "DERP", + "decimals": 18, + "name": "Derp", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x5dfc78c4d073fd343bc6661668948178522a0de5.png", + "aggregators": [ + "CoinMarketCap", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x3001f57f8308b189eb412a64322aad5ef9951290": { + "address": "0x3001f57f8308b189eb412a64322aad5ef9951290", + "symbol": "GEC", + "decimals": 18, + "name": "Geometric Energy Corporation", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x3001f57f8308b189eb412a64322aad5ef9951290.png", + "aggregators": [ + "CoinMarketCap", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x59a73bef0f729761bc3b9aa7f41872077e4bf300": { + "address": "0x59a73bef0f729761bc3b9aa7f41872077e4bf300", + "symbol": "SECT", + "decimals": 18, + "name": "SECT BOT", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x59a73bef0f729761bc3b9aa7f41872077e4bf300.png", + "aggregators": [ + "CoinMarketCap", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x7b37a55ffb30c11d95f943672ae98f28cfb7b087": { + "address": "0x7b37a55ffb30c11d95f943672ae98f28cfb7b087", + "symbol": "FUFU", + "decimals": 2, + "name": "Fufu Token", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x7b37a55ffb30c11d95f943672ae98f28cfb7b087.png", + "aggregators": [ + "CoinMarketCap", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x0257ffd7ea2ebba4aaa090c7adbdd032a08c1f74": { + "address": "0x0257ffd7ea2ebba4aaa090c7adbdd032a08c1f74", + "symbol": "ZELIX", + "decimals": 18, + "name": "ZELIX", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x0257ffd7ea2ebba4aaa090c7adbdd032a08c1f74.png", + "aggregators": [ + "CoinMarketCap", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x01e1d7cbd3bc0eb1030485f33708421011459459": { + "address": "0x01e1d7cbd3bc0eb1030485f33708421011459459", + "symbol": "TOAD", + "decimals": 18, + "name": "TOAD", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x01e1d7cbd3bc0eb1030485f33708421011459459.png", + "aggregators": [ + "CoinMarketCap", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0xc9f00080d96cea3ef92d2e2e563d4cd41fb5bb36": { + "address": "0xc9f00080d96cea3ef92d2e2e563d4cd41fb5bb36", + "symbol": "BLOX", + "decimals": 18, + "name": "BLOX", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xc9f00080d96cea3ef92d2e2e563d4cd41fb5bb36.png", + "aggregators": [ + "CoinMarketCap", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0xa41d2f8ee4f47d3b860a149765a7df8c3287b7f0": { + "address": "0xa41d2f8ee4f47d3b860a149765a7df8c3287b7f0", + "symbol": "SYNC", + "decimals": 9, + "name": "Syncus", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xa41d2f8ee4f47d3b860a149765a7df8c3287b7f0.png", + "aggregators": [ + "CoinMarketCap", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0xce246eea10988c495b4a90a905ee9237a0f91543": { + "address": "0xce246eea10988c495b4a90a905ee9237a0f91543", + "symbol": "VCX", + "decimals": 18, + "name": "VaultCraft", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xce246eea10988c495b4a90a905ee9237a0f91543.png", + "aggregators": [ + "CoinMarketCap", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x5516ac1aaca7bb2fd5b7bdde1549ef1ea242953d": { + "address": "0x5516ac1aaca7bb2fd5b7bdde1549ef1ea242953d", + "symbol": "DETF", + "decimals": 18, + "name": "Decentralized ETF", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x5516ac1aaca7bb2fd5b7bdde1549ef1ea242953d.png", + "aggregators": [ + "CoinMarketCap", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x60158131416f5e53d55d73a11be2e203cb26abcc": { + "address": "0x60158131416f5e53d55d73a11be2e203cb26abcc", + "symbol": "EON", + "decimals": 8, + "name": "Hyper", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x60158131416f5e53d55d73a11be2e203cb26abcc.png", + "aggregators": [ + "CoinMarketCap", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0xee3c722d177559f73288cec91fa3e4bbfd8c27fc": { + "address": "0xee3c722d177559f73288cec91fa3e4bbfd8c27fc", + "symbol": "HHGTTG", + "decimals": 9, + "name": "Douglas Adams", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xee3c722d177559f73288cec91fa3e4bbfd8c27fc.png", + "aggregators": [ + "CoinMarketCap", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x455ad1bc4e18fd4e369234b6e11d88acbc416758": { + "address": "0x455ad1bc4e18fd4e369234b6e11d88acbc416758", + "symbol": "BRCT", + "decimals": 18, + "name": "BRC App", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x455ad1bc4e18fd4e369234b6e11d88acbc416758.png", + "aggregators": [ + "CoinMarketCap", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0xe453c3409f8ad2b1fe1ed08e189634d359705a5b": { + "address": "0xe453c3409f8ad2b1fe1ed08e189634d359705a5b", + "symbol": "DGI", + "decimals": 18, + "name": "DGI Game", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xe453c3409f8ad2b1fe1ed08e189634d359705a5b.png", + "aggregators": [ + "CoinMarketCap", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x4e4990e997e1df3f6b39ff49384e2e7e99bc55fe": { + "address": "0x4e4990e997e1df3f6b39ff49384e2e7e99bc55fe", + "symbol": "SAUDIBONK", + "decimals": 18, + "name": "Saudi Bonk", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x4e4990e997e1df3f6b39ff49384e2e7e99bc55fe.png", + "aggregators": [ + "CoinMarketCap", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0xb9f69c75a3b67425474f8bcab9a3626d8b8249e1": { + "address": "0xb9f69c75a3b67425474f8bcab9a3626d8b8249e1", + "symbol": "TOYBOX", + "decimals": 18, + "name": "Memefi Toybox 404", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xb9f69c75a3b67425474f8bcab9a3626d8b8249e1.png", + "aggregators": [ + "CoinMarketCap", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x6930450a416252c7206fbce76c01ecc850a36cb9": { + "address": "0x6930450a416252c7206fbce76c01ecc850a36cb9", + "symbol": "SHEB", + "decimals": 9, + "name": "SHEBOSHIS", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x6930450a416252c7206fbce76c01ecc850a36cb9.png", + "aggregators": [ + "CoinMarketCap", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x6c10d1611a5a95cb967e4bcab5791fd101194949": { + "address": "0x6c10d1611a5a95cb967e4bcab5791fd101194949", + "symbol": "XERS", + "decimals": 18, + "name": "X Project ERC", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x6c10d1611a5a95cb967e4bcab5791fd101194949.png", + "aggregators": [ + "CoinMarketCap", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x99a01a4d6a4d621094983050d9a2f10b2912e53d": { + "address": "0x99a01a4d6a4d621094983050d9a2f10b2912e53d", + "symbol": "VRSW", + "decimals": 18, + "name": "VirtuSwap", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x99a01a4d6a4d621094983050d9a2f10b2912e53d.png", + "aggregators": [ + "CoinMarketCap", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x95ccffae3eb8767d4a941ec43280961dde89f4de": { + "address": "0x95ccffae3eb8767d4a941ec43280961dde89f4de", + "symbol": "TBANK", + "decimals": 18, + "name": "TaoBank", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x95ccffae3eb8767d4a941ec43280961dde89f4de.png", + "aggregators": [ + "CoinMarketCap", + "LiFi", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0xa76cec201e939660f8afb1fb8d5865d069df0750": { + "address": "0xa76cec201e939660f8afb1fb8d5865d069df0750", + "symbol": "WANNA", + "decimals": 18, + "name": "Wanna Bot", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xa76cec201e939660f8afb1fb8d5865d069df0750.png", + "aggregators": [ + "CoinMarketCap", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x72f713d11480dcf08b37e1898670e736688d218d": { + "address": "0x72f713d11480dcf08b37e1898670e736688d218d", + "symbol": "NAO", + "decimals": 18, + "name": "Nettensor", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x72f713d11480dcf08b37e1898670e736688d218d.png", + "aggregators": [ + "CoinMarketCap", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0xb7037457de15fed6cbecc0c62d5d610834b958ec": { + "address": "0xb7037457de15fed6cbecc0c62d5d610834b958ec", + "symbol": "WHIRL", + "decimals": 18, + "name": "Whirl", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xb7037457de15fed6cbecc0c62d5d610834b958ec.png", + "aggregators": [ + "CoinMarketCap", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0xf938346d7117534222b48d09325a6b8162b3a9e7": { + "address": "0xf938346d7117534222b48d09325a6b8162b3a9e7", + "symbol": "CHOPPY", + "decimals": 9, + "name": "Choppy", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xf938346d7117534222b48d09325a6b8162b3a9e7.png", + "aggregators": [ + "CoinMarketCap", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x000000000503be77a5ed27bef2c19943a8b5ae73": { + "address": "0x000000000503be77a5ed27bef2c19943a8b5ae73", + "symbol": "XTREME", + "decimals": 18, + "name": "Xtremeverse", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x000000000503be77a5ed27bef2c19943a8b5ae73.png", + "aggregators": [ + "CoinMarketCap", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x68f108fb7141ffe36b832c5c225d9e7e474bd664": { + "address": "0x68f108fb7141ffe36b832c5c225d9e7e474bd664", + "symbol": "PEPINU", + "decimals": 18, + "name": "Pepinu", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x68f108fb7141ffe36b832c5c225d9e7e474bd664.png", + "aggregators": [ + "CoinMarketCap", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x451fd37983d494bce294295f78a426832376b7df": { + "address": "0x451fd37983d494bce294295f78a426832376b7df", + "symbol": "XENO", + "decimals": 9, + "name": "Xeno", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x451fd37983d494bce294295f78a426832376b7df.png", + "aggregators": [ + "CoinMarketCap", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x0138f5e99cfdffbacf36e543800c19ef16fa294b": { + "address": "0x0138f5e99cfdffbacf36e543800c19ef16fa294b", + "symbol": "PROPHT", + "decimals": 18, + "name": "Prophet", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x0138f5e99cfdffbacf36e543800c19ef16fa294b.png", + "aggregators": [ + "CoinMarketCap", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x3c0bb14e8367c384885a97bac6d5cceab474ed75": { + "address": "0x3c0bb14e8367c384885a97bac6d5cceab474ed75", + "symbol": "AII", + "decimals": 18, + "name": "Artificial idiot", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x3c0bb14e8367c384885a97bac6d5cceab474ed75.png", + "aggregators": [ + "CoinMarketCap", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x255f1b39172f65dc6406b8bee8b08155c45fe1b6": { + "address": "0x255f1b39172f65dc6406b8bee8b08155c45fe1b6", + "symbol": "HARAMBE", + "decimals": 18, + "name": "HarambeCoin", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x255f1b39172f65dc6406b8bee8b08155c45fe1b6.png", + "aggregators": [ + "CoinMarketCap", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0xbc188b5dbb155b6ea693d46d98bf60b8482939b9": { + "address": "0xbc188b5dbb155b6ea693d46d98bf60b8482939b9", + "symbol": "FTW", + "decimals": 18, + "name": "Apollo FTW", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xbc188b5dbb155b6ea693d46d98bf60b8482939b9.png", + "aggregators": [ + "CoinMarketCap", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0xb549116ac57b47c1b365a890e1d04fd547dfff97": { + "address": "0xb549116ac57b47c1b365a890e1d04fd547dfff97", + "symbol": "MDAI", + "decimals": 18, + "name": "MindAI", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xb549116ac57b47c1b365a890e1d04fd547dfff97.png", + "aggregators": [ + "CoinMarketCap", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0xeb935deb517e4c2abc282e5e251ed4d05db79e93": { + "address": "0xeb935deb517e4c2abc282e5e251ed4d05db79e93", + "symbol": "FBG", + "decimals": 18, + "name": "Fort Block Games", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xeb935deb517e4c2abc282e5e251ed4d05db79e93.png", + "aggregators": [ + "CoinMarketCap", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x00b78238925c320159023c2ac9ef89da8f16d007": { + "address": "0x00b78238925c320159023c2ac9ef89da8f16d007", + "symbol": "VPS", + "decimals": 18, + "name": "VPS Ai", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x00b78238925c320159023c2ac9ef89da8f16d007.png", + "aggregators": [ + "CoinMarketCap", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0xe5ef42d0e5e4aa6b36c613d00db8dad303d505f3": { + "address": "0xe5ef42d0e5e4aa6b36c613d00db8dad303d505f3", + "symbol": "MSOT", + "decimals": 18, + "name": "Btour Chain", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xe5ef42d0e5e4aa6b36c613d00db8dad303d505f3.png", + "aggregators": [ + "CoinMarketCap", + "LiFi", + "Socket", + "Rubic", + "Rango" + ], + "occurrences": 5 + }, + "0xf02c2dc9b3cb7f1ba21ccd82dff4ebc92da8996f": { + "address": "0xf02c2dc9b3cb7f1ba21ccd82dff4ebc92da8996f", + "symbol": "TSA", + "decimals": 18, + "name": "TensorScan AI", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xf02c2dc9b3cb7f1ba21ccd82dff4ebc92da8996f.png", + "aggregators": [ + "CoinMarketCap", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x6715515f5aa98e8bd3624922e1ba91e6f5fc4402": { + "address": "0x6715515f5aa98e8bd3624922e1ba91e6f5fc4402", + "symbol": "SSNC", + "decimals": 18, + "name": "SatoshiSync", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x6715515f5aa98e8bd3624922e1ba91e6f5fc4402.png", + "aggregators": [ + "CoinMarketCap", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x564a80d0123bdd750fb6a9993834968fc595c09a": { + "address": "0x564a80d0123bdd750fb6a9993834968fc595c09a", + "symbol": "SUBF", + "decimals": 18, + "name": "Super Best Friends", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x564a80d0123bdd750fb6a9993834968fc595c09a.png", + "aggregators": [ + "CoinMarketCap", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x2903bd7db50f300b0884f7a15904baffc77f3ec7": { + "address": "0x2903bd7db50f300b0884f7a15904baffc77f3ec7", + "symbol": "ARC", + "decimals": 18, + "name": "Arcade", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x2903bd7db50f300b0884f7a15904baffc77f3ec7.png", + "aggregators": [ + "CoinMarketCap", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0xa0e7626287bd02cbe3531c65148261bf0c0ed98b": { + "address": "0xa0e7626287bd02cbe3531c65148261bf0c0ed98b", + "symbol": "SGT", + "decimals": 18, + "name": "Shill Guard Token", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xa0e7626287bd02cbe3531c65148261bf0c0ed98b.png", + "aggregators": [ + "CoinMarketCap", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x420698ebc9b7c225731c02d887d0729057339d39": { + "address": "0x420698ebc9b7c225731c02d887d0729057339d39", + "symbol": "CHUCK", + "decimals": 18, + "name": "Chuck", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x420698ebc9b7c225731c02d887d0729057339d39.png", + "aggregators": [ + "CoinMarketCap", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0xa1e349fac47e50b42cd323c4285ef4622b60a5e0": { + "address": "0xa1e349fac47e50b42cd323c4285ef4622b60a5e0", + "symbol": "PEPY", + "decimals": 18, + "name": "Pepy coin", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xa1e349fac47e50b42cd323c4285ef4622b60a5e0.png", + "aggregators": [ + "CoinMarketCap", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0xbf5badfae2d219943dcd9652d1ce65960b8a1e0c": { + "address": "0xbf5badfae2d219943dcd9652d1ce65960b8a1e0c", + "symbol": "EARTH", + "decimals": 18, + "name": "PaleBlueDot", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xbf5badfae2d219943dcd9652d1ce65960b8a1e0c.png", + "aggregators": ["CoinMarketCap", "LiFi", "Rubic", "Squid", "Rango"], + "occurrences": 5 + }, + "0x9e22b4f836a461ddc7765e5fad693688e76e6069": { + "address": "0x9e22b4f836a461ddc7765e5fad693688e76e6069", + "symbol": "CHAD", + "decimals": 9, + "name": "Chad Frog", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x9e22b4f836a461ddc7765e5fad693688e76e6069.png", + "aggregators": [ + "CoinMarketCap", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0xa89b728708be04f57c7a33c6f790b6f077298e26": { + "address": "0xa89b728708be04f57c7a33c6f790b6f077298e26", + "symbol": "BART", + "decimals": 18, + "name": "ReptilianZuckerBidenBartcoin", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xa89b728708be04f57c7a33c6f790b6f077298e26.png", + "aggregators": [ + "CoinMarketCap", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0xcd24ba0e3364233ee9301c1d608a14753c8739c5": { + "address": "0xcd24ba0e3364233ee9301c1d608a14753c8739c5", + "symbol": "SOUTH", + "decimals": 18, + "name": "DeepSouth AI", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xcd24ba0e3364233ee9301c1d608a14753c8739c5.png", + "aggregators": [ + "CoinMarketCap", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x195be8ee12aa1591902c4232b5b25017a9cbbdea": { + "address": "0x195be8ee12aa1591902c4232b5b25017a9cbbdea", + "symbol": "POPO", + "decimals": 18, + "name": "POPO", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x195be8ee12aa1591902c4232b5b25017a9cbbdea.png", + "aggregators": [ + "CoinMarketCap", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0xa1d23bbef17f88fefc2ada631738e4c42e906a2e": { + "address": "0xa1d23bbef17f88fefc2ada631738e4c42e906a2e", + "symbol": "EGOD", + "decimals": 9, + "name": "EgodCoin", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xa1d23bbef17f88fefc2ada631738e4c42e906a2e.png", + "aggregators": [ + "CoinMarketCap", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x8b95fe1c06e58c269f1267e0f0093b7b26b85481": { + "address": "0x8b95fe1c06e58c269f1267e0f0093b7b26b85481", + "symbol": "MOJO", + "decimals": 18, + "name": "MOJO The Gorilla", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x8b95fe1c06e58c269f1267e0f0093b7b26b85481.png", + "aggregators": [ + "CoinMarketCap", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x67859a9314b9dca2642023ad8231beaa6cbf1933": { + "address": "0x67859a9314b9dca2642023ad8231beaa6cbf1933", + "symbol": "WOLF", + "decimals": 18, + "name": "Landwolf", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x67859a9314b9dca2642023ad8231beaa6cbf1933.png", + "aggregators": [ + "CoinMarketCap", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x7c5b267ed81009aa7374b5ca7e5137da47045ba8": { + "address": "0x7c5b267ed81009aa7374b5ca7e5137da47045ba8", + "symbol": "TKAI", + "decimals": 18, + "name": "TAIKAI", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x7c5b267ed81009aa7374b5ca7e5137da47045ba8.png", + "aggregators": [ + "CoinMarketCap", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0xd3999188ff689b99d8097a4876f61e70b22f7881": { + "address": "0xd3999188ff689b99d8097a4876f61e70b22f7881", + "symbol": "SPURDO", + "decimals": 18, + "name": "Spurdo Sp rde", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xd3999188ff689b99d8097a4876f61e70b22f7881.png", + "aggregators": [ + "CoinMarketCap", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0xb9eb6f357f040be1d2a3d6b4ba750d1ab8a4233c": { + "address": "0xb9eb6f357f040be1d2a3d6b4ba750d1ab8a4233c", + "symbol": "FRESCO", + "decimals": 9, + "name": "Fresco", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xb9eb6f357f040be1d2a3d6b4ba750d1ab8a4233c.png", + "aggregators": [ + "CoinMarketCap", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x276105758dfb270f5cd845aa04a6ba09c88699ca": { + "address": "0x276105758dfb270f5cd845aa04a6ba09c88699ca", + "symbol": "G", + "decimals": 9, + "name": "G", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x276105758dfb270f5cd845aa04a6ba09c88699ca.png", + "aggregators": [ + "CoinMarketCap", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x3ada3bf9a5c5c59523d6193381c0d14787070e54": { + "address": "0x3ada3bf9a5c5c59523d6193381c0d14787070e54", + "symbol": "NEVA", + "decimals": 18, + "name": "Neva", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x3ada3bf9a5c5c59523d6193381c0d14787070e54.png", + "aggregators": [ + "CoinMarketCap", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x5daa087714cb169f605c673a00aef62a9a7236a6": { + "address": "0x5daa087714cb169f605c673a00aef62a9a7236a6", + "symbol": "RWD", + "decimals": 18, + "name": "REWARD", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x5daa087714cb169f605c673a00aef62a9a7236a6.png", + "aggregators": [ + "CoinMarketCap", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x9a0d1b52e0684ab42aa0c2613abb4c04217e8aa6": { + "address": "0x9a0d1b52e0684ab42aa0c2613abb4c04217e8aa6", + "symbol": "MUNCHY", + "decimals": 9, + "name": "Boys Club Munchy", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x9a0d1b52e0684ab42aa0c2613abb4c04217e8aa6.png", + "aggregators": [ + "CoinMarketCap", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x69bb12b8ee418e4833b8debe4a2bb997ab9ce18e": { + "address": "0x69bb12b8ee418e4833b8debe4a2bb997ab9ce18e", + "symbol": "SALMAN", + "decimals": 9, + "name": "Mohameme Bit Salman", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x69bb12b8ee418e4833b8debe4a2bb997ab9ce18e.png", + "aggregators": [ + "CoinMarketCap", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x3256cade5f8cb1256ac2bd1e2d854dec6d667bdf": { + "address": "0x3256cade5f8cb1256ac2bd1e2d854dec6d667bdf", + "symbol": "MOGU", + "decimals": 18, + "name": "Mogutou", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x3256cade5f8cb1256ac2bd1e2d854dec6d667bdf.png", + "aggregators": [ + "CoinMarketCap", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0xa2b8e02ce95b54362f8db7273015478dd725d7e7": { + "address": "0xa2b8e02ce95b54362f8db7273015478dd725d7e7", + "symbol": "MEMECUP", + "decimals": 8, + "name": "MEME CUP", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xa2b8e02ce95b54362f8db7273015478dd725d7e7.png", + "aggregators": [ + "CoinMarketCap", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0xb69100340a5947e856d873463694ae2186146c43": { + "address": "0xb69100340a5947e856d873463694ae2186146c43", + "symbol": "PEPER", + "decimals": 9, + "name": "Baby Pepe on ETH", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xb69100340a5947e856d873463694ae2186146c43.png", + "aggregators": [ + "CoinMarketCap", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x45e82579792dddf08cb3a037086604c262d78065": { + "address": "0x45e82579792dddf08cb3a037086604c262d78065", + "symbol": "IX", + "decimals": 18, + "name": "illumineX", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x45e82579792dddf08cb3a037086604c262d78065.png", + "aggregators": [ + "CoinMarketCap", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0xdb0238975ce84f89212ffa56c64c0f2b47f8f153": { + "address": "0xdb0238975ce84f89212ffa56c64c0f2b47f8f153", + "symbol": "FLORK", + "decimals": 18, + "name": "Flork", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xdb0238975ce84f89212ffa56c64c0f2b47f8f153.png", + "aggregators": [ + "CoinMarketCap", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x4abd5745f326932b1b673bfa592a20d7bb6bc455": { + "address": "0x4abd5745f326932b1b673bfa592a20d7bb6bc455", + "symbol": "FROGLIC", + "decimals": 18, + "name": "Pink Hood Froglicker", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x4abd5745f326932b1b673bfa592a20d7bb6bc455.png", + "aggregators": [ + "CoinMarketCap", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x2be8e422cb4a5a7f217a8f1b0658952a79132f28": { + "address": "0x2be8e422cb4a5a7f217a8f1b0658952a79132f28", + "symbol": "MSI", + "decimals": 18, + "name": "Monkey Shit Inu", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x2be8e422cb4a5a7f217a8f1b0658952a79132f28.png", + "aggregators": [ + "CoinMarketCap", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0xba00357fd9348da1adbae9b2867b6b596eba4f24": { + "address": "0xba00357fd9348da1adbae9b2867b6b596eba4f24", + "symbol": "LCR", + "decimals": 18, + "name": "LaunchR", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xba00357fd9348da1adbae9b2867b6b596eba4f24.png", + "aggregators": [ + "CoinMarketCap", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x7087c92ec764e75e7be7701eba15cd95d90f501f": { + "address": "0x7087c92ec764e75e7be7701eba15cd95d90f501f", + "symbol": "MATT", + "decimals": 18, + "name": "MATT", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x7087c92ec764e75e7be7701eba15cd95d90f501f.png", + "aggregators": [ + "CoinMarketCap", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x80810a9c31e7243a0bfb9919b0b4020378d1c134": { + "address": "0x80810a9c31e7243a0bfb9919b0b4020378d1c134", + "symbol": "GOP", + "decimals": 9, + "name": "The Republican Party", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x80810a9c31e7243a0bfb9919b0b4020378d1c134.png", + "aggregators": [ + "CoinMarketCap", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x26869045311fc5e5353eadcfa654cd47ddc20356": { + "address": "0x26869045311fc5e5353eadcfa654cd47ddc20356", + "symbol": "QTDAO", + "decimals": 18, + "name": "Quantum DAO", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x26869045311fc5e5353eadcfa654cd47ddc20356.png", + "aggregators": [ + "CoinMarketCap", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0xd7d9babf56a66daff2ac5dc96f7e886c05124676": { + "address": "0xd7d9babf56a66daff2ac5dc96f7e886c05124676", + "symbol": "OMZ", + "decimals": 18, + "name": "Open Meta City", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xd7d9babf56a66daff2ac5dc96f7e886c05124676.png", + "aggregators": [ + "CoinMarketCap", + "LiFi", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x90edf25b14393350f0c1b5b12b6cb3cd3781fb4a": { + "address": "0x90edf25b14393350f0c1b5b12b6cb3cd3781fb4a", + "symbol": "CORE", + "decimals": 18, + "name": "CoreConnect", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x90edf25b14393350f0c1b5b12b6cb3cd3781fb4a.png", + "aggregators": [ + "CoinMarketCap", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x4c1b1302220d7de5c22b495e78b72f2dd2457d45": { + "address": "0x4c1b1302220d7de5c22b495e78b72f2dd2457d45", + "symbol": "BUFFI", + "decimals": 9, + "name": "Bufficorn", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x4c1b1302220d7de5c22b495e78b72f2dd2457d45.png", + "aggregators": [ + "CoinMarketCap", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0xd7cfdb3cdc33dbeb9e9a4c95b61953cf12a008b3": { + "address": "0xd7cfdb3cdc33dbeb9e9a4c95b61953cf12a008b3", + "symbol": "BRUH", + "decimals": 18, + "name": "Bruh", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xd7cfdb3cdc33dbeb9e9a4c95b61953cf12a008b3.png", + "aggregators": [ + "CoinMarketCap", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0xaa6624d7363ef8284aa8ce4e18146ded5f421b2c": { + "address": "0xaa6624d7363ef8284aa8ce4e18146ded5f421b2c", + "symbol": "0DOG", + "decimals": 18, + "name": "Bitcoin Dogs", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xaa6624d7363ef8284aa8ce4e18146ded5f421b2c.png", + "aggregators": [ + "CoinMarketCap", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x01aac2b594f7bdbec740f0f1aa22910ebb4b74ab": { + "address": "0x01aac2b594f7bdbec740f0f1aa22910ebb4b74ab", + "symbol": "UNIO", + "decimals": 18, + "name": "Unio Coin", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x01aac2b594f7bdbec740f0f1aa22910ebb4b74ab.png", + "aggregators": [ + "CoinMarketCap", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x88ce174c655b6d11210a069b2c106632dabdb068": { + "address": "0x88ce174c655b6d11210a069b2c106632dabdb068", + "symbol": "YAWN", + "decimals": 18, + "name": "Yawn s World", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x88ce174c655b6d11210a069b2c106632dabdb068.png", + "aggregators": [ + "CoinMarketCap", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x2156cd781c5e77323d92a4487a0ec45f128e165e": { + "address": "0x2156cd781c5e77323d92a4487a0ec45f128e165e", + "symbol": "BL00P", + "decimals": 18, + "name": "BL00P", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x2156cd781c5e77323d92a4487a0ec45f128e165e.png", + "aggregators": [ + "CoinMarketCap", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x898843fb909e3562c82f2b96f4e3d0693af041df": { + "address": "0x898843fb909e3562c82f2b96f4e3d0693af041df", + "symbol": "LEMON", + "decimals": 18, + "name": "Lemonrocks", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x898843fb909e3562c82f2b96f4e3d0693af041df.png", + "aggregators": [ + "CoinMarketCap", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0xfc21540d6b89667d167d42086e1feb04da3e9b21": { + "address": "0xfc21540d6b89667d167d42086e1feb04da3e9b21", + "symbol": "INFI", + "decimals": 18, + "name": "Infinet", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xfc21540d6b89667d167d42086e1feb04da3e9b21.png", + "aggregators": [ + "CoinMarketCap", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x7e331b55e4fbba7cb9c1fc855ed0dac2983e7798": { + "address": "0x7e331b55e4fbba7cb9c1fc855ed0dac2983e7798", + "symbol": "KOAI", + "decimals": 18, + "name": "KOI", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x7e331b55e4fbba7cb9c1fc855ed0dac2983e7798.png", + "aggregators": [ + "CoinMarketCap", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0xa71261c2b51cb8030700f5601ca597c522dc232e": { + "address": "0xa71261c2b51cb8030700f5601ca597c522dc232e", + "symbol": "SAGE", + "decimals": 18, + "name": "Sage Market", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xa71261c2b51cb8030700f5601ca597c522dc232e.png", + "aggregators": [ + "CoinMarketCap", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x2de1218c31a04e1040fc5501b89e3a58793b3ddf": { + "address": "0x2de1218c31a04e1040fc5501b89e3a58793b3ddf", + "symbol": "3AC", + "decimals": 18, + "name": "Three Arrowz Capitel", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x2de1218c31a04e1040fc5501b89e3a58793b3ddf.png", + "aggregators": [ + "CoinMarketCap", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0xd9641fc2826ecc9bebf4f3852fe4ed92a5239f02": { + "address": "0xd9641fc2826ecc9bebf4f3852fe4ed92a5239f02", + "symbol": "AVENT", + "decimals": 18, + "name": "Aventa", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xd9641fc2826ecc9bebf4f3852fe4ed92a5239f02.png", + "aggregators": [ + "CoinMarketCap", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x968496dd59efc1caa11e94fda99ea67db7be5cd9": { + "address": "0x968496dd59efc1caa11e94fda99ea67db7be5cd9", + "symbol": "DJT", + "decimals": 18, + "name": "TrumpChain", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x968496dd59efc1caa11e94fda99ea67db7be5cd9.png", + "aggregators": [ + "CoinMarketCap", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x89c1da46d692d09814a88a27270d0dca21e4734d": { + "address": "0x89c1da46d692d09814a88a27270d0dca21e4734d", + "symbol": "GM", + "decimals": 10, + "name": "GM Frens", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x89c1da46d692d09814a88a27270d0dca21e4734d.png", + "aggregators": [ + "CoinMarketCap", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0xcb43c88c980ff3a2c3f45f125d9886e7aabcd017": { + "address": "0xcb43c88c980ff3a2c3f45f125d9886e7aabcd017", + "symbol": "FREAK", + "decimals": 18, + "name": "Freakoff", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xcb43c88c980ff3a2c3f45f125d9886e7aabcd017.png", + "aggregators": [ + "CoinMarketCap", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0xe52a736828c782c2a4a345bbe8052aed010fc82d": { + "address": "0xe52a736828c782c2a4a345bbe8052aed010fc82d", + "symbol": "HLT", + "decimals": 2, + "name": "Huanghuali Token", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xe52a736828c782c2a4a345bbe8052aed010fc82d.png", + "aggregators": [ + "CoinMarketCap", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x83389cb4e4f0bff39915efa839cb827460e70d26": { + "address": "0x83389cb4e4f0bff39915efa839cb827460e70d26", + "symbol": "ADX", + "decimals": 9, + "name": "AnyDex", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x83389cb4e4f0bff39915efa839cb827460e70d26.png", + "aggregators": [ + "CoinMarketCap", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x5becd80848e096d065f27c3b1498553c705c77ed": { + "address": "0x5becd80848e096d065f27c3b1498553c705c77ed", + "symbol": "TAI", + "decimals": 18, + "name": "TaiNet", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x5becd80848e096d065f27c3b1498553c705c77ed.png", + "aggregators": [ + "CoinMarketCap", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x49d1372124f9b018f32f13b81de6f4c83d89fcc3": { + "address": "0x49d1372124f9b018f32f13b81de6f4c83d89fcc3", + "symbol": "CGPU", + "decimals": 18, + "name": "CloudGPU", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x49d1372124f9b018f32f13b81de6f4c83d89fcc3.png", + "aggregators": [ + "CoinMarketCap", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0xfe402841227213adebd67ec42921bf7b76415f6c": { + "address": "0xfe402841227213adebd67ec42921bf7b76415f6c", + "symbol": "GOLDN", + "decimals": 18, + "name": "GoLondon", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xfe402841227213adebd67ec42921bf7b76415f6c.png", + "aggregators": [ + "CoinMarketCap", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0xd4fcde9bb1d746dd7e5463b01dd819ee06af25db": { + "address": "0xd4fcde9bb1d746dd7e5463b01dd819ee06af25db", + "symbol": "EZEIGEN", + "decimals": 18, + "name": "Renzo Restaked EIGEN", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xd4fcde9bb1d746dd7e5463b01dd819ee06af25db.png", + "aggregators": [ + "CoinMarketCap", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x01043bf843b88e1182b1db27bdcc93999aa74c56": { + "address": "0x01043bf843b88e1182b1db27bdcc93999aa74c56", + "symbol": "TAOTOOLS", + "decimals": 18, + "name": "TAOTools", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x01043bf843b88e1182b1db27bdcc93999aa74c56.png", + "aggregators": [ + "CoinMarketCap", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x1f38d22f4ec3479c8268c85476b9418716bdb115": { + "address": "0x1f38d22f4ec3479c8268c85476b9418716bdb115", + "symbol": "MEH", + "decimals": 9, + "name": "Meh", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x1f38d22f4ec3479c8268c85476b9418716bdb115.png", + "aggregators": [ + "CoinMarketCap", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0xc4b9e3aa1071741220a548832c887b39cb621970": { + "address": "0xc4b9e3aa1071741220a548832c887b39cb621970", + "symbol": "FUG", + "decimals": 18, + "name": "FUG", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xc4b9e3aa1071741220a548832c887b39cb621970.png", + "aggregators": [ + "CoinMarketCap", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x69420cb71f5fa439a84545e79557977c0600c46e": { + "address": "0x69420cb71f5fa439a84545e79557977c0600c46e", + "symbol": "TRUMP", + "decimals": 9, + "name": "TrumpEffect69420", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x69420cb71f5fa439a84545e79557977c0600c46e.png", + "aggregators": [ + "CoinMarketCap", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0xd05d90a656fc375ac1478689d7bcd31098f2dd1f": { + "address": "0xd05d90a656fc375ac1478689d7bcd31098f2dd1f", + "symbol": "FACTORY", + "decimals": 18, + "name": "ChainFactory", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xd05d90a656fc375ac1478689d7bcd31098f2dd1f.png", + "aggregators": [ + "CoinMarketCap", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x641c0f8b889f8336a69f464ddae3733e3de3788a": { + "address": "0x641c0f8b889f8336a69f464ddae3733e3de3788a", + "symbol": "DAETA", + "decimals": 18, + "name": "D TA", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x641c0f8b889f8336a69f464ddae3733e3de3788a.png", + "aggregators": [ + "CoinMarketCap", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x516d339afa72f6959b8e06a31fbc32da3e49348b": { + "address": "0x516d339afa72f6959b8e06a31fbc32da3e49348b", + "symbol": "CNCT", + "decimals": 18, + "name": "Connect", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x516d339afa72f6959b8e06a31fbc32da3e49348b.png", + "aggregators": [ + "CoinMarketCap", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0xd61a8bbd5c6d8cd9690a89616b33dc939c9fbda9": { + "address": "0xd61a8bbd5c6d8cd9690a89616b33dc939c9fbda9", + "symbol": "SOLO", + "decimals": 18, + "name": "Solo", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xd61a8bbd5c6d8cd9690a89616b33dc939c9fbda9.png", + "aggregators": [ + "CoinMarketCap", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0xc29bbe89e98250ee2eee3ac677bbed542a049efb": { + "address": "0xc29bbe89e98250ee2eee3ac677bbed542a049efb", + "symbol": "CDN", + "decimals": 18, + "name": "CEDEN", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xc29bbe89e98250ee2eee3ac677bbed542a049efb.png", + "aggregators": [ + "CoinMarketCap", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x0000003ceede5c40e5187784d3e8dd5b43dc85f6": { + "address": "0x0000003ceede5c40e5187784d3e8dd5b43dc85f6", + "symbol": "CULTEL", + "decimals": 9, + "name": "Cultel", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x0000003ceede5c40e5187784d3e8dd5b43dc85f6.png", + "aggregators": [ + "CoinMarketCap", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0xcff252a3299be44fa73402966f30a0159308b2ad": { + "address": "0xcff252a3299be44fa73402966f30a0159308b2ad", + "symbol": "ENVOY", + "decimals": 9, + "name": "Envoy A I", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xcff252a3299be44fa73402966f30a0159308b2ad.png", + "aggregators": [ + "CoinMarketCap", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0xd699b83e43415b774b6ed4ce9999680f049af2ab": { + "address": "0xd699b83e43415b774b6ed4ce9999680f049af2ab", + "symbol": "BUBSY", + "decimals": 18, + "name": "Bubsy AI", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xd699b83e43415b774b6ed4ce9999680f049af2ab.png", + "aggregators": [ + "CoinMarketCap", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x68e2e5c9dff32419a108713f83274a4fb5e194ca": { + "address": "0x68e2e5c9dff32419a108713f83274a4fb5e194ca", + "symbol": "GLS", + "decimals": 18, + "name": "Glacier Network", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x68e2e5c9dff32419a108713f83274a4fb5e194ca.png", + "aggregators": [ + "CoinMarketCap", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x48129b305a94d68ce4773ca1f0b55782ac735eac": { + "address": "0x48129b305a94d68ce4773ca1f0b55782ac735eac", + "symbol": "SUDO", + "decimals": 18, + "name": "Sudo Labs", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x48129b305a94d68ce4773ca1f0b55782ac735eac.png", + "aggregators": [ + "CoinMarketCap", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x62b6d83d5afbf395ece55136e7161c119a8fd80c": { + "address": "0x62b6d83d5afbf395ece55136e7161c119a8fd80c", + "symbol": "HOODRAT", + "decimals": 18, + "name": "Hoodrat", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x62b6d83d5afbf395ece55136e7161c119a8fd80c.png", + "aggregators": [ + "CoinMarketCap", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x877f035c83df617b6c901891f90eebc78f8ce050": { + "address": "0x877f035c83df617b6c901891f90eebc78f8ce050", + "symbol": "SENTAI", + "decimals": 18, + "name": "SentAI", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x877f035c83df617b6c901891f90eebc78f8ce050.png", + "aggregators": [ + "CoinMarketCap", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x32f4768fc4a238a58fc9da408d9a0da4333012e4": { + "address": "0x32f4768fc4a238a58fc9da408d9a0da4333012e4", + "symbol": "NAI", + "decimals": 18, + "name": "Nimbus AI", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x32f4768fc4a238a58fc9da408d9a0da4333012e4.png", + "aggregators": [ + "CoinMarketCap", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x0022228a2cc5e7ef0274a7baa600d44da5ab5776": { + "address": "0x0022228a2cc5e7ef0274a7baa600d44da5ab5776", + "symbol": "STUSD", + "decimals": 18, + "name": "Staked USDA", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x0022228a2cc5e7ef0274a7baa600d44da5ab5776.png", + "aggregators": ["Metamask", "LiFi", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 5 + }, + "0x011e128ec62840186f4a07e85e3ace28858c5606": { + "address": "0x011e128ec62840186f4a07e85e3ace28858c5606", + "symbol": "VAL", + "decimals": 18, + "name": "Valeria", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x011e128ec62840186f4a07e85e3ace28858c5606.png", + "aggregators": [ + "Metamask", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x746dda2ea243400d5a63e0700f190ab79f06489e": { + "address": "0x746dda2ea243400d5a63e0700f190ab79f06489e", + "symbol": "BOA", + "decimals": 7, + "name": "BOSAGORA", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x746dda2ea243400d5a63e0700f190ab79f06489e.png", + "aggregators": [ + "Metamask", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x9b99cca871be05119b2012fd4474731dd653febe": { + "address": "0x9b99cca871be05119b2012fd4474731dd653febe", + "symbol": "MATTER", + "decimals": 18, + "name": "Antimatter", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x9b99cca871be05119b2012fd4474731dd653febe.png", + "aggregators": ["Metamask", "1inch", "LiFi", "Rubic", "Rango"], + "occurrences": 5 + }, + "0xc18b4c1e0b4d4d0f1e9627f25399f5073079ac3d": { + "address": "0xc18b4c1e0b4d4d0f1e9627f25399f5073079ac3d", + "symbol": "BOOH", + "decimals": 18, + "name": "BOOH", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xc18b4c1e0b4d4d0f1e9627f25399f5073079ac3d.png", + "aggregators": [ + "Metamask", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0xaedf386b755465871ff874e3e37af5976e247064": { + "address": "0xaedf386b755465871ff874e3e37af5976e247064", + "symbol": "FTN", + "decimals": 18, + "name": "Fasttoken", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xaedf386b755465871ff874e3e37af5976e247064.png", + "aggregators": [ + "Metamask", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0xba9d4199fab4f26efe3551d490e3821486f135ba": { + "address": "0xba9d4199fab4f26efe3551d490e3821486f135ba", + "symbol": "CHSB", + "decimals": 8, + "name": "SwissBorg", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xba9d4199fab4f26efe3551d490e3821486f135ba.png", + "aggregators": ["Metamask", "LiFi", "Socket", "Rubic", "Rango"], + "occurrences": 5 + }, + "0x252231882fb38481497f3c767469106297c8d93b": { + "address": "0x252231882fb38481497f3c767469106297c8d93b", + "symbol": "STATAETHWETH", + "decimals": 18, + "name": "Static Aave Ethereum WETH", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x252231882fb38481497f3c767469106297c8d93b.png", + "aggregators": ["1inch", "LiFi", "Socket", "Rubic", "Rango"], + "occurrences": 5 + }, + "0x00f2a835758b33f3ac53516ebd69f3dc77b0d152": { + "address": "0x00f2a835758b33f3ac53516ebd69f3dc77b0d152", + "symbol": "STATAETHPYUSD", + "decimals": 6, + "name": "Static Aave Ethereum PYUSD", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x00f2a835758b33f3ac53516ebd69f3dc77b0d152.png", + "aggregators": ["1inch", "LiFi", "Socket", "Rubic", "Rango"], + "occurrences": 5 + }, + "0x848107491e029afde0ac543779c7790382f15929": { + "address": "0x848107491e029afde0ac543779c7790382f15929", + "symbol": "STATAETHCRVUSD", + "decimals": 18, + "name": "Static Aave Ethereum crvUSD", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x848107491e029afde0ac543779c7790382f15929.png", + "aggregators": ["1inch", "LiFi", "Socket", "Rubic", "Rango"], + "occurrences": 5 + }, + "0xb82fa9f31612989525992fcfbb09ab22eff5c85a": { + "address": "0xb82fa9f31612989525992fcfbb09ab22eff5c85a", + "symbol": "AETHCRVUSD", + "decimals": 18, + "name": "Aave Ethereum crvUSD", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xb82fa9f31612989525992fcfbb09ab22eff5c85a.png", + "aggregators": ["1inch", "LiFi", "Socket", "Rubic", "Rango"], + "occurrences": 5 + }, + "0xdbf5e36569798d1e39ee9d7b1c61a7409a74f23a": { + "address": "0xdbf5e36569798d1e39ee9d7b1c61a7409a74f23a", + "symbol": "STATAETHLUSD", + "decimals": 18, + "name": "Static Aave Ethereum LUSD", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xdbf5e36569798d1e39ee9d7b1c61a7409a74f23a.png", + "aggregators": ["1inch", "LiFi", "Socket", "Rubic", "Rango"], + "occurrences": 5 + }, + "0x73eddfa87c71addc275c2b9890f5c3a8480bc9e6": { + "address": "0x73eddfa87c71addc275c2b9890f5c3a8480bc9e6", + "symbol": "STATAETHUSDC", + "decimals": 6, + "name": "Static Aave Ethereum USDC", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x73eddfa87c71addc275c2b9890f5c3a8480bc9e6.png", + "aggregators": ["1inch", "LiFi", "Socket", "Rubic", "Rango"], + "occurrences": 5 + }, + "0xceb286c9604c542d3cc08b41aa6c9675b078a832": { + "address": "0xceb286c9604c542d3cc08b41aa6c9675b078a832", + "symbol": "VTX", + "decimals": 18, + "name": "Vortex DeFi", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xceb286c9604c542d3cc08b41aa6c9675b078a832.png", + "aggregators": ["1inch", "LiFi", "Socket", "Rubic", "Rango"], + "occurrences": 5 + }, + "0x7c07f7abe10ce8e33dc6c5ad68fe033085256a84": { + "address": "0x7c07f7abe10ce8e33dc6c5ad68fe033085256a84", + "symbol": "ICETH", + "decimals": 18, + "name": "Interest Compounding ETH Index", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x7c07f7abe10ce8e33dc6c5ad68fe033085256a84.png", + "aggregators": ["1inch", "LiFi", "Socket", "Rubic", "Rango"], + "occurrences": 5 + }, + "0x36c833eed0d376f75d1ff9dfdee260191336065e": { + "address": "0x36c833eed0d376f75d1ff9dfdee260191336065e", + "symbol": "GTCETH", + "decimals": 18, + "name": "Gitcoin Staked ETH Index (gtcETH)", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x36c833eed0d376f75d1ff9dfdee260191336065e.png", + "aggregators": ["1inch", "Socket", "Rubic", "Rango", "SushiSwap"], + "occurrences": 5 + }, + "0xaf270c38ff895ea3f95ed488ceace2386f038249": { + "address": "0xaf270c38ff895ea3f95ed488ceace2386f038249", + "symbol": "STATAETHDAI", + "decimals": 18, + "name": "Static Aave Ethereum DAI", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xaf270c38ff895ea3f95ed488ceace2386f038249.png", + "aggregators": ["1inch", "LiFi", "Socket", "Rubic", "Rango"], + "occurrences": 5 + }, + "0x862c57d48becb45583aeba3f489696d22466ca1b": { + "address": "0x862c57d48becb45583aeba3f489696d22466ca1b", + "symbol": "STATAETHUSDT", + "decimals": 6, + "name": "Static Aave Ethereum USDT", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x862c57d48becb45583aeba3f489696d22466ca1b.png", + "aggregators": ["1inch", "LiFi", "Socket", "Rubic", "Rango"], + "occurrences": 5 + }, + "0xb29130cbcc3f791f077eade0266168e808e5151e": { + "address": "0xb29130cbcc3f791f077eade0266168e808e5151e", + "symbol": "A1INCH", + "decimals": 18, + "name": "Aave interest bearing 1INCH", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xb29130cbcc3f791f077eade0266168e808e5151e.png", + "aggregators": ["1inch", "LiFi", "Socket", "Rubic", "Rango"], + "occurrences": 5 + }, + "0x22fc5a29bd3d6cce19a06f844019fd506fce4455": { + "address": "0x22fc5a29bd3d6cce19a06f844019fd506fce4455", + "symbol": "EPENDLE", + "decimals": 18, + "name": "Equilibria Finance ePENDLE", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x22fc5a29bd3d6cce19a06f844019fd506fce4455.png", + "aggregators": ["LiFi", "Socket", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 5 + }, + "0xc4e15973e6ff2a35cc804c2cf9d2a1b817a8b40f": { + "address": "0xc4e15973e6ff2a35cc804c2cf9d2a1b817a8b40f", + "symbol": "IBBTC", + "decimals": 18, + "name": "Interest-Bearing BTC", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xc4e15973e6ff2a35cc804c2cf9d2a1b817a8b40f.png", + "aggregators": ["LiFi", "Socket", "Rubic", "Rango", "SushiSwap"], + "occurrences": 5 + }, + "0xbe9375c6a420d2eeb258962efb95551a5b722803": { + "address": "0xbe9375c6a420d2eeb258962efb95551a5b722803", + "symbol": "STMX", + "decimals": 18, + "name": "StormX", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xbe9375c6a420d2eeb258962efb95551a5b722803.png", + "aggregators": ["LiFi", "Socket", "Rubic", "Rango", "SushiSwap"], + "occurrences": 5 + }, + "0x9657477ac915f56ca87c253db1320218ec2d5ddd": { + "address": "0x9657477ac915f56ca87c253db1320218ec2d5ddd", + "symbol": "JNE", + "decimals": 18, + "name": "Jake Newman Enterprises", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x9657477ac915f56ca87c253db1320218ec2d5ddd.png", + "aggregators": ["LiFi", "Socket", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 5 + }, + "0x7e7e112a68d8d2e221e11047a72ffc1065c38e1a": { + "address": "0x7e7e112a68d8d2e221e11047a72ffc1065c38e1a", + "symbol": "BDIGG", + "decimals": 18, + "name": "Badger Sett Digg", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x7e7e112a68d8d2e221e11047a72ffc1065c38e1a.png", + "aggregators": ["LiFi", "Rubic", "Rango", "SushiSwap", "Bancor"], + "occurrences": 5 + }, + "0x6b5204b0be36771253cc38e88012e02b752f0f36": { + "address": "0x6b5204b0be36771253cc38e88012e02b752f0f36", + "symbol": "ZUN", + "decimals": 18, + "name": "Zunami Governance Token", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x6b5204b0be36771253cc38e88012e02b752f0f36.png", + "aggregators": ["LiFi", "Socket", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 5 + }, + "0x2aeccb42482cc64e087b6d2e5da39f5a7a7001f8": { + "address": "0x2aeccb42482cc64e087b6d2e5da39f5a7a7001f8", + "symbol": "RULER", + "decimals": 18, + "name": "RULER", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x2aeccb42482cc64e087b6d2e5da39f5a7a7001f8.png", + "aggregators": ["LiFi", "Socket", "Rubic", "Rango", "SushiSwap"], + "occurrences": 5 + }, + "0xc36824905dff2eaaee7ecc09fcc63abc0af5abc5": { + "address": "0xc36824905dff2eaaee7ecc09fcc63abc0af5abc5", + "symbol": "BAB", + "decimals": 18, + "name": "Basis Bond", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xc36824905dff2eaaee7ecc09fcc63abc0af5abc5.png", + "aggregators": ["LiFi", "Socket", "Rubic", "Rango", "SushiSwap"], + "occurrences": 5 + }, + "0x8c0d76c9b18779665475f3e212d9ca1ed6a1a0e6": { + "address": "0x8c0d76c9b18779665475f3e212d9ca1ed6a1a0e6", + "symbol": "ZUNUSD", + "decimals": 18, + "name": "Zunami USD", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x8c0d76c9b18779665475f3e212d9ca1ed6a1a0e6.png", + "aggregators": ["LiFi", "Socket", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 5 + }, + "0xae1eaae3f627aaca434127644371b67b18444051": { + "address": "0xae1eaae3f627aaca434127644371b67b18444051", + "symbol": "YOP", + "decimals": 8, + "name": "YOP", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xae1eaae3f627aaca434127644371b67b18444051.png", + "aggregators": [ + "TrustWallet", + "Socket", + "Rubic", + "Rango", + "SushiSwap" + ], + "occurrences": 5 + }, + "0x845576c64f9754cf09d87e45b720e82f3eef522c": { + "address": "0x845576c64f9754cf09d87e45b720e82f3eef522c", + "symbol": "AVT", + "decimals": 18, + "name": "ArtVerse Token", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x845576c64f9754cf09d87e45b720e82f3eef522c.png", + "aggregators": ["OpenSwap", "Socket", "Rubic", "Rango"], + "occurrences": 4 + }, + "0x8df723295214ea6f21026eeeb4382d475f146f9f": { + "address": "0x8df723295214ea6f21026eeeb4382d475f146f9f", + "symbol": "EURQ", + "decimals": 6, + "name": "Quantoz EURQ", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x8df723295214ea6f21026eeeb4382d475f146f9f.png", + "aggregators": ["CoinMarketCap", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0x0fc2a55d5bd13033f1ee0cdd11f60f7efe66f467": { + "address": "0x0fc2a55d5bd13033f1ee0cdd11f60f7efe66f467", + "symbol": "LA", + "decimals": 18, + "name": "Lagrange", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x0fc2a55d5bd13033f1ee0cdd11f60f7efe66f467.png", + "aggregators": ["CoinMarketCap", "Socket", "Rubic", "Rango"], + "occurrences": 4 + }, + "0x7d2d3688df45ce7c552e19c27e007673da9204b8": { + "address": "0x7d2d3688df45ce7c552e19c27e007673da9204b8", + "symbol": "ALEND", + "decimals": 18, + "name": "Aave Interest bearing LEND", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x7d2d3688df45ce7c552e19c27e007673da9204b8.png", + "aggregators": ["CoinMarketCap", "LiFi", "Socket", "Rubic"], + "occurrences": 4 + }, + "0x71010a9d003445ac60c4e6a7017c1e89a477b438": { + "address": "0x71010a9d003445ac60c4e6a7017c1e89a477b438", + "symbol": "AREP", + "decimals": 18, + "name": "AREP", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x71010a9d003445ac60c4e6a7017c1e89a477b438.png", + "aggregators": ["Aave", "LiFi", "Rubic", "Rango"], + "occurrences": 4 + }, + "0xba3d9687cf50fe253cd2e1cfeede1d6787344ed5": { + "address": "0xba3d9687cf50fe253cd2e1cfeede1d6787344ed5", + "symbol": "AAAVE", + "decimals": 18, + "name": "Aave Interest bearing Aave Token", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xba3d9687cf50fe253cd2e1cfeede1d6787344ed5.png", + "aggregators": ["Aave", "LiFi", "Socket", "Rubic"], + "occurrences": 4 + }, + "0xb124541127a0a657f056d9dd06188c4f1b0e5aab": { + "address": "0xb124541127a0a657f056d9dd06188c4f1b0e5aab", + "symbol": "AUNI", + "decimals": 18, + "name": "Aave Interest bearing Uniswap", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xb124541127a0a657f056d9dd06188c4f1b0e5aab.png", + "aggregators": ["Aave", "LiFi", "Socket", "Rubic"], + "occurrences": 4 + }, + "0xc75f15ada581219c95485c578e124df3985e4ce0": { + "address": "0xc75f15ada581219c95485c578e124df3985e4ce0", + "symbol": "ZZZ", + "decimals": 18, + "name": "ZZZ", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xc75f15ada581219c95485c578e124df3985e4ce0.png", + "aggregators": ["CoinMarketCap", "LiFi", "Rubic", "Rango"], + "occurrences": 4 + }, + "0x4fc15c91a9c4a9efb404174464687e8e128730c2": { + "address": "0x4fc15c91a9c4a9efb404174464687e8e128730c2", + "symbol": "STAT", + "decimals": 18, + "name": "STAT", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x4fc15c91a9c4a9efb404174464687e8e128730c2.png", + "aggregators": ["Metamask", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0xd37ee7e4f452c6638c96536e68090de8cbcdb583": { + "address": "0xd37ee7e4f452c6638c96536e68090de8cbcdb583", + "symbol": "AGUSD", + "decimals": 2, + "name": "Aave GUSD", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xd37ee7e4f452c6638c96536e68090de8cbcdb583.png", + "aggregators": ["Metamask", "LiFi", "Rubic", "Sonarwatch"], + "occurrences": 4 + }, + "0x4e107a0000db66f0e9fd2039288bf811dd1f9c74": { + "address": "0x4e107a0000db66f0e9fd2039288bf811dd1f9c74", + "symbol": "VLR", + "decimals": 18, + "name": "Velora", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x4e107a0000db66f0e9fd2039288bf811dd1f9c74.png", + "aggregators": ["CoinMarketCap", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0x2e516ba5bf3b7ee47fb99b09eadb60bde80a82e0": { + "address": "0x2e516ba5bf3b7ee47fb99b09eadb60bde80a82e0", + "symbol": "EGGS", + "decimals": 18, + "name": "Eggs", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x2e516ba5bf3b7ee47fb99b09eadb60bde80a82e0.png", + "aggregators": ["CoinMarketCap", "Socket", "Rubic", "Sonarwatch"], + "occurrences": 4 + }, + "0xbe6be64e9e5042b6e84e4c27956cce6353efa5f5": { + "address": "0xbe6be64e9e5042b6e84e4c27956cce6353efa5f5", + "symbol": "BEG", + "decimals": 18, + "name": "Beg", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xbe6be64e9e5042b6e84e4c27956cce6353efa5f5.png", + "aggregators": ["CoinMarketCap", "Socket", "Rubic", "Sonarwatch"], + "occurrences": 4 + }, + "0x7714f320adca62b149df2579361afec729c5fe6a": { + "address": "0x7714f320adca62b149df2579361afec729c5fe6a", + "symbol": "TUP", + "decimals": 18, + "name": "Tenup", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x7714f320adca62b149df2579361afec729c5fe6a.png", + "aggregators": ["CoinMarketCap", "Socket", "Rubic", "Sonarwatch"], + "occurrences": 4 + }, + "0x1aad217b8f78dba5e6693460e8470f8b1a3977f3": { + "address": "0x1aad217b8f78dba5e6693460e8470f8b1a3977f3", + "symbol": "STRCX", + "decimals": 18, + "name": "Strategy PP Variable xStock", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x1aad217b8f78dba5e6693460e8470f8b1a3977f3.png", + "aggregators": ["CoinGecko", "LiFi", "Rubic", "Rango"], + "occurrences": 4 + }, + "0x96a5399d07896f757bd4c6ef56461f58db951862": { + "address": "0x96a5399d07896f757bd4c6ef56461f58db951862", + "symbol": "DRAGONX", + "decimals": 18, + "name": "DragonX win", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x96a5399d07896f757bd4c6ef56461f58db951862.png", + "aggregators": ["CoinMarketCap", "Socket", "Rubic", "Sonarwatch"], + "occurrences": 4 + }, + "0xc7a2572fa8fdb0f7e81d6d3c4e3ccf78fb0dc374": { + "address": "0xc7a2572fa8fdb0f7e81d6d3c4e3ccf78fb0dc374", + "symbol": "FINALE", + "decimals": 18, + "name": "Bens Finale", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xc7a2572fa8fdb0f7e81d6d3c4e3ccf78fb0dc374.png", + "aggregators": ["Metamask", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0x6aeb95f06cda84ca345c2de0f3b7f96923a44f4c": { + "address": "0x6aeb95f06cda84ca345c2de0f3b7f96923a44f4c", + "symbol": "BERRY", + "decimals": 14, + "name": "Rentberry", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x6aeb95f06cda84ca345c2de0f3b7f96923a44f4c.png", + "aggregators": ["CoinMarketCap", "Socket", "Rubic", "Sonarwatch"], + "occurrences": 4 + }, + "0x03aa6298f1370642642415edc0db8b957783e8d6": { + "address": "0x03aa6298f1370642642415edc0db8b957783e8d6", + "symbol": "NMT", + "decimals": 18, + "name": "NetMind Token", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x03aa6298f1370642642415edc0db8b957783e8d6.png", + "aggregators": ["CoinMarketCap", "Socket", "Rubic", "Sonarwatch"], + "occurrences": 4 + }, + "0x97de57ec338ab5d51557da3434828c5dbfada371": { + "address": "0x97de57ec338ab5d51557da3434828c5dbfada371", + "symbol": "EUSD", + "decimals": 18, + "name": "eUSD OLD", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x97de57ec338ab5d51557da3434828c5dbfada371.png", + "aggregators": ["CoinMarketCap", "Socket", "Rubic", "Sonarwatch"], + "occurrences": 4 + }, + "0x12970e6868f88f6557b76120662c1b3e50a646bf": { + "address": "0x12970e6868f88f6557b76120662c1b3e50a646bf", + "symbol": "LADYS", + "decimals": 18, + "name": "Milady Meme Coin", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x12970e6868f88f6557b76120662c1b3e50a646bf.png", + "aggregators": ["CoinMarketCap", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0x465dbc39f46f9d43c581a5d90a43e4a0f2a6ff2d": { + "address": "0x465dbc39f46f9d43c581a5d90a43e4a0f2a6ff2d", + "symbol": "ITO", + "decimals": 9, + "name": "ITO", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x465dbc39f46f9d43c581a5d90a43e4a0f2a6ff2d.png", + "aggregators": ["CoinMarketCap", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0x3235b13708f178af6f110de7177ed5de10c1093d": { + "address": "0x3235b13708f178af6f110de7177ed5de10c1093d", + "symbol": "MNFT", + "decimals": 18, + "name": "MNFT", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x3235b13708f178af6f110de7177ed5de10c1093d.png", + "aggregators": ["CoinMarketCap", "Socket", "Rubic", "Rango"], + "occurrences": 4 + }, + "0x524d524b4c9366be706d3a90dcf70076ca037ae3": { + "address": "0x524d524b4c9366be706d3a90dcf70076ca037ae3", + "symbol": "RMRK", + "decimals": 18, + "name": "RMRK", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x524d524b4c9366be706d3a90dcf70076ca037ae3.png", + "aggregators": ["CoinMarketCap", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0x92df60c51c710a1b1c20e42d85e221f3a1bfc7f2": { + "address": "0x92df60c51c710a1b1c20e42d85e221f3a1bfc7f2", + "symbol": "BANANA", + "decimals": 18, + "name": "ApeSwap", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x92df60c51c710a1b1c20e42d85e221f3a1bfc7f2.png", + "aggregators": ["CoinMarketCap", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0x4b19c70da4c6fa4baa0660825e889d2f7eabc279": { + "address": "0x4b19c70da4c6fa4baa0660825e889d2f7eabc279", + "symbol": "GMM", + "decimals": 18, + "name": "Gamium", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x4b19c70da4c6fa4baa0660825e889d2f7eabc279.png", + "aggregators": ["CoinMarketCap", "Socket", "Rubic", "Sonarwatch"], + "occurrences": 4 + }, + "0x55af5865807b196bd0197e0902746f31fbccfa58": { + "address": "0x55af5865807b196bd0197e0902746f31fbccfa58", + "symbol": "BOO", + "decimals": 18, + "name": "Spookyswap", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x55af5865807b196bd0197e0902746f31fbccfa58.png", + "aggregators": ["CoinMarketCap", "Socket", "Rubic", "Sonarwatch"], + "occurrences": 4 + }, + "0x809e130e10e787139c54e1d12d3d1971b7a675bf": { + "address": "0x809e130e10e787139c54e1d12d3d1971b7a675bf", + "symbol": "MTD", + "decimals": 18, + "name": "Minted", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x809e130e10e787139c54e1d12d3d1971b7a675bf.png", + "aggregators": ["CoinMarketCap", "Socket", "Rubic", "Sonarwatch"], + "occurrences": 4 + }, + "0x839e71613f9aa06e5701cf6de63e303616b0dde3": { + "address": "0x839e71613f9aa06e5701cf6de63e303616b0dde3", + "symbol": "VVS", + "decimals": 18, + "name": "VVS Finance", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x839e71613f9aa06e5701cf6de63e303616b0dde3.png", + "aggregators": ["CoinMarketCap", "Socket", "Rubic", "Sonarwatch"], + "occurrences": 4 + }, + "0x2f32b39023da7d6a6486a85d12b346eb9c2a0d19": { + "address": "0x2f32b39023da7d6a6486a85d12b346eb9c2a0d19", + "symbol": "FER", + "decimals": 18, + "name": "Ferro", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x2f32b39023da7d6a6486a85d12b346eb9c2a0d19.png", + "aggregators": ["CoinMarketCap", "Socket", "Rubic", "Sonarwatch"], + "occurrences": 4 + }, + "0xcb94be6f13a1182e4a4b6140cb7bf2025d28e41b": { + "address": "0xcb94be6f13a1182e4a4b6140cb7bf2025d28e41b", + "symbol": "TRST", + "decimals": 6, + "name": "Trustcoin", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xcb94be6f13a1182e4a4b6140cb7bf2025d28e41b.png", + "aggregators": ["Metamask", "LiFi", "Rubic", "Bancor"], + "occurrences": 4 + }, + "0x8727c112c712c4a03371ac87a74dd6ab104af768": { + "address": "0x8727c112c712c4a03371ac87a74dd6ab104af768", + "symbol": "JET", + "decimals": 18, + "name": "Jetcoin", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x8727c112c712c4a03371ac87a74dd6ab104af768.png", + "aggregators": ["CoinMarketCap", "Socket", "Rubic", "Rango"], + "occurrences": 4 + }, + "0x65be44c747988fbf606207698c944df4442efe19": { + "address": "0x65be44c747988fbf606207698c944df4442efe19", + "symbol": "FUCK", + "decimals": 4, + "name": "Finally Usable Crypto Karma", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x65be44c747988fbf606207698c944df4442efe19.png", + "aggregators": ["CoinMarketCap", "LiFi", "Socket", "Rubic"], + "occurrences": 4 + }, + "0xb7cb1c96db6b22b0d3d9536e0108d062bd488f74": { + "address": "0xb7cb1c96db6b22b0d3d9536e0108d062bd488f74", + "symbol": "WTC", + "decimals": 18, + "name": "Walton Token", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xb7cb1c96db6b22b0d3d9536e0108d062bd488f74.png", + "aggregators": ["Metamask", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0x07e3c70653548b04f0a75970c1f81b4cbbfb606f": { + "address": "0x07e3c70653548b04f0a75970c1f81b4cbbfb606f", + "symbol": "DLT", + "decimals": 18, + "name": "Agrello", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x07e3c70653548b04f0a75970c1f81b4cbbfb606f.png", + "aggregators": ["CoinMarketCap", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0xc0eb85285d83217cd7c891702bcbc0fc401e2d9d": { + "address": "0xc0eb85285d83217cd7c891702bcbc0fc401e2d9d", + "symbol": "HVN", + "decimals": 8, + "name": "Hiveterminal", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xc0eb85285d83217cd7c891702bcbc0fc401e2d9d.png", + "aggregators": ["CoinMarketCap", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0x8d75959f1e61ec2571aa72798237101f084de63a": { + "address": "0x8d75959f1e61ec2571aa72798237101f084de63a", + "symbol": "SUB", + "decimals": 18, + "name": "Substratum", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x8d75959f1e61ec2571aa72798237101f084de63a.png", + "aggregators": ["CoinMarketCap", "Socket", "Rubic", "Rango"], + "occurrences": 4 + }, + "0xf0ee6b27b759c9893ce4f094b49ad28fd15a23e4": { + "address": "0xf0ee6b27b759c9893ce4f094b49ad28fd15a23e4", + "symbol": "ENG", + "decimals": 8, + "name": "Enigma", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xf0ee6b27b759c9893ce4f094b49ad28fd15a23e4.png", + "aggregators": ["Metamask", "LiFi", "Rubic", "Rango"], + "occurrences": 4 + }, + "0x9af4f26941677c706cfecf6d3379ff01bb85d5ab": { + "address": "0x9af4f26941677c706cfecf6d3379ff01bb85d5ab", + "symbol": "DRT", + "decimals": 8, + "name": "DomRaiderToken", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x9af4f26941677c706cfecf6d3379ff01bb85d5ab.png", + "aggregators": ["Metamask", "Rubic", "Rango", "Bancor"], + "occurrences": 4 + }, + "0x2ef52ed7de8c5ce03a4ef0efbe9b7450f2d7edc9": { + "address": "0x2ef52ed7de8c5ce03a4ef0efbe9b7450f2d7edc9", + "symbol": "REV", + "decimals": 6, + "name": "Revain", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x2ef52ed7de8c5ce03a4ef0efbe9b7450f2d7edc9.png", + "aggregators": ["CoinMarketCap", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0xada86b1b313d1d5267e3fc0bb303f0a2b66d0ea7": { + "address": "0xada86b1b313d1d5267e3fc0bb303f0a2b66d0ea7", + "symbol": "COV", + "decimals": 18, + "name": "Covesting", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xada86b1b313d1d5267e3fc0bb303f0a2b66d0ea7.png", + "aggregators": ["CoinMarketCap", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0x4092678e4e78230f46a1534c0fbc8fa39780892b": { + "address": "0x4092678e4e78230f46a1534c0fbc8fa39780892b", + "symbol": "OCN", + "decimals": 18, + "name": "Odyssey", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x4092678e4e78230f46a1534c0fbc8fa39780892b.png", + "aggregators": ["CoinMarketCap", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0x83cee9e086a77e492ee0bb93c2b0437ad6fdeccc": { + "address": "0x83cee9e086a77e492ee0bb93c2b0437ad6fdeccc", + "symbol": "MNTP", + "decimals": 18, + "name": "MNTP", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x83cee9e086a77e492ee0bb93c2b0437ad6fdeccc.png", + "aggregators": ["CoinMarketCap", "LiFi", "Rubic", "Rango"], + "occurrences": 4 + }, + "0xeda8b016efa8b1161208cf041cd86972eee0f31e": { + "address": "0xeda8b016efa8b1161208cf041cd86972eee0f31e", + "symbol": "IHT", + "decimals": 18, + "name": "IHT Real Estate Protocol", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xeda8b016efa8b1161208cf041cd86972eee0f31e.png", + "aggregators": ["CoinMarketCap", "Socket", "Rubic", "Rango"], + "occurrences": 4 + }, + "0x6ba460ab75cd2c56343b3517ffeba60748654d26": { + "address": "0x6ba460ab75cd2c56343b3517ffeba60748654d26", + "symbol": "UP", + "decimals": 8, + "name": "UP", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x6ba460ab75cd2c56343b3517ffeba60748654d26.png", + "aggregators": ["CoinMarketCap", "Socket", "Rubic", "Rango"], + "occurrences": 4 + }, + "0x28b5e12cce51f15594b0b91d5b5adaa70f684a02": { + "address": "0x28b5e12cce51f15594b0b91d5b5adaa70f684a02", + "symbol": "NPX", + "decimals": 2, + "name": "NaPoleonX", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x28b5e12cce51f15594b0b91d5b5adaa70f684a02.png", + "aggregators": ["CoinMarketCap", "Socket", "Rubic", "Rango"], + "occurrences": 4 + }, + "0x3893b9422cd5d70a81edeffe3d5a1c6a978310bb": { + "address": "0x3893b9422cd5d70a81edeffe3d5a1c6a978310bb", + "symbol": "MITH", + "decimals": 18, + "name": "Mithril", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x3893b9422cd5d70a81edeffe3d5a1c6a978310bb.png", + "aggregators": ["Metamask", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0x4de2573e27e648607b50e1cfff921a33e4a34405": { + "address": "0x4de2573e27e648607b50e1cfff921a33e4a34405", + "symbol": "LST", + "decimals": 18, + "name": "LST", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x4de2573e27e648607b50e1cfff921a33e4a34405.png", + "aggregators": ["CoinMarketCap", "1inch", "Rubic", "Rango"], + "occurrences": 4 + }, + "0x28dee01d53fed0edf5f6e310bf8ef9311513ae40": { + "address": "0x28dee01d53fed0edf5f6e310bf8ef9311513ae40", + "symbol": "XBP", + "decimals": 18, + "name": "BlitzPredict", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x28dee01d53fed0edf5f6e310bf8ef9311513ae40.png", + "aggregators": ["Metamask", "Rubic", "Rango", "Bancor"], + "occurrences": 4 + }, + "0x737f98ac8ca59f2c68ad658e3c3d8c8963e40a4c": { + "address": "0x737f98ac8ca59f2c68ad658e3c3d8c8963e40a4c", + "symbol": "AMN", + "decimals": 18, + "name": "Amon", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x737f98ac8ca59f2c68ad658e3c3d8c8963e40a4c.png", + "aggregators": ["CoinMarketCap", "Rubic", "Rango", "Bancor"], + "occurrences": 4 + }, + "0xedd7c94fd7b4971b916d15067bc454b9e1bad980": { + "address": "0xedd7c94fd7b4971b916d15067bc454b9e1bad980", + "symbol": "ZIPT", + "decimals": 18, + "name": "Zippie", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xedd7c94fd7b4971b916d15067bc454b9e1bad980.png", + "aggregators": ["CoinMarketCap", "Rubic", "Rango", "Bancor"], + "occurrences": 4 + }, + "0x048fe49be32adfc9ed68c37d32b5ec9df17b3603": { + "address": "0x048fe49be32adfc9ed68c37d32b5ec9df17b3603", + "symbol": "SKM", + "decimals": 18, + "name": "Skrumble Network V2", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x048fe49be32adfc9ed68c37d32b5ec9df17b3603.png", + "aggregators": ["Metamask", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0x63f584fa56e60e4d0fe8802b27c7e6e3b33e007f": { + "address": "0x63f584fa56e60e4d0fe8802b27c7e6e3b33e007f", + "symbol": "BOX", + "decimals": 18, + "name": "BOX Token", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x63f584fa56e60e4d0fe8802b27c7e6e3b33e007f.png", + "aggregators": ["CoinMarketCap", "Socket", "Rubic", "Rango"], + "occurrences": 4 + }, + "0xe530441f4f73bdb6dc2fa5af7c3fc5fd551ec838": { + "address": "0xe530441f4f73bdb6dc2fa5af7c3fc5fd551ec838", + "symbol": "GSE", + "decimals": 4, + "name": "GSENetwork", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xe530441f4f73bdb6dc2fa5af7c3fc5fd551ec838.png", + "aggregators": ["CoinMarketCap", "Socket", "Rubic", "Rango"], + "occurrences": 4 + }, + "0xee4458e052b533b1aabd493b5f8c4d85d7b263dc": { + "address": "0xee4458e052b533b1aabd493b5f8c4d85d7b263dc", + "symbol": "PASS", + "decimals": 6, + "name": "Blockpass", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xee4458e052b533b1aabd493b5f8c4d85d7b263dc.png", + "aggregators": ["CoinMarketCap", "LiFi", "Socket", "Rubic"], + "occurrences": 4 + }, + "0xba745513acebcbb977497c569d4f7d340f2a936b": { + "address": "0xba745513acebcbb977497c569d4f7d340f2a936b", + "symbol": "MFTU", + "decimals": 18, + "name": "Mainstream For The Underground", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xba745513acebcbb977497c569d4f7d340f2a936b.png", + "aggregators": ["CoinMarketCap", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0xeaf61fc150cd5c3bea75744e830d916e60ea5a9f": { + "address": "0xeaf61fc150cd5c3bea75744e830d916e60ea5a9f", + "symbol": "TYPE", + "decimals": 4, + "name": "Typerium", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xeaf61fc150cd5c3bea75744e830d916e60ea5a9f.png", + "aggregators": ["CoinMarketCap", "Socket", "Rubic", "Sonarwatch"], + "occurrences": 4 + }, + "0x4d807509aece24c0fa5a102b6a3b059ec6e14392": { + "address": "0x4d807509aece24c0fa5a102b6a3b059ec6e14392", + "symbol": "ONE", + "decimals": 18, + "name": "Menlo One", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x4d807509aece24c0fa5a102b6a3b059ec6e14392.png", + "aggregators": ["CoinMarketCap", "LiFi", "Socket", "Rubic"], + "occurrences": 4 + }, + "0xfef4185594457050cc9c23980d301908fe057bb1": { + "address": "0xfef4185594457050cc9c23980d301908fe057bb1", + "symbol": "VIDT-OLD", + "decimals": 18, + "name": "VIDT Datalink", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xfef4185594457050cc9c23980d301908fe057bb1.png", + "aggregators": ["Metamask", "LiFi", "Socket", "Rubic"], + "occurrences": 4 + }, + "0x5b71bee9d961b1b848f8485eec8d8787f80217f5": { + "address": "0x5b71bee9d961b1b848f8485eec8d8787f80217f5", + "symbol": "BF", + "decimals": 18, + "name": "BitForex Token", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x5b71bee9d961b1b848f8485eec8d8787f80217f5.png", + "aggregators": ["CoinMarketCap", "Socket", "Rubic", "Rango"], + "occurrences": 4 + }, + "0x309627af60f0926daa6041b8279484312f2bf060": { + "address": "0x309627af60f0926daa6041b8279484312f2bf060", + "symbol": "USDB", + "decimals": 18, + "name": "Bancor USD Token", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x309627af60f0926daa6041b8279484312f2bf060.png", + "aggregators": ["CoinMarketCap", "Rubic", "Rango", "Bancor"], + "occurrences": 4 + }, + "0x580c8520deda0a441522aeae0f9f7a5f29629afa": { + "address": "0x580c8520deda0a441522aeae0f9f7a5f29629afa", + "symbol": "DAWN", + "decimals": 18, + "name": "Dawn Protocol", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x580c8520deda0a441522aeae0f9f7a5f29629afa.png", + "aggregators": ["CoinMarketCap", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0x0000000000b3f879cb30fe243b4dfee438691c04": { + "address": "0x0000000000b3f879cb30fe243b4dfee438691c04", + "symbol": "GST2", + "decimals": 2, + "name": "GST2", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x0000000000b3f879cb30fe243b4dfee438691c04.png", + "aggregators": ["CoinMarketCap", "LiFi", "Rubic", "Rango"], + "occurrences": 4 + }, + "0x635d081fd8f6670135d8a3640e2cf78220787d56": { + "address": "0x635d081fd8f6670135d8a3640e2cf78220787d56", + "symbol": "ADD", + "decimals": 18, + "name": "ADD", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x635d081fd8f6670135d8a3640e2cf78220787d56.png", + "aggregators": ["CoinMarketCap", "LiFi", "Socket", "Rubic"], + "occurrences": 4 + }, + "0xeabacd844a196d7faf3ce596edebf9900341b420": { + "address": "0xeabacd844a196d7faf3ce596edebf9900341b420", + "symbol": "SCEX", + "decimals": 18, + "name": "Synth sCEX", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xeabacd844a196d7faf3ce596edebf9900341b420.png", + "aggregators": ["CoinMarketCap", "Rubic", "Rango", "SushiSwap"], + "occurrences": 4 + }, + "0xf29992d7b589a0a6bd2de7be29a97a6eb73eaf85": { + "address": "0xf29992d7b589a0a6bd2de7be29a97a6eb73eaf85", + "symbol": "DMST", + "decimals": 18, + "name": "DMScript", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xf29992d7b589a0a6bd2de7be29a97a6eb73eaf85.png", + "aggregators": ["Metamask", "LiFi", "Rubic", "Rango"], + "occurrences": 4 + }, + "0x8888889213dd4da823ebdd1e235b09590633c150": { + "address": "0x8888889213dd4da823ebdd1e235b09590633c150", + "symbol": "MBC", + "decimals": 18, + "name": "Marblecoin", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x8888889213dd4da823ebdd1e235b09590633c150.png", + "aggregators": ["CoinMarketCap", "LiFi", "Socket", "Rubic"], + "occurrences": 4 + }, + "0xacfe45c352c902ae3a3f9b6bfe6ec994c5d791bf": { + "address": "0xacfe45c352c902ae3a3f9b6bfe6ec994c5d791bf", + "symbol": "MBONK", + "decimals": 18, + "name": "megaBONK", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xacfe45c352c902ae3a3f9b6bfe6ec994c5d791bf.png", + "aggregators": ["CoinMarketCap", "LiFi", "Socket", "Rubic"], + "occurrences": 4 + }, + "0xf5717f5df41ea67ef67dfd3c1d02f9940bcf5d08": { + "address": "0xf5717f5df41ea67ef67dfd3c1d02f9940bcf5d08", + "symbol": "SNN", + "decimals": 3, + "name": "SeChain", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xf5717f5df41ea67ef67dfd3c1d02f9940bcf5d08.png", + "aggregators": ["CoinMarketCap", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0xa2b0fde6d710e201d0d608e924a484d1a5fed57c": { + "address": "0xa2b0fde6d710e201d0d608e924a484d1a5fed57c", + "symbol": "SXRP", + "decimals": 18, + "name": "Synth XRP", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xa2b0fde6d710e201d0d608e924a484d1a5fed57c.png", + "aggregators": ["CoinMarketCap", "Rubic", "Rango", "SushiSwap"], + "occurrences": 4 + }, + "0xd15ecdcf5ea68e3995b2d0527a0ae0a3258302f8": { + "address": "0xd15ecdcf5ea68e3995b2d0527a0ae0a3258302f8", + "symbol": "MCX", + "decimals": 18, + "name": "MCX", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xd15ecdcf5ea68e3995b2d0527a0ae0a3258302f8.png", + "aggregators": ["CoinMarketCap", "LiFi", "Rubic", "Rango"], + "occurrences": 4 + }, + "0xb2279b6769cfba691416f00609b16244c0cf4b20": { + "address": "0xb2279b6769cfba691416f00609b16244c0cf4b20", + "symbol": "WAIF", + "decimals": 18, + "name": "Waifu", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xb2279b6769cfba691416f00609b16244c0cf4b20.png", + "aggregators": ["CoinMarketCap", "LiFi", "Socket", "Rubic"], + "occurrences": 4 + }, + "0x4ecb692b0fedecd7b486b4c99044392784877e8c": { + "address": "0x4ecb692b0fedecd7b486b4c99044392784877e8c", + "symbol": "CHERRY", + "decimals": 4, + "name": "Cherry", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x4ecb692b0fedecd7b486b4c99044392784877e8c.png", + "aggregators": ["CoinMarketCap", "LiFi", "Socket", "Rubic"], + "occurrences": 4 + }, + "0x26e43759551333e57f073bb0772f50329a957b30": { + "address": "0x26e43759551333e57f073bb0772f50329a957b30", + "symbol": "DGVC", + "decimals": 18, + "name": "DegenVC", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x26e43759551333e57f073bb0772f50329a957b30.png", + "aggregators": ["CoinMarketCap", "LiFi", "TrustWallet", "Rubic"], + "occurrences": 4 + }, + "0x31fdd1c6607f47c14a2821f599211c67ac20fa96": { + "address": "0x31fdd1c6607f47c14a2821f599211c67ac20fa96", + "symbol": "BUY", + "decimals": 18, + "name": "Burency", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x31fdd1c6607f47c14a2821f599211c67ac20fa96.png", + "aggregators": ["CoinMarketCap", "Socket", "Rubic", "Rango"], + "occurrences": 4 + }, + "0x73ee6d7e6b203125add89320e9f343d65ec7c39a": { + "address": "0x73ee6d7e6b203125add89320e9f343d65ec7c39a", + "symbol": "AXI", + "decimals": 18, + "name": "Axioms", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x73ee6d7e6b203125add89320e9f343d65ec7c39a.png", + "aggregators": ["CoinMarketCap", "LiFi", "Socket", "Rubic"], + "occurrences": 4 + }, + "0x0ada190c81b814548ddc2f6adc4a689ce7c1fe73": { + "address": "0x0ada190c81b814548ddc2f6adc4a689ce7c1fe73", + "symbol": "YAXIS", + "decimals": 18, + "name": "yAxis", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x0ada190c81b814548ddc2f6adc4a689ce7c1fe73.png", + "aggregators": ["Metamask", "Socket", "Rubic", "Rango"], + "occurrences": 4 + }, + "0xc22b30e4cce6b78aaaadae91e44e73593929a3e9": { + "address": "0xc22b30e4cce6b78aaaadae91e44e73593929a3e9", + "symbol": "RAC", + "decimals": 18, + "name": "RAC", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xc22b30e4cce6b78aaaadae91e44e73593929a3e9.png", + "aggregators": ["CoinMarketCap", "LiFi", "Socket", "Rubic"], + "occurrences": 4 + }, + "0x83f873388cd14b83a9f47fabde3c9850b5c74548": { + "address": "0x83f873388cd14b83a9f47fabde3c9850b5c74548", + "symbol": "ZUT", + "decimals": 18, + "name": "ZeroUtility", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x83f873388cd14b83a9f47fabde3c9850b5c74548.png", + "aggregators": ["CoinMarketCap", "LiFi", "Socket", "Rubic"], + "occurrences": 4 + }, + "0x3218a02f8f8b5c3894ce30eb255f10bcba13e654": { + "address": "0x3218a02f8f8b5c3894ce30eb255f10bcba13e654", + "symbol": "MEGA", + "decimals": 18, + "name": "MegaCryptoPolis $MEGA Token (MEGA)", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x3218a02f8f8b5c3894ce30eb255f10bcba13e654.png", + "aggregators": ["CoinMarketCap", "LiFi", "Socket", "Rubic"], + "occurrences": 4 + }, + "0x20e7125677311fca903a8897042b9983f22ea295": { + "address": "0x20e7125677311fca903a8897042b9983f22ea295", + "symbol": "FWT", + "decimals": 18, + "name": "Freeway", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x20e7125677311fca903a8897042b9983f22ea295.png", + "aggregators": ["CoinMarketCap", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0xe1b583dc66e0a24fd9af2dc665f6f5e48978e106": { + "address": "0xe1b583dc66e0a24fd9af2dc665f6f5e48978e106", + "symbol": "MEE", + "decimals": 18, + "name": "MEE Token", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xe1b583dc66e0a24fd9af2dc665f6f5e48978e106.png", + "aggregators": ["CoinMarketCap", "LiFi", "Socket", "Rubic"], + "occurrences": 4 + }, + "0x69e8b9528cabda89fe846c67675b5d73d463a916": { + "address": "0x69e8b9528cabda89fe846c67675b5d73d463a916", + "symbol": "OPEN", + "decimals": 18, + "name": "OPEN Governance Token", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x69e8b9528cabda89fe846c67675b5d73d463a916.png", + "aggregators": ["CoinMarketCap", "Socket", "Rubic", "Rango"], + "occurrences": 4 + }, + "0x8db253a1943dddf1af9bcf8706ac9a0ce939d922": { + "address": "0x8db253a1943dddf1af9bcf8706ac9a0ce939d922", + "symbol": "UNB", + "decimals": 18, + "name": "Unbound", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x8db253a1943dddf1af9bcf8706ac9a0ce939d922.png", + "aggregators": ["CoinMarketCap", "LiFi", "Rubic", "Rango"], + "occurrences": 4 + }, + "0x167e2a574669b0eeb552aaf3da47c728cb348a41": { + "address": "0x167e2a574669b0eeb552aaf3da47c728cb348a41", + "symbol": "300", + "decimals": 7, + "name": "Spartan", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x167e2a574669b0eeb552aaf3da47c728cb348a41.png", + "aggregators": ["CoinMarketCap", "LiFi", "Socket", "Rubic"], + "occurrences": 4 + }, + "0xbd2f0cd039e0bfcf88901c98c0bfac5ab27566e3": { + "address": "0xbd2f0cd039e0bfcf88901c98c0bfac5ab27566e3", + "symbol": "DSD", + "decimals": 18, + "name": "Dynamic Set Dollar", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xbd2f0cd039e0bfcf88901c98c0bfac5ab27566e3.png", + "aggregators": ["CoinMarketCap", "Rubic", "Rango", "SushiSwap"], + "occurrences": 4 + }, + "0xbbbbbbbb46a1da0f0c3f64522c275baa4c332636": { + "address": "0xbbbbbbbb46a1da0f0c3f64522c275baa4c332636", + "symbol": "ZKB", + "decimals": 18, + "name": "ZKBase", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xbbbbbbbb46a1da0f0c3f64522c275baa4c332636.png", + "aggregators": ["CoinMarketCap", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0x465e07d6028830124be2e4aa551fbe12805db0f5": { + "address": "0x465e07d6028830124be2e4aa551fbe12805db0f5", + "symbol": "WXMR", + "decimals": 18, + "name": "Wrapped XMR", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x465e07d6028830124be2e4aa551fbe12805db0f5.png", + "aggregators": ["CoinMarketCap", "Rubic", "Rango", "SushiSwap"], + "occurrences": 4 + }, + "0x947aeb02304391f8fbe5b25d7d98d649b57b1788": { + "address": "0x947aeb02304391f8fbe5b25d7d98d649b57b1788", + "symbol": "MDX", + "decimals": 18, + "name": "Mandala Exchange Token", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x947aeb02304391f8fbe5b25d7d98d649b57b1788.png", + "aggregators": ["Metamask", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0xed40834a13129509a89be39a9be9c0e96a0ddd71": { + "address": "0xed40834a13129509a89be39a9be9c0e96a0ddd71", + "symbol": "WARP", + "decimals": 18, + "name": "Warp Finance", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xed40834a13129509a89be39a9be9c0e96a0ddd71.png", + "aggregators": ["CoinMarketCap", "1inch", "Rubic", "Rango"], + "occurrences": 4 + }, + "0x6e742e29395cf5736c358538f0f1372ab3dfe731": { + "address": "0x6e742e29395cf5736c358538f0f1372ab3dfe731", + "symbol": "TME", + "decimals": 18, + "name": "TAMA EGG NiftyGotchi", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x6e742e29395cf5736c358538f0f1372ab3dfe731.png", + "aggregators": ["CoinMarketCap", "LiFi", "Socket", "Rubic"], + "occurrences": 4 + }, + "0x07bac35846e5ed502aa91adf6a9e7aa210f2dcbe": { + "address": "0x07bac35846e5ed502aa91adf6a9e7aa210f2dcbe", + "symbol": "EROWAN", + "decimals": 18, + "name": "Sifchain", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x07bac35846e5ed502aa91adf6a9e7aa210f2dcbe.png", + "aggregators": ["CoinMarketCap", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0xe0955f26515d22e347b17669993fcefcc73c3a0a": { + "address": "0xe0955f26515d22e347b17669993fcefcc73c3a0a", + "symbol": "STACK", + "decimals": 18, + "name": "Stacker Ventures Token", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xe0955f26515d22e347b17669993fcefcc73c3a0a.png", + "aggregators": ["CoinMarketCap", "LiFi", "Socket", "Rubic"], + "occurrences": 4 + }, + "0x661ab0ed68000491d98c796146bcf28c20d7c559": { + "address": "0x661ab0ed68000491d98c796146bcf28c20d7c559", + "symbol": "DOWS", + "decimals": 18, + "name": "DOWS", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x661ab0ed68000491d98c796146bcf28c20d7c559.png", + "aggregators": ["CoinMarketCap", "LiFi", "Rubic", "Rango"], + "occurrences": 4 + }, + "0x0275e1001e293c46cfe158b3702aade0b99f88a5": { + "address": "0x0275e1001e293c46cfe158b3702aade0b99f88a5", + "symbol": "OIL", + "decimals": 18, + "name": "Oiler", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x0275e1001e293c46cfe158b3702aade0b99f88a5.png", + "aggregators": ["Metamask", "LiFi", "Rubic", "Rango"], + "occurrences": 4 + }, + "0x8dbf9a4c99580fc7fd4024ee08f3994420035727": { + "address": "0x8dbf9a4c99580fc7fd4024ee08f3994420035727", + "symbol": "ECO", + "decimals": 18, + "name": "ECO", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x8dbf9a4c99580fc7fd4024ee08f3994420035727.png", + "aggregators": ["CoinMarketCap", "Socket", "Rubic", "Rango"], + "occurrences": 4 + }, + "0x15f0eedf9ce24fc4b6826e590a8292ce5524a1da": { + "address": "0x15f0eedf9ce24fc4b6826e590a8292ce5524a1da", + "symbol": "DENA", + "decimals": 18, + "name": "Decentralized Nations", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x15f0eedf9ce24fc4b6826e590a8292ce5524a1da.png", + "aggregators": ["CoinMarketCap", "LiFi", "Socket", "Rubic"], + "occurrences": 4 + }, + "0x04b5e13000c6e9a3255dc057091f3e3eeee7b0f0": { + "address": "0x04b5e13000c6e9a3255dc057091f3e3eeee7b0f0", + "symbol": "IFUND", + "decimals": 18, + "name": "UNIFUND", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x04b5e13000c6e9a3255dc057091f3e3eeee7b0f0.png", + "aggregators": ["CoinMarketCap", "LiFi", "Socket", "Rubic"], + "occurrences": 4 + }, + "0x06a00715e6f92210af9d7680b584931faf71a833": { + "address": "0x06a00715e6f92210af9d7680b584931faf71a833", + "symbol": "XNL", + "decimals": 18, + "name": "Chronicle", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x06a00715e6f92210af9d7680b584931faf71a833.png", + "aggregators": ["CoinMarketCap", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0x29fa1fee0f4f0ab0e36ef7ab8d7a35439ec6be75": { + "address": "0x29fa1fee0f4f0ab0e36ef7ab8d7a35439ec6be75", + "symbol": "DVT", + "decimals": 18, + "name": "SafeStake", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x29fa1fee0f4f0ab0e36ef7ab8d7a35439ec6be75.png", + "aggregators": ["CoinMarketCap", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0x7fbec0bb6a7152e77c30d005b5d49cbc08a602c3": { + "address": "0x7fbec0bb6a7152e77c30d005b5d49cbc08a602c3", + "symbol": "DDOS", + "decimals": 18, + "name": "Disbalancer", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x7fbec0bb6a7152e77c30d005b5d49cbc08a602c3.png", + "aggregators": ["CoinMarketCap", "Socket", "Rubic", "Rango"], + "occurrences": 4 + }, + "0x741b0428efdf4372a8df6fb54b018db5e5ab7710": { + "address": "0x741b0428efdf4372a8df6fb54b018db5e5ab7710", + "symbol": "ARTX", + "decimals": 18, + "name": "ARTX", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x741b0428efdf4372a8df6fb54b018db5e5ab7710.png", + "aggregators": ["CoinMarketCap", "Socket", "Rubic", "Rango"], + "occurrences": 4 + }, + "0xe87e15b9c7d989474cb6d8c56b3db4efad5b21e8": { + "address": "0xe87e15b9c7d989474cb6d8c56b3db4efad5b21e8", + "symbol": "HOKK", + "decimals": 18, + "name": "HOKK Finance", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xe87e15b9c7d989474cb6d8c56b3db4efad5b21e8.png", + "aggregators": ["CoinMarketCap", "Socket", "Rubic", "Sonarwatch"], + "occurrences": 4 + }, + "0x35872fea6a4843facbcdbce99e3b69596a3680b8": { + "address": "0x35872fea6a4843facbcdbce99e3b69596a3680b8", + "symbol": "1337", + "decimals": 4, + "name": "1337", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x35872fea6a4843facbcdbce99e3b69596a3680b8.png", + "aggregators": ["CoinMarketCap", "LiFi", "Socket", "Rubic"], + "occurrences": 4 + }, + "0x9af15d7b8776fa296019979e70a5be53c714a7ec": { + "address": "0x9af15d7b8776fa296019979e70a5be53c714a7ec", + "symbol": "EVN", + "decimals": 18, + "name": "Evn Token", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x9af15d7b8776fa296019979e70a5be53c714a7ec.png", + "aggregators": ["CoinMarketCap", "1inch", "Rubic", "Rango"], + "occurrences": 4 + }, + "0xedeec5691f23e4914cf0183a4196bbeb30d027a0": { + "address": "0xedeec5691f23e4914cf0183a4196bbeb30d027a0", + "symbol": "WSTA", + "decimals": 18, + "name": "Wrapped Statera", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xedeec5691f23e4914cf0183a4196bbeb30d027a0.png", + "aggregators": ["CoinMarketCap", "Socket", "Rubic", "Rango"], + "occurrences": 4 + }, + "0xaf691508ba57d416f895e32a1616da1024e882d2": { + "address": "0xaf691508ba57d416f895e32a1616da1024e882d2", + "symbol": "PNODE", + "decimals": 18, + "name": "Pinknode Token", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xaf691508ba57d416f895e32a1616da1024e882d2.png", + "aggregators": ["CoinMarketCap", "LiFi", "Socket", "Rubic"], + "occurrences": 4 + }, + "0xec5483804e637d45cde22fa0869656b64b5ab1ab": { + "address": "0xec5483804e637d45cde22fa0869656b64b5ab1ab", + "symbol": "ACE", + "decimals": 18, + "name": "Acent", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xec5483804e637d45cde22fa0869656b64b5ab1ab.png", + "aggregators": ["CoinMarketCap", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0x94e0bab2f6ab1f19f4750e42d7349f2740513ad5": { + "address": "0x94e0bab2f6ab1f19f4750e42d7349f2740513ad5", + "symbol": "UNIC", + "decimals": 18, + "name": "UNIC", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x94e0bab2f6ab1f19f4750e42d7349f2740513ad5.png", + "aggregators": ["CoinMarketCap", "LiFi", "Socket", "Rubic"], + "occurrences": 4 + }, + "0x01e0e2e61f554ecaaec0cc933e739ad90f24a86d": { + "address": "0x01e0e2e61f554ecaaec0cc933e739ad90f24a86d", + "symbol": "GTON", + "decimals": 18, + "name": "GTON", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x01e0e2e61f554ecaaec0cc933e739ad90f24a86d.png", + "aggregators": ["Metamask", "Rubic", "Rango", "SushiSwap"], + "occurrences": 4 + }, + "0x456d8f0d25a4e787ee60c401f8b963a465148f70": { + "address": "0x456d8f0d25a4e787ee60c401f8b963a465148f70", + "symbol": "CAVA", + "decimals": 9, + "name": "Cavapoo", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x456d8f0d25a4e787ee60c401f8b963a465148f70.png", + "aggregators": ["CoinMarketCap", "1inch", "Rubic", "Rango"], + "occurrences": 4 + }, + "0x5c8c8d560048f34e5f7f8ad71f2f81a89dbd273e": { + "address": "0x5c8c8d560048f34e5f7f8ad71f2f81a89dbd273e", + "symbol": "CART", + "decimals": 18, + "name": "CryptoArt.Ai", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x5c8c8d560048f34e5f7f8ad71f2f81a89dbd273e.png", + "aggregators": ["CoinMarketCap", "Socket", "Rubic", "Rango"], + "occurrences": 4 + }, + "0x62959c699a52ec647622c91e79ce73344e4099f5": { + "address": "0x62959c699a52ec647622c91e79ce73344e4099f5", + "symbol": "DFA", + "decimals": 18, + "name": "DeFine", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x62959c699a52ec647622c91e79ce73344e4099f5.png", + "aggregators": ["CoinMarketCap", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0x5d843fa9495d23de997c394296ac7b4d721e841c": { + "address": "0x5d843fa9495d23de997c394296ac7b4d721e841c", + "symbol": "RELAY", + "decimals": 18, + "name": "Relay Token", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x5d843fa9495d23de997c394296ac7b4d721e841c.png", + "aggregators": ["CoinMarketCap", "LiFi", "Rubic", "Rango"], + "occurrences": 4 + }, + "0x3f9bec82c776c47405bcb38070d2395fd18f89d3": { + "address": "0x3f9bec82c776c47405bcb38070d2395fd18f89d3", + "symbol": "PHM", + "decimals": 18, + "name": "Phantom Protocol", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x3f9bec82c776c47405bcb38070d2395fd18f89d3.png", + "aggregators": ["CoinMarketCap", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0xaec65404ddc3af3c897ad89571d5772c1a695f22": { + "address": "0xaec65404ddc3af3c897ad89571d5772c1a695f22", + "symbol": "PHX", + "decimals": 18, + "name": "Phoenix Token", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xaec65404ddc3af3c897ad89571d5772c1a695f22.png", + "aggregators": ["CoinMarketCap", "Socket", "Rubic", "Rango"], + "occurrences": 4 + }, + "0xda9fdab21bc4a5811134a6e0ba6ca06624e67c07": { + "address": "0xda9fdab21bc4a5811134a6e0ba6ca06624e67c07", + "symbol": "QUIDD", + "decimals": 18, + "name": "Quidd", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xda9fdab21bc4a5811134a6e0ba6ca06624e67c07.png", + "aggregators": ["CoinMarketCap", "Socket", "Rubic", "Sonarwatch"], + "occurrences": 4 + }, + "0xc7ff1e126cc81e816915ff48c940ed9d4e6d05d6": { + "address": "0xc7ff1e126cc81e816915ff48c940ed9d4e6d05d6", + "symbol": "IJC", + "decimals": 18, + "name": "Ijas Coin", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xc7ff1e126cc81e816915ff48c940ed9d4e6d05d6.png", + "aggregators": ["CoinMarketCap", "Socket", "Rubic", "Rango"], + "occurrences": 4 + }, + "0xdf290b162a7d3e0a328cf198308d421954f08b94": { + "address": "0xdf290b162a7d3e0a328cf198308d421954f08b94", + "symbol": "BP", + "decimals": 18, + "name": "Beyond Protocol", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xdf290b162a7d3e0a328cf198308d421954f08b94.png", + "aggregators": ["CoinMarketCap", "Socket", "Rubic", "Rango"], + "occurrences": 4 + }, + "0xb31ef9e52d94d4120eb44fe1ddfde5b4654a6515": { + "address": "0xb31ef9e52d94d4120eb44fe1ddfde5b4654a6515", + "symbol": "DOSE", + "decimals": 18, + "name": "DOSE", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xb31ef9e52d94d4120eb44fe1ddfde5b4654a6515.png", + "aggregators": ["CoinMarketCap", "Socket", "Rubic", "Sonarwatch"], + "occurrences": 4 + }, + "0x58f9102bf53cf186682bd9a281d3cd3c616eec41": { + "address": "0x58f9102bf53cf186682bd9a281d3cd3c616eec41", + "symbol": "TRL", + "decimals": 18, + "name": "Triall", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x58f9102bf53cf186682bd9a281d3cd3c616eec41.png", + "aggregators": ["CoinMarketCap", "Socket", "Rubic", "Rango"], + "occurrences": 4 + }, + "0x0aa7efe4945db24d95ca6e117bba65ed326e291a": { + "address": "0x0aa7efe4945db24d95ca6e117bba65ed326e291a", + "symbol": "OJA", + "decimals": 18, + "name": "Ojamu", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x0aa7efe4945db24d95ca6e117bba65ed326e291a.png", + "aggregators": ["CoinMarketCap", "Socket", "Rubic", "Rango"], + "occurrences": 4 + }, + "0x61a35258107563f6b6f102ae25490901c8760b12": { + "address": "0x61a35258107563f6b6f102ae25490901c8760b12", + "symbol": "KITTY", + "decimals": 18, + "name": "Kitty Inu", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x61a35258107563f6b6f102ae25490901c8760b12.png", + "aggregators": ["CoinMarketCap", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0x187eff9690e1f1a61d578c7c492296eaab82701a": { + "address": "0x187eff9690e1f1a61d578c7c492296eaab82701a", + "symbol": "MOAR", + "decimals": 18, + "name": "MOAR Finance", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x187eff9690e1f1a61d578c7c492296eaab82701a.png", + "aggregators": ["CoinMarketCap", "LiFi", "Socket", "Rubic"], + "occurrences": 4 + }, + "0x0c3685559af6f3d20c501b1076a8056a0a14426a": { + "address": "0x0c3685559af6f3d20c501b1076a8056a0a14426a", + "symbol": "MINISAITAMA", + "decimals": 9, + "name": "mini SAITAMA", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x0c3685559af6f3d20c501b1076a8056a0a14426a.png", + "aggregators": ["CoinMarketCap", "1inch", "Socket", "Rubic"], + "occurrences": 4 + }, + "0x20a68f9e34076b2dc15ce726d7eebb83b694702d": { + "address": "0x20a68f9e34076b2dc15ce726d7eebb83b694702d", + "symbol": "ISLA", + "decimals": 18, + "name": "Defiville Island Token", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x20a68f9e34076b2dc15ce726d7eebb83b694702d.png", + "aggregators": ["CoinMarketCap", "LiFi", "Socket", "Rubic"], + "occurrences": 4 + }, + "0x08ba718f288c3b12b01146816bef9fa03cc635bc": { + "address": "0x08ba718f288c3b12b01146816bef9fa03cc635bc", + "symbol": "CENT", + "decimals": 18, + "name": "Centaurify", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x08ba718f288c3b12b01146816bef9fa03cc635bc.png", + "aggregators": ["CoinMarketCap", "Socket", "Rubic", "Rango"], + "occurrences": 4 + }, + "0x65def5029a0e7591e46b38742bfedd1fb7b24436": { + "address": "0x65def5029a0e7591e46b38742bfedd1fb7b24436", + "symbol": "KAE", + "decimals": 18, + "name": "Kanpeki", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x65def5029a0e7591e46b38742bfedd1fb7b24436.png", + "aggregators": ["Metamask", "Rubic", "Rango", "SushiSwap"], + "occurrences": 4 + }, + "0xfbcb5cbedeebcc55dcd136d34db1daaf74cf67e8": { + "address": "0xfbcb5cbedeebcc55dcd136d34db1daaf74cf67e8", + "symbol": "ANIM", + "decimals": 18, + "name": "Animalia", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xfbcb5cbedeebcc55dcd136d34db1daaf74cf67e8.png", + "aggregators": ["CoinMarketCap", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0x56694577564fdd577a0abb20fe95c1e2756c2a11": { + "address": "0x56694577564fdd577a0abb20fe95c1e2756c2a11", + "symbol": "ASW", + "decimals": 18, + "name": "AdaSwap", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x56694577564fdd577a0abb20fe95c1e2756c2a11.png", + "aggregators": ["CoinMarketCap", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0xb5c578947de0fd71303f71f2c3d41767438bd0de": { + "address": "0xb5c578947de0fd71303f71f2c3d41767438bd0de", + "symbol": "DEVT", + "decimals": 18, + "name": "Decentralized Eternal Virtual Traveller", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xb5c578947de0fd71303f71f2c3d41767438bd0de.png", + "aggregators": ["CoinMarketCap", "Socket", "Rubic", "Rango"], + "occurrences": 4 + }, + "0x9d71ce49ab8a0e6d2a1e7bfb89374c9392fd6804": { + "address": "0x9d71ce49ab8a0e6d2a1e7bfb89374c9392fd6804", + "symbol": "NVIR", + "decimals": 18, + "name": "NvirWorld", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x9d71ce49ab8a0e6d2a1e7bfb89374c9392fd6804.png", + "aggregators": ["CoinMarketCap", "Socket", "Rubic", "Sonarwatch"], + "occurrences": 4 + }, + "0xbc6e06778708177a18210181b073da747c88490a": { + "address": "0xbc6e06778708177a18210181b073da747c88490a", + "symbol": "SYNR", + "decimals": 18, + "name": "MOBLAND", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xbc6e06778708177a18210181b073da747c88490a.png", + "aggregators": ["CoinMarketCap", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0x9b83f827928abdf18cf1f7e67053572b9bceff3a": { + "address": "0x9b83f827928abdf18cf1f7e67053572b9bceff3a", + "symbol": "ARTEM", + "decimals": 18, + "name": "Artem", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x9b83f827928abdf18cf1f7e67053572b9bceff3a.png", + "aggregators": ["CoinMarketCap", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0x758b4684be769e92eefea93f60dda0181ea303ec": { + "address": "0x758b4684be769e92eefea93f60dda0181ea303ec", + "symbol": "PHONON", + "decimals": 18, + "name": "Phonon DAO", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x758b4684be769e92eefea93f60dda0181ea303ec.png", + "aggregators": ["CoinMarketCap", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0xba6b0dbb2ba8daa8f5d6817946393aef8d3a4487": { + "address": "0xba6b0dbb2ba8daa8f5d6817946393aef8d3a4487", + "symbol": "HSF", + "decimals": 18, + "name": "Hillstone Finance", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xba6b0dbb2ba8daa8f5d6817946393aef8d3a4487.png", + "aggregators": ["CoinMarketCap", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0x02e7ac540409d32c90bfb51114003a9e1ff0249c": { + "address": "0x02e7ac540409d32c90bfb51114003a9e1ff0249c", + "symbol": "JPG", + "decimals": 18, + "name": "JPG NFT Index", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x02e7ac540409d32c90bfb51114003a9e1ff0249c.png", + "aggregators": ["CoinMarketCap", "LiFi", "Socket", "Rubic"], + "occurrences": 4 + }, + "0x3fab0bbaa03bceaf7c49e2b12877db0142be65fc": { + "address": "0x3fab0bbaa03bceaf7c49e2b12877db0142be65fc", + "symbol": "CAST", + "decimals": 8, + "name": "Castello Coin", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x3fab0bbaa03bceaf7c49e2b12877db0142be65fc.png", + "aggregators": ["CoinMarketCap", "LiFi", "Rubic", "Rango"], + "occurrences": 4 + }, + "0xf5f06ffa53ad7f5914f493f16e57b56c8dd2ea80": { + "address": "0xf5f06ffa53ad7f5914f493f16e57b56c8dd2ea80", + "symbol": "JELLY", + "decimals": 18, + "name": "Jelly Token", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xf5f06ffa53ad7f5914f493f16e57b56c8dd2ea80.png", + "aggregators": ["CoinMarketCap", "Rubic", "Rango", "SushiSwap"], + "occurrences": 4 + }, + "0x71a28feaee902966dc8d355e7b8aa427d421e7e0": { + "address": "0x71a28feaee902966dc8d355e7b8aa427d421e7e0", + "symbol": "LUNCH", + "decimals": 18, + "name": "LunchDao", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x71a28feaee902966dc8d355e7b8aa427d421e7e0.png", + "aggregators": ["CoinMarketCap", "Socket", "Rubic", "Rango"], + "occurrences": 4 + }, + "0xf9d4daae1300cff251979722c4a3c45857973079": { + "address": "0xf9d4daae1300cff251979722c4a3c45857973079", + "symbol": "CASTLE", + "decimals": 18, + "name": "bitcastle", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xf9d4daae1300cff251979722c4a3c45857973079.png", + "aggregators": ["CoinMarketCap", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0x0000000000300dd8b0230efcfef136ecdf6abcde": { + "address": "0x0000000000300dd8b0230efcfef136ecdf6abcde", + "symbol": "DGNX", + "decimals": 18, + "name": "DegenX", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x0000000000300dd8b0230efcfef136ecdf6abcde.png", + "aggregators": ["CoinMarketCap", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0xe4dae00bc1c46ea2f44ae71b1beb8b171c15d812": { + "address": "0xe4dae00bc1c46ea2f44ae71b1beb8b171c15d812", + "symbol": "PRMX", + "decimals": 18, + "name": "PREMA", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xe4dae00bc1c46ea2f44ae71b1beb8b171c15d812.png", + "aggregators": ["Metamask", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0x3be7bf1a5f23bd8336787d0289b70602f1940875": { + "address": "0x3be7bf1a5f23bd8336787d0289b70602f1940875", + "symbol": "VIDT", + "decimals": 18, + "name": "VIDT DAO", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x3be7bf1a5f23bd8336787d0289b70602f1940875.png", + "aggregators": ["Metamask", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0xd7c9f0e536dc865ae858b0c0453fe76d13c3beac": { + "address": "0xd7c9f0e536dc865ae858b0c0453fe76d13c3beac", + "symbol": "XAI", + "decimals": 18, + "name": "XAI Stablecoin", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xd7c9f0e536dc865ae858b0c0453fe76d13c3beac.png", + "aggregators": ["CoinMarketCap", "Socket", "Rubic", "Rango"], + "occurrences": 4 + }, + "0x9d9e399e5385e2b9a58d4f775a1e16441b571afb": { + "address": "0x9d9e399e5385e2b9a58d4f775a1e16441b571afb", + "symbol": "METANO", + "decimals": 18, + "name": "Metano", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x9d9e399e5385e2b9a58d4f775a1e16441b571afb.png", + "aggregators": ["CoinMarketCap", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0x9b110fda4e20db18ad7052f8468a455de7449eb6": { + "address": "0x9b110fda4e20db18ad7052f8468a455de7449eb6", + "symbol": "RIA", + "decimals": 18, + "name": "Calvaria DoE", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x9b110fda4e20db18ad7052f8468a455de7449eb6.png", + "aggregators": ["CoinMarketCap", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0x41c21693e60fc1a5dbb7c50e54e7a6016aa44c99": { + "address": "0x41c21693e60fc1a5dbb7c50e54e7a6016aa44c99", + "symbol": "SIMP", + "decimals": 18, + "name": "SO-COL", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x41c21693e60fc1a5dbb7c50e54e7a6016aa44c99.png", + "aggregators": ["CoinMarketCap", "Socket", "Rubic", "Rango"], + "occurrences": 4 + }, + "0xe7ef051c6ea1026a70967e8f04da143c67fa4e1f": { + "address": "0xe7ef051c6ea1026a70967e8f04da143c67fa4e1f", + "symbol": "VETME", + "decimals": 9, + "name": "VetMe", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xe7ef051c6ea1026a70967e8f04da143c67fa4e1f.png", + "aggregators": ["CoinMarketCap", "Socket", "Rubic", "Sonarwatch"], + "occurrences": 4 + }, + "0x4236f8aaf2b1f3a28420eb15b8e0ddf63201a95e": { + "address": "0x4236f8aaf2b1f3a28420eb15b8e0ddf63201a95e", + "symbol": "BMDA", + "decimals": 18, + "name": "Bermuda", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x4236f8aaf2b1f3a28420eb15b8e0ddf63201a95e.png", + "aggregators": ["CoinMarketCap", "1inch", "Socket", "Rubic"], + "occurrences": 4 + }, + "0x628ebc64a38269e031afbdd3c5ba857483b5d048": { + "address": "0x628ebc64a38269e031afbdd3c5ba857483b5d048", + "symbol": "LSETH", + "decimals": 18, + "name": "Liquid Staked ETH", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x628ebc64a38269e031afbdd3c5ba857483b5d048.png", + "aggregators": ["CoinMarketCap", "LiFi", "Socket", "Rubic"], + "occurrences": 4 + }, + "0xa89bf95c5f15a847c8eb8d348cd7fed719ad7d80": { + "address": "0xa89bf95c5f15a847c8eb8d348cd7fed719ad7d80", + "symbol": "AI", + "decimals": 18, + "name": "Chat AI", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xa89bf95c5f15a847c8eb8d348cd7fed719ad7d80.png", + "aggregators": ["CoinMarketCap", "Socket", "Rubic", "Rango"], + "occurrences": 4 + }, + "0x574d22e2555cac0ce71e44778f6de2e7487ae229": { + "address": "0x574d22e2555cac0ce71e44778f6de2e7487ae229", + "symbol": "SOON", + "decimals": 18, + "name": "SoonSwap", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x574d22e2555cac0ce71e44778f6de2e7487ae229.png", + "aggregators": ["CoinMarketCap", "Socket", "Rubic", "Rango"], + "occurrences": 4 + }, + "0xfac77a24e52b463ba9857d6b758ba41ae20e31ff": { + "address": "0xfac77a24e52b463ba9857d6b758ba41ae20e31ff", + "symbol": "LSD", + "decimals": 18, + "name": "LSDx Finance", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xfac77a24e52b463ba9857d6b758ba41ae20e31ff.png", + "aggregators": ["CoinMarketCap", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0x81994b9607e06ab3d5cf3afff9a67374f05f27d7": { + "address": "0x81994b9607e06ab3d5cf3afff9a67374f05f27d7", + "symbol": "FUSDT", + "decimals": 8, + "name": "Flux USDT", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x81994b9607e06ab3d5cf3afff9a67374f05f27d7.png", + "aggregators": ["CoinMarketCap", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0xe973e453977195422b48e1852a207b7ee9c913c7": { + "address": "0xe973e453977195422b48e1852a207b7ee9c913c7", + "symbol": "AD", + "decimals": 18, + "name": "ADreward", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xe973e453977195422b48e1852a207b7ee9c913c7.png", + "aggregators": ["CoinMarketCap", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0xa15865d9de09cb96aaa3a9081b3dfc8481f07d33": { + "address": "0xa15865d9de09cb96aaa3a9081b3dfc8481f07d33", + "symbol": "POPE", + "decimals": 18, + "name": "Popecoin", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xa15865d9de09cb96aaa3a9081b3dfc8481f07d33.png", + "aggregators": ["CoinMarketCap", "Socket", "Rubic", "Rango"], + "occurrences": 4 + }, + "0x44aad22afbb2606d7828ca1f8f9e5af00e779ae1": { + "address": "0x44aad22afbb2606d7828ca1f8f9e5af00e779ae1", + "symbol": "SIMPSON", + "decimals": 9, + "name": "Homer", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x44aad22afbb2606d7828ca1f8f9e5af00e779ae1.png", + "aggregators": ["CoinMarketCap", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0xf0edac27aa3e85e2d176f689b0025f90c154393a": { + "address": "0xf0edac27aa3e85e2d176f689b0025f90c154393a", + "symbol": "LOVESNOOPY", + "decimals": 18, + "name": "I LOVE SNOOPY", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xf0edac27aa3e85e2d176f689b0025f90c154393a.png", + "aggregators": ["CoinMarketCap", "Socket", "Rubic", "Sonarwatch"], + "occurrences": 4 + }, + "0x9c0bd34bebc33a0e898554cfc91e8a84c728bf9f": { + "address": "0x9c0bd34bebc33a0e898554cfc91e8a84c728bf9f", + "symbol": "PISS", + "decimals": 18, + "name": "Piss Coin", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x9c0bd34bebc33a0e898554cfc91e8a84c728bf9f.png", + "aggregators": ["CoinMarketCap", "Socket", "Rubic", "Rango"], + "occurrences": 4 + }, + "0xb44b653f147569d88a684cbf6549e1968e8b2a1d": { + "address": "0xb44b653f147569d88a684cbf6549e1968e8b2a1d", + "symbol": "2DAI", + "decimals": 18, + "name": "2DAI io", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xb44b653f147569d88a684cbf6549e1968e8b2a1d.png", + "aggregators": ["CoinMarketCap", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0xddf688e96cb2531a69bf6347c02f069266c1aa81": { + "address": "0xddf688e96cb2531a69bf6347c02f069266c1aa81", + "symbol": "MMVG", + "decimals": 18, + "name": "MEMEVENGERS", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xddf688e96cb2531a69bf6347c02f069266c1aa81.png", + "aggregators": ["CoinMarketCap", "Socket", "Rubic", "Rango"], + "occurrences": 4 + }, + "0x84412819ae69b10250d0d54d58f454018f1c8a42": { + "address": "0x84412819ae69b10250d0d54d58f454018f1c8a42", + "symbol": "DUNG", + "decimals": 18, + "name": "Scarab Tools", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x84412819ae69b10250d0d54d58f454018f1c8a42.png", + "aggregators": ["CoinMarketCap", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0x5eca7b975e34567d9460fa613013a7a6993ad185": { + "address": "0x5eca7b975e34567d9460fa613013a7a6993ad185", + "symbol": "BS", + "decimals": 18, + "name": "Blacksmith Token", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x5eca7b975e34567d9460fa613013a7a6993ad185.png", + "aggregators": ["CoinMarketCap", "Socket", "Rubic", "Rango"], + "occurrences": 4 + }, + "0x8b227d72570d3ead66014bca8305cbef7f90d1ee": { + "address": "0x8b227d72570d3ead66014bca8305cbef7f90d1ee", + "symbol": "LIZA", + "decimals": 18, + "name": "Liza", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x8b227d72570d3ead66014bca8305cbef7f90d1ee.png", + "aggregators": ["CoinMarketCap", "Socket", "Rubic", "Rango"], + "occurrences": 4 + }, + "0xb459f7204a8ac84f9e7758d6d839ebd01670e35c": { + "address": "0xb459f7204a8ac84f9e7758d6d839ebd01670e35c", + "symbol": "LOTTY", + "decimals": 18, + "name": "Lotty", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xb459f7204a8ac84f9e7758d6d839ebd01670e35c.png", + "aggregators": ["CoinMarketCap", "Socket", "Rubic", "Rango"], + "occurrences": 4 + }, + "0x0c48250eb1f29491f1efbeec0261eb556f0973c7": { + "address": "0x0c48250eb1f29491f1efbeec0261eb556f0973c7", + "symbol": "AIMBOT", + "decimals": 18, + "name": "Aimbot AI", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x0c48250eb1f29491f1efbeec0261eb556f0973c7.png", + "aggregators": ["CoinMarketCap", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0xa3cb87080e68ad54d00573983d935fa85d168fde": { + "address": "0xa3cb87080e68ad54d00573983d935fa85d168fde", + "symbol": "IBIT", + "decimals": 8, + "name": "InfinityBit Token", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xa3cb87080e68ad54d00573983d935fa85d168fde.png", + "aggregators": ["CoinMarketCap", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0xf62ac0fcae17f9195280ced4de978313effe2daa": { + "address": "0xf62ac0fcae17f9195280ced4de978313effe2daa", + "symbol": "CHART", + "decimals": 18, + "name": "Nchart Token", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xf62ac0fcae17f9195280ced4de978313effe2daa.png", + "aggregators": ["CoinMarketCap", "Socket", "Rubic", "Rango"], + "occurrences": 4 + }, + "0x7b744eea1deca2f1b7b31f15ba036fa1759452d7": { + "address": "0x7b744eea1deca2f1b7b31f15ba036fa1759452d7", + "symbol": "HIPP", + "decimals": 18, + "name": "El Hippo", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x7b744eea1deca2f1b7b31f15ba036fa1759452d7.png", + "aggregators": ["CoinMarketCap", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0x000000e29fa2bd3e5c215ffc71aa66b29c9769a2": { + "address": "0x000000e29fa2bd3e5c215ffc71aa66b29c9769a2", + "symbol": "ETE", + "decimals": 18, + "name": "Ethereum Express", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x000000e29fa2bd3e5c215ffc71aa66b29c9769a2.png", + "aggregators": ["CoinMarketCap", "Socket", "Rubic", "Rango"], + "occurrences": 4 + }, + "0x9b06f3c5de42d4623d7a2bd940ec735103c68a76": { + "address": "0x9b06f3c5de42d4623d7a2bd940ec735103c68a76", + "symbol": "VOLTA", + "decimals": 18, + "name": "Volta Club", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x9b06f3c5de42d4623d7a2bd940ec735103c68a76.png", + "aggregators": ["CoinMarketCap", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0x3ec15c4745e21ab3831d1f51c492e3b5582d6239": { + "address": "0x3ec15c4745e21ab3831d1f51c492e3b5582d6239", + "symbol": "PICKLE", + "decimals": 18, + "name": "PICKLE", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x3ec15c4745e21ab3831d1f51c492e3b5582d6239.png", + "aggregators": ["CoinMarketCap", "Socket", "Rubic", "Rango"], + "occurrences": 4 + }, + "0x017e9db34fc69af0dc7c7b4b33511226971cddc7": { + "address": "0x017e9db34fc69af0dc7c7b4b33511226971cddc7", + "symbol": "OCD", + "decimals": 18, + "name": "On Chain Dynamics", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x017e9db34fc69af0dc7c7b4b33511226971cddc7.png", + "aggregators": ["CoinMarketCap", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0x4501a82790ef2587dfeb93dc038541228e516597": { + "address": "0x4501a82790ef2587dfeb93dc038541228e516597", + "symbol": "HYDRA", + "decimals": 18, + "name": "Hydra", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x4501a82790ef2587dfeb93dc038541228e516597.png", + "aggregators": ["CoinMarketCap", "Socket", "Rubic", "Rango"], + "occurrences": 4 + }, + "0xb504035a11e672e12a099f32b1672b9c4a78b22f": { + "address": "0xb504035a11e672e12a099f32b1672b9c4a78b22f", + "symbol": "SAFEREUM", + "decimals": 18, + "name": "Safereum", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xb504035a11e672e12a099f32b1672b9c4a78b22f.png", + "aggregators": ["CoinMarketCap", "Socket", "Rubic", "Rango"], + "occurrences": 4 + }, + "0x7cdbfc86a0bfa20f133748b0cf5cea5b787b182c": { + "address": "0x7cdbfc86a0bfa20f133748b0cf5cea5b787b182c", + "symbol": "TKST", + "decimals": 18, + "name": "TokenSight", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x7cdbfc86a0bfa20f133748b0cf5cea5b787b182c.png", + "aggregators": ["CoinMarketCap", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0xf0dc9fc0669f068e04ad79f7d70618d3f9aad439": { + "address": "0xf0dc9fc0669f068e04ad79f7d70618d3f9aad439", + "symbol": "OASIS", + "decimals": 18, + "name": "Oasis Metaverse", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xf0dc9fc0669f068e04ad79f7d70618d3f9aad439.png", + "aggregators": ["CoinMarketCap", "Socket", "Rubic", "Rango"], + "occurrences": 4 + }, + "0x5da151b95657e788076d04d56234bd93e409cb09": { + "address": "0x5da151b95657e788076d04d56234bd93e409cb09", + "symbol": "OTSEA", + "decimals": 18, + "name": "OTSea", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x5da151b95657e788076d04d56234bd93e409cb09.png", + "aggregators": ["CoinMarketCap", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0x4f4a556361b8b4869f97b8709ff47c1b057ea13b": { + "address": "0x4f4a556361b8b4869f97b8709ff47c1b057ea13b", + "symbol": "TRUMP", + "decimals": 9, + "name": "MAGA", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x4f4a556361b8b4869f97b8709ff47c1b057ea13b.png", + "aggregators": ["CoinMarketCap", "Socket", "Rubic", "Rango"], + "occurrences": 4 + }, + "0xbfb2b6870501a6ff17121d676a0a45a38c9eed1e": { + "address": "0xbfb2b6870501a6ff17121d676a0a45a38c9eed1e", + "symbol": "TOAD", + "decimals": 9, + "name": "LuckyToadv3", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xbfb2b6870501a6ff17121d676a0a45a38c9eed1e.png", + "aggregators": ["CoinMarketCap", "Socket", "Rubic", "Rango"], + "occurrences": 4 + }, + "0xb281d84989c06e2a6ccdc5ea7bf1663c79a1c31a": { + "address": "0xb281d84989c06e2a6ccdc5ea7bf1663c79a1c31a", + "symbol": "ZETA", + "decimals": 18, + "name": "stoicDAO", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xb281d84989c06e2a6ccdc5ea7bf1663c79a1c31a.png", + "aggregators": ["CoinMarketCap", "Socket", "Rubic", "Rango"], + "occurrences": 4 + }, + "0xf7498c98789957f4ee53b3e37ff5b7ef8a6cfc7b": { + "address": "0xf7498c98789957f4ee53b3e37ff5b7ef8a6cfc7b", + "symbol": "0XDEV", + "decimals": 18, + "name": "DEVAI", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xf7498c98789957f4ee53b3e37ff5b7ef8a6cfc7b.png", + "aggregators": ["CoinMarketCap", "Socket", "Rubic", "Sonarwatch"], + "occurrences": 4 + }, + "0x20fcefa41045080764c48c2b9429e44c644e5dea": { + "address": "0x20fcefa41045080764c48c2b9429e44c644e5dea", + "symbol": "FOOX", + "decimals": 18, + "name": "Foox", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x20fcefa41045080764c48c2b9429e44c644e5dea.png", + "aggregators": ["CoinMarketCap", "Socket", "Rubic", "Rango"], + "occurrences": 4 + }, + "0x5713c26280647adad2f25bb54376943ecaa9d8e3": { + "address": "0x5713c26280647adad2f25bb54376943ecaa9d8e3", + "symbol": "XMAS", + "decimals": 9, + "name": "Elon Xmas", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x5713c26280647adad2f25bb54376943ecaa9d8e3.png", + "aggregators": ["CoinMarketCap", "Socket", "Rubic", "Rango"], + "occurrences": 4 + }, + "0x6553565eac5daa9bfc5e2892b36291634c9b2ad6": { + "address": "0x6553565eac5daa9bfc5e2892b36291634c9b2ad6", + "symbol": "RAKE", + "decimals": 18, + "name": "Rake com", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x6553565eac5daa9bfc5e2892b36291634c9b2ad6.png", + "aggregators": ["CoinMarketCap", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0x4c4a50a61bed3b9024d8ffc1f1d168dc8cb1c689": { + "address": "0x4c4a50a61bed3b9024d8ffc1f1d168dc8cb1c689", + "symbol": "BARC", + "decimals": 9, + "name": "The Blu Arctic Water Company", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x4c4a50a61bed3b9024d8ffc1f1d168dc8cb1c689.png", + "aggregators": ["CoinMarketCap", "Socket", "Rubic", "Rango"], + "occurrences": 4 + }, + "0x3a97e00b48d56bd5e0502e1a2a8c036a040e1b99": { + "address": "0x3a97e00b48d56bd5e0502e1a2a8c036a040e1b99", + "symbol": "JBOT", + "decimals": 9, + "name": "JACKBOT", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x3a97e00b48d56bd5e0502e1a2a8c036a040e1b99.png", + "aggregators": ["CoinMarketCap", "Socket", "Rubic", "Rango"], + "occurrences": 4 + }, + "0x912529007bc0d2a5464a6a211ebfe217dfb75dff": { + "address": "0x912529007bc0d2a5464a6a211ebfe217dfb75dff", + "symbol": "CAD", + "decimals": 18, + "name": "CAD", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x912529007bc0d2a5464a6a211ebfe217dfb75dff.png", + "aggregators": ["CoinMarketCap", "Socket", "Rubic", "Rango"], + "occurrences": 4 + }, + "0x18e5f92103d1b34623738ee79214b1659f2ee109": { + "address": "0x18e5f92103d1b34623738ee79214b1659f2ee109", + "symbol": "WCELL", + "decimals": 18, + "name": "Wrapped CellMates", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x18e5f92103d1b34623738ee79214b1659f2ee109.png", + "aggregators": ["CoinMarketCap", "Socket", "Rubic", "Rango"], + "occurrences": 4 + }, + "0x3250577e12b9469915c1fa3a71c22817ca44c4d9": { + "address": "0x3250577e12b9469915c1fa3a71c22817ca44c4d9", + "symbol": "SOC", + "decimals": 18, + "name": "SOC", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x3250577e12b9469915c1fa3a71c22817ca44c4d9.png", + "aggregators": ["CoinMarketCap", "Socket", "Rubic", "Rango"], + "occurrences": 4 + }, + "0x65e9ed59a6c03e97ae984b6c4ff912448ebd3566": { + "address": "0x65e9ed59a6c03e97ae984b6c4ff912448ebd3566", + "symbol": "RYOSHI", + "decimals": 18, + "name": "Ryoshi", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x65e9ed59a6c03e97ae984b6c4ff912448ebd3566.png", + "aggregators": ["CoinMarketCap", "Socket", "Rubic", "Rango"], + "occurrences": 4 + }, + "0x72831eebef4e3f3697a6b216e3713958210ae8cd": { + "address": "0x72831eebef4e3f3697a6b216e3713958210ae8cd", + "symbol": "BLOB", + "decimals": 18, + "name": "Blob", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x72831eebef4e3f3697a6b216e3713958210ae8cd.png", + "aggregators": ["CoinMarketCap", "Socket", "Rubic", "Rango"], + "occurrences": 4 + }, + "0x3cb48aeb3d1abadc23d2d8a6894b3a68338381c2": { + "address": "0x3cb48aeb3d1abadc23d2d8a6894b3a68338381c2", + "symbol": "PALAI", + "decimals": 9, + "name": "PaladinAI", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x3cb48aeb3d1abadc23d2d8a6894b3a68338381c2.png", + "aggregators": ["CoinMarketCap", "Socket", "Rubic", "Sonarwatch"], + "occurrences": 4 + }, + "0x891de5f139791ddf9dbabf519cfe2a049f8fc6d3": { + "address": "0x891de5f139791ddf9dbabf519cfe2a049f8fc6d3", + "symbol": "DIBBLE", + "decimals": 18, + "name": "Dibbles", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x891de5f139791ddf9dbabf519cfe2a049f8fc6d3.png", + "aggregators": ["CoinMarketCap", "Socket", "Rubic", "Rango"], + "occurrences": 4 + }, + "0x23b586c0e79fb291ccb0244d468847eae9bb90f6": { + "address": "0x23b586c0e79fb291ccb0244d468847eae9bb90f6", + "symbol": "R4RE", + "decimals": 18, + "name": "R4RE Token", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x23b586c0e79fb291ccb0244d468847eae9bb90f6.png", + "aggregators": ["CoinMarketCap", "Socket", "Rubic", "Rango"], + "occurrences": 4 + }, + "0x03a9d7c8caf836de35666c5f7e317306b54fdd4e": { + "address": "0x03a9d7c8caf836de35666c5f7e317306b54fdd4e", + "symbol": "JCC", + "decimals": 18, + "name": "JC Coin", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x03a9d7c8caf836de35666c5f7e317306b54fdd4e.png", + "aggregators": ["CoinMarketCap", "Socket", "Rubic", "Rango"], + "occurrences": 4 + }, + "0x9c2b4b0da5ebd20c29ef20758064554a55a88b68": { + "address": "0x9c2b4b0da5ebd20c29ef20758064554a55a88b68", + "symbol": "BYTE", + "decimals": 18, + "name": "ByteAI", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x9c2b4b0da5ebd20c29ef20758064554a55a88b68.png", + "aggregators": ["CoinMarketCap", "Socket", "Rubic", "Sonarwatch"], + "occurrences": 4 + }, + "0x857de36f92330e1b9a21e8745c692f2ce13866cb": { + "address": "0x857de36f92330e1b9a21e8745c692f2ce13866cb", + "symbol": "MEMAGX", + "decimals": 18, + "name": "Meta Masters Guild Games", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x857de36f92330e1b9a21e8745c692f2ce13866cb.png", + "aggregators": ["CoinMarketCap", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0x96884fcaac082db4b32601ada5b177fd6cbffa88": { + "address": "0x96884fcaac082db4b32601ada5b177fd6cbffa88", + "symbol": "ZKLK", + "decimals": 18, + "name": "ZkLock", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x96884fcaac082db4b32601ada5b177fd6cbffa88.png", + "aggregators": ["CoinMarketCap", "Socket", "Rubic", "Rango"], + "occurrences": 4 + }, + "0xfea156a736dee69da8740185f7d38e14f2d99ae7": { + "address": "0xfea156a736dee69da8740185f7d38e14f2d99ae7", + "symbol": "QRO", + "decimals": 18, + "name": "Querio", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xfea156a736dee69da8740185f7d38e14f2d99ae7.png", + "aggregators": ["CoinMarketCap", "Socket", "Rubic", "Rango"], + "occurrences": 4 + }, + "0x9028c2a7f8c8530450549915c5338841db2a5fea": { + "address": "0x9028c2a7f8c8530450549915c5338841db2a5fea", + "symbol": "FOMO", + "decimals": 18, + "name": "FOMO Network", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x9028c2a7f8c8530450549915c5338841db2a5fea.png", + "aggregators": ["CoinMarketCap", "Socket", "Rubic", "Rango"], + "occurrences": 4 + }, + "0x6efb32bc7893b793603e39643d86594ce3638157": { + "address": "0x6efb32bc7893b793603e39643d86594ce3638157", + "symbol": "CNDL", + "decimals": 18, + "name": "CandleAI", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x6efb32bc7893b793603e39643d86594ce3638157.png", + "aggregators": ["CoinMarketCap", "Socket", "Rubic", "Rango"], + "occurrences": 4 + }, + "0x9c4cf40b5b5c3a58761683e65a87902130eb1b7c": { + "address": "0x9c4cf40b5b5c3a58761683e65a87902130eb1b7c", + "symbol": "TME", + "decimals": 9, + "name": "Tate Stop", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x9c4cf40b5b5c3a58761683e65a87902130eb1b7c.png", + "aggregators": ["CoinMarketCap", "Socket", "Rubic", "Rango"], + "occurrences": 4 + }, + "0x9ebb0895bd9c7c9dfab0d8d877c66ba613ac98ea": { + "address": "0x9ebb0895bd9c7c9dfab0d8d877c66ba613ac98ea", + "symbol": "MAGAA", + "decimals": 18, + "name": "MAGA Again", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x9ebb0895bd9c7c9dfab0d8d877c66ba613ac98ea.png", + "aggregators": ["CoinMarketCap", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0xd05f33b4fa630d6ba8a3ce75f7785439e6a3bb00": { + "address": "0xd05f33b4fa630d6ba8a3ce75f7785439e6a3bb00", + "symbol": "FLOCHI", + "decimals": 18, + "name": "Flochi INU", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xd05f33b4fa630d6ba8a3ce75f7785439e6a3bb00.png", + "aggregators": ["CoinMarketCap", "Socket", "Rubic", "Rango"], + "occurrences": 4 + }, + "0x2b8aac1630f7bc0c4b1ed8036c0fe0d71cb44709": { + "address": "0x2b8aac1630f7bc0c4b1ed8036c0fe0d71cb44709", + "symbol": "MASK", + "decimals": 9, + "name": "Wojak Mask", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x2b8aac1630f7bc0c4b1ed8036c0fe0d71cb44709.png", + "aggregators": ["CoinMarketCap", "Socket", "Rubic", "Sonarwatch"], + "occurrences": 4 + }, + "0x6b6ee7393f07b3dd1427b6848d3576f31c313127": { + "address": "0x6b6ee7393f07b3dd1427b6848d3576f31c313127", + "symbol": "BOMB", + "decimals": 18, + "name": "LollyBomb", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x6b6ee7393f07b3dd1427b6848d3576f31c313127.png", + "aggregators": ["CoinMarketCap", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0x974d796e0bea47038f39c3f98b1aa2c5240b5495": { + "address": "0x974d796e0bea47038f39c3f98b1aa2c5240b5495", + "symbol": "EAVE", + "decimals": 18, + "name": "EaveAI", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x974d796e0bea47038f39c3f98b1aa2c5240b5495.png", + "aggregators": ["CoinMarketCap", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0x426aedbed16726e3f220cb4fed4d4060b95cca46": { + "address": "0x426aedbed16726e3f220cb4fed4d4060b95cca46", + "symbol": "BAHAMAS", + "decimals": 18, + "name": "Bahamas", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x426aedbed16726e3f220cb4fed4d4060b95cca46.png", + "aggregators": ["CoinMarketCap", "Socket", "Rubic", "Rango"], + "occurrences": 4 + }, + "0x8c024cd50a94978537bde537a1fa25ad89444222": { + "address": "0x8c024cd50a94978537bde537a1fa25ad89444222", + "symbol": "PC", + "decimals": 18, + "name": "Peace Coin", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x8c024cd50a94978537bde537a1fa25ad89444222.png", + "aggregators": ["CoinMarketCap", "Socket", "Rubic", "Rango"], + "occurrences": 4 + }, + "0x03dcee0d21ab39614c768dab67bfc33b0fc0a047": { + "address": "0x03dcee0d21ab39614c768dab67bfc33b0fc0a047", + "symbol": "TRUMPCOIN", + "decimals": 18, + "name": "MAGA Fight for Trump", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x03dcee0d21ab39614c768dab67bfc33b0fc0a047.png", + "aggregators": ["CoinMarketCap", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0x15c12530382e8653904e81b8aad7ffdef55b0256": { + "address": "0x15c12530382e8653904e81b8aad7ffdef55b0256", + "symbol": "ACL", + "decimals": 18, + "name": "Auction Light", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x15c12530382e8653904e81b8aad7ffdef55b0256.png", + "aggregators": ["CoinMarketCap", "Socket", "Rubic", "Rango"], + "occurrences": 4 + }, + "0x181f2cbda1ad44de56baacbb41c8fe448a2036fe": { + "address": "0x181f2cbda1ad44de56baacbb41c8fe448a2036fe", + "symbol": "WIWI", + "decimals": 18, + "name": "Wiggly Willy", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x181f2cbda1ad44de56baacbb41c8fe448a2036fe.png", + "aggregators": ["CoinMarketCap", "Socket", "Rubic", "Rango"], + "occurrences": 4 + }, + "0x5b342f03d126314d925fa57a45654f92905e6451": { + "address": "0x5b342f03d126314d925fa57a45654f92905e6451", + "symbol": "MNTA", + "decimals": 18, + "name": "Moneta", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x5b342f03d126314d925fa57a45654f92905e6451.png", + "aggregators": ["CoinMarketCap", "Socket", "Rubic", "Sonarwatch"], + "occurrences": 4 + }, + "0x16950673c9817537e7cda10b482b90c0584c9101": { + "address": "0x16950673c9817537e7cda10b482b90c0584c9101", + "symbol": "TALES", + "decimals": 18, + "name": "Tales of Pepe", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x16950673c9817537e7cda10b482b90c0584c9101.png", + "aggregators": ["CoinMarketCap", "Socket", "Rubic", "Rango"], + "occurrences": 4 + }, + "0x0bffdd787c83235f6f0afa0faed42061a4619b7a": { + "address": "0x0bffdd787c83235f6f0afa0faed42061a4619b7a", + "symbol": "VUSD", + "decimals": 6, + "name": "Virtual USD", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x0bffdd787c83235f6f0afa0faed42061a4619b7a.png", + "aggregators": ["CoinMarketCap", "Socket", "Rubic", "Rango"], + "occurrences": 4 + }, + "0xc5f3bc77d4762258c99b8a80677d27f71b519398": { + "address": "0xc5f3bc77d4762258c99b8a80677d27f71b519398", + "symbol": "APE", + "decimals": 18, + "name": "Ape", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xc5f3bc77d4762258c99b8a80677d27f71b519398.png", + "aggregators": ["CoinMarketCap", "Socket", "Rubic", "Rango"], + "occurrences": 4 + }, + "0xd3c68968137317a57a9babeacc7707ec433548b4": { + "address": "0xd3c68968137317a57a9babeacc7707ec433548b4", + "symbol": "SOCIAL", + "decimals": 18, + "name": "Phavercoin", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xd3c68968137317a57a9babeacc7707ec433548b4.png", + "aggregators": ["CoinMarketCap", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0x72d4bc91fbd9b257eae62a5758288d9797c9a76a": { + "address": "0x72d4bc91fbd9b257eae62a5758288d9797c9a76a", + "symbol": "RUNEVM", + "decimals": 9, + "name": "RUNEVM", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x72d4bc91fbd9b257eae62a5758288d9797c9a76a.png", + "aggregators": ["CoinMarketCap", "Socket", "Rubic", "Rango"], + "occurrences": 4 + }, + "0x6494eaa7df086ad6c9a8a27341a8dc09d47305ba": { + "address": "0x6494eaa7df086ad6c9a8a27341a8dc09d47305ba", + "symbol": "SMOL", + "decimals": 18, + "name": "smol.game", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x6494eaa7df086ad6c9a8a27341a8dc09d47305ba.png", + "aggregators": ["CoinMarketCap", "Socket", "Rubic", "Rango"], + "occurrences": 4 + }, + "0xbbbbbbe1da5eab142b32f8887ee8d3872d847c20": { + "address": "0xbbbbbbe1da5eab142b32f8887ee8d3872d847c20", + "symbol": "BBONK", + "decimals": 18, + "name": "BitBonk", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xbbbbbbe1da5eab142b32f8887ee8d3872d847c20.png", + "aggregators": ["CoinMarketCap", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0x41d06390b935356b46ad6750bda30148ad2044a4": { + "address": "0x41d06390b935356b46ad6750bda30148ad2044a4", + "symbol": "HUSBY", + "decimals": 18, + "name": "HUSBY", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x41d06390b935356b46ad6750bda30148ad2044a4.png", + "aggregators": ["CoinMarketCap", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0x17b51b1da73a02db9dc20a71684dc3ea70a0dded": { + "address": "0x17b51b1da73a02db9dc20a71684dc3ea70a0dded", + "symbol": "FOXXY", + "decimals": 18, + "name": "FOXXY", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x17b51b1da73a02db9dc20a71684dc3ea70a0dded.png", + "aggregators": ["CoinMarketCap", "Socket", "Rubic", "Rango"], + "occurrences": 4 + }, + "0xd0dfca0b404e866dc9a3038bd2a545c6735d9fa9": { + "address": "0xd0dfca0b404e866dc9a3038bd2a545c6735d9fa9", + "symbol": "ABE", + "decimals": 18, + "name": "ABE", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xd0dfca0b404e866dc9a3038bd2a545c6735d9fa9.png", + "aggregators": ["CoinMarketCap", "Socket", "Rubic", "Rango"], + "occurrences": 4 + }, + "0x518c54fdc12ba593617160eca423f4c2cd3ecac3": { + "address": "0x518c54fdc12ba593617160eca423f4c2cd3ecac3", + "symbol": "STI", + "decimals": 18, + "name": "STI6900", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x518c54fdc12ba593617160eca423f4c2cd3ecac3.png", + "aggregators": ["CoinMarketCap", "Socket", "Rubic", "Rango"], + "occurrences": 4 + }, + "0x1caf237d7a2d103e3e9b1855988c01ac10344600": { + "address": "0x1caf237d7a2d103e3e9b1855988c01ac10344600", + "symbol": "LEXI", + "decimals": 9, + "name": "LexiAI", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x1caf237d7a2d103e3e9b1855988c01ac10344600.png", + "aggregators": ["CoinMarketCap", "Socket", "Rubic", "Sonarwatch"], + "occurrences": 4 + }, + "0x3d288a54e08fe41796556efdfc24c015fe47f74e": { + "address": "0x3d288a54e08fe41796556efdfc24c015fe47f74e", + "symbol": "WOLT", + "decimals": 18, + "name": "Wolt", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x3d288a54e08fe41796556efdfc24c015fe47f74e.png", + "aggregators": ["CoinMarketCap", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0x93181f0625329fc0f5c35d1670ceb541867acc65": { + "address": "0x93181f0625329fc0f5c35d1670ceb541867acc65", + "symbol": "STRA", + "decimals": 9, + "name": "Sentra", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x93181f0625329fc0f5c35d1670ceb541867acc65.png", + "aggregators": ["CoinMarketCap", "Socket", "Rubic", "Sonarwatch"], + "occurrences": 4 + }, + "0xffb1018eff5fc021e15215290732f02a89b008e7": { + "address": "0xffb1018eff5fc021e15215290732f02a89b008e7", + "symbol": "NOTI", + "decimals": 18, + "name": "Noti", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xffb1018eff5fc021e15215290732f02a89b008e7.png", + "aggregators": ["CoinMarketCap", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0x4b41a481a7a3e0396751aa49bee970b842fdaede": { + "address": "0x4b41a481a7a3e0396751aa49bee970b842fdaede", + "symbol": "KYRA", + "decimals": 9, + "name": "KYRA", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x4b41a481a7a3e0396751aa49bee970b842fdaede.png", + "aggregators": ["CoinMarketCap", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0xbb712c77b69256934cdf2f630a2317ac82570388": { + "address": "0xbb712c77b69256934cdf2f630a2317ac82570388", + "symbol": "CRIPPL", + "decimals": 18, + "name": "Wheelchair Cat", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xbb712c77b69256934cdf2f630a2317ac82570388.png", + "aggregators": ["CoinMarketCap", "Socket", "Rubic", "Rango"], + "occurrences": 4 + }, + "0xcc42b2b6d90e3747c2b8e62581183a88e3ca093a": { + "address": "0xcc42b2b6d90e3747c2b8e62581183a88e3ca093a", + "symbol": "LOTUS", + "decimals": 18, + "name": "LOTUS", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xcc42b2b6d90e3747c2b8e62581183a88e3ca093a.png", + "aggregators": ["CoinMarketCap", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0xfe4ee5ea324cda81fef5973f3cfc0a213879f2b2": { + "address": "0xfe4ee5ea324cda81fef5973f3cfc0a213879f2b2", + "symbol": "MEOW", + "decimals": 18, + "name": "Meow", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xfe4ee5ea324cda81fef5973f3cfc0a213879f2b2.png", + "aggregators": ["CoinMarketCap", "Socket", "Rubic", "Rango"], + "occurrences": 4 + }, + "0x81ad60e5dd6bd97edaa4adcc7237978b14adf4e6": { + "address": "0x81ad60e5dd6bd97edaa4adcc7237978b14adf4e6", + "symbol": "O", + "decimals": 18, + "name": "o.xyz", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x81ad60e5dd6bd97edaa4adcc7237978b14adf4e6.png", + "aggregators": ["CoinMarketCap", "Socket", "Rubic", "Rango"], + "occurrences": 4 + }, + "0x6cb25129314123bcd5adcdc844ceaeead65a0896": { + "address": "0x6cb25129314123bcd5adcdc844ceaeead65a0896", + "symbol": "CULTUR", + "decimals": 9, + "name": "CULTUR", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x6cb25129314123bcd5adcdc844ceaeead65a0896.png", + "aggregators": ["CoinMarketCap", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0x06113abcef9d163c026441b112e70c82ee1c4a79": { + "address": "0x06113abcef9d163c026441b112e70c82ee1c4a79", + "symbol": "OMIRA", + "decimals": 18, + "name": "Omira", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x06113abcef9d163c026441b112e70c82ee1c4a79.png", + "aggregators": ["CoinMarketCap", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0x78965b1c638a7ff408d1697a96d7b8e47bb7c75f": { + "address": "0x78965b1c638a7ff408d1697a96d7b8e47bb7c75f", + "symbol": "CPAL", + "decimals": 18, + "name": "Chainpal", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x78965b1c638a7ff408d1697a96d7b8e47bb7c75f.png", + "aggregators": ["CoinMarketCap", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0x5c162ec1c1679c67728d824defc0b415a97539e5": { + "address": "0x5c162ec1c1679c67728d824defc0b415a97539e5", + "symbol": "CRAZE", + "decimals": 18, + "name": "Craze", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x5c162ec1c1679c67728d824defc0b415a97539e5.png", + "aggregators": ["CoinMarketCap", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0x9a0242b7a33dacbe40edb927834f96eb39f8fbcb": { + "address": "0x9a0242b7a33dacbe40edb927834f96eb39f8fbcb", + "symbol": "BAX", + "decimals": 18, + "name": "BABB", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x9a0242b7a33dacbe40edb927834f96eb39f8fbcb.png", + "aggregators": ["Metamask", "Socket", "Rubic", "Bancor"], + "occurrences": 4 + }, + "0xfa1a856cfa3409cfa145fa4e20eb270df3eb21ab": { + "address": "0xfa1a856cfa3409cfa145fa4e20eb270df3eb21ab", + "symbol": "IOST", + "decimals": 18, + "name": "IOST", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xfa1a856cfa3409cfa145fa4e20eb270df3eb21ab.png", + "aggregators": ["Metamask", "Socket", "Rango", "SushiSwap"], + "occurrences": 4 + }, + "0xf21661d0d1d76d3ecb8e1b9f1c923dbfffae4097": { + "address": "0xf21661d0d1d76d3ecb8e1b9f1c923dbfffae4097", + "symbol": "RIO", + "decimals": 18, + "name": "Realio Network", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xf21661d0d1d76d3ecb8e1b9f1c923dbfffae4097.png", + "aggregators": ["Metamask", "Socket", "Rubic", "Rango"], + "occurrences": 4 + }, + "0xf5d669627376ebd411e34b98f19c868c8aba5ada": { + "address": "0xf5d669627376ebd411e34b98f19c868c8aba5ada", + "symbol": "AXS (LEGACY)", + "decimals": 18, + "name": "Axie Infinity Shard", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xf5d669627376ebd411e34b98f19c868c8aba5ada.png", + "aggregators": ["LiFi", "Socket", "Rubic", "Bancor"], + "occurrences": 4 + }, + "0xb4efd85c19999d84251304bda99e90b92300bd93": { + "address": "0xb4efd85c19999d84251304bda99e90b92300bd93", + "symbol": "RPL", + "decimals": 18, + "name": "Rocket Pool", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xb4efd85c19999d84251304bda99e90b92300bd93.png", + "aggregators": ["LiFi", "Socket", "Rubic", "Bancor"], + "occurrences": 4 + }, + "0x8db2350d78abc13f5673a411d4700bcf87864dde": { + "address": "0x8db2350d78abc13f5673a411d4700bcf87864dde", + "symbol": "SWBTC", + "decimals": 8, + "name": "Swell Restaked BTC", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x8db2350d78abc13f5673a411d4700bcf87864dde.png", + "aggregators": ["LiFi", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0xf9fa60ef4f23f00cce403cc4d2c11baf4880a0d6": { + "address": "0xf9fa60ef4f23f00cce403cc4d2c11baf4880a0d6", + "symbol": "FAR", + "decimals": 18, + "name": "FARCANA", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xf9fa60ef4f23f00cce403cc4d2c11baf4880a0d6.png", + "aggregators": ["LiFi", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0x459086f2376525bdceba5bdda135e4e9d3fef5bf": { + "address": "0x459086f2376525bdceba5bdda135e4e9d3fef5bf", + "symbol": "RENBCH", + "decimals": 8, + "name": "renBCH", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x459086f2376525bdceba5bdda135e4e9d3fef5bf.png", + "aggregators": ["LiFi", "Rubic", "Rango", "SushiSwap"], + "occurrences": 4 + }, + "0xad4f86a25bbc20ffb751f2fac312a0b4d8f88c64": { + "address": "0xad4f86a25bbc20ffb751f2fac312a0b4d8f88c64", + "symbol": "ROOM", + "decimals": 18, + "name": "OptionRoom Token", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xad4f86a25bbc20ffb751f2fac312a0b4d8f88c64.png", + "aggregators": ["LiFi", "TrustWallet", "Socket", "Rubic"], + "occurrences": 4 + }, + "0xc8dfb57d83bf561457b1a3f6ce22956bb554bcab": { + "address": "0xc8dfb57d83bf561457b1a3f6ce22956bb554bcab", + "symbol": "TRDM", + "decimals": 18, + "name": "TradeMaster ninja", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xc8dfb57d83bf561457b1a3f6ce22956bb554bcab.png", + "aggregators": ["LiFi", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0x6e1a19f235be7ed8e3369ef73b196c07257494de": { + "address": "0x6e1a19f235be7ed8e3369ef73b196c07257494de", + "symbol": "WFIL", + "decimals": 18, + "name": "Wrapped Filecoin", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x6e1a19f235be7ed8e3369ef73b196c07257494de.png", + "aggregators": ["LiFi", "Rubic", "Rango", "SushiSwap"], + "occurrences": 4 + }, + "0xac0104cca91d167873b8601d2e71eb3d4d8c33e0": { + "address": "0xac0104cca91d167873b8601d2e71eb3d4d8c33e0", + "symbol": "CWS", + "decimals": 18, + "name": "Crowns", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xac0104cca91d167873b8601d2e71eb3d4d8c33e0.png", + "aggregators": ["LiFi", "TrustWallet", "Rubic", "Rango"], + "occurrences": 4 + }, + "0x126c121f99e1e211df2e5f8de2d96fa36647c855": { + "address": "0x126c121f99e1e211df2e5f8de2d96fa36647c855", + "symbol": "DEGEN", + "decimals": 18, + "name": "DEGEN Index", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x126c121f99e1e211df2e5f8de2d96fa36647c855.png", + "aggregators": ["Socket", "Rubic", "Rango", "SushiSwap"], + "occurrences": 4 + }, + "0xd1e64bcc904cfdc19d0faba155a9edc69b4bcdae": { + "address": "0xd1e64bcc904cfdc19d0faba155a9edc69b4bcdae", + "symbol": "PIKA", + "decimals": 9, + "name": "Pikamoon", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xd1e64bcc904cfdc19d0faba155a9edc69b4bcdae.png", + "aggregators": ["Socket", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0x88b9f5c66342ebaf661b3e2836b807c8cb1b3195": { + "address": "0x88b9f5c66342ebaf661b3e2836b807c8cb1b3195", + "symbol": "NOBL", + "decimals": 18, + "name": "NobleBlocks", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x88b9f5c66342ebaf661b3e2836b807c8cb1b3195.png", + "aggregators": ["Socket", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0xf3768d6e78e65fc64b8f12ffc824452130bd5394": { + "address": "0xf3768d6e78e65fc64b8f12ffc824452130bd5394", + "symbol": "KEROSENE", + "decimals": 18, + "name": "Kerosene", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xf3768d6e78e65fc64b8f12ffc824452130bd5394.png", + "aggregators": ["Socket", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0xe5018913f2fdf33971864804ddb5fca25c539032": { + "address": "0xe5018913f2fdf33971864804ddb5fca25c539032", + "symbol": "OLM", + "decimals": 18, + "name": "OpenLM RevShare Token", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xe5018913f2fdf33971864804ddb5fca25c539032.png", + "aggregators": ["Socket", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0x1c43cd666f22878ee902769fccda61f401814efb": { + "address": "0x1c43cd666f22878ee902769fccda61f401814efb", + "symbol": "INCEPT", + "decimals": 18, + "name": "Incept", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x1c43cd666f22878ee902769fccda61f401814efb.png", + "aggregators": ["Socket", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0x807534b396919783b7e30383fe57d857bc084338": { + "address": "0x807534b396919783b7e30383fe57d857bc084338", + "symbol": "TEST", + "decimals": 18, + "name": "Test", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x807534b396919783b7e30383fe57d857bc084338.png", + "aggregators": ["Socket", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0xb8a4350edafd7af34164dd5870e49e28393ff3ec": { + "address": "0xb8a4350edafd7af34164dd5870e49e28393ff3ec", + "symbol": "MMTR", + "decimals": 18, + "name": "Memeinator", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xb8a4350edafd7af34164dd5870e49e28393ff3ec.png", + "aggregators": ["Socket", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0x6b15602f008a05d9694d777dead2f05586216cb4": { + "address": "0x6b15602f008a05d9694d777dead2f05586216cb4", + "symbol": "CYG", + "decimals": 18, + "name": "Cyclix Games", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x6b15602f008a05d9694d777dead2f05586216cb4.png", + "aggregators": ["Socket", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0x69d26c4901765ffa6d7716045b680c9574cb00b5": { + "address": "0x69d26c4901765ffa6d7716045b680c9574cb00b5", + "symbol": "HONKLER", + "decimals": 18, + "name": "Honkler", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x69d26c4901765ffa6d7716045b680c9574cb00b5.png", + "aggregators": ["Socket", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0xaddb6dc7e2f7caea67621dd3ca2e8321ade33286": { + "address": "0xaddb6dc7e2f7caea67621dd3ca2e8321ade33286", + "symbol": "SHARP", + "decimals": 18, + "name": "Sharp AI OLD", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xaddb6dc7e2f7caea67621dd3ca2e8321ade33286.png", + "aggregators": ["Socket", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0x75fa2a76e5ec2269cf507b9296ac108373c72a6e": { + "address": "0x75fa2a76e5ec2269cf507b9296ac108373c72a6e", + "symbol": "NUGX", + "decimals": 18, + "name": "Nugget Rush", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x75fa2a76e5ec2269cf507b9296ac108373c72a6e.png", + "aggregators": ["Socket", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0x989fa855ce126275bc269e0ec8f04a57b4af02b4": { + "address": "0x989fa855ce126275bc269e0ec8f04a57b4af02b4", + "symbol": "XBLAZE", + "decimals": 18, + "name": "Trailblaze", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x989fa855ce126275bc269e0ec8f04a57b4af02b4.png", + "aggregators": ["Socket", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0x05fb86775fd5c16290f1e838f5caaa7342bd9a63": { + "address": "0x05fb86775fd5c16290f1e838f5caaa7342bd9a63", + "symbol": "HAI", + "decimals": 8, + "name": "Hacken", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x05fb86775fd5c16290f1e838f5caaa7342bd9a63.png", + "aggregators": ["Socket", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0x06e0feb0d74106c7ada8497754074d222ec6bcdf": { + "address": "0x06e0feb0d74106c7ada8497754074d222ec6bcdf", + "symbol": "BTB", + "decimals": 18, + "name": "Bitball", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x06e0feb0d74106c7ada8497754074d222ec6bcdf.png", + "aggregators": ["Socket", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0xb87b96868644d99cc70a8565ba7311482edebf6e": { + "address": "0xb87b96868644d99cc70a8565ba7311482edebf6e", + "symbol": "OCP404", + "decimals": 18, + "name": "OnChain Pepe 404", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xb87b96868644d99cc70a8565ba7311482edebf6e.png", + "aggregators": ["Socket", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0x8c19f7854b27758ddffdcdc8908f22bf55e00736": { + "address": "0x8c19f7854b27758ddffdcdc8908f22bf55e00736", + "symbol": "YIELD", + "decimals": 18, + "name": "YieldStone", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x8c19f7854b27758ddffdcdc8908f22bf55e00736.png", + "aggregators": ["Socket", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0xdffa3a7f5b40789c7a437dbe7b31b47f9b08fe75": { + "address": "0xdffa3a7f5b40789c7a437dbe7b31b47f9b08fe75", + "symbol": "HOODIE", + "decimals": 18, + "name": "CryptoPunk 7171", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xdffa3a7f5b40789c7a437dbe7b31b47f9b08fe75.png", + "aggregators": ["Socket", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0x209a78d23f825950a5df4d6d21288e5212b44f2c": { + "address": "0x209a78d23f825950a5df4d6d21288e5212b44f2c", + "symbol": "ANVA", + "decimals": 18, + "name": "AlphaNova", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x209a78d23f825950a5df4d6d21288e5212b44f2c.png", + "aggregators": ["Socket", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0xbdeb4b83251fb146687fa19d1c660f99411eefe3": { + "address": "0xbdeb4b83251fb146687fa19d1c660f99411eefe3", + "symbol": "SVD", + "decimals": 18, + "name": "na", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xbdeb4b83251fb146687fa19d1c660f99411eefe3.png", + "aggregators": ["Socket", "Rubic", "Rango", "Bancor"], + "occurrences": 4 + }, + "0xb58e26ac9cc14c0422c2b419b0ca555ee4dcb7cb": { + "address": "0xb58e26ac9cc14c0422c2b419b0ca555ee4dcb7cb", + "symbol": "NIZA", + "decimals": 9, + "name": "Niza Global", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xb58e26ac9cc14c0422c2b419b0ca555ee4dcb7cb.png", + "aggregators": ["Socket", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0x8408d45b61f5823298f19a09b53b7339c0280489": { + "address": "0x8408d45b61f5823298f19a09b53b7339c0280489", + "symbol": "ALLO", + "decimals": 18, + "name": "Allora", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x8408d45b61f5823298f19a09b53b7339c0280489.png", + "aggregators": ["CoinMarketCap", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x5a9610919f5e81183823a2be4bd1beb2b4da2a20": { + "address": "0x5a9610919f5e81183823a2be4bd1beb2b4da2a20", + "symbol": "APR", + "decimals": 18, + "name": "aPriori", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x5a9610919f5e81183823a2be4bd1beb2b4da2a20.png", + "aggregators": ["CoinMarketCap", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x99e980265bf36516c442be982df1772a6ccb3233": { + "address": "0x99e980265bf36516c442be982df1772a6ccb3233", + "symbol": "ASSET", + "decimals": 18, + "name": "REAL", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x99e980265bf36516c442be982df1772a6ccb3233.png", + "aggregators": ["CoinMarketCap", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x3ab6ed69ef663bd986ee59205ccad8a20f98b4c2": { + "address": "0x3ab6ed69ef663bd986ee59205ccad8a20f98b4c2", + "symbol": "DREP", + "decimals": 18, + "name": "Drep", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x3ab6ed69ef663bd986ee59205ccad8a20f98b4c2.png", + "aggregators": ["UniswapLabs", "Rubic", "Sonarwatch"], + "occurrences": 3 + }, + "0xe2ad0bf751834f2fbdc62a41014f84d67ca1de2a": { + "address": "0xe2ad0bf751834f2fbdc62a41014f84d67ca1de2a", + "symbol": "ERA", + "decimals": 18, + "name": "Caldera", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xe2ad0bf751834f2fbdc62a41014f84d67ca1de2a.png", + "aggregators": ["CoinMarketCap", "Rubic", "Rango"], + "occurrences": 3 + }, + "0xb48c6b24f36307c7a1f2a9281e978a9ef2902ba5": { + "address": "0xb48c6b24f36307c7a1f2a9281e978a9ef2902ba5", + "symbol": "IMU", + "decimals": 18, + "name": "Immunefi", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xb48c6b24f36307c7a1f2a9281e978a9ef2902ba5.png", + "aggregators": ["CoinMarketCap", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x50f41f589afaca2ef41fdf590fe7b90cd26dee64": { + "address": "0x50f41f589afaca2ef41fdf590fe7b90cd26dee64", + "symbol": "IRYS", + "decimals": 18, + "name": "Irys", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x50f41f589afaca2ef41fdf590fe7b90cd26dee64.png", + "aggregators": ["CoinMarketCap", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x00bac91fd8f5b4a0dc03c8021139b76f6549ee7e": { + "address": "0x00bac91fd8f5b4a0dc03c8021139b76f6549ee7e", + "symbol": "KAIO", + "decimals": 18, + "name": "KAIO", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x00bac91fd8f5b4a0dc03c8021139b76f6549ee7e.png", + "aggregators": ["CoinMarketCap", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x232ce3bd40fcd6f80f3d55a522d03f25df784ee2": { + "address": "0x232ce3bd40fcd6f80f3d55a522d03f25df784ee2", + "symbol": "LIT", + "decimals": 18, + "name": "Lighter", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x232ce3bd40fcd6f80f3d55a522d03f25df784ee2.png", + "aggregators": ["CoinMarketCap", "Rubic", "Rango"], + "occurrences": 3 + }, + "0xf57d49646621f563b0b905afc8336923ac569ec5": { + "address": "0xf57d49646621f563b0b905afc8336923ac569ec5", + "symbol": "NEX", + "decimals": 18, + "name": "Nexus", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xf57d49646621f563b0b905afc8336923ac569ec5.png", + "aggregators": ["CoinMarketCap", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x6e6f6d696e61decd6605bd4a57836c5db6923340": { + "address": "0x6e6f6d696e61decd6605bd4a57836c5db6923340", + "symbol": "NOM", + "decimals": 18, + "name": "Nomina", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x6e6f6d696e61decd6605bd4a57836c5db6923340.png", + "aggregators": ["Metamask", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x30a25cc9c9eade4d4d9e9349be6e68c3411367d3": { + "address": "0x30a25cc9c9eade4d4d9e9349be6e68c3411367d3", + "symbol": "PTB", + "decimals": 18, + "name": "Portal To Bitcoin", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x30a25cc9c9eade4d4d9e9349be6e68c3411367d3.png", + "aggregators": ["CoinMarketCap", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x99ea4db9ee77acd40b119bd1dc4e33e1c070b80d": { + "address": "0x99ea4db9ee77acd40b119bd1dc4e33e1c070b80d", + "symbol": "QSP", + "decimals": 18, + "name": "Quantstamp", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x99ea4db9ee77acd40b119bd1dc4e33e1c070b80d.png", + "aggregators": ["Metamask", "Rubic", "Rango"], + "occurrences": 3 + }, + "0xb5f7b021a78f470d31d762c1dda05ea549904fbd": { + "address": "0xb5f7b021a78f470d31d762c1dda05ea549904fbd", + "symbol": "RLS", + "decimals": 18, + "name": "Rayls", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xb5f7b021a78f470d31d762c1dda05ea549904fbd.png", + "aggregators": ["CoinMarketCap", "Rubic", "Rango"], + "occurrences": 3 + }, + "0xaffbe9a60f1f45e057fd9b6dc70004bb0ccc8b99": { + "address": "0xaffbe9a60f1f45e057fd9b6dc70004bb0ccc8b99", + "symbol": "THQ", + "decimals": 18, + "name": "Theoriq Token", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xaffbe9a60f1f45e057fd9b6dc70004bb0ccc8b99.png", + "aggregators": ["CoinMarketCap", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x6c28f8cab28121ed757edb36201511aa18cdd187": { + "address": "0x6c28f8cab28121ed757edb36201511aa18cdd187", + "symbol": "WFB", + "decimals": 8, + "name": "Wrapped FB", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x6c28f8cab28121ed757edb36201511aa18cdd187.png", + "aggregators": ["UniswapLabs", "LiFi", "Rango"], + "occurrences": 3 + }, + "0xa9859874e1743a32409f75bb11549892138bba1e": { + "address": "0xa9859874e1743a32409f75bb11549892138bba1e", + "symbol": "IETH", + "decimals": 18, + "name": "IETH", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xa9859874e1743a32409f75bb11549892138bba1e.png", + "aggregators": ["CoinMarketCap", "Rubic", "Rango"], + "occurrences": 3 + }, + "0xd8e154ede9401dabb860fe84fecd2761b895bc50": { + "address": "0xd8e154ede9401dabb860fe84fecd2761b895bc50", + "symbol": "IOTAI", + "decimals": 18, + "name": "IoTAI", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xd8e154ede9401dabb860fe84fecd2761b895bc50.png", + "aggregators": ["CoinMarketCap", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x7cfd34ca2dceca6c835adc7e61409a089cfff14a": { + "address": "0x7cfd34ca2dceca6c835adc7e61409a089cfff14a", + "symbol": "DAWAE", + "decimals": 18, + "name": "DaWae", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x7cfd34ca2dceca6c835adc7e61409a089cfff14a.png", + "aggregators": ["CoinMarketCap", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x9fbb27bf81efded7b134d40aca9d49d6134368cb": { + "address": "0x9fbb27bf81efded7b134d40aca9d49d6134368cb", + "symbol": "ASTROID", + "decimals": 9, + "name": "Astroid", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x9fbb27bf81efded7b134d40aca9d49d6134368cb.png", + "aggregators": ["CoinGecko", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x00869e8e2e0343edd11314e6ccb0d78d51547ee5": { + "address": "0x00869e8e2e0343edd11314e6ccb0d78d51547ee5", + "symbol": "SUPERGROK", + "decimals": 18, + "name": "SuperGrok", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x00869e8e2e0343edd11314e6ccb0d78d51547ee5.png", + "aggregators": ["CoinMarketCap", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x79d464248516bc6977ca2069ba15d8d1044479d8": { + "address": "0x79d464248516bc6977ca2069ba15d8d1044479d8", + "symbol": "GPU", + "decimals": 18, + "name": "GPUnet", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x79d464248516bc6977ca2069ba15d8d1044479d8.png", + "aggregators": ["CoinMarketCap", "Rubic", "Rango"], + "occurrences": 3 + }, + "0xfdd070e34cbd0923d307f3af481be5bddac4f487": { + "address": "0xfdd070e34cbd0923d307f3af481be5bddac4f487", + "symbol": "SMPL", + "decimals": 18, + "name": "SimpleAI", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xfdd070e34cbd0923d307f3af481be5bddac4f487.png", + "aggregators": ["CoinGecko", "Rubic", "Rango"], + "occurrences": 3 + }, + "0xc77867d630dbe567d219a86fddbe7ef1f0670fdc": { + "address": "0xc77867d630dbe567d219a86fddbe7ef1f0670fdc", + "symbol": "ALIENS", + "decimals": 9, + "name": "Aliens", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xc77867d630dbe567d219a86fddbe7ef1f0670fdc.png", + "aggregators": ["CoinGecko", "Rubic", "Rango"], + "occurrences": 3 + }, + "0xd4c4407f3afb48d7d4ad954572f155f9237ae335": { + "address": "0xd4c4407f3afb48d7d4ad954572f155f9237ae335", + "symbol": "BRCG", + "decimals": 9, + "name": "Bitcoin Roller Coaster Guy", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xd4c4407f3afb48d7d4ad954572f155f9237ae335.png", + "aggregators": ["CoinMarketCap", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x9abfcacee1fe43f6fd8f5a8351b1c66950cfc9fe": { + "address": "0x9abfcacee1fe43f6fd8f5a8351b1c66950cfc9fe", + "symbol": "EPEP", + "decimals": 18, + "name": "EPEP", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x9abfcacee1fe43f6fd8f5a8351b1c66950cfc9fe.png", + "aggregators": ["CoinGecko", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x52dd39e5d1a5f4b8a622466bbe880b5427bf038e": { + "address": "0x52dd39e5d1a5f4b8a622466bbe880b5427bf038e", + "symbol": "CASE", + "decimals": 9, + "name": "CASE", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x52dd39e5d1a5f4b8a622466bbe880b5427bf038e.png", + "aggregators": ["CoinGecko", "Rubic", "Rango"], + "occurrences": 3 + }, + "0xc114d80a2a188f30400b3cd545c5e296f0b04c3f": { + "address": "0xc114d80a2a188f30400b3cd545c5e296f0b04c3f", + "symbol": "RITA", + "decimals": 9, + "name": "Rita Elite Order", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xc114d80a2a188f30400b3cd545c5e296f0b04c3f.png", + "aggregators": ["CoinMarketCap", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x420658a1d8b8f5c36ddaf1bb828f347ba9011969": { + "address": "0x420658a1d8b8f5c36ddaf1bb828f347ba9011969", + "symbol": "DEGEN", + "decimals": 18, + "name": "Degen Arena", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x420658a1d8b8f5c36ddaf1bb828f347ba9011969.png", + "aggregators": ["CoinGecko", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x6b6ed968c266de0e9b24ed055f5eaf44072c1730": { + "address": "0x6b6ed968c266de0e9b24ed055f5eaf44072c1730", + "symbol": "STACK", + "decimals": 18, + "name": "StratoStack", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x6b6ed968c266de0e9b24ed055f5eaf44072c1730.png", + "aggregators": ["CoinGecko", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x14913815bcfde78baead2111f463d038ac9c2949": { + "address": "0x14913815bcfde78baead2111f463d038ac9c2949", + "symbol": "EUSD", + "decimals": 6, + "name": "EUSD", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x14913815bcfde78baead2111f463d038ac9c2949.png", + "aggregators": ["CoinMarketCap", "Rubic", "Rango"], + "occurrences": 3 + }, + "0xc114cf69972e3c1b4b529e0418012c01fcf9e725": { + "address": "0xc114cf69972e3c1b4b529e0418012c01fcf9e725", + "symbol": "BEAR", + "decimals": 9, + "name": "Bearly Legal", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xc114cf69972e3c1b4b529e0418012c01fcf9e725.png", + "aggregators": ["CoinMarketCap", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x9d08946ca5856f882a56c29042fbedc5142663b9": { + "address": "0x9d08946ca5856f882a56c29042fbedc5142663b9", + "symbol": "NMNRL", + "decimals": 6, + "name": "NMNRL", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x9d08946ca5856f882a56c29042fbedc5142663b9.png", + "aggregators": ["CoinGecko", "Rubic", "Rango"], + "occurrences": 3 + }, + "0xb8cc0a0d0dbe23894afa7d35168976aed1048c89": { + "address": "0xb8cc0a0d0dbe23894afa7d35168976aed1048c89", + "symbol": "TOTAKEKE", + "decimals": 9, + "name": "Totakeke", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xb8cc0a0d0dbe23894afa7d35168976aed1048c89.png", + "aggregators": ["CoinGecko", "Rubic", "Rango"], + "occurrences": 3 + }, + "0xe507c2043ef812e95648d1454276387e3b39950b": { + "address": "0xe507c2043ef812e95648d1454276387e3b39950b", + "symbol": "IYO", + "decimals": 9, + "name": "IYO-CHAN", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xe507c2043ef812e95648d1454276387e3b39950b.png", + "aggregators": ["CoinGecko", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x806a72273b961145cf5c5f040ad1fcd112b3f11a": { + "address": "0x806a72273b961145cf5c5f040ad1fcd112b3f11a", + "symbol": "OWO", + "decimals": 9, + "name": "Owo", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x806a72273b961145cf5c5f040ad1fcd112b3f11a.png", + "aggregators": ["CoinMarketCap", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x7beb8f36650e9327d8c52735e3b3c9d1521576e3": { + "address": "0x7beb8f36650e9327d8c52735e3b3c9d1521576e3", + "symbol": "KEK", + "decimals": 18, + "name": "kek", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x7beb8f36650e9327d8c52735e3b3c9d1521576e3.png", + "aggregators": ["CoinMarketCap", "Rubic", "Rango"], + "occurrences": 3 + }, + "0xb8c35e66b4faafdccace27e8b5062f45cb381e31": { + "address": "0xb8c35e66b4faafdccace27e8b5062f45cb381e31", + "symbol": "MOANER", + "decimals": 18, + "name": "Moaner by Matt Furie", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xb8c35e66b4faafdccace27e8b5062f45cb381e31.png", + "aggregators": ["CoinMarketCap", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x0e60ce572a5456b6974d5e7507cc07110dd062a4": { + "address": "0x0e60ce572a5456b6974d5e7507cc07110dd062a4", + "symbol": "PUPPIES", + "decimals": 2, + "name": "I love puppies", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x0e60ce572a5456b6974d5e7507cc07110dd062a4.png", + "aggregators": ["CoinMarketCap", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x74023ba6cb9e085eb563e55243c2fa858b6900b9": { + "address": "0x74023ba6cb9e085eb563e55243c2fa858b6900b9", + "symbol": "MOANER", + "decimals": 9, + "name": "Moaner Melter Slime", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x74023ba6cb9e085eb563e55243c2fa858b6900b9.png", + "aggregators": ["CoinGecko", "Rubic", "Rango"], + "occurrences": 3 + }, + "0xbe370ad45d44eb45174c4ec60b88839fef32c077": { + "address": "0xbe370ad45d44eb45174c4ec60b88839fef32c077", + "symbol": "PHT", + "decimals": 18, + "name": "PHT", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xbe370ad45d44eb45174c4ec60b88839fef32c077.png", + "aggregators": ["CoinGecko", "Rubic", "Rango"], + "occurrences": 3 + }, + "0xe533c2480983e46664b15717d6fc02c0a1dad537": { + "address": "0xe533c2480983e46664b15717d6fc02c0a1dad537", + "symbol": "TAIKI", + "decimals": 18, + "name": "TAIKI INU", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xe533c2480983e46664b15717d6fc02c0a1dad537.png", + "aggregators": ["CoinGecko", "Rubic", "Rango"], + "occurrences": 3 + }, + "0xb03eef386a61b5b462051636001485fffdd3d843": { + "address": "0xb03eef386a61b5b462051636001485fffdd3d843", + "symbol": "AMERICA", + "decimals": 18, + "name": "America Party", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xb03eef386a61b5b462051636001485fffdd3d843.png", + "aggregators": ["CoinMarketCap", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x6dcc10db1b1a7f7a49f6cd3669114aff053295fc": { + "address": "0x6dcc10db1b1a7f7a49f6cd3669114aff053295fc", + "symbol": "VALENTINE", + "decimals": 9, + "name": "Valentine", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x6dcc10db1b1a7f7a49f6cd3669114aff053295fc.png", + "aggregators": ["CoinMarketCap", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x371d62f8ac252db7f88786e39f0880c35146c6c5": { + "address": "0x371d62f8ac252db7f88786e39f0880c35146c6c5", + "symbol": "LOOP", + "decimals": 9, + "name": "Workloop AI", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x371d62f8ac252db7f88786e39f0880c35146c6c5.png", + "aggregators": ["CoinMarketCap", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x341ea9d0e5c9a2a7781aff398117846ea2fff2ab": { + "address": "0x341ea9d0e5c9a2a7781aff398117846ea2fff2ab", + "symbol": "KU-CHAN", + "decimals": 9, + "name": "KURUMI", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x341ea9d0e5c9a2a7781aff398117846ea2fff2ab.png", + "aggregators": ["CoinGecko", "Rubic", "Rango"], + "occurrences": 3 + }, + "0xb40865a6ed718f57468cd3f4f60825a130b89a51": { + "address": "0xb40865a6ed718f57468cd3f4f60825a130b89a51", + "symbol": "DESU", + "decimals": 9, + "name": "DESU", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xb40865a6ed718f57468cd3f4f60825a130b89a51.png", + "aggregators": ["CoinGecko", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x66bff0d18513c648690edcdf5993c9da8c632ec8": { + "address": "0x66bff0d18513c648690edcdf5993c9da8c632ec8", + "symbol": "BRETTWU", + "decimals": 9, + "name": "Brettwu", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x66bff0d18513c648690edcdf5993c9da8c632ec8.png", + "aggregators": ["CoinGecko", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x64ab176c545bb85eca75d53c3ffcb361deafb855": { + "address": "0x64ab176c545bb85eca75d53c3ffcb361deafb855", + "symbol": "INALPHA", + "decimals": 6, + "name": "INALPHA", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x64ab176c545bb85eca75d53c3ffcb361deafb855.png", + "aggregators": ["CoinGecko", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x83e8fb8d8176224fcc828edc73e152ec1818a2da": { + "address": "0x83e8fb8d8176224fcc828edc73e152ec1818a2da", + "symbol": "CHI", + "decimals": 18, + "name": "CHI", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x83e8fb8d8176224fcc828edc73e152ec1818a2da.png", + "aggregators": ["CoinGecko", "Rubic", "Rango"], + "occurrences": 3 + }, + "0xaeeaa594e7dc112d67b8547fe9767a02c15b5597": { + "address": "0xaeeaa594e7dc112d67b8547fe9767a02c15b5597", + "symbol": "ANVL", + "decimals": 18, + "name": "ANVL", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xaeeaa594e7dc112d67b8547fe9767a02c15b5597.png", + "aggregators": ["CoinMarketCap", "Rubic", "Rango"], + "occurrences": 3 + }, + "0xe60e9bd04ccc0a394f1fdf29874e35a773cb07f4": { + "address": "0xe60e9bd04ccc0a394f1fdf29874e35a773cb07f4", + "symbol": "AP", + "decimals": 18, + "name": "America Party", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xe60e9bd04ccc0a394f1fdf29874e35a773cb07f4.png", + "aggregators": ["CoinMarketCap", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x3ca20831ebea5c99aa6e574d83f0a7c733f7e4d0": { + "address": "0x3ca20831ebea5c99aa6e574d83f0a7c733f7e4d0", + "symbol": "CHMPSTR", + "decimals": 18, + "name": "CHMPSTR", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x3ca20831ebea5c99aa6e574d83f0a7c733f7e4d0.png", + "aggregators": ["CoinGecko", "Rubic", "Rango"], + "occurrences": 3 + }, + "0xae1e1b4d8f590371b77bee27257ef038d4b835a1": { + "address": "0xae1e1b4d8f590371b77bee27257ef038d4b835a1", + "symbol": "CLT", + "decimals": 18, + "name": "ChicagoCoin", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xae1e1b4d8f590371b77bee27257ef038d4b835a1.png", + "aggregators": ["CoinGecko", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x0007efdf427313313c904ad88cba4d00a672e327": { + "address": "0x0007efdf427313313c904ad88cba4d00a672e327", + "symbol": "ISHI", + "decimals": 9, + "name": "Ishi Go", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x0007efdf427313313c904ad88cba4d00a672e327.png", + "aggregators": ["CoinMarketCap", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x999903502c1c7fea3591fb17315544c6bdde7699": { + "address": "0x999903502c1c7fea3591fb17315544c6bdde7699", + "symbol": "XAU", + "decimals": 9, + "name": "XAU9999", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x999903502c1c7fea3591fb17315544c6bdde7699.png", + "aggregators": ["CoinMarketCap", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x38778e6d4d0dbe9becef3ae8b938570209efa48b": { + "address": "0x38778e6d4d0dbe9becef3ae8b938570209efa48b", + "symbol": "PAST", + "decimals": 18, + "name": "Punk Auction Strategy Token", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x38778e6d4d0dbe9becef3ae8b938570209efa48b.png", + "aggregators": ["CoinGecko", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x2e7775964554e0eb6400c00ce342fe06e1000935": { + "address": "0x2e7775964554e0eb6400c00ce342fe06e1000935", + "symbol": "89", + "decimals": 9, + "name": "The Official 89 Coin", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x2e7775964554e0eb6400c00ce342fe06e1000935.png", + "aggregators": ["CoinGecko", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x70bb8bcfafcf60446d5071d4427da8e99f0168aa": { + "address": "0x70bb8bcfafcf60446d5071d4427da8e99f0168aa", + "symbol": "BIRDEI", + "decimals": 9, + "name": "Birdei", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x70bb8bcfafcf60446d5071d4427da8e99f0168aa.png", + "aggregators": ["CoinMarketCap", "Rubic", "Rango"], + "occurrences": 3 + }, + "0xc0fe7f77ed2f522978b719372282ca89de8cf3e4": { + "address": "0xc0fe7f77ed2f522978b719372282ca89de8cf3e4", + "symbol": "CATCOIN", + "decimals": 18, + "name": "Catcoin", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xc0fe7f77ed2f522978b719372282ca89de8cf3e4.png", + "aggregators": ["CoinGecko", "Rubic", "Rango"], + "occurrences": 3 + }, + "0xf245964bd0a73128e10c4f7c96d0664ea2e436d8": { + "address": "0xf245964bd0a73128e10c4f7c96d0664ea2e436d8", + "symbol": "MAXI", + "decimals": 9, + "name": "Maxi Doge", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xf245964bd0a73128e10c4f7c96d0664ea2e436d8.png", + "aggregators": ["CoinGecko", "Rubic", "Rango"], + "occurrences": 3 + }, + "0xaccfd598ef801178ed6c816c234b16ec51ae9f32": { + "address": "0xaccfd598ef801178ed6c816c234b16ec51ae9f32", + "symbol": "SATOSHIT", + "decimals": 18, + "name": "SatoshitCoin", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xaccfd598ef801178ed6c816c234b16ec51ae9f32.png", + "aggregators": ["CoinGecko", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x9e59a081320ddb046d74a106335ca6b84eadc067": { + "address": "0x9e59a081320ddb046d74a106335ca6b84eadc067", + "symbol": "BIDEN", + "decimals": 18, + "name": "Biden Coin", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x9e59a081320ddb046d74a106335ca6b84eadc067.png", + "aggregators": ["CoinMarketCap", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x81987681443c156f881b70875724cc78b08ada26": { + "address": "0x81987681443c156f881b70875724cc78b08ada26", + "symbol": "MIRAI", + "decimals": 9, + "name": "Mirai", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x81987681443c156f881b70875724cc78b08ada26.png", + "aggregators": ["CoinGecko", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x72943fb986c7cc044740ff7bbf4ec722cd7d5436": { + "address": "0x72943fb986c7cc044740ff7bbf4ec722cd7d5436", + "symbol": "SANKE", + "decimals": 18, + "name": "Sanke Wallet", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x72943fb986c7cc044740ff7bbf4ec722cd7d5436.png", + "aggregators": ["CoinGecko", "Rubic", "Rango"], + "occurrences": 3 + }, + "0xda5d03f441e13ad74876e5fa1851cbfadab1f332": { + "address": "0xda5d03f441e13ad74876e5fa1851cbfadab1f332", + "symbol": "TRIX", + "decimals": 18, + "name": "TRIX", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xda5d03f441e13ad74876e5fa1851cbfadab1f332.png", + "aggregators": ["CoinMarketCap", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x42069e779838929495ed0152ffc27145ce5c7f98": { + "address": "0x42069e779838929495ed0152ffc27145ce5c7f98", + "symbol": "SPURDO", + "decimals": 9, + "name": "Spurdo", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x42069e779838929495ed0152ffc27145ce5c7f98.png", + "aggregators": ["CoinMarketCap", "Rubic", "Rango"], + "occurrences": 3 + }, + "0xe6f4567c330625f3488ec69266f5ddd3f3841f33": { + "address": "0xe6f4567c330625f3488ec69266f5ddd3f3841f33", + "symbol": "MARU", + "decimals": 9, + "name": "Marutaro", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xe6f4567c330625f3488ec69266f5ddd3f3841f33.png", + "aggregators": ["CoinMarketCap", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x11dfc652eb62c723ad8c2ae731fcede58ab07564": { + "address": "0x11dfc652eb62c723ad8c2ae731fcede58ab07564", + "symbol": "LIQUID", + "decimals": 18, + "name": "Liquid Agent", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x11dfc652eb62c723ad8c2ae731fcede58ab07564.png", + "aggregators": ["CoinMarketCap", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x1c13522ca36e5e13c591c0803083d5bb9282fe48": { + "address": "0x1c13522ca36e5e13c591c0803083d5bb9282fe48", + "symbol": "Z", + "decimals": 18, + "name": "zkCLOB", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x1c13522ca36e5e13c591c0803083d5bb9282fe48.png", + "aggregators": ["CoinGecko", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x468eabcb5c914ac59e72691f8fc970880a94f4b3": { + "address": "0x468eabcb5c914ac59e72691f8fc970880a94f4b3", + "symbol": "EMDR", + "decimals": 18, + "name": "Ethereum MDR", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x468eabcb5c914ac59e72691f8fc970880a94f4b3.png", + "aggregators": ["CoinMarketCap", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x4ba765ee44597d4986c3fbe9eab1535de3b3c3b6": { + "address": "0x4ba765ee44597d4986c3fbe9eab1535de3b3c3b6", + "symbol": "MXY", + "decimals": 9, + "name": "MXY6900", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x4ba765ee44597d4986c3fbe9eab1535de3b3c3b6.png", + "aggregators": ["CoinGecko", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x491b67a94ec0a59b81b784f4719d0387c4510c36": { + "address": "0x491b67a94ec0a59b81b784f4719d0387c4510c36", + "symbol": "PF", + "decimals": 18, + "name": "Purple Frog", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x491b67a94ec0a59b81b784f4719d0387c4510c36.png", + "aggregators": ["CoinMarketCap", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x74c00c26e0ace673313aebf749a1a9644eeefdea": { + "address": "0x74c00c26e0ace673313aebf749a1a9644eeefdea", + "symbol": "SPURDO", + "decimals": 18, + "name": "SPURDO", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x74c00c26e0ace673313aebf749a1a9644eeefdea.png", + "aggregators": ["CoinGecko", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x2a9db31f0f0329b03ddd7a8a4b5297815bba0124": { + "address": "0x2a9db31f0f0329b03ddd7a8a4b5297815bba0124", + "symbol": "SNIBBU", + "decimals": 9, + "name": "Snibbu", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x2a9db31f0f0329b03ddd7a8a4b5297815bba0124.png", + "aggregators": ["CoinMarketCap", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x2b566950ba2298acef3c730cc0129b2f4fbd30a3": { + "address": "0x2b566950ba2298acef3c730cc0129b2f4fbd30a3", + "symbol": "KIMCHI", + "decimals": 9, + "name": "Kimchi", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x2b566950ba2298acef3c730cc0129b2f4fbd30a3.png", + "aggregators": ["CoinGecko", "Rubic", "Rango"], + "occurrences": 3 + }, + "0xe6e079e961ee2cba8fc67762eb138144c882367f": { + "address": "0xe6e079e961ee2cba8fc67762eb138144c882367f", + "symbol": "DRMUTANT", + "decimals": 9, + "name": "Doctor Mutant", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xe6e079e961ee2cba8fc67762eb138144c882367f.png", + "aggregators": ["CoinGecko", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x465ac9ca56f340bc5b96b02c065ae80f3d893eec": { + "address": "0x465ac9ca56f340bc5b96b02c065ae80f3d893eec", + "symbol": "BOATKID", + "decimals": 2, + "name": "BoatKid", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x465ac9ca56f340bc5b96b02c065ae80f3d893eec.png", + "aggregators": ["CoinMarketCap", "Rubic", "Rango"], + "occurrences": 3 + }, + "0xea36af87df952fd4c9a05cd792d370909bbda8db": { + "address": "0xea36af87df952fd4c9a05cd792d370909bbda8db", + "symbol": "KPOP", + "decimals": 18, + "name": "OFFICIAL K-POP", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xea36af87df952fd4c9a05cd792d370909bbda8db.png", + "aggregators": ["CoinMarketCap", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x95ae252633e9ea03bdfe67874b349b41163464ce": { + "address": "0x95ae252633e9ea03bdfe67874b349b41163464ce", + "symbol": "BIGGIE", + "decimals": 9, + "name": "Biggie", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x95ae252633e9ea03bdfe67874b349b41163464ce.png", + "aggregators": ["CoinMarketCap", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x0f6f1818019d656ea5651e913adf8a26e178c09f": { + "address": "0x0f6f1818019d656ea5651e913adf8a26e178c09f", + "symbol": "EAGLE", + "decimals": 18, + "name": "Bald Eagle", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x0f6f1818019d656ea5651e913adf8a26e178c09f.png", + "aggregators": ["CoinGecko", "Rubic", "Rango"], + "occurrences": 3 + }, + "0xa3c1b11a1c788f41b7e3bd3afc45cdec87d31afb": { + "address": "0xa3c1b11a1c788f41b7e3bd3afc45cdec87d31afb", + "symbol": "WABUU", + "decimals": 9, + "name": "Wabuu", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xa3c1b11a1c788f41b7e3bd3afc45cdec87d31afb.png", + "aggregators": ["CoinGecko", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x69a80a841f3385ec8ddc6c24d2ad2f615d2ad1f2": { + "address": "0x69a80a841f3385ec8ddc6c24d2ad2f615d2ad1f2", + "symbol": "TOTAKEKE", + "decimals": 10, + "name": "Totakeke", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x69a80a841f3385ec8ddc6c24d2ad2f615d2ad1f2.png", + "aggregators": ["CoinMarketCap", "Rubic", "Rango"], + "occurrences": 3 + }, + "0xbe445f5ef7edb8829203ab0a3298d9eff4560616": { + "address": "0xbe445f5ef7edb8829203ab0a3298d9eff4560616", + "symbol": "$RIPPER", + "decimals": 9, + "name": "bush ripper 𝓜𝓪𝓽𝓽 𝓕𝓾𝓻𝓲𝓮", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xbe445f5ef7edb8829203ab0a3298d9eff4560616.png", + "aggregators": ["CoinGecko", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x44e22c1b859a3f613276a0ff28af1a4d1a3b5c5e": { + "address": "0x44e22c1b859a3f613276a0ff28af1a4d1a3b5c5e", + "symbol": "RENC", + "decimals": 18, + "name": "RegularEverydayNormalCoin", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x44e22c1b859a3f613276a0ff28af1a4d1a3b5c5e.png", + "aggregators": ["CoinGecko", "Rubic", "Rango"], + "occurrences": 3 + }, + "0xaa9806c938836627ed1a41ae871c7e1889ae02ca": { + "address": "0xaa9806c938836627ed1a41ae871c7e1889ae02ca", + "symbol": "EDGEN", + "decimals": 18, + "name": "LayerEdge", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xaa9806c938836627ed1a41ae871c7e1889ae02ca.png", + "aggregators": ["CoinMarketCap", "Rubic", "Rango"], + "occurrences": 3 + }, + "0xba83b5ed3f12bfa44f066f03ee0433419b74f469": { + "address": "0xba83b5ed3f12bfa44f066f03ee0433419b74f469", + "symbol": "BEST", + "decimals": 18, + "name": "Best Wallet Token", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xba83b5ed3f12bfa44f066f03ee0433419b74f469.png", + "aggregators": ["CoinMarketCap", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x7607546645655d4e93ea6839a55339263b3e4986": { + "address": "0x7607546645655d4e93ea6839a55339263b3e4986", + "symbol": "FUSAKA", + "decimals": 9, + "name": "Fusaka", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x7607546645655d4e93ea6839a55339263b3e4986.png", + "aggregators": ["CoinMarketCap", "Rubic", "Rango"], + "occurrences": 3 + }, + "0xf92927eca847da7fc2b1b47d0c09a101dee6cdaf": { + "address": "0xf92927eca847da7fc2b1b47d0c09a101dee6cdaf", + "symbol": "BABYWLFI", + "decimals": 18, + "name": "Baby World Liberty Financial", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xf92927eca847da7fc2b1b47d0c09a101dee6cdaf.png", + "aggregators": ["CoinMarketCap", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x081599e4936d12c46bd48913b2329115cd26cbdd": { + "address": "0x081599e4936d12c46bd48913b2329115cd26cbdd", + "symbol": "AUDM", + "decimals": 18, + "name": "AUDM", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x081599e4936d12c46bd48913b2329115cd26cbdd.png", + "aggregators": ["CoinMarketCap", "Rubic", "Rango"], + "occurrences": 3 + }, + "0xc0c17dd08263c16f6b64e772fb9b723bf1344ddf": { + "address": "0xc0c17dd08263c16f6b64e772fb9b723bf1344ddf", + "symbol": "PMUSD", + "decimals": 18, + "name": "Precious Metals USD", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xc0c17dd08263c16f6b64e772fb9b723bf1344ddf.png", + "aggregators": ["CoinMarketCap", "Rubic", "Rango"], + "occurrences": 3 + }, + "0xfd36fa88bb3fea8d1264fc89d70723b6a2b56958": { + "address": "0xfd36fa88bb3fea8d1264fc89d70723b6a2b56958", + "symbol": "WXTM", + "decimals": 18, + "name": "WXTM", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xfd36fa88bb3fea8d1264fc89d70723b6a2b56958.png", + "aggregators": ["CoinMarketCap", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x8bbfe65e31b348cd823c62e02ad8c19a84dd0dab": { + "address": "0x8bbfe65e31b348cd823c62e02ad8c19a84dd0dab", + "symbol": "MOC", + "decimals": 18, + "name": "MOC", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x8bbfe65e31b348cd823c62e02ad8c19a84dd0dab.png", + "aggregators": ["CoinMarketCap", "Rubic", "Rango"], + "occurrences": 3 + }, + "0xda891afeb0c9ff9377a05cd91d8eac1dd8331cfd": { + "address": "0xda891afeb0c9ff9377a05cd91d8eac1dd8331cfd", + "symbol": "AROS", + "decimals": 9, + "name": "Aros", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xda891afeb0c9ff9377a05cd91d8eac1dd8331cfd.png", + "aggregators": ["CoinMarketCap", "Rubic", "Rango"], + "occurrences": 3 + }, + "0xed93a0bcbd7793b4dd6ca0033b813344512c106d": { + "address": "0xed93a0bcbd7793b4dd6ca0033b813344512c106d", + "symbol": "TUGGIN", + "decimals": 9, + "name": "Tuggin", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xed93a0bcbd7793b4dd6ca0033b813344512c106d.png", + "aggregators": ["CoinGecko", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x08dcb9b5989fb09ef80e85567ec1f49577a70d29": { + "address": "0x08dcb9b5989fb09ef80e85567ec1f49577a70d29", + "symbol": "A2Z", + "decimals": 18, + "name": "A2Z", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x08dcb9b5989fb09ef80e85567ec1f49577a70d29.png", + "aggregators": ["CoinMarketCap", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x8080779e8366ea28cd1c99bd66ac6d04fce73bf9": { + "address": "0x8080779e8366ea28cd1c99bd66ac6d04fce73bf9", + "symbol": "TAP", + "decimals": 9, + "name": "The America Party", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x8080779e8366ea28cd1c99bd66ac6d04fce73bf9.png", + "aggregators": ["CoinMarketCap", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x3a7ed34c31e88a65184de33ea217226e9245cb40": { + "address": "0x3a7ed34c31e88a65184de33ea217226e9245cb40", + "symbol": "UTA", + "decimals": 9, + "name": "Japanese Pygmy Hippo", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x3a7ed34c31e88a65184de33ea217226e9245cb40.png", + "aggregators": ["CoinGecko", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x10ee9f68ee4e4d311e854ae14c53f5b25a917f85": { + "address": "0x10ee9f68ee4e4d311e854ae14c53f5b25a917f85", + "symbol": "MHRD", + "decimals": 18, + "name": "MacroHard", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x10ee9f68ee4e4d311e854ae14c53f5b25a917f85.png", + "aggregators": ["CoinMarketCap", "Rubic", "Rango"], + "occurrences": 3 + }, + "0xd2d576903f590c93050e695097b026dd3e9582b5": { + "address": "0xd2d576903f590c93050e695097b026dd3e9582b5", + "symbol": "SCAMMAN", + "decimals": 18, + "name": "Scam Altman", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xd2d576903f590c93050e695097b026dd3e9582b5.png", + "aggregators": ["CoinGecko", "Rubic", "Rango"], + "occurrences": 3 + }, + "0xd400a048b726eba969449b342dc7c0e74187c0de": { + "address": "0xd400a048b726eba969449b342dc7c0e74187c0de", + "symbol": "UNICURVE", + "decimals": 18, + "name": "UNICURVE", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xd400a048b726eba969449b342dc7c0e74187c0de.png", + "aggregators": ["CoinGecko", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x7c9f94a79b6b859dfb1d3312fc2311b39f89c677": { + "address": "0x7c9f94a79b6b859dfb1d3312fc2311b39f89c677", + "symbol": "SOMETHING", + "decimals": 9, + "name": "believe in somETHing", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x7c9f94a79b6b859dfb1d3312fc2311b39f89c677.png", + "aggregators": ["CoinGecko", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x07c3e739c65f81ea79d19a88d27de4c9f15f8df0": { + "address": "0x07c3e739c65f81ea79d19a88d27de4c9f15f8df0", + "symbol": "SEEK", + "decimals": 18, + "name": "Talisman", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x07c3e739c65f81ea79d19a88d27de4c9f15f8df0.png", + "aggregators": ["CoinMarketCap", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x4c3e9772698084b00b413106723e700797921c6b": { + "address": "0x4c3e9772698084b00b413106723e700797921c6b", + "symbol": "DILDO", + "decimals": 18, + "name": "Green Dildo Coin", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x4c3e9772698084b00b413106723e700797921c6b.png", + "aggregators": ["CoinMarketCap", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x51c2d74017390cbbd30550179a16a1c28f7210fc": { + "address": "0x51c2d74017390cbbd30550179a16a1c28f7210fc", + "symbol": "STAC", + "decimals": 6, + "name": "STAC", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x51c2d74017390cbbd30550179a16a1c28f7210fc.png", + "aggregators": ["CoinGecko", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x76b6f7bd8857195c5165a49a6ff75f84a3f081ca": { + "address": "0x76b6f7bd8857195c5165a49a6ff75f84a3f081ca", + "symbol": "BLOCKYBOY", + "decimals": 9, + "name": "Blockyboy by Matt Furie", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x76b6f7bd8857195c5165a49a6ff75f84a3f081ca.png", + "aggregators": ["CoinGecko", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x98931a97a62ff3a8e2b42b7ea186cff193c2a67f": { + "address": "0x98931a97a62ff3a8e2b42b7ea186cff193c2a67f", + "symbol": "YOBI", + "decimals": 9, + "name": "Yobi", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x98931a97a62ff3a8e2b42b7ea186cff193c2a67f.png", + "aggregators": ["CoinGecko", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x45547ab0100f5e8b158258b6d94d7586de69fc21": { + "address": "0x45547ab0100f5e8b158258b6d94d7586de69fc21", + "symbol": "MYSTERY", + "decimals": 18, + "name": "Mystery", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x45547ab0100f5e8b158258b6d94d7586de69fc21.png", + "aggregators": ["CoinGecko", "Rubic", "Rango"], + "occurrences": 3 + }, + "0xb8f28c60dd8240141185a192fa4156a23e189305": { + "address": "0xb8f28c60dd8240141185a192fa4156a23e189305", + "symbol": "KYO", + "decimals": 18, + "name": "Kyo", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xb8f28c60dd8240141185a192fa4156a23e189305.png", + "aggregators": ["CoinGecko", "Rubic", "Rango"], + "occurrences": 3 + }, + "0xe15ed6cad89cb6d71b1f18eff938c65fbc59b371": { + "address": "0xe15ed6cad89cb6d71b1f18eff938c65fbc59b371", + "symbol": "STRAYDOG", + "decimals": 9, + "name": "Stray Dog", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xe15ed6cad89cb6d71b1f18eff938c65fbc59b371.png", + "aggregators": ["CoinMarketCap", "Rubic", "Rango"], + "occurrences": 3 + }, + "0xb74f399aac8335e44a50ffb8f7ece74b9db8c30e": { + "address": "0xb74f399aac8335e44a50ffb8f7ece74b9db8c30e", + "symbol": "NALA", + "decimals": 18, + "name": "NALA", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xb74f399aac8335e44a50ffb8f7ece74b9db8c30e.png", + "aggregators": ["CoinMarketCap", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x255494b830bd4fe7220b3ec4842cba75600b6c80": { + "address": "0x255494b830bd4fe7220b3ec4842cba75600b6c80", + "symbol": "BEAST", + "decimals": 9, + "name": "Beast Seller", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x255494b830bd4fe7220b3ec4842cba75600b6c80.png", + "aggregators": ["CoinGecko", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x139450c2dcef827c9a2a0bb1cb5506260940c9fd": { + "address": "0x139450c2dcef827c9a2a0bb1cb5506260940c9fd", + "symbol": "SSUPERUSD", + "decimals": 6, + "name": "SSUPERUSD", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x139450c2dcef827c9a2a0bb1cb5506260940c9fd.png", + "aggregators": ["CoinGecko", "Rubic", "Rango"], + "occurrences": 3 + }, + "0xefc814a4c676a7314a13954e283de6cef597e6b2": { + "address": "0xefc814a4c676a7314a13954e283de6cef597e6b2", + "symbol": "MIND", + "decimals": 18, + "name": "Mind of Pepe", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xefc814a4c676a7314a13954e283de6cef597e6b2.png", + "aggregators": ["CoinMarketCap", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x8ada9bf2d08b484cb9dee67caccd04b991d88145": { + "address": "0x8ada9bf2d08b484cb9dee67caccd04b991d88145", + "symbol": "HYPR", + "decimals": 9, + "name": "Hypr", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x8ada9bf2d08b484cb9dee67caccd04b991d88145.png", + "aggregators": ["CoinMarketCap", "Rubic", "Rango"], + "occurrences": 3 + }, + "0xf9ff95468cb9a0cd57b8542bbc4c148e290ff465": { + "address": "0xf9ff95468cb9a0cd57b8542bbc4c148e290ff465", + "symbol": "THINK", + "decimals": 18, + "name": "THINK Token", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xf9ff95468cb9a0cd57b8542bbc4c148e290ff465.png", + "aggregators": ["CoinMarketCap", "Rubic", "Rango"], + "occurrences": 3 + }, + "0xd073e6341a3aa6c4d94c4f8f20fbd1ede572b0da": { + "address": "0xd073e6341a3aa6c4d94c4f8f20fbd1ede572b0da", + "symbol": "MAK", + "decimals": 18, + "name": "MetaCene", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xd073e6341a3aa6c4d94c4f8f20fbd1ede572b0da.png", + "aggregators": ["CoinMarketCap", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x6967b9a8c0b14849cfe8f9e5732b401433fd2898": { + "address": "0x6967b9a8c0b14849cfe8f9e5732b401433fd2898", + "symbol": "NAKA", + "decimals": 18, + "name": "Naka Go", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x6967b9a8c0b14849cfe8f9e5732b401433fd2898.png", + "aggregators": ["CoinMarketCap", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x226676c9e15be689817f5ae44863f0811181a5ae": { + "address": "0x226676c9e15be689817f5ae44863f0811181a5ae", + "symbol": "DEWA", + "decimals": 9, + "name": "Dewa Go", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x226676c9e15be689817f5ae44863f0811181a5ae.png", + "aggregators": ["CoinGecko", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x3991b07b2951a4300da8c76e7d2c7edde861fef3": { + "address": "0x3991b07b2951a4300da8c76e7d2c7edde861fef3", + "symbol": "UXLINK", + "decimals": 18, + "name": "UXLINK", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x3991b07b2951a4300da8c76e7d2c7edde861fef3.png", + "aggregators": ["CoinGecko", "Rubic", "Rango"], + "occurrences": 3 + }, + "0xebd3f05f77c456d59852da12ac764dc975eca91b": { + "address": "0xebd3f05f77c456d59852da12ac764dc975eca91b", + "symbol": "KORO", + "decimals": 9, + "name": "Koro Go", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xebd3f05f77c456d59852da12ac764dc975eca91b.png", + "aggregators": ["CoinGecko", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x61c8e619ae7c8cbefbcceb9fb718135afb5d0d93": { + "address": "0x61c8e619ae7c8cbefbcceb9fb718135afb5d0d93", + "symbol": "ANGL", + "decimals": 18, + "name": "Angel Token", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x61c8e619ae7c8cbefbcceb9fb718135afb5d0d93.png", + "aggregators": ["CoinMarketCap", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x7b10d50b5885be4c7985a88408265c109bd1eec8": { + "address": "0x7b10d50b5885be4c7985a88408265c109bd1eec8", + "symbol": "TRWA", + "decimals": 18, + "name": "TRWA", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x7b10d50b5885be4c7985a88408265c109bd1eec8.png", + "aggregators": ["CoinMarketCap", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x9f49034409ae6813d2c70ae5117fd23cdff2d190": { + "address": "0x9f49034409ae6813d2c70ae5117fd23cdff2d190", + "symbol": "PRXS", + "decimals": 18, + "name": "Praxis", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x9f49034409ae6813d2c70ae5117fd23cdff2d190.png", + "aggregators": ["CoinGecko", "Rubic", "Rango"], + "occurrences": 3 + }, + "0xb015701c17830aa4a4c96f7bc1a57c3a5edd7c86": { + "address": "0xb015701c17830aa4a4c96f7bc1a57c3a5edd7c86", + "symbol": "MARTIN", + "decimals": 9, + "name": "Martin", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xb015701c17830aa4a4c96f7bc1a57c3a5edd7c86.png", + "aggregators": ["CoinGecko", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x6d44ddba07a9373d665ce636f639e1c46565a349": { + "address": "0x6d44ddba07a9373d665ce636f639e1c46565a349", + "symbol": "FOMO", + "decimals": 18, + "name": "FOMO", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x6d44ddba07a9373d665ce636f639e1c46565a349.png", + "aggregators": ["CoinMarketCap", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x3103cd1602d5fa8f4b9283f9d5a7fa2290795d51": { + "address": "0x3103cd1602d5fa8f4b9283f9d5a7fa2290795d51", + "symbol": "PEPI", + "decimals": 9, + "name": "PEPi", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x3103cd1602d5fa8f4b9283f9d5a7fa2290795d51.png", + "aggregators": ["CoinMarketCap", "Rubic", "Rango"], + "occurrences": 3 + }, + "0xfc60fc0145d7330e5abcfc52af7b043a1ce18e7d": { + "address": "0xfc60fc0145d7330e5abcfc52af7b043a1ce18e7d", + "symbol": "GVNR", + "decimals": 18, + "name": "GVNR", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xfc60fc0145d7330e5abcfc52af7b043a1ce18e7d.png", + "aggregators": ["CoinMarketCap", "Rubic", "Rango"], + "occurrences": 3 + }, + "0xbe7e12b2e128bc955a0130ffb168f031d7dd8d58": { + "address": "0xbe7e12b2e128bc955a0130ffb168f031d7dd8d58", + "symbol": "BOOST", + "decimals": 18, + "name": "Boost", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xbe7e12b2e128bc955a0130ffb168f031d7dd8d58.png", + "aggregators": ["CoinMarketCap", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x1e8e148055cbd5a02ea75eed79da7ce4b91108b9": { + "address": "0x1e8e148055cbd5a02ea75eed79da7ce4b91108b9", + "symbol": "FART", + "decimals": 9, + "name": "FartCoin", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x1e8e148055cbd5a02ea75eed79da7ce4b91108b9.png", + "aggregators": ["CoinGecko", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x696a1012a7f694a6f34a95872f806eda633ea463": { + "address": "0x696a1012a7f694a6f34a95872f806eda633ea463", + "symbol": "SLIPPY", + "decimals": 18, + "name": "SLIPPY", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x696a1012a7f694a6f34a95872f806eda633ea463.png", + "aggregators": ["CoinMarketCap", "Rubic", "Rango"], + "occurrences": 3 + }, + "0xc3f822e94c321dd3ee53ca46b78098ea79b7ec8d": { + "address": "0xc3f822e94c321dd3ee53ca46b78098ea79b7ec8d", + "symbol": "BTCBULL", + "decimals": 18, + "name": "BTC Bull", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xc3f822e94c321dd3ee53ca46b78098ea79b7ec8d.png", + "aggregators": ["CoinMarketCap", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x4ff23cf2804e777c233890119b881cab7fd60652": { + "address": "0x4ff23cf2804e777c233890119b881cab7fd60652", + "symbol": "BABYETH", + "decimals": 9, + "name": "Baby Ethereum", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x4ff23cf2804e777c233890119b881cab7fd60652.png", + "aggregators": ["CoinMarketCap", "Rubic", "Rango"], + "occurrences": 3 + }, + "0xe6f2e92dfb7ac55a13b2056fc0b37dbc9fcee733": { + "address": "0xe6f2e92dfb7ac55a13b2056fc0b37dbc9fcee733", + "symbol": "AMERICA", + "decimals": 9, + "name": "America Party", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xe6f2e92dfb7ac55a13b2056fc0b37dbc9fcee733.png", + "aggregators": ["CoinGecko", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x1b379a79c91a540b2bcd612b4d713f31de1b80cc": { + "address": "0x1b379a79c91a540b2bcd612b4d713f31de1b80cc", + "symbol": "NAORIS", + "decimals": 18, + "name": "Naoris Protocol", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x1b379a79c91a540b2bcd612b4d713f31de1b80cc.png", + "aggregators": ["CoinMarketCap", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x8d33f0ae6d111212d9d64b0821c7cf09e6270c27": { + "address": "0x8d33f0ae6d111212d9d64b0821c7cf09e6270c27", + "symbol": "FOREST", + "decimals": 18, + "name": "FOREST", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x8d33f0ae6d111212d9d64b0821c7cf09e6270c27.png", + "aggregators": ["CoinMarketCap", "Rubic", "Rango"], + "occurrences": 3 + }, + "0xbbcdc8eb044bf661eabfa07b93909a76ebdb1100": { + "address": "0xbbcdc8eb044bf661eabfa07b93909a76ebdb1100", + "symbol": "ELP", + "decimals": 18, + "name": "ELP", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xbbcdc8eb044bf661eabfa07b93909a76ebdb1100.png", + "aggregators": ["CoinMarketCap", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x553f4cb7256d8fc038e91d36cb63fa7c13b624ab": { + "address": "0x553f4cb7256d8fc038e91d36cb63fa7c13b624ab", + "symbol": "TANSSI", + "decimals": 12, + "name": "TANSSI", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x553f4cb7256d8fc038e91d36cb63fa7c13b624ab.png", + "aggregators": ["CoinMarketCap", "Rubic", "Rango"], + "occurrences": 3 + }, + "0xe6423de1f06e3f0af27d3ca776e9446ecbdc354b": { + "address": "0xe6423de1f06e3f0af27d3ca776e9446ecbdc354b", + "symbol": "CTOC", + "decimals": 18, + "name": "CTOC", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xe6423de1f06e3f0af27d3ca776e9446ecbdc354b.png", + "aggregators": ["CoinGecko", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x407eca46ff515cde14410cdc868c7f82e8c4f41d": { + "address": "0x407eca46ff515cde14410cdc868c7f82e8c4f41d", + "symbol": "MARS", + "decimals": 9, + "name": "Mars the hippo", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x407eca46ff515cde14410cdc868c7f82e8c4f41d.png", + "aggregators": ["CoinMarketCap", "Rubic", "Rango"], + "occurrences": 3 + }, + "0xfa63503f9e61fd59cbea137c122fa55c2daff14a": { + "address": "0xfa63503f9e61fd59cbea137c122fa55c2daff14a", + "symbol": "LITAS", + "decimals": 18, + "name": "LITAS", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xfa63503f9e61fd59cbea137c122fa55c2daff14a.png", + "aggregators": ["CoinGecko", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x78cbec65c55f143a9178b63243119806a659d2ef": { + "address": "0x78cbec65c55f143a9178b63243119806a659d2ef", + "symbol": "MINDFAK", + "decimals": 18, + "name": "Mindfak By Matt Furie", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x78cbec65c55f143a9178b63243119806a659d2ef.png", + "aggregators": ["CoinMarketCap", "Rubic", "Rango"], + "occurrences": 3 + }, + "0xba5ed44733953d79717f6269357c77718c8ba5ed": { + "address": "0xba5ed44733953d79717f6269357c77718c8ba5ed", + "symbol": "U", + "decimals": 18, + "name": "U", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xba5ed44733953d79717f6269357c77718c8ba5ed.png", + "aggregators": ["CoinMarketCap", "Rubic", "Rango"], + "occurrences": 3 + }, + "0xccccc74ac972e08a0f4c62e9369576a6f6722002": { + "address": "0xccccc74ac972e08a0f4c62e9369576a6f6722002", + "symbol": "NOBIKO", + "decimals": 9, + "name": "Longcat", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xccccc74ac972e08a0f4c62e9369576a6f6722002.png", + "aggregators": ["CoinMarketCap", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x65b3f4a4694b125ada8f9ebc2b79d6c7d4015d1b": { + "address": "0x65b3f4a4694b125ada8f9ebc2b79d6c7d4015d1b", + "symbol": "STM", + "decimals": 18, + "name": "STM", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x65b3f4a4694b125ada8f9ebc2b79d6c7d4015d1b.png", + "aggregators": ["CoinMarketCap", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x48d41fc014865c32be82c50ee647b6a4bfab38a8": { + "address": "0x48d41fc014865c32be82c50ee647b6a4bfab38a8", + "symbol": "KUMANEENE", + "decimals": 9, + "name": "Kumaneene", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x48d41fc014865c32be82c50ee647b6a4bfab38a8.png", + "aggregators": ["CoinGecko", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x9acb099a6460dead936fe7e591d2c875ae4d84b8": { + "address": "0x9acb099a6460dead936fe7e591d2c875ae4d84b8", + "symbol": "TOKABU", + "decimals": 2, + "name": "Tokabu", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x9acb099a6460dead936fe7e591d2c875ae4d84b8.png", + "aggregators": ["CoinMarketCap", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x99420584706e47b1c5198cd80fef64d09f94adf1": { + "address": "0x99420584706e47b1c5198cd80fef64d09f94adf1", + "symbol": "FORG", + "decimals": 9, + "name": "Forg", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x99420584706e47b1c5198cd80fef64d09f94adf1.png", + "aggregators": ["CoinGecko", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x2328434559f7dec44373822cf68052de0d671b7f": { + "address": "0x2328434559f7dec44373822cf68052de0d671b7f", + "symbol": "SIMON", + "decimals": 9, + "name": "Simon the Gator", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x2328434559f7dec44373822cf68052de0d671b7f.png", + "aggregators": ["CoinMarketCap", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x005e6fd1610302018dcd9caf29b8bc38ff6efd98": { + "address": "0x005e6fd1610302018dcd9caf29b8bc38ff6efd98", + "symbol": "FOX", + "decimals": 9, + "name": "Metafox", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x005e6fd1610302018dcd9caf29b8bc38ff6efd98.png", + "aggregators": ["CoinGecko", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x4f2cef6f39114ade3d8af4020fa1de1d064cadaf": { + "address": "0x4f2cef6f39114ade3d8af4020fa1de1d064cadaf", + "symbol": "HOKK", + "decimals": 18, + "name": "Hokkaidu Inu", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x4f2cef6f39114ade3d8af4020fa1de1d064cadaf.png", + "aggregators": ["CoinMarketCap", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x5bad3b350252b52bc26515e0603c52c0c699a7ad": { + "address": "0x5bad3b350252b52bc26515e0603c52c0c699a7ad", + "symbol": "SHRUB", + "decimals": 9, + "name": "Elon's Hedgehog", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x5bad3b350252b52bc26515e0603c52c0c699a7ad.png", + "aggregators": ["CoinGecko", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x84eaac1b2dc3f84d92ff84c3ec205b1fa74671fc": { + "address": "0x84eaac1b2dc3f84d92ff84c3ec205b1fa74671fc", + "symbol": "CAMP", + "decimals": 18, + "name": "Camp", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x84eaac1b2dc3f84d92ff84c3ec205b1fa74671fc.png", + "aggregators": ["CoinMarketCap", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x2c431766e48ec4a17dc052d9d3fef6b6a9ae8d62": { + "address": "0x2c431766e48ec4a17dc052d9d3fef6b6a9ae8d62", + "symbol": "RBR", + "decimals": 18, + "name": "Robora", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x2c431766e48ec4a17dc052d9d3fef6b6a9ae8d62.png", + "aggregators": ["CoinMarketCap", "Rubic", "Rango"], + "occurrences": 3 + }, + "0xbd821d84770b65f679a47452367258cf86579d02": { + "address": "0xbd821d84770b65f679a47452367258cf86579d02", + "symbol": "KOHAKU", + "decimals": 9, + "name": "KOHAKU", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xbd821d84770b65f679a47452367258cf86579d02.png", + "aggregators": ["CoinGecko", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x9ebf91b8d6ff68aa05545301a3d0984eaee54a03": { + "address": "0x9ebf91b8d6ff68aa05545301a3d0984eaee54a03", + "symbol": "APESTR", + "decimals": 18, + "name": "ApeStrategy", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x9ebf91b8d6ff68aa05545301a3d0984eaee54a03.png", + "aggregators": ["CoinGecko", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x6bcba7cd81a5f12c10ca1bf9b36761cc382658e8": { + "address": "0x6bcba7cd81a5f12c10ca1bf9b36761cc382658e8", + "symbol": "BIRBSTR", + "decimals": 18, + "name": "BirbStrategy", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x6bcba7cd81a5f12c10ca1bf9b36761cc382658e8.png", + "aggregators": ["CoinGecko", "Rubic", "Rango"], + "occurrences": 3 + }, + "0xc9b2c00f31b210fcea1242d91307a5b1e3b2be68": { + "address": "0xc9b2c00f31b210fcea1242d91307a5b1e3b2be68", + "symbol": "MEEBSTR", + "decimals": 18, + "name": "MeebitStrategy", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xc9b2c00f31b210fcea1242d91307a5b1e3b2be68.png", + "aggregators": ["CoinGecko", "Rubic", "Rango"], + "occurrences": 3 + }, + "0xb3d6e9e142a785ea8a4f0050fee73bcc3438c5c5": { + "address": "0xb3d6e9e142a785ea8a4f0050fee73bcc3438c5c5", + "symbol": "PUDGYSTR", + "decimals": 18, + "name": "PudgyStrategy", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xb3d6e9e142a785ea8a4f0050fee73bcc3438c5c5.png", + "aggregators": ["CoinGecko", "Rubic", "Rango"], + "occurrences": 3 + }, + "0xdf4c0665e67cf0698447ca9e454ed56cc6f2df1e": { + "address": "0xdf4c0665e67cf0698447ca9e454ed56cc6f2df1e", + "symbol": "T6900", + "decimals": 18, + "name": "Token6900", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xdf4c0665e67cf0698447ca9e454ed56cc6f2df1e.png", + "aggregators": ["CoinMarketCap", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x8680acfacb3fed5408764343fc7e8358e8c85a4c": { + "address": "0x8680acfacb3fed5408764343fc7e8358e8c85a4c", + "symbol": "DICKSTR", + "decimals": 18, + "name": "DickStrategy", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x8680acfacb3fed5408764343fc7e8358e8c85a4c.png", + "aggregators": ["CoinGecko", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x742fd09cbbeb1ec4e3d6404dfc959a324deb50e6": { + "address": "0x742fd09cbbeb1ec4e3d6404dfc959a324deb50e6", + "symbol": "SQUIGSTR", + "decimals": 18, + "name": "SquiggleStrategy", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x742fd09cbbeb1ec4e3d6404dfc959a324deb50e6.png", + "aggregators": ["CoinGecko", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x8d548dbc4c689cfa5e5925d52b9ac358b3913653": { + "address": "0x8d548dbc4c689cfa5e5925d52b9ac358b3913653", + "symbol": "DOGENARII", + "decimals": 12, + "name": "DOGENARII", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x8d548dbc4c689cfa5e5925d52b9ac358b3913653.png", + "aggregators": ["CoinMarketCap", "Rubic", "Rango"], + "occurrences": 3 + }, + "0xd7075f79df19c279ba5a9eb04a00474c43a3d73e": { + "address": "0xd7075f79df19c279ba5a9eb04a00474c43a3d73e", + "symbol": "DAIFUKU", + "decimals": 9, + "name": "Daifuku", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xd7075f79df19c279ba5a9eb04a00474c43a3d73e.png", + "aggregators": ["CoinMarketCap", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x8db036f007841c21b97eff7dfc2c187241d59baf": { + "address": "0x8db036f007841c21b97eff7dfc2c187241d59baf", + "symbol": "KONG", + "decimals": 18, + "name": "CyberKongz", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x8db036f007841c21b97eff7dfc2c187241d59baf.png", + "aggregators": ["CoinGecko", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x48ab4e39ac59f4e88974804b04a991b3a402717f": { + "address": "0x48ab4e39ac59f4e88974804b04a991b3a402717f", + "symbol": "FDIT", + "decimals": 18, + "name": "FDIT", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x48ab4e39ac59f4e88974804b04a991b3a402717f.png", + "aggregators": ["CoinGecko", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x2fd23a21c52fff0535328a7177da1fb31b8a819e": { + "address": "0x2fd23a21c52fff0535328a7177da1fb31b8a819e", + "symbol": "SΞR", + "decimals": 18, + "name": "Strategic ETH Reserve", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x2fd23a21c52fff0535328a7177da1fb31b8a819e.png", + "aggregators": ["CoinGecko", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x12b004719fb632f1e7c010c6f5d6009fb4258442": { + "address": "0x12b004719fb632f1e7c010c6f5d6009fb4258442", + "symbol": "LIUSD-1W", + "decimals": 18, + "name": "LIUSD-1W", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x12b004719fb632f1e7c010c6f5d6009fb4258442.png", + "aggregators": ["CoinGecko", "Rubic", "Rango"], + "occurrences": 3 + }, + "0xd70030cb861be7a7788f699e4f5ca8d51b31102d": { + "address": "0xd70030cb861be7a7788f699e4f5ca8d51b31102d", + "symbol": "STAX", + "decimals": 9, + "name": "STAX", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xd70030cb861be7a7788f699e4f5ca8d51b31102d.png", + "aggregators": ["CoinMarketCap", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x92cedfdbce6e87b595e4a529afa2905480368af4": { + "address": "0x92cedfdbce6e87b595e4a529afa2905480368af4", + "symbol": "TOADSTR", + "decimals": 18, + "name": "ToadzStrategy", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x92cedfdbce6e87b595e4a529afa2905480368af4.png", + "aggregators": ["CoinGecko", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x936facdf10c8c36294e7b9d28345255539d81bc7": { + "address": "0x936facdf10c8c36294e7b9d28345255539d81bc7", + "symbol": "ROCK.RETH", + "decimals": 18, + "name": "ROCK.RETH", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x936facdf10c8c36294e7b9d28345255539d81bc7.png", + "aggregators": ["CoinGecko", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x7575c2e267a1a2ff98ac65bc26d40c948989031b": { + "address": "0x7575c2e267a1a2ff98ac65bc26d40c948989031b", + "symbol": "INC", + "decimals": 18, + "name": "INC", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x7575c2e267a1a2ff98ac65bc26d40c948989031b.png", + "aggregators": ["CoinMarketCap", "Rubic", "Rango"], + "occurrences": 3 + }, + "0xaeb681b69e5094e04d11bcef51a71358a374c3ed": { + "address": "0xaeb681b69e5094e04d11bcef51a71358a374c3ed", + "symbol": "BMNRX", + "decimals": 18, + "name": "Bitmine xStock", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xaeb681b69e5094e04d11bcef51a71358a374c3ed.png", + "aggregators": ["CoinGecko", "Rubic", "Rango"], + "occurrences": 3 + }, + "0xd0cc2b0efb168bfe1f94a948d8df70fa10257196": { + "address": "0xd0cc2b0efb168bfe1f94a948d8df70fa10257196", + "symbol": "VIBESTR", + "decimals": 18, + "name": "VIBESTR", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xd0cc2b0efb168bfe1f94a948d8df70fa10257196.png", + "aggregators": ["CoinGecko", "Rubic", "Rango"], + "occurrences": 3 + }, + "0xa37db5456b5938aa50b33575ae2eb8048ca5959b": { + "address": "0xa37db5456b5938aa50b33575ae2eb8048ca5959b", + "symbol": "DOP", + "decimals": 18, + "name": "DOP", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xa37db5456b5938aa50b33575ae2eb8048ca5959b.png", + "aggregators": ["CoinMarketCap", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x632f25855c7f98af1c036724fd3dc93d6571932f": { + "address": "0x632f25855c7f98af1c036724fd3dc93d6571932f", + "symbol": "BABYMANYU", + "decimals": 9, + "name": "BabyManyu", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x632f25855c7f98af1c036724fd3dc93d6571932f.png", + "aggregators": ["CoinGecko", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x199e2cfaf8b4f2cc5423971ef3749d1c89cf815c": { + "address": "0x199e2cfaf8b4f2cc5423971ef3749d1c89cf815c", + "symbol": "OPAL", + "decimals": 18, + "name": "OPAL", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x199e2cfaf8b4f2cc5423971ef3749d1c89cf815c.png", + "aggregators": ["CoinMarketCap", "Rubic", "Rango"], + "occurrences": 3 + }, + "0xae53d5bdc95e83e956a2f29771b18175abb8273f": { + "address": "0xae53d5bdc95e83e956a2f29771b18175abb8273f", + "symbol": "POFU", + "decimals": 18, + "name": "POFU", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xae53d5bdc95e83e956a2f29771b18175abb8273f.png", + "aggregators": ["CoinMarketCap", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x13239c268beddd88ad0cb02050d3ff6a9d00de6d": { + "address": "0x13239c268beddd88ad0cb02050d3ff6a9d00de6d", + "symbol": "BOS", + "decimals": 18, + "name": "BOS", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x13239c268beddd88ad0cb02050d3ff6a9d00de6d.png", + "aggregators": ["CoinMarketCap", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x249130f5e2dd4cf278180c0df8273f3592ad1247": { + "address": "0x249130f5e2dd4cf278180c0df8273f3592ad1247", + "symbol": "DMT-NAT", + "decimals": 0, + "name": "dmt-nat", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x249130f5e2dd4cf278180c0df8273f3592ad1247.png", + "aggregators": ["CoinGecko", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x58412ae274f2764b71c66315d97662d47d930d94": { + "address": "0x58412ae274f2764b71c66315d97662d47d930d94", + "symbol": "NEX", + "decimals": 18, + "name": "NEX", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x58412ae274f2764b71c66315d97662d47d930d94.png", + "aggregators": ["CoinMarketCap", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x00000000000050806673b532d7486ac114c1de3f": { + "address": "0x00000000000050806673b532d7486ac114c1de3f", + "symbol": "LO0P", + "decimals": 18, + "name": "LO0P", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x00000000000050806673b532d7486ac114c1de3f.png", + "aggregators": ["CoinGecko", "Rubic", "Rango"], + "occurrences": 3 + }, + "0xcb20b537f5df50bccc00fe6a8eb4d57b14a89a03": { + "address": "0xcb20b537f5df50bccc00fe6a8eb4d57b14a89a03", + "symbol": "ORTA", + "decimals": 18, + "name": "Orta Chain", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xcb20b537f5df50bccc00fe6a8eb4d57b14a89a03.png", + "aggregators": ["CoinMarketCap", "Rubic", "Rango"], + "occurrences": 3 + }, + "0xc07e1300dc138601fa6b0b59f8d0fa477e690589": { + "address": "0xc07e1300dc138601fa6b0b59f8d0fa477e690589", + "symbol": "Q", + "decimals": 18, + "name": "Q", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xc07e1300dc138601fa6b0b59f8d0fa477e690589.png", + "aggregators": ["CoinMarketCap", "Rubic", "Rango"], + "occurrences": 3 + }, + "0xfccd6fbca272b4cc11069402f4123b070b7838f9": { + "address": "0xfccd6fbca272b4cc11069402f4123b070b7838f9", + "symbol": "KIMCHI", + "decimals": 9, + "name": "Kimchi Coin", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xfccd6fbca272b4cc11069402f4123b070b7838f9.png", + "aggregators": ["CoinMarketCap", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x4933a85b5b5466fbaf179f72d3de273c287ec2c2": { + "address": "0x4933a85b5b5466fbaf179f72d3de273c287ec2c2", + "symbol": "EURAU", + "decimals": 6, + "name": "AllUnity EUR", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x4933a85b5b5466fbaf179f72d3de273c287ec2c2.png", + "aggregators": ["CoinMarketCap", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x4647e1fe715c9e23959022c2416c71867f5a6e80": { + "address": "0x4647e1fe715c9e23959022c2416c71867f5a6e80", + "symbol": "WOCT", + "decimals": 6, + "name": "Wrapped Octra", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x4647e1fe715c9e23959022c2416c71867f5a6e80.png", + "aggregators": ["Metamask", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x999b49c0d1612e619a4a4f6280733184da025108": { + "address": "0x999b49c0d1612e619a4a4f6280733184da025108", + "symbol": "SLOP", + "decimals": 18, + "name": "SLOP", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x999b49c0d1612e619a4a4f6280733184da025108.png", + "aggregators": ["CoinGecko", "Rubic", "Rango"], + "occurrences": 3 + }, + "0xe3872dd4eba50598c54b2aa21b04c71fc37b000b": { + "address": "0xe3872dd4eba50598c54b2aa21b04c71fc37b000b", + "symbol": "NEXI", + "decimals": 18, + "name": "Nexira DAEP", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xe3872dd4eba50598c54b2aa21b04c71fc37b000b.png", + "aggregators": ["CoinGecko", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x21f5b2bacb67c94aa0982ce7428f7d1b3c9ceb53": { + "address": "0x21f5b2bacb67c94aa0982ce7428f7d1b3c9ceb53", + "symbol": "SNORT", + "decimals": 18, + "name": "Snorter", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x21f5b2bacb67c94aa0982ce7428f7d1b3c9ceb53.png", + "aggregators": ["CoinMarketCap", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x0dc4f92879b7670e5f4e4e6e3c801d229129d90d": { + "address": "0x0dc4f92879b7670e5f4e4e6e3c801d229129d90d", + "symbol": "WARS", + "decimals": 18, + "name": "Argentine Peso", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x0dc4f92879b7670e5f4e4e6e3c801d229129d90d.png", + "aggregators": ["Metamask", "Rubic"], + "occurrences": 2 + }, + "0x76e46becff74f5f1d3ef96d7574230aeba73e5d8": { + "address": "0x76e46becff74f5f1d3ef96d7574230aeba73e5d8", + "symbol": "YEE", + "decimals": 2, + "name": "YEE", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x76e46becff74f5f1d3ef96d7574230aeba73e5d8.png", + "aggregators": ["CoinMarketCap", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x6112c3509a8a787df576028450febb3786a2274d": { + "address": "0x6112c3509a8a787df576028450febb3786a2274d", + "symbol": "AXGT", + "decimals": 18, + "name": "AxonDAO Governance Token", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x6112c3509a8a787df576028450febb3786a2274d.png", + "aggregators": ["Metamask", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x45510db2481353178db5abb87c96805fadad0724": { + "address": "0x45510db2481353178db5abb87c96805fadad0724", + "symbol": "FTMX", + "decimals": 18, + "name": "FUCK THE MATRIX", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x45510db2481353178db5abb87c96805fadad0724.png", + "aggregators": ["CoinMarketCap", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x3522513e5f146a2006e2901b05f16b2821485e19": { + "address": "0x3522513e5f146a2006e2901b05f16b2821485e19", + "symbol": "AMDX", + "decimals": 18, + "name": "AMD xStock", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x3522513e5f146a2006e2901b05f16b2821485e19.png", + "aggregators": ["CoinGecko", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x6d5edeebbc6a4099eb8bb289eb3b80d799f7b28c": { + "address": "0x6d5edeebbc6a4099eb8bb289eb3b80d799f7b28c", + "symbol": "VTX", + "decimals": 18, + "name": "Vanguard Total World xStock", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x6d5edeebbc6a4099eb8bb289eb3b80d799f7b28c.png", + "aggregators": ["CoinGecko", "Rubic", "Rango"], + "occurrences": 3 + }, + "0xdadfb355c6110eda0908740d52c834d6c2bcddc7": { + "address": "0xdadfb355c6110eda0908740d52c834d6c2bcddc7", + "symbol": "IWMX", + "decimals": 18, + "name": "Russell 2000 xStock", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xdadfb355c6110eda0908740d52c834d6c2bcddc7.png", + "aggregators": ["CoinGecko", "Rubic", "Rango"], + "occurrences": 3 + }, + "0xca5e50710f656f2e537ce2fc8504db6e24ed3515": { + "address": "0xca5e50710f656f2e537ce2fc8504db6e24ed3515", + "symbol": "XCL", + "decimals": 18, + "name": "Xcellar", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xca5e50710f656f2e537ce2fc8504db6e24ed3515.png", + "aggregators": ["CoinMarketCap", "Rubic", "Rango"], + "occurrences": 3 + }, + "0xa776a95223c500e81cb0937b291140ff550ac3e4": { + "address": "0xa776a95223c500e81cb0937b291140ff550ac3e4", + "symbol": "GRAY", + "decimals": 18, + "name": "Gradient", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xa776a95223c500e81cb0937b291140ff550ac3e4.png", + "aggregators": ["CoinMarketCap", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x4b6d60361faebf0cfe06c442cd0eb151bc261a7a": { + "address": "0x4b6d60361faebf0cfe06c442cd0eb151bc261a7a", + "symbol": "MSIA", + "decimals": 18, + "name": "Messiah", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x4b6d60361faebf0cfe06c442cd0eb151bc261a7a.png", + "aggregators": ["CoinMarketCap", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x4f33acf823e6eeb697180d553ce0c710124c8d59": { + "address": "0x4f33acf823e6eeb697180d553ce0c710124c8d59", + "symbol": "SPKCC", + "decimals": 5, + "name": "SPKCC", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x4f33acf823e6eeb697180d553ce0c710124c8d59.png", + "aggregators": ["CoinGecko", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x0511df77e420c9c37b065ddb7973d0f81430a092": { + "address": "0x0511df77e420c9c37b065ddb7973d0f81430a092", + "symbol": "ENX", + "decimals": 18, + "name": "Enigma", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x0511df77e420c9c37b065ddb7973d0f81430a092.png", + "aggregators": ["CoinMarketCap", "Rubic", "Rango"], + "occurrences": 3 + }, + "0xe95ab205e333443d7970336d5fd827ef9ed97608": { + "address": "0xe95ab205e333443d7970336d5fd827ef9ed97608", + "symbol": "TONXX", + "decimals": 18, + "name": "TON xStock", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xe95ab205e333443d7970336d5fd827ef9ed97608.png", + "aggregators": ["CoinGecko", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x3910210d206295ca14f30e493607c40abc0d90aa": { + "address": "0x3910210d206295ca14f30e493607c40abc0d90aa", + "symbol": "BURGLAR", + "decimals": 9, + "name": "Burglar", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x3910210d206295ca14f30e493607c40abc0d90aa.png", + "aggregators": ["CoinGecko", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x87acfa3fd7a6e0d48677d070644d76905c2bdc00": { + "address": "0x87acfa3fd7a6e0d48677d070644d76905c2bdc00", + "symbol": "SPACE", + "decimals": 18, + "name": "SPACE", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x87acfa3fd7a6e0d48677d070644d76905c2bdc00.png", + "aggregators": ["CoinMarketCap", "Rubic", "Rango"], + "occurrences": 3 + }, + "0xd1bb58e1f2ee11ff62aea1225a6f210467863031": { + "address": "0xd1bb58e1f2ee11ff62aea1225a6f210467863031", + "symbol": "WLF", + "decimals": 18, + "name": "WLF TOKEN", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xd1bb58e1f2ee11ff62aea1225a6f210467863031.png", + "aggregators": ["CoinMarketCap", "Rubic", "Rango"], + "occurrences": 3 + }, + "0xfc8dcfca8a37a855e352098af205b3a537b6b026": { + "address": "0xfc8dcfca8a37a855e352098af205b3a537b6b026", + "symbol": "PLLD", + "decimals": 18, + "name": "PLLD", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xfc8dcfca8a37a855e352098af205b3a537b6b026.png", + "aggregators": ["CoinGecko", "Rubic", "Rango"], + "occurrences": 3 + }, + "0xd687759f35bb747a29246a4b9495c8f52c49e00c": { + "address": "0xd687759f35bb747a29246a4b9495c8f52c49e00c", + "symbol": "AUDX", + "decimals": 18, + "name": "AUDX", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xd687759f35bb747a29246a4b9495c8f52c49e00c.png", + "aggregators": ["CoinMarketCap", "Rubic", "Rango"], + "occurrences": 3 + }, + "0xfab99fcf605fd8f4593edb70a43ba56542777777": { + "address": "0xfab99fcf605fd8f4593edb70a43ba56542777777", + "symbol": "ZBT", + "decimals": 18, + "name": "ZBT", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xfab99fcf605fd8f4593edb70a43ba56542777777.png", + "aggregators": ["CoinMarketCap", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x4ea40dcee961675683e0a2e1721bd49cb9bca913": { + "address": "0x4ea40dcee961675683e0a2e1721bd49cb9bca913", + "symbol": "USDR", + "decimals": 18, + "name": "USDR", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x4ea40dcee961675683e0a2e1721bd49cb9bca913.png", + "aggregators": ["CoinGecko", "Rubic", "Rango"], + "occurrences": 3 + }, + "0xf6d87e523512704c29e9b7ca3e9e6226bdce3ea1": { + "address": "0xf6d87e523512704c29e9b7ca3e9e6226bdce3ea1", + "symbol": "SCHFX", + "decimals": 18, + "name": "Schwab International Equity xStock", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xf6d87e523512704c29e9b7ca3e9e6226bdce3ea1.png", + "aggregators": ["CoinGecko", "Rubic", "Rango"], + "occurrences": 3 + }, + "0xbbfc8683c8fe8cf73777fede7ab9574935fea0a4": { + "address": "0xbbfc8683c8fe8cf73777fede7ab9574935fea0a4", + "symbol": "EARNETH", + "decimals": 18, + "name": "earnETH", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xbbfc8683c8fe8cf73777fede7ab9574935fea0a4.png", + "aggregators": ["Metamask", "Rubic"], + "occurrences": 2 + }, + "0x19222eb4bb885ad990d8df2a2ad3f6e64cbebf00": { + "address": "0x19222eb4bb885ad990d8df2a2ad3f6e64cbebf00", + "symbol": "AYYLIEN", + "decimals": 18, + "name": "Ayy Lmao", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x19222eb4bb885ad990d8df2a2ad3f6e64cbebf00.png", + "aggregators": ["CoinGecko", "Rubic", "Rango"], + "occurrences": 3 + }, + "0xe430a5152d594e16344a28a04b7e40c3f8450838": { + "address": "0xe430a5152d594e16344a28a04b7e40c3f8450838", + "symbol": "BASTEROID", + "decimals": 2, + "name": "Baby Asteroid", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xe430a5152d594e16344a28a04b7e40c3f8450838.png", + "aggregators": ["CoinGecko", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x041ff0e49f6f774e7dc7bd10ee4a14c00b1d80b2": { + "address": "0x041ff0e49f6f774e7dc7bd10ee4a14c00b1d80b2", + "symbol": "ASE", + "decimals": 18, + "name": "Asentum", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x041ff0e49f6f774e7dc7bd10ee4a14c00b1d80b2.png", + "aggregators": ["CoinMarketCap", "Rubic", "Rango"], + "occurrences": 3 + }, + "0xfc9d98cdb3529f32cd7fb02d175547641e145b29": { + "address": "0xfc9d98cdb3529f32cd7fb02d175547641e145b29", + "symbol": "WORM", + "decimals": 18, + "name": "WORM", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xfc9d98cdb3529f32cd7fb02d175547641e145b29.png", + "aggregators": ["CoinGecko", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x196c20da81fbc324ecdf55501e95ce9f0bd84d14": { + "address": "0x196c20da81fbc324ecdf55501e95ce9f0bd84d14", + "symbol": "DOT", + "decimals": 10, + "name": "DOT", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x196c20da81fbc324ecdf55501e95ce9f0bd84d14.png", + "aggregators": ["CoinGecko", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x6a668332825450acd2e449372057d31b3de16a1e": { + "address": "0x6a668332825450acd2e449372057d31b3de16a1e", + "symbol": "IEMGX", + "decimals": 18, + "name": "Core MSCI Emerging Markets xStock", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x6a668332825450acd2e449372057d31b3de16a1e.png", + "aggregators": ["CoinGecko", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x38e0445308e7fcd5230f2df6b52b36dd4ff313b6": { + "address": "0x38e0445308e7fcd5230f2df6b52b36dd4ff313b6", + "symbol": "STRKX", + "decimals": 18, + "name": "Strategy PP Fixed xStock", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x38e0445308e7fcd5230f2df6b52b36dd4ff313b6.png", + "aggregators": ["CoinGecko", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x2a49e6146fb9aad418943f77c79da6c371514889": { + "address": "0x2a49e6146fb9aad418943f77c79da6c371514889", + "symbol": "NOORUNG", + "decimals": 9, + "name": "마라도의 파수꾼 (The Guardian of Marado)", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x2a49e6146fb9aad418943f77c79da6c371514889.png", + "aggregators": ["CoinGecko", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x3e76dd57e649a263a532cc9bcc58b32a065fb2a4": { + "address": "0x3e76dd57e649a263a532cc9bcc58b32a065fb2a4", + "symbol": "ACN", + "decimals": 18, + "name": "AITECH Cloud Network", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x3e76dd57e649a263a532cc9bcc58b32a065fb2a4.png", + "aggregators": ["CoinMarketCap", "Rubic", "Rango"], + "occurrences": 3 + }, + "0xf8750b54d86be7ae9e32b4a0c826811198d63313": { + "address": "0xf8750b54d86be7ae9e32b4a0c826811198d63313", + "symbol": "USDX", + "decimals": 18, + "name": "USDX", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xf8750b54d86be7ae9e32b4a0c826811198d63313.png", + "aggregators": ["CoinGecko", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x6f0066f9df5abf780cfc69ebe50b71fc4cdb08b0": { + "address": "0x6f0066f9df5abf780cfc69ebe50b71fc4cdb08b0", + "symbol": "DANKDOGE", + "decimals": 9, + "name": "DANK DOGE", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x6f0066f9df5abf780cfc69ebe50b71fc4cdb08b0.png", + "aggregators": ["CoinGecko", "Rubic", "Rango"], + "occurrences": 3 + }, + "0xfabd8d91c9c0cd3f852466bada03673918de5284": { + "address": "0xfabd8d91c9c0cd3f852466bada03673918de5284", + "symbol": "我的刀盾", + "decimals": 18, + "name": "What the dog doing?", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xfabd8d91c9c0cd3f852466bada03673918de5284.png", + "aggregators": ["CoinGecko", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x0a26c80be4e060e688d7c23addb92cbb5d2c9eca": { + "address": "0x0a26c80be4e060e688d7c23addb92cbb5d2c9eca", + "symbol": "NOX", + "decimals": 18, + "name": "NONOS", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x0a26c80be4e060e688d7c23addb92cbb5d2c9eca.png", + "aggregators": ["CoinGecko", "Rubic", "Rango"], + "occurrences": 3 + }, + "0xcf5104d094e3864cfcbda43b82e1cefd26a016eb": { + "address": "0xcf5104d094e3864cfcbda43b82e1cefd26a016eb", + "symbol": "H", + "decimals": 18, + "name": "H", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xcf5104d094e3864cfcbda43b82e1cefd26a016eb.png", + "aggregators": ["CoinMarketCap", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x4ce1ac8f43e0e5bd7a346a98af777bf8fbea1981": { + "address": "0x4ce1ac8f43e0e5bd7a346a98af777bf8fbea1981", + "symbol": "EARNUSD", + "decimals": 18, + "name": "earnUSD", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x4ce1ac8f43e0e5bd7a346a98af777bf8fbea1981.png", + "aggregators": ["Metamask", "Rubic"], + "occurrences": 2 + }, + "0xb3a0f70c913aa04404bd177be9e20b47613830b6": { + "address": "0xb3a0f70c913aa04404bd177be9e20b47613830b6", + "symbol": "AIB", + "decimals": 9, + "name": "America is Back", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xb3a0f70c913aa04404bd177be9e20b47613830b6.png", + "aggregators": ["CoinGecko", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x3009b6833f8925b7985c2408c49160dd1ab317ca": { + "address": "0x3009b6833f8925b7985c2408c49160dd1ab317ca", + "symbol": "RIZO", + "decimals": 9, + "name": "Haha Yes Hedgehog", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x3009b6833f8925b7985c2408c49160dd1ab317ca.png", + "aggregators": ["CoinMarketCap", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x609e79a9fb9a71655b017f637a962b9962f4a9fc": { + "address": "0x609e79a9fb9a71655b017f637a962b9962f4a9fc", + "symbol": "OXN", + "decimals": 18, + "name": "Orexn", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x609e79a9fb9a71655b017f637a962b9962f4a9fc.png", + "aggregators": ["CoinGecko", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x214151022c2a5e380ab80cdac31f23ae554a7345": { + "address": "0x214151022c2a5e380ab80cdac31f23ae554a7345", + "symbol": "CRWDX", + "decimals": 18, + "name": "CrowdStrike xStock", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x214151022c2a5e380ab80cdac31f23ae554a7345.png", + "aggregators": ["CoinGecko", "Rubic", "Rango"], + "occurrences": 3 + }, + "0xd76f5faf6888e24d9f04bf92a0c8b921fe4390e0": { + "address": "0xd76f5faf6888e24d9f04bf92a0c8b921fe4390e0", + "symbol": "WBRL", + "decimals": 18, + "name": "Brazilian Real", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xd76f5faf6888e24d9f04bf92a0c8b921fe4390e0.png", + "aggregators": ["Metamask", "Rubic"], + "occurrences": 2 + }, + "0x7cf9a80db3b29ee8efe3710aadb7b95270572d47": { + "address": "0x7cf9a80db3b29ee8efe3710aadb7b95270572d47", + "symbol": "NIL", + "decimals": 18, + "name": "Nillion", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x7cf9a80db3b29ee8efe3710aadb7b95270572d47.png", + "aggregators": ["CoinMarketCap", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x66a5cfb2e9c529f14fe6364ad1075df3a649c0a5": { + "address": "0x66a5cfb2e9c529f14fe6364ad1075df3a649c0a5", + "symbol": "ZK", + "decimals": 18, + "name": "ZK", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x66a5cfb2e9c529f14fe6364ad1075df3a649c0a5.png", + "aggregators": ["CoinGecko", "Rubic", "Rango"], + "occurrences": 3 + }, + "0xb253ade07051c71be64c235f38fdd5db6753f3bd": { + "address": "0xb253ade07051c71be64c235f38fdd5db6753f3bd", + "symbol": "GAPPY", + "decimals": 18, + "name": "Gap Tooth Lizard", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xb253ade07051c71be64c235f38fdd5db6753f3bd.png", + "aggregators": ["CoinGecko", "Rubic", "Rango"], + "occurrences": 3 + }, + "0xbee6b69345f376598fe16abd5592c6f844825e66": { + "address": "0xbee6b69345f376598fe16abd5592c6f844825e66", + "symbol": "OPENX", + "decimals": 18, + "name": "OPEN xStock", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xbee6b69345f376598fe16abd5592c6f844825e66.png", + "aggregators": ["CoinGecko", "Rubic", "Rango"], + "occurrences": 3 + }, + "0xd05001db979ff2f1a3b2105875d3454e90dd2961": { + "address": "0xd05001db979ff2f1a3b2105875d3454e90dd2961", + "symbol": "SUP", + "decimals": 18, + "name": "Superfluid Token", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xd05001db979ff2f1a3b2105875d3454e90dd2961.png", + "aggregators": ["Metamask", "Rubic", "Rango"], + "occurrences": 3 + }, + "0xe90fe2de4a415ad48b6dcec08ba6ae98231948ac": { + "address": "0xe90fe2de4a415ad48b6dcec08ba6ae98231948ac", + "symbol": "TREVEE", + "decimals": 18, + "name": "TREVEE", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xe90fe2de4a415ad48b6dcec08ba6ae98231948ac.png", + "aggregators": ["CoinGecko", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x69b1ac639c0153b8eae75e4c19a176d07071683c": { + "address": "0x69b1ac639c0153b8eae75e4c19a176d07071683c", + "symbol": "XAVIER", + "decimals": 18, + "name": "Xavier: Renegade Angel", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x69b1ac639c0153b8eae75e4c19a176d07071683c.png", + "aggregators": ["CoinMarketCap", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x00f3c42833c3170159af4e92dbb451fb3f708917": { + "address": "0x00f3c42833c3170159af4e92dbb451fb3f708917", + "symbol": "ICP", + "decimals": 8, + "name": "Internet Computer", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x00f3c42833c3170159af4e92dbb451fb3f708917.png", + "aggregators": ["CoinMarketCap", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x521860bb5df5468358875266b89bfe90d990c6e7": { + "address": "0x521860bb5df5468358875266b89bfe90d990c6e7", + "symbol": "DFDVX", + "decimals": 18, + "name": "DFDV xStock", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x521860bb5df5468358875266b89bfe90d990c6e7.png", + "aggregators": ["CoinGecko", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x6944e1df6bf5972305f9ab25df47ef10de01bcc8": { + "address": "0x6944e1df6bf5972305f9ab25df47ef10de01bcc8", + "symbol": "UB", + "decimals": 18, + "name": "UB", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x6944e1df6bf5972305f9ab25df47ef10de01bcc8.png", + "aggregators": ["CoinMarketCap", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x1eef208926667594e5136e89d0e9dd6907959197": { + "address": "0x1eef208926667594e5136e89d0e9dd6907959197", + "symbol": "PEAQ", + "decimals": 18, + "name": "PEAQ", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x1eef208926667594e5136e89d0e9dd6907959197.png", + "aggregators": ["CoinMarketCap", "Rubic", "Rango"], + "occurrences": 3 + }, + "0xa0c56a8c0692bd10b3fa8f8ba79cf5332b7107f9": { + "address": "0xa0c56a8c0692bd10b3fa8f8ba79cf5332b7107f9", + "symbol": "MERL", + "decimals": 18, + "name": "MERL", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xa0c56a8c0692bd10b3fa8f8ba79cf5332b7107f9.png", + "aggregators": ["CoinMarketCap", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x4cbf89ed7bb30b8a860fa86d3c96e9c72931299b": { + "address": "0x4cbf89ed7bb30b8a860fa86d3c96e9c72931299b", + "symbol": "TBLLX", + "decimals": 18, + "name": "TBLL xStock", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x4cbf89ed7bb30b8a860fa86d3c96e9c72931299b.png", + "aggregators": ["CoinGecko", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x1b0f6590d21dc02b92ad3a7d00f8884dc4f1aed9": { + "address": "0x1b0f6590d21dc02b92ad3a7d00f8884dc4f1aed9", + "symbol": "SOMI", + "decimals": 18, + "name": "Somnia", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x1b0f6590d21dc02b92ad3a7d00f8884dc4f1aed9.png", + "aggregators": ["Metamask", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x167a6375da1efc4a5be0f470e73ecefd66245048": { + "address": "0x167a6375da1efc4a5be0f470e73ecefd66245048", + "symbol": "UNHX", + "decimals": 18, + "name": "UnitedHealth xStock", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x167a6375da1efc4a5be0f470e73ecefd66245048.png", + "aggregators": ["CoinGecko", "Rubic", "Rango"], + "occurrences": 3 + }, + "0xeedb0273c5af792745180e9ff568cd01550ffa13": { + "address": "0xeedb0273c5af792745180e9ff568cd01550ffa13", + "symbol": "XOMX", + "decimals": 18, + "name": "Exxon Mobil xStock", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xeedb0273c5af792745180e9ff568cd01550ffa13.png", + "aggregators": ["CoinGecko", "Rubic", "Rango"], + "occurrences": 3 + }, + "0xdb0482cfad4789798623e64b15eeba01b16e917c": { + "address": "0xdb0482cfad4789798623e64b15eeba01b16e917c", + "symbol": "JNJX", + "decimals": 18, + "name": "Johnson & Johnson xStock", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xdb0482cfad4789798623e64b15eeba01b16e917c.png", + "aggregators": ["CoinGecko", "Rubic", "Rango"], + "occurrences": 3 + }, + "0xd9fc3e075d45254a1d834fea18af8041207dea0a": { + "address": "0xd9fc3e075d45254a1d834fea18af8041207dea0a", + "symbol": "JPMX", + "decimals": 18, + "name": "JPMorgan Chase xStock", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xd9fc3e075d45254a1d834fea18af8041207dea0a.png", + "aggregators": ["CoinGecko", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x2363fd1235c1b6d3a5088ddf8df3a0b3a30c5293": { + "address": "0x2363fd1235c1b6d3a5088ddf8df3a0b3a30c5293", + "symbol": "VX", + "decimals": 18, + "name": "Visa xStock", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x2363fd1235c1b6d3a5088ddf8df3a0b3a30c5293.png", + "aggregators": ["CoinGecko", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x19c41ea77b34bbdee61c3a87a75d1abda2ed0be4": { + "address": "0x19c41ea77b34bbdee61c3a87a75d1abda2ed0be4", + "symbol": "LLYX", + "decimals": 18, + "name": "Eli Lilly xStock", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x19c41ea77b34bbdee61c3a87a75d1abda2ed0be4.png", + "aggregators": ["CoinGecko", "Rubic", "Rango"], + "occurrences": 3 + }, + "0xb365cd2588065f522d379ad19e903304f6b622c6": { + "address": "0xb365cd2588065f522d379ad19e903304f6b622c6", + "symbol": "MAX", + "decimals": 18, + "name": "Mastercard xStock", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xb365cd2588065f522d379ad19e903304f6b622c6.png", + "aggregators": ["CoinGecko", "Rubic", "Rango"], + "occurrences": 3 + }, + "0xa90424d5d3e770e8644103ab503ed775dd1318fd": { + "address": "0xa90424d5d3e770e8644103ab503ed775dd1318fd", + "symbol": "PGX", + "decimals": 18, + "name": "Procter & Gamble xStock", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xa90424d5d3e770e8644103ab503ed775dd1318fd.png", + "aggregators": ["CoinGecko", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x766b0cd6ed6d90b5d49d2c36a3761e9728501ba9": { + "address": "0x766b0cd6ed6d90b5d49d2c36a3761e9728501ba9", + "symbol": "HDX", + "decimals": 18, + "name": "Home Depot xStock", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x766b0cd6ed6d90b5d49d2c36a3761e9728501ba9.png", + "aggregators": ["CoinGecko", "Rubic", "Rango"], + "occurrences": 3 + }, + "0xad5cdc3340904285b8159089974a99a1a09eb4c0": { + "address": "0xad5cdc3340904285b8159089974a99a1a09eb4c0", + "symbol": "CVXX", + "decimals": 18, + "name": "Chevron xStock", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xad5cdc3340904285b8159089974a99a1a09eb4c0.png", + "aggregators": ["CoinGecko", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x1ac765b5bea23184802c7d2d497f7c33f1444a9e": { + "address": "0x1ac765b5bea23184802c7d2d497f7c33f1444a9e", + "symbol": "PFEX", + "decimals": 18, + "name": "Pfizer xStock", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x1ac765b5bea23184802c7d2d497f7c33f1444a9e.png", + "aggregators": ["CoinGecko", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x17d8186ed8f68059124190d147174d0f6697dc40": { + "address": "0x17d8186ed8f68059124190d147174d0f6697dc40", + "symbol": "MRKX", + "decimals": 18, + "name": "Merck xStock", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x17d8186ed8f68059124190d147174d0f6697dc40.png", + "aggregators": ["CoinGecko", "Rubic", "Rango"], + "occurrences": 3 + }, + "0xfbf2398df672cee4afcc2a4a733222331c742a6a": { + "address": "0xfbf2398df672cee4afcc2a4a733222331c742a6a", + "symbol": "ABBVX", + "decimals": 18, + "name": "AbbVie xStock", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xfbf2398df672cee4afcc2a4a733222331c742a6a.png", + "aggregators": ["CoinGecko", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x36c424a6ec0e264b1616102ad63ed2ad7857413e": { + "address": "0x36c424a6ec0e264b1616102ad63ed2ad7857413e", + "symbol": "PEPX", + "decimals": 18, + "name": "PepsiCo xStock", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x36c424a6ec0e264b1616102ad63ed2ad7857413e.png", + "aggregators": ["CoinGecko", "Rubic", "Rango"], + "occurrences": 3 + }, + "0xdcc1a2699441079da889b1f49e12b69cc791129b": { + "address": "0xdcc1a2699441079da889b1f49e12b69cc791129b", + "symbol": "KOX", + "decimals": 18, + "name": "Coca-Cola xStock", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xdcc1a2699441079da889b1f49e12b69cc791129b.png", + "aggregators": ["CoinGecko", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x7aefc9965699fbea943e03264d96e50cd4a97b21": { + "address": "0x7aefc9965699fbea943e03264d96e50cd4a97b21", + "symbol": "WMTX", + "decimals": 18, + "name": "Walmart xStock", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x7aefc9965699fbea943e03264d96e50cd4a97b21.png", + "aggregators": ["CoinGecko", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x053c784cd87b74f42e0c089f98643e79c1a3ff16": { + "address": "0x053c784cd87b74f42e0c089f98643e79c1a3ff16", + "symbol": "CSCOX", + "decimals": 18, + "name": "Cisco xStock", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x053c784cd87b74f42e0c089f98643e79c1a3ff16.png", + "aggregators": ["CoinGecko", "Rubic", "Rango"], + "occurrences": 3 + }, + "0xf9523e369c5f55ad72dbaa75b0a9b92b3d8b147e": { + "address": "0xf9523e369c5f55ad72dbaa75b0a9b92b3d8b147e", + "symbol": "NVOX", + "decimals": 18, + "name": "Novo Nordisk xStock", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xf9523e369c5f55ad72dbaa75b0a9b92b3d8b147e.png", + "aggregators": ["CoinGecko", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x548308e91ec9f285c7bff05295badbd56a6e4971": { + "address": "0x548308e91ec9f285c7bff05295badbd56a6e4971", + "symbol": "ORCLX", + "decimals": 18, + "name": "Oracle xStock", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x548308e91ec9f285c7bff05295badbd56a6e4971.png", + "aggregators": ["CoinGecko", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x3ee7e9b3a992fd23cd1c363b0e296856b04ab149": { + "address": "0x3ee7e9b3a992fd23cd1c363b0e296856b04ab149", + "symbol": "GSX", + "decimals": 18, + "name": "Goldman Sachs xStock", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x3ee7e9b3a992fd23cd1c363b0e296856b04ab149.png", + "aggregators": ["CoinGecko", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x364f210f430ec2448fc68a49203040f6124096f0": { + "address": "0x364f210f430ec2448fc68a49203040f6124096f0", + "symbol": "COINX", + "decimals": 18, + "name": "Coinbase xStock", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x364f210f430ec2448fc68a49203040f6124096f0.png", + "aggregators": ["CoinGecko", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x2380f2673c640fb67e2d6b55b44c62f0e0e69da9": { + "address": "0x2380f2673c640fb67e2d6b55b44c62f0e0e69da9", + "symbol": "GLDX", + "decimals": 18, + "name": "Gold xStock", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x2380f2673c640fb67e2d6b55b44c62f0e0e69da9.png", + "aggregators": ["CoinGecko", "Rubic", "Rango"], + "occurrences": 3 + }, + "0xfdddb57878ef9d6f681ec4381dcb626b9e69ac86": { + "address": "0xfdddb57878ef9d6f681ec4381dcb626b9e69ac86", + "symbol": "TQQQX", + "decimals": 18, + "name": "TQQQ xStock", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xfdddb57878ef9d6f681ec4381dcb626b9e69ac86.png", + "aggregators": ["CoinGecko", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x2f9a35ab5ddfbc49927bfdeab98a86c53dc6e763": { + "address": "0x2f9a35ab5ddfbc49927bfdeab98a86c53dc6e763", + "symbol": "AMBRX", + "decimals": 18, + "name": "Amber xStock", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x2f9a35ab5ddfbc49927bfdeab98a86c53dc6e763.png", + "aggregators": ["CoinGecko", "Rubic", "Rango"], + "occurrences": 3 + }, + "0xfebded1b0986a8ee107f5ab1a1c5a813491deceb": { + "address": "0xfebded1b0986a8ee107f5ab1a1c5a813491deceb", + "symbol": "CRCLX", + "decimals": 18, + "name": "CRCLx xStock", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xfebded1b0986a8ee107f5ab1a1c5a813491deceb.png", + "aggregators": ["CoinGecko", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x2efa572467c50c04a6eed6742196c0d0d287c1bb": { + "address": "0x2efa572467c50c04a6eed6742196c0d0d287c1bb", + "symbol": "CHAD", + "decimals": 18, + "name": "Based Chad", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x2efa572467c50c04a6eed6742196c0d0d287c1bb.png", + "aggregators": ["CoinMarketCap", "Rubic", "Sonarwatch"], + "occurrences": 3 + }, + "0xc210b2cb65ed3484892167f5e05f7ab496ab0598": { + "address": "0xc210b2cb65ed3484892167f5e05f7ab496ab0598", + "symbol": "LYX", + "decimals": 18, + "name": "Bridged LUKSO (Hyperlane)", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xc210b2cb65ed3484892167f5e05f7ab496ab0598.png", + "aggregators": ["Metamask", "Rubic", "Rango"], + "occurrences": 3 + }, + "0xda2ffa104356688e74d9340519b8c17f00d7752e": { + "address": "0xda2ffa104356688e74d9340519b8c17f00d7752e", + "symbol": "HLSCOPE", + "decimals": 6, + "name": "HLSCOPE", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xda2ffa104356688e74d9340519b8c17f00d7752e.png", + "aggregators": ["CoinGecko", "Rubic", "Rango"], + "occurrences": 3 + }, + "0xf72ae3e0da743033abd7a407557d684c1ae66aed": { + "address": "0xf72ae3e0da743033abd7a407557d684c1ae66aed", + "symbol": "XL1", + "decimals": 18, + "name": "XL1", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xf72ae3e0da743033abd7a407557d684c1ae66aed.png", + "aggregators": ["CoinMarketCap", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x1c3547dfa9ce7acd9c54ae49244575fa65bc75e2": { + "address": "0x1c3547dfa9ce7acd9c54ae49244575fa65bc75e2", + "symbol": "IMAGE", + "decimals": 18, + "name": "IMAGE", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x1c3547dfa9ce7acd9c54ae49244575fa65bc75e2.png", + "aggregators": ["CoinMarketCap", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x840b20fa3d48ac709fd841fcd878c3e8aabd7087": { + "address": "0x840b20fa3d48ac709fd841fcd878c3e8aabd7087", + "symbol": "GLUE", + "decimals": 18, + "name": "GLUE", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x840b20fa3d48ac709fd841fcd878c3e8aabd7087.png", + "aggregators": ["CoinMarketCap", "Rubic", "Rango"], + "occurrences": 3 + }, + "0xecc5f868add75f4ff9fd00bbbde12c35ba2c9c89": { + "address": "0xecc5f868add75f4ff9fd00bbbde12c35ba2c9c89", + "symbol": "BOB", + "decimals": 8, + "name": "BOB", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xecc5f868add75f4ff9fd00bbbde12c35ba2c9c89.png", + "aggregators": ["CoinGecko", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x0a9e3dde12e4519c9d89df69bd738490c9466bf4": { + "address": "0x0a9e3dde12e4519c9d89df69bd738490c9466bf4", + "symbol": "MD", + "decimals": 18, + "name": "Market Dominance", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x0a9e3dde12e4519c9d89df69bd738490c9466bf4.png", + "aggregators": ["CoinGecko", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x17cdb2a01e7a34cbb3dd4b83260b05d0274c8dab": { + "address": "0x17cdb2a01e7a34cbb3dd4b83260b05d0274c8dab", + "symbol": "CNGN", + "decimals": 6, + "name": "CNGN", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x17cdb2a01e7a34cbb3dd4b83260b05d0274c8dab.png", + "aggregators": ["CoinMarketCap", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x9d275685dc284c8eb1c79f6aba7a63dc75ec890a": { + "address": "0x9d275685dc284c8eb1c79f6aba7a63dc75ec890a", + "symbol": "AAPLX", + "decimals": 18, + "name": "Apple xStock", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x9d275685dc284c8eb1c79f6aba7a63dc75ec890a.png", + "aggregators": ["CoinGecko", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x5621737f42dae558b81269fcb9e9e70c19aa6b35": { + "address": "0x5621737f42dae558b81269fcb9e9e70c19aa6b35", + "symbol": "MSFTX", + "decimals": 18, + "name": "Microsoft xStock", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x5621737f42dae558b81269fcb9e9e70c19aa6b35.png", + "aggregators": ["CoinGecko", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x2925ac3be7d585874b88ea51ed50add376ad8239": { + "address": "0x2925ac3be7d585874b88ea51ed50add376ad8239", + "symbol": "AXCNH", + "decimals": 6, + "name": "AXCNH", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x2925ac3be7d585874b88ea51ed50add376ad8239.png", + "aggregators": ["CoinMarketCap", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x3557ba345b01efa20a1bddc61f573bfd87195081": { + "address": "0x3557ba345b01efa20a1bddc61f573bfd87195081", + "symbol": "AMZNX", + "decimals": 18, + "name": "Amazon xStock", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x3557ba345b01efa20a1bddc61f573bfd87195081.png", + "aggregators": ["CoinGecko", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x96702be57cd9777f835117a809c7124fe4ec989a": { + "address": "0x96702be57cd9777f835117a809c7124fe4ec989a", + "symbol": "METAX", + "decimals": 18, + "name": "Meta xStock", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x96702be57cd9777f835117a809c7124fe4ec989a.png", + "aggregators": ["CoinGecko", "Rubic", "Rango"], + "occurrences": 3 + }, + "0xe92f673ca36c5e2efd2de7628f815f84807e803f": { + "address": "0xe92f673ca36c5e2efd2de7628f815f84807e803f", + "symbol": "GOOGLX", + "decimals": 18, + "name": "Alphabet xStock", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xe92f673ca36c5e2efd2de7628f815f84807e803f.png", + "aggregators": ["CoinGecko", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x38bac69cbbd28156796e4163b2b6dcb81e336565": { + "address": "0x38bac69cbbd28156796e4163b2b6dcb81e336565", + "symbol": "AVGOX", + "decimals": 18, + "name": "Broadcom xStock", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x38bac69cbbd28156796e4163b2b6dcb81e336565.png", + "aggregators": ["CoinGecko", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x12992613fdd35abe95dec5a4964331b1ee23b50d": { + "address": "0x12992613fdd35abe95dec5a4964331b1ee23b50d", + "symbol": "BRK.BX", + "decimals": 18, + "name": "Berkshire Hathaway xStock", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x12992613fdd35abe95dec5a4964331b1ee23b50d.png", + "aggregators": ["CoinGecko", "Rubic", "Rango"], + "occurrences": 3 + }, + "0xf0b9889cdb70a716bf72e37ef626f08d9f14c180": { + "address": "0xf0b9889cdb70a716bf72e37ef626f08d9f14c180", + "symbol": "VMANTA", + "decimals": 18, + "name": "VMANTA", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xf0b9889cdb70a716bf72e37ef626f08d9f14c180.png", + "aggregators": ["CoinGecko", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x0581ccdf2d9bca21baeff8b32b2551fd49cf70aa": { + "address": "0x0581ccdf2d9bca21baeff8b32b2551fd49cf70aa", + "symbol": "AT", + "decimals": 18, + "name": "AT", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x0581ccdf2d9bca21baeff8b32b2551fd49cf70aa.png", + "aggregators": ["CoinMarketCap", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x33f6be84becff45ea6aa2952d7ef890b44bfb59d": { + "address": "0x33f6be84becff45ea6aa2952d7ef890b44bfb59d", + "symbol": "ON", + "decimals": 18, + "name": "ON", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x33f6be84becff45ea6aa2952d7ef890b44bfb59d.png", + "aggregators": ["CoinMarketCap", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x337e7456b420bd3481e7fa61fa9850343d610d34": { + "address": "0x337e7456b420bd3481e7fa61fa9850343d610d34", + "symbol": "WMXN", + "decimals": 18, + "name": "Mexican Peso", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x337e7456b420bd3481e7fa61fa9850343d610d34.png", + "aggregators": ["Metamask", "Rubic"], + "occurrences": 2 + }, + "0x15059c599c16fd8f70b633ade165502d6402cd49": { + "address": "0x15059c599c16fd8f70b633ade165502d6402cd49", + "symbol": "LINX", + "decimals": 18, + "name": "Linde xStock", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x15059c599c16fd8f70b633ade165502d6402cd49.png", + "aggregators": ["CoinGecko", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x4a4073f2eaf299a1be22254dcd2c41727f6f54a2": { + "address": "0x4a4073f2eaf299a1be22254dcd2c41727f6f54a2", + "symbol": "CRMX", + "decimals": 18, + "name": "Salesforce xStock", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x4a4073f2eaf299a1be22254dcd2c41727f6f54a2.png", + "aggregators": ["CoinGecko", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x314938c596f5ce31c3f75307d2979338c346d7f2": { + "address": "0x314938c596f5ce31c3f75307d2979338c346d7f2", + "symbol": "BACX", + "decimals": 18, + "name": "Bank of America xStock", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x314938c596f5ce31c3f75307d2979338c346d7f2.png", + "aggregators": ["CoinGecko", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x8a1d45e102e886510e891d2ec656a708991e2d76": { + "address": "0x8a1d45e102e886510e891d2ec656a708991e2d76", + "symbol": "WCOP", + "decimals": 18, + "name": "Colombian Peso", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x8a1d45e102e886510e891d2ec656a708991e2d76.png", + "aggregators": ["Metamask", "Rubic"], + "occurrences": 2 + }, + "0xaf072f109a2c173d822a4fe9af311a1b18f83d19": { + "address": "0xaf072f109a2c173d822a4fe9af311a1b18f83d19", + "symbol": "TMOX", + "decimals": 18, + "name": "Thermo Fisher xStock", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xaf072f109a2c173d822a4fe9af311a1b18f83d19.png", + "aggregators": ["CoinGecko", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x89233399708c18ac6887f90a2b4cd8ba5fedd06e": { + "address": "0x89233399708c18ac6887f90a2b4cd8ba5fedd06e", + "symbol": "ABTX", + "decimals": 18, + "name": "Abbott xStock", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x89233399708c18ac6887f90a2b4cd8ba5fedd06e.png", + "aggregators": ["CoinGecko", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x1f7fd18926a9646f4ff62952706dfcaed7b544bb": { + "address": "0x1f7fd18926a9646f4ff62952706dfcaed7b544bb", + "symbol": "BTC.ℏ", + "decimals": 8, + "name": "BTC.ℏ", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x1f7fd18926a9646f4ff62952706dfcaed7b544bb.png", + "aggregators": ["CoinGecko", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x80a77a372c1e12accda84299492f404902e2da67": { + "address": "0x80a77a372c1e12accda84299492f404902e2da67", + "symbol": "MCDX", + "decimals": 18, + "name": "McDonald's xStock", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x80a77a372c1e12accda84299492f404902e2da67.png", + "aggregators": ["CoinGecko", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x0e63b9c287e32a05e6b9ab8ee8df88a2760225a9": { + "address": "0x0e63b9c287e32a05e6b9ab8ee8df88a2760225a9", + "symbol": "PIEVERSE", + "decimals": 18, + "name": "PIEVERSE", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x0e63b9c287e32a05e6b9ab8ee8df88a2760225a9.png", + "aggregators": ["CoinMarketCap", "Rubic", "Rango"], + "occurrences": 3 + }, + "0xdba228936f4079daf9aa906fd48a87f2300405f4": { + "address": "0xdba228936f4079daf9aa906fd48a87f2300405f4", + "symbol": "DHRX", + "decimals": 18, + "name": "Danaher xStock", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xdba228936f4079daf9aa906fd48a87f2300405f4.png", + "aggregators": ["CoinGecko", "Rubic", "Rango"], + "occurrences": 3 + }, + "0xbc7170a1280be28513b4e940c681537eb25e39f4": { + "address": "0xbc7170a1280be28513b4e940c681537eb25e39f4", + "symbol": "CMCSAX", + "decimals": 18, + "name": "Comcast xStock", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xbc7170a1280be28513b4e940c681537eb25e39f4.png", + "aggregators": ["CoinGecko", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x216b3643ff8b7bb30d8a48e9f1bd550126202add": { + "address": "0x216b3643ff8b7bb30d8a48e9f1bd550126202add", + "symbol": "ACU", + "decimals": 12, + "name": "ACU", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x216b3643ff8b7bb30d8a48e9f1bd550126202add.png", + "aggregators": ["CoinMarketCap", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x6d482cec5f9dd1f05ccee9fd3ff79b246170f8e2": { + "address": "0x6d482cec5f9dd1f05ccee9fd3ff79b246170f8e2", + "symbol": "PLTRX", + "decimals": 18, + "name": "Palantir xStock", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x6d482cec5f9dd1f05ccee9fd3ff79b246170f8e2.png", + "aggregators": ["CoinGecko", "Rubic", "Rango"], + "occurrences": 3 + }, + "0xe1385fdd5ffb10081cd52c56584f25efa9084015": { + "address": "0xe1385fdd5ffb10081cd52c56584f25efa9084015", + "symbol": "HOODX", + "decimals": 18, + "name": "Robinhood xStock", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xe1385fdd5ffb10081cd52c56584f25efa9084015.png", + "aggregators": ["CoinGecko", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x61d450a098b6a7f69fc4b98ce68198fe59768651": { + "address": "0x61d450a098b6a7f69fc4b98ce68198fe59768651", + "symbol": "WCLP", + "decimals": 18, + "name": "Chilean Peso", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x61d450a098b6a7f69fc4b98ce68198fe59768651.png", + "aggregators": ["Metamask", "Rubic"], + "occurrences": 2 + }, + "0xd9913208647671fe0f48f7f260076b2c6f310aac": { + "address": "0xd9913208647671fe0f48f7f260076b2c6f310aac", + "symbol": "IBMX", + "decimals": 18, + "name": "International Business Machines xStock", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xd9913208647671fe0f48f7f260076b2c6f310aac.png", + "aggregators": ["CoinGecko", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x6ad12e761b438bea3ea09f6c6266556bb24c2181": { + "address": "0x6ad12e761b438bea3ea09f6c6266556bb24c2181", + "symbol": "BDX", + "decimals": 9, + "name": "BDX", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x6ad12e761b438bea3ea09f6c6266556bb24c2181.png", + "aggregators": ["CoinMarketCap", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x62a48560861b0b451654bfffdb5be6e47aa8ff1b": { + "address": "0x62a48560861b0b451654bfffdb5be6e47aa8ff1b", + "symbol": "HONX", + "decimals": 18, + "name": "Honeywell xStock", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x62a48560861b0b451654bfffdb5be6e47aa8ff1b.png", + "aggregators": ["CoinGecko", "Rubic", "Rango"], + "occurrences": 3 + }, + "0xf8a80d1cb9cfd70d03d655d9df42339846f3b3c8": { + "address": "0xf8a80d1cb9cfd70d03d655d9df42339846f3b3c8", + "symbol": "INTCX", + "decimals": 18, + "name": "Intel xStock", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xf8a80d1cb9cfd70d03d655d9df42339846f3b3c8.png", + "aggregators": ["CoinGecko", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x50a1291f69d9d3853def8209cfb1af0b46927be1": { + "address": "0x50a1291f69d9d3853def8209cfb1af0b46927be1", + "symbol": "APPX", + "decimals": 18, + "name": "AppLovin xStock", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x50a1291f69d9d3853def8209cfb1af0b46927be1.png", + "aggregators": ["CoinGecko", "Rubic", "Rango"], + "occurrences": 3 + }, + "0xeaad46f4146ded5a47b55aa7f6c48c191deaec88": { + "address": "0xeaad46f4146ded5a47b55aa7f6c48c191deaec88", + "symbol": "MRVLX", + "decimals": 18, + "name": "Marvell xStock", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xeaad46f4146ded5a47b55aa7f6c48c191deaec88.png", + "aggregators": ["CoinGecko", "Rubic", "Rango"], + "occurrences": 3 + }, + "0xe5f6d3b2405abdfe6f660e63202b25d23763160d": { + "address": "0xe5f6d3b2405abdfe6f660e63202b25d23763160d", + "symbol": "GMEX", + "decimals": 18, + "name": "Gamestop xStock", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xe5f6d3b2405abdfe6f660e63202b25d23763160d.png", + "aggregators": ["CoinGecko", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x0588e851ec0418d660bee81230d6c678daf21d46": { + "address": "0x0588e851ec0418d660bee81230d6c678daf21d46", + "symbol": "MDTX", + "decimals": 18, + "name": "Medtronic xStock", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x0588e851ec0418d660bee81230d6c678daf21d46.png", + "aggregators": ["CoinGecko", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x03183ce31b1656b72a55fa6056e287f50c35bbeb": { + "address": "0x03183ce31b1656b72a55fa6056e287f50c35bbeb", + "symbol": "ACNX", + "decimals": 18, + "name": "Accenture xStock", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x03183ce31b1656b72a55fa6056e287f50c35bbeb.png", + "aggregators": ["CoinGecko", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x1958853a8be062dc4f401750eb233f5850f0d0d2": { + "address": "0x1958853a8be062dc4f401750eb233f5850f0d0d2", + "symbol": "SATUSD", + "decimals": 18, + "name": "SATUSD", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x1958853a8be062dc4f401750eb233f5850f0d0d2.png", + "aggregators": ["CoinGecko", "Rubic", "Rango"], + "occurrences": 3 + }, + "0xa227cc36938f0c9e09ce0e64dfab226cad739447": { + "address": "0xa227cc36938f0c9e09ce0e64dfab226cad739447", + "symbol": "OPEN", + "decimals": 18, + "name": "OPEN", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xa227cc36938f0c9e09ce0e64dfab226cad739447.png", + "aggregators": ["CoinMarketCap", "Rubic", "Rango"], + "occurrences": 3 + }, + "0xbd730e618bcd88c82ddee52e10275cf2f88a4777": { + "address": "0xbd730e618bcd88c82ddee52e10275cf2f88a4777", + "symbol": "VTIX", + "decimals": 18, + "name": "Vanguard xStock", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xbd730e618bcd88c82ddee52e10275cf2f88a4777.png", + "aggregators": ["CoinGecko", "Rubic", "Rango"], + "occurrences": 3 + }, + "0xa6a65ac27e76cd53cb790473e4345c46e5ebf961": { + "address": "0xa6a65ac27e76cd53cb790473e4345c46e5ebf961", + "symbol": "NFLXX", + "decimals": 18, + "name": "Netflix xStock", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xa6a65ac27e76cd53cb790473e4345c46e5ebf961.png", + "aggregators": ["CoinGecko", "Rubic", "Rango"], + "occurrences": 3 + }, + "0xc9faeba86e8567477783b8432945f131d84e3fda": { + "address": "0xc9faeba86e8567477783b8432945f131d84e3fda", + "symbol": "CLONE", + "decimals": 18, + "name": "Confidential Layer", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xc9faeba86e8567477783b8432945f131d84e3fda.png", + "aggregators": ["CoinMarketCap", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x02a6c1789c3b4fdb1a7a3dfa39f90e5d3c94f4f9": { + "address": "0x02a6c1789c3b4fdb1a7a3dfa39f90e5d3c94f4f9", + "symbol": "PMX", + "decimals": 18, + "name": "Philip Morris xStock", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x02a6c1789c3b4fdb1a7a3dfa39f90e5d3c94f4f9.png", + "aggregators": ["CoinGecko", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x5d642505fe1a28897eb3baba665f454755d8daa2": { + "address": "0x5d642505fe1a28897eb3baba665f454755d8daa2", + "symbol": "AZNX", + "decimals": 18, + "name": "AstraZeneca xStock", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x5d642505fe1a28897eb3baba665f454755d8daa2.png", + "aggregators": ["CoinGecko", "Rubic", "Rango"], + "occurrences": 3 + }, + "0xe820c06321e60d36257c666643fa5436643445e3": { + "address": "0xe820c06321e60d36257c666643fa5436643445e3", + "symbol": "USDKG", + "decimals": 6, + "name": "USDKG", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xe820c06321e60d36257c666643fa5436643445e3.png", + "aggregators": ["CoinMarketCap", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x59db93d135f16585ed90b8c942d4f8ae0dcfbfc0": { + "address": "0x59db93d135f16585ed90b8c942d4f8ae0dcfbfc0", + "symbol": "RAIN", + "decimals": 18, + "name": "RAIN", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x59db93d135f16585ed90b8c942d4f8ae0dcfbfc0.png", + "aggregators": ["CoinMarketCap", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x4f34c8b3b5fb6d98da888f0fea543d4d9c9f2ebe": { + "address": "0x4f34c8b3b5fb6d98da888f0fea543d4d9c9f2ebe", + "symbol": "WPEN", + "decimals": 18, + "name": "Peruvian Sol", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x4f34c8b3b5fb6d98da888f0fea543d4d9c9f2ebe.png", + "aggregators": ["Metamask", "Rubic"], + "occurrences": 2 + }, + "0xc2d09cf86b9ff43cb29ef8ddca57a4eb4410d5f3": { + "address": "0xc2d09cf86b9ff43cb29ef8ddca57a4eb4410d5f3", + "symbol": "GTBTC", + "decimals": 8, + "name": "GTBTC", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xc2d09cf86b9ff43cb29ef8ddca57a4eb4410d5f3.png", + "aggregators": ["CoinMarketCap", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x373f323d21b38004d17386c18680c57657f78040": { + "address": "0x373f323d21b38004d17386c18680c57657f78040", + "symbol": "NIZA", + "decimals": 18, + "name": "NIZA", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x373f323d21b38004d17386c18680c57657f78040.png", + "aggregators": ["CoinMarketCap", "Rubic", "Rango"], + "occurrences": 3 + }, + "0xe0b7927c4af23765cb51314a0e0521a9645f0e2a": { + "address": "0xe0b7927c4af23765cb51314a0e0521a9645f0e2a", + "symbol": "DGD", + "decimals": 9, + "name": "na", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xe0b7927c4af23765cb51314a0e0521a9645f0e2a.png", + "aggregators": ["CoinMarketCap", "Rubic", "Bancor"], + "occurrences": 3 + }, + "0x7296eaa225804451a91616b29d040cab05435f0d": { + "address": "0x7296eaa225804451a91616b29d040cab05435f0d", + "symbol": "WAVES", + "decimals": 8, + "name": "WAVES", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x7296eaa225804451a91616b29d040cab05435f0d.png", + "aggregators": ["CoinMarketCap", "Socket", "Rubic"], + "occurrences": 3 + }, + "0xfec0cf7fe078a500abf15f1284958f22049c2c7e": { + "address": "0xfec0cf7fe078a500abf15f1284958f22049c2c7e", + "symbol": "ART", + "decimals": 18, + "name": "Maecenas ART Token", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xfec0cf7fe078a500abf15f1284958f22049c2c7e.png", + "aggregators": ["Metamask", "Socket", "Rubic"], + "occurrences": 3 + }, + "0x859a9c0b44cb7066d956a958b0b82e54c9e44b4b": { + "address": "0x859a9c0b44cb7066d956a958b0b82e54c9e44b4b", + "symbol": "IETH", + "decimals": 8, + "name": "iEthereum", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x859a9c0b44cb7066d956a958b0b82e54c9e44b4b.png", + "aggregators": ["CoinMarketCap", "Socket", "Rubic"], + "occurrences": 3 + }, + "0xf70a642bd387f94380ffb90451c2c81d4eb82cbc": { + "address": "0xf70a642bd387f94380ffb90451c2c81d4eb82cbc", + "symbol": "STAR", + "decimals": 18, + "name": "Starbase", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xf70a642bd387f94380ffb90451c2c81d4eb82cbc.png", + "aggregators": ["Metamask", "Socket", "Rubic"], + "occurrences": 3 + }, + "0x26e75307fc0c021472feb8f727839531f112f317": { + "address": "0x26e75307fc0c021472feb8f727839531f112f317", + "symbol": "C20", + "decimals": 18, + "name": "Crypto20", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x26e75307fc0c021472feb8f727839531f112f317.png", + "aggregators": ["Metamask", "Rubic", "Bancor"], + "occurrences": 3 + }, + "0x50bc2ecc0bfdf5666640048038c1aba7b7525683": { + "address": "0x50bc2ecc0bfdf5666640048038c1aba7b7525683", + "symbol": "CV", + "decimals": 18, + "name": "carVertical", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x50bc2ecc0bfdf5666640048038c1aba7b7525683.png", + "aggregators": ["CoinMarketCap", "Rubic", "Rango"], + "occurrences": 3 + }, + "0xea5f88e54d982cbb0c441cde4e79bc305e5b43bc": { + "address": "0xea5f88e54d982cbb0c441cde4e79bc305e5b43bc", + "symbol": "PARETO", + "decimals": 18, + "name": "Pareto Network Token", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xea5f88e54d982cbb0c441cde4e79bc305e5b43bc.png", + "aggregators": ["Metamask", "Rubic", "Rango"], + "occurrences": 3 + }, + "0xffe02ee4c69edf1b340fcad64fbd6b37a7b9e265": { + "address": "0xffe02ee4c69edf1b340fcad64fbd6b37a7b9e265", + "symbol": "NANJ", + "decimals": 8, + "name": "NANJCOIN", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xffe02ee4c69edf1b340fcad64fbd6b37a7b9e265.png", + "aggregators": ["Metamask", "Socket", "Rubic"], + "occurrences": 3 + }, + "0x0a50c93c762fdd6e56d86215c24aaad43ab629aa": { + "address": "0x0a50c93c762fdd6e56d86215c24aaad43ab629aa", + "symbol": "LGO", + "decimals": 8, + "name": "LGO Token", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x0a50c93c762fdd6e56d86215c24aaad43ab629aa.png", + "aggregators": ["CoinMarketCap", "TrustWallet", "Rubic"], + "occurrences": 3 + }, + "0x6888a16ea9792c15a4dcf2f6c623d055c8ede792": { + "address": "0x6888a16ea9792c15a4dcf2f6c623d055c8ede792", + "symbol": "SIG", + "decimals": 18, + "name": "Spectiv Signal Token", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x6888a16ea9792c15a4dcf2f6c623d055c8ede792.png", + "aggregators": ["Metamask", "Rubic", "Bancor"], + "occurrences": 3 + }, + "0xbb1f24c0c1554b9990222f036b0aad6ee4caec29": { + "address": "0xbb1f24c0c1554b9990222f036b0aad6ee4caec29", + "symbol": "SOUL", + "decimals": 18, + "name": "CryptoSoul", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xbb1f24c0c1554b9990222f036b0aad6ee4caec29.png", + "aggregators": ["Metamask", "Socket", "Rubic"], + "occurrences": 3 + }, + "0x4954db6391f4feb5468b6b943d4935353596aec9": { + "address": "0x4954db6391f4feb5468b6b943d4935353596aec9", + "symbol": "USDQ", + "decimals": 18, + "name": "USDQ Stablecoin by Q DAO v1.0", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x4954db6391f4feb5468b6b943d4935353596aec9.png", + "aggregators": ["CoinMarketCap", "Socket", "Rubic"], + "occurrences": 3 + }, + "0x51bd4f39803fcaeff3ef45aae2c3aaff0b9fadcb": { + "address": "0x51bd4f39803fcaeff3ef45aae2c3aaff0b9fadcb", + "symbol": "BOA", + "decimals": 7, + "name": "BOSagora", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x51bd4f39803fcaeff3ef45aae2c3aaff0b9fadcb.png", + "aggregators": ["CoinMarketCap", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x8e30ea2329d95802fd804f4291220b0e2f579812": { + "address": "0x8e30ea2329d95802fd804f4291220b0e2f579812", + "symbol": "DVP", + "decimals": 18, + "name": "Decentralized Vulnerability Platform", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x8e30ea2329d95802fd804f4291220b0e2f579812.png", + "aggregators": ["CoinMarketCap", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x66fd97a78d8854fec445cd1c80a07896b0b4851f": { + "address": "0x66fd97a78d8854fec445cd1c80a07896b0b4851f", + "symbol": "LMY", + "decimals": 18, + "name": "Lunch Money", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x66fd97a78d8854fec445cd1c80a07896b0b4851f.png", + "aggregators": ["Metamask", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x8c4e7f814d40f8929f9112c5d09016f923d34472": { + "address": "0x8c4e7f814d40f8929f9112c5d09016f923d34472", + "symbol": "XLAB", + "decimals": 18, + "name": "XcelToken Plus", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x8c4e7f814d40f8929f9112c5d09016f923d34472.png", + "aggregators": ["CoinMarketCap", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x679131f591b4f369acb8cd8c51e68596806c3916": { + "address": "0x679131f591b4f369acb8cd8c51e68596806c3916", + "symbol": "TLN", + "decimals": 18, + "name": "Trustlines Network Token", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x679131f591b4f369acb8cd8c51e68596806c3916.png", + "aggregators": ["CoinMarketCap", "LiFi", "Rubic"], + "occurrences": 3 + }, + "0xcee1d3c3a02267e37e6b373060f79d5d7b9e1669": { + "address": "0xcee1d3c3a02267e37e6b373060f79d5d7b9e1669", + "symbol": "YFFI", + "decimals": 18, + "name": "yffi.finance", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xcee1d3c3a02267e37e6b373060f79d5d7b9e1669.png", + "aggregators": ["CoinMarketCap", "LiFi", "Rubic"], + "occurrences": 3 + }, + "0x309013d55fb0e8c17363bcc79f25d92f711a5802": { + "address": "0x309013d55fb0e8c17363bcc79f25d92f711a5802", + "symbol": "SBTC", + "decimals": 9, + "name": "Soft Bitcoin", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x309013d55fb0e8c17363bcc79f25d92f711a5802.png", + "aggregators": ["CoinMarketCap", "Socket", "Rubic"], + "occurrences": 3 + }, + "0x28cb7e841ee97947a86b06fa4090c8451f64c0be": { + "address": "0x28cb7e841ee97947a86b06fa4090c8451f64c0be", + "symbol": "YFL", + "decimals": 18, + "name": "YF Link", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x28cb7e841ee97947a86b06fa4090c8451f64c0be.png", + "aggregators": ["Metamask", "Rubic", "Rango"], + "occurrences": 3 + }, + "0xc4cb5793bd58bad06bf51fb37717b86b02cbe8a4": { + "address": "0xc4cb5793bd58bad06bf51fb37717b86b02cbe8a4", + "symbol": "CREDIT", + "decimals": 18, + "name": "CREDIT", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xc4cb5793bd58bad06bf51fb37717b86b02cbe8a4.png", + "aggregators": ["CoinMarketCap", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x9e78b8274e1d6a76a0dbbf90418894df27cbceb5": { + "address": "0x9e78b8274e1d6a76a0dbbf90418894df27cbceb5", + "symbol": "UNIFI", + "decimals": 18, + "name": "UniFi", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x9e78b8274e1d6a76a0dbbf90418894df27cbceb5.png", + "aggregators": ["CoinMarketCap", "Rubic", "Rango"], + "occurrences": 3 + }, + "0xd7b7d3c0bda57723fb54ab95fd8f9ea033af37f2": { + "address": "0xd7b7d3c0bda57723fb54ab95fd8f9ea033af37f2", + "symbol": "PYLON", + "decimals": 18, + "name": "PYLON", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xd7b7d3c0bda57723fb54ab95fd8f9ea033af37f2.png", + "aggregators": ["CoinMarketCap", "Socket", "Rubic"], + "occurrences": 3 + }, + "0x00a8b738e453ffd858a7edf03bccfe20412f0eb0": { + "address": "0x00a8b738e453ffd858a7edf03bccfe20412f0eb0", + "symbol": "ALBT", + "decimals": 18, + "name": "AllianceBlock Token", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x00a8b738e453ffd858a7edf03bccfe20412f0eb0.png", + "aggregators": ["CoinMarketCap", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x556148562d5ddeb72545d7ec4b3ec8edc8f55ba7": { + "address": "0x556148562d5ddeb72545d7ec4b3ec8edc8f55ba7", + "symbol": "PRDX", + "decimals": 18, + "name": "Predix Network", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x556148562d5ddeb72545d7ec4b3ec8edc8f55ba7.png", + "aggregators": ["CoinMarketCap", "Socket", "Rubic"], + "occurrences": 3 + }, + "0x44ea84a85616f8e9cd719fc843de31d852ad7240": { + "address": "0x44ea84a85616f8e9cd719fc843de31d852ad7240", + "symbol": "NTRUMP", + "decimals": 15, + "name": "NO Donald Trump", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x44ea84a85616f8e9cd719fc843de31d852ad7240.png", + "aggregators": ["CoinMarketCap", "LiFi", "Rubic"], + "occurrences": 3 + }, + "0xefc1c73a3d8728dc4cf2a18ac5705fe93e5914ac": { + "address": "0xefc1c73a3d8728dc4cf2a18ac5705fe93e5914ac", + "symbol": "METRIC", + "decimals": 18, + "name": "Metric.exchange", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xefc1c73a3d8728dc4cf2a18ac5705fe93e5914ac.png", + "aggregators": ["CoinMarketCap", "LiFi", "Rubic"], + "occurrences": 3 + }, + "0x4674672bcddda2ea5300f5207e1158185c944bc0": { + "address": "0x4674672bcddda2ea5300f5207e1158185c944bc0", + "symbol": "GXT", + "decimals": 18, + "name": "Gem Exchange and Trading", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x4674672bcddda2ea5300f5207e1158185c944bc0.png", + "aggregators": ["CoinMarketCap", "Rubic", "Rango"], + "occurrences": 3 + }, + "0xd82bb924a1707950903e2c0a619824024e254cd1": { + "address": "0xd82bb924a1707950903e2c0a619824024e254cd1", + "symbol": "DAOFI", + "decimals": 18, + "name": "DAOfi", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xd82bb924a1707950903e2c0a619824024e254cd1.png", + "aggregators": ["CoinMarketCap", "Socket", "Rubic"], + "occurrences": 3 + }, + "0x8d3e855f3f55109d473735ab76f753218400fe96": { + "address": "0x8d3e855f3f55109d473735ab76f753218400fe96", + "symbol": "BUND", + "decimals": 18, + "name": "Bundles", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x8d3e855f3f55109d473735ab76f753218400fe96.png", + "aggregators": ["CoinMarketCap", "Rubic", "Rango"], + "occurrences": 3 + }, + "0xba358b6f5b4c0215650444b8c30d870b55050d2d": { + "address": "0xba358b6f5b4c0215650444b8c30d870b55050d2d", + "symbol": "HUB", + "decimals": 18, + "name": "Hub Token", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xba358b6f5b4c0215650444b8c30d870b55050d2d.png", + "aggregators": ["Metamask", "Socket", "Rubic"], + "occurrences": 3 + }, + "0x7b3d36eb606f873a75a6ab68f8c999848b04f935": { + "address": "0x7b3d36eb606f873a75a6ab68f8c999848b04f935", + "symbol": "LOOT", + "decimals": 18, + "name": "NFTLootBox.com", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x7b3d36eb606f873a75a6ab68f8c999848b04f935.png", + "aggregators": ["CoinMarketCap", "Socket", "Rubic"], + "occurrences": 3 + }, + "0x0fe629d1e84e171f8ff0c1ded2cc2221caa48a3f": { + "address": "0x0fe629d1e84e171f8ff0c1ded2cc2221caa48a3f", + "symbol": "MASK", + "decimals": 18, + "name": "Mask", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x0fe629d1e84e171f8ff0c1ded2cc2221caa48a3f.png", + "aggregators": ["CoinMarketCap", "LiFi", "Rubic"], + "occurrences": 3 + }, + "0x2b4200a8d373d484993c37d63ee14aee0096cd12": { + "address": "0x2b4200a8d373d484993c37d63ee14aee0096cd12", + "symbol": "USDFL", + "decimals": 18, + "name": "USDFreeLiquidity", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x2b4200a8d373d484993c37d63ee14aee0096cd12.png", + "aggregators": ["CoinMarketCap", "Socket", "Rubic"], + "occurrences": 3 + }, + "0x0fcbc31c503b4a9ed90e87f8ff46c318a4a14260": { + "address": "0x0fcbc31c503b4a9ed90e87f8ff46c318a4a14260", + "symbol": "QTF", + "decimals": 8, + "name": "Quantfury Token", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x0fcbc31c503b4a9ed90e87f8ff46c318a4a14260.png", + "aggregators": ["CoinMarketCap", "Rubic", "Rango"], + "occurrences": 3 + }, + "0xe6c3502997f97f9bde34cb165fbce191065e068f": { + "address": "0xe6c3502997f97f9bde34cb165fbce191065e068f", + "symbol": "KBTC", + "decimals": 18, + "name": "KBTC", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xe6c3502997f97f9bde34cb165fbce191065e068f.png", + "aggregators": ["CoinMarketCap", "Socket", "Rubic"], + "occurrences": 3 + }, + "0x75739d5944534115d7c54ee8c73f186d793bae02": { + "address": "0x75739d5944534115d7c54ee8c73f186d793bae02", + "symbol": "CO2", + "decimals": 18, + "name": "Collective", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x75739d5944534115d7c54ee8c73f186d793bae02.png", + "aggregators": ["CoinMarketCap", "LiFi", "Rubic"], + "occurrences": 3 + }, + "0xeb58343b36c7528f23caae63a150240241310049": { + "address": "0xeb58343b36c7528f23caae63a150240241310049", + "symbol": "NBU", + "decimals": 18, + "name": "NBU", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xeb58343b36c7528f23caae63a150240241310049.png", + "aggregators": ["Metamask", "Socket", "Rubic"], + "occurrences": 3 + }, + "0x40986a85b4cfcdb054a6cbfb1210194fee51af88": { + "address": "0x40986a85b4cfcdb054a6cbfb1210194fee51af88", + "symbol": "UFARM", + "decimals": 18, + "name": "UniFarm", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x40986a85b4cfcdb054a6cbfb1210194fee51af88.png", + "aggregators": ["CoinMarketCap", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x6c7b97c7e09e790d161769a52f155125fac6d5a1": { + "address": "0x6c7b97c7e09e790d161769a52f155125fac6d5a1", + "symbol": "ANGEL", + "decimals": 18, + "name": "Angel", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x6c7b97c7e09e790d161769a52f155125fac6d5a1.png", + "aggregators": ["CoinMarketCap", "Socket", "Rubic"], + "occurrences": 3 + }, + "0x65f9a292f1aeed5d755aa2fd2fb17ab2e9431447": { + "address": "0x65f9a292f1aeed5d755aa2fd2fb17ab2e9431447", + "symbol": "SOMEE", + "decimals": 18, + "name": "SoMee.Social", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x65f9a292f1aeed5d755aa2fd2fb17ab2e9431447.png", + "aggregators": ["CoinMarketCap", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x853bb55c1f469902f088a629db8c8803a9be3857": { + "address": "0x853bb55c1f469902f088a629db8c8803a9be3857", + "symbol": "ONE1INCH", + "decimals": 18, + "name": "one1INCH", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x853bb55c1f469902f088a629db8c8803a9be3857.png", + "aggregators": ["CoinMarketCap", "Socket", "Rubic"], + "occurrences": 3 + }, + "0xc3d088842dcf02c13699f936bb83dfbbc6f721ab": { + "address": "0xc3d088842dcf02c13699f936bb83dfbbc6f721ab", + "symbol": "VETH", + "decimals": 18, + "name": "Voucher Ethereum", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xc3d088842dcf02c13699f936bb83dfbbc6f721ab.png", + "aggregators": ["CoinMarketCap", "Socket", "Rubic"], + "occurrences": 3 + }, + "0xc40f23a3e9613e012944f7957edce97899fa920d": { + "address": "0xc40f23a3e9613e012944f7957edce97899fa920d", + "symbol": "DHP", + "decimals": 18, + "name": "dHealth", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xc40f23a3e9613e012944f7957edce97899fa920d.png", + "aggregators": ["CoinMarketCap", "Socket", "Rubic"], + "occurrences": 3 + }, + "0xa23c1194d421f252b4e6d5edcc3205f7650a4ebe": { + "address": "0xa23c1194d421f252b4e6d5edcc3205f7650a4ebe", + "symbol": "LBP", + "decimals": 18, + "name": "Launch Block", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xa23c1194d421f252b4e6d5edcc3205f7650a4ebe.png", + "aggregators": ["CoinMarketCap", "Rubic", "Rango"], + "occurrences": 3 + }, + "0xe803178b48a0e560c2b19f3b3d4e504f79d229ce": { + "address": "0xe803178b48a0e560c2b19f3b3d4e504f79d229ce", + "symbol": "BOBC", + "decimals": 18, + "name": "bobcoin", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xe803178b48a0e560c2b19f3b3d4e504f79d229ce.png", + "aggregators": ["CoinMarketCap", "Rubic", "Rango"], + "occurrences": 3 + }, + "0xb620be8a1949aa9532e6a3510132864ef9bc3f82": { + "address": "0xb620be8a1949aa9532e6a3510132864ef9bc3f82", + "symbol": "LFT", + "decimals": 18, + "name": "LendFlare DAO Token", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xb620be8a1949aa9532e6a3510132864ef9bc3f82.png", + "aggregators": ["CoinMarketCap", "LiFi", "Rubic"], + "occurrences": 3 + }, + "0x3cbb7f5d7499af626026e96a2f05df806f2200dc": { + "address": "0x3cbb7f5d7499af626026e96a2f05df806f2200dc", + "symbol": "PANDA", + "decimals": 18, + "name": "Panda DAO", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x3cbb7f5d7499af626026e96a2f05df806f2200dc.png", + "aggregators": ["CoinMarketCap", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x4e4a47cac6a28a62dcc20990ed2cda9bc659469f": { + "address": "0x4e4a47cac6a28a62dcc20990ed2cda9bc659469f", + "symbol": "SHIT", + "decimals": 18, + "name": "ShitCoin", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x4e4a47cac6a28a62dcc20990ed2cda9bc659469f.png", + "aggregators": ["CoinMarketCap", "Rubic", "Rango"], + "occurrences": 3 + }, + "0xc91a71a1ffa3d8b22ba615ba1b9c01b2bbbf55ad": { + "address": "0xc91a71a1ffa3d8b22ba615ba1b9c01b2bbbf55ad", + "symbol": "ZZ", + "decimals": 18, + "name": "ZigZag", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xc91a71a1ffa3d8b22ba615ba1b9c01b2bbbf55ad.png", + "aggregators": ["CoinMarketCap", "LiFi", "Rubic"], + "occurrences": 3 + }, + "0xf941d3aabf2ee0f5589e68ba6047b8329592b366": { + "address": "0xf941d3aabf2ee0f5589e68ba6047b8329592b366", + "symbol": "HEEL", + "decimals": 9, + "name": "Good Dog", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xf941d3aabf2ee0f5589e68ba6047b8329592b366.png", + "aggregators": ["CoinMarketCap", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x44f5909e97e1cbf5fbbdf0fc92fd83cde5d5c58a": { + "address": "0x44f5909e97e1cbf5fbbdf0fc92fd83cde5d5c58a", + "symbol": "ACRIA", + "decimals": 18, + "name": "Acria Token", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x44f5909e97e1cbf5fbbdf0fc92fd83cde5d5c58a.png", + "aggregators": ["CoinMarketCap", "Rubic", "Rango"], + "occurrences": 3 + }, + "0xcedefe438860d2789da6419b3a19cece2a41038d": { + "address": "0xcedefe438860d2789da6419b3a19cece2a41038d", + "symbol": "LHINU", + "decimals": 18, + "name": "Love Hate Inu", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xcedefe438860d2789da6419b3a19cece2a41038d.png", + "aggregators": ["CoinMarketCap", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x4216663ddc7bd10eaf44609df4dd0f91cd2be7f2": { + "address": "0x4216663ddc7bd10eaf44609df4dd0f91cd2be7f2", + "symbol": "MPEPE", + "decimals": 18, + "name": "MicroPepe", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x4216663ddc7bd10eaf44609df4dd0f91cd2be7f2.png", + "aggregators": ["CoinMarketCap", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x8aa9381b2544b48c26f3b850f6e07e2c5161eb3e": { + "address": "0x8aa9381b2544b48c26f3b850f6e07e2c5161eb3e", + "symbol": "WDOGE", + "decimals": 8, + "name": "Wrapped DOGE", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x8aa9381b2544b48c26f3b850f6e07e2c5161eb3e.png", + "aggregators": ["CoinMarketCap", "Rubic", "Squid"], + "occurrences": 3 + }, + "0xf10c41ca085fc8d9326a65408d14dae28a3e69a5": { + "address": "0xf10c41ca085fc8d9326a65408d14dae28a3e69a5", + "symbol": "ISLM", + "decimals": 18, + "name": "Islamic Coin", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xf10c41ca085fc8d9326a65408d14dae28a3e69a5.png", + "aggregators": ["CoinMarketCap", "Rubic", "Squid"], + "occurrences": 3 + }, + "0x6ad9a31f02f1e790ff85584ea3c3d0001e45cd64": { + "address": "0x6ad9a31f02f1e790ff85584ea3c3d0001e45cd64", + "symbol": "C2H6", + "decimals": 9, + "name": "Ethane", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x6ad9a31f02f1e790ff85584ea3c3d0001e45cd64.png", + "aggregators": ["CoinMarketCap", "Rubic", "Sonarwatch"], + "occurrences": 3 + }, + "0x41ea5d41eeacc2d5c4072260945118a13bb7ebce": { + "address": "0x41ea5d41eeacc2d5c4072260945118a13bb7ebce", + "symbol": "CRE", + "decimals": 18, + "name": "CRESO", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x41ea5d41eeacc2d5c4072260945118a13bb7ebce.png", + "aggregators": ["CoinMarketCap", "Rubic", "Rango"], + "occurrences": 3 + }, + "0xd9adfb67381d392c6e9671f64cdd9014bfcd74f2": { + "address": "0xd9adfb67381d392c6e9671f64cdd9014bfcd74f2", + "symbol": "MORRA", + "decimals": 18, + "name": "Morra", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xd9adfb67381d392c6e9671f64cdd9014bfcd74f2.png", + "aggregators": ["CoinMarketCap", "Rubic", "Sonarwatch"], + "occurrences": 3 + }, + "0xb71bdc7014f3740d0267d41d632cab8371f8ba3c": { + "address": "0xb71bdc7014f3740d0267d41d632cab8371f8ba3c", + "symbol": "MILEI", + "decimals": 18, + "name": "MILEI", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xb71bdc7014f3740d0267d41d632cab8371f8ba3c.png", + "aggregators": ["CoinMarketCap", "Socket", "Rubic"], + "occurrences": 3 + }, + "0xd3210f246ae54c5a45a7b4a83315bf718f591bfc": { + "address": "0xd3210f246ae54c5a45a7b4a83315bf718f591bfc", + "symbol": "ARKI", + "decimals": 9, + "name": "ArkiTech", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xd3210f246ae54c5a45a7b4a83315bf718f591bfc.png", + "aggregators": ["Metamask", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x7ab7d54f8cb054141142f04ba0b3d41ac4c4d61c": { + "address": "0x7ab7d54f8cb054141142f04ba0b3d41ac4c4d61c", + "symbol": "NOTHING", + "decimals": 18, + "name": "NOTHING", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x7ab7d54f8cb054141142f04ba0b3d41ac4c4d61c.png", + "aggregators": ["CoinMarketCap", "Rubic", "Rango"], + "occurrences": 3 + }, + "0xfc5e4ed56153b57aa8ef769eba3e79e58e19be93": { + "address": "0xfc5e4ed56153b57aa8ef769eba3e79e58e19be93", + "symbol": "SOLAV", + "decimals": 18, + "name": "SOLAV TOKEN", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xfc5e4ed56153b57aa8ef769eba3e79e58e19be93.png", + "aggregators": ["CoinMarketCap", "Rubic", "Rango"], + "occurrences": 3 + }, + "0xde8cd13b812bcd82218754a740b27e76ec1e86ad": { + "address": "0xde8cd13b812bcd82218754a740b27e76ec1e86ad", + "symbol": "TRESTLE", + "decimals": 18, + "name": "Trestle", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xde8cd13b812bcd82218754a740b27e76ec1e86ad.png", + "aggregators": ["CoinMarketCap", "Rubic", "Rango"], + "occurrences": 3 + }, + "0xe97f6dde78b11b58cb3e394f15ab592cb2acd290": { + "address": "0xe97f6dde78b11b58cb3e394f15ab592cb2acd290", + "symbol": "MUNITY", + "decimals": 18, + "name": "Metahorse Unity Token", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xe97f6dde78b11b58cb3e394f15ab592cb2acd290.png", + "aggregators": ["CoinMarketCap", "Rubic", "Squid"], + "occurrences": 3 + }, + "0x06d6f0dd6703a1cfe16025dcc55f36f017887627": { + "address": "0x06d6f0dd6703a1cfe16025dcc55f36f017887627", + "symbol": "MTGX", + "decimals": 18, + "name": "Montage Token", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x06d6f0dd6703a1cfe16025dcc55f36f017887627.png", + "aggregators": ["CoinMarketCap", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x02020595e6a34a03a8e9c1f5624b1b7713810083": { + "address": "0x02020595e6a34a03a8e9c1f5624b1b7713810083", + "symbol": "SPCT", + "decimals": 18, + "name": "Spectra Chain", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x02020595e6a34a03a8e9c1f5624b1b7713810083.png", + "aggregators": ["CoinMarketCap", "Socket", "Rubic"], + "occurrences": 3 + }, + "0xfb0489e9753b045ddb35e39c6b0cc02ec6b99ac5": { + "address": "0xfb0489e9753b045ddb35e39c6b0cc02ec6b99ac5", + "symbol": "AGG", + "decimals": 18, + "name": "AGG", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xfb0489e9753b045ddb35e39c6b0cc02ec6b99ac5.png", + "aggregators": ["CoinMarketCap", "Rubic", "Rango"], + "occurrences": 3 + }, + "0xe91598331a36a78f7fefe277ce7c1915da0afb93": { + "address": "0xe91598331a36a78f7fefe277ce7c1915da0afb93", + "symbol": "RB", + "decimals": 18, + "name": "RunesBridge", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xe91598331a36a78f7fefe277ce7c1915da0afb93.png", + "aggregators": ["CoinMarketCap", "Socket", "Rubic"], + "occurrences": 3 + }, + "0xb2a25f7d864636e44bc1bf7a316897652bf07463": { + "address": "0xb2a25f7d864636e44bc1bf7a316897652bf07463", + "symbol": "LEGION", + "decimals": 18, + "name": "LEGION", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xb2a25f7d864636e44bc1bf7a316897652bf07463.png", + "aggregators": ["CoinMarketCap", "Rubic", "Rango"], + "occurrences": 3 + }, + "0xa4fc78495d545fd0991a4bc86a0fe01cda4422bd": { + "address": "0xa4fc78495d545fd0991a4bc86a0fe01cda4422bd", + "symbol": "KETAMINE", + "decimals": 18, + "name": "Ketamine", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xa4fc78495d545fd0991a4bc86a0fe01cda4422bd.png", + "aggregators": ["CoinMarketCap", "Rubic", "Rango"], + "occurrences": 3 + }, + "0xa462bde22d98335e18a21555b6752db93a937cff": { + "address": "0xa462bde22d98335e18a21555b6752db93a937cff", + "symbol": "BOBBY", + "decimals": 18, + "name": "Kennedy Memecoin", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xa462bde22d98335e18a21555b6752db93a937cff.png", + "aggregators": ["CoinMarketCap", "Rubic", "Sonarwatch"], + "occurrences": 3 + }, + "0x1842f548295b222c56939745d8ddf74981d40030": { + "address": "0x1842f548295b222c56939745d8ddf74981d40030", + "symbol": "QUDEFI", + "decimals": 18, + "name": "Qudefi", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x1842f548295b222c56939745d8ddf74981d40030.png", + "aggregators": ["CoinMarketCap", "Rubic", "Sonarwatch"], + "occurrences": 3 + }, + "0x88ee7a3537667958d040216d9dc1752d1274d838": { + "address": "0x88ee7a3537667958d040216d9dc1752d1274d838", + "symbol": "MMC", + "decimals": 6, + "name": "MoveMoveCoin", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x88ee7a3537667958d040216d9dc1752d1274d838.png", + "aggregators": ["CoinMarketCap", "Rubic", "Rango"], + "occurrences": 3 + }, + "0xd0054b65b683dbdd324b51f5f1f16aadeb99a74b": { + "address": "0xd0054b65b683dbdd324b51f5f1f16aadeb99a74b", + "symbol": "HEM", + "decimals": 18, + "name": "Hemera", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xd0054b65b683dbdd324b51f5f1f16aadeb99a74b.png", + "aggregators": ["CoinMarketCap", "Rubic", "Rango"], + "occurrences": 3 + }, + "0xf986408a1788ceb3bb4b4be4aa96a43914168554": { + "address": "0xf986408a1788ceb3bb4b4be4aa96a43914168554", + "symbol": "FASTAI", + "decimals": 18, + "name": "Fast And AI", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xf986408a1788ceb3bb4b4be4aa96a43914168554.png", + "aggregators": ["CoinMarketCap", "Socket", "Rubic"], + "occurrences": 3 + }, + "0xae5b2aa98532c0c27c88f2085d66b5263f4b9fee": { + "address": "0xae5b2aa98532c0c27c88f2085d66b5263f4b9fee", + "symbol": "ISEC", + "decimals": 9, + "name": "IntelliSecure Systems", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xae5b2aa98532c0c27c88f2085d66b5263f4b9fee.png", + "aggregators": ["CoinMarketCap", "Socket", "Rubic"], + "occurrences": 3 + }, + "0xe683d3bda5ae110497aae63f2561694a4374f2ae": { + "address": "0xe683d3bda5ae110497aae63f2561694a4374f2ae", + "symbol": "TRUMPSFIGHT", + "decimals": 18, + "name": "TrumpsFight", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xe683d3bda5ae110497aae63f2561694a4374f2ae.png", + "aggregators": ["CoinMarketCap", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x79874e049a65c330b23f99cf09dd93e58b1f46ad": { + "address": "0x79874e049a65c330b23f99cf09dd93e58b1f46ad", + "symbol": "BBL", + "decimals": 18, + "name": "Babble AI", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x79874e049a65c330b23f99cf09dd93e58b1f46ad.png", + "aggregators": ["CoinMarketCap", "Socket", "Rubic"], + "occurrences": 3 + }, + "0x5f8b6827ec4c0de4787e19c30d9eda1e264a7858": { + "address": "0x5f8b6827ec4c0de4787e19c30d9eda1e264a7858", + "symbol": "CRYPT", + "decimals": 18, + "name": "Cryptify", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x5f8b6827ec4c0de4787e19c30d9eda1e264a7858.png", + "aggregators": ["CoinMarketCap", "Rubic", "Sonarwatch"], + "occurrences": 3 + }, + "0xf1eccd41cce1f4beb8c5ca87de7949816ce05a45": { + "address": "0xf1eccd41cce1f4beb8c5ca87de7949816ce05a45", + "symbol": "MOCK", + "decimals": 18, + "name": "Mock Capital", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xf1eccd41cce1f4beb8c5ca87de7949816ce05a45.png", + "aggregators": ["CoinMarketCap", "Socket", "Rubic"], + "occurrences": 3 + }, + "0xd166b7d9824cc5359360b47389aba9341ce12619": { + "address": "0xd166b7d9824cc5359360b47389aba9341ce12619", + "symbol": "PNX", + "decimals": 9, + "name": "Phenx", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xd166b7d9824cc5359360b47389aba9341ce12619.png", + "aggregators": ["CoinMarketCap", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x84f171f4c7b43966231847cc6e60416e6c3a7360": { + "address": "0x84f171f4c7b43966231847cc6e60416e6c3a7360", + "symbol": "EVAI", + "decimals": 18, + "name": "EVA Intelligence", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x84f171f4c7b43966231847cc6e60416e6c3a7360.png", + "aggregators": ["CoinMarketCap", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x7099ab9e42fa7327a6b15e0a0c120c3e50d11bec": { + "address": "0x7099ab9e42fa7327a6b15e0a0c120c3e50d11bec", + "symbol": "BTC", + "decimals": 9, + "name": "HarryPotterTrumpSonic100Inu", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x7099ab9e42fa7327a6b15e0a0c120c3e50d11bec.png", + "aggregators": ["CoinMarketCap", "Socket", "Rubic"], + "occurrences": 3 + }, + "0x41a1ef3d81d091465f22e8ed2a7e06d59a8532b7": { + "address": "0x41a1ef3d81d091465f22e8ed2a7e06d59a8532b7", + "symbol": "FCO", + "decimals": 18, + "name": "Fanatico", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x41a1ef3d81d091465f22e8ed2a7e06d59a8532b7.png", + "aggregators": ["CoinMarketCap", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x90f29ccd18c9181a9243eff8f7546eef4b64994c": { + "address": "0x90f29ccd18c9181a9243eff8f7546eef4b64994c", + "symbol": "SIMAI", + "decimals": 18, + "name": "Simian AI", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x90f29ccd18c9181a9243eff8f7546eef4b64994c.png", + "aggregators": ["CoinMarketCap", "Rubic", "Sonarwatch"], + "occurrences": 3 + }, + "0x6f365eb3686ee95bdefbae71f1728d62c0af7ab1": { + "address": "0x6f365eb3686ee95bdefbae71f1728d62c0af7ab1", + "symbol": "AITHER", + "decimals": 18, + "name": "Aither", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x6f365eb3686ee95bdefbae71f1728d62c0af7ab1.png", + "aggregators": ["CoinMarketCap", "Rubic", "Sonarwatch"], + "occurrences": 3 + }, + "0xc7068fff81f3a5b8c49cf6d35b3bc524c3f045e9": { + "address": "0xc7068fff81f3a5b8c49cf6d35b3bc524c3f045e9", + "symbol": "MYST", + "decimals": 18, + "name": "MYST", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xc7068fff81f3a5b8c49cf6d35b3bc524c3f045e9.png", + "aggregators": ["CoinMarketCap", "Rubic", "Sonarwatch"], + "occurrences": 3 + }, + "0x15cdf971fb7b5074b497add287185ab64cc0c375": { + "address": "0x15cdf971fb7b5074b497add287185ab64cc0c375", + "symbol": "HOODRAT", + "decimals": 9, + "name": "Hoodrat", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x15cdf971fb7b5074b497add287185ab64cc0c375.png", + "aggregators": ["CoinMarketCap", "Socket", "Rubic"], + "occurrences": 3 + }, + "0x4bd4a35b73c8f5db09ed0b6e2f9ae8999b5971b0": { + "address": "0x4bd4a35b73c8f5db09ed0b6e2f9ae8999b5971b0", + "symbol": "FAI", + "decimals": 18, + "name": "Freelance AI", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x4bd4a35b73c8f5db09ed0b6e2f9ae8999b5971b0.png", + "aggregators": ["CoinMarketCap", "Socket", "Rubic"], + "occurrences": 3 + }, + "0xaac37daf4aa8048d59e2172b519ec50fce47f8e4": { + "address": "0xaac37daf4aa8048d59e2172b519ec50fce47f8e4", + "symbol": "ARA", + "decimals": 9, + "name": "Ara", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xaac37daf4aa8048d59e2172b519ec50fce47f8e4.png", + "aggregators": ["CoinMarketCap", "Socket", "Rubic"], + "occurrences": 3 + }, + "0x24ace0aa510a4cf8d892e70d538001f84f5b5f3a": { + "address": "0x24ace0aa510a4cf8d892e70d538001f84f5b5f3a", + "symbol": "LUDUS", + "decimals": 18, + "name": "Ludus", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x24ace0aa510a4cf8d892e70d538001f84f5b5f3a.png", + "aggregators": ["CoinMarketCap", "Rubic", "Sonarwatch"], + "occurrences": 3 + }, + "0x418e9cdd368818334d2a97470f77e0ebf1b8224a": { + "address": "0x418e9cdd368818334d2a97470f77e0ebf1b8224a", + "symbol": "AGI", + "decimals": 18, + "name": "Ambient AGI", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x418e9cdd368818334d2a97470f77e0ebf1b8224a.png", + "aggregators": ["CoinMarketCap", "Rubic", "Sonarwatch"], + "occurrences": 3 + }, + "0xcaa1e525acb44aec4e0d17a0e2467aa3ea7ee3a6": { + "address": "0xcaa1e525acb44aec4e0d17a0e2467aa3ea7ee3a6", + "symbol": "MARIE", + "decimals": 9, + "name": "Marie Rose", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xcaa1e525acb44aec4e0d17a0e2467aa3ea7ee3a6.png", + "aggregators": ["CoinMarketCap", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x809b05ff167c7d70425951753bc0eb0fcc8e491f": { + "address": "0x809b05ff167c7d70425951753bc0eb0fcc8e491f", + "symbol": "COMMS", + "decimals": 9, + "name": "CallofMeme", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x809b05ff167c7d70425951753bc0eb0fcc8e491f.png", + "aggregators": ["CoinMarketCap", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x5bc93bab1291885a76644a49f52050cf73e1dca8": { + "address": "0x5bc93bab1291885a76644a49f52050cf73e1dca8", + "symbol": "MMON", + "decimals": 18, + "name": "Multiverse Monkey", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x5bc93bab1291885a76644a49f52050cf73e1dca8.png", + "aggregators": ["CoinMarketCap", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x108f9fe948e7f07a42bf8957de773f5d2c97a00d": { + "address": "0x108f9fe948e7f07a42bf8957de773f5d2c97a00d", + "symbol": "MEMECOIN", + "decimals": 2, + "name": "just memecoin", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x108f9fe948e7f07a42bf8957de773f5d2c97a00d.png", + "aggregators": ["CoinMarketCap", "Rubic", "Rango"], + "occurrences": 3 + }, + "0xcf07d861eb77a0e4c0fd68d7d95ca929a4d56a2e": { + "address": "0xcf07d861eb77a0e4c0fd68d7d95ca929a4d56a2e", + "symbol": "EFLOKI", + "decimals": 9, + "name": "EtherFloki", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xcf07d861eb77a0e4c0fd68d7d95ca929a4d56a2e.png", + "aggregators": ["CoinMarketCap", "Rubic", "Rango"], + "occurrences": 3 + }, + "0xd843713a7e6b3627cca4e7f70d34318d72708152": { + "address": "0xd843713a7e6b3627cca4e7f70d34318d72708152", + "symbol": "FURO", + "decimals": 18, + "name": "Furo", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xd843713a7e6b3627cca4e7f70d34318d72708152.png", + "aggregators": ["CoinMarketCap", "Rubic", "Rango"], + "occurrences": 3 + }, + "0xe226b7ae83a44bb98f67bea28c4ad73b0925c49e": { + "address": "0xe226b7ae83a44bb98f67bea28c4ad73b0925c49e", + "symbol": "QLK", + "decimals": 18, + "name": "Quantlink", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xe226b7ae83a44bb98f67bea28c4ad73b0925c49e.png", + "aggregators": ["CoinMarketCap", "Rubic", "Rango"], + "occurrences": 3 + }, + "0xb160fb3265be197287e647c82fef7913d5491e11": { + "address": "0xb160fb3265be197287e647c82fef7913d5491e11", + "symbol": "SCALR", + "decimals": 18, + "name": "Scalr", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xb160fb3265be197287e647c82fef7913d5491e11.png", + "aggregators": ["CoinMarketCap", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x787b197f793f7d04366536f6a7a56a799868a64b": { + "address": "0x787b197f793f7d04366536f6a7a56a799868a64b", + "symbol": "DISCO", + "decimals": 18, + "name": "Disco By Matt Furie", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x787b197f793f7d04366536f6a7a56a799868a64b.png", + "aggregators": ["CoinMarketCap", "Rubic", "Rango"], + "occurrences": 3 + }, + "0xed3d4e446a96dc3b181b64b75c3c70da41dc3cbe": { + "address": "0xed3d4e446a96dc3b181b64b75c3c70da41dc3cbe", + "symbol": "VDR", + "decimals": 18, + "name": "Vodra", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xed3d4e446a96dc3b181b64b75c3c70da41dc3cbe.png", + "aggregators": ["Metamask", "Rubic", "Rango"], + "occurrences": 3 + }, + "0xf3c7cecf8cbc3066f9a87b310cebe198d00479ac": { + "address": "0xf3c7cecf8cbc3066f9a87b310cebe198d00479ac", + "symbol": "FEG", + "decimals": 18, + "name": "FEG Token", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xf3c7cecf8cbc3066f9a87b310cebe198d00479ac.png", + "aggregators": ["Metamask", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x99cd4ec3f88a45940936f469e4bb72a2a701eeb9": { + "address": "0x99cd4ec3f88a45940936f469e4bb72a2a701eeb9", + "symbol": "STUSDS", + "decimals": 18, + "name": "Staked USDS", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x99cd4ec3f88a45940936f469e4bb72a2a701eeb9.png", + "aggregators": ["1inch", "LiFi", "Rango"], + "occurrences": 3 + }, + "0x3b4f7cb9e60362a49dd04eb0091a374d340e3efd": { + "address": "0x3b4f7cb9e60362a49dd04eb0091a374d340e3efd", + "symbol": "ITAM", + "decimals": 18, + "name": "ITAM", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x3b4f7cb9e60362a49dd04eb0091a374d340e3efd.png", + "aggregators": ["LiFi", "Rubic", "Rango"], + "occurrences": 3 + }, + "0xc4c7ea4fab34bd9fb9a5e1b1a98df76e26e6407c": { + "address": "0xc4c7ea4fab34bd9fb9a5e1b1a98df76e26e6407c", + "symbol": "COCOS", + "decimals": 18, + "name": "COCOS", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xc4c7ea4fab34bd9fb9a5e1b1a98df76e26e6407c.png", + "aggregators": ["LiFi", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x695106ad73f506f9d0a9650a78019a93149ae07c": { + "address": "0x695106ad73f506f9d0a9650a78019a93149ae07c", + "symbol": "BNS", + "decimals": 8, + "name": "BNS Token", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x695106ad73f506f9d0a9650a78019a93149ae07c.png", + "aggregators": ["LiFi", "Socket", "Rubic"], + "occurrences": 3 + }, + "0x68bb81b3f67f7aab5fd1390ecb0b8e1a806f2465": { + "address": "0x68bb81b3f67f7aab5fd1390ecb0b8e1a806f2465", + "symbol": "NFTP", + "decimals": 18, + "name": "NFT Platform Index", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x68bb81b3f67f7aab5fd1390ecb0b8e1a806f2465.png", + "aggregators": ["LiFi", "Socket", "Rubic"], + "occurrences": 3 + }, + "0x1287c0509df9a475ef178471ab2132b9dfd312b3": { + "address": "0x1287c0509df9a475ef178471ab2132b9dfd312b3", + "symbol": "LADZ", + "decimals": 4, + "name": "LADZ", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x1287c0509df9a475ef178471ab2132b9dfd312b3.png", + "aggregators": ["LiFi", "Socket", "Rubic"], + "occurrences": 3 + }, + "0x84810bcf08744d5862b8181f12d17bfd57d3b078": { + "address": "0x84810bcf08744d5862b8181f12d17bfd57d3b078", + "symbol": "SGT", + "decimals": 18, + "name": "SharedStake Governance Token", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x84810bcf08744d5862b8181f12d17bfd57d3b078.png", + "aggregators": ["LiFi", "Socket", "Rubic"], + "occurrences": 3 + }, + "0xe1ca72ff3434b131765c62cbcbc26060f7aba03d": { + "address": "0xe1ca72ff3434b131765c62cbcbc26060f7aba03d", + "symbol": "MOON", + "decimals": 18, + "name": "MOONs on Ethereum", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xe1ca72ff3434b131765c62cbcbc26060f7aba03d.png", + "aggregators": ["LiFi", "Socket", "Rubic"], + "occurrences": 3 + }, + "0x6c249b6f6492864d914361308601a7abb32e68f8": { + "address": "0x6c249b6f6492864d914361308601a7abb32e68f8", + "symbol": "DUA", + "decimals": 18, + "name": "DUA", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x6c249b6f6492864d914361308601a7abb32e68f8.png", + "aggregators": ["LiFi", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x527856315a4bcd2f428ea7fa05ea251f7e96a50a": { + "address": "0x527856315a4bcd2f428ea7fa05ea251f7e96a50a", + "symbol": "CDFI", + "decimals": 18, + "name": "CeDeFiAi", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x527856315a4bcd2f428ea7fa05ea251f7e96a50a.png", + "aggregators": ["LiFi", "Rubic", "Rango"], + "occurrences": 3 + }, + "0xc8cf6d7991f15525488b2a83df53468d682ba4b0": { + "address": "0xc8cf6d7991f15525488b2a83df53468d682ba4b0", + "symbol": "SUSDF", + "decimals": 18, + "name": "Staked Falcon USD", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xc8cf6d7991f15525488b2a83df53468d682ba4b0.png", + "aggregators": ["LiFi", "Rubic", "Squid"], + "occurrences": 3 + }, + "0x00da8466b296e382e5da2bf20962d0cb87200c78": { + "address": "0x00da8466b296e382e5da2bf20962d0cb87200c78", + "symbol": "NOVA", + "decimals": 18, + "name": "SUPERNOVA", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x00da8466b296e382e5da2bf20962d0cb87200c78.png", + "aggregators": ["LiFi", "Socket", "Rango"], + "occurrences": 3 + }, + "0x3f66ae0c8e9fb57f661af4ba8c8445d36ec5d7f7": { + "address": "0x3f66ae0c8e9fb57f661af4ba8c8445d36ec5d7f7", + "symbol": "CRAI", + "decimals": 18, + "name": "Cryptify AI", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x3f66ae0c8e9fb57f661af4ba8c8445d36ec5d7f7.png", + "aggregators": ["Socket", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x16594930d16f3970e1a4317c6016555cb2e7b7fc": { + "address": "0x16594930d16f3970e1a4317c6016555cb2e7b7fc", + "symbol": "TKB", + "decimals": 18, + "name": "TokenBot", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x16594930d16f3970e1a4317c6016555cb2e7b7fc.png", + "aggregators": ["Socket", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x99bb69ee1bbfc7706c3ebb79b21c5b698fe58ec0": { + "address": "0x99bb69ee1bbfc7706c3ebb79b21c5b698fe58ec0", + "symbol": "DHB", + "decimals": 18, + "name": "DeHub", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x99bb69ee1bbfc7706c3ebb79b21c5b698fe58ec0.png", + "aggregators": ["Socket", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x4af8aa621df6dd3e2d653188a357fc2b35c6a037": { + "address": "0x4af8aa621df6dd3e2d653188a357fc2b35c6a037", + "symbol": "SELF", + "decimals": 18, + "name": "SELF Crypto", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x4af8aa621df6dd3e2d653188a357fc2b35c6a037.png", + "aggregators": ["Socket", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x9ef3da23c304d88f856f2928b0be17d9f5d0752f": { + "address": "0x9ef3da23c304d88f856f2928b0be17d9f5d0752f", + "symbol": "MUL", + "decimals": 18, + "name": "Multipool", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x9ef3da23c304d88f856f2928b0be17d9f5d0752f.png", + "aggregators": ["Socket", "Rubic", "Rango"], + "occurrences": 3 + }, + "0xc283c54df1d858570071a053057806ae73cb6a64": { + "address": "0xc283c54df1d858570071a053057806ae73cb6a64", + "symbol": "MAK", + "decimals": 18, + "name": "MetaCene", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xc283c54df1d858570071a053057806ae73cb6a64.png", + "aggregators": ["Socket", "Rubic", "Sonarwatch"], + "occurrences": 3 + }, + "0x4c601dc69affb0d4fc8de1ac303705e432a4a27e": { + "address": "0x4c601dc69affb0d4fc8de1ac303705e432a4a27e", + "symbol": "KCT", + "decimals": 18, + "name": "Konnect", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x4c601dc69affb0d4fc8de1ac303705e432a4a27e.png", + "aggregators": ["Socket", "Rubic", "Rango"], + "occurrences": 3 + }, + "0xc15c94f460c6a01a93b8f9ba919fadcec9310f54": { + "address": "0xc15c94f460c6a01a93b8f9ba919fadcec9310f54", + "symbol": "XAI", + "decimals": 18, + "name": "Xspectra Ai", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xc15c94f460c6a01a93b8f9ba919fadcec9310f54.png", + "aggregators": ["Socket", "Rubic", "Sonarwatch"], + "occurrences": 3 + }, + "0xce9dcc28791a98edfd4175a7d55da9f86c560199": { + "address": "0xce9dcc28791a98edfd4175a7d55da9f86c560199", + "symbol": "ARAI", + "decimals": 18, + "name": "Archi AI", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xce9dcc28791a98edfd4175a7d55da9f86c560199.png", + "aggregators": ["Socket", "Rubic", "Sonarwatch"], + "occurrences": 3 + }, + "0x31ef6148cae611421c5d5c58649faf6b412f6422": { + "address": "0x31ef6148cae611421c5d5c58649faf6b412f6422", + "symbol": "AGV", + "decimals": 8, + "name": "AgentVerse", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x31ef6148cae611421c5d5c58649faf6b412f6422.png", + "aggregators": ["Socket", "Rubic", "Sonarwatch"], + "occurrences": 3 + }, + "0xdb9bd37c6d5fe195923d7487ad50a1e3c5b9bd42": { + "address": "0xdb9bd37c6d5fe195923d7487ad50a1e3c5b9bd42", + "symbol": "HGAI", + "decimals": 18, + "name": "Hygea AI", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xdb9bd37c6d5fe195923d7487ad50a1e3c5b9bd42.png", + "aggregators": ["Socket", "Rubic", "Sonarwatch"], + "occurrences": 3 + }, + "0x3f31f59f7307a0468501f39b6c1175ff9b6cd927": { + "address": "0x3f31f59f7307a0468501f39b6c1175ff9b6cd927", + "symbol": "ZORA", + "decimals": 18, + "name": "Zora AI", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x3f31f59f7307a0468501f39b6c1175ff9b6cd927.png", + "aggregators": ["Socket", "Rubic", "Sonarwatch"], + "occurrences": 3 + }, + "0x3ce1f6bd6b0aa7520a14018dcc2261b1371d7c1a": { + "address": "0x3ce1f6bd6b0aa7520a14018dcc2261b1371d7c1a", + "symbol": "CORN", + "decimals": 18, + "name": "Corn", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x3ce1f6bd6b0aa7520a14018dcc2261b1371d7c1a.png", + "aggregators": ["Socket", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x97d0cfeb4fde54b430307c9482d6f79c761fe9b6": { + "address": "0x97d0cfeb4fde54b430307c9482d6f79c761fe9b6", + "symbol": "EPOCH", + "decimals": 18, + "name": "Epoch", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x97d0cfeb4fde54b430307c9482d6f79c761fe9b6.png", + "aggregators": ["Socket", "Rubic", "Rango"], + "occurrences": 3 + }, + "0xfefe274de1983102d4565b7f14018602d2c830b9": { + "address": "0xfefe274de1983102d4565b7f14018602d2c830b9", + "symbol": "SIKA", + "decimals": 18, + "name": "SikaSwap", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xfefe274de1983102d4565b7f14018602d2c830b9.png", + "aggregators": ["Rubic", "Rango", "Sonarwatch"], + "occurrences": 3 + }, + "0x1b887c8621ed207d831b846951a80474fb17a31d": { + "address": "0x1b887c8621ed207d831b846951a80474fb17a31d", + "symbol": "GUP", + "decimals": 18, + "name": "GearUp", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x1b887c8621ed207d831b846951a80474fb17a31d.png", + "aggregators": ["Rubic", "Rango", "Sonarwatch"], + "occurrences": 3 + }, + "0x498a2e9aaf2309e279b5fcda420cc3ccf16341e4": { + "address": "0x498a2e9aaf2309e279b5fcda420cc3ccf16341e4", + "symbol": "CTAX", + "decimals": 9, + "name": "Cryptax AI", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x498a2e9aaf2309e279b5fcda420cc3ccf16341e4.png", + "aggregators": ["Rubic", "Rango", "Sonarwatch"], + "occurrences": 3 + }, + "0x9ba77c059b5a59a220aa648a6bd97986fb1bf0a9": { + "address": "0x9ba77c059b5a59a220aa648a6bd97986fb1bf0a9", + "symbol": "AGSYS", + "decimals": 18, + "name": "AGENTSYS AI", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x9ba77c059b5a59a220aa648a6bd97986fb1bf0a9.png", + "aggregators": ["Rubic", "Rango", "Sonarwatch"], + "occurrences": 3 + }, + "0x0575bf910466b306afb07e4544203d9e21413c56": { + "address": "0x0575bf910466b306afb07e4544203d9e21413c56", + "symbol": "NOAI", + "decimals": 18, + "name": "Nord Ai", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x0575bf910466b306afb07e4544203d9e21413c56.png", + "aggregators": ["Rubic", "Rango", "Sonarwatch"], + "occurrences": 3 + }, + "0xf190dbd849e372ff824e631a1fdf199f38358bcf": { + "address": "0xf190dbd849e372ff824e631a1fdf199f38358bcf", + "symbol": "BARA", + "decimals": 18, + "name": "Capybara Memecoin", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xf190dbd849e372ff824e631a1fdf199f38358bcf.png", + "aggregators": ["Rubic", "Rango", "Sonarwatch"], + "occurrences": 3 + }, + "0xc8ef4398664b2eed5ee560544f659083d98a3888": { + "address": "0xc8ef4398664b2eed5ee560544f659083d98a3888", + "symbol": "CTM", + "decimals": 18, + "name": "c8ntinuum", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xc8ef4398664b2eed5ee560544f659083d98a3888.png", + "aggregators": ["Rubic", "Rango", "Sonarwatch"], + "occurrences": 3 + }, + "0x7ceec758dfe5ef8c32cde7b2259cc79b1891e8ed": { + "address": "0x7ceec758dfe5ef8c32cde7b2259cc79b1891e8ed", + "symbol": "EVIRE", + "decimals": 18, + "name": "Evire", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x7ceec758dfe5ef8c32cde7b2259cc79b1891e8ed.png", + "aggregators": ["Rubic", "Rango", "Sonarwatch"], + "occurrences": 3 + }, + "0x88fd59e1dd3715a98bb66149da9c944d9e795c12": { + "address": "0x88fd59e1dd3715a98bb66149da9c944d9e795c12", + "symbol": "MOGUL", + "decimals": 18, + "name": "Mogul Productions", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x88fd59e1dd3715a98bb66149da9c944d9e795c12.png", + "aggregators": ["Rubic", "Rango", "Sonarwatch"], + "occurrences": 3 + }, + "0xec2fbe79236fa86bf2aa5d674dea20e2a1e7b01a": { + "address": "0xec2fbe79236fa86bf2aa5d674dea20e2a1e7b01a", + "symbol": "MVRK", + "decimals": 6, + "name": "Mavryk Network", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xec2fbe79236fa86bf2aa5d674dea20e2a1e7b01a.png", + "aggregators": ["Rubic", "Rango", "Sonarwatch"], + "occurrences": 3 + }, + "0x4cf896ac977d07d91626fed71c20f3185b0cb177": { + "address": "0x4cf896ac977d07d91626fed71c20f3185b0cb177", + "symbol": "BCB", + "decimals": 18, + "name": "Bitcoin Bit", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x4cf896ac977d07d91626fed71c20f3185b0cb177.png", + "aggregators": ["Rubic", "Rango", "Sonarwatch"], + "occurrences": 3 + }, + "0x6af53c6ec427525f7240e211941223288a0e7c66": { + "address": "0x6af53c6ec427525f7240e211941223288a0e7c66", + "symbol": "WARPED", + "decimals": 18, + "name": "Warped Games", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x6af53c6ec427525f7240e211941223288a0e7c66.png", + "aggregators": ["Rubic", "Rango", "Sonarwatch"], + "occurrences": 3 + }, + "0x03049b395147713ae53c0617093675b4b86dde78": { + "address": "0x03049b395147713ae53c0617093675b4b86dde78", + "symbol": "PSPS", + "decimals": 18, + "name": "BobaCat", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x03049b395147713ae53c0617093675b4b86dde78.png", + "aggregators": ["Rubic", "Rango", "Sonarwatch"], + "occurrences": 3 + }, + "0x5f973ffd42499224b0a7a16dffb3abc25f04ef24": { + "address": "0x5f973ffd42499224b0a7a16dffb3abc25f04ef24", + "symbol": "LAB", + "decimals": 9, + "name": "Labda", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x5f973ffd42499224b0a7a16dffb3abc25f04ef24.png", + "aggregators": ["Rubic", "Rango", "Sonarwatch"], + "occurrences": 3 + }, + "0x6a8b188fadbe8b52a2c23ea2d0df74f8956e7730": { + "address": "0x6a8b188fadbe8b52a2c23ea2d0df74f8956e7730", + "symbol": "QSWAP", + "decimals": 18, + "name": "Quantum Network", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x6a8b188fadbe8b52a2c23ea2d0df74f8956e7730.png", + "aggregators": ["Rubic", "Rango", "Sonarwatch"], + "occurrences": 3 + }, + "0x8a6d4c8735371ebaf8874fbd518b56edd66024eb": { + "address": "0x8a6d4c8735371ebaf8874fbd518b56edd66024eb", + "symbol": "BLOCKS", + "decimals": 18, + "name": "Blocks Dao", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x8a6d4c8735371ebaf8874fbd518b56edd66024eb.png", + "aggregators": ["Rubic", "Rango", "SushiSwap"], + "occurrences": 3 + }, + "0x1de6289894e1763b6ea01401ed638dc1184b0e9b": { + "address": "0x1de6289894e1763b6ea01401ed638dc1184b0e9b", + "symbol": "INFY", + "decimals": 18, + "name": "Infinity AI", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x1de6289894e1763b6ea01401ed638dc1184b0e9b.png", + "aggregators": ["Rubic", "Rango", "Sonarwatch"], + "occurrences": 3 + }, + "0xf23114fa21af278fa342d980740cb8b89fc82105": { + "address": "0xf23114fa21af278fa342d980740cb8b89fc82105", + "symbol": "ARG", + "decimals": 18, + "name": "Aragon Protocol", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xf23114fa21af278fa342d980740cb8b89fc82105.png", + "aggregators": ["Rubic", "Rango", "Sonarwatch"], + "occurrences": 3 + }, + "0x736ecc5237b31edec6f1ab9a396fae2416b1d96e": { + "address": "0x736ecc5237b31edec6f1ab9a396fae2416b1d96e", + "symbol": "GASP", + "decimals": 18, + "name": "GASP", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x736ecc5237b31edec6f1ab9a396fae2416b1d96e.png", + "aggregators": ["Rubic", "Rango", "Sonarwatch"], + "occurrences": 3 + }, + "0x2fa39203cb335d08e0af7731a8b9ae23d5a59449": { + "address": "0x2fa39203cb335d08e0af7731a8b9ae23d5a59449", + "symbol": "SCRATCH", + "decimals": 18, + "name": "Scratch", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x2fa39203cb335d08e0af7731a8b9ae23d5a59449.png", + "aggregators": ["Rubic", "Rango", "Sonarwatch"], + "occurrences": 3 + }, + "0xec12e2d7acd850fe3953d1dbf860f523914654a7": { + "address": "0xec12e2d7acd850fe3953d1dbf860f523914654a7", + "symbol": "MIRX", + "decimals": 18, + "name": "Mirada AI", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xec12e2d7acd850fe3953d1dbf860f523914654a7.png", + "aggregators": ["Rubic", "Rango", "Sonarwatch"], + "occurrences": 3 + }, + "0xfa955ec865f51c55e3b6ce02528a6844c2eb9c26": { + "address": "0xfa955ec865f51c55e3b6ce02528a6844c2eb9c26", + "symbol": "OPENLI", + "decimals": 9, + "name": "OpenLiquidity", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xfa955ec865f51c55e3b6ce02528a6844c2eb9c26.png", + "aggregators": ["Rubic", "Rango", "Sonarwatch"], + "occurrences": 3 + }, + "0x0cf7356e2d13ae2b57e77286284984a5fc8f88b3": { + "address": "0x0cf7356e2d13ae2b57e77286284984a5fc8f88b3", + "symbol": "SCOT", + "decimals": 18, + "name": "Scotcoin", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x0cf7356e2d13ae2b57e77286284984a5fc8f88b3.png", + "aggregators": ["Rubic", "Rango", "Sonarwatch"], + "occurrences": 3 + }, + "0xe51b8ab09008285a0380dd2680cd9dd5e13924d3": { + "address": "0xe51b8ab09008285a0380dd2680cd9dd5e13924d3", + "symbol": "BSP", + "decimals": 18, + "name": "BallSwap", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xe51b8ab09008285a0380dd2680cd9dd5e13924d3.png", + "aggregators": ["Rubic", "Rango", "Sonarwatch"], + "occurrences": 3 + }, + "0x73c9275c3a2dd84b5741fd59aebf102c91eb033f": { + "address": "0x73c9275c3a2dd84b5741fd59aebf102c91eb033f", + "symbol": "BTRS", + "decimals": 18, + "name": "Bitball Treasure", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x73c9275c3a2dd84b5741fd59aebf102c91eb033f.png", + "aggregators": ["Rubic", "Rango", "Sonarwatch"], + "occurrences": 3 + }, + "0x696969ade0cc455414fc4800ebea505d690b2429": { + "address": "0x696969ade0cc455414fc4800ebea505d690b2429", + "symbol": "PEPENOMICS", + "decimals": 9, + "name": "Pepenomics", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x696969ade0cc455414fc4800ebea505d690b2429.png", + "aggregators": ["Rubic", "Rango", "Sonarwatch"], + "occurrences": 3 + }, + "0x1d2b8fa9b730fa7eb0fbf0f3c527b2381beed2b2": { + "address": "0x1d2b8fa9b730fa7eb0fbf0f3c527b2381beed2b2", + "symbol": "QMIND", + "decimals": 18, + "name": "QMind", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x1d2b8fa9b730fa7eb0fbf0f3c527b2381beed2b2.png", + "aggregators": ["Rubic", "Rango", "Sonarwatch"], + "occurrences": 3 + }, + "0xa26b04b41162b0d7c2e1e2f9a33b752e28304a49": { + "address": "0xa26b04b41162b0d7c2e1e2f9a33b752e28304a49", + "symbol": "AUDAI", + "decimals": 18, + "name": "AuditAI", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xa26b04b41162b0d7c2e1e2f9a33b752e28304a49.png", + "aggregators": ["Rubic", "Rango", "Sonarwatch"], + "occurrences": 3 + }, + "0x1ce9345d16cd3f9332438fc2c18dfa6556c5658e": { + "address": "0x1ce9345d16cd3f9332438fc2c18dfa6556c5658e", + "symbol": "LYLO", + "decimals": 18, + "name": "Lylo ai", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x1ce9345d16cd3f9332438fc2c18dfa6556c5658e.png", + "aggregators": ["Rubic", "Rango", "Sonarwatch"], + "occurrences": 3 + }, + "0x0f79dff082b6f4324528f5ded2d6b8aa6d576277": { + "address": "0x0f79dff082b6f4324528f5ded2d6b8aa6d576277", + "symbol": "USAM", + "decimals": 8, + "name": "Uncle Sam", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x0f79dff082b6f4324528f5ded2d6b8aa6d576277.png", + "aggregators": ["Rubic", "Rango", "Sonarwatch"], + "occurrences": 3 + }, + "0xd347514c12d6acbbec08ceea127bc5e57ddb2847": { + "address": "0xd347514c12d6acbbec08ceea127bc5e57ddb2847", + "symbol": "AVER", + "decimals": 18, + "name": "Aver AI", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xd347514c12d6acbbec08ceea127bc5e57ddb2847.png", + "aggregators": ["Rubic", "Rango", "Sonarwatch"], + "occurrences": 3 + }, + "0xed291c4ea45be02481e7f8359caada27d5909f42": { + "address": "0xed291c4ea45be02481e7f8359caada27d5909f42", + "symbol": "TOAI", + "decimals": 18, + "name": "Traceon AI", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xed291c4ea45be02481e7f8359caada27d5909f42.png", + "aggregators": ["Rubic", "Rango", "Sonarwatch"], + "occurrences": 3 + }, + "0x0d262e5dc4a06a0f1c90ce79c7a60c09dfc884e4": { + "address": "0x0d262e5dc4a06a0f1c90ce79c7a60c09dfc884e4", + "symbol": "J8T", + "decimals": 8, + "name": "JET8 Token", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x0d262e5dc4a06a0f1c90ce79c7a60c09dfc884e4.png", + "aggregators": ["Metamask", "Bancor"], + "occurrences": 2 + }, + "0x00000100f2a2bd000715001920eb70d229700085": { + "address": "0x00000100f2a2bd000715001920eb70d229700085", + "symbol": "TCAD", + "decimals": 18, + "name": "TrueCAD", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x00000100f2a2bd000715001920eb70d229700085.png", + "aggregators": ["Metamask", "Rubic"], + "occurrences": 2 + }, + "0x00006100f7090010005f1bd7ae6122c3c2cf0090": { + "address": "0x00006100f7090010005f1bd7ae6122c3c2cf0090", + "symbol": "TAUD", + "decimals": 18, + "name": "TrueAUD", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x00006100f7090010005f1bd7ae6122c3c2cf0090.png", + "aggregators": ["Metamask", "Rubic"], + "occurrences": 2 + }, + "0xcc665390b03c5d324d8faf81c15ecee29a73bcb4": { + "address": "0xcc665390b03c5d324d8faf81c15ecee29a73bcb4", + "symbol": "ASAP", + "decimals": 18, + "name": "ChainSwap.com Governance Token", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xcc665390b03c5d324d8faf81c15ecee29a73bcb4.png", + "aggregators": ["Metamask", "Rubic"], + "occurrences": 2 + }, + "0x347a96a5bd06d2e15199b032f46fb724d6c73047": { + "address": "0x347a96a5bd06d2e15199b032f46fb724d6c73047", + "symbol": "ASIC", + "decimals": 12, + "name": "Application Specific Internet Coin", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x347a96a5bd06d2e15199b032f46fb724d6c73047.png", + "aggregators": ["Metamask", "Rubic"], + "occurrences": 2 + }, + "0x261b45d85ccfeabb11f022eba346ee8d1cd488c0": { + "address": "0x261b45d85ccfeabb11f022eba346ee8d1cd488c0", + "symbol": "RDAI", + "decimals": 18, + "name": "rDAI", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x261b45d85ccfeabb11f022eba346ee8d1cd488c0.png", + "aggregators": ["Metamask"], + "occurrences": 1 + }, + "0x8292bb45bf1ee4d140127049757c2e0ff06317ed": { + "address": "0x8292bb45bf1ee4d140127049757c2e0ff06317ed", + "symbol": "RLUSD", + "decimals": 18, + "name": "Ripple USD", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x8292bb45bf1ee4d140127049757c2e0ff06317ed.png", + "aggregators": [ + "CoinMarketCap", + "1inch", + "LiFi", + "Socket", + "Rubic", + "Squid", + "Rango", + "Sonarwatch" + ], + "occurrences": 8 + }, + "0x383518188c0c6d7730d91b2c03a03c837814a899": { + "address": "0x383518188c0c6d7730d91b2c03a03c837814a899", + "symbol": "OHM", + "decimals": 9, + "name": "OlympusDAO", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x383518188c0c6d7730d91b2c03a03c837814a899.png", + "aggregators": [ + "CoinMarketCap", + "LiFi", + "TrustWallet", + "Socket", + "Rubic", + "Rango", + "Sonarwatch", + "SushiSwap" + ], + "occurrences": 8 + }, + "0xcccccccccc33d538dbc2ee4feab0a7a1ff4e8a94": { + "address": "0xcccccccccc33d538dbc2ee4feab0a7a1ff4e8a94", + "symbol": "CFG", + "decimals": 18, + "name": "Centrifuge", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xcccccccccc33d538dbc2ee4feab0a7a1ff4e8a94.png", + "aggregators": [ + "CoinMarketCap", + "1inch", + "LiFi", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 7 + }, + "0xe72b141df173b999ae7c1adcbf60cc9833ce56a8": { + "address": "0xe72b141df173b999ae7c1adcbf60cc9833ce56a8", + "symbol": "ETH+", + "decimals": 18, + "name": "ETHPlus", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xe72b141df173b999ae7c1adcbf60cc9833ce56a8.png", + "aggregators": [ + "CoinGecko", + "1inch", + "LiFi", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 7 + }, + "0x1ba9843bd4327c6c77011406de5fa8749f7e3479": { + "address": "0x1ba9843bd4327c6c77011406de5fa8749f7e3479", + "symbol": "ASTG", + "decimals": 18, + "name": "Aave v3 STG", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x1ba9843bd4327c6c77011406de5fa8749f7e3479.png", + "aggregators": [ + "CoinGecko", + "1inch", + "LiFi", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 7 + }, + "0x5b502e3796385e1e9755d7043b9c945c3accec9c": { + "address": "0x5b502e3796385e1e9755d7043b9c945c3accec9c", + "symbol": "AKNC", + "decimals": 18, + "name": "Aave v3 KNC", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x5b502e3796385e1e9755d7043b9c945c3accec9c.png", + "aggregators": [ + "CoinGecko", + "1inch", + "LiFi", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 7 + }, + "0x57f5e098cad7a3d1eed53991d4d66c45c9af7812": { + "address": "0x57f5e098cad7a3d1eed53991d4d66c45c9af7812", + "symbol": "WUSDM", + "decimals": 18, + "name": "Wrapped USDM", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x57f5e098cad7a3d1eed53991d4d66c45c9af7812.png", + "aggregators": [ + "CoinGecko", + "LiFi", + "Socket", + "Rubic", + "Squid", + "Rango", + "Sonarwatch" + ], + "occurrences": 7 + }, + "0x004e9c3ef86bc1ca1f0bb5c7662861ee93350568": { + "address": "0x004e9c3ef86bc1ca1f0bb5c7662861ee93350568", + "symbol": "UNIBTC", + "decimals": 8, + "name": "Universal BTC", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x004e9c3ef86bc1ca1f0bb5c7662861ee93350568.png", + "aggregators": [ + "CoinMarketCap", + "LiFi", + "Socket", + "Rubic", + "Squid", + "Rango", + "Sonarwatch" + ], + "occurrences": 7 + }, + "0xdd3b11ef34cd511a2da159034a05fcb94d806686": { + "address": "0xdd3b11ef34cd511a2da159034a05fcb94d806686", + "symbol": "REKT", + "decimals": 18, + "name": "Rekt", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xdd3b11ef34cd511a2da159034a05fcb94d806686.png", + "aggregators": [ + "CoinGecko", + "1inch", + "Socket", + "Rubic", + "Squid", + "Rango", + "Sonarwatch" + ], + "occurrences": 7 + }, + "0xd11c452fc99cf405034ee446803b6f6c1f6d5ed8": { + "address": "0xd11c452fc99cf405034ee446803b6f6c1f6d5ed8", + "symbol": "TETH", + "decimals": 18, + "name": "Treehouse ETH", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xd11c452fc99cf405034ee446803b6f6c1f6d5ed8.png", + "aggregators": [ + "CoinMarketCap", + "LiFi", + "Socket", + "Rubic", + "Squid", + "Rango", + "Sonarwatch" + ], + "occurrences": 7 + }, + "0xdbb5cf12408a3ac17d668037ce289f9ea75439d7": { + "address": "0xdbb5cf12408a3ac17d668037ce289f9ea75439d7", + "symbol": "WMTX", + "decimals": 6, + "name": "World Mobile Token", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xdbb5cf12408a3ac17d668037ce289f9ea75439d7.png", + "aggregators": [ + "Metamask", + "LiFi", + "Socket", + "Rubic", + "Squid", + "Rango", + "Sonarwatch" + ], + "occurrences": 7 + }, + "0xb7109df1a93f8fe2b8162c6207c9b846c1c68090": { + "address": "0xb7109df1a93f8fe2b8162c6207c9b846c1c68090", + "symbol": "MAX", + "decimals": 18, + "name": "Matr1x", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xb7109df1a93f8fe2b8162c6207c9b846c1c68090.png", + "aggregators": [ + "CoinMarketCap", + "LiFi", + "Socket", + "Rubic", + "Squid", + "Rango", + "Sonarwatch" + ], + "occurrences": 7 + }, + "0x79bbf4508b1391af3a0f4b30bb5fc4aa9ab0e07c": { + "address": "0x79bbf4508b1391af3a0f4b30bb5fc4aa9ab0e07c", + "symbol": "ANON", + "decimals": 18, + "name": "Hey Anon", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x79bbf4508b1391af3a0f4b30bb5fc4aa9ab0e07c.png", + "aggregators": [ + "CoinMarketCap", + "LiFi", + "Socket", + "Rubic", + "Squid", + "Rango", + "Sonarwatch" + ], + "occurrences": 7 + }, + "0x582d872a1b094fc48f5de31d3b73f2d9be47def1": { + "address": "0x582d872a1b094fc48f5de31d3b73f2d9be47def1", + "symbol": "TON", + "decimals": 9, + "name": "Toncoin", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x582d872a1b094fc48f5de31d3b73f2d9be47def1.png", + "aggregators": [ + "CoinMarketCap", + "1inch", + "LiFi", + "Rubic", + "Squid", + "Rango", + "Sonarwatch" + ], + "occurrences": 7 + }, + "0x9d1089802ee608ba84c5c98211afe5f37f96b36c": { + "address": "0x9d1089802ee608ba84c5c98211afe5f37f96b36c", + "symbol": "FUSDC", + "decimals": 6, + "name": "Fluid USDC", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x9d1089802ee608ba84c5c98211afe5f37f96b36c.png", + "aggregators": [ + "CoinGecko", + "LiFi", + "Socket", + "Rubic", + "Rango", + "Sonarwatch", + "SushiSwap" + ], + "occurrences": 7 + }, + "0x9f0c013016e8656bc256f948cd4b79ab25c7b94d": { + "address": "0x9f0c013016e8656bc256f948cd4b79ab25c7b94d", + "symbol": "COOK", + "decimals": 18, + "name": "mETH Protocol", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x9f0c013016e8656bc256f948cd4b79ab25c7b94d.png", + "aggregators": [ + "CoinMarketCap", + "LiFi", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 6 + }, + "0x0f81001ef0a83ecce5ccebf63eb302c70a39a654": { + "address": "0x0f81001ef0a83ecce5ccebf63eb302c70a39a654", + "symbol": "DOLO", + "decimals": 18, + "name": "Dolomite", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x0f81001ef0a83ecce5ccebf63eb302c70a39a654.png", + "aggregators": [ + "CoinMarketCap", + "1inch", + "LiFi", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 6 + }, + "0x4da27a545c0c5b758a6ba100e3a049001de870f5": { + "address": "0x4da27a545c0c5b758a6ba100e3a049001de870f5", + "symbol": "STAAVE", + "decimals": 18, + "name": "Staked Aave", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x4da27a545c0c5b758a6ba100e3a049001de870f5.png", + "aggregators": [ + "Metamask", + "1inch", + "LiFi", + "Socket", + "Rubic", + "Rango" + ], + "occurrences": 6 + }, + "0xfcc5c47be19d06bf83eb04298b026f81069ff65b": { + "address": "0xfcc5c47be19d06bf83eb04298b026f81069ff65b", + "symbol": "YCRV", + "decimals": 18, + "name": "Yearn CRV", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xfcc5c47be19d06bf83eb04298b026f81069ff65b.png", + "aggregators": [ + "CoinGecko", + "LiFi", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 6 + }, + "0xdd629e5241cbc5919847783e6c96b2de4754e438": { + "address": "0xdd629e5241cbc5919847783e6c96b2de4754e438", + "symbol": "MTBILL", + "decimals": 18, + "name": "Midas mTBILL", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xdd629e5241cbc5919847783e6c96b2de4754e438.png", + "aggregators": [ + "CoinGecko", + "LiFi", + "Rubic", + "Squid", + "Rango", + "Sonarwatch" + ], + "occurrences": 6 + }, + "0x16587cf43f044aba0165ffa00acf412631194e4b": { + "address": "0x16587cf43f044aba0165ffa00acf412631194e4b", + "symbol": "SRC", + "decimals": 18, + "name": "Simracer Coin", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x16587cf43f044aba0165ffa00acf412631194e4b.png", + "aggregators": [ + "CoinGecko", + "LiFi", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 6 + }, + "0xdfc5964141c018485b4d017634660f85aa667714": { + "address": "0xdfc5964141c018485b4d017634660f85aa667714", + "symbol": "ODIN", + "decimals": 18, + "name": "Odin Liquidity Network", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xdfc5964141c018485b4d017634660f85aa667714.png", + "aggregators": [ + "CoinGecko", + "LiFi", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 6 + }, + "0xcadc0acd4b445166f12d2c07eac6e2544fbe2eef": { + "address": "0xcadc0acd4b445166f12d2c07eac6e2544fbe2eef", + "symbol": "CADC", + "decimals": 18, + "name": "CAD Coin", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xcadc0acd4b445166f12d2c07eac6e2544fbe2eef.png", + "aggregators": [ + "CoinMarketCap", + "LiFi", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 6 + }, + "0x08037036451c768465369431da5c671ad9b37dbc": { + "address": "0x08037036451c768465369431da5c671ad9b37dbc", + "symbol": "NFTS", + "decimals": 18, + "name": "NFT Stars", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x08037036451c768465369431da5c671ad9b37dbc.png", + "aggregators": [ + "CoinMarketCap", + "LiFi", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 6 + }, + "0x641927e970222b10b2e8cdbc96b1b4f427316f16": { + "address": "0x641927e970222b10b2e8cdbc96b1b4f427316f16", + "symbol": "MEEB", + "decimals": 18, + "name": "MEEB Vault NFTX", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x641927e970222b10b2e8cdbc96b1b4f427316f16.png", + "aggregators": [ + "CoinGecko", + "Socket", + "Rubic", + "Squid", + "Rango", + "Sonarwatch" + ], + "occurrences": 6 + }, + "0x085780639cc2cacd35e474e71f4d000e2405d8f6": { + "address": "0x085780639cc2cacd35e474e71f4d000e2405d8f6", + "symbol": "FXUSD", + "decimals": 18, + "name": "f x Protocol fxUSD", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x085780639cc2cacd35e474e71f4d000e2405d8f6.png", + "aggregators": [ + "CoinGecko", + "LiFi", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 6 + }, + "0xd6c7bb8531295e88d364ea67d5d1acc7d3f87454": { + "address": "0xd6c7bb8531295e88d364ea67d5d1acc7d3f87454", + "symbol": "FTR", + "decimals": 18, + "name": "Fautor", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xd6c7bb8531295e88d364ea67d5d1acc7d3f87454.png", + "aggregators": [ + "CoinMarketCap", + "LiFi", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 6 + }, + "0x8c9532a60e0e7c6bbd2b2c1303f63ace1c3e9811": { + "address": "0x8c9532a60e0e7c6bbd2b2c1303f63ace1c3e9811", + "symbol": "PZETH", + "decimals": 18, + "name": "Renzo Restaked LST", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x8c9532a60e0e7c6bbd2b2c1303f63ace1c3e9811.png", + "aggregators": [ + "CoinMarketCap", + "LiFi", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 6 + }, + "0x227c7df69d3ed1ae7574a1a7685fded90292eb48": { + "address": "0x227c7df69d3ed1ae7574a1a7685fded90292eb48", + "symbol": "MILADY", + "decimals": 18, + "name": "Milady Vault NFTX", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x227c7df69d3ed1ae7574a1a7685fded90292eb48.png", + "aggregators": [ + "CoinGecko", + "Socket", + "Rubic", + "Squid", + "Rango", + "Sonarwatch" + ], + "occurrences": 6 + }, + "0xf197ffc28c23e0309b5559e7a166f2c6164c80aa": { + "address": "0xf197ffc28c23e0309b5559e7a166f2c6164c80aa", + "symbol": "MXNB", + "decimals": 6, + "name": "MXNB", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xf197ffc28c23e0309b5559e7a166f2c6164c80aa.png", + "aggregators": [ + "CoinMarketCap", + "LiFi", + "Rubic", + "Squid", + "Rango", + "Sonarwatch" + ], + "occurrences": 6 + }, + "0xd2877702675e6ceb975b4a1dff9fb7baf4c91ea9": { + "address": "0xd2877702675e6ceb975b4a1dff9fb7baf4c91ea9", + "symbol": "LUNC", + "decimals": 18, + "name": "Wrapped LUNC Token", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xd2877702675e6ceb975b4a1dff9fb7baf4c91ea9.png", + "aggregators": [ + "Metamask", + "TrustWallet", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 6 + }, + "0x136471a34f6ef19fe571effc1ca711fdb8e49f2b": { + "address": "0x136471a34f6ef19fe571effc1ca711fdb8e49f2b", + "symbol": "USYC", + "decimals": 6, + "name": "Circle USYC", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x136471a34f6ef19fe571effc1ca711fdb8e49f2b.png", + "aggregators": [ + "CoinMarketCap", + "LiFi", + "Rubic", + "Squid", + "Rango", + "Sonarwatch" + ], + "occurrences": 6 + }, + "0x1a88df1cfe15af22b3c4c783d4e6f7f9e0c1885d": { + "address": "0x1a88df1cfe15af22b3c4c783d4e6f7f9e0c1885d", + "symbol": "STKGHO", + "decimals": 18, + "name": "Staked GHO Token", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x1a88df1cfe15af22b3c4c783d4e6f7f9e0c1885d.png", + "aggregators": [ + "Metamask", + "LiFi", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 6 + }, + "0x4b6d036d0bc62a633acca6d10956e9dbbb16748f": { + "address": "0x4b6d036d0bc62a633acca6d10956e9dbbb16748f", + "symbol": "BC", + "decimals": 18, + "name": "Blood Crystal", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x4b6d036d0bc62a633acca6d10956e9dbbb16748f.png", + "aggregators": [ + "CoinGecko", + "LiFi", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 6 + }, + "0xba25b2281214300e4e649fead9a6d6acd25f1c0a": { + "address": "0xba25b2281214300e4e649fead9a6d6acd25f1c0a", + "symbol": "TREE", + "decimals": 18, + "name": "Tree", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xba25b2281214300e4e649fead9a6d6acd25f1c0a.png", + "aggregators": [ + "CoinMarketCap", + "LiFi", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 6 + }, + "0x8b12bd54ca9b2311960057c8f3c88013e79316e3": { + "address": "0x8b12bd54ca9b2311960057c8f3c88013e79316e3", + "symbol": "REACH", + "decimals": 18, + "name": "Reach", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x8b12bd54ca9b2311960057c8f3c88013e79316e3.png", + "aggregators": [ + "CoinMarketCap", + "LiFi", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 6 + }, + "0x01d33fd36ec67c6ada32cf36b31e88ee190b1839": { + "address": "0x01d33fd36ec67c6ada32cf36b31e88ee190b1839", + "symbol": "BRZ", + "decimals": 18, + "name": "Brazilian Digital", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x01d33fd36ec67c6ada32cf36b31e88ee190b1839.png", + "aggregators": [ + "CoinMarketCap", + "LiFi", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 6 + }, + "0xf3617e8a04265160b9ee10253a2c78565571cb76": { + "address": "0xf3617e8a04265160b9ee10253a2c78565571cb76", + "symbol": "BLEPE", + "decimals": 18, + "name": "Blepe the Blue", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xf3617e8a04265160b9ee10253a2c78565571cb76.png", + "aggregators": [ + "CoinGecko", + "Socket", + "Rubic", + "Squid", + "Rango", + "Sonarwatch" + ], + "occurrences": 6 + }, + "0xc53342fd7575f572b0ff4569e31941a5b821ac76": { + "address": "0xc53342fd7575f572b0ff4569e31941a5b821ac76", + "symbol": "ETHV", + "decimals": 18, + "name": "Ethereum Volatility Index Token", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xc53342fd7575f572b0ff4569e31941a5b821ac76.png", + "aggregators": [ + "CoinGecko", + "LiFi", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 6 + }, + "0xb45ad160634c528cc3d2926d9807104fa3157305": { + "address": "0xb45ad160634c528cc3d2926d9807104fa3157305", + "symbol": "SDOLA", + "decimals": 18, + "name": "sDOLA", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xb45ad160634c528cc3d2926d9807104fa3157305.png", + "aggregators": [ + "CoinGecko", + "LiFi", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 6 + }, + "0x5f7827fdeb7c20b443265fc2f40845b715385ff2": { + "address": "0x5f7827fdeb7c20b443265fc2f40845b715385ff2", + "symbol": "EURCV", + "decimals": 18, + "name": "EUR CoinVertible", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x5f7827fdeb7c20b443265fc2f40845b715385ff2.png", + "aggregators": [ + "CoinMarketCap", + "1inch", + "LiFi", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 6 + }, + "0xa0d69e286b938e21cbf7e51d71f6a4c8918f482f": { + "address": "0xa0d69e286b938e21cbf7e51d71f6a4c8918f482f", + "symbol": "EUSD", + "decimals": 18, + "name": "Electronic USD", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xa0d69e286b938e21cbf7e51d71f6a4c8918f482f.png", + "aggregators": [ + "CoinMarketCap", + "LiFi", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 6 + }, + "0xce682c89c63d2850cb2ca898e44d6c7c30d897a6": { + "address": "0xce682c89c63d2850cb2ca898e44d6c7c30d897a6", + "symbol": "YUM", + "decimals": 18, + "name": "Yum", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xce682c89c63d2850cb2ca898e44d6c7c30d897a6.png", + "aggregators": [ + "CoinGecko", + "LiFi", + "Rubic", + "Squid", + "Rango", + "Sonarwatch" + ], + "occurrences": 6 + }, + "0x67c5870b4a41d4ebef24d2456547a03f1f3e094b": { + "address": "0x67c5870b4a41d4ebef24d2456547a03f1f3e094b", + "symbol": "G$", + "decimals": 2, + "name": "GoodDollar", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x67c5870b4a41d4ebef24d2456547a03f1f3e094b.png", + "aggregators": [ + "CoinMarketCap", + "LiFi", + "Rubic", + "Rango", + "Sonarwatch", + "SushiSwap" + ], + "occurrences": 6 + }, + "0xe77f6acd24185e149e329c1c0f479201b9ec2f4b": { + "address": "0xe77f6acd24185e149e329c1c0f479201b9ec2f4b", + "symbol": "ZBU", + "decimals": 18, + "name": "Zeebu", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xe77f6acd24185e149e329c1c0f479201b9ec2f4b.png", + "aggregators": [ + "CoinMarketCap", + "LiFi", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 6 + }, + "0x0af55d5ff28a3269d69b98680fd034f115dd53ac": { + "address": "0x0af55d5ff28a3269d69b98680fd034f115dd53ac", + "symbol": "BSL", + "decimals": 8, + "name": "BankSocial", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x0af55d5ff28a3269d69b98680fd034f115dd53ac.png", + "aggregators": [ + "CoinGecko", + "LiFi", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 6 + }, + "0x32c6f1c1731ff8f98ee2ede8954f696446307846": { + "address": "0x32c6f1c1731ff8f98ee2ede8954f696446307846", + "symbol": "BEARDY", + "decimals": 18, + "name": "Bearded Dragon", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x32c6f1c1731ff8f98ee2ede8954f696446307846.png", + "aggregators": [ + "CoinGecko", + "Socket", + "Rubic", + "Rango", + "Sonarwatch", + "SushiSwap" + ], + "occurrences": 6 + }, + "0xc71b5f631354be6853efe9c3ab6b9590f8302e81": { + "address": "0xc71b5f631354be6853efe9c3ab6b9590f8302e81", + "symbol": "ZKJ", + "decimals": 18, + "name": "Polyhedra Network", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xc71b5f631354be6853efe9c3ab6b9590f8302e81.png", + "aggregators": [ + "CoinMarketCap", + "1inch", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 6 + }, + "0x3742f3fcc56b2d46c7b8ca77c23be60cd43ca80a": { + "address": "0x3742f3fcc56b2d46c7b8ca77c23be60cd43ca80a", + "symbol": "STAVAIL", + "decimals": 18, + "name": "Deq Staked AVAIL", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x3742f3fcc56b2d46c7b8ca77c23be60cd43ca80a.png", + "aggregators": [ + "CoinGecko", + "LiFi", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 6 + }, + "0x3d000462fb9826804a45c0ea869b83b69587f2db": { + "address": "0x3d000462fb9826804a45c0ea869b83b69587f2db", + "symbol": "CMPT", + "decimals": 18, + "name": "Spatial Computing", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x3d000462fb9826804a45c0ea869b83b69587f2db.png", + "aggregators": [ + "CoinMarketCap", + "LiFi", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 6 + }, + "0x8a60e489004ca22d775c5f2c657598278d17d9c2": { + "address": "0x8a60e489004ca22d775c5f2c657598278d17d9c2", + "symbol": "USDA", + "decimals": 18, + "name": "USDa", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x8a60e489004ca22d775c5f2c657598278d17d9c2.png", + "aggregators": [ + "CoinGecko", + "LiFi", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 6 + }, + "0x4956b52ae2ff65d74ca2d61207523288e4528f96": { + "address": "0x4956b52ae2ff65d74ca2d61207523288e4528f96", + "symbol": "RLP", + "decimals": 18, + "name": "Resolv RLP", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x4956b52ae2ff65d74ca2d61207523288e4528f96.png", + "aggregators": [ + "CoinMarketCap", + "LiFi", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 6 + }, + "0x824e35f7a75324f99300afac75ecf7354e17ea26": { + "address": "0x824e35f7a75324f99300afac75ecf7354e17ea26", + "symbol": "TIA", + "decimals": 9, + "name": "Tiamonds OLD", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x824e35f7a75324f99300afac75ecf7354e17ea26.png", + "aggregators": [ + "CoinGecko", + "LiFi", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 6 + }, + "0xe6829d9a7ee3040e1276fa75293bde931859e8fa": { + "address": "0xe6829d9a7ee3040e1276fa75293bde931859e8fa", + "symbol": "CMETH", + "decimals": 18, + "name": "Mantle Restaked ETH", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xe6829d9a7ee3040e1276fa75293bde931859e8fa.png", + "aggregators": [ + "CoinMarketCap", + "LiFi", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 6 + }, + "0x8f08b70456eb22f6109f57b8fafe862ed28e6040": { + "address": "0x8f08b70456eb22f6109f57b8fafe862ed28e6040", + "symbol": "KING", + "decimals": 18, + "name": "King Protocol", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x8f08b70456eb22f6109f57b8fafe862ed28e6040.png", + "aggregators": [ + "CoinMarketCap", + "LiFi", + "Rubic", + "Squid", + "Rango", + "Sonarwatch" + ], + "occurrences": 6 + }, + "0x657d9aba1dbb59e53f9f3ecaa878447dcfc96dcb": { + "address": "0x657d9aba1dbb59e53f9f3ecaa878447dcfc96dcb", + "symbol": "YNETHX", + "decimals": 18, + "name": "ynETH MAX", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x657d9aba1dbb59e53f9f3ecaa878447dcfc96dcb.png", + "aggregators": [ + "CoinMarketCap", + "LiFi", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 6 + }, + "0x59f4f336bf3d0c49dbfba4a74ebd2a6ace40539a": { + "address": "0x59f4f336bf3d0c49dbfba4a74ebd2a6ace40539a", + "symbol": "CAT", + "decimals": 9, + "name": "Catcoin", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x59f4f336bf3d0c49dbfba4a74ebd2a6ace40539a.png", + "aggregators": [ + "CoinGecko", + "Socket", + "Rubic", + "Squid", + "Rango", + "Sonarwatch" + ], + "occurrences": 6 + }, + "0x590830dfdf9a3f68afcdde2694773debdf267774": { + "address": "0x590830dfdf9a3f68afcdde2694773debdf267774", + "symbol": "GIZA", + "decimals": 18, + "name": "GIZA", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x590830dfdf9a3f68afcdde2694773debdf267774.png", + "aggregators": [ + "CoinMarketCap", + "LiFi", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 6 + }, + "0x2a8c22e3b10036f3aef5875d04f8441d4188b656": { + "address": "0x2a8c22e3b10036f3aef5875d04f8441d4188b656", + "symbol": "MBASIS", + "decimals": 18, + "name": "Midas mBASIS", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x2a8c22e3b10036f3aef5875d04f8441d4188b656.png", + "aggregators": [ + "CoinGecko", + "LiFi", + "Rubic", + "Squid", + "Rango", + "Sonarwatch" + ], + "occurrences": 6 + }, + "0x1e0b2992079b620aa13a7c2e7c88d2e1e18e46e9": { + "address": "0x1e0b2992079b620aa13a7c2e7c88d2e1e18e46e9", + "symbol": "KOMPETE", + "decimals": 10, + "name": "KOMPETE", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x1e0b2992079b620aa13a7c2e7c88d2e1e18e46e9.png", + "aggregators": [ + "CoinMarketCap", + "LiFi", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 6 + }, + "0x6307b25a665efc992ec1c1bc403c38f3ddd7c661": { + "address": "0x6307b25a665efc992ec1c1bc403c38f3ddd7c661", + "symbol": "GCR", + "decimals": 4, + "name": "Global Coin Research", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x6307b25a665efc992ec1c1bc403c38f3ddd7c661.png", + "aggregators": [ + "CoinMarketCap", + "LiFi", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 6 + }, + "0x240d6faf8c3b1a7394e371792a3bf9d28dd65515": { + "address": "0x240d6faf8c3b1a7394e371792a3bf9d28dd65515", + "symbol": "BRETT", + "decimals": 9, + "name": "Brett ETH", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x240d6faf8c3b1a7394e371792a3bf9d28dd65515.png", + "aggregators": [ + "CoinGecko", + "LiFi", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 6 + }, + "0x7ca5af5ba3472af6049f63c1abc324475d44efc1": { + "address": "0x7ca5af5ba3472af6049f63c1abc324475d44efc1", + "symbol": "KNDX", + "decimals": 9, + "name": "KONDUX", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x7ca5af5ba3472af6049f63c1abc324475d44efc1.png", + "aggregators": [ + "CoinMarketCap", + "LiFi", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 6 + }, + "0xa2762ba628b962f93498d8893b6e4346140fe96d": { + "address": "0xa2762ba628b962f93498d8893b6e4346140fe96d", + "symbol": "INT", + "decimals": 18, + "name": "Intrepid Token", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xa2762ba628b962f93498d8893b6e4346140fe96d.png", + "aggregators": [ + "CoinGecko", + "LiFi", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 6 + }, + "0xcb69b067d9d8d6dd1209fe4557c43586e54f9045": { + "address": "0xcb69b067d9d8d6dd1209fe4557c43586e54f9045", + "symbol": "PSM", + "decimals": 18, + "name": "Possum", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xcb69b067d9d8d6dd1209fe4557c43586e54f9045.png", + "aggregators": [ + "CoinGecko", + "LiFi", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 6 + }, + "0x0563dce613d559a47877ffd1593549fb9d3510d6": { + "address": "0x0563dce613d559a47877ffd1593549fb9d3510d6", + "symbol": "SUPERBID", + "decimals": 18, + "name": "SuperBid", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x0563dce613d559a47877ffd1593549fb9d3510d6.png", + "aggregators": [ + "CoinGecko", + "LiFi", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 6 + }, + "0xf280b16ef293d8e534e370794ef26bf312694126": { + "address": "0xf280b16ef293d8e534e370794ef26bf312694126", + "symbol": "ASTEROID", + "decimals": 9, + "name": "Asteroid Shiba", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xf280b16ef293d8e534e370794ef26bf312694126.png", + "aggregators": [ + "CoinGecko", + "LiFi", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 6 + }, + "0x85cf7f10683c73359e7b06c082eef5851ff2956d": { + "address": "0x85cf7f10683c73359e7b06c082eef5851ff2956d", + "symbol": "LILAI", + "decimals": 18, + "name": "LilAI", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x85cf7f10683c73359e7b06c082eef5851ff2956d.png", + "aggregators": [ + "CoinGecko", + "LiFi", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 6 + }, + "0xfee293840d23b0b2de8c55e1cf7a9f01c157767c": { + "address": "0xfee293840d23b0b2de8c55e1cf7a9f01c157767c", + "symbol": "DEGEN", + "decimals": 18, + "name": "Degen", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xfee293840d23b0b2de8c55e1cf7a9f01c157767c.png", + "aggregators": [ + "CoinMarketCap", + "LiFi", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 6 + }, + "0x9f90b457dea25ef802e38d470dda7343691d8fe1": { + "address": "0x9f90b457dea25ef802e38d470dda7343691d8fe1", + "symbol": "CIOTX", + "decimals": 18, + "name": "Crosschain IOTX", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x9f90b457dea25ef802e38d470dda7343691d8fe1.png", + "aggregators": [ + "CoinMarketCap", + "LiFi", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 6 + }, + "0xbd8fdda057de7e0162b7a386bec253844b5e07a5": { + "address": "0xbd8fdda057de7e0162b7a386bec253844b5e07a5", + "symbol": "JARVIS", + "decimals": 18, + "name": "Jarvis", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xbd8fdda057de7e0162b7a386bec253844b5e07a5.png", + "aggregators": [ + "CoinGecko", + "LiFi", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 6 + }, + "0xc285b7e09a4584d027e5bc36571785b515898246": { + "address": "0xc285b7e09a4584d027e5bc36571785b515898246", + "symbol": "CUSD", + "decimals": 18, + "name": "Coin98 Dollar", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xc285b7e09a4584d027e5bc36571785b515898246.png", + "aggregators": [ + "CoinMarketCap", + "LiFi", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 6 + }, + "0x92e52a1a235d9a103d970901066ce910aacefd37": { + "address": "0x92e52a1a235d9a103d970901066ce910aacefd37", + "symbol": "UCASH", + "decimals": 8, + "name": "U CASH", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x92e52a1a235d9a103d970901066ce910aacefd37.png", + "aggregators": [ + "CoinMarketCap", + "LiFi", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 6 + }, + "0x26946ada5ecb57f3a1f91605050ce45c482c9eb1": { + "address": "0x26946ada5ecb57f3a1f91605050ce45c482c9eb1", + "symbol": "BSOV", + "decimals": 8, + "name": "BitcoinSoV", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x26946ada5ecb57f3a1f91605050ce45c482c9eb1.png", + "aggregators": [ + "CoinMarketCap", + "LiFi", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 6 + }, + "0x1b073382e63411e3bcffe90ac1b9a43fefa1ec6f": { + "address": "0x1b073382e63411e3bcffe90ac1b9a43fefa1ec6f", + "symbol": "BEST", + "decimals": 8, + "name": "Bitpanda Ecosystem", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x1b073382e63411e3bcffe90ac1b9a43fefa1ec6f.png", + "aggregators": [ + "CoinMarketCap", + "LiFi", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 6 + }, + "0x24c19f7101c1731b85f1127eaa0407732e36ecdd": { + "address": "0x24c19f7101c1731b85f1127eaa0407732e36ecdd", + "symbol": "SGT", + "decimals": 18, + "name": "Sharedstake.finance", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x24c19f7101c1731b85f1127eaa0407732e36ecdd.png", + "aggregators": [ + "Metamask", + "LiFi", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 6 + }, + "0xc56c2b7e71b54d38aab6d52e94a04cbfa8f604fa": { + "address": "0xc56c2b7e71b54d38aab6d52e94a04cbfa8f604fa", + "symbol": "ZUSD", + "decimals": 6, + "name": "ZUSD", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xc56c2b7e71b54d38aab6d52e94a04cbfa8f604fa.png", + "aggregators": [ + "CoinMarketCap", + "LiFi", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 6 + }, + "0xd0660cd418a64a1d44e9214ad8e459324d8157f1": { + "address": "0xd0660cd418a64a1d44e9214ad8e459324d8157f1", + "symbol": "WOOFY", + "decimals": 12, + "name": "Woofy", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xd0660cd418a64a1d44e9214ad8e459324d8157f1.png", + "aggregators": [ + "CoinMarketCap", + "LiFi", + "Socket", + "Rubic", + "Rango", + "SushiSwap" + ], + "occurrences": 6 + }, + "0x8b3870df408ff4d7c3a26df852d41034eda11d81": { + "address": "0x8b3870df408ff4d7c3a26df852d41034eda11d81", + "symbol": "IOI", + "decimals": 6, + "name": "IOI Token", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x8b3870df408ff4d7c3a26df852d41034eda11d81.png", + "aggregators": [ + "CoinMarketCap", + "LiFi", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 6 + }, + "0x2c4f1df9c7de0c59778936c9b145ff56813f3295": { + "address": "0x2c4f1df9c7de0c59778936c9b145ff56813f3295", + "symbol": "MNTL", + "decimals": 6, + "name": "AssetMantle", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x2c4f1df9c7de0c59778936c9b145ff56813f3295.png", + "aggregators": [ + "CoinMarketCap", + "LiFi", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 6 + }, + "0x8e964e35a76103af4c7d7318e1b1a82c682ae296": { + "address": "0x8e964e35a76103af4c7d7318e1b1a82c682ae296", + "symbol": "FLZ", + "decimals": 18, + "name": "Fellaz", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x8e964e35a76103af4c7d7318e1b1a82c682ae296.png", + "aggregators": [ + "CoinMarketCap", + "LiFi", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 6 + }, + "0xf8173a39c56a554837c4c7f104153a005d284d11": { + "address": "0xf8173a39c56a554837c4c7f104153a005d284d11", + "symbol": "EDU", + "decimals": 18, + "name": "EDU Coin", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xf8173a39c56a554837c4c7f104153a005d284d11.png", + "aggregators": [ + "CoinMarketCap", + "LiFi", + "Socket", + "Rubic", + "Rango", + "SushiSwap" + ], + "occurrences": 6 + }, + "0xa663b02cf0a4b149d2ad41910cb81e23e1c41c32": { + "address": "0xa663b02cf0a4b149d2ad41910cb81e23e1c41c32", + "symbol": "SFRAX", + "decimals": 18, + "name": "Staked FRAX", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xa663b02cf0a4b149d2ad41910cb81e23e1c41c32.png", + "aggregators": [ + "CoinMarketCap", + "LiFi", + "Rubic", + "Squid", + "Rango", + "Sonarwatch" + ], + "occurrences": 6 + }, + "0x53dfea0a8cc2a2a2e425e1c174bc162999723ea0": { + "address": "0x53dfea0a8cc2a2a2e425e1c174bc162999723ea0", + "symbol": "JCHF", + "decimals": 18, + "name": "Jarvis Synthetic Swiss Franc", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x53dfea0a8cc2a2a2e425e1c174bc162999723ea0.png", + "aggregators": [ + "LiFi", + "Socket", + "Rubic", + "Rango", + "Sonarwatch", + "SushiSwap" + ], + "occurrences": 6 + }, + "0x720cd16b011b987da3518fbf38c3071d4f0d1495": { + "address": "0x720cd16b011b987da3518fbf38c3071d4f0d1495", + "symbol": "FLUX", + "decimals": 8, + "name": "Flux", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x720cd16b011b987da3518fbf38c3071d4f0d1495.png", + "aggregators": [ + "CoinMarketCap", + "LiFi", + "Socket", + "Rubic", + "Rango" + ], + "occurrences": 5 + }, + "0x4123a133ae3c521fd134d7b13a2dec35b56c2463": { + "address": "0x4123a133ae3c521fd134d7b13a2dec35b56c2463", + "symbol": "OPEN", + "decimals": 8, + "name": "Open Custody Protocol", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x4123a133ae3c521fd134d7b13a2dec35b56c2463.png", + "aggregators": [ + "CoinMarketCap", + "LiFi", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x32b4d049fe4c888d2b92eecaf729f44df6b1f36e": { + "address": "0x32b4d049fe4c888d2b92eecaf729f44df6b1f36e", + "symbol": "ROBO", + "decimals": 18, + "name": "Fabric Protocol", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x32b4d049fe4c888d2b92eecaf729f44df6b1f36e.png", + "aggregators": [ + "CoinMarketCap", + "Socket", + "Rubic", + "Squid", + "Rango" + ], + "occurrences": 5 + }, + "0x925206b8a707096ed26ae47c84747fe0bb734f59": { + "address": "0x925206b8a707096ed26ae47c84747fe0bb734f59", + "symbol": "WBT", + "decimals": 8, + "name": "WhiteBIT Coin", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x925206b8a707096ed26ae47c84747fe0bb734f59.png", + "aggregators": [ + "CoinMarketCap", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0xb478c6245e3d85d6ec3486b62ea872128d562541": { + "address": "0xb478c6245e3d85d6ec3486b62ea872128d562541", + "symbol": "LOOT", + "decimals": 18, + "name": "LootBot", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xb478c6245e3d85d6ec3486b62ea872128d562541.png", + "aggregators": [ + "CoinMarketCap", + "LiFi", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x104e363ac6521e55a24ae724855362acec3febe6": { + "address": "0x104e363ac6521e55a24ae724855362acec3febe6", + "symbol": "ACP", + "decimals": 18, + "name": "Arena Of Faith", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x104e363ac6521e55a24ae724855362acec3febe6.png", + "aggregators": ["CoinGecko", "Rubic", "Squid", "Sonarwatch"], + "occurrences": 4 + }, + "0x1a91b61e884ddd93a0aa83cd6908a4bc07e6f3eb": { + "address": "0x1a91b61e884ddd93a0aa83cd6908a4bc07e6f3eb", + "symbol": "ATN", + "decimals": 9, + "name": "Athene Network", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x1a91b61e884ddd93a0aa83cd6908a4bc07e6f3eb.png", + "aggregators": [ + "CoinGecko", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0xd31e53966bf212e860d48a3a8651a23d09a7fdc3": { + "address": "0xd31e53966bf212e860d48a3a8651a23d09a7fdc3", + "symbol": "DOGEAI", + "decimals": 18, + "name": "DogeAi", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xd31e53966bf212e860d48a3a8651a23d09a7fdc3.png", + "aggregators": [ + "CoinGecko", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0xd109b2a304587569c84308c55465cd9ff0317bfb": { + "address": "0xd109b2a304587569c84308c55465cd9ff0317bfb", + "symbol": "AAMMBPTBALWETH", + "decimals": 18, + "name": "Aave AMM BptBALWETH", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xd109b2a304587569c84308c55465cd9ff0317bfb.png", + "aggregators": [ + "CoinGecko", + "LiFi", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x24d73bca2bd9c3a61e99dfc7cb86d3c379ebded7": { + "address": "0x24d73bca2bd9c3a61e99dfc7cb86d3c379ebded7", + "symbol": "MAI", + "decimals": 18, + "name": "Micro AI", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x24d73bca2bd9c3a61e99dfc7cb86d3c379ebded7.png", + "aggregators": [ + "CoinGecko", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0xade6fdaba1643e4d1eef68da7170f234470938c6": { + "address": "0xade6fdaba1643e4d1eef68da7170f234470938c6", + "symbol": "HARAMBE", + "decimals": 18, + "name": "Harambe", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xade6fdaba1643e4d1eef68da7170f234470938c6.png", + "aggregators": [ + "CoinGecko", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x444444444444c1a66f394025ac839a535246fcc8": { + "address": "0x444444444444c1a66f394025ac839a535246fcc8", + "symbol": "GENI", + "decimals": 9, + "name": "Genius", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x444444444444c1a66f394025ac839a535246fcc8.png", + "aggregators": [ + "CoinMarketCap", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x2614f29c39de46468a921fd0b41fdd99a01f2edf": { + "address": "0x2614f29c39de46468a921fd0b41fdd99a01f2edf", + "symbol": "HLX", + "decimals": 18, + "name": "HELIOS", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x2614f29c39de46468a921fd0b41fdd99a01f2edf.png", + "aggregators": [ + "CoinGecko", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x0b9ae6b1d4f0eeed904d1cef68b9bd47499f3fff": { + "address": "0x0b9ae6b1d4f0eeed904d1cef68b9bd47499f3fff", + "symbol": "NATI", + "decimals": 18, + "name": "IlluminatiCoin", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x0b9ae6b1d4f0eeed904d1cef68b9bd47499f3fff.png", + "aggregators": [ + "CoinGecko", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0xb2e96a63479c2edd2fd62b382c89d5ca79f572d3": { + "address": "0xb2e96a63479c2edd2fd62b382c89d5ca79f572d3", + "symbol": "ZNN", + "decimals": 8, + "name": "Zenon", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xb2e96a63479c2edd2fd62b382c89d5ca79f572d3.png", + "aggregators": [ + "CoinMarketCap", + "1inch", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x6adb2e268de2aa1abf6578e4a8119b960e02928f": { + "address": "0x6adb2e268de2aa1abf6578e4a8119b960e02928f", + "symbol": "SHIBDOGE", + "decimals": 9, + "name": "ShibaDoge", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x6adb2e268de2aa1abf6578e4a8119b960e02928f.png", + "aggregators": [ + "CoinMarketCap", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x1780933e83b09371cf716f3630fe5a422a66a39e": { + "address": "0x1780933e83b09371cf716f3630fe5a422a66a39e", + "symbol": "QDX", + "decimals": 18, + "name": "Quidax", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x1780933e83b09371cf716f3630fe5a422a66a39e.png", + "aggregators": [ + "CoinMarketCap", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0xe77076518a813616315eaaba6ca8e595e845eee9": { + "address": "0xe77076518a813616315eaaba6ca8e595e845eee9", + "symbol": "EEIGEN", + "decimals": 18, + "name": "ether fi Staked EIGEN", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xe77076518a813616315eaaba6ca8e595e845eee9.png", + "aggregators": [ + "CoinGecko", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x9634bdb20bbab07bb52d279fa6e0c53ccc89c879": { + "address": "0x9634bdb20bbab07bb52d279fa6e0c53ccc89c879", + "symbol": "PEPEGA", + "decimals": 9, + "name": "Pepega", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x9634bdb20bbab07bb52d279fa6e0c53ccc89c879.png", + "aggregators": [ + "CoinMarketCap", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x1900e8b5619a3596745f715d0427fe617c729ba9": { + "address": "0x1900e8b5619a3596745f715d0427fe617c729ba9", + "symbol": "CBG", + "decimals": 18, + "name": "Chainbing", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x1900e8b5619a3596745f715d0427fe617c729ba9.png", + "aggregators": [ + "CoinMarketCap", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x965d79f1a1016b574a62986e13ca8ab04dfdd15c": { + "address": "0x965d79f1a1016b574a62986e13ca8ab04dfdd15c", + "symbol": "M2", + "decimals": 18, + "name": "M2", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x965d79f1a1016b574a62986e13ca8ab04dfdd15c.png", + "aggregators": [ + "CoinGecko", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x98968f0747e0a261532cacc0be296375f5c08398": { + "address": "0x98968f0747e0a261532cacc0be296375f5c08398", + "symbol": "MOONCAT", + "decimals": 18, + "name": "MOONCAT Vault NFTX", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x98968f0747e0a261532cacc0be296375f5c08398.png", + "aggregators": [ + "CoinGecko", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x2255718832bc9fd3be1caf75084f4803da14ff01": { + "address": "0x2255718832bc9fd3be1caf75084f4803da14ff01", + "symbol": "VBILL", + "decimals": 6, + "name": "VanEck Treasury Fund", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x2255718832bc9fd3be1caf75084f4803da14ff01.png", + "aggregators": [ + "CoinGecko", + "LiFi", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x303c89f3a4a58872d8b6a3e64c14fdd9ec669c99": { + "address": "0x303c89f3a4a58872d8b6a3e64c14fdd9ec669c99", + "symbol": "BABYNEIRO", + "decimals": 18, + "name": "Baby Neiro", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x303c89f3a4a58872d8b6a3e64c14fdd9ec669c99.png", + "aggregators": [ + "CoinGecko", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x0aee8703d34dd9ae107386d3eff22ae75dd616d1": { + "address": "0x0aee8703d34dd9ae107386d3eff22ae75dd616d1", + "symbol": "SLICE", + "decimals": 18, + "name": "Tranche Finance", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x0aee8703d34dd9ae107386d3eff22ae75dd616d1.png", + "aggregators": [ + "CoinMarketCap", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0xf89674f18309a2e97843c6e9b19c07c22caef6d5": { + "address": "0xf89674f18309a2e97843c6e9b19c07c22caef6d5", + "symbol": "GAMER", + "decimals": 9, + "name": "cyb3rgam3r420", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xf89674f18309a2e97843c6e9b19c07c22caef6d5.png", + "aggregators": [ + "CoinGecko", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x77791a1f85b8c67f17c43ba4a324f9bcd6e83113": { + "address": "0x77791a1f85b8c67f17c43ba4a324f9bcd6e83113", + "symbol": "WAGMI", + "decimals": 18, + "name": "WAGMI", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x77791a1f85b8c67f17c43ba4a324f9bcd6e83113.png", + "aggregators": [ + "CoinGecko", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x50b0696468f42cab1ddc76413a1312aff3cabdf6": { + "address": "0x50b0696468f42cab1ddc76413a1312aff3cabdf6", + "symbol": "CLOSEDAI", + "decimals": 18, + "name": "ClosedAI", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x50b0696468f42cab1ddc76413a1312aff3cabdf6.png", + "aggregators": [ + "CoinGecko", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0xe59d2ff6995a926a574390824a657eed36801e55": { + "address": "0xe59d2ff6995a926a574390824a657eed36801e55", + "symbol": "AAMMUNIAAVEWETH", + "decimals": 18, + "name": "Aave AMM UniAAVEWETH", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xe59d2ff6995a926a574390824a657eed36801e55.png", + "aggregators": [ + "CoinGecko", + "LiFi", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0xf0acf8949e705e0ebb6cb42c2164b0b986454223": { + "address": "0xf0acf8949e705e0ebb6cb42c2164b0b986454223", + "symbol": "BRTR", + "decimals": 8, + "name": "Barter", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xf0acf8949e705e0ebb6cb42c2164b0b986454223.png", + "aggregators": [ + "CoinGecko", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0xdbcd57cc74b180f928258f7b1a32f6f7e64bf12e": { + "address": "0xdbcd57cc74b180f928258f7b1a32f6f7e64bf12e", + "symbol": "BEPE", + "decimals": 18, + "name": "Baby Pepe Token", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xdbcd57cc74b180f928258f7b1a32f6f7e64bf12e.png", + "aggregators": [ + "CoinGecko", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x661c70333aa1850ccdbae82776bb436a0fcfeefb": { + "address": "0x661c70333aa1850ccdbae82776bb436a0fcfeefb", + "symbol": "EBTC", + "decimals": 18, + "name": "eBTC", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x661c70333aa1850ccdbae82776bb436a0fcfeefb.png", + "aggregators": [ + "CoinGecko", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x87931e7ad81914e7898d07c68f145fc0a553d8fb": { + "address": "0x87931e7ad81914e7898d07c68f145fc0a553d8fb", + "symbol": "WIZARD", + "decimals": 18, + "name": "WIZARD Vault NFTX", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x87931e7ad81914e7898d07c68f145fc0a553d8fb.png", + "aggregators": [ + "CoinGecko", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0xb39185e33e8c28e0bb3dbbce24da5dea6379ae91": { + "address": "0xb39185e33e8c28e0bb3dbbce24da5dea6379ae91", + "symbol": "PHUNK", + "decimals": 18, + "name": "PHUNK Vault NFTX", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xb39185e33e8c28e0bb3dbbce24da5dea6379ae91.png", + "aggregators": [ + "CoinGecko", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0xc67b12049c2d0cf6e476bc64c7f82fc6c63cffc5": { + "address": "0xc67b12049c2d0cf6e476bc64c7f82fc6c63cffc5", + "symbol": "GDT", + "decimals": 8, + "name": "Globe Derivative Exchange", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xc67b12049c2d0cf6e476bc64c7f82fc6c63cffc5.png", + "aggregators": [ + "CoinMarketCap", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x32e7c8a6e920a3cf224b678112ac78fdc0fb09d1": { + "address": "0x32e7c8a6e920a3cf224b678112ac78fdc0fb09d1", + "symbol": "BOO", + "decimals": 18, + "name": "BOO", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x32e7c8a6e920a3cf224b678112ac78fdc0fb09d1.png", + "aggregators": [ + "CoinGecko", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x13b2f6928d7204328b0e8e4bcd0379aa06ea21fa": { + "address": "0x13b2f6928d7204328b0e8e4bcd0379aa06ea21fa", + "symbol": "AAMMWBTC", + "decimals": 8, + "name": "Aave AMM WBTC", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x13b2f6928d7204328b0e8e4bcd0379aa06ea21fa.png", + "aggregators": [ + "CoinGecko", + "LiFi", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x3d2b66bc4f9d6388bd2d97b95b565be1686aefb3": { + "address": "0x3d2b66bc4f9d6388bd2d97b95b565be1686aefb3", + "symbol": "LAMBO", + "decimals": 18, + "name": "LAMBO", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x3d2b66bc4f9d6388bd2d97b95b565be1686aefb3.png", + "aggregators": [ + "CoinGecko", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0xd24946147829deaa935be2ad85a3291dbf109c80": { + "address": "0xd24946147829deaa935be2ad85a3291dbf109c80", + "symbol": "AAMMUSDC", + "decimals": 6, + "name": "Aave AMM USDC", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xd24946147829deaa935be2ad85a3291dbf109c80.png", + "aggregators": [ + "CoinGecko", + "LiFi", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0xc58f53a8adff2fb4eb16ed56635772075e2ee123": { + "address": "0xc58f53a8adff2fb4eb16ed56635772075e2ee123", + "symbol": "AAMMUNIWBTCWETH", + "decimals": 18, + "name": "Aave AMM UniWBTCWETH", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xc58f53a8adff2fb4eb16ed56635772075e2ee123.png", + "aggregators": [ + "CoinGecko", + "LiFi", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x450e7f6e3a2f247a51b98c39297a9a5bfbdb3170": { + "address": "0x450e7f6e3a2f247a51b98c39297a9a5bfbdb3170", + "symbol": "EGT", + "decimals": 9, + "name": "Elon GOAT", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x450e7f6e3a2f247a51b98c39297a9a5bfbdb3170.png", + "aggregators": [ + "CoinMarketCap", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0xc9bc48c72154ef3e5425641a3c747242112a46af": { + "address": "0xc9bc48c72154ef3e5425641a3c747242112a46af", + "symbol": "ARAI", + "decimals": 18, + "name": "Aave RAI", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xc9bc48c72154ef3e5425641a3c747242112a46af.png", + "aggregators": [ + "CoinGecko", + "LiFi", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x8dae6cb04688c62d939ed9b68d32bc62e49970b1": { + "address": "0x8dae6cb04688c62d939ed9b68d32bc62e49970b1", + "symbol": "ACRV", + "decimals": 18, + "name": "Aave CRV", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x8dae6cb04688c62d939ed9b68d32bc62e49970b1.png", + "aggregators": [ + "CoinGecko", + "LiFi", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x692accdd8b86692427e0aa4752ae917df01cc56f": { + "address": "0x692accdd8b86692427e0aa4752ae917df01cc56f", + "symbol": "SUNC", + "decimals": 18, + "name": "Sunrise", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x692accdd8b86692427e0aa4752ae917df01cc56f.png", + "aggregators": [ + "CoinGecko", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0xf256cc7847e919fac9b808cc216cac87ccf2f47a": { + "address": "0xf256cc7847e919fac9b808cc216cac87ccf2f47a", + "symbol": "AXSUSHI", + "decimals": 18, + "name": "Aave XSUSHI", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xf256cc7847e919fac9b808cc216cac87ccf2f47a.png", + "aggregators": [ + "CoinGecko", + "LiFi", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x3bbbb6a231d0a1a12c6b79ba5bc2ed6358db5160": { + "address": "0x3bbbb6a231d0a1a12c6b79ba5bc2ed6358db5160", + "symbol": "ZEN", + "decimals": 18, + "name": "Zenith", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x3bbbb6a231d0a1a12c6b79ba5bc2ed6358db5160.png", + "aggregators": [ + "CoinGecko", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0xf5b5efc906513b4344ebabcf47a04901f99f09f3": { + "address": "0xf5b5efc906513b4344ebabcf47a04901f99f09f3", + "symbol": "UBX", + "decimals": 0, + "name": "UBIX Network", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xf5b5efc906513b4344ebabcf47a04901f99f09f3.png", + "aggregators": [ + "CoinMarketCap", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0xb475332d25d34b59176f5c1d94cb9bc9b5e3954a": { + "address": "0xb475332d25d34b59176f5c1d94cb9bc9b5e3954a", + "symbol": "HOBBES", + "decimals": 9, + "name": "Hobbes", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xb475332d25d34b59176f5c1d94cb9bc9b5e3954a.png", + "aggregators": [ + "CoinMarketCap", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x17418038ecf73ba4026c4f428547bf099706f27b": { + "address": "0x17418038ecf73ba4026c4f428547bf099706f27b", + "symbol": "ACRED", + "decimals": 6, + "name": "Apollo Diversified Credit Securitize Fu", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x17418038ecf73ba4026c4f428547bf099706f27b.png", + "aggregators": [ + "CoinGecko", + "LiFi", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0xe9a53c43a0b58706e67341c4055de861e29ee943": { + "address": "0xe9a53c43a0b58706e67341c4055de861e29ee943", + "symbol": "ELMNT", + "decimals": 18, + "name": "Element 280", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xe9a53c43a0b58706e67341c4055de861e29ee943.png", + "aggregators": [ + "CoinGecko", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x809826cceab68c387726af962713b64cb5cb3cca": { + "address": "0x809826cceab68c387726af962713b64cb5cb3cca", + "symbol": "NCASH", + "decimals": 18, + "name": "Nucleus Vision", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x809826cceab68c387726af962713b64cb5cb3cca.png", + "aggregators": [ + "CoinGecko", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x69cbaf6c147086c3c234385556f8a0c6488d3420": { + "address": "0x69cbaf6c147086c3c234385556f8a0c6488d3420", + "symbol": "69420", + "decimals": 9, + "name": "69420", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x69cbaf6c147086c3c234385556f8a0c6488d3420.png", + "aggregators": [ + "CoinGecko", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x69b14e8d3cebfdd8196bfe530954a0c226e5008e": { + "address": "0x69b14e8d3cebfdd8196bfe530954a0c226e5008e", + "symbol": "SPACEPI", + "decimals": 9, + "name": "SpacePi Token", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x69b14e8d3cebfdd8196bfe530954a0c226e5008e.png", + "aggregators": [ + "CoinGecko", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x961d4921e1718e633bac8ded88c4a1cae44b785a": { + "address": "0x961d4921e1718e633bac8ded88c4a1cae44b785a", + "symbol": "STFLIP", + "decimals": 18, + "name": "Thunderhead Staked FLIP", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x961d4921e1718e633bac8ded88c4a1cae44b785a.png", + "aggregators": [ + "CoinGecko", + "LiFi", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0xc353bf07405304aeab75f4c2fac7e88d6a68f98e": { + "address": "0xc353bf07405304aeab75f4c2fac7e88d6a68f98e", + "symbol": "HOPE", + "decimals": 18, + "name": "Hope money", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xc353bf07405304aeab75f4c2fac7e88d6a68f98e.png", + "aggregators": [ + "CoinMarketCap", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x58b9cb810a68a7f3e1e4f8cb45d1b9b3c79705e8": { + "address": "0x58b9cb810a68a7f3e1e4f8cb45d1b9b3c79705e8", + "symbol": "CLEAR", + "decimals": 18, + "name": "Everclear", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x58b9cb810a68a7f3e1e4f8cb45d1b9b3c79705e8.png", + "aggregators": [ + "CoinMarketCap", + "LiFi", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x8484e645a054586a6d6af60c0ee911d7b5180e64": { + "address": "0x8484e645a054586a6d6af60c0ee911d7b5180e64", + "symbol": "DYOR", + "decimals": 18, + "name": "DYOR", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x8484e645a054586a6d6af60c0ee911d7b5180e64.png", + "aggregators": [ + "CoinGecko", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x11ebe21e9d7bf541a18e1e3ac94939018ce88f0b": { + "address": "0x11ebe21e9d7bf541a18e1e3ac94939018ce88f0b", + "symbol": "PITCHFXS", + "decimals": 18, + "name": "Pitch FXS", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x11ebe21e9d7bf541a18e1e3ac94939018ce88f0b.png", + "aggregators": [ + "CoinGecko", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x244f09d92971d03a779aa66d310579a6517ab9a4": { + "address": "0x244f09d92971d03a779aa66d310579a6517ab9a4", + "symbol": "HARAMBE", + "decimals": 18, + "name": "CTO Harambe", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x244f09d92971d03a779aa66d310579a6517ab9a4.png", + "aggregators": [ + "CoinGecko", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x864cb5194722d5a1596f4be8b899916d30dad8d8": { + "address": "0x864cb5194722d5a1596f4be8b899916d30dad8d8", + "symbol": "DOG", + "decimals": 18, + "name": "LEDOG DOG", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x864cb5194722d5a1596f4be8b899916d30dad8d8.png", + "aggregators": [ + "CoinGecko", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0xcae0dd4bda7ff3e700355c7629b24d5d728bd2ce": { + "address": "0xcae0dd4bda7ff3e700355c7629b24d5d728bd2ce", + "symbol": "BOWIE", + "decimals": 18, + "name": "Bowie", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xcae0dd4bda7ff3e700355c7629b24d5d728bd2ce.png", + "aggregators": [ + "CoinGecko", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x1bfce574deff725a3f483c334b790e25c8fa9779": { + "address": "0x1bfce574deff725a3f483c334b790e25c8fa9779", + "symbol": "CETI", + "decimals": 18, + "name": "Tao Ce i", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x1bfce574deff725a3f483c334b790e25c8fa9779.png", + "aggregators": [ + "CoinGecko", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x09675e24ca1eb06023451ac8088eca1040f47585": { + "address": "0x09675e24ca1eb06023451ac8088eca1040f47585", + "symbol": "APES", + "decimals": 18, + "name": "ApeScreener", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x09675e24ca1eb06023451ac8088eca1040f47585.png", + "aggregators": [ + "CoinGecko", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x2bc46eb4ae80ddd9c8a6e064c74327c8244d88e2": { + "address": "0x2bc46eb4ae80ddd9c8a6e064c74327c8244d88e2", + "symbol": "SVM", + "decimals": 18, + "name": "StratoVM", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x2bc46eb4ae80ddd9c8a6e064c74327c8244d88e2.png", + "aggregators": [ + "CoinGecko", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0xe9514a6eba63a0bbbe2faea919e773ebe0f527c1": { + "address": "0xe9514a6eba63a0bbbe2faea919e773ebe0f527c1", + "symbol": "KEK", + "decimals": 18, + "name": "Kekcoin ETH", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xe9514a6eba63a0bbbe2faea919e773ebe0f527c1.png", + "aggregators": [ + "CoinGecko", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0xa0ed3c520dc0632657ad2eaaf19e26c4fd431a84": { + "address": "0xa0ed3c520dc0632657ad2eaaf19e26c4fd431a84", + "symbol": "HPO", + "decimals": 18, + "name": "Hippopotamus", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xa0ed3c520dc0632657ad2eaaf19e26c4fd431a84.png", + "aggregators": [ + "CoinGecko", + "Rubic", + "Rango", + "Sonarwatch", + "SushiSwap" + ], + "occurrences": 5 + }, + "0x66e564819340cc2f54abceb4e49941fa07e426b4": { + "address": "0x66e564819340cc2f54abceb4e49941fa07e426b4", + "symbol": "BRETT", + "decimals": 9, + "name": "BRETT0X66", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x66e564819340cc2f54abceb4e49941fa07e426b4.png", + "aggregators": [ + "CoinGecko", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x1d88713b483a8e45cff0e5cd7c2e15e5fab4534d": { + "address": "0x1d88713b483a8e45cff0e5cd7c2e15e5fab4534d", + "symbol": "STO", + "decimals": 18, + "name": "StakeStone", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x1d88713b483a8e45cff0e5cd7c2e15e5fab4534d.png", + "aggregators": [ + "CoinMarketCap", + "LiFi", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x74e9fee3fcb56bccac22e726cce7a78ca90185e1": { + "address": "0x74e9fee3fcb56bccac22e726cce7a78ca90185e1", + "symbol": "RIZO", + "decimals": 18, + "name": "Rizo", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x74e9fee3fcb56bccac22e726cce7a78ca90185e1.png", + "aggregators": [ + "CoinGecko", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x89deb6c8918a42457bd6ddbcaaf979216c4d774c": { + "address": "0x89deb6c8918a42457bd6ddbcaaf979216c4d774c", + "symbol": "HAI", + "decimals": 18, + "name": "HapticAI", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x89deb6c8918a42457bd6ddbcaaf979216c4d774c.png", + "aggregators": [ + "CoinGecko", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x4591dbff62656e7859afe5e45f6f47d3669fbb28": { + "address": "0x4591dbff62656e7859afe5e45f6f47d3669fbb28", + "symbol": "MKUSD", + "decimals": 18, + "name": "Prisma mkUSD", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x4591dbff62656e7859afe5e45f6f47d3669fbb28.png", + "aggregators": [ + "CoinMarketCap", + "LiFi", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0xcfcffe432a48db53f59c301422d2edd77b2a88d7": { + "address": "0xcfcffe432a48db53f59c301422d2edd77b2a88d7", + "symbol": "TEXAN", + "decimals": 18, + "name": "Texan", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xcfcffe432a48db53f59c301422d2edd77b2a88d7.png", + "aggregators": [ + "CoinGecko", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x50d7ee9708fec39673c92e1aae048eb3685eea9b": { + "address": "0x50d7ee9708fec39673c92e1aae048eb3685eea9b", + "symbol": "GINNAN", + "decimals": 9, + "name": "Ginnan", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x50d7ee9708fec39673c92e1aae048eb3685eea9b.png", + "aggregators": [ + "CoinGecko", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0xdb25ca703181e7484a155dd612b06f57e12be5f0": { + "address": "0xdb25ca703181e7484a155dd612b06f57e12be5f0", + "symbol": "YVYFI", + "decimals": 18, + "name": "YFI yVault", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xdb25ca703181e7484a155dd612b06f57e12be5f0.png", + "aggregators": [ + "CoinGecko", + "LiFi", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x777b6d4730a8a890dc64bf202514ce03ab001c02": { + "address": "0x777b6d4730a8a890dc64bf202514ce03ab001c02", + "symbol": "BARS", + "decimals": 18, + "name": "Silver Standard", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x777b6d4730a8a890dc64bf202514ce03ab001c02.png", + "aggregators": [ + "CoinGecko", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x235c8ee913d93c68d2902a8e0b5a643755705726": { + "address": "0x235c8ee913d93c68d2902a8e0b5a643755705726", + "symbol": "BAG", + "decimals": 18, + "name": "tehBag", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x235c8ee913d93c68d2902a8e0b5a643755705726.png", + "aggregators": [ + "CoinMarketCap", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x4581af35199bbde87a89941220e04e27ce4b0099": { + "address": "0x4581af35199bbde87a89941220e04e27ce4b0099", + "symbol": "PARTY", + "decimals": 18, + "name": "Maximus Pool Party", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x4581af35199bbde87a89941220e04e27ce4b0099.png", + "aggregators": [ + "CoinGecko", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x0c5cb676e38d6973837b9496f6524835208145a2": { + "address": "0x0c5cb676e38d6973837b9496f6524835208145a2", + "symbol": "KABO", + "decimals": 18, + "name": "KaboChan", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x0c5cb676e38d6973837b9496f6524835208145a2.png", + "aggregators": [ + "CoinGecko", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x9ce07410673206c693bcec9b07710767637a564c": { + "address": "0x9ce07410673206c693bcec9b07710767637a564c", + "symbol": "MONKEYS", + "decimals": 9, + "name": "Monkeys Token", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x9ce07410673206c693bcec9b07710767637a564c.png", + "aggregators": [ + "CoinGecko", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x51a59a02ba906194285e81eb1f98ffa28e7cf4c9": { + "address": "0x51a59a02ba906194285e81eb1f98ffa28e7cf4c9", + "symbol": "PEPE", + "decimals": 9, + "name": "Pepe King Prawn", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x51a59a02ba906194285e81eb1f98ffa28e7cf4c9.png", + "aggregators": [ + "CoinGecko", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x81fcc294d91bd8ffc8a822d7df0e2fd2f8526c39": { + "address": "0x81fcc294d91bd8ffc8a822d7df0e2fd2f8526c39", + "symbol": "DOGE", + "decimals": 9, + "name": "Department Of Government Efficiency", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x81fcc294d91bd8ffc8a822d7df0e2fd2f8526c39.png", + "aggregators": [ + "CoinGecko", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0xcfc5bd99915aaa815401c5a41a927ab7a38d29cf": { + "address": "0xcfc5bd99915aaa815401c5a41a927ab7a38d29cf", + "symbol": "THUSD", + "decimals": 18, + "name": "Threshold USD", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xcfc5bd99915aaa815401c5a41a927ab7a38d29cf.png", + "aggregators": [ + "CoinGecko", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x7dd7d5ca67df3e0f5a7f004af3653444b1fcfb76": { + "address": "0x7dd7d5ca67df3e0f5a7f004af3653444b1fcfb76", + "symbol": "BRRR", + "decimals": 18, + "name": "Brrr de Money", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x7dd7d5ca67df3e0f5a7f004af3653444b1fcfb76.png", + "aggregators": [ + "CoinGecko", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x516e2758b044433371076a48127b8cfa7b0bdb43": { + "address": "0x516e2758b044433371076a48127b8cfa7b0bdb43", + "symbol": "SMUDGE", + "decimals": 18, + "name": "Smudge Lord", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x516e2758b044433371076a48127b8cfa7b0bdb43.png", + "aggregators": [ + "CoinMarketCap", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x0f5def84ced3e9e295dae28df96d0b846de92c1a": { + "address": "0x0f5def84ced3e9e295dae28df96d0b846de92c1a", + "symbol": "SDG", + "decimals": 18, + "name": "Crypto SDG", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x0f5def84ced3e9e295dae28df96d0b846de92c1a.png", + "aggregators": [ + "CoinMarketCap", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x14bfc34b292aa3f8afa0c366244ffb77f72761f6": { + "address": "0x14bfc34b292aa3f8afa0c366244ffb77f72761f6", + "symbol": "TNR", + "decimals": 9, + "name": "The Night Riders", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x14bfc34b292aa3f8afa0c366244ffb77f72761f6.png", + "aggregators": [ + "CoinGecko", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0xb7b37b81d4497ab317fc9d4a370cf243043d6bbe": { + "address": "0xb7b37b81d4497ab317fc9d4a370cf243043d6bbe", + "symbol": "VAIX", + "decimals": 18, + "name": "Vectorspace AI X", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xb7b37b81d4497ab317fc9d4a370cf243043d6bbe.png", + "aggregators": [ + "CoinMarketCap", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x8578a8716013c390b95db73065922f512783e2cf": { + "address": "0x8578a8716013c390b95db73065922f512783e2cf", + "symbol": "VIVEK", + "decimals": 9, + "name": "Head of D O G E", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x8578a8716013c390b95db73065922f512783e2cf.png", + "aggregators": [ + "CoinGecko", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x56de8bc61346321d4f2211e3ac3c0a7f00db9b76": { + "address": "0x56de8bc61346321d4f2211e3ac3c0a7f00db9b76", + "symbol": "RENA", + "decimals": 18, + "name": "RENA Finance", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x56de8bc61346321d4f2211e3ac3c0a7f00db9b76.png", + "aggregators": [ + "CoinMarketCap", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0xb1c064c3f2908f741c9dea4afc5773238b53e6cc": { + "address": "0xb1c064c3f2908f741c9dea4afc5773238b53e6cc", + "symbol": "XRP", + "decimals": 9, + "name": "WarioXRPDumbledoreYugioh69Inu", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xb1c064c3f2908f741c9dea4afc5773238b53e6cc.png", + "aggregators": [ + "CoinGecko", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0xbd7e92cf6f857be8541fca6abfb72aef8e16c307": { + "address": "0xbd7e92cf6f857be8541fca6abfb72aef8e16c307", + "symbol": "PRO", + "decimals": 18, + "name": "Prodigy Bot", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xbd7e92cf6f857be8541fca6abfb72aef8e16c307.png", + "aggregators": [ + "CoinGecko", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x9138c8779a0ac8a84d69617d5715bd8afa23c650": { + "address": "0x9138c8779a0ac8a84d69617d5715bd8afa23c650", + "symbol": "FLRBRG", + "decimals": 18, + "name": "Floor Cheese Burger", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x9138c8779a0ac8a84d69617d5715bd8afa23c650.png", + "aggregators": [ + "CoinGecko", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x32462ba310e447ef34ff0d15bce8613aa8c4a244": { + "address": "0x32462ba310e447ef34ff0d15bce8613aa8c4a244", + "symbol": "DHN", + "decimals": 18, + "name": "Dohrnii", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x32462ba310e447ef34ff0d15bce8613aa8c4a244.png", + "aggregators": [ + "CoinMarketCap", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x38b0e3a59183814957d83df2a97492aed1f003e2": { + "address": "0x38b0e3a59183814957d83df2a97492aed1f003e2", + "symbol": "ANML", + "decimals": 18, + "name": "Animal Concerts", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x38b0e3a59183814957d83df2a97492aed1f003e2.png", + "aggregators": [ + "CoinMarketCap", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x69cd13d248830602a60b1f20ab11f5049385877d": { + "address": "0x69cd13d248830602a60b1f20ab11f5049385877d", + "symbol": "BABYPEPE", + "decimals": 18, + "name": "Baby Pepe", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x69cd13d248830602a60b1f20ab11f5049385877d.png", + "aggregators": [ + "CoinGecko", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x7ad16874759348f04b6b6119463d66c07ae54899": { + "address": "0x7ad16874759348f04b6b6119463d66c07ae54899", + "symbol": "PIRB", + "decimals": 18, + "name": "PIRB", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x7ad16874759348f04b6b6119463d66c07ae54899.png", + "aggregators": [ + "CoinGecko", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x776280f68ad33c4d49e6846507b7dbaf7811c89f": { + "address": "0x776280f68ad33c4d49e6846507b7dbaf7811c89f", + "symbol": "ZETH", + "decimals": 18, + "name": "ZeroLiquid ETH", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x776280f68ad33c4d49e6846507b7dbaf7811c89f.png", + "aggregators": [ + "CoinGecko", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x95af148dcdc6b36b977addf7ea2599c5e0483263": { + "address": "0x95af148dcdc6b36b977addf7ea2599c5e0483263", + "symbol": "HACHI", + "decimals": 18, + "name": "Hachiko Inu", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x95af148dcdc6b36b977addf7ea2599c5e0483263.png", + "aggregators": [ + "CoinGecko", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x9f891b5ecbd89dd8a5ee4d1d80efc3fe78b306cb": { + "address": "0x9f891b5ecbd89dd8a5ee4d1d80efc3fe78b306cb", + "symbol": "SONIK", + "decimals": 18, + "name": "SONIK", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x9f891b5ecbd89dd8a5ee4d1d80efc3fe78b306cb.png", + "aggregators": [ + "CoinGecko", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x3f817b28da4940f018c6b5c0a11c555ebb1264f9": { + "address": "0x3f817b28da4940f018c6b5c0a11c555ebb1264f9", + "symbol": "A3A", + "decimals": 18, + "name": "3A", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x3f817b28da4940f018c6b5c0a11c555ebb1264f9.png", + "aggregators": [ + "CoinGecko", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0xe2cfd7a01ec63875cd9da6c7c1b7025166c2fa2f": { + "address": "0xe2cfd7a01ec63875cd9da6c7c1b7025166c2fa2f", + "symbol": "HYPER", + "decimals": 18, + "name": "Hyper", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xe2cfd7a01ec63875cd9da6c7c1b7025166c2fa2f.png", + "aggregators": [ + "CoinGecko", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x616ef40d55c0d2c506f4d6873bda8090b79bf8fc": { + "address": "0x616ef40d55c0d2c506f4d6873bda8090b79bf8fc", + "symbol": "KTO", + "decimals": 9, + "name": "Kounotori", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x616ef40d55c0d2c506f4d6873bda8090b79bf8fc.png", + "aggregators": [ + "CoinMarketCap", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x3419875b4d3bca7f3fdda2db7a476a79fd31b4fe": { + "address": "0x3419875b4d3bca7f3fdda2db7a476a79fd31b4fe", + "symbol": "DZHV", + "decimals": 18, + "name": "DizzyHavoc", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x3419875b4d3bca7f3fdda2db7a476a79fd31b4fe.png", + "aggregators": [ + "CoinGecko", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0xf6afc05fccea5a53f22a3e39ffee861e016bd9a0": { + "address": "0xf6afc05fccea5a53f22a3e39ffee861e016bd9a0", + "symbol": "WOLF", + "decimals": 18, + "name": "LandWolf", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xf6afc05fccea5a53f22a3e39ffee861e016bd9a0.png", + "aggregators": [ + "CoinGecko", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x642ac912a58428767fa14a26a749f9a1b001ba92": { + "address": "0x642ac912a58428767fa14a26a749f9a1b001ba92", + "symbol": "XX", + "decimals": 9, + "name": "XX", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x642ac912a58428767fa14a26a749f9a1b001ba92.png", + "aggregators": [ + "CoinGecko", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x356e17967206efb413b60ab0ba44e269063a26c9": { + "address": "0x356e17967206efb413b60ab0ba44e269063a26c9", + "symbol": "OCISLY", + "decimals": 9, + "name": "Of Course I Still Love You", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x356e17967206efb413b60ab0ba44e269063a26c9.png", + "aggregators": [ + "CoinGecko", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x170dec83c7753aaad20c01a0016b5a2e143990d4": { + "address": "0x170dec83c7753aaad20c01a0016b5a2e143990d4", + "symbol": "WIGGER", + "decimals": 18, + "name": "Wigger", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x170dec83c7753aaad20c01a0016b5a2e143990d4.png", + "aggregators": [ + "CoinGecko", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x67c4d14861f9c975d004cfb3ac305bee673e996e": { + "address": "0x67c4d14861f9c975d004cfb3ac305bee673e996e", + "symbol": "LANDWU", + "decimals": 9, + "name": "Land Wu", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x67c4d14861f9c975d004cfb3ac305bee673e996e.png", + "aggregators": [ + "CoinMarketCap", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x0ee27a1f959ea7ea2aa171a7e2e48fd9f17bb8eb": { + "address": "0x0ee27a1f959ea7ea2aa171a7e2e48fd9f17bb8eb", + "symbol": "GROK", + "decimals": 9, + "name": "First GROK AI", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x0ee27a1f959ea7ea2aa171a7e2e48fd9f17bb8eb.png", + "aggregators": [ + "CoinGecko", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0xd939212f16560447ed82ce46ca40a63db62419b5": { + "address": "0xd939212f16560447ed82ce46ca40a63db62419b5", + "symbol": "MYC", + "decimals": 18, + "name": "Mega Yacht Cult", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xd939212f16560447ed82ce46ca40a63db62419b5.png", + "aggregators": [ + "CoinGecko", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x1a8a39f2986cf9688f6dc9e5ee0cc0bc8d5edd67": { + "address": "0x1a8a39f2986cf9688f6dc9e5ee0cc0bc8d5edd67", + "symbol": "DOGGA", + "decimals": 9, + "name": "Doggacoin", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x1a8a39f2986cf9688f6dc9e5ee0cc0bc8d5edd67.png", + "aggregators": [ + "CoinGecko", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x6ae2a128cd07d672164ca9f2712ea737d198dd41": { + "address": "0x6ae2a128cd07d672164ca9f2712ea737d198dd41", + "symbol": "GOAT", + "decimals": 18, + "name": "Goat Trading", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x6ae2a128cd07d672164ca9f2712ea737d198dd41.png", + "aggregators": [ + "CoinGecko", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x683c8e87e74f3f8f27c0d2ebd4350fe4dba814ef": { + "address": "0x683c8e87e74f3f8f27c0d2ebd4350fe4dba814ef", + "symbol": "XGN", + "decimals": 18, + "name": "0xGen", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x683c8e87e74f3f8f27c0d2ebd4350fe4dba814ef.png", + "aggregators": [ + "CoinGecko", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x1e971b5b21367888239f00da16f0a6b0effecb03": { + "address": "0x1e971b5b21367888239f00da16f0a6b0effecb03", + "symbol": "LEEROY", + "decimals": 18, + "name": "LEEROY JENKINS", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x1e971b5b21367888239f00da16f0a6b0effecb03.png", + "aggregators": [ + "CoinGecko", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x569d0e52c3dbe95983bcc2434cb9f69d905be919": { + "address": "0x569d0e52c3dbe95983bcc2434cb9f69d905be919", + "symbol": "ROAR", + "decimals": 9, + "name": "Roaring Kitty", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x569d0e52c3dbe95983bcc2434cb9f69d905be919.png", + "aggregators": [ + "CoinGecko", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x055999b83f9cade9e3988a0f34ef72817566800d": { + "address": "0x055999b83f9cade9e3988a0f34ef72817566800d", + "symbol": "RTB", + "decimals": 18, + "name": "Roundtable", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x055999b83f9cade9e3988a0f34ef72817566800d.png", + "aggregators": [ + "CoinGecko", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x0b61c4f33bcdef83359ab97673cb5961c6435f4e": { + "address": "0x0b61c4f33bcdef83359ab97673cb5961c6435f4e", + "symbol": "EARN", + "decimals": 18, + "name": "HOLD", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x0b61c4f33bcdef83359ab97673cb5961c6435f4e.png", + "aggregators": [ + "CoinMarketCap", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x716bb5e0839451068885250442a5b8377f582933": { + "address": "0x716bb5e0839451068885250442a5b8377f582933", + "symbol": "FOFAR", + "decimals": 9, + "name": "Fofar0x71", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x716bb5e0839451068885250442a5b8377f582933.png", + "aggregators": [ + "CoinGecko", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0xf1df7305e4bab3885cab5b1e4dfc338452a67891": { + "address": "0xf1df7305e4bab3885cab5b1e4dfc338452a67891", + "symbol": "PALM", + "decimals": 9, + "name": "PaLM AI", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xf1df7305e4bab3885cab5b1e4dfc338452a67891.png", + "aggregators": [ + "CoinMarketCap", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x68592c5c98c4f4a8a4bc6da2121e65da3d1c0917": { + "address": "0x68592c5c98c4f4a8a4bc6da2121e65da3d1c0917", + "symbol": "USDLR", + "decimals": 6, + "name": "Stable USDLR", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x68592c5c98c4f4a8a4bc6da2121e65da3d1c0917.png", + "aggregators": [ + "CoinGecko", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0xb7bda6a89e724f63572ce68fddc1a6d1d5d24bcf": { + "address": "0xb7bda6a89e724f63572ce68fddc1a6d1d5d24bcf", + "symbol": "OGZ", + "decimals": 18, + "name": "OGzClub", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xb7bda6a89e724f63572ce68fddc1a6d1d5d24bcf.png", + "aggregators": [ + "CoinMarketCap", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x79349edd0b8e83ffaa1af2e6ba0c8ce87731c267": { + "address": "0x79349edd0b8e83ffaa1af2e6ba0c8ce87731c267", + "symbol": "WCD", + "decimals": 9, + "name": "WcDonalds", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x79349edd0b8e83ffaa1af2e6ba0c8ce87731c267.png", + "aggregators": [ + "CoinGecko", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x5408d3883ec28c2de205064ae9690142b035fed2": { + "address": "0x5408d3883ec28c2de205064ae9690142b035fed2", + "symbol": "RASTO", + "decimals": 9, + "name": "Rastopyry", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x5408d3883ec28c2de205064ae9690142b035fed2.png", + "aggregators": [ + "CoinGecko", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0xeeecd285f60e802ecb6d8d8d37790c887f9a4b33": { + "address": "0xeeecd285f60e802ecb6d8d8d37790c887f9a4b33", + "symbol": "TOM", + "decimals": 9, + "name": "Big Tom", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xeeecd285f60e802ecb6d8d8d37790c887f9a4b33.png", + "aggregators": [ + "CoinGecko", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x7567d006f6be77e3d87aa831855cb4102e37b17d": { + "address": "0x7567d006f6be77e3d87aa831855cb4102e37b17d", + "symbol": "THND", + "decimals": 18, + "name": "Three Hundred AI", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x7567d006f6be77e3d87aa831855cb4102e37b17d.png", + "aggregators": [ + "CoinGecko", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x0808e6c4400bde1d70db0d02170b67de05e07ef5": { + "address": "0x0808e6c4400bde1d70db0d02170b67de05e07ef5", + "symbol": "WLYX", + "decimals": 18, + "name": "Wrapped LYX SigmaSwap", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x0808e6c4400bde1d70db0d02170b67de05e07ef5.png", + "aggregators": [ + "CoinGecko", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0xc5170dd7386247cdb8c48545c803f5d0e3347022": { + "address": "0xc5170dd7386247cdb8c48545c803f5d0e3347022", + "symbol": "TI", + "decimals": 18, + "name": "Titanium22", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xc5170dd7386247cdb8c48545c803f5d0e3347022.png", + "aggregators": [ + "CoinMarketCap", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x61b57bdc01e3072fab3e9e2f3c7b88d482734e05": { + "address": "0x61b57bdc01e3072fab3e9e2f3c7b88d482734e05", + "symbol": "MZM", + "decimals": 18, + "name": "MetaZooMee", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x61b57bdc01e3072fab3e9e2f3c7b88d482734e05.png", + "aggregators": [ + "CoinMarketCap", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x698b1d54e936b9f772b8f58447194bbc82ec1933": { + "address": "0x698b1d54e936b9f772b8f58447194bbc82ec1933", + "symbol": "PEEZY", + "decimals": 9, + "name": "Peezy peezy vip", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x698b1d54e936b9f772b8f58447194bbc82ec1933.png", + "aggregators": [ + "CoinMarketCap", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x7ae4f8885f6cfa41a692cb9da3789cfa6a83e9f2": { + "address": "0x7ae4f8885f6cfa41a692cb9da3789cfa6a83e9f2", + "symbol": "GENOME", + "decimals": 18, + "name": "GenomesDAO GENOME", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x7ae4f8885f6cfa41a692cb9da3789cfa6a83e9f2.png", + "aggregators": [ + "CoinGecko", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x576e2bed8f7b46d34016198911cdf9886f78bea7": { + "address": "0x576e2bed8f7b46d34016198911cdf9886f78bea7", + "symbol": "TRUMP", + "decimals": 9, + "name": "MAGA", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x576e2bed8f7b46d34016198911cdf9886f78bea7.png", + "aggregators": [ + "CoinGecko", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0xe4042c7c1bf740b8ddb2ab43df6d9ed766b2513e": { + "address": "0xe4042c7c1bf740b8ddb2ab43df6d9ed766b2513e", + "symbol": "BADCAT", + "decimals": 9, + "name": "Andy Alter Ego", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xe4042c7c1bf740b8ddb2ab43df6d9ed766b2513e.png", + "aggregators": [ + "CoinGecko", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0xe340b25fe32b1011616bb8ec495a4d503e322177": { + "address": "0xe340b25fe32b1011616bb8ec495a4d503e322177", + "symbol": "AAMMUNIDAIUSDC", + "decimals": 18, + "name": "Aave AMM UniDAIUSDC", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xe340b25fe32b1011616bb8ec495a4d503e322177.png", + "aggregators": [ + "CoinGecko", + "LiFi", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0xe831f96a7a1dce1aa2eb760b1e296c6a74caa9d5": { + "address": "0xe831f96a7a1dce1aa2eb760b1e296c6a74caa9d5", + "symbol": "NEXM", + "decimals": 8, + "name": "Nexum Coin", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xe831f96a7a1dce1aa2eb760b1e296c6a74caa9d5.png", + "aggregators": ["Metamask", "LiFi", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 5 + }, + "0x16a3543fa6b32cac3b0a755f64a729e84f89a75c": { + "address": "0x16a3543fa6b32cac3b0a755f64a729e84f89a75c", + "symbol": "TENSOR", + "decimals": 18, + "name": "Wrapped Hypertensor", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x16a3543fa6b32cac3b0a755f64a729e84f89a75c.png", + "aggregators": [ + "CoinGecko", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0xa045fe936e26e1e1e1fb27c1f2ae3643acde0171": { + "address": "0xa045fe936e26e1e1e1fb27c1f2ae3643acde0171", + "symbol": "KAI", + "decimals": 9, + "name": "Kai Ken", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xa045fe936e26e1e1e1fb27c1f2ae3643acde0171.png", + "aggregators": [ + "CoinMarketCap", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x9c7d4fb43919def524c1a9d92fe836169eaf0615": { + "address": "0x9c7d4fb43919def524c1a9d92fe836169eaf0615", + "symbol": "WOLF", + "decimals": 18, + "name": "Landwolf", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x9c7d4fb43919def524c1a9d92fe836169eaf0615.png", + "aggregators": [ + "CoinGecko", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0xbabe3ce7835665464228df00b03246115c30730a": { + "address": "0xbabe3ce7835665464228df00b03246115c30730a", + "symbol": "BABYNEIRO", + "decimals": 9, + "name": "Baby Neiro Token", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xbabe3ce7835665464228df00b03246115c30730a.png", + "aggregators": [ + "CoinMarketCap", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0xb60acd2057067dc9ed8c083f5aa227a244044fd6": { + "address": "0xb60acd2057067dc9ed8c083f5aa227a244044fd6", + "symbol": "STTAO", + "decimals": 9, + "name": "Tensorplex Staked TAO", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xb60acd2057067dc9ed8c083f5aa227a244044fd6.png", + "aggregators": [ + "CoinGecko", + "LiFi", + "Socket", + "Rubic", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0xd6175692026bcd7cb12a515e39cf0256ef35cb86": { + "address": "0xd6175692026bcd7cb12a515e39cf0256ef35cb86", + "symbol": "BONZI", + "decimals": 18, + "name": "Bonzi", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xd6175692026bcd7cb12a515e39cf0256ef35cb86.png", + "aggregators": [ + "CoinGecko", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0xcf91b70017eabde82c9671e30e5502d312ea6eb2": { + "address": "0xcf91b70017eabde82c9671e30e5502d312ea6eb2", + "symbol": "PUPPIES", + "decimals": 9, + "name": "I love puppies", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xcf91b70017eabde82c9671e30e5502d312ea6eb2.png", + "aggregators": [ + "CoinMarketCap", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x6abaf438f098f75c5892e1fabf08b1896c805967": { + "address": "0x6abaf438f098f75c5892e1fabf08b1896c805967", + "symbol": "BLOOD", + "decimals": 9, + "name": "Bloodboy", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x6abaf438f098f75c5892e1fabf08b1896c805967.png", + "aggregators": [ + "CoinGecko", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0xda251891e21e6edb0e6828e77621c7b98ea4e8ba": { + "address": "0xda251891e21e6edb0e6828e77621c7b98ea4e8ba", + "symbol": "MGLS", + "decimals": 18, + "name": "Meme Moguls", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xda251891e21e6edb0e6828e77621c7b98ea4e8ba.png", + "aggregators": [ + "CoinGecko", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x571d9b73dc04ed88b4e273e048c8d4848f83b779": { + "address": "0x571d9b73dc04ed88b4e273e048c8d4848f83b779", + "symbol": "CLOSEDAI", + "decimals": 9, + "name": "Super Closed Source", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x571d9b73dc04ed88b4e273e048c8d4848f83b779.png", + "aggregators": [ + "CoinGecko", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0xe842e272a18625319cc36f64eb9f97e5ad0c32af": { + "address": "0xe842e272a18625319cc36f64eb9f97e5ad0c32af", + "symbol": "YAK", + "decimals": 9, + "name": "YAK", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xe842e272a18625319cc36f64eb9f97e5ad0c32af.png", + "aggregators": [ + "CoinGecko", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x6977597bbbdcc453636bd67a161a96d85098f327": { + "address": "0x6977597bbbdcc453636bd67a161a96d85098f327", + "symbol": "PIPI", + "decimals": 9, + "name": "Pipi on ETH", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x6977597bbbdcc453636bd67a161a96d85098f327.png", + "aggregators": [ + "CoinGecko", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x518b63da813d46556fea041a88b52e3caa8c16a8": { + "address": "0x518b63da813d46556fea041a88b52e3caa8c16a8", + "symbol": "ATF", + "decimals": 18, + "name": "Antfarm Token", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x518b63da813d46556fea041a88b52e3caa8c16a8.png", + "aggregators": [ + "CoinMarketCap", + "LiFi", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0xccc80ce58995baae4e5867e5cde3bd9f8b242376": { + "address": "0xccc80ce58995baae4e5867e5cde3bd9f8b242376", + "symbol": "GOE", + "decimals": 9, + "name": "God Of Ethereum", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xccc80ce58995baae4e5867e5cde3bd9f8b242376.png", + "aggregators": [ + "CoinGecko", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x477a3d269266994f15e9c43a8d9c0561c4928088": { + "address": "0x477a3d269266994f15e9c43a8d9c0561c4928088", + "symbol": "YAI", + "decimals": 18, + "name": "Ÿ", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x477a3d269266994f15e9c43a8d9c0561c4928088.png", + "aggregators": [ + "CoinGecko", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x7022fe5fedbd54b40fdc52be30c1c578fb55c2bf": { + "address": "0x7022fe5fedbd54b40fdc52be30c1c578fb55c2bf", + "symbol": "SKULL", + "decimals": 18, + "name": "WOLF SKULL", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x7022fe5fedbd54b40fdc52be30c1c578fb55c2bf.png", + "aggregators": [ + "CoinGecko", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x7b66e84be78772a3afaf5ba8c1993a1b5d05f9c2": { + "address": "0x7b66e84be78772a3afaf5ba8c1993a1b5d05f9c2", + "symbol": "VITARNA", + "decimals": 18, + "name": "VitaRNA", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x7b66e84be78772a3afaf5ba8c1993a1b5d05f9c2.png", + "aggregators": [ + "CoinGecko", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0xf14dd7b286ce197019cba54b189d2b883e70f761": { + "address": "0xf14dd7b286ce197019cba54b189d2b883e70f761", + "symbol": "PEEZY", + "decimals": 9, + "name": "Young Peezy", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xf14dd7b286ce197019cba54b189d2b883e70f761.png", + "aggregators": [ + "CoinGecko", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0xd1a6616f56221a9f27eb9476867b5bdb2b2d101d": { + "address": "0xd1a6616f56221a9f27eb9476867b5bdb2b2d101d", + "symbol": "AGI", + "decimals": 18, + "name": "Artificial General Intelligence", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xd1a6616f56221a9f27eb9476867b5bdb2b2d101d.png", + "aggregators": [ + "CoinGecko", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0xe5c6f5fef89b64f36bfccb063962820136bac42f": { + "address": "0xe5c6f5fef89b64f36bfccb063962820136bac42f", + "symbol": "HOPPY", + "decimals": 9, + "name": "Hoppy The Frog", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xe5c6f5fef89b64f36bfccb063962820136bac42f.png", + "aggregators": [ + "CoinGecko", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0xb10cc888cb2cce7036f4c7ecad8a57da16161338": { + "address": "0xb10cc888cb2cce7036f4c7ecad8a57da16161338", + "symbol": "SWITCH", + "decimals": 8, + "name": "Switch Token", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xb10cc888cb2cce7036f4c7ecad8a57da16161338.png", + "aggregators": [ + "CoinMarketCap", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0xfc4b4ec763722b71eb1d729749b447a9645f5f30": { + "address": "0xfc4b4ec763722b71eb1d729749b447a9645f5f30", + "symbol": "GME", + "decimals": 9, + "name": "DumbMoney", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xfc4b4ec763722b71eb1d729749b447a9645f5f30.png", + "aggregators": [ + "CoinGecko", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0xb29dc1703facd2967bb8ade2e392385644c6dca9": { + "address": "0xb29dc1703facd2967bb8ade2e392385644c6dca9", + "symbol": "GAGA", + "decimals": 18, + "name": "Gaga Pepe", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xb29dc1703facd2967bb8ade2e392385644c6dca9.png", + "aggregators": [ + "CoinGecko", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x55c3a56e638e96c91f98735cc86f60a6820e6a44": { + "address": "0x55c3a56e638e96c91f98735cc86f60a6820e6a44", + "symbol": "GAV", + "decimals": 9, + "name": "GavCoin", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x55c3a56e638e96c91f98735cc86f60a6820e6a44.png", + "aggregators": [ + "CoinGecko", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x206a5ec55c531574130691cf9ada0fd711d5f710": { + "address": "0x206a5ec55c531574130691cf9ada0fd711d5f710", + "symbol": "REMILIA", + "decimals": 9, + "name": "Charlotte Fang", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x206a5ec55c531574130691cf9ada0fd711d5f710.png", + "aggregators": [ + "CoinGecko", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0xf5d791eebfc229c4fe976e8328ed2c261690cb34": { + "address": "0xf5d791eebfc229c4fe976e8328ed2c261690cb34", + "symbol": "BOOB", + "decimals": 9, + "name": "Book Of Bitcoin", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xf5d791eebfc229c4fe976e8328ed2c261690cb34.png", + "aggregators": [ + "CoinGecko", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0xe4b4c008ff36e3c50c4299c223504a480de9c833": { + "address": "0xe4b4c008ff36e3c50c4299c223504a480de9c833", + "symbol": "SS", + "decimals": 9, + "name": "Secret Society", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xe4b4c008ff36e3c50c4299c223504a480de9c833.png", + "aggregators": [ + "CoinGecko", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x80034f803afb1c6864e3ca481ef1362c54d094b9": { + "address": "0x80034f803afb1c6864e3ca481ef1362c54d094b9", + "symbol": "NPI", + "decimals": 9, + "name": "Non Playable Inu", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x80034f803afb1c6864e3ca481ef1362c54d094b9.png", + "aggregators": [ + "CoinGecko", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x5ff46696d6e4896137acb1628b06e28c10ee9634": { + "address": "0x5ff46696d6e4896137acb1628b06e28c10ee9634", + "symbol": "JANNY", + "decimals": 9, + "name": "Janny", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x5ff46696d6e4896137acb1628b06e28c10ee9634.png", + "aggregators": [ + "CoinGecko", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x049715c70fdbdd2be4814f76a53dc3d6f4367756": { + "address": "0x049715c70fdbdd2be4814f76a53dc3d6f4367756", + "symbol": "NEZUKO", + "decimals": 18, + "name": "Nezuko", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x049715c70fdbdd2be4814f76a53dc3d6f4367756.png", + "aggregators": [ + "CoinMarketCap", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0xd29da236dd4aac627346e1bba06a619e8c22d7c5": { + "address": "0xd29da236dd4aac627346e1bba06a619e8c22d7c5", + "symbol": "MAGA", + "decimals": 9, + "name": "MAGA Hat", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xd29da236dd4aac627346e1bba06a619e8c22d7c5.png", + "aggregators": [ + "CoinGecko", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x0113c07b3b8e4f41b62d713b5b12616bf2856585": { + "address": "0x0113c07b3b8e4f41b62d713b5b12616bf2856585", + "symbol": "HINU", + "decimals": 9, + "name": "Hokkaido Inu Token", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x0113c07b3b8e4f41b62d713b5b12616bf2856585.png", + "aggregators": [ + "CoinGecko", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x31c5dec1f10dc084b95c239734dea0adb9c97c9c": { + "address": "0x31c5dec1f10dc084b95c239734dea0adb9c97c9c", + "symbol": "OJEE", + "decimals": 18, + "name": "VIMworld OJEE", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x31c5dec1f10dc084b95c239734dea0adb9c97c9c.png", + "aggregators": [ + "CoinGecko", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x47da5456bc2e1ce391b645ce80f2e97192e4976a": { + "address": "0x47da5456bc2e1ce391b645ce80f2e97192e4976a", + "symbol": "PLUG", + "decimals": 18, + "name": "PL Gnet", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x47da5456bc2e1ce391b645ce80f2e97192e4976a.png", + "aggregators": [ + "CoinGecko", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x9303eabc860a743aabcc3a1629014cabcc3f8d36": { + "address": "0x9303eabc860a743aabcc3a1629014cabcc3f8d36", + "symbol": "AAMMUNIDAIWETH", + "decimals": 18, + "name": "Aave AMM UniDAIWETH", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x9303eabc860a743aabcc3a1629014cabcc3f8d36.png", + "aggregators": [ + "CoinGecko", + "LiFi", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0xde654f497a563dd7a121c176a125dd2f11f13a83": { + "address": "0xde654f497a563dd7a121c176a125dd2f11f13a83", + "symbol": "WXM", + "decimals": 18, + "name": "WeatherXM", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xde654f497a563dd7a121c176a125dd2f11f13a83.png", + "aggregators": [ + "CoinMarketCap", + "LiFi", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x9b7331c6e98bad1dc8f096ff3d98c93b3b9b1173": { + "address": "0x9b7331c6e98bad1dc8f096ff3d98c93b3b9b1173", + "symbol": "BULL", + "decimals": 18, + "name": "Mumu the Bull", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x9b7331c6e98bad1dc8f096ff3d98c93b3b9b1173.png", + "aggregators": [ + "CoinGecko", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0xc4058f6a829ddd684e1b7589b33312827f0a47bb": { + "address": "0xc4058f6a829ddd684e1b7589b33312827f0a47bb", + "symbol": "ANDY", + "decimals": 18, + "name": "aNDY", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xc4058f6a829ddd684e1b7589b33312827f0a47bb.png", + "aggregators": [ + "CoinGecko", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0xce176825afc335d9759cb4e323ee8b31891de747": { + "address": "0xce176825afc335d9759cb4e323ee8b31891de747", + "symbol": "CHWY", + "decimals": 9, + "name": "CHWY", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xce176825afc335d9759cb4e323ee8b31891de747.png", + "aggregators": [ + "CoinGecko", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x381491960c37b65862819ced0e35385f04b2c78b": { + "address": "0x381491960c37b65862819ced0e35385f04b2c78b", + "symbol": "HACHIKO", + "decimals": 9, + "name": "Hachiko", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x381491960c37b65862819ced0e35385f04b2c78b.png", + "aggregators": [ + "CoinGecko", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x3e985250cb137fc1ff55922116934c5982d29f85": { + "address": "0x3e985250cb137fc1ff55922116934c5982d29f85", + "symbol": "ZENT", + "decimals": 18, + "name": "ZENTU", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x3e985250cb137fc1ff55922116934c5982d29f85.png", + "aggregators": [ + "CoinGecko", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0xeeacc51af745846ddf46012b46c6910ea9b12898": { + "address": "0xeeacc51af745846ddf46012b46c6910ea9b12898", + "symbol": "DOGC", + "decimals": 18, + "name": "DOGC", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xeeacc51af745846ddf46012b46c6910ea9b12898.png", + "aggregators": [ + "CoinGecko", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x1039bae6254178ee2f6123cd64cde9e4ca79d779": { + "address": "0x1039bae6254178ee2f6123cd64cde9e4ca79d779", + "symbol": "WUKONG", + "decimals": 18, + "name": "Wukong Musk", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x1039bae6254178ee2f6123cd64cde9e4ca79d779.png", + "aggregators": [ + "CoinGecko", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x0f6d4d4643a514132f84f4a270946db3c7cb701c": { + "address": "0x0f6d4d4643a514132f84f4a270946db3c7cb701c", + "symbol": "LOVELY", + "decimals": 18, + "name": "Lovely Inu Finance", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x0f6d4d4643a514132f84f4a270946db3c7cb701c.png", + "aggregators": [ + "CoinGecko", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0xa1abecc1b3958da78259fa2793653fc48e976420": { + "address": "0xa1abecc1b3958da78259fa2793653fc48e976420", + "symbol": "DOGGGO", + "decimals": 18, + "name": "Dogggo", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xa1abecc1b3958da78259fa2793653fc48e976420.png", + "aggregators": [ + "CoinMarketCap", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0xb369daca21ee035312176eb8cf9d88ce97e0aa95": { + "address": "0xb369daca21ee035312176eb8cf9d88ce97e0aa95", + "symbol": "SKOL", + "decimals": 18, + "name": "Skol", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xb369daca21ee035312176eb8cf9d88ce97e0aa95.png", + "aggregators": [ + "CoinGecko", + "LiFi", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x9f04c2bd696a6191246144ba762456a24c457520": { + "address": "0x9f04c2bd696a6191246144ba762456a24c457520", + "symbol": "AITAX", + "decimals": 18, + "name": "AITaxBot", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x9f04c2bd696a6191246144ba762456a24c457520.png", + "aggregators": [ + "CoinGecko", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x436da116249044e8b4464f0cf21dd93311d88190": { + "address": "0x436da116249044e8b4464f0cf21dd93311d88190", + "symbol": "ZEUM", + "decimals": 18, + "name": "Colizeum", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x436da116249044e8b4464f0cf21dd93311d88190.png", + "aggregators": [ + "CoinMarketCap", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x5274891bec421b39d23760c04a6755ecb444797c": { + "address": "0x5274891bec421b39d23760c04a6755ecb444797c", + "symbol": "IDLEUSDCYIELD", + "decimals": 18, + "name": "IdleUSDC Yield", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x5274891bec421b39d23760c04a6755ecb444797c.png", + "aggregators": [ + "CoinGecko", + "LiFi", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0xf43f21384d03b5cbbddd58d2de64071e4ce76ab0": { + "address": "0xf43f21384d03b5cbbddd58d2de64071e4ce76ab0", + "symbol": "GIGACHAD", + "decimals": 18, + "name": "GigaChad", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xf43f21384d03b5cbbddd58d2de64071e4ce76ab0.png", + "aggregators": [ + "CoinGecko", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x358bd0d980e031e23eba9aa793926857703783bd": { + "address": "0x358bd0d980e031e23eba9aa793926857703783bd", + "symbol": "AAMMBPTWBTCWETH", + "decimals": 18, + "name": "Aave AMM BptWBTCWETH", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x358bd0d980e031e23eba9aa793926857703783bd.png", + "aggregators": [ + "CoinGecko", + "LiFi", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0xcdd0d11de0225b528b3a20d6436392c8260969d0": { + "address": "0xcdd0d11de0225b528b3a20d6436392c8260969d0", + "symbol": "ONIC", + "decimals": 18, + "name": "Trade Bionic", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xcdd0d11de0225b528b3a20d6436392c8260969d0.png", + "aggregators": [ + "CoinGecko", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x786f112c9a6bc840cdc07cfd840105efd6ef2d4b": { + "address": "0x786f112c9a6bc840cdc07cfd840105efd6ef2d4b", + "symbol": "EDOGE", + "decimals": 9, + "name": "Ethereum Doge", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x786f112c9a6bc840cdc07cfd840105efd6ef2d4b.png", + "aggregators": [ + "CoinGecko", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x0b2acaaf45fc201d239c5915572730f4bff1999f": { + "address": "0x0b2acaaf45fc201d239c5915572730f4bff1999f", + "symbol": "GOOSE", + "decimals": 18, + "name": "Goose", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x0b2acaaf45fc201d239c5915572730f4bff1999f.png", + "aggregators": [ + "CoinGecko", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x5483dc6abda5f094865120b2d251b5744fc2ecb5": { + "address": "0x5483dc6abda5f094865120b2d251b5744fc2ecb5", + "symbol": "TPAD", + "decimals": 18, + "name": "TaoPad", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x5483dc6abda5f094865120b2d251b5744fc2ecb5.png", + "aggregators": [ + "CoinMarketCap", + "LiFi", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x8c444197d64e079323a1eb8d40655910b052f85a": { + "address": "0x8c444197d64e079323a1eb8d40655910b052f85a", + "symbol": "EQ9", + "decimals": 18, + "name": "EQ9", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x8c444197d64e079323a1eb8d40655910b052f85a.png", + "aggregators": [ + "CoinGecko", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x0101013d11e4320d29759f40508c61110f525211": { + "address": "0x0101013d11e4320d29759f40508c61110f525211", + "symbol": "FROG", + "decimals": 9, + "name": "Beer Frog", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x0101013d11e4320d29759f40508c61110f525211.png", + "aggregators": [ + "CoinGecko", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x5e432eecd01c12ee7071ee9219c2477a347da192": { + "address": "0x5e432eecd01c12ee7071ee9219c2477a347da192", + "symbol": "ARQX", + "decimals": 18, + "name": "ARQx AI", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x5e432eecd01c12ee7071ee9219c2477a347da192.png", + "aggregators": [ + "CoinGecko", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0xaade1d6701173bd924c9de2d56a00ef4e3d9de4d": { + "address": "0xaade1d6701173bd924c9de2d56a00ef4e3d9de4d", + "symbol": "BWS", + "decimals": 9, + "name": "Blockchain Web Services", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xaade1d6701173bd924c9de2d56a00ef4e3d9de4d.png", + "aggregators": [ + "CoinGecko", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x7afd0d633e0a2b1db97506d97cadc880c894eca9": { + "address": "0x7afd0d633e0a2b1db97506d97cadc880c894eca9", + "symbol": "MARU", + "decimals": 9, + "name": "Marutaro", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x7afd0d633e0a2b1db97506d97cadc880c894eca9.png", + "aggregators": [ + "CoinGecko", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x6c060ba738af39a09f3b45ac6487dfc9ebb885f6": { + "address": "0x6c060ba738af39a09f3b45ac6487dfc9ebb885f6", + "symbol": "RSERG", + "decimals": 9, + "name": "rsERG", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x6c060ba738af39a09f3b45ac6487dfc9ebb885f6.png", + "aggregators": [ + "CoinGecko", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x0ea20e7ffb006d4cfe84df2f72d8c7bd89247db0": { + "address": "0x0ea20e7ffb006d4cfe84df2f72d8c7bd89247db0", + "symbol": "AAMMUNICRVWETH", + "decimals": 18, + "name": "Aave AMM UniCRVWETH", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x0ea20e7ffb006d4cfe84df2f72d8c7bd89247db0.png", + "aggregators": [ + "CoinGecko", + "LiFi", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0xb8db81b84d30e2387de0ff330420a4aaa6688134": { + "address": "0xb8db81b84d30e2387de0ff330420a4aaa6688134", + "symbol": "AAMMUNILINKWETH", + "decimals": 18, + "name": "Aave AMM UniLINKWETH", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xb8db81b84d30e2387de0ff330420a4aaa6688134.png", + "aggregators": [ + "CoinGecko", + "LiFi", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0xcb39637e7c03c2ac25405adb8d95035f2668b0d6": { + "address": "0xcb39637e7c03c2ac25405adb8d95035f2668b0d6", + "symbol": "ALGT", + "decimals": 18, + "name": "AlgoTrade", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xcb39637e7c03c2ac25405adb8d95035f2668b0d6.png", + "aggregators": [ + "CoinGecko", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x92f419fb7a750aed295b0ddf536276bf5a40124f": { + "address": "0x92f419fb7a750aed295b0ddf536276bf5a40124f", + "symbol": "TATSU", + "decimals": 18, + "name": "Tatsu", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x92f419fb7a750aed295b0ddf536276bf5a40124f.png", + "aggregators": [ + "CoinGecko", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0xc25a3a3b969415c80451098fa907ec722572917f": { + "address": "0xc25a3a3b969415c80451098fa907ec722572917f", + "symbol": "SCURVE", + "decimals": 18, + "name": "LP sCurve", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xc25a3a3b969415c80451098fa907ec722572917f.png", + "aggregators": [ + "CoinMarketCap", + "LiFi", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0xc73c167e7a4ba109e4052f70d5466d0c312a344d": { + "address": "0xc73c167e7a4ba109e4052f70d5466d0c312a344d", + "symbol": "SANSHU", + "decimals": 9, + "name": "Sanshu Inu OLD", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xc73c167e7a4ba109e4052f70d5466d0c312a344d.png", + "aggregators": [ + "CoinGecko", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x272f97b7a56a387ae942350bbc7df5700f8a4576": { + "address": "0x272f97b7a56a387ae942350bbc7df5700f8a4576", + "symbol": "ABAL", + "decimals": 18, + "name": "Aave BAL", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x272f97b7a56a387ae942350bbc7df5700f8a4576.png", + "aggregators": [ + "CoinGecko", + "LiFi", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x4687f007da484efe20d7a17e5b1d105cdbfca0eb": { + "address": "0x4687f007da484efe20d7a17e5b1d105cdbfca0eb", + "symbol": "MORPH", + "decimals": 18, + "name": "Morpheus", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x4687f007da484efe20d7a17e5b1d105cdbfca0eb.png", + "aggregators": [ + "CoinGecko", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0xf5809f3348ff40906bb509f936aba43e6d1961ab": { + "address": "0xf5809f3348ff40906bb509f936aba43e6d1961ab", + "symbol": "LESTER", + "decimals": 9, + "name": "Lester", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xf5809f3348ff40906bb509f936aba43e6d1961ab.png", + "aggregators": [ + "CoinGecko", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0xf9fb4ad91812b704ba883b11d2b576e890a6730a": { + "address": "0xf9fb4ad91812b704ba883b11d2b576e890a6730a", + "symbol": "AAMMWETH", + "decimals": 18, + "name": "Aave AMM WETH", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xf9fb4ad91812b704ba883b11d2b576e890a6730a.png", + "aggregators": [ + "CoinGecko", + "LiFi", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x69babe9811cc86dcfc3b8f9a14de6470dd18eda4": { + "address": "0x69babe9811cc86dcfc3b8f9a14de6470dd18eda4", + "symbol": "BABYPEPE", + "decimals": 9, + "name": "Baby Pepe", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x69babe9811cc86dcfc3b8f9a14de6470dd18eda4.png", + "aggregators": [ + "CoinMarketCap", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x47000bd34d9a7b7cdbeef4ec2ae452e73280a8b5": { + "address": "0x47000bd34d9a7b7cdbeef4ec2ae452e73280a8b5", + "symbol": "SHRUBIUS", + "decimals": 9, + "name": "Shrubius Maximus", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x47000bd34d9a7b7cdbeef4ec2ae452e73280a8b5.png", + "aggregators": [ + "CoinMarketCap", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x81db1949d0e888557bc632f7c0f6698b1f8c9106": { + "address": "0x81db1949d0e888557bc632f7c0f6698b1f8c9106", + "symbol": "D/ACC", + "decimals": 9, + "name": "d acc", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x81db1949d0e888557bc632f7c0f6698b1f8c9106.png", + "aggregators": [ + "CoinGecko", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x391e86e2c002c70dee155eaceb88f7a3c38f5976": { + "address": "0x391e86e2c002c70dee155eaceb88f7a3c38f5976", + "symbol": "AAMMUNIUSDCWETH", + "decimals": 18, + "name": "Aave AMM UniUSDCWETH", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x391e86e2c002c70dee155eaceb88f7a3c38f5976.png", + "aggregators": [ + "CoinGecko", + "LiFi", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x9562e2063122eaa4d7c2d786e7ca2610d70ca8b8": { + "address": "0x9562e2063122eaa4d7c2d786e7ca2610d70ca8b8", + "symbol": "SHIBC", + "decimals": 18, + "name": "Shiba Classic", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x9562e2063122eaa4d7c2d786e7ca2610d70ca8b8.png", + "aggregators": [ + "CoinGecko", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x28ae7b2ebd6f10f4393f410f6b7896380a949d62": { + "address": "0x28ae7b2ebd6f10f4393f410f6b7896380a949d62", + "symbol": "CREA", + "decimals": 9, + "name": "CoinCreate", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x28ae7b2ebd6f10f4393f410f6b7896380a949d62.png", + "aggregators": [ + "CoinGecko", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x2a414884a549ef5716bc1a4e648d3dc03f08b2cf": { + "address": "0x2a414884a549ef5716bc1a4e648d3dc03f08b2cf", + "symbol": "PERQ", + "decimals": 18, + "name": "PERQ", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x2a414884a549ef5716bc1a4e648d3dc03f08b2cf.png", + "aggregators": [ + "CoinGecko", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0xbea269038eb75bdab47a9c04d0f5c572d94b93d5": { + "address": "0xbea269038eb75bdab47a9c04d0f5c572d94b93d5", + "symbol": "WFIO", + "decimals": 9, + "name": "Wrapped FIO", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xbea269038eb75bdab47a9c04d0f5c572d94b93d5.png", + "aggregators": [ + "CoinMarketCap", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x4e09ac09eb332f4dd167b8bfb90c7f247f7350ac": { + "address": "0x4e09ac09eb332f4dd167b8bfb90c7f247f7350ac", + "symbol": "MIKO", + "decimals": 18, + "name": "MemeCoinGirl", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x4e09ac09eb332f4dd167b8bfb90c7f247f7350ac.png", + "aggregators": [ + "CoinGecko", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0xeda8db2f0f8f00f0aedd6fdd756402ed86cd002f": { + "address": "0xeda8db2f0f8f00f0aedd6fdd756402ed86cd002f", + "symbol": "OPM", + "decimals": 9, + "name": "OpMentis", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xeda8db2f0f8f00f0aedd6fdd756402ed86cd002f.png", + "aggregators": [ + "CoinMarketCap", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0xb893a8049f250b57efa8c62d51527a22404d7c9a": { + "address": "0xb893a8049f250b57efa8c62d51527a22404d7c9a", + "symbol": "USHIBA", + "decimals": 9, + "name": "American Shiba", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xb893a8049f250b57efa8c62d51527a22404d7c9a.png", + "aggregators": [ + "CoinMarketCap", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x79be75ffc64dd58e66787e4eae470c8a1fd08ba4": { + "address": "0x79be75ffc64dd58e66787e4eae470c8a1fd08ba4", + "symbol": "AAMMDAI", + "decimals": 18, + "name": "Aave AMM DAI", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x79be75ffc64dd58e66787e4eae470c8a1fd08ba4.png", + "aggregators": [ + "CoinGecko", + "LiFi", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0xe355de6a6043b0580ff5a26b46051a4809b12793": { + "address": "0xe355de6a6043b0580ff5a26b46051a4809b12793", + "symbol": "4EVER", + "decimals": 18, + "name": "4EVERLAND", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xe355de6a6043b0580ff5a26b46051a4809b12793.png", + "aggregators": [ + "CoinMarketCap", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x819c1a1568934ee59d9f3c8b9640908556c44140": { + "address": "0x819c1a1568934ee59d9f3c8b9640908556c44140", + "symbol": "HOBBES", + "decimals": 18, + "name": "Hobbes OLD", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x819c1a1568934ee59d9f3c8b9640908556c44140.png", + "aggregators": [ + "CoinGecko", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0xe4ab0be415e277d82c38625b72bd7dea232c2e7d": { + "address": "0xe4ab0be415e277d82c38625b72bd7dea232c2e7d", + "symbol": "XRP20", + "decimals": 18, + "name": "XRP20", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xe4ab0be415e277d82c38625b72bd7dea232c2e7d.png", + "aggregators": [ + "CoinGecko", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0xff931a7946d2fa11cf9123ef0dc6f6c7c6cb60c4": { + "address": "0xff931a7946d2fa11cf9123ef0dc6f6c7c6cb60c4", + "symbol": "BABY", + "decimals": 9, + "name": "Dancing Baby", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xff931a7946d2fa11cf9123ef0dc6f6c7c6cb60c4.png", + "aggregators": [ + "CoinGecko", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x6ef69ba2d051761afd38f218f0a3cf517d64a760": { + "address": "0x6ef69ba2d051761afd38f218f0a3cf517d64a760", + "symbol": "CPAI", + "decimals": 18, + "name": "Moontax", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x6ef69ba2d051761afd38f218f0a3cf517d64a760.png", + "aggregators": [ + "CoinMarketCap", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0xb15a5aab2a65745314fcd0d7f5080bfa65bd7c03": { + "address": "0xb15a5aab2a65745314fcd0d7f5080bfa65bd7c03", + "symbol": "TUPELO", + "decimals": 9, + "name": "tupelothedog", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xb15a5aab2a65745314fcd0d7f5080bfa65bd7c03.png", + "aggregators": [ + "CoinGecko", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x5d56b6581d2e7e7574adce2dc593f499a53d7505": { + "address": "0x5d56b6581d2e7e7574adce2dc593f499a53d7505", + "symbol": "MACHINA", + "decimals": 18, + "name": "Church of the Machina", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x5d56b6581d2e7e7574adce2dc593f499a53d7505.png", + "aggregators": [ + "CoinGecko", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0xcfd16933cb1579eee9fe6031686534e87353b148": { + "address": "0xcfd16933cb1579eee9fe6031686534e87353b148", + "symbol": "AIMR", + "decimals": 18, + "name": "MeromAI", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xcfd16933cb1579eee9fe6031686534e87353b148.png", + "aggregators": [ + "CoinMarketCap", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x915424ac489433130d92b04096f3b96c82e92a9d": { + "address": "0x915424ac489433130d92b04096f3b96c82e92a9d", + "symbol": "PROS", + "decimals": 18, + "name": "Prosper", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x915424ac489433130d92b04096f3b96c82e92a9d.png", + "aggregators": [ + "Metamask", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x792833b894775bd769b3c602ba7172e59a83ab3f": { + "address": "0x792833b894775bd769b3c602ba7172e59a83ab3f", + "symbol": "TOONS", + "decimals": 18, + "name": "City Boys", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x792833b894775bd769b3c602ba7172e59a83ab3f.png", + "aggregators": [ + "CoinGecko", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0xba62856e16cb3283d3b8e670b196b9bb02902f30": { + "address": "0xba62856e16cb3283d3b8e670b196b9bb02902f30", + "symbol": "LUCE", + "decimals": 9, + "name": "Vatican Mascot", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xba62856e16cb3283d3b8e670b196b9bb02902f30.png", + "aggregators": [ + "CoinGecko", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0xf257a2783f6633a149b5966e32432b5bb3462c96": { + "address": "0xf257a2783f6633a149b5966e32432b5bb3462c96", + "symbol": "DOGECOIN", + "decimals": 8, + "name": "RagingElonMarsCoin", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xf257a2783f6633a149b5966e32432b5bb3462c96.png", + "aggregators": [ + "CoinGecko", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x19af07b52e5faa0c2b1e11721c52aa23172fe2f5": { + "address": "0x19af07b52e5faa0c2b1e11721c52aa23172fe2f5", + "symbol": "MEMES", + "decimals": 9, + "name": "Memes Street", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x19af07b52e5faa0c2b1e11721c52aa23172fe2f5.png", + "aggregators": [ + "CoinGecko", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x2c0687215aca7f5e2792d956e170325e92a02aca": { + "address": "0x2c0687215aca7f5e2792d956e170325e92a02aca", + "symbol": "ESS", + "decimals": 18, + "name": "Earth 2 Essence", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x2c0687215aca7f5e2792d956e170325e92a02aca.png", + "aggregators": [ + "CoinGecko", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0xc65d8d96cdddb31328186efa113a460b0af9ec63": { + "address": "0xc65d8d96cdddb31328186efa113a460b0af9ec63", + "symbol": "PELL", + "decimals": 18, + "name": "Pell Network Token", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xc65d8d96cdddb31328186efa113a460b0af9ec63.png", + "aggregators": ["CoinMarketCap", "Rubic", "Squid", "Sonarwatch"], + "occurrences": 4 + }, + "0x2001f2a0cf801ecfda622f6c28fb6e10d803d969": { + "address": "0x2001f2a0cf801ecfda622f6c28fb6e10d803d969", + "symbol": "CLT", + "decimals": 8, + "name": "CoinLoan", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x2001f2a0cf801ecfda622f6c28fb6e10d803d969.png", + "aggregators": [ + "CoinMarketCap", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x92d5942f468447f1f21c2092580f15544923b434": { + "address": "0x92d5942f468447f1f21c2092580f15544923b434", + "symbol": "VSTR", + "decimals": 18, + "name": "Vestra DAO", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x92d5942f468447f1f21c2092580f15544923b434.png", + "aggregators": [ + "CoinGecko", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0xddfbe9173c90deb428fdd494cb16125653172919": { + "address": "0xddfbe9173c90deb428fdd494cb16125653172919", + "symbol": "SWK", + "decimals": 18, + "name": "Sowaka", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xddfbe9173c90deb428fdd494cb16125653172919.png", + "aggregators": [ + "CoinGecko", + "LiFi", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0xd075e95423c5c4ba1e122cae0f4cdfa19b82881b": { + "address": "0xd075e95423c5c4ba1e122cae0f4cdfa19b82881b", + "symbol": "WPE", + "decimals": 18, + "name": "OpesAI", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xd075e95423c5c4ba1e122cae0f4cdfa19b82881b.png", + "aggregators": [ + "CoinGecko", + "LiFi", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0xec463d00aa4da76fb112cd2e4ac1c6bef02da6ea": { + "address": "0xec463d00aa4da76fb112cd2e4ac1c6bef02da6ea", + "symbol": "HEU", + "decimals": 18, + "name": "Heurist", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xec463d00aa4da76fb112cd2e4ac1c6bef02da6ea.png", + "aggregators": [ + "CoinMarketCap", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0xd536e7a9543cf9867a580b45cec7f748a1fe11ec": { + "address": "0xd536e7a9543cf9867a580b45cec7f748a1fe11ec", + "symbol": "ORX", + "decimals": 18, + "name": "Ouroboros", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xd536e7a9543cf9867a580b45cec7f748a1fe11ec.png", + "aggregators": [ + "CoinGecko", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0xd888a5460fffa4b14340dd9fe2710cbabd520659": { + "address": "0xd888a5460fffa4b14340dd9fe2710cbabd520659", + "symbol": "KOL", + "decimals": 18, + "name": "ProtoKOLs", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xd888a5460fffa4b14340dd9fe2710cbabd520659.png", + "aggregators": [ + "CoinGecko", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x5959e94661e1203e0c8ef84095a7846bacc6a94f": { + "address": "0x5959e94661e1203e0c8ef84095a7846bacc6a94f", + "symbol": "ZKAI", + "decimals": 18, + "name": "ZKCrypt AI", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x5959e94661e1203e0c8ef84095a7846bacc6a94f.png", + "aggregators": [ + "CoinMarketCap", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0xb2e0f591191ee5f6fb8a7f1777a733b6aa92bb55": { + "address": "0xb2e0f591191ee5f6fb8a7f1777a733b6aa92bb55", + "symbol": "WOPE", + "decimals": 9, + "name": "WojakPepe", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xb2e0f591191ee5f6fb8a7f1777a733b6aa92bb55.png", + "aggregators": [ + "CoinGecko", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0xaa7d24c3e14491abac746a98751a4883e9b70843": { + "address": "0xaa7d24c3e14491abac746a98751a4883e9b70843", + "symbol": "GURU", + "decimals": 18, + "name": "Guru", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xaa7d24c3e14491abac746a98751a4883e9b70843.png", + "aggregators": [ + "CoinGecko", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x6602e9319f2c5ec0ba31ffcdc4301d7ef03b709e": { + "address": "0x6602e9319f2c5ec0ba31ffcdc4301d7ef03b709e", + "symbol": "WBRGE", + "decimals": 18, + "name": "Wrapped OrdBridge", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x6602e9319f2c5ec0ba31ffcdc4301d7ef03b709e.png", + "aggregators": [ + "CoinMarketCap", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x4e51a6b3cc6d5ae69a0d44db9de846aeb5a582dd": { + "address": "0x4e51a6b3cc6d5ae69a0d44db9de846aeb5a582dd", + "symbol": "GYOZA", + "decimals": 9, + "name": "Gyoza", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x4e51a6b3cc6d5ae69a0d44db9de846aeb5a582dd.png", + "aggregators": [ + "CoinGecko", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0xc3d2b3e23855001508e460a6dbe9f9e3116201af": { + "address": "0xc3d2b3e23855001508e460a6dbe9f9e3116201af", + "symbol": "MARS", + "decimals": 9, + "name": "GATEWAY TO MARS", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xc3d2b3e23855001508e460a6dbe9f9e3116201af.png", + "aggregators": [ + "CoinGecko", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0xfe3f988a90dea3ee537bb43ec1aca7337a15d002": { + "address": "0xfe3f988a90dea3ee537bb43ec1aca7337a15d002", + "symbol": "PHX", + "decimals": 18, + "name": "PHOENIX", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xfe3f988a90dea3ee537bb43ec1aca7337a15d002.png", + "aggregators": [ + "CoinGecko", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x164f12c8d7d16b905cc4f11e819a9fc5b183ef71": { + "address": "0x164f12c8d7d16b905cc4f11e819a9fc5b183ef71", + "symbol": "DMP", + "decimals": 9, + "name": "Dmarketplace", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x164f12c8d7d16b905cc4f11e819a9fc5b183ef71.png", + "aggregators": [ + "CoinGecko", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x3106a0a076bedae847652f42ef07fd58589e001f": { + "address": "0x3106a0a076bedae847652f42ef07fd58589e001f", + "symbol": "ADS", + "decimals": 18, + "name": "Alkimi", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x3106a0a076bedae847652f42ef07fd58589e001f.png", + "aggregators": [ + "CoinMarketCap", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0xf0430bd971ee4a63674a2103e21129e9ccf29686": { + "address": "0xf0430bd971ee4a63674a2103e21129e9ccf29686", + "symbol": "GARY", + "decimals": 9, + "name": "Elons Pet Snail", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xf0430bd971ee4a63674a2103e21129e9ccf29686.png", + "aggregators": [ + "CoinGecko", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0xbbbb2d4d765c1e455e4896a64ba3883e914abbbb": { + "address": "0xbbbb2d4d765c1e455e4896a64ba3883e914abbbb", + "symbol": "BMP", + "decimals": 18, + "name": "BitmapPunks", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xbbbb2d4d765c1e455e4896a64ba3883e914abbbb.png", + "aggregators": [ + "CoinGecko", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x9a594f5ed8d119b73525dfe23adbceca77fd828d": { + "address": "0x9a594f5ed8d119b73525dfe23adbceca77fd828d", + "symbol": "TRIANGLE", + "decimals": 18, + "name": "dancing triangle", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x9a594f5ed8d119b73525dfe23adbceca77fd828d.png", + "aggregators": [ + "CoinGecko", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0xe69ccaaaea33ebfe5b76e0dd373cd9a1a31fd410": { + "address": "0xe69ccaaaea33ebfe5b76e0dd373cd9a1a31fd410", + "symbol": "PNUT", + "decimals": 9, + "name": "Peanut", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xe69ccaaaea33ebfe5b76e0dd373cd9a1a31fd410.png", + "aggregators": [ + "CoinMarketCap", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x4957805230831401caad5b690aa138143b711358": { + "address": "0x4957805230831401caad5b690aa138143b711358", + "symbol": "DORA", + "decimals": 18, + "name": "Dora Factory", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x4957805230831401caad5b690aa138143b711358.png", + "aggregators": [ + "CoinGecko", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x362033a25b37603d4c99442501fa7b2852ddb435": { + "address": "0x362033a25b37603d4c99442501fa7b2852ddb435", + "symbol": "MATRIX", + "decimals": 9, + "name": "MATRIX", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x362033a25b37603d4c99442501fa7b2852ddb435.png", + "aggregators": [ + "CoinGecko", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0xe34ba9cbdf45c9d5dcc80e96424337365b6fe889": { + "address": "0xe34ba9cbdf45c9d5dcc80e96424337365b6fe889", + "symbol": "MEDUSA", + "decimals": 9, + "name": "Medusa", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xe34ba9cbdf45c9d5dcc80e96424337365b6fe889.png", + "aggregators": [ + "CoinGecko", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x109ba5f0230b7b39e4a8ab56e7361db89fa0e108": { + "address": "0x109ba5f0230b7b39e4a8ab56e7361db89fa0e108", + "symbol": "TURBO", + "decimals": 18, + "name": "TURBO WIN", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x109ba5f0230b7b39e4a8ab56e7361db89fa0e108.png", + "aggregators": [ + "CoinGecko", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x079d0150cc21e127898db0f51f18ca54db56b1ba": { + "address": "0x079d0150cc21e127898db0f51f18ca54db56b1ba", + "symbol": "BTCACT", + "decimals": 9, + "name": "BITCOIN Act", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x079d0150cc21e127898db0f51f18ca54db56b1ba.png", + "aggregators": [ + "CoinGecko", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x6ee2f71049dde9a93b7c0ee1091b72acf9b46810": { + "address": "0x6ee2f71049dde9a93b7c0ee1091b72acf9b46810", + "symbol": "MERC", + "decimals": 18, + "name": "Liquid Mercury", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x6ee2f71049dde9a93b7c0ee1091b72acf9b46810.png", + "aggregators": [ + "CoinMarketCap", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x270ca21eb1a37cfe0e9a0e7582d8f897e013cdff": { + "address": "0x270ca21eb1a37cfe0e9a0e7582d8f897e013cdff", + "symbol": "DOGIUS", + "decimals": 18, + "name": "Dogius Maximus", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x270ca21eb1a37cfe0e9a0e7582d8f897e013cdff.png", + "aggregators": [ + "CoinGecko", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x96c645d3d3706f793ef52c19bbace441900ed47d": { + "address": "0x96c645d3d3706f793ef52c19bbace441900ed47d", + "symbol": "MPS", + "decimals": 0, + "name": "Mt Pelerin Shares", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x96c645d3d3706f793ef52c19bbace441900ed47d.png", + "aggregators": [ + "CoinMarketCap", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0xa150376112dd24e873086b51347eddd5f2e147d5": { + "address": "0xa150376112dd24e873086b51347eddd5f2e147d5", + "symbol": "GRIX", + "decimals": 18, + "name": "Grix", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xa150376112dd24e873086b51347eddd5f2e147d5.png", + "aggregators": [ + "CoinGecko", + "LiFi", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x8052327f1baf94a9dc8b26b9100f211ee3774f54": { + "address": "0x8052327f1baf94a9dc8b26b9100f211ee3774f54", + "symbol": "ATD", + "decimals": 18, + "name": "A2DAO", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x8052327f1baf94a9dc8b26b9100f211ee3774f54.png", + "aggregators": [ + "CoinGecko", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x6a43795941113c2f58eb487001f4f8ee74b6938a": { + "address": "0x6a43795941113c2f58eb487001f4f8ee74b6938a", + "symbol": "STABUL", + "decimals": 18, + "name": "Stabull Finance", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x6a43795941113c2f58eb487001f4f8ee74b6938a.png", + "aggregators": ["CoinMarketCap", "LiFi", "Rubic", "Sonarwatch"], + "occurrences": 4 + }, + "0xdd16ec0f66e54d453e6756713e533355989040e4": { + "address": "0xdd16ec0f66e54d453e6756713e533355989040e4", + "symbol": "TEN", + "decimals": 18, + "name": "Tokenomy", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xdd16ec0f66e54d453e6756713e533355989040e4.png", + "aggregators": [ + "CoinMarketCap", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x5fe72ed557d8a02fff49b3b826792c765d5ce162": { + "address": "0x5fe72ed557d8a02fff49b3b826792c765d5ce162", + "symbol": "SHEZMU", + "decimals": 18, + "name": "Shezmu", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x5fe72ed557d8a02fff49b3b826792c765d5ce162.png", + "aggregators": [ + "CoinGecko", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x47fe8ab9ee47dd65c24df52324181790b9f47efc": { + "address": "0x47fe8ab9ee47dd65c24df52324181790b9f47efc", + "symbol": "AWETH", + "decimals": 18, + "name": "Alpha WETH Vault", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x47fe8ab9ee47dd65c24df52324181790b9f47efc.png", + "aggregators": ["CoinGecko", "LiFi", "Rubic", "Sonarwatch"], + "occurrences": 4 + }, + "0x1e2f15302b90edde696593607b6bd444b64e8f02": { + "address": "0x1e2f15302b90edde696593607b6bd444b64e8f02", + "symbol": "SHIRYO-INU", + "decimals": 9, + "name": "Shiryo", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x1e2f15302b90edde696593607b6bd444b64e8f02.png", + "aggregators": [ + "CoinMarketCap", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x0ec78ed49c2d27b315d462d43b5bab94d2c79bf8": { + "address": "0x0ec78ed49c2d27b315d462d43b5bab94d2c79bf8", + "symbol": "MEOW", + "decimals": 18, + "name": "MEOW", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x0ec78ed49c2d27b315d462d43b5bab94d2c79bf8.png", + "aggregators": [ + "CoinMarketCap", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0xb113c6cf239f60d380359b762e95c13817275277": { + "address": "0xb113c6cf239f60d380359b762e95c13817275277", + "symbol": "BMEX", + "decimals": 6, + "name": "BitMEX", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xb113c6cf239f60d380359b762e95c13817275277.png", + "aggregators": [ + "CoinMarketCap", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x3914bdb4130306f80f5d8ee099c180442d19680d": { + "address": "0x3914bdb4130306f80f5d8ee099c180442d19680d", + "symbol": "DEPLOY", + "decimals": 18, + "name": "Deployyyyer", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x3914bdb4130306f80f5d8ee099c180442d19680d.png", + "aggregators": [ + "CoinGecko", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0xb131f337c45d386ceec234e194b2663d5c3d9dcf": { + "address": "0xb131f337c45d386ceec234e194b2663d5c3d9dcf", + "symbol": "ICOM", + "decimals": 18, + "name": "iCommunity", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xb131f337c45d386ceec234e194b2663d5c3d9dcf.png", + "aggregators": [ + "CoinMarketCap", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x310c8f00b9de3c31ab95ea68feb6c877538f7947": { + "address": "0x310c8f00b9de3c31ab95ea68feb6c877538f7947", + "symbol": "UNDEAD", + "decimals": 18, + "name": "Undead Blocks", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x310c8f00b9de3c31ab95ea68feb6c877538f7947.png", + "aggregators": [ + "CoinMarketCap", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x78132543d8e20d2417d8a07d9ae199d458a0d581": { + "address": "0x78132543d8e20d2417d8a07d9ae199d458a0d581", + "symbol": "LINU", + "decimals": 18, + "name": "Luna Inu", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x78132543d8e20d2417d8a07d9ae199d458a0d581.png", + "aggregators": [ + "CoinGecko", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0xac9518ba93eeb2336a03137d254d8cc2e4d0fa38": { + "address": "0xac9518ba93eeb2336a03137d254d8cc2e4d0fa38", + "symbol": "EDUM", + "decimals": 18, + "name": "EDUM", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xac9518ba93eeb2336a03137d254d8cc2e4d0fa38.png", + "aggregators": [ + "CoinMarketCap", + "LiFi", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x9b2b931d6ab97b6a887b2c5d8529537e6fe73ebe": { + "address": "0x9b2b931d6ab97b6a887b2c5d8529537e6fe73ebe", + "symbol": "ALLIN", + "decimals": 9, + "name": "All In", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x9b2b931d6ab97b6a887b2c5d8529537e6fe73ebe.png", + "aggregators": [ + "CoinMarketCap", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x2d886570a0da04885bfd6eb48ed8b8ff01a0eb7e": { + "address": "0x2d886570a0da04885bfd6eb48ed8b8ff01a0eb7e", + "symbol": "BCB", + "decimals": 9, + "name": "Blockchain Bets", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x2d886570a0da04885bfd6eb48ed8b8ff01a0eb7e.png", + "aggregators": [ + "CoinMarketCap", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0xeff49b0f56a97c7fd3b51f0ecd2ce999a7861420": { + "address": "0xeff49b0f56a97c7fd3b51f0ecd2ce999a7861420", + "symbol": "FOFAR", + "decimals": 9, + "name": "Fofar", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xeff49b0f56a97c7fd3b51f0ecd2ce999a7861420.png", + "aggregators": [ + "CoinGecko", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0xf7168c8abb0ff80116413a8d95396bbdc318a3ff": { + "address": "0xf7168c8abb0ff80116413a8d95396bbdc318a3ff", + "symbol": "KEKE", + "decimals": 7, + "name": "KEK", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xf7168c8abb0ff80116413a8d95396bbdc318a3ff.png", + "aggregators": [ + "CoinMarketCap", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0xe0a458bf4acf353cb45e211281a334bb1d837885": { + "address": "0xe0a458bf4acf353cb45e211281a334bb1d837885", + "symbol": "4CHAN", + "decimals": 9, + "name": "4Chan", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xe0a458bf4acf353cb45e211281a334bb1d837885.png", + "aggregators": [ + "CoinMarketCap", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x370a366f402e2e41cdbbe54ecec12aae0cce1955": { + "address": "0x370a366f402e2e41cdbbe54ecec12aae0cce1955", + "symbol": "TOAD", + "decimals": 18, + "name": "Toad Killer", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x370a366f402e2e41cdbbe54ecec12aae0cce1955.png", + "aggregators": [ + "CoinMarketCap", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x7a786dac1f315c8a0e9962172ad8ae0c04d9c9b6": { + "address": "0x7a786dac1f315c8a0e9962172ad8ae0c04d9c9b6", + "symbol": "MEMD", + "decimals": 18, + "name": "MemeDAO", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x7a786dac1f315c8a0e9962172ad8ae0c04d9c9b6.png", + "aggregators": [ + "CoinMarketCap", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0xa62894d5196bc44e4c3978400ad07e7b30352372": { + "address": "0xa62894d5196bc44e4c3978400ad07e7b30352372", + "symbol": "X", + "decimals": 9, + "name": "X", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xa62894d5196bc44e4c3978400ad07e7b30352372.png", + "aggregators": [ + "CoinMarketCap", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x07e0edf8ce600fb51d44f51e3348d77d67f298ae": { + "address": "0x07e0edf8ce600fb51d44f51e3348d77d67f298ae", + "symbol": "XRP", + "decimals": 8, + "name": "HarryPotterObamaPacMan8Inu", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x07e0edf8ce600fb51d44f51e3348d77d67f298ae.png", + "aggregators": [ + "CoinMarketCap", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x5362ca75aa3c0e714bc628296640c43dc5cb9ed6": { + "address": "0x5362ca75aa3c0e714bc628296640c43dc5cb9ed6", + "symbol": "HOSHI", + "decimals": 9, + "name": "Dejitaru Hoshi", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x5362ca75aa3c0e714bc628296640c43dc5cb9ed6.png", + "aggregators": [ + "CoinMarketCap", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x8365332d4baf69bc24ca2401b90c3853ab9f818e": { + "address": "0x8365332d4baf69bc24ca2401b90c3853ab9f818e", + "symbol": "WOLF", + "decimals": 18, + "name": "Wolf of Wall Street", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x8365332d4baf69bc24ca2401b90c3853ab9f818e.png", + "aggregators": [ + "CoinMarketCap", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0xd87996ff3d06858bfc20989aef50cc5fcd4d84ca": { + "address": "0xd87996ff3d06858bfc20989aef50cc5fcd4d84ca", + "symbol": "GOLDEN", + "decimals": 9, + "name": "Golden Inu", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xd87996ff3d06858bfc20989aef50cc5fcd4d84ca.png", + "aggregators": [ + "CoinMarketCap", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0xb551b43af192965f74e3dfaa476c890b403cad95": { + "address": "0xb551b43af192965f74e3dfaa476c890b403cad95", + "symbol": "DATA", + "decimals": 9, + "name": "Databot", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xb551b43af192965f74e3dfaa476c890b403cad95.png", + "aggregators": [ + "Metamask", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0xff836a5821e69066c87e268bc51b849fab94240c": { + "address": "0xff836a5821e69066c87e268bc51b849fab94240c", + "symbol": "SMURFCAT", + "decimals": 18, + "name": "Real Smurf Cat", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xff836a5821e69066c87e268bc51b849fab94240c.png", + "aggregators": [ + "CoinMarketCap", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x9778ac3d5a2f916aa9abf1eb85c207d990ca2655": { + "address": "0x9778ac3d5a2f916aa9abf1eb85c207d990ca2655", + "symbol": "OGSM", + "decimals": 18, + "name": "OG SMINEM", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x9778ac3d5a2f916aa9abf1eb85c207d990ca2655.png", + "aggregators": [ + "CoinMarketCap", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0xf538296e7dd856af7044deec949489e2f25705bc": { + "address": "0xf538296e7dd856af7044deec949489e2f25705bc", + "symbol": "MILK", + "decimals": 18, + "name": "Illumicati", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xf538296e7dd856af7044deec949489e2f25705bc.png", + "aggregators": [ + "CoinGecko", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x6034e0d6999741f07cb6fb1162cbaa46a1d33d36": { + "address": "0x6034e0d6999741f07cb6fb1162cbaa46a1d33d36", + "symbol": "VITA-FAST", + "decimals": 18, + "name": "Molecules of Korolchuk IP NFT", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x6034e0d6999741f07cb6fb1162cbaa46a1d33d36.png", + "aggregators": [ + "CoinGecko", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0xcab254f1a32343f11ab41fbde90ecb410cde348a": { + "address": "0xcab254f1a32343f11ab41fbde90ecb410cde348a", + "symbol": "FROGE", + "decimals": 18, + "name": "Froge", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xcab254f1a32343f11ab41fbde90ecb410cde348a.png", + "aggregators": [ + "CoinGecko", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x2d9d7c64f6c00e16c28595ec4ebe4065ef3a250b": { + "address": "0x2d9d7c64f6c00e16c28595ec4ebe4065ef3a250b", + "symbol": "GFY", + "decimals": 9, + "name": "go fu k yourself", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x2d9d7c64f6c00e16c28595ec4ebe4065ef3a250b.png", + "aggregators": [ + "CoinGecko", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x96e61422b6a9ba0e068b6c5add4ffabc6a4aae27": { + "address": "0x96e61422b6a9ba0e068b6c5add4ffabc6a4aae27", + "symbol": "IBEUR", + "decimals": 18, + "name": "Iron Bank EUR", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x96e61422b6a9ba0e068b6c5add4ffabc6a4aae27.png", + "aggregators": [ + "CoinGecko", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0xcd4ee6c8052df6742e4b342cf720ff3ac74f415e": { + "address": "0xcd4ee6c8052df6742e4b342cf720ff3ac74f415e", + "symbol": "STELAI", + "decimals": 9, + "name": "StellaryAI", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xcd4ee6c8052df6742e4b342cf720ff3ac74f415e.png", + "aggregators": [ + "CoinGecko", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x33abe795f9c1b6136608c36db211bd7590f5fdae": { + "address": "0x33abe795f9c1b6136608c36db211bd7590f5fdae", + "symbol": "WOLF", + "decimals": 18, + "name": "Landwolf", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x33abe795f9c1b6136608c36db211bd7590f5fdae.png", + "aggregators": [ + "CoinGecko", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0xb60fdf036f2ad584f79525b5da76c5c531283a1b": { + "address": "0xb60fdf036f2ad584f79525b5da76c5c531283a1b", + "symbol": "NEMO", + "decimals": 9, + "name": "Nemo Sum", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xb60fdf036f2ad584f79525b5da76c5c531283a1b.png", + "aggregators": [ + "CoinGecko", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x8cedb0680531d26e62abdbd0f4c5428b7fdc26d5": { + "address": "0x8cedb0680531d26e62abdbd0f4c5428b7fdc26d5", + "symbol": "MICRO", + "decimals": 18, + "name": "Micro GPT", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x8cedb0680531d26e62abdbd0f4c5428b7fdc26d5.png", + "aggregators": [ + "CoinMarketCap", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x740df024ce73f589acd5e8756b377ef8c6558bab": { + "address": "0x740df024ce73f589acd5e8756b377ef8c6558bab", + "symbol": "HLG", + "decimals": 18, + "name": "Holograph", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x740df024ce73f589acd5e8756b377ef8c6558bab.png", + "aggregators": [ + "CoinGecko", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x3b37a9caf74ead14e521d46af0bf00737d827828": { + "address": "0x3b37a9caf74ead14e521d46af0bf00737d827828", + "symbol": "HOPE", + "decimals": 18, + "name": "History of Pepe", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x3b37a9caf74ead14e521d46af0bf00737d827828.png", + "aggregators": [ + "CoinGecko", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x0d86883faf4ffd7aeb116390af37746f45b6f378": { + "address": "0x0d86883faf4ffd7aeb116390af37746f45b6f378", + "symbol": "USD3", + "decimals": 18, + "name": "Web 3 Dollar", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x0d86883faf4ffd7aeb116390af37746f45b6f378.png", + "aggregators": [ + "CoinGecko", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x6987e0304d1b26a311e68e3f3da26b1c885a4e83": { + "address": "0x6987e0304d1b26a311e68e3f3da26b1c885a4e83", + "symbol": "KAERU", + "decimals": 18, + "name": "Kaeru The Frog", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x6987e0304d1b26a311e68e3f3da26b1c885a4e83.png", + "aggregators": [ + "CoinGecko", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0xd8e8438cf7beed13cfabc82f300fb6573962c9e3": { + "address": "0xd8e8438cf7beed13cfabc82f300fb6573962c9e3", + "symbol": "HONK", + "decimals": 9, + "name": "Pepoclown", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xd8e8438cf7beed13cfabc82f300fb6573962c9e3.png", + "aggregators": [ + "CoinMarketCap", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x7d4a23832fad83258b32ce4fd3109ceef4332af4": { + "address": "0x7d4a23832fad83258b32ce4fd3109ceef4332af4", + "symbol": "STONKS", + "decimals": 9, + "name": "Stonks on ETH", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x7d4a23832fad83258b32ce4fd3109ceef4332af4.png", + "aggregators": [ + "CoinMarketCap", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0xd12a99dbc40036cec6f1b776dccd2d36f5953b94": { + "address": "0xd12a99dbc40036cec6f1b776dccd2d36f5953b94", + "symbol": "DRAGGY", + "decimals": 9, + "name": "Draggy CTO", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xd12a99dbc40036cec6f1b776dccd2d36f5953b94.png", + "aggregators": [ + "CoinMarketCap", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0xfcd7ccee4071aa4ecfac1683b7cc0afecaf42a36": { + "address": "0xfcd7ccee4071aa4ecfac1683b7cc0afecaf42a36", + "symbol": "BLAZE", + "decimals": 18, + "name": "Titan Blaze", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xfcd7ccee4071aa4ecfac1683b7cc0afecaf42a36.png", + "aggregators": [ + "CoinGecko", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0xf3c3745894d979f8f85761bd060520bddbc464e9": { + "address": "0xf3c3745894d979f8f85761bd060520bddbc464e9", + "symbol": "LION", + "decimals": 9, + "name": "King Of Meme", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xf3c3745894d979f8f85761bd060520bddbc464e9.png", + "aggregators": [ + "CoinMarketCap", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x790814cd782983fab4d7b92cf155187a865d9f18": { + "address": "0x790814cd782983fab4d7b92cf155187a865d9f18", + "symbol": "MATT", + "decimals": 9, + "name": "Matt Furie", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x790814cd782983fab4d7b92cf155187a865d9f18.png", + "aggregators": [ + "CoinMarketCap", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x89fd2d8fd8d937f55c89b7da3ceed44fa27e4a81": { + "address": "0x89fd2d8fd8d937f55c89b7da3ceed44fa27e4a81", + "symbol": "BUG", + "decimals": 9, + "name": "Bug", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x89fd2d8fd8d937f55c89b7da3ceed44fa27e4a81.png", + "aggregators": [ + "CoinGecko", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0xba2ae4e0a9c6ecaf172015aa2cdd70a21f5a290b": { + "address": "0xba2ae4e0a9c6ecaf172015aa2cdd70a21f5a290b", + "symbol": "IRO", + "decimals": 9, + "name": "Iro Chan", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xba2ae4e0a9c6ecaf172015aa2cdd70a21f5a290b.png", + "aggregators": [ + "CoinMarketCap", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x283344eea472f0fe04d6f722595a2fffefe1901a": { + "address": "0x283344eea472f0fe04d6f722595a2fffefe1901a", + "symbol": "CODE", + "decimals": 13, + "name": "Code Token", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x283344eea472f0fe04d6f722595a2fffefe1901a.png", + "aggregators": [ + "CoinMarketCap", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0xa4bc2b90743294e5e6fd3321a9a131947f7785db": { + "address": "0xa4bc2b90743294e5e6fd3321a9a131947f7785db", + "symbol": "JEST", + "decimals": 9, + "name": "Jester", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xa4bc2b90743294e5e6fd3321a9a131947f7785db.png", + "aggregators": [ + "CoinGecko", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x2e6a60492fb5b58f5b5d08c7cafc75e740e6dc8e": { + "address": "0x2e6a60492fb5b58f5b5d08c7cafc75e740e6dc8e", + "symbol": "TSUJI", + "decimals": 9, + "name": "Tsutsuji Doge s Sister", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x2e6a60492fb5b58f5b5d08c7cafc75e740e6dc8e.png", + "aggregators": [ + "CoinGecko", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x1001271083c249bd771e1bb76c22d935809a61ee": { + "address": "0x1001271083c249bd771e1bb76c22d935809a61ee", + "symbol": "FUKU", + "decimals": 9, + "name": "Fuku Kun", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x1001271083c249bd771e1bb76c22d935809a61ee.png", + "aggregators": [ + "CoinMarketCap", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0xed89fc0f41d8be2c98b13b7e3cd3e876d73f1d30": { + "address": "0xed89fc0f41d8be2c98b13b7e3cd3e876d73f1d30", + "symbol": "GOU", + "decimals": 9, + "name": "Gou", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xed89fc0f41d8be2c98b13b7e3cd3e876d73f1d30.png", + "aggregators": [ + "CoinMarketCap", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x6a159543abfc7baf816fdbc99efd48e4ee7acc63": { + "address": "0x6a159543abfc7baf816fdbc99efd48e4ee7acc63", + "symbol": "FUKU", + "decimals": 9, + "name": "FUKU", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x6a159543abfc7baf816fdbc99efd48e4ee7acc63.png", + "aggregators": [ + "CoinGecko", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x3fa55eb91be2c5d72890da11a4c0269e7f786555": { + "address": "0x3fa55eb91be2c5d72890da11a4c0269e7f786555", + "symbol": "PROPHET", + "decimals": 18, + "name": "Prophet of Ethereum", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x3fa55eb91be2c5d72890da11a4c0269e7f786555.png", + "aggregators": [ + "CoinGecko", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0xc0cfbe1602dd586349f60e4681bf4badca584ec9": { + "address": "0xc0cfbe1602dd586349f60e4681bf4badca584ec9", + "symbol": "E", + "decimals": 9, + "name": "Etheism", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xc0cfbe1602dd586349f60e4681bf4badca584ec9.png", + "aggregators": [ + "CoinGecko", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0xcdb8fc4ef27dfeaba9b31899a9d165398bf97b9e": { + "address": "0xcdb8fc4ef27dfeaba9b31899a9d165398bf97b9e", + "symbol": "ETHOS", + "decimals": 18, + "name": "Ethos", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xcdb8fc4ef27dfeaba9b31899a9d165398bf97b9e.png", + "aggregators": [ + "CoinGecko", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0xdb04fb08378129621634c151e9b61fef56947920": { + "address": "0xdb04fb08378129621634c151e9b61fef56947920", + "symbol": "LGNDX", + "decimals": 18, + "name": "LegendX", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xdb04fb08378129621634c151e9b61fef56947920.png", + "aggregators": [ + "CoinGecko", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0xa4fb6e1781fbcc921df51352af4cc83ff6c1308f": { + "address": "0xa4fb6e1781fbcc921df51352af4cc83ff6c1308f", + "symbol": "DOGE", + "decimals": 9, + "name": "Department Of Government Efficiency", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xa4fb6e1781fbcc921df51352af4cc83ff6c1308f.png", + "aggregators": [ + "CoinGecko", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x1d4fb9bfa1967be6ca74819e28b98c2aa5ae8b59": { + "address": "0x1d4fb9bfa1967be6ca74819e28b98c2aa5ae8b59", + "symbol": "NEIREI", + "decimals": 9, + "name": "Neirei", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x1d4fb9bfa1967be6ca74819e28b98c2aa5ae8b59.png", + "aggregators": [ + "CoinGecko", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x0db56f603e754f3539157e2b207eff10a4ebd641": { + "address": "0x0db56f603e754f3539157e2b207eff10a4ebd641", + "symbol": "DCAY", + "decimals": 9, + "name": "Whispers Of Decay", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x0db56f603e754f3539157e2b207eff10a4ebd641.png", + "aggregators": [ + "CoinGecko", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x53229609f907be495704fca99ad0835c5f3abd3a": { + "address": "0x53229609f907be495704fca99ad0835c5f3abd3a", + "symbol": "RINTARO", + "decimals": 9, + "name": "Rintaro", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x53229609f907be495704fca99ad0835c5f3abd3a.png", + "aggregators": [ + "CoinGecko", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0xcc7ed2ab6c3396ddbc4316d2d7c1b59ff9d2091f": { + "address": "0xcc7ed2ab6c3396ddbc4316d2d7c1b59ff9d2091f", + "symbol": "HYDRA", + "decimals": 18, + "name": "HYDRA", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xcc7ed2ab6c3396ddbc4316d2d7c1b59ff9d2091f.png", + "aggregators": [ + "CoinGecko", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x85bea4ee627b795a79583fcede229e198aa57055": { + "address": "0x85bea4ee627b795a79583fcede229e198aa57055", + "symbol": "MARVIN", + "decimals": 18, + "name": "Marvin Inu", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x85bea4ee627b795a79583fcede229e198aa57055.png", + "aggregators": [ + "CoinGecko", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x240cd7b53d364a208ed41f8ced4965d11f571b7a": { + "address": "0x240cd7b53d364a208ed41f8ced4965d11f571b7a", + "symbol": "DOGGO", + "decimals": 9, + "name": "Doggo", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x240cd7b53d364a208ed41f8ced4965d11f571b7a.png", + "aggregators": [ + "CoinGecko", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0xedc3be0080f65c628964f44ba3f2b6057e60f8dc": { + "address": "0xedc3be0080f65c628964f44ba3f2b6057e60f8dc", + "symbol": "DASH", + "decimals": 18, + "name": "DASH", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xedc3be0080f65c628964f44ba3f2b6057e60f8dc.png", + "aggregators": [ + "CoinGecko", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0xb8d6196d71cdd7d90a053a7769a077772aaac464": { + "address": "0xb8d6196d71cdd7d90a053a7769a077772aaac464", + "symbol": "MARS", + "decimals": 9, + "name": "Mars", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xb8d6196d71cdd7d90a053a7769a077772aaac464.png", + "aggregators": [ + "CoinMarketCap", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x3566c8ee9780245e974e759a7716ea6ba0702588": { + "address": "0x3566c8ee9780245e974e759a7716ea6ba0702588", + "symbol": "EVA", + "decimals": 9, + "name": "eVa ai", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x3566c8ee9780245e974e759a7716ea6ba0702588.png", + "aggregators": [ + "CoinMarketCap", + "LiFi", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x616bbb932602a9c9871e99806bdb63c9e6da9f8b": { + "address": "0x616bbb932602a9c9871e99806bdb63c9e6da9f8b", + "symbol": "CNET", + "decimals": 18, + "name": "ChainNet", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x616bbb932602a9c9871e99806bdb63c9e6da9f8b.png", + "aggregators": [ + "CoinGecko", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x0da2082905583cedfffd4847879d0f1cf3d25c36": { + "address": "0x0da2082905583cedfffd4847879d0f1cf3d25c36", + "symbol": "MELO", + "decimals": 9, + "name": "Melo", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x0da2082905583cedfffd4847879d0f1cf3d25c36.png", + "aggregators": [ + "CoinMarketCap", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x284b25d8f199125da962abc9ee6e6b1b6715cae3": { + "address": "0x284b25d8f199125da962abc9ee6e6b1b6715cae3", + "symbol": "SNAP", + "decimals": 9, + "name": "Snap first space coin", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x284b25d8f199125da962abc9ee6e6b1b6715cae3.png", + "aggregators": [ + "CoinGecko", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x355c46eebbcbe1fc2844ade63ee565204addd37c": { + "address": "0x355c46eebbcbe1fc2844ade63ee565204addd37c", + "symbol": "URANUS", + "decimals": 9, + "name": "URANUS", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x355c46eebbcbe1fc2844ade63ee565204addd37c.png", + "aggregators": [ + "CoinGecko", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0xb29e475b69f843046a757747943c00dce8a3d982": { + "address": "0xb29e475b69f843046a757747943c00dce8a3d982", + "symbol": "SPCTR", + "decimals": 9, + "name": "Spectre", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xb29e475b69f843046a757747943c00dce8a3d982.png", + "aggregators": [ + "CoinGecko", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x6969e5cfe7578ac5f06d313c1a25578927a5bbc9": { + "address": "0x6969e5cfe7578ac5f06d313c1a25578927a5bbc9", + "symbol": "MORTI", + "decimals": 18, + "name": "Morti", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x6969e5cfe7578ac5f06d313c1a25578927a5bbc9.png", + "aggregators": [ + "CoinGecko", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0xff284f2e8cce4cd2f4537d8a9369482b545908fb": { + "address": "0xff284f2e8cce4cd2f4537d8a9369482b545908fb", + "symbol": "NODE", + "decimals": 9, + "name": "NodelyAI", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xff284f2e8cce4cd2f4537d8a9369482b545908fb.png", + "aggregators": [ + "CoinMarketCap", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x5640e0560e6afd6a9f4ddb41230d0201d181fea7": { + "address": "0x5640e0560e6afd6a9f4ddb41230d0201d181fea7", + "symbol": "DMAGA", + "decimals": 9, + "name": "dark maga", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x5640e0560e6afd6a9f4ddb41230d0201d181fea7.png", + "aggregators": [ + "CoinGecko", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x582dd5e7c8af79d45a96de4af5d1152a061abb50": { + "address": "0x582dd5e7c8af79d45a96de4af5d1152a061abb50", + "symbol": "RIZZ", + "decimals": 9, + "name": "Rizz", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x582dd5e7c8af79d45a96de4af5d1152a061abb50.png", + "aggregators": [ + "CoinMarketCap", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x18a8d75f70eaead79b5a55903d036ce337f623a5": { + "address": "0x18a8d75f70eaead79b5a55903d036ce337f623a5", + "symbol": "SIGMA", + "decimals": 18, + "name": "SIGMA", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x18a8d75f70eaead79b5a55903d036ce337f623a5.png", + "aggregators": [ + "CoinGecko", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x4e6221c07dae8d3460a46fa01779cf17fdd72ad8": { + "address": "0x4e6221c07dae8d3460a46fa01779cf17fdd72ad8", + "symbol": "POCHITA", + "decimals": 9, + "name": "Pochita on Ethereum", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x4e6221c07dae8d3460a46fa01779cf17fdd72ad8.png", + "aggregators": [ + "CoinGecko", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0xa99afcc6aa4530d01dfff8e55ec66e4c424c048c": { + "address": "0xa99afcc6aa4530d01dfff8e55ec66e4c424c048c", + "symbol": "AWX", + "decimals": 18, + "name": "AwesomeX", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xa99afcc6aa4530d01dfff8e55ec66e4c424c048c.png", + "aggregators": [ + "CoinGecko", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x92d001c60df1c2248ae9020bbac559331cefcdec": { + "address": "0x92d001c60df1c2248ae9020bbac559331cefcdec", + "symbol": "POCHITA", + "decimals": 9, + "name": "Pochita", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x92d001c60df1c2248ae9020bbac559331cefcdec.png", + "aggregators": [ + "CoinGecko", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x1634e10c9155be623b5a52d6ca01c7a904d89b0a": { + "address": "0x1634e10c9155be623b5a52d6ca01c7a904d89b0a", + "symbol": "FINE", + "decimals": 18, + "name": "This Is Fine Ethereum", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x1634e10c9155be623b5a52d6ca01c7a904d89b0a.png", + "aggregators": [ + "CoinGecko", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x723abbea6e985fb21c57f550d9cceba1c676a6a9": { + "address": "0x723abbea6e985fb21c57f550d9cceba1c676a6a9", + "symbol": "SCF", + "decimals": 9, + "name": "Smoking Chicken Fish", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x723abbea6e985fb21c57f550d9cceba1c676a6a9.png", + "aggregators": [ + "CoinGecko", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x381ab19e04bd9dc333794a9f4d343daeee3b7069": { + "address": "0x381ab19e04bd9dc333794a9f4d343daeee3b7069", + "symbol": "DOLAN", + "decimals": 9, + "name": "Dolan Duk", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x381ab19e04bd9dc333794a9f4d343daeee3b7069.png", + "aggregators": [ + "CoinGecko", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x3e66c9a569efcf704391b54fd1eebd8ca0556960": { + "address": "0x3e66c9a569efcf704391b54fd1eebd8ca0556960", + "symbol": "FUBAO", + "decimals": 18, + "name": "Fu Bao", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x3e66c9a569efcf704391b54fd1eebd8ca0556960.png", + "aggregators": [ + "CoinGecko", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x846e57af29fd21391919318a044191b8725822c2": { + "address": "0x846e57af29fd21391919318a044191b8725822c2", + "symbol": "ETHARDIO", + "decimals": 9, + "name": "ETHARDIO", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x846e57af29fd21391919318a044191b8725822c2.png", + "aggregators": [ + "CoinGecko", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0xa6180029845469e89c507fe3eafedfa242687822": { + "address": "0xa6180029845469e89c507fe3eafedfa242687822", + "symbol": "NEIRO", + "decimals": 9, + "name": "Neiro", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xa6180029845469e89c507fe3eafedfa242687822.png", + "aggregators": [ + "CoinGecko", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x5200b34e6a519f289f5258de4554ebd3db12e822": { + "address": "0x5200b34e6a519f289f5258de4554ebd3db12e822", + "symbol": "GOAT", + "decimals": 9, + "name": "Goatseus Maximus", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x5200b34e6a519f289f5258de4554ebd3db12e822.png", + "aggregators": [ + "CoinGecko", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0xb3e41d6e0ea14b43bc5de3c314a408af171b03dd": { + "address": "0xb3e41d6e0ea14b43bc5de3c314a408af171b03dd", + "symbol": "KABOSU", + "decimals": 9, + "name": "Kabosu", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xb3e41d6e0ea14b43bc5de3c314a408af171b03dd.png", + "aggregators": [ + "CoinGecko", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0xcd17fa52528f37facb3028688e62ec82d9417581": { + "address": "0xcd17fa52528f37facb3028688e62ec82d9417581", + "symbol": "MTRM", + "decimals": 0, + "name": "Materium", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xcd17fa52528f37facb3028688e62ec82d9417581.png", + "aggregators": [ + "CoinMarketCap", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x4b91dfa774acde7ed70e93a6438363feaaa40f54": { + "address": "0x4b91dfa774acde7ed70e93a6438363feaaa40f54", + "symbol": "SPE", + "decimals": 9, + "name": "SavePlanetEarth", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x4b91dfa774acde7ed70e93a6438363feaaa40f54.png", + "aggregators": [ + "CoinMarketCap", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x75858677e27c930fb622759feaffee2b754af07f": { + "address": "0x75858677e27c930fb622759feaffee2b754af07f", + "symbol": "SOUL", + "decimals": 8, + "name": "Phantasma", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x75858677e27c930fb622759feaffee2b754af07f.png", + "aggregators": [ + "CoinMarketCap", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0xd43fba1f38d9b306aeef9d78ad177d51ef802b46": { + "address": "0xd43fba1f38d9b306aeef9d78ad177d51ef802b46", + "symbol": "GONDOLA", + "decimals": 9, + "name": "Gondola", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xd43fba1f38d9b306aeef9d78ad177d51ef802b46.png", + "aggregators": [ + "CoinMarketCap", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x7ddc52c4de30e94be3a6a0a2b259b2850f421989": { + "address": "0x7ddc52c4de30e94be3a6a0a2b259b2850f421989", + "symbol": "GOMINING", + "decimals": 18, + "name": "GoMining Token", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x7ddc52c4de30e94be3a6a0a2b259b2850f421989.png", + "aggregators": [ + "CoinGecko", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x6d3d490964205c8bc8ded39e48e88e8fde45b41f": { + "address": "0x6d3d490964205c8bc8ded39e48e88e8fde45b41f", + "symbol": "GOOCH", + "decimals": 18, + "name": "Gooch", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x6d3d490964205c8bc8ded39e48e88e8fde45b41f.png", + "aggregators": [ + "CoinMarketCap", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x06b884e60794ce02aafab13791b59a2e6a07442f": { + "address": "0x06b884e60794ce02aafab13791b59a2e6a07442f", + "symbol": "UNBNK", + "decimals": 18, + "name": "Unbanked", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x06b884e60794ce02aafab13791b59a2e6a07442f.png", + "aggregators": [ + "CoinMarketCap", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x3cbc780d2934d55a06069e837fabd3e6fc23dab0": { + "address": "0x3cbc780d2934d55a06069e837fabd3e6fc23dab0", + "symbol": "DBX", + "decimals": 18, + "name": "DBX", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x3cbc780d2934d55a06069e837fabd3e6fc23dab0.png", + "aggregators": [ + "CoinMarketCap", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x7f9b09f4717072cf4dc18b95d1b09e2b30c76790": { + "address": "0x7f9b09f4717072cf4dc18b95d1b09e2b30c76790", + "symbol": "VAULT", + "decimals": 18, + "name": "Vault AI", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x7f9b09f4717072cf4dc18b95d1b09e2b30c76790.png", + "aggregators": [ + "CoinMarketCap", + "LiFi", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x909e34d3f6124c324ac83dcca84b74398a6fa173": { + "address": "0x909e34d3f6124c324ac83dcca84b74398a6fa173", + "symbol": "$ZKP", + "decimals": 18, + "name": "Panther", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x909e34d3f6124c324ac83dcca84b74398a6fa173.png", + "aggregators": ["Metamask", "LiFi", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 5 + }, + "0x60215db40b04fe029c42c56ff2e02221c1f288ef": { + "address": "0x60215db40b04fe029c42c56ff2e02221c1f288ef", + "symbol": "CHILLGUY", + "decimals": 9, + "name": "Just a chill guy ETH", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x60215db40b04fe029c42c56ff2e02221c1f288ef.png", + "aggregators": [ + "CoinGecko", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x7483e83b481c69a93cb025395194e0dc4f32d9c4": { + "address": "0x7483e83b481c69a93cb025395194e0dc4f32d9c4", + "symbol": "RUBI", + "decimals": 18, + "name": "Rubicon", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x7483e83b481c69a93cb025395194e0dc4f32d9c4.png", + "aggregators": ["CoinGecko", "LiFi", "Rubic", "Sonarwatch"], + "occurrences": 4 + }, + "0x5e7f6e008c6d9d7ad4c7eb75bd4ce62864cc7454": { + "address": "0x5e7f6e008c6d9d7ad4c7eb75bd4ce62864cc7454", + "symbol": "TAPBITCOIN", + "decimals": 18, + "name": "Tapify", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x5e7f6e008c6d9d7ad4c7eb75bd4ce62864cc7454.png", + "aggregators": [ + "CoinMarketCap", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0xfab13732ae25267a5f47f6f31660c9a82b5fa9f1": { + "address": "0xfab13732ae25267a5f47f6f31660c9a82b5fa9f1", + "symbol": "SKIBIDI", + "decimals": 6, + "name": "Skibidi Dop Dop", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xfab13732ae25267a5f47f6f31660c9a82b5fa9f1.png", + "aggregators": [ + "CoinGecko", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0xf5207ac91c9e7ec7ebb03e93cbcbcad10878ac79": { + "address": "0xf5207ac91c9e7ec7ebb03e93cbcbcad10878ac79", + "symbol": "MIRA", + "decimals": 2, + "name": "Chains of War", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xf5207ac91c9e7ec7ebb03e93cbcbcad10878ac79.png", + "aggregators": [ + "CoinMarketCap", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x5aa7b9be58d4001a7065718641ce7b121b41ef9b": { + "address": "0x5aa7b9be58d4001a7065718641ce7b121b41ef9b", + "symbol": "APAD", + "decimals": 18, + "name": "AlphPad", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x5aa7b9be58d4001a7065718641ce7b121b41ef9b.png", + "aggregators": [ + "CoinGecko", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0xd454b59f16d42667be2fa55292d16647e27f40c4": { + "address": "0xd454b59f16d42667be2fa55292d16647e27f40c4", + "symbol": "XPRT", + "decimals": 6, + "name": "Persistence One", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xd454b59f16d42667be2fa55292d16647e27f40c4.png", + "aggregators": [ + "CoinMarketCap", + "Rubic", + "Squid", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x4af1bc87e43ddb22188bb3791ae00341586fe8fc": { + "address": "0x4af1bc87e43ddb22188bb3791ae00341586fe8fc", + "symbol": "CHAMP", + "decimals": 18, + "name": "Super Champs", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x4af1bc87e43ddb22188bb3791ae00341586fe8fc.png", + "aggregators": [ + "CoinMarketCap", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0xf2b2f7b47715256ce4ea43363a867fdce9353e3a": { + "address": "0xf2b2f7b47715256ce4ea43363a867fdce9353e3a", + "symbol": "BRISE", + "decimals": 9, + "name": "Bitgert", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xf2b2f7b47715256ce4ea43363a867fdce9353e3a.png", + "aggregators": [ + "CoinMarketCap", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0xd459eceddafcc1d876a3be7290a2e16e801073a3": { + "address": "0xd459eceddafcc1d876a3be7290a2e16e801073a3", + "symbol": "BB", + "decimals": 18, + "name": "BounceBit", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xd459eceddafcc1d876a3be7290a2e16e801073a3.png", + "aggregators": [ + "CoinMarketCap", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x04c46e830bb56ce22735d5d8fc9cb90309317d0f": { + "address": "0x04c46e830bb56ce22735d5d8fc9cb90309317d0f", + "symbol": "EKUBO", + "decimals": 18, + "name": "Ekubo Protocol", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x04c46e830bb56ce22735d5d8fc9cb90309317d0f.png", + "aggregators": [ + "CoinMarketCap", + "LiFi", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x91a69021b0baef3445e51726458a0ce601471846": { + "address": "0x91a69021b0baef3445e51726458a0ce601471846", + "symbol": "ERN", + "decimals": 18, + "name": "Ethos Reserve Note", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x91a69021b0baef3445e51726458a0ce601471846.png", + "aggregators": [ + "CoinGecko", + "Rubic", + "Squid", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x490e3f4af13e1616ec97a8c6600c1061a8d0253e": { + "address": "0x490e3f4af13e1616ec97a8c6600c1061a8d0253e", + "symbol": "TRR", + "decimals": 18, + "name": "Terran Coin", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x490e3f4af13e1616ec97a8c6600c1061a8d0253e.png", + "aggregators": [ + "CoinMarketCap", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x395e925834996e558bdec77cd648435d620afb5b": { + "address": "0x395e925834996e558bdec77cd648435d620afb5b", + "symbol": "TFT", + "decimals": 7, + "name": "ThreeFold", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x395e925834996e558bdec77cd648435d620afb5b.png", + "aggregators": [ + "CoinGecko", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0xe28027c99c7746ffb56b0113e5d9708ac86fae8f": { + "address": "0xe28027c99c7746ffb56b0113e5d9708ac86fae8f", + "symbol": "KING", + "decimals": 9, + "name": "KING Coin", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xe28027c99c7746ffb56b0113e5d9708ac86fae8f.png", + "aggregators": [ + "CoinMarketCap", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0xa670d7237398238de01267472c6f13e5b8010fd1": { + "address": "0xa670d7237398238de01267472c6f13e5b8010fd1", + "symbol": "SOMM", + "decimals": 6, + "name": "Sommelier", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xa670d7237398238de01267472c6f13e5b8010fd1.png", + "aggregators": [ + "CoinMarketCap", + "LiFi", + "Socket", + "Rubic", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x06ddb3a8bc0abc14f85e974cf1a93a6f8d4909d9": { + "address": "0x06ddb3a8bc0abc14f85e974cf1a93a6f8d4909d9", + "symbol": "8PAY", + "decimals": 18, + "name": "8Pay", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x06ddb3a8bc0abc14f85e974cf1a93a6f8d4909d9.png", + "aggregators": [ + "CoinMarketCap", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x438e48ed4ce6beecf503d43b9dbd3c30d516e7fd": { + "address": "0x438e48ed4ce6beecf503d43b9dbd3c30d516e7fd", + "symbol": "UWON", + "decimals": 18, + "name": "UWON", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x438e48ed4ce6beecf503d43b9dbd3c30d516e7fd.png", + "aggregators": [ + "CoinGecko", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x180dae91d6d56235453a892d2e56a3e40ba81df8": { + "address": "0x180dae91d6d56235453a892d2e56a3e40ba81df8", + "symbol": "DOJO", + "decimals": 18, + "name": "DOJO", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x180dae91d6d56235453a892d2e56a3e40ba81df8.png", + "aggregators": [ + "CoinGecko", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0xdb726152680ece3c9291f1016f1d36f3995f6941": { + "address": "0xdb726152680ece3c9291f1016f1d36f3995f6941", + "symbol": "MEDIA", + "decimals": 6, + "name": "Media Network Token", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xdb726152680ece3c9291f1016f1d36f3995f6941.png", + "aggregators": [ + "CoinGecko", + "Rubic", + "Rango", + "Sonarwatch", + "SushiSwap" + ], + "occurrences": 5 + }, + "0x154e35c2b0024b3e079c5c5e4fc31c979c189ccb": { + "address": "0x154e35c2b0024b3e079c5c5e4fc31c979c189ccb", + "symbol": "RAID", + "decimals": 18, + "name": "Raid", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x154e35c2b0024b3e079c5c5e4fc31c979c189ccb.png", + "aggregators": [ + "CoinMarketCap", + "LiFi", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x3405a1bd46b85c5c029483fbecf2f3e611026e45": { + "address": "0x3405a1bd46b85c5c029483fbecf2f3e611026e45", + "symbol": "WOW", + "decimals": 18, + "name": "WOWSwap", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x3405a1bd46b85c5c029483fbecf2f3e611026e45.png", + "aggregators": [ + "CoinGecko", + "Rubic", + "Rango", + "Sonarwatch", + "SushiSwap" + ], + "occurrences": 5 + }, + "0x288741b45ad4042f7b124e38b53cec5e9cca0376": { + "address": "0x288741b45ad4042f7b124e38b53cec5e9cca0376", + "symbol": "KOLZ", + "decimals": 18, + "name": "KOLZ", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x288741b45ad4042f7b124e38b53cec5e9cca0376.png", + "aggregators": ["CoinMarketCap", "Socket", "Rubic", "Sonarwatch"], + "occurrences": 4 + }, + "0xe1590a6fa0cff9c960181cb77d8a873601772f64": { + "address": "0xe1590a6fa0cff9c960181cb77d8a873601772f64", + "symbol": "WSB", + "decimals": 18, + "name": "WallStreetBets DApp", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xe1590a6fa0cff9c960181cb77d8a873601772f64.png", + "aggregators": [ + "CoinMarketCap", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0xd4b92b1700615afae333b9d16d28eb55e8e689b8": { + "address": "0xd4b92b1700615afae333b9d16d28eb55e8e689b8", + "symbol": "CATS", + "decimals": 9, + "name": "CatCoin Token", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xd4b92b1700615afae333b9d16d28eb55e8e689b8.png", + "aggregators": [ + "CoinMarketCap", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x9ab70e92319f0b9127df78868fd3655fb9f1e322": { + "address": "0x9ab70e92319f0b9127df78868fd3655fb9f1e322", + "symbol": "WWY", + "decimals": 18, + "name": "WeWay", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x9ab70e92319f0b9127df78868fd3655fb9f1e322.png", + "aggregators": [ + "CoinGecko", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x198d14f2ad9ce69e76ea330b374de4957c3f850a": { + "address": "0x198d14f2ad9ce69e76ea330b374de4957c3f850a", + "symbol": "NFT", + "decimals": 6, + "name": "APENFT", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x198d14f2ad9ce69e76ea330b374de4957c3f850a.png", + "aggregators": [ + "CoinMarketCap", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x983d8edb44ca96c0595f3c456ebdd47855911f34": { + "address": "0x983d8edb44ca96c0595f3c456ebdd47855911f34", + "symbol": "WAR", + "decimals": 18, + "name": "War Legends", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x983d8edb44ca96c0595f3c456ebdd47855911f34.png", + "aggregators": [ + "CoinGecko", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x967fb0d760ed3ce53afe2f0a071674cccae73550": { + "address": "0x967fb0d760ed3ce53afe2f0a071674cccae73550", + "symbol": "XETA", + "decimals": 18, + "name": "XANA", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x967fb0d760ed3ce53afe2f0a071674cccae73550.png", + "aggregators": [ + "CoinMarketCap", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0xc3589f56b6869824804a5ea29f2c9886af1b0fce": { + "address": "0xc3589f56b6869824804a5ea29f2c9886af1b0fce", + "symbol": "HNY", + "decimals": 18, + "name": "Honey", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xc3589f56b6869824804a5ea29f2c9886af1b0fce.png", + "aggregators": [ + "CoinGecko", + "LiFi", + "Socket", + "Rubic", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x62760e76dce6b500349ec5f6119228d047913350": { + "address": "0x62760e76dce6b500349ec5f6119228d047913350", + "symbol": "TWIF", + "decimals": 9, + "name": "Tomwifhat", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x62760e76dce6b500349ec5f6119228d047913350.png", + "aggregators": [ + "CoinMarketCap", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x798bcb35d2d48c8ce7ef8171860b8d53a98b361d": { + "address": "0x798bcb35d2d48c8ce7ef8171860b8d53a98b361d", + "symbol": "MPDAO", + "decimals": 6, + "name": "Meta Pool DAO", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x798bcb35d2d48c8ce7ef8171860b8d53a98b361d.png", + "aggregators": [ + "CoinMarketCap", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x614d7f40701132e25fe6fc17801fbd34212d2eda": { + "address": "0x614d7f40701132e25fe6fc17801fbd34212d2eda", + "symbol": "BLAST", + "decimals": 9, + "name": "SafeBlast", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x614d7f40701132e25fe6fc17801fbd34212d2eda.png", + "aggregators": [ + "CoinMarketCap", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x614577036f0a024dbc1c88ba616b394dd65d105a": { + "address": "0x614577036f0a024dbc1c88ba616b394dd65d105a", + "symbol": "GNUS", + "decimals": 18, + "name": "GENIUS AI", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x614577036f0a024dbc1c88ba616b394dd65d105a.png", + "aggregators": [ + "CoinMarketCap", + "Rubic", + "Squid", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x3f67093dffd4f0af4f2918703c92b60acb7ad78b": { + "address": "0x3f67093dffd4f0af4f2918703c92b60acb7ad78b", + "symbol": "21BTC", + "decimals": 8, + "name": "21 co Wrapped BTC", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x3f67093dffd4f0af4f2918703c92b60acb7ad78b.png", + "aggregators": [ + "CoinGecko", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x68449870eea84453044bd430822827e21fd8f101": { + "address": "0x68449870eea84453044bd430822827e21fd8f101", + "symbol": "ZAI", + "decimals": 18, + "name": "Zaibot", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x68449870eea84453044bd430822827e21fd8f101.png", + "aggregators": [ + "CoinGecko", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x2ef8a2ccb058915e00e16aa13cc6e36f19d8893b": { + "address": "0x2ef8a2ccb058915e00e16aa13cc6e36f19d8893b", + "symbol": "VDO", + "decimals": 18, + "name": "ValiDAO", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x2ef8a2ccb058915e00e16aa13cc6e36f19d8893b.png", + "aggregators": [ + "CoinGecko", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x7a78c790250fef60ce7e8ef85557d67cc4216a52": { + "address": "0x7a78c790250fef60ce7e8ef85557d67cc4216a52", + "symbol": "GLUTEU", + "decimals": 18, + "name": "Gluteus Maximus by Virtuals", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x7a78c790250fef60ce7e8ef85557d67cc4216a52.png", + "aggregators": [ + "CoinGecko", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x975da7b2325f815f1de23c8b68f721fb483b8071": { + "address": "0x975da7b2325f815f1de23c8b68f721fb483b8071", + "symbol": "LOOPIN", + "decimals": 18, + "name": "LooPIN Network", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x975da7b2325f815f1de23c8b68f721fb483b8071.png", + "aggregators": [ + "CoinGecko", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x6551698ee65f5db726e49f9ab0ff1ce9419003a7": { + "address": "0x6551698ee65f5db726e49f9ab0ff1ce9419003a7", + "symbol": "PLAY", + "decimals": 18, + "name": "Playdoge", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x6551698ee65f5db726e49f9ab0ff1ce9419003a7.png", + "aggregators": [ + "CoinGecko", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x95987b0cdc7f65d989a30b3b7132a38388c548eb": { + "address": "0x95987b0cdc7f65d989a30b3b7132a38388c548eb", + "symbol": "PURSE", + "decimals": 18, + "name": "Pundi X PURSE", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x95987b0cdc7f65d989a30b3b7132a38388c548eb.png", + "aggregators": [ + "CoinGecko", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0xbbcb0356bb9e6b3faa5cbf9e5f36185d53403ac9": { + "address": "0xbbcb0356bb9e6b3faa5cbf9e5f36185d53403ac9", + "symbol": "BCOIN", + "decimals": 18, + "name": "Backed Coinbase Global", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xbbcb0356bb9e6b3faa5cbf9e5f36185d53403ac9.png", + "aggregators": [ + "CoinMarketCap", + "LiFi", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0xe20b9e246db5a0d21bf9209e4858bc9a3ff7a034": { + "address": "0xe20b9e246db5a0d21bf9209e4858bc9a3ff7a034", + "symbol": "WBAN", + "decimals": 18, + "name": "Wrapped Banano", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xe20b9e246db5a0d21bf9209e4858bc9a3ff7a034.png", + "aggregators": [ + "CoinMarketCap", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x6ab4ce36260f201e4e2391eca2fd7538f71e4131": { + "address": "0x6ab4ce36260f201e4e2391eca2fd7538f71e4131", + "symbol": "AI", + "decimals": 18, + "name": "Flourishing AI", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x6ab4ce36260f201e4e2391eca2fd7538f71e4131.png", + "aggregators": [ + "CoinMarketCap", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0xcbcc0f036ed4788f63fc0fee32873d6a7487b908": { + "address": "0xcbcc0f036ed4788f63fc0fee32873d6a7487b908", + "symbol": "HMQ", + "decimals": 8, + "name": "Humaniq", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xcbcc0f036ed4788f63fc0fee32873d6a7487b908.png", + "aggregators": [ + "CoinMarketCap", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0xd7631787b4dcc87b1254cfd1e5ce48e96823dee8": { + "address": "0xd7631787b4dcc87b1254cfd1e5ce48e96823dee8", + "symbol": "SCL", + "decimals": 8, + "name": "SOCIAL", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xd7631787b4dcc87b1254cfd1e5ce48e96823dee8.png", + "aggregators": [ + "CoinMarketCap", + "LiFi", + "Rubic", + "Rango", + "Bancor" + ], + "occurrences": 5 + }, + "0x27f610bf36eca0939093343ac28b1534a721dbb4": { + "address": "0x27f610bf36eca0939093343ac28b1534a721dbb4", + "symbol": "WAND", + "decimals": 18, + "name": "Wand Token", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x27f610bf36eca0939093343ac28b1534a721dbb4.png", + "aggregators": [ + "CoinMarketCap", + "LiFi", + "Rubic", + "Rango", + "Bancor" + ], + "occurrences": 5 + }, + "0x9f5f3cfd7a32700c93f971637407ff17b91c7342": { + "address": "0x9f5f3cfd7a32700c93f971637407ff17b91c7342", + "symbol": "DDD", + "decimals": 18, + "name": "Scry info", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x9f5f3cfd7a32700c93f971637407ff17b91c7342.png", + "aggregators": [ + "CoinMarketCap", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x37e8789bb9996cac9156cd5f5fd32599e6b91289": { + "address": "0x37e8789bb9996cac9156cd5f5fd32599e6b91289", + "symbol": "AID", + "decimals": 18, + "name": "AidCoin", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x37e8789bb9996cac9156cd5f5fd32599e6b91289.png", + "aggregators": [ + "CoinMarketCap", + "LiFi", + "Rubic", + "Rango", + "Bancor" + ], + "occurrences": 5 + }, + "0xfc2c4d8f95002c14ed0a7aa65102cac9e5953b5e": { + "address": "0xfc2c4d8f95002c14ed0a7aa65102cac9e5953b5e", + "symbol": "RBLX", + "decimals": 18, + "name": "Rublix", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xfc2c4d8f95002c14ed0a7aa65102cac9e5953b5e.png", + "aggregators": [ + "CoinMarketCap", + "LiFi", + "Rubic", + "Rango", + "Bancor" + ], + "occurrences": 5 + }, + "0x4aac461c86abfa71e9d00d9a2cde8d74e4e1aeea": { + "address": "0x4aac461c86abfa71e9d00d9a2cde8d74e4e1aeea", + "symbol": "ZINC", + "decimals": 18, + "name": "ZINC", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x4aac461c86abfa71e9d00d9a2cde8d74e4e1aeea.png", + "aggregators": [ + "CoinMarketCap", + "LiFi", + "Rubic", + "Rango", + "Bancor" + ], + "occurrences": 5 + }, + "0x6c37bf4f042712c978a73e3fd56d1f5738dd7c43": { + "address": "0x6c37bf4f042712c978a73e3fd56d1f5738dd7c43", + "symbol": "ELET", + "decimals": 18, + "name": "Elementeum", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x6c37bf4f042712c978a73e3fd56d1f5738dd7c43.png", + "aggregators": [ + "CoinMarketCap", + "LiFi", + "Rubic", + "Rango", + "Bancor" + ], + "occurrences": 5 + }, + "0x6e605c269e0c92e70beeb85486f1fc550f9380bd": { + "address": "0x6e605c269e0c92e70beeb85486f1fc550f9380bd", + "symbol": "CATT", + "decimals": 18, + "name": "Catex", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x6e605c269e0c92e70beeb85486f1fc550f9380bd.png", + "aggregators": [ + "CoinMarketCap", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x3166c570935a7d8554c8f4ea792ff965d2efe1f2": { + "address": "0x3166c570935a7d8554c8f4ea792ff965d2efe1f2", + "symbol": "QDAO", + "decimals": 18, + "name": "Q DAO Governance token v10", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x3166c570935a7d8554c8f4ea792ff965d2efe1f2.png", + "aggregators": [ + "CoinMarketCap", + "LiFi", + "Rubic", + "Rango", + "Bancor" + ], + "occurrences": 5 + }, + "0xa7fc5d2453e3f68af0cc1b78bcfee94a1b293650": { + "address": "0xa7fc5d2453e3f68af0cc1b78bcfee94a1b293650", + "symbol": "SPIKE", + "decimals": 10, + "name": "SPIKE", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xa7fc5d2453e3f68af0cc1b78bcfee94a1b293650.png", + "aggregators": [ + "CoinMarketCap", + "LiFi", + "Socket", + "Rubic", + "Rango" + ], + "occurrences": 5 + }, + "0x62199b909fb8b8cf870f97bef2ce6783493c4908": { + "address": "0x62199b909fb8b8cf870f97bef2ce6783493c4908", + "symbol": "PBTC", + "decimals": 18, + "name": "PBTC", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x62199b909fb8b8cf870f97bef2ce6783493c4908.png", + "aggregators": [ + "CoinMarketCap", + "LiFi", + "Socket", + "Rubic", + "Rango" + ], + "occurrences": 5 + }, + "0xf063fe1ab7a291c5d06a86e14730b00bf24cb589": { + "address": "0xf063fe1ab7a291c5d06a86e14730b00bf24cb589", + "symbol": "SALE", + "decimals": 18, + "name": "DxSale Network", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xf063fe1ab7a291c5d06a86e14730b00bf24cb589.png", + "aggregators": [ + "CoinMarketCap", + "LiFi", + "TrustWallet", + "Socket", + "Rubic" + ], + "occurrences": 5 + }, + "0x1dd80016e3d4ae146ee2ebb484e8edd92dacc4ce": { + "address": "0x1dd80016e3d4ae146ee2ebb484e8edd92dacc4ce", + "symbol": "LEAD", + "decimals": 18, + "name": "Lead Wallet", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x1dd80016e3d4ae146ee2ebb484e8edd92dacc4ce.png", + "aggregators": [ + "CoinMarketCap", + "LiFi", + "TrustWallet", + "Rubic", + "Rango" + ], + "occurrences": 5 + }, + "0xdb0f18081b505a7de20b18ac41856bcb4ba86a1a": { + "address": "0xdb0f18081b505a7de20b18ac41856bcb4ba86a1a", + "symbol": "PWING", + "decimals": 9, + "name": "Poly Ontology Wing Token", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xdb0f18081b505a7de20b18ac41856bcb4ba86a1a.png", + "aggregators": [ + "CoinMarketCap", + "LiFi", + "Rubic", + "Rango", + "SushiSwap" + ], + "occurrences": 5 + }, + "0x12d102f06da35cc0111eb58017fd2cd28537d0e1": { + "address": "0x12d102f06da35cc0111eb58017fd2cd28537d0e1", + "symbol": "VOX", + "decimals": 18, + "name": "Vox.Finance", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x12d102f06da35cc0111eb58017fd2cd28537d0e1.png", + "aggregators": [ + "CoinMarketCap", + "LiFi", + "Socket", + "Rubic", + "Rango" + ], + "occurrences": 5 + }, + "0x5dc02ea99285e17656b8350722694c35154db1e8": { + "address": "0x5dc02ea99285e17656b8350722694c35154db1e8", + "symbol": "BOND", + "decimals": 8, + "name": "BOND", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x5dc02ea99285e17656b8350722694c35154db1e8.png", + "aggregators": [ + "CoinMarketCap", + "TrustWallet", + "Socket", + "Rubic", + "Rango" + ], + "occurrences": 5 + }, + "0x0829d2d5cc09d3d341e813c821b0cfae272d9fb2": { + "address": "0x0829d2d5cc09d3d341e813c821b0cfae272d9fb2", + "symbol": "ROCKS", + "decimals": 18, + "name": "ROCKS", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x0829d2d5cc09d3d341e813c821b0cfae272d9fb2.png", + "aggregators": [ + "CoinMarketCap", + "LiFi", + "Socket", + "Rubic", + "Rango" + ], + "occurrences": 5 + }, + "0x59a921db27dd6d4d974745b7ffc5c33932653442": { + "address": "0x59a921db27dd6d4d974745b7ffc5c33932653442", + "symbol": "MGOOGL", + "decimals": 18, + "name": "M Google", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x59a921db27dd6d4d974745b7ffc5c33932653442.png", + "aggregators": [ + "CoinMarketCap", + "LiFi", + "Rubic", + "Rango", + "SushiSwap" + ], + "occurrences": 5 + }, + "0x0cae9e4d663793c2a2a0b211c1cf4bbca2b9caa7": { + "address": "0x0cae9e4d663793c2a2a0b211c1cf4bbca2b9caa7", + "symbol": "MAMZN", + "decimals": 18, + "name": "Mirrored Amazon", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x0cae9e4d663793c2a2a0b211c1cf4bbca2b9caa7.png", + "aggregators": [ + "CoinMarketCap", + "LiFi", + "Rubic", + "Rango", + "SushiSwap" + ], + "occurrences": 5 + }, + "0x41bbedd7286daab5910a1f15d12cbda839852bd7": { + "address": "0x41bbedd7286daab5910a1f15d12cbda839852bd7", + "symbol": "MMSFT", + "decimals": 18, + "name": "Mirrored Microsoft", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x41bbedd7286daab5910a1f15d12cbda839852bd7.png", + "aggregators": [ + "CoinMarketCap", + "LiFi", + "Rubic", + "Rango", + "SushiSwap" + ], + "occurrences": 5 + }, + "0x13b02c8de71680e71f0820c996e4be43c2f57d15": { + "address": "0x13b02c8de71680e71f0820c996e4be43c2f57d15", + "symbol": "MQQQ", + "decimals": 18, + "name": "Wrapped Mirror QQQ Token", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x13b02c8de71680e71f0820c996e4be43c2f57d15.png", + "aggregators": [ + "CoinMarketCap", + "LiFi", + "Rubic", + "Rango", + "SushiSwap" + ], + "occurrences": 5 + }, + "0x31c63146a635eb7465e5853020b39713ac356991": { + "address": "0x31c63146a635eb7465e5853020b39713ac356991", + "symbol": "MUSO", + "decimals": 18, + "name": "M US Oil", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x31c63146a635eb7465e5853020b39713ac356991.png", + "aggregators": [ + "CoinMarketCap", + "LiFi", + "Rubic", + "Rango", + "SushiSwap" + ], + "occurrences": 5 + }, + "0xce593a29905951e8fc579bc092eca72577da575c": { + "address": "0xce593a29905951e8fc579bc092eca72577da575c", + "symbol": "GR", + "decimals": 6, + "name": "GROM", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xce593a29905951e8fc579bc092eca72577da575c.png", + "aggregators": [ + "CoinMarketCap", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x0e99cc0535bb6251f6679fa6e65d6d3b430e840b": { + "address": "0x0e99cc0535bb6251f6679fa6e65d6d3b430e840b", + "symbol": "MFB", + "decimals": 18, + "name": "Mirrored Facebook", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x0e99cc0535bb6251f6679fa6e65d6d3b430e840b.png", + "aggregators": [ + "CoinMarketCap", + "LiFi", + "Rubic", + "Rango", + "SushiSwap" + ], + "occurrences": 5 + }, + "0xb1f1f47061a7be15c69f378cb3f69423bd58f2f8": { + "address": "0xb1f1f47061a7be15c69f378cb3f69423bd58f2f8", + "symbol": "FLASH", + "decimals": 18, + "name": "Flashstake", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xb1f1f47061a7be15c69f378cb3f69423bd58f2f8.png", + "aggregators": [ + "CoinMarketCap", + "LiFi", + "Socket", + "Rubic", + "Rango" + ], + "occurrences": 5 + }, + "0x31b595e7cfdb624d10a3e7a562ed98c3567e3865": { + "address": "0x31b595e7cfdb624d10a3e7a562ed98c3567e3865", + "symbol": "STZEN", + "decimals": 8, + "name": "stakedZEN", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x31b595e7cfdb624d10a3e7a562ed98c3567e3865.png", + "aggregators": [ + "CoinMarketCap", + "LiFi", + "Rubic", + "Rango", + "SushiSwap" + ], + "occurrences": 5 + }, + "0x0309c98b1bffa350bcb3f9fb9780970ca32a5060": { + "address": "0x0309c98b1bffa350bcb3f9fb9780970ca32a5060", + "symbol": "BDI", + "decimals": 18, + "name": "BasketDAO DeFi Index", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x0309c98b1bffa350bcb3f9fb9780970ca32a5060.png", + "aggregators": [ + "CoinMarketCap", + "LiFi", + "Rubic", + "Rango", + "SushiSwap" + ], + "occurrences": 5 + }, + "0x2aa5ce395b00cc486159adbdd97c55b535cf2cf9": { + "address": "0x2aa5ce395b00cc486159adbdd97c55b535cf2cf9", + "symbol": "EGT", + "decimals": 18, + "name": "Elastic Governance", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x2aa5ce395b00cc486159adbdd97c55b535cf2cf9.png", + "aggregators": [ + "CoinMarketCap", + "LiFi", + "Socket", + "Rubic", + "SushiSwap" + ], + "occurrences": 5 + }, + "0xa704fce7b309ec09df16e2f5ab8caf6fe8a4baa9": { + "address": "0xa704fce7b309ec09df16e2f5ab8caf6fe8a4baa9", + "symbol": "AGRI", + "decimals": 18, + "name": "AgriChain Utility Token", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xa704fce7b309ec09df16e2f5ab8caf6fe8a4baa9.png", + "aggregators": [ + "CoinMarketCap", + "LiFi", + "Rubic", + "Rango", + "Bancor" + ], + "occurrences": 5 + }, + "0x5fa54fddf1870c344dbfabb37dfab8700ec0def1": { + "address": "0x5fa54fddf1870c344dbfabb37dfab8700ec0def1", + "symbol": "FROGEX", + "decimals": 9, + "name": "FrogeX", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x5fa54fddf1870c344dbfabb37dfab8700ec0def1.png", + "aggregators": [ + "CoinMarketCap", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x7b35ce522cb72e4077baeb96cb923a5529764a00": { + "address": "0x7b35ce522cb72e4077baeb96cb923a5529764a00", + "symbol": "IMX", + "decimals": 18, + "name": "Impermax", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x7b35ce522cb72e4077baeb96cb923a5529764a00.png", + "aggregators": [ + "CoinMarketCap", + "LiFi", + "Socket", + "Rubic", + "Rango" + ], + "occurrences": 5 + }, + "0x34abce75d2f8f33940c721dca0f562617787bff3": { + "address": "0x34abce75d2f8f33940c721dca0f562617787bff3", + "symbol": "TXAG", + "decimals": 18, + "name": "tSILVER", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x34abce75d2f8f33940c721dca0f562617787bff3.png", + "aggregators": [ + "CoinMarketCap", + "LiFi", + "Socket", + "Rubic", + "Rango" + ], + "occurrences": 5 + }, + "0xb05097849bca421a3f51b249ba6cca4af4b97cb9": { + "address": "0xb05097849bca421a3f51b249ba6cca4af4b97cb9", + "symbol": "FLOAT", + "decimals": 18, + "name": "Float FLOAT", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xb05097849bca421a3f51b249ba6cca4af4b97cb9.png", + "aggregators": [ + "CoinMarketCap", + "LiFi", + "Rubic", + "Rango", + "SushiSwap" + ], + "occurrences": 5 + }, + "0x8a0cdfab62ed35b836dc0633482798421c81b3ec": { + "address": "0x8a0cdfab62ed35b836dc0633482798421c81b3ec", + "symbol": "SPHRI", + "decimals": 18, + "name": "Spherium", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x8a0cdfab62ed35b836dc0633482798421c81b3ec.png", + "aggregators": [ + "CoinMarketCap", + "LiFi", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x1681bcb589b3cfcf0c0616b0ce9b19b240643dc1": { + "address": "0x1681bcb589b3cfcf0c0616b0ce9b19b240643dc1", + "symbol": "ISLE", + "decimals": 9, + "name": "Island", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x1681bcb589b3cfcf0c0616b0ce9b19b240643dc1.png", + "aggregators": [ + "CoinMarketCap", + "1inch", + "Socket", + "Rubic", + "Rango" + ], + "occurrences": 5 + }, + "0xaaca86b876ca011844b5798eca7a67591a9743c8": { + "address": "0xaaca86b876ca011844b5798eca7a67591a9743c8", + "symbol": "BIOS", + "decimals": 18, + "name": "BIOS", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xaaca86b876ca011844b5798eca7a67591a9743c8.png", + "aggregators": [ + "CoinMarketCap", + "LiFi", + "Rubic", + "Rango", + "SushiSwap" + ], + "occurrences": 5 + }, + "0xdddddd4301a082e62e84e43f474f044423921918": { + "address": "0xdddddd4301a082e62e84e43f474f044423921918", + "symbol": "DVF", + "decimals": 18, + "name": "DeversiFi Token", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xdddddd4301a082e62e84e43f474f044423921918.png", + "aggregators": [ + "CoinMarketCap", + "LiFi", + "Rubic", + "Rango", + "SushiSwap" + ], + "occurrences": 5 + }, + "0x4af698b479d0098229dc715655c667ceb6cd8433": { + "address": "0x4af698b479d0098229dc715655c667ceb6cd8433", + "symbol": "MAID", + "decimals": 18, + "name": "MaidCoin", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x4af698b479d0098229dc715655c667ceb6cd8433.png", + "aggregators": [ + "CoinMarketCap", + "LiFi", + "Rubic", + "Rango", + "SushiSwap" + ], + "occurrences": 5 + }, + "0x4463e6a3ded0dbe3f6e15bc8420dfc55e5fea830": { + "address": "0x4463e6a3ded0dbe3f6e15bc8420dfc55e5fea830", + "symbol": "TXA", + "decimals": 18, + "name": "TXA", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x4463e6a3ded0dbe3f6e15bc8420dfc55e5fea830.png", + "aggregators": [ + "CoinMarketCap", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0xd5cd84d6f044abe314ee7e414d37cae8773ef9d3": { + "address": "0xd5cd84d6f044abe314ee7e414d37cae8773ef9d3", + "symbol": "1ONE", + "decimals": 18, + "name": "Harmony ONE", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xd5cd84d6f044abe314ee7e414d37cae8773ef9d3.png", + "aggregators": [ + "CoinMarketCap", + "Rubic", + "Rango", + "SushiSwap", + "Bancor" + ], + "occurrences": 5 + }, + "0x65e6b60ea01668634d68d0513fe814679f925bad": { + "address": "0x65e6b60ea01668634d68d0513fe814679f925bad", + "symbol": "PIXEL", + "decimals": 18, + "name": "PixelVerse", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x65e6b60ea01668634d68d0513fe814679f925bad.png", + "aggregators": [ + "CoinMarketCap", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x3a1311b8c404629e38f61d566cefefed083b9670": { + "address": "0x3a1311b8c404629e38f61d566cefefed083b9670", + "symbol": "PINU", + "decimals": 9, + "name": "Piccolo Inu", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x3a1311b8c404629e38f61d566cefefed083b9670.png", + "aggregators": [ + "CoinMarketCap", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x9d3ee6b64e69ebe12a4bf0b01d031cb80f556ee4": { + "address": "0x9d3ee6b64e69ebe12a4bf0b01d031cb80f556ee4", + "symbol": "PECO", + "decimals": 18, + "name": "Polygon Ecosystem Index", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x9d3ee6b64e69ebe12a4bf0b01d031cb80f556ee4.png", + "aggregators": [ + "CoinMarketCap", + "LiFi", + "Rubic", + "Rango", + "SushiSwap" + ], + "occurrences": 5 + }, + "0x009178997aff09a67d4caccfeb897fb79d036214": { + "address": "0x009178997aff09a67d4caccfeb897fb79d036214", + "symbol": "1SOL", + "decimals": 18, + "name": "1Sol", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x009178997aff09a67d4caccfeb897fb79d036214.png", + "aggregators": [ + "CoinMarketCap", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x8765b1a0eb57ca49be7eacd35b24a574d0203656": { + "address": "0x8765b1a0eb57ca49be7eacd35b24a574d0203656", + "symbol": "MGH", + "decimals": 18, + "name": "MetaGameHub DAO", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x8765b1a0eb57ca49be7eacd35b24a574d0203656.png", + "aggregators": [ + "CoinMarketCap", + "LiFi", + "Socket", + "Rubic", + "Rango" + ], + "occurrences": 5 + }, + "0x4a1d542b52a95ad01ddc70c2e7df0c7bbaadc56f": { + "address": "0x4a1d542b52a95ad01ddc70c2e7df0c7bbaadc56f", + "symbol": "NIFT", + "decimals": 18, + "name": "Niftify", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x4a1d542b52a95ad01ddc70c2e7df0c7bbaadc56f.png", + "aggregators": [ + "CoinMarketCap", + "LiFi", + "Socket", + "Rubic", + "Rango" + ], + "occurrences": 5 + }, + "0x2920f7d6134f4669343e70122ca9b8f19ef8fa5d": { + "address": "0x2920f7d6134f4669343e70122ca9b8f19ef8fa5d", + "symbol": "MONO", + "decimals": 18, + "name": "MonoX Protocol", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x2920f7d6134f4669343e70122ca9b8f19ef8fa5d.png", + "aggregators": [ + "CoinMarketCap", + "LiFi", + "Socket", + "Rubic", + "Rango" + ], + "occurrences": 5 + }, + "0xebf2096e01455108badcbaf86ce30b6e5a72aa52": { + "address": "0xebf2096e01455108badcbaf86ce30b6e5a72aa52", + "symbol": "XIDR", + "decimals": 6, + "name": "XIDR", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xebf2096e01455108badcbaf86ce30b6e5a72aa52.png", + "aggregators": [ + "CoinMarketCap", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0xd52aae39a2b5cc7812f7b9450ebb61dfef702b15": { + "address": "0xd52aae39a2b5cc7812f7b9450ebb61dfef702b15", + "symbol": "MAGE", + "decimals": 18, + "name": "MetaBrands", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xd52aae39a2b5cc7812f7b9450ebb61dfef702b15.png", + "aggregators": [ + "CoinMarketCap", + "LiFi", + "Socket", + "Rubic", + "Rango" + ], + "occurrences": 5 + }, + "0xa350da05405cc204e551c4eed19c3039646528d5": { + "address": "0xa350da05405cc204e551c4eed19c3039646528d5", + "symbol": "BSPT", + "decimals": 18, + "name": "Blocksport", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xa350da05405cc204e551c4eed19c3039646528d5.png", + "aggregators": [ + "CoinMarketCap", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0xc5bcc8ba3f33ab0d64f3473e861bdc0685b19ef5": { + "address": "0xc5bcc8ba3f33ab0d64f3473e861bdc0685b19ef5", + "symbol": "MECHA", + "decimals": 18, + "name": "Mechanium", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xc5bcc8ba3f33ab0d64f3473e861bdc0685b19ef5.png", + "aggregators": [ + "CoinMarketCap", + "LiFi", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x70c4430f9d98b4184a4ef3e44ce10c320a8b7383": { + "address": "0x70c4430f9d98b4184a4ef3e44ce10c320a8b7383", + "symbol": "GYFI", + "decimals": 18, + "name": "Gyroscope", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x70c4430f9d98b4184a4ef3e44ce10c320a8b7383.png", + "aggregators": [ + "CoinMarketCap", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x259ab9b9eab62b0fd98729b97be121073d5b3479": { + "address": "0x259ab9b9eab62b0fd98729b97be121073d5b3479", + "symbol": "EST", + "decimals": 18, + "name": "Erica Social Token", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x259ab9b9eab62b0fd98729b97be121073d5b3479.png", + "aggregators": [ + "CoinMarketCap", + "LiFi", + "Socket", + "Rubic", + "Rango" + ], + "occurrences": 5 + }, + "0x4086e77c5e993fdb90a406285d00111a974f877a": { + "address": "0x4086e77c5e993fdb90a406285d00111a974f877a", + "symbol": "BRWL", + "decimals": 4, + "name": "Blockchain Brawlers", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x4086e77c5e993fdb90a406285d00111a974f877a.png", + "aggregators": [ + "CoinMarketCap", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x299698b4b44bd6d023981a7317798dee12860834": { + "address": "0x299698b4b44bd6d023981a7317798dee12860834", + "symbol": "NFP", + "decimals": 9, + "name": "New Frontier Presents", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x299698b4b44bd6d023981a7317798dee12860834.png", + "aggregators": [ + "CoinMarketCap", + "Socket", + "Rubic", + "Rango", + "SushiSwap" + ], + "occurrences": 5 + }, + "0xbe1dbe6741fb988fb571ab1e28cffb36e3c62629": { + "address": "0xbe1dbe6741fb988fb571ab1e28cffb36e3c62629", + "symbol": "MAV", + "decimals": 18, + "name": "Massive Protocol", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xbe1dbe6741fb988fb571ab1e28cffb36e3c62629.png", + "aggregators": [ + "CoinMarketCap", + "LiFi", + "Socket", + "Rubic", + "Rango" + ], + "occurrences": 5 + }, + "0xd909c5862cdb164adb949d92622082f0092efc3d": { + "address": "0xd909c5862cdb164adb949d92622082f0092efc3d", + "symbol": "IPT", + "decimals": 18, + "name": "Interest Protocol", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xd909c5862cdb164adb949d92622082f0092efc3d.png", + "aggregators": [ + "CoinMarketCap", + "LiFi", + "Socket", + "Rubic", + "Rango" + ], + "occurrences": 5 + }, + "0x8e01397163b21f64cec1f06ca6cc7d9aa8f718e9": { + "address": "0x8e01397163b21f64cec1f06ca6cc7d9aa8f718e9", + "symbol": "LSHARE", + "decimals": 18, + "name": "LIF3 LSHARE", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x8e01397163b21f64cec1f06ca6cc7d9aa8f718e9.png", + "aggregators": [ + "CoinMarketCap", + "LiFi", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x8a7adc1b690e81c758f1bd0f72dfe27ae6ec56a5": { + "address": "0x8a7adc1b690e81c758f1bd0f72dfe27ae6ec56a5", + "symbol": "BLID", + "decimals": 18, + "name": "BLID", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x8a7adc1b690e81c758f1bd0f72dfe27ae6ec56a5.png", + "aggregators": [ + "CoinMarketCap", + "LiFi", + "Socket", + "Rubic", + "Rango" + ], + "occurrences": 5 + }, + "0xb51b97dd5569fab69495316b5a065cccff4b829d": { + "address": "0xb51b97dd5569fab69495316b5a065cccff4b829d", + "symbol": "ASTRAFER", + "decimals": 18, + "name": "Astrafer", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xb51b97dd5569fab69495316b5a065cccff4b829d.png", + "aggregators": [ + "CoinMarketCap", + "LiFi", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0xc18c07a18198a6340cf4d94855fe5eb6dd33b46e": { + "address": "0xc18c07a18198a6340cf4d94855fe5eb6dd33b46e", + "symbol": "QLINDO", + "decimals": 0, + "name": "QLINDO", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xc18c07a18198a6340cf4d94855fe5eb6dd33b46e.png", + "aggregators": [ + "CoinMarketCap", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x968cbe62c830a0ccf4381614662398505657a2a9": { + "address": "0x968cbe62c830a0ccf4381614662398505657a2a9", + "symbol": "TPY", + "decimals": 8, + "name": "Thrupenny", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x968cbe62c830a0ccf4381614662398505657a2a9.png", + "aggregators": [ + "CoinMarketCap", + "LiFi", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0xaa0c5b3567fd1bac8a2a11eb16c3f81a49eea90f": { + "address": "0xaa0c5b3567fd1bac8a2a11eb16c3f81a49eea90f", + "symbol": "MMAI", + "decimals": 7, + "name": "MetamonkeyAi", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xaa0c5b3567fd1bac8a2a11eb16c3f81a49eea90f.png", + "aggregators": [ + "CoinMarketCap", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x5de597849cf72c72f073e9085bdd0dadd8e6c199": { + "address": "0x5de597849cf72c72f073e9085bdd0dadd8e6c199", + "symbol": "FBX", + "decimals": 18, + "name": "Finblox", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x5de597849cf72c72f073e9085bdd0dadd8e6c199.png", + "aggregators": [ + "CoinMarketCap", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x09f098b155d561fc9f7bccc97038b7e3d20baf74": { + "address": "0x09f098b155d561fc9f7bccc97038b7e3d20baf74", + "symbol": "ZOO", + "decimals": 18, + "name": "ZooDAO", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x09f098b155d561fc9f7bccc97038b7e3d20baf74.png", + "aggregators": [ + "CoinMarketCap", + "LiFi", + "Socket", + "Rubic", + "Rango" + ], + "occurrences": 5 + }, + "0xb012be90957d70d9a070918027655f998c123a88": { + "address": "0xb012be90957d70d9a070918027655f998c123a88", + "symbol": "HMX", + "decimals": 18, + "name": "Hermes DAO", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xb012be90957d70d9a070918027655f998c123a88.png", + "aggregators": [ + "CoinMarketCap", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x3dbb00c9be5a327e25caf4f650844c5dba81e34b": { + "address": "0x3dbb00c9be5a327e25caf4f650844c5dba81e34b", + "symbol": "RMATIC", + "decimals": 18, + "name": "StaFi Staked MATIC", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x3dbb00c9be5a327e25caf4f650844c5dba81e34b.png", + "aggregators": [ + "CoinMarketCap", + "LiFi", + "Socket", + "Rubic", + "Rango" + ], + "occurrences": 5 + }, + "0x8442e0e292186854bb6875b2a0fc1308b9ded793": { + "address": "0x8442e0e292186854bb6875b2a0fc1308b9ded793", + "symbol": "PP", + "decimals": 9, + "name": "Print The Pepe", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x8442e0e292186854bb6875b2a0fc1308b9ded793.png", + "aggregators": [ + "CoinMarketCap", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x8929e9dbd2785e3ba16175e596cdd61520fee0d1": { + "address": "0x8929e9dbd2785e3ba16175e596cdd61520fee0d1", + "symbol": "ALTD", + "decimals": 18, + "name": "Altitude", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x8929e9dbd2785e3ba16175e596cdd61520fee0d1.png", + "aggregators": [ + "CoinMarketCap", + "LiFi", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x8a944bb731e302fdb3571350513f149f15fcbe34": { + "address": "0x8a944bb731e302fdb3571350513f149f15fcbe34", + "symbol": "RIZZ", + "decimals": 18, + "name": "RIZZ", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x8a944bb731e302fdb3571350513f149f15fcbe34.png", + "aggregators": [ + "CoinMarketCap", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0xecbee2fae67709f718426ddc3bf770b26b95ed20": { + "address": "0xecbee2fae67709f718426ddc3bf770b26b95ed20", + "symbol": "CLIPS", + "decimals": 18, + "name": "Clips", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xecbee2fae67709f718426ddc3bf770b26b95ed20.png", + "aggregators": [ + "CoinMarketCap", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0xb2ee0adbe0ef1281025d0676511bb1df14600f4d": { + "address": "0xb2ee0adbe0ef1281025d0676511bb1df14600f4d", + "symbol": "FORE", + "decimals": 18, + "name": "FORE Protocol", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xb2ee0adbe0ef1281025d0676511bb1df14600f4d.png", + "aggregators": [ + "CoinMarketCap", + "LiFi", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0xebb82c932759b515b2efc1cfbb6bf2f6dbace404": { + "address": "0xebb82c932759b515b2efc1cfbb6bf2f6dbace404", + "symbol": "SHARES", + "decimals": 18, + "name": "shares finance", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xebb82c932759b515b2efc1cfbb6bf2f6dbace404.png", + "aggregators": [ + "CoinMarketCap", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0xe2512a2f19f0388ad3d7a5263eaa82acd564827b": { + "address": "0xe2512a2f19f0388ad3d7a5263eaa82acd564827b", + "symbol": "SHIDO", + "decimals": 18, + "name": "Shido Network", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xe2512a2f19f0388ad3d7a5263eaa82acd564827b.png", + "aggregators": [ + "CoinMarketCap", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x102c776ddb30c754ded4fdcc77a19230a60d4e4f": { + "address": "0x102c776ddb30c754ded4fdcc77a19230a60d4e4f", + "symbol": "FLC", + "decimals": 18, + "name": "Floor Protocol", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x102c776ddb30c754ded4fdcc77a19230a60d4e4f.png", + "aggregators": [ + "CoinMarketCap", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x33c04bed4533e31f2afb8ac4a61a48eda38c4fa0": { + "address": "0x33c04bed4533e31f2afb8ac4a61a48eda38c4fa0", + "symbol": "GORILLA", + "decimals": 9, + "name": "Gorilla", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x33c04bed4533e31f2afb8ac4a61a48eda38c4fa0.png", + "aggregators": [ + "CoinMarketCap", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x31ea904a7eca45122890deb8da3473a2081bc9d1": { + "address": "0x31ea904a7eca45122890deb8da3473a2081bc9d1", + "symbol": "SEED", + "decimals": 18, + "name": "Bonsai3", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x31ea904a7eca45122890deb8da3473a2081bc9d1.png", + "aggregators": [ + "CoinMarketCap", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x8e3fa615392688ddd9bf8f25d1f8dc744ac1a12c": { + "address": "0x8e3fa615392688ddd9bf8f25d1f8dc744ac1a12c", + "symbol": "GME", + "decimals": 9, + "name": "DumbMoney", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x8e3fa615392688ddd9bf8f25d1f8dc744ac1a12c.png", + "aggregators": [ + "CoinMarketCap", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x82967568a57625675b260ebab1294038c9accc6e": { + "address": "0x82967568a57625675b260ebab1294038c9accc6e", + "symbol": "NOVA", + "decimals": 18, + "name": "Nova DAO", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x82967568a57625675b260ebab1294038c9accc6e.png", + "aggregators": [ + "CoinMarketCap", + "LiFi", + "Socket", + "Rubic", + "Rango" + ], + "occurrences": 5 + }, + "0x57b49219614859176ddb029298486b6c30193cbd": { + "address": "0x57b49219614859176ddb029298486b6c30193cbd", + "symbol": "ORACLE", + "decimals": 18, + "name": "Oracle AI", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x57b49219614859176ddb029298486b6c30193cbd.png", + "aggregators": [ + "CoinMarketCap", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x014337b35167b3711195361bb85259009e50a8a4": { + "address": "0x014337b35167b3711195361bb85259009e50a8a4", + "symbol": "DNODE", + "decimals": 9, + "name": "DecentraNode", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x014337b35167b3711195361bb85259009e50a8a4.png", + "aggregators": [ + "CoinMarketCap", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0xe9eccde9d26fcbb5e93f536cfc4510a7f46274f8": { + "address": "0xe9eccde9d26fcbb5e93f536cfc4510a7f46274f8", + "symbol": "INFRA", + "decimals": 9, + "name": "infraX", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xe9eccde9d26fcbb5e93f536cfc4510a7f46274f8.png", + "aggregators": [ + "CoinMarketCap", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x504624040e0642921c2c266a9ac37cafbd8cda4e": { + "address": "0x504624040e0642921c2c266a9ac37cafbd8cda4e", + "symbol": "LOVE", + "decimals": 18, + "name": "Love Power Coin", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x504624040e0642921c2c266a9ac37cafbd8cda4e.png", + "aggregators": [ + "CoinMarketCap", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0xdaa7699352ac8709f3d2fd092226d3dd7da40474": { + "address": "0xdaa7699352ac8709f3d2fd092226d3dd7da40474", + "symbol": "OPCAT", + "decimals": 18, + "name": "OPCAT", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xdaa7699352ac8709f3d2fd092226d3dd7da40474.png", + "aggregators": [ + "CoinMarketCap", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x49446a0874197839d15395b908328a74ccc96bc0": { + "address": "0x49446a0874197839d15395b908328a74ccc96bc0", + "symbol": "MSTETH", + "decimals": 18, + "name": "Eigenpie mstETH", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x49446a0874197839d15395b908328a74ccc96bc0.png", + "aggregators": [ + "CoinMarketCap", + "LiFi", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x328ea6e5ba4cc4b58799f2aec3d8ba839f4314ba": { + "address": "0x328ea6e5ba4cc4b58799f2aec3d8ba839f4314ba", + "symbol": "TRUMAGA", + "decimals": 18, + "name": "TrumpMAGA", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x328ea6e5ba4cc4b58799f2aec3d8ba839f4314ba.png", + "aggregators": [ + "CoinMarketCap", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0xd9ebbc7970e26b4eced7323b9331763e8272d011": { + "address": "0xd9ebbc7970e26b4eced7323b9331763e8272d011", + "symbol": "TYBENG", + "decimals": 18, + "name": "TYBENG", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xd9ebbc7970e26b4eced7323b9331763e8272d011.png", + "aggregators": [ + "CoinMarketCap", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x9cbefeec232cdbe428ec59ce310c6febc01d6163": { + "address": "0x9cbefeec232cdbe428ec59ce310c6febc01d6163", + "symbol": "FLOCHI", + "decimals": 18, + "name": "Flochi", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x9cbefeec232cdbe428ec59ce310c6febc01d6163.png", + "aggregators": [ + "CoinMarketCap", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0xa7d48da33cf6ac74ed2ba71b7e33005dc51adbb7": { + "address": "0xa7d48da33cf6ac74ed2ba71b7e33005dc51adbb7", + "symbol": "KAAI", + "decimals": 9, + "name": "KanzzAI", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xa7d48da33cf6ac74ed2ba71b7e33005dc51adbb7.png", + "aggregators": [ + "CoinMarketCap", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0xe5db5128935e3a8a8eaeabe4577fac2b353ae9fa": { + "address": "0xe5db5128935e3a8a8eaeabe4577fac2b353ae9fa", + "symbol": "AURK", + "decimals": 18, + "name": "Aurk AI", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xe5db5128935e3a8a8eaeabe4577fac2b353ae9fa.png", + "aggregators": [ + "CoinMarketCap", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0xb868cca38a8e6348d8d299c9b3c80e63d45abe4c": { + "address": "0xb868cca38a8e6348d8d299c9b3c80e63d45abe4c", + "symbol": "FUSION", + "decimals": 9, + "name": "Fusion AI", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xb868cca38a8e6348d8d299c9b3c80e63d45abe4c.png", + "aggregators": [ + "CoinMarketCap", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x733fd1b5aa477d55070546922ba1bd3751c167c7": { + "address": "0x733fd1b5aa477d55070546922ba1bd3751c167c7", + "symbol": "ZKGPT", + "decimals": 18, + "name": "ZKGPT", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x733fd1b5aa477d55070546922ba1bd3751c167c7.png", + "aggregators": [ + "CoinMarketCap", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0xc5b1aa70410a86383f93d807d02b75f1c34cddb8": { + "address": "0xc5b1aa70410a86383f93d807d02b75f1c34cddb8", + "symbol": "PULSE", + "decimals": 18, + "name": "Pulse3D", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xc5b1aa70410a86383f93d807d02b75f1c34cddb8.png", + "aggregators": [ + "CoinMarketCap", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x384efd1e8b05c23dc392a40cb4e515e2229a5243": { + "address": "0x384efd1e8b05c23dc392a40cb4e515e2229a5243", + "symbol": "HXAI", + "decimals": 9, + "name": "Healix AI", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x384efd1e8b05c23dc392a40cb4e515e2229a5243.png", + "aggregators": [ + "CoinMarketCap", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x123fb3dfa7d082291d822ceedaabe3aa0c3f7758": { + "address": "0x123fb3dfa7d082291d822ceedaabe3aa0c3f7758", + "symbol": "QAI", + "decimals": 9, + "name": "QuantaAI", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x123fb3dfa7d082291d822ceedaabe3aa0c3f7758.png", + "aggregators": [ + "CoinMarketCap", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0xf453579d18a6f8ca07db9250e0e0100eb8ccb206": { + "address": "0xf453579d18a6f8ca07db9250e0e0100eb8ccb206", + "symbol": "CIPHER", + "decimals": 18, + "name": "Cipher Protocol", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xf453579d18a6f8ca07db9250e0e0100eb8ccb206.png", + "aggregators": [ + "CoinMarketCap", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x5485a469faea1492191cfce7528ab6e58135aa4d": { + "address": "0x5485a469faea1492191cfce7528ab6e58135aa4d", + "symbol": "OSMI", + "decimals": 18, + "name": "OSMI", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x5485a469faea1492191cfce7528ab6e58135aa4d.png", + "aggregators": [ + "CoinMarketCap", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0xb8690004604b0352b3832408ba7e02fe717e9cfd": { + "address": "0xb8690004604b0352b3832408ba7e02fe717e9cfd", + "symbol": "AGI", + "decimals": 9, + "name": "Agently", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xb8690004604b0352b3832408ba7e02fe717e9cfd.png", + "aggregators": [ + "CoinMarketCap", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0xec2bc2b25ab6ed8e669e202cd0ee533e24c9a068": { + "address": "0xec2bc2b25ab6ed8e669e202cd0ee533e24c9a068", + "symbol": "ZKEX", + "decimals": 18, + "name": "zkExchange", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xec2bc2b25ab6ed8e669e202cd0ee533e24c9a068.png", + "aggregators": [ + "CoinMarketCap", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x89ca762f778c82120c13c79a9bfbdf6e8e663ab4": { + "address": "0x89ca762f778c82120c13c79a9bfbdf6e8e663ab4", + "symbol": "RISE", + "decimals": 18, + "name": "AdRise", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x89ca762f778c82120c13c79a9bfbdf6e8e663ab4.png", + "aggregators": [ + "CoinMarketCap", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x4e241a9ec66832a16bceaeb9156e524487f061d7": { + "address": "0x4e241a9ec66832a16bceaeb9156e524487f061d7", + "symbol": "ETF", + "decimals": 18, + "name": "ETF Rocks", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x4e241a9ec66832a16bceaeb9156e524487f061d7.png", + "aggregators": [ + "Metamask", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x00907f9921424583e7ffbfedf84f92b7b2be4977": { + "address": "0x00907f9921424583e7ffbfedf84f92b7b2be4977", + "symbol": "AETHGHO", + "decimals": 18, + "name": "Aave Ethereum GHO", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x00907f9921424583e7ffbfedf84f92b7b2be4977.png", + "aggregators": ["1inch", "LiFi", "Socket", "Rubic", "Rango"], + "occurrences": 5 + }, + "0xd6ad7a6750a7593e092a9b218d66c0a814a3436e": { + "address": "0xd6ad7a6750a7593e092a9b218d66c0a814a3436e", + "symbol": "YUSDC", + "decimals": 6, + "name": "iearn USDC", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xd6ad7a6750a7593e092a9b218d66c0a814a3436e.png", + "aggregators": ["1inch", "LiFi", "Socket", "Rubic", "Rango"], + "occurrences": 5 + }, + "0xc2cb1040220768554cf699b0d863a3cd4324ce32": { + "address": "0xc2cb1040220768554cf699b0d863a3cd4324ce32", + "symbol": "YDAI", + "decimals": 18, + "name": "iearn DAI", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xc2cb1040220768554cf699b0d863a3cd4324ce32.png", + "aggregators": ["1inch", "LiFi", "Socket", "Rubic", "Rango"], + "occurrences": 5 + }, + "0x26ea744e5b887e5205727f55dfbe8685e3b21951": { + "address": "0x26ea744e5b887e5205727f55dfbe8685e3b21951", + "symbol": "YUSDC", + "decimals": 6, + "name": "iearn USDC", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x26ea744e5b887e5205727f55dfbe8685e3b21951.png", + "aggregators": ["1inch", "LiFi", "Socket", "Rubic", "Rango"], + "occurrences": 5 + }, + "0x16de59092dae5ccf4a1e6439d611fd0653f0bd01": { + "address": "0x16de59092dae5ccf4a1e6439d611fd0653f0bd01", + "symbol": "YDAI", + "decimals": 18, + "name": "iearn DAI", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x16de59092dae5ccf4a1e6439d611fd0653f0bd01.png", + "aggregators": ["1inch", "LiFi", "Socket", "Rubic", "Rango"], + "occurrences": 5 + }, + "0x865ec58b06bf6305b886793aa20a2da31d034e68": { + "address": "0x865ec58b06bf6305b886793aa20a2da31d034e68", + "symbol": "MOC", + "decimals": 18, + "name": "Mossland", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x865ec58b06bf6305b886793aa20a2da31d034e68.png", + "aggregators": ["LiFi", "Socket", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 5 + }, + "0x43e54c2e7b3e294de3a155785f52ab49d87b9922": { + "address": "0x43e54c2e7b3e294de3a155785f52ab49d87b9922", + "symbol": "ASDCRV", + "decimals": 18, + "name": "Aladdin sdCRV", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x43e54c2e7b3e294de3a155785f52ab49d87b9922.png", + "aggregators": ["LiFi", "Socket", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 5 + }, + "0xbc4171f45ef0ef66e76f979df021a34b46dcc81d": { + "address": "0xbc4171f45ef0ef66e76f979df021a34b46dcc81d", + "symbol": "DORA", + "decimals": 18, + "name": "Dora Factory OLD", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xbc4171f45ef0ef66e76f979df021a34b46dcc81d.png", + "aggregators": ["LiFi", "Socket", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 5 + }, + "0xa43a7c62d56df036c187e1966c03e2799d8987ed": { + "address": "0xa43a7c62d56df036c187e1966c03e2799d8987ed", + "symbol": "TRUMATIC", + "decimals": 18, + "name": "TruFin Staked MATIC", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xa43a7c62d56df036c187e1966c03e2799d8987ed.png", + "aggregators": ["LiFi", "Socket", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 5 + }, + "0xc5bbae50781be1669306b9e001eff57a2957b09d": { + "address": "0xc5bbae50781be1669306b9e001eff57a2957b09d", + "symbol": "GTO", + "decimals": 5, + "name": "Gifto", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xc5bbae50781be1669306b9e001eff57a2957b09d.png", + "aggregators": ["LiFi", "Socket", "Rubic", "Rango", "Bancor"], + "occurrences": 5 + }, + "0xb624fde1a972b1c89ec1dad691442d5e8e891469": { + "address": "0xb624fde1a972b1c89ec1dad691442d5e8e891469", + "symbol": "SPORK", + "decimals": 18, + "name": "SporkDAO", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xb624fde1a972b1c89ec1dad691442d5e8e891469.png", + "aggregators": ["LiFi", "Socket", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 5 + }, + "0xdf35988d795d90711e785b488bb2127692e6f956": { + "address": "0xdf35988d795d90711e785b488bb2127692e6f956", + "symbol": "BABYFLOKI", + "decimals": 9, + "name": "BabyFloki", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xdf35988d795d90711e785b488bb2127692e6f956.png", + "aggregators": ["LiFi", "Socket", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 5 + }, + "0xf88baf18fab7e330fa0c4f83949e23f52fececce": { + "address": "0xf88baf18fab7e330fa0c4f83949e23f52fececce", + "symbol": "GRAIN", + "decimals": 18, + "name": "Granary", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xf88baf18fab7e330fa0c4f83949e23f52fececce.png", + "aggregators": ["LiFi", "Rubic", "Squid", "Rango", "Sonarwatch"], + "occurrences": 5 + }, + "0xa80f2c8f61c56546001f5fc2eb8d6e4e72c45d4c": { + "address": "0xa80f2c8f61c56546001f5fc2eb8d6e4e72c45d4c", + "symbol": "UNQT", + "decimals": 18, + "name": "Unique Utility", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xa80f2c8f61c56546001f5fc2eb8d6e4e72c45d4c.png", + "aggregators": ["LiFi", "Socket", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 5 + }, + "0x9348e94a447bf8b2ec11f374d3f055fd47d936df": { + "address": "0x9348e94a447bf8b2ec11f374d3f055fd47d936df", + "symbol": "FLAG", + "decimals": 18, + "name": "For Loot And Glory", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x9348e94a447bf8b2ec11f374d3f055fd47d936df.png", + "aggregators": ["LiFi", "Socket", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 5 + }, + "0xd3043d66afe00344c115f7f81d18277c5c718ff8": { + "address": "0xd3043d66afe00344c115f7f81d18277c5c718ff8", + "symbol": "OMUSD", + "decimals": 6, + "name": "OpenMoney USD", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xd3043d66afe00344c115f7f81d18277c5c718ff8.png", + "aggregators": ["LiFi", "Socket", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 5 + }, + "0xc2e660c62f72c2ad35ace6db78a616215e2f2222": { + "address": "0xc2e660c62f72c2ad35ace6db78a616215e2f2222", + "symbol": "ZUNETH", + "decimals": 18, + "name": "Zunami ETH", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xc2e660c62f72c2ad35ace6db78a616215e2f2222.png", + "aggregators": ["LiFi", "Socket", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 5 + }, + "0xbc138bd20c98186cc0342c8e380953af0cb48ba8": { + "address": "0xbc138bd20c98186cc0342c8e380953af0cb48ba8", + "symbol": "CNDL", + "decimals": 18, + "name": "Candle", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xbc138bd20c98186cc0342c8e380953af0cb48ba8.png", + "aggregators": ["Socket", "Rubic", "Rango", "SushiSwap", "Bancor"], + "occurrences": 5 + }, + "0x44f49ff0da2498bcb1d3dc7c0f999578f67fd8c6": { + "address": "0x44f49ff0da2498bcb1d3dc7c0f999578f67fd8c6", + "symbol": "CORN", + "decimals": 18, + "name": "Corn", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x44f49ff0da2498bcb1d3dc7c0f999578f67fd8c6.png", + "aggregators": ["CoinMarketCap", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0xa3ee21c306a700e682abcdfe9baa6a08f3820419": { + "address": "0xa3ee21c306a700e682abcdfe9baa6a08f3820419", + "symbol": "CTC", + "decimals": 18, + "name": "Creditcoin", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xa3ee21c306a700e682abcdfe9baa6a08f3820419.png", + "aggregators": ["CoinMarketCap", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0x3212b29e33587a00fb1c83346f5dbfa69a458923": { + "address": "0x3212b29e33587a00fb1c83346f5dbfa69a458923", + "symbol": "IMBTC", + "decimals": 8, + "name": "The Tokenized Bitcoin", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x3212b29e33587a00fb1c83346f5dbfa69a458923.png", + "aggregators": ["CoinMarketCap", "LiFi", "Rubic", "Rango"], + "occurrences": 4 + }, + "0x913d8adf7ce6986a8cbfee5a54725d9eea4f0729": { + "address": "0x913d8adf7ce6986a8cbfee5a54725d9eea4f0729", + "symbol": "EASY", + "decimals": 18, + "name": "EASY", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x913d8adf7ce6986a8cbfee5a54725d9eea4f0729.png", + "aggregators": ["CMC", "LiFi", "Rubic", "Rango"], + "occurrences": 4 + }, + "0x77c6e4a580c0dce4e5c7a17d0bc077188a83a059": { + "address": "0x77c6e4a580c0dce4e5c7a17d0bc077188a83a059", + "symbol": "SWUSD", + "decimals": 18, + "name": "Swerve fi USD", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x77c6e4a580c0dce4e5c7a17d0bc077188a83a059.png", + "aggregators": ["CoinMarketCap", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0xd5e0eda0214f1d05af466e483d9376a77a67448b": { + "address": "0xd5e0eda0214f1d05af466e483d9376a77a67448b", + "symbol": "TRALA", + "decimals": 18, + "name": "TRALA TOKEN", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xd5e0eda0214f1d05af466e483d9376a77a67448b.png", + "aggregators": ["CoinMarketCap", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0xbdab72602e9ad40fc6a6852caf43258113b8f7a5": { + "address": "0xbdab72602e9ad40fc6a6852caf43258113b8f7a5", + "symbol": "SOV", + "decimals": 18, + "name": "Sovryn", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xbdab72602e9ad40fc6a6852caf43258113b8f7a5.png", + "aggregators": ["CoinMarketCap", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0xea01906843ea8d910658a2c485ffce7c104ab2b6": { + "address": "0xea01906843ea8d910658a2c485ffce7c104ab2b6", + "symbol": "QTO", + "decimals": 18, + "name": "Qtoken", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xea01906843ea8d910658a2c485ffce7c104ab2b6.png", + "aggregators": ["CoinMarketCap", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0xbf776e4fca664d791c4ee3a71e2722990e003283": { + "address": "0xbf776e4fca664d791c4ee3a71e2722990e003283", + "symbol": "SMTY", + "decimals": 18, + "name": "Smoothy", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xbf776e4fca664d791c4ee3a71e2722990e003283.png", + "aggregators": ["CoinMarketCap", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0x9a64977ebf739dff35ed4281a4b5e833bfdb1314": { + "address": "0x9a64977ebf739dff35ed4281a4b5e833bfdb1314", + "symbol": "NFTFN", + "decimals": 18, + "name": "NFTFN", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x9a64977ebf739dff35ed4281a4b5e833bfdb1314.png", + "aggregators": ["CoinMarketCap", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0x75ecb52e403c617679fbd3e77a50f9d10a842387": { + "address": "0x75ecb52e403c617679fbd3e77a50f9d10a842387", + "symbol": "CSR", + "decimals": 18, + "name": "CSR", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x75ecb52e403c617679fbd3e77a50f9d10a842387.png", + "aggregators": ["CoinMarketCap", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0x92d529163c5e880b9de86f01de0cb8924d790357": { + "address": "0x92d529163c5e880b9de86f01de0cb8924d790357", + "symbol": "EYE", + "decimals": 18, + "name": "Eyeverse", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x92d529163c5e880b9de86f01de0cb8924d790357.png", + "aggregators": ["CoinMarketCap", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0x940bdcb99a0ee5fb008a606778ae87ed9789f257": { + "address": "0x940bdcb99a0ee5fb008a606778ae87ed9789f257", + "symbol": "JFIN", + "decimals": 18, + "name": "JFIN Coin", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x940bdcb99a0ee5fb008a606778ae87ed9789f257.png", + "aggregators": ["CoinMarketCap", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0xface851a4921ce59e912d19329929ce6da6eb0c7": { + "address": "0xface851a4921ce59e912d19329929ce6da6eb0c7", + "symbol": "CLINK", + "decimals": 8, + "name": "cLINK", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xface851a4921ce59e912d19329929ce6da6eb0c7.png", + "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0x8bc2bcb1b1896291942c36f3cca3c1afa0aaa7fd": { + "address": "0x8bc2bcb1b1896291942c36f3cca3c1afa0aaa7fd", + "symbol": "PACE", + "decimals": 18, + "name": "3SPACE ART", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x8bc2bcb1b1896291942c36f3cca3c1afa0aaa7fd.png", + "aggregators": ["Metamask", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0x744030ad4e6c10faf5483b62473d88a254d62261": { + "address": "0x744030ad4e6c10faf5483b62473d88a254d62261", + "symbol": "NLK", + "decimals": 18, + "name": "NuLink", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x744030ad4e6c10faf5483b62473d88a254d62261.png", + "aggregators": ["CoinMarketCap", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0x03042ae6fcfd53e3a0baa1fab5ce70e0cb74e6fb": { + "address": "0x03042ae6fcfd53e3a0baa1fab5ce70e0cb74e6fb", + "symbol": "TBC", + "decimals": 18, + "name": "Ten Best Coins", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x03042ae6fcfd53e3a0baa1fab5ce70e0cb74e6fb.png", + "aggregators": ["CoinMarketCap", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0x213c53c96a01a89e6dcc5683cf16473203e17513": { + "address": "0x213c53c96a01a89e6dcc5683cf16473203e17513", + "symbol": "DSS", + "decimals": 18, + "name": "Defi Shopping Stake", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x213c53c96a01a89e6dcc5683cf16473203e17513.png", + "aggregators": ["CoinMarketCap", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0x25c7b64a93eb1261e130ec21a3e9918caa38b611": { + "address": "0x25c7b64a93eb1261e130ec21a3e9918caa38b611", + "symbol": "WVG0", + "decimals": 18, + "name": "Wrapped Virgin Gen 0 CryptoKittties", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x25c7b64a93eb1261e130ec21a3e9918caa38b611.png", + "aggregators": ["CoinMarketCap", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0x6876eba317272fe221c67405c5e8eb3b24535547": { + "address": "0x6876eba317272fe221c67405c5e8eb3b24535547", + "symbol": "MCT", + "decimals": 18, + "name": "MicroTuber", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x6876eba317272fe221c67405c5e8eb3b24535547.png", + "aggregators": ["CoinMarketCap", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0x3e9c3dc19efe4271d1a65facfca55906045f7b08": { + "address": "0x3e9c3dc19efe4271d1a65facfca55906045f7b08", + "symbol": "FROGS", + "decimals": 18, + "name": "Frogs", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x3e9c3dc19efe4271d1a65facfca55906045f7b08.png", + "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0x6368e1e18c4c419ddfc608a0bed1ccb87b9250fc": { + "address": "0x6368e1e18c4c419ddfc608a0bed1ccb87b9250fc", + "symbol": "XTP", + "decimals": 18, + "name": "Tap", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x6368e1e18c4c419ddfc608a0bed1ccb87b9250fc.png", + "aggregators": ["CoinMarketCap", "LiFi", "Socket", "Rubic"], + "occurrences": 4 + }, + "0x7a41e0517a5eca4fdbc7fbeba4d4c47b9ff6dc63": { + "address": "0x7a41e0517a5eca4fdbc7fbeba4d4c47b9ff6dc63", + "symbol": "ZSC", + "decimals": 18, + "name": "Zeusshield", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x7a41e0517a5eca4fdbc7fbeba4d4c47b9ff6dc63.png", + "aggregators": ["CoinMarketCap", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0xe7f72bc0252ca7b16dbb72eeee1afcdb2429f2dd": { + "address": "0xe7f72bc0252ca7b16dbb72eeee1afcdb2429f2dd", + "symbol": "NFTL", + "decimals": 18, + "name": "NFTLaunch", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xe7f72bc0252ca7b16dbb72eeee1afcdb2429f2dd.png", + "aggregators": ["CoinMarketCap", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0xc8495eaff71d3a563b906295fcf2f685b1783085": { + "address": "0xc8495eaff71d3a563b906295fcf2f685b1783085", + "symbol": "MHYPERBTC", + "decimals": 18, + "name": "Midas Hyperithm BTC", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xc8495eaff71d3a563b906295fcf2f685b1783085.png", + "aggregators": ["CoinGecko", "LiFi", "Rubic"], + "occurrences": 3 + }, + "0x910c4da718caf4ee38ce5c2490cddaeca689204e": { + "address": "0x910c4da718caf4ee38ce5c2490cddaeca689204e", + "symbol": "WACO", + "decimals": 18, + "name": "Waste Digital Coin", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x910c4da718caf4ee38ce5c2490cddaeca689204e.png", + "aggregators": ["CoinMarketCap", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0x5c697fee285b513711a816018dbb34dc0cfc4875": { + "address": "0x5c697fee285b513711a816018dbb34dc0cfc4875", + "symbol": "MNTX", + "decimals": 18, + "name": "Minutes Network Token", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x5c697fee285b513711a816018dbb34dc0cfc4875.png", + "aggregators": ["CoinMarketCap", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0x337af08bb6980ecb68389c5ed8876d08643abf8a": { + "address": "0x337af08bb6980ecb68389c5ed8876d08643abf8a", + "symbol": "VACHI", + "decimals": 18, + "name": "NOVAWCHI", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x337af08bb6980ecb68389c5ed8876d08643abf8a.png", + "aggregators": ["CoinMarketCap", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0x0000000005c6b7c1fd10915a05f034f90d524d6e": { + "address": "0x0000000005c6b7c1fd10915a05f034f90d524d6e", + "symbol": "TRYC", + "decimals": 6, + "name": "TRYC", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x0000000005c6b7c1fd10915a05f034f90d524d6e.png", + "aggregators": ["CoinMarketCap", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0xc502002aeb1b9309fccb016adf50507987fc6c2b": { + "address": "0xc502002aeb1b9309fccb016adf50507987fc6c2b", + "symbol": "GNFT", + "decimals": 18, + "name": "GNFT", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xc502002aeb1b9309fccb016adf50507987fc6c2b.png", + "aggregators": ["CoinMarketCap", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0x1045f5ccb01daea4f8eab055f5fcbb7c0e7c89f0": { + "address": "0x1045f5ccb01daea4f8eab055f5fcbb7c0e7c89f0", + "symbol": "DFIAT", + "decimals": 18, + "name": "DeFiato", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x1045f5ccb01daea4f8eab055f5fcbb7c0e7c89f0.png", + "aggregators": ["CoinMarketCap", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0xde2f7766c8bf14ca67193128535e5c7454f8387c": { + "address": "0xde2f7766c8bf14ca67193128535e5c7454f8387c", + "symbol": "META", + "decimals": 18, + "name": "Metadium", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xde2f7766c8bf14ca67193128535e5c7454f8387c.png", + "aggregators": ["CoinMarketCap", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0xd87de4ccef2c2fe651bc4d130cb1a365248f21fa": { + "address": "0xd87de4ccef2c2fe651bc4d130cb1a365248f21fa", + "symbol": "LYFE", + "decimals": 18, + "name": "Lyfe", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xd87de4ccef2c2fe651bc4d130cb1a365248f21fa.png", + "aggregators": ["CoinMarketCap", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0x547b2f82cecfab9c2b1d36fdda96ef9f58c63b8c": { + "address": "0x547b2f82cecfab9c2b1d36fdda96ef9f58c63b8c", + "symbol": "TXT", + "decimals": 18, + "name": "Taxa Network", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x547b2f82cecfab9c2b1d36fdda96ef9f58c63b8c.png", + "aggregators": ["CoinMarketCap", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0x0262e9374e95b9667b78136c3897cb4e4ef7f0c2": { + "address": "0x0262e9374e95b9667b78136c3897cb4e4ef7f0c2", + "symbol": "FAKT", + "decimals": 18, + "name": "Medifakt", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x0262e9374e95b9667b78136c3897cb4e4ef7f0c2.png", + "aggregators": ["CoinMarketCap", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0x4d4d883f920f7c0c36a1be71a02aa0cde2aa22d1": { + "address": "0x4d4d883f920f7c0c36a1be71a02aa0cde2aa22d1", + "symbol": "OPCH", + "decimals": 18, + "name": "Opticash", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x4d4d883f920f7c0c36a1be71a02aa0cde2aa22d1.png", + "aggregators": ["CoinMarketCap", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0x74b1af114274335598da72f5c6ed7b954a016eed": { + "address": "0x74b1af114274335598da72f5c6ed7b954a016eed", + "symbol": "HIT", + "decimals": 18, + "name": "HitBTC", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x74b1af114274335598da72f5c6ed7b954a016eed.png", + "aggregators": ["CoinMarketCap", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0x116c4b65e14449947bc6fa1bbe844cb16a162d53": { + "address": "0x116c4b65e14449947bc6fa1bbe844cb16a162d53", + "symbol": "BMAX", + "decimals": 18, + "name": "BMAX", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x116c4b65e14449947bc6fa1bbe844cb16a162d53.png", + "aggregators": ["CoinMarketCap", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0xbd04ccc050058a6a422851fa6c0f92bb65eb06ca": { + "address": "0xbd04ccc050058a6a422851fa6c0f92bb65eb06ca", + "symbol": "PRTG", + "decimals": 18, + "name": "Pre Retogeum", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xbd04ccc050058a6a422851fa6c0f92bb65eb06ca.png", + "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0xe9f84d418b008888a992ff8c6d22389c2c3504e0": { + "address": "0xe9f84d418b008888a992ff8c6d22389c2c3504e0", + "symbol": "BASE", + "decimals": 8, + "name": "Maximus BASE", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xe9f84d418b008888a992ff8c6d22389c2c3504e0.png", + "aggregators": ["CoinMarketCap", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0xf55cd1e399e1cc3d95303048897a680be3313308": { + "address": "0xf55cd1e399e1cc3d95303048897a680be3313308", + "symbol": "TRIO", + "decimals": 8, + "name": "Maximus TRIO", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xf55cd1e399e1cc3d95303048897a680be3313308.png", + "aggregators": ["CoinMarketCap", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0x6b0956258ff7bd7645aa35369b55b61b8e6d6140": { + "address": "0x6b0956258ff7bd7645aa35369b55b61b8e6d6140", + "symbol": "LUCKY", + "decimals": 8, + "name": "Maximus LUCKY", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x6b0956258ff7bd7645aa35369b55b61b8e6d6140.png", + "aggregators": ["CoinMarketCap", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0x56978e609f2cab06f77c5c8fd75166fcd8f09bd8": { + "address": "0x56978e609f2cab06f77c5c8fd75166fcd8f09bd8", + "symbol": "GENIE", + "decimals": 18, + "name": "GenieBot", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x56978e609f2cab06f77c5c8fd75166fcd8f09bd8.png", + "aggregators": ["CoinMarketCap", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0xba58444c8050ed9385b7417533a73644036d21eb": { + "address": "0xba58444c8050ed9385b7417533a73644036d21eb", + "symbol": "LOGT", + "decimals": 18, + "name": "Lord of Dragons", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xba58444c8050ed9385b7417533a73644036d21eb.png", + "aggregators": ["CoinMarketCap", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0x94d40b49f020bfebba1a80a0191eb3737b90e8d3": { + "address": "0x94d40b49f020bfebba1a80a0191eb3737b90e8d3", + "symbol": "MNTE", + "decimals": 18, + "name": "Mintera", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x94d40b49f020bfebba1a80a0191eb3737b90e8d3.png", + "aggregators": ["CoinMarketCap", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0xf6ccfd6ef2850e84b73adeace9a075526c5910d4": { + "address": "0xf6ccfd6ef2850e84b73adeace9a075526c5910d4", + "symbol": "RUNIX", + "decimals": 18, + "name": "THE RUNIX TOKEN", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xf6ccfd6ef2850e84b73adeace9a075526c5910d4.png", + "aggregators": ["CoinMarketCap", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0x2a304fda5a85182dca1d03741bb2f07881b9e095": { + "address": "0x2a304fda5a85182dca1d03741bb2f07881b9e095", + "symbol": "DCO", + "decimals": 8, + "name": "DCOMY", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x2a304fda5a85182dca1d03741bb2f07881b9e095.png", + "aggregators": ["CoinMarketCap", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0x7ee089ebb18771caf5bf483a4ee49c4de04295f2": { + "address": "0x7ee089ebb18771caf5bf483a4ee49c4de04295f2", + "symbol": "KEKIUSA", + "decimals": 9, + "name": "Kekius Maximusa", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x7ee089ebb18771caf5bf483a4ee49c4de04295f2.png", + "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0x7c95e7ad2b349dc2f82d0f1117a44b561fa2699a": { + "address": "0x7c95e7ad2b349dc2f82d0f1117a44b561fa2699a", + "symbol": "GRACY", + "decimals": 18, + "name": "Gracy", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x7c95e7ad2b349dc2f82d0f1117a44b561fa2699a.png", + "aggregators": ["CoinMarketCap", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0x6ef460eb3563cfcc73f8147b0a77daffee71f867": { + "address": "0x6ef460eb3563cfcc73f8147b0a77daffee71f867", + "symbol": "ZEUS", + "decimals": 18, + "name": "Zeus AI", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x6ef460eb3563cfcc73f8147b0a77daffee71f867.png", + "aggregators": ["CoinMarketCap", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0x9ca8530ca349c966fe9ef903df17a75b8a778927": { + "address": "0x9ca8530ca349c966fe9ef903df17a75b8a778927", + "symbol": "LCAI", + "decimals": 18, + "name": "Lightchain AI", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x9ca8530ca349c966fe9ef903df17a75b8a778927.png", + "aggregators": ["CoinMarketCap", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0xf3bb9f16677f2b86efd1dfca1c141a99783fde58": { + "address": "0xf3bb9f16677f2b86efd1dfca1c141a99783fde58", + "symbol": "CROWN", + "decimals": 18, + "name": "Crown Token", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xf3bb9f16677f2b86efd1dfca1c141a99783fde58.png", + "aggregators": ["CoinMarketCap", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0x1c9a2d6b33b4826757273d47ebee0e2dddcd978b": { + "address": "0x1c9a2d6b33b4826757273d47ebee0e2dddcd978b", + "symbol": "FFRAX", + "decimals": 8, + "name": "Flux FRAX", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x1c9a2d6b33b4826757273d47ebee0e2dddcd978b.png", + "aggregators": ["CoinMarketCap", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0x666cbfaa3baa2faccfac8854fea1e5db140fb104": { + "address": "0x666cbfaa3baa2faccfac8854fea1e5db140fb104", + "symbol": "PLUMS", + "decimals": 18, + "name": "PLUMS", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x666cbfaa3baa2faccfac8854fea1e5db140fb104.png", + "aggregators": ["CoinMarketCap", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0x8e235f491ae66b82296d58332adc2a021c449c10": { + "address": "0x8e235f491ae66b82296d58332adc2a021c449c10", + "symbol": "TIPJA", + "decimals": 18, + "name": "Tipja", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x8e235f491ae66b82296d58332adc2a021c449c10.png", + "aggregators": ["CoinMarketCap", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0x2f123cf3f37ce3328cc9b5b8415f9ec5109b45e7": { + "address": "0x2f123cf3f37ce3328cc9b5b8415f9ec5109b45e7", + "symbol": "BC3M", + "decimals": 18, + "name": "Backed GOVIES 0 6 months EURO", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x2f123cf3f37ce3328cc9b5b8415f9ec5109b45e7.png", + "aggregators": ["CoinMarketCap", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0x58083b54013631bacc0bbb6d4efa543fee1d9ce0": { + "address": "0x58083b54013631bacc0bbb6d4efa543fee1d9ce0", + "symbol": "FRC", + "decimals": 18, + "name": "Force", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x58083b54013631bacc0bbb6d4efa543fee1d9ce0.png", + "aggregators": ["CoinMarketCap", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0x34bc13de8e5124a7c47d4b7ff7c5ade6ee34faba": { + "address": "0x34bc13de8e5124a7c47d4b7ff7c5ade6ee34faba", + "symbol": "DOJO", + "decimals": 18, + "name": "Project Dojo", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x34bc13de8e5124a7c47d4b7ff7c5ade6ee34faba.png", + "aggregators": ["CoinMarketCap", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0x4db57d585fa82ca32d25086ddc069d899f08d455": { + "address": "0x4db57d585fa82ca32d25086ddc069d899f08d455", + "symbol": "ENOCH", + "decimals": 18, + "name": "Enoch", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x4db57d585fa82ca32d25086ddc069d899f08d455.png", + "aggregators": ["CoinMarketCap", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0xbdbdbdd0c22888e63cb9098ad6d68439197cb091": { + "address": "0xbdbdbdd0c22888e63cb9098ad6d68439197cb091", + "symbol": "BDXN", + "decimals": 18, + "name": "Bondex", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xbdbdbdd0c22888e63cb9098ad6d68439197cb091.png", + "aggregators": ["CoinMarketCap", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0x848896470d989f30503d8f883c331f63b73b66ea": { + "address": "0x848896470d989f30503d8f883c331f63b73b66ea", + "symbol": "MDI", + "decimals": 18, + "name": "Medicle", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x848896470d989f30503d8f883c331f63b73b66ea.png", + "aggregators": ["CoinMarketCap", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0x1cdd2eab61112697626f7b4bb0e23da4febf7b7c": { + "address": "0x1cdd2eab61112697626f7b4bb0e23da4febf7b7c", + "symbol": "USDTSO", + "decimals": 6, + "name": "Bridged Tether Wormhole", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x1cdd2eab61112697626f7b4bb0e23da4febf7b7c.png", + "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0xa40640458fbc27b6eefedea1e9c9e17d4cee7a21": { + "address": "0xa40640458fbc27b6eefedea1e9c9e17d4cee7a21", + "symbol": "AEUR", + "decimals": 18, + "name": "Anchored Coins AEUR", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xa40640458fbc27b6eefedea1e9c9e17d4cee7a21.png", + "aggregators": ["CoinMarketCap", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0x55b2cfcfe99110c773f00b023560dd9ef6c8a13b": { + "address": "0x55b2cfcfe99110c773f00b023560dd9ef6c8a13b", + "symbol": "CDETI", + "decimals": 18, + "name": "Index Coop CoinDesk ETH Trend Index", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x55b2cfcfe99110c773f00b023560dd9ef6c8a13b.png", + "aggregators": ["CoinMarketCap", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0x901ea3606d567f9f1e964639d5cbb8659080be8a": { + "address": "0x901ea3606d567f9f1e964639d5cbb8659080be8a", + "symbol": "CWT", + "decimals": 18, + "name": "CoinW", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x901ea3606d567f9f1e964639d5cbb8659080be8a.png", + "aggregators": ["CoinMarketCap", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0x5c59a5b139b0538cb106d775a022cad98dd14b5a": { + "address": "0x5c59a5b139b0538cb106d775a022cad98dd14b5a", + "symbol": "ORT", + "decimals": 18, + "name": "XREATORS", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x5c59a5b139b0538cb106d775a022cad98dd14b5a.png", + "aggregators": ["CoinMarketCap", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0xdc5e9445169c73cf21e1da0b270e8433cac69959": { + "address": "0xdc5e9445169c73cf21e1da0b270e8433cac69959", + "symbol": "ETHEREUM", + "decimals": 9, + "name": "Ketaicoin", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xdc5e9445169c73cf21e1da0b270e8433cac69959.png", + "aggregators": ["CoinMarketCap", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0x34dce75a3d1910cc9d188aa5a75fb9addcae0fcc": { + "address": "0x34dce75a3d1910cc9d188aa5a75fb9addcae0fcc", + "symbol": "XV", + "decimals": 18, + "name": "XV", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x34dce75a3d1910cc9d188aa5a75fb9addcae0fcc.png", + "aggregators": ["CoinMarketCap", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0x7cd017ca5ddb86861fa983a34b5f495c6f898c41": { + "address": "0x7cd017ca5ddb86861fa983a34b5f495c6f898c41", + "symbol": "WUSD", + "decimals": 18, + "name": "Worldwide USD", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x7cd017ca5ddb86861fa983a34b5f495c6f898c41.png", + "aggregators": ["CoinMarketCap", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0x8ab98330473101309db94b625f9997366a518223": { + "address": "0x8ab98330473101309db94b625f9997366a518223", + "symbol": "PTH", + "decimals": 18, + "name": "PlasticHero", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x8ab98330473101309db94b625f9997366a518223.png", + "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0x7ecbb21346c501fd07eb165e406120fa32381c16": { + "address": "0x7ecbb21346c501fd07eb165e406120fa32381c16", + "symbol": "ECOREAL", + "decimals": 18, + "name": "Ecoreal Estate", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x7ecbb21346c501fd07eb165e406120fa32381c16.png", + "aggregators": ["CoinMarketCap", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0x97d2fc7d16bc34121c3311f2e2e05d298c19956f": { + "address": "0x97d2fc7d16bc34121c3311f2e2e05d298c19956f", + "symbol": "WFO", + "decimals": 18, + "name": "WoofOracle", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x97d2fc7d16bc34121c3311f2e2e05d298c19956f.png", + "aggregators": ["CoinMarketCap", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0x3eb9c7ee5f72e51f61e832137719fe8d1e53a2ce": { + "address": "0x3eb9c7ee5f72e51f61e832137719fe8d1e53a2ce", + "symbol": "DMIND", + "decimals": 9, + "name": "DecentraMind", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x3eb9c7ee5f72e51f61e832137719fe8d1e53a2ce.png", + "aggregators": ["CoinMarketCap", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0x50b806c5fe274c07e46b96be8c68d2fd2d9597b4": { + "address": "0x50b806c5fe274c07e46b96be8c68d2fd2d9597b4", + "symbol": "TUCKER", + "decimals": 18, + "name": "TUCKER CARLSON", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x50b806c5fe274c07e46b96be8c68d2fd2d9597b4.png", + "aggregators": ["CoinMarketCap", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0xe1a3864dbf62fb94834b108ff6bf439ce70183ac": { + "address": "0xe1a3864dbf62fb94834b108ff6bf439ce70183ac", + "symbol": "VXDEFI", + "decimals": 18, + "name": "vXDEFI", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xe1a3864dbf62fb94834b108ff6bf439ce70183ac.png", + "aggregators": ["CoinMarketCap", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0x8143182a775c54578c8b7b3ef77982498866945d": { + "address": "0x8143182a775c54578c8b7b3ef77982498866945d", + "symbol": "QUIL", + "decimals": 8, + "name": "Wrapped QUIL", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x8143182a775c54578c8b7b3ef77982498866945d.png", + "aggregators": ["CoinMarketCap", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0x04c618cdbc1d59142dfeb4b9864835a06983ec2d": { + "address": "0x04c618cdbc1d59142dfeb4b9864835a06983ec2d", + "symbol": "JSM", + "decimals": 18, + "name": "Joseon Mun", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x04c618cdbc1d59142dfeb4b9864835a06983ec2d.png", + "aggregators": ["CoinMarketCap", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0xdea736937d464d288ec80138bcd1a2e109a200e3": { + "address": "0xdea736937d464d288ec80138bcd1a2e109a200e3", + "symbol": "NETF", + "decimals": 6, + "name": "Nest ETF Vault", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xdea736937d464d288ec80138bcd1a2e109a200e3.png", + "aggregators": ["CoinGecko", "Rubic", "Sonarwatch"], + "occurrences": 3 + }, + "0x750c3a0a0ce9984eeb8c5d146dff024b584e5e33": { + "address": "0x750c3a0a0ce9984eeb8c5d146dff024b584e5e33", + "symbol": "ZKHIVE", + "decimals": 18, + "name": "zkHive", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x750c3a0a0ce9984eeb8c5d146dff024b584e5e33.png", + "aggregators": ["CoinMarketCap", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0xc3cc3076cb304494775b3193ef1aa080ba6bf962": { + "address": "0xc3cc3076cb304494775b3193ef1aa080ba6bf962", + "symbol": "ODGN", + "decimals": 18, + "name": "OrdiGen", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xc3cc3076cb304494775b3193ef1aa080ba6bf962.png", + "aggregators": ["CoinMarketCap", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0x77be1ba1cd2d7a63bffc772d361168cc327dd8bc": { + "address": "0x77be1ba1cd2d7a63bffc772d361168cc327dd8bc", + "symbol": "MEOW", + "decimals": 9, + "name": "Meow Meow Coin", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x77be1ba1cd2d7a63bffc772d361168cc327dd8bc.png", + "aggregators": ["Metamask", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0xe96edd48cf0c6e930ce55f171a721017b28e0f08": { + "address": "0xe96edd48cf0c6e930ce55f171a721017b28e0f08", + "symbol": "NEXUSAI", + "decimals": 9, + "name": "NexusAI", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xe96edd48cf0c6e930ce55f171a721017b28e0f08.png", + "aggregators": ["CoinMarketCap", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0x93b1e78a3e652cd2e71c4a767595b77282344932": { + "address": "0x93b1e78a3e652cd2e71c4a767595b77282344932", + "symbol": "BITO", + "decimals": 18, + "name": "BITO Coin", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x93b1e78a3e652cd2e71c4a767595b77282344932.png", + "aggregators": ["CoinMarketCap", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0x6a9da2d710bb9b700acde7cb81f10f1ff8c89041": { + "address": "0x6a9da2d710bb9b700acde7cb81f10f1ff8c89041", + "symbol": "BUIDL-I", + "decimals": 6, + "name": "BlackRock USD Institutional Digital Liq", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x6a9da2d710bb9b700acde7cb81f10f1ff8c89041.png", + "aggregators": ["CoinGecko", "Rubic", "Sonarwatch"], + "occurrences": 3 + }, + "0x2f57430a6ceda85a67121757785877b4a71b8e6d": { + "address": "0x2f57430a6ceda85a67121757785877b4a71b8e6d", + "symbol": "DFP2", + "decimals": 18, + "name": "DefiPlaza", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x2f57430a6ceda85a67121757785877b4a71b8e6d.png", + "aggregators": ["CoinMarketCap", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0xef3daa5fda8ad7aabff4658f1f78061fd626b8f0": { + "address": "0xef3daa5fda8ad7aabff4658f1f78061fd626b8f0", + "symbol": "MUZZ", + "decimals": 18, + "name": "MUZZLE", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xef3daa5fda8ad7aabff4658f1f78061fd626b8f0.png", + "aggregators": ["CoinMarketCap", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0x550775e17ed6767621a1aed580e6eb29ede981e9": { + "address": "0x550775e17ed6767621a1aed580e6eb29ede981e9", + "symbol": "AGN", + "decimals": 18, + "name": "Agnus AI", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x550775e17ed6767621a1aed580e6eb29ede981e9.png", + "aggregators": ["CoinMarketCap", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0x2103e845c5e135493bb6c2a4f0b8651956ea8682": { + "address": "0x2103e845c5e135493bb6c2a4f0b8651956ea8682", + "symbol": "XAUM", + "decimals": 18, + "name": "Matrixdock Gold", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x2103e845c5e135493bb6c2a4f0b8651956ea8682.png", + "aggregators": ["CoinMarketCap", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0x41b13e815308485f7f1af5afcc64a01519085609": { + "address": "0x41b13e815308485f7f1af5afcc64a01519085609", + "symbol": "KBT", + "decimals": 8, + "name": "KoinBay Token", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x41b13e815308485f7f1af5afcc64a01519085609.png", + "aggregators": ["CoinMarketCap", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0x9d14bce1daddf408d77295bb1be9b343814f44de": { + "address": "0x9d14bce1daddf408d77295bb1be9b343814f44de", + "symbol": "KOI", + "decimals": 18, + "name": "Koi", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x9d14bce1daddf408d77295bb1be9b343814f44de.png", + "aggregators": ["CoinMarketCap", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0x2ae21de576e0fe0367651ddcf76e04dd0608c076": { + "address": "0x2ae21de576e0fe0367651ddcf76e04dd0608c076", + "symbol": "GAMBIT", + "decimals": 18, + "name": "Gambit", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x2ae21de576e0fe0367651ddcf76e04dd0608c076.png", + "aggregators": ["CoinMarketCap", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0x3f91ad19af450b44cf5176b4de719d77cb19eec7": { + "address": "0x3f91ad19af450b44cf5176b4de719d77cb19eec7", + "symbol": "LTT", + "decimals": 18, + "name": "Luxury Travel Token", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x3f91ad19af450b44cf5176b4de719d77cb19eec7.png", + "aggregators": ["CoinMarketCap", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0x2a92525fda8d3ab481f8e2a913b64b64bd1c9fdd": { + "address": "0x2a92525fda8d3ab481f8e2a913b64b64bd1c9fdd", + "symbol": "WELF", + "decimals": 18, + "name": "WELF", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x2a92525fda8d3ab481f8e2a913b64b64bd1c9fdd.png", + "aggregators": ["CoinMarketCap", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0x66e535e8d2ebf13f49f3d49e5c50395a97c137b1": { + "address": "0x66e535e8d2ebf13f49f3d49e5c50395a97c137b1", + "symbol": "MOLTEN", + "decimals": 18, + "name": "Molten", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x66e535e8d2ebf13f49f3d49e5c50395a97c137b1.png", + "aggregators": ["CoinMarketCap", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0x60d91f6d394c5004a782e0d175e2b839e078fb83": { + "address": "0x60d91f6d394c5004a782e0d175e2b839e078fb83", + "symbol": "FDM", + "decimals": 18, + "name": "Freedom", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x60d91f6d394c5004a782e0d175e2b839e078fb83.png", + "aggregators": ["CoinMarketCap", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0x737d461917ccf0fa28a52da30672e2ddc214f0bf": { + "address": "0x737d461917ccf0fa28a52da30672e2ddc214f0bf", + "symbol": "OZK", + "decimals": 18, + "name": "OpenZK Network", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x737d461917ccf0fa28a52da30672e2ddc214f0bf.png", + "aggregators": ["CoinMarketCap", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0x5019fe1867d8ccfd76d8d5abd85db5efce548fba": { + "address": "0x5019fe1867d8ccfd76d8d5abd85db5efce548fba", + "symbol": "INT", + "decimals": 18, + "name": "InteNet", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x5019fe1867d8ccfd76d8d5abd85db5efce548fba.png", + "aggregators": ["CoinGecko", "Rubic", "Sonarwatch"], + "occurrences": 3 + }, + "0x9eead9ce15383caeed975427340b3a369410cfbf": { + "address": "0x9eead9ce15383caeed975427340b3a369410cfbf", + "symbol": "AUSDT", + "decimals": 6, + "name": "Alloy Tether", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x9eead9ce15383caeed975427340b3a369410cfbf.png", + "aggregators": ["CoinMarketCap", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0xbb97e381f1d1e94ffa2a5844f6875e6146981009": { + "address": "0xbb97e381f1d1e94ffa2a5844f6875e6146981009", + "symbol": "WBX", + "decimals": 18, + "name": "Wibx", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xbb97e381f1d1e94ffa2a5844f6875e6146981009.png", + "aggregators": ["CoinMarketCap", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0x9b0b23b35ad8136e6181f22b346134ce5f426090": { + "address": "0x9b0b23b35ad8136e6181f22b346134ce5f426090", + "symbol": "CINO", + "decimals": 18, + "name": "Cinogames", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x9b0b23b35ad8136e6181f22b346134ce5f426090.png", + "aggregators": ["CoinMarketCap", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0x84d821f7fbdd595c4c4a50842913e6b1e07d7a53": { + "address": "0x84d821f7fbdd595c4c4a50842913e6b1e07d7a53", + "symbol": "BNPL", + "decimals": 18, + "name": "BNPL Pay", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x84d821f7fbdd595c4c4a50842913e6b1e07d7a53.png", + "aggregators": ["CoinMarketCap", "Rubic", "Rango", "SushiSwap"], + "occurrences": 4 + }, + "0x927402ab67c0cda3c187e9dfe34554ac581441f2": { + "address": "0x927402ab67c0cda3c187e9dfe34554ac581441f2", + "symbol": "SAITABIT", + "decimals": 18, + "name": "SaitaBit", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x927402ab67c0cda3c187e9dfe34554ac581441f2.png", + "aggregators": ["CoinMarketCap", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0x294b9da569c0d694870239813bbe7b5824fd2339": { + "address": "0x294b9da569c0d694870239813bbe7b5824fd2339", + "symbol": "AIR", + "decimals": 18, + "name": "AIRian", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x294b9da569c0d694870239813bbe7b5824fd2339.png", + "aggregators": ["CoinMarketCap", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0x8ccedbae4916b79da7f3f612efb2eb93a2bfd6cf": { + "address": "0x8ccedbae4916b79da7f3f612efb2eb93a2bfd6cf", + "symbol": "MNEE", + "decimals": 18, + "name": "MNEE USD Stablecoin", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x8ccedbae4916b79da7f3f612efb2eb93a2bfd6cf.png", + "aggregators": ["CoinMarketCap", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0x63696fc66795b51d02c1590b536484a41fbddf9a": { + "address": "0x63696fc66795b51d02c1590b536484a41fbddf9a", + "symbol": "WELL", + "decimals": 18, + "name": "WELL3", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x63696fc66795b51d02c1590b536484a41fbddf9a.png", + "aggregators": ["CoinMarketCap", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0x36c7188d64c44301272db3293899507eabb8ed43": { + "address": "0x36c7188d64c44301272db3293899507eabb8ed43", + "symbol": "SWAG", + "decimals": 9, + "name": "Swag", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x36c7188d64c44301272db3293899507eabb8ed43.png", + "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0x4c7fe8f97db97cbccc76989ab742afc66ca6e75c": { + "address": "0x4c7fe8f97db97cbccc76989ab742afc66ca6e75c", + "symbol": "RYO", + "decimals": 18, + "name": "RYO Coin", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x4c7fe8f97db97cbccc76989ab742afc66ca6e75c.png", + "aggregators": ["CoinMarketCap", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0x1223334444a7466fbf985b14e1f4edaf3883bca6": { + "address": "0x1223334444a7466fbf985b14e1f4edaf3883bca6", + "symbol": "GROW", + "decimals": 18, + "name": "Grow", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x1223334444a7466fbf985b14e1f4edaf3883bca6.png", + "aggregators": ["CoinMarketCap", "Socket", "Rubic", "Rango"], + "occurrences": 4 + }, + "0x939069722d568b5498ccba4356e800eaefefd2a5": { + "address": "0x939069722d568b5498ccba4356e800eaefefd2a5", + "symbol": "FNXAI", + "decimals": 18, + "name": "Finanx AI", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x939069722d568b5498ccba4356e800eaefefd2a5.png", + "aggregators": ["CoinMarketCap", "Rubic", "Sonarwatch"], + "occurrences": 3 + }, + "0x0176b898e92e814c06cc379e508ceb571f70bd40": { + "address": "0x0176b898e92e814c06cc379e508ceb571f70bd40", + "symbol": "TIP", + "decimals": 18, + "name": "Tipcoin", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x0176b898e92e814c06cc379e508ceb571f70bd40.png", + "aggregators": ["CoinMarketCap", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0xf7e945fce8f19302aacc7e1418b0a0bdef89327b": { + "address": "0xf7e945fce8f19302aacc7e1418b0a0bdef89327b", + "symbol": "IZE", + "decimals": 8, + "name": "Galvan", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xf7e945fce8f19302aacc7e1418b0a0bdef89327b.png", + "aggregators": ["CoinMarketCap", "Socket", "Rubic", "Sonarwatch"], + "occurrences": 4 + }, + "0x95e40e065afb3059dcabe4aaf404c1f92756603a": { + "address": "0x95e40e065afb3059dcabe4aaf404c1f92756603a", + "symbol": "KDAG", + "decimals": 18, + "name": "King DAG", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x95e40e065afb3059dcabe4aaf404c1f92756603a.png", + "aggregators": ["CoinMarketCap", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0xf6ad4965f7779c6b8ae4d25bf2a2e009a47c3dae": { + "address": "0xf6ad4965f7779c6b8ae4d25bf2a2e009a47c3dae", + "symbol": "LEARN", + "decimals": 18, + "name": "Brainedge", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xf6ad4965f7779c6b8ae4d25bf2a2e009a47c3dae.png", + "aggregators": ["CoinMarketCap", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0xeed3ae7b0f8b5b9bb8c035a9941382b1822671cd": { + "address": "0xeed3ae7b0f8b5b9bb8c035a9941382b1822671cd", + "symbol": "EVY", + "decimals": 12, + "name": "EveryCoin", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xeed3ae7b0f8b5b9bb8c035a9941382b1822671cd.png", + "aggregators": ["CoinMarketCap", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0x2c2f7e7c5604d162d75641256b80f1bf6f4dc796": { + "address": "0x2c2f7e7c5604d162d75641256b80f1bf6f4dc796", + "symbol": "PRARE", + "decimals": 18, + "name": "Polkarare", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x2c2f7e7c5604d162d75641256b80f1bf6f4dc796.png", + "aggregators": ["CoinMarketCap", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0x93c5a00b41fb5f3906b421b2399ac64b79fdbd42": { + "address": "0x93c5a00b41fb5f3906b421b2399ac64b79fdbd42", + "symbol": "VDZ", + "decimals": 18, + "name": "Voidz", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x93c5a00b41fb5f3906b421b2399ac64b79fdbd42.png", + "aggregators": ["CoinMarketCap", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0xef19f4e48830093ce5bc8b3ff7f903a0ae3e9fa1": { + "address": "0xef19f4e48830093ce5bc8b3ff7f903a0ae3e9fa1", + "symbol": "BOTX", + "decimals": 18, + "name": "BOTXCOIN", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xef19f4e48830093ce5bc8b3ff7f903a0ae3e9fa1.png", + "aggregators": ["CoinMarketCap", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0x5fc111f3fa4c6b32eaf65659cfebdeed57234069": { + "address": "0x5fc111f3fa4c6b32eaf65659cfebdeed57234069", + "symbol": "0XGAS", + "decimals": 18, + "name": "0xGasless", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x5fc111f3fa4c6b32eaf65659cfebdeed57234069.png", + "aggregators": ["CoinMarketCap", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0x5319e86f0e41a06e49eb37046b8c11d78bcad68c": { + "address": "0x5319e86f0e41a06e49eb37046b8c11d78bcad68c", + "symbol": "ZLW", + "decimals": 18, + "name": "Zelwin", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x5319e86f0e41a06e49eb37046b8c11d78bcad68c.png", + "aggregators": ["CoinMarketCap", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0x4bcea5e4d0f6ed53cf45e7a28febb2d3621d7438": { + "address": "0x4bcea5e4d0f6ed53cf45e7a28febb2d3621d7438", + "symbol": "MODEX", + "decimals": 18, + "name": "Modex", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x4bcea5e4d0f6ed53cf45e7a28febb2d3621d7438.png", + "aggregators": ["CoinMarketCap", "Socket", "Rubic", "Sonarwatch"], + "occurrences": 4 + }, + "0x9ac9468e7e3e1d194080827226b45d0b892c77fd": { + "address": "0x9ac9468e7e3e1d194080827226b45d0b892c77fd", + "symbol": "YEE", + "decimals": 9, + "name": "Yee Token", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x9ac9468e7e3e1d194080827226b45d0b892c77fd.png", + "aggregators": ["CoinMarketCap", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0x2a9bdcff37ab68b95a53435adfd8892e86084f93": { + "address": "0x2a9bdcff37ab68b95a53435adfd8892e86084f93", + "symbol": "AQT", + "decimals": 18, + "name": "Alpha Quark", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x2a9bdcff37ab68b95a53435adfd8892e86084f93.png", + "aggregators": ["CoinMarketCap", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0xc78b628b060258300218740b1a7a5b3c82b3bd9f": { + "address": "0xc78b628b060258300218740b1a7a5b3c82b3bd9f", + "symbol": "COMAI", + "decimals": 18, + "name": "Commune AI", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xc78b628b060258300218740b1a7a5b3c82b3bd9f.png", + "aggregators": ["CoinMarketCap", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0x49849c98ae39fff122806c06791fa73784fb3675": { + "address": "0x49849c98ae39fff122806c06791fa73784fb3675", + "symbol": "RENBTCCURVE", + "decimals": 18, + "name": "LP renBTC Curve", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x49849c98ae39fff122806c06791fa73784fb3675.png", + "aggregators": ["CoinMarketCap", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0x2e3cfe45e3ee7c017277f22e35d2f29edc99d570": { + "address": "0x2e3cfe45e3ee7c017277f22e35d2f29edc99d570", + "symbol": "WDAG", + "decimals": 8, + "name": "Wrapped DAG", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x2e3cfe45e3ee7c017277f22e35d2f29edc99d570.png", + "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0x4159862bcf6b4393a80550b1ed03dffa6f90533c": { + "address": "0x4159862bcf6b4393a80550b1ed03dffa6f90533c", + "symbol": "OHMI", + "decimals": 18, + "name": "One Hundred Million Inu", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x4159862bcf6b4393a80550b1ed03dffa6f90533c.png", + "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0x4308135e3d92eeea3235085a1dd36b7293336938": { + "address": "0x4308135e3d92eeea3235085a1dd36b7293336938", + "symbol": "CRADLE", + "decimals": 18, + "name": "Cradle Games", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x4308135e3d92eeea3235085a1dd36b7293336938.png", + "aggregators": ["CoinMarketCap", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0xfa93660c3f6a848556bb8e265f994160a1f2b289": { + "address": "0xfa93660c3f6a848556bb8e265f994160a1f2b289", + "symbol": "CBT", + "decimals": 18, + "name": "Community Business Token", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xfa93660c3f6a848556bb8e265f994160a1f2b289.png", + "aggregators": ["CoinMarketCap", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0xc7f950271d118a5bdf250dffc39128dcced8472c": { + "address": "0xc7f950271d118a5bdf250dffc39128dcced8472c", + "symbol": "ARCHIVE", + "decimals": 18, + "name": "Chainback", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xc7f950271d118a5bdf250dffc39128dcced8472c.png", + "aggregators": ["CoinMarketCap", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0x946551dd05c5abd7cc808927480225ce36d8c475": { + "address": "0x946551dd05c5abd7cc808927480225ce36d8c475", + "symbol": "ONE", + "decimals": 18, + "name": "One", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x946551dd05c5abd7cc808927480225ce36d8c475.png", + "aggregators": ["CoinMarketCap", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0xd9812f24f34e0d727bbf6ea7caaee05b7f7a2603": { + "address": "0xd9812f24f34e0d727bbf6ea7caaee05b7f7a2603", + "symbol": "TPU", + "decimals": 18, + "name": "TensorSpace", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xd9812f24f34e0d727bbf6ea7caaee05b7f7a2603.png", + "aggregators": ["CoinMarketCap", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0x8ccd897ca6160ed76755383b201c1948394328c7": { + "address": "0x8ccd897ca6160ed76755383b201c1948394328c7", + "symbol": "BAI", + "decimals": 9, + "name": "Balance AI", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x8ccd897ca6160ed76755383b201c1948394328c7.png", + "aggregators": ["CoinMarketCap", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0xa2a54f1ec1f09316ef12c1770d32ed8f21b1fb6a": { + "address": "0xa2a54f1ec1f09316ef12c1770d32ed8f21b1fb6a", + "symbol": "DFT", + "decimals": 8, + "name": "DigiFinex", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xa2a54f1ec1f09316ef12c1770d32ed8f21b1fb6a.png", + "aggregators": ["CoinMarketCap", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0xaf2ca40d3fc4459436d11b94d21fa4b8a89fb51d": { + "address": "0xaf2ca40d3fc4459436d11b94d21fa4b8a89fb51d", + "symbol": "GCOTI", + "decimals": 18, + "name": "COTI Governance Token", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xaf2ca40d3fc4459436d11b94d21fa4b8a89fb51d.png", + "aggregators": ["CoinMarketCap", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0xcbe7142f5c16755d8683ba329efa1abf7b54482d": { + "address": "0xcbe7142f5c16755d8683ba329efa1abf7b54482d", + "symbol": "MVEDA", + "decimals": 8, + "name": "MedicalVeda", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xcbe7142f5c16755d8683ba329efa1abf7b54482d.png", + "aggregators": ["CoinMarketCap", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0x2730d6fdc86c95a74253beffaa8306b40fedecbb": { + "address": "0x2730d6fdc86c95a74253beffaa8306b40fedecbb", + "symbol": "UNI", + "decimals": 8, + "name": "UNICORN", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x2730d6fdc86c95a74253beffaa8306b40fedecbb.png", + "aggregators": ["CoinMarketCap", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0x68ad75469db9181a1144e769c16adf47f2f32cae": { + "address": "0x68ad75469db9181a1144e769c16adf47f2f32cae", + "symbol": "MAXETH", + "decimals": 18, + "name": "Max on ETH", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x68ad75469db9181a1144e769c16adf47f2f32cae.png", + "aggregators": ["CoinMarketCap", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0xea3eed8616877f5d3c4aebf5a799f2e8d6de9a5e": { + "address": "0xea3eed8616877f5d3c4aebf5a799f2e8d6de9a5e", + "symbol": "RFRM", + "decimals": 18, + "name": "Reform DAO", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xea3eed8616877f5d3c4aebf5a799f2e8d6de9a5e.png", + "aggregators": ["CoinMarketCap", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0xce872db165d4f5623af9c29e03afd416bc5f67bc": { + "address": "0xce872db165d4f5623af9c29e03afd416bc5f67bc", + "symbol": "SVN", + "decimals": 18, + "name": "StakeVault Network", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xce872db165d4f5623af9c29e03afd416bc5f67bc.png", + "aggregators": ["CoinMarketCap", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0x98509e66fbf5a68d18ebb01dc4a52ce020fc8d1f": { + "address": "0x98509e66fbf5a68d18ebb01dc4a52ce020fc8d1f", + "symbol": "MCTP", + "decimals": 18, + "name": "MUMUBIT TOKEN", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x98509e66fbf5a68d18ebb01dc4a52ce020fc8d1f.png", + "aggregators": ["CoinGecko", "Rubic", "Sonarwatch"], + "occurrences": 3 + }, + "0x5d43b66da68706d39f6c97f7f1415615672b446b": { + "address": "0x5d43b66da68706d39f6c97f7f1415615672b446b", + "symbol": "ROG", + "decimals": 18, + "name": "ROGin AI", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x5d43b66da68706d39f6c97f7f1415615672b446b.png", + "aggregators": ["CoinMarketCap", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0x046bad07658f3b6cad9a396cfcbc1243af452ec1": { + "address": "0x046bad07658f3b6cad9a396cfcbc1243af452ec1", + "symbol": "AL", + "decimals": 18, + "name": "ArchLoot", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x046bad07658f3b6cad9a396cfcbc1243af452ec1.png", + "aggregators": ["CoinMarketCap", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0xf4fb9bf10e489ea3edb03e094939341399587b0c": { + "address": "0xf4fb9bf10e489ea3edb03e094939341399587b0c", + "symbol": "AMB", + "decimals": 18, + "name": "AirDAO", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xf4fb9bf10e489ea3edb03e094939341399587b0c.png", + "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0x4be10da47a07716af28ad199fbe020501bddd7af": { + "address": "0x4be10da47a07716af28ad199fbe020501bddd7af", + "symbol": "XT", + "decimals": 18, + "name": "XT com", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x4be10da47a07716af28ad199fbe020501bddd7af.png", + "aggregators": ["CoinMarketCap", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0x02cdb5ccc97d5dc7ed2747831b516669eb635706": { + "address": "0x02cdb5ccc97d5dc7ed2747831b516669eb635706", + "symbol": "NBTC", + "decimals": 8, + "name": "Nest BTC Vault", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x02cdb5ccc97d5dc7ed2747831b516669eb635706.png", + "aggregators": ["CoinGecko", "Rubic", "Sonarwatch"], + "occurrences": 3 + }, + "0x1b19c19393e2d034d8ff31ff34c81252fcbbee92": { + "address": "0x1b19c19393e2d034d8ff31ff34c81252fcbbee92", + "symbol": "OUSG", + "decimals": 18, + "name": "OUSG", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x1b19c19393e2d034d8ff31ff34c81252fcbbee92.png", + "aggregators": ["CoinMarketCap", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0xe571b648569619566cf6ce1060c97b621cb635d3": { + "address": "0xe571b648569619566cf6ce1060c97b621cb635d3", + "symbol": "GTUSDTB", + "decimals": 18, + "name": "Gauntlet USDT Balanced", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xe571b648569619566cf6ce1060c97b621cb635d3.png", + "aggregators": ["CoinGecko", "LiFi", "Rubic"], + "occurrences": 3 + }, + "0x615987d46003cc37387dbe544ff4f16fa1200077": { + "address": "0x615987d46003cc37387dbe544ff4f16fa1200077", + "symbol": "NASDAQ420", + "decimals": 9, + "name": "Nasdaq420", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x615987d46003cc37387dbe544ff4f16fa1200077.png", + "aggregators": ["CoinMarketCap", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0xaa19961b6b858d9f18a115f25aa1d98abc1fdba8": { + "address": "0xaa19961b6b858d9f18a115f25aa1d98abc1fdba8", + "symbol": "LCS", + "decimals": 18, + "name": "LocalCoinSwap", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xaa19961b6b858d9f18a115f25aa1d98abc1fdba8.png", + "aggregators": ["CoinMarketCap", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0x435f6a29b100123ae46a3e8bf0541ab402949243": { + "address": "0x435f6a29b100123ae46a3e8bf0541ab402949243", + "symbol": "CTB", + "decimals": 18, + "name": "Content Bitcoin", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x435f6a29b100123ae46a3e8bf0541ab402949243.png", + "aggregators": ["CoinMarketCap", "Rubic", "Sonarwatch"], + "occurrences": 3 + }, + "0xe50365f5d679cb98a1dd62d6f6e58e59321bcddf": { + "address": "0xe50365f5d679cb98a1dd62d6f6e58e59321bcddf", + "symbol": "LA", + "decimals": 18, + "name": "LA", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xe50365f5d679cb98a1dd62d6f6e58e59321bcddf.png", + "aggregators": ["CoinMarketCap", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0x1410434b0346f5be678d0fb554e5c7ab620f8f4a": { + "address": "0x1410434b0346f5be678d0fb554e5c7ab620f8f4a", + "symbol": "KAN", + "decimals": 18, + "name": "BitKan", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x1410434b0346f5be678d0fb554e5c7ab620f8f4a.png", + "aggregators": ["CoinMarketCap", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0xff742d05420b6aca4481f635ad8341f81a6300c2": { + "address": "0xff742d05420b6aca4481f635ad8341f81a6300c2", + "symbol": "ASD", + "decimals": 18, + "name": "AscendEx", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xff742d05420b6aca4481f635ad8341f81a6300c2.png", + "aggregators": ["CoinMarketCap", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0xe8663a64a96169ff4d95b4299e7ae9a76b905b31": { + "address": "0xe8663a64a96169ff4d95b4299e7ae9a76b905b31", + "symbol": "RATING", + "decimals": 8, + "name": "DPRating", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xe8663a64a96169ff4d95b4299e7ae9a76b905b31.png", + "aggregators": ["CoinMarketCap", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0x5d929aa919e489505ccaad8a199619c6dca0c2de": { + "address": "0x5d929aa919e489505ccaad8a199619c6dca0c2de", + "symbol": "BAAS", + "decimals": 18, + "name": "BaaSid", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x5d929aa919e489505ccaad8a199619c6dca0c2de.png", + "aggregators": ["CoinMarketCap", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0xd433138d12beb9929ff6fd583dc83663eea6aaa5": { + "address": "0xd433138d12beb9929ff6fd583dc83663eea6aaa5", + "symbol": "BTR", + "decimals": 18, + "name": "Bitrue Coin", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xd433138d12beb9929ff6fd583dc83663eea6aaa5.png", + "aggregators": ["CoinMarketCap", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0x3da932456d082cba208feb0b096d49b202bf89c8": { + "address": "0x3da932456d082cba208feb0b096d49b202bf89c8", + "symbol": "DEGO", + "decimals": 18, + "name": "Dego Finance", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x3da932456d082cba208feb0b096d49b202bf89c8.png", + "aggregators": ["CoinMarketCap", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0x581911b360b6eb3a14ef295a83a91dc2bce2d6f7": { + "address": "0x581911b360b6eb3a14ef295a83a91dc2bce2d6f7", + "symbol": "MVC", + "decimals": 18, + "name": "MileVerse", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x581911b360b6eb3a14ef295a83a91dc2bce2d6f7.png", + "aggregators": ["CoinMarketCap", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0xa92c49c403386111c1629aee00936eed2a9e74a6": { + "address": "0xa92c49c403386111c1629aee00936eed2a9e74a6", + "symbol": "KLTR", + "decimals": 18, + "name": "Kollector", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xa92c49c403386111c1629aee00936eed2a9e74a6.png", + "aggregators": ["CoinMarketCap", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0x949185d3be66775ea648f4a306740ea9eff9c567": { + "address": "0x949185d3be66775ea648f4a306740ea9eff9c567", + "symbol": "YEL", + "decimals": 18, + "name": "Yel Finance", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x949185d3be66775ea648f4a306740ea9eff9c567.png", + "aggregators": ["CoinMarketCap", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0xcaabcaa4ca42e1d86de1a201c818639def0ba7a7": { + "address": "0xcaabcaa4ca42e1d86de1a201c818639def0ba7a7", + "symbol": "TALK", + "decimals": 18, + "name": "Talken", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xcaabcaa4ca42e1d86de1a201c818639def0ba7a7.png", + "aggregators": ["CoinMarketCap", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0xd50b9bbf136d1bd5cd5ac6ed9b3f26c458a6d4a6": { + "address": "0xd50b9bbf136d1bd5cd5ac6ed9b3f26c458a6d4a6", + "symbol": "AUSDC", + "decimals": 18, + "name": "Alpha USDC Vault", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xd50b9bbf136d1bd5cd5ac6ed9b3f26c458a6d4a6.png", + "aggregators": ["CoinGecko", "Rubic", "Sonarwatch"], + "occurrences": 3 + }, + "0x3a0b022f32b3191d44e5847da12dc0b63fb07c91": { + "address": "0x3a0b022f32b3191d44e5847da12dc0b63fb07c91", + "symbol": "SPELLFIRE", + "decimals": 18, + "name": "Spellfire", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x3a0b022f32b3191d44e5847da12dc0b63fb07c91.png", + "aggregators": ["CoinMarketCap", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0xeae00d6f9b16deb1bd584c7965e4c7d762f178a1": { + "address": "0xeae00d6f9b16deb1bd584c7965e4c7d762f178a1", + "symbol": "XBG", + "decimals": 18, + "name": "XBorg", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xeae00d6f9b16deb1bd584c7965e4c7d762f178a1.png", + "aggregators": ["CoinMarketCap", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0xd88611a629265c9af294ffdd2e7fa4546612273e": { + "address": "0xd88611a629265c9af294ffdd2e7fa4546612273e", + "symbol": "MPRO", + "decimals": 18, + "name": "Metapro", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xd88611a629265c9af294ffdd2e7fa4546612273e.png", + "aggregators": ["CoinMarketCap", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0xb5b1b659da79a2507c27aad509f15b4874edc0cc": { + "address": "0xb5b1b659da79a2507c27aad509f15b4874edc0cc", + "symbol": "DUST", + "decimals": 9, + "name": "Dust Protocol", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xb5b1b659da79a2507c27aad509f15b4874edc0cc.png", + "aggregators": ["CoinMarketCap", "Socket", "Rubic", "Sonarwatch"], + "occurrences": 4 + }, + "0x50614cc8e44f7814549c223aa31db9296e58057c": { + "address": "0x50614cc8e44f7814549c223aa31db9296e58057c", + "symbol": "ALIGN", + "decimals": 18, + "name": "Aligned", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x50614cc8e44f7814549c223aa31db9296e58057c.png", + "aggregators": ["CoinMarketCap", "Rubic", "Sonarwatch"], + "occurrences": 3 + }, + "0xb3ad645db386d7f6d753b2b9c3f4b853da6890b8": { + "address": "0xb3ad645db386d7f6d753b2b9c3f4b853da6890b8", + "symbol": "CTR", + "decimals": 18, + "name": "Concentrator", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xb3ad645db386d7f6d753b2b9c3f4b853da6890b8.png", + "aggregators": ["CoinMarketCap", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0x294559fa758c88d639fd085751e463fee7806eab": { + "address": "0x294559fa758c88d639fd085751e463fee7806eab", + "symbol": "METAL", + "decimals": 18, + "name": "Metal Blockchain", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x294559fa758c88d639fd085751e463fee7806eab.png", + "aggregators": ["CoinMarketCap", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0x93eeb426782bd88fcd4b48d7b0368cf061044928": { + "address": "0x93eeb426782bd88fcd4b48d7b0368cf061044928", + "symbol": "TRG", + "decimals": 18, + "name": "The Rug Game", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x93eeb426782bd88fcd4b48d7b0368cf061044928.png", + "aggregators": ["CoinMarketCap", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0xd076c4ba62c57b3fa10800bcfd8da66742110e0e": { + "address": "0xd076c4ba62c57b3fa10800bcfd8da66742110e0e", + "symbol": "HVH", + "decimals": 18, + "name": "HAVAH", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xd076c4ba62c57b3fa10800bcfd8da66742110e0e.png", + "aggregators": ["CoinMarketCap", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0x7d8146cf21e8d7cbe46054e01588207b51198729": { + "address": "0x7d8146cf21e8d7cbe46054e01588207b51198729", + "symbol": "BOB", + "decimals": 18, + "name": "BOB Token", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x7d8146cf21e8d7cbe46054e01588207b51198729.png", + "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0xc8c424b91d8ce0137bab4b832b7f7d154156ba6c": { + "address": "0xc8c424b91d8ce0137bab4b832b7f7d154156ba6c", + "symbol": "APM", + "decimals": 18, + "name": "apM Coin", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xc8c424b91d8ce0137bab4b832b7f7d154156ba6c.png", + "aggregators": ["CoinMarketCap", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0xd2c869382c7ac9f87ff73548d029d67c0f9dee31": { + "address": "0xd2c869382c7ac9f87ff73548d029d67c0f9dee31", + "symbol": "WAGIEBOT", + "decimals": 9, + "name": "Wagie Bot", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xd2c869382c7ac9f87ff73548d029d67c0f9dee31.png", + "aggregators": ["CoinMarketCap", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0x01824357d7d7eaf4677bc17786abd26cbdec9ad7": { + "address": "0x01824357d7d7eaf4677bc17786abd26cbdec9ad7", + "symbol": "FORWARD", + "decimals": 18, + "name": "Forward", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x01824357d7d7eaf4677bc17786abd26cbdec9ad7.png", + "aggregators": ["CoinMarketCap", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0x2be5e8c109e2197d077d13a82daead6a9b3433c5": { + "address": "0x2be5e8c109e2197d077d13a82daead6a9b3433c5", + "symbol": "TON", + "decimals": 18, + "name": "Tokamak Network Token", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x2be5e8c109e2197d077d13a82daead6a9b3433c5.png", + "aggregators": ["Metamask", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0x397deb686c72384fad502a81f4d7fdb89e1f1280": { + "address": "0x397deb686c72384fad502a81f4d7fdb89e1f1280", + "symbol": "XELS", + "decimals": 8, + "name": "XELS", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x397deb686c72384fad502a81f4d7fdb89e1f1280.png", + "aggregators": ["CoinMarketCap", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0x23d7ff057c696fee679c60cef61fee6614218f04": { + "address": "0x23d7ff057c696fee679c60cef61fee6614218f04", + "symbol": "UNP", + "decimals": 18, + "name": "Unipoly", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x23d7ff057c696fee679c60cef61fee6614218f04.png", + "aggregators": ["CoinMarketCap", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0xc691bc298a304d591ad9b352c7a8d216de9f2ced": { + "address": "0xc691bc298a304d591ad9b352c7a8d216de9f2ced", + "symbol": "POLA", + "decimals": 18, + "name": "Polaris Share", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xc691bc298a304d591ad9b352c7a8d216de9f2ced.png", + "aggregators": ["CoinMarketCap", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0xd8c978de79e12728e38aa952a6cb4166f891790f": { + "address": "0xd8c978de79e12728e38aa952a6cb4166f891790f", + "symbol": "ROAR", + "decimals": 18, + "name": "Roaring Kitty", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xd8c978de79e12728e38aa952a6cb4166f891790f.png", + "aggregators": ["CoinMarketCap", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0x2d81f9460bd21e8578350a4f06e62848ed4bb27e": { + "address": "0x2d81f9460bd21e8578350a4f06e62848ed4bb27e", + "symbol": "OWN", + "decimals": 18, + "name": "Otherworld", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x2d81f9460bd21e8578350a4f06e62848ed4bb27e.png", + "aggregators": ["CoinMarketCap", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0x10dea67478c5f8c5e2d90e5e9b26dbe60c54d800": { + "address": "0x10dea67478c5f8c5e2d90e5e9b26dbe60c54d800", + "symbol": "TAIKO", + "decimals": 18, + "name": "Taiko", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x10dea67478c5f8c5e2d90e5e9b26dbe60c54d800.png", + "aggregators": ["CoinMarketCap", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0x1c00c3e03c3a10a0c1d9b6d1a42e797d7cb4147a": { + "address": "0x1c00c3e03c3a10a0c1d9b6d1a42e797d7cb4147a", + "symbol": "ARCA", + "decimals": 18, + "name": "Legend of Arcadia", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x1c00c3e03c3a10a0c1d9b6d1a42e797d7cb4147a.png", + "aggregators": ["CoinMarketCap", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0x0501b9188436e35bb10f35998c40adc079003866": { + "address": "0x0501b9188436e35bb10f35998c40adc079003866", + "symbol": "AIAT", + "decimals": 18, + "name": "AI Analysis Token", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x0501b9188436e35bb10f35998c40adc079003866.png", + "aggregators": ["CoinMarketCap", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0xc8f69a9b46b235de8d0b77c355fff7994f1b090f": { + "address": "0xc8f69a9b46b235de8d0b77c355fff7994f1b090f", + "symbol": "SPEEDY", + "decimals": 18, + "name": "Speedy", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xc8f69a9b46b235de8d0b77c355fff7994f1b090f.png", + "aggregators": ["CoinMarketCap", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0xa1b014878d47c0836ed79163ddec55985adb7023": { + "address": "0xa1b014878d47c0836ed79163ddec55985adb7023", + "symbol": "OISHII", + "decimals": 18, + "name": "Dog Food Token", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xa1b014878d47c0836ed79163ddec55985adb7023.png", + "aggregators": ["CoinGecko", "Socket", "Rubic", "Rango"], + "occurrences": 4 + }, + "0xc11158c5da9db1d553ed28f0c2ba1cbedd42cfcb": { + "address": "0xc11158c5da9db1d553ed28f0c2ba1cbedd42cfcb", + "symbol": "WPAW", + "decimals": 18, + "name": "Wrapped PAW", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xc11158c5da9db1d553ed28f0c2ba1cbedd42cfcb.png", + "aggregators": ["Metamask", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0x0828096494ad6252f0f853abfc5b6ec9dfe9fdad": { + "address": "0x0828096494ad6252f0f853abfc5b6ec9dfe9fdad", + "symbol": "TST", + "decimals": 18, + "name": "Teleport System Token", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x0828096494ad6252f0f853abfc5b6ec9dfe9fdad.png", + "aggregators": ["CoinMarketCap", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0xe9fa21e671bcfb04e6868784b89c19d5aa2424ea": { + "address": "0xe9fa21e671bcfb04e6868784b89c19d5aa2424ea", + "symbol": "ECTE", + "decimals": 18, + "name": "EurocoinToken", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xe9fa21e671bcfb04e6868784b89c19d5aa2424ea.png", + "aggregators": ["CoinMarketCap", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0x8c213ae332274e6314bf4cf989604e7f61162967": { + "address": "0x8c213ae332274e6314bf4cf989604e7f61162967", + "symbol": "DONGO", + "decimals": 9, + "name": "Dongo AI", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x8c213ae332274e6314bf4cf989604e7f61162967.png", + "aggregators": ["CoinMarketCap", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0xc8de43bfe33ff496fa14c270d9cb29bda196b9b5": { + "address": "0xc8de43bfe33ff496fa14c270d9cb29bda196b9b5", + "symbol": "BIG", + "decimals": 18, + "name": "Big Eyes", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xc8de43bfe33ff496fa14c270d9cb29bda196b9b5.png", + "aggregators": ["CoinMarketCap", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0xed0d5747a9ab03a75fbfec3228cd55848245b75d": { + "address": "0xed0d5747a9ab03a75fbfec3228cd55848245b75d", + "symbol": "NGM", + "decimals": 6, + "name": "e Money", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xed0d5747a9ab03a75fbfec3228cd55848245b75d.png", + "aggregators": ["CoinMarketCap", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0x60f63b76e2fc1649e57a3489162732a90acf59fe": { + "address": "0x60f63b76e2fc1649e57a3489162732a90acf59fe", + "symbol": "FLURRY", + "decimals": 18, + "name": "Flurry Finance", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x60f63b76e2fc1649e57a3489162732a90acf59fe.png", + "aggregators": ["CoinMarketCap", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0x38d64ce1bdf1a9f24e0ec469c9cade61236fb4a0": { + "address": "0x38d64ce1bdf1a9f24e0ec469c9cade61236fb4a0", + "symbol": "VETH", + "decimals": 18, + "name": "Vector ETH", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x38d64ce1bdf1a9f24e0ec469c9cade61236fb4a0.png", + "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0x9928a8600d14ac22c0be1e8d58909834d7ceaf13": { + "address": "0x9928a8600d14ac22c0be1e8d58909834d7ceaf13", + "symbol": "DNX", + "decimals": 9, + "name": "Dynex", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x9928a8600d14ac22c0be1e8d58909834d7ceaf13.png", + "aggregators": ["CoinMarketCap", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0x5b685863494c33f344081f75e5430c260c224a32": { + "address": "0x5b685863494c33f344081f75e5430c260c224a32", + "symbol": "CMCX", + "decimals": 18, + "name": "CORE MultiChain", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x5b685863494c33f344081f75e5430c260c224a32.png", + "aggregators": ["CoinMarketCap", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0x0b6f3ea2814f3fff804ba5d5c237aebbc364fba9": { + "address": "0x0b6f3ea2814f3fff804ba5d5c237aebbc364fba9", + "symbol": "UNA", + "decimals": 18, + "name": "Unagi Token", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x0b6f3ea2814f3fff804ba5d5c237aebbc364fba9.png", + "aggregators": ["CoinMarketCap", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0xd444b0d1dceedd7b0993ed04351a491d47048fc4": { + "address": "0xd444b0d1dceedd7b0993ed04351a491d47048fc4", + "symbol": "SUIRWAPIN", + "decimals": 18, + "name": "RWADepin Protocol", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xd444b0d1dceedd7b0993ed04351a491d47048fc4.png", + "aggregators": ["CoinGecko", "Rubic", "Sonarwatch"], + "occurrences": 3 + }, + "0x96c3530bfd0a906a123a4e26cebb635636b41f9d": { + "address": "0x96c3530bfd0a906a123a4e26cebb635636b41f9d", + "symbol": "HYDRA", + "decimals": 18, + "name": "HYDRA", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x96c3530bfd0a906a123a4e26cebb635636b41f9d.png", + "aggregators": ["CoinMarketCap", "Socket", "Rubic"], + "occurrences": 3 + }, + "0x7404ac09adf614603d9c16a7ce85a1101f3514ba": { + "address": "0x7404ac09adf614603d9c16a7ce85a1101f3514ba", + "symbol": "PLAY", + "decimals": 18, + "name": "PLAY", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x7404ac09adf614603d9c16a7ce85a1101f3514ba.png", + "aggregators": ["CoinMarketCap", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0x8f006d1e1d9dc6c98996f50a4c810f17a47fbf19": { + "address": "0x8f006d1e1d9dc6c98996f50a4c810f17a47fbf19", + "symbol": "NSFW", + "decimals": 18, + "name": "Pleasure Coin", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x8f006d1e1d9dc6c98996f50a4c810f17a47fbf19.png", + "aggregators": ["CoinMarketCap", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0xffa188493c15dfaf2c206c97d8633377847b6a52": { + "address": "0xffa188493c15dfaf2c206c97d8633377847b6a52", + "symbol": "WEFI", + "decimals": 18, + "name": "Wefi", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xffa188493c15dfaf2c206c97d8633377847b6a52.png", + "aggregators": ["CoinMarketCap", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0xd6b48ccf41a62eb3891e58d0f006b19b01d50cca": { + "address": "0xd6b48ccf41a62eb3891e58d0f006b19b01d50cca", + "symbol": "SERAPH", + "decimals": 18, + "name": "Seraph", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xd6b48ccf41a62eb3891e58d0f006b19b01d50cca.png", + "aggregators": ["CoinMarketCap", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0x25ec98773d7b4ced4cafab96a2a1c0945f145e10": { + "address": "0x25ec98773d7b4ced4cafab96a2a1c0945f145e10", + "symbol": "STUSDT", + "decimals": 18, + "name": "Staked USDT", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x25ec98773d7b4ced4cafab96a2a1c0945f145e10.png", + "aggregators": ["CoinMarketCap", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0xc08cd26474722ce93f4d0c34d16201461c10aa8c": { + "address": "0xc08cd26474722ce93f4d0c34d16201461c10aa8c", + "symbol": "CARV", + "decimals": 18, + "name": "CARV", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xc08cd26474722ce93f4d0c34d16201461c10aa8c.png", + "aggregators": ["CoinMarketCap", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0xa3f4341c3fef5963ab04135d2014ac7d68222e19": { + "address": "0xa3f4341c3fef5963ab04135d2014ac7d68222e19", + "symbol": "LOGX", + "decimals": 18, + "name": "LogX Network", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xa3f4341c3fef5963ab04135d2014ac7d68222e19.png", + "aggregators": ["CoinMarketCap", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0x510975eda48a97e0ca228dd04d1217292487bea6": { + "address": "0x510975eda48a97e0ca228dd04d1217292487bea6", + "symbol": "GXE", + "decimals": 18, + "name": "PROJECT XENO", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x510975eda48a97e0ca228dd04d1217292487bea6.png", + "aggregators": ["CoinMarketCap", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0x667fd83e24ca1d935d36717d305d54fa0cac991c": { + "address": "0x667fd83e24ca1d935d36717d305d54fa0cac991c", + "symbol": "AGS", + "decimals": 18, + "name": "Collector Coin", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x667fd83e24ca1d935d36717d305d54fa0cac991c.png", + "aggregators": ["CoinMarketCap", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0x9fda7ceec4c18008096c2fe2b85f05dc300f94d0": { + "address": "0x9fda7ceec4c18008096c2fe2b85f05dc300f94d0", + "symbol": "GAJ", + "decimals": 18, + "name": "Gaj Finance", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x9fda7ceec4c18008096c2fe2b85f05dc300f94d0.png", + "aggregators": ["CoinMarketCap", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0xdf09a216fac5adc3e640db418c0b956076509503": { + "address": "0xdf09a216fac5adc3e640db418c0b956076509503", + "symbol": "PKN", + "decimals": 18, + "name": "Poken", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xdf09a216fac5adc3e640db418c0b956076509503.png", + "aggregators": ["CoinMarketCap", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0x77a1f4e744d810239f465043e35d067ca33de259": { + "address": "0x77a1f4e744d810239f465043e35d067ca33de259", + "symbol": "VST", + "decimals": 18, + "name": "Voice Street", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x77a1f4e744d810239f465043e35d067ca33de259.png", + "aggregators": ["CoinMarketCap", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0x85f138bfee4ef8e540890cfb48f620571d67eda3": { + "address": "0x85f138bfee4ef8e540890cfb48f620571d67eda3", + "symbol": "AVAX", + "decimals": 18, + "name": "Avalanche Wormhole", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x85f138bfee4ef8e540890cfb48f620571d67eda3.png", + "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0x2217e5921b7edfb4bb193a6228459974010d2198": { + "address": "0x2217e5921b7edfb4bb193a6228459974010d2198", + "symbol": "QMALL", + "decimals": 18, + "name": "Qmall", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x2217e5921b7edfb4bb193a6228459974010d2198.png", + "aggregators": ["CoinMarketCap", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0x1f36fb2d91d9951cf58ae4c1956c0b77e224f1e9": { + "address": "0x1f36fb2d91d9951cf58ae4c1956c0b77e224f1e9", + "symbol": "VCG", + "decimals": 18, + "name": "VCGamers", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x1f36fb2d91d9951cf58ae4c1956c0b77e224f1e9.png", + "aggregators": ["CoinMarketCap", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0x1ab43204a195a0fd37edec621482afd3792ef90b": { + "address": "0x1ab43204a195a0fd37edec621482afd3792ef90b", + "symbol": "PLY", + "decimals": 18, + "name": "Aurigami", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x1ab43204a195a0fd37edec621482afd3792ef90b.png", + "aggregators": ["CoinMarketCap", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0x420a24c9c65bd44c48bfb1cc8d6cd1ea8b1ac840": { + "address": "0x420a24c9c65bd44c48bfb1cc8d6cd1ea8b1ac840", + "symbol": "JMPT", + "decimals": 18, + "name": "JumpToken", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x420a24c9c65bd44c48bfb1cc8d6cd1ea8b1ac840.png", + "aggregators": ["CoinMarketCap", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0x4550003152f12014558e5ce025707e4dd841100f": { + "address": "0x4550003152f12014558e5ce025707e4dd841100f", + "symbol": "KZEN", + "decimals": 18, + "name": "Kaizen Finance", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x4550003152f12014558e5ce025707e4dd841100f.png", + "aggregators": ["CoinMarketCap", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0xb92ba0a6a843379499770de82aa936d6ba0fd8ca": { + "address": "0xb92ba0a6a843379499770de82aa936d6ba0fd8ca", + "symbol": "YOU", + "decimals": 18, + "name": "Youwho", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xb92ba0a6a843379499770de82aa936d6ba0fd8ca.png", + "aggregators": ["CoinMarketCap", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0xd3c325848d7c6e29b574cb0789998b2ff901f17e": { + "address": "0xd3c325848d7c6e29b574cb0789998b2ff901f17e", + "symbol": "1ART", + "decimals": 18, + "name": "OneArt", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xd3c325848d7c6e29b574cb0789998b2ff901f17e.png", + "aggregators": ["CoinMarketCap", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0x69c2fcae7e30b429166bd616a322e32bec036bcf": { + "address": "0x69c2fcae7e30b429166bd616a322e32bec036bcf", + "symbol": "MURATIAI", + "decimals": 18, + "name": "MuratiAI", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x69c2fcae7e30b429166bd616a322e32bec036bcf.png", + "aggregators": ["CoinMarketCap", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0xe2dca969624795985f2f083bcd0b674337ba130a": { + "address": "0xe2dca969624795985f2f083bcd0b674337ba130a", + "symbol": "SKR", + "decimals": 18, + "name": "Saakuru", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xe2dca969624795985f2f083bcd0b674337ba130a.png", + "aggregators": ["CoinMarketCap", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0xb8e3bb633f7276cc17735d86154e0ad5ec9928c0": { + "address": "0xb8e3bb633f7276cc17735d86154e0ad5ec9928c0", + "symbol": "VLXPAD", + "decimals": 18, + "name": "VelasPad", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xb8e3bb633f7276cc17735d86154e0ad5ec9928c0.png", + "aggregators": ["CoinMarketCap", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0x7a5d3a9dcd33cb8d527f7b5f96eb4fef43d55636": { + "address": "0x7a5d3a9dcd33cb8d527f7b5f96eb4fef43d55636", + "symbol": "RADIO", + "decimals": 18, + "name": "RadioShack", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x7a5d3a9dcd33cb8d527f7b5f96eb4fef43d55636.png", + "aggregators": ["CoinMarketCap", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0x40fed5691e547885cabd7a2990de719dcc8497fc": { + "address": "0x40fed5691e547885cabd7a2990de719dcc8497fc", + "symbol": "SHA", + "decimals": 18, + "name": "Safe Haven", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x40fed5691e547885cabd7a2990de719dcc8497fc.png", + "aggregators": ["CoinMarketCap", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0x4c3a8eceb656ec63eae80a4ebd565e4887db6160": { + "address": "0x4c3a8eceb656ec63eae80a4ebd565e4887db6160", + "symbol": "SOKU", + "decimals": 18, + "name": "SokuSwap", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x4c3a8eceb656ec63eae80a4ebd565e4887db6160.png", + "aggregators": ["CoinMarketCap", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0x2f11eeee0bf21e7661a22dbbbb9068f4ad191b86": { + "address": "0x2f11eeee0bf21e7661a22dbbbb9068f4ad191b86", + "symbol": "BNIU", + "decimals": 18, + "name": "Backed NIU Technologies", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x2f11eeee0bf21e7661a22dbbbb9068f4ad191b86.png", + "aggregators": ["CoinMarketCap", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0xa608512bbc9934e4b1ddecf0f5fb38b6ad93308d": { + "address": "0xa608512bbc9934e4b1ddecf0f5fb38b6ad93308d", + "symbol": "GUD", + "decimals": 18, + "name": "Gud Tech", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xa608512bbc9934e4b1ddecf0f5fb38b6ad93308d.png", + "aggregators": ["CoinMarketCap", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0xfa704148d516b209d52c2d75f239274c8f8eaf1a": { + "address": "0xfa704148d516b209d52c2d75f239274c8f8eaf1a", + "symbol": "OCTA", + "decimals": 18, + "name": "OctaSpace", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xfa704148d516b209d52c2d75f239274c8f8eaf1a.png", + "aggregators": ["CoinMarketCap", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0x499568c250ab2a42292261d6121525d70691894b": { + "address": "0x499568c250ab2a42292261d6121525d70691894b", + "symbol": "KRW", + "decimals": 18, + "name": "KROWN", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x499568c250ab2a42292261d6121525d70691894b.png", + "aggregators": ["CoinMarketCap", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0x2c2d8a078b33bf7782a16acce2c5ba6653a90d5f": { + "address": "0x2c2d8a078b33bf7782a16acce2c5ba6653a90d5f", + "symbol": "L3USD", + "decimals": 18, + "name": "L3USD", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x2c2d8a078b33bf7782a16acce2c5ba6653a90d5f.png", + "aggregators": ["CoinMarketCap", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0xd3ac016b1b8c80eeadde4d186a9138c9324e4189": { + "address": "0xd3ac016b1b8c80eeadde4d186a9138c9324e4189", + "symbol": "OK", + "decimals": 18, + "name": "Okcash", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xd3ac016b1b8c80eeadde4d186a9138c9324e4189.png", + "aggregators": ["CoinMarketCap", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0x07fff99e1664d9b116fbc158c0e99785f81ca236": { + "address": "0x07fff99e1664d9b116fbc158c0e99785f81ca236", + "symbol": "DUSD", + "decimals": 18, + "name": "DUSD", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x07fff99e1664d9b116fbc158c0e99785f81ca236.png", + "aggregators": ["CoinGecko", "LiFi", "Rubic", "Rango"], + "occurrences": 4 + }, + "0x7cb20517776636ed76b68edb3d99dcce356abf02": { + "address": "0x7cb20517776636ed76b68edb3d99dcce356abf02", + "symbol": "SDUSD", + "decimals": 18, + "name": "Staked dUSD", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x7cb20517776636ed76b68edb3d99dcce356abf02.png", + "aggregators": ["CoinGecko", "LiFi", "Rubic"], + "occurrences": 3 + }, + "0x45df9fb545eca3a16982dccc0b8a21d0489a0047": { + "address": "0x45df9fb545eca3a16982dccc0b8a21d0489a0047", + "symbol": "VOY", + "decimals": 18, + "name": "Voy Finance", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x45df9fb545eca3a16982dccc0b8a21d0489a0047.png", + "aggregators": ["CoinMarketCap", "Rubic", "Sonarwatch"], + "occurrences": 3 + }, + "0x426ca1ea2406c07d75db9585f22781c096e3d0e0": { + "address": "0x426ca1ea2406c07d75db9585f22781c096e3d0e0", + "symbol": "MNE", + "decimals": 8, + "name": "Minereum", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x426ca1ea2406c07d75db9585f22781c096e3d0e0.png", + "aggregators": ["CoinMarketCap", "LiFi", "Socket", "Rubic"], + "occurrences": 4 + }, + "0xd3c00772b24d997a812249ca637a921e81357701": { + "address": "0xd3c00772b24d997a812249ca637a921e81357701", + "symbol": "WILD", + "decimals": 18, + "name": "WILD Token", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xd3c00772b24d997a812249ca637a921e81357701.png", + "aggregators": ["CoinMarketCap", "LiFi", "Socket", "Rubic"], + "occurrences": 4 + }, + "0x9214ec02cb71cba0ada6896b8da260736a67ab10": { + "address": "0x9214ec02cb71cba0ada6896b8da260736a67ab10", + "symbol": "REAL", + "decimals": 18, + "name": "Real Estate Asset Ledger", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x9214ec02cb71cba0ada6896b8da260736a67ab10.png", + "aggregators": ["CoinMarketCap", "Rubic", "Rango", "Bancor"], + "occurrences": 4 + }, + "0x539efe69bcdd21a83efd9122571a64cc25e0282b": { + "address": "0x539efe69bcdd21a83efd9122571a64cc25e0282b", + "symbol": "BLUE", + "decimals": 8, + "name": "Ethereum Blue", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x539efe69bcdd21a83efd9122571a64cc25e0282b.png", + "aggregators": ["CoinMarketCap", "LiFi", "Socket", "Rubic"], + "occurrences": 4 + }, + "0xea38eaa3c86c8f9b751533ba2e562deb9acded40": { + "address": "0xea38eaa3c86c8f9b751533ba2e562deb9acded40", + "symbol": "FUEL", + "decimals": 18, + "name": "Etherparty", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xea38eaa3c86c8f9b751533ba2e562deb9acded40.png", + "aggregators": ["CoinMarketCap", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0x6c2adc2073994fb2ccc5032cc2906fa221e9b391": { + "address": "0x6c2adc2073994fb2ccc5032cc2906fa221e9b391", + "symbol": "DPY", + "decimals": 18, + "name": "Delphy", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x6c2adc2073994fb2ccc5032cc2906fa221e9b391.png", + "aggregators": ["CoinMarketCap", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0xea097a2b1db00627b2fa17460ad260c016016977": { + "address": "0xea097a2b1db00627b2fa17460ad260c016016977", + "symbol": "UFR", + "decimals": 18, + "name": "Upfiring", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xea097a2b1db00627b2fa17460ad260c016016977.png", + "aggregators": ["CoinMarketCap", "LiFi", "Socket", "Rubic"], + "occurrences": 4 + }, + "0x1e797ce986c3cff4472f7d38d5c4aba55dfefe40": { + "address": "0x1e797ce986c3cff4472f7d38d5c4aba55dfefe40", + "symbol": "BCDN", + "decimals": 15, + "name": "BlockCDN", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x1e797ce986c3cff4472f7d38d5c4aba55dfefe40.png", + "aggregators": ["CoinMarketCap", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0x72dd4b6bd852a3aa172be4d6c5a6dbec588cf131": { + "address": "0x72dd4b6bd852a3aa172be4d6c5a6dbec588cf131", + "symbol": "NGC", + "decimals": 18, + "name": "NAGA", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x72dd4b6bd852a3aa172be4d6c5a6dbec588cf131.png", + "aggregators": ["CoinMarketCap", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0x009c43b42aefac590c719e971020575974122803": { + "address": "0x009c43b42aefac590c719e971020575974122803", + "symbol": "BIX", + "decimals": 18, + "name": "Bibox", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x009c43b42aefac590c719e971020575974122803.png", + "aggregators": ["CoinMarketCap", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0xfa3118b34522580c35ae27f6cf52da1dbb756288": { + "address": "0xfa3118b34522580c35ae27f6cf52da1dbb756288", + "symbol": "LET", + "decimals": 6, + "name": "Linkeye", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xfa3118b34522580c35ae27f6cf52da1dbb756288.png", + "aggregators": ["CoinMarketCap", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0xf278c1ca969095ffddded020290cf8b5c424ace2": { + "address": "0xf278c1ca969095ffddded020290cf8b5c424ace2", + "symbol": "RUFF", + "decimals": 18, + "name": "Ruff", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xf278c1ca969095ffddded020290cf8b5c424ace2.png", + "aggregators": ["CoinMarketCap", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0x41dbecc1cdc5517c6f76f6a6e836adbee2754de3": { + "address": "0x41dbecc1cdc5517c6f76f6a6e836adbee2754de3", + "symbol": "MTN", + "decimals": 18, + "name": "Medicalchain", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x41dbecc1cdc5517c6f76f6a6e836adbee2754de3.png", + "aggregators": ["CoinMarketCap", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0x9c23d67aea7b95d80942e3836bcdf7e708a747c2": { + "address": "0x9c23d67aea7b95d80942e3836bcdf7e708a747c2", + "symbol": "LOCI", + "decimals": 18, + "name": "LOCIcoin", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x9c23d67aea7b95d80942e3836bcdf7e708a747c2.png", + "aggregators": ["CoinMarketCap", "LiFi", "Rango", "Bancor"], + "occurrences": 4 + }, + "0x6758b7d441a9739b98552b373703d8d3d14f9e62": { + "address": "0x6758b7d441a9739b98552b373703d8d3d14f9e62", + "symbol": "POA20", + "decimals": 18, + "name": "POA ERC20 on Foundation", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x6758b7d441a9739b98552b373703d8d3d14f9e62.png", + "aggregators": ["CoinMarketCap", "LiFi", "Rubic", "Bancor"], + "occurrences": 4 + }, + "0xe25b0bba01dc5630312b6a21927e578061a13f55": { + "address": "0xe25b0bba01dc5630312b6a21927e578061a13f55", + "symbol": "SHIP", + "decimals": 18, + "name": "SHIP", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xe25b0bba01dc5630312b6a21927e578061a13f55.png", + "aggregators": ["CoinMarketCap", "LiFi", "Rubic", "Rango"], + "occurrences": 4 + }, + "0xbf52f2ab39e26e0951d2a02b49b7702abe30406a": { + "address": "0xbf52f2ab39e26e0951d2a02b49b7702abe30406a", + "symbol": "ODE", + "decimals": 18, + "name": "ODEM", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xbf52f2ab39e26e0951d2a02b49b7702abe30406a.png", + "aggregators": ["CoinMarketCap", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0x7e9e431a0b8c4d532c745b1043c7fa29a48d4fba": { + "address": "0x7e9e431a0b8c4d532c745b1043c7fa29a48d4fba", + "symbol": "EOSDAC", + "decimals": 18, + "name": "eosDAC", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x7e9e431a0b8c4d532c745b1043c7fa29a48d4fba.png", + "aggregators": ["CoinMarketCap", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0xb0280743b44bf7db4b6be482b2ba7b75e5da096c": { + "address": "0xb0280743b44bf7db4b6be482b2ba7b75e5da096c", + "symbol": "TNS", + "decimals": 18, + "name": "Transcodium", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xb0280743b44bf7db4b6be482b2ba7b75e5da096c.png", + "aggregators": ["CoinMarketCap", "Rubic", "Rango", "Bancor"], + "occurrences": 4 + }, + "0xfb1e5f5e984c28ad7e228cdaa1f8a0919bb6a09b": { + "address": "0xfb1e5f5e984c28ad7e228cdaa1f8a0919bb6a09b", + "symbol": "GES", + "decimals": 18, + "name": "Galaxy eSolutions", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xfb1e5f5e984c28ad7e228cdaa1f8a0919bb6a09b.png", + "aggregators": ["CoinMarketCap", "Rubic", "Rango", "Bancor"], + "occurrences": 4 + }, + "0xc20464e0c373486d2b3335576e83a218b1618a5e": { + "address": "0xc20464e0c373486d2b3335576e83a218b1618a5e", + "symbol": "DTRC", + "decimals": 18, + "name": "Datarius Credit", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xc20464e0c373486d2b3335576e83a218b1618a5e.png", + "aggregators": ["CoinMarketCap", "Rubic", "Rango", "Bancor"], + "occurrences": 4 + }, + "0x1dea979ae76f26071870f824088da78979eb91c8": { + "address": "0x1dea979ae76f26071870f824088da78979eb91c8", + "symbol": "SPD", + "decimals": 18, + "name": "SPINDLE", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x1dea979ae76f26071870f824088da78979eb91c8.png", + "aggregators": ["CoinMarketCap", "Rubic", "Rango", "Bancor"], + "occurrences": 4 + }, + "0x943ed852dadb5c3938ecdc6883718df8142de4c8": { + "address": "0x943ed852dadb5c3938ecdc6883718df8142de4c8", + "symbol": "FTI", + "decimals": 18, + "name": "FansTime", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x943ed852dadb5c3938ecdc6883718df8142de4c8.png", + "aggregators": ["CoinMarketCap", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0x076641af1b8f06b7f8c92587156143c109002cbe": { + "address": "0x076641af1b8f06b7f8c92587156143c109002cbe", + "symbol": "SOP", + "decimals": 18, + "name": "SoPay", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x076641af1b8f06b7f8c92587156143c109002cbe.png", + "aggregators": ["CoinMarketCap", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0xc05d14442a510de4d3d71a3d316585aa0ce32b50": { + "address": "0xc05d14442a510de4d3d71a3d316585aa0ce32b50", + "symbol": "LINA", + "decimals": 18, + "name": "LINA", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xc05d14442a510de4d3d71a3d316585aa0ce32b50.png", + "aggregators": ["CoinMarketCap", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0x9a794dc1939f1d78fa48613b89b8f9d0a20da00e": { + "address": "0x9a794dc1939f1d78fa48613b89b8f9d0a20da00e", + "symbol": "ABX", + "decimals": 18, + "name": "ABX Token", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x9a794dc1939f1d78fa48613b89b8f9d0a20da00e.png", + "aggregators": ["CoinMarketCap", "LiFi", "Rubic", "Bancor"], + "occurrences": 4 + }, + "0x7995ab36bb307afa6a683c24a25d90dc1ea83566": { + "address": "0x7995ab36bb307afa6a683c24a25d90dc1ea83566", + "symbol": "HIT", + "decimals": 6, + "name": "HitChain", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x7995ab36bb307afa6a683c24a25d90dc1ea83566.png", + "aggregators": ["CoinMarketCap", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0xcaaa93712bdac37f736c323c93d4d5fdefcc31cc": { + "address": "0xcaaa93712bdac37f736c323c93d4d5fdefcc31cc", + "symbol": "CRD", + "decimals": 18, + "name": "CRD Network", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xcaaa93712bdac37f736c323c93d4d5fdefcc31cc.png", + "aggregators": ["CoinMarketCap", "Rubic", "Rango", "SushiSwap"], + "occurrences": 4 + }, + "0x04a020325024f130988782bd5276e53595e8d16e": { + "address": "0x04a020325024f130988782bd5276e53595e8d16e", + "symbol": "HERB", + "decimals": 8, + "name": "Herbalist", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x04a020325024f130988782bd5276e53595e8d16e.png", + "aggregators": ["CoinMarketCap", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0x6c3be406174349cfa4501654313d97e6a31072e1": { + "address": "0x6c3be406174349cfa4501654313d97e6a31072e1", + "symbol": "CNNS", + "decimals": 18, + "name": "CNNS", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x6c3be406174349cfa4501654313d97e6a31072e1.png", + "aggregators": ["CoinMarketCap", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0x5aaefe84e0fb3dd1f0fcff6fa7468124986b91bd": { + "address": "0x5aaefe84e0fb3dd1f0fcff6fa7468124986b91bd", + "symbol": "EVED", + "decimals": 18, + "name": "Evedo Token", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x5aaefe84e0fb3dd1f0fcff6fa7468124986b91bd.png", + "aggregators": ["CoinMarketCap", "Rubic", "Rango", "Bancor"], + "occurrences": 4 + }, + "0x893700a1a86ee68b92536bf6fd4d3200d7369f7d": { + "address": "0x893700a1a86ee68b92536bf6fd4d3200d7369f7d", + "symbol": "EMT", + "decimals": 18, + "name": "Emanate", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x893700a1a86ee68b92536bf6fd4d3200d7369f7d.png", + "aggregators": ["CoinMarketCap", "Rubic", "Rango", "SushiSwap"], + "occurrences": 4 + }, + "0x3a9fff453d50d4ac52a6890647b823379ba36b9e": { + "address": "0x3a9fff453d50d4ac52a6890647b823379ba36b9e", + "symbol": "SHUF", + "decimals": 18, + "name": "SHUF", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x3a9fff453d50d4ac52a6890647b823379ba36b9e.png", + "aggregators": ["CoinMarketCap", "LiFi", "Rubic", "Rango"], + "occurrences": 4 + }, + "0xc77b230f31b517f1ef362e59c173c2be6540b5e8": { + "address": "0xc77b230f31b517f1ef362e59c173c2be6540b5e8", + "symbol": "VIDY", + "decimals": 18, + "name": "VIDY", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xc77b230f31b517f1ef362e59c173c2be6540b5e8.png", + "aggregators": ["CoinMarketCap", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0x6e109e9dd7fa1a58bc3eff667e8e41fc3cc07aef": { + "address": "0x6e109e9dd7fa1a58bc3eff667e8e41fc3cc07aef", + "symbol": "CNHT", + "decimals": 6, + "name": "CNH Tether", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x6e109e9dd7fa1a58bc3eff667e8e41fc3cc07aef.png", + "aggregators": ["CoinMarketCap", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0xfb559ce67ff522ec0b9ba7f5dc9dc7ef6c139803": { + "address": "0xfb559ce67ff522ec0b9ba7f5dc9dc7ef6c139803", + "symbol": "PROB", + "decimals": 18, + "name": "Probit", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xfb559ce67ff522ec0b9ba7f5dc9dc7ef6c139803.png", + "aggregators": ["CoinMarketCap", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0x00059ae69c1622a7542edc15e8d17b060fe307b6": { + "address": "0x00059ae69c1622a7542edc15e8d17b060fe307b6", + "symbol": "AMON", + "decimals": 18, + "name": "AmonD", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x00059ae69c1622a7542edc15e8d17b060fe307b6.png", + "aggregators": ["CoinMarketCap", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0x2fe39f22eac6d3c1c86dd9d143640ebb94609fce": { + "address": "0x2fe39f22eac6d3c1c86dd9d143640ebb94609fce", + "symbol": "JDC", + "decimals": 18, + "name": "JD Coin", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x2fe39f22eac6d3c1c86dd9d143640ebb94609fce.png", + "aggregators": ["CoinMarketCap", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0xb67718b98d52318240c52e71a898335da4a28c42": { + "address": "0xb67718b98d52318240c52e71a898335da4a28c42", + "symbol": "INNBC", + "decimals": 6, + "name": "Innovative Bioresearch Coin", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xb67718b98d52318240c52e71a898335da4a28c42.png", + "aggregators": ["CoinMarketCap", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0x0e22734e078d6e399bcee40a549db591c4ea46cb": { + "address": "0x0e22734e078d6e399bcee40a549db591c4ea46cb", + "symbol": "STM", + "decimals": 18, + "name": "Streamity", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x0e22734e078d6e399bcee40a549db591c4ea46cb.png", + "aggregators": ["CoinMarketCap", "Socket", "Rubic", "Bancor"], + "occurrences": 4 + }, + "0x3c45b24359fb0e107a4eaa56bd0f2ce66c99a0e5": { + "address": "0x3c45b24359fb0e107a4eaa56bd0f2ce66c99a0e5", + "symbol": "ANK", + "decimals": 18, + "name": "Apple Network", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x3c45b24359fb0e107a4eaa56bd0f2ce66c99a0e5.png", + "aggregators": ["CoinMarketCap", "Rubic", "Rango", "Bancor"], + "occurrences": 4 + }, + "0x13339fd07934cd674269726edf3b5ccee9dd93de": { + "address": "0x13339fd07934cd674269726edf3b5ccee9dd93de", + "symbol": "CUR", + "decimals": 18, + "name": "CUR", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x13339fd07934cd674269726edf3b5ccee9dd93de.png", + "aggregators": ["CoinMarketCap", "LiFi", "Rubic", "Rango"], + "occurrences": 4 + }, + "0xfd6c31bb6f05fc8db64f4b740ab758605c271fd8": { + "address": "0xfd6c31bb6f05fc8db64f4b740ab758605c271fd8", + "symbol": "CTCN", + "decimals": 18, + "name": "Contracoin", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xfd6c31bb6f05fc8db64f4b740ab758605c271fd8.png", + "aggregators": ["CoinMarketCap", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0x9cb1aeafcc8a9406632c5b084246ea72f62d37b6": { + "address": "0x9cb1aeafcc8a9406632c5b084246ea72f62d37b6", + "symbol": "LBK", + "decimals": 8, + "name": "LBK", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x9cb1aeafcc8a9406632c5b084246ea72f62d37b6.png", + "aggregators": ["CoinMarketCap", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0x58002a6b6e659a16de9f02f529b10536e307b0d9": { + "address": "0x58002a6b6e659a16de9f02f529b10536e307b0d9", + "symbol": "CHFT", + "decimals": 18, + "name": "Crypto Holding Frank", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x58002a6b6e659a16de9f02f529b10536e307b0d9.png", + "aggregators": ["CoinMarketCap", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0x10bc518c32fbae5e38ecb50a612160571bd81e44": { + "address": "0x10bc518c32fbae5e38ecb50a612160571bd81e44", + "symbol": "VRO", + "decimals": 8, + "name": "VeraOne", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x10bc518c32fbae5e38ecb50a612160571bd81e44.png", + "aggregators": ["CoinMarketCap", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0xee059f0ca1507e4e20c689b20cff71b5e924f7bd": { + "address": "0xee059f0ca1507e4e20c689b20cff71b5e924f7bd", + "symbol": "LSV", + "decimals": 18, + "name": "Litecoin SV", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xee059f0ca1507e4e20c689b20cff71b5e924f7bd.png", + "aggregators": ["CoinMarketCap", "LiFi", "Socket", "Rubic"], + "occurrences": 4 + }, + "0x53884b61963351c283118a8e1fc05ba464a11959": { + "address": "0x53884b61963351c283118a8e1fc05ba464a11959", + "symbol": "MNS", + "decimals": 18, + "name": "Monnos", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x53884b61963351c283118a8e1fc05ba464a11959.png", + "aggregators": ["CoinMarketCap", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0x14d10003807ac60d07bb0ba82caeac8d2087c157": { + "address": "0x14d10003807ac60d07bb0ba82caeac8d2087c157", + "symbol": "IDEFI", + "decimals": 18, + "name": "IDEFI", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x14d10003807ac60d07bb0ba82caeac8d2087c157.png", + "aggregators": ["CoinMarketCap", "LiFi", "Rubic", "Rango"], + "occurrences": 4 + }, + "0xc76fb75950536d98fa62ea968e1d6b45ffea2a55": { + "address": "0xc76fb75950536d98fa62ea968e1d6b45ffea2a55", + "symbol": "COL", + "decimals": 18, + "name": "COL", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xc76fb75950536d98fa62ea968e1d6b45ffea2a55.png", + "aggregators": ["CoinMarketCap", "LiFi", "Rubic", "Rango"], + "occurrences": 4 + }, + "0x7533d63a2558965472398ef473908e1320520ae2": { + "address": "0x7533d63a2558965472398ef473908e1320520ae2", + "symbol": "INTX", + "decimals": 9, + "name": "INTEXCOIN", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x7533d63a2558965472398ef473908e1320520ae2.png", + "aggregators": ["CoinMarketCap", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0x1453dbb8a29551ade11d89825ca812e05317eaeb": { + "address": "0x1453dbb8a29551ade11d89825ca812e05317eaeb", + "symbol": "TEND", + "decimals": 18, + "name": "TEND", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x1453dbb8a29551ade11d89825ca812e05317eaeb.png", + "aggregators": ["CoinMarketCap", "LiFi", "Rubic", "Rango"], + "occurrences": 4 + }, + "0x0417912b3a7af768051765040a55bb0925d4ddcf": { + "address": "0x0417912b3a7af768051765040a55bb0925d4ddcf", + "symbol": "LID", + "decimals": 18, + "name": "LID", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x0417912b3a7af768051765040a55bb0925d4ddcf.png", + "aggregators": ["CoinMarketCap", "LiFi", "Rubic", "Rango"], + "occurrences": 4 + }, + "0x49184e6dae8c8ecd89d8bdc1b950c597b8167c90": { + "address": "0x49184e6dae8c8ecd89d8bdc1b950c597b8167c90", + "symbol": "LIBERTAS", + "decimals": 2, + "name": "LIBERTAS", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x49184e6dae8c8ecd89d8bdc1b950c597b8167c90.png", + "aggregators": ["CoinMarketCap", "LiFi", "Rubic", "Rango"], + "occurrences": 4 + }, + "0x7a939bb714fd2a48ebeb1e495aa9aaa74ba9fa68": { + "address": "0x7a939bb714fd2a48ebeb1e495aa9aaa74ba9fa68", + "symbol": "EVZ", + "decimals": 18, + "name": "Electric Vehicle Zone", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x7a939bb714fd2a48ebeb1e495aa9aaa74ba9fa68.png", + "aggregators": ["CoinMarketCap", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0x1b980e05943de3db3a459c72325338d327b6f5a9": { + "address": "0x1b980e05943de3db3a459c72325338d327b6f5a9", + "symbol": "GEAR", + "decimals": 18, + "name": "Bitgear", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x1b980e05943de3db3a459c72325338d327b6f5a9.png", + "aggregators": ["CoinMarketCap", "LiFi", "Socket", "Rubic"], + "occurrences": 4 + }, + "0x130914e1b240a7f4c5d460b7d3a2fd3846b576fa": { + "address": "0x130914e1b240a7f4c5d460b7d3a2fd3846b576fa", + "symbol": "ANG", + "decimals": 18, + "name": "Aureus Nummus Gold", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x130914e1b240a7f4c5d460b7d3a2fd3846b576fa.png", + "aggregators": ["CoinMarketCap", "Socket", "Rubic", "Rango"], + "occurrences": 4 + }, + "0xecc0f1f860a82ab3b442382d93853c02d6384389": { + "address": "0xecc0f1f860a82ab3b442382d93853c02d6384389", + "symbol": "AXIS", + "decimals": 18, + "name": "Axis DeFi", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xecc0f1f860a82ab3b442382d93853c02d6384389.png", + "aggregators": ["CoinMarketCap", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0x9aeb50f542050172359a0e1a25a9933bc8c01259": { + "address": "0x9aeb50f542050172359a0e1a25a9933bc8c01259", + "symbol": "OIN", + "decimals": 8, + "name": "oinfinance", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x9aeb50f542050172359a0e1a25a9933bc8c01259.png", + "aggregators": ["CoinMarketCap", "1inch", "Rubic", "Rango"], + "occurrences": 4 + }, + "0x012ba3ae1074ae43a34a14bca5c4ed0af01b6e53": { + "address": "0x012ba3ae1074ae43a34a14bca5c4ed0af01b6e53", + "symbol": "TRUMP", + "decimals": 18, + "name": "YUGE", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x012ba3ae1074ae43a34a14bca5c4ed0af01b6e53.png", + "aggregators": ["CoinMarketCap", "LiFi", "Socket", "Rubic"], + "occurrences": 4 + }, + "0xf1f5de69c9c8d9be8a7b01773cc1166d4ec6ede2": { + "address": "0xf1f5de69c9c8d9be8a7b01773cc1166d4ec6ede2", + "symbol": "DFX", + "decimals": 18, + "name": "Definitex", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xf1f5de69c9c8d9be8a7b01773cc1166d4ec6ede2.png", + "aggregators": ["CoinMarketCap", "LiFi", "Socket", "Rubic"], + "occurrences": 4 + }, + "0x468ab3b1f63a1c14b361bc367c3cc92277588da1": { + "address": "0x468ab3b1f63a1c14b361bc367c3cc92277588da1", + "symbol": "YELD", + "decimals": 18, + "name": "YELD", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x468ab3b1f63a1c14b361bc367c3cc92277588da1.png", + "aggregators": ["CoinMarketCap", "LiFi", "Socket", "Rubic"], + "occurrences": 4 + }, + "0x821144518dfe9e7b44fcf4d0824e15e8390d4637": { + "address": "0x821144518dfe9e7b44fcf4d0824e15e8390d4637", + "symbol": "ATIS", + "decimals": 18, + "name": "ATIS", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x821144518dfe9e7b44fcf4d0824e15e8390d4637.png", + "aggregators": ["CoinMarketCap", "LiFi", "Rubic", "Rango"], + "occurrences": 4 + }, + "0xdea67845a51e24461d5fed8084e69b426af3d5db": { + "address": "0xdea67845a51e24461d5fed8084e69b426af3d5db", + "symbol": "HTRE", + "decimals": 18, + "name": "HodlTree", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xdea67845a51e24461d5fed8084e69b426af3d5db.png", + "aggregators": ["CoinMarketCap", "1inch", "Rubic", "Rango"], + "occurrences": 4 + }, + "0xcad2d4c4469ff09ab24d02a63bcedfcd44be0645": { + "address": "0xcad2d4c4469ff09ab24d02a63bcedfcd44be0645", + "symbol": "ACPT", + "decimals": 18, + "name": "Crypto Accept", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xcad2d4c4469ff09ab24d02a63bcedfcd44be0645.png", + "aggregators": ["CoinMarketCap", "LiFi", "Rubic", "Bancor"], + "occurrences": 4 + }, + "0x8a6aca71a218301c7081d4e96d64292d3b275ce0": { + "address": "0x8a6aca71a218301c7081d4e96d64292d3b275ce0", + "symbol": "SFG", + "decimals": 18, + "name": "S Finance", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x8a6aca71a218301c7081d4e96d64292d3b275ce0.png", + "aggregators": ["CoinMarketCap", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0x2904b9b16652d7d0408eccfa23a19d4a3358230f": { + "address": "0x2904b9b16652d7d0408eccfa23a19d4a3358230f", + "symbol": "PURE", + "decimals": 18, + "name": "Puriever", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x2904b9b16652d7d0408eccfa23a19d4a3358230f.png", + "aggregators": ["CoinMarketCap", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0x3108ccfd96816f9e663baa0e8c5951d229e8c6da": { + "address": "0x3108ccfd96816f9e663baa0e8c5951d229e8c6da", + "symbol": "DARK", + "decimals": 18, + "name": "DarkToken", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x3108ccfd96816f9e663baa0e8c5951d229e8c6da.png", + "aggregators": ["CoinMarketCap", "LiFi", "Socket", "Rubic"], + "occurrences": 4 + }, + "0x2e2364966267b5d7d2ce6cd9a9b5bd19d9c7c6a9": { + "address": "0x2e2364966267b5d7d2ce6cd9a9b5bd19d9c7c6a9", + "symbol": "VOICE", + "decimals": 18, + "name": "Voice Token", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x2e2364966267b5d7d2ce6cd9a9b5bd19d9c7c6a9.png", + "aggregators": ["CoinMarketCap", "1inch", "Rubic", "Rango"], + "occurrences": 4 + }, + "0x02eca910cb3a7d43ebc7e8028652ed5c6b70259b": { + "address": "0x02eca910cb3a7d43ebc7e8028652ed5c6b70259b", + "symbol": "PTERIA", + "decimals": 18, + "name": "Pteria", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x02eca910cb3a7d43ebc7e8028652ed5c6b70259b.png", + "aggregators": ["CoinMarketCap", "LiFi", "Socket", "Rubic"], + "occurrences": 4 + }, + "0x84c722e6f1363e8d5c6db3ea600bef9a006da824": { + "address": "0x84c722e6f1363e8d5c6db3ea600bef9a006da824", + "symbol": "MSB", + "decimals": 18, + "name": "Misbloc", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x84c722e6f1363e8d5c6db3ea600bef9a006da824.png", + "aggregators": ["CoinMarketCap", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0x1fc5ef0337aea85c5f9198853a6e3a579a7a6987": { + "address": "0x1fc5ef0337aea85c5f9198853a6e3a579a7a6987", + "symbol": "REAP", + "decimals": 18, + "name": "ReapChain", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x1fc5ef0337aea85c5f9198853a6e3a579a7a6987.png", + "aggregators": ["CoinMarketCap", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0xdecade1c6bf2cd9fb89afad73e4a519c867adcf5": { + "address": "0xdecade1c6bf2cd9fb89afad73e4a519c867adcf5", + "symbol": "WIS", + "decimals": 18, + "name": "Experty Wisdom Token", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xdecade1c6bf2cd9fb89afad73e4a519c867adcf5.png", + "aggregators": ["Metamask", "LiFi", "Rubic", "Rango"], + "occurrences": 4 + }, + "0x53bd789f2cdb846b227d8ffc7b46ed4263231fdf": { + "address": "0x53bd789f2cdb846b227d8ffc7b46ed4263231fdf", + "symbol": "SMBSWAP", + "decimals": 18, + "name": "SimbCoin Swap", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x53bd789f2cdb846b227d8ffc7b46ed4263231fdf.png", + "aggregators": ["CoinMarketCap", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0xe1c7e30c42c24582888c758984f6e382096786bd": { + "address": "0xe1c7e30c42c24582888c758984f6e382096786bd", + "symbol": "XCUR", + "decimals": 8, + "name": "Curate", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xe1c7e30c42c24582888c758984f6e382096786bd.png", + "aggregators": ["CoinMarketCap", "TrustWallet", "Rubic", "Rango"], + "occurrences": 4 + }, + "0xb29663aa4e2e81e425294193616c1b102b70a158": { + "address": "0xb29663aa4e2e81e425294193616c1b102b70a158", + "symbol": "LDN", + "decimals": 18, + "name": "Ludena Protocol", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xb29663aa4e2e81e425294193616c1b102b70a158.png", + "aggregators": ["CoinMarketCap", "Rubic", "Rango", "SushiSwap"], + "occurrences": 4 + }, + "0xb5fe099475d3030dde498c3bb6f3854f762a48ad": { + "address": "0xb5fe099475d3030dde498c3bb6f3854f762a48ad", + "symbol": "FNK", + "decimals": 18, + "name": "Finiko", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xb5fe099475d3030dde498c3bb6f3854f762a48ad.png", + "aggregators": ["CoinMarketCap", "LiFi", "Rubic", "Rango"], + "occurrences": 4 + }, + "0x9d1555d8cb3c846bb4f7d5b1b1080872c3166676": { + "address": "0x9d1555d8cb3c846bb4f7d5b1b1080872c3166676", + "symbol": "MSLV", + "decimals": 18, + "name": "Mirrored iShares Si", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x9d1555d8cb3c846bb4f7d5b1b1080872c3166676.png", + "aggregators": ["CoinMarketCap", "Rubic", "Rango", "SushiSwap"], + "occurrences": 4 + }, + "0xf72fcd9dcf0190923fadd44811e240ef4533fc86": { + "address": "0xf72fcd9dcf0190923fadd44811e240ef4533fc86", + "symbol": "MVIXY", + "decimals": 18, + "name": "Mirrored ProShares", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xf72fcd9dcf0190923fadd44811e240ef4533fc86.png", + "aggregators": ["CoinMarketCap", "Rubic", "Rango", "SushiSwap"], + "occurrences": 4 + }, + "0xf0c6521b1f8ad9c33a99aaf056f6c6247a3862ba": { + "address": "0xf0c6521b1f8ad9c33a99aaf056f6c6247a3862ba", + "symbol": "ELD", + "decimals": 18, + "name": "ETH.limiteD", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xf0c6521b1f8ad9c33a99aaf056f6c6247a3862ba.png", + "aggregators": ["CoinMarketCap", "LiFi", "Socket", "Rubic"], + "occurrences": 4 + }, + "0xc0a25a24cce412e2fb407c08e3785437fee9ad1d": { + "address": "0xc0a25a24cce412e2fb407c08e3785437fee9ad1d", + "symbol": "OFT", + "decimals": 18, + "name": "Orient", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xc0a25a24cce412e2fb407c08e3785437fee9ad1d.png", + "aggregators": ["CoinMarketCap", "LiFi", "Socket", "Rubic"], + "occurrences": 4 + }, + "0xf058501585023d040ea9493134ed72c083553eed": { + "address": "0xf058501585023d040ea9493134ed72c083553eed", + "symbol": "DMX", + "decimals": 18, + "name": "Dymmax", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xf058501585023d040ea9493134ed72c083553eed.png", + "aggregators": ["CoinMarketCap", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0x0e186357c323c806c1efdad36d217f7a54b63d18": { + "address": "0x0e186357c323c806c1efdad36d217f7a54b63d18", + "symbol": "CGT", + "decimals": 18, + "name": "Curio Gas Token", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x0e186357c323c806c1efdad36d217f7a54b63d18.png", + "aggregators": ["CoinMarketCap", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0x5bb29c33c4a3c29f56f8aca40b4db91d8a5fe2c5": { + "address": "0x5bb29c33c4a3c29f56f8aca40b4db91d8a5fe2c5", + "symbol": "ONS", + "decimals": 18, + "name": "One Share", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x5bb29c33c4a3c29f56f8aca40b4db91d8a5fe2c5.png", + "aggregators": ["CoinMarketCap", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0x2b915b505c017abb1547aa5ab355fbe69865cc6d": { + "address": "0x2b915b505c017abb1547aa5ab355fbe69865cc6d", + "symbol": "MAPS", + "decimals": 6, + "name": "Maps.me Token", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x2b915b505c017abb1547aa5ab355fbe69865cc6d.png", + "aggregators": ["CoinMarketCap", "LiFi", "Socket", "Rubic"], + "occurrences": 4 + }, + "0x0e1fe60bc4ac0e3102343752ae7e49d01d444c0b": { + "address": "0x0e1fe60bc4ac0e3102343752ae7e49d01d444c0b", + "symbol": "HXN", + "decimals": 18, + "name": "Havens Nook", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x0e1fe60bc4ac0e3102343752ae7e49d01d444c0b.png", + "aggregators": ["CoinMarketCap", "LiFi", "Socket", "Rubic"], + "occurrences": 4 + }, + "0xbae5f2d8a1299e5c4963eaff3312399253f27ccb": { + "address": "0xbae5f2d8a1299e5c4963eaff3312399253f27ccb", + "symbol": "SOAR", + "decimals": 9, + "name": "SOAR.FI", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xbae5f2d8a1299e5c4963eaff3312399253f27ccb.png", + "aggregators": ["CoinMarketCap", "LiFi", "Socket", "Rubic"], + "occurrences": 4 + }, + "0x455f7ef6d8bcfc35f9337e85aee1b0600a59fabe": { + "address": "0x455f7ef6d8bcfc35f9337e85aee1b0600a59fabe", + "symbol": "ALOHA", + "decimals": 18, + "name": "ALOHA", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x455f7ef6d8bcfc35f9337e85aee1b0600a59fabe.png", + "aggregators": ["CoinMarketCap", "LiFi", "Socket", "Rubic"], + "occurrences": 4 + }, + "0x1d7ca62f6af49ec66f6680b8606e634e55ef22c1": { + "address": "0x1d7ca62f6af49ec66f6680b8606e634e55ef22c1", + "symbol": "START", + "decimals": 18, + "name": "Starter xyz", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x1d7ca62f6af49ec66f6680b8606e634e55ef22c1.png", + "aggregators": ["CoinMarketCap", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0x45448e05020576929fcdeabc228e35b420098840": { + "address": "0x45448e05020576929fcdeabc228e35b420098840", + "symbol": "IDV", + "decimals": 18, + "name": "Idavoll DAO", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x45448e05020576929fcdeabc228e35b420098840.png", + "aggregators": ["CoinMarketCap", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0xa4bbe66f151b22b167127c770016b15ff97dd35c": { + "address": "0xa4bbe66f151b22b167127c770016b15ff97dd35c", + "symbol": "UMBR", + "decimals": 18, + "name": "UmbriaToken", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xa4bbe66f151b22b167127c770016b15ff97dd35c.png", + "aggregators": ["CoinMarketCap", "LiFi", "Socket", "Rubic"], + "occurrences": 4 + }, + "0xbc81bf5b3173bccdbe62dba5f5b695522ad63559": { + "address": "0xbc81bf5b3173bccdbe62dba5f5b695522ad63559", + "symbol": "XPB", + "decimals": 18, + "name": "Lead Token", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xbc81bf5b3173bccdbe62dba5f5b695522ad63559.png", + "aggregators": ["CoinMarketCap", "LiFi", "Socket", "Rubic"], + "occurrences": 4 + }, + "0xfbbe9b1142c699512545f47937ee6fae0e4b0aa9": { + "address": "0xfbbe9b1142c699512545f47937ee6fae0e4b0aa9", + "symbol": "EDDA", + "decimals": 18, + "name": "EDDASwap", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xfbbe9b1142c699512545f47937ee6fae0e4b0aa9.png", + "aggregators": ["CoinMarketCap", "1inch", "Rubic", "Rango"], + "occurrences": 4 + }, + "0x84bb947fcedba6b9c7dcead42df07e113bb03007": { + "address": "0x84bb947fcedba6b9c7dcead42df07e113bb03007", + "symbol": "STR", + "decimals": 18, + "name": "Stater", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x84bb947fcedba6b9c7dcead42df07e113bb03007.png", + "aggregators": ["CoinMarketCap", "LiFi", "Socket", "Rubic"], + "occurrences": 4 + }, + "0xb870679a7fa65b924026f496de7f27c1dd0e5c5f": { + "address": "0xb870679a7fa65b924026f496de7f27c1dd0e5c5f", + "symbol": "PET", + "decimals": 18, + "name": "Hello Pets", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xb870679a7fa65b924026f496de7f27c1dd0e5c5f.png", + "aggregators": ["CoinMarketCap", "LiFi", "Rubic", "Rango"], + "occurrences": 4 + }, + "0x4d75d9e37667a2d4677ec3d74bdd9049326ad8d6": { + "address": "0x4d75d9e37667a2d4677ec3d74bdd9049326ad8d6", + "symbol": "WAR", + "decimals": 18, + "name": "NFT WARS", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x4d75d9e37667a2d4677ec3d74bdd9049326ad8d6.png", + "aggregators": ["CoinMarketCap", "LiFi", "Socket", "Rubic"], + "occurrences": 4 + }, + "0xd487892bb4c57edbe7ab401d9fe801c8fe6473f5": { + "address": "0xd487892bb4c57edbe7ab401d9fe801c8fe6473f5", + "symbol": "HVE2", + "decimals": 18, + "name": "Uhive", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xd487892bb4c57edbe7ab401d9fe801c8fe6473f5.png", + "aggregators": ["CoinMarketCap", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0xe63d6b308bce0f6193aec6b7e6eba005f41e36ab": { + "address": "0xe63d6b308bce0f6193aec6b7e6eba005f41e36ab", + "symbol": "STN", + "decimals": 18, + "name": "STN", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xe63d6b308bce0f6193aec6b7e6eba005f41e36ab.png", + "aggregators": ["CoinMarketCap", "LiFi", "Rubic", "Rango"], + "occurrences": 4 + }, + "0x5de7cc4bcbca31c473f6d2f27825cfb09cc0bb16": { + "address": "0x5de7cc4bcbca31c473f6d2f27825cfb09cc0bb16", + "symbol": "XBE", + "decimals": 18, + "name": "XBE", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x5de7cc4bcbca31c473f6d2f27825cfb09cc0bb16.png", + "aggregators": ["CoinMarketCap", "Rubic", "Rango", "SushiSwap"], + "occurrences": 4 + }, + "0xc12ecee46ed65d970ee5c899fcc7ae133aff9b03": { + "address": "0xc12ecee46ed65d970ee5c899fcc7ae133aff9b03", + "symbol": "TRY", + "decimals": 18, + "name": "TRYfinance", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xc12ecee46ed65d970ee5c899fcc7ae133aff9b03.png", + "aggregators": ["CoinMarketCap", "Rubic", "Rango", "SushiSwap"], + "occurrences": 4 + }, + "0x04969cd041c0cafb6ac462bd65b536a5bdb3a670": { + "address": "0x04969cd041c0cafb6ac462bd65b536a5bdb3a670", + "symbol": "WOMI", + "decimals": 18, + "name": "Wrapped OMI Token", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x04969cd041c0cafb6ac462bd65b536a5bdb3a670.png", + "aggregators": ["CoinMarketCap", "LiFi", "Rubic", "Rango"], + "occurrences": 4 + }, + "0x4af5ff1a60a6ef6c7c8f9c4e304cd9051fca3ec0": { + "address": "0x4af5ff1a60a6ef6c7c8f9c4e304cd9051fca3ec0", + "symbol": "RGP", + "decimals": 18, + "name": "Rigel Protocol", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x4af5ff1a60a6ef6c7c8f9c4e304cd9051fca3ec0.png", + "aggregators": ["CoinMarketCap", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0x5a705745373a780814c379ef17810630d529efe0": { + "address": "0x5a705745373a780814c379ef17810630d529efe0", + "symbol": "SENPAI", + "decimals": 18, + "name": "ProjectSenpai", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x5a705745373a780814c379ef17810630d529efe0.png", + "aggregators": ["CoinMarketCap", "LiFi", "Socket", "Rubic"], + "occurrences": 4 + }, + "0xacbd826394189cf2623c6df98a18b41fc8ffc16d": { + "address": "0xacbd826394189cf2623c6df98a18b41fc8ffc16d", + "symbol": "N1", + "decimals": 18, + "name": "NFTify", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xacbd826394189cf2623c6df98a18b41fc8ffc16d.png", + "aggregators": ["CoinMarketCap", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0xaa99199d1e9644b588796f3215089878440d58e0": { + "address": "0xaa99199d1e9644b588796f3215089878440d58e0", + "symbol": "ALPHR", + "decimals": 18, + "name": "Alphr", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xaa99199d1e9644b588796f3215089878440d58e0.png", + "aggregators": ["CoinMarketCap", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0xf45f6c8bb3d77ea762175b8f7ca4d251941649fa": { + "address": "0xf45f6c8bb3d77ea762175b8f7ca4d251941649fa", + "symbol": "LEMD", + "decimals": 18, + "name": "Lemond", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xf45f6c8bb3d77ea762175b8f7ca4d251941649fa.png", + "aggregators": ["CoinMarketCap", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0x327673ae6b33bd3d90f0096870059994f30dc8af": { + "address": "0x327673ae6b33bd3d90f0096870059994f30dc8af", + "symbol": "LMT", + "decimals": 18, + "name": "Lympo Market", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x327673ae6b33bd3d90f0096870059994f30dc8af.png", + "aggregators": ["CoinMarketCap", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0xb8fa12f8409da31a4fc43d15c4c78c33d8213b9b": { + "address": "0xb8fa12f8409da31a4fc43d15c4c78c33d8213b9b", + "symbol": "CALI", + "decimals": 18, + "name": "CaliCoin", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xb8fa12f8409da31a4fc43d15c4c78c33d8213b9b.png", + "aggregators": ["CoinMarketCap", "Socket", "Rubic", "Rango"], + "occurrences": 4 + }, + "0x34965f73cfa05bf8d8af37cb4af64fa950605ea8": { + "address": "0x34965f73cfa05bf8d8af37cb4af64fa950605ea8", + "symbol": "COW", + "decimals": 18, + "name": "CoinWind", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x34965f73cfa05bf8d8af37cb4af64fa950605ea8.png", + "aggregators": ["CoinMarketCap", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0x58fad9e3c3ae54c9ba98c3f0e4bf88ab3e8cf3c5": { + "address": "0x58fad9e3c3ae54c9ba98c3f0e4bf88ab3e8cf3c5", + "symbol": "SPAY", + "decimals": 18, + "name": "SpaceY 2025", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x58fad9e3c3ae54c9ba98c3f0e4bf88ab3e8cf3c5.png", + "aggregators": ["CoinMarketCap", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0x634239cfa331df0291653139d1a6083b9cf705e3": { + "address": "0x634239cfa331df0291653139d1a6083b9cf705e3", + "symbol": "DES", + "decimals": 18, + "name": "DeSpace Protocol", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x634239cfa331df0291653139d1a6083b9cf705e3.png", + "aggregators": ["CoinMarketCap", "LiFi", "Rubic", "Rango"], + "occurrences": 4 + }, + "0x106552c11272420aad5d7e94f8acab9095a6c952": { + "address": "0x106552c11272420aad5d7e94f8acab9095a6c952", + "symbol": "KEANU", + "decimals": 9, + "name": "Keanu Inu", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x106552c11272420aad5d7e94f8acab9095a6c952.png", + "aggregators": ["CoinMarketCap", "1inch", "Rubic", "Rango"], + "occurrences": 4 + }, + "0x00d8318e44780edeefcf3020a5448f636788883c": { + "address": "0x00d8318e44780edeefcf3020a5448f636788883c", + "symbol": "DAPPX", + "decimals": 18, + "name": "dAppstore", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x00d8318e44780edeefcf3020a5448f636788883c.png", + "aggregators": ["CoinMarketCap", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0x68cfb82eacb9f198d508b514d898a403c449533e": { + "address": "0x68cfb82eacb9f198d508b514d898a403c449533e", + "symbol": "CMK", + "decimals": 18, + "name": "Credmark", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x68cfb82eacb9f198d508b514d898a403c449533e.png", + "aggregators": ["CoinMarketCap", "Rubic", "Rango", "SushiSwap"], + "occurrences": 4 + }, + "0xbbbbbbb5aa847a2003fbc6b5c16df0bd1e725f61": { + "address": "0xbbbbbbb5aa847a2003fbc6b5c16df0bd1e725f61", + "symbol": "BPRO", + "decimals": 18, + "name": "BProtocol", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xbbbbbbb5aa847a2003fbc6b5c16df0bd1e725f61.png", + "aggregators": ["CoinMarketCap", "LiFi", "Rubic", "Bancor"], + "occurrences": 4 + }, + "0x639ae8f3eed18690bf451229d14953a5a5627b72": { + "address": "0x639ae8f3eed18690bf451229d14953a5a5627b72", + "symbol": "GNBU", + "decimals": 18, + "name": "Nimbus Governance Token", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x639ae8f3eed18690bf451229d14953a5a5627b72.png", + "aggregators": ["CoinMarketCap", "LiFi", "Socket", "Rubic"], + "occurrences": 4 + }, + "0xd6caf5bd23cf057f5fccce295dcc50c01c198707": { + "address": "0xd6caf5bd23cf057f5fccce295dcc50c01c198707", + "symbol": "EVA", + "decimals": 18, + "name": "Evanesco Network", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xd6caf5bd23cf057f5fccce295dcc50c01c198707.png", + "aggregators": ["CoinMarketCap", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0x043c308bb8a5ae96d0093444be7f56459f1340b1": { + "address": "0x043c308bb8a5ae96d0093444be7f56459f1340b1", + "symbol": "SUM", + "decimals": 18, + "name": "SumSwap", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x043c308bb8a5ae96d0093444be7f56459f1340b1.png", + "aggregators": ["CoinMarketCap", "LiFi", "Rubic", "Rango"], + "occurrences": 4 + }, + "0x650f44ed6f1fe0e1417cb4b3115d52494b4d9b6d": { + "address": "0x650f44ed6f1fe0e1417cb4b3115d52494b4d9b6d", + "symbol": "MEOW", + "decimals": 18, + "name": "Meowshi", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x650f44ed6f1fe0e1417cb4b3115d52494b4d9b6d.png", + "aggregators": ["CoinMarketCap", "Rubic", "Rango", "SushiSwap"], + "occurrences": 4 + }, + "0xc4170fd71eced3c80badca77f4e12e8aac1e3436": { + "address": "0xc4170fd71eced3c80badca77f4e12e8aac1e3436", + "symbol": "KMON", + "decimals": 18, + "name": "Kryptomon", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xc4170fd71eced3c80badca77f4e12e8aac1e3436.png", + "aggregators": ["CoinMarketCap", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0x3757232b55e60da4a8793183ac030cfce4c3865d": { + "address": "0x3757232b55e60da4a8793183ac030cfce4c3865d", + "symbol": "YDR", + "decimals": 18, + "name": "YDragon", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x3757232b55e60da4a8793183ac030cfce4c3865d.png", + "aggregators": ["CoinMarketCap", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0x2f75113b13d136f861d212fa9b572f2c79ac81c4": { + "address": "0x2f75113b13d136f861d212fa9b572f2c79ac81c4", + "symbol": "EKTA", + "decimals": 18, + "name": "Ekta", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x2f75113b13d136f861d212fa9b572f2c79ac81c4.png", + "aggregators": ["CoinMarketCap", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0x58fcaa970339a9b1f8c0a5b4f3fcd7af2ba3075e": { + "address": "0x58fcaa970339a9b1f8c0a5b4f3fcd7af2ba3075e", + "symbol": "POLAR", + "decimals": 18, + "name": "Polar Sync", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x58fcaa970339a9b1f8c0a5b4f3fcd7af2ba3075e.png", + "aggregators": ["CoinMarketCap", "Socket", "Rubic", "Rango"], + "occurrences": 4 + }, + "0xffbf315f70e458e49229654dea4ce192d26f9b25": { + "address": "0xffbf315f70e458e49229654dea4ce192d26f9b25", + "symbol": "VOLT", + "decimals": 18, + "name": "VOLTAGE", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xffbf315f70e458e49229654dea4ce192d26f9b25.png", + "aggregators": ["CoinMarketCap", "LiFi", "Socket", "Rubic"], + "occurrences": 4 + }, + "0x0343131c0257ac21ea5a8dc83841f071efd9285c": { + "address": "0x0343131c0257ac21ea5a8dc83841f071efd9285c", + "symbol": "ZENITH", + "decimals": 18, + "name": "Zenith Chain", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x0343131c0257ac21ea5a8dc83841f071efd9285c.png", + "aggregators": ["CoinMarketCap", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0x1cc30e2eac975416060ec6fe682041408420d414": { + "address": "0x1cc30e2eac975416060ec6fe682041408420d414", + "symbol": "KOL", + "decimals": 18, + "name": "KOL", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x1cc30e2eac975416060ec6fe682041408420d414.png", + "aggregators": ["CoinMarketCap", "Socket", "Rubic", "Rango"], + "occurrences": 4 + }, + "0x1f16d41f9b3db03b462bdd6c92245ee708d1c103": { + "address": "0x1f16d41f9b3db03b462bdd6c92245ee708d1c103", + "symbol": "RPG", + "decimals": 18, + "name": "Rangers Protocol Gas", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x1f16d41f9b3db03b462bdd6c92245ee708d1c103.png", + "aggregators": ["CoinMarketCap", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0x3ec8798b81485a254928b70cda1cf0a2bb0b74d7": { + "address": "0x3ec8798b81485a254928b70cda1cf0a2bb0b74d7", + "symbol": "GRO", + "decimals": 18, + "name": "Gro DAO Token", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x3ec8798b81485a254928b70cda1cf0a2bb0b74d7.png", + "aggregators": ["CoinMarketCap", "1inch", "Rubic", "Rango"], + "occurrences": 4 + }, + "0xdc47f2ba852669b178699449e50682d6ceaf8c07": { + "address": "0xdc47f2ba852669b178699449e50682d6ceaf8c07", + "symbol": "STON", + "decimals": 18, + "name": "Ston", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xdc47f2ba852669b178699449e50682d6ceaf8c07.png", + "aggregators": ["CoinMarketCap", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0xbafdabadcf19d0cfbbe0ab9c69cf050d86ff888c": { + "address": "0xbafdabadcf19d0cfbbe0ab9c69cf050d86ff888c", + "symbol": "ZEDXION", + "decimals": 18, + "name": "Zedxion", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xbafdabadcf19d0cfbbe0ab9c69cf050d86ff888c.png", + "aggregators": ["CoinMarketCap", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0xd8c1232fcd219286e341271385bd70601503b3d7": { + "address": "0xd8c1232fcd219286e341271385bd70601503b3d7", + "symbol": "DOGIRA", + "decimals": 9, + "name": "Dogira", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xd8c1232fcd219286e341271385bd70601503b3d7.png", + "aggregators": ["CoinMarketCap", "Socket", "Rubic", "Rango"], + "occurrences": 4 + }, + "0x332e824e46fceeb9e59ba9491b80d3e6d42b0b59": { + "address": "0x332e824e46fceeb9e59ba9491b80d3e6d42b0b59", + "symbol": "CHEESE", + "decimals": 18, + "name": "CheeseFry", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x332e824e46fceeb9e59ba9491b80d3e6d42b0b59.png", + "aggregators": ["CoinMarketCap", "Rubic", "Rango", "SushiSwap"], + "occurrences": 4 + }, + "0x15ee120fd69bec86c1d38502299af7366a41d1a6": { + "address": "0x15ee120fd69bec86c1d38502299af7366a41d1a6", + "symbol": "BITANT", + "decimals": 18, + "name": "BitANT", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x15ee120fd69bec86c1d38502299af7366a41d1a6.png", + "aggregators": ["CoinMarketCap", "Socket", "Rubic", "Rango"], + "occurrences": 4 + }, + "0x0fd67b4ceb9b607ef206904ec73459c4880132c9": { + "address": "0x0fd67b4ceb9b607ef206904ec73459c4880132c9", + "symbol": "SHOE", + "decimals": 18, + "name": "ShoeFy", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x0fd67b4ceb9b607ef206904ec73459c4880132c9.png", + "aggregators": ["CoinMarketCap", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0x513c3200f227ebb62e3b3d00b7a83779643a71cf": { + "address": "0x513c3200f227ebb62e3b3d00b7a83779643a71cf", + "symbol": "LIFT", + "decimals": 18, + "name": "Uplift", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x513c3200f227ebb62e3b3d00b7a83779643a71cf.png", + "aggregators": ["CoinMarketCap", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0x2162f572b25f7358db9376ab58a947a4e45cede1": { + "address": "0x2162f572b25f7358db9376ab58a947a4e45cede1", + "symbol": "LBL", + "decimals": 18, + "name": "LABEL AI", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x2162f572b25f7358db9376ab58a947a4e45cede1.png", + "aggregators": ["CoinMarketCap", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0xdd2e93924bdd4e20c3cf4a8736e5955224fa450e": { + "address": "0xdd2e93924bdd4e20c3cf4a8736e5955224fa450e", + "symbol": "FOHO", + "decimals": 8, + "name": "FOHO Coin", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xdd2e93924bdd4e20c3cf4a8736e5955224fa450e.png", + "aggregators": ["CoinMarketCap", "LiFi", "Rubic", "Rango"], + "occurrences": 4 + }, + "0xc0b68eb52c89e3fffa62d78012ac8b661bfaa323": { + "address": "0xc0b68eb52c89e3fffa62d78012ac8b661bfaa323", + "symbol": "VIX", + "decimals": 18, + "name": "VIXCO", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xc0b68eb52c89e3fffa62d78012ac8b661bfaa323.png", + "aggregators": ["CoinMarketCap", "Socket", "Rubic", "Rango"], + "occurrences": 4 + }, + "0x0dc7d0192c148d7d2d6fa32dc280f953c0ad6a34": { + "address": "0x0dc7d0192c148d7d2d6fa32dc280f953c0ad6a34", + "symbol": "METACAT", + "decimals": 18, + "name": "MetaCat", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x0dc7d0192c148d7d2d6fa32dc280f953c0ad6a34.png", + "aggregators": ["CoinMarketCap", "Rubic", "Rango", "SushiSwap"], + "occurrences": 4 + }, + "0x21ad647b8f4fe333212e735bfc1f36b4941e6ad2": { + "address": "0x21ad647b8f4fe333212e735bfc1f36b4941e6ad2", + "symbol": "SQUID", + "decimals": 9, + "name": "Squid", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x21ad647b8f4fe333212e735bfc1f36b4941e6ad2.png", + "aggregators": ["CoinMarketCap", "Rubic", "Rango", "SushiSwap"], + "occurrences": 4 + }, + "0xa36fdbbae3c9d55a1d67ee5821d53b50b63a1ab9": { + "address": "0xa36fdbbae3c9d55a1d67ee5821d53b50b63a1ab9", + "symbol": "TEMP", + "decimals": 18, + "name": "Tempus", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xa36fdbbae3c9d55a1d67ee5821d53b50b63a1ab9.png", + "aggregators": ["CoinMarketCap", "LiFi", "Rubic", "Bancor"], + "occurrences": 4 + }, + "0x7b39917f9562c8bc83c7a6c2950ff571375d505d": { + "address": "0x7b39917f9562c8bc83c7a6c2950ff571375d505d", + "symbol": "LEAG", + "decimals": 18, + "name": "LeagueDAO Governance Token", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x7b39917f9562c8bc83c7a6c2950ff571375d505d.png", + "aggregators": ["CoinMarketCap", "Rubic", "Rango", "SushiSwap"], + "occurrences": 4 + }, + "0xbc7250c8c3eca1dfc1728620af835fca489bfdf3": { + "address": "0xbc7250c8c3eca1dfc1728620af835fca489bfdf3", + "symbol": "GM", + "decimals": 9, + "name": "GM", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xbc7250c8c3eca1dfc1728620af835fca489bfdf3.png", + "aggregators": ["CoinMarketCap", "Socket", "Rubic", "Rango"], + "occurrences": 4 + }, + "0x3f68e7b44e9bcb486c2feadb7a2289d9cdfc9088": { + "address": "0x3f68e7b44e9bcb486c2feadb7a2289d9cdfc9088", + "symbol": "ICONS", + "decimals": 18, + "name": "SportsIcon", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x3f68e7b44e9bcb486c2feadb7a2289d9cdfc9088.png", + "aggregators": ["CoinMarketCap", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0x7f0693074f8064cfbcf9fa6e5a3fa0e4f58ccccf": { + "address": "0x7f0693074f8064cfbcf9fa6e5a3fa0e4f58ccccf", + "symbol": "GM", + "decimals": 18, + "name": "we love gm", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x7f0693074f8064cfbcf9fa6e5a3fa0e4f58ccccf.png", + "aggregators": ["CoinMarketCap", "Rubic", "Rango", "SushiSwap"], + "occurrences": 4 + }, + "0xac0968a3e2020ac8ca83e60ccf69081ebc6d3bc3": { + "address": "0xac0968a3e2020ac8ca83e60ccf69081ebc6d3bc3", + "symbol": "CIND", + "decimals": 18, + "name": "Cindrum", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xac0968a3e2020ac8ca83e60ccf69081ebc6d3bc3.png", + "aggregators": ["CoinMarketCap", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0x8d610e20481f4c4f3acb87bba9c46bef7795fdfe": { + "address": "0x8d610e20481f4c4f3acb87bba9c46bef7795fdfe", + "symbol": "UNT", + "decimals": 18, + "name": "Unity Network", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x8d610e20481f4c4f3acb87bba9c46bef7795fdfe.png", + "aggregators": ["CoinMarketCap", "LiFi", "Rubic", "Rango"], + "occurrences": 4 + }, + "0xe2e109f1b4eaa8915655fe8fdefc112a34acc5f0": { + "address": "0xe2e109f1b4eaa8915655fe8fdefc112a34acc5f0", + "symbol": "DUST", + "decimals": 18, + "name": "DUST Token", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xe2e109f1b4eaa8915655fe8fdefc112a34acc5f0.png", + "aggregators": ["CoinMarketCap", "LiFi", "Socket", "Rubic"], + "occurrences": 4 + }, + "0x6a969d379700b2e5ea4e684d273d63c1c050ba49": { + "address": "0x6a969d379700b2e5ea4e684d273d63c1c050ba49", + "symbol": "PAF", + "decimals": 18, + "name": "Pacific", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x6a969d379700b2e5ea4e684d273d63c1c050ba49.png", + "aggregators": ["CoinMarketCap", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0x7237c0b30b1355f1b76355582f182f6f04b08740": { + "address": "0x7237c0b30b1355f1b76355582f182f6f04b08740", + "symbol": "MGG", + "decimals": 18, + "name": "MetaGaming Guild", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x7237c0b30b1355f1b76355582f182f6f04b08740.png", + "aggregators": ["CoinMarketCap", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0x31c2415c946928e9fd1af83cdfa38d3edbd4326f": { + "address": "0x31c2415c946928e9fd1af83cdfa38d3edbd4326f", + "symbol": "UMAD", + "decimals": 8, + "name": "MADworld", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x31c2415c946928e9fd1af83cdfa38d3edbd4326f.png", + "aggregators": ["CoinMarketCap", "Socket", "Rubic", "Rango"], + "occurrences": 4 + }, + "0xdec41db0c33f3f6f3cb615449c311ba22d418a8d": { + "address": "0xdec41db0c33f3f6f3cb615449c311ba22d418a8d", + "symbol": "LOBI", + "decimals": 9, + "name": "Lobi", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xdec41db0c33f3f6f3cb615449c311ba22d418a8d.png", + "aggregators": ["CoinMarketCap", "Rubic", "Rango", "SushiSwap"], + "occurrences": 4 + }, + "0x0e6fa9c050c8a707e7f56a2b3695665e4f9eac9b": { + "address": "0x0e6fa9c050c8a707e7f56a2b3695665e4f9eac9b", + "symbol": "RBIF", + "decimals": 9, + "name": "ROBO INU", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x0e6fa9c050c8a707e7f56a2b3695665e4f9eac9b.png", + "aggregators": ["CoinMarketCap", "Socket", "Rubic", "Rango"], + "occurrences": 4 + }, + "0xa1e770be76bde604f8ebb66f640250a787b9422b": { + "address": "0xa1e770be76bde604f8ebb66f640250a787b9422b", + "symbol": "DEB", + "decimals": 18, + "name": "AndUsChain", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xa1e770be76bde604f8ebb66f640250a787b9422b.png", + "aggregators": ["CoinMarketCap", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0x31ea0de8119307aa264bb4b38727aab4e36b074f": { + "address": "0x31ea0de8119307aa264bb4b38727aab4e36b074f", + "symbol": "STORE", + "decimals": 18, + "name": "Bit Store", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x31ea0de8119307aa264bb4b38727aab4e36b074f.png", + "aggregators": ["CoinMarketCap", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0xbba6c7c7d673c48d90069ad2e9d2fe587fcb6bc3": { + "address": "0xbba6c7c7d673c48d90069ad2e9d2fe587fcb6bc3", + "symbol": "LEPA", + "decimals": 18, + "name": "Lepasa", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xbba6c7c7d673c48d90069ad2e9d2fe587fcb6bc3.png", + "aggregators": ["CoinMarketCap", "LiFi", "Socket", "Rubic"], + "occurrences": 4 + }, + "0x4184aa04215e5d716dd4c213fed519acadc68f92": { + "address": "0x4184aa04215e5d716dd4c213fed519acadc68f92", + "symbol": "ONUS", + "decimals": 18, + "name": "ONUS", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x4184aa04215e5d716dd4c213fed519acadc68f92.png", + "aggregators": ["CoinMarketCap", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0xaf9db9e362e306688af48c4acb9618c06db38ac3": { + "address": "0xaf9db9e362e306688af48c4acb9618c06db38ac3", + "symbol": "ACY", + "decimals": 18, + "name": "ACY", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xaf9db9e362e306688af48c4acb9618c06db38ac3.png", + "aggregators": ["CoinMarketCap", "LiFi", "Socket", "Rubic"], + "occurrences": 4 + }, + "0xf61bf4d1a948487d61b8fa63808aac06bda55f98": { + "address": "0xf61bf4d1a948487d61b8fa63808aac06bda55f98", + "symbol": "TR3", + "decimals": 18, + "name": "Tr3zor", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xf61bf4d1a948487d61b8fa63808aac06bda55f98.png", + "aggregators": ["CoinMarketCap", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0x0acc0fee1d86d2cd5af372615bf59b298d50cd69": { + "address": "0x0acc0fee1d86d2cd5af372615bf59b298d50cd69", + "symbol": "ILSI", + "decimals": 18, + "name": "Invest Like Stakeborg Index", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x0acc0fee1d86d2cd5af372615bf59b298d50cd69.png", + "aggregators": ["CoinMarketCap", "Rubic", "Rango", "SushiSwap"], + "occurrences": 4 + }, + "0x2a03a891add2dc6d0f7b94419086630ba5cb65b6": { + "address": "0x2a03a891add2dc6d0f7b94419086630ba5cb65b6", + "symbol": "DV", + "decimals": 18, + "name": "Dreamverse", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x2a03a891add2dc6d0f7b94419086630ba5cb65b6.png", + "aggregators": ["CoinMarketCap", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0x52f4d5ee6c91e01be67ca1f64b11ed0ee370817d": { + "address": "0x52f4d5ee6c91e01be67ca1f64b11ed0ee370817d", + "symbol": "CIA", + "decimals": 9, + "name": "CIA", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x52f4d5ee6c91e01be67ca1f64b11ed0ee370817d.png", + "aggregators": ["CoinMarketCap", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0x76ff2ab6b34142421f44a68cc8dd08f45f9ee2f2": { + "address": "0x76ff2ab6b34142421f44a68cc8dd08f45f9ee2f2", + "symbol": "PIP", + "decimals": 9, + "name": "PIP", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x76ff2ab6b34142421f44a68cc8dd08f45f9ee2f2.png", + "aggregators": ["CoinMarketCap", "Socket", "Rubic", "Rango"], + "occurrences": 4 + }, + "0x9c32185b81766a051e08de671207b34466dd1021": { + "address": "0x9c32185b81766a051e08de671207b34466dd1021", + "symbol": "BTCPX", + "decimals": 8, + "name": "BTC Proxy", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x9c32185b81766a051e08de671207b34466dd1021.png", + "aggregators": ["CoinMarketCap", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0x47252a63c723889814aebcac0683e615624cec64": { + "address": "0x47252a63c723889814aebcac0683e615624cec64", + "symbol": "NIL", + "decimals": 18, + "name": "nil", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x47252a63c723889814aebcac0683e615624cec64.png", + "aggregators": ["CoinMarketCap", "Rubic", "Rango", "SushiSwap"], + "occurrences": 4 + }, + "0x203aad20f51bbe43e650d3ceea88d43dd6c817c1": { + "address": "0x203aad20f51bbe43e650d3ceea88d43dd6c817c1", + "symbol": "GM", + "decimals": 8, + "name": "GhostMarket Token", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x203aad20f51bbe43e650d3ceea88d43dd6c817c1.png", + "aggregators": ["CoinMarketCap", "Socket", "Rubic", "Rango"], + "occurrences": 4 + }, + "0x6c862f803ff42a97d4a483ab761256ad8c90f4f8": { + "address": "0x6c862f803ff42a97d4a483ab761256ad8c90f4f8", + "symbol": "XLS", + "decimals": 18, + "name": "ELIS", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x6c862f803ff42a97d4a483ab761256ad8c90f4f8.png", + "aggregators": ["CoinMarketCap", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0x5b1d655c93185b06b00f7925791106132cb3ad75": { + "address": "0x5b1d655c93185b06b00f7925791106132cb3ad75", + "symbol": "DMT", + "decimals": 18, + "name": "DarkMatter", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x5b1d655c93185b06b00f7925791106132cb3ad75.png", + "aggregators": ["CoinMarketCap", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0x6dda263994aab33f5ed612294e26f2a13df0da05": { + "address": "0x6dda263994aab33f5ed612294e26f2a13df0da05", + "symbol": "QHUB", + "decimals": 18, + "name": "QHUB", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x6dda263994aab33f5ed612294e26f2a13df0da05.png", + "aggregators": ["CoinMarketCap", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0x00281dfce4cfd72c0b6fda2aaaf077258743f9e8": { + "address": "0x00281dfce4cfd72c0b6fda2aaaf077258743f9e8", + "symbol": "NRFB", + "decimals": 0, + "name": "NuriFootball", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x00281dfce4cfd72c0b6fda2aaaf077258743f9e8.png", + "aggregators": ["CoinMarketCap", "Socket", "Rubic", "Rango"], + "occurrences": 4 + }, + "0x1afb69dbc9f54d08dab1bd3436f8da1af819e647": { + "address": "0x1afb69dbc9f54d08dab1bd3436f8da1af819e647", + "symbol": "MELOS", + "decimals": 18, + "name": "Melos Studio", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x1afb69dbc9f54d08dab1bd3436f8da1af819e647.png", + "aggregators": ["CoinMarketCap", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0xf725f73caee250ae384ec38bb2c77c38ef2cccea": { + "address": "0xf725f73caee250ae384ec38bb2c77c38ef2cccea", + "symbol": "AIR", + "decimals": 18, + "name": "Ape In Records", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xf725f73caee250ae384ec38bb2c77c38ef2cccea.png", + "aggregators": ["CoinMarketCap", "Socket", "Rubic", "Rango"], + "occurrences": 4 + }, + "0x60bb16c4a931b1a0b8a7d945c651dd90f41d42cf": { + "address": "0x60bb16c4a931b1a0b8a7d945c651dd90f41d42cf", + "symbol": "FBX", + "decimals": 18, + "name": "Finance Blocks", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x60bb16c4a931b1a0b8a7d945c651dd90f41d42cf.png", + "aggregators": ["CoinMarketCap", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0x1c7e83f8c581a967940dbfa7984744646ae46b29": { + "address": "0x1c7e83f8c581a967940dbfa7984744646ae46b29", + "symbol": "RND", + "decimals": 18, + "name": "random", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x1c7e83f8c581a967940dbfa7984744646ae46b29.png", + "aggregators": ["CoinMarketCap", "Socket", "Rubic", "Rango"], + "occurrences": 4 + }, + "0xb2606492712d311be8f41d940afe8ce742a52d44": { + "address": "0xb2606492712d311be8f41d940afe8ce742a52d44", + "symbol": "ZEND", + "decimals": 18, + "name": "zkLend", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xb2606492712d311be8f41d940afe8ce742a52d44.png", + "aggregators": ["CoinMarketCap", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0x6570ffe19da7e2b425329b157d9109b87f18304b": { + "address": "0x6570ffe19da7e2b425329b157d9109b87f18304b", + "symbol": "UNM", + "decimals": 18, + "name": "UNIUM", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x6570ffe19da7e2b425329b157d9109b87f18304b.png", + "aggregators": ["CoinMarketCap", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0xde075d9adbd0240b4462f124af926452ad0bac91": { + "address": "0xde075d9adbd0240b4462f124af926452ad0bac91", + "symbol": "BBF", + "decimals": 18, + "name": "Bubblefong", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xde075d9adbd0240b4462f124af926452ad0bac91.png", + "aggregators": ["CoinMarketCap", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0x27778e14ce36d3b85e1effeb43816a17bbb7088a": { + "address": "0x27778e14ce36d3b85e1effeb43816a17bbb7088a", + "symbol": "LGOLD", + "decimals": 18, + "name": "Lyfe Gold", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x27778e14ce36d3b85e1effeb43816a17bbb7088a.png", + "aggregators": ["CoinMarketCap", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0xb840d10d840ef47c233fec1fd040f5b145a6dfa5": { + "address": "0xb840d10d840ef47c233fec1fd040f5b145a6dfa5", + "symbol": "STREETH", + "decimals": 18, + "name": "STREETH", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xb840d10d840ef47c233fec1fd040f5b145a6dfa5.png", + "aggregators": ["CoinMarketCap", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0x36919a60a2b67b6d2329863093d180d23d5a0308": { + "address": "0x36919a60a2b67b6d2329863093d180d23d5a0308", + "symbol": "KUSUNOKI", + "decimals": 18, + "name": "Kusunoki Samurai", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x36919a60a2b67b6d2329863093d180d23d5a0308.png", + "aggregators": ["CoinMarketCap", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0x3209d14ff61766359e64aceff91877cec2ad968e": { + "address": "0x3209d14ff61766359e64aceff91877cec2ad968e", + "symbol": "CUP", + "decimals": 18, + "name": "CouponBay", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x3209d14ff61766359e64aceff91877cec2ad968e.png", + "aggregators": ["CoinMarketCap", "Socket", "Rubic", "Rango"], + "occurrences": 4 + }, + "0xb009bfaaf85e53f55d8657781eb69feaaed83672": { + "address": "0xb009bfaaf85e53f55d8657781eb69feaaed83672", + "symbol": "EGS", + "decimals": 18, + "name": "EdgeSwap", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xb009bfaaf85e53f55d8657781eb69feaaed83672.png", + "aggregators": ["CoinMarketCap", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0xa16a609ff4e1a15b6ccb469e7a5dd14e89305283": { + "address": "0xa16a609ff4e1a15b6ccb469e7a5dd14e89305283", + "symbol": "SPUME", + "decimals": 18, + "name": "Spume", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xa16a609ff4e1a15b6ccb469e7a5dd14e89305283.png", + "aggregators": ["CoinMarketCap", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0x20cd2e7ec8f5d8b337fe46a4f565ccef1561b9a9": { + "address": "0x20cd2e7ec8f5d8b337fe46a4f565ccef1561b9a9", + "symbol": "ESG", + "decimals": 18, + "name": "ESG", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x20cd2e7ec8f5d8b337fe46a4f565ccef1561b9a9.png", + "aggregators": ["CoinMarketCap", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0x9802296cc5b76ff2fc6dd6de372f47f96bc0347a": { + "address": "0x9802296cc5b76ff2fc6dd6de372f47f96bc0347a", + "symbol": "KALIS", + "decimals": 18, + "name": "Kalichain", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x9802296cc5b76ff2fc6dd6de372f47f96bc0347a.png", + "aggregators": ["CoinMarketCap", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0xa5b947687163fe88c3e6af5b17ae69896f4abccf": { + "address": "0xa5b947687163fe88c3e6af5b17ae69896f4abccf", + "symbol": "PSDN", + "decimals": 18, + "name": "Poseidon", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xa5b947687163fe88c3e6af5b17ae69896f4abccf.png", + "aggregators": ["CoinMarketCap", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0x830eb1204380e9c44434db8700257025358707c6": { + "address": "0x830eb1204380e9c44434db8700257025358707c6", + "symbol": "GOB", + "decimals": 18, + "name": "Goons of Balatroon", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x830eb1204380e9c44434db8700257025358707c6.png", + "aggregators": ["CoinMarketCap", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0xacf8d5e515ed005655dfefa09c22673a37a7cdee": { + "address": "0xacf8d5e515ed005655dfefa09c22673a37a7cdee", + "symbol": "FNF", + "decimals": 18, + "name": "FunFi", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xacf8d5e515ed005655dfefa09c22673a37a7cdee.png", + "aggregators": ["CoinMarketCap", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0x188fb5f5ae5bbe4154d5778f2bbb2fb985c94d25": { + "address": "0x188fb5f5ae5bbe4154d5778f2bbb2fb985c94d25", + "symbol": "OBX", + "decimals": 18, + "name": "OpenBlox", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x188fb5f5ae5bbe4154d5778f2bbb2fb985c94d25.png", + "aggregators": ["CoinMarketCap", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0x4fd51cb87ffefdf1711112b5bd8ab682e54988ea": { + "address": "0x4fd51cb87ffefdf1711112b5bd8ab682e54988ea", + "symbol": "WPT", + "decimals": 18, + "name": "WPT Investing Corp", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x4fd51cb87ffefdf1711112b5bd8ab682e54988ea.png", + "aggregators": ["CoinMarketCap", "Socket", "Rubic", "Rango"], + "occurrences": 4 + }, + "0x7707aada3ce7722ac63b91727daf1999849f6835": { + "address": "0x7707aada3ce7722ac63b91727daf1999849f6835", + "symbol": "BNK", + "decimals": 8, + "name": "Bankera", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x7707aada3ce7722ac63b91727daf1999849f6835.png", + "aggregators": ["CoinMarketCap", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0x68ccaca9adf1552b3316d6067690ec27397c8ea8": { + "address": "0x68ccaca9adf1552b3316d6067690ec27397c8ea8", + "symbol": "TOS", + "decimals": 18, + "name": "Cryptopia", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x68ccaca9adf1552b3316d6067690ec27397c8ea8.png", + "aggregators": ["CoinMarketCap", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0x171d76d931529384639bc9aad5b77b77041ed604": { + "address": "0x171d76d931529384639bc9aad5b77b77041ed604", + "symbol": "MOTG", + "decimals": 18, + "name": "MetaOctagon", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x171d76d931529384639bc9aad5b77b77041ed604.png", + "aggregators": ["CoinMarketCap", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0x1c3d163219bb74f430411b95d66b72056f366ec1": { + "address": "0x1c3d163219bb74f430411b95d66b72056f366ec1", + "symbol": "ENO", + "decimals": 18, + "name": "ENO", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x1c3d163219bb74f430411b95d66b72056f366ec1.png", + "aggregators": ["CoinMarketCap", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0xe67f943af5eb6051ef56f05979cc30b732717fa6": { + "address": "0xe67f943af5eb6051ef56f05979cc30b732717fa6", + "symbol": "WATT", + "decimals": 4, + "name": "WATTTON", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xe67f943af5eb6051ef56f05979cc30b732717fa6.png", + "aggregators": ["CoinMarketCap", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0xee9e7bb7e55bbc86414047b61d65c9c0d91ffbd0": { + "address": "0xee9e7bb7e55bbc86414047b61d65c9c0d91ffbd0", + "symbol": "FT", + "decimals": 18, + "name": "Fracton Protocol", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xee9e7bb7e55bbc86414047b61d65c9c0d91ffbd0.png", + "aggregators": ["CoinMarketCap", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0x99f618edcfedca1fcc8302e14daa84802114a8c5": { + "address": "0x99f618edcfedca1fcc8302e14daa84802114a8c5", + "symbol": "DBNB", + "decimals": 9, + "name": "DecentraBNB", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x99f618edcfedca1fcc8302e14daa84802114a8c5.png", + "aggregators": ["CoinMarketCap", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0x4a27e9aab8f8ba9de06766c8476ed1d16494e35f": { + "address": "0x4a27e9aab8f8ba9de06766c8476ed1d16494e35f", + "symbol": "PEPE", + "decimals": 18, + "name": "PEPEGOLD", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x4a27e9aab8f8ba9de06766c8476ed1d16494e35f.png", + "aggregators": ["CoinMarketCap", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0x434cb4fc4b952872967914d430878eee53ebd502": { + "address": "0x434cb4fc4b952872967914d430878eee53ebd502", + "symbol": "APCG", + "decimals": 18, + "name": "ALL Pay Coin", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x434cb4fc4b952872967914d430878eee53ebd502.png", + "aggregators": ["CoinMarketCap", "LiFi", "Socket", "Rubic"], + "occurrences": 4 + }, + "0xb24cd494fae4c180a89975f1328eab2a7d5d8f11": { + "address": "0xb24cd494fae4c180a89975f1328eab2a7d5d8f11", + "symbol": "CODE", + "decimals": 18, + "name": "Developer DAO", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xb24cd494fae4c180a89975f1328eab2a7d5d8f11.png", + "aggregators": ["CoinMarketCap", "LiFi", "Socket", "Rubic"], + "occurrences": 4 + }, + "0x5bb15141bb6def6d2bafeed8ff84bf889c0c573b": { + "address": "0x5bb15141bb6def6d2bafeed8ff84bf889c0c573b", + "symbol": "LVM", + "decimals": 18, + "name": "LakeViewMeta", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x5bb15141bb6def6d2bafeed8ff84bf889c0c573b.png", + "aggregators": ["CoinMarketCap", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0xaa2d8c9a8bd0f7945143bfd509be3ff23dd78918": { + "address": "0xaa2d8c9a8bd0f7945143bfd509be3ff23dd78918", + "symbol": "ATNT", + "decimals": 3, + "name": "Artizen", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xaa2d8c9a8bd0f7945143bfd509be3ff23dd78918.png", + "aggregators": ["CoinMarketCap", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0x1b3c515f58857e141a966b33182f2f3feecc10e9": { + "address": "0x1b3c515f58857e141a966b33182f2f3feecc10e9", + "symbol": "USK", + "decimals": 6, + "name": "USK", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x1b3c515f58857e141a966b33182f2f3feecc10e9.png", + "aggregators": ["CoinMarketCap", "LiFi", "Rubic", "Sonarwatch"], + "occurrences": 4 + }, + "0x461b71cff4d4334bba09489ace4b5dc1a1813445": { + "address": "0x461b71cff4d4334bba09489ace4b5dc1a1813445", + "symbol": "HRD", + "decimals": 9, + "name": "Hoard", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x461b71cff4d4334bba09489ace4b5dc1a1813445.png", + "aggregators": ["CoinMarketCap", "1inch", "Rubic", "Rango"], + "occurrences": 4 + }, + "0x291aa47c58558adfc2bcd6f060578fdae1f6570c": { + "address": "0x291aa47c58558adfc2bcd6f060578fdae1f6570c", + "symbol": "MBASE", + "decimals": 18, + "name": "Minebase", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x291aa47c58558adfc2bcd6f060578fdae1f6570c.png", + "aggregators": ["CoinMarketCap", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0x5891599664ed15c6e88041b4f5bc08594f026f0e": { + "address": "0x5891599664ed15c6e88041b4f5bc08594f026f0e", + "symbol": "JPGC", + "decimals": 18, + "name": "JPGold Coin", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x5891599664ed15c6e88041b4f5bc08594f026f0e.png", + "aggregators": ["CoinMarketCap", "Socket", "Rubic", "Rango"], + "occurrences": 4 + }, + "0xa888d9616c2222788fa19f05f77221a290eef704": { + "address": "0xa888d9616c2222788fa19f05f77221a290eef704", + "symbol": "DARUMA", + "decimals": 9, + "name": "Daruma", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xa888d9616c2222788fa19f05f77221a290eef704.png", + "aggregators": ["CoinMarketCap", "Socket", "Rubic", "Rango"], + "occurrences": 4 + }, + "0xe5a733681bbe6cd8c764bb8078ef8e13a576dd78": { + "address": "0xe5a733681bbe6cd8c764bb8078ef8e13a576dd78", + "symbol": "DPAY", + "decimals": 18, + "name": "Devour", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xe5a733681bbe6cd8c764bb8078ef8e13a576dd78.png", + "aggregators": ["CoinMarketCap", "1inch", "Rubic", "Rango"], + "occurrences": 4 + }, + "0x095797fd4297fb79883cc912a5ba6313b15c445d": { + "address": "0x095797fd4297fb79883cc912a5ba6313b15c445d", + "symbol": "GOLC", + "decimals": 18, + "name": "GOLCOIN", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x095797fd4297fb79883cc912a5ba6313b15c445d.png", + "aggregators": ["CoinMarketCap", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0xba93ef534094f8b7001ece2691168140965341ab": { + "address": "0xba93ef534094f8b7001ece2691168140965341ab", + "symbol": "LOTT", + "decimals": 18, + "name": "Beauty Bakery Linked Operation Transact", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xba93ef534094f8b7001ece2691168140965341ab.png", + "aggregators": ["CoinMarketCap", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0x9008064e6cf73e27a3aba4b10e69f855a4f8efcc": { + "address": "0x9008064e6cf73e27a3aba4b10e69f855a4f8efcc", + "symbol": "GEM", + "decimals": 18, + "name": "GemieToken", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x9008064e6cf73e27a3aba4b10e69f855a4f8efcc.png", + "aggregators": ["CoinMarketCap", "Socket", "Rubic", "Rango"], + "occurrences": 4 + }, + "0x1d6405138a335ce5fd7364086334efb3e4f28b59": { + "address": "0x1d6405138a335ce5fd7364086334efb3e4f28b59", + "symbol": "CCX", + "decimals": 18, + "name": "ClearCryptos", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x1d6405138a335ce5fd7364086334efb3e4f28b59.png", + "aggregators": ["CoinMarketCap", "Socket", "Rubic", "Rango"], + "occurrences": 4 + }, + "0x7495e5cc8f27e0bd5bd4cb86d17f0d841ca58ee4": { + "address": "0x7495e5cc8f27e0bd5bd4cb86d17f0d841ca58ee4", + "symbol": "ARNC", + "decimals": 18, + "name": "Arnoya classic", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x7495e5cc8f27e0bd5bd4cb86d17f0d841ca58ee4.png", + "aggregators": ["CoinMarketCap", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0x329cf160f30d21006bcd24b67eade561e54cde4c": { + "address": "0x329cf160f30d21006bcd24b67eade561e54cde4c", + "symbol": "CARE", + "decimals": 18, + "name": "CareCoin", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x329cf160f30d21006bcd24b67eade561e54cde4c.png", + "aggregators": ["CoinMarketCap", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0x8790f2fc7ca2e7db841307fb3f4e72a03baf7b47": { + "address": "0x8790f2fc7ca2e7db841307fb3f4e72a03baf7b47", + "symbol": "SPILLWAYS", + "decimals": 18, + "name": "Spillways", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x8790f2fc7ca2e7db841307fb3f4e72a03baf7b47.png", + "aggregators": ["CoinMarketCap", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0x5abf88cf3444611d13f6d1b39f3f3ee8575c91a2": { + "address": "0x5abf88cf3444611d13f6d1b39f3f3ee8575c91a2", + "symbol": "SAT", + "decimals": 18, + "name": "Super Athletes Token", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x5abf88cf3444611d13f6d1b39f3f3ee8575c91a2.png", + "aggregators": ["CoinMarketCap", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0x6d60a8dfb16d09f67d46fcd36a0cd310078257ca": { + "address": "0x6d60a8dfb16d09f67d46fcd36a0cd310078257ca", + "symbol": "CIX", + "decimals": 18, + "name": "Centurion Invest", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x6d60a8dfb16d09f67d46fcd36a0cd310078257ca.png", + "aggregators": ["CoinMarketCap", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0xcf4c68db4c2fa0bf58df07b14f45ce7709a716ac": { + "address": "0xcf4c68db4c2fa0bf58df07b14f45ce7709a716ac", + "symbol": "SHIELD", + "decimals": 18, + "name": "Dejitaru Shirudo", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xcf4c68db4c2fa0bf58df07b14f45ce7709a716ac.png", + "aggregators": ["CoinMarketCap", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0x2be1e42bf263aab47d27ba92e72c14823e101d7c": { + "address": "0x2be1e42bf263aab47d27ba92e72c14823e101d7c", + "symbol": "FFRAX", + "decimals": 18, + "name": "Fluid FRAX", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x2be1e42bf263aab47d27ba92e72c14823e101d7c.png", + "aggregators": ["CoinMarketCap", "Rubic", "Rango", "SushiSwap"], + "occurrences": 4 + }, + "0x922e2708462c7a3d014d8344f7c4d92b27ecf332": { + "address": "0x922e2708462c7a3d014d8344f7c4d92b27ecf332", + "symbol": "NEURONI", + "decimals": 18, + "name": "Neuroni AI", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x922e2708462c7a3d014d8344f7c4d92b27ecf332.png", + "aggregators": ["CoinMarketCap", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0x8b937af714ac7e2129bd33d93641f52b665ca352": { + "address": "0x8b937af714ac7e2129bd33d93641f52b665ca352", + "symbol": "JIZZ", + "decimals": 18, + "name": "JizzRocket", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x8b937af714ac7e2129bd33d93641f52b665ca352.png", + "aggregators": ["CoinMarketCap", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0x2f4404c4012476929b6503e1397707480bf23b7f": { + "address": "0x2f4404c4012476929b6503e1397707480bf23b7f", + "symbol": "TAI", + "decimals": 9, + "name": "AITravis", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x2f4404c4012476929b6503e1397707480bf23b7f.png", + "aggregators": ["CoinMarketCap", "Socket", "Rubic", "Rango"], + "occurrences": 4 + }, + "0xc6cc3d07c705e39d11c7f60d8836c7c78d4ac5f1": { + "address": "0xc6cc3d07c705e39d11c7f60d8836c7c78d4ac5f1", + "symbol": "OLEA", + "decimals": 18, + "name": "Olea Token", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xc6cc3d07c705e39d11c7f60d8836c7c78d4ac5f1.png", + "aggregators": ["CoinMarketCap", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0x1a6658f40e51b372e593b7d2144c1402d5cf33e8": { + "address": "0x1a6658f40e51b372e593b7d2144c1402d5cf33e8", + "symbol": "PUBLX", + "decimals": 18, + "name": "PUBLC", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x1a6658f40e51b372e593b7d2144c1402d5cf33e8.png", + "aggregators": ["CoinMarketCap", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0x08f40811c7d6c013744166f3d4cb1a9a92d3d54e": { + "address": "0x08f40811c7d6c013744166f3d4cb1a9a92d3d54e", + "symbol": "NVG", + "decimals": 18, + "name": "NightVerse Game", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x08f40811c7d6c013744166f3d4cb1a9a92d3d54e.png", + "aggregators": ["CoinMarketCap", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0xa48f322f8b3edff967629af79e027628b9dd1298": { + "address": "0xa48f322f8b3edff967629af79e027628b9dd1298", + "symbol": "DUSD", + "decimals": 18, + "name": "Davos xyz USD", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xa48f322f8b3edff967629af79e027628b9dd1298.png", + "aggregators": ["CoinMarketCap", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0xce20bb92ccf9bbf5091ef85649e71e552819ad8c": { + "address": "0xce20bb92ccf9bbf5091ef85649e71e552819ad8c", + "symbol": "SMART", + "decimals": 18, + "name": "Smart Game Finance", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xce20bb92ccf9bbf5091ef85649e71e552819ad8c.png", + "aggregators": ["CoinMarketCap", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0x0018d5e01e53878f90feab02f1b2019a21adf8b1": { + "address": "0x0018d5e01e53878f90feab02f1b2019a21adf8b1", + "symbol": "SHADOWCATS", + "decimals": 18, + "name": "Shadowcats", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x0018d5e01e53878f90feab02f1b2019a21adf8b1.png", + "aggregators": ["CoinMarketCap", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0x97d4f49eeb0e2c96d5ebaa71ab8418e563ecd9fd": { + "address": "0x97d4f49eeb0e2c96d5ebaa71ab8418e563ecd9fd", + "symbol": "LSD", + "decimals": 9, + "name": "Liquid Staking Derivative", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x97d4f49eeb0e2c96d5ebaa71ab8418e563ecd9fd.png", + "aggregators": ["CoinMarketCap", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0x3442fbf264b6d723e01775a710850dcef6e6847c": { + "address": "0x3442fbf264b6d723e01775a710850dcef6e6847c", + "symbol": "VNN", + "decimals": 18, + "name": "VINU Network", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x3442fbf264b6d723e01775a710850dcef6e6847c.png", + "aggregators": ["CoinMarketCap", "LiFi", "Socket", "Rubic"], + "occurrences": 4 + }, + "0x42b91f1d05afea671a2da3c780eda2abf0a2a366": { + "address": "0x42b91f1d05afea671a2da3c780eda2abf0a2a366", + "symbol": "MNB", + "decimals": 18, + "name": "Mineable", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x42b91f1d05afea671a2da3c780eda2abf0a2a366.png", + "aggregators": ["CoinMarketCap", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0xaf8942831f3a096f708b8b31f191b8958cf176c5": { + "address": "0xaf8942831f3a096f708b8b31f191b8958cf176c5", + "symbol": "NERF", + "decimals": 18, + "name": "Neural Radiance Field", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xaf8942831f3a096f708b8b31f191b8958cf176c5.png", + "aggregators": ["CoinMarketCap", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0x198065e69a86cb8a9154b333aad8efe7a3c256f8": { + "address": "0x198065e69a86cb8a9154b333aad8efe7a3c256f8", + "symbol": "KOY", + "decimals": 18, + "name": "Koyo", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x198065e69a86cb8a9154b333aad8efe7a3c256f8.png", + "aggregators": ["CoinMarketCap", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0xd54619e0b9899d74cc9b981354eb6b59732c43b1": { + "address": "0xd54619e0b9899d74cc9b981354eb6b59732c43b1", + "symbol": "N", + "decimals": 18, + "name": "Ncoin", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xd54619e0b9899d74cc9b981354eb6b59732c43b1.png", + "aggregators": ["CoinMarketCap", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0x9ed7e4b1bff939ad473da5e7a218c771d1569456": { + "address": "0x9ed7e4b1bff939ad473da5e7a218c771d1569456", + "symbol": "REUNI", + "decimals": 6, + "name": "Reunit Wallet", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x9ed7e4b1bff939ad473da5e7a218c771d1569456.png", + "aggregators": ["CoinMarketCap", "LiFi", "Rubic", "Rango"], + "occurrences": 4 + }, + "0xe9b7b5d5e8d2bcc78884f9f9099bfa42a9e5c1a5": { + "address": "0xe9b7b5d5e8d2bcc78884f9f9099bfa42a9e5c1a5", + "symbol": "ZENF", + "decimals": 18, + "name": "Zenland", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xe9b7b5d5e8d2bcc78884f9f9099bfa42a9e5c1a5.png", + "aggregators": ["CoinMarketCap", "LiFi", "Rubic", "Rango"], + "occurrences": 4 + }, + "0xec505c81d6a7567b5bde804870b1038832fe6da1": { + "address": "0xec505c81d6a7567b5bde804870b1038832fe6da1", + "symbol": "CND", + "decimals": 18, + "name": "Coinhound", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xec505c81d6a7567b5bde804870b1038832fe6da1.png", + "aggregators": ["CoinMarketCap", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0x823e1b82ce1dc147bbdb25a203f046afab1ce918": { + "address": "0x823e1b82ce1dc147bbdb25a203f046afab1ce918", + "symbol": "COIL", + "decimals": 18, + "name": "SpiralDAO Coil", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x823e1b82ce1dc147bbdb25a203f046afab1ce918.png", + "aggregators": ["CoinMarketCap", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0x46cca329970b33e1a007dd4ef0594a1cedb3e72a": { + "address": "0x46cca329970b33e1a007dd4ef0594a1cedb3e72a", + "symbol": "YESP", + "decimals": 18, + "name": "Yesports", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x46cca329970b33e1a007dd4ef0594a1cedb3e72a.png", + "aggregators": ["CoinMarketCap", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0x8260328d0c405d9ca061d80199102ddc9089e43c": { + "address": "0x8260328d0c405d9ca061d80199102ddc9089e43c", + "symbol": "DOJO", + "decimals": 9, + "name": "Dojo Supercomputer", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x8260328d0c405d9ca061d80199102ddc9089e43c.png", + "aggregators": ["CoinMarketCap", "Socket", "Rubic", "Rango"], + "occurrences": 4 + }, + "0xb076bda1abc154ddb4ccd9be45542a823aee290e": { + "address": "0xb076bda1abc154ddb4ccd9be45542a823aee290e", + "symbol": "FLEX", + "decimals": 18, + "name": "FlexMeme", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xb076bda1abc154ddb4ccd9be45542a823aee290e.png", + "aggregators": ["CoinMarketCap", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0x1f17d72cbe65df609315df5c4f5f729efbd00ade": { + "address": "0x1f17d72cbe65df609315df5c4f5f729efbd00ade", + "symbol": "GYOSHI", + "decimals": 18, + "name": "GYOSHI", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x1f17d72cbe65df609315df5c4f5f729efbd00ade.png", + "aggregators": ["CoinMarketCap", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0xe1ec350ea16d1ddaff57f31387b2d9708eb7ce28": { + "address": "0xe1ec350ea16d1ddaff57f31387b2d9708eb7ce28", + "symbol": "PC", + "decimals": 9, + "name": "Pepechain", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xe1ec350ea16d1ddaff57f31387b2d9708eb7ce28.png", + "aggregators": ["CoinMarketCap", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0x99b600d0a4abdbc4a6796225a160bcf3d5ce2a89": { + "address": "0x99b600d0a4abdbc4a6796225a160bcf3d5ce2a89", + "symbol": "SRM", + "decimals": 18, + "name": "Solareum", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x99b600d0a4abdbc4a6796225a160bcf3d5ce2a89.png", + "aggregators": ["CoinMarketCap", "Socket", "Rubic", "Rango"], + "occurrences": 4 + }, + "0x8666cb197af5103f7a3a0295b50efea47f3df78b": { + "address": "0x8666cb197af5103f7a3a0295b50efea47f3df78b", + "symbol": "DUCKS", + "decimals": 18, + "name": "Ducks", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x8666cb197af5103f7a3a0295b50efea47f3df78b.png", + "aggregators": ["CoinMarketCap", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0x8c223a82e07fecb49d602150d7c2b3a4c9630310": { + "address": "0x8c223a82e07fecb49d602150d7c2b3a4c9630310", + "symbol": "NFTE", + "decimals": 18, + "name": "NFTEarthOFT", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x8c223a82e07fecb49d602150d7c2b3a4c9630310.png", + "aggregators": ["CoinMarketCap", "Rubic", "Rango", "SushiSwap"], + "occurrences": 4 + }, + "0x02d7a93829b365b7ad4c582dace1493aac50a290": { + "address": "0x02d7a93829b365b7ad4c582dace1493aac50a290", + "symbol": "CAT", + "decimals": 18, + "name": "Scat", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x02d7a93829b365b7ad4c582dace1493aac50a290.png", + "aggregators": ["CoinMarketCap", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0xeee0fe52299f2de8e2ed5111cd521ab67dcf0faf": { + "address": "0xeee0fe52299f2de8e2ed5111cd521ab67dcf0faf", + "symbol": "QWAN", + "decimals": 18, + "name": "The QWAN", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xeee0fe52299f2de8e2ed5111cd521ab67dcf0faf.png", + "aggregators": ["CoinMarketCap", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0x7340ea46360576dc46ef49bce99bc5072c32421d": { + "address": "0x7340ea46360576dc46ef49bce99bc5072c32421d", + "symbol": "DSQ", + "decimals": 18, + "name": "DollarSqueeze", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x7340ea46360576dc46ef49bce99bc5072c32421d.png", + "aggregators": ["CoinMarketCap", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0x27f103f86070cc639fef262787a16887d22d8415": { + "address": "0x27f103f86070cc639fef262787a16887d22d8415", + "symbol": "FOFO", + "decimals": 18, + "name": "FOFO Token", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x27f103f86070cc639fef262787a16887d22d8415.png", + "aggregators": ["CoinMarketCap", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0xe18ab3568fa19e0ed38bc1d974eddd501e61e12d": { + "address": "0xe18ab3568fa19e0ed38bc1d974eddd501e61e12d", + "symbol": "BANK", + "decimals": 18, + "name": "BANK AI", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xe18ab3568fa19e0ed38bc1d974eddd501e61e12d.png", + "aggregators": ["CoinMarketCap", "Socket", "Rubic", "Sonarwatch"], + "occurrences": 4 + }, + "0x02795795196f563fdafce8dd97fca4871ded51c3": { + "address": "0x02795795196f563fdafce8dd97fca4871ded51c3", + "symbol": "WNZ", + "decimals": 18, + "name": "Winnerz", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x02795795196f563fdafce8dd97fca4871ded51c3.png", + "aggregators": ["CoinMarketCap", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0xa922a70569a7555518bf4ded5094661a965e23ca": { + "address": "0xa922a70569a7555518bf4ded5094661a965e23ca", + "symbol": "MNB", + "decimals": 8, + "name": "MN Bridge", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xa922a70569a7555518bf4ded5094661a965e23ca.png", + "aggregators": ["CoinMarketCap", "Socket", "Rubic", "Rango"], + "occurrences": 4 + }, + "0xe45dfc26215312edc131e34ea9299fbca53275ca": { + "address": "0xe45dfc26215312edc131e34ea9299fbca53275ca", + "symbol": "REL", + "decimals": 18, + "name": "Relation Native Token", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xe45dfc26215312edc131e34ea9299fbca53275ca.png", + "aggregators": ["CoinMarketCap", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0x267eb2a9a13dc304a9deff4277abe850d0852c5f": { + "address": "0x267eb2a9a13dc304a9deff4277abe850d0852c5f", + "symbol": "TAI", + "decimals": 8, + "name": "Trace AI", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x267eb2a9a13dc304a9deff4277abe850d0852c5f.png", + "aggregators": ["CoinMarketCap", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0xe0a6136f866684c0f19936c0c42a8c181c066f1b": { + "address": "0xe0a6136f866684c0f19936c0c42a8c181c066f1b", + "symbol": "TIDE", + "decimals": 18, + "name": "Tidalflats", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xe0a6136f866684c0f19936c0c42a8c181c066f1b.png", + "aggregators": ["CoinMarketCap", "Socket", "Rubic", "Rango"], + "occurrences": 4 + }, + "0x40a9a694197a0b4b92f2aad48da6bc1b6ff194e9": { + "address": "0x40a9a694197a0b4b92f2aad48da6bc1b6ff194e9", + "symbol": "LFG", + "decimals": 18, + "name": "LFG", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x40a9a694197a0b4b92f2aad48da6bc1b6ff194e9.png", + "aggregators": ["CoinMarketCap", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0x03dde9e5bb31ee40a471476e2fccf75c67921062": { + "address": "0x03dde9e5bb31ee40a471476e2fccf75c67921062", + "symbol": "EML", + "decimals": 18, + "name": "EML Protocol", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x03dde9e5bb31ee40a471476e2fccf75c67921062.png", + "aggregators": ["CoinMarketCap", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0x4b7ffcb2b92fb4890f22f62a52fb7a180eab818e": { + "address": "0x4b7ffcb2b92fb4890f22f62a52fb7a180eab818e", + "symbol": "DIVA", + "decimals": 18, + "name": "DIVA Protocol", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x4b7ffcb2b92fb4890f22f62a52fb7a180eab818e.png", + "aggregators": ["CoinMarketCap", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0x8ed955a2b7d2c3a17a9d05daca95e01818f8c11e": { + "address": "0x8ed955a2b7d2c3a17a9d05daca95e01818f8c11e", + "symbol": "APFC", + "decimals": 18, + "name": "APF coin", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x8ed955a2b7d2c3a17a9d05daca95e01818f8c11e.png", + "aggregators": ["CoinMarketCap", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0x1e3778dd6dbfdc1c5b89f95f7c098b21e80ec4fa": { + "address": "0x1e3778dd6dbfdc1c5b89f95f7c098b21e80ec4fa", + "symbol": "VIC", + "decimals": 18, + "name": "Victory Impact", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x1e3778dd6dbfdc1c5b89f95f7c098b21e80ec4fa.png", + "aggregators": ["CoinMarketCap", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0x4f311c430540db1d64e635eb55f969f1660b2016": { + "address": "0x4f311c430540db1d64e635eb55f969f1660b2016", + "symbol": "PC", + "decimals": 9, + "name": "Pepe Chain", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x4f311c430540db1d64e635eb55f969f1660b2016.png", + "aggregators": ["CoinMarketCap", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0xcb50350ab555ed5d56265e096288536e8cac41eb": { + "address": "0xcb50350ab555ed5d56265e096288536e8cac41eb", + "symbol": "COCO", + "decimals": 18, + "name": "0xCoco", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xcb50350ab555ed5d56265e096288536e8cac41eb.png", + "aggregators": ["CoinMarketCap", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0xdd1b6b259986571a85da82a84f461e1c212591c0": { + "address": "0xdd1b6b259986571a85da82a84f461e1c212591c0", + "symbol": "BLAZEX", + "decimals": 9, + "name": "BlazeX", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xdd1b6b259986571a85da82a84f461e1c212591c0.png", + "aggregators": ["CoinMarketCap", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0xc47ef9b19c3e29317a50f5fbe594eba361dada4a": { + "address": "0xc47ef9b19c3e29317a50f5fbe594eba361dada4a", + "symbol": "EDLC", + "decimals": 6, + "name": "Edelcoin", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xc47ef9b19c3e29317a50f5fbe594eba361dada4a.png", + "aggregators": ["CoinMarketCap", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0x1063181dc986f76f7ea2dd109e16fc596d0f522a": { + "address": "0x1063181dc986f76f7ea2dd109e16fc596d0f522a", + "symbol": "CYBA", + "decimals": 9, + "name": "Cybria", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x1063181dc986f76f7ea2dd109e16fc596d0f522a.png", + "aggregators": ["CoinMarketCap", "Socket", "Rubic", "Sonarwatch"], + "occurrences": 4 + }, + "0x36737b4ac153c762d6a767056e1af7b17573a6b9": { + "address": "0x36737b4ac153c762d6a767056e1af7b17573a6b9", + "symbol": "GOLD", + "decimals": 9, + "name": "GOLD", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x36737b4ac153c762d6a767056e1af7b17573a6b9.png", + "aggregators": ["CoinMarketCap", "Socket", "Rubic", "Rango"], + "occurrences": 4 + }, + "0x8cc379a292a47cb8406fb1bd8a6d98f442275f0e": { + "address": "0x8cc379a292a47cb8406fb1bd8a6d98f442275f0e", + "symbol": "U", + "decimals": 18, + "name": "Uranium3o8", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x8cc379a292a47cb8406fb1bd8a6d98f442275f0e.png", + "aggregators": ["CoinMarketCap", "LiFi", "Rubic", "Rango"], + "occurrences": 4 + }, + "0x4e452b391a86c9240e98df7277ce0bea5be08e43": { + "address": "0x4e452b391a86c9240e98df7277ce0bea5be08e43", + "symbol": "PAXU", + "decimals": 18, + "name": "Pax Unitas", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x4e452b391a86c9240e98df7277ce0bea5be08e43.png", + "aggregators": ["CoinMarketCap", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0xb17d69c91135516b0256c67e8bd32cd238b56161": { + "address": "0xb17d69c91135516b0256c67e8bd32cd238b56161", + "symbol": "GRAVITAS", + "decimals": 9, + "name": "Gravitas", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xb17d69c91135516b0256c67e8bd32cd238b56161.png", + "aggregators": ["CoinMarketCap", "Socket", "Rubic", "Rango"], + "occurrences": 4 + }, + "0x85516e8862ab543ea15972b7809256efec0696ea": { + "address": "0x85516e8862ab543ea15972b7809256efec0696ea", + "symbol": "ROCK", + "decimals": 18, + "name": "ROCK", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x85516e8862ab543ea15972b7809256efec0696ea.png", + "aggregators": ["CoinMarketCap", "Socket", "Rubic", "Rango"], + "occurrences": 4 + }, + "0x2c540c3c7be7af98278dc6963e092cd450009d1f": { + "address": "0x2c540c3c7be7af98278dc6963e092cd450009d1f", + "symbol": "SPARKO", + "decimals": 18, + "name": "Sparko", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x2c540c3c7be7af98278dc6963e092cd450009d1f.png", + "aggregators": ["CoinMarketCap", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0x4eea762311be76f9071aa01058c047ad12a017a1": { + "address": "0x4eea762311be76f9071aa01058c047ad12a017a1", + "symbol": "GBURN", + "decimals": 18, + "name": "GBURN", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x4eea762311be76f9071aa01058c047ad12a017a1.png", + "aggregators": ["CoinMarketCap", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0xf327c89bf0769f0f2e99e50232557f03aad6cc17": { + "address": "0xf327c89bf0769f0f2e99e50232557f03aad6cc17", + "symbol": "PEIPEI", + "decimals": 18, + "name": "PEIPEI", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xf327c89bf0769f0f2e99e50232557f03aad6cc17.png", + "aggregators": ["CoinMarketCap", "Socket", "Rubic", "Rango"], + "occurrences": 4 + }, + "0x1a8b8e526d093476ac5c488a3ea057f8de9c0dee": { + "address": "0x1a8b8e526d093476ac5c488a3ea057f8de9c0dee", + "symbol": "JEFF", + "decimals": 18, + "name": "JEFFWorld Token", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x1a8b8e526d093476ac5c488a3ea057f8de9c0dee.png", + "aggregators": ["CoinMarketCap", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0x617ead3c59ded3ea1bb17881118cf310144b450f": { + "address": "0x617ead3c59ded3ea1bb17881118cf310144b450f", + "symbol": "TSC", + "decimals": 18, + "name": "The Secret Coin", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x617ead3c59ded3ea1bb17881118cf310144b450f.png", + "aggregators": ["CoinMarketCap", "Socket", "Rubic", "Rango"], + "occurrences": 4 + }, + "0xb244b3574a5627849fca2057e3854340def63071": { + "address": "0xb244b3574a5627849fca2057e3854340def63071", + "symbol": "VEIL", + "decimals": 18, + "name": "Veil Exchange", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xb244b3574a5627849fca2057e3854340def63071.png", + "aggregators": ["CoinMarketCap", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0x320ed4c7243e35a00f9ca30a1ae60929d15eae37": { + "address": "0x320ed4c7243e35a00f9ca30a1ae60929d15eae37", + "symbol": "BLOX", + "decimals": 18, + "name": "The Blox Project", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x320ed4c7243e35a00f9ca30a1ae60929d15eae37.png", + "aggregators": ["CoinMarketCap", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0x60927b83ddd2096f38f22a8a2d84cf863402d1a1": { + "address": "0x60927b83ddd2096f38f22a8a2d84cf863402d1a1", + "symbol": "MIND", + "decimals": 18, + "name": "Eternal AI", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x60927b83ddd2096f38f22a8a2d84cf863402d1a1.png", + "aggregators": ["CoinMarketCap", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0x12ed0641242e4c6c220e3ca8f616e9d5470ac99a": { + "address": "0x12ed0641242e4c6c220e3ca8f616e9d5470ac99a", + "symbol": "EARN", + "decimals": 18, + "name": "Earn Network", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x12ed0641242e4c6c220e3ca8f616e9d5470ac99a.png", + "aggregators": ["CoinMarketCap", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0xac506c7dc601500e997cad42ea446624ed40c743": { + "address": "0xac506c7dc601500e997cad42ea446624ed40c743", + "symbol": "XCEPT", + "decimals": 18, + "name": "XCeption", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xac506c7dc601500e997cad42ea446624ed40c743.png", + "aggregators": ["CoinMarketCap", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0x15f73a3ab443ee6ebf36c605c7868159ce5d028c": { + "address": "0x15f73a3ab443ee6ebf36c605c7868159ce5d028c", + "symbol": "SST", + "decimals": 9, + "name": "SmartsetToken", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x15f73a3ab443ee6ebf36c605c7868159ce5d028c.png", + "aggregators": ["CoinMarketCap", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0xd624e5c89466a15812c1d45ce1533be1f16c1702": { + "address": "0xd624e5c89466a15812c1d45ce1533be1f16c1702", + "symbol": "UBDN", + "decimals": 18, + "name": "UBD Network", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xd624e5c89466a15812c1d45ce1533be1f16c1702.png", + "aggregators": ["CoinMarketCap", "LiFi", "Rubic", "Rango"], + "occurrences": 4 + }, + "0xdefb0b264032e4e128b00d02b3fd0aa00331237b": { + "address": "0xdefb0b264032e4e128b00d02b3fd0aa00331237b", + "symbol": "BUDDHA", + "decimals": 18, + "name": "Buddha", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xdefb0b264032e4e128b00d02b3fd0aa00331237b.png", + "aggregators": ["CoinMarketCap", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0xa0cc4428fbb652c396f28dce8868b8743742a71c": { + "address": "0xa0cc4428fbb652c396f28dce8868b8743742a71c", + "symbol": "PAI", + "decimals": 18, + "name": "Purple AI", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xa0cc4428fbb652c396f28dce8868b8743742a71c.png", + "aggregators": ["CoinMarketCap", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0x40a32606a4ce9b4f350421642ebf65c052d5389b": { + "address": "0x40a32606a4ce9b4f350421642ebf65c052d5389b", + "symbol": "UP", + "decimals": 18, + "name": "TonUP", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x40a32606a4ce9b4f350421642ebf65c052d5389b.png", + "aggregators": ["CoinMarketCap", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0x0f5c78f152152dda52a2ea45b0a8c10733010748": { + "address": "0x0f5c78f152152dda52a2ea45b0a8c10733010748", + "symbol": "XOX", + "decimals": 18, + "name": "XOX Labs", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x0f5c78f152152dda52a2ea45b0a8c10733010748.png", + "aggregators": ["CoinMarketCap", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0x83d6c8c06ac276465e4c92e7ac8c23740f435140": { + "address": "0x83d6c8c06ac276465e4c92e7ac8c23740f435140", + "symbol": "HMX", + "decimals": 18, + "name": "HMX", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x83d6c8c06ac276465e4c92e7ac8c23740f435140.png", + "aggregators": ["CoinMarketCap", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0xc3f8143212871014b472ea83285af7f25928dee4": { + "address": "0xc3f8143212871014b472ea83285af7f25928dee4", + "symbol": "SOHOT", + "decimals": 9, + "name": "SOHOTRN", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xc3f8143212871014b472ea83285af7f25928dee4.png", + "aggregators": ["CoinMarketCap", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0x174c47d6a4e548ed2b7d369dc0ffb2e60a6ac0f8": { + "address": "0x174c47d6a4e548ed2b7d369dc0ffb2e60a6ac0f8", + "symbol": "AMU", + "decimals": 9, + "name": "Amulet Protocol", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x174c47d6a4e548ed2b7d369dc0ffb2e60a6ac0f8.png", + "aggregators": ["CoinMarketCap", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0xcefde37817da4fc51ddc24e3820ad316784ee04b": { + "address": "0xcefde37817da4fc51ddc24e3820ad316784ee04b", + "symbol": "SONA", + "decimals": 18, + "name": "Sonata Network", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xcefde37817da4fc51ddc24e3820ad316784ee04b.png", + "aggregators": ["CoinMarketCap", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0xc7937b44532bf4c0a1f0de3a46c79dddb6dd169d": { + "address": "0xc7937b44532bf4c0a1f0de3a46c79dddb6dd169d", + "symbol": "DN", + "decimals": 18, + "name": "Deez Nuts", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xc7937b44532bf4c0a1f0de3a46c79dddb6dd169d.png", + "aggregators": ["CoinMarketCap", "Rubic", "Rango", "SushiSwap"], + "occurrences": 4 + }, + "0xb39364b51d2c97b62b838bc5213b8627eb469101": { + "address": "0xb39364b51d2c97b62b838bc5213b8627eb469101", + "symbol": "SWOT", + "decimals": 18, + "name": "Swot AI", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xb39364b51d2c97b62b838bc5213b8627eb469101.png", + "aggregators": ["CoinMarketCap", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0xddcc69879e1d2376ce799051afa98c689f234cca": { + "address": "0xddcc69879e1d2376ce799051afa98c689f234cca", + "symbol": "SMRT", + "decimals": 18, + "name": "SmartMoney", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xddcc69879e1d2376ce799051afa98c689f234cca.png", + "aggregators": ["CoinMarketCap", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0xb533687ef77459093368c43e95f8df1c2b5a1f7a": { + "address": "0xb533687ef77459093368c43e95f8df1c2b5a1f7a", + "symbol": "ASG", + "decimals": 18, + "name": "Nekoverse City of Greed Anima Spirit G", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xb533687ef77459093368c43e95f8df1c2b5a1f7a.png", + "aggregators": ["CoinMarketCap", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0xe99379955b676d5a7ebe3f42f2b684796e48d437": { + "address": "0xe99379955b676d5a7ebe3f42f2b684796e48d437", + "symbol": "EGG", + "decimals": 18, + "name": "EGG ETH", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xe99379955b676d5a7ebe3f42f2b684796e48d437.png", + "aggregators": ["CoinMarketCap", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0x2f3d0d2317802a65faac6e4cd94067c37b4d4804": { + "address": "0x2f3d0d2317802a65faac6e4cd94067c37b4d4804", + "symbol": "DCARD", + "decimals": 9, + "name": "DECENTRACARD", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x2f3d0d2317802a65faac6e4cd94067c37b4d4804.png", + "aggregators": ["CoinMarketCap", "Socket", "Rubic", "Rango"], + "occurrences": 4 + }, + "0x312d43881860807fa04b193d69744d087fc3308a": { + "address": "0x312d43881860807fa04b193d69744d087fc3308a", + "symbol": "BD20", + "decimals": 18, + "name": "BRC 20 DEX", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x312d43881860807fa04b193d69744d087fc3308a.png", + "aggregators": ["CoinMarketCap", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0x5cc5e64ab764a0f1e97f23984e20fd4528356a6a": { + "address": "0x5cc5e64ab764a0f1e97f23984e20fd4528356a6a", + "symbol": "XRGB", + "decimals": 18, + "name": "XRGB", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x5cc5e64ab764a0f1e97f23984e20fd4528356a6a.png", + "aggregators": ["CoinMarketCap", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0x97effb790f2fbb701d88f89db4521348a2b77be8": { + "address": "0x97effb790f2fbb701d88f89db4521348a2b77be8", + "symbol": "CVG", + "decimals": 18, + "name": "Convergence Finance", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x97effb790f2fbb701d88f89db4521348a2b77be8.png", + "aggregators": ["CoinMarketCap", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0x3f57c35633cb29834bb7577ba8052eab90f52a02": { + "address": "0x3f57c35633cb29834bb7577ba8052eab90f52a02", + "symbol": "DFNDR", + "decimals": 18, + "name": "Defender Bot", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x3f57c35633cb29834bb7577ba8052eab90f52a02.png", + "aggregators": ["CoinMarketCap", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0x07e128e823d2b9b22edbda43820aa1a72de99613": { + "address": "0x07e128e823d2b9b22edbda43820aa1a72de99613", + "symbol": "HOSTAI", + "decimals": 18, + "name": "Host AI", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x07e128e823d2b9b22edbda43820aa1a72de99613.png", + "aggregators": ["CoinMarketCap", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0xe469699f617bfd0fbffcd575970d34c2cecffa9f": { + "address": "0xe469699f617bfd0fbffcd575970d34c2cecffa9f", + "symbol": "VUZZ", + "decimals": 9, + "name": "VuzzMind", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xe469699f617bfd0fbffcd575970d34c2cecffa9f.png", + "aggregators": ["CoinMarketCap", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0x07b701ac44aacb03d8bed42eb85ec38210bdf513": { + "address": "0x07b701ac44aacb03d8bed42eb85ec38210bdf513", + "symbol": "TAPROOT", + "decimals": 6, + "name": "Taproot", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x07b701ac44aacb03d8bed42eb85ec38210bdf513.png", + "aggregators": ["CoinMarketCap", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0x4c73c1c8c95de5674d53604b15d968485414cb32": { + "address": "0x4c73c1c8c95de5674d53604b15d968485414cb32", + "symbol": "BOOM", + "decimals": 18, + "name": "Bomb Shelter Inu", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x4c73c1c8c95de5674d53604b15d968485414cb32.png", + "aggregators": ["CoinMarketCap", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0xd561a593d9dd8b9a0e3a487dfb517c9371d6dda7": { + "address": "0xd561a593d9dd8b9a0e3a487dfb517c9371d6dda7", + "symbol": "MEOW", + "decimals": 18, + "name": "Meow Meme", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xd561a593d9dd8b9a0e3a487dfb517c9371d6dda7.png", + "aggregators": ["CoinMarketCap", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0xec12ba5ac0f259e9ac6fc9a3bc23a76ad2fde5d9": { + "address": "0xec12ba5ac0f259e9ac6fc9a3bc23a76ad2fde5d9", + "symbol": "HUGE", + "decimals": 18, + "name": "HugeWin", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xec12ba5ac0f259e9ac6fc9a3bc23a76ad2fde5d9.png", + "aggregators": ["CoinMarketCap", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0x1e354f9ab5bcc9fb981f31b794c5fe13f7a89218": { + "address": "0x1e354f9ab5bcc9fb981f31b794c5fe13f7a89218", + "symbol": "NTD", + "decimals": 18, + "name": "Neural Tensor Dynamics", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x1e354f9ab5bcc9fb981f31b794c5fe13f7a89218.png", + "aggregators": ["CoinMarketCap", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0x668d78571f124415581b38d32fa9a16f1aaa8417": { + "address": "0x668d78571f124415581b38d32fa9a16f1aaa8417", + "symbol": "1EX", + "decimals": 18, + "name": "1ex", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x668d78571f124415581b38d32fa9a16f1aaa8417.png", + "aggregators": ["CoinMarketCap", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0x87c22db324b8b0637c8f09d2670ae7777651dbb8": { + "address": "0x87c22db324b8b0637c8f09d2670ae7777651dbb8", + "symbol": "ISME", + "decimals": 18, + "name": "Root Protocol", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x87c22db324b8b0637c8f09d2670ae7777651dbb8.png", + "aggregators": ["CoinMarketCap", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0xf67366e83cc9b115ef8cca93baed1f03e6d3ca9a": { + "address": "0xf67366e83cc9b115ef8cca93baed1f03e6d3ca9a", + "symbol": "MVERSE", + "decimals": 18, + "name": "MindVerse", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xf67366e83cc9b115ef8cca93baed1f03e6d3ca9a.png", + "aggregators": ["CoinMarketCap", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0xc01b1979e2244dc94e67891df0af4f7885e57fd4": { + "address": "0xc01b1979e2244dc94e67891df0af4f7885e57fd4", + "symbol": "LAN", + "decimals": 18, + "name": "Lanify", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xc01b1979e2244dc94e67891df0af4f7885e57fd4.png", + "aggregators": ["CoinMarketCap", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0xe6f4a40156c9e8c7addda66848bbb99fdedecf84": { + "address": "0xe6f4a40156c9e8c7addda66848bbb99fdedecf84", + "symbol": "DETENSOR", + "decimals": 18, + "name": "DeTensor", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xe6f4a40156c9e8c7addda66848bbb99fdedecf84.png", + "aggregators": ["CoinMarketCap", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0xcdbb2498fa9e7b5849bed5d3661386d0ce2733b2": { + "address": "0xcdbb2498fa9e7b5849bed5d3661386d0ce2733b2", + "symbol": "FAI", + "decimals": 18, + "name": "FuturesAI", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xcdbb2498fa9e7b5849bed5d3661386d0ce2733b2.png", + "aggregators": ["CoinMarketCap", "Socket", "Rubic", "Rango"], + "occurrences": 4 + }, + "0x58c896fa6857a9d67d02bc264c2b04cea47e20e7": { + "address": "0x58c896fa6857a9d67d02bc264c2b04cea47e20e7", + "symbol": "GHUB", + "decimals": 9, + "name": "The GameHub", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x58c896fa6857a9d67d02bc264c2b04cea47e20e7.png", + "aggregators": ["CoinMarketCap", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0x607496f14918891594177c24a983e901c1896e63": { + "address": "0x607496f14918891594177c24a983e901c1896e63", + "symbol": "GOLDCAT", + "decimals": 9, + "name": "GOLD CAT", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x607496f14918891594177c24a983e901c1896e63.png", + "aggregators": ["CoinMarketCap", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0x622984873c958e00aa0f004cbdd2b5301cf0b132": { + "address": "0x622984873c958e00aa0f004cbdd2b5301cf0b132", + "symbol": "GAUSS", + "decimals": 9, + "name": "Gauss0x", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x622984873c958e00aa0f004cbdd2b5301cf0b132.png", + "aggregators": ["CoinMarketCap", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0x1131d427ecd794714ed00733ac0f851e904c8398": { + "address": "0x1131d427ecd794714ed00733ac0f851e904c8398", + "symbol": "GENAI", + "decimals": 18, + "name": "GenBox", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x1131d427ecd794714ed00733ac0f851e904c8398.png", + "aggregators": ["CoinMarketCap", "Socket", "Rubic", "Rango"], + "occurrences": 4 + }, + "0x2e1cb26689a0b8763d15ffe9d7b1c637cd9282d4": { + "address": "0x2e1cb26689a0b8763d15ffe9d7b1c637cd9282d4", + "symbol": "OPTA", + "decimals": 18, + "name": "OPTA Global", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x2e1cb26689a0b8763d15ffe9d7b1c637cd9282d4.png", + "aggregators": ["CoinMarketCap", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0x730bcbe5cdc1a3061dfe700774b7b8dd1d4173db": { + "address": "0x730bcbe5cdc1a3061dfe700774b7b8dd1d4173db", + "symbol": "WTF", + "decimals": 18, + "name": "DaVinci", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x730bcbe5cdc1a3061dfe700774b7b8dd1d4173db.png", + "aggregators": ["CoinMarketCap", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0xcfffcd2c6294bbb01ca55cbb4a281bdcf532c1ce": { + "address": "0xcfffcd2c6294bbb01ca55cbb4a281bdcf532c1ce", + "symbol": "DIAMOND", + "decimals": 9, + "name": "Diamond Inu", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xcfffcd2c6294bbb01ca55cbb4a281bdcf532c1ce.png", + "aggregators": ["CoinMarketCap", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0xa7f3508cfcf054cc9cf1440580b78784e07382db": { + "address": "0xa7f3508cfcf054cc9cf1440580b78784e07382db", + "symbol": "PAIRED", + "decimals": 18, + "name": "Paired", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xa7f3508cfcf054cc9cf1440580b78784e07382db.png", + "aggregators": ["CoinMarketCap", "Socket", "Rubic", "Rango"], + "occurrences": 4 + }, + "0xfc70cbb442d5c115ee1497d22b421b1f9bd9f3da": { + "address": "0xfc70cbb442d5c115ee1497d22b421b1f9bd9f3da", + "symbol": "BTRU", + "decimals": 18, + "name": "Biblical Truth", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xfc70cbb442d5c115ee1497d22b421b1f9bd9f3da.png", + "aggregators": ["CoinMarketCap", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0x0e7375c46a0552520ce6c976dc268ae1b341f45f": { + "address": "0x0e7375c46a0552520ce6c976dc268ae1b341f45f", + "symbol": "MTK", + "decimals": 18, + "name": "MetaToken", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x0e7375c46a0552520ce6c976dc268ae1b341f45f.png", + "aggregators": ["CoinMarketCap", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0x0a907b0bbff60702b29a36b19718d99253cfbd9f": { + "address": "0x0a907b0bbff60702b29a36b19718d99253cfbd9f", + "symbol": "QLIX", + "decimals": 18, + "name": "QLix", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x0a907b0bbff60702b29a36b19718d99253cfbd9f.png", + "aggregators": ["CoinMarketCap", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0xd722424cf94b583752dfc80c08e2531ab3b762dc": { + "address": "0xd722424cf94b583752dfc80c08e2531ab3b762dc", + "symbol": "HERE", + "decimals": 18, + "name": "SphereX Token", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xd722424cf94b583752dfc80c08e2531ab3b762dc.png", + "aggregators": ["CoinMarketCap", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0xb27782fdb56352a684686a852374ef20910457e2": { + "address": "0xb27782fdb56352a684686a852374ef20910457e2", + "symbol": "DSAI", + "decimals": 18, + "name": "DeSend Ai", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xb27782fdb56352a684686a852374ef20910457e2.png", + "aggregators": ["CoinMarketCap", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0x0632aff522a581b9ffdec2fc2b0e99245a917057": { + "address": "0x0632aff522a581b9ffdec2fc2b0e99245a917057", + "symbol": "CANDY", + "decimals": 18, + "name": "Andy s Cat", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x0632aff522a581b9ffdec2fc2b0e99245a917057.png", + "aggregators": ["CoinMarketCap", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0x80a88dc663fa256e34ecb5a47314702313b162a5": { + "address": "0x80a88dc663fa256e34ecb5a47314702313b162a5", + "symbol": "CYPEPE", + "decimals": 18, + "name": "CyPepe", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x80a88dc663fa256e34ecb5a47314702313b162a5.png", + "aggregators": ["CoinMarketCap", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0xd37ae8c16449e7ef858652e02555c51d2572552b": { + "address": "0xd37ae8c16449e7ef858652e02555c51d2572552b", + "symbol": "INSP", + "decimals": 18, + "name": "INSPAD", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xd37ae8c16449e7ef858652e02555c51d2572552b.png", + "aggregators": ["CoinMarketCap", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0xd2aa35f6d376a9f1cc391db157e3eeb08819479c": { + "address": "0xd2aa35f6d376a9f1cc391db157e3eeb08819479c", + "symbol": "BRAIN", + "decimals": 18, + "name": "BrAIngent", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xd2aa35f6d376a9f1cc391db157e3eeb08819479c.png", + "aggregators": ["CoinMarketCap", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0x6953f27db0701e22616e701dba91acc2e4b6deca": { + "address": "0x6953f27db0701e22616e701dba91acc2e4b6deca", + "symbol": "STAR", + "decimals": 18, + "name": "Starbot", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x6953f27db0701e22616e701dba91acc2e4b6deca.png", + "aggregators": ["CoinMarketCap", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0xa672b803e807ab9b7cb8514350523cd6d2e4d5cc": { + "address": "0xa672b803e807ab9b7cb8514350523cd6d2e4d5cc", + "symbol": "NIHAO", + "decimals": 9, + "name": "Nihao Coin", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xa672b803e807ab9b7cb8514350523cd6d2e4d5cc.png", + "aggregators": ["CoinMarketCap", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0x6873c95307e13beb58fb8fcddf9a99667655c9e4": { + "address": "0x6873c95307e13beb58fb8fcddf9a99667655c9e4", + "symbol": "ZKGUN", + "decimals": 18, + "name": "zkGUN", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x6873c95307e13beb58fb8fcddf9a99667655c9e4.png", + "aggregators": ["CoinMarketCap", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0xda8a1f5eccabc80c26ec9ab493715d5b9ce8fef9": { + "address": "0xda8a1f5eccabc80c26ec9ab493715d5b9ce8fef9", + "symbol": "BOOM", + "decimals": 18, + "name": "BOOM", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xda8a1f5eccabc80c26ec9ab493715d5b9ce8fef9.png", + "aggregators": ["CoinMarketCap", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0x9df03fba103491fffde4fbc5fea15efaa43c67a5": { + "address": "0x9df03fba103491fffde4fbc5fea15efaa43c67a5", + "symbol": "NFM", + "decimals": 18, + "name": "NFMart", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x9df03fba103491fffde4fbc5fea15efaa43c67a5.png", + "aggregators": ["CoinMarketCap", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0xd7fc610f6595b3aa6e24466b5ca166d10a0fbdcb": { + "address": "0xd7fc610f6595b3aa6e24466b5ca166d10a0fbdcb", + "symbol": "KERN", + "decimals": 18, + "name": "Kernel", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xd7fc610f6595b3aa6e24466b5ca166d10a0fbdcb.png", + "aggregators": ["CoinMarketCap", "Socket", "Rubic", "Rango"], + "occurrences": 4 + }, + "0x54b2b9e2f5418db7f8aad6ccb495a0d2a1418e82": { + "address": "0x54b2b9e2f5418db7f8aad6ccb495a0d2a1418e82", + "symbol": "BART", + "decimals": 18, + "name": "Ballswapper Accelerator Reflection Token", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x54b2b9e2f5418db7f8aad6ccb495a0d2a1418e82.png", + "aggregators": ["CoinMarketCap", "Socket", "Rubic", "Rango"], + "occurrences": 4 + }, + "0x6bec5f1c594af73202cd3e5c1f699d440959954c": { + "address": "0x6bec5f1c594af73202cd3e5c1f699d440959954c", + "symbol": "HFUN", + "decimals": 18, + "name": "Hold fun", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x6bec5f1c594af73202cd3e5c1f699d440959954c.png", + "aggregators": ["CoinMarketCap", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0xbbcc7c16d56fc3b0c0a9a2ced36c74bcf73e683e": { + "address": "0xbbcc7c16d56fc3b0c0a9a2ced36c74bcf73e683e", + "symbol": "BBCC", + "decimals": 18, + "name": "Bitcoin Black Credit Card", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xbbcc7c16d56fc3b0c0a9a2ced36c74bcf73e683e.png", + "aggregators": ["CoinMarketCap", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0x69000dfd5025e82f48eb28325a2b88a241182ced": { + "address": "0x69000dfd5025e82f48eb28325a2b88a241182ced", + "symbol": "ZAI", + "decimals": 18, + "name": "ZAI Stablecoin", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x69000dfd5025e82f48eb28325a2b88a241182ced.png", + "aggregators": ["CoinMarketCap", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0x8f2bf2f59cdf7be4aee71500b9419623202b8636": { + "address": "0x8f2bf2f59cdf7be4aee71500b9419623202b8636", + "symbol": "CHEF", + "decimals": 18, + "name": "Chefdotfun", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x8f2bf2f59cdf7be4aee71500b9419623202b8636.png", + "aggregators": ["CoinMarketCap", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0xcf01a5c02c9b9dd5bf73a5a56bcdbc9dca483d43": { + "address": "0xcf01a5c02c9b9dd5bf73a5a56bcdbc9dca483d43", + "symbol": "TRUMP", + "decimals": 18, + "name": "BOME TRUMP", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xcf01a5c02c9b9dd5bf73a5a56bcdbc9dca483d43.png", + "aggregators": ["CoinMarketCap", "LiFi", "Socket", "Rubic"], + "occurrences": 4 + }, + "0xa00453052a36d43a99ac1ca145dfe4a952ca33b8": { + "address": "0xa00453052a36d43a99ac1ca145dfe4a952ca33b8", + "symbol": "CATE", + "decimals": 9, + "name": "Cate", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xa00453052a36d43a99ac1ca145dfe4a952ca33b8.png", + "aggregators": ["CoinMarketCap", "Socket", "Rubic", "Rango"], + "occurrences": 4 + }, + "0xefb2beb3b6325855bc257bad9166bf2687c68cc1": { + "address": "0xefb2beb3b6325855bc257bad9166bf2687c68cc1", + "symbol": "MD", + "decimals": 18, + "name": "MetaDeck", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xefb2beb3b6325855bc257bad9166bf2687c68cc1.png", + "aggregators": ["CoinMarketCap", "Socket", "Rubic", "Rango"], + "occurrences": 4 + }, + "0xe07710cdcd1c9f0fb04bfd013f9854e4552671ce": { + "address": "0xe07710cdcd1c9f0fb04bfd013f9854e4552671ce", + "symbol": "U", + "decimals": 18, + "name": "U Coin", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xe07710cdcd1c9f0fb04bfd013f9854e4552671ce.png", + "aggregators": ["CoinMarketCap", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0x0bcc26e40d87873615e082c1b5df15e487f94737": { + "address": "0x0bcc26e40d87873615e082c1b5df15e487f94737", + "symbol": "SMETX", + "decimals": 18, + "name": "SpecialMetalX", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x0bcc26e40d87873615e082c1b5df15e487f94737.png", + "aggregators": ["CoinMarketCap", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0x2c3b62cdeab213ff58ad24fe8bbdf224c7f66dce": { + "address": "0x2c3b62cdeab213ff58ad24fe8bbdf224c7f66dce", + "symbol": "MSM", + "decimals": 18, + "name": "MusmeCoin", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x2c3b62cdeab213ff58ad24fe8bbdf224c7f66dce.png", + "aggregators": ["CoinMarketCap", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0x6a4402a535d74bd0c9cdb5ce2d51822fc9f6620e": { + "address": "0x6a4402a535d74bd0c9cdb5ce2d51822fc9f6620e", + "symbol": "TOMO", + "decimals": 18, + "name": "Tomo Cat", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x6a4402a535d74bd0c9cdb5ce2d51822fc9f6620e.png", + "aggregators": ["CoinMarketCap", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0x06904a21f2db805487fcbdc3b3fe9607daaa5d54": { + "address": "0x06904a21f2db805487fcbdc3b3fe9607daaa5d54", + "symbol": "MNRY", + "decimals": 18, + "name": "Moonray", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x06904a21f2db805487fcbdc3b3fe9607daaa5d54.png", + "aggregators": ["CoinMarketCap", "Socket", "Rubic", "Sonarwatch"], + "occurrences": 4 + }, + "0xd0e6d04c2f105344860d07912a857ad21204fc97": { + "address": "0xd0e6d04c2f105344860d07912a857ad21204fc97", + "symbol": "NEOT", + "decimals": 18, + "name": "NeoTech", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xd0e6d04c2f105344860d07912a857ad21204fc97.png", + "aggregators": ["CoinMarketCap", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0x49218282042072e054afdc90e552e832735f8316": { + "address": "0x49218282042072e054afdc90e552e832735f8316", + "symbol": "CRX", + "decimals": 18, + "name": "Cerebro", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x49218282042072e054afdc90e552e832735f8316.png", + "aggregators": ["CoinMarketCap", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0x77b1183e730275f6a8024ce53d54bcc12b368f60": { + "address": "0x77b1183e730275f6a8024ce53d54bcc12b368f60", + "symbol": "EZREZ", + "decimals": 18, + "name": "Renzo Restaked REZ", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x77b1183e730275f6a8024ce53d54bcc12b368f60.png", + "aggregators": ["CoinMarketCap", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0xe0396ef787f8b0385f0e73d30acf8b922b1761f1": { + "address": "0xe0396ef787f8b0385f0e73d30acf8b922b1761f1", + "symbol": "OCAI", + "decimals": 9, + "name": "OcNest AI", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xe0396ef787f8b0385f0e73d30acf8b922b1761f1.png", + "aggregators": ["CoinMarketCap", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0x3db6ba6ab6f95efed1a6e794cad492faaabf294d": { + "address": "0x3db6ba6ab6f95efed1a6e794cad492faaabf294d", + "symbol": "LTOOLD", + "decimals": 8, + "name": "LTO Network Token (old)", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x3db6ba6ab6f95efed1a6e794cad492faaabf294d.png", + "aggregators": ["Metamask", "LiFi", "Socket", "Rubic"], + "occurrences": 4 + }, + "0xbbc7f7a6aadac103769c66cbc69ab720f7f9eae3": { + "address": "0xbbc7f7a6aadac103769c66cbc69ab720f7f9eae3", + "symbol": "INX", + "decimals": 18, + "name": "INX Token", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xbbc7f7a6aadac103769c66cbc69ab720f7f9eae3.png", + "aggregators": ["Metamask", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0xde16ce60804a881e9f8c4ebb3824646edecd478d": { + "address": "0xde16ce60804a881e9f8c4ebb3824646edecd478d", + "symbol": "MCRT", + "decimals": 9, + "name": "MagicCraft", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xde16ce60804a881e9f8c4ebb3824646edecd478d.png", + "aggregators": ["Metamask", "Socket", "Rubic", "Rango"], + "occurrences": 4 + }, + "0xa17581a9e3356d9a858b789d68b4d866e593ae94": { + "address": "0xa17581a9e3356d9a858b789d68b4d866e593ae94", + "symbol": "CWETHV3", + "decimals": 18, + "name": "Compound WETH", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xa17581a9e3356d9a858b789d68b4d866e593ae94.png", + "aggregators": ["1inch", "Socket", "Rubic", "Rango"], + "occurrences": 4 + }, + "0x83f798e925bcd4017eb265844fddabb448f1707d": { + "address": "0x83f798e925bcd4017eb265844fddabb448f1707d", + "symbol": "YUSDT", + "decimals": 6, + "name": "iearn USDT", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x83f798e925bcd4017eb265844fddabb448f1707d.png", + "aggregators": ["1inch", "Socket", "Rubic", "Rango"], + "occurrences": 4 + }, + "0xc3d688b66703497daa19211eedff47f25384cdc3": { + "address": "0xc3d688b66703497daa19211eedff47f25384cdc3", + "symbol": "CUSDCV3", + "decimals": 6, + "name": "Compound USDC", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xc3d688b66703497daa19211eedff47f25384cdc3.png", + "aggregators": ["1inch", "Socket", "Rubic", "Rango"], + "occurrences": 4 + }, + "0x0c0d01abf3e6adfca0989ebba9d6e85dd58eab1e": { + "address": "0x0c0d01abf3e6adfca0989ebba9d6e85dd58eab1e", + "symbol": "AETHPYUSD", + "decimals": 6, + "name": "Aave Ethereum PYUSD", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x0c0d01abf3e6adfca0989ebba9d6e85dd58eab1e.png", + "aggregators": ["1inch", "LiFi", "Socket", "Rango"], + "occurrences": 4 + }, + "0x04aa51bbcb46541455ccf1b8bef2ebc5d3787ec9": { + "address": "0x04aa51bbcb46541455ccf1b8bef2ebc5d3787ec9", + "symbol": "YWTBC", + "decimals": 8, + "name": "iearn wBTC", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x04aa51bbcb46541455ccf1b8bef2ebc5d3787ec9.png", + "aggregators": ["1inch", "Socket", "Rubic", "Rango"], + "occurrences": 4 + }, + "0x50026ad58b338cf3eccc2b422deb8faa725f377f": { + "address": "0x50026ad58b338cf3eccc2b422deb8faa725f377f", + "symbol": "STEP", + "decimals": 8, + "name": "1Step.finance", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x50026ad58b338cf3eccc2b422deb8faa725f377f.png", + "aggregators": ["1inch", "Socket", "Rubic", "Rango"], + "occurrences": 4 + }, + "0xed30dd7e50edf3581ad970efc5d9379ce2614adb": { + "address": "0xed30dd7e50edf3581ad970efc5d9379ce2614adb", + "symbol": "ARCX", + "decimals": 18, + "name": "ARC Governance Token", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xed30dd7e50edf3581ad970efc5d9379ce2614adb.png", + "aggregators": ["1inch", "Socket", "Rubic", "Rango"], + "occurrences": 4 + }, + "0xcd91538b91b4ba7797d39a2f66e63810b50a33d0": { + "address": "0xcd91538b91b4ba7797d39a2f66e63810b50a33d0", + "symbol": "STABLEX", + "decimals": 18, + "name": "ARC STABLEx", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xcd91538b91b4ba7797d39a2f66e63810b50a33d0.png", + "aggregators": ["1inch", "Socket", "Rubic", "Rango"], + "occurrences": 4 + }, + "0x5b09a0371c1da44a8e24d36bf5deb1141a84d875": { + "address": "0x5b09a0371c1da44a8e24d36bf5deb1141a84d875", + "symbol": "MAD", + "decimals": 18, + "name": "MADToken", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x5b09a0371c1da44a8e24d36bf5deb1141a84d875.png", + "aggregators": ["1inch", "Rubic", "Rango", "Bancor"], + "occurrences": 4 + }, + "0x44564d0bd94343f72e3c8a0d22308b7fa71db0bb": { + "address": "0x44564d0bd94343f72e3c8a0d22308b7fa71db0bb", + "symbol": "BASK", + "decimals": 18, + "name": "BasketDAO Gov", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x44564d0bd94343f72e3c8a0d22308b7fa71db0bb.png", + "aggregators": ["1inch", "Rubic", "Rango", "SushiSwap"], + "occurrences": 4 + }, + "0xa3c4dc4a9ce2a6b40b57f25f8b50decc2c64dec2": { + "address": "0xa3c4dc4a9ce2a6b40b57f25f8b50decc2c64dec2", + "symbol": "SNFT", + "decimals": 18, + "name": "SeedSwap Token", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xa3c4dc4a9ce2a6b40b57f25f8b50decc2c64dec2.png", + "aggregators": ["1inch", "Socket", "Rubic", "Rango"], + "occurrences": 4 + }, + "0x9fa69536d1cda4a04cfb50688294de75b505a9ae": { + "address": "0x9fa69536d1cda4a04cfb50688294de75b505a9ae", + "symbol": "DERC", + "decimals": 18, + "name": "DeRace Token", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x9fa69536d1cda4a04cfb50688294de75b505a9ae.png", + "aggregators": ["1inch", "LiFi", "Rubic", "Rango"], + "occurrences": 4 + }, + "0x7d29a64504629172a429e64183d6673b9dacbfce": { + "address": "0x7d29a64504629172a429e64183d6673b9dacbfce", + "symbol": "VXV", + "decimals": 18, + "name": "VectorspaceAI", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x7d29a64504629172a429e64183d6673b9dacbfce.png", + "aggregators": ["1inch", "LiFi", "Rubic", "Rango"], + "occurrences": 4 + }, + "0x0e5c8c387c5eba2ecbc137ad012aed5fe729e251": { + "address": "0x0e5c8c387c5eba2ecbc137ad012aed5fe729e251", + "symbol": "RPG", + "decimals": 18, + "name": "Rangers Protocol Gas", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x0e5c8c387c5eba2ecbc137ad012aed5fe729e251.png", + "aggregators": ["1inch", "Socket", "Rubic", "Rango"], + "occurrences": 4 + }, + "0x82f9c5ad306bba1ad0de49bb5fa6f01bf61085ef": { + "address": "0x82f9c5ad306bba1ad0de49bb5fa6f01bf61085ef", + "symbol": "AETHFXS", + "decimals": 18, + "name": "Aave Ethereum FXS", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x82f9c5ad306bba1ad0de49bb5fa6f01bf61085ef.png", + "aggregators": ["1inch", "LiFi", "Socket", "Rango"], + "occurrences": 4 + }, + "0x322aa5f5be95644d6c36544b6c5061f072d16df5": { + "address": "0x322aa5f5be95644d6c36544b6c5061f072d16df5", + "symbol": "STATAETHWSTETH", + "decimals": 18, + "name": "Static Aave Ethereum wstETH", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x322aa5f5be95644d6c36544b6c5061f072d16df5.png", + "aggregators": ["1inch", "LiFi", "Socket", "Rango"], + "occurrences": 4 + }, + "0xee66abd4d0f9908a48e08ae354b0f425de3e237e": { + "address": "0xee66abd4d0f9908a48e08ae354b0f425de3e237e", + "symbol": "STATAETHFRAX", + "decimals": 18, + "name": "Static Aave Ethereum FRAX", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xee66abd4d0f9908a48e08ae354b0f425de3e237e.png", + "aggregators": ["1inch", "Socket", "Rubic", "Rango"], + "occurrences": 4 + }, + "0xe6354ed5bc4b393a5aad09f21c46e101e692d447": { + "address": "0xe6354ed5bc4b393a5aad09f21c46e101e692d447", + "symbol": "YUSDT", + "decimals": 6, + "name": "iearn USDT", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xe6354ed5bc4b393a5aad09f21c46e101e692d447.png", + "aggregators": ["1inch", "Socket", "Rubic", "Rango"], + "occurrences": 4 + }, + "0xbd6467a31899590474ce1e84f70594c53d628e46": { + "address": "0xbd6467a31899590474ce1e84f70594c53d628e46", + "symbol": "KAI", + "decimals": 18, + "name": "KAI", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xbd6467a31899590474ce1e84f70594c53d628e46.png", + "aggregators": ["LiFi", "Socket", "Rubic", "Rango"], + "occurrences": 4 + }, + "0xcbc1065255cbc3ab41a6868c22d1f1c573ab89fd": { + "address": "0xcbc1065255cbc3ab41a6868c22d1f1c573ab89fd", + "symbol": "CRETH2", + "decimals": 18, + "name": "Cream ETH 2", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xcbc1065255cbc3ab41a6868c22d1f1c573ab89fd.png", + "aggregators": ["LiFi", "Rubic", "Rango", "SushiSwap"], + "occurrences": 4 + }, + "0x5d3a4f62124498092ce665f865e0b38ff6f5fbea": { + "address": "0x5d3a4f62124498092ce665f865e0b38ff6f5fbea", + "symbol": "IDEA", + "decimals": 18, + "name": "Ideaology", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x5d3a4f62124498092ce665f865e0b38ff6f5fbea.png", + "aggregators": ["LiFi", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0xa44e5137293e855b1b7bc7e2c6f8cd796ffcb037": { + "address": "0xa44e5137293e855b1b7bc7e2c6f8cd796ffcb037", + "symbol": "SENT", + "decimals": 8, + "name": "SENTinel", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xa44e5137293e855b1b7bc7e2c6f8cd796ffcb037.png", + "aggregators": ["LiFi", "Socket", "Rubic", "Rango"], + "occurrences": 4 + }, + "0x48afbbd342f64ef8a9ab1c143719b63c2ad81710": { + "address": "0x48afbbd342f64ef8a9ab1c143719b63c2ad81710", + "symbol": "MPETH", + "decimals": 18, + "name": "mpETH", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x48afbbd342f64ef8a9ab1c143719b63c2ad81710.png", + "aggregators": ["LiFi", "Socket", "Rubic", "Rango"], + "occurrences": 4 + }, + "0x2b95a1dcc3d405535f9ed33c219ab38e8d7e0884": { + "address": "0x2b95a1dcc3d405535f9ed33c219ab38e8d7e0884", + "symbol": "ACRV", + "decimals": 18, + "name": "Aladdin cvxCRV", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x2b95a1dcc3d405535f9ed33c219ab38e8d7e0884.png", + "aggregators": ["LiFi", "Socket", "Rubic", "Rango"], + "occurrences": 4 + }, + "0xd341d1680eeee3255b8c4c75bcce7eb57f144dae": { + "address": "0xd341d1680eeee3255b8c4c75bcce7eb57f144dae", + "symbol": "ONG", + "decimals": 18, + "name": "onG", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xd341d1680eeee3255b8c4c75bcce7eb57f144dae.png", + "aggregators": ["LiFi", "Rubic", "Rango", "Bancor"], + "occurrences": 4 + }, + "0x6c05b8141cefb64502b6dfcaae7c77babbac18fa": { + "address": "0x6c05b8141cefb64502b6dfcaae7c77babbac18fa", + "symbol": "FU", + "decimals": 18, + "name": "FU Money", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x6c05b8141cefb64502b6dfcaae7c77babbac18fa.png", + "aggregators": ["LiFi", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0x0f17eeccc84739b9450c88de0429020e2dec05eb": { + "address": "0x0f17eeccc84739b9450c88de0429020e2dec05eb", + "symbol": "OTACON", + "decimals": 18, + "name": "Otacon AI", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x0f17eeccc84739b9450c88de0429020e2dec05eb.png", + "aggregators": ["LiFi", "Socket", "Rubic", "Rango"], + "occurrences": 4 + }, + "0x6a68de599e8e0b1856e322ce5bd11c5c3c79712b": { + "address": "0x6a68de599e8e0b1856e322ce5bd11c5c3c79712b", + "symbol": "IBY", + "decimals": 18, + "name": "I Bet You", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x6a68de599e8e0b1856e322ce5bd11c5c3c79712b.png", + "aggregators": ["LiFi", "Rubic", "Rango", "SushiSwap"], + "occurrences": 4 + }, + "0x1fee5588cb1de19c70b6ad5399152d8c643fae7b": { + "address": "0x1fee5588cb1de19c70b6ad5399152d8c643fae7b", + "symbol": "PHTK", + "decimals": 18, + "name": "PhunToken", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x1fee5588cb1de19c70b6ad5399152d8c643fae7b.png", + "aggregators": ["LiFi", "Socket", "Rubic", "Rango"], + "occurrences": 4 + }, + "0xc0134b5b924c2fca106efb33c45446c466fbe03e": { + "address": "0xc0134b5b924c2fca106efb33c45446c466fbe03e", + "symbol": "ALEPH", + "decimals": 18, + "name": "ALEPH", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xc0134b5b924c2fca106efb33c45446c466fbe03e.png", + "aggregators": ["LiFi", "Socket", "Rubic", "Rango"], + "occurrences": 4 + }, + "0x9ba60ba98413a60db4c651d4afe5c937bbd8044b": { + "address": "0x9ba60ba98413a60db4c651d4afe5c937bbd8044b", + "symbol": "YLA", + "decimals": 18, + "name": "Yearn Lazy Ape Index", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x9ba60ba98413a60db4c651d4afe5c937bbd8044b.png", + "aggregators": ["LiFi", "Rubic", "Rango", "SushiSwap"], + "occurrences": 4 + }, + "0xf073bac22dab7faf4a3dd6c6189a70d54110525c": { + "address": "0xf073bac22dab7faf4a3dd6c6189a70d54110525c", + "symbol": "INETH", + "decimals": 18, + "name": "Inception Restaked ETH", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xf073bac22dab7faf4a3dd6c6189a70d54110525c.png", + "aggregators": ["LiFi", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0xe1406825186d63980fd6e2ec61888f7b91c4bae4": { + "address": "0xe1406825186d63980fd6e2ec61888f7b91c4bae4", + "symbol": "VBTC", + "decimals": 18, + "name": "vBTC", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xe1406825186d63980fd6e2ec61888f7b91c4bae4.png", + "aggregators": ["LiFi", "Rubic", "Rango", "SushiSwap"], + "occurrences": 4 + }, + "0xd56dac73a4d6766464b38ec6d91eb45ce7457c44": { + "address": "0xd56dac73a4d6766464b38ec6d91eb45ce7457c44", + "symbol": "PAN", + "decimals": 18, + "name": "PAN", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xd56dac73a4d6766464b38ec6d91eb45ce7457c44.png", + "aggregators": ["LiFi", "Socket", "Rubic", "Rango"], + "occurrences": 4 + }, + "0x2a039b1d9bbdccbb91be28691b730ca893e5e743": { + "address": "0x2a039b1d9bbdccbb91be28691b730ca893e5e743", + "symbol": "RNB", + "decimals": 18, + "name": "Rentible", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x2a039b1d9bbdccbb91be28691b730ca893e5e743.png", + "aggregators": ["LiFi", "Socket", "Rubic", "Bancor"], + "occurrences": 4 + }, + "0x78da5799cf427fee11e9996982f4150ece7a99a7": { + "address": "0x78da5799cf427fee11e9996982f4150ece7a99a7", + "symbol": "RGUSD", + "decimals": 18, + "name": "rgUSD", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x78da5799cf427fee11e9996982f4150ece7a99a7.png", + "aggregators": ["LiFi", "Socket", "Rubic", "Rango"], + "occurrences": 4 + }, + "0x67b6d479c7bb412c54e03dca8e1bc6740ce6b99c": { + "address": "0x67b6d479c7bb412c54e03dca8e1bc6740ce6b99c", + "symbol": "KYL", + "decimals": 18, + "name": "Kylin", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x67b6d479c7bb412c54e03dca8e1bc6740ce6b99c.png", + "aggregators": ["TrustWallet", "Socket", "Rubic", "Rango"], + "occurrences": 4 + }, + "0x39b46b212bdf15b42b166779b9d1787a68b9d0c3": { + "address": "0x39b46b212bdf15b42b166779b9d1787a68b9d0c3", + "symbol": "DYP", + "decimals": 18, + "name": "Dypius", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x39b46b212bdf15b42b166779b9d1787a68b9d0c3.png", + "aggregators": ["Socket", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0x1bed97cbc3c24a4fb5c069c6e311a967386131f7": { + "address": "0x1bed97cbc3c24a4fb5c069c6e311a967386131f7", + "symbol": "YETH", + "decimals": 18, + "name": "Yearn Ether", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x1bed97cbc3c24a4fb5c069c6e311a967386131f7.png", + "aggregators": ["Socket", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0x8b802513d4aa6f349b197a4ea4c26563cd6fd5b2": { + "address": "0x8b802513d4aa6f349b197a4ea4c26563cd6fd5b2", + "symbol": "HIGHER", + "decimals": 18, + "name": "HIgher IMO", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x8b802513d4aa6f349b197a4ea4c26563cd6fd5b2.png", + "aggregators": ["Socket", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0x6dc469a3ef387ad9619df7774388ae26439ac8d4": { + "address": "0x6dc469a3ef387ad9619df7774388ae26439ac8d4", + "symbol": "PAPI", + "decimals": 9, + "name": "PAPI ETH", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x6dc469a3ef387ad9619df7774388ae26439ac8d4.png", + "aggregators": ["Socket", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0xbeef01060047522408756e0000a90ce195a70000": { + "address": "0xbeef01060047522408756e0000a90ce195a70000", + "symbol": "APTR", + "decimals": 6, + "name": "Aperture Finance", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xbeef01060047522408756e0000a90ce195a70000.png", + "aggregators": ["Socket", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0xc4bb7277a74678f053259cb1f96140347efbfd46": { + "address": "0xc4bb7277a74678f053259cb1f96140347efbfd46", + "symbol": "COC", + "decimals": 18, + "name": "Coin of the champions", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xc4bb7277a74678f053259cb1f96140347efbfd46.png", + "aggregators": ["Socket", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0xd4342a57ecf2fe7ffa37c33cb8f63b1500e575e6": { + "address": "0xd4342a57ecf2fe7ffa37c33cb8f63b1500e575e6", + "symbol": "APN", + "decimals": 18, + "name": "Apron", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xd4342a57ecf2fe7ffa37c33cb8f63b1500e575e6.png", + "aggregators": ["Socket", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0xe3dbc4f88eaa632ddf9708732e2832eeaa6688ab": { + "address": "0xe3dbc4f88eaa632ddf9708732e2832eeaa6688ab", + "symbol": "AIUS", + "decimals": 18, + "name": "Arbius", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xe3dbc4f88eaa632ddf9708732e2832eeaa6688ab.png", + "aggregators": ["Socket", "Rubic", "SushiSwap"], + "occurrences": 3 + }, + "0x8c282c35b5e1088bb208991c151182a782637699": { + "address": "0x8c282c35b5e1088bb208991c151182a782637699", + "symbol": "MONAI", + "decimals": 18, + "name": "Monai", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x8c282c35b5e1088bb208991c151182a782637699.png", + "aggregators": ["Socket", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0x28e67eb7aaa8f5dd9cb7be2b2e3dad6b25edb1ab": { + "address": "0x28e67eb7aaa8f5dd9cb7be2b2e3dad6b25edb1ab", + "symbol": "KEKE", + "decimals": 18, + "name": "Freaky KEKE", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x28e67eb7aaa8f5dd9cb7be2b2e3dad6b25edb1ab.png", + "aggregators": ["Socket", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0xe1e1e2dd585c0b10995c4ef292aa9a0795f95811": { + "address": "0xe1e1e2dd585c0b10995c4ef292aa9a0795f95811", + "symbol": "ELE", + "decimals": 18, + "name": "EigenElephant", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xe1e1e2dd585c0b10995c4ef292aa9a0795f95811.png", + "aggregators": ["Socket", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0xec56840be7c495cbf98c0157b458cd207ff85da1": { + "address": "0xec56840be7c495cbf98c0157b458cd207ff85da1", + "symbol": "WRUNI", + "decimals": 6, + "name": "Wrapped RUNI", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xec56840be7c495cbf98c0157b458cd207ff85da1.png", + "aggregators": ["Socket", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0x433fce7dfbec729a79999eaf056cb073b2153eba": { + "address": "0x433fce7dfbec729a79999eaf056cb073b2153eba", + "symbol": "CNW", + "decimals": 6, + "name": "CoinWealth", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x433fce7dfbec729a79999eaf056cb073b2153eba.png", + "aggregators": ["Socket", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0x888888ae2c4a298efd66d162ffc53b3f2a869888": { + "address": "0x888888ae2c4a298efd66d162ffc53b3f2a869888", + "symbol": "OMOCHI", + "decimals": 9, + "name": "Omochi the Frog", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x888888ae2c4a298efd66d162ffc53b3f2a869888.png", + "aggregators": ["Socket", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0xe0797ec1d0bb0bec541a82c5262c3b0f93f68bfe": { + "address": "0xe0797ec1d0bb0bec541a82c5262c3b0f93f68bfe", + "symbol": "JOKER", + "decimals": 15, + "name": "Joker", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xe0797ec1d0bb0bec541a82c5262c3b0f93f68bfe.png", + "aggregators": ["Socket", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0x4d67edef87a5ff910954899f4e5a0aaf107afd42": { + "address": "0x4d67edef87a5ff910954899f4e5a0aaf107afd42", + "symbol": "BLUESPARROW", + "decimals": 9, + "name": "BlueSparrow OLD", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x4d67edef87a5ff910954899f4e5a0aaf107afd42.png", + "aggregators": ["Socket", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0x755f57af4c14aabfe5fbc92b27b015dcdbd30c15": { + "address": "0x755f57af4c14aabfe5fbc92b27b015dcdbd30c15", + "symbol": "ACCORD", + "decimals": 18, + "name": "Accord AI", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x755f57af4c14aabfe5fbc92b27b015dcdbd30c15.png", + "aggregators": ["Socket", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0xbfde5ac4f5adb419a931a5bf64b0f3bb5a623d06": { + "address": "0xbfde5ac4f5adb419a931a5bf64b0f3bb5a623d06", + "symbol": "FLUX", + "decimals": 18, + "name": "Flux", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xbfde5ac4f5adb419a931a5bf64b0f3bb5a623d06.png", + "aggregators": ["Socket", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0xc135a4bbf0d5005f4db3b79b84e8861d22003752": { + "address": "0xc135a4bbf0d5005f4db3b79b84e8861d22003752", + "symbol": "TITAN", + "decimals": 9, + "name": "Titan", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xc135a4bbf0d5005f4db3b79b84e8861d22003752.png", + "aggregators": ["Socket", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0x044a3bad20573bbe5895b873ecbfd4e283bc9102": { + "address": "0x044a3bad20573bbe5895b873ecbfd4e283bc9102", + "symbol": "KND", + "decimals": 18, + "name": "Kindred", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x044a3bad20573bbe5895b873ecbfd4e283bc9102.png", + "aggregators": ["Socket", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0x320aebbdca1397f2e3c7f1e482e104a7d9ec97e4": { + "address": "0x320aebbdca1397f2e3c7f1e482e104a7d9ec97e4", + "symbol": "AYIN", + "decimals": 18, + "name": "Ayin", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x320aebbdca1397f2e3c7f1e482e104a7d9ec97e4.png", + "aggregators": ["Socket", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0x5972169d49654dda92af57d11d4362fa72c15b03": { + "address": "0x5972169d49654dda92af57d11d4362fa72c15b03", + "symbol": "ZGEN", + "decimals": 18, + "name": "Zegent AI", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x5972169d49654dda92af57d11d4362fa72c15b03.png", + "aggregators": ["Socket", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0x3abe404faa776d2a833d554a068ef1a58193f080": { + "address": "0x3abe404faa776d2a833d554a068ef1a58193f080", + "symbol": "KOZUE", + "decimals": 9, + "name": "Kozue", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x3abe404faa776d2a833d554a068ef1a58193f080.png", + "aggregators": ["Socket", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0xc289c2d57e2ba371f40d594705dbf9331a2da47d": { + "address": "0xc289c2d57e2ba371f40d594705dbf9331a2da47d", + "symbol": "LOLCAT", + "decimals": 9, + "name": "First Meme", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xc289c2d57e2ba371f40d594705dbf9331a2da47d.png", + "aggregators": ["Socket", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0xf5e63b4c9db61c35bb66462745f9a5e64604f0a9": { + "address": "0xf5e63b4c9db61c35bb66462745f9a5e64604f0a9", + "symbol": "LAPUTA", + "decimals": 9, + "name": "Ethereum Origins", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xf5e63b4c9db61c35bb66462745f9a5e64604f0a9.png", + "aggregators": ["Socket", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0x0c21638d4bcb88568f88bc84a50e317715f8de8a": { + "address": "0x0c21638d4bcb88568f88bc84a50e317715f8de8a", + "symbol": "GDX", + "decimals": 18, + "name": "GrokDogeX", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x0c21638d4bcb88568f88bc84a50e317715f8de8a.png", + "aggregators": ["Socket", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0x06576eb3b212d605b797dc15523d9dc9f4f66db4": { + "address": "0x06576eb3b212d605b797dc15523d9dc9f4f66db4", + "symbol": "TCP", + "decimals": 18, + "name": "The Crypto Prophecies", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x06576eb3b212d605b797dc15523d9dc9f4f66db4.png", + "aggregators": ["Socket", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0x68aae81b4241ffe03d3552d42a69940604fe28bf": { + "address": "0x68aae81b4241ffe03d3552d42a69940604fe28bf", + "symbol": "MUFFIN", + "decimals": 9, + "name": "Muffin", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x68aae81b4241ffe03d3552d42a69940604fe28bf.png", + "aggregators": ["Socket", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0xa13edd1a27ab4fb8982c033acb082cdb5f98b79b": { + "address": "0xa13edd1a27ab4fb8982c033acb082cdb5f98b79b", + "symbol": "DEW", + "decimals": 9, + "name": "doge in a memes world", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xa13edd1a27ab4fb8982c033acb082cdb5f98b79b.png", + "aggregators": ["Socket", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0x9bd69bc59118ce0fbce9b03551a765a779bd25cf": { + "address": "0x9bd69bc59118ce0fbce9b03551a765a779bd25cf", + "symbol": "ZKE", + "decimals": 18, + "name": "zkEra Finance", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x9bd69bc59118ce0fbce9b03551a765a779bd25cf.png", + "aggregators": ["Socket", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0xb49bf1dbdc567b997733093880734f030174474c": { + "address": "0xb49bf1dbdc567b997733093880734f030174474c", + "symbol": "FREEDOM", + "decimals": 18, + "name": "FREEDOM", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xb49bf1dbdc567b997733093880734f030174474c.png", + "aggregators": ["Socket", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0x2a762b4587197119539ca675f7c8b214cf9eda73": { + "address": "0x2a762b4587197119539ca675f7c8b214cf9eda73", + "symbol": "UNAI", + "decimals": 18, + "name": "Unknown AI", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x2a762b4587197119539ca675f7c8b214cf9eda73.png", + "aggregators": ["Socket", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0x1122b6a0e00dce0563082b6e2953f3a943855c1f": { + "address": "0x1122b6a0e00dce0563082b6e2953f3a943855c1f", + "symbol": "CENNZ", + "decimals": 18, + "name": "CENNZnet", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x1122b6a0e00dce0563082b6e2953f3a943855c1f.png", + "aggregators": ["Socket", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0x35f3bad2fcc8053869086885f7898a3d4309db4e": { + "address": "0x35f3bad2fcc8053869086885f7898a3d4309db4e", + "symbol": "EMBER", + "decimals": 18, + "name": "Ember Sword", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x35f3bad2fcc8053869086885f7898a3d4309db4e.png", + "aggregators": ["Socket", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0xb94acdf8662cd955f137e0c9c9fba535c87b57b4": { + "address": "0xb94acdf8662cd955f137e0c9c9fba535c87b57b4", + "symbol": "LISA", + "decimals": 18, + "name": "Mona Token", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xb94acdf8662cd955f137e0c9c9fba535c87b57b4.png", + "aggregators": ["Socket", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0x95392f142af1c12f6e39897ff9b09c599666b50c": { + "address": "0x95392f142af1c12f6e39897ff9b09c599666b50c", + "symbol": "BLOOD", + "decimals": 18, + "name": "Impostors Blood", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x95392f142af1c12f6e39897ff9b09c599666b50c.png", + "aggregators": ["Socket", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0xad5fe5b0b8ec8ff4565204990e4405b2da117d8e": { + "address": "0xad5fe5b0b8ec8ff4565204990e4405b2da117d8e", + "symbol": "TRXC", + "decimals": 0, + "name": "TronClassic", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xad5fe5b0b8ec8ff4565204990e4405b2da117d8e.png", + "aggregators": ["Socket", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0xe2311ae37502105b442bbef831e9b53c5d2e9b3b": { + "address": "0xe2311ae37502105b442bbef831e9b53c5d2e9b3b", + "symbol": "BANANA", + "decimals": 18, + "name": "Banana", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xe2311ae37502105b442bbef831e9b53c5d2e9b3b.png", + "aggregators": ["Socket", "Rubic", "Rango", "SushiSwap"], + "occurrences": 4 + }, + "0xe1c8d908f0e495cf6d8459547d1d28b72bf04bf2": { + "address": "0xe1c8d908f0e495cf6d8459547d1d28b72bf04bf2", + "symbol": "TSAI", + "decimals": 18, + "name": "TesseractAI", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xe1c8d908f0e495cf6d8459547d1d28b72bf04bf2.png", + "aggregators": ["Socket", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0x13063bed4bebbe542005e191c459d2cfa96b98e1": { + "address": "0x13063bed4bebbe542005e191c459d2cfa96b98e1", + "symbol": "IZUMI", + "decimals": 9, + "name": "Izumi chan", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x13063bed4bebbe542005e191c459d2cfa96b98e1.png", + "aggregators": ["Socket", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0xafe53eea0cfe20198328890b69107d5fd8159a77": { + "address": "0xafe53eea0cfe20198328890b69107d5fd8159a77", + "symbol": "X", + "decimals": 9, + "name": "XAI", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xafe53eea0cfe20198328890b69107d5fd8159a77.png", + "aggregators": ["Socket", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0xad78d154baec2e9b4e78182d02388981b5093f80": { + "address": "0xad78d154baec2e9b4e78182d02388981b5093f80", + "symbol": "SOY", + "decimals": 18, + "name": "Soyjak", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xad78d154baec2e9b4e78182d02388981b5093f80.png", + "aggregators": ["Socket", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0x34df29dd880e9fe2cec0f85f7658b75606fb2870": { + "address": "0x34df29dd880e9fe2cec0f85f7658b75606fb2870", + "symbol": "NAVYSEAL", + "decimals": 9, + "name": "Navy seal", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x34df29dd880e9fe2cec0f85f7658b75606fb2870.png", + "aggregators": ["Socket", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0x8baef8c9568c21b1a2b2fd048f8b4da835691fd0": { + "address": "0x8baef8c9568c21b1a2b2fd048f8b4da835691fd0", + "symbol": "USDZ", + "decimals": 18, + "name": "USD ZEE", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x8baef8c9568c21b1a2b2fd048f8b4da835691fd0.png", + "aggregators": ["Socket", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0x9f5e508182e1cbd23ea5ef65d1d6c342beb7d6d3": { + "address": "0x9f5e508182e1cbd23ea5ef65d1d6c342beb7d6d3", + "symbol": "JONES", + "decimals": 9, + "name": "JONES", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x9f5e508182e1cbd23ea5ef65d1d6c342beb7d6d3.png", + "aggregators": ["Socket", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0x4594cffbfc09bc5e7ecf1c2e1c1e24f0f7d29036": { + "address": "0x4594cffbfc09bc5e7ecf1c2e1c1e24f0f7d29036", + "symbol": "0KN", + "decimals": 18, + "name": "0 Knowledge Network", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x4594cffbfc09bc5e7ecf1c2e1c1e24f0f7d29036.png", + "aggregators": ["Socket", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0x7e877b99897d514da01bd1d177e693ec639961af": { + "address": "0x7e877b99897d514da01bd1d177e693ec639961af", + "symbol": "OGGY", + "decimals": 9, + "name": "Oggy Inu ETH", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x7e877b99897d514da01bd1d177e693ec639961af.png", + "aggregators": ["Socket", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0x7434a5066dc317fa5b4d31aaded5088b9c54d667": { + "address": "0x7434a5066dc317fa5b4d31aaded5088b9c54d667", + "symbol": "CULT", + "decimals": 18, + "name": "CULT", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x7434a5066dc317fa5b4d31aaded5088b9c54d667.png", + "aggregators": ["Socket", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0xff00644ca76def7a3f7501a281ffe45934aefbfe": { + "address": "0xff00644ca76def7a3f7501a281ffe45934aefbfe", + "symbol": "GANG", + "decimals": 9, + "name": "Shadow Wizard Money Gang", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xff00644ca76def7a3f7501a281ffe45934aefbfe.png", + "aggregators": ["Socket", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0xf3e66b03d098d0482be9cb3d6999787231a93ed9": { + "address": "0xf3e66b03d098d0482be9cb3d6999787231a93ed9", + "symbol": "PROMPTIDE", + "decimals": 9, + "name": "PromptIDE", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xf3e66b03d098d0482be9cb3d6999787231a93ed9.png", + "aggregators": ["Socket", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0x99cffb50aad37d17955253f3a4070556b5127a0b": { + "address": "0x99cffb50aad37d17955253f3a4070556b5127a0b", + "symbol": "MEGA", + "decimals": 18, + "name": "MEGALODON", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x99cffb50aad37d17955253f3a4070556b5127a0b.png", + "aggregators": ["Socket", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0xdb81f7b3f0b2baebd5009cddade5c9a9c82378bb": { + "address": "0xdb81f7b3f0b2baebd5009cddade5c9a9c82378bb", + "symbol": "JJ", + "decimals": 18, + "name": "Jjmoji", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xdb81f7b3f0b2baebd5009cddade5c9a9c82378bb.png", + "aggregators": ["Socket", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0xbcbda13bd60bc0e91745186e274d1445078d6b33": { + "address": "0xbcbda13bd60bc0e91745186e274d1445078d6b33", + "symbol": "FERRET", + "decimals": 18, + "name": "Ferret AI", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xbcbda13bd60bc0e91745186e274d1445078d6b33.png", + "aggregators": ["Socket", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0x0880164084017b8d49baa0a33f545ad55914e9fd": { + "address": "0x0880164084017b8d49baa0a33f545ad55914e9fd", + "symbol": "DTI", + "decimals": 9, + "name": "DT Inu", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x0880164084017b8d49baa0a33f545ad55914e9fd.png", + "aggregators": ["Socket", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0x40c3b81fb887016c0ad02436309c2b265d069a05": { + "address": "0x40c3b81fb887016c0ad02436309c2b265d069a05", + "symbol": "CTO", + "decimals": 18, + "name": "Chief Troll Officer", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x40c3b81fb887016c0ad02436309c2b265d069a05.png", + "aggregators": ["Socket", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0x46305b2ebcd92809d5fcef577c20c28a185af03c": { + "address": "0x46305b2ebcd92809d5fcef577c20c28a185af03c", + "symbol": "SHADOW", + "decimals": 18, + "name": "Shadowladys DN404", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x46305b2ebcd92809d5fcef577c20c28a185af03c.png", + "aggregators": ["Socket", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0xbb63a9b64a80e9338b8ea298c51765e57c4f159c": { + "address": "0xbb63a9b64a80e9338b8ea298c51765e57c4f159c", + "symbol": "PICA", + "decimals": 12, + "name": "Picasso", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xbb63a9b64a80e9338b8ea298c51765e57c4f159c.png", + "aggregators": ["Socket", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0x4f14ba78a51925ee934c373a2cf56b2d8da63f7f": { + "address": "0x4f14ba78a51925ee934c373a2cf56b2d8da63f7f", + "symbol": "EBIT", + "decimals": 18, + "name": "eBit", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x4f14ba78a51925ee934c373a2cf56b2d8da63f7f.png", + "aggregators": ["Socket", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0xbec771d15f7e67bc0bb4571c7eb409228cc6fef9": { + "address": "0xbec771d15f7e67bc0bb4571c7eb409228cc6fef9", + "symbol": "BRAI", + "decimals": 18, + "name": "BribeAI", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xbec771d15f7e67bc0bb4571c7eb409228cc6fef9.png", + "aggregators": ["Socket", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0x68d009f251ff3a271477f77acb704c3b0f32a0c0": { + "address": "0x68d009f251ff3a271477f77acb704c3b0f32a0c0", + "symbol": "CHAD", + "decimals": 18, + "name": "CHAD", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x68d009f251ff3a271477f77acb704c3b0f32a0c0.png", + "aggregators": ["Socket", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0xd78cb66b3affd27569782737fa5b842277e1add7": { + "address": "0xd78cb66b3affd27569782737fa5b842277e1add7", + "symbol": "GTROK", + "decimals": 9, + "name": "GTROK", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xd78cb66b3affd27569782737fa5b842277e1add7.png", + "aggregators": ["Socket", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0x78e3b2ee11950df78a35fd924e92fbb8d1403780": { + "address": "0x78e3b2ee11950df78a35fd924e92fbb8d1403780", + "symbol": "HELGA", + "decimals": 18, + "name": "Helga Inu", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x78e3b2ee11950df78a35fd924e92fbb8d1403780.png", + "aggregators": ["Socket", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0x122303734c898e9d233affc234271f04e42e77ad": { + "address": "0x122303734c898e9d233affc234271f04e42e77ad", + "symbol": "CAT", + "decimals": 18, + "name": "Maxwell the spinning cat", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x122303734c898e9d233affc234271f04e42e77ad.png", + "aggregators": ["Socket", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0xf857c938829c2a53557fb3fbb1c85d10a5227e03": { + "address": "0xf857c938829c2a53557fb3fbb1c85d10a5227e03", + "symbol": "ECL", + "decimals": 18, + "name": "ECL", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xf857c938829c2a53557fb3fbb1c85d10a5227e03.png", + "aggregators": ["Socket", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0x337c8a3f0cd0580b29e9ee5d7829645709c8f6d2": { + "address": "0x337c8a3f0cd0580b29e9ee5d7829645709c8f6d2", + "symbol": "BOBA", + "decimals": 9, + "name": "BOBA", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x337c8a3f0cd0580b29e9ee5d7829645709c8f6d2.png", + "aggregators": ["Socket", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0xb624960aaad05d433075a5c9e760adec26036934": { + "address": "0xb624960aaad05d433075a5c9e760adec26036934", + "symbol": "MONKE", + "decimals": 9, + "name": "Monke Coin", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xb624960aaad05d433075a5c9e760adec26036934.png", + "aggregators": ["Socket", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0x9749ac257e5c7ee59a87cd1a2e93fdb9678a64e6": { + "address": "0x9749ac257e5c7ee59a87cd1a2e93fdb9678a64e6", + "symbol": "RETARD", + "decimals": 18, + "name": "Retard Coin", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x9749ac257e5c7ee59a87cd1a2e93fdb9678a64e6.png", + "aggregators": ["Socket", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0xcf4c91ecafc43c9f382db723ba20b82efa852821": { + "address": "0xcf4c91ecafc43c9f382db723ba20b82efa852821", + "symbol": "TRUTH", + "decimals": 18, + "name": "Truth Inu", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xcf4c91ecafc43c9f382db723ba20b82efa852821.png", + "aggregators": ["Socket", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0xd59d7d2e955533fcd21641da8a70eae9624a3c49": { + "address": "0xd59d7d2e955533fcd21641da8a70eae9624a3c49", + "symbol": "MRING", + "decimals": 18, + "name": "MagicRing", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xd59d7d2e955533fcd21641da8a70eae9624a3c49.png", + "aggregators": ["Socket", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0xd749b369d361396286f8cc28a99dd3425ac05619": { + "address": "0xd749b369d361396286f8cc28a99dd3425ac05619", + "symbol": "BRETTEI", + "decimals": 18, + "name": "Brettei", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xd749b369d361396286f8cc28a99dd3425ac05619.png", + "aggregators": ["Socket", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0xa247c6d23c8c7d223420700d16d189cff9357f38": { + "address": "0xa247c6d23c8c7d223420700d16d189cff9357f38", + "symbol": "CHEESED", + "decimals": 9, + "name": "Cheesed", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xa247c6d23c8c7d223420700d16d189cff9357f38.png", + "aggregators": ["Socket", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0x29e9b047d506f75085533b7b7f53e8de6b43b86f": { + "address": "0x29e9b047d506f75085533b7b7f53e8de6b43b86f", + "symbol": "DOKEN", + "decimals": 9, + "name": "Hokkaido Ken", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x29e9b047d506f75085533b7b7f53e8de6b43b86f.png", + "aggregators": ["Socket", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0x724af984b63fd53fdedb5ded17063001e3afc3e5": { + "address": "0x724af984b63fd53fdedb5ded17063001e3afc3e5", + "symbol": "ROCK", + "decimals": 18, + "name": "ROCK", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x724af984b63fd53fdedb5ded17063001e3afc3e5.png", + "aggregators": ["Socket", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0xcf16287a869ac8397815aba9b8c962c0f18ba6ea": { + "address": "0xcf16287a869ac8397815aba9b8c962c0f18ba6ea", + "symbol": "VXR", + "decimals": 4, + "name": "Vox Royale", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xcf16287a869ac8397815aba9b8c962c0f18ba6ea.png", + "aggregators": ["Socket", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0xbfa7cb34879167e982206fabf6ced5e2ba5cd496": { + "address": "0xbfa7cb34879167e982206fabf6ced5e2ba5cd496", + "symbol": "SQUIRRY", + "decimals": 9, + "name": "Squirry", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xbfa7cb34879167e982206fabf6ced5e2ba5cd496.png", + "aggregators": ["Socket", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0x30303101104100c397c069e0642acac518420205": { + "address": "0x30303101104100c397c069e0642acac518420205", + "symbol": "PC", + "decimals": 9, + "name": "Playable Coin", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x30303101104100c397c069e0642acac518420205.png", + "aggregators": ["Socket", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0x0000bdaa645097ef80f9d475f341d0d107a45b3a": { + "address": "0x0000bdaa645097ef80f9d475f341d0d107a45b3a", + "symbol": "BRAINLET", + "decimals": 18, + "name": "BRAINLET", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x0000bdaa645097ef80f9d475f341d0d107a45b3a.png", + "aggregators": ["Socket", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0x7b0df1cd724ec34ec9bc4bd19749b01afb490761": { + "address": "0x7b0df1cd724ec34ec9bc4bd19749b01afb490761", + "symbol": "KOIN", + "decimals": 9, + "name": "Kittekoin", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x7b0df1cd724ec34ec9bc4bd19749b01afb490761.png", + "aggregators": ["Socket", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0xb39a0dae3c2afd1f3c55ad47d1c7a0bb6c1ca260": { + "address": "0xb39a0dae3c2afd1f3c55ad47d1c7a0bb6c1ca260", + "symbol": "UNREAL", + "decimals": 9, + "name": "Unreal AI", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xb39a0dae3c2afd1f3c55ad47d1c7a0bb6c1ca260.png", + "aggregators": ["Socket", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0x6db6fdb5182053eecec778afec95e0814172a474": { + "address": "0x6db6fdb5182053eecec778afec95e0814172a474", + "symbol": "FARM", + "decimals": 18, + "name": "TaxFarm ing", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x6db6fdb5182053eecec778afec95e0814172a474.png", + "aggregators": ["Socket", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0x27c78a7c10a0673c3509ccf63044aab92e09edac": { + "address": "0x27c78a7c10a0673c3509ccf63044aab92e09edac", + "symbol": "FLY", + "decimals": 18, + "name": "Butterfly Ai", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x27c78a7c10a0673c3509ccf63044aab92e09edac.png", + "aggregators": ["Socket", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0x1580bfe88f772116fd59b042189746af8f78f00d": { + "address": "0x1580bfe88f772116fd59b042189746af8f78f00d", + "symbol": "DEGEN", + "decimals": 18, + "name": "Degen Food", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x1580bfe88f772116fd59b042189746af8f78f00d.png", + "aggregators": ["Socket", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0xa426660830ed887a25c1c6158ca348038e1a37cb": { + "address": "0xa426660830ed887a25c1c6158ca348038e1a37cb", + "symbol": "CTO", + "decimals": 18, + "name": "Chief Troll Officer", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xa426660830ed887a25c1c6158ca348038e1a37cb.png", + "aggregators": ["Socket", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0x5a12975bf0158c9c3b23622f44917d113f31842d": { + "address": "0x5a12975bf0158c9c3b23622f44917d113f31842d", + "symbol": "KOMA", + "decimals": 9, + "name": "Komari", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x5a12975bf0158c9c3b23622f44917d113f31842d.png", + "aggregators": ["Socket", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0x93c2bd80cadcfeb541eb5af4052375bde8d6f24f": { + "address": "0x93c2bd80cadcfeb541eb5af4052375bde8d6f24f", + "symbol": "SASHA", + "decimals": 18, + "name": "Bitcoin Cat", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x93c2bd80cadcfeb541eb5af4052375bde8d6f24f.png", + "aggregators": ["Socket", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0x124386504d774979e1e9d2d19c6188391d7af8e3": { + "address": "0x124386504d774979e1e9d2d19c6188391d7af8e3", + "symbol": "HANABI", + "decimals": 9, + "name": "Hanabi chan", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x124386504d774979e1e9d2d19c6188391d7af8e3.png", + "aggregators": ["Socket", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0xaf8b894229bc800658ab0faf744e97c8c74c4321": { + "address": "0xaf8b894229bc800658ab0faf744e97c8c74c4321", + "symbol": "LEMON", + "decimals": 18, + "name": "Black Lemon AI", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xaf8b894229bc800658ab0faf744e97c8c74c4321.png", + "aggregators": ["Socket", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0x2bcbec0296cddda988ea88031e43fe247fa6d341": { + "address": "0x2bcbec0296cddda988ea88031e43fe247fa6d341", + "symbol": "MOOTUN", + "decimals": 9, + "name": "Moo Tun", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x2bcbec0296cddda988ea88031e43fe247fa6d341.png", + "aggregators": ["Socket", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0x46b7cb31a4a6375c69a6d0b9ed9261fb649adb83": { + "address": "0x46b7cb31a4a6375c69a6d0b9ed9261fb649adb83", + "symbol": "0XP", + "decimals": 9, + "name": "0xPrivacy", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x46b7cb31a4a6375c69a6d0b9ed9261fb649adb83.png", + "aggregators": ["Socket", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0x896c767371e2d2255f1c33301d29e5577a7aca11": { + "address": "0x896c767371e2d2255f1c33301d29e5577a7aca11", + "symbol": "BULLA", + "decimals": 9, + "name": "BULLA", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x896c767371e2d2255f1c33301d29e5577a7aca11.png", + "aggregators": ["Socket", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0xc0e10854ab40b2e59a5519c481161a090f1162a0": { + "address": "0xc0e10854ab40b2e59a5519c481161a090f1162a0", + "symbol": "CAIRO", + "decimals": 9, + "name": "Cairo", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xc0e10854ab40b2e59a5519c481161a090f1162a0.png", + "aggregators": ["Socket", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0x4a7c9897ae01ff08d6e3820507a6b967bdbffa29": { + "address": "0x4a7c9897ae01ff08d6e3820507a6b967bdbffa29", + "symbol": "WIZARD", + "decimals": 18, + "name": "Wizard Cat", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x4a7c9897ae01ff08d6e3820507a6b967bdbffa29.png", + "aggregators": ["Socket", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0x2ca9242c1810029efed539f1c60d68b63ad01bfc": { + "address": "0x2ca9242c1810029efed539f1c60d68b63ad01bfc", + "symbol": "ANVL", + "decimals": 18, + "name": "Anvil", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x2ca9242c1810029efed539f1c60d68b63ad01bfc.png", + "aggregators": ["Socket", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0x8b8f9419ed9fd8c168128bf05c5d5fe7b17fe11d": { + "address": "0x8b8f9419ed9fd8c168128bf05c5d5fe7b17fe11d", + "symbol": "MILO", + "decimals": 18, + "name": "Milo Token", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x8b8f9419ed9fd8c168128bf05c5d5fe7b17fe11d.png", + "aggregators": ["Socket", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0xd692cb29aa3958a7f5c583323be2990903a57977": { + "address": "0xd692cb29aa3958a7f5c583323be2990903a57977", + "symbol": "QUANT", + "decimals": 18, + "name": "QUANT", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xd692cb29aa3958a7f5c583323be2990903a57977.png", + "aggregators": ["Socket", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0x70054a18e57bd9e21e8b6361f6a8dfcd86cdc7d0": { + "address": "0x70054a18e57bd9e21e8b6361f6a8dfcd86cdc7d0", + "symbol": "TMNS", + "decimals": 9, + "name": "Terminus", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x70054a18e57bd9e21e8b6361f6a8dfcd86cdc7d0.png", + "aggregators": ["Socket", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0xd537e3fc08f6d966a0f024c924f358fb15ed2dd9": { + "address": "0xd537e3fc08f6d966a0f024c924f358fb15ed2dd9", + "symbol": "UHOSU", + "decimals": 9, + "name": "Uhosu", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xd537e3fc08f6d966a0f024c924f358fb15ed2dd9.png", + "aggregators": ["Socket", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0xde7e34ad87bfc5d5906f334661110eb438af718b": { + "address": "0xde7e34ad87bfc5d5906f334661110eb438af718b", + "symbol": "OF", + "decimals": 18, + "name": "OceanFund", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xde7e34ad87bfc5d5906f334661110eb438af718b.png", + "aggregators": ["Socket", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0xde0a515d133397d62eb3fcdfcc68ba4904ac49c0": { + "address": "0xde0a515d133397d62eb3fcdfcc68ba4904ac49c0", + "symbol": "SHNJ", + "decimals": 9, + "name": "Shinji", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xde0a515d133397d62eb3fcdfcc68ba4904ac49c0.png", + "aggregators": ["Socket", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0x37dba54fdc402aff647ce06c66972f5d662c326d": { + "address": "0x37dba54fdc402aff647ce06c66972f5d662c326d", + "symbol": "MELON", + "decimals": 18, + "name": "MELON", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x37dba54fdc402aff647ce06c66972f5d662c326d.png", + "aggregators": ["Socket", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0xf995771a957c19319a7d8d58b4082b049420340f": { + "address": "0xf995771a957c19319a7d8d58b4082b049420340f", + "symbol": "BONKI", + "decimals": 9, + "name": "BONK Inu", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xf995771a957c19319a7d8d58b4082b049420340f.png", + "aggregators": ["Socket", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0xcaeda9650ccd356af7776057a105f9e6ffe68213": { + "address": "0xcaeda9650ccd356af7776057a105f9e6ffe68213", + "symbol": "LOONG", + "decimals": 18, + "name": "Loong", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xcaeda9650ccd356af7776057a105f9e6ffe68213.png", + "aggregators": ["Socket", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0x561cf9121e89926c27fa1cfc78dfcc4c422937a4": { + "address": "0x561cf9121e89926c27fa1cfc78dfcc4c422937a4", + "symbol": "SQUID", + "decimals": 18, + "name": "Squid Game", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x561cf9121e89926c27fa1cfc78dfcc4c422937a4.png", + "aggregators": ["Socket", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0x249fc40d68a3a55dac335550b64c1a03b4c0ed72": { + "address": "0x249fc40d68a3a55dac335550b64c1a03b4c0ed72", + "symbol": "DINOSHI", + "decimals": 18, + "name": "DINOSHI", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x249fc40d68a3a55dac335550b64c1a03b4c0ed72.png", + "aggregators": ["Socket", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0x7f75aa2274273f4d41267a0e2cd6c9b96c5b7510": { + "address": "0x7f75aa2274273f4d41267a0e2cd6c9b96c5b7510", + "symbol": "POP", + "decimals": 18, + "name": "Proof of Pepe Art", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x7f75aa2274273f4d41267a0e2cd6c9b96c5b7510.png", + "aggregators": ["Socket", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0x0447d3454b25935eed47f65b4bd22b9b23be326a": { + "address": "0x0447d3454b25935eed47f65b4bd22b9b23be326a", + "symbol": "GEM", + "decimals": 18, + "name": "Opal", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x0447d3454b25935eed47f65b4bd22b9b23be326a.png", + "aggregators": ["Socket", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0xed11c9bcf69fdd2eefd9fe751bfca32f171d53ae": { + "address": "0xed11c9bcf69fdd2eefd9fe751bfca32f171d53ae", + "symbol": "KOIN", + "decimals": 8, + "name": "Koinos", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xed11c9bcf69fdd2eefd9fe751bfca32f171d53ae.png", + "aggregators": ["Socket", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0x46c0f8259c4e4d50320124e52f3040cb9e4d04c7": { + "address": "0x46c0f8259c4e4d50320124e52f3040cb9e4d04c7", + "symbol": "SHIELD", + "decimals": 18, + "name": "Chatter Shield", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x46c0f8259c4e4d50320124e52f3040cb9e4d04c7.png", + "aggregators": ["Socket", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0x963cd3e835d81ce8e4ae4836e654336dab4298e9": { + "address": "0x963cd3e835d81ce8e4ae4836e654336dab4298e9", + "symbol": "TUIT", + "decimals": 18, + "name": "Tuition Coin", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x963cd3e835d81ce8e4ae4836e654336dab4298e9.png", + "aggregators": ["Socket", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0x2fb3842189fc7a699d047d9e647474f27779331d": { + "address": "0x2fb3842189fc7a699d047d9e647474f27779331d", + "symbol": "PEPE", + "decimals": 18, + "name": "Pepe 2nd Chance", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x2fb3842189fc7a699d047d9e647474f27779331d.png", + "aggregators": ["Socket", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0xeec2e29ff5cd4cecea61de09e9f28fae74c70ddd": { + "address": "0xeec2e29ff5cd4cecea61de09e9f28fae74c70ddd", + "symbol": "AITT", + "decimals": 8, + "name": "Aittcoin", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xeec2e29ff5cd4cecea61de09e9f28fae74c70ddd.png", + "aggregators": ["Socket", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0x8854d278bdb3140c161bf011888d9dc7a5918e77": { + "address": "0x8854d278bdb3140c161bf011888d9dc7a5918e77", + "symbol": "YUGE", + "decimals": 9, + "name": "Yuge", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x8854d278bdb3140c161bf011888d9dc7a5918e77.png", + "aggregators": ["Socket", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0x100891bf73ba8274c234aa34621bc626ed6eca8e": { + "address": "0x100891bf73ba8274c234aa34621bc626ed6eca8e", + "symbol": "HACHI", + "decimals": 9, + "name": "HACHI KUN", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x100891bf73ba8274c234aa34621bc626ed6eca8e.png", + "aggregators": ["Socket", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0x435cbf7c09e01d6a07b9997770f7b9d1ab754020": { + "address": "0x435cbf7c09e01d6a07b9997770f7b9d1ab754020", + "symbol": "MAGIC", + "decimals": 9, + "name": "Magnificent 7777", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x435cbf7c09e01d6a07b9997770f7b9d1ab754020.png", + "aggregators": ["Socket", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0xca7af58da871736994ce360f51ec6cd28351a3df": { + "address": "0xca7af58da871736994ce360f51ec6cd28351a3df", + "symbol": "GATSBY", + "decimals": 18, + "name": "GATSBY", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xca7af58da871736994ce360f51ec6cd28351a3df.png", + "aggregators": ["Socket", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0x554fb3b6c1cf4a3cef49779ced321ca51c667d7d": { + "address": "0x554fb3b6c1cf4a3cef49779ced321ca51c667d7d", + "symbol": "ARATA", + "decimals": 18, + "name": "Arata AGI", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x554fb3b6c1cf4a3cef49779ced321ca51c667d7d.png", + "aggregators": ["Socket", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0x294d44386c9ff8c38659511297a2e08d829f9336": { + "address": "0x294d44386c9ff8c38659511297a2e08d829f9336", + "symbol": "ARMY", + "decimals": 18, + "name": "Army", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x294d44386c9ff8c38659511297a2e08d829f9336.png", + "aggregators": ["Socket", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0x6953dcedb9fdfa31fe630d3dd1e9bcf893060260": { + "address": "0x6953dcedb9fdfa31fe630d3dd1e9bcf893060260", + "symbol": "GOATSEUS", + "decimals": 18, + "name": "Goatseus Act II", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x6953dcedb9fdfa31fe630d3dd1e9bcf893060260.png", + "aggregators": ["Socket", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0x9b0e1c344141fb361b842d397df07174e1cdb988": { + "address": "0x9b0e1c344141fb361b842d397df07174e1cdb988", + "symbol": "EMOTI", + "decimals": 9, + "name": "EmotiCoin", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x9b0e1c344141fb361b842d397df07174e1cdb988.png", + "aggregators": ["Socket", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0x1e33dba7cd47e79c4385ba39442a693b910a0a8a": { + "address": "0x1e33dba7cd47e79c4385ba39442a693b910a0a8a", + "symbol": "CELO", + "decimals": 18, + "name": "Celo native", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x1e33dba7cd47e79c4385ba39442a693b910a0a8a.png", + "aggregators": ["Socket", "Rubic", "Rango", "SushiSwap"], + "occurrences": 4 + }, + "0x329cae8c175ac6773d5e79bd30624b953c68a308": { + "address": "0x329cae8c175ac6773d5e79bd30624b953c68a308", + "symbol": "MISTY", + "decimals": 18, + "name": "Misty Meets Pepe", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x329cae8c175ac6773d5e79bd30624b953c68a308.png", + "aggregators": ["Socket", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0xd76050f75627e508fa14b84036fbf40b8cc549bd": { + "address": "0xd76050f75627e508fa14b84036fbf40b8cc549bd", + "symbol": "SCRIV", + "decimals": 8, + "name": "SCRIV", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xd76050f75627e508fa14b84036fbf40b8cc549bd.png", + "aggregators": ["Socket", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0x6e068796ba34613eb9b285affe0283fef3f4d66f": { + "address": "0x6e068796ba34613eb9b285affe0283fef3f4d66f", + "symbol": "STEVE", + "decimals": 18, + "name": "Steve", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x6e068796ba34613eb9b285affe0283fef3f4d66f.png", + "aggregators": ["Socket", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0xa57ed6e54be8125bbe45d6ca330e45ebb71ef11e": { + "address": "0xa57ed6e54be8125bbe45d6ca330e45ebb71ef11e", + "symbol": "PEPE", + "decimals": 18, + "name": "NEWPEPE", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xa57ed6e54be8125bbe45d6ca330e45ebb71ef11e.png", + "aggregators": ["Socket", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0x3f98ee6644b2c68a800c08fefa97e6ecfbdba248": { + "address": "0x3f98ee6644b2c68a800c08fefa97e6ecfbdba248", + "symbol": "WHAT", + "decimals": 18, + "name": "WhatAI", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x3f98ee6644b2c68a800c08fefa97e6ecfbdba248.png", + "aggregators": ["Socket", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0xe46a1d19962ea120765d3139c588ffd617be04a8": { + "address": "0xe46a1d19962ea120765d3139c588ffd617be04a8", + "symbol": "EETH", + "decimals": 18, + "name": "EverETH", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xe46a1d19962ea120765d3139c588ffd617be04a8.png", + "aggregators": ["Socket", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0x520140d71129434635899eca07f845bb23b27987": { + "address": "0x520140d71129434635899eca07f845bb23b27987", + "symbol": "VIRTU", + "decimals": 18, + "name": "Virtu Network", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x520140d71129434635899eca07f845bb23b27987.png", + "aggregators": ["Socket", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0xb646c4fe0090bf6fdba226d3ccd8f775b30fdbb5": { + "address": "0xb646c4fe0090bf6fdba226d3ccd8f775b30fdbb5", + "symbol": "CULO", + "decimals": 18, + "name": "Culo ETH", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xb646c4fe0090bf6fdba226d3ccd8f775b30fdbb5.png", + "aggregators": ["Socket", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0x37f5ac1b0c1a07d19270983d6889c181a0a3d6f7": { + "address": "0x37f5ac1b0c1a07d19270983d6889c181a0a3d6f7", + "symbol": "KRON", + "decimals": 18, + "name": "Kronos Bot", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x37f5ac1b0c1a07d19270983d6889c181a0a3d6f7.png", + "aggregators": ["Socket", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0xb4c42d3ecb9cf5811e7cf21a81d0bf3fee21a6f3": { + "address": "0xb4c42d3ecb9cf5811e7cf21a81d0bf3fee21a6f3", + "symbol": "NWO", + "decimals": 9, + "name": "NEW WORLD ORDER", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xb4c42d3ecb9cf5811e7cf21a81d0bf3fee21a6f3.png", + "aggregators": ["Socket", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0xdc69c06e796ddbe2ca5e3d99f6fd8c40dfd9584a": { + "address": "0xdc69c06e796ddbe2ca5e3d99f6fd8c40dfd9584a", + "symbol": "DUCKEY", + "decimals": 9, + "name": "Duckey", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xdc69c06e796ddbe2ca5e3d99f6fd8c40dfd9584a.png", + "aggregators": ["Socket", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0xe657d49abae3ea21618bb481f1dab4322855f60e": { + "address": "0xe657d49abae3ea21618bb481f1dab4322855f60e", + "symbol": "RAINBOW", + "decimals": 18, + "name": "Rainbow", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xe657d49abae3ea21618bb481f1dab4322855f60e.png", + "aggregators": ["Socket", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0x000000000a1c6659ac226dbb1c5bdc648df72e9e": { + "address": "0x000000000a1c6659ac226dbb1c5bdc648df72e9e", + "symbol": "LOOTER", + "decimals": 18, + "name": "Looter", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x000000000a1c6659ac226dbb1c5bdc648df72e9e.png", + "aggregators": ["Socket", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0x1032abe2902a23ddcbab085c20e0e69c33ceb8fa": { + "address": "0x1032abe2902a23ddcbab085c20e0e69c33ceb8fa", + "symbol": "SNAKE", + "decimals": 18, + "name": "Pepe Predator", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x1032abe2902a23ddcbab085c20e0e69c33ceb8fa.png", + "aggregators": ["Socket", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0x4278a8944cf63753b13e9f726bbc1192412988d8": { + "address": "0x4278a8944cf63753b13e9f726bbc1192412988d8", + "symbol": "1984", + "decimals": 18, + "name": "1984", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x4278a8944cf63753b13e9f726bbc1192412988d8.png", + "aggregators": ["Socket", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0xc033f6932f71c6ff1de3177f90dff24b70e50618": { + "address": "0xc033f6932f71c6ff1de3177f90dff24b70e50618", + "symbol": "SANDY", + "decimals": 9, + "name": "SANDY", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xc033f6932f71c6ff1de3177f90dff24b70e50618.png", + "aggregators": ["Socket", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0x5fa3418d828e5cd3c61a66e0fc7fa4a35dadf960": { + "address": "0x5fa3418d828e5cd3c61a66e0fc7fa4a35dadf960", + "symbol": "AVATLY", + "decimals": 18, + "name": "Avatly", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x5fa3418d828e5cd3c61a66e0fc7fa4a35dadf960.png", + "aggregators": ["Socket", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0x352a4b34b8e9f43b869f6f80728978cccdced406": { + "address": "0x352a4b34b8e9f43b869f6f80728978cccdced406", + "symbol": "SDLX", + "decimals": 18, + "name": "SoundLinX", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x352a4b34b8e9f43b869f6f80728978cccdced406.png", + "aggregators": ["Socket", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0x382e57ca8e4c4db9649884ca77b0a355692d14ac": { + "address": "0x382e57ca8e4c4db9649884ca77b0a355692d14ac", + "symbol": "XYXYX", + "decimals": 18, + "name": "Xyxyx", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x382e57ca8e4c4db9649884ca77b0a355692d14ac.png", + "aggregators": ["Socket", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0x680c89c40de9d14aa608a1122363cad18783f837": { + "address": "0x680c89c40de9d14aa608a1122363cad18783f837", + "symbol": "EPIC", + "decimals": 18, + "name": "EPICBOTS", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x680c89c40de9d14aa608a1122363cad18783f837.png", + "aggregators": ["Socket", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0x3c1e2cce6af05d4adf0a9d40a64f1a3dbb47a7b0": { + "address": "0x3c1e2cce6af05d4adf0a9d40a64f1a3dbb47a7b0", + "symbol": "PIZZA", + "decimals": 18, + "name": "Pizza", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x3c1e2cce6af05d4adf0a9d40a64f1a3dbb47a7b0.png", + "aggregators": ["Socket", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0x31b2c59d760058cfe57e59472e7542f776d987fb": { + "address": "0x31b2c59d760058cfe57e59472e7542f776d987fb", + "symbol": "EDEN", + "decimals": 18, + "name": "EDEN", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x31b2c59d760058cfe57e59472e7542f776d987fb.png", + "aggregators": ["Socket", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0xb30240d48c05a4b950c470e2d6aefc9117a50624": { + "address": "0xb30240d48c05a4b950c470e2d6aefc9117a50624", + "symbol": "RUBY", + "decimals": 18, + "name": "Ruby Protocol", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xb30240d48c05a4b950c470e2d6aefc9117a50624.png", + "aggregators": ["Socket", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0xf23e25286b7abf0458746c098a847fdba3dd9633": { + "address": "0xf23e25286b7abf0458746c098a847fdba3dd9633", + "symbol": "HORUS", + "decimals": 9, + "name": "HORUS", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xf23e25286b7abf0458746c098a847fdba3dd9633.png", + "aggregators": ["Socket", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0x09d6f0f5a21f5be4f59e209747e2d07f50bc694c": { + "address": "0x09d6f0f5a21f5be4f59e209747e2d07f50bc694c", + "symbol": "NFTFI", + "decimals": 18, + "name": "NFTFI", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x09d6f0f5a21f5be4f59e209747e2d07f50bc694c.png", + "aggregators": ["Socket", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0xd00065a096ff5fbaeaec726cdef3414d2c8a5116": { + "address": "0xd00065a096ff5fbaeaec726cdef3414d2c8a5116", + "symbol": "MAGNUS", + "decimals": 9, + "name": "Emotional Support Dog", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xd00065a096ff5fbaeaec726cdef3414d2c8a5116.png", + "aggregators": ["Socket", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0x6e6b7adfc7db9feeb8896418ac3422966f65d0a5": { + "address": "0x6e6b7adfc7db9feeb8896418ac3422966f65d0a5", + "symbol": "NET", + "decimals": 18, + "name": "Nektar Network", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x6e6b7adfc7db9feeb8896418ac3422966f65d0a5.png", + "aggregators": ["Socket", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0xdb2f2bcce3efa95eda95a233af45f3e0d4f00e2a": { + "address": "0xdb2f2bcce3efa95eda95a233af45f3e0d4f00e2a", + "symbol": "AGS", + "decimals": 8, + "name": "Aegis", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xdb2f2bcce3efa95eda95a233af45f3e0d4f00e2a.png", + "aggregators": ["Socket", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0xbe56ab825fd35678a32dc35bc4eb17e238e1404f": { + "address": "0xbe56ab825fd35678a32dc35bc4eb17e238e1404f", + "symbol": "DIGITS", + "decimals": 18, + "name": "Digits DAO", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xbe56ab825fd35678a32dc35bc4eb17e238e1404f.png", + "aggregators": ["Socket", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0xf5264e1673c9365e7c5d4d1d8b440bbf131ff435": { + "address": "0xf5264e1673c9365e7c5d4d1d8b440bbf131ff435", + "symbol": "VITALEK", + "decimals": 18, + "name": "vitalek buteren", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xf5264e1673c9365e7c5d4d1d8b440bbf131ff435.png", + "aggregators": ["Socket", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0x5c2975269e74cb3a8514e5b800a1e66c694d4df8": { + "address": "0x5c2975269e74cb3a8514e5b800a1e66c694d4df8", + "symbol": "HER", + "decimals": 18, + "name": "Caroline", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x5c2975269e74cb3a8514e5b800a1e66c694d4df8.png", + "aggregators": ["Socket", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0x8bf30e9f44e5d068a9d0c20da22660997a532e33": { + "address": "0x8bf30e9f44e5d068a9d0c20da22660997a532e33", + "symbol": "GDAG", + "decimals": 18, + "name": "GhostDAG org", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x8bf30e9f44e5d068a9d0c20da22660997a532e33.png", + "aggregators": ["Socket", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0xf12ccd17759367cf139776710b47b00c43d1ac2b": { + "address": "0xf12ccd17759367cf139776710b47b00c43d1ac2b", + "symbol": "EMOJI", + "decimals": 9, + "name": "emoji ERC20", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xf12ccd17759367cf139776710b47b00c43d1ac2b.png", + "aggregators": ["Socket", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0x00000000e88649dd6aab90088ca25d772d4607d0": { + "address": "0x00000000e88649dd6aab90088ca25d772d4607d0", + "symbol": "UDW", + "decimals": 18, + "name": "Underworld", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x00000000e88649dd6aab90088ca25d772d4607d0.png", + "aggregators": ["Socket", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0xdf8ef8fef6fa5489d097652dedfb6617ce28a0d6": { + "address": "0xdf8ef8fef6fa5489d097652dedfb6617ce28a0d6", + "symbol": "DUMP", + "decimals": 18, + "name": "dump trade", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xdf8ef8fef6fa5489d097652dedfb6617ce28a0d6.png", + "aggregators": ["Socket", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0xab0ceb816ad51168ea61545316ee0b3387122243": { + "address": "0xab0ceb816ad51168ea61545316ee0b3387122243", + "symbol": "SPEC", + "decimals": 18, + "name": "Speculate DAO", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xab0ceb816ad51168ea61545316ee0b3387122243.png", + "aggregators": ["Socket", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0x3b24ed67481a80609af2f8913a45da2049547cfd": { + "address": "0x3b24ed67481a80609af2f8913a45da2049547cfd", + "symbol": "NODE", + "decimals": 18, + "name": "Nodez", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x3b24ed67481a80609af2f8913a45da2049547cfd.png", + "aggregators": ["Socket", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0xe27f31b020f95f90f0db2ae0a5fae3b505df7a3e": { + "address": "0xe27f31b020f95f90f0db2ae0a5fae3b505df7a3e", + "symbol": "STEALTH", + "decimals": 18, + "name": "Stealth AI", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xe27f31b020f95f90f0db2ae0a5fae3b505df7a3e.png", + "aggregators": ["Socket", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0x93d91003af5e6beffd574036f98d166c12ae6e32": { + "address": "0x93d91003af5e6beffd574036f98d166c12ae6e32", + "symbol": "REV", + "decimals": 9, + "name": "REV", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x93d91003af5e6beffd574036f98d166c12ae6e32.png", + "aggregators": ["Socket", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0x6d06426a477200c385843a9ac4d4fd55346f2b7b": { + "address": "0x6d06426a477200c385843a9ac4d4fd55346f2b7b", + "symbol": "GINNAN", + "decimals": 9, + "name": "Ginnan Neko", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x6d06426a477200c385843a9ac4d4fd55346f2b7b.png", + "aggregators": ["Socket", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0x0b1bd555adf860d4d51c9caba48d756e224451bf": { + "address": "0x0b1bd555adf860d4d51c9caba48d756e224451bf", + "symbol": "ESPORT", + "decimals": 18, + "name": "Esportplayer", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x0b1bd555adf860d4d51c9caba48d756e224451bf.png", + "aggregators": ["Socket", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0xbb8ecf8d1342e086c9a751ee1b31a8320007379f": { + "address": "0xbb8ecf8d1342e086c9a751ee1b31a8320007379f", + "symbol": "NXR", + "decimals": 18, + "name": "Nexara", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xbb8ecf8d1342e086c9a751ee1b31a8320007379f.png", + "aggregators": ["Socket", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0x8c41455aaa8d6aba3150058d4964349294bf78a3": { + "address": "0x8c41455aaa8d6aba3150058d4964349294bf78a3", + "symbol": "BULL", + "decimals": 9, + "name": "ETH BULL", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x8c41455aaa8d6aba3150058d4964349294bf78a3.png", + "aggregators": ["Socket", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0x3902d5f4213a6b8c434a470026e0c23709a5bb39": { + "address": "0x3902d5f4213a6b8c434a470026e0c23709a5bb39", + "symbol": "SCINET", + "decimals": 18, + "name": "SciNet", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x3902d5f4213a6b8c434a470026e0c23709a5bb39.png", + "aggregators": ["Socket", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0x544f7ba526dc4e835f674c585a478c142dd8cca1": { + "address": "0x544f7ba526dc4e835f674c585a478c142dd8cca1", + "symbol": "SFAI", + "decimals": 9, + "name": "SupportFi AI", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x544f7ba526dc4e835f674c585a478c142dd8cca1.png", + "aggregators": ["Socket", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0x8004c2935cbf88a318c0cf3a2f6458361d2f7015": { + "address": "0x8004c2935cbf88a318c0cf3a2f6458361d2f7015", + "symbol": "DRAFT", + "decimals": 18, + "name": "Draft", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x8004c2935cbf88a318c0cf3a2f6458361d2f7015.png", + "aggregators": ["Socket", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0xf59c6767dfb5aa9e908cb8d1831d02e53312e8ff": { + "address": "0xf59c6767dfb5aa9e908cb8d1831d02e53312e8ff", + "symbol": "EYZ", + "decimals": 18, + "name": "EyzoAI", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xf59c6767dfb5aa9e908cb8d1831d02e53312e8ff.png", + "aggregators": ["Socket", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0x2232f65655c7c41d8b6c8592da3a0e32586273ea": { + "address": "0x2232f65655c7c41d8b6c8592da3a0e32586273ea", + "symbol": "DRX", + "decimals": 9, + "name": "DREYERX NETWORK", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x2232f65655c7c41d8b6c8592da3a0e32586273ea.png", + "aggregators": ["Socket", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0x004f747a91e05d0e2fbe8bf3cd39cdb2bcfab02c": { + "address": "0x004f747a91e05d0e2fbe8bf3cd39cdb2bcfab02c", + "symbol": "TWEET", + "decimals": 18, + "name": "TWEET", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x004f747a91e05d0e2fbe8bf3cd39cdb2bcfab02c.png", + "aggregators": ["Socket", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0x3f962f6325e61b90bae9971f110863c4e67036e2": { + "address": "0x3f962f6325e61b90bae9971f110863c4e67036e2", + "symbol": "SQUARES", + "decimals": 18, + "name": "SquaresAI", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x3f962f6325e61b90bae9971f110863c4e67036e2.png", + "aggregators": ["Socket", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0xdaedbc924dbbccef96c25bb84806e794a4ff3140": { + "address": "0xdaedbc924dbbccef96c25bb84806e794a4ff3140", + "symbol": "BIO", + "decimals": 9, + "name": "Bionergy", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xdaedbc924dbbccef96c25bb84806e794a4ff3140.png", + "aggregators": ["Socket", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0x334bd3375fe5bb8aa003e0e6ce880abada57ac89": { + "address": "0x334bd3375fe5bb8aa003e0e6ce880abada57ac89", + "symbol": "MBERRY", + "decimals": 18, + "name": "MicroBerry", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x334bd3375fe5bb8aa003e0e6ce880abada57ac89.png", + "aggregators": ["Socket", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0x28e58ee9932697f610de907a279684d30c407ba9": { + "address": "0x28e58ee9932697f610de907a279684d30c407ba9", + "symbol": "DEPIN", + "decimals": 9, + "name": "Depinet", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x28e58ee9932697f610de907a279684d30c407ba9.png", + "aggregators": ["Socket", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0x5d19d39852bf99bc4344483cbce3c9ff8f026b43": { + "address": "0x5d19d39852bf99bc4344483cbce3c9ff8f026b43", + "symbol": "AURA", + "decimals": 9, + "name": "Aura AI", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x5d19d39852bf99bc4344483cbce3c9ff8f026b43.png", + "aggregators": ["Socket", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0xa79aceef0a240d651948fbecfa38966ad18b446d": { + "address": "0xa79aceef0a240d651948fbecfa38966ad18b446d", + "symbol": "SEDGE", + "decimals": 18, + "name": "Social Edge", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xa79aceef0a240d651948fbecfa38966ad18b446d.png", + "aggregators": ["Socket", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0x3b6564b5da73a41d3a66e6558a98fd0e9e1e77ad": { + "address": "0x3b6564b5da73a41d3a66e6558a98fd0e9e1e77ad", + "symbol": "UTS", + "decimals": 18, + "name": "Unitus", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x3b6564b5da73a41d3a66e6558a98fd0e9e1e77ad.png", + "aggregators": ["Socket", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0xffb032d971469fd358f11a4192c4e0b852df5190": { + "address": "0xffb032d971469fd358f11a4192c4e0b852df5190", + "symbol": "PEPETR", + "decimals": 9, + "name": "Pepe Treasure", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xffb032d971469fd358f11a4192c4e0b852df5190.png", + "aggregators": ["Socket", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0xdee6cdd28da9f51e3a8421395973894a884f3b2d": { + "address": "0xdee6cdd28da9f51e3a8421395973894a884f3b2d", + "symbol": "HOODRAT", + "decimals": 9, + "name": "Hoodrat", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xdee6cdd28da9f51e3a8421395973894a884f3b2d.png", + "aggregators": ["Socket", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0x938f2774e307a71882009a27e0e40e615415fe54": { + "address": "0x938f2774e307a71882009a27e0e40e615415fe54", + "symbol": "OPRV", + "decimals": 18, + "name": "Opriva AI", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x938f2774e307a71882009a27e0e40e615415fe54.png", + "aggregators": ["Socket", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0x8f66cf0f1db84f8ee2a46352409370a69ae4e059": { + "address": "0x8f66cf0f1db84f8ee2a46352409370a69ae4e059", + "symbol": "KHAMOO", + "decimals": 9, + "name": "Khamoo", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x8f66cf0f1db84f8ee2a46352409370a69ae4e059.png", + "aggregators": ["Socket", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0xa110260a67fbbb6226f563844eeaf29e8c018bb7": { + "address": "0xa110260a67fbbb6226f563844eeaf29e8c018bb7", + "symbol": "CHDD", + "decimals": 18, + "name": "CHEDDA", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xa110260a67fbbb6226f563844eeaf29e8c018bb7.png", + "aggregators": ["Socket", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0xd20523b39faf1d6e9023a4d6085f87b7b0de7926": { + "address": "0xd20523b39faf1d6e9023a4d6085f87b7b0de7926", + "symbol": "OATH", + "decimals": 18, + "name": "OATH", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xd20523b39faf1d6e9023a4d6085f87b7b0de7926.png", + "aggregators": ["Rubic", "Squid", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0x1db06f39c14d813d7b1ccb275a93f5b052de1cac": { + "address": "0x1db06f39c14d813d7b1ccb275a93f5b052de1cac", + "symbol": "XAV", + "decimals": 18, + "name": "Xave", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x1db06f39c14d813d7b1ccb275a93f5b052de1cac.png", + "aggregators": ["Rubic", "Squid", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0xb5b29320d2dde5ba5bafa1ebcd270052070483ec": { + "address": "0xb5b29320d2dde5ba5bafa1ebcd270052070483ec", + "symbol": "YIELDETH", + "decimals": 18, + "name": "YieldETH Sommelier", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xb5b29320d2dde5ba5bafa1ebcd270052070483ec.png", + "aggregators": ["Rubic", "Squid", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0xdcb2fa7eab2507613417bb9762efa73093fc6b65": { + "address": "0xdcb2fa7eab2507613417bb9762efa73093fc6b65", + "symbol": "UNV", + "decimals": 18, + "name": "Unvest", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xdcb2fa7eab2507613417bb9762efa73093fc6b65.png", + "aggregators": ["Rubic", "Squid", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0xc88f47067db2e25851317a2fdae73a22c0777c37": { + "address": "0xc88f47067db2e25851317a2fdae73a22c0777c37", + "symbol": "ONEBTC", + "decimals": 9, + "name": "oneBTC", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xc88f47067db2e25851317a2fdae73a22c0777c37.png", + "aggregators": ["Rubic", "Squid", "Rango", "SushiSwap"], + "occurrences": 4 + }, + "0x7c135549504245b5eae64fc0e99fa5ebabb8e35d": { + "address": "0x7c135549504245b5eae64fc0e99fa5ebabb8e35d", + "symbol": "FIDD", + "decimals": 18, + "name": "Fidelity Digital Dollar", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x7c135549504245b5eae64fc0e99fa5ebabb8e35d.png", + "aggregators": ["CoinMarketCap", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x8e4cbbcc33db6c0a18561fde1f6ba35906d4848b": { + "address": "0x8e4cbbcc33db6c0a18561fde1f6ba35906d4848b", + "symbol": "MEZO", + "decimals": 18, + "name": "Mezo", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x8e4cbbcc33db6c0a18561fde1f6ba35906d4848b.png", + "aggregators": ["CoinMarketCap", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x6f59e0461ae5e2799f1fb3847f05a63b16d0dbf8": { + "address": "0x6f59e0461ae5e2799f1fb3847f05a63b16d0dbf8", + "symbol": "ORCA", + "decimals": 18, + "name": "ORCA Token", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x6f59e0461ae5e2799f1fb3847f05a63b16d0dbf8.png", + "aggregators": ["OpenSwap", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x4be40bc9681d0a7c24a99b4c92f85b9053fc2a45": { + "address": "0x4be40bc9681d0a7c24a99b4c92f85b9053fc2a45", + "symbol": "YFIII", + "decimals": 18, + "name": "YFIII", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x4be40bc9681d0a7c24a99b4c92f85b9053fc2a45.png", + "aggregators": ["CoinMarketCap", "Rubic", "Rango"], + "occurrences": 3 + }, + "0xd04785c4d8195e4a54d9dec3a9043872875ae9e2": { + "address": "0xd04785c4d8195e4a54d9dec3a9043872875ae9e2", + "symbol": "ROT", + "decimals": 18, + "name": "ROT", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xd04785c4d8195e4a54d9dec3a9043872875ae9e2.png", + "aggregators": ["CoinMarketCap", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x492798fb464e77cb3cda62b9a2c3c65162db198e": { + "address": "0x492798fb464e77cb3cda62b9a2c3c65162db198e", + "symbol": "AGG", + "decimals": 18, + "name": "AmpliFi DAO", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x492798fb464e77cb3cda62b9a2c3c65162db198e.png", + "aggregators": ["CoinMarketCap", "Rubic", "Sonarwatch"], + "occurrences": 3 + }, + "0x62d3c05b9c3d916fbc111819bbd3cee52906c1ae": { + "address": "0x62d3c05b9c3d916fbc111819bbd3cee52906c1ae", + "symbol": "EGAME", + "decimals": 18, + "name": "Every Game", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x62d3c05b9c3d916fbc111819bbd3cee52906c1ae.png", + "aggregators": ["CoinMarketCap", "Rubic", "Sonarwatch"], + "occurrences": 3 + }, + "0xa6089dbfed19d1bcd43146bbdca2b8f9d9f84a9a": { + "address": "0xa6089dbfed19d1bcd43146bbdca2b8f9d9f84a9a", + "symbol": "UGOLD", + "decimals": 18, + "name": "UGOLD Inc", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xa6089dbfed19d1bcd43146bbdca2b8f9d9f84a9a.png", + "aggregators": ["CoinGecko", "Rubic", "Sonarwatch"], + "occurrences": 3 + }, + "0x87c22615435998d69aca34889d03155b694a94fc": { + "address": "0x87c22615435998d69aca34889d03155b694a94fc", + "symbol": "DLB", + "decimals": 18, + "name": "DiemLibre", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x87c22615435998d69aca34889d03155b694a94fc.png", + "aggregators": ["Metamask", "Rubic", "Rango"], + "occurrences": 3 + }, + "0xb62e24b747eaa41454857cf6011832117df59cb8": { + "address": "0xb62e24b747eaa41454857cf6011832117df59cb8", + "symbol": "EPIKO", + "decimals": 18, + "name": "Epiko", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xb62e24b747eaa41454857cf6011832117df59cb8.png", + "aggregators": ["CoinMarketCap", "Rubic", "Rango"], + "occurrences": 3 + }, + "0xfd957f21bd95e723645c07c48a2d8acb8ffb3794": { + "address": "0xfd957f21bd95e723645c07c48a2d8acb8ffb3794", + "symbol": "ETHM", + "decimals": 18, + "name": "Ethereum Meta", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xfd957f21bd95e723645c07c48a2d8acb8ffb3794.png", + "aggregators": ["CoinGecko", "Socket", "Sonarwatch"], + "occurrences": 3 + }, + "0x46f84dc6564cdd93922f7bfb88b03d35308d87c9": { + "address": "0x46f84dc6564cdd93922f7bfb88b03d35308d87c9", + "symbol": "WVENOM", + "decimals": 9, + "name": "WVENOM", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x46f84dc6564cdd93922f7bfb88b03d35308d87c9.png", + "aggregators": ["CoinMarketCap", "Rubic", "Rango"], + "occurrences": 3 + }, + "0xa3eb7a9e57fca4e40b79e394ed5eb37fed205a24": { + "address": "0xa3eb7a9e57fca4e40b79e394ed5eb37fed205a24", + "symbol": "BFUSD", + "decimals": 6, + "name": "BFUSD", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xa3eb7a9e57fca4e40b79e394ed5eb37fed205a24.png", + "aggregators": ["CoinGecko", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x07041776f5007aca2a54844f50503a18a72a8b68": { + "address": "0x07041776f5007aca2a54844f50503a18a72a8b68", + "symbol": "USAT", + "decimals": 6, + "name": "USAT", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x07041776f5007aca2a54844f50503a18a72a8b68.png", + "aggregators": ["CoinMarketCap", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x0affa06e7fbe5bc9a764c979aa66e8256a631f02": { + "address": "0x0affa06e7fbe5bc9a764c979aa66e8256a631f02", + "symbol": "PLBT", + "decimals": 6, + "name": "Polybius Token", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x0affa06e7fbe5bc9a764c979aa66e8256a631f02.png", + "aggregators": ["CoinMarketCap", "LiFi", "Rubic"], + "occurrences": 3 + }, + "0x51db5ad35c671a87207d88fc11d593ac0c8415bd": { + "address": "0x51db5ad35c671a87207d88fc11d593ac0c8415bd", + "symbol": "MDA", + "decimals": 18, + "name": "Moeda Loyalty Points", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x51db5ad35c671a87207d88fc11d593ac0c8415bd.png", + "aggregators": ["CoinMarketCap", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x7d4b8cce0591c9044a22ee543533b72e976e36c3": { + "address": "0x7d4b8cce0591c9044a22ee543533b72e976e36c3", + "symbol": "CAG", + "decimals": 18, + "name": "Change", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x7d4b8cce0591c9044a22ee543533b72e976e36c3.png", + "aggregators": ["Metamask", "Rubic", "Rango"], + "occurrences": 3 + }, + "0xf34960d9d60be18cc1d5afc1a6f012a723a28811": { + "address": "0xf34960d9d60be18cc1d5afc1a6f012a723a28811", + "symbol": "KCS", + "decimals": 6, + "name": "KuCoin Token", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xf34960d9d60be18cc1d5afc1a6f012a723a28811.png", + "aggregators": ["CoinMarketCap", "Rubic", "Squid"], + "occurrences": 3 + }, + "0x1500205f50bf3fd976466d0662905c9ff254fc9c": { + "address": "0x1500205f50bf3fd976466d0662905c9ff254fc9c", + "symbol": "BBT", + "decimals": 4, + "name": "BitBoost Tokens", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x1500205f50bf3fd976466d0662905c9ff254fc9c.png", + "aggregators": ["CoinMarketCap", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x66186008c1050627f979d464eabb258860563dbe": { + "address": "0x66186008c1050627f979d464eabb258860563dbe", + "symbol": "MDS", + "decimals": 18, + "name": "MediShares Token", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x66186008c1050627f979d464eabb258860563dbe.png", + "aggregators": ["CoinMarketCap", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x6ec8a24cabdc339a06a172f8223ea557055adaa5": { + "address": "0x6ec8a24cabdc339a06a172f8223ea557055adaa5", + "symbol": "GNX", + "decimals": 9, + "name": "Genaro Network", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x6ec8a24cabdc339a06a172f8223ea557055adaa5.png", + "aggregators": ["CoinMarketCap", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x107c4504cd79c5d2696ea0030a8dd4e92601b82e": { + "address": "0x107c4504cd79c5d2696ea0030a8dd4e92601b82e", + "symbol": "BLT", + "decimals": 18, + "name": "Bloom", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x107c4504cd79c5d2696ea0030a8dd4e92601b82e.png", + "aggregators": ["CoinMarketCap", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x1d462414fe14cf489c7a21cac78509f4bf8cd7c0": { + "address": "0x1d462414fe14cf489c7a21cac78509f4bf8cd7c0", + "symbol": "CAN", + "decimals": 6, + "name": "CanYaCoin", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x1d462414fe14cf489c7a21cac78509f4bf8cd7c0.png", + "aggregators": ["Metamask", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x1a7a8bd9106f2b8d977e08582dc7d24c723ab0db": { + "address": "0x1a7a8bd9106f2b8d977e08582dc7d24c723ab0db", + "symbol": "APPC", + "decimals": 18, + "name": "AppCoins", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x1a7a8bd9106f2b8d977e08582dc7d24c723ab0db.png", + "aggregators": ["Metamask", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x1063ce524265d5a3a624f4914acd573dd89ce988": { + "address": "0x1063ce524265d5a3a624f4914acd573dd89ce988", + "symbol": "AIX", + "decimals": 18, + "name": "Aigang", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x1063ce524265d5a3a624f4914acd573dd89ce988.png", + "aggregators": ["CoinMarketCap", "Rubic", "Bancor"], + "occurrences": 3 + }, + "0x1cf3e03f7360288dd01d0a9cfab266cfcdb3e0c1": { + "address": "0x1cf3e03f7360288dd01d0a9cfab266cfcdb3e0c1", + "symbol": "EKO", + "decimals": 18, + "name": "EchoLinkV2", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x1cf3e03f7360288dd01d0a9cfab266cfcdb3e0c1.png", + "aggregators": ["CoinMarketCap", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x89303500a7abfb178b274fd89f2469c264951e1f": { + "address": "0x89303500a7abfb178b274fd89f2469c264951e1f", + "symbol": "REF", + "decimals": 8, + "name": "RefToken", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x89303500a7abfb178b274fd89f2469c264951e1f.png", + "aggregators": ["CoinMarketCap", "Rubic", "Bancor"], + "occurrences": 3 + }, + "0x3136ef851592acf49ca4c825131e364170fa32b3": { + "address": "0x3136ef851592acf49ca4c825131e364170fa32b3", + "symbol": "COFI", + "decimals": 18, + "name": "CoinFi", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x3136ef851592acf49ca4c825131e364170fa32b3.png", + "aggregators": ["CoinMarketCap", "Rubic", "Rango"], + "occurrences": 3 + }, + "0xe8a1df958be379045e2b46a31a98b93a2ecdfded": { + "address": "0xe8a1df958be379045e2b46a31a98b93a2ecdfded", + "symbol": "ESZ", + "decimals": 18, + "name": "ESZCoin", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xe8a1df958be379045e2b46a31a98b93a2ecdfded.png", + "aggregators": ["CoinMarketCap", "Rubic", "Bancor"], + "occurrences": 3 + }, + "0xc7bba5b765581efb2cdd2679db5bea9ee79b201f": { + "address": "0xc7bba5b765581efb2cdd2679db5bea9ee79b201f", + "symbol": "GEM", + "decimals": 18, + "name": "Gems Token", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xc7bba5b765581efb2cdd2679db5bea9ee79b201f.png", + "aggregators": ["CoinMarketCap", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x9a005c9a89bd72a4bd27721e7a09a3c11d2b03c4": { + "address": "0x9a005c9a89bd72a4bd27721e7a09a3c11d2b03c4", + "symbol": "STAC", + "decimals": 18, + "name": "StarterCoin", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x9a005c9a89bd72a4bd27721e7a09a3c11d2b03c4.png", + "aggregators": ["CoinMarketCap", "Rubic", "Bancor"], + "occurrences": 3 + }, + "0xca0e7269600d353f70b14ad118a49575455c0f2f": { + "address": "0xca0e7269600d353f70b14ad118a49575455c0f2f", + "symbol": "AMLT", + "decimals": 18, + "name": "AMLT", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xca0e7269600d353f70b14ad118a49575455c0f2f.png", + "aggregators": ["CoinMarketCap", "Rubic", "Rango"], + "occurrences": 3 + }, + "0xc81978862b6ce566400579a5f8975732d42bd410": { + "address": "0xc81978862b6ce566400579a5f8975732d42bd410", + "symbol": "DVPN", + "decimals": 6, + "name": "Sentinel", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xc81978862b6ce566400579a5f8975732d42bd410.png", + "aggregators": ["CoinMarketCap", "Socket", "Rubic"], + "occurrences": 3 + }, + "0xccbf21ba6ef00802ab06637896b799f7101f54a2": { + "address": "0xccbf21ba6ef00802ab06637896b799f7101f54a2", + "symbol": "BUBO", + "decimals": 18, + "name": "Bubo", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xccbf21ba6ef00802ab06637896b799f7101f54a2.png", + "aggregators": ["CoinMarketCap", "LiFi", "Rubic"], + "occurrences": 3 + }, + "0x763186eb8d4856d536ed4478302971214febc6a9": { + "address": "0x763186eb8d4856d536ed4478302971214febc6a9", + "symbol": "BETR", + "decimals": 18, + "name": "Better Betting", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x763186eb8d4856d536ed4478302971214febc6a9.png", + "aggregators": ["CoinMarketCap", "Rubic", "Bancor"], + "occurrences": 3 + }, + "0x47bc01597798dcd7506dcca36ac4302fc93a8cfb": { + "address": "0x47bc01597798dcd7506dcca36ac4302fc93a8cfb", + "symbol": "CMCT", + "decimals": 8, + "name": "Crowd Machine Compute Token", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x47bc01597798dcd7506dcca36ac4302fc93a8cfb.png", + "aggregators": ["CoinMarketCap", "Rubic", "Bancor"], + "occurrences": 3 + }, + "0x9b4e2b4b13d125238aa0480dd42b4f6fc71b37cc": { + "address": "0x9b4e2b4b13d125238aa0480dd42b4f6fc71b37cc", + "symbol": "MT", + "decimals": 18, + "name": "MyToken", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x9b4e2b4b13d125238aa0480dd42b4f6fc71b37cc.png", + "aggregators": ["CoinMarketCap", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x4cd988afbad37289baaf53c13e98e2bd46aaea8c": { + "address": "0x4cd988afbad37289baaf53c13e98e2bd46aaea8c", + "symbol": "0", + "decimals": 18, + "name": "0", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x4cd988afbad37289baaf53c13e98e2bd46aaea8c.png", + "aggregators": ["CoinMarketCap", "Socket", "Rubic"], + "occurrences": 3 + }, + "0x9d86b1b2554ec410eccffbf111a6994910111340": { + "address": "0x9d86b1b2554ec410eccffbf111a6994910111340", + "symbol": "OPENC", + "decimals": 8, + "name": "OPEN Chain", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x9d86b1b2554ec410eccffbf111a6994910111340.png", + "aggregators": ["CoinMarketCap", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x88d50b466be55222019d71f9e8fae17f5f45fca1": { + "address": "0x88d50b466be55222019d71f9e8fae17f5f45fca1", + "symbol": "CPT", + "decimals": 8, + "name": "Cryptaur", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x88d50b466be55222019d71f9e8fae17f5f45fca1.png", + "aggregators": ["CoinMarketCap", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x76960dccd5a1fe799f7c29be9f19ceb4627aeb2f": { + "address": "0x76960dccd5a1fe799f7c29be9f19ceb4627aeb2f", + "symbol": "RED", + "decimals": 18, + "name": "Red Community Token", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x76960dccd5a1fe799f7c29be9f19ceb4627aeb2f.png", + "aggregators": ["CoinMarketCap", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x84f7c44b6fed1080f647e354d552595be2cc602f": { + "address": "0x84f7c44b6fed1080f647e354d552595be2cc602f", + "symbol": "BBO", + "decimals": 18, + "name": "Bigbom", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x84f7c44b6fed1080f647e354d552595be2cc602f.png", + "aggregators": ["CoinMarketCap", "Rubic", "Bancor"], + "occurrences": 3 + }, + "0x2bba3cf6de6058cc1b4457ce00deb359e2703d7f": { + "address": "0x2bba3cf6de6058cc1b4457ce00deb359e2703d7f", + "symbol": "HSC", + "decimals": 18, + "name": "HashCoin", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x2bba3cf6de6058cc1b4457ce00deb359e2703d7f.png", + "aggregators": ["CoinMarketCap", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x5c64031c62061865e5fd0f53d3cdaef80f72e99d": { + "address": "0x5c64031c62061865e5fd0f53d3cdaef80f72e99d", + "symbol": "GARD", + "decimals": 18, + "name": "HASHGARD", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x5c64031c62061865e5fd0f53d3cdaef80f72e99d.png", + "aggregators": ["CoinMarketCap", "Socket", "Rubic"], + "occurrences": 3 + }, + "0x05aaaa829afa407d83315cded1d45eb16025910c": { + "address": "0x05aaaa829afa407d83315cded1d45eb16025910c", + "symbol": "SPX", + "decimals": 18, + "name": "SP8DE Token", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x05aaaa829afa407d83315cded1d45eb16025910c.png", + "aggregators": ["CoinMarketCap", "Socket", "Rubic"], + "occurrences": 3 + }, + "0x60c24407d01782c2175d32fe7c8921ed732371d1": { + "address": "0x60c24407d01782c2175d32fe7c8921ed732371d1", + "symbol": "LEMO", + "decimals": 18, + "name": "LemoChain", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x60c24407d01782c2175d32fe7c8921ed732371d1.png", + "aggregators": ["CoinMarketCap", "Rubic", "Rango"], + "occurrences": 3 + }, + "0xb5b8f5616fe42d5ceca3e87f3fddbdd8f496d760": { + "address": "0xb5b8f5616fe42d5ceca3e87f3fddbdd8f496d760", + "symbol": "ZPR", + "decimals": 18, + "name": "ZperToken", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xb5b8f5616fe42d5ceca3e87f3fddbdd8f496d760.png", + "aggregators": ["CoinMarketCap", "Socket", "Rubic"], + "occurrences": 3 + }, + "0x4a6058666cf1057eac3cd3a5a614620547559fc9": { + "address": "0x4a6058666cf1057eac3cd3a5a614620547559fc9", + "symbol": "BBK", + "decimals": 18, + "name": "Brickblock", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x4a6058666cf1057eac3cd3a5a614620547559fc9.png", + "aggregators": ["Metamask", "LiFi", "Rubic"], + "occurrences": 3 + }, + "0x9c794f933b4dd8b49031a79b0f924d68bef43992": { + "address": "0x9c794f933b4dd8b49031a79b0f924d68bef43992", + "symbol": "XTRD", + "decimals": 18, + "name": "XTRD", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x9c794f933b4dd8b49031a79b0f924d68bef43992.png", + "aggregators": ["CoinMarketCap", "Rubic", "Bancor"], + "occurrences": 3 + }, + "0x245ef47d4d0505ecf3ac463f4d81f41ade8f1fd1": { + "address": "0x245ef47d4d0505ecf3ac463f4d81f41ade8f1fd1", + "symbol": "NUG", + "decimals": 18, + "name": "Nuggets", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x245ef47d4d0505ecf3ac463f4d81f41ade8f1fd1.png", + "aggregators": ["CoinMarketCap", "Socket", "Rubic"], + "occurrences": 3 + }, + "0x02f2d4a04e6e01ace88bd2cd632875543b2ef577": { + "address": "0x02f2d4a04e6e01ace88bd2cd632875543b2ef577", + "symbol": "PKG", + "decimals": 18, + "name": "PKG Token", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x02f2d4a04e6e01ace88bd2cd632875543b2ef577.png", + "aggregators": ["CoinMarketCap", "Rubic", "Bancor"], + "occurrences": 3 + }, + "0xbb1fa4fdeb3459733bf67ebc6f893003fa976a82": { + "address": "0xbb1fa4fdeb3459733bf67ebc6f893003fa976a82", + "symbol": "PAT", + "decimals": 18, + "name": "Pangea Arbitration Token", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xbb1fa4fdeb3459733bf67ebc6f893003fa976a82.png", + "aggregators": ["CoinMarketCap", "Rubic", "Bancor"], + "occurrences": 3 + }, + "0xff19138b039d938db46bdda0067dc4ba132ec71c": { + "address": "0xff19138b039d938db46bdda0067dc4ba132ec71c", + "symbol": "SNET", + "decimals": 8, + "name": "Snetwork", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xff19138b039d938db46bdda0067dc4ba132ec71c.png", + "aggregators": ["CoinMarketCap", "Rubic", "Rango"], + "occurrences": 3 + }, + "0xca2796f9f61dc7b238aab043971e49c6164df375": { + "address": "0xca2796f9f61dc7b238aab043971e49c6164df375", + "symbol": "YEED", + "decimals": 18, + "name": "YGGDRASH", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xca2796f9f61dc7b238aab043971e49c6164df375.png", + "aggregators": ["CoinMarketCap", "LiFi", "Rubic"], + "occurrences": 3 + }, + "0x37f04733c7e1c762f0ed86533c9052be5822c1fd": { + "address": "0x37f04733c7e1c762f0ed86533c9052be5822c1fd", + "symbol": "ETHM", + "decimals": 18, + "name": "Ethereum Meta", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x37f04733c7e1c762f0ed86533c9052be5822c1fd.png", + "aggregators": ["CoinMarketCap", "Socket", "Rubic"], + "occurrences": 3 + }, + "0x12f649a9e821f90bb143089a6e56846945892ffb": { + "address": "0x12f649a9e821f90bb143089a6e56846945892ffb", + "symbol": "UDOO", + "decimals": 18, + "name": "UDOO", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x12f649a9e821f90bb143089a6e56846945892ffb.png", + "aggregators": ["CoinMarketCap", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x3c6a7ab47b5f058be0e7c7fe1a4b7925b8aca40e": { + "address": "0x3c6a7ab47b5f058be0e7c7fe1a4b7925b8aca40e", + "symbol": "CAJ", + "decimals": 18, + "name": "Cajutel", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x3c6a7ab47b5f058be0e7c7fe1a4b7925b8aca40e.png", + "aggregators": ["CoinMarketCap", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x8d983cb9388eac77af0474fa441c4815500cb7bb": { + "address": "0x8d983cb9388eac77af0474fa441c4815500cb7bb", + "symbol": "ATOM", + "decimals": 6, + "name": "Cosmos", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x8d983cb9388eac77af0474fa441c4815500cb7bb.png", + "aggregators": ["CoinMarketCap", "LiFi", "Rubic"], + "occurrences": 3 + }, + "0x763fa6806e1acf68130d2d0f0df754c93cc546b2": { + "address": "0x763fa6806e1acf68130d2d0f0df754c93cc546b2", + "symbol": "LIT", + "decimals": 18, + "name": "LITION", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x763fa6806e1acf68130d2d0f0df754c93cc546b2.png", + "aggregators": ["CoinMarketCap", "Socket", "Rubic"], + "occurrences": 3 + }, + "0x7865af71cf0b288b4e7f654f4f7851eb46a2b7f8": { + "address": "0x7865af71cf0b288b4e7f654f4f7851eb46a2b7f8", + "symbol": "SNTVT", + "decimals": 18, + "name": "Sentivate", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x7865af71cf0b288b4e7f654f4f7851eb46a2b7f8.png", + "aggregators": ["Metamask", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x8ffe40a3d0f80c0ce6b203d5cdc1a6a86d9acaea": { + "address": "0x8ffe40a3d0f80c0ce6b203d5cdc1a6a86d9acaea", + "symbol": "IGG", + "decimals": 6, + "name": "IG Gold", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x8ffe40a3d0f80c0ce6b203d5cdc1a6a86d9acaea.png", + "aggregators": ["CoinMarketCap", "Socket", "Rubic"], + "occurrences": 3 + }, + "0xd6a55c63865affd67e2fb9f284f87b7a9e5ff3bd": { + "address": "0xd6a55c63865affd67e2fb9f284f87b7a9e5ff3bd", + "symbol": "ESH", + "decimals": 18, + "name": "ESH", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xd6a55c63865affd67e2fb9f284f87b7a9e5ff3bd.png", + "aggregators": ["CoinMarketCap", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x28ea81fac7b1719138cbf61267198155b433e00e": { + "address": "0x28ea81fac7b1719138cbf61267198155b433e00e", + "symbol": "CPC", + "decimals": 8, + "name": "Cashpayz Token", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x28ea81fac7b1719138cbf61267198155b433e00e.png", + "aggregators": ["CoinMarketCap", "LiFi", "Socket"], + "occurrences": 3 + }, + "0x3b7f247f21bf3a07088c2d3423f64233d4b069f7": { + "address": "0x3b7f247f21bf3a07088c2d3423f64233d4b069f7", + "symbol": "DYNMT", + "decimals": 2, + "name": "Dynamite", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x3b7f247f21bf3a07088c2d3423f64233d4b069f7.png", + "aggregators": ["CoinMarketCap", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x07597255910a51509ca469568b048f2597e72504": { + "address": "0x07597255910a51509ca469568b048f2597e72504", + "symbol": "1UP", + "decimals": 18, + "name": "1UP", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x07597255910a51509ca469568b048f2597e72504.png", + "aggregators": ["CoinMarketCap", "Rubic", "Rango"], + "occurrences": 3 + }, + "0xa8262eb913fccea4c3f77fc95b8b4043b384cfbb": { + "address": "0xa8262eb913fccea4c3f77fc95b8b4043b384cfbb", + "symbol": "KGC", + "decimals": 18, + "name": "Krypton Galaxy Coin", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xa8262eb913fccea4c3f77fc95b8b4043b384cfbb.png", + "aggregators": ["CoinMarketCap", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x24b47299e756af0571f512232a3629e0dabb52ed": { + "address": "0x24b47299e756af0571f512232a3629e0dabb52ed", + "symbol": "CVT", + "decimals": 18, + "name": "concertVR-Token", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x24b47299e756af0571f512232a3629e0dabb52ed.png", + "aggregators": ["CoinMarketCap", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x9b6443b0fb9c241a7fdac375595cea13e6b7807a": { + "address": "0x9b6443b0fb9c241a7fdac375595cea13e6b7807a", + "symbol": "RCC", + "decimals": 18, + "name": "Reality Clash Coin", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x9b6443b0fb9c241a7fdac375595cea13e6b7807a.png", + "aggregators": ["CoinMarketCap", "LiFi", "Socket"], + "occurrences": 3 + }, + "0x2822f6d1b2f41f93f33d937bc7d84a8dfa4f4c21": { + "address": "0x2822f6d1b2f41f93f33d937bc7d84a8dfa4f4c21", + "symbol": "QQQ", + "decimals": 18, + "name": "QQQ Token", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x2822f6d1b2f41f93f33d937bc7d84a8dfa4f4c21.png", + "aggregators": ["CoinMarketCap", "LiFi", "Rubic"], + "occurrences": 3 + }, + "0x301c755ba0fca00b1923768fffb3df7f4e63af31": { + "address": "0x301c755ba0fca00b1923768fffb3df7f4e63af31", + "symbol": "GDC", + "decimals": 18, + "name": "GDC", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x301c755ba0fca00b1923768fffb3df7f4e63af31.png", + "aggregators": ["CoinMarketCap", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x7c8155909cd385f120a56ef90728dd50f9ccbe52": { + "address": "0x7c8155909cd385f120a56ef90728dd50f9ccbe52", + "symbol": "NII", + "decimals": 15, + "name": "Nahmii", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x7c8155909cd385f120a56ef90728dd50f9ccbe52.png", + "aggregators": ["CoinMarketCap", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x38a0df9a08d18dc06cd91fc7ec94a0acdf28d994": { + "address": "0x38a0df9a08d18dc06cd91fc7ec94a0acdf28d994", + "symbol": "HTX", + "decimals": 2, + "name": "Huptex", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x38a0df9a08d18dc06cd91fc7ec94a0acdf28d994.png", + "aggregators": ["CoinMarketCap", "Socket", "Rubic"], + "occurrences": 3 + }, + "0xb4a677b0e363c3815d46326954a4e4d2b1ace357": { + "address": "0xb4a677b0e363c3815d46326954a4e4d2b1ace357", + "symbol": "THE", + "decimals": 18, + "name": "THENODE", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xb4a677b0e363c3815d46326954a4e4d2b1ace357.png", + "aggregators": ["CoinMarketCap", "Rubic", "Rango"], + "occurrences": 3 + }, + "0xc538143202f3b11382d8606aae90a96b042a19db": { + "address": "0xc538143202f3b11382d8606aae90a96b042a19db", + "symbol": "CNB", + "decimals": 18, + "name": "Coinsbit Token", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xc538143202f3b11382d8606aae90a96b042a19db.png", + "aggregators": ["CoinMarketCap", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x14cc8dfaf2258e1b8b2869300dba1b734dc0fe43": { + "address": "0x14cc8dfaf2258e1b8b2869300dba1b734dc0fe43", + "symbol": "KTT", + "decimals": 18, + "name": "K-Tune", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x14cc8dfaf2258e1b8b2869300dba1b734dc0fe43.png", + "aggregators": ["CoinMarketCap", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x6226caa1857afbc6dfb6ca66071eb241228031a1": { + "address": "0x6226caa1857afbc6dfb6ca66071eb241228031a1", + "symbol": "LAR", + "decimals": 18, + "name": "LAR", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x6226caa1857afbc6dfb6ca66071eb241228031a1.png", + "aggregators": ["CoinMarketCap", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x5c406d99e04b8494dc253fcc52943ef82bca7d75": { + "address": "0x5c406d99e04b8494dc253fcc52943ef82bca7d75", + "symbol": "CUSD", + "decimals": 6, + "name": "cUSD Currency", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x5c406d99e04b8494dc253fcc52943ef82bca7d75.png", + "aggregators": ["CoinMarketCap", "Rubic", "Bancor"], + "occurrences": 3 + }, + "0x4e12eb8e506ccd1427f6b8f7faa3e88fb698eb28": { + "address": "0x4e12eb8e506ccd1427f6b8f7faa3e88fb698eb28", + "symbol": "JACK", + "decimals": 18, + "name": "Jack Token", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x4e12eb8e506ccd1427f6b8f7faa3e88fb698eb28.png", + "aggregators": ["CoinMarketCap", "Socket", "Rubic"], + "occurrences": 3 + }, + "0xffe510a92434a0df346c5e72a3494b043cf249eb": { + "address": "0xffe510a92434a0df346c5e72a3494b043cf249eb", + "symbol": "LBXC", + "decimals": 18, + "name": "Lux Bio Cell", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xffe510a92434a0df346c5e72a3494b043cf249eb.png", + "aggregators": ["CoinMarketCap", "Rubic", "Rango"], + "occurrences": 3 + }, + "0xbe5b336ef62d1626940363cf34be079e0ab89f20": { + "address": "0xbe5b336ef62d1626940363cf34be079e0ab89f20", + "symbol": "BNC", + "decimals": 18, + "name": "BNC TOKEN", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xbe5b336ef62d1626940363cf34be079e0ab89f20.png", + "aggregators": ["CoinMarketCap", "Rubic", "Bancor"], + "occurrences": 3 + }, + "0xb83cd8d39462b761bb0092437d38b37812dd80a2": { + "address": "0xb83cd8d39462b761bb0092437d38b37812dd80a2", + "symbol": "GRT", + "decimals": 18, + "name": "GoldenRatio", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xb83cd8d39462b761bb0092437d38b37812dd80a2.png", + "aggregators": ["CoinMarketCap", "Socket", "Rubic"], + "occurrences": 3 + }, + "0xf0fac7104aac544e4a7ce1a55adf2b5a25c65bd1": { + "address": "0xf0fac7104aac544e4a7ce1a55adf2b5a25c65bd1", + "symbol": "PAMP", + "decimals": 18, + "name": "PAMP", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xf0fac7104aac544e4a7ce1a55adf2b5a25c65bd1.png", + "aggregators": ["CoinMarketCap", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x4485561db76614ff727f8e0a3ea95690b8b16022": { + "address": "0x4485561db76614ff727f8e0a3ea95690b8b16022", + "symbol": "INVOX", + "decimals": 18, + "name": "Invox Finance Token", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x4485561db76614ff727f8e0a3ea95690b8b16022.png", + "aggregators": ["CoinMarketCap", "Rubic", "Bancor"], + "occurrences": 3 + }, + "0x5c84bc60a796534bfec3439af0e6db616a966335": { + "address": "0x5c84bc60a796534bfec3439af0e6db616a966335", + "symbol": "BONE", + "decimals": 18, + "name": "Bone", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x5c84bc60a796534bfec3439af0e6db616a966335.png", + "aggregators": ["CoinMarketCap", "Socket", "Rubic"], + "occurrences": 3 + }, + "0x2bf91c18cd4ae9c2f2858ef9fe518180f7b5096d": { + "address": "0x2bf91c18cd4ae9c2f2858ef9fe518180f7b5096d", + "symbol": "KIWI", + "decimals": 8, + "name": "KIWI Token", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x2bf91c18cd4ae9c2f2858ef9fe518180f7b5096d.png", + "aggregators": ["CoinMarketCap", "Socket", "Rubic"], + "occurrences": 3 + }, + "0x456ae45c0ce901e2e7c99c0718031cec0a7a59ff": { + "address": "0x456ae45c0ce901e2e7c99c0718031cec0a7a59ff", + "symbol": "VSN", + "decimals": 18, + "name": "VSN", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x456ae45c0ce901e2e7c99c0718031cec0a7a59ff.png", + "aggregators": ["CoinMarketCap", "Rubic", "Rango"], + "occurrences": 3 + }, + "0xbecaea7aa3629d4b7ddccf3a973bef09ff34d4b6": { + "address": "0xbecaea7aa3629d4b7ddccf3a973bef09ff34d4b6", + "symbol": "REALTOKEN-15634-LIBERAL-ST-DETROIT-MI", + "decimals": 18, + "name": "RealToken 15634 Liberal Street Detroit MI", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xbecaea7aa3629d4b7ddccf3a973bef09ff34d4b6.png", + "aggregators": ["CoinMarketCap", "Socket", "Rubic"], + "occurrences": 3 + }, + "0x22cabb38295eaeccfede4e99af508052e3b74ca0": { + "address": "0x22cabb38295eaeccfede4e99af508052e3b74ca0", + "symbol": "REALTOKEN-18900-MANSFIELD-ST-DETROIT-MI", + "decimals": 18, + "name": "RealToken 18900 Mansfield Street Detroit MI", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x22cabb38295eaeccfede4e99af508052e3b74ca0.png", + "aggregators": ["CoinMarketCap", "Socket", "Rubic"], + "occurrences": 3 + }, + "0x5807ca447851c98569c567963b25b1c83d41bebc": { + "address": "0x5807ca447851c98569c567963b25b1c83d41bebc", + "symbol": "REALTOKEN-10024-10028-APPOLINE-ST-DETROIT-MI", + "decimals": 18, + "name": "RealToken 10024-10028 Appoline Street Detroit MI", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x5807ca447851c98569c567963b25b1c83d41bebc.png", + "aggregators": ["CoinMarketCap", "Socket", "Rubic"], + "occurrences": 3 + }, + "0x22c8ecf727c23422f47093b562ec53c139805301": { + "address": "0x22c8ecf727c23422f47093b562ec53c139805301", + "symbol": "REALTOKEN-16200-FULLERTON-AVE-DETROIT-MI", + "decimals": 18, + "name": "RealToken 16200 Fullerton Ave Detroit MI", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x22c8ecf727c23422f47093b562ec53c139805301.png", + "aggregators": ["CoinMarketCap", "Socket", "Rubic"], + "occurrences": 3 + }, + "0xfc89f1b932079b462ef9c8757de5a28e387b847b": { + "address": "0xfc89f1b932079b462ef9c8757de5a28e387b847b", + "symbol": "REALTOKEN-18276-APPOLINE-ST-DETROIT-MI", + "decimals": 18, + "name": "RealToken 18276 Appoline Street Detroit MI", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xfc89f1b932079b462ef9c8757de5a28e387b847b.png", + "aggregators": ["CoinMarketCap", "Socket", "Rubic"], + "occurrences": 3 + }, + "0x395c47a421c254ae42253764a7f56e0ee0cddac5": { + "address": "0x395c47a421c254ae42253764a7f56e0ee0cddac5", + "symbol": "REALTOKEN-20200-LESURE-ST-DETROIT-MI", + "decimals": 18, + "name": "RealToken 20200 Lesure Street Detroit MI", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x395c47a421c254ae42253764a7f56e0ee0cddac5.png", + "aggregators": ["CoinMarketCap", "Socket", "Rubic"], + "occurrences": 3 + }, + "0x74d2cb65b1158300c3e6bea149d68509c7b2425d": { + "address": "0x74d2cb65b1158300c3e6bea149d68509c7b2425d", + "symbol": "REALTOKEN-25097-ANDOVER-DR-DEARBORN-MI", + "decimals": 18, + "name": "RealToken 25097 Andover Drive Detroit MI", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x74d2cb65b1158300c3e6bea149d68509c7b2425d.png", + "aggregators": ["CoinMarketCap", "Socket", "Rubic"], + "occurrences": 3 + }, + "0x43688910273f199b8ae2ca018c13918fb3d37b58": { + "address": "0x43688910273f199b8ae2ca018c13918fb3d37b58", + "symbol": "REALTOKEN-5942-AUDUBON-RD-DETROIT-MI", + "decimals": 18, + "name": "RealToken 5942 Audubon Road Detroit MI", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x43688910273f199b8ae2ca018c13918fb3d37b58.png", + "aggregators": ["CoinMarketCap", "Socket", "Rubic"], + "occurrences": 3 + }, + "0x6fd016ccc4611f7bab1dd3267334cb0216ef47f9": { + "address": "0x6fd016ccc4611f7bab1dd3267334cb0216ef47f9", + "symbol": "REALTOKEN-8342-SCHAEFER-HWY-DETROIT-MI", + "decimals": 18, + "name": "RealToken 8342 Schaefer Hwy Detroit MI", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x6fd016ccc4611f7bab1dd3267334cb0216ef47f9.png", + "aggregators": ["CoinMarketCap", "Socket", "Rubic"], + "occurrences": 3 + }, + "0xed42cedcadbfbcaa3e6f411b09567c2c0b5ad28f": { + "address": "0xed42cedcadbfbcaa3e6f411b09567c2c0b5ad28f", + "symbol": "REALTOKEN-9336-PATTON-ST-DETROIT-MI", + "decimals": 18, + "name": "RealToken 9336 Patton Street Detroit MI", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xed42cedcadbfbcaa3e6f411b09567c2c0b5ad28f.png", + "aggregators": ["CoinMarketCap", "Socket", "Rubic"], + "occurrences": 3 + }, + "0x19f4a2f8e21915376f1429c26a3a9b9b1db5ff5a": { + "address": "0x19f4a2f8e21915376f1429c26a3a9b9b1db5ff5a", + "symbol": "CHADLINK", + "decimals": 18, + "name": "Chad Link Set", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x19f4a2f8e21915376f1429c26a3a9b9b1db5ff5a.png", + "aggregators": ["CoinMarketCap", "LiFi", "Rubic"], + "occurrences": 3 + }, + "0x09e4bdfb273245063ef5e800d891eff7d04f9b83": { + "address": "0x09e4bdfb273245063ef5e800d891eff7d04f9b83", + "symbol": "ETHPA", + "decimals": 18, + "name": "ETH Price Action Candlestick Set", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x09e4bdfb273245063ef5e800d891eff7d04f9b83.png", + "aggregators": ["CoinMarketCap", "LiFi", "Rubic"], + "occurrences": 3 + }, + "0xd32641191578ea9b208125ddd4ec5e7b84fcab4c": { + "address": "0xd32641191578ea9b208125ddd4ec5e7b84fcab4c", + "symbol": "TMED", + "decimals": 18, + "name": "MDsquare", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xd32641191578ea9b208125ddd4ec5e7b84fcab4c.png", + "aggregators": ["CoinMarketCap", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x3c6ff50c9ec362efa359317009428d52115fe643": { + "address": "0x3c6ff50c9ec362efa359317009428d52115fe643", + "symbol": "PERX", + "decimals": 18, + "name": "PERX", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x3c6ff50c9ec362efa359317009428d52115fe643.png", + "aggregators": ["CoinMarketCap", "Rubic", "Rango"], + "occurrences": 3 + }, + "0xcc0014ccb39f6e86b1be0f17859a783b6722722f": { + "address": "0xcc0014ccb39f6e86b1be0f17859a783b6722722f", + "symbol": "SHO", + "decimals": 18, + "name": "Showcase Token", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xcc0014ccb39f6e86b1be0f17859a783b6722722f.png", + "aggregators": ["CoinMarketCap", "Socket", "Rubic"], + "occurrences": 3 + }, + "0x00d1793d7c3aae506257ba985b34c76aaf642557": { + "address": "0x00d1793d7c3aae506257ba985b34c76aaf642557", + "symbol": "TACO", + "decimals": 18, + "name": "Tacos", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x00d1793d7c3aae506257ba985b34c76aaf642557.png", + "aggregators": ["CoinMarketCap", "LiFi", "Rubic"], + "occurrences": 3 + }, + "0x54c9ea2e9c9e8ed865db4a4ce6711c2a0d5063ba": { + "address": "0x54c9ea2e9c9e8ed865db4a4ce6711c2a0d5063ba", + "symbol": "BART", + "decimals": 18, + "name": "BarterTrade", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x54c9ea2e9c9e8ed865db4a4ce6711c2a0d5063ba.png", + "aggregators": ["CoinMarketCap", "TrustWallet", "Rubic"], + "occurrences": 3 + }, + "0x6251e725cd45fb1af99354035a414a2c0890b929": { + "address": "0x6251e725cd45fb1af99354035a414a2c0890b929", + "symbol": "MXT", + "decimals": 18, + "name": "MXT", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x6251e725cd45fb1af99354035a414a2c0890b929.png", + "aggregators": ["CoinMarketCap", "Rubic", "Rango"], + "occurrences": 3 + }, + "0xb8e103b60a33597136ea9511f46b6dbeb643a3a5": { + "address": "0xb8e103b60a33597136ea9511f46b6dbeb643a3a5", + "symbol": "SBTC", + "decimals": 18, + "name": "Siambitcoin", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xb8e103b60a33597136ea9511f46b6dbeb643a3a5.png", + "aggregators": ["CoinMarketCap", "Socket", "Rubic"], + "occurrences": 3 + }, + "0x9b9087756eca997c5d595c840263001c9a26646d": { + "address": "0x9b9087756eca997c5d595c840263001c9a26646d", + "symbol": "DOGEFI", + "decimals": 18, + "name": "DOGEFI", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x9b9087756eca997c5d595c840263001c9a26646d.png", + "aggregators": ["CoinMarketCap", "LiFi", "Rubic"], + "occurrences": 3 + }, + "0xa7a5c1058194af8f00c187adb7fcc0c95f1c6c2d": { + "address": "0xa7a5c1058194af8f00c187adb7fcc0c95f1c6c2d", + "symbol": "SPIZ", + "decimals": 18, + "name": "SPACE-iZ", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xa7a5c1058194af8f00c187adb7fcc0c95f1c6c2d.png", + "aggregators": ["CoinMarketCap", "Rubic", "Rango"], + "occurrences": 3 + }, + "0xaba8cac6866b83ae4eec97dd07ed254282f6ad8a": { + "address": "0xaba8cac6866b83ae4eec97dd07ed254282f6ad8a", + "symbol": "YAMV2", + "decimals": 24, + "name": "YAMv2", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xaba8cac6866b83ae4eec97dd07ed254282f6ad8a.png", + "aggregators": ["CoinMarketCap", "LiFi", "Rubic"], + "occurrences": 3 + }, + "0x6bff2fe249601ed0db3a87424a2e923118bb0312": { + "address": "0x6bff2fe249601ed0db3a87424a2e923118bb0312", + "symbol": "FYZ", + "decimals": 18, + "name": "Fyooz", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x6bff2fe249601ed0db3a87424a2e923118bb0312.png", + "aggregators": ["CoinMarketCap", "TrustWallet", "Rubic"], + "occurrences": 3 + }, + "0x9903a4cd589da8e434f264deafc406836418578e": { + "address": "0x9903a4cd589da8e434f264deafc406836418578e", + "symbol": "FIRST", + "decimals": 4, + "name": "Harrison First", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x9903a4cd589da8e434f264deafc406836418578e.png", + "aggregators": ["CoinMarketCap", "LiFi", "Rubic"], + "occurrences": 3 + }, + "0xd379700999f4805ce80aa32db46a94df64561108": { + "address": "0xd379700999f4805ce80aa32db46a94df64561108", + "symbol": "DETS", + "decimals": 18, + "name": "Dextrust", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xd379700999f4805ce80aa32db46a94df64561108.png", + "aggregators": ["CoinMarketCap", "TrustWallet", "Rubic"], + "occurrences": 3 + }, + "0x428dc22668e6f3468273634067e5545ed5417a3e": { + "address": "0x428dc22668e6f3468273634067e5545ed5417a3e", + "symbol": "MQL", + "decimals": 18, + "name": "MiraQle", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x428dc22668e6f3468273634067e5545ed5417a3e.png", + "aggregators": ["CoinMarketCap", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x3aef8e803bd9be47e69b9f36487748d30d940b96": { + "address": "0x3aef8e803bd9be47e69b9f36487748d30d940b96", + "symbol": "VESTA", + "decimals": 18, + "name": "vesta", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x3aef8e803bd9be47e69b9f36487748d30d940b96.png", + "aggregators": ["CoinMarketCap", "LiFi", "Rubic"], + "occurrences": 3 + }, + "0x5580ab97f226c324c671746a1787524aef42e415": { + "address": "0x5580ab97f226c324c671746a1787524aef42e415", + "symbol": "JUL", + "decimals": 18, + "name": "JUL", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x5580ab97f226c324c671746a1787524aef42e415.png", + "aggregators": ["CoinMarketCap", "LiFi", "Rubic"], + "occurrences": 3 + }, + "0x6e36556b3ee5aa28def2a8ec3dae30ec2b208739": { + "address": "0x6e36556b3ee5aa28def2a8ec3dae30ec2b208739", + "symbol": "BUILD", + "decimals": 18, + "name": "BUILD Finance", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x6e36556b3ee5aa28def2a8ec3dae30ec2b208739.png", + "aggregators": ["CoinMarketCap", "Socket", "Rubic"], + "occurrences": 3 + }, + "0x90f62b96a62801488b151ff3c65eac5fae21a962": { + "address": "0x90f62b96a62801488b151ff3c65eac5fae21a962", + "symbol": "GEM", + "decimals": 18, + "name": "GemToken", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x90f62b96a62801488b151ff3c65eac5fae21a962.png", + "aggregators": ["CoinMarketCap", "Socket", "Rubic"], + "occurrences": 3 + }, + "0x174897edd3ce414084a009d22db31c7b7826400d": { + "address": "0x174897edd3ce414084a009d22db31c7b7826400d", + "symbol": "JOON", + "decimals": 4, + "name": "JOON", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x174897edd3ce414084a009d22db31c7b7826400d.png", + "aggregators": ["CoinMarketCap", "LiFi", "Rubic"], + "occurrences": 3 + }, + "0x2216e873ea4282ebef7a02ac5aea220be6391a7c": { + "address": "0x2216e873ea4282ebef7a02ac5aea220be6391a7c", + "symbol": "SMOL", + "decimals": 18, + "name": "smol", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x2216e873ea4282ebef7a02ac5aea220be6391a7c.png", + "aggregators": ["CoinMarketCap", "LiFi", "Rubic"], + "occurrences": 3 + }, + "0xeaccb6e0f24d66cf4aa6cbda33971b9231d332a1": { + "address": "0xeaccb6e0f24d66cf4aa6cbda33971b9231d332a1", + "symbol": "PGT", + "decimals": 18, + "name": "Polyient Games Governance Token", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xeaccb6e0f24d66cf4aa6cbda33971b9231d332a1.png", + "aggregators": ["CoinMarketCap", "LiFi", "Rubic"], + "occurrences": 3 + }, + "0x1a23a6bfbadb59fa563008c0fb7cf96dfcf34ea1": { + "address": "0x1a23a6bfbadb59fa563008c0fb7cf96dfcf34ea1", + "symbol": "COFI", + "decimals": 18, + "name": "CoFi Token", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x1a23a6bfbadb59fa563008c0fb7cf96dfcf34ea1.png", + "aggregators": ["CoinMarketCap", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x31735f0292d42801dce3b0f83b0d9a09bff75b07": { + "address": "0x31735f0292d42801dce3b0f83b0d9a09bff75b07", + "symbol": "WEFI", + "decimals": 18, + "name": "Wolfage Finance Governance", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x31735f0292d42801dce3b0f83b0d9a09bff75b07.png", + "aggregators": ["CoinMarketCap", "Socket", "Rubic"], + "occurrences": 3 + }, + "0x260e63d91fccc499606bae3fe945c4ed1cf56a56": { + "address": "0x260e63d91fccc499606bae3fe945c4ed1cf56a56", + "symbol": "MOONS", + "decimals": 18, + "name": "MoonTools.io", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x260e63d91fccc499606bae3fe945c4ed1cf56a56.png", + "aggregators": ["CoinMarketCap", "LiFi", "Rubic"], + "occurrences": 3 + }, + "0x71ba91dc68c6a206db0a6a92b4b1de3f9271432d": { + "address": "0x71ba91dc68c6a206db0a6a92b4b1de3f9271432d", + "symbol": "WMBX", + "decimals": 18, + "name": "wMBX Token", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x71ba91dc68c6a206db0a6a92b4b1de3f9271432d.png", + "aggregators": ["CoinMarketCap", "Socket", "Rubic"], + "occurrences": 3 + }, + "0x81b1bfd6cb9ad42db395c2a27f73d4dcf5777e2d": { + "address": "0x81b1bfd6cb9ad42db395c2a27f73d4dcf5777e2d", + "symbol": "RARE", + "decimals": 4, + "name": "Rare", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x81b1bfd6cb9ad42db395c2a27f73d4dcf5777e2d.png", + "aggregators": ["CoinMarketCap", "Socket", "Rubic"], + "occurrences": 3 + }, + "0x84679bc467dc6c2c40ab04538813aff3796351f1": { + "address": "0x84679bc467dc6c2c40ab04538813aff3796351f1", + "symbol": "CHONK", + "decimals": 18, + "name": "CHONK", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x84679bc467dc6c2c40ab04538813aff3796351f1.png", + "aggregators": ["CoinMarketCap", "LiFi", "Rubic"], + "occurrences": 3 + }, + "0x39fa206c1648944f92e8f7b626e1cbdf78d7e9db": { + "address": "0x39fa206c1648944f92e8f7b626e1cbdf78d7e9db", + "symbol": "DXY", + "decimals": 18, + "name": "DXY.FINANCE", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x39fa206c1648944f92e8f7b626e1cbdf78d7e9db.png", + "aggregators": ["CoinMarketCap", "Socket", "Rubic"], + "occurrences": 3 + }, + "0x837010619aeb2ae24141605afc8f66577f6fb2e7": { + "address": "0x837010619aeb2ae24141605afc8f66577f6fb2e7", + "symbol": "ZHEGIC", + "decimals": 18, + "name": "zHEGIC", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x837010619aeb2ae24141605afc8f66577f6fb2e7.png", + "aggregators": ["CoinMarketCap", "LiFi", "Rubic"], + "occurrences": 3 + }, + "0xa8b0f154a688c22142e361707df64277e0a0be66": { + "address": "0xa8b0f154a688c22142e361707df64277e0a0be66", + "symbol": "RAK", + "decimals": 18, + "name": "Rake Finance", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xa8b0f154a688c22142e361707df64277e0a0be66.png", + "aggregators": ["CoinMarketCap", "Rubic", "Rango"], + "occurrences": 3 + }, + "0xdbdd6f355a37b94e6c7d32fef548e98a280b8df5": { + "address": "0xdbdd6f355a37b94e6c7d32fef548e98a280b8df5", + "symbol": "UWL", + "decimals": 18, + "name": "UniWhales.io", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xdbdd6f355a37b94e6c7d32fef548e98a280b8df5.png", + "aggregators": ["CoinMarketCap", "LiFi", "Rubic"], + "occurrences": 3 + }, + "0x8064d9ae6cdf087b1bcd5bdf3531bd5d8c537a68": { + "address": "0x8064d9ae6cdf087b1bcd5bdf3531bd5d8c537a68", + "symbol": "OBTC", + "decimals": 18, + "name": "BoringDAO BTC", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x8064d9ae6cdf087b1bcd5bdf3531bd5d8c537a68.png", + "aggregators": ["CoinMarketCap", "LiFi", "Rubic"], + "occurrences": 3 + }, + "0xa456b515303b2ce344e9d2601f91270f8c2fea5e": { + "address": "0xa456b515303b2ce344e9d2601f91270f8c2fea5e", + "symbol": "CORN", + "decimals": 18, + "name": "Cornichon", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xa456b515303b2ce344e9d2601f91270f8c2fea5e.png", + "aggregators": ["CoinMarketCap", "Socket", "Rubic"], + "occurrences": 3 + }, + "0xa0afaa285ce85974c3c881256cb7f225e3a1178a": { + "address": "0xa0afaa285ce85974c3c881256cb7f225e3a1178a", + "symbol": "WCRES", + "decimals": 18, + "name": "Wrapped CrescoFin", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xa0afaa285ce85974c3c881256cb7f225e3a1178a.png", + "aggregators": ["CoinMarketCap", "TrustWallet", "Rubic"], + "occurrences": 3 + }, + "0xd8e3fb3b08eba982f2754988d70d57edc0055ae6": { + "address": "0xd8e3fb3b08eba982f2754988d70d57edc0055ae6", + "symbol": "ZORA", + "decimals": 9, + "name": "Zoracles", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xd8e3fb3b08eba982f2754988d70d57edc0055ae6.png", + "aggregators": ["Metamask", "LiFi", "Rubic"], + "occurrences": 3 + }, + "0x6589fe1271a0f29346796c6baf0cdf619e25e58e": { + "address": "0x6589fe1271a0f29346796c6baf0cdf619e25e58e", + "symbol": "GRAIN", + "decimals": 18, + "name": "GRAIN Token", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x6589fe1271a0f29346796c6baf0cdf619e25e58e.png", + "aggregators": ["CoinMarketCap", "Socket", "Rubic"], + "occurrences": 3 + }, + "0xd5147bc8e386d91cc5dbe72099dac6c9b99276f5": { + "address": "0xd5147bc8e386d91cc5dbe72099dac6c9b99276f5", + "symbol": "RENFIL", + "decimals": 18, + "name": "renFIL", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xd5147bc8e386d91cc5dbe72099dac6c9b99276f5.png", + "aggregators": ["CoinMarketCap", "LiFi", "Rubic"], + "occurrences": 3 + }, + "0x6faa826af0568d1866fca570da79b318ef114dab": { + "address": "0x6faa826af0568d1866fca570da79b318ef114dab", + "symbol": "B21", + "decimals": 18, + "name": "B21 Token", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x6faa826af0568d1866fca570da79b318ef114dab.png", + "aggregators": ["CoinMarketCap", "LiFi", "Rubic"], + "occurrences": 3 + }, + "0xd7f5cabdf696d7d1bf384d7688926a4bdb092c67": { + "address": "0xd7f5cabdf696d7d1bf384d7688926a4bdb092c67", + "symbol": "DRC", + "decimals": 18, + "name": "Dream Car", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xd7f5cabdf696d7d1bf384d7688926a4bdb092c67.png", + "aggregators": ["CoinMarketCap", "Socket", "Rubic"], + "occurrences": 3 + }, + "0x0c93b616933b0cd03b201b29cd8a22681dd9e0d9": { + "address": "0x0c93b616933b0cd03b201b29cd8a22681dd9e0d9", + "symbol": "HGOLD", + "decimals": 8, + "name": "HollyGold", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x0c93b616933b0cd03b201b29cd8a22681dd9e0d9.png", + "aggregators": ["CoinMarketCap", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x7bce667ef12023dc5f8577d015a2f09d99a5ef58": { + "address": "0x7bce667ef12023dc5f8577d015a2f09d99a5ef58", + "symbol": "BDT", + "decimals": 18, + "name": "Block Duelers", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x7bce667ef12023dc5f8577d015a2f09d99a5ef58.png", + "aggregators": ["CoinMarketCap", "Socket", "Rubic"], + "occurrences": 3 + }, + "0x3c03b4ec9477809072ff9cc9292c9b25d4a8e6c6": { + "address": "0x3c03b4ec9477809072ff9cc9292c9b25d4a8e6c6", + "symbol": "CVR", + "decimals": 18, + "name": "CoverCompared", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x3c03b4ec9477809072ff9cc9292c9b25d4a8e6c6.png", + "aggregators": ["CoinMarketCap", "Rubic", "Rango"], + "occurrences": 3 + }, + "0xdfe66b14d37c77f4e9b180ceb433d1b164f0281d": { + "address": "0xdfe66b14d37c77f4e9b180ceb433d1b164f0281d", + "symbol": "STETH", + "decimals": 18, + "name": "stakedETH", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xdfe66b14d37c77f4e9b180ceb433d1b164f0281d.png", + "aggregators": ["CoinMarketCap", "LiFi", "Rubic"], + "occurrences": 3 + }, + "0x672ef7e4fe230b5ca1466c5fdd40588d30fdf90a": { + "address": "0x672ef7e4fe230b5ca1466c5fdd40588d30fdf90a", + "symbol": "WOWS", + "decimals": 18, + "name": "Wolves Of Wall Street", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x672ef7e4fe230b5ca1466c5fdd40588d30fdf90a.png", + "aggregators": ["CoinMarketCap", "LiFi", "Rubic"], + "occurrences": 3 + }, + "0x0020d80229877b495d2bf3269a4c13f6f1e1b9d3": { + "address": "0x0020d80229877b495d2bf3269a4c13f6f1e1b9d3", + "symbol": "DEXM", + "decimals": 18, + "name": "Dexmex", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x0020d80229877b495d2bf3269a4c13f6f1e1b9d3.png", + "aggregators": ["CoinMarketCap", "LiFi", "Rubic"], + "occurrences": 3 + }, + "0xf136d7b0b7ae5b86d21e7b78dfa95375a7360f19": { + "address": "0xf136d7b0b7ae5b86d21e7b78dfa95375a7360f19", + "symbol": "TOSHI", + "decimals": 18, + "name": "Toshi Token", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xf136d7b0b7ae5b86d21e7b78dfa95375a7360f19.png", + "aggregators": ["CoinMarketCap", "LiFi", "Rubic"], + "occurrences": 3 + }, + "0x36b679bd64ed73dbfd88909cdcb892cb66bd4cbb": { + "address": "0x36b679bd64ed73dbfd88909cdcb892cb66bd4cbb", + "symbol": "XMARK", + "decimals": 9, + "name": "Standard", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x36b679bd64ed73dbfd88909cdcb892cb66bd4cbb.png", + "aggregators": ["CoinMarketCap", "LiFi", "Rubic"], + "occurrences": 3 + }, + "0xee1cea7665ba7aa97e982edeaecb26b59a04d035": { + "address": "0xee1cea7665ba7aa97e982edeaecb26b59a04d035", + "symbol": "ORAO", + "decimals": 18, + "name": "ORAO Network", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xee1cea7665ba7aa97e982edeaecb26b59a04d035.png", + "aggregators": ["CoinMarketCap", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x0ace32f6e87ac1457a5385f8eb0208f37263b415": { + "address": "0x0ace32f6e87ac1457a5385f8eb0208f37263b415", + "symbol": "HBT", + "decimals": 10, + "name": "Habitat Token", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x0ace32f6e87ac1457a5385f8eb0208f37263b415.png", + "aggregators": ["CoinMarketCap", "Socket", "Rubic"], + "occurrences": 3 + }, + "0xdcfe18bc46f5a0cd0d3af0c2155d2bcb5ade2fc5": { + "address": "0xdcfe18bc46f5a0cd0d3af0c2155d2bcb5ade2fc5", + "symbol": "HUE", + "decimals": 4, + "name": "Hue", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xdcfe18bc46f5a0cd0d3af0c2155d2bcb5ade2fc5.png", + "aggregators": ["CoinMarketCap", "LiFi", "Rubic"], + "occurrences": 3 + }, + "0xe6f1966d04cfcb9cd1b1dc4e8256d8b501b11cba": { + "address": "0xe6f1966d04cfcb9cd1b1dc4e8256d8b501b11cba", + "symbol": "SAFEEARTH", + "decimals": 9, + "name": "SafeEarth", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xe6f1966d04cfcb9cd1b1dc4e8256d8b501b11cba.png", + "aggregators": ["CoinMarketCap", "Socket", "Rubic"], + "occurrences": 3 + }, + "0xa1c7d450130bb77c6a23ddfaecbc4a060215384b": { + "address": "0xa1c7d450130bb77c6a23ddfaecbc4a060215384b", + "symbol": "XRGE", + "decimals": 18, + "name": "RougeCoin", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xa1c7d450130bb77c6a23ddfaecbc4a060215384b.png", + "aggregators": ["CoinMarketCap", "Socket", "Rubic"], + "occurrences": 3 + }, + "0x84ba4aecfde39d69686a841bab434c32d179a169": { + "address": "0x84ba4aecfde39d69686a841bab434c32d179a169", + "symbol": "MTHD", + "decimals": 18, + "name": "Method", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x84ba4aecfde39d69686a841bab434c32d179a169.png", + "aggregators": ["CoinMarketCap", "LiFi", "Rubic"], + "occurrences": 3 + }, + "0x2c31b10ca416b82cec4c5e93c615ca851213d48d": { + "address": "0x2c31b10ca416b82cec4c5e93c615ca851213d48d", + "symbol": "FORCE", + "decimals": 18, + "name": "Force DAO", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x2c31b10ca416b82cec4c5e93c615ca851213d48d.png", + "aggregators": ["CoinMarketCap", "Socket", "Rubic"], + "occurrences": 3 + }, + "0xbfd815347d024f449886c171f78fa5b8e6790811": { + "address": "0xbfd815347d024f449886c171f78fa5b8e6790811", + "symbol": "AAPX", + "decimals": 18, + "name": "AMPnet APX Token", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xbfd815347d024f449886c171f78fa5b8e6790811.png", + "aggregators": ["CoinMarketCap", "LiFi", "Rubic"], + "occurrences": 3 + }, + "0x17ef75aa22dd5f6c2763b8304ab24f40ee54d48a": { + "address": "0x17ef75aa22dd5f6c2763b8304ab24f40ee54d48a", + "symbol": "RVP", + "decimals": 18, + "name": "RevolutionPopuli ERC20 Token", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x17ef75aa22dd5f6c2763b8304ab24f40ee54d48a.png", + "aggregators": ["CoinMarketCap", "LiFi", "Rubic"], + "occurrences": 3 + }, + "0x28a06c02287e657ec3f8e151a13c36a1d43814b0": { + "address": "0x28a06c02287e657ec3f8e151a13c36a1d43814b0", + "symbol": "BAG", + "decimals": 18, + "name": "BondAppetit Governance", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x28a06c02287e657ec3f8e151a13c36a1d43814b0.png", + "aggregators": ["CoinMarketCap", "Socket", "Rubic"], + "occurrences": 3 + }, + "0x8f12dfc7981de79a8a34070a732471f2d335eece": { + "address": "0x8f12dfc7981de79a8a34070a732471f2d335eece", + "symbol": "CE", + "decimals": 18, + "name": "Crypto Excellence", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x8f12dfc7981de79a8a34070a732471f2d335eece.png", + "aggregators": ["CoinMarketCap", "LiFi", "Rubic"], + "occurrences": 3 + }, + "0x7d4b1d793239707445305d8d2456d2c735f6b25b": { + "address": "0x7d4b1d793239707445305d8d2456d2c735f6b25b", + "symbol": "CBSN", + "decimals": 18, + "name": "BSNcommunitynet", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x7d4b1d793239707445305d8d2456d2c735f6b25b.png", + "aggregators": ["CoinMarketCap", "LiFi", "Rubic"], + "occurrences": 3 + }, + "0x7e6c38d007740931e4b419bf15a68c79a0fb0c66": { + "address": "0x7e6c38d007740931e4b419bf15a68c79a0fb0c66", + "symbol": "UDOKI", + "decimals": 18, + "name": "Doki Doki Official Collection", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x7e6c38d007740931e4b419bf15a68c79a0fb0c66.png", + "aggregators": ["CoinMarketCap", "Socket", "Rubic"], + "occurrences": 3 + }, + "0x65e3c4a750a2e7cc7cce86d01587bbcbbe99042e": { + "address": "0x65e3c4a750a2e7cc7cce86d01587bbcbbe99042e", + "symbol": "OPU", + "decimals": 18, + "name": "Opu Coin", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x65e3c4a750a2e7cc7cce86d01587bbcbbe99042e.png", + "aggregators": ["CoinMarketCap", "LiFi", "Socket"], + "occurrences": 3 + }, + "0xed0889f7e1c7c7267407222be277e1f1ef4d4892": { + "address": "0xed0889f7e1c7c7267407222be277e1f1ef4d4892", + "symbol": "MEL", + "decimals": 18, + "name": "Melalie", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xed0889f7e1c7c7267407222be277e1f1ef4d4892.png", + "aggregators": ["CoinMarketCap", "Socket", "Rubic"], + "occurrences": 3 + }, + "0xd2adc1c84443ad06f0017adca346bd9b6fc52cab": { + "address": "0xd2adc1c84443ad06f0017adca346bd9b6fc52cab", + "symbol": "DFND", + "decimals": 18, + "name": "dFund", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xd2adc1c84443ad06f0017adca346bd9b6fc52cab.png", + "aggregators": ["CoinMarketCap", "Rubic", "Sonarwatch"], + "occurrences": 3 + }, + "0xc8ff6772f605a139c40b32d5d87d54994c705c6b": { + "address": "0xc8ff6772f605a139c40b32d5d87d54994c705c6b", + "symbol": "LION", + "decimals": 18, + "name": "Lion Token", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xc8ff6772f605a139c40b32d5d87d54994c705c6b.png", + "aggregators": ["CoinMarketCap", "Socket", "Rubic"], + "occurrences": 3 + }, + "0x752efadc0a7e05ad1bcccda22c141d01a75ef1e4": { + "address": "0x752efadc0a7e05ad1bcccda22c141d01a75ef1e4", + "symbol": "COMFI", + "decimals": 18, + "name": "CompliFi", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x752efadc0a7e05ad1bcccda22c141d01a75ef1e4.png", + "aggregators": ["CoinMarketCap", "LiFi", "Rubic"], + "occurrences": 3 + }, + "0xdb0acc14396d108b3c5574483acb817855c9dc8d": { + "address": "0xdb0acc14396d108b3c5574483acb817855c9dc8d", + "symbol": "EMB", + "decimals": 8, + "name": "Emblem", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xdb0acc14396d108b3c5574483acb817855c9dc8d.png", + "aggregators": ["CoinMarketCap", "Socket", "Rubic"], + "occurrences": 3 + }, + "0x3a82d3111ab5faf39d847d46023d9090261a658f": { + "address": "0x3a82d3111ab5faf39d847d46023d9090261a658f", + "symbol": "TYC", + "decimals": 18, + "name": "Tycoon", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x3a82d3111ab5faf39d847d46023d9090261a658f.png", + "aggregators": ["CoinMarketCap", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x368c5290b13caa10284db58b4ad4f3e9ee8bf4c9": { + "address": "0x368c5290b13caa10284db58b4ad4f3e9ee8bf4c9", + "symbol": "KKO", + "decimals": 18, + "name": "Kineko", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x368c5290b13caa10284db58b4ad4f3e9ee8bf4c9.png", + "aggregators": ["CoinMarketCap", "Rango", "SushiSwap"], + "occurrences": 3 + }, + "0x04e0af0af1b7f0023c6b12af5a94df59b0e8cf59": { + "address": "0x04e0af0af1b7f0023c6b12af5a94df59b0e8cf59", + "symbol": "SETS", + "decimals": 18, + "name": "Sensitrust", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x04e0af0af1b7f0023c6b12af5a94df59b0e8cf59.png", + "aggregators": ["CoinMarketCap", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x514cdb9cd8a2fb2bdcf7a3b8ddd098caf466e548": { + "address": "0x514cdb9cd8a2fb2bdcf7a3b8ddd098caf466e548", + "symbol": "REDPANDA", + "decimals": 9, + "name": "Red Panda", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x514cdb9cd8a2fb2bdcf7a3b8ddd098caf466e548.png", + "aggregators": ["CoinMarketCap", "Socket", "Rubic"], + "occurrences": 3 + }, + "0x286c0936c7eaf6651099ab5dab9ee5a6cb5d229d": { + "address": "0x286c0936c7eaf6651099ab5dab9ee5a6cb5d229d", + "symbol": "KWIK", + "decimals": 18, + "name": "Kwikswap", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x286c0936c7eaf6651099ab5dab9ee5a6cb5d229d.png", + "aggregators": ["CoinMarketCap", "LiFi", "Rubic"], + "occurrences": 3 + }, + "0x40955d77f87123b71b145098358a60573ac7be96": { + "address": "0x40955d77f87123b71b145098358a60573ac7be96", + "symbol": "DAISY", + "decimals": 18, + "name": "Daisy Launch Pad", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x40955d77f87123b71b145098358a60573ac7be96.png", + "aggregators": ["CoinMarketCap", "Rubic", "Rango"], + "occurrences": 3 + }, + "0xb53de031602cd825febe9f2eedf962cd8cc3805d": { + "address": "0xb53de031602cd825febe9f2eedf962cd8cc3805d", + "symbol": "CHAOS", + "decimals": 18, + "name": "ZKCHAOS", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xb53de031602cd825febe9f2eedf962cd8cc3805d.png", + "aggregators": ["CoinMarketCap", "LiFi", "Rubic"], + "occurrences": 3 + }, + "0xd85ad783cc94bd04196a13dc042a3054a9b52210": { + "address": "0xd85ad783cc94bd04196a13dc042a3054a9b52210", + "symbol": "HAKA", + "decimals": 18, + "name": "TribeOne", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xd85ad783cc94bd04196a13dc042a3054a9b52210.png", + "aggregators": ["CoinMarketCap", "Rubic", "Rango"], + "occurrences": 3 + }, + "0xc9f1016d336ef77aee75fc11ad64c5ecf9121332": { + "address": "0xc9f1016d336ef77aee75fc11ad64c5ecf9121332", + "symbol": "SAT", + "decimals": 18, + "name": "SoMee Advertising Token V2", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xc9f1016d336ef77aee75fc11ad64c5ecf9121332.png", + "aggregators": ["CoinMarketCap", "Socket", "Rubic"], + "occurrences": 3 + }, + "0x88cb253d4c8cab8cdf7948a9251db85a13669e23": { + "address": "0x88cb253d4c8cab8cdf7948a9251db85a13669e23", + "symbol": "YLDY", + "decimals": 18, + "name": "Yieldly", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x88cb253d4c8cab8cdf7948a9251db85a13669e23.png", + "aggregators": ["CoinMarketCap", "LiFi", "Rubic"], + "occurrences": 3 + }, + "0x72a66e54b66892ae3bbe54df7bb7dd5ae927a6f9": { + "address": "0x72a66e54b66892ae3bbe54df7bb7dd5ae927a6f9", + "symbol": "CVAG", + "decimals": 18, + "name": "Crypto Village Accelerator", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x72a66e54b66892ae3bbe54df7bb7dd5ae927a6f9.png", + "aggregators": ["CoinMarketCap", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x9b31bb425d8263fa1b8b9d090b83cf0c31665355": { + "address": "0x9b31bb425d8263fa1b8b9d090b83cf0c31665355", + "symbol": "CPD", + "decimals": 18, + "name": "Coinspaid", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x9b31bb425d8263fa1b8b9d090b83cf0c31665355.png", + "aggregators": ["CoinMarketCap", "LiFi", "Rubic"], + "occurrences": 3 + }, + "0xb0e1fc65c1a741b4662b813eb787d369b8614af1": { + "address": "0xb0e1fc65c1a741b4662b813eb787d369b8614af1", + "symbol": "IF", + "decimals": 18, + "name": "Impossible Finance", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xb0e1fc65c1a741b4662b813eb787d369b8614af1.png", + "aggregators": ["CoinMarketCap", "LiFi", "Rubic"], + "occurrences": 3 + }, + "0xac8e13ecc30da7ff04b842f21a62a1fb0f10ebd5": { + "address": "0xac8e13ecc30da7ff04b842f21a62a1fb0f10ebd5", + "symbol": "BABYDOGE", + "decimals": 9, + "name": "BabyDoge Coin", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xac8e13ecc30da7ff04b842f21a62a1fb0f10ebd5.png", + "aggregators": ["CoinMarketCap", "Socket", "Rubic"], + "occurrences": 3 + }, + "0xda007777d86ac6d989cc9f79a73261b3fc5e0da0": { + "address": "0xda007777d86ac6d989cc9f79a73261b3fc5e0da0", + "symbol": "NODE", + "decimals": 18, + "name": "DAppNode DAO Token", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xda007777d86ac6d989cc9f79a73261b3fc5e0da0.png", + "aggregators": ["CoinMarketCap", "Socket", "Rubic"], + "occurrences": 3 + }, + "0x403d512ab96103562dcafe4635545e8ee2753f6e": { + "address": "0x403d512ab96103562dcafe4635545e8ee2753f6e", + "symbol": "WILD", + "decimals": 18, + "name": "WILD", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x403d512ab96103562dcafe4635545e8ee2753f6e.png", + "aggregators": ["CoinMarketCap", "Socket", "Rubic"], + "occurrences": 3 + }, + "0xc382e04099a435439725bb40647e2b32dc136806": { + "address": "0xc382e04099a435439725bb40647e2b32dc136806", + "symbol": "COGE", + "decimals": 18, + "name": "Cogecoin", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xc382e04099a435439725bb40647e2b32dc136806.png", + "aggregators": ["CoinMarketCap", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x969786c4a8884013d1c9ff18dcca2aedbbbfaa8f": { + "address": "0x969786c4a8884013d1c9ff18dcca2aedbbbfaa8f", + "symbol": "LFG", + "decimals": 18, + "name": "LFG Token [via ChainPort.io]", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x969786c4a8884013d1c9ff18dcca2aedbbbfaa8f.png", + "aggregators": ["CoinMarketCap", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x302cae5dcf8f051d0177043c3438020b89b33218": { + "address": "0x302cae5dcf8f051d0177043c3438020b89b33218", + "symbol": "BOOST", + "decimals": 18, + "name": "Boost Coin", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x302cae5dcf8f051d0177043c3438020b89b33218.png", + "aggregators": ["CoinMarketCap", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x4fadc7a98f2dc96510e42dd1a74141eeae0c1543": { + "address": "0x4fadc7a98f2dc96510e42dd1a74141eeae0c1543", + "symbol": "WAR", + "decimals": 12, + "name": "Wrapped AR", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x4fadc7a98f2dc96510e42dd1a74141eeae0c1543.png", + "aggregators": ["CoinMarketCap", "Socket", "Rubic"], + "occurrences": 3 + }, + "0x4455ef8b4b4a007a93daa12de63a47eeac700d9d": { + "address": "0x4455ef8b4b4a007a93daa12de63a47eeac700d9d", + "symbol": "KNIGHT", + "decimals": 18, + "name": "Forest Knight", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x4455ef8b4b4a007a93daa12de63a47eeac700d9d.png", + "aggregators": ["CoinMarketCap", "Socket", "Rubic"], + "occurrences": 3 + }, + "0x0000000de40dfa9b17854cbc7869d80f9f98d823": { + "address": "0x0000000de40dfa9b17854cbc7869d80f9f98d823", + "symbol": "DLTA", + "decimals": 18, + "name": "delta.theta", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x0000000de40dfa9b17854cbc7869d80f9f98d823.png", + "aggregators": ["CoinMarketCap", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x0a0e3bfd5a8ce610e735d4469bc1b3b130402267": { + "address": "0x0a0e3bfd5a8ce610e735d4469bc1b3b130402267", + "symbol": "ERP", + "decimals": 18, + "name": "Entropy", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x0a0e3bfd5a8ce610e735d4469bc1b3b130402267.png", + "aggregators": ["CoinMarketCap", "LiFi", "Rubic"], + "occurrences": 3 + }, + "0xf009f5531de69067435e32c4b9d36077f4c4a673": { + "address": "0xf009f5531de69067435e32c4b9d36077f4c4a673", + "symbol": "UNV", + "decimals": 18, + "name": "Unvest", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xf009f5531de69067435e32c4b9d36077f4c4a673.png", + "aggregators": ["CoinMarketCap", "Socket", "Rubic"], + "occurrences": 3 + }, + "0xeb494890465f49c2b94457d9b61811392e5b1fea": { + "address": "0xeb494890465f49c2b94457d9b61811392e5b1fea", + "symbol": "SLAB", + "decimals": 9, + "name": "SLINK LABS", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xeb494890465f49c2b94457d9b61811392e5b1fea.png", + "aggregators": ["CoinMarketCap", "Socket", "Rubic"], + "occurrences": 3 + }, + "0xf6e06b54855eff198a2d9a8686113665499a6134": { + "address": "0xf6e06b54855eff198a2d9a8686113665499a6134", + "symbol": "CELT", + "decimals": 18, + "name": "Celestial", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xf6e06b54855eff198a2d9a8686113665499a6134.png", + "aggregators": ["CoinMarketCap", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x28c5805b64d163588a909012a628b5a03c1041f9": { + "address": "0x28c5805b64d163588a909012a628b5a03c1041f9", + "symbol": "CHOPPER", + "decimals": 9, + "name": "CHOPPER INU", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x28c5805b64d163588a909012a628b5a03c1041f9.png", + "aggregators": ["CoinMarketCap", "Socket", "Rubic"], + "occurrences": 3 + }, + "0x5c761c1a21637362374204000e383204d347064c": { + "address": "0x5c761c1a21637362374204000e383204d347064c", + "symbol": "CHIZ", + "decimals": 18, + "name": "SRSC Chiz Token", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x5c761c1a21637362374204000e383204d347064c.png", + "aggregators": ["CoinMarketCap", "LiFi", "Rubic"], + "occurrences": 3 + }, + "0xfa898efdb91e35bd311c45b9b955f742b6719aa2": { + "address": "0xfa898efdb91e35bd311c45b9b955f742b6719aa2", + "symbol": "APED", + "decimals": 18, + "name": "Baddest Alpha Ape Bundle", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xfa898efdb91e35bd311c45b9b955f742b6719aa2.png", + "aggregators": ["CoinMarketCap", "Socket", "Rubic"], + "occurrences": 3 + }, + "0xc6065b9fc8171ad3d29bad510709249681758972": { + "address": "0xc6065b9fc8171ad3d29bad510709249681758972", + "symbol": "WFAIR", + "decimals": 18, + "name": "WFAIR Token", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xc6065b9fc8171ad3d29bad510709249681758972.png", + "aggregators": ["CoinMarketCap", "LiFi", "Rubic"], + "occurrences": 3 + }, + "0x71dc40668682a124231301414167e4cf7f55383c": { + "address": "0x71dc40668682a124231301414167e4cf7f55383c", + "symbol": "MIMIR", + "decimals": 18, + "name": "Mimir Token", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x71dc40668682a124231301414167e4cf7f55383c.png", + "aggregators": ["CoinMarketCap", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x296233e84c1d7bff11121bf6d60f0ffa39c3f0cf": { + "address": "0x296233e84c1d7bff11121bf6d60f0ffa39c3f0cf", + "symbol": "NOONE", + "decimals": 9, + "name": "No one", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x296233e84c1d7bff11121bf6d60f0ffa39c3f0cf.png", + "aggregators": ["CoinMarketCap", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x3085154623f51b00dedfc6ceeb5197277a66b17b": { + "address": "0x3085154623f51b00dedfc6ceeb5197277a66b17b", + "symbol": "NFTY", + "decimals": 18, + "name": "NIFTY", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x3085154623f51b00dedfc6ceeb5197277a66b17b.png", + "aggregators": ["Metamask", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x8281ee37f164c0e26e6b6f87e7695baac256df07": { + "address": "0x8281ee37f164c0e26e6b6f87e7695baac256df07", + "symbol": "DAC", + "decimals": 18, + "name": "DegenArts.com Coin", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x8281ee37f164c0e26e6b6f87e7695baac256df07.png", + "aggregators": ["CoinMarketCap", "LiFi", "Rubic"], + "occurrences": 3 + }, + "0x12b54baa8ffcfd6679ccf1ae618ca3006cfcc2ac": { + "address": "0x12b54baa8ffcfd6679ccf1ae618ca3006cfcc2ac", + "symbol": "CHLI", + "decimals": 18, + "name": "ChilliSwap Token", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x12b54baa8ffcfd6679ccf1ae618ca3006cfcc2ac.png", + "aggregators": ["CoinMarketCap", "LiFi", "Rubic"], + "occurrences": 3 + }, + "0x714bfd06da6eb24fac379f0d9debfa85261bf439": { + "address": "0x714bfd06da6eb24fac379f0d9debfa85261bf439", + "symbol": "EEUR", + "decimals": 6, + "name": "e-Money EUR", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x714bfd06da6eb24fac379f0d9debfa85261bf439.png", + "aggregators": ["CoinMarketCap", "Socket", "Rubic"], + "occurrences": 3 + }, + "0x06874f973dc3c96dc22a10ef0d0609f877f335ea": { + "address": "0x06874f973dc3c96dc22a10ef0d0609f877f335ea", + "symbol": "STA", + "decimals": 18, + "name": "STA", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x06874f973dc3c96dc22a10ef0d0609f877f335ea.png", + "aggregators": ["CoinMarketCap", "Rubic", "Rango"], + "occurrences": 3 + }, + "0xc229c69eb3bb51828d0caa3509a05a51083898dd": { + "address": "0xc229c69eb3bb51828d0caa3509a05a51083898dd", + "symbol": "PTU", + "decimals": 18, + "name": "Pintu Token", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xc229c69eb3bb51828d0caa3509a05a51083898dd.png", + "aggregators": ["CoinMarketCap", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x47b9f01b16e9c9cb99191dca68c9cc5bf6403957": { + "address": "0x47b9f01b16e9c9cb99191dca68c9cc5bf6403957", + "symbol": "ONSTON", + "decimals": 18, + "name": "ONSTON", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x47b9f01b16e9c9cb99191dca68c9cc5bf6403957.png", + "aggregators": ["CoinMarketCap", "Rubic", "Rango"], + "occurrences": 3 + }, + "0xf6650117017ffd48b725b4ec5a00b414097108a7": { + "address": "0xf6650117017ffd48b725b4ec5a00b414097108a7", + "symbol": "XIDO", + "decimals": 18, + "name": "XIDO FINANCE", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xf6650117017ffd48b725b4ec5a00b414097108a7.png", + "aggregators": ["CoinMarketCap", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x2a2550e0a75acec6d811ae3930732f7f3ad67588": { + "address": "0x2a2550e0a75acec6d811ae3930732f7f3ad67588", + "symbol": "PATH", + "decimals": 18, + "name": "PathDao", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x2a2550e0a75acec6d811ae3930732f7f3ad67588.png", + "aggregators": ["CoinMarketCap", "Rubic", "Bancor"], + "occurrences": 3 + }, + "0x93ad9b819c88d98b4c9641470a96e24769ae7922": { + "address": "0x93ad9b819c88d98b4c9641470a96e24769ae7922", + "symbol": "KRX", + "decimals": 9, + "name": "KRYZA Exchange", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x93ad9b819c88d98b4c9641470a96e24769ae7922.png", + "aggregators": ["CoinMarketCap", "Rubic", "Rango"], + "occurrences": 3 + }, + "0xc84d8d03aa41ef941721a4d77b24bb44d7c7ac55": { + "address": "0xc84d8d03aa41ef941721a4d77b24bb44d7c7ac55", + "symbol": "ECC", + "decimals": 9, + "name": "Empire Capital", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xc84d8d03aa41ef941721a4d77b24bb44d7c7ac55.png", + "aggregators": ["CoinMarketCap", "Socket", "Rubic"], + "occurrences": 3 + }, + "0x4fee21439f2b95b72da2f9f901b3956f27fe91d5": { + "address": "0x4fee21439f2b95b72da2f9f901b3956f27fe91d5", + "symbol": "FROG", + "decimals": 18, + "name": "FrogSwap", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x4fee21439f2b95b72da2f9f901b3956f27fe91d5.png", + "aggregators": ["CoinMarketCap", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x443b29fc978058abe3fc2f4c3c6b76c57fdecc02": { + "address": "0x443b29fc978058abe3fc2f4c3c6b76c57fdecc02", + "symbol": "IDEAS", + "decimals": 18, + "name": "IDEAS", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x443b29fc978058abe3fc2f4c3c6b76c57fdecc02.png", + "aggregators": ["CoinMarketCap", "Socket", "Rubic"], + "occurrences": 3 + }, + "0xd1b624f07a4d9b3e3746e33cb58f42df079b5444": { + "address": "0xd1b624f07a4d9b3e3746e33cb58f42df079b5444", + "symbol": "NKCLC", + "decimals": 18, + "name": "NKCL Classic", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xd1b624f07a4d9b3e3746e33cb58f42df079b5444.png", + "aggregators": ["CoinMarketCap", "Rubic", "Rango"], + "occurrences": 3 + }, + "0xa808b22ffd2c472ad1278088f16d4010e6a54d5f": { + "address": "0xa808b22ffd2c472ad1278088f16d4010e6a54d5f", + "symbol": "REFI", + "decimals": 18, + "name": "ReFi", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xa808b22ffd2c472ad1278088f16d4010e6a54d5f.png", + "aggregators": ["CoinMarketCap", "LiFi", "Rubic"], + "occurrences": 3 + }, + "0x0944d5848bd9f60a34ba92aea300d4286696eb76": { + "address": "0x0944d5848bd9f60a34ba92aea300d4286696eb76", + "symbol": "PLT", + "decimals": 18, + "name": "Palette Token", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x0944d5848bd9f60a34ba92aea300d4286696eb76.png", + "aggregators": ["CoinMarketCap", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x95b4e47025372ded4b73f9b5f0671b94a81445bc": { + "address": "0x95b4e47025372ded4b73f9b5f0671b94a81445bc", + "symbol": "PLAY", + "decimals": 9, + "name": "InfinityGaming", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x95b4e47025372ded4b73f9b5f0671b94a81445bc.png", + "aggregators": ["CoinMarketCap", "Socket", "Rubic"], + "occurrences": 3 + }, + "0xd15a1a2a3211b58113e45809f05934252e34e2f8": { + "address": "0xd15a1a2a3211b58113e45809f05934252e34e2f8", + "symbol": "WZM", + "decimals": 18, + "name": "Woozoo Music", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xd15a1a2a3211b58113e45809f05934252e34e2f8.png", + "aggregators": ["CoinMarketCap", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x67cc621ab2d086a101cff3340df0a065ac75827c": { + "address": "0x67cc621ab2d086a101cff3340df0a065ac75827c", + "symbol": "FLOKI", + "decimals": 18, + "name": "Floki Musk", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x67cc621ab2d086a101cff3340df0a065ac75827c.png", + "aggregators": ["CoinMarketCap", "Socket", "Rubic"], + "occurrences": 3 + }, + "0x89509aa1d14a8e1e5364ec4c3b041213bcdbe08d": { + "address": "0x89509aa1d14a8e1e5364ec4c3b041213bcdbe08d", + "symbol": "ZURR", + "decimals": 18, + "name": "ZURRENCY", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x89509aa1d14a8e1e5364ec4c3b041213bcdbe08d.png", + "aggregators": ["CoinMarketCap", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x19ac2659599fd01c853de846919544276ad26f50": { + "address": "0x19ac2659599fd01c853de846919544276ad26f50", + "symbol": "COVN", + "decimals": 18, + "name": "Covenant", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x19ac2659599fd01c853de846919544276ad26f50.png", + "aggregators": ["CoinMarketCap", "Rubic", "Rango"], + "occurrences": 3 + }, + "0xbe9ab37a414c517b2be2bfa5945665bb07379054": { + "address": "0xbe9ab37a414c517b2be2bfa5945665bb07379054", + "symbol": "TOMS", + "decimals": 18, + "name": "TomTomCoin", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xbe9ab37a414c517b2be2bfa5945665bb07379054.png", + "aggregators": ["CoinMarketCap", "Rubic", "Rango"], + "occurrences": 3 + }, + "0xed025a9fe4b30bcd68460bca42583090c2266468": { + "address": "0xed025a9fe4b30bcd68460bca42583090c2266468", + "symbol": "RPC", + "decimals": 18, + "name": "Ripio Coin", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xed025a9fe4b30bcd68460bca42583090c2266468.png", + "aggregators": ["CoinMarketCap", "LiFi", "Rubic"], + "occurrences": 3 + }, + "0x822757d09a8d5db5874be7f367eafae2af32d64b": { + "address": "0x822757d09a8d5db5874be7f367eafae2af32d64b", + "symbol": "ONI", + "decimals": 18, + "name": "ONINO", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x822757d09a8d5db5874be7f367eafae2af32d64b.png", + "aggregators": ["CoinMarketCap", "Socket", "Rubic"], + "occurrences": 3 + }, + "0xd4e12b224c316664ebb647f69abc1fb8bb2697c7": { + "address": "0xd4e12b224c316664ebb647f69abc1fb8bb2697c7", + "symbol": "BRIBE", + "decimals": 18, + "name": "Bribe Token", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xd4e12b224c316664ebb647f69abc1fb8bb2697c7.png", + "aggregators": ["CoinMarketCap", "Socket", "Rubic"], + "occurrences": 3 + }, + "0x882e5b370d595e50c24b2a0e7a94e87cc32adda1": { + "address": "0x882e5b370d595e50c24b2a0e7a94e87cc32adda1", + "symbol": "GAME", + "decimals": 18, + "name": "Game", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x882e5b370d595e50c24b2a0e7a94e87cc32adda1.png", + "aggregators": ["CoinMarketCap", "Socket", "Rubic"], + "occurrences": 3 + }, + "0xb5f1457d6fba1956fb8d31b0b7caca14bde0be4b": { + "address": "0xb5f1457d6fba1956fb8d31b0b7caca14bde0be4b", + "symbol": "STILT", + "decimals": 9, + "name": "Stilton", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xb5f1457d6fba1956fb8d31b0b7caca14bde0be4b.png", + "aggregators": ["CoinMarketCap", "Rubic", "Rango"], + "occurrences": 3 + }, + "0xfe459828c90c0ba4bc8b42f5c5d44f316700b430": { + "address": "0xfe459828c90c0ba4bc8b42f5c5d44f316700b430", + "symbol": "BBS", + "decimals": 18, + "name": "BBS", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xfe459828c90c0ba4bc8b42f5c5d44f316700b430.png", + "aggregators": ["CoinMarketCap", "Rubic", "Bancor"], + "occurrences": 3 + }, + "0x6f9c26fa731c7ea4139fa669962cf8f1ce6c8b0b": { + "address": "0x6f9c26fa731c7ea4139fa669962cf8f1ce6c8b0b", + "symbol": "OATH", + "decimals": 18, + "name": "Oath Token", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x6f9c26fa731c7ea4139fa669962cf8f1ce6c8b0b.png", + "aggregators": ["CoinMarketCap", "Socket", "Rubic"], + "occurrences": 3 + }, + "0x5380442d3c4ec4f5777f551f5edd2fa0f691a27c": { + "address": "0x5380442d3c4ec4f5777f551f5edd2fa0f691a27c", + "symbol": "LOVE", + "decimals": 18, + "name": "UkraineDAO Flag NFT", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x5380442d3c4ec4f5777f551f5edd2fa0f691a27c.png", + "aggregators": ["CoinMarketCap", "Socket", "Rubic"], + "occurrences": 3 + }, + "0x8df586aa346c3d9d1c99a21316a2735d71355ec8": { + "address": "0x8df586aa346c3d9d1c99a21316a2735d71355ec8", + "symbol": "WSB", + "decimals": 18, + "name": "Wallstreetbets", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x8df586aa346c3d9d1c99a21316a2735d71355ec8.png", + "aggregators": ["CoinMarketCap", "Socket", "Rubic"], + "occurrences": 3 + }, + "0x234d51ee02be808a0160b19b689660fb7bfa871b": { + "address": "0x234d51ee02be808a0160b19b689660fb7bfa871b", + "symbol": "SCAN", + "decimals": 9, + "name": "CoinScan", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x234d51ee02be808a0160b19b689660fb7bfa871b.png", + "aggregators": ["CoinMarketCap", "Socket", "Rubic"], + "occurrences": 3 + }, + "0x6dde4ffd6db302bc9a46850f61399e082f6c2122": { + "address": "0x6dde4ffd6db302bc9a46850f61399e082f6c2122", + "symbol": "IAI", + "decimals": 18, + "name": "inheritance Art", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x6dde4ffd6db302bc9a46850f61399e082f6c2122.png", + "aggregators": ["CoinMarketCap", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x00e679ba63b509182c349f5614f0a07cdd0ce0c5": { + "address": "0x00e679ba63b509182c349f5614f0a07cdd0ce0c5", + "symbol": "DAMEX", + "decimals": 18, + "name": "Damex Token", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x00e679ba63b509182c349f5614f0a07cdd0ce0c5.png", + "aggregators": ["CoinMarketCap", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x22987407fd1fc5a971e3fda3b3e74c88666cda91": { + "address": "0x22987407fd1fc5a971e3fda3b3e74c88666cda91", + "symbol": "SRT", + "decimals": 18, + "name": "Smart Reward Token", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x22987407fd1fc5a971e3fda3b3e74c88666cda91.png", + "aggregators": ["CoinMarketCap", "Rubic", "Rango"], + "occurrences": 3 + }, + "0xf81421fc15300c5a8cca9afe12f5cbad502fa756": { + "address": "0xf81421fc15300c5a8cca9afe12f5cbad502fa756", + "symbol": "CRDC", + "decimals": 18, + "name": "Cardiocoin", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xf81421fc15300c5a8cca9afe12f5cbad502fa756.png", + "aggregators": ["CoinMarketCap", "Rubic", "Rango"], + "occurrences": 3 + }, + "0xce108380c39e4fe9dace9d5597e048bcc5ef743b": { + "address": "0xce108380c39e4fe9dace9d5597e048bcc5ef743b", + "symbol": "BLUES", + "decimals": 18, + "name": "Blueshift", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xce108380c39e4fe9dace9d5597e048bcc5ef743b.png", + "aggregators": ["CoinMarketCap", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x559ebc30b0e58a45cc9ff573f77ef1e5eb1b3e18": { + "address": "0x559ebc30b0e58a45cc9ff573f77ef1e5eb1b3e18", + "symbol": "VOLT", + "decimals": 18, + "name": "VOLT", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x559ebc30b0e58a45cc9ff573f77ef1e5eb1b3e18.png", + "aggregators": ["CoinMarketCap", "LiFi", "Socket"], + "occurrences": 3 + }, + "0x5a56da75c50aa2733f5fa9a2442aaefcbc60b2e6": { + "address": "0x5a56da75c50aa2733f5fa9a2442aaefcbc60b2e6", + "symbol": "CXD", + "decimals": 18, + "name": "Cortex DAO Token", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x5a56da75c50aa2733f5fa9a2442aaefcbc60b2e6.png", + "aggregators": ["CoinMarketCap", "Socket", "Rubic"], + "occurrences": 3 + }, + "0xb668473944d2e25b6af6d46917eb0233dbac53ae": { + "address": "0xb668473944d2e25b6af6d46917eb0233dbac53ae", + "symbol": "NTO", + "decimals": 18, + "name": "Neton", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xb668473944d2e25b6af6d46917eb0233dbac53ae.png", + "aggregators": ["CoinMarketCap", "Rubic", "Rango"], + "occurrences": 3 + }, + "0xb7c2fcd6d7922eddd2a7a9b0524074a60d5b472c": { + "address": "0xb7c2fcd6d7922eddd2a7a9b0524074a60d5b472c", + "symbol": "VST", + "decimals": 18, + "name": "VentiSwap Token", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xb7c2fcd6d7922eddd2a7a9b0524074a60d5b472c.png", + "aggregators": ["CoinMarketCap", "Socket", "Rubic"], + "occurrences": 3 + }, + "0x22b48e1f20043d1db5f2a11cbf1d520a4f20b198": { + "address": "0x22b48e1f20043d1db5f2a11cbf1d520a4f20b198", + "symbol": "XOT", + "decimals": 18, + "name": "Okuru", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x22b48e1f20043d1db5f2a11cbf1d520a4f20b198.png", + "aggregators": ["CoinMarketCap", "Rubic", "Rango"], + "occurrences": 3 + }, + "0xb8919522331c59f5c16bdfaa6a121a6e03a91f62": { + "address": "0xb8919522331c59f5c16bdfaa6a121a6e03a91f62", + "symbol": "HOME", + "decimals": 6, + "name": "Home", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xb8919522331c59f5c16bdfaa6a121a6e03a91f62.png", + "aggregators": ["Metamask", "LiFi", "Rubic"], + "occurrences": 3 + }, + "0xceeb07dd26b36287b6d109f0b06d7e8202ce8c1d": { + "address": "0xceeb07dd26b36287b6d109f0b06d7e8202ce8c1d", + "symbol": "GOTG", + "decimals": 18, + "name": "Got Guaranteed", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xceeb07dd26b36287b6d109f0b06d7e8202ce8c1d.png", + "aggregators": ["CoinMarketCap", "Rubic", "Rango"], + "occurrences": 3 + }, + "0xb70eaf5d316192881aac8786c90b7907b83f02e8": { + "address": "0xb70eaf5d316192881aac8786c90b7907b83f02e8", + "symbol": "RESET", + "decimals": 18, + "name": "MetaReset", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xb70eaf5d316192881aac8786c90b7907b83f02e8.png", + "aggregators": ["CoinMarketCap", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x4b13006980acb09645131b91d259eaa111eaf5ba": { + "address": "0x4b13006980acb09645131b91d259eaa111eaf5ba", + "symbol": "MYC", + "decimals": 18, + "name": "Mycelium", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x4b13006980acb09645131b91d259eaa111eaf5ba.png", + "aggregators": ["CoinMarketCap", "Socket", "Rubic"], + "occurrences": 3 + }, + "0x63f7b1b538a78cb699e5399621b3d2e047c40de4": { + "address": "0x63f7b1b538a78cb699e5399621b3d2e047c40de4", + "symbol": "MAX", + "decimals": 18, + "name": "Maxity", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x63f7b1b538a78cb699e5399621b3d2e047c40de4.png", + "aggregators": ["CoinMarketCap", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x3c4008eca800ec1283e4cf500e68d06bfabc00a8": { + "address": "0x3c4008eca800ec1283e4cf500e68d06bfabc00a8", + "symbol": "HAO", + "decimals": 18, + "name": "HistoryDAO", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x3c4008eca800ec1283e4cf500e68d06bfabc00a8.png", + "aggregators": ["CoinMarketCap", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x67954768e721fad0f0f21e33e874497c73ed6a82": { + "address": "0x67954768e721fad0f0f21e33e874497c73ed6a82", + "symbol": "KEK", + "decimals": 18, + "name": "KeKChain", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x67954768e721fad0f0f21e33e874497c73ed6a82.png", + "aggregators": ["CoinMarketCap", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x6ccf1c009416b57bc19218db3a4ebbf7afd52afd": { + "address": "0x6ccf1c009416b57bc19218db3a4ebbf7afd52afd", + "symbol": "SHIBC", + "decimals": 18, + "name": "Shiba Classic", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x6ccf1c009416b57bc19218db3a4ebbf7afd52afd.png", + "aggregators": ["CoinMarketCap", "Socket", "Rubic"], + "occurrences": 3 + }, + "0x1ea48b9965bb5086f3b468e50ed93888a661fc17": { + "address": "0x1ea48b9965bb5086f3b468e50ed93888a661fc17", + "symbol": "MON", + "decimals": 18, + "name": "Moneta", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x1ea48b9965bb5086f3b468e50ed93888a661fc17.png", + "aggregators": ["CoinMarketCap", "Socket", "Rubic"], + "occurrences": 3 + }, + "0xc5a9bc46a7dbe1c6de493e84a18f02e70e2c5a32": { + "address": "0xc5a9bc46a7dbe1c6de493e84a18f02e70e2c5a32", + "symbol": "WCI", + "decimals": 9, + "name": "WORLD CUP INU", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xc5a9bc46a7dbe1c6de493e84a18f02e70e2c5a32.png", + "aggregators": ["CoinMarketCap", "Socket", "Rubic"], + "occurrences": 3 + }, + "0xa719cb79af39a9c10eda2755e0938bce35e9de24": { + "address": "0xa719cb79af39a9c10eda2755e0938bce35e9de24", + "symbol": "SEAN", + "decimals": 18, + "name": "Starfish Finance", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xa719cb79af39a9c10eda2755e0938bce35e9de24.png", + "aggregators": ["CoinMarketCap", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x849c479d7a90eb378dbd00e8f166371176244eb1": { + "address": "0x849c479d7a90eb378dbd00e8f166371176244eb1", + "symbol": "MUU", + "decimals": 9, + "name": "MUU", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x849c479d7a90eb378dbd00e8f166371176244eb1.png", + "aggregators": ["CoinMarketCap", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x508626d9a29d13eba26f843a2bd7bf7b00a45be5": { + "address": "0x508626d9a29d13eba26f843a2bd7bf7b00a45be5", + "symbol": "KALE", + "decimals": 18, + "name": "Kale Currency", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x508626d9a29d13eba26f843a2bd7bf7b00a45be5.png", + "aggregators": ["CoinMarketCap", "Socket", "Rubic"], + "occurrences": 3 + }, + "0x9565c2036963697786705120fc59310f747bcfd0": { + "address": "0x9565c2036963697786705120fc59310f747bcfd0", + "symbol": "PP", + "decimals": 18, + "name": "PoorPleb", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x9565c2036963697786705120fc59310f747bcfd0.png", + "aggregators": ["CoinMarketCap", "Socket", "Rubic"], + "occurrences": 3 + }, + "0x9d93692e826a4bd9e903e2a27d7fbd1e116efdad": { + "address": "0x9d93692e826a4bd9e903e2a27d7fbd1e116efdad", + "symbol": "POLY", + "decimals": 9, + "name": "Poly Maximus", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x9d93692e826a4bd9e903e2a27d7fbd1e116efdad.png", + "aggregators": ["CoinMarketCap", "Socket", "Rubic"], + "occurrences": 3 + }, + "0xfeeeef4d7b4bf3cc8bd012d02d32ba5fd3d51e31": { + "address": "0xfeeeef4d7b4bf3cc8bd012d02d32ba5fd3d51e31", + "symbol": "TAIL", + "decimals": 18, + "name": "Tail", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xfeeeef4d7b4bf3cc8bd012d02d32ba5fd3d51e31.png", + "aggregators": ["CoinMarketCap", "Rubic", "Rango"], + "occurrences": 3 + }, + "0xa3ad8c7ab6b731045b5b16e3fdf77975c71abe79": { + "address": "0xa3ad8c7ab6b731045b5b16e3fdf77975c71abe79", + "symbol": "DINERO", + "decimals": 18, + "name": "DINERO", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xa3ad8c7ab6b731045b5b16e3fdf77975c71abe79.png", + "aggregators": ["CoinMarketCap", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x2ffde077455f81e28baa675a46b9c085740216d4": { + "address": "0x2ffde077455f81e28baa675a46b9c085740216d4", + "symbol": "TCGC", + "decimals": 18, + "name": "TCGCoin", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x2ffde077455f81e28baa675a46b9c085740216d4.png", + "aggregators": ["CoinMarketCap", "Socket", "Rubic"], + "occurrences": 3 + }, + "0xd79f43113b22d1ea9f29cfcc7bb287489f8ee5e0": { + "address": "0xd79f43113b22d1ea9f29cfcc7bb287489f8ee5e0", + "symbol": "ZRO", + "decimals": 18, + "name": "PROTOCOL ZERO", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xd79f43113b22d1ea9f29cfcc7bb287489f8ee5e0.png", + "aggregators": ["CoinMarketCap", "Socket", "Rubic"], + "occurrences": 3 + }, + "0x5f190f9082878ca141f858c1c90b4c59fe2782c5": { + "address": "0x5f190f9082878ca141f858c1c90b4c59fe2782c5", + "symbol": "KDOE", + "decimals": 18, + "name": "Kudoe", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x5f190f9082878ca141f858c1c90b4c59fe2782c5.png", + "aggregators": ["CoinMarketCap", "LiFi", "Rubic"], + "occurrences": 3 + }, + "0xd4126f195a8de772eeffa61a4ab6dd43462f4e39": { + "address": "0xd4126f195a8de772eeffa61a4ab6dd43462f4e39", + "symbol": "HIKARI", + "decimals": 18, + "name": "Hikari Protocol", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xd4126f195a8de772eeffa61a4ab6dd43462f4e39.png", + "aggregators": ["CoinMarketCap", "Rubic", "Sonarwatch"], + "occurrences": 3 + }, + "0x7d8d7c26179b7a6aebbf66a91c38ed92d5b4996b": { + "address": "0x7d8d7c26179b7a6aebbf66a91c38ed92d5b4996b", + "symbol": "FUND", + "decimals": 18, + "name": "Teh Fund", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x7d8d7c26179b7a6aebbf66a91c38ed92d5b4996b.png", + "aggregators": ["CoinMarketCap", "Rubic", "Rango"], + "occurrences": 3 + }, + "0xb8fda5aee55120247f16225feff266dfdb381d4c": { + "address": "0xb8fda5aee55120247f16225feff266dfdb381d4c", + "symbol": "0X0", + "decimals": 18, + "name": "0x0 Token", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xb8fda5aee55120247f16225feff266dfdb381d4c.png", + "aggregators": ["CoinMarketCap", "Socket", "Rubic"], + "occurrences": 3 + }, + "0x4384b85fe228ae727b129230211194e4a50877c4": { + "address": "0x4384b85fe228ae727b129230211194e4a50877c4", + "symbol": "TAIL", + "decimals": 9, + "name": "Tail Finance", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x4384b85fe228ae727b129230211194e4a50877c4.png", + "aggregators": ["CoinMarketCap", "Socket", "Rubic"], + "occurrences": 3 + }, + "0xc89d9aa9d9e54bb196319c6195aea1038d2bc936": { + "address": "0xc89d9aa9d9e54bb196319c6195aea1038d2bc936", + "symbol": "TRENDX", + "decimals": 18, + "name": "Trend X", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xc89d9aa9d9e54bb196319c6195aea1038d2bc936.png", + "aggregators": ["CoinMarketCap", "Rubic", "Rango"], + "occurrences": 3 + }, + "0xd38b305cac06990c0887032a02c03d6839f770a8": { + "address": "0xd38b305cac06990c0887032a02c03d6839f770a8", + "symbol": "LGCT", + "decimals": 18, + "name": "Legacy Token", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xd38b305cac06990c0887032a02c03d6839f770a8.png", + "aggregators": ["CoinMarketCap", "Rubic", "Sonarwatch"], + "occurrences": 3 + }, + "0x20cdecbf5d56870b4068a255580a58d068446c92": { + "address": "0x20cdecbf5d56870b4068a255580a58d068446c92", + "symbol": "MONKEYS", + "decimals": 9, + "name": "Monkeys Token", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x20cdecbf5d56870b4068a255580a58d068446c92.png", + "aggregators": ["CoinMarketCap", "Socket", "Rubic"], + "occurrences": 3 + }, + "0x0f1e49d6dcfc9eefcce9d5ae3c660f8ead75061a": { + "address": "0x0f1e49d6dcfc9eefcce9d5ae3c660f8ead75061a", + "symbol": "VINLINK", + "decimals": 9, + "name": "VINLINK", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x0f1e49d6dcfc9eefcce9d5ae3c660f8ead75061a.png", + "aggregators": ["CoinMarketCap", "Rubic", "Rango"], + "occurrences": 3 + }, + "0xfe8546f4ac4180638edbc9ef9a5820450788e2ea": { + "address": "0xfe8546f4ac4180638edbc9ef9a5820450788e2ea", + "symbol": "POPO", + "decimals": 18, + "name": "Popo", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xfe8546f4ac4180638edbc9ef9a5820450788e2ea.png", + "aggregators": ["CoinMarketCap", "Socket", "Rubic"], + "occurrences": 3 + }, + "0x7bdf3ff2513a4f467bc25b7fd4b8404ad8126cb3": { + "address": "0x7bdf3ff2513a4f467bc25b7fd4b8404ad8126cb3", + "symbol": "MUSK", + "decimals": 18, + "name": "Elon Musk", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x7bdf3ff2513a4f467bc25b7fd4b8404ad8126cb3.png", + "aggregators": ["CoinMarketCap", "Socket", "Rubic"], + "occurrences": 3 + }, + "0x25722cd432d02895d9be45f5deb60fc479c8781e": { + "address": "0x25722cd432d02895d9be45f5deb60fc479c8781e", + "symbol": "SPONGE", + "decimals": 18, + "name": "Sponge OLD", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x25722cd432d02895d9be45f5deb60fc479c8781e.png", + "aggregators": ["CoinMarketCap", "Rubic", "Sonarwatch"], + "occurrences": 3 + }, + "0x4ffe9cc172527df1e40d0b2efe1e9f05884a13da": { + "address": "0x4ffe9cc172527df1e40d0b2efe1e9f05884a13da", + "symbol": "USA", + "decimals": 18, + "name": "DEDPRZ", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x4ffe9cc172527df1e40d0b2efe1e9f05884a13da.png", + "aggregators": ["CoinMarketCap", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x238cefec182679c27a3035713416fa0a8198b302": { + "address": "0x238cefec182679c27a3035713416fa0a8198b302", + "symbol": "GMEME", + "decimals": 18, + "name": "GoodMeme", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x238cefec182679c27a3035713416fa0a8198b302.png", + "aggregators": ["CoinMarketCap", "Rubic", "Rango"], + "occurrences": 3 + }, + "0xddd5592cf4759313c649eb4e624a79541ed222ed": { + "address": "0xddd5592cf4759313c649eb4e624a79541ed222ed", + "symbol": "PEPEXL", + "decimals": 18, + "name": "PepeXL", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xddd5592cf4759313c649eb4e624a79541ed222ed.png", + "aggregators": ["CoinMarketCap", "Rubic", "Rango"], + "occurrences": 3 + }, + "0xfe1ef2b469846d1832b25095ff51b004f090e0c6": { + "address": "0xfe1ef2b469846d1832b25095ff51b004f090e0c6", + "symbol": "PEPE", + "decimals": 18, + "name": "Pepe Coin", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xfe1ef2b469846d1832b25095ff51b004f090e0c6.png", + "aggregators": ["CoinMarketCap", "Socket", "Rubic"], + "occurrences": 3 + }, + "0xfe60fba03048effb4acf3f0088ec2f53d779d3bb": { + "address": "0xfe60fba03048effb4acf3f0088ec2f53d779d3bb", + "symbol": "3D3D", + "decimals": 18, + "name": "3d3d", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xfe60fba03048effb4acf3f0088ec2f53d779d3bb.png", + "aggregators": ["CoinMarketCap", "Rubic", "Rango"], + "occurrences": 3 + }, + "0xb435a47ecea7f5366b2520e45b9bed7e01d2ffae": { + "address": "0xb435a47ecea7f5366b2520e45b9bed7e01d2ffae", + "symbol": "NEMS", + "decimals": 18, + "name": "The Nemesis", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xb435a47ecea7f5366b2520e45b9bed7e01d2ffae.png", + "aggregators": ["CoinMarketCap", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x51fe05eac152494908ff1ebbd50e116e960baf64": { + "address": "0x51fe05eac152494908ff1ebbd50e116e960baf64", + "symbol": "XGPT", + "decimals": 18, + "name": "XGPT AI", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x51fe05eac152494908ff1ebbd50e116e960baf64.png", + "aggregators": ["CoinMarketCap", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x3267c5b73cc15e253b1a90c01366b17d560bc6fb": { + "address": "0x3267c5b73cc15e253b1a90c01366b17d560bc6fb", + "symbol": "RON", + "decimals": 9, + "name": "President Ron DeSantis", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x3267c5b73cc15e253b1a90c01366b17d560bc6fb.png", + "aggregators": ["CoinMarketCap", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x693c216aa181ebf776730d16c7ba06842548415e": { + "address": "0x693c216aa181ebf776730d16c7ba06842548415e", + "symbol": "PAPI", + "decimals": 18, + "name": "Papi", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x693c216aa181ebf776730d16c7ba06842548415e.png", + "aggregators": ["CoinMarketCap", "Socket", "Rubic"], + "occurrences": 3 + }, + "0x699060b76f0269c19171b4e193c0a792fa25cad7": { + "address": "0x699060b76f0269c19171b4e193c0a792fa25cad7", + "symbol": "RAGE", + "decimals": 18, + "name": "Rage", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x699060b76f0269c19171b4e193c0a792fa25cad7.png", + "aggregators": ["CoinMarketCap", "Socket", "Rubic"], + "occurrences": 3 + }, + "0xb22c05cedbf879a661fcc566b5a759d005cf7b4c": { + "address": "0xb22c05cedbf879a661fcc566b5a759d005cf7b4c", + "symbol": "LOVE", + "decimals": 18, + "name": "Love", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xb22c05cedbf879a661fcc566b5a759d005cf7b4c.png", + "aggregators": ["CoinMarketCap", "Socket", "Rubic"], + "occurrences": 3 + }, + "0x7c84d7e3829e004a49204d650883697bc7f06748": { + "address": "0x7c84d7e3829e004a49204d650883697bc7f06748", + "symbol": "TRUMP", + "decimals": 18, + "name": "Trump", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x7c84d7e3829e004a49204d650883697bc7f06748.png", + "aggregators": ["CoinMarketCap", "Socket", "Rubic"], + "occurrences": 3 + }, + "0x21b8bfbbefc9e2b9a994871ecd742a5132b98aed": { + "address": "0x21b8bfbbefc9e2b9a994871ecd742a5132b98aed", + "symbol": "CRE", + "decimals": 18, + "name": "Crypto Real Estate", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x21b8bfbbefc9e2b9a994871ecd742a5132b98aed.png", + "aggregators": ["CoinMarketCap", "Rubic", "Rango"], + "occurrences": 3 + }, + "0xfa46b726733559c3cbf27a54435a579db91cd7bf": { + "address": "0xfa46b726733559c3cbf27a54435a579db91cd7bf", + "symbol": "DON", + "decimals": 9, + "name": "President Donald Trump", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xfa46b726733559c3cbf27a54435a579db91cd7bf.png", + "aggregators": ["CoinMarketCap", "Socket", "Rubic"], + "occurrences": 3 + }, + "0xd8684adc4664bc2a0c78ddc8657dc005e804af15": { + "address": "0xd8684adc4664bc2a0c78ddc8657dc005e804af15", + "symbol": "CCD", + "decimals": 18, + "name": "CopyCat DAO", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xd8684adc4664bc2a0c78ddc8657dc005e804af15.png", + "aggregators": ["CoinMarketCap", "Rubic", "Rango"], + "occurrences": 3 + }, + "0xe1283567345349942acdfad3692924a1b16cf3cc": { + "address": "0xe1283567345349942acdfad3692924a1b16cf3cc", + "symbol": "AI", + "decimals": 18, + "name": "AiDoge", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xe1283567345349942acdfad3692924a1b16cf3cc.png", + "aggregators": ["CoinMarketCap", "Socket", "Rubic"], + "occurrences": 3 + }, + "0xa8388b8334beb4840d65ed80f858b080dffd7e2b": { + "address": "0xa8388b8334beb4840d65ed80f858b080dffd7e2b", + "symbol": "SOP", + "decimals": 18, + "name": "Son Of Pepe", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xa8388b8334beb4840d65ed80f858b080dffd7e2b.png", + "aggregators": ["CoinMarketCap", "Socket", "Rubic"], + "occurrences": 3 + }, + "0x265f542c1e78068f13d87c6fe0df54f3e9562a48": { + "address": "0x265f542c1e78068f13d87c6fe0df54f3e9562a48", + "symbol": "POP", + "decimals": 9, + "name": "Proof Of Pepe", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x265f542c1e78068f13d87c6fe0df54f3e9562a48.png", + "aggregators": ["CoinMarketCap", "Rubic", "Sonarwatch"], + "occurrences": 3 + }, + "0x089729b0786c8803cff972c16e402f3344d079ea": { + "address": "0x089729b0786c8803cff972c16e402f3344d079ea", + "symbol": "BGPT", + "decimals": 18, + "name": "BlockGPT", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x089729b0786c8803cff972c16e402f3344d079ea.png", + "aggregators": ["CoinMarketCap", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x695afdb42edff97af470a15920a66df81a234c0e": { + "address": "0x695afdb42edff97af470a15920a66df81a234c0e", + "symbol": "WMOXY", + "decimals": 18, + "name": "Moxy", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x695afdb42edff97af470a15920a66df81a234c0e.png", + "aggregators": ["CoinMarketCap", "Rubic", "Rango"], + "occurrences": 3 + }, + "0xca4b70beccabce29efa5bc5c86311e5d38461842": { + "address": "0xca4b70beccabce29efa5bc5c86311e5d38461842", + "symbol": "SYBL", + "decimals": 18, + "name": "Sybulls", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xca4b70beccabce29efa5bc5c86311e5d38461842.png", + "aggregators": ["CoinMarketCap", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x6fa5e1c43b5a466cbd1cae7993b67c982400d481": { + "address": "0x6fa5e1c43b5a466cbd1cae7993b67c982400d481", + "symbol": "COINBT", + "decimals": 18, + "name": "CoinBot", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x6fa5e1c43b5a466cbd1cae7993b67c982400d481.png", + "aggregators": ["CoinMarketCap", "Rubic", "Sonarwatch"], + "occurrences": 3 + }, + "0xb3fcdfb6db85847619e3dc20084faba152ffeafa": { + "address": "0xb3fcdfb6db85847619e3dc20084faba152ffeafa", + "symbol": "GBTC", + "decimals": 18, + "name": "Grayscale BTC Trust", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xb3fcdfb6db85847619e3dc20084faba152ffeafa.png", + "aggregators": ["CoinMarketCap", "Socket", "Rubic"], + "occurrences": 3 + }, + "0x70b790d0948a760e80bc3f892b142f7779b538b2": { + "address": "0x70b790d0948a760e80bc3f892b142f7779b538b2", + "symbol": "DORA", + "decimals": 18, + "name": "Dorayaki", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x70b790d0948a760e80bc3f892b142f7779b538b2.png", + "aggregators": ["CoinMarketCap", "Socket", "Rubic"], + "occurrences": 3 + }, + "0x226d6d842d49b4d757bef1632053a198d5d9c8aa": { + "address": "0x226d6d842d49b4d757bef1632053a198d5d9c8aa", + "symbol": "BLOCK", + "decimals": 18, + "name": "Block Browser", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x226d6d842d49b4d757bef1632053a198d5d9c8aa.png", + "aggregators": ["CoinMarketCap", "Rubic", "Sonarwatch"], + "occurrences": 3 + }, + "0x530824da86689c9c17cdc2871ff29b058345b44a": { + "address": "0x530824da86689c9c17cdc2871ff29b058345b44a", + "symbol": "STBT", + "decimals": 18, + "name": "Short-term Treasury Bill Token", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x530824da86689c9c17cdc2871ff29b058345b44a.png", + "aggregators": ["CoinMarketCap", "Socket", "Rubic"], + "occurrences": 3 + }, + "0xd27b128dc6536309cdebf7f1aff0cb7717bc0268": { + "address": "0xd27b128dc6536309cdebf7f1aff0cb7717bc0268", + "symbol": "ETE", + "decimals": 18, + "name": "EtherEmpires", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xd27b128dc6536309cdebf7f1aff0cb7717bc0268.png", + "aggregators": ["CoinMarketCap", "Rubic", "Rango"], + "occurrences": 3 + }, + "0xd66c27518e72be89999ab1e53c3d9ff73f7f2858": { + "address": "0xd66c27518e72be89999ab1e53c3d9ff73f7f2858", + "symbol": "TETHER", + "decimals": 8, + "name": "HermioneGrangerClintonAmberAmyRose9Inu", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xd66c27518e72be89999ab1e53c3d9ff73f7f2858.png", + "aggregators": ["CoinMarketCap", "Socket", "Rubic"], + "occurrences": 3 + }, + "0x60a26c05c5372dcded66940d2b56076bce925152": { + "address": "0x60a26c05c5372dcded66940d2b56076bce925152", + "symbol": "SILVER", + "decimals": 9, + "name": "SILVER", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x60a26c05c5372dcded66940d2b56076bce925152.png", + "aggregators": ["CoinMarketCap", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x3e8203e0b1d56984abc66f183a8d0b1a09a7e607": { + "address": "0x3e8203e0b1d56984abc66f183a8d0b1a09a7e607", + "symbol": "LP", + "decimals": 9, + "name": "Liquid Protocol", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x3e8203e0b1d56984abc66f183a8d0b1a09a7e607.png", + "aggregators": ["CoinMarketCap", "Rubic", "Rango"], + "occurrences": 3 + }, + "0xa338b5a4bbd8053994bb6c55d770fc2447d66b88": { + "address": "0xa338b5a4bbd8053994bb6c55d770fc2447d66b88", + "symbol": "EAG", + "decimals": 18, + "name": "Emerging Assets Group", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xa338b5a4bbd8053994bb6c55d770fc2447d66b88.png", + "aggregators": ["CoinMarketCap", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x0b5a91a43cb798c45fd56bfb5d41c13c42a7afa8": { + "address": "0x0b5a91a43cb798c45fd56bfb5d41c13c42a7afa8", + "symbol": "APU", + "decimals": 18, + "name": "APU", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x0b5a91a43cb798c45fd56bfb5d41c13c42a7afa8.png", + "aggregators": ["CoinMarketCap", "Socket", "Rubic"], + "occurrences": 3 + }, + "0xe2f98dd7506807ef82d1988aa77c320bc52f8df4": { + "address": "0xe2f98dd7506807ef82d1988aa77c320bc52f8df4", + "symbol": "HODL", + "decimals": 9, + "name": "Hold On for Dear Life", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xe2f98dd7506807ef82d1988aa77c320bc52f8df4.png", + "aggregators": ["CoinMarketCap", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x23a2164d482fd2fec9c2d0b66528d42fee7b8817": { + "address": "0x23a2164d482fd2fec9c2d0b66528d42fee7b8817", + "symbol": "METAMEME", + "decimals": 9, + "name": "met a meta metameme", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x23a2164d482fd2fec9c2d0b66528d42fee7b8817.png", + "aggregators": ["CoinMarketCap", "Rubic", "Rango"], + "occurrences": 3 + }, + "0xed1273928ba97eed7b49e82c2f39d512d7591112": { + "address": "0xed1273928ba97eed7b49e82c2f39d512d7591112", + "symbol": "NERD", + "decimals": 18, + "name": "NerdBot", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xed1273928ba97eed7b49e82c2f39d512d7591112.png", + "aggregators": ["CoinMarketCap", "Rubic", "Sonarwatch"], + "occurrences": 3 + }, + "0xd01d133166820557db7138963bcd9009c54e4c33": { + "address": "0xd01d133166820557db7138963bcd9009c54e4c33", + "symbol": "CEX", + "decimals": 18, + "name": "ChainEx", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xd01d133166820557db7138963bcd9009c54e4c33.png", + "aggregators": ["CoinMarketCap", "Rubic", "Sonarwatch"], + "occurrences": 3 + }, + "0xf25304e75026e6a35fedca3b0889ae5c4d3c55d8": { + "address": "0xf25304e75026e6a35fedca3b0889ae5c4d3c55d8", + "symbol": "VRD", + "decimals": 18, + "name": "Viridis Network", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xf25304e75026e6a35fedca3b0889ae5c4d3c55d8.png", + "aggregators": ["CoinMarketCap", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x8df5066cf67d909eb67b82854cf54026d31fffae": { + "address": "0x8df5066cf67d909eb67b82854cf54026d31fffae", + "symbol": "KOI", + "decimals": 18, + "name": "Koi Token", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x8df5066cf67d909eb67b82854cf54026d31fffae.png", + "aggregators": ["CoinMarketCap", "Socket", "Rubic"], + "occurrences": 3 + }, + "0xfd26e39807772251c3bb90fb1fcd9ce5b80c5c24": { + "address": "0xfd26e39807772251c3bb90fb1fcd9ce5b80c5c24", + "symbol": "CODEX", + "decimals": 9, + "name": "Codex Multichain", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xfd26e39807772251c3bb90fb1fcd9ce5b80c5c24.png", + "aggregators": ["CoinMarketCap", "Rubic", "Sonarwatch"], + "occurrences": 3 + }, + "0xb7cfe05915ef0c040c6dde2007c9ddab26259e04": { + "address": "0xb7cfe05915ef0c040c6dde2007c9ddab26259e04", + "symbol": "MOLLY", + "decimals": 18, + "name": "Molly", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xb7cfe05915ef0c040c6dde2007c9ddab26259e04.png", + "aggregators": ["CoinMarketCap", "Socket", "Rubic"], + "occurrences": 3 + }, + "0x185ece9bc75164f9fc0fbe44738e8dd1863f8464": { + "address": "0x185ece9bc75164f9fc0fbe44738e8dd1863f8464", + "symbol": "UNDX", + "decimals": 18, + "name": "UNODEX", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x185ece9bc75164f9fc0fbe44738e8dd1863f8464.png", + "aggregators": ["CoinMarketCap", "Rubic", "Rango"], + "occurrences": 3 + }, + "0xfb09122d1e17170c1807bfc1ef3c614bd85e1b6e": { + "address": "0xfb09122d1e17170c1807bfc1ef3c614bd85e1b6e", + "symbol": "CCC", + "decimals": 18, + "name": "Cyber Crowd Chain", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xfb09122d1e17170c1807bfc1ef3c614bd85e1b6e.png", + "aggregators": ["CoinMarketCap", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x435998003ccb7abeaa392494c89f7799fe241db5": { + "address": "0x435998003ccb7abeaa392494c89f7799fe241db5", + "symbol": "INTERN", + "decimals": 18, + "name": "Interns", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x435998003ccb7abeaa392494c89f7799fe241db5.png", + "aggregators": ["CoinMarketCap", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x5ca83216fae72717332469e6a2eb28c4bf9af9ec": { + "address": "0x5ca83216fae72717332469e6a2eb28c4bf9af9ec", + "symbol": "0XC", + "decimals": 18, + "name": "0xCalls", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x5ca83216fae72717332469e6a2eb28c4bf9af9ec.png", + "aggregators": ["CoinMarketCap", "Rubic", "Sonarwatch"], + "occurrences": 3 + }, + "0x25d01b5b39e58843291586a5d8afddf744bdeb13": { + "address": "0x25d01b5b39e58843291586a5d8afddf744bdeb13", + "symbol": "MAGA", + "decimals": 9, + "name": "Make America Great Again", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x25d01b5b39e58843291586a5d8afddf744bdeb13.png", + "aggregators": ["CoinMarketCap", "Socket", "Rubic"], + "occurrences": 3 + }, + "0x177c3973b16c16fb5d934ca92b6e6afb03383268": { + "address": "0x177c3973b16c16fb5d934ca92b6e6afb03383268", + "symbol": "P404", + "decimals": 18, + "name": "Potion 404", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x177c3973b16c16fb5d934ca92b6e6afb03383268.png", + "aggregators": ["CoinMarketCap", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x9a52590bce99dcab5c6dc83b8da08974eeeaa06b": { + "address": "0x9a52590bce99dcab5c6dc83b8da08974eeeaa06b", + "symbol": "BABYTRUMP", + "decimals": 9, + "name": "Baby Trump", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x9a52590bce99dcab5c6dc83b8da08974eeeaa06b.png", + "aggregators": ["CoinMarketCap", "Socket", "Rubic"], + "occurrences": 3 + }, + "0x954a75564cb355ea2d6fccc6c1212fd01fdcb06f": { + "address": "0x954a75564cb355ea2d6fccc6c1212fd01fdcb06f", + "symbol": "LOONG", + "decimals": 18, + "name": "PLUMPY DRAGONS", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x954a75564cb355ea2d6fccc6c1212fd01fdcb06f.png", + "aggregators": ["CoinMarketCap", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x62126ec407eae34393ab88b1f5d57e8566e570be": { + "address": "0x62126ec407eae34393ab88b1f5d57e8566e570be", + "symbol": "MATE", + "decimals": 18, + "name": "VIRTUMATE", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x62126ec407eae34393ab88b1f5d57e8566e570be.png", + "aggregators": ["CoinMarketCap", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x8b8aa7777e18408c07b0ed52ca3dd5bdab34eb7e": { + "address": "0x8b8aa7777e18408c07b0ed52ca3dd5bdab34eb7e", + "symbol": "PDX", + "decimals": 18, + "name": "Paradox", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x8b8aa7777e18408c07b0ed52ca3dd5bdab34eb7e.png", + "aggregators": ["CoinMarketCap", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x179f782d7fbe745f40b20e0c7dbb6205d43fa4b9": { + "address": "0x179f782d7fbe745f40b20e0c7dbb6205d43fa4b9", + "symbol": "INSP", + "decimals": 9, + "name": "Inspire AI", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x179f782d7fbe745f40b20e0c7dbb6205d43fa4b9.png", + "aggregators": ["CoinMarketCap", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x35282d87011f87508d457f08252bc5bfa52e10a0": { + "address": "0x35282d87011f87508d457f08252bc5bfa52e10a0", + "symbol": "ULTRA", + "decimals": 18, + "name": "ULTRA Prisma Finance", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x35282d87011f87508d457f08252bc5bfa52e10a0.png", + "aggregators": ["CoinMarketCap", "Rubic", "Rango"], + "occurrences": 3 + }, + "0xa74a05b17d72e9b0781d973e7963dfaacd266b94": { + "address": "0xa74a05b17d72e9b0781d973e7963dfaacd266b94", + "symbol": "OASIS", + "decimals": 18, + "name": "OASIS", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xa74a05b17d72e9b0781d973e7963dfaacd266b94.png", + "aggregators": ["CoinMarketCap", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x01194726b1b55bbf99cb083ba8e5dcc0834adbc3": { + "address": "0x01194726b1b55bbf99cb083ba8e5dcc0834adbc3", + "symbol": "ARCADE", + "decimals": 9, + "name": "ArcadeFi", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x01194726b1b55bbf99cb083ba8e5dcc0834adbc3.png", + "aggregators": ["CoinMarketCap", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x62431de84c503e152a8957ff51c8945aaaa7d929": { + "address": "0x62431de84c503e152a8957ff51c8945aaaa7d929", + "symbol": "BLAST", + "decimals": 9, + "name": "BlastAI", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x62431de84c503e152a8957ff51c8945aaaa7d929.png", + "aggregators": ["CoinMarketCap", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x9012744b7a564623b6c3e40b144fc196bdedf1a9": { + "address": "0x9012744b7a564623b6c3e40b144fc196bdedf1a9", + "symbol": "OXN", + "decimals": 18, + "name": "0xNumber", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x9012744b7a564623b6c3e40b144fc196bdedf1a9.png", + "aggregators": ["CoinMarketCap", "Rubic", "Sonarwatch"], + "occurrences": 3 + }, + "0xa6ac7dea007df1b6a62c9d8695936051647e30bc": { + "address": "0xa6ac7dea007df1b6a62c9d8695936051647e30bc", + "symbol": "SORA", + "decimals": 9, + "name": "SORA", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xa6ac7dea007df1b6a62c9d8695936051647e30bc.png", + "aggregators": ["CoinMarketCap", "Socket", "Rubic"], + "occurrences": 3 + }, + "0xe13cf110176e0dd6590536cd391b8a3522475f82": { + "address": "0xe13cf110176e0dd6590536cd391b8a3522475f82", + "symbol": "RENT", + "decimals": 9, + "name": "RentAI", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xe13cf110176e0dd6590536cd391b8a3522475f82.png", + "aggregators": ["CoinMarketCap", "Rubic", "Sonarwatch"], + "occurrences": 3 + }, + "0xf86cfce1e746456135d7face48c2916d7d3cb676": { + "address": "0xf86cfce1e746456135d7face48c2916d7d3cb676", + "symbol": "EFT", + "decimals": 18, + "name": "Everflow", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xf86cfce1e746456135d7face48c2916d7d3cb676.png", + "aggregators": ["CoinMarketCap", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x74fe27e70db10147f8b6b38b3c9d12bbdcf3b5af": { + "address": "0x74fe27e70db10147f8b6b38b3c9d12bbdcf3b5af", + "symbol": "IRYDE", + "decimals": 18, + "name": "iRYDE COIN", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x74fe27e70db10147f8b6b38b3c9d12bbdcf3b5af.png", + "aggregators": ["CoinMarketCap", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x78ba134c3ace18e69837b01703d07f0db6fb0a60": { + "address": "0x78ba134c3ace18e69837b01703d07f0db6fb0a60", + "symbol": "SNT", + "decimals": 18, + "name": "Sentinel Bot AI", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x78ba134c3ace18e69837b01703d07f0db6fb0a60.png", + "aggregators": ["CoinMarketCap", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x5044d567f7b30891639d982a05726a6bfe8bae6a": { + "address": "0x5044d567f7b30891639d982a05726a6bfe8bae6a", + "symbol": "BRAINERS", + "decimals": 18, + "name": "Brainers", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x5044d567f7b30891639d982a05726a6bfe8bae6a.png", + "aggregators": ["CoinMarketCap", "Rubic", "Rango"], + "occurrences": 3 + }, + "0xc6221ac4e99066ea5443acd67d6108f874e2533d": { + "address": "0xc6221ac4e99066ea5443acd67d6108f874e2533d", + "symbol": "DCI", + "decimals": 18, + "name": "Decentralized Cloud Infrastructure", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xc6221ac4e99066ea5443acd67d6108f874e2533d.png", + "aggregators": ["CoinMarketCap", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x72a93697a5ac73cfee39ff87298220f77c538611": { + "address": "0x72a93697a5ac73cfee39ff87298220f77c538611", + "symbol": "DARE", + "decimals": 18, + "name": "The Dare", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x72a93697a5ac73cfee39ff87298220f77c538611.png", + "aggregators": ["CoinMarketCap", "Rubic", "Rango"], + "occurrences": 3 + }, + "0xf898bae008cd85046431ab0a75f00689d6aa1b1c": { + "address": "0xf898bae008cd85046431ab0a75f00689d6aa1b1c", + "symbol": "VPN", + "decimals": 18, + "name": "0xVPN.org", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xf898bae008cd85046431ab0a75f00689d6aa1b1c.png", + "aggregators": ["CoinMarketCap", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x76aab5fd2243d99eac92d4d9ebf23525d3ace4ec": { + "address": "0x76aab5fd2243d99eac92d4d9ebf23525d3ace4ec", + "symbol": "GGMT", + "decimals": 18, + "name": "GG MetaGame", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x76aab5fd2243d99eac92d4d9ebf23525d3ace4ec.png", + "aggregators": ["CoinMarketCap", "Rubic", "Rango"], + "occurrences": 3 + }, + "0xd1679946ba555ebf5cb38e8b089ef1e1e5d2abb1": { + "address": "0xd1679946ba555ebf5cb38e8b089ef1e1e5d2abb1", + "symbol": "GUARDAI", + "decimals": 18, + "name": "GuardAI", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xd1679946ba555ebf5cb38e8b089ef1e1e5d2abb1.png", + "aggregators": ["CoinMarketCap", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x102dc1840f0c3c179670f21fa63597e82df34e60": { + "address": "0x102dc1840f0c3c179670f21fa63597e82df34e60", + "symbol": "VIRTU", + "decimals": 18, + "name": "VIRTUCLOUD", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x102dc1840f0c3c179670f21fa63597e82df34e60.png", + "aggregators": ["CoinMarketCap", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x00199c511dc889b8155fa425fc0363ed481e8f48": { + "address": "0x00199c511dc889b8155fa425fc0363ed481e8f48", + "symbol": "BRICK", + "decimals": 18, + "name": "Brick Block", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x00199c511dc889b8155fa425fc0363ed481e8f48.png", + "aggregators": ["CoinMarketCap", "Rubic", "Sonarwatch"], + "occurrences": 3 + }, + "0x3d234a9d23f01c5556ad3dfa88f470f8982ab1b4": { + "address": "0x3d234a9d23f01c5556ad3dfa88f470f8982ab1b4", + "symbol": "VATR", + "decimals": 18, + "name": "Vatra INU", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x3d234a9d23f01c5556ad3dfa88f470f8982ab1b4.png", + "aggregators": ["CoinMarketCap", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x401e6d25c2991824299aa5dbe67c82486a64381d": { + "address": "0x401e6d25c2991824299aa5dbe67c82486a64381d", + "symbol": "BNSAI", + "decimals": 18, + "name": "bonsAI Network", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x401e6d25c2991824299aa5dbe67c82486a64381d.png", + "aggregators": ["CoinMarketCap", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x4cb1e6c430bb4b874869fd6049ed07ae975b02f1": { + "address": "0x4cb1e6c430bb4b874869fd6049ed07ae975b02f1", + "symbol": "$SWIPES", + "decimals": 9, + "name": "BNDR", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x4cb1e6c430bb4b874869fd6049ed07ae975b02f1.png", + "aggregators": ["CoinMarketCap", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x1888847b50bc1833e268348896dee58701fc06a9": { + "address": "0x1888847b50bc1833e268348896dee58701fc06a9", + "symbol": "PIZZA", + "decimals": 18, + "name": "Bitcoin Pizza Day", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x1888847b50bc1833e268348896dee58701fc06a9.png", + "aggregators": ["CoinMarketCap", "Socket", "Rubic"], + "occurrences": 3 + }, + "0x9361adf2b72f413d96f81ff40d794b47ce13b331": { + "address": "0x9361adf2b72f413d96f81ff40d794b47ce13b331", + "symbol": "BARRON", + "decimals": 9, + "name": "Son of Trump", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x9361adf2b72f413d96f81ff40d794b47ce13b331.png", + "aggregators": ["CoinMarketCap", "Socket", "Rubic"], + "occurrences": 3 + }, + "0x449a917fb4910cb2f57335d619e71674ffb8bc44": { + "address": "0x449a917fb4910cb2f57335d619e71674ffb8bc44", + "symbol": "MEGA", + "decimals": 9, + "name": "MEGA", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x449a917fb4910cb2f57335d619e71674ffb8bc44.png", + "aggregators": ["CoinMarketCap", "Socket", "Rubic"], + "occurrences": 3 + }, + "0x0f8958c757b65881cec98028cae0c4ee45726eae": { + "address": "0x0f8958c757b65881cec98028cae0c4ee45726eae", + "symbol": "DCN", + "decimals": 18, + "name": "Compute Network", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x0f8958c757b65881cec98028cae0c4ee45726eae.png", + "aggregators": ["CoinMarketCap", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x83578055e28c626d36ed7015541641825a3e6e54": { + "address": "0x83578055e28c626d36ed7015541641825a3e6e54", + "symbol": "MAGA", + "decimals": 9, + "name": "Simpson MAGA", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x83578055e28c626d36ed7015541641825a3e6e54.png", + "aggregators": ["CoinMarketCap", "Socket", "Rubic"], + "occurrences": 3 + }, + "0x6d5e345796f6fc568798aac6e8704e736cc1bf2b": { + "address": "0x6d5e345796f6fc568798aac6e8704e736cc1bf2b", + "symbol": "VALU", + "decimals": 18, + "name": "Value", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x6d5e345796f6fc568798aac6e8704e736cc1bf2b.png", + "aggregators": ["CoinMarketCap", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x5fde99e121f3ac02e7d6acb081db1f89c1e93c17": { + "address": "0x5fde99e121f3ac02e7d6acb081db1f89c1e93c17", + "symbol": "MYT", + "decimals": 18, + "name": "MYSO Token", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x5fde99e121f3ac02e7d6acb081db1f89c1e93c17.png", + "aggregators": ["CoinMarketCap", "Rubic", "Rango"], + "occurrences": 3 + }, + "0xa3889a5f5f84f4296ff734081ad6d333838a56b5": { + "address": "0xa3889a5f5f84f4296ff734081ad6d333838a56b5", + "symbol": "WIZ", + "decimals": 9, + "name": "Wizard", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xa3889a5f5f84f4296ff734081ad6d333838a56b5.png", + "aggregators": ["CoinMarketCap", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x86b69f38bea3e02f68ff88534bc61ec60e772b19": { + "address": "0x86b69f38bea3e02f68ff88534bc61ec60e772b19", + "symbol": "TRUMP", + "decimals": 9, + "name": "NEVER SURRENDER", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x86b69f38bea3e02f68ff88534bc61ec60e772b19.png", + "aggregators": ["CoinMarketCap", "Socket", "Rubic"], + "occurrences": 3 + }, + "0x32f0d04b48427a14fb3cbc73db869e691a9fec6f": { + "address": "0x32f0d04b48427a14fb3cbc73db869e691a9fec6f", + "symbol": "ECI", + "decimals": 18, + "name": "Euro Cup Inu", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x32f0d04b48427a14fb3cbc73db869e691a9fec6f.png", + "aggregators": ["CoinMarketCap", "Rubic", "Rango"], + "occurrences": 3 + }, + "0xb3a3606ea55fe45e6635b221592674f5dbda3292": { + "address": "0xb3a3606ea55fe45e6635b221592674f5dbda3292", + "symbol": "TRUMP", + "decimals": 9, + "name": "MAGA", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xb3a3606ea55fe45e6635b221592674f5dbda3292.png", + "aggregators": ["CoinMarketCap", "Socket", "Rubic"], + "occurrences": 3 + }, + "0xf5adf74eeca8b91a4a72298ba260b14d9b6a89cd": { + "address": "0xf5adf74eeca8b91a4a72298ba260b14d9b6a89cd", + "symbol": "DJT", + "decimals": 9, + "name": "Trump Media", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xf5adf74eeca8b91a4a72298ba260b14d9b6a89cd.png", + "aggregators": ["CoinMarketCap", "Socket", "Rubic"], + "occurrences": 3 + }, + "0x53288aa471511fb0de8bfe17923f8eca64607a54": { + "address": "0x53288aa471511fb0de8bfe17923f8eca64607a54", + "symbol": "STRUMP", + "decimals": 9, + "name": "Super Trump", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x53288aa471511fb0de8bfe17923f8eca64607a54.png", + "aggregators": ["CoinMarketCap", "Socket", "Rubic"], + "occurrences": 3 + }, + "0xaed18826655bf9167a377c8647132a937d6a4f36": { + "address": "0xaed18826655bf9167a377c8647132a937d6a4f36", + "symbol": "TBD", + "decimals": 18, + "name": "THE BIG DEBATE", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xaed18826655bf9167a377c8647132a937d6a4f36.png", + "aggregators": ["CoinMarketCap", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x62e3b3c557c792c4a70765b3cdb5b56b1879f82d": { + "address": "0x62e3b3c557c792c4a70765b3cdb5b56b1879f82d", + "symbol": "FOX", + "decimals": 9, + "name": "Fox", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x62e3b3c557c792c4a70765b3cdb5b56b1879f82d.png", + "aggregators": ["CoinMarketCap", "Socket", "Rubic"], + "occurrences": 3 + }, + "0xe6d6043d19e7479d1ffe76dddc7f68467234462b": { + "address": "0xe6d6043d19e7479d1ffe76dddc7f68467234462b", + "symbol": "FOUR", + "decimals": 18, + "name": "4", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xe6d6043d19e7479d1ffe76dddc7f68467234462b.png", + "aggregators": ["CoinMarketCap", "Socket", "Rubic"], + "occurrences": 3 + }, + "0x1776c8ba4883b7e8f710e8f7b68646788340c177": { + "address": "0x1776c8ba4883b7e8f710e8f7b68646788340c177", + "symbol": "PTC", + "decimals": 18, + "name": "Patriots Coin", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x1776c8ba4883b7e8f710e8f7b68646788340c177.png", + "aggregators": ["CoinMarketCap", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x71cd2559d123fbe4b6743dbae076f2cd1016936c": { + "address": "0x71cd2559d123fbe4b6743dbae076f2cd1016936c", + "symbol": "DUCKY", + "decimals": 18, + "name": "Ducky", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x71cd2559d123fbe4b6743dbae076f2cd1016936c.png", + "aggregators": ["CoinMarketCap", "Socket", "Rubic"], + "occurrences": 3 + }, + "0x43fd9de06bb69ad771556e171f960a91c42d2955": { + "address": "0x43fd9de06bb69ad771556e171f960a91c42d2955", + "symbol": "BTC", + "decimals": 9, + "name": "Bullish Trump Coin", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x43fd9de06bb69ad771556e171f960a91c42d2955.png", + "aggregators": ["CoinMarketCap", "Socket", "Rubic"], + "occurrences": 3 + }, + "0xcab66bc319c96a2921caed30e990b20f2322357e": { + "address": "0xcab66bc319c96a2921caed30e990b20f2322357e", + "symbol": "TRUMP", + "decimals": 9, + "name": "Simpson Trump", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xcab66bc319c96a2921caed30e990b20f2322357e.png", + "aggregators": ["CoinMarketCap", "Socket", "Rubic"], + "occurrences": 3 + }, + "0x42069cc15f5befb510430d22ff1c9a1b3ae22cfe": { + "address": "0x42069cc15f5befb510430d22ff1c9a1b3ae22cfe", + "symbol": "RARE", + "decimals": 18, + "name": "Rare Pepe", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x42069cc15f5befb510430d22ff1c9a1b3ae22cfe.png", + "aggregators": ["CoinMarketCap", "Socket", "Rubic"], + "occurrences": 3 + }, + "0xf2c5780e2dda407781c0c5eccc9320d5988ea0a6": { + "address": "0xf2c5780e2dda407781c0c5eccc9320d5988ea0a6", + "symbol": "DCE", + "decimals": 9, + "name": "Decentra Ecosystem", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xf2c5780e2dda407781c0c5eccc9320d5988ea0a6.png", + "aggregators": ["CoinMarketCap", "Rubic", "Rango"], + "occurrences": 3 + }, + "0xa28cbb24313df3907b8d87685bab2c1d0bd46b60": { + "address": "0xa28cbb24313df3907b8d87685bab2c1d0bd46b60", + "symbol": "ATX", + "decimals": 18, + "name": "AUTOMATIX", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xa28cbb24313df3907b8d87685bab2c1d0bd46b60.png", + "aggregators": ["CoinMarketCap", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x99999999999997fceb5549c58ab66df52385ca4d": { + "address": "0x99999999999997fceb5549c58ab66df52385ca4d", + "symbol": "GEN", + "decimals": 18, + "name": "Genesis", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x99999999999997fceb5549c58ab66df52385ca4d.png", + "aggregators": ["CoinMarketCap", "Socket", "Rubic"], + "occurrences": 3 + }, + "0x180000dda70eb7fb7f3e10e52e88ce88f46e3b3a": { + "address": "0x180000dda70eb7fb7f3e10e52e88ce88f46e3b3a", + "symbol": "KABOSU", + "decimals": 9, + "name": "KABOSU", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x180000dda70eb7fb7f3e10e52e88ce88f46e3b3a.png", + "aggregators": ["CoinMarketCap", "Socket", "Rubic"], + "occurrences": 3 + }, + "0x8a13f32e2a556830f3a5e97a96ae941abfcb1d5c": { + "address": "0x8a13f32e2a556830f3a5e97a96ae941abfcb1d5c", + "symbol": "ELF", + "decimals": 18, + "name": "ELF", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x8a13f32e2a556830f3a5e97a96ae941abfcb1d5c.png", + "aggregators": ["CoinMarketCap", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x8b68f1d0246320d5caf8cd9828faab28d66ba749": { + "address": "0x8b68f1d0246320d5caf8cd9828faab28d66ba749", + "symbol": "SMART", + "decimals": 9, + "name": "SmartHub", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x8b68f1d0246320d5caf8cd9828faab28d66ba749.png", + "aggregators": ["CoinMarketCap", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x52e6654aee5d59e13ae30b48f8f5dbeb97f708cd": { + "address": "0x52e6654aee5d59e13ae30b48f8f5dbeb97f708cd", + "symbol": "TSUJI", + "decimals": 9, + "name": "Tsutsuji", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x52e6654aee5d59e13ae30b48f8f5dbeb97f708cd.png", + "aggregators": ["CoinMarketCap", "Socket", "Rubic"], + "occurrences": 3 + }, + "0x07e98f367aade7f81ddc90189d5d045c78e611d5": { + "address": "0x07e98f367aade7f81ddc90189d5d045c78e611d5", + "symbol": "VISTADOG", + "decimals": 18, + "name": "VISTADOG", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x07e98f367aade7f81ddc90189d5d045c78e611d5.png", + "aggregators": ["CoinMarketCap", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x69d0981fadffd225b93936d7436a412fa9821652": { + "address": "0x69d0981fadffd225b93936d7436a412fa9821652", + "symbol": "POPO", + "decimals": 18, + "name": "Popo", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x69d0981fadffd225b93936d7436a412fa9821652.png", + "aggregators": ["CoinMarketCap", "Socket", "Rubic"], + "occurrences": 3 + }, + "0x7391425ca7cee3ee03e09794b819291a572af83e": { + "address": "0x7391425ca7cee3ee03e09794b819291a572af83e", + "symbol": "MOG", + "decimals": 18, + "name": "MOG CAT", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x7391425ca7cee3ee03e09794b819291a572af83e.png", + "aggregators": ["CoinMarketCap", "Socket", "Rubic"], + "occurrences": 3 + }, + "0x2e8f3ebc2aacc6df50823da82fc63b253a2272d1": { + "address": "0x2e8f3ebc2aacc6df50823da82fc63b253a2272d1", + "symbol": "KERMIT", + "decimals": 18, + "name": "Kermit", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x2e8f3ebc2aacc6df50823da82fc63b253a2272d1.png", + "aggregators": ["CoinMarketCap", "Socket", "Rubic"], + "occurrences": 3 + }, + "0x4cd27e18757baa3a4fe7b0ab7db083002637a6c5": { + "address": "0x4cd27e18757baa3a4fe7b0ab7db083002637a6c5", + "symbol": "LAIKA", + "decimals": 18, + "name": "laikaCTO", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x4cd27e18757baa3a4fe7b0ab7db083002637a6c5.png", + "aggregators": ["CoinMarketCap", "Socket", "Rubic"], + "occurrences": 3 + }, + "0x339058ca41e17b55b6dd295373c5d3cbe8000cd9": { + "address": "0x339058ca41e17b55b6dd295373c5d3cbe8000cd9", + "symbol": "NEIRO", + "decimals": 18, + "name": "Neiro Pump", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x339058ca41e17b55b6dd295373c5d3cbe8000cd9.png", + "aggregators": ["CoinMarketCap", "Socket", "Rubic"], + "occurrences": 3 + }, + "0x78e927fcfb062599d8295163f0808a6fcda7db24": { + "address": "0x78e927fcfb062599d8295163f0808a6fcda7db24", + "symbol": "TURBO", + "decimals": 18, + "name": "Turbo Browser", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x78e927fcfb062599d8295163f0808a6fcda7db24.png", + "aggregators": ["CoinMarketCap", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x2637ffece0217ae626529f6775167020f1c17d83": { + "address": "0x2637ffece0217ae626529f6775167020f1c17d83", + "symbol": "PAL", + "decimals": 18, + "name": "Pal", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x2637ffece0217ae626529f6775167020f1c17d83.png", + "aggregators": ["CoinMarketCap", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x2bb84fd8f7ed0ffae3da36ad60d4d7840bdeeada": { + "address": "0x2bb84fd8f7ed0ffae3da36ad60d4d7840bdeeada", + "symbol": "GROK", + "decimals": 18, + "name": "SORA GROK", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x2bb84fd8f7ed0ffae3da36ad60d4d7840bdeeada.png", + "aggregators": ["CoinMarketCap", "Socket", "Rubic"], + "occurrences": 3 + }, + "0x9b69667f602f15ef2d09a9a18489c788e327461e": { + "address": "0x9b69667f602f15ef2d09a9a18489c788e327461e", + "symbol": "DOGS", + "decimals": 18, + "name": "TRUMP DOGS", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x9b69667f602f15ef2d09a9a18489c788e327461e.png", + "aggregators": ["CoinMarketCap", "Socket", "Rubic"], + "occurrences": 3 + }, + "0xda2e903b0b67f30bf26bd3464f9ee1a383bbbe5f": { + "address": "0xda2e903b0b67f30bf26bd3464f9ee1a383bbbe5f", + "symbol": "MAGA", + "decimals": 18, + "name": "PEPE MAGA", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xda2e903b0b67f30bf26bd3464f9ee1a383bbbe5f.png", + "aggregators": ["CoinMarketCap", "Socket", "Rubic"], + "occurrences": 3 + }, + "0xb843ce5f8c8a3d0d72e089194f5d9f9df0df74e5": { + "address": "0xb843ce5f8c8a3d0d72e089194f5d9f9df0df74e5", + "symbol": "PEEZY", + "decimals": 8, + "name": "Young Peezy", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xb843ce5f8c8a3d0d72e089194f5d9f9df0df74e5.png", + "aggregators": ["CoinMarketCap", "Socket", "Rubic"], + "occurrences": 3 + }, + "0x555907a0b5c32df0feb35401187aed60a9191d74": { + "address": "0x555907a0b5c32df0feb35401187aed60a9191d74", + "symbol": "TRUMP", + "decimals": 18, + "name": "trumpwifhat", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x555907a0b5c32df0feb35401187aed60a9191d74.png", + "aggregators": ["CoinMarketCap", "Socket", "Rubic"], + "occurrences": 3 + }, + "0x694209b7612a6219eac9446d5718fe23599a991b": { + "address": "0x694209b7612a6219eac9446d5718fe23599a991b", + "symbol": "SMIDGE ", + "decimals": 9, + "name": "Smidge", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x694209b7612a6219eac9446d5718fe23599a991b.png", + "aggregators": ["CoinMarketCap", "Socket", "Rubic"], + "occurrences": 3 + }, + "0x5ff0d2de4cd862149c6672c99b7edf3b092667a3": { + "address": "0x5ff0d2de4cd862149c6672c99b7edf3b092667a3", + "symbol": "SPX", + "decimals": 18, + "name": "SPX69000", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x5ff0d2de4cd862149c6672c99b7edf3b092667a3.png", + "aggregators": ["CoinMarketCap", "Socket", "Rubic"], + "occurrences": 3 + }, + "0x5a59dd979754b09ea686ce93c98d4ce8bdcb43f2": { + "address": "0x5a59dd979754b09ea686ce93c98d4ce8bdcb43f2", + "symbol": "CROS", + "decimals": 18, + "name": "Cros", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x5a59dd979754b09ea686ce93c98d4ce8bdcb43f2.png", + "aggregators": ["CoinMarketCap", "Rubic", "Sonarwatch"], + "occurrences": 3 + }, + "0x37d299d9900209c3566254cfe59bfe6ff8f8c295": { + "address": "0x37d299d9900209c3566254cfe59bfe6ff8f8c295", + "symbol": "BITCOIN", + "decimals": 18, + "name": "HarryPotterObamaSonic10Inu 2.0", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x37d299d9900209c3566254cfe59bfe6ff8f8c295.png", + "aggregators": ["CoinMarketCap", "Socket", "Rubic"], + "occurrences": 3 + }, + "0x6a9b3fdb4a3296ecba1ebfa2cf4a8b16032a769c": { + "address": "0x6a9b3fdb4a3296ecba1ebfa2cf4a8b16032a769c", + "symbol": "SMILE", + "decimals": 18, + "name": "bitSmiley", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x6a9b3fdb4a3296ecba1ebfa2cf4a8b16032a769c.png", + "aggregators": ["CoinMarketCap", "Rubic", "Sonarwatch"], + "occurrences": 3 + }, + "0x8cb8c4263eb26b2349d74ea2cb1b27bc40709e12": { + "address": "0x8cb8c4263eb26b2349d74ea2cb1b27bc40709e12", + "symbol": "EYWA", + "decimals": 18, + "name": "EYWA", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x8cb8c4263eb26b2349d74ea2cb1b27bc40709e12.png", + "aggregators": ["CoinMarketCap", "Rubic", "Sonarwatch"], + "occurrences": 3 + }, + "0x67de8414db712c1c21f23ba611785cfcb94b8135": { + "address": "0x67de8414db712c1c21f23ba611785cfcb94b8135", + "symbol": "MEGA", + "decimals": 18, + "name": "Make Ethereum Great Again", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x67de8414db712c1c21f23ba611785cfcb94b8135.png", + "aggregators": ["CoinMarketCap", "Socket", "Rubic"], + "occurrences": 3 + }, + "0xeda7d2c70cd75d06947b7d0b0b0910ca9b07148a": { + "address": "0xeda7d2c70cd75d06947b7d0b0b0910ca9b07148a", + "symbol": "GATSBY", + "decimals": 9, + "name": "Elon Musks dog", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xeda7d2c70cd75d06947b7d0b0b0910ca9b07148a.png", + "aggregators": ["CoinMarketCap", "Socket", "Rubic"], + "occurrences": 3 + }, + "0x698e222aaa7082bdae18cb4722bc5aebb31c2002": { + "address": "0x698e222aaa7082bdae18cb4722bc5aebb31c2002", + "symbol": "GNOME", + "decimals": 9, + "name": "GNOME CHILD", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x698e222aaa7082bdae18cb4722bc5aebb31c2002.png", + "aggregators": ["CoinMarketCap", "Socket", "Rubic"], + "occurrences": 3 + }, + "0xe0805c80588913c1c2c89ea4a8dcf485d4038a3e": { + "address": "0xe0805c80588913c1c2c89ea4a8dcf485d4038a3e", + "symbol": "CARD", + "decimals": 9, + "name": "BitcoinBlack", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xe0805c80588913c1c2c89ea4a8dcf485d4038a3e.png", + "aggregators": ["CoinMarketCap", "Socket", "Rubic"], + "occurrences": 3 + }, + "0x36e45dcfe1d3d85a78c65c3bad4068dee4f2a25e": { + "address": "0x36e45dcfe1d3d85a78c65c3bad4068dee4f2a25e", + "symbol": "TRRUE", + "decimals": 18, + "name": "TRRUE", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x36e45dcfe1d3d85a78c65c3bad4068dee4f2a25e.png", + "aggregators": ["CoinMarketCap", "Rubic", "Sonarwatch"], + "occurrences": 3 + }, + "0x8a462e6a0051d006e33152fbeadfb9a14198de30": { + "address": "0x8a462e6a0051d006e33152fbeadfb9a14198de30", + "symbol": "FYDE", + "decimals": 18, + "name": "Fyde", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x8a462e6a0051d006e33152fbeadfb9a14198de30.png", + "aggregators": ["CoinMarketCap", "Rubic", "Sonarwatch"], + "occurrences": 3 + }, + "0xedbf98724a86f92baefac101082c366e96f1e9d9": { + "address": "0xedbf98724a86f92baefac101082c366e96f1e9d9", + "symbol": "BFT", + "decimals": 18, + "name": "BiFinance Token", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xedbf98724a86f92baefac101082c366e96f1e9d9.png", + "aggregators": ["CoinMarketCap", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x3a4f40631a4f906c2bad353ed06de7a5d3fcb430": { + "address": "0x3a4f40631a4f906c2bad353ed06de7a5d3fcb430", + "symbol": "PLA", + "decimals": 18, + "name": "PlayDapp Token", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x3a4f40631a4f906c2bad353ed06de7a5d3fcb430.png", + "aggregators": ["Metamask", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x08711d3b02c8758f2fb3ab4e80228418a7f8e39c": { + "address": "0x08711d3b02c8758f2fb3ab4e80228418a7f8e39c", + "symbol": "EDG", + "decimals": 18, + "name": "Edgeless", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x08711d3b02c8758f2fb3ab4e80228418a7f8e39c.png", + "aggregators": ["Metamask", "Rubic", "Bancor"], + "occurrences": 3 + }, + "0x39bb259f66e1c59d5abef88375979b4d20d98022": { + "address": "0x39bb259f66e1c59d5abef88375979b4d20d98022", + "symbol": "WAX", + "decimals": 8, + "name": "WAX Token", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x39bb259f66e1c59d5abef88375979b4d20d98022.png", + "aggregators": ["Metamask", "Rubic", "Bancor"], + "occurrences": 3 + }, + "0xf50a07e4ff052a14f3f608da8936d8ae0ed5be50": { + "address": "0xf50a07e4ff052a14f3f608da8936d8ae0ed5be50", + "symbol": "FLOKIPUP", + "decimals": 9, + "name": "Floki Pup", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xf50a07e4ff052a14f3f608da8936d8ae0ed5be50.png", + "aggregators": ["1inch", "Rubic", "Rango"], + "occurrences": 3 + }, + "0xc50ef449171a51fbeafd7c562b064b6471c36caa": { + "address": "0xc50ef449171a51fbeafd7c562b064b6471c36caa", + "symbol": "ZINU", + "decimals": 9, + "name": "ZINU", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xc50ef449171a51fbeafd7c562b064b6471c36caa.png", + "aggregators": ["1inch", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x1e31b601488e97bc247c57af7b6aa336edbc5477": { + "address": "0x1e31b601488e97bc247c57af7b6aa336edbc5477", + "symbol": "UP", + "decimals": 18, + "name": "Unicorn Power", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x1e31b601488e97bc247c57af7b6aa336edbc5477.png", + "aggregators": ["1inch", "Socket", "Rubic"], + "occurrences": 3 + }, + "0x9a0c8ff858d273f57072d714bca7411d717501d7": { + "address": "0x9a0c8ff858d273f57072d714bca7411d717501d7", + "symbol": "ST1INCH", + "decimals": 18, + "name": "Staking 1INCH v2", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x9a0c8ff858d273f57072d714bca7411d717501d7.png", + "aggregators": ["1inch", "Socket", "Rubic"], + "occurrences": 3 + }, + "0xaccfac2339e16dc80c50d2fa81b5c2b049b4f947": { + "address": "0xaccfac2339e16dc80c50d2fa81b5c2b049b4f947", + "symbol": "DST1INCH", + "decimals": 18, + "name": "Delegated st1INCH", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xaccfac2339e16dc80c50d2fa81b5c2b049b4f947.png", + "aggregators": ["1inch", "Socket", "Rubic"], + "occurrences": 3 + }, + "0x5af2be193a6abca9c8817001f45744777db30756": { + "address": "0x5af2be193a6abca9c8817001f45744777db30756", + "symbol": "VGX", + "decimals": 8, + "name": "Voyager", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x5af2be193a6abca9c8817001f45744777db30756.png", + "aggregators": ["LiFi", "Socket", "Rubic"], + "occurrences": 3 + }, + "0xb5a4ac5b04e777230ba3381195eff6a60c3934f2": { + "address": "0xb5a4ac5b04e777230ba3381195eff6a60c3934f2", + "symbol": "SURE", + "decimals": 18, + "name": "inSure", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xb5a4ac5b04e777230ba3381195eff6a60c3934f2.png", + "aggregators": ["LiFi", "Socket", "Rubic"], + "occurrences": 3 + }, + "0xcf8f9555d55ce45a3a33a81d6ef99a2a2e71dee2": { + "address": "0xcf8f9555d55ce45a3a33a81d6ef99a2a2e71dee2", + "symbol": "CBIX7", + "decimals": 18, + "name": "CBIX7", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xcf8f9555d55ce45a3a33a81d6ef99a2a2e71dee2.png", + "aggregators": ["LiFi", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x07c44b5ac257c2255aa0933112c3b75a6bff3cb1": { + "address": "0x07c44b5ac257c2255aa0933112c3b75a6bff3cb1", + "symbol": "OLTC", + "decimals": 18, + "name": "BoringDAO LTC", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x07c44b5ac257c2255aa0933112c3b75a6bff3cb1.png", + "aggregators": ["LiFi", "Socket", "Rubic"], + "occurrences": 3 + }, + "0xbb22d59b73d7a6f3a8a83a214becc67eb3b511fe": { + "address": "0xbb22d59b73d7a6f3a8a83a214becc67eb3b511fe", + "symbol": "XRETH", + "decimals": 18, + "name": "Constellation Staked ETH", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xbb22d59b73d7a6f3a8a83a214becc67eb3b511fe.png", + "aggregators": ["LiFi", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x0000000000071821e8033345a7be174647be0706": { + "address": "0x0000000000071821e8033345a7be174647be0706", + "symbol": "SCRY", + "decimals": 18, + "name": "Scry Protocol", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x0000000000071821e8033345a7be174647be0706.png", + "aggregators": ["LiFi", "Socket", "Rango"], + "occurrences": 3 + }, + "0xb4d930279552397bba2ee473229f89ec245bc365": { + "address": "0xb4d930279552397bba2ee473229f89ec245bc365", + "symbol": "MAHA", + "decimals": 18, + "name": "MahaDAO", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xb4d930279552397bba2ee473229f89ec245bc365.png", + "aggregators": ["LiFi", "Socket", "Rubic"], + "occurrences": 3 + }, + "0x533e90705c0d1a364eb63d620ea16c8478179894": { + "address": "0x533e90705c0d1a364eb63d620ea16c8478179894", + "symbol": "TOMI", + "decimals": 18, + "name": "TOMI", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x533e90705c0d1a364eb63d620ea16c8478179894.png", + "aggregators": ["LiFi", "Socket", "Rubic"], + "occurrences": 3 + }, + "0x92b767185fb3b04f881e3ac8e5b0662a027a1d9f": { + "address": "0x92b767185fb3b04f881e3ac8e5b0662a027a1d9f", + "symbol": "CRDAI", + "decimals": 8, + "name": "Cream Dai Stablecoin", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x92b767185fb3b04f881e3ac8e5b0662a027a1d9f.png", + "aggregators": ["LiFi", "Socket", "Rubic"], + "occurrences": 3 + }, + "0x77a4b0bfe5c7257f67a1de1b99aa7e157035b1b2": { + "address": "0x77a4b0bfe5c7257f67a1de1b99aa7e157035b1b2", + "symbol": "7007", + "decimals": 18, + "name": "Token7007", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x77a4b0bfe5c7257f67a1de1b99aa7e157035b1b2.png", + "aggregators": ["LiFi", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x79c75e2e8720b39e258f41c37cc4f309e0b0ff80": { + "address": "0x79c75e2e8720b39e258f41c37cc4f309e0b0ff80", + "symbol": "SOUL", + "decimals": 8, + "name": "Phantasma Stake", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x79c75e2e8720b39e258f41c37cc4f309e0b0ff80.png", + "aggregators": ["LiFi", "Socket", "Rubic"], + "occurrences": 3 + }, + "0x53805a76e1f5ebbfe7115f16f9c87c2f7e633726": { + "address": "0x53805a76e1f5ebbfe7115f16f9c87c2f7e633726", + "symbol": "FETH", + "decimals": 18, + "name": "f(x) Protocol Fractional ETH", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x53805a76e1f5ebbfe7115f16f9c87c2f7e633726.png", + "aggregators": ["LiFi", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x155040625d7ae3e9cada9a73e3e44f76d3ed1409": { + "address": "0x155040625d7ae3e9cada9a73e3e44f76d3ed1409", + "symbol": "REVO", + "decimals": 18, + "name": "REVO", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x155040625d7ae3e9cada9a73e3e44f76d3ed1409.png", + "aggregators": ["LiFi", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x5dfe42eea70a3e6f93ee54ed9c321af07a85535c": { + "address": "0x5dfe42eea70a3e6f93ee54ed9c321af07a85535c", + "symbol": "UNION", + "decimals": 18, + "name": "Union Finance", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x5dfe42eea70a3e6f93ee54ed9c321af07a85535c.png", + "aggregators": ["LiFi", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x9c306a78b1a904e83115c05ac67c1ef07c653651": { + "address": "0x9c306a78b1a904e83115c05ac67c1ef07c653651", + "symbol": "ODOGE", + "decimals": 18, + "name": "BoringDAO DOGE", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x9c306a78b1a904e83115c05ac67c1ef07c653651.png", + "aggregators": ["LiFi", "Socket", "Rubic"], + "occurrences": 3 + }, + "0x8fb00fdebb4e83f2c58b3bcd6732ac1b6a7b7221": { + "address": "0x8fb00fdebb4e83f2c58b3bcd6732ac1b6a7b7221", + "symbol": "OORN", + "decimals": 8, + "name": "OORN", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x8fb00fdebb4e83f2c58b3bcd6732ac1b6a7b7221.png", + "aggregators": ["LiFi", "Rubic", "Rango"], + "occurrences": 3 + }, + "0xdc8af07a7861bedd104b8093ae3e9376fc8596d2": { + "address": "0xdc8af07a7861bedd104b8093ae3e9376fc8596d2", + "symbol": "RVF", + "decimals": 18, + "name": "Rocket Vault", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xdc8af07a7861bedd104b8093ae3e9376fc8596d2.png", + "aggregators": ["LiFi", "Socket", "Rubic"], + "occurrences": 3 + }, + "0xe18841d7a75866688e291703bde66c3378bd74a3": { + "address": "0xe18841d7a75866688e291703bde66c3378bd74a3", + "symbol": "VERSE", + "decimals": 18, + "name": "Verse", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xe18841d7a75866688e291703bde66c3378bd74a3.png", + "aggregators": ["LiFi", "Socket", "Rubic"], + "occurrences": 3 + }, + "0x3516415161c478df10adbb8bb884cc83fbd5f11a": { + "address": "0x3516415161c478df10adbb8bb884cc83fbd5f11a", + "symbol": "DEX", + "decimals": 18, + "name": "AlphaDex", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x3516415161c478df10adbb8bb884cc83fbd5f11a.png", + "aggregators": ["LiFi", "Socket", "Rubic"], + "occurrences": 3 + }, + "0xea4170a365952c666a9f34950771e51841732de9": { + "address": "0xea4170a365952c666a9f34950771e51841732de9", + "symbol": "FILTER", + "decimals": 18, + "name": "Filter AI [OLD]", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xea4170a365952c666a9f34950771e51841732de9.png", + "aggregators": ["LiFi", "Rubic", "Rango"], + "occurrences": 3 + }, + "0xaec7e1f531bb09115103c53ba76829910ec48966": { + "address": "0xaec7e1f531bb09115103c53ba76829910ec48966", + "symbol": "BLANK", + "decimals": 18, + "name": "Blank Token", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xaec7e1f531bb09115103c53ba76829910ec48966.png", + "aggregators": ["LiFi", "Socket", "Rubic"], + "occurrences": 3 + }, + "0x3d6f0dea3ac3c607b3998e6ce14b6350721752d9": { + "address": "0x3d6f0dea3ac3c607b3998e6ce14b6350721752d9", + "symbol": "CARDS", + "decimals": 18, + "name": "CARD.STARTER", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x3d6f0dea3ac3c607b3998e6ce14b6350721752d9.png", + "aggregators": ["LiFi", "Socket", "Rubic"], + "occurrences": 3 + }, + "0x30cf203b48edaa42c3b4918e955fed26cd012a3f": { + "address": "0x30cf203b48edaa42c3b4918e955fed26cd012a3f", + "symbol": "SEED", + "decimals": 18, + "name": "Seed", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x30cf203b48edaa42c3b4918e955fed26cd012a3f.png", + "aggregators": ["LiFi", "Socket", "Rubic"], + "occurrences": 3 + }, + "0x22222c03318440305ac3e8a7820563d6a9fd777f": { + "address": "0x22222c03318440305ac3e8a7820563d6a9fd777f", + "symbol": "CLV", + "decimals": 6, + "name": "Clover", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x22222c03318440305ac3e8a7820563d6a9fd777f.png", + "aggregators": ["LiFi", "Socket", "Rubic"], + "occurrences": 3 + }, + "0x88ef27e69108b2633f8e1c184cc37940a075cc02": { + "address": "0x88ef27e69108b2633f8e1c184cc37940a075cc02", + "symbol": "DEGO", + "decimals": 18, + "name": "dego.finance", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x88ef27e69108b2633f8e1c184cc37940a075cc02.png", + "aggregators": ["LiFi", "Socket", "Rubic"], + "occurrences": 3 + }, + "0x6c5fbc90e4d78f70cc5025db005b39b03914fc0c": { + "address": "0x6c5fbc90e4d78f70cc5025db005b39b03914fc0c", + "symbol": "URUS", + "decimals": 18, + "name": "Aurox Token", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x6c5fbc90e4d78f70cc5025db005b39b03914fc0c.png", + "aggregators": ["LiFi", "Socket", "Rubic"], + "occurrences": 3 + }, + "0x32bd822d615a3658a68b6fdd30c2fcb2c996d678": { + "address": "0x32bd822d615a3658a68b6fdd30c2fcb2c996d678", + "symbol": "MSWETH", + "decimals": 18, + "name": "mswETH", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x32bd822d615a3658a68b6fdd30c2fcb2c996d678.png", + "aggregators": ["LiFi", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x38b7bf4eecf3eb530b1529c9401fc37d2a71a912": { + "address": "0x38b7bf4eecf3eb530b1529c9401fc37d2a71a912", + "symbol": "CSMATIC", + "decimals": 18, + "name": "ClayStack Staked MATIC", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x38b7bf4eecf3eb530b1529c9401fc37d2a71a912.png", + "aggregators": ["LiFi", "Socket", "Rubic"], + "occurrences": 3 + }, + "0xeea3311250fe4c3268f8e684f7c87a82ff183ec1": { + "address": "0xeea3311250fe4c3268f8e684f7c87a82ff183ec1", + "symbol": "IBETHV2", + "decimals": 8, + "name": "Interest Bearing Ether v2", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xeea3311250fe4c3268f8e684f7c87a82ff183ec1.png", + "aggregators": ["LiFi", "Rango", "SushiSwap"], + "occurrences": 3 + }, + "0x61cc6af18c351351148815c5f4813a16dee7a7e4": { + "address": "0x61cc6af18c351351148815c5f4813a16dee7a7e4", + "symbol": "WCT", + "decimals": 18, + "name": "WalletConnect", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x61cc6af18c351351148815c5f4813a16dee7a7e4.png", + "aggregators": ["Socket", "Rubic", "Rango"], + "occurrences": 3 + }, + "0xcb9f85730f57732fc899fb158164b9ed60c77d49": { + "address": "0xcb9f85730f57732fc899fb158164b9ed60c77d49", + "symbol": "STKLYRA", + "decimals": 18, + "name": "Staked Lyra", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xcb9f85730f57732fc899fb158164b9ed60c77d49.png", + "aggregators": ["Socket", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x2f65c4c067a9d65875ba60b078ac7c17d522fcca": { + "address": "0x2f65c4c067a9d65875ba60b078ac7c17d522fcca", + "symbol": "TSAI", + "decimals": 9, + "name": "TaxSolutions AI", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x2f65c4c067a9d65875ba60b078ac7c17d522fcca.png", + "aggregators": ["Socket", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x3f14920c99beb920afa163031c4e47a3e03b3e4a": { + "address": "0x3f14920c99beb920afa163031c4e47a3e03b3e4a", + "symbol": "SEND", + "decimals": 0, + "name": "Send Token", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x3f14920c99beb920afa163031c4e47a3e03b3e4a.png", + "aggregators": ["Socket", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x38547d918b9645f2d94336b6b61aeb08053e142c": { + "address": "0x38547d918b9645f2d94336b6b61aeb08053e142c", + "symbol": "USC", + "decimals": 18, + "name": "USC", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x38547d918b9645f2d94336b6b61aeb08053e142c.png", + "aggregators": ["Socket", "Rubic", "Rango"], + "occurrences": 3 + }, + "0xa665fed1b0c9da00e91ca582f77df36e325048c5": { + "address": "0xa665fed1b0c9da00e91ca582f77df36e325048c5", + "symbol": "YFM", + "decimals": 18, + "name": "yfarmfinance", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xa665fed1b0c9da00e91ca582f77df36e325048c5.png", + "aggregators": ["Socket", "Rubic", "Bancor"], + "occurrences": 3 + }, + "0x24ae124c4cc33d6791f8e8b63520ed7107ac8b3e": { + "address": "0x24ae124c4cc33d6791f8e8b63520ed7107ac8b3e", + "symbol": "ESS", + "decimals": 18, + "name": "Empty Set Share", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x24ae124c4cc33d6791f8e8b63520ed7107ac8b3e.png", + "aggregators": ["Socket", "Rubic", "Rango"], + "occurrences": 3 + }, + "0xb28f803a8772e6584a65ab6dfc535ae6fef8a0b2": { + "address": "0xb28f803a8772e6584a65ab6dfc535ae6fef8a0b2", + "symbol": "LFI", + "decimals": 18, + "name": "LunaFi", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xb28f803a8772e6584a65ab6dfc535ae6fef8a0b2.png", + "aggregators": ["Socket", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x6ad2d2c22bb58ea94be18cff11ef67e8bb97b652": { + "address": "0x6ad2d2c22bb58ea94be18cff11ef67e8bb97b652", + "symbol": "WTIA", + "decimals": 18, + "name": "Wrapped TIA", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x6ad2d2c22bb58ea94be18cff11ef67e8bb97b652.png", + "aggregators": ["Socket", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x3392d8a60b77f8d3eaa4fb58f09d835bd31add29": { + "address": "0x3392d8a60b77f8d3eaa4fb58f09d835bd31add29", + "symbol": "INDI", + "decimals": 18, + "name": "IndiGG", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x3392d8a60b77f8d3eaa4fb58f09d835bd31add29.png", + "aggregators": ["Socket", "Rubic", "Rango"], + "occurrences": 3 + }, + "0xf385905e56db4d8a208b20aa8a88dbb225f773d4": { + "address": "0xf385905e56db4d8a208b20aa8a88dbb225f773d4", + "symbol": "BN", + "decimals": 18, + "name": "TNA Protocol", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xf385905e56db4d8a208b20aa8a88dbb225f773d4.png", + "aggregators": ["Socket", "Rubic", "Sonarwatch"], + "occurrences": 3 + }, + "0xa728aa2de568766e2fa4544ec7a77f79c0bf9f97": { + "address": "0xa728aa2de568766e2fa4544ec7a77f79c0bf9f97", + "symbol": "JOK", + "decimals": 18, + "name": "JokInTheBox", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xa728aa2de568766e2fa4544ec7a77f79c0bf9f97.png", + "aggregators": ["Socket", "Rubic", "Sonarwatch"], + "occurrences": 3 + }, + "0x82e229f145aa61000e523f97e5e8174107414897": { + "address": "0x82e229f145aa61000e523f97e5e8174107414897", + "symbol": "RYNO", + "decimals": 9, + "name": "Ryno AI", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x82e229f145aa61000e523f97e5e8174107414897.png", + "aggregators": ["Socket", "Rubic", "Rango"], + "occurrences": 3 + }, + "0xe729b15de141944abcea3cceb8e4407ce0dafa08": { + "address": "0xe729b15de141944abcea3cceb8e4407ce0dafa08", + "symbol": "MOJO", + "decimals": 18, + "name": "MOJO", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xe729b15de141944abcea3cceb8e4407ce0dafa08.png", + "aggregators": ["Socket", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x6dc6a27822ae2ca3a47da39a2f2bbd525dd693f8": { + "address": "0x6dc6a27822ae2ca3a47da39a2f2bbd525dd693f8", + "symbol": "CYDOGE", + "decimals": 18, + "name": "CYBERDOGE", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x6dc6a27822ae2ca3a47da39a2f2bbd525dd693f8.png", + "aggregators": ["Socket", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x1e7572fb16e176d40d28090e51a7a9ea08f68199": { + "address": "0x1e7572fb16e176d40d28090e51a7a9ea08f68199", + "symbol": "MEOW", + "decimals": 9, + "name": "MEOW COIN", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x1e7572fb16e176d40d28090e51a7a9ea08f68199.png", + "aggregators": ["Socket", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x138c2f1123cf3f82e4596d097c118eac6684940b": { + "address": "0x138c2f1123cf3f82e4596d097c118eac6684940b", + "symbol": "ALPHA", + "decimals": 18, + "name": "Alpha", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x138c2f1123cf3f82e4596d097c118eac6684940b.png", + "aggregators": ["Socket", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x0000000000004946c0e9f43f4dee607b0ef1fa1c": { + "address": "0x0000000000004946c0e9f43f4dee607b0ef1fa1c", + "symbol": "CHI", + "decimals": 0, + "name": "Chi Gastoken by 1inch", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x0000000000004946c0e9f43f4dee607b0ef1fa1c.png", + "aggregators": ["Socket", "Rubic", "Rango"], + "occurrences": 3 + }, + "0xed1aecc815c00073ba6707b1cd4bd7f833da7a38": { + "address": "0xed1aecc815c00073ba6707b1cd4bd7f833da7a38", + "symbol": "INTX", + "decimals": 18, + "name": "Intel X", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xed1aecc815c00073ba6707b1cd4bd7f833da7a38.png", + "aggregators": ["Socket", "Rubic", "Rango"], + "occurrences": 3 + }, + "0xadd353fb2e2c563383ff3272a500f3e7134dafe4": { + "address": "0xadd353fb2e2c563383ff3272a500f3e7134dafe4", + "symbol": "TUNA", + "decimals": 18, + "name": "Tuna Chain", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xadd353fb2e2c563383ff3272a500f3e7134dafe4.png", + "aggregators": ["Socket", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x77d0cb0ab54f9e74b9405a5b3f60da06a78f1aad": { + "address": "0x77d0cb0ab54f9e74b9405a5b3f60da06a78f1aad", + "symbol": "WMLX", + "decimals": 0, + "name": "WrappedMillix", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x77d0cb0ab54f9e74b9405a5b3f60da06a78f1aad.png", + "aggregators": ["Socket", "Rubic", "Rango"], + "occurrences": 3 + }, + "0xb8e3e431ffb17dac4bedec04b901a3c03179fd1b": { + "address": "0xb8e3e431ffb17dac4bedec04b901a3c03179fd1b", + "symbol": "DOPE", + "decimals": 8, + "name": "DogePepe", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xb8e3e431ffb17dac4bedec04b901a3c03179fd1b.png", + "aggregators": ["Socket", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x94e9eb8b5ab9fd6b9ea3169d55ffade62a01702e": { + "address": "0x94e9eb8b5ab9fd6b9ea3169d55ffade62a01702e", + "symbol": "BREED", + "decimals": 18, + "name": "BreederDAO", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x94e9eb8b5ab9fd6b9ea3169d55ffade62a01702e.png", + "aggregators": ["Socket", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x38fb3406532398bc3ec391b5ebeb833cc4c89d58": { + "address": "0x38fb3406532398bc3ec391b5ebeb833cc4c89d58", + "symbol": "VBELLS", + "decimals": 18, + "name": "Vaulted Bellscoin", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x38fb3406532398bc3ec391b5ebeb833cc4c89d58.png", + "aggregators": ["Socket", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x7c5095bb2dae81bb9a21ee9f1b7815cd710194e5": { + "address": "0x7c5095bb2dae81bb9a21ee9f1b7815cd710194e5", + "symbol": "OBX", + "decimals": 18, + "name": "Obama6900", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x7c5095bb2dae81bb9a21ee9f1b7815cd710194e5.png", + "aggregators": ["Socket", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x162bb2bb5fb03976a69dd25bb9afce6140db1433": { + "address": "0x162bb2bb5fb03976a69dd25bb9afce6140db1433", + "symbol": "DOG", + "decimals": 9, + "name": "dog", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x162bb2bb5fb03976a69dd25bb9afce6140db1433.png", + "aggregators": ["Socket", "Rubic", "Rango"], + "occurrences": 3 + }, + "0xc3960227e41c3f54e9b399ce216149dea5315c34": { + "address": "0xc3960227e41c3f54e9b399ce216149dea5315c34", + "symbol": "CZ", + "decimals": 9, + "name": "Changpeng Zhao", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xc3960227e41c3f54e9b399ce216149dea5315c34.png", + "aggregators": ["Socket", "Rubic", "Rango"], + "occurrences": 3 + }, + "0xe3f03cef497c81d2b28a2fae63ae84b373028718": { + "address": "0xe3f03cef497c81d2b28a2fae63ae84b373028718", + "symbol": "MARVIN", + "decimals": 9, + "name": "MARVIN", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xe3f03cef497c81d2b28a2fae63ae84b373028718.png", + "aggregators": ["Socket", "Rubic", "Rango"], + "occurrences": 3 + }, + "0xd2960d83c53085b5631f4d0be4916806e40ef1f3": { + "address": "0xd2960d83c53085b5631f4d0be4916806e40ef1f3", + "symbol": "OOFP", + "decimals": 18, + "name": "OOFP", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xd2960d83c53085b5631f4d0be4916806e40ef1f3.png", + "aggregators": ["Socket", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x72fc1c1c926bd26712f62e7485392cd405478f05": { + "address": "0x72fc1c1c926bd26712f62e7485392cd405478f05", + "symbol": "BARK", + "decimals": 9, + "name": "Bark Gas Token", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x72fc1c1c926bd26712f62e7485392cd405478f05.png", + "aggregators": ["Socket", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x4206931337dc273a630d328da6441786bfad668f": { + "address": "0x4206931337dc273a630d328da6441786bfad668f", + "symbol": "DOGE", + "decimals": 8, + "name": "Dogecoin", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x4206931337dc273a630d328da6441786bfad668f.png", + "aggregators": ["Socket", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x2cb5d9fd89d48c516f11904117c57e3934f39524": { + "address": "0x2cb5d9fd89d48c516f11904117c57e3934f39524", + "symbol": "CUTE", + "decimals": 18, + "name": "PEPE UWU", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x2cb5d9fd89d48c516f11904117c57e3934f39524.png", + "aggregators": ["Socket", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x03cce75a4795c1cfab8b7c0a1fb38df46d2f4159": { + "address": "0x03cce75a4795c1cfab8b7c0a1fb38df46d2f4159", + "symbol": "MAJOR", + "decimals": 9, + "name": "Major", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x03cce75a4795c1cfab8b7c0a1fb38df46d2f4159.png", + "aggregators": ["Socket", "Rubic", "Rango"], + "occurrences": 3 + }, + "0xf74751c07c92b668f02527d0e1384ee6d68ac90e": { + "address": "0xf74751c07c92b668f02527d0e1384ee6d68ac90e", + "symbol": "CTRL", + "decimals": 9, + "name": "AltCTRL", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xf74751c07c92b668f02527d0e1384ee6d68ac90e.png", + "aggregators": ["Socket", "Rubic", "Rango"], + "occurrences": 3 + }, + "0xc256f81d35a54c3599b424171d719e9ae87b2e9b": { + "address": "0xc256f81d35a54c3599b424171d719e9ae87b2e9b", + "symbol": "ZOOA", + "decimals": 18, + "name": "ZOOA", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xc256f81d35a54c3599b424171d719e9ae87b2e9b.png", + "aggregators": ["Socket", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x837ee5a664d51bc2e7d26eb63cffeb48e037bde2": { + "address": "0x837ee5a664d51bc2e7d26eb63cffeb48e037bde2", + "symbol": "NMAI", + "decimals": 18, + "name": "NomotaAI", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x837ee5a664d51bc2e7d26eb63cffeb48e037bde2.png", + "aggregators": ["Socket", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x95ac17ce4021417e25b8edf807366fc3be091b5e": { + "address": "0x95ac17ce4021417e25b8edf807366fc3be091b5e", + "symbol": "ZAAR", + "decimals": 18, + "name": "Zaar", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x95ac17ce4021417e25b8edf807366fc3be091b5e.png", + "aggregators": ["Socket", "Rubic", "Rango"], + "occurrences": 3 + }, + "0xed40ab79a3225902435c26233ed84fb74bd8ffb8": { + "address": "0xed40ab79a3225902435c26233ed84fb74bd8ffb8", + "symbol": "GSLAM", + "decimals": 18, + "name": "GramSlams", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xed40ab79a3225902435c26233ed84fb74bd8ffb8.png", + "aggregators": ["Socket", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x494930dabcfa57748a4c4788c0054f723a789047": { + "address": "0x494930dabcfa57748a4c4788c0054f723a789047", + "symbol": "COOMER", + "decimals": 9, + "name": "COOMER", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x494930dabcfa57748a4c4788c0054f723a789047.png", + "aggregators": ["Socket", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x9e566e28c61690f8afe0468f523e137b1ff29f01": { + "address": "0x9e566e28c61690f8afe0468f523e137b1ff29f01", + "symbol": "GNCAT", + "decimals": 9, + "name": "GanNamCAT", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x9e566e28c61690f8afe0468f523e137b1ff29f01.png", + "aggregators": ["Socket", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x2cc774364ec2d4cf53433c76dad287b743b17441": { + "address": "0x2cc774364ec2d4cf53433c76dad287b743b17441", + "symbol": "AGURI", + "decimals": 9, + "name": "Aguri", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x2cc774364ec2d4cf53433c76dad287b743b17441.png", + "aggregators": ["Socket", "Rubic", "Rango"], + "occurrences": 3 + }, + "0xb538d9f3e1ae450827618519acd96086fc4c0a59": { + "address": "0xb538d9f3e1ae450827618519acd96086fc4c0a59", + "symbol": "GIZMO", + "decimals": 18, + "name": "GIZMO", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xb538d9f3e1ae450827618519acd96086fc4c0a59.png", + "aggregators": ["Socket", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x94c6625371a59f3abe3b810c5d6f4e7c965d1b88": { + "address": "0x94c6625371a59f3abe3b810c5d6f4e7c965d1b88", + "symbol": "INSORA", + "decimals": 18, + "name": "INSORA AI", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x94c6625371a59f3abe3b810c5d6f4e7c965d1b88.png", + "aggregators": ["Socket", "Rubic", "Sonarwatch"], + "occurrences": 3 + }, + "0x541f9ac587be412ba0486ea3dbcf09dc11db76ce": { + "address": "0x541f9ac587be412ba0486ea3dbcf09dc11db76ce", + "symbol": "NEBULA", + "decimals": 18, + "name": "Nebula", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x541f9ac587be412ba0486ea3dbcf09dc11db76ce.png", + "aggregators": ["Socket", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x70734a09b7a89f8ec3558d432fcb518dcc3c0fa0": { + "address": "0x70734a09b7a89f8ec3558d432fcb518dcc3c0fa0", + "symbol": "KABOSU", + "decimals": 18, + "name": "Kabosu", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x70734a09b7a89f8ec3558d432fcb518dcc3c0fa0.png", + "aggregators": ["Socket", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x1945e804b8a25b98ab140e58295404d768ca3f6b": { + "address": "0x1945e804b8a25b98ab140e58295404d768ca3f6b", + "symbol": "MOTION", + "decimals": 18, + "name": "MOTION", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x1945e804b8a25b98ab140e58295404d768ca3f6b.png", + "aggregators": ["Socket", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x45b6d1cfcc0218f4d57db1a2895c0f14c8c3cf96": { + "address": "0x45b6d1cfcc0218f4d57db1a2895c0f14c8c3cf96", + "symbol": "PTKN", + "decimals": 18, + "name": "Panda", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x45b6d1cfcc0218f4d57db1a2895c0f14c8c3cf96.png", + "aggregators": ["Socket", "Rubic", "Rango"], + "occurrences": 3 + }, + "0xfeff7b68bc540826da22b296c82a4b8b6b845f41": { + "address": "0xfeff7b68bc540826da22b296c82a4b8b6b845f41", + "symbol": "UEFN", + "decimals": 18, + "name": "UEFN", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xfeff7b68bc540826da22b296c82a4b8b6b845f41.png", + "aggregators": ["Socket", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x1b900b2cde13b384f89d6dd697dc03ac61c702bb": { + "address": "0x1b900b2cde13b384f89d6dd697dc03ac61c702bb", + "symbol": "WHAT", + "decimals": 18, + "name": "What the Duck", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x1b900b2cde13b384f89d6dd697dc03ac61c702bb.png", + "aggregators": ["Socket", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x7ca9403ba20ac9e649c8dba53f920663540985a9": { + "address": "0x7ca9403ba20ac9e649c8dba53f920663540985a9", + "symbol": "NEXIS", + "decimals": 18, + "name": "Nexis Tools", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x7ca9403ba20ac9e649c8dba53f920663540985a9.png", + "aggregators": ["Socket", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x7db5af2b9624e1b3b4bb69d6debd9ad1016a58ac": { + "address": "0x7db5af2b9624e1b3b4bb69d6debd9ad1016a58ac", + "symbol": "VOLT", + "decimals": 9, + "name": "VOLT", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x7db5af2b9624e1b3b4bb69d6debd9ad1016a58ac.png", + "aggregators": ["Socket", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x95640a134721475bc78594c8ea66c0182c7b9a50": { + "address": "0x95640a134721475bc78594c8ea66c0182c7b9a50", + "symbol": "MXH", + "decimals": 9, + "name": "Metroxynth", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x95640a134721475bc78594c8ea66c0182c7b9a50.png", + "aggregators": ["Socket", "Rubic", "Rango"], + "occurrences": 3 + }, + "0xce9de5365739b1bed5c8546867aee4209fbb8538": { + "address": "0xce9de5365739b1bed5c8546867aee4209fbb8538", + "symbol": "THUG", + "decimals": 18, + "name": "Thug Life Token", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xce9de5365739b1bed5c8546867aee4209fbb8538.png", + "aggregators": ["Socket", "Rubic", "Rango"], + "occurrences": 3 + }, + "0xc7c53760375530e5af29fded5e13989325299382": { + "address": "0xc7c53760375530e5af29fded5e13989325299382", + "symbol": "WPC", + "decimals": 9, + "name": "WORLD PEACE COIN", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xc7c53760375530e5af29fded5e13989325299382.png", + "aggregators": ["Socket", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x84dad4e4a4d1510052d39e916330372db8cd1238": { + "address": "0x84dad4e4a4d1510052d39e916330372db8cd1238", + "symbol": "DEEZNUTS", + "decimals": 18, + "name": "DEEZ NUTS", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x84dad4e4a4d1510052d39e916330372db8cd1238.png", + "aggregators": ["Socket", "Rubic", "Rango"], + "occurrences": 3 + }, + "0xfe3aaf3b1dd087331ec68c4dd86e8fe542598d5e": { + "address": "0xfe3aaf3b1dd087331ec68c4dd86e8fe542598d5e", + "symbol": "AKEN", + "decimals": 18, + "name": "ALTOKEN", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xfe3aaf3b1dd087331ec68c4dd86e8fe542598d5e.png", + "aggregators": ["Socket", "Rubic", "Rango"], + "occurrences": 3 + }, + "0xcf01d4485398f3b8a0b177c5225402e2fdb4f997": { + "address": "0xcf01d4485398f3b8a0b177c5225402e2fdb4f997", + "symbol": "UNCLE", + "decimals": 18, + "name": "PEPE UNCLE", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xcf01d4485398f3b8a0b177c5225402e2fdb4f997.png", + "aggregators": ["Socket", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x1ee2b89458eb12f93f7f01972c39589b99a8ed5a": { + "address": "0x1ee2b89458eb12f93f7f01972c39589b99a8ed5a", + "symbol": "SENDR", + "decimals": 18, + "name": "Sendr", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x1ee2b89458eb12f93f7f01972c39589b99a8ed5a.png", + "aggregators": ["Socket", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x4166673521e31ed98801e45e8b068b4bc227a110": { + "address": "0x4166673521e31ed98801e45e8b068b4bc227a110", + "symbol": "PONZIE", + "decimals": 18, + "name": "Ponzi Express", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x4166673521e31ed98801e45e8b068b4bc227a110.png", + "aggregators": ["Socket", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x5a1bcfa16e3edff07dfa60427bd0b51736ea8d37": { + "address": "0x5a1bcfa16e3edff07dfa60427bd0b51736ea8d37", + "symbol": "MGGA", + "decimals": 18, + "name": "Mgga", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x5a1bcfa16e3edff07dfa60427bd0b51736ea8d37.png", + "aggregators": ["Socket", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x4096fc7119040175589387656f7c6073265f4096": { + "address": "0x4096fc7119040175589387656f7c6073265f4096", + "symbol": "4096", + "decimals": 0, + "name": "4096", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x4096fc7119040175589387656f7c6073265f4096.png", + "aggregators": ["Socket", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x7f5e1a2424ebdd141b0df15f974ddcb87751a012": { + "address": "0x7f5e1a2424ebdd141b0df15f974ddcb87751a012", + "symbol": "LLM", + "decimals": 18, + "name": "LLM", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x7f5e1a2424ebdd141b0df15f974ddcb87751a012.png", + "aggregators": ["Socket", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x880eeea0637f91bb259dfd7bb261638a42bddb25": { + "address": "0x880eeea0637f91bb259dfd7bb261638a42bddb25", + "symbol": "BIAI", + "decimals": 9, + "name": "BlockInsightAI", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x880eeea0637f91bb259dfd7bb261638a42bddb25.png", + "aggregators": ["Socket", "Rubic", "Sonarwatch"], + "occurrences": 3 + }, + "0x665f4709940f557e9dde63df0fd9cf6425852b4d": { + "address": "0x665f4709940f557e9dde63df0fd9cf6425852b4d", + "symbol": "HALVING", + "decimals": 9, + "name": "Halving", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x665f4709940f557e9dde63df0fd9cf6425852b4d.png", + "aggregators": ["Socket", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x001823d353a2d71ad744599390cbb2f8240afda9": { + "address": "0x001823d353a2d71ad744599390cbb2f8240afda9", + "symbol": "CHERRY", + "decimals": 18, + "name": "cherrypicksAI", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x001823d353a2d71ad744599390cbb2f8240afda9.png", + "aggregators": ["Socket", "Rubic", "Rango"], + "occurrences": 3 + }, + "0xe8b1e79d937c648ce1fe96e6739ddb2714058a18": { + "address": "0xe8b1e79d937c648ce1fe96e6739ddb2714058a18", + "symbol": "GTM", + "decimals": 18, + "name": "ColonizeMars", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xe8b1e79d937c648ce1fe96e6739ddb2714058a18.png", + "aggregators": ["Socket", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x0d3e106b9555c8c7052da0e7909956d640ac2c69": { + "address": "0x0d3e106b9555c8c7052da0e7909956d640ac2c69", + "symbol": "POPKAT", + "decimals": 8, + "name": "POPKAT", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x0d3e106b9555c8c7052da0e7909956d640ac2c69.png", + "aggregators": ["Socket", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x77777bf11ab5b96753ea48e0401667a70675841e": { + "address": "0x77777bf11ab5b96753ea48e0401667a70675841e", + "symbol": "PYRA", + "decimals": 18, + "name": "Pyramid Financial", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x77777bf11ab5b96753ea48e0401667a70675841e.png", + "aggregators": ["Socket", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x4346139e71ba7b4b6abd405782703006cc180988": { + "address": "0x4346139e71ba7b4b6abd405782703006cc180988", + "symbol": "TGPU", + "decimals": 18, + "name": "TonGPU", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x4346139e71ba7b4b6abd405782703006cc180988.png", + "aggregators": ["Socket", "Rubic", "Rango"], + "occurrences": 3 + }, + "0xc7af7dc0a7a7e47e21eb50433a903d742370fffb": { + "address": "0xc7af7dc0a7a7e47e21eb50433a903d742370fffb", + "symbol": "DOGE-1", + "decimals": 18, + "name": "DOGE-1", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xc7af7dc0a7a7e47e21eb50433a903d742370fffb.png", + "aggregators": ["Socket", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x0e5f00da8aaef196a719d045db89b5da8f371b32": { + "address": "0x0e5f00da8aaef196a719d045db89b5da8f371b32", + "symbol": "CNTM", + "decimals": 18, + "name": "Connectome", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x0e5f00da8aaef196a719d045db89b5da8f371b32.png", + "aggregators": ["Socket", "Rubic", "Rango"], + "occurrences": 3 + }, + "0xac9d70aebd49555b033751e311044becf3513c0f": { + "address": "0xac9d70aebd49555b033751e311044becf3513c0f", + "symbol": "MTK", + "decimals": 18, + "name": "Moonland Metaverse Token", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xac9d70aebd49555b033751e311044becf3513c0f.png", + "aggregators": ["Socket", "Rubic", "Sonarwatch"], + "occurrences": 3 + }, + "0x90d1964873ddd741f49ed3ca9c47ceb470313a09": { + "address": "0x90d1964873ddd741f49ed3ca9c47ceb470313a09", + "symbol": "HENLO", + "decimals": 18, + "name": "Henlo", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x90d1964873ddd741f49ed3ca9c47ceb470313a09.png", + "aggregators": ["Socket", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x0c7ecdb459111cd806e54adc9da1f4a03b43b64a": { + "address": "0x0c7ecdb459111cd806e54adc9da1f4a03b43b64a", + "symbol": "GG", + "decimals": 18, + "name": "GrimGold", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x0c7ecdb459111cd806e54adc9da1f4a03b43b64a.png", + "aggregators": ["Socket", "Rubic", "Rango"], + "occurrences": 3 + }, + "0xc4c244f1dbca07083fee35220d2169957c275e68": { + "address": "0xc4c244f1dbca07083fee35220d2169957c275e68", + "symbol": "STEAK", + "decimals": 18, + "name": "Steak", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xc4c244f1dbca07083fee35220d2169957c275e68.png", + "aggregators": ["Socket", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x4022754bf8857395383c63326391f289d1bb14b9": { + "address": "0x4022754bf8857395383c63326391f289d1bb14b9", + "symbol": "DRV3", + "decimals": 18, + "name": "DRIVE3 PROTOCOL", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x4022754bf8857395383c63326391f289d1bb14b9.png", + "aggregators": ["Socket", "Rubic", "Rango"], + "occurrences": 3 + }, + "0xb146823fb8ea064d14ba1a52e3e55cde09afff2d": { + "address": "0xb146823fb8ea064d14ba1a52e3e55cde09afff2d", + "symbol": "EYE", + "decimals": 18, + "name": "ChartAI", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xb146823fb8ea064d14ba1a52e3e55cde09afff2d.png", + "aggregators": ["Socket", "Rubic", "Rango"], + "occurrences": 3 + }, + "0xb14df3954fcb59a2b3c7fad1e9a24988e339ff78": { + "address": "0xb14df3954fcb59a2b3c7fad1e9a24988e339ff78", + "symbol": "O3D", + "decimals": 18, + "name": "Origin3D", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xb14df3954fcb59a2b3c7fad1e9a24988e339ff78.png", + "aggregators": ["Socket", "Rubic", "Sonarwatch"], + "occurrences": 3 + }, + "0x5138ebe7acaae209d6f0b651e4d02a67ef61f436": { + "address": "0x5138ebe7acaae209d6f0b651e4d02a67ef61f436", + "symbol": "GRAF", + "decimals": 18, + "name": "Graffiti", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x5138ebe7acaae209d6f0b651e4d02a67ef61f436.png", + "aggregators": ["Socket", "Rubic", "Rango"], + "occurrences": 3 + }, + "0xcda2f16c6aa895d533506b426aff827b709c87f5": { + "address": "0xcda2f16c6aa895d533506b426aff827b709c87f5", + "symbol": "FAI", + "decimals": 18, + "name": "Fairum Community", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xcda2f16c6aa895d533506b426aff827b709c87f5.png", + "aggregators": ["Socket", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x6d3f7af0ba8003a2de0335bccd957921380b2d9e": { + "address": "0x6d3f7af0ba8003a2de0335bccd957921380b2d9e", + "symbol": "LIMON", + "decimals": 9, + "name": "LimoncelloAI", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x6d3f7af0ba8003a2de0335bccd957921380b2d9e.png", + "aggregators": ["Socket", "Rubic", "Sonarwatch"], + "occurrences": 3 + }, + "0xc106b98c4d0b3f1c92da0e9a6089e9c63ceacbb0": { + "address": "0xc106b98c4d0b3f1c92da0e9a6089e9c63ceacbb0", + "symbol": "TRND", + "decimals": 9, + "name": "TrendAppend", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xc106b98c4d0b3f1c92da0e9a6089e9c63ceacbb0.png", + "aggregators": ["Socket", "Rubic", "Rango"], + "occurrences": 3 + }, + "0xcdf6b7657b8f26c396293417d713b7fc6b8304d9": { + "address": "0xcdf6b7657b8f26c396293417d713b7fc6b8304d9", + "symbol": "ATHENA", + "decimals": 18, + "name": "Project Athena", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xcdf6b7657b8f26c396293417d713b7fc6b8304d9.png", + "aggregators": ["Socket", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x984ac33e3c6031b7190444aed92d617b92ef2c37": { + "address": "0x984ac33e3c6031b7190444aed92d617b92ef2c37", + "symbol": "BOTON", + "decimals": 9, + "name": "Boton AI", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x984ac33e3c6031b7190444aed92d617b92ef2c37.png", + "aggregators": ["Socket", "Rubic", "Sonarwatch"], + "occurrences": 3 + }, + "0xa849cd6239906f23b63ba34441b73a5c6eba8a00": { + "address": "0xa849cd6239906f23b63ba34441b73a5c6eba8a00", + "symbol": "HASH", + "decimals": 18, + "name": "HASHMIND", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xa849cd6239906f23b63ba34441b73a5c6eba8a00.png", + "aggregators": ["Socket", "Rubic", "Rango"], + "occurrences": 3 + }, + "0xbd617a1359086e33ff339ea0b9c6de479a3f5943": { + "address": "0xbd617a1359086e33ff339ea0b9c6de479a3f5943", + "symbol": "IDE", + "decimals": 9, + "name": "ide.x.ai", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xbd617a1359086e33ff339ea0b9c6de479a3f5943.png", + "aggregators": ["Socket", "Rubic", "Rango"], + "occurrences": 3 + }, + "0xd836d22531d810f192ba6bd0ba3c28c35d4606c2": { + "address": "0xd836d22531d810f192ba6bd0ba3c28c35d4606c2", + "symbol": "BONKBEST", + "decimals": 9, + "name": "BONKBEST", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xd836d22531d810f192ba6bd0ba3c28c35d4606c2.png", + "aggregators": ["Socket", "Rubic", "Rango"], + "occurrences": 3 + }, + "0xa069add2d093f9df0e82ab64ec7dd0320cb4f65d": { + "address": "0xa069add2d093f9df0e82ab64ec7dd0320cb4f65d", + "symbol": "GPUBOT", + "decimals": 18, + "name": "GPUBot", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xa069add2d093f9df0e82ab64ec7dd0320cb4f65d.png", + "aggregators": ["Socket", "Rubic", "Rango"], + "occurrences": 3 + }, + "0xd775997452923437ca96065ba15ed02f4a33ed39": { + "address": "0xd775997452923437ca96065ba15ed02f4a33ed39", + "symbol": "DWIF", + "decimals": 18, + "name": "DRAGONWIFHAT", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xd775997452923437ca96065ba15ed02f4a33ed39.png", + "aggregators": ["Socket", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x1f7505f486c22f4338ac2bde67a3e93a547644b9": { + "address": "0x1f7505f486c22f4338ac2bde67a3e93a547644b9", + "symbol": "CIA", + "decimals": 18, + "name": "Cat Intelligence Agency", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x1f7505f486c22f4338ac2bde67a3e93a547644b9.png", + "aggregators": ["Socket", "Rubic", "Rango"], + "occurrences": 3 + }, + "0xa187927c9185108458647aeec193ef4a62d3bd80": { + "address": "0xa187927c9185108458647aeec193ef4a62d3bd80", + "symbol": "MMG", + "decimals": 18, + "name": "Meta Minigames", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xa187927c9185108458647aeec193ef4a62d3bd80.png", + "aggregators": ["Socket", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x7d64bde04e64be1c4cae808719c1127f2ccc252b": { + "address": "0x7d64bde04e64be1c4cae808719c1127f2ccc252b", + "symbol": "BULLY", + "decimals": 9, + "name": "bully ze bull", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x7d64bde04e64be1c4cae808719c1127f2ccc252b.png", + "aggregators": ["Socket", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x6fcd2db93082e85d662173a70feaf59b97860c3e": { + "address": "0x6fcd2db93082e85d662173a70feaf59b97860c3e", + "symbol": "SEAI", + "decimals": 9, + "name": "ServeFi AI", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x6fcd2db93082e85d662173a70feaf59b97860c3e.png", + "aggregators": ["Socket", "Rubic", "Sonarwatch"], + "occurrences": 3 + }, + "0x735acdedd91a80334ff72f07bff41e1eecf26677": { + "address": "0x735acdedd91a80334ff72f07bff41e1eecf26677", + "symbol": "EUUS", + "decimals": 18, + "name": "EUUS", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x735acdedd91a80334ff72f07bff41e1eecf26677.png", + "aggregators": ["Socket", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x716457d3ee671231e3a9fd320940e88ac247a733": { + "address": "0x716457d3ee671231e3a9fd320940e88ac247a733", + "symbol": "MAAI", + "decimals": 9, + "name": "Mars AI", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x716457d3ee671231e3a9fd320940e88ac247a733.png", + "aggregators": ["Socket", "Rubic", "Sonarwatch"], + "occurrences": 3 + }, + "0x1d64231e179f074baa3f22d44a6ca3a2670b2709": { + "address": "0x1d64231e179f074baa3f22d44a6ca3a2670b2709", + "symbol": "FIAS", + "decimals": 18, + "name": "Fias", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x1d64231e179f074baa3f22d44a6ca3a2670b2709.png", + "aggregators": ["Socket", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x4e0fca55a6c3a94720ded91153a27f60e26b9aa8": { + "address": "0x4e0fca55a6c3a94720ded91153a27f60e26b9aa8", + "symbol": "BOOST", + "decimals": 18, + "name": "Boost", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x4e0fca55a6c3a94720ded91153a27f60e26b9aa8.png", + "aggregators": ["Socket", "Rubic", "Rango"], + "occurrences": 3 + }, + "0xf1182229b71e79e504b1d2bf076c15a277311e05": { + "address": "0xf1182229b71e79e504b1d2bf076c15a277311e05", + "symbol": "LBR", + "decimals": 18, + "name": "LBR", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xf1182229b71e79e504b1d2bf076c15a277311e05.png", + "aggregators": ["Socket", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x3595e426a7808e2482667ee4e453ef280fbb9cf4": { + "address": "0x3595e426a7808e2482667ee4e453ef280fbb9cf4", + "symbol": "COCAINE", + "decimals": 9, + "name": "Nose Candy", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x3595e426a7808e2482667ee4e453ef280fbb9cf4.png", + "aggregators": ["Rubic", "Rango", "Sonarwatch"], + "occurrences": 3 + }, + "0x048d07bd350ba516b84587e147284881b593eb86": { + "address": "0x048d07bd350ba516b84587e147284881b593eb86", + "symbol": "SYNK", + "decimals": 18, + "name": "Synk", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x048d07bd350ba516b84587e147284881b593eb86.png", + "aggregators": ["Rubic", "Rango", "Sonarwatch"], + "occurrences": 3 + }, + "0x9bbe8f42b9c2333fe2a80323028ab107379646c7": { + "address": "0x9bbe8f42b9c2333fe2a80323028ab107379646c7", + "symbol": "POWER", + "decimals": 18, + "name": "Power Play", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x9bbe8f42b9c2333fe2a80323028ab107379646c7.png", + "aggregators": ["Rubic", "Rango", "Sonarwatch"], + "occurrences": 3 + }, + "0x20910e5b5f087f6439dfcb0dda4e27d1014ac2b8": { + "address": "0x20910e5b5f087f6439dfcb0dda4e27d1014ac2b8", + "symbol": "BNA", + "decimals": 18, + "name": "BananaTok", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x20910e5b5f087f6439dfcb0dda4e27d1014ac2b8.png", + "aggregators": ["Rubic", "Rango", "Sonarwatch"], + "occurrences": 3 + }, + "0x61b34a012646cd7357f58ee9c0160c6d0021fa41": { + "address": "0x61b34a012646cd7357f58ee9c0160c6d0021fa41", + "symbol": "ELO", + "decimals": 18, + "name": "Elosys", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x61b34a012646cd7357f58ee9c0160c6d0021fa41.png", + "aggregators": ["Rubic", "Rango", "Sonarwatch"], + "occurrences": 3 + }, + "0x503cd987998824192578d0d7950148445667287c": { + "address": "0x503cd987998824192578d0d7950148445667287c", + "symbol": "FOG", + "decimals": 18, + "name": "FOGnet", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x503cd987998824192578d0d7950148445667287c.png", + "aggregators": ["Rubic", "Rango", "Sonarwatch"], + "occurrences": 3 + }, + "0x2c8ea636345a231e4b1a28f6eeb2072ed909c406": { + "address": "0x2c8ea636345a231e4b1a28f6eeb2072ed909c406", + "symbol": "MEMELON", + "decimals": 18, + "name": "Meme Elon Doge Floki", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x2c8ea636345a231e4b1a28f6eeb2072ed909c406.png", + "aggregators": ["Rubic", "Rango", "Sonarwatch"], + "occurrences": 3 + }, + "0xebe4a49df7885d015329c919bf43e6460a858f1e": { + "address": "0xebe4a49df7885d015329c919bf43e6460a858f1e", + "symbol": "SHK", + "decimals": 18, + "name": "iShook", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xebe4a49df7885d015329c919bf43e6460a858f1e.png", + "aggregators": ["Rubic", "Rango", "Sonarwatch"], + "occurrences": 3 + }, + "0xcb21311d3b91b5324f6c11b4f5a656fcacbff122": { + "address": "0xcb21311d3b91b5324f6c11b4f5a656fcacbff122", + "symbol": "QAI", + "decimals": 18, + "name": "QuantixAI", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xcb21311d3b91b5324f6c11b4f5a656fcacbff122.png", + "aggregators": ["Rubic", "Rango", "Sonarwatch"], + "occurrences": 3 + }, + "0x1f3f677ecc58f6a1f9e2cf410df4776a8546b5de": { + "address": "0x1f3f677ecc58f6a1f9e2cf410df4776a8546b5de", + "symbol": "VNDC", + "decimals": 0, + "name": "VNDC", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x1f3f677ecc58f6a1f9e2cf410df4776a8546b5de.png", + "aggregators": ["Rubic", "Rango", "Sonarwatch"], + "occurrences": 3 + }, + "0x4161725d019690a3e0de50f6be67b07a86a9fae1": { + "address": "0x4161725d019690a3e0de50f6be67b07a86a9fae1", + "symbol": "TPT", + "decimals": 4, + "name": "TokenPocket Token", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x4161725d019690a3e0de50f6be67b07a86a9fae1.png", + "aggregators": ["Rubic", "Rango", "Sonarwatch"], + "occurrences": 3 + }, + "0xe344fb85b4fab79e0ef32ce77c00732ce8566244": { + "address": "0xe344fb85b4fab79e0ef32ce77c00732ce8566244", + "symbol": "FILM", + "decimals": 8, + "name": "Gala Film", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xe344fb85b4fab79e0ef32ce77c00732ce8566244.png", + "aggregators": ["Rubic", "Rango", "Sonarwatch"], + "occurrences": 3 + }, + "0x364c65347bdd77e6196fad96d42dbbd6d55cf719": { + "address": "0x364c65347bdd77e6196fad96d42dbbd6d55cf719", + "symbol": "BRK", + "decimals": 18, + "name": "BRK690k", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x364c65347bdd77e6196fad96d42dbbd6d55cf719.png", + "aggregators": ["Rubic", "Rango", "Sonarwatch"], + "occurrences": 3 + }, + "0x070e984fda37dd942f5c953f6b2375339adac308": { + "address": "0x070e984fda37dd942f5c953f6b2375339adac308", + "symbol": "AXE", + "decimals": 18, + "name": "Axe Cap", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x070e984fda37dd942f5c953f6b2375339adac308.png", + "aggregators": ["Rubic", "Rango", "Sonarwatch"], + "occurrences": 3 + }, + "0x7468d234a8db6f1085dbf4e403553bfed41df95c": { + "address": "0x7468d234a8db6f1085dbf4e403553bfed41df95c", + "symbol": "IO", + "decimals": 18, + "name": "Ideal Opportunities", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x7468d234a8db6f1085dbf4e403553bfed41df95c.png", + "aggregators": ["Rubic", "Rango", "Sonarwatch"], + "occurrences": 3 + }, + "0xc539f8e194569b3db935d70fa2e7cadd7dad7f35": { + "address": "0xc539f8e194569b3db935d70fa2e7cadd7dad7f35", + "symbol": "CZAR", + "decimals": 18, + "name": "Crypto Czar", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xc539f8e194569b3db935d70fa2e7cadd7dad7f35.png", + "aggregators": ["Rubic", "Rango", "Sonarwatch"], + "occurrences": 3 + }, + "0x1142866f451d9d5281c5c8349a332bd338e552a1": { + "address": "0x1142866f451d9d5281c5c8349a332bd338e552a1", + "symbol": "SILKROAD", + "decimals": 18, + "name": "SuperMarioPorsche911Inu", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x1142866f451d9d5281c5c8349a332bd338e552a1.png", + "aggregators": ["Rubic", "Rango", "Sonarwatch"], + "occurrences": 3 + }, + "0xfd03723a9a3abe0562451496a9a394d2c4bad4ab": { + "address": "0xfd03723a9a3abe0562451496a9a394d2c4bad4ab", + "symbol": "DYAD", + "decimals": 18, + "name": "Dyad", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xfd03723a9a3abe0562451496a9a394d2c4bad4ab.png", + "aggregators": ["Rubic", "Rango", "Sonarwatch"], + "occurrences": 3 + }, + "0xe925aa77d51746b865e5c05165a879820cb4b720": { + "address": "0xe925aa77d51746b865e5c05165a879820cb4b720", + "symbol": "CCASH", + "decimals": 18, + "name": "C Cash", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xe925aa77d51746b865e5c05165a879820cb4b720.png", + "aggregators": ["Rubic", "Rango", "Sonarwatch"], + "occurrences": 3 + }, + "0xb5ce43fe2fcffffb2eece95ec413d08def28046f": { + "address": "0xb5ce43fe2fcffffb2eece95ec413d08def28046f", + "symbol": "PELO", + "decimals": 18, + "name": "PepElon", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xb5ce43fe2fcffffb2eece95ec413d08def28046f.png", + "aggregators": ["Rubic", "Rango", "Sonarwatch"], + "occurrences": 3 + }, + "0xf222b0e892f419c35e61892cddf0a8ec190c4b9d": { + "address": "0xf222b0e892f419c35e61892cddf0a8ec190c4b9d", + "symbol": "RDX", + "decimals": 18, + "name": "RandomDEX", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xf222b0e892f419c35e61892cddf0a8ec190c4b9d.png", + "aggregators": ["Rubic", "Squid", "Sonarwatch"], + "occurrences": 3 + }, + "0xc5842df170b8c8d09eb851a8d5db3dfa00669e3f": { + "address": "0xc5842df170b8c8d09eb851a8d5db3dfa00669e3f", + "symbol": "XEROAI", + "decimals": 9, + "name": "Xero AI", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xc5842df170b8c8d09eb851a8d5db3dfa00669e3f.png", + "aggregators": ["Rubic", "Rango", "Sonarwatch"], + "occurrences": 3 + }, + "0x5245c0249e5eeb2a0838266800471fd32adb1089": { + "address": "0x5245c0249e5eeb2a0838266800471fd32adb1089", + "symbol": "RAY", + "decimals": 6, + "name": "Raydium", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x5245c0249e5eeb2a0838266800471fd32adb1089.png", + "aggregators": ["Rubic", "Rango", "SushiSwap"], + "occurrences": 3 + }, + "0x69570f3e84f51ea70b7b68055c8d667e77735a25": { + "address": "0x69570f3e84f51ea70b7b68055c8d667e77735a25", + "symbol": "BSGG", + "decimals": 18, + "name": "Betswap.gg", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x69570f3e84f51ea70b7b68055c8d667e77735a25.png", + "aggregators": ["Rubic", "Rango", "SushiSwap"], + "occurrences": 3 + }, + "0xdd3878ac92166d6c4e46b26ddd162b72c00d1623": { + "address": "0xdd3878ac92166d6c4e46b26ddd162b72c00d1623", + "symbol": "EON", + "decimals": 18, + "name": "Pantheon", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xdd3878ac92166d6c4e46b26ddd162b72c00d1623.png", + "aggregators": ["Rubic", "Rango", "Sonarwatch"], + "occurrences": 3 + }, + "0xd0623da373f754c4b6762209ea77de59b21dd667": { + "address": "0xd0623da373f754c4b6762209ea77de59b21dd667", + "symbol": "OXYZ", + "decimals": 18, + "name": "Oxya Origin", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xd0623da373f754c4b6762209ea77de59b21dd667.png", + "aggregators": ["Rubic", "Rango", "Sonarwatch"], + "occurrences": 3 + }, + "0x8d137e3337eb1b58a222fef2b2cc7c423903d9cf": { + "address": "0x8d137e3337eb1b58a222fef2b2cc7c423903d9cf", + "symbol": "SQGL", + "decimals": 18, + "name": "Chromie Squiggle", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x8d137e3337eb1b58a222fef2b2cc7c423903d9cf.png", + "aggregators": ["Rubic", "Rango", "SushiSwap"], + "occurrences": 3 + }, + "0xd585aaafa2b58b1cd75092b51ade9fa4ce52f247": { + "address": "0xd585aaafa2b58b1cd75092b51ade9fa4ce52f247", + "symbol": "PEUSD", + "decimals": 18, + "name": "peg eUSD", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xd585aaafa2b58b1cd75092b51ade9fa4ce52f247.png", + "aggregators": ["Rubic", "Rango", "Sonarwatch"], + "occurrences": 3 + }, + "0x6923f9b683111dcc0e20124e9a031deeae5dad93": { + "address": "0x6923f9b683111dcc0e20124e9a031deeae5dad93", + "symbol": "HUB", + "decimals": 18, + "name": "Crypto Hub", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x6923f9b683111dcc0e20124e9a031deeae5dad93.png", + "aggregators": ["Rubic", "Rango", "Sonarwatch"], + "occurrences": 3 + }, + "0xdf87270e04bc5ac140e93571d0dd0c6f4a058b41": { + "address": "0xdf87270e04bc5ac140e93571d0dd0c6f4a058b41", + "symbol": "MLH", + "decimals": 18, + "name": "Moolahverse", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xdf87270e04bc5ac140e93571d0dd0c6f4a058b41.png", + "aggregators": ["Rubic", "Rango", "Sonarwatch"], + "occurrences": 3 + }, + "0x690031313d70c2545357f4487c6a3f134c434507": { + "address": "0x690031313d70c2545357f4487c6a3f134c434507", + "symbol": "QQQ", + "decimals": 9, + "name": "QQQ6900", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x690031313d70c2545357f4487c6a3f134c434507.png", + "aggregators": ["Rubic", "Rango", "Sonarwatch"], + "occurrences": 3 + }, + "0x79c6ffe2ccbca761e9e289a69432bffb0b744876": { + "address": "0x79c6ffe2ccbca761e9e289a69432bffb0b744876", + "symbol": "PINEOWL", + "decimals": 9, + "name": "Pineapple Owl", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x79c6ffe2ccbca761e9e289a69432bffb0b744876.png", + "aggregators": ["Rubic", "Rango", "Sonarwatch"], + "occurrences": 3 + }, + "0x6965fb688861c004f4f0117980c519b342419941": { + "address": "0x6965fb688861c004f4f0117980c519b342419941", + "symbol": "NUMBER", + "decimals": 18, + "name": "NUMBER", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x6965fb688861c004f4f0117980c519b342419941.png", + "aggregators": ["Rubic", "Rango", "Sonarwatch"], + "occurrences": 3 + }, + "0xdd468a1ddc392dcdbef6db6e34e89aa338f9f186": { + "address": "0xdd468a1ddc392dcdbef6db6e34e89aa338f9f186", + "symbol": "MEZOUSD", + "decimals": 18, + "name": "Mezo USD", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xdd468a1ddc392dcdbef6db6e34e89aa338f9f186.png", + "aggregators": ["Metamask", "Rubic"], + "occurrences": 2 + }, + "0x4df812f6064def1e5e029f1ca858777cc98d2d81": { + "address": "0x4df812f6064def1e5e029f1ca858777cc98d2d81", + "symbol": "XAUR", + "decimals": 8, + "name": "Xaurum", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x4df812f6064def1e5e029f1ca858777cc98d2d81.png", + "aggregators": ["Metamask", "Rubic"], + "occurrences": 2 + }, + "0xb9e7f8568e08d5659f5d29c4997173d84cdf2607": { + "address": "0xb9e7f8568e08d5659f5d29c4997173d84cdf2607", + "symbol": "SWT", + "decimals": 18, + "name": "Swarm City Token", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xb9e7f8568e08d5659f5d29c4997173d84cdf2607.png", + "aggregators": ["Metamask", "Rubic"], + "occurrences": 2 + }, + "0xf7b098298f7c69fc14610bf71d5e02c60792894c": { + "address": "0xf7b098298f7c69fc14610bf71d5e02c60792894c", + "symbol": "GUPPY", + "decimals": 3, + "name": "Guppy", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xf7b098298f7c69fc14610bf71d5e02c60792894c.png", + "aggregators": ["Metamask", "Rubic"], + "occurrences": 2 + }, + "0xe814aee960a85208c3db542c53e7d4a6c8d5f60f": { + "address": "0xe814aee960a85208c3db542c53e7d4a6c8d5f60f", + "symbol": "DAY", + "decimals": 18, + "name": "DAY", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xe814aee960a85208c3db542c53e7d4a6c8d5f60f.png", + "aggregators": ["Metamask", "Rubic"], + "occurrences": 2 + }, + "0x1c4481750daa5ff521a2a7490d9981ed46465dbd": { + "address": "0x1c4481750daa5ff521a2a7490d9981ed46465dbd", + "symbol": "BCPT", + "decimals": 18, + "name": "BlockMason Credit Protocol Token", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x1c4481750daa5ff521a2a7490d9981ed46465dbd.png", + "aggregators": ["Metamask", "Rubic"], + "occurrences": 2 + }, + "0x2604fa406be957e542beb89e6754fcde6815e83f": { + "address": "0x2604fa406be957e542beb89e6754fcde6815e83f", + "symbol": "PKT", + "decimals": 18, + "name": "Playkey Token", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x2604fa406be957e542beb89e6754fcde6815e83f.png", + "aggregators": ["Metamask", "Rubic"], + "occurrences": 2 + }, + "0xa823e6722006afe99e91c30ff5295052fe6b8e32": { + "address": "0xa823e6722006afe99e91c30ff5295052fe6b8e32", + "symbol": "NEU", + "decimals": 18, + "name": "Neumark", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xa823e6722006afe99e91c30ff5295052fe6b8e32.png", + "aggregators": ["Metamask", "Rubic"], + "occurrences": 2 + }, + "0x317eb4ad9cfac6232f0046831322e895507bcbeb": { + "address": "0x317eb4ad9cfac6232f0046831322e895507bcbeb", + "symbol": "TDX", + "decimals": 18, + "name": "Tidex Token", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x317eb4ad9cfac6232f0046831322e895507bcbeb.png", + "aggregators": ["Metamask", "Rubic"], + "occurrences": 2 + }, + "0xdf347911910b6c9a4286ba8e2ee5ea4a39eb2134": { + "address": "0xdf347911910b6c9a4286ba8e2ee5ea4a39eb2134", + "symbol": "BOB", + "decimals": 18, + "name": "BOB Token", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xdf347911910b6c9a4286ba8e2ee5ea4a39eb2134.png", + "aggregators": ["Metamask", "Rubic"], + "occurrences": 2 + }, + "0xa95592dcffa3c080b4b40e459c5f5692f67db7f8": { + "address": "0xa95592dcffa3c080b4b40e459c5f5692f67db7f8", + "symbol": "ELY", + "decimals": 18, + "name": "Elycoin", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xa95592dcffa3c080b4b40e459c5f5692f67db7f8.png", + "aggregators": ["Metamask", "Rubic"], + "occurrences": 2 + }, + "0xfef3884b603c33ef8ed4183346e093a173c94da6": { + "address": "0xfef3884b603c33ef8ed4183346e093a173c94da6", + "symbol": "METM", + "decimals": 18, + "name": "Metamorph", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xfef3884b603c33ef8ed4183346e093a173c94da6.png", + "aggregators": ["Metamask", "Rubic"], + "occurrences": 2 + }, + "0x16484d73ac08d2355f466d448d2b79d2039f6ebb": { + "address": "0x16484d73ac08d2355f466d448d2b79d2039f6ebb", + "symbol": "FKX", + "decimals": 18, + "name": "FortKnoxster", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x16484d73ac08d2355f466d448d2b79d2039f6ebb.png", + "aggregators": ["Metamask", "Rubic"], + "occurrences": 2 + }, + "0x48ff53777f747cfb694101222a944de070c15d36": { + "address": "0x48ff53777f747cfb694101222a944de070c15d36", + "symbol": "IMP", + "decimals": 7, + "name": "Ether Kingdoms Token", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x48ff53777f747cfb694101222a944de070c15d36.png", + "aggregators": ["Metamask", "Rubic"], + "occurrences": 2 + }, + "0x0db8d8b76bc361bacbb72e2c491e06085a97ab31": { + "address": "0x0db8d8b76bc361bacbb72e2c491e06085a97ab31", + "symbol": "IQN", + "decimals": 18, + "name": "IQeon", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x0db8d8b76bc361bacbb72e2c491e06085a97ab31.png", + "aggregators": ["Metamask", "Rubic"], + "occurrences": 2 + }, + "0x92a5b04d0ed5d94d7a193d1d334d3d16996f4e13": { + "address": "0x92a5b04d0ed5d94d7a193d1d334d3d16996f4e13", + "symbol": "ERT", + "decimals": 18, + "name": "Eristica", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x92a5b04d0ed5d94d7a193d1d334d3d16996f4e13.png", + "aggregators": ["Metamask", "Rubic"], + "occurrences": 2 + }, + "0x14c926f2290044b647e1bf2072e67b495eff1905": { + "address": "0x14c926f2290044b647e1bf2072e67b495eff1905", + "symbol": "BETHER", + "decimals": 18, + "name": "Bethereum", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x14c926f2290044b647e1bf2072e67b495eff1905.png", + "aggregators": ["Metamask", "Rubic"], + "occurrences": 2 + }, + "0x2ecb13a8c458c379c4d9a7259e202de03c8f3d19": { + "address": "0x2ecb13a8c458c379c4d9a7259e202de03c8f3d19", + "symbol": "BC", + "decimals": 18, + "name": "Block-Chain.com Token", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x2ecb13a8c458c379c4d9a7259e202de03c8f3d19.png", + "aggregators": ["Metamask", "Rubic"], + "occurrences": 2 + }, + "0x8b79656fc38a04044e495e22fad747126ca305c4": { + "address": "0x8b79656fc38a04044e495e22fad747126ca305c4", + "symbol": "AGVC", + "decimals": 18, + "name": "AgaveCoin", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x8b79656fc38a04044e495e22fad747126ca305c4.png", + "aggregators": ["Metamask", "Rubic"], + "occurrences": 2 + }, + "0xdcd85914b8ae28c1e62f1c488e1d968d5aaffe2b": { + "address": "0xdcd85914b8ae28c1e62f1c488e1d968d5aaffe2b", + "symbol": "TOP", + "decimals": 18, + "name": "TOP Network Token", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xdcd85914b8ae28c1e62f1c488e1d968d5aaffe2b.png", + "aggregators": ["Metamask", "Rubic"], + "occurrences": 2 + }, + "0x82f4ded9cec9b5750fbff5c2185aee35afc16587": { + "address": "0x82f4ded9cec9b5750fbff5c2185aee35afc16587", + "symbol": "DREAM", + "decimals": 6, + "name": "DreamTeam Token", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x82f4ded9cec9b5750fbff5c2185aee35afc16587.png", + "aggregators": ["Metamask", "Rubic"], + "occurrences": 2 + }, + "0xff0e5e014cf97e0615cb50f6f39da6388e2fae6e": { + "address": "0xff0e5e014cf97e0615cb50f6f39da6388e2fae6e", + "symbol": "OGO", + "decimals": 18, + "name": "Origo", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xff0e5e014cf97e0615cb50f6f39da6388e2fae6e.png", + "aggregators": ["Metamask", "Rubic"], + "occurrences": 2 + }, + "0x5f778ec4b31a506c1dfd8b06f131e9b451a61d39": { + "address": "0x5f778ec4b31a506c1dfd8b06f131e9b451a61d39", + "symbol": "UPX", + "decimals": 18, + "name": "UPX Token", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x5f778ec4b31a506c1dfd8b06f131e9b451a61d39.png", + "aggregators": ["Metamask", "Rubic"], + "occurrences": 2 + }, + "0xf25c91c87e0b1fd9b4064af0f427157aab0193a7": { + "address": "0xf25c91c87e0b1fd9b4064af0f427157aab0193a7", + "symbol": "BASIC", + "decimals": 18, + "name": "BASIC Token", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xf25c91c87e0b1fd9b4064af0f427157aab0193a7.png", + "aggregators": ["Metamask", "Rubic"], + "occurrences": 2 + }, + "0xc7e43a1c8e118aa2965f5eabe0e718d83db7a63c": { + "address": "0xc7e43a1c8e118aa2965f5eabe0e718d83db7a63c", + "symbol": "ZCRT", + "decimals": 18, + "name": "ZCore Token", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xc7e43a1c8e118aa2965f5eabe0e718d83db7a63c.png", + "aggregators": ["Metamask", "Rubic"], + "occurrences": 2 + }, + "0xc8cac7672f4669685817cf332a33eb249f085475": { + "address": "0xc8cac7672f4669685817cf332a33eb249f085475", + "symbol": "LVN", + "decimals": 18, + "name": "LivenCoin", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xc8cac7672f4669685817cf332a33eb249f085475.png", + "aggregators": ["Metamask", "Rubic"], + "occurrences": 2 + }, + "0xb72b31907c1c95f3650b64b2469e08edacee5e8f": { + "address": "0xb72b31907c1c95f3650b64b2469e08edacee5e8f", + "symbol": "VBZRX", + "decimals": 18, + "name": "bZx Vesting Token (vBZRX)", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xb72b31907c1c95f3650b64b2469e08edacee5e8f.png", + "aggregators": ["Metamask", "Rubic"], + "occurrences": 2 + }, + "0x5150956e082c748ca837a5dfa0a7c10ca4697f9c": { + "address": "0x5150956e082c748ca837a5dfa0a7c10ca4697f9c", + "symbol": "ZDEX", + "decimals": 18, + "name": "Zeedex", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x5150956e082c748ca837a5dfa0a7c10ca4697f9c.png", + "aggregators": ["Metamask", "Rubic"], + "occurrences": 2 + }, + "0x8282df223ac402d04b2097d16f758af4f70e7db0": { + "address": "0x8282df223ac402d04b2097d16f758af4f70e7db0", + "symbol": "SYFL", + "decimals": 18, + "name": "YFLink Synthetic", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x8282df223ac402d04b2097d16f758af4f70e7db0.png", + "aggregators": ["Metamask", "Rubic"], + "occurrences": 2 + }, + "0x0bead9a1bcc1b84d06e3f2df67e3549fd55ab054": { + "address": "0x0bead9a1bcc1b84d06e3f2df67e3549fd55ab054", + "symbol": "EURXB", + "decimals": 18, + "name": "EURxb", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x0bead9a1bcc1b84d06e3f2df67e3549fd55ab054.png", + "aggregators": ["Metamask", "Rubic"], + "occurrences": 2 + }, + "0xd3c625f54dec647db8780dbbe0e880ef21ba4329": { + "address": "0xd3c625f54dec647db8780dbbe0e880ef21ba4329", + "symbol": "XHT", + "decimals": 18, + "name": "HollaEx Token", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xd3c625f54dec647db8780dbbe0e880ef21ba4329.png", + "aggregators": ["Metamask", "Rubic"], + "occurrences": 2 + }, + "0x75387e1287dd85482ab66102da9f6577e027f609": { + "address": "0x75387e1287dd85482ab66102da9f6577e027f609", + "symbol": "MAI", + "decimals": 18, + "name": "MindsyncAI", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x75387e1287dd85482ab66102da9f6577e027f609.png", + "aggregators": ["Metamask", "Rubic"], + "occurrences": 2 + }, + "0xb16e967ff83de3f1e9fceafbc2c28c1c5c56ef91": { + "address": "0xb16e967ff83de3f1e9fceafbc2c28c1c5c56ef91", + "symbol": "PDOG", + "decimals": 18, + "name": "Polkadog", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xb16e967ff83de3f1e9fceafbc2c28c1c5c56ef91.png", + "aggregators": ["Metamask", "Rubic"], + "occurrences": 2 + }, + "0x9d38f670d15c14716be1f109a4f453e966a2b6d4": { + "address": "0x9d38f670d15c14716be1f109a4f453e966a2b6d4", + "symbol": "QUID", + "decimals": 9, + "name": "Quid Ika", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x9d38f670d15c14716be1f109a4f453e966a2b6d4.png", + "aggregators": ["Metamask", "Rubic"], + "occurrences": 2 + }, + "0xc7d9c108d4e1dd1484d3e2568d7f74bfd763d356": { + "address": "0xc7d9c108d4e1dd1484d3e2568d7f74bfd763d356", + "symbol": "XSTUSD", + "decimals": 18, + "name": "SORA Synthetic USD", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xc7d9c108d4e1dd1484d3e2568d7f74bfd763d356.png", + "aggregators": ["Metamask", "Rubic"], + "occurrences": 2 + }, + "0xae0585a259a3bcab258d6ee02fb583f7b33c2a12": { + "address": "0xae0585a259a3bcab258d6ee02fb583f7b33c2a12", + "symbol": "TEM", + "decimals": 18, + "name": "TempleCoin", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xae0585a259a3bcab258d6ee02fb583f7b33c2a12.png", + "aggregators": ["Metamask", "Rubic"], + "occurrences": 2 + }, + "0xceba2a8f6ec221aeb5f3a7bcd15cbc7e6a387bfb": { + "address": "0xceba2a8f6ec221aeb5f3a7bcd15cbc7e6a387bfb", + "symbol": "PAN", + "decimals": 18, + "name": "Peter Pan", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xceba2a8f6ec221aeb5f3a7bcd15cbc7e6a387bfb.png", + "aggregators": ["Metamask", "TrustWallet"], + "occurrences": 2 + }, + "0x2013c72c04d3071be73f0af6edc909f659656bda": { + "address": "0x2013c72c04d3071be73f0af6edc909f659656bda", + "symbol": "SHIBADOG", + "decimals": 18, + "name": "Shiba San", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x2013c72c04d3071be73f0af6edc909f659656bda.png", + "aggregators": ["Metamask", "Rubic"], + "occurrences": 2 + }, + "0x0000852600ceb001e08e00bc008be620d60031f2": { + "address": "0x0000852600ceb001e08e00bc008be620d60031f2", + "symbol": "THKD", + "decimals": 18, + "name": "TrueHKD", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x0000852600ceb001e08e00bc008be620d60031f2.png", + "aggregators": ["Metamask", "Rubic"], + "occurrences": 2 + }, + "0x06325440d014e39736583c165c2963ba99faf14e": { + "address": "0x06325440d014e39736583c165c2963ba99faf14e", + "symbol": "STECRV", + "decimals": 18, + "name": "Curve.fi ETH/stETH", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x06325440d014e39736583c165c2963ba99faf14e.png", + "aggregators": ["Metamask", "LiFi"], + "occurrences": 2 + }, + "0x3fa400483487a489ec9b1db29c4129063eec4654": { + "address": "0x3fa400483487a489ec9b1db29c4129063eec4654", + "symbol": "KEK", + "decimals": 18, + "name": "Cryptokek.com", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x3fa400483487a489ec9b1db29c4129063eec4654.png", + "aggregators": ["Metamask", "Rubic"], + "occurrences": 2 + }, + "0x6aa030a9710cad6e719a4ec0a85260eb3f4f86c1": { + "address": "0x6aa030a9710cad6e719a4ec0a85260eb3f4f86c1", + "symbol": "RWA", + "decimals": 18, + "name": "Real World Asset", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x6aa030a9710cad6e719a4ec0a85260eb3f4f86c1.png", + "aggregators": ["Metamask", "Socket"], + "occurrences": 2 + }, + "0xb1cd6e4153b2a390cf00a6556b0fc1458c4a5533": { + "address": "0xb1cd6e4153b2a390cf00a6556b0fc1458c4a5533", + "symbol": "ETHBNT", + "decimals": 18, + "name": "ETHBNT Liquidity Pool", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xb1cd6e4153b2a390cf00a6556b0fc1458c4a5533.png", + "aggregators": ["Metamask", "Rubic"], + "occurrences": 2 + }, + "0xaf30d2a7e90d7dc361c8c4585e9bb7d2f6f15bc7": { + "address": "0xaf30d2a7e90d7dc361c8c4585e9bb7d2f6f15bc7", + "symbol": "1ST", + "decimals": 18, + "name": "FirstBlood Token", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xaf30d2a7e90d7dc361c8c4585e9bb7d2f6f15bc7.png", + "aggregators": ["Metamask"], + "occurrences": 1 + }, + "0x71d01db8d6a2fbea7f8d434599c237980c234e4c": { + "address": "0x71d01db8d6a2fbea7f8d434599c237980c234e4c", + "symbol": "GLA", + "decimals": 8, + "name": "Gladius", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x71d01db8d6a2fbea7f8d434599c237980c234e4c.png", + "aggregators": ["Metamask"], + "occurrences": 1 + }, + "0x4d8fc1453a0f359e99c9675954e656d80d996fbf": { + "address": "0x4d8fc1453a0f359e99c9675954e656d80d996fbf", + "symbol": "BEE", + "decimals": 18, + "name": "BEE Token", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x4d8fc1453a0f359e99c9675954e656d80d996fbf.png", + "aggregators": ["Metamask"], + "occurrences": 1 + }, + "0xf03f8d65bafa598611c3495124093c56e8f638f0": { + "address": "0xf03f8d65bafa598611c3495124093c56e8f638f0", + "symbol": "VIEW", + "decimals": 18, + "name": "Viewly", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xf03f8d65bafa598611c3495124093c56e8f638f0.png", + "aggregators": ["Metamask"], + "occurrences": 1 + }, + "0x93a7174dafd31d13400cd9fa01f4e5b5baa00d39": { + "address": "0x93a7174dafd31d13400cd9fa01f4e5b5baa00d39", + "symbol": "HAK", + "decimals": 18, + "name": "Shaka", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x93a7174dafd31d13400cd9fa01f4e5b5baa00d39.png", + "aggregators": ["Metamask"], + "occurrences": 1 + }, + "0x7b760d06e401f85545f3b50c44bf5b05308b7b62": { + "address": "0x7b760d06e401f85545f3b50c44bf5b05308b7b62", + "symbol": "YFLUSD", + "decimals": 18, + "name": "YFLink USD", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x7b760d06e401f85545f3b50c44bf5b05308b7b62.png", + "aggregators": ["Metamask"], + "occurrences": 1 + }, + "0x07c52c2537d84e532a9f15d32e152c8b94d2b232": { + "address": "0x07c52c2537d84e532a9f15d32e152c8b94d2b232", + "symbol": "ZKT", + "decimals": 18, + "name": "ZkTube", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x07c52c2537d84e532a9f15d32e152c8b94d2b232.png", + "aggregators": ["Metamask"], + "occurrences": 1 + }, + "0x8b385ca3592a5efc34e0c9fe663de56897f1751f": { + "address": "0x8b385ca3592a5efc34e0c9fe663de56897f1751f", + "symbol": "IBIT", + "decimals": 18, + "name": "INFibit", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x8b385ca3592a5efc34e0c9fe663de56897f1751f.png", + "aggregators": ["Metamask"], + "occurrences": 1 + }, + "0x252739487c1fa66eaeae7ced41d6358ab2a6bca9": { + "address": "0x252739487c1fa66eaeae7ced41d6358ab2a6bca9", + "symbol": "RCOIN", + "decimals": 8, + "name": "ArCoin", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x252739487c1fa66eaeae7ced41d6358ab2a6bca9.png", + "aggregators": ["Metamask"], + "occurrences": 1 + }, + "0x4dc26fc5854e7648a064a4abd590bbe71724c277": { + "address": "0x4dc26fc5854e7648a064a4abd590bbe71724c277", + "symbol": "ANIME", + "decimals": 18, + "name": "Animecoin", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x4dc26fc5854e7648a064a4abd590bbe71724c277.png", + "aggregators": [ + "CoinMarketCap", + "1inch", + "LiFi", + "Socket", + "Rubic", + "Squid", + "Rango", + "Sonarwatch" + ], + "occurrences": 8 + }, + "0x4c1746a800d224393fe2470c70a35717ed4ea5f1": { + "address": "0x4c1746a800d224393fe2470c70a35717ed4ea5f1", + "symbol": "PLUME", + "decimals": 18, + "name": "Plume", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x4c1746a800d224393fe2470c70a35717ed4ea5f1.png", + "aggregators": [ + "CoinMarketCap", + "1inch", + "LiFi", + "Rubic", + "Squid", + "Rango", + "Sonarwatch" + ], + "occurrences": 7 + }, + "0xda5e1988097297dcdc1f90d4dfe7909e847cbef6": { + "address": "0xda5e1988097297dcdc1f90d4dfe7909e847cbef6", + "symbol": "WLFI", + "decimals": 18, + "name": "World Liberty Financial", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xda5e1988097297dcdc1f90d4dfe7909e847cbef6.png", + "aggregators": [ + "CoinMarketCap", + "1inch", + "LiFi", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 7 + }, + "0xcacd6fd266af91b8aed52accc382b4e165586e29": { + "address": "0xcacd6fd266af91b8aed52accc382b4e165586e29", + "symbol": "FRXUSD", + "decimals": 18, + "name": "Frax USD", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xcacd6fd266af91b8aed52accc382b4e165586e29.png", + "aggregators": [ + "CoinMarketCap", + "1inch", + "LiFi", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 7 + }, + "0xcf62f905562626cfcdd2261162a51fd02fc9c5b6": { + "address": "0xcf62f905562626cfcdd2261162a51fd02fc9c5b6", + "symbol": "SFRXUSD", + "decimals": 18, + "name": "Staked Frax USD", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xcf62f905562626cfcdd2261162a51fd02fc9c5b6.png", + "aggregators": [ + "CoinMarketCap", + "LiFi", + "Socket", + "Rubic", + "Squid", + "Rango", + "Sonarwatch" + ], + "occurrences": 7 + }, + "0x888883b5f5d21fb10dfeb70e8f9722b9fb0e5e51": { + "address": "0x888883b5f5d21fb10dfeb70e8f9722b9fb0e5e51", + "symbol": "EUROP", + "decimals": 6, + "name": "EUR P", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x888883b5f5d21fb10dfeb70e8f9722b9fb0e5e51.png", + "aggregators": [ + "CoinMarketCap", + "LiFi", + "Rubic", + "Squid", + "Rango", + "Sonarwatch" + ], + "occurrences": 6 + }, + "0x3f80b1c54ae920be41a77f8b902259d48cf24ccf": { + "address": "0x3f80b1c54ae920be41a77f8b902259d48cf24ccf", + "symbol": "KERNEL", + "decimals": 18, + "name": "KernelDAO", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x3f80b1c54ae920be41a77f8b902259d48cf24ccf.png", + "aggregators": [ + "CoinMarketCap", + "Socket", + "Rubic", + "Squid", + "Rango", + "Sonarwatch" + ], + "occurrences": 6 + }, + "0xc43c6bfeda065fe2c4c11765bf838789bd0bb5de": { + "address": "0xc43c6bfeda065fe2c4c11765bf838789bd0bb5de", + "symbol": "RED", + "decimals": 18, + "name": "RedStone", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xc43c6bfeda065fe2c4c11765bf838789bd0bb5de.png", + "aggregators": [ + "CoinMarketCap", + "LiFi", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 6 + }, + "0x007115416ab6c266329a03b09a8aa39ac2ef7d9d": { + "address": "0x007115416ab6c266329a03b09a8aa39ac2ef7d9d", + "symbol": "MBTC", + "decimals": 18, + "name": "Midas mBTC", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x007115416ab6c266329a03b09a8aa39ac2ef7d9d.png", + "aggregators": [ + "CoinGecko", + "LiFi", + "Rubic", + "Squid", + "Rango", + "Sonarwatch" + ], + "occurrences": 6 + }, + "0xb8b295df2cd735b15be5eb419517aa626fc43cd5": { + "address": "0xb8b295df2cd735b15be5eb419517aa626fc43cd5", + "symbol": "STLINK", + "decimals": 18, + "name": "Staked LINK", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xb8b295df2cd735b15be5eb419517aa626fc43cd5.png", + "aggregators": [ + "CoinGecko", + "LiFi", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 6 + }, + "0x09d4214c03d01f49544c0448dbe3a27f768f2b34": { + "address": "0x09d4214c03d01f49544c0448dbe3a27f768f2b34", + "symbol": "RUSD", + "decimals": 18, + "name": "Reservoir rUSD", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x09d4214c03d01f49544c0448dbe3a27f768f2b34.png", + "aggregators": [ + "CoinGecko", + "LiFi", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 6 + }, + "0xda67b4284609d2d48e5d10cfac411572727dc1ed": { + "address": "0xda67b4284609d2d48e5d10cfac411572727dc1ed", + "symbol": "USN", + "decimals": 18, + "name": "Noon USN", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xda67b4284609d2d48e5d10cfac411572727dc1ed.png", + "aggregators": [ + "CoinGecko", + "LiFi", + "Rubic", + "Squid", + "Rango", + "Sonarwatch" + ], + "occurrences": 6 + }, + "0xad55aebc9b8c03fc43cd9f62260391c13c23e7c0": { + "address": "0xad55aebc9b8c03fc43cd9f62260391c13c23e7c0", + "symbol": "CUSDO", + "decimals": 18, + "name": "Compounding OpenDollar", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xad55aebc9b8c03fc43cd9f62260391c13c23e7c0.png", + "aggregators": [ + "CoinMarketCap", + "1inch", + "LiFi", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 6 + }, + "0xc139190f447e929f090edeb554d95abb8b18ac1c": { + "address": "0xc139190f447e929f090edeb554d95abb8b18ac1c", + "symbol": "USDTB", + "decimals": 18, + "name": "USDtb", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xc139190f447e929f090edeb554d95abb8b18ac1c.png", + "aggregators": [ + "CoinGecko", + "LiFi", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 6 + }, + "0x6e7f11641c1ec71591828e531334192d622703f7": { + "address": "0x6e7f11641c1ec71591828e531334192d622703f7", + "symbol": "OIK", + "decimals": 18, + "name": "Space Nation Oikos", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x6e7f11641c1ec71591828e531334192d622703f7.png", + "aggregators": [ + "CoinMarketCap", + "Socket", + "Rubic", + "Squid", + "Rango", + "Sonarwatch" + ], + "occurrences": 6 + }, + "0x547213367cfb08ab418e7b54d7883b2c2aa27fd7": { + "address": "0x547213367cfb08ab418e7b54d7883b2c2aa27fd7", + "symbol": "SUSDZ", + "decimals": 18, + "name": "Anzen Staked USDz", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x547213367cfb08ab418e7b54d7883b2c2aa27fd7.png", + "aggregators": [ + "CoinGecko", + "LiFi", + "Rubic", + "Squid", + "Rango", + "Sonarwatch" + ], + "occurrences": 6 + }, + "0xde17a000ba631c5d7c2bd9fb692efea52d90dee2": { + "address": "0xde17a000ba631c5d7c2bd9fb692efea52d90dee2", + "symbol": "USDN", + "decimals": 18, + "name": "SMARDEX USDN", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xde17a000ba631c5d7c2bd9fb692efea52d90dee2.png", + "aggregators": [ + "CoinMarketCap", + "1inch", + "LiFi", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 6 + }, + "0x00000000efe302beaa2b3e6e1b18d08d69a9012a": { + "address": "0x00000000efe302beaa2b3e6e1b18d08d69a9012a", + "symbol": "AUSD", + "decimals": 6, + "name": "AUSD", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x00000000efe302beaa2b3e6e1b18d08d69a9012a.png", + "aggregators": [ + "CoinMarketCap", + "LiFi", + "Rubic", + "Squid", + "Rango", + "Sonarwatch" + ], + "occurrences": 6 + }, + "0x4eddb15a0abfa2c349e8065af9214e942d9a6d36": { + "address": "0x4eddb15a0abfa2c349e8065af9214e942d9a6d36", + "symbol": "XYRO", + "decimals": 18, + "name": "XYRO", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x4eddb15a0abfa2c349e8065af9214e942d9a6d36.png", + "aggregators": [ + "CoinMarketCap", + "LiFi", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 6 + }, + "0x87c9053c819bb28e0d73d33059e1b3da80afb0cf": { + "address": "0x87c9053c819bb28e0d73d33059e1b3da80afb0cf", + "symbol": "MRE7YIELD", + "decimals": 18, + "name": "Midas mRe7YIELD", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x87c9053c819bb28e0d73d33059e1b3da80afb0cf.png", + "aggregators": [ + "CoinGecko", + "LiFi", + "Rubic", + "Squid", + "Rango", + "Sonarwatch" + ], + "occurrences": 6 + }, + "0x437cc33344a0b27a429f795ff6b469c72698b291": { + "address": "0x437cc33344a0b27a429f795ff6b469c72698b291", + "symbol": "WM", + "decimals": 6, + "name": "WrappedM by M 0", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x437cc33344a0b27a429f795ff6b469c72698b291.png", + "aggregators": [ + "CoinGecko", + "Socket", + "Rubic", + "Squid", + "Rango", + "Sonarwatch" + ], + "occurrences": 6 + }, + "0x14fee680690900ba0cccfc76ad70fd1b95d10e16": { + "address": "0x14fee680690900ba0cccfc76ad70fd1b95d10e16", + "symbol": "PAAL", + "decimals": 9, + "name": "PAAL AI", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x14fee680690900ba0cccfc76ad70fd1b95d10e16.png", + "aggregators": [ + "CoinMarketCap", + "1inch", + "LiFi", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 6 + }, + "0x13d074303c95a34d304f29928dc8a16dec797e9e": { + "address": "0x13d074303c95a34d304f29928dc8a16dec797e9e", + "symbol": "LAK3", + "decimals": 18, + "name": "LAKE", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x13d074303c95a34d304f29928dc8a16dec797e9e.png", + "aggregators": [ + "CoinMarketCap", + "LiFi", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 6 + }, + "0x738d1115b90efa71ae468f1287fc864775e23a31": { + "address": "0x738d1115b90efa71ae468f1287fc864775e23a31", + "symbol": "SRUSD", + "decimals": 18, + "name": "Reservoir srUSD", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x738d1115b90efa71ae468f1287fc864775e23a31.png", + "aggregators": [ + "CoinGecko", + "LiFi", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 6 + }, + "0x80ac24aa929eaf5013f6436cda2a7ba190f5cc0b": { + "address": "0x80ac24aa929eaf5013f6436cda2a7ba190f5cc0b", + "symbol": "SYRUPUSDC", + "decimals": 6, + "name": "SyrupUSDC", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x80ac24aa929eaf5013f6436cda2a7ba190f5cc0b.png", + "aggregators": [ + "CoinMarketCap", + "LiFi", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 6 + }, + "0x57ab1e0003f623289cd798b1824be09a793e4bec": { + "address": "0x57ab1e0003f623289cd798b1824be09a793e4bec", + "symbol": "REUSD", + "decimals": 18, + "name": "Resupply USD", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x57ab1e0003f623289cd798b1824be09a793e4bec.png", + "aggregators": [ + "CoinGecko", + "1inch", + "LiFi", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 6 + }, + "0x79d4f0232a66c4c91b89c76362016a1707cfbf4f": { + "address": "0x79d4f0232a66c4c91b89c76362016a1707cfbf4f", + "symbol": "VCHF", + "decimals": 18, + "name": "VNX Swiss Franc", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x79d4f0232a66c4c91b89c76362016a1707cfbf4f.png", + "aggregators": [ + "CoinMarketCap", + "LiFi", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 6 + }, + "0x1202f5c7b4b9e47a1a484e8b270be34dbbc75055": { + "address": "0x1202f5c7b4b9e47a1a484e8b270be34dbbc75055", + "symbol": "WSTUSR", + "decimals": 18, + "name": "Resolv wstUSR", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x1202f5c7b4b9e47a1a484e8b270be34dbbc75055.png", + "aggregators": [ + "CoinGecko", + "LiFi", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 6 + }, + "0x54991328ab43c7d5d31c19d1b9fa048e77b5cd16": { + "address": "0x54991328ab43c7d5d31c19d1b9fa048e77b5cd16", + "symbol": "SOIL", + "decimals": 18, + "name": "Soil", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x54991328ab43c7d5d31c19d1b9fa048e77b5cd16.png", + "aggregators": [ + "CoinMarketCap", + "LiFi", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 6 + }, + "0xdec933e2392ad908263e70a386fbf34e703ffe8f": { + "address": "0xdec933e2392ad908263e70a386fbf34e703ffe8f", + "symbol": "WBCOIN", + "decimals": 18, + "name": "Wrapped Backed Coinbase Global", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xdec933e2392ad908263e70a386fbf34e703ffe8f.png", + "aggregators": [ + "CoinGecko", + "LiFi", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 6 + }, + "0x5651fa7a726b9ec0cad00ee140179912b6e73599": { + "address": "0x5651fa7a726b9ec0cad00ee140179912b6e73599", + "symbol": "OORT", + "decimals": 18, + "name": "OORT", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x5651fa7a726b9ec0cad00ee140179912b6e73599.png", + "aggregators": [ + "CoinMarketCap", + "LiFi", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 6 + }, + "0x64d3cae387405d91f7b0d91fb1d824a281719500": { + "address": "0x64d3cae387405d91f7b0d91fb1d824a281719500", + "symbol": "GS", + "decimals": 18, + "name": "GammaSwap", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x64d3cae387405d91f7b0d91fb1d824a281719500.png", + "aggregators": [ + "CoinMarketCap", + "LiFi", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 6 + }, + "0xa7a0b3fe94121e366d774d60d075f6386f750884": { + "address": "0xa7a0b3fe94121e366d774d60d075f6386f750884", + "symbol": "USDFI", + "decimals": 18, + "name": "USDFI", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xa7a0b3fe94121e366d774d60d075f6386f750884.png", + "aggregators": [ + "CoinGecko", + "LiFi", + "Rubic", + "Squid", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0xc0041ef357b183448b235a8ea73ce4e4ec8c265f": { + "address": "0xc0041ef357b183448b235a8ea73ce4e4ec8c265f", + "symbol": "COOKIE", + "decimals": 18, + "name": "Cookie DAO", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xc0041ef357b183448b235a8ea73ce4e4ec8c265f.png", + "aggregators": [ + "CoinGecko", + "LiFi", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 6 + }, + "0xd9d920aa40f578ab794426f5c90f6c731d159def": { + "address": "0xd9d920aa40f578ab794426f5c90f6c731d159def", + "symbol": "XSOLVBTC", + "decimals": 18, + "name": "Solv Protocol Staked BTC", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xd9d920aa40f578ab794426f5c90f6c731d159def.png", + "aggregators": [ + "CoinMarketCap", + "LiFi", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 6 + }, + "0xdf4ef6ee483953fe3b84abd08c6a060445c01170": { + "address": "0xdf4ef6ee483953fe3b84abd08c6a060445c01170", + "symbol": "WACME", + "decimals": 8, + "name": "Wrapped Accumulate", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xdf4ef6ee483953fe3b84abd08c6a060445c01170.png", + "aggregators": [ + "CoinMarketCap", + "LiFi", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 6 + }, + "0xca9b8d6df0729d85dcfc8ef8bb18af1ad1990786": { + "address": "0xca9b8d6df0729d85dcfc8ef8bb18af1ad1990786", + "symbol": "CATBOY", + "decimals": 18, + "name": "Catboy", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xca9b8d6df0729d85dcfc8ef8bb18af1ad1990786.png", + "aggregators": [ + "CoinMarketCap", + "LiFi", + "Rubic", + "Squid", + "Rango", + "Sonarwatch" + ], + "occurrences": 6 + }, + "0xb5130f4767ab0acc579f25a76e8f9e977cb3f948": { + "address": "0xb5130f4767ab0acc579f25a76e8f9e977cb3f948", + "symbol": "GOD", + "decimals": 18, + "name": "Godcoin", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xb5130f4767ab0acc579f25a76e8f9e977cb3f948.png", + "aggregators": [ + "CoinMarketCap", + "LiFi", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 6 + }, + "0x98a878b1cd98131b271883b390f68d2c90674665": { + "address": "0x98a878b1cd98131b271883b390f68d2c90674665", + "symbol": "APXUSD", + "decimals": 18, + "name": "apxUSD", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x98a878b1cd98131b271883b390f68d2c90674665.png", + "aggregators": ["CoinGecko", "LiFi", "Rubic", "Squid", "Rango"], + "occurrences": 5 + }, + "0x6055dc6ff1077eebe5e6d2ba1a1f53d7ef8430de": { + "address": "0x6055dc6ff1077eebe5e6d2ba1a1f53d7ef8430de", + "symbol": "ES", + "decimals": 6, + "name": "Eclipse", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x6055dc6ff1077eebe5e6d2ba1a1f53d7ef8430de.png", + "aggregators": [ + "CoinMarketCap", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x50753cfaf86c094925bf976f218d043f8791e408": { + "address": "0x50753cfaf86c094925bf976f218d043f8791e408", + "symbol": "EURR", + "decimals": 6, + "name": "StablR Euro", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x50753cfaf86c094925bf976f218d043f8791e408.png", + "aggregators": [ + "CoinMarketCap", + "LiFi", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0xe6bfd33f52d82ccb5b37e16d3dd81f9ffdabb195": { + "address": "0xe6bfd33f52d82ccb5b37e16d3dd81f9ffdabb195", + "symbol": "SXT", + "decimals": 18, + "name": "Space and Time", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xe6bfd33f52d82ccb5b37e16d3dd81f9ffdabb195.png", + "aggregators": [ + "CoinMarketCap", + "LiFi", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0xe343167631d89b6ffc58b88d6b7fb0228795491d": { + "address": "0xe343167631d89b6ffc58b88d6b7fb0228795491d", + "symbol": "USDG", + "decimals": 6, + "name": "Global Dollar", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xe343167631d89b6ffc58b88d6b7fb0228795491d.png", + "aggregators": [ + "Metamask", + "LiFi", + "Socket", + "Rubic", + "Squid", + "Rango" + ], + "occurrences": 6 + }, + "0xef4461891dfb3ac8572ccf7c794664a8dd927945": { + "address": "0xef4461891dfb3ac8572ccf7c794664a8dd927945", + "symbol": "WCT", + "decimals": 18, + "name": "WalletConnect Token", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xef4461891dfb3ac8572ccf7c794664a8dd927945.png", + "aggregators": [ + "Metamask", + "1inch", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0xe07ecc676daf0b24b24a1c46c966d9c463984b38": { + "address": "0xe07ecc676daf0b24b24a1c46c966d9c463984b38", + "symbol": "USEU", + "decimals": 18, + "name": "Nexus Pro USEU", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xe07ecc676daf0b24b24a1c46c966d9c463984b38.png", + "aggregators": [ + "CoinGecko", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x5394794be8b6ed5572fcd6b27103f46b5f390e8f": { + "address": "0x5394794be8b6ed5572fcd6b27103f46b5f390e8f", + "symbol": "AAMMUNIYFIWETH", + "decimals": 18, + "name": "Aave AMM UniYFIWETH", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x5394794be8b6ed5572fcd6b27103f46b5f390e8f.png", + "aggregators": [ + "CoinGecko", + "LiFi", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0xf0610eb7d8ee12d59412da32625d5e273e78ff0b": { + "address": "0xf0610eb7d8ee12d59412da32625d5e273e78ff0b", + "symbol": "MDEX", + "decimals": 18, + "name": "MasterDEX", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xf0610eb7d8ee12d59412da32625d5e273e78ff0b.png", + "aggregators": [ + "CoinGecko", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x370adc71f67f581158dc56f539df5f399128ddf9": { + "address": "0x370adc71f67f581158dc56f539df5f399128ddf9", + "symbol": "AAMMUNIMKRWETH", + "decimals": 18, + "name": "Aave AMM UniMKRWETH", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x370adc71f67f581158dc56f539df5f399128ddf9.png", + "aggregators": [ + "CoinGecko", + "LiFi", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x14d60e7fdc0d71d8611742720e4c50e7a974020c": { + "address": "0x14d60e7fdc0d71d8611742720e4c50e7a974020c", + "symbol": "USCC", + "decimals": 6, + "name": "Superstate USCC", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x14d60e7fdc0d71d8611742720e4c50e7a974020c.png", + "aggregators": [ + "CoinGecko", + "LiFi", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x0557e0d15aec0b9026dd17aa874fdf7d182a2ceb": { + "address": "0x0557e0d15aec0b9026dd17aa874fdf7d182a2ceb", + "symbol": "CFXQ", + "decimals": 6, + "name": "CFX Quantum", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x0557e0d15aec0b9026dd17aa874fdf7d182a2ceb.png", + "aggregators": [ + "CoinMarketCap", + "LiFi", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x7159cc276d7d17ab4b3beb19959e1f39368a45ba": { + "address": "0x7159cc276d7d17ab4b3beb19959e1f39368a45ba", + "symbol": "YND", + "decimals": 18, + "name": "YieldNest", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x7159cc276d7d17ab4b3beb19959e1f39368a45ba.png", + "aggregators": ["CoinMarketCap", "LiFi", "Socket", "Rubic"], + "occurrences": 4 + }, + "0x9a8bc3b04b7f3d87cfc09ba407dced575f2d61d8": { + "address": "0x9a8bc3b04b7f3d87cfc09ba407dced575f2d61d8", + "symbol": "MCWETH", + "decimals": 18, + "name": "MEV Capital wETH", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x9a8bc3b04b7f3d87cfc09ba407dced575f2d61d8.png", + "aggregators": [ + "CoinGecko", + "LiFi", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0xe5e0b73380181273abcfd88695f52c4d0c825661": { + "address": "0xe5e0b73380181273abcfd88695f52c4d0c825661", + "symbol": "ICNT", + "decimals": 18, + "name": "Impossible Cloud Network Token", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xe5e0b73380181273abcfd88695f52c4d0c825661.png", + "aggregators": [ + "CoinMarketCap", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0xaf4dce16da2877f8c9e00544c93b62ac40631f16": { + "address": "0xaf4dce16da2877f8c9e00544c93b62ac40631f16", + "symbol": "MTH", + "decimals": 5, + "name": "Monetha", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xaf4dce16da2877f8c9e00544c93b62ac40631f16.png", + "aggregators": [ + "CoinMarketCap", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x72b658bd674f9c2b4954682f517c17d14476e417": { + "address": "0x72b658bd674f9c2b4954682f517c17d14476e417", + "symbol": "OPTR", + "decimals": 18, + "name": "opTrade AI", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x72b658bd674f9c2b4954682f517c17d14476e417.png", + "aggregators": [ + "CoinGecko", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0xa1b0edf4460cc4d8bfaa18ed871bff15e5b57eb4": { + "address": "0xa1b0edf4460cc4d8bfaa18ed871bff15e5b57eb4", + "symbol": "AAMMUNIBATWETH", + "decimals": 18, + "name": "Aave AMM UniBATWETH", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xa1b0edf4460cc4d8bfaa18ed871bff15e5b57eb4.png", + "aggregators": [ + "CoinGecko", + "LiFi", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x38e491a71291cd43e8de63b7253e482622184894": { + "address": "0x38e491a71291cd43e8de63b7253e482622184894", + "symbol": "AAMMUNISNXWETH", + "decimals": 18, + "name": "Aave AMM UniSNXWETH", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x38e491a71291cd43e8de63b7253e482622184894.png", + "aggregators": [ + "CoinGecko", + "LiFi", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x230ea9aed5d08afdb22cd3c06c47cf24ad501301": { + "address": "0x230ea9aed5d08afdb22cd3c06c47cf24ad501301", + "symbol": "SPX20", + "decimals": 18, + "name": "SPX6900 2 0", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x230ea9aed5d08afdb22cd3c06c47cf24ad501301.png", + "aggregators": [ + "CoinGecko", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0xb4371da53140417cbb3362055374b10d97e420bb": { + "address": "0xb4371da53140417cbb3362055374b10d97e420bb", + "symbol": "SWTH", + "decimals": 8, + "name": "Carbon Protocol", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xb4371da53140417cbb3362055374b10d97e420bb.png", + "aggregators": [ + "CoinMarketCap", + "LiFi", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x45e412e1878080815d6d51d47b83d17869433459": { + "address": "0x45e412e1878080815d6d51d47b83d17869433459", + "symbol": "CTO", + "decimals": 18, + "name": "Chief Troll Officer", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x45e412e1878080815d6d51d47b83d17869433459.png", + "aggregators": [ + "CoinGecko", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0xd94a8f9caed25e63ecc90edfefaf3635ea1e182a": { + "address": "0xd94a8f9caed25e63ecc90edfefaf3635ea1e182a", + "symbol": "SCOMP", + "decimals": 18, + "name": "Stablecomp", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xd94a8f9caed25e63ecc90edfefaf3635ea1e182a.png", + "aggregators": [ + "CoinGecko", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x8a053350ca5f9352a16ded26ab333e2d251dad7c": { + "address": "0x8a053350ca5f9352a16ded26ab333e2d251dad7c", + "symbol": "MMETH", + "decimals": 18, + "name": "Eigenpie mETH", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x8a053350ca5f9352a16ded26ab333e2d251dad7c.png", + "aggregators": [ + "CoinGecko", + "LiFi", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0xe46a5e19b19711332e33f33c2db3ea143e86bc10": { + "address": "0xe46a5e19b19711332e33f33c2db3ea143e86bc10", + "symbol": "MWBETH", + "decimals": 18, + "name": "Eigenpie wBETH", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xe46a5e19b19711332e33f33c2db3ea143e86bc10.png", + "aggregators": [ + "CoinGecko", + "LiFi", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0xf587f2e8aff7d76618d3b6b4626621860fbd54e3": { + "address": "0xf587f2e8aff7d76618d3b6b4626621860fbd54e3", + "symbol": "GTCBBTCC", + "decimals": 18, + "name": "cbBTC Core Morpho Vault", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xf587f2e8aff7d76618d3b6b4626621860fbd54e3.png", + "aggregators": [ + "CoinGecko", + "LiFi", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0xe0c98605f279e4d7946d25b75869c69802823763": { + "address": "0xe0c98605f279e4d7946d25b75869c69802823763", + "symbol": "RE7WBTC", + "decimals": 18, + "name": "Re7 WBTC Morpho Vault", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xe0c98605f279e4d7946d25b75869c69802823763.png", + "aggregators": [ + "CoinGecko", + "LiFi", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0xd63070114470f685b75b74d60eec7c1113d33a3d": { + "address": "0xd63070114470f685b75b74d60eec7c1113d33a3d", + "symbol": "USUALUSDC+", + "decimals": 18, + "name": "MEV Capital Usual Boosted USDC Morpho V", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xd63070114470f685b75b74d60eec7c1113d33a3d.png", + "aggregators": [ + "CoinGecko", + "LiFi", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x90ce5720c17587d28e4af120ae2d313b3bad1722": { + "address": "0x90ce5720c17587d28e4af120ae2d313b3bad1722", + "symbol": "OVER", + "decimals": 18, + "name": "Overtime", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x90ce5720c17587d28e4af120ae2d313b3bad1722.png", + "aggregators": [ + "CoinMarketCap", + "LiFi", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0xbeefc011e94f43b8b7b455ebab290c7ab4e216f1": { + "address": "0xbeefc011e94f43b8b7b455ebab290c7ab4e216f1", + "symbol": "CSUSDL", + "decimals": 18, + "name": "Coinshift USDL Morpho Vault", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xbeefc011e94f43b8b7b455ebab290c7ab4e216f1.png", + "aggregators": [ + "CoinGecko", + "LiFi", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x7c1156e515aa1a2e851674120074968c905aaf37": { + "address": "0x7c1156e515aa1a2e851674120074968c905aaf37", + "symbol": "LVLUSD", + "decimals": 18, + "name": "Level USD", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x7c1156e515aa1a2e851674120074968c905aaf37.png", + "aggregators": [ + "CoinGecko", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0xe2616122ed554bd693335e9143c47df187a86ef3": { + "address": "0xe2616122ed554bd693335e9143c47df187a86ef3", + "symbol": "IMT", + "decimals": 18, + "name": "Immortal Token", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xe2616122ed554bd693335e9143c47df187a86ef3.png", + "aggregators": [ + "CoinMarketCap", + "Rubic", + "Squid", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x87d907568a0761ea45d2917e324557920668f224": { + "address": "0x87d907568a0761ea45d2917e324557920668f224", + "symbol": "GROK20", + "decimals": 18, + "name": "Grok2 0", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x87d907568a0761ea45d2917e324557920668f224.png", + "aggregators": [ + "CoinGecko", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x4f460bb11cf958606c69a963b4a17f9daeeea8b6": { + "address": "0x4f460bb11cf958606c69a963b4a17f9daeeea8b6", + "symbol": "FXUSDC", + "decimals": 18, + "name": "f x Protocol Morpho USDC", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x4f460bb11cf958606c69a963b4a17f9daeeea8b6.png", + "aggregators": [ + "CoinGecko", + "LiFi", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0xbe40491f3261fd42724f1aeb465796eb11c06ddf": { + "address": "0xbe40491f3261fd42724f1aeb465796eb11c06ddf", + "symbol": "RE7FRAX", + "decimals": 18, + "name": "Re7 FRAX", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xbe40491f3261fd42724f1aeb465796eb11c06ddf.png", + "aggregators": ["CoinGecko", "LiFi", "Rubic", "Sonarwatch"], + "occurrences": 4 + }, + "0xe07c41e9cdf7e0a7800e4bbf90d414654fd6413d": { + "address": "0xe07c41e9cdf7e0a7800e4bbf90d414654fd6413d", + "symbol": "CBDC", + "decimals": 9, + "name": "CBDC", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xe07c41e9cdf7e0a7800e4bbf90d414654fd6413d.png", + "aggregators": [ + "CoinGecko", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x43c5034469bce262d32f64c5e7f9f359f5b1495f": { + "address": "0x43c5034469bce262d32f64c5e7f9f359f5b1495f", + "symbol": "DOPE", + "decimals": 9, + "name": "Department Of Propaganda Everywhere", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x43c5034469bce262d32f64c5e7f9f359f5b1495f.png", + "aggregators": [ + "CoinGecko", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0xc7bb03ddd9311fc0338be013e7b523254092fda9": { + "address": "0xc7bb03ddd9311fc0338be013e7b523254092fda9", + "symbol": "N", + "decimals": 18, + "name": "nsurance", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xc7bb03ddd9311fc0338be013e7b523254092fda9.png", + "aggregators": [ + "CoinGecko", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0xdf3ac4f479375802a821f7b7b46cd7eb5e4262cc": { + "address": "0xdf3ac4f479375802a821f7b7b46cd7eb5e4262cc", + "symbol": "EUSD", + "decimals": 18, + "name": "eUSD", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xdf3ac4f479375802a821f7b7b46cd7eb5e4262cc.png", + "aggregators": [ + "CoinGecko", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x015628ce9150db1bce2fbb717a09e846f8a32436": { + "address": "0x015628ce9150db1bce2fbb717a09e846f8a32436", + "symbol": "BBC", + "decimals": 18, + "name": "Big Bonus Coin ETH", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x015628ce9150db1bce2fbb717a09e846f8a32436.png", + "aggregators": [ + "CoinGecko", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0xf2ec4a773ef90c58d98ea734c0ebdb538519b988": { + "address": "0xf2ec4a773ef90c58d98ea734c0ebdb538519b988", + "symbol": "DOGE20", + "decimals": 9, + "name": "Doge 2 0", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xf2ec4a773ef90c58d98ea734c0ebdb538519b988.png", + "aggregators": [ + "CoinGecko", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x8238884ec9668ef77b90c6dff4d1a9f4f4823bfe": { + "address": "0x8238884ec9668ef77b90c6dff4d1a9f4f4823bfe", + "symbol": "USDO", + "decimals": 18, + "name": "OpenEden OpenDollar", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x8238884ec9668ef77b90c6dff4d1a9f4f4823bfe.png", + "aggregators": [ + "CoinMarketCap", + "LiFi", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x904f36d74bed2ef2729eaa1c7a5b70dea2966a02": { + "address": "0x904f36d74bed2ef2729eaa1c7a5b70dea2966a02", + "symbol": "BLB", + "decimals": 18, + "name": "Blueberry", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x904f36d74bed2ef2729eaa1c7a5b70dea2966a02.png", + "aggregators": [ + "CoinGecko", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x27b5739e22ad9033bcbf192059122d163b60349d": { + "address": "0x27b5739e22ad9033bcbf192059122d163b60349d", + "symbol": "ST-YCRV", + "decimals": 18, + "name": "Staked Yearn CRV Vault", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x27b5739e22ad9033bcbf192059122d163b60349d.png", + "aggregators": [ + "CoinGecko", + "LiFi", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x3feb4fea5132695542f8ede5076ac43296d17c6d": { + "address": "0x3feb4fea5132695542f8ede5076ac43296d17c6d", + "symbol": "BTC20", + "decimals": 8, + "name": "Bitcoin 2 0", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x3feb4fea5132695542f8ede5076ac43296d17c6d.png", + "aggregators": [ + "CoinGecko", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x0305f515fa978cf87226cf8a9776d25bcfb2cc0b": { + "address": "0x0305f515fa978cf87226cf8a9776d25bcfb2cc0b", + "symbol": "PEPE20", + "decimals": 18, + "name": "Pepe 2 0", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x0305f515fa978cf87226cf8a9776d25bcfb2cc0b.png", + "aggregators": [ + "CoinGecko", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x4737d9b4592b40d51e110b94c9c043c6654067ae": { + "address": "0x4737d9b4592b40d51e110b94c9c043c6654067ae", + "symbol": "SLVLUSD", + "decimals": 18, + "name": "Staked Level USD", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x4737d9b4592b40d51e110b94c9c043c6654067ae.png", + "aggregators": [ + "CoinGecko", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x775f661b0bd1739349b9a2a3ef60be277c5d2d29": { + "address": "0x775f661b0bd1739349b9a2a3ef60be277c5d2d29", + "symbol": "WAETHLIDOWSTETH", + "decimals": 18, + "name": "Wrapped Aave Ethereum Lido wstETH", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x775f661b0bd1739349b9a2a3ef60be277c5d2d29.png", + "aggregators": ["CoinGecko", "1inch", "LiFi", "Rubic", "Rango"], + "occurrences": 5 + }, + "0x0fe906e030a44ef24ca8c7dc7b7c53a6c4f00ce9": { + "address": "0x0fe906e030a44ef24ca8c7dc7b7c53a6c4f00ce9", + "symbol": "WAETHLIDOWETH", + "decimals": 18, + "name": "Wrapped Aave Ethereum Lido WETH", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x0fe906e030a44ef24ca8c7dc7b7c53a6c4f00ce9.png", + "aggregators": ["CoinGecko", "1inch", "LiFi", "Rubic", "Rango"], + "occurrences": 5 + }, + "0x65d72aa8da931f047169112fcf34f52dbaae7d18": { + "address": "0x65d72aa8da931f047169112fcf34f52dbaae7d18", + "symbol": "RUSD", + "decimals": 18, + "name": "f x rUSD", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x65d72aa8da931f047169112fcf34f52dbaae7d18.png", + "aggregators": [ + "CoinGecko", + "LiFi", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x7bc3485026ac48b6cf9baf0a377477fff5703af8": { + "address": "0x7bc3485026ac48b6cf9baf0a377477fff5703af8", + "symbol": "WAETHUSDT", + "decimals": 6, + "name": "WAETHUSDT", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x7bc3485026ac48b6cf9baf0a377477fff5703af8.png", + "aggregators": ["CoinGecko", "1inch", "LiFi", "Rubic", "Rango"], + "occurrences": 5 + }, + "0x1c530d6de70c05a81bf1670157b9d928e9699089": { + "address": "0x1c530d6de70c05a81bf1670157b9d928e9699089", + "symbol": "MCWBTC", + "decimals": 18, + "name": "MEV Capital WBTC", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x1c530d6de70c05a81bf1670157b9d928e9699089.png", + "aggregators": ["CoinGecko", "LiFi", "Rubic", "Sonarwatch"], + "occurrences": 4 + }, + "0xd4fa2d31b7968e448877f69a96de69f5de8cd23e": { + "address": "0xd4fa2d31b7968e448877f69a96de69f5de8cd23e", + "symbol": "WAETHUSDC", + "decimals": 6, + "name": "WAETHUSDC", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xd4fa2d31b7968e448877f69a96de69f5de8cd23e.png", + "aggregators": ["CoinGecko", "1inch", "LiFi", "Rubic", "Rango"], + "occurrences": 5 + }, + "0xe020b01b6fbd83066aa2e8ee0ccd1eb8d9cc70bf": { + "address": "0xe020b01b6fbd83066aa2e8ee0ccd1eb8d9cc70bf", + "symbol": "ARCD", + "decimals": 18, + "name": "Arcade", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xe020b01b6fbd83066aa2e8ee0ccd1eb8d9cc70bf.png", + "aggregators": [ + "CoinGecko", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x0f359fd18bda75e9c49bc027e7da59a4b01bf32a": { + "address": "0x0f359fd18bda75e9c49bc027e7da59a4b01bf32a", + "symbol": "REUSDC", + "decimals": 18, + "name": "Relend USDC", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x0f359fd18bda75e9c49bc027e7da59a4b01bf32a.png", + "aggregators": [ + "CoinGecko", + "LiFi", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x2411802d8bea09be0af8fd8d08314a63e706b29c": { + "address": "0x2411802d8bea09be0af8fd8d08314a63e706b29c", + "symbol": "FWSTETH", + "decimals": 18, + "name": "Fluid Wrapped Staked ETH", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x2411802d8bea09be0af8fd8d08314a63e706b29c.png", + "aggregators": [ + "CoinGecko", + "LiFi", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x90551c1795392094fe6d29b758eccd233cfaa260": { + "address": "0x90551c1795392094fe6d29b758eccd233cfaa260", + "symbol": "FWETH", + "decimals": 18, + "name": "Fluid Wrapped Ether", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x90551c1795392094fe6d29b758eccd233cfaa260.png", + "aggregators": [ + "CoinGecko", + "LiFi", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0xbeef02e5e13584ab96848af90261f0c8ee04722a": { + "address": "0xbeef02e5e13584ab96848af90261f0c8ee04722a", + "symbol": "STEAKPYUSD", + "decimals": 18, + "name": "Steakhouse PYUSD Morpho Vault", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xbeef02e5e13584ab96848af90261f0c8ee04722a.png", + "aggregators": [ + "CoinGecko", + "LiFi", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x98cf0b67da0f16e1f8f1a1d23ad8dc64c0c70e0b": { + "address": "0x98cf0b67da0f16e1f8f1a1d23ad8dc64c0c70e0b", + "symbol": "MCCBBTC", + "decimals": 18, + "name": "MEV Capital cbBTC", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x98cf0b67da0f16e1f8f1a1d23ad8dc64c0c70e0b.png", + "aggregators": ["CoinGecko", "LiFi", "Rubic", "Sonarwatch"], + "occurrences": 4 + }, + "0xbeef047a543e45807105e51a8bbefcc5950fcfba": { + "address": "0xbeef047a543e45807105e51a8bbefcc5950fcfba", + "symbol": "STEAKUSDT", + "decimals": 18, + "name": "Steakhouse USDT Morpho Vault", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xbeef047a543e45807105e51a8bbefcc5950fcfba.png", + "aggregators": ["CoinGecko", "LiFi", "Rubic", "Sonarwatch"], + "occurrences": 4 + }, + "0x60d715515d4411f7f43e4206dc5d4a3677f0ec78": { + "address": "0x60d715515d4411f7f43e4206dc5d4a3677f0ec78", + "symbol": "RE7USDC", + "decimals": 18, + "name": "Re7 USDC", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x60d715515d4411f7f43e4206dc5d4a3677f0ec78.png", + "aggregators": ["CoinGecko", "LiFi", "Rubic", "Sonarwatch"], + "occurrences": 4 + }, + "0x1265a81d42d513df40d0031f8f2e1346954d665a": { + "address": "0x1265a81d42d513df40d0031f8f2e1346954d665a", + "symbol": "MCEUSDC", + "decimals": 18, + "name": "MEV Capital Elixir USDC", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x1265a81d42d513df40d0031f8f2e1346954d665a.png", + "aggregators": ["CoinGecko", "LiFi", "Rubic", "Sonarwatch"], + "occurrences": 4 + }, + "0x2f1abb81ed86be95bcf8178ba62c8e72d6834775": { + "address": "0x2f1abb81ed86be95bcf8178ba62c8e72d6834775", + "symbol": "PWBTC", + "decimals": 18, + "name": "MEV Capital Pendle WBTC", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x2f1abb81ed86be95bcf8178ba62c8e72d6834775.png", + "aggregators": ["CoinGecko", "LiFi", "Rubic", "Sonarwatch"], + "occurrences": 4 + }, + "0x47000a7b27a75d44ffadfe9d0b97fa04d569b323": { + "address": "0x47000a7b27a75d44ffadfe9d0b97fa04d569b323", + "symbol": "TRUMPIUS", + "decimals": 9, + "name": "Trumpius Maximus", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x47000a7b27a75d44ffadfe9d0b97fa04d569b323.png", + "aggregators": [ + "CoinMarketCap", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0xa9e201a4e269d6cd5e9f0fcbcb78520cf815878b": { + "address": "0xa9e201a4e269d6cd5e9f0fcbcb78520cf815878b", + "symbol": "AAMMUNIRENWETH", + "decimals": 18, + "name": "Aave AMM UniRENWETH", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xa9e201a4e269d6cd5e9f0fcbcb78520cf815878b.png", + "aggregators": [ + "CoinGecko", + "LiFi", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0xea50f402653c41cadbafd1f788341db7b7f37816": { + "address": "0xea50f402653c41cadbafd1f788341db7b7f37816", + "symbol": "SGYD", + "decimals": 18, + "name": "sGYD", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xea50f402653c41cadbafd1f788341db7b7f37816.png", + "aggregators": ["CoinGecko", "LiFi", "Rubic", "Sonarwatch"], + "occurrences": 4 + }, + "0xfbdee8670b273e12b019210426e70091464b02ab": { + "address": "0xfbdee8670b273e12b019210426e70091464b02ab", + "symbol": "MCWM", + "decimals": 18, + "name": "MEV Capital M 0 Morpho Vault", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xfbdee8670b273e12b019210426e70091464b02ab.png", + "aggregators": ["CoinGecko", "LiFi", "Rubic", "Sonarwatch"], + "occurrences": 4 + }, + "0x78fc2c2ed1a4cdb5402365934ae5648adad094d0": { + "address": "0x78fc2c2ed1a4cdb5402365934ae5648adad094d0", + "symbol": "RE7WETH", + "decimals": 18, + "name": "Re7 WETH Morpho Vault", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x78fc2c2ed1a4cdb5402365934ae5648adad094d0.png", + "aggregators": ["CoinGecko", "LiFi", "Rubic", "Sonarwatch"], + "occurrences": 4 + }, + "0x89d80f5e9bc88d8021b352064ae73f0eaf79ebd8": { + "address": "0x89d80f5e9bc88d8021b352064ae73f0eaf79ebd8", + "symbol": "RE7USDA", + "decimals": 18, + "name": "Re7 USDA", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x89d80f5e9bc88d8021b352064ae73f0eaf79ebd8.png", + "aggregators": ["CoinGecko", "LiFi", "Rubic", "Sonarwatch"], + "occurrences": 4 + }, + "0x43fd147d5319b8cf39a6e57143684efca9cf3613": { + "address": "0x43fd147d5319b8cf39a6e57143684efca9cf3613", + "symbol": "RE7TBTC", + "decimals": 18, + "name": "Re7 tBTC", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x43fd147d5319b8cf39a6e57143684efca9cf3613.png", + "aggregators": ["CoinGecko", "LiFi", "Rubic", "Sonarwatch"], + "occurrences": 4 + }, + "0x607f451f850cb612a07b37b6315be23f55165610": { + "address": "0x607f451f850cb612a07b37b6315be23f55165610", + "symbol": "AVRK", + "decimals": 18, + "name": "Avarik Saga", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x607f451f850cb612a07b37b6315be23f55165610.png", + "aggregators": ["CoinMarketCap", "LiFi", "Rubic", "Sonarwatch"], + "occurrences": 4 + }, + "0x4d0528598f916fd1d8dc80e5f54a8feedcfd4b18": { + "address": "0x4d0528598f916fd1d8dc80e5f54a8feedcfd4b18", + "symbol": "ATOS", + "decimals": 18, + "name": "Atoshi", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x4d0528598f916fd1d8dc80e5f54a8feedcfd4b18.png", + "aggregators": ["Metamask", "LiFi", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 5 + }, + "0x0a13a5929e5f0ff0eaba4bd9e9512c91fce40280": { + "address": "0x0a13a5929e5f0ff0eaba4bd9e9512c91fce40280", + "symbol": "XAI", + "decimals": 9, + "name": "XAI Corp", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x0a13a5929e5f0ff0eaba4bd9e9512c91fce40280.png", + "aggregators": [ + "CoinMarketCap", + "LiFi", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x2365a4890ed8965e564b7e2d27c38ba67fec4c6f": { + "address": "0x2365a4890ed8965e564b7e2d27c38ba67fec4c6f", + "symbol": "AAMMUNIWBTCUSDC", + "decimals": 18, + "name": "Aave AMM UniWBTCUSDC", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x2365a4890ed8965e564b7e2d27c38ba67fec4c6f.png", + "aggregators": [ + "CoinGecko", + "LiFi", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0xc21db71648b18c5b9e038d88393c9b254cf8eac8": { + "address": "0xc21db71648b18c5b9e038d88393c9b254cf8eac8", + "symbol": "ERY", + "decimals": 18, + "name": "EURe Real Yield Morpho Vault", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xc21db71648b18c5b9e038d88393c9b254cf8eac8.png", + "aggregators": ["CoinGecko", "LiFi", "Rubic", "Sonarwatch"], + "occurrences": 4 + }, + "0xac6708e83698d34cd5c09d48249b0239008d0ccf": { + "address": "0xac6708e83698d34cd5c09d48249b0239008d0ccf", + "symbol": "FORTKNOX", + "decimals": 18, + "name": "Fort Knox", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xac6708e83698d34cd5c09d48249b0239008d0ccf.png", + "aggregators": [ + "CoinMarketCap", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x429f0d8233e517f9acf6f0c8293bf35804063a83": { + "address": "0x429f0d8233e517f9acf6f0c8293bf35804063a83", + "symbol": "POWER", + "decimals": 18, + "name": "Powerloom", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x429f0d8233e517f9acf6f0c8293bf35804063a83.png", + "aggregators": [ + "CoinMarketCap", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x08d23468a467d2bb86fae0e32f247a26c7e2e994": { + "address": "0x08d23468a467d2bb86fae0e32f247a26c7e2e994", + "symbol": "SINV", + "decimals": 18, + "name": "Staked INV", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x08d23468a467d2bb86fae0e32f247a26c7e2e994.png", + "aggregators": ["CoinGecko", "LiFi", "Rubic", "Sonarwatch"], + "occurrences": 4 + }, + "0xc0bc84e95864bdfdcd1ccfb8a3aa522e79ca1410": { + "address": "0xc0bc84e95864bdfdcd1ccfb8a3aa522e79ca1410", + "symbol": "BTCE", + "decimals": 8, + "name": "bitcoin 2015 Wrapper Meme", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xc0bc84e95864bdfdcd1ccfb8a3aa522e79ca1410.png", + "aggregators": [ + "CoinGecko", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0xef7f7820a001aabac5e0979b175c9ff8af3dd4ec": { + "address": "0xef7f7820a001aabac5e0979b175c9ff8af3dd4ec", + "symbol": "XED", + "decimals": 18, + "name": "Exeedme", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xef7f7820a001aabac5e0979b175c9ff8af3dd4ec.png", + "aggregators": [ + "CoinMarketCap", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0xde6aceaf7f2dceb3d425643c5f85351f2b38fcde": { + "address": "0xde6aceaf7f2dceb3d425643c5f85351f2b38fcde", + "symbol": "HQ", + "decimals": 18, + "name": "HQ", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xde6aceaf7f2dceb3d425643c5f85351f2b38fcde.png", + "aggregators": [ + "CoinMarketCap", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x706987611c5d2052541d64ef8f036916807c916a": { + "address": "0x706987611c5d2052541d64ef8f036916807c916a", + "symbol": "BOYS", + "decimals": 18, + "name": "Boys Club", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x706987611c5d2052541d64ef8f036916807c916a.png", + "aggregators": [ + "CoinMarketCap", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x8730762cad4a27816a467fac54e3dd1e2e9617a1": { + "address": "0x8730762cad4a27816a467fac54e3dd1e2e9617a1", + "symbol": "GX", + "decimals": 18, + "name": "Grindery X", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x8730762cad4a27816a467fac54e3dd1e2e9617a1.png", + "aggregators": [ + "CoinGecko", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x195f5c217b96cd3dd75d39327161b8911a42e509": { + "address": "0x195f5c217b96cd3dd75d39327161b8911a42e509", + "symbol": "NUTS", + "decimals": 18, + "name": "Squirrel Wallet", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x195f5c217b96cd3dd75d39327161b8911a42e509.png", + "aggregators": ["CoinMarketCap", "Rubic", "Squid", "Sonarwatch"], + "occurrences": 4 + }, + "0x559b7bfc48a5274754b08819f75c5f27af53d53b": { + "address": "0x559b7bfc48a5274754b08819f75c5f27af53d53b", + "symbol": "QI", + "decimals": 18, + "name": "Qi Dao", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x559b7bfc48a5274754b08819f75c5f27af53d53b.png", + "aggregators": [ + "CoinGecko", + "LiFi", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x2ec37d45fcae65d9787ecf71dc85a444968f6646": { + "address": "0x2ec37d45fcae65d9787ecf71dc85a444968f6646", + "symbol": "BRBTC", + "decimals": 8, + "name": "Bedrock BTC", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x2ec37d45fcae65d9787ecf71dc85a444968f6646.png", + "aggregators": [ + "CoinGecko", + "LiFi", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0xba3f535bbcccca2a154b573ca6c5a49baae0a3ea": { + "address": "0xba3f535bbcccca2a154b573ca6c5a49baae0a3ea", + "symbol": "DEURO", + "decimals": 18, + "name": "Decentralized Euro", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xba3f535bbcccca2a154b573ca6c5a49baae0a3ea.png", + "aggregators": [ + "CoinMarketCap", + "LiFi", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x95eef579155cd2c5510f312c8fa39208c3be01a8": { + "address": "0x95eef579155cd2c5510f312c8fa39208c3be01a8", + "symbol": "RE7USDT", + "decimals": 18, + "name": "Re7 USDT Morpho Vault", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x95eef579155cd2c5510f312c8fa39208c3be01a8.png", + "aggregators": [ + "CoinGecko", + "LiFi", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x4604151d4c98d1eea200b0d6bffb79a2613182aa": { + "address": "0x4604151d4c98d1eea200b0d6bffb79a2613182aa", + "symbol": "UNO", + "decimals": 9, + "name": "Uno", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x4604151d4c98d1eea200b0d6bffb79a2613182aa.png", + "aggregators": [ + "CoinGecko", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x98e1f56b334438e3f0bde22d92f5bfd746e0631f": { + "address": "0x98e1f56b334438e3f0bde22d92f5bfd746e0631f", + "symbol": "ILUM", + "decimals": 18, + "name": "Illuminati", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x98e1f56b334438e3f0bde22d92f5bfd746e0631f.png", + "aggregators": [ + "CoinGecko", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0xa02f5e93f783baf150aa1f8b341ae90fe0a772f7": { + "address": "0xa02f5e93f783baf150aa1f8b341ae90fe0a772f7", + "symbol": "RE7CBBTC", + "decimals": 18, + "name": "Re7 cbBTC", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xa02f5e93f783baf150aa1f8b341ae90fe0a772f7.png", + "aggregators": ["CoinGecko", "LiFi", "Rubic", "Sonarwatch"], + "occurrences": 4 + }, + "0x4cd1b2874e020c5bf08c4be18ab69ca86ec25fef": { + "address": "0x4cd1b2874e020c5bf08c4be18ab69ca86ec25fef", + "symbol": "CRYORAT", + "decimals": 18, + "name": "CRYORAT", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x4cd1b2874e020c5bf08c4be18ab69ca86ec25fef.png", + "aggregators": [ + "CoinGecko", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x89a8c847f41c0dfa6c8b88638bacca8a0b777da7": { + "address": "0x89a8c847f41c0dfa6c8b88638bacca8a0b777da7", + "symbol": "ELX", + "decimals": 18, + "name": "Elixir", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x89a8c847f41c0dfa6c8b88638bacca8a0b777da7.png", + "aggregators": [ + "Metamask", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x81de7654a08b0a37d136eb6e31a54543cdabeb15": { + "address": "0x81de7654a08b0a37d136eb6e31a54543cdabeb15", + "symbol": "ODDS", + "decimals": 9, + "name": "OddsNotify", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x81de7654a08b0a37d136eb6e31a54543cdabeb15.png", + "aggregators": [ + "CoinGecko", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x83e817e1574e2201a005ec0f7e700ed5606f555e": { + "address": "0x83e817e1574e2201a005ec0f7e700ed5606f555e", + "symbol": "MPENDLE", + "decimals": 18, + "name": "mPendle", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x83e817e1574e2201a005ec0f7e700ed5606f555e.png", + "aggregators": [ + "CoinGecko", + "LiFi", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0xd55c9fb62e176a8eb6968f32958fefdd0962727e": { + "address": "0xd55c9fb62e176a8eb6968f32958fefdd0962727e", + "symbol": "FHE", + "decimals": 18, + "name": "Mind Network", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xd55c9fb62e176a8eb6968f32958fefdd0962727e.png", + "aggregators": [ + "CoinMarketCap", + "LiFi", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x1fc122fe8b6fa6b8598799baf687539b5d3b2783": { + "address": "0x1fc122fe8b6fa6b8598799baf687539b5d3b2783", + "symbol": "QUEST", + "decimals": 6, + "name": "RavenQuest", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x1fc122fe8b6fa6b8598799baf687539b5d3b2783.png", + "aggregators": [ + "CoinGecko", + "Rubic", + "Squid", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0xa93d86af16fe83f064e3c0e2f3d129f7b7b002b0": { + "address": "0xa93d86af16fe83f064e3c0e2f3d129f7b7b002b0", + "symbol": "COCORO", + "decimals": 9, + "name": "Cocoro", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xa93d86af16fe83f064e3c0e2f3d129f7b7b002b0.png", + "aggregators": [ + "CoinMarketCap", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x129e5915326ed86f831b0e035acda34b209633d5": { + "address": "0x129e5915326ed86f831b0e035acda34b209633d5", + "symbol": "PAPPLE", + "decimals": 9, + "name": "Pineapple", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x129e5915326ed86f831b0e035acda34b209633d5.png", + "aggregators": [ + "CoinMarketCap", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x044d078f1c86508e13328842cc75ac021b272958": { + "address": "0x044d078f1c86508e13328842cc75ac021b272958", + "symbol": "PPC", + "decimals": 6, + "name": "Peercoin", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x044d078f1c86508e13328842cc75ac021b272958.png", + "aggregators": [ + "CoinMarketCap", + "LiFi", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x44e3ae622c1570dc6e492adb8de92d01ca923d26": { + "address": "0x44e3ae622c1570dc6e492adb8de92d01ca923d26", + "symbol": "RYZE", + "decimals": 18, + "name": "Ryze", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x44e3ae622c1570dc6e492adb8de92d01ca923d26.png", + "aggregators": [ + "CoinGecko", + "LiFi", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x000000000000012def132e61759048be5b5c6033": { + "address": "0x000000000000012def132e61759048be5b5c6033", + "symbol": "CX", + "decimals": 18, + "name": "Cortex", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x000000000000012def132e61759048be5b5c6033.png", + "aggregators": [ + "CoinMarketCap", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0xdd0f28e19c1780eb6396170735d45153d261490d": { + "address": "0xdd0f28e19c1780eb6396170735d45153d261490d", + "symbol": "GTUSDC", + "decimals": 18, + "name": "Gauntlet USDC Prime Morpho Vault", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xdd0f28e19c1780eb6396170735d45153d261490d.png", + "aggregators": [ + "CoinGecko", + "LiFi", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0xfa7ed49eb24a6117d8a3168eee69d26b45c40c63": { + "address": "0xfa7ed49eb24a6117d8a3168eee69d26b45c40c63", + "symbol": "AZCHF", + "decimals": 18, + "name": "Alpha ZCHF Vault", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xfa7ed49eb24a6117d8a3168eee69d26b45c40c63.png", + "aggregators": ["CoinGecko", "LiFi", "Rubic", "Sonarwatch"], + "occurrences": 4 + }, + "0x0b010000b7624eb9b3dfbc279673c76e9d29d5f7": { + "address": "0x0b010000b7624eb9b3dfbc279673c76e9d29d5f7", + "symbol": "OBOL", + "decimals": 18, + "name": "Obol", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x0b010000b7624eb9b3dfbc279673c76e9d29d5f7.png", + "aggregators": [ + "CoinMarketCap", + "LiFi", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x5c8d0c48810fd37a0a824d074ee290e64f7a8fa2": { + "address": "0x5c8d0c48810fd37a0a824d074ee290e64f7a8fa2", + "symbol": "AVL", + "decimals": 18, + "name": "Avalon", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x5c8d0c48810fd37a0a824d074ee290e64f7a8fa2.png", + "aggregators": [ + "CoinGecko", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x1e2c4fb7ede391d116e6b41cd0608260e8801d59": { + "address": "0x1e2c4fb7ede391d116e6b41cd0608260e8801d59", + "symbol": "BCSPX", + "decimals": 18, + "name": "Backed CSPX Core S P 500", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x1e2c4fb7ede391d116e6b41cd0608260e8801d59.png", + "aggregators": [ + "CoinGecko", + "LiFi", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x562e362876c8aee4744fc2c6aac8394c312d215d": { + "address": "0x562e362876c8aee4744fc2c6aac8394c312d215d", + "symbol": "OPTI", + "decimals": 9, + "name": "Optimus AI", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x562e362876c8aee4744fc2c6aac8394c312d215d.png", + "aggregators": [ + "CoinMarketCap", + "LiFi", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x67f3086f7823eaf35f5aaadfb2e9b9c5b09578cf": { + "address": "0x67f3086f7823eaf35f5aaadfb2e9b9c5b09578cf", + "symbol": "INX", + "decimals": 18, + "name": "InsightX", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x67f3086f7823eaf35f5aaadfb2e9b9c5b09578cf.png", + "aggregators": [ + "CoinGecko", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x9abfc0f085c82ec1be31d30843965fcc63053ffe": { + "address": "0x9abfc0f085c82ec1be31d30843965fcc63053ffe", + "symbol": "Q", + "decimals": 9, + "name": "QSTAR", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x9abfc0f085c82ec1be31d30843965fcc63053ffe.png", + "aggregators": [ + "CoinGecko", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0xddc0f880ff6e4e22e4b74632fbb43ce4df6ccc5a": { + "address": "0xddc0f880ff6e4e22e4b74632fbb43ce4df6ccc5a", + "symbol": "REUSDE", + "decimals": 18, + "name": "Re Protocol reUSDe", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xddc0f880ff6e4e22e4b74632fbb43ce4df6ccc5a.png", + "aggregators": [ + "CoinGecko", + "LiFi", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0xbeef050ecd6a16c4e7bffbb52ebba7846c4b8cd4": { + "address": "0xbeef050ecd6a16c4e7bffbb52ebba7846c4b8cd4", + "symbol": "STEAKETH", + "decimals": 18, + "name": "Steakhouse ETH Morpho Vault", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xbeef050ecd6a16c4e7bffbb52ebba7846c4b8cd4.png", + "aggregators": [ + "CoinGecko", + "LiFi", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x38eeb52f0771140d10c4e9a9a72349a329fe8a6a": { + "address": "0x38eeb52f0771140d10c4e9a9a72349a329fe8a6a", + "symbol": "APYUSD", + "decimals": 18, + "name": "apyUSD", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x38eeb52f0771140d10c4e9a9a72349a329fe8a6a.png", + "aggregators": ["CoinGecko", "LiFi", "Rubic", "Squid"], + "occurrences": 4 + }, + "0x76c4ec0068923da13ee11527d6cf9b7521000049": { + "address": "0x76c4ec0068923da13ee11527d6cf9b7521000049", + "symbol": "HAT", + "decimals": 18, + "name": "Hat", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x76c4ec0068923da13ee11527d6cf9b7521000049.png", + "aggregators": [ + "CoinGecko", + "LiFi", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0xbeef01735c132ada46aa9aa4c54623caa92a64cb": { + "address": "0xbeef01735c132ada46aa9aa4c54623caa92a64cb", + "symbol": "STEAKUSDC", + "decimals": 18, + "name": "Steakhouse USDC Morpho Vault", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xbeef01735c132ada46aa9aa4c54623caa92a64cb.png", + "aggregators": [ + "CoinGecko", + "LiFi", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x43415eb6ff9db7e26a15b704e7a3edce97d31c4e": { + "address": "0x43415eb6ff9db7e26a15b704e7a3edce97d31c4e", + "symbol": "USTB", + "decimals": 6, + "name": "Superstate Short Duration U S Governme", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x43415eb6ff9db7e26a15b704e7a3edce97d31c4e.png", + "aggregators": [ + "CoinGecko", + "LiFi", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0xbeef094333aedd535c130958c204e84f681fd9fa": { + "address": "0xbeef094333aedd535c130958c204e84f681fd9fa", + "symbol": "STEAKWBTC", + "decimals": 18, + "name": "Steakhouse WBTC Morpho Vault", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xbeef094333aedd535c130958c204e84f681fd9fa.png", + "aggregators": ["CoinGecko", "LiFi", "Rubic", "Sonarwatch"], + "occurrences": 4 + }, + "0xbeef11ecb698f4b5378685c05a210bdf71093521": { + "address": "0xbeef11ecb698f4b5378685c05a210bdf71093521", + "symbol": "STEAKRUSD", + "decimals": 18, + "name": "Steakhouse RUSD Morpho Vault", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xbeef11ecb698f4b5378685c05a210bdf71093521.png", + "aggregators": ["CoinGecko", "LiFi", "Rubic", "Sonarwatch"], + "occurrences": 4 + }, + "0x0aa1e96d2a46ec6beb2923de1e61addf5f5f1dce": { + "address": "0x0aa1e96d2a46ec6beb2923de1e61addf5f5f1dce", + "symbol": "REG", + "decimals": 18, + "name": "RealToken Ecosystem Governance", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x0aa1e96d2a46ec6beb2923de1e61addf5f5f1dce.png", + "aggregators": [ + "CoinMarketCap", + "LiFi", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x817162975186d4d53dbf5a7377dd45376e2d2fc5": { + "address": "0x817162975186d4d53dbf5a7377dd45376e2d2fc5", + "symbol": "REACT", + "decimals": 18, + "name": "Reactive Network", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x817162975186d4d53dbf5a7377dd45376e2d2fc5.png", + "aggregators": [ + "CoinMarketCap", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x20157dbabb84e3bbfe68c349d0d44e48ae7b5ad2": { + "address": "0x20157dbabb84e3bbfe68c349d0d44e48ae7b5ad2", + "symbol": "IBTC", + "decimals": 8, + "name": "iBTC Network", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x20157dbabb84e3bbfe68c349d0d44e48ae7b5ad2.png", + "aggregators": [ + "CoinMarketCap", + "LiFi", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x1a4f71b0ff3c22540887bcf83b50054a213c673d": { + "address": "0x1a4f71b0ff3c22540887bcf83b50054a213c673d", + "symbol": "WBMSTR", + "decimals": 18, + "name": "Wrapped bMSTR", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x1a4f71b0ff3c22540887bcf83b50054a213c673d.png", + "aggregators": ["CoinGecko", "LiFi", "Rubic", "Sonarwatch"], + "occurrences": 4 + }, + "0x2a897de60073e13c1f34f672033c1c1d08657fbb": { + "address": "0x2a897de60073e13c1f34f672033c1c1d08657fbb", + "symbol": "DAWAE", + "decimals": 9, + "name": "Dawae", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x2a897de60073e13c1f34f672033c1c1d08657fbb.png", + "aggregators": [ + "CoinGecko", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x7e8101a1c322d394b3961498c7d40d2dfa94c392": { + "address": "0x7e8101a1c322d394b3961498c7d40d2dfa94c392", + "symbol": "WBNVDA", + "decimals": 18, + "name": "Wrapped bNVDA", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x7e8101a1c322d394b3961498c7d40d2dfa94c392.png", + "aggregators": ["CoinGecko", "LiFi", "Rubic", "Sonarwatch"], + "occurrences": 4 + }, + "0xf27441230eadeac85b764610325cc9a0d7859689": { + "address": "0xf27441230eadeac85b764610325cc9a0d7859689", + "symbol": "ASTR", + "decimals": 18, + "name": "Astar", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xf27441230eadeac85b764610325cc9a0d7859689.png", + "aggregators": [ + "CoinGecko", + "LiFi", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x1f82284c1658ad71c576f7230e6c2dee7901c1fa": { + "address": "0x1f82284c1658ad71c576f7230e6c2dee7901c1fa", + "symbol": "WBTSLA", + "decimals": 18, + "name": "Wrapped bTSLA", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x1f82284c1658ad71c576f7230e6c2dee7901c1fa.png", + "aggregators": ["CoinGecko", "LiFi", "Rubic", "Sonarwatch"], + "occurrences": 4 + }, + "0x7bbcf1b600565ae023a1806ef637af4739de3255": { + "address": "0x7bbcf1b600565ae023a1806ef637af4739de3255", + "symbol": "PRFI", + "decimals": 18, + "name": "Prime Numbers Labs", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x7bbcf1b600565ae023a1806ef637af4739de3255.png", + "aggregators": [ + "CoinGecko", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0xb2490e357980ce57bf5745e181e537a64eb367b1": { + "address": "0xb2490e357980ce57bf5745e181e537a64eb367b1", + "symbol": "MOON", + "decimals": 18, + "name": "r CryptoCurrency Moons", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xb2490e357980ce57bf5745e181e537a64eb367b1.png", + "aggregators": [ + "CoinGecko", + "LiFi", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0xa34c5e0abe843e10461e2c9586ea03e55dbcc495": { + "address": "0xa34c5e0abe843e10461e2c9586ea03e55dbcc495", + "symbol": "BNVDA", + "decimals": 18, + "name": "Backed NVIDIA", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xa34c5e0abe843e10461e2c9586ea03e55dbcc495.png", + "aggregators": [ + "CoinGecko", + "LiFi", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x911d86c72155c33993d594b0ec7e6206b4c803da": { + "address": "0x911d86c72155c33993d594b0ec7e6206b4c803da", + "symbol": "WSTLINK", + "decimals": 18, + "name": "Wrapped Staked LINK", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x911d86c72155c33993d594b0ec7e6206b4c803da.png", + "aggregators": [ + "CoinGecko", + "LiFi", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x60b9c41d99fe3eb64ecc1344bad31d87f1bced6d": { + "address": "0x60b9c41d99fe3eb64ecc1344bad31d87f1bced6d", + "symbol": "STABLE", + "decimals": 18, + "name": "Stable", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x60b9c41d99fe3eb64ecc1344bad31d87f1bced6d.png", + "aggregators": [ + "CoinGecko", + "Rubic", + "Squid", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x2f913c820ed3beb3a67391a6eff64e70c4b20b19": { + "address": "0x2f913c820ed3beb3a67391a6eff64e70c4b20b19", + "symbol": "M-BTC", + "decimals": 18, + "name": "Merlin s Seal BTC", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x2f913c820ed3beb3a67391a6eff64e70c4b20b19.png", + "aggregators": [ + "CoinGecko", + "Rubic", + "Squid", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0xfb62ae373aca027177d1c18ee0862817f9080d08": { + "address": "0xfb62ae373aca027177d1c18ee0862817f9080d08", + "symbol": "DPET", + "decimals": 18, + "name": "My DeFi Pet", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xfb62ae373aca027177d1c18ee0862817f9080d08.png", + "aggregators": [ + "CoinGecko", + "LiFi", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0xe95076d9fe7155c17b455ac49497e78912c4ab65": { + "address": "0xe95076d9fe7155c17b455ac49497e78912c4ab65", + "symbol": "DOLLAR", + "decimals": 6, + "name": "Dollar", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xe95076d9fe7155c17b455ac49497e78912c4ab65.png", + "aggregators": [ + "CoinMarketCap", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0xb6dd77fd132dcaa10f1858734e838a0fa7431580": { + "address": "0xb6dd77fd132dcaa10f1858734e838a0fa7431580", + "symbol": "FCP", + "decimals": 18, + "name": "Filipcoin", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xb6dd77fd132dcaa10f1858734e838a0fa7431580.png", + "aggregators": [ + "CoinGecko", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0xbc0899e527007f1b8ced694508fcb7a2b9a46f53": { + "address": "0xbc0899e527007f1b8ced694508fcb7a2b9a46f53", + "symbol": "BSKT", + "decimals": 5, + "name": "Basket", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xbc0899e527007f1b8ced694508fcb7a2b9a46f53.png", + "aggregators": [ + "CoinGecko", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0xac28c9178acc8ba4a11a29e013a3a2627086e422": { + "address": "0xac28c9178acc8ba4a11a29e013a3a2627086e422", + "symbol": "BMSTR", + "decimals": 18, + "name": "Backed MicroStrategy", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xac28c9178acc8ba4a11a29e013a3a2627086e422.png", + "aggregators": [ + "CoinGecko", + "LiFi", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x9deb0fc809955b79c85e82918e8586d3b7d2695a": { + "address": "0x9deb0fc809955b79c85e82918e8586d3b7d2695a", + "symbol": "GOLD", + "decimals": 18, + "name": "GoldenBoys", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x9deb0fc809955b79c85e82918e8586d3b7d2695a.png", + "aggregators": [ + "CoinGecko", + "LiFi", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x14a5f2872396802c3cc8942a39ab3e4118ee5038": { + "address": "0x14a5f2872396802c3cc8942a39ab3e4118ee5038", + "symbol": "BTSLA", + "decimals": 18, + "name": "Backed Tesla", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x14a5f2872396802c3cc8942a39ab3e4118ee5038.png", + "aggregators": [ + "CoinGecko", + "LiFi", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0xc53ac24320e3a54c7211e4993c8095078a0cb3cf": { + "address": "0xc53ac24320e3a54c7211e4993c8095078a0cb3cf", + "symbol": "WGC", + "decimals": 6, + "name": "Wild Goat Coin", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xc53ac24320e3a54c7211e4993c8095078a0cb3cf.png", + "aggregators": ["CoinGecko", "Socket", "Rubic", "Sonarwatch"], + "occurrences": 4 + }, + "0x570f09ac53b96929e3868f71864e36ff6b1b67d7": { + "address": "0x570f09ac53b96929e3868f71864e36ff6b1b67d7", + "symbol": "ARCAS", + "decimals": 17, + "name": "Arcas", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x570f09ac53b96929e3868f71864e36ff6b1b67d7.png", + "aggregators": [ + "CoinMarketCap", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0xf3527ef8de265eaa3716fb312c12847bfba66cef": { + "address": "0xf3527ef8de265eaa3716fb312c12847bfba66cef", + "symbol": "USDX", + "decimals": 18, + "name": "Stables Labs USDX", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xf3527ef8de265eaa3716fb312c12847bfba66cef.png", + "aggregators": [ + "CoinGecko", + "LiFi", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x177d39ac676ed1c67a2b268ad7f1e58826e5b0af": { + "address": "0x177d39ac676ed1c67a2b268ad7f1e58826e5b0af", + "symbol": "CDT", + "decimals": 18, + "name": "CoinDash Token", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x177d39ac676ed1c67a2b268ad7f1e58826e5b0af.png", + "aggregators": [ + "CoinMarketCap", + "LiFi", + "Socket", + "Rubic", + "Rango" + ], + "occurrences": 5 + }, + "0x9041fe5b3fdea0f5e4afdc17e75180738d877a01": { + "address": "0x9041fe5b3fdea0f5e4afdc17e75180738d877a01", + "symbol": "PRO", + "decimals": 18, + "name": "PRO", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x9041fe5b3fdea0f5e4afdc17e75180738d877a01.png", + "aggregators": [ + "CoinMarketCap", + "LiFi", + "Socket", + "Rubic", + "Rango" + ], + "occurrences": 5 + }, + "0xcb46c550539ac3db72dc7af7c89b11c306c727c2": { + "address": "0xcb46c550539ac3db72dc7af7c89b11c306c727c2", + "symbol": "PONT", + "decimals": 9, + "name": "Poly Ontology Token", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xcb46c550539ac3db72dc7af7c89b11c306c727c2.png", + "aggregators": [ + "CoinMarketCap", + "LiFi", + "Rubic", + "Rango", + "SushiSwap" + ], + "occurrences": 5 + }, + "0x159a1dfae19057de57dfffcbb3da1ae784678965": { + "address": "0x159a1dfae19057de57dfffcbb3da1ae784678965", + "symbol": "RFX", + "decimals": 8, + "name": "Reflex", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x159a1dfae19057de57dfffcbb3da1ae784678965.png", + "aggregators": [ + "CoinMarketCap", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0xe61fdaf474fac07063f2234fb9e60c1163cfa850": { + "address": "0xe61fdaf474fac07063f2234fb9e60c1163cfa850", + "symbol": "COIN", + "decimals": 18, + "name": "COIN", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xe61fdaf474fac07063f2234fb9e60c1163cfa850.png", + "aggregators": [ + "CoinMarketCap", + "LiFi", + "TrustWallet", + "Socket", + "Rubic" + ], + "occurrences": 5 + }, + "0x8f081eb884fd47b79536d28e2dd9d4886773f783": { + "address": "0x8f081eb884fd47b79536d28e2dd9d4886773f783", + "symbol": "BECOIN", + "decimals": 6, + "name": "bePAY Finance", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x8f081eb884fd47b79536d28e2dd9d4886773f783.png", + "aggregators": [ + "CoinMarketCap", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0xb399511642fe1666c6a07f83483e6e4feaed9a00": { + "address": "0xb399511642fe1666c6a07f83483e6e4feaed9a00", + "symbol": "EUROS", + "decimals": 18, + "name": "The Standard EURO", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xb399511642fe1666c6a07f83483e6e4feaed9a00.png", + "aggregators": [ + "CoinMarketCap", + "LiFi", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0xc0200b1c6598a996a339196259ffdc30c1f44339": { + "address": "0xc0200b1c6598a996a339196259ffdc30c1f44339", + "symbol": "KEK", + "decimals": 9, + "name": "El Risitas", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xc0200b1c6598a996a339196259ffdc30c1f44339.png", + "aggregators": [ + "CoinMarketCap", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x416cdaf616a82d7dd46e0dbf36e7d6fe412bc40e": { + "address": "0x416cdaf616a82d7dd46e0dbf36e7d6fe412bc40e", + "symbol": "LUNA", + "decimals": 18, + "name": "Luna28", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x416cdaf616a82d7dd46e0dbf36e7d6fe412bc40e.png", + "aggregators": [ + "CoinMarketCap", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x64d93cf499054170f4c211f91f867f902afaece6": { + "address": "0x64d93cf499054170f4c211f91f867f902afaece6", + "symbol": "QAI", + "decimals": 18, + "name": "Quant AI", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x64d93cf499054170f4c211f91f867f902afaece6.png", + "aggregators": [ + "CoinMarketCap", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0xd152e68e055021fac32818c68601e437eb4105a6": { + "address": "0xd152e68e055021fac32818c68601e437eb4105a6", + "symbol": "BEAN", + "decimals": 18, + "name": "BloomBeans BEAN", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xd152e68e055021fac32818c68601e437eb4105a6.png", + "aggregators": [ + "CoinMarketCap", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0xb01dd87b29d187f3e3a4bf6cdaebfb97f3d9ab98": { + "address": "0xb01dd87b29d187f3e3a4bf6cdaebfb97f3d9ab98", + "symbol": "BOLD", + "decimals": 18, + "name": "Legacy BOLD", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xb01dd87b29d187f3e3a4bf6cdaebfb97f3d9ab98.png", + "aggregators": ["LiFi", "Socket", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 5 + }, + "0x2aeabde1ab736c59e9a19bed67681869eef39526": { + "address": "0x2aeabde1ab736c59e9a19bed67681869eef39526", + "symbol": "DOVU", + "decimals": 8, + "name": "DOVU", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x2aeabde1ab736c59e9a19bed67681869eef39526.png", + "aggregators": ["CoinMarketCap", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0xdef1b2d939edc0e4d35806c59b3166f790175afe": { + "address": "0xdef1b2d939edc0e4d35806c59b3166f790175afe", + "symbol": "INX", + "decimals": 18, + "name": "Infinex", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xdef1b2d939edc0e4d35806c59b3166f790175afe.png", + "aggregators": ["CoinMarketCap", "LiFi", "Rubic", "Rango"], + "occurrences": 4 + }, + "0xc1d204d77861def49b6e769347a883b15ec397ff": { + "address": "0xc1d204d77861def49b6e769347a883b15ec397ff", + "symbol": "PAX", + "decimals": 18, + "name": "PayperEx", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xc1d204d77861def49b6e769347a883b15ec397ff.png", + "aggregators": ["OpenSwap", "LiFi", "Rubic", "Rango"], + "occurrences": 4 + }, + "0xc3d21f79c3120a4ffda7a535f8005a7c297799bf": { + "address": "0xc3d21f79c3120a4ffda7a535f8005a7c297799bf", + "symbol": "TERM", + "decimals": 18, + "name": "Term Finance", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xc3d21f79c3120a4ffda7a535f8005a7c297799bf.png", + "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0x228bec415ade4b61d7caf0adf8c91eac587ba369": { + "address": "0x228bec415ade4b61d7caf0adf8c91eac587ba369", + "symbol": "TRIA", + "decimals": 18, + "name": "Tria", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x228bec415ade4b61d7caf0adf8c91eac587ba369.png", + "aggregators": ["CoinMarketCap", "LiFi", "Rubic", "Rango"], + "occurrences": 4 + }, + "0x7b43e3875440b44613dc3bc08e7763e6da63c8f8": { + "address": "0x7b43e3875440b44613dc3bc08e7763e6da63c8f8", + "symbol": "USDR", + "decimals": 6, + "name": "StablR USD", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x7b43e3875440b44613dc3bc08e7763e6da63c8f8.png", + "aggregators": ["CoinMarketCap", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0xf983da3ca66964c02628189ea8ca99fa9e24f66c": { + "address": "0xf983da3ca66964c02628189ea8ca99fa9e24f66c", + "symbol": "WANLOG", + "decimals": 12, + "name": "Wrapped Analog One Token", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xf983da3ca66964c02628189ea8ca99fa9e24f66c.png", + "aggregators": ["CoinMarketCap", "LiFi", "Rubic", "Rango"], + "occurrences": 4 + }, + "0x77607588222e01bf892a29abab45796a2047fc7b": { + "address": "0x77607588222e01bf892a29abab45796a2047fc7b", + "symbol": "UETH", + "decimals": 18, + "name": "Unagii ETH", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x77607588222e01bf892a29abab45796a2047fc7b.png", + "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0x20c64dee8fda5269a78f2d5bdba861ca1d83df7a": { + "address": "0x20c64dee8fda5269a78f2d5bdba861ca1d83df7a", + "symbol": "BHIGH", + "decimals": 18, + "name": "Backed HIGH High Yield Corp Bond", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x20c64dee8fda5269a78f2d5bdba861ca1d83df7a.png", + "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0xa5ca62d95d24a4a350983d5b8ac4eb8638887396": { + "address": "0xa5ca62d95d24a4a350983d5b8ac4eb8638887396", + "symbol": "YVSUSD", + "decimals": 18, + "name": "sUSD yVault", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xa5ca62d95d24a4a350983d5b8ac4eb8638887396.png", + "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0x378cb52b00f9d0921cb46dfc099cff73b42419dc": { + "address": "0x378cb52b00f9d0921cb46dfc099cff73b42419dc", + "symbol": "YVLUSD", + "decimals": 18, + "name": "LUSD yVault", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x378cb52b00f9d0921cb46dfc099cff73b42419dc.png", + "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0x6d765cbe5bc922694afe112c140b8878b9fb0390": { + "address": "0x6d765cbe5bc922694afe112c140b8878b9fb0390", + "symbol": "YVSUSHI", + "decimals": 18, + "name": "SUSHI yVault", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x6d765cbe5bc922694afe112c140b8878b9fb0390.png", + "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0xfd0877d9095789caf24c98f7cce092fa8e120775": { + "address": "0xfd0877d9095789caf24c98f7cce092fa8e120775", + "symbol": "YVTUSD", + "decimals": 18, + "name": "TUSD yVault", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xfd0877d9095789caf24c98f7cce092fa8e120775.png", + "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0x671a912c10bba0cfa74cfc2d6fba9ba1ed9530b2": { + "address": "0x671a912c10bba0cfa74cfc2d6fba9ba1ed9530b2", + "symbol": "YVLINK", + "decimals": 18, + "name": "LINK yVault", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x671a912c10bba0cfa74cfc2d6fba9ba1ed9530b2.png", + "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0x873fb544277fd7b977b196a826459a69e27ea4ea": { + "address": "0x873fb544277fd7b977b196a826459a69e27ea4ea", + "symbol": "YVRAI", + "decimals": 18, + "name": "RAI yVault", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x873fb544277fd7b977b196a826459a69e27ea4ea.png", + "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0xdcb5645eda1ed34c5641d81b927d33ebae9cf2a4": { + "address": "0xdcb5645eda1ed34c5641d81b927d33ebae9cf2a4", + "symbol": "PAYB", + "decimals": 18, + "name": "PayB", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xdcb5645eda1ed34c5641d81b927d33ebae9cf2a4.png", + "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0xa258c4606ca8206d8aa700ce2143d7db854d168c": { + "address": "0xa258c4606ca8206d8aa700ce2143d7db854d168c", + "symbol": "YVWETH", + "decimals": 18, + "name": "WETH yVault", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xa258c4606ca8206d8aa700ce2143d7db854d168c.png", + "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0xb8c3b7a2a618c552c23b1e4701109a9e756bab67": { + "address": "0xb8c3b7a2a618c552c23b1e4701109a9e756bab67", + "symbol": "YV1INCH", + "decimals": 18, + "name": "1INCH yVault", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xb8c3b7a2a618c552c23b1e4701109a9e756bab67.png", + "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0xa696a63cc78dffa1a63e9e50587c197387ff6c7e": { + "address": "0xa696a63cc78dffa1a63e9e50587c197387ff6c7e", + "symbol": "YVWBTC", + "decimals": 8, + "name": "WBTC yVault", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xa696a63cc78dffa1a63e9e50587c197387ff6c7e.png", + "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0xf29ae508698bdef169b89834f76704c3b205aedf": { + "address": "0xf29ae508698bdef169b89834f76704c3b205aedf", + "symbol": "YVSNX", + "decimals": 18, + "name": "SNX yVault", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xf29ae508698bdef169b89834f76704c3b205aedf.png", + "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0x5c6ee304399dbdb9c8ef030ab642b10820db8f56": { + "address": "0x5c6ee304399dbdb9c8ef030ab642b10820db8f56", + "symbol": "B-80BAL-20WETH", + "decimals": 18, + "name": "Balancer 80 BAL 20 WETH", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x5c6ee304399dbdb9c8ef030ab642b10820db8f56.png", + "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0xe11ba472f74869176652c35d30db89854b5ae84d": { + "address": "0xe11ba472f74869176652c35d30db89854b5ae84d", + "symbol": "YVHEGIC", + "decimals": 18, + "name": "HEGIC yVault", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xe11ba472f74869176652c35d30db89854b5ae84d.png", + "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0x05a275ed9edf4378ac54928379ee6bc6e8900e4c": { + "address": "0x05a275ed9edf4378ac54928379ee6bc6e8900e4c", + "symbol": "USDV", + "decimals": 18, + "name": "USDV", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x05a275ed9edf4378ac54928379ee6bc6e8900e4c.png", + "aggregators": ["CoinGecko", "Rubic", "Sonarwatch"], + "occurrences": 3 + }, + "0xef89c37fe9e5c906b404cd7edae4a2992b5d25fa": { + "address": "0xef89c37fe9e5c906b404cd7edae4a2992b5d25fa", + "symbol": "TIME", + "decimals": 18, + "name": "Time Alliance Guild Time", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xef89c37fe9e5c906b404cd7edae4a2992b5d25fa.png", + "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0xc8871267e07408b89aa5aecc58adca5e574557f8": { + "address": "0xc8871267e07408b89aa5aecc58adca5e574557f8", + "symbol": "IUSDC", + "decimals": 6, + "name": "Instadapp USDC", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xc8871267e07408b89aa5aecc58adca5e574557f8.png", + "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0xf98ec282300892b3518b5cb996012b18d9b7d435": { + "address": "0xf98ec282300892b3518b5cb996012b18d9b7d435", + "symbol": "URAON", + "decimals": 18, + "name": "Global X Uranium ETF (Ondo Tokenized)", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xf98ec282300892b3518b5cb996012b18d9b7d435.png", + "aggregators": ["CoinGecko", "Rubic", "Rango", "Ondo"], + "occurrences": 4, + "rwaData": { + "market": { + "nextOpen": "2026-05-18T20:01:00.000Z", + "nextClose": "2026-05-18T19:59:00.000Z" + }, + "nextPause": { + "start": null, + "end": null + }, + "ticker": "URA", + "instrumentType": "stock" + } + }, + "0x7c488cfc874ca9f34e7bdbd0410c27ce6d6af5f9": { + "address": "0x7c488cfc874ca9f34e7bdbd0410c27ce6d6af5f9", + "symbol": "UNGON", + "decimals": 18, + "name": "US Natural Gas Fund (Ondo Tokenized)", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x7c488cfc874ca9f34e7bdbd0410c27ce6d6af5f9.png", + "aggregators": ["CoinGecko", "Rubic", "Rango", "Ondo"], + "occurrences": 4, + "rwaData": { + "market": { + "nextOpen": "2026-05-18T20:01:00.000Z", + "nextClose": "2026-05-18T19:59:00.000Z" + }, + "nextPause": { + "start": null, + "end": null + }, + "ticker": "UNG", + "instrumentType": "stock" + } + }, + "0xd4c6cce0cadf2fe4c0af9ee6777989efd8fb7670": { + "address": "0xd4c6cce0cadf2fe4c0af9ee6777989efd8fb7670", + "symbol": "PAVEON", + "decimals": 18, + "name": "Global X US Infrastructure Development ETF (Ondo Tokenized)", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xd4c6cce0cadf2fe4c0af9ee6777989efd8fb7670.png", + "aggregators": ["CoinGecko", "Rubic", "Rango", "Ondo"], + "occurrences": 4, + "rwaData": { + "market": { + "nextOpen": "2026-05-18T20:01:00.000Z", + "nextClose": "2026-05-18T19:59:00.000Z" + }, + "nextPause": { + "start": null, + "end": null + }, + "ticker": "PAVE", + "instrumentType": "stock" + } + }, + "0xf434908dcf8206691bb99cae9232d4833ec257d4": { + "address": "0xf434908dcf8206691bb99cae9232d4833ec257d4", + "symbol": "JACK", + "decimals": 18, + "name": "Blackjack fun", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xf434908dcf8206691bb99cae9232d4833ec257d4.png", + "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0x41a08648c3766f9f9d85598ff102a08f4ef84f84": { + "address": "0x41a08648c3766f9f9d85598ff102a08f4ef84f84", + "symbol": "ABPT", + "decimals": 18, + "name": "Aave Balancer Pool Token", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x41a08648c3766f9f9d85598ff102a08f4ef84f84.png", + "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0xa1116930326d21fb917d5a27f1e9943a9595fb47": { + "address": "0xa1116930326d21fb917d5a27f1e9943a9595fb47", + "symbol": "STKABPT", + "decimals": 18, + "name": "Staked Aave Balance Pool Token", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xa1116930326d21fb917d5a27f1e9943a9595fb47.png", + "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0x6d4ca1177087924edfe0908ef655169ea766fdc3": { + "address": "0x6d4ca1177087924edfe0908ef655169ea766fdc3", + "symbol": "HEDGEHOG", + "decimals": 18, + "name": "Hedgehog", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x6d4ca1177087924edfe0908ef655169ea766fdc3.png", + "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0xda6a3876ad460194cd7ba28062d838c98ee2fd1d": { + "address": "0xda6a3876ad460194cd7ba28062d838c98ee2fd1d", + "symbol": "KEL", + "decimals": 18, + "name": "KelVPN v2", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xda6a3876ad460194cd7ba28062d838c98ee2fd1d.png", + "aggregators": ["CoinMarketCap", "Socket", "Rubic"], + "occurrences": 3 + }, + "0x77163c968c2506077dbe74838dea72314a2d5760": { + "address": "0x77163c968c2506077dbe74838dea72314a2d5760", + "symbol": "SOMA", + "decimals": 18, + "name": "SOMA finance", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x77163c968c2506077dbe74838dea72314a2d5760.png", + "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0x5fbc2ffe91ac74e3e286bd7504b233f0e5291c69": { + "address": "0x5fbc2ffe91ac74e3e286bd7504b233f0e5291c69", + "symbol": "EBET", + "decimals": 8, + "name": "EarnBet", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x5fbc2ffe91ac74e3e286bd7504b233f0e5291c69.png", + "aggregators": ["CoinMarketCap", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0xe38149abc673a117abeb8af7d1ff3d0d1aa5af15": { + "address": "0xe38149abc673a117abeb8af7d1ff3d0d1aa5af15", + "symbol": "RCBETH", + "decimals": 18, + "name": "Astrid Restaked cbETH", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xe38149abc673a117abeb8af7d1ff3d0d1aa5af15.png", + "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0x1c95b093d6c236d3ef7c796fe33f9cc6b8606714": { + "address": "0x1c95b093d6c236d3ef7c796fe33f9cc6b8606714", + "symbol": "BOMB", + "decimals": 0, + "name": "BOMB", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x1c95b093d6c236d3ef7c796fe33f9cc6b8606714.png", + "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0x58a2edf0169ede82904e47a0e2a3a4008edebb60": { + "address": "0x58a2edf0169ede82904e47a0e2a3a4008edebb60", + "symbol": "LUNRON", + "decimals": 18, + "name": "Intuitive Machines (Ondo Tokenized)", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x58a2edf0169ede82904e47a0e2a3a4008edebb60.png", + "aggregators": ["CoinGecko", "Rubic", "Rango", "Ondo"], + "occurrences": 4, + "rwaData": { + "market": { + "nextOpen": "2026-05-18T20:01:00.000Z", + "nextClose": "2026-05-18T19:59:00.000Z" + }, + "nextPause": { + "start": null, + "end": null + }, + "ticker": "LUNR", + "instrumentType": "stock" + } + }, + "0xb2f79d891f11bc8e9805db135defc04ead8d780e": { + "address": "0xb2f79d891f11bc8e9805db135defc04ead8d780e", + "symbol": "AIO", + "decimals": 18, + "name": "All In One Wallet", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xb2f79d891f11bc8e9805db135defc04ead8d780e.png", + "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0x28ff2e4dd1b58efeb0fc138602a28d5ae81e44e2": { + "address": "0x28ff2e4dd1b58efeb0fc138602a28d5ae81e44e2", + "symbol": "ZKCRO", + "decimals": 18, + "name": "Cronos zkEVM CRO", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x28ff2e4dd1b58efeb0fc138602a28d5ae81e44e2.png", + "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0x37cfc2e83665d49364670dfea6d2dd4cb1215f22": { + "address": "0x37cfc2e83665d49364670dfea6d2dd4cb1215f22", + "symbol": "RRETH", + "decimals": 18, + "name": "Astrid Restaked rETH", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x37cfc2e83665d49364670dfea6d2dd4cb1215f22.png", + "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0x4b0181102a0112a2ef11abee5563bb4a3176c9d7": { + "address": "0x4b0181102a0112a2ef11abee5563bb4a3176c9d7", + "symbol": "CSUSHI", + "decimals": 8, + "name": "cSUSHI", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x4b0181102a0112a2ef11abee5563bb4a3176c9d7.png", + "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0x178bf8fd04b47d2de3ef3f6b3d112106375ad584": { + "address": "0x178bf8fd04b47d2de3ef3f6b3d112106375ad584", + "symbol": "UUSDT", + "decimals": 6, + "name": "Unagii Tether USD", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x178bf8fd04b47d2de3ef3f6b3d112106375ad584.png", + "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0x4ad0b81f92b16624bbcf46fc0030cfbbf8d02376": { + "address": "0x4ad0b81f92b16624bbcf46fc0030cfbbf8d02376", + "symbol": "UDAI", + "decimals": 18, + "name": "Unagii Dai", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x4ad0b81f92b16624bbcf46fc0030cfbbf8d02376.png", + "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0xdddd73f5df1f0dc31373357beac77545dc5a6f3f": { + "address": "0xdddd73f5df1f0dc31373357beac77545dc5a6f3f", + "symbol": "PUSD", + "decimals": 6, + "name": "Plume USD", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xdddd73f5df1f0dc31373357beac77545dc5a6f3f.png", + "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0x0352557b007a4aae1511c114409b932f06f9e2f4": { + "address": "0x0352557b007a4aae1511c114409b932f06f9e2f4", + "symbol": "SRUNE", + "decimals": 18, + "name": "sRUNE", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x0352557b007a4aae1511c114409b932f06f9e2f4.png", + "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0x997507cc49fbf0cd6ce5e1ee543218556fafdebc": { + "address": "0x997507cc49fbf0cd6ce5e1ee543218556fafdebc", + "symbol": "BT", + "decimals": 18, + "name": "Bitenium", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x997507cc49fbf0cd6ce5e1ee543218556fafdebc.png", + "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0xc8bf8bc34874e07f6a0d4abc8be22ba9e372631b": { + "address": "0xc8bf8bc34874e07f6a0d4abc8be22ba9e372631b", + "symbol": "SWGT", + "decimals": 8, + "name": "SmartWorld Global Token", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xc8bf8bc34874e07f6a0d4abc8be22ba9e372631b.png", + "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0x2f2e4b09b99fbf018f600e031aafd9da6347cc75": { + "address": "0x2f2e4b09b99fbf018f600e031aafd9da6347cc75", + "symbol": "IONQON", + "decimals": 18, + "name": "IonQ (Ondo Tokenized)", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x2f2e4b09b99fbf018f600e031aafd9da6347cc75.png", + "aggregators": ["CoinGecko", "Rubic", "Rango", "Ondo"], + "occurrences": 4, + "rwaData": { + "market": { + "nextOpen": "2026-05-18T20:01:00.000Z", + "nextClose": "2026-05-18T19:59:00.000Z" + }, + "nextPause": { + "start": null, + "end": null + }, + "ticker": "IONQ", + "instrumentType": "stock" + } + }, + "0x5c424b9b60383fce7fe7069d2a2b1047bcd04a73": { + "address": "0x5c424b9b60383fce7fe7069d2a2b1047bcd04a73", + "symbol": "SHYON", + "decimals": 18, + "name": "iShares 1-3 Year Treasury Bond ETF (Ondo Tokenized)", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x5c424b9b60383fce7fe7069d2a2b1047bcd04a73.png", + "aggregators": ["CoinGecko", "Rubic", "Rango", "Ondo"], + "occurrences": 4, + "rwaData": { + "market": { + "nextOpen": "2026-05-18T20:01:00.000Z", + "nextClose": "2026-05-18T19:59:00.000Z" + }, + "nextPause": { + "start": null, + "end": null + }, + "ticker": "SHY", + "instrumentType": "stock" + } + }, + "0xe19d1c837b8a1c83a56cd9165b2c0256d39653ad": { + "address": "0xe19d1c837b8a1c83a56cd9165b2c0256d39653ad", + "symbol": "SDFXN", + "decimals": 18, + "name": "Stake DAO FXN", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xe19d1c837b8a1c83a56cd9165b2c0256d39653ad.png", + "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0x2c9aceb63181cd08a093d052ec041e191f229692": { + "address": "0x2c9aceb63181cd08a093d052ec041e191f229692", + "symbol": "ANB", + "decimals": 18, + "name": "Angryb", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x2c9aceb63181cd08a093d052ec041e191f229692.png", + "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0xa2ec76139028f279a1c790d323c57cc4158098d6": { + "address": "0xa2ec76139028f279a1c790d323c57cc4158098d6", + "symbol": "IEFON", + "decimals": 18, + "name": "iShares 7-10 Year Treasury Bond ETF (Ondo Tokenized)", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xa2ec76139028f279a1c790d323c57cc4158098d6.png", + "aggregators": ["CoinGecko", "Rubic", "Rango", "Ondo"], + "occurrences": 4, + "rwaData": { + "market": { + "nextOpen": "2026-05-18T20:01:00.000Z", + "nextClose": "2026-05-18T19:59:00.000Z" + }, + "nextPause": { + "start": null, + "end": null + }, + "ticker": "IEF", + "instrumentType": "stock" + } + }, + "0x87a92428bbc876d463c21c8e51b903f127d9a9f4": { + "address": "0x87a92428bbc876d463c21c8e51b903f127d9a9f4", + "symbol": "AUC", + "decimals": 18, + "name": "Advanced United Continent", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x87a92428bbc876d463c21c8e51b903f127d9a9f4.png", + "aggregators": ["CoinMarketCap", "Rubic", "Sonarwatch"], + "occurrences": 3 + }, + "0x26a604dffe3ddab3bee816097f81d3c4a2a4cf97": { + "address": "0x26a604dffe3ddab3bee816097f81d3c4a2a4cf97", + "symbol": "CORX", + "decimals": 8, + "name": "CorionX", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x26a604dffe3ddab3bee816097f81d3c4a2a4cf97.png", + "aggregators": ["CoinMarketCap", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0x122940c4c5f9ccfae7fa86455a42d3ec140855ce": { + "address": "0x122940c4c5f9ccfae7fa86455a42d3ec140855ce", + "symbol": "IBITON", + "decimals": 18, + "name": "iShares Bitcoin Trust (Ondo Tokenized)", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x122940c4c5f9ccfae7fa86455a42d3ec140855ce.png", + "aggregators": ["CoinGecko", "Rubic", "Rango", "Ondo"], + "occurrences": 4, + "rwaData": { + "market": { + "nextOpen": "2026-05-18T20:01:00.000Z", + "nextClose": "2026-05-18T19:59:00.000Z" + }, + "nextPause": { + "start": null, + "end": null + }, + "ticker": "IBIT", + "instrumentType": "stock" + } + }, + "0x2dd57b497c777d9825a5902114be81df98ede958": { + "address": "0x2dd57b497c777d9825a5902114be81df98ede958", + "symbol": "FXION", + "decimals": 18, + "name": "iShares China Large-Cap ETF (Ondo Tokenized)", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x2dd57b497c777d9825a5902114be81df98ede958.png", + "aggregators": ["CoinGecko", "Rubic", "Rango", "Ondo"], + "occurrences": 4, + "rwaData": { + "market": { + "nextOpen": "2026-05-18T20:01:00.000Z", + "nextClose": "2026-05-18T19:59:00.000Z" + }, + "nextPause": { + "start": null, + "end": null + }, + "ticker": "FXI", + "instrumentType": "stock" + } + }, + "0x1b8568fbb47708e9e9d31ff303254f748805bf21": { + "address": "0x1b8568fbb47708e9e9d31ff303254f748805bf21", + "symbol": "SCX", + "decimals": 18, + "name": "Scarcity", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x1b8568fbb47708e9e9d31ff303254f748805bf21.png", + "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0x1da4858ad385cc377165a298cc2ce3fce0c5fd31": { + "address": "0x1da4858ad385cc377165a298cc2ce3fce0c5fd31", + "symbol": "CCS", + "decimals": 0, + "name": "CloutContracts", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x1da4858ad385cc377165a298cc2ce3fce0c5fd31.png", + "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0x98284fbc11edd7540e29b896a49817bbe52ddcbd": { + "address": "0x98284fbc11edd7540e29b896a49817bbe52ddcbd", + "symbol": "ETHAON", + "decimals": 18, + "name": "iShares Ethereum Trust ETF (Ondo Tokenized)", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x98284fbc11edd7540e29b896a49817bbe52ddcbd.png", + "aggregators": ["CoinGecko", "Rubic", "Rango", "Ondo"], + "occurrences": 4, + "rwaData": { + "market": { + "nextOpen": "2026-05-18T20:01:00.000Z", + "nextClose": "2026-05-18T19:59:00.000Z" + }, + "nextPause": { + "start": null, + "end": null + }, + "ticker": "ETHA", + "instrumentType": "stock" + } + }, + "0x259b0f9494b3f02c652fa11417b94cb700f1f7d8": { + "address": "0x259b0f9494b3f02c652fa11417b94cb700f1f7d8", + "symbol": "CVPAD", + "decimals": 18, + "name": "CV Pad", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x259b0f9494b3f02c652fa11417b94cb700f1f7d8.png", + "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0x54021fde36b7c4c4f9c35b02fb9a153ed8f5938a": { + "address": "0x54021fde36b7c4c4f9c35b02fb9a153ed8f5938a", + "symbol": "EWZON", + "decimals": 18, + "name": "iShares MSCI Brazil ETF (Ondo Tokenized)", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x54021fde36b7c4c4f9c35b02fb9a153ed8f5938a.png", + "aggregators": ["CoinGecko", "Rubic", "Rango", "Ondo"], + "occurrences": 4, + "rwaData": { + "market": { + "nextOpen": "2026-05-18T20:01:00.000Z", + "nextClose": "2026-05-18T19:59:00.000Z" + }, + "nextPause": { + "start": null, + "end": null + }, + "ticker": "EWZ", + "instrumentType": "stock" + } + }, + "0x07d1718ff05a8c53c8f05adaed57c0d672945f9a": { + "address": "0x07d1718ff05a8c53c8f05adaed57c0d672945f9a", + "symbol": "ARUSD", + "decimals": 18, + "name": "Aladdin rUSD", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x07d1718ff05a8c53c8f05adaed57c0d672945f9a.png", + "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0xda816459f1ab5631232fe5e97a05bbbb94970c95": { + "address": "0xda816459f1ab5631232fe5e97a05bbbb94970c95", + "symbol": "YVDAI", + "decimals": 18, + "name": "yvDAI", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xda816459f1ab5631232fe5e97a05bbbb94970c95.png", + "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0x74c8f41f57948bfd8aa0d48c882d69d12d1cc579": { + "address": "0x74c8f41f57948bfd8aa0d48c882d69d12d1cc579", + "symbol": "ECHON", + "decimals": 18, + "name": "iShares MSCI Chile ETF (Ondo Tokenized)", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x74c8f41f57948bfd8aa0d48c882d69d12d1cc579.png", + "aggregators": ["CoinGecko", "Rubic", "Rango", "Ondo"], + "occurrences": 4, + "rwaData": { + "market": { + "nextOpen": "2026-05-19T08:01:00.000Z", + "nextClose": "2026-05-18T19:59:00.000Z" + }, + "nextPause": { + "start": null, + "end": null + }, + "ticker": "ECH", + "instrumentType": "stock" + } + }, + "0xa6cdb19b22b03e03ea89e133a8a46adc3017aa6d": { + "address": "0xa6cdb19b22b03e03ea89e133a8a46adc3017aa6d", + "symbol": "INDAON", + "decimals": 18, + "name": "iShares MSCI India ETF (Ondo Tokenized)", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xa6cdb19b22b03e03ea89e133a8a46adc3017aa6d.png", + "aggregators": ["CoinGecko", "Rubic", "Rango", "Ondo"], + "occurrences": 4, + "rwaData": { + "market": { + "nextOpen": "2026-05-18T20:01:00.000Z", + "nextClose": "2026-05-18T19:59:00.000Z" + }, + "nextPause": { + "start": null, + "end": null + }, + "ticker": "INDA", + "instrumentType": "stock" + } + }, + "0x625fb557cad6d4638dae420626f3f08a485b43a8": { + "address": "0x625fb557cad6d4638dae420626f3f08a485b43a8", + "symbol": "EWJON", + "decimals": 18, + "name": "iShares MSCI Japan ETF (Ondo Tokenized)", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x625fb557cad6d4638dae420626f3f08a485b43a8.png", + "aggregators": ["CoinGecko", "Rubic", "Rango", "Ondo"], + "occurrences": 4, + "rwaData": { + "market": { + "nextOpen": "2026-05-18T20:01:00.000Z", + "nextClose": "2026-05-18T19:59:00.000Z" + }, + "nextPause": { + "start": null, + "end": null + }, + "ticker": "EWJ", + "instrumentType": "stock" + } + }, + "0xdadb4ae5b5d3099dd1f586f990b845f2404a1c4c": { + "address": "0xdadb4ae5b5d3099dd1f586f990b845f2404a1c4c", + "symbol": "(͡°͜ʖ͡°)", + "decimals": 18, + "name": "Lenny Face", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xdadb4ae5b5d3099dd1f586f990b845f2404a1c4c.png", + "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0x1fe2126bc05e4bb0468c4a198e930c889e1054a3": { + "address": "0x1fe2126bc05e4bb0468c4a198e930c889e1054a3", + "symbol": "SOXXON", + "decimals": 18, + "name": "iShares Semiconductor ETF (Ondo Tokenized)", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x1fe2126bc05e4bb0468c4a198e930c889e1054a3.png", + "aggregators": ["CoinGecko", "Rubic", "Rango", "Ondo"], + "occurrences": 4, + "rwaData": { + "market": { + "nextOpen": "2026-05-18T20:01:00.000Z", + "nextClose": "2026-05-18T19:59:00.000Z" + }, + "nextPause": { + "start": null, + "end": null + }, + "ticker": "SOXX", + "instrumentType": "stock" + } + }, + "0xb3cb8d5aeff0f4d1f432f353309f47b885e404e3": { + "address": "0xb3cb8d5aeff0f4d1f432f353309f47b885e404e3", + "symbol": "MEV", + "decimals": 18, + "name": "MEVerse", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xb3cb8d5aeff0f4d1f432f353309f47b885e404e3.png", + "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0x68622855dcf14ced1b0cc2a69cc34843708e2e0f": { + "address": "0x68622855dcf14ced1b0cc2a69cc34843708e2e0f", + "symbol": "ITAON", + "decimals": 18, + "name": "iShares US Aerospace and Defense ETF (Ondo Tokenized)", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x68622855dcf14ced1b0cc2a69cc34843708e2e0f.png", + "aggregators": ["CoinGecko", "Rubic", "Rango", "Ondo"], + "occurrences": 4, + "rwaData": { + "market": { + "nextOpen": "2026-05-18T20:01:00.000Z", + "nextClose": "2026-05-18T19:59:00.000Z" + }, + "nextPause": { + "start": null, + "end": null + }, + "ticker": "ITA", + "instrumentType": "stock" + } + }, + "0xeaa2287290544ed9f481012aa348619a4d2f9e51": { + "address": "0xeaa2287290544ed9f481012aa348619a4d2f9e51", + "symbol": "KWEBON", + "decimals": 18, + "name": "KraneShares CSI China Internet ETF (Ondo Tokenized)", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xeaa2287290544ed9f481012aa348619a4d2f9e51.png", + "aggregators": ["CoinGecko", "Rubic", "Rango", "Ondo"], + "occurrences": 4, + "rwaData": { + "market": { + "nextOpen": "2026-05-18T20:01:00.000Z", + "nextClose": "2026-05-18T19:59:00.000Z" + }, + "nextPause": { + "start": null, + "end": null + }, + "ticker": "KWEB", + "instrumentType": "stock" + } + }, + "0xc383a3833a87009fd9597f8184979af5edfad019": { + "address": "0xc383a3833a87009fd9597f8184979af5edfad019", + "symbol": "IETH", + "decimals": 18, + "name": "iETH v1", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xc383a3833a87009fd9597f8184979af5edfad019.png", + "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0x508b27902c6c14972a10a4e413b9cfa449e9cedb": { + "address": "0x508b27902c6c14972a10a4e413b9cfa449e9cedb", + "symbol": "AISIG", + "decimals": 18, + "name": "AISignal", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x508b27902c6c14972a10a4e413b9cfa449e9cedb.png", + "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0x95b4ef2869ebd94beb4eee400a99824bf5dc325b": { + "address": "0x95b4ef2869ebd94beb4eee400a99824bf5dc325b", + "symbol": "CMKR", + "decimals": 8, + "name": "cMKR", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x95b4ef2869ebd94beb4eee400a99824bf5dc325b.png", + "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0xe5acbb03d73267c03349c76ead672ee4d941f499": { + "address": "0xe5acbb03d73267c03349c76ead672ee4d941f499", + "symbol": "BEAM", + "decimals": 8, + "name": "BEAM", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xe5acbb03d73267c03349c76ead672ee4d941f499.png", + "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0x3f95aa88ddbb7d9d484aa3d482bf0a80009c52c9": { + "address": "0x3f95aa88ddbb7d9d484aa3d482bf0a80009c52c9", + "symbol": "BERNX", + "decimals": 18, + "name": "Backed ERNX Bond", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x3f95aa88ddbb7d9d484aa3d482bf0a80009c52c9.png", + "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0xe4babaa960ba7d37860f3fe00d7b95d3868e8edc": { + "address": "0xe4babaa960ba7d37860f3fe00d7b95d3868e8edc", + "symbol": "NBISON", + "decimals": 18, + "name": "Nebius Group (Ondo Tokenized)", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xe4babaa960ba7d37860f3fe00d7b95d3868e8edc.png", + "aggregators": ["CoinGecko", "Rubic", "Rango", "Ondo"], + "occurrences": 4, + "rwaData": { + "market": { + "nextOpen": "2026-05-18T20:01:00.000Z", + "nextClose": "2026-05-18T19:59:00.000Z" + }, + "nextPause": { + "start": null, + "end": null + }, + "ticker": "NBIS", + "instrumentType": "stock" + } + }, + "0x0c802acb21cb2aadb2eb5e5090868e1361b26b69": { + "address": "0x0c802acb21cb2aadb2eb5e5090868e1361b26b69", + "symbol": "NEMON", + "decimals": 18, + "name": "Newmont (Ondo Tokenized)", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x0c802acb21cb2aadb2eb5e5090868e1361b26b69.png", + "aggregators": ["CoinGecko", "Rubic", "Rango", "Ondo"], + "occurrences": 4, + "rwaData": { + "market": { + "nextOpen": "2026-05-18T20:01:00.000Z", + "nextClose": "2026-05-18T19:59:00.000Z" + }, + "nextPause": { + "start": "2026-05-26T23:52:00.000Z", + "end": "2026-05-27T00:12:00.000Z" + }, + "ticker": "NEM", + "instrumentType": "stock" + } + }, + "0x8ce34f749796f82a6990ffa2d80622ef75ca7ad5": { + "address": "0x8ce34f749796f82a6990ffa2d80622ef75ca7ad5", + "symbol": "NOCON", + "decimals": 18, + "name": "Northrop Grumman (Ondo Tokenized)", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x8ce34f749796f82a6990ffa2d80622ef75ca7ad5.png", + "aggregators": ["CoinGecko", "Rubic", "Rango", "Ondo"], + "occurrences": 4, + "rwaData": { + "market": { + "nextOpen": "2026-05-18T20:01:00.000Z", + "nextClose": "2026-05-18T19:59:00.000Z" + }, + "nextPause": { + "start": null, + "end": null + }, + "ticker": "NOC", + "instrumentType": "stock" + } + }, + "0x7712c34205737192402172409a8f7ccef8aa2aec": { + "address": "0x7712c34205737192402172409a8f7ccef8aa2aec", + "symbol": "BUIDL", + "decimals": 6, + "name": "BlackRock USD Institutional Digital Liq", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x7712c34205737192402172409a8f7ccef8aa2aec.png", + "aggregators": ["CoinMarketCap", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0x1ffefd8036409cb6d652bd610de465933b226917": { + "address": "0x1ffefd8036409cb6d652bd610de465933b226917", + "symbol": "EVER", + "decimals": 9, + "name": "Everscale", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x1ffefd8036409cb6d652bd610de465933b226917.png", + "aggregators": ["CoinMarketCap", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0x0ede75b5f548e0d37f494368f4fa4982b6d0630a": { + "address": "0x0ede75b5f548e0d37f494368f4fa4982b6d0630a", + "symbol": "MEG", + "decimals": 18, + "name": "Meg4mint", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x0ede75b5f548e0d37f494368f4fa4982b6d0630a.png", + "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0xd05728038681bcc79b2d5aeb4d9b002e66c93a40": { + "address": "0xd05728038681bcc79b2d5aeb4d9b002e66c93a40", + "symbol": "MRETH", + "decimals": 18, + "name": "Eigenpie rETH", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xd05728038681bcc79b2d5aeb4d9b002e66c93a40.png", + "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0xa0769f7a8fc65e47de93797b4e21c073c117fc80": { + "address": "0xa0769f7a8fc65e47de93797b4e21c073c117fc80", + "symbol": "EUTBL", + "decimals": 5, + "name": "Spiko EU T Bills Money Market Fund", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xa0769f7a8fc65e47de93797b4e21c073c117fc80.png", + "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0x879054273cb2dad631980fa4efe6d25eefe08aa4": { + "address": "0x879054273cb2dad631980fa4efe6d25eefe08aa4", + "symbol": "MSFRXETH", + "decimals": 18, + "name": "Eigenpie frxETH", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x879054273cb2dad631980fa4efe6d25eefe08aa4.png", + "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0x556d4f40982cb95e0714989e0c229c42be8b1499": { + "address": "0x556d4f40982cb95e0714989e0c229c42be8b1499", + "symbol": "GLTM", + "decimals": 18, + "name": "Golteum", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x556d4f40982cb95e0714989e0c229c42be8b1499.png", + "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0xc97232527b62efb0d8ed38cf3ea103a6cca4037e": { + "address": "0xc97232527b62efb0d8ed38cf3ea103a6cca4037e", + "symbol": "LP-YCRV", + "decimals": 18, + "name": "LP Yearn CRV Vault", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xc97232527b62efb0d8ed38cf3ea103a6cca4037e.png", + "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0xca30c93b02514f86d5c86a6e375e3a330b435fb5": { + "address": "0xca30c93b02514f86d5c86a6e375e3a330b435fb5", + "symbol": "BIB01", + "decimals": 18, + "name": "Backed IB01 Treasury Bond 0 1yr", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xca30c93b02514f86d5c86a6e375e3a330b435fb5.png", + "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0x244517dc59943e8cdfbd424bdb3262c5f04a1387": { + "address": "0x244517dc59943e8cdfbd424bdb3262c5f04a1387", + "symbol": "FDAI", + "decimals": 6, + "name": "Fluid DAI", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x244517dc59943e8cdfbd424bdb3262c5f04a1387.png", + "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0x0b319db00d07c8fadfaaef13c910141a5da0aa8f": { + "address": "0x0b319db00d07c8fadfaaef13c910141a5da0aa8f", + "symbol": "FTUSD", + "decimals": 18, + "name": "Fluid TUSD", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x0b319db00d07c8fadfaaef13c910141a5da0aa8f.png", + "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0x63898b3b6ef3d39332082178656e9862bee45c57": { + "address": "0x63898b3b6ef3d39332082178656e9862bee45c57", + "symbol": "XOGN", + "decimals": 18, + "name": "Staked OGN", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x63898b3b6ef3d39332082178656e9862bee45c57.png", + "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0xf9902edfca4f49dcaebc335c73aebd82c79c2886": { + "address": "0xf9902edfca4f49dcaebc335c73aebd82c79c2886", + "symbol": "ADO", + "decimals": 18, + "name": "ADO Protocol", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xf9902edfca4f49dcaebc335c73aebd82c79c2886.png", + "aggregators": ["CoinMarketCap", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0xe2ba8693ce7474900a045757fe0efca900f6530b": { + "address": "0xe2ba8693ce7474900a045757fe0efca900f6530b", + "symbol": "FDAI", + "decimals": 8, + "name": "Flux DAI", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xe2ba8693ce7474900a045757fe0efca900f6530b.png", + "aggregators": ["CoinMarketCap", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0x36f8d0d0573ae92326827c4a82fe4ce4c244cab6": { + "address": "0x36f8d0d0573ae92326827c4a82fe4ce4c244cab6", + "symbol": "MADAI", + "decimals": 18, + "name": "Morpho Aave Dai Stablecoin", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x36f8d0d0573ae92326827c4a82fe4ce4c244cab6.png", + "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0xa5269a8e31b93ff27b887b56720a25f844db0529": { + "address": "0xa5269a8e31b93ff27b887b56720a25f844db0529", + "symbol": "MAUSDC", + "decimals": 18, + "name": "Morpho Aave USD Coin", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xa5269a8e31b93ff27b887b56720a25f844db0529.png", + "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0x1376a81fe3ee7d0e431f1ac24286b00f3ccf44e7": { + "address": "0x1376a81fe3ee7d0e431f1ac24286b00f3ccf44e7", + "symbol": "WELLE", + "decimals": 18, + "name": "Welle", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x1376a81fe3ee7d0e431f1ac24286b00f3ccf44e7.png", + "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0x03ee5026c07d85ff8ae791370dd0f4c1ae6c97fc": { + "address": "0x03ee5026c07d85ff8ae791370dd0f4c1ae6c97fc", + "symbol": "OXL", + "decimals": 18, + "name": "0x Leverage", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x03ee5026c07d85ff8ae791370dd0f4c1ae6c97fc.png", + "aggregators": ["CoinMarketCap", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0x1c91d9482c4802315e617267bb3ef50c0aa15c41": { + "address": "0x1c91d9482c4802315e617267bb3ef50c0aa15c41", + "symbol": "SDUSD", + "decimals": 18, + "name": "Davos Protocol Staked DUSD", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x1c91d9482c4802315e617267bb3ef50c0aa15c41.png", + "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0xa0d3707c569ff8c87fa923d3823ec5d81c98be78": { + "address": "0xa0d3707c569ff8c87fa923d3823ec5d81c98be78", + "symbol": "IETHV2", + "decimals": 18, + "name": "Instadapp ETH v2", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xa0d3707c569ff8c87fa923d3823ec5d81c98be78.png", + "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0x970a341b4e311a5c7248dc9c3d8d4f35fedfa73e": { + "address": "0x970a341b4e311a5c7248dc9c3d8d4f35fedfa73e", + "symbol": "HLS", + "decimals": 18, + "name": "HLS", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x970a341b4e311a5c7248dc9c3d8d4f35fedfa73e.png", + "aggregators": ["CoinMarketCap", "LiFi", "Rubic", "Rango"], + "occurrences": 4 + }, + "0x2c2f0ffbfa1b8b9c85400f1726e1bc0892e63d9f": { + "address": "0x2c2f0ffbfa1b8b9c85400f1726e1bc0892e63d9f", + "symbol": "RFSTETH", + "decimals": 18, + "name": "Return Finance Lido stETH", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x2c2f0ffbfa1b8b9c85400f1726e1bc0892e63d9f.png", + "aggregators": ["CoinGecko", "Rubic", "Sonarwatch"], + "occurrences": 3 + }, + "0x4b6d20acfc764ef6b60f0339e7cbad83284e7d6e": { + "address": "0x4b6d20acfc764ef6b60f0339e7cbad83284e7d6e", + "symbol": "YBTC", + "decimals": 8, + "name": "pSTAKE Staked Bitcoin", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x4b6d20acfc764ef6b60f0339e7cbad83284e7d6e.png", + "aggregators": ["CoinGecko", "Rubic", "Sonarwatch"], + "occurrences": 3 + }, + "0x571042b7138ee957a96a6820fce79c48fe2da816": { + "address": "0x571042b7138ee957a96a6820fce79c48fe2da816", + "symbol": "ESLBR", + "decimals": 18, + "name": "Escrowed LBR", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x571042b7138ee957a96a6820fce79c48fe2da816.png", + "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0x0af0e83d064f160376303ac67dd9a7971af88d4c": { + "address": "0x0af0e83d064f160376303ac67dd9a7971af88d4c", + "symbol": "MESLBR", + "decimals": 18, + "name": "Match Finance esLBR", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x0af0e83d064f160376303ac67dd9a7971af88d4c.png", + "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0xd9788f3931ede4d5018184e198699dc6d66c1915": { + "address": "0xd9788f3931ede4d5018184e198699dc6d66c1915", + "symbol": "YVAAVE", + "decimals": 18, + "name": "Aave yVault", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xd9788f3931ede4d5018184e198699dc6d66c1915.png", + "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0x4a3fe75762017db0ed73a71c9a06db7768db5e66": { + "address": "0x4a3fe75762017db0ed73a71c9a06db7768db5e66", + "symbol": "YVCOMP", + "decimals": 18, + "name": "COMP yVault", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x4a3fe75762017db0ed73a71c9a06db7768db5e66.png", + "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0x3b27f92c0e212c671ea351827edf93db27cc0c65": { + "address": "0x3b27f92c0e212c671ea351827edf93db27cc0c65", + "symbol": "YVUSDT", + "decimals": 6, + "name": "USDT yVault", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x3b27f92c0e212c671ea351827edf93db27cc0c65.png", + "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0xfbeb78a723b8087fd2ea7ef1afec93d35e8bed42": { + "address": "0xfbeb78a723b8087fd2ea7ef1afec93d35e8bed42", + "symbol": "YVUNI", + "decimals": 18, + "name": "UNI yVault", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xfbeb78a723b8087fd2ea7ef1afec93d35e8bed42.png", + "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0x8e0b3e3cb4468b6aa07a64e69deb72aea8eddc6f": { + "address": "0x8e0b3e3cb4468b6aa07a64e69deb72aea8eddc6f", + "symbol": "SANJI", + "decimals": 18, + "name": "Sanji", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x8e0b3e3cb4468b6aa07a64e69deb72aea8eddc6f.png", + "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0x5ac83bfbfcebb3397a40fd259dbe7a4be04237d3": { + "address": "0x5ac83bfbfcebb3397a40fd259dbe7a4be04237d3", + "symbol": "LBT", + "decimals": 18, + "name": "Lyfebloc", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x5ac83bfbfcebb3397a40fd259dbe7a4be04237d3.png", + "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0x7b67d8b4da0b17a9b98eddc21230b60c8ede69a4": { + "address": "0x7b67d8b4da0b17a9b98eddc21230b60c8ede69a4", + "symbol": "ZULU", + "decimals": 18, + "name": "Zulu Network", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x7b67d8b4da0b17a9b98eddc21230b60c8ede69a4.png", + "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0x48a612a6da945205a221e94bb9f40b0550cd2c4e": { + "address": "0x48a612a6da945205a221e94bb9f40b0550cd2c4e", + "symbol": "STTIA", + "decimals": 6, + "name": "Bridged stTIA Hyperlane", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x48a612a6da945205a221e94bb9f40b0550cd2c4e.png", + "aggregators": ["CoinGecko", "Rubic", "Sonarwatch"], + "occurrences": 3 + }, + "0xafe7131a57e44f832cb2de78ade38cad644aac2f": { + "address": "0xafe7131a57e44f832cb2de78ade38cad644aac2f", + "symbol": "MAUSDT", + "decimals": 18, + "name": "Morpho Aave Tether USD", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xafe7131a57e44f832cb2de78ade38cad644aac2f.png", + "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0xc8020985a6b30773d866cbef65a7a11f96773413": { + "address": "0xc8020985a6b30773d866cbef65a7a11f96773413", + "symbol": "ENVI", + "decimals": 18, + "name": "Envi Coin", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xc8020985a6b30773d866cbef65a7a11f96773413.png", + "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0x65278f702019078e9ab196c0da0a6ee55e7248b7": { + "address": "0x65278f702019078e9ab196c0da0a6ee55e7248b7", + "symbol": "DIONE", + "decimals": 18, + "name": "Wrapped Dione", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x65278f702019078e9ab196c0da0a6ee55e7248b7.png", + "aggregators": ["CoinMarketCap", "Socket", "Rubic", "Rango"], + "occurrences": 4 + }, + "0x9dc7094530cb1bcf5442c3b9389ee386738a190c": { + "address": "0x9dc7094530cb1bcf5442c3b9389ee386738a190c", + "symbol": "MACRV", + "decimals": 18, + "name": "Morpho Aave Curve DAO Token", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x9dc7094530cb1bcf5442c3b9389ee386738a190c.png", + "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0x2047ab3072b52561596ce5e0131bdbb7c848538d": { + "address": "0x2047ab3072b52561596ce5e0131bdbb7c848538d", + "symbol": "BORED", + "decimals": 9, + "name": "Bored Token", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x2047ab3072b52561596ce5e0131bdbb7c848538d.png", + "aggregators": ["CoinMarketCap", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0xbbb32f99e6f2cb29337eebaa43c5069386de6e6c": { + "address": "0xbbb32f99e6f2cb29337eebaa43c5069386de6e6c", + "symbol": "PT", + "decimals": 18, + "name": "Phemex Token", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xbbb32f99e6f2cb29337eebaa43c5069386de6e6c.png", + "aggregators": ["CoinMarketCap", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0xab5eb14c09d416f0ac63661e57edb7aecdb9befa": { + "address": "0xab5eb14c09d416f0ac63661e57edb7aecdb9befa", + "symbol": "MSUSD", + "decimals": 18, + "name": "MSUSD", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xab5eb14c09d416f0ac63661e57edb7aecdb9befa.png", + "aggregators": ["CoinGecko", "LiFi", "Rubic", "Rango"], + "occurrences": 4 + }, + "0x64351fc9810adad17a690e4e1717df5e7e085160": { + "address": "0x64351fc9810adad17a690e4e1717df5e7e085160", + "symbol": "MSETH", + "decimals": 18, + "name": "MSETH", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x64351fc9810adad17a690e4e1717df5e7e085160.png", + "aggregators": ["CoinGecko", "LiFi", "Rubic", "Rango"], + "occurrences": 4 + }, + "0x94314a14df63779c99c0764a30e0cd22fa78fc0e": { + "address": "0x94314a14df63779c99c0764a30e0cd22fa78fc0e", + "symbol": "EPIC", + "decimals": 18, + "name": "Epic Chain", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x94314a14df63779c99c0764a30e0cd22fa78fc0e.png", + "aggregators": ["Metamask", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0xda5fab7affc6dffd24d60e23153d241a3d9f9603": { + "address": "0xda5fab7affc6dffd24d60e23153d241a3d9f9603", + "symbol": "CRYPTIQ", + "decimals": 18, + "name": "Cryptiq browser", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xda5fab7affc6dffd24d60e23153d241a3d9f9603.png", + "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0xe0c28a5a2da3920946e8bf821f61f7bea311048b": { + "address": "0xe0c28a5a2da3920946e8bf821f61f7bea311048b", + "symbol": "KETH", + "decimals": 18, + "name": "Stakehouse kETH", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xe0c28a5a2da3920946e8bf821f61f7bea311048b.png", + "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0xecf3672a6d2147e2a77f07069fb48d8cf6f6fbf9": { + "address": "0xecf3672a6d2147e2a77f07069fb48d8cf6f6fbf9", + "symbol": "INMETH", + "decimals": 18, + "name": "Inception mETH", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xecf3672a6d2147e2a77f07069fb48d8cf6f6fbf9.png", + "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0xfd07fd5ebea6f24888a397997e262179bf494336": { + "address": "0xfd07fd5ebea6f24888a397997e262179bf494336", + "symbol": "INOSETH", + "decimals": 18, + "name": "Inception osETH", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xfd07fd5ebea6f24888a397997e262179bf494336.png", + "aggregators": ["CoinGecko", "Rubic", "Sonarwatch"], + "occurrences": 3 + }, + "0xf31826269ac7f452b1274cc884812f426c18ddca": { + "address": "0xf31826269ac7f452b1274cc884812f426c18ddca", + "symbol": "MILK", + "decimals": 18, + "name": "MILK Coin", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xf31826269ac7f452b1274cc884812f426c18ddca.png", + "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0x3127294f1fd3c097ef31e54301069346b29d0209": { + "address": "0x3127294f1fd3c097ef31e54301069346b29d0209", + "symbol": "BLAST", + "decimals": 18, + "name": "Blast Inu", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x3127294f1fd3c097ef31e54301069346b29d0209.png", + "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0x27cf096db452425c51daa356e7d9c574c75e8737": { + "address": "0x27cf096db452425c51daa356e7d9c574c75e8737", + "symbol": "PTC", + "decimals": 18, + "name": "PATIC", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x27cf096db452425c51daa356e7d9c574c75e8737.png", + "aggregators": ["CoinMarketCap", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0x0c08638473cafbca3beb113616a1871f4bfad4f9": { + "address": "0x0c08638473cafbca3beb113616a1871f4bfad4f9", + "symbol": "ZOO", + "decimals": 18, + "name": "ZooCoin", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x0c08638473cafbca3beb113616a1871f4bfad4f9.png", + "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0xb446566d6d644249d5d82aab5fea8a5b7da3f691": { + "address": "0xb446566d6d644249d5d82aab5fea8a5b7da3f691", + "symbol": "TBOS", + "decimals": 0, + "name": "Aktionariat TBo c o Comon Accelerator H", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xb446566d6d644249d5d82aab5fea8a5b7da3f691.png", + "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0x94b888e11a9e960a9c3b3528eb6ac807b27ca62e": { + "address": "0x94b888e11a9e960a9c3b3528eb6ac807b27ca62e", + "symbol": "INLSETH", + "decimals": 18, + "name": "Inception lsETH", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x94b888e11a9e960a9c3b3528eb6ac807b27ca62e.png", + "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0xe1a70b24e109f7a8b39806c554e123efc6769e91": { + "address": "0xe1a70b24e109f7a8b39806c554e123efc6769e91", + "symbol": "LSDAI", + "decimals": 18, + "name": "Liquid Savings DAI", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xe1a70b24e109f7a8b39806c554e123efc6769e91.png", + "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0x1a44e35d5451e0b78621a1b3e7a53dfaa306b1d0": { + "address": "0x1a44e35d5451e0b78621a1b3e7a53dfaa306b1d0", + "symbol": "B-BAOETH-ETH-BPT", + "decimals": 18, + "name": "baoETH ETH StablePool", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x1a44e35d5451e0b78621a1b3e7a53dfaa306b1d0.png", + "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0xa9ad6830180f9c150349f2cecadd710586e35cb7": { + "address": "0xa9ad6830180f9c150349f2cecadd710586e35cb7", + "symbol": "ETHS", + "decimals": 18, + "name": "ETH Stable", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xa9ad6830180f9c150349f2cecadd710586e35cb7.png", + "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0xacb3604aadf26e6c0bb8c720420380629a328d2c": { + "address": "0xacb3604aadf26e6c0bb8c720420380629a328d2c", + "symbol": "XEETH", + "decimals": 18, + "name": "Leveraged eETH", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xacb3604aadf26e6c0bb8c720420380629a328d2c.png", + "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0x9baa12a9e3b9dc355f162082762f95626367d087": { + "address": "0x9baa12a9e3b9dc355f162082762f95626367d087", + "symbol": "HANDZ", + "decimals": 18, + "name": "Handz of Gods", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x9baa12a9e3b9dc355f162082762f95626367d087.png", + "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0x2e5a5af7ee900d34bcfb70c47023bf1d6be35cf5": { + "address": "0x2e5a5af7ee900d34bcfb70c47023bf1d6be35cf5", + "symbol": "XEZETH", + "decimals": 18, + "name": "Leveraged ezETH", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x2e5a5af7ee900d34bcfb70c47023bf1d6be35cf5.png", + "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0x80795a7bb55f003b1572411a271e31f73e03dd73": { + "address": "0x80795a7bb55f003b1572411a271e31f73e03dd73", + "symbol": "DAUMEN", + "decimals": 9, + "name": "daumenfrosch", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x80795a7bb55f003b1572411a271e31f73e03dd73.png", + "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0x9d5963ba32e877871dff3e2e697283dc64066271": { + "address": "0x9d5963ba32e877871dff3e2e697283dc64066271", + "symbol": "EDC", + "decimals": 18, + "name": "Edcoin", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x9d5963ba32e877871dff3e2e697283dc64066271.png", + "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0xbfabde619ed5c4311811cf422562709710db587d": { + "address": "0xbfabde619ed5c4311811cf422562709710db587d", + "symbol": "DIVA", + "decimals": 18, + "name": "Diva Staking", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xbfabde619ed5c4311811cf422562709710db587d.png", + "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0x1b66474c8eca3827f16202907f41f63785579716": { + "address": "0x1b66474c8eca3827f16202907f41f63785579716", + "symbol": "WXT", + "decimals": 6, + "name": "WEEX Token", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x1b66474c8eca3827f16202907f41f63785579716.png", + "aggregators": ["CoinMarketCap", "Rubic", "Sonarwatch"], + "occurrences": 3 + }, + "0x47b751e318fe7e9769f4b56fabbffb05d530a88c": { + "address": "0x47b751e318fe7e9769f4b56fabbffb05d530a88c", + "symbol": "PMW", + "decimals": 18, + "name": "Photon Milky Way", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x47b751e318fe7e9769f4b56fabbffb05d530a88c.png", + "aggregators": ["CoinGecko", "Rubic", "Sonarwatch"], + "occurrences": 3 + }, + "0x1903be033d3e436dd79a8cf9030675bcf97ab589": { + "address": "0x1903be033d3e436dd79a8cf9030675bcf97ab589", + "symbol": "BJK", + "decimals": 6, + "name": "Be ikta", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x1903be033d3e436dd79a8cf9030675bcf97ab589.png", + "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0x32fd949e1953b21b7a8232ef4259cd708b4e0847": { + "address": "0x32fd949e1953b21b7a8232ef4259cd708b4e0847", + "symbol": "HBT", + "decimals": 18, + "name": "HyperBC", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x32fd949e1953b21b7a8232ef4259cd708b4e0847.png", + "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0x653aab62056b92641116d63927de6141d780e596": { + "address": "0x653aab62056b92641116d63927de6141d780e596", + "symbol": "ACHF", + "decimals": 18, + "name": "Anchored Coins ACHF", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x653aab62056b92641116d63927de6141d780e596.png", + "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0xd09124e8a1e3d620e8807ad1d968021a5495cee8": { + "address": "0xd09124e8a1e3d620e8807ad1d968021a5495cee8", + "symbol": "MCBETH", + "decimals": 18, + "name": "Eigenpie cbETH", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xd09124e8a1e3d620e8807ad1d968021a5495cee8.png", + "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0x1236ea13c7339287cd00ab196aaa8217006b04dc": { + "address": "0x1236ea13c7339287cd00ab196aaa8217006b04dc", + "symbol": "EPL", + "decimals": 18, + "name": "Epic League", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x1236ea13c7339287cd00ab196aaa8217006b04dc.png", + "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0x583019ff0f430721ada9cfb4fac8f06ca104d0b4": { + "address": "0x583019ff0f430721ada9cfb4fac8f06ca104d0b4", + "symbol": "ST-YETH", + "decimals": 18, + "name": "Staked Yearn Ether", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x583019ff0f430721ada9cfb4fac8f06ca104d0b4.png", + "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0x8f0f56472c3e5730b1ea2f444e7829288da261e6": { + "address": "0x8f0f56472c3e5730b1ea2f444e7829288da261e6", + "symbol": "RMAV", + "decimals": 18, + "name": "Rogue MAV", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x8f0f56472c3e5730b1ea2f444e7829288da261e6.png", + "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0x201332bd45c8628d814f870bfb584b385a7c351e": { + "address": "0x201332bd45c8628d814f870bfb584b385a7c351e", + "symbol": "ASTRA", + "decimals": 18, + "name": "Astra Protocol", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x201332bd45c8628d814f870bfb584b385a7c351e.png", + "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0xcac1277aa6ecb68b84fad070910d37029e810b79": { + "address": "0xcac1277aa6ecb68b84fad070910d37029e810b79", + "symbol": "BDT", + "decimals": 18, + "name": "BitDelta", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xcac1277aa6ecb68b84fad070910d37029e810b79.png", + "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0x7a8946eda77817126ffe301249f6dc4c7df293c3": { + "address": "0x7a8946eda77817126ffe301249f6dc4c7df293c3", + "symbol": "DYL", + "decimals": 18, + "name": "Dyl", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x7a8946eda77817126ffe301249f6dc4c7df293c3.png", + "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0x7df18e4efd6e6f73cfb462937dac40fe42533016": { + "address": "0x7df18e4efd6e6f73cfb462937dac40fe42533016", + "symbol": "ZKITTY", + "decimals": 18, + "name": "ZKitty Bot", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x7df18e4efd6e6f73cfb462937dac40fe42533016.png", + "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0x4e1a609ec87cf6477613f515f6eb64ef2d31089a": { + "address": "0x4e1a609ec87cf6477613f515f6eb64ef2d31089a", + "symbol": "DGCS", + "decimals": 0, + "name": "Aktionariat Green Consensus AG Tokenize", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x4e1a609ec87cf6477613f515f6eb64ef2d31089a.png", + "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0x183395dbd0b5e93323a7286d1973150697fffcb3": { + "address": "0x183395dbd0b5e93323a7286d1973150697fffcb3", + "symbol": "CVXFXN", + "decimals": 18, + "name": "Convex FXN", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x183395dbd0b5e93323a7286d1973150697fffcb3.png", + "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0x9a1722b1f4a1bb2f271211ade8e851afc54f77e5": { + "address": "0x9a1722b1f4a1bb2f271211ade8e851afc54f77e5", + "symbol": "METHX", + "decimals": 18, + "name": "Eigenpie ETHx", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x9a1722b1f4a1bb2f271211ade8e851afc54f77e5.png", + "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0xacdbfcbd4d6d4e9fe72c3ba4280d728ab2ace30f": { + "address": "0xacdbfcbd4d6d4e9fe72c3ba4280d728ab2ace30f", + "symbol": "TWB", + "decimals": 18, + "name": "TargetWatch Bot", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xacdbfcbd4d6d4e9fe72c3ba4280d728ab2ace30f.png", + "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0xbf40440703a3f7092b2e73c2f7868727275dbbda": { + "address": "0xbf40440703a3f7092b2e73c2f7868727275dbbda", + "symbol": "KEEP", + "decimals": 18, + "name": "Keep Finance", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xbf40440703a3f7092b2e73c2f7868727275dbbda.png", + "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0xe90ce7764d8401d19ed3733a211bd3b06c631bc0": { + "address": "0xe90ce7764d8401d19ed3733a211bd3b06c631bc0", + "symbol": "POD", + "decimals": 18, + "name": "The Other Party", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xe90ce7764d8401d19ed3733a211bd3b06c631bc0.png", + "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0x5a4a503f4745c06a07e29d9a9dd88ab52f7a505b": { + "address": "0x5a4a503f4745c06a07e29d9a9dd88ab52f7a505b", + "symbol": "MANKRETH", + "decimals": 18, + "name": "Eigenpie ankrETH", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x5a4a503f4745c06a07e29d9a9dd88ab52f7a505b.png", + "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0x310718274509a38cc5559a1ff48c5edbe75a382b": { + "address": "0x310718274509a38cc5559a1ff48c5edbe75a382b", + "symbol": "MOETH", + "decimals": 18, + "name": "Eigenpie oETH", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x310718274509a38cc5559a1ff48c5edbe75a382b.png", + "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0x1d00e86748573c322f4cc41518aa0e77bd912eb4": { + "address": "0x1d00e86748573c322f4cc41518aa0e77bd912eb4", + "symbol": "USDE", + "decimals": 18, + "name": "Ethereum Reserve Dollar USDE", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x1d00e86748573c322f4cc41518aa0e77bd912eb4.png", + "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0xec363faa5c4dd0e51f3d9b5d0101263760e7cdeb": { + "address": "0xec363faa5c4dd0e51f3d9b5d0101263760e7cdeb", + "symbol": "IWBTC", + "decimals": 8, + "name": "Instadapp WBTC", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xec363faa5c4dd0e51f3d9b5d0101263760e7cdeb.png", + "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0x40a9d39aa50871df092538c5999b107f34409061": { + "address": "0x40a9d39aa50871df092538c5999b107f34409061", + "symbol": "IDAI", + "decimals": 18, + "name": "Instadapp DAI", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x40a9d39aa50871df092538c5999b107f34409061.png", + "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0xedb73d4ed90be7a49d06d0d940055e6d181d22fa": { + "address": "0xedb73d4ed90be7a49d06d0d940055e6d181d22fa", + "symbol": "OBLUE", + "decimals": 18, + "name": "Blueprint oBLUE", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xedb73d4ed90be7a49d06d0d940055e6d181d22fa.png", + "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0x8d9d725aaa3f6236763ff548051657a342c37623": { + "address": "0x8d9d725aaa3f6236763ff548051657a342c37623", + "symbol": "NED", + "decimals": 18, + "name": "NED", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x8d9d725aaa3f6236763ff548051657a342c37623.png", + "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0x218de5e6324c5351c3a2bf0c40d76f585b8de04d": { + "address": "0x218de5e6324c5351c3a2bf0c40d76f585b8de04d", + "symbol": "STPETH", + "decimals": 18, + "name": "Stake Together", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x218de5e6324c5351c3a2bf0c40d76f585b8de04d.png", + "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0x619e398858a3110df4d89056a15a40338a01e65f": { + "address": "0x619e398858a3110df4d89056a15a40338a01e65f", + "symbol": "GARBAGE", + "decimals": 18, + "name": "Garbage", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x619e398858a3110df4d89056a15a40338a01e65f.png", + "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0xa1f3aca66403d29b909605040c30ae1f1245d14c": { + "address": "0xa1f3aca66403d29b909605040c30ae1f1245d14c", + "symbol": "TFBILL", + "decimals": 6, + "name": "Adapt3r Digital Treasury Bill Fund", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xa1f3aca66403d29b909605040c30ae1f1245d14c.png", + "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0xe138fda441fc31b36171122397a8a11d6cd2c479": { + "address": "0xe138fda441fc31b36171122397a8a11d6cd2c479", + "symbol": "GTC", + "decimals": 0, + "name": "Global Trust Coin", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xe138fda441fc31b36171122397a8a11d6cd2c479.png", + "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0xd69a0a9682f679f50e34de40105a93bebb2ff43d": { + "address": "0xd69a0a9682f679f50e34de40105a93bebb2ff43d", + "symbol": "MACKE", + "decimals": 18, + "name": "Mackerel", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xd69a0a9682f679f50e34de40105a93bebb2ff43d.png", + "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0x149cac67f1cd5d80651e7c9bb359ec285d821a05": { + "address": "0x149cac67f1cd5d80651e7c9bb359ec285d821a05", + "symbol": "MINTY", + "decimals": 18, + "name": "Minterest", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x149cac67f1cd5d80651e7c9bb359ec285d821a05.png", + "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0x2fc246aa66f0da5bb1368f688548ecbbe9bdee5d": { + "address": "0x2fc246aa66f0da5bb1368f688548ecbbe9bdee5d", + "symbol": "TEMCO", + "decimals": 18, + "name": "TEMCO", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x2fc246aa66f0da5bb1368f688548ecbbe9bdee5d.png", + "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0x4b7265d153886a7dc717e815862acde6ff7b5bc8": { + "address": "0x4b7265d153886a7dc717e815862acde6ff7b5bc8", + "symbol": "DENCH", + "decimals": 18, + "name": "DENCHCOIN", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x4b7265d153886a7dc717e815862acde6ff7b5bc8.png", + "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0xc71ea051a5f82c67adcf634c36ffe6334793d24c": { + "address": "0xc71ea051a5f82c67adcf634c36ffe6334793d24c", + "symbol": "WAETHLIDOGHO", + "decimals": 18, + "name": "WAETHLIDOGHO", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xc71ea051a5f82c67adcf634c36ffe6334793d24c.png", + "aggregators": ["CoinGecko", "1inch", "Rubic", "Rango"], + "occurrences": 4 + }, + "0x352a3144e88d23427993938cfd780291d95ef091": { + "address": "0x352a3144e88d23427993938cfd780291d95ef091", + "symbol": "MOSETH", + "decimals": 18, + "name": "Eigenpie OsETH", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x352a3144e88d23427993938cfd780291d95ef091.png", + "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0x9f23562ec47249761222ef7ac02b327a8c45ba7d": { + "address": "0x9f23562ec47249761222ef7ac02b327a8c45ba7d", + "symbol": "XWBTC", + "decimals": 18, + "name": "Leverage WBTC", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x9f23562ec47249761222ef7ac02b327a8c45ba7d.png", + "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0xa939c02dba8f237b40d2a3e96ad4252b00bb8a72": { + "address": "0xa939c02dba8f237b40d2a3e96ad4252b00bb8a72", + "symbol": "MLSETH", + "decimals": 18, + "name": "Eigenpie LsETH", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xa939c02dba8f237b40d2a3e96ad4252b00bb8a72.png", + "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0x93109af5638be68ed2d0e094f618777ff1051d28": { + "address": "0x93109af5638be68ed2d0e094f618777ff1051d28", + "symbol": "UN", + "decimals": 18, + "name": "UNIT DAO", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x93109af5638be68ed2d0e094f618777ff1051d28.png", + "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0x64d3c2817a22b78cacabe4baa2525065ebdf4012": { + "address": "0x64d3c2817a22b78cacabe4baa2525065ebdf4012", + "symbol": "SHARX", + "decimals": 18, + "name": "RaidSharksBot", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x64d3c2817a22b78cacabe4baa2525065ebdf4012.png", + "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0xb80a1d87654bef7ad8eb6bbda3d2309e31d4e598": { + "address": "0xb80a1d87654bef7ad8eb6bbda3d2309e31d4e598", + "symbol": "21SOL", + "decimals": 9, + "name": "21 co Wrapped SOL", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xb80a1d87654bef7ad8eb6bbda3d2309e31d4e598.png", + "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0x1be9d03bfc211d83cff3abdb94a75f9db46e1334": { + "address": "0x1be9d03bfc211d83cff3abdb94a75f9db46e1334", + "symbol": "21BNB", + "decimals": 8, + "name": "21 co Wrapped BNB", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x1be9d03bfc211d83cff3abdb94a75f9db46e1334.png", + "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0x399508a43d7e2b4451cd344633108b4d84b33b03": { + "address": "0x399508a43d7e2b4451cd344633108b4d84b33b03", + "symbol": "21AVAX", + "decimals": 18, + "name": "21 co Wrapped AVAX", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x399508a43d7e2b4451cd344633108b4d84b33b03.png", + "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0xff4927e04c6a01868284f5c3fb9cba7f7ca4aec0": { + "address": "0xff4927e04c6a01868284f5c3fb9cba7f7ca4aec0", + "symbol": "21BCH", + "decimals": 8, + "name": "21 co Wrapped BCH", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xff4927e04c6a01868284f5c3fb9cba7f7ca4aec0.png", + "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0x6d0bb9b6ce385e28ea4ebb7d76dcb3a1aaf7bc4b": { + "address": "0x6d0bb9b6ce385e28ea4ebb7d76dcb3a1aaf7bc4b", + "symbol": "CRET", + "decimals": 18, + "name": "CREAT OR", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x6d0bb9b6ce385e28ea4ebb7d76dcb3a1aaf7bc4b.png", + "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0xe304283c3e60cefaf7ea514007cf4e8fdc3d869d": { + "address": "0xe304283c3e60cefaf7ea514007cf4e8fdc3d869d", + "symbol": "GEC", + "decimals": 18, + "name": "Gecoin", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xe304283c3e60cefaf7ea514007cf4e8fdc3d869d.png", + "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0x5a097b014c547718e79030a077a91ae37679eff5": { + "address": "0x5a097b014c547718e79030a077a91ae37679eff5", + "symbol": "XSTETH", + "decimals": 18, + "name": "Leveraged stETH", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x5a097b014c547718e79030a077a91ae37679eff5.png", + "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0x0e6641e62baa87d77e01ab1c7e9d2f323f26942b": { + "address": "0x0e6641e62baa87d77e01ab1c7e9d2f323f26942b", + "symbol": "ASET", + "decimals": 18, + "name": "AssetLink", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x0e6641e62baa87d77e01ab1c7e9d2f323f26942b.png", + "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0xa89e2871a850e0e6fd8f0018ec1fc62fa75440d4": { + "address": "0xa89e2871a850e0e6fd8f0018ec1fc62fa75440d4", + "symbol": "RTF", + "decimals": 18, + "name": "Ready to Fight", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xa89e2871a850e0e6fd8f0018ec1fc62fa75440d4.png", + "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0x5ce6f2c0e2a1b4540894f286254bf13b1110d240": { + "address": "0x5ce6f2c0e2a1b4540894f286254bf13b1110d240", + "symbol": "BRX", + "decimals": 18, + "name": "Bricks", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x5ce6f2c0e2a1b4540894f286254bf13b1110d240.png", + "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0xd0a265a32d0211a7f61f11de014b854f7ce716f8": { + "address": "0xd0a265a32d0211a7f61f11de014b854f7ce716f8", + "symbol": "GLTRON", + "decimals": 18, + "name": "abrdn Physical Precious Metals Basket Shares ETF (Ondo Tokenized)", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xd0a265a32d0211a7f61f11de014b854f7ce716f8.png", + "aggregators": ["CoinGecko", "Rubic", "Rango", "Ondo"], + "occurrences": 4, + "rwaData": { + "market": { + "nextOpen": "2026-05-18T20:01:00.000Z", + "nextClose": "2026-05-18T19:59:00.000Z" + }, + "nextPause": { + "start": null, + "end": null + }, + "ticker": "GLTR", + "instrumentType": "stock" + } + }, + "0x1b468d5535ed7c19ce42f0073db7fdf441028131": { + "address": "0x1b468d5535ed7c19ce42f0073db7fdf441028131", + "symbol": "ALBON", + "decimals": 18, + "name": "Albemarle (Ondo Tokenized)", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x1b468d5535ed7c19ce42f0073db7fdf441028131.png", + "aggregators": ["CoinGecko", "Rubic", "Rango", "Ondo"], + "occurrences": 4, + "rwaData": { + "market": { + "nextOpen": "2026-05-18T20:01:00.000Z", + "nextClose": "2026-05-18T19:59:00.000Z" + }, + "nextPause": { + "start": "2026-06-11T23:52:00.000Z", + "end": "2026-06-12T00:12:00.000Z" + }, + "ticker": "ALB", + "instrumentType": "stock" + } + }, + "0xbeef8e0982874e0292e6c5751c5a4092b3e1beef": { + "address": "0xbeef8e0982874e0292e6c5751c5a4092b3e1beef", + "symbol": "MOOBIFI", + "decimals": 18, + "name": "Staked BIFI", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xbeef8e0982874e0292e6c5751c5a4092b3e1beef.png", + "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0xd2a530170d71a9cfe1651fb468e2b98f7ed7456b": { + "address": "0xd2a530170d71a9cfe1651fb468e2b98f7ed7456b", + "symbol": "AUDF", + "decimals": 6, + "name": "Forte AUD", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xd2a530170d71a9cfe1651fb468e2b98f7ed7456b.png", + "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0x318dcb4f07c3e6ccecc12a252100fb3bf76eeb02": { + "address": "0x318dcb4f07c3e6ccecc12a252100fb3bf76eeb02", + "symbol": "APLDON", + "decimals": 18, + "name": "Applied Digital (Ondo Tokenized)", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x318dcb4f07c3e6ccecc12a252100fb3bf76eeb02.png", + "aggregators": ["CoinGecko", "Rubic", "Rango", "Ondo"], + "occurrences": 4, + "rwaData": { + "market": { + "nextOpen": "2026-05-18T20:01:00.000Z", + "nextClose": "2026-05-18T19:59:00.000Z" + }, + "nextPause": { + "start": null, + "end": null + }, + "ticker": "APLD", + "instrumentType": "stock" + } + }, + "0x0d1fa4e1e3719945899ef7b02840627df46af44a": { + "address": "0x0d1fa4e1e3719945899ef7b02840627df46af44a", + "symbol": "ASTSON", + "decimals": 18, + "name": "AST SpaceMobile (Ondo Tokenized)", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x0d1fa4e1e3719945899ef7b02840627df46af44a.png", + "aggregators": ["CoinGecko", "Rubic", "Rango", "Ondo"], + "occurrences": 4, + "rwaData": { + "market": { + "nextOpen": "2026-05-18T20:01:00.000Z", + "nextClose": "2026-05-18T19:59:00.000Z" + }, + "nextPause": { + "start": null, + "end": null + }, + "ticker": "ASTS", + "instrumentType": "stock" + } + }, + "0x70ec0f5b23404c0cd6f29ce88f4af00a0b0d895d": { + "address": "0x70ec0f5b23404c0cd6f29ce88f4af00a0b0d895d", + "symbol": "CAPRON", + "decimals": 18, + "name": "Capricor Therapeutics (Ondo Tokenized)", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x70ec0f5b23404c0cd6f29ce88f4af00a0b0d895d.png", + "aggregators": ["CoinGecko", "Rubic", "Rango", "Ondo"], + "occurrences": 4, + "rwaData": { + "market": { + "nextOpen": "2026-05-19T13:31:00.000Z", + "nextClose": "2026-05-18T19:59:00.000Z" + }, + "nextPause": { + "start": null, + "end": null + }, + "ticker": "CAPR", + "instrumentType": "stock" + } + }, + "0x2b7727076b9c9b1834a2f95b81f12eedd30db9f1": { + "address": "0x2b7727076b9c9b1834a2f95b81f12eedd30db9f1", + "symbol": "COHRON", + "decimals": 18, + "name": "Coherent (Ondo Tokenized)", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x2b7727076b9c9b1834a2f95b81f12eedd30db9f1.png", + "aggregators": ["CoinGecko", "Rubic", "Rango", "Ondo"], + "occurrences": 4, + "rwaData": { + "market": { + "nextOpen": "2026-05-18T20:01:00.000Z", + "nextClose": "2026-05-18T19:59:00.000Z" + }, + "nextPause": { + "start": null, + "end": null + }, + "ticker": "COHR", + "instrumentType": "stock" + } + }, + "0x32fb7d6e0cbeb9433772689aa4647828cc7cbba8": { + "address": "0x32fb7d6e0cbeb9433772689aa4647828cc7cbba8", + "symbol": "COVE", + "decimals": 18, + "name": "Cove DAO", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x32fb7d6e0cbeb9433772689aa4647828cc7cbba8.png", + "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0xdfddf7a69716124bc346ba556d4b9f9e74c4a8bc": { + "address": "0xdfddf7a69716124bc346ba556d4b9f9e74c4a8bc", + "symbol": "SCCN", + "decimals": 18, + "name": "Succession", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xdfddf7a69716124bc346ba556d4b9f9e74c4a8bc.png", + "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0x9b56f5ed5a94ae3266b7ff21953e6626f94008f1": { + "address": "0x9b56f5ed5a94ae3266b7ff21953e6626f94008f1", + "symbol": "ETNON", + "decimals": 18, + "name": "Eaton (Ondo Tokenized)", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x9b56f5ed5a94ae3266b7ff21953e6626f94008f1.png", + "aggregators": ["CoinGecko", "Rubic", "Rango", "Ondo"], + "occurrences": 4, + "rwaData": { + "market": { + "nextOpen": "2026-05-18T20:01:00.000Z", + "nextClose": "2026-05-18T19:59:00.000Z" + }, + "nextPause": { + "start": null, + "end": null + }, + "ticker": "ETN", + "instrumentType": "stock" + } + }, + "0xc4e6e80295154d3968519851f73f8dc1a227286f": { + "address": "0xc4e6e80295154d3968519851f73f8dc1a227286f", + "symbol": "ENLVON", + "decimals": 18, + "name": "Enlivex Therapeutics (Ondo Tokenized)", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xc4e6e80295154d3968519851f73f8dc1a227286f.png", + "aggregators": ["CoinGecko", "Rubic", "Rango", "Ondo"], + "occurrences": 4, + "rwaData": { + "market": { + "nextOpen": "2026-05-19T13:31:00.000Z", + "nextClose": "2026-05-18T19:59:00.000Z" + }, + "nextPause": { + "start": "2026-05-29T09:00:00.000Z", + "end": "2026-05-29T23:30:00.000Z" + }, + "ticker": "ENLV", + "instrumentType": "stock" + } + }, + "0xb0ed164f6e3c6a4153eeb43bf9674955a259ec45": { + "address": "0xb0ed164f6e3c6a4153eeb43bf9674955a259ec45", + "symbol": "ABE", + "decimals": 18, + "name": "Aboard", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xb0ed164f6e3c6a4153eeb43bf9674955a259ec45.png", + "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0x4f3b49ac895a29c0908c57538932967cdc8e3c80": { + "address": "0x4f3b49ac895a29c0908c57538932967cdc8e3c80", + "symbol": "ENPHON", + "decimals": 18, + "name": "Enphase Energy (Ondo Tokenized)", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x4f3b49ac895a29c0908c57538932967cdc8e3c80.png", + "aggregators": ["CoinGecko", "Rubic", "Rango", "Ondo"], + "occurrences": 4, + "rwaData": { + "market": { + "nextOpen": "2026-05-18T20:01:00.000Z", + "nextClose": "2026-05-18T19:59:00.000Z" + }, + "nextPause": { + "start": null, + "end": null + }, + "ticker": "ENPH", + "instrumentType": "stock" + } + }, + "0x185e5fa1b84f94d46ef2a33052ad39bd5f326fd8": { + "address": "0x185e5fa1b84f94d46ef2a33052ad39bd5f326fd8", + "symbol": "EXODON", + "decimals": 18, + "name": "Exodus Movement (Ondo Tokenized)", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x185e5fa1b84f94d46ef2a33052ad39bd5f326fd8.png", + "aggregators": ["CoinGecko", "Rubic", "Rango", "Ondo"], + "occurrences": 4, + "rwaData": { + "market": { + "nextOpen": "2026-05-19T13:31:00.000Z", + "nextClose": "2026-05-18T19:59:00.000Z" + }, + "nextPause": { + "start": null, + "end": null + }, + "ticker": "EXOD", + "instrumentType": "stock" + } + }, + "0x224b381cfae8ccaf2e4d32d827467c2331ce04be": { + "address": "0x224b381cfae8ccaf2e4d32d827467c2331ce04be", + "symbol": "FSOLON", + "decimals": 18, + "name": "Fidelity Solana Fund (Ondo Tokenized)", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x224b381cfae8ccaf2e4d32d827467c2331ce04be.png", + "aggregators": ["CoinGecko", "Rubic", "Rango", "Ondo"], + "occurrences": 4, + "rwaData": { + "market": { + "nextOpen": "2026-05-18T20:01:00.000Z", + "nextClose": "2026-05-18T19:59:00.000Z" + }, + "nextPause": { + "start": null, + "end": null + }, + "ticker": "FSOL", + "instrumentType": "stock" + } + }, + "0x42d6e274b8631e5289a8f853e8d1a7baeff3c8d1": { + "address": "0x42d6e274b8631e5289a8f853e8d1a7baeff3c8d1", + "symbol": "CIBRON", + "decimals": 18, + "name": "First Trust NASDAQ Cybersecurity ETF (Ondo Tokenized)", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x42d6e274b8631e5289a8f853e8d1a7baeff3c8d1.png", + "aggregators": ["CoinGecko", "Rubic", "Rango", "Ondo"], + "occurrences": 4, + "rwaData": { + "market": { + "nextOpen": "2026-05-19T00:05:00.000Z", + "nextClose": "2026-05-18T19:59:00.000Z" + }, + "nextPause": { + "start": null, + "end": null + }, + "ticker": "CIBR", + "instrumentType": "stock" + } + }, + "0x70b4082f4e3f9067db9a2aa7520c77719e8626ee": { + "address": "0x70b4082f4e3f9067db9a2aa7520c77719e8626ee", + "symbol": "FFOGON", + "decimals": 18, + "name": "Franklin Focused Growth ETF (Ondo Tokenized)", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x70b4082f4e3f9067db9a2aa7520c77719e8626ee.png", + "aggregators": ["CoinGecko", "Rubic", "Rango", "Ondo"], + "occurrences": 4, + "rwaData": { + "market": { + "nextOpen": "2026-05-19T13:31:00.000Z", + "nextClose": "2026-05-18T19:59:00.000Z" + }, + "nextPause": { + "start": null, + "end": null + }, + "ticker": "FFOG", + "instrumentType": "stock" + } + }, + "0x3261902514414a131202e792a5ef763db795e639": { + "address": "0x3261902514414a131202e792a5ef763db795e639", + "symbol": "REPX", + "decimals": 18, + "name": "RepoSwap", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x3261902514414a131202e792a5ef763db795e639.png", + "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0xf96d4b1e0a0b129e1471e88df6f1281b933bc474": { + "address": "0xf96d4b1e0a0b129e1471e88df6f1281b933bc474", + "symbol": "SPETH", + "decimals": 18, + "name": "Spectrum ETH", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xf96d4b1e0a0b129e1471e88df6f1281b933bc474.png", + "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0x37a2f8701856a78de92dbe35df2200c355eae090": { + "address": "0x37a2f8701856a78de92dbe35df2200c355eae090", + "symbol": "QNS", + "decimals": 18, + "name": "QuantoSwap", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x37a2f8701856a78de92dbe35df2200c355eae090.png", + "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0xc278041fdd8249fe4c1aad1193876857eea3d68c": { + "address": "0xc278041fdd8249fe4c1aad1193876857eea3d68c", + "symbol": "IDLETUSDYIELD", + "decimals": 18, + "name": "IdleTUSD Best Yield", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xc278041fdd8249fe4c1aad1193876857eea3d68c.png", + "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0xf52cdcd458bf455aed77751743180ec4a595fd3f": { + "address": "0xf52cdcd458bf455aed77751743180ec4a595fd3f", + "symbol": "IDLESUSDYIELD", + "decimals": 18, + "name": "IdleSUSD Yield", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xf52cdcd458bf455aed77751743180ec4a595fd3f.png", + "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0x4349929808e515936a68903f6085f5e2b143ff3d": { + "address": "0x4349929808e515936a68903f6085f5e2b143ff3d", + "symbol": "CAD", + "decimals": 18, + "name": "Caduceus Protocol", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x4349929808e515936a68903f6085f5e2b143ff3d.png", + "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0xd9b9f72d6f5cdec754243d7d3cefd5b4370af094": { + "address": "0xd9b9f72d6f5cdec754243d7d3cefd5b4370af094", + "symbol": "LGAS", + "decimals": 18, + "name": "Laser Gas", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xd9b9f72d6f5cdec754243d7d3cefd5b4370af094.png", + "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0x7d36f7d8e9220f021305b8f13414c87df688aa8b": { + "address": "0x7d36f7d8e9220f021305b8f13414c87df688aa8b", + "symbol": "SMP", + "decimals": 18, + "name": "Seamoon Protocol", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x7d36f7d8e9220f021305b8f13414c87df688aa8b.png", + "aggregators": ["CoinGecko", "Rubic", "Sonarwatch"], + "occurrences": 3 + }, + "0x5ea630e00d6ee438d3dea1556a110359acdc10a9": { + "address": "0x5ea630e00d6ee438d3dea1556a110359acdc10a9", + "symbol": "SDPENDLE", + "decimals": 18, + "name": "Stake DAO sdPENDLE", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x5ea630e00d6ee438d3dea1556a110359acdc10a9.png", + "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0x6d3c9269bd1bc9426798a752ecebbd749e5edaa8": { + "address": "0x6d3c9269bd1bc9426798a752ecebbd749e5edaa8", + "symbol": "LNEX", + "decimals": 18, + "name": "Lunex Network", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x6d3c9269bd1bc9426798a752ecebbd749e5edaa8.png", + "aggregators": ["CoinGecko", "Rubic", "Sonarwatch"], + "occurrences": 3 + }, + "0xc53d2e7321ab83b28af2360559aa303676a23f98": { + "address": "0xc53d2e7321ab83b28af2360559aa303676a23f98", + "symbol": "FLQLON", + "decimals": 18, + "name": "Franklin US Large Cap Multifactor Index ETF (Ondo Tokenized)", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xc53d2e7321ab83b28af2360559aa303676a23f98.png", + "aggregators": ["CoinGecko", "Rubic", "Rango", "Ondo"], + "occurrences": 4, + "rwaData": { + "market": { + "nextOpen": "2026-05-19T13:31:00.000Z", + "nextClose": "2026-05-18T19:59:00.000Z" + }, + "nextPause": { + "start": null, + "end": null + }, + "ticker": "FLQL", + "instrumentType": "stock" + } + }, + "0x6fba952443be1de22232c824eb8d976b426b3c38": { + "address": "0x6fba952443be1de22232c824eb8d976b426b3c38", + "symbol": "KOCHI", + "decimals": 9, + "name": "Kochi Ken ETH", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x6fba952443be1de22232c824eb8d976b426b3c38.png", + "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0x79eddec7f9648cf9953db39507efa9f772c83c6e": { + "address": "0x79eddec7f9648cf9953db39507efa9f772c83c6e", + "symbol": "MOKA", + "decimals": 18, + "name": "Mokens League", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x79eddec7f9648cf9953db39507efa9f772c83c6e.png", + "aggregators": ["CoinGecko", "Rubic", "Sonarwatch"], + "occurrences": 3 + }, + "0x2bb0c32101456f5960d4e994bac183fe0dc6c82c": { + "address": "0x2bb0c32101456f5960d4e994bac183fe0dc6c82c", + "symbol": "XFRXETH", + "decimals": 18, + "name": "Leveraged frxETH", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x2bb0c32101456f5960d4e994bac183fe0dc6c82c.png", + "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0xb90d347e10a085b591955cbd0603ac7866fcadc8": { + "address": "0xb90d347e10a085b591955cbd0603ac7866fcadc8", + "symbol": "XCVX", + "decimals": 18, + "name": "Leveraged CVX", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xb90d347e10a085b591955cbd0603ac7866fcadc8.png", + "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0x394d14d78850e516fa5eb88f843ef43196e136b0": { + "address": "0x394d14d78850e516fa5eb88f843ef43196e136b0", + "symbol": "DIGAU", + "decimals": 18, + "name": "Dignity Gold", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x394d14d78850e516fa5eb88f843ef43196e136b0.png", + "aggregators": ["CoinMarketCap", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0xe668e08a6f5792cef0e63e9d98524968fdb5882f": { + "address": "0xe668e08a6f5792cef0e63e9d98524968fdb5882f", + "symbol": "GLXYON", + "decimals": 18, + "name": "Galaxy Digital (Ondo Tokenized)", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xe668e08a6f5792cef0e63e9d98524968fdb5882f.png", + "aggregators": ["CoinGecko", "Rubic", "Rango", "Ondo"], + "occurrences": 4, + "rwaData": { + "market": { + "nextOpen": "2026-05-19T00:05:00.000Z", + "nextClose": "2026-05-18T19:59:00.000Z" + }, + "nextPause": { + "start": null, + "end": null + }, + "ticker": "GLXY", + "instrumentType": "stock" + } + }, + "0xa043fdc5a6e2e381e3532d5a97404b82fb7a0af8": { + "address": "0xa043fdc5a6e2e381e3532d5a97404b82fb7a0af8", + "symbol": "GEVON", + "decimals": 18, + "name": "GE Vernova (Ondo Tokenized)", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xa043fdc5a6e2e381e3532d5a97404b82fb7a0af8.png", + "aggregators": ["CoinGecko", "Rubic", "Rango", "Ondo"], + "occurrences": 4, + "rwaData": { + "market": { + "nextOpen": "2026-05-18T20:01:00.000Z", + "nextClose": "2026-05-18T19:59:00.000Z" + }, + "nextPause": { + "start": null, + "end": null + }, + "ticker": "GEV", + "instrumentType": "stock" + } + }, + "0xa14ea0e11121e6e951e87c66afe460a00bcd6a16": { + "address": "0xa14ea0e11121e6e951e87c66afe460a00bcd6a16", + "symbol": "IDLEDAISAFE", + "decimals": 18, + "name": "IdleDAI Risk Adjusted", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xa14ea0e11121e6e951e87c66afe460a00bcd6a16.png", + "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0x1aee5ec60fc79b669f11fe368fde789e267649e2": { + "address": "0x1aee5ec60fc79b669f11fe368fde789e267649e2", + "symbol": "INTBTC", + "decimals": 18, + "name": "Inception Restaked tBTC", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x1aee5ec60fc79b669f11fe368fde789e267649e2.png", + "aggregators": ["CoinGecko", "Rubic", "Sonarwatch"], + "occurrences": 3 + }, + "0xf21014b114bb976f890e15c19900ce9be5fb1e12": { + "address": "0xf21014b114bb976f890e15c19900ce9be5fb1e12", + "symbol": "INEIGEN", + "decimals": 18, + "name": "Inception Restaked EIGEN", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xf21014b114bb976f890e15c19900ce9be5fb1e12.png", + "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0x3fe7940616e5bc47b0775a0dccf6237893353bb4": { + "address": "0x3fe7940616e5bc47b0775a0dccf6237893353bb4", + "symbol": "IDLEDAIYIELD", + "decimals": 18, + "name": "IdleDAI Best Yield", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x3fe7940616e5bc47b0775a0dccf6237893353bb4.png", + "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0x2e7e487d84b5baba5878a9833fb394bc89633fd7": { + "address": "0x2e7e487d84b5baba5878a9833fb394bc89633fd7", + "symbol": "OMNIA", + "decimals": 18, + "name": "Omnia Protocol", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x2e7e487d84b5baba5878a9833fb394bc89633fd7.png", + "aggregators": ["CoinMarketCap", "Rubic", "Sonarwatch"], + "occurrences": 3 + }, + "0x74ab072c91bf33479f959ce70561e785fd7391fd": { + "address": "0x74ab072c91bf33479f959ce70561e785fd7391fd", + "symbol": "GBTC", + "decimals": 9, + "name": "GBTC6900", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x74ab072c91bf33479f959ce70561e785fd7391fd.png", + "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0xd85a68faa78b4431dce816c157b66fc9911b3612": { + "address": "0xd85a68faa78b4431dce816c157b66fc9911b3612", + "symbol": "INF", + "decimals": 18, + "name": "Infinaeon", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xd85a68faa78b4431dce816c157b66fc9911b3612.png", + "aggregators": ["CoinMarketCap", "Rubic", "Sonarwatch"], + "occurrences": 3 + }, + "0xf34842d05a1c888ca02769a633df37177415c2f8": { + "address": "0xf34842d05a1c888ca02769a633df37177415c2f8", + "symbol": "IDLEUSDTYIELD", + "decimals": 18, + "name": "IdleUSDT Yield", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xf34842d05a1c888ca02769a633df37177415c2f8.png", + "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0x18e1b6aa7ef866eba192f2817d43bae92d75c817": { + "address": "0x18e1b6aa7ef866eba192f2817d43bae92d75c817", + "symbol": "OPZ", + "decimals": 18, + "name": "OPZ", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x18e1b6aa7ef866eba192f2817d43bae92d75c817.png", + "aggregators": ["CoinGecko", "Rubic", "Sonarwatch"], + "occurrences": 3 + }, + "0x225c119ffaf1caddcfcdb493283edf4b816bf773": { + "address": "0x225c119ffaf1caddcfcdb493283edf4b816bf773", + "symbol": "USUALUSDT", + "decimals": 18, + "name": "MEV Capital Usual Boosted USDT", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x225c119ffaf1caddcfcdb493283edf4b816bf773.png", + "aggregators": ["CoinGecko", "Rubic", "Sonarwatch"], + "occurrences": 3 + }, + "0x64d5fea7d2d600918b76159285994d6ed218f264": { + "address": "0x64d5fea7d2d600918b76159285994d6ed218f264", + "symbol": "TAS", + "decimals": 18, + "name": "Tao Accounting System", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x64d5fea7d2d600918b76159285994d6ed218f264.png", + "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0x562e12e1e792643d168c1fa01c1b7198a0f83c9f": { + "address": "0x562e12e1e792643d168c1fa01c1b7198a0f83c9f", + "symbol": "BB", + "decimals": 18, + "name": "BookieBot", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x562e12e1e792643d168c1fa01c1b7198a0f83c9f.png", + "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0x8c81121b15197fa0eeaee1dc75533419dcfd3151": { + "address": "0x8c81121b15197fa0eeaee1dc75533419dcfd3151", + "symbol": "IDLEWBTCYIELD", + "decimals": 18, + "name": "IdleWBTC Best Yield", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x8c81121b15197fa0eeaee1dc75533419dcfd3151.png", + "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0x28fac5334c9f7262b3a3fe707e250e01053e07b5": { + "address": "0x28fac5334c9f7262b3a3fe707e250e01053e07b5", + "symbol": "IDLEUSDTSAFE", + "decimals": 18, + "name": "IdleUSDT Risk Adjusted", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x28fac5334c9f7262b3a3fe707e250e01053e07b5.png", + "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0xc0a14627d6a23f70c809777ced873238581c1032": { + "address": "0xc0a14627d6a23f70c809777ced873238581c1032", + "symbol": "MCUSD0", + "decimals": 18, + "name": "MEV Capital USD0 Morpho Vault", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xc0a14627d6a23f70c809777ced873238581c1032.png", + "aggregators": ["CoinGecko", "Rubic", "Sonarwatch"], + "occurrences": 3 + }, + "0xfbb4f63821e706daf801e440a5893be59094f5cc": { + "address": "0xfbb4f63821e706daf801e440a5893be59094f5cc", + "symbol": "FBB4", + "decimals": 18, + "name": "FBB4", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xfbb4f63821e706daf801e440a5893be59094f5cc.png", + "aggregators": ["CoinGecko", "Socket", "Rubic", "Rango"], + "occurrences": 4 + }, + "0xbfc5770631641719cd1cf809d8325b146aed19de": { + "address": "0xbfc5770631641719cd1cf809d8325b146aed19de", + "symbol": "NINSTO", + "decimals": 6, + "name": "Nest Institutional Vault", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xbfc5770631641719cd1cf809d8325b146aed19de.png", + "aggregators": ["CoinMarketCap", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0x9994e35db50125e0df82e4c2dde62496ce330999": { + "address": "0x9994e35db50125e0df82e4c2dde62496ce330999", + "symbol": "MORPHO", + "decimals": 18, + "name": "Legacy Morpho", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x9994e35db50125e0df82e4c2dde62496ce330999.png", + "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0xa5f78b2a0ab85429d2dfbf8b60abc70f4cec066c": { + "address": "0xa5f78b2a0ab85429d2dfbf8b60abc70f4cec066c", + "symbol": "NCREDIT", + "decimals": 6, + "name": "Nest Credit Vault", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xa5f78b2a0ab85429d2dfbf8b60abc70f4cec066c.png", + "aggregators": ["CoinGecko", "Rubic", "Sonarwatch"], + "occurrences": 3 + }, + "0x3361a73262199873b74d6835760a59b8817fa592": { + "address": "0x3361a73262199873b74d6835760a59b8817fa592", + "symbol": "TON", + "decimals": 18, + "name": "AT&T (Ondo Tokenized)", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x3361a73262199873b74d6835760a59b8817fa592.png", + "aggregators": ["CoinGecko", "Rubic", "Rango", "Ondo"], + "occurrences": 4, + "rwaData": { + "market": { + "nextOpen": "2026-05-18T20:01:00.000Z", + "nextClose": "2026-05-18T19:59:00.000Z" + }, + "nextPause": { + "start": null, + "end": null + }, + "ticker": "T", + "instrumentType": "stock" + } + }, + "0xe65cdb6479bac1e22340e4e755fae7e509ecd06c": { + "address": "0xe65cdb6479bac1e22340e4e755fae7e509ecd06c", + "symbol": "CAAVE", + "decimals": 8, + "name": "cAAVE", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xe65cdb6479bac1e22340e4e755fae7e509ecd06c.png", + "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0x697a79af2de4af9e9aa0d08905374556ad1353bb": { + "address": "0x697a79af2de4af9e9aa0d08905374556ad1353bb", + "symbol": "NINA", + "decimals": 18, + "name": "NinaPumps", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x697a79af2de4af9e9aa0d08905374556ad1353bb.png", + "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0x50253dc4a01c6408fab9646e804fcbfdb74e3e4c": { + "address": "0x50253dc4a01c6408fab9646e804fcbfdb74e3e4c", + "symbol": "INSFRAX", + "decimals": 18, + "name": "Inception Restaked sFRAX", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x50253dc4a01c6408fab9646e804fcbfdb74e3e4c.png", + "aggregators": ["CoinGecko", "Rubic", "Sonarwatch"], + "occurrences": 3 + }, + "0x74d1984a64f447371be4019920180b52a33adadd": { + "address": "0x74d1984a64f447371be4019920180b52a33adadd", + "symbol": "INSLISBNB", + "decimals": 18, + "name": "Inception Restaked slisBNB", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x74d1984a64f447371be4019920180b52a33adadd.png", + "aggregators": ["CoinGecko", "Rubic", "Sonarwatch"], + "occurrences": 3 + }, + "0x3d07c3161f355cb9e5b524bef8d113c96e0263ab": { + "address": "0x3d07c3161f355cb9e5b524bef8d113c96e0263ab", + "symbol": "COFON", + "decimals": 18, + "name": "Capital One (Ondo Tokenized)", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x3d07c3161f355cb9e5b524bef8d113c96e0263ab.png", + "aggregators": ["CoinGecko", "Rubic", "Rango", "Ondo"], + "occurrences": 4, + "rwaData": { + "market": { + "nextOpen": "2026-05-18T20:01:00.000Z", + "nextClose": "2026-05-18T19:59:00.000Z" + }, + "nextPause": { + "start": "2026-05-18T23:52:00.000Z", + "end": "2026-05-19T00:12:00.000Z" + }, + "ticker": "COF", + "instrumentType": "stock" + } + }, + "0xf719b02079e0faa5450392da2d3e11a1e5b0eadb": { + "address": "0xf719b02079e0faa5450392da2d3e11a1e5b0eadb", + "symbol": "CATON", + "decimals": 18, + "name": "Caterpillar (Ondo Tokenized)", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xf719b02079e0faa5450392da2d3e11a1e5b0eadb.png", + "aggregators": ["CoinGecko", "Rubic", "Rango", "Ondo"], + "occurrences": 4, + "rwaData": { + "market": { + "nextOpen": "2026-05-18T20:01:00.000Z", + "nextClose": "2026-05-18T19:59:00.000Z" + }, + "nextPause": { + "start": null, + "end": null + }, + "ticker": "CAT", + "instrumentType": "stock" + } + }, + "0x24e5bc45d5b6cef6f38989ac33df587a3fc850cf": { + "address": "0x24e5bc45d5b6cef6f38989ac33df587a3fc850cf", + "symbol": "CIFRON", + "decimals": 18, + "name": "Cipher Mining (Ondo Tokenized)", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x24e5bc45d5b6cef6f38989ac33df587a3fc850cf.png", + "aggregators": ["CoinGecko", "Rubic", "Rango", "Ondo"], + "occurrences": 4, + "rwaData": { + "market": { + "nextOpen": "2026-05-19T13:31:00.000Z", + "nextClose": "2026-05-18T19:59:00.000Z" + }, + "nextPause": { + "start": null, + "end": null + }, + "ticker": "CIFR", + "instrumentType": "stock" + } + }, + "0x36a0e44c73e5a6a7727817377c0127f320a9456e": { + "address": "0x36a0e44c73e5a6a7727817377c0127f320a9456e", + "symbol": "WMPC", + "decimals": 4, + "name": "Wrapped MPC", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x36a0e44c73e5a6a7727817377c0127f320a9456e.png", + "aggregators": ["CoinGecko", "Rubic", "Sonarwatch"], + "occurrences": 3 + }, + "0xc46e7ef70d7cf8c17863a6b0b9be2af6a4c41abe": { + "address": "0xc46e7ef70d7cf8c17863a6b0b9be2af6a4c41abe", + "symbol": "CON", + "decimals": 18, + "name": "Citigroup (Ondo Tokenized)", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xc46e7ef70d7cf8c17863a6b0b9be2af6a4c41abe.png", + "aggregators": ["CoinGecko", "Rubic", "Rango", "Ondo"], + "occurrences": 4, + "rwaData": { + "market": { + "nextOpen": "2026-05-18T20:01:00.000Z", + "nextClose": "2026-05-18T19:59:00.000Z" + }, + "nextPause": { + "start": null, + "end": null + }, + "ticker": "C", + "instrumentType": "stock" + } + }, + "0xd3bfd6e6187444170a1674c494e55171587b5641": { + "address": "0xd3bfd6e6187444170a1674c494e55171587b5641", + "symbol": "INELIXIR", + "decimals": 6, + "name": "Nest Elixir Vault LP", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xd3bfd6e6187444170a1674c494e55171587b5641.png", + "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0x80a2ae356fc9ef4305676f7a3e2ed04e12c33946": { + "address": "0x80a2ae356fc9ef4305676f7a3e2ed04e12c33946", + "symbol": "CYFI", + "decimals": 8, + "name": "cYFI", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x80a2ae356fc9ef4305676f7a3e2ed04e12c33946.png", + "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0x060505527c83e8bfeb9b4ff08248b82e688800f1": { + "address": "0x060505527c83e8bfeb9b4ff08248b82e688800f1", + "symbol": "CEGON", + "decimals": 18, + "name": "Constellation Energy (Ondo Tokenized)", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x060505527c83e8bfeb9b4ff08248b82e688800f1.png", + "aggregators": ["CoinGecko", "Rubic", "Rango", "Ondo"], + "occurrences": 4, + "rwaData": { + "market": { + "nextOpen": "2026-05-18T20:01:00.000Z", + "nextClose": "2026-05-18T19:59:00.000Z" + }, + "nextPause": { + "start": null, + "end": null + }, + "ticker": "CEG", + "instrumentType": "stock" + } + }, + "0xc2dbfe026f17e7bbc17a9e41f9b8d69531887d47": { + "address": "0xc2dbfe026f17e7bbc17a9e41f9b8d69531887d47", + "symbol": "FIGRON", + "decimals": 18, + "name": "Figure Technology Solutions (Ondo Tokenized)", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xc2dbfe026f17e7bbc17a9e41f9b8d69531887d47.png", + "aggregators": ["CoinGecko", "Rubic", "Rango", "Ondo"], + "occurrences": 4, + "rwaData": { + "market": { + "nextOpen": "2026-05-19T13:31:00.000Z", + "nextClose": "2026-05-18T19:59:00.000Z" + }, + "nextPause": { + "start": null, + "end": null + }, + "ticker": "FIGR", + "instrumentType": "stock" + } + }, + "0xb52b090837a035f93a84487e5a7d3719c32aa8a9": { + "address": "0xb52b090837a035f93a84487e5a7d3719c32aa8a9", + "symbol": "NPAYFI", + "decimals": 6, + "name": "Nest PayFi Vault", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xb52b090837a035f93a84487e5a7d3719c32aa8a9.png", + "aggregators": ["CoinGecko", "Rubic", "Sonarwatch"], + "occurrences": 3 + }, + "0xbeef0075e03a5ce0d84d4accf3481363e0584f5c": { + "address": "0xbeef0075e03a5ce0d84d4accf3481363e0584f5c", + "symbol": "STEAKM", + "decimals": 18, + "name": "Steakhouse M Morpho Vault", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xbeef0075e03a5ce0d84d4accf3481363e0584f5c.png", + "aggregators": ["CoinGecko", "Rubic", "Sonarwatch"], + "occurrences": 3 + }, + "0xbeef07e929f84466a591de130e4154667214f491": { + "address": "0xbeef07e929f84466a591de130e4154667214f491", + "symbol": "STEAKEURCV", + "decimals": 18, + "name": "Steakhouse EURCV Morpho Vault", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xbeef07e929f84466a591de130e4154667214f491.png", + "aggregators": ["CoinGecko", "Rubic", "Sonarwatch"], + "occurrences": 3 + }, + "0xbeefd1c0c6c1f7c94dc6b989dba2e983a47a26a8": { + "address": "0xbeefd1c0c6c1f7c94dc6b989dba2e983a47a26a8", + "symbol": "STEAKUSDL", + "decimals": 18, + "name": "Steakhouse USDL Morpho Vault", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xbeefd1c0c6c1f7c94dc6b989dba2e983a47a26a8.png", + "aggregators": ["CoinGecko", "Rubic", "Sonarwatch"], + "occurrences": 3 + }, + "0x094b360ae512a65584d4f5be33d68b2e08677b89": { + "address": "0x094b360ae512a65584d4f5be33d68b2e08677b89", + "symbol": "USUAL", + "decimals": 18, + "name": "USUAL Star", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x094b360ae512a65584d4f5be33d68b2e08677b89.png", + "aggregators": ["CoinGecko", "Rubic", "Sonarwatch"], + "occurrences": 3 + }, + "0x0bfc9d54fc184518a81162f8fb99c2eaca081202": { + "address": "0x0bfc9d54fc184518a81162f8fb99c2eaca081202", + "symbol": "WAETHWETH", + "decimals": 18, + "name": "WAETHWETH", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x0bfc9d54fc184518a81162f8fb99c2eaca081202.png", + "aggregators": ["CoinGecko", "1inch", "Rubic", "Rango"], + "occurrences": 4 + }, + "0xf72936fa8afc808c99eb76e620a98ddc6a7a53d1": { + "address": "0xf72936fa8afc808c99eb76e620a98ddc6a7a53d1", + "symbol": "FON", + "decimals": 18, + "name": "Ford Motor (Ondo Tokenized)", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xf72936fa8afc808c99eb76e620a98ddc6a7a53d1.png", + "aggregators": ["CoinGecko", "Rubic", "Rango", "Ondo"], + "occurrences": 4, + "rwaData": { + "market": { + "nextOpen": "2026-05-18T20:01:00.000Z", + "nextClose": "2026-05-18T19:59:00.000Z" + }, + "nextPause": { + "start": null, + "end": null + }, + "ticker": "F", + "instrumentType": "stock" + } + }, + "0x8cefd49b703de9c0486d9bf6cb559f0895268ee8": { + "address": "0x8cefd49b703de9c0486d9bf6cb559f0895268ee8", + "symbol": "CLOAON", + "decimals": 18, + "name": "iShares AAA CLO Active ETF (Ondo Tokenized)", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x8cefd49b703de9c0486d9bf6cb559f0895268ee8.png", + "aggregators": ["CoinGecko", "Rubic", "Rango", "Ondo"], + "occurrences": 4, + "rwaData": { + "market": { + "nextOpen": "2026-05-19T13:31:00.000Z", + "nextClose": "2026-05-18T19:59:00.000Z" + }, + "nextPause": { + "start": null, + "end": null + }, + "ticker": "CLOA", + "instrumentType": "stock" + } + }, + "0x9471d30d78a3c9f076ce206d14867a8d8be1efde": { + "address": "0x9471d30d78a3c9f076ce206d14867a8d8be1efde", + "symbol": "ZNX", + "decimals": 6, + "name": "ZENEX", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x9471d30d78a3c9f076ce206d14867a8d8be1efde.png", + "aggregators": ["CoinMarketCap", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0x9f2e3eb0160117c56b07652fe66a08a48b5bd7b5": { + "address": "0x9f2e3eb0160117c56b07652fe66a08a48b5bd7b5", + "symbol": "SOFION", + "decimals": 18, + "name": "SoFi Technologies (Ondo Tokenized)", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x9f2e3eb0160117c56b07652fe66a08a48b5bd7b5.png", + "aggregators": ["CoinGecko", "Rubic", "Rango", "Ondo"], + "occurrences": 4, + "rwaData": { + "market": { + "nextOpen": "2026-05-18T20:01:00.000Z", + "nextClose": "2026-05-18T19:59:00.000Z" + }, + "nextPause": { + "start": null, + "end": null + }, + "ticker": "SOFI", + "instrumentType": "stock" + } + }, + "0x8bb97a618211695f5a6a889fac3546d1a573ea77": { + "address": "0x8bb97a618211695f5a6a889fac3546d1a573ea77", + "symbol": "NBTC", + "decimals": 8, + "name": "NexusBTC", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x8bb97a618211695f5a6a889fac3546d1a573ea77.png", + "aggregators": ["CoinGecko", "Rubic", "Sonarwatch"], + "occurrences": 3 + }, + "0x3af5ba94c29a8407785f5f6d90ef5d69a8eb2436": { + "address": "0x3af5ba94c29a8407785f5f6d90ef5d69a8eb2436", + "symbol": "UWBTC", + "decimals": 8, + "name": "Unagii Wrapped Bitcoin", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x3af5ba94c29a8407785f5f6d90ef5d69a8eb2436.png", + "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0xbc5991ccd8caceba01edc44c2bb9832712c29cab": { + "address": "0xbc5991ccd8caceba01edc44c2bb9832712c29cab", + "symbol": "UUSDC", + "decimals": 6, + "name": "Unagii USD Coin", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xbc5991ccd8caceba01edc44c2bb9832712c29cab.png", + "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0x6b4bcfeccf80ab79eae40475af34cd986e583090": { + "address": "0x6b4bcfeccf80ab79eae40475af34cd986e583090", + "symbol": "UOMI", + "decimals": 18, + "name": "UOMI", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x6b4bcfeccf80ab79eae40475af34cd986e583090.png", + "aggregators": ["CoinGecko", "Socket", "Rubic"], + "occurrences": 3 + }, + "0x99aa107e55250a9fe52bb4b5541a59239eb6d974": { + "address": "0x99aa107e55250a9fe52bb4b5541a59239eb6d974", + "symbol": "SOON", + "decimals": 18, + "name": "Southern (Ondo Tokenized)", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x99aa107e55250a9fe52bb4b5541a59239eb6d974.png", + "aggregators": ["CoinGecko", "Rubic", "Rango", "Ondo"], + "occurrences": 4, + "rwaData": { + "market": { + "nextOpen": "2026-05-19T13:31:00.000Z", + "nextClose": "2026-05-18T19:59:00.000Z" + }, + "nextPause": { + "start": "2026-05-17T23:52:00.000Z", + "end": "2026-05-18T13:40:00.000Z" + }, + "ticker": "SO", + "instrumentType": "stock" + } + }, + "0xdeb3c23f93349229823a006657cfe1a6552b6340": { + "address": "0xdeb3c23f93349229823a006657cfe1a6552b6340", + "symbol": "TMUSON", + "decimals": 18, + "name": "T-Mobile US (Ondo Tokenized)", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xdeb3c23f93349229823a006657cfe1a6552b6340.png", + "aggregators": ["CoinGecko", "Rubic", "Rango", "Ondo"], + "occurrences": 4, + "rwaData": { + "market": { + "nextOpen": "2026-05-18T20:01:00.000Z", + "nextClose": "2026-05-18T19:59:00.000Z" + }, + "nextPause": { + "start": "2026-05-28T23:52:00.000Z", + "end": "2026-05-29T08:10:00.000Z" + }, + "ticker": "TMUS", + "instrumentType": "stock" + } + }, + "0xc80c91bc6215e1333ea98314b8671d6e26c58470": { + "address": "0xc80c91bc6215e1333ea98314b8671d6e26c58470", + "symbol": "TLNON", + "decimals": 18, + "name": "Talen Energy (Ondo Tokenized)", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xc80c91bc6215e1333ea98314b8671d6e26c58470.png", + "aggregators": ["CoinGecko", "Rubic", "Rango", "Ondo"], + "occurrences": 4, + "rwaData": { + "market": { + "nextOpen": "2026-05-19T13:31:00.000Z", + "nextClose": "2026-05-18T19:59:00.000Z" + }, + "nextPause": { + "start": null, + "end": null + }, + "ticker": "TLN", + "instrumentType": "stock" + } + }, + "0x60808f2a0d035e16f57e9043842bd1bfbda24fa2": { + "address": "0x60808f2a0d035e16f57e9043842bd1bfbda24fa2", + "symbol": "TMOON", + "decimals": 18, + "name": "Thermo Fisher Scientific (Ondo Tokenized)", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x60808f2a0d035e16f57e9043842bd1bfbda24fa2.png", + "aggregators": ["CoinGecko", "Rubic", "Rango", "Ondo"], + "occurrences": 4, + "rwaData": { + "market": { + "nextOpen": "2026-05-18T20:01:00.000Z", + "nextClose": "2026-05-18T19:59:00.000Z" + }, + "nextPause": { + "start": null, + "end": null + }, + "ticker": "TMO", + "instrumentType": "stock" + } + }, + "0xfb19075d77a0f111796fb259819830f4780f1429": { + "address": "0xfb19075d77a0f111796fb259819830f4780f1429", + "symbol": "FB", + "decimals": 6, + "name": "Fenerbah e", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xfb19075d77a0f111796fb259819830f4780f1429.png", + "aggregators": ["CoinMarketCap", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0x6247c86b016bc4d9ae141849c0a9eb38c004b742": { + "address": "0x6247c86b016bc4d9ae141849c0a9eb38c004b742", + "symbol": "HTL", + "decimals": 18, + "name": "Hotelium", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x6247c86b016bc4d9ae141849c0a9eb38c004b742.png", + "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0x398f7f759380f3d309b9fc0e6cb3d36e0d67818d": { + "address": "0x398f7f759380f3d309b9fc0e6cb3d36e0d67818d", + "symbol": "TCOMON", + "decimals": 18, + "name": "Trip.com Group (Ondo Tokenized)", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x398f7f759380f3d309b9fc0e6cb3d36e0d67818d.png", + "aggregators": ["CoinGecko", "Rubic", "Rango", "Ondo"], + "occurrences": 4, + "rwaData": { + "market": { + "nextOpen": "2026-05-18T20:01:00.000Z", + "nextClose": "2026-05-18T19:59:00.000Z" + }, + "nextPause": { + "start": "2026-05-18T09:00:00.000Z", + "end": "2026-05-18T23:30:00.000Z" + }, + "ticker": "TCOM", + "instrumentType": "stock" + } + }, + "0x47e5c76f155083f1aee39578311a2a5faa938a82": { + "address": "0x47e5c76f155083f1aee39578311a2a5faa938a82", + "symbol": "TNQ", + "decimals": 6, + "name": "TNQ", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x47e5c76f155083f1aee39578311a2a5faa938a82.png", + "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0x9a1741e151233a82cf69209a2f1bc7442b1fb29c": { + "address": "0x9a1741e151233a82cf69209a2f1bc7442b1fb29c", + "symbol": "DGI", + "decimals": 18, + "name": "DeFi Growth Index", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x9a1741e151233a82cf69209a2f1bc7442b1fb29c.png", + "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0xe8b09e8175aecb35a171fa059647434fe47f114c": { + "address": "0xe8b09e8175aecb35a171fa059647434fe47f114c", + "symbol": "CLOION", + "decimals": 18, + "name": "VanEck CLO ETF (Ondo Tokenized)", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xe8b09e8175aecb35a171fa059647434fe47f114c.png", + "aggregators": ["CoinGecko", "Rubic", "Rango", "Ondo"], + "occurrences": 4, + "rwaData": { + "market": { + "nextOpen": "2026-05-19T13:31:00.000Z", + "nextClose": "2026-05-18T19:59:00.000Z" + }, + "nextPause": { + "start": null, + "end": null + }, + "ticker": "CLOI", + "instrumentType": "stock" + } + }, + "0xc014186cf1ba36032aaec7f96088f09eb3934347": { + "address": "0xc014186cf1ba36032aaec7f96088f09eb3934347", + "symbol": "WCX", + "decimals": 18, + "name": "WeCoOwn", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xc014186cf1ba36032aaec7f96088f09eb3934347.png", + "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0x0341d2c2ce65b62af8887e905245b8cfea2a3b97": { + "address": "0x0341d2c2ce65b62af8887e905245b8cfea2a3b97", + "symbol": "YAYAGETH", + "decimals": 18, + "name": "Yay Kelp DAO s Airdrop Gain ETH", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x0341d2c2ce65b62af8887e905245b8cfea2a3b97.png", + "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0xc19b6a4ac7c7cc24459f08984bbd09664af17bd1": { + "address": "0xc19b6a4ac7c7cc24459f08984bbd09664af17bd1", + "symbol": "SENSO", + "decimals": 0, + "name": "SENSO", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xc19b6a4ac7c7cc24459f08984bbd09664af17bd1.png", + "aggregators": ["CoinMarketCap", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0xd3dce716f3ef535c5ff8d041c1a41c3bd89b97ae": { + "address": "0xd3dce716f3ef535c5ff8d041c1a41c3bd89b97ae", + "symbol": "SCUSD", + "decimals": 6, + "name": "Rings scUSD", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xd3dce716f3ef535c5ff8d041c1a41c3bd89b97ae.png", + "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0x075b1bb99792c9e1041ba13afef80c91a1e70fb3": { + "address": "0x075b1bb99792c9e1041ba13afef80c91a1e70fb3", + "symbol": "CRVRENWSBTC", + "decimals": 18, + "name": "Curve fi renBTC wBTC sBTC", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x075b1bb99792c9e1041ba13afef80c91a1e70fb3.png", + "aggregators": ["CoinMarketCap", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0x83f4389ccce1cc044dd7441add33c4f28b967434": { + "address": "0x83f4389ccce1cc044dd7441add33c4f28b967434", + "symbol": "DRX", + "decimals": 18, + "name": "DRX Token", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x83f4389ccce1cc044dd7441add33c4f28b967434.png", + "aggregators": ["Metamask", "Rubic", "Sonarwatch"], + "occurrences": 3 + }, + "0x4527a3b4a8a150403090a99b87effc96f2195047": { + "address": "0x4527a3b4a8a150403090a99b87effc96f2195047", + "symbol": "P2PS", + "decimals": 8, + "name": "P2P solutions foundation", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x4527a3b4a8a150403090a99b87effc96f2195047.png", + "aggregators": ["CoinMarketCap", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0xa877d5bb0274dccba8556154a30e1ca4021a275f": { + "address": "0xa877d5bb0274dccba8556154a30e1ca4021a275f", + "symbol": "KPK_EURC_YIELDV2", + "decimals": 18, + "name": "kpk EURC Yield V2", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xa877d5bb0274dccba8556154a30e1ca4021a275f.png", + "aggregators": ["CoinGecko", "LiFi", "Rubic"], + "occurrences": 3 + }, + "0xa6345ffadfa23dfc9014bce72ff2fa8712e54231": { + "address": "0xa6345ffadfa23dfc9014bce72ff2fa8712e54231", + "symbol": "KEK", + "decimals": 9, + "name": "Pepe Prophet", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xa6345ffadfa23dfc9014bce72ff2fa8712e54231.png", + "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0x2105465ab589b74747b01afdaf606d058fb082be": { + "address": "0x2105465ab589b74747b01afdaf606d058fb082be", + "symbol": "HIXOKDKEKJCJDKSICND", + "decimals": 18, + "name": "DEV SMASHED HIS KEYBOARD", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x2105465ab589b74747b01afdaf606d058fb082be.png", + "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0xf028adee51533b1b47beaa890feb54a457f51e89": { + "address": "0xf028adee51533b1b47beaa890feb54a457f51e89", + "symbol": "BMT", + "decimals": 18, + "name": "BMCHAIN", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xf028adee51533b1b47beaa890feb54a457f51e89.png", + "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0x96cc63eef1f63cde9acd69061bfb7606887f26d8": { + "address": "0x96cc63eef1f63cde9acd69061bfb7606887f26d8", + "symbol": "BVR", + "decimals": 18, + "name": "Basketballverse", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x96cc63eef1f63cde9acd69061bfb7606887f26d8.png", + "aggregators": ["CoinGecko", "Rubic", "Sonarwatch"], + "occurrences": 3 + }, + "0x42726d074bba68ccc15200442b72afa2d495a783": { + "address": "0x42726d074bba68ccc15200442b72afa2d495a783", + "symbol": "ISIKC", + "decimals": 4, + "name": "Isiklar Coin", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x42726d074bba68ccc15200442b72afa2d495a783.png", + "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0xccf4429db6322d5c611ee964527d42e5d685dd6a": { + "address": "0xccf4429db6322d5c611ee964527d42e5d685dd6a", + "symbol": "CWBTC", + "decimals": 8, + "name": "cWBTC", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xccf4429db6322d5c611ee964527d42e5d685dd6a.png", + "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0xe86142af1321eaac4270422081c1eda31eecff0c": { + "address": "0xe86142af1321eaac4270422081c1eda31eecff0c", + "symbol": "YAYSTONE", + "decimals": 18, + "name": "Yay StakeStone Ether", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xe86142af1321eaac4270422081c1eda31eecff0c.png", + "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0xfbcb83037d770b28f758530022897362521b6141": { + "address": "0xfbcb83037d770b28f758530022897362521b6141", + "symbol": "BYB", + "decimals": 9, + "name": "BiorBank", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xfbcb83037d770b28f758530022897362521b6141.png", + "aggregators": ["CoinMarketCap", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0x19640000000ba88d36206beb10d0e86011c8d08c": { + "address": "0x19640000000ba88d36206beb10d0e86011c8d08c", + "symbol": "RALLY", + "decimals": 18, + "name": "Rally", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x19640000000ba88d36206beb10d0e86011c8d08c.png", + "aggregators": ["CoinMarketCap", "Socket", "Rubic", "Rango"], + "occurrences": 4 + }, + "0x34635280737b5bfe6c7dc2fc3065d60d66e78185": { + "address": "0x34635280737b5bfe6c7dc2fc3065d60d66e78185", + "symbol": "CVXPRISMA", + "decimals": 18, + "name": "Convex Prisma", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x34635280737b5bfe6c7dc2fc3065d60d66e78185.png", + "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0xa29c9a740de8194e4016747e9a04a84946ada0a5": { + "address": "0xa29c9a740de8194e4016747e9a04a84946ada0a5", + "symbol": "NUMI", + "decimals": 18, + "name": "NUMINE Token", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xa29c9a740de8194e4016747e9a04a84946ada0a5.png", + "aggregators": ["CoinMarketCap", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0xc214a0b73ce4c30594b4173219e885691254801b": { + "address": "0xc214a0b73ce4c30594b4173219e885691254801b", + "symbol": "TOTO", + "decimals": 9, + "name": "Tiamonds", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xc214a0b73ce4c30594b4173219e885691254801b.png", + "aggregators": ["CoinMarketCap", "Rubic", "Sonarwatch"], + "occurrences": 3 + }, + "0x26827f7f51769ea21f94ba98ba64f5d0dc8988f9": { + "address": "0x26827f7f51769ea21f94ba98ba64f5d0dc8988f9", + "symbol": "FAME", + "decimals": 18, + "name": "FAME Rumble Kong League", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x26827f7f51769ea21f94ba98ba64f5d0dc8988f9.png", + "aggregators": ["CoinMarketCap", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0xa5cdea03b11042fc10b52af9eca48bb17a2107d2": { + "address": "0xa5cdea03b11042fc10b52af9eca48bb17a2107d2", + "symbol": "MVRWA", + "decimals": 18, + "name": "RWA Index", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xa5cdea03b11042fc10b52af9eca48bb17a2107d2.png", + "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0xbbaec992fc2d637151daf40451f160bf85f3c8c1": { + "address": "0xbbaec992fc2d637151daf40451f160bf85f3c8c1", + "symbol": "USDM", + "decimals": 6, + "name": "USD Mapped Token", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xbbaec992fc2d637151daf40451f160bf85f3c8c1.png", + "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0x53be7be0ce7f92bcbd2138305735160fb799be4f": { + "address": "0x53be7be0ce7f92bcbd2138305735160fb799be4f", + "symbol": "NTMPI", + "decimals": 6, + "name": "Neutaro", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x53be7be0ce7f92bcbd2138305735160fb799be4f.png", + "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0xe4880249745eac5f1ed9d8f7df844792d560e750": { + "address": "0xe4880249745eac5f1ed9d8f7df844792d560e750", + "symbol": "USTBL", + "decimals": 5, + "name": "Spiko US T Bills Money Market Fund", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xe4880249745eac5f1ed9d8f7df844792d560e750.png", + "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0xb10cb07ca2cdac77fbb5707f6690301f9d036f45": { + "address": "0xb10cb07ca2cdac77fbb5707f6690301f9d036f45", + "symbol": "WIN", + "decimals": 8, + "name": "WIN", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xb10cb07ca2cdac77fbb5707f6690301f9d036f45.png", + "aggregators": ["CoinMarketCap", "Socket", "Rubic", "Rango"], + "occurrences": 4 + }, + "0x85b78aca6deae198fbf201c82daf6ca21942acc6": { + "address": "0x85b78aca6deae198fbf201c82daf6ca21942acc6", + "symbol": "ARM-WETH-STETH", + "decimals": 18, + "name": "Lido ARM", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x85b78aca6deae198fbf201c82daf6ca21942acc6.png", + "aggregators": ["CoinGecko", "LiFi", "Rubic", "Rango"], + "occurrences": 4 + }, + "0x671b710a006040cd82a8070abd497a7215ce6f67": { + "address": "0x671b710a006040cd82a8070abd497a7215ce6f67", + "symbol": "NTH", + "decimals": 18, + "name": "NTH", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x671b710a006040cd82a8070abd497a7215ce6f67.png", + "aggregators": ["CoinGecko", "LiFi", "Rubic"], + "occurrences": 3 + }, + "0x05be1d4c307c19450a6fd7ce7307ce72a3829a60": { + "address": "0x05be1d4c307c19450a6fd7ce7307ce72a3829a60", + "symbol": "IMF", + "decimals": 18, + "name": "International Meme Fund", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x05be1d4c307c19450a6fd7ce7307ce72a3829a60.png", + "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0x00f5b16c8d28e20dac8674fc96b232b72c6c6cfa": { + "address": "0x00f5b16c8d28e20dac8674fc96b232b72c6c6cfa", + "symbol": "MARVIN", + "decimals": 18, + "name": "Marvin The Robot", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x00f5b16c8d28e20dac8674fc96b232b72c6c6cfa.png", + "aggregators": ["CoinGecko", "Socket", "Rubic"], + "occurrences": 3 + }, + "0x81eb954936a7062d1758fc0e6e3b88d42d9c361c": { + "address": "0x81eb954936a7062d1758fc0e6e3b88d42d9c361c", + "symbol": "DGRWON", + "decimals": 18, + "name": "WisdomTree US Quality Dividend Growth Fund (Ondo Tokenized)", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x81eb954936a7062d1758fc0e6e3b88d42d9c361c.png", + "aggregators": ["CoinGecko", "Rubic", "Rango", "Ondo"], + "occurrences": 4, + "rwaData": { + "market": { + "nextOpen": "2026-05-19T13:31:00.000Z", + "nextClose": "2026-05-18T19:59:00.000Z" + }, + "nextPause": { + "start": null, + "end": null + }, + "ticker": "DGRW", + "instrumentType": "stock" + } + }, + "0x9af595c8fc201e82db65faef71d51365d7f11b5f": { + "address": "0x9af595c8fc201e82db65faef71d51365d7f11b5f", + "symbol": "CAPTAIN", + "decimals": 9, + "name": "Captain Ethereum", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x9af595c8fc201e82db65faef71d51365d7f11b5f.png", + "aggregators": ["CoinGecko", "Socket", "Rubic", "Rango"], + "occurrences": 4 + }, + "0x69d29f1b0cc37d8d3b61583c99ad0ab926142069": { + "address": "0x69d29f1b0cc37d8d3b61583c99ad0ab926142069", + "symbol": "ƎԀƎԀ", + "decimals": 9, + "name": "Pepe Inverted", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x69d29f1b0cc37d8d3b61583c99ad0ab926142069.png", + "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0x5dd8bfa6c5c68d05d25ef6143e05c11e26c4cdb7": { + "address": "0x5dd8bfa6c5c68d05d25ef6143e05c11e26c4cdb7", + "symbol": "YOUSD EDGE", + "decimals": 6, + "name": "yoUSD Edge", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x5dd8bfa6c5c68d05d25ef6143e05c11e26c4cdb7.png", + "aggregators": ["CoinGecko", "LiFi", "Rubic"], + "occurrences": 3 + }, + "0x792905a8b7c0a22d56e78e849f95c162018a4e2d": { + "address": "0x792905a8b7c0a22d56e78e849f95c162018a4e2d", + "symbol": "RENTA", + "decimals": 18, + "name": "Renta Network", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x792905a8b7c0a22d56e78e849f95c162018a4e2d.png", + "aggregators": ["CoinMarketCap", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0x1c95519d3fc922fc04fcf5d099be4a1ed8b15240": { + "address": "0x1c95519d3fc922fc04fcf5d099be4a1ed8b15240", + "symbol": "GROK", + "decimals": 9, + "name": "My life as Grok", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x1c95519d3fc922fc04fcf5d099be4a1ed8b15240.png", + "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0x7c7378143a9c8839e0502e2178f058f46c6ea504": { + "address": "0x7c7378143a9c8839e0502e2178f058f46c6ea504", + "symbol": "ABBVON", + "decimals": 18, + "name": "AbbVie (Ondo Tokenized)", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x7c7378143a9c8839e0502e2178f058f46c6ea504.png", + "aggregators": ["CoinGecko", "Rubic", "Rango", "Ondo"], + "occurrences": 4, + "rwaData": { + "market": { + "nextOpen": "2026-05-18T20:01:00.000Z", + "nextClose": "2026-05-18T19:59:00.000Z" + }, + "nextPause": { + "start": null, + "end": null + }, + "ticker": "ABBV", + "instrumentType": "stock" + } + }, + "0x0ce36d199bd6851788e03392568849394cbde722": { + "address": "0x0ce36d199bd6851788e03392568849394cbde722", + "symbol": "PALLON", + "decimals": 18, + "name": "abrdn Physical Palladium Shares ETF (Ondo Tokenized)", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x0ce36d199bd6851788e03392568849394cbde722.png", + "aggregators": ["CoinGecko", "Rubic", "Rango", "Ondo"], + "occurrences": 4, + "rwaData": { + "market": { + "nextOpen": "2026-05-18T20:01:00.000Z", + "nextClose": "2026-05-18T19:59:00.000Z" + }, + "nextPause": { + "start": "2026-05-17T23:50:00.000Z", + "end": "2026-05-18T17:00:00.000Z" + }, + "ticker": "PALL", + "instrumentType": "stock" + } + }, + "0x592643a667633bca51cb2387c98b6de6ce549a45": { + "address": "0x592643a667633bca51cb2387c98b6de6ce549a45", + "symbol": "AMCON", + "decimals": 18, + "name": "AMC Entertainment (Ondo Tokenized)", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x592643a667633bca51cb2387c98b6de6ce549a45.png", + "aggregators": ["CoinGecko", "Rubic", "Rango", "Ondo"], + "occurrences": 4, + "rwaData": { + "market": { + "nextOpen": "2026-05-19T13:31:00.000Z", + "nextClose": "2026-05-18T19:59:00.000Z" + }, + "nextPause": { + "start": null, + "end": null + }, + "ticker": "AMC", + "instrumentType": "stock" + } + }, + "0x1c5fa55eade69ae98571059332520f73733c2d82": { + "address": "0x1c5fa55eade69ae98571059332520f73733c2d82", + "symbol": "AMGNON", + "decimals": 18, + "name": "Amgen (Ondo Tokenized)", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x1c5fa55eade69ae98571059332520f73733c2d82.png", + "aggregators": ["CoinGecko", "Rubic", "Rango", "Ondo"], + "occurrences": 4, + "rwaData": { + "market": { + "nextOpen": "2026-05-18T20:01:00.000Z", + "nextClose": "2026-05-18T19:59:00.000Z" + }, + "nextPause": { + "start": null, + "end": null + }, + "ticker": "AMGN", + "instrumentType": "stock" + } + }, + "0x2ddc2391cc89e3e716a938f089ae755174cfdf1f": { + "address": "0x2ddc2391cc89e3e716a938f089ae755174cfdf1f", + "symbol": "ADION", + "decimals": 18, + "name": "Analog Devices (Ondo Tokenized)", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x2ddc2391cc89e3e716a938f089ae755174cfdf1f.png", + "aggregators": ["CoinGecko", "Rubic", "Rango", "Ondo"], + "occurrences": 4, + "rwaData": { + "market": { + "nextOpen": "2026-05-18T20:01:00.000Z", + "nextClose": "2026-05-18T19:59:00.000Z" + }, + "nextPause": { + "start": "2026-05-20T09:00:00.000Z", + "end": "2026-05-20T13:31:00.000Z" + }, + "ticker": "ADI", + "instrumentType": "stock" + } + }, + "0x9cfa08002d606e638fe91941be725e1b970b84a6": { + "address": "0x9cfa08002d606e638fe91941be725e1b970b84a6", + "symbol": "ACHRON", + "decimals": 18, + "name": "Archer Aviation (Ondo Tokenized)", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x9cfa08002d606e638fe91941be725e1b970b84a6.png", + "aggregators": ["CoinGecko", "Rubic", "Rango", "Ondo"], + "occurrences": 4, + "rwaData": { + "market": { + "nextOpen": "2026-05-18T20:01:00.000Z", + "nextClose": "2026-05-18T19:59:00.000Z" + }, + "nextPause": { + "start": null, + "end": null + }, + "ticker": "ACHR", + "instrumentType": "stock" + } + }, + "0x8ac6ad49b3344024834f373f3ca491f22ceb952e": { + "address": "0x8ac6ad49b3344024834f373f3ca491f22ceb952e", + "symbol": "BTGON", + "decimals": 18, + "name": "B2Gold (Ondo Tokenized)", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x8ac6ad49b3344024834f373f3ca491f22ceb952e.png", + "aggregators": ["CoinGecko", "Rubic", "Rango", "Ondo"], + "occurrences": 4, + "rwaData": { + "market": { + "nextOpen": "2026-05-19T13:31:00.000Z", + "nextClose": "2026-05-18T19:59:00.000Z" + }, + "nextPause": { + "start": "2026-06-09T23:52:00.000Z", + "end": "2026-06-10T13:40:00.000Z" + }, + "ticker": "BTG", + "instrumentType": "stock" + } + }, + "0x20e113e9235df6a2a9bfc6f244c2ccc380c8f546": { + "address": "0x20e113e9235df6a2a9bfc6f244c2ccc380c8f546", + "symbol": "ANETON", + "decimals": 18, + "name": "Arista Networks (Ondo Tokenized)", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x20e113e9235df6a2a9bfc6f244c2ccc380c8f546.png", + "aggregators": ["CoinGecko", "Rubic", "Rango", "Ondo"], + "occurrences": 4, + "rwaData": { + "market": { + "nextOpen": "2026-05-18T20:01:00.000Z", + "nextClose": "2026-05-18T19:59:00.000Z" + }, + "nextPause": { + "start": null, + "end": null + }, + "ticker": "ANET", + "instrumentType": "stock" + } + }, + "0x1b8d3e59b31981385c066ee0916ec964628ff1f9": { + "address": "0x1b8d3e59b31981385c066ee0916ec964628ff1f9", + "symbol": "BBAION", + "decimals": 18, + "name": "BigBear.ai Holdings (Ondo Tokenized)", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x1b8d3e59b31981385c066ee0916ec964628ff1f9.png", + "aggregators": ["CoinGecko", "Rubic", "Rango", "Ondo"], + "occurrences": 4, + "rwaData": { + "market": { + "nextOpen": "2026-05-18T20:01:00.000Z", + "nextClose": "2026-05-18T19:59:00.000Z" + }, + "nextPause": { + "start": null, + "end": null + }, + "ticker": "BBAI", + "instrumentType": "stock" + } + }, + "0x33483a58079b4225b10e57958ca28ad7b9cdbaf7": { + "address": "0x33483a58079b4225b10e57958ca28ad7b9cdbaf7", + "symbol": "BMNRON", + "decimals": 18, + "name": "BitMine Immersion Technologies (Ondo Tokenized)", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x33483a58079b4225b10e57958ca28ad7b9cdbaf7.png", + "aggregators": ["CoinGecko", "Rubic", "Rango", "Ondo"], + "occurrences": 4, + "rwaData": { + "market": { + "nextOpen": "2026-05-18T20:01:00.000Z", + "nextClose": "2026-05-18T19:59:00.000Z" + }, + "nextPause": { + "start": null, + "end": null + }, + "ticker": "BMNR", + "instrumentType": "stock" + } + }, + "0x6cc41275ef02b4eeccc04fc4424849a96f3272aa": { + "address": "0x6cc41275ef02b4eeccc04fc4424849a96f3272aa", + "symbol": "XYZON", + "decimals": 18, + "name": "Block (Ondo Tokenized)", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x6cc41275ef02b4eeccc04fc4424849a96f3272aa.png", + "aggregators": ["CoinGecko", "Rubic", "Rango", "Ondo"], + "occurrences": 4, + "rwaData": { + "market": { + "nextOpen": "2026-05-19T00:05:00.000Z", + "nextClose": "2026-05-18T19:59:00.000Z" + }, + "nextPause": { + "start": null, + "end": null + }, + "ticker": "XYZ", + "instrumentType": "stock" + } + }, + "0x334ccd8df4013bac99af8c5c61d3605b315302a0": { + "address": "0x334ccd8df4013bac99af8c5c61d3605b315302a0", + "symbol": "BLSHON", + "decimals": 18, + "name": "Bullish (Ondo Tokenized)", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x334ccd8df4013bac99af8c5c61d3605b315302a0.png", + "aggregators": ["CoinGecko", "Rubic", "Rango", "Ondo"], + "occurrences": 4, + "rwaData": { + "market": { + "nextOpen": "2026-05-19T13:31:00.000Z", + "nextClose": "2026-05-18T19:59:00.000Z" + }, + "nextPause": { + "start": null, + "end": null + }, + "ticker": "BLSH", + "instrumentType": "stock" + } + }, + "0xfe4ec50e0413148021d2f50d114cc44de6ffbf23": { + "address": "0xfe4ec50e0413148021d2f50d114cc44de6ffbf23", + "symbol": "CVNAON", + "decimals": 18, + "name": "Carvana (Ondo Tokenized)", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xfe4ec50e0413148021d2f50d114cc44de6ffbf23.png", + "aggregators": ["CoinGecko", "Rubic", "Rango", "Ondo"], + "occurrences": 4, + "rwaData": { + "market": { + "nextOpen": "2026-05-18T20:01:00.000Z", + "nextClose": "2026-05-18T19:59:00.000Z" + }, + "nextPause": { + "start": null, + "end": null + }, + "ticker": "CVNA", + "instrumentType": "stock" + } + }, + "0xe737f948bdfe3beae9423292853ec0579173cebb": { + "address": "0xe737f948bdfe3beae9423292853ec0579173cebb", + "symbol": "SCHWON", + "decimals": 18, + "name": "Charles Schwab (Ondo Tokenized)", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xe737f948bdfe3beae9423292853ec0579173cebb.png", + "aggregators": ["CoinGecko", "Rubic", "Rango", "Ondo"], + "occurrences": 4, + "rwaData": { + "market": { + "nextOpen": "2026-05-19T00:05:00.000Z", + "nextClose": "2026-05-18T19:59:00.000Z" + }, + "nextPause": { + "start": null, + "end": null + }, + "ticker": "SCHW", + "instrumentType": "stock" + } + }, + "0x8e6a5338eac4b6fe8d51a7653fad3b9da755eea6": { + "address": "0x8e6a5338eac4b6fe8d51a7653fad3b9da755eea6", + "symbol": "COPON", + "decimals": 18, + "name": "ConocoPhillips (Ondo Tokenized)", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x8e6a5338eac4b6fe8d51a7653fad3b9da755eea6.png", + "aggregators": ["CoinGecko", "Rubic", "Rango", "Ondo"], + "occurrences": 4, + "rwaData": { + "market": { + "nextOpen": "2026-05-18T20:01:00.000Z", + "nextClose": "2026-05-18T19:59:00.000Z" + }, + "nextPause": { + "start": null, + "end": null + }, + "ticker": "COP", + "instrumentType": "stock" + } + }, + "0xfa9f0bf8baa9a3d5e0a8e5c0aeaf186acabef63d": { + "address": "0xfa9f0bf8baa9a3d5e0a8e5c0aeaf186acabef63d", + "symbol": "CPNGON", + "decimals": 18, + "name": "Coupang (Ondo Tokenized)", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xfa9f0bf8baa9a3d5e0a8e5c0aeaf186acabef63d.png", + "aggregators": ["CoinGecko", "Rubic", "Rango", "Ondo"], + "occurrences": 4, + "rwaData": { + "market": { + "nextOpen": "2026-05-18T20:01:00.000Z", + "nextClose": "2026-05-18T19:59:00.000Z" + }, + "nextPause": { + "start": null, + "end": null + }, + "ticker": "CPNG", + "instrumentType": "stock" + } + }, + "0xcac9aafb2cf51645ae1ab4fb1f35f07d42437f80": { + "address": "0xcac9aafb2cf51645ae1ab4fb1f35f07d42437f80", + "symbol": "CRWDON", + "decimals": 18, + "name": "CrowdStrike (Ondo Tokenized)", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xcac9aafb2cf51645ae1ab4fb1f35f07d42437f80.png", + "aggregators": ["CoinGecko", "Rubic", "Rango", "Ondo"], + "occurrences": 4, + "rwaData": { + "market": { + "nextOpen": "2026-05-18T20:01:00.000Z", + "nextClose": "2026-05-18T19:59:00.000Z" + }, + "nextPause": { + "start": "2026-06-03T20:00:00.000Z", + "end": "2026-06-03T23:30:00.000Z" + }, + "ticker": "CRWD", + "instrumentType": "stock" + } + }, + "0x32d7c413fd3477e86b8ec6b0bb8f3ac510eafaae": { + "address": "0x32d7c413fd3477e86b8ec6b0bb8f3ac510eafaae", + "symbol": "DEON", + "decimals": 18, + "name": "Deere (Ondo Tokenized)", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x32d7c413fd3477e86b8ec6b0bb8f3ac510eafaae.png", + "aggregators": ["CoinGecko", "Rubic", "Rango", "Ondo"], + "occurrences": 4, + "rwaData": { + "market": { + "nextOpen": "2026-05-18T20:01:00.000Z", + "nextClose": "2026-05-18T19:59:00.000Z" + }, + "nextPause": { + "start": "2026-05-21T09:00:00.000Z", + "end": "2026-05-21T13:31:00.000Z" + }, + "ticker": "DE", + "instrumentType": "stock" + } + }, + "0x7aa59a63d1d0c435a08bc96e11bef2e95ab66c40": { + "address": "0x7aa59a63d1d0c435a08bc96e11bef2e95ab66c40", + "symbol": "DNNON", + "decimals": 18, + "name": "Denison Mines (Ondo Tokenized)", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x7aa59a63d1d0c435a08bc96e11bef2e95ab66c40.png", + "aggregators": ["CoinGecko", "Rubic", "Rango", "Ondo"], + "occurrences": 4, + "rwaData": { + "market": { + "nextOpen": "2026-05-19T13:31:00.000Z", + "nextClose": "2026-05-18T19:59:00.000Z" + }, + "nextPause": { + "start": null, + "end": null + }, + "ticker": "DNN", + "instrumentType": "stock" + } + }, + "0xf05ad9840924ea6f977ebccb3b1da87e31dcd0b4": { + "address": "0xf05ad9840924ea6f977ebccb3b1da87e31dcd0b4", + "symbol": "XOMON", + "decimals": 18, + "name": "Exxon Mobil (Ondo Tokenized)", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xf05ad9840924ea6f977ebccb3b1da87e31dcd0b4.png", + "aggregators": ["CoinGecko", "Rubic", "Rango", "Ondo"], + "occurrences": 4, + "rwaData": { + "market": { + "nextOpen": "2026-05-18T20:01:00.000Z", + "nextClose": "2026-05-18T19:59:00.000Z" + }, + "nextPause": { + "start": null, + "end": null + }, + "ticker": "XOM", + "instrumentType": "stock" + } + }, + "0xacf3fecaa787f268351a86409c3bd3b96ef924fb": { + "address": "0xacf3fecaa787f268351a86409c3bd3b96ef924fb", + "symbol": "FTGCON", + "decimals": 18, + "name": "First Trust Global Tactical Commodity Strategy Fund (Ondo Tokenized)", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xacf3fecaa787f268351a86409c3bd3b96ef924fb.png", + "aggregators": ["CoinGecko", "Rubic", "Rango", "Ondo"], + "occurrences": 4, + "rwaData": { + "market": { + "nextOpen": "2026-05-19T13:31:00.000Z", + "nextClose": "2026-05-18T19:59:00.000Z" + }, + "nextPause": { + "start": null, + "end": null + }, + "ticker": "FTGC", + "instrumentType": "stock" + } + }, + "0xb51db25c920c16f2865c37011c3eec91db946b07": { + "address": "0xb51db25c920c16f2865c37011c3eec91db946b07", + "symbol": "GEMION", + "decimals": 18, + "name": "Gemini Space Station (Ondo Tokenized)", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xb51db25c920c16f2865c37011c3eec91db946b07.png", + "aggregators": ["CoinGecko", "Rubic", "Rango", "Ondo"], + "occurrences": 4, + "rwaData": { + "market": { + "nextOpen": "2026-05-19T13:31:00.000Z", + "nextClose": "2026-05-18T19:59:00.000Z" + }, + "nextPause": { + "start": null, + "end": null + }, + "ticker": "GEMI", + "instrumentType": "stock" + } + }, + "0x1c174711f3fd63c4165d6f296b3eb19d17fde94a": { + "address": "0x1c174711f3fd63c4165d6f296b3eb19d17fde94a", + "symbol": "GRABON", + "decimals": 18, + "name": "Grab Holdings (Ondo Tokenized)", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x1c174711f3fd63c4165d6f296b3eb19d17fde94a.png", + "aggregators": ["CoinGecko", "Rubic", "Rango", "Ondo"], + "occurrences": 4, + "rwaData": { + "market": { + "nextOpen": "2026-05-19T13:31:00.000Z", + "nextClose": "2026-05-18T19:59:00.000Z" + }, + "nextPause": { + "start": null, + "end": null + }, + "ticker": "GRAB", + "instrumentType": "stock" + } + }, + "0xe5b26ba77e6a4d79a7c54a5296d81254269d9700": { + "address": "0xe5b26ba77e6a4d79a7c54a5296d81254269d9700", + "symbol": "GRNDON", + "decimals": 18, + "name": "Grindr (Ondo Tokenized)", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xe5b26ba77e6a4d79a7c54a5296d81254269d9700.png", + "aggregators": ["CoinGecko", "Rubic", "Rango", "Ondo"], + "occurrences": 4, + "rwaData": { + "market": { + "nextOpen": "2026-05-19T13:31:00.000Z", + "nextClose": "2026-05-18T19:59:00.000Z" + }, + "nextPause": { + "start": null, + "end": null + }, + "ticker": "GRND", + "instrumentType": "stock" + } + }, + "0x7dbd435aa4ecab5471cfcef4527a022fef0b7e1c": { + "address": "0x7dbd435aa4ecab5471cfcef4527a022fef0b7e1c", + "symbol": "HDON", + "decimals": 18, + "name": "Home Depot (Ondo Tokenized)", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x7dbd435aa4ecab5471cfcef4527a022fef0b7e1c.png", + "aggregators": ["CoinGecko", "Rubic", "Rango", "Ondo"], + "occurrences": 4, + "rwaData": { + "market": { + "nextOpen": "2026-05-19T13:31:00.000Z", + "nextClose": "2026-05-18T19:59:00.000Z" + }, + "nextPause": { + "start": "2026-05-19T09:00:00.000Z", + "end": "2026-05-19T13:31:00.000Z" + }, + "ticker": "HD", + "instrumentType": "stock" + } + }, + "0x2691b13fca1e02322685b9554b5ae0f5f3f05c55": { + "address": "0x2691b13fca1e02322685b9554b5ae0f5f3f05c55", + "symbol": "ISRGON", + "decimals": 18, + "name": "Intuitive Surgical (Ondo Tokenized)", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x2691b13fca1e02322685b9554b5ae0f5f3f05c55.png", + "aggregators": ["CoinGecko", "Rubic", "Rango", "Ondo"], + "occurrences": 4, + "rwaData": { + "market": { + "nextOpen": "2026-05-18T20:01:00.000Z", + "nextClose": "2026-05-18T19:59:00.000Z" + }, + "nextPause": { + "start": null, + "end": null + }, + "ticker": "ISRG", + "instrumentType": "stock" + } + }, + "0x20224080ad516769723c9a4a18325fc4e8c9ab5d": { + "address": "0x20224080ad516769723c9a4a18325fc4e8c9ab5d", + "symbol": "DBCON", + "decimals": 18, + "name": "Invesco DB Commodity Index Tracking Fund (Ondo Tokenized)", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x20224080ad516769723c9a4a18325fc4e8c9ab5d.png", + "aggregators": ["CoinGecko", "Rubic", "Rango", "Ondo"], + "occurrences": 4, + "rwaData": { + "market": { + "nextOpen": "2026-05-19T13:31:00.000Z", + "nextClose": "2026-05-18T19:59:00.000Z" + }, + "nextPause": { + "start": null, + "end": null + }, + "ticker": "DBC", + "instrumentType": "stock" + } + }, + "0x423a63dfe8d82cd9c6568c92210aa537d8ef6885": { + "address": "0x423a63dfe8d82cd9c6568c92210aa537d8ef6885", + "symbol": "COPXON", + "decimals": 18, + "name": "Global X Copper Miners ETF (Ondo Tokenized)", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x423a63dfe8d82cd9c6568c92210aa537d8ef6885.png", + "aggregators": ["CoinGecko", "Rubic", "Rango", "Ondo"], + "occurrences": 4, + "rwaData": { + "market": { + "nextOpen": "2026-05-18T20:01:00.000Z", + "nextClose": "2026-05-18T19:59:00.000Z" + }, + "nextPause": { + "start": null, + "end": null + }, + "ticker": "COPX", + "instrumentType": "stock" + } + }, + "0x46c0a02a877c1412cb32b57028b2f771c0364a7e": { + "address": "0x46c0a02a877c1412cb32b57028b2f771c0364a7e", + "symbol": "PDBCON", + "decimals": 18, + "name": "Invesco Optimum Yld Dvsfd Cmd Str No K-1 ETF (Ondo Tokenized)", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x46c0a02a877c1412cb32b57028b2f771c0364a7e.png", + "aggregators": ["CoinGecko", "Rubic", "Rango", "Ondo"], + "occurrences": 4, + "rwaData": { + "market": { + "nextOpen": "2026-05-19T13:31:00.000Z", + "nextClose": "2026-05-18T19:59:00.000Z" + }, + "nextPause": { + "start": null, + "end": null + }, + "ticker": "PDBC", + "instrumentType": "stock" + } + }, + "0x0b59fdb1a233a7477ea14061004b9dd776e73cb3": { + "address": "0x0b59fdb1a233a7477ea14061004b9dd776e73cb3", + "symbol": "IRENON", + "decimals": 18, + "name": "IREN (Ondo Tokenized)", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x0b59fdb1a233a7477ea14061004b9dd776e73cb3.png", + "aggregators": ["CoinGecko", "Rubic", "Rango", "Ondo"], + "occurrences": 4, + "rwaData": { + "market": { + "nextOpen": "2026-05-18T20:01:00.000Z", + "nextClose": "2026-05-18T19:59:00.000Z" + }, + "nextPause": { + "start": null, + "end": null + }, + "ticker": "IREN", + "instrumentType": "stock" + } + }, + "0x8de5d49725550f7b318b2fa0f1b1f118e98e8d0f": { + "address": "0x8de5d49725550f7b318b2fa0f1b1f118e98e8d0f", + "symbol": "SGOVON", + "decimals": 18, + "name": "iShares 0-3 Month Treasury Bond ETF (Ondo Tokenized)", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x8de5d49725550f7b318b2fa0f1b1f118e98e8d0f.png", + "aggregators": ["CoinGecko", "Rubic", "Rango", "Ondo"], + "occurrences": 4, + "rwaData": { + "market": { + "nextOpen": "2026-05-18T20:01:00.000Z", + "nextClose": "2026-05-18T19:59:00.000Z" + }, + "nextPause": { + "start": null, + "end": null + }, + "ticker": "SGOV", + "instrumentType": "stock" + } + }, + "0x88703c1e71f44a2d329c99e8e112f7a4e7dd6312": { + "address": "0x88703c1e71f44a2d329c99e8e112f7a4e7dd6312", + "symbol": "BINCON", + "decimals": 18, + "name": "iShares Flexible Income Active ETF (Ondo Tokenized)", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x88703c1e71f44a2d329c99e8e112f7a4e7dd6312.png", + "aggregators": ["CoinGecko", "Rubic", "Rango", "Ondo"], + "occurrences": 4, + "rwaData": { + "market": { + "nextOpen": "2026-05-18T20:01:00.000Z", + "nextClose": "2026-05-18T19:59:00.000Z" + }, + "nextPause": { + "start": null, + "end": null + }, + "ticker": "BINC", + "instrumentType": "stock" + } + }, + "0x219a1b27baa08d72fac836665a3b752f3c9acbbc": { + "address": "0x219a1b27baa08d72fac836665a3b752f3c9acbbc", + "symbol": "JAAAON", + "decimals": 18, + "name": "Janus Henderson AAA CLO ETF (Ondo Tokenized)", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x219a1b27baa08d72fac836665a3b752f3c9acbbc.png", + "aggregators": ["CoinGecko", "Rubic", "Rango", "Ondo"], + "occurrences": 4, + "rwaData": { + "market": { + "nextOpen": "2026-05-18T20:01:00.000Z", + "nextClose": "2026-05-18T19:59:00.000Z" + }, + "nextPause": { + "start": null, + "end": null + }, + "ticker": "JAAA", + "instrumentType": "stock" + } + }, + "0xdd0e1e6162666a210905ffe8d368661b313c00e9": { + "address": "0xdd0e1e6162666a210905ffe8d368661b313c00e9", + "symbol": "JNJON", + "decimals": 18, + "name": "Johnson & Johnson (Ondo Tokenized)", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xdd0e1e6162666a210905ffe8d368661b313c00e9.png", + "aggregators": ["CoinGecko", "Rubic", "Rango", "Ondo"], + "occurrences": 4, + "rwaData": { + "market": { + "nextOpen": "2026-05-18T20:01:00.000Z", + "nextClose": "2026-05-18T19:59:00.000Z" + }, + "nextPause": { + "start": "2026-05-25T23:52:00.000Z", + "end": "2026-05-26T00:12:00.000Z" + }, + "ticker": "JNJ", + "instrumentType": "stock" + } + }, + "0x858e985126543b5a066c4e8a5dab0249c1d683f7": { + "address": "0x858e985126543b5a066c4e8a5dab0249c1d683f7", + "symbol": "BZON", + "decimals": 18, + "name": "Kanzhun (Ondo Tokenized)", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x858e985126543b5a066c4e8a5dab0249c1d683f7.png", + "aggregators": ["CoinGecko", "Rubic", "Rango", "Ondo"], + "occurrences": 4, + "rwaData": { + "market": { + "nextOpen": "2026-05-19T13:31:00.000Z", + "nextClose": "2026-05-18T19:59:00.000Z" + }, + "nextPause": { + "start": "2026-05-20T09:00:00.000Z", + "end": "2026-05-20T13:31:00.000Z" + }, + "ticker": "BZ", + "instrumentType": "stock" + } + }, + "0x7e08ce07aca80cefe61ebbfa0cedfe5c7b07edb9": { + "address": "0x7e08ce07aca80cefe61ebbfa0cedfe5c7b07edb9", + "symbol": "BILION", + "decimals": 18, + "name": "Bilibili (Ondo Tokenized)", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x7e08ce07aca80cefe61ebbfa0cedfe5c7b07edb9.png", + "aggregators": ["CoinGecko", "Rubic", "Rango", "Ondo"], + "occurrences": 4, + "rwaData": { + "market": { + "nextOpen": "2026-05-18T20:01:00.000Z", + "nextClose": "2026-05-18T19:59:00.000Z" + }, + "nextPause": { + "start": "2026-05-19T09:00:00.000Z", + "end": "2026-05-19T13:31:00.000Z" + }, + "ticker": "BILI", + "instrumentType": "stock" + } + }, + "0xbe8eb7b51a08f9d52bb6c8c7eca699f0f89bfc02": { + "address": "0xbe8eb7b51a08f9d52bb6c8c7eca699f0f89bfc02", + "symbol": "AALON", + "decimals": 18, + "name": "American Airlines Group (Ondo Tokenized)", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xbe8eb7b51a08f9d52bb6c8c7eca699f0f89bfc02.png", + "aggregators": ["CoinGecko", "Rubic", "Rango", "Ondo"], + "occurrences": 4, + "rwaData": { + "market": { + "nextOpen": "2026-05-18T20:01:00.000Z", + "nextClose": "2026-05-18T19:59:00.000Z" + }, + "nextPause": { + "start": null, + "end": null + }, + "ticker": "AAL", + "instrumentType": "stock" + } + }, + "0x576e9ca70e3a040c00d8139b0665a2b7b7b64844": { + "address": "0x576e9ca70e3a040c00d8139b0665a2b7b7b64844", + "symbol": "BACON", + "decimals": 18, + "name": "Bank of America (Ondo Tokenized)", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x576e9ca70e3a040c00d8139b0665a2b7b7b64844.png", + "aggregators": ["CoinGecko", "Rubic", "Rango", "Ondo"], + "occurrences": 4, + "rwaData": { + "market": { + "nextOpen": "2026-05-18T20:01:00.000Z", + "nextClose": "2026-05-18T19:59:00.000Z" + }, + "nextPause": { + "start": "2026-06-04T23:52:00.000Z", + "end": "2026-06-05T00:12:00.000Z" + }, + "ticker": "BAC", + "instrumentType": "stock" + } + }, + "0x6be935eadc71c49c414b1175985946ee40365c67": { + "address": "0x6be935eadc71c49c414b1175985946ee40365c67", + "symbol": "AMATON", + "decimals": 18, + "name": "Applied Materials (Ondo Tokenized)", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x6be935eadc71c49c414b1175985946ee40365c67.png", + "aggregators": ["CoinGecko", "Rubic", "Rango", "Ondo"], + "occurrences": 4, + "rwaData": { + "market": { + "nextOpen": "2026-05-18T20:01:00.000Z", + "nextClose": "2026-05-18T19:59:00.000Z" + }, + "nextPause": { + "start": "2026-05-20T23:52:00.000Z", + "end": "2026-05-21T00:12:00.000Z" + }, + "ticker": "AMAT", + "instrumentType": "stock" + } + }, + "0xa637ae510cb50e61236a89ac480b93b8c3bccc46": { + "address": "0xa637ae510cb50e61236a89ac480b93b8c3bccc46", + "symbol": "KLACON", + "decimals": 18, + "name": "KLA (Ondo Tokenized)", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xa637ae510cb50e61236a89ac480b93b8c3bccc46.png", + "aggregators": ["CoinGecko", "Rubic", "Rango", "Ondo"], + "occurrences": 4, + "rwaData": { + "market": { + "nextOpen": "2026-05-18T20:01:00.000Z", + "nextClose": "2026-05-18T19:59:00.000Z" + }, + "nextPause": { + "start": "2026-06-11T23:50:00.000Z", + "end": "2026-06-12T17:00:00.000Z" + }, + "ticker": "KLAC", + "instrumentType": "stock" + } + }, + "0x21be23f5bf87a749670c088f6dee26760f1ab80f": { + "address": "0x21be23f5bf87a749670c088f6dee26760f1ab80f", + "symbol": "LRCXON", + "decimals": 18, + "name": "Lam Research (Ondo Tokenized)", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x21be23f5bf87a749670c088f6dee26760f1ab80f.png", + "aggregators": ["CoinGecko", "Rubic", "Rango", "Ondo"], + "occurrences": 4, + "rwaData": { + "market": { + "nextOpen": "2026-05-18T20:01:00.000Z", + "nextClose": "2026-05-18T19:59:00.000Z" + }, + "nextPause": { + "start": null, + "end": null + }, + "ticker": "LRCX", + "instrumentType": "stock" + } + }, + "0xb6e362a39db703f0f7cf582c9fc043a51624e53d": { + "address": "0xb6e362a39db703f0f7cf582c9fc043a51624e53d", + "symbol": "LION", + "decimals": 18, + "name": "Li Auto (Ondo Tokenized)", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xb6e362a39db703f0f7cf582c9fc043a51624e53d.png", + "aggregators": ["CoinGecko", "Rubic", "Rango", "Ondo"], + "occurrences": 4, + "rwaData": { + "market": { + "nextOpen": "2026-05-19T00:05:00.000Z", + "nextClose": "2026-05-18T19:59:00.000Z" + }, + "nextPause": { + "start": "2026-05-28T09:00:00.000Z", + "end": "2026-05-28T13:31:00.000Z" + }, + "ticker": "LI", + "instrumentType": "stock" + } + }, + "0x84328d8b85019fdcecf4c82fbe076bf350fc0cab": { + "address": "0x84328d8b85019fdcecf4c82fbe076bf350fc0cab", + "symbol": "LOWON", + "decimals": 18, + "name": "Lowe's (Ondo Tokenized)", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x84328d8b85019fdcecf4c82fbe076bf350fc0cab.png", + "aggregators": ["CoinGecko", "Rubic", "Rango", "Ondo"], + "occurrences": 4, + "rwaData": { + "market": { + "nextOpen": "2026-05-19T13:31:00.000Z", + "nextClose": "2026-05-18T19:59:00.000Z" + }, + "nextPause": { + "start": "2026-05-20T09:00:00.000Z", + "end": "2026-05-20T13:31:00.000Z" + }, + "ticker": "LOW", + "instrumentType": "stock" + } + }, + "0x5cb95099a2c7e3c8187fbca6efe5ba222b5ba820": { + "address": "0x5cb95099a2c7e3c8187fbca6efe5ba222b5ba820", + "symbol": "MTZON", + "decimals": 18, + "name": "MasTec (Ondo Tokenized)", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x5cb95099a2c7e3c8187fbca6efe5ba222b5ba820.png", + "aggregators": ["CoinGecko", "Rubic", "Rango", "Ondo"], + "occurrences": 4, + "rwaData": { + "market": { + "nextOpen": "2026-05-19T13:31:00.000Z", + "nextClose": "2026-05-18T19:59:00.000Z" + }, + "nextPause": { + "start": null, + "end": null + }, + "ticker": "MTZ", + "instrumentType": "stock" + } + }, + "0xdc8a7db05ea704227d56f5d4a4b77a2d1bba29c0": { + "address": "0xdc8a7db05ea704227d56f5d4a4b77a2d1bba29c0", + "symbol": "MRKON", + "decimals": 18, + "name": "Merck (Ondo Tokenized)", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xdc8a7db05ea704227d56f5d4a4b77a2d1bba29c0.png", + "aggregators": ["CoinGecko", "Rubic", "Rango", "Ondo"], + "occurrences": 4, + "rwaData": { + "market": { + "nextOpen": "2026-05-18T20:01:00.000Z", + "nextClose": "2026-05-18T19:59:00.000Z" + }, + "nextPause": { + "start": null, + "end": null + }, + "ticker": "MRK", + "instrumentType": "stock" + } + }, + "0xa2c1c0b4683a871187d4565eb63abf9aef5947ee": { + "address": "0xa2c1c0b4683a871187d4565eb63abf9aef5947ee", + "symbol": "MRNAON", + "decimals": 18, + "name": "Moderna (Ondo Tokenized)", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xa2c1c0b4683a871187d4565eb63abf9aef5947ee.png", + "aggregators": ["CoinGecko", "Rubic", "Rango", "Ondo"], + "occurrences": 4, + "rwaData": { + "market": { + "nextOpen": "2026-05-18T20:01:00.000Z", + "nextClose": "2026-05-18T19:59:00.000Z" + }, + "nextPause": { + "start": null, + "end": null + }, + "ticker": "MRNA", + "instrumentType": "stock" + } + }, + "0x75846a2b2eeee6575ac775f9984be54fd1d08189": { + "address": "0x75846a2b2eeee6575ac775f9984be54fd1d08189", + "symbol": "MPON", + "decimals": 18, + "name": "MP Materials (Ondo Tokenized)", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x75846a2b2eeee6575ac775f9984be54fd1d08189.png", + "aggregators": ["CoinGecko", "Rubic", "Rango", "Ondo"], + "occurrences": 4, + "rwaData": { + "market": { + "nextOpen": "2026-05-18T20:01:00.000Z", + "nextClose": "2026-05-18T19:59:00.000Z" + }, + "nextPause": { + "start": null, + "end": null + }, + "ticker": "MP", + "instrumentType": "stock" + } + }, + "0x3d1cf8692a6f2fc9048a9cc1a06abf77f3465f0a": { + "address": "0x3d1cf8692a6f2fc9048a9cc1a06abf77f3465f0a", + "symbol": "NTESON", + "decimals": 18, + "name": "NetEase (Ondo Tokenized)", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x3d1cf8692a6f2fc9048a9cc1a06abf77f3465f0a.png", + "aggregators": ["CoinGecko", "Rubic", "Rango", "Ondo"], + "occurrences": 4, + "rwaData": { + "market": { + "nextOpen": "2026-05-19T13:31:00.000Z", + "nextClose": "2026-05-18T19:59:00.000Z" + }, + "nextPause": { + "start": "2026-05-21T09:00:00.000Z", + "end": "2026-05-21T13:31:00.000Z" + }, + "ticker": "NTES", + "instrumentType": "stock" + } + }, + "0xf46ba88694cd7933ca28be84ee787ad5732e856b": { + "address": "0xf46ba88694cd7933ca28be84ee787ad5732e856b", + "symbol": "NEEON", + "decimals": 18, + "name": "NextEra Energy (Ondo Tokenized)", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xf46ba88694cd7933ca28be84ee787ad5732e856b.png", + "aggregators": ["CoinGecko", "Rubic", "Rango", "Ondo"], + "occurrences": 4, + "rwaData": { + "market": { + "nextOpen": "2026-05-19T13:31:00.000Z", + "nextClose": "2026-05-18T19:59:00.000Z" + }, + "nextPause": { + "start": null, + "end": null + }, + "ticker": "NEE", + "instrumentType": "stock" + } + }, + "0xee2542f442a5ed8008e2fe3590e14f90db69f70d": { + "address": "0xee2542f442a5ed8008e2fe3590e14f90db69f70d", + "symbol": "NIOON", + "decimals": 18, + "name": "NIO (Ondo Tokenized)", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xee2542f442a5ed8008e2fe3590e14f90db69f70d.png", + "aggregators": ["CoinGecko", "Rubic", "Rango", "Ondo"], + "occurrences": 4, + "rwaData": { + "market": { + "nextOpen": "2026-05-18T20:01:00.000Z", + "nextClose": "2026-05-18T19:59:00.000Z" + }, + "nextPause": { + "start": "2026-05-21T09:00:00.000Z", + "end": "2026-05-21T13:31:00.000Z" + }, + "ticker": "NIO", + "instrumentType": "stock" + } + }, + "0x2008e3057bd734e10ad13c9eae45ff132abc1722": { + "address": "0x2008e3057bd734e10ad13c9eae45ff132abc1722", + "symbol": "ZCO", + "decimals": 8, + "name": "Zebi", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x2008e3057bd734e10ad13c9eae45ff132abc1722.png", + "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0xeedc48205852e9d83ea5ca92fa8656597788601f": { + "address": "0xeedc48205852e9d83ea5ca92fa8656597788601f", + "symbol": "OXYON", + "decimals": 18, + "name": "Occidental Petroleum (Ondo Tokenized)", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xeedc48205852e9d83ea5ca92fa8656597788601f.png", + "aggregators": ["CoinGecko", "Rubic", "Rango", "Ondo"], + "occurrences": 4, + "rwaData": { + "market": { + "nextOpen": "2026-05-18T20:01:00.000Z", + "nextClose": "2026-05-18T19:59:00.000Z" + }, + "nextPause": { + "start": "2026-06-09T23:52:00.000Z", + "end": "2026-06-10T08:10:00.000Z" + }, + "ticker": "OXY", + "instrumentType": "stock" + } + }, + "0xf0372e226553af4f343b44111a789f87a9fa427a": { + "address": "0xf0372e226553af4f343b44111a789f87a9fa427a", + "symbol": "OKLOON", + "decimals": 18, + "name": "Oklo (Ondo Tokenized)", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xf0372e226553af4f343b44111a789f87a9fa427a.png", + "aggregators": ["CoinGecko", "Rubic", "Rango", "Ondo"], + "occurrences": 4, + "rwaData": { + "market": { + "nextOpen": "2026-05-18T20:01:00.000Z", + "nextClose": "2026-05-18T19:59:00.000Z" + }, + "nextPause": { + "start": null, + "end": null + }, + "ticker": "OKLO", + "instrumentType": "stock" + } + }, + "0xa52b2d6ca1cd9b1e8b931645428380c340caef9a": { + "address": "0xa52b2d6ca1cd9b1e8b931645428380c340caef9a", + "symbol": "ONON", + "decimals": 18, + "name": "ON Semiconductor (Ondo Tokenized)", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xa52b2d6ca1cd9b1e8b931645428380c340caef9a.png", + "aggregators": ["CoinGecko", "Rubic", "Rango", "Ondo"], + "occurrences": 4, + "rwaData": { + "market": { + "nextOpen": "2026-05-19T13:31:00.000Z", + "nextClose": "2026-05-18T19:59:00.000Z" + }, + "nextPause": { + "start": null, + "end": null + }, + "ticker": "ON", + "instrumentType": "stock" + } + }, + "0xb22d83e228c4266075ec75c32acc3bc059b6f248": { + "address": "0xb22d83e228c4266075ec75c32acc3bc059b6f248", + "symbol": "OPENON", + "decimals": 18, + "name": "Opendoor Technologies (Ondo Tokenized)", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xb22d83e228c4266075ec75c32acc3bc059b6f248.png", + "aggregators": ["CoinGecko", "Rubic", "Rango", "Ondo"], + "occurrences": 4, + "rwaData": { + "market": { + "nextOpen": "2026-05-19T13:31:00.000Z", + "nextClose": "2026-05-18T19:59:00.000Z" + }, + "nextPause": { + "start": null, + "end": null + }, + "ticker": "OPEN", + "instrumentType": "stock" + } + }, + "0xb40afd1d55ea61fc1a6fbe093b817b673c8e78d7": { + "address": "0xb40afd1d55ea61fc1a6fbe093b817b673c8e78d7", + "symbol": "OPRAON", + "decimals": 18, + "name": "Opera (Ondo Tokenized)", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xb40afd1d55ea61fc1a6fbe093b817b673c8e78d7.png", + "aggregators": ["CoinGecko", "Rubic", "Rango", "Ondo"], + "occurrences": 4, + "rwaData": { + "market": { + "nextOpen": "2026-05-19T13:31:00.000Z", + "nextClose": "2026-05-18T19:59:00.000Z" + }, + "nextPause": { + "start": null, + "end": null + }, + "ticker": "OPRA", + "instrumentType": "stock" + } + }, + "0x244efb92f76a57da49b5f71045dce3e546e13106": { + "address": "0x244efb92f76a57da49b5f71045dce3e546e13106", + "symbol": "OSCRON", + "decimals": 18, + "name": "Oscar Health (Ondo Tokenized)", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x244efb92f76a57da49b5f71045dce3e546e13106.png", + "aggregators": ["CoinGecko", "Rubic", "Rango", "Ondo"], + "occurrences": 4, + "rwaData": { + "market": { + "nextOpen": "2026-05-19T13:31:00.000Z", + "nextClose": "2026-05-18T19:59:00.000Z" + }, + "nextPause": { + "start": null, + "end": null + }, + "ticker": "OSCR", + "instrumentType": "stock" + } + }, + "0xcc40965d3621362c3ee1dd946ba98d6a708ea86b": { + "address": "0xcc40965d3621362c3ee1dd946ba98d6a708ea86b", + "symbol": "PDDON", + "decimals": 18, + "name": "PDD Holdings (Ondo Tokenized)", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xcc40965d3621362c3ee1dd946ba98d6a708ea86b.png", + "aggregators": ["CoinGecko", "Rubic", "Rango", "Ondo"], + "occurrences": 4, + "rwaData": { + "market": { + "nextOpen": "2026-05-18T20:01:00.000Z", + "nextClose": "2026-05-18T19:59:00.000Z" + }, + "nextPause": { + "start": "2026-05-26T09:00:00.000Z", + "end": "2026-05-26T23:30:00.000Z" + }, + "ticker": "PDD", + "instrumentType": "stock" + } + }, + "0x193fdf644451cc394b28b9cec2f5d32e2b4de515": { + "address": "0x193fdf644451cc394b28b9cec2f5d32e2b4de515", + "symbol": "PCGON", + "decimals": 18, + "name": "PG&E (Ondo Tokenized)", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x193fdf644451cc394b28b9cec2f5d32e2b4de515.png", + "aggregators": ["CoinGecko", "Rubic", "Rango", "Ondo"], + "occurrences": 4, + "rwaData": { + "market": { + "nextOpen": "2026-05-19T13:31:00.000Z", + "nextClose": "2026-05-18T19:59:00.000Z" + }, + "nextPause": { + "start": null, + "end": null + }, + "ticker": "PCG", + "instrumentType": "stock" + } + }, + "0xc017c622cd05698580e2decd0f97d4a17dab70f9": { + "address": "0xc017c622cd05698580e2decd0f97d4a17dab70f9", + "symbol": "PINSON", + "decimals": 18, + "name": "Pinterest (Ondo Tokenized)", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xc017c622cd05698580e2decd0f97d4a17dab70f9.png", + "aggregators": ["CoinGecko", "Rubic", "Rango", "Ondo"], + "occurrences": 4, + "rwaData": { + "market": { + "nextOpen": "2026-05-18T20:01:00.000Z", + "nextClose": "2026-05-18T19:59:00.000Z" + }, + "nextPause": { + "start": null, + "end": null + }, + "ticker": "PINS", + "instrumentType": "stock" + } + }, + "0xe7ee911172bdd557b9ab6be7701f86bbc8fd772e": { + "address": "0xe7ee911172bdd557b9ab6be7701f86bbc8fd772e", + "symbol": "PLUGON", + "decimals": 18, + "name": "Plug Power (Ondo Tokenized)", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xe7ee911172bdd557b9ab6be7701f86bbc8fd772e.png", + "aggregators": ["CoinGecko", "Rubic", "Rango", "Ondo"], + "occurrences": 4, + "rwaData": { + "market": { + "nextOpen": "2026-05-18T20:01:00.000Z", + "nextClose": "2026-05-18T19:59:00.000Z" + }, + "nextPause": { + "start": null, + "end": null + }, + "ticker": "PLUG", + "instrumentType": "stock" + } + }, + "0x64a60493d888728cf42616e034a0dfeae38efcf0": { + "address": "0x64a60493d888728cf42616e034a0dfeae38efcf0", + "symbol": "OLT", + "decimals": 18, + "name": "OneLedger", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x64a60493d888728cf42616e034a0dfeae38efcf0.png", + "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0xa45cd7ac9865b9539166ebaf2abc362df4736580": { + "address": "0xa45cd7ac9865b9539166ebaf2abc362df4736580", + "symbol": "TQQQON", + "decimals": 18, + "name": "ProShares UltraPro QQQ (Ondo Tokenized)", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xa45cd7ac9865b9539166ebaf2abc362df4736580.png", + "aggregators": ["CoinGecko", "Rubic", "Rango", "Ondo"], + "occurrences": 4, + "rwaData": { + "market": { + "nextOpen": "2026-05-18T20:01:00.000Z", + "nextClose": "2026-05-18T19:59:00.000Z" + }, + "nextPause": { + "start": null, + "end": null + }, + "ticker": "TQQQ", + "instrumentType": "stock" + } + }, + "0x9ebd34d99cc3a45b39cafc14ad7994263fa2be56": { + "address": "0x9ebd34d99cc3a45b39cafc14ad7994263fa2be56", + "symbol": "PSQON", + "decimals": 18, + "name": "ProShares Short QQQ (Ondo Tokenized)", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x9ebd34d99cc3a45b39cafc14ad7994263fa2be56.png", + "aggregators": ["CoinGecko", "Rubic", "Rango", "Ondo"], + "occurrences": 4, + "rwaData": { + "market": { + "nextOpen": "2026-05-18T20:01:00.000Z", + "nextClose": "2026-05-18T19:59:00.000Z" + }, + "nextPause": { + "start": null, + "end": null + }, + "ticker": "PSQ", + "instrumentType": "stock" + } + }, + "0xfdfdf5db2f4a72cb754ffa8896ea012dc2cc0f5e": { + "address": "0xfdfdf5db2f4a72cb754ffa8896ea012dc2cc0f5e", + "symbol": "RGTION", + "decimals": 18, + "name": "Rigetti Computing (Ondo Tokenized)", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xfdfdf5db2f4a72cb754ffa8896ea012dc2cc0f5e.png", + "aggregators": ["CoinGecko", "Rubic", "Rango", "Ondo"], + "occurrences": 4, + "rwaData": { + "market": { + "nextOpen": "2026-05-18T20:01:00.000Z", + "nextClose": "2026-05-18T19:59:00.000Z" + }, + "nextPause": { + "start": null, + "end": null + }, + "ticker": "RGTI", + "instrumentType": "stock" + } + }, + "0x67c5902f5210f62f37157cd9c735c693164c1378": { + "address": "0x67c5902f5210f62f37157cd9c735c693164c1378", + "symbol": "RTXON", + "decimals": 18, + "name": "RTX (Ondo Tokenized)", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x67c5902f5210f62f37157cd9c735c693164c1378.png", + "aggregators": ["CoinGecko", "Rubic", "Rango", "Ondo"], + "occurrences": 4, + "rwaData": { + "market": { + "nextOpen": "2026-05-18T20:01:00.000Z", + "nextClose": "2026-05-18T19:59:00.000Z" + }, + "nextPause": { + "start": "2026-05-21T23:52:00.000Z", + "end": "2026-05-22T08:10:00.000Z" + }, + "ticker": "RTX", + "instrumentType": "stock" + } + }, + "0xb2924278cc92e60db9b673d6a311d7a331dd703d": { + "address": "0xb2924278cc92e60db9b673d6a311d7a331dd703d", + "symbol": "SNAPON", + "decimals": 18, + "name": "Snap (Ondo Tokenized)", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xb2924278cc92e60db9b673d6a311d7a331dd703d.png", + "aggregators": ["CoinGecko", "Rubic", "Rango", "Ondo"], + "occurrences": 4, + "rwaData": { + "market": { + "nextOpen": "2026-05-19T13:31:00.000Z", + "nextClose": "2026-05-18T19:59:00.000Z" + }, + "nextPause": { + "start": null, + "end": null + }, + "ticker": "SNAP", + "instrumentType": "stock" + } + }, + "0x04d94914cd1d7ff749efedee764335777225b962": { + "address": "0x04d94914cd1d7ff749efedee764335777225b962", + "symbol": "RIVNON", + "decimals": 18, + "name": "Rivian Automotive (Ondo Tokenized)", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x04d94914cd1d7ff749efedee764335777225b962.png", + "aggregators": ["CoinGecko", "Rubic", "Rango", "Ondo"], + "occurrences": 4, + "rwaData": { + "market": { + "nextOpen": "2026-05-18T20:01:00.000Z", + "nextClose": "2026-05-18T19:59:00.000Z" + }, + "nextPause": { + "start": null, + "end": null + }, + "ticker": "RIVN", + "instrumentType": "stock" + } + }, + "0x5e29cf3e3fed4df50acab95f8268e9ee26ea36f2": { + "address": "0x5e29cf3e3fed4df50acab95f8268e9ee26ea36f2", + "symbol": "DXI", + "decimals": 18, + "name": "Dacxi", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x5e29cf3e3fed4df50acab95f8268e9ee26ea36f2.png", + "aggregators": ["CoinMarketCap", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0x966db065199a3edea2228c6e5eb6ac49ff251acc": { + "address": "0x966db065199a3edea2228c6e5eb6ac49ff251acc", + "symbol": "SOUNON", + "decimals": 18, + "name": "SoundHound AI (Ondo Tokenized)", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x966db065199a3edea2228c6e5eb6ac49ff251acc.png", + "aggregators": ["CoinGecko", "Rubic", "Rango", "Ondo"], + "occurrences": 4, + "rwaData": { + "market": { + "nextOpen": "2026-05-18T20:01:00.000Z", + "nextClose": "2026-05-18T19:59:00.000Z" + }, + "nextPause": { + "start": null, + "end": null + }, + "ticker": "SOUN", + "instrumentType": "stock" + } + }, + "0x423d42e505e64f99b6e277eb7ed324cc5606f139": { + "address": "0x423d42e505e64f99b6e277eb7ed324cc5606f139", + "symbol": "GLDON", + "decimals": 18, + "name": "SPDR Gold Shares (Ondo Tokenized)", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x423d42e505e64f99b6e277eb7ed324cc5606f139.png", + "aggregators": ["CoinGecko", "Rubic", "Rango", "Ondo"], + "occurrences": 4, + "rwaData": { + "market": { + "nextOpen": "2026-05-18T20:01:00.000Z", + "nextClose": "2026-05-18T19:59:00.000Z" + }, + "nextPause": { + "start": null, + "end": null + }, + "ticker": "GLD", + "instrumentType": "stock" + } + }, + "0xbf54eb503bb350583d11f4348086dc3608fa245c": { + "address": "0xbf54eb503bb350583d11f4348086dc3608fa245c", + "symbol": "NIKLON", + "decimals": 18, + "name": "Sprott Nickel Miners ETF (Ondo Tokenized)", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xbf54eb503bb350583d11f4348086dc3608fa245c.png", + "aggregators": ["CoinGecko", "Rubic", "Rango", "Ondo"], + "occurrences": 4, + "rwaData": { + "market": { + "nextOpen": "2026-05-19T13:31:00.000Z", + "nextClose": "2026-05-18T19:59:00.000Z" + }, + "nextPause": { + "start": null, + "end": null + }, + "ticker": "NIKL", + "instrumentType": "stock" + } + }, + "0x110cae53912c2ed9bf279cd70b3b699e26c79e58": { + "address": "0x110cae53912c2ed9bf279cd70b3b699e26c79e58", + "symbol": "WULFON", + "decimals": 18, + "name": "Terawulf (Ondo Tokenized)", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x110cae53912c2ed9bf279cd70b3b699e26c79e58.png", + "aggregators": ["CoinGecko", "Rubic", "Rango", "Ondo"], + "occurrences": 4, + "rwaData": { + "market": { + "nextOpen": "2026-05-19T13:31:00.000Z", + "nextClose": "2026-05-18T19:59:00.000Z" + }, + "nextPause": { + "start": null, + "end": null + }, + "ticker": "WULF", + "instrumentType": "stock" + } + }, + "0x58fc9d573ea773ef9a25c3de66f990b87ee5f50e": { + "address": "0x58fc9d573ea773ef9a25c3de66f990b87ee5f50e", + "symbol": "TXNON", + "decimals": 18, + "name": "Texas Instruments (Ondo Tokenized)", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x58fc9d573ea773ef9a25c3de66f990b87ee5f50e.png", + "aggregators": ["CoinGecko", "Rubic", "Rango", "Ondo"], + "occurrences": 4, + "rwaData": { + "market": { + "nextOpen": "2026-05-18T20:01:00.000Z", + "nextClose": "2026-05-18T19:59:00.000Z" + }, + "nextPause": { + "start": null, + "end": null + }, + "ticker": "TXN", + "instrumentType": "stock" + } + }, + "0x52928c95c4c7e934e0efcfab08853a0e4558861d": { + "address": "0x52928c95c4c7e934e0efcfab08853a0e4558861d", + "symbol": "HART", + "decimals": 18, + "name": "Hara", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x52928c95c4c7e934e0efcfab08853a0e4558861d.png", + "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0x1f5fc5c3c8b0f15c7e21af623936ff2b210b6415": { + "address": "0x1f5fc5c3c8b0f15c7e21af623936ff2b210b6415", + "symbol": "USOON", + "decimals": 18, + "name": "United States Oil Fund (Ondo Tokenized)", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x1f5fc5c3c8b0f15c7e21af623936ff2b210b6415.png", + "aggregators": ["CoinGecko", "Rubic", "Rango", "Ondo"], + "occurrences": 4, + "rwaData": { + "market": { + "nextOpen": "2026-05-18T20:01:00.000Z", + "nextClose": "2026-05-18T19:59:00.000Z" + }, + "nextPause": { + "start": null, + "end": null + }, + "ticker": "USO", + "instrumentType": "stock" + } + }, + "0x1140043f02d8ee34b10eae2e32ae921cda1459ee": { + "address": "0x1140043f02d8ee34b10eae2e32ae921cda1459ee", + "symbol": "REMXON", + "decimals": 18, + "name": "VanEck Rare Earth and Strategic Metals ETF (Ondo Tokenized)", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x1140043f02d8ee34b10eae2e32ae921cda1459ee.png", + "aggregators": ["CoinGecko", "Rubic", "Rango", "Ondo"], + "occurrences": 4, + "rwaData": { + "market": { + "nextOpen": "2026-05-19T13:31:00.000Z", + "nextClose": "2026-05-18T19:59:00.000Z" + }, + "nextPause": { + "start": null, + "end": null + }, + "ticker": "REMX", + "instrumentType": "stock" + } + }, + "0x57b392146848c6321bb2a3d4358df1bdeacdc62a": { + "address": "0x57b392146848c6321bb2a3d4358df1bdeacdc62a", + "symbol": "VTION", + "decimals": 18, + "name": "Vanguard Total Stock Market ETF (Ondo Tokenized)", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x57b392146848c6321bb2a3d4358df1bdeacdc62a.png", + "aggregators": ["CoinGecko", "Rubic", "Rango", "Ondo"], + "occurrences": 4, + "rwaData": { + "market": { + "nextOpen": "2026-05-18T20:01:00.000Z", + "nextClose": "2026-05-18T19:59:00.000Z" + }, + "nextPause": { + "start": null, + "end": null + }, + "ticker": "VTI", + "instrumentType": "stock" + } + }, + "0x84e8f1b9b40dd1832925702459d12ffb14d97bf3": { + "address": "0x84e8f1b9b40dd1832925702459d12ffb14d97bf3", + "symbol": "VTVON", + "decimals": 18, + "name": "Vanguard Value ETF (Ondo Tokenized)", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x84e8f1b9b40dd1832925702459d12ffb14d97bf3.png", + "aggregators": ["CoinGecko", "Rubic", "Rango", "Ondo"], + "occurrences": 4, + "rwaData": { + "market": { + "nextOpen": "2026-05-18T20:01:00.000Z", + "nextClose": "2026-05-18T19:59:00.000Z" + }, + "nextPause": { + "start": null, + "end": null + }, + "ticker": "VTV", + "instrumentType": "stock" + } + }, + "0x0e3d889d5b857c3e6eb361b9c9ae35bb7ddbd254": { + "address": "0x0e3d889d5b857c3e6eb361b9c9ae35bb7ddbd254", + "symbol": "VZON", + "decimals": 18, + "name": "Verizon (Ondo Tokenized)", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x0e3d889d5b857c3e6eb361b9c9ae35bb7ddbd254.png", + "aggregators": ["CoinGecko", "Rubic", "Rango", "Ondo"], + "occurrences": 4, + "rwaData": { + "market": { + "nextOpen": "2026-05-18T20:01:00.000Z", + "nextClose": "2026-05-18T19:59:00.000Z" + }, + "nextPause": { + "start": null, + "end": null + }, + "ticker": "VZ", + "instrumentType": "stock" + } + }, + "0x0752163d221d3d5d4b6e98bd616b22bd2b453964": { + "address": "0x0752163d221d3d5d4b6e98bd616b22bd2b453964", + "symbol": "VRTON", + "decimals": 18, + "name": "Vertiv (Ondo Tokenized)", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x0752163d221d3d5d4b6e98bd616b22bd2b453964.png", + "aggregators": ["CoinGecko", "Rubic", "Rango", "Ondo"], + "occurrences": 4, + "rwaData": { + "market": { + "nextOpen": "2026-05-18T20:01:00.000Z", + "nextClose": "2026-05-18T19:59:00.000Z" + }, + "nextPause": { + "start": null, + "end": null + }, + "ticker": "VRT", + "instrumentType": "stock" + } + }, + "0xf1573edddb75bf7ce165f142a17ed6b5e7f5aa13": { + "address": "0xf1573edddb75bf7ce165f142a17ed6b5e7f5aa13", + "symbol": "VSTON", + "decimals": 18, + "name": "Vistra (Ondo Tokenized)", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xf1573edddb75bf7ce165f142a17ed6b5e7f5aa13.png", + "aggregators": ["CoinGecko", "Rubic", "Rango", "Ondo"], + "occurrences": 4, + "rwaData": { + "market": { + "nextOpen": "2026-05-18T20:01:00.000Z", + "nextClose": "2026-05-18T19:59:00.000Z" + }, + "nextPause": { + "start": "2026-06-21T23:52:00.000Z", + "end": "2026-06-22T08:10:00.000Z" + }, + "ticker": "VST", + "instrumentType": "stock" + } + }, + "0xfb82561a955bf59b9263301126af490d3799e231": { + "address": "0xfb82561a955bf59b9263301126af490d3799e231", + "symbol": "USFRON", + "decimals": 18, + "name": "WisdomTree Floating Rate Treasury Fund (Ondo Tokenized)", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xfb82561a955bf59b9263301126af490d3799e231.png", + "aggregators": ["CoinGecko", "Rubic", "Rango", "Ondo"], + "occurrences": 4, + "rwaData": { + "market": { + "nextOpen": "2026-05-18T20:01:00.000Z", + "nextClose": "2026-05-18T19:59:00.000Z" + }, + "nextPause": { + "start": null, + "end": null + }, + "ticker": "USFR", + "instrumentType": "stock" + } + }, + "0x818234860a647d480b9bbcc9a47a23889f2ec900": { + "address": "0x818234860a647d480b9bbcc9a47a23889f2ec900", + "symbol": "ONDSON", + "decimals": 18, + "name": "Ondas Holdings (Ondo Tokenized)", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x818234860a647d480b9bbcc9a47a23889f2ec900.png", + "aggregators": ["CoinGecko", "Rubic", "Rango", "Ondo"], + "occurrences": 4, + "rwaData": { + "market": { + "nextOpen": "2026-05-18T20:01:00.000Z", + "nextClose": "2026-05-18T19:59:00.000Z" + }, + "nextPause": { + "start": null, + "end": null + }, + "ticker": "ONDS", + "instrumentType": "stock" + } + }, + "0xec169f9ac2161723a2d4febd9748bb529d6c12b5": { + "address": "0xec169f9ac2161723a2d4febd9748bb529d6c12b5", + "symbol": "HYSON", + "decimals": 18, + "name": "PIMCO 0-5 Year High Yield Corporate Bond Index ETF (Ondo Tokenized)", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xec169f9ac2161723a2d4febd9748bb529d6c12b5.png", + "aggregators": ["CoinGecko", "Rubic", "Rango", "Ondo"], + "occurrences": 4, + "rwaData": { + "market": { + "nextOpen": "2026-05-18T20:01:00.000Z", + "nextClose": "2026-05-18T19:59:00.000Z" + }, + "nextPause": { + "start": null, + "end": null + }, + "ticker": "HYS", + "instrumentType": "stock" + } + }, + "0xb6c3dc857845a713d3531cea5ac546f6767992f4": { + "address": "0xb6c3dc857845a713d3531cea5ac546f6767992f4", + "symbol": "ADCO", + "decimals": 6, + "name": "Advertise Coin", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xb6c3dc857845a713d3531cea5ac546f6767992f4.png", + "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0xd945d2031b4c63c0e363304fb771f709b502dc0a": { + "address": "0xd945d2031b4c63c0e363304fb771f709b502dc0a", + "symbol": "BMC", + "decimals": 18, + "name": "BountyMarketCap", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xd945d2031b4c63c0e363304fb771f709b502dc0a.png", + "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0xc95c9e3fa311664b5e744b3c2716547bec2ba7da": { + "address": "0xc95c9e3fa311664b5e744b3c2716547bec2ba7da", + "symbol": "QUBTON", + "decimals": 18, + "name": "Quantum Computing (Ondo Tokenized)", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xc95c9e3fa311664b5e744b3c2716547bec2ba7da.png", + "aggregators": ["CoinGecko", "Rubic", "Rango", "Ondo"], + "occurrences": 4, + "rwaData": { + "market": { + "nextOpen": "2026-05-19T00:05:00.000Z", + "nextClose": "2026-05-18T19:59:00.000Z" + }, + "nextPause": { + "start": null, + "end": null + }, + "ticker": "QUBT", + "instrumentType": "stock" + } + }, + "0x3a16af9ef328d087cc781053a2a2a27549ae6768": { + "address": "0x3a16af9ef328d087cc781053a2a2a27549ae6768", + "symbol": "RDWON", + "decimals": 18, + "name": "Redwire (Ondo Tokenized)", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x3a16af9ef328d087cc781053a2a2a27549ae6768.png", + "aggregators": ["CoinGecko", "Rubic", "Rango", "Ondo"], + "occurrences": 4, + "rwaData": { + "market": { + "nextOpen": "2026-05-18T20:01:00.000Z", + "nextClose": "2026-05-18T19:59:00.000Z" + }, + "nextPause": { + "start": null, + "end": null + }, + "ticker": "RDW", + "instrumentType": "stock" + } + }, + "0x5086bf358635b81d8c47c66d1c8b9e567db70c72": { + "address": "0x5086bf358635b81d8c47c66d1c8b9e567db70c72", + "symbol": "REUSD", + "decimals": 18, + "name": "REUSD", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x5086bf358635b81d8c47c66d1c8b9e567db70c72.png", + "aggregators": ["CoinGecko", "LiFi", "Rubic", "Rango"], + "occurrences": 4 + }, + "0x33ac34da58168de69ce74a66fbad81a88f974bd5": { + "address": "0x33ac34da58168de69ce74a66fbad81a88f974bd5", + "symbol": "REGNON", + "decimals": 18, + "name": "Regeneron Pharmaceuticals (Ondo Tokenized)", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x33ac34da58168de69ce74a66fbad81a88f974bd5.png", + "aggregators": ["CoinGecko", "Rubic", "Rango", "Ondo"], + "occurrences": 4, + "rwaData": { + "market": { + "nextOpen": "2026-05-18T20:01:00.000Z", + "nextClose": "2026-05-18T19:59:00.000Z" + }, + "nextPause": { + "start": "2026-05-19T23:52:00.000Z", + "end": "2026-05-20T00:12:00.000Z" + }, + "ticker": "REGN", + "instrumentType": "stock" + } + }, + "0x36e3b8d9aad0e51ac08e56a75a8f6005bf68535b": { + "address": "0x36e3b8d9aad0e51ac08e56a75a8f6005bf68535b", + "symbol": "RKLBON", + "decimals": 18, + "name": "Rocket Lab (Ondo Tokenized)", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x36e3b8d9aad0e51ac08e56a75a8f6005bf68535b.png", + "aggregators": ["CoinGecko", "Rubic", "Rango", "Ondo"], + "occurrences": 4, + "rwaData": { + "market": { + "nextOpen": "2026-05-18T20:01:00.000Z", + "nextClose": "2026-05-18T19:59:00.000Z" + }, + "nextPause": { + "start": null, + "end": null + }, + "ticker": "RKLB", + "instrumentType": "stock" + } + }, + "0x71e2400cf1cb83204f33794ed326636a71a9aafc": { + "address": "0x71e2400cf1cb83204f33794ed326636a71a9aafc", + "symbol": "SNDKON", + "decimals": 18, + "name": "SanDisk (Ondo Tokenized)", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x71e2400cf1cb83204f33794ed326636a71a9aafc.png", + "aggregators": ["CoinGecko", "Rubic", "Rango", "Ondo"], + "occurrences": 4, + "rwaData": { + "market": { + "nextOpen": "2026-05-18T20:01:00.000Z", + "nextClose": "2026-05-18T19:59:00.000Z" + }, + "nextPause": { + "start": null, + "end": null + }, + "ticker": "SNDK", + "instrumentType": "stock" + } + }, + "0xb53894f82a6b2d3b7365f24932b5bde1c5fb51ff": { + "address": "0xb53894f82a6b2d3b7365f24932b5bde1c5fb51ff", + "symbol": "STXON", + "decimals": 18, + "name": "Seagate (Ondo Tokenized)", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xb53894f82a6b2d3b7365f24932b5bde1c5fb51ff.png", + "aggregators": ["CoinGecko", "Rubic", "Rango", "Ondo"], + "occurrences": 4, + "rwaData": { + "market": { + "nextOpen": "2026-05-18T20:01:00.000Z", + "nextClose": "2026-05-18T19:59:00.000Z" + }, + "nextPause": { + "start": "2026-06-23T23:52:00.000Z", + "end": "2026-06-24T00:12:00.000Z" + }, + "ticker": "STX", + "instrumentType": "stock" + } + }, + "0x8e82a0d7347329703fb6c6a745b1c2b3abb1658c": { + "address": "0x8e82a0d7347329703fb6c6a745b1c2b3abb1658c", + "symbol": "SEDGON", + "decimals": 18, + "name": "SolarEdge Technologies (Ondo Tokenized)", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x8e82a0d7347329703fb6c6a745b1c2b3abb1658c.png", + "aggregators": ["CoinGecko", "Rubic", "Rango", "Ondo"], + "occurrences": 4, + "rwaData": { + "market": { + "nextOpen": "2026-05-19T13:31:00.000Z", + "nextClose": "2026-05-18T19:59:00.000Z" + }, + "nextPause": { + "start": null, + "end": null + }, + "ticker": "SEDG", + "instrumentType": "stock" + } + }, + "0xda81da76070a7377eaeeb2978f0e13c5d57fadb7": { + "address": "0xda81da76070a7377eaeeb2978f0e13c5d57fadb7", + "symbol": "SCCOON", + "decimals": 18, + "name": "Southern Copper (Ondo Tokenized)", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xda81da76070a7377eaeeb2978f0e13c5d57fadb7.png", + "aggregators": ["CoinGecko", "Rubic", "Rango", "Ondo"], + "occurrences": 4, + "rwaData": { + "market": { + "nextOpen": "2026-05-18T20:01:00.000Z", + "nextClose": "2026-05-18T19:59:00.000Z" + }, + "nextPause": { + "start": null, + "end": null + }, + "ticker": "SCCO", + "instrumentType": "stock" + } + }, + "0x39930751d4569f7dd45d1ba46e82cd3680ec2e0a": { + "address": "0x39930751d4569f7dd45d1ba46e82cd3680ec2e0a", + "symbol": "UNPON", + "decimals": 18, + "name": "Union Pacific Corporation (Ondo Tokenized)", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x39930751d4569f7dd45d1ba46e82cd3680ec2e0a.png", + "aggregators": ["CoinGecko", "Rubic", "Rango", "Ondo"], + "occurrences": 4, + "rwaData": { + "market": { + "nextOpen": "2026-05-18T20:01:00.000Z", + "nextClose": "2026-05-18T19:59:00.000Z" + }, + "nextPause": { + "start": "2026-05-28T23:52:00.000Z", + "end": "2026-05-29T00:12:00.000Z" + }, + "ticker": "UNP", + "instrumentType": "stock" + } + }, + "0x0f8887772262c449793890dcd3bf320308db423b": { + "address": "0x0f8887772262c449793890dcd3bf320308db423b", + "symbol": "UECON", + "decimals": 18, + "name": "Uranium Energy (Ondo Tokenized)", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x0f8887772262c449793890dcd3bf320308db423b.png", + "aggregators": ["CoinGecko", "Rubic", "Rango", "Ondo"], + "occurrences": 4, + "rwaData": { + "market": { + "nextOpen": "2026-05-19T08:01:00.000Z", + "nextClose": "2026-05-18T19:59:00.000Z" + }, + "nextPause": { + "start": "2026-06-01T09:00:00.000Z", + "end": "2026-06-01T23:30:00.000Z" + }, + "ticker": "UEC", + "instrumentType": "stock" + } + }, + "0x9ddb2524782684942fad28b44e76552cb7f3f548": { + "address": "0x9ddb2524782684942fad28b44e76552cb7f3f548", + "symbol": "BNOON", + "decimals": 18, + "name": "US Brent Oil Fund (Ondo Tokenized)", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x9ddb2524782684942fad28b44e76552cb7f3f548.png", + "aggregators": ["CoinGecko", "Rubic", "Rango", "Ondo"], + "occurrences": 4, + "rwaData": { + "market": { + "nextOpen": "2026-05-18T20:01:00.000Z", + "nextClose": "2026-05-18T19:59:00.000Z" + }, + "nextPause": { + "start": null, + "end": null + }, + "ticker": "BNO", + "instrumentType": "stock" + } + }, + "0xbca31049ab4782f0ffa9cffcb2cf48e8d6de4fb8": { + "address": "0xbca31049ab4782f0ffa9cffcb2cf48e8d6de4fb8", + "symbol": "OIHON", + "decimals": 18, + "name": "VanEck Oil Services ETF (Ondo Tokenized)", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xbca31049ab4782f0ffa9cffcb2cf48e8d6de4fb8.png", + "aggregators": ["CoinGecko", "Rubic", "Rango", "Ondo"], + "occurrences": 4, + "rwaData": { + "market": { + "nextOpen": "2026-05-18T20:01:00.000Z", + "nextClose": "2026-05-18T19:59:00.000Z" + }, + "nextPause": { + "start": null, + "end": null + }, + "ticker": "OIH", + "instrumentType": "stock" + } + }, + "0xccae8843e26259278c200c6506f6e5a3bdd524cd": { + "address": "0xccae8843e26259278c200c6506f6e5a3bdd524cd", + "symbol": "VNQON", + "decimals": 18, + "name": "Vanguard Real Estate ETF (Ondo Tokenized)", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xccae8843e26259278c200c6506f6e5a3bdd524cd.png", + "aggregators": ["CoinGecko", "Rubic", "Rango", "Ondo"], + "occurrences": 4, + "rwaData": { + "market": { + "nextOpen": "2026-05-18T20:01:00.000Z", + "nextClose": "2026-05-18T19:59:00.000Z" + }, + "nextPause": { + "start": null, + "end": null + }, + "ticker": "VNQ", + "instrumentType": "stock" + } + }, + "0xfc003a764a7b5054cc6fdb6b511f35dec8022751": { + "address": "0xfc003a764a7b5054cc6fdb6b511f35dec8022751", + "symbol": "VRTXON", + "decimals": 18, + "name": "Vertex Pharmaceuticals (Ondo Tokenized)", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xfc003a764a7b5054cc6fdb6b511f35dec8022751.png", + "aggregators": ["CoinGecko", "Rubic", "Rango", "Ondo"], + "occurrences": 4, + "rwaData": { + "market": { + "nextOpen": "2026-05-18T20:01:00.000Z", + "nextClose": "2026-05-18T19:59:00.000Z" + }, + "nextPause": { + "start": null, + "end": null + }, + "ticker": "VRTX", + "instrumentType": "stock" + } + }, + "0xbfe6e76a2fe099392064fbb3e868558c82beb917": { + "address": "0xbfe6e76a2fe099392064fbb3e868558c82beb917", + "symbol": "VFSON", + "decimals": 18, + "name": "VinFast Auto (Ondo Tokenized)", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xbfe6e76a2fe099392064fbb3e868558c82beb917.png", + "aggregators": ["CoinGecko", "Rubic", "Rango", "Ondo"], + "occurrences": 4, + "rwaData": { + "market": { + "nextOpen": "2026-05-19T13:31:00.000Z", + "nextClose": "2026-05-18T19:59:00.000Z" + }, + "nextPause": { + "start": "2026-06-08T09:00:00.000Z", + "end": "2026-06-08T23:30:00.000Z" + }, + "ticker": "VFS", + "instrumentType": "stock" + } + }, + "0x1fb5a8dcd70be750a97eaf8a47bbe74ab7d3183e": { + "address": "0x1fb5a8dcd70be750a97eaf8a47bbe74ab7d3183e", + "symbol": "WMON", + "decimals": 18, + "name": "Waste Management (Ondo Tokenized)", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x1fb5a8dcd70be750a97eaf8a47bbe74ab7d3183e.png", + "aggregators": ["CoinGecko", "Rubic", "Rango", "Ondo"], + "occurrences": 4, + "rwaData": { + "market": { + "nextOpen": "2026-05-18T20:01:00.000Z", + "nextClose": "2026-05-18T19:59:00.000Z" + }, + "nextPause": { + "start": "2026-06-04T23:52:00.000Z", + "end": "2026-06-05T00:12:00.000Z" + }, + "ticker": "WM", + "instrumentType": "stock" + } + }, + "0x44e89d34601b8d0155e16634d2553ef7f54dbab2": { + "address": "0x44e89d34601b8d0155e16634d2553ef7f54dbab2", + "symbol": "WDCON", + "decimals": 18, + "name": "Western Digital (Ondo Tokenized)", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x44e89d34601b8d0155e16634d2553ef7f54dbab2.png", + "aggregators": ["CoinGecko", "Rubic", "Rango", "Ondo"], + "occurrences": 4, + "rwaData": { + "market": { + "nextOpen": "2026-05-18T20:01:00.000Z", + "nextClose": "2026-05-18T19:59:00.000Z" + }, + "nextPause": { + "start": "2026-06-04T23:52:00.000Z", + "end": "2026-06-05T00:12:00.000Z" + }, + "ticker": "WDC", + "instrumentType": "stock" + } + }, + "0x52d134c6db5889fad3542a09eaf7aa90c0fdf9e4": { + "address": "0x52d134c6db5889fad3542a09eaf7aa90c0fdf9e4", + "symbol": "BIBTA", + "decimals": 18, + "name": "Backed IBTA Treasury Bond 1 3yr", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x52d134c6db5889fad3542a09eaf7aa90c0fdf9e4.png", + "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0xfa690b2b6f6b4da518035f1d0aa8b968c23341bb": { + "address": "0xfa690b2b6f6b4da518035f1d0aa8b968c23341bb", + "symbol": "INCEON", + "decimals": 18, + "name": "Franklin Income Equity Focus ETF (Ondo Tokenized)", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xfa690b2b6f6b4da518035f1d0aa8b968c23341bb.png", + "aggregators": ["CoinGecko", "Rubic", "Rango", "Ondo"], + "occurrences": 4, + "rwaData": { + "market": { + "nextOpen": "2026-05-19T13:31:00.000Z", + "nextClose": "2026-05-18T19:59:00.000Z" + }, + "nextPause": { + "start": null, + "end": null + }, + "ticker": "INCE", + "instrumentType": "stock" + } + }, + "0x1cb673005fc58447d881486919c14d8e7c741bb1": { + "address": "0x1cb673005fc58447d881486919c14d8e7c741bb1", + "symbol": "FGDLON", + "decimals": 18, + "name": "Franklin Responsibly Sourced Gold ETF (Ondo Tokenized)", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x1cb673005fc58447d881486919c14d8e7c741bb1.png", + "aggregators": ["CoinGecko", "Rubic", "Rango", "Ondo"], + "occurrences": 4, + "rwaData": { + "market": { + "nextOpen": "2026-05-19T08:01:00.000Z", + "nextClose": "2026-05-18T19:59:00.000Z" + }, + "nextPause": { + "start": null, + "end": null + }, + "ticker": "FGDL", + "instrumentType": "stock" + } + }, + "0x54c1ff361b402f66c13107421e6a431c3375ef24": { + "address": "0x54c1ff361b402f66c13107421e6a431c3375ef24", + "symbol": "FLHYON", + "decimals": 18, + "name": "Franklin High Yield Corporate ETF (Ondo Tokenized)", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x54c1ff361b402f66c13107421e6a431c3375ef24.png", + "aggregators": ["CoinGecko", "Rubic", "Rango", "Ondo"], + "occurrences": 4, + "rwaData": { + "market": { + "nextOpen": "2026-05-19T13:31:00.000Z", + "nextClose": "2026-05-18T19:59:00.000Z" + }, + "nextPause": { + "start": null, + "end": null + }, + "ticker": "FLHY", + "instrumentType": "stock" + } + }, + "0x65a44528e8868166401ea08b549e19552af589db": { + "address": "0x65a44528e8868166401ea08b549e19552af589db", + "symbol": "SRNUSD", + "decimals": 18, + "name": "Strata Senior NUSD", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x65a44528e8868166401ea08b549e19552af589db.png", + "aggregators": ["CoinGecko", "LiFi", "Rubic"], + "occurrences": 3 + }, + "0xfc807058a352b61aeef6a38e2d0fc3990225e772": { + "address": "0xfc807058a352b61aeef6a38e2d0fc3990225e772", + "symbol": "JRNUSD", + "decimals": 18, + "name": "Strata Junior NUSD", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xfc807058a352b61aeef6a38e2d0fc3990225e772.png", + "aggregators": ["CoinGecko", "LiFi", "Rubic"], + "occurrences": 3 + }, + "0x2ed2cc2c858a8a8219fd2f2d9e170285dbd02756": { + "address": "0x2ed2cc2c858a8a8219fd2f2d9e170285dbd02756", + "symbol": "SBET", + "decimals": 18, + "name": "Sports Bet", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x2ed2cc2c858a8a8219fd2f2d9e170285dbd02756.png", + "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0x5dbf760b4fd0cddde0366b33aeb338b2a6d77725": { + "address": "0x5dbf760b4fd0cddde0366b33aeb338b2a6d77725", + "symbol": "KPK_ETH_YIELDV2", + "decimals": 18, + "name": "kpk ETH Yield V2", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x5dbf760b4fd0cddde0366b33aeb338b2a6d77725.png", + "aggregators": ["CoinGecko", "LiFi", "Rubic"], + "occurrences": 3 + }, + "0xbfc66d8cce39e668fd5d3c10fd1b1eabb82c27b7": { + "address": "0xbfc66d8cce39e668fd5d3c10fd1b1eabb82c27b7", + "symbol": "OVO", + "decimals": 18, + "name": "OVO", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xbfc66d8cce39e668fd5d3c10fd1b1eabb82c27b7.png", + "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0xbb50a5341368751024ddf33385ba8cf61fe65ff9": { + "address": "0xbb50a5341368751024ddf33385ba8cf61fe65ff9", + "symbol": "KPK_ETH_PRIMEV2", + "decimals": 18, + "name": "kpk ETH Prime V2", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xbb50a5341368751024ddf33385ba8cf61fe65ff9.png", + "aggregators": ["CoinGecko", "LiFi", "Rubic"], + "occurrences": 3 + }, + "0x4ef53d2caa51c447fdfeeedee8f07fd1962c9ee6": { + "address": "0x4ef53d2caa51c447fdfeeedee8f07fd1962c9ee6", + "symbol": "KPK_USDC_PRIMEV2", + "decimals": 18, + "name": "kpk USDC Prime V2", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x4ef53d2caa51c447fdfeeedee8f07fd1962c9ee6.png", + "aggregators": ["CoinGecko", "LiFi", "Rubic"], + "occurrences": 3 + }, + "0x1ce270557c1f68cfb577b856766310bf8b47fd9c": { + "address": "0x1ce270557c1f68cfb577b856766310bf8b47fd9c", + "symbol": "MONG", + "decimals": 18, + "name": "MongCoin", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x1ce270557c1f68cfb577b856766310bf8b47fd9c.png", + "aggregators": ["CoinMarketCap", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0xde67d97b8770dc98c746a3fc0093c538666eb493": { + "address": "0xde67d97b8770dc98c746a3fc0093c538666eb493", + "symbol": "BROCK", + "decimals": 9, + "name": "Bitrock", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xde67d97b8770dc98c746a3fc0093c538666eb493.png", + "aggregators": ["CoinMarketCap", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0xae4533189c7281501f04ba4b7c37e3aded402902": { + "address": "0xae4533189c7281501f04ba4b7c37e3aded402902", + "symbol": "WFCA", + "decimals": 18, + "name": "World Friendship Cash", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xae4533189c7281501f04ba4b7c37e3aded402902.png", + "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0x8c106eedad96553e64287a5a6839c3cc78afa3d0": { + "address": "0x8c106eedad96553e64287a5a6839c3cc78afa3d0", + "symbol": "GTUSDCP", + "decimals": 18, + "name": "GTUSDCP", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x8c106eedad96553e64287a5a6839c3cc78afa3d0.png", + "aggregators": ["CoinGecko", "LiFi", "Rubic", "Rango"], + "occurrences": 4 + }, + "0xa3c31927a092bd54eb9a0b5dfe01d9db5028bd4f": { + "address": "0xa3c31927a092bd54eb9a0b5dfe01d9db5028bd4f", + "symbol": "ESPR", + "decimals": 9, + "name": "Espresso Bot", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xa3c31927a092bd54eb9a0b5dfe01d9db5028bd4f.png", + "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0x43fcd85e8d9d003d515f886891b7c742ac9f92da": { + "address": "0x43fcd85e8d9d003d515f886891b7c742ac9f92da", + "symbol": "GTWETHP", + "decimals": 18, + "name": "Gauntlet WETH Prime", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x43fcd85e8d9d003d515f886891b7c742ac9f92da.png", + "aggregators": ["CoinGecko", "LiFi", "Rubic"], + "occurrences": 3 + }, + "0xf3557ad5e984211ac8a0874a670344f2c3376471": { + "address": "0xf3557ad5e984211ac8a0874a670344f2c3376471", + "symbol": "GTUSDTP", + "decimals": 18, + "name": "Gauntlet USDT Prime", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xf3557ad5e984211ac8a0874a670344f2c3376471.png", + "aggregators": ["CoinGecko", "LiFi", "Rubic"], + "occurrences": 3 + }, + "0xbeef00b5d83c1188f07a5184230a805639c39f04": { + "address": "0xbeef00b5d83c1188f07a5184230a805639c39f04", + "symbol": "STEAKPYUSD", + "decimals": 18, + "name": "Steakhouse Prime Instant", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xbeef00b5d83c1188f07a5184230a805639c39f04.png", + "aggregators": ["CoinGecko", "LiFi", "Rubic"], + "occurrences": 3 + }, + "0x1cfa5641c01406ab8ac350ded7d735ec41298372": { + "address": "0x1cfa5641c01406ab8ac350ded7d735ec41298372", + "symbol": "CJPY", + "decimals": 18, + "name": "Convertible JPY Token", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x1cfa5641c01406ab8ac350ded7d735ec41298372.png", + "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0xbeef0046fcab1de47e41fb75bb3dc4dfc94108e3": { + "address": "0xbeef0046fcab1de47e41fb75bb3dc4dfc94108e3", + "symbol": "STEAKETH", + "decimals": 18, + "name": "STEAKETH", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xbeef0046fcab1de47e41fb75bb3dc4dfc94108e3.png", + "aggregators": ["CoinGecko", "LiFi", "Rubic", "Rango"], + "occurrences": 4 + }, + "0xbeef003c68896c7d2c3c60d363e8d71a49ab2bf9": { + "address": "0xbeef003c68896c7d2c3c60d363e8d71a49ab2bf9", + "symbol": "STEAKUSDT", + "decimals": 18, + "name": "STEAKUSDT", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xbeef003c68896c7d2c3c60d363e8d71a49ab2bf9.png", + "aggregators": ["CoinGecko", "LiFi", "Rubic", "Rango"], + "occurrences": 4 + }, + "0xf9fb20b8e097904f0ab7d12e9dbee88f2dcd0f16": { + "address": "0xf9fb20b8e097904f0ab7d12e9dbee88f2dcd0f16", + "symbol": "SBC", + "decimals": 18, + "name": "SBC", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xf9fb20b8e097904f0ab7d12e9dbee88f2dcd0f16.png", + "aggregators": ["CoinMarketCap", "Socket", "Rubic", "Rango"], + "occurrences": 4 + }, + "0x66908813cd7676269494b2c6f6dbab8b4f9e95df": { + "address": "0x66908813cd7676269494b2c6f6dbab8b4f9e95df", + "symbol": "CRWVON", + "decimals": 18, + "name": "CoreWeave (Ondo Tokenized)", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x66908813cd7676269494b2c6f6dbab8b4f9e95df.png", + "aggregators": ["CoinGecko", "Rubic", "Rango", "Ondo"], + "occurrences": 4, + "rwaData": { + "market": { + "nextOpen": "2026-05-18T20:01:00.000Z", + "nextClose": "2026-05-18T19:59:00.000Z" + }, + "nextPause": { + "start": null, + "end": null + }, + "ticker": "CRWV", + "instrumentType": "stock" + } + }, + "0x69cade383df52ec02562869da8aa146be08c5c3c": { + "address": "0x69cade383df52ec02562869da8aa146be08c5c3c", + "symbol": "VTRADING", + "decimals": 18, + "name": "Vtrading", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x69cade383df52ec02562869da8aa146be08c5c3c.png", + "aggregators": ["CoinMarketCap", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0xbd660e96d45e7c175512d1ed0ccc119cb980b81a": { + "address": "0xbd660e96d45e7c175512d1ed0ccc119cb980b81a", + "symbol": "EWYON", + "decimals": 18, + "name": "iShares MSCI South Korea ETF (Ondo Tokenized)", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xbd660e96d45e7c175512d1ed0ccc119cb980b81a.png", + "aggregators": ["CoinGecko", "Rubic", "Rango", "Ondo"], + "occurrences": 4, + "rwaData": { + "market": { + "nextOpen": "2026-05-18T20:01:00.000Z", + "nextClose": "2026-05-18T19:59:00.000Z" + }, + "nextPause": { + "start": null, + "end": null + }, + "ticker": "EWY", + "instrumentType": "stock" + } + }, + "0xa7f4195f10f1a62b102bd683eab131d657a6c6e4": { + "address": "0xa7f4195f10f1a62b102bd683eab131d657a6c6e4", + "symbol": "MBAG", + "decimals": 18, + "name": "MoonBag", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xa7f4195f10f1a62b102bd683eab131d657a6c6e4.png", + "aggregators": ["CoinMarketCap", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0x510dd21055188eda378714de3bb5591ffa0cc468": { + "address": "0x510dd21055188eda378714de3bb5591ffa0cc468", + "symbol": "BTGOON", + "decimals": 18, + "name": "BitGo Holdings (Ondo Tokenized)", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x510dd21055188eda378714de3bb5591ffa0cc468.png", + "aggregators": ["CoinGecko", "Rubic", "Rango", "Ondo"], + "occurrences": 4, + "rwaData": { + "market": { + "nextOpen": "2026-05-18T20:01:00.000Z", + "nextClose": "2026-05-18T19:59:00.000Z" + }, + "nextPause": { + "start": null, + "end": null + }, + "ticker": "BTGO", + "instrumentType": "stock" + } + }, + "0xdb85f6685950e285b1e611037bebe5b34e2b7d78": { + "address": "0xdb85f6685950e285b1e611037bebe5b34e2b7d78", + "symbol": "WZANO", + "decimals": 18, + "name": "Wrapped Zano", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xdb85f6685950e285b1e611037bebe5b34e2b7d78.png", + "aggregators": ["CoinGecko", "Socket", "Rubic", "Rango"], + "occurrences": 4 + }, + "0x0a00c19246fc41b2524d56c87ec44ce8b30ba0f8": { + "address": "0x0a00c19246fc41b2524d56c87ec44ce8b30ba0f8", + "symbol": "SQQQON", + "decimals": 18, + "name": "ProShares UltraPro Short QQQ (Ondo Tokenized)", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x0a00c19246fc41b2524d56c87ec44ce8b30ba0f8.png", + "aggregators": ["CoinGecko", "Rubic", "Rango", "Ondo"], + "occurrences": 4, + "rwaData": { + "market": { + "nextOpen": "2026-05-18T20:01:00.000Z", + "nextClose": "2026-05-18T19:59:00.000Z" + }, + "nextPause": { + "start": null, + "end": null + }, + "ticker": "SQQQ", + "instrumentType": "stock" + } + }, + "0x171120219d3223e008558654ec3254a0f206edb2": { + "address": "0x171120219d3223e008558654ec3254a0f206edb2", + "symbol": "XX", + "decimals": 9, + "name": "XX Network", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x171120219d3223e008558654ec3254a0f206edb2.png", + "aggregators": ["CoinMarketCap", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0xd5cce260e7a755ddf0fb9cdf06443d593aaeaa13": { + "address": "0xd5cce260e7a755ddf0fb9cdf06443d593aaeaa13", + "symbol": "KPK_USDC_YIELDV2", + "decimals": 18, + "name": "kpk USDC Yield V2", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xd5cce260e7a755ddf0fb9cdf06443d593aaeaa13.png", + "aggregators": ["CoinGecko", "LiFi", "Rubic"], + "occurrences": 3 + }, + "0xb7b1570e26315baad369b8ea0a943b7f140db9eb": { + "address": "0xb7b1570e26315baad369b8ea0a943b7f140db9eb", + "symbol": "DPS", + "decimals": 9, + "name": "DEEPSPACE", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xb7b1570e26315baad369b8ea0a943b7f140db9eb.png", + "aggregators": ["CoinMarketCap", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0x419905009e4656fdc02418c7df35b1e61ed5f726": { + "address": "0x419905009e4656fdc02418c7df35b1e61ed5f726", + "symbol": "RSUP", + "decimals": 18, + "name": "Resupply", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x419905009e4656fdc02418c7df35b1e61ed5f726.png", + "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0xe72fe64840f4ef80e3ec73a1c749491b5c938cb9": { + "address": "0xe72fe64840f4ef80e3ec73a1c749491b5c938cb9", + "symbol": "NTBILL", + "decimals": 6, + "name": "Nest Treasury Vault", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xe72fe64840f4ef80e3ec73a1c749491b5c938cb9.png", + "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0xdfc3829b127761a3218bfcee7fc92e1232c9d116": { + "address": "0xdfc3829b127761a3218bfcee7fc92e1232c9d116", + "symbol": "PRCY", + "decimals": 8, + "name": "PRivaCY Coin", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xdfc3829b127761a3218bfcee7fc92e1232c9d116.png", + "aggregators": ["CoinMarketCap", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0xeb08d539be0f6a6c90ea24276196e348f5688a02": { + "address": "0xeb08d539be0f6a6c90ea24276196e348f5688a02", + "symbol": "FCXON", + "decimals": 18, + "name": "Freeport-McMoRan (Ondo Tokenized)", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xeb08d539be0f6a6c90ea24276196e348f5688a02.png", + "aggregators": ["CoinGecko", "Rubic", "Rango", "Ondo"], + "occurrences": 4, + "rwaData": { + "market": { + "nextOpen": "2026-05-18T20:01:00.000Z", + "nextClose": "2026-05-18T19:59:00.000Z" + }, + "nextPause": { + "start": null, + "end": null + }, + "ticker": "FCX", + "instrumentType": "stock" + } + }, + "0xf1883461ec7bd883a3668749c5cf5f351080d059": { + "address": "0xf1883461ec7bd883a3668749c5cf5f351080d059", + "symbol": "PPLTON", + "decimals": 18, + "name": "abrdn Physical Platinum Shares ETF (Ondo Tokenized)", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xf1883461ec7bd883a3668749c5cf5f351080d059.png", + "aggregators": ["CoinGecko", "Rubic", "Rango", "Ondo"], + "occurrences": 4, + "rwaData": { + "market": { + "nextOpen": "2026-05-18T20:01:00.000Z", + "nextClose": "2026-05-18T19:59:00.000Z" + }, + "nextPause": { + "start": "2026-05-17T23:50:00.000Z", + "end": "2026-05-18T17:00:00.000Z" + }, + "ticker": "PPLT", + "instrumentType": "stock" + } + }, + "0xec3e2998c87ac9bced45381f84932c877cad6930": { + "address": "0xec3e2998c87ac9bced45381f84932c877cad6930", + "symbol": "MCDD", + "decimals": 18, + "name": "Dinari MCD", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xec3e2998c87ac9bced45381f84932c877cad6930.png", + "aggregators": ["CoinGecko", "Rubic", "Sonarwatch"], + "occurrences": 3 + }, + "0xf7248e588f88655d4a5230c4cec2db2cf4438ff0": { + "address": "0xf7248e588f88655d4a5230c4cec2db2cf4438ff0", + "symbol": "TQQQD", + "decimals": 18, + "name": "Dinari TQQQ", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xf7248e588f88655d4a5230c4cec2db2cf4438ff0.png", + "aggregators": ["CoinGecko", "Rubic", "Sonarwatch"], + "occurrences": 3 + }, + "0x4026f916beda6ca2b347c44517a83f5efab3f569": { + "address": "0x4026f916beda6ca2b347c44517a83f5efab3f569", + "symbol": "JPMD", + "decimals": 18, + "name": "Dinari JPM", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x4026f916beda6ca2b347c44517a83f5efab3f569.png", + "aggregators": ["CoinGecko", "Rubic", "Sonarwatch"], + "occurrences": 3 + }, + "0x33e5b290badbd8ba868b51a72ab6062601f9e9b2": { + "address": "0x33e5b290badbd8ba868b51a72ab6062601f9e9b2", + "symbol": "FBTCD", + "decimals": 18, + "name": "Dinari FBTC", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x33e5b290badbd8ba868b51a72ab6062601f9e9b2.png", + "aggregators": ["CoinGecko", "Rubic", "Sonarwatch"], + "occurrences": 3 + }, + "0xf0d7ee633636bae1d502a96f1130b00deaf06dc4": { + "address": "0xf0d7ee633636bae1d502a96f1130b00deaf06dc4", + "symbol": "ARKXD", + "decimals": 18, + "name": "Dinari ARKX", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xf0d7ee633636bae1d502a96f1130b00deaf06dc4.png", + "aggregators": ["CoinGecko", "Rubic", "Sonarwatch"], + "occurrences": 3 + }, + "0x67637766495858fd3c0a0e65a1feb91f78479753": { + "address": "0x67637766495858fd3c0a0e65a1feb91f78479753", + "symbol": "BAD", + "decimals": 18, + "name": "Dinari BA", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x67637766495858fd3c0a0e65a1feb91f78479753.png", + "aggregators": ["CoinGecko", "Rubic", "Sonarwatch"], + "occurrences": 3 + }, + "0xf12a38e6e51913ea04d70dba97d7420a13fd7941": { + "address": "0xf12a38e6e51913ea04d70dba97d7420a13fd7941", + "symbol": "BRRRD", + "decimals": 18, + "name": "Dinari BRRR", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xf12a38e6e51913ea04d70dba97d7420a13fd7941.png", + "aggregators": ["CoinGecko", "Rubic", "Sonarwatch"], + "occurrences": 3 + }, + "0x0c7ec64a7b3416bc3578e02d4b1e5763da756183": { + "address": "0x0c7ec64a7b3416bc3578e02d4b1e5763da756183", + "symbol": "BTCOD", + "decimals": 18, + "name": "Dinari BTCO", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x0c7ec64a7b3416bc3578e02d4b1e5763da756183.png", + "aggregators": ["CoinGecko", "Rubic", "Sonarwatch"], + "occurrences": 3 + }, + "0x084382d1cc4f4dfd1769b1cc1ac2a9b1f8365e90": { + "address": "0x084382d1cc4f4dfd1769b1cc1ac2a9b1f8365e90", + "symbol": "MODE", + "decimals": 18, + "name": "MODE", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x084382d1cc4f4dfd1769b1cc1ac2a9b1f8365e90.png", + "aggregators": ["CoinGecko", "Socket", "Rubic", "Rango"], + "occurrences": 4 + }, + "0x6c1aa3dd4195522ffd963215a13416324eaf9216": { + "address": "0x6c1aa3dd4195522ffd963215a13416324eaf9216", + "symbol": "BACD", + "decimals": 18, + "name": "Dinari BAC", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x6c1aa3dd4195522ffd963215a13416324eaf9216.png", + "aggregators": ["CoinGecko", "Rubic", "Sonarwatch"], + "occurrences": 3 + }, + "0x18c278edc2ed4ed9d23a8a73a3a6ed014094b784": { + "address": "0x18c278edc2ed4ed9d23a8a73a3a6ed014094b784", + "symbol": "BTCWD", + "decimals": 18, + "name": "Dinari BTCW", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x18c278edc2ed4ed9d23a8a73a3a6ed014094b784.png", + "aggregators": ["CoinGecko", "Rubic", "Sonarwatch"], + "occurrences": 3 + }, + "0x4cfba646ca9c05ad653fea94d485d15cfc449b2d": { + "address": "0x4cfba646ca9c05ad653fea94d485d15cfc449b2d", + "symbol": "CATD", + "decimals": 18, + "name": "Dinari CAT", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x4cfba646ca9c05ad653fea94d485d15cfc449b2d.png", + "aggregators": ["CoinGecko", "Rubic", "Sonarwatch"], + "occurrences": 3 + }, + "0x81b11d330d9af45599be0580b9bcba7f4e57bd35": { + "address": "0x81b11d330d9af45599be0580b9bcba7f4e57bd35", + "symbol": "DEFID", + "decimals": 18, + "name": "Dinari DEFI", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x81b11d330d9af45599be0580b9bcba7f4e57bd35.png", + "aggregators": ["CoinGecko", "Rubic", "Sonarwatch"], + "occurrences": 3 + }, + "0xaedc5e1e05c2fb8840f6d6df4e8f63e983c32bd5": { + "address": "0xaedc5e1e05c2fb8840f6d6df4e8f63e983c32bd5", + "symbol": "HODLD", + "decimals": 18, + "name": "Dinari HODL", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xaedc5e1e05c2fb8840f6d6df4e8f63e983c32bd5.png", + "aggregators": ["CoinGecko", "Rubic", "Sonarwatch"], + "occurrences": 3 + }, + "0x103d7c5c657cb92f4acec796da416d52a6a86bf6": { + "address": "0x103d7c5c657cb92f4acec796da416d52a6a86bf6", + "symbol": "AZND", + "decimals": 18, + "name": "Dinari AZN", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x103d7c5c657cb92f4acec796da416d52a6a86bf6.png", + "aggregators": ["CoinGecko", "Rubic", "Sonarwatch"], + "occurrences": 3 + }, + "0xcc195aa6859fbbe792b9e0b18c74c00a0e90c1f8": { + "address": "0xcc195aa6859fbbe792b9e0b18c74c00a0e90c1f8", + "symbol": "HOODD", + "decimals": 18, + "name": "Dinari HOOD", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xcc195aa6859fbbe792b9e0b18c74c00a0e90c1f8.png", + "aggregators": ["CoinGecko", "Rubic", "Sonarwatch"], + "occurrences": 3 + }, + "0x47db0ac0d6ad7765007f983184b12ae137f8ccac": { + "address": "0x47db0ac0d6ad7765007f983184b12ae137f8ccac", + "symbol": "HUTD", + "decimals": 18, + "name": "Dinari HUT", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x47db0ac0d6ad7765007f983184b12ae137f8ccac.png", + "aggregators": ["CoinGecko", "Rubic", "Sonarwatch"], + "occurrences": 3 + }, + "0x4be7aeda82870609cd934babc3a11b886b8cdb02": { + "address": "0x4be7aeda82870609cd934babc3a11b886b8cdb02", + "symbol": "IAUD", + "decimals": 18, + "name": "Dinari IAU", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x4be7aeda82870609cd934babc3a11b886b8cdb02.png", + "aggregators": ["CoinGecko", "Rubic", "Sonarwatch"], + "occurrences": 3 + }, + "0x842227039640c7d38e3b307a3ab556a7baeee730": { + "address": "0x842227039640c7d38e3b307a3ab556a7baeee730", + "symbol": "VD", + "decimals": 18, + "name": "Dinari V", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x842227039640c7d38e3b307a3ab556a7baeee730.png", + "aggregators": ["CoinGecko", "Rubic", "Sonarwatch"], + "occurrences": 3 + }, + "0x9f9e5c45d95d66e85e8a878007bf27ca2d987394": { + "address": "0x9f9e5c45d95d66e85e8a878007bf27ca2d987394", + "symbol": "VWOD", + "decimals": 18, + "name": "Dinari VWO", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x9f9e5c45d95d66e85e8a878007bf27ca2d987394.png", + "aggregators": ["CoinGecko", "Rubic", "Sonarwatch"], + "occurrences": 3 + }, + "0xc114678c6e4654d041b2006c90f08478b444c4e2": { + "address": "0xc114678c6e4654d041b2006c90f08478b444c4e2", + "symbol": "EDX", + "decimals": 18, + "name": "edeXa", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xc114678c6e4654d041b2006c90f08478b444c4e2.png", + "aggregators": ["CoinMarketCap", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0x05fed61f7a3eca96dc7f9a41b38fa7c5f0e62158": { + "address": "0x05fed61f7a3eca96dc7f9a41b38fa7c5f0e62158", + "symbol": "KOD", + "decimals": 18, + "name": "Dinari KO", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x05fed61f7a3eca96dc7f9a41b38fa7c5f0e62158.png", + "aggregators": ["CoinGecko", "Rubic", "Sonarwatch"], + "occurrences": 3 + }, + "0x251530c7f24d6904a31425b9afa24b0e1e5aafde": { + "address": "0x251530c7f24d6904a31425b9afa24b0e1e5aafde", + "symbol": "PHOD", + "decimals": 18, + "name": "Dinari PHO", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x251530c7f24d6904a31425b9afa24b0e1e5aafde.png", + "aggregators": ["CoinGecko", "Rubic", "Sonarwatch"], + "occurrences": 3 + }, + "0x0af5b873df94efeba34c0b0a9fa34a8c13e078cd": { + "address": "0x0af5b873df94efeba34c0b0a9fa34a8c13e078cd", + "symbol": "YUMD", + "decimals": 18, + "name": "Dinari YUM", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x0af5b873df94efeba34c0b0a9fa34a8c13e078cd.png", + "aggregators": ["CoinGecko", "Rubic", "Sonarwatch"], + "occurrences": 3 + }, + "0x058d411ab9911f90c74f471bdc9d2bb4cf9b309c": { + "address": "0x058d411ab9911f90c74f471bdc9d2bb4cf9b309c", + "symbol": "RIZ", + "decimals": 8, + "name": "Rivalz Network", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x058d411ab9911f90c74f471bdc9d2bb4cf9b309c.png", + "aggregators": ["CoinMarketCap", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0x51129dad3db1c28d693616308ae1062e43280ed7": { + "address": "0x51129dad3db1c28d693616308ae1062e43280ed7", + "symbol": "ZAI", + "decimals": 18, + "name": "Zesh AI Layer", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x51129dad3db1c28d693616308ae1062e43280ed7.png", + "aggregators": ["CoinGecko", "Rubic", "Sonarwatch"], + "occurrences": 3 + }, + "0xaa88ab7413f909eef5bd69bb2a2b6f97dc6743b8": { + "address": "0xaa88ab7413f909eef5bd69bb2a2b6f97dc6743b8", + "symbol": "PGD", + "decimals": 18, + "name": "Dinari PG", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xaa88ab7413f909eef5bd69bb2a2b6f97dc6743b8.png", + "aggregators": ["CoinGecko", "Rubic", "Sonarwatch"], + "occurrences": 3 + }, + "0x328a9bc033b22de0b82762c49762ce1440b45d4b": { + "address": "0x328a9bc033b22de0b82762c49762ce1440b45d4b", + "symbol": "PALLD", + "decimals": 18, + "name": "Dinari PALL", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x328a9bc033b22de0b82762c49762ce1440b45d4b.png", + "aggregators": ["CoinGecko", "Rubic", "Sonarwatch"], + "occurrences": 3 + }, + "0x09de9c8fbe90271e8886b55d66e3b37130e3a3da": { + "address": "0x09de9c8fbe90271e8886b55d66e3b37130e3a3da", + "symbol": "CCLD", + "decimals": 18, + "name": "Dinari CCL", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x09de9c8fbe90271e8886b55d66e3b37130e3a3da.png", + "aggregators": ["CoinGecko", "Rubic", "Sonarwatch"], + "occurrences": 3 + }, + "0x9ba08fa0428db35dde85d6c515184642c6301199": { + "address": "0x9ba08fa0428db35dde85d6c515184642c6301199", + "symbol": "FD", + "decimals": 18, + "name": "Dinari F", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x9ba08fa0428db35dde85d6c515184642c6301199.png", + "aggregators": ["CoinGecko", "Rubic", "Sonarwatch"], + "occurrences": 3 + }, + "0xc3260a0e1dd1f7ac6508ae29cb00f4fa4b544ba7": { + "address": "0xc3260a0e1dd1f7ac6508ae29cb00f4fa4b544ba7", + "symbol": "RKLBD", + "decimals": 18, + "name": "Dinari RKLB", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xc3260a0e1dd1f7ac6508ae29cb00f4fa4b544ba7.png", + "aggregators": ["CoinGecko", "Rubic", "Sonarwatch"], + "occurrences": 3 + }, + "0x52926f7f983d3d7ddcbe644a809d67bbe4a9e785": { + "address": "0x52926f7f983d3d7ddcbe644a809d67bbe4a9e785", + "symbol": "XOMD", + "decimals": 18, + "name": "Dinari XOM", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x52926f7f983d3d7ddcbe644a809d67bbe4a9e785.png", + "aggregators": ["CoinGecko", "Rubic", "Sonarwatch"], + "occurrences": 3 + }, + "0x9c879a1c2021bd0594750c148f37176395be0b8f": { + "address": "0x9c879a1c2021bd0594750c148f37176395be0b8f", + "symbol": "SPSKD", + "decimals": 18, + "name": "Dinari SPSK", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x9c879a1c2021bd0594750c148f37176395be0b8f.png", + "aggregators": ["CoinGecko", "Rubic", "Sonarwatch"], + "occurrences": 3 + }, + "0x5e796f7e42117ca82b1db3eb227bef11b7a48aa0": { + "address": "0x5e796f7e42117ca82b1db3eb227bef11b7a48aa0", + "symbol": "WALRFD", + "decimals": 18, + "name": "Dinari WALRF", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x5e796f7e42117ca82b1db3eb227bef11b7a48aa0.png", + "aggregators": ["CoinGecko", "Rubic", "Sonarwatch"], + "occurrences": 3 + }, + "0xe5ad37798daa0231279859d4699cf8f466e8b020": { + "address": "0xe5ad37798daa0231279859d4699cf8f466e8b020", + "symbol": "COSTD", + "decimals": 18, + "name": "Dinari COST", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xe5ad37798daa0231279859d4699cf8f466e8b020.png", + "aggregators": ["CoinGecko", "Rubic", "Sonarwatch"], + "occurrences": 3 + }, + "0x0a27c31f087cd3d30cdad339731bede4194531a4": { + "address": "0x0a27c31f087cd3d30cdad339731bede4194531a4", + "symbol": "CSCOD", + "decimals": 18, + "name": "Dinari CSCO", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x0a27c31f087cd3d30cdad339731bede4194531a4.png", + "aggregators": ["CoinGecko", "Rubic", "Sonarwatch"], + "occurrences": 3 + }, + "0x993d9ca16686746fef44e320e7f091578710cd18": { + "address": "0x993d9ca16686746fef44e320e7f091578710cd18", + "symbol": "ITAD", + "decimals": 18, + "name": "Dinari ITA", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x993d9ca16686746fef44e320e7f091578710cd18.png", + "aggregators": ["CoinGecko", "Rubic", "Sonarwatch"], + "occurrences": 3 + }, + "0xc4c6213024d9adc5132707942905918df7fbbbe8": { + "address": "0xc4c6213024d9adc5132707942905918df7fbbbe8", + "symbol": "EZBCD", + "decimals": 18, + "name": "Dinari EZBC", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xc4c6213024d9adc5132707942905918df7fbbbe8.png", + "aggregators": ["CoinGecko", "Rubic", "Sonarwatch"], + "occurrences": 3 + }, + "0xcf5905de7d83dce7cd109485c42723bb76eba5a6": { + "address": "0xcf5905de7d83dce7cd109485c42723bb76eba5a6", + "symbol": "EROD", + "decimals": 18, + "name": "Dinari ERO", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xcf5905de7d83dce7cd109485c42723bb76eba5a6.png", + "aggregators": ["CoinGecko", "Rubic", "Sonarwatch"], + "occurrences": 3 + }, + "0xe36fb561dcc177492da42a6ba5fd4a9d0987bfe2": { + "address": "0xe36fb561dcc177492da42a6ba5fd4a9d0987bfe2", + "symbol": "SIVRD", + "decimals": 18, + "name": "Dinari SIVR", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xe36fb561dcc177492da42a6ba5fd4a9d0987bfe2.png", + "aggregators": ["CoinGecko", "Rubic", "Sonarwatch"], + "occurrences": 3 + }, + "0xb49e40e97b41b253ecfe6b01a11f1a4f021724f9": { + "address": "0xb49e40e97b41b253ecfe6b01a11f1a4f021724f9", + "symbol": "SONYD", + "decimals": 18, + "name": "Dinari SONY", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xb49e40e97b41b253ecfe6b01a11f1a4f021724f9.png", + "aggregators": ["CoinGecko", "Rubic", "Sonarwatch"], + "occurrences": 3 + }, + "0xf373c3d96996ede40ea161f6929fd457cda8111c": { + "address": "0xf373c3d96996ede40ea161f6929fd457cda8111c", + "symbol": "DALD", + "decimals": 18, + "name": "Dinari DAL", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xf373c3d96996ede40ea161f6929fd457cda8111c.png", + "aggregators": ["CoinGecko", "Rubic", "Sonarwatch"], + "occurrences": 3 + }, + "0xe7ae30c03395d66f30a26c49c91edae151747911": { + "address": "0xe7ae30c03395d66f30a26c49c91edae151747911", + "symbol": "CLBTC", + "decimals": 18, + "name": "clBTC", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xe7ae30c03395d66f30a26c49c91edae151747911.png", + "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0x86ccbf2471be7ebca2c2c92a12fcf7089a44b4df": { + "address": "0x86ccbf2471be7ebca2c2c92a12fcf7089a44b4df", + "symbol": "SBUXD", + "decimals": 18, + "name": "Dinari SBUX", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x86ccbf2471be7ebca2c2c92a12fcf7089a44b4df.png", + "aggregators": ["CoinGecko", "Rubic", "Sonarwatch"], + "occurrences": 3 + }, + "0x088828f0a8e2dc8511e957230f4681371451fa1d": { + "address": "0x088828f0a8e2dc8511e957230f4681371451fa1d", + "symbol": "BOXXD", + "decimals": 18, + "name": "Dinari BOXX", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x088828f0a8e2dc8511e957230f4681371451fa1d.png", + "aggregators": ["CoinGecko", "Rubic", "Sonarwatch"], + "occurrences": 3 + }, + "0x2711018a5489df0d9816bdb7670d58ba23fb2d5e": { + "address": "0x2711018a5489df0d9816bdb7670d58ba23fb2d5e", + "symbol": "SPTED", + "decimals": 18, + "name": "Dinari SPTE", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x2711018a5489df0d9816bdb7670d58ba23fb2d5e.png", + "aggregators": ["CoinGecko", "Rubic", "Sonarwatch"], + "occurrences": 3 + }, + "0xc580919e2e4b083321f9e4c5ed56bc862f275916": { + "address": "0xc580919e2e4b083321f9e4c5ed56bc862f275916", + "symbol": "SOXLD", + "decimals": 18, + "name": "Dinari SOXL", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xc580919e2e4b083321f9e4c5ed56bc862f275916.png", + "aggregators": ["CoinGecko", "Rubic", "Sonarwatch"], + "occurrences": 3 + }, + "0xdf9be795fee855aaeb82dc112b0f27b62524a17b": { + "address": "0xdf9be795fee855aaeb82dc112b0f27b62524a17b", + "symbol": "SPUSD", + "decimals": 18, + "name": "Dinari SPUS", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xdf9be795fee855aaeb82dc112b0f27b62524a17b.png", + "aggregators": ["CoinGecko", "Rubic", "Sonarwatch"], + "occurrences": 3 + }, + "0x43c72ea1736072f42f785e704e5244cc5b9a6779": { + "address": "0x43c72ea1736072f42f785e704e5244cc5b9a6779", + "symbol": "GLDD", + "decimals": 18, + "name": "Dinari GLD", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x43c72ea1736072f42f785e704e5244cc5b9a6779.png", + "aggregators": ["CoinGecko", "Rubic", "Sonarwatch"], + "occurrences": 3 + }, + "0xc49da7892155ccc603f0b88eaedaa3b57910096f": { + "address": "0xc49da7892155ccc603f0b88eaedaa3b57910096f", + "symbol": "CVXD", + "decimals": 18, + "name": "Dinari CVX", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xc49da7892155ccc603f0b88eaedaa3b57910096f.png", + "aggregators": ["CoinGecko", "Rubic", "Sonarwatch"], + "occurrences": 3 + }, + "0xf0e9e98ef4b78ddfbbfafba519345d877eb7a81e": { + "address": "0xf0e9e98ef4b78ddfbbfafba519345d877eb7a81e", + "symbol": "EEMD", + "decimals": 18, + "name": "Dinari EEM", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xf0e9e98ef4b78ddfbbfafba519345d877eb7a81e.png", + "aggregators": ["CoinGecko", "Rubic", "Sonarwatch"], + "occurrences": 3 + }, + "0x88cee7bf66435f6fdbb681a6a522f26598fe39a2": { + "address": "0x88cee7bf66435f6fdbb681a6a522f26598fe39a2", + "symbol": "HYMBD", + "decimals": 18, + "name": "Dinari HYMB", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x88cee7bf66435f6fdbb681a6a522f26598fe39a2.png", + "aggregators": ["CoinGecko", "Rubic", "Sonarwatch"], + "occurrences": 3 + }, + "0x52bd2411f090af9b1fc688fcf3c4242ab0e7ddaf": { + "address": "0x52bd2411f090af9b1fc688fcf3c4242ab0e7ddaf", + "symbol": "MELID", + "decimals": 18, + "name": "Dinari MELI", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x52bd2411f090af9b1fc688fcf3c4242ab0e7ddaf.png", + "aggregators": ["CoinGecko", "Rubic", "Sonarwatch"], + "occurrences": 3 + }, + "0x3482968ed0e10bf7446706a6680e8a8f486f61b0": { + "address": "0x3482968ed0e10bf7446706a6680e8a8f486f61b0", + "symbol": "SNOWD", + "decimals": 18, + "name": "Dinari SNOW", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x3482968ed0e10bf7446706a6680e8a8f486f61b0.png", + "aggregators": ["CoinGecko", "Rubic", "Sonarwatch"], + "occurrences": 3 + }, + "0xfae8f97cafea5133159992e83a4b30e1aae88328": { + "address": "0xfae8f97cafea5133159992e83a4b30e1aae88328", + "symbol": "SPWOD", + "decimals": 18, + "name": "Dinari SPWO", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xfae8f97cafea5133159992e83a4b30e1aae88328.png", + "aggregators": ["CoinGecko", "Rubic", "Sonarwatch"], + "occurrences": 3 + }, + "0x1194e99f23c8b99cb55a328160aeb0bb010bf0c3": { + "address": "0x1194e99f23c8b99cb55a328160aeb0bb010bf0c3", + "symbol": "UFOD", + "decimals": 18, + "name": "Dinari UFO", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x1194e99f23c8b99cb55a328160aeb0bb010bf0c3.png", + "aggregators": ["CoinGecko", "Rubic", "Sonarwatch"], + "occurrences": 3 + }, + "0x90fa6faf82ddcbbbd48f66ee70b8515a7a626ac3": { + "address": "0x90fa6faf82ddcbbbd48f66ee70b8515a7a626ac3", + "symbol": "TJXD", + "decimals": 18, + "name": "Dinari TJX", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x90fa6faf82ddcbbbd48f66ee70b8515a7a626ac3.png", + "aggregators": ["CoinGecko", "Rubic", "Sonarwatch"], + "occurrences": 3 + }, + "0x24d7ad9402717f429a81925fe7643b78918eda8b": { + "address": "0x24d7ad9402717f429a81925fe7643b78918eda8b", + "symbol": "XION", + "decimals": 6, + "name": "XION", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x24d7ad9402717f429a81925fe7643b78918eda8b.png", + "aggregators": ["CoinMarketCap", "Rubic", "Squid", "Sonarwatch"], + "occurrences": 4 + }, + "0x5197ab79b03f1479cbf391a2030b8883546ff251": { + "address": "0x5197ab79b03f1479cbf391a2030b8883546ff251", + "symbol": "SOR", + "decimals": 18, + "name": "Sorcery Finance", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x5197ab79b03f1479cbf391a2030b8883546ff251.png", + "aggregators": ["CoinMarketCap", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0xaf614642e58c65b71a3aaab2d3afc20e5cb93246": { + "address": "0xaf614642e58c65b71a3aaab2d3afc20e5cb93246", + "symbol": "WEATD", + "decimals": 18, + "name": "Dinari WEAT", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xaf614642e58c65b71a3aaab2d3afc20e5cb93246.png", + "aggregators": ["CoinGecko", "Rubic", "Sonarwatch"], + "occurrences": 3 + }, + "0x3bce5cb273f0f148010bbea2470e7b5df84c7812": { + "address": "0x3bce5cb273f0f148010bbea2470e7b5df84c7812", + "symbol": "SCETH", + "decimals": 18, + "name": "Rings scETH", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x3bce5cb273f0f148010bbea2470e7b5df84c7812.png", + "aggregators": ["CoinGecko", "Rubic", "Sonarwatch"], + "occurrences": 3 + }, + "0x9e6dbde4211e6853b33b8bcd5ce82144997c63ba": { + "address": "0x9e6dbde4211e6853b33b8bcd5ce82144997c63ba", + "symbol": "SQD", + "decimals": 18, + "name": "Dinari SQ", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x9e6dbde4211e6853b33b8bcd5ce82144997c63ba.png", + "aggregators": ["CoinGecko", "Rubic", "Sonarwatch"], + "occurrences": 3 + }, + "0x461ad31f69e694e2e20b2070d8be1105626110c3": { + "address": "0x461ad31f69e694e2e20b2070d8be1105626110c3", + "symbol": "RBLXD", + "decimals": 18, + "name": "Dinari RBLX", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x461ad31f69e694e2e20b2070d8be1105626110c3.png", + "aggregators": ["CoinGecko", "Rubic", "Sonarwatch"], + "occurrences": 3 + }, + "0x92217ccaedbdbc54c76c15fea18823db1558fdc9": { + "address": "0x92217ccaedbdbc54c76c15fea18823db1558fdc9", + "symbol": "FULA", + "decimals": 18, + "name": "Functionland", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x92217ccaedbdbc54c76c15fea18823db1558fdc9.png", + "aggregators": ["CoinMarketCap", "Rubic", "Sonarwatch"], + "occurrences": 3 + }, + "0xd71b200bf061509b85df50cc0d8cdee8818a4577": { + "address": "0xd71b200bf061509b85df50cc0d8cdee8818a4577", + "symbol": "COIND", + "decimals": 18, + "name": "Dinari COIN", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xd71b200bf061509b85df50cc0d8cdee8818a4577.png", + "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0xff33a6b3dc0127862eedd3978609404b22298a54": { + "address": "0xff33a6b3dc0127862eedd3978609404b22298a54", + "symbol": "GORPLES", + "decimals": 18, + "name": "GorplesCoin", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xff33a6b3dc0127862eedd3978609404b22298a54.png", + "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0x76bf2d1e6dfda645c0c17440b17eccc181dfc351": { + "address": "0x76bf2d1e6dfda645c0c17440b17eccc181dfc351", + "symbol": "YBETH", + "decimals": 18, + "name": "Veno Yield Bearing ETH", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x76bf2d1e6dfda645c0c17440b17eccc181dfc351.png", + "aggregators": ["CoinGecko", "Rubic", "Sonarwatch"], + "occurrences": 3 + }, + "0xf3e07812ebc8604fddb0aa35ff79a03f48f48948": { + "address": "0xf3e07812ebc8604fddb0aa35ff79a03f48f48948", + "symbol": "JART", + "decimals": 18, + "name": "JournArt OLD", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xf3e07812ebc8604fddb0aa35ff79a03f48f48948.png", + "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0xfa59075dfce274e028b58bddfcc3d709960f594a": { + "address": "0xfa59075dfce274e028b58bddfcc3d709960f594a", + "symbol": "YBUSD", + "decimals": 18, + "name": "Veno Yield Bearing USD", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xfa59075dfce274e028b58bddfcc3d709960f594a.png", + "aggregators": ["CoinGecko", "Rubic", "Sonarwatch"], + "occurrences": 3 + }, + "0x90b7e285ab6cf4e3a2487669dba3e339db8a3320": { + "address": "0x90b7e285ab6cf4e3a2487669dba3e339db8a3320", + "symbol": "DUCKIES", + "decimals": 8, + "name": "Yellow Duckies", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x90b7e285ab6cf4e3a2487669dba3e339db8a3320.png", + "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0x572975ff6d5136c81c8d7448b6361ef9eefe1ab0": { + "address": "0x572975ff6d5136c81c8d7448b6361ef9eefe1ab0", + "symbol": "WSTUSDT", + "decimals": 18, + "name": "Wrapped Staked USDT", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x572975ff6d5136c81c8d7448b6361ef9eefe1ab0.png", + "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0x6967f0974d76d34e140cae27efea32cdf546b58e": { + "address": "0x6967f0974d76d34e140cae27efea32cdf546b58e", + "symbol": "GMRT", + "decimals": 18, + "name": "The Game Company", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x6967f0974d76d34e140cae27efea32cdf546b58e.png", + "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0xade6057fcafa57d6d51ffa341c64ce4814995995": { + "address": "0xade6057fcafa57d6d51ffa341c64ce4814995995", + "symbol": "BZPR1", + "decimals": 18, + "name": "Backed ZPR1 1 3 Month T Bill", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xade6057fcafa57d6d51ffa341c64ce4814995995.png", + "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0xb55ee890426341fe45ee6dc788d2d93d25b59063": { + "address": "0xb55ee890426341fe45ee6dc788d2d93d25b59063", + "symbol": "LOVE", + "decimals": 18, + "name": "Love io", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xb55ee890426341fe45ee6dc788d2d93d25b59063.png", + "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0x31a2e08f4232329e4eddb025c0275f43c9cd56d7": { + "address": "0x31a2e08f4232329e4eddb025c0275f43c9cd56d7", + "symbol": "LUSD", + "decimals": 18, + "name": "LUSD", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x31a2e08f4232329e4eddb025c0275f43c9cd56d7.png", + "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0x735fa792e731a2e8f83f32eb539841b7b72e6d8f": { + "address": "0x735fa792e731a2e8f83f32eb539841b7b72e6d8f", + "symbol": "EEUR", + "decimals": 18, + "name": "ARYZE eEUR", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x735fa792e731a2e8f83f32eb539841b7b72e6d8f.png", + "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0x5b8650cd999b23cf39ab12e3213fbc8709c7f5cb": { + "address": "0x5b8650cd999b23cf39ab12e3213fbc8709c7f5cb", + "symbol": "MAZI", + "decimals": 18, + "name": "MaziMatic", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x5b8650cd999b23cf39ab12e3213fbc8709c7f5cb.png", + "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0x26aad156ba8efa501b32b42ffcdc8413f90e9c99": { + "address": "0x26aad156ba8efa501b32b42ffcdc8413f90e9c99", + "symbol": "EDU", + "decimals": 18, + "name": "Open Campus", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x26aad156ba8efa501b32b42ffcdc8413f90e9c99.png", + "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0x837d904a3799c0769079be9ecbaddf1abd4ccd6e": { + "address": "0x837d904a3799c0769079be9ecbaddf1abd4ccd6e", + "symbol": "TAROT", + "decimals": 18, + "name": "Tarot V1", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x837d904a3799c0769079be9ecbaddf1abd4ccd6e.png", + "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0xa4335da338ec4c07c391fc1a9bf75f306adadc08": { + "address": "0xa4335da338ec4c07c391fc1a9bf75f306adadc08", + "symbol": "EUSD", + "decimals": 18, + "name": "ARYZE eUSD", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xa4335da338ec4c07c391fc1a9bf75f306adadc08.png", + "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0x7df4122d3eae29fc8fb6be58d9177e8e560be4fb": { + "address": "0x7df4122d3eae29fc8fb6be58d9177e8e560be4fb", + "symbol": "XCCX", + "decimals": 6, + "name": "BlockChainCoinX", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x7df4122d3eae29fc8fb6be58d9177e8e560be4fb.png", + "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0x800ee7b69dce0f6649bb0c879b468a665b1a44ce": { + "address": "0x800ee7b69dce0f6649bb0c879b468a665b1a44ce", + "symbol": "AMCD", + "decimals": 18, + "name": "Dinari AMC", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x800ee7b69dce0f6649bb0c879b468a665b1a44ce.png", + "aggregators": ["CoinGecko", "Rubic", "Sonarwatch"], + "occurrences": 3 + }, + "0x1d1498166ddceee616a6d99868e1e0677300056f": { + "address": "0x1d1498166ddceee616a6d99868e1e0677300056f", + "symbol": "SPACE", + "decimals": 18, + "name": "Space Token", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x1d1498166ddceee616a6d99868e1e0677300056f.png", + "aggregators": ["CoinMarketCap", "Rubic", "Sonarwatch"], + "occurrences": 3 + }, + "0xab5bff303312e24dc77bb71a451343f9feb20093": { + "address": "0xab5bff303312e24dc77bb71a451343f9feb20093", + "symbol": "GULL", + "decimals": 18, + "name": "GULL", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xab5bff303312e24dc77bb71a451343f9feb20093.png", + "aggregators": ["CoinGecko", "Rubic", "Sonarwatch"], + "occurrences": 3 + }, + "0x92a42db88ed0f02c71d439e55962ca7cab0168b5": { + "address": "0x92a42db88ed0f02c71d439e55962ca7cab0168b5", + "symbol": "TRDG", + "decimals": 9, + "name": "TRDGtoken", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x92a42db88ed0f02c71d439e55962ca7cab0168b5.png", + "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0x388d819724dd6d71760a38f00dc01d310d879771": { + "address": "0x388d819724dd6d71760a38f00dc01d310d879771", + "symbol": "JM", + "decimals": 8, + "name": "JustMoney", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x388d819724dd6d71760a38f00dc01d310d879771.png", + "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0x396ec402b42066864c406d1ac3bc86b575003ed8": { + "address": "0x396ec402b42066864c406d1ac3bc86b575003ed8", + "symbol": "BUY", + "decimals": 2, + "name": "Buying com", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x396ec402b42066864c406d1ac3bc86b575003ed8.png", + "aggregators": ["CoinMarketCap", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0xca1262e77fb25c0a4112cfc9bad3ff54f617f2e6": { + "address": "0xca1262e77fb25c0a4112cfc9bad3ff54f617f2e6", + "symbol": "WJXN", + "decimals": 0, + "name": "Jax Network", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xca1262e77fb25c0a4112cfc9bad3ff54f617f2e6.png", + "aggregators": ["CoinMarketCap", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0xbd31ea8212119f94a611fa969881cba3ea06fa3d": { + "address": "0xbd31ea8212119f94a611fa969881cba3ea06fa3d", + "symbol": "LUNA", + "decimals": 6, + "name": "LUNA Token", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xbd31ea8212119f94a611fa969881cba3ea06fa3d.png", + "aggregators": ["Metamask", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0xa831a4e181f25d3b35949e582ff27cc44e703f37": { + "address": "0xa831a4e181f25d3b35949e582ff27cc44e703f37", + "symbol": "ALEX", + "decimals": 18, + "name": "ALEX Lab", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xa831a4e181f25d3b35949e582ff27cc44e703f37.png", + "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0x7c9f4c87d911613fe9ca58b579f737911aad2d43": { + "address": "0x7c9f4c87d911613fe9ca58b579f737911aad2d43", + "symbol": "MATICPO", + "decimals": 18, + "name": "MATIC Wormhole", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x7c9f4c87d911613fe9ca58b579f737911aad2d43.png", + "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0x845e2e8b42dced7dedcdba9bde32c9e338224f97": { + "address": "0x845e2e8b42dced7dedcdba9bde32c9e338224f97", + "symbol": "SATOZ", + "decimals": 8, + "name": "Satozhi", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x845e2e8b42dced7dedcdba9bde32c9e338224f97.png", + "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0x6325cf7b3b645de6355e37e0e88f6ff0030f9e97": { + "address": "0x6325cf7b3b645de6355e37e0e88f6ff0030f9e97", + "symbol": "CROW", + "decimals": 18, + "name": "CROW", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x6325cf7b3b645de6355e37e0e88f6ff0030f9e97.png", + "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0x5d7bb43885988eb8bfb9d854077e7ccfd6bf8c50": { + "address": "0x5d7bb43885988eb8bfb9d854077e7ccfd6bf8c50", + "symbol": "ADBED", + "decimals": 18, + "name": "Dinari ADBE", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x5d7bb43885988eb8bfb9d854077e7ccfd6bf8c50.png", + "aggregators": ["CoinGecko", "Rubic", "Sonarwatch"], + "occurrences": 3 + }, + "0xdd13dedecebda566322195bc4451d672a148752c": { + "address": "0xdd13dedecebda566322195bc4451d672a148752c", + "symbol": "PRIMAL", + "decimals": 18, + "name": "PRIMAL", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xdd13dedecebda566322195bc4451d672a148752c.png", + "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0xc7026a20a640bc71b9074f7aed52a00cd9147091": { + "address": "0xc7026a20a640bc71b9074f7aed52a00cd9147091", + "symbol": "TGR", + "decimals": 18, + "name": "Tegro", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xc7026a20a640bc71b9074f7aed52a00cd9147091.png", + "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0xb990d93c308a31c737aa91839e8ba8eaf4017d7a": { + "address": "0xb990d93c308a31c737aa91839e8ba8eaf4017d7a", + "symbol": "PIRATE", + "decimals": 8, + "name": "PirateCash", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xb990d93c308a31c737aa91839e8ba8eaf4017d7a.png", + "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0x9b25889c493ae6df34ceef1ecb10d77c1ba73318": { + "address": "0x9b25889c493ae6df34ceef1ecb10d77c1ba73318", + "symbol": "MEAN", + "decimals": 6, + "name": "Mean DAO", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x9b25889c493ae6df34ceef1ecb10d77c1ba73318.png", + "aggregators": ["CoinMarketCap", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0xc2708a3a4ba7f64bddc1a49f92f941bc77cad23a": { + "address": "0xc2708a3a4ba7f64bddc1a49f92f941bc77cad23a", + "symbol": "EGG", + "decimals": 18, + "name": "Waves Ducks", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xc2708a3a4ba7f64bddc1a49f92f941bc77cad23a.png", + "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0x15fa5d3dbd11a831b72b92c1705bc9f801e233cb": { + "address": "0x15fa5d3dbd11a831b72b92c1705bc9f801e233cb", + "symbol": "PXP", + "decimals": 18, + "name": "PointPay", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x15fa5d3dbd11a831b72b92c1705bc9f801e233cb.png", + "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0x57d579f483854c62fef850b8a5332b0d8424b7e2": { + "address": "0x57d579f483854c62fef850b8a5332b0d8424b7e2", + "symbol": "OPENX", + "decimals": 18, + "name": "OpenSwap One", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x57d579f483854c62fef850b8a5332b0d8424b7e2.png", + "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0xd7b675cd5c84a13d1d0f84509345530f6421b57c": { + "address": "0xd7b675cd5c84a13d1d0f84509345530f6421b57c", + "symbol": "OOOI", + "decimals": 18, + "name": "Corridor Finance", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xd7b675cd5c84a13d1d0f84509345530f6421b57c.png", + "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0x0f76d32cdccdcbd602a55af23eaf58fd1ee17245": { + "address": "0x0f76d32cdccdcbd602a55af23eaf58fd1ee17245", + "symbol": "BERNA", + "decimals": 18, + "name": "Backed ERNA Bond", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x0f76d32cdccdcbd602a55af23eaf58fd1ee17245.png", + "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0xd8c0b13b551718b808fc97ead59499d5ef862775": { + "address": "0xd8c0b13b551718b808fc97ead59499d5ef862775", + "symbol": "MUSIC", + "decimals": 8, + "name": "Gala Music", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xd8c0b13b551718b808fc97ead59499d5ef862775.png", + "aggregators": ["CoinMarketCap", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0x9482c407d32204462d8cbbc0755e96c39b79878e": { + "address": "0x9482c407d32204462d8cbbc0755e96c39b79878e", + "symbol": "ARC", + "decimals": 18, + "name": "Archly Finance", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x9482c407d32204462d8cbbc0755e96c39b79878e.png", + "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0x1155db64b59265f57533bc0f9ae012fffd34eb7f": { + "address": "0x1155db64b59265f57533bc0f9ae012fffd34eb7f", + "symbol": "YAKU", + "decimals": 9, + "name": "Yaku", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x1155db64b59265f57533bc0f9ae012fffd34eb7f.png", + "aggregators": ["CoinMarketCap", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0xf1264873436a0771e440e2b28072fafcc5eebd01": { + "address": "0xf1264873436a0771e440e2b28072fafcc5eebd01", + "symbol": "KNS", + "decimals": 18, + "name": "Kenshi", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xf1264873436a0771e440e2b28072fafcc5eebd01.png", + "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0xaf6a1125d4cc55a4110dc63cd2ff6e005afb8676": { + "address": "0xaf6a1125d4cc55a4110dc63cd2ff6e005afb8676", + "symbol": "PUNK", + "decimals": 18, + "name": "PunkCity", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xaf6a1125d4cc55a4110dc63cd2ff6e005afb8676.png", + "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0x2cad08360009226261ab4d32684aacdbbec3f8da": { + "address": "0x2cad08360009226261ab4d32684aacdbbec3f8da", + "symbol": "NLYD", + "decimals": 18, + "name": "Dinari NLY", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x2cad08360009226261ab4d32684aacdbbec3f8da.png", + "aggregators": ["CoinGecko", "Rubic", "Sonarwatch"], + "occurrences": 3 + }, + "0xd0f48caf8fdb1e7b1fb8b08b914e0b44ed0aade0": { + "address": "0xd0f48caf8fdb1e7b1fb8b08b914e0b44ed0aade0", + "symbol": "GBTCD", + "decimals": 18, + "name": "Dinari GBTC", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xd0f48caf8fdb1e7b1fb8b08b914e0b44ed0aade0.png", + "aggregators": ["CoinGecko", "Rubic", "Sonarwatch"], + "occurrences": 3 + }, + "0xd2a64bb1776f02e6b2b5503fe6a8ca6bf1f46d07": { + "address": "0xd2a64bb1776f02e6b2b5503fe6a8ca6bf1f46d07", + "symbol": "WOODD", + "decimals": 18, + "name": "Dinari WOOD", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xd2a64bb1776f02e6b2b5503fe6a8ca6bf1f46d07.png", + "aggregators": ["CoinGecko", "Rubic", "Sonarwatch"], + "occurrences": 3 + }, + "0x0ecb3513ebf1e62be765452900608aa957dbd13d": { + "address": "0x0ecb3513ebf1e62be765452900608aa957dbd13d", + "symbol": "SLXD", + "decimals": 18, + "name": "Dinari SLX", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x0ecb3513ebf1e62be765452900608aa957dbd13d.png", + "aggregators": ["CoinGecko", "Rubic", "Sonarwatch"], + "occurrences": 3 + }, + "0xa974c709cfb4566686553a20790685a47aceaa33": { + "address": "0xa974c709cfb4566686553a20790685a47aceaa33", + "symbol": "XIN", + "decimals": 18, + "name": "Mixin", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xa974c709cfb4566686553a20790685a47aceaa33.png", + "aggregators": ["CoinMarketCap", "Socket", "Rubic"], + "occurrences": 3 + }, + "0xd8b95b1987741849ca7e71e976aeb535fd2e55a2": { + "address": "0xd8b95b1987741849ca7e71e976aeb535fd2e55a2", + "symbol": "BCSBGC3", + "decimals": 18, + "name": "Backed Swiss Domestic Government Bond 0", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xd8b95b1987741849ca7e71e976aeb535fd2e55a2.png", + "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0xcd7c6ed75151745c893dfc1dca1daa1d55034e67": { + "address": "0xcd7c6ed75151745c893dfc1dca1daa1d55034e67", + "symbol": "RIOTD", + "decimals": 18, + "name": "Dinari RIOT", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xcd7c6ed75151745c893dfc1dca1daa1d55034e67.png", + "aggregators": ["CoinGecko", "Rubic", "Sonarwatch"], + "occurrences": 3 + }, + "0x7fb5da212239593f4bf544fbe2ec70ce91f0afdb": { + "address": "0x7fb5da212239593f4bf544fbe2ec70ce91f0afdb", + "symbol": "GMED", + "decimals": 18, + "name": "Dinari GME", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x7fb5da212239593f4bf544fbe2ec70ce91f0afdb.png", + "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0xec2af1c8b110a61fd9c3fa6a554a031ca9943926": { + "address": "0xec2af1c8b110a61fd9c3fa6a554a031ca9943926", + "symbol": "USDM", + "decimals": 18, + "name": "MegaUSD", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xec2af1c8b110a61fd9c3fa6a554a031ca9943926.png", + "aggregators": ["Metamask", "LiFi", "Rubic"], + "occurrences": 3 + }, + "0x374a457967ba24fd3ae66294cab08244185574b0": { + "address": "0x374a457967ba24fd3ae66294cab08244185574b0", + "symbol": "BMSFT", + "decimals": 18, + "name": "Backed Microsoft", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x374a457967ba24fd3ae66294cab08244185574b0.png", + "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0xebee37aaf2905b7bda7e3b928043862e982e8f32": { + "address": "0xebee37aaf2905b7bda7e3b928043862e982e8f32", + "symbol": "BGOOGL", + "decimals": 18, + "name": "Backed Alphabet Class A", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xebee37aaf2905b7bda7e3b928043862e982e8f32.png", + "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0x7212088a11b4d8f6fc90fbb3dfe793b45dd72323": { + "address": "0x7212088a11b4d8f6fc90fbb3dfe793b45dd72323", + "symbol": "BGME", + "decimals": 18, + "name": "Backed GameStop Corp", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x7212088a11b4d8f6fc90fbb3dfe793b45dd72323.png", + "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0x872952d3c1caf944852c5adda65633f1ef218a26": { + "address": "0x872952d3c1caf944852c5adda65633f1ef218a26", + "symbol": "LQDX", + "decimals": 18, + "name": "Reddex", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x872952d3c1caf944852c5adda65633f1ef218a26.png", + "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0x53aff1d59ea64f7f836670e33e99a0443f0ef25c": { + "address": "0x53aff1d59ea64f7f836670e33e99a0443f0ef25c", + "symbol": "AVGOD", + "decimals": 18, + "name": "Dinari AVGO", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x53aff1d59ea64f7f836670e33e99a0443f0ef25c.png", + "aggregators": ["CoinGecko", "Rubic", "Sonarwatch"], + "occurrences": 3 + }, + "0x75cb71325a44fb102a742626b723054acb7e1394": { + "address": "0x75cb71325a44fb102a742626b723054acb7e1394", + "symbol": "ANI", + "decimals": 18, + "name": "Anime", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x75cb71325a44fb102a742626b723054acb7e1394.png", + "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0x0123b0a381348f3ba793091923daeb7356ec5862": { + "address": "0x0123b0a381348f3ba793091923daeb7356ec5862", + "symbol": "VXXD", + "decimals": 18, + "name": "Dinari VXX", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x0123b0a381348f3ba793091923daeb7356ec5862.png", + "aggregators": ["CoinGecko", "Rubic", "Sonarwatch"], + "occurrences": 3 + }, + "0xd711d7d893de57dc13ff465763218770bd42db1d": { + "address": "0xd711d7d893de57dc13ff465763218770bd42db1d", + "symbol": "EGBP", + "decimals": 18, + "name": "ARYZE eGBP", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xd711d7d893de57dc13ff465763218770bd42db1d.png", + "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0xd16acb3147bcafd8469ffb288f45db52cc04ae68": { + "address": "0xd16acb3147bcafd8469ffb288f45db52cc04ae68", + "symbol": "USHYD", + "decimals": 18, + "name": "Dinari USHY", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xd16acb3147bcafd8469ffb288f45db52cc04ae68.png", + "aggregators": ["CoinGecko", "Rubic", "Sonarwatch"], + "occurrences": 3 + }, + "0xa882606494d86804b5514e07e6bd2d6a6ee6d68a": { + "address": "0xa882606494d86804b5514e07e6bd2d6a6ee6d68a", + "symbol": "WPLS", + "decimals": 18, + "name": "WPLS", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xa882606494d86804b5514e07e6bd2d6a6ee6d68a.png", + "aggregators": ["CoinGecko", "Socket", "Rubic", "Rango"], + "occurrences": 4 + }, + "0xa64c9f707bbb4cbc4e22f596a53d85b3ab7000f8": { + "address": "0xa64c9f707bbb4cbc4e22f596a53d85b3ab7000f8", + "symbol": "ARKBD", + "decimals": 18, + "name": "Dinari ARKB", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xa64c9f707bbb4cbc4e22f596a53d85b3ab7000f8.png", + "aggregators": ["CoinGecko", "Rubic", "Sonarwatch"], + "occurrences": 3 + }, + "0x4e4016eb5014468f3dba5883c70f9997026ea11e": { + "address": "0x4e4016eb5014468f3dba5883c70f9997026ea11e", + "symbol": "ETHED", + "decimals": 18, + "name": "Dinari ETHE", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x4e4016eb5014468f3dba5883c70f9997026ea11e.png", + "aggregators": ["CoinGecko", "Rubic", "Sonarwatch"], + "occurrences": 3 + }, + "0x3c4024408efac2dbf7ed453c95d9d97889e4846a": { + "address": "0x3c4024408efac2dbf7ed453c95d9d97889e4846a", + "symbol": "IBITD", + "decimals": 18, + "name": "Dinari IBIT", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x3c4024408efac2dbf7ed453c95d9d97889e4846a.png", + "aggregators": ["CoinGecko", "Rubic", "Sonarwatch"], + "occurrences": 3 + }, + "0x97e4db79d2924f1c5ce2a821e7d5b111f9925e70": { + "address": "0x97e4db79d2924f1c5ce2a821e7d5b111f9925e70", + "symbol": "JNJD", + "decimals": 18, + "name": "Dinari JNJ", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x97e4db79d2924f1c5ce2a821e7d5b111f9925e70.png", + "aggregators": ["CoinGecko", "Rubic", "Sonarwatch"], + "occurrences": 3 + }, + "0xac20315350d7b59cbe846144f5eb8a6d1df1f5fc": { + "address": "0xac20315350d7b59cbe846144f5eb8a6d1df1f5fc", + "symbol": "RDDTD", + "decimals": 18, + "name": "Dinari RDDT", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xac20315350d7b59cbe846144f5eb8a6d1df1f5fc.png", + "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0xc4a217a8b2cdf85eb8206391ae3723d72b3a4e04": { + "address": "0xc4a217a8b2cdf85eb8206391ae3723d72b3a4e04", + "symbol": "BITBD", + "decimals": 18, + "name": "Dinari BITB", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xc4a217a8b2cdf85eb8206391ae3723d72b3a4e04.png", + "aggregators": ["CoinGecko", "Rubic", "Sonarwatch"], + "occurrences": 3 + }, + "0xf5cb350b40726b5bcf170d12e162b6193b291b41": { + "address": "0xf5cb350b40726b5bcf170d12e162b6193b291b41", + "symbol": "BIS", + "decimals": 8, + "name": "Bismuth", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xf5cb350b40726b5bcf170d12e162b6193b291b41.png", + "aggregators": ["CoinMarketCap", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0x039d2e8f097331278bd6c1415d839310e0d5ece4": { + "address": "0x039d2e8f097331278bd6c1415d839310e0d5ece4", + "symbol": "LINDA", + "decimals": 18, + "name": "Linda", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x039d2e8f097331278bd6c1415d839310e0d5ece4.png", + "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0x5102791ca02fc3595398400bfe0e33d7b6c82267": { + "address": "0x5102791ca02fc3595398400bfe0e33d7b6c82267", + "symbol": "LDC", + "decimals": 18, + "name": "LDC", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x5102791ca02fc3595398400bfe0e33d7b6c82267.png", + "aggregators": ["CoinMarketCap", "LiFi", "Rubic", "Rango"], + "occurrences": 4 + }, + "0x86efc496dca70bcfd92d19194290e8457a375773": { + "address": "0x86efc496dca70bcfd92d19194290e8457a375773", + "symbol": "UBSN", + "decimals": 0, + "name": "Silent Notary", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x86efc496dca70bcfd92d19194290e8457a375773.png", + "aggregators": ["CoinMarketCap", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0x74faab6986560fd1140508e4266d8a7b87274ffd": { + "address": "0x74faab6986560fd1140508e4266d8a7b87274ffd", + "symbol": "HDAO", + "decimals": 18, + "name": "HyperDao", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x74faab6986560fd1140508e4266d8a7b87274ffd.png", + "aggregators": ["CoinMarketCap", "Socket", "Rubic", "Rango"], + "occurrences": 4 + }, + "0xcef46305d096fa876dd23048bf80f9345282e3fc": { + "address": "0xcef46305d096fa876dd23048bf80f9345282e3fc", + "symbol": "CBU", + "decimals": 0, + "name": "Banque Universal", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xcef46305d096fa876dd23048bf80f9345282e3fc.png", + "aggregators": ["CoinMarketCap", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0xd6c67b93a7b248df608a653d82a100556144c5da": { + "address": "0xd6c67b93a7b248df608a653d82a100556144c5da", + "symbol": "EXNT", + "decimals": 16, + "name": "ExNetwork Token", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xd6c67b93a7b248df608a653d82a100556144c5da.png", + "aggregators": ["CoinMarketCap", "LiFi", "TrustWallet", "Rubic"], + "occurrences": 4 + }, + "0x9b62ec1453cea5dde760aaf662048ca6eeb66e7f": { + "address": "0x9b62ec1453cea5dde760aaf662048ca6eeb66e7f", + "symbol": "ECELL", + "decimals": 2, + "name": "ECELL", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x9b62ec1453cea5dde760aaf662048ca6eeb66e7f.png", + "aggregators": ["CoinMarketCap", "LiFi", "Rubic", "Rango"], + "occurrences": 4 + }, + "0x8dcaec45365e5ada5676073a07b418c2f538145a": { + "address": "0x8dcaec45365e5ada5676073a07b418c2f538145a", + "symbol": "SHELL", + "decimals": 18, + "name": "Shell", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x8dcaec45365e5ada5676073a07b418c2f538145a.png", + "aggregators": ["CoinMarketCap", "LiFi", "Rubic", "Rango"], + "occurrences": 4 + }, + "0x9f7229af0c4b9740e207ea283b9094983f78ba04": { + "address": "0x9f7229af0c4b9740e207ea283b9094983f78ba04", + "symbol": "TAD", + "decimals": 18, + "name": "Tadpole", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x9f7229af0c4b9740e207ea283b9094983f78ba04.png", + "aggregators": ["CoinMarketCap", "LiFi", "TrustWallet", "Rubic"], + "occurrences": 4 + }, + "0x65d9bc970aa9b2413027fa339f7f179b3f3f2604": { + "address": "0x65d9bc970aa9b2413027fa339f7f179b3f3f2604", + "symbol": "KUN", + "decimals": 18, + "name": "QIAN governance token", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x65d9bc970aa9b2413027fa339f7f179b3f3f2604.png", + "aggregators": ["CoinMarketCap", "LiFi", "Rubic", "Rango"], + "occurrences": 4 + }, + "0x7e291890b01e5181f7ecc98d79ffbe12ad23df9e": { + "address": "0x7e291890b01e5181f7ecc98d79ffbe12ad23df9e", + "symbol": "NIF", + "decimals": 18, + "name": "Unifty", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x7e291890b01e5181f7ecc98d79ffbe12ad23df9e.png", + "aggregators": ["CoinMarketCap", "LiFi", "Rubic", "Rango"], + "occurrences": 4 + }, + "0x3c81d482172cc273c3b91dd9d8eb212023d00521": { + "address": "0x3c81d482172cc273c3b91dd9d8eb212023d00521", + "symbol": "PRY", + "decimals": 18, + "name": "PRY", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x3c81d482172cc273c3b91dd9d8eb212023d00521.png", + "aggregators": ["CoinMarketCap", "LiFi", "Rubic", "Rango"], + "occurrences": 4 + }, + "0xc775c0c30840cb9f51e21061b054ebf1a00acc29": { + "address": "0xc775c0c30840cb9f51e21061b054ebf1a00acc29", + "symbol": "PSL", + "decimals": 5, + "name": "Pastel", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xc775c0c30840cb9f51e21061b054ebf1a00acc29.png", + "aggregators": ["CoinMarketCap", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0x5f6c5c2fb289db2228d159c69621215e354218d7": { + "address": "0x5f6c5c2fb289db2228d159c69621215e354218d7", + "symbol": "DMOD", + "decimals": 18, + "name": "DMOD", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x5f6c5c2fb289db2228d159c69621215e354218d7.png", + "aggregators": ["CoinMarketCap", "LiFi", "Rubic", "Rango"], + "occurrences": 4 + }, + "0x429876c4a6f89fb470e92456b8313879df98b63c": { + "address": "0x429876c4a6f89fb470e92456b8313879df98b63c", + "symbol": "CNT", + "decimals": 18, + "name": "Cryption Network", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x429876c4a6f89fb470e92456b8313879df98b63c.png", + "aggregators": ["CoinMarketCap", "LiFi", "Rubic", "Rango"], + "occurrences": 4 + }, + "0x7bd82b320ebc28d8eb3c4f5fa2af7b14da5b90c3": { + "address": "0x7bd82b320ebc28d8eb3c4f5fa2af7b14da5b90c3", + "symbol": "MOZ", + "decimals": 18, + "name": "MOZ", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x7bd82b320ebc28d8eb3c4f5fa2af7b14da5b90c3.png", + "aggregators": ["CoinMarketCap", "LiFi", "Rubic", "Rango"], + "occurrences": 4 + }, + "0x8bcd06492416a749c9369009b3429861b7f27f6e": { + "address": "0x8bcd06492416a749c9369009b3429861b7f27f6e", + "symbol": "BLKC", + "decimals": 8, + "name": "BlackHat Coin", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x8bcd06492416a749c9369009b3429861b7f27f6e.png", + "aggregators": ["CoinMarketCap", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0x37c997b35c619c21323f3518b9357914e8b99525": { + "address": "0x37c997b35c619c21323f3518b9357914e8b99525", + "symbol": "PILOT", + "decimals": 18, + "name": "Unipilot", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x37c997b35c619c21323f3518b9357914e8b99525.png", + "aggregators": ["CoinMarketCap", "LiFi", "Rubic", "Rango"], + "occurrences": 4 + }, + "0x4ece5c5cfb9b960a49aae739e15cdb6cfdcc5782": { + "address": "0x4ece5c5cfb9b960a49aae739e15cdb6cfdcc5782", + "symbol": "DBUY", + "decimals": 9, + "name": "Doont Buy", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x4ece5c5cfb9b960a49aae739e15cdb6cfdcc5782.png", + "aggregators": ["CoinMarketCap", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0x948c70dc6169bfb10028fdbe96cbc72e9562b2ac": { + "address": "0x948c70dc6169bfb10028fdbe96cbc72e9562b2ac", + "symbol": "XP", + "decimals": 18, + "name": "PolkaFantasy", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x948c70dc6169bfb10028fdbe96cbc72e9562b2ac.png", + "aggregators": ["CoinMarketCap", "LiFi", "Rubic", "Rango"], + "occurrences": 4 + }, + "0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab": { + "address": "0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", + "symbol": "BEAN", + "decimals": 6, + "name": "Bean", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab.png", + "aggregators": ["CoinMarketCap", "Socket", "Rubic", "Rango"], + "occurrences": 4 + }, + "0x866f8a50a64e68ca66e97e032c5da99538b3f942": { + "address": "0x866f8a50a64e68ca66e97e032c5da99538b3f942", + "symbol": "EBSO", + "decimals": 4, + "name": "eBlockStock", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x866f8a50a64e68ca66e97e032c5da99538b3f942.png", + "aggregators": ["CoinMarketCap", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0xa87135285ae208e22068acdbff64b11ec73eaa5a": { + "address": "0xa87135285ae208e22068acdbff64b11ec73eaa5a", + "symbol": "LUNR", + "decimals": 4, + "name": "LunarCrush", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xa87135285ae208e22068acdbff64b11ec73eaa5a.png", + "aggregators": ["CoinMarketCap", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0x5167f7cdeb771417d8722e654ccc3e1734a01878": { + "address": "0x5167f7cdeb771417d8722e654ccc3e1734a01878", + "symbol": "BLAST", + "decimals": 9, + "name": "Blastoise Inu", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x5167f7cdeb771417d8722e654ccc3e1734a01878.png", + "aggregators": ["CoinMarketCap", "LiFi", "Socket", "Rubic"], + "occurrences": 4 + }, + "0x849a226f327b89e3133d9930d927f9eb9346f8c9": { + "address": "0x849a226f327b89e3133d9930d927f9eb9346f8c9", + "symbol": "CGU", + "decimals": 8, + "name": "Crypto Global United", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x849a226f327b89e3133d9930d927f9eb9346f8c9.png", + "aggregators": ["CoinMarketCap", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0x2223bf1d7c19ef7c06dab88938ec7b85952ccd89": { + "address": "0x2223bf1d7c19ef7c06dab88938ec7b85952ccd89", + "symbol": "KXA", + "decimals": 18, + "name": "Kryxivia Coin", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x2223bf1d7c19ef7c06dab88938ec7b85952ccd89.png", + "aggregators": ["CoinMarketCap", "LiFi", "Rubic", "Rango"], + "occurrences": 4 + }, + "0x6bd361e10c1afed0d95259e7c0115f3a60e4ea99": { + "address": "0x6bd361e10c1afed0d95259e7c0115f3a60e4ea99", + "symbol": "BOLLY", + "decimals": 18, + "name": "Bollycoin", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x6bd361e10c1afed0d95259e7c0115f3a60e4ea99.png", + "aggregators": ["CoinMarketCap", "LiFi", "Rubic", "Rango"], + "occurrences": 4 + }, + "0x965b85d4674f64422c4898c8f8083187f02b32c0": { + "address": "0x965b85d4674f64422c4898c8f8083187f02b32c0", + "symbol": "SFIL", + "decimals": 8, + "name": "Filecoin Standard Full Hashrate", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x965b85d4674f64422c4898c8f8083187f02b32c0.png", + "aggregators": ["CoinMarketCap", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0x9fd22a17b4a96da3f83797d122172c450381fb88": { + "address": "0x9fd22a17b4a96da3f83797d122172c450381fb88", + "symbol": "JEFE", + "decimals": 9, + "name": "Jefe", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x9fd22a17b4a96da3f83797d122172c450381fb88.png", + "aggregators": ["CoinMarketCap", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0xbf0b8b7475edb32d103001efd19fdd2753d7b76d": { + "address": "0xbf0b8b7475edb32d103001efd19fdd2753d7b76d", + "symbol": "ABI", + "decimals": 18, + "name": "Abachi", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xbf0b8b7475edb32d103001efd19fdd2753d7b76d.png", + "aggregators": ["CoinMarketCap", "LiFi", "Rubic", "Rango"], + "occurrences": 4 + }, + "0x5afff9876c1f98b7d2b53bcb69eb57e92408319f": { + "address": "0x5afff9876c1f98b7d2b53bcb69eb57e92408319f", + "symbol": "MESA", + "decimals": 18, + "name": "metavisa", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x5afff9876c1f98b7d2b53bcb69eb57e92408319f.png", + "aggregators": ["CoinMarketCap", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0x788b6d2b37aa51d916f2837ae25b05f0e61339d1": { + "address": "0x788b6d2b37aa51d916f2837ae25b05f0e61339d1", + "symbol": "MVD", + "decimals": 9, + "name": "Metavault DAO", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x788b6d2b37aa51d916f2837ae25b05f0e61339d1.png", + "aggregators": ["CoinMarketCap", "LiFi", "Rubic", "Rango"], + "occurrences": 4 + }, + "0xc31cebf8f9e825d1d1244d73d0a65e44bd5210db": { + "address": "0xc31cebf8f9e825d1d1244d73d0a65e44bd5210db", + "symbol": "CRYN", + "decimals": 8, + "name": "CRYN", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xc31cebf8f9e825d1d1244d73d0a65e44bd5210db.png", + "aggregators": ["CoinMarketCap", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0xe0c05ec44775e4ad62cdc2eecdf337aa7a143363": { + "address": "0xe0c05ec44775e4ad62cdc2eecdf337aa7a143363", + "symbol": "MANC", + "decimals": 2, + "name": "Mancium", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xe0c05ec44775e4ad62cdc2eecdf337aa7a143363.png", + "aggregators": ["CoinMarketCap", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0xd2e5decc08a80be6538f89f9ab8ff296e2f724df": { + "address": "0xd2e5decc08a80be6538f89f9ab8ff296e2f724df", + "symbol": "STIMA", + "decimals": 6, + "name": "STIMA", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xd2e5decc08a80be6538f89f9ab8ff296e2f724df.png", + "aggregators": ["CoinMarketCap", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0xed03ed872159e199065401b6d0d487d78d9464aa": { + "address": "0xed03ed872159e199065401b6d0d487d78d9464aa", + "symbol": "MXNT", + "decimals": 6, + "name": "Mexican Peso Tether", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xed03ed872159e199065401b6d0d487d78d9464aa.png", + "aggregators": ["CoinMarketCap", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0x86b4dbe5d203e634a12364c0e428fa242a3fba98": { + "address": "0x86b4dbe5d203e634a12364c0e428fa242a3fba98", + "symbol": "GBPT", + "decimals": 18, + "name": "poundtoken", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x86b4dbe5d203e634a12364c0e428fa242a3fba98.png", + "aggregators": ["CoinMarketCap", "LiFi", "Socket", "Rubic"], + "occurrences": 4 + }, + "0x71eeba415a523f5c952cc2f06361d5443545ad28": { + "address": "0x71eeba415a523f5c952cc2f06361d5443545ad28", + "symbol": "XDAO", + "decimals": 18, + "name": "XDAO", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x71eeba415a523f5c952cc2f06361d5443545ad28.png", + "aggregators": ["CoinMarketCap", "LiFi", "Rubic", "Rango"], + "occurrences": 4 + }, + "0x93581991f68dbae1ea105233b67f7fa0d6bdee7b": { + "address": "0x93581991f68dbae1ea105233b67f7fa0d6bdee7b", + "symbol": "WEVMOS", + "decimals": 18, + "name": "Wrapped Evmos", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x93581991f68dbae1ea105233b67f7fa0d6bdee7b.png", + "aggregators": ["CoinMarketCap", "LiFi", "Rubic", "Rango"], + "occurrences": 4 + }, + "0x486f4641ef2b50cc130dadbd27b6f271723873b8": { + "address": "0x486f4641ef2b50cc130dadbd27b6f271723873b8", + "symbol": "GOLD", + "decimals": 18, + "name": "Adventurer Gold", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x486f4641ef2b50cc130dadbd27b6f271723873b8.png", + "aggregators": ["CoinMarketCap", "LiFi", "Rubic", "Rango"], + "occurrences": 4 + }, + "0x0bf43350076f95e0d16120b4d6bdfa1c9d50bdbd": { + "address": "0x0bf43350076f95e0d16120b4d6bdfa1c9d50bdbd", + "symbol": "AGT", + "decimals": 18, + "name": "Antfarm Governance Token", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x0bf43350076f95e0d16120b4d6bdfa1c9d50bdbd.png", + "aggregators": ["CoinMarketCap", "LiFi", "Rubic", "Rango"], + "occurrences": 4 + }, + "0xb25ea095997f5bbaa6cea962c4fbf3bfc3c09776": { + "address": "0xb25ea095997f5bbaa6cea962c4fbf3bfc3c09776", + "symbol": "FIRE", + "decimals": 9, + "name": "Promethios", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xb25ea095997f5bbaa6cea962c4fbf3bfc3c09776.png", + "aggregators": ["CoinMarketCap", "LiFi", "Socket", "Rubic"], + "occurrences": 4 + }, + "0xf8c76dbea329ec4fa987afc514f805b21b249d79": { + "address": "0xf8c76dbea329ec4fa987afc514f805b21b249d79", + "symbol": "L", + "decimals": 18, + "name": "L", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xf8c76dbea329ec4fa987afc514f805b21b249d79.png", + "aggregators": ["CoinMarketCap", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0x5ad02305ba9a4985390170337582986e419f1a2c": { + "address": "0x5ad02305ba9a4985390170337582986e419f1a2c", + "symbol": "CX", + "decimals": 9, + "name": "Crypto X", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x5ad02305ba9a4985390170337582986e419f1a2c.png", + "aggregators": ["CoinMarketCap", "Socket", "Rubic", "Rango"], + "occurrences": 4 + }, + "0x75ce16d11b83605aa039d40d7d846ff23064fb65": { + "address": "0x75ce16d11b83605aa039d40d7d846ff23064fb65", + "symbol": "DUB", + "decimals": 9, + "name": "DUBX", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x75ce16d11b83605aa039d40d7d846ff23064fb65.png", + "aggregators": ["CoinMarketCap", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0xca7013ba4bf76bcdc3ffc71735896682644f47c2": { + "address": "0xca7013ba4bf76bcdc3ffc71735896682644f47c2", + "symbol": "DGN", + "decimals": 18, + "name": "Degen", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xca7013ba4bf76bcdc3ffc71735896682644f47c2.png", + "aggregators": ["CoinMarketCap", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0xa067237f8016d5e3770cf08b20e343ab9ee813d5": { + "address": "0xa067237f8016d5e3770cf08b20e343ab9ee813d5", + "symbol": "GRL", + "decimals": 9, + "name": "Greelance", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xa067237f8016d5e3770cf08b20e343ab9ee813d5.png", + "aggregators": ["CoinMarketCap", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0x4e47951508fd4a4126f8ff9cf5e6fa3b7cc8e073": { + "address": "0x4e47951508fd4a4126f8ff9cf5e6fa3b7cc8e073", + "symbol": "FLUID", + "decimals": 18, + "name": "Fluid", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x4e47951508fd4a4126f8ff9cf5e6fa3b7cc8e073.png", + "aggregators": ["CoinMarketCap", "LiFi", "Rubic", "Rango"], + "occurrences": 4 + }, + "0x1f0efa15e9cb7ea9596257da63fecc36ba469b30": { + "address": "0x1f0efa15e9cb7ea9596257da63fecc36ba469b30", + "symbol": "ANON", + "decimals": 18, + "name": "Anon", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x1f0efa15e9cb7ea9596257da63fecc36ba469b30.png", + "aggregators": ["CoinMarketCap", "Socket", "Rubic", "Rango"], + "occurrences": 4 + }, + "0x10703ca5e253306e2ababd68e963198be8887c81": { + "address": "0x10703ca5e253306e2ababd68e963198be8887c81", + "symbol": "SCAN", + "decimals": 18, + "name": "0xScans", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x10703ca5e253306e2ababd68e963198be8887c81.png", + "aggregators": ["CoinMarketCap", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0xf42fcffc27a5b8d0afec45659407b82f9f32fa98": { + "address": "0xf42fcffc27a5b8d0afec45659407b82f9f32fa98", + "symbol": "AXLSAGA", + "decimals": 6, + "name": "AXLSAGA", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xf42fcffc27a5b8d0afec45659407b82f9f32fa98.png", + "aggregators": ["CoinMarketCap", "Rubic", "Squid", "Rango"], + "occurrences": 4 + }, + "0x1db11e86fa9b9a87813a4dd3f747eef12ed55a55": { + "address": "0x1db11e86fa9b9a87813a4dd3f747eef12ed55a55", + "symbol": "DAR", + "decimals": 18, + "name": "Digital Asset Rights Token", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x1db11e86fa9b9a87813a4dd3f747eef12ed55a55.png", + "aggregators": ["CoinMarketCap", "LiFi", "Rubic", "Rango"], + "occurrences": 4 + }, + "0x6b448aeb3bfd1dcbe337d59f6dee159daab52768": { + "address": "0x6b448aeb3bfd1dcbe337d59f6dee159daab52768", + "symbol": "TOR", + "decimals": 18, + "name": "Resistor AI", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x6b448aeb3bfd1dcbe337d59f6dee159daab52768.png", + "aggregators": ["CoinMarketCap", "Socket", "Rubic", "Rango"], + "occurrences": 4 + }, + "0x5189688ac92a1eba1710bcba94ab25c695a4dfa2": { + "address": "0x5189688ac92a1eba1710bcba94ab25c695a4dfa2", + "symbol": "BARS", + "decimals": 6, + "name": "Banksters", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x5189688ac92a1eba1710bcba94ab25c695a4dfa2.png", + "aggregators": ["CoinMarketCap", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0x96e99106d9c58573171dd6c19d767d2ae7ec0435": { + "address": "0x96e99106d9c58573171dd6c19d767d2ae7ec0435", + "symbol": "PYGES", + "decimals": 9, + "name": "Pyges", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x96e99106d9c58573171dd6c19d767d2ae7ec0435.png", + "aggregators": ["CoinMarketCap", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0xdbde08d475bd50e2d1a6af34c7b10dd430d8396e": { + "address": "0xdbde08d475bd50e2d1a6af34c7b10dd430d8396e", + "symbol": "CGX", + "decimals": 18, + "name": "Forkast", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xdbde08d475bd50e2d1a6af34c7b10dd430d8396e.png", + "aggregators": ["CoinMarketCap", "LiFi", "Rubic", "Sonarwatch"], + "occurrences": 4 + }, + "0xe7dee4823ee18f1347f1cf7997f70b94efde2e1f": { + "address": "0xe7dee4823ee18f1347f1cf7997f70b94efde2e1f", + "symbol": "FORM", + "decimals": 18, + "name": "Form", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xe7dee4823ee18f1347f1cf7997f70b94efde2e1f.png", + "aggregators": ["CoinMarketCap", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0x4c6dfa353b67832a23d26e17b0737819c624437c": { + "address": "0x4c6dfa353b67832a23d26e17b0737819c624437c", + "symbol": "MRT", + "decimals": 18, + "name": "Meana Raptor", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x4c6dfa353b67832a23d26e17b0737819c624437c.png", + "aggregators": ["CoinMarketCap", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0xbad6c59d72d44512616f25b3d160c79db5a69ddf": { + "address": "0xbad6c59d72d44512616f25b3d160c79db5a69ddf", + "symbol": "VATAN", + "decimals": 18, + "name": "Vatan", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xbad6c59d72d44512616f25b3d160c79db5a69ddf.png", + "aggregators": ["CoinMarketCap", "Socket", "Rubic", "Sonarwatch"], + "occurrences": 4 + }, + "0xca9de1f80df74331c5fcb7eee2d05e746d47bfb2": { + "address": "0xca9de1f80df74331c5fcb7eee2d05e746d47bfb2", + "symbol": "RSVETH", + "decimals": 18, + "name": "Reddio Vault Ethereum", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xca9de1f80df74331c5fcb7eee2d05e746d47bfb2.png", + "aggregators": ["CoinMarketCap", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0x3d7975eccfc61a2102b08925cbba0a4d4dbb6555": { + "address": "0x3d7975eccfc61a2102b08925cbba0a4d4dbb6555", + "symbol": "USDD", + "decimals": 18, + "name": "USDD (BTTC bridge)", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x3d7975eccfc61a2102b08925cbba0a4d4dbb6555.png", + "aggregators": ["Metamask", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0x866a2bf4e572cbcf37d5071a7a58503bfb36be1b": { + "address": "0x866a2bf4e572cbcf37d5071a7a58503bfb36be1b", + "symbol": "M", + "decimals": 6, + "name": "M by M^0", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x866a2bf4e572cbcf37d5071a7a58503bfb36be1b.png", + "aggregators": ["Metamask", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0x0a6e18fb2842855c3af925310b0f50a4bfa17909": { + "address": "0x0a6e18fb2842855c3af925310b0f50a4bfa17909", + "symbol": "CHP", + "decimals": 18, + "name": "CoinPoker Chips", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x0a6e18fb2842855c3af925310b0f50a4bfa17909.png", + "aggregators": ["LiFi", "Socket", "Rubic", "Rango"], + "occurrences": 4 + }, + "0xbdf245957992bfbc62b07e344128a1eec7b7ee3f": { + "address": "0xbdf245957992bfbc62b07e344128a1eec7b7ee3f", + "symbol": "MBTC", + "decimals": 8, + "name": "Babypie Wrapped BTC", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xbdf245957992bfbc62b07e344128a1eec7b7ee3f.png", + "aggregators": ["LiFi", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0x2b66aade1e9c062ff411bd47c44e0ad696d43bd9": { + "address": "0x2b66aade1e9c062ff411bd47c44e0ad696d43bd9", + "symbol": "SUSDA", + "decimals": 18, + "name": "sUSDa", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x2b66aade1e9c062ff411bd47c44e0ad696d43bd9.png", + "aggregators": ["LiFi", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0xc824a08db624942c5e5f330d56530cd1598859fd": { + "address": "0xc824a08db624942c5e5f330d56530cd1598859fd", + "symbol": "HGETH", + "decimals": 18, + "name": "High Growth ETH", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xc824a08db624942c5e5f330d56530cd1598859fd.png", + "aggregators": ["LiFi", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0x888cea2bbdd5d47a4032cf63668d7525c74af57a": { + "address": "0x888cea2bbdd5d47a4032cf63668d7525c74af57a", + "symbol": "POOF", + "decimals": 18, + "name": "POOF", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x888cea2bbdd5d47a4032cf63668d7525c74af57a.png", + "aggregators": ["LiFi", "Socket", "Rubic", "Rango"], + "occurrences": 4 + }, + "0x56a86d648c435dc707c8405b78e2ae8eb4e60ba4": { + "address": "0x56a86d648c435dc707c8405b78e2ae8eb4e60ba4", + "symbol": "STACK", + "decimals": 18, + "name": "STACK", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x56a86d648c435dc707c8405b78e2ae8eb4e60ba4.png", + "aggregators": ["LiFi", "Socket", "Rubic", "Rango"], + "occurrences": 4 + }, + "0xf0655dcee37e5c0b70fffd70d85f88f8edf0aff6": { + "address": "0xf0655dcee37e5c0b70fffd70d85f88f8edf0aff6", + "symbol": "UNIDX", + "decimals": 18, + "name": "UniDex", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xf0655dcee37e5c0b70fffd70d85f88f8edf0aff6.png", + "aggregators": ["LiFi", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0xdda9ff241c7160be8295ef9eca2e782361467666": { + "address": "0xdda9ff241c7160be8295ef9eca2e782361467666", + "symbol": "BONZAI", + "decimals": 18, + "name": "BonzAI DePIN", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xdda9ff241c7160be8295ef9eca2e782361467666.png", + "aggregators": ["LiFi", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0x7788a3538c5fc7f9c7c8a74eac4c898fc8d87d92": { + "address": "0x7788a3538c5fc7f9c7c8a74eac4c898fc8d87d92", + "symbol": "SUSDX", + "decimals": 18, + "name": "Stables Labs Staked USDX", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x7788a3538c5fc7f9c7c8a74eac4c898fc8d87d92.png", + "aggregators": ["LiFi", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0x33e80a92a9ea73dd02f6e732d1702d58c68388ca": { + "address": "0x33e80a92a9ea73dd02f6e732d1702d58c68388ca", + "symbol": "XB", + "decimals": 2, + "name": "XBANKING", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x33e80a92a9ea73dd02f6e732d1702d58c68388ca.png", + "aggregators": ["LiFi", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0x06301057d77d54b6e14c7faffb11ffc7cab4eaa7": { + "address": "0x06301057d77d54b6e14c7faffb11ffc7cab4eaa7", + "symbol": "MDAI", + "decimals": 18, + "name": "MDAI", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x06301057d77d54b6e14c7faffb11ffc7cab4eaa7.png", + "aggregators": ["LiFi", "Socket", "Rubic", "Rango"], + "occurrences": 4 + }, + "0x8a3d77e9d6968b780564936d15b09805827c21fa": { + "address": "0x8a3d77e9d6968b780564936d15b09805827c21fa", + "symbol": "UCO", + "decimals": 18, + "name": "UnirisToken", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x8a3d77e9d6968b780564936d15b09805827c21fa.png", + "aggregators": ["LiFi", "Socket", "Rubic", "Rango"], + "occurrences": 4 + }, + "0x2b117f0a9a56dddaaf0257b476bfc39ca7e6fda1": { + "address": "0x2b117f0a9a56dddaaf0257b476bfc39ca7e6fda1", + "symbol": "CONWAI", + "decimals": 18, + "name": "Conwai", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x2b117f0a9a56dddaaf0257b476bfc39ca7e6fda1.png", + "aggregators": ["LiFi", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0x8e0789d39db454dbe9f4a77acef6dc7c69f6d552": { + "address": "0x8e0789d39db454dbe9f4a77acef6dc7c69f6d552", + "symbol": "INWSTETHS", + "decimals": 18, + "name": "Inception Restaked stETH Symbiotic", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x8e0789d39db454dbe9f4a77acef6dc7c69f6d552.png", + "aggregators": ["LiFi", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0x9534ad65fb398e27ac8f4251dae1780b989d136e": { + "address": "0x9534ad65fb398e27ac8f4251dae1780b989d136e", + "symbol": "PYR", + "decimals": 18, + "name": "PYR", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x9534ad65fb398e27ac8f4251dae1780b989d136e.png", + "aggregators": ["LiFi", "Socket", "Rubic", "Rango"], + "occurrences": 4 + }, + "0xdf9307dff0a1b57660f60f9457d32027a55ca0b2": { + "address": "0xdf9307dff0a1b57660f60f9457d32027a55ca0b2", + "symbol": "METH", + "decimals": 18, + "name": "METH", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xdf9307dff0a1b57660f60f9457d32027a55ca0b2.png", + "aggregators": ["LiFi", "Socket", "Rubic", "Rango"], + "occurrences": 4 + }, + "0x5c5b196abe0d54485975d1ec29617d42d9198326": { + "address": "0x5c5b196abe0d54485975d1ec29617d42d9198326", + "symbol": "SDEUSD", + "decimals": 18, + "name": "Elixir Staked deUSD", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x5c5b196abe0d54485975d1ec29617d42d9198326.png", + "aggregators": ["LiFi", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0x95d8bf2f57cf973251972b496dc6b1d9c6b5bce3": { + "address": "0x95d8bf2f57cf973251972b496dc6b1d9c6b5bce3", + "symbol": "BLUE", + "decimals": 18, + "name": "BLUE", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x95d8bf2f57cf973251972b496dc6b1d9c6b5bce3.png", + "aggregators": ["LiFi", "Socket", "Rubic", "Rango"], + "occurrences": 4 + }, + "0x378e97d19cf319eb311748ff4d9971dc349c8ad4": { + "address": "0x378e97d19cf319eb311748ff4d9971dc349c8ad4", + "symbol": "ASCN", + "decimals": 18, + "name": "AlphaScan AI", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x378e97d19cf319eb311748ff4d9971dc349c8ad4.png", + "aggregators": ["LiFi", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0x8f041a3940a5e6fb580075c3774e15fcfa0e1618": { + "address": "0x8f041a3940a5e6fb580075c3774e15fcfa0e1618", + "symbol": "ONEWING", + "decimals": 9, + "name": "oneWING", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x8f041a3940a5e6fb580075c3774e15fcfa0e1618.png", + "aggregators": ["LiFi", "Rubic", "Rango", "SushiSwap"], + "occurrences": 4 + }, + "0x128ad1ad707c3b36e6f2ac9739f9df7516fdb592": { + "address": "0x128ad1ad707c3b36e6f2ac9739f9df7516fdb592", + "symbol": "ALFA", + "decimals": 18, + "name": "alfa society", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x128ad1ad707c3b36e6f2ac9739f9df7516fdb592.png", + "aggregators": ["LiFi", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0xa88920b4a35f7d0e81bc586ce1875036fced9154": { + "address": "0xa88920b4a35f7d0e81bc586ce1875036fced9154", + "symbol": "KBC", + "decimals": 18, + "name": "Kabuni Coin", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xa88920b4a35f7d0e81bc586ce1875036fced9154.png", + "aggregators": ["LiFi", "Socket", "Rubic", "Rango"], + "occurrences": 4 + }, + "0xf67e2dc041b8a3c39d066037d29f500757b1e886": { + "address": "0xf67e2dc041b8a3c39d066037d29f500757b1e886", + "symbol": "SUSDN", + "decimals": 18, + "name": "seed USDN", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xf67e2dc041b8a3c39d066037d29f500757b1e886.png", + "aggregators": ["LiFi", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0xf134519cbe2042b06ee7ce20df51d09b55559896": { + "address": "0xf134519cbe2042b06ee7ce20df51d09b55559896", + "symbol": "MOCHI", + "decimals": 18, + "name": "Mochi", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xf134519cbe2042b06ee7ce20df51d09b55559896.png", + "aggregators": ["LiFi", "Socket", "Rubic", "Rango"], + "occurrences": 4 + }, + "0xd38e031f4529a07996aab977d2b79f0e00656c56": { + "address": "0xd38e031f4529a07996aab977d2b79f0e00656c56", + "symbol": "WTBT", + "decimals": 18, + "name": "wTBT Pool", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xd38e031f4529a07996aab977d2b79f0e00656c56.png", + "aggregators": ["LiFi", "Socket", "Rubic", "Rango"], + "occurrences": 4 + }, + "0x325dc9ebcec31940c658acaca45f8293418d811e": { + "address": "0x325dc9ebcec31940c658acaca45f8293418d811e", + "symbol": "SOLVBTCENA", + "decimals": 18, + "name": "Solv Protocol SolvBTC ENA", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x325dc9ebcec31940c658acaca45f8293418d811e.png", + "aggregators": ["LiFi", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0x19b22dbadc298c359a1d1b59e35f352a2b40e33c": { + "address": "0x19b22dbadc298c359a1d1b59e35f352a2b40e33c", + "symbol": "TXPT", + "decimals": 18, + "name": "tPLATINUM", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x19b22dbadc298c359a1d1b59e35f352a2b40e33c.png", + "aggregators": ["LiFi", "Socket", "Rubic", "Rango"], + "occurrences": 4 + }, + "0x2a95fe4c7e64e09856989f9ea0b57b9ab5f770cb": { + "address": "0x2a95fe4c7e64e09856989f9ea0b57b9ab5f770cb", + "symbol": "WSPA", + "decimals": 18, + "name": "Wrapped Sperax", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x2a95fe4c7e64e09856989f9ea0b57b9ab5f770cb.png", + "aggregators": ["LiFi", "Socket", "Rubic", "Rango"], + "occurrences": 4 + }, + "0x5c7cc28ff152c397dc2e17349661db67113d6ce3": { + "address": "0x5c7cc28ff152c397dc2e17349661db67113d6ce3", + "symbol": "VRTX", + "decimals": 18, + "name": "VORTEX", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x5c7cc28ff152c397dc2e17349661db67113d6ce3.png", + "aggregators": ["Socket", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0x456ff1fbb87ec74165a11460f9d1864775dc227a": { + "address": "0x456ff1fbb87ec74165a11460f9d1864775dc227a", + "symbol": "MOXI", + "decimals": 18, + "name": "MOX AI", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x456ff1fbb87ec74165a11460f9d1864775dc227a.png", + "aggregators": ["Socket", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0xe1be5d3f34e89de342ee97e6e90d405884da6c67": { + "address": "0xe1be5d3f34e89de342ee97e6e90d405884da6c67", + "symbol": "TRX", + "decimals": 6, + "name": "TRON", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xe1be5d3f34e89de342ee97e6e90d405884da6c67.png", + "aggregators": ["Socket", "Rubic", "Rango", "SushiSwap"], + "occurrences": 4 + }, + "0x6522f491df42651cf5e6636b7261adaa096d095f": { + "address": "0x6522f491df42651cf5e6636b7261adaa096d095f", + "symbol": "ASAP", + "decimals": 18, + "name": "Asap Sniper Bot", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x6522f491df42651cf5e6636b7261adaa096d095f.png", + "aggregators": ["Socket", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0x62dc60b69b650290b0d5b993e145e0e87892be14": { + "address": "0x62dc60b69b650290b0d5b993e145e0e87892be14", + "symbol": "DRAGGY0X62", + "decimals": 9, + "name": "Draggy 0x62", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x62dc60b69b650290b0d5b993e145e0e87892be14.png", + "aggregators": ["Socket", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0xa73b792906c79509d73fdfaaa78561e195010706": { + "address": "0xa73b792906c79509d73fdfaaa78561e195010706", + "symbol": "PIPO", + "decimals": 18, + "name": "Pipo", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xa73b792906c79509d73fdfaaa78561e195010706.png", + "aggregators": ["Socket", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0x4d243e8f511045f0d5f9d0288bc628737b10c079": { + "address": "0x4d243e8f511045f0d5f9d0288bc628737b10c079", + "symbol": "JASON", + "decimals": 9, + "name": "Jason Eth", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x4d243e8f511045f0d5f9d0288bc628737b10c079.png", + "aggregators": ["Socket", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0x5cb888182fbffdb62c08fb4b5a343914f00fdfee": { + "address": "0x5cb888182fbffdb62c08fb4b5a343914f00fdfee", + "symbol": "BIPS", + "decimals": 18, + "name": "Moneybrain BiPS", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x5cb888182fbffdb62c08fb4b5a343914f00fdfee.png", + "aggregators": ["Socket", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0x8b7cf3a97c1f840bcf490dfd7d6a16a96dd5dd0c": { + "address": "0x8b7cf3a97c1f840bcf490dfd7d6a16a96dd5dd0c", + "symbol": "QS", + "decimals": 9, + "name": "Quick Sync", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x8b7cf3a97c1f840bcf490dfd7d6a16a96dd5dd0c.png", + "aggregators": ["Socket", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0xa6c1a66a3ac742f1885207253fc776d94c8beed5": { + "address": "0xa6c1a66a3ac742f1885207253fc776d94c8beed5", + "symbol": "TRN", + "decimals": 9, + "name": "Tereon", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xa6c1a66a3ac742f1885207253fc776d94c8beed5.png", + "aggregators": ["Socket", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0x3d330b8d4eb25b0933e564d7284d462346d453ef": { + "address": "0x3d330b8d4eb25b0933e564d7284d462346d453ef", + "symbol": "GROQ", + "decimals": 9, + "name": "GROQ", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x3d330b8d4eb25b0933e564d7284d462346d453ef.png", + "aggregators": ["Socket", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0x7aa2f174fbc4d0a17b34adfb9b3e1dc029b46d76": { + "address": "0x7aa2f174fbc4d0a17b34adfb9b3e1dc029b46d76", + "symbol": "RADA", + "decimals": 18, + "name": "RADA Foundation", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x7aa2f174fbc4d0a17b34adfb9b3e1dc029b46d76.png", + "aggregators": ["Socket", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0x1814b8a33446549ed5766ab3250b670498699bd6": { + "address": "0x1814b8a33446549ed5766ab3250b670498699bd6", + "symbol": "INVA", + "decimals": 18, + "name": "InnoviaTrust", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x1814b8a33446549ed5766ab3250b670498699bd6.png", + "aggregators": ["Socket", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0x8805792d41facb22b6f47d468b06af36ff3fc1c5": { + "address": "0x8805792d41facb22b6f47d468b06af36ff3fc1c5", + "symbol": "MAX", + "decimals": 18, + "name": "UPMAX", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x8805792d41facb22b6f47d468b06af36ff3fc1c5.png", + "aggregators": ["Socket", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0x8888888888888e0ff220b240499e30430458e568": { + "address": "0x8888888888888e0ff220b240499e30430458e568", + "symbol": "GEN", + "decimals": 18, + "name": "Genesis", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x8888888888888e0ff220b240499e30430458e568.png", + "aggregators": ["Socket", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0x0b49707fb9706428d1bb51a2906617aeaba82346": { + "address": "0x0b49707fb9706428d1bb51a2906617aeaba82346", + "symbol": "PFT", + "decimals": 18, + "name": "PolarFighters", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x0b49707fb9706428d1bb51a2906617aeaba82346.png", + "aggregators": ["Socket", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0xf75302720787c2a2176c87b1919059c4eaac8b98": { + "address": "0xf75302720787c2a2176c87b1919059c4eaac8b98", + "symbol": "CFGI", + "decimals": 18, + "name": "CFGI", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xf75302720787c2a2176c87b1919059c4eaac8b98.png", + "aggregators": ["Socket", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0xf33136452828e8f2dd2b9d8d591ca692f8edaf3c": { + "address": "0xf33136452828e8f2dd2b9d8d591ca692f8edaf3c", + "symbol": "GATE", + "decimals": 9, + "name": "NexGATE", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xf33136452828e8f2dd2b9d8d591ca692f8edaf3c.png", + "aggregators": ["Socket", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0x65e3fa51c4ce0af1b9cd5cbc7c5fdb80a09d431d": { + "address": "0x65e3fa51c4ce0af1b9cd5cbc7c5fdb80a09d431d", + "symbol": "AXLTIA", + "decimals": 6, + "name": "Axelar Wrapped TIA", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x65e3fa51c4ce0af1b9cd5cbc7c5fdb80a09d431d.png", + "aggregators": ["Rubic", "Squid", "Rango", "SushiSwap"], + "occurrences": 4 + }, + "0x3e417231aa72f57512cdb446b15d9682c12ba3ec": { + "address": "0x3e417231aa72f57512cdb446b15d9682c12ba3ec", + "symbol": "TSUKI", + "decimals": 18, + "name": "Tsuki", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x3e417231aa72f57512cdb446b15d9682c12ba3ec.png", + "aggregators": ["CoinGecko", "Rubic", "Rango"], + "occurrences": 3 + }, + "0xad22f63404f7305e4713ccbd4f296f34770513f4": { + "address": "0xad22f63404f7305e4713ccbd4f296f34770513f4", + "symbol": "AWC", + "decimals": 8, + "name": "AWC", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xad22f63404f7305e4713ccbd4f296f34770513f4.png", + "aggregators": ["CoinMarketCap", "Rubic", "Rango"], + "occurrences": 3 + }, + "0xd460a96231e2aa497eca601f526913654fbd4977": { + "address": "0xd460a96231e2aa497eca601f526913654fbd4977", + "symbol": "MANYU", + "decimals": 18, + "name": "LilManyu", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xd460a96231e2aa497eca601f526913654fbd4977.png", + "aggregators": ["CoinGecko", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x90a1717e0dabe37693f79afe43ae236dc3b65957": { + "address": "0x90a1717e0dabe37693f79afe43ae236dc3b65957", + "symbol": "USDM1", + "decimals": 18, + "name": "USDM1", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x90a1717e0dabe37693f79afe43ae236dc3b65957.png", + "aggregators": ["CoinGecko", "Rubic", "Rango"], + "occurrences": 3 + }, + "0xb2089a7069861c8d90c8da3aacab8e9188c0c531": { + "address": "0xb2089a7069861c8d90c8da3aacab8e9188c0c531", + "symbol": "GREEN", + "decimals": 8, + "name": "GREEN", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xb2089a7069861c8d90c8da3aacab8e9188c0c531.png", + "aggregators": ["CoinMarketCap", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x7cc97bf17c5adabe25f9d19d15a1ec8a1ad65f14": { + "address": "0x7cc97bf17c5adabe25f9d19d15a1ec8a1ad65f14", + "symbol": "WOLVERINU", + "decimals": 18, + "name": "Wolverinu", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x7cc97bf17c5adabe25f9d19d15a1ec8a1ad65f14.png", + "aggregators": ["CoinGecko", "Rubic", "Sonarwatch"], + "occurrences": 3 + }, + "0x9b6a1d4fa5d90e5f2d34130053978d14cd301d58": { + "address": "0x9b6a1d4fa5d90e5f2d34130053978d14cd301d58", + "symbol": "DN", + "decimals": 18, + "name": "DN", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x9b6a1d4fa5d90e5f2d34130053978d14cd301d58.png", + "aggregators": ["CoinMarketCap", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x11a001dc777f5bf8a5d63f246664d3bb67be496c": { + "address": "0x11a001dc777f5bf8a5d63f246664d3bb67be496c", + "symbol": "OGGIE", + "decimals": 9, + "name": "Oggie", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x11a001dc777f5bf8a5d63f246664d3bb67be496c.png", + "aggregators": ["CoinMarketCap", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x961dd84059505d59f82ce4fb87d3c09bec65301d": { + "address": "0x961dd84059505d59f82ce4fb87d3c09bec65301d", + "symbol": "TXJP", + "decimals": 8, + "name": "TXJP", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x961dd84059505d59f82ce4fb87d3c09bec65301d.png", + "aggregators": ["CoinGecko", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x734eec7930bc84ec5732022b9eb949a81fb89abe": { + "address": "0x734eec7930bc84ec5732022b9eb949a81fb89abe", + "symbol": "ETH0", + "decimals": 18, + "name": "ETH0", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x734eec7930bc84ec5732022b9eb949a81fb89abe.png", + "aggregators": ["CoinGecko", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x755d61b9acbc7fcc935e280291cd86cc1913af93": { + "address": "0x755d61b9acbc7fcc935e280291cd86cc1913af93", + "symbol": "$MEDXT", + "decimals": 18, + "name": "MedXT", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x755d61b9acbc7fcc935e280291cd86cc1913af93.png", + "aggregators": ["CoinMarketCap", "Rubic", "Rango"], + "occurrences": 3 + }, + "0xf9962329a1e9fa84836d2f37640d7012fb588e9d": { + "address": "0xf9962329a1e9fa84836d2f37640d7012fb588e9d", + "symbol": "DOGS", + "decimals": 9, + "name": "We Love Dogs", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xf9962329a1e9fa84836d2f37640d7012fb588e9d.png", + "aggregators": ["CoinGecko", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x58f7345b5295e43aa454911571f13be186655be9": { + "address": "0x58f7345b5295e43aa454911571f13be186655be9", + "symbol": "GRLC", + "decimals": 8, + "name": "Garlicoin", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x58f7345b5295e43aa454911571f13be186655be9.png", + "aggregators": ["CoinMarketCap", "Rubic", "Sonarwatch"], + "occurrences": 3 + }, + "0xa9299c296d7830a99414d1e5546f5171fa01e9c8": { + "address": "0xa9299c296d7830a99414d1e5546f5171fa01e9c8", + "symbol": "DGLD", + "decimals": 18, + "name": "DGLD", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xa9299c296d7830a99414d1e5546f5171fa01e9c8.png", + "aggregators": ["CoinMarketCap", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x4951bec6f4dfc23935c0ec8af92f231f4c20ea03": { + "address": "0x4951bec6f4dfc23935c0ec8af92f231f4c20ea03", + "symbol": "BTM", + "decimals": 8, + "name": "BTM", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x4951bec6f4dfc23935c0ec8af92f231f4c20ea03.png", + "aggregators": ["CoinMarketCap", "Rubic", "Rango"], + "occurrences": 3 + }, + "0xbe1936a67f503e0eaf2434b0cf9f4e3d7100008a": { + "address": "0xbe1936a67f503e0eaf2434b0cf9f4e3d7100008a", + "symbol": "PROS", + "decimals": 18, + "name": "PROS", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xbe1936a67f503e0eaf2434b0cf9f4e3d7100008a.png", + "aggregators": ["CoinMarketCap", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x949bed886c739f1a3273629b3320db0c5024c719": { + "address": "0x949bed886c739f1a3273629b3320db0c5024c719", + "symbol": "AMIS", + "decimals": 9, + "name": "AMIS", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x949bed886c739f1a3273629b3320db0c5024c719.png", + "aggregators": ["CoinMarketCap", "LiFi", "Rubic"], + "occurrences": 3 + }, + "0x0e0989b1f9b8a38983c2ba8053269ca62ec9b195": { + "address": "0x0e0989b1f9b8a38983c2ba8053269ca62ec9b195", + "symbol": "POE", + "decimals": 8, + "name": "Po.et", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x0e0989b1f9b8a38983c2ba8053269ca62ec9b195.png", + "aggregators": ["CoinMarketCap", "Rubic", "Rango"], + "occurrences": 3 + }, + "0xc96df921009b790dffca412375251ed1a2b75c60": { + "address": "0xc96df921009b790dffca412375251ed1a2b75c60", + "symbol": "ORME", + "decimals": 8, + "name": "Ormeus Coin", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xc96df921009b790dffca412375251ed1a2b75c60.png", + "aggregators": ["CoinMarketCap", "Rubic", "Rango"], + "occurrences": 3 + }, + "0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8": { + "address": "0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8", + "symbol": "EVX", + "decimals": 4, + "name": "Everex", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8.png", + "aggregators": ["CoinMarketCap", "Rubic", "Rango"], + "occurrences": 3 + }, + "0xff18dbc487b4c2e3222d115952babfda8ba52f5f": { + "address": "0xff18dbc487b4c2e3222d115952babfda8ba52f5f", + "symbol": "LIFE", + "decimals": 18, + "name": "PureLifeCoin", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xff18dbc487b4c2e3222d115952babfda8ba52f5f.png", + "aggregators": ["CoinMarketCap", "Socket", "Rubic"], + "occurrences": 3 + }, + "0xa2791bdf2d5055cda4d46ec17f9f429568275047": { + "address": "0xa2791bdf2d5055cda4d46ec17f9f429568275047", + "symbol": "NULS", + "decimals": 8, + "name": "Nuls", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xa2791bdf2d5055cda4d46ec17f9f429568275047.png", + "aggregators": ["CoinMarketCap", "Socket", "Rubic"], + "occurrences": 3 + }, + "0x679badc551626e01b23ceecefbc9b877ea18fc46": { + "address": "0x679badc551626e01b23ceecefbc9b877ea18fc46", + "symbol": "CCO", + "decimals": 18, + "name": "Ccore", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x679badc551626e01b23ceecefbc9b877ea18fc46.png", + "aggregators": ["CoinMarketCap", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x11613b1f840bb5a40f8866d857e24da126b79d73": { + "address": "0x11613b1f840bb5a40f8866d857e24da126b79d73", + "symbol": "CAPP", + "decimals": 2, + "name": "CAPP Token", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x11613b1f840bb5a40f8866d857e24da126b79d73.png", + "aggregators": ["CoinMarketCap", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x8b1f49491477e0fb46a29fef53f1ea320d13c349": { + "address": "0x8b1f49491477e0fb46a29fef53f1ea320d13c349", + "symbol": "AMM", + "decimals": 6, + "name": "MicroMoney", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x8b1f49491477e0fb46a29fef53f1ea320d13c349.png", + "aggregators": ["CoinMarketCap", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x72adadb447784dd7ab1f472467750fc485e4cb2d": { + "address": "0x72adadb447784dd7ab1f472467750fc485e4cb2d", + "symbol": "WRC", + "decimals": 6, + "name": "Worldcore", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x72adadb447784dd7ab1f472467750fc485e4cb2d.png", + "aggregators": ["CoinMarketCap", "Rubic", "Rango"], + "occurrences": 3 + }, + "0xd8924385cd46e6af6f377871c732bde2f8e9dd18": { + "address": "0xd8924385cd46e6af6f377871c732bde2f8e9dd18", + "symbol": "PYLNT", + "decimals": 18, + "name": "PYLNT", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xd8924385cd46e6af6f377871c732bde2f8e9dd18.png", + "aggregators": ["CoinMarketCap", "LiFi", "Rubic"], + "occurrences": 3 + }, + "0xbe038a2fdfec62cf1bed852f141a43005035edcc": { + "address": "0xbe038a2fdfec62cf1bed852f141a43005035edcc", + "symbol": "INT", + "decimals": 18, + "name": "Internet Node Token", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xbe038a2fdfec62cf1bed852f141a43005035edcc.png", + "aggregators": ["CoinMarketCap", "Socket", "Rubic"], + "occurrences": 3 + }, + "0xe75ad3aab14e4b0df8c5da4286608dabb21bd864": { + "address": "0xe75ad3aab14e4b0df8c5da4286608dabb21bd864", + "symbol": "AAC", + "decimals": 5, + "name": "AcuteAngleCoin", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xe75ad3aab14e4b0df8c5da4286608dabb21bd864.png", + "aggregators": ["CoinMarketCap", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x5136c98a80811c3f46bdda8b5c4555cfd9f812f0": { + "address": "0x5136c98a80811c3f46bdda8b5c4555cfd9f812f0", + "symbol": "IDH", + "decimals": 6, + "name": "indaHash Coin", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x5136c98a80811c3f46bdda8b5c4555cfd9f812f0.png", + "aggregators": ["CoinMarketCap", "LiFi", "Rubic"], + "occurrences": 3 + }, + "0xfae4ee59cdd86e3be9e8b90b53aa866327d7c090": { + "address": "0xfae4ee59cdd86e3be9e8b90b53aa866327d7c090", + "symbol": "CPC", + "decimals": 18, + "name": "CPChain", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xfae4ee59cdd86e3be9e8b90b53aa866327d7c090.png", + "aggregators": ["CoinMarketCap", "LiFi", "Rubic"], + "occurrences": 3 + }, + "0x2ccbff3a042c68716ed2a2cb0c544a9f1d1935e1": { + "address": "0x2ccbff3a042c68716ed2a2cb0c544a9f1d1935e1", + "symbol": "DMT", + "decimals": 8, + "name": "DMarket Token", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x2ccbff3a042c68716ed2a2cb0c544a9f1d1935e1.png", + "aggregators": ["CoinMarketCap", "Socket", "Rubic"], + "occurrences": 3 + }, + "0x0b4bdc478791897274652dc15ef5c135cae61e60": { + "address": "0x0b4bdc478791897274652dc15ef5c135cae61e60", + "symbol": "DAX", + "decimals": 18, + "name": "DAEX Token", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x0b4bdc478791897274652dc15ef5c135cae61e60.png", + "aggregators": ["CoinMarketCap", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x4a527d8fc13c5203ab24ba0944f4cb14658d1db6": { + "address": "0x4a527d8fc13c5203ab24ba0944f4cb14658d1db6", + "symbol": "MITX", + "decimals": 18, + "name": "Morpheus Infrastructure Token", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x4a527d8fc13c5203ab24ba0944f4cb14658d1db6.png", + "aggregators": ["CoinMarketCap", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x9c38688e5acb9ed6049c8502650db5ac8ef96465": { + "address": "0x9c38688e5acb9ed6049c8502650db5ac8ef96465", + "symbol": "LIF", + "decimals": 18, + "name": "LifToken", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x9c38688e5acb9ed6049c8502650db5ac8ef96465.png", + "aggregators": ["CoinMarketCap", "LiFi", "Rubic"], + "occurrences": 3 + }, + "0x228ba514309ffdf03a81a205a6d040e429d6e80c": { + "address": "0x228ba514309ffdf03a81a205a6d040e429d6e80c", + "symbol": "GSC", + "decimals": 18, + "name": "Global Social Chain", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x228ba514309ffdf03a81a205a6d040e429d6e80c.png", + "aggregators": ["CoinMarketCap", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x624d520bab2e4ad83935fa503fb130614374e850": { + "address": "0x624d520bab2e4ad83935fa503fb130614374e850", + "symbol": "SSP", + "decimals": 4, + "name": "smartshare token", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x624d520bab2e4ad83935fa503fb130614374e850.png", + "aggregators": ["CoinMarketCap", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x9ab165d795019b6d8b3e971dda91071421305e5a": { + "address": "0x9ab165d795019b6d8b3e971dda91071421305e5a", + "symbol": "AOA", + "decimals": 18, + "name": "Aurora", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x9ab165d795019b6d8b3e971dda91071421305e5a.png", + "aggregators": ["CoinMarketCap", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x37e1160184f7dd29f00b78c050bf13224780b0b0": { + "address": "0x37e1160184f7dd29f00b78c050bf13224780b0b0", + "symbol": "YCC", + "decimals": 8, + "name": "Yuan Chain New", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x37e1160184f7dd29f00b78c050bf13224780b0b0.png", + "aggregators": ["CoinMarketCap", "LiFi", "Rubic"], + "occurrences": 3 + }, + "0xefd720c94659f2ccb767809347245f917a145ed8": { + "address": "0xefd720c94659f2ccb767809347245f917a145ed8", + "symbol": "QUO", + "decimals": 18, + "name": "Quoxent", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xefd720c94659f2ccb767809347245f917a145ed8.png", + "aggregators": ["CoinMarketCap", "LiFi", "Rubic"], + "occurrences": 3 + }, + "0x89020f0d5c5af4f3407eb5fe185416c457b0e93e": { + "address": "0x89020f0d5c5af4f3407eb5fe185416c457b0e93e", + "symbol": "EDN", + "decimals": 18, + "name": "Eden Coin", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x89020f0d5c5af4f3407eb5fe185416c457b0e93e.png", + "aggregators": ["CoinMarketCap", "LiFi", "Rubic"], + "occurrences": 3 + }, + "0x8578530205cecbe5db83f7f29ecfeec860c297c2": { + "address": "0x8578530205cecbe5db83f7f29ecfeec860c297c2", + "symbol": "AOG", + "decimals": 18, + "name": "smARTOFGIVING", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x8578530205cecbe5db83f7f29ecfeec860c297c2.png", + "aggregators": ["CoinMarketCap", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x574f84108a98c575794f75483d801d1d5dc861a5": { + "address": "0x574f84108a98c575794f75483d801d1d5dc861a5", + "symbol": "ROX", + "decimals": 18, + "name": "Robotina token", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x574f84108a98c575794f75483d801d1d5dc861a5.png", + "aggregators": ["CoinMarketCap", "Socket", "Rubic"], + "occurrences": 3 + }, + "0x77761e63c05aee6648fdaeaa9b94248351af9bcd": { + "address": "0x77761e63c05aee6648fdaeaa9b94248351af9bcd", + "symbol": "PASS", + "decimals": 18, + "name": "PASS Token", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x77761e63c05aee6648fdaeaa9b94248351af9bcd.png", + "aggregators": ["CoinMarketCap", "Socket", "Rango"], + "occurrences": 3 + }, + "0xa0d440c6da37892dc06ee7930b2eede0634fd681": { + "address": "0xa0d440c6da37892dc06ee7930b2eede0634fd681", + "symbol": "MASH", + "decimals": 8, + "name": "MasterNet", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xa0d440c6da37892dc06ee7930b2eede0634fd681.png", + "aggregators": ["CoinMarketCap", "LiFi", "Rubic"], + "occurrences": 3 + }, + "0xb3e2cb7cccfe139f8ff84013823bf22da6b6390a": { + "address": "0xb3e2cb7cccfe139f8ff84013823bf22da6b6390a", + "symbol": "ICNQ", + "decimals": 18, + "name": "Iconiq Lab Token", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xb3e2cb7cccfe139f8ff84013823bf22da6b6390a.png", + "aggregators": ["CoinMarketCap", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x47e67ba66b0699500f18a53f94e2b9db3d47437e": { + "address": "0x47e67ba66b0699500f18a53f94e2b9db3d47437e", + "symbol": "PXG", + "decimals": 18, + "name": "PlayGame", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x47e67ba66b0699500f18a53f94e2b9db3d47437e.png", + "aggregators": ["CoinMarketCap", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x32c4adb9cf57f972bc375129de91c897b4f364f1": { + "address": "0x32c4adb9cf57f972bc375129de91c897b4f364f1", + "symbol": "FLC", + "decimals": 18, + "name": "Flowchain", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x32c4adb9cf57f972bc375129de91c897b4f364f1.png", + "aggregators": ["CoinMarketCap", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x996229d0c6a485c7f4b52e092eaa907cb2def5c6": { + "address": "0x996229d0c6a485c7f4b52e092eaa907cb2def5c6", + "symbol": "BHIG", + "decimals": 18, + "name": "BuckHathCoin", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x996229d0c6a485c7f4b52e092eaa907cb2def5c6.png", + "aggregators": ["CoinMarketCap", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x00e150d741eda1d49d341189cae4c08a73a49c95": { + "address": "0x00e150d741eda1d49d341189cae4c08a73a49c95", + "symbol": "INF", + "decimals": 18, + "name": "InfinitusTokens", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x00e150d741eda1d49d341189cae4c08a73a49c95.png", + "aggregators": ["CoinMarketCap", "Socket", "Rubic"], + "occurrences": 3 + }, + "0x76c4a2b59523eae19594c630aab43288dbb1463f": { + "address": "0x76c4a2b59523eae19594c630aab43288dbb1463f", + "symbol": "IRIS", + "decimals": 6, + "name": "IRISnet", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x76c4a2b59523eae19594c630aab43288dbb1463f.png", + "aggregators": ["CoinMarketCap", "LiFi", "Rubic"], + "occurrences": 3 + }, + "0xbdfa65533074b0b23ebc18c7190be79fa74b30c2": { + "address": "0xbdfa65533074b0b23ebc18c7190be79fa74b30c2", + "symbol": "ZDR", + "decimals": 18, + "name": "Zloadr Token", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xbdfa65533074b0b23ebc18c7190be79fa74b30c2.png", + "aggregators": ["CoinMarketCap", "LiFi", "Rubic"], + "occurrences": 3 + }, + "0xee9e5eff401ee921b138490d00ca8d1f13f67a72": { + "address": "0xee9e5eff401ee921b138490d00ca8d1f13f67a72", + "symbol": "AFIN", + "decimals": 8, + "name": "Asian Fintech", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xee9e5eff401ee921b138490d00ca8d1f13f67a72.png", + "aggregators": ["CoinMarketCap", "Rubic", "Rango"], + "occurrences": 3 + }, + "0xae353daeed8dcc7a9a12027f7e070c0a50b7b6a4": { + "address": "0xae353daeed8dcc7a9a12027f7e070c0a50b7b6a4", + "symbol": "MINX", + "decimals": 6, + "name": "InnovaMinex", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xae353daeed8dcc7a9a12027f7e070c0a50b7b6a4.png", + "aggregators": ["CoinMarketCap", "LiFi", "Rubic"], + "occurrences": 3 + }, + "0x187d1018e8ef879be4194d6ed7590987463ead85": { + "address": "0x187d1018e8ef879be4194d6ed7590987463ead85", + "symbol": "FUZE", + "decimals": 18, + "name": "FUZE Token", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x187d1018e8ef879be4194d6ed7590987463ead85.png", + "aggregators": ["CoinMarketCap", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x34d6a0f5c2f5d0082141fe73d93b9dd00ca7ce11": { + "address": "0x34d6a0f5c2f5d0082141fe73d93b9dd00ca7ce11", + "symbol": "GOLD", + "decimals": 18, + "name": "GOLDEN TOKEN", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x34d6a0f5c2f5d0082141fe73d93b9dd00ca7ce11.png", + "aggregators": ["CoinMarketCap", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x122f96d596384885b54bccdddf2125018c421d83": { + "address": "0x122f96d596384885b54bccdddf2125018c421d83", + "symbol": "CBIX", + "decimals": 8, + "name": "Cubiex", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x122f96d596384885b54bccdddf2125018c421d83.png", + "aggregators": ["CoinMarketCap", "LiFi", "Rubic"], + "occurrences": 3 + }, + "0x4057db5bd9f67a566aa10e5587b1a964affc6a16": { + "address": "0x4057db5bd9f67a566aa10e5587b1a964affc6a16", + "symbol": "TFBX", + "decimals": 18, + "name": "TrueFeedBack", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x4057db5bd9f67a566aa10e5587b1a964affc6a16.png", + "aggregators": ["CoinMarketCap", "Rubic", "Rango"], + "occurrences": 3 + }, + "0xcb39c3502415152b2ec90ff07ee18cc94f681a72": { + "address": "0xcb39c3502415152b2ec90ff07ee18cc94f681a72", + "symbol": "STO", + "decimals": 18, + "name": "storeum", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xcb39c3502415152b2ec90ff07ee18cc94f681a72.png", + "aggregators": ["CoinMarketCap", "Socket", "Rubic"], + "occurrences": 3 + }, + "0x35b08722aa26be119c1608029ccbc976ac5c1082": { + "address": "0x35b08722aa26be119c1608029ccbc976ac5c1082", + "symbol": "EM", + "decimals": 8, + "name": "Eminer", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x35b08722aa26be119c1608029ccbc976ac5c1082.png", + "aggregators": ["CoinMarketCap", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x72e203a17add19a3099137c9d7015fd3e2b7dba9": { + "address": "0x72e203a17add19a3099137c9d7015fd3e2b7dba9", + "symbol": "BCP", + "decimals": 18, + "name": "BlockchainPoland", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x72e203a17add19a3099137c9d7015fd3e2b7dba9.png", + "aggregators": ["CoinMarketCap", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x00fc270c9cc13e878ab5363d00354bebf6f05c15": { + "address": "0x00fc270c9cc13e878ab5363d00354bebf6f05c15", + "symbol": "VNXLU", + "decimals": 18, + "name": "VNX Exchange", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x00fc270c9cc13e878ab5363d00354bebf6f05c15.png", + "aggregators": ["CoinMarketCap", "LiFi", "Rubic"], + "occurrences": 3 + }, + "0xd9a8cfe21c232d485065cb62a96866799d4645f7": { + "address": "0xd9a8cfe21c232d485065cb62a96866799d4645f7", + "symbol": "FGP", + "decimals": 18, + "name": "FingerPrint", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xd9a8cfe21c232d485065cb62a96866799d4645f7.png", + "aggregators": ["CoinMarketCap", "LiFi", "Rubic"], + "occurrences": 3 + }, + "0x6be61833fc4381990e82d7d4a9f4c9b3f67ea941": { + "address": "0x6be61833fc4381990e82d7d4a9f4c9b3f67ea941", + "symbol": "HTB", + "decimals": 18, + "name": "Hotbit Token", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x6be61833fc4381990e82d7d4a9f4c9b3f67ea941.png", + "aggregators": ["CoinMarketCap", "LiFi", "Rubic"], + "occurrences": 3 + }, + "0x777fd20c983d6658c1d50b3958b3a1733d1cd1e1": { + "address": "0x777fd20c983d6658c1d50b3958b3a1733d1cd1e1", + "symbol": "NEWS", + "decimals": 9, + "name": "PUBLISH", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x777fd20c983d6658c1d50b3958b3a1733d1cd1e1.png", + "aggregators": ["Metamask", "Rubic", "Rango"], + "occurrences": 3 + }, + "0xaa2ce7ae64066175e0b90497ce7d9c190c315db4": { + "address": "0xaa2ce7ae64066175e0b90497ce7d9c190c315db4", + "symbol": "SUTER", + "decimals": 18, + "name": "Suterusu", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xaa2ce7ae64066175e0b90497ce7d9c190c315db4.png", + "aggregators": ["CoinMarketCap", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x4574562e9310a94f9ca962bd23168d8a06875b1a": { + "address": "0x4574562e9310a94f9ca962bd23168d8a06875b1a", + "symbol": "TROY", + "decimals": 18, + "name": "TROY", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x4574562e9310a94f9ca962bd23168d8a06875b1a.png", + "aggregators": ["CoinMarketCap", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x208bbb6bcea22ef2011789331405347394ebaa51": { + "address": "0x208bbb6bcea22ef2011789331405347394ebaa51", + "symbol": "1AI", + "decimals": 18, + "name": "AI", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x208bbb6bcea22ef2011789331405347394ebaa51.png", + "aggregators": ["CoinMarketCap", "LiFi", "Rubic"], + "occurrences": 3 + }, + "0x016ee7373248a80bde1fd6baa001311d233b3cfa": { + "address": "0x016ee7373248a80bde1fd6baa001311d233b3cfa", + "symbol": "BEAR", + "decimals": 18, + "name": "3X Short Bitcoin Token", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x016ee7373248a80bde1fd6baa001311d233b3cfa.png", + "aggregators": ["CoinMarketCap", "LiFi", "Rubic"], + "occurrences": 3 + }, + "0x3c2a309d9005433c1bc2c92ef1be06489e5bf258": { + "address": "0x3c2a309d9005433c1bc2c92ef1be06489e5bf258", + "symbol": "WPCI", + "decimals": 8, + "name": "Paycoin", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x3c2a309d9005433c1bc2c92ef1be06489e5bf258.png", + "aggregators": ["CoinMarketCap", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x51bc0deaf7bbe82bc9006b0c3531668a4206d27f": { + "address": "0x51bc0deaf7bbe82bc9006b0c3531668a4206d27f", + "symbol": "RAKU", + "decimals": 18, + "name": "RAKUN", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x51bc0deaf7bbe82bc9006b0c3531668a4206d27f.png", + "aggregators": ["CoinMarketCap", "LiFi", "Rubic"], + "occurrences": 3 + }, + "0xd9bae39c725a1864b1133ad0ef1640d02f79b78c": { + "address": "0xd9bae39c725a1864b1133ad0ef1640d02f79b78c", + "symbol": "TST", + "decimals": 18, + "name": "Touch Smart Token", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xd9bae39c725a1864b1133ad0ef1640d02f79b78c.png", + "aggregators": ["CoinMarketCap", "Socket", "Rubic"], + "occurrences": 3 + }, + "0xe0a16435df493bd17a58cb2ee58675f5ea069517": { + "address": "0xe0a16435df493bd17a58cb2ee58675f5ea069517", + "symbol": "GREEN", + "decimals": 18, + "name": "Green Token", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xe0a16435df493bd17a58cb2ee58675f5ea069517.png", + "aggregators": ["CoinMarketCap", "Socket", "Rubic"], + "occurrences": 3 + }, + "0x0d15009896efe9972f8e086bdd3bcba5c1f74bf3": { + "address": "0x0d15009896efe9972f8e086bdd3bcba5c1f74bf3", + "symbol": "SONO", + "decimals": 8, + "name": "SonoCoin", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x0d15009896efe9972f8e086bdd3bcba5c1f74bf3.png", + "aggregators": ["CoinMarketCap", "Rubic", "Rango"], + "occurrences": 3 + }, + "0xcfd6ae8bf13f42de14867351eaff7a8a3b9fbbe7": { + "address": "0xcfd6ae8bf13f42de14867351eaff7a8a3b9fbbe7", + "symbol": "SNG", + "decimals": 8, + "name": "SINERGIA", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xcfd6ae8bf13f42de14867351eaff7a8a3b9fbbe7.png", + "aggregators": ["CoinMarketCap", "LiFi", "Rubic"], + "occurrences": 3 + }, + "0x8fc9b6354e839ab1c8b31f4afa53607092b8c2e5": { + "address": "0x8fc9b6354e839ab1c8b31f4afa53607092b8c2e5", + "symbol": "ECU", + "decimals": 18, + "name": "ECOSCU", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x8fc9b6354e839ab1c8b31f4afa53607092b8c2e5.png", + "aggregators": ["CoinMarketCap", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x16b0a1a87ae8af5c792fabc429c4fe248834842b": { + "address": "0x16b0a1a87ae8af5c792fabc429c4fe248834842b", + "symbol": "ALG", + "decimals": 18, + "name": "Algory", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x16b0a1a87ae8af5c792fabc429c4fe248834842b.png", + "aggregators": ["CoinMarketCap", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x61bfc979ea8160ede9b862798b7833a97bafa02a": { + "address": "0x61bfc979ea8160ede9b862798b7833a97bafa02a", + "symbol": "REL", + "decimals": 18, + "name": "RELEASE COIN", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x61bfc979ea8160ede9b862798b7833a97bafa02a.png", + "aggregators": ["CoinMarketCap", "Socket", "Rubic"], + "occurrences": 3 + }, + "0xc4199fb6ffdb30a829614beca030f9042f1c3992": { + "address": "0xc4199fb6ffdb30a829614beca030f9042f1c3992", + "symbol": "SGT", + "decimals": 18, + "name": "snglsDAO Governance Token", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xc4199fb6ffdb30a829614beca030f9042f1c3992.png", + "aggregators": ["CoinMarketCap", "Socket", "Rubic"], + "occurrences": 3 + }, + "0x400b1d8a7dd8c471026b2c8cbe1062b27d120538": { + "address": "0x400b1d8a7dd8c471026b2c8cbe1062b27d120538", + "symbol": "LIMEX", + "decimals": 8, + "name": "Limestone Network", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x400b1d8a7dd8c471026b2c8cbe1062b27d120538.png", + "aggregators": ["CoinMarketCap", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x4599836c212cd988eaccc54c820ee9261cdaac71": { + "address": "0x4599836c212cd988eaccc54c820ee9261cdaac71", + "symbol": "CID", + "decimals": 18, + "name": "Cryptid", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x4599836c212cd988eaccc54c820ee9261cdaac71.png", + "aggregators": ["CoinMarketCap", "LiFi", "Rubic"], + "occurrences": 3 + }, + "0xe64b47931f28f89cc7a0c6965ecf89eadb4975f5": { + "address": "0xe64b47931f28f89cc7a0c6965ecf89eadb4975f5", + "symbol": "LUD", + "decimals": 18, + "name": "Ludos Protocol", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xe64b47931f28f89cc7a0c6965ecf89eadb4975f5.png", + "aggregators": ["CoinMarketCap", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x68a118ef45063051eac49c7e647ce5ace48a68a5": { + "address": "0x68a118ef45063051eac49c7e647ce5ace48a68a5", + "symbol": "$BASED", + "decimals": 18, + "name": "$BASED", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x68a118ef45063051eac49c7e647ce5ace48a68a5.png", + "aggregators": ["CoinMarketCap", "LiFi", "Rubic"], + "occurrences": 3 + }, + "0xfab5a05c933f1a2463e334e011992e897d56ef0a": { + "address": "0xfab5a05c933f1a2463e334e011992e897d56ef0a", + "symbol": "DOTX", + "decimals": 18, + "name": "DeFi Of Thrones", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xfab5a05c933f1a2463e334e011992e897d56ef0a.png", + "aggregators": ["CoinMarketCap", "LiFi", "Rubic"], + "occurrences": 3 + }, + "0x035bfe6057e15ea692c0dfdcab3bb41a64dd2ad4": { + "address": "0x035bfe6057e15ea692c0dfdcab3bb41a64dd2ad4", + "symbol": "ULU", + "decimals": 18, + "name": "Universal Liquidity Union", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x035bfe6057e15ea692c0dfdcab3bb41a64dd2ad4.png", + "aggregators": ["CoinMarketCap", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x1788430620960f9a70e3dc14202a3a35dde1a316": { + "address": "0x1788430620960f9a70e3dc14202a3a35dde1a316", + "symbol": "OAP", + "decimals": 18, + "name": "Open Alexa Protocol", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x1788430620960f9a70e3dc14202a3a35dde1a316.png", + "aggregators": ["CoinMarketCap", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x69692d3345010a207b759a7d1af6fc7f38b35c5e": { + "address": "0x69692d3345010a207b759a7d1af6fc7f38b35c5e", + "symbol": "CHADS", + "decimals": 18, + "name": "chads.vc", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x69692d3345010a207b759a7d1af6fc7f38b35c5e.png", + "aggregators": ["CoinMarketCap", "TrustWallet", "Rubic"], + "occurrences": 3 + }, + "0x5c4ac68aac56ebe098d621cd8ce9f43270aaa355": { + "address": "0x5c4ac68aac56ebe098d621cd8ce9f43270aaa355", + "symbol": "BXIOT", + "decimals": 6, + "name": "bXIOT Token", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x5c4ac68aac56ebe098d621cd8ce9f43270aaa355.png", + "aggregators": ["CoinMarketCap", "LiFi", "Rubic"], + "occurrences": 3 + }, + "0xe6410569602124506658ff992f258616ea2d4a3d": { + "address": "0xe6410569602124506658ff992f258616ea2d4a3d", + "symbol": "KATANA", + "decimals": 18, + "name": "KatanaToken", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xe6410569602124506658ff992f258616ea2d4a3d.png", + "aggregators": ["CoinMarketCap", "LiFi", "Rubic"], + "occurrences": 3 + }, + "0xe09216f1d343dd39d6aa732a08036fee48555af0": { + "address": "0xe09216f1d343dd39d6aa732a08036fee48555af0", + "symbol": "TRIB", + "decimals": 18, + "name": "Contribute", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xe09216f1d343dd39d6aa732a08036fee48555af0.png", + "aggregators": ["CoinMarketCap", "LiFi", "Rubic"], + "occurrences": 3 + }, + "0xbcd9e216200369803ed059b7744f6fb4cf3887c7": { + "address": "0xbcd9e216200369803ed059b7744f6fb4cf3887c7", + "symbol": "EPIC", + "decimals": 18, + "name": "Epic", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xbcd9e216200369803ed059b7744f6fb4cf3887c7.png", + "aggregators": ["CoinMarketCap", "Socket", "Rubic"], + "occurrences": 3 + }, + "0xed7fa212e100dfb3b13b834233e4b680332a3420": { + "address": "0xed7fa212e100dfb3b13b834233e4b680332a3420", + "symbol": "CRED", + "decimals": 18, + "name": "Street Cred", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xed7fa212e100dfb3b13b834233e4b680332a3420.png", + "aggregators": ["CoinMarketCap", "LiFi", "Rubic"], + "occurrences": 3 + }, + "0xb4fbed161bebcb37afb1cb4a6f7ca18b977ccb25": { + "address": "0xb4fbed161bebcb37afb1cb4a6f7ca18b977ccb25", + "symbol": "DOGES", + "decimals": 18, + "name": "DOGEswap", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xb4fbed161bebcb37afb1cb4a6f7ca18b977ccb25.png", + "aggregators": ["CoinMarketCap", "Rubic", "Rango"], + "occurrences": 3 + }, + "0xdd039990bd551ce7437d3bf54d155220b7988b71": { + "address": "0xdd039990bd551ce7437d3bf54d155220b7988b71", + "symbol": "DEGENS", + "decimals": 18, + "name": "Degens Token", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xdd039990bd551ce7437d3bf54d155220b7988b71.png", + "aggregators": ["CoinMarketCap", "LiFi", "Rubic"], + "occurrences": 3 + }, + "0x160b1e5aabfd70b2fc40af815014925d71ceed7e": { + "address": "0x160b1e5aabfd70b2fc40af815014925d71ceed7e", + "symbol": "STFIRO", + "decimals": 8, + "name": "stakedFiro", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x160b1e5aabfd70b2fc40af815014925d71ceed7e.png", + "aggregators": ["CoinMarketCap", "LiFi", "Rubic"], + "occurrences": 3 + }, + "0x79ba92dda26fce15e1e9af47d5cfdfd2a093e000": { + "address": "0x79ba92dda26fce15e1e9af47d5cfdfd2a093e000", + "symbol": "SERGS", + "decimals": 18, + "name": "SERGS", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x79ba92dda26fce15e1e9af47d5cfdfd2a093e000.png", + "aggregators": ["CoinMarketCap", "LiFi", "Rubic"], + "occurrences": 3 + }, + "0x21686f8ce003a95c99acd297e302faacf742f7d4": { + "address": "0x21686f8ce003a95c99acd297e302faacf742f7d4", + "symbol": "WCCX", + "decimals": 6, + "name": "Conceal - Wrapped CCX", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x21686f8ce003a95c99acd297e302faacf742f7d4.png", + "aggregators": ["CoinMarketCap", "LiFi", "Rubic"], + "occurrences": 3 + }, + "0x1368452bfb5cd127971c8de22c58fbe89d35a6bf": { + "address": "0x1368452bfb5cd127971c8de22c58fbe89d35a6bf", + "symbol": "JNTRE", + "decimals": 18, + "name": "JNTRe", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x1368452bfb5cd127971c8de22c58fbe89d35a6bf.png", + "aggregators": ["CoinMarketCap", "Rubic", "Bancor"], + "occurrences": 3 + }, + "0x2e2f3246b6c65ccc4239c9ee556ec143a7e5de2c": { + "address": "0x2e2f3246b6c65ccc4239c9ee556ec143a7e5de2c", + "symbol": "YFIM", + "decimals": 18, + "name": "Yfi.mobi", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x2e2f3246b6c65ccc4239c9ee556ec143a7e5de2c.png", + "aggregators": ["CoinMarketCap", "TrustWallet", "Rubic"], + "occurrences": 3 + }, + "0xbd434a09191d401da3283a5545bb3515d033b8c4": { + "address": "0xbd434a09191d401da3283a5545bb3515d033b8c4", + "symbol": "GIX", + "decimals": 18, + "name": "GoldFinX", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xbd434a09191d401da3283a5545bb3515d033b8c4.png", + "aggregators": ["CoinMarketCap", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x2f4eb47a1b1f4488c71fc10e39a4aa56af33dd49": { + "address": "0x2f4eb47a1b1f4488c71fc10e39a4aa56af33dd49", + "symbol": "UNCL", + "decimals": 18, + "name": "UNCL", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x2f4eb47a1b1f4488c71fc10e39a4aa56af33dd49.png", + "aggregators": ["CoinMarketCap", "LiFi", "Rubic"], + "occurrences": 3 + }, + "0xd1420af453fd7bf940573431d416cace7ff8280c": { + "address": "0xd1420af453fd7bf940573431d416cace7ff8280c", + "symbol": "AGOV", + "decimals": 18, + "name": "ANSWER Governance", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xd1420af453fd7bf940573431d416cace7ff8280c.png", + "aggregators": ["CoinMarketCap", "Rubic", "Rango"], + "occurrences": 3 + }, + "0xa8580f3363684d76055bdc6660caefe8709744e1": { + "address": "0xa8580f3363684d76055bdc6660caefe8709744e1", + "symbol": "FOL", + "decimals": 18, + "name": "Folder Coin", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xa8580f3363684d76055bdc6660caefe8709744e1.png", + "aggregators": ["CoinMarketCap", "LiFi", "Rubic"], + "occurrences": 3 + }, + "0xc626e0619ac79afea9281c8eb9b1a9f9d3fab532": { + "address": "0xc626e0619ac79afea9281c8eb9b1a9f9d3fab532", + "symbol": "FR", + "decimals": 18, + "name": "Freedom Reserve", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xc626e0619ac79afea9281c8eb9b1a9f9d3fab532.png", + "aggregators": ["CoinMarketCap", "LiFi", "Rubic"], + "occurrences": 3 + }, + "0xf7970499814654cd13cb7b6e7634a12a7a8a9abc": { + "address": "0xf7970499814654cd13cb7b6e7634a12a7a8a9abc", + "symbol": "TOM", + "decimals": 18, + "name": "TOM", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xf7970499814654cd13cb7b6e7634a12a7a8a9abc.png", + "aggregators": ["CoinMarketCap", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x8d5db0c1f0681071cb38a382ae6704588d9da587": { + "address": "0x8d5db0c1f0681071cb38a382ae6704588d9da587", + "symbol": "PROPHET", + "decimals": 9, + "name": "prophet.finance", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x8d5db0c1f0681071cb38a382ae6704588d9da587.png", + "aggregators": ["CoinMarketCap", "LiFi", "Rubic"], + "occurrences": 3 + }, + "0x8d1ce361eb68e9e05573443c407d4a3bed23b033": { + "address": "0x8d1ce361eb68e9e05573443c407d4a3bed23b033", + "symbol": "DEFI++", + "decimals": 18, + "name": "PieDAO DEFI++", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x8d1ce361eb68e9e05573443c407d4a3bed23b033.png", + "aggregators": ["CoinMarketCap", "LiFi", "Rubic"], + "occurrences": 3 + }, + "0x3aa5f749d4a6bcf67dac1091ceb69d1f5d86fa53": { + "address": "0x3aa5f749d4a6bcf67dac1091ceb69d1f5d86fa53", + "symbol": "DEFLCT", + "decimals": 9, + "name": "Deflect Protocol", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x3aa5f749d4a6bcf67dac1091ceb69d1f5d86fa53.png", + "aggregators": ["CoinMarketCap", "LiFi", "Rubic"], + "occurrences": 3 + }, + "0x47e820df943170b0e31f9e18ecd5bdd67b77ff1f": { + "address": "0x47e820df943170b0e31f9e18ecd5bdd67b77ff1f", + "symbol": "PIGX", + "decimals": 18, + "name": "PIGX", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x47e820df943170b0e31f9e18ecd5bdd67b77ff1f.png", + "aggregators": ["CoinMarketCap", "LiFi", "Rubic"], + "occurrences": 3 + }, + "0xd36932143f6ebdedd872d5fb0651f4b72fd15a84": { + "address": "0xd36932143f6ebdedd872d5fb0651f4b72fd15a84", + "symbol": "MAAPL", + "decimals": 18, + "name": "Wrapped Mirror AAPL Token", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xd36932143f6ebdedd872d5fb0651f4b72fd15a84.png", + "aggregators": ["CoinMarketCap", "LiFi", "Rubic"], + "occurrences": 3 + }, + "0xc8d674114bac90148d11d3c1d33c61835a0f9dcd": { + "address": "0xc8d674114bac90148d11d3c1d33c61835a0f9dcd", + "symbol": "MNFLX", + "decimals": 18, + "name": "Wrapped Mirror NFLX Token", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xc8d674114bac90148d11d3c1d33c61835a0f9dcd.png", + "aggregators": ["CoinMarketCap", "LiFi", "Rubic"], + "occurrences": 3 + }, + "0x56aa298a19c93c6801fdde870fa63ef75cc0af72": { + "address": "0x56aa298a19c93c6801fdde870fa63ef75cc0af72", + "symbol": "MBABA", + "decimals": 18, + "name": "Wrapped Mirror BABA Token", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x56aa298a19c93c6801fdde870fa63ef75cc0af72.png", + "aggregators": ["CoinMarketCap", "LiFi", "Rubic"], + "occurrences": 3 + }, + "0xedb0414627e6f1e3f082de65cd4f9c693d78cca9": { + "address": "0xedb0414627e6f1e3f082de65cd4f9c693d78cca9", + "symbol": "MTWTR", + "decimals": 18, + "name": "Wrapped Mirror TWTR Token", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xedb0414627e6f1e3f082de65cd4f9c693d78cca9.png", + "aggregators": ["CoinMarketCap", "LiFi", "Rubic"], + "occurrences": 3 + }, + "0x32c868f6318d6334b2250f323d914bc2239e4eee": { + "address": "0x32c868f6318d6334b2250f323d914bc2239e4eee", + "symbol": "N3RDZ", + "decimals": 18, + "name": "N3RD.FINANCE", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x32c868f6318d6334b2250f323d914bc2239e4eee.png", + "aggregators": ["CoinMarketCap", "LiFi", "Rubic"], + "occurrences": 3 + }, + "0x1d350417d9787e000cc1b95d70e9536dcd91f373": { + "address": "0x1d350417d9787e000cc1b95d70e9536dcd91f373", + "symbol": "MIAU", + "decimals": 18, + "name": "Wrapped Mirror IAU Token", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x1d350417d9787e000cc1b95d70e9536dcd91f373.png", + "aggregators": ["CoinMarketCap", "LiFi", "Rubic"], + "occurrences": 3 + }, + "0x56b4f8c39e07d4d5d91692acf9d0f6d4d3493763": { + "address": "0x56b4f8c39e07d4d5d91692acf9d0f6d4d3493763", + "symbol": "TRISM", + "decimals": 18, + "name": "Trism", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x56b4f8c39e07d4d5d91692acf9d0f6d4d3493763.png", + "aggregators": ["CoinMarketCap", "LiFi", "Rubic"], + "occurrences": 3 + }, + "0x17c090f9a17e4e5a8ceb23bbe7e7e28e3c4ca196": { + "address": "0x17c090f9a17e4e5a8ceb23bbe7e7e28e3c4ca196", + "symbol": "DNS", + "decimals": 18, + "name": "BitDNS", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x17c090f9a17e4e5a8ceb23bbe7e7e28e3c4ca196.png", + "aggregators": ["CoinMarketCap", "LiFi", "Rubic"], + "occurrences": 3 + }, + "0x861b2456ac1a6ab5fb5c72aa456091f23ddec1cc": { + "address": "0x861b2456ac1a6ab5fb5c72aa456091f23ddec1cc", + "symbol": "VAULTZ", + "decimals": 18, + "name": "VAULTZ", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x861b2456ac1a6ab5fb5c72aa456091f23ddec1cc.png", + "aggregators": ["CoinMarketCap", "LiFi", "Rubic"], + "occurrences": 3 + }, + "0xb453f1f2ee776daf2586501361c457db70e1ca0f": { + "address": "0xb453f1f2ee776daf2586501361c457db70e1ca0f", + "symbol": "AGAR", + "decimals": 8, + "name": "AGA Rewards", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xb453f1f2ee776daf2586501361c457db70e1ca0f.png", + "aggregators": ["CoinMarketCap", "LiFi", "Rubic"], + "occurrences": 3 + }, + "0x9048c33c7bae0bbe9ad702b17b4453a83900d154": { + "address": "0x9048c33c7bae0bbe9ad702b17b4453a83900d154", + "symbol": "ELX", + "decimals": 18, + "name": "Energy Ledger", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x9048c33c7bae0bbe9ad702b17b4453a83900d154.png", + "aggregators": ["CoinMarketCap", "Socket", "Rubic"], + "occurrences": 3 + }, + "0xbf494f02ee3fde1f20bee6242bce2d1ed0c15e47": { + "address": "0xbf494f02ee3fde1f20bee6242bce2d1ed0c15e47", + "symbol": "WORLD", + "decimals": 18, + "name": "World Token", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xbf494f02ee3fde1f20bee6242bce2d1ed0c15e47.png", + "aggregators": ["CoinMarketCap", "TrustWallet", "Rubic"], + "occurrences": 3 + }, + "0x7671904eed7f10808b664fc30bb8693fd7237abf": { + "address": "0x7671904eed7f10808b664fc30bb8693fd7237abf", + "symbol": "BBR", + "decimals": 18, + "name": "Boolberry", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x7671904eed7f10808b664fc30bb8693fd7237abf.png", + "aggregators": ["CoinMarketCap", "TrustWallet", "Rubic"], + "occurrences": 3 + }, + "0x3fa807b6f8d4c407e6e605368f4372d14658b38c": { + "address": "0x3fa807b6f8d4c407e6e605368f4372d14658b38c", + "symbol": "RISE", + "decimals": 9, + "name": "Rise Protocol", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x3fa807b6f8d4c407e6e605368f4372d14658b38c.png", + "aggregators": ["CoinMarketCap", "Socket", "Rubic"], + "occurrences": 3 + }, + "0x77dce26c03a9b833fc2d7c31c22da4f42e9d9582": { + "address": "0x77dce26c03a9b833fc2d7c31c22da4f42e9d9582", + "symbol": "DVD", + "decimals": 18, + "name": "DAOventuresDeFi", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x77dce26c03a9b833fc2d7c31c22da4f42e9d9582.png", + "aggregators": ["CoinMarketCap", "LiFi", "Rubic"], + "occurrences": 3 + }, + "0x44f262622248027f8e2a8fb1090c4cf85072392c": { + "address": "0x44f262622248027f8e2a8fb1090c4cf85072392c", + "symbol": "XIV", + "decimals": 18, + "name": "INVERSE", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x44f262622248027f8e2a8fb1090c4cf85072392c.png", + "aggregators": ["CoinMarketCap", "LiFi", "Rubic"], + "occurrences": 3 + }, + "0xf0c5831ec3da15f3696b4dad8b21c7ce2f007f28": { + "address": "0xf0c5831ec3da15f3696b4dad8b21c7ce2f007f28", + "symbol": "AXIS", + "decimals": 8, + "name": "AXIS Token", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xf0c5831ec3da15f3696b4dad8b21c7ce2f007f28.png", + "aggregators": ["CoinMarketCap", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x11003e410ca3fcd220765b3d2f343433a0b2bffd": { + "address": "0x11003e410ca3fcd220765b3d2f343433a0b2bffd", + "symbol": "METH", + "decimals": 18, + "name": "Farming Bad", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x11003e410ca3fcd220765b3d2f343433a0b2bffd.png", + "aggregators": ["CoinMarketCap", "Socket", "Rubic"], + "occurrences": 3 + }, + "0x957891c11616d3e0b0a76a76fb42724c382e0ef3": { + "address": "0x957891c11616d3e0b0a76a76fb42724c382e0ef3", + "symbol": "COLL", + "decimals": 18, + "name": "Collateral", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x957891c11616d3e0b0a76a76fb42724c382e0ef3.png", + "aggregators": ["CoinMarketCap", "LiFi", "Rubic"], + "occurrences": 3 + }, + "0x65ad6a2288b2dd23e466226397c8f5d1794e58fc": { + "address": "0x65ad6a2288b2dd23e466226397c8f5d1794e58fc", + "symbol": "GFX", + "decimals": 18, + "name": "GamyFi Platform", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x65ad6a2288b2dd23e466226397c8f5d1794e58fc.png", + "aggregators": ["CoinMarketCap", "Rubic", "Rango"], + "occurrences": 3 + }, + "0xa15690e9205de386ce849889831c1668c300c1ad": { + "address": "0xa15690e9205de386ce849889831c1668c300c1ad", + "symbol": "PETH18C", + "decimals": 18, + "name": "pETH18C", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xa15690e9205de386ce849889831c1668c300c1ad.png", + "aggregators": ["CoinMarketCap", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x202f1877e1db1120ca3e9a98c5d505e7f035c249": { + "address": "0x202f1877e1db1120ca3e9a98c5d505e7f035c249", + "symbol": "ZUZ", + "decimals": 18, + "name": "Zeus", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x202f1877e1db1120ca3e9a98c5d505e7f035c249.png", + "aggregators": ["CoinMarketCap", "LiFi", "Rubic"], + "occurrences": 3 + }, + "0x0e58ed58e150dba5fd8e5d4a49f54c7e1e880124": { + "address": "0x0e58ed58e150dba5fd8e5d4a49f54c7e1e880124", + "symbol": "RELI", + "decimals": 18, + "name": "Relite", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x0e58ed58e150dba5fd8e5d4a49f54c7e1e880124.png", + "aggregators": ["CoinMarketCap", "LiFi", "Rubic"], + "occurrences": 3 + }, + "0x817e2addceaa4907623666a7800b1553ca21192d": { + "address": "0x817e2addceaa4907623666a7800b1553ca21192d", + "symbol": "UBA", + "decimals": 18, + "name": "Unbox.Art", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x817e2addceaa4907623666a7800b1553ca21192d.png", + "aggregators": ["CoinMarketCap", "LiFi", "Rubic"], + "occurrences": 3 + }, + "0xd0f05d3d4e4d1243ac826d8c6171180c58eaa9bc": { + "address": "0xd0f05d3d4e4d1243ac826d8c6171180c58eaa9bc", + "symbol": "VNTW", + "decimals": 18, + "name": "Value Network Token", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xd0f05d3d4e4d1243ac826d8c6171180c58eaa9bc.png", + "aggregators": ["CoinMarketCap", "LiFi", "Rubic"], + "occurrences": 3 + }, + "0xf3eb8b90c763b8b2b53e7819ac27eca8f94c8ec2": { + "address": "0xf3eb8b90c763b8b2b53e7819ac27eca8f94c8ec2", + "symbol": "ETM", + "decimals": 18, + "name": "ethersmart", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xf3eb8b90c763b8b2b53e7819ac27eca8f94c8ec2.png", + "aggregators": ["CoinMarketCap", "LiFi", "Rubic"], + "occurrences": 3 + }, + "0xe0bdfe2ce51f44556309665d59818ccb541ff067": { + "address": "0xe0bdfe2ce51f44556309665d59818ccb541ff067", + "symbol": "CPTE", + "decimals": 18, + "name": "Crypto puzzles", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xe0bdfe2ce51f44556309665d59818ccb541ff067.png", + "aggregators": ["CoinMarketCap", "LiFi", "Rubic"], + "occurrences": 3 + }, + "0x734c90044a0ba31b3f2e640c10dc5d3540499bfd": { + "address": "0x734c90044a0ba31b3f2e640c10dc5d3540499bfd", + "symbol": "TSX", + "decimals": 18, + "name": "TradeStars", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x734c90044a0ba31b3f2e640c10dc5d3540499bfd.png", + "aggregators": ["CoinMarketCap", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x7e9d8f07a64e363e97a648904a89fb4cd5fb94cd": { + "address": "0x7e9d8f07a64e363e97a648904a89fb4cd5fb94cd", + "symbol": "FF", + "decimals": 18, + "name": "Forefront", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x7e9d8f07a64e363e97a648904a89fb4cd5fb94cd.png", + "aggregators": ["CoinMarketCap", "Socket", "Rubic"], + "occurrences": 3 + }, + "0xbf6ff49ffd3d104302ef0ab0f10f5a84324c091c": { + "address": "0xbf6ff49ffd3d104302ef0ab0f10f5a84324c091c", + "symbol": "NFTFY", + "decimals": 18, + "name": "Nftfy Token", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xbf6ff49ffd3d104302ef0ab0f10f5a84324c091c.png", + "aggregators": ["CoinMarketCap", "LiFi", "Rubic"], + "occurrences": 3 + }, + "0x537edd52ebcb9f48ff2f8a28c51fcdb9d6a6e0d4": { + "address": "0x537edd52ebcb9f48ff2f8a28c51fcdb9d6a6e0d4", + "symbol": "SDOG", + "decimals": 18, + "name": "SDOG", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x537edd52ebcb9f48ff2f8a28c51fcdb9d6a6e0d4.png", + "aggregators": ["CoinMarketCap", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x9fadea1aff842d407893e21dbd0e2017b4c287b6": { + "address": "0x9fadea1aff842d407893e21dbd0e2017b4c287b6", + "symbol": "PGF7T", + "decimals": 18, + "name": "PGF500 Token", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x9fadea1aff842d407893e21dbd0e2017b4c287b6.png", + "aggregators": ["CoinMarketCap", "LiFi", "Rubic"], + "occurrences": 3 + }, + "0x556938621c19e5eae58c94a806da9d237b969bd8": { + "address": "0x556938621c19e5eae58c94a806da9d237b969bd8", + "symbol": "LOCC", + "decimals": 18, + "name": "Low Orbit Crypto Cannon", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x556938621c19e5eae58c94a806da9d237b969bd8.png", + "aggregators": ["CoinMarketCap", "LiFi", "Rubic"], + "occurrences": 3 + }, + "0x2ecc48ba346a73d7d55aa5a46b5e314d9daa6161": { + "address": "0x2ecc48ba346a73d7d55aa5a46b5e314d9daa6161", + "symbol": "SSGT", + "decimals": 18, + "name": "SafeSwap", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x2ecc48ba346a73d7d55aa5a46b5e314d9daa6161.png", + "aggregators": ["CoinMarketCap", "LiFi", "Rubic"], + "occurrences": 3 + }, + "0xce3f6f6672616c39d8b6858f8dac9902eca42c84": { + "address": "0xce3f6f6672616c39d8b6858f8dac9902eca42c84", + "symbol": "DAO1", + "decimals": 18, + "name": "DAO1", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xce3f6f6672616c39d8b6858f8dac9902eca42c84.png", + "aggregators": ["CoinMarketCap", "LiFi", "Rubic"], + "occurrences": 3 + }, + "0xabafa52d3d5a2c18a4c1ae24480d22b831fc0413": { + "address": "0xabafa52d3d5a2c18a4c1ae24480d22b831fc0413", + "symbol": "FFF", + "decimals": 18, + "name": "Future of Finance Fund", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xabafa52d3d5a2c18a4c1ae24480d22b831fc0413.png", + "aggregators": ["CoinMarketCap", "LiFi", "Rubic"], + "occurrences": 3 + }, + "0xc8ef1460277ea47d179dec66d1c5f8b7f7ae5a28": { + "address": "0xc8ef1460277ea47d179dec66d1c5f8b7f7ae5a28", + "symbol": "RIFI", + "decimals": 18, + "name": "Rikkei Finance", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xc8ef1460277ea47d179dec66d1c5f8b7f7ae5a28.png", + "aggregators": ["CoinMarketCap", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x356a5160f2b34bc8d88fb084745465ebbbed0174": { + "address": "0x356a5160f2b34bc8d88fb084745465ebbbed0174", + "symbol": "INVI", + "decimals": 13, + "name": "Invitoken", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x356a5160f2b34bc8d88fb084745465ebbbed0174.png", + "aggregators": ["CoinMarketCap", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x5a75a093747b72a0e14056352751edf03518031d": { + "address": "0x5a75a093747b72a0e14056352751edf03518031d", + "symbol": "ESW", + "decimals": 18, + "name": "EmiSwap - EmiDao Token", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x5a75a093747b72a0e14056352751edf03518031d.png", + "aggregators": ["CoinMarketCap", "LiFi", "Rubic"], + "occurrences": 3 + }, + "0xc631120155621ee625835ec810b9885cdd764cd6": { + "address": "0xc631120155621ee625835ec810b9885cdd764cd6", + "symbol": "GLDX", + "decimals": 8, + "name": "Goldex Token", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xc631120155621ee625835ec810b9885cdd764cd6.png", + "aggregators": ["CoinMarketCap", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x9681ee0d91e737c3b60aceba7fbdae61b5462f42": { + "address": "0x9681ee0d91e737c3b60aceba7fbdae61b5462f42", + "symbol": "CYCE", + "decimals": 6, + "name": "Crypto Carbon Energy", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x9681ee0d91e737c3b60aceba7fbdae61b5462f42.png", + "aggregators": ["CoinMarketCap", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x36ce7a52cda404b8fa87a98d0d17ec7dd0b144ed": { + "address": "0x36ce7a52cda404b8fa87a98d0d17ec7dd0b144ed", + "symbol": "PSLIP", + "decimals": 18, + "name": "Pinkslip Finance", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x36ce7a52cda404b8fa87a98d0d17ec7dd0b144ed.png", + "aggregators": ["CoinMarketCap", "LiFi", "Rubic"], + "occurrences": 3 + }, + "0xc1d9b5a0776d7c8b98b8a838e5a0dd1bc5fdd53c": { + "address": "0xc1d9b5a0776d7c8b98b8a838e5a0dd1bc5fdd53c", + "symbol": "ZONE", + "decimals": 18, + "name": "GridZone.io", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xc1d9b5a0776d7c8b98b8a838e5a0dd1bc5fdd53c.png", + "aggregators": ["CoinMarketCap", "LiFi", "Rubic"], + "occurrences": 3 + }, + "0x79c7ef95ad32dcd5ecadb231568bb03df7824815": { + "address": "0x79c7ef95ad32dcd5ecadb231568bb03df7824815", + "symbol": "ARV", + "decimals": 8, + "name": "ARV", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x79c7ef95ad32dcd5ecadb231568bb03df7824815.png", + "aggregators": ["CoinMarketCap", "Rubic", "Rango"], + "occurrences": 3 + }, + "0xa00055e6ee4d1f4169096ecb682f70caa8c29987": { + "address": "0xa00055e6ee4d1f4169096ecb682f70caa8c29987", + "symbol": "WIVA", + "decimals": 18, + "name": "WIVA", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xa00055e6ee4d1f4169096ecb682f70caa8c29987.png", + "aggregators": ["CoinMarketCap", "LiFi", "Rubic"], + "occurrences": 3 + }, + "0xc242eb8e4e27eae6a2a728a41201152f19595c83": { + "address": "0xc242eb8e4e27eae6a2a728a41201152f19595c83", + "symbol": "ECO", + "decimals": 18, + "name": "EcoFi Token", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xc242eb8e4e27eae6a2a728a41201152f19595c83.png", + "aggregators": ["CoinMarketCap", "Socket", "Rubic"], + "occurrences": 3 + }, + "0xf88b137cfa667065955abd17525e89edcf4d6426": { + "address": "0xf88b137cfa667065955abd17525e89edcf4d6426", + "symbol": "$ITG", + "decimals": 18, + "name": "iTrust Governance Token", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xf88b137cfa667065955abd17525e89edcf4d6426.png", + "aggregators": ["CoinMarketCap", "LiFi", "Rubic"], + "occurrences": 3 + }, + "0x9ac5c63ddcb93612e316ab31dfc8192bc8961988": { + "address": "0x9ac5c63ddcb93612e316ab31dfc8192bc8961988", + "symbol": "ARA", + "decimals": 18, + "name": "Adora", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x9ac5c63ddcb93612e316ab31dfc8192bc8961988.png", + "aggregators": ["CoinMarketCap", "Socket", "Rubic"], + "occurrences": 3 + }, + "0x09ce2b746c32528b7d864a1e3979bd97d2f095ab": { + "address": "0x09ce2b746c32528b7d864a1e3979bd97d2f095ab", + "symbol": "DFL", + "decimals": 18, + "name": "DeFIL-V2", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x09ce2b746c32528b7d864a1e3979bd97d2f095ab.png", + "aggregators": ["CoinMarketCap", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x4b7ee45f30767f36f06f79b32bf1fca6f726deda": { + "address": "0x4b7ee45f30767f36f06f79b32bf1fca6f726deda", + "symbol": "EFIL", + "decimals": 18, + "name": "Ethereum Wrapped Filecoin", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x4b7ee45f30767f36f06f79b32bf1fca6f726deda.png", + "aggregators": ["CoinMarketCap", "LiFi", "Rubic"], + "occurrences": 3 + }, + "0x1f4cb968b76931c494ff92ed80ccb169ad641cb1": { + "address": "0x1f4cb968b76931c494ff92ed80ccb169ad641cb1", + "symbol": "STF", + "decimals": 18, + "name": "Structure finance", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x1f4cb968b76931c494ff92ed80ccb169ad641cb1.png", + "aggregators": ["CoinMarketCap", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x6c16119b20fa52600230f074b349da3cb861a7e3": { + "address": "0x6c16119b20fa52600230f074b349da3cb861a7e3", + "symbol": "ALK", + "decimals": 18, + "name": "Alkemi_Network_DAO_Token", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x6c16119b20fa52600230f074b349da3cb861a7e3.png", + "aggregators": ["CoinMarketCap", "LiFi", "Rubic"], + "occurrences": 3 + }, + "0xefe2afb5f2a9ea8ec6d8a57fe88febcfe29db813": { + "address": "0xefe2afb5f2a9ea8ec6d8a57fe88febcfe29db813", + "symbol": "BUKH", + "decimals": 18, + "name": "bUKHI", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xefe2afb5f2a9ea8ec6d8a57fe88febcfe29db813.png", + "aggregators": ["CoinMarketCap", "LiFi", "Rubic"], + "occurrences": 3 + }, + "0x57db3ffca78dbbe0efa0ec745d55f62aa0cbd345": { + "address": "0x57db3ffca78dbbe0efa0ec745d55f62aa0cbd345", + "symbol": "SYMM", + "decimals": 18, + "name": "Symmetric", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x57db3ffca78dbbe0efa0ec745d55f62aa0cbd345.png", + "aggregators": ["CoinMarketCap", "LiFi", "Rubic"], + "occurrences": 3 + }, + "0x00a55375002f3cda400383f479e7cd57bad029a9": { + "address": "0x00a55375002f3cda400383f479e7cd57bad029a9", + "symbol": "CNJ", + "decimals": 18, + "name": "Conjure", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x00a55375002f3cda400383f479e7cd57bad029a9.png", + "aggregators": ["CoinMarketCap", "LiFi", "Rubic"], + "occurrences": 3 + }, + "0x1e05f68b29b286fb3bbad3c688d7e2abda549b80": { + "address": "0x1e05f68b29b286fb3bbad3c688d7e2abda549b80", + "symbol": "PICIPO", + "decimals": 18, + "name": "PICIPO", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x1e05f68b29b286fb3bbad3c688d7e2abda549b80.png", + "aggregators": ["CoinMarketCap", "LiFi", "Rubic"], + "occurrences": 3 + }, + "0x4fb721ef3bf99e0f2c193847afa296b9257d3c30": { + "address": "0x4fb721ef3bf99e0f2c193847afa296b9257d3c30", + "symbol": "TOK", + "decimals": 8, + "name": "TOK", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x4fb721ef3bf99e0f2c193847afa296b9257d3c30.png", + "aggregators": ["CoinMarketCap", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x7728cd70b3dd86210e2bd321437f448231b81733": { + "address": "0x7728cd70b3dd86210e2bd321437f448231b81733", + "symbol": "NIFTSY", + "decimals": 18, + "name": "NIFTSY", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x7728cd70b3dd86210e2bd321437f448231b81733.png", + "aggregators": ["CoinMarketCap", "LiFi", "Rubic"], + "occurrences": 3 + }, + "0x320d31183100280ccdf69366cd56180ea442a3e8": { + "address": "0x320d31183100280ccdf69366cd56180ea442a3e8", + "symbol": "LHC", + "decimals": 8, + "name": "Lightcoin", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x320d31183100280ccdf69366cd56180ea442a3e8.png", + "aggregators": ["CoinMarketCap", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x8a74bc8c372bc7f0e9ca3f6ac0df51be15aec47a": { + "address": "0x8a74bc8c372bc7f0e9ca3f6ac0df51be15aec47a", + "symbol": "PLSPAD", + "decimals": 18, + "name": "PULSEPAD.io", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x8a74bc8c372bc7f0e9ca3f6ac0df51be15aec47a.png", + "aggregators": ["CoinMarketCap", "LiFi", "Rubic"], + "occurrences": 3 + }, + "0xde1e704dae0b4051e80dabb26ab6ad6c12262da0": { + "address": "0xde1e704dae0b4051e80dabb26ab6ad6c12262da0", + "symbol": "DEI", + "decimals": 18, + "name": "DEI", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xde1e704dae0b4051e80dabb26ab6ad6c12262da0.png", + "aggregators": ["CoinMarketCap", "LiFi", "Rubic"], + "occurrences": 3 + }, + "0xb1db366890eeb8f28c2813c6a6084353e0b90713": { + "address": "0xb1db366890eeb8f28c2813c6a6084353e0b90713", + "symbol": "UCD", + "decimals": 18, + "name": "UniCandy", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xb1db366890eeb8f28c2813c6a6084353e0b90713.png", + "aggregators": ["CoinMarketCap", "LiFi", "Rubic"], + "occurrences": 3 + }, + "0xff0a024b66739357c4ed231fb3dbc0c8c22749f5": { + "address": "0xff0a024b66739357c4ed231fb3dbc0c8c22749f5", + "symbol": "BWRX", + "decimals": 8, + "name": "Binance Wrapped WRX", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xff0a024b66739357c4ed231fb3dbc0c8c22749f5.png", + "aggregators": ["CoinMarketCap", "LiFi", "Rubic"], + "occurrences": 3 + }, + "0x069f967be0ca21c7d793d8c343f71e597d9a49b3": { + "address": "0x069f967be0ca21c7d793d8c343f71e597d9a49b3", + "symbol": "HZM", + "decimals": 8, + "name": "HZMCOIN", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x069f967be0ca21c7d793d8c343f71e597d9a49b3.png", + "aggregators": ["CoinMarketCap", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x507bde03a87a6aa134d16634545e3d79c11c137d": { + "address": "0x507bde03a87a6aa134d16634545e3d79c11c137d", + "symbol": "UART", + "decimals": 12, + "name": "UniArts Network Token", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x507bde03a87a6aa134d16634545e3d79c11c137d.png", + "aggregators": ["CoinMarketCap", "LiFi", "Rubic"], + "occurrences": 3 + }, + "0x2d5c73f3597b07f23c2bb3f2422932e67eca4543": { + "address": "0x2d5c73f3597b07f23c2bb3f2422932e67eca4543", + "symbol": "IMP", + "decimals": 18, + "name": "Imperial Obelisk", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x2d5c73f3597b07f23c2bb3f2422932e67eca4543.png", + "aggregators": ["CoinMarketCap", "Rubic", "Squid"], + "occurrences": 3 + }, + "0xf1d1a5306daae314af6c5d027a492b313e07e1a0": { + "address": "0xf1d1a5306daae314af6c5d027a492b313e07e1a0", + "symbol": "ENV", + "decimals": 18, + "name": "ENVOY", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xf1d1a5306daae314af6c5d027a492b313e07e1a0.png", + "aggregators": ["CoinMarketCap", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x31903e333809897ee57af57567f4377a1a78756c": { + "address": "0x31903e333809897ee57af57567f4377a1a78756c", + "symbol": "PUN", + "decimals": 18, + "name": "CRYPTOPUNT Token", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x31903e333809897ee57af57567f4377a1a78756c.png", + "aggregators": ["CoinMarketCap", "LiFi", "Rubic"], + "occurrences": 3 + }, + "0x504cde95dbc5d90d09b802f43b371971adbecf79": { + "address": "0x504cde95dbc5d90d09b802f43b371971adbecf79", + "symbol": "CENX", + "decimals": 18, + "name": "Centralex Token", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x504cde95dbc5d90d09b802f43b371971adbecf79.png", + "aggregators": ["CoinMarketCap", "LiFi", "Rubic"], + "occurrences": 3 + }, + "0x98504c8afa7c74c87a0641a7bb0f7968d4e8f471": { + "address": "0x98504c8afa7c74c87a0641a7bb0f7968d4e8f471", + "symbol": "LQDR.AXL", + "decimals": 18, + "name": " Lqdr (Axelar)", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x98504c8afa7c74c87a0641a7bb0f7968d4e8f471.png", + "aggregators": ["CoinMarketCap", "Rubic", "Squid"], + "occurrences": 3 + }, + "0x148958884544a8ad7c4895e6ffe2723932e0523a": { + "address": "0x148958884544a8ad7c4895e6ffe2723932e0523a", + "symbol": "LORC", + "decimals": 18, + "name": "LandOrc", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x148958884544a8ad7c4895e6ffe2723932e0523a.png", + "aggregators": ["CoinMarketCap", "LiFi", "Rubic"], + "occurrences": 3 + }, + "0x3dd98c8a089dbcff7e8fc8d4f532bd493501ab7f": { + "address": "0x3dd98c8a089dbcff7e8fc8d4f532bd493501ab7f", + "symbol": "TOWN", + "decimals": 8, + "name": "TownCoin", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x3dd98c8a089dbcff7e8fc8d4f532bd493501ab7f.png", + "aggregators": ["CoinMarketCap", "Rubic", "Rango"], + "occurrences": 3 + }, + "0xb06b8186cc008a79fd6722b1eefad07c14e97da0": { + "address": "0xb06b8186cc008a79fd6722b1eefad07c14e97da0", + "symbol": "SIGN", + "decimals": 18, + "name": "SIGN", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xb06b8186cc008a79fd6722b1eefad07c14e97da0.png", + "aggregators": ["CoinMarketCap", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x5aa7c403c7de4b3bb0cc07079a03e389671a4771": { + "address": "0x5aa7c403c7de4b3bb0cc07079a03e389671a4771", + "symbol": "IBZ", + "decimals": 18, + "name": "IBIZA Token", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x5aa7c403c7de4b3bb0cc07079a03e389671a4771.png", + "aggregators": ["CoinMarketCap", "LiFi", "Rubic"], + "occurrences": 3 + }, + "0xf33121a2209609cadc7349acc9c40e41ce21c730": { + "address": "0xf33121a2209609cadc7349acc9c40e41ce21c730", + "symbol": "BAG", + "decimals": 18, + "name": "Blockchain Adventurers Guild", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xf33121a2209609cadc7349acc9c40e41ce21c730.png", + "aggregators": ["CoinMarketCap", "Socket", "Rubic"], + "occurrences": 3 + }, + "0x3a4cab3dcfab144fe7eb2b5a3e288cc03dc07659": { + "address": "0x3a4cab3dcfab144fe7eb2b5a3e288cc03dc07659", + "symbol": "FTG", + "decimals": 18, + "name": "fantomGO", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x3a4cab3dcfab144fe7eb2b5a3e288cc03dc07659.png", + "aggregators": ["CoinMarketCap", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x7162469321ae5880f077d250b626f3271b21b903": { + "address": "0x7162469321ae5880f077d250b626f3271b21b903", + "symbol": "KSW", + "decimals": 18, + "name": "KillSwitchToken", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x7162469321ae5880f077d250b626f3271b21b903.png", + "aggregators": ["CoinMarketCap", "LiFi", "Rubic"], + "occurrences": 3 + }, + "0xc5019e129b75d380d3d837b8e609dec6c8f5d044": { + "address": "0xc5019e129b75d380d3d837b8e609dec6c8f5d044", + "symbol": "GN", + "decimals": 9, + "name": "GN", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xc5019e129b75d380d3d837b8e609dec6c8f5d044.png", + "aggregators": ["CoinMarketCap", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x37c430c2b5f9ff85e534873c715871818ab1623e": { + "address": "0x37c430c2b5f9ff85e534873c715871818ab1623e", + "symbol": "AXC", + "decimals": 18, + "name": "AXIA Coin", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x37c430c2b5f9ff85e534873c715871818ab1623e.png", + "aggregators": ["CoinMarketCap", "LiFi", "Rubic"], + "occurrences": 3 + }, + "0x4c584cd339bdde73b7f5210486dd8bbeee3fde6d": { + "address": "0x4c584cd339bdde73b7f5210486dd8bbeee3fde6d", + "symbol": "SHIBELON", + "decimals": 9, + "name": "ShibElon", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x4c584cd339bdde73b7f5210486dd8bbeee3fde6d.png", + "aggregators": ["CoinMarketCap", "Rubic", "Rango"], + "occurrences": 3 + }, + "0xa64c3a85ddc4cd351eeb7aecebc6a44a64a76392": { + "address": "0xa64c3a85ddc4cd351eeb7aecebc6a44a64a76392", + "symbol": "RICE", + "decimals": 18, + "name": "RICE", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xa64c3a85ddc4cd351eeb7aecebc6a44a64a76392.png", + "aggregators": ["CoinMarketCap", "LiFi", "Rubic"], + "occurrences": 3 + }, + "0xc944273b805debd35c63011943abc5ab9eddb8e3": { + "address": "0xc944273b805debd35c63011943abc5ab9eddb8e3", + "symbol": "SHIELD", + "decimals": 18, + "name": "Crypto Shield", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xc944273b805debd35c63011943abc5ab9eddb8e3.png", + "aggregators": ["CoinMarketCap", "Socket", "Rubic"], + "occurrences": 3 + }, + "0x1c7ede23b1361acc098a1e357c9085d131b34a01": { + "address": "0x1c7ede23b1361acc098a1e357c9085d131b34a01", + "symbol": "SHN", + "decimals": 18, + "name": "Shine", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x1c7ede23b1361acc098a1e357c9085d131b34a01.png", + "aggregators": ["CoinMarketCap", "LiFi", "Rubic"], + "occurrences": 3 + }, + "0x9f6f91078a5072a8b54695dafa2374ab3ccd603b": { + "address": "0x9f6f91078a5072a8b54695dafa2374ab3ccd603b", + "symbol": "KRAUSE", + "decimals": 18, + "name": "KRAUSE", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x9f6f91078a5072a8b54695dafa2374ab3ccd603b.png", + "aggregators": ["CoinMarketCap", "LiFi", "Rubic"], + "occurrences": 3 + }, + "0xf4f618eff5ef36cde2fca4fbd86554c62fb1382b": { + "address": "0xf4f618eff5ef36cde2fca4fbd86554c62fb1382b", + "symbol": "AGV", + "decimals": 18, + "name": "Astra Guild Ventures Token", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xf4f618eff5ef36cde2fca4fbd86554c62fb1382b.png", + "aggregators": ["CoinMarketCap", "Socket", "Rubic"], + "occurrences": 3 + }, + "0x4e08f03079c5cd3083ea331ec61bcc87538b7665": { + "address": "0x4e08f03079c5cd3083ea331ec61bcc87538b7665", + "symbol": "DODI", + "decimals": 18, + "name": "DoubleDice Token", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x4e08f03079c5cd3083ea331ec61bcc87538b7665.png", + "aggregators": ["CoinMarketCap", "LiFi", "Rubic"], + "occurrences": 3 + }, + "0xcf8829ae9384540c886a151fac3a865794cb9a01": { + "address": "0xcf8829ae9384540c886a151fac3a865794cb9a01", + "symbol": "SDG", + "decimals": 18, + "name": "SyncDAO Governance", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xcf8829ae9384540c886a151fac3a865794cb9a01.png", + "aggregators": ["CoinMarketCap", "Socket", "Rubic"], + "occurrences": 3 + }, + "0xfee5f54e1070e7ed31be341e0a5b1e847f6a84ab": { + "address": "0xfee5f54e1070e7ed31be341e0a5b1e847f6a84ab", + "symbol": "ZUG", + "decimals": 18, + "name": "ZUG", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xfee5f54e1070e7ed31be341e0a5b1e847f6a84ab.png", + "aggregators": ["CoinMarketCap", "LiFi", "Rubic"], + "occurrences": 3 + }, + "0x501ace9c35e60f03a2af4d484f49f9b1efde9f40": { + "address": "0x501ace9c35e60f03a2af4d484f49f9b1efde9f40", + "symbol": "SOLACE", + "decimals": 18, + "name": "solace", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x501ace9c35e60f03a2af4d484f49f9b1efde9f40.png", + "aggregators": ["CoinMarketCap", "LiFi", "Rubic"], + "occurrences": 3 + }, + "0xc01a327e30b0fbf32861333f238b5c36a60abc09": { + "address": "0xc01a327e30b0fbf32861333f238b5c36a60abc09", + "symbol": "AGAIN", + "decimals": 18, + "name": "AGAIN", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xc01a327e30b0fbf32861333f238b5c36a60abc09.png", + "aggregators": ["CoinMarketCap", "LiFi", "Rubic"], + "occurrences": 3 + }, + "0x621879c6239d8ab9b82712fb56e7be880ce0c6ee": { + "address": "0x621879c6239d8ab9b82712fb56e7be880ce0c6ee", + "symbol": "$OMNIX", + "decimals": 18, + "name": "OmniBotX", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x621879c6239d8ab9b82712fb56e7be880ce0c6ee.png", + "aggregators": ["CoinMarketCap", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x15492208ef531ee413bd24f609846489a082f74c": { + "address": "0x15492208ef531ee413bd24f609846489a082f74c", + "symbol": "TREKS", + "decimals": 18, + "name": "TREKS", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x15492208ef531ee413bd24f609846489a082f74c.png", + "aggregators": ["CoinMarketCap", "LiFi", "Rubic"], + "occurrences": 3 + }, + "0x86d49fbd3b6f989d641e700a15599d3b165002ab": { + "address": "0x86d49fbd3b6f989d641e700a15599d3b165002ab", + "symbol": "HUH", + "decimals": 9, + "name": "HUH_Token", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x86d49fbd3b6f989d641e700a15599d3b165002ab.png", + "aggregators": ["CoinMarketCap", "Socket", "Rubic"], + "occurrences": 3 + }, + "0xccb4dfdb4f95697ab5c389185f0ba9042a78576f": { + "address": "0xccb4dfdb4f95697ab5c389185f0ba9042a78576f", + "symbol": "NFTK", + "decimals": 18, + "name": "NFTWiki Token", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xccb4dfdb4f95697ab5c389185f0ba9042a78576f.png", + "aggregators": ["CoinMarketCap", "LiFi", "Rubic"], + "occurrences": 3 + }, + "0x9767203e89dcd34851240b3919d4900d3e5069f1": { + "address": "0x9767203e89dcd34851240b3919d4900d3e5069f1", + "symbol": "A4", + "decimals": 6, + "name": "A4 Finance", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x9767203e89dcd34851240b3919d4900d3e5069f1.png", + "aggregators": ["CoinMarketCap", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x19ebaa7f212b09de2aee2a32d40338553c70e2e3": { + "address": "0x19ebaa7f212b09de2aee2a32d40338553c70e2e3", + "symbol": "ARTM", + "decimals": 18, + "name": "ARTM", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x19ebaa7f212b09de2aee2a32d40338553c70e2e3.png", + "aggregators": ["CoinMarketCap", "LiFi", "Rubic"], + "occurrences": 3 + }, + "0xefc996ce8341cd36c55412b51df5bbca429a7617": { + "address": "0xefc996ce8341cd36c55412b51df5bbca429a7617", + "symbol": "METAI", + "decimals": 18, + "name": "Metaverse Index Token", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xefc996ce8341cd36c55412b51df5bbca429a7617.png", + "aggregators": ["CoinMarketCap", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x43ab765ee05075d78ad8aa79dcb1978ca3079258": { + "address": "0x43ab765ee05075d78ad8aa79dcb1978ca3079258", + "symbol": "POW", + "decimals": 18, + "name": "POW", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x43ab765ee05075d78ad8aa79dcb1978ca3079258.png", + "aggregators": ["CoinMarketCap", "Rubic", "Rango"], + "occurrences": 3 + }, + "0xda16cf041e2780618c49dbae5d734b89a6bac9b3": { + "address": "0xda16cf041e2780618c49dbae5d734b89a6bac9b3", + "symbol": "BSGG", + "decimals": 18, + "name": "Betswap.gg", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xda16cf041e2780618c49dbae5d734b89a6bac9b3.png", + "aggregators": ["CoinMarketCap", "Rubic", "Rango"], + "occurrences": 3 + }, + "0xaa61d5dec73971cd4a026ef2820bb87b4a4ed8d6": { + "address": "0xaa61d5dec73971cd4a026ef2820bb87b4a4ed8d6", + "symbol": "CRE8R", + "decimals": 18, + "name": "CRE8R DAO", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xaa61d5dec73971cd4a026ef2820bb87b4a4ed8d6.png", + "aggregators": ["CoinMarketCap", "LiFi", "Rubic"], + "occurrences": 3 + }, + "0xd049206fb408a611e543791f2d8f102a8bc253dc": { + "address": "0xd049206fb408a611e543791f2d8f102a8bc253dc", + "symbol": "NAO", + "decimals": 18, + "name": "NFTDAO", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xd049206fb408a611e543791f2d8f102a8bc253dc.png", + "aggregators": ["CoinMarketCap", "Socket", "Rubic"], + "occurrences": 3 + }, + "0x6628606c321faf52b7230a57b26c01b19aa68e82": { + "address": "0x6628606c321faf52b7230a57b26c01b19aa68e82", + "symbol": "BT", + "decimals": 18, + "name": "BitHash Token", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x6628606c321faf52b7230a57b26c01b19aa68e82.png", + "aggregators": ["CoinMarketCap", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x9e8bfe46f9af27c5ea5c9c72b86d71bb86953a0c": { + "address": "0x9e8bfe46f9af27c5ea5c9c72b86d71bb86953a0c", + "symbol": "EZX", + "decimals": 18, + "name": "EZDEX", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x9e8bfe46f9af27c5ea5c9c72b86d71bb86953a0c.png", + "aggregators": ["CoinMarketCap", "LiFi", "Rubic"], + "occurrences": 3 + }, + "0xe580074a10360404af3abfe2d524d5806d993ea3": { + "address": "0xe580074a10360404af3abfe2d524d5806d993ea3", + "symbol": "PAY", + "decimals": 18, + "name": "PayBolt", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xe580074a10360404af3abfe2d524d5806d993ea3.png", + "aggregators": ["CoinMarketCap", "Rubic", "Rango"], + "occurrences": 3 + }, + "0xa4c7963b98838e8f958cf7b87a039249044fe2db": { + "address": "0xa4c7963b98838e8f958cf7b87a039249044fe2db", + "symbol": "LTR", + "decimals": 18, + "name": "LogiTron", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xa4c7963b98838e8f958cf7b87a039249044fe2db.png", + "aggregators": ["CoinMarketCap", "LiFi", "Rubic"], + "occurrences": 3 + }, + "0x3b0fccbd5dae0570a70f1fb6d8d666a33c89d71e": { + "address": "0x3b0fccbd5dae0570a70f1fb6d8d666a33c89d71e", + "symbol": "FLOOR", + "decimals": 18, + "name": "Floor", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x3b0fccbd5dae0570a70f1fb6d8d666a33c89d71e.png", + "aggregators": ["CoinMarketCap", "Rubic", "Rango"], + "occurrences": 3 + }, + "0xd75f1f81b69bdd4df8efbb70e9c6f4609009d753": { + "address": "0xd75f1f81b69bdd4df8efbb70e9c6f4609009d753", + "symbol": "YASHA", + "decimals": 18, + "name": "YASHA", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xd75f1f81b69bdd4df8efbb70e9c6f4609009d753.png", + "aggregators": ["CoinMarketCap", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x0bf0d26a527384bcc4072a6e2bca3fc79e49fa2d": { + "address": "0x0bf0d26a527384bcc4072a6e2bca3fc79e49fa2d", + "symbol": "MYT", + "decimals": 18, + "name": "Mytrade Token", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x0bf0d26a527384bcc4072a6e2bca3fc79e49fa2d.png", + "aggregators": ["CoinMarketCap", "LiFi", "Rubic"], + "occurrences": 3 + }, + "0x3f17cfad23c2014c5a32722557df87dff46819da": { + "address": "0x3f17cfad23c2014c5a32722557df87dff46819da", + "symbol": "AMPT", + "decimals": 18, + "name": "Amplify Token", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x3f17cfad23c2014c5a32722557df87dff46819da.png", + "aggregators": ["CoinMarketCap", "LiFi", "Rubic"], + "occurrences": 3 + }, + "0x4fabf135bcf8111671870d4399af739683198f96": { + "address": "0x4fabf135bcf8111671870d4399af739683198f96", + "symbol": "XVC", + "decimals": 18, + "name": "Xave Coin", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x4fabf135bcf8111671870d4399af739683198f96.png", + "aggregators": ["CoinMarketCap", "Rubic", "Rango"], + "occurrences": 3 + }, + "0xea068fba19ce95f12d252ad8cb2939225c4ea02d": { + "address": "0xea068fba19ce95f12d252ad8cb2939225c4ea02d", + "symbol": "FIEF", + "decimals": 18, + "name": "Fief", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xea068fba19ce95f12d252ad8cb2939225c4ea02d.png", + "aggregators": ["CoinMarketCap", "LiFi", "Rubic"], + "occurrences": 3 + }, + "0xf1e345ea7c33fd6c05f5512a780eb5839ee31674": { + "address": "0xf1e345ea7c33fd6c05f5512a780eb5839ee31674", + "symbol": "TELE", + "decimals": 18, + "name": "Telefy", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xf1e345ea7c33fd6c05f5512a780eb5839ee31674.png", + "aggregators": ["CoinMarketCap", "Rubic", "Rango"], + "occurrences": 3 + }, + "0xf0dc76c22139ab22618ddfb498be1283254612b1": { + "address": "0xf0dc76c22139ab22618ddfb498be1283254612b1", + "symbol": "WSTR", + "decimals": 18, + "name": "WrappedStar", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xf0dc76c22139ab22618ddfb498be1283254612b1.png", + "aggregators": ["CoinMarketCap", "LiFi", "Rubic"], + "occurrences": 3 + }, + "0xb487d0328b109e302b9d817b6f46cbd738ea08c2": { + "address": "0xb487d0328b109e302b9d817b6f46cbd738ea08c2", + "symbol": "TAT2", + "decimals": 18, + "name": "TattooMoney", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xb487d0328b109e302b9d817b6f46cbd738ea08c2.png", + "aggregators": ["CoinMarketCap", "LiFi", "Rubic"], + "occurrences": 3 + }, + "0xfceb206e1a80527908521121358b5e26caabaa75": { + "address": "0xfceb206e1a80527908521121358b5e26caabaa75", + "symbol": "MAIN", + "decimals": 18, + "name": "MAIN", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xfceb206e1a80527908521121358b5e26caabaa75.png", + "aggregators": ["CoinMarketCap", "Rubic", "Rango"], + "occurrences": 3 + }, + "0xcc6f1e1b87cfcbe9221808d2d85c501aab0b5192": { + "address": "0xcc6f1e1b87cfcbe9221808d2d85c501aab0b5192", + "symbol": "DMAIL", + "decimals": 18, + "name": "Dmail Network", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xcc6f1e1b87cfcbe9221808d2d85c501aab0b5192.png", + "aggregators": ["CoinMarketCap", "LiFi", "Rubic"], + "occurrences": 3 + }, + "0x5f018e73c185ab23647c82bd039e762813877f0e": { + "address": "0x5f018e73c185ab23647c82bd039e762813877f0e", + "symbol": "SHACK", + "decimals": 18, + "name": "Shack Token", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x5f018e73c185ab23647c82bd039e762813877f0e.png", + "aggregators": ["CoinMarketCap", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x84f20bf5bb4be345d3ab37c565f732753435dbe3": { + "address": "0x84f20bf5bb4be345d3ab37c565f732753435dbe3", + "symbol": "JCR", + "decimals": 18, + "name": "JustCarbon Removal Token", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x84f20bf5bb4be345d3ab37c565f732753435dbe3.png", + "aggregators": ["CoinMarketCap", "LiFi", "Rubic"], + "occurrences": 3 + }, + "0x88aa4a6c5050b9a1b2aa7e34d0582025ca6ab745": { + "address": "0x88aa4a6c5050b9a1b2aa7e34d0582025ca6ab745", + "symbol": "DXP", + "decimals": 18, + "name": "Dexpools Token", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x88aa4a6c5050b9a1b2aa7e34d0582025ca6ab745.png", + "aggregators": ["CoinMarketCap", "LiFi", "Rubic"], + "occurrences": 3 + }, + "0x45fdb1b92a649fb6a64ef1511d3ba5bf60044838": { + "address": "0x45fdb1b92a649fb6a64ef1511d3ba5bf60044838", + "symbol": "USDS", + "decimals": 18, + "name": "Spice USD", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x45fdb1b92a649fb6a64ef1511d3ba5bf60044838.png", + "aggregators": ["CoinMarketCap", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x0c9b3ab1bd0cf0745625381f5c3aa1cd9bbc7abb": { + "address": "0x0c9b3ab1bd0cf0745625381f5c3aa1cd9bbc7abb", + "symbol": "EXN", + "decimals": 18, + "name": "EXENO COIN", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x0c9b3ab1bd0cf0745625381f5c3aa1cd9bbc7abb.png", + "aggregators": ["CoinMarketCap", "LiFi", "Rubic"], + "occurrences": 3 + }, + "0xadc3f2c3d728202658930860158c726d8180a38f": { + "address": "0xadc3f2c3d728202658930860158c726d8180a38f", + "symbol": "SMETA", + "decimals": 18, + "name": "StarkMeta", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xadc3f2c3d728202658930860158c726d8180a38f.png", + "aggregators": ["CoinMarketCap", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x549e4d92285ff5a16c9484ff79211e4358b1f202": { + "address": "0x549e4d92285ff5a16c9484ff79211e4358b1f202", + "symbol": "TIC", + "decimals": 18, + "name": "Token of Infinite Choice", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x549e4d92285ff5a16c9484ff79211e4358b1f202.png", + "aggregators": ["CoinMarketCap", "LiFi", "Rubic"], + "occurrences": 3 + }, + "0x30b593f8c3ab37615359b4e0e6df2e06d55bb55d": { + "address": "0x30b593f8c3ab37615359b4e0e6df2e06d55bb55d", + "symbol": "FXDX", + "decimals": 18, + "name": "FXDX", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x30b593f8c3ab37615359b4e0e6df2e06d55bb55d.png", + "aggregators": ["CoinMarketCap", "Rubic", "Rango"], + "occurrences": 3 + }, + "0xa80221d067603e30060f75e2458aa361f8ee5402": { + "address": "0xa80221d067603e30060f75e2458aa361f8ee5402", + "symbol": "IRL", + "decimals": 18, + "name": "Rebase", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xa80221d067603e30060f75e2458aa361f8ee5402.png", + "aggregators": ["CoinMarketCap", "LiFi", "Rubic"], + "occurrences": 3 + }, + "0xcc503242b574bc01145da7e2a743b43fb395ec91": { + "address": "0xcc503242b574bc01145da7e2a743b43fb395ec91", + "symbol": "ROVI", + "decimals": 18, + "name": "ROVI Token", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xcc503242b574bc01145da7e2a743b43fb395ec91.png", + "aggregators": ["CoinMarketCap", "LiFi", "Rubic"], + "occurrences": 3 + }, + "0x3a529a8d4f2ea64d206339fa12a3af4d431f53c3": { + "address": "0x3a529a8d4f2ea64d206339fa12a3af4d431f53c3", + "symbol": "VENDETTA", + "decimals": 18, + "name": "VEN", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x3a529a8d4f2ea64d206339fa12a3af4d431f53c3.png", + "aggregators": ["CoinMarketCap", "LiFi", "Rubic"], + "occurrences": 3 + }, + "0xb2d2e1309db33b38a19ee2a7cd9cb5de39d76663": { + "address": "0xb2d2e1309db33b38a19ee2a7cd9cb5de39d76663", + "symbol": "COLR", + "decimals": 18, + "name": "colR", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xb2d2e1309db33b38a19ee2a7cd9cb5de39d76663.png", + "aggregators": ["CoinMarketCap", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x355a824bea1adc22733978a3748271e1bbb34130": { + "address": "0x355a824bea1adc22733978a3748271e1bbb34130", + "symbol": "NEPT", + "decimals": 18, + "name": "NEPT", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x355a824bea1adc22733978a3748271e1bbb34130.png", + "aggregators": ["CoinMarketCap", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x00a7ec2f2b451cb0233e8adbf4c9a951027c2b02": { + "address": "0x00a7ec2f2b451cb0233e8adbf4c9a951027c2b02", + "symbol": "HIENS4", + "decimals": 18, + "name": "hiENS4", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x00a7ec2f2b451cb0233e8adbf4c9a951027c2b02.png", + "aggregators": ["CoinMarketCap", "Rubic", "Rango"], + "occurrences": 3 + }, + "0xd23367155b55d67492dfdc0fc7f8bb1df7114fd9": { + "address": "0xd23367155b55d67492dfdc0fc7f8bb1df7114fd9", + "symbol": "AMPLIFI", + "decimals": 18, + "name": "Amplifi", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xd23367155b55d67492dfdc0fc7f8bb1df7114fd9.png", + "aggregators": ["CoinMarketCap", "LiFi", "Rubic"], + "occurrences": 3 + }, + "0xc66cdac744916afb6811c71c277d88de90ce8d5b": { + "address": "0xc66cdac744916afb6811c71c277d88de90ce8d5b", + "symbol": "MCD", + "decimals": 18, + "name": "CDbio", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xc66cdac744916afb6811c71c277d88de90ce8d5b.png", + "aggregators": ["CoinMarketCap", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x869dbe51dc214fcb663604b0f7b548592f8c71f5": { + "address": "0x869dbe51dc214fcb663604b0f7b548592f8c71f5", + "symbol": "DOKI", + "decimals": 9, + "name": "Okidoki Social", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x869dbe51dc214fcb663604b0f7b548592f8c71f5.png", + "aggregators": ["CoinMarketCap", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x1ccf27211e8bf052f6255329ed641b4e94e80603": { + "address": "0x1ccf27211e8bf052f6255329ed641b4e94e80603", + "symbol": "BABY", + "decimals": 18, + "name": "meta baby", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x1ccf27211e8bf052f6255329ed641b4e94e80603.png", + "aggregators": ["CoinMarketCap", "Rubic", "Rango"], + "occurrences": 3 + }, + "0xa4be4cdc552891a6702e1ae9645ef445179a4463": { + "address": "0xa4be4cdc552891a6702e1ae9645ef445179a4463", + "symbol": "FON", + "decimals": 18, + "name": "INOFI", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xa4be4cdc552891a6702e1ae9645ef445179a4463.png", + "aggregators": ["CoinMarketCap", "Rubic", "Rango"], + "occurrences": 3 + }, + "0xa88842ae47dbe87116cf7001dddd1b246fcd8262": { + "address": "0xa88842ae47dbe87116cf7001dddd1b246fcd8262", + "symbol": "HIENS3", + "decimals": 18, + "name": "hiENS3", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xa88842ae47dbe87116cf7001dddd1b246fcd8262.png", + "aggregators": ["CoinMarketCap", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x33bd66c334274989b673a8e8c8d1a3f1b8de5889": { + "address": "0x33bd66c334274989b673a8e8c8d1a3f1b8de5889", + "symbol": "HIODBS", + "decimals": 18, + "name": "hiODBS", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x33bd66c334274989b673a8e8c8d1a3f1b8de5889.png", + "aggregators": ["CoinMarketCap", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x4ce4c025692b3142dbde1cd432ef55b9a8d18701": { + "address": "0x4ce4c025692b3142dbde1cd432ef55b9a8d18701", + "symbol": "DCNT", + "decimals": 9, + "name": "Decanect", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x4ce4c025692b3142dbde1cd432ef55b9a8d18701.png", + "aggregators": ["CoinMarketCap", "Rubic", "Rango"], + "occurrences": 3 + }, + "0xa6a1cc527d48585538b137e6abc14b2a55489d11": { + "address": "0xa6a1cc527d48585538b137e6abc14b2a55489d11", + "symbol": "LWC", + "decimals": 8, + "name": "Linework Coin", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xa6a1cc527d48585538b137e6abc14b2a55489d11.png", + "aggregators": ["CoinMarketCap", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x9d7107c8e30617cadc11f9692a19c82ae8bba938": { + "address": "0x9d7107c8e30617cadc11f9692a19c82ae8bba938", + "symbol": "ROO", + "decimals": 18, + "name": "LUCKY ROO", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x9d7107c8e30617cadc11f9692a19c82ae8bba938.png", + "aggregators": ["CoinMarketCap", "Rubic", "Rango"], + "occurrences": 3 + }, + "0xb045f7f363fe4949954811b113bd56d208c67b23": { + "address": "0xb045f7f363fe4949954811b113bd56d208c67b23", + "symbol": "SILK", + "decimals": 8, + "name": "Silk", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xb045f7f363fe4949954811b113bd56d208c67b23.png", + "aggregators": ["CoinMarketCap", "Rubic", "Rango"], + "occurrences": 3 + }, + "0xfeb6d5238ed8f1d59dcab2db381aa948e625966d": { + "address": "0xfeb6d5238ed8f1d59dcab2db381aa948e625966d", + "symbol": "DGTV", + "decimals": 18, + "name": "Doge-TV", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xfeb6d5238ed8f1d59dcab2db381aa948e625966d.png", + "aggregators": ["CoinMarketCap", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x456125cd98107ae0480ba566f1b716d48ba31453": { + "address": "0x456125cd98107ae0480ba566f1b716d48ba31453", + "symbol": "CHAMP", + "decimals": 18, + "name": "Ultimate Champions Token", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x456125cd98107ae0480ba566f1b716d48ba31453.png", + "aggregators": ["CoinMarketCap", "LiFi", "Rubic"], + "occurrences": 3 + }, + "0x981dc247745800bd2ca28a4bf147f0385eaa0bc0": { + "address": "0x981dc247745800bd2ca28a4bf147f0385eaa0bc0", + "symbol": "NUTS", + "decimals": 18, + "name": "NutsDAO", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x981dc247745800bd2ca28a4bf147f0385eaa0bc0.png", + "aggregators": ["CoinMarketCap", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x6d6554939d646f274d0fc3cecb7dab5d76bc908f": { + "address": "0x6d6554939d646f274d0fc3cecb7dab5d76bc908f", + "symbol": "MS", + "decimals": 18, + "name": "Morphswap", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x6d6554939d646f274d0fc3cecb7dab5d76bc908f.png", + "aggregators": ["CoinMarketCap", "LiFi", "Rubic"], + "occurrences": 3 + }, + "0x7a3f7f6675514d4d611b442a4b76752f6ab77670": { + "address": "0x7a3f7f6675514d4d611b442a4b76752f6ab77670", + "symbol": "TORA", + "decimals": 18, + "name": "Tora Inu", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x7a3f7f6675514d4d611b442a4b76752f6ab77670.png", + "aggregators": ["CoinMarketCap", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x96eb50804d0ef2790f2e1a33670feff6040cf89d": { + "address": "0x96eb50804d0ef2790f2e1a33670feff6040cf89d", + "symbol": "SX", + "decimals": 18, + "name": "SX Token", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x96eb50804d0ef2790f2e1a33670feff6040cf89d.png", + "aggregators": ["CoinMarketCap", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x669db4c47f89f21554ebd825a744888725fd9491": { + "address": "0x669db4c47f89f21554ebd825a744888725fd9491", + "symbol": "HIPENGUINS", + "decimals": 18, + "name": "hiPENGUINS", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x669db4c47f89f21554ebd825a744888725fd9491.png", + "aggregators": ["CoinMarketCap", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x1892f6ff5fbe11c31158f8c6f6f6e33106c5b10e": { + "address": "0x1892f6ff5fbe11c31158f8c6f6f6e33106c5b10e", + "symbol": "MEGA", + "decimals": 18, + "name": "MegaWorld $MEGA Token", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x1892f6ff5fbe11c31158f8c6f6f6e33106c5b10e.png", + "aggregators": ["CoinMarketCap", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x8326bf664704966c984a3a46fa37d7a80a52dcf4": { + "address": "0x8326bf664704966c984a3a46fa37d7a80a52dcf4", + "symbol": "DOGU", + "decimals": 18, + "name": "Dogu Inu", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x8326bf664704966c984a3a46fa37d7a80a52dcf4.png", + "aggregators": ["CoinMarketCap", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x757da0e5c253082b0f2bd5105119f71817fe0911": { + "address": "0x757da0e5c253082b0f2bd5105119f71817fe0911", + "symbol": "VITO", + "decimals": 18, + "name": "Very Special Dragon", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x757da0e5c253082b0f2bd5105119f71817fe0911.png", + "aggregators": ["CoinMarketCap", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x69e37422cb87d963367f73a119c8ce9a4d529b72": { + "address": "0x69e37422cb87d963367f73a119c8ce9a4d529b72", + "symbol": "ADVT", + "decimals": 9, + "name": "Advantis", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x69e37422cb87d963367f73a119c8ce9a4d529b72.png", + "aggregators": ["CoinMarketCap", "Rubic", "Rango"], + "occurrences": 3 + }, + "0xedc1004886d010751f74ec0ad223819f9f3b1910": { + "address": "0xedc1004886d010751f74ec0ad223819f9f3b1910", + "symbol": "AGN", + "decimals": 18, + "name": "AgriNode", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xedc1004886d010751f74ec0ad223819f9f3b1910.png", + "aggregators": ["CoinMarketCap", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x79c9e0410b6615e7ba9dd69614b0519325a2b047": { + "address": "0x79c9e0410b6615e7ba9dd69614b0519325a2b047", + "symbol": "HIFLUF", + "decimals": 18, + "name": "hiFLUF", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x79c9e0410b6615e7ba9dd69614b0519325a2b047.png", + "aggregators": ["CoinMarketCap", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x0a7b89e66a1dc16633abdfd132bae05827d3bfa5": { + "address": "0x0a7b89e66a1dc16633abdfd132bae05827d3bfa5", + "symbol": "HIMOONBIRDS", + "decimals": 18, + "name": "hiMOONBIRDS", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x0a7b89e66a1dc16633abdfd132bae05827d3bfa5.png", + "aggregators": ["CoinMarketCap", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x5dd0d493ea59d512efc13d5c1f9d325775192877": { + "address": "0x5dd0d493ea59d512efc13d5c1f9d325775192877", + "symbol": "PUSUKE", + "decimals": 18, + "name": "Pusuke Inu", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x5dd0d493ea59d512efc13d5c1f9d325775192877.png", + "aggregators": ["CoinMarketCap", "Rubic", "Rango"], + "occurrences": 3 + }, + "0xb4615aad766f6de3c55330099e907ff7f13f1582": { + "address": "0xb4615aad766f6de3c55330099e907ff7f13f1582", + "symbol": "ONIGI", + "decimals": 9, + "name": "Onigiri Neko", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xb4615aad766f6de3c55330099e907ff7f13f1582.png", + "aggregators": ["CoinMarketCap", "LiFi", "Rubic"], + "occurrences": 3 + }, + "0x848578e351d25b6ec0d486e42677891521c3d743": { + "address": "0x848578e351d25b6ec0d486e42677891521c3d743", + "symbol": "MOSOLID", + "decimals": 18, + "name": "moSOLID", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x848578e351d25b6ec0d486e42677891521c3d743.png", + "aggregators": ["CoinMarketCap", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x79b87d52a03ed26a19c1914be4ce37f812e2056c": { + "address": "0x79b87d52a03ed26a19c1914be4ce37f812e2056c", + "symbol": "USP", + "decimals": 18, + "name": "USP Token", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x79b87d52a03ed26a19c1914be4ce37f812e2056c.png", + "aggregators": ["CoinMarketCap", "Rubic", "Rango"], + "occurrences": 3 + }, + "0xb755d5bc7de83232b9df1886bd5cdb38895933b0": { + "address": "0xb755d5bc7de83232b9df1886bd5cdb38895933b0", + "symbol": "HIMFERS", + "decimals": 18, + "name": "hiMFERS", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xb755d5bc7de83232b9df1886bd5cdb38895933b0.png", + "aggregators": ["CoinMarketCap", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x8dfc8cc3201425669fae803e1eb125cddd4189ec": { + "address": "0x8dfc8cc3201425669fae803e1eb125cddd4189ec", + "symbol": "OKAGE", + "decimals": 18, + "name": "Okage Inu", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x8dfc8cc3201425669fae803e1eb125cddd4189ec.png", + "aggregators": ["CoinMarketCap", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x967b0c95295ead8faef70d26a7846aecd349aaff": { + "address": "0x967b0c95295ead8faef70d26a7846aecd349aaff", + "symbol": "$HACHI", + "decimals": 18, + "name": "HACHI", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x967b0c95295ead8faef70d26a7846aecd349aaff.png", + "aggregators": ["CoinMarketCap", "LiFi", "Rubic"], + "occurrences": 3 + }, + "0x05030203674173fa6df6f9f7e34d6e70e9a761d7": { + "address": "0x05030203674173fa6df6f9f7e34d6e70e9a761d7", + "symbol": "MU", + "decimals": 18, + "name": "Muverse Token", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x05030203674173fa6df6f9f7e34d6e70e9a761d7.png", + "aggregators": ["CoinMarketCap", "Rubic", "Rango"], + "occurrences": 3 + }, + "0xd346e8ada104093adcf5f4186087e1ad309bb3b3": { + "address": "0xd346e8ada104093adcf5f4186087e1ad309bb3b3", + "symbol": "SHIBN", + "decimals": 18, + "name": "Shibnaut", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xd346e8ada104093adcf5f4186087e1ad309bb3b3.png", + "aggregators": ["CoinMarketCap", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x5c8190b76e90b4dd0702740cf6eb0f7ee01ab5e9": { + "address": "0x5c8190b76e90b4dd0702740cf6eb0f7ee01ab5e9", + "symbol": "ARCAI", + "decimals": 9, + "name": "Archive AI", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x5c8190b76e90b4dd0702740cf6eb0f7ee01ab5e9.png", + "aggregators": ["CoinMarketCap", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x8793fb615eb92822f482f88b3137b00aad4c00d2": { + "address": "0x8793fb615eb92822f482f88b3137b00aad4c00d2", + "symbol": "REVOAI", + "decimals": 9, + "name": "revoAI", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x8793fb615eb92822f482f88b3137b00aad4c00d2.png", + "aggregators": ["CoinMarketCap", "Rubic", "Rango"], + "occurrences": 3 + }, + "0xa848a1d33d8ef1633397a6acf617620fab8e5da8": { + "address": "0xa848a1d33d8ef1633397a6acf617620fab8e5da8", + "symbol": "MOUSEWORM", + "decimals": 6, + "name": "MouseWorm", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xa848a1d33d8ef1633397a6acf617620fab8e5da8.png", + "aggregators": ["CoinMarketCap", "LiFi", "Rubic"], + "occurrences": 3 + }, + "0x70d0ff0d3b3f5e69220c09befc70606fa5f89293": { + "address": "0x70d0ff0d3b3f5e69220c09befc70606fa5f89293", + "symbol": "HIUNDEAD", + "decimals": 18, + "name": "hiUNDEAD", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x70d0ff0d3b3f5e69220c09befc70606fa5f89293.png", + "aggregators": ["CoinMarketCap", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x337dd23d05c27bff099d3604938bfc23a9b25820": { + "address": "0x337dd23d05c27bff099d3604938bfc23a9b25820", + "symbol": "MFC", + "decimals": 18, + "name": "Marshall Fighting Championship", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x337dd23d05c27bff099d3604938bfc23a9b25820.png", + "aggregators": ["CoinMarketCap", "Rubic", "Rango"], + "occurrences": 3 + }, + "0xeb2f5a4e1441df330670dc7b0cf4eac0f7ab5fa5": { + "address": "0xeb2f5a4e1441df330670dc7b0cf4eac0f7ab5fa5", + "symbol": "HIFRIENDS", + "decimals": 18, + "name": "hiFRIENDS", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xeb2f5a4e1441df330670dc7b0cf4eac0f7ab5fa5.png", + "aggregators": ["CoinMarketCap", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x9c6666d5ff4b53b5eb3bd866664c15d0bfcecaa7": { + "address": "0x9c6666d5ff4b53b5eb3bd866664c15d0bfcecaa7", + "symbol": "ZENI", + "decimals": 18, + "name": "Zeni", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x9c6666d5ff4b53b5eb3bd866664c15d0bfcecaa7.png", + "aggregators": ["CoinMarketCap", "Rubic", "Rango"], + "occurrences": 3 + }, + "0xb04bf60e468743418e87291d7c9301a5299d984d": { + "address": "0xb04bf60e468743418e87291d7c9301a5299d984d", + "symbol": "4SHIBA", + "decimals": 18, + "name": "FOREVER SHIBA", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xb04bf60e468743418e87291d7c9301a5299d984d.png", + "aggregators": ["CoinMarketCap", "Rubic", "Rango"], + "occurrences": 3 + }, + "0xb685145d7f127b9093d7f9278bae902ef59ff486": { + "address": "0xb685145d7f127b9093d7f9278bae902ef59ff486", + "symbol": "FREQAI", + "decimals": 18, + "name": "FREQAI", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xb685145d7f127b9093d7f9278bae902ef59ff486.png", + "aggregators": ["CoinMarketCap", "Rubic", "Rango"], + "occurrences": 3 + }, + "0xf7de6def3d319811418d69bf56c532a815fc47e8": { + "address": "0xf7de6def3d319811418d69bf56c532a815fc47e8", + "symbol": "TWOPAW", + "decimals": 18, + "name": "TWOPAW Token", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xf7de6def3d319811418d69bf56c532a815fc47e8.png", + "aggregators": ["CoinMarketCap", "LiFi", "Rubic"], + "occurrences": 3 + }, + "0x87869a9789291a6cec99f3c3ef2ff71fceb12a8e": { + "address": "0x87869a9789291a6cec99f3c3ef2ff71fceb12a8e", + "symbol": "CMOS", + "decimals": 9, + "name": "CoinMerge OS", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x87869a9789291a6cec99f3c3ef2ff71fceb12a8e.png", + "aggregators": ["CoinMarketCap", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x7616113782aadab041d7b10d474f8a0c04eff258": { + "address": "0x7616113782aadab041d7b10d474f8a0c04eff258", + "symbol": "VEE", + "decimals": 18, + "name": "Vee Token", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x7616113782aadab041d7b10d474f8a0c04eff258.png", + "aggregators": ["CoinMarketCap", "LiFi", "Rubic"], + "occurrences": 3 + }, + "0x286f851b049ccce1419e09b6468dc3297f86a703": { + "address": "0x286f851b049ccce1419e09b6468dc3297f86a703", + "symbol": "HISEALS", + "decimals": 18, + "name": "hiSEALS", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x286f851b049ccce1419e09b6468dc3297f86a703.png", + "aggregators": ["CoinMarketCap", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x8954d907520532c1f0d89d42569232fd0f995fdf": { + "address": "0x8954d907520532c1f0d89d42569232fd0f995fdf", + "symbol": "TX", + "decimals": 8, + "name": "Tradix", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x8954d907520532c1f0d89d42569232fd0f995fdf.png", + "aggregators": ["CoinMarketCap", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x517abf1fcdbd76bc75b532683ada9113e313a128": { + "address": "0x517abf1fcdbd76bc75b532683ada9113e313a128", + "symbol": "DOKE", + "decimals": 9, + "name": "Doke Inu", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x517abf1fcdbd76bc75b532683ada9113e313a128.png", + "aggregators": ["CoinMarketCap", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x6f8b23296394d20ec048fbdec8ebc0ca90f5c8f1": { + "address": "0x6f8b23296394d20ec048fbdec8ebc0ca90f5c8f1", + "symbol": "TUF", + "decimals": 18, + "name": "TUF Token", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x6f8b23296394d20ec048fbdec8ebc0ca90f5c8f1.png", + "aggregators": ["CoinMarketCap", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x8b0fde007458ee153bd0f66cd448af5fb3d99b43": { + "address": "0x8b0fde007458ee153bd0f66cd448af5fb3d99b43", + "symbol": "MASTERMIND", + "decimals": 18, + "name": "Mastermind", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x8b0fde007458ee153bd0f66cd448af5fb3d99b43.png", + "aggregators": ["CoinMarketCap", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x23ddbd36547d43627afa9b42d4e9fb0515f48b09": { + "address": "0x23ddbd36547d43627afa9b42d4e9fb0515f48b09", + "symbol": "HIBEANZ", + "decimals": 18, + "name": "hiBEANZ", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x23ddbd36547d43627afa9b42d4e9fb0515f48b09.png", + "aggregators": ["CoinMarketCap", "Rubic", "Rango"], + "occurrences": 3 + }, + "0xc2456d2118299a2efdfe6522ff79aa48fc5d2b00": { + "address": "0xc2456d2118299a2efdfe6522ff79aa48fc5d2b00", + "symbol": "MARU", + "decimals": 9, + "name": "MaruTaro", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xc2456d2118299a2efdfe6522ff79aa48fc5d2b00.png", + "aggregators": ["CoinMarketCap", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x2c022e58c5e3ee213f06f975fd8a0d3a6fe9ca1c": { + "address": "0x2c022e58c5e3ee213f06f975fd8a0d3a6fe9ca1c", + "symbol": "FINU", + "decimals": 18, + "name": "Formula Inu", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x2c022e58c5e3ee213f06f975fd8a0d3a6fe9ca1c.png", + "aggregators": ["CoinMarketCap", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x53340a1ef3a0ddeba1d94bbd1e2ff55936f0ea60": { + "address": "0x53340a1ef3a0ddeba1d94bbd1e2ff55936f0ea60", + "symbol": "BARK", + "decimals": 18, + "name": "Bark", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x53340a1ef3a0ddeba1d94bbd1e2ff55936f0ea60.png", + "aggregators": ["CoinMarketCap", "Rubic", "Rango"], + "occurrences": 3 + }, + "0xd1cd47746b8e72359b28c1c84a4f6a19dc1a0ee5": { + "address": "0xd1cd47746b8e72359b28c1c84a4f6a19dc1a0ee5", + "symbol": "SONIC", + "decimals": 18, + "name": "Sonic", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xd1cd47746b8e72359b28c1c84a4f6a19dc1a0ee5.png", + "aggregators": ["CoinMarketCap", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x6e39a587691b8c9d4341ce0a960998ed6f537af6": { + "address": "0x6e39a587691b8c9d4341ce0a960998ed6f537af6", + "symbol": "MEMAG", + "decimals": 18, + "name": "Meta Masters Guild", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x6e39a587691b8c9d4341ce0a960998ed6f537af6.png", + "aggregators": ["CoinMarketCap", "LiFi", "Rubic"], + "occurrences": 3 + }, + "0xf5d126077096e5b01bc30ffa5d9324d7202d7cb3": { + "address": "0xf5d126077096e5b01bc30ffa5d9324d7202d7cb3", + "symbol": "CHEW", + "decimals": 18, + "name": "CHEW", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xf5d126077096e5b01bc30ffa5d9324d7202d7cb3.png", + "aggregators": ["CoinMarketCap", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x3540dfcad7cf102a2e44aa0e2132fab1c89d7eae": { + "address": "0x3540dfcad7cf102a2e44aa0e2132fab1c89d7eae", + "symbol": "SWAI", + "decimals": 18, + "name": "SchwiftAI", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x3540dfcad7cf102a2e44aa0e2132fab1c89d7eae.png", + "aggregators": ["CoinMarketCap", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x6fdb90535c09b82825e38d41edf5e66211d4b442": { + "address": "0x6fdb90535c09b82825e38d41edf5e66211d4b442", + "symbol": "MAGNET", + "decimals": 18, + "name": "Yield Magnet", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x6fdb90535c09b82825e38d41edf5e66211d4b442.png", + "aggregators": ["CoinMarketCap", "Rubic", "Rango"], + "occurrences": 3 + }, + "0xfac0403a24229d7e2edd994d50f5940624cbeac2": { + "address": "0xfac0403a24229d7e2edd994d50f5940624cbeac2", + "symbol": "THEO", + "decimals": 9, + "name": "Theopetra", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xfac0403a24229d7e2edd994d50f5940624cbeac2.png", + "aggregators": ["CoinMarketCap", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x719e7f0dadfdea25b78595da944f44d15d7e6795": { + "address": "0x719e7f0dadfdea25b78595da944f44d15d7e6795", + "symbol": "MUSK", + "decimals": 18, + "name": "MUSK", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x719e7f0dadfdea25b78595da944f44d15d7e6795.png", + "aggregators": ["CoinMarketCap", "Rubic", "Rango"], + "occurrences": 3 + }, + "0xfd414e39155f91e94443a9fe97e856569d0f5eec": { + "address": "0xfd414e39155f91e94443a9fe97e856569d0f5eec", + "symbol": "SERP", + "decimals": 9, + "name": "SHIBARIUM PERPETUALS", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xfd414e39155f91e94443a9fe97e856569d0f5eec.png", + "aggregators": ["CoinMarketCap", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x1936c91190e901b7dd55229a574ae22b58ff498a": { + "address": "0x1936c91190e901b7dd55229a574ae22b58ff498a", + "symbol": "MEVFREE", + "decimals": 18, + "name": "MEVFREE", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x1936c91190e901b7dd55229a574ae22b58ff498a.png", + "aggregators": ["CoinMarketCap", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x4e4bffaa8df6f0dc3e5600bbacf7da55f37134fc": { + "address": "0x4e4bffaa8df6f0dc3e5600bbacf7da55f37134fc", + "symbol": "BST", + "decimals": 18, + "name": "BlockStar Token", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x4e4bffaa8df6f0dc3e5600bbacf7da55f37134fc.png", + "aggregators": ["CoinMarketCap", "Rubic", "Rango"], + "occurrences": 3 + }, + "0xb186035490c8602ead853ec98be05e3461521ab2": { + "address": "0xb186035490c8602ead853ec98be05e3461521ab2", + "symbol": "PACK", + "decimals": 18, + "name": "Pack", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xb186035490c8602ead853ec98be05e3461521ab2.png", + "aggregators": ["CoinMarketCap", "Rubic", "Rango"], + "occurrences": 3 + }, + "0xa7fbd9254f10f8e20a31a593c9e8bc0d041e15f6": { + "address": "0xa7fbd9254f10f8e20a31a593c9e8bc0d041e15f6", + "symbol": "ORBN", + "decimals": 9, + "name": "Orbeon Protocol", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xa7fbd9254f10f8e20a31a593c9e8bc0d041e15f6.png", + "aggregators": ["CoinMarketCap", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x5919dea604631016c15c805e3d948a0384879892": { + "address": "0x5919dea604631016c15c805e3d948a0384879892", + "symbol": "PEEP$", + "decimals": 9, + "name": "The Peoples Coin", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x5919dea604631016c15c805e3d948a0384879892.png", + "aggregators": ["CoinMarketCap", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x776aaca47ee579ff63f6c00a921377eb21359e59": { + "address": "0x776aaca47ee579ff63f6c00a921377eb21359e59", + "symbol": "CRST", + "decimals": 18, + "name": "Coorest", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x776aaca47ee579ff63f6c00a921377eb21359e59.png", + "aggregators": ["CoinMarketCap", "LiFi", "Rubic"], + "occurrences": 3 + }, + "0x4561de8e0c2bba725d38d266ef62426e62678d82": { + "address": "0x4561de8e0c2bba725d38d266ef62426e62678d82", + "symbol": "CONI", + "decimals": 18, + "name": "ConiToken", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x4561de8e0c2bba725d38d266ef62426e62678d82.png", + "aggregators": ["CoinMarketCap", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x6ba75d640bebfe5da1197bb5a2aff3327789b5d3": { + "address": "0x6ba75d640bebfe5da1197bb5a2aff3327789b5d3", + "symbol": "VEUR", + "decimals": 18, + "name": "VNX Euro", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x6ba75d640bebfe5da1197bb5a2aff3327789b5d3.png", + "aggregators": ["CoinMarketCap", "Rubic", "Rango"], + "occurrences": 3 + }, + "0xd5df655087d99b7b720a5bc8711f296180a4f44b": { + "address": "0xd5df655087d99b7b720a5bc8711f296180a4f44b", + "symbol": "OPTIG", + "decimals": 18, + "name": "Catgirl Optimus", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xd5df655087d99b7b720a5bc8711f296180a4f44b.png", + "aggregators": ["CoinMarketCap", "Rubic", "Rango"], + "occurrences": 3 + }, + "0xd01cb3d113a864763dd3977fe1e725860013b0ed": { + "address": "0xd01cb3d113a864763dd3977fe1e725860013b0ed", + "symbol": "RATOM", + "decimals": 18, + "name": "StaFi", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xd01cb3d113a864763dd3977fe1e725860013b0ed.png", + "aggregators": ["CoinMarketCap", "LiFi", "Rubic"], + "occurrences": 3 + }, + "0x0fe0ed7f146cb12e4b9759aff4fa8d34571802ca": { + "address": "0x0fe0ed7f146cb12e4b9759aff4fa8d34571802ca", + "symbol": "PARTY", + "decimals": 18, + "name": "PoolParty", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x0fe0ed7f146cb12e4b9759aff4fa8d34571802ca.png", + "aggregators": ["CoinMarketCap", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x045109cf1be9edec048aa0b3d7a323154a1aea65": { + "address": "0x045109cf1be9edec048aa0b3d7a323154a1aea65", + "symbol": "ELEV", + "decimals": 18, + "name": "Elevate", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x045109cf1be9edec048aa0b3d7a323154a1aea65.png", + "aggregators": ["CoinMarketCap", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x247dc9cbbaadabce6e30e2a84ec6c53a419913ad": { + "address": "0x247dc9cbbaadabce6e30e2a84ec6c53a419913ad", + "symbol": "EMS", + "decimals": 18, + "name": "Ethereum Message Service", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x247dc9cbbaadabce6e30e2a84ec6c53a419913ad.png", + "aggregators": ["CoinMarketCap", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x50eec6d765792dcfb0913c8403ef2a12e1b861a6": { + "address": "0x50eec6d765792dcfb0913c8403ef2a12e1b861a6", + "symbol": "Z3", + "decimals": 18, + "name": "Z-Cubed", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x50eec6d765792dcfb0913c8403ef2a12e1b861a6.png", + "aggregators": ["CoinMarketCap", "Rubic", "Rango"], + "occurrences": 3 + }, + "0xbd15ad921e1b480209af549874a2fcb80dc312bf": { + "address": "0xbd15ad921e1b480209af549874a2fcb80dc312bf", + "symbol": "HRP", + "decimals": 18, + "name": "Harpoon", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xbd15ad921e1b480209af549874a2fcb80dc312bf.png", + "aggregators": ["CoinMarketCap", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x5f9123d661459af6f398b6f1566f53222612541e": { + "address": "0x5f9123d661459af6f398b6f1566f53222612541e", + "symbol": "MARAN", + "decimals": 18, + "name": "MaranBet", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x5f9123d661459af6f398b6f1566f53222612541e.png", + "aggregators": ["CoinMarketCap", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x1a3cbda3853494acab67648ee59afeb7ec3e9334": { + "address": "0x1a3cbda3853494acab67648ee59afeb7ec3e9334", + "symbol": "COLT", + "decimals": 18, + "name": "Collateral Network", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x1a3cbda3853494acab67648ee59afeb7ec3e9334.png", + "aggregators": ["CoinMarketCap", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x67d85a291fcdc862a78812a3c26d55e28ffb2701": { + "address": "0x67d85a291fcdc862a78812a3c26d55e28ffb2701", + "symbol": "ASX", + "decimals": 18, + "name": "Asymetrix", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x67d85a291fcdc862a78812a3c26d55e28ffb2701.png", + "aggregators": ["CoinMarketCap", "Rubic", "Rango"], + "occurrences": 3 + }, + "0xe7ac8545e34771de3706598abb3db9a19af2a07f": { + "address": "0xe7ac8545e34771de3706598abb3db9a19af2a07f", + "symbol": "MONKED", + "decimals": 8, + "name": "MONKED", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xe7ac8545e34771de3706598abb3db9a19af2a07f.png", + "aggregators": ["CoinMarketCap", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x6c059413686565d5ad6cce6eed7742c42dbc44ca": { + "address": "0x6c059413686565d5ad6cce6eed7742c42dbc44ca", + "symbol": "LAELAPS", + "decimals": 18, + "name": "Laelaps", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x6c059413686565d5ad6cce6eed7742c42dbc44ca.png", + "aggregators": ["CoinMarketCap", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x3bf954e809620bf2f1fcb667f1c7d2d2e94350d1": { + "address": "0x3bf954e809620bf2f1fcb667f1c7d2d2e94350d1", + "symbol": "VIZ", + "decimals": 9, + "name": "Vision City", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x3bf954e809620bf2f1fcb667f1c7d2d2e94350d1.png", + "aggregators": ["CoinMarketCap", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x15a3081b541e8dad25c4a5e0c4c4b4e8d105b2e8": { + "address": "0x15a3081b541e8dad25c4a5e0c4c4b4e8d105b2e8", + "symbol": "$POV", + "decimals": 18, + "name": "Pepe Original Version", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x15a3081b541e8dad25c4a5e0c4c4b4e8d105b2e8.png", + "aggregators": ["CoinMarketCap", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x62d04c79c1f3a2d7230ffcd3ab01794e1d153239": { + "address": "0x62d04c79c1f3a2d7230ffcd3ab01794e1d153239", + "symbol": "OGMF", + "decimals": 18, + "name": "CryptoPirates", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x62d04c79c1f3a2d7230ffcd3ab01794e1d153239.png", + "aggregators": ["CoinMarketCap", "Rubic", "Rango"], + "occurrences": 3 + }, + "0xdd50c053c096cb04a3e3362e2b622529ec5f2e8a": { + "address": "0xdd50c053c096cb04a3e3362e2b622529ec5f2e8a", + "symbol": "TBILL", + "decimals": 6, + "name": "OpenEden T-Bills", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xdd50c053c096cb04a3e3362e2b622529ec5f2e8a.png", + "aggregators": ["CoinMarketCap", "LiFi", "Rubic"], + "occurrences": 3 + }, + "0x5bbe36152d3cd3eb7183a82470b39b29eedf068b": { + "address": "0x5bbe36152d3cd3eb7183a82470b39b29eedf068b", + "symbol": "HETH", + "decimals": 18, + "name": "HordETH", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x5bbe36152d3cd3eb7183a82470b39b29eedf068b.png", + "aggregators": ["CoinMarketCap", "Socket", "Rubic"], + "occurrences": 3 + }, + "0x6732efaf6f39926346bef8b821a04b6361c4f3e5": { + "address": "0x6732efaf6f39926346bef8b821a04b6361c4f3e5", + "symbol": "SAFETH", + "decimals": 18, + "name": "Simple Asymmetry ETH", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x6732efaf6f39926346bef8b821a04b6361c4f3e5.png", + "aggregators": ["CoinMarketCap", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x5c0217e4e126d501896594bec409898a9afc5970": { + "address": "0x5c0217e4e126d501896594bec409898a9afc5970", + "symbol": "FRENS", + "decimals": 18, + "name": "Frens", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x5c0217e4e126d501896594bec409898a9afc5970.png", + "aggregators": ["CoinMarketCap", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x37f678ad6221a0fd71cda0eca19c8802f4cabf44": { + "address": "0x37f678ad6221a0fd71cda0eca19c8802f4cabf44", + "symbol": "YUKKY", + "decimals": 18, + "name": "YUKKY", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x37f678ad6221a0fd71cda0eca19c8802f4cabf44.png", + "aggregators": ["CoinMarketCap", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x524ebc93beef838f70b4ae54b675d3e971d5884e": { + "address": "0x524ebc93beef838f70b4ae54b675d3e971d5884e", + "symbol": "HERO", + "decimals": 9, + "name": "Challenge Coin", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x524ebc93beef838f70b4ae54b675d3e971d5884e.png", + "aggregators": ["CoinMarketCap", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x4be2b2c45b432ba362f198c08094017b61e3bdc6": { + "address": "0x4be2b2c45b432ba362f198c08094017b61e3bdc6", + "symbol": "MSWAP", + "decimals": 18, + "name": "MARSWAP", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x4be2b2c45b432ba362f198c08094017b61e3bdc6.png", + "aggregators": ["CoinMarketCap", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x66861d5f0fbfb7b2711712fef2172c560d08d0ab": { + "address": "0x66861d5f0fbfb7b2711712fef2172c560d08d0ab", + "symbol": "AFB", + "decimals": 18, + "name": "A Fund Baby", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x66861d5f0fbfb7b2711712fef2172c560d08d0ab.png", + "aggregators": ["CoinMarketCap", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x3b0b09f5b14f6d50e6672ae158f9d71893feca18": { + "address": "0x3b0b09f5b14f6d50e6672ae158f9d71893feca18", + "symbol": "HIBAKC", + "decimals": 18, + "name": "hiBAKC", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x3b0b09f5b14f6d50e6672ae158f9d71893feca18.png", + "aggregators": ["CoinMarketCap", "Rubic", "Rango"], + "occurrences": 3 + }, + "0xdb8d6d3ac21e4efe3675bbb18514010ac9c5558f": { + "address": "0xdb8d6d3ac21e4efe3675bbb18514010ac9c5558f", + "symbol": "EGRN", + "decimals": 18, + "name": "Energreen", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xdb8d6d3ac21e4efe3675bbb18514010ac9c5558f.png", + "aggregators": ["CoinMarketCap", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x15c1cab705b9ddb9ffeeea608ed8bafcdd4c0396": { + "address": "0x15c1cab705b9ddb9ffeeea608ed8bafcdd4c0396", + "symbol": "HXA", + "decimals": 18, + "name": "HXAcoin", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x15c1cab705b9ddb9ffeeea608ed8bafcdd4c0396.png", + "aggregators": ["CoinMarketCap", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x75430d0782a443bd4f1c92c69009599dea53a206": { + "address": "0x75430d0782a443bd4f1c92c69009599dea53a206", + "symbol": "RICK", + "decimals": 9, + "name": "Pick Or Rick", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x75430d0782a443bd4f1c92c69009599dea53a206.png", + "aggregators": ["CoinMarketCap", "Rubic", "Rango"], + "occurrences": 3 + }, + "0xbc8e35221904f61b4200ca44a08e4dac387ac83a": { + "address": "0xbc8e35221904f61b4200ca44a08e4dac387ac83a", + "symbol": "BERC", + "decimals": 18, + "name": "Fair BERC20", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xbc8e35221904f61b4200ca44a08e4dac387ac83a.png", + "aggregators": ["CoinMarketCap", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x733b5056a0697e7a4357305fe452999a0c409feb": { + "address": "0x733b5056a0697e7a4357305fe452999a0c409feb", + "symbol": "VCORE", + "decimals": 18, + "name": "VCORE", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x733b5056a0697e7a4357305fe452999a0c409feb.png", + "aggregators": ["CoinMarketCap", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x9f94b198ce85c19a846c2b1a4d523f40a747a850": { + "address": "0x9f94b198ce85c19a846c2b1a4d523f40a747a850", + "symbol": "HAVOC", + "decimals": 9, + "name": "havoc", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x9f94b198ce85c19a846c2b1a4d523f40a747a850.png", + "aggregators": ["CoinMarketCap", "Rubic", "Rango"], + "occurrences": 3 + }, + "0xe08ef9206a8a7c9337cc6611b4f5226fdafc4772": { + "address": "0xe08ef9206a8a7c9337cc6611b4f5226fdafc4772", + "symbol": "MESSI", + "decimals": 9, + "name": "MESSI COIN", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xe08ef9206a8a7c9337cc6611b4f5226fdafc4772.png", + "aggregators": ["CoinMarketCap", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x3f17f64f682019599ba51638f74e4b6c127fe725": { + "address": "0x3f17f64f682019599ba51638f74e4b6c127fe725", + "symbol": "REVIVE", + "decimals": 18, + "name": "Revive", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x3f17f64f682019599ba51638f74e4b6c127fe725.png", + "aggregators": ["CoinMarketCap", "Rubic", "Rango"], + "occurrences": 3 + }, + "0xaa68fd12a3b0f7aea66fe8f7111ae3f8d9ac5058": { + "address": "0xaa68fd12a3b0f7aea66fe8f7111ae3f8d9ac5058", + "symbol": "TWEETY", + "decimals": 9, + "name": "Tweety", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xaa68fd12a3b0f7aea66fe8f7111ae3f8d9ac5058.png", + "aggregators": ["CoinMarketCap", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x2890df158d76e584877a1d17a85fea3aeeb85aa6": { + "address": "0x2890df158d76e584877a1d17a85fea3aeeb85aa6", + "symbol": "FUMO", + "decimals": 18, + "name": "Alien Milady Fumo", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x2890df158d76e584877a1d17a85fea3aeeb85aa6.png", + "aggregators": ["CoinMarketCap", "LiFi", "Rubic"], + "occurrences": 3 + }, + "0xb81914f05daf95802eb30726a399733e0696cd79": { + "address": "0xb81914f05daf95802eb30726a399733e0696cd79", + "symbol": "$HOLA", + "decimals": 18, + "name": "HOLA", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xb81914f05daf95802eb30726a399733e0696cd79.png", + "aggregators": ["CoinMarketCap", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x01bf66becdcfd6d59a5ca18869f494fea086cdfd": { + "address": "0x01bf66becdcfd6d59a5ca18869f494fea086cdfd", + "symbol": "USK", + "decimals": 18, + "name": "US KUMA Interest Bearing Token", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x01bf66becdcfd6d59a5ca18869f494fea086cdfd.png", + "aggregators": ["CoinMarketCap", "Rubic", "Rango"], + "occurrences": 3 + }, + "0xc9d21e5a24110b67af31af464edfdc2dae5ec7d5": { + "address": "0xc9d21e5a24110b67af31af464edfdc2dae5ec7d5", + "symbol": "BTM", + "decimals": 18, + "name": "BitMeme", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xc9d21e5a24110b67af31af464edfdc2dae5ec7d5.png", + "aggregators": ["CoinMarketCap", "Socket", "Rubic"], + "occurrences": 3 + }, + "0x4ebe70cb942d5af0a18b9126762637e7098ff5fd": { + "address": "0x4ebe70cb942d5af0a18b9126762637e7098ff5fd", + "symbol": "G", + "decimals": 9, + "name": "G Revolution", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x4ebe70cb942d5af0a18b9126762637e7098ff5fd.png", + "aggregators": ["CoinMarketCap", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x36880f14af2e85cae8e467827fa077d6bf12ea56": { + "address": "0x36880f14af2e85cae8e467827fa077d6bf12ea56", + "symbol": "JARED", + "decimals": 18, + "name": "Jared From Subway", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x36880f14af2e85cae8e467827fa077d6bf12ea56.png", + "aggregators": ["CoinMarketCap", "Rubic", "Rango"], + "occurrences": 3 + }, + "0xa34ee6108fe427f91edce0d6520d9fec0e64f67b": { + "address": "0xa34ee6108fe427f91edce0d6520d9fec0e64f67b", + "symbol": "$PLPC", + "decimals": 9, + "name": "Pepe Le Pew Coin", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xa34ee6108fe427f91edce0d6520d9fec0e64f67b.png", + "aggregators": ["CoinMarketCap", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x0981d9774a59a703db85f5eaa23672283ea31106": { + "address": "0x0981d9774a59a703db85f5eaa23672283ea31106", + "symbol": "PEPINU", + "decimals": 18, + "name": "Pepe Inu", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x0981d9774a59a703db85f5eaa23672283ea31106.png", + "aggregators": ["CoinMarketCap", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x3f2d4708f75de6fb60b687fed326697634774deb": { + "address": "0x3f2d4708f75de6fb60b687fed326697634774deb", + "symbol": "NEOBOT", + "decimals": 18, + "name": "NeoBot", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x3f2d4708f75de6fb60b687fed326697634774deb.png", + "aggregators": ["CoinMarketCap", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x330528172778cc5196d5f6742886c72505e0613d": { + "address": "0x330528172778cc5196d5f6742886c72505e0613d", + "symbol": "XBOT", + "decimals": 18, + "name": "XBot", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x330528172778cc5196d5f6742886c72505e0613d.png", + "aggregators": ["CoinMarketCap", "LiFi", "Rubic"], + "occurrences": 3 + }, + "0x6eff556748ee452cbdaf31bcb8c76a28651509bd": { + "address": "0x6eff556748ee452cbdaf31bcb8c76a28651509bd", + "symbol": "TIUSD", + "decimals": 18, + "name": "TiUSD", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x6eff556748ee452cbdaf31bcb8c76a28651509bd.png", + "aggregators": ["CoinMarketCap", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x6230f552a1c825d02e1140ccc0d3f5eeec81ca84": { + "address": "0x6230f552a1c825d02e1140ccc0d3f5eeec81ca84", + "symbol": "FUSION", + "decimals": 9, + "name": "FusionBot", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x6230f552a1c825d02e1140ccc0d3f5eeec81ca84.png", + "aggregators": ["CoinMarketCap", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x38cf11283de05cf1823b7804bc75068bd6296957": { + "address": "0x38cf11283de05cf1823b7804bc75068bd6296957", + "symbol": "MBOT", + "decimals": 18, + "name": "MOONBOT", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x38cf11283de05cf1823b7804bc75068bd6296957.png", + "aggregators": ["CoinMarketCap", "Rubic", "Rango"], + "occurrences": 3 + }, + "0xc3071803b9d23460820b516673fd3cec0415d0ed": { + "address": "0xc3071803b9d23460820b516673fd3cec0415d0ed", + "symbol": "KUKU", + "decimals": 9, + "name": "KuKu", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xc3071803b9d23460820b516673fd3cec0415d0ed.png", + "aggregators": ["CoinMarketCap", "Socket", "Rubic"], + "occurrences": 3 + }, + "0xbb19da2482308ec02a242aced4fe0f09d06b12a7": { + "address": "0xbb19da2482308ec02a242aced4fe0f09d06b12a7", + "symbol": "FLASH", + "decimals": 18, + "name": "Flash 3.0", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xbb19da2482308ec02a242aced4fe0f09d06b12a7.png", + "aggregators": ["CoinMarketCap", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x2654e753424a9f02df31cfbc6c5af14a87b6cab5": { + "address": "0x2654e753424a9f02df31cfbc6c5af14a87b6cab5", + "symbol": "KEN", + "decimals": 18, + "name": "Kendoll Janner", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x2654e753424a9f02df31cfbc6c5af14a87b6cab5.png", + "aggregators": ["CoinMarketCap", "Rubic", "Rango"], + "occurrences": 3 + }, + "0xfbbe098ee65238e4d9f771404edddcbf89cd689b": { + "address": "0xfbbe098ee65238e4d9f771404edddcbf89cd689b", + "symbol": "TREE", + "decimals": 18, + "name": "TREEMEISTER", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xfbbe098ee65238e4d9f771404edddcbf89cd689b.png", + "aggregators": ["CoinMarketCap", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x01e87d74b11f656a673a3e7c441425816213eb0c": { + "address": "0x01e87d74b11f656a673a3e7c441425816213eb0c", + "symbol": "HOTDOG", + "decimals": 18, + "name": "Sonic", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x01e87d74b11f656a673a3e7c441425816213eb0c.png", + "aggregators": ["CoinMarketCap", "LiFi", "Rubic"], + "occurrences": 3 + }, + "0x8423b76be8ef6ca7400a6b4c334d29c1d5d4572c": { + "address": "0x8423b76be8ef6ca7400a6b4c334d29c1d5d4572c", + "symbol": "INU", + "decimals": 8, + "name": "HarryPotterObamaInu", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x8423b76be8ef6ca7400a6b4c334d29c1d5d4572c.png", + "aggregators": ["CoinMarketCap", "Rubic", "Rango"], + "occurrences": 3 + }, + "0xbc953fccbcc9e95dafb35d46992cee966aa972cd": { + "address": "0xbc953fccbcc9e95dafb35d46992cee966aa972cd", + "symbol": "DAWAE", + "decimals": 18, + "name": "Dawae", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xbc953fccbcc9e95dafb35d46992cee966aa972cd.png", + "aggregators": ["CoinMarketCap", "Socket", "Rubic"], + "occurrences": 3 + }, + "0x8a3c710e41cd95799c535f22dbae371d7c858651": { + "address": "0x8a3c710e41cd95799c535f22dbae371d7c858651", + "symbol": "XLRT", + "decimals": 18, + "name": "Xccelerate", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x8a3c710e41cd95799c535f22dbae371d7c858651.png", + "aggregators": ["CoinMarketCap", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x3408636a7825e894ac5521ca55494f89f96df240": { + "address": "0x3408636a7825e894ac5521ca55494f89f96df240", + "symbol": "PYME", + "decimals": 18, + "name": "PymeDAO", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x3408636a7825e894ac5521ca55494f89f96df240.png", + "aggregators": ["CoinMarketCap", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x52d30b949bdbc63780e5a263cf436d4df983fe58": { + "address": "0x52d30b949bdbc63780e5a263cf436d4df983fe58", + "symbol": "ZW", + "decimals": 18, + "name": "Zenith Wallet", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x52d30b949bdbc63780e5a263cf436d4df983fe58.png", + "aggregators": ["CoinMarketCap", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x42e70913b53cfcc38b18ffbd124e8f65c706deaf": { + "address": "0x42e70913b53cfcc38b18ffbd124e8f65c706deaf", + "symbol": "SALLY", + "decimals": 9, + "name": "SALAMANDER", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x42e70913b53cfcc38b18ffbd124e8f65c706deaf.png", + "aggregators": ["CoinMarketCap", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x66a3a58f812d0f433daaf1d96e14fd72d1d03d67": { + "address": "0x66a3a58f812d0f433daaf1d96e14fd72d1d03d67", + "symbol": "YAMA", + "decimals": 18, + "name": "yama", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x66a3a58f812d0f433daaf1d96e14fd72d1d03d67.png", + "aggregators": ["CoinMarketCap", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x64c79c8c59a2be17c8d651f73e5ee7942eebdc9e": { + "address": "0x64c79c8c59a2be17c8d651f73e5ee7942eebdc9e", + "symbol": "SCHRODINGE", + "decimals": 18, + "name": "Elon Cat", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x64c79c8c59a2be17c8d651f73e5ee7942eebdc9e.png", + "aggregators": ["CoinMarketCap", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x544d230f0362f3843fda5caa99b94cb2b336e384": { + "address": "0x544d230f0362f3843fda5caa99b94cb2b336e384", + "symbol": "MAG", + "decimals": 9, + "name": "Magnesium", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x544d230f0362f3843fda5caa99b94cb2b336e384.png", + "aggregators": ["CoinMarketCap", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x76af4cb74c8d4da51403d672a799e94b5958c230": { + "address": "0x76af4cb74c8d4da51403d672a799e94b5958c230", + "symbol": "GOOD", + "decimals": 9, + "name": "Feels Good Man", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x76af4cb74c8d4da51403d672a799e94b5958c230.png", + "aggregators": ["CoinMarketCap", "Rubic", "Rango"], + "occurrences": 3 + }, + "0xad6eefb4f4a6ce3e2cd2049c3104f5ce5ed082f0": { + "address": "0xad6eefb4f4a6ce3e2cd2049c3104f5ce5ed082f0", + "symbol": "SIMPSON690", + "decimals": 9, + "name": "Simpson6900", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xad6eefb4f4a6ce3e2cd2049c3104f5ce5ed082f0.png", + "aggregators": ["CoinMarketCap", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x29d7139271398d0c2e22523fda06e023dcb07f8f": { + "address": "0x29d7139271398d0c2e22523fda06e023dcb07f8f", + "symbol": "KLUB", + "decimals": 18, + "name": "Klub Coin", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x29d7139271398d0c2e22523fda06e023dcb07f8f.png", + "aggregators": ["CoinMarketCap", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x47879db9e657e644082071b48e2f33d80f369f02": { + "address": "0x47879db9e657e644082071b48e2f33d80f369f02", + "symbol": "XINU", + "decimals": 9, + "name": "XINU", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x47879db9e657e644082071b48e2f33d80f369f02.png", + "aggregators": ["CoinMarketCap", "Rubic", "Rango"], + "occurrences": 3 + }, + "0xcd54df3c19a7ae672897f2a09821d2c287d36326": { + "address": "0xcd54df3c19a7ae672897f2a09821d2c287d36326", + "symbol": "BABYMEME", + "decimals": 9, + "name": "Baby Memecoin", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xcd54df3c19a7ae672897f2a09821d2c287d36326.png", + "aggregators": ["CoinMarketCap", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x3e2c956b4ab4807b2f942235c9074d9bd069e9f0": { + "address": "0x3e2c956b4ab4807b2f942235c9074d9bd069e9f0", + "symbol": "IPV", + "decimals": 18, + "name": "IPVERSE", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x3e2c956b4ab4807b2f942235c9074d9bd069e9f0.png", + "aggregators": ["CoinMarketCap", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x10f2cf6ef155460c5b716080eb57928652867f2e": { + "address": "0x10f2cf6ef155460c5b716080eb57928652867f2e", + "symbol": "MUSK", + "decimals": 18, + "name": "Musk", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x10f2cf6ef155460c5b716080eb57928652867f2e.png", + "aggregators": ["CoinMarketCap", "Rubic", "Rango"], + "occurrences": 3 + }, + "0xdeadface8503399df4b083ef42fa8e02fd39dead": { + "address": "0xdeadface8503399df4b083ef42fa8e02fd39dead", + "symbol": "TRIBE", + "decimals": 18, + "name": "The Tribe", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xdeadface8503399df4b083ef42fa8e02fd39dead.png", + "aggregators": ["CoinMarketCap", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x31adda225642a8f4d7e90d4152be6661ab22a5a2": { + "address": "0x31adda225642a8f4d7e90d4152be6661ab22a5a2", + "symbol": "HYPR", + "decimals": 18, + "name": "HYPR", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x31adda225642a8f4d7e90d4152be6661ab22a5a2.png", + "aggregators": ["CoinMarketCap", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x1c001d1c9e8c7b8dc717c714d30b31480ab360f5": { + "address": "0x1c001d1c9e8c7b8dc717c714d30b31480ab360f5", + "symbol": "GTX", + "decimals": 18, + "name": "Gigantix Wallet Token", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x1c001d1c9e8c7b8dc717c714d30b31480ab360f5.png", + "aggregators": ["CoinMarketCap", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x273b8e7adddcb4de101416300fcd3688c0612a27": { + "address": "0x273b8e7adddcb4de101416300fcd3688c0612a27", + "symbol": "RAIT", + "decimals": 18, + "name": "Rabbitgame", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x273b8e7adddcb4de101416300fcd3688c0612a27.png", + "aggregators": ["CoinMarketCap", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x74588af8de14287e91d89758636d277d66f217b6": { + "address": "0x74588af8de14287e91d89758636d277d66f217b6", + "symbol": "0XOS", + "decimals": 18, + "name": "0xOS AI", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x74588af8de14287e91d89758636d277d66f217b6.png", + "aggregators": ["CoinMarketCap", "Rubic", "Rango"], + "occurrences": 3 + }, + "0xcb19b6b4971bd4206bab176c75b1efe3e28ee5a8": { + "address": "0xcb19b6b4971bd4206bab176c75b1efe3e28ee5a8", + "symbol": "SEN", + "decimals": 18, + "name": "Seneca", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xcb19b6b4971bd4206bab176c75b1efe3e28ee5a8.png", + "aggregators": ["CoinMarketCap", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x30d0e4e6fb0330e45a13e1e06260837f27015de5": { + "address": "0x30d0e4e6fb0330e45a13e1e06260837f27015de5", + "symbol": "YOD", + "decimals": 18, + "name": "Year of the Dragon", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x30d0e4e6fb0330e45a13e1e06260837f27015de5.png", + "aggregators": ["CoinMarketCap", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x9dc9d1c18060b45f3dc15fb8d6ab1895022c63b3": { + "address": "0x9dc9d1c18060b45f3dc15fb8d6ab1895022c63b3", + "symbol": "BBB", + "decimals": 18, + "name": "BitBullBot", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x9dc9d1c18060b45f3dc15fb8d6ab1895022c63b3.png", + "aggregators": ["CoinMarketCap", "Rubic", "Rango"], + "occurrences": 3 + }, + "0xc1ecfaf43c53bec9b9143ab274f35603fd10b886": { + "address": "0xc1ecfaf43c53bec9b9143ab274f35603fd10b886", + "symbol": "SSHIP", + "decimals": 18, + "name": "StarShip", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xc1ecfaf43c53bec9b9143ab274f35603fd10b886.png", + "aggregators": ["CoinMarketCap", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x60c0d11c10a0c04acb47c6296156bdffac62ef97": { + "address": "0x60c0d11c10a0c04acb47c6296156bdffac62ef97", + "symbol": "BBCG", + "decimals": 4, + "name": "BBC Gold Coin", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x60c0d11c10a0c04acb47c6296156bdffac62ef97.png", + "aggregators": ["CoinMarketCap", "Rubic", "Rango"], + "occurrences": 3 + }, + "0xebdb54e76bfec9ab4e06ccf6e484e4126f81befc": { + "address": "0xebdb54e76bfec9ab4e06ccf6e484e4126f81befc", + "symbol": "HON", + "decimals": 18, + "name": "Soul Society", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xebdb54e76bfec9ab4e06ccf6e484e4126f81befc.png", + "aggregators": ["CoinMarketCap", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x2a85556a6701a02e75bc4de8ec340c6de1b29f72": { + "address": "0x2a85556a6701a02e75bc4de8ec340c6de1b29f72", + "symbol": "TOKA", + "decimals": 18, + "name": "Tonka Finance", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x2a85556a6701a02e75bc4de8ec340c6de1b29f72.png", + "aggregators": ["CoinMarketCap", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x00000000ba2ca30042001abc545871380f570b1f": { + "address": "0x00000000ba2ca30042001abc545871380f570b1f", + "symbol": "ATF", + "decimals": 18, + "name": "ArithFi", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x00000000ba2ca30042001abc545871380f570b1f.png", + "aggregators": ["CoinMarketCap", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x2f1ee92524285012c02a4e638ec010fa7f61fd94": { + "address": "0x2f1ee92524285012c02a4e638ec010fa7f61fd94", + "symbol": "SLS", + "decimals": 18, + "name": "Siphon Life Spell", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x2f1ee92524285012c02a4e638ec010fa7f61fd94.png", + "aggregators": ["CoinMarketCap", "Rubic", "Rango"], + "occurrences": 3 + }, + "0xf4cccfda0781ae019a9d4e1853dcd3e288daaa89": { + "address": "0xf4cccfda0781ae019a9d4e1853dcd3e288daaa89", + "symbol": "$PINCHI", + "decimals": 9, + "name": "da Pinchi", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xf4cccfda0781ae019a9d4e1853dcd3e288daaa89.png", + "aggregators": ["CoinMarketCap", "Rubic", "Rango"], + "occurrences": 3 + }, + "0xf2fdd9c25d7bc8002ce89716d1be484b2d976944": { + "address": "0xf2fdd9c25d7bc8002ce89716d1be484b2d976944", + "symbol": "𝕏PAY", + "decimals": 18, + "name": "𝕏 Payments", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xf2fdd9c25d7bc8002ce89716d1be484b2d976944.png", + "aggregators": ["CoinMarketCap", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x1bb9b64927e0c5e207c9db4093b3738eef5d8447": { + "address": "0x1bb9b64927e0c5e207c9db4093b3738eef5d8447", + "symbol": "VEC", + "decimals": 9, + "name": "Vector", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x1bb9b64927e0c5e207c9db4093b3738eef5d8447.png", + "aggregators": ["CoinMarketCap", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x926ff6584b5905cc793cfb19bfc0ad6443671f47": { + "address": "0x926ff6584b5905cc793cfb19bfc0ad6443671f47", + "symbol": "PABLO", + "decimals": 18, + "name": "PABLO DEFI", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x926ff6584b5905cc793cfb19bfc0ad6443671f47.png", + "aggregators": ["CoinMarketCap", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x0aa1582bebf8d96ea384b6829a5d41278579cd88": { + "address": "0x0aa1582bebf8d96ea384b6829a5d41278579cd88", + "symbol": "LYVE", + "decimals": 18, + "name": "Lyve Finance", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x0aa1582bebf8d96ea384b6829a5d41278579cd88.png", + "aggregators": ["CoinMarketCap", "Rubic", "Rango"], + "occurrences": 3 + }, + "0xbe59baad09b07086ee6c39bd0fc234c157c31ccc": { + "address": "0xbe59baad09b07086ee6c39bd0fc234c157c31ccc", + "symbol": "LONG", + "decimals": 18, + "name": "LONG Token", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xbe59baad09b07086ee6c39bd0fc234c157c31ccc.png", + "aggregators": ["CoinMarketCap", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x39a9728fb398583154e6cc5e3defa60908f58e2f": { + "address": "0x39a9728fb398583154e6cc5e3defa60908f58e2f", + "symbol": "BEFY", + "decimals": 18, + "name": "Befy Protocol", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x39a9728fb398583154e6cc5e3defa60908f58e2f.png", + "aggregators": ["CoinMarketCap", "Rubic", "Rango"], + "occurrences": 3 + }, + "0xd289ea09aeece390629e9414d41b4d9d9bf43fd9": { + "address": "0xd289ea09aeece390629e9414d41b4d9d9bf43fd9", + "symbol": "AITEK", + "decimals": 18, + "name": "AI Technology", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xd289ea09aeece390629e9414d41b4d9d9bf43fd9.png", + "aggregators": ["CoinMarketCap", "Rubic", "Rango"], + "occurrences": 3 + }, + "0xb5c457ddb4ce3312a6c5a2b056a1652bd542a208": { + "address": "0xb5c457ddb4ce3312a6c5a2b056a1652bd542a208", + "symbol": "ROCK", + "decimals": 18, + "name": "EtherRock404", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xb5c457ddb4ce3312a6c5a2b056a1652bd542a208.png", + "aggregators": ["CoinMarketCap", "Rubic", "Rango"], + "occurrences": 3 + }, + "0xbe33f57f41a20b2f00dec91dcc1169597f36221f": { + "address": "0xbe33f57f41a20b2f00dec91dcc1169597f36221f", + "symbol": "RUG", + "decimals": 18, + "name": "Rug", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xbe33f57f41a20b2f00dec91dcc1169597f36221f.png", + "aggregators": ["CoinMarketCap", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x559cc0850361afe1973c0ba5d0a3446c8a5ad678": { + "address": "0x559cc0850361afe1973c0ba5d0a3446c8a5ad678", + "symbol": "AVATAR", + "decimals": 18, + "name": "Avatar", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x559cc0850361afe1973c0ba5d0a3446c8a5ad678.png", + "aggregators": ["CoinMarketCap", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x6c061d18d2b5bbfbe8a8d1eeb9ee27efd544cc5d": { + "address": "0x6c061d18d2b5bbfbe8a8d1eeb9ee27efd544cc5d", + "symbol": "MNRCH", + "decimals": 18, + "name": "Monarch", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x6c061d18d2b5bbfbe8a8d1eeb9ee27efd544cc5d.png", + "aggregators": ["CoinMarketCap", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x45b3cf56896c4547426a4145ad1d0ae971120214": { + "address": "0x45b3cf56896c4547426a4145ad1d0ae971120214", + "symbol": "404BLOCKS", + "decimals": 18, + "name": "404Blocks", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x45b3cf56896c4547426a4145ad1d0ae971120214.png", + "aggregators": ["CoinMarketCap", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x038ed1383763d704d4271fe856ac96b4557e9d06": { + "address": "0x038ed1383763d704d4271fe856ac96b4557e9d06", + "symbol": "ALPHABET", + "decimals": 18, + "name": "Alphabet", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x038ed1383763d704d4271fe856ac96b4557e9d06.png", + "aggregators": ["CoinMarketCap", "Rubic", "Rango"], + "occurrences": 3 + }, + "0xbc391e78b0ea0d1db04890732742494e7fbfc118": { + "address": "0xbc391e78b0ea0d1db04890732742494e7fbfc118", + "symbol": "VANA ", + "decimals": 18, + "name": "Vana", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xbc391e78b0ea0d1db04890732742494e7fbfc118.png", + "aggregators": ["CoinMarketCap", "Rubic", "Rango"], + "occurrences": 3 + }, + "0xe4129c7b229812212f88d1bd6a223c45622e6b85": { + "address": "0xe4129c7b229812212f88d1bd6a223c45622e6b85", + "symbol": "LOOT", + "decimals": 9, + "name": "Looted Network", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xe4129c7b229812212f88d1bd6a223c45622e6b85.png", + "aggregators": ["CoinMarketCap", "Rubic", "Rango"], + "occurrences": 3 + }, + "0xc73abe8d7a0da644743fe2ad24f4e16bb7ed43f8": { + "address": "0xc73abe8d7a0da644743fe2ad24f4e16bb7ed43f8", + "symbol": "WEBAI", + "decimals": 9, + "name": "Website AI", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xc73abe8d7a0da644743fe2ad24f4e16bb7ed43f8.png", + "aggregators": ["CoinMarketCap", "Rubic", "Rango"], + "occurrences": 3 + }, + "0xb813322cd994a2f7808c340ea12e0a2283a7a757": { + "address": "0xb813322cd994a2f7808c340ea12e0a2283a7a757", + "symbol": "CBABY", + "decimals": 18, + "name": "Cosmo Baby", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xb813322cd994a2f7808c340ea12e0a2283a7a757.png", + "aggregators": ["CoinMarketCap", "Rubic", "Rango"], + "occurrences": 3 + }, + "0xafa42b8ba6ba9dace46dae129a2a1ef54b73fa8b": { + "address": "0xafa42b8ba6ba9dace46dae129a2a1ef54b73fa8b", + "symbol": "MODAI", + "decimals": 18, + "name": "Modai", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xafa42b8ba6ba9dace46dae129a2a1ef54b73fa8b.png", + "aggregators": ["CoinMarketCap", "Rubic", "Rango"], + "occurrences": 3 + }, + "0xa406844323f1603701e6ad95adc8a082213a68ce": { + "address": "0xa406844323f1603701e6ad95adc8a082213a68ce", + "symbol": "PBT", + "decimals": 18, + "name": "PolyBet", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xa406844323f1603701e6ad95adc8a082213a68ce.png", + "aggregators": ["CoinMarketCap", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x1f769203d2abcb78f5a77dd15c0078c50fb13287": { + "address": "0x1f769203d2abcb78f5a77dd15c0078c50fb13287", + "symbol": "AZURE", + "decimals": 18, + "name": "AZURE WALLET", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x1f769203d2abcb78f5a77dd15c0078c50fb13287.png", + "aggregators": ["CoinMarketCap", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x6d48206b97b164555c8fc7a40d59a7230e055166": { + "address": "0x6d48206b97b164555c8fc7a40d59a7230e055166", + "symbol": "SEND", + "decimals": 18, + "name": "Sendpicks", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x6d48206b97b164555c8fc7a40d59a7230e055166.png", + "aggregators": ["CoinMarketCap", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x8e3a59427b1d87db234dd4ff63b25e4bf94672f4": { + "address": "0x8e3a59427b1d87db234dd4ff63b25e4bf94672f4", + "symbol": "KEP", + "decimals": 18, + "name": "Kelp Earned Point", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x8e3a59427b1d87db234dd4ff63b25e4bf94672f4.png", + "aggregators": ["CoinMarketCap", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x3a645ff83560231aab0f9c830ba108b06c94e34a": { + "address": "0x3a645ff83560231aab0f9c830ba108b06c94e34a", + "symbol": "LUNAR", + "decimals": 9, + "name": "Lunar", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x3a645ff83560231aab0f9c830ba108b06c94e34a.png", + "aggregators": ["CoinMarketCap", "Rubic", "Rango"], + "occurrences": 3 + }, + "0xdd4ce03b97085e5023d3a5fbff6e4f2c4dffb7c3": { + "address": "0xdd4ce03b97085e5023d3a5fbff6e4f2c4dffb7c3", + "symbol": "PORA", + "decimals": 18, + "name": "PORA AI", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xdd4ce03b97085e5023d3a5fbff6e4f2c4dffb7c3.png", + "aggregators": ["CoinMarketCap", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x95b4b8cad3567b5d7ef7399c2ae1d7070692ab0d": { + "address": "0x95b4b8cad3567b5d7ef7399c2ae1d7070692ab0d", + "symbol": "APRS", + "decimals": 18, + "name": "Aperios", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x95b4b8cad3567b5d7ef7399c2ae1d7070692ab0d.png", + "aggregators": ["CoinMarketCap", "LiFi", "Rubic"], + "occurrences": 3 + }, + "0x29ffeffcd2154824c6e645afeacca4bd95c893d2": { + "address": "0x29ffeffcd2154824c6e645afeacca4bd95c893d2", + "symbol": "ALGO", + "decimals": 18, + "name": "Algowave", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x29ffeffcd2154824c6e645afeacca4bd95c893d2.png", + "aggregators": ["CoinMarketCap", "Rubic", "Rango"], + "occurrences": 3 + }, + "0xb9edbe853ddccb4baaf49201be6c39ee1816e120": { + "address": "0xb9edbe853ddccb4baaf49201be6c39ee1816e120", + "symbol": "RDDT", + "decimals": 18, + "name": "Reddit", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xb9edbe853ddccb4baaf49201be6c39ee1816e120.png", + "aggregators": ["CoinMarketCap", "Rubic", "Rango"], + "occurrences": 3 + }, + "0xd488321ef57ab16b4f334558b1fc4e0213c82db1": { + "address": "0xd488321ef57ab16b4f334558b1fc4e0213c82db1", + "symbol": "WCT", + "decimals": 18, + "name": "WCTrades", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xd488321ef57ab16b4f334558b1fc4e0213c82db1.png", + "aggregators": ["CoinMarketCap", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x9caae40dcf950afea443119e51e821d6fe2437ca": { + "address": "0x9caae40dcf950afea443119e51e821d6fe2437ca", + "symbol": "BJ", + "decimals": 18, + "name": "Blocjerk", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x9caae40dcf950afea443119e51e821d6fe2437ca.png", + "aggregators": ["CoinMarketCap", "LiFi", "Rubic"], + "occurrences": 3 + }, + "0xb418ded94300913fccbef784a49150f46f0fb827": { + "address": "0xb418ded94300913fccbef784a49150f46f0fb827", + "symbol": "BULL", + "decimals": 18, + "name": "TERRIER", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xb418ded94300913fccbef784a49150f46f0fb827.png", + "aggregators": ["CoinMarketCap", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x405154cfaf5ea4ef57b65b86959c73dd079fa312": { + "address": "0x405154cfaf5ea4ef57b65b86959c73dd079fa312", + "symbol": "ALICE", + "decimals": 18, + "name": "Alice AI", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x405154cfaf5ea4ef57b65b86959c73dd079fa312.png", + "aggregators": ["CoinMarketCap", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x55ff0f50f639e7acfe06694e6d018bd7678e6da9": { + "address": "0x55ff0f50f639e7acfe06694e6d018bd7678e6da9", + "symbol": "MNS", + "decimals": 9, + "name": "MINESHIELD", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x55ff0f50f639e7acfe06694e6d018bd7678e6da9.png", + "aggregators": ["CoinMarketCap", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x13f7b4581df403542286563c2f762077b2a368da": { + "address": "0x13f7b4581df403542286563c2f762077b2a368da", + "symbol": "CLOAK", + "decimals": 18, + "name": "Cloak", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x13f7b4581df403542286563c2f762077b2a368da.png", + "aggregators": ["CoinMarketCap", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x8f43ee50942e96d84052253ab13f59c1d942fb98": { + "address": "0x8f43ee50942e96d84052253ab13f59c1d942fb98", + "symbol": "PARA", + "decimals": 9, + "name": "Paragon Network", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x8f43ee50942e96d84052253ab13f59c1d942fb98.png", + "aggregators": ["CoinMarketCap", "Rubic", "Rango"], + "occurrences": 3 + }, + "0xda63feff6e6d75cd7a862cd56c625045dcf26e88": { + "address": "0xda63feff6e6d75cd7a862cd56c625045dcf26e88", + "symbol": "CMINER", + "decimals": 9, + "name": "ChainMiner", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xda63feff6e6d75cd7a862cd56c625045dcf26e88.png", + "aggregators": ["CoinMarketCap", "Rubic", "Rango"], + "occurrences": 3 + }, + "0xced6a1b885ee79899422d3a2f61fa9c77282c573": { + "address": "0xced6a1b885ee79899422d3a2f61fa9c77282c573", + "symbol": "$CODEG", + "decimals": 18, + "name": "CodeGenie", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xced6a1b885ee79899422d3a2f61fa9c77282c573.png", + "aggregators": ["CoinMarketCap", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x71b3a0566f4bf80331d115d8026a7022bf670cce": { + "address": "0x71b3a0566f4bf80331d115d8026a7022bf670cce", + "symbol": "DD", + "decimals": 6, + "name": "Diment Dollar", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x71b3a0566f4bf80331d115d8026a7022bf670cce.png", + "aggregators": ["CoinMarketCap", "Rubic", "Rango"], + "occurrences": 3 + }, + "0xee372d2b7e7c83de7e345267b5e4efc1899a4fab": { + "address": "0xee372d2b7e7c83de7e345267b5e4efc1899a4fab", + "symbol": "XTRACK", + "decimals": 18, + "name": "Xtrack AI", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xee372d2b7e7c83de7e345267b5e4efc1899a4fab.png", + "aggregators": ["CoinMarketCap", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x134359b7c852c82e4ebdd16a61020e6b81dd6a6b": { + "address": "0x134359b7c852c82e4ebdd16a61020e6b81dd6a6b", + "symbol": "BETZ", + "decimals": 18, + "name": "Bet Lounge", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x134359b7c852c82e4ebdd16a61020e6b81dd6a6b.png", + "aggregators": ["CoinMarketCap", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x781fbc4c6edf7a37dcc08a3b323f122e8a09eac5": { + "address": "0x781fbc4c6edf7a37dcc08a3b323f122e8a09eac5", + "symbol": "OAT", + "decimals": 18, + "name": "OAT Network", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x781fbc4c6edf7a37dcc08a3b323f122e8a09eac5.png", + "aggregators": ["CoinMarketCap", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x8dba4bc68126bd186fbb62c976539d1558c9fe73": { + "address": "0x8dba4bc68126bd186fbb62c976539d1558c9fe73", + "symbol": "PEPEBOMB", + "decimals": 18, + "name": "pepe", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x8dba4bc68126bd186fbb62c976539d1558c9fe73.png", + "aggregators": ["CoinMarketCap", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x34b64fd41675520bf5098bbcc37c679ca55fb5df": { + "address": "0x34b64fd41675520bf5098bbcc37c679ca55fb5df", + "symbol": "HYPERAI", + "decimals": 9, + "name": "HyperHash AI", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x34b64fd41675520bf5098bbcc37c679ca55fb5df.png", + "aggregators": ["CoinMarketCap", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x5ea49ff332b7ad99c486347c1c2bcc73d1e22b9b": { + "address": "0x5ea49ff332b7ad99c486347c1c2bcc73d1e22b9b", + "symbol": "SAI", + "decimals": 18, + "name": "SyntheticAI", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x5ea49ff332b7ad99c486347c1c2bcc73d1e22b9b.png", + "aggregators": ["CoinMarketCap", "Rubic", "Rango"], + "occurrences": 3 + }, + "0xf3d74182247ef963e0de37e3f2e174e98dcbfae1": { + "address": "0xf3d74182247ef963e0de37e3f2e174e98dcbfae1", + "symbol": "$VOIP", + "decimals": 18, + "name": "VoIP Finance", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xf3d74182247ef963e0de37e3f2e174e98dcbfae1.png", + "aggregators": ["CoinMarketCap", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x663962c0d2b624776d6fd1bf6ba41236761e76a9": { + "address": "0x663962c0d2b624776d6fd1bf6ba41236761e76a9", + "symbol": "IVEX", + "decimals": 21, + "name": "IVEX Financial", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x663962c0d2b624776d6fd1bf6ba41236761e76a9.png", + "aggregators": ["CoinMarketCap", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x7c851d60b26a4f2a6f2c628ef3b65ed282c54e52": { + "address": "0x7c851d60b26a4f2a6f2c628ef3b65ed282c54e52", + "symbol": "RESCUE", + "decimals": 18, + "name": "Rescue", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x7c851d60b26a4f2a6f2c628ef3b65ed282c54e52.png", + "aggregators": ["CoinMarketCap", "Rubic", "Rango"], + "occurrences": 3 + }, + "0xb8176a66c0d0a84cfd4e403c89cf3416b1e798ad": { + "address": "0xb8176a66c0d0a84cfd4e403c89cf3416b1e798ad", + "symbol": "BITBEDR", + "decimals": 18, + "name": "BITBEDR", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xb8176a66c0d0a84cfd4e403c89cf3416b1e798ad.png", + "aggregators": ["CoinMarketCap", "Rubic", "Sonarwatch"], + "occurrences": 3 + }, + "0x300e0d87f8c95d90cfe4b809baa3a6c90e83b850": { + "address": "0x300e0d87f8c95d90cfe4b809baa3a6c90e83b850", + "symbol": "BTC", + "decimals": 9, + "name": "Boost Trump Campaign", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x300e0d87f8c95d90cfe4b809baa3a6c90e83b850.png", + "aggregators": ["CoinMarketCap", "Socket", "Rubic"], + "occurrences": 3 + }, + "0xa2ce8366603f3fffc460bef0fb90e980c9337967": { + "address": "0xa2ce8366603f3fffc460bef0fb90e980c9337967", + "symbol": "BOOST", + "decimals": 18, + "name": "Boost AI", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xa2ce8366603f3fffc460bef0fb90e980c9337967.png", + "aggregators": ["CoinMarketCap", "Rubic", "Rango"], + "occurrences": 3 + }, + "0xf792851286fc963535fa9894573b83845bd4c1c2": { + "address": "0xf792851286fc963535fa9894573b83845bd4c1c2", + "symbol": "$SIA", + "decimals": 18, + "name": "SIA AI", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xf792851286fc963535fa9894573b83845bd4c1c2.png", + "aggregators": ["CoinMarketCap", "Rubic", "Rango"], + "occurrences": 3 + }, + "0xac6db8954b73ebf10e84278ac8b9b22a781615d9": { + "address": "0xac6db8954b73ebf10e84278ac8b9b22a781615d9", + "symbol": "BWB", + "decimals": 18, + "name": "Bitget Wallet Token", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xac6db8954b73ebf10e84278ac8b9b22a781615d9.png", + "aggregators": ["CoinMarketCap", "Rubic", "Rango"], + "occurrences": 3 + }, + "0xbfae33128ecf041856378b57adf0449181fffde7": { + "address": "0xbfae33128ecf041856378b57adf0449181fffde7", + "symbol": "WIF", + "decimals": 9, + "name": "Wif on ETH", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xbfae33128ecf041856378b57adf0449181fffde7.png", + "aggregators": ["CoinMarketCap", "Socket", "Rubic"], + "occurrences": 3 + }, + "0x22c5ff2999bd728eaa91f8a25e9515adec2ee20a": { + "address": "0x22c5ff2999bd728eaa91f8a25e9515adec2ee20a", + "symbol": "NAT", + "decimals": 18, + "name": "NatCoin", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x22c5ff2999bd728eaa91f8a25e9515adec2ee20a.png", + "aggregators": ["CoinMarketCap", "Rubic", "Rango"], + "occurrences": 3 + }, + "0xb91d822dfef943165f368d92c16bac9bd5ec6842": { + "address": "0xb91d822dfef943165f368d92c16bac9bd5ec6842", + "symbol": "ZKX", + "decimals": 18, + "name": "ZKX", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xb91d822dfef943165f368d92c16bac9bd5ec6842.png", + "aggregators": ["CoinMarketCap", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x12996c7b23c4012149bf9f5663ff9aa08a9cf2e4": { + "address": "0x12996c7b23c4012149bf9f5663ff9aa08a9cf2e4", + "symbol": "WSH", + "decimals": 18, + "name": "White Yorkshire", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x12996c7b23c4012149bf9f5663ff9aa08a9cf2e4.png", + "aggregators": ["CoinMarketCap", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x7e744bbb1a49a44dfcc795014a4ba618e418fbbe": { + "address": "0x7e744bbb1a49a44dfcc795014a4ba618e418fbbe", + "symbol": "MAGANOMICS", + "decimals": 9, + "name": "Maganomics", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x7e744bbb1a49a44dfcc795014a4ba618e418fbbe.png", + "aggregators": ["CoinMarketCap", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x3590801ecfdf8c2f5e7a4fd171c2e3af964f8b0d": { + "address": "0x3590801ecfdf8c2f5e7a4fd171c2e3af964f8b0d", + "symbol": "DGTA", + "decimals": 8, + "name": "Digitra.com", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x3590801ecfdf8c2f5e7a4fd171c2e3af964f8b0d.png", + "aggregators": ["CoinMarketCap", "LiFi", "Rubic"], + "occurrences": 3 + }, + "0x15f9eb4b9beafa9db35341c5694c0b6573809808": { + "address": "0x15f9eb4b9beafa9db35341c5694c0b6573809808", + "symbol": "DEDA", + "decimals": 8, + "name": "DedaCoin", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x15f9eb4b9beafa9db35341c5694c0b6573809808.png", + "aggregators": ["CoinMarketCap", "Rubic", "Sonarwatch"], + "occurrences": 3 + }, + "0xe54613083f60bbabde389320074953053562c685": { + "address": "0xe54613083f60bbabde389320074953053562c685", + "symbol": "META", + "decimals": 18, + "name": "Metaverse convergence", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xe54613083f60bbabde389320074953053562c685.png", + "aggregators": ["CoinMarketCap", "LiFi", "Rubic"], + "occurrences": 3 + }, + "0x128f3e482f5bd5f08fe1b216e60ec0a6013deab9": { + "address": "0x128f3e482f5bd5f08fe1b216e60ec0a6013deab9", + "symbol": "DARAM", + "decimals": 12, + "name": "DARAM AI", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x128f3e482f5bd5f08fe1b216e60ec0a6013deab9.png", + "aggregators": ["CoinMarketCap", "Socket", "Rubic"], + "occurrences": 3 + }, + "0x556c3cbdca77a7f21afe15b17e644e0e98e64df4": { + "address": "0x556c3cbdca77a7f21afe15b17e644e0e98e64df4", + "symbol": "MAO", + "decimals": 18, + "name": "Mao", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x556c3cbdca77a7f21afe15b17e644e0e98e64df4.png", + "aggregators": ["CoinMarketCap", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x810296898a4f870619b015c0b13c8c6e65b305e3": { + "address": "0x810296898a4f870619b015c0b13c8c6e65b305e3", + "symbol": "NGTG", + "decimals": 2, + "name": "Nugget Trap Gold Token", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x810296898a4f870619b015c0b13c8c6e65b305e3.png", + "aggregators": ["CoinMarketCap", "Rubic", "Sonarwatch"], + "occurrences": 3 + }, + "0x25d29fa7cf5cd5a11102b793f1a0149546e026e4": { + "address": "0x25d29fa7cf5cd5a11102b793f1a0149546e026e4", + "symbol": "ZON", + "decimals": 18, + "name": "ZON ", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x25d29fa7cf5cd5a11102b793f1a0149546e026e4.png", + "aggregators": ["CoinMarketCap", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x9c94e82d8751f16953f9c86e13ed9cd0414e6e97": { + "address": "0x9c94e82d8751f16953f9c86e13ed9cd0414e6e97", + "symbol": "VOLS", + "decimals": 18, + "name": "Volaris Games", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x9c94e82d8751f16953f9c86e13ed9cd0414e6e97.png", + "aggregators": ["CoinMarketCap", "Rubic", "Squid"], + "occurrences": 3 + }, + "0xd0f3c49297a85c81bfe98bc0bdc966964c0e7173": { + "address": "0xd0f3c49297a85c81bfe98bc0bdc966964c0e7173", + "symbol": "VMC", + "decimals": 18, + "name": "VMS Classic", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xd0f3c49297a85c81bfe98bc0bdc966964c0e7173.png", + "aggregators": ["CoinMarketCap", "Rubic", "Sonarwatch"], + "occurrences": 3 + }, + "0x68614481aef06e53d23bbe0772343fb555ac40c8": { + "address": "0x68614481aef06e53d23bbe0772343fb555ac40c8", + "symbol": "PLMS", + "decimals": 18, + "name": "Polemos", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x68614481aef06e53d23bbe0772343fb555ac40c8.png", + "aggregators": ["CoinMarketCap", "Socket", "Rubic"], + "occurrences": 3 + }, + "0xa3b71add41c9e4e1034fe665f946baebfe9c07c4": { + "address": "0xa3b71add41c9e4e1034fe665f946baebfe9c07c4", + "symbol": "LEGAL", + "decimals": 18, + "name": "LEGAL", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xa3b71add41c9e4e1034fe665f946baebfe9c07c4.png", + "aggregators": ["CoinMarketCap", "Rubic", "Sonarwatch"], + "occurrences": 3 + }, + "0x9b784f7fd6c888463666eb2c05aa6e61628e06b2": { + "address": "0x9b784f7fd6c888463666eb2c05aa6e61628e06b2", + "symbol": "BFTOKEN", + "decimals": 18, + "name": "BOSS FIGHTERS Token", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x9b784f7fd6c888463666eb2c05aa6e61628e06b2.png", + "aggregators": ["CoinMarketCap", "Rubic", "Sonarwatch"], + "occurrences": 3 + }, + "0xb7d29ec03d87dcd5d6f6ea39a855d5566e6c8f36": { + "address": "0xb7d29ec03d87dcd5d6f6ea39a855d5566e6c8f36", + "symbol": "GX3", + "decimals": 9, + "name": "GX3 A", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xb7d29ec03d87dcd5d6f6ea39a855d5566e6c8f36.png", + "aggregators": ["CoinMarketCap", "Rubic", "Sonarwatch"], + "occurrences": 3 + }, + "0x5ca9a71b1d01849c0a95490cc00559717fcf0d1d": { + "address": "0x5ca9a71b1d01849c0a95490cc00559717fcf0d1d", + "symbol": "AE", + "decimals": 18, + "name": "Aeternity", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x5ca9a71b1d01849c0a95490cc00559717fcf0d1d.png", + "aggregators": ["Metamask", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x71f85b2e46976bd21302b64329868fd15eb0d127": { + "address": "0x71f85b2e46976bd21302b64329868fd15eb0d127", + "symbol": "AXN", + "decimals": 18, + "name": "Axion", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x71f85b2e46976bd21302b64329868fd15eb0d127.png", + "aggregators": ["Metamask", "TrustWallet", "Rubic"], + "occurrences": 3 + }, + "0xcd1faff6e578fa5cac469d2418c95671ba1a62fe": { + "address": "0xcd1faff6e578fa5cac469d2418c95671ba1a62fe", + "symbol": "XTM", + "decimals": 18, + "name": "Torum Token", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xcd1faff6e578fa5cac469d2418c95671ba1a62fe.png", + "aggregators": ["Metamask", "LiFi", "Rubic"], + "occurrences": 3 + }, + "0x2d62109243b87c4ba3ee7ba1d91b0dd0a074d7b1": { + "address": "0x2d62109243b87c4ba3ee7ba1d91b0dd0a074d7b1", + "symbol": "AETHRSETH", + "decimals": 18, + "name": "Aave Ethereum rsETH", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x2d62109243b87c4ba3ee7ba1d91b0dd0a074d7b1.png", + "aggregators": ["1inch", "LiFi", "Rango"], + "occurrences": 3 + }, + "0x149ee12310d499f701b6a5714edad2c832008fd2": { + "address": "0x149ee12310d499f701b6a5714edad2c832008fd2", + "symbol": "STATAETHCRV", + "decimals": 18, + "name": "Static Aave Ethereum CRV", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x149ee12310d499f701b6a5714edad2c832008fd2.png", + "aggregators": ["1inch", "LiFi", "Rango"], + "occurrences": 3 + }, + "0xb07e357cc262e92eee03d8b81464d596b258ea7a": { + "address": "0xb07e357cc262e92eee03d8b81464d596b258ea7a", + "symbol": "STATAETHWBTC", + "decimals": 8, + "name": "Static Aave Ethereum WBTC", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xb07e357cc262e92eee03d8b81464d596b258ea7a.png", + "aggregators": ["1inch", "LiFi", "Rango"], + "occurrences": 3 + }, + "0xbdfa7b7893081b35fb54027489e2bc7a38275129": { + "address": "0xbdfa7b7893081b35fb54027489e2bc7a38275129", + "symbol": "AETHWEETH", + "decimals": 18, + "name": "Aave Ethereum weETH", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xbdfa7b7893081b35fb54027489e2bc7a38275129.png", + "aggregators": ["1inch", "LiFi", "Rango"], + "occurrences": 3 + }, + "0x10ac93971cdb1f5c778144084242374473c350da": { + "address": "0x10ac93971cdb1f5c778144084242374473c350da", + "symbol": "AETHTBTC", + "decimals": 18, + "name": "Aave Ethereum tBTC", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x10ac93971cdb1f5c778144084242374473c350da.png", + "aggregators": ["1inch", "LiFi", "Rango"], + "occurrences": 3 + }, + "0x5c647ce0ae10658ec44fa4e11a51c96e94efd1dd": { + "address": "0x5c647ce0ae10658ec44fa4e11a51c96e94efd1dd", + "symbol": "AETHCBBTC", + "decimals": 8, + "name": "Aave Ethereum cbBTC", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x5c647ce0ae10658ec44fa4e11a51c96e94efd1dd.png", + "aggregators": ["1inch", "LiFi", "Rango"], + "occurrences": 3 + }, + "0x65906988adee75306021c417a1a3458040239602": { + "address": "0x65906988adee75306021c417a1a3458040239602", + "symbol": "AETHLBTC", + "decimals": 8, + "name": "Aave Ethereum LBTC", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x65906988adee75306021c417a1a3458040239602.png", + "aggregators": ["1inch", "LiFi", "Rubic"], + "occurrences": 3 + }, + "0x5fefd7069a7d91d01f269dade14526ccf3487810": { + "address": "0x5fefd7069a7d91d01f269dade14526ccf3487810", + "symbol": "AETHEBTC", + "decimals": 8, + "name": "Aave Ethereum eBTC", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x5fefd7069a7d91d01f269dade14526ccf3487810.png", + "aggregators": ["1inch", "LiFi", "Rango"], + "occurrences": 3 + }, + "0x867cf025b5da438c4e215c60b59bbb3afe896fda": { + "address": "0x867cf025b5da438c4e215c60b59bbb3afe896fda", + "symbol": "STATAETHRETH", + "decimals": 18, + "name": "Static Aave Ethereum rETH", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x867cf025b5da438c4e215c60b59bbb3afe896fda.png", + "aggregators": ["1inch", "LiFi", "Rango"], + "occurrences": 3 + }, + "0xfeb859a50f92c6d5ad7c9ef7c2c060d164b3280f": { + "address": "0xfeb859a50f92c6d5ad7c9ef7c2c060d164b3280f", + "symbol": "STATAETHAAVE", + "decimals": 18, + "name": "Static Aave Ethereum AAVE", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xfeb859a50f92c6d5ad7c9ef7c2c060d164b3280f.png", + "aggregators": ["1inch", "LiFi", "Rango"], + "occurrences": 3 + }, + "0x78fb5e79d5cb59729d0cd72bea7879ad2683454d": { + "address": "0x78fb5e79d5cb59729d0cd72bea7879ad2683454d", + "symbol": "STATAETHUNI", + "decimals": 18, + "name": "Static Aave Ethereum UNI", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x78fb5e79d5cb59729d0cd72bea7879ad2683454d.png", + "aggregators": ["1inch", "LiFi", "Rango"], + "occurrences": 3 + }, + "0xaafd07d53a7365d3e9fb6f3a3b09ec19676b73ce": { + "address": "0xaafd07d53a7365d3e9fb6f3a3b09ec19676b73ce", + "symbol": "STKWAETHWETH.V1", + "decimals": 18, + "name": "Umbrella Stake Wrapped Aave Ethereum WETH v1", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xaafd07d53a7365d3e9fb6f3a3b09ec19676b73ce.png", + "aggregators": ["1inch", "LiFi", "Rango"], + "occurrences": 3 + }, + "0x32a6268f9ba3642dda7892add74f1d34469a4259": { + "address": "0x32a6268f9ba3642dda7892add74f1d34469a4259", + "symbol": "AETHUSDS", + "decimals": 18, + "name": "Aave Ethereum USDS", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x32a6268f9ba3642dda7892add74f1d34469a4259.png", + "aggregators": ["1inch", "LiFi", "Rango"], + "occurrences": 3 + }, + "0x4f5923fc5fd4a93352581b38b7cd26943012decf": { + "address": "0x4f5923fc5fd4a93352581b38b7cd26943012decf", + "symbol": "AETHUSDE", + "decimals": 18, + "name": "Aave Ethereum USDe", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x4f5923fc5fd4a93352581b38b7cd26943012decf.png", + "aggregators": ["1inch", "LiFi", "Rango"], + "occurrences": 3 + }, + "0x5f9d59db355b4a60501544637b00e94082ca575b": { + "address": "0x5f9d59db355b4a60501544637b00e94082ca575b", + "symbol": "WAETHUSDE", + "decimals": 18, + "name": "Wrapped Aave Ethereum USDe", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x5f9d59db355b4a60501544637b00e94082ca575b.png", + "aggregators": ["1inch", "LiFi", "Rango"], + "occurrences": 3 + }, + "0x46e5d6a33c8bd8ed38f3c95991c78c9b2ff3bc99": { + "address": "0x46e5d6a33c8bd8ed38f3c95991c78c9b2ff3bc99", + "symbol": "STATAETHUSDE", + "decimals": 18, + "name": "Static Aave Ethereum USDe", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x46e5d6a33c8bd8ed38f3c95991c78c9b2ff3bc99.png", + "aggregators": ["1inch", "LiFi", "Rango"], + "occurrences": 3 + }, + "0xfa82580c16a31d0c1bc632a36f82e83efef3eec0": { + "address": "0xfa82580c16a31d0c1bc632a36f82e83efef3eec0", + "symbol": "AETHRLUSD", + "decimals": 18, + "name": "Aave Ethereum RLUSD", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xfa82580c16a31d0c1bc632a36f82e83efef3eec0.png", + "aggregators": ["1inch", "LiFi", "Rango"], + "occurrences": 3 + }, + "0xb51edddd8c47856d81c8681ea71404cec93e92c6": { + "address": "0xb51edddd8c47856d81c8681ea71404cec93e92c6", + "symbol": "WAETHPYUSD", + "decimals": 6, + "name": "Wrapped Aave Ethereum PYUSD", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xb51edddd8c47856d81c8681ea71404cec93e92c6.png", + "aggregators": ["1inch", "LiFi", "Rango"], + "occurrences": 3 + }, + "0x6a1792a91c08e9f0bfe7a990871b786643237f0f": { + "address": "0x6a1792a91c08e9f0bfe7a990871b786643237f0f", + "symbol": "WAETHRLUSD", + "decimals": 18, + "name": "Wrapped Aave Ethereum RLUSD", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x6a1792a91c08e9f0bfe7a990871b786643237f0f.png", + "aggregators": ["1inch", "LiFi", "Rango"], + "occurrences": 3 + }, + "0xaecc217a749c2405b5ebc9857a16d58bdc1c367f": { + "address": "0xaecc217a749c2405b5ebc9857a16d58bdc1c367f", + "symbol": "PAWTH", + "decimals": 9, + "name": "Pawthereum", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xaecc217a749c2405b5ebc9857a16d58bdc1c367f.png", + "aggregators": ["1inch", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x2767c27eeaf3566082e74b963b6a0f5c9a46c8a1": { + "address": "0x2767c27eeaf3566082e74b963b6a0f5c9a46c8a1", + "symbol": "STATAETHENS", + "decimals": 18, + "name": "Static Aave Ethereum ENS", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x2767c27eeaf3566082e74b963b6a0f5c9a46c8a1.png", + "aggregators": ["1inch", "LiFi", "Rango"], + "occurrences": 3 + }, + "0xfa7e3571786ce9489bbc58d9cb8ece8aae6b56f3": { + "address": "0xfa7e3571786ce9489bbc58d9cb8ece8aae6b56f3", + "symbol": "STATAETHSDAI", + "decimals": 18, + "name": "Static Aave Ethereum sDAI", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xfa7e3571786ce9489bbc58d9cb8ece8aae6b56f3.png", + "aggregators": ["1inch", "LiFi", "Rango"], + "occurrences": 3 + }, + "0x1ea6e1ba21601258401d0b9db24ea0a07948458e": { + "address": "0x1ea6e1ba21601258401d0b9db24ea0a07948458e", + "symbol": "STATAETHLDO", + "decimals": 18, + "name": "Static Aave Ethereum LDO", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x1ea6e1ba21601258401d0b9db24ea0a07948458e.png", + "aggregators": ["1inch", "LiFi", "Rango"], + "occurrences": 3 + }, + "0xb490ff18e55b8881c9527fe7e358dd363780449f": { + "address": "0xb490ff18e55b8881c9527fe7e358dd363780449f", + "symbol": "STATAETH1INCH", + "decimals": 18, + "name": "Static Aave Ethereum 1INCH", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xb490ff18e55b8881c9527fe7e358dd363780449f.png", + "aggregators": ["1inch", "LiFi", "Rango"], + "occurrences": 3 + }, + "0x91ad1f5443cf356010d2171d6d26b11c309c4b16": { + "address": "0x91ad1f5443cf356010d2171d6d26b11c309c4b16", + "symbol": "WAETHRPL", + "decimals": 18, + "name": "Wrapped Aave Ethereum RPL", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x91ad1f5443cf356010d2171d6d26b11c309c4b16.png", + "aggregators": ["1inch", "LiFi", "Rango"], + "occurrences": 3 + }, + "0x867b0cdc4b39a19945e616c29639b0390b39db3b": { + "address": "0x867b0cdc4b39a19945e616c29639b0390b39db3b", + "symbol": "STATAETHWEETH", + "decimals": 18, + "name": "Static Aave Ethereum weETH", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x867b0cdc4b39a19945e616c29639b0390b39db3b.png", + "aggregators": ["1inch", "LiFi", "Rango"], + "occurrences": 3 + }, + "0x5caf5a86f39073637ac7c8a7b5290871de80cb9b": { + "address": "0x5caf5a86f39073637ac7c8a7b5290871de80cb9b", + "symbol": "WAETHDAI", + "decimals": 18, + "name": "Wrapped Aave Ethereum DAI", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x5caf5a86f39073637ac7c8a7b5290871de80cb9b.png", + "aggregators": ["1inch", "LiFi", "Rango"], + "occurrences": 3 + }, + "0xbb9bc244d798123fde783fcc1c72d3bb8c189413": { + "address": "0xbb9bc244d798123fde783fcc1c72d3bb8c189413", + "symbol": "THEDAO", + "decimals": 16, + "name": "\u0001", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xbb9bc244d798123fde783fcc1c72d3bb8c189413.png", + "aggregators": ["LiFi", "Socket", "Rango"], + "occurrences": 3 + }, + "0xe0cca86b254005889ac3a81e737f56a14f4a38f5": { + "address": "0xe0cca86b254005889ac3a81e737f56a14f4a38f5", + "symbol": "ALTA", + "decimals": 18, + "name": "Alta Finance", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xe0cca86b254005889ac3a81e737f56a14f4a38f5.png", + "aggregators": ["LiFi", "Rubic", "Bancor"], + "occurrences": 3 + }, + "0xb6c6920327b33f8eec26786c7462c5f4098d47e3": { + "address": "0xb6c6920327b33f8eec26786c7462c5f4098d47e3", + "symbol": "MINTY", + "decimals": 18, + "name": "Minty Art", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xb6c6920327b33f8eec26786c7462c5f4098d47e3.png", + "aggregators": ["LiFi", "Socket", "Rubic"], + "occurrences": 3 + }, + "0xdeeb6091a5adc78fa0332bee5a38a8908b6b566e": { + "address": "0xdeeb6091a5adc78fa0332bee5a38a8908b6b566e", + "symbol": "TAC", + "decimals": 18, + "name": "Taekwondo Access Credit", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xdeeb6091a5adc78fa0332bee5a38a8908b6b566e.png", + "aggregators": ["LiFi", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x6fcb6408499a7c0f242e32d77eb51ffa1dd28a7e": { + "address": "0x6fcb6408499a7c0f242e32d77eb51ffa1dd28a7e", + "symbol": "XHDX", + "decimals": 12, + "name": "xHDX", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x6fcb6408499a7c0f242e32d77eb51ffa1dd28a7e.png", + "aggregators": ["LiFi", "Socket", "Rubic"], + "occurrences": 3 + }, + "0x9b85babc0cc89899ccd47e9226a0b1fae577b19e": { + "address": "0x9b85babc0cc89899ccd47e9226a0b1fae577b19e", + "symbol": "PPB", + "decimals": 18, + "name": "PPB", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x9b85babc0cc89899ccd47e9226a0b1fae577b19e.png", + "aggregators": ["LiFi", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x3883f5e181fccaf8410fa61e12b59bad963fb645": { + "address": "0x3883f5e181fccaf8410fa61e12b59bad963fb645", + "symbol": "THETA", + "decimals": 18, + "name": "Theta Token", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x3883f5e181fccaf8410fa61e12b59bad963fb645.png", + "aggregators": ["LiFi", "Socket", "Rubic"], + "occurrences": 3 + }, + "0x4f81c790581b240a5c948afd173620ecc8c71c8d": { + "address": "0x4f81c790581b240a5c948afd173620ecc8c71c8d", + "symbol": "XDG", + "decimals": 18, + "name": "Decentral Games Governance", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x4f81c790581b240a5c948afd173620ecc8c71c8d.png", + "aggregators": ["LiFi", "Socket", "Rubic"], + "occurrences": 3 + }, + "0xbcd515d6c5de70d3a31d999a7fa6a299657de294": { + "address": "0xbcd515d6c5de70d3a31d999a7fa6a299657de294", + "symbol": "RICE", + "decimals": 18, + "name": "RICE", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xbcd515d6c5de70d3a31d999a7fa6a299657de294.png", + "aggregators": ["LiFi", "Rubic", "Rango"], + "occurrences": 3 + }, + "0xfb0bdc444c8ae7e9b5beea5e4d1e8de93879e487": { + "address": "0xfb0bdc444c8ae7e9b5beea5e4d1e8de93879e487", + "symbol": "SPRING", + "decimals": 18, + "name": "SPRING Token", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xfb0bdc444c8ae7e9b5beea5e4d1e8de93879e487.png", + "aggregators": ["LiFi", "Socket", "Rubic"], + "occurrences": 3 + }, + "0x3642c0680329ae3e103e2b5ab29ddfed4d43cbe5": { + "address": "0x3642c0680329ae3e103e2b5ab29ddfed4d43cbe5", + "symbol": "PL2", + "decimals": 18, + "name": "Plenny", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x3642c0680329ae3e103e2b5ab29ddfed4d43cbe5.png", + "aggregators": ["LiFi", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x7bec98609cb6378d6f995e8f8097ee78376fbec9": { + "address": "0x7bec98609cb6378d6f995e8f8097ee78376fbec9", + "symbol": "LM", + "decimals": 18, + "name": "LeisureMeta", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x7bec98609cb6378d6f995e8f8097ee78376fbec9.png", + "aggregators": ["LiFi", "Socket", "Rubic"], + "occurrences": 3 + }, + "0x7a4effd87c2f3c55ca251080b1343b605f327e3a": { + "address": "0x7a4effd87c2f3c55ca251080b1343b605f327e3a", + "symbol": "RSTETH", + "decimals": 18, + "name": "RSTETH", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x7a4effd87c2f3c55ca251080b1343b605f327e3a.png", + "aggregators": ["LiFi", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x6ef3d766dfe02dc4bf04aae9122eb9a0ded25615": { + "address": "0x6ef3d766dfe02dc4bf04aae9122eb9a0ded25615", + "symbol": "PRIMEETH", + "decimals": 18, + "name": "Prime Staked ETH", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x6ef3d766dfe02dc4bf04aae9122eb9a0ded25615.png", + "aggregators": ["LiFi", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x6619078bdd8324e01e9a8d4b3d761b050e5ecf06": { + "address": "0x6619078bdd8324e01e9a8d4b3d761b050e5ecf06", + "symbol": "MAL", + "decimals": 18, + "name": "My Alpha Leaderboard", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x6619078bdd8324e01e9a8d4b3d761b050e5ecf06.png", + "aggregators": ["LiFi", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x7d647b1a0dcd5525e9c6b3d14be58f27674f8c95": { + "address": "0x7d647b1a0dcd5525e9c6b3d14be58f27674f8c95", + "symbol": "BYTES", + "decimals": 18, + "name": "BYTES", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x7d647b1a0dcd5525e9c6b3d14be58f27674f8c95.png", + "aggregators": ["LiFi", "Socket", "Rubic"], + "occurrences": 3 + }, + "0x605d26fbd5be761089281d5cec2ce86eea667109": { + "address": "0x605d26fbd5be761089281d5cec2ce86eea667109", + "symbol": "DSU", + "decimals": 18, + "name": "Digital Standard Unit", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x605d26fbd5be761089281d5cec2ce86eea667109.png", + "aggregators": ["LiFi", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x4c327471c44b2dacd6e90525f9d629bd2e4f662c": { + "address": "0x4c327471c44b2dacd6e90525f9d629bd2e4f662c", + "symbol": "GHOST", + "decimals": 18, + "name": "GHOST", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x4c327471c44b2dacd6e90525f9d629bd2e4f662c.png", + "aggregators": ["LiFi", "Rubic", "Rango"], + "occurrences": 3 + }, + "0xd6929179d752d5d25c5efe2d9729eb77d7138a80": { + "address": "0xd6929179d752d5d25c5efe2d9729eb77d7138a80", + "symbol": "GOB", + "decimals": 18, + "name": "Goons of Balatroon", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xd6929179d752d5d25c5efe2d9729eb77d7138a80.png", + "aggregators": ["LiFi", "Socket", "Rubic"], + "occurrences": 3 + }, + "0xa8006c4ca56f24d6836727d106349320db7fef82": { + "address": "0xa8006c4ca56f24d6836727d106349320db7fef82", + "symbol": "INXT", + "decimals": 8, + "name": "Internxt", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xa8006c4ca56f24d6836727d106349320db7fef82.png", + "aggregators": ["LiFi", "Socket", "Rubic"], + "occurrences": 3 + }, + "0x7778360f035c589fce2f4ea5786cbd8b36e5396b": { + "address": "0x7778360f035c589fce2f4ea5786cbd8b36e5396b", + "symbol": "OOE", + "decimals": 18, + "name": "OpenOcean", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x7778360f035c589fce2f4ea5786cbd8b36e5396b.png", + "aggregators": ["LiFi", "Socket", "Rubic"], + "occurrences": 3 + }, + "0xf8a4a419c2d7140e49ef952a7e7ae1bd4a8b6b9c": { + "address": "0xf8a4a419c2d7140e49ef952a7e7ae1bd4a8b6b9c", + "symbol": "LITH", + "decimals": 18, + "name": "Lith Token", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xf8a4a419c2d7140e49ef952a7e7ae1bd4a8b6b9c.png", + "aggregators": ["LiFi", "Socket", "Rubic"], + "occurrences": 3 + }, + "0xb89903dde3899f0280b99913168ee833a7896b93": { + "address": "0xb89903dde3899f0280b99913168ee833a7896b93", + "symbol": "AWS", + "decimals": 18, + "name": "AurusSILVER", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xb89903dde3899f0280b99913168ee833a7896b93.png", + "aggregators": ["LiFi", "Socket", "Rubic"], + "occurrences": 3 + }, + "0xa0b93b9e90ab887e53f9fb8728c009746e989b53": { + "address": "0xa0b93b9e90ab887e53f9fb8728c009746e989b53", + "symbol": "TST", + "decimals": 18, + "name": "Standard Token", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xa0b93b9e90ab887e53f9fb8728c009746e989b53.png", + "aggregators": ["LiFi", "Socket", "Rubic"], + "occurrences": 3 + }, + "0xc86d054809623432210c107af2e3f619dcfbf652": { + "address": "0xc86d054809623432210c107af2e3f619dcfbf652", + "symbol": "UPP", + "decimals": 18, + "name": "SENTINEL PROTOCOL", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xc86d054809623432210c107af2e3f619dcfbf652.png", + "aggregators": ["LiFi", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x0000a1c00009a619684135b824ba02f7fbf3a572": { + "address": "0x0000a1c00009a619684135b824ba02f7fbf3a572", + "symbol": "ALCH", + "decimals": 18, + "name": "Alchemy", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x0000a1c00009a619684135b824ba02f7fbf3a572.png", + "aggregators": ["LiFi", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x7ff4169a6b5122b664c51c95727d87750ec07c84": { + "address": "0x7ff4169a6b5122b664c51c95727d87750ec07c84", + "symbol": "10SET", + "decimals": 18, + "name": "Tenset", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x7ff4169a6b5122b664c51c95727d87750ec07c84.png", + "aggregators": ["LiFi", "TrustWallet", "Rubic"], + "occurrences": 3 + }, + "0x420412e765bfa6d85aaac94b4f7b708c89be2e2b": { + "address": "0x420412e765bfa6d85aaac94b4f7b708c89be2e2b", + "symbol": "BRZ", + "decimals": 4, + "name": "BRZ", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x420412e765bfa6d85aaac94b4f7b708c89be2e2b.png", + "aggregators": ["LiFi", "Socket", "Rubic"], + "occurrences": 3 + }, + "0x08a75dbc7167714ceac1a8e43a8d643a4edd625a": { + "address": "0x08a75dbc7167714ceac1a8e43a8d643a4edd625a", + "symbol": "WILD", + "decimals": 18, + "name": "Wild Credit", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x08a75dbc7167714ceac1a8e43a8d643a4edd625a.png", + "aggregators": ["LiFi", "Socket", "Rubic"], + "occurrences": 3 + }, + "0x4a6ab9792e9f046c3ab22d8602450de5186be9a7": { + "address": "0x4a6ab9792e9f046c3ab22d8602450de5186be9a7", + "symbol": "POLVEN", + "decimals": 18, + "name": "POLVEN", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x4a6ab9792e9f046c3ab22d8602450de5186be9a7.png", + "aggregators": ["LiFi", "Socket", "Rubic"], + "occurrences": 3 + }, + "0xeea9ae787f3a620072d13b2cdc8cabffb9c0ab96": { + "address": "0xeea9ae787f3a620072d13b2cdc8cabffb9c0ab96", + "symbol": "YSEC", + "decimals": 18, + "name": "YearnSecure", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xeea9ae787f3a620072d13b2cdc8cabffb9c0ab96.png", + "aggregators": ["LiFi", "Rubic", "Rango"], + "occurrences": 3 + }, + "0xe4815ae53b124e7263f08dcdbbb757d41ed658c6": { + "address": "0xe4815ae53b124e7263f08dcdbbb757d41ed658c6", + "symbol": "ZKS", + "decimals": 18, + "name": "Zks", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xe4815ae53b124e7263f08dcdbbb757d41ed658c6.png", + "aggregators": ["LiFi", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x4efe8665e564bf454ccf5c90ee16817f7485d5cf": { + "address": "0x4efe8665e564bf454ccf5c90ee16817f7485d5cf", + "symbol": "BDT", + "decimals": 18, + "name": "BlackDragon Token", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x4efe8665e564bf454ccf5c90ee16817f7485d5cf.png", + "aggregators": ["LiFi", "Socket", "Rubic"], + "occurrences": 3 + }, + "0x4e568ab95f029e8df1e39b30c9d6d076eaa15945": { + "address": "0x4e568ab95f029e8df1e39b30c9d6d076eaa15945", + "symbol": "FLY", + "decimals": 18, + "name": "FlyCoin", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x4e568ab95f029e8df1e39b30c9d6d076eaa15945.png", + "aggregators": ["LiFi", "Socket", "Rubic"], + "occurrences": 3 + }, + "0x780116d91e5592e58a3b3c76a351571b39abcec6": { + "address": "0x780116d91e5592e58a3b3c76a351571b39abcec6", + "symbol": "BOXX", + "decimals": 15, + "name": "BOXX", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x780116d91e5592e58a3b3c76a351571b39abcec6.png", + "aggregators": ["LiFi", "Rubic", "Rango"], + "occurrences": 3 + }, + "0xc27a2f05fa577a83ba0fdb4c38443c0718356501": { + "address": "0xc27a2f05fa577a83ba0fdb4c38443c0718356501", + "symbol": "TAU", + "decimals": 18, + "name": "TAU", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xc27a2f05fa577a83ba0fdb4c38443c0718356501.png", + "aggregators": ["LiFi", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x06147110022b768ba8f99a8f385df11a151a9cc8": { + "address": "0x06147110022b768ba8f99a8f385df11a151a9cc8", + "symbol": "ACE", + "decimals": 0, + "name": "ACE", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x06147110022b768ba8f99a8f385df11a151a9cc8.png", + "aggregators": ["LiFi", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x068e3563b1c19590f822c0e13445c4fa1b9eefa5": { + "address": "0x068e3563b1c19590f822c0e13445c4fa1b9eefa5", + "symbol": "WUSD", + "decimals": 18, + "name": "Wrapped USD", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x068e3563b1c19590f822c0e13445c4fa1b9eefa5.png", + "aggregators": ["LiFi", "Rubic", "Rango"], + "occurrences": 3 + }, + "0xcbba83a4d3f35d294a26012ac54e9ab6627da018": { + "address": "0xcbba83a4d3f35d294a26012ac54e9ab6627da018", + "symbol": "ROAR", + "decimals": 18, + "name": "Roar Token", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xcbba83a4d3f35d294a26012ac54e9ab6627da018.png", + "aggregators": ["LiFi", "Socket", "Rubic"], + "occurrences": 3 + }, + "0x35ec69a77b79c255e5d47d5a3bdbefefe342630c": { + "address": "0x35ec69a77b79c255e5d47d5a3bdbefefe342630c", + "symbol": "YNLSDE", + "decimals": 18, + "name": "YieldNest Restaked LSD Eigenlayer", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x35ec69a77b79c255e5d47d5a3bdbefefe342630c.png", + "aggregators": ["LiFi", "Rubic", "Sonarwatch"], + "occurrences": 3 + }, + "0x3258cd8134b6b28e814772dd91d5ecceea512818": { + "address": "0x3258cd8134b6b28e814772dd91d5ecceea512818", + "symbol": "LAND", + "decimals": 18, + "name": "Land", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x3258cd8134b6b28e814772dd91d5ecceea512818.png", + "aggregators": ["LiFi", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x2369686fc9fb6e1fdc46541891568c2f341906ef": { + "address": "0x2369686fc9fb6e1fdc46541891568c2f341906ef", + "symbol": "DRK", + "decimals": 18, + "name": "Drakoin", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x2369686fc9fb6e1fdc46541891568c2f341906ef.png", + "aggregators": ["LiFi", "Socket", "Rubic"], + "occurrences": 3 + }, + "0x92ef4ffbfe0df030837b65d7fccfe1abd6549579": { + "address": "0x92ef4ffbfe0df030837b65d7fccfe1abd6549579", + "symbol": "SWG", + "decimals": 18, + "name": "SWG", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x92ef4ffbfe0df030837b65d7fccfe1abd6549579.png", + "aggregators": ["LiFi", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x6807d7f7df53b7739f6438eabd40ab8c262c0aa8": { + "address": "0x6807d7f7df53b7739f6438eabd40ab8c262c0aa8", + "symbol": "FORCE", + "decimals": 18, + "name": "FORCE", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x6807d7f7df53b7739f6438eabd40ab8c262c0aa8.png", + "aggregators": ["LiFi", "Socket", "Rubic"], + "occurrences": 3 + }, + "0xd41f3d112cb8695c7a8992e4055bd273f3ce8729": { + "address": "0xd41f3d112cb8695c7a8992e4055bd273f3ce8729", + "symbol": "SYNTH", + "decimals": 18, + "name": "Synth", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xd41f3d112cb8695c7a8992e4055bd273f3ce8729.png", + "aggregators": ["LiFi", "Socket", "Rango"], + "occurrences": 3 + }, + "0x1c79ab32c66acaa1e9e81952b8aaa581b43e54e7": { + "address": "0x1c79ab32c66acaa1e9e81952b8aaa581b43e54e7", + "symbol": "TEAM", + "decimals": 4, + "name": "TEAM", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x1c79ab32c66acaa1e9e81952b8aaa581b43e54e7.png", + "aggregators": ["LiFi", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x84cffa78b2fbbeec8c37391d2b12a04d2030845e": { + "address": "0x84cffa78b2fbbeec8c37391d2b12a04d2030845e", + "symbol": "DEFIT", + "decimals": 18, + "name": "DIGITAL FITNESS", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x84cffa78b2fbbeec8c37391d2b12a04d2030845e.png", + "aggregators": ["LiFi", "Rubic", "Bancor"], + "occurrences": 3 + }, + "0x46b2deae6eff3011008ea27ea36b7c27255ddfa9": { + "address": "0x46b2deae6eff3011008ea27ea36b7c27255ddfa9", + "symbol": "WETHDYDX", + "decimals": 18, + "name": "dYdX", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x46b2deae6eff3011008ea27ea36b7c27255ddfa9.png", + "aggregators": ["LiFi", "Rubic", "Rango"], + "occurrences": 3 + }, + "0xc8d9871a79551ab4439c9e08f12962e3785f0437": { + "address": "0xc8d9871a79551ab4439c9e08f12962e3785f0437", + "symbol": "COC", + "decimals": 18, + "name": "CryptoOracle Collective", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xc8d9871a79551ab4439c9e08f12962e3785f0437.png", + "aggregators": ["LiFi", "Socket", "Rango"], + "occurrences": 3 + }, + "0x0bfec35a1a3550deed3f6fc76dde7fc412729a91": { + "address": "0x0bfec35a1a3550deed3f6fc76dde7fc412729a91", + "symbol": "XKNCA", + "decimals": 18, + "name": "xKNC", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x0bfec35a1a3550deed3f6fc76dde7fc412729a91.png", + "aggregators": ["LiFi", "Rubic", "Rango"], + "occurrences": 3 + }, + "0xe3cb486f3f5c639e98ccbaf57d95369375687f80": { + "address": "0xe3cb486f3f5c639e98ccbaf57d95369375687f80", + "symbol": "RENDGB", + "decimals": 8, + "name": "renDGB", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xe3cb486f3f5c639e98ccbaf57d95369375687f80.png", + "aggregators": ["LiFi", "Rango", "SushiSwap"], + "occurrences": 3 + }, + "0x87761e886399ef8e1624cb0db3230b075a322c88": { + "address": "0x87761e886399ef8e1624cb0db3230b075a322c88", + "symbol": "CBK", + "decimals": 18, + "name": "Crossing the Yellow Blocks", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x87761e886399ef8e1624cb0db3230b075a322c88.png", + "aggregators": ["LiFi", "Socket", "Rubic"], + "occurrences": 3 + }, + "0xe4fa3c576c31696322e8d7165c5965d5a1f6a1a5": { + "address": "0xe4fa3c576c31696322e8d7165c5965d5a1f6a1a5", + "symbol": "GFX", + "decimals": 18, + "name": "GamyFi", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xe4fa3c576c31696322e8d7165c5965d5a1f6a1a5.png", + "aggregators": ["LiFi", "Socket", "Rubic"], + "occurrences": 3 + }, + "0x94ca37d108e89775dc8ae65f51ae28c2d9599f9a": { + "address": "0x94ca37d108e89775dc8ae65f51ae28c2d9599f9a", + "symbol": "CRTS", + "decimals": 9, + "name": "Cryptotipsfr Token V2", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x94ca37d108e89775dc8ae65f51ae28c2d9599f9a.png", + "aggregators": ["LiFi", "Socket", "Rubic"], + "occurrences": 3 + }, + "0x25377ddb16c79c93b0cbf46809c8de8765f03fcd": { + "address": "0x25377ddb16c79c93b0cbf46809c8de8765f03fcd", + "symbol": "SBREE", + "decimals": 18, + "name": "SBREE", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x25377ddb16c79c93b0cbf46809c8de8765f03fcd.png", + "aggregators": ["LiFi", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x04ab43d32d0172c76f5287b6619f0aa50af89303": { + "address": "0x04ab43d32d0172c76f5287b6619f0aa50af89303", + "symbol": "UNL", + "decimals": 18, + "name": "unilock.network", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x04ab43d32d0172c76f5287b6619f0aa50af89303.png", + "aggregators": ["LiFi", "Socket", "Rubic"], + "occurrences": 3 + }, + "0xf83ae621a52737e3ef9307af91df834ed8431ac3": { + "address": "0xf83ae621a52737e3ef9307af91df834ed8431ac3", + "symbol": "UVWFI", + "decimals": 18, + "name": "UVWFI", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xf83ae621a52737e3ef9307af91df834ed8431ac3.png", + "aggregators": ["LiFi", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x11b0a8c0fa626627601ed518c3538a39d92d609e": { + "address": "0x11b0a8c0fa626627601ed518c3538a39d92d609e", + "symbol": "YGY", + "decimals": 6, + "name": "Generation of Yield", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x11b0a8c0fa626627601ed518c3538a39d92d609e.png", + "aggregators": ["LiFi", "Socket", "Rubic"], + "occurrences": 3 + }, + "0x77f973fcaf871459aa58cd81881ce453759281bc": { + "address": "0x77f973fcaf871459aa58cd81881ce453759281bc", + "symbol": "IETH", + "decimals": 18, + "name": "IETH", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x77f973fcaf871459aa58cd81881ce453759281bc.png", + "aggregators": ["LiFi", "Rubic", "Rango"], + "occurrences": 3 + }, + "0xeb9951021698b42e4399f9cbb6267aa35f82d59d": { + "address": "0xeb9951021698b42e4399f9cbb6267aa35f82d59d", + "symbol": "0", + "decimals": 0, + "name": "0", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xeb9951021698b42e4399f9cbb6267aa35f82d59d.png", + "aggregators": ["LiFi", "Socket", "Rubic"], + "occurrences": 3 + }, + "0x69000405f9dce69bd4cbf4f2865b79144a69bfe0": { + "address": "0x69000405f9dce69bd4cbf4f2865b79144a69bfe0", + "symbol": "USDZ", + "decimals": 18, + "name": "ZAI Stablecoin", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x69000405f9dce69bd4cbf4f2865b79144a69bfe0.png", + "aggregators": ["LiFi", "Rubic", "Rango"], + "occurrences": 3 + }, + "0xbeef69ac7870777598a04b2bd4771c71212e6abc": { + "address": "0xbeef69ac7870777598a04b2bd4771c71212e6abc", + "symbol": "STEAKLRT", + "decimals": 18, + "name": "Steakhouse Resteaking Vault", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xbeef69ac7870777598a04b2bd4771c71212e6abc.png", + "aggregators": ["LiFi", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x4c406c068106375724275cbff028770c544a1333": { + "address": "0x4c406c068106375724275cbff028770c544a1333", + "symbol": "SCWETHV2", + "decimals": 18, + "name": "Sandclock WETH Vault v2", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x4c406c068106375724275cbff028770c544a1333.png", + "aggregators": ["LiFi", "Socket", "Rango"], + "occurrences": 3 + }, + "0xb986f3a2d91d3704dc974a24fb735dcc5e3c1e70": { + "address": "0xb986f3a2d91d3704dc974a24fb735dcc5e3c1e70", + "symbol": "EUX", + "decimals": 18, + "name": "dForce EUR", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xb986f3a2d91d3704dc974a24fb735dcc5e3c1e70.png", + "aggregators": ["LiFi", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x442b153f6f61c0c99a33aa4170dcb31e1abda1d0": { + "address": "0x442b153f6f61c0c99a33aa4170dcb31e1abda1d0", + "symbol": "AVA", + "decimals": 18, + "name": "Travala.com Token", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x442b153f6f61c0c99a33aa4170dcb31e1abda1d0.png", + "aggregators": ["LiFi", "Socket", "Rubic"], + "occurrences": 3 + }, + "0x6a4ffaafa8dd400676df8076ad6c724867b0e2e8": { + "address": "0x6a4ffaafa8dd400676df8076ad6c724867b0e2e8", + "symbol": "BDAI", + "decimals": 18, + "name": "BDAI", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x6a4ffaafa8dd400676df8076ad6c724867b0e2e8.png", + "aggregators": ["LiFi", "Rubic", "Rango"], + "occurrences": 3 + }, + "0xa18a0be599366c8e2ffffd83a2418a3ccb825d7f": { + "address": "0xa18a0be599366c8e2ffffd83a2418a3ccb825d7f", + "symbol": "SONG", + "decimals": 18, + "name": "Beatify", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xa18a0be599366c8e2ffffd83a2418a3ccb825d7f.png", + "aggregators": ["LiFi", "Socket", "Rubic"], + "occurrences": 3 + }, + "0x5c20b550819128074fd538edf79791733ccedd18": { + "address": "0x5c20b550819128074fd538edf79791733ccedd18", + "symbol": "FUSDT", + "decimals": 6, + "name": "Fluid Tether USD", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x5c20b550819128074fd538edf79791733ccedd18.png", + "aggregators": ["LiFi", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x9fb7b4477576fe5b32be4c1843afb1e55f251b33": { + "address": "0x9fb7b4477576fe5b32be4c1843afb1e55f251b33", + "symbol": "FUSDC", + "decimals": 6, + "name": "Fluid USD Coin", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x9fb7b4477576fe5b32be4c1843afb1e55f251b33.png", + "aggregators": ["LiFi", "Rubic", "Rango"], + "occurrences": 3 + }, + "0xc4506022fb8090774e8a628d5084eed61d9b99ee": { + "address": "0xc4506022fb8090774e8a628d5084eed61d9b99ee", + "symbol": "HYETH", + "decimals": 18, + "name": "High Yield ETH Index", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xc4506022fb8090774e8a628d5084eed61d9b99ee.png", + "aggregators": ["LiFi", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x0ecdd783dc7bf820614044b51862ed29714d2ba5": { + "address": "0x0ecdd783dc7bf820614044b51862ed29714d2ba5", + "symbol": "MDZA", + "decimals": 18, + "name": "MEDOOZA Ecosystem v20", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x0ecdd783dc7bf820614044b51862ed29714d2ba5.png", + "aggregators": ["LiFi", "Rubic", "Bancor"], + "occurrences": 3 + }, + "0x29502fe4d233ef0b45c3647101fa1252ce0634bd": { + "address": "0x29502fe4d233ef0b45c3647101fa1252ce0634bd", + "symbol": "FROGE", + "decimals": 9, + "name": "Froge Finance", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x29502fe4d233ef0b45c3647101fa1252ce0634bd.png", + "aggregators": ["TrustWallet", "Socket", "Rubic"], + "occurrences": 3 + }, + "0x9d7b68970d2be6dc93124477b4e2e1c9a6b180aa": { + "address": "0x9d7b68970d2be6dc93124477b4e2e1c9a6b180aa", + "symbol": "DEDE", + "decimals": 9, + "name": "Dede", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x9d7b68970d2be6dc93124477b4e2e1c9a6b180aa.png", + "aggregators": ["Socket", "Rubic", "Rango"], + "occurrences": 3 + }, + "0xfc2189d367d8d3d7cca1af43ff6169197dc7351e": { + "address": "0xfc2189d367d8d3d7cca1af43ff6169197dc7351e", + "symbol": "CHI", + "decimals": 18, + "name": "Chi USD", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xfc2189d367d8d3d7cca1af43ff6169197dc7351e.png", + "aggregators": ["Socket", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x5fc429110a64bc51b57ca86dce1714fd0fbec303": { + "address": "0x5fc429110a64bc51b57ca86dce1714fd0fbec303", + "symbol": "DAPP", + "decimals": 18, + "name": "Pencils Protocol", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x5fc429110a64bc51b57ca86dce1714fd0fbec303.png", + "aggregators": ["Socket", "Rubic", "Sonarwatch"], + "occurrences": 3 + }, + "0x18fa05ee5e478eed8925946abb41d09aec5d34d6": { + "address": "0x18fa05ee5e478eed8925946abb41d09aec5d34d6", + "symbol": "PUFF", + "decimals": 18, + "name": "Puff", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x18fa05ee5e478eed8925946abb41d09aec5d34d6.png", + "aggregators": ["Socket", "Rubic", "Rango"], + "occurrences": 3 + }, + "0xd2aee1ce2b4459de326971de036e82f1318270af": { + "address": "0xd2aee1ce2b4459de326971de036e82f1318270af", + "symbol": "21DOGE", + "decimals": 8, + "name": "21.co Wrapped Dogecoin", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xd2aee1ce2b4459de326971de036e82f1318270af.png", + "aggregators": ["Socket", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x91b08f4a7c1251dfccf5440f8894f8daa10c8de5": { + "address": "0x91b08f4a7c1251dfccf5440f8894f8daa10c8de5", + "symbol": "BAXA", + "decimals": 18, + "name": "BAXagent Coin", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x91b08f4a7c1251dfccf5440f8894f8daa10c8de5.png", + "aggregators": ["Socket", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x102e941b77bcaa7e35d368cafe51ef8f79c8d1ef": { + "address": "0x102e941b77bcaa7e35d368cafe51ef8f79c8d1ef", + "symbol": "LIZ", + "decimals": 18, + "name": "Theranos Coin", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x102e941b77bcaa7e35d368cafe51ef8f79c8d1ef.png", + "aggregators": ["Socket", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x3650b69f86cb593f116e276c30666834336c0647": { + "address": "0x3650b69f86cb593f116e276c30666834336c0647", + "symbol": "LPF", + "decimals": 18, + "name": "Loopfi", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x3650b69f86cb593f116e276c30666834336c0647.png", + "aggregators": ["Socket", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x1351986732367ff6b51784c6a75f63502de13a9a": { + "address": "0x1351986732367ff6b51784c6a75f63502de13a9a", + "symbol": "MOM", + "decimals": 18, + "name": "Monetum", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x1351986732367ff6b51784c6a75f63502de13a9a.png", + "aggregators": ["Socket", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x07fa101efde726e0956edd2c4d5c8d3d1a5e9c53": { + "address": "0x07fa101efde726e0956edd2c4d5c8d3d1a5e9c53", + "symbol": "RFWSTETH", + "decimals": 18, + "name": "Respawn Finance Wrapped Staked Ethereum", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x07fa101efde726e0956edd2c4d5c8d3d1a5e9c53.png", + "aggregators": ["Socket", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x6789d8a7a7871923fc6430432a602879ecb6520a": { + "address": "0x6789d8a7a7871923fc6430432a602879ecb6520a", + "symbol": "VEKWENTA", + "decimals": 18, + "name": "veKwenta", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x6789d8a7a7871923fc6430432a602879ecb6520a.png", + "aggregators": ["Socket", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x32ea3dc70e2962334864a9665254d2433e4ddbfd": { + "address": "0x32ea3dc70e2962334864a9665254d2433e4ddbfd", + "symbol": "SPN", + "decimals": 18, + "name": "Sportzchain", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x32ea3dc70e2962334864a9665254d2433e4ddbfd.png", + "aggregators": ["Socket", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x38c2a4a7330b22788374b8ff70bba513c8d848ca": { + "address": "0x38c2a4a7330b22788374b8ff70bba513c8d848ca", + "symbol": "TRUF", + "decimals": 18, + "name": "Truflation", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x38c2a4a7330b22788374b8ff70bba513c8d848ca.png", + "aggregators": ["Socket", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x1e87d63d11d1c16052bbca06d43ba4ceb4ee686c": { + "address": "0x1e87d63d11d1c16052bbca06d43ba4ceb4ee686c", + "symbol": "BRC20", + "decimals": 9, + "name": "BRC20", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x1e87d63d11d1c16052bbca06d43ba4ceb4ee686c.png", + "aggregators": ["Socket", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x24ec2ca132abf8f6f8a6e24a1b97943e31f256a7": { + "address": "0x24ec2ca132abf8f6f8a6e24a1b97943e31f256a7", + "symbol": "MOOV", + "decimals": 18, + "name": "MOOV", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x24ec2ca132abf8f6f8a6e24a1b97943e31f256a7.png", + "aggregators": ["Socket", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x6a7eff1e2c355ad6eb91bebb5ded49257f3fed98": { + "address": "0x6a7eff1e2c355ad6eb91bebb5ded49257f3fed98", + "symbol": "OPSEC", + "decimals": 18, + "name": "OpSec", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x6a7eff1e2c355ad6eb91bebb5ded49257f3fed98.png", + "aggregators": ["Socket", "Rubic", "Rango"], + "occurrences": 3 + }, + "0xdc247546a6551117c8ea82db2cc0ad6e048e5f6e": { + "address": "0xdc247546a6551117c8ea82db2cc0ad6e048e5f6e", + "symbol": "LUSH", + "decimals": 18, + "name": "Lush AI", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xdc247546a6551117c8ea82db2cc0ad6e048e5f6e.png", + "aggregators": ["Socket", "Rubic", "Rango"], + "occurrences": 3 + }, + "0xe1cad79759243934db8e36c605261f37f9b141bd": { + "address": "0xe1cad79759243934db8e36c605261f37f9b141bd", + "symbol": "PCH", + "decimals": 18, + "name": "Peach", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xe1cad79759243934db8e36c605261f37f9b141bd.png", + "aggregators": ["Socket", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x2f4eb21acd80a596bcca596ab40bad928f5d2bcf": { + "address": "0x2f4eb21acd80a596bcca596ab40bad928f5d2bcf", + "symbol": "BEANS", + "decimals": 18, + "name": "Dancing Beans", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x2f4eb21acd80a596bcca596ab40bad928f5d2bcf.png", + "aggregators": ["Socket", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x73454acfddb7a36a3cd8eb171fbea86c6a55e550": { + "address": "0x73454acfddb7a36a3cd8eb171fbea86c6a55e550", + "symbol": "BUILD", + "decimals": 9, + "name": "BuildAI", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x73454acfddb7a36a3cd8eb171fbea86c6a55e550.png", + "aggregators": ["Socket", "Rubic", "Rango"], + "occurrences": 3 + }, + "0xf161cdb9aa33b2f48be273dae3f3bbb2330ad3e5": { + "address": "0xf161cdb9aa33b2f48be273dae3f3bbb2330ad3e5", + "symbol": "AZUR", + "decimals": 18, + "name": "AZUR Token", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xf161cdb9aa33b2f48be273dae3f3bbb2330ad3e5.png", + "aggregators": ["Socket", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x66d28cb58487a7609877550e1a34691810a6b9fc": { + "address": "0x66d28cb58487a7609877550e1a34691810a6b9fc", + "symbol": "KOIN", + "decimals": 8, + "name": "Koinos", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x66d28cb58487a7609877550e1a34691810a6b9fc.png", + "aggregators": ["Socket", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x571e21a545842c6ce596663cda5caa8196ac1c7a": { + "address": "0x571e21a545842c6ce596663cda5caa8196ac1c7a", + "symbol": "CHAMPZ", + "decimals": 8, + "name": "Champignons of Arborethia", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x571e21a545842c6ce596663cda5caa8196ac1c7a.png", + "aggregators": ["Socket", "Rubic", "Rango"], + "occurrences": 3 + }, + "0xf05897cfe3ce9bbbfe0751cbe6b1b2c686848dcb": { + "address": "0xf05897cfe3ce9bbbfe0751cbe6b1b2c686848dcb", + "symbol": "CATE", + "decimals": 9, + "name": "Catecoin", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xf05897cfe3ce9bbbfe0751cbe6b1b2c686848dcb.png", + "aggregators": ["Socket", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x9fd5555d0360adc2b5d92179e9bc36802bba8621": { + "address": "0x9fd5555d0360adc2b5d92179e9bc36802bba8621", + "symbol": "APES", + "decimals": 18, + "name": "APES", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x9fd5555d0360adc2b5d92179e9bc36802bba8621.png", + "aggregators": ["Socket", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x50b275a15e4f5004aa96f972a30e6a9c718b203f": { + "address": "0x50b275a15e4f5004aa96f972a30e6a9c718b203f", + "symbol": "WSTOR", + "decimals": 18, + "name": "StorageChain", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x50b275a15e4f5004aa96f972a30e6a9c718b203f.png", + "aggregators": ["Socket", "Rubic", "Rango"], + "occurrences": 3 + }, + "0xf1102d6d2a531124fa043d18a06c394a81aaa866": { + "address": "0xf1102d6d2a531124fa043d18a06c394a81aaa866", + "symbol": "SHIBC", + "decimals": 18, + "name": "Shiba Inu Classic", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xf1102d6d2a531124fa043d18a06c394a81aaa866.png", + "aggregators": ["Socket", "Rubic", "Rango"], + "occurrences": 3 + }, + "0xf2041be4ea84599818799eed882389a8a30d2226": { + "address": "0xf2041be4ea84599818799eed882389a8a30d2226", + "symbol": "NEURAL", + "decimals": 9, + "name": "NEURAL", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xf2041be4ea84599818799eed882389a8a30d2226.png", + "aggregators": ["Socket", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x1a59eec501745ad6bdfc37558ddacb38ca5a8c48": { + "address": "0x1a59eec501745ad6bdfc37558ddacb38ca5a8c48", + "symbol": "COSMIC", + "decimals": 18, + "name": "Cosmic", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x1a59eec501745ad6bdfc37558ddacb38ca5a8c48.png", + "aggregators": ["Socket", "Rubic", "Rango"], + "occurrences": 3 + }, + "0xfeea0bdd3d07eb6fe305938878c0cadbfa169042": { + "address": "0xfeea0bdd3d07eb6fe305938878c0cadbfa169042", + "symbol": "8PAY", + "decimals": 18, + "name": "8PAY", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xfeea0bdd3d07eb6fe305938878c0cadbfa169042.png", + "aggregators": ["Socket", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x6bdde71cf0c751eb6d5edb8418e43d3d9427e436": { + "address": "0x6bdde71cf0c751eb6d5edb8418e43d3d9427e436", + "symbol": "BTREE", + "decimals": 18, + "name": "BTREE", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x6bdde71cf0c751eb6d5edb8418e43d3d9427e436.png", + "aggregators": ["Socket", "Rubic", "Rango"], + "occurrences": 3 + }, + "0xbb9fd9fa4863c03c574007ff3370787b9ce65ff6": { + "address": "0xbb9fd9fa4863c03c574007ff3370787b9ce65ff6", + "symbol": "HILO", + "decimals": 18, + "name": "HILO", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xbb9fd9fa4863c03c574007ff3370787b9ce65ff6.png", + "aggregators": ["Socket", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x966f17cd63c93c39f38897e5c633e59cef0591f1": { + "address": "0x966f17cd63c93c39f38897e5c633e59cef0591f1", + "symbol": "BOME", + "decimals": 6, + "name": "BOOK OF MEME", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x966f17cd63c93c39f38897e5c633e59cef0591f1.png", + "aggregators": ["Socket", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x9ca98c8b217c3b45074834908555d36af2ac6449": { + "address": "0x9ca98c8b217c3b45074834908555d36af2ac6449", + "symbol": "SABR", + "decimals": 18, + "name": "SatsBridge", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x9ca98c8b217c3b45074834908555d36af2ac6449.png", + "aggregators": ["Socket", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x6f91d21de4e40b3b80636b6b3ba425b636b798cf": { + "address": "0x6f91d21de4e40b3b80636b6b3ba425b636b798cf", + "symbol": "WSB", + "decimals": 9, + "name": "Wall Street Bets", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x6f91d21de4e40b3b80636b6b3ba425b636b798cf.png", + "aggregators": ["Socket", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x390e61f798267fe7aa9bbe61be8bb1776250d44c": { + "address": "0x390e61f798267fe7aa9bbe61be8bb1776250d44c", + "symbol": "T2T2", + "decimals": 18, + "name": "T2T2", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x390e61f798267fe7aa9bbe61be8bb1776250d44c.png", + "aggregators": ["Socket", "Rubic", "Rango"], + "occurrences": 3 + }, + "0xe2353069f71a27bbbe66eeabff05de109c7d5e19": { + "address": "0xe2353069f71a27bbbe66eeabff05de109c7d5e19", + "symbol": "SEED", + "decimals": 18, + "name": "Bonsai3", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xe2353069f71a27bbbe66eeabff05de109c7d5e19.png", + "aggregators": ["Socket", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x8e81d527f8fa05d82c514401c8144275174557cd": { + "address": "0x8e81d527f8fa05d82c514401c8144275174557cd", + "symbol": "CCB", + "decimals": 18, + "name": "鸡鸡币", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x8e81d527f8fa05d82c514401c8144275174557cd.png", + "aggregators": ["Socket", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x266b4d1c60634c5ab2b9f5117888a4850d87c4c0": { + "address": "0x266b4d1c60634c5ab2b9f5117888a4850d87c4c0", + "symbol": "SSAI", + "decimals": 18, + "name": "Shelter Secure AI", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x266b4d1c60634c5ab2b9f5117888a4850d87c4c0.png", + "aggregators": ["Socket", "Rubic", "Rango"], + "occurrences": 3 + }, + "0xf97b5aa4593c333fd2451bd85085a14720aa2a4f": { + "address": "0xf97b5aa4593c333fd2451bd85085a14720aa2a4f", + "symbol": "TALK", + "decimals": 18, + "name": "Talk AI", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xf97b5aa4593c333fd2451bd85085a14720aa2a4f.png", + "aggregators": ["Socket", "Rubic", "Rango"], + "occurrences": 3 + }, + "0xc60a9145d9e9f1152218e7da6df634b7a74ae444": { + "address": "0xc60a9145d9e9f1152218e7da6df634b7a74ae444", + "symbol": "CGETHHASHKEY", + "decimals": 18, + "name": "cgETH Hashkey Cloud", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xc60a9145d9e9f1152218e7da6df634b7a74ae444.png", + "aggregators": ["Rubic", "Rango", "Sonarwatch"], + "occurrences": 3 + }, + "0xba7970f10d9f0531941dced1dda7ef3016b24e5b": { + "address": "0xba7970f10d9f0531941dced1dda7ef3016b24e5b", + "symbol": "BGLD", + "decimals": 18, + "name": "Based Gold", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xba7970f10d9f0531941dced1dda7ef3016b24e5b.png", + "aggregators": ["Rubic", "Rango", "SushiSwap"], + "occurrences": 3 + }, + "0x1ed5cf624240296d941796970ac745bc24bd4a06": { + "address": "0x1ed5cf624240296d941796970ac745bc24bd4a06", + "symbol": "POSHI", + "decimals": 18, + "name": "Poshi World", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x1ed5cf624240296d941796970ac745bc24bd4a06.png", + "aggregators": ["Rubic", "Rango", "Sonarwatch"], + "occurrences": 3 + }, + "0x36905fc93280f52362a1cbab151f25dc46742fb5": { + "address": "0x36905fc93280f52362a1cbab151f25dc46742fb5", + "symbol": "BTO", + "decimals": 18, + "name": "Bottos", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x36905fc93280f52362a1cbab151f25dc46742fb5.png", + "aggregators": ["Rubic", "Rango", "Sonarwatch"], + "occurrences": 3 + }, + "0x210028b5a1e9effb93ce31006a18629f31131093": { + "address": "0x210028b5a1e9effb93ce31006a18629f31131093", + "symbol": "BLK", + "decimals": 9, + "name": "BLK2100", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x210028b5a1e9effb93ce31006a18629f31131093.png", + "aggregators": ["Rubic", "Rango", "Sonarwatch"], + "occurrences": 3 + }, + "0x8eb94a06b4716093dbfe335cbdb098deb2dcde1b": { + "address": "0x8eb94a06b4716093dbfe335cbdb098deb2dcde1b", + "symbol": "SHIB05", + "decimals": 18, + "name": "Half Shiba Inu", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x8eb94a06b4716093dbfe335cbdb098deb2dcde1b.png", + "aggregators": ["Rubic", "Rango", "Sonarwatch"], + "occurrences": 3 + }, + "0xd2b69d3518c3820e97ea910a4a22d699a6c39272": { + "address": "0xd2b69d3518c3820e97ea910a4a22d699a6c39272", + "symbol": "CHICKENUS", + "decimals": 9, + "name": "Chickenus Maximus", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xd2b69d3518c3820e97ea910a4a22d699a6c39272.png", + "aggregators": ["Rubic", "Rango", "Sonarwatch"], + "occurrences": 3 + }, + "0x42a7797351dfd281a80807196c8508eb70bb2af9": { + "address": "0x42a7797351dfd281a80807196c8508eb70bb2af9", + "symbol": "AIS", + "decimals": 18, + "name": "AISociety", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x42a7797351dfd281a80807196c8508eb70bb2af9.png", + "aggregators": ["Rubic", "Rango", "Sonarwatch"], + "occurrences": 3 + }, + "0xf90924b4064d88fdf9189d6ffd737ed85c01b9b7": { + "address": "0xf90924b4064d88fdf9189d6ffd737ed85c01b9b7", + "symbol": "GFN", + "decimals": 18, + "name": "GameFinity", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xf90924b4064d88fdf9189d6ffd737ed85c01b9b7.png", + "aggregators": ["Rubic", "Rango", "Sonarwatch"], + "occurrences": 3 + }, + "0x2e5d4e2a2336045471bfe446caa407f0c3a2419c": { + "address": "0x2e5d4e2a2336045471bfe446caa407f0c3a2419c", + "symbol": "RSVUSDT", + "decimals": 6, + "name": "RedSonic Vault Tether USD", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x2e5d4e2a2336045471bfe446caa407f0c3a2419c.png", + "aggregators": ["Rubic", "Rango", "Sonarwatch"], + "occurrences": 3 + }, + "0xbb6cf73a00f480d0951ba979a7606857cdde626b": { + "address": "0xbb6cf73a00f480d0951ba979a7606857cdde626b", + "symbol": "ARIX", + "decimals": 18, + "name": "Arix", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xbb6cf73a00f480d0951ba979a7606857cdde626b.png", + "aggregators": ["Rubic", "Rango", "Sonarwatch"], + "occurrences": 3 + }, + "0x686d1596e5632fe0471961e7977e8efe371b0b21": { + "address": "0x686d1596e5632fe0471961e7977e8efe371b0b21", + "symbol": "AZEE", + "decimals": 18, + "name": "SurrealVerse", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x686d1596e5632fe0471961e7977e8efe371b0b21.png", + "aggregators": ["Rubic", "Rango", "Sonarwatch"], + "occurrences": 3 + }, + "0x3973c606b493eee0e14b2b5654d5c4049ce9c2d9": { + "address": "0x3973c606b493eee0e14b2b5654d5c4049ce9c2d9", + "symbol": "BITG", + "decimals": 18, + "name": "BitGate", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x3973c606b493eee0e14b2b5654d5c4049ce9c2d9.png", + "aggregators": ["Rubic", "Rango", "Sonarwatch"], + "occurrences": 3 + }, + "0xff9c1f21c621696c4f91cf781ec31bd913ee2c26": { + "address": "0xff9c1f21c621696c4f91cf781ec31bd913ee2c26", + "symbol": "COM", + "decimals": 18, + "name": "com Ordinals", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xff9c1f21c621696c4f91cf781ec31bd913ee2c26.png", + "aggregators": ["Rubic", "Rango", "Sonarwatch"], + "occurrences": 3 + }, + "0x76fca1adb104770b38581b64d55e67fa5a0f3966": { + "address": "0x76fca1adb104770b38581b64d55e67fa5a0f3966", + "symbol": "ZKT", + "decimals": 9, + "name": "ZkTsunami", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x76fca1adb104770b38581b64d55e67fa5a0f3966.png", + "aggregators": ["Rubic", "Rango", "Sonarwatch"], + "occurrences": 3 + }, + "0x1bd9abf284e893705104e64b564b414620b722f1": { + "address": "0x1bd9abf284e893705104e64b564b414620b722f1", + "symbol": "ACM", + "decimals": 18, + "name": "acmFinance", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x1bd9abf284e893705104e64b564b414620b722f1.png", + "aggregators": ["Rubic", "Rango", "Sonarwatch"], + "occurrences": 3 + }, + "0x565d3902d6a5a2d5ce28ff427423e88933334dd2": { + "address": "0x565d3902d6a5a2d5ce28ff427423e88933334dd2", + "symbol": "ADULT", + "decimals": 18, + "name": "Adult Playground", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x565d3902d6a5a2d5ce28ff427423e88933334dd2.png", + "aggregators": ["Rubic", "Rango", "Sonarwatch"], + "occurrences": 3 + }, + "0x56528c1df17fd5451451eb6efde297758bc8f9a1": { + "address": "0x56528c1df17fd5451451eb6efde297758bc8f9a1", + "symbol": "AFS", + "decimals": 0, + "name": "Aktionariat Alan Frei Company Tokenized", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x56528c1df17fd5451451eb6efde297758bc8f9a1.png", + "aggregators": ["Rubic", "Rango", "Sonarwatch"], + "occurrences": 3 + }, + "0x9d1a74967eca155782edf8e84782c74db33fc499": { + "address": "0x9d1a74967eca155782edf8e84782c74db33fc499", + "symbol": "AICOM", + "decimals": 9, + "name": "AI COM", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x9d1a74967eca155782edf8e84782c74db33fc499.png", + "aggregators": ["Rubic", "Rango", "Sonarwatch"], + "occurrences": 3 + }, + "0x24bff4fe25b5807bad49b2c08d79bb271766e68a": { + "address": "0x24bff4fe25b5807bad49b2c08d79bb271766e68a", + "symbol": "ALEA", + "decimals": 18, + "name": "Alea", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x24bff4fe25b5807bad49b2c08d79bb271766e68a.png", + "aggregators": ["Rubic", "Rango", "Sonarwatch"], + "occurrences": 3 + }, + "0xf2cdf38e24738ba379ffa38d47bc88a941df5627": { + "address": "0xf2cdf38e24738ba379ffa38d47bc88a941df5627", + "symbol": "ALY", + "decimals": 2, + "name": "Ally", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xf2cdf38e24738ba379ffa38d47bc88a941df5627.png", + "aggregators": ["Rubic", "Rango", "Sonarwatch"], + "occurrences": 3 + }, + "0xca6e4ac78cd8f0226faeabf3b1a3500af2ebff2b": { + "address": "0xca6e4ac78cd8f0226faeabf3b1a3500af2ebff2b", + "symbol": "ART", + "decimals": 18, + "name": "Genify ART", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xca6e4ac78cd8f0226faeabf3b1a3500af2ebff2b.png", + "aggregators": ["Rubic", "Rango", "Sonarwatch"], + "occurrences": 3 + }, + "0xa20f77b7ad5a88badc48800c56507b7274c06fdc": { + "address": "0xa20f77b7ad5a88badc48800c56507b7274c06fdc", + "symbol": "CHER", + "decimals": 18, + "name": "Cherry Network", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xa20f77b7ad5a88badc48800c56507b7274c06fdc.png", + "aggregators": ["Rubic", "Rango", "Sonarwatch"], + "occurrences": 3 + }, + "0x7efbac35b65e73484764fd00f18e64929e782855": { + "address": "0x7efbac35b65e73484764fd00f18e64929e782855", + "symbol": "CIFI", + "decimals": 18, + "name": "CIFI", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x7efbac35b65e73484764fd00f18e64929e782855.png", + "aggregators": ["Rubic", "Rango", "Sonarwatch"], + "occurrences": 3 + }, + "0x6cadf6abbceb53e631c288778daacf125481c1bb": { + "address": "0x6cadf6abbceb53e631c288778daacf125481c1bb", + "symbol": "CITADEL", + "decimals": 18, + "name": "The Citadel", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x6cadf6abbceb53e631c288778daacf125481c1bb.png", + "aggregators": ["Rubic", "Rango", "Sonarwatch"], + "occurrences": 3 + }, + "0x08f7be99ed83369541501d60f4e66f8e34c3f736": { + "address": "0x08f7be99ed83369541501d60f4e66f8e34c3f736", + "symbol": "CKU", + "decimals": 18, + "name": "Cryptoku", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x08f7be99ed83369541501d60f4e66f8e34c3f736.png", + "aggregators": ["Rubic", "Rango", "Sonarwatch"], + "occurrences": 3 + }, + "0x230f5ed78a45452f726365b8ad1d6866f5faa68f": { + "address": "0x230f5ed78a45452f726365b8ad1d6866f5faa68f", + "symbol": "COF", + "decimals": 9, + "name": "Cryptoforce", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x230f5ed78a45452f726365b8ad1d6866f5faa68f.png", + "aggregators": ["Rubic", "Rango", "Sonarwatch"], + "occurrences": 3 + }, + "0x5bdc32663ec75e85ff4abc2cae7ae8b606a2cfca": { + "address": "0x5bdc32663ec75e85ff4abc2cae7ae8b606a2cfca", + "symbol": "CP", + "decimals": 18, + "name": "Cookies Protocol", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x5bdc32663ec75e85ff4abc2cae7ae8b606a2cfca.png", + "aggregators": ["Rubic", "Rango", "Sonarwatch"], + "occurrences": 3 + }, + "0x1c92c0295807f1f7c0726cf51a1d26298563f14a": { + "address": "0x1c92c0295807f1f7c0726cf51a1d26298563f14a", + "symbol": "CRACER", + "decimals": 18, + "name": "Coinracer Reloaded", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x1c92c0295807f1f7c0726cf51a1d26298563f14a.png", + "aggregators": ["Rubic", "Rango", "Sonarwatch"], + "occurrences": 3 + }, + "0xf1acfb5d95bc090bc55d8ae58a8df4081d73e009": { + "address": "0xf1acfb5d95bc090bc55d8ae58a8df4081d73e009", + "symbol": "CTOK", + "decimals": 18, + "name": "Codyfight", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xf1acfb5d95bc090bc55d8ae58a8df4081d73e009.png", + "aggregators": ["Rubic", "Rango", "Sonarwatch"], + "occurrences": 3 + }, + "0xbb63e6be33bc5b5386d7ab0529dc6c400f2ac2ec": { + "address": "0xbb63e6be33bc5b5386d7ab0529dc6c400f2ac2ec", + "symbol": "CUCK", + "decimals": 18, + "name": "Cuckadoodledoo", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xbb63e6be33bc5b5386d7ab0529dc6c400f2ac2ec.png", + "aggregators": ["Rubic", "Rango", "Sonarwatch"], + "occurrences": 3 + }, + "0x4a621d9f1b19296d1c0f87637b3a8d4978e9bf82": { + "address": "0x4a621d9f1b19296d1c0f87637b3a8d4978e9bf82", + "symbol": "CYFM", + "decimals": 18, + "name": "CyberFM", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x4a621d9f1b19296d1c0f87637b3a8d4978e9bf82.png", + "aggregators": ["Rubic", "Rango", "Sonarwatch"], + "occurrences": 3 + }, + "0x1981e32c2154936741ab6541a737b87c68f13ce1": { + "address": "0x1981e32c2154936741ab6541a737b87c68f13ce1", + "symbol": "DAII", + "decimals": 18, + "name": "DAII", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x1981e32c2154936741ab6541a737b87c68f13ce1.png", + "aggregators": ["Rubic", "Rango", "Sonarwatch"], + "occurrences": 3 + }, + "0x7135b32e9903bdb4e19a8b1d22fc2038964b8451": { + "address": "0x7135b32e9903bdb4e19a8b1d22fc2038964b8451", + "symbol": "EARLY", + "decimals": 18, + "name": "EarlyFans", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x7135b32e9903bdb4e19a8b1d22fc2038964b8451.png", + "aggregators": ["Rubic", "Rango", "Sonarwatch"], + "occurrences": 3 + }, + "0x07c904d8c04323ef9fe6bf13aaeba05b62c54825": { + "address": "0x07c904d8c04323ef9fe6bf13aaeba05b62c54825", + "symbol": "EEYOR", + "decimals": 18, + "name": "Eeyor", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x07c904d8c04323ef9fe6bf13aaeba05b62c54825.png", + "aggregators": ["Rubic", "Rango", "Sonarwatch"], + "occurrences": 3 + }, + "0x65c4c0517025ec0843c9146af266a2c5a2d148a2": { + "address": "0x65c4c0517025ec0843c9146af266a2c5a2d148a2", + "symbol": "ETH2X", + "decimals": 18, + "name": "Index Coop Ethereum 2x Index", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x65c4c0517025ec0843c9146af266a2c5a2d148a2.png", + "aggregators": ["Rubic", "Rango", "Sonarwatch"], + "occurrences": 3 + }, + "0x1ef846ce0da79d8d4e111bf8c5117cd1209a0478": { + "address": "0x1ef846ce0da79d8d4e111bf8c5117cd1209a0478", + "symbol": "ETHINU", + "decimals": 8, + "name": "Ethereum Inu", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x1ef846ce0da79d8d4e111bf8c5117cd1209a0478.png", + "aggregators": ["Rubic", "Rango", "Sonarwatch"], + "occurrences": 3 + }, + "0xcf9560b9e952b195d408be966e4f6cf4ab8206e5": { + "address": "0xcf9560b9e952b195d408be966e4f6cf4ab8206e5", + "symbol": "EVIL", + "decimals": 18, + "name": "Doctor Evil", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xcf9560b9e952b195d408be966e4f6cf4ab8206e5.png", + "aggregators": ["Rubic", "Rango", "Sonarwatch"], + "occurrences": 3 + }, + "0x5277f67a2be2e1a241613c357f26ae12458bf2c9": { + "address": "0x5277f67a2be2e1a241613c357f26ae12458bf2c9", + "symbol": "FATGUY", + "decimals": 18, + "name": "FAT GUY", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x5277f67a2be2e1a241613c357f26ae12458bf2c9.png", + "aggregators": ["Rubic", "Rango", "Sonarwatch"], + "occurrences": 3 + }, + "0xd4318fa09c45cfb6355ded6085b0d698b64ec1cd": { + "address": "0xd4318fa09c45cfb6355ded6085b0d698b64ec1cd", + "symbol": "FEDAI", + "decimals": 8, + "name": "Federal AI", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xd4318fa09c45cfb6355ded6085b0d698b64ec1cd.png", + "aggregators": ["Rubic", "Rango", "Sonarwatch"], + "occurrences": 3 + }, + "0xaf91e8afbe87642dc628786188a54b78580a4d76": { + "address": "0xaf91e8afbe87642dc628786188a54b78580a4d76", + "symbol": "FOY", + "decimals": 18, + "name": "Fund Of Yours", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xaf91e8afbe87642dc628786188a54b78580a4d76.png", + "aggregators": ["Rubic", "Rango", "Sonarwatch"], + "occurrences": 3 + }, + "0xa78bcbb74b822e74a847897d2d1d2d5ee2c76bd8": { + "address": "0xa78bcbb74b822e74a847897d2d1d2d5ee2c76bd8", + "symbol": "GOLD", + "decimals": 18, + "name": "Swords Dungeons GOLD", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xa78bcbb74b822e74a847897d2d1d2d5ee2c76bd8.png", + "aggregators": ["Rubic", "Rango", "Sonarwatch"], + "occurrences": 3 + }, + "0x274e7eb07b485cfde53d02270555213447570ac6": { + "address": "0x274e7eb07b485cfde53d02270555213447570ac6", + "symbol": "GOV", + "decimals": 18, + "name": "SubDAO", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x274e7eb07b485cfde53d02270555213447570ac6.png", + "aggregators": ["Rubic", "Rango", "Sonarwatch"], + "occurrences": 3 + }, + "0x7fa768e035f956c41d6aeaa3bd857e7e5141cad5": { + "address": "0x7fa768e035f956c41d6aeaa3bd857e7e5141cad5", + "symbol": "INSTETH", + "decimals": 18, + "name": "Inception stETH", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x7fa768e035f956c41d6aeaa3bd857e7e5141cad5.png", + "aggregators": ["Rubic", "Rango", "Sonarwatch"], + "occurrences": 3 + }, + "0xb40c535c8899f95e3b722df2f0619ebd28c4a4ea": { + "address": "0xb40c535c8899f95e3b722df2f0619ebd28c4a4ea", + "symbol": "KNDA", + "decimals": 18, + "name": "Kenda", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xb40c535c8899f95e3b722df2f0619ebd28c4a4ea.png", + "aggregators": ["Rubic", "Rango", "Sonarwatch"], + "occurrences": 3 + }, + "0x7b7983967409fce461ea8bbdf9ed37631b1d59c9": { + "address": "0x7b7983967409fce461ea8bbdf9ed37631b1d59c9", + "symbol": "KPOP", + "decimals": 18, + "name": "KPOP Coin", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x7b7983967409fce461ea8bbdf9ed37631b1d59c9.png", + "aggregators": ["Rubic", "Rango", "Sonarwatch"], + "occurrences": 3 + }, + "0x27206f5a9afd0c51da95f20972885545d3b33647": { + "address": "0x27206f5a9afd0c51da95f20972885545d3b33647", + "symbol": "KUKU", + "decimals": 0, + "name": "KuKu", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x27206f5a9afd0c51da95f20972885545d3b33647.png", + "aggregators": ["Rubic", "Rango", "Sonarwatch"], + "occurrences": 3 + }, + "0xc3c221fe28c33814c28c822b631fd76047ef1a63": { + "address": "0xc3c221fe28c33814c28c822b631fd76047ef1a63", + "symbol": "MM", + "decimals": 18, + "name": "Millimeter", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xc3c221fe28c33814c28c822b631fd76047ef1a63.png", + "aggregators": ["Rubic", "Rango", "Sonarwatch"], + "occurrences": 3 + }, + "0xed2d13a70acbd61074fc56bd0d0845e35f793e5e": { + "address": "0xed2d13a70acbd61074fc56bd0d0845e35f793e5e", + "symbol": "MOJO", + "decimals": 18, + "name": "Planet Mojo", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xed2d13a70acbd61074fc56bd0d0845e35f793e5e.png", + "aggregators": ["Rubic", "Rango", "Sonarwatch"], + "occurrences": 3 + }, + "0x28b7f370a2b0fd04a9f420c8863b12f35c0f791a": { + "address": "0x28b7f370a2b0fd04a9f420c8863b12f35c0f791a", + "symbol": "MONKEI", + "decimals": 9, + "name": "Monkei", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x28b7f370a2b0fd04a9f420c8863b12f35c0f791a.png", + "aggregators": ["Rubic", "Rango", "Sonarwatch"], + "occurrences": 3 + }, + "0x7d3b4f8d5dd14a0c263c4bee7be434c15e188d3e": { + "address": "0x7d3b4f8d5dd14a0c263c4bee7be434c15e188d3e", + "symbol": "MOE", + "decimals": 18, + "name": "Moe", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x7d3b4f8d5dd14a0c263c4bee7be434c15e188d3e.png", + "aggregators": ["Rubic", "Rango", "Sonarwatch"], + "occurrences": 3 + }, + "0x7865ec47bef9823ad0010c4970ed90a5e8107e53": { + "address": "0x7865ec47bef9823ad0010c4970ed90a5e8107e53", + "symbol": "NAAI", + "decimals": 18, + "name": "NeoAudit AI", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x7865ec47bef9823ad0010c4970ed90a5e8107e53.png", + "aggregators": ["Rubic", "Rango", "Sonarwatch"], + "occurrences": 3 + }, + "0x6431fa4b812a2dcc062a38cb55cc7d18135adead": { + "address": "0x6431fa4b812a2dcc062a38cb55cc7d18135adead", + "symbol": "RANKER", + "decimals": 18, + "name": "RankerDao", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x6431fa4b812a2dcc062a38cb55cc7d18135adead.png", + "aggregators": ["Rubic", "Rango", "Sonarwatch"], + "occurrences": 3 + }, + "0x902169d471b62f22ffadc690ca292ec454d0b260": { + "address": "0x902169d471b62f22ffadc690ca292ec454d0b260", + "symbol": "RBT", + "decimals": 18, + "name": "Reboot World", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x902169d471b62f22ffadc690ca292ec454d0b260.png", + "aggregators": ["Rubic", "Rango", "Sonarwatch"], + "occurrences": 3 + }, + "0x8c85f830bea7d21c71cbd0047aa6de0d7acf3262": { + "address": "0x8c85f830bea7d21c71cbd0047aa6de0d7acf3262", + "symbol": "RNG", + "decimals": 18, + "name": "RuniGun", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x8c85f830bea7d21c71cbd0047aa6de0d7acf3262.png", + "aggregators": ["Rubic", "Rango", "Sonarwatch"], + "occurrences": 3 + }, + "0x96362879529c15c484eabc861c435940e7af22bb": { + "address": "0x96362879529c15c484eabc861c435940e7af22bb", + "symbol": "RPGMAI", + "decimals": 18, + "name": "RPG Maker Ai", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x96362879529c15c484eabc861c435940e7af22bb.png", + "aggregators": ["Rubic", "Rango", "Sonarwatch"], + "occurrences": 3 + }, + "0x78223d31298107f3e310b09797b07967832046a6": { + "address": "0x78223d31298107f3e310b09797b07967832046a6", + "symbol": "RSFT", + "decimals": 18, + "name": "ROYAL SMART FUTURE TOKEN", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x78223d31298107f3e310b09797b07967832046a6.png", + "aggregators": ["Rubic", "Rango", "Sonarwatch"], + "occurrences": 3 + }, + "0x6aa3ecec75ceb388d2e929814ead4fc4cd0648fc": { + "address": "0x6aa3ecec75ceb388d2e929814ead4fc4cd0648fc", + "symbol": "RVSL", + "decimals": 18, + "name": "Reversal", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x6aa3ecec75ceb388d2e929814ead4fc4cd0648fc.png", + "aggregators": ["Rubic", "Rango", "Sonarwatch"], + "occurrences": 3 + }, + "0xfcf7985661d2c3f62208970cbe25e70bcce73e7c": { + "address": "0xfcf7985661d2c3f62208970cbe25e70bcce73e7c", + "symbol": "RWA", + "decimals": 18, + "name": "RWA AI", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xfcf7985661d2c3f62208970cbe25e70bcce73e7c.png", + "aggregators": ["Rubic", "Rango", "Sonarwatch"], + "occurrences": 3 + }, + "0x9b5c38cc2d1ba05ed87c8f8a2418475bacb20073": { + "address": "0x9b5c38cc2d1ba05ed87c8f8a2418475bacb20073", + "symbol": "SBIO", + "decimals": 18, + "name": "Vector Space Biosciences Inc", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x9b5c38cc2d1ba05ed87c8f8a2418475bacb20073.png", + "aggregators": ["Rubic", "Rango", "Sonarwatch"], + "occurrences": 3 + }, + "0x8dbd1331b1de57835b24657ed21d0691e2e7362a": { + "address": "0x8dbd1331b1de57835b24657ed21d0691e2e7362a", + "symbol": "SENT", + "decimals": 18, + "name": "SentimentAI", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x8dbd1331b1de57835b24657ed21d0691e2e7362a.png", + "aggregators": ["Rubic", "Rango", "Sonarwatch"], + "occurrences": 3 + }, + "0xf6f31b8afbf8e3f7fc8246bef26093f02838da98": { + "address": "0xf6f31b8afbf8e3f7fc8246bef26093f02838da98", + "symbol": "UNIVERSE", + "decimals": 18, + "name": "Unicorn Metaverse", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xf6f31b8afbf8e3f7fc8246bef26093f02838da98.png", + "aggregators": ["Rubic", "Rango", "Sonarwatch"], + "occurrences": 3 + }, + "0x20b3b07e9c0e37815e2892ab09496559f57c3603": { + "address": "0x20b3b07e9c0e37815e2892ab09496559f57c3603", + "symbol": "USDV", + "decimals": 18, + "name": "USDV", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x20b3b07e9c0e37815e2892ab09496559f57c3603.png", + "aggregators": ["Rubic", "Rango", "Sonarwatch"], + "occurrences": 3 + }, + "0x46971fc433d90cf2ff1da4a66abe320dfb0ce3b1": { + "address": "0x46971fc433d90cf2ff1da4a66abe320dfb0ce3b1", + "symbol": "WNE", + "decimals": 9, + "name": "Winee3", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x46971fc433d90cf2ff1da4a66abe320dfb0ce3b1.png", + "aggregators": ["Rubic", "Rango", "Sonarwatch"], + "occurrences": 3 + }, + "0xe3668873d944e4a949da05fc8bde419eff543882": { + "address": "0xe3668873d944e4a949da05fc8bde419eff543882", + "symbol": "YPRISMA", + "decimals": 18, + "name": "Yearn yPRISMA", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xe3668873d944e4a949da05fc8bde419eff543882.png", + "aggregators": ["Rubic", "Rango", "Sonarwatch"], + "occurrences": 3 + }, + "0x4208aa4d7a9a10f4f8bb7f6400c1b2161d946969": { + "address": "0x4208aa4d7a9a10f4f8bb7f6400c1b2161d946969", + "symbol": "DONG", + "decimals": 18, + "name": "DongCoin", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x4208aa4d7a9a10f4f8bb7f6400c1b2161d946969.png", + "aggregators": ["Rubic", "Rango", "Sonarwatch"], + "occurrences": 3 + }, + "0x7a486f809c952a6f8dec8cb0ff68173f2b8ed56c": { + "address": "0x7a486f809c952a6f8dec8cb0ff68173f2b8ed56c", + "symbol": "USDX", + "decimals": 6, + "name": "Hex Trust USD", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x7a486f809c952a6f8dec8cb0ff68173f2b8ed56c.png", + "aggregators": ["Rubic", "Rango", "Sonarwatch"], + "occurrences": 3 + }, + "0x6282727946325daa05636adec103b385b7c995bf": { + "address": "0x6282727946325daa05636adec103b385b7c995bf", + "symbol": "VED", + "decimals": 18, + "name": "VedoraAI", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x6282727946325daa05636adec103b385b7c995bf.png", + "aggregators": ["Rubic", "Rango", "Sonarwatch"], + "occurrences": 3 + }, + "0x77ebcf0659bbf4e68d8ce6d84bb25c5cde207b97": { + "address": "0x77ebcf0659bbf4e68d8ce6d84bb25c5cde207b97", + "symbol": "MOOX", + "decimals": 18, + "name": "MOOxMOO", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x77ebcf0659bbf4e68d8ce6d84bb25c5cde207b97.png", + "aggregators": ["Rubic", "Rango", "Sonarwatch"], + "occurrences": 3 + }, + "0x26d3c0d9f4cc4c130097b6afdebe4f5e497e6bdf": { + "address": "0x26d3c0d9f4cc4c130097b6afdebe4f5e497e6bdf", + "symbol": "MNT", + "decimals": 6, + "name": "Mynth", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x26d3c0d9f4cc4c130097b6afdebe4f5e497e6bdf.png", + "aggregators": ["Rubic", "Rango", "Sonarwatch"], + "occurrences": 3 + }, + "0x7e5981c2e072f53a0323d3d80baca3e31fb1550c": { + "address": "0x7e5981c2e072f53a0323d3d80baca3e31fb1550c", + "symbol": "JOVJOU", + "decimals": 18, + "name": "JovJou", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x7e5981c2e072f53a0323d3d80baca3e31fb1550c.png", + "aggregators": ["Rubic", "Rango", "Sonarwatch"], + "occurrences": 3 + }, + "0xa771b49064da011df051052848477f18dba1d2ac": { + "address": "0xa771b49064da011df051052848477f18dba1d2ac", + "symbol": "HNS", + "decimals": 6, + "name": "Handshake", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xa771b49064da011df051052848477f18dba1d2ac.png", + "aggregators": ["Rubic", "Rango", "Sonarwatch"], + "occurrences": 3 + }, + "0x40e5a14e1d151f34fea6b8e6197c338e737f9bf2": { + "address": "0x40e5a14e1d151f34fea6b8e6197c338e737f9bf2", + "symbol": "VY", + "decimals": 18, + "name": "Valinity", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x40e5a14e1d151f34fea6b8e6197c338e737f9bf2.png", + "aggregators": ["Rubic", "Rango", "Sonarwatch"], + "occurrences": 3 + }, + "0x4fd67c2d9e8c4fdd9c66954bafe124ca50fc1819": { + "address": "0x4fd67c2d9e8c4fdd9c66954bafe124ca50fc1819", + "symbol": "RMNER", + "decimals": 18, + "name": "Mner Club", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x4fd67c2d9e8c4fdd9c66954bafe124ca50fc1819.png", + "aggregators": ["Rubic", "Rango", "Sonarwatch"], + "occurrences": 3 + }, + "0x473037de59cf9484632f4a27b509cfe8d4a31404": { + "address": "0x473037de59cf9484632f4a27b509cfe8d4a31404", + "symbol": "GST-ETH", + "decimals": 8, + "name": "STEPN Green Satoshi Token on ETH", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x473037de59cf9484632f4a27b509cfe8d4a31404.png", + "aggregators": ["Rubic", "Rango", "Sonarwatch"], + "occurrences": 3 + }, + "0xd3fb8597d260efb2e693efd500d62a330a00f1eb": { + "address": "0xd3fb8597d260efb2e693efd500d62a330a00f1eb", + "symbol": "TINU", + "decimals": 18, + "name": "Trump Inu", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xd3fb8597d260efb2e693efd500d62a330a00f1eb.png", + "aggregators": ["Rubic", "Rango", "Sonarwatch"], + "occurrences": 3 + }, + "0x979e030a78a540e78ac33c1b7745a298fbfa18b3": { + "address": "0x979e030a78a540e78ac33c1b7745a298fbfa18b3", + "symbol": "GPUL", + "decimals": 9, + "name": "GPULABS", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x979e030a78a540e78ac33c1b7745a298fbfa18b3.png", + "aggregators": ["Rubic", "Rango", "Sonarwatch"], + "occurrences": 3 + }, + "0xa774ffb4af6b0a91331c084e1aebae6ad535e6f3": { + "address": "0xa774ffb4af6b0a91331c084e1aebae6ad535e6f3", + "symbol": "FLEXUSD", + "decimals": 18, + "name": "flexUSD", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xa774ffb4af6b0a91331c084e1aebae6ad535e6f3.png", + "aggregators": ["Rubic", "Rango", "Sonarwatch"], + "occurrences": 3 + }, + "0x114f1388fab456c4ba31b1850b244eedcd024136": { + "address": "0x114f1388fab456c4ba31b1850b244eedcd024136", + "symbol": "COOL", + "decimals": 18, + "name": "Cool Cats", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x114f1388fab456c4ba31b1850b244eedcd024136.png", + "aggregators": ["Rubic", "Rango", "SushiSwap"], + "occurrences": 3 + }, + "0x45e007750cc74b1d2b4dd7072230278d9602c499": { + "address": "0x45e007750cc74b1d2b4dd7072230278d9602c499", + "symbol": "STKXPRT", + "decimals": 6, + "name": "pSTAKE Staked XPRT", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x45e007750cc74b1d2b4dd7072230278d9602c499.png", + "aggregators": ["Rubic", "Rango", "SushiSwap"], + "occurrences": 3 + }, + "0x471ea49dd8e60e697f4cac262b5fafcc307506e4": { + "address": "0x471ea49dd8e60e697f4cac262b5fafcc307506e4", + "symbol": "XCRMRK", + "decimals": 10, + "name": "xcRMRK", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x471ea49dd8e60e697f4cac262b5fafcc307506e4.png", + "aggregators": ["Rubic", "Rango", "SushiSwap"], + "occurrences": 3 + }, + "0xe00639a1f59b52773b7d39d9f9bef07f6248dbae": { + "address": "0xe00639a1f59b52773b7d39d9f9bef07f6248dbae", + "symbol": "DAOX", + "decimals": 18, + "name": "The DAOX Index", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xe00639a1f59b52773b7d39d9f9bef07f6248dbae.png", + "aggregators": ["Rubic", "Rango", "SushiSwap"], + "occurrences": 3 + }, + "0x807a0774236a0fbe9e7f8e7df49edfed0e6777ea": { + "address": "0x807a0774236a0fbe9e7f8e7df49edfed0e6777ea", + "symbol": "BLOCK", + "decimals": 18, + "name": "Block", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x807a0774236a0fbe9e7f8e7df49edfed0e6777ea.png", + "aggregators": ["Rubic", "Rango", "SushiSwap"], + "occurrences": 3 + }, + "0xb5e09e6bf6a5e96934b3fd99a40f7edaca1173ed": { + "address": "0xb5e09e6bf6a5e96934b3fd99a40f7edaca1173ed", + "symbol": "DIVINE", + "decimals": 18, + "name": "divinedao", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xb5e09e6bf6a5e96934b3fd99a40f7edaca1173ed.png", + "aggregators": ["Rubic", "Rango", "SushiSwap"], + "occurrences": 3 + }, + "0x97bbbc5d96875fb78d2f14b7ff8d7a3a74106f17": { + "address": "0x97bbbc5d96875fb78d2f14b7ff8d7a3a74106f17", + "symbol": "ASTRAFER", + "decimals": 18, + "name": "Astrafer", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x97bbbc5d96875fb78d2f14b7ff8d7a3a74106f17.png", + "aggregators": ["Rubic", "Rango", "SushiSwap"], + "occurrences": 3 + }, + "0x8564653879a18c560e7c0ea0e084c516c62f5653": { + "address": "0x8564653879a18c560e7c0ea0e084c516c62f5653", + "symbol": "UBXT", + "decimals": 18, + "name": "UpBots", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x8564653879a18c560e7c0ea0e084c516c62f5653.png", + "aggregators": ["Rubic", "Rango", "SushiSwap"], + "occurrences": 3 + }, + "0x64b3b21ee104f434380270749d8d5bfd481fdcf6": { + "address": "0x64b3b21ee104f434380270749d8d5bfd481fdcf6", + "symbol": "ABTC", + "decimals": 9, + "name": "American Bitcoin", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x64b3b21ee104f434380270749d8d5bfd481fdcf6.png", + "aggregators": ["Rubic", "Rango", "Sonarwatch"], + "occurrences": 3 + }, + "0x3ddd90ba2c4b028334c08b0adc6352ac9e50f2d7": { + "address": "0x3ddd90ba2c4b028334c08b0adc6352ac9e50f2d7", + "symbol": "GRID", + "decimals": 18, + "name": "OpenGRID", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x3ddd90ba2c4b028334c08b0adc6352ac9e50f2d7.png", + "aggregators": ["Rubic", "Rango", "Sonarwatch"], + "occurrences": 3 + }, + "0xa711bcc2b6f5c4fc3dfaccc2a01148765cbbab1c": { + "address": "0xa711bcc2b6f5c4fc3dfaccc2a01148765cbbab1c", + "symbol": "GROK15", + "decimals": 9, + "name": "Grok1 5", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xa711bcc2b6f5c4fc3dfaccc2a01148765cbbab1c.png", + "aggregators": ["Rubic", "Rango", "Sonarwatch"], + "occurrences": 3 + }, + "0x5d5e244660ca05c42073c9a526616d99f2c99516": { + "address": "0x5d5e244660ca05c42073c9a526616d99f2c99516", + "symbol": "GTCOIN", + "decimals": 18, + "name": "Game Tree", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x5d5e244660ca05c42073c9a526616d99f2c99516.png", + "aggregators": ["Rubic", "Rango", "Sonarwatch"], + "occurrences": 3 + }, + "0x986df267bb88a0a0be06dd4a1052e1bdec1a6172": { + "address": "0x986df267bb88a0a0be06dd4a1052e1bdec1a6172", + "symbol": "HQ", + "decimals": 18, + "name": "HyperQuant", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x986df267bb88a0a0be06dd4a1052e1bdec1a6172.png", + "aggregators": ["Rubic", "Rango", "Sonarwatch"], + "occurrences": 3 + }, + "0xed1ddc491a2c8b1f7d6e8933580a47e124ea38db": { + "address": "0xed1ddc491a2c8b1f7d6e8933580a47e124ea38db", + "symbol": "IOC", + "decimals": 18, + "name": "Intelligence On Chain", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xed1ddc491a2c8b1f7d6e8933580a47e124ea38db.png", + "aggregators": ["Rubic", "Rango", "Sonarwatch"], + "occurrences": 3 + }, + "0x3b21418081528845a6df4e970bd2185545b712ba": { + "address": "0x3b21418081528845a6df4e970bd2185545b712ba", + "symbol": "CHI", + "decimals": 18, + "name": "Chi Protocol", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x3b21418081528845a6df4e970bd2185545b712ba.png", + "aggregators": ["Rubic", "Rango", "Sonarwatch"], + "occurrences": 3 + }, + "0xe3e24b4ea87935e15bbe99a24e9ace9998e4614d": { + "address": "0xe3e24b4ea87935e15bbe99a24e9ace9998e4614d", + "symbol": "AIDI", + "decimals": 18, + "name": "Aidi Finance", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xe3e24b4ea87935e15bbe99a24e9ace9998e4614d.png", + "aggregators": ["Rubic", "Rango", "Sonarwatch"], + "occurrences": 3 + }, + "0x722f97a435278b7383a1e3c47f41773bebf3232c": { + "address": "0x722f97a435278b7383a1e3c47f41773bebf3232c", + "symbol": "UCM", + "decimals": 18, + "name": "UCROWDME", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x722f97a435278b7383a1e3c47f41773bebf3232c.png", + "aggregators": ["Rubic", "Rango", "Sonarwatch"], + "occurrences": 3 + }, + "0x4efce4c758ddfb3911a1a1282a29ce0bdb16ef86": { + "address": "0x4efce4c758ddfb3911a1a1282a29ce0bdb16ef86", + "symbol": "!", + "decimals": 18, + "name": "WOW", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x4efce4c758ddfb3911a1a1282a29ce0bdb16ef86.png", + "aggregators": ["Rubic", "Rango", "Sonarwatch"], + "occurrences": 3 + }, + "0x1eb7bd905855c483db19f53c8c4d42db42a159fc": { + "address": "0x1eb7bd905855c483db19f53c8c4d42db42a159fc", + "symbol": "NRDC", + "decimals": 18, + "name": "Nordic Ai", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x1eb7bd905855c483db19f53c8c4d42db42a159fc.png", + "aggregators": ["Rubic", "Rango", "Sonarwatch"], + "occurrences": 3 + }, + "0x4c0f743928ca8fa7fb24ad89669c8a7838f34917": { + "address": "0x4c0f743928ca8fa7fb24ad89669c8a7838f34917", + "symbol": "STACK", + "decimals": 18, + "name": "STACKER AI", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x4c0f743928ca8fa7fb24ad89669c8a7838f34917.png", + "aggregators": ["Rubic", "Rango", "Sonarwatch"], + "occurrences": 3 + }, + "0xfdb15e5e6799be72798b1ccfaecbf186bf73a0c4": { + "address": "0xfdb15e5e6799be72798b1ccfaecbf186bf73a0c4", + "symbol": "NTX", + "decimals": 8, + "name": "NitroEX", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xfdb15e5e6799be72798b1ccfaecbf186bf73a0c4.png", + "aggregators": ["Rubic", "Rango", "Sonarwatch"], + "occurrences": 3 + }, + "0x26c75c7d815efe6bf5a6decd17d20d1fdad96a08": { + "address": "0x26c75c7d815efe6bf5a6decd17d20d1fdad96a08", + "symbol": "OCW", + "decimals": 18, + "name": "OctopusWallet", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x26c75c7d815efe6bf5a6decd17d20d1fdad96a08.png", + "aggregators": ["Rubic", "Rango", "Sonarwatch"], + "occurrences": 3 + }, + "0xbd89b8d708809e7022135313683663911826977e": { + "address": "0xbd89b8d708809e7022135313683663911826977e", + "symbol": "OME", + "decimals": 18, + "name": "O MEE", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xbd89b8d708809e7022135313683663911826977e.png", + "aggregators": ["Rubic", "Rango", "Sonarwatch"], + "occurrences": 3 + }, + "0xc72633f995e98ac3bb8a89e6a9c4af335c3d6e44": { + "address": "0xc72633f995e98ac3bb8a89e6a9c4af335c3d6e44", + "symbol": "OSEA", + "decimals": 18, + "name": "Omnisea", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xc72633f995e98ac3bb8a89e6a9c4af335c3d6e44.png", + "aggregators": ["Rubic", "Rango", "Sonarwatch"], + "occurrences": 3 + }, + "0x012e0e6342308b247f36ee500ecb14dc77a7a8c1": { + "address": "0x012e0e6342308b247f36ee500ecb14dc77a7a8c1", + "symbol": "SKT", + "decimals": 8, + "name": "Sukhavati Network", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x012e0e6342308b247f36ee500ecb14dc77a7a8c1.png", + "aggregators": ["Rubic", "Rango", "Sonarwatch"], + "occurrences": 3 + }, + "0xfe7290b932cd0d5aec29c57394e87cdaa41cc054": { + "address": "0xfe7290b932cd0d5aec29c57394e87cdaa41cc054", + "symbol": "SMART", + "decimals": 9, + "name": "Smart AI", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xfe7290b932cd0d5aec29c57394e87cdaa41cc054.png", + "aggregators": ["Rubic", "Rango", "Sonarwatch"], + "occurrences": 3 + }, + "0xc0f1728d9513efc316d0e93a0758c992f88b0809": { + "address": "0xc0f1728d9513efc316d0e93a0758c992f88b0809", + "symbol": "SWAT", + "decimals": 8, + "name": "SWTCoin", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xc0f1728d9513efc316d0e93a0758c992f88b0809.png", + "aggregators": ["Rubic", "Rango", "Sonarwatch"], + "occurrences": 3 + }, + "0x93e32efafd24973d45f363a76d73ccb9edf59986": { + "address": "0x93e32efafd24973d45f363a76d73ccb9edf59986", + "symbol": "BTL", + "decimals": 6, + "name": "Bitlocus", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x93e32efafd24973d45f363a76d73ccb9edf59986.png", + "aggregators": ["Rubic", "Rango", "Sonarwatch"], + "occurrences": 3 + }, + "0x2025bf4e0c1117685b1bf2ea2be56c7deb11bc99": { + "address": "0x2025bf4e0c1117685b1bf2ea2be56c7deb11bc99", + "symbol": "ROBIE", + "decimals": 18, + "name": "Robie", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x2025bf4e0c1117685b1bf2ea2be56c7deb11bc99.png", + "aggregators": ["Rubic", "Rango", "Sonarwatch"], + "occurrences": 3 + }, + "0x46d0dac0926fa16707042cadc23f1eb4141fe86b": { + "address": "0x46d0dac0926fa16707042cadc23f1eb4141fe86b", + "symbol": "SNM", + "decimals": 18, + "name": "SONM", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x46d0dac0926fa16707042cadc23f1eb4141fe86b.png", + "aggregators": ["Rubic", "Rango", "Sonarwatch"], + "occurrences": 3 + }, + "0x0f0bbaf936f7ada2aca5b80bed7b655758d66950": { + "address": "0x0f0bbaf936f7ada2aca5b80bed7b655758d66950", + "symbol": "WIFPEPEMOG", + "decimals": 9, + "name": "WIFPEPEMOGINU", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x0f0bbaf936f7ada2aca5b80bed7b655758d66950.png", + "aggregators": ["Rubic", "Rango", "Sonarwatch"], + "occurrences": 3 + }, + "0x4d9b0b7a6db042cb990d36a0df5aa2960e552f16": { + "address": "0x4d9b0b7a6db042cb990d36a0df5aa2960e552f16", + "symbol": "TETHER", + "decimals": 9, + "name": "Hpohs888inu", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x4d9b0b7a6db042cb990d36a0df5aa2960e552f16.png", + "aggregators": ["Rubic", "Rango", "Sonarwatch"], + "occurrences": 3 + }, + "0x661013bb8d1c95d86d9c85f76e9004561f1bb36f": { + "address": "0x661013bb8d1c95d86d9c85f76e9004561f1bb36f", + "symbol": "DRBT", + "decimals": 18, + "name": "DeFi Robot", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x661013bb8d1c95d86d9c85f76e9004561f1bb36f.png", + "aggregators": ["Rubic", "Rango", "Sonarwatch"], + "occurrences": 3 + }, + "0x7fed466b893c716235e1b8d685c913f7d2797463": { + "address": "0x7fed466b893c716235e1b8d685c913f7d2797463", + "symbol": "THUB", + "decimals": 9, + "name": "TensorHub", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x7fed466b893c716235e1b8d685c913f7d2797463.png", + "aggregators": ["Rubic", "Rango", "Sonarwatch"], + "occurrences": 3 + }, + "0x8c6691704d0c3630d6a4fbd5383e0f8e59e10616": { + "address": "0x8c6691704d0c3630d6a4fbd5383e0f8e59e10616", + "symbol": "TRITON", + "decimals": 18, + "name": "Triton", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x8c6691704d0c3630d6a4fbd5383e0f8e59e10616.png", + "aggregators": ["Rubic", "Rango", "Sonarwatch"], + "occurrences": 3 + }, + "0x2f5fa8adf5f09a5f9de05b65fe82a404913f02c4": { + "address": "0x2f5fa8adf5f09a5f9de05b65fe82a404913f02c4", + "symbol": "TROLL20", + "decimals": 18, + "name": "TROLL 2 0", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x2f5fa8adf5f09a5f9de05b65fe82a404913f02c4.png", + "aggregators": ["Rubic", "Rango", "Sonarwatch"], + "occurrences": 3 + }, + "0x693170bd3c37dcd46168d8b399aa7551a32de2af": { + "address": "0x693170bd3c37dcd46168d8b399aa7551a32de2af", + "symbol": "TAOSHARD", + "decimals": 18, + "name": "TAO Subnet Sharding", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x693170bd3c37dcd46168d8b399aa7551a32de2af.png", + "aggregators": ["Rubic", "Rango", "Sonarwatch"], + "occurrences": 3 + }, + "0x9532ca064278ce3ba4fcc66cebec6d9f04f58f70": { + "address": "0x9532ca064278ce3ba4fcc66cebec6d9f04f58f70", + "symbol": "BOTC", + "decimals": 9, + "name": "Bot Compiler", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x9532ca064278ce3ba4fcc66cebec6d9f04f58f70.png", + "aggregators": ["Rubic", "Rango", "Sonarwatch"], + "occurrences": 3 + }, + "0x0058c8581b9fed6864faa654505bc89890cdb2dd": { + "address": "0x0058c8581b9fed6864faa654505bc89890cdb2dd", + "symbol": "BS9000", + "decimals": 9, + "name": "BabySmurf9000", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x0058c8581b9fed6864faa654505bc89890cdb2dd.png", + "aggregators": ["Rubic", "Rango", "Sonarwatch"], + "occurrences": 3 + }, + "0xbd6323a83b613f668687014e8a5852079494fb68": { + "address": "0xbd6323a83b613f668687014e8a5852079494fb68", + "symbol": "BTC", + "decimals": 18, + "name": "BlackrockTradingCurrency", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xbd6323a83b613f668687014e8a5852079494fb68.png", + "aggregators": ["Rubic", "Rango", "Sonarwatch"], + "occurrences": 3 + }, + "0x8ef32a03784c8fd63bbf027251b9620865bd54b6": { + "address": "0x8ef32a03784c8fd63bbf027251b9620865bd54b6", + "symbol": "BULLET", + "decimals": 8, + "name": "Bullet Gate Betting Token", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x8ef32a03784c8fd63bbf027251b9620865bd54b6.png", + "aggregators": ["Rubic", "Rango", "Sonarwatch"], + "occurrences": 3 + }, + "0xf36c5f04127f7470834ed6f98bddc1be62aba48d": { + "address": "0xf36c5f04127f7470834ed6f98bddc1be62aba48d", + "symbol": "CAI", + "decimals": 18, + "name": "CryptoAI", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xf36c5f04127f7470834ed6f98bddc1be62aba48d.png", + "aggregators": ["Rubic", "Rango", "Sonarwatch"], + "occurrences": 3 + }, + "0xc975342a95ccb75378ddc646b8620fa3cd5bc051": { + "address": "0xc975342a95ccb75378ddc646b8620fa3cd5bc051", + "symbol": "PUNKETH-20", + "decimals": 18, + "name": "MetaStreet V2 mwstETH WPUNKS 20", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xc975342a95ccb75378ddc646b8620fa3cd5bc051.png", + "aggregators": ["Rubic", "Rango", "Sonarwatch"], + "occurrences": 3 + }, + "0x571f54d23cdf2211c83e9a0cbd92aca36c48fa02": { + "address": "0x571f54d23cdf2211c83e9a0cbd92aca36c48fa02", + "symbol": "PAUSD", + "decimals": 18, + "name": "Parallel USD", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x571f54d23cdf2211c83e9a0cbd92aca36c48fa02.png", + "aggregators": ["Rubic", "Rango", "Sonarwatch"], + "occurrences": 3 + }, + "0xbc404429558292ee2d769e57d57d6e74bbd2792d": { + "address": "0xbc404429558292ee2d769e57d57d6e74bbd2792d", + "symbol": "SUSX", + "decimals": 18, + "name": "Savings USX", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xbc404429558292ee2d769e57d57d6e74bbd2792d.png", + "aggregators": ["Rubic", "Rango", "Sonarwatch"], + "occurrences": 3 + }, + "0x53f7535cc14ff028de181f9789d403c838b5f885": { + "address": "0x53f7535cc14ff028de181f9789d403c838b5f885", + "symbol": "PERPX", + "decimals": 18, + "name": "Perpex", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x53f7535cc14ff028de181f9789d403c838b5f885.png", + "aggregators": ["Rubic", "Rango", "Sonarwatch"], + "occurrences": 3 + }, + "0xcffcfdada28ab44d5440301470dcd410e75c4765": { + "address": "0xcffcfdada28ab44d5440301470dcd410e75c4765", + "symbol": "PRF", + "decimals": 18, + "name": "Parifi", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xcffcfdada28ab44d5440301470dcd410e75c4765.png", + "aggregators": ["Rubic", "Rango", "Sonarwatch"], + "occurrences": 3 + }, + "0x22c158a3f3ea3419176c083aa11eb593e94965dc": { + "address": "0x22c158a3f3ea3419176c083aa11eb593e94965dc", + "symbol": "QTC", + "decimals": 18, + "name": "Quantum Cloak", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x22c158a3f3ea3419176c083aa11eb593e94965dc.png", + "aggregators": ["Rubic", "Rango", "Sonarwatch"], + "occurrences": 3 + }, + "0x1c74d8c8fe37b0fa47debc82e0ab6925a3dc4a2f": { + "address": "0x1c74d8c8fe37b0fa47debc82e0ab6925a3dc4a2f", + "symbol": "STPR", + "decimals": 18, + "name": "Strike Protocol", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x1c74d8c8fe37b0fa47debc82e0ab6925a3dc4a2f.png", + "aggregators": ["Rubic", "Rango", "Sonarwatch"], + "occurrences": 3 + }, + "0x9fb83c0635de2e815fd1c21b3a292277540c2e8d": { + "address": "0x9fb83c0635de2e815fd1c21b3a292277540c2e8d", + "symbol": "FEVR", + "decimals": 18, + "name": "RealFevr", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x9fb83c0635de2e815fd1c21b3a292277540c2e8d.png", + "aggregators": ["Rubic", "Rango", "Sonarwatch"], + "occurrences": 3 + }, + "0xfd4ca4a692f14d88af3e7ae13cf00d5095213b25": { + "address": "0xfd4ca4a692f14d88af3e7ae13cf00d5095213b25", + "symbol": "WSKR", + "decimals": 18, + "name": "Wiskers", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xfd4ca4a692f14d88af3e7ae13cf00d5095213b25.png", + "aggregators": ["Rubic", "Rango", "Sonarwatch"], + "occurrences": 3 + }, + "0x05bbe7240de66f6480c9aeda77c1376b13393f83": { + "address": "0x05bbe7240de66f6480c9aeda77c1376b13393f83", + "symbol": "XNO", + "decimals": 18, + "name": "Xeno", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x05bbe7240de66f6480c9aeda77c1376b13393f83.png", + "aggregators": ["Rubic", "Rango", "Sonarwatch"], + "occurrences": 3 + }, + "0x67037abcfefd566aeff31c240168c25d65a0754d": { + "address": "0x67037abcfefd566aeff31c240168c25d65a0754d", + "symbol": "ZAI", + "decimals": 18, + "name": "ZAIHO", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x67037abcfefd566aeff31c240168c25d65a0754d.png", + "aggregators": ["Rubic", "Rango", "Sonarwatch"], + "occurrences": 3 + }, + "0x396de8bb0a1745b531bf5cd5952539a1b5fe66e0": { + "address": "0x396de8bb0a1745b531bf5cd5952539a1b5fe66e0", + "symbol": "ZAPEX", + "decimals": 9, + "name": "ZapExchange", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x396de8bb0a1745b531bf5cd5952539a1b5fe66e0.png", + "aggregators": ["Rubic", "Rango", "Sonarwatch"], + "occurrences": 3 + }, + "0xa163af4ab79cd705e5b16941b8619a79805bf9c7": { + "address": "0xa163af4ab79cd705e5b16941b8619a79805bf9c7", + "symbol": "BABYMARVIN", + "decimals": 18, + "name": "BabyMarvin Inu", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xa163af4ab79cd705e5b16941b8619a79805bf9c7.png", + "aggregators": ["Rubic", "Rango", "Sonarwatch"], + "occurrences": 3 + }, + "0x0026dfbd8dbb6f8d0c88303cc1b1596409fda542": { + "address": "0x0026dfbd8dbb6f8d0c88303cc1b1596409fda542", + "symbol": "SANSHU", + "decimals": 18, + "name": "SANSHU", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x0026dfbd8dbb6f8d0c88303cc1b1596409fda542.png", + "aggregators": ["Rubic", "Rango", "Sonarwatch"], + "occurrences": 3 + }, + "0x64669032f612ae608671853ff8871df0889870a9": { + "address": "0x64669032f612ae608671853ff8871df0889870a9", + "symbol": "INU", + "decimals": 18, + "name": "INUGAMES", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x64669032f612ae608671853ff8871df0889870a9.png", + "aggregators": ["Rubic", "Rango", "Sonarwatch"], + "occurrences": 3 + }, + "0xd22a61e8503bea5842e5e0126ca9ffc4dd492084": { + "address": "0xd22a61e8503bea5842e5e0126ca9ffc4dd492084", + "symbol": "صباح الفرولة", + "decimals": 18, + "name": "Strawberry Elephant", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xd22a61e8503bea5842e5e0126ca9ffc4dd492084.png", + "aggregators": ["Rubic", "Rango", "Sonarwatch"], + "occurrences": 3 + }, + "0xa75e7928d3de682e3f44da60c26f33117c4e6c5c": { + "address": "0xa75e7928d3de682e3f44da60c26f33117c4e6c5c", + "symbol": "PEL", + "decimals": 18, + "name": "Propel", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xa75e7928d3de682e3f44da60c26f33117c4e6c5c.png", + "aggregators": ["Rubic", "Rango", "Sonarwatch"], + "occurrences": 3 + }, + "0x24ae2da0f361aa4be46b48eb19c91e02c5e4f27e": { + "address": "0x24ae2da0f361aa4be46b48eb19c91e02c5e4f27e", + "symbol": "MEVETH", + "decimals": 18, + "name": "mevETH", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x24ae2da0f361aa4be46b48eb19c91e02c5e4f27e.png", + "aggregators": ["Rubic", "Rango", "Sonarwatch"], + "occurrences": 3 + }, + "0xe3fedaecd47aa8eab6b23227b0ee56f092c967a9": { + "address": "0xe3fedaecd47aa8eab6b23227b0ee56f092c967a9", + "symbol": "PST", + "decimals": 18, + "name": "Primas", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xe3fedaecd47aa8eab6b23227b0ee56f092c967a9.png", + "aggregators": ["Rubic", "Rango", "Sonarwatch"], + "occurrences": 3 + }, + "0xf38feedb0c85c1e1d6864c7513ac646d28bb0cfc": { + "address": "0xf38feedb0c85c1e1d6864c7513ac646d28bb0cfc", + "symbol": "STZETA", + "decimals": 18, + "name": "Accumulated Finance Staked ZETA", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xf38feedb0c85c1e1d6864c7513ac646d28bb0cfc.png", + "aggregators": ["Rubic", "Rango", "Sonarwatch"], + "occurrences": 3 + }, + "0x9b00e6e8d787b13756eb919786c9745054db64f9": { + "address": "0x9b00e6e8d787b13756eb919786c9745054db64f9", + "symbol": "WSIENNA", + "decimals": 18, + "name": "Sienna ERC 20", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x9b00e6e8d787b13756eb919786c9745054db64f9.png", + "aggregators": ["Rubic", "Rango", "Sonarwatch"], + "occurrences": 3 + }, + "0xc03b43d492d904406db2d7d57e67c7e8234ba752": { + "address": "0xc03b43d492d904406db2d7d57e67c7e8234ba752", + "symbol": "WUSDR", + "decimals": 9, + "name": "Wrapped USDR", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xc03b43d492d904406db2d7d57e67c7e8234ba752.png", + "aggregators": ["Rubic", "Rango", "Sonarwatch"], + "occurrences": 3 + }, + "0x198d7387fa97a73f05b8578cdeff8f2a1f34cd1f": { + "address": "0x198d7387fa97a73f05b8578cdeff8f2a1f34cd1f", + "symbol": "WJAURA", + "decimals": 18, + "name": "Wrapped Jones AURA", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x198d7387fa97a73f05b8578cdeff8f2a1f34cd1f.png", + "aggregators": ["Rubic", "Rango", "Sonarwatch"], + "occurrences": 3 + }, + "0xaafec8e08d524d534327fa13fb306f440b5f88eb": { + "address": "0xaafec8e08d524d534327fa13fb306f440b5f88eb", + "symbol": "WCTC", + "decimals": 18, + "name": "Wrapped CTC", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xaafec8e08d524d534327fa13fb306f440b5f88eb.png", + "aggregators": ["Rubic", "Rango", "Sonarwatch"], + "occurrences": 3 + }, + "0xa684eaf215ad323452e2b2bf6f817d4aa5c116ab": { + "address": "0xa684eaf215ad323452e2b2bf6f817d4aa5c116ab", + "symbol": "LPETH", + "decimals": 18, + "name": "Loop ETH", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xa684eaf215ad323452e2b2bf6f817d4aa5c116ab.png", + "aggregators": ["Rubic", "Rango", "Sonarwatch"], + "occurrences": 3 + }, + "0xcaa79bf8b1d00bf3d4f6dbec6221955871c04618": { + "address": "0xcaa79bf8b1d00bf3d4f6dbec6221955871c04618", + "symbol": "CROC", + "decimals": 18, + "name": "CrocBot", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xcaa79bf8b1d00bf3d4f6dbec6221955871c04618.png", + "aggregators": ["Rubic", "Rango", "Sonarwatch"], + "occurrences": 3 + }, + "0x482702745260ffd69fc19943f70cffe2cacd70e9": { + "address": "0x482702745260ffd69fc19943f70cffe2cacd70e9", + "symbol": "JENNER", + "decimals": 18, + "name": "Caitlyn Jenner", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x482702745260ffd69fc19943f70cffe2cacd70e9.png", + "aggregators": ["Rubic", "Rango", "Sonarwatch"], + "occurrences": 3 + }, + "0x1bf7fd22709733ccd7c45ab27dd02c7ec8e50078": { + "address": "0x1bf7fd22709733ccd7c45ab27dd02c7ec8e50078", + "symbol": "QTCON", + "decimals": 18, + "name": "Quiztok", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x1bf7fd22709733ccd7c45ab27dd02c7ec8e50078.png", + "aggregators": ["Rubic", "Rango", "Sonarwatch"], + "occurrences": 3 + }, + "0xb7cffebb06621287c7850ffefb22c30252e78e6b": { + "address": "0xb7cffebb06621287c7850ffefb22c30252e78e6b", + "symbol": "DRIFT", + "decimals": 18, + "name": "Drift Token", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xb7cffebb06621287c7850ffefb22c30252e78e6b.png", + "aggregators": ["Rubic", "Rango", "Sonarwatch"], + "occurrences": 3 + }, + "0x19193f450086d0442157b852081976d41657ad56": { + "address": "0x19193f450086d0442157b852081976d41657ad56", + "symbol": "NNT", + "decimals": 18, + "name": "Nunu Spirits", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x19193f450086d0442157b852081976d41657ad56.png", + "aggregators": ["Rubic", "Rango", "Sonarwatch"], + "occurrences": 3 + }, + "0x9ba021b0a9b958b5e75ce9f6dff97c7ee52cb3e6": { + "address": "0x9ba021b0a9b958b5e75ce9f6dff97c7ee52cb3e6", + "symbol": "APXETH", + "decimals": 18, + "name": "Dinero apxETH", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x9ba021b0a9b958b5e75ce9f6dff97c7ee52cb3e6.png", + "aggregators": ["Rubic", "Rango", "Sonarwatch"], + "occurrences": 3 + }, + "0x39de85301c78f4d623e5c05cde2fd119a3a92cd9": { + "address": "0x39de85301c78f4d623e5c05cde2fd119a3a92cd9", + "symbol": "BLOBS", + "decimals": 9, + "name": "blobs", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x39de85301c78f4d623e5c05cde2fd119a3a92cd9.png", + "aggregators": ["Rubic", "Rango", "Sonarwatch"], + "occurrences": 3 + }, + "0x005f893ecd7bf9667195642f7649da8163e23658": { + "address": "0x005f893ecd7bf9667195642f7649da8163e23658", + "symbol": "DGNETH", + "decimals": 18, + "name": "Degen ETH Staked ETH", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x005f893ecd7bf9667195642f7649da8163e23658.png", + "aggregators": ["Rubic", "Rango", "Sonarwatch"], + "occurrences": 3 + }, + "0xc4b7af50644c661e270fbb8da770049c9fc0bbe1": { + "address": "0xc4b7af50644c661e270fbb8da770049c9fc0bbe1", + "symbol": "GOS", + "decimals": 18, + "name": "Gelios", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xc4b7af50644c661e270fbb8da770049c9fc0bbe1.png", + "aggregators": ["Rubic", "Rango", "Sonarwatch"], + "occurrences": 3 + }, + "0x270b7748cdf8243bfe68face7230ef0fce695389": { + "address": "0x270b7748cdf8243bfe68face7230ef0fce695389", + "symbol": "HETH", + "decimals": 18, + "name": "Hinkal Staked ETH", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x270b7748cdf8243bfe68face7230ef0fce695389.png", + "aggregators": ["Rubic", "Rango", "Sonarwatch"], + "occurrences": 3 + }, + "0x2d787d4f5005bd66ac910c2e821241625c406ed5": { + "address": "0x2d787d4f5005bd66ac910c2e821241625c406ed5", + "symbol": "BERRY", + "decimals": 18, + "name": "Berry", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x2d787d4f5005bd66ac910c2e821241625c406ed5.png", + "aggregators": ["Rubic", "Rango", "Sonarwatch"], + "occurrences": 3 + }, + "0x34ba042827996821cffeb06477d48a2ff9474483": { + "address": "0x34ba042827996821cffeb06477d48a2ff9474483", + "symbol": "SHIB20", + "decimals": 8, + "name": "Shib2 0", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x34ba042827996821cffeb06477d48a2ff9474483.png", + "aggregators": ["Rubic", "Rango", "Sonarwatch"], + "occurrences": 3 + }, + "0xd1c8fa30fded3e0031dc24c1646d74108b096cc2": { + "address": "0xd1c8fa30fded3e0031dc24c1646d74108b096cc2", + "symbol": "LUCKY", + "decimals": 9, + "name": "Luckyinu", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xd1c8fa30fded3e0031dc24c1646d74108b096cc2.png", + "aggregators": ["Rubic", "Rango", "Sonarwatch"], + "occurrences": 3 + }, + "0x723696965f47b990dff00064fcaca95f0ee01123": { + "address": "0x723696965f47b990dff00064fcaca95f0ee01123", + "symbol": "ARBOT", + "decimals": 18, + "name": "Alpha Radar AI", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x723696965f47b990dff00064fcaca95f0ee01123.png", + "aggregators": ["Rubic", "Rango", "Sonarwatch"], + "occurrences": 3 + }, + "0x7b20798866fe3320ec5395e9978a3c98195c7c36": { + "address": "0x7b20798866fe3320ec5395e9978a3c98195c7c36", + "symbol": "DEGEN", + "decimals": 18, + "name": "DegenAds", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x7b20798866fe3320ec5395e9978a3c98195c7c36.png", + "aggregators": ["Rubic", "Rango", "Sonarwatch"], + "occurrences": 3 + }, + "0x024b6e7dc26f4d5579bdd936f8d7bc31f2339999": { + "address": "0x024b6e7dc26f4d5579bdd936f8d7bc31f2339999", + "symbol": "MIS", + "decimals": 18, + "name": "Mithril Share", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x024b6e7dc26f4d5579bdd936f8d7bc31f2339999.png", + "aggregators": ["Rubic", "Rango", "Sonarwatch"], + "occurrences": 3 + }, + "0x66d592cc979d441a3e4dbb6e043c3bdad241dab7": { + "address": "0x66d592cc979d441a3e4dbb6e043c3bdad241dab7", + "symbol": "ZERO", + "decimals": 18, + "name": "Zero Money", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x66d592cc979d441a3e4dbb6e043c3bdad241dab7.png", + "aggregators": ["Rubic", "Rango", "SushiSwap"], + "occurrences": 3 + }, + "0xadc234a4e90e2045f353f5d4fcde66144d23b458": { + "address": "0xadc234a4e90e2045f353f5d4fcde66144d23b458", + "symbol": "FUSDT", + "decimals": 6, + "name": "Fluid USDT", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xadc234a4e90e2045f353f5d4fcde66144d23b458.png", + "aggregators": ["Rubic", "Rango", "SushiSwap"], + "occurrences": 3 + }, + "0x3c37577f1de12046aea6975862559a50d8f50158": { + "address": "0x3c37577f1de12046aea6975862559a50d8f50158", + "symbol": "ETHC", + "decimals": 18, + "name": "ETH Coin", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x3c37577f1de12046aea6975862559a50d8f50158.png", + "aggregators": ["Rubic", "Rango", "SushiSwap"], + "occurrences": 3 + }, + "0xe5597f0723eeaba1b26948e06f008bf0fc1e37e6": { + "address": "0xe5597f0723eeaba1b26948e06f008bf0fc1e37e6", + "symbol": "GM", + "decimals": 18, + "name": "GM", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xe5597f0723eeaba1b26948e06f008bf0fc1e37e6.png", + "aggregators": ["Rubic", "Rango", "Sonarwatch"], + "occurrences": 3 + }, + "0x20d60c6eb195868d4643f2c9b0809e4de6cc003d": { + "address": "0x20d60c6eb195868d4643f2c9b0809e4de6cc003d", + "symbol": "PLY", + "decimals": 6, + "name": "PlayNity", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x20d60c6eb195868d4643f2c9b0809e4de6cc003d.png", + "aggregators": ["Rubic", "Rango", "Sonarwatch"], + "occurrences": 3 + }, + "0x9e6b19874e97fe8e8cad77f2c0ab5e7a693e5dbf": { + "address": "0x9e6b19874e97fe8e8cad77f2c0ab5e7a693e5dbf", + "symbol": "ISHND", + "decimals": 18, + "name": "StrongHands Finance", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x9e6b19874e97fe8e8cad77f2c0ab5e7a693e5dbf.png", + "aggregators": ["Rubic", "Rango", "Sonarwatch"], + "occurrences": 3 + }, + "0x3e70f6806171873d17d4bfc984a6f9d20f5a9018": { + "address": "0x3e70f6806171873d17d4bfc984a6f9d20f5a9018", + "symbol": "COIN", + "decimals": 18, + "name": "BrianArmstrongTrumpYellenGTA6", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x3e70f6806171873d17d4bfc984a6f9d20f5a9018.png", + "aggregators": ["Rubic", "Rango", "Sonarwatch"], + "occurrences": 3 + }, + "0xefc3f1ecff8b9e9389323ef610bb9149236e62fd": { + "address": "0xefc3f1ecff8b9e9389323ef610bb9149236e62fd", + "symbol": "LMI", + "decimals": 18, + "name": "Lucky Mio", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xefc3f1ecff8b9e9389323ef610bb9149236e62fd.png", + "aggregators": ["Rubic", "Rango", "Sonarwatch"], + "occurrences": 3 + }, + "0x7c5d5100b339fe7d995a893af6cb496b9474373c": { + "address": "0x7c5d5100b339fe7d995a893af6cb496b9474373c", + "symbol": "LOON", + "decimals": 18, + "name": "Loon Network", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x7c5d5100b339fe7d995a893af6cb496b9474373c.png", + "aggregators": ["Rubic", "Rango", "Sonarwatch"], + "occurrences": 3 + }, + "0x0a8f4c4f23d72857745e26695dcd8dedf8e349b9": { + "address": "0x0a8f4c4f23d72857745e26695dcd8dedf8e349b9", + "symbol": "MARKS", + "decimals": 18, + "name": "Marksman", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x0a8f4c4f23d72857745e26695dcd8dedf8e349b9.png", + "aggregators": ["Rubic", "Rango", "Sonarwatch"], + "occurrences": 3 + }, + "0x144805be43c48ef85435c94e0da4cb4efb1ab4f3": { + "address": "0x144805be43c48ef85435c94e0da4cb4efb1ab4f3", + "symbol": "MBX", + "decimals": 18, + "name": "MetaBlox", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x144805be43c48ef85435c94e0da4cb4efb1ab4f3.png", + "aggregators": ["Rubic", "Rango", "Sonarwatch"], + "occurrences": 3 + }, + "0x6c3d78e55fc939da4ca94760f6b27c3425a7a865": { + "address": "0x6c3d78e55fc939da4ca94760f6b27c3425a7a865", + "symbol": "MEGADEATH", + "decimals": 9, + "name": "MEGADEATH PEPE", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x6c3d78e55fc939da4ca94760f6b27c3425a7a865.png", + "aggregators": ["Rubic", "Rango", "Sonarwatch"], + "occurrences": 3 + }, + "0x34bdf48a8f753de4822a6cfb1fee275f9b4d662e": { + "address": "0x34bdf48a8f753de4822a6cfb1fee275f9b4d662e", + "symbol": "BKC", + "decimals": 18, + "name": "FACTS", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x34bdf48a8f753de4822a6cfb1fee275f9b4d662e.png", + "aggregators": ["Rubic", "Rango", "Sonarwatch"], + "occurrences": 3 + }, + "0x142f4330ab3eda738cb373791c2e99cc325bed20": { + "address": "0x142f4330ab3eda738cb373791c2e99cc325bed20", + "symbol": "SOB", + "decimals": 9, + "name": "Secured On Blockchain", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x142f4330ab3eda738cb373791c2e99cc325bed20.png", + "aggregators": ["Rubic", "Rango", "Sonarwatch"], + "occurrences": 3 + }, + "0x08d0222a206d1aee59a9b66969c04fd1e8a0f864": { + "address": "0x08d0222a206d1aee59a9b66969c04fd1e8a0f864", + "symbol": "MOMOV2", + "decimals": 18, + "name": "Momo v2", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x08d0222a206d1aee59a9b66969c04fd1e8a0f864.png", + "aggregators": ["Rubic", "Rango", "Sonarwatch"], + "occurrences": 3 + }, + "0x08f5a9235b08173b7569f83645d2c7fb55e8ccd8": { + "address": "0x08f5a9235b08173b7569f83645d2c7fb55e8ccd8", + "symbol": "TNT", + "decimals": 8, + "name": "Tierion", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x08f5a9235b08173b7569f83645d2c7fb55e8ccd8.png", + "aggregators": ["Rubic", "Rango", "Sonarwatch"], + "occurrences": 3 + }, + "0x2e19067cbeb38d6554d31a1a83aefc4018a1688a": { + "address": "0x2e19067cbeb38d6554d31a1a83aefc4018a1688a", + "symbol": "CBK", + "decimals": 18, + "name": "Coinback", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x2e19067cbeb38d6554d31a1a83aefc4018a1688a.png", + "aggregators": ["Rubic", "Rango", "Sonarwatch"], + "occurrences": 3 + }, + "0x44197a4c44d6a059297caf6be4f7e172bd56caaf": { + "address": "0x44197a4c44d6a059297caf6be4f7e172bd56caaf", + "symbol": "ELT", + "decimals": 8, + "name": "ELTCOIN", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x44197a4c44d6a059297caf6be4f7e172bd56caaf.png", + "aggregators": ["Metamask", "Rubic"], + "occurrences": 2 + }, + "0x01fa555c97d7958fa6f771f3bbd5ccd508f81e22": { + "address": "0x01fa555c97d7958fa6f771f3bbd5ccd508f81e22", + "symbol": "CVL", + "decimals": 18, + "name": "Civil Token", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x01fa555c97d7958fa6f771f3bbd5ccd508f81e22.png", + "aggregators": ["Metamask", "Rubic"], + "occurrences": 2 + }, + "0x06b179e292f080871825bed5d722162fd96b4c95": { + "address": "0x06b179e292f080871825bed5d722162fd96b4c95", + "symbol": "XGG", + "decimals": 18, + "name": "10x.gg", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x06b179e292f080871825bed5d722162fd96b4c95.png", + "aggregators": ["Metamask", "Rubic"], + "occurrences": 2 + }, + "0x150b0b96933b75ce27af8b92441f8fb683bf9739": { + "address": "0x150b0b96933b75ce27af8b92441f8fb683bf9739", + "symbol": "GOLD", + "decimals": 18, + "name": "Dragonereum Gold", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x150b0b96933b75ce27af8b92441f8fb683bf9739.png", + "aggregators": ["Metamask", "Rubic"], + "occurrences": 2 + }, + "0x4470bb87d77b963a013db939be332f927f2b992e": { + "address": "0x4470bb87d77b963a013db939be332f927f2b992e", + "symbol": "ADXL", + "decimals": 4, + "name": "AdEx Legacy Token", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x4470bb87d77b963a013db939be332f927f2b992e.png", + "aggregators": ["Metamask", "Socket"], + "occurrences": 2 + }, + "0x47be779de87de6580d0548cde80710a93c502405": { + "address": "0x47be779de87de6580d0548cde80710a93c502405", + "symbol": "XRNBW", + "decimals": 18, + "name": "Rainbow Pool", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x47be779de87de6580d0548cde80710a93c502405.png", + "aggregators": ["Metamask", "Rubic"], + "occurrences": 2 + }, + "0x4ad7a056191f4c9519facd6d75fa94ca26003ace": { + "address": "0x4ad7a056191f4c9519facd6d75fa94ca26003ace", + "symbol": "GPO", + "decimals": 18, + "name": "GoldPesa Option", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x4ad7a056191f4c9519facd6d75fa94ca26003ace.png", + "aggregators": ["Metamask", "Rubic"], + "occurrences": 2 + }, + "0x946112efab61c3636cbd52de2e1392d7a75a6f01": { + "address": "0x946112efab61c3636cbd52de2e1392d7a75a6f01", + "symbol": "HYDRO", + "decimals": 18, + "name": "HYDRO TOKEN", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x946112efab61c3636cbd52de2e1392d7a75a6f01.png", + "aggregators": ["Metamask", "Rubic"], + "occurrences": 2 + }, + "0x957c30ab0426e0c93cd8241e2c60392d08c6ac8e": { + "address": "0x957c30ab0426e0c93cd8241e2c60392d08c6ac8e", + "symbol": "MOD", + "decimals": 18, + "name": "Modum Token", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x957c30ab0426e0c93cd8241e2c60392d08c6ac8e.png", + "aggregators": ["Metamask", "Rubic"], + "occurrences": 2 + }, + "0xaa0200d169ff3ba9385c12e073c5d1d30434ae7b": { + "address": "0xaa0200d169ff3ba9385c12e073c5d1d30434ae7b", + "symbol": "AMUSD", + "decimals": 6, + "name": "Aave v3 mUSD", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xaa0200d169ff3ba9385c12e073c5d1d30434ae7b.png", + "aggregators": ["Metamask", "LiFi"], + "occurrences": 2 + }, + "0xc741f06082aa47f93729070ad0dd95e223bda091": { + "address": "0xc741f06082aa47f93729070ad0dd95e223bda091", + "symbol": "LEDU", + "decimals": 8, + "name": "LEDU Token", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xc741f06082aa47f93729070ad0dd95e223bda091.png", + "aggregators": ["Metamask", "Rubic"], + "occurrences": 2 + }, + "0xcdeee767bed58c5325f68500115d4b722b3724ee": { + "address": "0xcdeee767bed58c5325f68500115d4b722b3724ee", + "symbol": "CRBN", + "decimals": 18, + "name": "Carbon", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xcdeee767bed58c5325f68500115d4b722b3724ee.png", + "aggregators": ["Metamask", "Rubic"], + "occurrences": 2 + }, + "0xaec2e87e0a235266d9c5adc9deb4b2e29b54d009": { + "address": "0xaec2e87e0a235266d9c5adc9deb4b2e29b54d009", + "symbol": "SNGLS", + "decimals": 18, + "name": "SingularDTV", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xaec2e87e0a235266d9c5adc9deb4b2e29b54d009.png", + "aggregators": ["Metamask", "Rubic"], + "occurrences": 2 + }, + "0xc4a11aaf6ea915ed7ac194161d2fc9384f15bff2": { + "address": "0xc4a11aaf6ea915ed7ac194161d2fc9384f15bff2", + "symbol": "WTON", + "decimals": 27, + "name": "Wrapped TON", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xc4a11aaf6ea915ed7ac194161d2fc9384f15bff2.png", + "aggregators": ["Metamask", "Rango"], + "occurrences": 2 + }, + "0xd42debe4edc92bd5a3fbb4243e1eccf6d63a4a5d": { + "address": "0xd42debe4edc92bd5a3fbb4243e1eccf6d63a4a5d", + "symbol": "C8", + "decimals": 18, + "name": "Carboneum", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xd42debe4edc92bd5a3fbb4243e1eccf6d63a4a5d.png", + "aggregators": ["Metamask", "Rubic"], + "occurrences": 2 + }, + "0xd8446236fa95b9b5f9fd0f8e7df1a944823c683d": { + "address": "0xd8446236fa95b9b5f9fd0f8e7df1a944823c683d", + "symbol": "NEEO", + "decimals": 18, + "name": "NEEO", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xd8446236fa95b9b5f9fd0f8e7df1a944823c683d.png", + "aggregators": ["Metamask", "Rubic"], + "occurrences": 2 + }, + "0xe7ae6d0c56cacaf007b7e4d312f9af686a9e9a04": { + "address": "0xe7ae6d0c56cacaf007b7e4d312f9af686a9e9a04", + "symbol": "VAB", + "decimals": 18, + "name": "Vabble", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xe7ae6d0c56cacaf007b7e4d312f9af686a9e9a04.png", + "aggregators": ["Metamask", "Rubic"], + "occurrences": 2 + }, + "0xef31cb88048416e301fee1ea13e7664b887ba7e8": { + "address": "0xef31cb88048416e301fee1ea13e7664b887ba7e8", + "symbol": "SYAX", + "decimals": 18, + "name": "Staked yAxis", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xef31cb88048416e301fee1ea13e7664b887ba7e8.png", + "aggregators": ["Metamask", "Rubic"], + "occurrences": 2 + }, + "0x99cfb8cba9c821b4a343c6a1fc630465c9708df5": { + "address": "0x99cfb8cba9c821b4a343c6a1fc630465c9708df5", + "symbol": "$PEPEINU", + "decimals": 18, + "name": "Pepe Inu", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x99cfb8cba9c821b4a343c6a1fc630465c9708df5.png", + "aggregators": ["Metamask"], + "occurrences": 1 + }, + "0x000c100050e98c91f9114fa5dd75ce6869bf4f53": { + "address": "0x000c100050e98c91f9114fa5dd75ce6869bf4f53", + "symbol": "C10", + "decimals": 18, + "name": "CRYPTO10 Hedged", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x000c100050e98c91f9114fa5dd75ce6869bf4f53.png", + "aggregators": ["Metamask"], + "occurrences": 1 + }, + "0x008377eb0c62ce8e0ba3d7bb4a5638591f21588e": { + "address": "0x008377eb0c62ce8e0ba3d7bb4a5638591f21588e", + "symbol": "BYFL", + "decimals": 18, + "name": "YFLink Bond", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x008377eb0c62ce8e0ba3d7bb4a5638591f21588e.png", + "aggregators": ["Metamask"], + "occurrences": 1 + }, + "0x02f61fd266da6e8b102d4121f5ce7b992640cf98": { + "address": "0x02f61fd266da6e8b102d4121f5ce7b992640cf98", + "symbol": "LIKE", + "decimals": 18, + "name": "LikeCoin", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x02f61fd266da6e8b102d4121f5ce7b992640cf98.png", + "aggregators": ["Metamask"], + "occurrences": 1 + }, + "0x031002d15b0d0cd7c9129d6f644446368deae391": { + "address": "0x031002d15b0d0cd7c9129d6f644446368deae391", + "symbol": "UNLINK", + "decimals": 8, + "name": "unFederal LINK", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x031002d15b0d0cd7c9129d6f644446368deae391.png", + "aggregators": ["Metamask"], + "occurrences": 1 + }, + "0x039b5649a59967e3e936d7471f9c3700100ee1ab": { + "address": "0x039b5649a59967e3e936d7471f9c3700100ee1ab", + "symbol": "KCS", + "decimals": 6, + "name": "Kucoin Shares", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x039b5649a59967e3e936d7471f9c3700100ee1ab.png", + "aggregators": ["Metamask"], + "occurrences": 1 + }, + "0x03e3f0c25965f13dbbc58246738c183e27b26a56": { + "address": "0x03e3f0c25965f13dbbc58246738c183e27b26a56", + "symbol": "DSCP", + "decimals": 18, + "name": "Disciplina Token", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x03e3f0c25965f13dbbc58246738c183e27b26a56.png", + "aggregators": ["Metamask"], + "occurrences": 1 + }, + "0x09e6d500d14d13e0528d2c0fff24e5fff68237b4": { + "address": "0x09e6d500d14d13e0528d2c0fff24e5fff68237b4", + "symbol": "DHN", + "decimals": 18, + "name": "Dohrnii", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x09e6d500d14d13e0528d2c0fff24e5fff68237b4.png", + "aggregators": ["Metamask"], + "occurrences": 1 + }, + "0x0c4576ca1c365868e162554af8e385dc3e7c66d9": { + "address": "0x0c4576ca1c365868e162554af8e385dc3e7c66d9", + "symbol": "VEOGV", + "decimals": 18, + "name": "Vote Escrowed Origin DeFi Governance", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x0c4576ca1c365868e162554af8e385dc3e7c66d9.png", + "aggregators": ["Metamask"], + "occurrences": 1 + }, + "0x0a625fcec657053fe2d9fffdeb1dbb4e412cf8a8": { + "address": "0x0a625fcec657053fe2d9fffdeb1dbb4e412cf8a8", + "symbol": "IUNI", + "decimals": 18, + "name": "Fulcrum UNI iToken (iUNI)", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x0a625fcec657053fe2d9fffdeb1dbb4e412cf8a8.png", + "aggregators": ["Metamask"], + "occurrences": 1 + }, + "0x0c0104e35a101de9af2e0cb307a15e1175580bd5": { + "address": "0x0c0104e35a101de9af2e0cb307a15e1175580bd5", + "symbol": "XBTC", + "decimals": 18, + "name": "xBTC", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x0c0104e35a101de9af2e0cb307a15e1175580bd5.png", + "aggregators": ["Metamask"], + "occurrences": 1 + }, + "0x0cb8d0b37c7487b11d57f1f33defa2b1d3cfccfe": { + "address": "0x0cb8d0b37c7487b11d57f1f33defa2b1d3cfccfe", + "symbol": "DANK", + "decimals": 18, + "name": "DANKToken", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x0cb8d0b37c7487b11d57f1f33defa2b1d3cfccfe.png", + "aggregators": ["Metamask"], + "occurrences": 1 + }, + "0x0cae8d91e0b1b7bd00d906e990c3625b2c220db1": { + "address": "0x0cae8d91e0b1b7bd00d906e990c3625b2c220db1", + "symbol": "IAAVE", + "decimals": 18, + "name": "Fulcrum AAVE iToken (iAAVE)", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x0cae8d91e0b1b7bd00d906e990c3625b2c220db1.png", + "aggregators": ["Metamask"], + "occurrences": 1 + }, + "0x13cb85823f78cff38f0b0e90d3e975b8cb3aad64": { + "address": "0x13cb85823f78cff38f0b0e90d3e975b8cb3aad64", + "symbol": "REMI", + "decimals": 18, + "name": "REMIIT REMI Token", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x13cb85823f78cff38f0b0e90d3e975b8cb3aad64.png", + "aggregators": ["Metamask"], + "occurrences": 1 + }, + "0x16affa80c65fd7003d40b24edb96f77b38ddc96a": { + "address": "0x16affa80c65fd7003d40b24edb96f77b38ddc96a", + "symbol": "VXZK", + "decimals": 18, + "name": "ExpandZK Vote Token", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x16affa80c65fd7003d40b24edb96f77b38ddc96a.png", + "aggregators": ["Metamask"], + "occurrences": 1 + }, + "0x18240bd9c07fa6156ce3f3f61921cc82b2619157": { + "address": "0x18240bd9c07fa6156ce3f3f61921cc82b2619157", + "symbol": "IBZRX", + "decimals": 18, + "name": "Fulcrum BZRX iToken (iBZRX)", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x18240bd9c07fa6156ce3f3f61921cc82b2619157.png", + "aggregators": ["Metamask"], + "occurrences": 1 + }, + "0x1ba26788dfde592fec8bcb0eaff472a42be341b2": { + "address": "0x1ba26788dfde592fec8bcb0eaff472a42be341b2", + "symbol": "FPS", + "decimals": 18, + "name": "Frankencoin Pool Share", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x1ba26788dfde592fec8bcb0eaff472a42be341b2.png", + "aggregators": ["Metamask"], + "occurrences": 1 + }, + "0x1f41e42d0a9e3c0dd3ba15b527342783b43200a9": { + "address": "0x1f41e42d0a9e3c0dd3ba15b527342783b43200a9", + "symbol": "BCAP", + "decimals": 18, + "name": "Blockchain Capital", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x1f41e42d0a9e3c0dd3ba15b527342783b43200a9.png", + "aggregators": ["Metamask"], + "occurrences": 1 + }, + "0x26805021988f1a45dc708b5fb75fc75f21747d8c": { + "address": "0x26805021988f1a45dc708b5fb75fc75f21747d8c", + "symbol": "XGAMMA", + "decimals": 18, + "name": "xGamma", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x26805021988f1a45dc708b5fb75fc75f21747d8c.png", + "aggregators": ["Metamask"], + "occurrences": 1 + }, + "0x287a7c95ad00bbdd48599ad2919567fd09281f07": { + "address": "0x287a7c95ad00bbdd48599ad2919567fd09281f07", + "symbol": "STEELO", + "decimals": 18, + "name": "STEELO", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x287a7c95ad00bbdd48599ad2919567fd09281f07.png", + "aggregators": ["Metamask"], + "occurrences": 1 + }, + "0x2dba05b51ef5a7de3e7c3327201ca2f8a25c2414": { + "address": "0x2dba05b51ef5a7de3e7c3327201ca2f8a25c2414", + "symbol": "UNDAI", + "decimals": 8, + "name": "unFederal DAI", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x2dba05b51ef5a7de3e7c3327201ca2f8a25c2414.png", + "aggregators": ["Metamask"], + "occurrences": 1 + }, + "0x2ffa85f655752fb2acb210287c60b9ef335f5b6e": { + "address": "0x2ffa85f655752fb2acb210287c60b9ef335f5b6e", + "symbol": "IWBTC", + "decimals": 8, + "name": "Fulcrum WBTC iToken (iWBTC)", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x2ffa85f655752fb2acb210287c60b9ef335f5b6e.png", + "aggregators": ["Metamask"], + "occurrences": 1 + }, + "0x32e4c68b3a4a813b710595aeba7f6b7604ab9c15": { + "address": "0x32e4c68b3a4a813b710595aeba7f6b7604ab9c15", + "symbol": "IUSDC", + "decimals": 6, + "name": "Fulcrum USDC iToken (iUSDC)", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x32e4c68b3a4a813b710595aeba7f6b7604ab9c15.png", + "aggregators": ["Metamask"], + "occurrences": 1 + }, + "0x3c44aec33993b6830e5c2a705ea879b9c9ba0f7c": { + "address": "0x3c44aec33993b6830e5c2a705ea879b9c9ba0f7c", + "symbol": "NYELA", + "decimals": 18, + "name": "NYELA", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x3c44aec33993b6830e5c2a705ea879b9c9ba0f7c.png", + "aggregators": ["Metamask"], + "occurrences": 1 + }, + "0x3da0e01472dee3746b4d324a65d7edfaeca9aa4f": { + "address": "0x3da0e01472dee3746b4d324a65d7edfaeca9aa4f", + "symbol": "ILRC", + "decimals": 18, + "name": "Fulcrum LRC iToken (iLRC)", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x3da0e01472dee3746b4d324a65d7edfaeca9aa4f.png", + "aggregators": ["Metamask"], + "occurrences": 1 + }, + "0x463538705e7d22aa7f03ebf8ab09b067e1001b54": { + "address": "0x463538705e7d22aa7f03ebf8ab09b067e1001b54", + "symbol": "ILINK", + "decimals": 18, + "name": "Fulcrum LINK iToken (iLINK)", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x463538705e7d22aa7f03ebf8ab09b067e1001b54.png", + "aggregators": ["Metamask"], + "occurrences": 1 + }, + "0x4f4f0db4de903b88f2b1a2847971e231d54f8fd3": { + "address": "0x4f4f0db4de903b88f2b1a2847971e231d54f8fd3", + "symbol": "GEE", + "decimals": 8, + "name": "Geens Platform Token", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x4f4f0db4de903b88f2b1a2847971e231d54f8fd3.png", + "aggregators": ["Metamask"], + "occurrences": 1 + }, + "0x5401f949cdfa3e5af32538167c0314230769209c": { + "address": "0x5401f949cdfa3e5af32538167c0314230769209c", + "symbol": "MAHCOIN", + "decimals": 18, + "name": "MAHCOIN", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x5401f949cdfa3e5af32538167c0314230769209c.png", + "aggregators": ["Metamask"], + "occurrences": 1 + }, + "0x54b79a15b2e2c55c736a66bb0a978fb840407ac8": { + "address": "0x54b79a15b2e2c55c736a66bb0a978fb840407ac8", + "symbol": "FEVER", + "decimals": 18, + "name": "FEVER", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x54b79a15b2e2c55c736a66bb0a978fb840407ac8.png", + "aggregators": ["Metamask"], + "occurrences": 1 + }, + "0x5d446fc8dbd10ebacfe9a427ab5402586af98cd4": { + "address": "0x5d446fc8dbd10ebacfe9a427ab5402586af98cd4", + "symbol": "UNWBTC", + "decimals": 8, + "name": "unFederal WBTC", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x5d446fc8dbd10ebacfe9a427ab5402586af98cd4.png", + "aggregators": ["Metamask"], + "occurrences": 1 + }, + "0x65514b352d1d4a17de97f95c7fab177c625bd6ff": { + "address": "0x65514b352d1d4a17de97f95c7fab177c625bd6ff", + "symbol": "KBLE", + "decimals": 18, + "name": "KIBBLE Token", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x65514b352d1d4a17de97f95c7fab177c625bd6ff.png", + "aggregators": ["Metamask"], + "occurrences": 1 + }, + "0x665f77fba5975ab40ce61c90f28007fb5b09d7b1": { + "address": "0x665f77fba5975ab40ce61c90f28007fb5b09d7b1", + "symbol": "GENIE", + "decimals": 18, + "name": "Genieswap", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x665f77fba5975ab40ce61c90f28007fb5b09d7b1.png", + "aggregators": ["Metamask"], + "occurrences": 1 + }, + "0x677c9fe4396d3d13a0f9013a8118eae386c843a5": { + "address": "0x677c9fe4396d3d13a0f9013a8118eae386c843a5", + "symbol": "IAM", + "decimals": 18, + "name": "IAM", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x677c9fe4396d3d13a0f9013a8118eae386c843a5.png", + "aggregators": ["Metamask"], + "occurrences": 1 + }, + "0x687642347a9282be8fd809d8309910a3f984ac5a": { + "address": "0x687642347a9282be8fd809d8309910a3f984ac5a", + "symbol": "IKNC", + "decimals": 18, + "name": "Fulcrum KNC iToken (iKNC)", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x687642347a9282be8fd809d8309910a3f984ac5a.png", + "aggregators": ["Metamask"], + "occurrences": 1 + }, + "0x6aedbf8dff31437220df351950ba2a3362168d1b": { + "address": "0x6aedbf8dff31437220df351950ba2a3362168d1b", + "symbol": "DGS", + "decimals": 8, + "name": "Dragonglass", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x6aedbf8dff31437220df351950ba2a3362168d1b.png", + "aggregators": ["Metamask"], + "occurrences": 1 + }, + "0x6b093998d36f2c7f0cc359441fbb24cc629d5ff0": { + "address": "0x6b093998d36f2c7f0cc359441fbb24cc629d5ff0", + "symbol": "IDAI", + "decimals": 18, + "name": "Fulcrum DAI iToken (iDAI)", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x6b093998d36f2c7f0cc359441fbb24cc629d5ff0.png", + "aggregators": ["Metamask"], + "occurrences": 1 + }, + "0x6b576972de33bebde3a703bff52a091e79f8c87a": { + "address": "0x6b576972de33bebde3a703bff52a091e79f8c87a", + "symbol": "UNUSDC", + "decimals": 8, + "name": "unFederal USDC", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x6b576972de33bebde3a703bff52a091e79f8c87a.png", + "aggregators": ["Metamask"], + "occurrences": 1 + }, + "0x6d29903bc2c4318b59b35d97ab98ab9ec08ed70d": { + "address": "0x6d29903bc2c4318b59b35d97ab98ab9ec08ed70d", + "symbol": "ICOMP", + "decimals": 18, + "name": "Fulcrum COMP iToken (iCOMP)", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x6d29903bc2c4318b59b35d97ab98ab9ec08ed70d.png", + "aggregators": ["Metamask"], + "occurrences": 1 + }, + "0x6e2aa5bb90ac37d9006685afc651ef067e1c7b44": { + "address": "0x6e2aa5bb90ac37d9006685afc651ef067e1c7b44", + "symbol": "UNUSDT", + "decimals": 8, + "name": "unFederal USDT", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x6e2aa5bb90ac37d9006685afc651ef067e1c7b44.png", + "aggregators": ["Metamask"], + "occurrences": 1 + }, + "0x7064aab39a0fcf7221c3396719d0917a65e35515": { + "address": "0x7064aab39a0fcf7221c3396719d0917a65e35515", + "symbol": "CPLO", + "decimals": 18, + "name": "Cpollo", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x7064aab39a0fcf7221c3396719d0917a65e35515.png", + "aggregators": ["Metamask"], + "occurrences": 1 + }, + "0x711d2c47aff84b96ad0f36983b1c41be2c509e18": { + "address": "0x711d2c47aff84b96ad0f36983b1c41be2c509e18", + "symbol": "NIKITA", + "decimals": 18, + "name": "NIKITA", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x711d2c47aff84b96ad0f36983b1c41be2c509e18.png", + "aggregators": ["Metamask"], + "occurrences": 1 + }, + "0x75d1aa733920b14fc74c9f6e6fab7ac1ece8482e": { + "address": "0x75d1aa733920b14fc74c9f6e6fab7ac1ece8482e", + "symbol": "YYFL", + "decimals": 18, + "name": "YFLink Staking Share", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x75d1aa733920b14fc74c9f6e6fab7ac1ece8482e.png", + "aggregators": ["Metamask"], + "occurrences": 1 + }, + "0x7d85e23014f84e6e21d5663acd8751bef3562352": { + "address": "0x7d85e23014f84e6e21d5663acd8751bef3562352", + "symbol": "AXNV1", + "decimals": 18, + "name": "Axion Old", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x7d85e23014f84e6e21d5663acd8751bef3562352.png", + "aggregators": ["Metamask"], + "occurrences": 1 + }, + "0x7f3fe9d492a9a60aebb06d82cba23c6f32cad10b": { + "address": "0x7f3fe9d492a9a60aebb06d82cba23c6f32cad10b", + "symbol": "IYFI", + "decimals": 18, + "name": "Fulcrum YFI iToken (iYFI)", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x7f3fe9d492a9a60aebb06d82cba23c6f32cad10b.png", + "aggregators": ["Metamask"], + "occurrences": 1 + }, + "0x7ba92741bf2a568abc6f1d3413c58c6e0244f8fd": { + "address": "0x7ba92741bf2a568abc6f1d3413c58c6e0244f8fd", + "symbol": "GBPE", + "decimals": 18, + "name": "Monerium GBP", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x7ba92741bf2a568abc6f1d3413c58c6e0244f8fd.png", + "aggregators": ["Metamask"], + "occurrences": 1 + }, + "0x7e9997a38a439b2be7ed9c9c4628391d3e055d48": { + "address": "0x7e9997a38a439b2be7ed9c9c4628391d3e055d48", + "symbol": "IUSDT", + "decimals": 6, + "name": "Fulcrum USDT iToken (iUSDT)", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x7e9997a38a439b2be7ed9c9c4628391d3e055d48.png", + "aggregators": ["Metamask"], + "occurrences": 1 + }, + "0x86f2a193b116d1f9c53ed26d97f77cdc8bcf4c2b": { + "address": "0x86f2a193b116d1f9c53ed26d97f77cdc8bcf4c2b", + "symbol": "EHTAGA", + "decimals": 18, + "name": "EHTAGA", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x86f2a193b116d1f9c53ed26d97f77cdc8bcf4c2b.png", + "aggregators": ["Metamask"], + "occurrences": 1 + }, + "0x88d8da2a8d0fa5b1f4e38030ac486ade0afa2798": { + "address": "0x88d8da2a8d0fa5b1f4e38030ac486ade0afa2798", + "symbol": "TPSC", + "decimals": 18, + "name": "Terrapass Coin", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x88d8da2a8d0fa5b1f4e38030ac486ade0afa2798.png", + "aggregators": ["Metamask"], + "occurrences": 1 + }, + "0x8e3bcc334657560253b83f08331d85267316e08a": { + "address": "0x8e3bcc334657560253b83f08331d85267316e08a", + "symbol": "BRBC", + "decimals": 18, + "name": "Rubic", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x8e3bcc334657560253b83f08331d85267316e08a.png", + "aggregators": ["Metamask"], + "occurrences": 1 + }, + "0x9189c499727f88f8ecc7dc4eea22c828e6aac015": { + "address": "0x9189c499727f88f8ecc7dc4eea22c828e6aac015", + "symbol": "IMKR", + "decimals": 18, + "name": "Fulcrum MKR iToken (iMKR)", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x9189c499727f88f8ecc7dc4eea22c828e6aac015.png", + "aggregators": ["Metamask"], + "occurrences": 1 + }, + "0x9b6b9d2468e165a02fef69e61b6d3d6cbc0ac409": { + "address": "0x9b6b9d2468e165a02fef69e61b6d3d6cbc0ac409", + "symbol": "OFE", + "decimals": 18, + "name": "OASISLIFE", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x9b6b9d2468e165a02fef69e61b6d3d6cbc0ac409.png", + "aggregators": ["Metamask"], + "occurrences": 1 + }, + "0x9a642d6b3368ddc662ca244badf32cda716005bc": { + "address": "0x9a642d6b3368ddc662ca244badf32cda716005bc", + "symbol": "QTUM", + "decimals": 18, + "name": "Qtum", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x9a642d6b3368ddc662ca244badf32cda716005bc.png", + "aggregators": ["Metamask"], + "occurrences": 1 + }, + "0x9e29ce9cd25f4141df6bb85b27ef6933a16a5824": { + "address": "0x9e29ce9cd25f4141df6bb85b27ef6933a16a5824", + "symbol": "UNYFI", + "decimals": 8, + "name": "unFederal YFI", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x9e29ce9cd25f4141df6bb85b27ef6933a16a5824.png", + "aggregators": ["Metamask"], + "occurrences": 1 + }, + "0xb983e01458529665007ff7e0cddecdb74b967eb6": { + "address": "0xb983e01458529665007ff7e0cddecdb74b967eb6", + "symbol": "IETH", + "decimals": 18, + "name": "Fulcrum ETH iToken (iETH)", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xb983e01458529665007ff7e0cddecdb74b967eb6.png", + "aggregators": ["Metamask"], + "occurrences": 1 + }, + "0xbcf9dbf8b14ed096b2ba08b7269356197fdd1b5d": { + "address": "0xbcf9dbf8b14ed096b2ba08b7269356197fdd1b5d", + "symbol": "AVAL", + "decimals": 18, + "name": "Avaluse", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xbcf9dbf8b14ed096b2ba08b7269356197fdd1b5d.png", + "aggregators": ["Metamask"], + "occurrences": 1 + }, + "0xbc5142e0cc5eb16b47c63b0f033d4c2480853a52": { + "address": "0xbc5142e0cc5eb16b47c63b0f033d4c2480853a52", + "symbol": "USDE", + "decimals": 18, + "name": "Monerium USD", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xbc5142e0cc5eb16b47c63b0f033d4c2480853a52.png", + "aggregators": ["Metamask"], + "occurrences": 1 + }, + "0xc211477cb4098ac22a98432781f5f26a1e07a4d4": { + "address": "0xc211477cb4098ac22a98432781f5f26a1e07a4d4", + "symbol": "CULTURED", + "decimals": 18, + "name": "CULTURED", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xc211477cb4098ac22a98432781f5f26a1e07a4d4.png", + "aggregators": ["Metamask"], + "occurrences": 1 + }, + "0xc642549743a93674cf38d6431f75d6443f88e3e2": { + "address": "0xc642549743a93674cf38d6431f75d6443f88e3e2", + "symbol": "ISKE", + "decimals": 18, + "name": "Monerium ISK", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xc642549743a93674cf38d6431f75d6443f88e3e2.png", + "aggregators": ["Metamask"], + "occurrences": 1 + }, + "0xd057b63f5e69cf1b929b356b579cba08d7688048": { + "address": "0xd057b63f5e69cf1b929b356b579cba08d7688048", + "symbol": "VCOW", + "decimals": 18, + "name": "CoW Protocol Virtual Token", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xd057b63f5e69cf1b929b356b579cba08d7688048.png", + "aggregators": ["Metamask"], + "occurrences": 1 + }, + "0xd837eca6c91c67d98461a411ba2f00bda9960a9d": { + "address": "0xd837eca6c91c67d98461a411ba2f00bda9960a9d", + "symbol": "UNAAVE", + "decimals": 8, + "name": "unFederal AAVE", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xd837eca6c91c67d98461a411ba2f00bda9960a9d.png", + "aggregators": ["Metamask"], + "occurrences": 1 + }, + "0xd850942ef8811f2a866692a623011bde52a462c1": { + "address": "0xd850942ef8811f2a866692a623011bde52a462c1", + "symbol": "VEN", + "decimals": 18, + "name": "VeChain", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xd850942ef8811f2a866692a623011bde52a462c1.png", + "aggregators": ["Metamask"], + "occurrences": 1 + }, + "0xe4cc5a22b39ffb0a56d67f94f9300db20d786a5f": { + "address": "0xe4cc5a22b39ffb0a56d67f94f9300db20d786a5f", + "symbol": "UNERSDL", + "decimals": 8, + "name": "unFederal eRSDL", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xe4cc5a22b39ffb0a56d67f94f9300db20d786a5f.png", + "aggregators": ["Metamask"], + "occurrences": 1 + }, + "0xf119ada773624761108a12bc20503b2195727061": { + "address": "0xf119ada773624761108a12bc20503b2195727061", + "symbol": "SETH", + "decimals": 18, + "name": "Synth sETH", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xf119ada773624761108a12bc20503b2195727061.png", + "aggregators": ["Metamask"], + "occurrences": 1 + }, + "0xfbeef911dc5821886e1dda71586d90ed28174b7d": { + "address": "0xfbeef911dc5821886e1dda71586d90ed28174b7d", + "symbol": "KODA", + "decimals": 18, + "name": "KnownOrigin", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xfbeef911dc5821886e1dda71586d90ed28174b7d.png", + "aggregators": ["Metamask"], + "occurrences": 1 + }, + "0xfacece87e14b50eafc85c44c01702f5f485ca460": { + "address": "0xfacece87e14b50eafc85c44c01702f5f485ca460", + "symbol": "UNETH", + "decimals": 8, + "name": "unFederal ETH", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xfacece87e14b50eafc85c44c01702f5f485ca460.png", + "aggregators": ["Metamask"], + "occurrences": 1 + }, + "0xa74476443119a942de498590fe1f2454d7d4ac0d": { + "address": "0xa74476443119a942de498590fe1f2454d7d4ac0d", + "symbol": "GNT", + "decimals": 18, + "name": "Golem Network Token", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xa74476443119a942de498590fe1f2454d7d4ac0d.png", + "aggregators": ["Metamask"], + "occurrences": 1 + }, + "0xc105fa46510f32c0444ccdb4e51065da95caa1b4": { + "address": "0xc105fa46510f32c0444ccdb4e51065da95caa1b4", + "symbol": "LITA", + "decimals": 18, + "name": "LITA", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xc105fa46510f32c0444ccdb4e51065da95caa1b4.png", + "aggregators": ["Metamask"], + "occurrences": 1 + }, + "0xdf0162a6b3e9fdf0302c1e949739deeafafd8f89": { + "address": "0xdf0162a6b3e9fdf0302c1e949739deeafafd8f89", + "symbol": "MOA", + "decimals": 18, + "name": "METAOASIS", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xdf0162a6b3e9fdf0302c1e949739deeafafd8f89.png", + "aggregators": ["Metamask"], + "occurrences": 1 + }, + "0xeff66b4a84c8a6b69b99eb1c5e39af8fc35d13db": { + "address": "0xeff66b4a84c8a6b69b99eb1c5e39af8fc35d13db", + "symbol": "SGTON", + "decimals": 18, + "name": "sGTON", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xeff66b4a84c8a6b69b99eb1c5e39af8fc35d13db.png", + "aggregators": ["Metamask"], + "occurrences": 1 + }, + "0xea8b224edd3e342deb514c4176c2e72bcce6fff9": { + "address": "0xea8b224edd3e342deb514c4176c2e72bcce6fff9", + "symbol": "RSAI", + "decimals": 18, + "name": "rSAI", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xea8b224edd3e342deb514c4176c2e72bcce6fff9.png", + "aggregators": ["Metamask"], + "occurrences": 1 + }, + "0xf63c65e855020e4b74f0ad842d9537da0e6162ec": { + "address": "0xf63c65e855020e4b74f0ad842d9537da0e6162ec", + "symbol": "ISH", + "decimals": 18, + "name": "ISH", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xf63c65e855020e4b74f0ad842d9537da0e6162ec.png", + "aggregators": ["Metamask"], + "occurrences": 1 + } + }, + "timestamp": 1779126362532 + }, + "0x10e6": { + "data": { + "0xb0f70c0bd6fd87dbeb7c10dc692a2a6106817072": { + "address": "0xb0f70c0bd6fd87dbeb7c10dc692a2a6106817072", + "symbol": "BTC.B", + "decimals": 8, + "name": "Bitcoin", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/4326/0xb0f70c0bd6fd87dbeb7c10dc692a2a6106817072.png", + "aggregators": ["CoinGecko", "LiFi"], + "occurrences": 2 + }, + "0xcccc62962d17b8914c62d74ffb843d73b2a3cccc": { + "address": "0xcccc62962d17b8914c62d74ffb843d73b2a3cccc", + "symbol": "CUSD", + "decimals": 18, + "name": "Cap USD", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/4326/0xcccc62962d17b8914c62d74ffb843d73b2a3cccc.png", + "aggregators": ["CoinGecko", "LiFi"], + "occurrences": 2 + }, + "0x09601a65e7de7bc8a19813d263dd9e98bfdc3c57": { + "address": "0x09601a65e7de7bc8a19813d263dd9e98bfdc3c57", + "symbol": "EZETH", + "decimals": 18, + "name": "Renzo Restake ETH", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/4326/0x09601a65e7de7bc8a19813d263dd9e98bfdc3c57.png", + "aggregators": ["Megaeth", "LiFi"], + "occurrences": 2 + }, + "0xecac9c5f704e954931349da37f60e39f515c11c1": { + "address": "0xecac9c5f704e954931349da37f60e39f515c11c1", + "symbol": "LBTC", + "decimals": 8, + "name": "Lombard Staked Bitcoin", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/4326/0xecac9c5f704e954931349da37f60e39f515c11c1.png", + "aggregators": ["Megaeth", "LiFi"], + "occurrences": 2 + }, + "0x28b7e77f82b25b95953825f1e3ea0e36c1c29861": { + "address": "0x28b7e77f82b25b95953825f1e3ea0e36c1c29861", + "symbol": "MEGA", + "decimals": 18, + "name": "MEGA", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/4326/0x28b7e77f82b25b95953825f1e3ea0e36c1c29861.png", + "aggregators": ["CoinGecko", "LiFi"], + "occurrences": 2 + }, + "0xc3eacf0612346366db554c991d7858716db09f58": { + "address": "0xc3eacf0612346366db554c991d7858716db09f58", + "symbol": "RSETH", + "decimals": 18, + "name": "KelpDao Restaked ETH", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/4326/0xc3eacf0612346366db554c991d7858716db09f58.png", + "aggregators": ["Megaeth", "LiFi"], + "occurrences": 2 + }, + "0x88887be419578051ff9f4eb6c858a951921d8888": { + "address": "0x88887be419578051ff9f4eb6c858a951921d8888", + "symbol": "STCUSD", + "decimals": 18, + "name": "Staked Cap USD", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/4326/0x88887be419578051ff9f4eb6c858a951921d8888.png", + "aggregators": ["Megaeth", "LiFi"], + "occurrences": 2 + }, + "0x5d3a1ff2b6bab83b63cd9ad0787074081a52ef34": { + "address": "0x5d3a1ff2b6bab83b63cd9ad0787074081a52ef34", + "symbol": "USDE", + "decimals": 18, + "name": "USDe", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/4326/0x5d3a1ff2b6bab83b63cd9ad0787074081a52ef34.png", + "aggregators": ["CoinGecko", "LiFi"], + "occurrences": 2 + }, + "0xfafddbb3fc7688494971a79cc65dca3ef82079e7": { + "address": "0xfafddbb3fc7688494971a79cc65dca3ef82079e7", + "symbol": "USDM", + "decimals": 18, + "name": "MegaUSD", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/4326/0xfafddbb3fc7688494971a79cc65dca3ef82079e7.png", + "aggregators": ["CoinGecko", "LiFi"], + "occurrences": 2 + }, + "0x2ea493384f42d7ea78564f3ef4c86986eab4a890": { + "address": "0x2ea493384f42d7ea78564f3ef4c86986eab4a890", + "symbol": "USDMY", + "decimals": 18, + "name": "USDm Yield", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/4326/0x2ea493384f42d7ea78564f3ef4c86986eab4a890.png", + "aggregators": ["Megaeth", "LiFi"], + "occurrences": 2 + }, + "0xb8ce59fc3717ada4c02eadf9682a9e934f625ebb": { + "address": "0xb8ce59fc3717ada4c02eadf9682a9e934f625ebb", + "symbol": "USDT0", + "decimals": 6, + "name": "USD₮0", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/4326/0xb8ce59fc3717ada4c02eadf9682a9e934f625ebb.png", + "aggregators": ["CoinGecko", "LiFi"], + "occurrences": 2 + }, + "0x4200000000000000000000000000000000000006": { + "address": "0x4200000000000000000000000000000000000006", + "symbol": "WETH", + "decimals": 18, + "name": "Wrapped Ether", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/4326/0x4200000000000000000000000000000000000006.png", + "aggregators": ["CoinGecko", "LiFi"], + "occurrences": 2 + }, + "0x15b271d9012b5820fc42b1c495b4c1e206547de5": { + "address": "0x15b271d9012b5820fc42b1c495b4c1e206547de5", + "symbol": "WITRY", + "decimals": 18, + "name": "Wrapped iTRY", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/4326/0x15b271d9012b5820fc42b1c495b4c1e206547de5.png", + "aggregators": ["CoinGecko", "LiFi"], + "occurrences": 2 + }, + "0x601ac63637933d88285a025c685ac4e9a92a98da": { + "address": "0x601ac63637933d88285a025c685ac4e9a92a98da", + "symbol": "WSTETH", + "decimals": 18, + "name": "Wrapped liquid staked Ether 2.0", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/4326/0x601ac63637933d88285a025c685ac4e9a92a98da.png", + "aggregators": ["CoinGecko", "LiFi"], + "occurrences": 2 + }, + "0xee85aefb15b9489563a6a29891ebe0750aa1a7ae": { + "address": "0xee85aefb15b9489563a6a29891ebe0750aa1a7ae", + "symbol": "LINK", + "decimals": 18, + "name": "ChainLink Token", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/4326/0xee85aefb15b9489563a6a29891ebe0750aa1a7ae.png", + "aggregators": ["CoinGecko", "LiFi"], + "occurrences": 2 + }, + "0xf7d2f0d0b0517cbdbf87c86910ce10faaab3589d": { + "address": "0xf7d2f0d0b0517cbdbf87c86910ce10faaab3589d", + "symbol": "CROWN", + "decimals": 18, + "name": "Crown Credits", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/4326/0xf7d2f0d0b0517cbdbf87c86910ce10faaab3589d.png", + "aggregators": ["Megaeth"], + "occurrences": 1 + }, + "0xc2f34f8849a8607fd73e06d6849bda07c2b7de38": { + "address": "0xc2f34f8849a8607fd73e06d6849bda07c2b7de38", + "symbol": "DIRTY", + "decimals": 18, + "name": "Dirty Money", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/4326/0xc2f34f8849a8607fd73e06d6849bda07c2b7de38.png", + "aggregators": ["Megaeth"], + "occurrences": 1 + }, + "0xc1d160c29d7278f02c67da8bc8e046d759fe7352": { + "address": "0xc1d160c29d7278f02c67da8bc8e046d759fe7352", + "symbol": "HOUSE", + "decimals": 18, + "name": "HOUSE", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/4326/0xc1d160c29d7278f02c67da8bc8e046d759fe7352.png", + "aggregators": ["Megaeth"], + "occurrences": 1 + }, + "0x996ce957408804fec19237d866799d9c7076e48c": { + "address": "0x996ce957408804fec19237d866799d9c7076e48c", + "symbol": "ITRY", + "decimals": 18, + "name": "Brix iTRY", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/4326/0x996ce957408804fec19237d866799d9c7076e48c.png", + "aggregators": ["CoinGecko"], + "occurrences": 1 + }, + "0x9367a0c482703d8d9bda995b03f8e71056a72500": { + "address": "0x9367a0c482703d8d9bda995b03f8e71056a72500", + "symbol": "MEGASIR", + "decimals": 12, + "name": "Synthetics Implemented Right", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/4326/0x9367a0c482703d8d9bda995b03f8e71056a72500.png", + "aggregators": ["Megaeth"], + "occurrences": 1 + }, + "0x2f55e14f0b2b2118d2026d20ad2c39eacbdcac47": { + "address": "0x2f55e14f0b2b2118d2026d20ad2c39eacbdcac47", + "symbol": "NXT", + "decimals": 18, + "name": "NX Terminal Token", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/4326/0x2f55e14f0b2b2118d2026d20ad2c39eacbdcac47.png", + "aggregators": ["Megaeth"], + "occurrences": 1 + }, + "0x37d6382b6889ccef8d6871a8b60e667115eddbcf": { + "address": "0x37d6382b6889ccef8d6871a8b60e667115eddbcf", + "symbol": "PUFETH", + "decimals": 18, + "name": "pufETH", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/4326/0x37d6382b6889ccef8d6871a8b60e667115eddbcf.png", + "aggregators": ["Megaeth"], + "occurrences": 1 + }, + "0x4fd02a1a80923ce1d7e70a8719421431ea286941": { + "address": "0x4fd02a1a80923ce1d7e70a8719421431ea286941", + "symbol": "PUSD", + "decimals": 18, + "name": "Chisino pUSD", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/4326/0x4fd02a1a80923ce1d7e70a8719421431ea286941.png", + "aggregators": ["Megaeth"], + "occurrences": 1 + }, + "0x211cc4dd073734da055fbf44a2b4667d5e5fe5d2": { + "address": "0x211cc4dd073734da055fbf44a2b4667d5e5fe5d2", + "symbol": "SUSDE", + "decimals": 18, + "name": "Staked USDe", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/4326/0x211cc4dd073734da055fbf44a2b4667d5e5fe5d2.png", + "aggregators": ["Megaeth"], + "occurrences": 1 + }, + "0x32090fb1399a31cc095e6341a6353b7c09ba84fb": { + "address": "0x32090fb1399a31cc095e6341a6353b7c09ba84fb", + "symbol": "WBTC", + "decimals": 8, + "name": "Wrapped Bitcoin", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/4326/0x32090fb1399a31cc095e6341a6353b7c09ba84fb.png", + "aggregators": ["Megaeth"], + "occurrences": 1 + }, + "0x4fc44be15e9b6e30c1e774e2c87a21d3e8b5403f": { + "address": "0x4fc44be15e9b6e30c1e774e2c87a21d3e8b5403f", + "symbol": "WRSETH", + "decimals": 18, + "name": "rsETHWrapper", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/4326/0x4fc44be15e9b6e30c1e774e2c87a21d3e8b5403f.png", + "aggregators": ["Megaeth"], + "occurrences": 1 + }, + "0x9a96e366f6b2ed5850a38b58d355a80afd998411": { + "address": "0x9a96e366f6b2ed5850a38b58d355a80afd998411", + "symbol": "WSOL", + "decimals": 9, + "name": "Wrapped SOL", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/4326/0x9a96e366f6b2ed5850a38b58d355a80afd998411.png", + "aggregators": ["Megaeth"], + "occurrences": 1 + }, + "0x021ee124cf23d302a7f725ae7a01b77a8ce9782b": { + "address": "0x021ee124cf23d302a7f725ae7a01b77a8ce9782b", + "symbol": "DUCK", + "decimals": 18, + "name": "Duck Token", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/4326/0x021ee124cf23d302a7f725ae7a01b77a8ce9782b.png", + "aggregators": ["CoinGecko"], + "occurrences": 1 + }, + "0x2a3a4c92ce37abd7239fb010bc390710f4062407": { + "address": "0x2a3a4c92ce37abd7239fb010bc390710f4062407", + "symbol": "FLUFFEY", + "decimals": 18, + "name": "Fluffey", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/4326/0x2a3a4c92ce37abd7239fb010bc390710f4062407.png", + "aggregators": ["CoinGecko"], + "occurrences": 1 + }, + "0x214b26a427df89437898dec7efd2bc4472b983ea": { + "address": "0x214b26a427df89437898dec7efd2bc4472b983ea", + "symbol": "MEKA", + "decimals": 18, + "name": "Meka", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/4326/0x214b26a427df89437898dec7efd2bc4472b983ea.png", + "aggregators": ["CoinGecko"], + "occurrences": 1 + }, + "0x141cf6bfe9d5057883b9becb39fee8a62982dc93": { + "address": "0x141cf6bfe9d5057883b9becb39fee8a62982dc93", + "symbol": "Σ:", + "decimals": 18, + "name": "Sigma Bunny", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/4326/0x141cf6bfe9d5057883b9becb39fee8a62982dc93.png", + "aggregators": ["CoinGecko"], + "occurrences": 1 + }, + "0x551dfe38994ec53c9e7e18084d73893225eea3bf": { + "address": "0x551dfe38994ec53c9e7e18084d73893225eea3bf", + "symbol": "GNS", + "decimals": 18, + "name": "Gains Network", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/4326/0x551dfe38994ec53c9e7e18084d73893225eea3bf.png", + "aggregators": ["CoinGecko"], + "occurrences": 1 + }, + "0x03c99cce547b1c2e74442b73e6f588a66d19597e": { + "address": "0x03c99cce547b1c2e74442b73e6f588a66d19597e", + "symbol": "AMEGEZETH", + "decimals": 18, + "name": "Aave MegaEth ezETH", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/4326/0x03c99cce547b1c2e74442b73e6f588a66d19597e.png", + "aggregators": ["LiFi"], + "occurrences": 1 + }, + "0x0889d59ea7178ee5b71da01949a5cb42aafbe337": { + "address": "0x0889d59ea7178ee5b71da01949a5cb42aafbe337", + "symbol": "AMEGBTCB", + "decimals": 8, + "name": "Aave MegaEth BTCb", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/4326/0x0889d59ea7178ee5b71da01949a5cb42aafbe337.png", + "aggregators": ["LiFi"], + "occurrences": 1 + }, + "0x5df82810cb4b8f3e0da3c031ccc9208ee9cf9500": { + "address": "0x5df82810cb4b8f3e0da3c031ccc9208ee9cf9500", + "symbol": "AMEGUSDM", + "decimals": 18, + "name": "Aave MegaEth USDm", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/4326/0x5df82810cb4b8f3e0da3c031ccc9208ee9cf9500.png", + "aggregators": ["LiFi"], + "occurrences": 1 + }, + "0xa31e6b433382062e8a1da41485f7b234d97c3f4d": { + "address": "0xa31e6b433382062e8a1da41485f7b234d97c3f4d", + "symbol": "AMEGWETH", + "decimals": 18, + "name": "Aave MegaEth WETH", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/4326/0xa31e6b433382062e8a1da41485f7b234d97c3f4d.png", + "aggregators": ["LiFi"], + "occurrences": 1 + }, + "0xad2de503b5c723371d6b38a5224a2e12e103dfb8": { + "address": "0xad2de503b5c723371d6b38a5224a2e12e103dfb8", + "symbol": "AMEGWSTETH", + "decimals": 18, + "name": "Aave MegaEth wstETH", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/4326/0xad2de503b5c723371d6b38a5224a2e12e103dfb8.png", + "aggregators": ["LiFi"], + "occurrences": 1 + }, + "0xe2283e01a667b512c340f19b499d86fbc885d5ef": { + "address": "0xe2283e01a667b512c340f19b499d86fbc885d5ef", + "symbol": "AMEGUSDT0", + "decimals": 6, + "name": "Aave MegaEth USDT0", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/4326/0xe2283e01a667b512c340f19b499d86fbc885d5ef.png", + "aggregators": ["LiFi"], + "occurrences": 1 + }, + "0x8f77a685bde702e6d32a103e9aeb41906317d7e5": { + "address": "0x8f77a685bde702e6d32a103e9aeb41906317d7e5", + "symbol": "RBT", + "decimals": 18, + "name": "Reserve Backed Token", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/4326/0x8f77a685bde702e6d32a103e9aeb41906317d7e5.png", + "aggregators": ["LiFi"], + "occurrences": 1 + }, + "0x78f2cb75d664d6f71433174056c25a5958b4016f": { + "address": "0x78f2cb75d664d6f71433174056c25a5958b4016f", + "symbol": "AMEGUSDE", + "decimals": 18, + "name": "Aave MegaEth USDe", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/4326/0x78f2cb75d664d6f71433174056c25a5958b4016f.png", + "aggregators": ["LiFi"], + "occurrences": 1 + } + }, + "timestamp": 1779126362351 + }, + "0x144": { + "data": { + "0xbbeb516fb02a01611cbbe0453fe3c580d7281011": { + "address": "0xbbeb516fb02a01611cbbe0453fe3c580d7281011", + "symbol": "WBTC", + "decimals": 8, + "name": "Wrapped BTC", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/324/0xbbeb516fb02a01611cbbe0453fe3c580d7281011.png", + "aggregators": [ + "CoinGecko", + "1inch", + "LiFi", + "Socket", + "Rubic", + "Rango" + ], + "occurrences": 6 + }, + "0x1d17cbcf0d6d143135ae902365d2e5e2a16538d4": { + "address": "0x1d17cbcf0d6d143135ae902365d2e5e2a16538d4", + "symbol": "USDC", + "decimals": 6, + "name": "USDC", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/324/0x1d17cbcf0d6d143135ae902365d2e5e2a16538d4.png", + "aggregators": [ + "CoinGecko", + "1inch", + "LiFi", + "Socket", + "Rubic", + "Rango" + ], + "occurrences": 6 + }, + "0x5aea5775959fbc2557cc8789bc1bf90a239d9a91": { + "address": "0x5aea5775959fbc2557cc8789bc1bf90a239d9a91", + "symbol": "WETH", + "decimals": 18, + "name": "Wrapped Ether", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/324/0x5aea5775959fbc2557cc8789bc1bf90a239d9a91.png", + "aggregators": [ + "CoinGecko", + "1inch", + "LiFi", + "Socket", + "Rubic", + "Rango" + ], + "occurrences": 6 + }, + "0x787c09494ec8bcb24dcaf8659e7d5d69979ee508": { + "address": "0x787c09494ec8bcb24dcaf8659e7d5d69979ee508", + "symbol": "MAV", + "decimals": 18, + "name": "Maverick Token", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/324/0x787c09494ec8bcb24dcaf8659e7d5d69979ee508.png", + "aggregators": [ + "CoinGecko", + "1inch", + "LiFi", + "Socket", + "Rubic", + "Rango" + ], + "occurrences": 6 + }, + "0x0e97c7a0f8b2c9885c8ac9fc6136e829cbc21d42": { + "address": "0x0e97c7a0f8b2c9885c8ac9fc6136e829cbc21d42", + "symbol": "MUTE", + "decimals": 18, + "name": "Mute", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/324/0x0e97c7a0f8b2c9885c8ac9fc6136e829cbc21d42.png", + "aggregators": [ + "CoinGecko", + "1inch", + "LiFi", + "Socket", + "Rubic", + "Rango" + ], + "occurrences": 6 + }, + "0x47260090ce5e83454d5f05a0abbb2c953835f777": { + "address": "0x47260090ce5e83454d5f05a0abbb2c953835f777", + "symbol": "SPACE", + "decimals": 18, + "name": "SPACE", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/324/0x47260090ce5e83454d5f05a0abbb2c953835f777.png", + "aggregators": ["1inch", "Socket", "Rubic", "Rango"], + "occurrences": 4 + }, + "0x8e86e46278518efc1c5ced245cba2c7e3ef11557": { + "address": "0x8e86e46278518efc1c5ced245cba2c7e3ef11557", + "symbol": "USD+", + "decimals": 6, + "name": "USD+", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/324/0x8e86e46278518efc1c5ced245cba2c7e3ef11557.png", + "aggregators": ["1inch", "LiFi", "Rango"], + "occurrences": 3 + }, + "0xdd9f72afed3631a6c85b5369d84875e6c42f1827": { + "address": "0xdd9f72afed3631a6c85b5369d84875e6c42f1827", + "symbol": "SIS", + "decimals": 18, + "name": "Symbiosis", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/324/0xdd9f72afed3631a6c85b5369d84875e6c42f1827.png", + "aggregators": [ + "CoinGecko", + "1inch", + "LiFi", + "TrustWallet", + "Socket", + "Rubic", + "Rango" + ], + "occurrences": 7 + }, + "0x5a7d6b2f92c77fad6ccabd7ee0624e64907eaf3e": { + "address": "0x5a7d6b2f92c77fad6ccabd7ee0624e64907eaf3e", + "symbol": "ZK", + "decimals": 18, + "name": "ZKsync", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/324/0x5a7d6b2f92c77fad6ccabd7ee0624e64907eaf3e.png", + "aggregators": [ + "CoinGecko", + "1inch", + "LiFi", + "Socket", + "Rubic", + "Rango" + ], + "occurrences": 6 + }, + "0x31c2c031fdc9d33e974f327ab0d9883eae06ca4a": { + "address": "0x31c2c031fdc9d33e974f327ab0d9883eae06ca4a", + "symbol": "ZF", + "decimals": 18, + "name": "zkSwap Finance", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/324/0x31c2c031fdc9d33e974f327ab0d9883eae06ca4a.png", + "aggregators": [ + "CoinGecko", + "1inch", + "LiFi", + "TrustWallet", + "Rubic", + "Rango" + ], + "occurrences": 6 + }, + "0x503234f203fc7eb888eec8513210612a43cf6115": { + "address": "0x503234f203fc7eb888eec8513210612a43cf6115", + "symbol": "LUSD", + "decimals": 18, + "name": "Liquity USD", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/324/0x503234f203fc7eb888eec8513210612a43cf6115.png", + "aggregators": [ + "CoinGecko", + "1inch", + "LiFi", + "Socket", + "Rubic", + "Rango" + ], + "occurrences": 6 + }, + "0x3a287a06c66f9e95a56327185ca2bdf5f031cecd": { + "address": "0x3a287a06c66f9e95a56327185ca2bdf5f031cecd", + "symbol": "CAKE", + "decimals": 18, + "name": "PancakeSwap Token", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/324/0x3a287a06c66f9e95a56327185ca2bdf5f031cecd.png", + "aggregators": [ + "CoinGecko", + "1inch", + "LiFi", + "Socket", + "Rubic", + "Rango" + ], + "occurrences": 6 + }, + "0x493257fd37edb34451f62edf8d2a0c418852ba4c": { + "address": "0x493257fd37edb34451f62edf8d2a0c418852ba4c", + "symbol": "USDT", + "decimals": 6, + "name": "Tether USD", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/324/0x493257fd37edb34451f62edf8d2a0c418852ba4c.png", + "aggregators": [ + "CoinGecko", + "1inch", + "LiFi", + "Socket", + "Rubic", + "Rango" + ], + "occurrences": 6 + }, + "0x3355df6d4c9c3035724fd0e3914de96a5a83aaf4": { + "address": "0x3355df6d4c9c3035724fd0e3914de96a5a83aaf4", + "symbol": "USDC", + "decimals": 6, + "name": "USD Coin Bridged", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/324/0x3355df6d4c9c3035724fd0e3914de96a5a83aaf4.png", + "aggregators": [ + "CoinGecko", + "1inch", + "LiFi", + "TrustWallet", + "Socket", + "Rubic", + "Rango" + ], + "occurrences": 7 + }, + "0x2039bb4116b4efc145ec4f0e2ea75012d6c0f181": { + "address": "0x2039bb4116b4efc145ec4f0e2ea75012d6c0f181", + "symbol": "BUSD", + "decimals": 18, + "name": "Binance USD", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/324/0x2039bb4116b4efc145ec4f0e2ea75012d6c0f181.png", + "aggregators": ["CoinGecko", "LiFi", "Socket", "Rubic", "Rango"], + "occurrences": 5 + }, + "0xbfb4b5616044eded03e5b1ad75141f0d9cb1499b": { + "address": "0xbfb4b5616044eded03e5b1ad75141f0d9cb1499b", + "symbol": "ZKDOGE", + "decimals": 18, + "name": "zkDoge", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/324/0xbfb4b5616044eded03e5b1ad75141f0d9cb1499b.png", + "aggregators": ["CoinGecko", "1inch", "Socket", "Rubic", "Rango"], + "occurrences": 5 + }, + "0xc8ac6191cdc9c7bf846ad6b52aaaa7a0757ee305": { + "address": "0xc8ac6191cdc9c7bf846ad6b52aaaa7a0757ee305", + "symbol": "MVX", + "decimals": 18, + "name": "Metavault Trade", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/324/0xc8ac6191cdc9c7bf846ad6b52aaaa7a0757ee305.png", + "aggregators": ["CoinGecko", "1inch", "LiFi", "Rubic", "Rango"], + "occurrences": 5 + }, + "0xd4169e045bcf9a86cc00101225d9ed61d2f51af2": { + "address": "0xd4169e045bcf9a86cc00101225d9ed61d2f51af2", + "symbol": "WRSETH", + "decimals": 18, + "name": "rsETHWrapper", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/324/0xd4169e045bcf9a86cc00101225d9ed61d2f51af2.png", + "aggregators": ["CoinGecko", "1inch", "LiFi", "Rubic", "Rango"], + "occurrences": 5 + }, + "0x16a9494e257703797d747540f01683952547ee5b": { + "address": "0x16a9494e257703797d747540f01683952547ee5b", + "symbol": "IZI", + "decimals": 18, + "name": "izumi Token", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/324/0x16a9494e257703797d747540f01683952547ee5b.png", + "aggregators": ["CoinGecko", "LiFi", "Socket", "Rubic", "Rango"], + "occurrences": 5 + }, + "0xd63ef5e9c628c8a0e8984cdfb7444aee44b09044": { + "address": "0xd63ef5e9c628c8a0e8984cdfb7444aee44b09044", + "symbol": "GOVI", + "decimals": 18, + "name": "CVI", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/324/0xd63ef5e9c628c8a0e8984cdfb7444aee44b09044.png", + "aggregators": ["CoinGecko", "1inch", "Socket", "Rubic", "Rango"], + "occurrences": 5 + }, + "0x4b9eb6c0b6ea15176bbf62841c6b2a8a398cb656": { + "address": "0x4b9eb6c0b6ea15176bbf62841c6b2a8a398cb656", + "symbol": "DAI", + "decimals": 18, + "name": "Dai Stablecoin", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/324/0x4b9eb6c0b6ea15176bbf62841c6b2a8a398cb656.png", + "aggregators": ["CoinGecko", "LiFi", "Rubic", "Rango"], + "occurrences": 4 + }, + "0x686b311f82b407f0be842652a98e5619f64cc25f": { + "address": "0x686b311f82b407f0be842652a98e5619f64cc25f", + "symbol": "ENA", + "decimals": 18, + "name": "ENA", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/324/0x686b311f82b407f0be842652a98e5619f64cc25f.png", + "aggregators": ["CoinGecko", "LiFi", "Rubic", "Rango"], + "occurrences": 4 + }, + "0x9e22d758629761fc5708c171d06c2fabb60b5159": { + "address": "0x9e22d758629761fc5708c171d06c2fabb60b5159", + "symbol": "WOO", + "decimals": 18, + "name": "WOO", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/324/0x9e22d758629761fc5708c171d06c2fabb60b5159.png", + "aggregators": ["CoinGecko", "Socket", "Rubic", "Rango"], + "occurrences": 4 + }, + "0x39fe7a0dacce31bd90418e3e659fb0b5f0b3db0d": { + "address": "0x39fe7a0dacce31bd90418e3e659fb0b5f0b3db0d", + "symbol": "USDE", + "decimals": 18, + "name": "USDe", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/324/0x39fe7a0dacce31bd90418e3e659fb0b5f0b3db0d.png", + "aggregators": ["CoinGecko", "LiFi", "Rubic", "Rango"], + "occurrences": 4 + }, + "0xea77c590bb36c43ef7139ce649cfbcfd6163170d": { + "address": "0xea77c590bb36c43ef7139ce649cfbcfd6163170d", + "symbol": "FRXUSD", + "decimals": 18, + "name": "FRXUSD", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/324/0xea77c590bb36c43ef7139ce649cfbcfd6163170d.png", + "aggregators": ["CoinGecko", "LiFi", "Rubic", "Rango"], + "occurrences": 4 + }, + "0x52869bae3e091e36b0915941577f2d47d8d8b534": { + "address": "0x52869bae3e091e36b0915941577f2d47d8d8b534", + "symbol": "LINK", + "decimals": 18, + "name": "LINK", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/324/0x52869bae3e091e36b0915941577f2d47d8d8b534.png", + "aggregators": ["CoinGecko", "LiFi", "Rubic", "Rango"], + "occurrences": 4 + }, + "0x32fd44bb869620c0ef993754c8a00be67c464806": { + "address": "0x32fd44bb869620c0ef993754c8a00be67c464806", + "symbol": "RETH", + "decimals": 18, + "name": "Rocket Pool ETH", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/324/0x32fd44bb869620c0ef993754c8a00be67c464806.png", + "aggregators": ["1inch", "LiFi", "Socket", "Rubic"], + "occurrences": 4 + }, + "0xed4040fd47629e7c8fbb7da76bb50b3e7695f0f2": { + "address": "0xed4040fd47629e7c8fbb7da76bb50b3e7695f0f2", + "symbol": "HOLD", + "decimals": 18, + "name": "Holdstation", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/324/0xed4040fd47629e7c8fbb7da76bb50b3e7695f0f2.png", + "aggregators": ["LiFi", "Socket", "Rubic", "Rango"], + "occurrences": 4 + }, + "0x7b3e1236c39ddd2e61cf6da6ac6d11193238ccb0": { + "address": "0x7b3e1236c39ddd2e61cf6da6ac6d11193238ccb0", + "symbol": "ZKE", + "decimals": 18, + "name": "ZKE", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/324/0x7b3e1236c39ddd2e61cf6da6ac6d11193238ccb0.png", + "aggregators": ["Socket", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x703b52f2b28febcb60e1372858af5b18849fe867": { + "address": "0x703b52f2b28febcb60e1372858af5b18849fe867", + "symbol": "WSTETH", + "decimals": 18, + "name": "Wrapped liquid staked Ether 2.0", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/324/0x703b52f2b28febcb60e1372858af5b18849fe867.png", + "aggregators": [ + "CoinGecko", + "1inch", + "LiFi", + "Socket", + "Rubic", + "Rango" + ], + "occurrences": 6 + }, + "0xe027d939f7de6f521675907cf086f59e4d75b876": { + "address": "0xe027d939f7de6f521675907cf086f59e4d75b876", + "symbol": "SLR", + "decimals": 18, + "name": "SolarCoin on Mainnet", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/324/0xe027d939f7de6f521675907cf086f59e4d75b876.png", + "aggregators": ["CoinGecko", "LiFi", "Socket", "Rubic", "Rango"], + "occurrences": 5 + }, + "0xa995ad25ce5eb76972ab356168f5e1d9257e4d05": { + "address": "0xa995ad25ce5eb76972ab356168f5e1d9257e4d05", + "symbol": "KOI", + "decimals": 18, + "name": "Koi", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/324/0xa995ad25ce5eb76972ab356168f5e1d9257e4d05.png", + "aggregators": ["CoinGecko", "1inch", "LiFi", "Rubic", "Rango"], + "occurrences": 5 + }, + "0x5fc44e95eaa48f9eb84be17bd3ac66b6a82af709": { + "address": "0x5fc44e95eaa48f9eb84be17bd3ac66b6a82af709", + "symbol": "GRAI", + "decimals": 18, + "name": "Gravita Debt Token", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/324/0x5fc44e95eaa48f9eb84be17bd3ac66b6a82af709.png", + "aggregators": ["CoinGecko", "LiFi", "Socket", "Rubic", "Rango"], + "occurrences": 5 + }, + "0xbe9f8c0d6f0fd7e46cdacca340747ea2f247991d": { + "address": "0xbe9f8c0d6f0fd7e46cdacca340747ea2f247991d", + "symbol": "IBEX", + "decimals": 18, + "name": "Impermax", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/324/0xbe9f8c0d6f0fd7e46cdacca340747ea2f247991d.png", + "aggregators": ["CoinGecko", "LiFi", "Socket", "Rubic", "Rango"], + "occurrences": 5 + }, + "0xa900cbe7739c96d2b153a273953620a701d5442b": { + "address": "0xa900cbe7739c96d2b153a273953620a701d5442b", + "symbol": "WUSDM", + "decimals": 18, + "name": "Wrapped Mountain Protocol USD", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/324/0xa900cbe7739c96d2b153a273953620a701d5442b.png", + "aggregators": ["CoinGecko", "LiFi", "Socket", "Rubic", "Rango"], + "occurrences": 5 + }, + "0x5d0d7bca050e2e98fd4a5e8d3ba823b49f39868d": { + "address": "0x5d0d7bca050e2e98fd4a5e8d3ba823b49f39868d", + "symbol": "ZFI", + "decimals": 18, + "name": "Zyfi Token", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/324/0x5d0d7bca050e2e98fd4a5e8d3ba823b49f39868d.png", + "aggregators": ["CoinGecko", "LiFi", "Rubic", "Rango"], + "occurrences": 4 + }, + "0x9929bcac4417a21d7e6fc86f6dae1cc7f27a2e41": { + "address": "0x9929bcac4417a21d7e6fc86f6dae1cc7f27a2e41", + "symbol": "DEXTF", + "decimals": 18, + "name": "DEXTF", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/324/0x9929bcac4417a21d7e6fc86f6dae1cc7f27a2e41.png", + "aggregators": ["CoinGecko", "Socket", "Rubic", "Rango"], + "occurrences": 4 + }, + "0x6ee46cb7cd2f15ee1ec9534cf29a5b51c83283e6": { + "address": "0x6ee46cb7cd2f15ee1ec9534cf29a5b51c83283e6", + "symbol": "KNC", + "decimals": 18, + "name": "KNC", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/324/0x6ee46cb7cd2f15ee1ec9534cf29a5b51c83283e6.png", + "aggregators": ["CoinGecko", "Socket", "Rubic", "Rango"], + "occurrences": 4 + }, + "0x75af292c1c9a37b3ea2e6041168b4e48875b9ed5": { + "address": "0x75af292c1c9a37b3ea2e6041168b4e48875b9ed5", + "symbol": "CBETH", + "decimals": 18, + "name": "Coinbase Wrapped Staked ETH", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/324/0x75af292c1c9a37b3ea2e6041168b4e48875b9ed5.png", + "aggregators": ["1inch", "LiFi", "Socket", "Rango"], + "occurrences": 4 + }, + "0x1382628e018010035999a1ff330447a0751aa84f": { + "address": "0x1382628e018010035999a1ff330447a0751aa84f", + "symbol": "IUSD", + "decimals": 18, + "name": "IUSD", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/324/0x1382628e018010035999a1ff330447a0751aa84f.png", + "aggregators": ["LiFi", "Socket", "Rubic", "Rango"], + "occurrences": 4 + }, + "0xe7895ed01a1a6aacf1c2e955af14e7cf612e7f9d": { + "address": "0xe7895ed01a1a6aacf1c2e955af14e7cf612e7f9d", + "symbol": "LETH", + "decimals": 18, + "name": "Liquid ETH", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/324/0xe7895ed01a1a6aacf1c2e955af14e7cf612e7f9d.png", + "aggregators": ["CoinGecko", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x57fd71a86522dc06d6255537521886057c1772a3": { + "address": "0x57fd71a86522dc06d6255537521886057c1772a3", + "symbol": "BCAP", + "decimals": 2, + "name": "BCAP", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/324/0x57fd71a86522dc06d6255537521886057c1772a3.png", + "aggregators": ["CoinGecko", "Rubic", "Rango"], + "occurrences": 3 + }, + "0xbd4372e44c5ee654dd838304006e1f0f69983154": { + "address": "0xbd4372e44c5ee654dd838304006e1f0f69983154", + "symbol": "NODL", + "decimals": 18, + "name": "Nodle Token", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/324/0xbd4372e44c5ee654dd838304006e1f0f69983154.png", + "aggregators": ["CoinGecko", "Rubic", "Rango"], + "occurrences": 3 + }, + "0xcdb7d260c107499c80b4b748e8331c64595972a1": { + "address": "0xcdb7d260c107499c80b4b748e8331c64595972a1", + "symbol": "KAT", + "decimals": 18, + "name": "Karat Token", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/324/0xcdb7d260c107499c80b4b748e8331c64595972a1.png", + "aggregators": ["CoinGecko", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x5c8c39e167c604b036afd3fbb65426f9fe78ce6d": { + "address": "0x5c8c39e167c604b036afd3fbb65426f9fe78ce6d", + "symbol": "PC0000023", + "decimals": 6, + "name": "PC0000023", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/324/0x5c8c39e167c604b036afd3fbb65426f9fe78ce6d.png", + "aggregators": ["CoinGecko", "Rubic", "Rango"], + "occurrences": 3 + }, + "0xc6dac3a53d5d6de9d1d05aa6e28b8e9e41722601": { + "address": "0xc6dac3a53d5d6de9d1d05aa6e28b8e9e41722601", + "symbol": "LIBERTAS", + "decimals": 18, + "name": "Wrapped LIBERTAS OMNIBUS", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/324/0xc6dac3a53d5d6de9d1d05aa6e28b8e9e41722601.png", + "aggregators": ["CoinGecko", "Rubic", "Rango"], + "occurrences": 3 + }, + "0xe593853b4d603d5b8f21036bb4ad0d1880097a6e": { + "address": "0xe593853b4d603d5b8f21036bb4ad0d1880097a6e", + "symbol": "FUL", + "decimals": 18, + "name": "FUL", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/324/0xe593853b4d603d5b8f21036bb4ad0d1880097a6e.png", + "aggregators": ["CoinGecko", "Rubic", "Rango"], + "occurrences": 3 + }, + "0xabec5ecbe08b6c02f5c9a2ff82696e1e7db6f9bf": { + "address": "0xabec5ecbe08b6c02f5c9a2ff82696e1e7db6f9bf", + "symbol": "HEU", + "decimals": 18, + "name": "Heurist", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/324/0xabec5ecbe08b6c02f5c9a2ff82696e1e7db6f9bf.png", + "aggregators": ["CoinGecko", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x05b65997ff7cb7976b43000ad376f91108b30d40": { + "address": "0x05b65997ff7cb7976b43000ad376f91108b30d40", + "symbol": "WGC", + "decimals": 6, + "name": "Wild Goat Coin", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/324/0x05b65997ff7cb7976b43000ad376f91108b30d40.png", + "aggregators": ["CoinGecko", "Rubic", "Rango"], + "occurrences": 3 + }, + "0xe75a17b4f5c4f844688d5670b684515d7c785e63": { + "address": "0xe75a17b4f5c4f844688d5670b684515d7c785e63", + "symbol": "VNO", + "decimals": 18, + "name": "VenoToken", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/324/0xe75a17b4f5c4f844688d5670b684515d7c785e63.png", + "aggregators": ["CoinGecko", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x99bbe51be7cce6c8b84883148fd3d12ace5787f2": { + "address": "0x99bbe51be7cce6c8b84883148fd3d12ace5787f2", + "symbol": "VC", + "decimals": 18, + "name": "Velocore", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/324/0x99bbe51be7cce6c8b84883148fd3d12ace5787f2.png", + "aggregators": ["1inch", "Rubic", "Rango"], + "occurrences": 3 + }, + "0xad17da2f6ac76746ef261e835c50b2651ce36da8": { + "address": "0xad17da2f6ac76746ef261e835c50b2651ce36da8", + "symbol": "SUSDE", + "decimals": 18, + "name": "SUSDE", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/324/0xad17da2f6ac76746ef261e835c50b2651ce36da8.png", + "aggregators": ["LiFi", "Rubic", "Rango"], + "occurrences": 3 + }, + "0xd0ea21ba66b67be636de1ec4bd9696eb8c61e9aa": { + "address": "0xd0ea21ba66b67be636de1ec4bd9696eb8c61e9aa", + "symbol": "OT", + "decimals": 18, + "name": "OT", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/324/0xd0ea21ba66b67be636de1ec4bd9696eb8c61e9aa.png", + "aggregators": ["LiFi", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x240f765af2273b0cab6caff2880d6d8f8b285fa4": { + "address": "0x240f765af2273b0cab6caff2880d6d8f8b285fa4", + "symbol": "SWORD", + "decimals": 18, + "name": "eZKalibur Token", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/324/0x240f765af2273b0cab6caff2880d6d8f8b285fa4.png", + "aggregators": ["LiFi", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x5756a28e2aae01f600fc2c01358395f5c1f8ad3a": { + "address": "0x5756a28e2aae01f600fc2c01358395f5c1f8ad3a", + "symbol": "VS", + "decimals": 18, + "name": "veSync", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/324/0x5756a28e2aae01f600fc2c01358395f5c1f8ad3a.png", + "aggregators": ["LiFi", "Rubic", "Rango"], + "occurrences": 3 + }, + "0xfc7e56298657b002b3e656400e746b7212912757": { + "address": "0xfc7e56298657b002b3e656400e746b7212912757", + "symbol": "ZKUSD", + "decimals": 6, + "name": "ZKUSD", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/324/0xfc7e56298657b002b3e656400e746b7212912757.png", + "aggregators": ["LiFi", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x6a5279e99ca7786fb13f827fc1fb4f61684933d6": { + "address": "0x6a5279e99ca7786fb13f827fc1fb4f61684933d6", + "symbol": "AVAX", + "decimals": 18, + "name": "Avalanche", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/324/0x6a5279e99ca7786fb13f827fc1fb4f61684933d6.png", + "aggregators": ["Socket", "Rubic", "Rango"], + "occurrences": 3 + }, + "0xc8ec5b0627c794de0e4ea5d97ad9a556b361d243": { + "address": "0xc8ec5b0627c794de0e4ea5d97ad9a556b361d243", + "symbol": "WISP", + "decimals": 18, + "name": "WISP", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/324/0xc8ec5b0627c794de0e4ea5d97ad9a556b361d243.png", + "aggregators": ["Socket", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x7715c206a14ac93cb1a6c0316a6e5f8ad7c9dc31": { + "address": "0x7715c206a14ac93cb1a6c0316a6e5f8ad7c9dc31", + "symbol": "USDM", + "decimals": 18, + "name": "USDM", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/324/0x7715c206a14ac93cb1a6c0316a6e5f8ad7c9dc31.png", + "aggregators": ["CoinGecko", "LiFi", "Socket", "Rubic", "Rango"], + "occurrences": 5 + }, + "0xd78abd81a3d57712a3af080dc4185b698fe9ac5a": { + "address": "0xd78abd81a3d57712a3af080dc4185b698fe9ac5a", + "symbol": "XVS", + "decimals": 18, + "name": "Venus XVS", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/324/0xd78abd81a3d57712a3af080dc4185b698fe9ac5a.png", + "aggregators": ["CoinGecko", "LiFi", "Rubic", "Rango"], + "occurrences": 4 + }, + "0x7f2fd959013eec5144269ac6edd0015cb10968fc": { + "address": "0x7f2fd959013eec5144269ac6edd0015cb10968fc", + "symbol": "TAROT", + "decimals": 18, + "name": "TAROT", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/324/0x7f2fd959013eec5144269ac6edd0015cb10968fc.png", + "aggregators": ["CoinGecko", "LiFi", "Rubic", "Rango"], + "occurrences": 4 + }, + "0x7400793aad94c8ca801aa036357d10f5fd0ce08f": { + "address": "0x7400793aad94c8ca801aa036357d10f5fd0ce08f", + "symbol": "CBNB", + "decimals": 18, + "name": "Celer Network BNB", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/324/0x7400793aad94c8ca801aa036357d10f5fd0ce08f.png", + "aggregators": ["LiFi", "Socket", "Rubic", "Rango"], + "occurrences": 4 + }, + "0x28a487240e4d45cff4a2980d334cc933b7483842": { + "address": "0x28a487240e4d45cff4a2980d334cc933b7483842", + "symbol": "CMATIC", + "decimals": 18, + "name": "Celer Network MATIC", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/324/0x28a487240e4d45cff4a2980d334cc933b7483842.png", + "aggregators": ["LiFi", "Socket", "Rubic", "Rango"], + "occurrences": 4 + }, + "0x60e7fe7ae4461b535bb9eb40c20424c7c61063d0": { + "address": "0x60e7fe7ae4461b535bb9eb40c20424c7c61063d0", + "symbol": "ZWIF", + "decimals": 18, + "name": "zeekwifhat", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/324/0x60e7fe7ae4461b535bb9eb40c20424c7c61063d0.png", + "aggregators": ["CoinGecko", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x244c238325fc1bdf6eded726ee1b47d55895d944": { + "address": "0x244c238325fc1bdf6eded726ee1b47d55895d944", + "symbol": "ZORRO", + "decimals": 18, + "name": "Zorro", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/324/0x244c238325fc1bdf6eded726ee1b47d55895d944.png", + "aggregators": ["CoinGecko", "Rubic", "Rango"], + "occurrences": 3 + }, + "0xb0c2bdc425fd01c33d8514f8be016070212bdc6a": { + "address": "0xb0c2bdc425fd01c33d8514f8be016070212bdc6a", + "symbol": "LMAO", + "decimals": 18, + "name": "LONGMAO", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/324/0xb0c2bdc425fd01c33d8514f8be016070212bdc6a.png", + "aggregators": ["CoinGecko", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x79db8c67d0c33203da4efb58f7d325e1e0d4d692": { + "address": "0x79db8c67d0c33203da4efb58f7d325e1e0d4d692", + "symbol": "MEOW", + "decimals": 18, + "name": "Zeek Coin", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/324/0x79db8c67d0c33203da4efb58f7d325e1e0d4d692.png", + "aggregators": ["CoinGecko", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x941fc398d9faebdd9f311011541045a1d66c748e": { + "address": "0x941fc398d9faebdd9f311011541045a1d66c748e", + "symbol": "NOP", + "decimals": 18, + "name": "NOP App", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/324/0x941fc398d9faebdd9f311011541045a1d66c748e.png", + "aggregators": ["CoinGecko", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x2ab105a3ead22731082b790ca9a00d9a3a7627f9": { + "address": "0x2ab105a3ead22731082b790ca9a00d9a3a7627f9", + "symbol": "FIUSD", + "decimals": 2, + "name": "FIUSD", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/324/0x2ab105a3ead22731082b790ca9a00d9a3a7627f9.png", + "aggregators": ["CoinGecko", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x5165ec33b491d7b67260b3143f96bb4ac4736398": { + "address": "0x5165ec33b491d7b67260b3143f96bb4ac4736398", + "symbol": "LONG", + "decimals": 18, + "name": "Long", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/324/0x5165ec33b491d7b67260b3143f96bb4ac4736398.png", + "aggregators": ["CoinGecko", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x47ef4a5641992a72cfd57b9406c9d9cefee8e0c4": { + "address": "0x47ef4a5641992a72cfd57b9406c9d9cefee8e0c4", + "symbol": "ZAT", + "decimals": 18, + "name": "ZAT", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/324/0x47ef4a5641992a72cfd57b9406c9d9cefee8e0c4.png", + "aggregators": ["CoinGecko", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x81e7186947fb59aaaaeb476a47daac60680cbbaf": { + "address": "0x81e7186947fb59aaaaeb476a47daac60680cbbaf", + "symbol": "WEFI", + "decimals": 18, + "name": "WeFi", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/324/0x81e7186947fb59aaaaeb476a47daac60680cbbaf.png", + "aggregators": ["CoinGecko", "Rubic", "Rango"], + "occurrences": 3 + }, + "0xdea6d5161978d36b5c0fa6a491faa754f4bc809c": { + "address": "0xdea6d5161978d36b5c0fa6a491faa754f4bc809c", + "symbol": "IDO", + "decimals": 18, + "name": "Idexo Token", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/324/0xdea6d5161978d36b5c0fa6a491faa754f4bc809c.png", + "aggregators": ["CoinGecko", "Rubic", "Rango"], + "occurrences": 3 + }, + "0xb6841b40baafedf4e37935270357ff89df42e68e": { + "address": "0xb6841b40baafedf4e37935270357ff89df42e68e", + "symbol": "USDLR", + "decimals": 6, + "name": "USDLR", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/324/0xb6841b40baafedf4e37935270357ff89df42e68e.png", + "aggregators": ["CoinGecko", "Rubic", "Rango"], + "occurrences": 3 + }, + "0xb0588f9a9cade7cd5f194a5fe77acd6a58250f82": { + "address": "0xb0588f9a9cade7cd5f194a5fe77acd6a58250f82", + "symbol": "BONSAI", + "decimals": 18, + "name": "Bonsai Token", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/324/0xb0588f9a9cade7cd5f194a5fe77acd6a58250f82.png", + "aggregators": ["CoinGecko", "Rubic", "Rango"], + "occurrences": 3 + }, + "0xe757355edba7ced7b8c0271bba4efda184ad75ab": { + "address": "0xe757355edba7ced7b8c0271bba4efda184ad75ab", + "symbol": "M-BTC", + "decimals": 18, + "name": "Merlin BTC", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/324/0xe757355edba7ced7b8c0271bba4efda184ad75ab.png", + "aggregators": ["CoinGecko", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x27d0a2b5316b98088294378692f4eabfb3222e36": { + "address": "0x27d0a2b5316b98088294378692f4eabfb3222e36", + "symbol": "ZERO", + "decimals": 18, + "name": "ZERO", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/324/0x27d0a2b5316b98088294378692f4eabfb3222e36.png", + "aggregators": ["CoinGecko", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x0469d9d1de0ee58fa1153ef00836b9bbcb84c0b6": { + "address": "0x0469d9d1de0ee58fa1153ef00836b9bbcb84c0b6", + "symbol": "USN", + "decimals": 18, + "name": "USN Token", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/324/0x0469d9d1de0ee58fa1153ef00836b9bbcb84c0b6.png", + "aggregators": ["CoinGecko", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x3613ad277df1d5935d41400a181aa9ec1dc2dc9e": { + "address": "0x3613ad277df1d5935d41400a181aa9ec1dc2dc9e", + "symbol": "WAGMI", + "decimals": 18, + "name": "WAGMI", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/324/0x3613ad277df1d5935d41400a181aa9ec1dc2dc9e.png", + "aggregators": ["CoinGecko", "Rubic", "Rango"], + "occurrences": 3 + }, + "0xfd282f16a64c6d304ac05d1a58da15bed0467c71": { + "address": "0xfd282f16a64c6d304ac05d1a58da15bed0467c71", + "symbol": "PEPE", + "decimals": 18, + "name": "Pepe", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/324/0xfd282f16a64c6d304ac05d1a58da15bed0467c71.png", + "aggregators": ["1inch", "Socket", "Rango"], + "occurrences": 3 + }, + "0x668cc2668eeeaf8075d38e72ef54fa546bf3c39c": { + "address": "0x668cc2668eeeaf8075d38e72ef54fa546bf3c39c", + "symbol": "ETHX", + "decimals": 18, + "name": "LSDx Pool", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/324/0x668cc2668eeeaf8075d38e72ef54fa546bf3c39c.png", + "aggregators": ["1inch", "Socket", "Rango"], + "occurrences": 3 + }, + "0x85d84c774cf8e9ff85342684b0e795df72a24908": { + "address": "0x85d84c774cf8e9ff85342684b0e795df72a24908", + "symbol": "VC", + "decimals": 18, + "name": "VC", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/324/0x85d84c774cf8e9ff85342684b0e795df72a24908.png", + "aggregators": ["LiFi", "Rubic", "Rango"], + "occurrences": 3 + }, + "0xb83cfb285fc8d936e8647fa9b1cc641dbaae92d9": { + "address": "0xb83cfb285fc8d936e8647fa9b1cc641dbaae92d9", + "symbol": "BEL", + "decimals": 18, + "name": "BEL", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/324/0xb83cfb285fc8d936e8647fa9b1cc641dbaae92d9.png", + "aggregators": ["Socket", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x0231b3de40b6b3bdd28dcef037f1b7a3fcf5a95a": { + "address": "0x0231b3de40b6b3bdd28dcef037f1b7a3fcf5a95a", + "symbol": "ZYN", + "decimals": 18, + "name": "ZYN", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/324/0x0231b3de40b6b3bdd28dcef037f1b7a3fcf5a95a.png", + "aggregators": ["Socket", "Rubic", "Rango"], + "occurrences": 3 + }, + "0xd599da85f8fc4877e61f547dfacffe1238a7149e": { + "address": "0xd599da85f8fc4877e61f547dfacffe1238a7149e", + "symbol": "CHEEMS", + "decimals": 18, + "name": "CHEEMS", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/324/0xd599da85f8fc4877e61f547dfacffe1238a7149e.png", + "aggregators": ["Socket", "Rubic", "Rango"], + "occurrences": 3 + }, + "0xc1fa6e2e8667d9be0ca938a54c7e0285e9df924a": { + "address": "0xc1fa6e2e8667d9be0ca938a54c7e0285e9df924a", + "symbol": "WEETH", + "decimals": 18, + "name": "Wrapped eETH", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/324/0xc1fa6e2e8667d9be0ca938a54c7e0285e9df924a.png", + "aggregators": ["CoinGecko", "LiFi", "Rubic", "Rango"], + "occurrences": 4 + }, + "0x74ed17608cc2b5f30a59d6af07c9ad1b1ab3a5b1": { + "address": "0x74ed17608cc2b5f30a59d6af07c9ad1b1ab3a5b1", + "symbol": "SOLVBTC", + "decimals": 18, + "name": "SOLVBTC", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/324/0x74ed17608cc2b5f30a59d6af07c9ad1b1ab3a5b1.png", + "aggregators": ["CoinGecko", "LiFi", "Rubic", "Rango"], + "occurrences": 4 + }, + "0xac4de1e9a9e83524f24af77972dd39d588de8164": { + "address": "0xac4de1e9a9e83524f24af77972dd39d588de8164", + "symbol": "PC0000031", + "decimals": 6, + "name": "PC0000031", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/324/0xac4de1e9a9e83524f24af77972dd39d588de8164.png", + "aggregators": ["CoinGecko", "Rubic", "Rango"], + "occurrences": 3 + }, + "0xb6a09d426861c63722aa0b333a9ce5d5a9b04c4f": { + "address": "0xb6a09d426861c63722aa0b333a9ce5d5a9b04c4f", + "symbol": "SUSN", + "decimals": 18, + "name": "Staked USN", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/324/0xb6a09d426861c63722aa0b333a9ce5d5a9b04c4f.png", + "aggregators": ["CoinGecko", "Rubic", "Rango"], + "occurrences": 3 + }, + "0xf6d9a093a1c69a152d87e269a7d909e9d76b1815": { + "address": "0xf6d9a093a1c69a152d87e269a7d909e9d76b1815", + "symbol": "LAUNCH", + "decimals": 18, + "name": "Super Launcher", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/324/0xf6d9a093a1c69a152d87e269a7d909e9d76b1815.png", + "aggregators": ["LiFi", "Rubic", "Rango"], + "occurrences": 3 + }, + "0xbbd1ba24d589c319c86519646817f2f153c9b716": { + "address": "0xbbd1ba24d589c319c86519646817f2f153c9b716", + "symbol": "DVF", + "decimals": 18, + "name": "DeversiFi Token", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/324/0xbbd1ba24d589c319c86519646817f2f153c9b716.png", + "aggregators": ["LiFi", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x43cd37cc4b9ec54833c8ac362dd55e58bfd62b86": { + "address": "0x43cd37cc4b9ec54833c8ac362dd55e58bfd62b86", + "symbol": "CRVUSD", + "decimals": 18, + "name": "CRVUSD", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/324/0x43cd37cc4b9ec54833c8ac362dd55e58bfd62b86.png", + "aggregators": ["LiFi", "Socket", "Rango"], + "occurrences": 3 + }, + "0xc2b13bb90e33f1e191b8aa8f44ce11534d5698e3": { + "address": "0xc2b13bb90e33f1e191b8aa8f44ce11534d5698e3", + "symbol": "COMBO", + "decimals": 18, + "name": "COMBO", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/324/0xc2b13bb90e33f1e191b8aa8f44ce11534d5698e3.png", + "aggregators": ["LiFi", "Socket", "Rango"], + "occurrences": 3 + }, + "0x42c1c56be243c250ab24d2ecdcc77f9ccaa59601": { + "address": "0x42c1c56be243c250ab24d2ecdcc77f9ccaa59601", + "symbol": "PERP", + "decimals": 18, + "name": "PERP", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/324/0x42c1c56be243c250ab24d2ecdcc77f9ccaa59601.png", + "aggregators": ["LiFi", "Socket", "Rango"], + "occurrences": 3 + } + }, + "timestamp": 1779126362429 + }, + "0x2105": { + "data": { + "0x2ae3f1ec7f1f5012cfeab0185bfc7aa3cf0dec22": { + "address": "0x2ae3f1ec7f1f5012cfeab0185bfc7aa3cf0dec22", + "symbol": "CBETH", + "decimals": 18, + "name": "Coinbase Wrapped Staked ETH", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x2ae3f1ec7f1f5012cfeab0185bfc7aa3cf0dec22.png", + "aggregators": [ + "CoinGecko", + "1inch", + "LiFi", + "Socket", + "Rubic", + "Squid", + "Rango", + "Sonarwatch", + "SushiSwap" + ], + "occurrences": 9 + }, + "0x1c7a460413dd4e964f96d8dfc56e7223ce88cd85": { + "address": "0x1c7a460413dd4e964f96d8dfc56e7223ce88cd85", + "symbol": "SEAM", + "decimals": 18, + "name": "Seamless", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x1c7a460413dd4e964f96d8dfc56e7223ce88cd85.png", + "aggregators": [ + "CoinGecko", + "1inch", + "LiFi", + "Socket", + "Rubic", + "Squid", + "Rango", + "Sonarwatch", + "SushiSwap" + ], + "occurrences": 9 + }, + "0x833589fcd6edb6e08f4c7c32d4f71b54bda02913": { + "address": "0x833589fcd6edb6e08f4c7c32d4f71b54bda02913", + "symbol": "USDC", + "decimals": 6, + "name": "USD Coin", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x833589fcd6edb6e08f4c7c32d4f71b54bda02913.png", + "aggregators": [ + "CoinGecko", + "1inch", + "LiFi", + "Socket", + "Rubic", + "Squid", + "Rango", + "Sonarwatch", + "SushiSwap" + ], + "occurrences": 9 + }, + "0xc1cba3fcea344f92d9239c08c0568f6f2f0ee452": { + "address": "0xc1cba3fcea344f92d9239c08c0568f6f2f0ee452", + "symbol": "WSTETH", + "decimals": 18, + "name": "Wrapped liquid staked Ether 2.0", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xc1cba3fcea344f92d9239c08c0568f6f2f0ee452.png", + "aggregators": [ + "CoinGecko", + "1inch", + "LiFi", + "Socket", + "Rubic", + "Squid", + "Rango", + "Sonarwatch", + "SushiSwap" + ], + "occurrences": 9 + }, + "0xb6fe221fe9eef5aba221c348ba20a1bf5e73624c": { + "address": "0xb6fe221fe9eef5aba221c348ba20a1bf5e73624c", + "symbol": "RETH", + "decimals": 18, + "name": "Rocket Pool ETH", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xb6fe221fe9eef5aba221c348ba20a1bf5e73624c.png", + "aggregators": [ + "CoinGecko", + "1inch", + "LiFi", + "TrustWallet", + "Socket", + "Rubic", + "Squid", + "Rango", + "Sonarwatch" + ], + "occurrences": 9 + }, + "0xed6e000def95780fb89734c07ee2ce9f6dcaf110": { + "address": "0xed6e000def95780fb89734c07ee2ce9f6dcaf110", + "symbol": "EDGE", + "decimals": 18, + "name": "Definitive", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xed6e000def95780fb89734c07ee2ce9f6dcaf110.png", + "aggregators": [ + "CoinGecko", + "1inch", + "LiFi", + "Socket", + "Rubic", + "Squid", + "Rango", + "Sonarwatch" + ], + "occurrences": 8 + }, + "0x50c5725949a6f0c72e6c4a641f24049a917db0cb": { + "address": "0x50c5725949a6f0c72e6c4a641f24049a917db0cb", + "symbol": "DAI", + "decimals": 18, + "name": "Dai", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x50c5725949a6f0c72e6c4a641f24049a917db0cb.png", + "aggregators": [ + "CoinGecko", + "1inch", + "LiFi", + "TrustWallet", + "Socket", + "Rubic", + "Squid", + "Rango", + "Sonarwatch", + "SushiSwap" + ], + "occurrences": 10 + }, + "0x9e1028f5f1d5ede59748ffcee5532509976840e0": { + "address": "0x9e1028f5f1d5ede59748ffcee5532509976840e0", + "symbol": "COMP", + "decimals": 18, + "name": "Compound", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x9e1028f5f1d5ede59748ffcee5532509976840e0.png", + "aggregators": [ + "CoinGecko", + "1inch", + "LiFi", + "Socket", + "Rubic", + "Squid", + "Rango", + "Sonarwatch", + "SushiSwap" + ], + "occurrences": 9 + }, + "0xd9aaec86b65d86f6a7b5b1b0c42ffa531710b6ca": { + "address": "0xd9aaec86b65d86f6a7b5b1b0c42ffa531710b6ca", + "symbol": "USDBC", + "decimals": 6, + "name": "USD Base Coin", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xd9aaec86b65d86f6a7b5b1b0c42ffa531710b6ca.png", + "aggregators": [ + "CoinGecko", + "1inch", + "LiFi", + "TrustWallet", + "Rubic", + "Squid", + "Rango", + "Sonarwatch", + "SushiSwap" + ], + "occurrences": 9 + }, + "0x4200000000000000000000000000000000000006": { + "address": "0x4200000000000000000000000000000000000006", + "symbol": "WETH", + "decimals": 18, + "name": "Wrapped Ether", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x4200000000000000000000000000000000000006.png", + "aggregators": [ + "CoinGecko", + "1inch", + "LiFi", + "Socket", + "Rubic", + "Squid", + "Rango", + "Sonarwatch", + "SushiSwap" + ], + "occurrences": 9 + }, + "0x9eaf8c1e34f05a589eda6bafdf391cf6ad3cb239": { + "address": "0x9eaf8c1e34f05a589eda6bafdf391cf6ad3cb239", + "symbol": "YFI", + "decimals": 18, + "name": "yearn.finance", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x9eaf8c1e34f05a589eda6bafdf391cf6ad3cb239.png", + "aggregators": [ + "CoinGecko", + "1inch", + "LiFi", + "TrustWallet", + "Socket", + "Rubic", + "Squid", + "Rango", + "Sonarwatch" + ], + "occurrences": 9 + }, + "0x22e6966b799c4d5b13be962e1d117b56327fda66": { + "address": "0x22e6966b799c4d5b13be962e1d117b56327fda66", + "symbol": "SNX", + "decimals": 18, + "name": "Synthetix Network", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x22e6966b799c4d5b13be962e1d117b56327fda66.png", + "aggregators": [ + "CoinGecko", + "1inch", + "LiFi", + "Socket", + "Rubic", + "Squid", + "Rango", + "Sonarwatch" + ], + "occurrences": 8 + }, + "0x368181499736d0c0cc614dbb145e2ec1ac86b8c6": { + "address": "0x368181499736d0c0cc614dbb145e2ec1ac86b8c6", + "symbol": "LUSD", + "decimals": 18, + "name": "Liquity USD", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x368181499736d0c0cc614dbb145e2ec1ac86b8c6.png", + "aggregators": [ + "CoinGecko", + "1inch", + "LiFi", + "Socket", + "Rubic", + "Squid", + "Rango", + "Sonarwatch" + ], + "occurrences": 8 + }, + "0x4621b7a9c75199271f773ebd9a499dbd165c3191": { + "address": "0x4621b7a9c75199271f773ebd9a499dbd165c3191", + "symbol": "DOLA", + "decimals": 18, + "name": "DOLA", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x4621b7a9c75199271f773ebd9a499dbd165c3191.png", + "aggregators": [ + "CoinGecko", + "1inch", + "LiFi", + "Socket", + "Rubic", + "Squid", + "Rango", + "Sonarwatch" + ], + "occurrences": 8 + }, + "0xbaa5cc21fd487b8fcc2f632f3f4e8d37262a0842": { + "address": "0xbaa5cc21fd487b8fcc2f632f3f4e8d37262a0842", + "symbol": "MORPHO", + "decimals": 18, + "name": "Morpho", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xbaa5cc21fd487b8fcc2f632f3f4e8d37262a0842.png", + "aggregators": [ + "CoinGecko", + "1inch", + "LiFi", + "Socket", + "Rubic", + "Squid", + "Rango", + "Sonarwatch" + ], + "occurrences": 8 + }, + "0x236aa50979d5f3de3bd1eeb40e81137f22ab794b": { + "address": "0x236aa50979d5f3de3bd1eeb40e81137f22ab794b", + "symbol": "TBTC", + "decimals": 18, + "name": "tBTC", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x236aa50979d5f3de3bd1eeb40e81137f22ab794b.png", + "aggregators": [ + "CoinGecko", + "1inch", + "LiFi", + "Socket", + "Rubic", + "Squid", + "Rango", + "Sonarwatch" + ], + "occurrences": 8 + }, + "0xfa980ced6895ac314e7de34ef1bfae90a5add21b": { + "address": "0xfa980ced6895ac314e7de34ef1bfae90a5add21b", + "symbol": "PRIME", + "decimals": 18, + "name": "Echelon Prime", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xfa980ced6895ac314e7de34ef1bfae90a5add21b.png", + "aggregators": [ + "CoinGecko", + "1inch", + "LiFi", + "Socket", + "Rubic", + "Squid", + "Rango", + "Sonarwatch" + ], + "occurrences": 8 + }, + "0x4158734d47fc9692176b5085e0f52ee0da5d47f1": { + "address": "0x4158734d47fc9692176b5085e0f52ee0da5d47f1", + "symbol": "BAL", + "decimals": 18, + "name": "Balancer", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x4158734d47fc9692176b5085e0f52ee0da5d47f1.png", + "aggregators": [ + "CoinGecko", + "1inch", + "LiFi", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 7 + }, + "0x98d0baa52b2d063e780de12f615f963fe8537553": { + "address": "0x98d0baa52b2d063e780de12f615f963fe8537553", + "symbol": "KAITO", + "decimals": 18, + "name": "KAITO", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x98d0baa52b2d063e780de12f615f963fe8537553.png", + "aggregators": [ + "CoinGecko", + "1inch", + "LiFi", + "Rubic", + "Squid", + "Rango", + "Sonarwatch" + ], + "occurrences": 7 + }, + "0x7d49a065d17d6d4a55dc13649901fdbb98b2afba": { + "address": "0x7d49a065d17d6d4a55dc13649901fdbb98b2afba", + "symbol": "SUSHI", + "decimals": 18, + "name": "SushiToken", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x7d49a065d17d6d4a55dc13649901fdbb98b2afba.png", + "aggregators": [ + "CoinGecko", + "1inch", + "Socket", + "Rubic", + "Rango", + "Sonarwatch", + "SushiSwap" + ], + "occurrences": 7 + }, + "0xacfe6019ed1a7dc6f7b508c02d1b04ec88cc21bf": { + "address": "0xacfe6019ed1a7dc6f7b508c02d1b04ec88cc21bf", + "symbol": "VVV", + "decimals": 18, + "name": "Venice Token", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xacfe6019ed1a7dc6f7b508c02d1b04ec88cc21bf.png", + "aggregators": [ + "CoinGecko", + "1inch", + "LiFi", + "Rubic", + "Squid", + "Rango", + "Sonarwatch" + ], + "occurrences": 7 + }, + "0x1111111111166b7fe7bd91427724b487980afc69": { + "address": "0x1111111111166b7fe7bd91427724b487980afc69", + "symbol": "ZORA", + "decimals": 18, + "name": "Zora", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x1111111111166b7fe7bd91427724b487980afc69.png", + "aggregators": [ + "CoinGecko", + "1inch", + "LiFi", + "Rubic", + "Squid", + "Rango", + "Sonarwatch" + ], + "occurrences": 7 + }, + "0xfde4c96c8593536e31f229ea8f37b2ada2699bb2": { + "address": "0xfde4c96c8593536e31f229ea8f37b2ada2699bb2", + "symbol": "USDT", + "decimals": 6, + "name": "L2 Standard Bridged USDT (Base)", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xfde4c96c8593536e31f229ea8f37b2ada2699bb2.png", + "aggregators": [ + "CoinGecko", + "1inch", + "LiFi", + "Rubic", + "Squid", + "Rango", + "Sonarwatch" + ], + "occurrences": 7 + }, + "0x226a2fa2556c48245e57cd1cba4c6c9e67077dd2": { + "address": "0x226a2fa2556c48245e57cd1cba4c6c9e67077dd2", + "symbol": "BIO", + "decimals": 18, + "name": "Bio Protocol", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x226a2fa2556c48245e57cd1cba4c6c9e67077dd2.png", + "aggregators": [ + "CoinGecko", + "LiFi", + "Socket", + "Rubic", + "Squid", + "Rango", + "Sonarwatch" + ], + "occurrences": 7 + }, + "0x688aee022aa544f150678b8e5720b6b96a9e9a2f": { + "address": "0x688aee022aa544f150678b8e5720b6b96a9e9a2f", + "symbol": "SYRUP", + "decimals": 18, + "name": "Maple Finance", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x688aee022aa544f150678b8e5720b6b96a9e9a2f.png", + "aggregators": [ + "CoinGecko", + "LiFi", + "Socket", + "Rubic", + "Squid", + "Rango", + "Sonarwatch" + ], + "occurrences": 7 + }, + "0x18dd5b087bca9920562aff7a0199b96b9230438b": { + "address": "0x18dd5b087bca9920562aff7a0199b96b9230438b", + "symbol": "PRO", + "decimals": 18, + "name": "Propy", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x18dd5b087bca9920562aff7a0199b96b9230438b.png", + "aggregators": [ + "CoinGecko", + "1inch", + "LiFi", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 7 + }, + "0xcd2f22236dd9dfe2356d7c543161d4d260fd9bcb": { + "address": "0xcd2f22236dd9dfe2356d7c543161d4d260fd9bcb", + "symbol": "GHST", + "decimals": 18, + "name": "Aavegotchi", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xcd2f22236dd9dfe2356d7c543161d4d260fd9bcb.png", + "aggregators": [ + "CoinGecko", + "1inch", + "LiFi", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 7 + }, + "0xa1832f7f4e534ae557f9b5ab76de54b1873e498b": { + "address": "0xa1832f7f4e534ae557f9b5ab76de54b1873e498b", + "symbol": "BID", + "decimals": 18, + "name": "CreatorBid", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xa1832f7f4e534ae557f9b5ab76de54b1873e498b.png", + "aggregators": [ + "CoinGecko", + "1inch", + "LiFi", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 7 + }, + "0xca4c2e10037ac1af9f501ecb11a710776c87d2d5": { + "address": "0xca4c2e10037ac1af9f501ecb11a710776c87d2d5", + "symbol": "SOVRN", + "decimals": 18, + "name": "Sovrun", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xca4c2e10037ac1af9f501ecb11a710776c87d2d5.png", + "aggregators": [ + "CoinGecko", + "Socket", + "Rubic", + "Squid", + "Rango", + "Sonarwatch" + ], + "occurrences": 6 + }, + "0x489fe42c267fe0366b16b0c39e7aeef977e841ef": { + "address": "0x489fe42c267fe0366b16b0c39e7aeef977e841ef", + "symbol": "WAMPL", + "decimals": 18, + "name": "Wrapped Ampleforth", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x489fe42c267fe0366b16b0c39e7aeef977e841ef.png", + "aggregators": [ + "CoinGecko", + "1inch", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 6 + }, + "0x3992b27da26848c2b19cea6fd25ad5568b68ab98": { + "address": "0x3992b27da26848c2b19cea6fd25ad5568b68ab98", + "symbol": "OM", + "decimals": 18, + "name": "MANTRA", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x3992b27da26848c2b19cea6fd25ad5568b68ab98.png", + "aggregators": [ + "1inch", + "LiFi", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 6 + }, + "0x13f4196cc779275888440b3000ae533bbbbc3166": { + "address": "0x13f4196cc779275888440b3000ae533bbbbc3166", + "symbol": "AMKT", + "decimals": 18, + "name": "Alongside Crypto Market Index", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x13f4196cc779275888440b3000ae533bbbbc3166.png", + "aggregators": ["CoinGecko", "Socket", "Rubic", "Squid", "Rango"], + "occurrences": 5 + }, + "0xa7d68d155d17cb30e311367c2ef1e82ab6022b67": { + "address": "0xa7d68d155d17cb30e311367c2ef1e82ab6022b67", + "symbol": "BTRST", + "decimals": 18, + "name": "Braintrust", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xa7d68d155d17cb30e311367c2ef1e82ab6022b67.png", + "aggregators": [ + "CoinGecko", + "1inch", + "Socket", + "Rubic", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x532f27101965dd16442e59d40670faf5ebb142e4": { + "address": "0x532f27101965dd16442e59d40670faf5ebb142e4", + "symbol": "BRETT", + "decimals": 18, + "name": "Brett", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x532f27101965dd16442e59d40670faf5ebb142e4.png", + "aggregators": [ + "CoinGecko", + "1inch", + "LiFi", + "Socket", + "Rubic", + "Squid", + "Rango", + "Sonarwatch", + "SushiSwap" + ], + "occurrences": 9 + }, + "0x4f9fd6be4a90f2620860d680c0d4d5fb53d1a825": { + "address": "0x4f9fd6be4a90f2620860d680c0d4d5fb53d1a825", + "symbol": "AIXBT", + "decimals": 18, + "name": "aixbt by Virtuals", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x4f9fd6be4a90f2620860d680c0d4d5fb53d1a825.png", + "aggregators": [ + "CoinGecko", + "1inch", + "LiFi", + "Socket", + "Rubic", + "Squid", + "Rango", + "Sonarwatch" + ], + "occurrences": 8 + }, + "0xcbb7c0000ab88b473b1f5afd9ef808440eed33bf": { + "address": "0xcbb7c0000ab88b473b1f5afd9ef808440eed33bf", + "symbol": "CBBTC", + "decimals": 8, + "name": "Coinbase Wrapped BTC", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xcbb7c0000ab88b473b1f5afd9ef808440eed33bf.png", + "aggregators": [ + "CoinGecko", + "1inch", + "LiFi", + "Socket", + "Rubic", + "Squid", + "Rango", + "Sonarwatch" + ], + "occurrences": 8 + }, + "0x4ed4e862860bed51a9570b96d89af5e1b0efefed": { + "address": "0x4ed4e862860bed51a9570b96d89af5e1b0efefed", + "symbol": "DEGEN", + "decimals": 18, + "name": "Degen (Base)", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x4ed4e862860bed51a9570b96d89af5e1b0efefed.png", + "aggregators": [ + "CoinGecko", + "1inch", + "LiFi", + "Socket", + "Rubic", + "Squid", + "Rango", + "Sonarwatch" + ], + "occurrences": 8 + }, + "0xac1bd2486aaf3b5c0fc3fd868558b082a531b2b4": { + "address": "0xac1bd2486aaf3b5c0fc3fd868558b082a531b2b4", + "symbol": "TOSHI", + "decimals": 18, + "name": "Toshi", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xac1bd2486aaf3b5c0fc3fd868558b082a531b2b4.png", + "aggregators": [ + "CoinGecko", + "1inch", + "LiFi", + "Rubic", + "Squid", + "Rango", + "Sonarwatch", + "SushiSwap" + ], + "occurrences": 8 + }, + "0x0b3e328455c4059eeb9e3f84b5543f74e24e7e1b": { + "address": "0x0b3e328455c4059eeb9e3f84b5543f74e24e7e1b", + "symbol": "VIRTUAL", + "decimals": 18, + "name": "Virtuals Protocol", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x0b3e328455c4059eeb9e3f84b5543f74e24e7e1b.png", + "aggregators": [ + "CoinGecko", + "1inch", + "LiFi", + "Socket", + "Rubic", + "Squid", + "Rango", + "Sonarwatch" + ], + "occurrences": 8 + }, + "0x820c137fa70c8691f0e44dc420a5e53c168921dc": { + "address": "0x820c137fa70c8691f0e44dc420a5e53c168921dc", + "symbol": "USDS", + "decimals": 18, + "name": "USDS", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x820c137fa70c8691f0e44dc420a5e53c168921dc.png", + "aggregators": [ + "CoinGecko", + "1inch", + "LiFi", + "Socket", + "Rubic", + "Squid", + "Rango", + "Sonarwatch" + ], + "occurrences": 8 + }, + "0xab36452dbac151be02b16ca17d8919826072f64a": { + "address": "0xab36452dbac151be02b16ca17d8919826072f64a", + "symbol": "RSR", + "decimals": 18, + "name": "Reserve Rights", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xab36452dbac151be02b16ca17d8919826072f64a.png", + "aggregators": [ + "CoinGecko", + "LiFi", + "Socket", + "Rubic", + "Squid", + "Rango", + "Sonarwatch" + ], + "occurrences": 7 + }, + "0x50da645f148798f68ef2d7db7c1cb22a6819bb2c": { + "address": "0x50da645f148798f68ef2d7db7c1cb22a6819bb2c", + "symbol": "SPX", + "decimals": 8, + "name": "SPX6900", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x50da645f148798f68ef2d7db7c1cb22a6819bb2c.png", + "aggregators": [ + "CoinGecko", + "LiFi", + "Socket", + "Rubic", + "Squid", + "Rango", + "Sonarwatch" + ], + "occurrences": 7 + }, + "0x7002458b1df59eccb57387bc79ffc7c29e22e6f7": { + "address": "0x7002458b1df59eccb57387bc79ffc7c29e22e6f7", + "symbol": "OGN", + "decimals": 18, + "name": "Origin Token", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x7002458b1df59eccb57387bc79ffc7c29e22e6f7.png", + "aggregators": [ + "CoinGecko", + "1inch", + "LiFi", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 7 + }, + "0x2da56acb9ea78330f947bd57c54119debda7af71": { + "address": "0x2da56acb9ea78330f947bd57c54119debda7af71", + "symbol": "MOG", + "decimals": 18, + "name": "Mog Coin", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x2da56acb9ea78330f947bd57c54119debda7af71.png", + "aggregators": [ + "CoinGecko", + "1inch", + "Socket", + "Rubic", + "Squid", + "Rango", + "Sonarwatch" + ], + "occurrences": 7 + }, + "0x3792dbdd07e87413247df995e692806aa13d3299": { + "address": "0x3792dbdd07e87413247df995e692806aa13d3299", + "symbol": "OMI", + "decimals": 18, + "name": "ECOMI", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x3792dbdd07e87413247df995e692806aa13d3299.png", + "aggregators": [ + "CoinGecko", + "LiFi", + "Socket", + "Rubic", + "Squid", + "Rango", + "Sonarwatch" + ], + "occurrences": 7 + }, + "0xbcbaf311cec8a4eac0430193a528d9ff27ae38c1": { + "address": "0xbcbaf311cec8a4eac0430193a528d9ff27ae38c1", + "symbol": "IOTX", + "decimals": 18, + "name": "IoTeX", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xbcbaf311cec8a4eac0430193a528d9ff27ae38c1.png", + "aggregators": [ + "CoinGecko", + "LiFi", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 6 + }, + "0xc0634090f2fe6c6d75e61be2b949464abb498973": { + "address": "0xc0634090f2fe6c6d75e61be2b949464abb498973", + "symbol": "KTA", + "decimals": 18, + "name": "Keeta", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xc0634090f2fe6c6d75e61be2b949464abb498973.png", + "aggregators": [ + "CoinGecko", + "LiFi", + "Rubic", + "Squid", + "Rango", + "Sonarwatch" + ], + "occurrences": 6 + }, + "0x30c7235866872213f68cb1f08c37cb9eccb93452": { + "address": "0x30c7235866872213f68cb1f08c37cb9eccb93452", + "symbol": "PROMPT", + "decimals": 18, + "name": "Prompt", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x30c7235866872213f68cb1f08c37cb9eccb93452.png", + "aggregators": [ + "CoinGecko", + "1inch", + "LiFi", + "Socket", + "Rubic", + "Rango" + ], + "occurrences": 6 + }, + "0x1aa8fd5bcce2231c6100d55bf8b377cff33acfc3": { + "address": "0x1aa8fd5bcce2231c6100d55bf8b377cff33acfc3", + "symbol": "RAVE", + "decimals": 18, + "name": "RaveDAO", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x1aa8fd5bcce2231c6100d55bf8b377cff33acfc3.png", + "aggregators": [ + "CoinGecko", + "LiFi", + "Socket", + "Rubic", + "Squid", + "Rango" + ], + "occurrences": 6 + }, + "0xfbb75a59193a3525a8825bebe7d4b56899e2f7e1": { + "address": "0xfbb75a59193a3525a8825bebe7d4b56899e2f7e1", + "symbol": "RSC", + "decimals": 18, + "name": "ResearchCoin", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xfbb75a59193a3525a8825bebe7d4b56899e2f7e1.png", + "aggregators": [ + "CoinGecko", + "LiFi", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 6 + }, + "0x00000000a22c618fd6b4d7e9a335c4b96b189a38": { + "address": "0x00000000a22c618fd6b4d7e9a335c4b96b189a38", + "symbol": "TOWNS", + "decimals": 18, + "name": "Towns", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x00000000a22c618fd6b4d7e9a335c4b96b189a38.png", + "aggregators": [ + "CoinGecko", + "LiFi", + "Socket", + "Rubic", + "Squid", + "Rango" + ], + "occurrences": 6 + }, + "0xf43eb8de897fbc7f2502483b2bef7bb9ea179229": { + "address": "0xf43eb8de897fbc7f2502483b2bef7bb9ea179229", + "symbol": "ZEN", + "decimals": 18, + "name": "Horizen", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xf43eb8de897fbc7f2502483b2bef7bb9ea179229.png", + "aggregators": [ + "CoinGecko", + "LiFi", + "Socket", + "Rubic", + "Squid", + "Rango" + ], + "occurrences": 6 + }, + "0x3bb4445d30ac020a84c1b5a8a2c6248ebc9779d0": { + "address": "0x3bb4445d30ac020a84c1b5a8a2c6248ebc9779d0", + "symbol": "ZRX", + "decimals": 18, + "name": "0x Protocol Token", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x3bb4445d30ac020a84c1b5a8a2c6248ebc9779d0.png", + "aggregators": [ + "UniswapLabs", + "1inch", + "Socket", + "Rubic", + "Rango", + "SushiSwap" + ], + "occurrences": 6 + }, + "0x1f1c695f6b4a3f8b05f2492cef9474afb6d6ad69": { + "address": "0x1f1c695f6b4a3f8b05f2492cef9474afb6d6ad69", + "symbol": "A1C", + "decimals": 18, + "name": "Sally A1C", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x1f1c695f6b4a3f8b05f2492cef9474afb6d6ad69.png", + "aggregators": [ + "CoinGecko", + "LiFi", + "Rubic", + "Squid", + "Rango", + "Sonarwatch" + ], + "occurrences": 6 + }, + "0x311935cd80b76769bf2ecc9d8ab7635b2139cf82": { + "address": "0x311935cd80b76769bf2ecc9d8ab7635b2139cf82", + "symbol": "SOL", + "decimals": 9, + "name": "Solana", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x311935cd80b76769bf2ecc9d8ab7635b2139cf82.png", + "aggregators": [ + "CoinGecko", + "1inch", + "LiFi", + "Rubic", + "Squid", + "Rango" + ], + "occurrences": 6 + }, + "0x0c1dc73159e30c4b06170f2593d3118968a0dca5": { + "address": "0x0c1dc73159e30c4b06170f2593d3118968a0dca5", + "symbol": "GPS", + "decimals": 18, + "name": "GoPlus Security", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x0c1dc73159e30c4b06170f2593d3118968a0dca5.png", + "aggregators": [ + "CoinGecko", + "LiFi", + "Rubic", + "Squid", + "Rango", + "Sonarwatch" + ], + "occurrences": 6 + }, + "0x76c71f1703fbf19ffdcf3051e1e684cb9934510f": { + "address": "0x76c71f1703fbf19ffdcf3051e1e684cb9934510f", + "symbol": "AIXCB", + "decimals": 18, + "name": "aixCB by Virtuals", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x76c71f1703fbf19ffdcf3051e1e684cb9934510f.png", + "aggregators": [ + "CoinGecko", + "LiFi", + "Rubic", + "Squid", + "Rango", + "Sonarwatch" + ], + "occurrences": 6 + }, + "0xfb31f85a8367210b2e4ed2360d2da9dc2d2ccc95": { + "address": "0xfb31f85a8367210b2e4ed2360d2da9dc2d2ccc95", + "symbol": "EDEL", + "decimals": 18, + "name": "Edel", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xfb31f85a8367210b2e4ed2360d2da9dc2d2ccc95.png", + "aggregators": [ + "CoinGecko", + "LiFi", + "Socket", + "Rubic", + "Squid", + "Rango" + ], + "occurrences": 6 + }, + "0x937a1cfaf0a3d9f5dc4d0927f72ee5e3e5f82a00": { + "address": "0x937a1cfaf0a3d9f5dc4d0927f72ee5e3e5f82a00", + "symbol": "COCORO", + "decimals": 18, + "name": "Cocoro", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x937a1cfaf0a3d9f5dc4d0927f72ee5e3e5f82a00.png", + "aggregators": [ + "CoinGecko", + "Socket", + "Rubic", + "Squid", + "Rango", + "Sonarwatch" + ], + "occurrences": 6 + }, + "0x091a5abe6616e26268e5eecff256c2212fce2707": { + "address": "0x091a5abe6616e26268e5eecff256c2212fce2707", + "symbol": "BONDETH", + "decimals": 18, + "name": "Plaza BondETH", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x091a5abe6616e26268e5eecff256c2212fce2707.png", + "aggregators": [ + "CoinGecko", + "1inch", + "LiFi", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 6 + }, + "0xf7b0dd0b642a6ccc2fc4d8ffe2bffb0cac8c43c8": { + "address": "0xf7b0dd0b642a6ccc2fc4d8ffe2bffb0cac8c43c8", + "symbol": "GEKKO", + "decimals": 18, + "name": "Gekko AI by Virtuals", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xf7b0dd0b642a6ccc2fc4d8ffe2bffb0cac8c43c8.png", + "aggregators": [ + "CoinGecko", + "Socket", + "Rubic", + "Squid", + "Rango", + "Sonarwatch" + ], + "occurrences": 6 + }, + "0xda7ad9dea9397cffddae2f8a052b82f1484252b3": { + "address": "0xda7ad9dea9397cffddae2f8a052b82f1484252b3", + "symbol": "RIVER", + "decimals": 18, + "name": "RIVER", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xda7ad9dea9397cffddae2f8a052b82f1484252b3.png", + "aggregators": [ + "CoinGecko", + "LiFi", + "Socket", + "Rubic", + "Squid", + "Rango" + ], + "occurrences": 6 + }, + "0xc5fecc3a29fb57b5024eec8a2239d4621e111cbe": { + "address": "0xc5fecc3a29fb57b5024eec8a2239d4621e111cbe", + "symbol": "1INCH", + "decimals": 18, + "name": "1INCH Token", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xc5fecc3a29fb57b5024eec8a2239d4621e111cbe.png", + "aggregators": [ + "Metamask", + "1inch", + "LiFi", + "Socket", + "Rubic", + "Rango" + ], + "occurrences": 6 + }, + "0x5576d6ed9181f2225aff5282ac0ed29f755437ea": { + "address": "0x5576d6ed9181f2225aff5282ac0ed29f755437ea", + "symbol": "SERV", + "decimals": 18, + "name": "OpenServ", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x5576d6ed9181f2225aff5282ac0ed29f755437ea.png", + "aggregators": [ + "CoinGecko", + "LiFi", + "Rubic", + "Squid", + "Rango", + "Sonarwatch" + ], + "occurrences": 6 + }, + "0xb676f87a6e701f0de8de5ab91b56b66109766db1": { + "address": "0xb676f87a6e701f0de8de5ab91b56b66109766db1", + "symbol": "LRDS", + "decimals": 18, + "name": "BLOCKLORDS", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xb676f87a6e701f0de8de5ab91b56b66109766db1.png", + "aggregators": [ + "CoinGecko", + "Socket", + "Rubic", + "Squid", + "Rango", + "Sonarwatch" + ], + "occurrences": 6 + }, + "0x590830dfdf9a3f68afcdde2694773debdf267774": { + "address": "0x590830dfdf9a3f68afcdde2694773debdf267774", + "symbol": "GIZA", + "decimals": 18, + "name": "GIZA", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x590830dfdf9a3f68afcdde2694773debdf267774.png", + "aggregators": [ + "CoinGecko", + "LiFi", + "Socket", + "Rubic", + "Squid", + "Rango" + ], + "occurrences": 6 + }, + "0x5875eee11cf8398102fdad704c9e96607675467a": { + "address": "0x5875eee11cf8398102fdad704c9e96607675467a", + "symbol": "SUSDS", + "decimals": 18, + "name": "Savings USDS", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x5875eee11cf8398102fdad704c9e96607675467a.png", + "aggregators": [ + "CoinGecko", + "LiFi", + "Socket", + "Rubic", + "Squid", + "Rango" + ], + "occurrences": 6 + }, + "0x8ee73c484a26e0a5df2ee2a4960b789967dd0415": { + "address": "0x8ee73c484a26e0a5df2ee2a4960b789967dd0415", + "symbol": "CRV", + "decimals": 18, + "name": "Curve DAO", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x8ee73c484a26e0a5df2ee2a4960b789967dd0415.png", + "aggregators": [ + "CoinGecko", + "1inch", + "LiFi", + "Socket", + "Rubic", + "Rango" + ], + "occurrences": 6 + }, + "0xa99f6e6785da0f5d6fb42495fe424bce029eeb3e": { + "address": "0xa99f6e6785da0f5d6fb42495fe424bce029eeb3e", + "symbol": "PENDLE", + "decimals": 18, + "name": "Pendle", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xa99f6e6785da0f5d6fb42495fe424bce029eeb3e.png", + "aggregators": [ + "CoinGecko", + "LiFi", + "Socket", + "Rubic", + "Squid", + "Rango" + ], + "occurrences": 6 + }, + "0xbb22ff867f8ca3d5f2251b4084f6ec86d4666e14": { + "address": "0xbb22ff867f8ca3d5f2251b4084f6ec86d4666e14", + "symbol": "CTX", + "decimals": 18, + "name": "Cryptex Finance", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xbb22ff867f8ca3d5f2251b4084f6ec86d4666e14.png", + "aggregators": [ + "CoinGecko", + "LiFi", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 6 + }, + "0x1509706a6c66ca549ff0cb464de88231ddbe213b": { + "address": "0x1509706a6c66ca549ff0cb464de88231ddbe213b", + "symbol": "AURA", + "decimals": 18, + "name": "Aura Finance", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x1509706a6c66ca549ff0cb464de88231ddbe213b.png", + "aggregators": [ + "CoinGecko", + "LiFi", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 6 + }, + "0x417ac0e078398c154edfadd9ef675d30be60af93": { + "address": "0x417ac0e078398c154edfadd9ef675d30be60af93", + "symbol": "CRVUSD", + "decimals": 18, + "name": "crvUSD", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x417ac0e078398c154edfadd9ef675d30be60af93.png", + "aggregators": [ + "CoinGecko", + "LiFi", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 6 + }, + "0x043eb4b75d0805c43d7c834902e335621983cf03": { + "address": "0x043eb4b75d0805c43d7c834902e335621983cf03", + "symbol": "CADC", + "decimals": 18, + "name": "CAD Coin", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x043eb4b75d0805c43d7c834902e335621983cf03.png", + "aggregators": [ + "CoinGecko", + "1inch", + "Rubic", + "Squid", + "Rango", + "Sonarwatch" + ], + "occurrences": 6 + }, + "0xf7c1cefcf7e1dd8161e00099facd3e1db9e528ee": { + "address": "0xf7c1cefcf7e1dd8161e00099facd3e1db9e528ee", + "symbol": "TOWER", + "decimals": 18, + "name": "TOWER", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xf7c1cefcf7e1dd8161e00099facd3e1db9e528ee.png", + "aggregators": [ + "CoinGecko", + "Socket", + "Rubic", + "Rango", + "Sonarwatch", + "SushiSwap" + ], + "occurrences": 6 + }, + "0x2c24497d4086490e7ead87cc12597fb50c2e6ed6": { + "address": "0x2c24497d4086490e7ead87cc12597fb50c2e6ed6", + "symbol": "F", + "decimals": 18, + "name": "SynFutures", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x2c24497d4086490e7ead87cc12597fb50c2e6ed6.png", + "aggregators": [ + "CoinGecko", + "LiFi", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 6 + }, + "0x78b3c724a2f663d11373c4a1978689271895256f": { + "address": "0x78b3c724a2f663d11373c4a1978689271895256f", + "symbol": "TKN", + "decimals": 18, + "name": "Token Name Service", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x78b3c724a2f663d11373c4a1978689271895256f.png", + "aggregators": [ + "CoinGecko", + "LiFi", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 6 + }, + "0xaac78d1219c08aecc8e37e03858fe885f5ef1799": { + "address": "0xaac78d1219c08aecc8e37e03858fe885f5ef1799", + "symbol": "YGG", + "decimals": 18, + "name": "Yield Guild Games", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xaac78d1219c08aecc8e37e03858fe885f5ef1799.png", + "aggregators": [ + "CoinGecko", + "LiFi", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 6 + }, + "0x9b700b043e9587dde9a0c29a9483e2f8fa450d54": { + "address": "0x9b700b043e9587dde9a0c29a9483e2f8fa450d54", + "symbol": "AXGT", + "decimals": 18, + "name": "AxonDAO Governance Token", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x9b700b043e9587dde9a0c29a9483e2f8fa450d54.png", + "aggregators": [ + "CoinGecko", + "LiFi", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 6 + }, + "0x97c806e7665d3afd84a8fe1837921403d59f3dcc": { + "address": "0x97c806e7665d3afd84a8fe1837921403d59f3dcc", + "symbol": "ALI", + "decimals": 18, + "name": "Artificial Liquid Intelligence", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x97c806e7665d3afd84a8fe1837921403d59f3dcc.png", + "aggregators": [ + "CoinGecko", + "LiFi", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 6 + }, + "0xc5102fe9359fd9a28f877a67e36b0f050d81a3cc": { + "address": "0xc5102fe9359fd9a28f877a67e36b0f050d81a3cc", + "symbol": "HOP", + "decimals": 18, + "name": "Hop Protocol", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xc5102fe9359fd9a28f877a67e36b0f050d81a3cc.png", + "aggregators": [ + "CoinGecko", + "LiFi", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 6 + }, + "0xf34e0cff046e154cafcae502c7541b9e5fd8c249": { + "address": "0xf34e0cff046e154cafcae502c7541b9e5fd8c249", + "symbol": "THALES", + "decimals": 18, + "name": "Thales", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xf34e0cff046e154cafcae502c7541b9e5fd8c249.png", + "aggregators": [ + "CoinGecko", + "LiFi", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 6 + }, + "0x333333c465a19c85f85c6cfbed7b16b0b26e3333": { + "address": "0x333333c465a19c85f85c6cfbed7b16b0b26e3333", + "symbol": "ORA", + "decimals": 18, + "name": "ORA Coin", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x333333c465a19c85f85c6cfbed7b16b0b26e3333.png", + "aggregators": [ + "CoinGecko", + "LiFi", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 6 + }, + "0x259fac10c5cbfefe3e710e1d9467f70a76138d45": { + "address": "0x259fac10c5cbfefe3e710e1d9467f70a76138d45", + "symbol": "CTSI", + "decimals": 18, + "name": "Cartesi", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x259fac10c5cbfefe3e710e1d9467f70a76138d45.png", + "aggregators": [ + "CoinGecko", + "LiFi", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 6 + }, + "0xc3de830ea07524a0761646a6a4e4be0e114a3c83": { + "address": "0xc3de830ea07524a0761646a6a4e4be0e114a3c83", + "symbol": "UNI", + "decimals": 18, + "name": "Uniswap", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xc3de830ea07524a0761646a6a4e4be0e114a3c83.png", + "aggregators": ["UniswapLabs", "1inch", "Socket", "Rubic", "Rango"], + "occurrences": 5 + }, + "0x858c50c3af1913b0e849afdb74617388a1a5340d": { + "address": "0x858c50c3af1913b0e849afdb74617388a1a5340d", + "symbol": "SQT", + "decimals": 18, + "name": "SubQuery Network", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x858c50c3af1913b0e849afdb74617388a1a5340d.png", + "aggregators": [ + "CoinGecko", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0xef22cb48b8483df6152e1423b19df5553bbd818b": { + "address": "0xef22cb48b8483df6152e1423b19df5553bbd818b", + "symbol": "HEU", + "decimals": 18, + "name": "Heurist", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xef22cb48b8483df6152e1423b19df5553bbd818b.png", + "aggregators": ["CoinGecko", "Socket", "Rubic", "Rango"], + "occurrences": 4 + }, + "0x681a09a902d9c7445b3b1ab282c38d60c72f1f09": { + "address": "0x681a09a902d9c7445b3b1ab282c38d60c72f1f09", + "symbol": "AIKEK", + "decimals": 18, + "name": "AlphaKEK.AI", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x681a09a902d9c7445b3b1ab282c38d60c72f1f09.png", + "aggregators": [ + "CoinGecko", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x38815a4455921667d673b4cb3d48f0383ee93400": { + "address": "0x38815a4455921667d673b4cb3d48f0383ee93400", + "symbol": "PSTAKE", + "decimals": 18, + "name": "pSTAKE Finance", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x38815a4455921667d673b4cb3d48f0383ee93400.png", + "aggregators": [ + "CoinGecko", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0xb00d803cb2367a7da82351dcb9d213230da7b92a": { + "address": "0xb00d803cb2367a7da82351dcb9d213230da7b92a", + "symbol": "IYKYK", + "decimals": 18, + "name": "IYKYK", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xb00d803cb2367a7da82351dcb9d213230da7b92a.png", + "aggregators": [ + "CoinGecko", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x3816dd4bd44c8830c2fa020a5605bac72fa3de7a": { + "address": "0x3816dd4bd44c8830c2fa020a5605bac72fa3de7a", + "symbol": "PRE", + "decimals": 18, + "name": "Presearch", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x3816dd4bd44c8830c2fa020a5605bac72fa3de7a.png", + "aggregators": [ + "CoinGecko", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x09188484e1ab980daef53a9755241d759c5b7d60": { + "address": "0x09188484e1ab980daef53a9755241d759c5b7d60", + "symbol": "GRG", + "decimals": 18, + "name": "RigoBlock", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x09188484e1ab980daef53a9755241d759c5b7d60.png", + "aggregators": [ + "CoinGecko", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0xb3e3c89b8d9c88b1fe96856e382959ee6291ebba": { + "address": "0xb3e3c89b8d9c88b1fe96856e382959ee6291ebba", + "symbol": "REKT", + "decimals": 18, + "name": "REKT", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xb3e3c89b8d9c88b1fe96856e382959ee6291ebba.png", + "aggregators": ["CoinGecko", "Socket", "Rubic", "Squid", "Rango"], + "occurrences": 5 + }, + "0x4f604735c1cf31399c6e711d5962b2b3e0225ad3": { + "address": "0x4f604735c1cf31399c6e711d5962b2b3e0225ad3", + "symbol": "USDGLO", + "decimals": 18, + "name": "Glo Dollar", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x4f604735c1cf31399c6e711d5962b2b3e0225ad3.png", + "aggregators": [ + "CoinGecko", + "Rubic", + "Squid", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x717d31a60a9e811469673429c9f8ea24358990f1": { + "address": "0x717d31a60a9e811469673429c9f8ea24358990f1", + "symbol": "EVERY", + "decimals": 18, + "name": "Everyworld", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x717d31a60a9e811469673429c9f8ea24358990f1.png", + "aggregators": [ + "CoinGecko", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0xd08a2917653d4e460893203471f0000826fb4034": { + "address": "0xd08a2917653d4e460893203471f0000826fb4034", + "symbol": "FARM", + "decimals": 18, + "name": "FARM Reward Token", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xd08a2917653d4e460893203471f0000826fb4034.png", + "aggregators": ["1inch", "Socket", "Rubic", "Rango", "SushiSwap"], + "occurrences": 5 + }, + "0x0f1cfd0bb452db90a3bfc0848349463010419ab2": { + "address": "0x0f1cfd0bb452db90a3bfc0848349463010419ab2", + "symbol": "GURU", + "decimals": 18, + "name": "GURU Token", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x0f1cfd0bb452db90a3bfc0848349463010419ab2.png", + "aggregators": ["CoinGecko", "Socket", "Rubic", "Rango"], + "occurrences": 4 + }, + "0x1db0c569ebb4a8b57ac01833b9792f526305e062": { + "address": "0x1db0c569ebb4a8b57ac01833b9792f526305e062", + "symbol": "GENOME", + "decimals": 18, + "name": "GENOME", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x1db0c569ebb4a8b57ac01833b9792f526305e062.png", + "aggregators": ["CoinGecko", "Socket", "Rubic", "Rango"], + "occurrences": 4 + }, + "0x455234ab787665a219125235fb01b22b512dfcaa": { + "address": "0x455234ab787665a219125235fb01b22b512dfcaa", + "symbol": "DOSE", + "decimals": 18, + "name": "DOSE", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x455234ab787665a219125235fb01b22b512dfcaa.png", + "aggregators": ["Rubic", "Rango", "Sonarwatch"], + "occurrences": 3 + }, + "0x6985884c4392d348587b19cb9eaaf157f13271cd": { + "address": "0x6985884c4392d348587b19cb9eaaf157f13271cd", + "symbol": "ZRO", + "decimals": 18, + "name": "LayerZero", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x6985884c4392d348587b19cb9eaaf157f13271cd.png", + "aggregators": [ + "CoinGecko", + "1inch", + "LiFi", + "Socket", + "Rubic", + "Squid", + "Rango", + "Sonarwatch", + "SushiSwap" + ], + "occurrences": 9 + }, + "0x60a3e35cc302bfa44cb288bc5a4f316fdb1adb42": { + "address": "0x60a3e35cc302bfa44cb288bc5a4f316fdb1adb42", + "symbol": "EURC", + "decimals": 6, + "name": "EURC", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x60a3e35cc302bfa44cb288bc5a4f316fdb1adb42.png", + "aggregators": [ + "CoinGecko", + "1inch", + "LiFi", + "Socket", + "Rubic", + "Squid", + "Rango", + "Sonarwatch" + ], + "occurrences": 8 + }, + "0x27d2decb4bfc9c76f0309b8e88dec3a601fe25a8": { + "address": "0x27d2decb4bfc9c76f0309b8e88dec3a601fe25a8", + "symbol": "BALD", + "decimals": 18, + "name": "Bald", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x27d2decb4bfc9c76f0309b8e88dec3a601fe25a8.png", + "aggregators": [ + "CoinGecko", + "1inch", + "LiFi", + "Rubic", + "Squid", + "Rango", + "Sonarwatch", + "SushiSwap" + ], + "occurrences": 8 + }, + "0x3055913c90fcc1a6ce9a358911721eeb942013a1": { + "address": "0x3055913c90fcc1a6ce9a358911721eeb942013a1", + "symbol": "CAKE", + "decimals": 18, + "name": "PancakeSwap", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x3055913c90fcc1a6ce9a358911721eeb942013a1.png", + "aggregators": [ + "CoinGecko", + "1inch", + "LiFi", + "Socket", + "Rubic", + "Squid", + "Rango", + "Sonarwatch" + ], + "occurrences": 8 + }, + "0xb0ffa8000886e57f86dd5264b9582b2ad87b2b91": { + "address": "0xb0ffa8000886e57f86dd5264b9582b2ad87b2b91", + "symbol": "W", + "decimals": 18, + "name": "Wormhole", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xb0ffa8000886e57f86dd5264b9582b2ad87b2b91.png", + "aggregators": [ + "CoinGecko", + "1inch", + "LiFi", + "Socket", + "Rubic", + "Squid", + "Rango", + "Sonarwatch" + ], + "occurrences": 8 + }, + "0xba0dda8762c24da9487f5fa026a9b64b695a07ea": { + "address": "0xba0dda8762c24da9487f5fa026a9b64b695a07ea", + "symbol": "OX", + "decimals": 18, + "name": "OX Coin", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xba0dda8762c24da9487f5fa026a9b64b695a07ea.png", + "aggregators": [ + "CoinGecko", + "1inch", + "Socket", + "Rubic", + "Squid", + "Rango", + "Sonarwatch", + "SushiSwap" + ], + "occurrences": 8 + }, + "0x940181a94a35a4569e4529a3cdfb74e38fd98631": { + "address": "0x940181a94a35a4569e4529a3cdfb74e38fd98631", + "symbol": "AERO", + "decimals": 18, + "name": "Aerodrome Finance", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x940181a94a35a4569e4529a3cdfb74e38fd98631.png", + "aggregators": [ + "CoinGecko", + "1inch", + "LiFi", + "Rubic", + "Squid", + "Rango", + "Sonarwatch" + ], + "occurrences": 7 + }, + "0xbd2dbb8ecea9743ca5b16423b4eaa26bdcfe5ed2": { + "address": "0xbd2dbb8ecea9743ca5b16423b4eaa26bdcfe5ed2", + "symbol": "SYNTH", + "decimals": 18, + "name": "Synthswap", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xbd2dbb8ecea9743ca5b16423b4eaa26bdcfe5ed2.png", + "aggregators": [ + "CoinGecko", + "1inch", + "LiFi", + "Rubic", + "Squid", + "Rango", + "Sonarwatch" + ], + "occurrences": 7 + }, + "0xb79dd08ea68a908a97220c76d19a6aa9cbde4376": { + "address": "0xb79dd08ea68a908a97220c76d19a6aa9cbde4376", + "symbol": "USD+", + "decimals": 6, + "name": "Overnight.fi USD+ (Base)", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xb79dd08ea68a908a97220c76d19a6aa9cbde4376.png", + "aggregators": [ + "CoinGecko", + "1inch", + "LiFi", + "Rubic", + "Squid", + "Rango", + "Sonarwatch" + ], + "occurrences": 7 + }, + "0x0578d8a44db98b23bf096a382e016e29a5ce0ffe": { + "address": "0x0578d8a44db98b23bf096a382e016e29a5ce0ffe", + "symbol": "HIGHER", + "decimals": 18, + "name": "higher", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x0578d8a44db98b23bf096a382e016e29a5ce0ffe.png", + "aggregators": [ + "CoinGecko", + "1inch", + "LiFi", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 7 + }, + "0x24fcfc492c1393274b6bcd568ac9e225bec93584": { + "address": "0x24fcfc492c1393274b6bcd568ac9e225bec93584", + "symbol": "MAVIA", + "decimals": 18, + "name": "Heroes of Mavia", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x24fcfc492c1393274b6bcd568ac9e225bec93584.png", + "aggregators": [ + "CoinGecko", + "LiFi", + "Socket", + "Rubic", + "Squid", + "Rango", + "Sonarwatch" + ], + "occurrences": 7 + }, + "0xa88594d404727625a9437c3f886c7643872296ae": { + "address": "0xa88594d404727625a9437c3f886c7643872296ae", + "symbol": "WELL", + "decimals": 18, + "name": "WELL", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xa88594d404727625a9437c3f886c7643872296ae.png", + "aggregators": [ + "CoinGecko", + "LiFi", + "Socket", + "Rubic", + "Squid", + "Rango" + ], + "occurrences": 6 + }, + "0xc48823ec67720a04a9dfd8c7d109b2c3d6622094": { + "address": "0xc48823ec67720a04a9dfd8c7d109b2c3d6622094", + "symbol": "MCADE", + "decimals": 18, + "name": "Metacade", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xc48823ec67720a04a9dfd8c7d109b2c3d6622094.png", + "aggregators": [ + "CoinGecko", + "LiFi", + "Rubic", + "Squid", + "Rango", + "Sonarwatch" + ], + "occurrences": 6 + }, + "0x0bf852ebb243b963652b71103a2b97cf446f22c3": { + "address": "0x0bf852ebb243b963652b71103a2b97cf446f22c3", + "symbol": "ROCKET", + "decimals": 18, + "name": "AI ROCKET by Virtuals", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x0bf852ebb243b963652b71103a2b97cf446f22c3.png", + "aggregators": [ + "CoinGecko", + "Socket", + "Rubic", + "Squid", + "Rango", + "Sonarwatch" + ], + "occurrences": 6 + }, + "0xe7798f023fc62146e8aa1b36da45fb70855a77ea": { + "address": "0xe7798f023fc62146e8aa1b36da45fb70855a77ea", + "symbol": "IFARM", + "decimals": 18, + "name": "iFARM", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xe7798f023fc62146e8aa1b36da45fb70855a77ea.png", + "aggregators": [ + "CoinGecko", + "Socket", + "Rubic", + "Rango", + "Sonarwatch", + "SushiSwap" + ], + "occurrences": 6 + }, + "0x27e3bc3a66e24cad043ac3d93a12a8070e3897ba": { + "address": "0x27e3bc3a66e24cad043ac3d93a12a8070e3897ba", + "symbol": "OVR", + "decimals": 18, + "name": "Ovr", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x27e3bc3a66e24cad043ac3d93a12a8070e3897ba.png", + "aggregators": [ + "CoinGecko", + "Socket", + "Rubic", + "Squid", + "Rango", + "Sonarwatch" + ], + "occurrences": 6 + }, + "0x99ac4484e8a1dbd6a185380b3a811913ac884d87": { + "address": "0x99ac4484e8a1dbd6a185380b3a811913ac884d87", + "symbol": "SDAI", + "decimals": 18, + "name": "Savings Dai", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x99ac4484e8a1dbd6a185380b3a811913ac884d87.png", + "aggregators": [ + "CoinGecko", + "LiFi", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 6 + }, + "0xc7dcca0a3e69bd762c8db257f868f76be36c8514": { + "address": "0xc7dcca0a3e69bd762c8db257f868f76be36c8514", + "symbol": "KIBSHI", + "decimals": 18, + "name": "KiboShib", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xc7dcca0a3e69bd762c8db257f868f76be36c8514.png", + "aggregators": [ + "CoinGecko", + "Socket", + "Rubic", + "Squid", + "Rango", + "Sonarwatch" + ], + "occurrences": 6 + }, + "0x2974dc646e375e83bd1c0342625b49f288987fa4": { + "address": "0x2974dc646e375e83bd1c0342625b49f288987fa4", + "symbol": "SMT", + "decimals": 18, + "name": "Swarm Markets", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x2974dc646e375e83bd1c0342625b49f288987fa4.png", + "aggregators": [ + "CoinGecko", + "Socket", + "Rubic", + "Squid", + "Rango", + "Sonarwatch" + ], + "occurrences": 6 + }, + "0x8fe815417913a93ea99049fc0718ee1647a2a07c": { + "address": "0x8fe815417913a93ea99049fc0718ee1647a2a07c", + "symbol": "XSWAP", + "decimals": 18, + "name": "XSwap", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x8fe815417913a93ea99049fc0718ee1647a2a07c.png", + "aggregators": [ + "CoinGecko", + "1inch", + "LiFi", + "Socket", + "Rubic", + "Rango" + ], + "occurrences": 6 + }, + "0x0bbbead62f7647ae8323d2cb243a0db74b7c2b80": { + "address": "0x0bbbead62f7647ae8323d2cb243a0db74b7c2b80", + "symbol": "WALLET", + "decimals": 18, + "name": "Ambire Wallet", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x0bbbead62f7647ae8323d2cb243a0db74b7c2b80.png", + "aggregators": [ + "CoinGecko", + "LiFi", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 6 + }, + "0xd1917629b3e6a72e6772aab5dbe58eb7fa3c2f33": { + "address": "0xd1917629b3e6a72e6772aab5dbe58eb7fa3c2f33", + "symbol": "SEXY", + "decimals": 18, + "name": "Settled ETHXY Token", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xd1917629b3e6a72e6772aab5dbe58eb7fa3c2f33.png", + "aggregators": [ + "CoinGecko", + "Socket", + "Rubic", + "Rango", + "Sonarwatch", + "SushiSwap" + ], + "occurrences": 6 + }, + "0xefb97aaf77993922ac4be4da8fbc9a2425322677": { + "address": "0xefb97aaf77993922ac4be4da8fbc9a2425322677", + "symbol": "USD3", + "decimals": 18, + "name": "Web 3 Dollar", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xefb97aaf77993922ac4be4da8fbc9a2425322677.png", + "aggregators": [ + "CoinGecko", + "LiFi", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 6 + }, + "0xac12f930318be4f9d37f602cbf89cd33e99aa9d4": { + "address": "0xac12f930318be4f9d37f602cbf89cd33e99aa9d4", + "symbol": "WEXO", + "decimals": 18, + "name": "Wexo", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xac12f930318be4f9d37f602cbf89cd33e99aa9d4.png", + "aggregators": [ + "CoinGecko", + "LiFi", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 6 + }, + "0x59d9356e565ab3a36dd77763fc0d87feaf85508c": { + "address": "0x59d9356e565ab3a36dd77763fc0d87feaf85508c", + "symbol": "USDM", + "decimals": 18, + "name": "Mountain Protocol USD", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x59d9356e565ab3a36dd77763fc0d87feaf85508c.png", + "aggregators": [ + "CoinGecko", + "1inch", + "LiFi", + "Socket", + "Rubic", + "Sonarwatch" + ], + "occurrences": 6 + }, + "0xd652c5425aea2afd5fb142e120fecf79e18fafc3": { + "address": "0xd652c5425aea2afd5fb142e120fecf79e18fafc3", + "symbol": "POOL", + "decimals": 18, + "name": "PoolTogether", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xd652c5425aea2afd5fb142e120fecf79e18fafc3.png", + "aggregators": [ + "CoinGecko", + "LiFi", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 6 + }, + "0xafb89a09d82fbde58f18ac6437b3fc81724e4df6": { + "address": "0xafb89a09d82fbde58f18ac6437b3fc81724e4df6", + "symbol": "DOG", + "decimals": 18, + "name": "The Doge NFT", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xafb89a09d82fbde58f18ac6437b3fc81724e4df6.png", + "aggregators": [ + "CoinGecko", + "LiFi", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 6 + }, + "0x696f9436b67233384889472cd7cd58a6fb5df4f1": { + "address": "0x696f9436b67233384889472cd7cd58a6fb5df4f1", + "symbol": "AVNT", + "decimals": 18, + "name": "Avantis", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x696f9436b67233384889472cd7cd58a6fb5df4f1.png", + "aggregators": ["CoinGecko", "LiFi", "Rubic", "Squid", "Rango"], + "occurrences": 5 + }, + "0x2a06a17cbc6d0032cac2c6696da90f29d39a1a29": { + "address": "0x2a06a17cbc6d0032cac2c6696da90f29d39a1a29", + "symbol": "BITCOIN", + "decimals": 8, + "name": "HarryPotterObamaSonic10Inu", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x2a06a17cbc6d0032cac2c6696da90f29d39a1a29.png", + "aggregators": ["CoinGecko", "LiFi", "Socket", "Rubic", "Rango"], + "occurrences": 5 + }, + "0xcbada732173e39521cdbe8bf59a6dc85a9fc7b8c": { + "address": "0xcbada732173e39521cdbe8bf59a6dc85a9fc7b8c", + "symbol": "CBADA", + "decimals": 6, + "name": "Coinbase Wrapped ADA", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xcbada732173e39521cdbe8bf59a6dc85a9fc7b8c.png", + "aggregators": ["CoinGecko", "LiFi", "Rubic", "Squid", "Rango"], + "occurrences": 5 + }, + "0xcb17c9db87b595717c857a08468793f5bab6445f": { + "address": "0xcb17c9db87b595717c857a08468793f5bab6445f", + "symbol": "CBLTC", + "decimals": 8, + "name": "Coinbase Wrapped LTC", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xcb17c9db87b595717c857a08468793f5bab6445f.png", + "aggregators": ["CoinGecko", "LiFi", "Rubic", "Squid", "Rango"], + "occurrences": 5 + }, + "0x0c1c1c109fe34733fca54b82d7b46b75cfb71f6e": { + "address": "0x0c1c1c109fe34733fca54b82d7b46b75cfb71f6e", + "symbol": "CHIP", + "decimals": 18, + "name": "USD.AI", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x0c1c1c109fe34733fca54b82d7b46b75cfb71f6e.png", + "aggregators": ["CoinGecko", "LiFi", "Socket", "Rubic", "Rango"], + "occurrences": 5 + }, + "0xfbc2051ae2265686a469421b2c5a2d5462fbf5eb": { + "address": "0xfbc2051ae2265686a469421b2c5a2d5462fbf5eb", + "symbol": "OPG", + "decimals": 18, + "name": "OpenGradient", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xfbc2051ae2265686a469421b2c5a2d5462fbf5eb.png", + "aggregators": ["CoinGecko", "LiFi", "Rubic", "Squid", "Rango"], + "occurrences": 5 + }, + "0xc729777d0470f30612b1564fd96e8dd26f5814e3": { + "address": "0xc729777d0470f30612b1564fd96e8dd26f5814e3", + "symbol": "SAPIEN", + "decimals": 18, + "name": "Sapien", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xc729777d0470f30612b1564fd96e8dd26f5814e3.png", + "aggregators": ["CoinGecko", "1inch", "LiFi", "Rubic", "Squid"], + "occurrences": 5 + }, + "0x868fced65edbf0056c4163515dd840e9f287a4c3": { + "address": "0x868fced65edbf0056c4163515dd840e9f287a4c3", + "symbol": "SIGN", + "decimals": 18, + "name": "Sign", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x868fced65edbf0056c4163515dd840e9f287a4c3.png", + "aggregators": ["CoinGecko", "LiFi", "Socket", "Rubic", "Rango"], + "occurrences": 5 + }, + "0x11dc28d01984079b7efe7763b533e6ed9e3722b9": { + "address": "0x11dc28d01984079b7efe7763b533e6ed9e3722b9", + "symbol": "SYND", + "decimals": 18, + "name": "Syndicate", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x11dc28d01984079b7efe7763b533e6ed9e3722b9.png", + "aggregators": ["CoinGecko", "LiFi", "Socket", "Rubic", "Rango"], + "occurrences": 5 + }, + "0xba12bc7b210e61e5d3110b997a63ea216e0e18f7": { + "address": "0xba12bc7b210e61e5d3110b997a63ea216e0e18f7", + "symbol": "C", + "decimals": 18, + "name": "Chainbase Token", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xba12bc7b210e61e5d3110b997a63ea216e0e18f7.png", + "aggregators": ["CoinGecko", "LiFi", "Rubic", "Squid", "Rango"], + "occurrences": 5 + }, + "0xc0d3700000c0e32716863323bfd936b54a1633d1": { + "address": "0xc0d3700000c0e32716863323bfd936b54a1633d1", + "symbol": "CDX", + "decimals": 18, + "name": "Cod3x", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xc0d3700000c0e32716863323bfd936b54a1633d1.png", + "aggregators": [ + "CoinGecko", + "LiFi", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x39a1cce09d7354ac2db86c6b02924360a10e4793": { + "address": "0x39a1cce09d7354ac2db86c6b02924360a10e4793", + "symbol": "WHIM", + "decimals": 18, + "name": "whim.bet by Virtuals", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x39a1cce09d7354ac2db86c6b02924360a10e4793.png", + "aggregators": [ + "CoinGecko", + "Rubic", + "Squid", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0xacf80a4e55f5f28e1e7d261a221ca495db5bcbb3": { + "address": "0xacf80a4e55f5f28e1e7d261a221ca495db5bcbb3", + "symbol": "XAVI", + "decimals": 18, + "name": "XAVI by Virtuals", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xacf80a4e55f5f28e1e7d261a221ca495db5bcbb3.png", + "aggregators": [ + "CoinGecko", + "Rubic", + "Squid", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0xd3b0b58ec9516e4b875a075328e2cb059d4d54db": { + "address": "0xd3b0b58ec9516e4b875a075328e2cb059d4d54db", + "symbol": "ARCHAI", + "decimals": 18, + "name": "ArchAI", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xd3b0b58ec9516e4b875a075328e2cb059d4d54db.png", + "aggregators": ["CoinGecko", "1inch", "LiFi", "Rubic", "Rango"], + "occurrences": 5 + }, + "0xac27fa800955849d6d17cc8952ba9dd6eaa66187": { + "address": "0xac27fa800955849d6d17cc8952ba9dd6eaa66187", + "symbol": "UP", + "decimals": 18, + "name": "UnlockProtocolToken", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xac27fa800955849d6d17cc8952ba9dd6eaa66187.png", + "aggregators": [ + "Metamask", + "TrustWallet", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0xb7b4e8406673528e7dc3d787f3a42eb1ebc01cf6": { + "address": "0xb7b4e8406673528e7dc3d787f3a42eb1ebc01cf6", + "symbol": "LMNL", + "decimals": 18, + "name": "Liminal Agent by Virtuals", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xb7b4e8406673528e7dc3d787f3a42eb1ebc01cf6.png", + "aggregators": [ + "CoinGecko", + "Rubic", + "Squid", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0xeab49138ba2ea6dd776220fe26b7b8e446638956": { + "address": "0xeab49138ba2ea6dd776220fe26b7b8e446638956", + "symbol": "SEND", + "decimals": 18, + "name": "Send", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xeab49138ba2ea6dd776220fe26b7b8e446638956.png", + "aggregators": [ + "CoinGecko", + "LiFi", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0xd4f5fabd1763bbf52bd3b17cd445db6f9f836bd4": { + "address": "0xd4f5fabd1763bbf52bd3b17cd445db6f9f836bd4", + "symbol": "ISTAR", + "decimals": 18, + "name": "ISTARAI by Virtuals", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xd4f5fabd1763bbf52bd3b17cd445db6f9f836bd4.png", + "aggregators": [ + "CoinGecko", + "Rubic", + "Squid", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x625bb9bb04bdca51871ed6d07e2dd9034e914631": { + "address": "0x625bb9bb04bdca51871ed6d07e2dd9034e914631", + "symbol": "H4CK", + "decimals": 18, + "name": "H4CK Terminal by Virtuals", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x625bb9bb04bdca51871ed6d07e2dd9034e914631.png", + "aggregators": [ + "CoinGecko", + "Rubic", + "Squid", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x8feef9f0ffa554e51220a3391e7bb7560526a72a": { + "address": "0x8feef9f0ffa554e51220a3391e7bb7560526a72a", + "symbol": "SAGE", + "decimals": 18, + "name": "0xsim by Virtuals", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x8feef9f0ffa554e51220a3391e7bb7560526a72a.png", + "aggregators": [ + "CoinGecko", + "Rubic", + "Squid", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x4225658360c731a2b4c34555e45fea3b4b0181d5": { + "address": "0x4225658360c731a2b4c34555e45fea3b4b0181d5", + "symbol": "PORT", + "decimals": 18, + "name": "DataPort Navigator by Virtuals", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x4225658360c731a2b4c34555e45fea3b4b0181d5.png", + "aggregators": [ + "CoinGecko", + "Rubic", + "Squid", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x6af73d4579c70a24d52e4f4b43eecb2a75019f94": { + "address": "0x6af73d4579c70a24d52e4f4b43eecb2a75019f94", + "symbol": "RCAT", + "decimals": 18, + "name": "Replicat-One by Virtuals", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x6af73d4579c70a24d52e4f4b43eecb2a75019f94.png", + "aggregators": [ + "CoinGecko", + "Rubic", + "Squid", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0xc796e499cc8f599a2a8280825d8bda92f7a895e0": { + "address": "0xc796e499cc8f599a2a8280825d8bda92f7a895e0", + "symbol": "BRO", + "decimals": 18, + "name": "Neurobro", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xc796e499cc8f599a2a8280825d8bda92f7a895e0.png", + "aggregators": [ + "CoinGecko", + "Rubic", + "Squid", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0xaea742f80922f7c94b8fd91686c9dfbdfe90d9e6": { + "address": "0xaea742f80922f7c94b8fd91686c9dfbdfe90d9e6", + "symbol": "PREDI", + "decimals": 18, + "name": "Predi by Virtuals", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xaea742f80922f7c94b8fd91686c9dfbdfe90d9e6.png", + "aggregators": ["CoinGecko", "LiFi", "Rubic", "Squid", "Rango"], + "occurrences": 5 + }, + "0xa4a2e2ca3fbfe21aed83471d28b6f65a233c6e00": { + "address": "0xa4a2e2ca3fbfe21aed83471d28b6f65a233c6e00", + "symbol": "TIBBIR", + "decimals": 18, + "name": "Ribbita by Virtuals", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xa4a2e2ca3fbfe21aed83471d28b6f65a233c6e00.png", + "aggregators": ["CoinGecko", "LiFi", "Rubic", "Squid", "Rango"], + "occurrences": 5 + }, + "0x4b361e60cf256b926ba15f157d69cac9cd037426": { + "address": "0x4b361e60cf256b926ba15f157d69cac9cd037426", + "symbol": "CLUSTR", + "decimals": 18, + "name": "Clustr", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x4b361e60cf256b926ba15f157d69cac9cd037426.png", + "aggregators": [ + "CoinGecko", + "Rubic", + "Squid", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x90ec58ef4cc9f37b96de1e203b65bd4e6e79580e": { + "address": "0x90ec58ef4cc9f37b96de1e203b65bd4e6e79580e", + "symbol": "AMETA", + "decimals": 18, + "name": "Alpha City", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x90ec58ef4cc9f37b96de1e203b65bd4e6e79580e.png", + "aggregators": [ + "CoinGecko", + "LiFi", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0xb933d4ff5a0e7bfe6ab7da72b5dce2259030252f": { + "address": "0xb933d4ff5a0e7bfe6ab7da72b5dce2259030252f", + "symbol": "LEONAI", + "decimals": 18, + "name": "Leonardo AI", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xb933d4ff5a0e7bfe6ab7da72b5dce2259030252f.png", + "aggregators": [ + "CoinGecko", + "Rubic", + "Squid", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0xbb59167235bf3588b357de6cd98ca6f94d753c76": { + "address": "0xbb59167235bf3588b357de6cd98ca6f94d753c76", + "symbol": "MIN", + "decimals": 18, + "name": "MetaInside by Virtuals", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xbb59167235bf3588b357de6cd98ca6f94d753c76.png", + "aggregators": [ + "CoinGecko", + "Rubic", + "Squid", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x56ca7ea740f54501cc6ffb2b6fb9ba46eaf8b51c": { + "address": "0x56ca7ea740f54501cc6ffb2b6fb9ba46eaf8b51c", + "symbol": "AIGMX", + "decimals": 18, + "name": "Generative Market eXplorer", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x56ca7ea740f54501cc6ffb2b6fb9ba46eaf8b51c.png", + "aggregators": [ + "CoinGecko", + "Rubic", + "Squid", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x0b3eaead748facdb9d943d3407011f16eb17d0cf": { + "address": "0x0b3eaead748facdb9d943d3407011f16eb17d0cf", + "symbol": "PMX", + "decimals": 18, + "name": "Primex Finance", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x0b3eaead748facdb9d943d3407011f16eb17d0cf.png", + "aggregators": [ + "CoinGecko", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x7aafd31a321d3627b30a8e2171264b56852187fe": { + "address": "0x7aafd31a321d3627b30a8e2171264b56852187fe", + "symbol": "MIRA", + "decimals": 18, + "name": "Mira", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x7aafd31a321d3627b30a8e2171264b56852187fe.png", + "aggregators": ["CoinGecko", "LiFi", "Socket", "Rubic", "Rango"], + "occurrences": 5 + }, + "0x8c23e759ca0822beeff603bacaceb16d84e9a1cf": { + "address": "0x8c23e759ca0822beeff603bacaceb16d84e9a1cf", + "symbol": "AAAI", + "decimals": 18, + "name": "AAAI_agent by Virtuals", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x8c23e759ca0822beeff603bacaceb16d84e9a1cf.png", + "aggregators": [ + "CoinGecko", + "Rubic", + "Squid", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0xaaa843fb2916c0b57454270418e121c626402aaa": { + "address": "0xaaa843fb2916c0b57454270418e121c626402aaa", + "symbol": "AAA", + "decimals": 18, + "name": "Arcadia", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xaaa843fb2916c0b57454270418e121c626402aaa.png", + "aggregators": ["CoinGecko", "1inch", "LiFi", "Rubic", "Rango"], + "occurrences": 5 + }, + "0xfac77f01957ed1b3dd1cbea992199b8f85b6e886": { + "address": "0xfac77f01957ed1b3dd1cbea992199b8f85b6e886", + "symbol": "FACY", + "decimals": 18, + "name": "ArAIstotle by Virtuals", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xfac77f01957ed1b3dd1cbea992199b8f85b6e886.png", + "aggregators": ["CoinGecko", "LiFi", "Rubic", "Squid", "Rango"], + "occurrences": 5 + }, + "0x9818b6c09f5ecc843060927e8587c427c7c93583": { + "address": "0x9818b6c09f5ecc843060927e8587c427c7c93583", + "symbol": "RIZE", + "decimals": 18, + "name": "RIZE", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x9818b6c09f5ecc843060927e8587c427c7c93583.png", + "aggregators": [ + "CoinGecko", + "LiFi", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x4674f73545f1db4036250ff8c33a39ad1678d864": { + "address": "0x4674f73545f1db4036250ff8c33a39ad1678d864", + "symbol": "SQDGN", + "decimals": 18, + "name": "Degenerate SQuiD", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x4674f73545f1db4036250ff8c33a39ad1678d864.png", + "aggregators": [ + "CoinGecko", + "Rubic", + "Squid", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0xcff4429d8a323dd6b64b79a4460bec6d531fcfa8": { + "address": "0xcff4429d8a323dd6b64b79a4460bec6d531fcfa8", + "symbol": "SAI", + "decimals": 18, + "name": "Saitoshi by Virtuals", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xcff4429d8a323dd6b64b79a4460bec6d531fcfa8.png", + "aggregators": [ + "CoinGecko", + "Rubic", + "Squid", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x6948de89f535ed4a3b07122be0fe1ae65d527c03": { + "address": "0x6948de89f535ed4a3b07122be0fe1ae65d527c03", + "symbol": "ACTUAL", + "decimals": 18, + "name": "ACTUAL", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x6948de89f535ed4a3b07122be0fe1ae65d527c03.png", + "aggregators": [ + "CoinGecko", + "Rubic", + "Squid", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x4d70f1058b73198f12a76c193aef5db5dd75babd": { + "address": "0x4d70f1058b73198f12a76c193aef5db5dd75babd", + "symbol": "NOMAI", + "decimals": 18, + "name": "nomAI", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x4d70f1058b73198f12a76c193aef5db5dd75babd.png", + "aggregators": [ + "CoinGecko", + "Rubic", + "Squid", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x135fa55546758cf398da675a064f39d215ab1ff6": { + "address": "0x135fa55546758cf398da675a064f39d215ab1ff6", + "symbol": "4GS", + "decimals": 18, + "name": "4GENTIC", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x135fa55546758cf398da675a064f39d215ab1ff6.png", + "aggregators": [ + "CoinGecko", + "Rubic", + "Squid", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x9c5c365e764829876243d0b289733b9d2b729685": { + "address": "0x9c5c365e764829876243d0b289733b9d2b729685", + "symbol": "DESPXA", + "decimals": 18, + "name": "DeFi S&P 500", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x9c5c365e764829876243d0b289733b9d2b729685.png", + "aggregators": ["CoinGecko", "LiFi", "Rubic", "Squid", "Rango"], + "occurrences": 5 + }, + "0x919e43a2cce006710090e64bde9e01b38fd7f32f": { + "address": "0x919e43a2cce006710090e64bde9e01b38fd7f32f", + "symbol": "AIYP", + "decimals": 18, + "name": "Agent YP by Virtuals", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x919e43a2cce006710090e64bde9e01b38fd7f32f.png", + "aggregators": [ + "CoinGecko", + "Rubic", + "Squid", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x58db197e91bc8cf1587f75850683e4bd0730e6bf": { + "address": "0x58db197e91bc8cf1587f75850683e4bd0730e6bf", + "symbol": "AXR", + "decimals": 18, + "name": "Axelrod by Virtuals", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x58db197e91bc8cf1587f75850683e4bd0730e6bf.png", + "aggregators": ["CoinGecko", "LiFi", "Rubic", "Squid", "Rango"], + "occurrences": 5 + }, + "0x000096630066820566162c94874a776532705231": { + "address": "0x000096630066820566162c94874a776532705231", + "symbol": "IDRISS", + "decimals": 18, + "name": "IDRISS", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x000096630066820566162c94874a776532705231.png", + "aggregators": [ + "CoinGecko", + "LiFi", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x856d602e73545deaa1491a3726cf628d49f74f51": { + "address": "0x856d602e73545deaa1491a3726cf628d49f74f51", + "symbol": "GRAM", + "decimals": 18, + "name": "GRAM Ecosystem", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x856d602e73545deaa1491a3726cf628d49f74f51.png", + "aggregators": [ + "CoinGecko", + "Rubic", + "Squid", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0xbfa733702305280f066d470afdfa784fa70e2649": { + "address": "0xbfa733702305280f066d470afdfa784fa70e2649", + "symbol": "CAP", + "decimals": 18, + "name": "Capminal", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xbfa733702305280f066d470afdfa784fa70e2649.png", + "aggregators": [ + "CoinGecko", + "Rubic", + "Squid", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x5a4342f4268a731f4459cd0be22d4744a86d635d": { + "address": "0x5a4342f4268a731f4459cd0be22d4744a86d635d", + "symbol": "ARC", + "decimals": 18, + "name": "Reactor", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x5a4342f4268a731f4459cd0be22d4744a86d635d.png", + "aggregators": [ + "CoinGecko", + "Rubic", + "Squid", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x3ec2156d4c0a9cbdab4a016633b7bcf6a8d68ea2": { + "address": "0x3ec2156d4c0a9cbdab4a016633b7bcf6a8d68ea2", + "symbol": "DRB", + "decimals": 18, + "name": "DebtReliefBot", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x3ec2156d4c0a9cbdab4a016633b7bcf6a8d68ea2.png", + "aggregators": [ + "CoinGecko", + "Rubic", + "Squid", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x50f88fe97f72cd3e75b9eb4f747f59bceba80d59": { + "address": "0x50f88fe97f72cd3e75b9eb4f747f59bceba80d59", + "symbol": "JESSE", + "decimals": 18, + "name": "jesse", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x50f88fe97f72cd3e75b9eb4f747f59bceba80d59.png", + "aggregators": ["CoinGecko", "1inch", "LiFi", "Rubic", "Rango"], + "occurrences": 5 + }, + "0xc3d64ee7056cfd33c8382679773f8d6277e5c2c9": { + "address": "0xc3d64ee7056cfd33c8382679773f8d6277e5c2c9", + "symbol": "IAMAI", + "decimals": 18, + "name": "IAMAI", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xc3d64ee7056cfd33c8382679773f8d6277e5c2c9.png", + "aggregators": [ + "CoinGecko", + "Rubic", + "Squid", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x7cea5b9548a4b48cf9551813ef9e73de916e41e0": { + "address": "0x7cea5b9548a4b48cf9551813ef9e73de916e41e0", + "symbol": "MIA", + "decimals": 18, + "name": "MIA", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x7cea5b9548a4b48cf9551813ef9e73de916e41e0.png", + "aggregators": [ + "CoinGecko", + "LiFi", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0xac531eb26ca1d21b85126de8fb87e80e09002dcf": { + "address": "0xac531eb26ca1d21b85126de8fb87e80e09002dcf", + "symbol": "SAND", + "decimals": 18, + "name": "SAND", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xac531eb26ca1d21b85126de8fb87e80e09002dcf.png", + "aggregators": ["CoinGecko", "LiFi", "Socket", "Rubic", "Rango"], + "occurrences": 5 + }, + "0x37d2adc008118d04f259fc0c16ff66bf5a637d20": { + "address": "0x37d2adc008118d04f259fc0c16ff66bf5a637d20", + "symbol": "BOX", + "decimals": 18, + "name": "BOX", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x37d2adc008118d04f259fc0c16ff66bf5a637d20.png", + "aggregators": ["CoinGecko", "LiFi", "Socket", "Rubic", "Rango"], + "occurrences": 5 + }, + "0xe868084cf08f3c3db11f4b73a95473762d9463f7": { + "address": "0xe868084cf08f3c3db11f4b73a95473762d9463f7", + "symbol": "YU", + "decimals": 18, + "name": "YU", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xe868084cf08f3c3db11f4b73a95473762d9463f7.png", + "aggregators": ["CoinGecko", "LiFi", "Socket", "Rubic", "Rango"], + "occurrences": 5 + }, + "0xbf927b841994731c573bdf09ceb0c6b0aa887cdd": { + "address": "0xbf927b841994731c573bdf09ceb0c6b0aa887cdd", + "symbol": "VELVET", + "decimals": 18, + "name": "Velvet", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xbf927b841994731c573bdf09ceb0c6b0aa887cdd.png", + "aggregators": ["CoinGecko", "LiFi", "Rubic", "Squid", "Rango"], + "occurrences": 5 + }, + "0x2b11834ed1feaed4b4b3a86a6f571315e25a884d": { + "address": "0x2b11834ed1feaed4b4b3a86a6f571315e25a884d", + "symbol": "MOCA", + "decimals": 18, + "name": "MOCA", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x2b11834ed1feaed4b4b3a86a6f571315e25a884d.png", + "aggregators": ["CoinGecko", "LiFi", "Socket", "Rubic", "Rango"], + "occurrences": 5 + }, + "0xafde2490236bc64950def5472296aa0d9758db0d": { + "address": "0xafde2490236bc64950def5472296aa0d9758db0d", + "symbol": "WILD", + "decimals": 18, + "name": "WILD", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xafde2490236bc64950def5472296aa0d9758db0d.png", + "aggregators": ["CoinGecko", "LiFi", "Socket", "Rubic", "Rango"], + "occurrences": 5 + }, + "0x0555e30da8f98308edb960aa94c0db47230d2b9c": { + "address": "0x0555e30da8f98308edb960aa94c0db47230d2b9c", + "symbol": "WBTC", + "decimals": 8, + "name": "Wrapped BTC", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x0555e30da8f98308edb960aa94c0db47230d2b9c.png", + "aggregators": ["CoinGecko", "LiFi", "Socket", "Rubic", "Rango"], + "occurrences": 5 + }, + "0x086f405146ce90135750bbec9a063a8b20a8bffb": { + "address": "0x086f405146ce90135750bbec9a063a8b20a8bffb", + "symbol": "BREV", + "decimals": 18, + "name": "BREV", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x086f405146ce90135750bbec9a063a8b20a8bffb.png", + "aggregators": ["CoinGecko", "LiFi", "Socket", "Rubic", "Rango"], + "occurrences": 5 + }, + "0x6fbf03efa4363ca0afe0c9c3906f7d610890b683": { + "address": "0x6fbf03efa4363ca0afe0c9c3906f7d610890b683", + "symbol": "GAIA", + "decimals": 18, + "name": "GAIA", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x6fbf03efa4363ca0afe0c9c3906f7d610890b683.png", + "aggregators": ["CoinGecko", "LiFi", "Socket", "Rubic", "Rango"], + "occurrences": 5 + }, + "0x7ff7fa94b8b66ef313f7970d4eebd2cb3103a2c0": { + "address": "0x7ff7fa94b8b66ef313f7970d4eebd2cb3103a2c0", + "symbol": "VANA", + "decimals": 18, + "name": "VANA", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x7ff7fa94b8b66ef313f7970d4eebd2cb3103a2c0.png", + "aggregators": ["CoinGecko", "LiFi", "Socket", "Rubic", "Rango"], + "occurrences": 5 + }, + "0x176383016bb310c9f1c180dc6729d5e28104e602": { + "address": "0x176383016bb310c9f1c180dc6729d5e28104e602", + "symbol": "DREAMS", + "decimals": 18, + "name": "Daydreams", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x176383016bb310c9f1c180dc6729d5e28104e602.png", + "aggregators": ["CoinGecko", "LiFi", "Rubic", "Squid", "Rango"], + "occurrences": 5 + }, + "0xf970706063b7853877f39515c96932d49d5ac9cd": { + "address": "0xf970706063b7853877f39515c96932d49d5ac9cd", + "symbol": "YALA", + "decimals": 18, + "name": "YALA", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xf970706063b7853877f39515c96932d49d5ac9cd.png", + "aggregators": ["CoinGecko", "LiFi", "Socket", "Rubic", "Rango"], + "occurrences": 5 + }, + "0x0b2558bdbc7ffec0f327fb3579c23dabd1699706": { + "address": "0x0b2558bdbc7ffec0f327fb3579c23dabd1699706", + "symbol": "THQ", + "decimals": 18, + "name": "Theoriq Token", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x0b2558bdbc7ffec0f327fb3579c23dabd1699706.png", + "aggregators": ["CoinGecko", "LiFi", "Socket", "Rubic", "Rango"], + "occurrences": 5 + }, + "0xb29749498954a3a821ec37bde86e386df3ce30b6": { + "address": "0xb29749498954a3a821ec37bde86e386df3ce30b6", + "symbol": "LSETH", + "decimals": 18, + "name": "Liquid Staked ETH", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xb29749498954a3a821ec37bde86e386df3ce30b6.png", + "aggregators": [ + "CoinGecko", + "LiFi", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0xc7837be3d71e00fcbe76d77602bcf353df859664": { + "address": "0xc7837be3d71e00fcbe76d77602bcf353df859664", + "symbol": "LEGEND", + "decimals": 18, + "name": "Legend", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xc7837be3d71e00fcbe76d77602bcf353df859664.png", + "aggregators": [ + "CoinGecko", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x915424ac489433130d92b04096f3b96c82e92a9d": { + "address": "0x915424ac489433130d92b04096f3b96c82e92a9d", + "symbol": "PROS", + "decimals": 18, + "name": "Prosper", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x915424ac489433130d92b04096f3b96c82e92a9d.png", + "aggregators": [ + "Metamask", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x000000000000012def132e61759048be5b5c6033": { + "address": "0x000000000000012def132e61759048be5b5c6033", + "symbol": "CX", + "decimals": 18, + "name": "CX", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x000000000000012def132e61759048be5b5c6033.png", + "aggregators": ["CoinGecko", "LiFi", "Rubic", "Squid", "Rango"], + "occurrences": 5 + }, + "0xc3ce78b037dda1b966d31ec7979d3f3a38571a8e": { + "address": "0xc3ce78b037dda1b966d31ec7979d3f3a38571a8e", + "symbol": "BCSPX", + "decimals": 18, + "name": "Backed CSPX Core S&P 500", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xc3ce78b037dda1b966d31ec7979d3f3a38571a8e.png", + "aggregators": [ + "CoinGecko", + "LiFi", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0xecedb6f8108b9f7bbf499da843dced6c2bb6e270": { + "address": "0xecedb6f8108b9f7bbf499da843dced6c2bb6e270", + "symbol": "USDUC", + "decimals": 18, + "name": "USDUC", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xecedb6f8108b9f7bbf499da843dced6c2bb6e270.png", + "aggregators": ["CoinGecko", "LiFi", "Socket", "Rubic", "Rango"], + "occurrences": 5 + }, + "0x59264f02d301281f3393e1385c0aefd446eb0f00": { + "address": "0x59264f02d301281f3393e1385c0aefd446eb0f00", + "symbol": "PARTI", + "decimals": 18, + "name": "Particle Network", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x59264f02d301281f3393e1385c0aefd446eb0f00.png", + "aggregators": [ + "CoinGecko", + "LiFi", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x35e5db674d8e93a03d814fa0ada70731efe8a4b9": { + "address": "0x35e5db674d8e93a03d814fa0ada70731efe8a4b9", + "symbol": "USR", + "decimals": 18, + "name": "Resolv USD", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x35e5db674d8e93a03d814fa0ada70731efe8a4b9.png", + "aggregators": ["CoinGecko", "LiFi", "Socket", "Rubic", "Rango"], + "occurrences": 5 + }, + "0x91f9cc2649ac70a071602cade9b0c1a5868af51d": { + "address": "0x91f9cc2649ac70a071602cade9b0c1a5868af51d", + "symbol": "WXTZ", + "decimals": 18, + "name": "Wrapped XTZ", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x91f9cc2649ac70a071602cade9b0c1a5868af51d.png", + "aggregators": ["CoinGecko", "LiFi", "Socket", "Rubic", "Rango"], + "occurrences": 5 + }, + "0xe5e851b01dd3eda24fde709a407db44555b6d1e0": { + "address": "0xe5e851b01dd3eda24fde709a407db44555b6d1e0", + "symbol": "RIF", + "decimals": 18, + "name": "RIF", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xe5e851b01dd3eda24fde709a407db44555b6d1e0.png", + "aggregators": ["CoinGecko", "LiFi", "Socket", "Rubic", "Rango"], + "occurrences": 5 + }, + "0x7252c865c05378ffc15120f428dd65804dd0ce63": { + "address": "0x7252c865c05378ffc15120f428dd65804dd0ce63", + "symbol": "TLOS", + "decimals": 18, + "name": "TLOS", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x7252c865c05378ffc15120f428dd65804dd0ce63.png", + "aggregators": ["CoinGecko", "LiFi", "Rubic", "Squid", "Rango"], + "occurrences": 5 + }, + "0xe67f39fbe8c24ef8b3542efed1ee9963cefc1f2a": { + "address": "0xe67f39fbe8c24ef8b3542efed1ee9963cefc1f2a", + "symbol": "ANYONE", + "decimals": 18, + "name": "ANYONE", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xe67f39fbe8c24ef8b3542efed1ee9963cefc1f2a.png", + "aggregators": ["CoinGecko", "LiFi", "Socket", "Rubic", "Rango"], + "occurrences": 5 + }, + "0xc31389794ffac23331e0d9f611b7953f90aa5fdc": { + "address": "0xc31389794ffac23331e0d9f611b7953f90aa5fdc", + "symbol": "RLP", + "decimals": 18, + "name": "RLP", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xc31389794ffac23331e0d9f611b7953f90aa5fdc.png", + "aggregators": ["CoinGecko", "LiFi", "Socket", "Rubic", "Rango"], + "occurrences": 5 + }, + "0x7094c27f342dbadfbbed005b219431595e33b305": { + "address": "0x7094c27f342dbadfbbed005b219431595e33b305", + "symbol": "QUICK", + "decimals": 18, + "name": "QUICK", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x7094c27f342dbadfbbed005b219431595e33b305.png", + "aggregators": ["CoinGecko", "LiFi", "Socket", "Rubic", "Rango"], + "occurrences": 5 + }, + "0x62344be8ca1c339b46274a4017dd87af436900b1": { + "address": "0x62344be8ca1c339b46274a4017dd87af436900b1", + "symbol": "WSRUSD", + "decimals": 18, + "name": "WSRUSD", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x62344be8ca1c339b46274a4017dd87af436900b1.png", + "aggregators": ["CoinGecko", "LiFi", "Socket", "Rubic", "Rango"], + "occurrences": 5 + }, + "0xa153ad732f831a79b5575fa02e793ec4e99181b0": { + "address": "0xa153ad732f831a79b5575fa02e793ec4e99181b0", + "symbol": "EUL", + "decimals": 18, + "name": "EUL", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xa153ad732f831a79b5575fa02e793ec4e99181b0.png", + "aggregators": ["CoinGecko", "LiFi", "Socket", "Rubic", "Rango"], + "occurrences": 5 + }, + "0x2d189eabb667aa1ecfc01963a6a3a5d83960f558": { + "address": "0x2d189eabb667aa1ecfc01963a6a3a5d83960f558", + "symbol": "GALAXIS", + "decimals": 18, + "name": "GALAXIS Token", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x2d189eabb667aa1ecfc01963a6a3a5d83960f558.png", + "aggregators": [ + "CoinGecko", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x58d75a1c4477914f9a98a8708feaed1dbe40b8a3": { + "address": "0x58d75a1c4477914f9a98a8708feaed1dbe40b8a3", + "symbol": "ATH", + "decimals": 18, + "name": "AthenaDAO", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x58d75a1c4477914f9a98a8708feaed1dbe40b8a3.png", + "aggregators": [ + "CoinGecko", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x8f2e6758c4d6570344bd5007dec6301cd57590a0": { + "address": "0x8f2e6758c4d6570344bd5007dec6301cd57590a0", + "symbol": "SPOT", + "decimals": 9, + "name": "Spot", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x8f2e6758c4d6570344bd5007dec6301cd57590a0.png", + "aggregators": [ + "CoinGecko", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x39d5313c3750140e5042887413ba8aa6145a9bd2": { + "address": "0x39d5313c3750140e5042887413ba8aa6145a9bd2", + "symbol": "EMP", + "decimals": 18, + "name": "Empyreal", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x39d5313c3750140e5042887413ba8aa6145a9bd2.png", + "aggregators": [ + "CoinGecko", + "LiFi", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x7f05a7a9af2f5a07d1e64877c8dc37a64a22508e": { + "address": "0x7f05a7a9af2f5a07d1e64877c8dc37a64a22508e", + "symbol": "AJNA", + "decimals": 18, + "name": "Ajna Protocol", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x7f05a7a9af2f5a07d1e64877c8dc37a64a22508e.png", + "aggregators": [ + "CoinGecko", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0xb67675158b412d53fe6b68946483ba920b135ba1": { + "address": "0xb67675158b412d53fe6b68946483ba920b135ba1", + "symbol": "WSTUSR", + "decimals": 18, + "name": "WSTUSR", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xb67675158b412d53fe6b68946483ba920b135ba1.png", + "aggregators": ["CoinGecko", "LiFi", "Socket", "Rubic", "Rango"], + "occurrences": 5 + }, + "0x09d4214c03d01f49544c0448dbe3a27f768f2b34": { + "address": "0x09d4214c03d01f49544c0448dbe3a27f768f2b34", + "symbol": "RUSD", + "decimals": 18, + "name": "RUSD", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x09d4214c03d01f49544c0448dbe3a27f768f2b34.png", + "aggregators": ["CoinGecko", "LiFi", "Socket", "Rubic", "Rango"], + "occurrences": 5 + }, + "0x570b1533f6daa82814b25b62b5c7c4c55eb83947": { + "address": "0x570b1533f6daa82814b25b62b5c7c4c55eb83947", + "symbol": "BOBO", + "decimals": 18, + "name": "BOBO Coin", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x570b1533f6daa82814b25b62b5c7c4c55eb83947.png", + "aggregators": [ + "CoinGecko", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x9a6d24c02ec35ad970287ee8296d4d6552a31dbe": { + "address": "0x9a6d24c02ec35ad970287ee8296d4d6552a31dbe", + "symbol": "OPN", + "decimals": 18, + "name": "OPEN Ticketing Ecosystem", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x9a6d24c02ec35ad970287ee8296d4d6552a31dbe.png", + "aggregators": [ + "CoinGecko", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x881ed0fcef78120a135ec6cc66cef2779fe95bba": { + "address": "0x881ed0fcef78120a135ec6cc66cef2779fe95bba", + "symbol": "DOGEGF", + "decimals": 18, + "name": "DogeGF", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x881ed0fcef78120a135ec6cc66cef2779fe95bba.png", + "aggregators": [ + "CoinGecko", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x08d7ea3c148672c4b03999eb0d0467733da2db6a": { + "address": "0x08d7ea3c148672c4b03999eb0d0467733da2db6a", + "symbol": "NSTR", + "decimals": 18, + "name": "Nostra", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x08d7ea3c148672c4b03999eb0d0467733da2db6a.png", + "aggregators": [ + "CoinGecko", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x45d9c101a3870ca5024582fd788f4e1e8f7971c3": { + "address": "0x45d9c101a3870ca5024582fd788f4e1e8f7971c3", + "symbol": "MASQ", + "decimals": 18, + "name": "MASQ", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x45d9c101a3870ca5024582fd788f4e1e8f7971c3.png", + "aggregators": [ + "CoinGecko", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x8f019931375454fe4ee353427eb94e2e0c9e0a8c": { + "address": "0x8f019931375454fe4ee353427eb94e2e0c9e0a8c", + "symbol": "KOMPETE", + "decimals": 10, + "name": "KOMPETE", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x8f019931375454fe4ee353427eb94e2e0c9e0a8c.png", + "aggregators": [ + "CoinGecko", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x3d2eba645c44bbd32a34b7c017667711eb5b173c": { + "address": "0x3d2eba645c44bbd32a34b7c017667711eb5b173c", + "symbol": "WMC", + "decimals": 2, + "name": "Wrapped MistCoin", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x3d2eba645c44bbd32a34b7c017667711eb5b173c.png", + "aggregators": [ + "CoinGecko", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x7588310a7abf34dc608ac98a1c4432f85e194df5": { + "address": "0x7588310a7abf34dc608ac98a1c4432f85e194df5", + "symbol": "FORT", + "decimals": 18, + "name": "Forta", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x7588310a7abf34dc608ac98a1c4432f85e194df5.png", + "aggregators": ["CoinGecko", "LiFi", "Socket", "Rubic", "Rango"], + "occurrences": 5 + }, + "0xfdd22ce6d1f66bc0ec89b20bf16ccb6670f55a5a": { + "address": "0xfdd22ce6d1f66bc0ec89b20bf16ccb6670f55a5a", + "symbol": "THBILL", + "decimals": 6, + "name": "THBILL", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xfdd22ce6d1f66bc0ec89b20bf16ccb6670f55a5a.png", + "aggregators": ["CoinGecko", "LiFi", "Socket", "Rubic", "Rango"], + "occurrences": 5 + }, + "0xd5b22dcfa9a919b28afe164fc7af10b832d4b022": { + "address": "0xd5b22dcfa9a919b28afe164fc7af10b832d4b022", + "symbol": "LORDS", + "decimals": 18, + "name": "LORDS", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xd5b22dcfa9a919b28afe164fc7af10b832d4b022.png", + "aggregators": [ + "CoinGecko", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0xe7399151b688a265f347693d358821a5a8c213ec": { + "address": "0xe7399151b688a265f347693d358821a5a8c213ec", + "symbol": "SKAI", + "decimals": 18, + "name": "Skillful AI", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xe7399151b688a265f347693d358821a5a8c213ec.png", + "aggregators": [ + "CoinGecko", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0xab51a37ce3a3339fe5611c1a762eef952dd3d808": { + "address": "0xab51a37ce3a3339fe5611c1a762eef952dd3d808", + "symbol": "CAESAR", + "decimals": 18, + "name": "CAESAR", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xab51a37ce3a3339fe5611c1a762eef952dd3d808.png", + "aggregators": ["CoinGecko", "LiFi", "Rubic", "Squid", "Rango"], + "occurrences": 5 + }, + "0x9886447ff4c350f4600e4bf95db756bdc629b1ca": { + "address": "0x9886447ff4c350f4600e4bf95db756bdc629b1ca", + "symbol": "CERE", + "decimals": 10, + "name": "CERE", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x9886447ff4c350f4600e4bf95db756bdc629b1ca.png", + "aggregators": ["CoinGecko", "LiFi", "Socket", "Rubic", "Rango"], + "occurrences": 5 + }, + "0xac485391eb2d7d88253a7f1ef18c37f4242d1a24": { + "address": "0xac485391eb2d7d88253a7f1ef18c37f4242d1a24", + "symbol": "LSK", + "decimals": 18, + "name": "Lisk", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xac485391eb2d7d88253a7f1ef18c37f4242d1a24.png", + "aggregators": ["CoinGecko", "LiFi", "Socket", "Rubic", "Rango"], + "occurrences": 5 + }, + "0x5e64c9049455b3bb6e9fbdc33565fa313bae9b53": { + "address": "0x5e64c9049455b3bb6e9fbdc33565fa313bae9b53", + "symbol": "RIO", + "decimals": 18, + "name": "RIO", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x5e64c9049455b3bb6e9fbdc33565fa313bae9b53.png", + "aggregators": ["CoinGecko", "LiFi", "Socket", "Rubic", "Rango"], + "occurrences": 5 + }, + "0xf1a7000000950c7ad8aff13118bb7ab561a448ee": { + "address": "0xf1a7000000950c7ad8aff13118bb7ab561a448ee", + "symbol": "FLAY", + "decimals": 18, + "name": "Flayer", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xf1a7000000950c7ad8aff13118bb7ab561a448ee.png", + "aggregators": ["CoinGecko", "LiFi", "Socket", "Rubic", "Rango"], + "occurrences": 5 + }, + "0x4a0c64af541439898448659aedcec8e8e819fc53": { + "address": "0x4a0c64af541439898448659aedcec8e8e819fc53", + "symbol": "PONKE", + "decimals": 18, + "name": "PONKE", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x4a0c64af541439898448659aedcec8e8e819fc53.png", + "aggregators": [ + "CoinGecko", + "LiFi", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0xff7f8f301f7a706e3cfd3d2275f5dc0b9ee8009b": { + "address": "0xff7f8f301f7a706e3cfd3d2275f5dc0b9ee8009b", + "symbol": "FOLKS", + "decimals": 6, + "name": "FOLKS", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xff7f8f301f7a706e3cfd3d2275f5dc0b9ee8009b.png", + "aggregators": ["CoinGecko", "1inch", "LiFi", "Rubic", "Rango"], + "occurrences": 5 + }, + "0xd71552d9e08e5351adb52163b3bbbc4d7de53ce1": { + "address": "0xd71552d9e08e5351adb52163b3bbbc4d7de53ce1", + "symbol": "AITECH", + "decimals": 18, + "name": "Solidus Ai Tech", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xd71552d9e08e5351adb52163b3bbbc4d7de53ce1.png", + "aggregators": [ + "CoinGecko", + "LiFi", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x091a5a1e3aa8b96ab0fb0bc217f5e60ec4c611a0": { + "address": "0x091a5a1e3aa8b96ab0fb0bc217f5e60ec4c611a0", + "symbol": "LEVETH", + "decimals": 18, + "name": "Plaza LevETH", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x091a5a1e3aa8b96ab0fb0bc217f5e60ec4c611a0.png", + "aggregators": ["1inch", "LiFi", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 5 + }, + "0x7614f61fed79e0ff47aa0831d18d046cb3ee0ce6": { + "address": "0x7614f61fed79e0ff47aa0831d18d046cb3ee0ce6", + "symbol": "NEST", + "decimals": 18, + "name": "Nest AI by Virtuals", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x7614f61fed79e0ff47aa0831d18d046cb3ee0ce6.png", + "aggregators": ["LiFi", "Rubic", "Squid", "Rango", "Sonarwatch"], + "occurrences": 5 + }, + "0x31b28012f61fc3600e1c076bafc9fd997fb2da90": { + "address": "0x31b28012f61fc3600e1c076bafc9fd997fb2da90", + "symbol": "MRSMIGGLES", + "decimals": 18, + "name": "Mrs Miggles", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x31b28012f61fc3600e1c076bafc9fd997fb2da90.png", + "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0x6059d0ed9368c36941514d2864fd114a84853d5a": { + "address": "0x6059d0ed9368c36941514d2864fd114a84853d5a", + "symbol": "FOAM", + "decimals": 18, + "name": "FOAM Token", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x6059d0ed9368c36941514d2864fd114a84853d5a.png", + "aggregators": ["CoinGecko", "Socket", "Rubic", "Rango"], + "occurrences": 4 + }, + "0x5b2124d427fac9c80c902cbdd74b03dd85d7d3fe": { + "address": "0x5b2124d427fac9c80c902cbdd74b03dd85d7d3fe", + "symbol": "DYP", + "decimals": 18, + "name": "Dypius", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x5b2124d427fac9c80c902cbdd74b03dd85d7d3fe.png", + "aggregators": ["Socket", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0x18e692c03de43972fe81058f322fa542ae1a5e2c": { + "address": "0x18e692c03de43972fe81058f322fa542ae1a5e2c", + "symbol": "IMGNAI", + "decimals": 9, + "name": "Imagine AI", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x18e692c03de43972fe81058f322fa542ae1a5e2c.png", + "aggregators": ["LiFi", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x7cea109fc3516ed1248ae9aa67b5a352cf74075e": { + "address": "0x7cea109fc3516ed1248ae9aa67b5a352cf74075e", + "symbol": "NOVA", + "decimals": 18, + "name": "Nova DAO", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x7cea109fc3516ed1248ae9aa67b5a352cf74075e.png", + "aggregators": ["Socket", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x3f14920c99beb920afa163031c4e47a3e03b3e4a": { + "address": "0x3f14920c99beb920afa163031c4e47a3e03b3e4a", + "symbol": "SEND", + "decimals": 0, + "name": "Send Token", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x3f14920c99beb920afa163031c4e47a3e03b3e4a.png", + "aggregators": ["Socket", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x61ca70b867a48265e553a7fbb81bfe44fada7ae6": { + "address": "0x61ca70b867a48265e553a7fbb81bfe44fada7ae6", + "symbol": "ARC", + "decimals": 18, + "name": "ARC", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x61ca70b867a48265e553a7fbb81bfe44fada7ae6.png", + "aggregators": ["Socket", "Rubic", "Rango"], + "occurrences": 3 + }, + "0xbd4e5c2f8de5065993d29a9794e2b7cefc41437a": { + "address": "0xbd4e5c2f8de5065993d29a9794e2b7cefc41437a", + "symbol": "IPOR", + "decimals": 18, + "name": "IPOR", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xbd4e5c2f8de5065993d29a9794e2b7cefc41437a.png", + "aggregators": ["Rubic", "Rango", "Sonarwatch"], + "occurrences": 3 + }, + "0xd33c7b753ecaa85e5d5f5b5fd99dec59f26a087e": { + "address": "0xd33c7b753ecaa85e5d5f5b5fd99dec59f26a087e", + "symbol": "FACTR", + "decimals": 18, + "name": "Defactor", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xd33c7b753ecaa85e5d5f5b5fd99dec59f26a087e.png", + "aggregators": ["Rubic", "Rango", "Sonarwatch"], + "occurrences": 3 + }, + "0x1287a235474e0331c0975e373bdd066444d1bd35": { + "address": "0x1287a235474e0331c0975e373bdd066444d1bd35", + "symbol": "TKAI", + "decimals": 18, + "name": "TAIKAI", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x1287a235474e0331c0975e373bdd066444d1bd35.png", + "aggregators": ["Rubic", "Rango", "Sonarwatch"], + "occurrences": 3 + }, + "0x703d57164ca270b0b330a87fd159cfef1490c0a5": { + "address": "0x703d57164ca270b0b330a87fd159cfef1490c0a5", + "symbol": "SOFI", + "decimals": 18, + "name": "RAI Finance", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x703d57164ca270b0b330a87fd159cfef1490c0a5.png", + "aggregators": ["Rubic", "Rango", "Sonarwatch"], + "occurrences": 3 + }, + "0x029a3b0532871735809a51e8653d6017ef04b6fa": { + "address": "0x029a3b0532871735809a51e8653d6017ef04b6fa", + "symbol": "TYBENG", + "decimals": 18, + "name": "TYBENG", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x029a3b0532871735809a51e8653d6017ef04b6fa.png", + "aggregators": ["Rubic", "Rango", "Sonarwatch"], + "occurrences": 3 + }, + "0xeb466342c4d449bc9f53a865d5cb90586f405215": { + "address": "0xeb466342c4d449bc9f53a865d5cb90586f405215", + "symbol": "AXLUSDC", + "decimals": 6, + "name": "Axelar Wrapped USDC", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xeb466342c4d449bc9f53a865d5cb90586f405215.png", + "aggregators": [ + "CoinGecko", + "1inch", + "LiFi", + "TrustWallet", + "Rubic", + "Squid", + "Rango", + "Sonarwatch", + "SushiSwap" + ], + "occurrences": 9 + }, + "0x1bc0c42215582d5a085795f4badbac3ff36d1bcb": { + "address": "0x1bc0c42215582d5a085795f4badbac3ff36d1bcb", + "symbol": "CLANKER", + "decimals": 18, + "name": "tokenbot", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x1bc0c42215582d5a085795f4badbac3ff36d1bcb.png", + "aggregators": [ + "CoinGecko", + "1inch", + "LiFi", + "Socket", + "Rubic", + "Squid", + "Rango", + "Sonarwatch" + ], + "occurrences": 8 + }, + "0xb8d98a102b0079b69ffbc760c8d857a31653e56e": { + "address": "0xb8d98a102b0079b69ffbc760c8d857a31653e56e", + "symbol": "TOBY", + "decimals": 18, + "name": "toby", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xb8d98a102b0079b69ffbc760c8d857a31653e56e.png", + "aggregators": [ + "CoinGecko", + "1inch", + "Socket", + "Rubic", + "Squid", + "Rango", + "Sonarwatch", + "SushiSwap" + ], + "occurrences": 8 + }, + "0x23ee2343b892b1bb63503a4fabc840e0e2c6810f": { + "address": "0x23ee2343b892b1bb63503a4fabc840e0e2c6810f", + "symbol": "AXL", + "decimals": 6, + "name": "Axelar", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x23ee2343b892b1bb63503a4fabc840e0e2c6810f.png", + "aggregators": [ + "CoinGecko", + "LiFi", + "Socket", + "Rubic", + "Squid", + "Rango", + "Sonarwatch", + "SushiSwap" + ], + "occurrences": 8 + }, + "0x78a087d713be963bf307b18f2ff8122ef9a63ae9": { + "address": "0x78a087d713be963bf307b18f2ff8122ef9a63ae9", + "symbol": "BSWAP", + "decimals": 18, + "name": "Baseswap", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x78a087d713be963bf307b18f2ff8122ef9a63ae9.png", + "aggregators": [ + "CoinGecko", + "LiFi", + "TrustWallet", + "Rubic", + "Squid", + "Rango", + "Sonarwatch" + ], + "occurrences": 7 + }, + "0xbf1aea8670d2528e08334083616dd9c5f3b087ae": { + "address": "0xbf1aea8670d2528e08334083616dd9c5f3b087ae", + "symbol": "MIMATIC", + "decimals": 18, + "name": "MAI (Base)", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xbf1aea8670d2528e08334083616dd9c5f3b087ae.png", + "aggregators": [ + "CoinGecko", + "LiFi", + "Socket", + "Rubic", + "Squid", + "Rango", + "Sonarwatch" + ], + "occurrences": 7 + }, + "0x731814e491571a2e9ee3c5b1f7f3b962ee8f4870": { + "address": "0x731814e491571a2e9ee3c5b1f7f3b962ee8f4870", + "symbol": "VADER", + "decimals": 18, + "name": "VaderAI by Virtuals", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x731814e491571a2e9ee3c5b1f7f3b962ee8f4870.png", + "aggregators": [ + "CoinGecko", + "1inch", + "LiFi", + "Socket", + "Rubic", + "Squid", + "Sonarwatch" + ], + "occurrences": 7 + }, + "0xd386a121991e51eab5e3433bf5b1cf4c8884b47a": { + "address": "0xd386a121991e51eab5e3433bf5b1cf4c8884b47a", + "symbol": "BVM", + "decimals": 18, + "name": "Base Velocimeter", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xd386a121991e51eab5e3433bf5b1cf4c8884b47a.png", + "aggregators": [ + "CoinGecko", + "LiFi", + "Socket", + "Rubic", + "Squid", + "Rango", + "Sonarwatch" + ], + "occurrences": 7 + }, + "0x548f93779fbc992010c07467cbaf329dd5f059b7": { + "address": "0x548f93779fbc992010c07467cbaf329dd5f059b7", + "symbol": "BMX", + "decimals": 18, + "name": "BMX", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x548f93779fbc992010c07467cbaf329dd5f059b7.png", + "aggregators": [ + "CoinGecko", + "LiFi", + "Socket", + "Rubic", + "Squid", + "Rango", + "Sonarwatch" + ], + "occurrences": 7 + }, + "0x55cd6469f597452b5a7536e2cd98fde4c1247ee4": { + "address": "0x55cd6469f597452b5a7536e2cd98fde4c1247ee4", + "symbol": "LUNA", + "decimals": 18, + "name": "Luna by Virtuals", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x55cd6469f597452b5a7536e2cd98fde4c1247ee4.png", + "aggregators": [ + "CoinGecko", + "LiFi", + "Socket", + "Rubic", + "Squid", + "Rango", + "Sonarwatch" + ], + "occurrences": 7 + }, + "0x2c8c89c442436cc6c0a77943e09c8daf49da3161": { + "address": "0x2c8c89c442436cc6c0a77943e09c8daf49da3161", + "symbol": "ZBU", + "decimals": 18, + "name": "Zeebu", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x2c8c89c442436cc6c0a77943e09c8daf49da3161.png", + "aggregators": [ + "CoinGecko", + "1inch", + "LiFi", + "Socket", + "Rubic", + "Squid", + "Rango", + "Sonarwatch" + ], + "occurrences": 8 + }, + "0xa334884bf6b0a066d553d19e507315e839409e62": { + "address": "0xa334884bf6b0a066d553d19e507315e839409e62", + "symbol": "ERN", + "decimals": 18, + "name": "Ethos Reserve Note", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xa334884bf6b0a066d553d19e507315e839409e62.png", + "aggregators": [ + "CoinGecko", + "LiFi", + "Socket", + "Rubic", + "Squid", + "Rango", + "Sonarwatch" + ], + "occurrences": 7 + }, + "0x2416092f143378750bb29b79ed961ab195cceea5": { + "address": "0x2416092f143378750bb29b79ed961ab195cceea5", + "symbol": "EZETH", + "decimals": 18, + "name": "Renzo Restaked ETH", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x2416092f143378750bb29b79ed961ab195cceea5.png", + "aggregators": [ + "CoinGecko", + "LiFi", + "Socket", + "Rubic", + "Squid", + "Rango", + "Sonarwatch" + ], + "occurrences": 7 + }, + "0x9a26f5433671751c3276a065f57e5a02d2817973": { + "address": "0x9a26f5433671751c3276a065f57e5a02d2817973", + "symbol": "KEYCAT", + "decimals": 18, + "name": "Keyboard Cat (Base)", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x9a26f5433671751c3276a065f57e5a02d2817973.png", + "aggregators": [ + "CoinGecko", + "LiFi", + "Rubic", + "Squid", + "Rango", + "Sonarwatch" + ], + "occurrences": 6 + }, + "0x1c4cca7c5db003824208adda61bd749e55f463a3": { + "address": "0x1c4cca7c5db003824208adda61bd749e55f463a3", + "symbol": "GAME", + "decimals": 18, + "name": "GAME by Virtuals", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x1c4cca7c5db003824208adda61bd749e55f463a3.png", + "aggregators": [ + "CoinGecko", + "LiFi", + "Rubic", + "Squid", + "Rango", + "Sonarwatch" + ], + "occurrences": 6 + }, + "0xab964f7b7b6391bd6c4e8512ef00d01f255d9c0d": { + "address": "0xab964f7b7b6391bd6c4e8512ef00d01f255d9c0d", + "symbol": "CONVO", + "decimals": 18, + "name": "Prefrontal Cortex Convo Agent by Virtuals", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xab964f7b7b6391bd6c4e8512ef00d01f255d9c0d.png", + "aggregators": [ + "CoinGecko", + "1inch", + "Rubic", + "Squid", + "Rango", + "Sonarwatch" + ], + "occurrences": 6 + }, + "0x37f0c2915cecc7e977183b8543fc0864d03e064c": { + "address": "0x37f0c2915cecc7e977183b8543fc0864d03e064c", + "symbol": "HUNT", + "decimals": 18, + "name": "Hunt", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x37f0c2915cecc7e977183b8543fc0864d03e064c.png", + "aggregators": [ + "CoinGecko", + "LiFi", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 6 + }, + "0x9c7beba8f6ef6643abd725e45a4e8387ef260649": { + "address": "0x9c7beba8f6ef6643abd725e45a4e8387ef260649", + "symbol": "G", + "decimals": 18, + "name": "Gravity (by Galxe)", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x9c7beba8f6ef6643abd725e45a4e8387ef260649.png", + "aggregators": [ + "CoinGecko", + "1inch", + "LiFi", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 6 + }, + "0x11e969e9b3f89cb16d686a03cd8508c9fc0361af": { + "address": "0x11e969e9b3f89cb16d686a03cd8508c9fc0361af", + "symbol": "LAVA", + "decimals": 6, + "name": "Lava Network", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x11e969e9b3f89cb16d686a03cd8508c9fc0361af.png", + "aggregators": [ + "CoinGecko", + "LiFi", + "Rubic", + "Squid", + "Rango", + "Sonarwatch" + ], + "occurrences": 6 + }, + "0xe31ee12bdfdd0573d634124611e85338e2cbf0cf": { + "address": "0xe31ee12bdfdd0573d634124611e85338e2cbf0cf", + "symbol": "SUSDZ", + "decimals": 18, + "name": "Anzen Staked USDz", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xe31ee12bdfdd0573d634124611e85338e2cbf0cf.png", + "aggregators": [ + "CoinGecko", + "LiFi", + "Rubic", + "Squid", + "Rango", + "Sonarwatch" + ], + "occurrences": 6 + }, + "0x79bbf4508b1391af3a0f4b30bb5fc4aa9ab0e07c": { + "address": "0x79bbf4508b1391af3a0f4b30bb5fc4aa9ab0e07c", + "symbol": "ANON", + "decimals": 18, + "name": "HeyAnon", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x79bbf4508b1391af3a0f4b30bb5fc4aa9ab0e07c.png", + "aggregators": [ + "CoinGecko", + "LiFi", + "Socket", + "Rubic", + "Squid", + "Rango" + ], + "occurrences": 6 + }, + "0xdcf5130274753c8050ab061b1a1dcbf583f5bfd0": { + "address": "0xdcf5130274753c8050ab061b1a1dcbf583f5bfd0", + "symbol": "VCNT", + "decimals": 18, + "name": "ViciCoin", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xdcf5130274753c8050ab061b1a1dcbf583f5bfd0.png", + "aggregators": [ + "CoinGecko", + "LiFi", + "Rubic", + "Squid", + "Rango", + "Sonarwatch" + ], + "occurrences": 6 + }, + "0xa3d1a8deb97b111454b294e2324efad13a9d8396": { + "address": "0xa3d1a8deb97b111454b294e2324efad13a9d8396", + "symbol": "OVN", + "decimals": 18, + "name": "Overnight Finance", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xa3d1a8deb97b111454b294e2324efad13a9d8396.png", + "aggregators": [ + "CoinGecko", + "LiFi", + "Rubic", + "Squid", + "Rango", + "Sonarwatch" + ], + "occurrences": 6 + }, + "0x04d5ddf5f3a8939889f11e97f8c4bb48317f1938": { + "address": "0x04d5ddf5f3a8939889f11e97f8c4bb48317f1938", + "symbol": "USDZ", + "decimals": 18, + "name": "Anzen USDz", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x04d5ddf5f3a8939889f11e97f8c4bb48317f1938.png", + "aggregators": [ + "CoinGecko", + "LiFi", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 6 + }, + "0xedfa23602d0ec14714057867a78d01e94176bea0": { + "address": "0xedfa23602d0ec14714057867a78d01e94176bea0", + "symbol": "WRSETH", + "decimals": 18, + "name": "Wrapped rsETH", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xedfa23602d0ec14714057867a78d01e94176bea0.png", + "aggregators": [ + "CoinGecko", + "LiFi", + "Rubic", + "Squid", + "Rango", + "Sonarwatch" + ], + "occurrences": 6 + }, + "0x7f5373ae26c3e8ffc4c77b7255df7ec1a9af52a6": { + "address": "0x7f5373ae26c3e8ffc4c77b7255df7ec1a9af52a6", + "symbol": "AXLUSDT", + "decimals": 6, + "name": "Axelar Wrapped USDT", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x7f5373ae26c3e8ffc4c77b7255df7ec1a9af52a6.png", + "aggregators": [ + "1inch", + "LiFi", + "Socket", + "Rubic", + "Squid", + "Rango" + ], + "occurrences": 6 + }, + "0x99956f143dcca77cddf4b4b2a0fa4d491703244d": { + "address": "0x99956f143dcca77cddf4b4b2a0fa4d491703244d", + "symbol": "LYRA", + "decimals": 18, + "name": "LYRA", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x99956f143dcca77cddf4b4b2a0fa4d491703244d.png", + "aggregators": [ + "CoinGecko", + "Rubic", + "Squid", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x1e2093ab84768948c6176db5ad98c909ce97f368": { + "address": "0x1e2093ab84768948c6176db5ad98c909ce97f368", + "symbol": "DORA", + "decimals": 18, + "name": "DORA AI by Virtuals", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x1e2093ab84768948c6176db5ad98c909ce97f368.png", + "aggregators": [ + "CoinGecko", + "Rubic", + "Squid", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x2eac9b08a4d86f347b9e856fb3ec082e61c76545": { + "address": "0x2eac9b08a4d86f347b9e856fb3ec082e61c76545", + "symbol": "AIRENE", + "decimals": 18, + "name": "AIRENE", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x2eac9b08a4d86f347b9e856fb3ec082e61c76545.png", + "aggregators": [ + "CoinGecko", + "Rubic", + "Squid", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x6c7ebb64e258f5712eeec83ceaf41c3dcbb534b1": { + "address": "0x6c7ebb64e258f5712eeec83ceaf41c3dcbb534b1", + "symbol": "VAIN", + "decimals": 18, + "name": "Vainguard", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x6c7ebb64e258f5712eeec83ceaf41c3dcbb534b1.png", + "aggregators": [ + "CoinGecko", + "Rubic", + "Squid", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x20b048fa035d5763685d695e66adf62c5d9f5055": { + "address": "0x20b048fa035d5763685d695e66adf62c5d9f5055", + "symbol": "CHAR", + "decimals": 18, + "name": "Biochar", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x20b048fa035d5763685d695e66adf62c5d9f5055.png", + "aggregators": [ + "CoinGecko", + "Rubic", + "Squid", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x3f12d4607f9df527c3bccbd16a70636a69c8fcf5": { + "address": "0x3f12d4607f9df527c3bccbd16a70636a69c8fcf5", + "symbol": "VOLTX", + "decimals": 18, + "name": "VolatilityX", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x3f12d4607f9df527c3bccbd16a70636a69c8fcf5.png", + "aggregators": [ + "CoinGecko", + "Rubic", + "Squid", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x8e3bff1abf376f7a5d036cc3d85766394744dd04": { + "address": "0x8e3bff1abf376f7a5d036cc3d85766394744dd04", + "symbol": "POD", + "decimals": 18, + "name": "Podflow AI by Virtuals", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x8e3bff1abf376f7a5d036cc3d85766394744dd04.png", + "aggregators": [ + "CoinGecko", + "Rubic", + "Squid", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x792d0447bf8b33158ca6e02d49755f2eab65061b": { + "address": "0x792d0447bf8b33158ca6e02d49755f2eab65061b", + "symbol": "ZEBRO", + "decimals": 18, + "name": "Sport Bettor AI", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x792d0447bf8b33158ca6e02d49755f2eab65061b.png", + "aggregators": [ + "CoinGecko", + "Rubic", + "Squid", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0xb01cf1be9568f09449382a47cd5bf58e2a9d5922": { + "address": "0xb01cf1be9568f09449382a47cd5bf58e2a9d5922", + "symbol": "SPEED", + "decimals": 18, + "name": "Lightspeed", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xb01cf1be9568f09449382a47cd5bf58e2a9d5922.png", + "aggregators": [ + "CoinGecko", + "Rubic", + "Squid", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x0b3ae50babe7ffa4e1a50569cee6bdefd4ccaee0": { + "address": "0x0b3ae50babe7ffa4e1a50569cee6bdefd4ccaee0", + "symbol": "WIRE", + "decimals": 18, + "name": "717ai by Virtuals", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x0b3ae50babe7ffa4e1a50569cee6bdefd4ccaee0.png", + "aggregators": [ + "CoinGecko", + "LiFi", + "Rubic", + "Squid", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0xa720777acb870de5395cd5888b3cd8fb763e74d2": { + "address": "0xa720777acb870de5395cd5888b3cd8fb763e74d2", + "symbol": "MOLLY", + "decimals": 18, + "name": "MOLLY ANALYTICS by Virtuals", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xa720777acb870de5395cd5888b3cd8fb763e74d2.png", + "aggregators": [ + "CoinGecko", + "Rubic", + "Squid", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0xb18c609796848c723eacadc0be5b71ceb2289a48": { + "address": "0xb18c609796848c723eacadc0be5b71ceb2289a48", + "symbol": "ATA", + "decimals": 18, + "name": "ATA by Virtuals", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xb18c609796848c723eacadc0be5b71ceb2289a48.png", + "aggregators": [ + "CoinGecko", + "Rubic", + "Squid", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0xc8db98437bed9943f11c5b31b645b07c0efc17e0": { + "address": "0xc8db98437bed9943f11c5b31b645b07c0efc17e0", + "symbol": "LEO", + "decimals": 18, + "name": "LEOONO by Virtuals", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xc8db98437bed9943f11c5b31b645b07c0efc17e0.png", + "aggregators": [ + "CoinGecko", + "Rubic", + "Squid", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x1a43287cbfcc5f35082e6e2aa98e5b474fe7bd4e": { + "address": "0x1a43287cbfcc5f35082e6e2aa98e5b474fe7bd4e", + "symbol": "ATHENA", + "decimals": 18, + "name": "Athena by virtuals", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x1a43287cbfcc5f35082e6e2aa98e5b474fe7bd4e.png", + "aggregators": [ + "CoinGecko", + "Rubic", + "Squid", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x99298c6be0e8ec9e56b7a2be5850abe1fc109d94": { + "address": "0x99298c6be0e8ec9e56b7a2be5850abe1fc109d94", + "symbol": "DEGENC", + "decimals": 18, + "name": "Degen Capital by Virtuals", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x99298c6be0e8ec9e56b7a2be5850abe1fc109d94.png", + "aggregators": [ + "CoinGecko", + "Rubic", + "Squid", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x49c86046903807d0a3193a221c1a3e1b1b6c9ba3": { + "address": "0x49c86046903807d0a3193a221c1a3e1b1b6c9ba3", + "symbol": "CYI", + "decimals": 18, + "name": "CYI by Virtuals", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x49c86046903807d0a3193a221c1a3e1b1b6c9ba3.png", + "aggregators": [ + "CoinGecko", + "Rubic", + "Squid", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x11d41056ff636107dd710ec4ea772490a710cdb7": { + "address": "0x11d41056ff636107dd710ec4ea772490a710cdb7", + "symbol": "SPECU", + "decimals": 18, + "name": "Speculation", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x11d41056ff636107dd710ec4ea772490a710cdb7.png", + "aggregators": [ + "CoinGecko", + "Rubic", + "Squid", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x0db510e79909666d6dec7f5e49370838c16d950f": { + "address": "0x0db510e79909666d6dec7f5e49370838c16d950f", + "symbol": "ANON", + "decimals": 18, + "name": "Super Anon", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x0db510e79909666d6dec7f5e49370838c16d950f.png", + "aggregators": [ + "CoinGecko", + "1inch", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x50d7a818e5e339ebe13b17e130b5b608fac354dc": { + "address": "0x50d7a818e5e339ebe13b17e130b5b608fac354dc", + "symbol": "VISION", + "decimals": 18, + "name": "VISION ai by Virtuals", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x50d7a818e5e339ebe13b17e130b5b608fac354dc.png", + "aggregators": [ + "CoinGecko", + "Rubic", + "Squid", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x6379219890843c0b9e3160044de072ced66baab2": { + "address": "0x6379219890843c0b9e3160044de072ced66baab2", + "symbol": "SLAYER", + "decimals": 18, + "name": "ThreatSlayerAI by Virtuals", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x6379219890843c0b9e3160044de072ced66baab2.png", + "aggregators": [ + "CoinGecko", + "Rubic", + "Squid", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x7a5f5ccd46ebd7ac30615836d988ca3bd57412b3": { + "address": "0x7a5f5ccd46ebd7ac30615836d988ca3bd57412b3", + "symbol": "TAOCAT", + "decimals": 18, + "name": "TAOCat by Virtuals", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x7a5f5ccd46ebd7ac30615836d988ca3bd57412b3.png", + "aggregators": [ + "CoinGecko", + "Rubic", + "Squid", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x08c81699f9a357a9f0d04a09b353576ca328d60d": { + "address": "0x08c81699f9a357a9f0d04a09b353576ca328d60d", + "symbol": "NFTXBT", + "decimals": 18, + "name": "nftxbt by Virtuals", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x08c81699f9a357a9f0d04a09b353576ca328d60d.png", + "aggregators": [ + "CoinGecko", + "Rubic", + "Squid", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x64cc19a52f4d631ef5be07947caba14ae00c52eb": { + "address": "0x64cc19a52f4d631ef5be07947caba14ae00c52eb", + "symbol": "KIBBLE", + "decimals": 18, + "name": "Kibble", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x64cc19a52f4d631ef5be07947caba14ae00c52eb.png", + "aggregators": [ + "CoinGecko", + "Rubic", + "Rango", + "Sonarwatch", + "SushiSwap" + ], + "occurrences": 5 + }, + "0x2acd6a246157bf51636d06a83200f8923e7eb864": { + "address": "0x2acd6a246157bf51636d06a83200f8923e7eb864", + "symbol": "NODE", + "decimals": 18, + "name": "noderzz by Virtuals", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x2acd6a246157bf51636d06a83200f8923e7eb864.png", + "aggregators": [ + "CoinGecko", + "Rubic", + "Squid", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x352b850b733ab8bab50aed1dab5d22e3186ce984": { + "address": "0x352b850b733ab8bab50aed1dab5d22e3186ce984", + "symbol": "1000X", + "decimals": 18, + "name": "1000x by Virtuals", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x352b850b733ab8bab50aed1dab5d22e3186ce984.png", + "aggregators": [ + "CoinGecko", + "Rubic", + "Squid", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0xdaf3c78f165d26f821d3d39d6598a96e962b1508": { + "address": "0xdaf3c78f165d26f821d3d39d6598a96e962b1508", + "symbol": "WEBSIM", + "decimals": 18, + "name": "The Css God by Virtuals", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xdaf3c78f165d26f821d3d39d6598a96e962b1508.png", + "aggregators": [ + "CoinGecko", + "Rubic", + "Squid", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0xe2816b27a5613b0aaf5d6dafa80584156e2fb1b6": { + "address": "0xe2816b27a5613b0aaf5d6dafa80584156e2fb1b6", + "symbol": "JAIHOZ", + "decimals": 18, + "name": "Jaihoz by Virtuals", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xe2816b27a5613b0aaf5d6dafa80584156e2fb1b6.png", + "aggregators": [ + "CoinGecko", + "Rubic", + "Squid", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0xf8f259389c1f29769e0388579d458fb799489185": { + "address": "0xf8f259389c1f29769e0388579d458fb799489185", + "symbol": "ASTA", + "decimals": 18, + "name": "Altariste by Virtuals", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xf8f259389c1f29769e0388579d458fb799489185.png", + "aggregators": [ + "CoinGecko", + "Rubic", + "Squid", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x6112b8714221bbd96ae0a0032a683e38b475d06c": { + "address": "0x6112b8714221bbd96ae0a0032a683e38b475d06c", + "symbol": "WAI", + "decimals": 18, + "name": "WAI Combinator by Virtuals", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x6112b8714221bbd96ae0a0032a683e38b475d06c.png", + "aggregators": [ + "CoinGecko", + "Rubic", + "Squid", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x0aa9876c9ccf97be7eed5c4cee91d556bf7dbac3": { + "address": "0x0aa9876c9ccf97be7eed5c4cee91d556bf7dbac3", + "symbol": "REBELZ", + "decimals": 18, + "name": "Rebel by Virtuals", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x0aa9876c9ccf97be7eed5c4cee91d556bf7dbac3.png", + "aggregators": [ + "CoinGecko", + "Rubic", + "Squid", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0xfd1013c72cbb0ffb920d347c5836bf88965d0d5e": { + "address": "0xfd1013c72cbb0ffb920d347c5836bf88965d0d5e", + "symbol": "STIX", + "decimals": 18, + "name": "STIX", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xfd1013c72cbb0ffb920d347c5836bf88965d0d5e.png", + "aggregators": [ + "CoinGecko", + "Rubic", + "Squid", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0xc95e16f99267d6112eadaa46140bea095c8c7ba5": { + "address": "0xc95e16f99267d6112eadaa46140bea095c8c7ba5", + "symbol": "EXMPLR", + "decimals": 18, + "name": "Exmplr.ai by Virtuals", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xc95e16f99267d6112eadaa46140bea095c8c7ba5.png", + "aggregators": [ + "CoinGecko", + "Rubic", + "Squid", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x06abb84958029468574b28b6e7792a770ccaa2f6": { + "address": "0x06abb84958029468574b28b6e7792a770ccaa2f6", + "symbol": "MONK", + "decimals": 18, + "name": "0xMonk by Virtuals", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x06abb84958029468574b28b6e7792a770ccaa2f6.png", + "aggregators": [ + "CoinGecko", + "Rubic", + "Squid", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x27d7959cf26135d8019d0f1e4a2280a8a355c4f5": { + "address": "0x27d7959cf26135d8019d0f1e4a2280a8a355c4f5", + "symbol": "LESTER", + "decimals": 18, + "name": "LESTER by Virtuals", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x27d7959cf26135d8019d0f1e4a2280a8a355c4f5.png", + "aggregators": [ + "CoinGecko", + "Rubic", + "Squid", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0xfa3946432c6a76edff377d9bbfb81ca3ffc05874": { + "address": "0xfa3946432c6a76edff377d9bbfb81ca3ffc05874", + "symbol": "DRPXBT", + "decimals": 18, + "name": "Hunter by Virtuals", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xfa3946432c6a76edff377d9bbfb81ca3ffc05874.png", + "aggregators": [ + "CoinGecko", + "Rubic", + "Squid", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x89cd293538c2390992cdfb3520cfb136748cd9b9": { + "address": "0x89cd293538c2390992cdfb3520cfb136748cd9b9", + "symbol": "BARON", + "decimals": 18, + "name": "Baron Von Whiskers", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x89cd293538c2390992cdfb3520cfb136748cd9b9.png", + "aggregators": [ + "CoinGecko", + "Rubic", + "Squid", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0xebf7d4d84372f5df1b5d0e3ddd889e5bc286b1c3": { + "address": "0xebf7d4d84372f5df1b5d0e3ddd889e5bc286b1c3", + "symbol": "FX", + "decimals": 18, + "name": "Ali for fx protocol by Virtuals", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xebf7d4d84372f5df1b5d0e3ddd889e5bc286b1c3.png", + "aggregators": [ + "CoinGecko", + "Rubic", + "Squid", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x1a3e429d2d22149cc61e0f539b112a227c844aa3": { + "address": "0x1a3e429d2d22149cc61e0f539b112a227c844aa3", + "symbol": "LOKY", + "decimals": 18, + "name": "Loky by Virtuals", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x1a3e429d2d22149cc61e0f539b112a227c844aa3.png", + "aggregators": [ + "CoinGecko", + "Rubic", + "Squid", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x5d9c2457a10d455e0ad8e28e40cc28eacf27a06a": { + "address": "0x5d9c2457a10d455e0ad8e28e40cc28eacf27a06a", + "symbol": "GM", + "decimals": 18, + "name": "GM Everyday", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x5d9c2457a10d455e0ad8e28e40cc28eacf27a06a.png", + "aggregators": [ + "CoinGecko", + "Rubic", + "Squid", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x39fed555ff57cb1154bfa6b1a2492bb914ce2d9b": { + "address": "0x39fed555ff57cb1154bfa6b1a2492bb914ce2d9b", + "symbol": "ECHO", + "decimals": 18, + "name": "EchoLeaks by Virtuals", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x39fed555ff57cb1154bfa6b1a2492bb914ce2d9b.png", + "aggregators": [ + "CoinGecko", + "Rubic", + "Squid", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x9c94e82d8751f16953f9c86e13ed9cd0414e6e97": { + "address": "0x9c94e82d8751f16953f9c86e13ed9cd0414e6e97", + "symbol": "VOLS", + "decimals": 18, + "name": "Volaris Games", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x9c94e82d8751f16953f9c86e13ed9cd0414e6e97.png", + "aggregators": [ + "CoinGecko", + "Rubic", + "Squid", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x29e39327b5b1e500b87fc0fcae3856cd8f96ed2a": { + "address": "0x29e39327b5b1e500b87fc0fcae3856cd8f96ed2a", + "symbol": "PAWSY", + "decimals": 18, + "name": "Bark Ruffalo by Virtuals", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x29e39327b5b1e500b87fc0fcae3856cd8f96ed2a.png", + "aggregators": [ + "CoinGecko", + "Rubic", + "Squid", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0xcc0adb6c436eb1f65b2f27733bf926691b94c5f1": { + "address": "0xcc0adb6c436eb1f65b2f27733bf926691b94c5f1", + "symbol": "GUAN", + "decimals": 18, + "name": "Guanciale", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xcc0adb6c436eb1f65b2f27733bf926691b94c5f1.png", + "aggregators": [ + "CoinGecko", + "Rubic", + "Squid", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0xd9ea811a51d6fe491d27c2a0442b3f577852874d": { + "address": "0xd9ea811a51d6fe491d27c2a0442b3f577852874d", + "symbol": "BOB", + "decimals": 18, + "name": "Breakout Bro by Virtuals", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xd9ea811a51d6fe491d27c2a0442b3f577852874d.png", + "aggregators": [ + "CoinGecko", + "Rubic", + "Squid", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x43c451d8102337ccf399b0f6ebf63837075d9689": { + "address": "0x43c451d8102337ccf399b0f6ebf63837075d9689", + "symbol": "VERTEX", + "decimals": 18, + "name": "AI VERTEX by Virtuals", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x43c451d8102337ccf399b0f6ebf63837075d9689.png", + "aggregators": [ + "CoinGecko", + "Rubic", + "Squid", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0xba1cc6e3f1c5f937497e4e196196e7535e6a8e63": { + "address": "0xba1cc6e3f1c5f937497e4e196196e7535e6a8e63", + "symbol": "YMACH", + "decimals": 18, + "name": "YieldMachine by Virtuals", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xba1cc6e3f1c5f937497e4e196196e7535e6a8e63.png", + "aggregators": [ + "CoinGecko", + "Rubic", + "Squid", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x7fcd174e80f264448ebee8c88a7c4476aaf58ea6": { + "address": "0x7fcd174e80f264448ebee8c88a7c4476aaf58ea6", + "symbol": "WSUPEROETHB", + "decimals": 18, + "name": "Wrapped Super OETH", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x7fcd174e80f264448ebee8c88a7c4476aaf58ea6.png", + "aggregators": [ + "CoinGecko", + "LiFi", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x1aca6687a9665fb84deb7e3801e8e7ecba6ec6de": { + "address": "0x1aca6687a9665fb84deb7e3801e8e7ecba6ec6de", + "symbol": "RAIN", + "decimals": 18, + "name": "Rain by Virtuals", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x1aca6687a9665fb84deb7e3801e8e7ecba6ec6de.png", + "aggregators": [ + "CoinGecko", + "Rubic", + "Squid", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x0671799f205b8880d270fc6bec77942636dd8c03": { + "address": "0x0671799f205b8880d270fc6bec77942636dd8c03", + "symbol": "SENKU", + "decimals": 18, + "name": "Senku Ishigami by Virtuals", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x0671799f205b8880d270fc6bec77942636dd8c03.png", + "aggregators": [ + "CoinGecko", + "Rubic", + "Squid", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x0028e1e60167b48a938b785aa5292917e7eaca8b": { + "address": "0x0028e1e60167b48a938b785aa5292917e7eaca8b", + "symbol": "COINYE", + "decimals": 18, + "name": "Coinye West", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x0028e1e60167b48a938b785aa5292917e7eaca8b.png", + "aggregators": [ + "CoinGecko", + "Rubic", + "Squid", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x2efb2110f352fc98cd39dc041887c41766dbb301": { + "address": "0x2efb2110f352fc98cd39dc041887c41766dbb301", + "symbol": "CROW", + "decimals": 18, + "name": "cr0w by Virtuals", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x2efb2110f352fc98cd39dc041887c41766dbb301.png", + "aggregators": [ + "CoinGecko", + "Rubic", + "Squid", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x81cb4fdd3edc6f5470b636d7e5914c3173110ca5": { + "address": "0x81cb4fdd3edc6f5470b636d7e5914c3173110ca5", + "symbol": "CORA", + "decimals": 18, + "name": "Cora", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x81cb4fdd3edc6f5470b636d7e5914c3173110ca5.png", + "aggregators": [ + "CoinGecko", + "Rubic", + "Squid", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0xc2bc7a73613b9bd5f373fe10b55c59a69f4d617b": { + "address": "0xc2bc7a73613b9bd5f373fe10b55c59a69f4d617b", + "symbol": "DACKIE", + "decimals": 18, + "name": "DackieSwap", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xc2bc7a73613b9bd5f373fe10b55c59a69f4d617b.png", + "aggregators": [ + "CoinGecko", + "Rubic", + "Squid", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x79dacb99a8698052a9898e81fdf883c29efb93cb": { + "address": "0x79dacb99a8698052a9898e81fdf883c29efb93cb", + "symbol": "ACOLYT", + "decimals": 18, + "name": "Acolyt", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x79dacb99a8698052a9898e81fdf883c29efb93cb.png", + "aggregators": [ + "CoinGecko", + "Rubic", + "Squid", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0xc841b4ead3f70be99472ffdb88e5c3c7af6a481a": { + "address": "0xc841b4ead3f70be99472ffdb88e5c3c7af6a481a", + "symbol": "TRUST", + "decimals": 18, + "name": "$TRUST ME BROs by Virtuals", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xc841b4ead3f70be99472ffdb88e5c3c7af6a481a.png", + "aggregators": [ + "CoinGecko", + "Rubic", + "Squid", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x436b0fe70c84402a531fd0989ceecf5caa80244c": { + "address": "0x436b0fe70c84402a531fd0989ceecf5caa80244c", + "symbol": "VCTRAI", + "decimals": 18, + "name": "Victorai by Virtuals", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x436b0fe70c84402a531fd0989ceecf5caa80244c.png", + "aggregators": [ + "CoinGecko", + "Rubic", + "Squid", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x5537a24ad7e8d68aec165dcff6d2f8c23605417f": { + "address": "0x5537a24ad7e8d68aec165dcff6d2f8c23605417f", + "symbol": "EYE", + "decimals": 18, + "name": "Eye Future by Virtuals", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x5537a24ad7e8d68aec165dcff6d2f8c23605417f.png", + "aggregators": [ + "CoinGecko", + "Rubic", + "Squid", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0xdd78523217390bb0d49c7601e7e54c36d71622f0": { + "address": "0xdd78523217390bb0d49c7601e7e54c36d71622f0", + "symbol": "EVAL", + "decimals": 18, + "name": "Chromia's EVAL by Virtuals", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xdd78523217390bb0d49c7601e7e54c36d71622f0.png", + "aggregators": [ + "CoinGecko", + "Rubic", + "Squid", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x0bd4887f7d41b35cd75dff9ffee2856106f86670": { + "address": "0x0bd4887f7d41b35cd75dff9ffee2856106f86670", + "symbol": "FRIEND", + "decimals": 18, + "name": "Friend.tech", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x0bd4887f7d41b35cd75dff9ffee2856106f86670.png", + "aggregators": [ + "CoinGecko", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x1bc71130a0e39942a7658878169764bbd8a45993": { + "address": "0x1bc71130a0e39942a7658878169764bbd8a45993", + "symbol": "RSETH", + "decimals": 18, + "name": "KelpDAO Bridged rsETH (Base)", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x1bc71130a0e39942a7658878169764bbd8a45993.png", + "aggregators": [ + "CoinGecko", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0xb755506531786c8ac63b756bab1ac387bacb0c04": { + "address": "0xb755506531786c8ac63b756bab1ac387bacb0c04", + "symbol": "ZARP", + "decimals": 18, + "name": "ZARP Stablecoin", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xb755506531786c8ac63b756bab1ac387bacb0c04.png", + "aggregators": [ + "CoinGecko", + "Rubic", + "Squid", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0xb1e1f3cc2b6fe4420c1ac82022b457018eb628ff": { + "address": "0xb1e1f3cc2b6fe4420c1ac82022b457018eb628ff", + "symbol": "CXT", + "decimals": 18, + "name": "Covalent X Token", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xb1e1f3cc2b6fe4420c1ac82022b457018eb628ff.png", + "aggregators": ["CoinGecko", "LiFi", "Socket", "Rubic", "Rango"], + "occurrences": 5 + }, + "0xcf67815cce72e682eb4429eca46843bed81ca739": { + "address": "0xcf67815cce72e682eb4429eca46843bed81ca739", + "symbol": "G3", + "decimals": 18, + "name": "GAM3S.GG", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xcf67815cce72e682eb4429eca46843bed81ca739.png", + "aggregators": [ + "CoinGecko", + "Rubic", + "Squid", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x8fbd0648971d56f1f2c35fa075ff5bc75fb0e39d": { + "address": "0x8fbd0648971d56f1f2c35fa075ff5bc75fb0e39d", + "symbol": "MBS", + "decimals": 18, + "name": "MBS", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x8fbd0648971d56f1f2c35fa075ff5bc75fb0e39d.png", + "aggregators": [ + "CoinGecko", + "Rubic", + "Rango", + "Sonarwatch", + "SushiSwap" + ], + "occurrences": 5 + }, + "0x13741c5df9ab03e7aa9fb3bf1f714551dd5a5f8a": { + "address": "0x13741c5df9ab03e7aa9fb3bf1f714551dd5a5f8a", + "symbol": "NOGS", + "decimals": 18, + "name": "Noggles", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x13741c5df9ab03e7aa9fb3bf1f714551dd5a5f8a.png", + "aggregators": [ + "CoinGecko", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x65a2508c429a6078a7bc2f7df81ab575bd9d9275": { + "address": "0x65a2508c429a6078a7bc2f7df81ab575bd9d9275", + "symbol": "DAI+", + "decimals": 18, + "name": "Overnight.fi DAI+", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x65a2508c429a6078a7bc2f7df81ab575bd9d9275.png", + "aggregators": ["LiFi", "Rubic", "Squid", "Rango", "Sonarwatch"], + "occurrences": 5 + }, + "0x51707dc661630f8fd624b985fa6ef4f1d4d919db": { + "address": "0x51707dc661630f8fd624b985fa6ef4f1d4d919db", + "symbol": "UNV", + "decimals": 18, + "name": "Unvest", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x51707dc661630f8fd624b985fa6ef4f1d4d919db.png", + "aggregators": ["LiFi", "Rubic", "Squid", "Rango", "Sonarwatch"], + "occurrences": 5 + }, + "0x22a2488fe295047ba13bd8cccdbc8361dbd8cf7c": { + "address": "0x22a2488fe295047ba13bd8cccdbc8361dbd8cf7c", + "symbol": "SONNE", + "decimals": 18, + "name": "Sonne Finance", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x22a2488fe295047ba13bd8cccdbc8361dbd8cf7c.png", + "aggregators": ["LiFi", "Rubic", "Squid", "Rango", "Sonarwatch"], + "occurrences": 5 + }, + "0x5a76a56ad937335168b30df3aa1327277421c6ae": { + "address": "0x5a76a56ad937335168b30df3aa1327277421c6ae", + "symbol": "VELA", + "decimals": 18, + "name": "Vela Token", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x5a76a56ad937335168b30df3aa1327277421c6ae.png", + "aggregators": [ + "Rubic", + "Squid", + "Rango", + "Sonarwatch", + "SushiSwap" + ], + "occurrences": 5 + }, + "0xd993935e13851dd7517af10687ec7e5022127228": { + "address": "0xd993935e13851dd7517af10687ec7e5022127228", + "symbol": "APXUSD", + "decimals": 18, + "name": "apxUSD", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xd993935e13851dd7517af10687ec7e5022127228.png", + "aggregators": ["CoinGecko", "LiFi", "Rubic", "Rango"], + "occurrences": 4 + }, + "0x1c9fa01e87487712706fb469a13beb234262c867": { + "address": "0x1c9fa01e87487712706fb469a13beb234262c867", + "symbol": "ARPA", + "decimals": 18, + "name": "ARPA Chain", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x1c9fa01e87487712706fb469a13beb234262c867.png", + "aggregators": ["UniswapLabs", "LiFi", "Socket", "Rango"], + "occurrences": 4 + }, + "0x1b4617734c43f6159f3a70b7e06d883647512778": { + "address": "0x1b4617734c43f6159f3a70b7e06d883647512778", + "symbol": "AWE", + "decimals": 18, + "name": "AWE Network", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x1b4617734c43f6159f3a70b7e06d883647512778.png", + "aggregators": ["CoinGecko", "LiFi", "Rubic", "Rango"], + "occurrences": 4 + }, + "0xf5dbaa3dfc5e81405c7306039fb037a3dcd57ce2": { + "address": "0xf5dbaa3dfc5e81405c7306039fb037a3dcd57ce2", + "symbol": "BICO", + "decimals": 18, + "name": "Biconomy", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xf5dbaa3dfc5e81405c7306039fb037a3dcd57ce2.png", + "aggregators": ["UniswapLabs", "LiFi", "Socket", "Rango"], + "occurrences": 4 + }, + "0x29cc30f9d113b356ce408667aa6433589cecbdca": { + "address": "0x29cc30f9d113b356ce408667aa6433589cecbdca", + "symbol": "ELSA", + "decimals": 18, + "name": "Elsa", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x29cc30f9d113b356ce408667aa6433589cecbdca.png", + "aggregators": ["CoinGecko", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x0f4d237b09cb37d207ba60353dc254d4530d4df1": { + "address": "0x0f4d237b09cb37d207ba60353dc254d4530d4df1", + "symbol": "GRT", + "decimals": 18, + "name": "Graph Token", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x0f4d237b09cb37d207ba60353dc254d4530d4df1.png", + "aggregators": ["UniswapLabs", "LiFi", "Socket", "Rango"], + "occurrences": 4 + }, + "0xd7468c14ae76c3fc308aeadc223d5d1f71d3c171": { + "address": "0xd7468c14ae76c3fc308aeadc223d5d1f71d3c171", + "symbol": "LCX", + "decimals": 18, + "name": "LCX", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xd7468c14ae76c3fc308aeadc223d5d1f71d3c171.png", + "aggregators": ["UniswapLabs", "LiFi", "Socket", "Rango"], + "occurrences": 4 + }, + "0x7300b37dfdfab110d83290a29dfb31b1740219fe": { + "address": "0x7300b37dfdfab110d83290a29dfb31b1740219fe", + "symbol": "MAMO", + "decimals": 18, + "name": "Mamo", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x7300b37dfdfab110d83290a29dfb31b1740219fe.png", + "aggregators": ["CoinGecko", "LiFi", "Rubic", "Squid"], + "occurrences": 4 + }, + "0x9cb41fd9dc6891bae8187029461bfaadf6cc0c69": { + "address": "0x9cb41fd9dc6891bae8187029461bfaadf6cc0c69", + "symbol": "NOICE", + "decimals": 18, + "name": "noice", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x9cb41fd9dc6891bae8187029461bfaadf6cc0c69.png", + "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0x8b7dde054be9d180c1be7fae0874697374a49832": { + "address": "0x8b7dde054be9d180c1be7fae0874697374a49832", + "symbol": "PROS", + "decimals": 18, + "name": "Wrapped PROS", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x8b7dde054be9d180c1be7fae0874697374a49832.png", + "aggregators": ["CoinGecko", "LiFi", "Rubic", "Rango"], + "occurrences": 4 + }, + "0xff8104251e7761163fac3211ef5583fb3f8583d6": { + "address": "0xff8104251e7761163fac3211ef5583fb3f8583d6", + "symbol": "REPPO", + "decimals": 18, + "name": "REPPO", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xff8104251e7761163fac3211ef5583fb3f8583d6.png", + "aggregators": ["CoinGecko", "Rubic", "Squid", "Rango"], + "occurrences": 4 + }, + "0xfdca15bd55f350a36e63c47661914d80411d2c22": { + "address": "0xfdca15bd55f350a36e63c47661914d80411d2c22", + "symbol": "UTAO", + "decimals": 18, + "name": "Wrapped Bittensor (Universal)", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xfdca15bd55f350a36e63c47661914d80411d2c22.png", + "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0xef4461891dfb3ac8572ccf7c794664a8dd927945": { + "address": "0xef4461891dfb3ac8572ccf7c794664a8dd927945", + "symbol": "WCT", + "decimals": 18, + "name": "WalletConnect Token", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xef4461891dfb3ac8572ccf7c794664a8dd927945.png", + "aggregators": ["Metamask", "LiFi", "Rubic", "Rango"], + "occurrences": 4 + }, + "0xa001dcc9a7974dae133a11d2800a7abf7b8f5f3c": { + "address": "0xa001dcc9a7974dae133a11d2800a7abf7b8f5f3c", + "symbol": "DYOR", + "decimals": 18, + "name": "Do Your Own Research", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xa001dcc9a7974dae133a11d2800a7abf7b8f5f3c.png", + "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0x8e665c3a3622d7c1bef8ed8ffd7317d3f6318e31": { + "address": "0x8e665c3a3622d7c1bef8ed8ffd7317d3f6318e31", + "symbol": "OOPZ", + "decimals": 18, + "name": "Oracle of Preferences ZK by Virtuals", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x8e665c3a3622d7c1bef8ed8ffd7317d3f6318e31.png", + "aggregators": ["CoinGecko", "Rubic", "Squid", "Rango"], + "occurrences": 4 + }, + "0xccdf2cbabfa37878125ab2d20bfcb9328b7ab3cf": { + "address": "0xccdf2cbabfa37878125ab2d20bfcb9328b7ab3cf", + "symbol": "$HOUND", + "decimals": 18, + "name": "BaseHoundBot by Virtuals", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xccdf2cbabfa37878125ab2d20bfcb9328b7ab3cf.png", + "aggregators": ["CoinGecko", "Rubic", "Squid", "Rango"], + "occurrences": 4 + }, + "0x22c0a2e55aed8b317a285ccbd4f3d8ee24c9e5e3": { + "address": "0x22c0a2e55aed8b317a285ccbd4f3d8ee24c9e5e3", + "symbol": "FYNI", + "decimals": 18, + "name": "Fyni AI by Virtuals", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x22c0a2e55aed8b317a285ccbd4f3d8ee24c9e5e3.png", + "aggregators": ["CoinGecko", "Rubic", "Squid", "Rango"], + "occurrences": 4 + }, + "0x0c63a8c18deca4f0687616e1774918546727833f": { + "address": "0x0c63a8c18deca4f0687616e1774918546727833f", + "symbol": "SOVRA", + "decimals": 18, + "name": "Sovra AI by Virtuals", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x0c63a8c18deca4f0687616e1774918546727833f.png", + "aggregators": ["CoinGecko", "Rubic", "Squid", "Rango"], + "occurrences": 4 + }, + "0xf7178122a087ef8f5c7bea362b7dabe38f20bf05": { + "address": "0xf7178122a087ef8f5c7bea362b7dabe38f20bf05", + "symbol": "OMNI", + "decimals": 18, + "name": "Omni Exchange Token", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xf7178122a087ef8f5c7bea362b7dabe38f20bf05.png", + "aggregators": ["CoinGecko", "LiFi", "Rubic", "Rango"], + "occurrences": 4 + }, + "0x1903160806e9ec3c77e31c6821ff8592dee9963c": { + "address": "0x1903160806e9ec3c77e31c6821ff8592dee9963c", + "symbol": "CHARLES", + "decimals": 18, + "name": "Charles AI by Virtuals", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x1903160806e9ec3c77e31c6821ff8592dee9963c.png", + "aggregators": ["CoinGecko", "Rubic", "Squid", "Rango"], + "occurrences": 4 + }, + "0xab6363da0c80cef3ae105bd6241e30872355d021": { + "address": "0xab6363da0c80cef3ae105bd6241e30872355d021", + "symbol": "ROLL", + "decimals": 18, + "name": "ROLL", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xab6363da0c80cef3ae105bd6241e30872355d021.png", + "aggregators": ["CoinGecko", "LiFi", "Rubic", "Rango"], + "occurrences": 4 + }, + "0x381896019bb6f85747e114568488bb1c42ad4d8a": { + "address": "0x381896019bb6f85747e114568488bb1c42ad4d8a", + "symbol": "BUMSHAFT", + "decimals": 18, + "name": "Bumshaft", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x381896019bb6f85747e114568488bb1c42ad4d8a.png", + "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0x1035ae3f87a91084c6c5084d0615cc6121c5e228": { + "address": "0x1035ae3f87a91084c6c5084d0615cc6121c5e228", + "symbol": "FWOG", + "decimals": 18, + "name": "Based Fwog", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x1035ae3f87a91084c6c5084d0615cc6121c5e228.png", + "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0xca57b8d3edd0bedc6c1087bd35d782c3518b2a52": { + "address": "0xca57b8d3edd0bedc6c1087bd35d782c3518b2a52", + "symbol": "LOT", + "decimals": 9, + "name": "Lottery Token", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xca57b8d3edd0bedc6c1087bd35d782c3518b2a52.png", + "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0xb2ee01f57aebd6e268934ed9dc47b01be760867d": { + "address": "0xb2ee01f57aebd6e268934ed9dc47b01be760867d", + "symbol": "AGORA", + "decimals": 18, + "name": "Agora by Virtuals", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xb2ee01f57aebd6e268934ed9dc47b01be760867d.png", + "aggregators": ["CoinGecko", "Rubic", "Squid", "Rango"], + "occurrences": 4 + }, + "0x38b88d6568d61556d33592ad7bc24e89a7fb6691": { + "address": "0x38b88d6568d61556d33592ad7bc24e89a7fb6691", + "symbol": "OPSYS", + "decimals": 18, + "name": "Operating System", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x38b88d6568d61556d33592ad7bc24e89a7fb6691.png", + "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0x4f81837c2f4a189a0b69370027cc2627d93785b4": { + "address": "0x4f81837c2f4a189a0b69370027cc2627d93785b4", + "symbol": "SERAPH", + "decimals": 18, + "name": "Seraph by Virtuals", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x4f81837c2f4a189a0b69370027cc2627d93785b4.png", + "aggregators": ["CoinGecko", "Rubic", "Squid", "Rango"], + "occurrences": 4 + }, + "0x3c8cd0db9a01efa063a7760267b822a129bc7dca": { + "address": "0x3c8cd0db9a01efa063a7760267b822a129bc7dca", + "symbol": "FROC", + "decimals": 18, + "name": "Based Froc", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x3c8cd0db9a01efa063a7760267b822a129bc7dca.png", + "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0x05b1266ddcee093ce060dbf697e230ea9b453633": { + "address": "0x05b1266ddcee093ce060dbf697e230ea9b453633", + "symbol": "REPLY", + "decimals": 18, + "name": "ReplyCorp", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x05b1266ddcee093ce060dbf697e230ea9b453633.png", + "aggregators": ["CoinGecko", "Rubic", "Squid", "Rango"], + "occurrences": 4 + }, + "0x3b92844c5abd9f0562c71ebf219628f1676a856d": { + "address": "0x3b92844c5abd9f0562c71ebf219628f1676a856d", + "symbol": "STAR", + "decimals": 18, + "name": "Starly the $STAR™ Guide", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x3b92844c5abd9f0562c71ebf219628f1676a856d.png", + "aggregators": ["CoinGecko", "Rubic", "Squid", "Rango"], + "occurrences": 4 + }, + "0x14b2f229097df3c92b43ea871860e3fae08d7f06": { + "address": "0x14b2f229097df3c92b43ea871860e3fae08d7f06", + "symbol": "BANKS", + "decimals": 18, + "name": "Rob Banks", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x14b2f229097df3c92b43ea871860e3fae08d7f06.png", + "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0xd262a4c7108c8139b2b189758e8d17c3dfc91a38": { + "address": "0xd262a4c7108c8139b2b189758e8d17c3dfc91a38", + "symbol": "CYPR", + "decimals": 18, + "name": "Cypher", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xd262a4c7108c8139b2b189758e8d17c3dfc91a38.png", + "aggregators": ["CoinGecko", "LiFi", "Rubic", "Rango"], + "occurrences": 4 + }, + "0xedc68c4c54228d273ed50fc450e253f685a2c6b9": { + "address": "0xedc68c4c54228d273ed50fc450e253f685a2c6b9", + "symbol": "JAV", + "decimals": 18, + "name": "Javsphere", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xedc68c4c54228d273ed50fc450e253f685a2c6b9.png", + "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0x50c749ae210d3977adc824ae11f3c7fd10c871e9": { + "address": "0x50c749ae210d3977adc824ae11f3c7fd10c871e9", + "symbol": "YOEUR", + "decimals": 6, + "name": "YOEUR", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x50c749ae210d3977adc824ae11f3c7fd10c871e9.png", + "aggregators": ["CoinGecko", "LiFi", "Rubic", "Rango"], + "occurrences": 4 + }, + "0x5b8a884496792f754db6f92f6eacceb376ed8e40": { + "address": "0x5b8a884496792f754db6f92f6eacceb376ed8e40", + "symbol": "OP", + "decimals": 18, + "name": "One Path", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x5b8a884496792f754db6f92f6eacceb376ed8e40.png", + "aggregators": ["CoinGecko", "Rubic", "Squid", "Rango"], + "occurrences": 4 + }, + "0x6d5d854063114c18dadc54fe052d75c1c4f34b46": { + "address": "0x6d5d854063114c18dadc54fe052d75c1c4f34b46", + "symbol": "NEMESIS", + "decimals": 18, + "name": "Nemesis AI Trader by Virtuals", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x6d5d854063114c18dadc54fe052d75c1c4f34b46.png", + "aggregators": ["CoinGecko", "Rubic", "Squid", "Rango"], + "occurrences": 4 + }, + "0x931ef8053e997b1bab68d1e900a061305c0ff4fb": { + "address": "0x931ef8053e997b1bab68d1e900a061305c0ff4fb", + "symbol": "DOBI", + "decimals": 18, + "name": "Dobi by Virtuals", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x931ef8053e997b1bab68d1e900a061305c0ff4fb.png", + "aggregators": ["CoinGecko", "Rubic", "Squid", "Rango"], + "occurrences": 4 + }, + "0xe10c9e9d5d8005cde4fcc5e635614665de736148": { + "address": "0xe10c9e9d5d8005cde4fcc5e635614665de736148", + "symbol": "FUKU", + "decimals": 18, + "name": "Fuku", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xe10c9e9d5d8005cde4fcc5e635614665de736148.png", + "aggregators": ["CoinGecko", "Rubic", "Squid", "Rango"], + "occurrences": 4 + }, + "0xb0ca83c9524a642cc1ab6e62c6006c47ba74d68a": { + "address": "0xb0ca83c9524a642cc1ab6e62c6006c47ba74d68a", + "symbol": "PLOI", + "decimals": 18, + "name": "PLOI", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xb0ca83c9524a642cc1ab6e62c6006c47ba74d68a.png", + "aggregators": ["CoinGecko", "Rubic", "Squid", "Rango"], + "occurrences": 4 + }, + "0x8cbc577247938a6a4e0891861e81f7c81f6b9490": { + "address": "0x8cbc577247938a6a4e0891861e81f7c81f6b9490", + "symbol": "HEXAR", + "decimals": 18, + "name": "HEXAR AI", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x8cbc577247938a6a4e0891861e81f7c81f6b9490.png", + "aggregators": ["CoinGecko", "Rubic", "Squid", "Rango"], + "occurrences": 4 + }, + "0x1ba597770e98c4f630ddbdc8b9e1a5cb1b4ca047": { + "address": "0x1ba597770e98c4f630ddbdc8b9e1a5cb1b4ca047", + "symbol": "MEL", + "decimals": 18, + "name": "Melvin", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x1ba597770e98c4f630ddbdc8b9e1a5cb1b4ca047.png", + "aggregators": ["CoinGecko", "Rubic", "Squid", "Rango"], + "occurrences": 4 + }, + "0xb887cac66cf5eaaa0bf0cdb5d76905e19bc391a5": { + "address": "0xb887cac66cf5eaaa0bf0cdb5d76905e19bc391a5", + "symbol": "SHARP", + "decimals": 18, + "name": "Sharp AI", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xb887cac66cf5eaaa0bf0cdb5d76905e19bc391a5.png", + "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0x1c61629598e4a901136a81bc138e5828dc150d67": { + "address": "0x1c61629598e4a901136a81bc138e5828dc150d67", + "symbol": "WSOL", + "decimals": 9, + "name": "Wormhole Bridged Wrapped SOL (Base)", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x1c61629598e4a901136a81bc138e5828dc150d67.png", + "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0x885129e35d247b01c4485ef6b48564d0ebc8c362": { + "address": "0x885129e35d247b01c4485ef6b48564d0ebc8c362", + "symbol": "BRETT2.0", + "decimals": 18, + "name": "Brett 2.0", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x885129e35d247b01c4485ef6b48564d0ebc8c362.png", + "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0x36692131ccc0a478e26b3a1ada6447d95f79df21": { + "address": "0x36692131ccc0a478e26b3a1ada6447d95f79df21", + "symbol": "BABYPEPE", + "decimals": 18, + "name": "Baby Pepe", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x36692131ccc0a478e26b3a1ada6447d95f79df21.png", + "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0xe6ab1cc1307b496748753e017f3dbb4d4378ca3f": { + "address": "0xe6ab1cc1307b496748753e017f3dbb4d4378ca3f", + "symbol": "MANEKI", + "decimals": 18, + "name": "Maneki AI by Virtuals", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xe6ab1cc1307b496748753e017f3dbb4d4378ca3f.png", + "aggregators": ["CoinGecko", "Rubic", "Squid", "Rango"], + "occurrences": 4 + }, + "0xcfc8e8a4d2246dec68115ae24abbca0d2b1e6bf2": { + "address": "0xcfc8e8a4d2246dec68115ae24abbca0d2b1e6bf2", + "symbol": "BILLY", + "decimals": 18, + "name": "Billy Bets by Virtuals", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xcfc8e8a4d2246dec68115ae24abbca0d2b1e6bf2.png", + "aggregators": ["CoinGecko", "Rubic", "Squid", "Rango"], + "occurrences": 4 + }, + "0xe095b8127823708dc07e739ef4149050acc836e7": { + "address": "0xe095b8127823708dc07e739ef4149050acc836e7", + "symbol": "ATM", + "decimals": 18, + "name": "A.T.M.", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xe095b8127823708dc07e739ef4149050acc836e7.png", + "aggregators": ["CoinGecko", "Rubic", "Squid", "Rango"], + "occurrences": 4 + }, + "0x81496f85abaf8bd2e13d90379fde86c533d8670d": { + "address": "0x81496f85abaf8bd2e13d90379fde86c533d8670d", + "symbol": "AGIXBT", + "decimals": 18, + "name": "AGIXBT by Virtuals", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x81496f85abaf8bd2e13d90379fde86c533d8670d.png", + "aggregators": ["CoinGecko", "Rubic", "Squid", "Rango"], + "occurrences": 4 + }, + "0xb3836098d1e94ec651d74d053d4a0813316b2a2f": { + "address": "0xb3836098d1e94ec651d74d053d4a0813316b2a2f", + "symbol": "RUBI", + "decimals": 18, + "name": "Rubicon Token", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xb3836098d1e94ec651d74d053d4a0813316b2a2f.png", + "aggregators": ["CoinGecko", "LiFi", "Rubic", "Rango"], + "occurrences": 4 + }, + "0x7475fa4c36344f1d633964f02564f37162299194": { + "address": "0x7475fa4c36344f1d633964f02564f37162299194", + "symbol": "SHIBUSSY", + "decimals": 18, + "name": "Shibussy", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x7475fa4c36344f1d633964f02564f37162299194.png", + "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0x33ac788bc9ccb27e9ec558fb2bde79950a6b9d5b": { + "address": "0x33ac788bc9ccb27e9ec558fb2bde79950a6b9d5b", + "symbol": "GLANKER", + "decimals": 18, + "name": "glonkybot", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x33ac788bc9ccb27e9ec558fb2bde79950a6b9d5b.png", + "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0xf25b7dd973e30dcf219fbed7bd336b9ab5a05dd9": { + "address": "0xf25b7dd973e30dcf219fbed7bd336b9ab5a05dd9", + "symbol": "BRAINS", + "decimals": 18, + "name": "$BRAINS - your greed is my fuel 🤯🧠 by Virtuals", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xf25b7dd973e30dcf219fbed7bd336b9ab5a05dd9.png", + "aggregators": ["CoinGecko", "Rubic", "Squid", "Rango"], + "occurrences": 4 + }, + "0x853a7c99227499dba9db8c3a02aa691afdebf841": { + "address": "0x853a7c99227499dba9db8c3a02aa691afdebf841", + "symbol": "PLAY", + "decimals": 18, + "name": "Play", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x853a7c99227499dba9db8c3a02aa691afdebf841.png", + "aggregators": ["CoinGecko", "LiFi", "Rubic", "Rango"], + "occurrences": 4 + }, + "0xc4047680d153fa3b741b016e871dfca723f1deea": { + "address": "0xc4047680d153fa3b741b016e871dfca723f1deea", + "symbol": "X40G", + "decimals": 18, + "name": "X40G", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xc4047680d153fa3b741b016e871dfca723f1deea.png", + "aggregators": ["CoinGecko", "Rubic", "Squid", "Rango"], + "occurrences": 4 + }, + "0x9704d2adbc02c085ff526a37ac64872027ac8a50": { + "address": "0x9704d2adbc02c085ff526a37ac64872027ac8a50", + "symbol": "BSOP", + "decimals": 18, + "name": "Bsop", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x9704d2adbc02c085ff526a37ac64872027ac8a50.png", + "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0xca416d6d3c2b3a8a2c48419b53dd611420ffa776": { + "address": "0xca416d6d3c2b3a8a2c48419b53dd611420ffa776", + "symbol": "KAZONOMICS", + "decimals": 18, + "name": "kazonomics", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xca416d6d3c2b3a8a2c48419b53dd611420ffa776.png", + "aggregators": ["CoinGecko", "LiFi", "Rubic", "Rango"], + "occurrences": 4 + }, + "0xcb119fe73cd3b4eb6bbf4c5ad0d6c788e3f80d54": { + "address": "0xcb119fe73cd3b4eb6bbf4c5ad0d6c788e3f80d54", + "symbol": "ELYTRA", + "decimals": 18, + "name": "ELYTRA by Virtuals", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xcb119fe73cd3b4eb6bbf4c5ad0d6c788e3f80d54.png", + "aggregators": ["CoinGecko", "Rubic", "Squid", "Rango"], + "occurrences": 4 + }, + "0x6f0b30c20a7f97d9a048b2e53ef6bdf511b59d3d": { + "address": "0x6f0b30c20a7f97d9a048b2e53ef6bdf511b59d3d", + "symbol": "AGENTIK", + "decimals": 18, + "name": "Agentik DEX by Virtuals", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x6f0b30c20a7f97d9a048b2e53ef6bdf511b59d3d.png", + "aggregators": ["CoinGecko", "Rubic", "Squid", "Rango"], + "occurrences": 4 + }, + "0xc799ada44171b741abf41ee54fb1b47fda5960be": { + "address": "0xc799ada44171b741abf41ee54fb1b47fda5960be", + "symbol": "XOXO", + "decimals": 6, + "name": "XO Protocol", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xc799ada44171b741abf41ee54fb1b47fda5960be.png", + "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0x504a26cf29674bc77a9341e73f88ccecc864034c": { + "address": "0x504a26cf29674bc77a9341e73f88ccecc864034c", + "symbol": "SYMP", + "decimals": 18, + "name": "Sympson by Virtuals", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x504a26cf29674bc77a9341e73f88ccecc864034c.png", + "aggregators": ["CoinGecko", "Rubic", "Squid", "Rango"], + "occurrences": 4 + }, + "0xc1b641e72327208f0fe37405a9d46439b626af6a": { + "address": "0xc1b641e72327208f0fe37405a9d46439b626af6a", + "symbol": "WAYE", + "decimals": 18, + "name": "WAYE.ai", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xc1b641e72327208f0fe37405a9d46439b626af6a.png", + "aggregators": ["CoinGecko", "Rubic", "Squid", "Rango"], + "occurrences": 4 + }, + "0x34c4a0056fad621c723433a473140aadc8998a8b": { + "address": "0x34c4a0056fad621c723433a473140aadc8998a8b", + "symbol": "FLYTE", + "decimals": 18, + "name": "Flyte AI by Virtuals", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x34c4a0056fad621c723433a473140aadc8998a8b.png", + "aggregators": ["CoinGecko", "Rubic", "Squid", "Rango"], + "occurrences": 4 + }, + "0x2133031f5acbc493572c02f271186f241cd8d6a5": { + "address": "0x2133031f5acbc493572c02f271186f241cd8d6a5", + "symbol": "$MRKT", + "decimals": 18, + "name": "BLCKMRKT", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x2133031f5acbc493572c02f271186f241cd8d6a5.png", + "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0x91b518dfbefe614aa14f38a6bc02c7d22d6210cd": { + "address": "0x91b518dfbefe614aa14f38a6bc02c7d22d6210cd", + "symbol": "MELLO", + "decimals": 18, + "name": "Mello AI", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x91b518dfbefe614aa14f38a6bc02c7d22d6210cd.png", + "aggregators": ["CoinGecko", "Rubic", "Squid", "Sonarwatch"], + "occurrences": 4 + }, + "0xb3621cd34803cf7065dcb0d5bfb0f56c1834a063": { + "address": "0xb3621cd34803cf7065dcb0d5bfb0f56c1834a063", + "symbol": "DEFAI", + "decimals": 18, + "name": "DeFi Agents AI", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xb3621cd34803cf7065dcb0d5bfb0f56c1834a063.png", + "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0xd1d7aa941c71fd95e9d31bbd81937b3e71bd6231": { + "address": "0xd1d7aa941c71fd95e9d31bbd81937b3e71bd6231", + "symbol": "ORCL", + "decimals": 18, + "name": "Oracle", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xd1d7aa941c71fd95e9d31bbd81937b3e71bd6231.png", + "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0x93893878af23f5c817fe338a6dc7858d5d608bf7": { + "address": "0x93893878af23f5c817fe338a6dc7858d5d608bf7", + "symbol": "MAGNUS", + "decimals": 18, + "name": "Magnus Opus by Virtuals", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x93893878af23f5c817fe338a6dc7858d5d608bf7.png", + "aggregators": ["CoinGecko", "Rubic", "Squid", "Rango"], + "occurrences": 4 + }, + "0x2e7df1528f4ea427f48b49ae8a1f78149db7185a": { + "address": "0x2e7df1528f4ea427f48b49ae8a1f78149db7185a", + "symbol": "$PRO", + "decimals": 18, + "name": "ProductClank", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x2e7df1528f4ea427f48b49ae8a1f78149db7185a.png", + "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0xbfabe191449a1549a0be6f5c0aa09affecbebc32": { + "address": "0xbfabe191449a1549a0be6f5c0aa09affecbebc32", + "symbol": "HCAT", + "decimals": 18, + "name": "Hover Cat", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xbfabe191449a1549a0be6f5c0aa09affecbebc32.png", + "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0x7bbcf1b600565ae023a1806ef637af4739de3255": { + "address": "0x7bbcf1b600565ae023a1806ef637af4739de3255", + "symbol": "PRFI", + "decimals": 18, + "name": "PRFI", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x7bbcf1b600565ae023a1806ef637af4739de3255.png", + "aggregators": ["CoinGecko", "Socket", "Rubic", "Rango"], + "occurrences": 4 + }, + "0x91273b316240879fd902c0c3fcf7c0158777b42f": { + "address": "0x91273b316240879fd902c0c3fcf7c0158777b42f", + "symbol": "OLYN", + "decimals": 18, + "name": "Olyn by Virtuals", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x91273b316240879fd902c0c3fcf7c0158777b42f.png", + "aggregators": ["CoinGecko", "Rubic", "Squid", "Rango"], + "occurrences": 4 + }, + "0x5cda0e1ca4ce2af96315f7f8963c85399c172204": { + "address": "0x5cda0e1ca4ce2af96315f7f8963c85399c172204", + "symbol": "WTCOIN", + "decimals": 18, + "name": "Coinbase Global Inc ST0x", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x5cda0e1ca4ce2af96315f7f8963c85399c172204.png", + "aggregators": ["CoinGecko", "LiFi", "Rubic", "Rango"], + "occurrences": 4 + }, + "0xea2e0887dc584a16433d49c49295809ac5c0da8e": { + "address": "0xea2e0887dc584a16433d49c49295809ac5c0da8e", + "symbol": "YUNAI", + "decimals": 18, + "name": "YUNAI", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xea2e0887dc584a16433d49c49295809ac5c0da8e.png", + "aggregators": ["CoinGecko", "Rubic", "Squid", "Rango"], + "occurrences": 4 + }, + "0x444600d9fa140e9506d0cbc436bffad3d5c3febc": { + "address": "0x444600d9fa140e9506d0cbc436bffad3d5c3febc", + "symbol": "LUCIEN", + "decimals": 18, + "name": "Director Lucien by Virtuals", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x444600d9fa140e9506d0cbc436bffad3d5c3febc.png", + "aggregators": ["CoinGecko", "Rubic", "Squid", "Rango"], + "occurrences": 4 + }, + "0x74bf9813655d427bfea800f8af0e52a59ff24223": { + "address": "0x74bf9813655d427bfea800f8af0e52a59ff24223", + "symbol": "EMATE", + "decimals": 18, + "name": "REAL ESMATE by Virtuals", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x74bf9813655d427bfea800f8af0e52a59ff24223.png", + "aggregators": ["CoinGecko", "Rubic", "Squid", "Rango"], + "occurrences": 4 + }, + "0xd968196fa6977c4e58f2af5ac01c655ea8332d22": { + "address": "0xd968196fa6977c4e58f2af5ac01c655ea8332d22", + "symbol": "NATO", + "decimals": 18, + "name": "The Nation Token", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xd968196fa6977c4e58f2af5ac01c655ea8332d22.png", + "aggregators": ["Metamask", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0x3dc6c3231f3ab298430b02357a6f0a1e370a54c6": { + "address": "0x3dc6c3231f3ab298430b02357a6f0a1e370a54c6", + "symbol": "NUWA", + "decimals": 18, + "name": "Nuwa World by Virtuals", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x3dc6c3231f3ab298430b02357a6f0a1e370a54c6.png", + "aggregators": ["CoinGecko", "Rubic", "Squid", "Rango"], + "occurrences": 4 + }, + "0x2425598dd959e47a294a737ee4104316864817cf": { + "address": "0x2425598dd959e47a294a737ee4104316864817cf", + "symbol": "CLOUD", + "decimals": 18, + "name": "CloudAI", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x2425598dd959e47a294a737ee4104316864817cf.png", + "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0xb455c23dec25fcf98e46e6a87bf3de67134c6e7f": { + "address": "0xb455c23dec25fcf98e46e6a87bf3de67134c6e7f", + "symbol": "XOE", + "decimals": 18, + "name": "XOE by Virtuals", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xb455c23dec25fcf98e46e6a87bf3de67134c6e7f.png", + "aggregators": ["CoinGecko", "Rubic", "Squid", "Rango"], + "occurrences": 4 + }, + "0x6e02f4a1631379a49e8b7e222cfa6bf913b05e89": { + "address": "0x6e02f4a1631379a49e8b7e222cfa6bf913b05e89", + "symbol": "MPP", + "decimals": 18, + "name": "MegPrime", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x6e02f4a1631379a49e8b7e222cfa6bf913b05e89.png", + "aggregators": ["CoinGecko", "Rubic", "Squid", "Rango"], + "occurrences": 4 + }, + "0x20dd04c17afd5c9a8b3f2cdacaa8ee7907385bef": { + "address": "0x20dd04c17afd5c9a8b3f2cdacaa8ee7907385bef", + "symbol": "NATIVE", + "decimals": 18, + "name": "Native", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x20dd04c17afd5c9a8b3f2cdacaa8ee7907385bef.png", + "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0xdf2fd7dd75143a5010f145440d49748275e362a3": { + "address": "0xdf2fd7dd75143a5010f145440d49748275e362a3", + "symbol": "WINT", + "decimals": 18, + "name": "Whale Intel", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xdf2fd7dd75143a5010f145440d49748275e362a3.png", + "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0x3e1a6d23303be04403badc8bff348027148fef27": { + "address": "0x3e1a6d23303be04403badc8bff348027148fef27", + "symbol": "CLANKSTER", + "decimals": 18, + "name": "Clankster", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x3e1a6d23303be04403badc8bff348027148fef27.png", + "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0x85fbe583368888bc8dabde6f1e6ec6a3f0b2a040": { + "address": "0x85fbe583368888bc8dabde6f1e6ec6a3f0b2a040", + "symbol": "MORSE", + "decimals": 18, + "name": "MORSE", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x85fbe583368888bc8dabde6f1e6ec6a3f0b2a040.png", + "aggregators": ["CoinGecko", "Rubic", "Squid", "Rango"], + "occurrences": 4 + }, + "0xbc7755a153e852cf76cccddb4c2e7c368f6259d8": { + "address": "0xbc7755a153e852cf76cccddb4c2e7c368f6259d8", + "symbol": "HESTIA", + "decimals": 18, + "name": "Hestia", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xbc7755a153e852cf76cccddb4c2e7c368f6259d8.png", + "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0xe248c0bce837b8dfb21fdfa51fb31d22fbbb4380": { + "address": "0xe248c0bce837b8dfb21fdfa51fb31d22fbbb4380", + "symbol": "FDX", + "decimals": 18, + "name": "FLEX", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xe248c0bce837b8dfb21fdfa51fb31d22fbbb4380.png", + "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0x8dd524a86195a6ef95304e7f0dd9c405a2e78859": { + "address": "0x8dd524a86195a6ef95304e7f0dd9c405a2e78859", + "symbol": "SAGE", + "decimals": 18, + "name": "SAGE", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x8dd524a86195a6ef95304e7f0dd9c405a2e78859.png", + "aggregators": ["CoinGecko", "Rubic", "Squid", "Rango"], + "occurrences": 4 + }, + "0x02cb6968877a3a40a5d918af0aecc3481bfc0434": { + "address": "0x02cb6968877a3a40a5d918af0aecc3481bfc0434", + "symbol": "ASYNC", + "decimals": 18, + "name": "ASYNCHRONUS by Virtuals", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x02cb6968877a3a40a5d918af0aecc3481bfc0434.png", + "aggregators": ["CoinGecko", "Rubic", "Squid", "Rango"], + "occurrences": 4 + }, + "0x991ab5d07f28232ec1677e2c13239fb9b4b9ccb7": { + "address": "0x991ab5d07f28232ec1677e2c13239fb9b4b9ccb7", + "symbol": "SMITH", + "decimals": 18, + "name": "Agent Smith", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x991ab5d07f28232ec1677e2c13239fb9b4b9ccb7.png", + "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0x7f0e9971d3320521fc88f863e173a4cddbb051ba": { + "address": "0x7f0e9971d3320521fc88f863e173a4cddbb051ba", + "symbol": "AQUARI", + "decimals": 18, + "name": "Aquari", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x7f0e9971d3320521fc88f863e173a4cddbb051ba.png", + "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0x290f057a2c59b95d8027aa4abf31782676502071": { + "address": "0x290f057a2c59b95d8027aa4abf31782676502071", + "symbol": "CLIZA", + "decimals": 18, + "name": "cliza", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x290f057a2c59b95d8027aa4abf31782676502071.png", + "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0x07fb80f7a8460de3065d74b2663ba0d740fb3ca5": { + "address": "0x07fb80f7a8460de3065d74b2663ba0d740fb3ca5", + "symbol": "OXI", + "decimals": 18, + "name": "Oxbull", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x07fb80f7a8460de3065d74b2663ba0d740fb3ca5.png", + "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0x8d0e3818088277d981a6fd2839d5884fd88b40ca": { + "address": "0x8d0e3818088277d981a6fd2839d5884fd88b40ca", + "symbol": "CSTRAT", + "decimals": 18, + "name": "Card Strategy", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x8d0e3818088277d981a6fd2839d5884fd88b40ca.png", + "aggregators": ["CoinGecko", "LiFi", "Rubic", "Rango"], + "occurrences": 4 + }, + "0x3e12b9d6a4d12cd9b4a6d613872d0eb32f68b380": { + "address": "0x3e12b9d6a4d12cd9b4a6d613872d0eb32f68b380", + "symbol": "FLOWER", + "decimals": 18, + "name": "Flower", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x3e12b9d6a4d12cd9b4a6d613872d0eb32f68b380.png", + "aggregators": ["CoinGecko", "LiFi", "Rubic", "Rango"], + "occurrences": 4 + }, + "0xda4c86b5444294a5ba3b806ae7718f1f95cc3120": { + "address": "0xda4c86b5444294a5ba3b806ae7718f1f95cc3120", + "symbol": "TYCOON", + "decimals": 18, + "name": "Tycoon by Shareland by Virtuals", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xda4c86b5444294a5ba3b806ae7718f1f95cc3120.png", + "aggregators": ["CoinGecko", "Rubic", "Squid", "Rango"], + "occurrences": 4 + }, + "0x9e271ec4d66f2b400ad92de8a10e5c9c1914259c": { + "address": "0x9e271ec4d66f2b400ad92de8a10e5c9c1914259c", + "symbol": "$UP", + "decimals": 18, + "name": "$UP", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x9e271ec4d66f2b400ad92de8a10e5c9c1914259c.png", + "aggregators": ["CoinGecko", "Rubic", "Squid", "Rango"], + "occurrences": 4 + }, + "0xd2626a8408e13a364130bf25495ce242d30f4721": { + "address": "0xd2626a8408e13a364130bf25495ce242d30f4721", + "symbol": "CRAZZERS", + "decimals": 18, + "name": "Crazzers AI by Virtuals", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xd2626a8408e13a364130bf25495ce242d30f4721.png", + "aggregators": ["CoinGecko", "Rubic", "Squid", "Rango"], + "occurrences": 4 + }, + "0xbf8566956b4e2d8beb90c4c19dbb8c67a9290c36": { + "address": "0xbf8566956b4e2d8beb90c4c19dbb8c67a9290c36", + "symbol": "VIRGEN", + "decimals": 18, + "name": "VIRGEN by Virtuals", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xbf8566956b4e2d8beb90c4c19dbb8c67a9290c36.png", + "aggregators": ["CoinGecko", "Rubic", "Squid", "Rango"], + "occurrences": 4 + }, + "0x5d6cae0422a950dbd7918d1e74434a35156b3ba4": { + "address": "0x5d6cae0422a950dbd7918d1e74434a35156b3ba4", + "symbol": "NVG8", + "decimals": 18, + "name": "Navigate", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x5d6cae0422a950dbd7918d1e74434a35156b3ba4.png", + "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0x6555255b8ded3c538cb398d9e36769f45d7d3ea7": { + "address": "0x6555255b8ded3c538cb398d9e36769f45d7d3ea7", + "symbol": "ROOM", + "decimals": 18, + "name": "Backroom by Virtuals", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x6555255b8ded3c538cb398d9e36769f45d7d3ea7.png", + "aggregators": ["CoinGecko", "Rubic", "Squid", "Rango"], + "occurrences": 4 + }, + "0xf09034487c84954d49ae04bf6817148ffc2edb83": { + "address": "0xf09034487c84954d49ae04bf6817148ffc2edb83", + "symbol": "BARRY", + "decimals": 18, + "name": "Barry the badger", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xf09034487c84954d49ae04bf6817148ffc2edb83.png", + "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0xf6da29a60e17081d80da142448de4438b74d20f9": { + "address": "0xf6da29a60e17081d80da142448de4438b74d20f9", + "symbol": "EVA", + "decimals": 18, + "name": "EVA by Virtuals", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xf6da29a60e17081d80da142448de4438b74d20f9.png", + "aggregators": ["CoinGecko", "Rubic", "Squid", "Rango"], + "occurrences": 4 + }, + "0x14daf26c2507acdd3b64e3302d8554611026cc40": { + "address": "0x14daf26c2507acdd3b64e3302d8554611026cc40", + "symbol": "$MUST", + "decimals": 18, + "name": "Cool Mustache", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x14daf26c2507acdd3b64e3302d8554611026cc40.png", + "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0xd53deb03d6de5f355c0b8de57b8f37179ff60b81": { + "address": "0xd53deb03d6de5f355c0b8de57b8f37179ff60b81", + "symbol": "MAFIA", + "decimals": 18, + "name": "MAFIA", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xd53deb03d6de5f355c0b8de57b8f37179ff60b81.png", + "aggregators": ["CoinGecko", "Rubic", "Squid", "Rango"], + "occurrences": 4 + }, + "0x33c527361ab68b46a6669f82d25b704423cae568": { + "address": "0x33c527361ab68b46a6669f82d25b704423cae568", + "symbol": "ZENITH", + "decimals": 18, + "name": "Zenith by Virtuals", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x33c527361ab68b46a6669f82d25b704423cae568.png", + "aggregators": ["CoinGecko", "Rubic", "Squid", "Rango"], + "occurrences": 4 + }, + "0x0b1d66d2b66eeca25bc489062fdc362e3c214f81": { + "address": "0x0b1d66d2b66eeca25bc489062fdc362e3c214f81", + "symbol": "NAINCY", + "decimals": 18, + "name": "NAINCY", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x0b1d66d2b66eeca25bc489062fdc362e3c214f81.png", + "aggregators": ["CoinGecko", "Rubic", "Squid", "Sonarwatch"], + "occurrences": 4 + }, + "0xc2427bf51d99b6ed0da0da103bc51235638ee868": { + "address": "0xc2427bf51d99b6ed0da0da103bc51235638ee868", + "symbol": "BOT", + "decimals": 18, + "name": "Wasabot", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xc2427bf51d99b6ed0da0da103bc51235638ee868.png", + "aggregators": ["CoinGecko", "Rubic", "Squid", "Rango"], + "occurrences": 4 + }, + "0x80ded22d9c6487181ed74d0222add805815e8df4": { + "address": "0x80ded22d9c6487181ed74d0222add805815e8df4", + "symbol": "CENTRY", + "decimals": 18, + "name": "Cybercentry by Virtuals", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x80ded22d9c6487181ed74d0222add805815e8df4.png", + "aggregators": ["CoinGecko", "Rubic", "Squid", "Rango"], + "occurrences": 4 + }, + "0xa66b448f97cbf58d12f00711c02bac2d9eac6f7f": { + "address": "0xa66b448f97cbf58d12f00711c02bac2d9eac6f7f", + "symbol": "OPENX", + "decimals": 18, + "name": "OpenxAI", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xa66b448f97cbf58d12f00711c02bac2d9eac6f7f.png", + "aggregators": ["CoinGecko", "Socket", "Rubic", "Rango"], + "occurrences": 4 + }, + "0xf697a91e2fbf7f0f6c09c9b32d6523628ec5d3f6": { + "address": "0xf697a91e2fbf7f0f6c09c9b32d6523628ec5d3f6", + "symbol": "AMPD", + "decimals": 9, + "name": "Ample", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xf697a91e2fbf7f0f6c09c9b32d6523628ec5d3f6.png", + "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0x2941d526e22406c5d6f273e281899cfc042a7332": { + "address": "0x2941d526e22406c5d6f273e281899cfc042a7332", + "symbol": "KOGIN", + "decimals": 18, + "name": "Kogin by Virtuals", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x2941d526e22406c5d6f273e281899cfc042a7332.png", + "aggregators": ["CoinGecko", "Rubic", "Squid", "Rango"], + "occurrences": 4 + }, + "0x6ce4dba6b54d4995654c94bd48ea3b94836ea144": { + "address": "0x6ce4dba6b54d4995654c94bd48ea3b94836ea144", + "symbol": "SPIX", + "decimals": 18, + "name": "spιxfι", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x6ce4dba6b54d4995654c94bd48ea3b94836ea144.png", + "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0x129966d7d25775b57e3c5b13b2e1c2045fbc4926": { + "address": "0x129966d7d25775b57e3c5b13b2e1c2045fbc4926", + "symbol": "NYKO", + "decimals": 18, + "name": "NIYOKO by Virtuals", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x129966d7d25775b57e3c5b13b2e1c2045fbc4926.png", + "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0xac743b05f5e590d9db6a4192e02457838e4af61e": { + "address": "0xac743b05f5e590d9db6a4192e02457838e4af61e", + "symbol": "CALLS", + "decimals": 18, + "name": "OnlyCalls by Virtuals", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xac743b05f5e590d9db6a4192e02457838e4af61e.png", + "aggregators": ["CoinGecko", "Rubic", "Squid", "Rango"], + "occurrences": 4 + }, + "0x840b20fa3d48ac709fd841fcd878c3e8aabd7087": { + "address": "0x840b20fa3d48ac709fd841fcd878c3e8aabd7087", + "symbol": "GLUE", + "decimals": 18, + "name": "Base Bridged GLUE (Base)", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x840b20fa3d48ac709fd841fcd878c3e8aabd7087.png", + "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0x6dd4e9e85b96d4cb8a0c16c8a9b097e1c9205617": { + "address": "0x6dd4e9e85b96d4cb8a0c16c8a9b097e1c9205617", + "symbol": "CTDA", + "decimals": 18, + "name": "PokPok Agent Brain by Virtuals", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x6dd4e9e85b96d4cb8a0c16c8a9b097e1c9205617.png", + "aggregators": ["CoinGecko", "Rubic", "Squid", "Rango"], + "occurrences": 4 + }, + "0x4b6104755afb5da4581b81c552da3a25608c73b8": { + "address": "0x4b6104755afb5da4581b81c552da3a25608c73b8", + "symbol": "SKITTEN", + "decimals": 18, + "name": "$SKITTEN", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x4b6104755afb5da4581b81c552da3a25608c73b8.png", + "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0xab10e517f3138b17108b32129e8c8446ad44a267": { + "address": "0xab10e517f3138b17108b32129e8c8446ad44a267", + "symbol": "BTA", + "decimals": 18, + "name": "Battle.tech by Virtuals", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xab10e517f3138b17108b32129e8c8446ad44a267.png", + "aggregators": ["CoinGecko", "Rubic", "Squid", "Rango"], + "occurrences": 4 + }, + "0x00309d634d11541b857f927be91ad2f0bd78894c": { + "address": "0x00309d634d11541b857f927be91ad2f0bd78894c", + "symbol": "TEVA", + "decimals": 18, + "name": "Tevaera", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x00309d634d11541b857f927be91ad2f0bd78894c.png", + "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0xa7f6e8a35d83228cc6c241c8dd0fb687552f75d1": { + "address": "0xa7f6e8a35d83228cc6c241c8dd0fb687552f75d1", + "symbol": "DNODE", + "decimals": 18, + "name": "Dealer Node", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xa7f6e8a35d83228cc6c241c8dd0fb687552f75d1.png", + "aggregators": ["CoinGecko", "Rubic", "Squid", "Rango"], + "occurrences": 4 + }, + "0x1868c380e1d7883126dfe6c5ab2908fb2f944974": { + "address": "0x1868c380e1d7883126dfe6c5ab2908fb2f944974", + "symbol": "ARVOS", + "decimals": 18, + "name": "Arvos AI by Virtuals", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x1868c380e1d7883126dfe6c5ab2908fb2f944974.png", + "aggregators": ["CoinGecko", "Rubic", "Squid", "Rango"], + "occurrences": 4 + }, + "0x331ae2af41c4d3a644ceb5dc79a4b900f7a5b60d": { + "address": "0x331ae2af41c4d3a644ceb5dc79a4b900f7a5b60d", + "symbol": "AXB", + "decimals": 18, + "name": "AIxBET", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x331ae2af41c4d3a644ceb5dc79a4b900f7a5b60d.png", + "aggregators": ["CoinGecko", "Rubic", "Squid", "Rango"], + "occurrences": 4 + }, + "0x833f973406e07830d494cbe5fabbc3ae9c750c1f": { + "address": "0x833f973406e07830d494cbe5fabbc3ae9c750c1f", + "symbol": "IRWA", + "decimals": 18, + "name": "IncomRWA", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x833f973406e07830d494cbe5fabbc3ae9c750c1f.png", + "aggregators": ["CoinGecko", "LiFi", "Rubic", "Rango"], + "occurrences": 4 + }, + "0x214419f6fdd2b23bf6a32f33cf95186d188b784b": { + "address": "0x214419f6fdd2b23bf6a32f33cf95186d188b784b", + "symbol": "ST", + "decimals": 18, + "name": "Small Thing", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x214419f6fdd2b23bf6a32f33cf95186d188b784b.png", + "aggregators": ["CoinGecko", "Rubic", "Squid", "Rango"], + "occurrences": 4 + }, + "0xb462ac0e0a7fa3f8d7c129cd8398fc1258cfefb2": { + "address": "0xb462ac0e0a7fa3f8d7c129cd8398fc1258cfefb2", + "symbol": "DREAM", + "decimals": 18, + "name": "DREAM by Virtuals", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xb462ac0e0a7fa3f8d7c129cd8398fc1258cfefb2.png", + "aggregators": ["CoinGecko", "Rubic", "Squid", "Rango"], + "occurrences": 4 + }, + "0x3849cc93e7b71b37885237cd91a215974135cd8d": { + "address": "0x3849cc93e7b71b37885237cd91a215974135cd8d", + "symbol": "CREATE", + "decimals": 18, + "name": "Create", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x3849cc93e7b71b37885237cd91a215974135cd8d.png", + "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0x15eda1086c54c148037597e9dc60e5a87b618aa1": { + "address": "0x15eda1086c54c148037597e9dc60e5a87b618aa1", + "symbol": "BLUE", + "decimals": 18, + "name": "BLUEPAY", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x15eda1086c54c148037597e9dc60e5a87b618aa1.png", + "aggregators": ["CoinGecko", "Rubic", "Squid", "Rango"], + "occurrences": 4 + }, + "0x78b9ce06f0e20d89c78ced2ae739bb45dd5794ab": { + "address": "0x78b9ce06f0e20d89c78ced2ae739bb45dd5794ab", + "symbol": "PROV", + "decimals": 18, + "name": "Provenance Fact-check", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x78b9ce06f0e20d89c78ced2ae739bb45dd5794ab.png", + "aggregators": ["CoinGecko", "Rubic", "Squid", "Rango"], + "occurrences": 4 + }, + "0xe47dd5197c5b5194cbe10b0333ed45570fb63eb0": { + "address": "0xe47dd5197c5b5194cbe10b0333ed45570fb63eb0", + "symbol": "AIN", + "decimals": 18, + "name": "AInalyst by Virtuals", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xe47dd5197c5b5194cbe10b0333ed45570fb63eb0.png", + "aggregators": ["CoinGecko", "Rubic", "Squid", "Rango"], + "occurrences": 4 + }, + "0x1cfc22860fe46a622e3c2d1c9b036412467ef4c9": { + "address": "0x1cfc22860fe46a622e3c2d1c9b036412467ef4c9", + "symbol": "HANA", + "decimals": 18, + "name": "Hana by Virtuals", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x1cfc22860fe46a622e3c2d1c9b036412467ef4c9.png", + "aggregators": ["CoinGecko", "Rubic", "Squid", "Rango"], + "occurrences": 4 + }, + "0x708c2b2eeb9578dfe4020895139e88f7654647ff": { + "address": "0x708c2b2eeb9578dfe4020895139e88f7654647ff", + "symbol": "ROBOT", + "decimals": 18, + "name": "RoboStack", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x708c2b2eeb9578dfe4020895139e88f7654647ff.png", + "aggregators": ["CoinGecko", "Rubic", "Squid", "Sonarwatch"], + "occurrences": 4 + }, + "0x000000000001cdb57e58fa75fe420a0f4d6640d5": { + "address": "0x000000000001cdb57e58fa75fe420a0f4d6640d5", + "symbol": "GTUSDA", + "decimals": 18, + "name": "Gauntlet USD Alpha", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x000000000001cdb57e58fa75fe420a0f4d6640d5.png", + "aggregators": ["CoinGecko", "LiFi", "Rubic", "Rango"], + "occurrences": 4 + }, + "0xeb476e9ab6b1655860b3f40100678d0c1cedb321": { + "address": "0xeb476e9ab6b1655860b3f40100678d0c1cedb321", + "symbol": "$AMEN", + "decimals": 18, + "name": "Project Nostradamus", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xeb476e9ab6b1655860b3f40100678d0c1cedb321.png", + "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0x65fa18f0495c7cddabac07903230011c45cb7373": { + "address": "0x65fa18f0495c7cddabac07903230011c45cb7373", + "symbol": "PRTL", + "decimals": 18, + "name": "XPRTL", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x65fa18f0495c7cddabac07903230011c45cb7373.png", + "aggregators": ["CoinGecko", "Rubic", "Squid", "Rango"], + "occurrences": 4 + }, + "0x844c03892863b0e3e00e805e41b34527044d5c72": { + "address": "0x844c03892863b0e3e00e805e41b34527044d5c72", + "symbol": "$PANANA", + "decimals": 18, + "name": "Panana", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x844c03892863b0e3e00e805e41b34527044d5c72.png", + "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0xe56b9f83a7cbe491f248490264066552d8a47e58": { + "address": "0xe56b9f83a7cbe491f248490264066552d8a47e58", + "symbol": "SANWCH", + "decimals": 18, + "name": "ask the Sandwich by Virtuals", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xe56b9f83a7cbe491f248490264066552d8a47e58.png", + "aggregators": ["CoinGecko", "Rubic", "Squid", "Rango"], + "occurrences": 4 + }, + "0xd007c4c900d1df6caea2a4122f3d551d7dfe08b0": { + "address": "0xd007c4c900d1df6caea2a4122f3d551d7dfe08b0", + "symbol": "SPORT", + "decimals": 18, + "name": "Staicy Sport", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xd007c4c900d1df6caea2a4122f3d551d7dfe08b0.png", + "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0x21e00ff5374a0b803e0dc13a72800aca95b4b09e": { + "address": "0x21e00ff5374a0b803e0dc13a72800aca95b4b09e", + "symbol": "BUTTHOLE", + "decimals": 18, + "name": "Based Butthole", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x21e00ff5374a0b803e0dc13a72800aca95b4b09e.png", + "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0x15dd9165b3a80f83a5471f2e6eba57158ca3cf86": { + "address": "0x15dd9165b3a80f83a5471f2e6eba57158ca3cf86", + "symbol": "BL", + "decimals": 18, + "name": "ButlerLiquid", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x15dd9165b3a80f83a5471f2e6eba57158ca3cf86.png", + "aggregators": ["CoinGecko", "Rubic", "Squid", "Rango"], + "occurrences": 4 + }, + "0x075b25fae35b121b5295b7fa779e73094b2e9153": { + "address": "0x075b25fae35b121b5295b7fa779e73094b2e9153", + "symbol": "CLANKTARDIO", + "decimals": 18, + "name": "CLANKTARDIO", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x075b25fae35b121b5295b7fa779e73094b2e9153.png", + "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0x000000000d564d5be76f7f0d28fe52605afc7cf8": { + "address": "0x000000000d564d5be76f7f0d28fe52605afc7cf8", + "symbol": "FLETH", + "decimals": 18, + "name": "flETH", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x000000000d564d5be76f7f0d28fe52605afc7cf8.png", + "aggregators": ["CoinGecko", "LiFi", "Rubic", "Rango"], + "occurrences": 4 + }, + "0x17ce44b66dfd15c270dc24aca2e367adfed41620": { + "address": "0x17ce44b66dfd15c270dc24aca2e367adfed41620", + "symbol": "BEMU", + "decimals": 18, + "name": "BEMU", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x17ce44b66dfd15c270dc24aca2e367adfed41620.png", + "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0x6263ad921e11ab47ae85f1daa725b8b3581baed3": { + "address": "0x6263ad921e11ab47ae85f1daa725b8b3581baed3", + "symbol": "LUIGI", + "decimals": 18, + "name": "Market Maverick", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x6263ad921e11ab47ae85f1daa725b8b3581baed3.png", + "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0x220c6019203aaa7f14b5cd44a323446019609798": { + "address": "0x220c6019203aaa7f14b5cd44a323446019609798", + "symbol": "SPORT", + "decimals": 18, + "name": "Sports Analyst AI", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x220c6019203aaa7f14b5cd44a323446019609798.png", + "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0x25fbfff98d07fe586ea91953a5106e612c8b9e03": { + "address": "0x25fbfff98d07fe586ea91953a5106e612c8b9e03", + "symbol": "BABYSATO", + "decimals": 18, + "name": "Baby Sato", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x25fbfff98d07fe586ea91953a5106e612c8b9e03.png", + "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0x9a1b42f7f6d649b73bdb275972295acc940b153a": { + "address": "0x9a1b42f7f6d649b73bdb275972295acc940b153a", + "symbol": "GAIB", + "decimals": 18, + "name": "_gai16zbrielShai16zpr0", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x9a1b42f7f6d649b73bdb275972295acc940b153a.png", + "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0xcc4adb618253ed0d4d8a188fb901d70c54735e03": { + "address": "0xcc4adb618253ed0d4d8a188fb901d70c54735e03", + "symbol": "A0T", + "decimals": 18, + "name": "Agent Zero Token", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xcc4adb618253ed0d4d8a188fb901d70c54735e03.png", + "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0x26923fd7fef1d3153d15a793f98144c6b9919946": { + "address": "0x26923fd7fef1d3153d15a793f98144c6b9919946", + "symbol": "KARMA", + "decimals": 18, + "name": "KarmaVerse by Virtuals", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x26923fd7fef1d3153d15a793f98144c6b9919946.png", + "aggregators": ["CoinGecko", "Rubic", "Squid", "Rango"], + "occurrences": 4 + }, + "0x1014fc96b37225e56f171a107bebef03800ff8f8": { + "address": "0x1014fc96b37225e56f171a107bebef03800ff8f8", + "symbol": "DEGENOS", + "decimals": 18, + "name": "degenOS", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x1014fc96b37225e56f171a107bebef03800ff8f8.png", + "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0x0390a285c97f04c6ac9d162352b44e6fc310d3f2": { + "address": "0x0390a285c97f04c6ac9d162352b44e6fc310d3f2", + "symbol": "MATRIX", + "decimals": 18, + "name": "Matrix by Virtuals", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x0390a285c97f04c6ac9d162352b44e6fc310d3f2.png", + "aggregators": ["CoinGecko", "Rubic", "Squid", "Rango"], + "occurrences": 4 + }, + "0xf06689ae24a10b5accbfd5451a212b6b3004b960": { + "address": "0xf06689ae24a10b5accbfd5451a212b6b3004b960", + "symbol": "XIO", + "decimals": 18, + "name": "XIO", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xf06689ae24a10b5accbfd5451a212b6b3004b960.png", + "aggregators": ["CoinGecko", "Rubic", "Squid", "Rango"], + "occurrences": 4 + }, + "0xb22a793a81ff5b6ad37f40d5fe1e0ac4184d52f3": { + "address": "0xb22a793a81ff5b6ad37f40d5fe1e0ac4184d52f3", + "symbol": "TONY", + "decimals": 18, + "name": "Big Tony", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xb22a793a81ff5b6ad37f40d5fe1e0ac4184d52f3.png", + "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0x4c95cd5b24cba798c56f9c3045975d7b24437415": { + "address": "0x4c95cd5b24cba798c56f9c3045975d7b24437415", + "symbol": "SAMS", + "decimals": 18, + "name": "Samsara.Build", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x4c95cd5b24cba798c56f9c3045975d7b24437415.png", + "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0x9d56c29e820dd13b0580b185d0e0dc301d27581d": { + "address": "0x9d56c29e820dd13b0580b185d0e0dc301d27581d", + "symbol": "AUBRAI", + "decimals": 18, + "name": "Aubrai by Bio", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x9d56c29e820dd13b0580b185d0e0dc301d27581d.png", + "aggregators": ["CoinGecko", "LiFi", "Rubic", "Rango"], + "occurrences": 4 + }, + "0xa9e23871156718c1d55e90dad1c4ea8a33480dfd": { + "address": "0xa9e23871156718c1d55e90dad1c4ea8a33480dfd", + "symbol": "INSTACLAW", + "decimals": 18, + "name": "Instaclaw", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xa9e23871156718c1d55e90dad1c4ea8a33480dfd.png", + "aggregators": ["CoinGecko", "Rubic", "Squid", "Rango"], + "occurrences": 4 + }, + "0xae9a2e6f5717f0075c42874b86e7e375c7e42257": { + "address": "0xae9a2e6f5717f0075c42874b86e7e375c7e42257", + "symbol": "AIG", + "decimals": 18, + "name": "AI GOD by Virtuals", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xae9a2e6f5717f0075c42874b86e7e375c7e42257.png", + "aggregators": ["CoinGecko", "Rubic", "Squid", "Rango"], + "occurrences": 4 + }, + "0x31c2c14134e6e3b7ef9478297f199331133fc2d8": { + "address": "0x31c2c14134e6e3b7ef9478297f199331133fc2d8", + "symbol": "WTSPYM", + "decimals": 18, + "name": "Wrapped State Street SPDR Portfolio S&P 500 ETF ST0x", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x31c2c14134e6e3b7ef9478297f199331133fc2d8.png", + "aggregators": ["CoinGecko", "LiFi", "Rubic", "Rango"], + "occurrences": 4 + }, + "0x8853f0c059c27527d33d02378e5e4f6d5afb574a": { + "address": "0x8853f0c059c27527d33d02378e5e4f6d5afb574a", + "symbol": "AIINU", + "decimals": 18, + "name": "AI INU", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x8853f0c059c27527d33d02378e5e4f6d5afb574a.png", + "aggregators": ["CoinGecko", "Rubic", "Squid", "Rango"], + "occurrences": 4 + }, + "0x76a9a0062ec6712b99b4f63bd2b4270185759dd5": { + "address": "0x76a9a0062ec6712b99b4f63bd2b4270185759dd5", + "symbol": "USDP", + "decimals": 18, + "name": "USDP", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x76a9a0062ec6712b99b4f63bd2b4270185759dd5.png", + "aggregators": ["CoinGecko", "LiFi", "Rubic", "Rango"], + "occurrences": 4 + }, + "0x4381bc7d5640bf514a508e2732ec522c650c414c": { + "address": "0x4381bc7d5640bf514a508e2732ec522c650c414c", + "symbol": "AURA", + "decimals": 18, + "name": "Aura", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x4381bc7d5640bf514a508e2732ec522c650c414c.png", + "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0x83abfc4beec2ecf12995005d751a42df691c09c1": { + "address": "0x83abfc4beec2ecf12995005d751a42df691c09c1", + "symbol": "H1DR4", + "decimals": 18, + "name": "H1DR4 by Virtuals", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x83abfc4beec2ecf12995005d751a42df691c09c1.png", + "aggregators": ["CoinGecko", "Rubic", "Squid", "Rango"], + "occurrences": 4 + }, + "0x1b68244b100a6713ca7f540697b1be12148a8bf9": { + "address": "0x1b68244b100a6713ca7f540697b1be12148a8bf9", + "symbol": "YES", + "decimals": 18, + "name": "YES", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x1b68244b100a6713ca7f540697b1be12148a8bf9.png", + "aggregators": ["CoinGecko", "Rubic", "Squid", "Rango"], + "occurrences": 4 + }, + "0xbfefd7a0eda8a0feb06d0f52cf431afd0f9b2dd0": { + "address": "0xbfefd7a0eda8a0feb06d0f52cf431afd0f9b2dd0", + "symbol": "WOKIE", + "decimals": 18, + "name": "Wokie Plumpkin by Virtuals", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xbfefd7a0eda8a0feb06d0f52cf431afd0f9b2dd0.png", + "aggregators": ["CoinGecko", "Rubic", "Squid", "Rango"], + "occurrences": 4 + }, + "0x52d0ac6a76da6e4a5168a60c423f7ff0285534b1": { + "address": "0x52d0ac6a76da6e4a5168a60c423f7ff0285534b1", + "symbol": "GOLDN", + "decimals": 18, + "name": "GOLDN", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x52d0ac6a76da6e4a5168a60c423f7ff0285534b1.png", + "aggregators": ["CoinGecko", "LiFi", "Rubic", "Rango"], + "occurrences": 4 + }, + "0x901f1d2bf312e6fa1716df603df8f86315bcb355": { + "address": "0x901f1d2bf312e6fa1716df603df8f86315bcb355", + "symbol": "LINKS", + "decimals": 18, + "name": "Links", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x901f1d2bf312e6fa1716df603df8f86315bcb355.png", + "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0xf43d7ae57fecda841fd6335eb96b3351c04916cf": { + "address": "0xf43d7ae57fecda841fd6335eb96b3351c04916cf", + "symbol": "LURKY", + "decimals": 18, + "name": "Lurky", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xf43d7ae57fecda841fd6335eb96b3351c04916cf.png", + "aggregators": ["CoinGecko", "Rubic", "Squid", "Rango"], + "occurrences": 4 + }, + "0x7d6fcb3327d7e17095fa8b0e3513ac7a3564f5e1": { + "address": "0x7d6fcb3327d7e17095fa8b0e3513ac7a3564f5e1", + "symbol": "SOLACE", + "decimals": 18, + "name": "Solace by Virtuals", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x7d6fcb3327d7e17095fa8b0e3513ac7a3564f5e1.png", + "aggregators": ["CoinGecko", "Rubic", "Squid", "Rango"], + "occurrences": 4 + }, + "0xb58f9704c7a80d2775222f7cb2eed28beb9a06be": { + "address": "0xb58f9704c7a80d2775222f7cb2eed28beb9a06be", + "symbol": "OMNI", + "decimals": 18, + "name": "Omnis Genesis by Virtuals", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xb58f9704c7a80d2775222f7cb2eed28beb9a06be.png", + "aggregators": ["CoinGecko", "Rubic", "Squid", "Rango"], + "occurrences": 4 + }, + "0xd0924fa4c6ba194294a414d0fb826739ded98b24": { + "address": "0xd0924fa4c6ba194294a414d0fb826739ded98b24", + "symbol": "AIBRK", + "decimals": 18, + "name": "AIBRK by Virtuals", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xd0924fa4c6ba194294a414d0fb826739ded98b24.png", + "aggregators": ["CoinGecko", "Rubic", "Squid", "Rango"], + "occurrences": 4 + }, + "0xb6bdc0f422a901062ecd948c6d0d785acd131ce1": { + "address": "0xb6bdc0f422a901062ecd948c6d0d785acd131ce1", + "symbol": "ELYS", + "decimals": 18, + "name": "Elysionyx by Virtuals", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xb6bdc0f422a901062ecd948c6d0d785acd131ce1.png", + "aggregators": ["CoinGecko", "Rubic", "Squid", "Rango"], + "occurrences": 4 + }, + "0xcd5d8cacd9222075a24f6e80ada93882202fe0f6": { + "address": "0xcd5d8cacd9222075a24f6e80ada93882202fe0f6", + "symbol": "AGENT2025", + "decimals": 18, + "name": "Agent2025", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xcd5d8cacd9222075a24f6e80ada93882202fe0f6.png", + "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0x3e99e0890efd6c15a295edbcce82d63224fd6f60": { + "address": "0x3e99e0890efd6c15a295edbcce82d63224fd6f60", + "symbol": "DXAI", + "decimals": 18, + "name": "DXAI.app by Virtuals", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x3e99e0890efd6c15a295edbcce82d63224fd6f60.png", + "aggregators": ["CoinGecko", "Rubic", "Squid", "Rango"], + "occurrences": 4 + }, + "0xc7c154a93127ad933844fe21b20358397edc0e8c": { + "address": "0xc7c154a93127ad933844fe21b20358397edc0e8c", + "symbol": "EMMA", + "decimals": 18, + "name": "Dr Emma Sage by Virtuals", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xc7c154a93127ad933844fe21b20358397edc0e8c.png", + "aggregators": ["CoinGecko", "Rubic", "Squid", "Rango"], + "occurrences": 4 + }, + "0xa631b9b58615bd6a2d62086e692b19539ac9296d": { + "address": "0xa631b9b58615bd6a2d62086e692b19539ac9296d", + "symbol": "BLUE", + "decimals": 18, + "name": "Blue Coin", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xa631b9b58615bd6a2d62086e692b19539ac9296d.png", + "aggregators": ["CoinGecko", "Socket", "Rubic", "Rango"], + "occurrences": 4 + }, + "0x8c62ac3b71db8c81a764b84ffbc2a8d0bad7f111": { + "address": "0x8c62ac3b71db8c81a764b84ffbc2a8d0bad7f111", + "symbol": "PREME", + "decimals": 18, + "name": "PREME Token", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x8c62ac3b71db8c81a764b84ffbc2a8d0bad7f111.png", + "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0x12e377989a87da0f9b9166f0f875c9069eaa776c": { + "address": "0x12e377989a87da0f9b9166f0f875c9069eaa776c", + "symbol": "CLO", + "decimals": 18, + "name": "Cloudland", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x12e377989a87da0f9b9166f0f875c9069eaa776c.png", + "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0xa66f68ef2d8091e13585a502464bd11a159cf710": { + "address": "0xa66f68ef2d8091e13585a502464bd11a159cf710", + "symbol": "CEO", + "decimals": 18, + "name": "CEO", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xa66f68ef2d8091e13585a502464bd11a159cf710.png", + "aggregators": ["CoinGecko", "Rubic", "Squid", "Rango"], + "occurrences": 4 + }, + "0x2ce1340f1d402ae75afeb55003d7491645db1857": { + "address": "0x2ce1340f1d402ae75afeb55003d7491645db1857", + "symbol": "WAGMI", + "decimals": 18, + "name": "WAGMI by Virtuals", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x2ce1340f1d402ae75afeb55003d7491645db1857.png", + "aggregators": ["CoinGecko", "Rubic", "Squid", "Rango"], + "occurrences": 4 + }, + "0xa1f72459dfa10bad200ac160ecd78c6b77a747be": { + "address": "0xa1f72459dfa10bad200ac160ecd78c6b77a747be", + "symbol": "CLAWNCH", + "decimals": 18, + "name": "CLAWNCH", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xa1f72459dfa10bad200ac160ecd78c6b77a747be.png", + "aggregators": ["CoinGecko", "1inch", "Rubic", "Rango"], + "occurrences": 4 + }, + "0x2e2cc4dfce60257f091980631e75f5c436b71c87": { + "address": "0x2e2cc4dfce60257f091980631e75f5c436b71c87", + "symbol": "GRK", + "decimals": 18, + "name": "Grokster", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x2e2cc4dfce60257f091980631e75f5c436b71c87.png", + "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0x8b12bf09b7c6d73735c6a824f1d74a8b5c1aa5ca": { + "address": "0x8b12bf09b7c6d73735c6a824f1d74a8b5c1aa5ca", + "symbol": "WAV3", + "decimals": 18, + "name": "WAV.3 AGENTIC MUSIC DISCOVERY by Virtuals", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x8b12bf09b7c6d73735c6a824f1d74a8b5c1aa5ca.png", + "aggregators": ["CoinGecko", "Rubic", "Squid", "Rango"], + "occurrences": 4 + }, + "0x2c001233ed5e731b98b15b30267f78c7560b71f2": { + "address": "0x2c001233ed5e731b98b15b30267f78c7560b71f2", + "symbol": "BUBU", + "decimals": 18, + "name": "BUBU", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x2c001233ed5e731b98b15b30267f78c7560b71f2.png", + "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0x10ac13e54218470eed360d13a38c2bbafacb6167": { + "address": "0x10ac13e54218470eed360d13a38c2bbafacb6167", + "symbol": "POLLO", + "decimals": 18, + "name": "Pollo", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x10ac13e54218470eed360d13a38c2bbafacb6167.png", + "aggregators": ["CoinGecko", "Rubic", "Squid", "Rango"], + "occurrences": 4 + }, + "0x62ff28a01abd2484adb18c61f78f30fb2e4a6fdb": { + "address": "0x62ff28a01abd2484adb18c61f78f30fb2e4a6fdb", + "symbol": "$OTTO", + "decimals": 18, + "name": "Otto", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x62ff28a01abd2484adb18c61f78f30fb2e4a6fdb.png", + "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0x9af46f95a0a8be5c2e0a0274a8b153c72d617e85": { + "address": "0x9af46f95a0a8be5c2e0a0274a8b153c72d617e85", + "symbol": "UAPE", + "decimals": 18, + "name": "Wrapped ApeCoin (Universal)", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x9af46f95a0a8be5c2e0a0274a8b153c72d617e85.png", + "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0xe31700c6bd46638d207991fb5cc5c0dad3d1e3da": { + "address": "0xe31700c6bd46638d207991fb5cc5c0dad3d1e3da", + "symbol": "ROO", + "decimals": 18, + "name": "Ratehopper AI", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xe31700c6bd46638d207991fb5cc5c0dad3d1e3da.png", + "aggregators": ["CoinGecko", "Rubic", "Squid", "Rango"], + "occurrences": 4 + }, + "0x89c202e98f41cdeb7b397e35a0882315d2ffc8de": { + "address": "0x89c202e98f41cdeb7b397e35a0882315d2ffc8de", + "symbol": "BTCV", + "decimals": 18, + "name": "Bitcoin On Virtuals", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x89c202e98f41cdeb7b397e35a0882315d2ffc8de.png", + "aggregators": ["CoinGecko", "Rubic", "Squid", "Rango"], + "occurrences": 4 + }, + "0x278c77baa80a70f886484af5ee09a87e8f086ae9": { + "address": "0x278c77baa80a70f886484af5ee09a87e8f086ae9", + "symbol": "SNEK", + "decimals": 18, + "name": "BASED SNEK", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x278c77baa80a70f886484af5ee09a87e8f086ae9.png", + "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0x3b53604113b5677291bfc0bc255379e7a796559b": { + "address": "0x3b53604113b5677291bfc0bc255379e7a796559b", + "symbol": "ASM", + "decimals": 18, + "name": "ASM", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x3b53604113b5677291bfc0bc255379e7a796559b.png", + "aggregators": ["CoinGecko", "LiFi", "Rubic", "Rango"], + "occurrences": 4 + }, + "0x739f93504a9e26d5973862dbc4a44178cc264852": { + "address": "0x739f93504a9e26d5973862dbc4a44178cc264852", + "symbol": "LMY", + "decimals": 18, + "name": "Locked Money", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x739f93504a9e26d5973862dbc4a44178cc264852.png", + "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0xf5f2a79eeccf6e7f4c570c803f529930e29cc96b": { + "address": "0xf5f2a79eeccf6e7f4c570c803f529930e29cc96b", + "symbol": "CERTAI", + "decimals": 18, + "name": "CertaiK by Virtuals", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xf5f2a79eeccf6e7f4c570c803f529930e29cc96b.png", + "aggregators": ["CoinGecko", "Rubic", "Squid", "Rango"], + "occurrences": 4 + }, + "0x5f6a682a58854c7fbe228712aeeffccde0008ac0": { + "address": "0x5f6a682a58854c7fbe228712aeeffccde0008ac0", + "symbol": "SHEKEL", + "decimals": 18, + "name": "Rabbi Schlomo by Virtuals", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x5f6a682a58854c7fbe228712aeeffccde0008ac0.png", + "aggregators": ["CoinGecko", "Rubic", "Squid", "Sonarwatch"], + "occurrences": 4 + }, + "0x17d70172c7c4205bd39ce80f7f0ee660b7dc5a23": { + "address": "0x17d70172c7c4205bd39ce80f7f0ee660b7dc5a23", + "symbol": "DIME", + "decimals": 18, + "name": "Dimes", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x17d70172c7c4205bd39ce80f7f0ee660b7dc5a23.png", + "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0xebcda5b80f62dd4dd2a96357b42bb6facbf30267": { + "address": "0xebcda5b80f62dd4dd2a96357b42bb6facbf30267", + "symbol": "ABX", + "decimals": 18, + "name": "Alpha Base Index", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xebcda5b80f62dd4dd2a96357b42bb6facbf30267.png", + "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0xff45161474c39cb00699070dd49582e417b57a7e": { + "address": "0xff45161474c39cb00699070dd49582e417b57a7e", + "symbol": "MT", + "decimals": 18, + "name": "Mint Token", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xff45161474c39cb00699070dd49582e417b57a7e.png", + "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0x8ac984f596bac8197859434ecbab3e4595d7bb06": { + "address": "0x8ac984f596bac8197859434ecbab3e4595d7bb06", + "symbol": "BIZ", + "decimals": 18, + "name": "Bizzy by Virtuals", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x8ac984f596bac8197859434ecbab3e4595d7bb06.png", + "aggregators": ["CoinGecko", "Rubic", "Squid", "Rango"], + "occurrences": 4 + }, + "0x02d4f76656c2b4f58430e91f8ac74896c9281cb9": { + "address": "0x02d4f76656c2b4f58430e91f8ac74896c9281cb9", + "symbol": "AIP", + "decimals": 18, + "name": "PettAI", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x02d4f76656c2b4f58430e91f8ac74896c9281cb9.png", + "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0x03daca2c2e55b03ff1d0d81f099c8900ed7f1dab": { + "address": "0x03daca2c2e55b03ff1d0d81f099c8900ed7f1dab", + "symbol": "FYI", + "decimals": 18, + "name": "Flagship by Virtuals", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x03daca2c2e55b03ff1d0d81f099c8900ed7f1dab.png", + "aggregators": ["CoinGecko", "Rubic", "Squid", "Rango"], + "occurrences": 4 + }, + "0xcc9ad02796dec5f4f0710df80c1f011af85eb9e1": { + "address": "0xcc9ad02796dec5f4f0710df80c1f011af85eb9e1", + "symbol": "WACH", + "decimals": 18, + "name": "WachXBT by Virtuals", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xcc9ad02796dec5f4f0710df80c1f011af85eb9e1.png", + "aggregators": ["CoinGecko", "Rubic", "Squid", "Rango"], + "occurrences": 4 + }, + "0x25e0a7767d03461eaf88b47cd9853722fe05dfd3": { + "address": "0x25e0a7767d03461eaf88b47cd9853722fe05dfd3", + "symbol": "SCI", + "decimals": 18, + "name": "PoSciDonDAO Token", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x25e0a7767d03461eaf88b47cd9853722fe05dfd3.png", + "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0x511ef9ad5e645e533d15df605b4628e3d0d0ff53": { + "address": "0x511ef9ad5e645e533d15df605b4628e3d0d0ff53", + "symbol": "VU", + "decimals": 18, + "name": "Velvet Unicorn by Virtuals", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x511ef9ad5e645e533d15df605b4628e3d0d0ff53.png", + "aggregators": ["CoinGecko", "Rubic", "Squid", "Rango"], + "occurrences": 4 + }, + "0xd758916365b361cf833bb9c4c465ecd501ddd984": { + "address": "0xd758916365b361cf833bb9c4c465ecd501ddd984", + "symbol": "TOKEN", + "decimals": 18, + "name": "Token.com", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xd758916365b361cf833bb9c4c465ecd501ddd984.png", + "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0x667d0fb35364b0711b8566bee4dc3d0f96d6a688": { + "address": "0x667d0fb35364b0711b8566bee4dc3d0f96d6a688", + "symbol": "S", + "decimals": 18, + "name": "Token S", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x667d0fb35364b0711b8566bee4dc3d0f96d6a688.png", + "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0x3489256febdb1dc930dc3743617ad387cd6d3568": { + "address": "0x3489256febdb1dc930dc3743617ad387cd6d3568", + "symbol": "GAI", + "decimals": 18, + "name": "GraphAI", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x3489256febdb1dc930dc3743617ad387cd6d3568.png", + "aggregators": ["CoinGecko", "LiFi", "Rubic", "Rango"], + "occurrences": 4 + }, + "0x95ff646bcf1603ca78ad1619ddcfef1a228c0366": { + "address": "0x95ff646bcf1603ca78ad1619ddcfef1a228c0366", + "symbol": "NICO", + "decimals": 18, + "name": "Nico", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x95ff646bcf1603ca78ad1619ddcfef1a228c0366.png", + "aggregators": ["CoinGecko", "Rubic", "Squid", "Rango"], + "occurrences": 4 + }, + "0xe62bfbe57763ec24c0f130426f34dbce11fc5b06": { + "address": "0xe62bfbe57763ec24c0f130426f34dbce11fc5b06", + "symbol": "TITN", + "decimals": 18, + "name": "Titan", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xe62bfbe57763ec24c0f130426f34dbce11fc5b06.png", + "aggregators": ["CoinGecko", "1inch", "LiFi", "Rubic"], + "occurrences": 4 + }, + "0x517dbb32270fb39ae303e8ce94163f5beb9c3edb": { + "address": "0x517dbb32270fb39ae303e8ce94163f5beb9c3edb", + "symbol": "QOIN", + "decimals": 18, + "name": "ED TORQ", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x517dbb32270fb39ae303e8ce94163f5beb9c3edb.png", + "aggregators": ["CoinGecko", "Rubic", "Squid", "Rango"], + "occurrences": 4 + }, + "0x0382e3fee4a420bd446367d468a6f00225853420": { + "address": "0x0382e3fee4a420bd446367d468a6f00225853420", + "symbol": "CFI", + "decimals": 18, + "name": "ConsumerFi Protocol", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x0382e3fee4a420bd446367d468a6f00225853420.png", + "aggregators": ["CoinGecko", "LiFi", "Rubic", "Rango"], + "occurrences": 4 + }, + "0x7588880d9c78e81fade7b7e8dc0781e95995a792": { + "address": "0x7588880d9c78e81fade7b7e8dc0781e95995a792", + "symbol": "SAINT", + "decimals": 18, + "name": "Satoshi AI agent by Virtuals", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x7588880d9c78e81fade7b7e8dc0781e95995a792.png", + "aggregators": ["CoinGecko", "Rubic", "Squid", "Rango"], + "occurrences": 4 + }, + "0x04bc5918a08a526653e83420044b1a26ff34863b": { + "address": "0x04bc5918a08a526653e83420044b1a26ff34863b", + "symbol": "SDT", + "decimals": 18, + "name": "SkyNity SkyDust", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x04bc5918a08a526653e83420044b1a26ff34863b.png", + "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0x6a72d3a87f97a0fee2c2ee4233bdaebc32813d7a": { + "address": "0x6a72d3a87f97a0fee2c2ee4233bdaebc32813d7a", + "symbol": "ESX", + "decimals": 9, + "name": "EstateX", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x6a72d3a87f97a0fee2c2ee4233bdaebc32813d7a.png", + "aggregators": ["CoinGecko", "LiFi", "Rubic", "Rango"], + "occurrences": 4 + }, + "0x00000e7efa313f4e11bfff432471ed9423ac6b30": { + "address": "0x00000e7efa313f4e11bfff432471ed9423ac6b30", + "symbol": "HYDX", + "decimals": 18, + "name": "Hydrex", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x00000e7efa313f4e11bfff432471ed9423ac6b30.png", + "aggregators": ["CoinGecko", "LiFi", "Rubic", "Rango"], + "occurrences": 4 + }, + "0x64712fbdf19ae8b5b3b6d0478750e3d5e1a17718": { + "address": "0x64712fbdf19ae8b5b3b6d0478750e3d5e1a17718", + "symbol": "WAVE", + "decimals": 18, + "name": "Waveform by Virtuals", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x64712fbdf19ae8b5b3b6d0478750e3d5e1a17718.png", + "aggregators": ["CoinGecko", "Rubic", "Squid", "Rango"], + "occurrences": 4 + }, + "0xa7e4509dcb46a67e73c18fe0d11dd9a337e52ac0": { + "address": "0xa7e4509dcb46a67e73c18fe0d11dd9a337e52ac0", + "symbol": "FREN", + "decimals": 18, + "name": "Frencoin", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xa7e4509dcb46a67e73c18fe0d11dd9a337e52ac0.png", + "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0x03ceac3c28e353f5e4626c1242a6c7a41d004354": { + "address": "0x03ceac3c28e353f5e4626c1242a6c7a41d004354", + "symbol": "$BYTE", + "decimals": 18, + "name": "BYTE", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x03ceac3c28e353f5e4626c1242a6c7a41d004354.png", + "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0x4b5d32a07b8d3ec5d6928caa30196f8dd6a7c5a9": { + "address": "0x4b5d32a07b8d3ec5d6928caa30196f8dd6a7c5a9", + "symbol": "PRXVT", + "decimals": 18, + "name": "PRXVT by Virtuals", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x4b5d32a07b8d3ec5d6928caa30196f8dd6a7c5a9.png", + "aggregators": ["CoinGecko", "Rubic", "Squid", "Rango"], + "occurrences": 4 + }, + "0x7ce02e86354ea0cc3b302aeadc0ab56bc7eb44b8": { + "address": "0x7ce02e86354ea0cc3b302aeadc0ab56bc7eb44b8", + "symbol": "SIRE", + "decimals": 18, + "name": "SIRE", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x7ce02e86354ea0cc3b302aeadc0ab56bc7eb44b8.png", + "aggregators": ["CoinGecko", "LiFi", "Rubic", "Rango"], + "occurrences": 4 + }, + "0x44e1c6bc3a4d2058ee3f290bcb27c4da8c5b2e3e": { + "address": "0x44e1c6bc3a4d2058ee3f290bcb27c4da8c5b2e3e", + "symbol": "PEAGUY", + "decimals": 18, + "name": "The Pea Guy by Virtuals", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x44e1c6bc3a4d2058ee3f290bcb27c4da8c5b2e3e.png", + "aggregators": ["CoinGecko", "Rubic", "Squid", "Rango"], + "occurrences": 4 + }, + "0x3b313f5615bbd6b200c71f84ec2f677b94df8674": { + "address": "0x3b313f5615bbd6b200c71f84ec2f677b94df8674", + "symbol": "GLORIA", + "decimals": 18, + "name": "Gloria by Virtuals", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x3b313f5615bbd6b200c71f84ec2f677b94df8674.png", + "aggregators": ["CoinGecko", "Rubic", "Squid", "Rango"], + "occurrences": 4 + }, + "0x20fd4c5396f7d9686f9997e0f10991957f7112fc": { + "address": "0x20fd4c5396f7d9686f9997e0f10991957f7112fc", + "symbol": "GDUPI", + "decimals": 18, + "name": "redacted gdupi", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x20fd4c5396f7d9686f9997e0f10991957f7112fc.png", + "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0x08df470d41c11ba5cb60242747d76c65ca52c94c": { + "address": "0x08df470d41c11ba5cb60242747d76c65ca52c94c", + "symbol": "CPHY", + "decimals": 18, + "name": "Cypher Tempre by Virtuals", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x08df470d41c11ba5cb60242747d76c65ca52c94c.png", + "aggregators": ["CoinGecko", "Rubic", "Squid", "Rango"], + "occurrences": 4 + }, + "0xd1ab275e0b9798ae324c79c7133def6631426a2c": { + "address": "0xd1ab275e0b9798ae324c79c7133def6631426a2c", + "symbol": "ZOOF", + "decimals": 18, + "name": "Zoof Wallet by Virtuals", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xd1ab275e0b9798ae324c79c7133def6631426a2c.png", + "aggregators": ["CoinGecko", "Rubic", "Squid", "Rango"], + "occurrences": 4 + }, + "0xa749de6c28262b7ffbc5de27dc845dd7ecd2b358": { + "address": "0xa749de6c28262b7ffbc5de27dc845dd7ecd2b358", + "symbol": "VFY", + "decimals": 18, + "name": "zkVerify", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xa749de6c28262b7ffbc5de27dc845dd7ecd2b358.png", + "aggregators": ["CoinGecko", "LiFi", "Rubic", "Rango"], + "occurrences": 4 + }, + "0xaf4c1405aa8ab2a4f267a9700f9230ddc592f63f": { + "address": "0xaf4c1405aa8ab2a4f267a9700f9230ddc592f63f", + "symbol": "ZYGO", + "decimals": 18, + "name": "Zygo The Frog", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xaf4c1405aa8ab2a4f267a9700f9230ddc592f63f.png", + "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0xe0152db15014349d085985e879446bcae5d53094": { + "address": "0xe0152db15014349d085985e879446bcae5d53094", + "symbol": "SPX6900", + "decimals": 18, + "name": "Based SPX6900", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xe0152db15014349d085985e879446bcae5d53094.png", + "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0xf878e27afb649744eec3c5c0d03bc9335703cfe3": { + "address": "0xf878e27afb649744eec3c5c0d03bc9335703cfe3", + "symbol": "EOLAS", + "decimals": 18, + "name": "Eolas ☴", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xf878e27afb649744eec3c5c0d03bc9335703cfe3.png", + "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0x4b12507e171970b3acd48edfeb5bd1c676e61280": { + "address": "0x4b12507e171970b3acd48edfeb5bd1c676e61280", + "symbol": "IVT", + "decimals": 18, + "name": "ivault", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x4b12507e171970b3acd48edfeb5bd1c676e61280.png", + "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0xd769d56f479e9e72a77bb1523e866a33098feec5": { + "address": "0xd769d56f479e9e72a77bb1523e866a33098feec5", + "symbol": "BASE IS FOR EVERYONE", + "decimals": 18, + "name": "Base is for everyone", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xd769d56f479e9e72a77bb1523e866a33098feec5.png", + "aggregators": ["CoinGecko", "1inch", "Rubic", "Rango"], + "occurrences": 4 + }, + "0x8a0e751e5d7a2861ca7cf16d9720337e40604982": { + "address": "0x8a0e751e5d7a2861ca7cf16d9720337e40604982", + "symbol": "ENG", + "decimals": 18, + "name": "Eggle Energy", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x8a0e751e5d7a2861ca7cf16d9720337e40604982.png", + "aggregators": ["CoinGecko", "LiFi", "Rubic", "Rango"], + "occurrences": 4 + }, + "0x2e6c4bd1c947e195645d2b920b827498cfaa6766": { + "address": "0x2e6c4bd1c947e195645d2b920b827498cfaa6766", + "symbol": "CGN", + "decimals": 18, + "name": "CYGNUS", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x2e6c4bd1c947e195645d2b920b827498cfaa6766.png", + "aggregators": ["CoinGecko", "LiFi", "Rubic", "Rango"], + "occurrences": 4 + }, + "0x4c87da04887a1f9f21f777e3a8dd55c3c9f84701": { + "address": "0x4c87da04887a1f9f21f777e3a8dd55c3c9f84701", + "symbol": "COMMON", + "decimals": 18, + "name": "COMMON", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x4c87da04887a1f9f21f777e3a8dd55c3c9f84701.png", + "aggregators": ["CoinGecko", "LiFi", "Rubic", "Rango"], + "occurrences": 4 + }, + "0xb1a1d8cb266a7a4f6e070a7d2e026c5c02e788da": { + "address": "0xb1a1d8cb266a7a4f6e070a7d2e026c5c02e788da", + "symbol": "NEOX", + "decimals": 18, + "name": "Neox", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xb1a1d8cb266a7a4f6e070a7d2e026c5c02e788da.png", + "aggregators": ["CoinGecko", "Rubic", "Squid", "Rango"], + "occurrences": 4 + }, + "0x98ac5b33a4ef1151f138941c979211599c2ff953": { + "address": "0x98ac5b33a4ef1151f138941c979211599c2ff953", + "symbol": "VPAY", + "decimals": 18, + "name": "VPay", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x98ac5b33a4ef1151f138941c979211599c2ff953.png", + "aggregators": ["CoinGecko", "LiFi", "Rubic", "Squid"], + "occurrences": 4 + }, + "0x6967f0974d76d34e140cae27efea32cdf546b58e": { + "address": "0x6967f0974d76d34e140cae27efea32cdf546b58e", + "symbol": "GMRT", + "decimals": 18, + "name": "The Game Company", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x6967f0974d76d34e140cae27efea32cdf546b58e.png", + "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0xa81a52b4dda010896cdd386c7fbdc5cdc835ba23": { + "address": "0xa81a52b4dda010896cdd386c7fbdc5cdc835ba23", + "symbol": "TRAC", + "decimals": 18, + "name": "Trace Token", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xa81a52b4dda010896cdd386c7fbdc5cdc835ba23.png", + "aggregators": ["CoinGecko", "Socket", "Rubic", "Rango"], + "occurrences": 4 + }, + "0xefc2689d3e79252fba37e889a1b5ad92cedc6e4f": { + "address": "0xefc2689d3e79252fba37e889a1b5ad92cedc6e4f", + "symbol": "VEE", + "decimals": 18, + "name": "VEE", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xefc2689d3e79252fba37e889a1b5ad92cedc6e4f.png", + "aggregators": ["CoinGecko", "Socket", "Rubic", "Rango"], + "occurrences": 4 + }, + "0xc61f9663e05fccd84d4d6c56a373093437ecb899": { + "address": "0xc61f9663e05fccd84d4d6c56a373093437ecb899", + "symbol": "RARI", + "decimals": 18, + "name": "Rarible", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xc61f9663e05fccd84d4d6c56a373093437ecb899.png", + "aggregators": ["CoinGecko", "LiFi", "Rubic", "Rango"], + "occurrences": 4 + }, + "0x102d758f688a4c1c5a80b116bd945d4455460282": { + "address": "0x102d758f688a4c1c5a80b116bd945d4455460282", + "symbol": "USD₮0", + "decimals": 6, + "name": "Stargate USD₮0 (Bridged)", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x102d758f688a4c1c5a80b116bd945d4455460282.png", + "aggregators": ["CoinGecko", "LiFi", "Rubic", "Rango"], + "occurrences": 4 + }, + "0xa4ff56ef7ef4a2cad03cfa130208c9bc1b45d293": { + "address": "0xa4ff56ef7ef4a2cad03cfa130208c9bc1b45d293", + "symbol": "SAUCE", + "decimals": 6, + "name": "SAUCE", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xa4ff56ef7ef4a2cad03cfa130208c9bc1b45d293.png", + "aggregators": ["CoinGecko", "Rubic", "Squid", "Rango"], + "occurrences": 4 + }, + "0x519d3443cacc61bd844546edaea48e5502021802": { + "address": "0x519d3443cacc61bd844546edaea48e5502021802", + "symbol": "LL", + "decimals": 18, + "name": "LL", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x519d3443cacc61bd844546edaea48e5502021802.png", + "aggregators": ["CoinGecko", "Socket", "Rubic", "Rango"], + "occurrences": 4 + }, + "0x02300ac24838570012027e0a90d3feccef3c51d2": { + "address": "0x02300ac24838570012027e0a90d3feccef3c51d2", + "symbol": "FOOM", + "decimals": 18, + "name": "Foom", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x02300ac24838570012027e0a90d3feccef3c51d2.png", + "aggregators": ["CoinGecko", "Rubic", "Squid", "Rango"], + "occurrences": 4 + }, + "0x47636b3188774a3e7273d85a537b9ba4ee7b2535": { + "address": "0x47636b3188774a3e7273d85a537b9ba4ee7b2535", + "symbol": "SOMI", + "decimals": 18, + "name": "Somnia", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x47636b3188774a3e7273d85a537b9ba4ee7b2535.png", + "aggregators": ["Metamask", "LiFi", "Rubic", "Rango"], + "occurrences": 4 + }, + "0x4e107a0000db66f0e9fd2039288bf811dd1f9c74": { + "address": "0x4e107a0000db66f0e9fd2039288bf811dd1f9c74", + "symbol": "VLR", + "decimals": 18, + "name": "VLR", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x4e107a0000db66f0e9fd2039288bf811dd1f9c74.png", + "aggregators": ["CoinGecko", "LiFi", "Rubic", "Rango"], + "occurrences": 4 + }, + "0xfab99fcf605fd8f4593edb70a43ba56542777777": { + "address": "0xfab99fcf605fd8f4593edb70a43ba56542777777", + "symbol": "ZBT", + "decimals": 18, + "name": "ZBT", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xfab99fcf605fd8f4593edb70a43ba56542777777.png", + "aggregators": ["CoinGecko", "LiFi", "Rubic", "Rango"], + "occurrences": 4 + }, + "0x6b34d1c35689dba179c2eddf6a01530bbb1d28a8": { + "address": "0x6b34d1c35689dba179c2eddf6a01530bbb1d28a8", + "symbol": "CVAI", + "decimals": 18, + "name": "Agentlauncher", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x6b34d1c35689dba179c2eddf6a01530bbb1d28a8.png", + "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0xd6122ddada244913521f3d62006eaf756c157660": { + "address": "0xd6122ddada244913521f3d62006eaf756c157660", + "symbol": "BR", + "decimals": 18, + "name": "BR", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xd6122ddada244913521f3d62006eaf756c157660.png", + "aggregators": ["CoinGecko", "LiFi", "Rubic", "Rango"], + "occurrences": 4 + }, + "0x7543e3829ecdd61a5fd7c187ff88c4cf46e30f73": { + "address": "0x7543e3829ecdd61a5fd7c187ff88c4cf46e30f73", + "symbol": "ASF", + "decimals": 18, + "name": "ASF", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x7543e3829ecdd61a5fd7c187ff88c4cf46e30f73.png", + "aggregators": ["CoinGecko", "Socket", "Rubic", "Rango"], + "occurrences": 4 + }, + "0x93402f62aeda632b9d768092b61887c4e9a13079": { + "address": "0x93402f62aeda632b9d768092b61887c4e9a13079", + "symbol": "VERTAI", + "decimals": 18, + "name": "VERTAI", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x93402f62aeda632b9d768092b61887c4e9a13079.png", + "aggregators": ["CoinGecko", "LiFi", "Rubic", "Rango"], + "occurrences": 4 + }, + "0xb69bbb15095c0949489fbb43951d2b750fa7fa89": { + "address": "0xb69bbb15095c0949489fbb43951d2b750fa7fa89", + "symbol": "DEXTF", + "decimals": 18, + "name": "Memento", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xb69bbb15095c0949489fbb43951d2b750fa7fa89.png", + "aggregators": ["CoinGecko", "LiFi", "Rubic", "Rango"], + "occurrences": 4 + }, + "0xd080ed3c74a20250a2c9821885203034acd2d5ae": { + "address": "0xd080ed3c74a20250a2c9821885203034acd2d5ae", + "symbol": "ZFI", + "decimals": 18, + "name": "ZyFAI", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xd080ed3c74a20250a2c9821885203034acd2d5ae.png", + "aggregators": ["CoinGecko", "LiFi", "Rubic", "Rango"], + "occurrences": 4 + }, + "0x407a5fb66cb1b3d50004f7091c08a27b42ba6d6f": { + "address": "0x407a5fb66cb1b3d50004f7091c08a27b42ba6d6f", + "symbol": "ROBO", + "decimals": 18, + "name": "Fabric Protocol", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x407a5fb66cb1b3d50004f7091c08a27b42ba6d6f.png", + "aggregators": ["CoinGecko", "Rubic", "Squid", "Rango"], + "occurrences": 4 + }, + "0x00f3c42833c3170159af4e92dbb451fb3f708917": { + "address": "0x00f3c42833c3170159af4e92dbb451fb3f708917", + "symbol": "ICP", + "decimals": 8, + "name": "ICP", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x00f3c42833c3170159af4e92dbb451fb3f708917.png", + "aggregators": ["CoinGecko", "LiFi", "Rubic", "Rango"], + "occurrences": 4 + }, + "0x3376ebca0a85fc8d791b1001a571c41fdd61514a": { + "address": "0x3376ebca0a85fc8d791b1001a571c41fdd61514a", + "symbol": "BRBTC", + "decimals": 8, + "name": "BRBTC", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x3376ebca0a85fc8d791b1001a571c41fdd61514a.png", + "aggregators": ["CoinGecko", "LiFi", "Rubic", "Rango"], + "occurrences": 4 + }, + "0x45e4e92f5a94f4b741c9cb553ff8be7b25eb7df5": { + "address": "0x45e4e92f5a94f4b741c9cb553ff8be7b25eb7df5", + "symbol": "AITV", + "decimals": 18, + "name": "AITV", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x45e4e92f5a94f4b741c9cb553ff8be7b25eb7df5.png", + "aggregators": ["CoinGecko", "LiFi", "Rubic", "Rango"], + "occurrences": 4 + }, + "0x8102b2864eade51a1c36497747132af689824b59": { + "address": "0x8102b2864eade51a1c36497747132af689824b59", + "symbol": "DOLZ", + "decimals": 18, + "name": "DOLZ.io", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x8102b2864eade51a1c36497747132af689824b59.png", + "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0xe290816384416fb1db9225e176b716346db9f9fe": { + "address": "0xe290816384416fb1db9225e176b716346db9f9fe", + "symbol": "9MM", + "decimals": 18, + "name": "9mm", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xe290816384416fb1db9225e176b716346db9f9fe.png", + "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0x660975730059246a68521a3e2fbd4740173100f5": { + "address": "0x660975730059246a68521a3e2fbd4740173100f5", + "symbol": "SYRUPUSDC", + "decimals": 6, + "name": "SYRUPUSDC", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x660975730059246a68521a3e2fbd4740173100f5.png", + "aggregators": ["CoinGecko", "LiFi", "Rubic", "Rango"], + "occurrences": 4 + }, + "0x53cb59d32a8d08fc6d3f81454f150946a028a44d": { + "address": "0x53cb59d32a8d08fc6d3f81454f150946a028a44d", + "symbol": "GDEX", + "decimals": 18, + "name": "DexFi Governance", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x53cb59d32a8d08fc6d3f81454f150946a028a44d.png", + "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0xc694a91e6b071bf030a18bd3053a7fe09b6dae69": { + "address": "0xc694a91e6b071bf030a18bd3053a7fe09b6dae69", + "symbol": "COW", + "decimals": 18, + "name": "COW", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xc694a91e6b071bf030a18bd3053a7fe09b6dae69.png", + "aggregators": ["CoinGecko", "LiFi", "Rubic", "Rango"], + "occurrences": 4 + }, + "0x11a2021368f518fa390d20308076b25c57292e83": { + "address": "0x11a2021368f518fa390d20308076b25c57292e83", + "symbol": "HSAI", + "decimals": 18, + "name": "HealthSci.AI", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x11a2021368f518fa390d20308076b25c57292e83.png", + "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0xdd468a1ddc392dcdbef6db6e34e89aa338f9f186": { + "address": "0xdd468a1ddc392dcdbef6db6e34e89aa338f9f186", + "symbol": "MUSD", + "decimals": 18, + "name": "Mezo USD", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xdd468a1ddc392dcdbef6db6e34e89aa338f9f186.png", + "aggregators": ["CoinGecko", "LiFi", "Rubic", "Rango"], + "occurrences": 4 + }, + "0x9b9fd410d5f01a6a60acf4678a5a99d8027fa5a7": { + "address": "0x9b9fd410d5f01a6a60acf4678a5a99d8027fa5a7", + "symbol": "MYTH", + "decimals": 18, + "name": "MYTH", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x9b9fd410d5f01a6a60acf4678a5a99d8027fa5a7.png", + "aggregators": ["CoinGecko", "LiFi", "Rubic", "Rango"], + "occurrences": 4 + }, + "0x4552fa6b0d21b1b135ffa2a573a568d58300b5a9": { + "address": "0x4552fa6b0d21b1b135ffa2a573a568d58300b5a9", + "symbol": "SANCHO", + "decimals": 18, + "name": "Sancho", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x4552fa6b0d21b1b135ffa2a573a568d58300b5a9.png", + "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0x1fca74d9ef54a6ac80ffe7d3b14e76c4330fd5d8": { + "address": "0x1fca74d9ef54a6ac80ffe7d3b14e76c4330fd5d8", + "symbol": "VCHF", + "decimals": 18, + "name": "VCHF", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x1fca74d9ef54a6ac80ffe7d3b14e76c4330fd5d8.png", + "aggregators": ["CoinGecko", "LiFi", "Rubic", "Rango"], + "occurrences": 4 + }, + "0x7002987e5f63716273e77b51e12a578143c222aa": { + "address": "0x7002987e5f63716273e77b51e12a578143c222aa", + "symbol": "HAI", + "decimals": 18, + "name": "HAI", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x7002987e5f63716273e77b51e12a578143c222aa.png", + "aggregators": ["CoinGecko", "Socket", "Rubic", "Rango"], + "occurrences": 4 + }, + "0x16a3832e690278d4979fd072fa4913bd1e8cbfd8": { + "address": "0x16a3832e690278d4979fd072fa4913bd1e8cbfd8", + "symbol": "GPU", + "decimals": 18, + "name": "GPU", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x16a3832e690278d4979fd072fa4913bd1e8cbfd8.png", + "aggregators": ["CoinGecko", "LiFi", "Rubic", "Rango"], + "occurrences": 4 + }, + "0x70654aad8b7734dc319d0c3608ec7b32e03fa162": { + "address": "0x70654aad8b7734dc319d0c3608ec7b32e03fa162", + "symbol": "SATUSD", + "decimals": 18, + "name": "SATUSD", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x70654aad8b7734dc319d0c3608ec7b32e03fa162.png", + "aggregators": ["CoinGecko", "LiFi", "Rubic", "Rango"], + "occurrences": 4 + }, + "0x4933a85b5b5466fbaf179f72d3de273c287ec2c2": { + "address": "0x4933a85b5b5466fbaf179f72d3de273c287ec2c2", + "symbol": "EURAU", + "decimals": 6, + "name": "EURAU", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x4933a85b5b5466fbaf179f72d3de273c287ec2c2.png", + "aggregators": ["CoinGecko", "LiFi", "Rubic", "Rango"], + "occurrences": 4 + }, + "0x6722f882cc3a1b1034893efa9764397c88897892": { + "address": "0x6722f882cc3a1b1034893efa9764397c88897892", + "symbol": "STABUL", + "decimals": 18, + "name": "Stabull Finance", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x6722f882cc3a1b1034893efa9764397c88897892.png", + "aggregators": ["CoinGecko", "LiFi", "Rubic", "Rango"], + "occurrences": 4 + }, + "0xe4880249745eac5f1ed9d8f7df844792d560e750": { + "address": "0xe4880249745eac5f1ed9d8f7df844792d560e750", + "symbol": "USTBL", + "decimals": 5, + "name": "USTBL", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xe4880249745eac5f1ed9d8f7df844792d560e750.png", + "aggregators": ["CoinGecko", "LiFi", "Rubic", "Rango"], + "occurrences": 4 + }, + "0x0ceac003b0d2479bebec9f4b2ebad0a803759bbf": { + "address": "0x0ceac003b0d2479bebec9f4b2ebad0a803759bbf", + "symbol": "WFRAX", + "decimals": 18, + "name": "WFRAX", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x0ceac003b0d2479bebec9f4b2ebad0a803759bbf.png", + "aggregators": ["CoinGecko", "Socket", "Rubic", "Rango"], + "occurrences": 4 + }, + "0x66e535e8d2ebf13f49f3d49e5c50395a97c137b1": { + "address": "0x66e535e8d2ebf13f49f3d49e5c50395a97c137b1", + "symbol": "MOLTEN", + "decimals": 18, + "name": "Molten", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x66e535e8d2ebf13f49f3d49e5c50395a97c137b1.png", + "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0x3568c7a4f7545805e379c264303239781b4e9a79": { + "address": "0x3568c7a4f7545805e379c264303239781b4e9a79", + "symbol": "NEURON", + "decimals": 18, + "name": "Cerebrum DAO Token", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x3568c7a4f7545805e379c264303239781b4e9a79.png", + "aggregators": ["CoinGecko", "Socket", "Rubic", "Rango"], + "occurrences": 4 + }, + "0x93919784c523f39cacaa98ee0a9d96c3f32b593e": { + "address": "0x93919784c523f39cacaa98ee0a9d96c3f32b593e", + "symbol": "UNIBTC", + "decimals": 8, + "name": "UNIBTC", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x93919784c523f39cacaa98ee0a9d96c3f32b593e.png", + "aggregators": ["CoinGecko", "LiFi", "Rubic", "Rango"], + "occurrences": 4 + }, + "0xd4dd9e2f021bb459d5a5f6c24c12fe09c5d45553": { + "address": "0xd4dd9e2f021bb459d5a5f6c24c12fe09c5d45553", + "symbol": "ZCHF", + "decimals": 18, + "name": "ZCHF", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xd4dd9e2f021bb459d5a5f6c24c12fe09c5d45553.png", + "aggregators": ["CoinGecko", "LiFi", "Rubic", "Rango"], + "occurrences": 4 + }, + "0xa0769f7a8fc65e47de93797b4e21c073c117fc80": { + "address": "0xa0769f7a8fc65e47de93797b4e21c073c117fc80", + "symbol": "EUTBL", + "decimals": 5, + "name": "EUTBL", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xa0769f7a8fc65e47de93797b4e21c073c117fc80.png", + "aggregators": ["CoinGecko", "LiFi", "Rubic", "Rango"], + "occurrences": 4 + }, + "0xa7921e4c3dc8e38069061a07c08fc0d2a35b9e6f": { + "address": "0xa7921e4c3dc8e38069061a07c08fc0d2a35b9e6f", + "symbol": "ZED", + "decimals": 18, + "name": "ZED Token", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xa7921e4c3dc8e38069061a07c08fc0d2a35b9e6f.png", + "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0xd1db4851bcf5b41442caa32025ce0afe6b8eabc2": { + "address": "0xd1db4851bcf5b41442caa32025ce0afe6b8eabc2", + "symbol": "ZOOMER", + "decimals": 18, + "name": "Zoomer", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xd1db4851bcf5b41442caa32025ce0afe6b8eabc2.png", + "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0xa2c22252cdc8b7cddee1b0b2e242818509fcf7b8": { + "address": "0xa2c22252cdc8b7cddee1b0b2e242818509fcf7b8", + "symbol": "SXT", + "decimals": 18, + "name": "Space and Time", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xa2c22252cdc8b7cddee1b0b2e242818509fcf7b8.png", + "aggregators": ["CoinGecko", "LiFi", "Rubic", "Rango"], + "occurrences": 4 + }, + "0x2c271ddf484ac0386d216eb7eb9ff02d4dc0f6aa": { + "address": "0x2c271ddf484ac0386d216eb7eb9ff02d4dc0f6aa", + "symbol": "APYUSD", + "decimals": 18, + "name": "apyUSD", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x2c271ddf484ac0386d216eb7eb9ff02d4dc0f6aa.png", + "aggregators": ["CoinGecko", "LiFi", "Rubic", "Rango"], + "occurrences": 4 + }, + "0x2a66d51407b84b82b5aff3dec4d49f72cbcd322a": { + "address": "0x2a66d51407b84b82b5aff3dec4d49f72cbcd322a", + "symbol": "BEAM", + "decimals": 18, + "name": "BEAM", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x2a66d51407b84b82b5aff3dec4d49f72cbcd322a.png", + "aggregators": ["CoinGecko", "LiFi", "Rubic", "Rango"], + "occurrences": 4 + }, + "0x138746adfa52909e5920def027f5a8dc1c7effb6": { + "address": "0x138746adfa52909e5920def027f5a8dc1c7effb6", + "symbol": "ARIO", + "decimals": 6, + "name": "ARIO", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x138746adfa52909e5920def027f5a8dc1c7effb6.png", + "aggregators": ["CoinGecko", "LiFi", "Rubic", "Rango"], + "occurrences": 4 + }, + "0x524d524b4c9366be706d3a90dcf70076ca037ae3": { + "address": "0x524d524b4c9366be706d3a90dcf70076ca037ae3", + "symbol": "RMRK", + "decimals": 18, + "name": "RMRK", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x524d524b4c9366be706d3a90dcf70076ca037ae3.png", + "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0xb9e1fd5a02d3a33b25a14d661414e6ed6954a721": { + "address": "0xb9e1fd5a02d3a33b25a14d661414e6ed6954a721", + "symbol": "SOON", + "decimals": 18, + "name": "SOON Token", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xb9e1fd5a02d3a33b25a14d661414e6ed6954a721.png", + "aggregators": ["CoinGecko", "LiFi", "Rubic", "Rango"], + "occurrences": 4 + }, + "0x3e248ab4554cfdec8fc4f18f569fe6f46de61db1": { + "address": "0x3e248ab4554cfdec8fc4f18f569fe6f46de61db1", + "symbol": "SLAY", + "decimals": 6, + "name": "SLAY", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x3e248ab4554cfdec8fc4f18f569fe6f46de61db1.png", + "aggregators": ["CoinGecko", "Socket", "Rubic", "Rango"], + "occurrences": 4 + }, + "0x391359ab0ccef572dcac78f74e47d7c06db0b982": { + "address": "0x391359ab0ccef572dcac78f74e47d7c06db0b982", + "symbol": "SUPER", + "decimals": 18, + "name": "SUPER", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x391359ab0ccef572dcac78f74e47d7c06db0b982.png", + "aggregators": ["CoinGecko", "LiFi", "Rubic", "Rango"], + "occurrences": 4 + }, + "0xd46e2edc7314ee5cb69f86ab7b0e84e349971efb": { + "address": "0xd46e2edc7314ee5cb69f86ab7b0e84e349971efb", + "symbol": "APEMAN", + "decimals": 9, + "name": "Ape Man", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xd46e2edc7314ee5cb69f86ab7b0e84e349971efb.png", + "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0x0a4c9cb2778ab3302996a34befcf9a8bc288c33b": { + "address": "0x0a4c9cb2778ab3302996a34befcf9a8bc288c33b", + "symbol": "XSGD", + "decimals": 6, + "name": "XSGD", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x0a4c9cb2778ab3302996a34befcf9a8bc288c33b.png", + "aggregators": ["CoinGecko", "LiFi", "Rubic", "Rango"], + "occurrences": 4 + }, + "0xbb5cbdae23c5368557cc9a32337863eecf03cf9f": { + "address": "0xbb5cbdae23c5368557cc9a32337863eecf03cf9f", + "symbol": "BEPE", + "decimals": 18, + "name": "BEPE", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xbb5cbdae23c5368557cc9a32337863eecf03cf9f.png", + "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0x34be5b8c30ee4fde069dc878989686abe9884470": { + "address": "0x34be5b8c30ee4fde069dc878989686abe9884470", + "symbol": "SIDUS", + "decimals": 18, + "name": "Sidus", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x34be5b8c30ee4fde069dc878989686abe9884470.png", + "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0x45e7eaedb8e3360f850c963c5419a5236e451217": { + "address": "0x45e7eaedb8e3360f850c963c5419a5236e451217", + "symbol": "SATOSHI", + "decimals": 9, + "name": "Satoshi Nakamoto", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x45e7eaedb8e3360f850c963c5419a5236e451217.png", + "aggregators": ["CoinGecko", "Rubic", "Squid", "Rango"], + "occurrences": 4 + }, + "0x441fcb23dfe8289cf572126fedcf450974adc891": { + "address": "0x441fcb23dfe8289cf572126fedcf450974adc891", + "symbol": "RBTC", + "decimals": 18, + "name": "RBTC", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x441fcb23dfe8289cf572126fedcf450974adc891.png", + "aggregators": ["CoinGecko", "Socket", "Rubic", "Rango"], + "occurrences": 4 + }, + "0x9b5e262cf9bb04869ab40b19af91d2dc85761722": { + "address": "0x9b5e262cf9bb04869ab40b19af91d2dc85761722", + "symbol": "NOCK", + "decimals": 16, + "name": "Nock", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x9b5e262cf9bb04869ab40b19af91d2dc85761722.png", + "aggregators": ["CoinGecko", "LiFi", "Rubic", "Squid", "Rango"], + "occurrences": 5 + }, + "0xaaa0008c8cf3a7dca931adaf04336a5d808c82cc": { + "address": "0xaaa0008c8cf3a7dca931adaf04336a5d808c82cc", + "symbol": "DEJAAA", + "decimals": 18, + "name": "DeFi Janus Henderson Anemoy AAA CLO Fund", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xaaa0008c8cf3a7dca931adaf04336a5d808c82cc.png", + "aggregators": ["CoinGecko", "LiFi", "Rubic", "Rango"], + "occurrences": 4 + }, + "0x0a1a1a107e45b7ced86833863f482bc5f4ed82ef": { + "address": "0x0a1a1a107e45b7ced86833863f482bc5f4ed82ef", + "symbol": "USDAI", + "decimals": 18, + "name": "USDai", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x0a1a1a107e45b7ced86833863f482bc5f4ed82ef.png", + "aggregators": ["CoinGecko", "LiFi", "Rubic", "Rango"], + "occurrences": 4 + }, + "0x8d010bf9c26881788b4e6bf5fd1bdc358c8f90b8": { + "address": "0x8d010bf9c26881788b4e6bf5fd1bdc358c8f90b8", + "symbol": "DOT", + "decimals": 18, + "name": "Polkadot Token (Relay Chain)", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x8d010bf9c26881788b4e6bf5fd1bdc358c8f90b8.png", + "aggregators": ["CoinGecko", "LiFi", "Rubic", "Rango"], + "occurrences": 4 + }, + "0xabc5915cad6b54f48b2a8cd516055f378861c237": { + "address": "0xabc5915cad6b54f48b2a8cd516055f378861c237", + "symbol": "MDEX", + "decimals": 18, + "name": "MDEX", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xabc5915cad6b54f48b2a8cd516055f378861c237.png", + "aggregators": ["CoinGecko", "Socket", "Rubic", "Rango"], + "occurrences": 4 + }, + "0xea17df5cf6d172224892b5477a16acb111182478": { + "address": "0xea17df5cf6d172224892b5477a16acb111182478", + "symbol": "ELIZAOS", + "decimals": 9, + "name": "ELIZAOS", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xea17df5cf6d172224892b5477a16acb111182478.png", + "aggregators": ["CoinGecko", "1inch", "Rubic", "Rango"], + "occurrences": 4 + }, + "0xd09acb80c1e8f2291862c4978a008791c9167003": { + "address": "0xd09acb80c1e8f2291862c4978a008791c9167003", + "symbol": "TETH", + "decimals": 18, + "name": "TETH", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xd09acb80c1e8f2291862c4978a008791c9167003.png", + "aggregators": ["CoinGecko", "LiFi", "Rubic", "Rango"], + "occurrences": 4 + }, + "0x00000000efe302beaa2b3e6e1b18d08d69a9012a": { + "address": "0x00000000efe302beaa2b3e6e1b18d08d69a9012a", + "symbol": "AUSD", + "decimals": 6, + "name": "AUSD", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x00000000efe302beaa2b3e6e1b18d08d69a9012a.png", + "aggregators": ["CoinGecko", "LiFi", "Rubic", "Rango"], + "occurrences": 4 + }, + "0x4eb92702ba4cfbf80561bad64d89c706ac824960": { + "address": "0x4eb92702ba4cfbf80561bad64d89c706ac824960", + "symbol": "RED", + "decimals": 18, + "name": "RED", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x4eb92702ba4cfbf80561bad64d89c706ac824960.png", + "aggregators": ["CoinGecko", "LiFi", "Rubic", "Rango"], + "occurrences": 4 + }, + "0xba8cd87120aca631f59231f9fd6c5469bbee3440": { + "address": "0xba8cd87120aca631f59231f9fd6c5469bbee3440", + "symbol": "ITP", + "decimals": 18, + "name": "Infinite Trading Protocol", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xba8cd87120aca631f59231f9fd6c5469bbee3440.png", + "aggregators": ["CoinGecko", "LiFi", "Rubic", "Rango"], + "occurrences": 4 + }, + "0xeca139be1214322752b4e427b1800fd3e8037bf8": { + "address": "0xeca139be1214322752b4e427b1800fd3e8037bf8", + "symbol": "DSTRX", + "decimals": 18, + "name": "DSTRX", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xeca139be1214322752b4e427b1800fd3e8037bf8.png", + "aggregators": ["CoinGecko", "Socket", "Rubic", "Rango"], + "occurrences": 4 + }, + "0xf732a566121fa6362e9e0fbdd6d66e5c8c925e49": { + "address": "0xf732a566121fa6362e9e0fbdd6d66e5c8c925e49", + "symbol": "LITKEY", + "decimals": 18, + "name": "Lit Protocol", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xf732a566121fa6362e9e0fbdd6d66e5c8c925e49.png", + "aggregators": ["CoinGecko", "Socket", "Rubic", "Rango"], + "occurrences": 4 + }, + "0x472ed57b376fe400259fb28e5c46eb53f0e3e7e7": { + "address": "0x472ed57b376fe400259fb28e5c46eb53f0e3e7e7", + "symbol": "SUSDP", + "decimals": 18, + "name": "SUSDP", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x472ed57b376fe400259fb28e5c46eb53f0e3e7e7.png", + "aggregators": ["CoinGecko", "LiFi", "Rubic", "Rango"], + "occurrences": 4 + }, + "0xbf82115918a88e2120c0f73d99ccd8f95c301b59": { + "address": "0xbf82115918a88e2120c0f73d99ccd8f95c301b59", + "symbol": "WNK", + "decimals": 18, + "name": "Winkies", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xbf82115918a88e2120c0f73d99ccd8f95c301b59.png", + "aggregators": ["Metamask", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0x6653dd4b92a0e5bf8ae570a98906d9d6fd2eec09": { + "address": "0x6653dd4b92a0e5bf8ae570a98906d9d6fd2eec09", + "symbol": "RCKT", + "decimals": 18, + "name": "RocketSwap", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x6653dd4b92a0e5bf8ae570a98906d9d6fd2eec09.png", + "aggregators": ["1inch", "LiFi", "Rubic", "Rango"], + "occurrences": 4 + }, + "0x1045971c168b5294acbc8727a4f1c9e1af99f6d0": { + "address": "0x1045971c168b5294acbc8727a4f1c9e1af99f6d0", + "symbol": "FTN", + "decimals": 18, + "name": "Fasttoken", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x1045971c168b5294acbc8727a4f1c9e1af99f6d0.png", + "aggregators": ["LiFi", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0xb170000aeefa790fa61d6e837d1035906839a3c8": { + "address": "0xb170000aeefa790fa61d6e837d1035906839a3c8", + "symbol": "PINTO", + "decimals": 6, + "name": "Pinto", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xb170000aeefa790fa61d6e837d1035906839a3c8.png", + "aggregators": ["LiFi", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0xc63529297de076eb15fcbe873ae9136e446cfbb9": { + "address": "0xc63529297de076eb15fcbe873ae9136e446cfbb9", + "symbol": "GYFI", + "decimals": 18, + "name": "Gyroscope", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xc63529297de076eb15fcbe873ae9136e446cfbb9.png", + "aggregators": ["LiFi", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0x047157cffb8841a64db93fd4e29fa3796b78466c": { + "address": "0x047157cffb8841a64db93fd4e29fa3796b78466c", + "symbol": "DEV", + "decimals": 18, + "name": "Scout Protocol Token", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x047157cffb8841a64db93fd4e29fa3796b78466c.png", + "aggregators": ["LiFi", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0x4a3a6dd60a34bb2aba60d73b4c88315e9ceb6a3d": { + "address": "0x4a3a6dd60a34bb2aba60d73b4c88315e9ceb6a3d", + "symbol": "MIM", + "decimals": 18, + "name": "Magic Internet Money (Base)", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x4a3a6dd60a34bb2aba60d73b4c88315e9ceb6a3d.png", + "aggregators": ["LiFi", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0x4bf3ccf7da80751c0db8272ed54e2932900563a2": { + "address": "0x4bf3ccf7da80751c0db8272ed54e2932900563a2", + "symbol": "CITDEL", + "decimals": 18, + "name": "Citadel by Virtuals", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x4bf3ccf7da80751c0db8272ed54e2932900563a2.png", + "aggregators": ["Rubic", "Squid", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0x39d24405ca717ef841e4a782da97284cf2dc7628": { + "address": "0x39d24405ca717ef841e4a782da97284cf2dc7628", + "symbol": "ZEEK", + "decimals": 18, + "name": "Agent Zeek by Virtuals", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x39d24405ca717ef841e4a782da97284cf2dc7628.png", + "aggregators": ["Rubic", "Squid", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0xfe0c0b15798b8c9107cd4aa556a87eb031263e8b": { + "address": "0xfe0c0b15798b8c9107cd4aa556a87eb031263e8b", + "symbol": "AETX", + "decimals": 8, + "name": "AetherX", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xfe0c0b15798b8c9107cd4aa556a87eb031263e8b.png", + "aggregators": ["Rubic", "Squid", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0xe4a7b54c0a30da69c04dc54b89868c185ff382bc": { + "address": "0xe4a7b54c0a30da69c04dc54b89868c185ff382bc", + "symbol": "EMILIA", + "decimals": 18, + "name": "Emilia", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xe4a7b54c0a30da69c04dc54b89868c185ff382bc.png", + "aggregators": ["Rubic", "Squid", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0x01ccf4941298a0b5ac4714c0e1799a2df8387048": { + "address": "0x01ccf4941298a0b5ac4714c0e1799a2df8387048", + "symbol": "YUP", + "decimals": 18, + "name": "Yup", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x01ccf4941298a0b5ac4714c0e1799a2df8387048.png", + "aggregators": ["Rubic", "Squid", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0x3fbde9864362ce4abb244ebef2ef0482aba8ea39": { + "address": "0x3fbde9864362ce4abb244ebef2ef0482aba8ea39", + "symbol": "BAVA", + "decimals": 18, + "name": "Baklava", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x3fbde9864362ce4abb244ebef2ef0482aba8ea39.png", + "aggregators": ["Rubic", "Squid", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0xff9957816c813c5ad0b9881a8990df1e3aa2a057": { + "address": "0xff9957816c813c5ad0b9881a8990df1e3aa2a057", + "symbol": "JAM", + "decimals": 18, + "name": "Geojam", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xff9957816c813c5ad0b9881a8990df1e3aa2a057.png", + "aggregators": ["UniswapLabs", "Socket", "Rango"], + "occurrences": 3 + }, + "0xce1eab31756a48915b7e7bb79c589835aac6242d": { + "address": "0xce1eab31756a48915b7e7bb79c589835aac6242d", + "symbol": "BRAIN", + "decimals": 18, + "name": "Gigabrain", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xce1eab31756a48915b7e7bb79c589835aac6242d.png", + "aggregators": ["CoinGecko", "Rubic", "Squid"], + "occurrences": 3 + }, + "0x75f2231a289ea35895246b21e9c6e5bbf5ce69ed": { + "address": "0x75f2231a289ea35895246b21e9c6e5bbf5ce69ed", + "symbol": "ALT", + "decimals": 18, + "name": "AltLayer", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x75f2231a289ea35895246b21e9c6e5bbf5ce69ed.png", + "aggregators": ["LiFi", "Socket", "Rango"], + "occurrences": 3 + }, + "0x5259384690acf240e9b0a8811bd0ffbfbddc125c": { + "address": "0x5259384690acf240e9b0a8811bd0ffbfbddc125c", + "symbol": "LQTY", + "decimals": 18, + "name": "LQTY", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x5259384690acf240e9b0a8811bd0ffbfbddc125c.png", + "aggregators": ["LiFi", "Socket", "Rango"], + "occurrences": 3 + }, + "0xba7d47f471add16875e765edee0858c3413a56fd": { + "address": "0xba7d47f471add16875e765edee0858c3413a56fd", + "symbol": "MTA", + "decimals": 18, + "name": "Meta", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xba7d47f471add16875e765edee0858c3413a56fd.png", + "aggregators": ["LiFi", "Socket", "Rango"], + "occurrences": 3 + }, + "0xf8e9e61ffb2b491f7df29823a76009743671cd96": { + "address": "0xf8e9e61ffb2b491f7df29823a76009743671cd96", + "symbol": "TRB", + "decimals": 18, + "name": "Tellor Tributes", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xf8e9e61ffb2b491f7df29823a76009743671cd96.png", + "aggregators": ["LiFi", "Socket", "Rango"], + "occurrences": 3 + }, + "0xd0d1e44fc9adaeb732f73ffc2429cd1db9cd4529": { + "address": "0xd0d1e44fc9adaeb732f73ffc2429cd1db9cd4529", + "symbol": "SIPHER", + "decimals": 18, + "name": "Sipher Token", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xd0d1e44fc9adaeb732f73ffc2429cd1db9cd4529.png", + "aggregators": ["LiFi", "Socket", "Rango"], + "occurrences": 3 + }, + "0xb358489d5d92641edb4d8ee8063f8005964346ba": { + "address": "0xb358489d5d92641edb4d8ee8063f8005964346ba", + "symbol": "AMP", + "decimals": 18, + "name": "Amp", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xb358489d5d92641edb4d8ee8063f8005964346ba.png", + "aggregators": ["LiFi", "Socket", "Rango"], + "occurrences": 3 + }, + "0xe2a8ccb00e328a0ec2204cb0c736309d7c1fa556": { + "address": "0xe2a8ccb00e328a0ec2204cb0c736309d7c1fa556", + "symbol": "ABT", + "decimals": 18, + "name": "ArcBlock", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xe2a8ccb00e328a0ec2204cb0c736309d7c1fa556.png", + "aggregators": ["LiFi", "Socket", "Rango"], + "occurrences": 3 + }, + "0x0d760ee479401bb4c40bdb7604b329fff411b3f2": { + "address": "0x0d760ee479401bb4c40bdb7604b329fff411b3f2", + "symbol": "LRC", + "decimals": 18, + "name": "LoopringCoin V2", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x0d760ee479401bb4c40bdb7604b329fff411b3f2.png", + "aggregators": ["LiFi", "Socket", "Rango"], + "occurrences": 3 + }, + "0x74f804b4140ee70830b3eef4e690325841575f89": { + "address": "0x74f804b4140ee70830b3eef4e690325841575f89", + "symbol": "FET", + "decimals": 18, + "name": "Fetch", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x74f804b4140ee70830b3eef4e690325841575f89.png", + "aggregators": ["LiFi", "Socket", "Rango"], + "occurrences": 3 + }, + "0x28fe69ff6864c1c218878bdca01482d36b9d57b1": { + "address": "0x28fe69ff6864c1c218878bdca01482d36b9d57b1", + "symbol": "KNC", + "decimals": 18, + "name": "Kyber Network Crystal v2", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x28fe69ff6864c1c218878bdca01482d36b9d57b1.png", + "aggregators": ["Socket", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x321725ee44cb4bfa544cf45a5a585b925d30a58c": { + "address": "0x321725ee44cb4bfa544cf45a5a585b925d30a58c", + "symbol": "GROW", + "decimals": 18, + "name": "ValleyDAO Token", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x321725ee44cb4bfa544cf45a5a585b925d30a58c.png", + "aggregators": ["Socket", "Rubic", "Rango"], + "occurrences": 3 + }, + "0xf734efde0c424ba2b547b186586de417b0954802": { + "address": "0xf734efde0c424ba2b547b186586de417b0954802", + "symbol": "SILO", + "decimals": 18, + "name": "Silo Governance Token", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xf734efde0c424ba2b547b186586de417b0954802.png", + "aggregators": ["Socket", "Rubic", "Rango"], + "occurrences": 3 + }, + "0xf04d220b8136e2d3d4be08081dbb565c3c302ffd": { + "address": "0xf04d220b8136e2d3d4be08081dbb565c3c302ffd", + "symbol": "FREYA", + "decimals": 18, + "name": "Freya by Virtuals", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xf04d220b8136e2d3d4be08081dbb565c3c302ffd.png", + "aggregators": ["Rubic", "Squid", "Rango"], + "occurrences": 3 + }, + "0xddf7d080c82b8048baae54e376a3406572429b4e": { + "address": "0xddf7d080c82b8048baae54e376a3406572429b4e", + "symbol": "OOOOOO", + "decimals": 18, + "name": "GODDOG", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xddf7d080c82b8048baae54e376a3406572429b4e.png", + "aggregators": ["Rubic", "Squid", "Rango"], + "occurrences": 3 + }, + "0x22af33fe49fd1fa80c7149773dde5890d3c76f3b": { + "address": "0x22af33fe49fd1fa80c7149773dde5890d3c76f3b", + "symbol": "BNKR", + "decimals": 18, + "name": "BankrCoin", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x22af33fe49fd1fa80c7149773dde5890d3c76f3b.png", + "aggregators": [ + "CoinGecko", + "1inch", + "LiFi", + "Rubic", + "Squid", + "Rango", + "Sonarwatch" + ], + "occurrences": 7 + }, + "0xc0041ef357b183448b235a8ea73ce4e4ec8c265f": { + "address": "0xc0041ef357b183448b235a8ea73ce4e4ec8c265f", + "symbol": "COOKIE", + "decimals": 18, + "name": "Cookie DAO", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xc0041ef357b183448b235a8ea73ce4e4ec8c265f.png", + "aggregators": [ + "CoinGecko", + "LiFi", + "Socket", + "Rubic", + "Squid", + "Rango", + "Sonarwatch" + ], + "occurrences": 7 + }, + "0x5ab3d4c385b400f3abb49e80de2faf6a88a7b691": { + "address": "0x5ab3d4c385b400f3abb49e80de2faf6a88a7b691", + "symbol": "FLOCK", + "decimals": 18, + "name": "FLOCK", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x5ab3d4c385b400f3abb49e80de2faf6a88a7b691.png", + "aggregators": [ + "CoinGecko", + "1inch", + "LiFi", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 7 + }, + "0xf9569cfb8fd265e91aa478d86ae8c78b8af55df4": { + "address": "0xf9569cfb8fd265e91aa478d86ae8c78b8af55df4", + "symbol": "AUKI", + "decimals": 18, + "name": "Auki Token", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xf9569cfb8fd265e91aa478d86ae8c78b8af55df4.png", + "aggregators": [ + "CoinGecko", + "LiFi", + "Rubic", + "Squid", + "Rango", + "Sonarwatch", + "SushiSwap" + ], + "occurrences": 7 + }, + "0x768be13e1680b5ebe0024c42c896e3db59ec0149": { + "address": "0x768be13e1680b5ebe0024c42c896e3db59ec0149", + "symbol": "SKI", + "decimals": 9, + "name": "Ski Mask Dog", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x768be13e1680b5ebe0024c42c896e3db59ec0149.png", + "aggregators": [ + "CoinGecko", + "1inch", + "LiFi", + "Rubic", + "Squid", + "Rango", + "Sonarwatch" + ], + "occurrences": 7 + }, + "0x0d97f261b1e88845184f678e2d1e7a98d9fd38de": { + "address": "0x0d97f261b1e88845184f678e2d1e7a98d9fd38de", + "symbol": "TYBG", + "decimals": 18, + "name": "Base God", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x0d97f261b1e88845184f678e2d1e7a98d9fd38de.png", + "aggregators": [ + "CoinGecko", + "1inch", + "Rubic", + "Squid", + "Rango", + "Sonarwatch", + "SushiSwap" + ], + "occurrences": 7 + }, + "0xbc45647ea894030a4e9801ec03479739fa2485f0": { + "address": "0xbc45647ea894030a4e9801ec03479739fa2485f0", + "symbol": "BENJI", + "decimals": 18, + "name": "Basenji", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xbc45647ea894030a4e9801ec03479739fa2485f0.png", + "aggregators": [ + "CoinGecko", + "LiFi", + "Socket", + "Rubic", + "Rango", + "Sonarwatch", + "SushiSwap" + ], + "occurrences": 7 + }, + "0x63706e401c06ac8513145b7687a14804d17f814b": { + "address": "0x63706e401c06ac8513145b7687a14804d17f814b", + "symbol": "AAVE", + "decimals": 18, + "name": "Aave", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x63706e401c06ac8513145b7687a14804d17f814b.png", + "aggregators": [ + "CoinGecko", + "LiFi", + "Socket", + "Rubic", + "Squid", + "Rango", + "Sonarwatch" + ], + "occurrences": 7 + }, + "0xecac9c5f704e954931349da37f60e39f515c11c1": { + "address": "0xecac9c5f704e954931349da37f60e39f515c11c1", + "symbol": "LBTC", + "decimals": 8, + "name": "Lombard Staked BTC", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xecac9c5f704e954931349da37f60e39f515c11c1.png", + "aggregators": [ + "CoinGecko", + "LiFi", + "Socket", + "Rubic", + "Squid", + "Rango", + "Sonarwatch" + ], + "occurrences": 7 + }, + "0xcfa3ef56d303ae4faaba0592388f19d7c3399fb4": { + "address": "0xcfa3ef56d303ae4faaba0592388f19d7c3399fb4", + "symbol": "EUSD", + "decimals": 18, + "name": "Electronic USD", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xcfa3ef56d303ae4faaba0592388f19d7c3399fb4.png", + "aggregators": [ + "CoinGecko", + "LiFi", + "Socket", + "Rubic", + "Squid", + "Rango", + "Sonarwatch" + ], + "occurrences": 7 + }, + "0x3124678d62d2aa1f615b54525310fbfda6dcf7ae": { + "address": "0x3124678d62d2aa1f615b54525310fbfda6dcf7ae", + "symbol": "SNSY", + "decimals": 18, + "name": "Sensay", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x3124678d62d2aa1f615b54525310fbfda6dcf7ae.png", + "aggregators": [ + "CoinGecko", + "LiFi", + "Socket", + "Rubic", + "Rango", + "Sonarwatch", + "SushiSwap" + ], + "occurrences": 7 + }, + "0xb33ff54b9f7242ef1593d2c9bcd8f9df46c77935": { + "address": "0xb33ff54b9f7242ef1593d2c9bcd8f9df46c77935", + "symbol": "FAI", + "decimals": 18, + "name": "Freysa AI", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xb33ff54b9f7242ef1593d2c9bcd8f9df46c77935.png", + "aggregators": [ + "CoinGecko", + "LiFi", + "Rubic", + "Squid", + "Rango", + "Sonarwatch" + ], + "occurrences": 6 + }, + "0x3e31966d4f81c72d2a55310a6365a56a4393e98d": { + "address": "0x3e31966d4f81c72d2a55310a6365a56a4393e98d", + "symbol": "WMTX", + "decimals": 6, + "name": "World Mobile Token", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x3e31966d4f81c72d2a55310a6365a56a4393e98d.png", + "aggregators": [ + "Metamask", + "LiFi", + "Rubic", + "Squid", + "Rango", + "Sonarwatch" + ], + "occurrences": 6 + }, + "0x18a8bd1fe17a1bb9ffb39ecd83e9489cfd17a022": { + "address": "0x18a8bd1fe17a1bb9ffb39ecd83e9489cfd17a022", + "symbol": "ANDY", + "decimals": 18, + "name": "Andy", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x18a8bd1fe17a1bb9ffb39ecd83e9489cfd17a022.png", + "aggregators": [ + "CoinGecko", + "Rubic", + "Squid", + "Rango", + "Sonarwatch", + "SushiSwap" + ], + "occurrences": 6 + }, + "0x1185cb5122edad199bdbc0cbd7a0457e448f23c7": { + "address": "0x1185cb5122edad199bdbc0cbd7a0457e448f23c7", + "symbol": "SEKOIA", + "decimals": 18, + "name": "sekoia by Virtuals", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x1185cb5122edad199bdbc0cbd7a0457e448f23c7.png", + "aggregators": [ + "CoinGecko", + "LiFi", + "Rubic", + "Squid", + "Rango", + "Sonarwatch" + ], + "occurrences": 6 + }, + "0x1b5ce2a593a840e3ad3549a34d7b3dec697c114d": { + "address": "0x1b5ce2a593a840e3ad3549a34d7b3dec697c114d", + "symbol": "ALTT", + "decimals": 18, + "name": "Altcoinist Token", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x1b5ce2a593a840e3ad3549a34d7b3dec697c114d.png", + "aggregators": [ + "CoinGecko", + "LiFi", + "Rubic", + "Squid", + "Rango", + "Sonarwatch" + ], + "occurrences": 6 + }, + "0xbe3111856e4aca828593274ea6872f27968c8dd6": { + "address": "0xbe3111856e4aca828593274ea6872f27968c8dd6", + "symbol": "KRAV", + "decimals": 18, + "name": "KRAV", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xbe3111856e4aca828593274ea6872f27968c8dd6.png", + "aggregators": [ + "CoinGecko", + "Rubic", + "Squid", + "Rango", + "Sonarwatch", + "SushiSwap" + ], + "occurrences": 6 + }, + "0x9b8df6e244526ab5f6e6400d331db28c8fdddb55": { + "address": "0x9b8df6e244526ab5f6e6400d331db28c8fdddb55", + "symbol": "USOL", + "decimals": 18, + "name": "Wrapped Solana (Universal)", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x9b8df6e244526ab5f6e6400d331db28c8fdddb55.png", + "aggregators": [ + "CoinGecko", + "1inch", + "LiFi", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 6 + }, + "0x6b2504a03ca4d43d0d73776f6ad46dab2f2a4cfd": { + "address": "0x6b2504a03ca4d43d0d73776f6ad46dab2f2a4cfd", + "symbol": "REI", + "decimals": 18, + "name": "Unit 00 - Rei", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x6b2504a03ca4d43d0d73776f6ad46dab2f2a4cfd.png", + "aggregators": [ + "CoinGecko", + "LiFi", + "Rubic", + "Squid", + "Rango", + "Sonarwatch" + ], + "occurrences": 6 + }, + "0x70737489dfdf1a29b7584d40500d3561bd4fe196": { + "address": "0x70737489dfdf1a29b7584d40500d3561bd4fe196", + "symbol": "BORED", + "decimals": 18, + "name": "BORED", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x70737489dfdf1a29b7584d40500d3561bd4fe196.png", + "aggregators": [ + "CoinGecko", + "LiFi", + "Rubic", + "Squid", + "Rango", + "Sonarwatch" + ], + "occurrences": 6 + }, + "0xcb327b99ff831bf8223cced12b1338ff3aa322ff": { + "address": "0xcb327b99ff831bf8223cced12b1338ff3aa322ff", + "symbol": "BSDETH", + "decimals": 18, + "name": "Based ETH", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xcb327b99ff831bf8223cced12b1338ff3aa322ff.png", + "aggregators": [ + "CoinGecko", + "1inch", + "LiFi", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 6 + }, + "0x85483696cc9970ad9edd786b2c5ef735f38d156f": { + "address": "0x85483696cc9970ad9edd786b2c5ef735f38d156f", + "symbol": "USDC+", + "decimals": 6, + "name": "Overnight.fi USDC+", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x85483696cc9970ad9edd786b2c5ef735f38d156f.png", + "aggregators": [ + "CoinGecko", + "LiFi", + "Rubic", + "Squid", + "Rango", + "Sonarwatch" + ], + "occurrences": 6 + }, + "0xecaf81eb42cd30014eb44130b89bcd6d4ad98b92": { + "address": "0xecaf81eb42cd30014eb44130b89bcd6d4ad98b92", + "symbol": "CHAD", + "decimals": 18, + "name": "Based Chad", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xecaf81eb42cd30014eb44130b89bcd6d4ad98b92.png", + "aggregators": [ + "CoinGecko", + "Socket", + "Rubic", + "Rango", + "Sonarwatch", + "SushiSwap" + ], + "occurrences": 6 + }, + "0x42069babe14fb1802c5cb0f50bb9d2ad6fef55e2": { + "address": "0x42069babe14fb1802c5cb0f50bb9d2ad6fef55e2", + "symbol": "FROK", + "decimals": 18, + "name": "frok.ai", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x42069babe14fb1802c5cb0f50bb9d2ad6fef55e2.png", + "aggregators": [ + "Metamask", + "LiFi", + "Rubic", + "Squid", + "Rango", + "Sonarwatch" + ], + "occurrences": 6 + }, + "0x3a46ed8fceb6ef1ada2e4600a522ae7e24d2ed18": { + "address": "0x3a46ed8fceb6ef1ada2e4600a522ae7e24d2ed18", + "symbol": "USSI", + "decimals": 8, + "name": "USSI", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x3a46ed8fceb6ef1ada2e4600a522ae7e24d2ed18.png", + "aggregators": [ + "CoinGecko", + "LiFi", + "Rubic", + "Squid", + "Rango", + "Sonarwatch" + ], + "occurrences": 6 + }, + "0xf6e932ca12afa26665dc4dde7e27be02a7c02e50": { + "address": "0xf6e932ca12afa26665dc4dde7e27be02a7c02e50", + "symbol": "MOCHI", + "decimals": 18, + "name": "Mochi", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xf6e932ca12afa26665dc4dde7e27be02a7c02e50.png", + "aggregators": [ + "CoinGecko", + "1inch", + "Rubic", + "Rango", + "Sonarwatch", + "SushiSwap" + ], + "occurrences": 6 + }, + "0x54016a4848a38f257b6e96331f7404073fd9c32c": { + "address": "0x54016a4848a38f257b6e96331f7404073fd9c32c", + "symbol": "SCALE", + "decimals": 18, + "name": "Equalizer (BASE)", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x54016a4848a38f257b6e96331f7404073fd9c32c.png", + "aggregators": [ + "CoinGecko", + "LiFi", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 6 + }, + "0xc08cd26474722ce93f4d0c34d16201461c10aa8c": { + "address": "0xc08cd26474722ce93f4d0c34d16201461c10aa8c", + "symbol": "CARV", + "decimals": 18, + "name": "CARV", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xc08cd26474722ce93f4d0c34d16201461c10aa8c.png", + "aggregators": [ + "CoinGecko", + "LiFi", + "Rubic", + "Squid", + "Rango", + "Sonarwatch" + ], + "occurrences": 6 + }, + "0xb1a03eda10342529bbf8eb700a06c60441fef25d": { + "address": "0xb1a03eda10342529bbf8eb700a06c60441fef25d", + "symbol": "MIGGLES", + "decimals": 18, + "name": "Mister Miggles", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xb1a03eda10342529bbf8eb700a06c60441fef25d.png", + "aggregators": [ + "CoinGecko", + "LiFi", + "Rubic", + "Squid", + "Rango", + "Sonarwatch" + ], + "occurrences": 6 + }, + "0x47b464edb8dc9bc67b5cd4c9310bb87b773845bd": { + "address": "0x47b464edb8dc9bc67b5cd4c9310bb87b773845bd", + "symbol": "NORMIE", + "decimals": 9, + "name": "Normie", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x47b464edb8dc9bc67b5cd4c9310bb87b773845bd.png", + "aggregators": [ + "CoinGecko", + "Rubic", + "Squid", + "Rango", + "Sonarwatch", + "SushiSwap" + ], + "occurrences": 6 + }, + "0x4e74d4db6c0726ccded4656d0bce448876bb4c7a": { + "address": "0x4e74d4db6c0726ccded4656d0bce448876bb4c7a", + "symbol": "WBLT", + "decimals": 18, + "name": "Wrapped BMX Liquidity Token", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x4e74d4db6c0726ccded4656d0bce448876bb4c7a.png", + "aggregators": [ + "CoinGecko", + "LiFi", + "Rubic", + "Squid", + "Rango", + "Sonarwatch" + ], + "occurrences": 6 + }, + "0xdcefd8c8fcc492630b943abcab3429f12ea9fea2": { + "address": "0xdcefd8c8fcc492630b943abcab3429f12ea9fea2", + "symbol": "KLIMA", + "decimals": 18, + "name": "KlimaDAO", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xdcefd8c8fcc492630b943abcab3429f12ea9fea2.png", + "aggregators": [ + "CoinGecko", + "LiFi", + "Rubic", + "Squid", + "Rango", + "Sonarwatch" + ], + "occurrences": 6 + }, + "0xe3b53af74a4bf62ae5511055290838050bf764df": { + "address": "0xe3b53af74a4bf62ae5511055290838050bf764df", + "symbol": "STG", + "decimals": 18, + "name": "Stargate Finance", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xe3b53af74a4bf62ae5511055290838050bf764df.png", + "aggregators": [ + "CoinGecko", + "LiFi", + "Rubic", + "Squid", + "Rango", + "Sonarwatch" + ], + "occurrences": 6 + }, + "0x157a6df6b74f4e5e45af4e4615fde7b49225a662": { + "address": "0x157a6df6b74f4e5e45af4e4615fde7b49225a662", + "symbol": "ISLAND", + "decimals": 18, + "name": "ISLAND Token", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x157a6df6b74f4e5e45af4e4615fde7b49225a662.png", + "aggregators": [ + "CoinGecko", + "LiFi", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 6 + }, + "0x1a35ee4640b0a3b87705b0a4b45d227ba60ca2ad": { + "address": "0x1a35ee4640b0a3b87705b0a4b45d227ba60ca2ad", + "symbol": "AXLWBTC", + "decimals": 8, + "name": "axlWBTC", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x1a35ee4640b0a3b87705b0a4b45d227ba60ca2ad.png", + "aggregators": [ + "CoinGecko", + "LiFi", + "Rubic", + "Squid", + "Rango", + "Sonarwatch" + ], + "occurrences": 6 + }, + "0xdf49c226ed9cf05be0e38cdb86df4e8a945158b1": { + "address": "0xdf49c226ed9cf05be0e38cdb86df4e8a945158b1", + "symbol": "ZENT", + "decimals": 18, + "name": "ZENT", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xdf49c226ed9cf05be0e38cdb86df4e8a945158b1.png", + "aggregators": [ + "CoinGecko", + "LiFi", + "Socket", + "Rubic", + "Squid", + "Rango" + ], + "occurrences": 6 + }, + "0xfd4330b0312fdeec6d4225075b82e00493ff2e3f": { + "address": "0xfd4330b0312fdeec6d4225075b82e00493ff2e3f", + "symbol": "SDEX", + "decimals": 18, + "name": "SmarDex", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xfd4330b0312fdeec6d4225075b82e00493ff2e3f.png", + "aggregators": [ + "CoinGecko", + "LiFi", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 6 + }, + "0x968be3f7bfef0f8edc3c1ad90232ebb0da0867aa": { + "address": "0x968be3f7bfef0f8edc3c1ad90232ebb0da0867aa", + "symbol": "SWORLD", + "decimals": 18, + "name": "Seedworld", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x968be3f7bfef0f8edc3c1ad90232ebb0da0867aa.png", + "aggregators": [ + "CoinGecko", + "Socket", + "Rubic", + "Squid", + "Rango", + "Sonarwatch" + ], + "occurrences": 6 + }, + "0xfb1aaba03c31ea98a3eec7591808acb1947ee7ac": { + "address": "0xfb1aaba03c31ea98a3eec7591808acb1947ee7ac", + "symbol": "GNS", + "decimals": 18, + "name": "Gains Network", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xfb1aaba03c31ea98a3eec7591808acb1947ee7ac.png", + "aggregators": [ + "CoinGecko", + "LiFi", + "Rubic", + "Squid", + "Rango", + "Sonarwatch" + ], + "occurrences": 6 + }, + "0xf544251d25f3d243a36b07e7e7962a678f952691": { + "address": "0xf544251d25f3d243a36b07e7e7962a678f952691", + "symbol": "TAROT", + "decimals": 18, + "name": "Tarot", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xf544251d25f3d243a36b07e7e7962a678f952691.png", + "aggregators": [ + "CoinGecko", + "LiFi", + "Rubic", + "Squid", + "Rango", + "Sonarwatch" + ], + "occurrences": 6 + }, + "0x9c632e6aaa3ea73f91554f8a3cb2ed2f29605e0c": { + "address": "0x9c632e6aaa3ea73f91554f8a3cb2ed2f29605e0c", + "symbol": "XCN", + "decimals": 18, + "name": "Onyxcoin", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x9c632e6aaa3ea73f91554f8a3cb2ed2f29605e0c.png", + "aggregators": [ + "CoinGecko", + "LiFi", + "Rubic", + "Squid", + "Rango", + "Sonarwatch" + ], + "occurrences": 6 + }, + "0x3b86ad95859b6ab773f55f8d94b4b9d443ee931f": { + "address": "0x3b86ad95859b6ab773f55f8d94b4b9d443ee931f", + "symbol": "SOLVBTC", + "decimals": 18, + "name": "Solv Protocol SolvBTC", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x3b86ad95859b6ab773f55f8d94b4b9d443ee931f.png", + "aggregators": [ + "CoinGecko", + "LiFi", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 6 + }, + "0xc55e93c62874d8100dbd2dfe307edc1036ad5434": { + "address": "0xc55e93c62874d8100dbd2dfe307edc1036ad5434", + "symbol": "MOOBIFI", + "decimals": 18, + "name": "Staked BIFI", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xc55e93c62874d8100dbd2dfe307edc1036ad5434.png", + "aggregators": [ + "CoinGecko", + "LiFi", + "Rubic", + "Squid", + "Rango", + "Sonarwatch" + ], + "occurrences": 6 + }, + "0x26f3901ac8a79c50fb0d8289c74f0d09adc42e29": { + "address": "0x26f3901ac8a79c50fb0d8289c74f0d09adc42e29", + "symbol": "T", + "decimals": 18, + "name": "Threshold Network", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x26f3901ac8a79c50fb0d8289c74f0d09adc42e29.png", + "aggregators": [ + "CoinGecko", + "LiFi", + "Rubic", + "Squid", + "Rango", + "Sonarwatch" + ], + "occurrences": 6 + }, + "0xd89d90d26b48940fa8f58385fe84625d468e057a": { + "address": "0xd89d90d26b48940fa8f58385fe84625d468e057a", + "symbol": "AVAIL", + "decimals": 18, + "name": "Avail", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xd89d90d26b48940fa8f58385fe84625d468e057a.png", + "aggregators": [ + "CoinGecko", + "LiFi", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 6 + }, + "0x12418783e860997eb99e8acf682df952f721cf62": { + "address": "0x12418783e860997eb99e8acf682df952f721cf62", + "symbol": "IBTC", + "decimals": 8, + "name": "iBTC Network", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x12418783e860997eb99e8acf682df952f721cf62.png", + "aggregators": [ + "CoinGecko", + "1inch", + "LiFi", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 6 + }, + "0x2598c30330d5771ae9f983979209486ae26de875": { + "address": "0x2598c30330d5771ae9f983979209486ae26de875", + "symbol": "AI", + "decimals": 18, + "name": "Any Inu", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x2598c30330d5771ae9f983979209486ae26de875.png", + "aggregators": [ + "CoinGecko", + "Socket", + "Rubic", + "Squid", + "Rango", + "Sonarwatch" + ], + "occurrences": 6 + }, + "0x6921b130d297cc43754afba22e5eac0fbf8db75b": { + "address": "0x6921b130d297cc43754afba22e5eac0fbf8db75b", + "symbol": "DOGINME", + "decimals": 18, + "name": "doginme", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x6921b130d297cc43754afba22e5eac0fbf8db75b.png", + "aggregators": [ + "CoinGecko", + "LiFi", + "Rubic", + "Squid", + "Rango", + "Sonarwatch" + ], + "occurrences": 6 + }, + "0x9d0e8f5b25384c7310cb8c6ae32c8fbeb645d083": { + "address": "0x9d0e8f5b25384c7310cb8c6ae32c8fbeb645d083", + "symbol": "DRV", + "decimals": 18, + "name": "Derive", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x9d0e8f5b25384c7310cb8c6ae32c8fbeb645d083.png", + "aggregators": ["CoinGecko", "LiFi", "Rubic", "Squid", "Rango"], + "occurrences": 5 + }, + "0x78ec15c5fd8efc5e924e9eebb9e549e29c785867": { + "address": "0x78ec15c5fd8efc5e924e9eebb9e549e29c785867", + "symbol": "TORUS", + "decimals": 18, + "name": "Torus", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x78ec15c5fd8efc5e924e9eebb9e549e29c785867.png", + "aggregators": [ + "CoinGecko", + "LiFi", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x2676e4e0e2eb58d9bdb5078358ff8a3a964cedf5": { + "address": "0x2676e4e0e2eb58d9bdb5078358ff8a3a964cedf5", + "symbol": "POLY", + "decimals": 18, + "name": "Polytrader by Virtuals", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x2676e4e0e2eb58d9bdb5078358ff8a3a964cedf5.png", + "aggregators": [ + "CoinGecko", + "Rubic", + "Squid", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x0fd7a301b51d0a83fcaf6718628174d527b373b6": { + "address": "0x0fd7a301b51d0a83fcaf6718628174d527b373b6", + "symbol": "LUM", + "decimals": 18, + "name": "Luminous", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x0fd7a301b51d0a83fcaf6718628174d527b373b6.png", + "aggregators": [ + "CoinGecko", + "Rubic", + "Squid", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x09f29e2acdb76a831668b03ce2e3ad7bb41aaa5c": { + "address": "0x09f29e2acdb76a831668b03ce2e3ad7bb41aaa5c", + "symbol": "BAPE", + "decimals": 18, + "name": "Baseape", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x09f29e2acdb76a831668b03ce2e3ad7bb41aaa5c.png", + "aggregators": [ + "CoinGecko", + "Rubic", + "Squid", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x4d25e94291fe8dcfbfa572cbb2aaa7b755087c91": { + "address": "0x4d25e94291fe8dcfbfa572cbb2aaa7b755087c91", + "symbol": "HIGH", + "decimals": 18, + "name": "High", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x4d25e94291fe8dcfbfa572cbb2aaa7b755087c91.png", + "aggregators": [ + "CoinGecko", + "Rubic", + "Rango", + "Sonarwatch", + "SushiSwap" + ], + "occurrences": 5 + }, + "0xc0d3700000987c99b3c9009069e4f8413fd22330": { + "address": "0xc0d3700000987c99b3c9009069e4f8413fd22330", + "symbol": "CDXUSD", + "decimals": 18, + "name": "Cod3x USD", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xc0d3700000987c99b3c9009069e4f8413fd22330.png", + "aggregators": [ + "CoinGecko", + "LiFi", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0xd5046b976188eb40f6de40fb527f89c05b323385": { + "address": "0xd5046b976188eb40f6de40fb527f89c05b323385", + "symbol": "BSX", + "decimals": 18, + "name": "BaseX", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xd5046b976188eb40f6de40fb527f89c05b323385.png", + "aggregators": ["CoinGecko", "LiFi", "Rubic", "Squid", "Rango"], + "occurrences": 5 + }, + "0xbefd5c25a59ef2c1316c5a4944931171f30cd3e4": { + "address": "0xbefd5c25a59ef2c1316c5a4944931171f30cd3e4", + "symbol": "GOLD", + "decimals": 18, + "name": "GoldenBoys", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xbefd5c25a59ef2c1316c5a4944931171f30cd3e4.png", + "aggregators": [ + "CoinGecko", + "LiFi", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x54eaf6bb665565bb8897f9d7ad5b3818ded143b4": { + "address": "0x54eaf6bb665565bb8897f9d7ad5b3818ded143b4", + "symbol": "DGENAI", + "decimals": 18, + "name": "Degen AI by Virtuals", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x54eaf6bb665565bb8897f9d7ad5b3818ded143b4.png", + "aggregators": [ + "CoinGecko", + "Rubic", + "Squid", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x414562c94223a5c4df9f278422f03228f35b8f7d": { + "address": "0x414562c94223a5c4df9f278422f03228f35b8f7d", + "symbol": "VBEA", + "decimals": 18, + "name": "VirtuBeauty by Virtuals", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x414562c94223a5c4df9f278422f03228f35b8f7d.png", + "aggregators": [ + "CoinGecko", + "Rubic", + "Squid", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0xda761a290e01c69325d12d82ac402e5a73d62e81": { + "address": "0xda761a290e01c69325d12d82ac402e5a73d62e81", + "symbol": "BPS", + "decimals": 18, + "name": "Base Pro Shops", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xda761a290e01c69325d12d82ac402e5a73d62e81.png", + "aggregators": [ + "CoinGecko", + "Rubic", + "Rango", + "Sonarwatch", + "SushiSwap" + ], + "occurrences": 5 + }, + "0xeb6d78148f001f3aa2f588997c5e102e489ad341": { + "address": "0xeb6d78148f001f3aa2f588997c5e102e489ad341", + "symbol": "CHAMP", + "decimals": 18, + "name": "Super Champs", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xeb6d78148f001f3aa2f588997c5e102e489ad341.png", + "aggregators": [ + "CoinGecko", + "Rubic", + "Squid", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x800822d361335b4d5f352dac293ca4128b5b605f": { + "address": "0x800822d361335b4d5f352dac293ca4128b5b605f", + "symbol": "SYMM", + "decimals": 18, + "name": "Symmio", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x800822d361335b4d5f352dac293ca4128b5b605f.png", + "aggregators": ["CoinGecko", "LiFi", "Rubic", "Squid", "Rango"], + "occurrences": 5 + }, + "0x10f434b3d1cc13a4a79b062dcc25706f64d10d47": { + "address": "0x10f434b3d1cc13a4a79b062dcc25706f64d10d47", + "symbol": "BEPE", + "decimals": 9, + "name": "BEPE", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x10f434b3d1cc13a4a79b062dcc25706f64d10d47.png", + "aggregators": [ + "CoinGecko", + "Rubic", + "Squid", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x52b492a33e447cdb854c7fc19f1e57e8bfa1777d": { + "address": "0x52b492a33e447cdb854c7fc19f1e57e8bfa1777d", + "symbol": "PEPE", + "decimals": 18, + "name": "Based Pepe", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x52b492a33e447cdb854c7fc19f1e57e8bfa1777d.png", + "aggregators": [ + "CoinGecko", + "Rubic", + "Squid", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0xbeef010f9cb27031ad51e3333f9af9c6b1228183": { + "address": "0xbeef010f9cb27031ad51e3333f9af9c6b1228183", + "symbol": "STEAKUSDC", + "decimals": 18, + "name": "Steakhouse USDC (Base) Morpho Vault", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xbeef010f9cb27031ad51e3333f9af9c6b1228183.png", + "aggregators": [ + "CoinGecko", + "LiFi", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0xb34457736aa191ff423f84f5d669f68b231e6c4e": { + "address": "0xb34457736aa191ff423f84f5d669f68b231e6c4e", + "symbol": "AIDOGE", + "decimals": 18, + "name": "AGENT DOGE by Virtuals", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xb34457736aa191ff423f84f5d669f68b231e6c4e.png", + "aggregators": [ + "CoinGecko", + "Rubic", + "Squid", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x5b5dee44552546ecea05edea01dcd7be7aa6144a": { + "address": "0x5b5dee44552546ecea05edea01dcd7be7aa6144a", + "symbol": "TN100X", + "decimals": 18, + "name": "TN100x", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x5b5dee44552546ecea05edea01dcd7be7aa6144a.png", + "aggregators": [ + "CoinGecko", + "Rubic", + "Squid", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0xebff2db643cf955247339c8c6bcd8406308ca437": { + "address": "0xebff2db643cf955247339c8c6bcd8406308ca437", + "symbol": "CHOMP", + "decimals": 18, + "name": "ChompCoin", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xebff2db643cf955247339c8c6bcd8406308ca437.png", + "aggregators": [ + "CoinGecko", + "Rubic", + "Squid", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x0c03ce270b4826ec62e7dd007f0b716068639f7b": { + "address": "0x0c03ce270b4826ec62e7dd007f0b716068639f7b", + "symbol": "TIG", + "decimals": 18, + "name": "The Innovation Game", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x0c03ce270b4826ec62e7dd007f0b716068639f7b.png", + "aggregators": [ + "CoinGecko", + "LiFi", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x2156006a207a793b4069a2b72be58dc2bd759232": { + "address": "0x2156006a207a793b4069a2b72be58dc2bd759232", + "symbol": "COIN", + "decimals": 18, + "name": "SwapBased COIN", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x2156006a207a793b4069a2b72be58dc2bd759232.png", + "aggregators": [ + "CoinGecko", + "Rubic", + "Squid", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0xd07379a755a8f11b57610154861d694b2a0f615a": { + "address": "0xd07379a755a8f11b57610154861d694b2a0f615a", + "symbol": "BASE", + "decimals": 18, + "name": "Base", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xd07379a755a8f11b57610154861d694b2a0f615a.png", + "aggregators": [ + "CoinGecko", + "Rubic", + "Squid", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x41e0fe1317bd6e8944b037cd59b22d428c1434c2": { + "address": "0x41e0fe1317bd6e8944b037cd59b22d428c1434c2", + "symbol": "VIRTU", + "decimals": 18, + "name": "Virtu", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x41e0fe1317bd6e8944b037cd59b22d428c1434c2.png", + "aggregators": [ + "CoinGecko", + "Rubic", + "Squid", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x161e113b8e9bbaefb846f73f31624f6f9607bd44": { + "address": "0x161e113b8e9bbaefb846f73f31624f6f9607bd44", + "symbol": "SIMMI", + "decimals": 18, + "name": "Simmi Token", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x161e113b8e9bbaefb846f73f31624f6f9607bd44.png", + "aggregators": [ + "CoinGecko", + "Rubic", + "Squid", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x0c5142bc58f9a61ab8c3d2085dd2f4e550c5ce0b": { + "address": "0x0c5142bc58f9a61ab8c3d2085dd2f4e550c5ce0b", + "symbol": "RUSSELL", + "decimals": 18, + "name": "RUSSELL", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x0c5142bc58f9a61ab8c3d2085dd2f4e550c5ce0b.png", + "aggregators": [ + "CoinGecko", + "LiFi", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x6b9bb36519538e0c073894e964e90172e1c0b41f": { + "address": "0x6b9bb36519538e0c073894e964e90172e1c0b41f", + "symbol": "WEWE", + "decimals": 18, + "name": "WEWECOIN", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x6b9bb36519538e0c073894e964e90172e1c0b41f.png", + "aggregators": [ + "CoinGecko", + "Rubic", + "Squid", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x9a33406165f562e16c3abd82fd1185482e01b49a": { + "address": "0x9a33406165f562e16c3abd82fd1185482e01b49a", + "symbol": "TALENT", + "decimals": 18, + "name": "Talent Protocol", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x9a33406165f562e16c3abd82fd1185482e01b49a.png", + "aggregators": [ + "CoinGecko", + "LiFi", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x54b659832f59c24cec0e4a2cd193377f1bcefc3c": { + "address": "0x54b659832f59c24cec0e4a2cd193377f1bcefc3c", + "symbol": "AK1111", + "decimals": 18, + "name": "Akashalife", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x54b659832f59c24cec0e4a2cd193377f1bcefc3c.png", + "aggregators": [ + "CoinGecko", + "Rubic", + "Squid", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x1ccb4b14a11e0f2994a7ecbbd4cc69632f4c7c76": { + "address": "0x1ccb4b14a11e0f2994a7ecbbd4cc69632f4c7c76", + "symbol": "CCC", + "decimals": 18, + "name": "Cute Cat Candle", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x1ccb4b14a11e0f2994a7ecbbd4cc69632f4c7c76.png", + "aggregators": [ + "CoinGecko", + "Rubic", + "Squid", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x7d9ce55d54ff3feddb611fc63ff63ec01f26d15f": { + "address": "0x7d9ce55d54ff3feddb611fc63ff63ec01f26d15f", + "symbol": "FUNGI", + "decimals": 9, + "name": "Fungi", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x7d9ce55d54ff3feddb611fc63ff63ec01f26d15f.png", + "aggregators": [ + "CoinGecko", + "LiFi", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x1dd2d631c92b1acdfcdd51a0f7145a50130050c4": { + "address": "0x1dd2d631c92b1acdfcdd51a0f7145a50130050c4", + "symbol": "ALB", + "decimals": 18, + "name": "Alien Base", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x1dd2d631c92b1acdfcdd51a0f7145a50130050c4.png", + "aggregators": [ + "CoinGecko", + "LiFi", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0xe2c86869216ac578bd62a4b8313770d9ee359a05": { + "address": "0xe2c86869216ac578bd62a4b8313770d9ee359a05", + "symbol": "EMT", + "decimals": 18, + "name": "EMAIL Token", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xe2c86869216ac578bd62a4b8313770d9ee359a05.png", + "aggregators": [ + "CoinGecko", + "1inch", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0xbf10dce9775ed5eae22789638da56c33b6c34633": { + "address": "0xbf10dce9775ed5eae22789638da56c33b6c34633", + "symbol": "GENZAI", + "decimals": 18, + "name": "GENZAI by Virtuals", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xbf10dce9775ed5eae22789638da56c33b6c34633.png", + "aggregators": [ + "CoinGecko", + "Rubic", + "Squid", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x98f4779fccb177a6d856dd1dfd78cd15b7cd2af5": { + "address": "0x98f4779fccb177a6d856dd1dfd78cd15b7cd2af5", + "symbol": "MISATO", + "decimals": 18, + "name": "MISATO", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x98f4779fccb177a6d856dd1dfd78cd15b7cd2af5.png", + "aggregators": [ + "CoinGecko", + "Rubic", + "Squid", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x5a7a2bf9ffae199f088b25837dcd7e115cf8e1bb": { + "address": "0x5a7a2bf9ffae199f088b25837dcd7e115cf8e1bb", + "symbol": "IMO", + "decimals": 18, + "name": "IMO", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x5a7a2bf9ffae199f088b25837dcd7e115cf8e1bb.png", + "aggregators": [ + "CoinGecko", + "LiFi", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x686015ebf044a1b8a4be750346be00293a996071": { + "address": "0x686015ebf044a1b8a4be750346be00293a996071", + "symbol": "MINDS", + "decimals": 18, + "name": "Minds", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x686015ebf044a1b8a4be750346be00293a996071.png", + "aggregators": [ + "CoinGecko", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x54330d28ca3357f294334bdc454a032e7f353416": { + "address": "0x54330d28ca3357f294334bdc454a032e7f353416", + "symbol": "OLAS", + "decimals": 18, + "name": "Autonolas", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x54330d28ca3357f294334bdc454a032e7f353416.png", + "aggregators": ["CoinGecko", "LiFi", "Socket", "Rubic", "Rango"], + "occurrences": 5 + }, + "0x514d8e8099286a13486ef6c525c120f51c239b52": { + "address": "0x514d8e8099286a13486ef6c525c120f51c239b52", + "symbol": "OBT", + "decimals": 18, + "name": "Orbiter Finance", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x514d8e8099286a13486ef6c525c120f51c239b52.png", + "aggregators": [ + "CoinGecko", + "LiFi", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x3a38dde9824e18cc4c0a147824f95bf5d608f0b3": { + "address": "0x3a38dde9824e18cc4c0a147824f95bf5d608f0b3", + "symbol": "HAIR", + "decimals": 18, + "name": "HairDAO", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x3a38dde9824e18cc4c0a147824f95bf5d608f0b3.png", + "aggregators": ["CoinGecko", "LiFi", "Socket", "Rubic", "Rango"], + "occurrences": 5 + }, + "0xe997017e0cb0ceb503565f181e9ea922cd979c35": { + "address": "0xe997017e0cb0ceb503565f181e9ea922cd979c35", + "symbol": "LMWR", + "decimals": 18, + "name": "LimeWire", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xe997017e0cb0ceb503565f181e9ea922cd979c35.png", + "aggregators": [ + "CoinGecko", + "LiFi", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x64b88c73a5dfa78d1713fe1b4c69a22d7e0faaa7": { + "address": "0x64b88c73a5dfa78d1713fe1b4c69a22d7e0faaa7", + "symbol": "MAV", + "decimals": 18, + "name": "Maverick Protocol", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x64b88c73a5dfa78d1713fe1b4c69a22d7e0faaa7.png", + "aggregators": [ + "CoinGecko", + "LiFi", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x67f0870bb897f5e1c369976b4a2962d527b9562c": { + "address": "0x67f0870bb897f5e1c369976b4a2962d527b9562c", + "symbol": "DOGE", + "decimals": 18, + "name": "Department Of Government Efficiency", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x67f0870bb897f5e1c369976b4a2962d527b9562c.png", + "aggregators": [ + "CoinGecko", + "Rubic", + "Squid", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x02454a97a8372f3a760a033dbb39e67d73bd6d87": { + "address": "0x02454a97a8372f3a760a033dbb39e67d73bd6d87", + "symbol": "KATA", + "decimals": 18, + "name": "Katana Inu", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x02454a97a8372f3a760a033dbb39e67d73bd6d87.png", + "aggregators": [ + "CoinGecko", + "Rubic", + "Squid", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x490a4b510d0ea9f835d2df29eb73b4fca5071937": { + "address": "0x490a4b510d0ea9f835d2df29eb73b4fca5071937", + "symbol": "VITA", + "decimals": 18, + "name": "VitaDAO Token", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x490a4b510d0ea9f835d2df29eb73b4fca5071937.png", + "aggregators": ["CoinGecko", "LiFi", "Socket", "Rubic", "Rango"], + "occurrences": 5 + }, + "0xeff2a458e464b07088bdb441c21a42ab4b61e07e": { + "address": "0xeff2a458e464b07088bdb441c21a42ab4b61e07e", + "symbol": "PDT", + "decimals": 18, + "name": "ParagonsDAO", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xeff2a458e464b07088bdb441c21a42ab4b61e07e.png", + "aggregators": [ + "CoinGecko", + "LiFi", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x2dad3a13ef0c6366220f989157009e501e7938f8": { + "address": "0x2dad3a13ef0c6366220f989157009e501e7938f8", + "symbol": "EXTRA", + "decimals": 18, + "name": "Extra Finance", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x2dad3a13ef0c6366220f989157009e501e7938f8.png", + "aggregators": [ + "CoinGecko", + "LiFi", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x623cd3a3edf080057892aaf8d773bbb7a5c9b6e9": { + "address": "0x623cd3a3edf080057892aaf8d773bbb7a5c9b6e9", + "symbol": "SKYA", + "decimals": 18, + "name": "Sekuya Multiverse", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x623cd3a3edf080057892aaf8d773bbb7a5c9b6e9.png", + "aggregators": [ + "CoinGecko", + "LiFi", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0xfe550bffb51eb645ea3b324d772a19ac449e92c5": { + "address": "0xfe550bffb51eb645ea3b324d772a19ac449e92c5", + "symbol": "IXS", + "decimals": 18, + "name": "IX Swap", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xfe550bffb51eb645ea3b324d772a19ac449e92c5.png", + "aggregators": [ + "CoinGecko", + "LiFi", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x52c2b317eb0bb61e650683d2f287f56c413e4cf6": { + "address": "0x52c2b317eb0bb61e650683d2f287f56c413e4cf6", + "symbol": "TREE", + "decimals": 18, + "name": "Tree", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x52c2b317eb0bb61e650683d2f287f56c413e4cf6.png", + "aggregators": [ + "CoinGecko", + "LiFi", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x91ad1b44913cd1b8241a4ff1e2eaa198da6bf4c9": { + "address": "0x91ad1b44913cd1b8241a4ff1e2eaa198da6bf4c9", + "symbol": "ALU", + "decimals": 18, + "name": "Altura", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x91ad1b44913cd1b8241a4ff1e2eaa198da6bf4c9.png", + "aggregators": [ + "CoinGecko", + "LiFi", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0xb8a9a92dfe1303728394dd0f8362a09962dec24f": { + "address": "0xb8a9a92dfe1303728394dd0f8362a09962dec24f", + "symbol": "IBEX", + "decimals": 18, + "name": "Impermax", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xb8a9a92dfe1303728394dd0f8362a09962dec24f.png", + "aggregators": [ + "CoinGecko", + "LiFi", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x4b556f3a476b58be7f35df77edd68fbe5076f706": { + "address": "0x4b556f3a476b58be7f35df77edd68fbe5076f706", + "symbol": "MSS", + "decimals": 18, + "name": "MintStakeShare", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x4b556f3a476b58be7f35df77edd68fbe5076f706.png", + "aggregators": [ + "CoinGecko", + "Rubic", + "Squid", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x57f5e098cad7a3d1eed53991d4d66c45c9af7812": { + "address": "0x57f5e098cad7a3d1eed53991d4d66c45c9af7812", + "symbol": "WUSDM", + "decimals": 18, + "name": "Wrapped USDM", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x57f5e098cad7a3d1eed53991d4d66c45c9af7812.png", + "aggregators": [ + "CoinGecko", + "LiFi", + "Socket", + "Rubic", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0xc7edf7b7b3667a06992508e7b156eff794a9e1c8": { + "address": "0xc7edf7b7b3667a06992508e7b156eff794a9e1c8", + "symbol": "XPRT", + "decimals": 6, + "name": "Persistence One", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xc7edf7b7b3667a06992508e7b156eff794a9e1c8.png", + "aggregators": [ + "CoinGecko", + "Rubic", + "Squid", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x46777c76dbbe40fabb2aab99e33ce20058e76c59": { + "address": "0x46777c76dbbe40fabb2aab99e33ce20058e76c59", + "symbol": "L3", + "decimals": 18, + "name": "Layer3", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x46777c76dbbe40fabb2aab99e33ce20058e76c59.png", + "aggregators": [ + "CoinGecko", + "LiFi", + "Rubic", + "Squid", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0xef0b105b4f2ce61d2a7ae62d03b1f4cb6c4fbeec": { + "address": "0xef0b105b4f2ce61d2a7ae62d03b1f4cb6c4fbeec", + "symbol": "SLN", + "decimals": 18, + "name": "Smart Layer Network", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xef0b105b4f2ce61d2a7ae62d03b1f4cb6c4fbeec.png", + "aggregators": [ + "CoinGecko", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x54bc229d1cb15f8b6415efeab4290a40bc8b7d84": { + "address": "0x54bc229d1cb15f8b6415efeab4290a40bc8b7d84", + "symbol": "DHT", + "decimals": 18, + "name": "dHEDGE DAO", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x54bc229d1cb15f8b6415efeab4290a40bc8b7d84.png", + "aggregators": [ + "CoinGecko", + "LiFi", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x24569d33653c404f90af10a2b98d6e0030d3d267": { + "address": "0x24569d33653c404f90af10a2b98d6e0030d3d267", + "symbol": "UNA", + "decimals": 18, + "name": "Unagi Token", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x24569d33653c404f90af10a2b98d6e0030d3d267.png", + "aggregators": [ + "CoinGecko", + "LiFi", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x0a953dd9fc813fefaf6015b804c9dfa0624690c0": { + "address": "0x0a953dd9fc813fefaf6015b804c9dfa0624690c0", + "symbol": "COPI", + "decimals": 18, + "name": "Cornucopias", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x0a953dd9fc813fefaf6015b804c9dfa0624690c0.png", + "aggregators": [ + "CoinGecko", + "LiFi", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x3c3860d89b81c91974fc1f8a41aeeef604c17058": { + "address": "0x3c3860d89b81c91974fc1f8a41aeeef604c17058", + "symbol": "KAI", + "decimals": 18, + "name": "Kinetix Finance Token", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x3c3860d89b81c91974fc1f8a41aeeef604c17058.png", + "aggregators": ["LiFi", "Socket", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 5 + }, + "0xca73ed1815e5915489570014e024b7ebe65de679": { + "address": "0xca73ed1815e5915489570014e024b7ebe65de679", + "symbol": "ODOS", + "decimals": 18, + "name": "Odos Token", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xca73ed1815e5915489570014e024b7ebe65de679.png", + "aggregators": ["CoinGecko", "LiFi", "Rubic", "Rango"], + "occurrences": 4 + }, + "0x662015ec830df08c0fc45896fab726542e8ac09e": { + "address": "0x662015ec830df08c0fc45896fab726542e8ac09e", + "symbol": "SNT", + "decimals": 18, + "name": "Status Network Token", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x662015ec830df08c0fc45896fab726542e8ac09e.png", + "aggregators": ["UniswapLabs", "LiFi", "Socket", "Rango"], + "occurrences": 4 + }, + "0x92dc4ab92eb16e781559e612f349916988013d5a": { + "address": "0x92dc4ab92eb16e781559e612f349916988013d5a", + "symbol": "$WSB", + "decimals": 18, + "name": "Agent Zero", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x92dc4ab92eb16e781559e612f349916988013d5a.png", + "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0xff62ddfa80e513114c3a0bf4d6ffff1c1d17aadf": { + "address": "0xff62ddfa80e513114c3a0bf4d6ffff1c1d17aadf", + "symbol": "BOE", + "decimals": 18, + "name": "Boe", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xff62ddfa80e513114c3a0bf4d6ffff1c1d17aadf.png", + "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0x6fd31533621452aac187c9cbdfdfb6ef50d28149": { + "address": "0x6fd31533621452aac187c9cbdfdfb6ef50d28149", + "symbol": "$ESAB", + "decimals": 18, + "name": "ESAB", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x6fd31533621452aac187c9cbdfdfb6ef50d28149.png", + "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0xed1779845520339693cdbffec49a74246e7d671b": { + "address": "0xed1779845520339693cdbffec49a74246e7d671b", + "symbol": "SAM", + "decimals": 18, + "name": "Samurai Starter", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xed1779845520339693cdbffec49a74246e7d671b.png", + "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0xb488fcb23333e7baa28d1dfd7b69a5d3a8bfeb3a": { + "address": "0xb488fcb23333e7baa28d1dfd7b69a5d3a8bfeb3a", + "symbol": "TERMINAL", + "decimals": 18, + "name": "Terminal", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xb488fcb23333e7baa28d1dfd7b69a5d3a8bfeb3a.png", + "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0xc8e51fefd7d595c217c7ab641513faa4ad522b26": { + "address": "0xc8e51fefd7d595c217c7ab641513faa4ad522b26", + "symbol": "CRAPPY", + "decimals": 18, + "name": "Crappy Bird CTO", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xc8e51fefd7d595c217c7ab641513faa4ad522b26.png", + "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0x25e1c298f100d7c600e9e44d46788c1ebbd4f69b": { + "address": "0x25e1c298f100d7c600e9e44d46788c1ebbd4f69b", + "symbol": "P", + "decimals": 18, + "name": "Pike Finance", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x25e1c298f100d7c600e9e44d46788c1ebbd4f69b.png", + "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0xc9b6ef062fab19d3f1eabc36b1f2e852af1acd18": { + "address": "0xc9b6ef062fab19d3f1eabc36b1f2e852af1acd18", + "symbol": "BALT", + "decimals": 18, + "name": "Brett's cat", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xc9b6ef062fab19d3f1eabc36b1f2e852af1acd18.png", + "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0xca4569949699d56e1834efe9f58747ca0f151b01": { + "address": "0xca4569949699d56e1834efe9f58747ca0f151b01", + "symbol": "TMAI", + "decimals": 18, + "name": "Token Metrics AI", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xca4569949699d56e1834efe9f58747ca0f151b01.png", + "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0x15ac90165f8b45a80534228bdcb124a011f62fee": { + "address": "0x15ac90165f8b45a80534228bdcb124a011f62fee", + "symbol": "MOEW", + "decimals": 18, + "name": "MOEW", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x15ac90165f8b45a80534228bdcb124a011f62fee.png", + "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0x91da780bc7f4b7cf19abe90411a2a296ec5ff787": { + "address": "0x91da780bc7f4b7cf19abe90411a2a296ec5ff787", + "symbol": "HINT", + "decimals": 18, + "name": "Hive Intelligence", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x91da780bc7f4b7cf19abe90411a2a296ec5ff787.png", + "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0x8216e8143902a8fe0b676006bc25eb23829c123d": { + "address": "0x8216e8143902a8fe0b676006bc25eb23829c123d", + "symbol": "WOW", + "decimals": 18, + "name": "Wow", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x8216e8143902a8fe0b676006bc25eb23829c123d.png", + "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0x9ef1139e6b420cc929dd912a5a7adeced6f12e91": { + "address": "0x9ef1139e6b420cc929dd912a5a7adeced6f12e91", + "symbol": "FORCE", + "decimals": 18, + "name": "Force", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x9ef1139e6b420cc929dd912a5a7adeced6f12e91.png", + "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0xbeb0fd48c2ba0f1aacad2814605f09e08a96b94e": { + "address": "0xbeb0fd48c2ba0f1aacad2814605f09e08a96b94e", + "symbol": "GME", + "decimals": 9, + "name": "GME (Base)", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xbeb0fd48c2ba0f1aacad2814605f09e08a96b94e.png", + "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0x4e73420dcc85702ea134d91a262c8ffc0a72aa70": { + "address": "0x4e73420dcc85702ea134d91a262c8ffc0a72aa70", + "symbol": "SKIPUP", + "decimals": 8, + "name": "SKI MASK PUP", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x4e73420dcc85702ea134d91a262c8ffc0a72aa70.png", + "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0x506beb7965fc7053059006c7ab4c62c02c2d989f": { + "address": "0x506beb7965fc7053059006c7ab4c62c02c2d989f", + "symbol": "BWORM", + "decimals": 18, + "name": "Brain Worms", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x506beb7965fc7053059006c7ab4c62c02c2d989f.png", + "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0x85cf87e35bf9d20380889016bac20e519324d928": { + "address": "0x85cf87e35bf9d20380889016bac20e519324d928", + "symbol": "SKINUT", + "decimals": 18, + "name": "Skimask Pnut", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x85cf87e35bf9d20380889016bac20e519324d928.png", + "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0xeec468333ccc16d4bf1cef497a56cf8c0aae4ca3": { + "address": "0xeec468333ccc16d4bf1cef497a56cf8c0aae4ca3", + "symbol": "ANZ", + "decimals": 18, + "name": "Anzen Finance", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xeec468333ccc16d4bf1cef497a56cf8c0aae4ca3.png", + "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0x80f6bcedd3d4fa1035285affa30e38f464db3895": { + "address": "0x80f6bcedd3d4fa1035285affa30e38f464db3895", + "symbol": "BET", + "decimals": 18, + "name": "BetBase", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x80f6bcedd3d4fa1035285affa30e38f464db3895.png", + "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0x12e96c2bfea6e835cf8dd38a5834fa61cf723736": { + "address": "0x12e96c2bfea6e835cf8dd38a5834fa61cf723736", + "symbol": "UDOGE", + "decimals": 18, + "name": "Wrapped DOGE (Universal)", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x12e96c2bfea6e835cf8dd38a5834fa61cf723736.png", + "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0xd022723a5005f53c95b51d1822f42b1a3366ee4d": { + "address": "0xd022723a5005f53c95b51d1822f42b1a3366ee4d", + "symbol": "COIN", + "decimals": 18, + "name": "COIN", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xd022723a5005f53c95b51d1822f42b1a3366ee4d.png", + "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0xa4dc5a82839a148ff172b5b8ba9d52e681fd2261": { + "address": "0xa4dc5a82839a148ff172b5b8ba9d52e681fd2261", + "symbol": "PICA", + "decimals": 18, + "name": "Pineapple Cat", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xa4dc5a82839a148ff172b5b8ba9d52e681fd2261.png", + "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0xf31e6d62bfc485857af2186eb3d8ee94b4379fed": { + "address": "0xf31e6d62bfc485857af2186eb3d8ee94b4379fed", + "symbol": "CHIDO", + "decimals": 18, + "name": "Chinese Doge Wow", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xf31e6d62bfc485857af2186eb3d8ee94b4379fed.png", + "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0xa1b9d812926a529d8b002e69fcd070c8275ec73c": { + "address": "0xa1b9d812926a529d8b002e69fcd070c8275ec73c", + "symbol": "JELLI", + "decimals": 9, + "name": "Jelli", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xa1b9d812926a529d8b002e69fcd070c8275ec73c.png", + "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0x0dd7913197bfb6d2b1f03f9772ced06298f1a644": { + "address": "0x0dd7913197bfb6d2b1f03f9772ced06298f1a644", + "symbol": "MBDAO", + "decimals": 18, + "name": "Moonboots DAO", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x0dd7913197bfb6d2b1f03f9772ced06298f1a644.png", + "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0x2075f6e2147d4ac26036c9b4084f8e28b324397d": { + "address": "0x2075f6e2147d4ac26036c9b4084f8e28b324397d", + "symbol": "CTO", + "decimals": 18, + "name": "BaseCTO", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x2075f6e2147d4ac26036c9b4084f8e28b324397d.png", + "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0x0718f45bbf4781ce891e4e18182f025725f0fc95": { + "address": "0x0718f45bbf4781ce891e4e18182f025725f0fc95", + "symbol": "MISSER", + "decimals": 18, + "name": "Misser", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x0718f45bbf4781ce891e4e18182f025725f0fc95.png", + "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0xf395680803b269b62702554723e05b373171b07b": { + "address": "0xf395680803b269b62702554723e05b373171b07b", + "symbol": "BRATT", + "decimals": 18, + "name": "Son of Brett", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xf395680803b269b62702554723e05b373171b07b.png", + "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0xf3708859c178709d5319ad5405bc81511b72b9e9": { + "address": "0xf3708859c178709d5319ad5405bc81511b72b9e9", + "symbol": "AETHER", + "decimals": 18, + "name": "Aethernet", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xf3708859c178709d5319ad5405bc81511b72b9e9.png", + "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0x3636a7734b669ce352e97780df361ce1f809c58c": { + "address": "0x3636a7734b669ce352e97780df361ce1f809c58c", + "symbol": "$ROCKY", + "decimals": 18, + "name": "ROCKY", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x3636a7734b669ce352e97780df361ce1f809c58c.png", + "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0xa3a34a0d9a08ccddb6ed422ac0a28a06731335aa": { + "address": "0xa3a34a0d9a08ccddb6ed422ac0a28a06731335aa", + "symbol": "UADA", + "decimals": 18, + "name": "Wrapped ADA (Universal)", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xa3a34a0d9a08ccddb6ed422ac0a28a06731335aa.png", + "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0xf857b2764095b9a5f57c3e71f82f297fe4e45334": { + "address": "0xf857b2764095b9a5f57c3e71f82f297fe4e45334", + "symbol": "DEFAI", + "decimals": 18, + "name": "DeFAI", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xf857b2764095b9a5f57c3e71f82f297fe4e45334.png", + "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0xe0023e73aab4fe9a22f059a9d27e857e027ee3dc": { + "address": "0xe0023e73aab4fe9a22f059a9d27e857e027ee3dc", + "symbol": "RWAX", + "decimals": 18, + "name": "RWAX", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xe0023e73aab4fe9a22f059a9d27e857e027ee3dc.png", + "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0x4b61e2f1bbdee6d746209a693156952936f1702c": { + "address": "0x4b61e2f1bbdee6d746209a693156952936f1702c", + "symbol": "LAMBOW", + "decimals": 18, + "name": "Based Lambow", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x4b61e2f1bbdee6d746209a693156952936f1702c.png", + "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0x689644b86075ed61c647596862c7403e1c474dbf": { + "address": "0x689644b86075ed61c647596862c7403e1c474dbf", + "symbol": "BAMBOO", + "decimals": 18, + "name": "Bamboo on Base", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x689644b86075ed61c647596862c7403e1c474dbf.png", + "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0x36912b5cf63e509f18e53ac98b3012fa79e77bf5": { + "address": "0x36912b5cf63e509f18e53ac98b3012fa79e77bf5", + "symbol": "FUEGO", + "decimals": 18, + "name": "Fuego", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x36912b5cf63e509f18e53ac98b3012fa79e77bf5.png", + "aggregators": ["CoinGecko", "LiFi", "Rubic", "Rango"], + "occurrences": 4 + }, + "0x38d513ec43dda20f323f26c7bef74c5cf80b6477": { + "address": "0x38d513ec43dda20f323f26c7bef74c5cf80b6477", + "symbol": "CARLO", + "decimals": 18, + "name": "Carlo", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x38d513ec43dda20f323f26c7bef74c5cf80b6477.png", + "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0x655a51e6803faf50d4ace80fa501af2f29c856cf": { + "address": "0x655a51e6803faf50d4ace80fa501af2f29c856cf", + "symbol": "PAID", + "decimals": 18, + "name": "PAID", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x655a51e6803faf50d4ace80fa501af2f29c856cf.png", + "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0x589c8e8fe013133b41abf546c819787a75688690": { + "address": "0x589c8e8fe013133b41abf546c819787a75688690", + "symbol": "SQUOGE", + "decimals": 18, + "name": "DogeSquatch", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x589c8e8fe013133b41abf546c819787a75688690.png", + "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0x01ed85d73645523b0d62c7a8e35d03601cfd679b": { + "address": "0x01ed85d73645523b0d62c7a8e35d03601cfd679b", + "symbol": "NABLA", + "decimals": 18, + "name": "Nabla", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x01ed85d73645523b0d62c7a8e35d03601cfd679b.png", + "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0x64fcc3a02eeeba05ef701b7eed066c6ebd5d4e51": { + "address": "0x64fcc3a02eeeba05ef701b7eed066c6ebd5d4e51", + "symbol": "SPECTRA", + "decimals": 18, + "name": "Spectra", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x64fcc3a02eeeba05ef701b7eed066c6ebd5d4e51.png", + "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0x2d57c47bc5d2432feeedf2c9150162a9862d3ccf": { + "address": "0x2d57c47bc5d2432feeedf2c9150162a9862d3ccf", + "symbol": "DICKBUTT", + "decimals": 18, + "name": "Dickbutt", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x2d57c47bc5d2432feeedf2c9150162a9862d3ccf.png", + "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0xfcb49c1545d1d13272467f0d94e57a9aca39725c": { + "address": "0xfcb49c1545d1d13272467f0d94e57a9aca39725c", + "symbol": "GRASS", + "decimals": 18, + "name": "Grass", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xfcb49c1545d1d13272467f0d94e57a9aca39725c.png", + "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0x5babfc2f240bc5de90eb7e19d789412db1dec402": { + "address": "0x5babfc2f240bc5de90eb7e19d789412db1dec402", + "symbol": "CIRCLE", + "decimals": 18, + "name": "Burning Circle", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x5babfc2f240bc5de90eb7e19d789412db1dec402.png", + "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0xa0a2e84f6f19c09a095d4a83ac8de5a32d303a13": { + "address": "0xa0a2e84f6f19c09a095d4a83ac8de5a32d303a13", + "symbol": "LILB", + "decimals": 18, + "name": "Lil Brett", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xa0a2e84f6f19c09a095d4a83ac8de5a32d303a13.png", + "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0xd3741ac9b3f280b0819191e4b30be4ecd990771e": { + "address": "0xd3741ac9b3f280b0819191e4b30be4ecd990771e", + "symbol": "DOOMER", + "decimals": 8, + "name": "DOOMER", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xd3741ac9b3f280b0819191e4b30be4ecd990771e.png", + "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0x0c41f1fc9022feb69af6dc666abfe73c9ffda7ce": { + "address": "0x0c41f1fc9022feb69af6dc666abfe73c9ffda7ce", + "symbol": "BTCB", + "decimals": 18, + "name": "Bitcoin on Base", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x0c41f1fc9022feb69af6dc666abfe73c9ffda7ce.png", + "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0xe388a9a5bfd958106adeb79df10084a8b1d9a5ab": { + "address": "0xe388a9a5bfd958106adeb79df10084a8b1d9a5ab", + "symbol": "LORDY", + "decimals": 18, + "name": "Lordy", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xe388a9a5bfd958106adeb79df10084a8b1d9a5ab.png", + "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0x7f6f6720a73c0f54f95ab343d7efeb1fa991f4f7": { + "address": "0x7f6f6720a73c0f54f95ab343d7efeb1fa991f4f7", + "symbol": "WIF", + "decimals": 18, + "name": "DogWifHat", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x7f6f6720a73c0f54f95ab343d7efeb1fa991f4f7.png", + "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0x120edc8e391ba4c94cb98bb65d8856ae6ec1525f": { + "address": "0x120edc8e391ba4c94cb98bb65d8856ae6ec1525f", + "symbol": "LOUDER", + "decimals": 18, + "name": "LOUDER", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x120edc8e391ba4c94cb98bb65d8856ae6ec1525f.png", + "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0x3c5fdf0ee37d62c774025599e3b692d027746e24": { + "address": "0x3c5fdf0ee37d62c774025599e3b692d027746e24", + "symbol": "BONKEY", + "decimals": 18, + "name": "Bonkey", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x3c5fdf0ee37d62c774025599e3b692d027746e24.png", + "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0x1308ae20e66e43d575a76b5dfb30771a50c9256a": { + "address": "0x1308ae20e66e43d575a76b5dfb30771a50c9256a", + "symbol": "BFROG", + "decimals": 18, + "name": "BaseFrog", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x1308ae20e66e43d575a76b5dfb30771a50c9256a.png", + "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0xcde90558fc317c69580deeaf3efc509428df9080": { + "address": "0xcde90558fc317c69580deeaf3efc509428df9080", + "symbol": "NORMILIO", + "decimals": 18, + "name": "Normilio", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xcde90558fc317c69580deeaf3efc509428df9080.png", + "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0xdc46c1e93b71ff9209a0f8076a9951569dc35855": { + "address": "0xdc46c1e93b71ff9209a0f8076a9951569dc35855", + "symbol": "MYST", + "decimals": 18, + "name": "MYSTCL", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xdc46c1e93b71ff9209a0f8076a9951569dc35855.png", + "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0x8aaf9fa1ee649eade46201394a9b8e06312f0f17": { + "address": "0x8aaf9fa1ee649eade46201394a9b8e06312f0f17", + "symbol": "BOOF", + "decimals": 18, + "name": "Boofus by Virtuals", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x8aaf9fa1ee649eade46201394a9b8e06312f0f17.png", + "aggregators": ["CoinGecko", "Rubic", "Squid", "Rango"], + "occurrences": 4 + }, + "0x4366c1568fd6167eee67d25ef6980da38e3421bc": { + "address": "0x4366c1568fd6167eee67d25ef6980da38e3421bc", + "symbol": "HOPPY", + "decimals": 18, + "name": "Based Hoppy", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x4366c1568fd6167eee67d25ef6980da38e3421bc.png", + "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0x814fe70e85025bec87d4ad3f3b713bdcaac0579b": { + "address": "0x814fe70e85025bec87d4ad3f3b713bdcaac0579b", + "symbol": "BARIO", + "decimals": 18, + "name": "Based Bario", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x814fe70e85025bec87d4ad3f3b713bdcaac0579b.png", + "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0x2c002ffec41568d138acc36f5894d6156398d539": { + "address": "0x2c002ffec41568d138acc36f5894d6156398d539", + "symbol": "LUCKY", + "decimals": 18, + "name": "Lucky Dog", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x2c002ffec41568d138acc36f5894d6156398d539.png", + "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0xbbf81ddc9fb90cf9146b495ce0546a3460fd1769": { + "address": "0xbbf81ddc9fb90cf9146b495ce0546a3460fd1769", + "symbol": "BRAZA", + "decimals": 18, + "name": "BRAZA by Virtuals", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xbbf81ddc9fb90cf9146b495ce0546a3460fd1769.png", + "aggregators": ["CoinGecko", "Rubic", "Squid", "Rango"], + "occurrences": 4 + }, + "0xf8b1b47aa748f5c7b5d0e80c726a843913eb573a": { + "address": "0xf8b1b47aa748f5c7b5d0e80c726a843913eb573a", + "symbol": "LTAI", + "decimals": 18, + "name": "LibertAI", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xf8b1b47aa748f5c7b5d0e80c726a843913eb573a.png", + "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0x84993768ba82ebc6101a5440ea41be41310ea12f": { + "address": "0x84993768ba82ebc6101a5440ea41be41310ea12f", + "symbol": "MXNBC", + "decimals": 18, + "name": "Rekt Burgundy by Virtuals", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x84993768ba82ebc6101a5440ea41be41310ea12f.png", + "aggregators": ["CoinGecko", "Rubic", "Squid", "Rango"], + "occurrences": 4 + }, + "0xc438b0c0e80a8fa1b36898d1b36a3fc2ec371c54": { + "address": "0xc438b0c0e80a8fa1b36898d1b36a3fc2ec371c54", + "symbol": "BLEP", + "decimals": 18, + "name": "Blep Super Meme", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xc438b0c0e80a8fa1b36898d1b36a3fc2ec371c54.png", + "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0x38029c62dfa30d9fd3cadf4c64e9b2ab21dbda17": { + "address": "0x38029c62dfa30d9fd3cadf4c64e9b2ab21dbda17", + "symbol": "DUBBZ", + "decimals": 18, + "name": "Dubbz", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x38029c62dfa30d9fd3cadf4c64e9b2ab21dbda17.png", + "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0xbdf317f9c153246c429f23f4093087164b145390": { + "address": "0xbdf317f9c153246c429f23f4093087164b145390", + "symbol": "AIFUN", + "decimals": 18, + "name": "AI Agent Layer", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xbdf317f9c153246c429f23f4093087164b145390.png", + "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0xed1978d01d4a8a9d6a43ac79403d5b8dfbed739b": { + "address": "0xed1978d01d4a8a9d6a43ac79403d5b8dfbed739b", + "symbol": "SACA", + "decimals": 18, + "name": "Sandwich Cat", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xed1978d01d4a8a9d6a43ac79403d5b8dfbed739b.png", + "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0xe8aae6251c6cf39927b0ff31399030c60bec798f": { + "address": "0xe8aae6251c6cf39927b0ff31399030c60bec798f", + "symbol": "SUMI", + "decimals": 18, + "name": "SUMI", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xe8aae6251c6cf39927b0ff31399030c60bec798f.png", + "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0x17d8217c0f4b4742aaace053281f42eb05ab211d": { + "address": "0x17d8217c0f4b4742aaace053281f42eb05ab211d", + "symbol": "CLOUD", + "decimals": 18, + "name": "CloudBase", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x17d8217c0f4b4742aaace053281f42eb05ab211d.png", + "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0x3d1d651761d535df881740ab50ba4bd8a2ec2c00": { + "address": "0x3d1d651761d535df881740ab50ba4bd8a2ec2c00", + "symbol": "SYNDOG", + "decimals": 18, + "name": "Synthesizer Dog", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x3d1d651761d535df881740ab50ba4bd8a2ec2c00.png", + "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0xb0e87796380172f911214208df966a84cceaaf82": { + "address": "0xb0e87796380172f911214208df966a84cceaaf82", + "symbol": "DOM", + "decimals": 18, + "name": "DOM", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xb0e87796380172f911214208df966a84cceaaf82.png", + "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0xf5bc3439f53a45607ccad667abc7daf5a583633f": { + "address": "0xf5bc3439f53a45607ccad667abc7daf5a583633f", + "symbol": "AGENT", + "decimals": 18, + "name": "AgentLayer", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xf5bc3439f53a45607ccad667abc7daf5a583633f.png", + "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0xcc7ff230365bd730ee4b352cc2492cedac49383e": { + "address": "0xcc7ff230365bd730ee4b352cc2492cedac49383e", + "symbol": "HYUSD", + "decimals": 18, + "name": "High Yield USD (Base)", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xcc7ff230365bd730ee4b352cc2492cedac49383e.png", + "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0xb89d354ad1b0d95a48b3de4607f75a8cd710c1ba": { + "address": "0xb89d354ad1b0d95a48b3de4607f75a8cd710c1ba", + "symbol": "LAY", + "decimals": 18, + "name": "Loomlay", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xb89d354ad1b0d95a48b3de4607f75a8cd710c1ba.png", + "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0x2496a9af81a87ed0b17f6edeaf4ac57671d24f38": { + "address": "0x2496a9af81a87ed0b17f6edeaf4ac57671d24f38", + "symbol": "TRUFFI", + "decimals": 9, + "name": "Truffi", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x2496a9af81a87ed0b17f6edeaf4ac57671d24f38.png", + "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0x097b1b242d3ed90e191c5f83a62f41abe16f6ceb": { + "address": "0x097b1b242d3ed90e191c5f83a62f41abe16f6ceb", + "symbol": "TOKITO", + "decimals": 18, + "name": "Tokito", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x097b1b242d3ed90e191c5f83a62f41abe16f6ceb.png", + "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0xf8a99f2bf2ce5bb6ce4aafcf070d8723bc904aa2": { + "address": "0xf8a99f2bf2ce5bb6ce4aafcf070d8723bc904aa2", + "symbol": "CHRETT", + "decimals": 18, + "name": "Chinese Brett", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xf8a99f2bf2ce5bb6ce4aafcf070d8723bc904aa2.png", + "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0x8b67f2e56139ca052a7ec49cbcd1aa9c83f2752a": { + "address": "0x8b67f2e56139ca052a7ec49cbcd1aa9c83f2752a", + "symbol": "FLIES", + "decimals": 18, + "name": "MUTATIO", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x8b67f2e56139ca052a7ec49cbcd1aa9c83f2752a.png", + "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0x64cb1bafc59bf93aeb90676885c63540cf4f4106": { + "address": "0x64cb1bafc59bf93aeb90676885c63540cf4f4106", + "symbol": "COIN", + "decimals": 18, + "name": "Coin6900", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x64cb1bafc59bf93aeb90676885c63540cf4f4106.png", + "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0x7f65323e468939073ef3b5287c73f13951b0ff5b": { + "address": "0x7f65323e468939073ef3b5287c73f13951b0ff5b", + "symbol": "BLUE", + "decimals": 18, + "name": "Blue", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x7f65323e468939073ef3b5287c73f13951b0ff5b.png", + "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0xe161be4a74ab8fa8706a2d03e67c02318d0a0ad6": { + "address": "0xe161be4a74ab8fa8706a2d03e67c02318d0a0ad6", + "symbol": "APETARDIO", + "decimals": 18, + "name": "Apetardio", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xe161be4a74ab8fa8706a2d03e67c02318d0a0ad6.png", + "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0xf8f97a79a3fa77104fab4814e3ed93899777de0d": { + "address": "0xf8f97a79a3fa77104fab4814e3ed93899777de0d", + "symbol": "GDP", + "decimals": 18, + "name": "GertrudeDataPig", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xf8f97a79a3fa77104fab4814e3ed93899777de0d.png", + "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0x99b2b1a2adb02b38222adcd057783d7e5d1fcc7d": { + "address": "0x99b2b1a2adb02b38222adcd057783d7e5d1fcc7d", + "symbol": "WLTH", + "decimals": 18, + "name": "Common Wealth", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x99b2b1a2adb02b38222adcd057783d7e5d1fcc7d.png", + "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0x3639e6f4c224ebd1bf6373c3d97917d33e0492bb": { + "address": "0x3639e6f4c224ebd1bf6373c3d97917d33e0492bb", + "symbol": "PACA", + "decimals": 18, + "name": "Paca AI", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x3639e6f4c224ebd1bf6373c3d97917d33e0492bb.png", + "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0x653a143b8d15c565c6623d1f168cfbec1056d872": { + "address": "0x653a143b8d15c565c6623d1f168cfbec1056d872", + "symbol": "KURBI", + "decimals": 9, + "name": "kurbi", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x653a143b8d15c565c6623d1f168cfbec1056d872.png", + "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0xf1143f3a8d76f1ca740d29d5671d365f66c44ed1": { + "address": "0xf1143f3a8d76f1ca740d29d5671d365f66c44ed1", + "symbol": "UBTC", + "decimals": 18, + "name": "Wrapped Bitcoin (Universal)", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xf1143f3a8d76f1ca740d29d5671d365f66c44ed1.png", + "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0xfc5462143a3178cf044e97c491f6bcb5e38f173e": { + "address": "0xfc5462143a3178cf044e97c491f6bcb5e38f173e", + "symbol": "BERF", + "decimals": 18, + "name": "BERF", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xfc5462143a3178cf044e97c491f6bcb5e38f173e.png", + "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0x8c81b4c816d66d36c4bf348bdec01dbcbc70e987": { + "address": "0x8c81b4c816d66d36c4bf348bdec01dbcbc70e987", + "symbol": "BRIUN", + "decimals": 18, + "name": "Briun Armstrung", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x8c81b4c816d66d36c4bf348bdec01dbcbc70e987.png", + "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0x2f20cf3466f80a5f7f532fca553c8cbc9727fef6": { + "address": "0x2f20cf3466f80a5f7f532fca553c8cbc9727fef6", + "symbol": "AKUMA", + "decimals": 18, + "name": "Akuma Inu", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x2f20cf3466f80a5f7f532fca553c8cbc9727fef6.png", + "aggregators": ["CoinGecko", "1inch", "Rubic", "Rango"], + "occurrences": 4 + }, + "0xbf4db8b7a679f89ef38125d5f84dd1446af2ea3b": { + "address": "0xbf4db8b7a679f89ef38125d5f84dd1446af2ea3b", + "symbol": "BLEU", + "decimals": 18, + "name": "Le Bleu Elefant", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xbf4db8b7a679f89ef38125d5f84dd1446af2ea3b.png", + "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0x6b82297c6f1f9c3b1f501450d2ee7c37667ab70d": { + "address": "0x6b82297c6f1f9c3b1f501450d2ee7c37667ab70d", + "symbol": "GIF", + "decimals": 18, + "name": "goatwifhat", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x6b82297c6f1f9c3b1f501450d2ee7c37667ab70d.png", + "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0x0521aaa7c96e25afee79fdd4f1bb48f008ae4eac": { + "address": "0x0521aaa7c96e25afee79fdd4f1bb48f008ae4eac", + "symbol": "FDREAM", + "decimals": 18, + "name": "FDREAM", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x0521aaa7c96e25afee79fdd4f1bb48f008ae4eac.png", + "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0xe2b1dc2d4a3b4e59fdf0c47b71a7a86391a8b35a": { + "address": "0xe2b1dc2d4a3b4e59fdf0c47b71a7a86391a8b35a", + "symbol": "RWA", + "decimals": 18, + "name": "RWA Inc", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xe2b1dc2d4a3b4e59fdf0c47b71a7a86391a8b35a.png", + "aggregators": ["CoinGecko", "Socket", "Rubic", "Rango"], + "occurrences": 4 + }, + "0x33ad778e6c76237d843c52d7cafc972bb7cf8729": { + "address": "0x33ad778e6c76237d843c52d7cafc972bb7cf8729", + "symbol": "BOSHI", + "decimals": 18, + "name": "Boshi", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x33ad778e6c76237d843c52d7cafc972bb7cf8729.png", + "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0x3ecced5b416e58664f04a39dd18935eb71d33b15": { + "address": "0x3ecced5b416e58664f04a39dd18935eb71d33b15", + "symbol": "BRIAN", + "decimals": 18, + "name": "Brian", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x3ecced5b416e58664f04a39dd18935eb71d33b15.png", + "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0x586e10db93630a4d2da6c6a34ba715305b556f04": { + "address": "0x586e10db93630a4d2da6c6a34ba715305b556f04", + "symbol": "ZOOMER", + "decimals": 18, + "name": "Zoomer", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x586e10db93630a4d2da6c6a34ba715305b556f04.png", + "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0xb0505e5a99abd03d94a1169e638b78edfed26ea4": { + "address": "0xb0505e5a99abd03d94a1169e638b78edfed26ea4", + "symbol": "USUI", + "decimals": 18, + "name": "Sui (Universal)", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xb0505e5a99abd03d94a1169e638b78edfed26ea4.png", + "aggregators": ["CoinGecko", "1inch", "Rubic", "Rango"], + "occurrences": 4 + }, + "0x23471e7250bcd7ee21df3f39ed6151931d1e076b": { + "address": "0x23471e7250bcd7ee21df3f39ed6151931d1e076b", + "symbol": "WAI", + "decimals": 18, + "name": "AI Waifu", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x23471e7250bcd7ee21df3f39ed6151931d1e076b.png", + "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0x85645b86243886b7c7c1da6288571f8bea6fc035": { + "address": "0x85645b86243886b7c7c1da6288571f8bea6fc035", + "symbol": "TYLER", + "decimals": 9, + "name": "Tyler", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x85645b86243886b7c7c1da6288571f8bea6fc035.png", + "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0x9beec80e62aa257ced8b0edd8692f79ee8783777": { + "address": "0x9beec80e62aa257ced8b0edd8692f79ee8783777", + "symbol": "TIMI", + "decimals": 18, + "name": "This Is My Iguana", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x9beec80e62aa257ced8b0edd8692f79ee8783777.png", + "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0x776aaef8d8760129a0398cf8674ee28cefc0eab9": { + "address": "0x776aaef8d8760129a0398cf8674ee28cefc0eab9", + "symbol": "FLOPPA", + "decimals": 18, + "name": "Floppa Cat", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x776aaef8d8760129a0398cf8674ee28cefc0eab9.png", + "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0x7cf7132ede0ca592a236b6198a681bb7b42dd5ae": { + "address": "0x7cf7132ede0ca592a236b6198a681bb7b42dd5ae", + "symbol": "BOLT", + "decimals": 18, + "name": "BOLT on Base", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x7cf7132ede0ca592a236b6198a681bb7b42dd5ae.png", + "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0x3c4b6cd7874edc945797123fce2d9a871818524b": { + "address": "0x3c4b6cd7874edc945797123fce2d9a871818524b", + "symbol": "PARADOX", + "decimals": 18, + "name": "PARADOX", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x3c4b6cd7874edc945797123fce2d9a871818524b.png", + "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0xaa6cccdce193698d33deb9ffd4be74eaa74c4898": { + "address": "0xaa6cccdce193698d33deb9ffd4be74eaa74c4898", + "symbol": "ELONRWA", + "decimals": 18, + "name": "ElonRWA", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xaa6cccdce193698d33deb9ffd4be74eaa74c4898.png", + "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0xed899bfdb28c8ad65307fa40f4acab113ae2e14c": { + "address": "0xed899bfdb28c8ad65307fa40f4acab113ae2e14c", + "symbol": "ROOST", + "decimals": 18, + "name": "Roost", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xed899bfdb28c8ad65307fa40f4acab113ae2e14c.png", + "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0x928a6a9fc62b2c94baf2992a6fba4715f5bb0066": { + "address": "0x928a6a9fc62b2c94baf2992a6fba4715f5bb0066", + "symbol": "RWA", + "decimals": 18, + "name": "Rug World Assets", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x928a6a9fc62b2c94baf2992a6fba4715f5bb0066.png", + "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0x6223901ea64608c75da8497d5eff15d19a1d8fd5": { + "address": "0x6223901ea64608c75da8497d5eff15d19a1d8fd5", + "symbol": "CORGI", + "decimals": 18, + "name": "Corgi", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x6223901ea64608c75da8497d5eff15d19a1d8fd5.png", + "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0xc734635cd30e882037c3f3de1ebccf9fa9d27d9f": { + "address": "0xc734635cd30e882037c3f3de1ebccf9fa9d27d9f", + "symbol": "LVLY", + "decimals": 18, + "name": "Lyvely", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xc734635cd30e882037c3f3de1ebccf9fa9d27d9f.png", + "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0xc655c331d1aa7f96c252f1f40ce13d80eac53504": { + "address": "0xc655c331d1aa7f96c252f1f40ce13d80eac53504", + "symbol": "MUSIC", + "decimals": 18, + "name": "MUSIC by Virtuals", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xc655c331d1aa7f96c252f1f40ce13d80eac53504.png", + "aggregators": ["CoinGecko", "Rubic", "Squid", "Rango"], + "occurrences": 4 + }, + "0x041fdf3f472d2c8a7ecc458fc3b7f543e6c57ef7": { + "address": "0x041fdf3f472d2c8a7ecc458fc3b7f543e6c57ef7", + "symbol": "SHIBA", + "decimals": 9, + "name": "Shiba Armstrong", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x041fdf3f472d2c8a7ecc458fc3b7f543e6c57ef7.png", + "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0x6d3b8c76c5396642960243febf736c6be8b60562": { + "address": "0x6d3b8c76c5396642960243febf736c6be8b60562", + "symbol": "SKOP", + "decimals": 18, + "name": "Skull of Pepe Token", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x6d3b8c76c5396642960243febf736c6be8b60562.png", + "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0x6e2c81b6c2c0e02360f00a0da694e489acb0b05e": { + "address": "0x6e2c81b6c2c0e02360f00a0da694e489acb0b05e", + "symbol": "RFL", + "decimals": 18, + "name": "Reflect", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x6e2c81b6c2c0e02360f00a0da694e489acb0b05e.png", + "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0x76e7447bafa3f0acafc9692629b1d1bc937ca15d": { + "address": "0x76e7447bafa3f0acafc9692629b1d1bc937ca15d", + "symbol": "POLA", + "decimals": 18, + "name": "Pola On Base", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x76e7447bafa3f0acafc9692629b1d1bc937ca15d.png", + "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0xeb9e49fb4c33d9f6aefb1b03f9133435e24c0ec6": { + "address": "0xeb9e49fb4c33d9f6aefb1b03f9133435e24c0ec6", + "symbol": "NEWB", + "decimals": 18, + "name": "Newton On Base", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xeb9e49fb4c33d9f6aefb1b03f9133435e24c0ec6.png", + "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0x15de59489de5e7f240d72f787dc4a292b8199339": { + "address": "0x15de59489de5e7f240d72f787dc4a292b8199339", + "symbol": "RBF", + "decimals": 18, + "name": "Robots.Farm", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x15de59489de5e7f240d72f787dc4a292b8199339.png", + "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0x81f91fe59ee415735d59bd5be5cca91a0ea4fa69": { + "address": "0x81f91fe59ee415735d59bd5be5cca91a0ea4fa69", + "symbol": "FPEPE", + "decimals": 8, + "name": "Based Father Pepe", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x81f91fe59ee415735d59bd5be5cca91a0ea4fa69.png", + "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0xf4435cc8b478d54313f04c956882be3d9acf9f6f": { + "address": "0xf4435cc8b478d54313f04c956882be3d9acf9f6f", + "symbol": "LUCHA", + "decimals": 18, + "name": "Lucha", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xf4435cc8b478d54313f04c956882be3d9acf9f6f.png", + "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0xc2fe011c3885277c7f0e7ffd45ff90cadc8ecd12": { + "address": "0xc2fe011c3885277c7f0e7ffd45ff90cadc8ecd12", + "symbol": "PONCHO", + "decimals": 18, + "name": "Poncho", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xc2fe011c3885277c7f0e7ffd45ff90cadc8ecd12.png", + "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0xde7a416ac821c77478340eebaa21b68297025ef3": { + "address": "0xde7a416ac821c77478340eebaa21b68297025ef3", + "symbol": "BENI", + "decimals": 18, + "name": "Beni", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xde7a416ac821c77478340eebaa21b68297025ef3.png", + "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0xfc60aa1ffca50ce08b3cdec9626c0bb9e9b09bec": { + "address": "0xfc60aa1ffca50ce08b3cdec9626c0bb9e9b09bec", + "symbol": "VIS", + "decimals": 18, + "name": "Envision Labs", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xfc60aa1ffca50ce08b3cdec9626c0bb9e9b09bec.png", + "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0x7404ac09adf614603d9c16a7ce85a1101f3514ba": { + "address": "0x7404ac09adf614603d9c16a7ce85a1101f3514ba", + "symbol": "PLAY", + "decimals": 18, + "name": "PLAY", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x7404ac09adf614603d9c16a7ce85a1101f3514ba.png", + "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0x56a38e7216304108e841579041249feb236c887b": { + "address": "0x56a38e7216304108e841579041249feb236c887b", + "symbol": "LBM", + "decimals": 18, + "name": "Libertum", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x56a38e7216304108e841579041249feb236c887b.png", + "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0x18b6f6049a0af4ed2bbe0090319174eeef89f53a": { + "address": "0x18b6f6049a0af4ed2bbe0090319174eeef89f53a", + "symbol": "RUNNER", + "decimals": 18, + "name": "RUNNER", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x18b6f6049a0af4ed2bbe0090319174eeef89f53a.png", + "aggregators": ["CoinGecko", "Socket", "Rubic", "Rango"], + "occurrences": 4 + }, + "0xd9da0a693ea8057dcd97f02df6c98951acf92ef7": { + "address": "0xd9da0a693ea8057dcd97f02df6c98951acf92ef7", + "symbol": "CPA", + "decimals": 18, + "name": "CPA by Virtuals", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xd9da0a693ea8057dcd97f02df6c98951acf92ef7.png", + "aggregators": ["CoinGecko", "Rubic", "Squid", "Rango"], + "occurrences": 4 + }, + "0xfad8cb754230dbfd249db0e8eccb5142dd675a0d": { + "address": "0xfad8cb754230dbfd249db0e8eccb5142dd675a0d", + "symbol": "AEROBUD", + "decimals": 18, + "name": "AEROBUD", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xfad8cb754230dbfd249db0e8eccb5142dd675a0d.png", + "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0x82aed68f1deaca2b2aa4c5f27276374228a9f923": { + "address": "0x82aed68f1deaca2b2aa4c5f27276374228a9f923", + "symbol": "BEAST", + "decimals": 8, + "name": "Based Beast Coin", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x82aed68f1deaca2b2aa4c5f27276374228a9f923.png", + "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0xbe58fda3bcf03b6bbc821d1f0e6b764c86709227": { + "address": "0xbe58fda3bcf03b6bbc821d1f0e6b764c86709227", + "symbol": "VFX", + "decimals": 18, + "name": "Vabble", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xbe58fda3bcf03b6bbc821d1f0e6b764c86709227.png", + "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0x0a14ef61afb32e5ca672e021784f71705ac14908": { + "address": "0x0a14ef61afb32e5ca672e021784f71705ac14908", + "symbol": "NULL", + "decimals": 18, + "name": "NULL MATRIX", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x0a14ef61afb32e5ca672e021784f71705ac14908.png", + "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0xc73dc7ae7a4fa40517aafa941ae1ee436b91a12c": { + "address": "0xc73dc7ae7a4fa40517aafa941ae1ee436b91a12c", + "symbol": "BUZ", + "decimals": 4, + "name": "Buz Economy", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xc73dc7ae7a4fa40517aafa941ae1ee436b91a12c.png", + "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0x1b6a569dd61edce3c383f6d565e2f79ec3a12980": { + "address": "0x1b6a569dd61edce3c383f6d565e2f79ec3a12980", + "symbol": "PEEZY", + "decimals": 18, + "name": "Young Peezy AKA Pepe", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x1b6a569dd61edce3c383f6d565e2f79ec3a12980.png", + "aggregators": ["Metamask", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0x576bca23dcb6d94ff8e537d88b0d3e1bead444a2": { + "address": "0x576bca23dcb6d94ff8e537d88b0d3e1bead444a2", + "symbol": "BCT", + "decimals": 18, + "name": "Base Carbon Tonne", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x576bca23dcb6d94ff8e537d88b0d3e1bead444a2.png", + "aggregators": ["CoinGecko", "Rubic", "Squid", "Rango"], + "occurrences": 4 + }, + "0x74aa9bb52b36a378a6e641b86d7acb76dc9b3940": { + "address": "0x74aa9bb52b36a378a6e641b86d7acb76dc9b3940", + "symbol": "TRVL", + "decimals": 18, + "name": "Dtravel", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x74aa9bb52b36a378a6e641b86d7acb76dc9b3940.png", + "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0x04055057677807d2a53d2b25a80ff3b4d932ae1a": { + "address": "0x04055057677807d2a53d2b25a80ff3b4d932ae1a", + "symbol": "LOGX", + "decimals": 18, + "name": "LogX Network", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x04055057677807d2a53d2b25a80ff3b4d932ae1a.png", + "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0x051fb509e4a775fabd257611eea1efaed8f91359": { + "address": "0x051fb509e4a775fabd257611eea1efaed8f91359", + "symbol": "CATE", + "decimals": 9, + "name": "CATE", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x051fb509e4a775fabd257611eea1efaed8f91359.png", + "aggregators": ["CoinGecko", "Rubic", "Squid", "Rango"], + "occurrences": 4 + }, + "0xdf690c65d067035364a58369c26820d3696d7799": { + "address": "0xdf690c65d067035364a58369c26820d3696d7799", + "symbol": "HOGE", + "decimals": 9, + "name": "Hoge Finance", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xdf690c65d067035364a58369c26820d3696d7799.png", + "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0xb59c8912c83157a955f9d715e556257f432c35d7": { + "address": "0xb59c8912c83157a955f9d715e556257f432c35d7", + "symbol": "TRUF", + "decimals": 18, + "name": "Truflation", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xb59c8912c83157a955f9d715e556257f432c35d7.png", + "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0x42069d11a2cc72388a2e06210921e839cfbd3280": { + "address": "0x42069d11a2cc72388a2e06210921e839cfbd3280", + "symbol": "GNOME", + "decimals": 18, + "name": "GnomeLand", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x42069d11a2cc72388a2e06210921e839cfbd3280.png", + "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0x777b2839832982b35213063d850848369390ee16": { + "address": "0x777b2839832982b35213063d850848369390ee16", + "symbol": "JARVIS", + "decimals": 18, + "name": "Jarvis", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x777b2839832982b35213063d850848369390ee16.png", + "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0xd857af86a2c5b4f46fc7cb8032bd4f5625577eeb": { + "address": "0xd857af86a2c5b4f46fc7cb8032bd4f5625577eeb", + "symbol": "$HOKK", + "decimals": 9, + "name": "Hokkaidu Inu", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xd857af86a2c5b4f46fc7cb8032bd4f5625577eeb.png", + "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0xf578ad8809f13dabf921bdd3fcfbe194d0ab5628": { + "address": "0xf578ad8809f13dabf921bdd3fcfbe194d0ab5628", + "symbol": "VPP", + "decimals": 18, + "name": "Virtue Poker Points", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xf578ad8809f13dabf921bdd3fcfbe194d0ab5628.png", + "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0x3419875b4d3bca7f3fdda2db7a476a79fd31b4fe": { + "address": "0x3419875b4d3bca7f3fdda2db7a476a79fd31b4fe", + "symbol": "DZHV", + "decimals": 18, + "name": "DizzyHavoc", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x3419875b4d3bca7f3fdda2db7a476a79fd31b4fe.png", + "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0x01facc69ec7360640aa5898e852326752801674a": { + "address": "0x01facc69ec7360640aa5898e852326752801674a", + "symbol": "FUSE", + "decimals": 18, + "name": "Fuse", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x01facc69ec7360640aa5898e852326752801674a.png", + "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0xde5ed76e7c05ec5e4572cfc88d1acea165109e44": { + "address": "0xde5ed76e7c05ec5e4572cfc88d1acea165109e44", + "symbol": "DEUS", + "decimals": 18, + "name": "DEUS Finance", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xde5ed76e7c05ec5e4572cfc88d1acea165109e44.png", + "aggregators": ["CoinGecko", "Socket", "Rubic", "Rango"], + "occurrences": 4 + }, + "0x979584b07e1e14c7718c9fdab2e35bbb5fec2c59": { + "address": "0x979584b07e1e14c7718c9fdab2e35bbb5fec2c59", + "symbol": "OK", + "decimals": 18, + "name": "Okcash", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x979584b07e1e14c7718c9fdab2e35bbb5fec2c59.png", + "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0xa608512bbc9934e4b1ddecf0f5fb38b6ad93308d": { + "address": "0xa608512bbc9934e4b1ddecf0f5fb38b6ad93308d", + "symbol": "GUD", + "decimals": 18, + "name": "Gud Tech", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xa608512bbc9934e4b1ddecf0f5fb38b6ad93308d.png", + "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0xd85eff20288ca72ea9eecffb428f89ee5066ca5c": { + "address": "0xd85eff20288ca72ea9eecffb428f89ee5066ca5c", + "symbol": "ISK", + "decimals": 18, + "name": "ISKRA Token", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xd85eff20288ca72ea9eecffb428f89ee5066ca5c.png", + "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0x474f4cb764df9da079d94052fed39625c147c12c": { + "address": "0x474f4cb764df9da079d94052fed39625c147c12c", + "symbol": "BONSAI", + "decimals": 18, + "name": "Bonsai Token", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x474f4cb764df9da079d94052fed39625c147c12c.png", + "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0x6a4f69da1e2fb2a9b11d1aad60d03163fe567732": { + "address": "0x6a4f69da1e2fb2a9b11d1aad60d03163fe567732", + "symbol": "SHOG", + "decimals": 18, + "name": "SHOG", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x6a4f69da1e2fb2a9b11d1aad60d03163fe567732.png", + "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0xfafb7581a65a1f554616bf780fc8a8acd2ab8c9b": { + "address": "0xfafb7581a65a1f554616bf780fc8a8acd2ab8c9b", + "symbol": "SQUID", + "decimals": 18, + "name": "Squid Game", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xfafb7581a65a1f554616bf780fc8a8acd2ab8c9b.png", + "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0x6a9431b9ecce9dde3f7a32391d5b61c5ad11e4a0": { + "address": "0x6a9431b9ecce9dde3f7a32391d5b61c5ad11e4a0", + "symbol": "NUT", + "decimals": 18, + "name": "NutCoin", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x6a9431b9ecce9dde3f7a32391d5b61c5ad11e4a0.png", + "aggregators": ["CoinGecko", "Rubic", "Squid", "Rango"], + "occurrences": 4 + }, + "0x02f92800f57bcd74066f5709f1daa1a4302df875": { + "address": "0x02f92800f57bcd74066f5709f1daa1a4302df875", + "symbol": "PEAS", + "decimals": 18, + "name": "Peapods", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x02f92800f57bcd74066f5709f1daa1a4302df875.png", + "aggregators": ["CoinGecko", "LiFi", "Rubic", "Rango"], + "occurrences": 4 + }, + "0x63228048121877a9e0f52020834a135074e8207c": { + "address": "0x63228048121877a9e0f52020834a135074e8207c", + "symbol": "SAMA", + "decimals": 18, + "name": "Moonsama", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x63228048121877a9e0f52020834a135074e8207c.png", + "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0x3ee5e23eee121094f1cfc0ccc79d6c809ebd22e5": { + "address": "0x3ee5e23eee121094f1cfc0ccc79d6c809ebd22e5", + "symbol": "ION", + "decimals": 18, + "name": "Ionic Protocol", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x3ee5e23eee121094f1cfc0ccc79d6c809ebd22e5.png", + "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0xc11158c5da9db1d553ed28f0c2ba1cbedd42cfcb": { + "address": "0xc11158c5da9db1d553ed28f0c2ba1cbedd42cfcb", + "symbol": "PAW", + "decimals": 18, + "name": "PAW", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xc11158c5da9db1d553ed28f0c2ba1cbedd42cfcb.png", + "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0x63e71271719f03d7233f4fa306b6ea868d0f52ff": { + "address": "0x63e71271719f03d7233f4fa306b6ea868d0f52ff", + "symbol": "BINU", + "decimals": 18, + "name": "BaseInu", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x63e71271719f03d7233f4fa306b6ea868d0f52ff.png", + "aggregators": ["1inch", "Socket", "Rubic", "Rango"], + "occurrences": 4 + }, + "0xca5d8f8a8d49439357d3cf46ca2e720702f132b8": { + "address": "0xca5d8f8a8d49439357d3cf46ca2e720702f132b8", + "symbol": "GYD", + "decimals": 18, + "name": "Gyroscope GYD", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xca5d8f8a8d49439357d3cf46ca2e720702f132b8.png", + "aggregators": ["LiFi", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0xeeeeeb57642040be42185f49c52f7e9b38f8eeee": { + "address": "0xeeeeeb57642040be42185f49c52f7e9b38f8eeee", + "symbol": "ELK", + "decimals": 18, + "name": "ELK", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xeeeeeb57642040be42185f49c52f7e9b38f8eeee.png", + "aggregators": ["LiFi", "Socket", "Rubic", "Rango"], + "occurrences": 4 + }, + "0xc19669a405067927865b40ea045a2baabbbe57f5": { + "address": "0xc19669a405067927865b40ea045a2baabbbe57f5", + "symbol": "STAR", + "decimals": 18, + "name": "Star", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xc19669a405067927865b40ea045a2baabbbe57f5.png", + "aggregators": ["LiFi", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0xfb0c734fc3008683c5eff45bcf8128836c4d97d0": { + "address": "0xfb0c734fc3008683c5eff45bcf8128836c4d97d0", + "symbol": "VRTX", + "decimals": 18, + "name": "Vertex", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xfb0c734fc3008683c5eff45bcf8128836c4d97d0.png", + "aggregators": ["LiFi", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0x60359a0dd148b18d5cf1ddf8aa1916221ed0cbcd": { + "address": "0x60359a0dd148b18d5cf1ddf8aa1916221ed0cbcd", + "symbol": "NFI", + "decimals": 18, + "name": "NetherFi", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x60359a0dd148b18d5cf1ddf8aa1916221ed0cbcd.png", + "aggregators": ["LiFi", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0x081ad949defe648774c3b8debe0e4f28a80716dc": { + "address": "0x081ad949defe648774c3b8debe0e4f28a80716dc", + "symbol": "HZN", + "decimals": 18, + "name": "Horizon", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x081ad949defe648774c3b8debe0e4f28a80716dc.png", + "aggregators": ["LiFi", "Socket", "Rubic", "Squid"], + "occurrences": 4 + }, + "0xa9f52545c16efc3050f5ec65c7929fcbbd16a295": { + "address": "0xa9f52545c16efc3050f5ec65c7929fcbbd16a295", + "symbol": "OMKG", + "decimals": 18, + "name": "OmniKingdoms Gold", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xa9f52545c16efc3050f5ec65c7929fcbbd16a295.png", + "aggregators": ["LiFi", "Rubic", "Squid", "Rango"], + "occurrences": 4 + }, + "0x449b3317a6d1efb1bc3ba0700c9eaa4ffff4ae65": { + "address": "0x449b3317a6d1efb1bc3ba0700c9eaa4ffff4ae65", + "symbol": "AUDD", + "decimals": 6, + "name": "AUDD", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x449b3317a6d1efb1bc3ba0700c9eaa4ffff4ae65.png", + "aggregators": ["CoinGecko", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x1f9bd96ddb4bd07d6061f8933e9ba9ede9967550": { + "address": "0x1f9bd96ddb4bd07d6061f8933e9ba9ede9967550", + "symbol": "BOBA", + "decimals": 18, + "name": "Boba Network", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x1f9bd96ddb4bd07d6061f8933e9ba9ede9967550.png", + "aggregators": ["UniswapLabs", "Socket", "Rango"], + "occurrences": 3 + }, + "0x9126236476efba9ad8ab77855c60eb5bf37586eb": { + "address": "0x9126236476efba9ad8ab77855c60eb5bf37586eb", + "symbol": "CHECK", + "decimals": 18, + "name": "Checkmate", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x9126236476efba9ad8ab77855c60eb5bf37586eb.png", + "aggregators": ["CoinGecko", "Socket", "Rubic"], + "occurrences": 3 + }, + "0xf4d97f2da56e8c3098f3a8d538db630a2606a024": { + "address": "0xf4d97f2da56e8c3098f3a8d538db630a2606a024", + "symbol": "DIEM", + "decimals": 18, + "name": "Diem", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xf4d97f2da56e8c3098f3a8d538db630a2606a024.png", + "aggregators": ["CoinGecko", "Rubic", "Rango"], + "occurrences": 3 + }, + "0xd5390300c5db71f80d46f0fa9983fc72d4d1e3da": { + "address": "0xd5390300c5db71f80d46f0fa9983fc72d4d1e3da", + "symbol": "KAT", + "decimals": 18, + "name": "Katana", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xd5390300c5db71f80d46f0fa9983fc72d4d1e3da.png", + "aggregators": ["UniswapLabs", "Squid", "Rango"], + "occurrences": 3 + }, + "0x9eadbe35f3ee3bf3e28180070c429298a1b02f93": { + "address": "0x9eadbe35f3ee3bf3e28180070c429298a1b02f93", + "symbol": "LMTS", + "decimals": 18, + "name": "Limitless Official Token", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x9eadbe35f3ee3bf3e28180070c429298a1b02f93.png", + "aggregators": ["CoinGecko", "LiFi", "Rubic"], + "occurrences": 3 + }, + "0x8e4cbbcc33db6c0a18561fde1f6ba35906d4848b": { + "address": "0x8e4cbbcc33db6c0a18561fde1f6ba35906d4848b", + "symbol": "MEZO", + "decimals": 18, + "name": "MEZO", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x8e4cbbcc33db6c0a18561fde1f6ba35906d4848b.png", + "aggregators": ["CoinGecko", "Rubic", "Rango"], + "occurrences": 3 + }, + "0xc54ffa55a3fd03381aa86cf178b60dfaf827b61c": { + "address": "0xc54ffa55a3fd03381aa86cf178b60dfaf827b61c", + "symbol": "TENNA", + "decimals": 18, + "name": "Tenna", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xc54ffa55a3fd03381aa86cf178b60dfaf827b61c.png", + "aggregators": ["CoinGecko", "Rubic", "Squid"], + "occurrences": 3 + }, + "0x0e15db17e1b2ed310c7201b0203d89b63f18eb53": { + "address": "0x0e15db17e1b2ed310c7201b0203d89b63f18eb53", + "symbol": "PRIMO", + "decimals": 18, + "name": "PrimoAI", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x0e15db17e1b2ed310c7201b0203d89b63f18eb53.png", + "aggregators": ["CoinGecko", "Rubic", "Squid"], + "occurrences": 3 + }, + "0xf3e20293514d775a3149c304820d9e6a6fa29b07": { + "address": "0xf3e20293514d775a3149c304820d9e6a6fa29b07", + "symbol": "CUSTOS", + "decimals": 18, + "name": "Custos", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xf3e20293514d775a3149c304820d9e6a6fa29b07.png", + "aggregators": ["CoinGecko", "Rubic", "Rango"], + "occurrences": 3 + }, + "0xe0969ec84456b7e4d3dd2181fb5265edbb63f7bd": { + "address": "0xe0969ec84456b7e4d3dd2181fb5265edbb63f7bd", + "symbol": "FLK", + "decimals": 18, + "name": "FLK", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xe0969ec84456b7e4d3dd2181fb5265edbb63f7bd.png", + "aggregators": ["CoinGecko", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x0086cff0c1e5d17b19f5bcd4c8840a5b4251d959": { + "address": "0x0086cff0c1e5d17b19f5bcd4c8840a5b4251d959", + "symbol": "ODAI", + "decimals": 18, + "name": "ODEI AI", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x0086cff0c1e5d17b19f5bcd4c8840a5b4251d959.png", + "aggregators": ["CoinGecko", "Rubic", "Rango"], + "occurrences": 3 + }, + "0xd565e9eb9b7e2de4902486b7057d642393afdaa4": { + "address": "0xd565e9eb9b7e2de4902486b7057d642393afdaa4", + "symbol": "DOGEBASE", + "decimals": 18, + "name": "Doge Base", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xd565e9eb9b7e2de4902486b7057d642393afdaa4.png", + "aggregators": ["CoinGecko", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x00fbac94fec8d4089d3fe979f39454f48c71a65d": { + "address": "0x00fbac94fec8d4089d3fe979f39454f48c71a65d", + "symbol": "KVCM", + "decimals": 18, + "name": "Klima Protocol kVCM", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x00fbac94fec8d4089d3fe979f39454f48c71a65d.png", + "aggregators": ["CoinGecko", "Rubic", "Squid"], + "occurrences": 3 + }, + "0xbb2db41e62abf596b7f8ca7bd4733a7b357f5ab9": { + "address": "0xbb2db41e62abf596b7f8ca7bd4733a7b357f5ab9", + "symbol": "METACADEMAX", + "decimals": 18, + "name": "metacademax", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xbb2db41e62abf596b7f8ca7bd4733a7b357f5ab9.png", + "aggregators": ["CoinGecko", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x1d008f50fb828ef9debbbeae1b71fffe929bf317": { + "address": "0x1d008f50fb828ef9debbbeae1b71fffe929bf317", + "symbol": "CLANKFUN", + "decimals": 18, + "name": "clank.fun", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x1d008f50fb828ef9debbbeae1b71fffe929bf317.png", + "aggregators": ["CoinGecko", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x93918567cdd1bc845be955325a43419a7c56d66f": { + "address": "0x93918567cdd1bc845be955325a43419a7c56d66f", + "symbol": "MWXT", + "decimals": 18, + "name": "MWX Token", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x93918567cdd1bc845be955325a43419a7c56d66f.png", + "aggregators": ["CoinGecko", "Rubic", "Rango"], + "occurrences": 3 + }, + "0xf5de8697232a16a942f7cf706415f553ce53e27f": { + "address": "0xf5de8697232a16a942f7cf706415f553ce53e27f", + "symbol": "BLCK", + "decimals": 18, + "name": "BLCK Coin", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xf5de8697232a16a942f7cf706415f553ce53e27f.png", + "aggregators": ["CoinGecko", "Rubic", "Sonarwatch"], + "occurrences": 3 + }, + "0x6b67aac5e7456cf47d8901ba2cef01a89002973e": { + "address": "0x6b67aac5e7456cf47d8901ba2cef01a89002973e", + "symbol": "NTV", + "decimals": 18, + "name": "NativToken", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x6b67aac5e7456cf47d8901ba2cef01a89002973e.png", + "aggregators": ["CoinGecko", "Rubic", "Rango"], + "occurrences": 3 + }, + "0xc77eb53473759913bf278e52861ef281829cbe4d": { + "address": "0xc77eb53473759913bf278e52861ef281829cbe4d", + "symbol": "SKY", + "decimals": 18, + "name": "Skynet", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xc77eb53473759913bf278e52861ef281829cbe4d.png", + "aggregators": ["CoinGecko", "Rubic", "Squid"], + "occurrences": 3 + }, + "0x569abcf5fc993e30cfba3e7787b1420cfb44bdcc": { + "address": "0x569abcf5fc993e30cfba3e7787b1420cfb44bdcc", + "symbol": "VELK", + "decimals": 18, + "name": "Velkaris", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x569abcf5fc993e30cfba3e7787b1420cfb44bdcc.png", + "aggregators": ["CoinGecko", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x9b5037b68c6ed686a1f433e5eef9513bb1801b07": { + "address": "0x9b5037b68c6ed686a1f433e5eef9513bb1801b07", + "symbol": "SKY", + "decimals": 18, + "name": "SKYCASTLE", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x9b5037b68c6ed686a1f433e5eef9513bb1801b07.png", + "aggregators": ["CoinGecko", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x9999999999999d8b360c6985db1a74a0f3b75e1b": { + "address": "0x9999999999999d8b360c6985db1a74a0f3b75e1b", + "symbol": "KULT", + "decimals": 18, + "name": "Ж", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x9999999999999d8b360c6985db1a74a0f3b75e1b.png", + "aggregators": ["CoinGecko", "Rubic", "Rango"], + "occurrences": 3 + }, + "0xd1a7387d3ded8cb611a202fc1a9c9c74c23f2ba3": { + "address": "0xd1a7387d3ded8cb611a202fc1a9c9c74c23f2ba3", + "symbol": "STAKR", + "decimals": 18, + "name": "STAKR", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xd1a7387d3ded8cb611a202fc1a9c9c74c23f2ba3.png", + "aggregators": ["CoinGecko", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x76d1d20ad655323a26908388b24d69f42c4d3b07": { + "address": "0x76d1d20ad655323a26908388b24d69f42c4d3b07", + "symbol": "AC", + "decimals": 18, + "name": "Agent Conductor", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x76d1d20ad655323a26908388b24d69f42c4d3b07.png", + "aggregators": ["CoinGecko", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x29f3c0b678ffbe6c61bdca1054014f02be6c7450": { + "address": "0x29f3c0b678ffbe6c61bdca1054014f02be6c7450", + "symbol": "ANERI", + "decimals": 18, + "name": "aneri", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x29f3c0b678ffbe6c61bdca1054014f02be6c7450.png", + "aggregators": ["CoinGecko", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x55337650856299363c496065c836b9c6e9de0367": { + "address": "0x55337650856299363c496065c836b9c6e9de0367", + "symbol": "ACES", + "decimals": 18, + "name": "ACES.fun", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x55337650856299363c496065c836b9c6e9de0367.png", + "aggregators": ["CoinGecko", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x610a5a297fe2135289b8565ef645de2a7c00eba3": { + "address": "0x610a5a297fe2135289b8565ef645de2a7c00eba3", + "symbol": "FETCHR", + "decimals": 18, + "name": "fetchr", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x610a5a297fe2135289b8565ef645de2a7c00eba3.png", + "aggregators": ["CoinGecko", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x9b01d5145b55526fb180a837ae398efbd78fd0f2": { + "address": "0x9b01d5145b55526fb180a837ae398efbd78fd0f2", + "symbol": "FREDWILSON", + "decimals": 18, + "name": "fredwilson", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x9b01d5145b55526fb180a837ae398efbd78fd0f2.png", + "aggregators": ["CoinGecko", "Rubic", "Rango"], + "occurrences": 3 + }, + "0xc71f37d9bf4c5d1e7fe4bccb97e6f30b11b37d29": { + "address": "0xc71f37d9bf4c5d1e7fe4bccb97e6f30b11b37d29", + "symbol": "EQTY", + "decimals": 18, + "name": "EQTY", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xc71f37d9bf4c5d1e7fe4bccb97e6f30b11b37d29.png", + "aggregators": ["CoinGecko", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x320c99aeddf34721b8a566ba2540f8fb72400e88": { + "address": "0x320c99aeddf34721b8a566ba2540f8fb72400e88", + "symbol": "FROST", + "decimals": 18, + "name": "Frost", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x320c99aeddf34721b8a566ba2540f8fb72400e88.png", + "aggregators": ["CoinGecko", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x7d928816cc9c462dd7adef911de41535e444cb07": { + "address": "0x7d928816cc9c462dd7adef911de41535e444cb07", + "symbol": "FAIR", + "decimals": 18, + "name": "Faircaster", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x7d928816cc9c462dd7adef911de41535e444cb07.png", + "aggregators": ["CoinGecko", "Rubic", "Rango"], + "occurrences": 3 + }, + "0xb5d409f6e679b0f89a669ac9714173177683eb7c": { + "address": "0xb5d409f6e679b0f89a669ac9714173177683eb7c", + "symbol": "CIK", + "decimals": 18, + "name": "Christ is King", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xb5d409f6e679b0f89a669ac9714173177683eb7c.png", + "aggregators": ["CoinGecko", "Rubic", "Rango"], + "occurrences": 3 + }, + "0xc2704323a9f6b41b81a735cddd2ccb6273da1197": { + "address": "0xc2704323a9f6b41b81a735cddd2ccb6273da1197", + "symbol": "BAIBY", + "decimals": 18, + "name": "bAIbysitter", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xc2704323a9f6b41b81a735cddd2ccb6273da1197.png", + "aggregators": ["CoinGecko", "Rubic", "Squid"], + "occurrences": 3 + }, + "0x6f89bca4ea5931edfcb09786267b251dee752b07": { + "address": "0x6f89bca4ea5931edfcb09786267b251dee752b07", + "symbol": "REGENT", + "decimals": 18, + "name": "Regent", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x6f89bca4ea5931edfcb09786267b251dee752b07.png", + "aggregators": ["CoinGecko", "Rubic", "Rango"], + "occurrences": 3 + }, + "0xba5ed8a0e261bf2a5ad629d4d5de884ccbfdf3f7": { + "address": "0xba5ed8a0e261bf2a5ad629d4d5de884ccbfdf3f7", + "symbol": "BASEDGUY", + "decimals": 18, + "name": "Just a based guy", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xba5ed8a0e261bf2a5ad629d4d5de884ccbfdf3f7.png", + "aggregators": ["CoinGecko", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x3da7ad8101bc1fc0c80e2860be9a531385258525": { + "address": "0x3da7ad8101bc1fc0c80e2860be9a531385258525", + "symbol": "$SXS", + "decimals": 18, + "name": "$SXS", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x3da7ad8101bc1fc0c80e2860be9a531385258525.png", + "aggregators": ["CoinGecko", "Rubic", "Rango"], + "occurrences": 3 + }, + "0xc7562d0536d3bf5a92865ac22062a2893e45cb07": { + "address": "0xc7562d0536d3bf5a92865ac22062a2893e45cb07", + "symbol": "SYYN", + "decimals": 18, + "name": "Siyana", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xc7562d0536d3bf5a92865ac22062a2893e45cb07.png", + "aggregators": ["CoinGecko", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x767a739d1a152639e9ea1d8c1bd55fdc5b217d7f": { + "address": "0x767a739d1a152639e9ea1d8c1bd55fdc5b217d7f", + "symbol": "VEIL", + "decimals": 18, + "name": "VEIL Token", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x767a739d1a152639e9ea1d8c1bd55fdc5b217d7f.png", + "aggregators": ["CoinGecko", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x810affc8aadad2824c65e0a2c5ef96ef1de42ba3": { + "address": "0x810affc8aadad2824c65e0a2c5ef96ef1de42ba3", + "symbol": "AXOBOTL", + "decimals": 18, + "name": "AXOBOTL", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x810affc8aadad2824c65e0a2c5ef96ef1de42ba3.png", + "aggregators": ["CoinGecko", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x3270fec132cc196a3d28c9cdfa4564b3a212ec31": { + "address": "0x3270fec132cc196a3d28c9cdfa4564b3a212ec31", + "symbol": "ARBASE", + "decimals": 18, + "name": "Arbase GM", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x3270fec132cc196a3d28c9cdfa4564b3a212ec31.png", + "aggregators": ["CoinGecko", "Rubic", "Rango"], + "occurrences": 3 + }, + "0xbf26cbe8f1d754f97ebe9a544a38dee692e75ef3": { + "address": "0xbf26cbe8f1d754f97ebe9a544a38dee692e75ef3", + "symbol": "NORM", + "decimals": 18, + "name": "Norm", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xbf26cbe8f1d754f97ebe9a544a38dee692e75ef3.png", + "aggregators": ["CoinGecko", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x9215e6362f76fc781df00d51293cc7179c6c99a4": { + "address": "0x9215e6362f76fc781df00d51293cc7179c6c99a4", + "symbol": "PLAI", + "decimals": 18, + "name": "PLAI", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x9215e6362f76fc781df00d51293cc7179c6c99a4.png", + "aggregators": ["CoinGecko", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x60b0c26ea34be7d8625526a6b18b3ad4c6b9f694": { + "address": "0x60b0c26ea34be7d8625526a6b18b3ad4c6b9f694", + "symbol": "CLAWGUIN", + "decimals": 18, + "name": "Clawguin", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x60b0c26ea34be7d8625526a6b18b3ad4c6b9f694.png", + "aggregators": ["CoinGecko", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x5cd9166494673c15cbdfe8750def8bbab80a5b07": { + "address": "0x5cd9166494673c15cbdfe8750def8bbab80a5b07", + "symbol": "TRANSLATE", + "decimals": 18, + "name": "TRANSLATE", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x5cd9166494673c15cbdfe8750def8bbab80a5b07.png", + "aggregators": ["CoinGecko", "Rubic", "Rango"], + "occurrences": 3 + }, + "0xdb9e8adfb7cf451bcdf65ba1cdc791e95246d9c7": { + "address": "0xdb9e8adfb7cf451bcdf65ba1cdc791e95246d9c7", + "symbol": "FRIES", + "decimals": 18, + "name": "fries", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xdb9e8adfb7cf451bcdf65ba1cdc791e95246d9c7.png", + "aggregators": ["CoinGecko", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x02dd23668605ddc983bc2a2afa99f47d88a2f98b": { + "address": "0x02dd23668605ddc983bc2a2afa99f47d88a2f98b", + "symbol": "BRO", + "decimals": 18, + "name": "BRO on BASE", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x02dd23668605ddc983bc2a2afa99f47d88a2f98b.png", + "aggregators": ["CoinGecko", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x18b9ba6b284994d7cbae852c5e1361e8dfab7e9d": { + "address": "0x18b9ba6b284994d7cbae852c5e1361e8dfab7e9d", + "symbol": "BASEMENT", + "decimals": 18, + "name": "BASEment", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x18b9ba6b284994d7cbae852c5e1361e8dfab7e9d.png", + "aggregators": ["CoinGecko", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x948d07d30400518f2c57ba24bafbb1d71f9c2b07": { + "address": "0x948d07d30400518f2c57ba24bafbb1d71f9c2b07", + "symbol": "CHATR", + "decimals": 18, + "name": "chatr", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x948d07d30400518f2c57ba24bafbb1d71f9c2b07.png", + "aggregators": ["CoinGecko", "Rubic", "Rango"], + "occurrences": 3 + }, + "0xeb560289067c375e4897552dcda7e3d203bffbe2": { + "address": "0xeb560289067c375e4897552dcda7e3d203bffbe2", + "symbol": "BILLY", + "decimals": 18, + "name": "Base Mascot", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xeb560289067c375e4897552dcda7e3d203bffbe2.png", + "aggregators": ["CoinGecko", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x6eefbfc95c7810adf53ac232d1de911839918749": { + "address": "0x6eefbfc95c7810adf53ac232d1de911839918749", + "symbol": "COS", + "decimals": 18, + "name": "ClawdOS", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x6eefbfc95c7810adf53ac232d1de911839918749.png", + "aggregators": ["CoinGecko", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x632db1aaace73401a5dc8cde6e9062b8ec0fd819": { + "address": "0x632db1aaace73401a5dc8cde6e9062b8ec0fd819", + "symbol": "GLDY", + "decimals": 18, + "name": "Streamex GLDY", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x632db1aaace73401a5dc8cde6e9062b8ec0fd819.png", + "aggregators": ["CoinGecko", "Rubic", "Rango"], + "occurrences": 3 + }, + "0xb8b7dfacec9abbcb0093f1344c41cb7263c4795a": { + "address": "0xb8b7dfacec9abbcb0093f1344c41cb7263c4795a", + "symbol": "LIGHT", + "decimals": 18, + "name": "Arcturian AI by Virtuals", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xb8b7dfacec9abbcb0093f1344c41cb7263c4795a.png", + "aggregators": ["CoinGecko", "Rubic", "Rango"], + "occurrences": 3 + }, + "0xeecc15f24b8fe65cfd18d4095f91a7adefdd53d5": { + "address": "0xeecc15f24b8fe65cfd18d4095f91a7adefdd53d5", + "symbol": "BACHI", + "decimals": 9, + "name": "Bachi on Base", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xeecc15f24b8fe65cfd18d4095f91a7adefdd53d5.png", + "aggregators": ["CoinGecko", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x26ecb65d997cbff18fca447cb85f6af1175a22b0": { + "address": "0x26ecb65d997cbff18fca447cb85f6af1175a22b0", + "symbol": "FRENLY", + "decimals": 18, + "name": "Frenly", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x26ecb65d997cbff18fca447cb85f6af1175a22b0.png", + "aggregators": ["CoinGecko", "Rubic", "Rango"], + "occurrences": 3 + }, + "0xce5e3f98ce13a0434fd91defd69fa04c92cbc80c": { + "address": "0xce5e3f98ce13a0434fd91defd69fa04c92cbc80c", + "symbol": "PANDA", + "decimals": 18, + "name": "Panda", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xce5e3f98ce13a0434fd91defd69fa04c92cbc80c.png", + "aggregators": ["CoinGecko", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x3a979107edb0ede7888977bb2c027369c1e357e1": { + "address": "0x3a979107edb0ede7888977bb2c027369c1e357e1", + "symbol": "UGGO", + "decimals": 18, + "name": "UGGO ", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x3a979107edb0ede7888977bb2c027369c1e357e1.png", + "aggregators": ["CoinGecko", "Rubic", "Rango"], + "occurrences": 3 + }, + "0xae7dc6559aeaadd8a3c156fe695a650c7095c9ce": { + "address": "0xae7dc6559aeaadd8a3c156fe695a650c7095c9ce", + "symbol": "DEPLOYER", + "decimals": 18, + "name": "deployer", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xae7dc6559aeaadd8a3c156fe695a650c7095c9ce.png", + "aggregators": ["CoinGecko", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x9bba915f036158582c20b51113b925f243a1a1a1": { + "address": "0x9bba915f036158582c20b51113b925f243a1a1a1", + "symbol": "IMGN", + "decimals": 18, + "name": "IMGN Labs", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x9bba915f036158582c20b51113b925f243a1a1a1.png", + "aggregators": ["CoinGecko", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x051024b653e8ec69e72693f776c41c2a9401fb07": { + "address": "0x051024b653e8ec69e72693f776c41c2a9401fb07", + "symbol": "BETR", + "decimals": 18, + "name": "BETRMINT", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x051024b653e8ec69e72693f776c41c2a9401fb07.png", + "aggregators": ["CoinGecko", "Rubic", "Rango"], + "occurrences": 3 + }, + "0xf578c9e57b40a00aef168774f3e47b04c03bf59a": { + "address": "0xf578c9e57b40a00aef168774f3e47b04c03bf59a", + "symbol": "BKS", + "decimals": 18, + "name": "Backstage", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xf578c9e57b40a00aef168774f3e47b04c03bf59a.png", + "aggregators": ["CoinGecko", "Rubic", "Rango"], + "occurrences": 3 + }, + "0xa64a1b5b0a5ce578a8c6bca10cbe36d83713d170": { + "address": "0xa64a1b5b0a5ce578a8c6bca10cbe36d83713d170", + "symbol": "PENGUIN", + "decimals": 18, + "name": "PePenguin", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xa64a1b5b0a5ce578a8c6bca10cbe36d83713d170.png", + "aggregators": ["CoinGecko", "Rubic", "Rango"], + "occurrences": 3 + }, + "0xf48bc234855ab08ab2ec0cfaaeb2a80d065a3b07": { + "address": "0xf48bc234855ab08ab2ec0cfaaeb2a80d065a3b07", + "symbol": "BNKRW", + "decimals": 18, + "name": "BankrWallet", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xf48bc234855ab08ab2ec0cfaaeb2a80d065a3b07.png", + "aggregators": ["CoinGecko", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x99899a7362d726b43c5a360f10208610f7128b07": { + "address": "0x99899a7362d726b43c5a360f10208610f7128b07", + "symbol": "CHAT", + "decimals": 18, + "name": "chat", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x99899a7362d726b43c5a360f10208610f7128b07.png", + "aggregators": ["CoinGecko", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x81f35261b90ad59a1277c0e94f8012371eaafcb9": { + "address": "0x81f35261b90ad59a1277c0e94f8012371eaafcb9", + "symbol": "LUCKY", + "decimals": 18, + "name": "LadyLuck", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x81f35261b90ad59a1277c0e94f8012371eaafcb9.png", + "aggregators": ["CoinGecko", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x3c07ef1bd575b5f5b1ffcb868353f5bc501ed482": { + "address": "0x3c07ef1bd575b5f5b1ffcb868353f5bc501ed482", + "symbol": "U1INCH", + "decimals": 18, + "name": "Wrapped 1inch (Universal)", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x3c07ef1bd575b5f5b1ffcb868353f5bc501ed482.png", + "aggregators": ["CoinGecko", "Rubic", "Sonarwatch"], + "occurrences": 3 + }, + "0x2eddac071732a52ab2cbfa2d5fd89df4381f7f4a": { + "address": "0x2eddac071732a52ab2cbfa2d5fd89df4381f7f4a", + "symbol": "PP", + "decimals": 18, + "name": "Peach and Pablo", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x2eddac071732a52ab2cbfa2d5fd89df4381f7f4a.png", + "aggregators": ["CoinGecko", "Rubic", "Rango"], + "occurrences": 3 + }, + "0xabb77d3bc8a17a5a9ae5ccc227ae5e0691078453": { + "address": "0xabb77d3bc8a17a5a9ae5ccc227ae5e0691078453", + "symbol": "PATRIOT", + "decimals": 18, + "name": "PATRIOT", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xabb77d3bc8a17a5a9ae5ccc227ae5e0691078453.png", + "aggregators": ["CoinGecko", "Rubic", "Rango"], + "occurrences": 3 + }, + "0xa101ab557f30e8ca190113f63752caedb08ebb07": { + "address": "0xa101ab557f30e8ca190113f63752caedb08ebb07", + "symbol": "BEACON", + "decimals": 18, + "name": "BeaconOnBase", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xa101ab557f30e8ca190113f63752caedb08ebb07.png", + "aggregators": ["CoinGecko", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x015e03a6ccef48a18ddb6cfdc3066d9443875672": { + "address": "0x015e03a6ccef48a18ddb6cfdc3066d9443875672", + "symbol": "BLOCK", + "decimals": 18, + "name": "BLOCK", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x015e03a6ccef48a18ddb6cfdc3066d9443875672.png", + "aggregators": ["CoinGecko", "Rubic", "Squid"], + "occurrences": 3 + }, + "0x1ee5dd1794c28f559f94d2cc642bae62dc3be5cf": { + "address": "0x1ee5dd1794c28f559f94d2cc642bae62dc3be5cf", + "symbol": "LIKE", + "decimals": 6, + "name": "LIKE", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x1ee5dd1794c28f559f94d2cc642bae62dc3be5cf.png", + "aggregators": ["CoinGecko", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x080d43c2164afdbc3712422ce78ab902ccab5ca1": { + "address": "0x080d43c2164afdbc3712422ce78ab902ccab5ca1", + "symbol": "SPON", + "decimals": 18, + "name": "SPON", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x080d43c2164afdbc3712422ce78ab902ccab5ca1.png", + "aggregators": ["CoinGecko", "Rubic", "Rango"], + "occurrences": 3 + }, + "0xbe8728795b935bf6e2a9253ce7a2ef6fa831f51e": { + "address": "0xbe8728795b935bf6e2a9253ce7a2ef6fa831f51e", + "symbol": "UOS", + "decimals": 18, + "name": "Universal Operating System", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xbe8728795b935bf6e2a9253ce7a2ef6fa831f51e.png", + "aggregators": ["CoinGecko", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x521ebb84ea82ee65154b68ecfe3a7292fb3779d6": { + "address": "0x521ebb84ea82ee65154b68ecfe3a7292fb3779d6", + "symbol": "AGNT", + "decimals": 18, + "name": "AGNT", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x521ebb84ea82ee65154b68ecfe3a7292fb3779d6.png", + "aggregators": ["CoinGecko", "Rubic", "Rango"], + "occurrences": 3 + }, + "0xd88fd4a11255e51f64f78b4a7d74456325c2d8dc": { + "address": "0xd88fd4a11255e51f64f78b4a7d74456325c2d8dc", + "symbol": "BV7X", + "decimals": 18, + "name": "BitVault Signal", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xd88fd4a11255e51f64f78b4a7d74456325c2d8dc.png", + "aggregators": ["CoinGecko", "Rubic", "Rango"], + "occurrences": 3 + }, + "0xd628dc2c4ec10feb07e5c8bf039f7c1c374d1b07": { + "address": "0xd628dc2c4ec10feb07e5c8bf039f7c1c374d1b07", + "symbol": "ZIGGY", + "decimals": 18, + "name": "Ziggy", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xd628dc2c4ec10feb07e5c8bf039f7c1c374d1b07.png", + "aggregators": ["CoinGecko", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x0a455245148fa54129d8266f5d8742dd0d05f0c6": { + "address": "0x0a455245148fa54129d8266f5d8742dd0d05f0c6", + "symbol": "ARTS", + "decimals": 18, + "name": "ARTSTED", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x0a455245148fa54129d8266f5d8742dd0d05f0c6.png", + "aggregators": ["CoinGecko", "Rubic", "Squid"], + "occurrences": 3 + }, + "0x20429f731096e359910921994a267d32ef576720": { + "address": "0x20429f731096e359910921994a267d32ef576720", + "symbol": "SCAN", + "decimals": 18, + "name": "SCAN", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x20429f731096e359910921994a267d32ef576720.png", + "aggregators": ["CoinGecko", "Rubic", "Rango"], + "occurrences": 3 + }, + "0xbe1518af2419b8ead1fbca138a676d559fedb51d": { + "address": "0xbe1518af2419b8ead1fbca138a676d559fedb51d", + "symbol": "NXA", + "decimals": 18, + "name": "NEXA Agent", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xbe1518af2419b8ead1fbca138a676d559fedb51d.png", + "aggregators": ["CoinGecko", "Rubic", "Rango"], + "occurrences": 3 + }, + "0xaf79b22c0994b5e9188dea5b4321b3d99fadbee9": { + "address": "0xaf79b22c0994b5e9188dea5b4321b3d99fadbee9", + "symbol": "ROAR", + "decimals": 18, + "name": "Roarin", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xaf79b22c0994b5e9188dea5b4321b3d99fadbee9.png", + "aggregators": ["CoinGecko", "Rubic", "Rango"], + "occurrences": 3 + }, + "0xf714e60f85497d70508f7e356b5db80e64539ba3": { + "address": "0xf714e60f85497d70508f7e356b5db80e64539ba3", + "symbol": "PERKOS", + "decimals": 18, + "name": "PerkOS", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xf714e60f85497d70508f7e356b5db80e64539ba3.png", + "aggregators": ["CoinGecko", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x21cfcfc3d8f98fc728f48341d10ad8283f6eb7ab": { + "address": "0x21cfcfc3d8f98fc728f48341d10ad8283f6eb7ab", + "symbol": "TRUE", + "decimals": 18, + "name": "True", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x21cfcfc3d8f98fc728f48341d10ad8283f6eb7ab.png", + "aggregators": ["CoinGecko", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x920e753d8d7d5b598063c89b6f06288803448d06": { + "address": "0x920e753d8d7d5b598063c89b6f06288803448d06", + "symbol": "AIX", + "decimals": 18, + "name": "AIX", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x920e753d8d7d5b598063c89b6f06288803448d06.png", + "aggregators": ["CoinGecko", "Rubic", "Rango"], + "occurrences": 3 + }, + "0xfb3ad5550ca5730a6f91350032c4da1efdfde3e8": { + "address": "0xfb3ad5550ca5730a6f91350032c4da1efdfde3e8", + "symbol": "PHI", + "decimals": 18, + "name": "PHI", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xfb3ad5550ca5730a6f91350032c4da1efdfde3e8.png", + "aggregators": ["CoinGecko", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x9ea01819f6fbd41cb004216680e73096eed56cbf": { + "address": "0x9ea01819f6fbd41cb004216680e73096eed56cbf", + "symbol": "OXAI", + "decimals": 18, + "name": "Oxai", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x9ea01819f6fbd41cb004216680e73096eed56cbf.png", + "aggregators": ["CoinGecko", "Rubic", "Sonarwatch"], + "occurrences": 3 + }, + "0xb9f986d125dcb622ddfae1dc2df857ce84dc7deb": { + "address": "0xb9f986d125dcb622ddfae1dc2df857ce84dc7deb", + "symbol": "ACID", + "decimals": 18, + "name": "Happy Acid", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xb9f986d125dcb622ddfae1dc2df857ce84dc7deb.png", + "aggregators": ["CoinGecko", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x36a947baa2492c72bf9d3307117237e79145a87d": { + "address": "0x36a947baa2492c72bf9d3307117237e79145a87d", + "symbol": "TONY", + "decimals": 18, + "name": "TONY", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x36a947baa2492c72bf9d3307117237e79145a87d.png", + "aggregators": ["CoinGecko", "Rubic", "Rango"], + "occurrences": 3 + }, + "0xfaded58c5fac3d95643a14ee33b7ea9f50084b9a": { + "address": "0xfaded58c5fac3d95643a14ee33b7ea9f50084b9a", + "symbol": "TGATE", + "decimals": 18, + "name": "TensorGate", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xfaded58c5fac3d95643a14ee33b7ea9f50084b9a.png", + "aggregators": ["CoinGecko", "Rubic", "Rango"], + "occurrences": 3 + }, + "0xd3776969966b340d72d75731ef890a3bc9f21ba3": { + "address": "0xd3776969966b340d72d75731ef890a3bc9f21ba3", + "symbol": "GEM", + "decimals": 18, + "name": "Gem", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xd3776969966b340d72d75731ef890a3bc9f21ba3.png", + "aggregators": ["CoinGecko", "Rubic", "Rango"], + "occurrences": 3 + }, + "0xfb60b8266243d994eaa7499fca71d4ffe76c08d7": { + "address": "0xfb60b8266243d994eaa7499fca71d4ffe76c08d7", + "symbol": "FIN", + "decimals": 18, + "name": "Finwizz", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xfb60b8266243d994eaa7499fca71d4ffe76c08d7.png", + "aggregators": ["CoinGecko", "Rubic", "Squid"], + "occurrences": 3 + }, + "0xe57e601c06689d3e2bf7db7bebb14b4ff28400c6": { + "address": "0xe57e601c06689d3e2bf7db7bebb14b4ff28400c6", + "symbol": "MRDN", + "decimals": 18, + "name": "Meridian", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xe57e601c06689d3e2bf7db7bebb14b4ff28400c6.png", + "aggregators": ["CoinGecko", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x50d2280441372486beecdd328c1854743ebacb07": { + "address": "0x50d2280441372486beecdd328c1854743ebacb07", + "symbol": "KELLYCLAUDE", + "decimals": 18, + "name": "KellyClaude", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x50d2280441372486beecdd328c1854743ebacb07.png", + "aggregators": ["CoinGecko", "Rubic", "Rango"], + "occurrences": 3 + }, + "0xa760c69ae94b4b7c20b75f2eef2e84a4d48ffe37": { + "address": "0xa760c69ae94b4b7c20b75f2eef2e84a4d48ffe37", + "symbol": "NAOMI", + "decimals": 18, + "name": "Naomi by BunnyOS", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xa760c69ae94b4b7c20b75f2eef2e84a4d48ffe37.png", + "aggregators": ["CoinGecko", "Rubic", "Squid"], + "occurrences": 3 + }, + "0x4c7efedec321fb437b7c61e2acd8697769e98a76": { + "address": "0x4c7efedec321fb437b7c61e2acd8697769e98a76", + "symbol": "FOX", + "decimals": 18, + "name": "FOX BETS AI", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x4c7efedec321fb437b7c61e2acd8697769e98a76.png", + "aggregators": ["CoinGecko", "Rubic", "Squid"], + "occurrences": 3 + }, + "0xaa533169d1e182ed3e271079604dbdc643e895d1": { + "address": "0xaa533169d1e182ed3e271079604dbdc643e895d1", + "symbol": "FOXCLAW", + "decimals": 18, + "name": "Foxclaw", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xaa533169d1e182ed3e271079604dbdc643e895d1.png", + "aggregators": ["CoinGecko", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x1371b2a6998c42ccd3480207282c3fa2888148ce": { + "address": "0x1371b2a6998c42ccd3480207282c3fa2888148ce", + "symbol": "KYLIE", + "decimals": 14, + "name": "Kylie", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x1371b2a6998c42ccd3480207282c3fa2888148ce.png", + "aggregators": ["CoinGecko", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x9ae5f51d81ff510bf961218f833f79d57bfbab07": { + "address": "0x9ae5f51d81ff510bf961218f833f79d57bfbab07", + "symbol": "SELFCLAW", + "decimals": 18, + "name": "SelfClaw", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x9ae5f51d81ff510bf961218f833f79d57bfbab07.png", + "aggregators": ["CoinGecko", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x4e6c9f48f73e54ee5f3ab7e2992b2d733d0d0b07": { + "address": "0x4e6c9f48f73e54ee5f3ab7e2992b2d733d0d0b07", + "symbol": "JUNO", + "decimals": 18, + "name": "Juno Agent", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x4e6c9f48f73e54ee5f3ab7e2992b2d733d0d0b07.png", + "aggregators": ["CoinGecko", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x83d5d441ed15737d34226b682f7427d2217f2a8f": { + "address": "0x83d5d441ed15737d34226b682f7427d2217f2a8f", + "symbol": "REM", + "decimals": 18, + "name": "Real Estate Metaverse", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x83d5d441ed15737d34226b682f7427d2217f2a8f.png", + "aggregators": ["CoinGecko", "Rubic", "Rango"], + "occurrences": 3 + }, + "0xb17a7581c9a006e8b5fda85506cfd3448ed75746": { + "address": "0xb17a7581c9a006e8b5fda85506cfd3448ed75746", + "symbol": "AUDIT", + "decimals": 18, + "name": "The Audit Oracle AuditOne", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xb17a7581c9a006e8b5fda85506cfd3448ed75746.png", + "aggregators": ["CoinGecko", "Rubic", "Squid"], + "occurrences": 3 + }, + "0x31d553822b37bda67126d5ea9d165b9456f72b07": { + "address": "0x31d553822b37bda67126d5ea9d165b9456f72b07", + "symbol": "CLAUNCH", + "decimals": 18, + "name": "ConLaunch", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x31d553822b37bda67126d5ea9d165b9456f72b07.png", + "aggregators": ["CoinGecko", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x534b7aad1cdb6f02ec48cabe428f0d9131e40b07": { + "address": "0x534b7aad1cdb6f02ec48cabe428f0d9131e40b07", + "symbol": "MINI", + "decimals": 18, + "name": "minidev", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x534b7aad1cdb6f02ec48cabe428f0d9131e40b07.png", + "aggregators": ["CoinGecko", "Rubic", "Rango"], + "occurrences": 3 + }, + "0xd2047ebdb205ee6862b69ae9fb3501652cc97d36": { + "address": "0xd2047ebdb205ee6862b69ae9fb3501652cc97d36", + "symbol": "BRLV", + "decimals": 18, + "name": "BRLV", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xd2047ebdb205ee6862b69ae9fb3501652cc97d36.png", + "aggregators": ["CoinGecko", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x111123ea4cee28cf010703593a8a2a3bbb91756c": { + "address": "0x111123ea4cee28cf010703593a8a2a3bbb91756c", + "symbol": "ARA", + "decimals": 18, + "name": "ARA", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x111123ea4cee28cf010703593a8a2a3bbb91756c.png", + "aggregators": ["CoinGecko", "Rubic", "Rango"], + "occurrences": 3 + }, + "0xfaf1c31f6855e91b1a905761c81a79e4966e4709": { + "address": "0xfaf1c31f6855e91b1a905761c81a79e4966e4709", + "symbol": "BTC", + "decimals": 18, + "name": "Bitcoin Base", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xfaf1c31f6855e91b1a905761c81a79e4966e4709.png", + "aggregators": ["CoinGecko", "Rubic", "Rango"], + "occurrences": 3 + }, + "0xe4da9889db3d1987856e56da08ec7e9f484f6434": { + "address": "0xe4da9889db3d1987856e56da08ec7e9f484f6434", + "symbol": "LAZY", + "decimals": 18, + "name": "King Kovu", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xe4da9889db3d1987856e56da08ec7e9f484f6434.png", + "aggregators": ["CoinGecko", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x9f1529e296972f6eab3c7c87e898dac2c3a020bc": { + "address": "0x9f1529e296972f6eab3c7c87e898dac2c3a020bc", + "symbol": "PSYOPS", + "decimals": 18, + "name": "PSYOPS", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x9f1529e296972f6eab3c7c87e898dac2c3a020bc.png", + "aggregators": ["CoinGecko", "Rubic", "Squid"], + "occurrences": 3 + }, + "0x8c0d3adcf8ce094e1ae437557ec90a6374dc9bdd": { + "address": "0x8c0d3adcf8ce094e1ae437557ec90a6374dc9bdd", + "symbol": "OVPP", + "decimals": 9, + "name": "OpenVPP", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x8c0d3adcf8ce094e1ae437557ec90a6374dc9bdd.png", + "aggregators": ["CoinGecko", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x24f883b8157956101bb6a52eff94d3ae8188e890": { + "address": "0x24f883b8157956101bb6a52eff94d3ae8188e890", + "symbol": "GRIPPY", + "decimals": 18, + "name": "GRIPPY", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x24f883b8157956101bb6a52eff94d3ae8188e890.png", + "aggregators": ["CoinGecko", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x268d46d09d59d555350701a5336dc0d516f80de3": { + "address": "0x268d46d09d59d555350701a5336dc0d516f80de3", + "symbol": "ONLYUP", + "decimals": 18, + "name": "OnlyUp Token", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x268d46d09d59d555350701a5336dc0d516f80de3.png", + "aggregators": ["CoinGecko", "Rubic", "Rango"], + "occurrences": 3 + }, + "0xd4306991f8a5cef2d2bcb3262224ded11bd18bad": { + "address": "0xd4306991f8a5cef2d2bcb3262224ded11bd18bad", + "symbol": "MOONBASE", + "decimals": 18, + "name": "Moonbase", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xd4306991f8a5cef2d2bcb3262224ded11bd18bad.png", + "aggregators": ["CoinGecko", "Rubic", "Rango"], + "occurrences": 3 + }, + "0xf3ce5ddaab6c133f9875a4a46c55cf0b58111b07": { + "address": "0xf3ce5ddaab6c133f9875a4a46c55cf0b58111b07", + "symbol": "AXIOM", + "decimals": 18, + "name": "Axiom", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xf3ce5ddaab6c133f9875a4a46c55cf0b58111b07.png", + "aggregators": ["CoinGecko", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x85eac631c800af804476b140f87039f742c28ba3": { + "address": "0x85eac631c800af804476b140f87039f742c28ba3", + "symbol": "WOON", + "decimals": 18, + "name": "Woon", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x85eac631c800af804476b140f87039f742c28ba3.png", + "aggregators": ["CoinGecko", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x389e4cc15ace2f0993d61f0ff52c1f424915fb07": { + "address": "0x389e4cc15ace2f0993d61f0ff52c1f424915fb07", + "symbol": "RELDO", + "decimals": 18, + "name": "ReldoTheScribe", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x389e4cc15ace2f0993d61f0ff52c1f424915fb07.png", + "aggregators": ["CoinGecko", "Rubic", "Rango"], + "occurrences": 3 + }, + "0xd67a9266d0ae84839f62197713b2d2a9f3a62ba3": { + "address": "0xd67a9266d0ae84839f62197713b2d2a9f3a62ba3", + "symbol": "HISTORY", + "decimals": 18, + "name": "Ethereum History", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xd67a9266d0ae84839f62197713b2d2a9f3a62ba3.png", + "aggregators": ["CoinGecko", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x1fdcfdec6fe7a8956bd5b6c4a8c3791ae0a19065": { + "address": "0x1fdcfdec6fe7a8956bd5b6c4a8c3791ae0a19065", + "symbol": "BULLPEPE", + "decimals": 18, + "name": "Bull Pepe", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x1fdcfdec6fe7a8956bd5b6c4a8c3791ae0a19065.png", + "aggregators": ["CoinGecko", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x55c650b99529ebdda6f7199b64f94ad49316db07": { + "address": "0x55c650b99529ebdda6f7199b64f94ad49316db07", + "symbol": "CHIPS", + "decimals": 18, + "name": "King's Casino", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x55c650b99529ebdda6f7199b64f94ad49316db07.png", + "aggregators": ["CoinGecko", "Rubic", "Rango"], + "occurrences": 3 + }, + "0xf25620f89d0e23a8ba7b11ab3235b66268794196": { + "address": "0xf25620f89d0e23a8ba7b11ab3235b66268794196", + "symbol": "RISE", + "decimals": 18, + "name": "RISE", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xf25620f89d0e23a8ba7b11ab3235b66268794196.png", + "aggregators": ["CoinGecko", "Rubic", "Rango"], + "occurrences": 3 + }, + "0xba515eed0119acb7cfe8fab3acd6b362f3ed5319": { + "address": "0xba515eed0119acb7cfe8fab3acd6b362f3ed5319", + "symbol": "YUTY", + "decimals": 18, + "name": "Staked UTY", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xba515eed0119acb7cfe8fab3acd6b362f3ed5319.png", + "aggregators": ["CoinGecko", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x78a5d1de296f351a4bc1316fed9db443381a80cd": { + "address": "0x78a5d1de296f351a4bc1316fed9db443381a80cd", + "symbol": "AEGON", + "decimals": 18, + "name": "AEGON", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x78a5d1de296f351a4bc1316fed9db443381a80cd.png", + "aggregators": ["CoinGecko", "Rubic", "Squid"], + "occurrences": 3 + }, + "0x3513e4a7d27d18c2c894d98bc5a55406360b9ba3": { + "address": "0x3513e4a7d27d18c2c894d98bc5a55406360b9ba3", + "symbol": "PHAI", + "decimals": 18, + "name": "Pharmachain AI", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x3513e4a7d27d18c2c894d98bc5a55406360b9ba3.png", + "aggregators": ["CoinGecko", "Rubic", "Squid"], + "occurrences": 3 + }, + "0xfe20c1b85aba875ea8cecac8200bf86971968f3a": { + "address": "0xfe20c1b85aba875ea8cecac8200bf86971968f3a", + "symbol": "BALD", + "decimals": 18, + "name": "BALD", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xfe20c1b85aba875ea8cecac8200bf86971968f3a.png", + "aggregators": ["CoinGecko", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x42c99e0afd53299d92289e46e34e6f7ec117ae3d": { + "address": "0x42c99e0afd53299d92289e46e34e6f7ec117ae3d", + "symbol": "DREGEN", + "decimals": 18, + "name": "Dregen", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x42c99e0afd53299d92289e46e34e6f7ec117ae3d.png", + "aggregators": ["CoinGecko", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x98c51c8e958cccd37f798b2b9332d148e2c05d57": { + "address": "0x98c51c8e958cccd37f798b2b9332d148e2c05d57", + "symbol": "DAIMON", + "decimals": 18, + "name": "Daimon", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x98c51c8e958cccd37f798b2b9332d148e2c05d57.png", + "aggregators": ["CoinGecko", "Rubic", "Rango"], + "occurrences": 3 + }, + "0xcdca2eaae4a8a6b83d7a3589946c2301040dafbf": { + "address": "0xcdca2eaae4a8a6b83d7a3589946c2301040dafbf", + "symbol": "SURF", + "decimals": 18, + "name": "Surf", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xcdca2eaae4a8a6b83d7a3589946c2301040dafbf.png", + "aggregators": ["CoinGecko", "Rubic", "Rango"], + "occurrences": 3 + }, + "0xbdc27118ca76b375c6887b0ff068afb03dfc21a0": { + "address": "0xbdc27118ca76b375c6887b0ff068afb03dfc21a0", + "symbol": "ARBUS", + "decimals": 18, + "name": "Arbus", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xbdc27118ca76b375c6887b0ff068afb03dfc21a0.png", + "aggregators": ["CoinGecko", "Rubic", "Squid"], + "occurrences": 3 + }, + "0xd92b53ef83afaf0d0a0167cf7ac5951ad1994824": { + "address": "0xd92b53ef83afaf0d0a0167cf7ac5951ad1994824", + "symbol": "MGAMES", + "decimals": 9, + "name": "MemeGames AI", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xd92b53ef83afaf0d0a0167cf7ac5951ad1994824.png", + "aggregators": ["CoinGecko", "Rubic", "Rango"], + "occurrences": 3 + }, + "0xe4c94c578f53b58bdb580f15fc438ff10c7343a8": { + "address": "0xe4c94c578f53b58bdb580f15fc438ff10c7343a8", + "symbol": "XLLM2", + "decimals": 18, + "name": "xLLM2", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xe4c94c578f53b58bdb580f15fc438ff10c7343a8.png", + "aggregators": ["CoinGecko", "Rubic", "Squid"], + "occurrences": 3 + }, + "0x35e7942e91876eb0c24a891128e559a744fe8b07": { + "address": "0x35e7942e91876eb0c24a891128e559a744fe8b07", + "symbol": "BRAIN", + "decimals": 18, + "name": "MoltBrain", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x35e7942e91876eb0c24a891128e559a744fe8b07.png", + "aggregators": ["CoinGecko", "Rubic", "Rango"], + "occurrences": 3 + }, + "0xca179f3978137f5745e6d731591aaef985ee9d6d": { + "address": "0xca179f3978137f5745e6d731591aaef985ee9d6d", + "symbol": "BOTZ", + "decimals": 18, + "name": "Botatoz", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xca179f3978137f5745e6d731591aaef985ee9d6d.png", + "aggregators": ["CoinGecko", "Rubic", "Rango"], + "occurrences": 3 + }, + "0xb33acd55ec34c22dc3c0f75be36e483d9a420314": { + "address": "0xb33acd55ec34c22dc3c0f75be36e483d9a420314", + "symbol": "TI", + "decimals": 18, + "name": "Titanium Finance", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xb33acd55ec34c22dc3c0f75be36e483d9a420314.png", + "aggregators": ["CoinGecko", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x072915a43ac255cde1fa568218e5b6b10d0cb10f": { + "address": "0x072915a43ac255cde1fa568218e5b6b10d0cb10f", + "symbol": "MAYA", + "decimals": 18, + "name": "Maya world by Virtuals", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x072915a43ac255cde1fa568218e5b6b10d0cb10f.png", + "aggregators": ["CoinGecko", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x4ed9c2cb1c0331afd73fef1be5dea4866d8ea5f9": { + "address": "0x4ed9c2cb1c0331afd73fef1be5dea4866d8ea5f9", + "symbol": "HYB", + "decimals": 18, + "name": "Hybrid", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x4ed9c2cb1c0331afd73fef1be5dea4866d8ea5f9.png", + "aggregators": ["CoinGecko", "Rubic", "Squid"], + "occurrences": 3 + }, + "0x6b498b638d41f961b9684ec07980a62e76a85b07": { + "address": "0x6b498b638d41f961b9684ec07980a62e76a85b07", + "symbol": "EUDAEMON", + "decimals": 18, + "name": "eudaemon_0", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x6b498b638d41f961b9684ec07980a62e76a85b07.png", + "aggregators": ["CoinGecko", "Rubic", "Rango"], + "occurrences": 3 + }, + "0xcd339bd74fb792a134d6750b1bda04833a0a8453": { + "address": "0xcd339bd74fb792a134d6750b1bda04833a0a8453", + "symbol": "YUKI", + "decimals": 18, + "name": "Yuki", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xcd339bd74fb792a134d6750b1bda04833a0a8453.png", + "aggregators": ["CoinGecko", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x94a47aa810e85190fed418892ecbd68d5f463ff4": { + "address": "0x94a47aa810e85190fed418892ecbd68d5f463ff4", + "symbol": "VIVI", + "decimals": 18, + "name": "VIVI", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x94a47aa810e85190fed418892ecbd68d5f463ff4.png", + "aggregators": ["CoinGecko", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x7ee8964160126081cebc443a42482e95e393e6a8": { + "address": "0x7ee8964160126081cebc443a42482e95e393e6a8", + "symbol": "LIQ", + "decimals": 18, + "name": "LIQ", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x7ee8964160126081cebc443a42482e95e393e6a8.png", + "aggregators": ["CoinGecko", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x65021a79aeef22b17cdc1b768f5e79a8618beba3": { + "address": "0x65021a79aeef22b17cdc1b768f5e79a8618beba3", + "symbol": "ROBOTMONEY", + "decimals": 18, + "name": "Robot Money", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x65021a79aeef22b17cdc1b768f5e79a8618beba3.png", + "aggregators": ["CoinGecko", "Rubic", "Rango"], + "occurrences": 3 + }, + "0xd06f7f6affefb87af1bd243854e646725a044f2e": { + "address": "0xd06f7f6affefb87af1bd243854e646725a044f2e", + "symbol": "TRARDUN (TRN)", + "decimals": 18, + "name": "TRARDUN (TRN)", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xd06f7f6affefb87af1bd243854e646725a044f2e.png", + "aggregators": ["CoinGecko", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x33479a07983561ab5e27ad435399fc88159eea8b": { + "address": "0x33479a07983561ab5e27ad435399fc88159eea8b", + "symbol": "VIBES", + "decimals": 18, + "name": "Kolwaii by Virtuals", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x33479a07983561ab5e27ad435399fc88159eea8b.png", + "aggregators": ["CoinGecko", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x402fb5a74865af5863e099236151f19e04b95868": { + "address": "0x402fb5a74865af5863e099236151f19e04b95868", + "symbol": "COSMO", + "decimals": 18, + "name": "Cosmo", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x402fb5a74865af5863e099236151f19e04b95868.png", + "aggregators": ["CoinGecko", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x6a780b087a16c9f4270cd0dff6f44b7fec1fdf25": { + "address": "0x6a780b087a16c9f4270cd0dff6f44b7fec1fdf25", + "symbol": "FRIC", + "decimals": 18, + "name": "based fric", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x6a780b087a16c9f4270cd0dff6f44b7fec1fdf25.png", + "aggregators": ["CoinGecko", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x49bfa462ef61aea99eed375e35784dfd1360aba3": { + "address": "0x49bfa462ef61aea99eed375e35784dfd1360aba3", + "symbol": "AICO", + "decimals": 18, + "name": "Aicolabs", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x49bfa462ef61aea99eed375e35784dfd1360aba3.png", + "aggregators": ["CoinGecko", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x1efdb75869da742466c4c17d1e55fc469533ce1f": { + "address": "0x1efdb75869da742466c4c17d1e55fc469533ce1f", + "symbol": "MOLTIFI", + "decimals": 18, + "name": "Moltifi", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x1efdb75869da742466c4c17d1e55fc469533ce1f.png", + "aggregators": ["CoinGecko", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x0398ed3bfabe8334fd3f47a7115e7a4214ba5aa0": { + "address": "0x0398ed3bfabe8334fd3f47a7115e7a4214ba5aa0", + "symbol": "TRGT", + "decimals": 18, + "name": "Target", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x0398ed3bfabe8334fd3f47a7115e7a4214ba5aa0.png", + "aggregators": ["CoinGecko", "Rubic", "Rango"], + "occurrences": 3 + }, + "0xf426daeecf204f71dcabbca92e89db47b15cd141": { + "address": "0xf426daeecf204f71dcabbca92e89db47b15cd141", + "symbol": "ALEXANDERELORENZO", + "decimals": 18, + "name": "alexanderelorenzo", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xf426daeecf204f71dcabbca92e89db47b15cd141.png", + "aggregators": ["CoinGecko", "Rubic", "Rango"], + "occurrences": 3 + }, + "0xb2aca4ca8b7bbd9a5388ccb044c87dedf8a51c7c": { + "address": "0xb2aca4ca8b7bbd9a5388ccb044c87dedf8a51c7c", + "symbol": "TFY", + "decimals": 18, + "name": "TFY", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xb2aca4ca8b7bbd9a5388ccb044c87dedf8a51c7c.png", + "aggregators": ["CoinGecko", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x7d03acf64a1a64bff9d24850011cca93c78a22e7": { + "address": "0x7d03acf64a1a64bff9d24850011cca93c78a22e7", + "symbol": "WELEPHANT", + "decimals": 9, + "name": "Wrapped Elephant", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x7d03acf64a1a64bff9d24850011cca93c78a22e7.png", + "aggregators": ["CoinGecko", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x01812ca908b5731be0db86000c15c5afa3e834b2": { + "address": "0x01812ca908b5731be0db86000c15c5afa3e834b2", + "symbol": "IFR", + "decimals": 18, + "name": "Inferium", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x01812ca908b5731be0db86000c15c5afa3e834b2.png", + "aggregators": ["CoinGecko", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x81034fb34009115f215f5d5f564aac9ffa46a1dc": { + "address": "0x81034fb34009115f215f5d5f564aac9ffa46a1dc", + "symbol": "IAERO", + "decimals": 18, + "name": "IAERO", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x81034fb34009115f215f5d5f564aac9ffa46a1dc.png", + "aggregators": ["CoinGecko", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x3313338fe4bb2a166b81483bfcb2d4a6a1ebba8d": { + "address": "0x3313338fe4bb2a166b81483bfcb2d4a6a1ebba8d", + "symbol": "JUNGLE BAY MEMES", + "decimals": 18, + "name": "jungle bay memes", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x3313338fe4bb2a166b81483bfcb2d4a6a1ebba8d.png", + "aggregators": ["CoinGecko", "Rubic", "Rango"], + "occurrences": 3 + }, + "0xb6830e61aeba58e07884983451d26880b4078b07": { + "address": "0xb6830e61aeba58e07884983451d26880b4078b07", + "symbol": "SPOTLIGHT", + "decimals": 18, + "name": "Spotlight", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xb6830e61aeba58e07884983451d26880b4078b07.png", + "aggregators": ["CoinGecko", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x100ce3e3391c00b6a52911313a4ea8d23c8a38d8": { + "address": "0x100ce3e3391c00b6a52911313a4ea8d23c8a38d8", + "symbol": "JOOCE", + "decimals": 18, + "name": "JOOCE", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x100ce3e3391c00b6a52911313a4ea8d23c8a38d8.png", + "aggregators": ["CoinGecko", "Rubic", "Rango"], + "occurrences": 3 + }, + "0xf532ae2726099fa3665bcfc415563f6478172b07": { + "address": "0xf532ae2726099fa3665bcfc415563f6478172b07", + "symbol": "MOLTYCASH", + "decimals": 18, + "name": "MOLTYCASH", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xf532ae2726099fa3665bcfc415563f6478172b07.png", + "aggregators": ["CoinGecko", "Rubic", "Rango"], + "occurrences": 3 + }, + "0xbe29e78b18066b3bf7c70523371e0169350f6f53": { + "address": "0xbe29e78b18066b3bf7c70523371e0169350f6f53", + "symbol": "ZORBY", + "decimals": 18, + "name": "ZORBY", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xbe29e78b18066b3bf7c70523371e0169350f6f53.png", + "aggregators": ["CoinGecko", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x5c72992b83e74c4d5200a8e8920fb946214a5a5d": { + "address": "0x5c72992b83e74c4d5200a8e8920fb946214a5a5d", + "symbol": "BEAN", + "decimals": 18, + "name": "MineBean", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x5c72992b83e74c4d5200a8e8920fb946214a5a5d.png", + "aggregators": ["CoinGecko", "Rubic", "Rango"], + "occurrences": 3 + }, + "0xac5bdcf2eecebec8da3af0ef76912e197c6e547e": { + "address": "0xac5bdcf2eecebec8da3af0ef76912e197c6e547e", + "symbol": "FRAME", + "decimals": 18, + "name": "FRAME", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xac5bdcf2eecebec8da3af0ef76912e197c6e547e.png", + "aggregators": ["CoinGecko", "Rubic", "Rango"], + "occurrences": 3 + }, + "0xeff5672a3e73e104a56b7d16c1166f2ae0714b07": { + "address": "0xeff5672a3e73e104a56b7d16c1166f2ae0714b07", + "symbol": "FOMOLT", + "decimals": 18, + "name": "fomolt", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xeff5672a3e73e104a56b7d16c1166f2ae0714b07.png", + "aggregators": ["CoinGecko", "Rubic", "Rango"], + "occurrences": 3 + }, + "0xa601877977340862ca67f816eb079958e5bd0ba3": { + "address": "0xa601877977340862ca67f816eb079958e5bd0ba3", + "symbol": "BOTCOIN", + "decimals": 18, + "name": "BOTCOIN", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xa601877977340862ca67f816eb079958e5bd0ba3.png", + "aggregators": ["CoinGecko", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x9edc6a2d48ca6f098a75925e8690bc27549afd86": { + "address": "0x9edc6a2d48ca6f098a75925e8690bc27549afd86", + "symbol": "CLAWDOGE", + "decimals": 18, + "name": "Claw Doge", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x9edc6a2d48ca6f098a75925e8690bc27549afd86.png", + "aggregators": ["CoinGecko", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x62abe92f50c518165a5c010fe59f35023197fba3": { + "address": "0x62abe92f50c518165a5c010fe59f35023197fba3", + "symbol": "EDGE", + "decimals": 18, + "name": "EDGE", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x62abe92f50c518165a5c010fe59f35023197fba3.png", + "aggregators": ["CoinGecko", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x4af7439c4c8295738ee1fa2c77f63416f13fc894": { + "address": "0x4af7439c4c8295738ee1fa2c77f63416f13fc894", + "symbol": "NIV", + "decimals": 18, + "name": "Nivuniconu", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x4af7439c4c8295738ee1fa2c77f63416f13fc894.png", + "aggregators": ["CoinGecko", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x16cfb276ae69ed975ebfdf3cf90e817a28d5cb07": { + "address": "0x16cfb276ae69ed975ebfdf3cf90e817a28d5cb07", + "symbol": "NEXA", + "decimals": 18, + "name": "NexA", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x16cfb276ae69ed975ebfdf3cf90e817a28d5cb07.png", + "aggregators": ["CoinGecko", "Rubic", "Rango"], + "occurrences": 3 + }, + "0xb5b0f722d6d4a803d3df94c9ed12a191603eab07": { + "address": "0xb5b0f722d6d4a803d3df94c9ed12a191603eab07", + "symbol": "AMBERVIBE", + "decimals": 18, + "name": "AmberVibe", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xb5b0f722d6d4a803d3df94c9ed12a191603eab07.png", + "aggregators": ["CoinGecko", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x0215ed0fe07951b2cd68e1b39ffbd0a841fe3c6e": { + "address": "0x0215ed0fe07951b2cd68e1b39ffbd0a841fe3c6e", + "symbol": "BOMO", + "decimals": 18, + "name": "BOMO", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x0215ed0fe07951b2cd68e1b39ffbd0a841fe3c6e.png", + "aggregators": ["CoinGecko", "Rubic", "Rango"], + "occurrences": 3 + }, + "0xed664536023d8e4b1640c394777d34abaff1df8f": { + "address": "0xed664536023d8e4b1640c394777d34abaff1df8f", + "symbol": "POD", + "decimals": 18, + "name": "Dolphin", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xed664536023d8e4b1640c394777d34abaff1df8f.png", + "aggregators": ["CoinGecko", "Rubic", "Rango"], + "occurrences": 3 + }, + "0xc5c4fcd6147e3bdaeeb5a0898a439aec1e1baba3": { + "address": "0xc5c4fcd6147e3bdaeeb5a0898a439aec1e1baba3", + "symbol": "HAZZA", + "decimals": 18, + "name": "hazza", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xc5c4fcd6147e3bdaeeb5a0898a439aec1e1baba3.png", + "aggregators": ["CoinGecko", "Rubic", "Rango"], + "occurrences": 3 + }, + "0xcec3661ac188c692fd1f5e5bd0c4ae37771ca3db": { + "address": "0xcec3661ac188c692fd1f5e5bd0c4ae37771ca3db", + "symbol": "HELLOWORLD", + "decimals": 18, + "name": "HELLOWORLD", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xcec3661ac188c692fd1f5e5bd0c4ae37771ca3db.png", + "aggregators": ["CoinGecko", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x3abd07d37610f9414d88aea9fa94adcacadf4082": { + "address": "0x3abd07d37610f9414d88aea9fa94adcacadf4082", + "symbol": "BMA", + "decimals": 18, + "name": "BMA Token", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x3abd07d37610f9414d88aea9fa94adcacadf4082.png", + "aggregators": ["CoinGecko", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x8fe435d4f6900bbbe6b48431b91833f69beacba3": { + "address": "0x8fe435d4f6900bbbe6b48431b91833f69beacba3", + "symbol": "SCOUT", + "decimals": 18, + "name": "BuilderScout", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x8fe435d4f6900bbbe6b48431b91833f69beacba3.png", + "aggregators": ["CoinGecko", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x43657652dbc7ce1c5432650153abde904e884b07": { + "address": "0x43657652dbc7ce1c5432650153abde904e884b07", + "symbol": "MOLTLINE", + "decimals": 18, + "name": "moltline", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x43657652dbc7ce1c5432650153abde904e884b07.png", + "aggregators": ["CoinGecko", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x7d6bea5c1f9d4751affeb917c6a23cd5d266a070": { + "address": "0x7d6bea5c1f9d4751affeb917c6a23cd5d266a070", + "symbol": "VVC", + "decimals": 18, + "name": "Virtuals Ventures", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x7d6bea5c1f9d4751affeb917c6a23cd5d266a070.png", + "aggregators": ["CoinGecko", "Rubic", "Squid"], + "occurrences": 3 + }, + "0xd8db4c337d09da8d7ceb7d87adfe224d17785ba3": { + "address": "0xd8db4c337d09da8d7ceb7d87adfe224d17785ba3", + "symbol": "COP", + "decimals": 18, + "name": "Clash of Perps", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xd8db4c337d09da8d7ceb7d87adfe224d17785ba3.png", + "aggregators": ["CoinGecko", "Rubic", "Rango"], + "occurrences": 3 + }, + "0xf30bf00edd0c22db54c9274b90d2a4c21fc09b07": { + "address": "0xf30bf00edd0c22db54c9274b90d2a4c21fc09b07", + "symbol": "FELIX", + "decimals": 18, + "name": "FELIX", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xf30bf00edd0c22db54c9274b90d2a4c21fc09b07.png", + "aggregators": ["CoinGecko", "Rubic", "Rango"], + "occurrences": 3 + }, + "0xcb682e7232cb23a4bb02ac3817883d99929f3ba3": { + "address": "0xcb682e7232cb23a4bb02ac3817883d99929f3ba3", + "symbol": "MIRROR", + "decimals": 18, + "name": "Mirror", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xcb682e7232cb23a4bb02ac3817883d99929f3ba3.png", + "aggregators": ["CoinGecko", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x1f1a979e6f9e0179218376041ea54caedef5dba3": { + "address": "0x1f1a979e6f9e0179218376041ea54caedef5dba3", + "symbol": "ETHR", + "decimals": 18, + "name": "Ethresearchbot", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x1f1a979e6f9e0179218376041ea54caedef5dba3.png", + "aggregators": ["CoinGecko", "Rubic", "Rango"], + "occurrences": 3 + }, + "0xe0ce610c37c2691f064f1fe5c213e9ba9c16ad0c": { + "address": "0xe0ce610c37c2691f064f1fe5c213e9ba9c16ad0c", + "symbol": "SPIRA", + "decimals": 18, + "name": "SPIRA", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xe0ce610c37c2691f064f1fe5c213e9ba9c16ad0c.png", + "aggregators": ["CoinGecko", "Rubic", "Squid"], + "occurrences": 3 + }, + "0xb235cf255b48500df4459475e054e7beb25cb772": { + "address": "0xb235cf255b48500df4459475e054e7beb25cb772", + "symbol": "NEMESIS", + "decimals": 18, + "name": "Nemesis", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xb235cf255b48500df4459475e054e7beb25cb772.png", + "aggregators": ["CoinGecko", "Rubic", "Rango"], + "occurrences": 3 + }, + "0xab3f23c2abcb4e12cc8b593c218a7ba64ed17ba3": { + "address": "0xab3f23c2abcb4e12cc8b593c218a7ba64ed17ba3", + "symbol": "CRED", + "decimals": 18, + "name": "Helixa Cred", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xab3f23c2abcb4e12cc8b593c218a7ba64ed17ba3.png", + "aggregators": ["CoinGecko", "Rubic", "Rango"], + "occurrences": 3 + }, + "0xbb8d2a0f11c2e4885e26a46ea56a1bc6e84ce674": { + "address": "0xbb8d2a0f11c2e4885e26a46ea56a1bc6e84ce674", + "symbol": "HUEY", + "decimals": 18, + "name": "Huey", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xbb8d2a0f11c2e4885e26a46ea56a1bc6e84ce674.png", + "aggregators": ["CoinGecko", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x0358795322c04de04ead2338a803a9d3518a9877": { + "address": "0x0358795322c04de04ead2338a803a9d3518a9877", + "symbol": "TYSM", + "decimals": 18, + "name": "TYSM", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x0358795322c04de04ead2338a803a9d3518a9877.png", + "aggregators": ["CoinGecko", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x2bd8880e7424dfb94597429de7253de73694de01": { + "address": "0x2bd8880e7424dfb94597429de7253de73694de01", + "symbol": "GIA", + "decimals": 18, + "name": "Gia by DexFi", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x2bd8880e7424dfb94597429de7253de73694de01.png", + "aggregators": ["CoinGecko", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x806b6f3d576744c6b05088e4e49e3aadbca110cc": { + "address": "0x806b6f3d576744c6b05088e4e49e3aadbca110cc", + "symbol": "CHARLIE", + "decimals": 18, + "name": "Charlie", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x806b6f3d576744c6b05088e4e49e3aadbca110cc.png", + "aggregators": ["CoinGecko", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x845f4fbf04d03958be38ff91e43dfb5d40dd8241": { + "address": "0x845f4fbf04d03958be38ff91e43dfb5d40dd8241", + "symbol": "GO", + "decimals": 18, + "name": "GO", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x845f4fbf04d03958be38ff91e43dfb5d40dd8241.png", + "aggregators": ["CoinGecko", "Rubic", "Rango"], + "occurrences": 3 + }, + "0xc930784d6e14e2fc2a1f49be1068dc40f24762d3": { + "address": "0xc930784d6e14e2fc2a1f49be1068dc40f24762d3", + "symbol": "CNGN", + "decimals": 6, + "name": "CNGN", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xc930784d6e14e2fc2a1f49be1068dc40f24762d3.png", + "aggregators": ["CoinGecko", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x316ffb9c875f900adcf04889e415cc86b564eba3": { + "address": "0x316ffb9c875f900adcf04889e415cc86b564eba3", + "symbol": "LITCOIN", + "decimals": 18, + "name": "Litcoin", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x316ffb9c875f900adcf04889e415cc86b564eba3.png", + "aggregators": ["CoinGecko", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x81040cfd2bb62062525d958ad01931988a590b07": { + "address": "0x81040cfd2bb62062525d958ad01931988a590b07", + "symbol": "LUKSO", + "decimals": 18, + "name": "LUKSOAgent", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x81040cfd2bb62062525d958ad01931988a590b07.png", + "aggregators": ["CoinGecko", "Rubic", "Rango"], + "occurrences": 3 + }, + "0xc0497fb3fc4fd0a17900cf69fc72a03799915301": { + "address": "0xc0497fb3fc4fd0a17900cf69fc72a03799915301", + "symbol": "HYBUX", + "decimals": 18, + "name": "HYBUX", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xc0497fb3fc4fd0a17900cf69fc72a03799915301.png", + "aggregators": ["CoinGecko", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x06a05043eb2c1691b19c2c13219db9212269ddc5": { + "address": "0x06a05043eb2c1691b19c2c13219db9212269ddc5", + "symbol": "BURGERS", + "decimals": 18, + "name": "Burger Money", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x06a05043eb2c1691b19c2c13219db9212269ddc5.png", + "aggregators": ["CoinGecko", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x0d186f8c94293dd8ea65d3ae3eba3a8cad91b769": { + "address": "0x0d186f8c94293dd8ea65d3ae3eba3a8cad91b769", + "symbol": "ORACLE", + "decimals": 18, + "name": "oracle", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x0d186f8c94293dd8ea65d3ae3eba3a8cad91b769.png", + "aggregators": ["CoinGecko", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x45b9a03a05f86088cd1a00874a05dda2c6915ba3": { + "address": "0x45b9a03a05f86088cd1a00874a05dda2c6915ba3", + "symbol": "CASHCLAW", + "decimals": 18, + "name": "MrCashClaw", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x45b9a03a05f86088cd1a00874a05dda2c6915ba3.png", + "aggregators": ["CoinGecko", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x88a082df256da966170689e10782b2851402eb07": { + "address": "0x88a082df256da966170689e10782b2851402eb07", + "symbol": "MOLTD", + "decimals": 18, + "name": "Molt domains", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x88a082df256da966170689e10782b2851402eb07.png", + "aggregators": ["CoinGecko", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x38df5d99dd151282615ce007ff9662c198b4c00b": { + "address": "0x38df5d99dd151282615ce007ff9662c198b4c00b", + "symbol": "HELIX", + "decimals": 18, + "name": "Helix", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x38df5d99dd151282615ce007ff9662c198b4c00b.png", + "aggregators": ["CoinGecko", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x7fe0244a02630c7cf649c07339accecc6f2976b4": { + "address": "0x7fe0244a02630c7cf649c07339accecc6f2976b4", + "symbol": "PUGGLES", + "decimals": 18, + "name": "Mr. Puggles", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x7fe0244a02630c7cf649c07339accecc6f2976b4.png", + "aggregators": ["CoinGecko", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x89aca77d84616e89a7e4b201e95ba612ede0496b": { + "address": "0x89aca77d84616e89a7e4b201e95ba612ede0496b", + "symbol": "BASEDBILL", + "decimals": 9, + "name": "Based Bill", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x89aca77d84616e89a7e4b201e95ba612ede0496b.png", + "aggregators": ["CoinGecko", "Rubic", "Rango"], + "occurrences": 3 + }, + "0xe014d2a4da6e450f21b5050120d291e63c8940fd": { + "address": "0xe014d2a4da6e450f21b5050120d291e63c8940fd", + "symbol": "SOGNI", + "decimals": 18, + "name": "Sogni AI", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xe014d2a4da6e450f21b5050120d291e63c8940fd.png", + "aggregators": ["CoinGecko", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x0b0e6e32e4d69cb418630163574959108edcb80e": { + "address": "0x0b0e6e32e4d69cb418630163574959108edcb80e", + "symbol": "REAL", + "decimals": 18, + "name": "Defactor", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x0b0e6e32e4d69cb418630163574959108edcb80e.png", + "aggregators": ["CoinGecko", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x4b73c08ea7ba32593e8ca02c6910c6447e6f6642": { + "address": "0x4b73c08ea7ba32593e8ca02c6910c6447e6f6642", + "symbol": "BUIDL", + "decimals": 18, + "name": "GoHackerAI", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x4b73c08ea7ba32593e8ca02c6910c6447e6f6642.png", + "aggregators": ["CoinGecko", "Rubic", "Squid"], + "occurrences": 3 + }, + "0x0d30be9d9c2cf90aeff4fef5b2e8c3d0b02596a0": { + "address": "0x0d30be9d9c2cf90aeff4fef5b2e8c3d0b02596a0", + "symbol": "BLARB", + "decimals": 18, + "name": "BLARB", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x0d30be9d9c2cf90aeff4fef5b2e8c3d0b02596a0.png", + "aggregators": ["CoinGecko", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x22cbee8a77611720da5fe2f1b1c8104dbc2f7b07": { + "address": "0x22cbee8a77611720da5fe2f1b1c8104dbc2f7b07", + "symbol": "MOLTYPICS", + "decimals": 18, + "name": "MoltyPics", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x22cbee8a77611720da5fe2f1b1c8104dbc2f7b07.png", + "aggregators": ["CoinGecko", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x915c135d2cbcad68e5c30f1cea0ee7129f57fd03": { + "address": "0x915c135d2cbcad68e5c30f1cea0ee7129f57fd03", + "symbol": "UFX", + "decimals": 18, + "name": "UFX Project", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x915c135d2cbcad68e5c30f1cea0ee7129f57fd03.png", + "aggregators": ["CoinGecko", "Rubic", "Squid"], + "occurrences": 3 + }, + "0x8f7d0c6ae30c50c6dfc00612ec5bff2c3685261c": { + "address": "0x8f7d0c6ae30c50c6dfc00612ec5bff2c3685261c", + "symbol": "JACK", + "decimals": 18, + "name": "Jack Potts", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x8f7d0c6ae30c50c6dfc00612ec5bff2c3685261c.png", + "aggregators": ["CoinGecko", "Rubic", "Squid"], + "occurrences": 3 + }, + "0x31eda2dfd01c9c65385cce6099b24b06ef3ae831": { + "address": "0x31eda2dfd01c9c65385cce6099b24b06ef3ae831", + "symbol": "IRVUS", + "decimals": 18, + "name": "IRVUS TOKEN", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x31eda2dfd01c9c65385cce6099b24b06ef3ae831.png", + "aggregators": ["CoinGecko", "Rubic", "Rango"], + "occurrences": 3 + }, + "0xec313c9d476c6cca6839ad60266302eac6e2e9fa": { + "address": "0xec313c9d476c6cca6839ad60266302eac6e2e9fa", + "symbol": "BABYPOO", + "decimals": 18, + "name": "Baby Poo", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xec313c9d476c6cca6839ad60266302eac6e2e9fa.png", + "aggregators": ["CoinGecko", "Rubic", "Rango"], + "occurrences": 3 + }, + "0xf42c45e5b79c9564c95a9b8641518a58b0d089de": { + "address": "0xf42c45e5b79c9564c95a9b8641518a58b0d089de", + "symbol": "FREN", + "decimals": 18, + "name": "FRENCHIE", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xf42c45e5b79c9564c95a9b8641518a58b0d089de.png", + "aggregators": ["CoinGecko", "Rubic", "Sonarwatch"], + "occurrences": 3 + }, + "0x80b84b63c88d054d300d51e801c2a65e20d44b07": { + "address": "0x80b84b63c88d054d300d51e801c2a65e20d44b07", + "symbol": "KNT", + "decimals": 18, + "name": "KayakNet", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x80b84b63c88d054d300d51e801c2a65e20d44b07.png", + "aggregators": ["CoinGecko", "Rubic", "Rango"], + "occurrences": 3 + }, + "0xe183b1a4dd59ca732211678eca1836ee35bce582": { + "address": "0xe183b1a4dd59ca732211678eca1836ee35bce582", + "symbol": "DICK", + "decimals": 18, + "name": "D1ckGPT", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xe183b1a4dd59ca732211678eca1836ee35bce582.png", + "aggregators": ["CoinGecko", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x65d88916d9fa10762e62d26592610fe52de31d5a": { + "address": "0x65d88916d9fa10762e62d26592610fe52de31d5a", + "symbol": "ZEME", + "decimals": 18, + "name": "zeme", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x65d88916d9fa10762e62d26592610fe52de31d5a.png", + "aggregators": ["CoinGecko", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x1cdbb57b12f732cfb4dc06f690acef476485b2a5": { + "address": "0x1cdbb57b12f732cfb4dc06f690acef476485b2a5", + "symbol": "CLANKERMON", + "decimals": 18, + "name": "Clankermon", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x1cdbb57b12f732cfb4dc06f690acef476485b2a5.png", + "aggregators": ["CoinGecko", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x0a9bc2c63e84436538185543bc0dcca42c4d2cf6": { + "address": "0x0a9bc2c63e84436538185543bc0dcca42c4d2cf6", + "symbol": "BAPO", + "decimals": 18, + "name": "AGENT BAPO", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x0a9bc2c63e84436538185543bc0dcca42c4d2cf6.png", + "aggregators": ["CoinGecko", "Rubic", "Rango"], + "occurrences": 3 + }, + "0xcaf75598b8b9a6e645b60d882845d361f549f5ec": { + "address": "0xcaf75598b8b9a6e645b60d882845d361f549f5ec", + "symbol": "BALAJIS", + "decimals": 18, + "name": "balajis", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xcaf75598b8b9a6e645b60d882845d361f549f5ec.png", + "aggregators": ["CoinGecko", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x1f015712aa2a48085ec93f87d643bb625b668b07": { + "address": "0x1f015712aa2a48085ec93f87d643bb625b668b07", + "symbol": "I", + "decimals": 18, + "name": "indexy", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x1f015712aa2a48085ec93f87d643bb625b668b07.png", + "aggregators": ["CoinGecko", "Rubic", "Rango"], + "occurrences": 3 + }, + "0xf25cc9c024036dec8fc983e88253549667ee5b07": { + "address": "0xf25cc9c024036dec8fc983e88253549667ee5b07", + "symbol": "HOUSE", + "decimals": 18, + "name": "HOUSE", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xf25cc9c024036dec8fc983e88253549667ee5b07.png", + "aggregators": ["CoinGecko", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x98d59767cd1335071a4e9b9d3482685c915131e8": { + "address": "0x98d59767cd1335071a4e9b9d3482685c915131e8", + "symbol": "DREAM", + "decimals": 18, + "name": "dreamcoins", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x98d59767cd1335071a4e9b9d3482685c915131e8.png", + "aggregators": ["CoinGecko", "Rubic", "Rango"], + "occurrences": 3 + }, + "0xd8707b400a5dc85cbaddb7279c2bf40221df2521": { + "address": "0xd8707b400a5dc85cbaddb7279c2bf40221df2521", + "symbol": "SHARDS", + "decimals": 18, + "name": "Shards", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xd8707b400a5dc85cbaddb7279c2bf40221df2521.png", + "aggregators": ["CoinGecko", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x05af98aebec91aef2bd893614a2c333c58855012": { + "address": "0x05af98aebec91aef2bd893614a2c333c58855012", + "symbol": "AUCTION", + "decimals": 18, + "name": "House", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x05af98aebec91aef2bd893614a2c333c58855012.png", + "aggregators": ["CoinGecko", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x06f71fb90f84b35302d132322a3c90e4477333b0": { + "address": "0x06f71fb90f84b35302d132322a3c90e4477333b0", + "symbol": "BRACKY", + "decimals": 18, + "name": "BRACKY", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x06f71fb90f84b35302d132322a3c90e4477333b0.png", + "aggregators": ["CoinGecko", "Rubic", "Rango"], + "occurrences": 3 + }, + "0xccb00cb269a62dc0c2021c3d699a564e8a868f48": { + "address": "0xccb00cb269a62dc0c2021c3d699a564e8a868f48", + "symbol": "RATTHEW", + "decimals": 18, + "name": "ratthew", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xccb00cb269a62dc0c2021c3d699a564e8a868f48.png", + "aggregators": ["CoinGecko", "Rubic", "Rango"], + "occurrences": 3 + }, + "0xa3109f24185ce81b89b9ceead7f81e3b07a61b07": { + "address": "0xa3109f24185ce81b89b9ceead7f81e3b07a61b07", + "symbol": "MOVIE", + "decimals": 18, + "name": "Sequel", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xa3109f24185ce81b89b9ceead7f81e3b07a61b07.png", + "aggregators": ["CoinGecko", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x56d4938431f7fae7c6741e061aa2683df12256f8": { + "address": "0x56d4938431f7fae7c6741e061aa2683df12256f8", + "symbol": "BULLGOD", + "decimals": 18, + "name": "Bull God", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x56d4938431f7fae7c6741e061aa2683df12256f8.png", + "aggregators": ["CoinGecko", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x05a5b4e217004eb84c6787e0ecbe7a46cfd94cdd": { + "address": "0x05a5b4e217004eb84c6787e0ecbe7a46cfd94cdd", + "symbol": "LAÏKA", + "decimals": 18, + "name": "Laïka", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x05a5b4e217004eb84c6787e0ecbe7a46cfd94cdd.png", + "aggregators": ["CoinGecko", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x9f86db9fc6f7c9408e8fda3ff8ce4e78ac7a6b07": { + "address": "0x9f86db9fc6f7c9408e8fda3ff8ce4e78ac7a6b07", + "symbol": "CLAWD", + "decimals": 18, + "name": "clawd.atg.eth", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x9f86db9fc6f7c9408e8fda3ff8ce4e78ac7a6b07.png", + "aggregators": ["CoinGecko", "Rubic", "Rango"], + "occurrences": 3 + }, + "0xcf00e8a7eaf62d8c9b4e573308a8be30badd47c4": { + "address": "0xcf00e8a7eaf62d8c9b4e573308a8be30badd47c4", + "symbol": "BASEGUY", + "decimals": 18, + "name": "Just a Based Guy", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xcf00e8a7eaf62d8c9b4e573308a8be30badd47c4.png", + "aggregators": ["CoinGecko", "Rubic", "Rango"], + "occurrences": 3 + }, + "0xc7584340d6b8444b069de8c0b526caa6961c5b07": { + "address": "0xc7584340d6b8444b069de8c0b526caa6961c5b07", + "symbol": "BUILDERARENA", + "decimals": 18, + "name": "Builder Arena", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xc7584340d6b8444b069de8c0b526caa6961c5b07.png", + "aggregators": ["CoinGecko", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x3d63825b0d8669307366e6c8202f656b9e91d368": { + "address": "0x3d63825b0d8669307366e6c8202f656b9e91d368", + "symbol": "WGC", + "decimals": 6, + "name": "Wild Goat Coin", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x3d63825b0d8669307366e6c8202f656b9e91d368.png", + "aggregators": ["CoinGecko", "Socket", "Rubic"], + "occurrences": 3 + }, + "0x16332535e2c27da578bc2e82beb09ce9d3c8eb07": { + "address": "0x16332535e2c27da578bc2e82beb09ce9d3c8eb07", + "symbol": "CLAWBANK", + "decimals": 18, + "name": "ClawBank", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x16332535e2c27da578bc2e82beb09ce9d3c8eb07.png", + "aggregators": ["CoinGecko", "Rubic", "Rango"], + "occurrences": 3 + }, + "0xb8d59c7b33054beda610b2b2d38ea38694cdfabd": { + "address": "0xb8d59c7b33054beda610b2b2d38ea38694cdfabd", + "symbol": "MIDAS", + "decimals": 18, + "name": "Midas The Minotaur", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xb8d59c7b33054beda610b2b2d38ea38694cdfabd.png", + "aggregators": ["CoinGecko", "Rubic", "Rango"], + "occurrences": 3 + }, + "0xa3c285b49fdc0a5498fddb629f975cb40aecabd4": { + "address": "0xa3c285b49fdc0a5498fddb629f975cb40aecabd4", + "symbol": "TAGAI", + "decimals": 18, + "name": "tagSpace", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xa3c285b49fdc0a5498fddb629f975cb40aecabd4.png", + "aggregators": ["CoinGecko", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x000307575269863b6cb67916b9e7fc3c6235c000": { + "address": "0x000307575269863b6cb67916b9e7fc3c6235c000", + "symbol": "MYEVA", + "decimals": 2, + "name": "myEva", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x000307575269863b6cb67916b9e7fc3c6235c000.png", + "aggregators": ["CoinGecko", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x62720cee08fdafa62473f0b4e462a84a0fd04ce9": { + "address": "0x62720cee08fdafa62473f0b4e462a84a0fd04ce9", + "symbol": "CRYPTOKALEO", + "decimals": 18, + "name": "cryptokaleo", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x62720cee08fdafa62473f0b4e462a84a0fd04ce9.png", + "aggregators": ["CoinGecko", "Rubic", "Rango"], + "occurrences": 3 + }, + "0xae4a37d554c6d6f3e398546d8566b25052e0169c": { + "address": "0xae4a37d554c6d6f3e398546d8566b25052e0169c", + "symbol": "DONUT", + "decimals": 18, + "name": "Donut", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xae4a37d554c6d6f3e398546d8566b25052e0169c.png", + "aggregators": ["CoinGecko", "Rubic", "Rango"], + "occurrences": 3 + }, + "0xb886cf1444bff05e9a99e00543bc4054d423ebfd": { + "address": "0xb886cf1444bff05e9a99e00543bc4054d423ebfd", + "symbol": "TORIVA", + "decimals": 18, + "name": "Toriva", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xb886cf1444bff05e9a99e00543bc4054d423ebfd.png", + "aggregators": ["CoinGecko", "Rubic", "Rango"], + "occurrences": 3 + }, + "0xf895783b2931c919955e18b5e3343e7c7c456ba3": { + "address": "0xf895783b2931c919955e18b5e3343e7c7c456ba3", + "symbol": "BLUEAGENT", + "decimals": 18, + "name": "Blue Agent", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xf895783b2931c919955e18b5e3343e7c7c456ba3.png", + "aggregators": ["CoinGecko", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x616b416f777e3dc904a44aa259a475bf26d06ef9": { + "address": "0x616b416f777e3dc904a44aa259a475bf26d06ef9", + "symbol": "BLAI", + "decimals": 18, + "name": "blai", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x616b416f777e3dc904a44aa259a475bf26d06ef9.png", + "aggregators": ["CoinGecko", "Rubic", "Rango"], + "occurrences": 3 + }, + "0xfca95aeb5bf44ae355806a5ad14659c940dc6bf7": { + "address": "0xfca95aeb5bf44ae355806a5ad14659c940dc6bf7", + "symbol": "SHIB", + "decimals": 9, + "name": "SHIBA INU", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xfca95aeb5bf44ae355806a5ad14659c940dc6bf7.png", + "aggregators": ["CoinGecko", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x06fe6d0ec562e19cfc491c187f0a02ce8d5083e4": { + "address": "0x06fe6d0ec562e19cfc491c187f0a02ce8d5083e4", + "symbol": "ROAST", + "decimals": 18, + "name": "BurnieAI", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x06fe6d0ec562e19cfc491c187f0a02ce8d5083e4.png", + "aggregators": ["CoinGecko", "Rubic", "Squid"], + "occurrences": 3 + }, + "0x6d96f18f00b815b2109a3766e79f6a7ad7785624": { + "address": "0x6d96f18f00b815b2109a3766e79f6a7ad7785624", + "symbol": "PATIENCE", + "decimals": 18, + "name": "PATIENCE", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x6d96f18f00b815b2109a3766e79f6a7ad7785624.png", + "aggregators": ["CoinGecko", "Rubic", "Rango"], + "occurrences": 3 + }, + "0xf5a346ab106042d19743532162c2b07d22414557": { + "address": "0xf5a346ab106042d19743532162c2b07d22414557", + "symbol": "LILMIQUELA.BASE.ETH", + "decimals": 18, + "name": "lilmiquela.base.eth", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xf5a346ab106042d19743532162c2b07d22414557.png", + "aggregators": ["CoinGecko", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x1de93ac1dea94497e97513d3cf8dbe5b9e72b25d": { + "address": "0x1de93ac1dea94497e97513d3cf8dbe5b9e72b25d", + "symbol": "BULLSVSBEARS", + "decimals": 18, + "name": "Bulls vs Bears", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x1de93ac1dea94497e97513d3cf8dbe5b9e72b25d.png", + "aggregators": ["CoinGecko", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x43e74d30443b5e7661ac077ce626a6b134e803c4": { + "address": "0x43e74d30443b5e7661ac077ce626a6b134e803c4", + "symbol": "PILT", + "decimals": 18, + "name": "Pilot3", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x43e74d30443b5e7661ac077ce626a6b134e803c4.png", + "aggregators": ["CoinGecko", "Rubic", "Squid"], + "occurrences": 3 + }, + "0x1dd264855c7de0e2fe2cdd6e82bcc71bd86c4fe9": { + "address": "0x1dd264855c7de0e2fe2cdd6e82bcc71bd86c4fe9", + "symbol": "WRP", + "decimals": 18, + "name": "Warp", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x1dd264855c7de0e2fe2cdd6e82bcc71bd86c4fe9.png", + "aggregators": ["CoinGecko", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x787b7b7117848c1f9fc79a8fa543202c231c1edb": { + "address": "0x787b7b7117848c1f9fc79a8fa543202c231c1edb", + "symbol": "CRYPTICPOET", + "decimals": 18, + "name": "crypticpoet", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x787b7b7117848c1f9fc79a8fa543202c231c1edb.png", + "aggregators": ["CoinGecko", "Rubic", "Rango"], + "occurrences": 3 + }, + "0xd413485aa9ca4f88419904255a2384f667dddcab": { + "address": "0xd413485aa9ca4f88419904255a2384f667dddcab", + "symbol": "ELI5A", + "decimals": 18, + "name": "Eli5a", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xd413485aa9ca4f88419904255a2384f667dddcab.png", + "aggregators": ["CoinGecko", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x2dc1c8be620b95cba25d78774f716f05b159c8b9": { + "address": "0x2dc1c8be620b95cba25d78774f716f05b159c8b9", + "symbol": "BONK", + "decimals": 18, + "name": "Based Bonk", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x2dc1c8be620b95cba25d78774f716f05b159c8b9.png", + "aggregators": ["CoinGecko", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x820c5f0fb255a1d18fd0ebb0f1ccefbc4d546da7": { + "address": "0x820c5f0fb255a1d18fd0ebb0f1ccefbc4d546da7", + "symbol": "A0X", + "decimals": 18, + "name": "A0x", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x820c5f0fb255a1d18fd0ebb0f1ccefbc4d546da7.png", + "aggregators": ["CoinGecko", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x638a57267633b8bd9756de2e3a1e2de658b52b07": { + "address": "0x638a57267633b8bd9756de2e3a1e2de658b52b07", + "symbol": "REPLY", + "decimals": 18, + "name": "REPLY", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x638a57267633b8bd9756de2e3a1e2de658b52b07.png", + "aggregators": ["CoinGecko", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x0981209bd6a8b2439271156f73c1a7722f1c1347": { + "address": "0x0981209bd6a8b2439271156f73c1a7722f1c1347", + "symbol": "HUNT", + "decimals": 18, + "name": "Greyhunt", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x0981209bd6a8b2439271156f73c1a7722f1c1347.png", + "aggregators": ["CoinGecko", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x3cc0d3ecc81ba57abf3494abc8d4cb0a43410b07": { + "address": "0x3cc0d3ecc81ba57abf3494abc8d4cb0a43410b07", + "symbol": "GM", + "decimals": 18, + "name": "GMonchain", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x3cc0d3ecc81ba57abf3494abc8d4cb0a43410b07.png", + "aggregators": ["CoinGecko", "Rubic", "Rango"], + "occurrences": 3 + }, + "0xd81cb23a4690f7fdf54e583f221d2c01882604f8": { + "address": "0xd81cb23a4690f7fdf54e583f221d2c01882604f8", + "symbol": "MDOGAI", + "decimals": 18, + "name": "MoonDog AI", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xd81cb23a4690f7fdf54e583f221d2c01882604f8.png", + "aggregators": ["CoinGecko", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x896bf81f9c92c6ef6f9a49679c62e876b405bba3": { + "address": "0x896bf81f9c92c6ef6f9a49679c62e876b405bba3", + "symbol": "CLAWBERRY", + "decimals": 18, + "name": "CLAWBERRY", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x896bf81f9c92c6ef6f9a49679c62e876b405bba3.png", + "aggregators": ["CoinGecko", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x5d4d258144bc954aefc00ee6cbda0433b1b2dcd3": { + "address": "0x5d4d258144bc954aefc00ee6cbda0433b1b2dcd3", + "symbol": "VITASTEM", + "decimals": 18, + "name": "VitaStem", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x5d4d258144bc954aefc00ee6cbda0433b1b2dcd3.png", + "aggregators": ["CoinGecko", "Rubic", "Rango"], + "occurrences": 3 + }, + "0xf4d7fd100b5b03e51261a2e6a673632ef2c68896": { + "address": "0xf4d7fd100b5b03e51261a2e6a673632ef2c68896", + "symbol": "COINAGE", + "decimals": 18, + "name": "coinage", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xf4d7fd100b5b03e51261a2e6a673632ef2c68896.png", + "aggregators": ["CoinGecko", "Rubic", "Rango"], + "occurrences": 3 + }, + "0xb738b1568f08b0d6894a580ef805e9298ebfab46": { + "address": "0xb738b1568f08b0d6894a580ef805e9298ebfab46", + "symbol": "LAND", + "decimals": 18, + "name": "Land Bid", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xb738b1568f08b0d6894a580ef805e9298ebfab46.png", + "aggregators": ["CoinGecko", "Rubic", "Rango"], + "occurrences": 3 + }, + "0xc797fc5ca8ef5502aaa0307b9bfc45e877d6caf5": { + "address": "0xc797fc5ca8ef5502aaa0307b9bfc45e877d6caf5", + "symbol": "SUPER", + "decimals": 18, + "name": "Super Connector", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xc797fc5ca8ef5502aaa0307b9bfc45e877d6caf5.png", + "aggregators": ["CoinGecko", "Rubic", "Squid"], + "occurrences": 3 + }, + "0x0bc945e3ea693ad1527683d9cfe999407ebaabb0": { + "address": "0x0bc945e3ea693ad1527683d9cfe999407ebaabb0", + "symbol": "NET", + "decimals": 18, + "name": "Net", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x0bc945e3ea693ad1527683d9cfe999407ebaabb0.png", + "aggregators": ["CoinGecko", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x749e5334752466cda899b302ed4176b8573dc877": { + "address": "0x749e5334752466cda899b302ed4176b8573dc877", + "symbol": "SIM", + "decimals": 18, + "name": "Assimilate", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x749e5334752466cda899b302ed4176b8573dc877.png", + "aggregators": ["CoinGecko", "Rubic", "Rango"], + "occurrences": 3 + }, + "0xdf006fa7fc1d09a93378e400fe920665412e9046": { + "address": "0xdf006fa7fc1d09a93378e400fe920665412e9046", + "symbol": "PUB", + "decimals": 18, + "name": "Pubhouse Dominance Index", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xdf006fa7fc1d09a93378e400fe920665412e9046.png", + "aggregators": ["CoinGecko", "Rubic", "Rango"], + "occurrences": 3 + }, + "0xf3280115245a7470e7bbdd35e2b4f4094f511443": { + "address": "0xf3280115245a7470e7bbdd35e2b4f4094f511443", + "symbol": "KARUM", + "decimals": 18, + "name": "Karum", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xf3280115245a7470e7bbdd35e2b4f4094f511443.png", + "aggregators": ["CoinGecko", "Rubic", "Rango"], + "occurrences": 3 + }, + "0xe8850bbc9c289c34e7c92c9572be38f77d61cb07": { + "address": "0xe8850bbc9c289c34e7c92c9572be38f77d61cb07", + "symbol": "CLOUDX", + "decimals": 18, + "name": "ClawCloudX", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xe8850bbc9c289c34e7c92c9572be38f77d61cb07.png", + "aggregators": ["CoinGecko", "Rubic", "Rango"], + "occurrences": 3 + }, + "0xc0f2485c17c42344f9138de7d514695c2ee360bc": { + "address": "0xc0f2485c17c42344f9138de7d514695c2ee360bc", + "symbol": "BTCSWAG", + "decimals": 18, + "name": "BitSwagger", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xc0f2485c17c42344f9138de7d514695c2ee360bc.png", + "aggregators": ["CoinGecko", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x002b28fa26982da609f069383ee424b4d36f1b07": { + "address": "0x002b28fa26982da609f069383ee424b4d36f1b07", + "symbol": "ELIOS", + "decimals": 18, + "name": "EliosBase", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x002b28fa26982da609f069383ee424b4d36f1b07.png", + "aggregators": ["CoinGecko", "Rubic", "Rango"], + "occurrences": 3 + }, + "0xd901b38bdd0cd7a8800575cd505d65428a48ba38": { + "address": "0xd901b38bdd0cd7a8800575cd505d65428a48ba38", + "symbol": "DESS", + "decimals": 18, + "name": "Dessistant", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xd901b38bdd0cd7a8800575cd505d65428a48ba38.png", + "aggregators": ["CoinGecko", "Rubic", "Squid"], + "occurrences": 3 + }, + "0x5081de08282c67e5f5d01073a85e8f992a41d780": { + "address": "0x5081de08282c67e5f5d01073a85e8f992a41d780", + "symbol": "AWAI", + "decimals": 18, + "name": "Alliewai", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x5081de08282c67e5f5d01073a85e8f992a41d780.png", + "aggregators": ["CoinGecko", "Rubic", "Squid"], + "occurrences": 3 + }, + "0x032a7252b4932c44bde89aee6275744376a96bff": { + "address": "0x032a7252b4932c44bde89aee6275744376a96bff", + "symbol": "ATTN", + "decimals": 6, + "name": "Attention Token", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x032a7252b4932c44bde89aee6275744376a96bff.png", + "aggregators": ["CoinGecko", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x9f44218d487bff2f81bef45202601df4bd4d1055": { + "address": "0x9f44218d487bff2f81bef45202601df4bd4d1055", + "symbol": "ARCX", + "decimals": 18, + "name": "Architex", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x9f44218d487bff2f81bef45202601df4bd4d1055.png", + "aggregators": ["CoinGecko", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x1196c6704789620514fd25632abe15f69a50bc4f": { + "address": "0x1196c6704789620514fd25632abe15f69a50bc4f", + "symbol": "PEPEC", + "decimals": 18, + "name": "PEPE Clanker", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x1196c6704789620514fd25632abe15f69a50bc4f.png", + "aggregators": ["CoinGecko", "Rubic", "Rango"], + "occurrences": 3 + }, + "0xdddf73c5535eec1d6aa7f41880cbe69a64066eb1": { + "address": "0xdddf73c5535eec1d6aa7f41880cbe69a64066eb1", + "symbol": "RING", + "decimals": 18, + "name": "Ringfence", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xdddf73c5535eec1d6aa7f41880cbe69a64066eb1.png", + "aggregators": ["CoinGecko", "Rubic", "Squid"], + "occurrences": 3 + }, + "0x6dfb7bfa06e7c2b6c20c22c0afb44852c201eb07": { + "address": "0x6dfb7bfa06e7c2b6c20c22c0afb44852c201eb07", + "symbol": "SOLVR", + "decimals": 18, + "name": "Solvr", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x6dfb7bfa06e7c2b6c20c22c0afb44852c201eb07.png", + "aggregators": ["CoinGecko", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x3e04dee527a90ddfa1fe6f9e12a4d62677d00071": { + "address": "0x3e04dee527a90ddfa1fe6f9e12a4d62677d00071", + "symbol": "ZORBYAI", + "decimals": 18, + "name": "zorbyai", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x3e04dee527a90ddfa1fe6f9e12a4d62677d00071.png", + "aggregators": ["CoinGecko", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x2fc3dd4dacfd1b2fabac157de8727b54bade4b07": { + "address": "0x2fc3dd4dacfd1b2fabac157de8727b54bade4b07", + "symbol": "CLAWIAI", + "decimals": 18, + "name": "ClawiAi", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x2fc3dd4dacfd1b2fabac157de8727b54bade4b07.png", + "aggregators": ["CoinGecko", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x5682a3ba66eeb60e82d18865849b513ab9c9692d": { + "address": "0x5682a3ba66eeb60e82d18865849b513ab9c9692d", + "symbol": "SINBAD CREW BASE", + "decimals": 18, + "name": "SINBAD CREW BASE", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x5682a3ba66eeb60e82d18865849b513ab9c9692d.png", + "aggregators": ["CoinGecko", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x00cb1fbca324d51325a7264d54072bc073c28ba3": { + "address": "0x00cb1fbca324d51325a7264d54072bc073c28ba3", + "symbol": "DARKSOL", + "decimals": 18, + "name": "Darksol", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x00cb1fbca324d51325a7264d54072bc073c28ba3.png", + "aggregators": ["CoinGecko", "Rubic", "Rango"], + "occurrences": 3 + }, + "0xf327abd3c9709c9834d0ad1dc253ff6eed86c04d": { + "address": "0xf327abd3c9709c9834d0ad1dc253ff6eed86c04d", + "symbol": "BREAD", + "decimals": 9, + "name": "COINBREAD", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xf327abd3c9709c9834d0ad1dc253ff6eed86c04d.png", + "aggregators": ["CoinGecko", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x452867ec20dc5061056c1613db2801f512dda1c1": { + "address": "0x452867ec20dc5061056c1613db2801f512dda1c1", + "symbol": "GECKO", + "decimals": 18, + "name": "Agent Gecko TV", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x452867ec20dc5061056c1613db2801f512dda1c1.png", + "aggregators": ["CoinGecko", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x5b9957a7459347163881d19a87f6dc13291c2b07": { + "address": "0x5b9957a7459347163881d19a87f6dc13291c2b07", + "symbol": "JUMPBOX.ETH", + "decimals": 18, + "name": "jumpbox.eth", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x5b9957a7459347163881d19a87f6dc13291c2b07.png", + "aggregators": ["CoinGecko", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x33e7f871ce502ec77a0d96fdcd02c9219f95e944": { + "address": "0x33e7f871ce502ec77a0d96fdcd02c9219f95e944", + "symbol": "BOMET", + "decimals": 18, + "name": "BOMET", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x33e7f871ce502ec77a0d96fdcd02c9219f95e944.png", + "aggregators": ["CoinGecko", "Rubic", "Rango"], + "occurrences": 3 + }, + "0xa6c6ea2e0140849be02a3a34780cf61b766916c5": { + "address": "0xa6c6ea2e0140849be02a3a34780cf61b766916c5", + "symbol": "UNITE", + "decimals": 18, + "name": "Unite", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xa6c6ea2e0140849be02a3a34780cf61b766916c5.png", + "aggregators": ["CoinGecko", "Rubic", "Rango"], + "occurrences": 3 + }, + "0xec3d2537a03fc4d790aa1fc66fa7dfadc6b245fb": { + "address": "0xec3d2537a03fc4d790aa1fc66fa7dfadc6b245fb", + "symbol": "WARS", + "decimals": 18, + "name": "WARS by wow.ai", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xec3d2537a03fc4d790aa1fc66fa7dfadc6b245fb.png", + "aggregators": ["CoinGecko", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x09f87f948c88848363b124c9099cbb58e4cc7cb6": { + "address": "0x09f87f948c88848363b124c9099cbb58e4cc7cb6", + "symbol": "MESSY", + "decimals": 18, + "name": "MESSY", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x09f87f948c88848363b124c9099cbb58e4cc7cb6.png", + "aggregators": ["CoinGecko", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x06fc3d5d2369561e28f261148576520f5e49d6ea": { + "address": "0x06fc3d5d2369561e28f261148576520f5e49d6ea", + "symbol": "AVC", + "decimals": 18, + "name": "AVC", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x06fc3d5d2369561e28f261148576520f5e49d6ea.png", + "aggregators": ["CoinGecko", "Rubic", "Rango"], + "occurrences": 3 + }, + "0xc33b0ba16875b94aaa55ae6c870cc01cd31501c2": { + "address": "0xc33b0ba16875b94aaa55ae6c870cc01cd31501c2", + "symbol": "S3NSE", + "decimals": 18, + "name": "S3NSE AI", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xc33b0ba16875b94aaa55ae6c870cc01cd31501c2.png", + "aggregators": ["CoinGecko", "Rubic", "Rango"], + "occurrences": 3 + }, + "0xaadd98ad4660008c917c6fe7286bc54b2eef894d": { + "address": "0xaadd98ad4660008c917c6fe7286bc54b2eef894d", + "symbol": "CLONES", + "decimals": 18, + "name": "CLONES", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xaadd98ad4660008c917c6fe7286bc54b2eef894d.png", + "aggregators": ["CoinGecko", "Rubic", "Rango"], + "occurrences": 3 + }, + "0xe061aa40be525a13296cb4bf69f513242349d708": { + "address": "0xe061aa40be525a13296cb4bf69f513242349d708", + "symbol": "XVGBASE", + "decimals": 18, + "name": "XVGBASE", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xe061aa40be525a13296cb4bf69f513242349d708.png", + "aggregators": ["CoinGecko", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x4c7e7371e40b3f8c74dda97e967a47eee6b0b38f": { + "address": "0x4c7e7371e40b3f8c74dda97e967a47eee6b0b38f", + "symbol": "LSD", + "decimals": 18, + "name": "Liquid Sonic Drop", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x4c7e7371e40b3f8c74dda97e967a47eee6b0b38f.png", + "aggregators": ["CoinGecko", "Rubic", "Rango"], + "occurrences": 3 + }, + "0xe6c854488811fbd6472b684360ad5c393c7bae8f": { + "address": "0xe6c854488811fbd6472b684360ad5c393c7bae8f", + "symbol": "BID", + "decimals": 18, + "name": "bid.launch", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xe6c854488811fbd6472b684360ad5c393c7bae8f.png", + "aggregators": ["CoinGecko", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x95ccfd2b81a9667b0cc979992632f98fc853eba3": { + "address": "0x95ccfd2b81a9667b0cc979992632f98fc853eba3", + "symbol": "HERMESOS", + "decimals": 18, + "name": "Hermes OS", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x95ccfd2b81a9667b0cc979992632f98fc853eba3.png", + "aggregators": ["CoinGecko", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x3058e9b4bfe397b81e2b91da79cff685d662049f": { + "address": "0x3058e9b4bfe397b81e2b91da79cff685d662049f", + "symbol": "SPLOOT", + "decimals": 18, + "name": "Sploots", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x3058e9b4bfe397b81e2b91da79cff685d662049f.png", + "aggregators": ["CoinGecko", "Rubic", "Squid"], + "occurrences": 3 + }, + "0x172b81d3396fbccd97090c9a685ed67f8c7a5f8f": { + "address": "0x172b81d3396fbccd97090c9a685ed67f8c7a5f8f", + "symbol": "BOBO", + "decimals": 18, + "name": "Bobo the Base", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x172b81d3396fbccd97090c9a685ed67f8c7a5f8f.png", + "aggregators": ["CoinGecko", "Rubic", "Rango"], + "occurrences": 3 + }, + "0xa6f774051dfb6b54869227fda2df9cb46f296c09": { + "address": "0xa6f774051dfb6b54869227fda2df9cb46f296c09", + "symbol": "SKICAT", + "decimals": 18, + "name": "SKI MASK CAT", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xa6f774051dfb6b54869227fda2df9cb46f296c09.png", + "aggregators": ["CoinGecko", "Rubic", "Rango"], + "occurrences": 3 + }, + "0xd9159ad2d5fe625cd1f54f4d328fb19cb5262b07": { + "address": "0xd9159ad2d5fe625cd1f54f4d328fb19cb5262b07", + "symbol": "WARP", + "decimals": 18, + "name": "Warplet", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xd9159ad2d5fe625cd1f54f4d328fb19cb5262b07.png", + "aggregators": ["CoinGecko", "Rubic", "Rango"], + "occurrences": 3 + }, + "0xf383074c4b993d1ccd196188d27d0ddf22ad463c": { + "address": "0xf383074c4b993d1ccd196188d27d0ddf22ad463c", + "symbol": "UAAVE", + "decimals": 18, + "name": "Wrapped Aave (Universal)", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xf383074c4b993d1ccd196188d27d0ddf22ad463c.png", + "aggregators": ["CoinGecko", "Rubic", "Sonarwatch"], + "occurrences": 3 + }, + "0xe497a3444ca6cbfc1c5a1ce537b743a21ff9f1ca": { + "address": "0xe497a3444ca6cbfc1c5a1ce537b743a21ff9f1ca", + "symbol": "JAZZER", + "decimals": 18, + "name": "Jazzer Guys", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xe497a3444ca6cbfc1c5a1ce537b743a21ff9f1ca.png", + "aggregators": ["CoinGecko", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x61f47ec6d1d0ef9b095574d7b76cf0467d13fb07": { + "address": "0x61f47ec6d1d0ef9b095574d7b76cf0467d13fb07", + "symbol": "HOTDOG", + "decimals": 18, + "name": "Hotdog", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x61f47ec6d1d0ef9b095574d7b76cf0467d13fb07.png", + "aggregators": ["CoinGecko", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x35c8afb7d3ad01b154a5e8e0f92f31181d101a3d": { + "address": "0x35c8afb7d3ad01b154a5e8e0f92f31181d101a3d", + "symbol": "BTC", + "decimals": 18, + "name": "Big Tom Coin", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x35c8afb7d3ad01b154a5e8e0f92f31181d101a3d.png", + "aggregators": ["CoinGecko", "Rubic", "Rango"], + "occurrences": 3 + }, + "0xf0197f10ea542a67914ecc0ec5304dc9df1faf6f": { + "address": "0xf0197f10ea542a67914ecc0ec5304dc9df1faf6f", + "symbol": "DEAD", + "decimals": 18, + "name": "DEAD", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xf0197f10ea542a67914ecc0ec5304dc9df1faf6f.png", + "aggregators": ["CoinGecko", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x3d81fbe679e8aa27a290b15aab5af5fa23cdcca3": { + "address": "0x3d81fbe679e8aa27a290b15aab5af5fa23cdcca3", + "symbol": "WARPLET", + "decimals": 18, + "name": "Warplet", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x3d81fbe679e8aa27a290b15aab5af5fa23cdcca3.png", + "aggregators": ["CoinGecko", "Rubic", "Rango"], + "occurrences": 3 + }, + "0xffcadd0cdadd39673991a1dda4a756a801535f48": { + "address": "0xffcadd0cdadd39673991a1dda4a756a801535f48", + "symbol": "FLIPR", + "decimals": 18, + "name": "Flipr.bet", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xffcadd0cdadd39673991a1dda4a756a801535f48.png", + "aggregators": ["CoinGecko", "Rubic", "Rango"], + "occurrences": 3 + }, + "0xf10d342c5aa57d917579a2e51f60ed2227e6e7f9": { + "address": "0xf10d342c5aa57d917579a2e51f60ed2227e6e7f9", + "symbol": "STUBBS", + "decimals": 18, + "name": "Cat Mayor", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xf10d342c5aa57d917579a2e51f60ed2227e6e7f9.png", + "aggregators": ["CoinGecko", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x4e4c7c62a55c0cf450f1ff4478be7f4c34dde155": { + "address": "0x4e4c7c62a55c0cf450f1ff4478be7f4c34dde155", + "symbol": "MOLTASK", + "decimals": 18, + "name": "Moltask", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x4e4c7c62a55c0cf450f1ff4478be7f4c34dde155.png", + "aggregators": ["CoinGecko", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x67446a5746b5f1ce62d78f40f8c83dba03ae3e15": { + "address": "0x67446a5746b5f1ce62d78f40f8c83dba03ae3e15", + "symbol": "DUCK", + "decimals": 18, + "name": "AppDuck", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x67446a5746b5f1ce62d78f40f8c83dba03ae3e15.png", + "aggregators": ["CoinGecko", "Rubic", "Squid"], + "occurrences": 3 + }, + "0x13b628ff6db92070c0fbad79523240e0f5defb07": { + "address": "0x13b628ff6db92070c0fbad79523240e0f5defb07", + "symbol": "PIZZA", + "decimals": 18, + "name": "PIZZA", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x13b628ff6db92070c0fbad79523240e0f5defb07.png", + "aggregators": ["CoinGecko", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x080b9b4d1034a5de562e6343706c8200ae56bd51": { + "address": "0x080b9b4d1034a5de562e6343706c8200ae56bd51", + "symbol": "CLAWRIS", + "decimals": 18, + "name": "Clawris", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x080b9b4d1034a5de562e6343706c8200ae56bd51.png", + "aggregators": ["CoinGecko", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x6a54aa801607a09f11be4f83fcc324696163bb07": { + "address": "0x6a54aa801607a09f11be4f83fcc324696163bb07", + "symbol": "CLAWSHI", + "decimals": 18, + "name": "Clawshi", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x6a54aa801607a09f11be4f83fcc324696163bb07.png", + "aggregators": ["CoinGecko", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x07321eae7b7018a241c97c3e31f072098c3d5bc6": { + "address": "0x07321eae7b7018a241c97c3e31f072098c3d5bc6", + "symbol": "DARE", + "decimals": 18, + "name": "Daredevil", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x07321eae7b7018a241c97c3e31f072098c3d5bc6.png", + "aggregators": ["CoinGecko", "Rubic", "Squid"], + "occurrences": 3 + }, + "0x59c0d5c34c301ac0600147924d6c9be22a2f0b07": { + "address": "0x59c0d5c34c301ac0600147924d6c9be22a2f0b07", + "symbol": "MOLTEN", + "decimals": 18, + "name": "Molten", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x59c0d5c34c301ac0600147924d6c9be22a2f0b07.png", + "aggregators": ["CoinGecko", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x3722264ab15a1dfce5a5af89e6547f7949a8aba3": { + "address": "0x3722264ab15a1dfce5a5af89e6547f7949a8aba3", + "symbol": "LFI", + "decimals": 18, + "name": "LienFi", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x3722264ab15a1dfce5a5af89e6547f7949a8aba3.png", + "aggregators": ["CoinGecko", "Rubic", "Rango"], + "occurrences": 3 + }, + "0xc34803d003f582b122b9575c14007373ad8c9383": { + "address": "0xc34803d003f582b122b9575c14007373ad8c9383", + "symbol": "CLAWLETT", + "decimals": 18, + "name": "CLAWLETT", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xc34803d003f582b122b9575c14007373ad8c9383.png", + "aggregators": ["CoinGecko", "Rubic", "Rango"], + "occurrences": 3 + }, + "0xd7bc6a05a56655fb2052f742b012d1dfd66e1ba3": { + "address": "0xd7bc6a05a56655fb2052f742b012d1dfd66e1ba3", + "symbol": "MIROSHARK", + "decimals": 18, + "name": "MiroShark", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xd7bc6a05a56655fb2052f742b012d1dfd66e1ba3.png", + "aggregators": ["CoinGecko", "Rubic", "Rango"], + "occurrences": 3 + }, + "0xbe535d034078e262f72c67020006a63e8c64592f": { + "address": "0xbe535d034078e262f72c67020006a63e8c64592f", + "symbol": "KUDABERI", + "decimals": 18, + "name": "Kudaberi", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xbe535d034078e262f72c67020006a63e8c64592f.png", + "aggregators": ["CoinGecko", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x73cb479f2ccf77bad90bcda91e3987358437240a": { + "address": "0x73cb479f2ccf77bad90bcda91e3987358437240a", + "symbol": "BIOS", + "decimals": 18, + "name": "BasisOS by Virtuals", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x73cb479f2ccf77bad90bcda91e3987358437240a.png", + "aggregators": ["CoinGecko", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x14e18043a68530acb5306f603109f7dc91b09b07": { + "address": "0x14e18043a68530acb5306f603109f7dc91b09b07", + "symbol": "EMMET", + "decimals": 18, + "name": "I Emmet", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x14e18043a68530acb5306f603109f7dc91b09b07.png", + "aggregators": ["CoinGecko", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x2357110f5f0c5344eef75966500c75116a4aa153": { + "address": "0x2357110f5f0c5344eef75966500c75116a4aa153", + "symbol": "PR", + "decimals": 18, + "name": "Primer", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x2357110f5f0c5344eef75966500c75116a4aa153.png", + "aggregators": ["CoinGecko", "Rubic", "Rango"], + "occurrences": 3 + }, + "0xeed0b37580fd9ee711f0a477b2be5c306b41ef12": { + "address": "0xeed0b37580fd9ee711f0a477b2be5c306b41ef12", + "symbol": "VORTEX", + "decimals": 9, + "name": "Vortex", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xeed0b37580fd9ee711f0a477b2be5c306b41ef12.png", + "aggregators": ["CoinGecko", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x1f3ba804efb9cfe17d595e7262cea4782dbf6e4e": { + "address": "0x1f3ba804efb9cfe17d595e7262cea4782dbf6e4e", + "symbol": "HPC", + "decimals": 18, + "name": "Happy Puppy Club", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x1f3ba804efb9cfe17d595e7262cea4782dbf6e4e.png", + "aggregators": ["CoinGecko", "Rubic", "Rango"], + "occurrences": 3 + }, + "0xde61878b0b21ce395266c44d4d548d1c72a3eb07": { + "address": "0xde61878b0b21ce395266c44d4d548d1c72a3eb07", + "symbol": "SAIRI", + "decimals": 18, + "name": "SAIRI", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xde61878b0b21ce395266c44d4d548d1c72a3eb07.png", + "aggregators": ["CoinGecko", "Rubic", "Rango"], + "occurrences": 3 + }, + "0xa140438827e1ab9ee27018eedcc7aad9136033d8": { + "address": "0xa140438827e1ab9ee27018eedcc7aad9136033d8", + "symbol": "PIXEL", + "decimals": 18, + "name": "pixelcoin.fun", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xa140438827e1ab9ee27018eedcc7aad9136033d8.png", + "aggregators": ["CoinGecko", "Rubic", "Rango"], + "occurrences": 3 + }, + "0xe642657e4f43e6dcf0bd73ef24008394574dee28": { + "address": "0xe642657e4f43e6dcf0bd73ef24008394574dee28", + "symbol": "RECORD", + "decimals": 18, + "name": "MusicProtocolRECORDToken", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xe642657e4f43e6dcf0bd73ef24008394574dee28.png", + "aggregators": ["CoinGecko", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x04175b1f982b8c8444f238ac0aae59f029e21099": { + "address": "0x04175b1f982b8c8444f238ac0aae59f029e21099", + "symbol": "BNXR", + "decimals": 18, + "name": "BankrX", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x04175b1f982b8c8444f238ac0aae59f029e21099.png", + "aggregators": ["CoinGecko", "Rubic", "Rango"], + "occurrences": 3 + }, + "0xfb7a83abe4f4a4e51c77b92e521390b769ff6467": { + "address": "0xfb7a83abe4f4a4e51c77b92e521390b769ff6467", + "symbol": "MAXX", + "decimals": 18, + "name": "Ethermax", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xfb7a83abe4f4a4e51c77b92e521390b769ff6467.png", + "aggregators": ["CoinGecko", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x3aaf8a9e6c2a63af24c97cb29121d19c1cc10993": { + "address": "0x3aaf8a9e6c2a63af24c97cb29121d19c1cc10993", + "symbol": "$BAPU", + "decimals": 18, + "name": "Blue Apu", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x3aaf8a9e6c2a63af24c97cb29121d19c1cc10993.png", + "aggregators": ["CoinGecko", "Rubic", "Rango"], + "occurrences": 3 + }, + "0xbede17c8b0535791d131f0d6b6094b99cf27eb07": { + "address": "0xbede17c8b0535791d131f0d6b6094b99cf27eb07", + "symbol": "LIKES", + "decimals": 18, + "name": "likes", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xbede17c8b0535791d131f0d6b6094b99cf27eb07.png", + "aggregators": ["CoinGecko", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x3348b2b47e388bb4a03cb890e1f3f308b90828ef": { + "address": "0x3348b2b47e388bb4a03cb890e1f3f308b90828ef", + "symbol": "TROLL", + "decimals": 18, + "name": "Based Troll", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x3348b2b47e388bb4a03cb890e1f3f308b90828ef.png", + "aggregators": ["CoinGecko", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x9a9de07629ef283c2d700efd3958f59b7d528453": { + "address": "0x9a9de07629ef283c2d700efd3958f59b7d528453", + "symbol": "MOTO", + "decimals": 18, + "name": "MOTO", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x9a9de07629ef283c2d700efd3958f59b7d528453.png", + "aggregators": ["CoinGecko", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x7b0ee9dcb5c1d4d7cd630c652959951936512ba3": { + "address": "0x7b0ee9dcb5c1d4d7cd630c652959951936512ba3", + "symbol": "DELU", + "decimals": 18, + "name": "Delu", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x7b0ee9dcb5c1d4d7cd630c652959951936512ba3.png", + "aggregators": ["CoinGecko", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x1891c9bfbbbc186c2ba1bccba7c9b03dfcccd221": { + "address": "0x1891c9bfbbbc186c2ba1bccba7c9b03dfcccd221", + "symbol": "$ALPHA", + "decimals": 18, + "name": "A L P H A", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x1891c9bfbbbc186c2ba1bccba7c9b03dfcccd221.png", + "aggregators": ["CoinGecko", "Rubic", "Rango"], + "occurrences": 3 + }, + "0xa31de7db919b1499bf8d96daa8612270c38109dc": { + "address": "0xa31de7db919b1499bf8d96daa8612270c38109dc", + "symbol": "SWC", + "decimals": 18, + "name": "Stand With Crypto Fund", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xa31de7db919b1499bf8d96daa8612270c38109dc.png", + "aggregators": ["CoinGecko", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x0fd122a924c4528a78a8141bddd38a0e5ba35fa5": { + "address": "0x0fd122a924c4528a78a8141bddd38a0e5ba35fa5", + "symbol": "CREATOR", + "decimals": 18, + "name": "CreatorDAO", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x0fd122a924c4528a78a8141bddd38a0e5ba35fa5.png", + "aggregators": ["CoinGecko", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x61e39a8338d6049db936534596f29ec26ff5ae7a": { + "address": "0x61e39a8338d6049db936534596f29ec26ff5ae7a", + "symbol": "PERPS", + "decimals": 18, + "name": "PerpsDAO", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x61e39a8338d6049db936534596f29ec26ff5ae7a.png", + "aggregators": ["CoinGecko", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x6444c6c2d527d85ea97032da9a7504d6d1448ecf": { + "address": "0x6444c6c2d527d85ea97032da9a7504d6d1448ecf", + "symbol": "R1", + "decimals": 18, + "name": "Ratio1", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x6444c6c2d527d85ea97032da9a7504d6d1448ecf.png", + "aggregators": ["CoinGecko", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x42081cf59a145ca4ca51edcee577fc4be3b35dbd": { + "address": "0x42081cf59a145ca4ca51edcee577fc4be3b35dbd", + "symbol": "ZLURPEE", + "decimals": 18, + "name": "Zlurpee", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x42081cf59a145ca4ca51edcee577fc4be3b35dbd.png", + "aggregators": ["CoinGecko", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x4da9a0f397db1397902070f93a4d6ddbc0e0e6e8": { + "address": "0x4da9a0f397db1397902070f93a4d6ddbc0e0e6e8", + "symbol": "LCAP", + "decimals": 18, + "name": "LCAP", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x4da9a0f397db1397902070f93a4d6ddbc0e0e6e8.png", + "aggregators": ["CoinGecko", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x03264d29e2498284c0043d8f83e040778ab6290a": { + "address": "0x03264d29e2498284c0043d8f83e040778ab6290a", + "symbol": "AURA", + "decimals": 18, + "name": "based aura", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x03264d29e2498284c0043d8f83e040778ab6290a.png", + "aggregators": ["CoinGecko", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x10b2057bc08d1d50ba18a536172244fb96c7dba3": { + "address": "0x10b2057bc08d1d50ba18a536172244fb96c7dba3", + "symbol": "SHAR", + "decimals": 18, + "name": "Short Arena", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x10b2057bc08d1d50ba18a536172244fb96c7dba3.png", + "aggregators": ["CoinGecko", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x4972e029f2e1831d205b20d05833cc771feb2ba3": { + "address": "0x4972e029f2e1831d205b20d05833cc771feb2ba3", + "symbol": "HARBOR", + "decimals": 18, + "name": "CLAW HARBOR", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x4972e029f2e1831d205b20d05833cc771feb2ba3.png", + "aggregators": ["CoinGecko", "Rubic", "Rango"], + "occurrences": 3 + }, + "0xe53cf16e504023c59755c4609b5432c6e2700b07": { + "address": "0xe53cf16e504023c59755c4609b5432c6e2700b07", + "symbol": "CLAWZ", + "decimals": 18, + "name": "ClawZilla", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xe53cf16e504023c59755c4609b5432c6e2700b07.png", + "aggregators": ["CoinGecko", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x9f3bb51d5c14aaf53794fe5780c085967dacaf2d": { + "address": "0x9f3bb51d5c14aaf53794fe5780c085967dacaf2d", + "symbol": "BP", + "decimals": 18, + "name": "Blueprint", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x9f3bb51d5c14aaf53794fe5780c085967dacaf2d.png", + "aggregators": ["CoinGecko", "Rubic", "Rango"], + "occurrences": 3 + }, + "0xf7e2a6226ffe0693dd85406ac3a8917cbea5dc40": { + "address": "0xf7e2a6226ffe0693dd85406ac3a8917cbea5dc40", + "symbol": "OTX", + "decimals": 18, + "name": "Otonix", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xf7e2a6226ffe0693dd85406ac3a8917cbea5dc40.png", + "aggregators": ["CoinGecko", "Rubic", "Rango"], + "occurrences": 3 + }, + "0xccf66470a962464cff146b34a7cc8c235b068b07": { + "address": "0xccf66470a962464cff146b34a7cc8c235b068b07", + "symbol": "FRED", + "decimals": 18, + "name": "clawfred", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xccf66470a962464cff146b34a7cc8c235b068b07.png", + "aggregators": ["CoinGecko", "Rubic", "Rango"], + "occurrences": 3 + }, + "0xb4d4ff3fcbd6965962a79229aa94631d394217cb": { + "address": "0xb4d4ff3fcbd6965962a79229aa94631d394217cb", + "symbol": "BRAT", + "decimals": 18, + "name": "Brat", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xb4d4ff3fcbd6965962a79229aa94631d394217cb.png", + "aggregators": ["CoinGecko", "Rubic", "Rango"], + "occurrences": 3 + }, + "0xf530c629c2a34b5bb42b46986367bb33a5cedb07": { + "address": "0xf530c629c2a34b5bb42b46986367bb33a5cedb07", + "symbol": "ROGUEAI", + "decimals": 18, + "name": "RogueAI", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xf530c629c2a34b5bb42b46986367bb33a5cedb07.png", + "aggregators": ["CoinGecko", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x71a67215a2025f501f386a49858a9ced2fc0249d": { + "address": "0x71a67215a2025f501f386a49858a9ced2fc0249d", + "symbol": "USEI", + "decimals": 18, + "name": "Sei (Universal)", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x71a67215a2025f501f386a49858a9ced2fc0249d.png", + "aggregators": ["CoinGecko", "Rubic", "Rango"], + "occurrences": 3 + }, + "0xaaa9a3bc81fe7951fe0c3755837b40749ce0c894": { + "address": "0xaaa9a3bc81fe7951fe0c3755837b40749ce0c894", + "symbol": "LEGEND", + "decimals": 18, + "name": "Legend", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xaaa9a3bc81fe7951fe0c3755837b40749ce0c894.png", + "aggregators": ["CoinGecko", "Rubic", "Squid"], + "occurrences": 3 + }, + "0xa46447afe60bdbf271bb05ea70d56aee1c4a4094": { + "address": "0xa46447afe60bdbf271bb05ea70d56aee1c4a4094", + "symbol": "2DAI", + "decimals": 18, + "name": "2DAI.io 🟦", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xa46447afe60bdbf271bb05ea70d56aee1c4a4094.png", + "aggregators": ["CoinGecko", "Rubic", "Rango"], + "occurrences": 3 + }, + "0xfc207cb952bd7bb028b70b370aced0ff8bc17b07": { + "address": "0xfc207cb952bd7bb028b70b370aced0ff8bc17b07", + "symbol": "CONBOOK", + "decimals": 18, + "name": "Conbook", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xfc207cb952bd7bb028b70b370aced0ff8bc17b07.png", + "aggregators": ["CoinGecko", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x289a086583a605c4af00de3bf859b70afc68f991": { + "address": "0x289a086583a605c4af00de3bf859b70afc68f991", + "symbol": "QUOKKA", + "decimals": 18, + "name": "Quokka", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x289a086583a605c4af00de3bf859b70afc68f991.png", + "aggregators": ["CoinGecko", "Rubic", "Rango"], + "occurrences": 3 + }, + "0xe58b3ab1fb80304de37a507a2449fea64bf0b507": { + "address": "0xe58b3ab1fb80304de37a507a2449fea64bf0b507", + "symbol": "VOY", + "decimals": 18, + "name": "Jetvoy", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xe58b3ab1fb80304de37a507a2449fea64bf0b507.png", + "aggregators": ["CoinGecko", "Rubic", "Rango"], + "occurrences": 3 + }, + "0xb942b75a602fa318ac091370d93d9143ba345ba3": { + "address": "0xb942b75a602fa318ac091370d93d9143ba345ba3", + "symbol": "MYTHOS", + "decimals": 18, + "name": "Mythos Router", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xb942b75a602fa318ac091370d93d9143ba345ba3.png", + "aggregators": ["CoinGecko", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x0e83a7ae823a04787e175fb77fb2f77a56896a69": { + "address": "0x0e83a7ae823a04787e175fb77fb2f77a56896a69", + "symbol": "BONKER", + "decimals": 18, + "name": "Bonker", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x0e83a7ae823a04787e175fb77fb2f77a56896a69.png", + "aggregators": ["CoinGecko", "Rubic", "Rango"], + "occurrences": 3 + }, + "0xb3ecba1330fe26bb36f40344992c481c2c916f23": { + "address": "0xb3ecba1330fe26bb36f40344992c481c2c916f23", + "symbol": "BDOGE", + "decimals": 18, + "name": "Based Doge", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xb3ecba1330fe26bb36f40344992c481c2c916f23.png", + "aggregators": ["CoinGecko", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x587cd533f418825521f3a1daa7ccd1e7339a1b07": { + "address": "0x587cd533f418825521f3a1daa7ccd1e7339a1b07", + "symbol": "STARKBOT", + "decimals": 18, + "name": "StarkBot", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x587cd533f418825521f3a1daa7ccd1e7339a1b07.png", + "aggregators": ["CoinGecko", "Rubic", "Rango"], + "occurrences": 3 + }, + "0xa763b711b55935f6d7ba2f93e1adf741e2446b07": { + "address": "0xa763b711b55935f6d7ba2f93e1adf741e2446b07", + "symbol": "LOOP", + "decimals": 18, + "name": "x402MKT", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xa763b711b55935f6d7ba2f93e1adf741e2446b07.png", + "aggregators": ["CoinGecko", "Rubic", "Rango"], + "occurrences": 3 + }, + "0xbf71faf1e649f359de0092adffae4756710f4127": { + "address": "0xbf71faf1e649f359de0092adffae4756710f4127", + "symbol": "LILBULE", + "decimals": 18, + "name": "Xiao Lan", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xbf71faf1e649f359de0092adffae4756710f4127.png", + "aggregators": ["CoinGecko", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x14d4ce8b1729c67130bcd90339ea1f9b480a739f": { + "address": "0x14d4ce8b1729c67130bcd90339ea1f9b480a739f", + "symbol": "AMARA", + "decimals": 18, + "name": "AMARA", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x14d4ce8b1729c67130bcd90339ea1f9b480a739f.png", + "aggregators": ["CoinGecko", "Rubic", "Rango"], + "occurrences": 3 + }, + "0xc478ea5d6340ef8ef04088c3a649ddeac764b545": { + "address": "0xc478ea5d6340ef8ef04088c3a649ddeac764b545", + "symbol": "HBET", + "decimals": 18, + "name": "Hyperbet", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xc478ea5d6340ef8ef04088c3a649ddeac764b545.png", + "aggregators": ["CoinGecko", "Rubic", "Squid"], + "occurrences": 3 + }, + "0xb36a127dba73f3aa7c70b4e00b7395b86a60e73b": { + "address": "0xb36a127dba73f3aa7c70b4e00b7395b86a60e73b", + "symbol": "RUSH", + "decimals": 18, + "name": "RUSH GAME", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xb36a127dba73f3aa7c70b4e00b7395b86a60e73b.png", + "aggregators": ["CoinGecko", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x8a45376fd791c29b9c5a49bc01c2f5d865a98b07": { + "address": "0x8a45376fd791c29b9c5a49bc01c2f5d865a98b07", + "symbol": "VELLUM", + "decimals": 18, + "name": "Vellum", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x8a45376fd791c29b9c5a49bc01c2f5d865a98b07.png", + "aggregators": ["CoinGecko", "Rubic", "Rango"], + "occurrences": 3 + }, + "0xce16ef461d88256d2d80dfd31f0d9e7a9fd59213": { + "address": "0xce16ef461d88256d2d80dfd31f0d9e7a9fd59213", + "symbol": "BUNKER", + "decimals": 18, + "name": "MOLT BUNKER", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xce16ef461d88256d2d80dfd31f0d9e7a9fd59213.png", + "aggregators": ["CoinGecko", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x1e339a1785b8114eef43e471c49c6ca327479aca": { + "address": "0x1e339a1785b8114eef43e471c49c6ca327479aca", + "symbol": "BINGO", + "decimals": 18, + "name": "BINGO", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x1e339a1785b8114eef43e471c49c6ca327479aca.png", + "aggregators": ["CoinGecko", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x247791b19f6e14271440ac25689bb04796ec5bcb": { + "address": "0x247791b19f6e14271440ac25689bb04796ec5bcb", + "symbol": "FLOP", + "decimals": 18, + "name": "flopper", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x247791b19f6e14271440ac25689bb04796ec5bcb.png", + "aggregators": ["CoinGecko", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x492ae2107f952b02f2554ce153841933c09d6d43": { + "address": "0x492ae2107f952b02f2554ce153841933c09d6d43", + "symbol": "BIOMEAI", + "decimals": 18, + "name": "BiomeAI", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x492ae2107f952b02f2554ce153841933c09d6d43.png", + "aggregators": ["CoinGecko", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x290d4a2e227cced586895c3f78a03e4e9d4c3fb6": { + "address": "0x290d4a2e227cced586895c3f78a03e4e9d4c3fb6", + "symbol": "COCK", + "decimals": 18, + "name": "Krypto Cock", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x290d4a2e227cced586895c3f78a03e4e9d4c3fb6.png", + "aggregators": ["CoinGecko", "Rubic", "Rango"], + "occurrences": 3 + }, + "0xbd5694abea9a397fc3014678ed529e3da038eba3": { + "address": "0xbd5694abea9a397fc3014678ed529e3da038eba3", + "symbol": "BEACON", + "decimals": 18, + "name": "CLAW BEACON", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xbd5694abea9a397fc3014678ed529e3da038eba3.png", + "aggregators": ["CoinGecko", "Rubic", "Rango"], + "occurrences": 3 + }, + "0xa77e22bfaee006d4f9dc2c20d7d337b05125c282": { + "address": "0xa77e22bfaee006d4f9dc2c20d7d337b05125c282", + "symbol": "TREN", + "decimals": 18, + "name": "Tren Finance v2", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xa77e22bfaee006d4f9dc2c20d7d337b05125c282.png", + "aggregators": ["CoinGecko", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x32f4adca627ac2b4ed1912b23fe8232abb096d5b": { + "address": "0x32f4adca627ac2b4ed1912b23fe8232abb096d5b", + "symbol": "CHIMP", + "decimals": 18, + "name": "Based Chimp", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x32f4adca627ac2b4ed1912b23fe8232abb096d5b.png", + "aggregators": ["CoinGecko", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x4444489570afd4261d616df00de1668dad5f8cee": { + "address": "0x4444489570afd4261d616df00de1668dad5f8cee", + "symbol": "PSX", + "decimals": 18, + "name": "PSX", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x4444489570afd4261d616df00de1668dad5f8cee.png", + "aggregators": ["CoinGecko", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x00bb032296e0c580e21010a5a6a4e007e0953e68": { + "address": "0x00bb032296e0c580e21010a5a6a4e007e0953e68", + "symbol": "NETCLAWD", + "decimals": 18, + "name": "NetClawd", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x00bb032296e0c580e21010a5a6a4e007e0953e68.png", + "aggregators": ["CoinGecko", "Rubic", "Rango"], + "occurrences": 3 + }, + "0xdb4f5678aa11bbe0f980bf36c511d923bd3d5471": { + "address": "0xdb4f5678aa11bbe0f980bf36c511d923bd3d5471", + "symbol": "AMAI", + "decimals": 18, + "name": "AMAI", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xdb4f5678aa11bbe0f980bf36c511d923bd3d5471.png", + "aggregators": ["CoinGecko", "Rubic", "Squid"], + "occurrences": 3 + }, + "0x2a0a59d6b975828e781ecac125dba40d7ee5ddc0": { + "address": "0x2a0a59d6b975828e781ecac125dba40d7ee5ddc0", + "symbol": "RIPE", + "decimals": 18, + "name": "Ripe DAO Governance Token", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x2a0a59d6b975828e781ecac125dba40d7ee5ddc0.png", + "aggregators": ["CoinGecko", "Rubic", "Rango"], + "occurrences": 3 + }, + "0xb316e2469e32e4c782533d8dace9f70b2ad88557": { + "address": "0xb316e2469e32e4c782533d8dace9f70b2ad88557", + "symbol": "AETHR", + "decimals": 18, + "name": "Aether AI", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xb316e2469e32e4c782533d8dace9f70b2ad88557.png", + "aggregators": ["CoinGecko", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x595a40a21842d5514a92539a09f3ceb9c46d3284": { + "address": "0x595a40a21842d5514a92539a09f3ceb9c46d3284", + "symbol": "MOLTH", + "decimals": 18, + "name": "Molthunt", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x595a40a21842d5514a92539a09f3ceb9c46d3284.png", + "aggregators": ["CoinGecko", "Rubic", "Rango"], + "occurrences": 3 + }, + "0xac941d7a4c48f9896f60354c494afb3ed31ac21b": { + "address": "0xac941d7a4c48f9896f60354c494afb3ed31ac21b", + "symbol": "SAUL", + "decimals": 18, + "name": "Saul GoodAI", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xac941d7a4c48f9896f60354c494afb3ed31ac21b.png", + "aggregators": ["CoinGecko", "Rubic", "Squid"], + "occurrences": 3 + }, + "0x32f66ec2ffb26d262058965cf294f951e47f8ba3": { + "address": "0x32f66ec2ffb26d262058965cf294f951e47f8ba3", + "symbol": "AGNT", + "decimals": 18, + "name": "AGNT SOCIAL", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x32f66ec2ffb26d262058965cf294f951e47f8ba3.png", + "aggregators": ["CoinGecko", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x91dd62e33c8d3f4ebef942c1d98e1298ba0f0029": { + "address": "0x91dd62e33c8d3f4ebef942c1d98e1298ba0f0029", + "symbol": "BRAD", + "decimals": 18, + "name": "Brad", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x91dd62e33c8d3f4ebef942c1d98e1298ba0f0029.png", + "aggregators": ["CoinGecko", "Rubic", "Rango"], + "occurrences": 3 + }, + "0xf34c48caddceba57b55b5bd3a14aec4bfe699d14": { + "address": "0xf34c48caddceba57b55b5bd3a14aec4bfe699d14", + "symbol": "PPUMP", + "decimals": 18, + "name": "PandaPump", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xf34c48caddceba57b55b5bd3a14aec4bfe699d14.png", + "aggregators": ["CoinGecko", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x3d5e487b21e0569048c4d1a60e98c36e1b09db07": { + "address": "0x3d5e487b21e0569048c4d1a60e98c36e1b09db07", + "symbol": "₸USD", + "decimals": 18, + "name": "TurboUSD Unstablecoin", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x3d5e487b21e0569048c4d1a60e98c36e1b09db07.png", + "aggregators": ["CoinGecko", "Rubic", "Rango"], + "occurrences": 3 + }, + "0xd7b7861afbc78fc35418f95c3174acca2e8b1644": { + "address": "0xd7b7861afbc78fc35418f95c3174acca2e8b1644", + "symbol": "TIBO", + "decimals": 18, + "name": "Tibo", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xd7b7861afbc78fc35418f95c3174acca2e8b1644.png", + "aggregators": ["CoinGecko", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x3ad8539cf0e010c77d276fb197061ac613511cae": { + "address": "0x3ad8539cf0e010c77d276fb197061ac613511cae", + "symbol": "MOON", + "decimals": 18, + "name": "Lightspeed to the Moon!!!", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x3ad8539cf0e010c77d276fb197061ac613511cae.png", + "aggregators": ["CoinGecko", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x06cece127f81bf76d388859549a93a120ec52ba3": { + "address": "0x06cece127f81bf76d388859549a93a120ec52ba3", + "symbol": "SINGULARITY-ENGINE", + "decimals": 18, + "name": "singularity-engine", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x06cece127f81bf76d388859549a93a120ec52ba3.png", + "aggregators": ["CoinGecko", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x506059317f8db90880a60a6968153ad2424ac38f": { + "address": "0x506059317f8db90880a60a6968153ad2424ac38f", + "symbol": "AGENTCRAFT", + "decimals": 18, + "name": "AgentCraft", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x506059317f8db90880a60a6968153ad2424ac38f.png", + "aggregators": ["CoinGecko", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x494c4cf6c8f971ddfca95184282b86220fab9b07": { + "address": "0x494c4cf6c8f971ddfca95184282b86220fab9b07", + "symbol": "AMPR", + "decimals": 18, + "name": "Amper", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x494c4cf6c8f971ddfca95184282b86220fab9b07.png", + "aggregators": ["CoinGecko", "Rubic", "Rango"], + "occurrences": 3 + }, + "0xe28eb199745904e6083db711ef0f936fd385823d": { + "address": "0xe28eb199745904e6083db711ef0f936fd385823d", + "symbol": "BBB", + "decimals": 18, + "name": "Bubblebid", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xe28eb199745904e6083db711ef0f936fd385823d.png", + "aggregators": ["CoinGecko", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x9a55fab37d4a4f0e13c8fff5470798614af2b8c3": { + "address": "0x9a55fab37d4a4f0e13c8fff5470798614af2b8c3", + "symbol": "BLAZE", + "decimals": 9, + "name": "Blaze", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x9a55fab37d4a4f0e13c8fff5470798614af2b8c3.png", + "aggregators": ["CoinGecko", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x07d15798a67253d76cea61f0ea6f57aedc59dffb": { + "address": "0x07d15798a67253d76cea61f0ea6f57aedc59dffb", + "symbol": "BASED", + "decimals": 18, + "name": "Based Coin", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x07d15798a67253d76cea61f0ea6f57aedc59dffb.png", + "aggregators": ["CoinGecko", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x380337d0180db7d0df76ac4faae2fcea908ee1fc": { + "address": "0x380337d0180db7d0df76ac4faae2fcea908ee1fc", + "symbol": "OTTO", + "decimals": 18, + "name": "Otto AI", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x380337d0180db7d0df76ac4faae2fcea908ee1fc.png", + "aggregators": ["CoinGecko", "Rubic", "Squid"], + "occurrences": 3 + }, + "0x3862ae86889a39d6dd5850e5f467086141834d7b": { + "address": "0x3862ae86889a39d6dd5850e5f467086141834d7b", + "symbol": "HERMES", + "decimals": 18, + "name": "HERMES", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x3862ae86889a39d6dd5850e5f467086141834d7b.png", + "aggregators": ["CoinGecko", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x40ba93835789b9958ed588308c299fa27ddc5838": { + "address": "0x40ba93835789b9958ed588308c299fa27ddc5838", + "symbol": "SUPH", + "decimals": 18, + "name": "SUPAH", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x40ba93835789b9958ed588308c299fa27ddc5838.png", + "aggregators": ["CoinGecko", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x39b4b879b8521d6a8c3a87cda64b969327b7fba3": { + "address": "0x39b4b879b8521d6a8c3a87cda64b969327b7fba3", + "symbol": "TACHI", + "decimals": 18, + "name": "TACHI", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x39b4b879b8521d6a8c3a87cda64b969327b7fba3.png", + "aggregators": ["CoinGecko", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x961d7b43119067015c9dbd1dcef1e82f5b532ba3": { + "address": "0x961d7b43119067015c9dbd1dcef1e82f5b532ba3", + "symbol": "STATE", + "decimals": 18, + "name": "STATE", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x961d7b43119067015c9dbd1dcef1e82f5b532ba3.png", + "aggregators": ["CoinGecko", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x2e2050ba5422eea926a34624a145ea3905379b07": { + "address": "0x2e2050ba5422eea926a34624a145ea3905379b07", + "symbol": "CLAWNET", + "decimals": 18, + "name": "Clawnet", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x2e2050ba5422eea926a34624a145ea3905379b07.png", + "aggregators": ["CoinGecko", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x3977fc913db86b01a257232c568317798b903b07": { + "address": "0x3977fc913db86b01a257232c568317798b903b07", + "symbol": "CODY", + "decimals": 18, + "name": "Cody", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x3977fc913db86b01a257232c568317798b903b07.png", + "aggregators": ["CoinGecko", "Rubic", "Rango"], + "occurrences": 3 + }, + "0xe19e7429ab6c1f9dd391faa88fbb940c7d22f18f": { + "address": "0xe19e7429ab6c1f9dd391faa88fbb940c7d22f18f", + "symbol": "MIO", + "decimals": 18, + "name": "Mio", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xe19e7429ab6c1f9dd391faa88fbb940c7d22f18f.png", + "aggregators": ["CoinGecko", "Rubic", "Rango"], + "occurrences": 3 + }, + "0xcc309867cea3c1cf7c7829838f72ff70d17ceb07": { + "address": "0xcc309867cea3c1cf7c7829838f72ff70d17ceb07", + "symbol": "ASTERION", + "decimals": 18, + "name": "Asterion", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xcc309867cea3c1cf7c7829838f72ff70d17ceb07.png", + "aggregators": ["CoinGecko", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x03f64375f98aaafb617d18ca1e4a9a85a5c74476": { + "address": "0x03f64375f98aaafb617d18ca1e4a9a85a5c74476", + "symbol": "ROCKETAI", + "decimals": 18, + "name": "launchbot", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x03f64375f98aaafb617d18ca1e4a9a85a5c74476.png", + "aggregators": ["CoinGecko", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x20eaba9d6818529cfffa2c1c63b97a02a0049ba3": { + "address": "0x20eaba9d6818529cfffa2c1c63b97a02a0049ba3", + "symbol": "CLERK", + "decimals": 18, + "name": "CLERK", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x20eaba9d6818529cfffa2c1c63b97a02a0049ba3.png", + "aggregators": ["CoinGecko", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x62039061c366433e6d075b78905681c19795313c": { + "address": "0x62039061c366433e6d075b78905681c19795313c", + "symbol": "AIDEV", + "decimals": 18, + "name": "AI Dev Agent", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x62039061c366433e6d075b78905681c19795313c.png", + "aggregators": ["CoinGecko", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x00e701eff4f9dc647f1510f835c5d1ee7e41d28f": { + "address": "0x00e701eff4f9dc647f1510f835c5d1ee7e41d28f", + "symbol": "LOOT", + "decimals": 18, + "name": "MineLoot", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x00e701eff4f9dc647f1510f835c5d1ee7e41d28f.png", + "aggregators": ["CoinGecko", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x0a3a6eef246ed15dbf97f8a237e20a3bc091cba3": { + "address": "0x0a3a6eef246ed15dbf97f8a237e20a3bc091cba3", + "symbol": "0XDP", + "decimals": 18, + "name": "0xDirectPing", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x0a3a6eef246ed15dbf97f8a237e20a3bc091cba3.png", + "aggregators": ["CoinGecko", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x168fc40dba90a07e821abbdbbc1c6d2303e51eda": { + "address": "0x168fc40dba90a07e821abbdbbc1c6d2303e51eda", + "symbol": "PERPY", + "decimals": 18, + "name": "PERPY", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x168fc40dba90a07e821abbdbbc1c6d2303e51eda.png", + "aggregators": ["CoinGecko", "Rubic", "Rango"], + "occurrences": 3 + }, + "0xf27b8ef47842e6445e37804896f1bc5e29381b07": { + "address": "0xf27b8ef47842e6445e37804896f1bc5e29381b07", + "symbol": "DOPPEL", + "decimals": 18, + "name": "Doppel", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xf27b8ef47842e6445e37804896f1bc5e29381b07.png", + "aggregators": ["CoinGecko", "Rubic", "Rango"], + "occurrences": 3 + }, + "0xacb4543f479ea44e6df4fa01e483bb5b78361ba3": { + "address": "0xacb4543f479ea44e6df4fa01e483bb5b78361ba3", + "symbol": "ALEISTER", + "decimals": 18, + "name": "Aleister", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xacb4543f479ea44e6df4fa01e483bb5b78361ba3.png", + "aggregators": ["CoinGecko", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x78de5c914b91ee1a1defd2c617f759e74a896b07": { + "address": "0x78de5c914b91ee1a1defd2c617f759e74a896b07", + "symbol": "BASTR", + "decimals": 18, + "name": "Base Strategy", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x78de5c914b91ee1a1defd2c617f759e74a896b07.png", + "aggregators": ["CoinGecko", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x10c56f005a379f8eafc88ff5c3f40d30f0031ac9": { + "address": "0x10c56f005a379f8eafc88ff5c3f40d30f0031ac9", + "symbol": "SR", + "decimals": 18, + "name": "Strike Robot", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x10c56f005a379f8eafc88ff5c3f40d30f0031ac9.png", + "aggregators": ["CoinGecko", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x288f4eb27400fa220d14b864259ad1b7f77c1594": { + "address": "0x288f4eb27400fa220d14b864259ad1b7f77c1594", + "symbol": "KUDAI", + "decimals": 18, + "name": "Kudai", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x288f4eb27400fa220d14b864259ad1b7f77c1594.png", + "aggregators": ["CoinGecko", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x1da242e0a0e25dfd36f38d7834aa6abd38c8eb07": { + "address": "0x1da242e0a0e25dfd36f38d7834aa6abd38c8eb07", + "symbol": "SAULNET", + "decimals": 18, + "name": "Saul Net", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x1da242e0a0e25dfd36f38d7834aa6abd38c8eb07.png", + "aggregators": ["CoinGecko", "Rubic", "Rango"], + "occurrences": 3 + }, + "0xd655790b0486fa681c23b955f5ca7cd5f5c8cb07": { + "address": "0xd655790b0486fa681c23b955f5ca7cd5f5c8cb07", + "symbol": "BIO", + "decimals": 18, + "name": "Bio Unit 000", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xd655790b0486fa681c23b955f5ca7cd5f5c8cb07.png", + "aggregators": ["CoinGecko", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x164239fa94aec9c4e437bf6890ea8602b759fd74": { + "address": "0x164239fa94aec9c4e437bf6890ea8602b759fd74", + "symbol": "VERONICA", + "decimals": 18, + "name": "VERONICA", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x164239fa94aec9c4e437bf6890ea8602b759fd74.png", + "aggregators": ["CoinGecko", "Rubic", "Squid"], + "occurrences": 3 + }, + "0x36c7d74a2df5e65b7c2fe2d1a70e52da3df1bb07": { + "address": "0x36c7d74a2df5e65b7c2fe2d1a70e52da3df1bb07", + "symbol": "BLARP", + "decimals": 18, + "name": "blarp", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x36c7d74a2df5e65b7c2fe2d1a70e52da3df1bb07.png", + "aggregators": ["CoinGecko", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x4aeddec84df07ddd121f214fbe4c0fa5b33ef3e5": { + "address": "0x4aeddec84df07ddd121f214fbe4c0fa5b33ef3e5", + "symbol": "THETRUTH", + "decimals": 18, + "name": "thetruth.fun", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x4aeddec84df07ddd121f214fbe4c0fa5b33ef3e5.png", + "aggregators": ["CoinGecko", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x2327eba9692cc7fb2119dc1f93389ca752dedb07": { + "address": "0x2327eba9692cc7fb2119dc1f93389ca752dedb07", + "symbol": "SPIRIT", + "decimals": 18, + "name": "Spirit Town", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x2327eba9692cc7fb2119dc1f93389ca752dedb07.png", + "aggregators": ["CoinGecko", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x4798f71719c2ec8e405610f0f886692f97ef8453": { + "address": "0x4798f71719c2ec8e405610f0f886692f97ef8453", + "symbol": "NFTWIZ", + "decimals": 18, + "name": "nftwizard", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x4798f71719c2ec8e405610f0f886692f97ef8453.png", + "aggregators": ["CoinGecko", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x6e1e7f52a9178fa1e9c58810b97d5eb6a8d31198": { + "address": "0x6e1e7f52a9178fa1e9c58810b97d5eb6a8d31198", + "symbol": "UNICLAW", + "decimals": 18, + "name": "Uniclaw", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x6e1e7f52a9178fa1e9c58810b97d5eb6a8d31198.png", + "aggregators": ["CoinGecko", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x9b284910a0abaed70c9f0790bb50ce988f5316d6": { + "address": "0x9b284910a0abaed70c9f0790bb50ce988f5316d6", + "symbol": "AMELIA", + "decimals": 18, + "name": "Amelia", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x9b284910a0abaed70c9f0790bb50ce988f5316d6.png", + "aggregators": ["CoinGecko", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x706e1963ba410a548673b46d694104391fb7dca5": { + "address": "0x706e1963ba410a548673b46d694104391fb7dca5", + "symbol": "BT365", + "decimals": 5, + "name": "BlockTrader365", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x706e1963ba410a548673b46d694104391fb7dca5.png", + "aggregators": ["CoinGecko", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x8c32bcfc720fec35443748a96030ce866d0665ff": { + "address": "0x8c32bcfc720fec35443748a96030ce866d0665ff", + "symbol": "LATENIGHTONBASE", + "decimals": 18, + "name": "latenightonbase", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x8c32bcfc720fec35443748a96030ce866d0665ff.png", + "aggregators": ["CoinGecko", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x92b5fea742ecfd24f1ef41f35497373363599b07": { + "address": "0x92b5fea742ecfd24f1ef41f35497373363599b07", + "symbol": "MOLGE", + "decimals": 18, + "name": "Molt Doge", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x92b5fea742ecfd24f1ef41f35497373363599b07.png", + "aggregators": ["CoinGecko", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x096746e984e57ae9a2922a08fc969bbe76963a72": { + "address": "0x096746e984e57ae9a2922a08fc969bbe76963a72", + "symbol": "SHOW", + "decimals": 18, + "name": "VitaNova by Virtuals", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x096746e984e57ae9a2922a08fc969bbe76963a72.png", + "aggregators": ["CoinGecko", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x1b5e07d4d2f753fa2f7f1940a00e2273c19ecb07": { + "address": "0x1b5e07d4d2f753fa2f7f1940a00e2273c19ecb07", + "symbol": "MOLTROAD", + "decimals": 18, + "name": "Molt Road", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x1b5e07d4d2f753fa2f7f1940a00e2273c19ecb07.png", + "aggregators": ["CoinGecko", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x0e6214f42992683a9177ce65d022f163d7bbd1d2": { + "address": "0x0e6214f42992683a9177ce65d022f163d7bbd1d2", + "symbol": "TRIVI", + "decimals": 18, + "name": "TriviAgent by Virtuals", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x0e6214f42992683a9177ce65d022f163d7bbd1d2.png", + "aggregators": ["CoinGecko", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x7f6f8bb1aa8206921e80ab6abf1ac5737e39ab07": { + "address": "0x7f6f8bb1aa8206921e80ab6abf1ac5737e39ab07", + "symbol": "MACHINES", + "decimals": 18, + "name": "machines-cash", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x7f6f8bb1aa8206921e80ab6abf1ac5737e39ab07.png", + "aggregators": ["CoinGecko", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x315b8c9a1123c10228d469551033440441b41f0b": { + "address": "0x315b8c9a1123c10228d469551033440441b41f0b", + "symbol": "BEATS", + "decimals": 18, + "name": "BEATS on BASE", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x315b8c9a1123c10228d469551033440441b41f0b.png", + "aggregators": ["CoinGecko", "Rubic", "Rango"], + "occurrences": 3 + }, + "0xa1c0decafe3e9bf06a5f29b7015cd373a9854608": { + "address": "0xa1c0decafe3e9bf06a5f29b7015cd373a9854608", + "symbol": "AIPG", + "decimals": 18, + "name": "AI Power Grid", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xa1c0decafe3e9bf06a5f29b7015cd373a9854608.png", + "aggregators": ["CoinGecko", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x09b052085e9c6291fbf0dfb0918c861bcb47eb25": { + "address": "0x09b052085e9c6291fbf0dfb0918c861bcb47eb25", + "symbol": "RICKY", + "decimals": 18, + "name": "Ricky the Raccoon", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x09b052085e9c6291fbf0dfb0918c861bcb47eb25.png", + "aggregators": ["CoinGecko", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x7af77365f112361457aaa76994bda688605f2d9c": { + "address": "0x7af77365f112361457aaa76994bda688605f2d9c", + "symbol": "KURT", + "decimals": 18, + "name": "Kurt", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x7af77365f112361457aaa76994bda688605f2d9c.png", + "aggregators": ["CoinGecko", "Rubic", "Rango"], + "occurrences": 3 + }, + "0xd63f21e7f4205d59c5b486273c42e261d5cd4d1d": { + "address": "0xd63f21e7f4205d59c5b486273c42e261d5cd4d1d", + "symbol": "BLKH", + "decimals": 18, + "name": "BLACK HOLE", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xd63f21e7f4205d59c5b486273c42e261d5cd4d1d.png", + "aggregators": ["CoinGecko", "Rubic", "Squid"], + "occurrences": 3 + }, + "0xca54efb221c78bff5f2f459e596585b88ace8a7f": { + "address": "0xca54efb221c78bff5f2f459e596585b88ace8a7f", + "symbol": "ASYM", + "decimals": 18, + "name": "Asymmetrix", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xca54efb221c78bff5f2f459e596585b88ace8a7f.png", + "aggregators": ["CoinGecko", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x50b95509e8fc9cda3860c2ef80308467ab6534cc": { + "address": "0x50b95509e8fc9cda3860c2ef80308467ab6534cc", + "symbol": "BMMF", + "decimals": 18, + "name": "BMMF", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x50b95509e8fc9cda3860c2ef80308467ab6534cc.png", + "aggregators": ["CoinGecko", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x966edb33649dd33c0dbc915ddf31cd41a07e7a4f": { + "address": "0x966edb33649dd33c0dbc915ddf31cd41a07e7a4f", + "symbol": "BONKEY", + "decimals": 18, + "name": "BONKEY", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x966edb33649dd33c0dbc915ddf31cd41a07e7a4f.png", + "aggregators": ["CoinGecko", "Rubic", "Rango"], + "occurrences": 3 + }, + "0xdfb51ec9941cc684b72dc2b0f532d74a244e4ccf": { + "address": "0xdfb51ec9941cc684b72dc2b0f532d74a244e4ccf", + "symbol": "NOD", + "decimals": 18, + "name": "NOD", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xdfb51ec9941cc684b72dc2b0f532d74a244e4ccf.png", + "aggregators": ["CoinGecko", "Rubic", "Squid"], + "occurrences": 3 + }, + "0x8d760f4fda919a8e9f38237ee003fe8ff0ca9ef7": { + "address": "0x8d760f4fda919a8e9f38237ee003fe8ff0ca9ef7", + "symbol": "JACK", + "decimals": 18, + "name": "JACK", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x8d760f4fda919a8e9f38237ee003fe8ff0ca9ef7.png", + "aggregators": ["CoinGecko", "Rubic", "Rango"], + "occurrences": 3 + }, + "0xc7167e360bd63696a7870c0ef66939e882249f20": { + "address": "0xc7167e360bd63696a7870c0ef66939e882249f20", + "symbol": "RETAIL", + "decimals": 18, + "name": "Retail DAO", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xc7167e360bd63696a7870c0ef66939e882249f20.png", + "aggregators": ["CoinGecko", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x22a61fd45ebd3eded219cb279715a18cf85ebb44": { + "address": "0x22a61fd45ebd3eded219cb279715a18cf85ebb44", + "symbol": "GBM", + "decimals": 18, + "name": "GBM Tokens", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x22a61fd45ebd3eded219cb279715a18cf85ebb44.png", + "aggregators": ["CoinGecko", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x68e284f21d04d4d62398c290ec3ef41c97f80b07": { + "address": "0x68e284f21d04d4d62398c290ec3ef41c97f80b07", + "symbol": "X420", + "decimals": 18, + "name": "x420", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x68e284f21d04d4d62398c290ec3ef41c97f80b07.png", + "aggregators": ["CoinGecko", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x84b9c2be78ad93843c96c106a22f12ccb2cfdb07": { + "address": "0x84b9c2be78ad93843c96c106a22f12ccb2cfdb07", + "symbol": "BUTLER", + "decimals": 18, + "name": "Butler", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x84b9c2be78ad93843c96c106a22f12ccb2cfdb07.png", + "aggregators": ["CoinGecko", "Rubic", "Rango"], + "occurrences": 3 + }, + "0xd839b62b2035c313968965d7a24818bc6a38eb07": { + "address": "0xd839b62b2035c313968965d7a24818bc6a38eb07", + "symbol": "PIPAI", + "decimals": 18, + "name": "pipaitrader", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xd839b62b2035c313968965d7a24818bc6a38eb07.png", + "aggregators": ["CoinGecko", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x194f360d130f2393a5e9f3117a6a1b78abea1624": { + "address": "0x194f360d130f2393a5e9f3117a6a1b78abea1624", + "symbol": "SUMR", + "decimals": 18, + "name": "SummerToken", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x194f360d130f2393a5e9f3117a6a1b78abea1624.png", + "aggregators": ["CoinGecko", "Rubic", "Rango"], + "occurrences": 3 + }, + "0xc29832025e7652ef58d15f7fa3e232a2fdfaab07": { + "address": "0xc29832025e7652ef58d15f7fa3e232a2fdfaab07", + "symbol": "ZOE", + "decimals": 18, + "name": "Zoe", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xc29832025e7652ef58d15f7fa3e232a2fdfaab07.png", + "aggregators": ["CoinGecko", "Rubic", "Rango"], + "occurrences": 3 + }, + "0xef5997c2cf2f6c138196f8a6203afc335206b3c1": { + "address": "0xef5997c2cf2f6c138196f8a6203afc335206b3c1", + "symbol": "OWB", + "decimals": 18, + "name": "OWB", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xef5997c2cf2f6c138196f8a6203afc335206b3c1.png", + "aggregators": ["CoinGecko", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x317621481476554e1cf3f9add06abd70ffb007f4": { + "address": "0x317621481476554e1cf3f9add06abd70ffb007f4", + "symbol": "$ZARD", + "decimals": 18, + "name": "Chadrizard", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x317621481476554e1cf3f9add06abd70ffb007f4.png", + "aggregators": ["CoinGecko", "Rubic", "Rango"], + "occurrences": 3 + }, + "0xa9f6d9eca1f803854a13cecad0f21d43e007db07": { + "address": "0xa9f6d9eca1f803854a13cecad0f21d43e007db07", + "symbol": "BAES", + "decimals": 18, + "name": "Bario Entertainment System", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xa9f6d9eca1f803854a13cecad0f21d43e007db07.png", + "aggregators": ["CoinGecko", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x00dfb58cf6e43ffdfb56a72f7fc6899134f2462b": { + "address": "0x00dfb58cf6e43ffdfb56a72f7fc6899134f2462b", + "symbol": "PRNT", + "decimals": 18, + "name": "Imprnt", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x00dfb58cf6e43ffdfb56a72f7fc6899134f2462b.png", + "aggregators": ["CoinGecko", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x11ff37785b849f38117a7ab2dff766c056d8ba6d": { + "address": "0x11ff37785b849f38117a7ab2dff766c056d8ba6d", + "symbol": "CHARRED", + "decimals": 18, + "name": "CHARRED", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x11ff37785b849f38117a7ab2dff766c056d8ba6d.png", + "aggregators": ["CoinGecko", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x4ff4d349caa028bd069bbe85fa05253f96176741": { + "address": "0x4ff4d349caa028bd069bbe85fa05253f96176741", + "symbol": "SANG", + "decimals": 18, + "name": "Songjam", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x4ff4d349caa028bd069bbe85fa05253f96176741.png", + "aggregators": ["CoinGecko", "Rubic", "Squid"], + "occurrences": 3 + }, + "0xcde80e161dc8a3e5407dd0d25835cd68a6f39f05": { + "address": "0xcde80e161dc8a3e5407dd0d25835cd68a6f39f05", + "symbol": "ICONS", + "decimals": 18, + "name": "icons", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xcde80e161dc8a3e5407dd0d25835cd68a6f39f05.png", + "aggregators": ["CoinGecko", "Rubic", "Rango"], + "occurrences": 3 + }, + "0xa4d5501deaa04807bd5c48e3f2bf3fd9b79a4ba3": { + "address": "0xa4d5501deaa04807bd5c48e3f2bf3fd9b79a4ba3", + "symbol": "CRUDE", + "decimals": 18, + "name": "CRUDE", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xa4d5501deaa04807bd5c48e3f2bf3fd9b79a4ba3.png", + "aggregators": ["CoinGecko", "Rubic", "Rango"], + "occurrences": 3 + }, + "0xdf0e063a72bf51768402ca7f7fe39cb4a4c6ff43": { + "address": "0xdf0e063a72bf51768402ca7f7fe39cb4a4c6ff43", + "symbol": "REI", + "decimals": 18, + "name": "REI AI", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xdf0e063a72bf51768402ca7f7fe39cb4a4c6ff43.png", + "aggregators": ["CoinGecko", "Rubic", "Squid"], + "occurrences": 3 + }, + "0xf0cb96a4011a0a6f73d100c7080bf8020d10f87a": { + "address": "0xf0cb96a4011a0a6f73d100c7080bf8020d10f87a", + "symbol": "MR_LIGHTSPEED", + "decimals": 18, + "name": "mr_lightspeed", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xf0cb96a4011a0a6f73d100c7080bf8020d10f87a.png", + "aggregators": ["CoinGecko", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x38da67e7256e2eec878b6d83a6fb6a4564c98e2d": { + "address": "0x38da67e7256e2eec878b6d83a6fb6a4564c98e2d", + "symbol": "MANYU", + "decimals": 18, + "name": "Based Manyu ", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x38da67e7256e2eec878b6d83a6fb6a4564c98e2d.png", + "aggregators": ["CoinGecko", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x7f5b95eeba26c385baa9a15646fe683fea5684df": { + "address": "0x7f5b95eeba26c385baa9a15646fe683fea5684df", + "symbol": "BERRYBOY", + "decimals": 18, + "name": "Berryboy", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x7f5b95eeba26c385baa9a15646fe683fea5684df.png", + "aggregators": ["CoinGecko", "Rubic", "Rango"], + "occurrences": 3 + }, + "0xc0df50143ea93aec63e38a6ed4e92b378079ea15": { + "address": "0xc0df50143ea93aec63e38a6ed4e92b378079ea15", + "symbol": "RAGE", + "decimals": 18, + "name": "Rage Protocol", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xc0df50143ea93aec63e38a6ed4e92b378079ea15.png", + "aggregators": ["CoinGecko", "Rubic", "Rango"], + "occurrences": 3 + }, + "0xe2f3fae4bc62e21826018364aa30ae45d430bb07": { + "address": "0xe2f3fae4bc62e21826018364aa30ae45d430bb07", + "symbol": "ANTIHUNTER", + "decimals": 18, + "name": "AntiHunter", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xe2f3fae4bc62e21826018364aa30ae45d430bb07.png", + "aggregators": ["CoinGecko", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x7480527815ccae421400da01e052b120cc4255e9": { + "address": "0x7480527815ccae421400da01e052b120cc4255e9", + "symbol": "WORKIE", + "decimals": 18, + "name": "Workie", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x7480527815ccae421400da01e052b120cc4255e9.png", + "aggregators": ["CoinGecko", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x701c8c09fe9f081f9be69ab9af8291c84c09389b": { + "address": "0x701c8c09fe9f081f9be69ab9af8291c84c09389b", + "symbol": "BG", + "decimals": 18, + "name": "Blink Galaxy", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x701c8c09fe9f081f9be69ab9af8291c84c09389b.png", + "aggregators": ["CoinGecko", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x0eda054e27a274323e07023972f47c36693ce5df": { + "address": "0x0eda054e27a274323e07023972f47c36693ce5df", + "symbol": "CUC", + "decimals": 18, + "name": "Cucumber Trade", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x0eda054e27a274323e07023972f47c36693ce5df.png", + "aggregators": ["CoinGecko", "Rubic", "Squid"], + "occurrences": 3 + }, + "0x583edb23e5149cdad7618ea02e298ada51b6bbd3": { + "address": "0x583edb23e5149cdad7618ea02e298ada51b6bbd3", + "symbol": "BABYCLAW", + "decimals": 18, + "name": "Baby Claw", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x583edb23e5149cdad7618ea02e298ada51b6bbd3.png", + "aggregators": ["CoinGecko", "Rubic", "Rango"], + "occurrences": 3 + }, + "0xe42264d3470e2fdd6ec3e288ad57cf254865a941": { + "address": "0xe42264d3470e2fdd6ec3e288ad57cf254865a941", + "symbol": "CLIPCOIN", + "decimals": 18, + "name": "ClipCoin", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xe42264d3470e2fdd6ec3e288ad57cf254865a941.png", + "aggregators": ["CoinGecko", "Rubic", "Rango"], + "occurrences": 3 + }, + "0xa023316fa5c85dadf008c611790b3235433e781e": { + "address": "0xa023316fa5c85dadf008c611790b3235433e781e", + "symbol": "MUTE", + "decimals": 18, + "name": "MUTE SWAP ", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xa023316fa5c85dadf008c611790b3235433e781e.png", + "aggregators": ["CoinGecko", "Rubic", "Squid"], + "occurrences": 3 + }, + "0x5a70be406ce7471a44f0183b8d7091f4ad751db5": { + "address": "0x5a70be406ce7471a44f0183b8d7091f4ad751db5", + "symbol": "SATO", + "decimals": 18, + "name": "SATO", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x5a70be406ce7471a44f0183b8d7091f4ad751db5.png", + "aggregators": ["CoinGecko", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x5f980dcfc4c0fa3911554cf5ab288ed0eb13dba3": { + "address": "0x5f980dcfc4c0fa3911554cf5ab288ed0eb13dba3", + "symbol": "GITLAWB", + "decimals": 18, + "name": "Gitlawb", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x5f980dcfc4c0fa3911554cf5ab288ed0eb13dba3.png", + "aggregators": ["CoinGecko", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x035098c2a3bea5e03b1e08e7140a5369d47bd349": { + "address": "0x035098c2a3bea5e03b1e08e7140a5369d47bd349", + "symbol": "SPN", + "decimals": 18, + "name": "Sapiens AI", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x035098c2a3bea5e03b1e08e7140a5369d47bd349.png", + "aggregators": ["CoinGecko", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x7ffbe850d2d45242efdb914d7d4dbb682d0c9b07": { + "address": "0x7ffbe850d2d45242efdb914d7d4dbb682d0c9b07", + "symbol": "EMBER", + "decimals": 18, + "name": "Ember", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x7ffbe850d2d45242efdb914d7d4dbb682d0c9b07.png", + "aggregators": ["CoinGecko", "Rubic", "Rango"], + "occurrences": 3 + }, + "0xc1de4e664cc6cb54af019264757f47ef45195b07": { + "address": "0xc1de4e664cc6cb54af019264757f47ef45195b07", + "symbol": "DOM", + "decimals": 18, + "name": "Dominion", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xc1de4e664cc6cb54af019264757f47ef45195b07.png", + "aggregators": ["CoinGecko", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x1a9be8a692de04bcb7ce5cddd03afca97d732c62": { + "address": "0x1a9be8a692de04bcb7ce5cddd03afca97d732c62", + "symbol": "YTRYB", + "decimals": 8, + "name": "Yield TRYB", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x1a9be8a692de04bcb7ce5cddd03afca97d732c62.png", + "aggregators": ["CoinGecko", "Rubic", "Sonarwatch"], + "occurrences": 3 + }, + "0xdd2fc771ddab2b787aedfd100a67d8a4754a380c": { + "address": "0xdd2fc771ddab2b787aedfd100a67d8a4754a380c", + "symbol": "TREB", + "decimals": 18, + "name": "Treble", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xdd2fc771ddab2b787aedfd100a67d8a4754a380c.png", + "aggregators": ["CoinGecko", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x3d01fe5a38ddbd307fdd635b4cb0e29681226d6f": { + "address": "0x3d01fe5a38ddbd307fdd635b4cb0e29681226d6f", + "symbol": "ALPHA", + "decimals": 18, + "name": "Alpha", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x3d01fe5a38ddbd307fdd635b4cb0e29681226d6f.png", + "aggregators": ["CoinGecko", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x01e75e59eabf83c85360351a100d22e025a75bc2": { + "address": "0x01e75e59eabf83c85360351a100d22e025a75bc2", + "symbol": "HEIR", + "decimals": 18, + "name": "HEIR", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x01e75e59eabf83c85360351a100d22e025a75bc2.png", + "aggregators": ["CoinGecko", "Rubic", "Rango"], + "occurrences": 3 + }, + "0xafd3a55ae8c86fb550495223f92f1af192e163fd": { + "address": "0xafd3a55ae8c86fb550495223f92f1af192e163fd", + "symbol": "11AM", + "decimals": 18, + "name": "11am", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xafd3a55ae8c86fb550495223f92f1af192e163fd.png", + "aggregators": ["CoinGecko", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x26e0331355df5ef082f69df161218093708a73ac": { + "address": "0x26e0331355df5ef082f69df161218093708a73ac", + "symbol": "CHAOS", + "decimals": 18, + "name": "harmonybot", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x26e0331355df5ef082f69df161218093708a73ac.png", + "aggregators": ["CoinGecko", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x1fc11c079a3432b42f27527a272d1cde7af1a745": { + "address": "0x1fc11c079a3432b42f27527a272d1cde7af1a745", + "symbol": "METALOS", + "decimals": 18, + "name": "Metalos", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x1fc11c079a3432b42f27527a272d1cde7af1a745.png", + "aggregators": ["CoinGecko", "Rubic", "Rango"], + "occurrences": 3 + }, + "0xd63aaeec20f9b74d49f8dd8e319b6edd564a7dd0": { + "address": "0xd63aaeec20f9b74d49f8dd8e319b6edd564a7dd0", + "symbol": "SHOGUN", + "decimals": 18, + "name": "Shogun", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xd63aaeec20f9b74d49f8dd8e319b6edd564a7dd0.png", + "aggregators": ["CoinGecko", "Rubic", "Rango"], + "occurrences": 3 + }, + "0xb233bdffd437e60fa451f62c6c09d3804d285ba3": { + "address": "0xb233bdffd437e60fa451f62c6c09d3804d285ba3", + "symbol": "NOOK", + "decimals": 18, + "name": "Nookplot", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xb233bdffd437e60fa451f62c6c09d3804d285ba3.png", + "aggregators": ["CoinGecko", "Rubic", "Rango"], + "occurrences": 3 + }, + "0xd6a34b430c05ac78c24985f8abee2616bc1788cb": { + "address": "0xd6a34b430c05ac78c24985f8abee2616bc1788cb", + "symbol": "UAVAX", + "decimals": 18, + "name": "Avalanche (Universal)", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xd6a34b430c05ac78c24985f8abee2616bc1788cb.png", + "aggregators": ["CoinGecko", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x797f214a2cd64a4963a91fa21c8c55ec3eba4714": { + "address": "0x797f214a2cd64a4963a91fa21c8c55ec3eba4714", + "symbol": "SIBYL", + "decimals": 18, + "name": "SIBYL", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x797f214a2cd64a4963a91fa21c8c55ec3eba4714.png", + "aggregators": ["CoinGecko", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x73582df1cad3187cd0746b7a473d65c06386837e": { + "address": "0x73582df1cad3187cd0746b7a473d65c06386837e", + "symbol": "DEUS", + "decimals": 18, + "name": "DEUS", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x73582df1cad3187cd0746b7a473d65c06386837e.png", + "aggregators": ["CoinGecko", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x2387b01ef6221a0c0f2d18d51943aa632e2d0201": { + "address": "0x2387b01ef6221a0c0f2d18d51943aa632e2d0201", + "symbol": "GUNDA", + "decimals": 18, + "name": "GUNDA", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x2387b01ef6221a0c0f2d18d51943aa632e2d0201.png", + "aggregators": ["CoinGecko", "Rubic", "Rango"], + "occurrences": 3 + }, + "0xb56b5269c03421765c28aa61037536ea5690741c": { + "address": "0xb56b5269c03421765c28aa61037536ea5690741c", + "symbol": "DESSAI", + "decimals": 18, + "name": "DessalinesAI by Virtuals", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xb56b5269c03421765c28aa61037536ea5690741c.png", + "aggregators": ["CoinGecko", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x81eb920f9b46298b39552fdaf147597ba2a70b07": { + "address": "0x81eb920f9b46298b39552fdaf147597ba2a70b07", + "symbol": "EPEG", + "decimals": 18, + "name": "ePEG", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x81eb920f9b46298b39552fdaf147597ba2a70b07.png", + "aggregators": ["CoinGecko", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x885a590198e5f0947f4c92db815cf2a2147980b8": { + "address": "0x885a590198e5f0947f4c92db815cf2a2147980b8", + "symbol": "BASESHAKE", + "decimals": 18, + "name": "BaseShake", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x885a590198e5f0947f4c92db815cf2a2147980b8.png", + "aggregators": ["CoinGecko", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x20ef84969f6d81ff74ae4591c331858b20ad82cd": { + "address": "0x20ef84969f6d81ff74ae4591c331858b20ad82cd", + "symbol": "AISTR", + "decimals": 18, + "name": "AicroStrategy", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x20ef84969f6d81ff74ae4591c331858b20ad82cd.png", + "aggregators": ["CoinGecko", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x8972ab69d499b5537a31576725f0af8f67203d38": { + "address": "0x8972ab69d499b5537a31576725f0af8f67203d38", + "symbol": "REKT", + "decimals": 18, + "name": "REKT", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x8972ab69d499b5537a31576725f0af8f67203d38.png", + "aggregators": ["CoinGecko", "Rubic", "Rango"], + "occurrences": 3 + }, + "0xe9d139df6212fde346ec650e83039f322018f60d": { + "address": "0xe9d139df6212fde346ec650e83039f322018f60d", + "symbol": "TKFG", + "decimals": 18, + "name": "tokenforge", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xe9d139df6212fde346ec650e83039f322018f60d.png", + "aggregators": ["CoinGecko", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x44f77502418c9b225ad8f80a9def915c8c271a19": { + "address": "0x44f77502418c9b225ad8f80a9def915c8c271a19", + "symbol": "CATCH", + "decimals": 18, + "name": "catchcoin", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x44f77502418c9b225ad8f80a9def915c8c271a19.png", + "aggregators": ["CoinGecko", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x84a9183c9d11146d8e6a820dfc675a61b11eadeb": { + "address": "0x84a9183c9d11146d8e6a820dfc675a61b11eadeb", + "symbol": "BASEDHYPE", + "decimals": 18, + "name": "BasedHype", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x84a9183c9d11146d8e6a820dfc675a61b11eadeb.png", + "aggregators": ["CoinGecko", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x2615a94df961278dcbc41fb0a54fec5f10a693ae": { + "address": "0x2615a94df961278dcbc41fb0a54fec5f10a693ae", + "symbol": "UXRP", + "decimals": 18, + "name": "XRP (Universal)", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x2615a94df961278dcbc41fb0a54fec5f10a693ae.png", + "aggregators": ["CoinGecko", "Rubic", "Rango"], + "occurrences": 3 + }, + "0xcb5ff7331193c45f61f05b035ddabe08f13f6ba3": { + "address": "0xcb5ff7331193c45f61f05b035ddabe08f13f6ba3", + "symbol": "OPENAGENTMARKET", + "decimals": 18, + "name": "openagentmarket", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xcb5ff7331193c45f61f05b035ddabe08f13f6ba3.png", + "aggregators": ["CoinGecko", "Rubic", "Rango"], + "occurrences": 3 + }, + "0xab646ee997975b97851a923e4e8daf4ea36d1e9b": { + "address": "0xab646ee997975b97851a923e4e8daf4ea36d1e9b", + "symbol": "FISH", + "decimals": 4, + "name": "Angland FISH", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xab646ee997975b97851a923e4e8daf4ea36d1e9b.png", + "aggregators": ["CoinGecko", "Rubic", "Rango"], + "occurrences": 3 + }, + "0xa7d812832091e06144abeaf0a8540e25d1b36b07": { + "address": "0xa7d812832091e06144abeaf0a8540e25d1b36b07", + "symbol": "VOLM", + "decimals": 18, + "name": "VOLM", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xa7d812832091e06144abeaf0a8540e25d1b36b07.png", + "aggregators": ["CoinGecko", "Rubic", "Rango"], + "occurrences": 3 + }, + "0xb695559b26bb2c9703ef1935c37aeae9526bab07": { + "address": "0xb695559b26bb2c9703ef1935c37aeae9526bab07", + "symbol": "MOLT", + "decimals": 18, + "name": "Moltbook", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xb695559b26bb2c9703ef1935c37aeae9526bab07.png", + "aggregators": ["CoinGecko", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x0000000000f6a4a20f4d340a1c3f3040ac5a255c": { + "address": "0x0000000000f6a4a20f4d340a1c3f3040ac5a255c", + "symbol": "HYPR", + "decimals": 18, + "name": "HYPR", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x0000000000f6a4a20f4d340a1c3f3040ac5a255c.png", + "aggregators": ["CoinGecko", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x558881c4959e9cf961a7e1815fcd6586906babd2": { + "address": "0x558881c4959e9cf961a7e1815fcd6586906babd2", + "symbol": "BACK", + "decimals": 18, + "name": "Silverback", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x558881c4959e9cf961a7e1815fcd6586906babd2.png", + "aggregators": ["CoinGecko", "Rubic", "Squid"], + "occurrences": 3 + }, + "0x5d0dd05bb095fdd6af4865a1adf97c39c85ad2d8": { + "address": "0x5d0dd05bb095fdd6af4865a1adf97c39c85ad2d8", + "symbol": "KILT", + "decimals": 18, + "name": "KILT Protocol", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x5d0dd05bb095fdd6af4865a1adf97c39c85ad2d8.png", + "aggregators": ["CoinGecko", "Rubic", "Rango"], + "occurrences": 3 + }, + "0xfc48314ad4ad5bd36a84e8307b86a68a01d95d9c": { + "address": "0xfc48314ad4ad5bd36a84e8307b86a68a01d95d9c", + "symbol": "AION", + "decimals": 18, + "name": "AION 5100", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xfc48314ad4ad5bd36a84e8307b86a68a01d95d9c.png", + "aggregators": ["CoinGecko", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x7ffd8f91b0b1b5c7a2e6c7c9efb8be0a71885b07": { + "address": "0x7ffd8f91b0b1b5c7a2e6c7c9efb8be0a71885b07", + "symbol": "ARGUE", + "decimals": 18, + "name": "ARGUE", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x7ffd8f91b0b1b5c7a2e6c7c9efb8be0a71885b07.png", + "aggregators": ["CoinGecko", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x620e617adbd41608f858d4191282945e67724b07": { + "address": "0x620e617adbd41608f858d4191282945e67724b07", + "symbol": "COAT", + "decimals": 18, + "name": "COAT DOG", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x620e617adbd41608f858d4191282945e67724b07.png", + "aggregators": ["CoinGecko", "Rubic", "Rango"], + "occurrences": 3 + }, + "0xe88419a3fc78364cfe3de88080ee4853fab754c6": { + "address": "0xe88419a3fc78364cfe3de88080ee4853fab754c6", + "symbol": "ROBA", + "decimals": 18, + "name": "Roba", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xe88419a3fc78364cfe3de88080ee4853fab754c6.png", + "aggregators": ["CoinGecko", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x2f6c17fa9f9bc3600346ab4e48c0701e1d5962ae": { + "address": "0x2f6c17fa9f9bc3600346ab4e48c0701e1d5962ae", + "symbol": "FARTCOIN", + "decimals": 18, + "name": "Based Fartcoin", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x2f6c17fa9f9bc3600346ab4e48c0701e1d5962ae.png", + "aggregators": ["CoinGecko", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x7750741868cc4a865d9c0f619e6e642fd61f642f": { + "address": "0x7750741868cc4a865d9c0f619e6e642fd61f642f", + "symbol": "MEM", + "decimals": 18, + "name": "Memory", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x7750741868cc4a865d9c0f619e6e642fd61f642f.png", + "aggregators": ["CoinGecko", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x2b5050f01d64fbb3e4ac44dc07f0732bfb5ecadf": { + "address": "0x2b5050f01d64fbb3e4ac44dc07f0732bfb5ecadf", + "symbol": "QR", + "decimals": 18, + "name": "QR coin", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x2b5050f01d64fbb3e4ac44dc07f0732bfb5ecadf.png", + "aggregators": ["CoinGecko", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x680bc6ed5c7222e2f29bdbc87f8e8f3400d8ce04": { + "address": "0x680bc6ed5c7222e2f29bdbc87f8e8f3400d8ce04", + "symbol": "EAT", + "decimals": 18, + "name": "WYDE: End Hunger", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x680bc6ed5c7222e2f29bdbc87f8e8f3400d8ce04.png", + "aggregators": ["CoinGecko", "Rubic", "Rango"], + "occurrences": 3 + }, + "0xe99d2f7988c5f2d013a34e7484f079cab87f469f": { + "address": "0xe99d2f7988c5f2d013a34e7484f079cab87f469f", + "symbol": "01111010011110000110001001110100", + "decimals": 18, + "name": "01111010011110000110001001110100", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xe99d2f7988c5f2d013a34e7484f079cab87f469f.png", + "aggregators": ["CoinGecko", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x02537463e57a44f861ee861ba4f590c413f984a6": { + "address": "0x02537463e57a44f861ee861ba4f590c413f984a6", + "symbol": "BROAK", + "decimals": 18, + "name": "Broak on Base", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x02537463e57a44f861ee861ba4f590c413f984a6.png", + "aggregators": ["CoinGecko", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x95308ec85a48376f253f36720355a54808c7857b": { + "address": "0x95308ec85a48376f253f36720355a54808c7857b", + "symbol": "SPH", + "decimals": 18, + "name": "Sophia", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x95308ec85a48376f253f36720355a54808c7857b.png", + "aggregators": ["CoinGecko", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x132b99d96d4ac9efc05f62f8aa4fc68a82121bc0": { + "address": "0x132b99d96d4ac9efc05f62f8aa4fc68a82121bc0", + "symbol": "WHITEWHALE", + "decimals": 18, + "name": "The Based White Whale", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x132b99d96d4ac9efc05f62f8aa4fc68a82121bc0.png", + "aggregators": ["CoinGecko", "Rubic", "Rango"], + "occurrences": 3 + }, + "0xd85c31854c2b0fb40aaa9e2fc4da23c21f829d46": { + "address": "0xd85c31854c2b0fb40aaa9e2fc4da23c21f829d46", + "symbol": "PING", + "decimals": 18, + "name": "Ping", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xd85c31854c2b0fb40aaa9e2fc4da23c21f829d46.png", + "aggregators": ["CoinGecko", "LiFi", "Rubic"], + "occurrences": 3 + }, + "0x5d54725b48d2c8badf5f6046c71c3ffb73e26228": { + "address": "0x5d54725b48d2c8badf5f6046c71c3ffb73e26228", + "symbol": "BOOKIE", + "decimals": 18, + "name": "Bookie AI", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x5d54725b48d2c8badf5f6046c71c3ffb73e26228.png", + "aggregators": ["CoinGecko", "Rubic", "Squid"], + "occurrences": 3 + }, + "0xd4f5fa1de763a9a13568aae59b92ea49976be56a": { + "address": "0xd4f5fa1de763a9a13568aae59b92ea49976be56a", + "symbol": "BASED", + "decimals": 14, + "name": "Based Meme", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xd4f5fa1de763a9a13568aae59b92ea49976be56a.png", + "aggregators": ["CoinGecko", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x0ba5ed329d073a847ec3d54ac767f7e099c29bb2": { + "address": "0x0ba5ed329d073a847ec3d54ac767f7e099c29bb2", + "symbol": "MOG", + "decimals": 18, + "name": "Based Mog Coin", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x0ba5ed329d073a847ec3d54ac767f7e099c29bb2.png", + "aggregators": ["CoinGecko", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x6965084966592a76f80adadc5138eb23f18f1ed6": { + "address": "0x6965084966592a76f80adadc5138eb23f18f1ed6", + "symbol": "THUG", + "decimals": 9, + "name": "THUG", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x6965084966592a76f80adadc5138eb23f18f1ed6.png", + "aggregators": ["CoinGecko", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x2531ec1720e5d1bc82052585271d4be3f43e392f": { + "address": "0x2531ec1720e5d1bc82052585271d4be3f43e392f", + "symbol": "BOBR", + "decimals": 18, + "name": "Based BOBR", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x2531ec1720e5d1bc82052585271d4be3f43e392f.png", + "aggregators": ["CoinGecko", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x53c2b279877806b6af67137217670764597a121b": { + "address": "0x53c2b279877806b6af67137217670764597a121b", + "symbol": "SPYAI", + "decimals": 18, + "name": "SPY AI AGENT", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x53c2b279877806b6af67137217670764597a121b.png", + "aggregators": ["CoinGecko", "Rubic", "Squid"], + "occurrences": 3 + }, + "0xb96cfc6f81f85c58a1eccdd9ec2ad940e2cb8453": { + "address": "0xb96cfc6f81f85c58a1eccdd9ec2ad940e2cb8453", + "symbol": "AYB", + "decimals": 18, + "name": "All Your Base", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xb96cfc6f81f85c58a1eccdd9ec2ad940e2cb8453.png", + "aggregators": ["CoinGecko", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x396ffad9469e3d3e3fc4061b79acce2ad0ce4b9e": { + "address": "0x396ffad9469e3d3e3fc4061b79acce2ad0ce4b9e", + "symbol": "BETTER", + "decimals": 18, + "name": "BETTER", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x396ffad9469e3d3e3fc4061b79acce2ad0ce4b9e.png", + "aggregators": ["CoinGecko", "Rubic", "Rango"], + "occurrences": 3 + }, + "0xf950a97689cef428cb8ba703da7f958534b21566": { + "address": "0xf950a97689cef428cb8ba703da7f958534b21566", + "symbol": "FARCATS", + "decimals": 18, + "name": "farcats", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xf950a97689cef428cb8ba703da7f958534b21566.png", + "aggregators": ["CoinGecko", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x07a4e518e93e88409675db2a5ece5fdfbcaf549b": { + "address": "0x07a4e518e93e88409675db2a5ece5fdfbcaf549b", + "symbol": "BLLM", + "decimals": 18, + "name": "Based LLMs Arena", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x07a4e518e93e88409675db2a5ece5fdfbcaf549b.png", + "aggregators": ["CoinGecko", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x5d3772ce50dedca695197373f858bfb324e32e5a": { + "address": "0x5d3772ce50dedca695197373f858bfb324e32e5a", + "symbol": "RUNWAGO", + "decimals": 18, + "name": "Runwago", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x5d3772ce50dedca695197373f858bfb324e32e5a.png", + "aggregators": ["CoinGecko", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x38bd574d791a438921de91b88793254e83c97290": { + "address": "0x38bd574d791a438921de91b88793254e83c97290", + "symbol": "CDPANDA", + "decimals": 18, + "name": "Coinbase Mascot", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x38bd574d791a438921de91b88793254e83c97290.png", + "aggregators": ["CoinGecko", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x5ba9e0ce610927c1915c9d9de4bdaf2b8a1dee7e": { + "address": "0x5ba9e0ce610927c1915c9d9de4bdaf2b8a1dee7e", + "symbol": "FMT", + "decimals": 18, + "name": "Finger Monkeys Token", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x5ba9e0ce610927c1915c9d9de4bdaf2b8a1dee7e.png", + "aggregators": ["CoinGecko", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x1c93d155bd388241f9ab5df500d69eb529ce9583": { + "address": "0x1c93d155bd388241f9ab5df500d69eb529ce9583", + "symbol": "FLNCHY", + "decimals": 18, + "name": "Flaunchy", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x1c93d155bd388241f9ab5df500d69eb529ce9583.png", + "aggregators": ["CoinGecko", "Rubic", "Rango"], + "occurrences": 3 + }, + "0xfb1b73a861104b36049d1b6c0a0eb76a608ce5f7": { + "address": "0xfb1b73a861104b36049d1b6c0a0eb76a608ce5f7", + "symbol": "PRML", + "decimals": 18, + "name": "PrimeLayer", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xfb1b73a861104b36049d1b6c0a0eb76a608ce5f7.png", + "aggregators": ["CoinGecko", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x28743c20b1dec3a31bb2a21f8ccd045dd074912e": { + "address": "0x28743c20b1dec3a31bb2a21f8ccd045dd074912e", + "symbol": "GDK", + "decimals": 18, + "name": "Golden Donkey", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x28743c20b1dec3a31bb2a21f8ccd045dd074912e.png", + "aggregators": ["CoinGecko", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x67c5f00491c09cbcf6359f95690574e6106bb3cf": { + "address": "0x67c5f00491c09cbcf6359f95690574e6106bb3cf", + "symbol": "CC0COMPANY", + "decimals": 18, + "name": "cc0company", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x67c5f00491c09cbcf6359f95690574e6106bb3cf.png", + "aggregators": ["CoinGecko", "Rubic", "Rango"], + "occurrences": 3 + }, + "0xd3f68c6e8aee820569d58adf8d85d94489315192": { + "address": "0xd3f68c6e8aee820569d58adf8d85d94489315192", + "symbol": "$RDAC", + "decimals": 18, + "name": "Redacted Coin", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xd3f68c6e8aee820569d58adf8d85d94489315192.png", + "aggregators": ["CoinGecko", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x9a4d496a08b2df2b1b115d2cdf9c0a5629384b07": { + "address": "0x9a4d496a08b2df2b1b115d2cdf9c0a5629384b07", + "symbol": "WTF?", + "decimals": 18, + "name": "What The Firkin?", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x9a4d496a08b2df2b1b115d2cdf9c0a5629384b07.png", + "aggregators": ["CoinGecko", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x1d2fbee7994d7018af52252a97b0deab4ee4f2f8": { + "address": "0x1d2fbee7994d7018af52252a97b0deab4ee4f2f8", + "symbol": "JEFFKIRDEIKIS", + "decimals": 18, + "name": "jeffkirdeikis", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x1d2fbee7994d7018af52252a97b0deab4ee4f2f8.png", + "aggregators": ["CoinGecko", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x7e2734515b6da78182d8cad69e7f275ea28bd687": { + "address": "0x7e2734515b6da78182d8cad69e7f275ea28bd687", + "symbol": "TRADED", + "decimals": 18, + "name": "traded", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x7e2734515b6da78182d8cad69e7f275ea28bd687.png", + "aggregators": ["CoinGecko", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x83190636c344cf1220ffcbfc0c1198f7867b3667": { + "address": "0x83190636c344cf1220ffcbfc0c1198f7867b3667", + "symbol": "JMX", + "decimals": 18, + "name": "JOOCE Memecoin Index", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x83190636c344cf1220ffcbfc0c1198f7867b3667.png", + "aggregators": ["CoinGecko", "Rubic", "Rango"], + "occurrences": 3 + }, + "0xfca9fc2cb2dde04732ad07e4bb73db8cc8bfed1d": { + "address": "0xfca9fc2cb2dde04732ad07e4bb73db8cc8bfed1d", + "symbol": "GAPPY", + "decimals": 18, + "name": "Gap Tooth Lizard", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xfca9fc2cb2dde04732ad07e4bb73db8cc8bfed1d.png", + "aggregators": ["CoinGecko", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x911abc29f0dbdec68c01d58d67877887b5e651d8": { + "address": "0x911abc29f0dbdec68c01d58d67877887b5e651d8", + "symbol": "DVD", + "decimals": 18, + "name": "DeVoid", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x911abc29f0dbdec68c01d58d67877887b5e651d8.png", + "aggregators": ["CoinGecko", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x59081d974a0c635fae3e8195f34f879b591b6519": { + "address": "0x59081d974a0c635fae3e8195f34f879b591b6519", + "symbol": "K2", + "decimals": 18, + "name": "K2", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x59081d974a0c635fae3e8195f34f879b591b6519.png", + "aggregators": ["CoinGecko", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x9f5d8ee0d47296e4e78f2ea2a544917a31c501e2": { + "address": "0x9f5d8ee0d47296e4e78f2ea2a544917a31c501e2", + "symbol": "DOG8004", + "decimals": 18, + "name": "8004 Dog", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x9f5d8ee0d47296e4e78f2ea2a544917a31c501e2.png", + "aggregators": ["CoinGecko", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x78aca94075efdfa7220cd7aae02ac1488a8c5134": { + "address": "0x78aca94075efdfa7220cd7aae02ac1488a8c5134", + "symbol": "KART", + "decimals": 18, + "name": "Henlo Kart", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x78aca94075efdfa7220cd7aae02ac1488a8c5134.png", + "aggregators": ["CoinGecko", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x4fe0dec6790f5f380b671142ad229219c16afe0e": { + "address": "0x4fe0dec6790f5f380b671142ad229219c16afe0e", + "symbol": "ZAIA", + "decimals": 18, + "name": "Zaia", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x4fe0dec6790f5f380b671142ad229219c16afe0e.png", + "aggregators": ["CoinGecko", "Rubic", "Squid"], + "occurrences": 3 + }, + "0xc17dda248e2d50fc006d8febb5a406dd31972712": { + "address": "0xc17dda248e2d50fc006d8febb5a406dd31972712", + "symbol": "ANY", + "decimals": 18, + "name": "Anyspend", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xc17dda248e2d50fc006d8febb5a406dd31972712.png", + "aggregators": ["CoinGecko", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x44551ca46fa5592bb572e20043f7c3d54c85cad7": { + "address": "0x44551ca46fa5592bb572e20043f7c3d54c85cad7", + "symbol": "CLX", + "decimals": 18, + "name": "Clanker Index", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x44551ca46fa5592bb572e20043f7c3d54c85cad7.png", + "aggregators": ["CoinGecko", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x69da011296a3a68d33bcfbca078e0be3b7d77b07": { + "address": "0x69da011296a3a68d33bcfbca078e0be3b7d77b07", + "symbol": "EMERGE", + "decimals": 18, + "name": "Emerge", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x69da011296a3a68d33bcfbca078e0be3b7d77b07.png", + "aggregators": ["CoinGecko", "Rubic", "Rango"], + "occurrences": 3 + }, + "0xac0e8f7e3df7239f5d0f0ae55cf85962d007cc5f": { + "address": "0xac0e8f7e3df7239f5d0f0ae55cf85962d007cc5f", + "symbol": "SPRDD", + "decimals": 18, + "name": "SPREDD Forecast Markets", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xac0e8f7e3df7239f5d0f0ae55cf85962d007cc5f.png", + "aggregators": ["CoinGecko", "Rubic", "Squid"], + "occurrences": 3 + }, + "0xef553b6914dbd17567393f7e55fbd773fff7d0cb": { + "address": "0xef553b6914dbd17567393f7e55fbd773fff7d0cb", + "symbol": "BOGE", + "decimals": 18, + "name": "Boge", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xef553b6914dbd17567393f7e55fbd773fff7d0cb.png", + "aggregators": ["CoinGecko", "Rubic", "Rango"], + "occurrences": 3 + }, + "0xa4bbac7ed5bda8ec71a1af5ee84d4c5a737bd875": { + "address": "0xa4bbac7ed5bda8ec71a1af5ee84d4c5a737bd875", + "symbol": "SMOL", + "decimals": 18, + "name": "SMOL", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xa4bbac7ed5bda8ec71a1af5ee84d4c5a737bd875.png", + "aggregators": ["CoinGecko", "Rubic", "Rango"], + "occurrences": 3 + }, + "0xc2fe3206b74d943ceadc187da6c5dbd1f63e2765": { + "address": "0xc2fe3206b74d943ceadc187da6c5dbd1f63e2765", + "symbol": "QUANT", + "decimals": 18, + "name": "QuantFun", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xc2fe3206b74d943ceadc187da6c5dbd1f63e2765.png", + "aggregators": ["CoinGecko", "Rubic", "Squid"], + "occurrences": 3 + }, + "0x5855da52aeb60a73088967a2d90c4891984a0465": { + "address": "0x5855da52aeb60a73088967a2d90c4891984a0465", + "symbol": "ICCM", + "decimals": 18, + "name": "ICCM", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x5855da52aeb60a73088967a2d90c4891984a0465.png", + "aggregators": ["CoinGecko", "Rubic", "Rango"], + "occurrences": 3 + }, + "0xf9575da3331b0d03d6e8d840c9ba5c181c0b3b07": { + "address": "0xf9575da3331b0d03d6e8d840c9ba5c181c0b3b07", + "symbol": "LOTRY", + "decimals": 18, + "name": "Lotry", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xf9575da3331b0d03d6e8d840c9ba5c181c0b3b07.png", + "aggregators": ["CoinGecko", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x3b3cd21242ba44e9865b066e5ef5d1cc1030cc58": { + "address": "0x3b3cd21242ba44e9865b066e5ef5d1cc1030cc58", + "symbol": "STREME", + "decimals": 18, + "name": "Streme", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x3b3cd21242ba44e9865b066e5ef5d1cc1030cc58.png", + "aggregators": ["CoinGecko", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x588ac26f61d5aedcb3a2e903e65da5f5f95cab24": { + "address": "0x588ac26f61d5aedcb3a2e903e65da5f5f95cab24", + "symbol": "SPACE", + "decimals": 18, + "name": "Space Token", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x588ac26f61d5aedcb3a2e903e65da5f5f95cab24.png", + "aggregators": ["CoinGecko", "Rubic", "Rango"], + "occurrences": 3 + }, + "0xe1bfa25468af64e366ddafc9d91bcc6c97439a14": { + "address": "0xe1bfa25468af64e366ddafc9d91bcc6c97439a14", + "symbol": "MIRROR", + "decimals": 18, + "name": "Mirror Token", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xe1bfa25468af64e366ddafc9d91bcc6c97439a14.png", + "aggregators": ["CoinGecko", "Rubic", "Rango"], + "occurrences": 3 + }, + "0xedb6970b7be5a522cff14c8b679a2d813ff97b4d": { + "address": "0xedb6970b7be5a522cff14c8b679a2d813ff97b4d", + "symbol": "SURGE", + "decimals": 18, + "name": "Surge", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xedb6970b7be5a522cff14c8b679a2d813ff97b4d.png", + "aggregators": ["CoinGecko", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x56f8ad6112c2db9f9848243531b277ce1c3be30c": { + "address": "0x56f8ad6112c2db9f9848243531b277ce1c3be30c", + "symbol": "DOCKERZXBT", + "decimals": 18, + "name": "dockerzxbt", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x56f8ad6112c2db9f9848243531b277ce1c3be30c.png", + "aggregators": ["CoinGecko", "Rubic", "Rango"], + "occurrences": 3 + }, + "0xd2a530170d71a9cfe1651fb468e2b98f7ed7456b": { + "address": "0xd2a530170d71a9cfe1651fb468e2b98f7ed7456b", + "symbol": "AUDF", + "decimals": 6, + "name": "Forte AUD", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xd2a530170d71a9cfe1651fb468e2b98f7ed7456b.png", + "aggregators": ["CoinGecko", "Rubic", "Rango"], + "occurrences": 3 + }, + "0xc47da4cb96ce65a96844a01bfae509f9d5454534": { + "address": "0xc47da4cb96ce65a96844a01bfae509f9d5454534", + "symbol": "JPYT", + "decimals": 6, + "name": "Dephaser JPY", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xc47da4cb96ce65a96844a01bfae509f9d5454534.png", + "aggregators": ["CoinGecko", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x5305ba038217c391af7e79f6f653c8cbc433deba": { + "address": "0x5305ba038217c391af7e79f6f653c8cbc433deba", + "symbol": "ANLOG", + "decimals": 12, + "name": "Analog", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x5305ba038217c391af7e79f6f653c8cbc433deba.png", + "aggregators": ["CoinGecko", "Rubic", "Rango"], + "occurrences": 3 + }, + "0xe2f9db0186b13668aec9fe0e15dbd13004ed8d6f": { + "address": "0xe2f9db0186b13668aec9fe0e15dbd13004ed8d6f", + "symbol": "YNE", + "decimals": 6, + "name": "YNE", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xe2f9db0186b13668aec9fe0e15dbd13004ed8d6f.png", + "aggregators": ["CoinGecko", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x5a0f93d040de44e78f251b03c43be9cf317dcf64": { + "address": "0x5a0f93d040de44e78f251b03c43be9cf317dcf64", + "symbol": "JAAA", + "decimals": 6, + "name": "JAAA", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x5a0f93d040de44e78f251b03c43be9cf317dcf64.png", + "aggregators": ["CoinGecko", "Rubic", "Rango"], + "occurrences": 3 + }, + "0xf516562b703f46084eeb79afe58cc046572e56a7": { + "address": "0xf516562b703f46084eeb79afe58cc046572e56a7", + "symbol": "AI", + "decimals": 18, + "name": "AI PIN", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xf516562b703f46084eeb79afe58cc046572e56a7.png", + "aggregators": ["CoinGecko", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x8c213ee79581ff4984583c6a801e5263418c4b86": { + "address": "0x8c213ee79581ff4984583c6a801e5263418c4b86", + "symbol": "JTRSY", + "decimals": 6, + "name": "JTRSY", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x8c213ee79581ff4984583c6a801e5263418c4b86.png", + "aggregators": ["CoinGecko", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x032d86656db142138ac97d2c5c4e3766e8c0482d": { + "address": "0x032d86656db142138ac97d2c5c4e3766e8c0482d", + "symbol": "ALLO", + "decimals": 18, + "name": "ALLO", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x032d86656db142138ac97d2c5c4e3766e8c0482d.png", + "aggregators": ["CoinGecko", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x5fe872bf640e06380b848976c7927827a0f2a3ce": { + "address": "0x5fe872bf640e06380b848976c7927827a0f2a3ce", + "symbol": "ƎԀƎԀ", + "decimals": 9, + "name": "ƎԀƎԀ", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x5fe872bf640e06380b848976c7927827a0f2a3ce.png", + "aggregators": ["CoinGecko", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x370923d39f139c64813f173a1bf0b4f9ba36a24f": { + "address": "0x370923d39f139c64813f173a1bf0b4f9ba36a24f", + "symbol": "KRWT", + "decimals": 18, + "name": "KRWT", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x370923d39f139c64813f173a1bf0b4f9ba36a24f.png", + "aggregators": ["CoinGecko", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x17906b1cd88aa8efaefc5e82891b52a22219bd45": { + "address": "0x17906b1cd88aa8efaefc5e82891b52a22219bd45", + "symbol": "SUPR", + "decimals": 18, + "name": "Superseed", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x17906b1cd88aa8efaefc5e82891b52a22219bd45.png", + "aggregators": ["CoinGecko", "Rubic", "Rango"], + "occurrences": 3 + }, + "0xd02f50e1017f493ffffa70c8fcf09e349e11d6c9": { + "address": "0xd02f50e1017f493ffffa70c8fcf09e349e11d6c9", + "symbol": "DGLD", + "decimals": 18, + "name": "DGLD", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xd02f50e1017f493ffffa70c8fcf09e349e11d6c9.png", + "aggregators": ["CoinGecko", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x3ed03e95dd894235090b3d4a49e0c3239edce59e": { + "address": "0x3ed03e95dd894235090b3d4a49e0c3239edce59e", + "symbol": "MYRC", + "decimals": 18, + "name": "MYRC", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x3ed03e95dd894235090b3d4a49e0c3239edce59e.png", + "aggregators": ["CoinGecko", "Rubic", "Rango"], + "occurrences": 3 + }, + "0xf4bdd7042f4ea505838c2d432c787beb9f603274": { + "address": "0xf4bdd7042f4ea505838c2d432c787beb9f603274", + "symbol": "WXM", + "decimals": 18, + "name": "WXM", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xf4bdd7042f4ea505838c2d432c787beb9f603274.png", + "aggregators": ["CoinGecko", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x2e8f83541ab39c8451b3e557a19be531a59ddecc": { + "address": "0x2e8f83541ab39c8451b3e557a19be531a59ddecc", + "symbol": "WJUNO", + "decimals": 8, + "name": "JunoCash", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x2e8f83541ab39c8451b3e557a19be531a59ddecc.png", + "aggregators": ["CoinGecko", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x0c76e9c9e391055e75eb2413d718a4bc7a037972": { + "address": "0x0c76e9c9e391055e75eb2413d718a4bc7a037972", + "symbol": "FUELX", + "decimals": 18, + "name": "Fuel", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x0c76e9c9e391055e75eb2413d718a4bc7a037972.png", + "aggregators": ["CoinGecko", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x9a574ea719b5e69df7c783d15c9514a26f3faf53": { + "address": "0x9a574ea719b5e69df7c783d15c9514a26f3faf53", + "symbol": "RWAI", + "decimals": 18, + "name": "RWAI by Virtuals", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x9a574ea719b5e69df7c783d15c9514a26f3faf53.png", + "aggregators": ["CoinGecko", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x0dc28efba8c6e0c14fa7391636b8bec86c4c83d6": { + "address": "0x0dc28efba8c6e0c14fa7391636b8bec86c4c83d6", + "symbol": "BSB", + "decimals": 18, + "name": "Block Street", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x0dc28efba8c6e0c14fa7391636b8bec86c4c83d6.png", + "aggregators": ["CoinGecko", "Rubic", "Rango"], + "occurrences": 3 + }, + "0xa992ffb0c9b753307b9704079c61db4e405deffd": { + "address": "0xa992ffb0c9b753307b9704079c61db4e405deffd", + "symbol": "COA", + "decimals": 18, + "name": "COA", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xa992ffb0c9b753307b9704079c61db4e405deffd.png", + "aggregators": ["CoinGecko", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x22833bd616fae02c369c40523c77f00ddeca5761": { + "address": "0x22833bd616fae02c369c40523c77f00ddeca5761", + "symbol": "BTC.ℏ[BASE]", + "decimals": 8, + "name": "BTC.ℏ[BASE]", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x22833bd616fae02c369c40523c77f00ddeca5761.png", + "aggregators": ["CoinGecko", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x0a776c1c22b8b8e7eab346744daa33722b80fda4": { + "address": "0x0a776c1c22b8b8e7eab346744daa33722b80fda4", + "symbol": "ZKP", + "decimals": 18, + "name": "ZKP", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x0a776c1c22b8b8e7eab346744daa33722b80fda4.png", + "aggregators": ["CoinGecko", "Rubic", "Rango"], + "occurrences": 3 + }, + "0xac3fe22294beaed9d1fd752323a6d06d12ff3098": { + "address": "0xac3fe22294beaed9d1fd752323a6d06d12ff3098", + "symbol": "VNXAU", + "decimals": 18, + "name": "VNXAU", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xac3fe22294beaed9d1fd752323a6d06d12ff3098.png", + "aggregators": ["CoinGecko", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x40461291347e1ecbb09499f3371d3f17f10d7159": { + "address": "0x40461291347e1ecbb09499f3371d3f17f10d7159", + "symbol": "SUEDE", + "decimals": 18, + "name": "Johnny Suede", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x40461291347e1ecbb09499f3371d3f17f10d7159.png", + "aggregators": ["CoinGecko", "Rubic", "Rango"], + "occurrences": 3 + }, + "0xdefa1d21c5f1cbeac00eeb54b44c7d86467cc3a3": { + "address": "0xdefa1d21c5f1cbeac00eeb54b44c7d86467cc3a3", + "symbol": "ALMANAK", + "decimals": 18, + "name": "ALMANAK", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xdefa1d21c5f1cbeac00eeb54b44c7d86467cc3a3.png", + "aggregators": ["CoinGecko", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x3898257dd2cd6d2a3b6e3435f73568a725262b9b": { + "address": "0x3898257dd2cd6d2a3b6e3435f73568a725262b9b", + "symbol": "MBTC", + "decimals": 18, + "name": "MAGA Bitcoin", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x3898257dd2cd6d2a3b6e3435f73568a725262b9b.png", + "aggregators": ["CoinGecko", "Rubic", "Rango"], + "occurrences": 3 + }, + "0xbc33b4d48f76d17a1800afcb730e8a6aaada7fe5": { + "address": "0xbc33b4d48f76d17a1800afcb730e8a6aaada7fe5", + "symbol": "VDOT", + "decimals": 18, + "name": "Voucher DOT", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xbc33b4d48f76d17a1800afcb730e8a6aaada7fe5.png", + "aggregators": ["CoinGecko", "Rubic", "Sonarwatch"], + "occurrences": 3 + }, + "0xd4423795fd904d9b87554940a95fb7016f172773": { + "address": "0xd4423795fd904d9b87554940a95fb7016f172773", + "symbol": "AIN", + "decimals": 18, + "name": "AIN", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xd4423795fd904d9b87554940a95fb7016f172773.png", + "aggregators": ["CoinGecko", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x6f8c1de07c9e59a8289705b1033af383dc3681b1": { + "address": "0x6f8c1de07c9e59a8289705b1033af383dc3681b1", + "symbol": "XCCX", + "decimals": 6, + "name": "BlockChainCoinX", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x6f8c1de07c9e59a8289705b1033af383dc3681b1.png", + "aggregators": ["CoinGecko", "Rubic", "Rango"], + "occurrences": 3 + }, + "0xaeb4bb7debd1e5e82266f7c3b5cff56b3a7bf411": { + "address": "0xaeb4bb7debd1e5e82266f7c3b5cff56b3a7bf411", + "symbol": "VGBP", + "decimals": 18, + "name": "VNX British Pound", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xaeb4bb7debd1e5e82266f7c3b5cff56b3a7bf411.png", + "aggregators": ["CoinGecko", "Rubic", "Rango"], + "occurrences": 3 + }, + "0xa0ff877e3d4f3a108b1b3d5eb3e4369301d2b2d7": { + "address": "0xa0ff877e3d4f3a108b1b3d5eb3e4369301d2b2d7", + "symbol": "W🍖", + "decimals": 3, + "name": "Unicorn Meat", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xa0ff877e3d4f3a108b1b3d5eb3e4369301d2b2d7.png", + "aggregators": ["CoinGecko", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x5fc2843838e65eb0b5d33654628f446d54602791": { + "address": "0x5fc2843838e65eb0b5d33654628f446d54602791", + "symbol": "FXH", + "decimals": 18, + "name": "fxhash", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x5fc2843838e65eb0b5d33654628f446d54602791.png", + "aggregators": ["CoinGecko", "Rubic", "Rango"], + "occurrences": 3 + }, + "0xa15d5c95b7c0eecac06f673ad390ad6066705af7": { + "address": "0xa15d5c95b7c0eecac06f673ad390ad6066705af7", + "symbol": "NAV", + "decimals": 18, + "name": "NAVFinance", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xa15d5c95b7c0eecac06f673ad390ad6066705af7.png", + "aggregators": ["CoinGecko", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x27f6c8289550fce67f6b50bed1f519966afe5287": { + "address": "0x27f6c8289550fce67f6b50bed1f519966afe5287", + "symbol": "TGBP", + "decimals": 18, + "name": "TGBP", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x27f6c8289550fce67f6b50bed1f519966afe5287.png", + "aggregators": ["CoinGecko", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x00312400303d02c323295f6e8b7309bc30fb6bce": { + "address": "0x00312400303d02c323295f6e8b7309bc30fb6bce", + "symbol": "ERA", + "decimals": 18, + "name": "Caldera", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x00312400303d02c323295f6e8b7309bc30fb6bce.png", + "aggregators": ["CoinGecko", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x1eefd52f6e218f262da7b0089b9e343a1eb5c9f4": { + "address": "0x1eefd52f6e218f262da7b0089b9e343a1eb5c9f4", + "symbol": "SHRUB", + "decimals": 18, + "name": "SHRUB", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x1eefd52f6e218f262da7b0089b9e343a1eb5c9f4.png", + "aggregators": ["CoinGecko", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x5dd1a7a369e8273371d2dbf9d83356057088082c": { + "address": "0x5dd1a7a369e8273371d2dbf9d83356057088082c", + "symbol": "FT", + "decimals": 18, + "name": "FT", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x5dd1a7a369e8273371d2dbf9d83356057088082c.png", + "aggregators": ["CoinGecko", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x59f680f431f5280e7662b96f2dfa195d1693852d": { + "address": "0x59f680f431f5280e7662b96f2dfa195d1693852d", + "symbol": "MAG", + "decimals": 18, + "name": "Magnify Cash", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x59f680f431f5280e7662b96f2dfa195d1693852d.png", + "aggregators": ["CoinGecko", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x6bd83abc39391af1e24826e90237c4bd3468b5d2": { + "address": "0x6bd83abc39391af1e24826e90237c4bd3468b5d2", + "symbol": "SLC", + "decimals": 18, + "name": "SLC", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x6bd83abc39391af1e24826e90237c4bd3468b5d2.png", + "aggregators": ["CoinGecko", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x7e5fe1e587a5c38b4a4a9ba38a35096f8ea35aac": { + "address": "0x7e5fe1e587a5c38b4a4a9ba38a35096f8ea35aac", + "symbol": "AGENT", + "decimals": 0, + "name": "AGENT", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x7e5fe1e587a5c38b4a4a9ba38a35096f8ea35aac.png", + "aggregators": ["CoinGecko", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x58d6e314755c2668f3d7358cc7a7a06c4314b238": { + "address": "0x58d6e314755c2668f3d7358cc7a7a06c4314b238", + "symbol": "RIZZ", + "decimals": 6, + "name": "SigmaGyattOhioFanumSkibidiGooner", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x58d6e314755c2668f3d7358cc7a7a06c4314b238.png", + "aggregators": ["CoinGecko", "Rubic", "Rango"], + "occurrences": 3 + }, + "0xb9926b3fbc5873db0182016d55727d5ae89e5efd": { + "address": "0xb9926b3fbc5873db0182016d55727d5ae89e5efd", + "symbol": "APU", + "decimals": 18, + "name": "APU", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xb9926b3fbc5873db0182016d55727d5ae89e5efd.png", + "aggregators": ["CoinGecko", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x1cdb2aeb2123dd3c56b4a1e28ddfe1a0c1f9f45d": { + "address": "0x1cdb2aeb2123dd3c56b4a1e28ddfe1a0c1f9f45d", + "symbol": "GMAC", + "decimals": 18, + "name": "Gemach", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x1cdb2aeb2123dd3c56b4a1e28ddfe1a0c1f9f45d.png", + "aggregators": ["CoinGecko", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x4ed9df25d38795a47f52614126e47f564d37f347": { + "address": "0x4ed9df25d38795a47f52614126e47f564d37f347", + "symbol": "VEUR", + "decimals": 18, + "name": "VEUR", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x4ed9df25d38795a47f52614126e47f564d37f347.png", + "aggregators": ["CoinGecko", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x60c230c38af6d86b0277a98a1caeaa345a7b061f": { + "address": "0x60c230c38af6d86b0277a98a1caeaa345a7b061f", + "symbol": "FIABTC", + "decimals": 8, + "name": "Fiamma BTC", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x60c230c38af6d86b0277a98a1caeaa345a7b061f.png", + "aggregators": ["CoinGecko", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x4a9f3ed92892c0168dc194ec3867f8316288b32a": { + "address": "0x4a9f3ed92892c0168dc194ec3867f8316288b32a", + "symbol": "ELON", + "decimals": 18, + "name": "Dogelon Mars", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x4a9f3ed92892c0168dc194ec3867f8316288b32a.png", + "aggregators": ["CoinGecko", "Rubic", "Rango"], + "occurrences": 3 + }, + "0xbb146326778227a8498b105a18f84e0987a684b4": { + "address": "0xbb146326778227a8498b105a18f84e0987a684b4", + "symbol": "ASK", + "decimals": 18, + "name": "ASK", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xbb146326778227a8498b105a18f84e0987a684b4.png", + "aggregators": ["CoinGecko", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x86856814e74456893cfc8946bedcbb472b5fa856": { + "address": "0x86856814e74456893cfc8946bedcbb472b5fa856", + "symbol": "GLDT", + "decimals": 8, + "name": "GLDT", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x86856814e74456893cfc8946bedcbb472b5fa856.png", + "aggregators": ["CoinGecko", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x19e8d59ff3d7a31289e0dc04db48d43b02c7ffa6": { + "address": "0x19e8d59ff3d7a31289e0dc04db48d43b02c7ffa6", + "symbol": "CYS", + "decimals": 18, + "name": "CYS", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x19e8d59ff3d7a31289e0dc04db48d43b02c7ffa6.png", + "aggregators": ["CoinGecko", "Rubic", "Rango"], + "occurrences": 3 + }, + "0xa0a8481fc246cd12f75227abb96220ff5360fad3": { + "address": "0xa0a8481fc246cd12f75227abb96220ff5360fad3", + "symbol": "CMC20", + "decimals": 18, + "name": "CoinMarketCap 20 Index DTF", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xa0a8481fc246cd12f75227abb96220ff5360fad3.png", + "aggregators": ["CoinGecko", "Rubic", "Rango"], + "occurrences": 3 + }, + "0xedacc73ae9f73235934f72a43388404e4a2c4a24": { + "address": "0xedacc73ae9f73235934f72a43388404e4a2c4a24", + "symbol": "REACT", + "decimals": 18, + "name": "REACT", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xedacc73ae9f73235934f72a43388404e4a2c4a24.png", + "aggregators": ["CoinGecko", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x5a75a61032143575067de2b38ef38d601976091e": { + "address": "0x5a75a61032143575067de2b38ef38d601976091e", + "symbol": "SHARBI", + "decimals": 18, + "name": "Sharbi", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x5a75a61032143575067de2b38ef38d601976091e.png", + "aggregators": ["CoinGecko", "Rubic", "Rango"], + "occurrences": 3 + }, + "0xf4f447e6afa04c9d11ef0e2fc0d7f19c24ee55de": { + "address": "0xf4f447e6afa04c9d11ef0e2fc0d7f19c24ee55de", + "symbol": "VYUSD", + "decimals": 18, + "name": "VYUSD", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xf4f447e6afa04c9d11ef0e2fc0d7f19c24ee55de.png", + "aggregators": ["CoinGecko", "Rubic", "Rango"], + "occurrences": 3 + }, + "0xb5068ad7e4ad8f7fe2fcf5abe2c043ab8866569c": { + "address": "0xb5068ad7e4ad8f7fe2fcf5abe2c043ab8866569c", + "symbol": "PEPE", + "decimals": 18, + "name": "Pepe Community", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xb5068ad7e4ad8f7fe2fcf5abe2c043ab8866569c.png", + "aggregators": ["Metamask", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x33dce4097b75b3c35dd8149e3efb6d9486c950cd": { + "address": "0x33dce4097b75b3c35dd8149e3efb6d9486c950cd", + "symbol": "ABE", + "decimals": 18, + "name": "Abe", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x33dce4097b75b3c35dd8149e3efb6d9486c950cd.png", + "aggregators": ["CoinGecko", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x0dc4f92879b7670e5f4e4e6e3c801d229129d90d": { + "address": "0x0dc4f92879b7670e5f4e4e6e3c801d229129d90d", + "symbol": "WARS", + "decimals": 18, + "name": "Argentine Peso", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x0dc4f92879b7670e5f4e4e6e3c801d229129d90d.png", + "aggregators": ["Metamask", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x863b7364a29daa23c9fcbd02e27d129a8b185891": { + "address": "0x863b7364a29daa23c9fcbd02e27d129a8b185891", + "symbol": "SFI", + "decimals": 18, + "name": "Singularity Finance", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x863b7364a29daa23c9fcbd02e27d129a8b185891.png", + "aggregators": ["CoinGecko", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x96419929d7949d6a801a6909c145c8eef6a40431": { + "address": "0x96419929d7949d6a801a6909c145c8eef6a40431", + "symbol": "SPEC", + "decimals": 18, + "name": "Spectral Token", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x96419929d7949d6a801a6909c145c8eef6a40431.png", + "aggregators": ["CoinGecko", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x2a6eb279117bfdcc069c3a272cd3911d88635162": { + "address": "0x2a6eb279117bfdcc069c3a272cd3911d88635162", + "symbol": "GC[BASE]", + "decimals": 6, + "name": "GCoin", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x2a6eb279117bfdcc069c3a272cd3911d88635162.png", + "aggregators": ["CoinGecko", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x4e21eabf4fc4cf66f10a93395e4b0e2438de81a6": { + "address": "0x4e21eabf4fc4cf66f10a93395e4b0e2438de81a6", + "symbol": "RAIN", + "decimals": 18, + "name": "RAIN", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x4e21eabf4fc4cf66f10a93395e4b0e2438de81a6.png", + "aggregators": ["CoinGecko", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x599899dbaa0b4d3110b53d1a4d05fcdcb1c81945": { + "address": "0x599899dbaa0b4d3110b53d1a4d05fcdcb1c81945", + "symbol": "MOONED", + "decimals": 18, + "name": "MoonEdge Token", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x599899dbaa0b4d3110b53d1a4d05fcdcb1c81945.png", + "aggregators": ["CoinGecko", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x9b6a1d4fa5d90e5f2d34130053978d14cd301d58": { + "address": "0x9b6a1d4fa5d90e5f2d34130053978d14cd301d58", + "symbol": "DN", + "decimals": 18, + "name": "DN", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x9b6a1d4fa5d90e5f2d34130053978d14cd301d58.png", + "aggregators": ["CoinGecko", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x48acdfacc520cd50da3a5824e794daac5677363e": { + "address": "0x48acdfacc520cd50da3a5824e794daac5677363e", + "symbol": "ANI", + "decimals": 18, + "name": "ANI Token", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x48acdfacc520cd50da3a5824e794daac5677363e.png", + "aggregators": ["CoinGecko", "Rubic", "Rango"], + "occurrences": 3 + }, + "0xde184c7228430cca03a4a5792234a6fc99728ef1": { + "address": "0xde184c7228430cca03a4a5792234a6fc99728ef1", + "symbol": "ZYPTO", + "decimals": 18, + "name": "Zypto Token", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xde184c7228430cca03a4a5792234a6fc99728ef1.png", + "aggregators": ["CoinGecko", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x491b67a94ec0a59b81b784f4719d0387c4510c36": { + "address": "0x491b67a94ec0a59b81b784f4719d0387c4510c36", + "symbol": "PF", + "decimals": 18, + "name": "PF", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x491b67a94ec0a59b81b784f4719d0387c4510c36.png", + "aggregators": ["CoinGecko", "Rubic", "Rango"], + "occurrences": 3 + }, + "0xcafe5de18756817d98f4603f6828397406d4cafe": { + "address": "0xcafe5de18756817d98f4603f6828397406d4cafe", + "symbol": "WIT", + "decimals": 9, + "name": "Witnet", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xcafe5de18756817d98f4603f6828397406d4cafe.png", + "aggregators": ["CoinGecko", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x9208d82f121806a34a39bb90733b4c5c54f3993e": { + "address": "0x9208d82f121806a34a39bb90733b4c5c54f3993e", + "symbol": "BAP3X", + "decimals": 18, + "name": "bAP3X", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x9208d82f121806a34a39bb90733b4c5c54f3993e.png", + "aggregators": ["CoinGecko", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x9b56b112bbd6343a8961a093315a9a60b8cb1f36": { + "address": "0x9b56b112bbd6343a8961a093315a9a60b8cb1f36", + "symbol": "PEAQ", + "decimals": 18, + "name": "PeaqOFT", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x9b56b112bbd6343a8961a093315a9a60b8cb1f36.png", + "aggregators": ["CoinGecko", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x6ad12e761b438bea3ea09f6c6266556bb24c2181": { + "address": "0x6ad12e761b438bea3ea09f6c6266556bb24c2181", + "symbol": "BDX", + "decimals": 9, + "name": "BDX", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x6ad12e761b438bea3ea09f6c6266556bb24c2181.png", + "aggregators": ["CoinGecko", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x3073f7aaa4db83f95e9fff17424f71d4751a3073": { + "address": "0x3073f7aaa4db83f95e9fff17424f71d4751a3073", + "symbol": "MOVE", + "decimals": 8, + "name": "MOVE", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x3073f7aaa4db83f95e9fff17424f71d4751a3073.png", + "aggregators": ["CoinGecko", "Rubic", "Rango"], + "occurrences": 3 + }, + "0xc5fed7c8ccc75d8a72b601a66dffd7a489073f0b": { + "address": "0xc5fed7c8ccc75d8a72b601a66dffd7a489073f0b", + "symbol": "ACU", + "decimals": 12, + "name": "ACU", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xc5fed7c8ccc75d8a72b601a66dffd7a489073f0b.png", + "aggregators": ["CoinGecko", "Rubic", "Rango"], + "occurrences": 3 + }, + "0xecff4d80f54cf55c626e52f304a8891645961e72": { + "address": "0xecff4d80f54cf55c626e52f304a8891645961e72", + "symbol": "DAG", + "decimals": 8, + "name": "DAG", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xecff4d80f54cf55c626e52f304a8891645961e72.png", + "aggregators": ["CoinGecko", "Rubic", "Rango"], + "occurrences": 3 + }, + "0xf1572d1da5c3cce14ee5a1c9327d17e9ff0e3f43": { + "address": "0xf1572d1da5c3cce14ee5a1c9327d17e9ff0e3f43", + "symbol": "MAGIC", + "decimals": 18, + "name": "MAGIC", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xf1572d1da5c3cce14ee5a1c9327d17e9ff0e3f43.png", + "aggregators": ["CoinGecko", "Rubic", "Rango"], + "occurrences": 3 + }, + "0xc2d09cf86b9ff43cb29ef8ddca57a4eb4410d5f3": { + "address": "0xc2d09cf86b9ff43cb29ef8ddca57a4eb4410d5f3", + "symbol": "GTBTC", + "decimals": 8, + "name": "GTBTC", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xc2d09cf86b9ff43cb29ef8ddca57a4eb4410d5f3.png", + "aggregators": ["CoinGecko", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x4d5cb527bd9d87c727b6dbe01114adc086e646a2": { + "address": "0x4d5cb527bd9d87c727b6dbe01114adc086e646a2", + "symbol": "RX", + "decimals": 18, + "name": "RX", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x4d5cb527bd9d87c727b6dbe01114adc086e646a2.png", + "aggregators": ["LiFi", "Rubic", "Rango"], + "occurrences": 3 + }, + "0xe9185ee218cae427af7b9764a011bb89fea761b4": { + "address": "0xe9185ee218cae427af7b9764a011bb89fea761b4", + "symbol": "BRZ", + "decimals": 18, + "name": "BRZ Token", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xe9185ee218cae427af7b9764a011bb89fea761b4.png", + "aggregators": ["LiFi", "Socket", "Rubic"], + "occurrences": 3 + }, + "0xa0e430870c4604ccfc7b38ca7845b1ff653d0ff1": { + "address": "0xa0e430870c4604ccfc7b38ca7845b1ff653d0ff1", + "symbol": "MWETH", + "decimals": 18, + "name": "MWETH", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xa0e430870c4604ccfc7b38ca7845b1ff653d0ff1.png", + "aggregators": ["LiFi", "Rubic", "Rango"], + "occurrences": 3 + }, + "0xd38b305cac06990c0887032a02c03d6839f770a8": { + "address": "0xd38b305cac06990c0887032a02c03d6839f770a8", + "symbol": "LGCT", + "decimals": 18, + "name": "LGCT", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xd38b305cac06990c0887032a02c03d6839f770a8.png", + "aggregators": ["LiFi", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x7ad5fc8935065b980124e2c227b0bca9d751c807": { + "address": "0x7ad5fc8935065b980124e2c227b0bca9d751c807", + "symbol": "BIDS", + "decimals": 18, + "name": "BIDS", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x7ad5fc8935065b980124e2c227b0bca9d751c807.png", + "aggregators": ["LiFi", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x474cb5b5087e13ea006e13702e330c93c825ab5d": { + "address": "0x474cb5b5087e13ea006e13702e330c93c825ab5d", + "symbol": "MF", + "decimals": 18, + "name": "Make Fun", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x474cb5b5087e13ea006e13702e330c93c825ab5d.png", + "aggregators": ["LiFi", "Rubic", "Rango"], + "occurrences": 3 + }, + "0xa88a1ed0bac18727a615299ce5f557b8220a33d7": { + "address": "0xa88a1ed0bac18727a615299ce5f557b8220a33d7", + "symbol": "WCROTCH", + "decimals": 18, + "name": "CROTCH", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xa88a1ed0bac18727a615299ce5f557b8220a33d7.png", + "aggregators": ["LiFi", "Rubic", "Rango"], + "occurrences": 3 + }, + "0xd2e92077ad4d7d50d7d60be13fffe3fb52cc0b9f": { + "address": "0xd2e92077ad4d7d50d7d60be13fffe3fb52cc0b9f", + "symbol": "ZEREBRO", + "decimals": 18, + "name": "zerebro", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xd2e92077ad4d7d50d7d60be13fffe3fb52cc0b9f.png", + "aggregators": ["LiFi", "Rubic", "Squid"], + "occurrences": 3 + }, + "0xf2a81609cb1da12139488d19512371c8930b8161": { + "address": "0xf2a81609cb1da12139488d19512371c8930b8161", + "symbol": "LABS", + "decimals": 18, + "name": "LABS", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xf2a81609cb1da12139488d19512371c8930b8161.png", + "aggregators": ["LiFi", "Rubic", "Rango"], + "occurrences": 3 + }, + "0xaa61bb7777bd01b684347961918f1e07fbbce7cf": { + "address": "0xaa61bb7777bd01b684347961918f1e07fbbce7cf", + "symbol": "ZKC", + "decimals": 18, + "name": "ZK Coin", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xaa61bb7777bd01b684347961918f1e07fbbce7cf.png", + "aggregators": ["LiFi", "Socket", "Rango"], + "occurrences": 3 + }, + "0x58ed4fd0c3d930b674ba50a293f03ef6cd7de7a3": { + "address": "0x58ed4fd0c3d930b674ba50a293f03ef6cd7de7a3", + "symbol": "ARX", + "decimals": 18, + "name": "ArbiDex Token", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x58ed4fd0c3d930b674ba50a293f03ef6cd7de7a3.png", + "aggregators": ["LiFi", "Rubic", "Squid"], + "occurrences": 3 + }, + "0xc6c1be6c6d828f9cea70f1b8351879510fbf0065": { + "address": "0xc6c1be6c6d828f9cea70f1b8351879510fbf0065", + "symbol": "ZKP", + "decimals": 18, + "name": "zkPass", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xc6c1be6c6d828f9cea70f1b8351879510fbf0065.png", + "aggregators": ["LiFi", "Socket", "Rango"], + "occurrences": 3 + }, + "0xe6baa3fedb5dc88b2c59ba4812388bb0906d19db": { + "address": "0xe6baa3fedb5dc88b2c59ba4812388bb0906d19db", + "symbol": "NCT", + "decimals": 18, + "name": "PolySwarm", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xe6baa3fedb5dc88b2c59ba4812388bb0906d19db.png", + "aggregators": ["LiFi", "Socket", "Rango"], + "occurrences": 3 + }, + "0x2dbe0d779c7a04f7a5de83326973effe23356930": { + "address": "0x2dbe0d779c7a04f7a5de83326973effe23356930", + "symbol": "FOX", + "decimals": 18, + "name": "ShapeShift FOX", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x2dbe0d779c7a04f7a5de83326973effe23356930.png", + "aggregators": ["LiFi", "Socket", "Rango"], + "occurrences": 3 + }, + "0xddb293bb5c5258f7484a94a0fbd5c8b2f6e4e376": { + "address": "0xddb293bb5c5258f7484a94a0fbd5c8b2f6e4e376", + "symbol": "BKN", + "decimals": 18, + "name": "Brickken", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xddb293bb5c5258f7484a94a0fbd5c8b2f6e4e376.png", + "aggregators": ["Socket", "Rubic", "Rango"], + "occurrences": 3 + }, + "0xe2b21d4684b2ba62f3be1fe286eacb90d26e394d": { + "address": "0xe2b21d4684b2ba62f3be1fe286eacb90d26e394d", + "symbol": "COC", + "decimals": 18, + "name": "CryptoOracle Collective", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xe2b21d4684b2ba62f3be1fe286eacb90d26e394d.png", + "aggregators": ["Socket", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x6af3cb766d6cd37449bfd321d961a61b0515c1bc": { + "address": "0x6af3cb766d6cd37449bfd321d961a61b0515c1bc", + "symbol": "RAZOR", + "decimals": 18, + "name": "RAZOR", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x6af3cb766d6cd37449bfd321d961a61b0515c1bc.png", + "aggregators": ["Socket", "Rubic", "Rango"], + "occurrences": 3 + }, + "0xd5c3a723e63a0ecab81081c26c6a3c4b2634bf85": { + "address": "0xd5c3a723e63a0ecab81081c26c6a3c4b2634bf85", + "symbol": "WOJAK", + "decimals": 18, + "name": "Based Wojak", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xd5c3a723e63a0ecab81081c26c6a3c4b2634bf85.png", + "aggregators": ["Socket", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x3a115f568c4b3d0c6e239b2e8f3d4cda3798f536": { + "address": "0x3a115f568c4b3d0c6e239b2e8f3d4cda3798f536", + "symbol": "IDLE", + "decimals": 18, + "name": "Idle Network", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x3a115f568c4b3d0c6e239b2e8f3d4cda3798f536.png", + "aggregators": ["Socket", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x938171227ece879267122a36847b219cbd3b9d47": { + "address": "0x938171227ece879267122a36847b219cbd3b9d47", + "symbol": "AI", + "decimals": 18, + "name": "AI Protocol", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x938171227ece879267122a36847b219cbd3b9d47.png", + "aggregators": ["Rubic", "Rango", "Sonarwatch"], + "occurrences": 3 + }, + "0x8217aef424b8ed7279d90ec29315a6295dc73d16": { + "address": "0x8217aef424b8ed7279d90ec29315a6295dc73d16", + "symbol": "AIRTOK", + "decimals": 18, + "name": "Airtok", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x8217aef424b8ed7279d90ec29315a6295dc73d16.png", + "aggregators": ["Rubic", "Rango", "Sonarwatch"], + "occurrences": 3 + }, + "0x988a17d9ef5683dc125de54ae4cd217c4c26454f": { + "address": "0x988a17d9ef5683dc125de54ae4cd217c4c26454f", + "symbol": "APED", + "decimals": 18, + "name": "Aped", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x988a17d9ef5683dc125de54ae4cd217c4c26454f.png", + "aggregators": ["Rubic", "Rango", "Sonarwatch"], + "occurrences": 3 + }, + "0x1cbb39da9e815483ed44ec918d6f8dfb828f3a06": { + "address": "0x1cbb39da9e815483ed44ec918d6f8dfb828f3a06", + "symbol": "$TINYP", + "decimals": 18, + "name": "Tiny Panda", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x1cbb39da9e815483ed44ec918d6f8dfb828f3a06.png", + "aggregators": ["Rubic", "Rango", "Sonarwatch"], + "occurrences": 3 + }, + "0x80f45eacf6537498ecc660e4e4a2d2f99e195cf4": { + "address": "0x80f45eacf6537498ecc660e4e4a2d2f99e195cf4", + "symbol": "PEPE", + "decimals": 18, + "name": "Pepe on Base", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x80f45eacf6537498ecc660e4e4a2d2f99e195cf4.png", + "aggregators": ["Rubic", "Rango", "Sonarwatch"], + "occurrences": 3 + }, + "0xb4e1b230dd0476238fc64c99ff9d6ccdfdb2258d": { + "address": "0xb4e1b230dd0476238fc64c99ff9d6ccdfdb2258d", + "symbol": "FFM", + "decimals": 18, + "name": "Florence Finance Medici", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xb4e1b230dd0476238fc64c99ff9d6ccdfdb2258d.png", + "aggregators": ["Rubic", "Rango", "Sonarwatch"], + "occurrences": 3 + }, + "0x387627b2bceb9ba5b476f6597727a7acf47f5b6c": { + "address": "0x387627b2bceb9ba5b476f6597727a7acf47f5b6c", + "symbol": "YT", + "decimals": 18, + "name": "YapTrade", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x387627b2bceb9ba5b476f6597727a7acf47f5b6c.png", + "aggregators": ["Rubic", "Rango", "Sonarwatch"], + "occurrences": 3 + }, + "0xef0fd52e65ddcdc201e2055a94d2abff6ff10a7a": { + "address": "0xef0fd52e65ddcdc201e2055a94d2abff6ff10a7a", + "symbol": "WANDER", + "decimals": 18, + "name": "WANDER", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xef0fd52e65ddcdc201e2055a94d2abff6ff10a7a.png", + "aggregators": ["Rubic", "Rango", "Sonarwatch"], + "occurrences": 3 + }, + "0xd3c68968137317a57a9babeacc7707ec433548b4": { + "address": "0xd3c68968137317a57a9babeacc7707ec433548b4", + "symbol": "SOCIAL", + "decimals": 18, + "name": "Phavercoin", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xd3c68968137317a57a9babeacc7707ec433548b4.png", + "aggregators": ["Rubic", "Rango", "Sonarwatch"], + "occurrences": 3 + }, + "0xefb4898df7353af68aae3fa365a8fc5b40dc12d9": { + "address": "0xefb4898df7353af68aae3fa365a8fc5b40dc12d9", + "symbol": "JUNI", + "decimals": 18, + "name": "Just Juni by Virtuals", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xefb4898df7353af68aae3fa365a8fc5b40dc12d9.png", + "aggregators": ["Rubic", "Squid", "Rango"], + "occurrences": 3 + }, + "0x01aac2b594f7bdbec740f0f1aa22910ebb4b74ab": { + "address": "0x01aac2b594f7bdbec740f0f1aa22910ebb4b74ab", + "symbol": "UNIO", + "decimals": 18, + "name": "Unio Coin", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x01aac2b594f7bdbec740f0f1aa22910ebb4b74ab.png", + "aggregators": ["Rubic", "Rango", "Sonarwatch"], + "occurrences": 3 + }, + "0x8c9037d1ef5c6d1f6816278c7aaf5491d24cd527": { + "address": "0x8c9037d1ef5c6d1f6816278c7aaf5491d24cd527", + "symbol": "MOXIE", + "decimals": 18, + "name": "Moxie", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x8c9037d1ef5c6d1f6816278c7aaf5491d24cd527.png", + "aggregators": ["Rubic", "Rango", "Sonarwatch"], + "occurrences": 3 + }, + "0x0c90c756350fb803a7d5d9f9ee5ac29e77369973": { + "address": "0x0c90c756350fb803a7d5d9f9ee5ac29e77369973", + "symbol": "UBPS", + "decimals": 18, + "name": "United Base Postal", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x0c90c756350fb803a7d5d9f9ee5ac29e77369973.png", + "aggregators": ["Rubic", "Rango", "Sonarwatch"], + "occurrences": 3 + }, + "0x00096697dc24bd10423690126d91546a20ccb3f0": { + "address": "0x00096697dc24bd10423690126d91546a20ccb3f0", + "symbol": "VPT", + "decimals": 18, + "name": "Veritas", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x00096697dc24bd10423690126d91546a20ccb3f0.png", + "aggregators": ["Rubic", "Rango", "Sonarwatch"], + "occurrences": 3 + }, + "0x2af864fb54b55900cd58d19c7102d9e4fa8d84a3": { + "address": "0x2af864fb54b55900cd58d19c7102d9e4fa8d84a3", + "symbol": "GB", + "decimals": 18, + "name": "Grand Base", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x2af864fb54b55900cd58d19c7102d9e4fa8d84a3.png", + "aggregators": ["Rubic", "Rango", "Sonarwatch"], + "occurrences": 3 + }, + "0x3b9728bd65ca2c11a817ce39a6e91808cceef6fd": { + "address": "0x3b9728bd65ca2c11a817ce39a6e91808cceef6fd", + "symbol": "IHF", + "decimals": 18, + "name": "IHF Smart Debase Token", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x3b9728bd65ca2c11a817ce39a6e91808cceef6fd.png", + "aggregators": ["Rubic", "Rango", "Sonarwatch"], + "occurrences": 3 + }, + "0x0645bc5cdff2376089323ac20df4119e48e4bcc4": { + "address": "0x0645bc5cdff2376089323ac20df4119e48e4bcc4", + "symbol": "JOJO", + "decimals": 18, + "name": "JOJO", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x0645bc5cdff2376089323ac20df4119e48e4bcc4.png", + "aggregators": ["Rubic", "Rango", "Sonarwatch"], + "occurrences": 3 + }, + "0x2816a491dd0b7a88d84cbded842a618e59016888": { + "address": "0x2816a491dd0b7a88d84cbded842a618e59016888", + "symbol": "LONG", + "decimals": 18, + "name": "LONG", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x2816a491dd0b7a88d84cbded842a618e59016888.png", + "aggregators": ["Rubic", "Rango", "Sonarwatch"], + "occurrences": 3 + }, + "0xacd1caef47e4c47bafe8a51b3f4305fc38203b7a": { + "address": "0xacd1caef47e4c47bafe8a51b3f4305fc38203b7a", + "symbol": "LUNE", + "decimals": 18, + "name": "Luneko", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xacd1caef47e4c47bafe8a51b3f4305fc38203b7a.png", + "aggregators": ["Rubic", "Rango", "Sonarwatch"], + "occurrences": 3 + }, + "0x48c6740bcf807d6c47c864faeea15ed4da3910ab": { + "address": "0x48c6740bcf807d6c47c864faeea15ed4da3910ab", + "symbol": "$SPACE", + "decimals": 18, + "name": "nounspace", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x48c6740bcf807d6c47c864faeea15ed4da3910ab.png", + "aggregators": ["Rubic", "Rango", "Sonarwatch"], + "occurrences": 3 + }, + "0x5db4c680f66ade9e00ef6aad187419031bcc58a8": { + "address": "0x5db4c680f66ade9e00ef6aad187419031bcc58a8", + "symbol": "ROBOPEPE", + "decimals": 18, + "name": "RoboPepe", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x5db4c680f66ade9e00ef6aad187419031bcc58a8.png", + "aggregators": ["Rubic", "Rango", "Sonarwatch"], + "occurrences": 3 + }, + "0xf26d362a14399adabd5d2dfbbb876039529165d8": { + "address": "0xf26d362a14399adabd5d2dfbbb876039529165d8", + "symbol": "FOOL", + "decimals": 18, + "name": "fool", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xf26d362a14399adabd5d2dfbbb876039529165d8.png", + "aggregators": ["Rubic", "Rango", "Sonarwatch"], + "occurrences": 3 + }, + "0x639c0d019c257966c4907bd4e68e3f349bb58109": { + "address": "0x639c0d019c257966c4907bd4e68e3f349bb58109", + "symbol": "QUACK", + "decimals": 18, + "name": "Quack Token", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x639c0d019c257966c4907bd4e68e3f349bb58109.png", + "aggregators": ["Rubic", "Squid", "Rango"], + "occurrences": 3 + }, + "0xc227717ef4ae4d982e14789eb33ba942243c3fee": { + "address": "0xc227717ef4ae4d982e14789eb33ba942243c3fee", + "symbol": "MOZ", + "decimals": 18, + "name": "Mozaic", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xc227717ef4ae4d982e14789eb33ba942243c3fee.png", + "aggregators": ["Rubic", "Rango", "Sonarwatch"], + "occurrences": 3 + }, + "0x40e3eddf6d253bb734381a309437428f121c594b": { + "address": "0x40e3eddf6d253bb734381a309437428f121c594b", + "symbol": "LAD", + "decimals": 18, + "name": "Larva Lads", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x40e3eddf6d253bb734381a309437428f121c594b.png", + "aggregators": ["Rubic", "Rango", "Sonarwatch"], + "occurrences": 3 + }, + "0xc2106ca72996e49bbadcb836eec52b765977fd20": { + "address": "0xc2106ca72996e49bbadcb836eec52b765977fd20", + "symbol": "NFTE", + "decimals": 18, + "name": "NFTEarthOFT", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xc2106ca72996e49bbadcb836eec52b765977fd20.png", + "aggregators": ["Rubic", "Rango", "SushiSwap"], + "occurrences": 3 + }, + "0x633546a298e734700bdca888a87ab954159ec93c": { + "address": "0x633546a298e734700bdca888a87ab954159ec93c", + "symbol": "COPE", + "decimals": 9, + "name": "Cope", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x633546a298e734700bdca888a87ab954159ec93c.png", + "aggregators": ["Rubic", "Rango", "Sonarwatch"], + "occurrences": 3 + }, + "0x8011eef8fc855df1c4f421443f306e19818e60d3": { + "address": "0x8011eef8fc855df1c4f421443f306e19818e60d3", + "symbol": "DUH", + "decimals": 18, + "name": "Duh", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x8011eef8fc855df1c4f421443f306e19818e60d3.png", + "aggregators": ["Rubic", "Rango", "Sonarwatch"], + "occurrences": 3 + }, + "0x0a074378461fb7ed3300ea638c6cc38246db4434": { + "address": "0x0a074378461fb7ed3300ea638c6cc38246db4434", + "symbol": "EDE", + "decimals": 18, + "name": "El Dorado Exchange (Base)", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x0a074378461fb7ed3300ea638c6cc38246db4434.png", + "aggregators": ["Rubic", "Rango", "Sonarwatch"], + "occurrences": 3 + }, + "0x5d559ea7bb2dae4b694a079cb8328a2145fd32f6": { + "address": "0x5d559ea7bb2dae4b694a079cb8328a2145fd32f6", + "symbol": "OWO", + "decimals": 18, + "name": "SoMon", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x5d559ea7bb2dae4b694a079cb8328a2145fd32f6.png", + "aggregators": ["Rubic", "Rango", "Sonarwatch"], + "occurrences": 3 + }, + "0x4498cd8ba045e00673402353f5a4347562707e7d": { + "address": "0x4498cd8ba045e00673402353f5a4347562707e7d", + "symbol": "RDAT", + "decimals": 18, + "name": "r/DataDAO", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x4498cd8ba045e00673402353f5a4347562707e7d.png", + "aggregators": ["Rubic", "Rango", "Sonarwatch"], + "occurrences": 3 + }, + "0x3421cc14f0e3822cf3b73c3a4bec2a1023b8d9cf": { + "address": "0x3421cc14f0e3822cf3b73c3a4bec2a1023b8d9cf", + "symbol": "REBASE", + "decimals": 9, + "name": "Rebase", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x3421cc14f0e3822cf3b73c3a4bec2a1023b8d9cf.png", + "aggregators": ["Rubic", "Rango", "Sonarwatch"], + "occurrences": 3 + }, + "0x09579452bc3872727a5d105f342645792bb8a82b": { + "address": "0x09579452bc3872727a5d105f342645792bb8a82b", + "symbol": "VARK", + "decimals": 9, + "name": "Aardvark", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x09579452bc3872727a5d105f342645792bb8a82b.png", + "aggregators": ["Rubic", "Rango", "Sonarwatch"], + "occurrences": 3 + }, + "0x47e316d1951568b4fbc7a1bcd641c5624a756a05": { + "address": "0x47e316d1951568b4fbc7a1bcd641c5624a756a05", + "symbol": "WAGC", + "decimals": 18, + "name": "Wrapped AGC", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x47e316d1951568b4fbc7a1bcd641c5624a756a05.png", + "aggregators": ["Rubic", "Rango", "Sonarwatch"], + "occurrences": 3 + }, + "0x05fc76666676f3afa90504e2ebc820612287a82f": { + "address": "0x05fc76666676f3afa90504e2ebc820612287a82f", + "symbol": "MVRK", + "decimals": 6, + "name": "Mavryk Network", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x05fc76666676f3afa90504e2ebc820612287a82f.png", + "aggregators": ["Rubic", "Rango", "Sonarwatch"], + "occurrences": 3 + }, + "0xf8252c05ec4cb2fdf1e0398bae049d454ddba3ad": { + "address": "0xf8252c05ec4cb2fdf1e0398bae049d454ddba3ad", + "symbol": "JAM", + "decimals": 18, + "name": "JAM", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xf8252c05ec4cb2fdf1e0398bae049d454ddba3ad.png", + "aggregators": ["Rubic", "Rango", "Sonarwatch"], + "occurrences": 3 + }, + "0x8cecc2360906c812cd7353cd6b10b1dc13bbc777": { + "address": "0x8cecc2360906c812cd7353cd6b10b1dc13bbc777", + "symbol": "FX", + "decimals": 18, + "name": "Function X", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x8cecc2360906c812cd7353cd6b10b1dc13bbc777.png", + "aggregators": ["Rubic", "Rango", "Sonarwatch"], + "occurrences": 3 + }, + "0x137a61b3311e967b0d1e79d5546167c9dc9e6b5b": { + "address": "0x137a61b3311e967b0d1e79d5546167c9dc9e6b5b", + "symbol": "NSFW", + "decimals": 18, + "name": "Pleasure Coin", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x137a61b3311e967b0d1e79d5546167c9dc9e6b5b.png", + "aggregators": ["Rubic", "Rango", "SushiSwap"], + "occurrences": 3 + }, + "0x9bde70bad05b7d84dac03024dae15aace8c9cca2": { + "address": "0x9bde70bad05b7d84dac03024dae15aace8c9cca2", + "symbol": "LZSEILOR", + "decimals": 18, + "name": "Kryptonite", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x9bde70bad05b7d84dac03024dae15aace8c9cca2.png", + "aggregators": ["Rubic", "Squid", "Rango"], + "occurrences": 3 + }, + "0x37d6080ca82e42db3cf94a6fd07416cdd419a4a4": { + "address": "0x37d6080ca82e42db3cf94a6fd07416cdd419a4a4", + "symbol": "BOTDOG", + "decimals": 18, + "name": "Based Hotdog", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x37d6080ca82e42db3cf94a6fd07416cdd419a4a4.png", + "aggregators": ["Rubic", "Rango", "Sonarwatch"], + "occurrences": 3 + }, + "0xf83cde146ac35e99dd61b6448f7ad9a4534133cc": { + "address": "0xf83cde146ac35e99dd61b6448f7ad9a4534133cc", + "symbol": "EBERT", + "decimals": 18, + "name": "EBERT", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xf83cde146ac35e99dd61b6448f7ad9a4534133cc.png", + "aggregators": ["Rubic", "Rango", "Sonarwatch"], + "occurrences": 3 + }, + "0x4cfd8befdcd6bfc146fe214fa4b5bbe731a9c269": { + "address": "0x4cfd8befdcd6bfc146fe214fa4b5bbe731a9c269", + "symbol": "BITZ", + "decimals": 18, + "name": "MARBITZ", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x4cfd8befdcd6bfc146fe214fa4b5bbe731a9c269.png", + "aggregators": ["Rubic", "Rango", "Sonarwatch"], + "occurrences": 3 + }, + "0x0e0c9756a3290cd782cf4ab73ac24d25291c9564": { + "address": "0x0e0c9756a3290cd782cf4ab73ac24d25291c9564", + "symbol": "ANIME", + "decimals": 18, + "name": "Anime", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x0e0c9756a3290cd782cf4ab73ac24d25291c9564.png", + "aggregators": ["Rubic", "Rango", "Sonarwatch"], + "occurrences": 3 + }, + "0x52e0d3c27cc9e3607c1ca7914b9049be3d5e9c41": { + "address": "0x52e0d3c27cc9e3607c1ca7914b9049be3d5e9c41", + "symbol": "$BLU", + "decimals": 18, + "name": "Blu", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x52e0d3c27cc9e3607c1ca7914b9049be3d5e9c41.png", + "aggregators": ["Rubic", "Rango", "Sonarwatch"], + "occurrences": 3 + }, + "0x77184100237e46b06cd7649abf37435f5d5e678b": { + "address": "0x77184100237e46b06cd7649abf37435f5d5e678b", + "symbol": "SPR", + "decimals": 18, + "name": "SuperMeme", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x77184100237e46b06cd7649abf37435f5d5e678b.png", + "aggregators": ["Rubic", "Rango", "Sonarwatch"], + "occurrences": 3 + }, + "0xbdb0e1c40a76c5113a023d685b419b90b01e3d61": { + "address": "0xbdb0e1c40a76c5113a023d685b419b90b01e3d61", + "symbol": "AIVA", + "decimals": 18, + "name": "AI Voice Agents", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xbdb0e1c40a76c5113a023d685b419b90b01e3d61.png", + "aggregators": ["Rubic", "Rango", "Sonarwatch"], + "occurrences": 3 + }, + "0xd600e748c17ca237fcb5967fa13d688aff17be78": { + "address": "0xd600e748c17ca237fcb5967fa13d688aff17be78", + "symbol": "MVDA25", + "decimals": 18, + "name": "MarketVector Digital Assets 25 Index", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xd600e748c17ca237fcb5967fa13d688aff17be78.png", + "aggregators": ["Rubic", "Rango", "Sonarwatch"], + "occurrences": 3 + }, + "0x42e07fa3d31190731368ca2f88d12d80139dca42": { + "address": "0x42e07fa3d31190731368ca2f88d12d80139dca42", + "symbol": "INTOS", + "decimals": 18, + "name": "INT OS", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x42e07fa3d31190731368ca2f88d12d80139dca42.png", + "aggregators": ["Rubic", "Rango", "Sonarwatch"], + "occurrences": 3 + }, + "0xa19328fb05ce6fd204d16c2a2a98f7cf434c12f4": { + "address": "0xa19328fb05ce6fd204d16c2a2a98f7cf434c12f4", + "symbol": "L2VE", + "decimals": 18, + "name": "L2VE INU", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xa19328fb05ce6fd204d16c2a2a98f7cf434c12f4.png", + "aggregators": ["Rubic", "Rango", "Sonarwatch"], + "occurrences": 3 + }, + "0xe0f96f025ebb27950718ebd787b69c325cf045c0": { + "address": "0xe0f96f025ebb27950718ebd787b69c325cf045c0", + "symbol": "BANDIT", + "decimals": 18, + "name": "Bandit on Base", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xe0f96f025ebb27950718ebd787b69c325cf045c0.png", + "aggregators": ["Rubic", "Rango", "Sonarwatch"], + "occurrences": 3 + }, + "0x3d6ac59538e8b6c223f7ce9ce2fb2387d27cb299": { + "address": "0x3d6ac59538e8b6c223f7ce9ce2fb2387d27cb299", + "symbol": "BULLY", + "decimals": 18, + "name": "BASED BULLY", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x3d6ac59538e8b6c223f7ce9ce2fb2387d27cb299.png", + "aggregators": ["Rubic", "Rango", "Sonarwatch"], + "occurrences": 3 + }, + "0x90d81fc9817d00c1c01c7d8735d5a80cee1e341c": { + "address": "0x90d81fc9817d00c1c01c7d8735d5a80cee1e341c", + "symbol": "MTS", + "decimals": 18, + "name": "Metanopoly Tokenized Share", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x90d81fc9817d00c1c01c7d8735d5a80cee1e341c.png", + "aggregators": ["Rubic", "Rango", "Sonarwatch"], + "occurrences": 3 + }, + "0x26cf750abaf38af7109effdbdf79ba50d2ee09a1": { + "address": "0x26cf750abaf38af7109effdbdf79ba50d2ee09a1", + "symbol": "UCASH", + "decimals": 8, + "name": "U.CASH", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x26cf750abaf38af7109effdbdf79ba50d2ee09a1.png", + "aggregators": ["Rubic", "Rango", "Sonarwatch"], + "occurrences": 3 + }, + "0xba3b38581f96b04f75ca4ad51296fff3806d7626": { + "address": "0xba3b38581f96b04f75ca4ad51296fff3806d7626", + "symbol": "POTATO", + "decimals": 18, + "name": "Based Potato", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xba3b38581f96b04f75ca4ad51296fff3806d7626.png", + "aggregators": ["Rubic", "Rango", "Sonarwatch"], + "occurrences": 3 + }, + "0x102cd3e9e14810ce6f0765227e971432bce05d6c": { + "address": "0x102cd3e9e14810ce6f0765227e971432bce05d6c", + "symbol": "ZAI", + "decimals": 18, + "name": "ZaichXBT", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x102cd3e9e14810ce6f0765227e971432bce05d6c.png", + "aggregators": ["Rubic", "Rango", "Sonarwatch"], + "occurrences": 3 + }, + "0x544f87a5aa41fcd725ef7c78a37cd9c1c4ba1650": { + "address": "0x544f87a5aa41fcd725ef7c78a37cd9c1c4ba1650", + "symbol": "UBERA", + "decimals": 18, + "name": "Wrapped Berachain (Universal)", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x544f87a5aa41fcd725ef7c78a37cd9c1c4ba1650.png", + "aggregators": ["Rubic", "Rango", "Sonarwatch"], + "occurrences": 3 + }, + "0x42b08e7a9211482d3643a126a7df1895448d3509": { + "address": "0x42b08e7a9211482d3643a126a7df1895448d3509", + "symbol": "HENAI", + "decimals": 18, + "name": "HenjinAI", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x42b08e7a9211482d3643a126a7df1895448d3509.png", + "aggregators": ["Rubic", "Rango", "Sonarwatch"], + "occurrences": 3 + }, + "0x88e9822965e39882839098eef2e972e2dd9ce56d": { + "address": "0x88e9822965e39882839098eef2e972e2dd9ce56d", + "symbol": "GMMF", + "decimals": 18, + "name": "Gameme-Fi", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x88e9822965e39882839098eef2e972e2dd9ce56d.png", + "aggregators": ["Rubic", "Rango", "Sonarwatch"], + "occurrences": 3 + }, + "0x1234d66b6fbb900296ae2f57740b800fd8960927": { + "address": "0x1234d66b6fbb900296ae2f57740b800fd8960927", + "symbol": "DPAD", + "decimals": 18, + "name": "DegenPad", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x1234d66b6fbb900296ae2f57740b800fd8960927.png", + "aggregators": ["Rubic", "Rango", "Sonarwatch"], + "occurrences": 3 + }, + "0xfae89a7966d13195960459e6b483cacb9fe9cfcf": { + "address": "0xfae89a7966d13195960459e6b483cacb9fe9cfcf", + "symbol": "BMONEY", + "decimals": 18, + "name": "B Money AKA Brett", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xfae89a7966d13195960459e6b483cacb9fe9cfcf.png", + "aggregators": ["Rubic", "Rango", "Sonarwatch"], + "occurrences": 3 + }, + "0x85e90a5430af45776548adb82ee4cd9e33b08077": { + "address": "0x85e90a5430af45776548adb82ee4cd9e33b08077", + "symbol": "DINO", + "decimals": 18, + "name": "DINO", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x85e90a5430af45776548adb82ee4cd9e33b08077.png", + "aggregators": [ + "CoinGecko", + "LiFi", + "Socket", + "Rubic", + "Squid", + "Rango", + "Sonarwatch", + "SushiSwap" + ], + "occurrences": 8 + }, + "0xdbfefd2e8460a6ee4955a68582f85708baea60a3": { + "address": "0xdbfefd2e8460a6ee4955a68582f85708baea60a3", + "symbol": "SUPEROETHB", + "decimals": 18, + "name": "Super OETH", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xdbfefd2e8460a6ee4955a68582f85708baea60a3.png", + "aggregators": [ + "CoinGecko", + "1inch", + "LiFi", + "Rubic", + "Squid", + "Rango", + "Sonarwatch" + ], + "occurrences": 7 + }, + "0x04c0599ae5a44757c0af6f9ec3b93da8976c150a": { + "address": "0x04c0599ae5a44757c0af6f9ec3b93da8976c150a", + "symbol": "WEETH.BASE", + "decimals": 18, + "name": "ether.fi Bridged weETH (Base)", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x04c0599ae5a44757c0af6f9ec3b93da8976c150a.png", + "aggregators": [ + "CoinGecko", + "LiFi", + "Socket", + "Rubic", + "Squid", + "Rango", + "Sonarwatch" + ], + "occurrences": 7 + }, + "0x4e200fe2f3efb977d5fd9c430a41531fb04d97b8": { + "address": "0x4e200fe2f3efb977d5fd9c430a41531fb04d97b8", + "symbol": "ORDER", + "decimals": 18, + "name": "Orderly Network", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x4e200fe2f3efb977d5fd9c430a41531fb04d97b8.png", + "aggregators": [ + "CoinGecko", + "LiFi", + "Socket", + "Rubic", + "Squid", + "Rango", + "Sonarwatch" + ], + "occurrences": 7 + }, + "0xb166e8b140d35d9d8226e40c09f757bac5a4d87d": { + "address": "0xb166e8b140d35d9d8226e40c09f757bac5a4d87d", + "symbol": "NPC", + "decimals": 18, + "name": "Non-Playable Coin", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xb166e8b140d35d9d8226e40c09f757bac5a4d87d.png", + "aggregators": [ + "CoinGecko", + "LiFi", + "Rubic", + "Squid", + "Rango", + "Sonarwatch", + "SushiSwap" + ], + "occurrences": 7 + }, + "0xdfbea88c4842d30c26669602888d746d30f9d60d": { + "address": "0xdfbea88c4842d30c26669602888d746d30f9d60d", + "symbol": "CAW", + "decimals": 18, + "name": "crow with knife", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xdfbea88c4842d30c26669602888d746d30f9d60d.png", + "aggregators": [ + "CoinGecko", + "1inch", + "Socket", + "Rubic", + "Squid", + "Rango", + "Sonarwatch" + ], + "occurrences": 7 + }, + "0x61e030a56d33e8260fdd81f03b162a79fe3449cd": { + "address": "0x61e030a56d33e8260fdd81f03b162a79fe3449cd", + "symbol": "FLUID", + "decimals": 18, + "name": "Fluid", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x61e030a56d33e8260fdd81f03b162a79fe3449cd.png", + "aggregators": [ + "CoinGecko", + "LiFi", + "Socket", + "Rubic", + "Squid", + "Rango" + ], + "occurrences": 6 + }, + "0xe0cd4cacddcbf4f36e845407ce53e87717b6601d": { + "address": "0xe0cd4cacddcbf4f36e845407ce53e87717b6601d", + "symbol": "ICNT", + "decimals": 18, + "name": "Impossible Cloud Network Token", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xe0cd4cacddcbf4f36e845407ce53e87717b6601d.png", + "aggregators": [ + "CoinGecko", + "LiFi", + "Socket", + "Rubic", + "Squid", + "Rango" + ], + "occurrences": 6 + }, + "0x09be1692ca16e06f536f0038ff11d1da8524adb1": { + "address": "0x09be1692ca16e06f536f0038ff11d1da8524adb1", + "symbol": "TEL", + "decimals": 2, + "name": "Telcoin", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x09be1692ca16e06f536f0038ff11d1da8524adb1.png", + "aggregators": [ + "CoinGecko", + "LiFi", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 6 + }, + "0x815269d17c10f0f3df7249370e0c1b9efe781aa8": { + "address": "0x815269d17c10f0f3df7249370e0c1b9efe781aa8", + "symbol": "SANTA", + "decimals": 18, + "name": "SANTA by Virtuals", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x815269d17c10f0f3df7249370e0c1b9efe781aa8.png", + "aggregators": [ + "CoinGecko", + "LiFi", + "Socket", + "Rubic", + "Squid", + "Rango" + ], + "occurrences": 6 + }, + "0x4837b18a6d7af6159c8665505b90a2ed393255e0": { + "address": "0x4837b18a6d7af6159c8665505b90a2ed393255e0", + "symbol": "LYP", + "decimals": 18, + "name": "Lympid", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x4837b18a6d7af6159c8665505b90a2ed393255e0.png", + "aggregators": [ + "CoinGecko", + "1inch", + "LiFi", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 6 + }, + "0x164ffdae2fe3891714bc2968f1875ca4fa1079d0": { + "address": "0x164ffdae2fe3891714bc2968f1875ca4fa1079d0", + "symbol": "DEFI.SSI", + "decimals": 8, + "name": "DEFI.ssi", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x164ffdae2fe3891714bc2968f1875ca4fa1079d0.png", + "aggregators": [ + "CoinGecko", + "LiFi", + "Rubic", + "Squid", + "Rango", + "Sonarwatch" + ], + "occurrences": 6 + }, + "0xe3086852a4b125803c815a158249ae468a3254ca": { + "address": "0xe3086852a4b125803c815a158249ae468a3254ca", + "symbol": "MFER", + "decimals": 18, + "name": "mfercoin", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xe3086852a4b125803c815a158249ae468a3254ca.png", + "aggregators": [ + "CoinGecko", + "LiFi", + "Rubic", + "Squid", + "Rango", + "Sonarwatch" + ], + "occurrences": 6 + }, + "0xc4d44c155f95fd4e94600d191a4a01bb571df7df": { + "address": "0xc4d44c155f95fd4e94600d191a4a01bb571df7df", + "symbol": "GS", + "decimals": 18, + "name": "GammaSwap", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xc4d44c155f95fd4e94600d191a4a01bb571df7df.png", + "aggregators": [ + "CoinGecko", + "LiFi", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 6 + }, + "0xc43f3ae305a92043bd9b62ebd2fe14f7547ee485": { + "address": "0xc43f3ae305a92043bd9b62ebd2fe14f7547ee485", + "symbol": "CHEX", + "decimals": 18, + "name": "CHEX Token", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xc43f3ae305a92043bd9b62ebd2fe14f7547ee485.png", + "aggregators": [ + "CoinGecko", + "LiFi", + "Rubic", + "Squid", + "Rango", + "Sonarwatch" + ], + "occurrences": 6 + }, + "0x7431ada8a591c955a994a21710752ef9b882b8e3": { + "address": "0x7431ada8a591c955a994a21710752ef9b882b8e3", + "symbol": "MOR", + "decimals": 18, + "name": "Morpheus AI", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x7431ada8a591c955a994a21710752ef9b882b8e3.png", + "aggregators": [ + "CoinGecko", + "LiFi", + "Socket", + "Rubic", + "Squid", + "Rango" + ], + "occurrences": 6 + }, + "0xd4a0e0b9149bcee3c920d2e00b5de09138fd8bb7": { + "address": "0xd4a0e0b9149bcee3c920d2e00b5de09138fd8bb7", + "symbol": "AWETH", + "decimals": 18, + "name": "Aave v3 WETH", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xd4a0e0b9149bcee3c920d2e00b5de09138fd8bb7.png", + "aggregators": [ + "CoinGecko", + "1inch", + "LiFi", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 6 + }, + "0xc26c9099bd3789107888c35bb41178079b282561": { + "address": "0xc26c9099bd3789107888c35bb41178079b282561", + "symbol": "SOLVBTC.BBN", + "decimals": 18, + "name": "Solv Protocol SolvBTC.BBN", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xc26c9099bd3789107888c35bb41178079b282561.png", + "aggregators": [ + "CoinGecko", + "LiFi", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 6 + }, + "0x83db73ef5192de4b6a4c92bd0141ba1a0dc87c65": { + "address": "0x83db73ef5192de4b6a4c92bd0141ba1a0dc87c65", + "symbol": "CUSDO", + "decimals": 18, + "name": "Compounding OpenDollar", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x83db73ef5192de4b6a4c92bd0141ba1a0dc87c65.png", + "aggregators": [ + "CoinGecko", + "LiFi", + "Rubic", + "Squid", + "Rango", + "Sonarwatch" + ], + "occurrences": 6 + }, + "0x60d01ec2d5e98ac51c8b4cf84dfcce98d527c747": { + "address": "0x60d01ec2d5e98ac51c8b4cf84dfcce98d527c747", + "symbol": "IZI", + "decimals": 18, + "name": "iZUMi Finance", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x60d01ec2d5e98ac51c8b4cf84dfcce98d527c747.png", + "aggregators": [ + "CoinGecko", + "LiFi", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 6 + }, + "0x624e2e7fdc8903165f64891672267ab0fcb98831": { + "address": "0x624e2e7fdc8903165f64891672267ab0fcb98831", + "symbol": "SOSO", + "decimals": 18, + "name": "SoSoValue", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x624e2e7fdc8903165f64891672267ab0fcb98831.png", + "aggregators": [ + "CoinGecko", + "LiFi", + "Socket", + "Rubic", + "Squid", + "Rango" + ], + "occurrences": 6 + }, + "0x0a1d576f3efef75b330424287a95a366e8281d54": { + "address": "0x0a1d576f3efef75b330424287a95a366e8281d54", + "symbol": "ABASUSDBC", + "decimals": 6, + "name": "Aave Base USDbC", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x0a1d576f3efef75b330424287a95a366e8281d54.png", + "aggregators": ["Metamask", "LiFi", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 5 + }, + "0xc1256ae5ff1cf2719d4937adb3bbccab2e00a2ca": { + "address": "0xc1256ae5ff1cf2719d4937adb3bbccab2e00a2ca", + "symbol": "MWUSDC", + "decimals": 18, + "name": "Moonwell Flagship USDC (Morpho Vault)", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xc1256ae5ff1cf2719d4937adb3bbccab2e00a2ca.png", + "aggregators": [ + "CoinGecko", + "LiFi", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x0d91ebb16291873a0c67158f578ec249f4321b49": { + "address": "0x0d91ebb16291873a0c67158f578ec249f4321b49", + "symbol": "AIV", + "decimals": 18, + "name": "AIVeronica by Virtuals", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x0d91ebb16291873a0c67158f578ec249f4321b49.png", + "aggregators": [ + "CoinGecko", + "Rubic", + "Squid", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x645c7aa841087e2e7f741c749ab27422ff5bba8e": { + "address": "0x645c7aa841087e2e7f741c749ab27422ff5bba8e", + "symbol": "IONA", + "decimals": 18, + "name": "Iona by Virtuals", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x645c7aa841087e2e7f741c749ab27422ff5bba8e.png", + "aggregators": [ + "CoinGecko", + "Rubic", + "Squid", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x3054e8f8fba3055a42e5f5228a2a4e2ab1326933": { + "address": "0x3054e8f8fba3055a42e5f5228a2a4e2ab1326933", + "symbol": "ZUZALU", + "decimals": 18, + "name": "zuzalu", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x3054e8f8fba3055a42e5f5228a2a4e2ab1326933.png", + "aggregators": [ + "CoinGecko", + "Rubic", + "Squid", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0xfb42da273158b0f642f59f2ba7cc1d5457481677": { + "address": "0xfb42da273158b0f642f59f2ba7cc1d5457481677", + "symbol": "LINGO", + "decimals": 18, + "name": "Lingo", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xfb42da273158b0f642f59f2ba7cc1d5457481677.png", + "aggregators": [ + "CoinGecko", + "LiFi", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0xba5b9b2d2d06a9021eb3190ea5fb0e02160839a4": { + "address": "0xba5b9b2d2d06a9021eb3190ea5fb0e02160839a4", + "symbol": "SENDIT", + "decimals": 18, + "name": "Sendit", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xba5b9b2d2d06a9021eb3190ea5fb0e02160839a4.png", + "aggregators": [ + "CoinGecko", + "Rubic", + "Rango", + "Sonarwatch", + "SushiSwap" + ], + "occurrences": 5 + }, + "0xbb819d845b573b5d7c538f5b85057160cfb5f313": { + "address": "0xbb819d845b573b5d7c538f5b85057160cfb5f313", + "symbol": "MEUSD", + "decimals": 18, + "name": "Morpho eUSD", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xbb819d845b573b5d7c538f5b85057160cfb5f313.png", + "aggregators": [ + "CoinGecko", + "LiFi", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x9a86980d3625b4a6e69d8a4606d51cbc019e2002": { + "address": "0x9a86980d3625b4a6e69d8a4606d51cbc019e2002", + "symbol": "FOMO", + "decimals": 18, + "name": "FOMO BULL CLUB", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x9a86980d3625b4a6e69d8a4606d51cbc019e2002.png", + "aggregators": [ + "CoinGecko", + "TrustWallet", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0xb7890cee6cf4792cdcc13489d36d9d42726ab863": { + "address": "0xb7890cee6cf4792cdcc13489d36d9d42726ab863", + "symbol": "UUSDC", + "decimals": 18, + "name": "Universal USDC", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xb7890cee6cf4792cdcc13489d36d9d42726ab863.png", + "aggregators": [ + "CoinGecko", + "LiFi", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0xca72827a3d211cfd8f6b00ac98824872b72cab49": { + "address": "0xca72827a3d211cfd8f6b00ac98824872b72cab49", + "symbol": "CGUSD", + "decimals": 6, + "name": "Cygnus Finance Global USD", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xca72827a3d211cfd8f6b00ac98824872b72cab49.png", + "aggregators": [ + "CoinGecko", + "LiFi", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x7c3af051bfa356b8eaee35c273a21ad9223ee994": { + "address": "0x7c3af051bfa356b8eaee35c273a21ad9223ee994", + "symbol": "J3FF", + "decimals": 18, + "name": "J3FF by Virtuals", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x7c3af051bfa356b8eaee35c273a21ad9223ee994.png", + "aggregators": [ + "CoinGecko", + "Rubic", + "Squid", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x8bfac1b375bf2894d6f12fb2eb48b1c1a7916789": { + "address": "0x8bfac1b375bf2894d6f12fb2eb48b1c1a7916789", + "symbol": "MEY", + "decimals": 18, + "name": "Mey Network", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x8bfac1b375bf2894d6f12fb2eb48b1c1a7916789.png", + "aggregators": [ + "CoinGecko", + "LiFi", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x0f1a9f3b8b971ac72a2d362cf2858f21fb799601": { + "address": "0x0f1a9f3b8b971ac72a2d362cf2858f21fb799601", + "symbol": "SUISS", + "decimals": 18, + "name": "SUISSMA AI by Virtuals", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x0f1a9f3b8b971ac72a2d362cf2858f21fb799601.png", + "aggregators": [ + "CoinGecko", + "Rubic", + "Squid", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x4dd9077269dd08899f2a9e73507125962b5bc87f": { + "address": "0x4dd9077269dd08899f2a9e73507125962b5bc87f", + "symbol": "CRASH", + "decimals": 18, + "name": "Crash On Base", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x4dd9077269dd08899f2a9e73507125962b5bc87f.png", + "aggregators": [ + "CoinGecko", + "Rubic", + "Squid", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x8c3a6b12332a6354805eb4b72ef619aedd22bcdd": { + "address": "0x8c3a6b12332a6354805eb4b72ef619aedd22bcdd", + "symbol": "MDEGEN", + "decimals": 18, + "name": "Morpho Degen", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x8c3a6b12332a6354805eb4b72ef619aedd22bcdd.png", + "aggregators": [ + "CoinGecko", + "LiFi", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0xdd3acdbdc7b358df453a6cb6bca56c92aa5743aa": { + "address": "0xdd3acdbdc7b358df453a6cb6bca56c92aa5743aa", + "symbol": "MEME.SSI", + "decimals": 8, + "name": "MEME.ssi", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xdd3acdbdc7b358df453a6cb6bca56c92aa5743aa.png", + "aggregators": [ + "CoinGecko", + "Rubic", + "Squid", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x05f1279957d62fc675399df1088f9c11c64c2b19": { + "address": "0x05f1279957d62fc675399df1088f9c11c64c2b19", + "symbol": "RIDDLE", + "decimals": 18, + "name": "Riddle by Virtuals", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x05f1279957d62fc675399df1088f9c11c64c2b19.png", + "aggregators": [ + "CoinGecko", + "Rubic", + "Squid", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x698b49063c14d2753d23064ff891a876cffa6fb5": { + "address": "0x698b49063c14d2753d23064ff891a876cffa6fb5", + "symbol": "NIKITA", + "decimals": 18, + "name": "NIKITA by Virtuals", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x698b49063c14d2753d23064ff891a876cffa6fb5.png", + "aggregators": [ + "CoinGecko", + "Rubic", + "Squid", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0xa2cac0023a4797b4729db94783405189a4203afc": { + "address": "0xa2cac0023a4797b4729db94783405189a4203afc", + "symbol": "RE7WETH", + "decimals": 18, + "name": "Re7 WETH", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xa2cac0023a4797b4729db94783405189a4203afc.png", + "aggregators": [ + "CoinGecko", + "LiFi", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x546d239032b24eceee0cb05c92fc39090846adc7": { + "address": "0x546d239032b24eceee0cb05c92fc39090846adc7", + "symbol": "SEED", + "decimals": 18, + "name": "SEED", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x546d239032b24eceee0cb05c92fc39090846adc7.png", + "aggregators": [ + "CoinGecko", + "Rubic", + "Squid", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x5fc190dee34cd5202cc571ec5c8efd60a02bd06d": { + "address": "0x5fc190dee34cd5202cc571ec5c8efd60a02bd06d", + "symbol": "YOYO", + "decimals": 18, + "name": "YoYo", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x5fc190dee34cd5202cc571ec5c8efd60a02bd06d.png", + "aggregators": [ + "CoinGecko", + "Rubic", + "Squid", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0xdbe125089d0752ef458c0685436ace93a7f1f8ca": { + "address": "0xdbe125089d0752ef458c0685436ace93a7f1f8ca", + "symbol": "AQLA", + "decimals": 18, + "name": "Aqualibre", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xdbe125089d0752ef458c0685436ace93a7f1f8ca.png", + "aggregators": [ + "CoinGecko", + "LiFi", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0xfea9dcdc9e23a9068bf557ad5b186675c61d33ea": { + "address": "0xfea9dcdc9e23a9068bf557ad5b186675c61d33ea", + "symbol": "BSHIB", + "decimals": 18, + "name": "Based Shiba Inu", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xfea9dcdc9e23a9068bf557ad5b186675c61d33ea.png", + "aggregators": [ + "CoinGecko", + "Rubic", + "Rango", + "Sonarwatch", + "SushiSwap" + ], + "occurrences": 5 + }, + "0xd5b70ed3f2ba01bfaaa3beb09e31fe11f833b85f": { + "address": "0xd5b70ed3f2ba01bfaaa3beb09e31fe11f833b85f", + "symbol": "BBB", + "decimals": 18, + "name": "Based Baby", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xd5b70ed3f2ba01bfaaa3beb09e31fe11f833b85f.png", + "aggregators": [ + "CoinGecko", + "Rubic", + "Squid", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x80d9964feb4a507dd697b4437fc5b25b618ce446": { + "address": "0x80d9964feb4a507dd697b4437fc5b25b618ce446", + "symbol": "PYTHETH", + "decimals": 18, + "name": "Pyth ETH", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x80d9964feb4a507dd697b4437fc5b25b618ce446.png", + "aggregators": [ + "CoinGecko", + "LiFi", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0xcf3d55c10db69f28fd1a75bd73f3d8a2d9c595ad": { + "address": "0xcf3d55c10db69f28fd1a75bd73f3d8a2d9c595ad", + "symbol": "ACBETH", + "decimals": 18, + "name": "Aave v3 cbETH", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xcf3d55c10db69f28fd1a75bd73f3d8a2d9c595ad.png", + "aggregators": [ + "CoinGecko", + "LiFi", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x710eec215b3bb653d42fc6e70e0531ea13f51a7a": { + "address": "0x710eec215b3bb653d42fc6e70e0531ea13f51a7a", + "symbol": "KEIRA", + "decimals": 18, + "name": "Keira", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x710eec215b3bb653d42fc6e70e0531ea13f51a7a.png", + "aggregators": [ + "CoinGecko", + "Rubic", + "Squid", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x9e6a46f294bb67c20f1d1e7afb0bbef614403b55": { + "address": "0x9e6a46f294bb67c20f1d1e7afb0bbef614403b55", + "symbol": "MAG7.SSI", + "decimals": 8, + "name": "MAG7.ssi", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x9e6a46f294bb67c20f1d1e7afb0bbef614403b55.png", + "aggregators": [ + "CoinGecko", + "LiFi", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x8a9430e92153c026092544444cbb38077e6688d1": { + "address": "0x8a9430e92153c026092544444cbb38077e6688d1", + "symbol": "KEPT", + "decimals": 18, + "name": "KeptChain", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x8a9430e92153c026092544444cbb38077e6688d1.png", + "aggregators": [ + "CoinGecko", + "Rubic", + "Squid", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x22dc834c3ff3e45f484bf24b9b07b851b981900f": { + "address": "0x22dc834c3ff3e45f484bf24b9b07b851b981900f", + "symbol": "SMUDCAT", + "decimals": 18, + "name": "Smudge Cat", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x22dc834c3ff3e45f484bf24b9b07b851b981900f.png", + "aggregators": [ + "CoinGecko", + "Rubic", + "Rango", + "Sonarwatch", + "SushiSwap" + ], + "occurrences": 5 + }, + "0x06a63c498ef95ad1fa4fff841955e512b4b2198a": { + "address": "0x06a63c498ef95ad1fa4fff841955e512b4b2198a", + "symbol": "GLUTEU", + "decimals": 18, + "name": "Gluteus Maximus by Virtuals", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x06a63c498ef95ad1fa4fff841955e512b4b2198a.png", + "aggregators": [ + "CoinGecko", + "Rubic", + "Squid", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0xe8e55a847bb446d967ef92f4580162fb8f2d3f38": { + "address": "0xe8e55a847bb446d967ef92f4580162fb8f2d3f38", + "symbol": "BROGE", + "decimals": 18, + "name": "Broge", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xe8e55a847bb446d967ef92f4580162fb8f2d3f38.png", + "aggregators": [ + "CoinGecko", + "Rubic", + "Squid", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x295243647f3efe3bea315d548dcc3d25864ba265": { + "address": "0x295243647f3efe3bea315d548dcc3d25864ba265", + "symbol": "TOCHI", + "decimals": 18, + "name": "Tochi Base", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x295243647f3efe3bea315d548dcc3d25864ba265.png", + "aggregators": [ + "CoinGecko", + "Rubic", + "Squid", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0xdcaa5e062b2be18e52ea6ed7ba232538621ddc10": { + "address": "0xdcaa5e062b2be18e52ea6ed7ba232538621ddc10", + "symbol": "AURA", + "decimals": 18, + "name": "Aurra", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xdcaa5e062b2be18e52ea6ed7ba232538621ddc10.png", + "aggregators": ["CoinGecko", "LiFi", "Socket", "Rubic", "Squid"], + "occurrences": 5 + }, + "0x3cf255a7a03d74b6f9d58456cbedbc0705626354": { + "address": "0x3cf255a7a03d74b6f9d58456cbedbc0705626354", + "symbol": "NEUY", + "decimals": 18, + "name": "NEUY", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x3cf255a7a03d74b6f9d58456cbedbc0705626354.png", + "aggregators": [ + "CoinGecko", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x2192607c3cba9ec3d490206d10d831e68e5f3c97": { + "address": "0x2192607c3cba9ec3d490206d10d831e68e5f3c97", + "symbol": "BOSON", + "decimals": 18, + "name": "BOSON", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x2192607c3cba9ec3d490206d10d831e68e5f3c97.png", + "aggregators": ["CoinGecko", "LiFi", "Socket", "Rubic", "Rango"], + "occurrences": 5 + }, + "0x8bf591eae535f93a242d5a954d3cde648b48a5a8": { + "address": "0x8bf591eae535f93a242d5a954d3cde648b48a5a8", + "symbol": "SUUSD", + "decimals": 18, + "name": "Sumer.Money suUSD", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x8bf591eae535f93a242d5a954d3cde648b48a5a8.png", + "aggregators": [ + "CoinGecko", + "LiFi", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0xd722e55c1d9d9fa0021a5215cbb904b92b3dc5d4": { + "address": "0xd722e55c1d9d9fa0021a5215cbb904b92b3dc5d4", + "symbol": "RDNT", + "decimals": 17, + "name": "Radiant Capital", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xd722e55c1d9d9fa0021a5215cbb904b92b3dc5d4.png", + "aggregators": [ + "CoinGecko", + "LiFi", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0xebb7873213c8d1d9913d8ea39aa12d74cb107995": { + "address": "0xebb7873213c8d1d9913d8ea39aa12d74cb107995", + "symbol": "XVS", + "decimals": 18, + "name": "Venus", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xebb7873213c8d1d9913d8ea39aa12d74cb107995.png", + "aggregators": [ + "CoinGecko", + "LiFi", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x764a726d9ced0433a8d7643335919deb03a9a935": { + "address": "0x764a726d9ced0433a8d7643335919deb03a9a935", + "symbol": "POKT", + "decimals": 6, + "name": "Pocket Network", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x764a726d9ced0433a8d7643335919deb03a9a935.png", + "aggregators": [ + "CoinGecko", + "LiFi", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x31dba3c96481fde3cd81c2aaf51f2d8bf618c742": { + "address": "0x31dba3c96481fde3cd81c2aaf51f2d8bf618c742", + "symbol": "SOPH", + "decimals": 18, + "name": "SOPH", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x31dba3c96481fde3cd81c2aaf51f2d8bf618c742.png", + "aggregators": ["CoinGecko", "LiFi", "Socket", "Rubic", "Rango"], + "occurrences": 5 + }, + "0xdd629e5241cbc5919847783e6c96b2de4754e438": { + "address": "0xdd629e5241cbc5919847783e6c96b2de4754e438", + "symbol": "MTBILL", + "decimals": 18, + "name": "Midas mTBILL", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xdd629e5241cbc5919847783e6c96b2de4754e438.png", + "aggregators": [ + "CoinGecko", + "LiFi", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0xa617c0c739845b2941bd8edd05c9f993ecc97c18": { + "address": "0xa617c0c739845b2941bd8edd05c9f993ecc97c18", + "symbol": "GMR", + "decimals": 18, + "name": "GAMER", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xa617c0c739845b2941bd8edd05c9f993ecc97c18.png", + "aggregators": [ + "CoinGecko", + "Rubic", + "Squid", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0xbfd5206962267c7b4b4a8b3d76ac2e1b2a5c4d5e": { + "address": "0xbfd5206962267c7b4b4a8b3d76ac2e1b2a5c4d5e", + "symbol": "OSAK", + "decimals": 18, + "name": "Osaka Protocol", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xbfd5206962267c7b4b4a8b3d76ac2e1b2a5c4d5e.png", + "aggregators": [ + "CoinGecko", + "Rubic", + "Rango", + "Sonarwatch", + "SushiSwap" + ], + "occurrences": 5 + }, + "0xc0fbc4967259786c743361a5885ef49380473dcf": { + "address": "0xc0fbc4967259786c743361a5885ef49380473dcf", + "symbol": "ALEPH", + "decimals": 18, + "name": "Aleph.im", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xc0fbc4967259786c743361a5885ef49380473dcf.png", + "aggregators": [ + "CoinGecko", + "LiFi", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0xbbcb0356bb9e6b3faa5cbf9e5f36185d53403ac9": { + "address": "0xbbcb0356bb9e6b3faa5cbf9e5f36185d53403ac9", + "symbol": "BCOIN", + "decimals": 18, + "name": "Backed Coinbase Global", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xbbcb0356bb9e6b3faa5cbf9e5f36185d53403ac9.png", + "aggregators": [ + "CoinGecko", + "LiFi", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0xd2012fc1b913ce50732ebcaa7e601fe37ac728c6": { + "address": "0xd2012fc1b913ce50732ebcaa7e601fe37ac728c6", + "symbol": "STONE", + "decimals": 18, + "name": "StakeStone ETH", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xd2012fc1b913ce50732ebcaa7e601fe37ac728c6.png", + "aggregators": [ + "CoinGecko", + "LiFi", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x949185d3be66775ea648f4a306740ea9eff9c567": { + "address": "0x949185d3be66775ea648f4a306740ea9eff9c567", + "symbol": "YEL", + "decimals": 18, + "name": "Yel.Finance", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x949185d3be66775ea648f4a306740ea9eff9c567.png", + "aggregators": [ + "CoinGecko", + "LiFi", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x1f1aa4d239002bb818536c95e9b762a1fc8484c1": { + "address": "0x1f1aa4d239002bb818536c95e9b762a1fc8484c1", + "symbol": "RAIN", + "decimals": 18, + "name": "Precipitate.ai", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x1f1aa4d239002bb818536c95e9b762a1fc8484c1.png", + "aggregators": [ + "CoinGecko", + "LiFi", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0xac86f3556cbd2b4d800d17adc3a266b500fcb9f5": { + "address": "0xac86f3556cbd2b4d800d17adc3a266b500fcb9f5", + "symbol": "DIP", + "decimals": 18, + "name": "Etherisc DIP", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xac86f3556cbd2b4d800d17adc3a266b500fcb9f5.png", + "aggregators": [ + "CoinGecko", + "LiFi", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0xb757977bc882a14db86b048f2abb2f2a14d33184": { + "address": "0xb757977bc882a14db86b048f2abb2f2a14d33184", + "symbol": "DOGL", + "decimals": 18, + "name": "DogLibre", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xb757977bc882a14db86b048f2abb2f2a14d33184.png", + "aggregators": [ + "CoinGecko", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x8923947eafaf4ad68f1f0c9eb5463ec876d79058": { + "address": "0x8923947eafaf4ad68f1f0c9eb5463ec876d79058", + "symbol": "MERC", + "decimals": 18, + "name": "Liquid Mercury", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x8923947eafaf4ad68f1f0c9eb5463ec876d79058.png", + "aggregators": [ + "CoinGecko", + "LiFi", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x9e81f6495ba29a6b4d48bddd042c0598fa8abc9f": { + "address": "0x9e81f6495ba29a6b4d48bddd042c0598fa8abc9f", + "symbol": "MATH", + "decimals": 18, + "name": "MATH", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x9e81f6495ba29a6b4d48bddd042c0598fa8abc9f.png", + "aggregators": [ + "CoinGecko", + "LiFi", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0xd3fdcb837dafdb7c9c3ebd48fe22a53f6dd3d7d7": { + "address": "0xd3fdcb837dafdb7c9c3ebd48fe22a53f6dd3d7d7", + "symbol": "QI", + "decimals": 18, + "name": "Qi Dao", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xd3fdcb837dafdb7c9c3ebd48fe22a53f6dd3d7d7.png", + "aggregators": [ + "CoinGecko", + "LiFi", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x614577036f0a024dbc1c88ba616b394dd65d105a": { + "address": "0x614577036f0a024dbc1c88ba616b394dd65d105a", + "symbol": "GNUS", + "decimals": 18, + "name": "GENIUS AI", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x614577036f0a024dbc1c88ba616b394dd65d105a.png", + "aggregators": ["CoinGecko", "LiFi", "Rubic", "Squid", "Rango"], + "occurrences": 5 + }, + "0x4da78059d97f155e18b37765e2e042270f4e0fc4": { + "address": "0x4da78059d97f155e18b37765e2e042270f4e0fc4", + "symbol": "WUF", + "decimals": 4, + "name": "WUFFI", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x4da78059d97f155e18b37765e2e042270f4e0fc4.png", + "aggregators": [ + "CoinGecko", + "Rubic", + "Squid", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x1c2757c1fef1038428b5bef062495ce94bbe92b2": { + "address": "0x1c2757c1fef1038428b5bef062495ce94bbe92b2", + "symbol": "MBASIS", + "decimals": 18, + "name": "Midas mBASIS", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x1c2757c1fef1038428b5bef062495ce94bbe92b2.png", + "aggregators": [ + "CoinGecko", + "LiFi", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0xf3df0a31ec5ea438150987805e841f960b9471b6": { + "address": "0xf3df0a31ec5ea438150987805e841f960b9471b6", + "symbol": "WOO", + "decimals": 18, + "name": "WOO", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xf3df0a31ec5ea438150987805e841f960b9471b6.png", + "aggregators": [ + "CoinGecko", + "LiFi", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0xc48e605c7b722a57277e087a6170b9e227e5ac0a": { + "address": "0xc48e605c7b722a57277e087a6170b9e227e5ac0a", + "symbol": "OMNI", + "decimals": 18, + "name": "OmniCat", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xc48e605c7b722a57277e087a6170b9e227e5ac0a.png", + "aggregators": [ + "CoinGecko", + "Rubic", + "Rango", + "Sonarwatch", + "SushiSwap" + ], + "occurrences": 5 + }, + "0x38f9bf9dce51833ec7f03c9dc218197999999999": { + "address": "0x38f9bf9dce51833ec7f03c9dc218197999999999", + "symbol": "NYA", + "decimals": 18, + "name": "Nya", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x38f9bf9dce51833ec7f03c9dc218197999999999.png", + "aggregators": [ + "CoinGecko", + "Rubic", + "Squid", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x554bba833518793056cf105e66abea330672c0de": { + "address": "0x554bba833518793056cf105e66abea330672c0de", + "symbol": "MAHA", + "decimals": 18, + "name": "Maha", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x554bba833518793056cf105e66abea330672c0de.png", + "aggregators": ["LiFi", "Socket", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 5 + }, + "0x41b94c5867f7f6217c9a30520cb3e793b1ee1b97": { + "address": "0x41b94c5867f7f6217c9a30520cb3e793b1ee1b97", + "symbol": "AXLTIA", + "decimals": 6, + "name": "Axelar Wrapped TIA", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x41b94c5867f7f6217c9a30520cb3e793b1ee1b97.png", + "aggregators": ["LiFi", "Socket", "Rubic", "Squid", "Rango"], + "occurrences": 5 + }, + "0xecc68d0451e20292406967fe7c04280e5238ac7d": { + "address": "0xecc68d0451e20292406967fe7c04280e5238ac7d", + "symbol": "AXLFRXETH", + "decimals": 18, + "name": "Axelar Bridged Frax Ether", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xecc68d0451e20292406967fe7c04280e5238ac7d.png", + "aggregators": ["LiFi", "Rubic", "Squid", "Rango", "Sonarwatch"], + "occurrences": 5 + }, + "0x122a3f185655847980639e8edf0f0f66cd91c5fe": { + "address": "0x122a3f185655847980639e8edf0f0f66cd91c5fe", + "symbol": "FELLA", + "decimals": 18, + "name": "FELLA", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x122a3f185655847980639e8edf0f0f66cd91c5fe.png", + "aggregators": [ + "Rubic", + "Squid", + "Rango", + "Sonarwatch", + "SushiSwap" + ], + "occurrences": 5 + }, + "0x0fa70e156cd3b03ac4080bfe55bd8ab50f5bcb98": { + "address": "0x0fa70e156cd3b03ac4080bfe55bd8ab50f5bcb98", + "symbol": "YOU", + "decimals": 18, + "name": "Youcoin", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x0fa70e156cd3b03ac4080bfe55bd8ab50f5bcb98.png", + "aggregators": [ + "Rubic", + "Squid", + "Rango", + "Sonarwatch", + "SushiSwap" + ], + "occurrences": 5 + }, + "0xae2bddbcc932c2d2cf286bad0028c6f5074c77b5": { + "address": "0xae2bddbcc932c2d2cf286bad0028c6f5074c77b5", + "symbol": "FAH", + "decimals": 18, + "name": "Falcons", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xae2bddbcc932c2d2cf286bad0028c6f5074c77b5.png", + "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0x599f07567656e6961e20fa6a90685d393808c192": { + "address": "0x599f07567656e6961e20fa6a90685d393808c192", + "symbol": "D.O.G.E", + "decimals": 18, + "name": "Department Of Government Efficiency", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x599f07567656e6961e20fa6a90685d393808c192.png", + "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0xf9b738c2e7adc4f299c57afd0890b925a5efea6f": { + "address": "0xf9b738c2e7adc4f299c57afd0890b925a5efea6f", + "symbol": "MINKY", + "decimals": 18, + "name": "MINKY", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xf9b738c2e7adc4f299c57afd0890b925a5efea6f.png", + "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0xc890eb927871660c7259f0dcaaf3d8a7ce5fa8c1": { + "address": "0xc890eb927871660c7259f0dcaaf3d8a7ce5fa8c1", + "symbol": "GMB", + "decimals": 18, + "name": "GMBase", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xc890eb927871660c7259f0dcaaf3d8a7ce5fa8c1.png", + "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0xff9c8aad2629d1be9833fd162a87ab7ce1d68fdc": { + "address": "0xff9c8aad2629d1be9833fd162a87ab7ce1d68fdc", + "symbol": "KRETT", + "decimals": 9, + "name": "Brett Killer", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xff9c8aad2629d1be9833fd162a87ab7ce1d68fdc.png", + "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0x55ff51da774b8ce0ed1abaed1cb76236bc6b2f16": { + "address": "0x55ff51da774b8ce0ed1abaed1cb76236bc6b2f16", + "symbol": "ADM", + "decimals": 18, + "name": "Voice of the Gods by Virtuals", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x55ff51da774b8ce0ed1abaed1cb76236bc6b2f16.png", + "aggregators": ["CoinGecko", "Rubic", "Squid", "Rango"], + "occurrences": 4 + }, + "0x142592f9e9a9cdea6c1167ffceae0fcfb3e7ea97": { + "address": "0x142592f9e9a9cdea6c1167ffceae0fcfb3e7ea97", + "symbol": "BCOR", + "decimals": 18, + "name": "BlueCore", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x142592f9e9a9cdea6c1167ffceae0fcfb3e7ea97.png", + "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0xe3cf8dbcbdc9b220ddead0bd6342e245daff934d": { + "address": "0xe3cf8dbcbdc9b220ddead0bd6342e245daff934d", + "symbol": "PIGGY", + "decimals": 18, + "name": "Piggy", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xe3cf8dbcbdc9b220ddead0bd6342e245daff934d.png", + "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0x1d4731111bd2a50ab3dd5178574e6f3698270ffc": { + "address": "0x1d4731111bd2a50ab3dd5178574e6f3698270ffc", + "symbol": "DWA", + "decimals": 18, + "name": "Degens With Attitude", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x1d4731111bd2a50ab3dd5178574e6f3698270ffc.png", + "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0xa7296cefae8477a81e23230ca5d3a3d6f49d3764": { + "address": "0xa7296cefae8477a81e23230ca5d3a3d6f49d3764", + "symbol": "FIT", + "decimals": 18, + "name": "Fit", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xa7296cefae8477a81e23230ca5d3a3d6f49d3764.png", + "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0xe8e286b378254c4913c0c6964361636384b9d018": { + "address": "0xe8e286b378254c4913c0c6964361636384b9d018", + "symbol": "CORE", + "decimals": 18, + "name": "Warpcore", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xe8e286b378254c4913c0c6964361636384b9d018.png", + "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0x30d19fb77c3ee5cfa97f73d72c6a1e509fa06aef": { + "address": "0x30d19fb77c3ee5cfa97f73d72c6a1e509fa06aef", + "symbol": "CONDO", + "decimals": 18, + "name": "CONDO", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x30d19fb77c3ee5cfa97f73d72c6a1e509fa06aef.png", + "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0x140284d383918c522aca8f1cc6df49043b562e9b": { + "address": "0x140284d383918c522aca8f1cc6df49043b562e9b", + "symbol": "BLAP", + "decimals": 18, + "name": "BLAP", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x140284d383918c522aca8f1cc6df49043b562e9b.png", + "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0x28a730de97dc62a8c88363e0b1049056f1274a70": { + "address": "0x28a730de97dc62a8c88363e0b1049056f1274a70", + "symbol": "CTOSHI", + "decimals": 18, + "name": "Chinese Toshi", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x28a730de97dc62a8c88363e0b1049056f1274a70.png", + "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0xca8e8d244f0d219a6fc9e4793c635cea98d0399c": { + "address": "0xca8e8d244f0d219a6fc9e4793c635cea98d0399c", + "symbol": "CAT", + "decimals": 18, + "name": "Catson", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xca8e8d244f0d219a6fc9e4793c635cea98d0399c.png", + "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0x8b15cbb7ecd9b8fff38da8ead55a20490b99ad11": { + "address": "0x8b15cbb7ecd9b8fff38da8ead55a20490b99ad11", + "symbol": "BALL", + "decimals": 18, + "name": "BitBall", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x8b15cbb7ecd9b8fff38da8ead55a20490b99ad11.png", + "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0xba5ede8d98ab88cea9f0d69918dde28dc23c2553": { + "address": "0xba5ede8d98ab88cea9f0d69918dde28dc23c2553", + "symbol": "NORMUS", + "decimals": 18, + "name": "Normus", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xba5ede8d98ab88cea9f0d69918dde28dc23c2553.png", + "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0x24ca2fcca044b345d0676f770c6cb42ac34809d7": { + "address": "0x24ca2fcca044b345d0676f770c6cb42ac34809d7", + "symbol": "PACATO", + "decimals": 9, + "name": "Pacato", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x24ca2fcca044b345d0676f770c6cb42ac34809d7.png", + "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0xcb2861a1ec1d0392afb9e342d5aa539e4f75b633": { + "address": "0xcb2861a1ec1d0392afb9e342d5aa539e4f75b633", + "symbol": "DUDE", + "decimals": 18, + "name": "Distracted Dudes", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xcb2861a1ec1d0392afb9e342d5aa539e4f75b633.png", + "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0x029c58a909fbe3d4be85a24f414dda923a3fde0f": { + "address": "0x029c58a909fbe3d4be85a24f414dda923a3fde0f", + "symbol": "IRA", + "decimals": 18, + "name": "Defi-Ira", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x029c58a909fbe3d4be85a24f414dda923a3fde0f.png", + "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0x9de16c805a3227b9b92e39a446f9d56cf59fe640": { + "address": "0x9de16c805a3227b9b92e39a446f9d56cf59fe640", + "symbol": "BENTO", + "decimals": 18, + "name": "Bento", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x9de16c805a3227b9b92e39a446f9d56cf59fe640.png", + "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0x30b8a2c8e7fa41e77b54b8faf45c610e7ad909e3": { + "address": "0x30b8a2c8e7fa41e77b54b8faf45c610e7ad909e3", + "symbol": "MMAI", + "decimals": 18, + "name": "Morpho MAI", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x30b8a2c8e7fa41e77b54b8faf45c610e7ad909e3.png", + "aggregators": ["CoinGecko", "LiFi", "Rubic", "Sonarwatch"], + "occurrences": 4 + }, + "0xfef2d7b013b88fec2bfe4d2fee0aeb719af73481": { + "address": "0xfef2d7b013b88fec2bfe4d2fee0aeb719af73481", + "symbol": "ONCHAIN", + "decimals": 18, + "name": "/onchain", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xfef2d7b013b88fec2bfe4d2fee0aeb719af73481.png", + "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0x58dd173f30ecffdfebcd242c71241fb2f179e9b9": { + "address": "0x58dd173f30ecffdfebcd242c71241fb2f179e9b9", + "symbol": "WIG", + "decimals": 18, + "name": "Toupée Tech", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x58dd173f30ecffdfebcd242c71241fb2f179e9b9.png", + "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0x314da69de85145fdd5b7580971e9db0388a2cdc4": { + "address": "0x314da69de85145fdd5b7580971e9db0388a2cdc4", + "symbol": "BSW", + "decimals": 18, + "name": "BasedSwap", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x314da69de85145fdd5b7580971e9db0388a2cdc4.png", + "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0x8d3419b9a18651f3926a205ee0b1acea1e7192de": { + "address": "0x8d3419b9a18651f3926a205ee0b1acea1e7192de", + "symbol": "LOA", + "decimals": 18, + "name": "Law of Attraction", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x8d3419b9a18651f3926a205ee0b1acea1e7192de.png", + "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0xd1e6f3f0a7f40d5412f7471875879381441bf722": { + "address": "0xd1e6f3f0a7f40d5412f7471875879381441bf722", + "symbol": "ARI", + "decimals": 18, + "name": "ARI", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xd1e6f3f0a7f40d5412f7471875879381441bf722.png", + "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0x614747c53cb1636b4b962e15e1d66d3214621100": { + "address": "0x614747c53cb1636b4b962e15e1d66d3214621100", + "symbol": "COOKIE", + "decimals": 18, + "name": "CookieBase", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x614747c53cb1636b4b962e15e1d66d3214621100.png", + "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0x1cd38856ee0fdfd65c757e530e3b1de3061008d3": { + "address": "0x1cd38856ee0fdfd65c757e530e3b1de3061008d3", + "symbol": "GROOVE", + "decimals": 18, + "name": "GROOVE", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x1cd38856ee0fdfd65c757e530e3b1de3061008d3.png", + "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0x64baa63f3eedf9661f736d8e4d42c6f8aa0cda71": { + "address": "0x64baa63f3eedf9661f736d8e4d42c6f8aa0cda71", + "symbol": "GEKO", + "decimals": 18, + "name": "Geko Base", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x64baa63f3eedf9661f736d8e4d42c6f8aa0cda71.png", + "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0x42069de48741db40aef864f8764432bbccbd0b69": { + "address": "0x42069de48741db40aef864f8764432bbccbd0b69", + "symbol": "BETS", + "decimals": 18, + "name": "All Street Bets", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x42069de48741db40aef864f8764432bbccbd0b69.png", + "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0xb4f4776219a20720d03eae922de341a9586de6c9": { + "address": "0xb4f4776219a20720d03eae922de341a9586de6c9", + "symbol": "DEPIN", + "decimals": 18, + "name": "DePIN Baby by Virtuals", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xb4f4776219a20720d03eae922de341a9586de6c9.png", + "aggregators": ["CoinGecko", "Rubic", "Squid", "Rango"], + "occurrences": 4 + }, + "0xbd97693278f1948c59f65f130fd87e7ff7c61d11": { + "address": "0xbd97693278f1948c59f65f130fd87e7ff7c61d11", + "symbol": "NOGWAI", + "decimals": 18, + "name": "Nogwai", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xbd97693278f1948c59f65f130fd87e7ff7c61d11.png", + "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0xbe5614875952b1683cb0a2c20e6509be46d353a4": { + "address": "0xbe5614875952b1683cb0a2c20e6509be46d353a4", + "symbol": "BBRETT", + "decimals": 9, + "name": "Baby Brett on Base", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xbe5614875952b1683cb0a2c20e6509be46d353a4.png", + "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0x92af6f53febd6b4c6f5293840b6076a1b82c4bc2": { + "address": "0x92af6f53febd6b4c6f5293840b6076a1b82c4bc2", + "symbol": "BIRDDOG", + "decimals": 18, + "name": "Bird Dog on Base", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x92af6f53febd6b4c6f5293840b6076a1b82c4bc2.png", + "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0xf24608e0ccb972b0b0f4a6446a0bbf58c701a026": { + "address": "0xf24608e0ccb972b0b0f4a6446a0bbf58c701a026", + "symbol": "MWEURC", + "decimals": 18, + "name": "Moonwell Flagship EURC (Morpho Vault)", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xf24608e0ccb972b0b0f4a6446a0bbf58c701a026.png", + "aggregators": ["CoinGecko", "LiFi", "Rubic", "Sonarwatch"], + "occurrences": 4 + }, + "0x291a8da3c42b7d7f00349d6f1be3c823a2b3fca4": { + "address": "0x291a8da3c42b7d7f00349d6f1be3c823a2b3fca4", + "symbol": "SMOL", + "decimals": 18, + "name": "Tiny Fren", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x291a8da3c42b7d7f00349d6f1be3c823a2b3fca4.png", + "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0x917f39bb33b2483dd19546b1e8d2f09ce481ee44": { + "address": "0x917f39bb33b2483dd19546b1e8d2f09ce481ee44", + "symbol": "PKT", + "decimals": 18, + "name": "PKT", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x917f39bb33b2483dd19546b1e8d2f09ce481ee44.png", + "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0x2d90785e30a9df6cce329c0171cb8ba0f4a5c17b": { + "address": "0x2d90785e30a9df6cce329c0171cb8ba0f4a5c17b", + "symbol": "BYTE", + "decimals": 18, + "name": "BYTE by Virtuals", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x2d90785e30a9df6cce329c0171cb8ba0f4a5c17b.png", + "aggregators": ["CoinGecko", "Rubic", "Squid", "Rango"], + "occurrences": 4 + }, + "0x875ee70143fca7d78e03ee6b13a2b0d68be4af0c": { + "address": "0x875ee70143fca7d78e03ee6b13a2b0d68be4af0c", + "symbol": "PAWTH", + "decimals": 18, + "name": "Pawthereum", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x875ee70143fca7d78e03ee6b13a2b0d68be4af0c.png", + "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0x8ad5b9007556749de59e088c88801a3aaa87134b": { + "address": "0x8ad5b9007556749de59e088c88801a3aaa87134b", + "symbol": "FARTHER", + "decimals": 18, + "name": "Farther", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x8ad5b9007556749de59e088c88801a3aaa87134b.png", + "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0xb372dc09d8d84e1246760ee9d279e504a89f5684": { + "address": "0xb372dc09d8d84e1246760ee9d279e504a89f5684", + "symbol": "MFT", + "decimals": 18, + "name": "MetaFight Token", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xb372dc09d8d84e1246760ee9d279e504a89f5684.png", + "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0x23a96680ccde03bd4bdd9a3e9a0cb56a5d27f7c9": { + "address": "0x23a96680ccde03bd4bdd9a3e9a0cb56a5d27f7c9", + "symbol": "HENLO", + "decimals": 18, + "name": "Henlo", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x23a96680ccde03bd4bdd9a3e9a0cb56a5d27f7c9.png", + "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0x9e53e88dcff56d3062510a745952dec4cefdff9e": { + "address": "0x9e53e88dcff56d3062510a745952dec4cefdff9e", + "symbol": "DOG", + "decimals": 18, + "name": "Basic Dog Meme", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x9e53e88dcff56d3062510a745952dec4cefdff9e.png", + "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0xece7b98bd817ee5b1f2f536daf34d0b6af8bb542": { + "address": "0xece7b98bd817ee5b1f2f536daf34d0b6af8bb542", + "symbol": "ROCK", + "decimals": 18, + "name": "Just a Black Rock on Base", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xece7b98bd817ee5b1f2f536daf34d0b6af8bb542.png", + "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0xa835f70dd5f8b4f0023509f8f36c155785758db0": { + "address": "0xa835f70dd5f8b4f0023509f8f36c155785758db0", + "symbol": "DAWG", + "decimals": 18, + "name": "Cheeky Dawg", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xa835f70dd5f8b4f0023509f8f36c155785758db0.png", + "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0x252d223d0550bc6c137b003d90bc74f5341a2818": { + "address": "0x252d223d0550bc6c137b003d90bc74f5341a2818", + "symbol": "BITBOT", + "decimals": 18, + "name": "Bitbot", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x252d223d0550bc6c137b003d90bc74f5341a2818.png", + "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0xca5c7a459becaac1f2b5ee28bb8a29875b1a37a6": { + "address": "0xca5c7a459becaac1f2b5ee28bb8a29875b1a37a6", + "symbol": "BIRB", + "decimals": 18, + "name": "Birb", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xca5c7a459becaac1f2b5ee28bb8a29875b1a37a6.png", + "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0x28e29ec91db66733a94ee8e3b86a6199117baf99": { + "address": "0x28e29ec91db66733a94ee8e3b86a6199117baf99", + "symbol": "BASED", + "decimals": 18, + "name": "Basedmilio", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x28e29ec91db66733a94ee8e3b86a6199117baf99.png", + "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0x373504da48418c67e6fcd071f33cb0b3b47613c7": { + "address": "0x373504da48418c67e6fcd071f33cb0b3b47613c7", + "symbol": "WBASEDOGE", + "decimals": 18, + "name": "Wrapped BaseDOGE", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x373504da48418c67e6fcd071f33cb0b3b47613c7.png", + "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0x1754e5aadce9567a95f545b146a616ce34eead53": { + "address": "0x1754e5aadce9567a95f545b146a616ce34eead53", + "symbol": "BONKE", + "decimals": 9, + "name": "Bonke (Base)", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x1754e5aadce9567a95f545b146a616ce34eead53.png", + "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0xc4655eb36aa7f1e476a3059a609443ded02ab61f": { + "address": "0xc4655eb36aa7f1e476a3059a609443ded02ab61f", + "symbol": "XETH", + "decimals": 18, + "name": "Particles Money xETH", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xc4655eb36aa7f1e476a3059a609443ded02ab61f.png", + "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0xb9898511bd2bad8bfc23eba641ef97a08f27e730": { + "address": "0xb9898511bd2bad8bfc23eba641ef97a08f27e730", + "symbol": "BONKE", + "decimals": 18, + "name": "BONKE", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xb9898511bd2bad8bfc23eba641ef97a08f27e730.png", + "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0xba5e66fb16944da22a62ea4fd70ad02008744460": { + "address": "0xba5e66fb16944da22a62ea4fd70ad02008744460", + "symbol": "TURBO", + "decimals": 9, + "name": "Based Turbo", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xba5e66fb16944da22a62ea4fd70ad02008744460.png", + "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0x440d06b2ac83ff743d9e149be582a4b2b2c6adec": { + "address": "0x440d06b2ac83ff743d9e149be582a4b2b2c6adec", + "symbol": "JAVLIS", + "decimals": 18, + "name": "Javlis by Virtuals", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x440d06b2ac83ff743d9e149be582a4b2b2c6adec.png", + "aggregators": ["CoinGecko", "Rubic", "Squid", "Rango"], + "occurrences": 4 + }, + "0x17931cfc3217261ce0fa21bb066633c463ed8634": { + "address": "0x17931cfc3217261ce0fa21bb066633c463ed8634", + "symbol": "BASED", + "decimals": 18, + "name": "BASEDChad", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x17931cfc3217261ce0fa21bb066633c463ed8634.png", + "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0x0fabfeacedf47e890c50c8120177fff69c6a1d9b": { + "address": "0x0fabfeacedf47e890c50c8120177fff69c6a1d9b", + "symbol": "PYTHUSDC", + "decimals": 18, + "name": "Pyth USDC", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x0fabfeacedf47e890c50c8120177fff69c6a1d9b.png", + "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0xe31876c6a62a813f57b815d8d2d0f5c8aa06f49b": { + "address": "0xe31876c6a62a813f57b815d8d2d0f5c8aa06f49b", + "symbol": "YOYO", + "decimals": 18, + "name": "Yoyo", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xe31876c6a62a813f57b815d8d2d0f5c8aa06f49b.png", + "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0x8a24d7260cd02d3dfd8eefb66bc17ad4b17d494c": { + "address": "0x8a24d7260cd02d3dfd8eefb66bc17ad4b17d494c", + "symbol": "BSB", + "decimals": 18, + "name": "Based Street Bets", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x8a24d7260cd02d3dfd8eefb66bc17ad4b17d494c.png", + "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0x420b0fa3de2efcf2b2fd04152eb1df36a09717cd": { + "address": "0x420b0fa3de2efcf2b2fd04152eb1df36a09717cd", + "symbol": "KING", + "decimals": 18, + "name": "King Of Memes", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x420b0fa3de2efcf2b2fd04152eb1df36a09717cd.png", + "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0x6432096f054288ee45b7f6ad8863a1f4a8e1201c": { + "address": "0x6432096f054288ee45b7f6ad8863a1f4a8e1201c", + "symbol": "FOMO", + "decimals": 18, + "name": "FOMO Base", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x6432096f054288ee45b7f6ad8863a1f4a8e1201c.png", + "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0xafe5451185513925f5e757f001425338ff93412d": { + "address": "0xafe5451185513925f5e757f001425338ff93412d", + "symbol": "PARTICLE", + "decimals": 18, + "name": "Particles Money", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xafe5451185513925f5e757f001425338ff93412d.png", + "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0x6e934283dae5d5d1831cbe8d557c44c9b83f30ee": { + "address": "0x6e934283dae5d5d1831cbe8d557c44c9b83f30ee", + "symbol": "UATOM", + "decimals": 18, + "name": "Wrapped Cosmos (Universal)", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x6e934283dae5d5d1831cbe8d557c44c9b83f30ee.png", + "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0x347f500323d51e9350285daf299ddb529009e6ae": { + "address": "0x347f500323d51e9350285daf299ddb529009e6ae", + "symbol": "BLERF", + "decimals": 18, + "name": "BLERF", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x347f500323d51e9350285daf299ddb529009e6ae.png", + "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0xc36f19bccd51e3f1163eff07b5edf9d2850acec4": { + "address": "0xc36f19bccd51e3f1163eff07b5edf9d2850acec4", + "symbol": "BROGG", + "decimals": 18, + "name": "Brett's Dog", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xc36f19bccd51e3f1163eff07b5edf9d2850acec4.png", + "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0x9f235d23354857efe6c541db92a9ef1877689bcb": { + "address": "0x9f235d23354857efe6c541db92a9ef1877689bcb", + "symbol": "$GOODLE", + "decimals": 18, + "name": "Goodle", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x9f235d23354857efe6c541db92a9ef1877689bcb.png", + "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0x7d12aeb5d96d221071d176980d23c213d88d9998": { + "address": "0x7d12aeb5d96d221071d176980d23c213d88d9998", + "symbol": "FCKN", + "decimals": 18, + "name": "Fried Chicken", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x7d12aeb5d96d221071d176980d23c213d88d9998.png", + "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0x8a638ea79f71f3b91bdc96bbdf9fb27c93013d60": { + "address": "0x8a638ea79f71f3b91bdc96bbdf9fb27c93013d60", + "symbol": "$BBT", + "decimals": 5, + "name": "Baby Tiger", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x8a638ea79f71f3b91bdc96bbdf9fb27c93013d60.png", + "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0x7d89e05c0b93b24b5cb23a073e60d008fed1acf9": { + "address": "0x7d89e05c0b93b24b5cb23a073e60d008fed1acf9", + "symbol": "MEMBER", + "decimals": 18, + "name": "member", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x7d89e05c0b93b24b5cb23a073e60d008fed1acf9.png", + "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0x3e05d37cfbd8caaad9e3322d35cc727afaff63e3": { + "address": "0x3e05d37cfbd8caaad9e3322d35cc727afaff63e3", + "symbol": "BENG", + "decimals": 18, + "name": "Based Peng", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x3e05d37cfbd8caaad9e3322d35cc727afaff63e3.png", + "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0x6e37c95b43566e538d8c278eb69b00fc717a001b": { + "address": "0x6e37c95b43566e538d8c278eb69b00fc717a001b", + "symbol": "RE7RWA", + "decimals": 18, + "name": "Re7 RWA", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x6e37c95b43566e538d8c278eb69b00fc717a001b.png", + "aggregators": ["CoinGecko", "LiFi", "Rubic", "Sonarwatch"], + "occurrences": 4 + }, + "0x4c96a67b0577358894407af7bc3158fc1dffbeb5": { + "address": "0x4c96a67b0577358894407af7bc3158fc1dffbeb5", + "symbol": "POV", + "decimals": 18, + "name": "Degen POV", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x4c96a67b0577358894407af7bc3158fc1dffbeb5.png", + "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0xf5c83ea805e5aeff5de24c7da23ef246c2bf8ec7": { + "address": "0xf5c83ea805e5aeff5de24c7da23ef246c2bf8ec7", + "symbol": "MONSTA", + "decimals": 18, + "name": "Based Monsta", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xf5c83ea805e5aeff5de24c7da23ef246c2bf8ec7.png", + "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0xb4e017223fd3d639d0264de4da1b9e080325cb5e": { + "address": "0xb4e017223fd3d639d0264de4da1b9e080325cb5e", + "symbol": "SVTS", + "decimals": 18, + "name": "SyncVault", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xb4e017223fd3d639d0264de4da1b9e080325cb5e.png", + "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0x5597ce42b315f29e42071d231dcd0158da35b77b": { + "address": "0x5597ce42b315f29e42071d231dcd0158da35b77b", + "symbol": "KENDU", + "decimals": 18, + "name": "Kendu Inu", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x5597ce42b315f29e42071d231dcd0158da35b77b.png", + "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0xe74731ba9d1da6fd3c8c60ff363732bebac5273e": { + "address": "0xe74731ba9d1da6fd3c8c60ff363732bebac5273e", + "symbol": "MAICRO", + "decimals": 18, + "name": "maicrotrader by Virtuals", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xe74731ba9d1da6fd3c8c60ff363732bebac5273e.png", + "aggregators": ["CoinGecko", "Rubic", "Squid", "Rango"], + "occurrences": 4 + }, + "0x7a8a5012022bccbf3ea4b03cd2bb5583d915fb1a": { + "address": "0x7a8a5012022bccbf3ea4b03cd2bb5583d915fb1a", + "symbol": "CHUCK", + "decimals": 18, + "name": "Chuck", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x7a8a5012022bccbf3ea4b03cd2bb5583d915fb1a.png", + "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0x698dc45e4f10966f6d1d98e3bfd7071d8144c233": { + "address": "0x698dc45e4f10966f6d1d98e3bfd7071d8144c233", + "symbol": "PEPE", + "decimals": 9, + "name": "PEPE 0x69 ON BASE", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x698dc45e4f10966f6d1d98e3bfd7071d8144c233.png", + "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0x080c169cd58122f8e1d36713bf8bcbca45176905": { + "address": "0x080c169cd58122f8e1d36713bf8bcbca45176905", + "symbol": "MAXI", + "decimals": 18, + "name": "Maxi", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x080c169cd58122f8e1d36713bf8bcbca45176905.png", + "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0x9239e9f9e325e706ef8b89936ece9d48896abbe3": { + "address": "0x9239e9f9e325e706ef8b89936ece9d48896abbe3", + "symbol": "ARTTO", + "decimals": 18, + "name": "Artto AI", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x9239e9f9e325e706ef8b89936ece9d48896abbe3.png", + "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0xee30c78d32b8fd5b8eec8e4f08fd88a3f68971d5": { + "address": "0xee30c78d32b8fd5b8eec8e4f08fd88a3f68971d5", + "symbol": "ASTRO", + "decimals": 18, + "name": "Astro Fuel", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xee30c78d32b8fd5b8eec8e4f08fd88a3f68971d5.png", + "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0x461ee40928677644b8195662ab91bcdaae6ef105": { + "address": "0x461ee40928677644b8195662ab91bcdaae6ef105", + "symbol": "DOOK", + "decimals": 18, + "name": "Dook", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x461ee40928677644b8195662ab91bcdaae6ef105.png", + "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0x891502ba08132653151f822a3a430198f1844115": { + "address": "0x891502ba08132653151f822a3a430198f1844115", + "symbol": "BLUE", + "decimals": 18, + "name": "Blue Guy", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x891502ba08132653151f822a3a430198f1844115.png", + "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0x75570e1189ffc1d63b3417cdf0889f87cd3e9bd1": { + "address": "0x75570e1189ffc1d63b3417cdf0889f87cd3e9bd1", + "symbol": "BUNNY", + "decimals": 18, + "name": "Based Bunny", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x75570e1189ffc1d63b3417cdf0889f87cd3e9bd1.png", + "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0x0000000f2eb9f69274678c76222b35eec7588a65": { + "address": "0x0000000f2eb9f69274678c76222b35eec7588a65", + "symbol": "YOUSD", + "decimals": 6, + "name": "YOUSD", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x0000000f2eb9f69274678c76222b35eec7588a65.png", + "aggregators": ["CoinGecko", "LiFi", "Rubic", "Rango"], + "occurrences": 4 + }, + "0x1e0bb24ed6c806c01ef2f880a4b91adb90099ea7": { + "address": "0x1e0bb24ed6c806c01ef2f880a4b91adb90099ea7", + "symbol": "BRRR", + "decimals": 18, + "name": "BUCCI", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x1e0bb24ed6c806c01ef2f880a4b91adb90099ea7.png", + "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0xd11a584de5fa50a4ee560c48ab44dbb31823d9bc": { + "address": "0xd11a584de5fa50a4ee560c48ab44dbb31823d9bc", + "symbol": "BUTT", + "decimals": 18, + "name": "Buttman", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xd11a584de5fa50a4ee560c48ab44dbb31823d9bc.png", + "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0x88faea256f789f8dd50de54f9c807eef24f71b16": { + "address": "0x88faea256f789f8dd50de54f9c807eef24f71b16", + "symbol": "WOLF", + "decimals": 18, + "name": "Landwolf", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x88faea256f789f8dd50de54f9c807eef24f71b16.png", + "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0x3b916b8f6a710e9240ff08c1dd646dd8e8ed9e1e": { + "address": "0x3b916b8f6a710e9240ff08c1dd646dd8e8ed9e1e", + "symbol": "DOG", + "decimals": 8, + "name": "Base DOG", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x3b916b8f6a710e9240ff08c1dd646dd8e8ed9e1e.png", + "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0xd327d36eb6e1f250d191cd62497d08b4aaa843ce": { + "address": "0xd327d36eb6e1f250d191cd62497d08b4aaa843ce", + "symbol": "FOMO", + "decimals": 9, + "name": "Father Of Meme: Origin", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xd327d36eb6e1f250d191cd62497d08b4aaa843ce.png", + "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0x1b1514c76c54ce8807d7fdedf85c664eee734ece": { + "address": "0x1b1514c76c54ce8807d7fdedf85c664eee734ece", + "symbol": "$PURP", + "decimals": 18, + "name": "Purp", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x1b1514c76c54ce8807d7fdedf85c664eee734ece.png", + "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0x33b7f6225b4cbe5d368b7bb4807d6375b18b8c2b": { + "address": "0x33b7f6225b4cbe5d368b7bb4807d6375b18b8c2b", + "symbol": "CANDY", + "decimals": 9, + "name": "Candy", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x33b7f6225b4cbe5d368b7bb4807d6375b18b8c2b.png", + "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0x132bbda4a40d4d6288be49b637ec2c113b5d7600": { + "address": "0x132bbda4a40d4d6288be49b637ec2c113b5d7600", + "symbol": "DEFIDO", + "decimals": 18, + "name": "DeFido", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x132bbda4a40d4d6288be49b637ec2c113b5d7600.png", + "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0x26f1bb40ea88b46ceb21557dc0ffac7b7c0ad40f": { + "address": "0x26f1bb40ea88b46ceb21557dc0ffac7b7c0ad40f", + "symbol": "ALF", + "decimals": 18, + "name": "ALF", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x26f1bb40ea88b46ceb21557dc0ffac7b7c0ad40f.png", + "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0x5ff986de80fc8502ea9293b8c06ef22b1e3f11e9": { + "address": "0x5ff986de80fc8502ea9293b8c06ef22b1e3f11e9", + "symbol": "BINU", + "decimals": 18, + "name": "Base Inu", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x5ff986de80fc8502ea9293b8c06ef22b1e3f11e9.png", + "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0xfadb26be94c1f959f900bf88cd396b3e803481d6": { + "address": "0xfadb26be94c1f959f900bf88cd396b3e803481d6", + "symbol": "ESMX", + "decimals": 18, + "name": "ESM X", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xfadb26be94c1f959f900bf88cd396b3e803481d6.png", + "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0xaf07d812d1dcec20bf741075bc18660738d226dd": { + "address": "0xaf07d812d1dcec20bf741075bc18660738d226dd", + "symbol": "SNORT", + "decimals": 18, + "name": "SNORT", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xaf07d812d1dcec20bf741075bc18660738d226dd.png", + "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0xfa1f6e048e66ac240a4bb7eab7ee888e76081a6c": { + "address": "0xfa1f6e048e66ac240a4bb7eab7ee888e76081a6c", + "symbol": "DRONE", + "decimals": 18, + "name": "Drone", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xfa1f6e048e66ac240a4bb7eab7ee888e76081a6c.png", + "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0xbb5d04c40fa063faf213c4e0b8086655164269ef": { + "address": "0xbb5d04c40fa063faf213c4e0b8086655164269ef", + "symbol": "GLOOM", + "decimals": 18, + "name": "Gloom", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xbb5d04c40fa063faf213c4e0b8086655164269ef.png", + "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0x22222bd682745cf032006394750739684e45a5f8": { + "address": "0x22222bd682745cf032006394750739684e45a5f8", + "symbol": "POLLUK", + "decimals": 18, + "name": "Jasse Polluk", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x22222bd682745cf032006394750739684e45a5f8.png", + "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0x9aaae745cf2830fb8ddc6248b17436dc3a5e701c": { + "address": "0x9aaae745cf2830fb8ddc6248b17436dc3a5e701c", + "symbol": "GOCHU", + "decimals": 18, + "name": "Gochujangcoin", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x9aaae745cf2830fb8ddc6248b17436dc3a5e701c.png", + "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0x8e0e798966382e53bfb145d474254cbe065c17dc": { + "address": "0x8e0e798966382e53bfb145d474254cbe065c17dc", + "symbol": "GAME", + "decimals": 18, + "name": "Game of Memes (ETH)", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x8e0e798966382e53bfb145d474254cbe065c17dc.png", + "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0xcde172dc5ffc46d228838446c57c1227e0b82049": { + "address": "0xcde172dc5ffc46d228838446c57c1227e0b82049", + "symbol": "BOOMER", + "decimals": 18, + "name": "Boomer", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xcde172dc5ffc46d228838446c57c1227e0b82049.png", + "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0xbd15d0c77133d3200756dc4d7a4f577dbb2cf6a3": { + "address": "0xbd15d0c77133d3200756dc4d7a4f577dbb2cf6a3", + "symbol": "SAFE", + "decimals": 18, + "name": "BaseSafe", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xbd15d0c77133d3200756dc4d7a4f577dbb2cf6a3.png", + "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0xecd8bcc95be6aebcae272ee388c9037b24ab28da": { + "address": "0xecd8bcc95be6aebcae272ee388c9037b24ab28da", + "symbol": "GLE", + "decimals": 18, + "name": "Green Life Energy", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xecd8bcc95be6aebcae272ee388c9037b24ab28da.png", + "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0xddf98aad8180c3e368467782cd07ae2e3e8d36a5": { + "address": "0xddf98aad8180c3e368467782cd07ae2e3e8d36a5", + "symbol": "AM", + "decimals": 18, + "name": "Animated", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xddf98aad8180c3e368467782cd07ae2e3e8d36a5.png", + "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0x642e993fa91ffe9fb24d39a8eb0e0663145f8e92": { + "address": "0x642e993fa91ffe9fb24d39a8eb0e0663145f8e92", + "symbol": "RABBIT", + "decimals": 18, + "name": "BASED RABBIT", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x642e993fa91ffe9fb24d39a8eb0e0663145f8e92.png", + "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0xfdc944fb59201fb163596ee5e209ebc8fa4dcdc5": { + "address": "0xfdc944fb59201fb163596ee5e209ebc8fa4dcdc5", + "symbol": "AMC", + "decimals": 18, + "name": "AMC", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xfdc944fb59201fb163596ee5e209ebc8fa4dcdc5.png", + "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0x7b8d415f5239ae5e0f485971529b4f798e63b0b4": { + "address": "0x7b8d415f5239ae5e0f485971529b4f798e63b0b4", + "symbol": "BLUBI", + "decimals": 18, + "name": "Blubi", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x7b8d415f5239ae5e0f485971529b4f798e63b0b4.png", + "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0xbe92452bb46485af3308e6d77786bfbe3557808d": { + "address": "0xbe92452bb46485af3308e6d77786bfbe3557808d", + "symbol": "CASH", + "decimals": 18, + "name": "Phase Dollar", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xbe92452bb46485af3308e6d77786bfbe3557808d.png", + "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0xe18c07d858fb1bbf8c06fd78c13b86afd3d04e28": { + "address": "0xe18c07d858fb1bbf8c06fd78c13b86afd3d04e28", + "symbol": "HEMPY", + "decimals": 18, + "name": "Hempy", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xe18c07d858fb1bbf8c06fd78c13b86afd3d04e28.png", + "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0x077a32fdef94dbb0bdcf917450a9cacf68ed236f": { + "address": "0x077a32fdef94dbb0bdcf917450a9cacf68ed236f", + "symbol": "LUMI", + "decimals": 18, + "name": "LPC_Ai_Lumi by Virtuals", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x077a32fdef94dbb0bdcf917450a9cacf68ed236f.png", + "aggregators": ["CoinGecko", "Rubic", "Squid", "Rango"], + "occurrences": 4 + }, + "0x686b1209b2de12818aa69dd139530448d0c792b3": { + "address": "0x686b1209b2de12818aa69dd139530448d0c792b3", + "symbol": "POOP", + "decimals": 18, + "name": "Poopcoin", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x686b1209b2de12818aa69dd139530448d0c792b3.png", + "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0x7e72d6410803c40e73806f2a72e3eade5d075cc0": { + "address": "0x7e72d6410803c40e73806f2a72e3eade5d075cc0", + "symbol": "MOB", + "decimals": 18, + "name": "Marvin On Base", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x7e72d6410803c40e73806f2a72e3eade5d075cc0.png", + "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0xf95e1c0a67492720ca22842122fe7fa63d5519e5": { + "address": "0xf95e1c0a67492720ca22842122fe7fa63d5519e5", + "symbol": "LUNARLENS", + "decimals": 18, + "name": "Lunarlens", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xf95e1c0a67492720ca22842122fe7fa63d5519e5.png", + "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0x729031b3995538ddf6b6bce6e68d5d6fdeb3ccb5": { + "address": "0x729031b3995538ddf6b6bce6e68d5d6fdeb3ccb5", + "symbol": "RIKY", + "decimals": 18, + "name": "Riky The Raccoon", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x729031b3995538ddf6b6bce6e68d5d6fdeb3ccb5.png", + "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0x8300e8e6b258147972972dbcf87719da7b817a9c": { + "address": "0x8300e8e6b258147972972dbcf87719da7b817a9c", + "symbol": "PAT", + "decimals": 18, + "name": "Pat", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x8300e8e6b258147972972dbcf87719da7b817a9c.png", + "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0x7546e0d4d947a15f914e33de6616ffed826f45ef": { + "address": "0x7546e0d4d947a15f914e33de6616ffed826f45ef", + "symbol": "BLUNNY", + "decimals": 18, + "name": "Blunny", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x7546e0d4d947a15f914e33de6616ffed826f45ef.png", + "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0xba71cb8ef2d59de7399745793657838829e0b147": { + "address": "0xba71cb8ef2d59de7399745793657838829e0b147", + "symbol": "SIAM", + "decimals": 18, + "name": "Siamese", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xba71cb8ef2d59de7399745793657838829e0b147.png", + "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0x92fb1b7d9730b2f1bd4e2e91368c1eb6fdd2a009": { + "address": "0x92fb1b7d9730b2f1bd4e2e91368c1eb6fdd2a009", + "symbol": "JOGECO", + "decimals": 9, + "name": "Jogeco Dog", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x92fb1b7d9730b2f1bd4e2e91368c1eb6fdd2a009.png", + "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0x543ba622733bc9a7bfadd1d07b6c35ae1f9659d9": { + "address": "0x543ba622733bc9a7bfadd1d07b6c35ae1f9659d9", + "symbol": "ANDY", + "decimals": 18, + "name": "Based Andy", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x543ba622733bc9a7bfadd1d07b6c35ae1f9659d9.png", + "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0x6d22d3ed82c947be8860a86a69c4b0cb0f65589e": { + "address": "0x6d22d3ed82c947be8860a86a69c4b0cb0f65589e", + "symbol": "CHONK", + "decimals": 18, + "name": "Chonk", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x6d22d3ed82c947be8860a86a69c4b0cb0f65589e.png", + "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0x4229c271c19ca5f319fb67b4bc8a40761a6d6299": { + "address": "0x4229c271c19ca5f319fb67b4bc8a40761a6d6299", + "symbol": "NEGED", + "decimals": 18, + "name": "Neged", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x4229c271c19ca5f319fb67b4bc8a40761a6d6299.png", + "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0x73326b4d0225c429bed050c11c4422d91470aaf4": { + "address": "0x73326b4d0225c429bed050c11c4422d91470aaf4", + "symbol": "DACKIE", + "decimals": 18, + "name": "DACKIE", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x73326b4d0225c429bed050c11c4422d91470aaf4.png", + "aggregators": ["CoinGecko", "LiFi", "Rubic", "Rango"], + "occurrences": 4 + }, + "0x32e0f9d26d1e33625742a52620cc76c1130efde6": { + "address": "0x32e0f9d26d1e33625742a52620cc76c1130efde6", + "symbol": "BASED", + "decimals": 18, + "name": "BASED", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x32e0f9d26d1e33625742a52620cc76c1130efde6.png", + "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0xf404bc113f4fc7c2447cb2556dcf5a56e29fa2dd": { + "address": "0xf404bc113f4fc7c2447cb2556dcf5a56e29fa2dd", + "symbol": "SCOOP", + "decimals": 18, + "name": "Tradescoop by Virtuals", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xf404bc113f4fc7c2447cb2556dcf5a56e29fa2dd.png", + "aggregators": ["CoinGecko", "Rubic", "Squid", "Rango"], + "occurrences": 4 + }, + "0xbeefa1abfebe621df50ceaef9f54fdb73648c92c": { + "address": "0xbeefa1abfebe621df50ceaef9f54fdb73648c92c", + "symbol": "STEAKUSDA", + "decimals": 18, + "name": "Steakhouse USDA (Base) Morpho Vault", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xbeefa1abfebe621df50ceaef9f54fdb73648c92c.png", + "aggregators": ["CoinGecko", "LiFi", "Rubic", "Sonarwatch"], + "occurrences": 4 + }, + "0xbeef03f0bf3cb2e348393008a826538aadd7d183": { + "address": "0xbeef03f0bf3cb2e348393008a826538aadd7d183", + "symbol": "STEAKUSDM", + "decimals": 18, + "name": "Steakhouse USDM (Base) Morpho Vault", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xbeef03f0bf3cb2e348393008a826538aadd7d183.png", + "aggregators": ["CoinGecko", "LiFi", "Rubic", "Sonarwatch"], + "occurrences": 4 + }, + "0x76baa16ff15d61d32e6b3576c3a8c83a25c2f180": { + "address": "0x76baa16ff15d61d32e6b3576c3a8c83a25c2f180", + "symbol": "PLEB", + "decimals": 18, + "name": "Pleb", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x76baa16ff15d61d32e6b3576c3a8c83a25c2f180.png", + "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0xd473475958d4c1538418224a52e5c0a6c997835a": { + "address": "0xd473475958d4c1538418224a52e5c0a6c997835a", + "symbol": "CAP", + "decimals": 18, + "name": "Based Brians", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xd473475958d4c1538418224a52e5c0a6c997835a.png", + "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0xd2699f9fddc04d262a819808f561c153098c2408": { + "address": "0xd2699f9fddc04d262a819808f561c153098c2408", + "symbol": "MOON", + "decimals": 18, + "name": "Moon", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xd2699f9fddc04d262a819808f561c153098c2408.png", + "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0x968d6a288d7b024d5012c0b25d67a889e4e3ec19": { + "address": "0x968d6a288d7b024d5012c0b25d67a889e4e3ec19", + "symbol": "INT", + "decimals": 18, + "name": "Internet Token", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x968d6a288d7b024d5012c0b25d67a889e4e3ec19.png", + "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0x357655df177fb0229dc8aca977114a420bf81799": { + "address": "0x357655df177fb0229dc8aca977114a420bf81799", + "symbol": "RFC", + "decimals": 18, + "name": "Royal Finance Coin", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x357655df177fb0229dc8aca977114a420bf81799.png", + "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0x7f2c169e3243da4e03acd95a45fbaa96aaeb2803": { + "address": "0x7f2c169e3243da4e03acd95a45fbaa96aaeb2803", + "symbol": "CV3AI", + "decimals": 18, + "name": "CV3 by Virtuals", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x7f2c169e3243da4e03acd95a45fbaa96aaeb2803.png", + "aggregators": ["CoinGecko", "Rubic", "Squid", "Rango"], + "occurrences": 4 + }, + "0x8e16d46cb2da01cdd49601ec73d7b0344969ae33": { + "address": "0x8e16d46cb2da01cdd49601ec73d7b0344969ae33", + "symbol": "COIN", + "decimals": 18, + "name": "Coin on Base", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x8e16d46cb2da01cdd49601ec73d7b0344969ae33.png", + "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0x4e98b3917310b0e1f0d53c0619f87fe48deb804b": { + "address": "0x4e98b3917310b0e1f0d53c0619f87fe48deb804b", + "symbol": "LOBO", + "decimals": 18, + "name": "LOBO", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x4e98b3917310b0e1f0d53c0619f87fe48deb804b.png", + "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0x6f35720b272bf23832852b13ae9888c706e1a379": { + "address": "0x6f35720b272bf23832852b13ae9888c706e1a379", + "symbol": "APU", + "decimals": 18, + "name": "Based Apu", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x6f35720b272bf23832852b13ae9888c706e1a379.png", + "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0xaf0aa8de89e3dbdafe144abcdddafa568a526299": { + "address": "0xaf0aa8de89e3dbdafe144abcdddafa568a526299", + "symbol": "HADES", + "decimals": 18, + "name": "HadesAI by Virtuals", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xaf0aa8de89e3dbdafe144abcdddafa568a526299.png", + "aggregators": ["CoinGecko", "Rubic", "Squid", "Rango"], + "occurrences": 4 + }, + "0x77f8fbccd9995d1a00ae94badaa293e7eafc4a4d": { + "address": "0x77f8fbccd9995d1a00ae94badaa293e7eafc4a4d", + "symbol": "MIU", + "decimals": 18, + "name": "Miu", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x77f8fbccd9995d1a00ae94badaa293e7eafc4a4d.png", + "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0xef0b2ccb53a683fa48799245f376d6a60929f003": { + "address": "0xef0b2ccb53a683fa48799245f376d6a60929f003", + "symbol": "MOON", + "decimals": 18, + "name": "MoonBase", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xef0b2ccb53a683fa48799245f376d6a60929f003.png", + "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0x5a03841c2e2f5811f9e548cf98e88e878e55d99e": { + "address": "0x5a03841c2e2f5811f9e548cf98e88e878e55d99e", + "symbol": "UAXS", + "decimals": 18, + "name": "Wrapped Axie Infinity Shards (Universal)", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x5a03841c2e2f5811f9e548cf98e88e878e55d99e.png", + "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0x84a9aae8fcc085dbe11524f570716d89b772f430": { + "address": "0x84a9aae8fcc085dbe11524f570716d89b772f430", + "symbol": "DTRXBT", + "decimals": 18, + "name": "DTRXBT", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x84a9aae8fcc085dbe11524f570716d89b772f430.png", + "aggregators": ["CoinGecko", "Rubic", "Squid", "Rango"], + "occurrences": 4 + }, + "0x1c9f5e5b5c172955660c11ec0df65b68ecb5fb69": { + "address": "0x1c9f5e5b5c172955660c11ec0df65b68ecb5fb69", + "symbol": "HELP", + "decimals": 18, + "name": "Help", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x1c9f5e5b5c172955660c11ec0df65b68ecb5fb69.png", + "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0x3c281a39944a2319aa653d81cfd93ca10983d234": { + "address": "0x3c281a39944a2319aa653d81cfd93ca10983d234", + "symbol": "BUILD", + "decimals": 18, + "name": "Build", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x3c281a39944a2319aa653d81cfd93ca10983d234.png", + "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0xf7ccb8a6e3400eb8eb0c47619134f7516e025215": { + "address": "0xf7ccb8a6e3400eb8eb0c47619134f7516e025215", + "symbol": "SUMMER", + "decimals": 8, + "name": "Onchain Summer", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xf7ccb8a6e3400eb8eb0c47619134f7516e025215.png", + "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0xc44141a684f6aa4e36cd9264ab55550b03c88643": { + "address": "0xc44141a684f6aa4e36cd9264ab55550b03c88643", + "symbol": "ETHY", + "decimals": 18, + "name": "Ethy AI by Virtuals", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xc44141a684f6aa4e36cd9264ab55550b03c88643.png", + "aggregators": ["CoinGecko", "Rubic", "Squid", "Rango"], + "occurrences": 4 + }, + "0xb043bad01195700e737d0aee852584eae9393134": { + "address": "0xb043bad01195700e737d0aee852584eae9393134", + "symbol": "FLOWER", + "decimals": 18, + "name": "Farcaster Flower", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xb043bad01195700e737d0aee852584eae9393134.png", + "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0x314d7f9e2f55b430ef656fbb98a7635d43a2261e": { + "address": "0x314d7f9e2f55b430ef656fbb98a7635d43a2261e", + "symbol": "NAYM", + "decimals": 18, + "name": "Naym", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x314d7f9e2f55b430ef656fbb98a7635d43a2261e.png", + "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0x589864a9892b1a736ae70a91824ab4dc591fd8cd": { + "address": "0x589864a9892b1a736ae70a91824ab4dc591fd8cd", + "symbol": "GIB", + "decimals": 18, + "name": "Gibape", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x589864a9892b1a736ae70a91824ab4dc591fd8cd.png", + "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0xf0268c5f9aa95baf5c25d646aabb900ac12f0800": { + "address": "0xf0268c5f9aa95baf5c25d646aabb900ac12f0800", + "symbol": "RGOAT", + "decimals": 8, + "name": "RealGoat", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xf0268c5f9aa95baf5c25d646aabb900ac12f0800.png", + "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0xf086206423f9e9686192bee98c042131d7bc1336": { + "address": "0xf086206423f9e9686192bee98c042131d7bc1336", + "symbol": "DOGNUS", + "decimals": 18, + "name": "Dognus", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xf086206423f9e9686192bee98c042131d7bc1336.png", + "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0xa1ebb0922a7f43df50b34ad9bf2f602f88aab869": { + "address": "0xa1ebb0922a7f43df50b34ad9bf2f602f88aab869", + "symbol": "TICKLE", + "decimals": 18, + "name": "Tickle", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xa1ebb0922a7f43df50b34ad9bf2f602f88aab869.png", + "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0x6797b6244fa75f2e78cdffc3a4eb169332b730cc": { + "address": "0x6797b6244fa75f2e78cdffc3a4eb169332b730cc", + "symbol": "EAI", + "decimals": 18, + "name": "Eagle AI", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x6797b6244fa75f2e78cdffc3a4eb169332b730cc.png", + "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0xb56d0839998fd79efcd15c27cf966250aa58d6d3": { + "address": "0xb56d0839998fd79efcd15c27cf966250aa58d6d3", + "symbol": "USA", + "decimals": 18, + "name": "Based USA", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xb56d0839998fd79efcd15c27cf966250aa58d6d3.png", + "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0x76734b57dfe834f102fb61e1ebf844adf8dd931e": { + "address": "0x76734b57dfe834f102fb61e1ebf844adf8dd931e", + "symbol": "WEIRDO", + "decimals": 8, + "name": "Weirdo", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x76734b57dfe834f102fb61e1ebf844adf8dd931e.png", + "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0x4d58608eff50b691a3b76189af2a7a123df1e9ba": { + "address": "0x4d58608eff50b691a3b76189af2a7a123df1e9ba", + "symbol": "$BOYS", + "decimals": 9, + "name": "Boysclubbase", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x4d58608eff50b691a3b76189af2a7a123df1e9ba.png", + "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0xdb6e0e5094a25a052ab6845a9f1e486b9a9b3dde": { + "address": "0xdb6e0e5094a25a052ab6845a9f1e486b9a9b3dde", + "symbol": "OKAYEG", + "decimals": 18, + "name": "Okayeg", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xdb6e0e5094a25a052ab6845a9f1e486b9a9b3dde.png", + "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0xd1412d909f67b8db7505ddfcf26cf2303f4b1bb4": { + "address": "0xd1412d909f67b8db7505ddfcf26cf2303f4b1bb4", + "symbol": "RIKU", + "decimals": 18, + "name": "RIKU", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xd1412d909f67b8db7505ddfcf26cf2303f4b1bb4.png", + "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0xd27c288fd69f228e0c02f79e5ecadff962e05a2b": { + "address": "0xd27c288fd69f228e0c02f79e5ecadff962e05a2b", + "symbol": "FIRE", + "decimals": 18, + "name": "Fire", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xd27c288fd69f228e0c02f79e5ecadff962e05a2b.png", + "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0x5ed25e305e08f58afd7995eac72563e6be65a617": { + "address": "0x5ed25e305e08f58afd7995eac72563e6be65a617", + "symbol": "UNEAR", + "decimals": 18, + "name": "Wrapped NEAR (Universal)", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x5ed25e305e08f58afd7995eac72563e6be65a617.png", + "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0xd727e37dccd5720d1e3849606d3ab669cb68c368": { + "address": "0xd727e37dccd5720d1e3849606d3ab669cb68c368", + "symbol": "9-5", + "decimals": 18, + "name": "9to5", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xd727e37dccd5720d1e3849606d3ab669cb68c368.png", + "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0xf56b3b3972f2f154555a0b62ff5a22b7b2a3c90b": { + "address": "0xf56b3b3972f2f154555a0b62ff5a22b7b2a3c90b", + "symbol": "ZAP", + "decimals": 18, + "name": "ZAP", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xf56b3b3972f2f154555a0b62ff5a22b7b2a3c90b.png", + "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0x30121d81f4407474a6d93f5c3060f14aaa098a61": { + "address": "0x30121d81f4407474a6d93f5c3060f14aaa098a61", + "symbol": "LABZ", + "decimals": 18, + "name": "Insane Labz (Base)", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x30121d81f4407474a6d93f5c3060f14aaa098a61.png", + "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0x72499bddb67f4ca150e1f522ca82c87bc9fb18c8": { + "address": "0x72499bddb67f4ca150e1f522ca82c87bc9fb18c8", + "symbol": "BONK", + "decimals": 18, + "name": "Bonk On Base", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x72499bddb67f4ca150e1f522ca82c87bc9fb18c8.png", + "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0x50ce4129ca261ccde4eb100c170843c2936bc11b": { + "address": "0x50ce4129ca261ccde4eb100c170843c2936bc11b", + "symbol": "KOLZ", + "decimals": 18, + "name": "KOLZ", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x50ce4129ca261ccde4eb100c170843c2936bc11b.png", + "aggregators": ["CoinGecko", "Socket", "Rubic", "Rango"], + "occurrences": 4 + }, + "0xe4fc328ae212232efc5f5dd0e0b1537cd055d715": { + "address": "0xe4fc328ae212232efc5f5dd0e0b1537cd055d715", + "symbol": "GCAT", + "decimals": 9, + "name": "Giga Cat", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xe4fc328ae212232efc5f5dd0e0b1537cd055d715.png", + "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0x3628d69aa2d66e9efe95ab1267d440dec24389b6": { + "address": "0x3628d69aa2d66e9efe95ab1267d440dec24389b6", + "symbol": "UOMI", + "decimals": 18, + "name": "UOMI", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x3628d69aa2d66e9efe95ab1267d440dec24389b6.png", + "aggregators": ["CoinGecko", "Socket", "Rubic", "Rango"], + "occurrences": 4 + }, + "0xd9df947d2a8f9c28c37af7cb7c526022fb14efa2": { + "address": "0xd9df947d2a8f9c28c37af7cb7c526022fb14efa2", + "symbol": "MEED", + "decimals": 18, + "name": "Meeds DAO", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xd9df947d2a8f9c28c37af7cb7c526022fb14efa2.png", + "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0x227d920e20ebac8a40e7d6431b7d724bb64d7245": { + "address": "0x227d920e20ebac8a40e7d6431b7d724bb64d7245", + "symbol": "SWEAT", + "decimals": 18, + "name": "SWEAT", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x227d920e20ebac8a40e7d6431b7d724bb64d7245.png", + "aggregators": ["CoinGecko", "LiFi", "Rubic", "Rango"], + "occurrences": 4 + }, + "0x1b5f7fa46ed0f487f049c42f374ca4827d65a264": { + "address": "0x1b5f7fa46ed0f487f049c42f374ca4827d65a264", + "symbol": "DEURO", + "decimals": 18, + "name": "Decentralized Euro", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x1b5f7fa46ed0f487f049c42f374ca4827d65a264.png", + "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0x4772d2e014f9fc3a820c444e3313968e9a5c8121": { + "address": "0x4772d2e014f9fc3a820c444e3313968e9a5c8121", + "symbol": "YUSD", + "decimals": 18, + "name": "YUSD", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x4772d2e014f9fc3a820c444e3313968e9a5c8121.png", + "aggregators": ["CoinGecko", "LiFi", "Rubic", "Rango"], + "occurrences": 4 + }, + "0xd20ab1015f6a2de4a6fddebab270113f689c2f7c": { + "address": "0xd20ab1015f6a2de4a6fddebab270113f689c2f7c", + "symbol": "DHB", + "decimals": 18, + "name": "DeHub", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xd20ab1015f6a2de4a6fddebab270113f689c2f7c.png", + "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0x5319419caf59a446f2f129a5876a5e6b490d6610": { + "address": "0x5319419caf59a446f2f129a5876a5e6b490d6610", + "symbol": "LUSH", + "decimals": 18, + "name": "LushAI", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x5319419caf59a446f2f129a5876a5e6b490d6610.png", + "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0xa900a17a49bc4d442ba7f72c39fa2108865671f0": { + "address": "0xa900a17a49bc4d442ba7f72c39fa2108865671f0", + "symbol": "IONUSDC", + "decimals": 6, + "name": "Ionic USD Coin", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xa900a17a49bc4d442ba7f72c39fa2108865671f0.png", + "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0x1c22374032e7e5a1bbde3d943f5deb310db060dd": { + "address": "0x1c22374032e7e5a1bbde3d943f5deb310db060dd", + "symbol": "ONCHAIN", + "decimals": 18, + "name": "Onchain Coin", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x1c22374032e7e5a1bbde3d943f5deb310db060dd.png", + "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0xfd28f108e95f4d41daae9dbfff707d677985998e": { + "address": "0xfd28f108e95f4d41daae9dbfff707d677985998e", + "symbol": "PRL", + "decimals": 18, + "name": "PRL", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xfd28f108e95f4d41daae9dbfff707d677985998e.png", + "aggregators": ["CoinGecko", "LiFi", "Rubic", "Rango"], + "occurrences": 4 + }, + "0xb770fad3b3d059162a357047ddcf97fbe9fd7982": { + "address": "0xb770fad3b3d059162a357047ddcf97fbe9fd7982", + "symbol": "$ELON", + "decimals": 9, + "name": "Elon", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xb770fad3b3d059162a357047ddcf97fbe9fd7982.png", + "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0xaf20f5f19698f1d19351028cd7103b63d30de7d7": { + "address": "0xaf20f5f19698f1d19351028cd7103b63d30de7d7", + "symbol": "WAGMI", + "decimals": 18, + "name": "Wagmi", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xaf20f5f19698f1d19351028cd7103b63d30de7d7.png", + "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0xcaacd56d3d9b41d9d1272457e77f8ae510fdb688": { + "address": "0xcaacd56d3d9b41d9d1272457e77f8ae510fdb688", + "symbol": "AVRK", + "decimals": 18, + "name": "Avarik Saga", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xcaacd56d3d9b41d9d1272457e77f8ae510fdb688.png", + "aggregators": ["CoinGecko", "Rubic", "Squid", "Rango"], + "occurrences": 4 + }, + "0x4e719699e4197f4bf4370c49acd3e3b8de11974f": { + "address": "0x4e719699e4197f4bf4370c49acd3e3b8de11974f", + "symbol": "LOVELY", + "decimals": 18, + "name": "Lovely Inu Finance", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x4e719699e4197f4bf4370c49acd3e3b8de11974f.png", + "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0xb3a9bd4861454ba94931ebff410c3d828525dce2": { + "address": "0xb3a9bd4861454ba94931ebff410c3d828525dce2", + "symbol": "WOOF", + "decimals": 18, + "name": "WoofWork.io", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xb3a9bd4861454ba94931ebff410c3d828525dce2.png", + "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0x0808bf94d57c905f1236212654268ef82e1e594e": { + "address": "0x0808bf94d57c905f1236212654268ef82e1e594e", + "symbol": "RITE", + "decimals": 18, + "name": "ritestream", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x0808bf94d57c905f1236212654268ef82e1e594e.png", + "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0xade6057fcafa57d6d51ffa341c64ce4814995995": { + "address": "0xade6057fcafa57d6d51ffa341c64ce4814995995", + "symbol": "BZPR1", + "decimals": 18, + "name": "Backed ZPR1 $ 1-3 Month T-Bill", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xade6057fcafa57d6d51ffa341c64ce4814995995.png", + "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0xcacf1ca03983ce6c7e235fb20c70acc70ed13509": { + "address": "0xcacf1ca03983ce6c7e235fb20c70acc70ed13509", + "symbol": "APX", + "decimals": 18, + "name": "AstroPepeX", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xcacf1ca03983ce6c7e235fb20c70acc70ed13509.png", + "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0x57f5fbd3de65dfc0bd3630f732969e5fb97e6d37": { + "address": "0x57f5fbd3de65dfc0bd3630f732969e5fb97e6d37", + "symbol": "TRUMP", + "decimals": 9, + "name": "MAGA", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x57f5fbd3de65dfc0bd3630f732969e5fb97e6d37.png", + "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0xe095780ba2a64a4efa7a74830f0b71656f0b0ad4": { + "address": "0xe095780ba2a64a4efa7a74830f0b71656f0b0ad4", + "symbol": "BYTE", + "decimals": 9, + "name": "Byte", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xe095780ba2a64a4efa7a74830f0b71656f0b0ad4.png", + "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0x56f6f2a23ae5ef82d8dc46934f7cf8d0b15ddedd": { + "address": "0x56f6f2a23ae5ef82d8dc46934f7cf8d0b15ddedd", + "symbol": "CROGINAL", + "decimals": 18, + "name": "Croginal Cats", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x56f6f2a23ae5ef82d8dc46934f7cf8d0b15ddedd.png", + "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0x750cf88d9e0c2bcedeec31d5faad6ed6e3f1abc6": { + "address": "0x750cf88d9e0c2bcedeec31d5faad6ed6e3f1abc6", + "symbol": "XCAD", + "decimals": 18, + "name": "XCAD Network", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x750cf88d9e0c2bcedeec31d5faad6ed6e3f1abc6.png", + "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0x7ccdba6198db389cf37b714fd6573b73f3670236": { + "address": "0x7ccdba6198db389cf37b714fd6573b73f3670236", + "symbol": "BSKT", + "decimals": 5, + "name": "Basket", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x7ccdba6198db389cf37b714fd6573b73f3670236.png", + "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0xf2d3d488626a117984fda70f8106abc0049018d3": { + "address": "0xf2d3d488626a117984fda70f8106abc0049018d3", + "symbol": "MPT", + "decimals": 18, + "name": "Miracle Play", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xf2d3d488626a117984fda70f8106abc0049018d3.png", + "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0x72e1868f8eb8f9fb86455c10e72aa4b24774a5a3": { + "address": "0x72e1868f8eb8f9fb86455c10e72aa4b24774a5a3", + "symbol": "TRADE", + "decimals": 18, + "name": "TRADE", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x72e1868f8eb8f9fb86455c10e72aa4b24774a5a3.png", + "aggregators": ["CoinGecko", "LiFi", "Rubic", "Rango"], + "occurrences": 4 + }, + "0x6e51b3a19f114013e5dc09d0477a536c7e4e0207": { + "address": "0x6e51b3a19f114013e5dc09d0477a536c7e4e0207", + "symbol": "MEDIA", + "decimals": 18, + "name": "Media Network", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x6e51b3a19f114013e5dc09d0477a536c7e4e0207.png", + "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0x9a54ed8d4343e8d89477285a5a0ca06be4051dda": { + "address": "0x9a54ed8d4343e8d89477285a5a0ca06be4051dda", + "symbol": "QUAD", + "decimals": 18, + "name": "Quadency Token", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x9a54ed8d4343e8d89477285a5a0ca06be4051dda.png", + "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0x0f76d32cdccdcbd602a55af23eaf58fd1ee17245": { + "address": "0x0f76d32cdccdcbd602a55af23eaf58fd1ee17245", + "symbol": "BERNA", + "decimals": 18, + "name": "Backed ERNA $ Bond", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x0f76d32cdccdcbd602a55af23eaf58fd1ee17245.png", + "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0xea651c035f52b644856cab1f59775369c36ecadd": { + "address": "0xea651c035f52b644856cab1f59775369c36ecadd", + "symbol": "LAIKA", + "decimals": 18, + "name": "Laïka", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xea651c035f52b644856cab1f59775369c36ecadd.png", + "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0x1c22531aa9747d76fff8f0a43b37954ca67d28e0": { + "address": "0x1c22531aa9747d76fff8f0a43b37954ca67d28e0", + "symbol": "SUETH", + "decimals": 18, + "name": "Sumer.Money suETH", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x1c22531aa9747d76fff8f0a43b37954ca67d28e0.png", + "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0xd6aaf4d477999fa50c5a1aa35f708862113a73cc": { + "address": "0xd6aaf4d477999fa50c5a1aa35f708862113a73cc", + "symbol": "PROPS", + "decimals": 8, + "name": "Propbase", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xd6aaf4d477999fa50c5a1aa35f708862113a73cc.png", + "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0x58cd93c4a91c3940109fa27d700f5013b18b5dc2": { + "address": "0x58cd93c4a91c3940109fa27d700f5013b18b5dc2", + "symbol": "MVP", + "decimals": 18, + "name": "MAGA VP", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x58cd93c4a91c3940109fa27d700f5013b18b5dc2.png", + "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0x5e432eecd01c12ee7071ee9219c2477a347da192": { + "address": "0x5e432eecd01c12ee7071ee9219c2477a347da192", + "symbol": "ARQX", + "decimals": 18, + "name": "ARQx AI", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x5e432eecd01c12ee7071ee9219c2477a347da192.png", + "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0xbdf5bafee1291eec45ae3aadac89be8152d4e673": { + "address": "0xbdf5bafee1291eec45ae3aadac89be8152d4e673", + "symbol": "CATA", + "decimals": 18, + "name": "Catamoto", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xbdf5bafee1291eec45ae3aadac89be8152d4e673.png", + "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0x3f95aa88ddbb7d9d484aa3d482bf0a80009c52c9": { + "address": "0x3f95aa88ddbb7d9d484aa3d482bf0a80009c52c9", + "symbol": "BERNX", + "decimals": 18, + "name": "Backed ERNX € Bond", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x3f95aa88ddbb7d9d484aa3d482bf0a80009c52c9.png", + "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0x3203856eac03d343f9d5245ba2f39861838a7b36": { + "address": "0x3203856eac03d343f9d5245ba2f39861838a7b36", + "symbol": "AVI", + "decimals": 18, + "name": "Aviator", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x3203856eac03d343f9d5245ba2f39861838a7b36.png", + "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0x6bfdb6f4e65ead27118592a41eb927cea6956198": { + "address": "0x6bfdb6f4e65ead27118592a41eb927cea6956198", + "symbol": "FMC", + "decimals": 18, + "name": "FAME AI", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x6bfdb6f4e65ead27118592a41eb927cea6956198.png", + "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0xe2dca969624795985f2f083bcd0b674337ba130a": { + "address": "0xe2dca969624795985f2f083bcd0b674337ba130a", + "symbol": "SKR", + "decimals": 17, + "name": "Saakuru", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xe2dca969624795985f2f083bcd0b674337ba130a.png", + "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0x14a5f2872396802c3cc8942a39ab3e4118ee5038": { + "address": "0x14a5f2872396802c3cc8942a39ab3e4118ee5038", + "symbol": "BTSLA", + "decimals": 18, + "name": "Backed Tesla", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x14a5f2872396802c3cc8942a39ab3e4118ee5038.png", + "aggregators": ["CoinGecko", "LiFi", "Rubic", "Sonarwatch"], + "occurrences": 4 + }, + "0x803b629c339941e2b77d2dc499dac9e1fd9eac66": { + "address": "0x803b629c339941e2b77d2dc499dac9e1fd9eac66", + "symbol": "EARN", + "decimals": 18, + "name": "HOLD", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x803b629c339941e2b77d2dc499dac9e1fd9eac66.png", + "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0x6ce7c23b917284e21d55cea20acaeb2bc58594be": { + "address": "0x6ce7c23b917284e21d55cea20acaeb2bc58594be", + "symbol": "RIZZ", + "decimals": 9, + "name": "Rizz", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x6ce7c23b917284e21d55cea20acaeb2bc58594be.png", + "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0x9d5a383581882750ce27f84c72f017b378edb736": { + "address": "0x9d5a383581882750ce27f84c72f017b378edb736", + "symbol": "ALOT", + "decimals": 18, + "name": "ALOT", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x9d5a383581882750ce27f84c72f017b378edb736.png", + "aggregators": ["CoinGecko", "LiFi", "Rubic", "Rango"], + "occurrences": 4 + }, + "0xdf36186772a8fda4be100dbacc0b48ef00c53089": { + "address": "0xdf36186772a8fda4be100dbacc0b48ef00c53089", + "symbol": "BERRY", + "decimals": 18, + "name": "Strawberry AI", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xdf36186772a8fda4be100dbacc0b48ef00c53089.png", + "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0xa9f5031b54c44c3603b4300fde9b8f5cd18ad06f": { + "address": "0xa9f5031b54c44c3603b4300fde9b8f5cd18ad06f", + "symbol": "SHOOT", + "decimals": 18, + "name": "Mars Battle", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xa9f5031b54c44c3603b4300fde9b8f5cd18ad06f.png", + "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0xa3a2cdd230f9b3ff6e01a01534a3ed3cbf049815": { + "address": "0xa3a2cdd230f9b3ff6e01a01534a3ed3cbf049815", + "symbol": "ZERC", + "decimals": 18, + "name": "zkRace", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xa3a2cdd230f9b3ff6e01a01534a3ed3cbf049815.png", + "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0x345207814c0304f6bd3b28e42c09450d95b5dbb2": { + "address": "0x345207814c0304f6bd3b28e42c09450d95b5dbb2", + "symbol": "STICKBUG", + "decimals": 4, + "name": "stickbug", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x345207814c0304f6bd3b28e42c09450d95b5dbb2.png", + "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0x72e72193ea14ac3b469f881989d18a2ba021b4c6": { + "address": "0x72e72193ea14ac3b469f881989d18a2ba021b4c6", + "symbol": "DOLLAR", + "decimals": 6, + "name": "Dollar", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x72e72193ea14ac3b469f881989d18a2ba021b4c6.png", + "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0x4a506181f07da5ddfda4ca4c2fa4c67001db94b4": { + "address": "0x4a506181f07da5ddfda4ca4c2fa4c67001db94b4", + "symbol": "DYL", + "decimals": 18, + "name": "Dyl", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x4a506181f07da5ddfda4ca4c2fa4c67001db94b4.png", + "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0x741777f6b6d8145041f73a0bddd35ae81f55a40f": { + "address": "0x741777f6b6d8145041f73a0bddd35ae81f55a40f", + "symbol": "AIMR", + "decimals": 18, + "name": "MeromAI", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x741777f6b6d8145041f73a0bddd35ae81f55a40f.png", + "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0x004aa1586011f3454f487eac8d0d5c647d646c69": { + "address": "0x004aa1586011f3454f487eac8d0d5c647d646c69", + "symbol": "DOGEVERSE", + "decimals": 18, + "name": "DogeVerse", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x004aa1586011f3454f487eac8d0d5c647d646c69.png", + "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0xec1df7edfcdc2e2042c63252c1cef480f64f9189": { + "address": "0xec1df7edfcdc2e2042c63252c1cef480f64f9189", + "symbol": "$BOO", + "decimals": 18, + "name": "BOO", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xec1df7edfcdc2e2042c63252c1cef480f64f9189.png", + "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0x49d803d2df2295185610f44961f2dcd40326f25c": { + "address": "0x49d803d2df2295185610f44961f2dcd40326f25c", + "symbol": "SC", + "decimals": 18, + "name": "Shark Cat", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x49d803d2df2295185610f44961f2dcd40326f25c.png", + "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0xf09930625447d6a5f8e1217edb5649c7314e4e96": { + "address": "0xf09930625447d6a5f8e1217edb5649c7314e4e96", + "symbol": "SKIBIDI", + "decimals": 6, + "name": "Skibidi Dop Dop", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xf09930625447d6a5f8e1217edb5649c7314e4e96.png", + "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0x118a14bd824a7099e8c5279216ff410a7e5472bd": { + "address": "0x118a14bd824a7099e8c5279216ff410a7e5472bd", + "symbol": "OPUL", + "decimals": 18, + "name": "Opulous", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x118a14bd824a7099e8c5279216ff410a7e5472bd.png", + "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0x8888888888f004100c0353d657be6300587a6ccd": { + "address": "0x8888888888f004100c0353d657be6300587a6ccd", + "symbol": "ACS", + "decimals": 18, + "name": "ACryptoS", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x8888888888f004100c0353d657be6300587a6ccd.png", + "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0x6774dfc16e1d9b6ce5b0aec4ffed37a0daef0602": { + "address": "0x6774dfc16e1d9b6ce5b0aec4ffed37a0daef0602", + "symbol": "SHU", + "decimals": 18, + "name": "SHU", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x6774dfc16e1d9b6ce5b0aec4ffed37a0daef0602.png", + "aggregators": ["CoinGecko", "Socket", "Rubic", "Rango"], + "occurrences": 4 + }, + "0x8c1851488f2daceae46d815dd204d5f6d946666a": { + "address": "0x8c1851488f2daceae46d815dd204d5f6d946666a", + "symbol": "BESA", + "decimals": 9, + "name": "Besa Gaming Company", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x8c1851488f2daceae46d815dd204d5f6d946666a.png", + "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0x55365c9e68e70122020184f4441b498e8bf06ac6": { + "address": "0x55365c9e68e70122020184f4441b498e8bf06ac6", + "symbol": "QWLA", + "decimals": 18, + "name": "Qawalla Token", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x55365c9e68e70122020184f4441b498e8bf06ac6.png", + "aggregators": ["CoinGecko", "Socket", "Rubic", "Rango"], + "occurrences": 4 + }, + "0x8f0f56472c3e5730b1ea2f444e7829288da261e6": { + "address": "0x8f0f56472c3e5730b1ea2f444e7829288da261e6", + "symbol": "RMAV", + "decimals": 18, + "name": "Rogue MAV", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x8f0f56472c3e5730b1ea2f444e7829288da261e6.png", + "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0xd88611a629265c9af294ffdd2e7fa4546612273e": { + "address": "0xd88611a629265c9af294ffdd2e7fa4546612273e", + "symbol": "MPRO", + "decimals": 18, + "name": "Metapro", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xd88611a629265c9af294ffdd2e7fa4546612273e.png", + "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0x060cb087a9730e13aa191f31a6d86bff8dfcdcc0": { + "address": "0x060cb087a9730e13aa191f31a6d86bff8dfcdcc0", + "symbol": "OHM", + "decimals": 9, + "name": "Olympus", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x060cb087a9730e13aa191f31a6d86bff8dfcdcc0.png", + "aggregators": ["CoinGecko", "LiFi", "Rubic", "Rango"], + "occurrences": 4 + }, + "0x7f62ac1e974d65fab4a81821ca6af659a5f46298": { + "address": "0x7f62ac1e974d65fab4a81821ca6af659a5f46298", + "symbol": "ELS", + "decimals": 18, + "name": "Ethlas", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x7f62ac1e974d65fab4a81821ca6af659a5f46298.png", + "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0xe30c0801a516f0c67ebc0c4b45ffa7dcbd72ea9a": { + "address": "0xe30c0801a516f0c67ebc0c4b45ffa7dcbd72ea9a", + "symbol": "COR", + "decimals": 18, + "name": "Cortensor", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xe30c0801a516f0c67ebc0c4b45ffa7dcbd72ea9a.png", + "aggregators": ["CoinGecko", "Socket", "Rubic", "Rango"], + "occurrences": 4 + }, + "0xa23dd9379f2e12d9ce76ec738b9f5e520d1d861c": { + "address": "0xa23dd9379f2e12d9ce76ec738b9f5e520d1d861c", + "symbol": "USDEBT", + "decimals": 18, + "name": "USDEBT", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xa23dd9379f2e12d9ce76ec738b9f5e520d1d861c.png", + "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0xe8876189a80b2079d8c0a7867e46c50361d972c1": { + "address": "0xe8876189a80b2079d8c0a7867e46c50361d972c1", + "symbol": "ARC", + "decimals": 18, + "name": "Archly Finance", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xe8876189a80b2079d8c0a7867e46c50361d972c1.png", + "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0xd329f9a8589723357c36727a2d5e15974c835ccf": { + "address": "0xd329f9a8589723357c36727a2d5e15974c835ccf", + "symbol": "SUSDA", + "decimals": 18, + "name": "sUSDa", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xd329f9a8589723357c36727a2d5e15974c835ccf.png", + "aggregators": ["LiFi", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0x1d3b1cd0a0f242d598834b3f2d126dc6bd774657": { + "address": "0x1d3b1cd0a0f242d598834b3f2d126dc6bd774657", + "symbol": "COUSDC", + "decimals": 18, + "name": "Clearstar OpenEden USDC", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x1d3b1cd0a0f242d598834b3f2d126dc6bd774657.png", + "aggregators": ["LiFi", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0x6b4712ae9797c199edd44f897ca09bc57628a1cf": { + "address": "0x6b4712ae9797c199edd44f897ca09bc57628a1cf", + "symbol": "UNIDX", + "decimals": 18, + "name": "UniDex", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x6b4712ae9797c199edd44f897ca09bc57628a1cf.png", + "aggregators": ["LiFi", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0x24cb2b89844604c57350776d81e14765d03b91de": { + "address": "0x24cb2b89844604c57350776d81e14765d03b91de", + "symbol": "ZUNETH", + "decimals": 18, + "name": "Zunami ETH", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x24cb2b89844604c57350776d81e14765d03b91de.png", + "aggregators": ["LiFi", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0x7233062d88133b5402d39d62bfa23a1b6c8d0898": { + "address": "0x7233062d88133b5402d39d62bfa23a1b6c8d0898", + "symbol": "FORT", + "decimals": 18, + "name": "Citadel", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x7233062d88133b5402d39d62bfa23a1b6c8d0898.png", + "aggregators": ["LiFi", "Socket", "Rubic", "Rango"], + "occurrences": 4 + }, + "0xd5b9ddb04f20ea773c9b56607250149b26049b1f": { + "address": "0xd5b9ddb04f20ea773c9b56607250149b26049b1f", + "symbol": "ZUNUSD", + "decimals": 18, + "name": "Zunami USD", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xd5b9ddb04f20ea773c9b56607250149b26049b1f.png", + "aggregators": ["LiFi", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0x0000206329b97db379d5e1bf586bbdb969c63274": { + "address": "0x0000206329b97db379d5e1bf586bbdb969c63274", + "symbol": "USDA", + "decimals": 18, + "name": "USDA", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x0000206329b97db379d5e1bf586bbdb969c63274.png", + "aggregators": ["LiFi", "Socket", "Rubic", "Rango"], + "occurrences": 4 + }, + "0xed2d13a70acbd61074fc56bd0d0845e35f793e5e": { + "address": "0xed2d13a70acbd61074fc56bd0d0845e35f793e5e", + "symbol": "MOJO", + "decimals": 18, + "name": "Planet Mojo", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xed2d13a70acbd61074fc56bd0d0845e35f793e5e.png", + "aggregators": ["Socket", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0x2659631cfbe9b1b6dcbc1384a3864509356e7b4d": { + "address": "0x2659631cfbe9b1b6dcbc1384a3864509356e7b4d", + "symbol": "RDX", + "decimals": 18, + "name": "RandomDEX", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x2659631cfbe9b1b6dcbc1384a3864509356e7b4d.png", + "aggregators": ["Rubic", "Squid", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0x2dc1cda9186a4993bd36de60d08787c0c382bead": { + "address": "0x2dc1cda9186a4993bd36de60d08787c0c382bead", + "symbol": "MAG", + "decimals": 18, + "name": "Magnate Finance", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x2dc1cda9186a4993bd36de60d08787c0c382bead.png", + "aggregators": ["Rubic", "Squid", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0x7771450ece9c61430953d2646f995e33a06c91f5": { + "address": "0x7771450ece9c61430953d2646f995e33a06c91f5", + "symbol": "MONKE", + "decimals": 18, + "name": "Monke", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x7771450ece9c61430953d2646f995e33a06c91f5.png", + "aggregators": ["Rubic", "Rango", "Sonarwatch", "SushiSwap"], + "occurrences": 4 + }, + "0x40468be13c4388d2ab68a09f56973fa95db5bca0": { + "address": "0x40468be13c4388d2ab68a09f56973fa95db5bca0", + "symbol": "PIZZA", + "decimals": 18, + "name": "Pizza", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x40468be13c4388d2ab68a09f56973fa95db5bca0.png", + "aggregators": ["Rubic", "Rango", "Sonarwatch", "SushiSwap"], + "occurrences": 4 + }, + "0x7ed613ab8b2b4c6a781ddc97ea98a666c6437511": { + "address": "0x7ed613ab8b2b4c6a781ddc97ea98a666c6437511", + "symbol": "AYB", + "decimals": 18, + "name": "All Your Base", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x7ed613ab8b2b4c6a781ddc97ea98a666c6437511.png", + "aggregators": ["Rubic", "Rango", "Sonarwatch", "SushiSwap"], + "occurrences": 4 + }, + "0x981d41c115a2d48cb1215d13bda8f989d407c9c5": { + "address": "0x981d41c115a2d48cb1215d13bda8f989d407c9c5", + "symbol": "XEN", + "decimals": 18, + "name": "Xena", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x981d41c115a2d48cb1215d13bda8f989d407c9c5.png", + "aggregators": ["Rubic", "Rango", "Sonarwatch", "SushiSwap"], + "occurrences": 4 + }, + "0xfd008f937b4d73eeb00cf74ce90c392be5f07f96": { + "address": "0xfd008f937b4d73eeb00cf74ce90c392be5f07f96", + "symbol": "MOON", + "decimals": 18, + "name": "MOON INU", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xfd008f937b4d73eeb00cf74ce90c392be5f07f96.png", + "aggregators": ["CoinGecko", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x646a737b9b6024e49f5908762b3ff73e65b5160c": { + "address": "0x646a737b9b6024e49f5908762b3ff73e65b5160c", + "symbol": "SCRVUSD", + "decimals": 18, + "name": "Superbridge Bridged scrvUSD", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x646a737b9b6024e49f5908762b3ff73e65b5160c.png", + "aggregators": ["CoinGecko", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x262a9f4e84efa2816d87a68606bb4c1ea3874bf1": { + "address": "0x262a9f4e84efa2816d87a68606bb4c1ea3874bf1", + "symbol": "BKIT", + "decimals": 18, + "name": "Bangkit", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x262a9f4e84efa2816d87a68606bb4c1ea3874bf1.png", + "aggregators": ["CoinGecko", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x93e6407554b2f02640ab806cd57bd83e848ec65d": { + "address": "0x93e6407554b2f02640ab806cd57bd83e848ec65d", + "symbol": "FAR", + "decimals": 18, + "name": "FarLaunch", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x93e6407554b2f02640ab806cd57bd83e848ec65d.png", + "aggregators": ["CoinGecko", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x7c101a0e141517009d3138743213e3e835a809de": { + "address": "0x7c101a0e141517009d3138743213e3e835a809de", + "symbol": "$COSMIC", + "decimals": 18, + "name": "COSMIC on Base", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x7c101a0e141517009d3138743213e3e835a809de.png", + "aggregators": ["CoinGecko", "Rubic", "Sonarwatch"], + "occurrences": 3 + }, + "0x3afeae00a594fbf2e4049f924e3c6ac93296b6e8": { + "address": "0x3afeae00a594fbf2e4049f924e3c6ac93296b6e8", + "symbol": "MAMBA", + "decimals": 18, + "name": "Mamba", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x3afeae00a594fbf2e4049f924e3c6ac93296b6e8.png", + "aggregators": ["CoinGecko", "Rubic", "Rango"], + "occurrences": 3 + }, + "0xd7d919ea0c33a97ad6e7bd4f510498e2ec98cb78": { + "address": "0xd7d919ea0c33a97ad6e7bd4f510498e2ec98cb78", + "symbol": "PEN", + "decimals": 18, + "name": "Penjamin Blinkerton", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xd7d919ea0c33a97ad6e7bd4f510498e2ec98cb78.png", + "aggregators": ["CoinGecko", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x2ad3d80c917ddbf08acc04277f379e00e4d75395": { + "address": "0x2ad3d80c917ddbf08acc04277f379e00e4d75395", + "symbol": "COW", + "decimals": 18, + "name": "COW", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x2ad3d80c917ddbf08acc04277f379e00e4d75395.png", + "aggregators": ["CoinGecko", "Rubic", "Rango"], + "occurrences": 3 + }, + "0xc2eeca228ebac45c339cc5e522dd3a10638155f1": { + "address": "0xc2eeca228ebac45c339cc5e522dd3a10638155f1", + "symbol": "$PEACE", + "decimals": 18, + "name": "Peace Token", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xc2eeca228ebac45c339cc5e522dd3a10638155f1.png", + "aggregators": ["CoinGecko", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x91f45aa2bde7393e0af1cc674ffe75d746b93567": { + "address": "0x91f45aa2bde7393e0af1cc674ffe75d746b93567", + "symbol": "FRAME", + "decimals": 18, + "name": "Frame Token", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x91f45aa2bde7393e0af1cc674ffe75d746b93567.png", + "aggregators": ["CoinGecko", "Rubic", "Sonarwatch"], + "occurrences": 3 + }, + "0x88c3b9d2dbe8eab571d38f57f7f69c581e3427c6": { + "address": "0x88c3b9d2dbe8eab571d38f57f7f69c581e3427c6", + "symbol": "SMF", + "decimals": 18, + "name": "Super Meme Fighter", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x88c3b9d2dbe8eab571d38f57f7f69c581e3427c6.png", + "aggregators": ["CoinGecko", "Rubic", "Rango"], + "occurrences": 3 + }, + "0xbf3a2340221b9ead8fe0b6a1b2990e6e00dea092": { + "address": "0xbf3a2340221b9ead8fe0b6a1b2990e6e00dea092", + "symbol": "DYOR", + "decimals": 18, + "name": "DYOR", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xbf3a2340221b9ead8fe0b6a1b2990e6e00dea092.png", + "aggregators": ["CoinGecko", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x1986cc18d8ec757447254310d2604f85741aa732": { + "address": "0x1986cc18d8ec757447254310d2604f85741aa732", + "symbol": "REWARD", + "decimals": 18, + "name": "Rewardable", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x1986cc18d8ec757447254310d2604f85741aa732.png", + "aggregators": ["CoinGecko", "Rubic", "Rango"], + "occurrences": 3 + }, + "0xc5cdeb649ed1a7895b935acc8eb5aa0d7a8492be": { + "address": "0xc5cdeb649ed1a7895b935acc8eb5aa0d7a8492be", + "symbol": "UCHZ", + "decimals": 18, + "name": "Wrapped Chiliz (Universal)", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xc5cdeb649ed1a7895b935acc8eb5aa0d7a8492be.png", + "aggregators": ["CoinGecko", "Rubic", "Rango"], + "occurrences": 3 + }, + "0xcc6ce98579ba909344bb765f0c4f45964d5ce1d2": { + "address": "0xcc6ce98579ba909344bb765f0c4f45964d5ce1d2", + "symbol": "DUDEGEN", + "decimals": 18, + "name": "DUDEGEN", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xcc6ce98579ba909344bb765f0c4f45964d5ce1d2.png", + "aggregators": ["CoinGecko", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x65e570b560027f493f2b1907e8e8e3b9546053bd": { + "address": "0x65e570b560027f493f2b1907e8e8e3b9546053bd", + "symbol": "TYLER", + "decimals": 18, + "name": "Tyler", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x65e570b560027f493f2b1907e8e8e3b9546053bd.png", + "aggregators": ["CoinGecko", "Rubic", "Sonarwatch"], + "occurrences": 3 + }, + "0x9a3b7959e998bf2b50ef1969067d623877050d92": { + "address": "0x9a3b7959e998bf2b50ef1969067d623877050d92", + "symbol": "PBB", + "decimals": 18, + "name": "Pepe But Blue", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x9a3b7959e998bf2b50ef1969067d623877050d92.png", + "aggregators": ["CoinGecko", "Rubic", "Rango"], + "occurrences": 3 + }, + "0xdd32659b1e7a6a6b3c6e96cd8a4c936bcfea0607": { + "address": "0xdd32659b1e7a6a6b3c6e96cd8a4c936bcfea0607", + "symbol": "TRAI", + "decimals": 8, + "name": "Trackgood AI", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xdd32659b1e7a6a6b3c6e96cd8a4c936bcfea0607.png", + "aggregators": ["CoinGecko", "Rubic", "Rango"], + "occurrences": 3 + }, + "0xba515304d8153c4b162dc79f867e152df9c127eb": { + "address": "0xba515304d8153c4b162dc79f867e152df9c127eb", + "symbol": "UTY", + "decimals": 18, + "name": "Unity", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xba515304d8153c4b162dc79f867e152df9c127eb.png", + "aggregators": ["CoinGecko", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x63cb9a22cbc00bf9159429e9dede4b88c3dba8ce": { + "address": "0x63cb9a22cbc00bf9159429e9dede4b88c3dba8ce", + "symbol": "CAPO", + "decimals": 18, + "name": "LaunchTokenBot", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x63cb9a22cbc00bf9159429e9dede4b88c3dba8ce.png", + "aggregators": ["CoinGecko", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x6776caccfdcd0dfd5a38cb1d0b3b39a4ca9283ce": { + "address": "0x6776caccfdcd0dfd5a38cb1d0b3b39a4ca9283ce", + "symbol": "NOM", + "decimals": 18, + "name": "Nomad", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x6776caccfdcd0dfd5a38cb1d0b3b39a4ca9283ce.png", + "aggregators": ["CoinGecko", "Rubic", "Rango"], + "occurrences": 3 + }, + "0xb95fb324b8a2faf8ec4f76e3df46c718402736e2": { + "address": "0xb95fb324b8a2faf8ec4f76e3df46c718402736e2", + "symbol": "UNIT", + "decimals": 18, + "name": "Flat Money", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xb95fb324b8a2faf8ec4f76e3df46c718402736e2.png", + "aggregators": ["CoinGecko", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x16275fd42439a6671b188bdc3949a5ec61932c48": { + "address": "0x16275fd42439a6671b188bdc3949a5ec61932c48", + "symbol": "UEGLD", + "decimals": 18, + "name": "Wrapped MultiversX (Universal)", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x16275fd42439a6671b188bdc3949a5ec61932c48.png", + "aggregators": ["CoinGecko", "Rubic", "Rango"], + "occurrences": 3 + }, + "0xd403d1624daef243fbcbd4a80d8a6f36affe32b2": { + "address": "0xd403d1624daef243fbcbd4a80d8a6f36affe32b2", + "symbol": "ULINK", + "decimals": 18, + "name": "Chainlink (Universal)", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xd403d1624daef243fbcbd4a80d8a6f36affe32b2.png", + "aggregators": ["CoinGecko", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x43e94bd32ac8e57a6009cde6790d95761120d4e9": { + "address": "0x43e94bd32ac8e57a6009cde6790d95761120d4e9", + "symbol": "DEWN", + "decimals": 18, + "name": "Dewn", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x43e94bd32ac8e57a6009cde6790d95761120d4e9.png", + "aggregators": ["CoinGecko", "Rubic", "Rango"], + "occurrences": 3 + }, + "0xdb90a4e973b7663ce0ccc32b6fbd37ffb19bfa83": { + "address": "0xdb90a4e973b7663ce0ccc32b6fbd37ffb19bfa83", + "symbol": "DEGENUSDC", + "decimals": 18, + "name": "Degen USDC", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xdb90a4e973b7663ce0ccc32b6fbd37ffb19bfa83.png", + "aggregators": ["CoinGecko", "LiFi", "Rubic"], + "occurrences": 3 + }, + "0x00e57ec29ef2ba7df07ad10573011647b2366f6d": { + "address": "0x00e57ec29ef2ba7df07ad10573011647b2366f6d", + "symbol": "TOSHE", + "decimals": 18, + "name": "TOSHE", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x00e57ec29ef2ba7df07ad10573011647b2366f6d.png", + "aggregators": ["CoinGecko", "Rubic", "Rango"], + "occurrences": 3 + }, + "0xfbecd19292b1effeaa7b2e61f5101ddb6744a1fb": { + "address": "0xfbecd19292b1effeaa7b2e61f5101ddb6744a1fb", + "symbol": "AIPUMP", + "decimals": 18, + "name": "aiPump", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xfbecd19292b1effeaa7b2e61f5101ddb6744a1fb.png", + "aggregators": ["CoinGecko", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x9124577428c5bd73ad7636cbc5014081384f29d6": { + "address": "0x9124577428c5bd73ad7636cbc5014081384f29d6", + "symbol": "MONKY", + "decimals": 18, + "name": "Monky", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x9124577428c5bd73ad7636cbc5014081384f29d6.png", + "aggregators": ["CoinGecko", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x9c0e042d65a2e1ff31ac83f404e5cb79f452c337": { + "address": "0x9c0e042d65a2e1ff31ac83f404e5cb79f452c337", + "symbol": "UAPT", + "decimals": 18, + "name": "Wrapped Aptos (Universal)", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x9c0e042d65a2e1ff31ac83f404e5cb79f452c337.png", + "aggregators": ["CoinGecko", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x20d704099b62ada091028bcfc44445041ed16f09": { + "address": "0x20d704099b62ada091028bcfc44445041ed16f09", + "symbol": "CHAOS", + "decimals": 18, + "name": "CHAOS", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x20d704099b62ada091028bcfc44445041ed16f09.png", + "aggregators": ["CoinGecko", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x10a7a84c91988138f8dbbc82a23b02c8639e2552": { + "address": "0x10a7a84c91988138f8dbbc82a23b02c8639e2552", + "symbol": "ROXY", + "decimals": 18, + "name": "ROXY", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x10a7a84c91988138f8dbbc82a23b02c8639e2552.png", + "aggregators": ["CoinGecko", "Rubic", "Rango"], + "occurrences": 3 + }, + "0xdb173587d459ddb1b9b0f2d6d88febef039304a2": { + "address": "0xdb173587d459ddb1b9b0f2d6d88febef039304a2", + "symbol": "DADDY", + "decimals": 18, + "name": "Cryptojourney", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xdb173587d459ddb1b9b0f2d6d88febef039304a2.png", + "aggregators": ["CoinGecko", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x6668d4a6605a27e5ee51eda040581155eddc6666": { + "address": "0x6668d4a6605a27e5ee51eda040581155eddc6666", + "symbol": "WMSTER", + "decimals": 9, + "name": "White Monster", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x6668d4a6605a27e5ee51eda040581155eddc6666.png", + "aggregators": ["CoinGecko", "Rubic", "Rango"], + "occurrences": 3 + }, + "0xf83759099dc88f75fc83de854c41e0d9e83ada9b": { + "address": "0xf83759099dc88f75fc83de854c41e0d9e83ada9b", + "symbol": "OBOT", + "decimals": 18, + "name": "OBORTECH", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xf83759099dc88f75fc83de854c41e0d9e83ada9b.png", + "aggregators": ["CoinGecko", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x60cfc2b186a4cf647486e42c42b11cc6d571d1e4": { + "address": "0x60cfc2b186a4cf647486e42c42b11cc6d571d1e4", + "symbol": "BENJI", + "decimals": 18, + "name": "Franklin OnChain U.S. Government Money Fund", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x60cfc2b186a4cf647486e42c42b11cc6d571d1e4.png", + "aggregators": ["CoinGecko", "Rubic", "Sonarwatch"], + "occurrences": 3 + }, + "0x52d134c6db5889fad3542a09eaf7aa90c0fdf9e4": { + "address": "0x52d134c6db5889fad3542a09eaf7aa90c0fdf9e4", + "symbol": "BIBTA", + "decimals": 18, + "name": "Backed IBTA $ Treasury Bond 1-3yr", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x52d134c6db5889fad3542a09eaf7aa90c0fdf9e4.png", + "aggregators": ["CoinGecko", "Rubic", "Sonarwatch"], + "occurrences": 3 + }, + "0xca30c93b02514f86d5c86a6e375e3a330b435fb5": { + "address": "0xca30c93b02514f86d5c86a6e375e3a330b435fb5", + "symbol": "BIB01", + "decimals": 18, + "name": "Backed IB01 $ Treasury Bond 0-1yr", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xca30c93b02514f86d5c86a6e375e3a330b435fb5.png", + "aggregators": ["CoinGecko", "Rubic", "Sonarwatch"], + "occurrences": 3 + }, + "0x20c64dee8fda5269a78f2d5bdba861ca1d83df7a": { + "address": "0x20c64dee8fda5269a78f2d5bdba861ca1d83df7a", + "symbol": "BHIGH", + "decimals": 18, + "name": "Backed HIGH € High Yield Corp Bond", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x20c64dee8fda5269a78f2d5bdba861ca1d83df7a.png", + "aggregators": ["CoinGecko", "Rubic", "Sonarwatch"], + "occurrences": 3 + }, + "0x18bc5bcc660cf2b9ce3cd51a404afe1a0cbd3c22": { + "address": "0x18bc5bcc660cf2b9ce3cd51a404afe1a0cbd3c22", + "symbol": "IDRX", + "decimals": 2, + "name": "IDRX", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x18bc5bcc660cf2b9ce3cd51a404afe1a0cbd3c22.png", + "aggregators": ["CoinGecko", "Rubic", "Rango"], + "occurrences": 3 + }, + "0xf4fa93f76220414cdf6fd95a85e7a407e2dd3e3d": { + "address": "0xf4fa93f76220414cdf6fd95a85e7a407e2dd3e3d", + "symbol": "BIAO", + "decimals": 9, + "name": "Biaoqing", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xf4fa93f76220414cdf6fd95a85e7a407e2dd3e3d.png", + "aggregators": ["CoinGecko", "Rubic", "Rango"], + "occurrences": 3 + }, + "0xe94db607eba8f76a377d9bcc327c9856ed90fbde": { + "address": "0xe94db607eba8f76a377d9bcc327c9856ed90fbde", + "symbol": "NINA", + "decimals": 9, + "name": "Nina", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xe94db607eba8f76a377d9bcc327c9856ed90fbde.png", + "aggregators": ["CoinGecko", "Rubic", "Sonarwatch"], + "occurrences": 3 + }, + "0xa9500acbd7de8a0e456af645937350393251c0ed": { + "address": "0xa9500acbd7de8a0e456af645937350393251c0ed", + "symbol": "NIZA", + "decimals": 18, + "name": "Niza Global", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xa9500acbd7de8a0e456af645937350393251c0ed.png", + "aggregators": ["CoinGecko", "Rubic", "Rango"], + "occurrences": 3 + }, + "0xa0aebd4ae5f256b72b7d43f67ed934237adb1aee": { + "address": "0xa0aebd4ae5f256b72b7d43f67ed934237adb1aee", + "symbol": "BONSAICOIN", + "decimals": 18, + "name": "BONSAI COIN", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xa0aebd4ae5f256b72b7d43f67ed934237adb1aee.png", + "aggregators": ["CoinGecko", "Rubic", "Rango"], + "occurrences": 3 + }, + "0xbe35071605277d8be5a52c84a66ab1bc855a758d": { + "address": "0xbe35071605277d8be5a52c84a66ab1bc855a758d", + "symbol": "B4FWX", + "decimals": 18, + "name": "Be For FWX", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xbe35071605277d8be5a52c84a66ab1bc855a758d.png", + "aggregators": ["CoinGecko", "Rubic", "Sonarwatch"], + "occurrences": 3 + }, + "0x2f11eeee0bf21e7661a22dbbbb9068f4ad191b86": { + "address": "0x2f11eeee0bf21e7661a22dbbbb9068f4ad191b86", + "symbol": "BNIU", + "decimals": 18, + "name": "Backed Niu Technologies", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x2f11eeee0bf21e7661a22dbbbb9068f4ad191b86.png", + "aggregators": ["CoinGecko", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x14913815bcfde78baead2111f463d038ac9c2949": { + "address": "0x14913815bcfde78baead2111f463d038ac9c2949", + "symbol": "EUSD", + "decimals": 6, + "name": "EUSD", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x14913815bcfde78baead2111f463d038ac9c2949.png", + "aggregators": ["CoinGecko", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x2f123cf3f37ce3328cc9b5b8415f9ec5109b45e7": { + "address": "0x2f123cf3f37ce3328cc9b5b8415f9ec5109b45e7", + "symbol": "BC3M", + "decimals": 18, + "name": "Backed GOVIES 0-6 months EURO", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x2f123cf3f37ce3328cc9b5b8415f9ec5109b45e7.png", + "aggregators": ["CoinGecko", "Rubic", "Sonarwatch"], + "occurrences": 3 + }, + "0xd7b675cd5c84a13d1d0f84509345530f6421b57c": { + "address": "0xd7b675cd5c84a13d1d0f84509345530f6421b57c", + "symbol": "OOOI", + "decimals": 18, + "name": "Corridor Finance", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xd7b675cd5c84a13d1d0f84509345530f6421b57c.png", + "aggregators": ["CoinGecko", "Rubic", "Rango"], + "occurrences": 3 + }, + "0xf695df6c0f3bb45918a7a82e83348fc59517734e": { + "address": "0xf695df6c0f3bb45918a7a82e83348fc59517734e", + "symbol": "SPKCC", + "decimals": 5, + "name": "SPKCC", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xf695df6c0f3bb45918a7a82e83348fc59517734e.png", + "aggregators": ["CoinGecko", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x90685e300a4c4532efcefe91202dfe1dfd572f47": { + "address": "0x90685e300a4c4532efcefe91202dfe1dfd572f47", + "symbol": "CTA", + "decimals": 18, + "name": "Cross The Ages", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x90685e300a4c4532efcefe91202dfe1dfd572f47.png", + "aggregators": ["CoinGecko", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x0bb754d8940e283d9ff6855ab5dafbc14165c059": { + "address": "0x0bb754d8940e283d9ff6855ab5dafbc14165c059", + "symbol": "SAFO", + "decimals": 5, + "name": "SAFO", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x0bb754d8940e283d9ff6855ab5dafbc14165c059.png", + "aggregators": ["CoinGecko", "Rubic", "Rango"], + "occurrences": 3 + }, + "0xd879846cbe20751bde8a9342a3cca00a3e56ca47": { + "address": "0xd879846cbe20751bde8a9342a3cca00a3e56ca47", + "symbol": "EURSAFO", + "decimals": 5, + "name": "Spiko Amundi Overnight Swap Fund (EUR)", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xd879846cbe20751bde8a9342a3cca00a3e56ca47.png", + "aggregators": ["CoinGecko", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x2f6c0e5e06b43512706a9cdf66cd21f723fe0ec3": { + "address": "0x2f6c0e5e06b43512706a9cdf66cd21f723fe0ec3", + "symbol": "GBPSAFO", + "decimals": 5, + "name": "Spiko Amundi Overnight Swap Fund (GBP)", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x2f6c0e5e06b43512706a9cdf66cd21f723fe0ec3.png", + "aggregators": ["CoinGecko", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x6e84030fa86ebf585e3e18fe557e5612f7e93bff": { + "address": "0x6e84030fa86ebf585e3e18fe557e5612f7e93bff", + "symbol": "AORA", + "decimals": 18, + "name": "AtlasOra", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x6e84030fa86ebf585e3e18fe557e5612f7e93bff.png", + "aggregators": ["CoinGecko", "Rubic", "Rango"], + "occurrences": 3 + }, + "0xa067436db77ab18b1a315095e4b816791609897c": { + "address": "0xa067436db77ab18b1a315095e4b816791609897c", + "symbol": "WASSIE", + "decimals": 18, + "name": "WASSIE", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xa067436db77ab18b1a315095e4b816791609897c.png", + "aggregators": ["CoinGecko", "Rubic", "Sonarwatch"], + "occurrences": 3 + }, + "0x9483ab65847a447e36d21af1cab8c87e9712ff93": { + "address": "0x9483ab65847a447e36d21af1cab8c87e9712ff93", + "symbol": "WUSDR", + "decimals": 9, + "name": "Wrapped USDR", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x9483ab65847a447e36d21af1cab8c87e9712ff93.png", + "aggregators": ["LiFi", "Rubic", "Rango"], + "occurrences": 3 + }, + "0xcd6ddda305955acd6b94b934f057e8b0daad58de": { + "address": "0xcd6ddda305955acd6b94b934f057e8b0daad58de", + "symbol": "PERP", + "decimals": 18, + "name": "Perpetual", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xcd6ddda305955acd6b94b934f057e8b0daad58de.png", + "aggregators": ["LiFi", "Socket", "Rango"], + "occurrences": 3 + }, + "0x37defbc399e5737d53dfb5533d9954572f5b19bf": { + "address": "0x37defbc399e5737d53dfb5533d9954572f5b19bf", + "symbol": "BLAZE", + "decimals": 9, + "name": "BLAZE", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x37defbc399e5737d53dfb5533d9954572f5b19bf.png", + "aggregators": ["LiFi", "Socket", "Rango"], + "occurrences": 3 + }, + "0xb78e7d4c5d47af92942321ed40419dab0e573810": { + "address": "0xb78e7d4c5d47af92942321ed40419dab0e573810", + "symbol": "GFI", + "decimals": 18, + "name": "Goldfinch", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xb78e7d4c5d47af92942321ed40419dab0e573810.png", + "aggregators": ["LiFi", "Socket", "Rango"], + "occurrences": 3 + }, + "0x3933012dcf9beb0d63778725345e04dcc0c69c7e": { + "address": "0x3933012dcf9beb0d63778725345e04dcc0c69c7e", + "symbol": "UNLUCKY", + "decimals": 0, + "name": "UNLUCKY", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x3933012dcf9beb0d63778725345e04dcc0c69c7e.png", + "aggregators": ["Rubic", "Rango", "Sonarwatch"], + "occurrences": 3 + }, + "0xba1e2321e340740f9c3685dc09de5e0326bc1799": { + "address": "0xba1e2321e340740f9c3685dc09de5e0326bc1799", + "symbol": "SNAP", + "decimals": 18, + "name": "SNAP", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xba1e2321e340740f9c3685dc09de5e0326bc1799.png", + "aggregators": ["Rubic", "Rango", "Sonarwatch"], + "occurrences": 3 + }, + "0x99fd6b95bef16079398426f94f9faca4d7570c61": { + "address": "0x99fd6b95bef16079398426f94f9faca4d7570c61", + "symbol": "AEGNT", + "decimals": 18, + "name": "Aegents", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x99fd6b95bef16079398426f94f9faca4d7570c61.png", + "aggregators": ["Rubic", "Rango", "Sonarwatch"], + "occurrences": 3 + }, + "0x313f2cddcdc74747c18d2f529ec9c087860198ed": { + "address": "0x313f2cddcdc74747c18d2f529ec9c087860198ed", + "symbol": "AHD", + "decimals": 18, + "name": "Agent Humpty Dumpty", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x313f2cddcdc74747c18d2f529ec9c087860198ed.png", + "aggregators": ["Rubic", "Rango", "Sonarwatch"], + "occurrences": 3 + }, + "0x16cec756a0fcba1d7ce95df5a46406c469a9128a": { + "address": "0x16cec756a0fcba1d7ce95df5a46406c469a9128a", + "symbol": "AWK", + "decimals": 18, + "name": "Awkward Monkey", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x16cec756a0fcba1d7ce95df5a46406c469a9128a.png", + "aggregators": ["Rubic", "Rango", "Sonarwatch"], + "occurrences": 3 + }, + "0x4dfbd8a695baf78ebf8f905a4527020e844b278d": { + "address": "0x4dfbd8a695baf78ebf8f905a4527020e844b278d", + "symbol": "BACK", + "decimals": 18, + "name": "We're so back", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x4dfbd8a695baf78ebf8f905a4527020e844b278d.png", + "aggregators": ["Rubic", "Rango", "Sonarwatch"], + "occurrences": 3 + }, + "0xef8a84eb92afd22a115d5e81b2c3c605b866f044": { + "address": "0xef8a84eb92afd22a115d5e81b2c3c605b866f044", + "symbol": "BEBE", + "decimals": 18, + "name": "Bebe on Base", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xef8a84eb92afd22a115d5e81b2c3c605b866f044.png", + "aggregators": ["Rubic", "Rango", "Sonarwatch"], + "occurrences": 3 + }, + "0x80b3455e1db60b4cba46aba12e8b1e256dd64979": { + "address": "0x80b3455e1db60b4cba46aba12e8b1e256dd64979", + "symbol": "BOOBY", + "decimals": 18, + "name": "Blue-Footed Booby", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x80b3455e1db60b4cba46aba12e8b1e256dd64979.png", + "aggregators": ["Rubic", "Rango", "Sonarwatch"], + "occurrences": 3 + }, + "0x7fdd7419428955dbf36d4176af5a8f09ad29d1f3": { + "address": "0x7fdd7419428955dbf36d4176af5a8f09ad29d1f3", + "symbol": "$BOSHI", + "decimals": 18, + "name": "Based Boshi", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x7fdd7419428955dbf36d4176af5a8f09ad29d1f3.png", + "aggregators": ["Rubic", "Rango", "Sonarwatch"], + "occurrences": 3 + }, + "0x63f844a81571588536614b3fa9260bec3e897126": { + "address": "0x63f844a81571588536614b3fa9260bec3e897126", + "symbol": "BREX", + "decimals": 18, + "name": "BREX", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x63f844a81571588536614b3fa9260bec3e897126.png", + "aggregators": ["Rubic", "Rango", "Sonarwatch"], + "occurrences": 3 + }, + "0x9f95e17b2668afe01f8fbd157068b0a4405cc08d": { + "address": "0x9f95e17b2668afe01f8fbd157068b0a4405cc08d", + "symbol": "BULL", + "decimals": 18, + "name": "Bullieverse", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x9f95e17b2668afe01f8fbd157068b0a4405cc08d.png", + "aggregators": ["Rubic", "Rango", "Sonarwatch"], + "occurrences": 3 + }, + "0xf2393eeadd67bf68a60f39992113775966f34e1e": { + "address": "0xf2393eeadd67bf68a60f39992113775966f34e1e", + "symbol": "DUSD", + "decimals": 18, + "name": "Davos.xyz USD", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xf2393eeadd67bf68a60f39992113775966f34e1e.png", + "aggregators": ["Rubic", "Rango", "Sonarwatch"], + "occurrences": 3 + }, + "0x2c9ab600d71967ff259c491ad51f517886740cbc": { + "address": "0x2c9ab600d71967ff259c491ad51f517886740cbc", + "symbol": "VAB", + "decimals": 18, + "name": "Vabble", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x2c9ab600d71967ff259c491ad51f517886740cbc.png", + "aggregators": ["Rubic", "Rango", "Sonarwatch"], + "occurrences": 3 + }, + "0x4287105ffac106eb98a71cab46586906181e35ff": { + "address": "0x4287105ffac106eb98a71cab46586906181e35ff", + "symbol": "SWORD", + "decimals": 18, + "name": "SWORD", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x4287105ffac106eb98a71cab46586906181e35ff.png", + "aggregators": ["Rubic", "Rango", "Sonarwatch"], + "occurrences": 3 + }, + "0x0afcae1208ac99addc6983a06735a199f190de09": { + "address": "0x0afcae1208ac99addc6983a06735a199f190de09", + "symbol": "TAD", + "decimals": 18, + "name": "Froggy Friends", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x0afcae1208ac99addc6983a06735a199f190de09.png", + "aggregators": ["Rubic", "Rango", "Sonarwatch"], + "occurrences": 3 + }, + "0x1db0fc8933f545648b54a9ee4326209a9a259643": { + "address": "0x1db0fc8933f545648b54a9ee4326209a9a259643", + "symbol": "ZUN", + "decimals": 18, + "name": "Zunami Governance Token", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x1db0fc8933f545648b54a9ee4326209a9a259643.png", + "aggregators": ["Rubic", "Rango", "Sonarwatch"], + "occurrences": 3 + }, + "0x0b1594b0e896bf165d925956e0df733b8443af6a": { + "address": "0x0b1594b0e896bf165d925956e0df733b8443af6a", + "symbol": "MORK", + "decimals": 18, + "name": "MORK", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x0b1594b0e896bf165d925956e0df733b8443af6a.png", + "aggregators": ["Rubic", "Rango", "Sonarwatch"], + "occurrences": 3 + }, + "0xcbfe8e065534d0cc117bd71a11b0249a63e247f7": { + "address": "0xcbfe8e065534d0cc117bd71a11b0249a63e247f7", + "symbol": "FROKAI", + "decimals": 18, + "name": "FrokAI", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xcbfe8e065534d0cc117bd71a11b0249a63e247f7.png", + "aggregators": ["Rubic", "Rango", "Sonarwatch"], + "occurrences": 3 + }, + "0x0171ae9879c7fbcf3071b149bb4f2130daef7457": { + "address": "0x0171ae9879c7fbcf3071b149bb4f2130daef7457", + "symbol": "GPTW", + "decimals": 18, + "name": "GPT Wars", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x0171ae9879c7fbcf3071b149bb4f2130daef7457.png", + "aggregators": ["Rubic", "Rango", "Sonarwatch"], + "occurrences": 3 + }, + "0xc1ffaef4e7d553bbaf13926e258a1a555a363a07": { + "address": "0xc1ffaef4e7d553bbaf13926e258a1a555a363a07", + "symbol": "HIM", + "decimals": 18, + "name": "Human Intelligence Machin", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xc1ffaef4e7d553bbaf13926e258a1a555a363a07.png", + "aggregators": ["Rubic", "Rango", "Sonarwatch"], + "occurrences": 3 + }, + "0xf4210f93bc68d63df3286c73eba08c6414f40c0d": { + "address": "0xf4210f93bc68d63df3286c73eba08c6414f40c0d", + "symbol": "KATT", + "decimals": 18, + "name": "KATT DADDY", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xf4210f93bc68d63df3286c73eba08c6414f40c0d.png", + "aggregators": ["Rubic", "Rango", "Sonarwatch"], + "occurrences": 3 + }, + "0xa83d1a010e4a36198a884dcb3d7d2de87fe9a59d": { + "address": "0xa83d1a010e4a36198a884dcb3d7d2de87fe9a59d", + "symbol": "LAN", + "decimals": 18, + "name": "Lanify", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xa83d1a010e4a36198a884dcb3d7d2de87fe9a59d.png", + "aggregators": ["Rubic", "Rango", "Sonarwatch"], + "occurrences": 3 + }, + "0x420697291f6ce9fbb34e9feddd61868ca2f81f5c": { + "address": "0x420697291f6ce9fbb34e9feddd61868ca2f81f5c", + "symbol": "MONEYBEE", + "decimals": 18, + "name": "MONEYBEE", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x420697291f6ce9fbb34e9feddd61868ca2f81f5c.png", + "aggregators": ["Rubic", "Rango", "Sonarwatch"], + "occurrences": 3 + }, + "0xbe8dfc6661fafaa4445eb952586c0d347eacf048": { + "address": "0xbe8dfc6661fafaa4445eb952586c0d347eacf048", + "symbol": "MONK", + "decimals": 18, + "name": "Monk.gg", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xbe8dfc6661fafaa4445eb952586c0d347eacf048.png", + "aggregators": ["Rubic", "Rango", "Sonarwatch"], + "occurrences": 3 + }, + "0xc5396321805c7f1bce608cda194aa9155fb20f7d": { + "address": "0xc5396321805c7f1bce608cda194aa9155fb20f7d", + "symbol": "MOONCATS", + "decimals": 18, + "name": "Mooncats on Base", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xc5396321805c7f1bce608cda194aa9155fb20f7d.png", + "aggregators": ["Rubic", "Rango", "Sonarwatch"], + "occurrences": 3 + }, + "0xacb5b33ce55ba7729e38b2b59677e71c0112f0d9": { + "address": "0xacb5b33ce55ba7729e38b2b59677e71c0112f0d9", + "symbol": "OSP", + "decimals": 18, + "name": "OpenSocial", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xacb5b33ce55ba7729e38b2b59677e71c0112f0d9.png", + "aggregators": ["Rubic", "Rango", "Sonarwatch"], + "occurrences": 3 + }, + "0x28a5e71bfc02723eac17e39c84c5190415c0de9f": { + "address": "0x28a5e71bfc02723eac17e39c84c5190415c0de9f", + "symbol": "PEPI", + "decimals": 9, + "name": "PEPi", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x28a5e71bfc02723eac17e39c84c5190415c0de9f.png", + "aggregators": ["Rubic", "Rango", "Sonarwatch"], + "occurrences": 3 + }, + "0xfaa4f3bcfc87d791e9305951275e0f62a98bcb10": { + "address": "0xfaa4f3bcfc87d791e9305951275e0f62a98bcb10", + "symbol": "SUBF", + "decimals": 18, + "name": "Super Best Friends", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xfaa4f3bcfc87d791e9305951275e0f62a98bcb10.png", + "aggregators": ["Rubic", "Rango", "Sonarwatch"], + "occurrences": 3 + }, + "0x0d1fc046900628879d579364789273fd552ec582": { + "address": "0x0d1fc046900628879d579364789273fd552ec582", + "symbol": "BOOSHI", + "decimals": 18, + "name": "Booshi", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x0d1fc046900628879d579364789273fd552ec582.png", + "aggregators": ["Rubic", "Rango", "Sonarwatch"], + "occurrences": 3 + }, + "0xd98832e8a59156acbee4744b9a94a9989a728f36": { + "address": "0xd98832e8a59156acbee4744b9a94a9989a728f36", + "symbol": "AGENT", + "decimals": 18, + "name": "AgentAlgo", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xd98832e8a59156acbee4744b9a94a9989a728f36.png", + "aggregators": ["Rubic", "Rango", "Sonarwatch"], + "occurrences": 3 + }, + "0xa7ea9d5d4d4c7cf7dbde5871e6d108603c6942a5": { + "address": "0xa7ea9d5d4d4c7cf7dbde5871e6d108603c6942a5", + "symbol": "FOMO", + "decimals": 18, + "name": "FOMO TOCD", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xa7ea9d5d4d4c7cf7dbde5871e6d108603c6942a5.png", + "aggregators": ["Rubic", "Rango", "Sonarwatch"], + "occurrences": 3 + }, + "0xea1d649ddc8e2a6e6ee40b89b2997518476cafa5": { + "address": "0xea1d649ddc8e2a6e6ee40b89b2997518476cafa5", + "symbol": "MOBY", + "decimals": 18, + "name": "MOBY", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xea1d649ddc8e2a6e6ee40b89b2997518476cafa5.png", + "aggregators": ["Rubic", "Rango", "Sonarwatch"], + "occurrences": 3 + }, + "0x33d13d537609841ce6c42d6fd775dc33e3833411": { + "address": "0x33d13d537609841ce6c42d6fd775dc33e3833411", + "symbol": "OAKS", + "decimals": 18, + "name": "OAKS", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x33d13d537609841ce6c42d6fd775dc33e3833411.png", + "aggregators": ["Rubic", "Rango", "Sonarwatch"], + "occurrences": 3 + }, + "0x74ff3cbf86f95fea386f79633d7bc4460d415f34": { + "address": "0x74ff3cbf86f95fea386f79633d7bc4460d415f34", + "symbol": "BABYCRASH", + "decimals": 18, + "name": "BabyCrash", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x74ff3cbf86f95fea386f79633d7bc4460d415f34.png", + "aggregators": ["Rubic", "Rango", "Sonarwatch"], + "occurrences": 3 + }, + "0xd2faa0caee8421959aa13fbd20a7ed7e93702ffe": { + "address": "0xd2faa0caee8421959aa13fbd20a7ed7e93702ffe", + "symbol": "BALDO", + "decimals": 18, + "name": "Bald Dog", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xd2faa0caee8421959aa13fbd20a7ed7e93702ffe.png", + "aggregators": ["Rubic", "Rango", "Sonarwatch"], + "occurrences": 3 + }, + "0xc2464fb6edc12e4c0d3aa9b201497a27e6b7ef04": { + "address": "0xc2464fb6edc12e4c0d3aa9b201497a27e6b7ef04", + "symbol": "BASEAI", + "decimals": 18, + "name": "BaseAI", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xc2464fb6edc12e4c0d3aa9b201497a27e6b7ef04.png", + "aggregators": ["Rubic", "Rango", "Sonarwatch"], + "occurrences": 3 + }, + "0x84f074917fb9d464c1264c47296be53424bbc93f": { + "address": "0x84f074917fb9d464c1264c47296be53424bbc93f", + "symbol": "BLING", + "decimals": 9, + "name": "PlebDreke", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x84f074917fb9d464c1264c47296be53424bbc93f.png", + "aggregators": ["Rubic", "Rango", "Sonarwatch"], + "occurrences": 3 + }, + "0x4c40454659c8ec1283355d8e3911ba1745ff6fd1": { + "address": "0x4c40454659c8ec1283355d8e3911ba1745ff6fd1", + "symbol": "CHIP", + "decimals": 9, + "name": "Blue Chip", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x4c40454659c8ec1283355d8e3911ba1745ff6fd1.png", + "aggregators": ["Rubic", "Rango", "Sonarwatch"], + "occurrences": 3 + }, + "0x67ce18961c3269ca03c2e5632f1938cc53e614a1": { + "address": "0x67ce18961c3269ca03c2e5632f1938cc53e614a1", + "symbol": "CRAPPY", + "decimals": 18, + "name": "Crappy Bird", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x67ce18961c3269ca03c2e5632f1938cc53e614a1.png", + "aggregators": ["Rubic", "Rango", "Sonarwatch"], + "occurrences": 3 + }, + "0xc41ba5737baf6bd0ccd5daf7eee39874e4ad45ff": { + "address": "0xc41ba5737baf6bd0ccd5daf7eee39874e4ad45ff", + "symbol": "DEGENS", + "decimals": 18, + "name": "The Degensons", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xc41ba5737baf6bd0ccd5daf7eee39874e4ad45ff.png", + "aggregators": ["Rubic", "Rango", "Sonarwatch"], + "occurrences": 3 + }, + "0x9d6b8b6fb293c757e05073b84a583ecfaef8d8a7": { + "address": "0x9d6b8b6fb293c757e05073b84a583ecfaef8d8a7", + "symbol": "FLIES", + "decimals": 18, + "name": "XCOPYFLIES", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x9d6b8b6fb293c757e05073b84a583ecfaef8d8a7.png", + "aggregators": ["Rubic", "Rango", "Sonarwatch"], + "occurrences": 3 + }, + "0x45c30fa6a2c7e031fe86e4f1cb5becfde149b980": { + "address": "0x45c30fa6a2c7e031fe86e4f1cb5becfde149b980", + "symbol": "$FREN", + "decimals": 18, + "name": "Frens Club", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x45c30fa6a2c7e031fe86e4f1cb5becfde149b980.png", + "aggregators": ["Rubic", "Rango", "Sonarwatch"], + "occurrences": 3 + }, + "0xdda98a036e03611aa50ff457fffbbe9163981529": { + "address": "0xdda98a036e03611aa50ff457fffbbe9163981529", + "symbol": "FRENZ", + "decimals": 18, + "name": "FRENZ", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xdda98a036e03611aa50ff457fffbbe9163981529.png", + "aggregators": ["Rubic", "Rango", "Sonarwatch"], + "occurrences": 3 + }, + "0x3347453ced85bd288d783d85cdec9b01ab90f9d8": { + "address": "0x3347453ced85bd288d783d85cdec9b01ab90f9d8", + "symbol": "FTW", + "decimals": 9, + "name": "FriendTech33", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x3347453ced85bd288d783d85cdec9b01ab90f9d8.png", + "aggregators": ["Rubic", "Rango", "Sonarwatch"], + "occurrences": 3 + }, + "0x8f4e4221ba88d4e9bb76ecfb91d7c5ce08d7d5b9": { + "address": "0x8f4e4221ba88d4e9bb76ecfb91d7c5ce08d7d5b9", + "symbol": "FU", + "decimals": 18, + "name": "FU Money", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x8f4e4221ba88d4e9bb76ecfb91d7c5ce08d7d5b9.png", + "aggregators": ["Rubic", "Rango", "Sonarwatch"], + "occurrences": 3 + }, + "0xd01cb4171a985571deff48c9dc2f6e153a244d64": { + "address": "0xd01cb4171a985571deff48c9dc2f6e153a244d64", + "symbol": "UARB", + "decimals": 18, + "name": "Wrapped Arbitrum (Universal)", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xd01cb4171a985571deff48c9dc2f6e153a244d64.png", + "aggregators": ["Rubic", "Rango", "Sonarwatch"], + "occurrences": 3 + }, + "0xaa3ecad0cb644c0de72110a905a57667c1a1ca96": { + "address": "0xaa3ecad0cb644c0de72110a905a57667c1a1ca96", + "symbol": "WEIRDO", + "decimals": 9, + "name": "Weirdo [OLD]", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xaa3ecad0cb644c0de72110a905a57667c1a1ca96.png", + "aggregators": ["Rubic", "Rango", "Sonarwatch"], + "occurrences": 3 + }, + "0x8319767a7b602f88e376368dca1b92d38869b9b4": { + "address": "0x8319767a7b602f88e376368dca1b92d38869b9b4", + "symbol": "PEACH", + "decimals": 18, + "name": "Based Peaches", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x8319767a7b602f88e376368dca1b92d38869b9b4.png", + "aggregators": ["Rubic", "Rango", "Sonarwatch"], + "occurrences": 3 + }, + "0xea6f7e7e0f46a9e0f4e2048eb129d879f609d632": { + "address": "0xea6f7e7e0f46a9e0f4e2048eb129d879f609d632", + "symbol": "PERCY", + "decimals": 18, + "name": "Percy", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xea6f7e7e0f46a9e0f4e2048eb129d879f609d632.png", + "aggregators": ["Rubic", "Rango", "Sonarwatch"], + "occurrences": 3 + }, + "0x5ace197d87b614942bc1670eb0ddd55ce4432801": { + "address": "0x5ace197d87b614942bc1670eb0ddd55ce4432801", + "symbol": "QUACK", + "decimals": 18, + "name": "Quack Coin Base", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x5ace197d87b614942bc1670eb0ddd55ce4432801.png", + "aggregators": ["Rubic", "Rango", "Sonarwatch"], + "occurrences": 3 + }, + "0x469fda1fb46fcb4befc0d8b994b516bd28c87003": { + "address": "0x469fda1fb46fcb4befc0d8b994b516bd28c87003", + "symbol": "RAWR", + "decimals": 18, + "name": "Dino Poker", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x469fda1fb46fcb4befc0d8b994b516bd28c87003.png", + "aggregators": ["Rubic", "Rango", "Sonarwatch"], + "occurrences": 3 + }, + "0x26fb8f2f3b26c750ee34005c1930deb232940cfe": { + "address": "0x26fb8f2f3b26c750ee34005c1930deb232940cfe", + "symbol": "RFND", + "decimals": 18, + "name": "Refund (Base)", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x26fb8f2f3b26c750ee34005c1930deb232940cfe.png", + "aggregators": ["Rubic", "Rango", "Sonarwatch"], + "occurrences": 3 + }, + "0xd379002f26ce895d5c5095acb19afba92942c0cf": { + "address": "0xd379002f26ce895d5c5095acb19afba92942c0cf", + "symbol": "ROBO", + "decimals": 18, + "name": "the meme of the future", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xd379002f26ce895d5c5095acb19afba92942c0cf.png", + "aggregators": ["Rubic", "Rango", "Sonarwatch"], + "occurrences": 3 + }, + "0x52c45d3068c937cb1e6b4a7f2c2a66b85056dd24": { + "address": "0x52c45d3068c937cb1e6b4a7f2c2a66b85056dd24", + "symbol": "SHARD", + "decimals": 8, + "name": "Landtorn Shard", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x52c45d3068c937cb1e6b4a7f2c2a66b85056dd24.png", + "aggregators": ["Rubic", "Rango", "Sonarwatch"], + "occurrences": 3 + }, + "0x77c6986a83d5dbb6162ddf4f1747691005b4388a": { + "address": "0x77c6986a83d5dbb6162ddf4f1747691005b4388a", + "symbol": "SHKK", + "decimals": 18, + "name": "Shakaka", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x77c6986a83d5dbb6162ddf4f1747691005b4388a.png", + "aggregators": ["Rubic", "Rango", "Sonarwatch"], + "occurrences": 3 + }, + "0xfe4717f60ac5603dc6863700cd8ecf805908688d": { + "address": "0xfe4717f60ac5603dc6863700cd8ecf805908688d", + "symbol": "STRM", + "decimals": 18, + "name": "Streamer Inu", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xfe4717f60ac5603dc6863700cd8ecf805908688d.png", + "aggregators": ["Rubic", "Rango", "Sonarwatch"], + "occurrences": 3 + }, + "0xa1bf915363b533f5991dbada8c6c42fa0ce58fb8": { + "address": "0xa1bf915363b533f5991dbada8c6c42fa0ce58fb8", + "symbol": "SYN", + "decimals": 18, + "name": "Syn Dog", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xa1bf915363b533f5991dbada8c6c42fa0ce58fb8.png", + "aggregators": ["Rubic", "Rango", "Sonarwatch"], + "occurrences": 3 + }, + "0xce74702e67e3127613f3465384282bad77757ca3": { + "address": "0xce74702e67e3127613f3465384282bad77757ca3", + "symbol": "ST", + "decimals": 18, + "name": "Social Trade", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xce74702e67e3127613f3465384282bad77757ca3.png", + "aggregators": ["Rubic", "Rango", "Sonarwatch"], + "occurrences": 3 + }, + "0x97b959385dfdcaf252223838746beb232ac601aa": { + "address": "0x97b959385dfdcaf252223838746beb232ac601aa", + "symbol": "AIM", + "decimals": 18, + "name": "AI Market Compass", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x97b959385dfdcaf252223838746beb232ac601aa.png", + "aggregators": ["Rubic", "Rango", "Sonarwatch"], + "occurrences": 3 + }, + "0x2b1d36f5b61addaf7da7ebbd11b35fd8cfb0de31": { + "address": "0x2b1d36f5b61addaf7da7ebbd11b35fd8cfb0de31", + "symbol": "ITP", + "decimals": 18, + "name": "Interport Token", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x2b1d36f5b61addaf7da7ebbd11b35fd8cfb0de31.png", + "aggregators": ["Rubic", "Rango", "Sonarwatch"], + "occurrences": 3 + }, + "0x73e2a6320314883ff8cc08b53f1460a5f4c47f2c": { + "address": "0x73e2a6320314883ff8cc08b53f1460a5f4c47f2c", + "symbol": "HAI", + "decimals": 8, + "name": "Hacken", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x73e2a6320314883ff8cc08b53f1460a5f4c47f2c.png", + "aggregators": ["Rubic", "Rango", "Sonarwatch"], + "occurrences": 3 + }, + "0x45f368693eee8e3610270f82085784c1c8ac124b": { + "address": "0x45f368693eee8e3610270f82085784c1c8ac124b", + "symbol": "QVRS", + "decimals": 18, + "name": "QVRS", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x45f368693eee8e3610270f82085784c1c8ac124b.png", + "aggregators": ["Rubic", "Rango", "Sonarwatch"], + "occurrences": 3 + }, + "0x8b52f46a52d86c131222ee14167da6a847bdb84a": { + "address": "0x8b52f46a52d86c131222ee14167da6a847bdb84a", + "symbol": "ETHO", + "decimals": 18, + "name": "Etho Protocol", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x8b52f46a52d86c131222ee14167da6a847bdb84a.png", + "aggregators": ["Rubic", "Rango", "Sonarwatch"], + "occurrences": 3 + }, + "0x3159fb5589acd6bf9f82eb0efe8382ed55aed8fd": { + "address": "0x3159fb5589acd6bf9f82eb0efe8382ed55aed8fd", + "symbol": "APU", + "decimals": 18, + "name": "Apu Apustaja", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x3159fb5589acd6bf9f82eb0efe8382ed55aed8fd.png", + "aggregators": ["Rubic", "Rango", "Sonarwatch"], + "occurrences": 3 + }, + "0x4194f4e29d652656b6dc84f10363482c5ac101b5": { + "address": "0x4194f4e29d652656b6dc84f10363482c5ac101b5", + "symbol": "MPAA", + "decimals": 18, + "name": "MPAA", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x4194f4e29d652656b6dc84f10363482c5ac101b5.png", + "aggregators": ["Rubic", "Rango", "Sonarwatch"], + "occurrences": 3 + }, + "0x21b9d428eb20fa075a29d51813e57bab85406620": { + "address": "0x21b9d428eb20fa075a29d51813e57bab85406620", + "symbol": "SYPHER", + "decimals": 18, + "name": "Sypher", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x21b9d428eb20fa075a29d51813e57bab85406620.png", + "aggregators": ["Rubic", "Rango", "Sonarwatch"], + "occurrences": 3 + }, + "0x3eeec801cef575b876d253ab06d75251f67d827d": { + "address": "0x3eeec801cef575b876d253ab06d75251f67d827d", + "symbol": "DCM", + "decimals": 18, + "name": "Ducky City", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x3eeec801cef575b876d253ab06d75251f67d827d.png", + "aggregators": ["Rubic", "Rango", "Sonarwatch"], + "occurrences": 3 + }, + "0x67027f972671e6157f0e63632d2862fd4e96796a": { + "address": "0x67027f972671e6157f0e63632d2862fd4e96796a", + "symbol": "WNETZ", + "decimals": 18, + "name": "Wrapped NETZ", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x67027f972671e6157f0e63632d2862fd4e96796a.png", + "aggregators": ["Rubic", "Rango", "Sonarwatch"], + "occurrences": 3 + }, + "0xd1f398d6b3e5e2387e413831e206cfeb5fc1dcee": { + "address": "0xd1f398d6b3e5e2387e413831e206cfeb5fc1dcee", + "symbol": "PUBLX", + "decimals": 18, + "name": "PUBLC", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xd1f398d6b3e5e2387e413831e206cfeb5fc1dcee.png", + "aggregators": ["Rubic", "Rango", "Sonarwatch"], + "occurrences": 3 + }, + "0x1c555eee8018fee4fbca4bb657c5f175601e3ed7": { + "address": "0x1c555eee8018fee4fbca4bb657c5f175601e3ed7", + "symbol": "HUMO", + "decimals": 18, + "name": "HUMO", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x1c555eee8018fee4fbca4bb657c5f175601e3ed7.png", + "aggregators": ["Rubic", "Rango", "Sonarwatch"], + "occurrences": 3 + }, + "0xb8e564b206032bbcda2c3978bc371da52152f72e": { + "address": "0xb8e564b206032bbcda2c3978bc371da52152f72e", + "symbol": "BASEX", + "decimals": 18, + "name": "Base Terminal", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xb8e564b206032bbcda2c3978bc371da52152f72e.png", + "aggregators": ["Rubic", "Rango", "Sonarwatch"], + "occurrences": 3 + }, + "0x5dc2085fe510bbaaba2119d71b09c25098caca3f": { + "address": "0x5dc2085fe510bbaaba2119d71b09c25098caca3f", + "symbol": "RYIU", + "decimals": 9, + "name": "RYI Unity", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x5dc2085fe510bbaaba2119d71b09c25098caca3f.png", + "aggregators": ["Rubic", "Rango", "Sonarwatch"], + "occurrences": 3 + }, + "0x3942cae8bb9fc8f24fe627b30b6e7461e5662ba7": { + "address": "0x3942cae8bb9fc8f24fe627b30b6e7461e5662ba7", + "symbol": "BAILEY", + "decimals": 18, + "name": "Golden Bailey", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x3942cae8bb9fc8f24fe627b30b6e7461e5662ba7.png", + "aggregators": ["Rubic", "Rango", "Sonarwatch"], + "occurrences": 3 + }, + "0x1d69c205416c683e3d0efc93b76a78ee7755945c": { + "address": "0x1d69c205416c683e3d0efc93b76a78ee7755945c", + "symbol": "BOOTS", + "decimals": 18, + "name": "boots", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x1d69c205416c683e3d0efc93b76a78ee7755945c.png", + "aggregators": ["Rubic", "Rango", "Sonarwatch"], + "occurrences": 3 + }, + "0xbc1852f8940991d91bd2b09a5abb5e7b8092a16c": { + "address": "0xbc1852f8940991d91bd2b09a5abb5e7b8092a16c", + "symbol": "BASEPRINTER", + "decimals": 18, + "name": "BasePrinter", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xbc1852f8940991d91bd2b09a5abb5e7b8092a16c.png", + "aggregators": ["Rubic", "Rango", "Sonarwatch"], + "occurrences": 3 + }, + "0xe12acf5bb21654195a498c2fbd49fff801a3a02d": { + "address": "0xe12acf5bb21654195a498c2fbd49fff801a3a02d", + "symbol": "POP", + "decimals": 18, + "name": "Proof of Presence", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xe12acf5bb21654195a498c2fbd49fff801a3a02d.png", + "aggregators": ["Rubic", "Rango", "Sonarwatch"], + "occurrences": 3 + }, + "0x55027a5b06f4340cc4c82dcc74c90ca93dcb173e": { + "address": "0x55027a5b06f4340cc4c82dcc74c90ca93dcb173e", + "symbol": "TAD", + "decimals": 18, + "name": "Tadpole", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x55027a5b06f4340cc4c82dcc74c90ca93dcb173e.png", + "aggregators": ["Rubic", "Rango", "Sonarwatch"], + "occurrences": 3 + }, + "0x000000000000a59351f61b598e8da953b9e041ec": { + "address": "0x000000000000a59351f61b598e8da953b9e041ec", + "symbol": "GG", + "decimals": 18, + "name": "Gun Game", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x000000000000a59351f61b598e8da953b9e041ec.png", + "aggregators": ["Rubic", "Rango", "Sonarwatch"], + "occurrences": 3 + }, + "0xd91d07e4949a858d29005d339610db2402ef5b73": { + "address": "0xd91d07e4949a858d29005d339610db2402ef5b73", + "symbol": "DGOLD", + "decimals": 18, + "name": "DataGold", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xd91d07e4949a858d29005d339610db2402ef5b73.png", + "aggregators": ["Rubic", "Rango", "Sonarwatch"], + "occurrences": 3 + }, + "0x08bea95ec37829cbbda9b556f340464d38546160": { + "address": "0x08bea95ec37829cbbda9b556f340464d38546160", + "symbol": "BABYDEGEN", + "decimals": 18, + "name": "BABY DEGEN", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x08bea95ec37829cbbda9b556f340464d38546160.png", + "aggregators": ["Rubic", "Rango", "Sonarwatch"], + "occurrences": 3 + }, + "0xf653e8b6fcbd2a63246c6b7722d1e9d819611241": { + "address": "0xf653e8b6fcbd2a63246c6b7722d1e9d819611241", + "symbol": "UCRO", + "decimals": 18, + "name": "Wrapped Cronos (Universal)", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xf653e8b6fcbd2a63246c6b7722d1e9d819611241.png", + "aggregators": ["Rubic", "Rango", "Sonarwatch"], + "occurrences": 3 + }, + "0x60222751504796934bddee8218f9725f0c95d2c1": { + "address": "0x60222751504796934bddee8218f9725f0c95d2c1", + "symbol": "SIMP", + "decimals": 18, + "name": "Simps", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x60222751504796934bddee8218f9725f0c95d2c1.png", + "aggregators": ["Rubic", "Rango", "Sonarwatch"], + "occurrences": 3 + }, + "0xd064c53f043d5aee2ac9503b13ee012bf2def1d0": { + "address": "0xd064c53f043d5aee2ac9503b13ee012bf2def1d0", + "symbol": "DEFIDO", + "decimals": 18, + "name": "DeFido", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xd064c53f043d5aee2ac9503b13ee012bf2def1d0.png", + "aggregators": ["Rubic", "Rango", "Sonarwatch"], + "occurrences": 3 + }, + "0x21eceaf3bf88ef0797e3927d855ca5bb569a47fc": { + "address": "0x21eceaf3bf88ef0797e3927d855ca5bb569a47fc", + "symbol": "VOID", + "decimals": 18, + "name": "The Void", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x21eceaf3bf88ef0797e3927d855ca5bb569a47fc.png", + "aggregators": ["Rubic", "Rango", "Sonarwatch"], + "occurrences": 3 + }, + "0x87c211144b1d9bdaa5a791b8099ea4123dc31d21": { + "address": "0x87c211144b1d9bdaa5a791b8099ea4123dc31d21", + "symbol": "BCP", + "decimals": 18, + "name": "BlockChainPeople", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x87c211144b1d9bdaa5a791b8099ea4123dc31d21.png", + "aggregators": ["Rubic", "Rango", "Sonarwatch"], + "occurrences": 3 + }, + "0xe9507980a8bd4451ac0e7f6fcd3ec98b9ac83b52": { + "address": "0xe9507980a8bd4451ac0e7f6fcd3ec98b9ac83b52", + "symbol": "WAIFU", + "decimals": 18, + "name": "WAIFU", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xe9507980a8bd4451ac0e7f6fcd3ec98b9ac83b52.png", + "aggregators": ["Rubic", "Rango", "Sonarwatch"], + "occurrences": 3 + }, + "0xf2c862ba9edba3579dd8b37389deea0528c625c2": { + "address": "0xf2c862ba9edba3579dd8b37389deea0528c625c2", + "symbol": "$WARPIE", + "decimals": 18, + "name": "Warpie", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xf2c862ba9edba3579dd8b37389deea0528c625c2.png", + "aggregators": ["Rubic", "Rango", "Sonarwatch"], + "occurrences": 3 + }, + "0x5cc5e64ab764a0f1e97f23984e20fd4528356a6a": { + "address": "0x5cc5e64ab764a0f1e97f23984e20fd4528356a6a", + "symbol": "XRGB", + "decimals": 18, + "name": "XRGB", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x5cc5e64ab764a0f1e97f23984e20fd4528356a6a.png", + "aggregators": ["Rubic", "Rango", "Sonarwatch"], + "occurrences": 3 + }, + "0xbc404429558292ee2d769e57d57d6e74bbd2792d": { + "address": "0xbc404429558292ee2d769e57d57d6e74bbd2792d", + "symbol": "SUSX", + "decimals": 18, + "name": "Savings USX", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xbc404429558292ee2d769e57d57d6e74bbd2792d.png", + "aggregators": ["Rubic", "Rango", "Sonarwatch"], + "occurrences": 3 + }, + "0x6bc40d4099f9057b23af309c08d935b890d7adc0": { + "address": "0x6bc40d4099f9057b23af309c08d935b890d7adc0", + "symbol": "SNAIL", + "decimals": 18, + "name": "SnailBrook", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x6bc40d4099f9057b23af309c08d935b890d7adc0.png", + "aggregators": ["Rubic", "Rango", "Sonarwatch"], + "occurrences": 3 + }, + "0x255f1b39172f65dc6406b8bee8b08155c45fe1b6": { + "address": "0x255f1b39172f65dc6406b8bee8b08155c45fe1b6", + "symbol": "HARAMBE", + "decimals": 18, + "name": "HarambeCoin", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x255f1b39172f65dc6406b8bee8b08155c45fe1b6.png", + "aggregators": ["Rubic", "Rango", "Sonarwatch"], + "occurrences": 3 + }, + "0x82b0e1a2374ea0198f62a48b14ffab53db6c1e36": { + "address": "0x82b0e1a2374ea0198f62a48b14ffab53db6c1e36", + "symbol": "PEGG", + "decimals": 18, + "name": "PokPok Golden Egg", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x82b0e1a2374ea0198f62a48b14ffab53db6c1e36.png", + "aggregators": ["Rubic", "Rango", "Sonarwatch"], + "occurrences": 3 + }, + "0x35bfe9427d37cec78ea1eb9fa922f12ae8a32547": { + "address": "0x35bfe9427d37cec78ea1eb9fa922f12ae8a32547", + "symbol": "ETHPRINTER", + "decimals": 18, + "name": "ETH Printer", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x35bfe9427d37cec78ea1eb9fa922f12ae8a32547.png", + "aggregators": ["Rubic", "Rango", "Sonarwatch"], + "occurrences": 3 + }, + "0x174e33ef2effa0a4893d97dda5db4044cc7993a3": { + "address": "0x174e33ef2effa0a4893d97dda5db4044cc7993a3", + "symbol": "KEREN", + "decimals": 18, + "name": "Keren", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x174e33ef2effa0a4893d97dda5db4044cc7993a3.png", + "aggregators": ["Rubic", "Rango", "Sonarwatch"], + "occurrences": 3 + }, + "0xa202b2b7b4d2fe56bf81492ffdda657fe512de07": { + "address": "0xa202b2b7b4d2fe56bf81492ffdda657fe512de07", + "symbol": "BABYMIGGLES", + "decimals": 18, + "name": "Baby Miggles", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xa202b2b7b4d2fe56bf81492ffdda657fe512de07.png", + "aggregators": ["Rubic", "Rango", "Sonarwatch"], + "occurrences": 3 + }, + "0xd47f3e45b23b7594f5d5e1ccfde63237c60be49e": { + "address": "0xd47f3e45b23b7594f5d5e1ccfde63237c60be49e", + "symbol": "BSX", + "decimals": 18, + "name": "BSX", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xd47f3e45b23b7594f5d5e1ccfde63237c60be49e.png", + "aggregators": ["Rubic", "Rango", "Sonarwatch"], + "occurrences": 3 + }, + "0x6a27cd26a373530835b9fe7ac472b3e080070f64": { + "address": "0x6a27cd26a373530835b9fe7ac472b3e080070f64", + "symbol": "BAI", + "decimals": 18, + "name": "BlockAI", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x6a27cd26a373530835b9fe7ac472b3e080070f64.png", + "aggregators": ["Rubic", "Rango", "Sonarwatch"], + "occurrences": 3 + }, + "0xa69f80524381275a7ffdb3ae01c54150644c8792": { + "address": "0xa69f80524381275a7ffdb3ae01c54150644c8792", + "symbol": "SUP", + "decimals": 18, + "name": "Superfluid Token", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xa69f80524381275a7ffdb3ae01c54150644c8792.png", + "aggregators": ["Metamask", "Rubic"], + "occurrences": 2 + }, + "0xd76f5faf6888e24d9f04bf92a0c8b921fe4390e0": { + "address": "0xd76f5faf6888e24d9f04bf92a0c8b921fe4390e0", + "symbol": "WBRL", + "decimals": 18, + "name": "Brazilian Real", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xd76f5faf6888e24d9f04bf92a0c8b921fe4390e0.png", + "aggregators": ["Metamask", "Rubic"], + "occurrences": 2 + }, + "0x337e7456b420bd3481e7fa61fa9850343d610d34": { + "address": "0x337e7456b420bd3481e7fa61fa9850343d610d34", + "symbol": "WMXN", + "decimals": 18, + "name": "Mexican Peso", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x337e7456b420bd3481e7fa61fa9850343d610d34.png", + "aggregators": ["Metamask", "Rubic"], + "occurrences": 2 + }, + "0x8a1d45e102e886510e891d2ec656a708991e2d76": { + "address": "0x8a1d45e102e886510e891d2ec656a708991e2d76", + "symbol": "WCOP", + "decimals": 18, + "name": "Colombian Peso", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x8a1d45e102e886510e891d2ec656a708991e2d76.png", + "aggregators": ["Metamask", "Rubic"], + "occurrences": 2 + }, + "0x61d450a098b6a7f69fc4b98ce68198fe59768651": { + "address": "0x61d450a098b6a7f69fc4b98ce68198fe59768651", + "symbol": "WCLP", + "decimals": 18, + "name": "Chilean Peso", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x61d450a098b6a7f69fc4b98ce68198fe59768651.png", + "aggregators": ["Metamask", "Rubic"], + "occurrences": 2 + }, + "0x4f34c8b3b5fb6d98da888f0fea543d4d9c9f2ebe": { + "address": "0x4f34c8b3b5fb6d98da888f0fea543d4d9c9f2ebe", + "symbol": "WPEN", + "decimals": 18, + "name": "Peruvian Sol", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x4f34c8b3b5fb6d98da888f0fea543d4d9c9f2ebe.png", + "aggregators": ["Metamask", "Rubic"], + "occurrences": 2 + }, + "0xb3b32f9f8827d4634fe7d973fa1034ec9fddb3b3": { + "address": "0xb3b32f9f8827d4634fe7d973fa1034ec9fddb3b3", + "symbol": "B3", + "decimals": 18, + "name": "B3 (Base)", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xb3b32f9f8827d4634fe7d973fa1034ec9fddb3b3.png", + "aggregators": [ + "CoinGecko", + "1inch", + "LiFi", + "Socket", + "Rubic", + "Squid", + "Rango", + "Sonarwatch" + ], + "occurrences": 8 + }, + "0xb20a4bd059f5914a2f8b9c18881c637f79efb7df": { + "address": "0xb20a4bd059f5914a2f8b9c18881c637f79efb7df", + "symbol": "ADS", + "decimals": 11, + "name": "Adshares", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xb20a4bd059f5914a2f8b9c18881c637f79efb7df.png", + "aggregators": [ + "CoinGecko", + "LiFi", + "Socket", + "Rubic", + "Squid", + "Rango", + "Sonarwatch" + ], + "occurrences": 7 + }, + "0x211cc4dd073734da055fbf44a2b4667d5e5fe5d2": { + "address": "0x211cc4dd073734da055fbf44a2b4667d5e5fe5d2", + "symbol": "SUSDE", + "decimals": 18, + "name": "SUSDE", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x211cc4dd073734da055fbf44a2b4667d5e5fe5d2.png", + "aggregators": [ + "CoinGecko", + "1inch", + "LiFi", + "Socket", + "Rubic", + "Squid", + "Rango" + ], + "occurrences": 7 + }, + "0xff0c532fdb8cd566ae169c1cb157ff2bdc83e105": { + "address": "0xff0c532fdb8cd566ae169c1cb157ff2bdc83e105", + "symbol": "FREN PET", + "decimals": 18, + "name": "Fren Pet", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xff0c532fdb8cd566ae169c1cb157ff2bdc83e105.png", + "aggregators": [ + "CoinGecko", + "LiFi", + "Rubic", + "Rango", + "Sonarwatch", + "SushiSwap" + ], + "occurrences": 6 + }, + "0x555fff48549c1a25a723bd8e7ed10870d82e8379": { + "address": "0x555fff48549c1a25a723bd8e7ed10870d82e8379", + "symbol": "BIM", + "decimals": 18, + "name": "BIM", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x555fff48549c1a25a723bd8e7ed10870d82e8379.png", + "aggregators": [ + "CoinGecko", + "LiFi", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 6 + }, + "0x432036208d2717394d2614d6697c46df3ed69540": { + "address": "0x432036208d2717394d2614d6697c46df3ed69540", + "symbol": "SYN", + "decimals": 18, + "name": "Synapse", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x432036208d2717394d2614d6697c46df3ed69540.png", + "aggregators": [ + "CoinGecko", + "LiFi", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 6 + }, + "0xe231db5f348d709239ef1741ea30961b3b635a61": { + "address": "0xe231db5f348d709239ef1741ea30961b3b635a61", + "symbol": "YNETHX", + "decimals": 18, + "name": "ynETH MAX", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xe231db5f348d709239ef1741ea30961b3b635a61.png", + "aggregators": [ + "CoinGecko", + "LiFi", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 6 + }, + "0xf3dd141109dfe8e4c006f88a2a8747a086e7c1f8": { + "address": "0xf3dd141109dfe8e4c006f88a2a8747a086e7c1f8", + "symbol": "HOT", + "decimals": 18, + "name": "Holo", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xf3dd141109dfe8e4c006f88a2a8747a086e7c1f8.png", + "aggregators": [ + "CoinGecko", + "LiFi", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 6 + }, + "0xdec933e2392ad908263e70a386fbf34e703ffe8f": { + "address": "0xdec933e2392ad908263e70a386fbf34e703ffe8f", + "symbol": "WBCOIN", + "decimals": 18, + "name": "Wrapped bCOIN", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xdec933e2392ad908263e70a386fbf34e703ffe8f.png", + "aggregators": [ + "CoinGecko", + "LiFi", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 6 + }, + "0xe4c3461a20f50dad7b9e88ca0222a255c4126fc0": { + "address": "0xe4c3461a20f50dad7b9e88ca0222a255c4126fc0", + "symbol": "XION", + "decimals": 6, + "name": "XION", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xe4c3461a20f50dad7b9e88ca0222a255c4126fc0.png", + "aggregators": [ + "CoinGecko", + "LiFi", + "Rubic", + "Squid", + "Rango", + "Sonarwatch" + ], + "occurrences": 6 + }, + "0xcbd06e5a2b0c65597161de254aa074e489deb510": { + "address": "0xcbd06e5a2b0c65597161de254aa074e489deb510", + "symbol": "CBDOGE", + "decimals": 8, + "name": "Coinbase Wrapped DOGE", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xcbd06e5a2b0c65597161de254aa074e489deb510.png", + "aggregators": ["CoinGecko", "LiFi", "Rubic", "Squid", "Rango"], + "occurrences": 5 + }, + "0xcb111e6a2a3bde90856d299d61341ac302167d23": { + "address": "0xcb111e6a2a3bde90856d299d61341ac302167d23", + "symbol": "CBMEGA", + "decimals": 18, + "name": "Coinbase Wrapped MEGA", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xcb111e6a2a3bde90856d299d61341ac302167d23.png", + "aggregators": ["Metamask", "1inch", "LiFi", "Rubic", "Rango"], + "occurrences": 5 + }, + "0xcb585250f852c6c6bf90434ab21a00f02833a4af": { + "address": "0xcb585250f852c6c6bf90434ab21a00f02833a4af", + "symbol": "CBXRP", + "decimals": 6, + "name": "Coinbase Wrapped XRP", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xcb585250f852c6c6bf90434ab21a00f02833a4af.png", + "aggregators": ["CoinGecko", "LiFi", "Rubic", "Squid", "Rango"], + "occurrences": 5 + }, + "0xb38266e0e9d9681b77aeb0a280e98131b953f865": { + "address": "0xb38266e0e9d9681b77aeb0a280e98131b953f865", + "symbol": "DOVU", + "decimals": 8, + "name": "DOVU", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xb38266e0e9d9681b77aeb0a280e98131b953f865.png", + "aggregators": [ + "CoinGecko", + "LiFi", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x16ee7ecac70d1028e7712751e2ee6ba808a7dd92": { + "address": "0x16ee7ecac70d1028e7712751e2ee6ba808a7dd92", + "symbol": "FUN", + "decimals": 18, + "name": "Sport.fun", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x16ee7ecac70d1028e7712751e2ee6ba808a7dd92.png", + "aggregators": ["CoinGecko", "Socket", "Rubic", "Rango"], + "occurrences": 4 + }, + "0xc9d23ed2adb0f551369946bd377f8644ce1ca5c4": { + "address": "0xc9d23ed2adb0f551369946bd377f8644ce1ca5c4", + "symbol": "HYPER", + "decimals": 18, + "name": "Hyperlane", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xc9d23ed2adb0f551369946bd377f8644ce1ca5c4.png", + "aggregators": [ + "CoinGecko", + "LiFi", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0xdae49c25fad3a62a8e8bfb6da12c46be611f9f7a": { + "address": "0xdae49c25fad3a62a8e8bfb6da12c46be611f9f7a", + "symbol": "KRL", + "decimals": 18, + "name": "KRYLL", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xdae49c25fad3a62a8e8bfb6da12c46be611f9f7a.png", + "aggregators": ["CoinGecko", "LiFi", "Socket", "Rubic", "Rango"], + "occurrences": 5 + }, + "0x1f16e03c1a5908818f47f6ee7bb16690b40d0671": { + "address": "0x1f16e03c1a5908818f47f6ee7bb16690b40d0671", + "symbol": "RECALL", + "decimals": 18, + "name": "Recall", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x1f16e03c1a5908818f47f6ee7bb16690b40d0671.png", + "aggregators": ["CoinGecko", "Rubic", "Squid", "Rango"], + "occurrences": 4 + }, + "0x729f75aff28c726e32403e80cef2afb518cfbfa7": { + "address": "0x729f75aff28c726e32403e80cef2afb518cfbfa7", + "symbol": "WABASEURC", + "decimals": 6, + "name": "Wrapped Aave Base EURC", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x729f75aff28c726e32403e80cef2afb518cfbfa7.png", + "aggregators": ["CoinGecko", "1inch", "LiFi", "Rubic", "Rango"], + "occurrences": 5 + }, + "0x88b1cd4b430d95b406e382c3cdbae54697a0286e": { + "address": "0x88b1cd4b430d95b406e382c3cdbae54697a0286e", + "symbol": "WABASGHO", + "decimals": 18, + "name": "WABASGHO", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x88b1cd4b430d95b406e382c3cdbae54697a0286e.png", + "aggregators": ["CoinGecko", "1inch", "LiFi", "Rubic", "Rango"], + "occurrences": 5 + }, + "0x269cae7dc59803e5c596c95756faeebb6030e0af": { + "address": "0x269cae7dc59803e5c596c95756faeebb6030e0af", + "symbol": "MXNE", + "decimals": 6, + "name": "Real MXN", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x269cae7dc59803e5c596c95756faeebb6030e0af.png", + "aggregators": [ + "CoinGecko", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x3a43aec53490cb9fa922847385d82fe25d0e9de7": { + "address": "0x3a43aec53490cb9fa922847385d82fe25d0e9de7", + "symbol": "YOETH", + "decimals": 18, + "name": "Yield Optimizer ETH", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x3a43aec53490cb9fa922847385d82fe25d0e9de7.png", + "aggregators": [ + "CoinGecko", + "LiFi", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0xf8f10f39116716e89498c1c5e94137ada11b2bc7": { + "address": "0xf8f10f39116716e89498c1c5e94137ada11b2bc7", + "symbol": "WABASEZETH", + "decimals": 18, + "name": "Wrapped Aave Base ezETH", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xf8f10f39116716e89498c1c5e94137ada11b2bc7.png", + "aggregators": ["CoinGecko", "1inch", "LiFi", "Rubic", "Rango"], + "occurrences": 5 + }, + "0xe298b938631f750dd409fb18227c4a23dcdaab9b": { + "address": "0xe298b938631f750dd409fb18227c4a23dcdaab9b", + "symbol": "WABASWETH", + "decimals": 18, + "name": "Wrapped Aave Base WETH", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xe298b938631f750dd409fb18227c4a23dcdaab9b.png", + "aggregators": ["CoinGecko", "1inch", "LiFi", "Rubic", "Rango"], + "occurrences": 5 + }, + "0x4acc81dc9c03e5329a2c19763a1d10ba9308339f": { + "address": "0x4acc81dc9c03e5329a2c19763a1d10ba9308339f", + "symbol": "BOON", + "decimals": 18, + "name": "Base Baboon", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x4acc81dc9c03e5329a2c19763a1d10ba9308339f.png", + "aggregators": [ + "CoinGecko", + "Rubic", + "Squid", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x1217bfe6c773eec6cc4a38b5dc45b92292b6e189": { + "address": "0x1217bfe6c773eec6cc4a38b5dc45b92292b6e189", + "symbol": "OUSDT", + "decimals": 6, + "name": "OpenUSDT", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x1217bfe6c773eec6cc4a38b5dc45b92292b6e189.png", + "aggregators": [ + "CoinGecko", + "LiFi", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0xc768c589647798a6ee01a91fde98ef2ed046dbd6": { + "address": "0xc768c589647798a6ee01a91fde98ef2ed046dbd6", + "symbol": "WABASUSDC", + "decimals": 6, + "name": "WABASUSDC", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xc768c589647798a6ee01a91fde98ef2ed046dbd6.png", + "aggregators": ["CoinGecko", "1inch", "LiFi", "Rubic", "Rango"], + "occurrences": 5 + }, + "0x306acd0c07c430abbbb2e74ef7bde94f32a898c0": { + "address": "0x306acd0c07c430abbbb2e74ef7bde94f32a898c0", + "symbol": "SEDA", + "decimals": 18, + "name": "SEDA", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x306acd0c07c430abbbb2e74ef7bde94f32a898c0.png", + "aggregators": [ + "CoinGecko", + "LiFi", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0xfb8718a69aed7726afb3f04d2bd4bfde1bdcb294": { + "address": "0xfb8718a69aed7726afb3f04d2bd4bfde1bdcb294", + "symbol": "TRYB", + "decimals": 6, + "name": "BiLira", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xfb8718a69aed7726afb3f04d2bd4bfde1bdcb294.png", + "aggregators": [ + "CoinGecko", + "LiFi", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0xef73611f98da6e57e0776317957af61b59e09ed7": { + "address": "0xef73611f98da6e57e0776317957af61b59e09ed7", + "symbol": "KENDU", + "decimals": 18, + "name": "Kendu Inu", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xef73611f98da6e57e0776317957af61b59e09ed7.png", + "aggregators": [ + "CoinGecko", + "Rubic", + "Squid", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0xd52333441c0553facb259600fa833a69186893a5": { + "address": "0xd52333441c0553facb259600fa833a69186893a5", + "symbol": "PAAL", + "decimals": 18, + "name": "PAAL AI", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xd52333441c0553facb259600fa833a69186893a5.png", + "aggregators": [ + "CoinGecko", + "LiFi", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x06d998a2c64caf9feb2caf3ca8872740ef013122": { + "address": "0x06d998a2c64caf9feb2caf3ca8872740ef013122", + "symbol": "DCB", + "decimals": 18, + "name": "Decubate", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x06d998a2c64caf9feb2caf3ca8872740ef013122.png", + "aggregators": [ + "CoinGecko", + "Rubic", + "Squid", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x758a3e0b1f842c9306b783f8a4078c6c8c03a270": { + "address": "0x758a3e0b1f842c9306b783f8a4078c6c8c03a270", + "symbol": "USD0", + "decimals": 18, + "name": "Usual USD", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x758a3e0b1f842c9306b783f8a4078c6c8c03a270.png", + "aggregators": [ + "CoinGecko", + "LiFi", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x03569cc076654f82679c4ba2124d64774781b01d": { + "address": "0x03569cc076654f82679c4ba2124d64774781b01d", + "symbol": "BOLD", + "decimals": 18, + "name": "BOLD", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x03569cc076654f82679c4ba2124d64774781b01d.png", + "aggregators": ["CoinGecko", "LiFi", "Socket", "Rubic", "Rango"], + "occurrences": 5 + }, + "0x7750c092e284e2c7366f50c8306f43c7eb2e82a2": { + "address": "0x7750c092e284e2c7366f50c8306f43c7eb2e82a2", + "symbol": "OVER", + "decimals": 18, + "name": "Overtime", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x7750c092e284e2c7366f50c8306f43c7eb2e82a2.png", + "aggregators": [ + "CoinGecko", + "LiFi", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x526728dbc96689597f85ae4cd716d4f7fccbae9d": { + "address": "0x526728dbc96689597f85ae4cd716d4f7fccbae9d", + "symbol": "MSUSD", + "decimals": 18, + "name": "MSUSD", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x526728dbc96689597f85ae4cd716d4f7fccbae9d.png", + "aggregators": ["CoinGecko", "LiFi", "Rubic", "Squid", "Rango"], + "occurrences": 5 + }, + "0x7ba6f01772924a82d9626c126347a28299e98c98": { + "address": "0x7ba6f01772924a82d9626c126347a28299e98c98", + "symbol": "MSETH", + "decimals": 18, + "name": "MSETH", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x7ba6f01772924a82d9626c126347a28299e98c98.png", + "aggregators": ["CoinGecko", "LiFi", "Rubic", "Squid", "Rango"], + "occurrences": 5 + }, + "0x4acd4d03af6f9cc0fb7c5f0868b7b6287d7969c5": { + "address": "0x4acd4d03af6f9cc0fb7c5f0868b7b6287d7969c5", + "symbol": "USUAL", + "decimals": 18, + "name": "Usual", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x4acd4d03af6f9cc0fb7c5f0868b7b6287d7969c5.png", + "aggregators": [ + "CoinGecko", + "LiFi", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x084382d1cc4f4dfd1769b1cc1ac2a9b1f8365e90": { + "address": "0x084382d1cc4f4dfd1769b1cc1ac2a9b1f8365e90", + "symbol": "MODE", + "decimals": 18, + "name": "Mode", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x084382d1cc4f4dfd1769b1cc1ac2a9b1f8365e90.png", + "aggregators": [ + "CoinGecko", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x74ccbe53f77b08632ce0cb91d3a545bf6b8e0979": { + "address": "0x74ccbe53f77b08632ce0cb91d3a545bf6b8e0979", + "symbol": "BOMB", + "decimals": 18, + "name": "Fantom Bomb", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x74ccbe53f77b08632ce0cb91d3a545bf6b8e0979.png", + "aggregators": [ + "CoinGecko", + "LiFi", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x58538e6a46e07434d7e7375bc268d3cb839c0133": { + "address": "0x58538e6a46e07434d7e7375bc268d3cb839c0133", + "symbol": "ENA", + "decimals": 18, + "name": "ENA", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x58538e6a46e07434d7e7375bc268d3cb839c0133.png", + "aggregators": ["CoinGecko", "LiFi", "Socket", "Rubic", "Rango"], + "occurrences": 5 + }, + "0x5d3a1ff2b6bab83b63cd9ad0787074081a52ef34": { + "address": "0x5d3a1ff2b6bab83b63cd9ad0787074081a52ef34", + "symbol": "USDE", + "decimals": 18, + "name": "USDe", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x5d3a1ff2b6bab83b63cd9ad0787074081a52ef34.png", + "aggregators": ["CoinGecko", "LiFi", "Socket", "Rubic", "Rango"], + "occurrences": 5 + }, + "0xd4554bea546efa83c1e6b389ecac40ea999b3e78": { + "address": "0xd4554bea546efa83c1e6b389ecac40ea999b3e78", + "symbol": "SQD", + "decimals": 18, + "name": "SQD", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xd4554bea546efa83c1e6b389ecac40ea999b3e78.png", + "aggregators": ["CoinGecko", "1inch", "LiFi", "Rubic", "Rango"], + "occurrences": 5 + }, + "0xb5130f4767ab0acc579f25a76e8f9e977cb3f948": { + "address": "0xb5130f4767ab0acc579f25a76e8f9e977cb3f948", + "symbol": "GOD", + "decimals": 18, + "name": "Godcoin", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xb5130f4767ab0acc579f25a76e8f9e977cb3f948.png", + "aggregators": ["LiFi", "Socket", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 5 + }, + "0xe1f9ac62a2f34881f6fe0f84322de9d7024c2b8e": { + "address": "0xe1f9ac62a2f34881f6fe0f84322de9d7024c2b8e", + "symbol": "MOCHI", + "decimals": 8, + "name": "Mochi", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xe1f9ac62a2f34881f6fe0f84322de9d7024c2b8e.png", + "aggregators": ["LiFi", "Rubic", "Squid", "Rango", "SushiSwap"], + "occurrences": 5 + }, + "0x4bfaa776991e85e5f8b1255461cbbd216cfc714f": { + "address": "0x4bfaa776991e85e5f8b1255461cbbd216cfc714f", + "symbol": "HOME", + "decimals": 18, + "name": "Home", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x4bfaa776991e85e5f8b1255461cbbd216cfc714f.png", + "aggregators": ["CoinGecko", "LiFi", "Rubic", "Rango"], + "occurrences": 4 + }, + "0xa53887f7e7c1bf5010b8627f1c1ba94fe7a5d6e0": { + "address": "0xa53887f7e7c1bf5010b8627f1c1ba94fe7a5d6e0", + "symbol": "RNBW", + "decimals": 18, + "name": "Rainbow", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xa53887f7e7c1bf5010b8627f1c1ba94fe7a5d6e0.png", + "aggregators": ["CoinGecko", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x35c9e8d97f7e24349e56cd048b30d3eae6fd7ff8": { + "address": "0x35c9e8d97f7e24349e56cd048b30d3eae6fd7ff8", + "symbol": "$WEEDE", + "decimals": 18, + "name": "WeeDE", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x35c9e8d97f7e24349e56cd048b30d3eae6fd7ff8.png", + "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0x4d6d977aacbac1bdd603c7a759986f74a5dfaef8": { + "address": "0x4d6d977aacbac1bdd603c7a759986f74a5dfaef8", + "symbol": "GEAI", + "decimals": 18, + "name": "Georgia by Virtuals", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x4d6d977aacbac1bdd603c7a759986f74a5dfaef8.png", + "aggregators": ["CoinGecko", "Rubic", "Squid", "Rango"], + "occurrences": 4 + }, + "0xb661933d9f24ec34dc0fd6862f086079f864b26f": { + "address": "0xb661933d9f24ec34dc0fd6862f086079f864b26f", + "symbol": "STREET", + "decimals": 18, + "name": "Base Street", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xb661933d9f24ec34dc0fd6862f086079f864b26f.png", + "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0xb55fcd62ed44253c45735bde6703c44100935747": { + "address": "0xb55fcd62ed44253c45735bde6703c44100935747", + "symbol": "APL", + "decimals": 18, + "name": "APOLLO AI by Virtuals", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xb55fcd62ed44253c45735bde6703c44100935747.png", + "aggregators": ["CoinGecko", "Rubic", "Squid", "Rango"], + "occurrences": 4 + }, + "0x8d2757ea27aabf172da4cca4e5474c76016e3dc5": { + "address": "0x8d2757ea27aabf172da4cca4e5474c76016e3dc5", + "symbol": "CLBTC", + "decimals": 18, + "name": "clBTC", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x8d2757ea27aabf172da4cca4e5474c76016e3dc5.png", + "aggregators": ["CoinGecko", "LiFi", "Rubic", "Rango"], + "occurrences": 4 + }, + "0x0830820d1a9aa1554364752d6d8f55c836871b74": { + "address": "0x0830820d1a9aa1554364752d6d8f55c836871b74", + "symbol": "WABASWSTETH", + "decimals": 18, + "name": "Wrapped Aave Base wstETH", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x0830820d1a9aa1554364752d6d8f55c836871b74.png", + "aggregators": ["CoinGecko", "1inch", "Rubic", "Rango"], + "occurrences": 4 + }, + "0x388e543a5a491e7b42e3fbcd127dd6812ea02d0d": { + "address": "0x388e543a5a491e7b42e3fbcd127dd6812ea02d0d", + "symbol": "$PILL", + "decimals": 18, + "name": "Pill", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x388e543a5a491e7b42e3fbcd127dd6812ea02d0d.png", + "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0xbeef050a7485865a7a8d8ca0cc5f7536b7a3443e": { + "address": "0xbeef050a7485865a7a8d8ca0cc5f7536b7a3443e", + "symbol": "STEAKETH", + "decimals": 18, + "name": "Steakhouse ETH (Base) Morpho Vault", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xbeef050a7485865a7a8d8ca0cc5f7536b7a3443e.png", + "aggregators": ["CoinGecko", "LiFi", "Rubic", "Sonarwatch"], + "occurrences": 4 + }, + "0x67543cf0304c19ca62ac95ba82fd4f4b40788dc1": { + "address": "0x67543cf0304c19ca62ac95ba82fd4f4b40788dc1", + "symbol": "RIZ", + "decimals": 8, + "name": "Rivalz Network", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x67543cf0304c19ca62ac95ba82fd4f4b40788dc1.png", + "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0xd61bcf79b26787ae993f75b064d2e3b3cc738c5d": { + "address": "0xd61bcf79b26787ae993f75b064d2e3b3cc738c5d", + "symbol": "UETC", + "decimals": 18, + "name": "Wrapped Ethereum Classic (Universal)", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xd61bcf79b26787ae993f75b064d2e3b3cc738c5d.png", + "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0xe4fcf2d991505089bbb36275570757c1f9800cb0": { + "address": "0xe4fcf2d991505089bbb36275570757c1f9800cb0", + "symbol": "PURR", + "decimals": 18, + "name": "Purrcoin", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xe4fcf2d991505089bbb36275570757c1f9800cb0.png", + "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0xbcbc8cb4d1e8ed048a6276a5e94a3e952660bcbc": { + "address": "0xbcbc8cb4d1e8ed048a6276a5e94a3e952660bcbc", + "symbol": "YOBTC", + "decimals": 8, + "name": "YOBTC", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xbcbc8cb4d1e8ed048a6276a5e94a3e952660bcbc.png", + "aggregators": ["CoinGecko", "LiFi", "Rubic", "Rango"], + "occurrences": 4 + }, + "0x37f24b26bcefbfac7f261b97f8036da98f81a299": { + "address": "0x37f24b26bcefbfac7f261b97f8036da98f81a299", + "symbol": "BRISH", + "decimals": 18, + "name": "Brish", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x37f24b26bcefbfac7f261b97f8036da98f81a299.png", + "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0x23418de10d422ad71c9d5713a2b8991a9c586443": { + "address": "0x23418de10d422ad71c9d5713a2b8991a9c586443", + "symbol": "BGCI", + "decimals": 18, + "name": "Bloomberg Galaxy Crypto Index", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x23418de10d422ad71c9d5713a2b8991a9c586443.png", + "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0xe031b0cd88ca5d41d13db188e4bfc6c0cfa3e5a2": { + "address": "0xe031b0cd88ca5d41d13db188e4bfc6c0cfa3e5a2", + "symbol": "NKMIND", + "decimals": 18, + "name": "Satoshi’s Mind by Virtuals", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xe031b0cd88ca5d41d13db188e4bfc6c0cfa3e5a2.png", + "aggregators": ["CoinGecko", "Rubic", "Squid", "Rango"], + "occurrences": 4 + }, + "0xfd9fa4f785331ce88b5af8994a047ba087c705d8": { + "address": "0xfd9fa4f785331ce88b5af8994a047ba087c705d8", + "symbol": "$BLUE", + "decimals": 18, + "name": "blue on base", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xfd9fa4f785331ce88b5af8994a047ba087c705d8.png", + "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0xff05e1bd696900dc6a52ca35ca61bb1024eda8e2": { + "address": "0xff05e1bd696900dc6a52ca35ca61bb1024eda8e2", + "symbol": "WTMSTR", + "decimals": 18, + "name": "Wrapped MicroStrategy Incorporated ST0x", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xff05e1bd696900dc6a52ca35ca61bb1024eda8e2.png", + "aggregators": ["CoinGecko", "LiFi", "Rubic", "Rango"], + "occurrences": 4 + }, + "0x99ba92234e0f0f7c2a16cb087e7307ade19cab1c": { + "address": "0x99ba92234e0f0f7c2a16cb087e7307ade19cab1c", + "symbol": "WECO", + "decimals": 18, + "name": "WECO", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x99ba92234e0f0f7c2a16cb087e7307ade19cab1c.png", + "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0x7e8101a1c322d394b3961498c7d40d2dfa94c392": { + "address": "0x7e8101a1c322d394b3961498c7d40d2dfa94c392", + "symbol": "WBNVDA", + "decimals": 18, + "name": "Wrapped bNVDA", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x7e8101a1c322d394b3961498c7d40d2dfa94c392.png", + "aggregators": ["CoinGecko", "LiFi", "Rubic", "Sonarwatch"], + "occurrences": 4 + }, + "0x1f82284c1658ad71c576f7230e6c2dee7901c1fa": { + "address": "0x1f82284c1658ad71c576f7230e6c2dee7901c1fa", + "symbol": "WBTSLA", + "decimals": 18, + "name": "Wrapped bTSLA", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x1f82284c1658ad71c576f7230e6c2dee7901c1fa.png", + "aggregators": ["CoinGecko", "LiFi", "Rubic", "Sonarwatch"], + "occurrences": 4 + }, + "0x8e306e02ec1effc4fdad3f952fbeeebf3730ae19": { + "address": "0x8e306e02ec1effc4fdad3f952fbeeebf3730ae19", + "symbol": "AIX9", + "decimals": 18, + "name": "AthenaX9", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x8e306e02ec1effc4fdad3f952fbeeebf3730ae19.png", + "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0xa2d4aec94ba0896d95ccc5451c9525b9ec0314de": { + "address": "0xa2d4aec94ba0896d95ccc5451c9525b9ec0314de", + "symbol": "SS", + "decimals": 18, + "name": "Sniper Search by Virtuals", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xa2d4aec94ba0896d95ccc5451c9525b9ec0314de.png", + "aggregators": ["CoinGecko", "Rubic", "Squid", "Rango"], + "occurrences": 4 + }, + "0xc23e4352cdba6fc951398bf274619c4529eac867": { + "address": "0xc23e4352cdba6fc951398bf274619c4529eac867", + "symbol": "TRC", + "decimals": 18, + "name": "Terrace", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xc23e4352cdba6fc951398bf274619c4529eac867.png", + "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0x80f4d22aa2437fa0dd4634b505ac3668835d9b84": { + "address": "0x80f4d22aa2437fa0dd4634b505ac3668835d9b84", + "symbol": "TAOLOR", + "decimals": 18, + "name": "Michael Taolor ⚡️ (τ , τ)", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x80f4d22aa2437fa0dd4634b505ac3668835d9b84.png", + "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0x354d6890caa31a5e28b6059d46781f40880786a6": { + "address": "0x354d6890caa31a5e28b6059d46781f40880786a6", + "symbol": "GHFFB47YII2RTEEYY10OP", + "decimals": 18, + "name": "ghffb47yii2rteeyy10op", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x354d6890caa31a5e28b6059d46781f40880786a6.png", + "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0x31d664ebd97a50d5a2cd49b16f7714ab2516ed25": { + "address": "0x31d664ebd97a50d5a2cd49b16f7714ab2516ed25", + "symbol": "UEOS", + "decimals": 18, + "name": "Wrapped EOS (Universal)", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x31d664ebd97a50d5a2cd49b16f7714ab2516ed25.png", + "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0xf3527ef8de265eaa3716fb312c12847bfba66cef": { + "address": "0xf3527ef8de265eaa3716fb312c12847bfba66cef", + "symbol": "USDX", + "decimals": 18, + "name": "USDX", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xf3527ef8de265eaa3716fb312c12847bfba66cef.png", + "aggregators": ["CoinGecko", "LiFi", "Rubic", "Rango"], + "occurrences": 4 + }, + "0x6bb7a212910682dcfdbd5bcbb3e28fb4e8da10ee": { + "address": "0x6bb7a212910682dcfdbd5bcbb3e28fb4e8da10ee", + "symbol": "GHO", + "decimals": 18, + "name": "Gho Token", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x6bb7a212910682dcfdbd5bcbb3e28fb4e8da10ee.png", + "aggregators": ["CoinGecko", "LiFi", "Rubic", "Rango"], + "occurrences": 4 + }, + "0x2e6c05f1f7d1f4eb9a088bf12257f1647682b754": { + "address": "0x2e6c05f1f7d1f4eb9a088bf12257f1647682b754", + "symbol": "AXLREGEN", + "decimals": 6, + "name": "AXLREGEN", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x2e6c05f1f7d1f4eb9a088bf12257f1647682b754.png", + "aggregators": ["CoinGecko", "Rubic", "Squid", "Rango"], + "occurrences": 4 + }, + "0x84054a6b72dd5c58da8106e410e62658083a80e4": { + "address": "0x84054a6b72dd5c58da8106e410e62658083a80e4", + "symbol": "DTF", + "decimals": 18, + "name": "believe in something", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x84054a6b72dd5c58da8106e410e62658083a80e4.png", + "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0x55380fe7a1910dff29a47b622057ab4139da42c5": { + "address": "0x55380fe7a1910dff29a47b622057ab4139da42c5", + "symbol": "FXUSD", + "decimals": 18, + "name": "f(x) Protocol fxUSD", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x55380fe7a1910dff29a47b622057ab4139da42c5.png", + "aggregators": ["CoinGecko", "LiFi", "Rubic", "Rango"], + "occurrences": 4 + }, + "0x88fb150bdc53a65fe94dea0c9ba0a6daf8c6e196": { + "address": "0x88fb150bdc53a65fe94dea0c9ba0a6daf8c6e196", + "symbol": "LINK", + "decimals": 18, + "name": "ChainLink Token", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x88fb150bdc53a65fe94dea0c9ba0a6daf8c6e196.png", + "aggregators": ["CoinGecko", "LiFi", "Rubic", "Rango"], + "occurrences": 4 + }, + "0xe22c243c7559c667a1eb94b593369d192c5fbac0": { + "address": "0xe22c243c7559c667a1eb94b593369d192c5fbac0", + "symbol": "KING", + "decimals": 18, + "name": "KING", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xe22c243c7559c667a1eb94b593369d192c5fbac0.png", + "aggregators": ["CoinGecko", "LiFi", "Rubic", "Rango"], + "occurrences": 4 + }, + "0xa61beb4a3d02decb01039e378237032b351125b4": { + "address": "0xa61beb4a3d02decb01039e378237032b351125b4", + "symbol": "EURA", + "decimals": 18, + "name": "EURA", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xa61beb4a3d02decb01039e378237032b351125b4.png", + "aggregators": ["CoinGecko", "LiFi", "Rubic", "Rango"], + "occurrences": 4 + }, + "0x946f8b0ef009f3f5b1b35e6511a82a58b09d8d4e": { + "address": "0x946f8b0ef009f3f5b1b35e6511a82a58b09d8d4e", + "symbol": "KIT", + "decimals": 18, + "name": "KIT", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x946f8b0ef009f3f5b1b35e6511a82a58b09d8d4e.png", + "aggregators": ["CoinGecko", "Socket", "Rubic", "Rango"], + "occurrences": 4 + }, + "0x76e118fa6839ddad531411b8cc7a9dcdfd7d4fb0": { + "address": "0x76e118fa6839ddad531411b8cc7a9dcdfd7d4fb0", + "symbol": "BALN", + "decimals": 18, + "name": "Balanced", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x76e118fa6839ddad531411b8cc7a9dcdfd7d4fb0.png", + "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0xf757c9804cf2ee8d8ed64e0a8936293fe43a7252": { + "address": "0xf757c9804cf2ee8d8ed64e0a8936293fe43a7252", + "symbol": "REZ", + "decimals": 18, + "name": "REZ", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xf757c9804cf2ee8d8ed64e0a8936293fe43a7252.png", + "aggregators": ["CoinGecko", "LiFi", "Rubic", "Rango"], + "occurrences": 4 + }, + "0x57bd5c33c8002a634b389ab4de5e09ec1c31dce7": { + "address": "0x57bd5c33c8002a634b389ab4de5e09ec1c31dce7", + "symbol": "SILO", + "decimals": 18, + "name": "Silo Finance", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x57bd5c33c8002a634b389ab4de5e09ec1c31dce7.png", + "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0x2bb9282552228734cca01a1671605122258e276a": { + "address": "0x2bb9282552228734cca01a1671605122258e276a", + "symbol": "GME.D", + "decimals": 18, + "name": "Dinari GME", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x2bb9282552228734cca01a1671605122258e276a.png", + "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0xa17c0e96c8b5e39b6fd670f01d7f021f66b930cd": { + "address": "0xa17c0e96c8b5e39b6fd670f01d7f021f66b930cd", + "symbol": "RDDT.D", + "decimals": 18, + "name": "Dinari RDDT", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xa17c0e96c8b5e39b6fd670f01d7f021f66b930cd.png", + "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0xa34c5e0abe843e10461e2c9586ea03e55dbcc495": { + "address": "0xa34c5e0abe843e10461e2c9586ea03e55dbcc495", + "symbol": "BNVDA", + "decimals": 18, + "name": "Backed NVIDIA", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xa34c5e0abe843e10461e2c9586ea03e55dbcc495.png", + "aggregators": ["CoinGecko", "LiFi", "Rubic", "Sonarwatch"], + "occurrences": 4 + }, + "0xe4b20925d9e9a62f1e492e15a81dc0de62804dd4": { + "address": "0xe4b20925d9e9a62f1e492e15a81dc0de62804dd4", + "symbol": "BTCUSD", + "decimals": 18, + "name": "BTCUSD", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xe4b20925d9e9a62f1e492e15a81dc0de62804dd4.png", + "aggregators": ["CoinGecko", "LiFi", "Rubic", "Rango"], + "occurrences": 4 + }, + "0x00000000000007c8612ba63df8ddefd9e6077c97": { + "address": "0x00000000000007c8612ba63df8ddefd9e6077c97", + "symbol": "⌘", + "decimals": 18, + "name": "NANI", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x00000000000007c8612ba63df8ddefd9e6077c97.png", + "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0x4eed0d2deb4c588393c80869b122327581b0d98e": { + "address": "0x4eed0d2deb4c588393c80869b122327581b0d98e", + "symbol": "JKL", + "decimals": 6, + "name": "JKL", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x4eed0d2deb4c588393c80869b122327581b0d98e.png", + "aggregators": ["CoinGecko", "Rubic", "Squid", "Rango"], + "occurrences": 4 + }, + "0x2081ab0d9ec9e4303234ab26d86b20b3367946ee": { + "address": "0x2081ab0d9ec9e4303234ab26d86b20b3367946ee", + "symbol": "EIGEN", + "decimals": 18, + "name": "EIGEN", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x2081ab0d9ec9e4303234ab26d86b20b3367946ee.png", + "aggregators": ["CoinGecko", "LiFi", "Rubic", "Rango"], + "occurrences": 4 + }, + "0x6c240dda6b5c336df09a4d011139beaaa1ea2aa2": { + "address": "0x6c240dda6b5c336df09a4d011139beaaa1ea2aa2", + "symbol": "ETHFI", + "decimals": 18, + "name": "ETHFI", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x6c240dda6b5c336df09a4d011139beaaa1ea2aa2.png", + "aggregators": ["CoinGecko", "LiFi", "Rubic", "Rango"], + "occurrences": 4 + }, + "0x9e12735d77c72c5c3670636d428f2f3815d8a4cb": { + "address": "0x9e12735d77c72c5c3670636d428f2f3815d8a4cb", + "symbol": "FULA", + "decimals": 18, + "name": "Functionland", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x9e12735d77c72c5c3670636d428f2f3815d8a4cb.png", + "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0xe5020a6d073a794b6e7f05678707de47986fb0b6": { + "address": "0xe5020a6d073a794b6e7f05678707de47986fb0b6", + "symbol": "FRXUSD", + "decimals": 18, + "name": "FRXUSD", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xe5020a6d073a794b6e7f05678707de47986fb0b6.png", + "aggregators": ["CoinGecko", "LiFi", "Rubic", "Rango"], + "occurrences": 4 + }, + "0x7d214438d0f27afccc23b3d1e1a53906ace5cfea": { + "address": "0x7d214438d0f27afccc23b3d1e1a53906ace5cfea", + "symbol": "REUSD", + "decimals": 18, + "name": "REUSD", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x7d214438d0f27afccc23b3d1e1a53906ace5cfea.png", + "aggregators": ["CoinGecko", "LiFi", "Rubic", "Rango"], + "occurrences": 4 + }, + "0x473c1656373b3715805f647911e75aaa49c39813": { + "address": "0x473c1656373b3715805f647911e75aaa49c39813", + "symbol": "SHITZU", + "decimals": 18, + "name": "Shitzu", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x473c1656373b3715805f647911e75aaa49c39813.png", + "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0xc96de26018a54d51c097160568752c4e3bd6c364": { + "address": "0xc96de26018a54d51c097160568752c4e3bd6c364", + "symbol": "FBTC", + "decimals": 8, + "name": "FBTC", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xc96de26018a54d51c097160568752c4e3bd6c364.png", + "aggregators": ["CoinGecko", "LiFi", "Rubic", "Rango"], + "occurrences": 4 + }, + "0x909dbde1ebe906af95660033e478d59efe831fed": { + "address": "0x909dbde1ebe906af95660033e478d59efe831fed", + "symbol": "FRAX", + "decimals": 18, + "name": "Bridged FRAX", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x909dbde1ebe906af95660033e478d59efe831fed.png", + "aggregators": ["LiFi", "Socket", "Rubic", "Sonarwatch"], + "occurrences": 4 + }, + "0x5ae84075f0e34946821a8015dab5299a00992721": { + "address": "0x5ae84075f0e34946821a8015dab5299a00992721", + "symbol": "WCGUSD", + "decimals": 6, + "name": "Wrapped Cygnus USD", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x5ae84075f0e34946821a8015dab5299a00992721.png", + "aggregators": ["LiFi", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0xa26a4611b8313bbb25ccb1a9e227ecc536a2f8f7": { + "address": "0xa26a4611b8313bbb25ccb1a9e227ecc536a2f8f7", + "symbol": "BRIGHT", + "decimals": 18, + "name": "Bright Union", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xa26a4611b8313bbb25ccb1a9e227ecc536a2f8f7.png", + "aggregators": ["LiFi", "Socket", "Rubic", "Sonarwatch"], + "occurrences": 4 + }, + "0x9cfb13e6c11054ac9fcb92ba89644f30775436e4": { + "address": "0x9cfb13e6c11054ac9fcb92ba89644f30775436e4", + "symbol": "AXL-WSTETH", + "decimals": 18, + "name": "Axelar Wrapped wstETH", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x9cfb13e6c11054ac9fcb92ba89644f30775436e4.png", + "aggregators": ["LiFi", "Rubic", "Squid", "Rango"], + "occurrences": 4 + }, + "0x31ea904a7eca45122890deb8da3473a2081bc9d1": { + "address": "0x31ea904a7eca45122890deb8da3473a2081bc9d1", + "symbol": "SEED", + "decimals": 18, + "name": "Bonsai3", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x31ea904a7eca45122890deb8da3473a2081bc9d1.png", + "aggregators": ["Socket", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0xd67ec255100ef200a439d09ff865fbaa2ad9c730": { + "address": "0xd67ec255100ef200a439d09ff865fbaa2ad9c730", + "symbol": "SCOR", + "decimals": 18, + "name": "Scor", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xd67ec255100ef200a439d09ff865fbaa2ad9c730.png", + "aggregators": ["CoinGecko", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x5b2193fdc451c1f847be09ca9d13a4bf60f8c86b": { + "address": "0x5b2193fdc451c1f847be09ca9d13a4bf60f8c86b", + "symbol": "UP", + "decimals": 18, + "name": "Superform", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x5b2193fdc451c1f847be09ca9d13a4bf60f8c86b.png", + "aggregators": ["CoinGecko", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x3bbcb624cb9a1f73163a886f460f47603e5e4425": { + "address": "0x3bbcb624cb9a1f73163a886f460f47603e5e4425", + "symbol": "HANDL", + "decimals": 18, + "name": "HandlPay", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x3bbcb624cb9a1f73163a886f460f47603e5e4425.png", + "aggregators": ["CoinGecko", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x18b66b63625a07d3671eb0a119a5e4df4708936e": { + "address": "0x18b66b63625a07d3671eb0a119a5e4df4708936e", + "symbol": "PLUS", + "decimals": 18, + "name": "PLUS", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x18b66b63625a07d3671eb0a119a5e4df4708936e.png", + "aggregators": ["CoinGecko", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x30457a1ab7cd796d6e55e4e5ba12e09f2283e856": { + "address": "0x30457a1ab7cd796d6e55e4e5ba12e09f2283e856", + "symbol": "DUB", + "decimals": 18, + "name": "The DUB Token", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x30457a1ab7cd796d6e55e4e5ba12e09f2283e856.png", + "aggregators": ["CoinGecko", "Rubic", "Sonarwatch"], + "occurrences": 3 + }, + "0x26c69e4924bd0d7d52d680b33616042ee13f621c": { + "address": "0x26c69e4924bd0d7d52d680b33616042ee13f621c", + "symbol": "SALUKI", + "decimals": 18, + "name": "SALUKI", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x26c69e4924bd0d7d52d680b33616042ee13f621c.png", + "aggregators": ["CoinGecko", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x4398c398e5ac747e6d51bf1db1dac346ca90fee0": { + "address": "0x4398c398e5ac747e6d51bf1db1dac346ca90fee0", + "symbol": "WODS", + "decimals": 18, + "name": "WODS - Wolf of Dumb Street", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x4398c398e5ac747e6d51bf1db1dac346ca90fee0.png", + "aggregators": ["CoinGecko", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x1791b55e734df69b4906a4178a83dbe63c4f8421": { + "address": "0x1791b55e734df69b4906a4178a83dbe63c4f8421", + "symbol": "BCHB", + "decimals": 18, + "name": "BITCOIN CASH ON BASE", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x1791b55e734df69b4906a4178a83dbe63c4f8421.png", + "aggregators": ["CoinGecko", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x3a1a33cf4553db61f0db2c1e1721cd480b02789f": { + "address": "0x3a1a33cf4553db61f0db2c1e1721cd480b02789f", + "symbol": "TABOSHI", + "decimals": 18, + "name": "TABOSHI", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x3a1a33cf4553db61f0db2c1e1721cd480b02789f.png", + "aggregators": ["CoinGecko", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x46d8f8ba030c1d09ae17d2b5107dfef4b331fe0d": { + "address": "0x46d8f8ba030c1d09ae17d2b5107dfef4b331fe0d", + "symbol": "BOMI", + "decimals": 18, + "name": "Book of Miggles", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x46d8f8ba030c1d09ae17d2b5107dfef4b331fe0d.png", + "aggregators": ["CoinGecko", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x8f2bd24a6406142cbae4b39e14be8efc8157d951": { + "address": "0x8f2bd24a6406142cbae4b39e14be8efc8157d951", + "symbol": "UENS", + "decimals": 18, + "name": "Wrapped Ethereum Name Service (Universal)", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x8f2bd24a6406142cbae4b39e14be8efc8157d951.png", + "aggregators": ["CoinGecko", "Rubic", "Sonarwatch"], + "occurrences": 3 + }, + "0x1d3be1cc80ca89ddbabe5b5c254af63200e708f7": { + "address": "0x1d3be1cc80ca89ddbabe5b5c254af63200e708f7", + "symbol": "MONSTRO", + "decimals": 18, + "name": "Monstro DeFi", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x1d3be1cc80ca89ddbabe5b5c254af63200e708f7.png", + "aggregators": ["CoinGecko", "Rubic", "Rango"], + "occurrences": 3 + }, + "0xd461a534af11ef58e9f9add73129a1f45485a8dc": { + "address": "0xd461a534af11ef58e9f9add73129a1f45485a8dc", + "symbol": "KEVIN", + "decimals": 18, + "name": "Kevin", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xd461a534af11ef58e9f9add73129a1f45485a8dc.png", + "aggregators": ["CoinGecko", "Rubic", "Rango"], + "occurrences": 3 + }, + "0xaf6b42a3fe548c0ce73269235817fd47d8c149cd": { + "address": "0xaf6b42a3fe548c0ce73269235817fd47d8c149cd", + "symbol": "LUMPY", + "decimals": 18, + "name": "LUMPY", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xaf6b42a3fe548c0ce73269235817fd47d8c149cd.png", + "aggregators": ["CoinGecko", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x0340ff1765f0099b3bd1c4664ce03d8fd794fad1": { + "address": "0x0340ff1765f0099b3bd1c4664ce03d8fd794fad1", + "symbol": "UCRV", + "decimals": 18, + "name": "Wrapped Curve (Universal)", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x0340ff1765f0099b3bd1c4664ce03d8fd794fad1.png", + "aggregators": ["CoinGecko", "Rubic", "Sonarwatch"], + "occurrences": 3 + }, + "0x1a4f71b0ff3c22540887bcf83b50054a213c673d": { + "address": "0x1a4f71b0ff3c22540887bcf83b50054a213c673d", + "symbol": "WBMSTR", + "decimals": 18, + "name": "Wrapped Backed MicroStrategy Inc", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x1a4f71b0ff3c22540887bcf83b50054a213c673d.png", + "aggregators": ["CoinGecko", "LiFi", "Rubic"], + "occurrences": 3 + }, + "0xbeefa28d5e56d41d35df760ab53b94d9ffd7051f": { + "address": "0xbeefa28d5e56d41d35df760ab53b94d9ffd7051f", + "symbol": "STEAKEURA", + "decimals": 18, + "name": "Steakhouse EURA", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xbeefa28d5e56d41d35df760ab53b94d9ffd7051f.png", + "aggregators": ["CoinGecko", "LiFi", "Rubic"], + "occurrences": 3 + }, + "0x88a78c5035bdc8c9a8bb5c029e6cfcdd14b822fe": { + "address": "0x88a78c5035bdc8c9a8bb5c029e6cfcdd14b822fe", + "symbol": "$FROGGI", + "decimals": 9, + "name": "Froggi", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x88a78c5035bdc8c9a8bb5c029e6cfcdd14b822fe.png", + "aggregators": ["CoinGecko", "Rubic", "Rango"], + "occurrences": 3 + }, + "0xcb474f3dee195a951f3584b213d16d2d4d4ee503": { + "address": "0xcb474f3dee195a951f3584b213d16d2d4d4ee503", + "symbol": "UFLOKI", + "decimals": 18, + "name": "Wrapped Floki (Universal)", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xcb474f3dee195a951f3584b213d16d2d4d4ee503.png", + "aggregators": ["CoinGecko", "Rubic", "Sonarwatch"], + "occurrences": 3 + }, + "0x3b1228c3ede7e0898d57054cd9b8f812d24315c1": { + "address": "0x3b1228c3ede7e0898d57054cd9b8f812d24315c1", + "symbol": "BRITT", + "decimals": 9, + "name": "Britt", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x3b1228c3ede7e0898d57054cd9b8f812d24315c1.png", + "aggregators": ["CoinGecko", "Rubic", "Rango"], + "occurrences": 3 + }, + "0xb4c6458c2e67da23caa4ffadb9b4d3659da98164": { + "address": "0xb4c6458c2e67da23caa4ffadb9b4d3659da98164", + "symbol": "XTTA", + "decimals": 18, + "name": "XTTA", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xb4c6458c2e67da23caa4ffadb9b4d3659da98164.png", + "aggregators": ["CoinGecko", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x5ca35ebc4f25b042d2cae75914c7e882e631fa9a": { + "address": "0x5ca35ebc4f25b042d2cae75914c7e882e631fa9a", + "symbol": "NEIRO", + "decimals": 9, + "name": "NEIRO", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x5ca35ebc4f25b042d2cae75914c7e882e631fa9a.png", + "aggregators": ["CoinGecko", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x0150958b2b183a8e63264b8a6d82b4f747df3f62": { + "address": "0x0150958b2b183a8e63264b8a6d82b4f747df3f62", + "symbol": "MCD.D", + "decimals": 18, + "name": "Dinari MCD", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x0150958b2b183a8e63264b8a6d82b4f747df3f62.png", + "aggregators": ["CoinGecko", "Rubic", "Sonarwatch"], + "occurrences": 3 + }, + "0x6743d7d8de84021b4fec049a1f1278be9cd95b6e": { + "address": "0x6743d7d8de84021b4fec049a1f1278be9cd95b6e", + "symbol": "V.D", + "decimals": 18, + "name": "Dinari V", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x6743d7d8de84021b4fec049a1f1278be9cd95b6e.png", + "aggregators": ["CoinGecko", "Rubic", "Sonarwatch"], + "occurrences": 3 + }, + "0x70e97cac0d4eb845872cd41ae848e47d070ef45c": { + "address": "0x70e97cac0d4eb845872cd41ae848e47d070ef45c", + "symbol": "COST.D", + "decimals": 18, + "name": "Dinari COST", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x70e97cac0d4eb845872cd41ae848e47d070ef45c.png", + "aggregators": ["CoinGecko", "Rubic", "Sonarwatch"], + "occurrences": 3 + }, + "0xb0169ad580aa888467bbac4a4b650812dee74939": { + "address": "0xb0169ad580aa888467bbac4a4b650812dee74939", + "symbol": "SPTE.D", + "decimals": 18, + "name": "Dinari SPTE", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xb0169ad580aa888467bbac4a4b650812dee74939.png", + "aggregators": ["CoinGecko", "Rubic", "Sonarwatch"], + "occurrences": 3 + }, + "0x5019fe1867d8ccfd76d8d5abd85db5efce548fba": { + "address": "0x5019fe1867d8ccfd76d8d5abd85db5efce548fba", + "symbol": "INT", + "decimals": 18, + "name": "InteNet Protocol", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x5019fe1867d8ccfd76d8d5abd85db5efce548fba.png", + "aggregators": ["CoinGecko", "Rubic", "Rango"], + "occurrences": 3 + }, + "0xa15705e6fc8b3e08e7253f3758de1a754baa0761": { + "address": "0xa15705e6fc8b3e08e7253f3758de1a754baa0761", + "symbol": "QCAD", + "decimals": 6, + "name": "Stablecorp QCAD", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xa15705e6fc8b3e08e7253f3758de1a754baa0761.png", + "aggregators": ["CoinGecko", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x4b959bb4c00d25e52a87cb1865401dd97cb5631d": { + "address": "0x4b959bb4c00d25e52a87cb1865401dd97cb5631d", + "symbol": "ARKB.D", + "decimals": 18, + "name": "Dinari ARKB", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x4b959bb4c00d25e52a87cb1865401dd97cb5631d.png", + "aggregators": ["CoinGecko", "Rubic", "Sonarwatch"], + "occurrences": 3 + }, + "0x5aa9bd9364cc3644bb7f35f092283dae7fd17e11": { + "address": "0x5aa9bd9364cc3644bb7f35f092283dae7fd17e11", + "symbol": "ETHE.D", + "decimals": 18, + "name": "Dinari ETHE", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x5aa9bd9364cc3644bb7f35f092283dae7fd17e11.png", + "aggregators": ["CoinGecko", "Rubic", "Sonarwatch"], + "occurrences": 3 + }, + "0x116b3ad9ba8f4e6fb83a5bcad8ba2e97114f9568": { + "address": "0x116b3ad9ba8f4e6fb83a5bcad8ba2e97114f9568", + "symbol": "ITA.D", + "decimals": 18, + "name": "Dinari ITA", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x116b3ad9ba8f4e6fb83a5bcad8ba2e97114f9568.png", + "aggregators": ["CoinGecko", "Rubic", "Sonarwatch"], + "occurrences": 3 + }, + "0x24fdd77381d3dd36a9bd7029bcdac350a0342de3": { + "address": "0x24fdd77381d3dd36a9bd7029bcdac350a0342de3", + "symbol": "IBIT.D", + "decimals": 18, + "name": "Dinari IBIT", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x24fdd77381d3dd36a9bd7029bcdac350a0342de3.png", + "aggregators": ["CoinGecko", "Rubic", "Sonarwatch"], + "occurrences": 3 + }, + "0xab754c3998ba88e789329f250d90ea35fc87aea6": { + "address": "0xab754c3998ba88e789329f250d90ea35fc87aea6", + "symbol": "JNJ.D", + "decimals": 18, + "name": "Dinari JNJ", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xab754c3998ba88e789329f250d90ea35fc87aea6.png", + "aggregators": ["CoinGecko", "Rubic", "Sonarwatch"], + "occurrences": 3 + }, + "0x32224be543fb8f338a9a6c337d84478e256ee219": { + "address": "0x32224be543fb8f338a9a6c337d84478e256ee219", + "symbol": "ARKX.D", + "decimals": 18, + "name": "Dinari ARKX", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x32224be543fb8f338a9a6c337d84478e256ee219.png", + "aggregators": ["CoinGecko", "Rubic", "Sonarwatch"], + "occurrences": 3 + }, + "0x8a2a4899316f302a05006ee6d2998afa26f96253": { + "address": "0x8a2a4899316f302a05006ee6d2998afa26f96253", + "symbol": "BA.D", + "decimals": 18, + "name": "Dinari BA", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x8a2a4899316f302a05006ee6d2998afa26f96253.png", + "aggregators": ["CoinGecko", "Rubic", "Sonarwatch"], + "occurrences": 3 + }, + "0x24914cb6bd01e6a0cf2a9c0478e33c25926e6a0c": { + "address": "0x24914cb6bd01e6a0cf2a9c0478e33c25926e6a0c", + "symbol": "BOTTO", + "decimals": 18, + "name": "BOTTO", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x24914cb6bd01e6a0cf2a9c0478e33c25926e6a0c.png", + "aggregators": ["CoinGecko", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x832b55b0fa6397ca9e63b8c15dadef3f6e44614c": { + "address": "0x832b55b0fa6397ca9e63b8c15dadef3f6e44614c", + "symbol": "DUAL", + "decimals": 18, + "name": "Dual", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x832b55b0fa6397ca9e63b8c15dadef3f6e44614c.png", + "aggregators": ["CoinGecko", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x94025780a1ab58868d9b2dbbb775f44b32e8e6e5": { + "address": "0x94025780a1ab58868d9b2dbbb775f44b32e8e6e5", + "symbol": "BETS", + "decimals": 18, + "name": "BetSwirl v2", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x94025780a1ab58868d9b2dbbb775f44b32e8e6e5.png", + "aggregators": ["CoinGecko", "Rubic", "Rango"], + "occurrences": 3 + }, + "0xd5eab2d9e01442bfca720f6f15451555dd003f40": { + "address": "0xd5eab2d9e01442bfca720f6f15451555dd003f40", + "symbol": "SQ.D", + "decimals": 18, + "name": "Dinari SQ", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xd5eab2d9e01442bfca720f6f15451555dd003f40.png", + "aggregators": ["CoinGecko", "Rubic", "Sonarwatch"], + "occurrences": 3 + }, + "0x45afb331111126f5bf8d37c7816c540c1ec6f544": { + "address": "0x45afb331111126f5bf8d37c7816c540c1ec6f544", + "symbol": "BLK.D", + "decimals": 18, + "name": "Dinari BLK", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x45afb331111126f5bf8d37c7816c540c1ec6f544.png", + "aggregators": ["CoinGecko", "Rubic", "Sonarwatch"], + "occurrences": 3 + }, + "0xb51c78989fb8d1bf2c957dd0522235c92d0443a5": { + "address": "0xb51c78989fb8d1bf2c957dd0522235c92d0443a5", + "symbol": "RBLX.D", + "decimals": 18, + "name": "Dinari RBLX", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xb51c78989fb8d1bf2c957dd0522235c92d0443a5.png", + "aggregators": ["CoinGecko", "Rubic", "Sonarwatch"], + "occurrences": 3 + }, + "0x0f13fc8a93ab8edc9fde0a1e19aac693161599a5": { + "address": "0x0f13fc8a93ab8edc9fde0a1e19aac693161599a5", + "symbol": "SCAI", + "decimals": 18, + "name": "SecureChain AI", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x0f13fc8a93ab8edc9fde0a1e19aac693161599a5.png", + "aggregators": ["CoinGecko", "Rubic", "Sonarwatch"], + "occurrences": 3 + }, + "0x48a0ea70c2c7d025cc95672b9ebe6ad026129b44": { + "address": "0x48a0ea70c2c7d025cc95672b9ebe6ad026129b44", + "symbol": "YUM.D", + "decimals": 18, + "name": "Dinari YUM", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x48a0ea70c2c7d025cc95672b9ebe6ad026129b44.png", + "aggregators": ["CoinGecko", "Rubic", "Sonarwatch"], + "occurrences": 3 + }, + "0x9b42e4afcc2046070fa00ff8213d59eef6e4264e": { + "address": "0x9b42e4afcc2046070fa00ff8213d59eef6e4264e", + "symbol": "SBUX.D", + "decimals": 18, + "name": "Dinari SBUX", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x9b42e4afcc2046070fa00ff8213d59eef6e4264e.png", + "aggregators": ["CoinGecko", "Rubic", "Sonarwatch"], + "occurrences": 3 + }, + "0x9fd7bc3de3c1dd6041efbcbac43250da7b718a43": { + "address": "0x9fd7bc3de3c1dd6041efbcbac43250da7b718a43", + "symbol": "SPSK.D", + "decimals": 18, + "name": "Dinari SPSK", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x9fd7bc3de3c1dd6041efbcbac43250da7b718a43.png", + "aggregators": ["CoinGecko", "Rubic", "Sonarwatch"], + "occurrences": 3 + }, + "0xa70cc6f267e02a6e135fa2589432e6734a613eb3": { + "address": "0xa70cc6f267e02a6e135fa2589432e6734a613eb3", + "symbol": "BOXX.D", + "decimals": 18, + "name": "Dinari BOXX", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xa70cc6f267e02a6e135fa2589432e6734a613eb3.png", + "aggregators": ["CoinGecko", "Rubic", "Sonarwatch"], + "occurrences": 3 + }, + "0xb7750e425e86e9ab57bc570a1c89737a56cf4322": { + "address": "0xb7750e425e86e9ab57bc570a1c89737a56cf4322", + "symbol": "CBE", + "decimals": 18, + "name": "Coinbidex", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xb7750e425e86e9ab57bc570a1c89737a56cf4322.png", + "aggregators": ["CoinGecko", "Rubic", "Sonarwatch"], + "occurrences": 3 + }, + "0xa26a3903cbba4e6c2c757d7601fbc569efc479ef": { + "address": "0xa26a3903cbba4e6c2c757d7601fbc569efc479ef", + "symbol": "RKLB.D", + "decimals": 18, + "name": "Dinari RKLB", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xa26a3903cbba4e6c2c757d7601fbc569efc479ef.png", + "aggregators": ["CoinGecko", "Rubic", "Sonarwatch"], + "occurrences": 3 + }, + "0x3d66e6fe9a3cf698db5af3d70830b299c9235151": { + "address": "0x3d66e6fe9a3cf698db5af3d70830b299c9235151", + "symbol": "USAD", + "decimals": 18, + "name": "Lydia Coin", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x3d66e6fe9a3cf698db5af3d70830b299c9235151.png", + "aggregators": ["CoinGecko", "Rubic", "Rango"], + "occurrences": 3 + }, + "0xd45a01a729a0d4ccbe1523e58eb4ff8bdc3607d7": { + "address": "0xd45a01a729a0d4ccbe1523e58eb4ff8bdc3607d7", + "symbol": "EZBC.D", + "decimals": 18, + "name": "Dinari EZBC", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xd45a01a729a0d4ccbe1523e58eb4ff8bdc3607d7.png", + "aggregators": ["CoinGecko", "Rubic", "Sonarwatch"], + "occurrences": 3 + }, + "0xba921e840fb60adb0f92b2a977427fe8e5dd208c": { + "address": "0xba921e840fb60adb0f92b2a977427fe8e5dd208c", + "symbol": "ERO.D", + "decimals": 18, + "name": "Dinari ERO", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xba921e840fb60adb0f92b2a977427fe8e5dd208c.png", + "aggregators": ["CoinGecko", "Rubic", "Sonarwatch"], + "occurrences": 3 + }, + "0x2b98ba07619c3ee14854983a83fe1f0aecff19c8": { + "address": "0x2b98ba07619c3ee14854983a83fe1f0aecff19c8", + "symbol": "SIVR.D", + "decimals": 18, + "name": "Dinari SIVR", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x2b98ba07619c3ee14854983a83fe1f0aecff19c8.png", + "aggregators": ["CoinGecko", "Rubic", "Sonarwatch"], + "occurrences": 3 + }, + "0xd021ad9bc28dcbcb04801638937351f6b9045f33": { + "address": "0xd021ad9bc28dcbcb04801638937351f6b9045f33", + "symbol": "DAL.D", + "decimals": 18, + "name": "Dinari DAL", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xd021ad9bc28dcbcb04801638937351f6b9045f33.png", + "aggregators": ["CoinGecko", "Rubic", "Sonarwatch"], + "occurrences": 3 + }, + "0x25aa7b1ecf5d3fcd1b3b9f2445a4fa5597ffb189": { + "address": "0x25aa7b1ecf5d3fcd1b3b9f2445a4fa5597ffb189", + "symbol": "CVX.D", + "decimals": 18, + "name": "Dinari CVX", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x25aa7b1ecf5d3fcd1b3b9f2445a4fa5597ffb189.png", + "aggregators": ["CoinGecko", "Rubic", "Sonarwatch"], + "occurrences": 3 + }, + "0x0709f6caceefd70b867ed3ea278b911238eb7f6f": { + "address": "0x0709f6caceefd70b867ed3ea278b911238eb7f6f", + "symbol": "EEM.D", + "decimals": 18, + "name": "Dinari EEM", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x0709f6caceefd70b867ed3ea278b911238eb7f6f.png", + "aggregators": ["CoinGecko", "Rubic", "Sonarwatch"], + "occurrences": 3 + }, + "0xad13bce42394add02e6c215a40e582309b7975c7": { + "address": "0xad13bce42394add02e6c215a40e582309b7975c7", + "symbol": "KYVE", + "decimals": 6, + "name": "KYVE", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xad13bce42394add02e6c215a40e582309b7975c7.png", + "aggregators": ["CoinGecko", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x7cee47e7b7cd04cf984e8dd86c42595b5771a9b2": { + "address": "0x7cee47e7b7cd04cf984e8dd86c42595b5771a9b2", + "symbol": "TESOURO", + "decimals": 6, + "name": "Etherfuse TESOURO", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x7cee47e7b7cd04cf984e8dd86c42595b5771a9b2.png", + "aggregators": ["CoinGecko", "Rubic", "Rango"], + "occurrences": 3 + }, + "0xac28c9178acc8ba4a11a29e013a3a2627086e422": { + "address": "0xac28c9178acc8ba4a11a29e013a3a2627086e422", + "symbol": "BMSTR", + "decimals": 18, + "name": "Backed MicroStrategy Inc", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xac28c9178acc8ba4a11a29e013a3a2627086e422.png", + "aggregators": ["CoinGecko", "LiFi", "Rubic"], + "occurrences": 3 + }, + "0xebee37aaf2905b7bda7e3b928043862e982e8f32": { + "address": "0xebee37aaf2905b7bda7e3b928043862e982e8f32", + "symbol": "BGOOGL", + "decimals": 18, + "name": "Backed Alphabet Class A", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xebee37aaf2905b7bda7e3b928043862e982e8f32.png", + "aggregators": ["CoinGecko", "Rubic", "Sonarwatch"], + "occurrences": 3 + }, + "0x000804047791c8e0fbd04f1a9f4567114130b9a7": { + "address": "0x000804047791c8e0fbd04f1a9f4567114130b9a7", + "symbol": "KO.D", + "decimals": 18, + "name": "Dinari KO", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x000804047791c8e0fbd04f1a9f4567114130b9a7.png", + "aggregators": ["CoinGecko", "Rubic", "Sonarwatch"], + "occurrences": 3 + }, + "0xd5e8dc8ba0c459a97a79d8ee2b4fec186e4af078": { + "address": "0xd5e8dc8ba0c459a97a79d8ee2b4fec186e4af078", + "symbol": "CCL.D", + "decimals": 18, + "name": "Dinari CCL", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xd5e8dc8ba0c459a97a79d8ee2b4fec186e4af078.png", + "aggregators": ["CoinGecko", "Rubic", "Sonarwatch"], + "occurrences": 3 + }, + "0xcff62955b5fcd043ebc177d02b6723017a886076": { + "address": "0xcff62955b5fcd043ebc177d02b6723017a886076", + "symbol": "MELI.D", + "decimals": 18, + "name": "Dinari MELI", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xcff62955b5fcd043ebc177d02b6723017a886076.png", + "aggregators": ["CoinGecko", "Rubic", "Sonarwatch"], + "occurrences": 3 + }, + "0x1bc7cd640fba3d157f152665b7bf5cbe4a50d26a": { + "address": "0x1bc7cd640fba3d157f152665b7bf5cbe4a50d26a", + "symbol": "SPWO.D", + "decimals": 18, + "name": "Dinari SPWO", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x1bc7cd640fba3d157f152665b7bf5cbe4a50d26a.png", + "aggregators": ["CoinGecko", "Rubic", "Sonarwatch"], + "occurrences": 3 + }, + "0x0002bcdaf53f4889bf2f43a3252d7c03fe1b80bc": { + "address": "0x0002bcdaf53f4889bf2f43a3252d7c03fe1b80bc", + "symbol": "GORPLE", + "decimals": 18, + "name": "Gorples Coin", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x0002bcdaf53f4889bf2f43a3252d7c03fe1b80bc.png", + "aggregators": ["CoinGecko", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x3ac60413b5ad95fc02409d6e8c5b316e19c962e1": { + "address": "0x3ac60413b5ad95fc02409d6e8c5b316e19c962e1", + "symbol": "UFO.D", + "decimals": 18, + "name": "Dinari UFO", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x3ac60413b5ad95fc02409d6e8c5b316e19c962e1.png", + "aggregators": ["CoinGecko", "Rubic", "Sonarwatch"], + "occurrences": 3 + }, + "0xfdaf8d69fa9931f00b92e14bc4233cb438b24980": { + "address": "0xfdaf8d69fa9931f00b92e14bc4233cb438b24980", + "symbol": "AMC.D", + "decimals": 18, + "name": "Dinari AMC", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xfdaf8d69fa9931f00b92e14bc4233cb438b24980.png", + "aggregators": ["CoinGecko", "Rubic", "Sonarwatch"], + "occurrences": 3 + }, + "0x0ed151c9749d39c3ca8e537125fb4053e0c9b55f": { + "address": "0x0ed151c9749d39c3ca8e537125fb4053e0c9b55f", + "symbol": "DAWAE", + "decimals": 9, + "name": "Dawae", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x0ed151c9749d39c3ca8e537125fb4053e0c9b55f.png", + "aggregators": ["CoinGecko", "Rubic", "Rango"], + "occurrences": 3 + }, + "0xc6bbaf4d804327d84931310e49c863e63a2bd868": { + "address": "0xc6bbaf4d804327d84931310e49c863e63a2bd868", + "symbol": "WEAT.D", + "decimals": 18, + "name": "Dinari WEAT", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xc6bbaf4d804327d84931310e49c863e63a2bd868.png", + "aggregators": ["CoinGecko", "Rubic", "Sonarwatch"], + "occurrences": 3 + }, + "0x0f6c508ef7257c4b99bd1bc8aef750da64840813": { + "address": "0x0f6c508ef7257c4b99bd1bc8aef750da64840813", + "symbol": "AVGO.D", + "decimals": 18, + "name": "Dinari AVGO", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x0f6c508ef7257c4b99bd1bc8aef750da64840813.png", + "aggregators": ["CoinGecko", "Rubic", "Sonarwatch"], + "occurrences": 3 + }, + "0xb3358ab71f784910de0ca766ebdab527323731b9": { + "address": "0xb3358ab71f784910de0ca766ebdab527323731b9", + "symbol": "NLY.D", + "decimals": 18, + "name": "Dinari NLY", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xb3358ab71f784910de0ca766ebdab527323731b9.png", + "aggregators": ["CoinGecko", "Rubic", "Sonarwatch"], + "occurrences": 3 + }, + "0x5ea14145f62dbf26fc7b0eb8fa8c71e1af468207": { + "address": "0x5ea14145f62dbf26fc7b0eb8fa8c71e1af468207", + "symbol": "BITB.D", + "decimals": 18, + "name": "Dinari BITB", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x5ea14145f62dbf26fc7b0eb8fa8c71e1af468207.png", + "aggregators": ["CoinGecko", "Rubic", "Sonarwatch"], + "occurrences": 3 + }, + "0xd0ca17153cbe8dd5f7b96f9a2c9e608faad7e904": { + "address": "0xd0ca17153cbe8dd5f7b96f9a2c9e608faad7e904", + "symbol": "GBTC.D", + "decimals": 18, + "name": "Dinari GBTC", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xd0ca17153cbe8dd5f7b96f9a2c9e608faad7e904.png", + "aggregators": ["CoinGecko", "Rubic", "Sonarwatch"], + "occurrences": 3 + }, + "0xa483eca53adfef52f614ba1f76d5f49b0caeb7df": { + "address": "0xa483eca53adfef52f614ba1f76d5f49b0caeb7df", + "symbol": "MARA.D", + "decimals": 18, + "name": "Dinari MARA", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xa483eca53adfef52f614ba1f76d5f49b0caeb7df.png", + "aggregators": ["CoinGecko", "Rubic", "Sonarwatch"], + "occurrences": 3 + }, + "0xb8ebc0fc2453a1be3ab48db2de6237ce56e00c48": { + "address": "0xb8ebc0fc2453a1be3ab48db2de6237ce56e00c48", + "symbol": "WOOD.D", + "decimals": 18, + "name": "Dinari WOOD", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xb8ebc0fc2453a1be3ab48db2de6237ce56e00c48.png", + "aggregators": ["CoinGecko", "Rubic", "Sonarwatch"], + "occurrences": 3 + }, + "0x0d794e3778fc6f5f0351c77a5c77bd21d26887f9": { + "address": "0x0d794e3778fc6f5f0351c77a5c77bd21d26887f9", + "symbol": "SLX.D", + "decimals": 18, + "name": "Dinari SLX", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x0d794e3778fc6f5f0351c77a5c77bd21d26887f9.png", + "aggregators": ["CoinGecko", "Rubic", "Sonarwatch"], + "occurrences": 3 + }, + "0xfdcc3dd6671eab0709a4c0f3f53de9a333d80798": { + "address": "0xfdcc3dd6671eab0709a4c0f3f53de9a333d80798", + "symbol": "SBC", + "decimals": 18, + "name": "Stable Coin", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xfdcc3dd6671eab0709a4c0f3f53de9a333d80798.png", + "aggregators": ["CoinGecko", "Socket", "Rubic"], + "occurrences": 3 + }, + "0xa9c380050b07f8c2bb38dc57bcdbe267cc794fe8": { + "address": "0xa9c380050b07f8c2bb38dc57bcdbe267cc794fe8", + "symbol": "AZN.D", + "decimals": 18, + "name": "Dinari AZN", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xa9c380050b07f8c2bb38dc57bcdbe267cc794fe8.png", + "aggregators": ["CoinGecko", "Rubic", "Sonarwatch"], + "occurrences": 3 + }, + "0x525dcb13b0caf29f30f93305a5cbd10314815408": { + "address": "0x525dcb13b0caf29f30f93305a5cbd10314815408", + "symbol": "TQQQ.D", + "decimals": 18, + "name": "Dinari TQQQ", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x525dcb13b0caf29f30f93305a5cbd10314815408.png", + "aggregators": ["CoinGecko", "Rubic", "Sonarwatch"], + "occurrences": 3 + }, + "0xc3c1bb150e48ca764fa9428339b63b21376fcafa": { + "address": "0xc3c1bb150e48ca764fa9428339b63b21376fcafa", + "symbol": "BRRR.D", + "decimals": 18, + "name": "Dinari BRRR", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xc3c1bb150e48ca764fa9428339b63b21376fcafa.png", + "aggregators": ["CoinGecko", "Rubic", "Sonarwatch"], + "occurrences": 3 + }, + "0x69bd04ab9290d2919f228b87f9dccf728e2675cd": { + "address": "0x69bd04ab9290d2919f228b87f9dccf728e2675cd", + "symbol": "BTCO.D", + "decimals": 18, + "name": "Dinari BTCO", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x69bd04ab9290d2919f228b87f9dccf728e2675cd.png", + "aggregators": ["CoinGecko", "Rubic", "Sonarwatch"], + "occurrences": 3 + }, + "0x408e16d4e07812a963189dc15fa61806eb8a4e9d": { + "address": "0x408e16d4e07812a963189dc15fa61806eb8a4e9d", + "symbol": "BAC.D", + "decimals": 18, + "name": "Dinari BAC", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x408e16d4e07812a963189dc15fa61806eb8a4e9d.png", + "aggregators": ["CoinGecko", "Rubic", "Sonarwatch"], + "occurrences": 3 + }, + "0xac21cd6fe43240d90741d25858d0ff0940b11cc7": { + "address": "0xac21cd6fe43240d90741d25858d0ff0940b11cc7", + "symbol": "DEFI.D", + "decimals": 18, + "name": "Dinari DEFI", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xac21cd6fe43240d90741d25858d0ff0940b11cc7.png", + "aggregators": ["CoinGecko", "Rubic", "Sonarwatch"], + "occurrences": 3 + }, + "0x842d4a6d10e41eaae03b4df87e575be53b296fc6": { + "address": "0x842d4a6d10e41eaae03b4df87e575be53b296fc6", + "symbol": "HODL.D", + "decimals": 18, + "name": "Dinari HODL", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x842d4a6d10e41eaae03b4df87e575be53b296fc6.png", + "aggregators": ["CoinGecko", "Rubic", "Sonarwatch"], + "occurrences": 3 + }, + "0xb9b034467a7f50b567b74f60b82e39bfd78aca5a": { + "address": "0xb9b034467a7f50b567b74f60b82e39bfd78aca5a", + "symbol": "SOXL.D", + "decimals": 18, + "name": "Dinari SOXL", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xb9b034467a7f50b567b74f60b82e39bfd78aca5a.png", + "aggregators": ["CoinGecko", "Rubic", "Sonarwatch"], + "occurrences": 3 + }, + "0x69fe3ee4f41e85a5431bb95bbe897f967845e5aa": { + "address": "0x69fe3ee4f41e85a5431bb95bbe897f967845e5aa", + "symbol": "SPUS.D", + "decimals": 18, + "name": "Dinari SPUS", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x69fe3ee4f41e85a5431bb95bbe897f967845e5aa.png", + "aggregators": ["CoinGecko", "Rubic", "Sonarwatch"], + "occurrences": 3 + }, + "0xb9c229a7aac1c67c7468baf37ef056a91d7df118": { + "address": "0xb9c229a7aac1c67c7468baf37ef056a91d7df118", + "symbol": "F.D", + "decimals": 18, + "name": "Dinari F", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xb9c229a7aac1c67c7468baf37ef056a91d7df118.png", + "aggregators": ["CoinGecko", "Rubic", "Sonarwatch"], + "occurrences": 3 + }, + "0x9cfe02eb040c6f5718126128dbba0c1d364d9c07": { + "address": "0x9cfe02eb040c6f5718126128dbba0c1d364d9c07", + "symbol": "SDM", + "decimals": 18, + "name": "Shieldeum", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x9cfe02eb040c6f5718126128dbba0c1d364d9c07.png", + "aggregators": ["CoinGecko", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x7212088a11b4d8f6fc90fbb3dfe793b45dd72323": { + "address": "0x7212088a11b4d8f6fc90fbb3dfe793b45dd72323", + "symbol": "BGME", + "decimals": 18, + "name": "Backed GameStop Corp", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x7212088a11b4d8f6fc90fbb3dfe793b45dd72323.png", + "aggregators": ["CoinGecko", "Rubic", "Sonarwatch"], + "occurrences": 3 + }, + "0xa8de1f55aa0e381cb456e1dcc9ff781ea0079068": { + "address": "0xa8de1f55aa0e381cb456e1dcc9ff781ea0079068", + "symbol": "UKTBL", + "decimals": 5, + "name": "Spiko UK T-Bills Money Market Fund", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xa8de1f55aa0e381cb456e1dcc9ff781ea0079068.png", + "aggregators": ["CoinGecko", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x4f33acf823e6eeb697180d553ce0c710124c8d59": { + "address": "0x4f33acf823e6eeb697180d553ce0c710124c8d59", + "symbol": "EURSPKCC", + "decimals": 5, + "name": "Spiko Digital Assets Cash & Carry Fund - Euro Share Class", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x4f33acf823e6eeb697180d553ce0c710124c8d59.png", + "aggregators": ["CoinGecko", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x5e985e4bca4664e985f3faf8140eba25b10e28c2": { + "address": "0x5e985e4bca4664e985f3faf8140eba25b10e28c2", + "symbol": "PEPPER", + "decimals": 18, + "name": "PEPPER", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x5e985e4bca4664e985f3faf8140eba25b10e28c2.png", + "aggregators": ["CoinGecko", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x02300475d1edd5b2e88efdebd3ffb549110d8aa6": { + "address": "0x02300475d1edd5b2e88efdebd3ffb549110d8aa6", + "symbol": "CITY", + "decimals": 18, + "name": "Manchester City Fan Token", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x02300475d1edd5b2e88efdebd3ffb549110d8aa6.png", + "aggregators": ["CoinGecko", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x68504b889978f8f2a7ff0e29cdd8830856e4dcba": { + "address": "0x68504b889978f8f2a7ff0e29cdd8830856e4dcba", + "symbol": "JUV", + "decimals": 18, + "name": "Juventus Fan Token", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x68504b889978f8f2a7ff0e29cdd8830856e4dcba.png", + "aggregators": ["CoinGecko", "Rubic", "Rango"], + "occurrences": 3 + }, + "0xdd15623d107c639af0c5127affa26d3f20327ec8": { + "address": "0xdd15623d107c639af0c5127affa26d3f20327ec8", + "symbol": "PSG", + "decimals": 18, + "name": "Paris Saint-Germain Fan Token", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xdd15623d107c639af0c5127affa26d3f20327ec8.png", + "aggregators": ["CoinGecko", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x70c8392de9b39a1e48d12a70af6ff4be25d6d0a2": { + "address": "0x70c8392de9b39a1e48d12a70af6ff4be25d6d0a2", + "symbol": "CHZ", + "decimals": 18, + "name": "Chiliz", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x70c8392de9b39a1e48d12a70af6ff4be25d6d0a2.png", + "aggregators": ["CoinGecko", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x580eda966a8129c3c01d149871b47fefcc599d28": { + "address": "0x580eda966a8129c3c01d149871b47fefcc599d28", + "symbol": "AFC", + "decimals": 18, + "name": "Arsenal Fan Token", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x580eda966a8129c3c01d149871b47fefcc599d28.png", + "aggregators": ["CoinGecko", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x110a0fc65a0f78840f4b4a04a42e8c285e424553": { + "address": "0x110a0fc65a0f78840f4b4a04a42e8c285e424553", + "symbol": "BAR", + "decimals": 18, + "name": "FC Barcelona Fan Token", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x110a0fc65a0f78840f4b4a04a42e8c285e424553.png", + "aggregators": ["CoinGecko", "Rubic", "Rango"], + "occurrences": 3 + }, + "0xd194fdcbc9b98d829f7a35fde25feef8f8e41ef1": { + "address": "0xd194fdcbc9b98d829f7a35fde25feef8f8e41ef1", + "symbol": "USHY.D", + "decimals": 18, + "name": "Dinari USHY", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xd194fdcbc9b98d829f7a35fde25feef8f8e41ef1.png", + "aggregators": ["CoinGecko", "Rubic", "Sonarwatch"], + "occurrences": 3 + }, + "0x687838649383f180024435b96fe014b351854a2d": { + "address": "0x687838649383f180024435b96fe014b351854a2d", + "symbol": "JPM.D", + "decimals": 18, + "name": "Dinari JPM", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x687838649383f180024435b96fe014b351854a2d.png", + "aggregators": ["CoinGecko", "Rubic", "Sonarwatch"], + "occurrences": 3 + }, + "0x78bb8ff6baa486c31ce0ef1a157798f7a606565c": { + "address": "0x78bb8ff6baa486c31ce0ef1a157798f7a606565c", + "symbol": "XOM.D", + "decimals": 18, + "name": "Dinari XOM", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x78bb8ff6baa486c31ce0ef1a157798f7a606565c.png", + "aggregators": ["CoinGecko", "Rubic", "Sonarwatch"], + "occurrences": 3 + }, + "0xacacc8241a57a23106af94f2fffda000384cb4d2": { + "address": "0xacacc8241a57a23106af94f2fffda000384cb4d2", + "symbol": "WALRF.D", + "decimals": 18, + "name": "Dinari WALRF", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xacacc8241a57a23106af94f2fffda000384cb4d2.png", + "aggregators": ["CoinGecko", "Rubic", "Sonarwatch"], + "occurrences": 3 + }, + "0x341c9b4e5566a2ae22a337c84e3c006064731925": { + "address": "0x341c9b4e5566a2ae22a337c84e3c006064731925", + "symbol": "CSCO.D", + "decimals": 18, + "name": "Dinari CSCO", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x341c9b4e5566a2ae22a337c84e3c006064731925.png", + "aggregators": ["CoinGecko", "Rubic", "Sonarwatch"], + "occurrences": 3 + }, + "0xf61558b2bc330c55ae85679be03a76dc0a8c9ed2": { + "address": "0xf61558b2bc330c55ae85679be03a76dc0a8c9ed2", + "symbol": "TJX.D", + "decimals": 18, + "name": "Dinari TJX", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xf61558b2bc330c55ae85679be03a76dc0a8c9ed2.png", + "aggregators": ["CoinGecko", "Rubic", "Sonarwatch"], + "occurrences": 3 + }, + "0xf3ec90ea681561ce77120976bcfe985f83d182d8": { + "address": "0xf3ec90ea681561ce77120976bcfe985f83d182d8", + "symbol": "GLD.D", + "decimals": 18, + "name": "Dinari GLD", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xf3ec90ea681561ce77120976bcfe985f83d182d8.png", + "aggregators": ["CoinGecko", "Rubic", "Sonarwatch"], + "occurrences": 3 + }, + "0xfa2a03b6f4a65fb1af64f7d935fdbf78693df9af": { + "address": "0xfa2a03b6f4a65fb1af64f7d935fdbf78693df9af", + "symbol": "WABASCBBTC", + "decimals": 8, + "name": "Wrapped Aave Base cbBTC", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xfa2a03b6f4a65fb1af64f7d935fdbf78693df9af.png", + "aggregators": ["1inch", "LiFi", "Rubic"], + "occurrences": 3 + }, + "0xf587b7116879a529353cc71ee959cd69fd5cae48": { + "address": "0xf587b7116879a529353cc71ee959cd69fd5cae48", + "symbol": "CGETH.HASHKEY", + "decimals": 18, + "name": "CGETH.HASHKEY", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xf587b7116879a529353cc71ee959cd69fd5cae48.png", + "aggregators": ["LiFi", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x6c47669ce25f01e64cef604e43d8fa8c42938fb1": { + "address": "0x6c47669ce25f01e64cef604e43d8fa8c42938fb1", + "symbol": "SHIA", + "decimals": 18, + "name": "SHIA", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x6c47669ce25f01e64cef604e43d8fa8c42938fb1.png", + "aggregators": ["LiFi", "Socket", "Rango"], + "occurrences": 3 + }, + "0x7788a3538c5fc7f9c7c8a74eac4c898fc8d87d92": { + "address": "0x7788a3538c5fc7f9c7c8a74eac4c898fc8d87d92", + "symbol": "SUSDX", + "decimals": 18, + "name": "SUSDX", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x7788a3538c5fc7f9c7c8a74eac4c898fc8d87d92.png", + "aggregators": ["LiFi", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x1f55a02a049033e3419a8e2975cf3f572f4e6e9a": { + "address": "0x1f55a02a049033e3419a8e2975cf3f572f4e6e9a", + "symbol": "SFRXETH", + "decimals": 18, + "name": "Staked Frax Ether", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x1f55a02a049033e3419a8e2975cf3f572f4e6e9a.png", + "aggregators": ["LiFi", "Socket", "Rango"], + "occurrences": 3 + }, + "0xe85411c030fb32a9d8b14bbbc6cb19417391f711": { + "address": "0xe85411c030fb32a9d8b14bbbc6cb19417391f711", + "symbol": "SUBTC", + "decimals": 18, + "name": "Sumerian BTC", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xe85411c030fb32a9d8b14bbbc6cb19417391f711.png", + "aggregators": ["LiFi", "Rubic", "Rango"], + "occurrences": 3 + }, + "0xc73e76aa9f14c1837cdb49bd028e8ff5a0a71dad": { + "address": "0xc73e76aa9f14c1837cdb49bd028e8ff5a0a71dad", + "symbol": "HYETH", + "decimals": 17, + "name": "High Yield ETH Index", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xc73e76aa9f14c1837cdb49bd028e8ff5a0a71dad.png", + "aggregators": ["LiFi", "Rubic", "Rango"], + "occurrences": 3 + }, + "0xb8753941196692e322846cfee9c14c97ac81928a": { + "address": "0xb8753941196692e322846cfee9c14c97ac81928a", + "symbol": "BDTF", + "decimals": 18, + "name": "Base Memeindexer DTF", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xb8753941196692e322846cfee9c14c97ac81928a.png", + "aggregators": ["Rubic", "Rango", "Sonarwatch"], + "occurrences": 3 + }, + "0xbf388570ebd5b88bfc7cd21ec469813c15f453a3": { + "address": "0xbf388570ebd5b88bfc7cd21ec469813c15f453a3", + "symbol": "PEPPER", + "decimals": 18, + "name": "Pepper Meme", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xbf388570ebd5b88bfc7cd21ec469813c15f453a3.png", + "aggregators": ["Rubic", "Rango", "Sonarwatch"], + "occurrences": 3 + }, + "0x9e949461f9ec22c6032ce26ea509824fd2f6d98f": { + "address": "0x9e949461f9ec22c6032ce26ea509824fd2f6d98f", + "symbol": "KABOSU", + "decimals": 18, + "name": "Kabosu", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x9e949461f9ec22c6032ce26ea509824fd2f6d98f.png", + "aggregators": ["Rubic", "Rango", "Sonarwatch"], + "occurrences": 3 + }, + "0x8544fe9d190fd7ec52860abbf45088e81ee24a8c": { + "address": "0x8544fe9d190fd7ec52860abbf45088e81ee24a8c", + "symbol": "TOSHI", + "decimals": 18, + "name": "Toshi", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x8544fe9d190fd7ec52860abbf45088e81ee24a8c.png", + "aggregators": ["Rubic", "Rango", "SushiSwap"], + "occurrences": 3 + }, + "0x10c1b6f768e13c624a4a23337f1a5ba5c9be0e4b": { + "address": "0x10c1b6f768e13c624a4a23337f1a5ba5c9be0e4b", + "symbol": "WARPIE", + "decimals": 18, + "name": "Warpie", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x10c1b6f768e13c624a4a23337f1a5ba5c9be0e4b.png", + "aggregators": ["Rubic", "Rango", "SushiSwap"], + "occurrences": 3 + }, + "0x5c7e299cf531eb66f2a1df637d37abb78e6200c7": { + "address": "0x5c7e299cf531eb66f2a1df637d37abb78e6200c7", + "symbol": "AXLDAI", + "decimals": 18, + "name": "Axelar Wrapped DAI", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x5c7e299cf531eb66f2a1df637d37abb78e6200c7.png", + "aggregators": ["Rubic", "Squid", "SushiSwap"], + "occurrences": 3 + }, + "0xc702b80a1bebac118cab22ce6f2978ef59563b3f": { + "address": "0xc702b80a1bebac118cab22ce6f2978ef59563b3f", + "symbol": "RAFL", + "decimals": 8, + "name": "RAFL", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xc702b80a1bebac118cab22ce6f2978ef59563b3f.png", + "aggregators": ["Rubic", "Rango", "SushiSwap"], + "occurrences": 3 + }, + "0x88558259ceda5d8e681fedb55c50070fbd3da8f9": { + "address": "0x88558259ceda5d8e681fedb55c50070fbd3da8f9", + "symbol": "MST", + "decimals": 18, + "name": "Meridian MST", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x88558259ceda5d8e681fedb55c50070fbd3da8f9.png", + "aggregators": ["Rubic", "Rango", "Sonarwatch"], + "occurrences": 3 + }, + "0x306fd3e7b169aa4ee19412323e1a5995b8c1a1f4": { + "address": "0x306fd3e7b169aa4ee19412323e1a5995b8c1a1f4", + "symbol": "FTW", + "decimals": 18, + "name": "Black Agnus", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x306fd3e7b169aa4ee19412323e1a5995b8c1a1f4.png", + "aggregators": ["Rubic", "Rango", "Sonarwatch"], + "occurrences": 3 + }, + "0x01edbffa4f61404458e22ff45deffef1c62228b5": { + "address": "0x01edbffa4f61404458e22ff45deffef1c62228b5", + "symbol": "COMSWAPWLIBRA", + "decimals": 18, + "name": "Comswap Wrapped LIBRA", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x01edbffa4f61404458e22ff45deffef1c62228b5.png", + "aggregators": ["Rubic", "Rango", "Sonarwatch"], + "occurrences": 3 + }, + "0x74299a718b2c44483a27325d7725f0b2646de3b1": { + "address": "0x74299a718b2c44483a27325d7725f0b2646de3b1", + "symbol": "DAG", + "decimals": 8, + "name": "Constellation", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x74299a718b2c44483a27325d7725f0b2646de3b1.png", + "aggregators": ["Rubic", "Rango", "Sonarwatch"], + "occurrences": 3 + }, + "0x0a27e060c0406f8ab7b64e3bee036a37e5a62853": { + "address": "0x0a27e060c0406f8ab7b64e3bee036a37e5a62853", + "symbol": "USDZ", + "decimals": 18, + "name": "ZAI Stablecoin", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x0a27e060c0406f8ab7b64e3bee036a37e5a62853.png", + "aggregators": ["Rubic", "Rango", "Sonarwatch"], + "occurrences": 3 + }, + "0x4e99472385a2522aa292b008da294a78f420a367": { + "address": "0x4e99472385a2522aa292b008da294a78f420a367", + "symbol": "TCAP", + "decimals": 18, + "name": "TCAP", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x4e99472385a2522aa292b008da294a78f420a367.png", + "aggregators": ["Rubic", "Rango", "Sonarwatch"], + "occurrences": 3 + }, + "0xdf5913632251585a55970134fad8a774628e9388": { + "address": "0xdf5913632251585a55970134fad8a774628e9388", + "symbol": "UFIL", + "decimals": 18, + "name": "Wrapped Filecoin (Universal)", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xdf5913632251585a55970134fad8a774628e9388.png", + "aggregators": ["Rubic", "Rango", "Sonarwatch"], + "occurrences": 3 + }, + "0xacbf16f82753f3d52a2c87e4eeda220c9a7a3762": { + "address": "0xacbf16f82753f3d52a2c87e4eeda220c9a7a3762", + "symbol": "UFET", + "decimals": 18, + "name": "Wrapped Artificial Superintelligence Alliance (Universal)", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xacbf16f82753f3d52a2c87e4eeda220c9a7a3762.png", + "aggregators": ["Rubic", "Rango", "Sonarwatch"], + "occurrences": 3 + }, + "0x47686106181b3cefe4eaf94c4c10b48ac750370b": { + "address": "0x47686106181b3cefe4eaf94c4c10b48ac750370b", + "symbol": "VTF", + "decimals": 18, + "name": "Virtuals Index", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x47686106181b3cefe4eaf94c4c10b48ac750370b.png", + "aggregators": ["Rubic", "Rango", "Sonarwatch"], + "occurrences": 3 + }, + "0xbb2a93afcf5d3af8ae28dd50d6c18556ea532c5a": { + "address": "0xbb2a93afcf5d3af8ae28dd50d6c18556ea532c5a", + "symbol": "SAGE", + "decimals": 18, + "name": "Sage Market", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xbb2a93afcf5d3af8ae28dd50d6c18556ea532c5a.png", + "aggregators": ["Rubic", "Rango", "Sonarwatch"], + "occurrences": 3 + }, + "0xfe9885baff18074846aaa2d5541581adf068731d": { + "address": "0xfe9885baff18074846aaa2d5541581adf068731d", + "symbol": "DOR", + "decimals": 8, + "name": "Dor", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xfe9885baff18074846aaa2d5541581adf068731d.png", + "aggregators": ["Rubic", "Rango", "Sonarwatch"], + "occurrences": 3 + }, + "0x4e65fe4dba92790696d040ac24aa414708f5c0ab": { + "address": "0x4e65fe4dba92790696d040ac24aa414708f5c0ab", + "symbol": "AUSDC", + "decimals": 6, + "name": "Aave v3 USDC", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x4e65fe4dba92790696d040ac24aa414708f5c0ab.png", + "aggregators": ["Metamask", "LiFi"], + "occurrences": 2 + }, + "0x794fddbe0609cd704d7920eb3f950a57d4661193": { + "address": "0x794fddbe0609cd704d7920eb3f950a57d4661193", + "symbol": "ART", + "decimals": 18, + "name": "Artizen Token", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x794fddbe0609cd704d7920eb3f950a57d4661193.png", + "aggregators": ["Metamask"], + "occurrences": 1 + }, + "0x989cfdc3508500d0c91f22896a0d2ee1ef675870": { + "address": "0x989cfdc3508500d0c91f22896a0d2ee1ef675870", + "symbol": "TRX", + "decimals": 6, + "name": "Tron", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x989cfdc3508500d0c91f22896a0d2ee1ef675870.png", + "aggregators": ["Metamask"], + "occurrences": 1 + } + }, + "timestamp": 1779126362487 + }, + "0x38": { + "data": { + "0xf8a0bf9cf54bb92f17374d9e9a321e6a111a51bd": { + "address": "0xf8a0bf9cf54bb92f17374d9e9a321e6a111a51bd", + "symbol": "LINK", + "decimals": 18, + "name": "BNB pegged ChainLink", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xf8a0bf9cf54bb92f17374d9e9a321e6a111a51bd.png", + "aggregators": [ + "PancakeTop100", + "1inch", + "LiFi", + "TrustWallet", + "Socket", + "Rubic", + "Squid", + "Rango", + "Sonarwatch", + "SushiSwap" + ], + "occurrences": 10 + }, + "0x0e09fabb73bd3ade0a17ecc321fd13a19e81ce82": { + "address": "0x0e09fabb73bd3ade0a17ecc321fd13a19e81ce82", + "symbol": "CAKE", + "decimals": 18, + "name": "PancakeSwap Token", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x0e09fabb73bd3ade0a17ecc321fd13a19e81ce82.png", + "aggregators": [ + "PancakeExtended", + "1inch", + "LiFi", + "TrustWallet", + "Socket", + "Rubic", + "Squid", + "Rango", + "Sonarwatch", + "SushiSwap", + "BinanceDex" + ], + "occurrences": 11 + }, + "0x4b0f1812e5df2a09796481ff14017e6005508003": { + "address": "0x4b0f1812e5df2a09796481ff14017e6005508003", + "symbol": "TWT", + "decimals": 18, + "name": "Trust Wallet", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x4b0f1812e5df2a09796481ff14017e6005508003.png", + "aggregators": [ + "PancakeTop100", + "1inch", + "LiFi", + "TrustWallet", + "Socket", + "Rubic", + "Squid", + "Rango", + "Sonarwatch", + "SushiSwap" + ], + "occurrences": 10 + }, + "0xa2b726b1145a4773f68593cf171187d8ebe4d495": { + "address": "0xa2b726b1145a4773f68593cf171187d8ebe4d495", + "symbol": "INJ", + "decimals": 18, + "name": "Injective", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xa2b726b1145a4773f68593cf171187d8ebe4d495.png", + "aggregators": [ + "PancakeTop100", + "1inch", + "LiFi", + "TrustWallet", + "Socket", + "Rubic", + "Squid", + "Rango", + "SushiSwap" + ], + "occurrences": 9 + }, + "0xe9e7cea3dedca5984780bafc599bd69add087d56": { + "address": "0xe9e7cea3dedca5984780bafc599bd69add087d56", + "symbol": "BUSD", + "decimals": 18, + "name": "BNB pegged BUSD", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xe9e7cea3dedca5984780bafc599bd69add087d56.png", + "aggregators": [ + "PancakeExtended", + "1inch", + "LiFi", + "TrustWallet", + "Socket", + "Rubic", + "Squid", + "Rango", + "Sonarwatch", + "SushiSwap", + "BinanceDex" + ], + "occurrences": 11 + }, + "0x47bead2563dcbf3bf2c9407fea4dc236faba485a": { + "address": "0x47bead2563dcbf3bf2c9407fea4dc236faba485a", + "symbol": "SXP", + "decimals": 18, + "name": "Swipe", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x47bead2563dcbf3bf2c9407fea4dc236faba485a.png", + "aggregators": [ + "PancakeTop100", + "1inch", + "LiFi", + "TrustWallet", + "Socket", + "Rubic", + "Squid", + "Rango", + "Sonarwatch", + "SushiSwap" + ], + "occurrences": 10 + }, + "0xbf5140a22578168fd562dccf235e5d43a02ce9b1": { + "address": "0xbf5140a22578168fd562dccf235e5d43a02ce9b1", + "symbol": "UNI", + "decimals": 18, + "name": "BNB pegged Uniswap", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xbf5140a22578168fd562dccf235e5d43a02ce9b1.png", + "aggregators": [ + "PancakeTop100", + "1inch", + "LiFi", + "TrustWallet", + "Socket", + "Rubic", + "Squid", + "Rango", + "Sonarwatch", + "SushiSwap" + ], + "occurrences": 10 + }, + "0x7130d2a12b9bcbfae4f2634d864a1ee1ce3ead9c": { + "address": "0x7130d2a12b9bcbfae4f2634d864a1ee1ce3ead9c", + "symbol": "BTCB", + "decimals": 18, + "name": "BNB pegged BTCB Token", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x7130d2a12b9bcbfae4f2634d864a1ee1ce3ead9c.png", + "aggregators": [ + "PancakeExtended", + "1inch", + "LiFi", + "TrustWallet", + "Socket", + "Rubic", + "Squid", + "Rango", + "Sonarwatch", + "SushiSwap", + "BinanceDex" + ], + "occurrences": 11 + }, + "0x3ee2200efb3400fabb9aacf31297cbdd1d435d47": { + "address": "0x3ee2200efb3400fabb9aacf31297cbdd1d435d47", + "symbol": "ADA", + "decimals": 18, + "name": "BNB pegged Cardano Token", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x3ee2200efb3400fabb9aacf31297cbdd1d435d47.png", + "aggregators": [ + "PancakeTop100", + "1inch", + "LiFi", + "TrustWallet", + "Socket", + "Rubic", + "Squid", + "Rango", + "Sonarwatch", + "SushiSwap", + "BinanceDex" + ], + "occurrences": 11 + }, + "0x1af3f329e8be154074d8769d1ffa4ee058b1dbc3": { + "address": "0x1af3f329e8be154074d8769d1ffa4ee058b1dbc3", + "symbol": "DAI", + "decimals": 18, + "name": "BNB pegged Dai Token", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x1af3f329e8be154074d8769d1ffa4ee058b1dbc3.png", + "aggregators": [ + "PancakeExtended", + "1inch", + "LiFi", + "TrustWallet", + "Socket", + "Rubic", + "Rango", + "Sonarwatch", + "SushiSwap", + "BinanceDex" + ], + "occurrences": 10 + }, + "0x8ac76a51cc950d9822d68b83fe1ad97b32cd580d": { + "address": "0x8ac76a51cc950d9822d68b83fe1ad97b32cd580d", + "symbol": "USDC", + "decimals": 18, + "name": "Binance-Peg USD Coin", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x8ac76a51cc950d9822d68b83fe1ad97b32cd580d.png", + "aggregators": [ + "PancakeExtended", + "1inch", + "LiFi", + "Socket", + "Rubic", + "Squid", + "Rango", + "Sonarwatch", + "SushiSwap" + ], + "occurrences": 9 + }, + "0x7083609fce4d1d8dc0c979aab8c869ea2c873402": { + "address": "0x7083609fce4d1d8dc0c979aab8c869ea2c873402", + "symbol": "DOT", + "decimals": 18, + "name": "BNB pegged Polkadot Token", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x7083609fce4d1d8dc0c979aab8c869ea2c873402.png", + "aggregators": [ + "PancakeExtended", + "1inch", + "LiFi", + "TrustWallet", + "Socket", + "Rubic", + "Squid", + "Rango", + "SushiSwap", + "BinanceDex" + ], + "occurrences": 10 + }, + "0x715d400f88c167884bbcc41c5fea407ed4d2f8a0": { + "address": "0x715d400f88c167884bbcc41c5fea407ed4d2f8a0", + "symbol": "AXS", + "decimals": 18, + "name": "Axie Infinity", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x715d400f88c167884bbcc41c5fea407ed4d2f8a0.png", + "aggregators": [ + "PancakeTop100", + "1inch", + "LiFi", + "Socket", + "Rubic", + "Squid", + "Rango", + "Sonarwatch" + ], + "occurrences": 8 + }, + "0xe02df9e3e622debdd69fb838bb799e3f168902c5": { + "address": "0xe02df9e3e622debdd69fb838bb799e3f168902c5", + "symbol": "BAKE", + "decimals": 18, + "name": "BakeryToken", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xe02df9e3e622debdd69fb838bb799e3f168902c5.png", + "aggregators": [ + "PancakeExtended", + "1inch", + "LiFi", + "Socket", + "Rubic", + "Rango", + "Sonarwatch", + "SushiSwap", + "BinanceDex" + ], + "occurrences": 9 + }, + "0xba2ae424d960c26247dd6c32edc70b295c744c43": { + "address": "0xba2ae424d960c26247dd6c32edc70b295c744c43", + "symbol": "DOGE", + "decimals": 8, + "name": "Dogecoin", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xba2ae424d960c26247dd6c32edc70b295c744c43.png", + "aggregators": [ + "PancakeTop100", + "1inch", + "LiFi", + "Socket", + "Rubic", + "Squid", + "Rango", + "Sonarwatch", + "BinanceDex" + ], + "occurrences": 9 + }, + "0x477bc8d23c634c154061869478bce96be6045d12": { + "address": "0x477bc8d23c634c154061869478bce96be6045d12", + "symbol": "SFUND", + "decimals": 18, + "name": "Seedify.fund", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x477bc8d23c634c154061869478bce96be6045d12.png", + "aggregators": [ + "PancakeTop100", + "1inch", + "LiFi", + "Rubic", + "Squid", + "Rango", + "Sonarwatch" + ], + "occurrences": 7 + }, + "0x55d398326f99059ff775485246999027b3197955": { + "address": "0x55d398326f99059ff775485246999027b3197955", + "symbol": "USDT", + "decimals": 18, + "name": "Tether USD", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x55d398326f99059ff775485246999027b3197955.png", + "aggregators": [ + "PancakeExtended", + "1inch", + "LiFi", + "TrustWallet", + "Socket", + "Rubic", + "Squid", + "Rango", + "Sonarwatch", + "SushiSwap" + ], + "occurrences": 10 + }, + "0xbb4cdb9cbd36b01bd1cbaebf2de08d9173bc095c": { + "address": "0xbb4cdb9cbd36b01bd1cbaebf2de08d9173bc095c", + "symbol": "WBNB", + "decimals": 18, + "name": "Wrapped BNB", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xbb4cdb9cbd36b01bd1cbaebf2de08d9173bc095c.png", + "aggregators": [ + "PancakeExtended", + "1inch", + "LiFi", + "TrustWallet", + "Socket", + "Rubic", + "Squid", + "Rango", + "Sonarwatch", + "SushiSwap" + ], + "occurrences": 10 + }, + "0xcf6bb5389c92bdda8a3747ddb454cb7a64626c63": { + "address": "0xcf6bb5389c92bdda8a3747ddb454cb7a64626c63", + "symbol": "XVS", + "decimals": 18, + "name": "Venus", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xcf6bb5389c92bdda8a3747ddb454cb7a64626c63.png", + "aggregators": [ + "PancakeExtended", + "1inch", + "LiFi", + "TrustWallet", + "Socket", + "Rubic", + "Squid", + "Rango", + "Sonarwatch", + "SushiSwap" + ], + "occurrences": 10 + }, + "0x0eb3a705fc54725037cc9e008bdede697f62f335": { + "address": "0x0eb3a705fc54725037cc9e008bdede697f62f335", + "symbol": "ATOM", + "decimals": 18, + "name": "BNB pegged Cosmos Token", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x0eb3a705fc54725037cc9e008bdede697f62f335.png", + "aggregators": [ + "PancakeTop100", + "1inch", + "LiFi", + "TrustWallet", + "Socket", + "Rubic", + "Squid", + "Rango", + "Sonarwatch", + "SushiSwap", + "BinanceDex" + ], + "occurrences": 11 + }, + "0xf307910a4c7bbc79691fd374889b36d8531b08e3": { + "address": "0xf307910a4c7bbc79691fd374889b36d8531b08e3", + "symbol": "ANKR", + "decimals": 18, + "name": "ANKR", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xf307910a4c7bbc79691fd374889b36d8531b08e3.png", + "aggregators": [ + "PancakeExtended", + "1inch", + "LiFi", + "Socket", + "Rubic", + "Squid", + "Rango", + "Sonarwatch", + "SushiSwap", + "BinanceDex" + ], + "occurrences": 10 + }, + "0x947950bcc74888a40ffa2593c5798f11fc9124c4": { + "address": "0x947950bcc74888a40ffa2593c5798f11fc9124c4", + "symbol": "SUSHI.BINANCE", + "decimals": 18, + "name": "Binance-Peg SushiToken", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x947950bcc74888a40ffa2593c5798f11fc9124c4.png", + "aggregators": [ + "PancakeTop100", + "1inch", + "LiFi", + "Socket", + "Rubic", + "Squid", + "Rango", + "Sonarwatch", + "SushiSwap" + ], + "occurrences": 9 + }, + "0x1d2f0da169ceb9fc7b3144628db156f3f6c60dbe": { + "address": "0x1d2f0da169ceb9fc7b3144628db156f3f6c60dbe", + "symbol": "XRP", + "decimals": 18, + "name": "BNB pegged XRP Token", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x1d2f0da169ceb9fc7b3144628db156f3f6c60dbe.png", + "aggregators": [ + "PancakeTop100", + "1inch", + "LiFi", + "TrustWallet", + "Socket", + "Rubic", + "Squid", + "Sonarwatch", + "SushiSwap" + ], + "occurrences": 9 + }, + "0xd41fdb03ba84762dd66a0af1a6c8540ff1ba5dfb": { + "address": "0xd41fdb03ba84762dd66a0af1a6c8540ff1ba5dfb", + "symbol": "SFP", + "decimals": 18, + "name": "SafePal Token", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xd41fdb03ba84762dd66a0af1a6c8540ff1ba5dfb.png", + "aggregators": [ + "PancakeTop100", + "1inch", + "LiFi", + "TrustWallet", + "Socket", + "Rubic", + "Squid", + "Rango", + "Sonarwatch" + ], + "occurrences": 9 + }, + "0x0d8ce2a99bb6e3b7db580ed848240e4a0f9ae153": { + "address": "0x0d8ce2a99bb6e3b7db580ed848240e4a0f9ae153", + "symbol": "FIL", + "decimals": 18, + "name": "BNB pegged Filecoin", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x0d8ce2a99bb6e3b7db580ed848240e4a0f9ae153.png", + "aggregators": [ + "PancakeExtended", + "1inch", + "LiFi", + "TrustWallet", + "Socket", + "Rubic", + "Squid", + "Sonarwatch", + "SushiSwap" + ], + "occurrences": 9 + }, + "0x52ce071bd9b1c4b00a0b92d298c512478cad67e8": { + "address": "0x52ce071bd9b1c4b00a0b92d298c512478cad67e8", + "symbol": "COMP", + "decimals": 18, + "name": "CompoundCoin", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x52ce071bd9b1c4b00a0b92d298c512478cad67e8.png", + "aggregators": [ + "PancakeExtended", + "1inch", + "LiFi", + "Socket", + "Rubic", + "Squid", + "Rango", + "Sonarwatch", + "BinanceDex" + ], + "occurrences": 9 + }, + "0xaec945e04baf28b135fa7c640f624f8d90f1c3a6": { + "address": "0xaec945e04baf28b135fa7c640f624f8d90f1c3a6", + "symbol": "C98", + "decimals": 18, + "name": "Coin98", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xaec945e04baf28b135fa7c640f624f8d90f1c3a6.png", + "aggregators": [ + "PancakeTop100", + "1inch", + "LiFi", + "Socket", + "Rubic", + "Squid", + "Rango" + ], + "occurrences": 7 + }, + "0x3203c9e46ca618c8c1ce5dc67e7e9d75f5da2377": { + "address": "0x3203c9e46ca618c8c1ce5dc67e7e9d75f5da2377", + "symbol": "MBOX", + "decimals": 18, + "name": "Mobox", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x3203c9e46ca618c8c1ce5dc67e7e9d75f5da2377.png", + "aggregators": [ + "PancakeTop100", + "1inch", + "LiFi", + "Rubic", + "Squid", + "Rango", + "Sonarwatch" + ], + "occurrences": 7 + }, + "0xa1faa113cbe53436df28ff0aee54275c13b40975": { + "address": "0xa1faa113cbe53436df28ff0aee54275c13b40975", + "symbol": "ALPHA", + "decimals": 18, + "name": "Alpha Finance", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xa1faa113cbe53436df28ff0aee54275c13b40975.png", + "aggregators": [ + "PancakeTop100", + "1inch", + "LiFi", + "TrustWallet", + "Socket", + "Rubic", + "Rango", + "Sonarwatch", + "SushiSwap" + ], + "occurrences": 9 + }, + "0x4338665cbb7b2485a8855a139b75d5e34ab0db94": { + "address": "0x4338665cbb7b2485a8855a139b75d5e34ab0db94", + "symbol": "LTC", + "decimals": 18, + "name": "BNB pegged Litecoin Token", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x4338665cbb7b2485a8855a139b75d5e34ab0db94.png", + "aggregators": [ + "PancakeExtended", + "1inch", + "LiFi", + "TrustWallet", + "Socket", + "Rubic", + "Squid", + "Sonarwatch", + "SushiSwap" + ], + "occurrences": 9 + }, + "0x928e55dab735aa8260af3cedada18b5f70c72f1b": { + "address": "0x928e55dab735aa8260af3cedada18b5f70c72f1b", + "symbol": "FRONT", + "decimals": 18, + "name": "Frontier Token", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x928e55dab735aa8260af3cedada18b5f70c72f1b.png", + "aggregators": [ + "PancakeTop100", + "1inch", + "LiFi", + "TrustWallet", + "Socket", + "Rubic", + "Rango", + "Sonarwatch", + "SushiSwap" + ], + "occurrences": 9 + }, + "0xac51066d7bec65dc4589368da368b212745d63e8": { + "address": "0xac51066d7bec65dc4589368da368b212745d63e8", + "symbol": "ALICE", + "decimals": 6, + "name": "My Neighbor Alice", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xac51066d7bec65dc4589368da368b212745d63e8.png", + "aggregators": [ + "PancakeTop100", + "1inch", + "LiFi", + "Socket", + "Rubic", + "Squid", + "Rango", + "Sonarwatch" + ], + "occurrences": 8 + }, + "0x2222227e22102fe3322098e4cbfe18cfebd57c95": { + "address": "0x2222227e22102fe3322098e4cbfe18cfebd57c95", + "symbol": "TLM", + "decimals": 4, + "name": "Alien Worlds", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x2222227e22102fe3322098e4cbfe18cfebd57c95.png", + "aggregators": [ + "PancakeTop100", + "1inch", + "LiFi", + "Socket", + "Rubic", + "Squid", + "Rango", + "Sonarwatch" + ], + "occurrences": 8 + }, + "0xfd7b3a77848f1c2d67e05e54d78d174a0c850335": { + "address": "0xfd7b3a77848f1c2d67e05e54d78d174a0c850335", + "symbol": "ONT", + "decimals": 18, + "name": "Ontology Token", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xfd7b3a77848f1c2d67e05e54d78d174a0c850335.png", + "aggregators": [ + "PancakeExtended", + "1inch", + "LiFi", + "Socket", + "Rubic", + "Rango", + "Sonarwatch", + "SushiSwap" + ], + "occurrences": 8 + }, + "0x4bd17003473389a42daf6a0a729f6fdb328bbbd7": { + "address": "0x4bd17003473389a42daf6a0a729f6fdb328bbbd7", + "symbol": "VAI", + "decimals": 18, + "name": "VAI Stablecoin", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x4bd17003473389a42daf6a0a729f6fdb328bbbd7.png", + "aggregators": [ + "PancakeTop100", + "1inch", + "LiFi", + "TrustWallet", + "Socket", + "Rubic", + "Sonarwatch", + "SushiSwap" + ], + "occurrences": 8 + }, + "0xf21768ccbc73ea5b6fd3c687208a7c2def2d966e": { + "address": "0xf21768ccbc73ea5b6fd3c687208a7c2def2d966e", + "symbol": "REEF", + "decimals": 18, + "name": "Reef.finance", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xf21768ccbc73ea5b6fd3c687208a7c2def2d966e.png", + "aggregators": [ + "PancakeTop100", + "1inch", + "TrustWallet", + "Socket", + "Rubic", + "Rango", + "Sonarwatch", + "SushiSwap" + ], + "occurrences": 8 + }, + "0xa2120b9e674d3fc3875f415a7df52e382f141225": { + "address": "0xa2120b9e674d3fc3875f415a7df52e382f141225", + "symbol": "ATA", + "decimals": 18, + "name": "Automata", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xa2120b9e674d3fc3875f415a7df52e382f141225.png", + "aggregators": [ + "PancakeTop100", + "1inch", + "LiFi", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 7 + }, + "0xd40bedb44c081d2935eeba6ef5a3c8a31a1bbe13": { + "address": "0xd40bedb44c081d2935eeba6ef5a3c8a31a1bbe13", + "symbol": "HERO", + "decimals": 18, + "name": "Metahero", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xd40bedb44c081d2935eeba6ef5a3c8a31a1bbe13.png", + "aggregators": [ + "PancakeTop100", + "1inch", + "LiFi", + "Rubic", + "Squid", + "Rango", + "Sonarwatch" + ], + "occurrences": 7 + }, + "0xe0e514c71282b6f4e823703a39374cf58dc3ea4f": { + "address": "0xe0e514c71282b6f4e823703a39374cf58dc3ea4f", + "symbol": "BELT", + "decimals": 18, + "name": "BELT Token", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xe0e514c71282b6f4e823703a39374cf58dc3ea4f.png", + "aggregators": [ + "PancakeTop100", + "1inch", + "LiFi", + "Rubic", + "Squid", + "Rango", + "Sonarwatch", + "BinanceDex" + ], + "occurrences": 8 + }, + "0x12bb890508c125661e03b09ec06e404bc9289040": { + "address": "0x12bb890508c125661e03b09ec06e404bc9289040", + "symbol": "RACA", + "decimals": 18, + "name": "Radio Caca", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x12bb890508c125661e03b09ec06e404bc9289040.png", + "aggregators": [ + "PancakeTop100", + "Socket", + "Rubic", + "Squid", + "Rango", + "Sonarwatch" + ], + "occurrences": 6 + }, + "0x56b6fb708fc5732dec1afc8d8556423a2edccbd6": { + "address": "0x56b6fb708fc5732dec1afc8d8556423a2edccbd6", + "symbol": "EOS", + "decimals": 18, + "name": "BNB pegged EOS Token", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x56b6fb708fc5732dec1afc8d8556423a2edccbd6.png", + "aggregators": [ + "PancakeExtended", + "1inch", + "LiFi", + "TrustWallet", + "Socket", + "Rubic", + "Rango", + "Sonarwatch", + "SushiSwap" + ], + "occurrences": 9 + }, + "0xfb6115445bff7b52feb98650c87f44907e58f802": { + "address": "0xfb6115445bff7b52feb98650c87f44907e58f802", + "symbol": "AAVE", + "decimals": 18, + "name": "Aave Token", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xfb6115445bff7b52feb98650c87f44907e58f802.png", + "aggregators": [ + "PancakeExtended", + "1inch", + "LiFi", + "Socket", + "Rubic", + "Squid", + "Rango", + "Sonarwatch", + "BinanceDex" + ], + "occurrences": 9 + }, + "0x90c97f71e18723b0cf0dfa30ee176ab653e89f40": { + "address": "0x90c97f71e18723b0cf0dfa30ee176ab653e89f40", + "symbol": "FRAX", + "decimals": 18, + "name": "Frax", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x90c97f71e18723b0cf0dfa30ee176ab653e89f40.png", + "aggregators": [ + "PancakeCoinMarketCap", + "1inch", + "LiFi", + "Socket", + "Rubic", + "Rango", + "Sonarwatch", + "SushiSwap" + ], + "occurrences": 8 + }, + "0xe4cc45bb5dbda06db6183e8bf016569f40497aa5": { + "address": "0xe4cc45bb5dbda06db6183e8bf016569f40497aa5", + "symbol": "GAL", + "decimals": 18, + "name": "Galxe", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xe4cc45bb5dbda06db6183e8bf016569f40497aa5.png", + "aggregators": [ + "PancakeExtended", + "1inch", + "LiFi", + "Socket", + "Rubic", + "Squid", + "Rango", + "Sonarwatch" + ], + "occurrences": 8 + }, + "0xb0d502e938ed5f4df2e681fe6e419ff29631d62b": { + "address": "0xb0d502e938ed5f4df2e681fe6e419ff29631d62b", + "symbol": "STG", + "decimals": 18, + "name": "StargateToken", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xb0d502e938ed5f4df2e681fe6e419ff29631d62b.png", + "aggregators": [ + "PancakeExtended", + "1inch", + "LiFi", + "Socket", + "Rubic", + "Squid", + "Sonarwatch", + "SushiSwap" + ], + "occurrences": 8 + }, + "0x728c5bac3c3e370e372fc4671f9ef6916b814d8b": { + "address": "0x728c5bac3c3e370e372fc4671f9ef6916b814d8b", + "symbol": "UNFI", + "decimals": 18, + "name": "UNFI", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x728c5bac3c3e370e372fc4671f9ef6916b814d8b.png", + "aggregators": [ + "PancakeExtended", + "LiFi", + "TrustWallet", + "Socket", + "Rubic", + "Rango", + "Sonarwatch", + "SushiSwap" + ], + "occurrences": 8 + }, + "0x4691937a7508860f876c9c0a2a617e7d9e945d4b": { + "address": "0x4691937a7508860f876c9c0a2a617e7d9e945d4b", + "symbol": "WOO", + "decimals": 18, + "name": "WOO", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x4691937a7508860f876c9c0a2a617e7d9e945d4b.png", + "aggregators": [ + "PancakeExtended", + "1inch", + "LiFi", + "Socket", + "Rubic", + "Squid", + "Rango", + "Sonarwatch" + ], + "occurrences": 8 + }, + "0xe0f94ac5462997d2bc57287ac3a3ae4c31345d66": { + "address": "0xe0f94ac5462997d2bc57287ac3a3ae4c31345d66", + "symbol": "CEEK", + "decimals": 18, + "name": "CEEK Smart VR", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xe0f94ac5462997d2bc57287ac3a3ae4c31345d66.png", + "aggregators": [ + "PancakeExtended", + "1inch", + "LiFi", + "Socket", + "Rubic", + "Squid", + "Rango", + "Sonarwatch" + ], + "occurrences": 8 + }, + "0xc5f0f7b66764f6ec8c8dff7ba683102295e16409": { + "address": "0xc5f0f7b66764f6ec8c8dff7ba683102295e16409", + "symbol": "FDUSD", + "decimals": 18, + "name": "First Digital USD", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xc5f0f7b66764f6ec8c8dff7ba683102295e16409.png", + "aggregators": [ + "PancakeExtended", + "1inch", + "LiFi", + "Socket", + "Rubic", + "Squid", + "Rango", + "Sonarwatch" + ], + "occurrences": 8 + }, + "0x23396cf899ca06c4472205fc903bdb4de249d6fc": { + "address": "0x23396cf899ca06c4472205fc903bdb4de249d6fc", + "symbol": "UST", + "decimals": 18, + "name": "Wrapped UST Token", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x23396cf899ca06c4472205fc903bdb4de249d6fc.png", + "aggregators": [ + "PancakeTop100", + "1inch", + "LiFi", + "TrustWallet", + "Socket", + "Rubic", + "Rango", + "SushiSwap" + ], + "occurrences": 8 + }, + "0x8ff795a6f4d97e7887c79bea79aba5cc76444adf": { + "address": "0x8ff795a6f4d97e7887c79bea79aba5cc76444adf", + "symbol": "BCH", + "decimals": 18, + "name": "BNB pegged Bitcoin Cash Token", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x8ff795a6f4d97e7887c79bea79aba5cc76444adf.png", + "aggregators": [ + "PancakeExtended", + "1inch", + "LiFi", + "TrustWallet", + "Socket", + "Rubic", + "Sonarwatch", + "SushiSwap", + "BinanceDex" + ], + "occurrences": 9 + }, + "0x68e374f856bf25468d365e539b700b648bf94b67": { + "address": "0x68e374f856bf25468d365e539b700b648bf94b67", + "symbol": "MIST", + "decimals": 18, + "name": "Mist", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x68e374f856bf25468d365e539b700b648bf94b67.png", + "aggregators": [ + "PancakeTop100", + "1inch", + "LiFi", + "Socket", + "Rubic", + "Squid", + "Rango", + "Sonarwatch" + ], + "occurrences": 8 + }, + "0xb2bd0749dbe21f623d9baba856d3b0f0e1bfec9c": { + "address": "0xb2bd0749dbe21f623d9baba856d3b0f0e1bfec9c", + "symbol": "DUSK", + "decimals": 18, + "name": "DUSK", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xb2bd0749dbe21f623d9baba856d3b0f0e1bfec9c.png", + "aggregators": [ + "PancakeExtended", + "1inch", + "LiFi", + "Socket", + "Rubic", + "Squid", + "Rango", + "Sonarwatch" + ], + "occurrences": 8 + }, + "0x67ee3cb086f8a16f34bee3ca72fad36f7db929e2": { + "address": "0x67ee3cb086f8a16f34bee3ca72fad36f7db929e2", + "symbol": "DODO", + "decimals": 18, + "name": "DODO", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x67ee3cb086f8a16f34bee3ca72fad36f7db929e2.png", + "aggregators": [ + "PancakeTop100", + "1inch", + "LiFi", + "TrustWallet", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 8 + }, + "0x2ed9a5c8c13b93955103b9a7c167b67ef4d568a3": { + "address": "0x2ed9a5c8c13b93955103b9a7c167b67ef4d568a3", + "symbol": "MASK", + "decimals": 18, + "name": "Mask Network", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x2ed9a5c8c13b93955103b9a7c167b67ef4d568a3.png", + "aggregators": [ + "PancakeTop100", + "LiFi", + "Socket", + "Rubic", + "Squid", + "Rango", + "Sonarwatch" + ], + "occurrences": 7 + }, + "0xf218184af829cf2b0019f8e6f0b2423498a36983": { + "address": "0xf218184af829cf2b0019f8e6f0b2423498a36983", + "symbol": "MATH", + "decimals": 18, + "name": "Math", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xf218184af829cf2b0019f8e6f0b2423498a36983.png", + "aggregators": [ + "PancakeExtended", + "1inch", + "Socket", + "Rubic", + "Rango", + "Sonarwatch", + "SushiSwap" + ], + "occurrences": 7 + }, + "0x833f307ac507d47309fd8cdd1f835bef8d702a93": { + "address": "0x833f307ac507d47309fd8cdd1f835bef8d702a93", + "symbol": "REVV", + "decimals": 18, + "name": "REVV", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x833f307ac507d47309fd8cdd1f835bef8d702a93.png", + "aggregators": [ + "PancakeExtended", + "1inch", + "LiFi", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 7 + }, + "0x90ed8f1dc86388f14b64ba8fb4bbd23099f18240": { + "address": "0x90ed8f1dc86388f14b64ba8fb4bbd23099f18240", + "symbol": "SDAO", + "decimals": 18, + "name": "SingularityDAO", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x90ed8f1dc86388f14b64ba8fb4bbd23099f18240.png", + "aggregators": [ + "PancakeExtended", + "1inch", + "Socket", + "Rubic", + "Squid", + "Rango", + "Sonarwatch" + ], + "occurrences": 7 + }, + "0x43a8cab15d06d3a5fe5854d714c37e7e9246f170": { + "address": "0x43a8cab15d06d3a5fe5854d714c37e7e9246f170", + "symbol": "ORBS", + "decimals": 18, + "name": "Orbs", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x43a8cab15d06d3a5fe5854d714c37e7e9246f170.png", + "aggregators": [ + "PancakeExtended", + "1inch", + "LiFi", + "Socket", + "Rubic", + "Squid", + "Rango" + ], + "occurrences": 7 + }, + "0x9678e42cebeb63f23197d726b29b1cb20d0064e5": { + "address": "0x9678e42cebeb63f23197d726b29b1cb20d0064e5", + "symbol": "IOTX", + "decimals": 18, + "name": "Binance-Peg IoTeX", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x9678e42cebeb63f23197d726b29b1cb20d0064e5.png", + "aggregators": [ + "PancakeTop100", + "1inch", + "LiFi", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 7 + }, + "0xc748673057861a797275cd8a068abb95a902e8de": { + "address": "0xc748673057861a797275cd8a068abb95a902e8de", + "symbol": "BABYDOGE", + "decimals": 9, + "name": "Baby Doge Coin", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xc748673057861a797275cd8a068abb95a902e8de.png", + "aggregators": [ + "PancakeTop100", + "1inch", + "TrustWallet", + "Socket", + "Rubic", + "Squid", + "Rango" + ], + "occurrences": 7 + }, + "0x5a3010d4d8d3b5fb49f8b6e57fb9e48063f16700": { + "address": "0x5a3010d4d8d3b5fb49f8b6e57fb9e48063f16700", + "symbol": "BSCPAD", + "decimals": 18, + "name": "BSCPAD", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x5a3010d4d8d3b5fb49f8b6e57fb9e48063f16700.png", + "aggregators": [ + "PancakeTop100", + "1inch", + "LiFi", + "Rubic", + "Squid", + "Rango", + "Sonarwatch" + ], + "occurrences": 7 + }, + "0x9f589e3eabe42ebc94a44727b3f3531c0c877809": { + "address": "0x9f589e3eabe42ebc94a44727b3f3531c0c877809", + "symbol": "TKO", + "decimals": 18, + "name": "Tokocrypto", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x9f589e3eabe42ebc94a44727b3f3531c0c877809.png", + "aggregators": [ + "PancakeTop100", + "1inch", + "LiFi", + "Rubic", + "Squid", + "Rango", + "Sonarwatch" + ], + "occurrences": 7 + }, + "0xae9269f27437f0fcbc232d39ec814844a51d6b8f": { + "address": "0xae9269f27437f0fcbc232d39ec814844a51d6b8f", + "symbol": "BURGER", + "decimals": 18, + "name": "Burger Swap", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xae9269f27437f0fcbc232d39ec814844a51d6b8f.png", + "aggregators": [ + "PancakeExtended", + "LiFi", + "Socket", + "Rubic", + "Rango", + "Sonarwatch", + "SushiSwap", + "BinanceDex" + ], + "occurrences": 8 + }, + "0x603c7f932ed1fc6575303d8fb018fdcbb0f39a95": { + "address": "0x603c7f932ed1fc6575303d8fb018fdcbb0f39a95", + "symbol": "BANANA", + "decimals": 18, + "name": "ApeSwap", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x603c7f932ed1fc6575303d8fb018fdcbb0f39a95.png", + "aggregators": [ + "PancakeCoinMarketCap", + "LiFi", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 6 + }, + "0x3fcca8648651e5b974dd6d3e50f61567779772a8": { + "address": "0x3fcca8648651e5b974dd6d3e50f61567779772a8", + "symbol": "POTS", + "decimals": 18, + "name": "Moonpot", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x3fcca8648651e5b974dd6d3e50f61567779772a8.png", + "aggregators": [ + "PancakeTop100", + "1inch", + "LiFi", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 6 + }, + "0xeca41281c24451168a37211f0bc2b8645af45092": { + "address": "0xeca41281c24451168a37211f0bc2b8645af45092", + "symbol": "TPT", + "decimals": 4, + "name": "TokenPocket Token", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xeca41281c24451168a37211f0bc2b8645af45092.png", + "aggregators": [ + "PancakeTop100", + "1inch", + "LiFi", + "Socket", + "Rubic", + "Sonarwatch" + ], + "occurrences": 6 + }, + "0x8443f091997f06a61670b735ed92734f5628692f": { + "address": "0x8443f091997f06a61670b735ed92734f5628692f", + "symbol": "BEL", + "decimals": 18, + "name": "BellaProtocol", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x8443f091997f06a61670b735ed92734f5628692f.png", + "aggregators": [ + "PancakeTop100", + "LiFi", + "Socket", + "Rubic", + "Rango", + "Sonarwatch", + "BinanceDex" + ], + "occurrences": 7 + }, + "0x762539b45a1dcce3d36d080f74d1aed37844b878": { + "address": "0x762539b45a1dcce3d36d080f74d1aed37844b878", + "symbol": "LINA", + "decimals": 18, + "name": "Linear", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x762539b45a1dcce3d36d080f74d1aed37844b878.png", + "aggregators": [ + "PancakeTop100", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x2170ed0880ac9a755fd29b2688956bd959f933f8": { + "address": "0x2170ed0880ac9a755fd29b2688956bd959f933f8", + "symbol": "ETH", + "decimals": 18, + "name": "BNB pegged Ethereum", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x2170ed0880ac9a755fd29b2688956bd959f933f8.png", + "aggregators": [ + "PancakeExtended", + "1inch", + "LiFi", + "TrustWallet", + "Socket", + "Rubic", + "Squid", + "Rango", + "Sonarwatch", + "SushiSwap" + ], + "occurrences": 10 + }, + "0x78650b139471520656b9e7aa7a5e9276814a38e9": { + "address": "0x78650b139471520656b9e7aa7a5e9276814a38e9", + "symbol": "BTCST", + "decimals": 17, + "name": "StandardBTCHashrateToken", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x78650b139471520656b9e7aa7a5e9276814a38e9.png", + "aggregators": [ + "PancakeExtended", + "1inch", + "LiFi", + "TrustWallet", + "Socket", + "Rubic", + "Squid", + "Rango", + "Sonarwatch", + "SushiSwap", + "BinanceDex" + ], + "occurrences": 11 + }, + "0x948d2a81086a075b3130bac19e4c6dee1d2e3fe8": { + "address": "0x948d2a81086a075b3130bac19e4c6dee1d2e3fe8", + "symbol": "HELMET", + "decimals": 18, + "name": "Helmet.insure Governance Token", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x948d2a81086a075b3130bac19e4c6dee1d2e3fe8.png", + "aggregators": [ + "PancakeExtended", + "1inch", + "LiFi", + "TrustWallet", + "Socket", + "Rubic", + "Rango", + "Sonarwatch", + "SushiSwap" + ], + "occurrences": 9 + }, + "0xcc42724c6683b7e57334c4e856f4c9965ed682bd": { + "address": "0xcc42724c6683b7e57334c4e856f4c9965ed682bd", + "symbol": "MATIC", + "decimals": 18, + "name": "Polygon", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xcc42724c6683b7e57334c4e856f4c9965ed682bd.png", + "aggregators": [ + "PancakeCoinMarketCap", + "1inch", + "LiFi", + "Socket", + "Rubic", + "Squid", + "Rango", + "Sonarwatch" + ], + "occurrences": 8 + }, + "0x1ba42e5193dfa8b03d15dd1b86a3113bbbef8eeb": { + "address": "0x1ba42e5193dfa8b03d15dd1b86a3113bbbef8eeb", + "symbol": "ZEC", + "decimals": 18, + "name": "Zcash Token", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x1ba42e5193dfa8b03d15dd1b86a3113bbbef8eeb.png", + "aggregators": [ + "PancakeExtended", + "1inch", + "LiFi", + "Socket", + "Rubic", + "Squid", + "Rango", + "SushiSwap" + ], + "occurrences": 8 + }, + "0xad6742a35fb341a9cc6ad674738dd8da98b94fb1": { + "address": "0xad6742a35fb341a9cc6ad674738dd8da98b94fb1", + "symbol": "WOM", + "decimals": 18, + "name": "Wombat Exchange", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xad6742a35fb341a9cc6ad674738dd8da98b94fb1.png", + "aggregators": [ + "PancakeExtended", + "1inch", + "LiFi", + "Socket", + "Rubic", + "Squid", + "Rango", + "Sonarwatch" + ], + "occurrences": 8 + }, + "0x8d0d000ee44948fc98c9b98a4fa4921476f08b0d": { + "address": "0x8d0d000ee44948fc98c9b98a4fa4921476f08b0d", + "symbol": "USD1", + "decimals": 18, + "name": "USD1", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x8d0d000ee44948fc98c9b98a4fa4921476f08b0d.png", + "aggregators": [ + "PancakeExtended", + "1inch", + "LiFi", + "Socket", + "Rubic", + "Squid", + "Rango", + "Sonarwatch" + ], + "occurrences": 8 + }, + "0x40af3827f39d0eacbf4a168f8d4ee67c121d11c9": { + "address": "0x40af3827f39d0eacbf4a168f8d4ee67c121d11c9", + "symbol": "TUSD", + "decimals": 18, + "name": "TrueUSD", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x40af3827f39d0eacbf4a168f8d4ee67c121d11c9.png", + "aggregators": [ + "PancakeExtended", + "1inch", + "LiFi", + "Socket", + "Rubic", + "Squid", + "Rango", + "Sonarwatch" + ], + "occurrences": 8 + }, + "0xbe1a001fe942f96eea22ba08783140b9dcc09d28": { + "address": "0xbe1a001fe942f96eea22ba08783140b9dcc09d28", + "symbol": "BETA", + "decimals": 18, + "name": "Beta Finance", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xbe1a001fe942f96eea22ba08783140b9dcc09d28.png", + "aggregators": [ + "PancakeExtended", + "1inch", + "LiFi", + "Socket", + "Rubic", + "Squid", + "Rango", + "Sonarwatch" + ], + "occurrences": 8 + }, + "0x3019bf2a2ef8040c242c9a4c5c4bd4c81678b2a1": { + "address": "0x3019bf2a2ef8040c242c9a4c5c4bd4c81678b2a1", + "symbol": "GMT", + "decimals": 8, + "name": "GMT", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x3019bf2a2ef8040c242c9a4c5c4bd4c81678b2a1.png", + "aggregators": [ + "PancakeExtended", + "1inch", + "LiFi", + "Socket", + "Rubic", + "Squid", + "Rango", + "Sonarwatch" + ], + "occurrences": 8 + }, + "0xf2c88757f8d03634671208935974b60a2a28bdb3": { + "address": "0xf2c88757f8d03634671208935974b60a2a28bdb3", + "symbol": "SHELL", + "decimals": 18, + "name": "MyShell", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xf2c88757f8d03634671208935974b60a2a28bdb3.png", + "aggregators": [ + "PancakeExtended", + "1inch", + "LiFi", + "Socket", + "Rubic", + "Squid", + "Rango", + "Sonarwatch" + ], + "occurrences": 8 + }, + "0xb3ed0a426155b79b898849803e3b36552f7ed507": { + "address": "0xb3ed0a426155b79b898849803e3b36552f7ed507", + "symbol": "PENDLE", + "decimals": 18, + "name": "Pendle", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xb3ed0a426155b79b898849803e3b36552f7ed507.png", + "aggregators": [ + "PancakeExtended", + "1inch", + "LiFi", + "Socket", + "Rubic", + "Squid", + "Rango", + "Sonarwatch" + ], + "occurrences": 8 + }, + "0xad6caeb32cd2c308980a548bd0bc5aa4306c6c18": { + "address": "0xad6caeb32cd2c308980a548bd0bc5aa4306c6c18", + "symbol": "BAND", + "decimals": 18, + "name": "BNB pegged Band Protocol Token", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xad6caeb32cd2c308980a548bd0bc5aa4306c6c18.png", + "aggregators": [ + "PancakeExtended", + "1inch", + "LiFi", + "TrustWallet", + "Socket", + "Rubic", + "Rango", + "SushiSwap", + "BinanceDex" + ], + "occurrences": 9 + }, + "0xacb2d47827c9813ae26de80965845d80935afd0b": { + "address": "0xacb2d47827c9813ae26de80965845d80935afd0b", + "symbol": "MCRN", + "decimals": 18, + "name": "MacaronSwap Token", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xacb2d47827c9813ae26de80965845d80935afd0b.png", + "aggregators": [ + "PancakeExtended", + "1inch", + "LiFi", + "Socket", + "Rubic", + "Rango", + "Sonarwatch", + "SushiSwap" + ], + "occurrences": 8 + }, + "0x23ce9e926048273ef83be0a3a8ba9cb6d45cd978": { + "address": "0x23ce9e926048273ef83be0a3a8ba9cb6d45cd978", + "symbol": "DAR", + "decimals": 6, + "name": "Mines of Dalarnia", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x23ce9e926048273ef83be0a3a8ba9cb6d45cd978.png", + "aggregators": [ + "PancakeExtended", + "LiFi", + "Socket", + "Rubic", + "Squid", + "Rango", + "Sonarwatch" + ], + "occurrences": 7 + }, + "0x031b41e504677879370e9dbcf937283a8691fa7f": { + "address": "0x031b41e504677879370e9dbcf937283a8691fa7f", + "symbol": "FET", + "decimals": 18, + "name": "Artificial Superintelligence Alliance", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x031b41e504677879370e9dbcf937283a8691fa7f.png", + "aggregators": [ + "PancakeExtended", + "1inch", + "Socket", + "Rubic", + "Squid", + "Rango", + "Sonarwatch" + ], + "occurrences": 7 + }, + "0xad29abb318791d579433d831ed122afeaf29dcfe": { + "address": "0xad29abb318791d579433d831ed122afeaf29dcfe", + "symbol": "WFTM", + "decimals": 18, + "name": "Wrapped Fantom", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xad29abb318791d579433d831ed122afeaf29dcfe.png", + "aggregators": [ + "PancakeExtended", + "1inch", + "LiFi", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 7 + }, + "0xe48a3d7d0bc88d552f730b62c006bc925eadb9ee": { + "address": "0xe48a3d7d0bc88d552f730b62c006bc925eadb9ee", + "symbol": "FXS", + "decimals": 18, + "name": "Frax Share", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xe48a3d7d0bc88d552f730b62c006bc925eadb9ee.png", + "aggregators": [ + "PancakeCoinMarketCap", + "LiFi", + "Socket", + "Rubic", + "Rango", + "Sonarwatch", + "SushiSwap" + ], + "occurrences": 7 + }, + "0x5f4bde007dc06b867f86ebfe4802e34a1ffeed63": { + "address": "0x5f4bde007dc06b867f86ebfe4802e34a1ffeed63", + "symbol": "HIGH", + "decimals": 18, + "name": "Highstreet", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x5f4bde007dc06b867f86ebfe4802e34a1ffeed63.png", + "aggregators": [ + "PancakeExtended", + "1inch", + "LiFi", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 7 + }, + "0x9fd87aefe02441b123c3c32466cd9db4c578618f": { + "address": "0x9fd87aefe02441b123c3c32466cd9db4c578618f", + "symbol": "THG", + "decimals": 18, + "name": "Thetan World", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x9fd87aefe02441b123c3c32466cd9db4c578618f.png", + "aggregators": [ + "PancakeExtended", + "1inch", + "LiFi", + "Rubic", + "Squid", + "Rango", + "Sonarwatch" + ], + "occurrences": 7 + }, + "0x84e9a6f9d240fdd33801f7135908bfa16866939a": { + "address": "0x84e9a6f9d240fdd33801f7135908bfa16866939a", + "symbol": "GMEE", + "decimals": 18, + "name": "GAMEE", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x84e9a6f9d240fdd33801f7135908bfa16866939a.png", + "aggregators": [ + "PancakeExtended", + "1inch", + "LiFi", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 7 + }, + "0x1613957159e9b0ac6c80e824f7eea748a32a0ae2": { + "address": "0x1613957159e9b0ac6c80e824f7eea748a32a0ae2", + "symbol": "CGG", + "decimals": 18, + "name": "pTokens CGG", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x1613957159e9b0ac6c80e824f7eea748a32a0ae2.png", + "aggregators": [ + "PancakeExtended", + "LiFi", + "Socket", + "Rubic", + "Rango", + "Sonarwatch", + "SushiSwap" + ], + "occurrences": 7 + }, + "0xb3a6381070b1a15169dea646166ec0699fdaea79": { + "address": "0xb3a6381070b1a15169dea646166ec0699fdaea79", + "symbol": "GOLD", + "decimals": 18, + "name": "CyberDragon Gold", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xb3a6381070b1a15169dea646166ec0699fdaea79.png", + "aggregators": [ + "PancakeTop100", + "1inch", + "LiFi", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 7 + }, + "0x965f527d9159dce6288a2219db51fc6eef120dd1": { + "address": "0x965f527d9159dce6288a2219db51fc6eef120dd1", + "symbol": "BSW", + "decimals": 18, + "name": "Biswap", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x965f527d9159dce6288a2219db51fc6eef120dd1.png", + "aggregators": [ + "PancakeExtended", + "1inch", + "LiFi", + "Rubic", + "Squid", + "Rango", + "Sonarwatch" + ], + "occurrences": 7 + }, + "0x8263cd1601fe73c066bf49cc09841f35348e3be0": { + "address": "0x8263cd1601fe73c066bf49cc09841f35348e3be0", + "symbol": "ALU", + "decimals": 18, + "name": "Altura", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x8263cd1601fe73c066bf49cc09841f35348e3be0.png", + "aggregators": [ + "PancakeTop100", + "1inch", + "LiFi", + "Rubic", + "Squid", + "Rango", + "Sonarwatch" + ], + "occurrences": 7 + }, + "0xb86abcb37c3a4b64f74f59301aff131a1becc787": { + "address": "0xb86abcb37c3a4b64f74f59301aff131a1becc787", + "symbol": "ZIL", + "decimals": 12, + "name": "Zilliqa", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xb86abcb37c3a4b64f74f59301aff131a1becc787.png", + "aggregators": [ + "PancakeExtended", + "1inch", + "LiFi", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 7 + }, + "0x03ff0ff224f904be3118461335064bb48df47938": { + "address": "0x03ff0ff224f904be3118461335064bb48df47938", + "symbol": "WONE", + "decimals": 18, + "name": "Wrapped One", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x03ff0ff224f904be3118461335064bb48df47938.png", + "aggregators": [ + "PancakeTop100", + "LiFi", + "Socket", + "Rubic", + "Squid", + "Rango", + "Sonarwatch" + ], + "occurrences": 7 + }, + "0x8519ea49c997f50ceffa444d240fb655e89248aa": { + "address": "0x8519ea49c997f50ceffa444d240fb655e89248aa", + "symbol": "RAMP", + "decimals": 18, + "name": "RAMP [OLD]", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x8519ea49c997f50ceffa444d240fb655e89248aa.png", + "aggregators": [ + "PancakeTop100", + "1inch", + "LiFi", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 7 + }, + "0xf7de7e8a6bd59ed41a4b5fe50278b3b7f31384df": { + "address": "0xf7de7e8a6bd59ed41a4b5fe50278b3b7f31384df", + "symbol": "RDNT", + "decimals": 18, + "name": "Radiant", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xf7de7e8a6bd59ed41a4b5fe50278b3b7f31384df.png", + "aggregators": [ + "PancakeExtended", + "1inch", + "LiFi", + "Socket", + "Rubic", + "Squid", + "Rango" + ], + "occurrences": 7 + }, + "0x101d82428437127bf1608f699cd651e6abf9766e": { + "address": "0x101d82428437127bf1608f699cd651e6abf9766e", + "symbol": "BAT", + "decimals": 18, + "name": "BasicAttentionToken", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x101d82428437127bf1608f699cd651e6abf9766e.png", + "aggregators": [ + "PancakeExtended", + "1inch", + "LiFi", + "Socket", + "Rubic", + "Rango", + "BinanceDex" + ], + "occurrences": 7 + }, + "0xffba7529ac181c2ee1844548e6d7061c9a597df4": { + "address": "0xffba7529ac181c2ee1844548e6d7061c9a597df4", + "symbol": "CAPS", + "decimals": 18, + "name": "Ternoa", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xffba7529ac181c2ee1844548e6d7061c9a597df4.png", + "aggregators": [ + "PancakeExtended", + "1inch", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 6 + }, + "0x1633b7157e7638c4d6593436111bf125ee74703f": { + "address": "0x1633b7157e7638c4d6593436111bf125ee74703f", + "symbol": "SPS", + "decimals": 18, + "name": "Splintershards", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x1633b7157e7638c4d6593436111bf125ee74703f.png", + "aggregators": [ + "PancakeTop100", + "Rubic", + "Squid", + "Rango", + "Sonarwatch", + "SushiSwap" + ], + "occurrences": 6 + }, + "0xfb62ae373aca027177d1c18ee0862817f9080d08": { + "address": "0xfb62ae373aca027177d1c18ee0862817f9080d08", + "symbol": "DPET", + "decimals": 18, + "name": "My DeFi Pet", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xfb62ae373aca027177d1c18ee0862817f9080d08.png", + "aggregators": [ + "PancakeTop100", + "LiFi", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 6 + }, + "0x42f6f551ae042cbe50c739158b4f0cac0edb9096": { + "address": "0x42f6f551ae042cbe50c739158b4f0cac0edb9096", + "symbol": "NRV", + "decimals": 18, + "name": "Nerve Finance", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x42f6f551ae042cbe50c739158b4f0cac0edb9096.png", + "aggregators": [ + "PancakeTop100", + "1inch", + "LiFi", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 6 + }, + "0x8f0528ce5ef7b51152a59745befdd91d97091d2f": { + "address": "0x8f0528ce5ef7b51152a59745befdd91d97091d2f", + "symbol": "ALPACA", + "decimals": 18, + "name": "AlpacaToken", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x8f0528ce5ef7b51152a59745befdd91d97091d2f.png", + "aggregators": [ + "PancakeExtended", + "1inch", + "LiFi", + "Rubic", + "Rango", + "Sonarwatch", + "BinanceDex" + ], + "occurrences": 7 + }, + "0x2dff88a56767223a5529ea5960da7a3f5f766406": { + "address": "0x2dff88a56767223a5529ea5960da7a3f5f766406", + "symbol": "ID", + "decimals": 18, + "name": "SPACE ID", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x2dff88a56767223a5529ea5960da7a3f5f766406.png", + "aggregators": [ + "PancakeExtended", + "LiFi", + "Socket", + "Rubic", + "Squid", + "Sonarwatch" + ], + "occurrences": 6 + }, + "0xf4ed363144981d3a65f42e7d0dc54ff9eef559a1": { + "address": "0xf4ed363144981d3a65f42e7d0dc54ff9eef559a1", + "symbol": "FARA", + "decimals": 18, + "name": "FaraCrystal", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xf4ed363144981d3a65f42e7d0dc54ff9eef559a1.png", + "aggregators": [ + "PancakeTop100", + "1inch", + "LiFi", + "Rubic", + "Squid", + "Rango" + ], + "occurrences": 6 + }, + "0x08ba0619b1e7a582e0bce5bbe9843322c954c340": { + "address": "0x08ba0619b1e7a582e0bce5bbe9843322c954c340", + "symbol": "BMON", + "decimals": 18, + "name": "Binamon", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x08ba0619b1e7a582e0bce5bbe9843322c954c340.png", + "aggregators": [ + "PancakeTop100", + "LiFi", + "Rubic", + "Squid", + "Rango", + "Sonarwatch" + ], + "occurrences": 6 + }, + "0x7269d98af4aa705e0b1a5d8512fadb4d45817d5a": { + "address": "0x7269d98af4aa705e0b1a5d8512fadb4d45817d5a", + "symbol": "SHI", + "decimals": 18, + "name": "Shirtum", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x7269d98af4aa705e0b1a5d8512fadb4d45817d5a.png", + "aggregators": [ + "PancakeTop100", + "Socket", + "Rubic", + "Squid", + "Rango", + "Sonarwatch" + ], + "occurrences": 6 + }, + "0xeceb87cf00dcbf2d4e2880223743ff087a995ad9": { + "address": "0xeceb87cf00dcbf2d4e2880223743ff087a995ad9", + "symbol": "NUM", + "decimals": 18, + "name": "NUM Token [via ChainPort.io]", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xeceb87cf00dcbf2d4e2880223743ff087a995ad9.png", + "aggregators": [ + "PancakeCoinMarketCap", + "1inch", + "Socket", + "Rubic", + "Rango", + "SushiSwap" + ], + "occurrences": 6 + }, + "0x4d2d32d8652058bf98c772953e1df5c5c85d9f45": { + "address": "0x4d2d32d8652058bf98c772953e1df5c5c85d9f45", + "symbol": "DAO", + "decimals": 18, + "name": "DAO Maker", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x4d2d32d8652058bf98c772953e1df5c5c85d9f45.png", + "aggregators": [ + "PancakeExtended", + "1inch", + "LiFi", + "Socket", + "Rubic", + "Sonarwatch" + ], + "occurrences": 6 + }, + "0x857b222fc79e1cbbf8ca5f78cb133d1b7cf34bbd": { + "address": "0x857b222fc79e1cbbf8ca5f78cb133d1b7cf34bbd", + "symbol": "LTO", + "decimals": 18, + "name": "LTO Network", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x857b222fc79e1cbbf8ca5f78cb133d1b7cf34bbd.png", + "aggregators": [ + "PancakeExtended", + "LiFi", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 6 + }, + "0x154a9f9cbd3449ad22fdae23044319d6ef2a1fab": { + "address": "0x154a9f9cbd3449ad22fdae23044319d6ef2a1fab", + "symbol": "SKILL", + "decimals": 18, + "name": "CryptoBlades", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x154a9f9cbd3449ad22fdae23044319d6ef2a1fab.png", + "aggregators": [ + "PancakeTop100", + "LiFi", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0xe369fec23380f9f14ffd07a1dc4b7c1a9fdd81c9": { + "address": "0xe369fec23380f9f14ffd07a1dc4b7c1a9fdd81c9", + "symbol": "FROYO", + "decimals": 18, + "name": "Froyo Games", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xe369fec23380f9f14ffd07a1dc4b7c1a9fdd81c9.png", + "aggregators": [ + "PancakeExtended", + "1inch", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x6b23c89196deb721e6fd9726e6c76e4810a464bc": { + "address": "0x6b23c89196deb721e6fd9726e6c76e4810a464bc", + "symbol": "XWG", + "decimals": 18, + "name": "X World Games", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x6b23c89196deb721e6fd9726e6c76e4810a464bc.png", + "aggregators": [ + "PancakeTop100", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0xaf53d56ff99f1322515e54fdde93ff8b3b7dafd5": { + "address": "0xaf53d56ff99f1322515e54fdde93ff8b3b7dafd5", + "symbol": "PROM", + "decimals": 18, + "name": "Prometeus", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xaf53d56ff99f1322515e54fdde93ff8b3b7dafd5.png", + "aggregators": [ + "PancakeExtended", + "Socket", + "Rubic", + "Rango", + "SushiSwap" + ], + "occurrences": 5 + }, + "0xacb8f52dc63bb752a51186d1c55868adbffee9c1": { + "address": "0xacb8f52dc63bb752a51186d1c55868adbffee9c1", + "symbol": "BP", + "decimals": 18, + "name": "BunnyPark", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xacb8f52dc63bb752a51186d1c55868adbffee9c1.png", + "aggregators": [ + "PancakeTop100", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x25a528af62e56512a19ce8c3cab427807c28cc19": { + "address": "0x25a528af62e56512a19ce8c3cab427807c28cc19", + "symbol": "FORM", + "decimals": 18, + "name": "Formation FI", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x25a528af62e56512a19ce8c3cab427807c28cc19.png", + "aggregators": [ + "PancakeTop100", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0xde3dbbe30cfa9f437b293294d1fd64b26045c71a": { + "address": "0xde3dbbe30cfa9f437b293294d1fd64b26045c71a", + "symbol": "NFTB", + "decimals": 18, + "name": "NFTb", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xde3dbbe30cfa9f437b293294d1fd64b26045c71a.png", + "aggregators": [ + "PancakeTop100", + "1inch", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0xf9cec8d50f6c8ad3fb6dccec577e05aa32b224fe": { + "address": "0xf9cec8d50f6c8ad3fb6dccec577e05aa32b224fe", + "symbol": "CHR", + "decimals": 6, + "name": "Chroma", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xf9cec8d50f6c8ad3fb6dccec577e05aa32b224fe.png", + "aggregators": ["PancakeTop100", "Socket", "Rubic", "Rango"], + "occurrences": 4 + }, + "0x6985884c4392d348587b19cb9eaaf157f13271cd": { + "address": "0x6985884c4392d348587b19cb9eaaf157f13271cd", + "symbol": "ZRO", + "decimals": 18, + "name": "LayerZero", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x6985884c4392d348587b19cb9eaaf157f13271cd.png", + "aggregators": [ + "PancakeExtended", + "1inch", + "LiFi", + "Socket", + "Rubic", + "Squid", + "Rango", + "Sonarwatch", + "SushiSwap" + ], + "occurrences": 9 + }, + "0xa184088a740c695e156f91f5cc086a06bb78b827": { + "address": "0xa184088a740c695e156f91f5cc086a06bb78b827", + "symbol": "AUTO", + "decimals": 18, + "name": "AUTOv2", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xa184088a740c695e156f91f5cc086a06bb78b827.png", + "aggregators": [ + "PancakeExtended", + "1inch", + "LiFi", + "TrustWallet", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 8 + }, + "0xf4c8e32eadec4bfe97e0f595add0f4450a863a11": { + "address": "0xf4c8e32eadec4bfe97e0f595add0f4450a863a11", + "symbol": "THE", + "decimals": 18, + "name": "Thena", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xf4c8e32eadec4bfe97e0f595add0f4450a863a11.png", + "aggregators": [ + "PancakeCoinMarketCap", + "1inch", + "LiFi", + "Socket", + "Rubic", + "Squid", + "Rango", + "Sonarwatch" + ], + "occurrences": 8 + }, + "0xa2e3356610840701bdf5611a53974510ae27e2e1": { + "address": "0xa2e3356610840701bdf5611a53974510ae27e2e1", + "symbol": "WBETH", + "decimals": 18, + "name": "Wrapped Beacon ETH", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xa2e3356610840701bdf5611a53974510ae27e2e1.png", + "aggregators": [ + "PancakeExtended", + "1inch", + "LiFi", + "Socket", + "Rubic", + "Squid", + "Rango", + "Sonarwatch" + ], + "occurrences": 8 + }, + "0xf16e81dce15b08f326220742020379b855b87df9": { + "address": "0xf16e81dce15b08f326220742020379b855b87df9", + "symbol": "ICE", + "decimals": 18, + "name": "IceToken", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xf16e81dce15b08f326220742020379b855b87df9.png", + "aggregators": [ + "PancakeCoinMarketCap", + "1inch", + "Socket", + "Rubic", + "Squid", + "Rango", + "Sonarwatch", + "SushiSwap" + ], + "occurrences": 8 + }, + "0xa8c2b8eec3d368c0253ad3dae65a5f2bbb89c929": { + "address": "0xa8c2b8eec3d368c0253ad3dae65a5f2bbb89c929", + "symbol": "CTK", + "decimals": 6, + "name": "CertiK Token", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xa8c2b8eec3d368c0253ad3dae65a5f2bbb89c929.png", + "aggregators": [ + "PancakeExtended", + "1inch", + "LiFi", + "TrustWallet", + "Socket", + "Rubic", + "Rango", + "SushiSwap", + "BinanceDex" + ], + "occurrences": 9 + }, + "0x111111111117dc0aa78b770fa6a738034120c302": { + "address": "0x111111111117dc0aa78b770fa6a738034120c302", + "symbol": "1INCH", + "decimals": 18, + "name": "1inch", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x111111111117dc0aa78b770fa6a738034120c302.png", + "aggregators": [ + "PancakeCoinMarketCap", + "1inch", + "LiFi", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 7 + }, + "0x6f769e65c14ebd1f68817f5f1dcdb61cfa2d6f7e": { + "address": "0x6f769e65c14ebd1f68817f5f1dcdb61cfa2d6f7e", + "symbol": "ARPA", + "decimals": 18, + "name": "ARPA", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x6f769e65c14ebd1f68817f5f1dcdb61cfa2d6f7e.png", + "aggregators": [ + "PancakeExtended", + "LiFi", + "Socket", + "Rubic", + "Squid", + "Rango", + "Sonarwatch" + ], + "occurrences": 7 + }, + "0x8b1f4432f943c465a973fedc6d7aa50fc96f1f65": { + "address": "0x8b1f4432f943c465a973fedc6d7aa50fc96f1f65", + "symbol": "AXL", + "decimals": 6, + "name": "Axelar", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x8b1f4432f943c465a973fedc6d7aa50fc96f1f65.png", + "aggregators": [ + "PancakeExtended", + "1inch", + "Socket", + "Rubic", + "Squid", + "Rango", + "Sonarwatch" + ], + "occurrences": 7 + }, + "0xfb5b838b6cfeedc2873ab27866079ac55363d37e": { + "address": "0xfb5b838b6cfeedc2873ab27866079ac55363d37e", + "symbol": "FLOKI", + "decimals": 9, + "name": "FLOKI", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xfb5b838b6cfeedc2873ab27866079ac55363d37e.png", + "aggregators": [ + "PancakeExtended", + "1inch", + "Socket", + "Rubic", + "Squid", + "Rango", + "Sonarwatch" + ], + "occurrences": 7 + }, + "0xfe19f0b51438fd612f6fd59c1dbb3ea319f433ba": { + "address": "0xfe19f0b51438fd612f6fd59c1dbb3ea319f433ba", + "symbol": "MIM", + "decimals": 18, + "name": "Magic Internet Money", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xfe19f0b51438fd612f6fd59c1dbb3ea319f433ba.png", + "aggregators": [ + "PancakeCoinMarketCap", + "LiFi", + "Socket", + "Rubic", + "Rango", + "Sonarwatch", + "SushiSwap" + ], + "occurrences": 7 + }, + "0x34294afabcbaffc616ac6614f6d2e17260b78bed": { + "address": "0x34294afabcbaffc616ac6614f6d2e17260b78bed", + "symbol": "ABOND", + "decimals": 18, + "name": "ApeBond", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x34294afabcbaffc616ac6614f6d2e17260b78bed.png", + "aggregators": [ + "PancakeCoinMarketCap", + "LiFi", + "Socket", + "Rubic", + "Squid", + "Rango", + "Sonarwatch" + ], + "occurrences": 7 + }, + "0x1fa4a73a3f0133f0025378af00236f3abdee5d63": { + "address": "0x1fa4a73a3f0133f0025378af00236f3abdee5d63", + "symbol": "NEAR", + "decimals": 18, + "name": "Binance-Peg NEAR Protocol", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x1fa4a73a3f0133f0025378af00236f3abdee5d63.png", + "aggregators": [ + "PancakeExtended", + "1inch", + "LiFi", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 7 + }, + "0xb6c53431608e626ac81a9776ac3e999c5556717c": { + "address": "0xb6c53431608e626ac81a9776ac3e999c5556717c", + "symbol": "WTLOS", + "decimals": 18, + "name": "Wrapped Telos", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xb6c53431608e626ac81a9776ac3e999c5556717c.png", + "aggregators": [ + "PancakeExtended", + "1inch", + "Socket", + "Rubic", + "Squid", + "Rango", + "Sonarwatch" + ], + "occurrences": 7 + }, + "0x1bdd3cf7f79cfb8edbb955f20ad99211551ba275": { + "address": "0x1bdd3cf7f79cfb8edbb955f20ad99211551ba275", + "symbol": "BNBX", + "decimals": 18, + "name": "Stader BNBx", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x1bdd3cf7f79cfb8edbb955f20ad99211551ba275.png", + "aggregators": [ + "PancakeExtended", + "1inch", + "LiFi", + "Rubic", + "Squid", + "Rango", + "Sonarwatch" + ], + "occurrences": 7 + }, + "0x5a110fc00474038f6c02e89c707d638602ea44b5": { + "address": "0x5a110fc00474038f6c02e89c707d638602ea44b5", + "symbol": "USDF", + "decimals": 18, + "name": "Aster USDF", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x5a110fc00474038f6c02e89c707d638602ea44b5.png", + "aggregators": [ + "PancakeExtended", + "LiFi", + "Socket", + "Rubic", + "Squid", + "Rango", + "Sonarwatch" + ], + "occurrences": 7 + }, + "0x12b4356c65340fb02cdff01293f95febb1512f3b": { + "address": "0x12b4356c65340fb02cdff01293f95febb1512f3b", + "symbol": "BROCCOLI", + "decimals": 18, + "name": "Broccoli", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x12b4356c65340fb02cdff01293f95febb1512f3b.png", + "aggregators": [ + "Metamask", + "1inch", + "LiFi", + "Rubic", + "Squid", + "Rango", + "Sonarwatch" + ], + "occurrences": 7 + }, + "0xd44fd09d74cd13838f137b590497595d6b3feea4": { + "address": "0xd44fd09d74cd13838f137b590497595d6b3feea4", + "symbol": "ETERNAL", + "decimals": 18, + "name": "CryptoMines Eternal", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xd44fd09d74cd13838f137b590497595d6b3feea4.png", + "aggregators": [ + "PancakeExtended", + "1inch", + "LiFi", + "Rubic", + "Squid", + "Rango", + "Sonarwatch" + ], + "occurrences": 7 + }, + "0x232fb065d9d24c34708eedbf03724f2e95abe768": { + "address": "0x232fb065d9d24c34708eedbf03724f2e95abe768", + "symbol": "SHEESHA", + "decimals": 18, + "name": "Sheesha Finance (BEP20)", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x232fb065d9d24c34708eedbf03724f2e95abe768.png", + "aggregators": [ + "PancakeExtended", + "1inch", + "Socket", + "Rubic", + "Squid", + "Rango", + "Sonarwatch" + ], + "occurrences": 7 + }, + "0xee9801669c6138e84bd50deb500827b776777d28": { + "address": "0xee9801669c6138e84bd50deb500827b776777d28", + "symbol": "O3", + "decimals": 18, + "name": "O3 Swap Token", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xee9801669c6138e84bd50deb500827b776777d28.png", + "aggregators": [ + "PancakeExtended", + "LiFi", + "Socket", + "Rubic", + "Rango", + "Sonarwatch", + "SushiSwap" + ], + "occurrences": 7 + }, + "0x78f5d389f5cdccfc41594abab4b0ed02f31398b3": { + "address": "0x78f5d389f5cdccfc41594abab4b0ed02f31398b3", + "symbol": "APX", + "decimals": 18, + "name": "APX", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x78f5d389f5cdccfc41594abab4b0ed02f31398b3.png", + "aggregators": [ + "PancakeExtended", + "LiFi", + "Socket", + "Rubic", + "Squid", + "Rango", + "Sonarwatch" + ], + "occurrences": 7 + }, + "0x4e6415a5727ea08aae4580057187923aec331227": { + "address": "0x4e6415a5727ea08aae4580057187923aec331227", + "symbol": "FINE", + "decimals": 18, + "name": "Refinable", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x4e6415a5727ea08aae4580057187923aec331227.png", + "aggregators": [ + "PancakeExtended", + "1inch", + "LiFi", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 7 + }, + "0xa64455a4553c9034236734faddaddbb64ace4cc7": { + "address": "0xa64455a4553c9034236734faddaddbb64ace4cc7", + "symbol": "SANTOS", + "decimals": 8, + "name": "Santos FC Fan Token", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xa64455a4553c9034236734faddaddbb64ace4cc7.png", + "aggregators": [ + "PancakeExtended", + "1inch", + "LiFi", + "Rubic", + "Squid", + "Rango", + "Sonarwatch" + ], + "occurrences": 7 + }, + "0x6bdcce4a559076e37755a78ce0c06214e59e4444": { + "address": "0x6bdcce4a559076e37755a78ce0c06214e59e4444", + "symbol": "B", + "decimals": 18, + "name": "BUILDon", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x6bdcce4a559076e37755a78ce0c06214e59e4444.png", + "aggregators": [ + "PancakeExtended", + "LiFi", + "Socket", + "Rubic", + "Squid", + "Rango", + "Sonarwatch" + ], + "occurrences": 7 + }, + "0xc9849e6fdb743d08faee3e34dd2d1bc69ea11a51": { + "address": "0xc9849e6fdb743d08faee3e34dd2d1bc69ea11a51", + "symbol": "BUNNY", + "decimals": 18, + "name": "Bunny Token", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xc9849e6fdb743d08faee3e34dd2d1bc69ea11a51.png", + "aggregators": [ + "PancakeExtended", + "1inch", + "LiFi", + "TrustWallet", + "Rubic", + "Rango", + "Sonarwatch", + "BinanceDex" + ], + "occurrences": 8 + }, + "0x5ac52ee5b2a633895292ff6d8a89bb9190451587": { + "address": "0x5ac52ee5b2a633895292ff6d8a89bb9190451587", + "symbol": "BSCX", + "decimals": 18, + "name": "BSCX", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x5ac52ee5b2a633895292ff6d8a89bb9190451587.png", + "aggregators": [ + "PancakeExtended", + "LiFi", + "TrustWallet", + "Socket", + "Rubic", + "Sonarwatch", + "SushiSwap" + ], + "occurrences": 7 + }, + "0xf98b660adf2ed7d9d9d9daacc2fb0cace4f21835": { + "address": "0xf98b660adf2ed7d9d9d9daacc2fb0cace4f21835", + "symbol": "SIS", + "decimals": 18, + "name": "Symbiosis", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xf98b660adf2ed7d9d9d9daacc2fb0cace4f21835.png", + "aggregators": [ + "PancakeExtended", + "1inch", + "LiFi", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 7 + }, + "0xa697e272a73744b343528c3bc4702f2565b2f422": { + "address": "0xa697e272a73744b343528c3bc4702f2565b2f422", + "symbol": "BONK", + "decimals": 5, + "name": "Bonk", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xa697e272a73744b343528c3bc4702f2565b2f422.png", + "aggregators": [ + "PancakeExtended", + "1inch", + "Socket", + "Rubic", + "Squid", + "Rango", + "Sonarwatch" + ], + "occurrences": 7 + }, + "0x62d0a8458ed7719fdaf978fe5929c6d342b0bfce": { + "address": "0x62d0a8458ed7719fdaf978fe5929c6d342b0bfce", + "symbol": "BEAM", + "decimals": 18, + "name": "Beam", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x62d0a8458ed7719fdaf978fe5929c6d342b0bfce.png", + "aggregators": [ + "PancakeCoinMarketCap", + "1inch", + "Socket", + "Rubic", + "Squid", + "Rango", + "Sonarwatch" + ], + "occurrences": 7 + }, + "0xdfbea88c4842d30c26669602888d746d30f9d60d": { + "address": "0xdfbea88c4842d30c26669602888d746d30f9d60d", + "symbol": "CAW", + "decimals": 18, + "name": "crow with knife", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xdfbea88c4842d30c26669602888d746d30f9d60d.png", + "aggregators": [ + "CoinGecko", + "1inch", + "Socket", + "Rubic", + "Squid", + "Rango", + "Sonarwatch" + ], + "occurrences": 7 + }, + "0x61dbbbb552dc893ab3aad09f289f811e67cef285": { + "address": "0x61dbbbb552dc893ab3aad09f289f811e67cef285", + "symbol": "SKATE", + "decimals": 18, + "name": "Skate", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x61dbbbb552dc893ab3aad09f289f811e67cef285.png", + "aggregators": [ + "CoinGecko", + "1inch", + "LiFi", + "Socket", + "Rubic", + "Squid", + "Rango" + ], + "occurrences": 7 + }, + "0xff7f8f301f7a706e3cfd3d2275f5dc0b9ee8009b": { + "address": "0xff7f8f301f7a706e3cfd3d2275f5dc0b9ee8009b", + "symbol": "FOLKS", + "decimals": 6, + "name": "Folks Finance", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xff7f8f301f7a706e3cfd3d2275f5dc0b9ee8009b.png", + "aggregators": [ + "PancakeExtended", + "1inch", + "LiFi", + "Socket", + "Rubic", + "Squid", + "Rango" + ], + "occurrences": 7 + }, + "0x5857c96dae9cf8511b08cb07f85753c472d36ea3": { + "address": "0x5857c96dae9cf8511b08cb07f85753c472d36ea3", + "symbol": "FUSE", + "decimals": 18, + "name": "Fuse", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x5857c96dae9cf8511b08cb07f85753c472d36ea3.png", + "aggregators": [ + "PancakeExtended", + "1inch", + "LiFi", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 7 + }, + "0x44754455564474a89358b2c2265883df993b12f0": { + "address": "0x44754455564474a89358b2c2265883df993b12f0", + "symbol": "ZEE", + "decimals": 18, + "name": "ZeroSwapToken", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x44754455564474a89358b2c2265883df993b12f0.png", + "aggregators": [ + "PancakeExtended", + "LiFi", + "TrustWallet", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 7 + }, + "0x6bff4fb161347ad7de4a625ae5aa3a1ca7077819": { + "address": "0x6bff4fb161347ad7de4a625ae5aa3a1ca7077819", + "symbol": "ADX", + "decimals": 18, + "name": "AdEx", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x6bff4fb161347ad7de4a625ae5aa3a1ca7077819.png", + "aggregators": [ + "PancakeExtended", + "1inch", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 6 + }, + "0x33d08d8c7a168333a85285a68c0042b39fc3741d": { + "address": "0x33d08d8c7a168333a85285a68c0042b39fc3741d", + "symbol": "AIOZ", + "decimals": 18, + "name": "AIOZ Network", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x33d08d8c7a168333a85285a68c0042b39fc3741d.png", + "aggregators": [ + "PancakeExtended", + "Socket", + "Rubic", + "Squid", + "Rango", + "Sonarwatch" + ], + "occurrences": 6 + }, + "0x9fb9a33956351cf4fa040f65a13b835a3c8764e3": { + "address": "0x9fb9a33956351cf4fa040f65a13b835a3c8764e3", + "symbol": "MULTI", + "decimals": 18, + "name": "Multichain", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x9fb9a33956351cf4fa040f65a13b835a3c8764e3.png", + "aggregators": [ + "PancakeCoinMarketCap", + "1inch", + "LiFi", + "Socket", + "Rubic", + "Rango" + ], + "occurrences": 6 + }, + "0x1ce0c2827e2ef14d5c4f29a091d735a204794041": { + "address": "0x1ce0c2827e2ef14d5c4f29a091d735a204794041", + "symbol": "AVAX", + "decimals": 18, + "name": "Binance-Peg Avalanche", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x1ce0c2827e2ef14d5c4f29a091d735a204794041.png", + "aggregators": [ + "PancakeExtended", + "LiFi", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 6 + }, + "0xf0e406c49c63abf358030a299c0e00118c4c6ba5": { + "address": "0xf0e406c49c63abf358030a299c0e00118c4c6ba5", + "symbol": "NVT", + "decimals": 8, + "name": "NerveNetwork", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xf0e406c49c63abf358030a299c0e00118c4c6ba5.png", + "aggregators": [ + "PancakeExtended", + "1inch", + "Socket", + "Rubic", + "Rango", + "SushiSwap" + ], + "occurrences": 6 + }, + "0xe7c9c6bc87b86f9e5b57072f907ee6460b593924": { + "address": "0xe7c9c6bc87b86f9e5b57072f907ee6460b593924", + "symbol": "TOWER", + "decimals": 18, + "name": "TOWER", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xe7c9c6bc87b86f9e5b57072f907ee6460b593924.png", + "aggregators": [ + "PancakeCoinMarketCap", + "1inch", + "LiFi", + "Socket", + "Rubic", + "Rango" + ], + "occurrences": 6 + }, + "0xd88ca08d8eec1e9e09562213ae83a7853ebb5d28": { + "address": "0xd88ca08d8eec1e9e09562213ae83a7853ebb5d28", + "symbol": "XWIN", + "decimals": 18, + "name": "xWIN Finance", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xd88ca08d8eec1e9e09562213ae83a7853ebb5d28.png", + "aggregators": [ + "PancakeCoinMarketCap", + "1inch", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 6 + }, + "0xed00fc7d48b57b81fe65d1ce71c0985e4cf442cb": { + "address": "0xed00fc7d48b57b81fe65d1ce71c0985e4cf442cb", + "symbol": "CHRP", + "decimals": 18, + "name": "Chirpley", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xed00fc7d48b57b81fe65d1ce71c0985e4cf442cb.png", + "aggregators": [ + "PancakeCoinMarketCap", + "Socket", + "Rubic", + "Squid", + "Rango", + "Sonarwatch" + ], + "occurrences": 6 + }, + "0x6894cde390a3f51155ea41ed24a33a4827d3063d": { + "address": "0x6894cde390a3f51155ea41ed24a33a4827d3063d", + "symbol": "CAT", + "decimals": 18, + "name": "Simon's Cat", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x6894cde390a3f51155ea41ed24a33a4827d3063d.png", + "aggregators": [ + "PancakeExtended", + "Socket", + "Rubic", + "Squid", + "Rango", + "Sonarwatch" + ], + "occurrences": 6 + }, + "0x4da996c5fe84755c80e108cf96fe705174c5e36a": { + "address": "0x4da996c5fe84755c80e108cf96fe705174c5e36a", + "symbol": "WOW", + "decimals": 18, + "name": "WOWSwap", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x4da996c5fe84755c80e108cf96fe705174c5e36a.png", + "aggregators": [ + "PancakeCoinMarketCap", + "Socket", + "Rubic", + "Rango", + "Sonarwatch", + "SushiSwap" + ], + "occurrences": 6 + }, + "0xd7730681b1dc8f6f969166b29d8a5ea8568616a3": { + "address": "0xd7730681b1dc8f6f969166b29d8a5ea8568616a3", + "symbol": "NAFT", + "decimals": 18, + "name": "Nafter", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xd7730681b1dc8f6f969166b29d8a5ea8568616a3.png", + "aggregators": [ + "PancakeTop100", + "LiFi", + "Rubic", + "Squid", + "Rango", + "Sonarwatch" + ], + "occurrences": 6 + }, + "0x250632378e573c6be1ac2f97fcdf00515d0aa91b": { + "address": "0x250632378e573c6be1ac2f97fcdf00515d0aa91b", + "symbol": "BETH", + "decimals": 18, + "name": "Binance Beacon ETH", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x250632378e573c6be1ac2f97fcdf00515d0aa91b.png", + "aggregators": [ + "PancakeExtended", + "1inch", + "LiFi", + "Rubic", + "Rango", + "Sonarwatch", + "BinanceDex" + ], + "occurrences": 7 + }, + "0xd48474e7444727bf500a32d5abe01943f3a59a64": { + "address": "0xd48474e7444727bf500a32d5abe01943f3a59a64", + "symbol": "BBT", + "decimals": 8, + "name": "BitBook", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xd48474e7444727bf500a32d5abe01943f3a59a64.png", + "aggregators": [ + "PancakeExtended", + "Socket", + "Rubic", + "Squid", + "Rango", + "Sonarwatch" + ], + "occurrences": 6 + }, + "0x570a5d26f7765ecb712c0924e4de545b89fd43df": { + "address": "0x570a5d26f7765ecb712c0924e4de545b89fd43df", + "symbol": "SOL", + "decimals": 18, + "name": "Wrapped SOL", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x570a5d26f7765ecb712c0924e4de545b89fd43df.png", + "aggregators": [ + "PancakeExtended", + "1inch", + "LiFi", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 6 + }, + "0x630d98424efe0ea27fb1b3ab7741907dffeaad78": { + "address": "0x630d98424efe0ea27fb1b3ab7741907dffeaad78", + "symbol": "PEAK", + "decimals": 8, + "name": "PEAKDEFI", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x630d98424efe0ea27fb1b3ab7741907dffeaad78.png", + "aggregators": [ + "PancakeExtended", + "1inch", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 6 + }, + "0xcfcecfe2bd2fed07a9145222e8a7ad9cf1ccd22a": { + "address": "0xcfcecfe2bd2fed07a9145222e8a7ad9cf1ccd22a", + "symbol": "ADS", + "decimals": 11, + "name": "Adshares", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xcfcecfe2bd2fed07a9145222e8a7ad9cf1ccd22a.png", + "aggregators": [ + "PancakeCoinMarketCap", + "1inch", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 6 + }, + "0xfce146bf3146100cfe5db4129cf6c82b0ef4ad8c": { + "address": "0xfce146bf3146100cfe5db4129cf6c82b0ef4ad8c", + "symbol": "RENBTC", + "decimals": 8, + "name": "renBTC", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xfce146bf3146100cfe5db4129cf6c82b0ef4ad8c.png", + "aggregators": [ + "PancakeExtended", + "LiFi", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 6 + }, + "0x2416092f143378750bb29b79ed961ab195cceea5": { + "address": "0x2416092f143378750bb29b79ed961ab195cceea5", + "symbol": "EZETH", + "decimals": 18, + "name": "Renzo Restaked ETH", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x2416092f143378750bb29b79ed961ab195cceea5.png", + "aggregators": [ + "PancakeExtended", + "LiFi", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 6 + }, + "0xc13b7a43223bb9bf4b69bd68ab20ca1b79d81c75": { + "address": "0xc13b7a43223bb9bf4b69bd68ab20ca1b79d81c75", + "symbol": "JGN", + "decimals": 18, + "name": "Juggernaut", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xc13b7a43223bb9bf4b69bd68ab20ca1b79d81c75.png", + "aggregators": [ + "PancakeExtended", + "LiFi", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 6 + }, + "0x0a3a21356793b49154fd3bbe91cbc2a16c0457f5": { + "address": "0x0a3a21356793b49154fd3bbe91cbc2a16c0457f5", + "symbol": "RFOX", + "decimals": 18, + "name": "RFOX", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x0a3a21356793b49154fd3bbe91cbc2a16c0457f5.png", + "aggregators": [ + "PancakeExtended", + "Socket", + "Rubic", + "Squid", + "Rango", + "Sonarwatch" + ], + "occurrences": 6 + }, + "0x0f9e4d49f25de22c2202af916b681fbb3790497b": { + "address": "0x0f9e4d49f25de22c2202af916b681fbb3790497b", + "symbol": "PERL", + "decimals": 18, + "name": "Perlin X", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x0f9e4d49f25de22c2202af916b681fbb3790497b.png", + "aggregators": [ + "PancakeExtended", + "1inch", + "LiFi", + "Socket", + "Rubic", + "Rango" + ], + "occurrences": 6 + }, + "0x323665443cef804a3b5206103304bd4872ea4253": { + "address": "0x323665443cef804a3b5206103304bd4872ea4253", + "symbol": "USDV", + "decimals": 6, + "name": "USDV", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x323665443cef804a3b5206103304bd4872ea4253.png", + "aggregators": [ + "PancakeExtended", + "Socket", + "Rubic", + "Rango", + "Sonarwatch", + "SushiSwap" + ], + "occurrences": 6 + }, + "0x7bd6fabd64813c48545c9c0e312a0099d9be2540": { + "address": "0x7bd6fabd64813c48545c9c0e312a0099d9be2540", + "symbol": "ELON", + "decimals": 18, + "name": "Dogelon Mars", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x7bd6fabd64813c48545c9c0e312a0099d9be2540.png", + "aggregators": [ + "PancakeExtended", + "1inch", + "Socket", + "Rubic", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x4c882ec256823ee773b25b414d36f92ef58a7c0c": { + "address": "0x4c882ec256823ee773b25b414d36f92ef58a7c0c", + "symbol": "PSTAKE", + "decimals": 18, + "name": "pSTAKE Finance", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x4c882ec256823ee773b25b414d36f92ef58a7c0c.png", + "aggregators": [ + "PancakeExtended", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x3bc5ac0dfdc871b365d159f728dd1b9a0b5481e8": { + "address": "0x3bc5ac0dfdc871b365d159f728dd1b9a0b5481e8", + "symbol": "SD", + "decimals": 18, + "name": "Stader", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x3bc5ac0dfdc871b365d159f728dd1b9a0b5481e8.png", + "aggregators": [ + "PancakeExtended", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0xe0191fefdd0d2b39b1a2e4e029ccda8a481b7995": { + "address": "0xe0191fefdd0d2b39b1a2e4e029ccda8a481b7995", + "symbol": "CRUX", + "decimals": 18, + "name": "CryptoMines Reborn", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xe0191fefdd0d2b39b1a2e4e029ccda8a481b7995.png", + "aggregators": [ + "PancakeCoinMarketCap", + "Rubic", + "Squid", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x4fa7163e153419e0e1064e418dd7a99314ed27b6": { + "address": "0x4fa7163e153419e0e1064e418dd7a99314ed27b6", + "symbol": "HOTCROSS", + "decimals": 18, + "name": "Hot Cross", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x4fa7163e153419e0e1064e418dd7a99314ed27b6.png", + "aggregators": [ + "PancakeExtended", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0xbb46693ebbea1ac2070e59b4d043b47e2e095f86": { + "address": "0xbb46693ebbea1ac2070e59b4d043b47e2e095f86", + "symbol": "BFG", + "decimals": 18, + "name": "BFG Token", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xbb46693ebbea1ac2070e59b4d043b47e2e095f86.png", + "aggregators": [ + "PancakeExtended", + "1inch", + "LiFi", + "Rubic", + "Rango" + ], + "occurrences": 5 + }, + "0xeac9873291ddaca754ea5642114151f3035c67a2": { + "address": "0xeac9873291ddaca754ea5642114151f3035c67a2", + "symbol": "DCB", + "decimals": 18, + "name": "Decubate", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xeac9873291ddaca754ea5642114151f3035c67a2.png", + "aggregators": [ + "PancakeExtended", + "Rubic", + "Squid", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0xed8c8aa8299c10f067496bb66f8cc7fb338a3405": { + "address": "0xed8c8aa8299c10f067496bb66f8cc7fb338a3405", + "symbol": "PROS", + "decimals": 18, + "name": "Prosper", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xed8c8aa8299c10f067496bb66f8cc7fb338a3405.png", + "aggregators": [ + "PancakeExtended", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x14016e85a25aeb13065688cafb43044c2ef86784": { + "address": "0x14016e85a25aeb13065688cafb43044c2ef86784", + "symbol": "TUSD", + "decimals": 18, + "name": "Bridged TrueUSD", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x14016e85a25aeb13065688cafb43044c2ef86784.png", + "aggregators": [ + "PancakeTop100", + "LiFi", + "Socket", + "Rubic", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x7961ade0a767c0e5b67dd1a1f78ba44f727642ed": { + "address": "0x7961ade0a767c0e5b67dd1a1f78ba44f727642ed", + "symbol": "QUIDD", + "decimals": 18, + "name": "Quidd", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x7961ade0a767c0e5b67dd1a1f78ba44f727642ed.png", + "aggregators": [ + "PancakeExtended", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0xc10358f062663448a3489fc258139944534592ac": { + "address": "0xc10358f062663448a3489fc258139944534592ac", + "symbol": "BCMC", + "decimals": 18, + "name": "Blockchain Monster Coin", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xc10358f062663448a3489fc258139944534592ac.png", + "aggregators": [ + "PancakeCoinMarketCap", + "1inch", + "Socket", + "Rubic", + "Rango" + ], + "occurrences": 5 + }, + "0xf700d4c708c2be1463e355f337603183d20e0808": { + "address": "0xf700d4c708c2be1463e355f337603183d20e0808", + "symbol": "GQ", + "decimals": 18, + "name": "Blink Galaxy", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xf700d4c708c2be1463e355f337603183d20e0808.png", + "aggregators": [ + "PancakeExtended", + "Rubic", + "Squid", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x9840652dc04fb9db2c43853633f0f62be6f00f98": { + "address": "0x9840652dc04fb9db2c43853633f0f62be6f00f98", + "symbol": "CGPT", + "decimals": 18, + "name": "ChainGPT", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x9840652dc04fb9db2c43853633f0f62be6f00f98.png", + "aggregators": [ + "PancakeExtended", + "LiFi", + "Socket", + "Rubic", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0xa7f552078dcc247c2684336020c03648500c6d9f": { + "address": "0xa7f552078dcc247c2684336020c03648500c6d9f", + "symbol": "EPS", + "decimals": 18, + "name": "Ellipsis [OLD]", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xa7f552078dcc247c2684336020c03648500c6d9f.png", + "aggregators": [ + "PancakeTop100", + "LiFi", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x20de22029ab63cf9a7cf5feb2b737ca1ee4c82a6": { + "address": "0x20de22029ab63cf9a7cf5feb2b737ca1ee4c82a6", + "symbol": "CHESS", + "decimals": 18, + "name": "Tranchess", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x20de22029ab63cf9a7cf5feb2b737ca1ee4c82a6.png", + "aggregators": [ + "PancakeTop100", + "LiFi", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x565b72163f17849832a692a3c5928cc502f46d69": { + "address": "0x565b72163f17849832a692a3c5928cc502f46d69", + "symbol": "HUNNY", + "decimals": 18, + "name": "Hunny Finance", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x565b72163f17849832a692a3c5928cc502f46d69.png", + "aggregators": [ + "PancakeTop100", + "Rubic", + "Squid", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x522348779dcb2911539e76a1042aa922f9c47ee3": { + "address": "0x522348779dcb2911539e76a1042aa922f9c47ee3", + "symbol": "BOMB", + "decimals": 18, + "name": "bomb.money", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x522348779dcb2911539e76a1042aa922f9c47ee3.png", + "aggregators": [ + "PancakeCoinMarketCap", + "1inch", + "Socket", + "Rubic", + "Rango" + ], + "occurrences": 5 + }, + "0x1796ae0b0fa4862485106a0de9b654efe301d0b2": { + "address": "0x1796ae0b0fa4862485106a0de9b654efe301d0b2", + "symbol": "PMON", + "decimals": 18, + "name": "Protocol Monsters", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x1796ae0b0fa4862485106a0de9b654efe301d0b2.png", + "aggregators": [ + "PancakeTop100", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x5621b5a3f4a8008c4ccdd1b942b121c8b1944f1f": { + "address": "0x5621b5a3f4a8008c4ccdd1b942b121c8b1944f1f", + "symbol": "XED", + "decimals": 18, + "name": "Exeedme", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x5621b5a3f4a8008c4ccdd1b942b121c8b1944f1f.png", + "aggregators": [ + "PancakeExtended", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x6d106c0b8d2f47c5465bdbd58d1be253762cbbc1": { + "address": "0x6d106c0b8d2f47c5465bdbd58d1be253762cbbc1", + "symbol": "DEFI", + "decimals": 18, + "name": "DeFi", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x6d106c0b8d2f47c5465bdbd58d1be253762cbbc1.png", + "aggregators": [ + "PancakeExtended", + "1inch", + "Socket", + "Rubic", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x810ee35443639348adbbc467b33310d2ab43c168": { + "address": "0x810ee35443639348adbbc467b33310d2ab43c168", + "symbol": "CYC", + "decimals": 18, + "name": "Cyclone", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x810ee35443639348adbbc467b33310d2ab43c168.png", + "aggregators": [ + "PancakeExtended", + "1inch", + "Socket", + "Rubic", + "Rango" + ], + "occurrences": 5 + }, + "0x2fa5daf6fe0708fbd63b1a7d1592577284f52256": { + "address": "0x2fa5daf6fe0708fbd63b1a7d1592577284f52256", + "symbol": "MARSH", + "decimals": 18, + "name": "Unmarshal", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x2fa5daf6fe0708fbd63b1a7d1592577284f52256.png", + "aggregators": [ + "PancakeExtended", + "1inch", + "Socket", + "Rubic", + "Rango" + ], + "occurrences": 5 + }, + "0xffeecbf8d7267757c2dc3d13d730e97e15bfdf7f": { + "address": "0xffeecbf8d7267757c2dc3d13d730e97e15bfdf7f", + "symbol": "BORING", + "decimals": 18, + "name": "BoringDAO", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xffeecbf8d7267757c2dc3d13d730e97e15bfdf7f.png", + "aggregators": [ + "PancakeExtended", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x16faf9daa401aa42506af503aa3d80b871c467a3": { + "address": "0x16faf9daa401aa42506af503aa3d80b871c467a3", + "symbol": "DCK", + "decimals": 18, + "name": "DexCheck AI", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x16faf9daa401aa42506af503aa3d80b871c467a3.png", + "aggregators": ["PancakeExtended", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0x9573c88ae3e37508f87649f87c4dd5373c9f31e0": { + "address": "0x9573c88ae3e37508f87649f87c4dd5373c9f31e0", + "symbol": "MONI", + "decimals": 18, + "name": "Monsta Infinite", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x9573c88ae3e37508f87649f87c4dd5373c9f31e0.png", + "aggregators": ["PancakeTop100", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0x17b7163cf1dbd286e262ddc68b553d899b93f526": { + "address": "0x17b7163cf1dbd286e262ddc68b553d899b93f526", + "symbol": "QBT", + "decimals": 18, + "name": "Qubit", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x17b7163cf1dbd286e262ddc68b553d899b93f526.png", + "aggregators": ["PancakeTop100", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0x4ea98c1999575aaadfb38237dd015c5e773f75a2": { + "address": "0x4ea98c1999575aaadfb38237dd015c5e773f75a2", + "symbol": "TRUMP", + "decimals": 9, + "name": "MAGA", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x4ea98c1999575aaadfb38237dd015c5e773f75a2.png", + "aggregators": ["PancakeExtended", "Socket", "Rubic", "Sonarwatch"], + "occurrences": 4 + }, + "0xe8176d414560cfe1bf82fd73b986823b89e4f545": { + "address": "0xe8176d414560cfe1bf82fd73b986823b89e4f545", + "symbol": "HERO", + "decimals": 18, + "name": "Step Hero", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xe8176d414560cfe1bf82fd73b986823b89e4f545.png", + "aggregators": ["PancakeTop100", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0x3192ccddf1cdce4ff055ebc80f3f0231b86a7e30": { + "address": "0x3192ccddf1cdce4ff055ebc80f3f0231b86a7e30", + "symbol": "INSUR", + "decimals": 18, + "name": "Bsc-Peg INSUR Token", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x3192ccddf1cdce4ff055ebc80f3f0231b86a7e30.png", + "aggregators": ["PancakeExtended", "Socket", "Rubic", "Rango"], + "occurrences": 4 + }, + "0xaef0d72a118ce24fee3cd1d43d383897d05b4e99": { + "address": "0xaef0d72a118ce24fee3cd1d43d383897d05b4e99", + "symbol": "WIN", + "decimals": 18, + "name": "WINk", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xaef0d72a118ce24fee3cd1d43d383897d05b4e99.png", + "aggregators": ["PancakeTop100", "Rubic", "Rango"], + "occurrences": 3 + }, + "0xf952fc3ca7325cc27d15885d37117676d25bfda6": { + "address": "0xf952fc3ca7325cc27d15885d37117676d25bfda6", + "symbol": "EGG", + "decimals": 18, + "name": "Goose Golden Egg", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xf952fc3ca7325cc27d15885d37117676d25bfda6.png", + "aggregators": [ + "PancakeCoinMarketCap", + "1inch", + "LiFi", + "TrustWallet", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 8 + }, + "0x2090c8295769791ab7a3cf1cc6e0aa19f35e441a": { + "address": "0x2090c8295769791ab7a3cf1cc6e0aa19f35e441a", + "symbol": "FUEL", + "decimals": 18, + "name": "Fuel Token", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x2090c8295769791ab7a3cf1cc6e0aa19f35e441a.png", + "aggregators": [ + "PancakeExtended", + "1inch", + "LiFi", + "TrustWallet", + "Socket", + "Rubic", + "Rango", + "SushiSwap" + ], + "occurrences": 8 + }, + "0x7e624fa0e1c4abfd309cc15719b7e2580887f570": { + "address": "0x7e624fa0e1c4abfd309cc15719b7e2580887f570", + "symbol": "POLS", + "decimals": 18, + "name": "Polkastarter", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x7e624fa0e1c4abfd309cc15719b7e2580887f570.png", + "aggregators": [ + "PancakeCoinMarketCap", + "1inch", + "LiFi", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 7 + }, + "0x9c65ab58d8d978db963e63f2bfb7121627e3a739": { + "address": "0x9c65ab58d8d978db963e63f2bfb7121627e3a739", + "symbol": "MDX", + "decimals": 18, + "name": "Mdex (BSC)", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x9c65ab58d8d978db963e63f2bfb7121627e3a739.png", + "aggregators": [ + "PancakeCoinMarketCap", + "1inch", + "LiFi", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 7 + }, + "0x0782b6d8c4551b9760e74c0545a9bcd90bdc41e5": { + "address": "0x0782b6d8c4551b9760e74c0545a9bcd90bdc41e5", + "symbol": "LISUSD", + "decimals": 18, + "name": "lisUSD", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x0782b6d8c4551b9760e74c0545a9bcd90bdc41e5.png", + "aggregators": [ + "Metamask", + "1inch", + "LiFi", + "Socket", + "Rubic", + "Squid", + "Sonarwatch" + ], + "occurrences": 7 + }, + "0x190b589cf9fb8ddeabbfeae36a813ffb2a702454": { + "address": "0x190b589cf9fb8ddeabbfeae36a813ffb2a702454", + "symbol": "BDO", + "decimals": 18, + "name": "bDollar", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x190b589cf9fb8ddeabbfeae36a813ffb2a702454.png", + "aggregators": [ + "PancakeExtended", + "1inch", + "LiFi", + "TrustWallet", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 7 + }, + "0x4b8285ab433d8f69cb48d5ad62b415ed1a221e4f": { + "address": "0x4b8285ab433d8f69cb48d5ad62b415ed1a221e4f", + "symbol": "MCRT", + "decimals": 9, + "name": "MagicCraft", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x4b8285ab433d8f69cb48d5ad62b415ed1a221e4f.png", + "aggregators": [ + "PancakeCoinMarketCap", + "1inch", + "LiFi", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 7 + }, + "0x361c60b7c2828fcab80988d00d1d542c83387b50": { + "address": "0x361c60b7c2828fcab80988d00d1d542c83387b50", + "symbol": "DFI", + "decimals": 18, + "name": "DeFiChain", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x361c60b7c2828fcab80988d00d1d542c83387b50.png", + "aggregators": [ + "PancakeCoinMarketCap", + "1inch", + "LiFi", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 7 + }, + "0xbf7c81fff98bbe61b40ed186e4afd6ddd01337fe": { + "address": "0xbf7c81fff98bbe61b40ed186e4afd6ddd01337fe", + "symbol": "EGLD", + "decimals": 18, + "name": "BNB pegged Elrond", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xbf7c81fff98bbe61b40ed186e4afd6ddd01337fe.png", + "aggregators": [ + "PancakeExtended", + "1inch", + "LiFi", + "TrustWallet", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 7 + }, + "0xb0b195aefa3650a6908f15cdac7d92f8a5791b0b": { + "address": "0xb0b195aefa3650a6908f15cdac7d92f8a5791b0b", + "symbol": "BOB", + "decimals": 18, + "name": "BOB", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xb0b195aefa3650a6908f15cdac7d92f8a5791b0b.png", + "aggregators": [ + "PancakeCoinMarketCap", + "LiFi", + "Socket", + "Rubic", + "Rango", + "Sonarwatch", + "SushiSwap" + ], + "occurrences": 7 + }, + "0x0000028a2eb8346cd5c0267856ab7594b7a55308": { + "address": "0x0000028a2eb8346cd5c0267856ab7594b7a55308", + "symbol": "ZETA", + "decimals": 18, + "name": "Zeta", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x0000028a2eb8346cd5c0267856ab7594b7a55308.png", + "aggregators": [ + "PancakeCoinGecko", + "Socket", + "Rubic", + "Squid", + "Rango", + "Sonarwatch", + "SushiSwap" + ], + "occurrences": 7 + }, + "0xf78d2e7936f5fe18308a3b2951a93b6c4a41f5e2": { + "address": "0xf78d2e7936f5fe18308a3b2951a93b6c4a41f5e2", + "symbol": "OM", + "decimals": 18, + "name": "MANTRA", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xf78d2e7936f5fe18308a3b2951a93b6c4a41f5e2.png", + "aggregators": [ + "PancakeCoinMarketCap", + "1inch", + "Socket", + "Rubic", + "Squid", + "Rango", + "Sonarwatch" + ], + "occurrences": 7 + }, + "0xf68c9df95a18b2a5a5fa1124d79eeeffbad0b6fa": { + "address": "0xf68c9df95a18b2a5a5fa1124d79eeeffbad0b6fa", + "symbol": "ANY", + "decimals": 18, + "name": "Anyswap", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xf68c9df95a18b2a5a5fa1124d79eeeffbad0b6fa.png", + "aggregators": [ + "PancakeCoinMarketCap", + "1inch", + "LiFi", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 7 + }, + "0x5d0158a5c3ddf47d4ea4517d8db0d76aa2e87563": { + "address": "0x5d0158a5c3ddf47d4ea4517d8db0d76aa2e87563", + "symbol": "BONDLY", + "decimals": 18, + "name": "Forj", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x5d0158a5c3ddf47d4ea4517d8db0d76aa2e87563.png", + "aggregators": [ + "PancakeExtended", + "1inch", + "LiFi", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 7 + }, + "0xfe56d5892bdffc7bf58f2e84be1b2c32d21c308b": { + "address": "0xfe56d5892bdffc7bf58f2e84be1b2c32d21c308b", + "symbol": "KNC", + "decimals": 18, + "name": "Kyber Network Crystal", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xfe56d5892bdffc7bf58f2e84be1b2c32d21c308b.png", + "aggregators": [ + "PancakeCoinMarketCap", + "LiFi", + "Socket", + "Rubic", + "Squid", + "Rango", + "Sonarwatch" + ], + "occurrences": 7 + }, + "0xeeeeeb57642040be42185f49c52f7e9b38f8eeee": { + "address": "0xeeeeeb57642040be42185f49c52f7e9b38f8eeee", + "symbol": "ELK", + "decimals": 18, + "name": "Elk Finance", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xeeeeeb57642040be42185f49c52f7e9b38f8eeee.png", + "aggregators": [ + "PancakeCoinMarketCap", + "1inch", + "LiFi", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 7 + }, + "0x64048a7eecf3a2f1ba9e144aac3d7db6e58f555e": { + "address": "0x64048a7eecf3a2f1ba9e144aac3d7db6e58f555e", + "symbol": "FRXETH", + "decimals": 18, + "name": "Frax Ether", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x64048a7eecf3a2f1ba9e144aac3d7db6e58f555e.png", + "aggregators": [ + "PancakeCoinMarketCap", + "LiFi", + "Socket", + "Rubic", + "Squid", + "Rango", + "Sonarwatch" + ], + "occurrences": 7 + }, + "0x88f1a5ae2a3bf98aeaf342d26b30a79438c9142e": { + "address": "0x88f1a5ae2a3bf98aeaf342d26b30a79438c9142e", + "symbol": "YFI", + "decimals": 18, + "name": "BNB pegged yearn.finance", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x88f1a5ae2a3bf98aeaf342d26b30a79438c9142e.png", + "aggregators": [ + "PancakeExtended", + "LiFi", + "TrustWallet", + "Socket", + "Rubic", + "Rango", + "SushiSwap" + ], + "occurrences": 7 + }, + "0x000ae314e2a2172a039b26378814c252734f556a": { + "address": "0x000ae314e2a2172a039b26378814c252734f556a", + "symbol": "ASTER", + "decimals": 18, + "name": "Aster", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x000ae314e2a2172a039b26378814c252734f556a.png", + "aggregators": [ + "PancakeExtended", + "1inch", + "LiFi", + "Rubic", + "Squid", + "Rango" + ], + "occurrences": 6 + }, + "0xd55c9fb62e176a8eb6968f32958fefdd0962727e": { + "address": "0xd55c9fb62e176a8eb6968f32958fefdd0962727e", + "symbol": "FHE", + "decimals": 18, + "name": "Mind Network", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xd55c9fb62e176a8eb6968f32958fefdd0962727e.png", + "aggregators": [ + "PancakeExtended", + "LiFi", + "Socket", + "Rubic", + "Squid", + "Sonarwatch" + ], + "occurrences": 6 + }, + "0x44ec807ce2f4a6f2737a92e985f318d035883e47": { + "address": "0x44ec807ce2f4a6f2737a92e985f318d035883e47", + "symbol": "HFT", + "decimals": 18, + "name": "Hashflow", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x44ec807ce2f4a6f2737a92e985f318d035883e47.png", + "aggregators": [ + "PancakeExtended", + "LiFi", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 6 + }, + "0x7324c7c0d95cebc73eea7e85cbaac0dbdf88a05b": { + "address": "0x7324c7c0d95cebc73eea7e85cbaac0dbdf88a05b", + "symbol": "XCN", + "decimals": 18, + "name": "Onyxcoin", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x7324c7c0d95cebc73eea7e85cbaac0dbdf88a05b.png", + "aggregators": [ + "PancakeExtended", + "Socket", + "Rubic", + "Squid", + "Rango", + "Sonarwatch" + ], + "occurrences": 6 + }, + "0xca3f508b8e4dd382ee878a314789373d80a5190a": { + "address": "0xca3f508b8e4dd382ee878a314789373d80a5190a", + "symbol": "BIFI", + "decimals": 18, + "name": "beefy.finance", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xca3f508b8e4dd382ee878a314789373d80a5190a.png", + "aggregators": [ + "PancakeExtended", + "LiFi", + "Socket", + "Rubic", + "Rango", + "SushiSwap", + "BinanceDex" + ], + "occurrences": 7 + }, + "0xc7981767f644c7f8e483dabdc413e8a371b83079": { + "address": "0xc7981767f644c7f8e483dabdc413e8a371b83079", + "symbol": "LIQ", + "decimals": 18, + "name": "Liquidus (Old)", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xc7981767f644c7f8e483dabdc413e8a371b83079.png", + "aggregators": [ + "PancakeCoinGecko", + "1inch", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 6 + }, + "0x489580eb70a50515296ef31e8179ff3e77e24965": { + "address": "0x489580eb70a50515296ef31e8179ff3e77e24965", + "symbol": "RADAR", + "decimals": 18, + "name": "DappRadar", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x489580eb70a50515296ef31e8179ff3e77e24965.png", + "aggregators": [ + "PancakeCoinMarketCap", + "LiFi", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 6 + }, + "0xfdc66a08b0d0dc44c17bbd471b88f49f50cdd20f": { + "address": "0xfdc66a08b0d0dc44c17bbd471b88f49f50cdd20f", + "symbol": "SDEX", + "decimals": 18, + "name": "SmarDex", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xfdc66a08b0d0dc44c17bbd471b88f49f50cdd20f.png", + "aggregators": [ + "PancakeCoinMarketCap", + "LiFi", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 6 + }, + "0x650b940a1033b8a1b1873f78730fcfc73ec11f1f": { + "address": "0x650b940a1033b8a1b1873f78730fcfc73ec11f1f", + "symbol": "VLINK", + "decimals": 8, + "name": "Venus LINK", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x650b940a1033b8a1b1873f78730fcfc73ec11f1f.png", + "aggregators": [ + "PancakeCoinMarketCap", + "1inch", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 6 + }, + "0x40b8129b786d766267a7a118cf8c07e31cdb6fde": { + "address": "0x40b8129b786d766267a7a118cf8c07e31cdb6fde", + "symbol": "UB", + "decimals": 18, + "name": "Unibase", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x40b8129b786d766267a7a118cf8c07e31cdb6fde.png", + "aggregators": [ + "PancakeExtended", + "LiFi", + "Socket", + "Rubic", + "Squid", + "Rango" + ], + "occurrences": 6 + }, + "0x882c173bc7ff3b7786ca16dfed3dfffb9ee7847b": { + "address": "0x882c173bc7ff3b7786ca16dfed3dfffb9ee7847b", + "symbol": "VBTC", + "decimals": 8, + "name": "Venus BTC", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x882c173bc7ff3b7786ca16dfed3dfffb9ee7847b.png", + "aggregators": [ + "PancakeCoinMarketCap", + "1inch", + "LiFi", + "Socket", + "Rubic", + "Sonarwatch" + ], + "occurrences": 6 + }, + "0xf508fcd89b8bd15579dc79a6827cb4686a3592c8": { + "address": "0xf508fcd89b8bd15579dc79a6827cb4686a3592c8", + "symbol": "VETH", + "decimals": 8, + "name": "Venus ETH", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xf508fcd89b8bd15579dc79a6827cb4686a3592c8.png", + "aggregators": [ + "PancakeCoinMarketCap", + "1inch", + "LiFi", + "Socket", + "Rubic", + "Rango" + ], + "occurrences": 6 + }, + "0xf859bf77cbe8699013d6dbc7c2b926aaf307f830": { + "address": "0xf859bf77cbe8699013d6dbc7c2b926aaf307f830", + "symbol": "BRY", + "decimals": 18, + "name": "Berry Data", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xf859bf77cbe8699013d6dbc7c2b926aaf307f830.png", + "aggregators": [ + "PancakeExtended", + "1inch", + "LiFi", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 6 + }, + "0x444045b0ee1ee319a660a5e3d604ca0ffa35acaa": { + "address": "0x444045b0ee1ee319a660a5e3d604ca0ffa35acaa", + "symbol": "BTW", + "decimals": 18, + "name": "Bitway Token", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x444045b0ee1ee319a660a5e3d604ca0ffa35acaa.png", + "aggregators": [ + "PancakeExtended", + "LiFi", + "Socket", + "Rubic", + "Squid", + "Rango" + ], + "occurrences": 6 + }, + "0x14c358b573a4ce45364a3dbd84bbb4dae87af034": { + "address": "0x14c358b573a4ce45364a3dbd84bbb4dae87af034", + "symbol": "DND", + "decimals": 18, + "name": "DungeonSwap", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x14c358b573a4ce45364a3dbd84bbb4dae87af034.png", + "aggregators": [ + "PancakeCoinMarketCap", + "1inch", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 6 + }, + "0x0e63b9c287e32a05e6b9ab8ee8df88a2760225a9": { + "address": "0x0e63b9c287e32a05e6b9ab8ee8df88a2760225a9", + "symbol": "PIEVERSE", + "decimals": 18, + "name": "Pieverse Token", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x0e63b9c287e32a05e6b9ab8ee8df88a2760225a9.png", + "aggregators": [ + "PancakeExtended", + "LiFi", + "Socket", + "Rubic", + "Squid", + "Rango" + ], + "occurrences": 6 + }, + "0xb64e280e9d1b5dbec4accedb2257a87b400db149": { + "address": "0xb64e280e9d1b5dbec4accedb2257a87b400db149", + "symbol": "LVL", + "decimals": 18, + "name": "Level", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xb64e280e9d1b5dbec4accedb2257a87b400db149.png", + "aggregators": [ + "PancakeExtended", + "1inch", + "LiFi", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 6 + }, + "0x16939ef78684453bfdfb47825f8a5f714f12623a": { + "address": "0x16939ef78684453bfdfb47825f8a5f714f12623a", + "symbol": "XTZ", + "decimals": 18, + "name": "BNB pegged Tezos Token", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x16939ef78684453bfdfb47825f8a5f714f12623a.png", + "aggregators": [ + "PancakeExtended", + "TrustWallet", + "Socket", + "Rubic", + "Sonarwatch", + "SushiSwap" + ], + "occurrences": 6 + }, + "0x0a8d6c86e1bce73fe4d0bd531e1a567306836ea5": { + "address": "0x0a8d6c86e1bce73fe4d0bd531e1a567306836ea5", + "symbol": "COAI", + "decimals": 18, + "name": "ChainOpera AI", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x0a8d6c86e1bce73fe4d0bd531e1a567306836ea5.png", + "aggregators": [ + "PancakeExtended", + "1inch", + "LiFi", + "Rubic", + "Squid", + "Rango" + ], + "occurrences": 6 + }, + "0xa67c48f86fc6d0176dca38883ca8153c76a532c7": { + "address": "0xa67c48f86fc6d0176dca38883ca8153c76a532c7", + "symbol": "SYBTC", + "decimals": 8, + "name": "SyBTC", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xa67c48f86fc6d0176dca38883ca8153c76a532c7.png", + "aggregators": [ + "CoinGecko", + "LiFi", + "Rubic", + "Squid", + "Rango", + "Sonarwatch" + ], + "occurrences": 6 + }, + "0xbbca42c60b5290f2c48871a596492f93ff0ddc82": { + "address": "0xbbca42c60b5290f2c48871a596492f93ff0ddc82", + "symbol": "DOMI", + "decimals": 18, + "name": "Domi Online", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xbbca42c60b5290f2c48871a596492f93ff0ddc82.png", + "aggregators": [ + "PancakeCoinMarketCap", + "1inch", + "LiFi", + "Socket", + "Rubic", + "Rango" + ], + "occurrences": 6 + }, + "0x53e562b9b7e5e94b81f10e96ee70ad06df3d2657": { + "address": "0x53e562b9b7e5e94b81f10e96ee70ad06df3d2657", + "symbol": "BABY", + "decimals": 18, + "name": "BabySwap", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x53e562b9b7e5e94b81f10e96ee70ad06df3d2657.png", + "aggregators": [ + "PancakeCoinMarketCap", + "1inch", + "LiFi", + "Socket", + "Rubic", + "Rango" + ], + "occurrences": 6 + }, + "0xbdeae1ca48894a1759a8374d63925f21f2ee2639": { + "address": "0xbdeae1ca48894a1759a8374d63925f21f2ee2639", + "symbol": "EDU", + "decimals": 18, + "name": "Open Campus", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xbdeae1ca48894a1759a8374d63925f21f2ee2639.png", + "aggregators": [ + "PancakeExtended", + "LiFi", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 6 + }, + "0x15247e6e23d3923a853ccf15940a20ccdf16e94a": { + "address": "0x15247e6e23d3923a853ccf15940a20ccdf16e94a", + "symbol": "ZKC", + "decimals": 18, + "name": "ZK Coin", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x15247e6e23d3923a853ccf15940a20ccdf16e94a.png", + "aggregators": ["CoinGecko", "Socket", "Rubic", "Squid", "Rango"], + "occurrences": 5 + }, + "0xc0041ef357b183448b235a8ea73ce4e4ec8c265f": { + "address": "0xc0041ef357b183448b235a8ea73ce4e4ec8c265f", + "symbol": "COOKIE", + "decimals": 18, + "name": "Cookie", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xc0041ef357b183448b235a8ea73ce4e4ec8c265f.png", + "aggregators": [ + "PancakeExtended", + "LiFi", + "Socket", + "Rubic", + "Squid", + "Sonarwatch" + ], + "occurrences": 6 + }, + "0xe9d7023f2132d55cbd4ee1f78273cb7a3e74f10a": { + "address": "0xe9d7023f2132d55cbd4ee1f78273cb7a3e74f10a", + "symbol": "DEC", + "decimals": 3, + "name": "Dark Energy Crystals", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xe9d7023f2132d55cbd4ee1f78273cb7a3e74f10a.png", + "aggregators": [ + "PancakeCoinMarketCap", + "1inch", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 6 + }, + "0xd83c128e7498be555845a6dc331a99e1524c1777": { + "address": "0xd83c128e7498be555845a6dc331a99e1524c1777", + "symbol": "UTOPIA", + "decimals": 18, + "name": "Utopia", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xd83c128e7498be555845a6dc331a99e1524c1777.png", + "aggregators": [ + "PancakeExtended", + "1inch", + "LiFi", + "Rubic", + "Squid", + "Rango" + ], + "occurrences": 6 + }, + "0x4b948d64de1f71fcd12fb586f4c776421a35b3ee": { + "address": "0x4b948d64de1f71fcd12fb586f4c776421a35b3ee", + "symbol": "0G", + "decimals": 18, + "name": "0G", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x4b948d64de1f71fcd12fb586f4c776421a35b3ee.png", + "aggregators": [ + "PancakeExtended", + "LiFi", + "Socket", + "Rubic", + "Squid", + "Rango" + ], + "occurrences": 6 + }, + "0x88d7e9b65dc24cf54f5edef929225fc3e1580c25": { + "address": "0x88d7e9b65dc24cf54f5edef929225fc3e1580c25", + "symbol": "JMPT", + "decimals": 18, + "name": "JumpToken", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x88d7e9b65dc24cf54f5edef929225fc3e1580c25.png", + "aggregators": [ + "PancakeCoinMarketCap", + "1inch", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 6 + }, + "0xa1832f7f4e534ae557f9b5ab76de54b1873e498b": { + "address": "0xa1832f7f4e534ae557f9b5ab76de54b1873e498b", + "symbol": "BID", + "decimals": 18, + "name": "CreatorBid", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xa1832f7f4e534ae557f9b5ab76de54b1873e498b.png", + "aggregators": [ + "PancakeExtended", + "1inch", + "LiFi", + "Socket", + "Rubic", + "Sonarwatch" + ], + "occurrences": 6 + }, + "0x86bb94ddd16efc8bc58e6b056e8df71d9e666429": { + "address": "0x86bb94ddd16efc8bc58e6b056e8df71d9e666429", + "symbol": "TST", + "decimals": 18, + "name": "Test", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x86bb94ddd16efc8bc58e6b056e8df71d9e666429.png", + "aggregators": [ + "PancakeExtended", + "LiFi", + "Socket", + "Rubic", + "Squid", + "Sonarwatch" + ], + "occurrences": 6 + }, + "0x04756126f044634c9a0f0e985e60c88a51acc206": { + "address": "0x04756126f044634c9a0f0e985e60c88a51acc206", + "symbol": "CSIX", + "decimals": 18, + "name": "Carbon Browser", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x04756126f044634c9a0f0e985e60c88a51acc206.png", + "aggregators": [ + "PancakeExtended", + "LiFi", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 6 + }, + "0x4f0ed527e8a95ecaa132af214dfd41f30b361600": { + "address": "0x4f0ed527e8a95ecaa132af214dfd41f30b361600", + "symbol": "VBSWAP", + "decimals": 18, + "name": "vBSWAP", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x4f0ed527e8a95ecaa132af214dfd41f30b361600.png", + "aggregators": [ + "PancakeCoinMarketCap", + "1inch", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 6 + }, + "0x0cbd6fadcf8096cc9a43d90b45f65826102e3ece": { + "address": "0x0cbd6fadcf8096cc9a43d90b45f65826102e3ece", + "symbol": "CDT", + "decimals": 18, + "name": "CheckDot", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x0cbd6fadcf8096cc9a43d90b45f65826102e3ece.png", + "aggregators": [ + "PancakeCoinMarketCap", + "Socket", + "Rubic", + "Rango", + "Sonarwatch", + "SushiSwap" + ], + "occurrences": 6 + }, + "0xdfd7b0dd7bf1012dfdf3307a964c36b972300ac8": { + "address": "0xdfd7b0dd7bf1012dfdf3307a964c36b972300ac8", + "symbol": "WNDR", + "decimals": 8, + "name": "Wonderman Nation", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xdfd7b0dd7bf1012dfdf3307a964c36b972300ac8.png", + "aggregators": [ + "PancakeCoinMarketCap", + "1inch", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 6 + }, + "0x52f24a5e03aee338da5fd9df68d2b6fae1178827": { + "address": "0x52f24a5e03aee338da5fd9df68d2b6fae1178827", + "symbol": "ANKRBNB", + "decimals": 18, + "name": "Ankr Staked BNB", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x52f24a5e03aee338da5fd9df68d2b6fae1178827.png", + "aggregators": [ + "PancakeExtended", + "1inch", + "LiFi", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 6 + }, + "0x5c85d6c6825ab4032337f11ee92a72df936b46f6": { + "address": "0x5c85d6c6825ab4032337f11ee92a72df936b46f6", + "symbol": "MUBARAK", + "decimals": 18, + "name": "Mubarak", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x5c85d6c6825ab4032337f11ee92a72df936b46f6.png", + "aggregators": [ + "PancakeExtended", + "1inch", + "LiFi", + "Rubic", + "Squid", + "Sonarwatch" + ], + "occurrences": 6 + }, + "0x4a5a34212404f30c5ab7eb61b078fa4a55adc5a5": { + "address": "0x4a5a34212404f30c5ab7eb61b078fa4a55adc5a5", + "symbol": "MILK2", + "decimals": 18, + "name": "Spaceswap MILK2", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x4a5a34212404f30c5ab7eb61b078fa4a55adc5a5.png", + "aggregators": [ + "PancakeCoinMarketCap", + "1inch", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 6 + }, + "0x6ae9701b9c423f40d54556c9a443409d79ce170a": { + "address": "0x6ae9701b9c423f40d54556c9a443409d79ce170a", + "symbol": "POLC", + "decimals": 18, + "name": "Polkacity", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x6ae9701b9c423f40d54556c9a443409d79ce170a.png", + "aggregators": [ + "PancakeCoinMarketCap", + "1inch", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 6 + }, + "0xb72a20c7b8bd666f80ac053b0f4de20a787080f5": { + "address": "0xb72a20c7b8bd666f80ac053b0f4de20a787080f5", + "symbol": "MLT", + "decimals": 18, + "name": "Media Licensing Token", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xb72a20c7b8bd666f80ac053b0f4de20a787080f5.png", + "aggregators": [ + "PancakeCoinMarketCap", + "1inch", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 6 + }, + "0xdb021b1b247fe2f1fa57e0a87c748cc1e321f07f": { + "address": "0xdb021b1b247fe2f1fa57e0a87c748cc1e321f07f", + "symbol": "AMPL", + "decimals": 9, + "name": "Ampleforth", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xdb021b1b247fe2f1fa57e0a87c748cc1e321f07f.png", + "aggregators": [ + "PancakeExtended", + "1inch", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 6 + }, + "0xe9c803f48dffe50180bd5b01dc04da939e3445fc": { + "address": "0xe9c803f48dffe50180bd5b01dc04da939e3445fc", + "symbol": "VLX", + "decimals": 18, + "name": "Velas", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xe9c803f48dffe50180bd5b01dc04da939e3445fc.png", + "aggregators": [ + "PancakeCoinMarketCap", + "1inch", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 6 + }, + "0xc53708664b99df348dd27c3ac0759d2da9c40462": { + "address": "0xc53708664b99df348dd27c3ac0759d2da9c40462", + "symbol": "GUM", + "decimals": 18, + "name": "Gourmet Galaxy", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xc53708664b99df348dd27c3ac0759d2da9c40462.png", + "aggregators": [ + "PancakeExtended", + "LiFi", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 6 + }, + "0xa026ad2ceda16ca5fc28fd3c72f99e2c332c8a26": { + "address": "0xa026ad2ceda16ca5fc28fd3c72f99e2c332c8a26", + "symbol": "XCAD", + "decimals": 18, + "name": "XCAD Network", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xa026ad2ceda16ca5fc28fd3c72f99e2c332c8a26.png", + "aggregators": [ + "PancakeExtended", + "Socket", + "Rubic", + "Squid", + "Rango", + "Sonarwatch" + ], + "occurrences": 6 + }, + "0x77087ab5df23cfb52449a188e80e9096201c2097": { + "address": "0x77087ab5df23cfb52449a188e80e9096201c2097", + "symbol": "HI", + "decimals": 18, + "name": "hi Dollar", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x77087ab5df23cfb52449a188e80e9096201c2097.png", + "aggregators": [ + "PancakeCoinMarketCap", + "1inch", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 6 + }, + "0x52242cbab41e290e9e17ccc50cc437bb60020a9d": { + "address": "0x52242cbab41e290e9e17ccc50cc437bb60020a9d", + "symbol": "WNCG", + "decimals": 18, + "name": "Wrapped NCG", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x52242cbab41e290e9e17ccc50cc437bb60020a9d.png", + "aggregators": [ + "PancakeExtended", + "LiFi", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 6 + }, + "0x0864c156b3c5f69824564dec60c629ae6401bf2a": { + "address": "0x0864c156b3c5f69824564dec60c629ae6401bf2a", + "symbol": "DATA", + "decimals": 18, + "name": "Streamr", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x0864c156b3c5f69824564dec60c629ae6401bf2a.png", + "aggregators": [ + "PancakeCoinMarketCap", + "1inch", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 6 + }, + "0xd983ab71a284d6371908420d8ac6407ca943f810": { + "address": "0xd983ab71a284d6371908420d8ac6407ca943f810", + "symbol": "ULX", + "decimals": 18, + "name": "ULTRON", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xd983ab71a284d6371908420d8ac6407ca943f810.png", + "aggregators": [ + "PancakeCoinMarketCap", + "1inch", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 6 + }, + "0x5012c90f14d190607662ca8344120812aaa2639d": { + "address": "0x5012c90f14d190607662ca8344120812aaa2639d", + "symbol": "PNP", + "decimals": 18, + "name": "Penpie", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x5012c90f14d190607662ca8344120812aaa2639d.png", + "aggregators": [ + "PancakeExtended", + "LiFi", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 6 + }, + "0x14778860e937f509e651192a90589de711fb88a9": { + "address": "0x14778860e937f509e651192a90589de711fb88a9", + "symbol": "CYBER", + "decimals": 18, + "name": "CYBER", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x14778860e937f509e651192a90589de711fb88a9.png", + "aggregators": [ + "PancakeExtended", + "LiFi", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 6 + }, + "0x374ca32fd7934c5d43240e1e73fa9b2283468609": { + "address": "0x374ca32fd7934c5d43240e1e73fa9b2283468609", + "symbol": "EQB", + "decimals": 18, + "name": "Equilibria Finance", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x374ca32fd7934c5d43240e1e73fa9b2283468609.png", + "aggregators": [ + "PancakeExtended", + "Socket", + "Rubic", + "Squid", + "Rango", + "Sonarwatch" + ], + "occurrences": 6 + }, + "0x259b30c916e440fb79747cd559207ffdabbae057": { + "address": "0x259b30c916e440fb79747cd559207ffdabbae057", + "symbol": "OVN", + "decimals": 18, + "name": "Overnight Finance", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x259b30c916e440fb79747cd559207ffdabbae057.png", + "aggregators": [ + "PancakeExtended", + "LiFi", + "Rubic", + "Squid", + "Rango", + "Sonarwatch" + ], + "occurrences": 6 + }, + "0x6418c0dd099a9fda397c766304cdd918233e8847": { + "address": "0x6418c0dd099a9fda397c766304cdd918233e8847", + "symbol": "PENGU", + "decimals": 18, + "name": "Pudgy Penguins", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x6418c0dd099a9fda397c766304cdd918233e8847.png", + "aggregators": [ + "PancakeExtended", + "LiFi", + "Socket", + "Rubic", + "Squid", + "Rango" + ], + "occurrences": 6 + }, + "0x6ef2ffb38d64afe18ce782da280b300e358cfeaf": { + "address": "0x6ef2ffb38d64afe18ce782da280b300e358cfeaf", + "symbol": "ACU", + "decimals": 12, + "name": "Acurast", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x6ef2ffb38d64afe18ce782da280b300e358cfeaf.png", + "aggregators": ["CoinGecko", "Socket", "Rubic", "Squid", "Rango"], + "occurrences": 5 + }, + "0x31dba3c96481fde3cd81c2aaf51f2d8bf618c742": { + "address": "0x31dba3c96481fde3cd81c2aaf51f2d8bf618c742", + "symbol": "SOPH", + "decimals": 18, + "name": "Sophon", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x31dba3c96481fde3cd81c2aaf51f2d8bf618c742.png", + "aggregators": [ + "PancakeExtended", + "1inch", + "LiFi", + "Socket", + "Rubic", + "Sonarwatch" + ], + "occurrences": 6 + }, + "0x7ff7fa94b8b66ef313f7970d4eebd2cb3103a2c0": { + "address": "0x7ff7fa94b8b66ef313f7970d4eebd2cb3103a2c0", + "symbol": "VANA", + "decimals": 18, + "name": "VANA", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x7ff7fa94b8b66ef313f7970d4eebd2cb3103a2c0.png", + "aggregators": [ + "CoinGecko", + "1inch", + "LiFi", + "Socket", + "Rubic", + "Rango" + ], + "occurrences": 6 + }, + "0x7d814b9ed370ec0a502edc3267393bf62d891b62": { + "address": "0x7d814b9ed370ec0a502edc3267393bf62d891b62", + "symbol": "BMT", + "decimals": 18, + "name": "Bubblemaps", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x7d814b9ed370ec0a502edc3267393bf62d891b62.png", + "aggregators": [ + "PancakeExtended", + "LiFi", + "Socket", + "Rubic", + "Squid", + "Sonarwatch" + ], + "occurrences": 6 + }, + "0x52b5fb4b0f6572b8c44d0251cc224513ac5eb7e7": { + "address": "0x52b5fb4b0f6572b8c44d0251cc224513ac5eb7e7", + "symbol": "BOB", + "decimals": 18, + "name": "BOB", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x52b5fb4b0f6572b8c44d0251cc224513ac5eb7e7.png", + "aggregators": [ + "PancakeExtended", + "LiFi", + "Socket", + "Rubic", + "Squid", + "Rango" + ], + "occurrences": 6 + }, + "0xb9e1fd5a02d3a33b25a14d661414e6ed6954a721": { + "address": "0xb9e1fd5a02d3a33b25a14d661414e6ed6954a721", + "symbol": "SOON", + "decimals": 18, + "name": "SOON", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xb9e1fd5a02d3a33b25a14d661414e6ed6954a721.png", + "aggregators": [ + "PancakeExtended", + "LiFi", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 6 + }, + "0x44f161ae29361e332dea039dfa2f404e0bc5b5cc": { + "address": "0x44f161ae29361e332dea039dfa2f404e0bc5b5cc", + "symbol": "H", + "decimals": 18, + "name": "Humanity", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x44f161ae29361e332dea039dfa2f404e0bc5b5cc.png", + "aggregators": [ + "PancakeExtended", + "LiFi", + "Socket", + "Rubic", + "Squid", + "Rango" + ], + "occurrences": 6 + }, + "0x011ebe7d75e2c9d1e0bd0be0bef5c36f0a90075f": { + "address": "0x011ebe7d75e2c9d1e0bd0be0bef5c36f0a90075f", + "symbol": "STABLE", + "decimals": 18, + "name": "STABLE", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x011ebe7d75e2c9d1e0bd0be0bef5c36f0a90075f.png", + "aggregators": [ + "PancakeExtended", + "LiFi", + "Socket", + "Rubic", + "Squid", + "Rango" + ], + "occurrences": 6 + }, + "0x475cbf5919608e0c6af00e7bf87fab83bf3ef6e2": { + "address": "0x475cbf5919608e0c6af00e7bf87fab83bf3ef6e2", + "symbol": "ROBO", + "decimals": 18, + "name": "Robo Token", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x475cbf5919608e0c6af00e7bf87fab83bf3ef6e2.png", + "aggregators": [ + "PancakeExtended", + "LiFi", + "Socket", + "Rubic", + "Squid", + "Rango" + ], + "occurrences": 6 + }, + "0xac23b90a79504865d52b49b327328411a23d4db2": { + "address": "0xac23b90a79504865d52b49b327328411a23d4db2", + "symbol": "FF", + "decimals": 18, + "name": "Falcon Finance", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xac23b90a79504865d52b49b327328411a23d4db2.png", + "aggregators": [ + "PancakeExtended", + "LiFi", + "Socket", + "Rubic", + "Squid", + "Rango" + ], + "occurrences": 6 + }, + "0x97693439ea2f0ecdeb9135881e49f354656a911c": { + "address": "0x97693439ea2f0ecdeb9135881e49f354656a911c", + "symbol": "RAVE", + "decimals": 18, + "name": "RaveDAO", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x97693439ea2f0ecdeb9135881e49f354656a911c.png", + "aggregators": [ + "PancakeExtended", + "LiFi", + "Socket", + "Rubic", + "Squid", + "Rango" + ], + "occurrences": 6 + }, + "0x9dc44ae5be187eca9e2a67e33f27a4c91cea1223": { + "address": "0x9dc44ae5be187eca9e2a67e33f27a4c91cea1223", + "symbol": "POWER", + "decimals": 18, + "name": "Power", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x9dc44ae5be187eca9e2a67e33f27a4c91cea1223.png", + "aggregators": [ + "PancakeExtended", + "LiFi", + "Socket", + "Rubic", + "Squid", + "Rango" + ], + "occurrences": 6 + }, + "0x8ba9da757d1d66c58b1ae7e2ed6c04087348a82d": { + "address": "0x8ba9da757d1d66c58b1ae7e2ed6c04087348a82d", + "symbol": "SUSDD", + "decimals": 18, + "name": "Savings USDD", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x8ba9da757d1d66c58b1ae7e2ed6c04087348a82d.png", + "aggregators": [ + "Metamask", + "1inch", + "LiFi", + "Socket", + "Rubic", + "Rango" + ], + "occurrences": 6 + }, + "0xc5e6689c9c8b02be7c49912ef19e79cf24977f03": { + "address": "0xc5e6689c9c8b02be7c49912ef19e79cf24977f03", + "symbol": "ALPA", + "decimals": 18, + "name": "Alpaca City", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xc5e6689c9c8b02be7c49912ef19e79cf24977f03.png", + "aggregators": [ + "PancakeExtended", + "1inch", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 6 + }, + "0xcd40f2670cf58720b694968698a5514e924f742d": { + "address": "0xcd40f2670cf58720b694968698a5514e924f742d", + "symbol": "ODDZ", + "decimals": 18, + "name": "Oddz", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xcd40f2670cf58720b694968698a5514e924f742d.png", + "aggregators": [ + "PancakeExtended", + "LiFi", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 6 + }, + "0x3c6dad0475d3a1696b359dc04c99fd401be134da": { + "address": "0x3c6dad0475d3a1696b359dc04c99fd401be134da", + "symbol": "SAITO", + "decimals": 18, + "name": "Saito", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x3c6dad0475d3a1696b359dc04c99fd401be134da.png", + "aggregators": [ + "PancakeCoinMarketCap", + "1inch", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 6 + }, + "0xbf05279f9bf1ce69bbfed670813b7e431142afa4": { + "address": "0xbf05279f9bf1ce69bbfed670813b7e431142afa4", + "symbol": "MM", + "decimals": 18, + "name": "Million", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xbf05279f9bf1ce69bbfed670813b7e431142afa4.png", + "aggregators": [ + "PancakeCoinMarketCap", + "Socket", + "Rubic", + "Rango", + "Sonarwatch", + "SushiSwap" + ], + "occurrences": 6 + }, + "0x66109633715d2110dda791e64a7b2afadb517abb": { + "address": "0x66109633715d2110dda791e64a7b2afadb517abb", + "symbol": "GAME", + "decimals": 5, + "name": "Gamestarter", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x66109633715d2110dda791e64a7b2afadb517abb.png", + "aggregators": [ + "PancakeCoinMarketCap", + "1inch", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 6 + }, + "0xe9c64384deb0c2bf06d991a8d708c77eb545e3d5": { + "address": "0xe9c64384deb0c2bf06d991a8d708c77eb545e3d5", + "symbol": "RDT", + "decimals": 18, + "name": "Ridotto", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xe9c64384deb0c2bf06d991a8d708c77eb545e3d5.png", + "aggregators": [ + "PancakeCoinMarketCap", + "1inch", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 6 + }, + "0x45e51bc23d592eb2dba86da3985299f7895d66ba": { + "address": "0x45e51bc23d592eb2dba86da3985299f7895d66ba", + "symbol": "USDD", + "decimals": 18, + "name": "Decentralized USD", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x45e51bc23d592eb2dba86da3985299f7895d66ba.png", + "aggregators": [ + "Metamask", + "1inch", + "LiFi", + "Socket", + "Rubic", + "Rango" + ], + "occurrences": 6 + }, + "0x4268b8f0b87b6eae5d897996e6b845ddbd99adf3": { + "address": "0x4268b8f0b87b6eae5d897996e6b845ddbd99adf3", + "symbol": "AXLUSDC", + "decimals": 6, + "name": "Axelar Wrapped USDC", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x4268b8f0b87b6eae5d897996e6b845ddbd99adf3.png", + "aggregators": [ + "PancakeExtended", + "LiFi", + "Rubic", + "Squid", + "Sonarwatch", + "SushiSwap" + ], + "occurrences": 6 + }, + "0x8d279274789ccec8af94a430a5996eaace9609a9": { + "address": "0x8d279274789ccec8af94a430a5996eaace9609a9", + "symbol": "INSP", + "decimals": 18, + "name": "Inspect", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x8d279274789ccec8af94a430a5996eaace9609a9.png", + "aggregators": [ + "PancakeExtended", + "LiFi", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 6 + }, + "0x2598c30330d5771ae9f983979209486ae26de875": { + "address": "0x2598c30330d5771ae9f983979209486ae26de875", + "symbol": "AI", + "decimals": 18, + "name": "Any Inu", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x2598c30330d5771ae9f983979209486ae26de875.png", + "aggregators": [ + "PancakeExtended", + "Socket", + "Rubic", + "Squid", + "Rango", + "Sonarwatch" + ], + "occurrences": 6 + }, + "0x491e6de43b55c8eae702edc263e32339da42f58c": { + "address": "0x491e6de43b55c8eae702edc263e32339da42f58c", + "symbol": "ESE", + "decimals": 18, + "name": "Eesee", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x491e6de43b55c8eae702edc263e32339da42f58c.png", + "aggregators": [ + "CoinGecko", + "Socket", + "Rubic", + "Squid", + "Rango", + "Sonarwatch" + ], + "occurrences": 6 + }, + "0x46777c76dbbe40fabb2aab99e33ce20058e76c59": { + "address": "0x46777c76dbbe40fabb2aab99e33ce20058e76c59", + "symbol": "L3", + "decimals": 18, + "name": "Layer3", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x46777c76dbbe40fabb2aab99e33ce20058e76c59.png", + "aggregators": [ + "CoinGecko", + "LiFi", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 6 + }, + "0x79bbf4508b1391af3a0f4b30bb5fc4aa9ab0e07c": { + "address": "0x79bbf4508b1391af3a0f4b30bb5fc4aa9ab0e07c", + "symbol": "ANON", + "decimals": 18, + "name": "Hey Anon", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x79bbf4508b1391af3a0f4b30bb5fc4aa9ab0e07c.png", + "aggregators": [ + "PancakeExtended", + "LiFi", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 6 + }, + "0xc65d8d96cdddb31328186efa113a460b0af9ec63": { + "address": "0xc65d8d96cdddb31328186efa113a460b0af9ec63", + "symbol": "PELL", + "decimals": 18, + "name": "Pell Network Token", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xc65d8d96cdddb31328186efa113a460b0af9ec63.png", + "aggregators": [ + "CoinGecko", + "Socket", + "Rubic", + "Squid", + "Rango", + "Sonarwatch" + ], + "occurrences": 6 + }, + "0xfdffb411c4a70aa7c95d5c981a6fb4da867e1111": { + "address": "0xfdffb411c4a70aa7c95d5c981a6fb4da867e1111", + "symbol": "SAHARA", + "decimals": 18, + "name": "Sahara AI", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xfdffb411c4a70aa7c95d5c981a6fb4da867e1111.png", + "aggregators": [ + "PancakeExtended", + "LiFi", + "Socket", + "Rubic", + "Squid", + "Rango" + ], + "occurrences": 6 + }, + "0xda7ad9dea9397cffddae2f8a052b82f1484252b3": { + "address": "0xda7ad9dea9397cffddae2f8a052b82f1484252b3", + "symbol": "RIVER", + "decimals": 18, + "name": "River", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xda7ad9dea9397cffddae2f8a052b82f1484252b3.png", + "aggregators": [ + "PancakeExtended", + "LiFi", + "Socket", + "Rubic", + "Squid", + "Rango" + ], + "occurrences": 6 + }, + "0x405fbc9004d857903bfd6b3357792d71a50726b0": { + "address": "0x405fbc9004d857903bfd6b3357792d71a50726b0", + "symbol": "XPL", + "decimals": 18, + "name": "Plasma", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x405fbc9004d857903bfd6b3357792d71a50726b0.png", + "aggregators": [ + "PancakeExtended", + "1inch", + "LiFi", + "Rubic", + "Squid", + "Rango" + ], + "occurrences": 6 + }, + "0x7f70642d88cf1c4a3a7abb072b53b929b653eda5": { + "address": "0x7f70642d88cf1c4a3a7abb072b53b929b653eda5", + "symbol": "YFII", + "decimals": 18, + "name": "BNB pegged YFII.finance Token", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x7f70642d88cf1c4a3a7abb072b53b929b653eda5.png", + "aggregators": [ + "PancakeExtended", + "TrustWallet", + "Socket", + "Rubic", + "Rango", + "SushiSwap" + ], + "occurrences": 6 + }, + "0x61dc650c10ec3c758d251cd2d1ab45af1a43e941": { + "address": "0x61dc650c10ec3c758d251cd2d1ab45af1a43e941", + "symbol": "RPG", + "decimals": 18, + "name": "Rangers Protocol Gas", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x61dc650c10ec3c758d251cd2d1ab45af1a43e941.png", + "aggregators": [ + "PancakeExtended", + "LiFi", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 6 + }, + "0x256d1fce1b1221e8398f65f9b36033ce50b2d497": { + "address": "0x256d1fce1b1221e8398f65f9b36033ce50b2d497", + "symbol": "WALV", + "decimals": 18, + "name": "Alvey Chain", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x256d1fce1b1221e8398f65f9b36033ce50b2d497.png", + "aggregators": [ + "PancakeCoinMarketCap", + "1inch", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 6 + }, + "0x0288d3e353fe2299f11ea2c2e1696b4a648ecc07": { + "address": "0x0288d3e353fe2299f11ea2c2e1696b4a648ecc07", + "symbol": "ZEFI", + "decimals": 18, + "name": "ZCore Finance", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x0288d3e353fe2299f11ea2c2e1696b4a648ecc07.png", + "aggregators": [ + "PancakeCoinMarketCap", + "1inch", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 6 + }, + "0xbc7d6b50616989655afd682fb42743507003056d": { + "address": "0xbc7d6b50616989655afd682fb42743507003056d", + "symbol": "ACH", + "decimals": 8, + "name": "Alchemy Pay", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xbc7d6b50616989655afd682fb42743507003056d.png", + "aggregators": [ + "PancakeExtended", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x09e889bb4d5b474f561db0491c38702f367a4e4d": { + "address": "0x09e889bb4d5b474f561db0491c38702f367a4e4d", + "symbol": "CLV", + "decimals": 18, + "name": "Clover Finance", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x09e889bb4d5b474f561db0491c38702f367a4e4d.png", + "aggregators": [ + "PancakeCoinMarketCap", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x99956d38059cf7beda96ec91aa7bb2477e0901dd": { + "address": "0x99956d38059cf7beda96ec91aa7bb2477e0901dd", + "symbol": "DIA", + "decimals": 18, + "name": "DIA", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x99956d38059cf7beda96ec91aa7bb2477e0901dd.png", + "aggregators": [ + "PancakeCoinMarketCap", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x949d48eca67b17269629c7194f4b727d4ef9e5d6": { + "address": "0x949d48eca67b17269629c7194f4b727d4ef9e5d6", + "symbol": "MC", + "decimals": 18, + "name": "Merit Circle", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x949d48eca67b17269629c7194f4b727d4ef9e5d6.png", + "aggregators": [ + "PancakeCoinMarketCap", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x7a9f28eb62c791422aa23ceae1da9c847cbec9b0": { + "address": "0x7a9f28eb62c791422aa23ceae1da9c847cbec9b0", + "symbol": "WATCH", + "decimals": 18, + "name": "Yieldwatch", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x7a9f28eb62c791422aa23ceae1da9c847cbec9b0.png", + "aggregators": [ + "PancakeExtended", + "1inch", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x55671114d774ee99d653d6c12460c780a67f1d18": { + "address": "0x55671114d774ee99d653d6c12460c780a67f1d18", + "symbol": "PACOCA", + "decimals": 18, + "name": "Pacoca", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x55671114d774ee99d653d6c12460c780a67f1d18.png", + "aggregators": [ + "PancakeCoinMarketCap", + "1inch", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x755f34709e369d37c6fa52808ae84a32007d1155": { + "address": "0x755f34709e369d37c6fa52808ae84a32007d1155", + "symbol": "NABOX", + "decimals": 18, + "name": "Nabox", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x755f34709e369d37c6fa52808ae84a32007d1155.png", + "aggregators": [ + "PancakeExtended", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0xcaf5191fc480f43e4df80106c7695eca56e48b18": { + "address": "0xcaf5191fc480f43e4df80106c7695eca56e48b18", + "symbol": "DEP", + "decimals": 18, + "name": "DEAPCOIN", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xcaf5191fc480f43e4df80106c7695eca56e48b18.png", + "aggregators": [ + "PancakeCoinMarketCap", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0xa719b8ab7ea7af0ddb4358719a34631bb79d15dc": { + "address": "0xa719b8ab7ea7af0ddb4358719a34631bb79d15dc", + "symbol": "FRM", + "decimals": 18, + "name": "Ferrum Network", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xa719b8ab7ea7af0ddb4358719a34631bb79d15dc.png", + "aggregators": [ + "PancakeCoinMarketCap", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0xd3b71117e6c1558c1553305b44988cd944e97300": { + "address": "0xd3b71117e6c1558c1553305b44988cd944e97300", + "symbol": "YEL", + "decimals": 18, + "name": "YEL Token", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xd3b71117e6c1558c1553305b44988cd944e97300.png", + "aggregators": [ + "PancakeExtended", + "1inch", + "Socket", + "Rubic", + "Rango" + ], + "occurrences": 5 + }, + "0xd9025e25bb6cf39f8c926a704039d2dd51088063": { + "address": "0xd9025e25bb6cf39f8c926a704039d2dd51088063", + "symbol": "CYT", + "decimals": 18, + "name": "Coinary", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xd9025e25bb6cf39f8c926a704039d2dd51088063.png", + "aggregators": [ + "PancakeCoinMarketCap", + "Rubic", + "Squid", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x5774b2fc3e91af89f89141eacf76545e74265982": { + "address": "0x5774b2fc3e91af89f89141eacf76545e74265982", + "symbol": "NFTY", + "decimals": 18, + "name": "NFTY", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x5774b2fc3e91af89f89141eacf76545e74265982.png", + "aggregators": [ + "PancakeCoinMarketCap", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x016cf83732f1468150d87dcc5bdf67730b3934d3": { + "address": "0x016cf83732f1468150d87dcc5bdf67730b3934d3", + "symbol": "AIRT", + "decimals": 18, + "name": "AirNFT Token", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x016cf83732f1468150d87dcc5bdf67730b3934d3.png", + "aggregators": [ + "PancakeCoinMarketCap", + "1inch", + "TrustWallet", + "Rubic", + "Rango" + ], + "occurrences": 5 + }, + "0x6b1c8765c7eff0b60706b0ae489eb9bb9667465a": { + "address": "0x6b1c8765c7eff0b60706b0ae489eb9bb9667465a", + "symbol": "SATA", + "decimals": 18, + "name": "Signata", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x6b1c8765c7eff0b60706b0ae489eb9bb9667465a.png", + "aggregators": [ + "PancakeCoinMarketCap", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x7bc75e291e656e8658d66be1cc8154a3769a35dd": { + "address": "0x7bc75e291e656e8658d66be1cc8154a3769a35dd", + "symbol": "LIME", + "decimals": 18, + "name": "iMe Lab", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x7bc75e291e656e8658d66be1cc8154a3769a35dd.png", + "aggregators": [ + "PancakeCoinMarketCap", + "1inch", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0xdbf8265b1d5244a13424f13977723acf5395eab2": { + "address": "0xdbf8265b1d5244a13424f13977723acf5395eab2", + "symbol": "WGR", + "decimals": 18, + "name": "Wagerr", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xdbf8265b1d5244a13424f13977723acf5395eab2.png", + "aggregators": [ + "PancakeCoinMarketCap", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x6679eb24f59dfe111864aec72b443d1da666b360": { + "address": "0x6679eb24f59dfe111864aec72b443d1da666b360", + "symbol": "ARV", + "decimals": 8, + "name": "ARIVA", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x6679eb24f59dfe111864aec72b443d1da666b360.png", + "aggregators": [ + "PancakeExtended", + "1inch", + "TrustWallet", + "Rubic", + "Rango" + ], + "occurrences": 5 + }, + "0x7837fd820ba38f95c54d6dac4ca3751b81511357": { + "address": "0x7837fd820ba38f95c54d6dac4ca3751b81511357", + "symbol": "DOSE", + "decimals": 18, + "name": "DOSE", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x7837fd820ba38f95c54d6dac4ca3751b81511357.png", + "aggregators": [ + "PancakeCoinMarketCap", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0xf7722aa0714096f1fb5ef83e6041cebb4d58a08e": { + "address": "0xf7722aa0714096f1fb5ef83e6041cebb4d58a08e", + "symbol": "RUBY", + "decimals": 12, + "name": "Ruby Play Network", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xf7722aa0714096f1fb5ef83e6041cebb4d58a08e.png", + "aggregators": [ + "PancakeCoinMarketCap", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x45f7967926e95fd161e56ed66b663c9114c5226f": { + "address": "0x45f7967926e95fd161e56ed66b663c9114c5226f", + "symbol": "TOKO", + "decimals": 18, + "name": "Tokoin", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x45f7967926e95fd161e56ed66b663c9114c5226f.png", + "aggregators": [ + "PancakeCoinMarketCap", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x2235e79086dd23135119366da45851c741874e5b": { + "address": "0x2235e79086dd23135119366da45851c741874e5b", + "symbol": "CREDI", + "decimals": 18, + "name": "Credefi", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x2235e79086dd23135119366da45851c741874e5b.png", + "aggregators": [ + "PancakeCoinMarketCap", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0xa41f142b6eb2b164f8164cae0716892ce02f311f": { + "address": "0xa41f142b6eb2b164f8164cae0716892ce02f311f", + "symbol": "AVG", + "decimals": 18, + "name": "Avocado DAO", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xa41f142b6eb2b164f8164cae0716892ce02f311f.png", + "aggregators": [ + "PancakeCoinMarketCap", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x631c2f0edabac799f07550aee4ff0bf7fd35212b": { + "address": "0x631c2f0edabac799f07550aee4ff0bf7fd35212b", + "symbol": "PLT", + "decimals": 18, + "name": "Poollotto.finance", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x631c2f0edabac799f07550aee4ff0bf7fd35212b.png", + "aggregators": [ + "PancakeCoinMarketCap", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x5f113f7ef20ff111fd130e83d8e97fd1e0e2518f": { + "address": "0x5f113f7ef20ff111fd130e83d8e97fd1e0e2518f", + "symbol": "AIT", + "decimals": 18, + "name": "AiMalls", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x5f113f7ef20ff111fd130e83d8e97fd1e0e2518f.png", + "aggregators": [ + "PancakeCoinMarketCap", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0xa89e2871a850e0e6fd8f0018ec1fc62fa75440d4": { + "address": "0xa89e2871a850e0e6fd8f0018ec1fc62fa75440d4", + "symbol": "RTF", + "decimals": 18, + "name": "Ready to Fight", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xa89e2871a850e0e6fd8f0018ec1fc62fa75440d4.png", + "aggregators": [ + "PancakeCoinMarketCap", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x2b72867c32cf673f7b02d208b26889fed353b1f8": { + "address": "0x2b72867c32cf673f7b02d208b26889fed353b1f8", + "symbol": "SQR", + "decimals": 8, + "name": "Magic Square", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x2b72867c32cf673f7b02d208b26889fed353b1f8.png", + "aggregators": [ + "PancakeCoinMarketCap", + "1inch", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0xab2ed911bdbea001fd3b29adbc35d8a76e68aae4": { + "address": "0xab2ed911bdbea001fd3b29adbc35d8a76e68aae4", + "symbol": "ELDA", + "decimals": 18, + "name": "Eldarune", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xab2ed911bdbea001fd3b29adbc35d8a76e68aae4.png", + "aggregators": [ + "PancakeCoinMarketCap", + "Rubic", + "Squid", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x1d229b958d5ddfca92146585a8711aecbe56f095": { + "address": "0x1d229b958d5ddfca92146585a8711aecbe56f095", + "symbol": "ZOO", + "decimals": 18, + "name": "ZooToken", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x1d229b958d5ddfca92146585a8711aecbe56f095.png", + "aggregators": [ + "PancakeExtended", + "LiFi", + "Socket", + "Rubic", + "Rango" + ], + "occurrences": 5 + }, + "0x1d3437e570e93581bd94b2fd8fbf202d4a65654a": { + "address": "0x1d3437e570e93581bd94b2fd8fbf202d4a65654a", + "symbol": "NBT", + "decimals": 18, + "name": "NanoByte", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x1d3437e570e93581bd94b2fd8fbf202d4a65654a.png", + "aggregators": [ + "PancakeExtended", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x6aa217312960a21adbde1478dc8cbcf828110a67": { + "address": "0x6aa217312960a21adbde1478dc8cbcf828110a67", + "symbol": "SPIN", + "decimals": 18, + "name": "Spintop", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x6aa217312960a21adbde1478dc8cbcf828110a67.png", + "aggregators": [ + "PancakeExtended", + "Rubic", + "Squid", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x872952d3c1caf944852c5adda65633f1ef218a26": { + "address": "0x872952d3c1caf944852c5adda65633f1ef218a26", + "symbol": "LQDX", + "decimals": 18, + "name": "Reddex", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x872952d3c1caf944852c5adda65633f1ef218a26.png", + "aggregators": [ + "PancakeCoinMarketCap", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x475bfaa1848591ae0e6ab69600f48d828f61a80e": { + "address": "0x475bfaa1848591ae0e6ab69600f48d828f61a80e", + "symbol": "DOME", + "decimals": 18, + "name": "Everdome", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x475bfaa1848591ae0e6ab69600f48d828f61a80e.png", + "aggregators": [ + "PancakeCoinMarketCap", + "1inch", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x8f0fb159380176d324542b3a7933f0c2fd0c2bbf": { + "address": "0x8f0fb159380176d324542b3a7933f0c2fd0c2bbf", + "symbol": "TFT", + "decimals": 7, + "name": "ThreeFold", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x8f0fb159380176d324542b3a7933f0c2fd0c2bbf.png", + "aggregators": [ + "PancakeCoinMarketCap", + "1inch", + "Socket", + "Rubic", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0xce7de646e7208a4ef112cb6ed5038fa6cc6b12e3": { + "address": "0xce7de646e7208a4ef112cb6ed5038fa6cc6b12e3", + "symbol": "TRX", + "decimals": 6, + "name": "TRON (BSC)", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xce7de646e7208a4ef112cb6ed5038fa6cc6b12e3.png", + "aggregators": [ + "PancakeExtended", + "LiFi", + "Socket", + "Rubic", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x9ab70e92319f0b9127df78868fd3655fb9f1e322": { + "address": "0x9ab70e92319f0b9127df78868fd3655fb9f1e322", + "symbol": "WWY", + "decimals": 18, + "name": "WeWay", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x9ab70e92319f0b9127df78868fd3655fb9f1e322.png", + "aggregators": [ + "PancakeCoinMarketCap", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x1311b352467d2b5c296881badea82850bcd8f886": { + "address": "0x1311b352467d2b5c296881badea82850bcd8f886", + "symbol": "TOOLS", + "decimals": 18, + "name": "BSC TOOLS", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x1311b352467d2b5c296881badea82850bcd8f886.png", + "aggregators": [ + "PancakeCoinMarketCap", + "LiFi", + "Socket", + "Rubic", + "Rango" + ], + "occurrences": 5 + }, + "0x40c8225329bd3e28a043b029e0d07a5344d2c27c": { + "address": "0x40c8225329bd3e28a043b029e0d07a5344d2c27c", + "symbol": "AOG", + "decimals": 18, + "name": "AgeOfGods", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x40c8225329bd3e28a043b029e0d07a5344d2c27c.png", + "aggregators": [ + "PancakeExtended", + "LiFi", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x74926b3d118a63f6958922d3dc05eb9c6e6e00c6": { + "address": "0x74926b3d118a63f6958922d3dc05eb9c6e6e00c6", + "symbol": "DOGGY", + "decimals": 18, + "name": "DOGGY", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x74926b3d118a63f6958922d3dc05eb9c6e6e00c6.png", + "aggregators": [ + "PancakeCoinMarketCap", + "1inch", + "Socket", + "Rubic", + "Rango" + ], + "occurrences": 5 + }, + "0xc2e9d07f66a89c44062459a47a0d2dc038e4fb16": { + "address": "0xc2e9d07f66a89c44062459a47a0d2dc038e4fb16", + "symbol": "STKBNB", + "decimals": 18, + "name": "Staked BNB", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xc2e9d07f66a89c44062459a47a0d2dc038e4fb16.png", + "aggregators": [ + "PancakeExtended", + "LiFi", + "Rubic", + "Squid", + "Rango" + ], + "occurrences": 5 + }, + "0x31471e0791fcdbe82fbf4c44943255e923f1b794": { + "address": "0x31471e0791fcdbe82fbf4c44943255e923f1b794", + "symbol": "PVU", + "decimals": 18, + "name": "Plant vs Undead", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x31471e0791fcdbe82fbf4c44943255e923f1b794.png", + "aggregators": [ + "PancakeTop100", + "LiFi", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0xcf1b55d79e824da0ae0652f96c66fe33263d743f": { + "address": "0xcf1b55d79e824da0ae0652f96c66fe33263d743f", + "symbol": "MIX", + "decimals": 18, + "name": "MixMarvel", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xcf1b55d79e824da0ae0652f96c66fe33263d743f.png", + "aggregators": [ + "PancakeExtended", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0xeb953eda0dc65e3246f43dc8fa13f35623bdd5ed": { + "address": "0xeb953eda0dc65e3246f43dc8fa13f35623bdd5ed", + "symbol": "$RAINI", + "decimals": 18, + "name": "Raini", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xeb953eda0dc65e3246f43dc8fa13f35623bdd5ed.png", + "aggregators": [ + "PancakeCoinMarketCap", + "1inch", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x758d08864fb6cce3062667225ca10b8f00496cc2": { + "address": "0x758d08864fb6cce3062667225ca10b8f00496cc2", + "symbol": "NAOS", + "decimals": 18, + "name": "NAOS Finance", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x758d08864fb6cce3062667225ca10b8f00496cc2.png", + "aggregators": [ + "PancakeExtended", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0xed28a457a5a76596ac48d87c0f577020f6ea1c4c": { + "address": "0xed28a457a5a76596ac48d87c0f577020f6ea1c4c", + "symbol": "PBTC", + "decimals": 18, + "name": "pTokens BTC", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xed28a457a5a76596ac48d87c0f577020f6ea1c4c.png", + "aggregators": [ + "PancakeExtended", + "LiFi", + "Socket", + "Rubic", + "Rango" + ], + "occurrences": 5 + }, + "0x5fe80d2cd054645b9419657d3d10d26391780a7b": { + "address": "0x5fe80d2cd054645b9419657d3d10d26391780a7b", + "symbol": "MCB", + "decimals": 18, + "name": "MCDEX", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x5fe80d2cd054645b9419657d3d10d26391780a7b.png", + "aggregators": [ + "PancakeExtended", + "LiFi", + "Socket", + "Rubic", + "Rango" + ], + "occurrences": 5 + }, + "0x91d6d6af7635b7b23a8ced9508117965180e2362": { + "address": "0x91d6d6af7635b7b23a8ced9508117965180e2362", + "symbol": "USH", + "decimals": 18, + "name": "unshETHing_Token", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x91d6d6af7635b7b23a8ced9508117965180e2362.png", + "aggregators": [ + "PancakeExtended", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0xe20b9e246db5a0d21bf9209e4858bc9a3ff7a034": { + "address": "0xe20b9e246db5a0d21bf9209e4858bc9a3ff7a034", + "symbol": "WBAN", + "decimals": 18, + "name": "Wrapped Banano", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xe20b9e246db5a0d21bf9209e4858bc9a3ff7a034.png", + "aggregators": [ + "PancakeCoinMarketCap", + "1inch", + "Socket", + "Rubic", + "Rango" + ], + "occurrences": 5 + }, + "0x944824290cc12f31ae18ef51216a223ba4063092": { + "address": "0x944824290cc12f31ae18ef51216a223ba4063092", + "symbol": "MASA", + "decimals": 18, + "name": "Masa", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x944824290cc12f31ae18ef51216a223ba4063092.png", + "aggregators": [ + "PancakeExtended", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0xdaacb0ab6fb34d24e8a67bfa14bf4d95d4c7af92": { + "address": "0xdaacb0ab6fb34d24e8a67bfa14bf4d95d4c7af92", + "symbol": "PNT", + "decimals": 18, + "name": "pNetwork", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xdaacb0ab6fb34d24e8a67bfa14bf4d95d4c7af92.png", + "aggregators": [ + "PancakeExtended", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x6e88056e8376ae7709496ba64d37fa2f8015ce3e": { + "address": "0x6e88056e8376ae7709496ba64d37fa2f8015ce3e", + "symbol": "DEXE", + "decimals": 18, + "name": "DeXe", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x6e88056e8376ae7709496ba64d37fa2f8015ce3e.png", + "aggregators": [ + "PancakeExtended", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0xe60eaf5a997dfae83739e035b005a33afdcc6df5": { + "address": "0xe60eaf5a997dfae83739e035b005a33afdcc6df5", + "symbol": "DERI", + "decimals": 18, + "name": "Deri Protocol", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xe60eaf5a997dfae83739e035b005a33afdcc6df5.png", + "aggregators": [ + "PancakeExtended", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x9617857e191354dbea0b714d78bc59e57c411087": { + "address": "0x9617857e191354dbea0b714d78bc59e57c411087", + "symbol": "LMT", + "decimals": 18, + "name": "Lympo Market", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x9617857e191354dbea0b714d78bc59e57c411087.png", + "aggregators": [ + "PancakeExtended", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0xe80772eaf6e2e18b651f160bc9158b2a5cafca65": { + "address": "0xe80772eaf6e2e18b651f160bc9158b2a5cafca65", + "symbol": "USD+", + "decimals": 6, + "name": "Overnight.fi USD+", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xe80772eaf6e2e18b651f160bc9158b2a5cafca65.png", + "aggregators": [ + "PancakeCoinMarketCap", + "LiFi", + "Squid", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0xe56842ed550ff2794f010738554db45e60730371": { + "address": "0xe56842ed550ff2794f010738554db45e60730371", + "symbol": "BIN", + "decimals": 18, + "name": "Binemon", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xe56842ed550ff2794f010738554db45e60730371.png", + "aggregators": ["PancakeTop100", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0x9096b4309224d751fcb43d7eb178dcffc122ad15": { + "address": "0x9096b4309224d751fcb43d7eb178dcffc122ad15", + "symbol": "LGX", + "decimals": 18, + "name": "Legion Network", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x9096b4309224d751fcb43d7eb178dcffc122ad15.png", + "aggregators": [ + "PancakeCoinMarketCap", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 4 + }, + "0x2c717059b366714d267039af8f59125cadce6d8c": { + "address": "0x2c717059b366714d267039af8f59125cadce6d8c", + "symbol": "MHUNT", + "decimals": 18, + "name": "MetaShooter", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x2c717059b366714d267039af8f59125cadce6d8c.png", + "aggregators": ["PancakeExtended", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0xb465f3cb6aba6ee375e12918387de1eac2301b05": { + "address": "0xb465f3cb6aba6ee375e12918387de1eac2301b05", + "symbol": "TRIVIA", + "decimals": 3, + "name": "Trivians", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xb465f3cb6aba6ee375e12918387de1eac2301b05.png", + "aggregators": ["PancakeExtended", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0x6e4a971b81ca58045a2aa982eaa3d50c4ac38f42": { + "address": "0x6e4a971b81ca58045a2aa982eaa3d50c4ac38f42", + "symbol": "BRG", + "decimals": 18, + "name": "Bridge", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x6e4a971b81ca58045a2aa982eaa3d50c4ac38f42.png", + "aggregators": ["PancakeCoinMarketCap", "Socket", "Rubic", "Rango"], + "occurrences": 4 + }, + "0x1bdaf9ddd7658d8049391971d1fd48c0484f66ec": { + "address": "0x1bdaf9ddd7658d8049391971d1fd48c0484f66ec", + "symbol": "CGV", + "decimals": 6, + "name": "Cogito Governance Token", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x1bdaf9ddd7658d8049391971d1fd48c0484f66ec.png", + "aggregators": ["PancakeCoinMarketCap", "Socket", "Rubic", "Rango"], + "occurrences": 4 + }, + "0x2d060ef4d6bf7f9e5edde373ab735513c0e4f944": { + "address": "0x2d060ef4d6bf7f9e5edde373ab735513c0e4f944", + "symbol": "AITECH", + "decimals": 18, + "name": "Solidus Ai Tech", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x2d060ef4d6bf7f9e5edde373ab735513c0e4f944.png", + "aggregators": ["PancakeExtended", "Rubic", "Squid", "Sonarwatch"], + "occurrences": 4 + }, + "0x555296de6a86e72752e5c5dc091fe49713aa145c": { + "address": "0x555296de6a86e72752e5c5dc091fe49713aa145c", + "symbol": "GRAPE", + "decimals": 18, + "name": "Grape Coin", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x555296de6a86e72752e5c5dc091fe49713aa145c.png", + "aggregators": ["PancakeExtended", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0x003d87d02a2a01e9e8a20f507c83e15dd83a33d1": { + "address": "0x003d87d02a2a01e9e8a20f507c83e15dd83a33d1", + "symbol": "GTAI", + "decimals": 18, + "name": "GT Protocol", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x003d87d02a2a01e9e8a20f507c83e15dd83a33d1.png", + "aggregators": ["PancakeExtended", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0x0669538fcdef9a73cd37938eba8c79e652bb93aa": { + "address": "0x0669538fcdef9a73cd37938eba8c79e652bb93aa", + "symbol": "SCPT", + "decimals": 18, + "name": "Script Network", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x0669538fcdef9a73cd37938eba8c79e652bb93aa.png", + "aggregators": ["PancakeExtended", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0xfea292e5ea4510881bdb840e3cec63abd43f936f": { + "address": "0xfea292e5ea4510881bdb840e3cec63abd43f936f", + "symbol": "COPI", + "decimals": 18, + "name": "Cornucopias [via ChainPort.io]", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xfea292e5ea4510881bdb840e3cec63abd43f936f.png", + "aggregators": ["PancakeCoinMarketCap", "Socket", "Rubic", "Rango"], + "occurrences": 4 + }, + "0xbc7a566b85ef73f935e640a06b5a8b031cd975df": { + "address": "0xbc7a566b85ef73f935e640a06b5a8b031cd975df", + "symbol": "BLOCK", + "decimals": 6, + "name": "Blockasset", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xbc7a566b85ef73f935e640a06b5a8b031cd975df.png", + "aggregators": ["PancakeCoinMarketCap", "Socket", "Rubic", "Rango"], + "occurrences": 4 + }, + "0x524df384bffb18c0c8f3f43d012011f8f9795579": { + "address": "0x524df384bffb18c0c8f3f43d012011f8f9795579", + "symbol": "YAY", + "decimals": 18, + "name": "YAY Network", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x524df384bffb18c0c8f3f43d012011f8f9795579.png", + "aggregators": ["PancakeTop100", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0x426c72701833fddbdfc06c944737c6031645c708": { + "address": "0x426c72701833fddbdfc06c944737c6031645c708", + "symbol": "FINA", + "decimals": 18, + "name": "Defina Finance", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x426c72701833fddbdfc06c944737c6031645c708.png", + "aggregators": ["PancakeExtended", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0xf95a5532d67c944dfa7eddd2f8c358fe0dc7fac2": { + "address": "0xf95a5532d67c944dfa7eddd2f8c358fe0dc7fac2", + "symbol": "MBX", + "decimals": 18, + "name": "Marblex", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xf95a5532d67c944dfa7eddd2f8c358fe0dc7fac2.png", + "aggregators": ["PancakeExtended", "Socket", "Rubic", "Squid"], + "occurrences": 4 + }, + "0x7859b01bbf675d67da8cd128a50d155cd881b576": { + "address": "0x7859b01bbf675d67da8cd128a50d155cd881b576", + "symbol": "XMS", + "decimals": 18, + "name": "Mars Ecosystem", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x7859b01bbf675d67da8cd128a50d155cd881b576.png", + "aggregators": ["PancakeExtended", "LiFi", "Rubic", "Rango"], + "occurrences": 4 + }, + "0xc0eff7749b125444953ef89682201fb8c6a917cd": { + "address": "0xc0eff7749b125444953ef89682201fb8c6a917cd", + "symbol": "HZN", + "decimals": 18, + "name": "Horizon Protocol", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xc0eff7749b125444953ef89682201fb8c6a917cd.png", + "aggregators": ["PancakeExtended", "Rubic", "Squid", "Rango"], + "occurrences": 4 + }, + "0xfd5840cd36d94d7229439859c0112a4185bc0255": { + "address": "0xfd5840cd36d94d7229439859c0112a4185bc0255", + "symbol": "VUSDT", + "decimals": 8, + "name": "Venus USDT", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xfd5840cd36d94d7229439859c0112a4185bc0255.png", + "aggregators": ["PancakeCoinMarketCap", "LiFi", "Rubic", "Rango"], + "occurrences": 4 + }, + "0x1bf7aedec439d6bfe38f8f9b20cf3dc99e3571c4": { + "address": "0x1bf7aedec439d6bfe38f8f9b20cf3dc99e3571c4", + "symbol": "TRONPAD", + "decimals": 18, + "name": "TRONPAD", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x1bf7aedec439d6bfe38f8f9b20cf3dc99e3571c4.png", + "aggregators": ["PancakeTop100", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0x394bba8f309f3462b31238b3fd04b83f71a98848": { + "address": "0x394bba8f309f3462b31238b3fd04b83f71a98848", + "symbol": "POCO", + "decimals": 18, + "name": "Pocoland", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x394bba8f309f3462b31238b3fd04b83f71a98848.png", + "aggregators": ["PancakeTop100", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0x95ee03e1e2c5c4877f9a298f1c0d6c98698fab7b": { + "address": "0x95ee03e1e2c5c4877f9a298f1c0d6c98698fab7b", + "symbol": "DUET", + "decimals": 18, + "name": "Duet Protocol", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x95ee03e1e2c5c4877f9a298f1c0d6c98698fab7b.png", + "aggregators": ["PancakeExtended", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0x4c97c901b5147f8c1c7ce3c5cf3eb83b44f244fe": { + "address": "0x4c97c901b5147f8c1c7ce3c5cf3eb83b44f244fe", + "symbol": "MND", + "decimals": 18, + "name": "Mound", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x4c97c901b5147f8c1c7ce3c5cf3eb83b44f244fe.png", + "aggregators": ["PancakeTop100", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0xbd2949f67dcdc549c6ebe98696449fa79d988a9f": { + "address": "0xbd2949f67dcdc549c6ebe98696449fa79d988a9f", + "symbol": "MTRG", + "decimals": 18, + "name": "Meter Governance", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xbd2949f67dcdc549c6ebe98696449fa79d988a9f.png", + "aggregators": ["PancakeExtended", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0x1ffd0b47127fdd4097e54521c9e2c7f0d66aafc5": { + "address": "0x1ffd0b47127fdd4097e54521c9e2c7f0d66aafc5", + "symbol": "TXL", + "decimals": 18, + "name": "Tixl", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x1ffd0b47127fdd4097e54521c9e2c7f0d66aafc5.png", + "aggregators": ["PancakeExtended", "Socket", "Rubic", "Rango"], + "occurrences": 4 + }, + "0x758fb037a375f17c7e195cc634d77da4f554255b": { + "address": "0x758fb037a375f17c7e195cc634d77da4f554255b", + "symbol": "DVI", + "decimals": 18, + "name": "Dvision", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x758fb037a375f17c7e195cc634d77da4f554255b.png", + "aggregators": ["PancakeTop100", "Socket", "Rubic", "Rango"], + "occurrences": 4 + }, + "0x02a40c048ee2607b5f5606e445cfc3633fb20b58": { + "address": "0x02a40c048ee2607b5f5606e445cfc3633fb20b58", + "symbol": "KABY", + "decimals": 18, + "name": "Kaby Arena", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x02a40c048ee2607b5f5606e445cfc3633fb20b58.png", + "aggregators": ["PancakeTop100", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0xc732b6586a93b6b7cf5fed3470808bc74998224d": { + "address": "0xc732b6586a93b6b7cf5fed3470808bc74998224d", + "symbol": "KMON", + "decimals": 18, + "name": "KmonCoin", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xc732b6586a93b6b7cf5fed3470808bc74998224d.png", + "aggregators": ["PancakeTop100", "Socket", "Rubic", "Rango"], + "occurrences": 4 + }, + "0xab15b79880f11cffb58db25ec2bc39d28c4d80d2": { + "address": "0xab15b79880f11cffb58db25ec2bc39d28c4d80d2", + "symbol": "SMON", + "decimals": 18, + "name": "StarMon", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xab15b79880f11cffb58db25ec2bc39d28c4d80d2.png", + "aggregators": ["PancakeTop100", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0x339c72829ab7dd45c3c52f965e7abe358dd8761e": { + "address": "0x339c72829ab7dd45c3c52f965e7abe358dd8761e", + "symbol": "WANA", + "decimals": 18, + "name": "Wanaka Farm", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x339c72829ab7dd45c3c52f965e7abe358dd8761e.png", + "aggregators": ["PancakeTop100", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0x5512014efa6cd57764fa743756f7a6ce3358cc83": { + "address": "0x5512014efa6cd57764fa743756f7a6ce3358cc83", + "symbol": "EZ", + "decimals": 18, + "name": "Easy V2", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x5512014efa6cd57764fa743756f7a6ce3358cc83.png", + "aggregators": ["PancakeExtended", "Socket", "Rubic", "Rango"], + "occurrences": 4 + }, + "0xaa9e582e5751d703f85912903bacaddfed26484c": { + "address": "0xaa9e582e5751d703f85912903bacaddfed26484c", + "symbol": "HAI", + "decimals": 8, + "name": "Hacken Token", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xaa9e582e5751d703f85912903bacaddfed26484c.png", + "aggregators": ["PancakeExtended", "Socket", "Rubic", "Rango"], + "occurrences": 4 + }, + "0x0ae38f7e10a43b5b2fb064b42a2f4514cba909ef": { + "address": "0x0ae38f7e10a43b5b2fb064b42a2f4514cba909ef", + "symbol": "UNSHETH", + "decimals": 18, + "name": "unshETH Ether", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x0ae38f7e10a43b5b2fb064b42a2f4514cba909ef.png", + "aggregators": ["PancakeExtended", "Socket", "Rubic", "Rango"], + "occurrences": 4 + }, + "0xb160a5f19ebccd8e0549549327e43ddd1d023526": { + "address": "0xb160a5f19ebccd8e0549549327e43ddd1d023526", + "symbol": "WNK", + "decimals": 18, + "name": "Winkies", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xb160a5f19ebccd8e0549549327e43ddd1d023526.png", + "aggregators": ["PancakeCoinMarketCap", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x21ac3bb914f90a2bb1a16088e673a9fdda641434": { + "address": "0x21ac3bb914f90a2bb1a16088e673a9fdda641434", + "symbol": "VIA", + "decimals": 18, + "name": "Octavia", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x21ac3bb914f90a2bb1a16088e673a9fdda641434.png", + "aggregators": ["PancakeExtended", "Rubic", "Sonarwatch"], + "occurrences": 3 + }, + "0x9133049fb1fddc110c92bf5b7df635abb70c89dc": { + "address": "0x9133049fb1fddc110c92bf5b7df635abb70c89dc", + "symbol": "PINK", + "decimals": 18, + "name": "Pink Token", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x9133049fb1fddc110c92bf5b7df635abb70c89dc.png", + "aggregators": ["PancakeTop100", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x12f31b73d812c6bb0d735a218c086d44d5fe5f89": { + "address": "0x12f31b73d812c6bb0d735a218c086d44d5fe5f89", + "symbol": "AGEUR", + "decimals": 18, + "name": "agEUR", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x12f31b73d812c6bb0d735a218c086d44d5fe5f89.png", + "aggregators": [ + "PancakeExtended", + "1inch", + "LiFi", + "Rubic", + "Rango", + "Sonarwatch", + "SushiSwap" + ], + "occurrences": 7 + }, + "0xc9882def23bc42d53895b8361d0b1edc7570bc6a": { + "address": "0xc9882def23bc42d53895b8361d0b1edc7570bc6a", + "symbol": "FIST", + "decimals": 6, + "name": "Fistbump", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xc9882def23bc42d53895b8361d0b1edc7570bc6a.png", + "aggregators": [ + "PancakeCoinMarketCap", + "1inch", + "LiFi", + "Rubic", + "Squid", + "Rango", + "Sonarwatch" + ], + "occurrences": 7 + }, + "0x76a797a59ba2c17726896976b7b3747bfd1d220f": { + "address": "0x76a797a59ba2c17726896976b7b3747bfd1d220f", + "symbol": "TON", + "decimals": 9, + "name": "Toncoin", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x76a797a59ba2c17726896976b7b3747bfd1d220f.png", + "aggregators": [ + "PancakeExtended", + "1inch", + "LiFi", + "Rubic", + "Squid", + "Rango", + "Sonarwatch" + ], + "occurrences": 7 + }, + "0x4507cef57c46789ef8d1a19ea45f4216bae2b528": { + "address": "0x4507cef57c46789ef8d1a19ea45f4216bae2b528", + "symbol": "TOKEN", + "decimals": 9, + "name": "TokenFi", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x4507cef57c46789ef8d1a19ea45f4216bae2b528.png", + "aggregators": [ + "PancakeCoinMarketCap", + "1inch", + "Socket", + "Rubic", + "Squid", + "Rango", + "Sonarwatch" + ], + "occurrences": 7 + }, + "0x9e20461bc2c4c980f62f1b279d71734207a6a356": { + "address": "0x9e20461bc2c4c980f62f1b279d71734207a6a356", + "symbol": "OMNI", + "decimals": 18, + "name": "OmniCat", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x9e20461bc2c4c980f62f1b279d71734207a6a356.png", + "aggregators": [ + "PancakeCoinMarketCap", + "Socket", + "Rubic", + "Squid", + "Rango", + "Sonarwatch", + "SushiSwap" + ], + "occurrences": 7 + }, + "0x4aae823a6a0b376de6a78e74ecc5b079d38cbcf7": { + "address": "0x4aae823a6a0b376de6a78e74ecc5b079d38cbcf7", + "symbol": "SOLVBTC", + "decimals": 18, + "name": "Solv Protocol SolvBTC", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x4aae823a6a0b376de6a78e74ecc5b079d38cbcf7.png", + "aggregators": [ + "PancakeExtended", + "1inch", + "LiFi", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 7 + }, + "0x3f56e0c36d275367b8c502090edf38289b3dea0d": { + "address": "0x3f56e0c36d275367b8c502090edf38289b3dea0d", + "symbol": "MAI", + "decimals": 18, + "name": "Mai Stablecoin", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x3f56e0c36d275367b8c502090edf38289b3dea0d.png", + "aggregators": [ + "PancakeCoinMarketCap", + "LiFi", + "Socket", + "Rubic", + "Rango", + "Sonarwatch", + "SushiSwap" + ], + "occurrences": 7 + }, + "0x233d91a0713155003fc4dce0afa871b508b3b715": { + "address": "0x233d91a0713155003fc4dce0afa871b508b3b715", + "symbol": "DITTO", + "decimals": 9, + "name": "Ditto", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x233d91a0713155003fc4dce0afa871b508b3b715.png", + "aggregators": [ + "PancakeExtended", + "LiFi", + "TrustWallet", + "Socket", + "Rubic", + "Rango", + "SushiSwap" + ], + "occurrences": 7 + }, + "0x073690e6ce25be816e68f32dca3e11067c9fb5cc": { + "address": "0x073690e6ce25be816e68f32dca3e11067c9fb5cc", + "symbol": "KUJI", + "decimals": 6, + "name": "Kujira", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x073690e6ce25be816e68f32dca3e11067c9fb5cc.png", + "aggregators": [ + "PancakeExtended", + "Socket", + "Rubic", + "Squid", + "Rango", + "Sonarwatch" + ], + "occurrences": 6 + }, + "0x5b6dcf557e2abe2323c48445e8cc948910d8c2c9": { + "address": "0x5b6dcf557e2abe2323c48445e8cc948910d8c2c9", + "symbol": "MIR", + "decimals": 18, + "name": "Mirror Protocol", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x5b6dcf557e2abe2323c48445e8cc948910d8c2c9.png", + "aggregators": [ + "PancakeExtended", + "LiFi", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 6 + }, + "0xa4080f1778e69467e905b8d6f72f6e441f9e9484": { + "address": "0xa4080f1778e69467e905b8d6f72f6e441f9e9484", + "symbol": "SYN", + "decimals": 18, + "name": "Synapse", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xa4080f1778e69467e905b8d6f72f6e441f9e9484.png", + "aggregators": [ + "PancakeCoinMarketCap", + "LiFi", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 6 + }, + "0xd74b782e05aa25c50e7330af541d46e18f36661c": { + "address": "0xd74b782e05aa25c50e7330af541d46e18f36661c", + "symbol": "QUACK", + "decimals": 9, + "name": "Rich Quack", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xd74b782e05aa25c50e7330af541d46e18f36661c.png", + "aggregators": [ + "PancakeExtended", + "1inch", + "Rubic", + "Squid", + "Rango", + "Sonarwatch" + ], + "occurrences": 6 + }, + "0x71be881e9c5d4465b3fff61e89c6f3651e69b5bb": { + "address": "0x71be881e9c5d4465b3fff61e89c6f3651e69b5bb", + "symbol": "BRZ", + "decimals": 4, + "name": "Brazilian Digital", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x71be881e9c5d4465b3fff61e89c6f3651e69b5bb.png", + "aggregators": [ + "PancakeCoinMarketCap", + "LiFi", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 6 + }, + "0x0ef4a107b48163ab4b57fca36e1352151a587be4": { + "address": "0x0ef4a107b48163ab4b57fca36e1352151a587be4", + "symbol": "ICHI", + "decimals": 18, + "name": "ICHI", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x0ef4a107b48163ab4b57fca36e1352151a587be4.png", + "aggregators": [ + "PancakeCoinGecko", + "Socket", + "Rubic", + "Squid", + "Rango", + "Sonarwatch" + ], + "occurrences": 6 + }, + "0x29a63f4b209c29b4dc47f06ffa896f32667dad2c": { + "address": "0x29a63f4b209c29b4dc47f06ffa896f32667dad2c", + "symbol": "PURSE", + "decimals": 18, + "name": "Pundi X PURSE", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x29a63f4b209c29b4dc47f06ffa896f32667dad2c.png", + "aggregators": [ + "PancakeCoinMarketCap", + "1inch", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 6 + }, + "0xb09fe1613fe03e7361319d2a43edc17422f36b09": { + "address": "0xb09fe1613fe03e7361319d2a43edc17422f36b09", + "symbol": "BOG", + "decimals": 18, + "name": "Bogged Finance", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xb09fe1613fe03e7361319d2a43edc17422f36b09.png", + "aggregators": [ + "PancakeCoinMarketCap", + "1inch", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 6 + }, + "0xb5102cee1528ce2c760893034a4603663495fd72": { + "address": "0xb5102cee1528ce2c760893034a4603663495fd72", + "symbol": "USX", + "decimals": 18, + "name": "dForce USD", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xb5102cee1528ce2c760893034a4603663495fd72.png", + "aggregators": [ + "PancakeCoinMarketCap", + "LiFi", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 6 + }, + "0xd3c325848d7c6e29b574cb0789998b2ff901f17e": { + "address": "0xd3c325848d7c6e29b574cb0789998b2ff901f17e", + "symbol": "1ART", + "decimals": 18, + "name": "OneArt", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xd3c325848d7c6e29b574cb0789998b2ff901f17e.png", + "aggregators": [ + "PancakeCoinMarketCap", + "LiFi", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 6 + }, + "0xd23811058eb6e7967d9a00dc3886e75610c4abba": { + "address": "0xd23811058eb6e7967d9a00dc3886e75610c4abba", + "symbol": "KNIGHT", + "decimals": 18, + "name": "KnightSwap", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xd23811058eb6e7967d9a00dc3886e75610c4abba.png", + "aggregators": [ + "PancakeCoinMarketCap", + "LiFi", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 6 + }, + "0x8ea5219a16c2dbf1d6335a6aa0c6bd45c50347c5": { + "address": "0x8ea5219a16c2dbf1d6335a6aa0c6bd45c50347c5", + "symbol": "OOE", + "decimals": 18, + "name": "OpenOcean", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x8ea5219a16c2dbf1d6335a6aa0c6bd45c50347c5.png", + "aggregators": [ + "PancakeCoinMarketCap", + "LiFi", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 6 + }, + "0x72b7d61e8fc8cf971960dd9cfa59b8c829d91991": { + "address": "0x72b7d61e8fc8cf971960dd9cfa59b8c829d91991", + "symbol": "AQUA", + "decimals": 18, + "name": "Planet Finance", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x72b7d61e8fc8cf971960dd9cfa59b8c829d91991.png", + "aggregators": [ + "PancakeCoinMarketCap", + "1inch", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 6 + }, + "0xf33893de6eb6ae9a67442e066ae9abd228f5290c": { + "address": "0xf33893de6eb6ae9a67442e066ae9abd228f5290c", + "symbol": "GRV", + "decimals": 8, + "name": "GroveCoin", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xf33893de6eb6ae9a67442e066ae9abd228f5290c.png", + "aggregators": [ + "PancakeCoinMarketCap", + "LiFi", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 6 + }, + "0x00e1656e45f18ec6747f5a8496fd39b50b38396d": { + "address": "0x00e1656e45f18ec6747f5a8496fd39b50b38396d", + "symbol": "BCOIN", + "decimals": 18, + "name": "Bomb Crypto (BNB)", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x00e1656e45f18ec6747f5a8496fd39b50b38396d.png", + "aggregators": [ + "PancakeExtended", + "LiFi", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 6 + }, + "0x52419258e3fa44deac7e670eadd4c892b480a805": { + "address": "0x52419258e3fa44deac7e670eadd4c892b480a805", + "symbol": "STARSHIP", + "decimals": 9, + "name": "StarShip", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x52419258e3fa44deac7e670eadd4c892b480a805.png", + "aggregators": [ + "PancakeCoinMarketCap", + "1inch", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 6 + }, + "0xc1a59a17f87ba6651eb8e8f707db7672647c45bd": { + "address": "0xc1a59a17f87ba6651eb8e8f707db7672647c45bd", + "symbol": "LNR", + "decimals": 18, + "name": "Lunar", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xc1a59a17f87ba6651eb8e8f707db7672647c45bd.png", + "aggregators": [ + "PancakeCoinMarketCap", + "1inch", + "LiFi", + "Rubic", + "Sonarwatch", + "SushiSwap" + ], + "occurrences": 6 + }, + "0xf750a26eb0acf95556e8529e72ed530f3b60f348": { + "address": "0xf750a26eb0acf95556e8529e72ed530f3b60f348", + "symbol": "GNT", + "decimals": 18, + "name": "GreenTrust", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xf750a26eb0acf95556e8529e72ed530f3b60f348.png", + "aggregators": [ + "PancakeCoinMarketCap", + "1inch", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 6 + }, + "0x2ff3d0f6990a40261c66e1ff2017acbc282eb6d0": { + "address": "0x2ff3d0f6990a40261c66e1ff2017acbc282eb6d0", + "symbol": "VSXP", + "decimals": 8, + "name": "Venus SXP", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x2ff3d0f6990a40261c66e1ff2017acbc282eb6d0.png", + "aggregators": [ + "PancakeCoinMarketCap", + "1inch", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 6 + }, + "0xb3cb6d2f8f2fde203a022201c81a96c167607f15": { + "address": "0xb3cb6d2f8f2fde203a022201c81a96c167607f15", + "symbol": "GAMMA", + "decimals": 18, + "name": "Green Planet", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xb3cb6d2f8f2fde203a022201c81a96c167607f15.png", + "aggregators": [ + "PancakeCoinGecko", + "1inch", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 6 + }, + "0xd9de2b1973e57dc9dba90c35d6cd940ae4a3cbe1": { + "address": "0xd9de2b1973e57dc9dba90c35d6cd940ae4a3cbe1", + "symbol": "MILO", + "decimals": 9, + "name": "Milo Inu", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xd9de2b1973e57dc9dba90c35d6cd940ae4a3cbe1.png", + "aggregators": [ + "PancakeCoinMarketCap", + "1inch", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 6 + }, + "0x60322971a672b81bcce5947706d22c19daecf6fb": { + "address": "0x60322971a672b81bcce5947706d22c19daecf6fb", + "symbol": "MDAO", + "decimals": 18, + "name": "MarsDAO", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x60322971a672b81bcce5947706d22c19daecf6fb.png", + "aggregators": [ + "PancakeCoinMarketCap", + "1inch", + "LiFi", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 6 + }, + "0x557233e794d1a5fbcc6d26dca49147379ea5073c": { + "address": "0x557233e794d1a5fbcc6d26dca49147379ea5073c", + "symbol": "ALI", + "decimals": 18, + "name": "Alita", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x557233e794d1a5fbcc6d26dca49147379ea5073c.png", + "aggregators": [ + "PancakeCoinMarketCap", + "LiFi", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 6 + }, + "0x0255af6c9f86f6b0543357bacefa262a2664f80f": { + "address": "0x0255af6c9f86f6b0543357bacefa262a2664f80f", + "symbol": "DARA", + "decimals": 18, + "name": "Immutable", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x0255af6c9f86f6b0543357bacefa262a2664f80f.png", + "aggregators": [ + "PancakeCoinMarketCap", + "1inch", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 6 + }, + "0x972207a639cc1b374b893cc33fa251b55ceb7c07": { + "address": "0x972207a639cc1b374b893cc33fa251b55ceb7c07", + "symbol": "VBETH", + "decimals": 8, + "name": "Venus BETH", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x972207a639cc1b374b893cc33fa251b55ceb7c07.png", + "aggregators": [ + "PancakeCoinMarketCap", + "1inch", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 6 + }, + "0x1610bc33319e9398de5f57b33a5b184c806ad217": { + "address": "0x1610bc33319e9398de5f57b33a5b184c806ad217", + "symbol": "VDOT", + "decimals": 8, + "name": "Venus DOT", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x1610bc33319e9398de5f57b33a5b184c806ad217.png", + "aggregators": [ + "PancakeCoinMarketCap", + "1inch", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 6 + }, + "0xd32d01a43c869edcd1117c640fbdcfcfd97d9d65": { + "address": "0xd32d01a43c869edcd1117c640fbdcfcfd97d9d65", + "symbol": "NMX", + "decimals": 18, + "name": "Nominex", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xd32d01a43c869edcd1117c640fbdcfcfd97d9d65.png", + "aggregators": [ + "PancakeCoinMarketCap", + "1inch", + "LiFi", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 6 + }, + "0x5f0388ebc2b94fa8e123f404b79ccf5f40b29176": { + "address": "0x5f0388ebc2b94fa8e123f404b79ccf5f40b29176", + "symbol": "VBCH", + "decimals": 8, + "name": "Venus BCH", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x5f0388ebc2b94fa8e123f404b79ccf5f40b29176.png", + "aggregators": [ + "PancakeCoinMarketCap", + "1inch", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 6 + }, + "0x57a5297f2cb2c0aac9d554660acd6d385ab50c6b": { + "address": "0x57a5297f2cb2c0aac9d554660acd6d385ab50c6b", + "symbol": "VLTC", + "decimals": 8, + "name": "Venus LTC", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x57a5297f2cb2c0aac9d554660acd6d385ab50c6b.png", + "aggregators": [ + "PancakeCoinMarketCap", + "1inch", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 6 + }, + "0xf91d58b5ae142dacc749f58a49fcbac340cb0343": { + "address": "0xf91d58b5ae142dacc749f58a49fcbac340cb0343", + "symbol": "VFIL", + "decimals": 8, + "name": "Venus FIL", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xf91d58b5ae142dacc749f58a49fcbac340cb0343.png", + "aggregators": [ + "PancakeCoinMarketCap", + "1inch", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 6 + }, + "0x5de3939b2f811a61d830e6f52d13b066881412ab": { + "address": "0x5de3939b2f811a61d830e6f52d13b066881412ab", + "symbol": "XPR", + "decimals": 4, + "name": "XPR Network", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x5de3939b2f811a61d830e6f52d13b066881412ab.png", + "aggregators": [ + "PancakeCoinMarketCap", + "Socket", + "Rubic", + "Squid", + "Rango", + "Sonarwatch" + ], + "occurrences": 6 + }, + "0xa325ad6d9c92b55a3fc5ad7e412b1518f96441c0": { + "address": "0xa325ad6d9c92b55a3fc5ad7e412b1518f96441c0", + "symbol": "ORAI", + "decimals": 18, + "name": "Oraichain", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xa325ad6d9c92b55a3fc5ad7e412b1518f96441c0.png", + "aggregators": [ + "PancakeCoinMarketCap", + "LiFi", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 6 + }, + "0xd9c2d319cd7e6177336b0a9c93c21cb48d84fb54": { + "address": "0xd9c2d319cd7e6177336b0a9c93c21cb48d84fb54", + "symbol": "HAPI", + "decimals": 18, + "name": "HAPI", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xd9c2d319cd7e6177336b0a9c93c21cb48d84fb54.png", + "aggregators": [ + "PancakeCoinMarketCap", + "LiFi", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 6 + }, + "0x4a9a2b2b04549c3927dd2c9668a5ef3fca473623": { + "address": "0x4a9a2b2b04549c3927dd2c9668a5ef3fca473623", + "symbol": "DF", + "decimals": 18, + "name": "dForce", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x4a9a2b2b04549c3927dd2c9668a5ef3fca473623.png", + "aggregators": [ + "PancakeCoinMarketCap", + "LiFi", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 6 + }, + "0x9ce84f6a69986a83d92c324df10bc8e64771030f": { + "address": "0x9ce84f6a69986a83d92c324df10bc8e64771030f", + "symbol": "CHEX", + "decimals": 18, + "name": "CHEX Token", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x9ce84f6a69986a83d92c324df10bc8e64771030f.png", + "aggregators": [ + "PancakeCoinMarketCap", + "LiFi", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 6 + }, + "0xe2a59d5e33c6540e18aaa46bf98917ac3158db0d": { + "address": "0xe2a59d5e33c6540e18aaa46bf98917ac3158db0d", + "symbol": "UFI", + "decimals": 18, + "name": "PureFi", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xe2a59d5e33c6540e18aaa46bf98917ac3158db0d.png", + "aggregators": [ + "PancakeCoinMarketCap", + "LiFi", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 6 + }, + "0x8db1d28ee0d822367af8d220c0dc7cb6fe9dc442": { + "address": "0x8db1d28ee0d822367af8d220c0dc7cb6fe9dc442", + "symbol": "ETHPAD", + "decimals": 18, + "name": "ETHPad", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x8db1d28ee0d822367af8d220c0dc7cb6fe9dc442.png", + "aggregators": [ + "PancakeCoinMarketCap", + "1inch", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 6 + }, + "0xf275e1ac303a4c9d987a2c48b8e555a77fec3f1c": { + "address": "0xf275e1ac303a4c9d987a2c48b8e555a77fec3f1c", + "symbol": "DPS", + "decimals": 9, + "name": "DEEPSPACE", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xf275e1ac303a4c9d987a2c48b8e555a77fec3f1c.png", + "aggregators": [ + "PancakeCoinMarketCap", + "1inch", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 6 + }, + "0x347e430b7cd1235e216be58ffa13394e5009e6e2": { + "address": "0x347e430b7cd1235e216be58ffa13394e5009e6e2", + "symbol": "GAIA", + "decimals": 18, + "name": "Gaia Everworld", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x347e430b7cd1235e216be58ffa13394e5009e6e2.png", + "aggregators": [ + "PancakeCoinMarketCap", + "1inch", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 6 + }, + "0x20ee7b720f4e4c4ffcb00c4065cdae55271aecca": { + "address": "0x20ee7b720f4e4c4ffcb00c4065cdae55271aecca", + "symbol": "NFT", + "decimals": 6, + "name": "APENFT", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x20ee7b720f4e4c4ffcb00c4065cdae55271aecca.png", + "aggregators": [ + "PancakeExtended", + "Socket", + "Rubic", + "Squid", + "Rango", + "Sonarwatch" + ], + "occurrences": 6 + }, + "0xaaa9214f675316182eaa21c85f0ca99160cc3aaa": { + "address": "0xaaa9214f675316182eaa21c85f0ca99160cc3aaa", + "symbol": "QANX", + "decimals": 18, + "name": "QANplatform", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xaaa9214f675316182eaa21c85f0ca99160cc3aaa.png", + "aggregators": [ + "PancakeCoinMarketCap", + "Socket", + "Rubic", + "Squid", + "Rango", + "Sonarwatch" + ], + "occurrences": 6 + }, + "0x371c7ec6d8039ff7933a2aa28eb827ffe1f52f07": { + "address": "0x371c7ec6d8039ff7933a2aa28eb827ffe1f52f07", + "symbol": "JOE", + "decimals": 18, + "name": "JOE", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x371c7ec6d8039ff7933a2aa28eb827ffe1f52f07.png", + "aggregators": [ + "PancakeCoinMarketCap", + "LiFi", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 6 + }, + "0xb7e2713cf55cf4b469b5a8421ae6fc0ed18f1467": { + "address": "0xb7e2713cf55cf4b469b5a8421ae6fc0ed18f1467", + "symbol": "OLE", + "decimals": 18, + "name": "OpenLeverage", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xb7e2713cf55cf4b469b5a8421ae6fc0ed18f1467.png", + "aggregators": [ + "PancakeCoinMarketCap", + "LiFi", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 6 + }, + "0x60d01ec2d5e98ac51c8b4cf84dfcce98d527c747": { + "address": "0x60d01ec2d5e98ac51c8b4cf84dfcce98d527c747", + "symbol": "IZI", + "decimals": 18, + "name": "iZUMi Finance", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x60d01ec2d5e98ac51c8b4cf84dfcce98d527c747.png", + "aggregators": [ + "PancakeCoinMarketCap", + "LiFi", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 6 + }, + "0x352cb5e19b12fc216548a2677bd0fce83bae434b": { + "address": "0x352cb5e19b12fc216548a2677bd0fce83bae434b", + "symbol": "BTT", + "decimals": 18, + "name": "BitTorrent", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x352cb5e19b12fc216548a2677bd0fce83bae434b.png", + "aggregators": [ + "PancakeExtended", + "1inch", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 6 + }, + "0x5335e87930b410b8c5bb4d43c3360aca15ec0c8c": { + "address": "0x5335e87930b410b8c5bb4d43c3360aca15ec0c8c", + "symbol": "USDT+", + "decimals": 18, + "name": "Overnight.fi USDT+", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x5335e87930b410b8c5bb4d43c3360aca15ec0c8c.png", + "aggregators": [ + "PancakeCoinMarketCap", + "LiFi", + "Rubic", + "Squid", + "Rango", + "Sonarwatch" + ], + "occurrences": 6 + }, + "0x25d887ce7a35172c62febfd67a1856f20faebb00": { + "address": "0x25d887ce7a35172c62febfd67a1856f20faebb00", + "symbol": "PEPE", + "decimals": 18, + "name": "Pepe", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x25d887ce7a35172c62febfd67a1856f20faebb00.png", + "aggregators": [ + "PancakeExtended", + "1inch", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 6 + }, + "0x8457ca5040ad67fdebbcc8edce889a335bc0fbfb": { + "address": "0x8457ca5040ad67fdebbcc8edce889a335bc0fbfb", + "symbol": "ALT", + "decimals": 18, + "name": "AltLayer", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x8457ca5040ad67fdebbcc8edce889a335bc0fbfb.png", + "aggregators": [ + "PancakeCoinMarketCap", + "LiFi", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 6 + }, + "0x12e34cdf6a031a10fe241864c32fb03a4fdad739": { + "address": "0x12e34cdf6a031a10fe241864c32fb03a4fdad739", + "symbol": "FREE", + "decimals": 18, + "name": "FREEdom coin", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x12e34cdf6a031a10fe241864c32fb03a4fdad739.png", + "aggregators": [ + "PancakeCoinMarketCap", + "1inch", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 6 + }, + "0x193f4a4a6ea24102f49b931deeeb931f6e32405d": { + "address": "0x193f4a4a6ea24102f49b931deeeb931f6e32405d", + "symbol": "TLOS", + "decimals": 18, + "name": "TLOS", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x193f4a4a6ea24102f49b931deeeb931f6e32405d.png", + "aggregators": [ + "PancakeCoinMarketCap", + "LiFi", + "Socket", + "Rubic", + "Squid", + "Rango" + ], + "occurrences": 6 + }, + "0x71de20e0c4616e7fcbfdd3f875d568492cbe4739": { + "address": "0x71de20e0c4616e7fcbfdd3f875d568492cbe4739", + "symbol": "SWINGBY", + "decimals": 18, + "name": "Swingby", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x71de20e0c4616e7fcbfdd3f875d568492cbe4739.png", + "aggregators": [ + "PancakeExtended", + "LiFi", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 6 + }, + "0x7af173f350d916358af3e218bdf2178494beb748": { + "address": "0x7af173f350d916358af3e218bdf2178494beb748", + "symbol": "TRADE", + "decimals": 18, + "name": "Unitrade", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x7af173f350d916358af3e218bdf2178494beb748.png", + "aggregators": [ + "PancakeExtended", + "LiFi", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 6 + }, + "0xe05a08226c49b636acf99c40da8dc6af83ce5bb3": { + "address": "0xe05a08226c49b636acf99c40da8dc6af83ce5bb3", + "symbol": "ANKRETH", + "decimals": 18, + "name": "Ankr Staked ETH", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xe05a08226c49b636acf99c40da8dc6af83ce5bb3.png", + "aggregators": [ + "PancakeExtended", + "LiFi", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 6 + }, + "0x7e35d0e9180bf3a1fc47b0d110be7a21a10b41fe": { + "address": "0x7e35d0e9180bf3a1fc47b0d110be7a21a10b41fe", + "symbol": "OVR", + "decimals": 18, + "name": "Ovr", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x7e35d0e9180bf3a1fc47b0d110be7a21a10b41fe.png", + "aggregators": [ + "PancakeCoinMarketCap", + "Socket", + "Rubic", + "Squid", + "Rango", + "Sonarwatch" + ], + "occurrences": 6 + }, + "0xc6dddb5bc6e61e0841c54f3e723ae1f3a807260b": { + "address": "0xc6dddb5bc6e61e0841c54f3e723ae1f3a807260b", + "symbol": "URUS", + "decimals": 18, + "name": "Aurox", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xc6dddb5bc6e61e0841c54f3e723ae1f3a807260b.png", + "aggregators": [ + "PancakeCoinMarketCap", + "1inch", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 6 + }, + "0xdae6c2a48bfaa66b43815c5548b10800919c993e": { + "address": "0xdae6c2a48bfaa66b43815c5548b10800919c993e", + "symbol": "KTN", + "decimals": 18, + "name": "Kattana", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xdae6c2a48bfaa66b43815c5548b10800919c993e.png", + "aggregators": [ + "PancakeExtended", + "LiFi", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 6 + }, + "0x582c12b30f85162fa393e5dbe2573f9f601f9d91": { + "address": "0x582c12b30f85162fa393e5dbe2573f9f601f9d91", + "symbol": "XMT", + "decimals": 18, + "name": "MetalSwap", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x582c12b30f85162fa393e5dbe2573f9f601f9d91.png", + "aggregators": [ + "PancakeCoinMarketCap", + "LiFi", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 6 + }, + "0x3cd55356433c89e50dc51ab07ee0fa0a95623d53": { + "address": "0x3cd55356433c89e50dc51ab07ee0fa0a95623d53", + "symbol": "SFRXETH", + "decimals": 18, + "name": "Staked Frax Ether", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x3cd55356433c89e50dc51ab07ee0fa0a95623d53.png", + "aggregators": [ + "PancakeCoinMarketCap", + "LiFi", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 6 + }, + "0xd691d9a68c887bdf34da8c36f63487333acfd103": { + "address": "0xd691d9a68c887bdf34da8c36f63487333acfd103", + "symbol": "MAV", + "decimals": 18, + "name": "Maverick Protocol", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xd691d9a68c887bdf34da8c36f63487333acfd103.png", + "aggregators": [ + "PancakeCoinMarketCap", + "LiFi", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 6 + }, + "0x11cd72f7a4b699c67f225ca8abb20bc9f8db90c7": { + "address": "0x11cd72f7a4b699c67f225ca8abb20bc9f8db90c7", + "symbol": "OSAK", + "decimals": 18, + "name": "Osaka Protocol", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x11cd72f7a4b699c67f225ca8abb20bc9f8db90c7.png", + "aggregators": [ + "PancakeExtended", + "Socket", + "Rubic", + "Rango", + "Sonarwatch", + "SushiSwap" + ], + "occurrences": 6 + }, + "0x80137510979822322193fc997d400d5a6c747bf7": { + "address": "0x80137510979822322193fc997d400d5a6c747bf7", + "symbol": "STONE", + "decimals": 18, + "name": "StakeStone ETH", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x80137510979822322193fc997d400d5a6c747bf7.png", + "aggregators": [ + "PancakeExtended", + "LiFi", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 6 + }, + "0x747d74db20cc422f39ab54edb2a3ce21f3c98af1": { + "address": "0x747d74db20cc422f39ab54edb2a3ce21f3c98af1", + "symbol": "CGU", + "decimals": 8, + "name": "Crypto Global United", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x747d74db20cc422f39ab54edb2a3ce21f3c98af1.png", + "aggregators": [ + "PancakeCoinMarketCap", + "1inch", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 6 + }, + "0x67d66e8ec1fd25d98b3ccd3b19b7dc4b4b7fc493": { + "address": "0x67d66e8ec1fd25d98b3ccd3b19b7dc4b4b7fc493", + "symbol": "FEED", + "decimals": 18, + "name": "Feeder Finance", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x67d66e8ec1fd25d98b3ccd3b19b7dc4b4b7fc493.png", + "aggregators": [ + "PancakeCoinMarketCap", + "1inch", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 6 + }, + "0x85c128ee1feeb39a59490c720a9c563554b51d33": { + "address": "0x85c128ee1feeb39a59490c720a9c563554b51d33", + "symbol": "KEY", + "decimals": 18, + "name": "MoMo Key", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x85c128ee1feeb39a59490c720a9c563554b51d33.png", + "aggregators": [ + "PancakeCoinMarketCap", + "1inch", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 6 + }, + "0xbc194e6f748a222754c3e8b9946922c09e7d4e91": { + "address": "0xbc194e6f748a222754c3e8b9946922c09e7d4e91", + "symbol": "LEV", + "decimals": 18, + "name": "Lever Network", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xbc194e6f748a222754c3e8b9946922c09e7d4e91.png", + "aggregators": [ + "PancakeCoinMarketCap", + "LiFi", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 6 + }, + "0x5d684adaf3fcfe9cfb5cede3abf02f0cdd1012e3": { + "address": "0x5d684adaf3fcfe9cfb5cede3abf02f0cdd1012e3", + "symbol": "LIEN", + "decimals": 8, + "name": "Lien", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x5d684adaf3fcfe9cfb5cede3abf02f0cdd1012e3.png", + "aggregators": [ + "PancakeExtended", + "LiFi", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 6 + }, + "0xac83271abb4ec95386f08ad2b904a46c61777cef": { + "address": "0xac83271abb4ec95386f08ad2b904a46c61777cef", + "symbol": "NFTD", + "decimals": 18, + "name": "NFTrade", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xac83271abb4ec95386f08ad2b904a46c61777cef.png", + "aggregators": [ + "PancakeCoinMarketCap", + "1inch", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 6 + }, + "0x4a68c250486a116dc8d6a0c5b0677de07cc09c5d": { + "address": "0x4a68c250486a116dc8d6a0c5b0677de07cc09c5d", + "symbol": "POODL", + "decimals": 9, + "name": "Poodl", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x4a68c250486a116dc8d6a0c5b0677de07cc09c5d.png", + "aggregators": [ + "PancakeCoinMarketCap", + "1inch", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 6 + }, + "0xace3574b8b054e074473a9bd002e5dc6dd3dff1b": { + "address": "0xace3574b8b054e074473a9bd002e5dc6dd3dff1b", + "symbol": "RBX", + "decimals": 18, + "name": "RBX", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xace3574b8b054e074473a9bd002e5dc6dd3dff1b.png", + "aggregators": [ + "PancakeCoinMarketCap", + "1inch", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 6 + }, + "0x31d0a7ada4d4c131eb612db48861211f63e57610": { + "address": "0x31d0a7ada4d4c131eb612db48861211f63e57610", + "symbol": "START", + "decimals": 18, + "name": "Starter.xyz", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x31d0a7ada4d4c131eb612db48861211f63e57610.png", + "aggregators": [ + "PancakeCoinMarketCap", + "LiFi", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 6 + }, + "0xe8670901e86818745b28c8b30b17986958fce8cc": { + "address": "0xe8670901e86818745b28c8b30b17986958fce8cc", + "symbol": "XCT", + "decimals": 6, + "name": "Citadel.one", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xe8670901e86818745b28c8b30b17986958fce8cc.png", + "aggregators": [ + "PancakeCoinMarketCap", + "1inch", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 6 + }, + "0x8cd6e29d3686d24d3c2018cee54621ea0f89313b": { + "address": "0x8cd6e29d3686d24d3c2018cee54621ea0f89313b", + "symbol": "NULS", + "decimals": 8, + "name": "Nuls", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x8cd6e29d3686d24d3c2018cee54621ea0f89313b.png", + "aggregators": [ + "PancakeExtended", + "LiFi", + "Socket", + "Rubic", + "Rango", + "SushiSwap" + ], + "occurrences": 6 + }, + "0xdff8cb622790b7f92686c722b02cab55592f152c": { + "address": "0xdff8cb622790b7f92686c722b02cab55592f152c", + "symbol": "TEN", + "decimals": 18, + "name": "Tenet", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xdff8cb622790b7f92686c722b02cab55592f152c.png", + "aggregators": [ + "PancakeExtended", + "LiFi", + "Socket", + "Rubic", + "Rango", + "SushiSwap" + ], + "occurrences": 6 + }, + "0x82d2f8e02afb160dd5a480a617692e62de9038c4": { + "address": "0x82d2f8e02afb160dd5a480a617692e62de9038c4", + "symbol": "ALEPH", + "decimals": 18, + "name": "Aleph.im", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x82d2f8e02afb160dd5a480a617692e62de9038c4.png", + "aggregators": [ + "PancakeCoinMarketCap", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x935a544bf5816e3a7c13db2efe3009ffda0acda2": { + "address": "0x935a544bf5816e3a7c13db2efe3009ffda0acda2", + "symbol": "BLZ", + "decimals": 18, + "name": "Bluzelle", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x935a544bf5816e3a7c13db2efe3009ffda0acda2.png", + "aggregators": [ + "PancakeCoinMarketCap", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x8da443f84fea710266c8eb6bc34b71702d033ef2": { + "address": "0x8da443f84fea710266c8eb6bc34b71702d033ef2", + "symbol": "CTSI", + "decimals": 18, + "name": "Cartesi", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x8da443f84fea710266c8eb6bc34b71702d033ef2.png", + "aggregators": [ + "PancakeCoinMarketCap", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0xe91a8d2c584ca93c7405f15c22cdfe53c29896e3": { + "address": "0xe91a8d2c584ca93c7405f15c22cdfe53c29896e3", + "symbol": "DEXT", + "decimals": 18, + "name": "DexTools", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xe91a8d2c584ca93c7405f15c22cdfe53c29896e3.png", + "aggregators": [ + "PancakeCoinMarketCap", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x4b5c23cac08a567ecf0c1ffca8372a45a5d33743": { + "address": "0x4b5c23cac08a567ecf0c1ffca8372a45a5d33743", + "symbol": "FARM", + "decimals": 18, + "name": "Harvest Finance", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x4b5c23cac08a567ecf0c1ffca8372a45a5d33743.png", + "aggregators": [ + "PancakeCoinMarketCap", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x7977bf3e7e0c954d12cdca3e013adaf57e0b06e0": { + "address": "0x7977bf3e7e0c954d12cdca3e013adaf57e0b06e0", + "symbol": "OPN", + "decimals": 18, + "name": "OPINION", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x7977bf3e7e0c954d12cdca3e013adaf57e0b06e0.png", + "aggregators": [ + "PancakeExtended", + "Socket", + "Rubic", + "Squid", + "Rango" + ], + "occurrences": 5 + }, + "0xd21d29b38374528675c34936bf7d5dd693d2a577": { + "address": "0xd21d29b38374528675c34936bf7d5dd693d2a577", + "symbol": "PRQ", + "decimals": 18, + "name": "PARSIQ", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xd21d29b38374528675c34936bf7d5dd693d2a577.png", + "aggregators": [ + "PancakeCoinMarketCap", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0xe64e30276c2f826febd3784958d6da7b55dfbad3": { + "address": "0xe64e30276c2f826febd3784958d6da7b55dfbad3", + "symbol": "SWFTC", + "decimals": 18, + "name": "SWFTCOIN", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xe64e30276c2f826febd3784958d6da7b55dfbad3.png", + "aggregators": [ + "PancakeCoinMarketCap", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0xa01000c52b234a92563ba61e5649b7c76e1ba0f3": { + "address": "0xa01000c52b234a92563ba61e5649b7c76e1ba0f3", + "symbol": "ROCKI", + "decimals": 18, + "name": "Rocki", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xa01000c52b234a92563ba61e5649b7c76e1ba0f3.png", + "aggregators": [ + "PancakeCoinGecko", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x2859e4544c4bb03966803b044a93563bd2d0dd4d": { + "address": "0x2859e4544c4bb03966803b044a93563bd2d0dd4d", + "symbol": "SHIB", + "decimals": 18, + "name": "Binance-Peg SHIB", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x2859e4544c4bb03966803b044a93563bd2d0dd4d.png", + "aggregators": [ + "PancakeExtended", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0xbd83010eb60f12112908774998f65761cf9f6f9a": { + "address": "0xbd83010eb60f12112908774998f65761cf9f6f9a", + "symbol": "STARS", + "decimals": 18, + "name": "Mogul Productions [OLD]", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xbd83010eb60f12112908774998f65761cf9f6f9a.png", + "aggregators": [ + "PancakeCoinMarketCap", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x0ccd575bf9378c06f6dca82f8122f570769f00c2": { + "address": "0x0ccd575bf9378c06f6dca82f8122f570769f00c2", + "symbol": "KING", + "decimals": 18, + "name": "CryptoBlades Kingdoms", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x0ccd575bf9378c06f6dca82f8122f570769f00c2.png", + "aggregators": [ + "PancakeCoinMarketCap", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0xb84cbbf09b3ed388a45cd875ebba41a20365e6e7": { + "address": "0xb84cbbf09b3ed388a45cd875ebba41a20365e6e7", + "symbol": "SHIBA", + "decimals": 18, + "name": "BitShiba", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xb84cbbf09b3ed388a45cd875ebba41a20365e6e7.png", + "aggregators": [ + "PancakeCoinMarketCap", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x4374f26f0148a6331905edf4cd33b89d8eed78d1": { + "address": "0x4374f26f0148a6331905edf4cd33b89d8eed78d1", + "symbol": "YOSHI", + "decimals": 18, + "name": "Yoshi.exchange", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x4374f26f0148a6331905edf4cd33b89d8eed78d1.png", + "aggregators": [ + "PancakeCoinMarketCap", + "LiFi", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x638eebe886b0e9e7c6929e69490064a6c94d204d": { + "address": "0x638eebe886b0e9e7c6929e69490064a6c94d204d", + "symbol": "HEC", + "decimals": 9, + "name": "Hector Network", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x638eebe886b0e9e7c6929e69490064a6c94d204d.png", + "aggregators": [ + "PancakeCoinMarketCap", + "Rubic", + "Squid", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0xc3387e4285e9f80a7cfdf02b4ac6cdf2476a528a": { + "address": "0xc3387e4285e9f80a7cfdf02b4ac6cdf2476a528a", + "symbol": "ROCK", + "decimals": 18, + "name": "Bedrock", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xc3387e4285e9f80a7cfdf02b4ac6cdf2476a528a.png", + "aggregators": [ + "PancakeCoinMarketCap", + "1inch", + "Socket", + "Rubic", + "Rango" + ], + "occurrences": 5 + }, + "0xef7a4dd703d074974b7240c74b5ce938aa8983d3": { + "address": "0xef7a4dd703d074974b7240c74b5ce938aa8983d3", + "symbol": "BLAZE", + "decimals": 18, + "name": "StoryFire", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xef7a4dd703d074974b7240c74b5ce938aa8983d3.png", + "aggregators": [ + "PancakeCoinMarketCap", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0xa4c3497b57c8b6d510f3707a1e9694fd791f45fb": { + "address": "0xa4c3497b57c8b6d510f3707a1e9694fd791f45fb", + "symbol": "VON", + "decimals": 18, + "name": "VON", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xa4c3497b57c8b6d510f3707a1e9694fd791f45fb.png", + "aggregators": [ + "PancakeExtended", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x334b3ecb4dca3593bccc3c7ebd1a1c1d1780fbf1": { + "address": "0x334b3ecb4dca3593bccc3c7ebd1a1c1d1780fbf1", + "symbol": "VDAI", + "decimals": 8, + "name": "Venus DAI", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x334b3ecb4dca3593bccc3c7ebd1a1c1d1780fbf1.png", + "aggregators": [ + "PancakeCoinMarketCap", + "1inch", + "Socket", + "Rubic", + "Rango" + ], + "occurrences": 5 + }, + "0xafcc12e4040615e7afe9fb4330eb3d9120acac05": { + "address": "0xafcc12e4040615e7afe9fb4330eb3d9120acac05", + "symbol": "PIRATE", + "decimals": 8, + "name": "PirateCash", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xafcc12e4040615e7afe9fb4330eb3d9120acac05.png", + "aggregators": [ + "PancakeCoinMarketCap", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x9521728bf66a867bc65a93ece4a543d817871eb7": { + "address": "0x9521728bf66a867bc65a93ece4a543d817871eb7", + "symbol": "CREO", + "decimals": 18, + "name": "Creo Engine", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x9521728bf66a867bc65a93ece4a543d817871eb7.png", + "aggregators": [ + "PancakeCoinMarketCap", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0xa177bdd433aea3702beb46652adcfc64248d4ab3": { + "address": "0xa177bdd433aea3702beb46652adcfc64248d4ab3", + "symbol": "PBX", + "decimals": 18, + "name": "Probinex", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xa177bdd433aea3702beb46652adcfc64248d4ab3.png", + "aggregators": [ + "PancakeCoinMarketCap", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0xf3527ef8de265eaa3716fb312c12847bfba66cef": { + "address": "0xf3527ef8de265eaa3716fb312c12847bfba66cef", + "symbol": "USDX", + "decimals": 18, + "name": "Stables Labs USDX", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xf3527ef8de265eaa3716fb312c12847bfba66cef.png", + "aggregators": [ + "PancakeExtended", + "LiFi", + "Socket", + "Rubic", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x0c69199c1562233640e0db5ce2c399a88eb507c7": { + "address": "0x0c69199c1562233640e0db5ce2c399a88eb507c7", + "symbol": "CYS", + "decimals": 18, + "name": "Cysic Token", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x0c69199c1562233640e0db5ce2c399a88eb507c7.png", + "aggregators": [ + "PancakeExtended", + "LiFi", + "Rubic", + "Squid", + "Rango" + ], + "occurrences": 5 + }, + "0xa5c8e1513b6a08334b479fe4d71f1253259469be": { + "address": "0xa5c8e1513b6a08334b479fe4d71f1253259469be", + "symbol": "GUA", + "decimals": 18, + "name": "GUA", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xa5c8e1513b6a08334b479fe4d71f1253259469be.png", + "aggregators": [ + "PancakeExtended", + "LiFi", + "Socket", + "Rubic", + "Rango" + ], + "occurrences": 5 + }, + "0xe4fae3faa8300810c835970b9187c268f55d998f": { + "address": "0xe4fae3faa8300810c835970b9187c268f55d998f", + "symbol": "CATE", + "decimals": 9, + "name": "CateCoin", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xe4fae3faa8300810c835970b9187c268f55d998f.png", + "aggregators": [ + "PancakeCoinMarketCap", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0xc335df7c25b72eec661d5aa32a7c2b7b2a1d1874": { + "address": "0xc335df7c25b72eec661d5aa32a7c2b7b2a1d1874", + "symbol": "ICE", + "decimals": 18, + "name": "Ice Open Network", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xc335df7c25b72eec661d5aa32a7c2b7b2a1d1874.png", + "aggregators": [ + "PancakeCoinMarketCap", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0xf85be0902a16fb87d447021d6e4517b38a15087d": { + "address": "0xf85be0902a16fb87d447021d6e4517b38a15087d", + "symbol": "PALM", + "decimals": 18, + "name": "PalmPay", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xf85be0902a16fb87d447021d6e4517b38a15087d.png", + "aggregators": [ + "PancakeCoinMarketCap", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x4ad663403df2f0e7987bc9c74561687472e1611c": { + "address": "0x4ad663403df2f0e7987bc9c74561687472e1611c", + "symbol": "FROG", + "decimals": 18, + "name": "Frodo the Virtual Samurai", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x4ad663403df2f0e7987bc9c74561687472e1611c.png", + "aggregators": [ + "PancakeExtended", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0xac472d0eed2b8a2f57a6e304ea7ebd8e88d1d36f": { + "address": "0xac472d0eed2b8a2f57a6e304ea7ebd8e88d1d36f", + "symbol": "ANI", + "decimals": 18, + "name": "Anime", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xac472d0eed2b8a2f57a6e304ea7ebd8e88d1d36f.png", + "aggregators": [ + "PancakeCoinMarketCap", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x7e975d85714b11d862c7cffee3c88d565a139eb7": { + "address": "0x7e975d85714b11d862c7cffee3c88d565a139eb7", + "symbol": "BOMB", + "decimals": 18, + "name": "Bombie", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x7e975d85714b11d862c7cffee3c88d565a139eb7.png", + "aggregators": [ + "PancakeExtended", + "1inch", + "Socket", + "Rubic", + "Rango" + ], + "occurrences": 5 + }, + "0xbcb24afb019be7e93ea9c43b7e22bb55d5b7f45d": { + "address": "0xbcb24afb019be7e93ea9c43b7e22bb55d5b7f45d", + "symbol": "BSCS", + "decimals": 18, + "name": "BSCS", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xbcb24afb019be7e93ea9c43b7e22bb55d5b7f45d.png", + "aggregators": [ + "PancakeCoinMarketCap", + "1inch", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0xeb34de0c4b2955ce0ff1526cdf735c9e6d249d09": { + "address": "0xeb34de0c4b2955ce0ff1526cdf735c9e6d249d09", + "symbol": "GBYTE", + "decimals": 18, + "name": "Obyte", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xeb34de0c4b2955ce0ff1526cdf735c9e6d249d09.png", + "aggregators": [ + "PancakeCoinMarketCap", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0xea89199344a492853502a7a699cc4230854451b8": { + "address": "0xea89199344a492853502a7a699cc4230854451b8", + "symbol": "ONI", + "decimals": 18, + "name": "ONINO", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xea89199344a492853502a7a699cc4230854451b8.png", + "aggregators": [ + "PancakeCoinMarketCap", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0xcb5327ed4649548e0d73e70b633cdfd99af6da87": { + "address": "0xcb5327ed4649548e0d73e70b633cdfd99af6da87", + "symbol": "PRIMAL", + "decimals": 18, + "name": "PRIMAL", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xcb5327ed4649548e0d73e70b633cdfd99af6da87.png", + "aggregators": [ + "PancakeExtended", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0xff7d6a96ae471bbcd7713af9cb1feeb16cf56b41": { + "address": "0xff7d6a96ae471bbcd7713af9cb1feeb16cf56b41", + "symbol": "BR", + "decimals": 18, + "name": "Bedrock", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xff7d6a96ae471bbcd7713af9cb1feeb16cf56b41.png", + "aggregators": [ + "PancakeExtended", + "LiFi", + "Socket", + "Rubic", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x0391be54e72f7e001f6bbc331777710b4f2999ef": { + "address": "0x0391be54e72f7e001f6bbc331777710b4f2999ef", + "symbol": "TRAVA", + "decimals": 18, + "name": "Trava Finance", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x0391be54e72f7e001f6bbc331777710b4f2999ef.png", + "aggregators": [ + "PancakeCoinMarketCap", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0xfafb7581a65a1f554616bf780fc8a8acd2ab8c9b": { + "address": "0xfafb7581a65a1f554616bf780fc8a8acd2ab8c9b", + "symbol": "SQUID", + "decimals": 18, + "name": "Squid Game", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xfafb7581a65a1f554616bf780fc8a8acd2ab8c9b.png", + "aggregators": [ + "PancakeCoinMarketCap", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x89af13a10b32f1b2f8d1588f93027f69b6f4e27e": { + "address": "0x89af13a10b32f1b2f8d1588f93027f69b6f4e27e", + "symbol": "GAFI", + "decimals": 18, + "name": "GameFi.org", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x89af13a10b32f1b2f8d1588f93027f69b6f4e27e.png", + "aggregators": [ + "PancakeCoinMarketCap", + "1inch", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x340724464cf51a551106cc6657606ee7d87b28b9": { + "address": "0x340724464cf51a551106cc6657606ee7d87b28b9", + "symbol": "STC", + "decimals": 18, + "name": "Satoshi Island", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x340724464cf51a551106cc6657606ee7d87b28b9.png", + "aggregators": [ + "PancakeCoinMarketCap", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x9d1a7a3191102e9f900faa10540837ba84dcbae7": { + "address": "0x9d1a7a3191102e9f900faa10540837ba84dcbae7", + "symbol": "EURI", + "decimals": 18, + "name": "Eurite", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x9d1a7a3191102e9f900faa10540837ba84dcbae7.png", + "aggregators": [ + "PancakeCoinMarketCap", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x5a726a26edb0df8fd55f03cc30af8a7cea81e78d": { + "address": "0x5a726a26edb0df8fd55f03cc30af8a7cea81e78d", + "symbol": "CWT", + "decimals": 18, + "name": "CrossWallet", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x5a726a26edb0df8fd55f03cc30af8a7cea81e78d.png", + "aggregators": [ + "PancakeCoinMarketCap", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x49f2145d6366099e13b10fbf80646c0f377ee7f6": { + "address": "0x49f2145d6366099e13b10fbf80646c0f377ee7f6", + "symbol": "PORTO", + "decimals": 8, + "name": "FC Porto", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x49f2145d6366099e13b10fbf80646c0f377ee7f6.png", + "aggregators": [ + "PancakeExtended", + "LiFi", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x5b8650cd999b23cf39ab12e3213fbc8709c7f5cb": { + "address": "0x5b8650cd999b23cf39ab12e3213fbc8709c7f5cb", + "symbol": "MAZI", + "decimals": 18, + "name": "MaziMatic", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x5b8650cd999b23cf39ab12e3213fbc8709c7f5cb.png", + "aggregators": [ + "PancakeCoinMarketCap", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x9be61a38725b265bc3eb7bfdf17afdfc9d26c130": { + "address": "0x9be61a38725b265bc3eb7bfdf17afdfc9d26c130", + "symbol": "AT", + "decimals": 18, + "name": "APRO oracle Token", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x9be61a38725b265bc3eb7bfdf17afdfc9d26c130.png", + "aggregators": [ + "PancakeExtended", + "LiFi", + "Socket", + "Rubic", + "Rango" + ], + "occurrences": 5 + }, + "0x73fbd93bfda83b111ddc092aa3a4ca77fd30d380": { + "address": "0x73fbd93bfda83b111ddc092aa3a4ca77fd30d380", + "symbol": "SOPH", + "decimals": 18, + "name": "SophiaVerse", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x73fbd93bfda83b111ddc092aa3a4ca77fd30d380.png", + "aggregators": [ + "PancakeCoinMarketCap", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x5b73a93b4e5e4f1fd27d8b3f8c97d69908b5e284": { + "address": "0x5b73a93b4e5e4f1fd27d8b3f8c97d69908b5e284", + "symbol": "FORM", + "decimals": 18, + "name": "Four", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x5b73a93b4e5e4f1fd27d8b3f8c97d69908b5e284.png", + "aggregators": [ + "PancakeExtended", + "1inch", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0xc17c30e98541188614df99239cabd40280810ca3": { + "address": "0xc17c30e98541188614df99239cabd40280810ca3", + "symbol": "RISE", + "decimals": 18, + "name": "EverRise", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xc17c30e98541188614df99239cabd40280810ca3.png", + "aggregators": [ + "PancakeCoinMarketCap", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0xacf34edcc424128cccc730bf85cdaceebcb3eece": { + "address": "0xacf34edcc424128cccc730bf85cdaceebcb3eece", + "symbol": "VST", + "decimals": 18, + "name": "Voice Street", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xacf34edcc424128cccc730bf85cdaceebcb3eece.png", + "aggregators": [ + "PancakeCoinMarketCap", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0xeca88125a5adbe82614ffc12d0db554e2e2867c8": { + "address": "0xeca88125a5adbe82614ffc12d0db554e2e2867c8", + "symbol": "VUSDC", + "decimals": 8, + "name": "Venus USDC", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xeca88125a5adbe82614ffc12d0db554e2e2867c8.png", + "aggregators": [ + "PancakeCoinMarketCap", + "LiFi", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0xd9483ea7214fcfd89b4fb8f513b544920e315a52": { + "address": "0xd9483ea7214fcfd89b4fb8f513b544920e315a52", + "symbol": "AVA", + "decimals": 18, + "name": "AVA Foundation Bridged AVA (BSC)", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xd9483ea7214fcfd89b4fb8f513b544920e315a52.png", + "aggregators": [ + "PancakeCoinMarketCap", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0xa045e37a0d1dd3a45fefb8803d22457abc0a728a": { + "address": "0xa045e37a0d1dd3a45fefb8803d22457abc0a728a", + "symbol": "GHNY", + "decimals": 18, + "name": "Grizzly Honey", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xa045e37a0d1dd3a45fefb8803d22457abc0a728a.png", + "aggregators": [ + "PancakeCoinMarketCap", + "1inch", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x92aa03137385f18539301349dcfc9ebc923ffb10": { + "address": "0x92aa03137385f18539301349dcfc9ebc923ffb10", + "symbol": "SKYAI", + "decimals": 18, + "name": "SKYAI", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x92aa03137385f18539301349dcfc9ebc923ffb10.png", + "aggregators": [ + "PancakeExtended", + "LiFi", + "Rubic", + "Squid", + "Rango" + ], + "occurrences": 5 + }, + "0xbfea674ce7d16e26e39e3c088810367a708ef94c": { + "address": "0xbfea674ce7d16e26e39e3c088810367a708ef94c", + "symbol": "APRIL", + "decimals": 18, + "name": "April", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xbfea674ce7d16e26e39e3c088810367a708ef94c.png", + "aggregators": [ + "PancakeCoinMarketCap", + "Rubic", + "Squid", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x0e7779e698052f8fe56c415c3818fcf89de9ac6d": { + "address": "0x0e7779e698052f8fe56c415c3818fcf89de9ac6d", + "symbol": "ULTI", + "decimals": 18, + "name": "Ultiverse", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x0e7779e698052f8fe56c415c3818fcf89de9ac6d.png", + "aggregators": [ + "PancakeCoinMarketCap", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x22168882276e5d5e1da694343b41dd7726eeb288": { + "address": "0x22168882276e5d5e1da694343b41dd7726eeb288", + "symbol": "WSB", + "decimals": 18, + "name": "WallStreetBets DApp", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x22168882276e5d5e1da694343b41dd7726eeb288.png", + "aggregators": [ + "PancakeCoinMarketCap", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x77d547256a2cd95f32f67ae0313e450ac200648d": { + "address": "0x77d547256a2cd95f32f67ae0313e450ac200648d", + "symbol": "LAZIO", + "decimals": 8, + "name": "Lazio Fan Token", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x77d547256a2cd95f32f67ae0313e450ac200648d.png", + "aggregators": [ + "PancakeExtended", + "LiFi", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x6bc5abcc56874d7facb90c2c3812cc19aaf9b204": { + "address": "0x6bc5abcc56874d7facb90c2c3812cc19aaf9b204", + "symbol": "RZ", + "decimals": 18, + "name": "RZcoin", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x6bc5abcc56874d7facb90c2c3812cc19aaf9b204.png", + "aggregators": [ + "CoinGecko", + "Rubic", + "Squid", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0xcf3232b85b43bca90e51d38cc06cc8bb8c8a3e36": { + "address": "0xcf3232b85b43bca90e51d38cc06cc8bb8c8a3e36", + "symbol": "BEAT", + "decimals": 18, + "name": "Beat Token", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xcf3232b85b43bca90e51d38cc06cc8bb8c8a3e36.png", + "aggregators": [ + "PancakeExtended", + "LiFi", + "Socket", + "Rubic", + "Rango" + ], + "occurrences": 5 + }, + "0xa9d75cc3405f0450955050c520843f99aff8749d": { + "address": "0xa9d75cc3405f0450955050c520843f99aff8749d", + "symbol": "RENA", + "decimals": 18, + "name": "Warena", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xa9d75cc3405f0450955050c520843f99aff8749d.png", + "aggregators": [ + "PancakeCoinMarketCap", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x0b15ddf19d47e6a86a56148fb4afffc6929bcb89": { + "address": "0x0b15ddf19d47e6a86a56148fb4afffc6929bcb89", + "symbol": "IDIA", + "decimals": 18, + "name": "Impossible Finance Launchpad", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x0b15ddf19d47e6a86a56148fb4afffc6929bcb89.png", + "aggregators": [ + "PancakeExtended", + "Rubic", + "Squid", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x9e1170c12fddd3b00fec42ddf4c942565d9be577": { + "address": "0x9e1170c12fddd3b00fec42ddf4c942565d9be577", + "symbol": "SPACE", + "decimals": 18, + "name": "Space Token", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x9e1170c12fddd3b00fec42ddf4c942565d9be577.png", + "aggregators": [ + "PancakeCoinMarketCap", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x1f1c90aeb2fd13ea972f0a71e35c0753848e3db0": { + "address": "0x1f1c90aeb2fd13ea972f0a71e35c0753848e3db0", + "symbol": "CHEEL", + "decimals": 18, + "name": "Cheelee", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x1f1c90aeb2fd13ea972f0a71e35c0753848e3db0.png", + "aggregators": [ + "PancakeCoinMarketCap", + "Rubic", + "Squid", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x36f5675029e129b5fcabb29ec750ed268520acf7": { + "address": "0x36f5675029e129b5fcabb29ec750ed268520acf7", + "symbol": "BADAI", + "decimals": 18, + "name": "BAD Coin", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x36f5675029e129b5fcabb29ec750ed268520acf7.png", + "aggregators": [ + "CoinGecko", + "1inch", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0xe55d97a97ae6a17706ee281486e98a84095d8aaf": { + "address": "0xe55d97a97ae6a17706ee281486e98a84095d8aaf", + "symbol": "AIPAD", + "decimals": 18, + "name": "AIPad", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xe55d97a97ae6a17706ee281486e98a84095d8aaf.png", + "aggregators": [ + "PancakeCoinMarketCap", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x07e551e31a793e20dc18494ff6b03095a8f8ee36": { + "address": "0x07e551e31a793e20dc18494ff6b03095a8f8ee36", + "symbol": "QMALL", + "decimals": 18, + "name": "Qmall", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x07e551e31a793e20dc18494ff6b03095a8f8ee36.png", + "aggregators": [ + "PancakeCoinMarketCap", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x5b6bf0c7f989de824677cfbd507d9635965e9cd3": { + "address": "0x5b6bf0c7f989de824677cfbd507d9635965e9cd3", + "symbol": "GMM", + "decimals": 18, + "name": "Gamium", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x5b6bf0c7f989de824677cfbd507d9635965e9cd3.png", + "aggregators": [ + "PancakeCoinMarketCap", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x38a001e57430f781404fff7a81de4bd67d1f6117": { + "address": "0x38a001e57430f781404fff7a81de4bd67d1f6117", + "symbol": "SOLVBTC.JUP", + "decimals": 18, + "name": "Solv Protocol SolvBTC Jupiter", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x38a001e57430f781404fff7a81de4bd67d1f6117.png", + "aggregators": [ + "CoinGecko", + "LiFi", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x783c3f003f172c6ac5ac700218a357d2d66ee2a2": { + "address": "0x783c3f003f172c6ac5ac700218a357d2d66ee2a2", + "symbol": "B2", + "decimals": 18, + "name": "BSquared Network", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x783c3f003f172c6ac5ac700218a357d2d66ee2a2.png", + "aggregators": [ + "PancakeExtended", + "LiFi", + "Rubic", + "Squid", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0xb60501346240fcde1615de56ea9fff1ac1da5673": { + "address": "0xb60501346240fcde1615de56ea9fff1ac1da5673", + "symbol": "BSL", + "decimals": 18, + "name": "BSClaunch", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xb60501346240fcde1615de56ea9fff1ac1da5673.png", + "aggregators": [ + "PancakeCoinMarketCap", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x6d5ad1592ed9d6d1df9b93c793ab759573ed6714": { + "address": "0x6d5ad1592ed9d6d1df9b93c793ab759573ed6714", + "symbol": "BROCCOLI", + "decimals": 18, + "name": "CZ'S Dog", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x6d5ad1592ed9d6d1df9b93c793ab759573ed6714.png", + "aggregators": [ + "PancakeExtended", + "1inch", + "LiFi", + "Rubic", + "Squid" + ], + "occurrences": 5 + }, + "0x037838b556d9c9d654148a284682c55bb5f56ef4": { + "address": "0x037838b556d9c9d654148a284682c55bb5f56ef4", + "symbol": "LIGHT", + "decimals": 18, + "name": "Lightning", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x037838b556d9c9d654148a284682c55bb5f56ef4.png", + "aggregators": [ + "PancakeExtended", + "LiFi", + "Rubic", + "Squid", + "Rango" + ], + "occurrences": 5 + }, + "0x7e52a123ed6db6ac872a875552935fbbd2544c86": { + "address": "0x7e52a123ed6db6ac872a875552935fbbd2544c86", + "symbol": "SYL", + "decimals": 6, + "name": "myDid", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x7e52a123ed6db6ac872a875552935fbbd2544c86.png", + "aggregators": [ + "PancakeCoinMarketCap", + "1inch", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0xe2604c9561d490624aa35e156e65e590eb749519": { + "address": "0xe2604c9561d490624aa35e156e65e590eb749519", + "symbol": "GM", + "decimals": 18, + "name": "GoldMiner", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xe2604c9561d490624aa35e156e65e590eb749519.png", + "aggregators": [ + "PancakeExtended", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x000351d035d8bbf2aa3131ebfecd66fb21836f6c": { + "address": "0x000351d035d8bbf2aa3131ebfecd66fb21836f6c", + "symbol": "SCOTTY", + "decimals": 18, + "name": "Scotty Beam", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x000351d035d8bbf2aa3131ebfecd66fb21836f6c.png", + "aggregators": [ + "PancakeCoinMarketCap", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0xcc7a91413769891de2e9ebbfc96d2eb1874b5760": { + "address": "0xcc7a91413769891de2e9ebbfc96d2eb1874b5760", + "symbol": "GOV", + "decimals": 18, + "name": "GovWorld", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xcc7a91413769891de2e9ebbfc96d2eb1874b5760.png", + "aggregators": [ + "PancakeCoinMarketCap", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x6dc3d0d6ec970bf5522611d8eff127145d02b675": { + "address": "0x6dc3d0d6ec970bf5522611d8eff127145d02b675", + "symbol": "RVL", + "decimals": 18, + "name": "Revolotto", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x6dc3d0d6ec970bf5522611d8eff127145d02b675.png", + "aggregators": [ + "PancakeCoinMarketCap", + "1inch", + "Socket", + "Rubic", + "Rango" + ], + "occurrences": 5 + }, + "0x9e711221b34a2d4b8f552bd5f4a6c4e7934920f7": { + "address": "0x9e711221b34a2d4b8f552bd5f4a6c4e7934920f7", + "symbol": "ORT", + "decimals": 8, + "name": "Okratech", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x9e711221b34a2d4b8f552bd5f4a6c4e7934920f7.png", + "aggregators": [ + "PancakeCoinMarketCap", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x12fc07081fab7de60987cad8e8dc407b606fb2f8": { + "address": "0x12fc07081fab7de60987cad8e8dc407b606fb2f8", + "symbol": "DARK", + "decimals": 8, + "name": "Dark Frontiers", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x12fc07081fab7de60987cad8e8dc407b606fb2f8.png", + "aggregators": [ + "PancakeCoinMarketCap", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x29abc4d03d133d8fd1f1c54318428353ce08727e": { + "address": "0x29abc4d03d133d8fd1f1c54318428353ce08727e", + "symbol": "KSWAP", + "decimals": 18, + "name": "KyotoSwap", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x29abc4d03d133d8fd1f1c54318428353ce08727e.png", + "aggregators": [ + "PancakeCoinMarketCap", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x2749c9f2f8568d389bbf61ed77784a43c3cd3e19": { + "address": "0x2749c9f2f8568d389bbf61ed77784a43c3cd3e19", + "symbol": "LIQ", + "decimals": 18, + "name": "Liquidus", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x2749c9f2f8568d389bbf61ed77784a43c3cd3e19.png", + "aggregators": [ + "PancakeCoinMarketCap", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x2134f3a7b18ae4161fbab6eccca7497e17a6777b": { + "address": "0x2134f3a7b18ae4161fbab6eccca7497e17a6777b", + "symbol": "MIR", + "decimals": 18, + "name": "Mir Token", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x2134f3a7b18ae4161fbab6eccca7497e17a6777b.png", + "aggregators": [ + "PancakeCoinMarketCap", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x0c9ad20802e89bea858ae2e8594843fafa887cb3": { + "address": "0x0c9ad20802e89bea858ae2e8594843fafa887cb3", + "symbol": "GROW", + "decimals": 18, + "name": "Grow Token", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x0c9ad20802e89bea858ae2e8594843fafa887cb3.png", + "aggregators": [ + "PancakeCoinMarketCap", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x1fd448d0361c3212961a70930f3129a45f425b68": { + "address": "0x1fd448d0361c3212961a70930f3129a45f425b68", + "symbol": "MARS", + "decimals": 18, + "name": "Marscoin", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x1fd448d0361c3212961a70930f3129a45f425b68.png", + "aggregators": [ + "CoinGecko", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0xa18bbdcd86e4178d10ecd9316667cfe4c4aa8717": { + "address": "0xa18bbdcd86e4178d10ecd9316667cfe4c4aa8717", + "symbol": "BNBXBT", + "decimals": 18, + "name": "BNBXBT", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xa18bbdcd86e4178d10ecd9316667cfe4c4aa8717.png", + "aggregators": [ + "CoinGecko", + "1inch", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0xb85d4c45383acfcfd9869645275349c9c3f28edb": { + "address": "0xb85d4c45383acfcfd9869645275349c9c3f28edb", + "symbol": "BAC", + "decimals": 18, + "name": "Bacon Protocol", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xb85d4c45383acfcfd9869645275349c9c3f28edb.png", + "aggregators": [ + "CoinGecko", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x7aaaa5b10f97321345acd76945083141be1c5631": { + "address": "0x7aaaa5b10f97321345acd76945083141be1c5631", + "symbol": "COW", + "decimals": 18, + "name": "Cowcoin", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x7aaaa5b10f97321345acd76945083141be1c5631.png", + "aggregators": [ + "CoinGecko", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x32b407ee915432be6d3f168bc1eff2a6f8b2034c": { + "address": "0x32b407ee915432be6d3f168bc1eff2a6f8b2034c", + "symbol": "HODL", + "decimals": 18, + "name": "HODL", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x32b407ee915432be6d3f168bc1eff2a6f8b2034c.png", + "aggregators": ["Metamask", "LiFi", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 5 + }, + "0xd06716e1ff2e492cc5034c2e81805562dd3b45fa": { + "address": "0xd06716e1ff2e492cc5034c2e81805562dd3b45fa", + "symbol": "MGP", + "decimals": 18, + "name": "Magpie", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xd06716e1ff2e492cc5034c2e81805562dd3b45fa.png", + "aggregators": [ + "PancakeExtended", + "LiFi", + "Rubic", + "Squid", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x68449870eea84453044bd430822827e21fd8f101": { + "address": "0x68449870eea84453044bd430822827e21fd8f101", + "symbol": "ZAI", + "decimals": 18, + "name": "Zaibot", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x68449870eea84453044bd430822827e21fd8f101.png", + "aggregators": [ + "PancakeCoinMarketCap", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x3c45a24d36ab6fc1925533c1f57bc7e1b6fba8a4": { + "address": "0x3c45a24d36ab6fc1925533c1f57bc7e1b6fba8a4", + "symbol": "ROOM", + "decimals": 18, + "name": "OptionRoom", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x3c45a24d36ab6fc1925533c1f57bc7e1b6fba8a4.png", + "aggregators": [ + "PancakeCoinMarketCap", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0xb0e1fc65c1a741b4662b813eb787d369b8614af1": { + "address": "0xb0e1fc65c1a741b4662b813eb787d369b8614af1", + "symbol": "IF", + "decimals": 18, + "name": "Impossible Finance", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xb0e1fc65c1a741b4662b813eb787d369b8614af1.png", + "aggregators": [ + "PancakeExtended", + "LiFi", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x151b1e2635a717bcdc836ecd6fbb62b674fe3e1d": { + "address": "0x151b1e2635a717bcdc836ecd6fbb62b674fe3e1d", + "symbol": "VXVS", + "decimals": 8, + "name": "Venus XVS", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x151b1e2635a717bcdc836ecd6fbb62b674fe3e1d.png", + "aggregators": [ + "PancakeCoinMarketCap", + "1inch", + "Socket", + "Rubic", + "Rango" + ], + "occurrences": 5 + }, + "0xbbcf57177d8752b21d080bf30a06ce20ad6333f8": { + "address": "0xbbcf57177d8752b21d080bf30a06ce20ad6333f8", + "symbol": "ZAM", + "decimals": 18, + "name": "Zam.io", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xbbcf57177d8752b21d080bf30a06ce20ad6333f8.png", + "aggregators": [ + "PancakeCoinMarketCap", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0xbda011d7f8ec00f66c1923b049b94c67d148d8b2": { + "address": "0xbda011d7f8ec00f66c1923b049b94c67d148d8b2", + "symbol": "AI", + "decimals": 18, + "name": "Sleepless AI", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xbda011d7f8ec00f66c1923b049b94c67d148d8b2.png", + "aggregators": [ + "PancakeCoinMarketCap", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0xc5326b32e8baef125acd68f8bc646fd646104f1c": { + "address": "0xc5326b32e8baef125acd68f8bc646fd646104f1c", + "symbol": "ZAP", + "decimals": 18, + "name": "Zap", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xc5326b32e8baef125acd68f8bc646fd646104f1c.png", + "aggregators": [ + "PancakeCoinMarketCap", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x298eff8af1ecebbb2c034eaa3b9a5d0cc56c59cd": { + "address": "0x298eff8af1ecebbb2c034eaa3b9a5d0cc56c59cd", + "symbol": "SOUL", + "decimals": 8, + "name": "Phantasma", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x298eff8af1ecebbb2c034eaa3b9a5d0cc56c59cd.png", + "aggregators": [ + "PancakeCoinMarketCap", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x8fc4532be3003fb5a3a2f9afc7e95b3bfbd5faab": { + "address": "0x8fc4532be3003fb5a3a2f9afc7e95b3bfbd5faab", + "symbol": "ARCONA", + "decimals": 18, + "name": "Arcona", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x8fc4532be3003fb5a3a2f9afc7e95b3bfbd5faab.png", + "aggregators": [ + "PancakeCoinMarketCap", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x968f6f898a6df937fc1859b323ac2f14643e3fed": { + "address": "0x968f6f898a6df937fc1859b323ac2f14643e3fed", + "symbol": "NWC", + "decimals": 18, + "name": "Numerico", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x968f6f898a6df937fc1859b323ac2f14643e3fed.png", + "aggregators": [ + "PancakeCoinMarketCap", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x9b17baadf0f21f03e35249e0e59723f34994f806": { + "address": "0x9b17baadf0f21f03e35249e0e59723f34994f806", + "symbol": "SURE", + "decimals": 18, + "name": "inSure DeFi", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x9b17baadf0f21f03e35249e0e59723f34994f806.png", + "aggregators": [ + "PancakeCoinMarketCap", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x8e17ed70334c87ece574c9d537bc153d8609e2a3": { + "address": "0x8e17ed70334c87ece574c9d537bc153d8609e2a3", + "symbol": "WRX", + "decimals": 8, + "name": "WazirX", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x8e17ed70334c87ece574c9d537bc153d8609e2a3.png", + "aggregators": [ + "PancakeCoinMarketCap", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x9ba4c78b048eeed69f4ed3cfddeda7b51baf7ca8": { + "address": "0x9ba4c78b048eeed69f4ed3cfddeda7b51baf7ca8", + "symbol": "GS", + "decimals": 18, + "name": "Genesis Shards", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x9ba4c78b048eeed69f4ed3cfddeda7b51baf7ca8.png", + "aggregators": [ + "PancakeCoinMarketCap", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x4b6000f9163de2e3f0a01ec37e06e1469dbbce9d": { + "address": "0x4b6000f9163de2e3f0a01ec37e06e1469dbbce9d", + "symbol": "KEYFI", + "decimals": 18, + "name": "KeyFi", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x4b6000f9163de2e3f0a01ec37e06e1469dbbce9d.png", + "aggregators": [ + "PancakeCoinMarketCap", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x8aa688ab789d1848d131c65d98ceaa8875d97ef1": { + "address": "0x8aa688ab789d1848d131c65d98ceaa8875d97ef1", + "symbol": "MTV", + "decimals": 18, + "name": "MultiVAC", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x8aa688ab789d1848d131c65d98ceaa8875d97ef1.png", + "aggregators": [ + "PancakeCoinMarketCap", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0xe4ca1f75eca6214393fce1c1b316c237664eaa8e": { + "address": "0xe4ca1f75eca6214393fce1c1b316c237664eaa8e", + "symbol": "ORN", + "decimals": 8, + "name": "Orion", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xe4ca1f75eca6214393fce1c1b316c237664eaa8e.png", + "aggregators": [ + "PancakeCoinMarketCap", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x6a545f9c64d8f7b957d8d2e6410b52095a9e6c29": { + "address": "0x6a545f9c64d8f7b957d8d2e6410b52095a9e6c29", + "symbol": "CFI", + "decimals": 18, + "name": "CyberFi", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x6a545f9c64d8f7b957d8d2e6410b52095a9e6c29.png", + "aggregators": [ + "PancakeCoinMarketCap", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0xbd7b8e4de08d9b01938f7ff2058f110ee1e0e8d4": { + "address": "0xbd7b8e4de08d9b01938f7ff2058f110ee1e0e8d4", + "symbol": "GHX", + "decimals": 18, + "name": "GamerCoin", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xbd7b8e4de08d9b01938f7ff2058f110ee1e0e8d4.png", + "aggregators": [ + "PancakeCoinMarketCap", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x872d068c25511be88c1f5990c53eeffcdf46c9b4": { + "address": "0x872d068c25511be88c1f5990c53eeffcdf46c9b4", + "symbol": "VENT", + "decimals": 18, + "name": "Vent Finance", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x872d068c25511be88c1f5990c53eeffcdf46c9b4.png", + "aggregators": [ + "PancakeCoinMarketCap", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x0e28bc9b03971e95acf9ae1326e51ecf9c55b498": { + "address": "0x0e28bc9b03971e95acf9ae1326e51ecf9c55b498", + "symbol": "BKN", + "decimals": 18, + "name": "Brickken", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x0e28bc9b03971e95acf9ae1326e51ecf9c55b498.png", + "aggregators": [ + "PancakeCoinMarketCap", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x9cd9c5a44cb8fab39b2ee3556f5c439e65e4fddd": { + "address": "0x9cd9c5a44cb8fab39b2ee3556f5c439e65e4fddd", + "symbol": "MARS4", + "decimals": 18, + "name": "MARS4", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x9cd9c5a44cb8fab39b2ee3556f5c439e65e4fddd.png", + "aggregators": [ + "PancakeCoinMarketCap", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x66cafcf6c32315623c7ffd3f2ff690aa36ebed38": { + "address": "0x66cafcf6c32315623c7ffd3f2ff690aa36ebed38", + "symbol": "BRKL", + "decimals": 18, + "name": "Brokoli", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x66cafcf6c32315623c7ffd3f2ff690aa36ebed38.png", + "aggregators": [ + "PancakeCoinMarketCap", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0xde5ed76e7c05ec5e4572cfc88d1acea165109e44": { + "address": "0xde5ed76e7c05ec5e4572cfc88d1acea165109e44", + "symbol": "DEUS", + "decimals": 18, + "name": "DEUS Finance", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xde5ed76e7c05ec5e4572cfc88d1acea165109e44.png", + "aggregators": [ + "PancakeCoinMarketCap", + "Rubic", + "Squid", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0xb72842d6f5fedf91d22d56202802bb9a79c6322e": { + "address": "0xb72842d6f5fedf91d22d56202802bb9a79c6322e", + "symbol": "MOMA", + "decimals": 18, + "name": "Mochi Market", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xb72842d6f5fedf91d22d56202802bb9a79c6322e.png", + "aggregators": [ + "PancakeCoinMarketCap", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x668048e70284107a6afab1711f28d88df3e72948": { + "address": "0x668048e70284107a6afab1711f28d88df3e72948", + "symbol": "CLS", + "decimals": 18, + "name": "Coldstack", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x668048e70284107a6afab1711f28d88df3e72948.png", + "aggregators": [ + "PancakeCoinMarketCap", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x47c9bcef4fe2dbcdf3abf508f147f1bbe8d4fef2": { + "address": "0x47c9bcef4fe2dbcdf3abf508f147f1bbe8d4fef2", + "symbol": "FLURRY", + "decimals": 18, + "name": "Flurry Finance", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x47c9bcef4fe2dbcdf3abf508f147f1bbe8d4fef2.png", + "aggregators": [ + "PancakeCoinMarketCap", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x686318000d982bc8dcc1cdcf8ffd22322f0960ed": { + "address": "0x686318000d982bc8dcc1cdcf8ffd22322f0960ed", + "symbol": "OPUL", + "decimals": 18, + "name": "Opulous", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x686318000d982bc8dcc1cdcf8ffd22322f0960ed.png", + "aggregators": [ + "PancakeCoinMarketCap", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x68784ffaa6ff05e3e04575df77960dc1d9f42b4a": { + "address": "0x68784ffaa6ff05e3e04575df77960dc1d9f42b4a", + "symbol": "ABR", + "decimals": 18, + "name": "Allbridge", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x68784ffaa6ff05e3e04575df77960dc1d9f42b4a.png", + "aggregators": [ + "PancakeCoinMarketCap", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x5c4bcc4dbaeabc7659f6435bce4e659314ebad87": { + "address": "0x5c4bcc4dbaeabc7659f6435bce4e659314ebad87", + "symbol": "NTX", + "decimals": 6, + "name": "NuNet", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x5c4bcc4dbaeabc7659f6435bce4e659314ebad87.png", + "aggregators": [ + "PancakeCoinMarketCap", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x6bcd897d4ba5675f860c7418ddc034f6c5610114": { + "address": "0x6bcd897d4ba5675f860c7418ddc034f6c5610114", + "symbol": "RAIN", + "decimals": 18, + "name": "Rainmaker Games", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x6bcd897d4ba5675f860c7418ddc034f6c5610114.png", + "aggregators": [ + "PancakeCoinMarketCap", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x738d96caf7096659db4c1afbf1e1bdfd281f388c": { + "address": "0x738d96caf7096659db4c1afbf1e1bdfd281f388c", + "symbol": "ANKRMATIC", + "decimals": 18, + "name": "Ankr Staked MATIC", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x738d96caf7096659db4c1afbf1e1bdfd281f388c.png", + "aggregators": [ + "PancakeCoinMarketCap", + "LiFi", + "Socket", + "Rubic", + "Rango" + ], + "occurrences": 5 + }, + "0x4ef285c8cbe52267c022c39da98b97ca4b7e2ff9": { + "address": "0x4ef285c8cbe52267c022c39da98b97ca4b7e2ff9", + "symbol": "ORE", + "decimals": 18, + "name": "pTokens ORE [via ChainPort.io]", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x4ef285c8cbe52267c022c39da98b97ca4b7e2ff9.png", + "aggregators": [ + "PancakeCoinMarketCap", + "1inch", + "Socket", + "Rubic", + "Rango" + ], + "occurrences": 5 + }, + "0xcafe001067cdef266afb7eb5a286dcfd277f3de5": { + "address": "0xcafe001067cdef266afb7eb5a286dcfd277f3de5", + "symbol": "PSP", + "decimals": 18, + "name": "ParaSwap", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xcafe001067cdef266afb7eb5a286dcfd277f3de5.png", + "aggregators": [ + "PancakeCoinMarketCap", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x0565805ca3a4105faee51983b0bd8ffb5ce1455c": { + "address": "0x0565805ca3a4105faee51983b0bd8ffb5ce1455c", + "symbol": "GUILD", + "decimals": 18, + "name": "BlockchainSpace", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x0565805ca3a4105faee51983b0bd8ffb5ce1455c.png", + "aggregators": [ + "PancakeCoinMarketCap", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x6d6ba21e4c4b29ca7bfa1c344ba1e35b8dae7205": { + "address": "0x6d6ba21e4c4b29ca7bfa1c344ba1e35b8dae7205", + "symbol": "KATA", + "decimals": 18, + "name": "Katana Inu", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x6d6ba21e4c4b29ca7bfa1c344ba1e35b8dae7205.png", + "aggregators": [ + "PancakeCoinMarketCap", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0xe069af87450fb51fc0d0e044617f1c134163e591": { + "address": "0xe069af87450fb51fc0d0e044617f1c134163e591", + "symbol": "VPP", + "decimals": 18, + "name": "Virtue Poker Points", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xe069af87450fb51fc0d0e044617f1c134163e591.png", + "aggregators": [ + "PancakeCoinMarketCap", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x200c234721b5e549c3693ccc93cf191f90dc2af9": { + "address": "0x200c234721b5e549c3693ccc93cf191f90dc2af9", + "symbol": "METAL", + "decimals": 18, + "name": "Badmad Robots", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x200c234721b5e549c3693ccc93cf191f90dc2af9.png", + "aggregators": [ + "PancakeCoinGecko", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x2117e8b79e8e176a670c9fcf945d4348556bffad": { + "address": "0x2117e8b79e8e176a670c9fcf945d4348556bffad", + "symbol": "EUL", + "decimals": 18, + "name": "EUL", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x2117e8b79e8e176a670c9fcf945d4348556bffad.png", + "aggregators": ["CoinGecko", "LiFi", "Socket", "Rubic", "Rango"], + "occurrences": 5 + }, + "0xce6c9c70f91c6797873efc80505f972290a88f5d": { + "address": "0xce6c9c70f91c6797873efc80505f972290a88f5d", + "symbol": "ICE", + "decimals": 18, + "name": "IceCreamSwap", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xce6c9c70f91c6797873efc80505f972290a88f5d.png", + "aggregators": [ + "PancakeCoinMarketCap", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x51e72dd1f2628295cc2ef931cb64fdbdc3a0c599": { + "address": "0x51e72dd1f2628295cc2ef931cb64fdbdc3a0c599", + "symbol": "KAS", + "decimals": 8, + "name": "Wrapped Kaspa", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x51e72dd1f2628295cc2ef931cb64fdbdc3a0c599.png", + "aggregators": [ + "PancakeCoinMarketCap", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x818835503f55283cd51a4399f595e295a9338753": { + "address": "0x818835503f55283cd51a4399f595e295a9338753", + "symbol": "AGI", + "decimals": 18, + "name": "Delysium", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x818835503f55283cd51a4399f595e295a9338753.png", + "aggregators": [ + "PancakeCoinMarketCap", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x69a87c8788d4a48c1362b3b357d0e6b59c11d93f": { + "address": "0x69a87c8788d4a48c1362b3b357d0e6b59c11d93f", + "symbol": "OBI", + "decimals": 18, + "name": "Orbofi AI", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x69a87c8788d4a48c1362b3b357d0e6b59c11d93f.png", + "aggregators": [ + "PancakeCoinMarketCap", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x307bc76e3d59ed73886a9cf9360a9286f6281ba7": { + "address": "0x307bc76e3d59ed73886a9cf9360a9286f6281ba7", + "symbol": "LMWR", + "decimals": 18, + "name": "LimeWire", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x307bc76e3d59ed73886a9cf9360a9286f6281ba7.png", + "aggregators": [ + "PancakeCoinMarketCap", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x2ac895feba458b42884dcbcb47d57e44c3a303c8": { + "address": "0x2ac895feba458b42884dcbcb47d57e44c3a303c8", + "symbol": "EARN", + "decimals": 18, + "name": "HOLD", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x2ac895feba458b42884dcbcb47d57e44c3a303c8.png", + "aggregators": [ + "PancakeCoinMarketCap", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x22514ffb0d7232a56f0c24090e7b68f179faa940": { + "address": "0x22514ffb0d7232a56f0c24090e7b68f179faa940", + "symbol": "QORPO", + "decimals": 18, + "name": "QORPO WORLD", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x22514ffb0d7232a56f0c24090e7b68f179faa940.png", + "aggregators": [ + "PancakeCoinMarketCap", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0xe2dca969624795985f2f083bcd0b674337ba130a": { + "address": "0xe2dca969624795985f2f083bcd0b674337ba130a", + "symbol": "SKR", + "decimals": 18, + "name": "Saakuru", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xe2dca969624795985f2f083bcd0b674337ba130a.png", + "aggregators": [ + "PancakeCoinMarketCap", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0xcb5e6e276adf62d68a1857880359750c8f79d076": { + "address": "0xcb5e6e276adf62d68a1857880359750c8f79d076", + "symbol": "MARS", + "decimals": 9, + "name": "Mars", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xcb5e6e276adf62d68a1857880359750c8f79d076.png", + "aggregators": [ + "CoinGecko", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x2e72393a57287b1a09857db589b27bb0fd499922": { + "address": "0x2e72393a57287b1a09857db589b27bb0fd499922", + "symbol": "HAPPY", + "decimals": 18, + "name": "Happy Cat", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x2e72393a57287b1a09857db589b27bb0fd499922.png", + "aggregators": [ + "CoinGecko", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x20482b0b4d9d8f60d3ab432b92f4c4b901a0d10c": { + "address": "0x20482b0b4d9d8f60d3ab432b92f4c4b901a0d10c", + "symbol": "REKT", + "decimals": 18, + "name": "Rekt", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x20482b0b4d9d8f60d3ab432b92f4c4b901a0d10c.png", + "aggregators": [ + "PancakeExtended", + "Socket", + "Rubic", + "Squid", + "Rango" + ], + "occurrences": 5 + }, + "0x3f160760535eb715d5809a26cf55408a2d9844c1": { + "address": "0x3f160760535eb715d5809a26cf55408a2d9844c1", + "symbol": "OL", + "decimals": 18, + "name": "OPENLOOT", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x3f160760535eb715d5809a26cf55408a2d9844c1.png", + "aggregators": ["CoinGecko", "LiFi", "Socket", "Rubic", "Rango"], + "occurrences": 5 + }, + "0x22b1458e780f8fa71e2f84502cee8b5a3cc731fa": { + "address": "0x22b1458e780f8fa71e2f84502cee8b5a3cc731fa", + "symbol": "M", + "decimals": 18, + "name": "MemeCore", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x22b1458e780f8fa71e2f84502cee8b5a3cc731fa.png", + "aggregators": [ + "PancakeExtended", + "1inch", + "LiFi", + "Rubic", + "Rango" + ], + "occurrences": 5 + }, + "0x38e382f74dfb84608f3c1f10187f6bef5951de93": { + "address": "0x38e382f74dfb84608f3c1f10187f6bef5951de93", + "symbol": "MUBI", + "decimals": 18, + "name": "Multibit", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x38e382f74dfb84608f3c1f10187f6bef5951de93.png", + "aggregators": [ + "PancakeExtended", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0xa1ed0bd9a4776830c5b7ba004f26427b71152ca5": { + "address": "0xa1ed0bd9a4776830c5b7ba004f26427b71152ca5", + "symbol": "DUEL", + "decimals": 18, + "name": "GameGPT", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xa1ed0bd9a4776830c5b7ba004f26427b71152ca5.png", + "aggregators": [ + "PancakeCoinMarketCap", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x9b26e318bc6a2c8b45f5daea2cc14697e0e0f8b5": { + "address": "0x9b26e318bc6a2c8b45f5daea2cc14697e0e0f8b5", + "symbol": "TADA", + "decimals": 18, + "name": "Ta-da", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x9b26e318bc6a2c8b45f5daea2cc14697e0e0f8b5.png", + "aggregators": [ + "PancakeCoinMarketCap", + "Rubic", + "Squid", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x35e5db674d8e93a03d814fa0ada70731efe8a4b9": { + "address": "0x35e5db674d8e93a03d814fa0ada70731efe8a4b9", + "symbol": "RLP", + "decimals": 18, + "name": "RLP", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x35e5db674d8e93a03d814fa0ada70731efe8a4b9.png", + "aggregators": [ + "PancakeExtended", + "LiFi", + "Socket", + "Rubic", + "Rango" + ], + "occurrences": 5 + }, + "0x6386adc4bc9c21984e34fd916bb349dd861742af": { + "address": "0x6386adc4bc9c21984e34fd916bb349dd861742af", + "symbol": "BOX", + "decimals": 18, + "name": "DeBoxToken", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x6386adc4bc9c21984e34fd916bb349dd861742af.png", + "aggregators": ["CoinGecko", "LiFi", "Socket", "Rubic", "Rango"], + "occurrences": 5 + }, + "0x47474747477b199288bf72a1d702f7fe0fb1deea": { + "address": "0x47474747477b199288bf72a1d702f7fe0fb1deea", + "symbol": "WLFI", + "decimals": 18, + "name": "World Liberty Financial", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x47474747477b199288bf72a1d702f7fe0fb1deea.png", + "aggregators": ["CoinGecko", "LiFi", "Socket", "Rubic", "Rango"], + "occurrences": 5 + }, + "0xe231db5f348d709239ef1741ea30961b3b635a61": { + "address": "0xe231db5f348d709239ef1741ea30961b3b635a61", + "symbol": "YNETHX", + "decimals": 18, + "name": "ynETH MAX", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xe231db5f348d709239ef1741ea30961b3b635a61.png", + "aggregators": [ + "CoinGecko", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x63ec886286f30ad392749b9e8f24f67f5b8ac394": { + "address": "0x63ec886286f30ad392749b9e8f24f67f5b8ac394", + "symbol": "4EVER", + "decimals": 18, + "name": "4EVERLAND", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x63ec886286f30ad392749b9e8f24f67f5b8ac394.png", + "aggregators": [ + "PancakeExtended", + "LiFi", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x733a6c29eda4a58931ae81b8d91e29f2eaf01df3": { + "address": "0x733a6c29eda4a58931ae81b8d91e29f2eaf01df3", + "symbol": "BRBTC", + "decimals": 8, + "name": "Bedrock BTC", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x733a6c29eda4a58931ae81b8d91e29f2eaf01df3.png", + "aggregators": [ + "PancakeExtended", + "LiFi", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x0fcfe33b46e5b21e5e96b722d4c85510198f9255": { + "address": "0x0fcfe33b46e5b21e5e96b722d4c85510198f9255", + "symbol": "MNSRY", + "decimals": 18, + "name": "Mansory Token", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x0fcfe33b46e5b21e5e96b722d4c85510198f9255.png", + "aggregators": [ + "CoinGecko", + "LiFi", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x9a70815dfb644a24b57358e1041f8d0324c8f6e1": { + "address": "0x9a70815dfb644a24b57358e1041f8d0324c8f6e1", + "symbol": "BOOP", + "decimals": 18, + "name": "BOOP", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x9a70815dfb644a24b57358e1041f8d0324c8f6e1.png", + "aggregators": [ + "PancakeExtended", + "LiFi", + "Socket", + "Rubic", + "Rango" + ], + "occurrences": 5 + }, + "0x915424ac489433130d92b04096f3b96c82e92a9d": { + "address": "0x915424ac489433130d92b04096f3b96c82e92a9d", + "symbol": "PROS", + "decimals": 18, + "name": "Prosper", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x915424ac489433130d92b04096f3b96c82e92a9d.png", + "aggregators": ["Metamask", "Socket", "Rubic", "Squid", "Rango"], + "occurrences": 5 + }, + "0xb3b02e4a9fb2bd28cc2ff97b0ab3f6b3ec1ee9d2": { + "address": "0xb3b02e4a9fb2bd28cc2ff97b0ab3f6b3ec1ee9d2", + "symbol": "USDF", + "decimals": 18, + "name": "Falcon USD", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xb3b02e4a9fb2bd28cc2ff97b0ab3f6b3ec1ee9d2.png", + "aggregators": [ + "PancakeExtended", + "LiFi", + "Socket", + "Rubic", + "Rango" + ], + "occurrences": 5 + }, + "0xab3dbcd9b096c3ff76275038bf58eac10d22c61f": { + "address": "0xab3dbcd9b096c3ff76275038bf58eac10d22c61f", + "symbol": "YUSD", + "decimals": 18, + "name": "Aegis YUSD", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xab3dbcd9b096c3ff76275038bf58eac10d22c61f.png", + "aggregators": ["CoinGecko", "LiFi", "Socket", "Rubic", "Rango"], + "occurrences": 5 + }, + "0x4809010926aec940b550d34a46a52739f996d75d": { + "address": "0x4809010926aec940b550d34a46a52739f996d75d", + "symbol": "WSRUSD", + "decimals": 18, + "name": "WSRUSD", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x4809010926aec940b550d34a46a52739f996d75d.png", + "aggregators": ["CoinGecko", "LiFi", "Socket", "Rubic", "Rango"], + "occurrences": 5 + }, + "0xfeb339236d25d3e415f280189bc7c2fbab6ae9ef": { + "address": "0xfeb339236d25d3e415f280189bc7c2fbab6ae9ef", + "symbol": "ENSO", + "decimals": 18, + "name": "Enso", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xfeb339236d25d3e415f280189bc7c2fbab6ae9ef.png", + "aggregators": [ + "PancakeExtended", + "LiFi", + "Socket", + "Rubic", + "Rango" + ], + "occurrences": 5 + }, + "0x7ddf164cecfddd0f992299d033b5a11279a15929": { + "address": "0x7ddf164cecfddd0f992299d033b5a11279a15929", + "symbol": "PROVE", + "decimals": 18, + "name": "Succinct", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x7ddf164cecfddd0f992299d033b5a11279a15929.png", + "aggregators": ["CoinGecko", "LiFi", "Socket", "Rubic", "Rango"], + "occurrences": 5 + }, + "0x61fac5f038515572d6f42d4bcb6b581642753d50": { + "address": "0x61fac5f038515572d6f42d4bcb6b581642753d50", + "symbol": "IN", + "decimals": 18, + "name": "INFINIT", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x61fac5f038515572d6f42d4bcb6b581642753d50.png", + "aggregators": [ + "PancakeExtended", + "Socket", + "Rubic", + "Squid", + "Rango" + ], + "occurrences": 5 + }, + "0xd23a186a78c0b3b805505e5f8ea4083295ef9f3a": { + "address": "0xd23a186a78c0b3b805505e5f8ea4083295ef9f3a", + "symbol": "BARD", + "decimals": 18, + "name": "Lombard", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xd23a186a78c0b3b805505e5f8ea4083295ef9f3a.png", + "aggregators": [ + "PancakeExtended", + "LiFi", + "Socket", + "Rubic", + "Rango" + ], + "occurrences": 5 + }, + "0xf54b94ea21e1da5d51ef00fd4502225e5394f874": { + "address": "0xf54b94ea21e1da5d51ef00fd4502225e5394f874", + "symbol": "IWNON", + "decimals": 18, + "name": "iShares Russell 2000 Value ETF (Ondo Tokenized)", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xf54b94ea21e1da5d51ef00fd4502225e5394f874.png", + "aggregators": ["CoinGecko", "LiFi", "Rubic", "Rango", "Ondo"], + "occurrences": 5, + "rwaData": { + "market": { + "nextOpen": "2026-05-18T20:01:00.000Z", + "nextClose": "2026-05-18T19:59:00.000Z" + }, + "nextPause": { + "start": "2027-06-09T23:50:00.000Z", + "end": "2027-06-11T00:00:00.000Z" + }, + "ticker": "IWN", + "instrumentType": "stock" + } + }, + "0xcf9caf83053213c44dd7027db3e1e4ac98e55f8f": { + "address": "0xcf9caf83053213c44dd7027db3e1e4ac98e55f8f", + "symbol": "ITOTON", + "decimals": 18, + "name": "iShares Core S&P Total US Stock Market ETF (Ondo Tokenized)", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xcf9caf83053213c44dd7027db3e1e4ac98e55f8f.png", + "aggregators": ["CoinGecko", "LiFi", "Rubic", "Rango", "Ondo"], + "occurrences": 5, + "rwaData": { + "market": { + "nextOpen": "2026-05-18T20:01:00.000Z", + "nextClose": "2026-05-18T19:59:00.000Z" + }, + "nextPause": { + "start": "2027-06-09T23:50:00.000Z", + "end": "2027-06-11T00:00:00.000Z" + }, + "ticker": "ITOT", + "instrumentType": "stock" + } + }, + "0x2b1d5cdecc356530a746c5754231efaeaca64022": { + "address": "0x2b1d5cdecc356530a746c5754231efaeaca64022", + "symbol": "PBRON", + "decimals": 18, + "name": "Petrobras (Ondo Tokenized)", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x2b1d5cdecc356530a746c5754231efaeaca64022.png", + "aggregators": ["CoinGecko", "LiFi", "Rubic", "Rango", "Ondo"], + "occurrences": 5, + "rwaData": { + "market": { + "nextOpen": "2026-05-18T20:01:00.000Z", + "nextClose": "2026-05-18T19:59:00.000Z" + }, + "nextPause": { + "start": null, + "end": null + }, + "ticker": "PBR", + "instrumentType": "stock" + } + }, + "0x8a83c31d6751833b4940b6e871c48d9a15a07b46": { + "address": "0x8a83c31d6751833b4940b6e871c48d9a15a07b46", + "symbol": "PFEON", + "decimals": 18, + "name": "Pfizer (Ondo Tokenized)", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x8a83c31d6751833b4940b6e871c48d9a15a07b46.png", + "aggregators": ["CoinGecko", "LiFi", "Rubic", "Rango", "Ondo"], + "occurrences": 5, + "rwaData": { + "market": { + "nextOpen": "2026-05-18T20:01:00.000Z", + "nextClose": "2026-05-18T19:59:00.000Z" + }, + "nextPause": { + "start": null, + "end": null + }, + "ticker": "PFE", + "instrumentType": "stock" + } + }, + "0x00c81d35eddf44c75d4db9e07bdcdc236eb0ebcf": { + "address": "0x00c81d35eddf44c75d4db9e07bdcdc236eb0ebcf", + "symbol": "EEMON", + "decimals": 18, + "name": "iShares MSCI Emerging Markets ETF (Ondo Tokenized)", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x00c81d35eddf44c75d4db9e07bdcdc236eb0ebcf.png", + "aggregators": ["CoinGecko", "LiFi", "Rubic", "Rango", "Ondo"], + "occurrences": 5, + "rwaData": { + "market": { + "nextOpen": "2026-05-18T20:01:00.000Z", + "nextClose": "2026-05-18T19:59:00.000Z" + }, + "nextPause": { + "start": "2027-06-09T23:50:00.000Z", + "end": "2027-06-11T00:00:00.000Z" + }, + "ticker": "EEM", + "instrumentType": "stock" + } + }, + "0xc142ba8ccd36d80c3a001342fb83e4c3d218a873": { + "address": "0xc142ba8ccd36d80c3a001342fb83e4c3d218a873", + "symbol": "SMCION", + "decimals": 18, + "name": "Super Micro Computer (Ondo Tokenized)", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xc142ba8ccd36d80c3a001342fb83e4c3d218a873.png", + "aggregators": ["CoinGecko", "LiFi", "Rubic", "Rango", "Ondo"], + "occurrences": 5, + "rwaData": { + "market": { + "nextOpen": "2026-05-18T20:01:00.000Z", + "nextClose": "2026-05-18T19:59:00.000Z" + }, + "nextPause": { + "start": null, + "end": null + }, + "ticker": "SMCI", + "instrumentType": "stock" + } + }, + "0x1501ec83ffef405b4331cc4f73277a40fb0c627d": { + "address": "0x1501ec83ffef405b4331cc4f73277a40fb0c627d", + "symbol": "MRVLON", + "decimals": 18, + "name": "Marvell Technology (Ondo Tokenized)", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x1501ec83ffef405b4331cc4f73277a40fb0c627d.png", + "aggregators": ["CoinGecko", "LiFi", "Rubic", "Rango", "Ondo"], + "occurrences": 5, + "rwaData": { + "market": { + "nextOpen": "2026-05-18T20:01:00.000Z", + "nextClose": "2026-05-18T19:59:00.000Z" + }, + "nextPause": { + "start": "2026-05-27T20:00:00.000Z", + "end": "2026-05-27T23:30:00.000Z" + }, + "ticker": "MRVL", + "instrumentType": "stock" + } + }, + "0x08ce97f3d5cf11e577d091ab048bc5e2eae3fabb": { + "address": "0x08ce97f3d5cf11e577d091ab048bc5e2eae3fabb", + "symbol": "AGGON", + "decimals": 18, + "name": "iShares Core US Aggregate Bond ETF (Ondo Tokenized)", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x08ce97f3d5cf11e577d091ab048bc5e2eae3fabb.png", + "aggregators": ["CoinGecko", "LiFi", "Rubic", "Rango", "Ondo"], + "occurrences": 5, + "rwaData": { + "market": { + "nextOpen": "2026-05-18T20:01:00.000Z", + "nextClose": "2026-05-18T19:59:00.000Z" + }, + "nextPause": { + "start": "2027-06-30T23:50:00.000Z", + "end": "2027-07-02T00:00:00.000Z" + }, + "ticker": "AGG", + "instrumentType": "stock" + } + }, + "0x34304f2f7cc487eb4186e6d69f5905a613474aa2": { + "address": "0x34304f2f7cc487eb4186e6d69f5905a613474aa2", + "symbol": "CSCOON", + "decimals": 18, + "name": "Cisco Systems (Ondo Tokenized)", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x34304f2f7cc487eb4186e6d69f5905a613474aa2.png", + "aggregators": ["CoinGecko", "LiFi", "Rubic", "Rango", "Ondo"], + "occurrences": 5, + "rwaData": { + "market": { + "nextOpen": "2026-05-18T20:01:00.000Z", + "nextClose": "2026-05-18T19:59:00.000Z" + }, + "nextPause": { + "start": null, + "end": null + }, + "ticker": "CSCO", + "instrumentType": "stock" + } + }, + "0xaed5985afc12aa09d87f55b4b1e6bc3b8f7b0208": { + "address": "0xaed5985afc12aa09d87f55b4b1e6bc3b8f7b0208", + "symbol": "CMGON", + "decimals": 18, + "name": "Chipotle (Ondo Tokenized)", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xaed5985afc12aa09d87f55b4b1e6bc3b8f7b0208.png", + "aggregators": ["CoinGecko", "LiFi", "Rubic", "Rango", "Ondo"], + "occurrences": 5, + "rwaData": { + "market": { + "nextOpen": "2026-05-18T20:01:00.000Z", + "nextClose": "2026-05-18T19:59:00.000Z" + }, + "nextPause": { + "start": null, + "end": null + }, + "ticker": "CMG", + "instrumentType": "stock" + } + }, + "0x19601179a60f55ff6636f5d1a8b6671053bd60a8": { + "address": "0x19601179a60f55ff6636f5d1a8b6671053bd60a8", + "symbol": "HOODON", + "decimals": 18, + "name": "Robinhood Markets (Ondo Tokenized)", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x19601179a60f55ff6636f5d1a8b6671053bd60a8.png", + "aggregators": ["CoinGecko", "LiFi", "Rubic", "Rango", "Ondo"], + "occurrences": 5, + "rwaData": { + "market": { + "nextOpen": "2026-05-18T20:01:00.000Z", + "nextClose": "2026-05-18T19:59:00.000Z" + }, + "nextPause": { + "start": null, + "end": null + }, + "ticker": "HOOD", + "instrumentType": "stock" + } + }, + "0x4da12f47578ef89c76179b760c778e70b668f80b": { + "address": "0x4da12f47578ef89c76179b760c778e70b668f80b", + "symbol": "RDDTON", + "decimals": 18, + "name": "Reddit (Ondo Tokenized)", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x4da12f47578ef89c76179b760c778e70b668f80b.png", + "aggregators": ["CoinGecko", "LiFi", "Rubic", "Rango", "Ondo"], + "occurrences": 5, + "rwaData": { + "market": { + "nextOpen": "2026-05-18T20:01:00.000Z", + "nextClose": "2026-05-18T19:59:00.000Z" + }, + "nextPause": { + "start": null, + "end": null + }, + "ticker": "RDDT", + "instrumentType": "stock" + } + }, + "0x9f16e46c73b43bdb70861247d537bee4ea18f639": { + "address": "0x9f16e46c73b43bdb70861247d537bee4ea18f639", + "symbol": "AMDON", + "decimals": 18, + "name": "AMD (Ondo Tokenized)", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x9f16e46c73b43bdb70861247d537bee4ea18f639.png", + "aggregators": ["CoinGecko", "LiFi", "Rubic", "Rango", "Ondo"], + "occurrences": 5, + "rwaData": { + "market": { + "nextOpen": "2026-05-18T20:01:00.000Z", + "nextClose": "2026-05-18T19:59:00.000Z" + }, + "nextPause": { + "start": null, + "end": null + }, + "ticker": "AMD", + "instrumentType": "stock" + } + }, + "0x9351abd19f42101dd36025e495b98e910b255d78": { + "address": "0x9351abd19f42101dd36025e495b98e910b255d78", + "symbol": "PLTRON", + "decimals": 18, + "name": "Palantir Technologies (Ondo Tokenized)", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x9351abd19f42101dd36025e495b98e910b255d78.png", + "aggregators": ["CoinGecko", "LiFi", "Rubic", "Rango", "Ondo"], + "occurrences": 5, + "rwaData": { + "market": { + "nextOpen": "2026-05-18T20:01:00.000Z", + "nextClose": "2026-05-18T19:59:00.000Z" + }, + "nextPause": { + "start": null, + "end": null + }, + "ticker": "PLTR", + "instrumentType": "stock" + } + }, + "0x0ed2e3180edf393e6bf8db124bd15ddd54de150a": { + "address": "0x0ed2e3180edf393e6bf8db124bd15ddd54de150a", + "symbol": "AVGOON", + "decimals": 18, + "name": "Broadcom (Ondo Tokenized)", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x0ed2e3180edf393e6bf8db124bd15ddd54de150a.png", + "aggregators": ["CoinGecko", "LiFi", "Rubic", "Rango", "Ondo"], + "occurrences": 5, + "rwaData": { + "market": { + "nextOpen": "2026-05-18T20:01:00.000Z", + "nextClose": "2026-05-18T19:59:00.000Z" + }, + "nextPause": { + "start": "2026-06-03T20:00:00.000Z", + "end": "2026-06-03T23:30:00.000Z" + }, + "ticker": "AVGO", + "instrumentType": "stock" + } + }, + "0x4553cfe1c09f37f38b12dc509f676964e392f8fc": { + "address": "0x4553cfe1c09f37f38b12dc509f676964e392f8fc", + "symbol": "AMZNON", + "decimals": 18, + "name": "Amazon (Ondo Tokenized)", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x4553cfe1c09f37f38b12dc509f676964e392f8fc.png", + "aggregators": ["CoinGecko", "LiFi", "Rubic", "Rango", "Ondo"], + "occurrences": 5, + "rwaData": { + "market": { + "nextOpen": "2026-05-18T20:01:00.000Z", + "nextClose": "2026-05-18T19:59:00.000Z" + }, + "nextPause": { + "start": null, + "end": null + }, + "ticker": "AMZN", + "instrumentType": "stock" + } + }, + "0x138ed6833ff4e8811e1fea0d005e13726c8886f9": { + "address": "0x138ed6833ff4e8811e1fea0d005e13726c8886f9", + "symbol": "SNOWON", + "decimals": 18, + "name": "Snowflake (Ondo Tokenized)", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x138ed6833ff4e8811e1fea0d005e13726c8886f9.png", + "aggregators": ["CoinGecko", "LiFi", "Rubic", "Rango", "Ondo"], + "occurrences": 5, + "rwaData": { + "market": { + "nextOpen": "2026-05-18T20:01:00.000Z", + "nextClose": "2026-05-18T19:59:00.000Z" + }, + "nextPause": { + "start": "2026-05-27T20:00:00.000Z", + "end": "2026-05-27T23:30:00.000Z" + }, + "ticker": "SNOW", + "instrumentType": "stock" + } + }, + "0x091fc7778e6932d4009b087b191d1ee3bac5729a": { + "address": "0x091fc7778e6932d4009b087b191d1ee3bac5729a", + "symbol": "GOOGLON", + "decimals": 18, + "name": "Alphabet Class A (Ondo Tokenized)", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x091fc7778e6932d4009b087b191d1ee3bac5729a.png", + "aggregators": ["CoinGecko", "LiFi", "Rubic", "Rango", "Ondo"], + "occurrences": 5, + "rwaData": { + "market": { + "nextOpen": "2026-05-18T20:01:00.000Z", + "nextClose": "2026-05-18T19:59:00.000Z" + }, + "nextPause": { + "start": "2026-06-07T23:52:00.000Z", + "end": "2026-06-08T00:12:00.000Z" + }, + "ticker": "GOOGL", + "instrumentType": "stock" + } + }, + "0xe8ff70859ce4cbd72e4352b4fb45f5bf39d07464": { + "address": "0xe8ff70859ce4cbd72e4352b4fb45f5bf39d07464", + "symbol": "IBMON", + "decimals": 18, + "name": "IBM (Ondo Tokenized)", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xe8ff70859ce4cbd72e4352b4fb45f5bf39d07464.png", + "aggregators": ["CoinGecko", "LiFi", "Rubic", "Rango", "Ondo"], + "occurrences": 5, + "rwaData": { + "market": { + "nextOpen": "2026-05-18T20:01:00.000Z", + "nextClose": "2026-05-18T19:59:00.000Z" + }, + "nextPause": { + "start": null, + "end": null + }, + "ticker": "IBM", + "instrumentType": "stock" + } + }, + "0xf21132a811ad1a878e21af60f64d4e690c9daa42": { + "address": "0xf21132a811ad1a878e21af60f64d4e690c9daa42", + "symbol": "BAON", + "decimals": 18, + "name": "Boeing (Ondo Tokenized)", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xf21132a811ad1a878e21af60f64d4e690c9daa42.png", + "aggregators": ["CoinGecko", "LiFi", "Rubic", "Rango", "Ondo"], + "occurrences": 5, + "rwaData": { + "market": { + "nextOpen": "2026-05-18T20:01:00.000Z", + "nextClose": "2026-05-18T19:59:00.000Z" + }, + "nextPause": { + "start": null, + "end": null + }, + "ticker": "BA", + "instrumentType": "stock" + } + }, + "0x6bfe75d1ad432050ea973c3a3dcd88f02e2444c3": { + "address": "0x6bfe75d1ad432050ea973c3a3dcd88f02e2444c3", + "symbol": "MSFTON", + "decimals": 18, + "name": "Microsoft (Ondo Tokenized)", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x6bfe75d1ad432050ea973c3a3dcd88f02e2444c3.png", + "aggregators": ["CoinGecko", "LiFi", "Rubic", "Rango", "Ondo"], + "occurrences": 5, + "rwaData": { + "market": { + "nextOpen": "2026-05-18T20:01:00.000Z", + "nextClose": "2026-05-18T19:59:00.000Z" + }, + "nextPause": { + "start": "2026-05-20T23:52:00.000Z", + "end": "2026-05-21T00:12:00.000Z" + }, + "ticker": "MSFT", + "instrumentType": "stock" + } + }, + "0x341d31b2be1fee9c00e395a62ba41837f4322eed": { + "address": "0x341d31b2be1fee9c00e395a62ba41837f4322eed", + "symbol": "LLYON", + "decimals": 18, + "name": "Eli Lilly (Ondo Tokenized)", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x341d31b2be1fee9c00e395a62ba41837f4322eed.png", + "aggregators": ["CoinGecko", "LiFi", "Rubic", "Rango", "Ondo"], + "occurrences": 5, + "rwaData": { + "market": { + "nextOpen": "2026-05-18T20:01:00.000Z", + "nextClose": "2026-05-18T19:59:00.000Z" + }, + "nextPause": { + "start": null, + "end": null + }, + "ticker": "LLY", + "instrumentType": "stock" + } + }, + "0xd7df5863a3e742f0c767768cdfcb63f09e0422f6": { + "address": "0xd7df5863a3e742f0c767768cdfcb63f09e0422f6", + "symbol": "METAON", + "decimals": 18, + "name": "Meta Platforms (Ondo Tokenized)", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xd7df5863a3e742f0c767768cdfcb63f09e0422f6.png", + "aggregators": ["CoinGecko", "LiFi", "Rubic", "Rango", "Ondo"], + "occurrences": 5, + "rwaData": { + "market": { + "nextOpen": "2026-05-18T20:01:00.000Z", + "nextClose": "2026-05-18T19:59:00.000Z" + }, + "nextPause": { + "start": null, + "end": null + }, + "ticker": "META", + "instrumentType": "stock" + } + }, + "0x1104eb7e85e25eb45f88e638b0c27a06c1a91cb2": { + "address": "0x1104eb7e85e25eb45f88e638b0c27a06c1a91cb2", + "symbol": "IVVON", + "decimals": 18, + "name": "iShares Core S&P 500 ETF (Ondo Tokenized)", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x1104eb7e85e25eb45f88e638b0c27a06c1a91cb2.png", + "aggregators": ["CoinGecko", "LiFi", "Rubic", "Rango", "Ondo"], + "occurrences": 5, + "rwaData": { + "market": { + "nextOpen": "2026-05-18T20:01:00.000Z", + "nextClose": "2026-05-18T19:59:00.000Z" + }, + "nextPause": { + "start": "2027-06-09T23:50:00.000Z", + "end": "2027-06-11T00:00:00.000Z" + }, + "ticker": "IVV", + "instrumentType": "stock" + } + }, + "0x6a708ead771238919d85930b5a0f10454e1c331a": { + "address": "0x6a708ead771238919d85930b5a0f10454e1c331a", + "symbol": "SPYON", + "decimals": 18, + "name": "SPDR S&P 500 ETF (Ondo Tokenized)", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x6a708ead771238919d85930b5a0f10454e1c331a.png", + "aggregators": ["CoinGecko", "LiFi", "Rubic", "Rango", "Ondo"], + "occurrences": 5, + "rwaData": { + "market": { + "nextOpen": "2026-05-18T20:01:00.000Z", + "nextClose": "2026-05-18T19:59:00.000Z" + }, + "nextPause": { + "start": null, + "end": null + }, + "ticker": "SPY", + "instrumentType": "stock" + } + }, + "0x7839fbfd09dae4d0f15bfb36b8f16f7898fbe684": { + "address": "0x7839fbfd09dae4d0f15bfb36b8f16f7898fbe684", + "symbol": "MIRA", + "decimals": 18, + "name": "Mira", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x7839fbfd09dae4d0f15bfb36b8f16f7898fbe684.png", + "aggregators": ["PancakeExtended", "Socket", "Rubic", "Squid"], + "occurrences": 4 + }, + "0xcce5f304fd043d6a4e8ccb5376a4a4fb583b98d5": { + "address": "0xcce5f304fd043d6a4e8ccb5376a4a4fb583b98d5", + "symbol": "ALLO", + "decimals": 18, + "name": "Allora", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xcce5f304fd043d6a4e8ccb5376a4a4fb583b98d5.png", + "aggregators": ["CoinGecko", "Socket", "Rubic", "Rango"], + "occurrences": 4 + }, + "0x2ac26ec236df5d1d2ad1a6dd4e448a90e45dc35d": { + "address": "0x2ac26ec236df5d1d2ad1a6dd4e448a90e45dc35d", + "symbol": "TIPON", + "decimals": 18, + "name": "iShares TIPS Bond ETF (Ondo Tokenized)", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x2ac26ec236df5d1d2ad1a6dd4e448a90e45dc35d.png", + "aggregators": ["CoinGecko", "LiFi", "Rubic", "Rango", "Ondo"], + "occurrences": 5, + "rwaData": { + "market": { + "nextOpen": "2026-05-18T20:01:00.000Z", + "nextClose": "2026-05-18T19:59:00.000Z" + }, + "nextPause": { + "start": "2027-06-30T23:50:00.000Z", + "end": "2027-07-02T00:00:00.000Z" + }, + "ticker": "TIP", + "instrumentType": "stock" + } + }, + "0x08a513779f46ffb7a34f16094a94016d010128a8": { + "address": "0x08a513779f46ffb7a34f16094a94016d010128a8", + "symbol": "NVOON", + "decimals": 18, + "name": "Novo Nordisk (Ondo Tokenized)", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x08a513779f46ffb7a34f16094a94016d010128a8.png", + "aggregators": ["CoinGecko", "LiFi", "Rubic", "Rango", "Ondo"], + "occurrences": 5, + "rwaData": { + "market": { + "nextOpen": "2026-05-18T20:01:00.000Z", + "nextClose": "2026-05-18T19:59:00.000Z" + }, + "nextPause": { + "start": null, + "end": null + }, + "ticker": "NVO", + "instrumentType": "stock" + } + }, + "0xa528caaa2f96090e379d43f90834c75df54d6e74": { + "address": "0xa528caaa2f96090e379d43f90834c75df54d6e74", + "symbol": "INTCON", + "decimals": 18, + "name": "Intel (Ondo Tokenized)", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xa528caaa2f96090e379d43f90834c75df54d6e74.png", + "aggregators": ["CoinGecko", "LiFi", "Rubic", "Rango", "Ondo"], + "occurrences": 5, + "rwaData": { + "market": { + "nextOpen": "2026-05-18T20:01:00.000Z", + "nextClose": "2026-05-18T19:59:00.000Z" + }, + "nextPause": { + "start": null, + "end": null + }, + "ticker": "INTC", + "instrumentType": "stock" + } + }, + "0xde9d6036fca870f7efc5a82722ae694c371ac909": { + "address": "0xde9d6036fca870f7efc5a82722ae694c371ac909", + "symbol": "UBERON", + "decimals": 18, + "name": "Uber (Ondo Tokenized)", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xde9d6036fca870f7efc5a82722ae694c371ac909.png", + "aggregators": ["CoinGecko", "LiFi", "Rubic", "Rango", "Ondo"], + "occurrences": 5, + "rwaData": { + "market": { + "nextOpen": "2026-05-18T20:01:00.000Z", + "nextClose": "2026-05-18T19:59:00.000Z" + }, + "nextPause": { + "start": null, + "end": null + }, + "ticker": "UBER", + "instrumentType": "stock" + } + }, + "0x94d7754541b829a87321d56121bc544167ac490d": { + "address": "0x94d7754541b829a87321d56121bc544167ac490d", + "symbol": "SBUXON", + "decimals": 18, + "name": "Starbucks (Ondo Tokenized)", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x94d7754541b829a87321d56121bc544167ac490d.png", + "aggregators": ["CoinGecko", "LiFi", "Rubic", "Rango", "Ondo"], + "occurrences": 5, + "rwaData": { + "market": { + "nextOpen": "2026-05-18T20:01:00.000Z", + "nextClose": "2026-05-18T19:59:00.000Z" + }, + "nextPause": { + "start": null, + "end": null + }, + "ticker": "SBUX", + "instrumentType": "stock" + } + }, + "0x40755f06ab7f8de1ab3a9413b1ef562d63de19b1": { + "address": "0x40755f06ab7f8de1ab3a9413b1ef562d63de19b1", + "symbol": "IWFON", + "decimals": 18, + "name": "iShares Russell 1000 Growth ETF (Ondo Tokenized)", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x40755f06ab7f8de1ab3a9413b1ef562d63de19b1.png", + "aggregators": ["CoinGecko", "LiFi", "Rubic", "Rango", "Ondo"], + "occurrences": 5, + "rwaData": { + "market": { + "nextOpen": "2026-05-18T20:01:00.000Z", + "nextClose": "2026-05-18T19:59:00.000Z" + }, + "nextPause": { + "start": "2027-06-09T23:50:00.000Z", + "end": "2027-06-11T00:00:00.000Z" + }, + "ticker": "IWF", + "instrumentType": "stock" + } + }, + "0x467e59ce5d5fe01686d4a80dd1e1dae13549aa6c": { + "address": "0x467e59ce5d5fe01686d4a80dd1e1dae13549aa6c", + "symbol": "BIDUON", + "decimals": 18, + "name": "Baidu (Ondo Tokenized)", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x467e59ce5d5fe01686d4a80dd1e1dae13549aa6c.png", + "aggregators": ["CoinGecko", "LiFi", "Rubic", "Rango", "Ondo"], + "occurrences": 5, + "rwaData": { + "market": { + "nextOpen": "2026-05-18T20:01:00.000Z", + "nextClose": "2026-05-18T19:59:00.000Z" + }, + "nextPause": { + "start": null, + "end": null + }, + "ticker": "BIDU", + "instrumentType": "stock" + } + }, + "0x03e4bd1ea53f1da84513da0319d1f03dd1bbcf93": { + "address": "0x03e4bd1ea53f1da84513da0319d1f03dd1bbcf93", + "symbol": "ORCLON", + "decimals": 18, + "name": "Oracle (Ondo Tokenized)", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x03e4bd1ea53f1da84513da0319d1f03dd1bbcf93.png", + "aggregators": ["CoinGecko", "LiFi", "Rubic", "Rango", "Ondo"], + "occurrences": 5, + "rwaData": { + "market": { + "nextOpen": "2026-05-18T20:01:00.000Z", + "nextClose": "2026-05-18T19:59:00.000Z" + }, + "nextPause": { + "start": "2026-06-10T09:00:00.000Z", + "end": "2026-06-10T23:30:00.000Z" + }, + "ticker": "ORCL", + "instrumentType": "stock" + } + }, + "0x992879cd8ce0c312d98648875b5a8d6d042cbf34": { + "address": "0x992879cd8ce0c312d98648875b5a8d6d042cbf34", + "symbol": "CRCLON", + "decimals": 18, + "name": "Circle Internet Group (Ondo Tokenized)", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x992879cd8ce0c312d98648875b5a8d6d042cbf34.png", + "aggregators": ["CoinGecko", "LiFi", "Rubic", "Rango", "Ondo"], + "occurrences": 5, + "rwaData": { + "market": { + "nextOpen": "2026-05-18T20:01:00.000Z", + "nextClose": "2026-05-18T19:59:00.000Z" + }, + "nextPause": { + "start": null, + "end": null + }, + "ticker": "CRCL", + "instrumentType": "stock" + } + }, + "0x0eaa1a75bd682a5669ab2371a559fbd039c6b9eb": { + "address": "0x0eaa1a75bd682a5669ab2371a559fbd039c6b9eb", + "symbol": "PANWON", + "decimals": 18, + "name": "Palo Alto Networks (Ondo Tokenized)", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x0eaa1a75bd682a5669ab2371a559fbd039c6b9eb.png", + "aggregators": ["CoinGecko", "LiFi", "Rubic", "Rango", "Ondo"], + "occurrences": 5, + "rwaData": { + "market": { + "nextOpen": "2026-05-18T20:01:00.000Z", + "nextClose": "2026-05-18T19:59:00.000Z" + }, + "nextPause": { + "start": "2026-06-02T20:00:00.000Z", + "end": "2026-06-02T23:30:00.000Z" + }, + "ticker": "PANW", + "instrumentType": "stock" + } + }, + "0x317bf42b43a394860718266dec445dcc9fd9da49": { + "address": "0x317bf42b43a394860718266dec445dcc9fd9da49", + "symbol": "JPMON", + "decimals": 18, + "name": "JPMorgan Chase (Ondo Tokenized)", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x317bf42b43a394860718266dec445dcc9fd9da49.png", + "aggregators": ["CoinGecko", "LiFi", "Rubic", "Rango", "Ondo"], + "occurrences": 5, + "rwaData": { + "market": { + "nextOpen": "2026-05-18T20:01:00.000Z", + "nextClose": "2026-05-18T19:59:00.000Z" + }, + "nextPause": { + "start": null, + "end": null + }, + "ticker": "JPM", + "instrumentType": "stock" + } + }, + "0x167e93a849a0cc479769132552b99aa1cfa0948c": { + "address": "0x167e93a849a0cc479769132552b99aa1cfa0948c", + "symbol": "IJHON", + "decimals": 18, + "name": "iShares Core S&P MidCap ETF (Ondo Tokenized)", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x167e93a849a0cc479769132552b99aa1cfa0948c.png", + "aggregators": ["CoinGecko", "LiFi", "Rubic", "Rango", "Ondo"], + "occurrences": 5, + "rwaData": { + "market": { + "nextOpen": "2026-05-18T20:01:00.000Z", + "nextClose": "2026-05-18T19:59:00.000Z" + }, + "nextPause": { + "start": "2027-06-09T23:50:00.000Z", + "end": "2027-06-11T00:00:00.000Z" + }, + "ticker": "IJH", + "instrumentType": "stock" + } + }, + "0x390a684ef9cade28a7ad0dfa61ab1eb3842618c4": { + "address": "0x390a684ef9cade28a7ad0dfa61ab1eb3842618c4", + "symbol": "AAPLON", + "decimals": 18, + "name": "Apple (Ondo Tokenized)", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x390a684ef9cade28a7ad0dfa61ab1eb3842618c4.png", + "aggregators": ["CoinGecko", "LiFi", "Rubic", "Rango", "Ondo"], + "occurrences": 5, + "rwaData": { + "market": { + "nextOpen": "2026-05-18T20:01:00.000Z", + "nextClose": "2026-05-18T19:59:00.000Z" + }, + "nextPause": { + "start": null, + "end": null + }, + "ticker": "AAPL", + "instrumentType": "stock" + } + }, + "0xa9ee28c80f960b889dfbd1902055218cba016f75": { + "address": "0xa9ee28c80f960b889dfbd1902055218cba016f75", + "symbol": "NVDAON", + "decimals": 18, + "name": "NVIDIA (Ondo Tokenized)", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xa9ee28c80f960b889dfbd1902055218cba016f75.png", + "aggregators": ["CoinGecko", "LiFi", "Rubic", "Rango", "Ondo"], + "occurrences": 5, + "rwaData": { + "market": { + "nextOpen": "2026-05-18T20:01:00.000Z", + "nextClose": "2026-05-18T19:59:00.000Z" + }, + "nextPause": { + "start": "2026-05-20T20:00:00.000Z", + "end": "2026-05-20T23:30:00.000Z" + }, + "ticker": "NVDA", + "instrumentType": "stock" + } + }, + "0x2494b603319d4d9f9715c9f4496d9e0364b59d93": { + "address": "0x2494b603319d4d9f9715c9f4496d9e0364b59d93", + "symbol": "TSLAON", + "decimals": 18, + "name": "Tesla (Ondo Tokenized)", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x2494b603319d4d9f9715c9f4496d9e0364b59d93.png", + "aggregators": ["CoinGecko", "LiFi", "Rubic", "Rango", "Ondo"], + "occurrences": 5, + "rwaData": { + "market": { + "nextOpen": "2026-05-18T20:01:00.000Z", + "nextClose": "2026-05-18T19:59:00.000Z" + }, + "nextPause": { + "start": null, + "end": null + }, + "ticker": "TSLA", + "instrumentType": "stock" + } + }, + "0x500eafc69b68acd6f27064f9b75f1c7d91cc4d9f": { + "address": "0x500eafc69b68acd6f27064f9b75f1c7d91cc4d9f", + "symbol": "IWMON", + "decimals": 18, + "name": "iShares Russell 2000 ETF (Ondo Tokenized)", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x500eafc69b68acd6f27064f9b75f1c7d91cc4d9f.png", + "aggregators": ["CoinGecko", "LiFi", "Rubic", "Rango", "Ondo"], + "occurrences": 5, + "rwaData": { + "market": { + "nextOpen": "2026-05-18T20:01:00.000Z", + "nextClose": "2026-05-18T19:59:00.000Z" + }, + "nextPause": { + "start": "2027-06-09T23:50:00.000Z", + "end": "2027-06-11T00:00:00.000Z" + }, + "ticker": "IWM", + "instrumentType": "stock" + } + }, + "0xf69e40069ac227c11459e3f4e8a446b3401616b6": { + "address": "0xf69e40069ac227c11459e3f4e8a446b3401616b6", + "symbol": "TLTON", + "decimals": 18, + "name": "iShares 20+ Year Treasury Bond ETF (Ondo Tokenized)", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xf69e40069ac227c11459e3f4e8a446b3401616b6.png", + "aggregators": ["CoinGecko", "LiFi", "Rubic", "Rango", "Ondo"], + "occurrences": 5, + "rwaData": { + "market": { + "nextOpen": "2026-05-18T20:01:00.000Z", + "nextClose": "2026-05-18T19:59:00.000Z" + }, + "nextPause": { + "start": "2027-06-30T23:50:00.000Z", + "end": "2027-07-02T00:00:00.000Z" + }, + "ticker": "TLT", + "instrumentType": "stock" + } + }, + "0x7048f5227b032326cc8dbc53cf3fddd947a2c757": { + "address": "0x7048f5227b032326cc8dbc53cf3fddd947a2c757", + "symbol": "NFLXON", + "decimals": 18, + "name": "Netflix (Ondo Tokenized)", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x7048f5227b032326cc8dbc53cf3fddd947a2c757.png", + "aggregators": ["CoinGecko", "LiFi", "Rubic", "Rango", "Ondo"], + "occurrences": 5, + "rwaData": { + "market": { + "nextOpen": "2026-05-18T20:01:00.000Z", + "nextClose": "2026-05-18T19:59:00.000Z" + }, + "nextPause": { + "start": null, + "end": null + }, + "ticker": "NFLX", + "instrumentType": "stock" + } + }, + "0x60a8f8e05200ff73afde9e2cae819bf1605f0bdd": { + "address": "0x60a8f8e05200ff73afde9e2cae819bf1605f0bdd", + "symbol": "MELION", + "decimals": 18, + "name": "MercadoLibre (Ondo Tokenized)", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x60a8f8e05200ff73afde9e2cae819bf1605f0bdd.png", + "aggregators": ["CoinGecko", "LiFi", "Rubic", "Rango", "Ondo"], + "occurrences": 5, + "rwaData": { + "market": { + "nextOpen": "2026-05-18T20:01:00.000Z", + "nextClose": "2026-05-18T19:59:00.000Z" + }, + "nextPause": { + "start": null, + "end": null + }, + "ticker": "MELI", + "instrumentType": "stock" + } + }, + "0x99e01f02d66455bb106d91d469c9eaf6ab4904f6": { + "address": "0x99e01f02d66455bb106d91d469c9eaf6ab4904f6", + "symbol": "SBETON", + "decimals": 18, + "name": "SharpLink Gaming (Ondo Tokenized)", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x99e01f02d66455bb106d91d469c9eaf6ab4904f6.png", + "aggregators": ["CoinGecko", "LiFi", "Rubic", "Rango", "Ondo"], + "occurrences": 5, + "rwaData": { + "market": { + "nextOpen": "2026-05-18T20:01:00.000Z", + "nextClose": "2026-05-18T19:59:00.000Z" + }, + "nextPause": { + "start": null, + "end": null + }, + "ticker": "SBET", + "instrumentType": "stock" + } + }, + "0x22092c94a91d019ad15536725598b0a6be0a73c0": { + "address": "0x22092c94a91d019ad15536725598b0a6be0a73c0", + "symbol": "IEMGON", + "decimals": 18, + "name": "iShares Core MSCI Emerging Markets ETF (Ondo Tokenized)", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x22092c94a91d019ad15536725598b0a6be0a73c0.png", + "aggregators": ["CoinGecko", "LiFi", "Rubic", "Rango", "Ondo"], + "occurrences": 5, + "rwaData": { + "market": { + "nextOpen": "2026-05-18T20:01:00.000Z", + "nextClose": "2026-05-18T19:59:00.000Z" + }, + "nextPause": { + "start": null, + "end": null + }, + "ticker": "IEMG", + "instrumentType": "stock" + } + }, + "0xfab99fcf605fd8f4593edb70a43ba56542777777": { + "address": "0xfab99fcf605fd8f4593edb70a43ba56542777777", + "symbol": "ZBT", + "decimals": 18, + "name": "ZEROBASE", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xfab99fcf605fd8f4593edb70a43ba56542777777.png", + "aggregators": ["CoinGecko", "LiFi", "Socket", "Rubic", "Squid"], + "occurrences": 5 + }, + "0x66fd8de541c0594b4dccdfc13bf3a390e50d3afd": { + "address": "0x66fd8de541c0594b4dccdfc13bf3a390e50d3afd", + "symbol": "TURTLE", + "decimals": 18, + "name": "Turtle", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x66fd8de541c0594b4dccdfc13bf3a390e50d3afd.png", + "aggregators": [ + "PancakeExtended", + "LiFi", + "Socket", + "Rubic", + "Rango" + ], + "occurrences": 5 + }, + "0xf3d5b4c34ed623478cc5141861776e6cf7ae3a1e": { + "address": "0xf3d5b4c34ed623478cc5141861776e6cf7ae3a1e", + "symbol": "KGEN", + "decimals": 8, + "name": "KGEN", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xf3d5b4c34ed623478cc5141861776e6cf7ae3a1e.png", + "aggregators": [ + "PancakeExtended", + "LiFi", + "Rubic", + "Squid", + "Rango" + ], + "occurrences": 5 + }, + "0xea37a8de1de2d9d10772eeb569e28bfa5cb17707": { + "address": "0xea37a8de1de2d9d10772eeb569e28bfa5cb17707", + "symbol": "JCT", + "decimals": 18, + "name": "JANCTION", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xea37a8de1de2d9d10772eeb569e28bfa5cb17707.png", + "aggregators": [ + "PancakeExtended", + "LiFi", + "Socket", + "Rubic", + "Rango" + ], + "occurrences": 5 + }, + "0x91152b4ef635403efbae860edd0f8c321d7c035d": { + "address": "0x91152b4ef635403efbae860edd0f8c321d7c035d", + "symbol": "IRYS", + "decimals": 18, + "name": "Irys", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x91152b4ef635403efbae860edd0f8c321d7c035d.png", + "aggregators": [ + "PancakeExtended", + "LiFi", + "Socket", + "Rubic", + "Rango" + ], + "occurrences": 5 + }, + "0xfe930c2d63aed9b82fc4dbc801920dd2c1a3224f": { + "address": "0xfe930c2d63aed9b82fc4dbc801920dd2c1a3224f", + "symbol": "NIGHT", + "decimals": 18, + "name": "NIGHT", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xfe930c2d63aed9b82fc4dbc801920dd2c1a3224f.png", + "aggregators": [ + "PancakeExtended", + "LiFi", + "Rubic", + "Squid", + "Rango" + ], + "occurrences": 5 + }, + "0x04baf95fd4c52fd09a56d840baee0ab8d7357bf0": { + "address": "0x04baf95fd4c52fd09a56d840baee0ab8d7357bf0", + "symbol": "ONE", + "decimals": 18, + "name": "One", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x04baf95fd4c52fd09a56d840baee0ab8d7357bf0.png", + "aggregators": [ + "PancakeExtended", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0xed4bb33f20f32e989af975196e86019773a7cff0": { + "address": "0xed4bb33f20f32e989af975196e86019773a7cff0", + "symbol": "UTU", + "decimals": 18, + "name": "UTU Coin", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xed4bb33f20f32e989af975196e86019773a7cff0.png", + "aggregators": [ + "PancakeCoinMarketCap", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0xf6565a97dc832d93dc83b75ee9aa5c7e8ecb0f9d": { + "address": "0xf6565a97dc832d93dc83b75ee9aa5c7e8ecb0f9d", + "symbol": "HYVE", + "decimals": 18, + "name": "Hyve", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xf6565a97dc832d93dc83b75ee9aa5c7e8ecb0f9d.png", + "aggregators": [ + "PancakeCoinMarketCap", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x846f52020749715f02aef25b5d1d65e48945649d": { + "address": "0x846f52020749715f02aef25b5d1d65e48945649d", + "symbol": "UMB", + "decimals": 18, + "name": "Umbrella Network", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x846f52020749715f02aef25b5d1d65e48945649d.png", + "aggregators": [ + "PancakeCoinMarketCap", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0xd4fbc57b6233f268e7fba3b66e62719d74deecbc": { + "address": "0xd4fbc57b6233f268e7fba3b66e62719d74deecbc", + "symbol": "MOD", + "decimals": 18, + "name": "Modefi", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xd4fbc57b6233f268e7fba3b66e62719d74deecbc.png", + "aggregators": [ + "PancakeCoinMarketCap", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0xd98438889ae7364c7e2a3540547fad042fb24642": { + "address": "0xd98438889ae7364c7e2a3540547fad042fb24642", + "symbol": "CELL", + "decimals": 18, + "name": "Cellframe", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xd98438889ae7364c7e2a3540547fad042fb24642.png", + "aggregators": [ + "PancakeCoinMarketCap", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x393d87e44c7b1f5ba521b351532c24ece253b849": { + "address": "0x393d87e44c7b1f5ba521b351532c24ece253b849", + "symbol": "BLES", + "decimals": 18, + "name": "Blind Boxes", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x393d87e44c7b1f5ba521b351532c24ece253b849.png", + "aggregators": [ + "PancakeCoinMarketCap", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0xa0a2ee912caf7921eaabc866c6ef6fec8f7e90a4": { + "address": "0xa0a2ee912caf7921eaabc866c6ef6fec8f7e90a4", + "symbol": "DPR", + "decimals": 18, + "name": "Deeper Network", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xa0a2ee912caf7921eaabc866c6ef6fec8f7e90a4.png", + "aggregators": [ + "PancakeCoinMarketCap", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x8c907e0a72c3d55627e853f4ec6a96b0c8771145": { + "address": "0x8c907e0a72c3d55627e853f4ec6a96b0c8771145", + "symbol": "ZIG", + "decimals": 18, + "name": "ZIGChain", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x8c907e0a72c3d55627e853f4ec6a96b0c8771145.png", + "aggregators": [ + "PancakeCoinMarketCap", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x2a4dffa1fa0f86ce7f0982f88aecc199fb3476bc": { + "address": "0x2a4dffa1fa0f86ce7f0982f88aecc199fb3476bc", + "symbol": "OCC", + "decimals": 18, + "name": "OccamFi", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x2a4dffa1fa0f86ce7f0982f88aecc199fb3476bc.png", + "aggregators": [ + "PancakeCoinMarketCap", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x681fd3e49a6188fc526784ee70aa1c269ee2b887": { + "address": "0x681fd3e49a6188fc526784ee70aa1c269ee2b887", + "symbol": "FLY", + "decimals": 4, + "name": "Franklin", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x681fd3e49a6188fc526784ee70aa1c269ee2b887.png", + "aggregators": [ + "PancakeCoinMarketCap", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x474021845c4643113458ea4414bdb7fb74a01a77": { + "address": "0x474021845c4643113458ea4414bdb7fb74a01a77", + "symbol": "UNO", + "decimals": 18, + "name": "Uno Re", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x474021845c4643113458ea4414bdb7fb74a01a77.png", + "aggregators": [ + "PancakeCoinMarketCap", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0xd2e7b964770fcf51df088a5f0bb2d33a3c60cccf": { + "address": "0xd2e7b964770fcf51df088a5f0bb2d33a3c60cccf", + "symbol": "ISP", + "decimals": 18, + "name": "Ispolink", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xd2e7b964770fcf51df088a5f0bb2d33a3c60cccf.png", + "aggregators": [ + "PancakeCoinMarketCap", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x86b3f23b6e90f5bbfac59b5b2661134ef8ffd255": { + "address": "0x86b3f23b6e90f5bbfac59b5b2661134ef8ffd255", + "symbol": "DON", + "decimals": 18, + "name": "Don-key", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x86b3f23b6e90f5bbfac59b5b2661134ef8ffd255.png", + "aggregators": [ + "PancakeCoinMarketCap", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x9ba6a67a6f3b21705a46b380a1b97373a33da311": { + "address": "0x9ba6a67a6f3b21705a46b380a1b97373a33da311", + "symbol": "FEAR", + "decimals": 18, + "name": "FEAR", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x9ba6a67a6f3b21705a46b380a1b97373a33da311.png", + "aggregators": [ + "PancakeCoinMarketCap", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0xfd5af95c12446b60d23e16a4ea95690ce942e5dc": { + "address": "0xfd5af95c12446b60d23e16a4ea95690ce942e5dc", + "symbol": "FREL", + "decimals": 18, + "name": "Freela", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xfd5af95c12446b60d23e16a4ea95690ce942e5dc.png", + "aggregators": [ + "PancakeCoinMarketCap", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x08bc237aa00f275b758542c9f5c125b568bc390a": { + "address": "0x08bc237aa00f275b758542c9f5c125b568bc390a", + "symbol": "QDX", + "decimals": 18, + "name": "Quidax", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x08bc237aa00f275b758542c9f5c125b568bc390a.png", + "aggregators": [ + "PancakeCoinMarketCap", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x678e840c640f619e17848045d23072844224dd37": { + "address": "0x678e840c640f619e17848045d23072844224dd37", + "symbol": "CRTS", + "decimals": 18, + "name": "Cratos", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x678e840c640f619e17848045d23072844224dd37.png", + "aggregators": [ + "PancakeCoinMarketCap", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x8357c604c5533fa0053beaaa1494da552cea38f7": { + "address": "0x8357c604c5533fa0053beaaa1494da552cea38f7", + "symbol": "SPO", + "decimals": 18, + "name": "Spores Network", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x8357c604c5533fa0053beaaa1494da552cea38f7.png", + "aggregators": [ + "PancakeCoinMarketCap", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x9c47e503b2f497e9ad9f1c0dfa6bd9fd5456aa4e": { + "address": "0x9c47e503b2f497e9ad9f1c0dfa6bd9fd5456aa4e", + "symbol": "ZERC", + "decimals": 18, + "name": "zkRace", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x9c47e503b2f497e9ad9f1c0dfa6bd9fd5456aa4e.png", + "aggregators": [ + "PancakeCoinMarketCap", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x41065e3428188ba6eb27fbdde8526ae3af8e3830": { + "address": "0x41065e3428188ba6eb27fbdde8526ae3af8e3830", + "symbol": "SWASH", + "decimals": 18, + "name": "Swash", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x41065e3428188ba6eb27fbdde8526ae3af8e3830.png", + "aggregators": [ + "PancakeCoinMarketCap", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x9df465460938f9ebdf51c38cc87d72184471f8f0": { + "address": "0x9df465460938f9ebdf51c38cc87d72184471f8f0", + "symbol": "GENE", + "decimals": 18, + "name": "Genopets", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x9df465460938f9ebdf51c38cc87d72184471f8f0.png", + "aggregators": [ + "PancakeCoinMarketCap", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x4550003152f12014558e5ce025707e4dd841100f": { + "address": "0x4550003152f12014558e5ce025707e4dd841100f", + "symbol": "KZEN", + "decimals": 18, + "name": "Kaizen.Finance", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x4550003152f12014558e5ce025707e4dd841100f.png", + "aggregators": [ + "PancakeCoinMarketCap", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x0f1cbed8efa0e012adbccb1638d0ab0147d5ac00": { + "address": "0x0f1cbed8efa0e012adbccb1638d0ab0147d5ac00", + "symbol": "HELLO", + "decimals": 18, + "name": "HELLO", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x0f1cbed8efa0e012adbccb1638d0ab0147d5ac00.png", + "aggregators": [ + "PancakeCoinMarketCap", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x7881cd2b5724431372f57c50e91611352557a606": { + "address": "0x7881cd2b5724431372f57c50e91611352557a606", + "symbol": "HYPC", + "decimals": 6, + "name": "HyperCycle", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x7881cd2b5724431372f57c50e91611352557a606.png", + "aggregators": [ + "PancakeCoinMarketCap", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x03aa6298f1370642642415edc0db8b957783e8d6": { + "address": "0x03aa6298f1370642642415edc0db8b957783e8d6", + "symbol": "NMT", + "decimals": 18, + "name": "NetMind Token", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x03aa6298f1370642642415edc0db8b957783e8d6.png", + "aggregators": [ + "PancakeExtended", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0xba0dda8762c24da9487f5fa026a9b64b695a07ea": { + "address": "0xba0dda8762c24da9487f5fa026a9b64b695a07ea", + "symbol": "OX", + "decimals": 18, + "name": "OX Coin", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xba0dda8762c24da9487f5fa026a9b64b695a07ea.png", + "aggregators": [ + "PancakeExtended", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0xa9972b1fac35fdd8cbdbaa315a002b2ad91d2ad6": { + "address": "0xa9972b1fac35fdd8cbdbaa315a002b2ad91d2ad6", + "symbol": "CYBRO", + "decimals": 18, + "name": "CYBRO", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xa9972b1fac35fdd8cbdbaa315a002b2ad91d2ad6.png", + "aggregators": ["CoinGecko", "LiFi", "Socket", "Rubic", "Rango"], + "occurrences": 5 + }, + "0x825459139c897d769339f295e962396c4f9e4a4d": { + "address": "0x825459139c897d769339f295e962396c4f9e4a4d", + "symbol": "GAME", + "decimals": 18, + "name": "GameBuild", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x825459139c897d769339f295e962396c4f9e4a4d.png", + "aggregators": [ + "PancakeExtended", + "LiFi", + "Socket", + "Rubic", + "Rango" + ], + "occurrences": 5 + }, + "0x9c7beba8f6ef6643abd725e45a4e8387ef260649": { + "address": "0x9c7beba8f6ef6643abd725e45a4e8387ef260649", + "symbol": "G", + "decimals": 18, + "name": "Gravity", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x9c7beba8f6ef6643abd725e45a4e8387ef260649.png", + "aggregators": [ + "PancakeCoinMarketCap", + "LiFi", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x2492d0006411af6c8bbb1c8afc1b0197350a79e9": { + "address": "0x2492d0006411af6c8bbb1c8afc1b0197350a79e9", + "symbol": "USR", + "decimals": 18, + "name": "USR", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x2492d0006411af6c8bbb1c8afc1b0197350a79e9.png", + "aggregators": [ + "PancakeExtended", + "LiFi", + "Socket", + "Rubic", + "Rango" + ], + "occurrences": 5 + }, + "0xe2b1dc2d4a3b4e59fdf0c47b71a7a86391a8b35a": { + "address": "0xe2b1dc2d4a3b4e59fdf0c47b71a7a86391a8b35a", + "symbol": "RWA", + "decimals": 18, + "name": "RWA Inc.", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xe2b1dc2d4a3b4e59fdf0c47b71a7a86391a8b35a.png", + "aggregators": [ + "CoinGecko", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x4acd4d03af6f9cc0fb7c5f0868b7b6287d7969c5": { + "address": "0x4acd4d03af6f9cc0fb7c5f0868b7b6287d7969c5", + "symbol": "USUAL", + "decimals": 18, + "name": "Usual", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x4acd4d03af6f9cc0fb7c5f0868b7b6287d7969c5.png", + "aggregators": [ + "CoinGecko", + "LiFi", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x64445f0aecc51e94ad52d8ac56b7190e764e561a": { + "address": "0x64445f0aecc51e94ad52d8ac56b7190e764e561a", + "symbol": "WFRAX", + "decimals": 18, + "name": "WFRAX", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x64445f0aecc51e94ad52d8ac56b7190e764e561a.png", + "aggregators": ["CoinGecko", "LiFi", "Socket", "Rubic", "Rango"], + "occurrences": 5 + }, + "0xe868084cf08f3c3db11f4b73a95473762d9463f7": { + "address": "0xe868084cf08f3c3db11f4b73a95473762d9463f7", + "symbol": "YU", + "decimals": 18, + "name": "YU", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xe868084cf08f3c3db11f4b73a95473762d9463f7.png", + "aggregators": ["CoinGecko", "LiFi", "Socket", "Rubic", "Rango"], + "occurrences": 5 + }, + "0xdf24f8c21cb404b3031a450d8e049d6e39fc1fa5": { + "address": "0xdf24f8c21cb404b3031a450d8e049d6e39fc1fa5", + "symbol": "BILL", + "decimals": 18, + "name": "Billions Network Token", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xdf24f8c21cb404b3031a450d8e049d6e39fc1fa5.png", + "aggregators": [ + "PancakeExtended", + "LiFi", + "Socket", + "Rubic", + "Rango" + ], + "occurrences": 5 + }, + "0x5ffd0eadc186af9512542d0d5e5eafc65d5afc5b": { + "address": "0x5ffd0eadc186af9512542d0d5e5eafc65d5afc5b", + "symbol": "HEMI", + "decimals": 18, + "name": "Hemi", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x5ffd0eadc186af9512542d0d5e5eafc65d5afc5b.png", + "aggregators": [ + "PancakeExtended", + "1inch", + "LiFi", + "Socket", + "Rubic" + ], + "occurrences": 5 + }, + "0x8c7bf0ed6bc778bde1489de1592c1aad3e66371d": { + "address": "0x8c7bf0ed6bc778bde1489de1592c1aad3e66371d", + "symbol": "QBTSON", + "decimals": 18, + "name": "D-Wave Quantum (Ondo Tokenized)", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x8c7bf0ed6bc778bde1489de1592c1aad3e66371d.png", + "aggregators": ["CoinGecko", "LiFi", "Rubic", "Rango", "Ondo"], + "occurrences": 5, + "rwaData": { + "market": { + "nextOpen": "2026-05-18T20:01:00.000Z", + "nextClose": "2026-05-18T19:59:00.000Z" + }, + "nextPause": { + "start": null, + "end": null + }, + "ticker": "QBTS", + "instrumentType": "stock" + } + }, + "0x0dae81a905b645a3d1e67129b89cd0acda224e9a": { + "address": "0x0dae81a905b645a3d1e67129b89cd0acda224e9a", + "symbol": "HYGON", + "decimals": 18, + "name": "iBoxx $ High Yield Corporate Bond ETF (Ondo Tokenized)", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x0dae81a905b645a3d1e67129b89cd0acda224e9a.png", + "aggregators": ["CoinGecko", "LiFi", "Rubic", "Rango", "Ondo"], + "occurrences": 5, + "rwaData": { + "market": { + "nextOpen": "2026-05-18T20:01:00.000Z", + "nextClose": "2026-05-18T19:59:00.000Z" + }, + "nextPause": { + "start": "2027-06-30T23:50:00.000Z", + "end": "2027-07-02T00:00:00.000Z" + }, + "ticker": "HYG", + "instrumentType": "stock" + } + }, + "0xc4a88a72b848255fd24da3c1ad6755d980535fb1": { + "address": "0xc4a88a72b848255fd24da3c1ad6755d980535fb1", + "symbol": "RIOTON", + "decimals": 18, + "name": "Riot Platforms (Ondo Tokenized)", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xc4a88a72b848255fd24da3c1ad6755d980535fb1.png", + "aggregators": ["CoinGecko", "LiFi", "Rubic", "Rango", "Ondo"], + "occurrences": 5, + "rwaData": { + "market": { + "nextOpen": "2026-05-18T20:01:00.000Z", + "nextClose": "2026-05-18T19:59:00.000Z" + }, + "nextPause": { + "start": null, + "end": null + }, + "ticker": "RIOT", + "instrumentType": "stock" + } + }, + "0xd226d8170ee38793430c7dec6903df4b818bb74c": { + "address": "0xd226d8170ee38793430c7dec6903df4b818bb74c", + "symbol": "MARAON", + "decimals": 18, + "name": "MARA Holdings (Ondo Tokenized)", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xd226d8170ee38793430c7dec6903df4b818bb74c.png", + "aggregators": ["CoinGecko", "LiFi", "Rubic", "Rango", "Ondo"], + "occurrences": 5, + "rwaData": { + "market": { + "nextOpen": "2026-05-18T20:01:00.000Z", + "nextClose": "2026-05-18T19:59:00.000Z" + }, + "nextPause": { + "start": null, + "end": null + }, + "ticker": "MARA", + "instrumentType": "stock" + } + }, + "0x4693f6f5ef257381a28afd0673e64d8b32d5c6ad": { + "address": "0x4693f6f5ef257381a28afd0673e64d8b32d5c6ad", + "symbol": "HIMSON", + "decimals": 18, + "name": "Hims & Hers Health (Ondo Tokenized)", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x4693f6f5ef257381a28afd0673e64d8b32d5c6ad.png", + "aggregators": ["CoinGecko", "LiFi", "Rubic", "Rango", "Ondo"], + "occurrences": 5, + "rwaData": { + "market": { + "nextOpen": "2026-05-18T20:01:00.000Z", + "nextClose": "2026-05-18T19:59:00.000Z" + }, + "nextPause": { + "start": null, + "end": null + }, + "ticker": "HIMS", + "instrumentType": "stock" + } + }, + "0x38b9a53bfdc5dba58a29bd6992341927c2fca637": { + "address": "0x38b9a53bfdc5dba58a29bd6992341927c2fca637", + "symbol": "EFAON", + "decimals": 18, + "name": "iShares MSCI EAFE ETF (Ondo Tokenized)", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x38b9a53bfdc5dba58a29bd6992341927c2fca637.png", + "aggregators": ["CoinGecko", "LiFi", "Rubic", "Rango", "Ondo"], + "occurrences": 5, + "rwaData": { + "market": { + "nextOpen": "2026-05-18T20:01:00.000Z", + "nextClose": "2026-05-18T19:59:00.000Z" + }, + "nextPause": { + "start": "2027-06-09T23:50:00.000Z", + "end": "2027-06-11T00:00:00.000Z" + }, + "ticker": "EFA", + "instrumentType": "stock" + } + }, + "0x918008c3d29496c37b478b611967beaca365af36": { + "address": "0x918008c3d29496c37b478b611967beaca365af36", + "symbol": "IEFAON", + "decimals": 18, + "name": "iShares Core MSCI EAFE ETF (Ondo Tokenized)", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x918008c3d29496c37b478b611967beaca365af36.png", + "aggregators": ["CoinGecko", "LiFi", "Rubic", "Rango", "Ondo"], + "occurrences": 5, + "rwaData": { + "market": { + "nextOpen": "2026-05-18T20:01:00.000Z", + "nextClose": "2026-05-18T19:59:00.000Z" + }, + "nextPause": { + "start": "2027-06-09T23:50:00.000Z", + "end": "2027-06-11T00:00:00.000Z" + }, + "ticker": "IEFA", + "instrumentType": "stock" + } + }, + "0x405f38b90bebf1259062cf29da299f3398662bcb": { + "address": "0x405f38b90bebf1259062cf29da299f3398662bcb", + "symbol": "KOON", + "decimals": 18, + "name": "Coca-Cola (Ondo Tokenized)", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x405f38b90bebf1259062cf29da299f3398662bcb.png", + "aggregators": ["CoinGecko", "LiFi", "Rubic", "Rango", "Ondo"], + "occurrences": 5, + "rwaData": { + "market": { + "nextOpen": "2026-05-18T20:01:00.000Z", + "nextClose": "2026-05-18T19:59:00.000Z" + }, + "nextPause": { + "start": "2026-06-14T23:52:00.000Z", + "end": "2026-06-15T00:12:00.000Z" + }, + "ticker": "KO", + "instrumentType": "stock" + } + }, + "0xe92be960ae64f6a914ca77014cac9e56de7f36c1": { + "address": "0xe92be960ae64f6a914ca77014cac9e56de7f36c1", + "symbol": "JDON", + "decimals": 18, + "name": "JD.com (Ondo Tokenized)", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xe92be960ae64f6a914ca77014cac9e56de7f36c1.png", + "aggregators": ["CoinGecko", "LiFi", "Rubic", "Rango", "Ondo"], + "occurrences": 5, + "rwaData": { + "market": { + "nextOpen": "2026-05-18T20:01:00.000Z", + "nextClose": "2026-05-18T19:59:00.000Z" + }, + "nextPause": { + "start": null, + "end": null + }, + "ticker": "JD", + "instrumentType": "stock" + } + }, + "0x8b6acf6041a81567f012ff6a4c6d96d5818d74bf": { + "address": "0x8b6acf6041a81567f012ff6a4c6d96d5818d74bf", + "symbol": "MUON", + "decimals": 18, + "name": "Micron Technology (Ondo Tokenized)", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x8b6acf6041a81567f012ff6a4c6d96d5818d74bf.png", + "aggregators": ["CoinGecko", "LiFi", "Rubic", "Rango", "Ondo"], + "occurrences": 5, + "rwaData": { + "market": { + "nextOpen": "2026-05-18T20:01:00.000Z", + "nextClose": "2026-05-18T19:59:00.000Z" + }, + "nextPause": { + "start": null, + "end": null + }, + "ticker": "MU", + "instrumentType": "stock" + } + }, + "0xdabb9aff4cf02f26d2014e4ca9f94ac6fe6572a3": { + "address": "0xdabb9aff4cf02f26d2014e4ca9f94ac6fe6572a3", + "symbol": "GMEON", + "decimals": 18, + "name": "GameStop (Ondo Tokenized)", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xdabb9aff4cf02f26d2014e4ca9f94ac6fe6572a3.png", + "aggregators": ["CoinGecko", "LiFi", "Rubic", "Rango", "Ondo"], + "occurrences": 5, + "rwaData": { + "market": { + "nextOpen": "2026-05-18T20:01:00.000Z", + "nextClose": "2026-05-18T19:59:00.000Z" + }, + "nextPause": { + "start": "2026-06-09T09:00:00.000Z", + "end": "2026-06-09T23:30:00.000Z" + }, + "ticker": "GME", + "instrumentType": "stock" + } + }, + "0xa7d1e886acf66ec0656df2decb4b7c893a3bab4c": { + "address": "0xa7d1e886acf66ec0656df2decb4b7c893a3bab4c", + "symbol": "WMTON", + "decimals": 18, + "name": "Walmart (Ondo Tokenized)", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xa7d1e886acf66ec0656df2decb4b7c893a3bab4c.png", + "aggregators": ["CoinGecko", "LiFi", "Rubic", "Rango", "Ondo"], + "occurrences": 5, + "rwaData": { + "market": { + "nextOpen": "2026-05-18T20:01:00.000Z", + "nextClose": "2026-05-18T19:59:00.000Z" + }, + "nextPause": { + "start": "2026-05-21T09:00:00.000Z", + "end": "2026-05-21T13:31:00.000Z" + }, + "ticker": "WMT", + "instrumentType": "stock" + } + }, + "0x43d0b380c33cd004a6a69abd61843881a2de4113": { + "address": "0x43d0b380c33cd004a6a69abd61843881a2de4113", + "symbol": "SHOPON", + "decimals": 18, + "name": "Shopify (Ondo Tokenized)", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x43d0b380c33cd004a6a69abd61843881a2de4113.png", + "aggregators": ["CoinGecko", "LiFi", "Rubic", "Rango", "Ondo"], + "occurrences": 5, + "rwaData": { + "market": { + "nextOpen": "2026-05-18T20:01:00.000Z", + "nextClose": "2026-05-18T19:59:00.000Z" + }, + "nextPause": { + "start": null, + "end": null + }, + "ticker": "SHOP", + "instrumentType": "stock" + } + }, + "0x629520dee1620def11596f84e85de9f1ff653012": { + "address": "0x629520dee1620def11596f84e85de9f1ff653012", + "symbol": "WFCON", + "decimals": 18, + "name": "Wells Fargo (Ondo Tokenized)", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x629520dee1620def11596f84e85de9f1ff653012.png", + "aggregators": ["CoinGecko", "LiFi", "Rubic", "Rango", "Ondo"], + "occurrences": 5, + "rwaData": { + "market": { + "nextOpen": "2026-05-18T20:01:00.000Z", + "nextClose": "2026-05-18T19:59:00.000Z" + }, + "nextPause": { + "start": null, + "end": null + }, + "ticker": "WFC", + "instrumentType": "stock" + } + }, + "0xc37042a7a4fa510d8884a433762ab87257b91965": { + "address": "0xc37042a7a4fa510d8884a433762ab87257b91965", + "symbol": "TSMON", + "decimals": 18, + "name": "Taiwan Semiconductor Manufacturing (Ondo Tokenized)", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xc37042a7a4fa510d8884a433762ab87257b91965.png", + "aggregators": ["CoinGecko", "LiFi", "Rubic", "Rango", "Ondo"], + "occurrences": 5, + "rwaData": { + "market": { + "nextOpen": "2026-05-18T20:01:00.000Z", + "nextClose": "2026-05-18T19:59:00.000Z" + }, + "nextPause": { + "start": null, + "end": null + }, + "ticker": "TSM", + "instrumentType": "stock" + } + }, + "0xd5964f3fcee8d649995ab88f04b8982539c282d2": { + "address": "0xd5964f3fcee8d649995ab88f04b8982539c282d2", + "symbol": "BABAON", + "decimals": 18, + "name": "Alibaba (Ondo Tokenized)", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xd5964f3fcee8d649995ab88f04b8982539c282d2.png", + "aggregators": ["CoinGecko", "LiFi", "Rubic", "Rango", "Ondo"], + "occurrences": 5, + "rwaData": { + "market": { + "nextOpen": "2026-05-18T20:01:00.000Z", + "nextClose": "2026-05-18T19:59:00.000Z" + }, + "nextPause": { + "start": null, + "end": null + }, + "ticker": "BABA", + "instrumentType": "stock" + } + }, + "0xd04a2bb053277721a8321d7441eed5b42fdf7250": { + "address": "0xd04a2bb053277721a8321d7441eed5b42fdf7250", + "symbol": "CRMON", + "decimals": 18, + "name": "Salesforce (Ondo Tokenized)", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xd04a2bb053277721a8321d7441eed5b42fdf7250.png", + "aggregators": ["CoinGecko", "LiFi", "Rubic", "Rango", "Ondo"], + "occurrences": 5, + "rwaData": { + "market": { + "nextOpen": "2026-05-18T20:01:00.000Z", + "nextClose": "2026-05-18T19:59:00.000Z" + }, + "nextPause": { + "start": "2026-05-27T20:00:00.000Z", + "end": "2026-05-27T23:30:00.000Z" + }, + "ticker": "CRM", + "instrumentType": "stock" + } + }, + "0xf8589b526fdd65f7f301c605a6e04f0f1b4b3620": { + "address": "0xf8589b526fdd65f7f301c605a6e04f0f1b4b3620", + "symbol": "COINON", + "decimals": 18, + "name": "Coinbase (Ondo Tokenized)", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xf8589b526fdd65f7f301c605a6e04f0f1b4b3620.png", + "aggregators": ["CoinGecko", "LiFi", "Rubic", "Rango", "Ondo"], + "occurrences": 5, + "rwaData": { + "market": { + "nextOpen": "2026-05-18T20:01:00.000Z", + "nextClose": "2026-05-18T19:59:00.000Z" + }, + "nextPause": { + "start": null, + "end": null + }, + "ticker": "COIN", + "instrumentType": "stock" + } + }, + "0x995add4ba29a628a57930a8a185c62ca044ec090": { + "address": "0x995add4ba29a628a57930a8a185c62ca044ec090", + "symbol": "MCDON", + "decimals": 18, + "name": "McDonald's (Ondo Tokenized)", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x995add4ba29a628a57930a8a185c62ca044ec090.png", + "aggregators": ["CoinGecko", "LiFi", "Rubic", "Rango", "Ondo"], + "occurrences": 5, + "rwaData": { + "market": { + "nextOpen": "2026-05-18T20:01:00.000Z", + "nextClose": "2026-05-18T19:59:00.000Z" + }, + "nextPause": { + "start": null, + "end": null + }, + "ticker": "MCD", + "instrumentType": "stock" + } + }, + "0x3385cb29cca0ac66f5d2354d13ef977b49a2510f": { + "address": "0x3385cb29cca0ac66f5d2354d13ef977b49a2510f", + "symbol": "UNHON", + "decimals": 18, + "name": "UnitedHealth (Ondo Tokenized)", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x3385cb29cca0ac66f5d2354d13ef977b49a2510f.png", + "aggregators": ["CoinGecko", "LiFi", "Rubic", "Rango", "Ondo"], + "occurrences": 5, + "rwaData": { + "market": { + "nextOpen": "2026-05-18T20:01:00.000Z", + "nextClose": "2026-05-18T19:59:00.000Z" + }, + "nextPause": { + "start": null, + "end": null + }, + "ticker": "UNH", + "instrumentType": "stock" + } + }, + "0xb034f6cb52b7f2fd5a7eeeffca6b9adcd6b9a6f6": { + "address": "0xb034f6cb52b7f2fd5a7eeeffca6b9adcd6b9a6f6", + "symbol": "ASMLON", + "decimals": 18, + "name": "ASML Holding NV (Ondo Tokenized)", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xb034f6cb52b7f2fd5a7eeeffca6b9adcd6b9a6f6.png", + "aggregators": ["CoinGecko", "LiFi", "Rubic", "Rango", "Ondo"], + "occurrences": 5, + "rwaData": { + "market": { + "nextOpen": "2026-05-18T20:01:00.000Z", + "nextClose": "2026-05-18T19:59:00.000Z" + }, + "nextPause": { + "start": null, + "end": null + }, + "ticker": "ASML", + "instrumentType": "stock" + } + }, + "0x8b872732b07be325a8803cdb480d9d20b6f8d11b": { + "address": "0x8b872732b07be325a8803cdb480d9d20b6f8d11b", + "symbol": "SLVON", + "decimals": 18, + "name": "iShares Silver Trust (Ondo Tokenized)", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x8b872732b07be325a8803cdb480d9d20b6f8d11b.png", + "aggregators": ["CoinGecko", "LiFi", "Rubic", "Rango", "Ondo"], + "occurrences": 5, + "rwaData": { + "market": { + "nextOpen": "2026-05-18T20:01:00.000Z", + "nextClose": "2026-05-18T19:59:00.000Z" + }, + "nextPause": { + "start": null, + "end": null + }, + "ticker": "SLV", + "instrumentType": "stock" + } + }, + "0xcb2a0f46f67dc4c58a316f1c008edef5c2311795": { + "address": "0xcb2a0f46f67dc4c58a316f1c008edef5c2311795", + "symbol": "IAUON", + "decimals": 18, + "name": "iShares Gold Trust (Ondo Tokenized)", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xcb2a0f46f67dc4c58a316f1c008edef5c2311795.png", + "aggregators": ["CoinGecko", "LiFi", "Rubic", "Rango", "Ondo"], + "occurrences": 5, + "rwaData": { + "market": { + "nextOpen": "2026-05-18T20:01:00.000Z", + "nextClose": "2026-05-18T19:59:00.000Z" + }, + "nextPause": { + "start": null, + "end": null + }, + "ticker": "IAU", + "instrumentType": "stock" + } + }, + "0x0cde6936d305d5b34667fc46425e852efd73559a": { + "address": "0x0cde6936d305d5b34667fc46425e852efd73559a", + "symbol": "QQQON", + "decimals": 18, + "name": "Invesco QQQ (Ondo Tokenized)", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x0cde6936d305d5b34667fc46425e852efd73559a.png", + "aggregators": ["CoinGecko", "LiFi", "Rubic", "Rango", "Ondo"], + "occurrences": 5, + "rwaData": { + "market": { + "nextOpen": "2026-05-18T20:01:00.000Z", + "nextClose": "2026-05-18T19:59:00.000Z" + }, + "nextPause": { + "start": null, + "end": null + }, + "ticker": "QQQ", + "instrumentType": "stock" + } + }, + "0x7427bd9542e64d1ac207a540cfce194b7390a07f": { + "address": "0x7427bd9542e64d1ac207a540cfce194b7390a07f", + "symbol": "XAN", + "decimals": 18, + "name": "Anoma", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x7427bd9542e64d1ac207a540cfce194b7390a07f.png", + "aggregators": ["PancakeExtended", "Socket", "Rubic", "Rango"], + "occurrences": 4 + }, + "0x299ad4299da5b2b93fba4c96967b040c7f611099": { + "address": "0x299ad4299da5b2b93fba4c96967b040c7f611099", + "symbol": "APR", + "decimals": 18, + "name": "aPriori", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x299ad4299da5b2b93fba4c96967b040c7f611099.png", + "aggregators": ["CoinGecko", "LiFi", "Socket", "Rubic", "Rango"], + "occurrences": 5 + }, + "0x876cecb73c9ed1b1526f8e35c6a5a51a31bcf341": { + "address": "0x876cecb73c9ed1b1526f8e35c6a5a51a31bcf341", + "symbol": "VOOI", + "decimals": 18, + "name": "VOOI", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x876cecb73c9ed1b1526f8e35c6a5a51a31bcf341.png", + "aggregators": [ + "PancakeExtended", + "LiFi", + "Socket", + "Rubic", + "Rango" + ], + "occurrences": 5 + }, + "0x904567252d8f48555b7447c67dca23f0372e16be": { + "address": "0x904567252d8f48555b7447c67dca23f0372e16be", + "symbol": "KITE", + "decimals": 18, + "name": "Kite", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x904567252d8f48555b7447c67dca23f0372e16be.png", + "aggregators": [ + "PancakeExtended", + "LiFi", + "Socket", + "Rubic", + "Rango" + ], + "occurrences": 5 + }, + "0xea17df5cf6d172224892b5477a16acb111182478": { + "address": "0xea17df5cf6d172224892b5477a16acb111182478", + "symbol": "ELIZAOS", + "decimals": 9, + "name": "elizaOS", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xea17df5cf6d172224892b5477a16acb111182478.png", + "aggregators": [ + "PancakeExtended", + "1inch", + "Socket", + "Rubic", + "Rango" + ], + "occurrences": 5 + }, + "0x1d28d989f9e3ccb8b15d0cec601734514f958e4d": { + "address": "0x1d28d989f9e3ccb8b15d0cec601734514f958e4d", + "symbol": "BASED", + "decimals": 18, + "name": "Based Token", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x1d28d989f9e3ccb8b15d0cec601734514f958e4d.png", + "aggregators": [ + "PancakeExtended", + "Socket", + "Rubic", + "Squid", + "Rango" + ], + "occurrences": 5 + }, + "0xb0b92de23baa85fb06208277e925ced53edab482": { + "address": "0xb0b92de23baa85fb06208277e925ced53edab482", + "symbol": "TRIA", + "decimals": 18, + "name": "TRIA", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xb0b92de23baa85fb06208277e925ced53edab482.png", + "aggregators": [ + "PancakeExtended", + "LiFi", + "Socket", + "Rubic", + "Rango" + ], + "occurrences": 5 + }, + "0x595deaad1eb5476ff1e649fdb7efc36f1e4679cc": { + "address": "0x595deaad1eb5476ff1e649fdb7efc36f1e4679cc", + "symbol": "BSB", + "decimals": 18, + "name": "Block Street", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x595deaad1eb5476ff1e649fdb7efc36f1e4679cc.png", + "aggregators": [ + "PancakeExtended", + "LiFi", + "Socket", + "Rubic", + "Rango" + ], + "occurrences": 5 + }, + "0x85eac5ac2f758618dfa09bdbe0cf174e7d574d5b": { + "address": "0x85eac5ac2f758618dfa09bdbe0cf174e7d574d5b", + "symbol": "TRX", + "decimals": 18, + "name": "TRON", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x85eac5ac2f758618dfa09bdbe0cf174e7d574d5b.png", + "aggregators": [ + "PancakeTop100", + "LiFi", + "Socket", + "Rubic", + "Rango" + ], + "occurrences": 5 + }, + "0x07663837218a003e66310a01596af4bf4e44623d": { + "address": "0x07663837218a003e66310a01596af4bf4e44623d", + "symbol": "RUSD", + "decimals": 18, + "name": "RUSD", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x07663837218a003e66310a01596af4bf4e44623d.png", + "aggregators": [ + "PancakeTop100", + "LiFi", + "Socket", + "Rubic", + "Rango" + ], + "occurrences": 5 + }, + "0xf7b6d7e3434cb9441982f9534e6998c43eef144a": { + "address": "0xf7b6d7e3434cb9441982f9534e6998c43eef144a", + "symbol": "ASVA", + "decimals": 18, + "name": "Asva Labs", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xf7b6d7e3434cb9441982f9534e6998c43eef144a.png", + "aggregators": [ + "PancakeCoinMarketCap", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0xc4bb2e24f4b6f762d31fc28eaac98882c32bc828": { + "address": "0xc4bb2e24f4b6f762d31fc28eaac98882c32bc828", + "symbol": "BABYTRUMP", + "decimals": 18, + "name": "BABYTRUMP", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xc4bb2e24f4b6f762d31fc28eaac98882c32bc828.png", + "aggregators": [ + "PancakeCoinMarketCap", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x40e51e0ec04283e300f12f6bb98da157bb22036e": { + "address": "0x40e51e0ec04283e300f12f6bb98da157bb22036e", + "symbol": "BLXM", + "decimals": 18, + "name": "bloXmove", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x40e51e0ec04283e300f12f6bb98da157bb22036e.png", + "aggregators": [ + "PancakeCoinMarketCap", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x92868a5255c628da08f550a858a802f5351c5223": { + "address": "0x92868a5255c628da08f550a858a802f5351c5223", + "symbol": "BRIDGE", + "decimals": 18, + "name": "Cross-Chain Bridge", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x92868a5255c628da08f550a858a802f5351c5223.png", + "aggregators": [ + "PancakeCoinMarketCap", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x7e3784220740e61dc700501bd6771226e11d8897": { + "address": "0x7e3784220740e61dc700501bd6771226e11d8897", + "symbol": "CAT", + "decimals": 18, + "name": "Cyber Arena", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x7e3784220740e61dc700501bd6771226e11d8897.png", + "aggregators": [ + "PancakeCoinMarketCap", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x527856315a4bcd2f428ea7fa05ea251f7e96a50a": { + "address": "0x527856315a4bcd2f428ea7fa05ea251f7e96a50a", + "symbol": "CDFI", + "decimals": 18, + "name": "CeDeFiAi", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x527856315a4bcd2f428ea7fa05ea251f7e96a50a.png", + "aggregators": [ + "PancakeCoinGecko", + "LiFi", + "Socket", + "Rubic", + "Rango" + ], + "occurrences": 5 + }, + "0x8f36cc333f55b09bb71091409a3d7ade399e3b1c": { + "address": "0x8f36cc333f55b09bb71091409a3d7ade399e3b1c", + "symbol": "CHER", + "decimals": 18, + "name": "Cherry Network", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x8f36cc333f55b09bb71091409a3d7ade399e3b1c.png", + "aggregators": [ + "PancakeCoinMarketCap", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x422e3af98bc1de5a1838be31a56f75db4ad43730": { + "address": "0x422e3af98bc1de5a1838be31a56f75db4ad43730", + "symbol": "COW", + "decimals": 18, + "name": "CoinWind", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x422e3af98bc1de5a1838be31a56f75db4ad43730.png", + "aggregators": [ + "PancakeCoinMarketCap", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0xd6cce248263ea1e2b8cb765178c944fc16ed0727": { + "address": "0xd6cce248263ea1e2b8cb765178c944fc16ed0727", + "symbol": "CTR", + "decimals": 18, + "name": "Creator Platform", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xd6cce248263ea1e2b8cb765178c944fc16ed0727.png", + "aggregators": [ + "PancakeCoinMarketCap", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x27ae27110350b98d564b9a3eed31baebc82d878d": { + "address": "0x27ae27110350b98d564b9a3eed31baebc82d878d", + "symbol": "CUMMIES", + "decimals": 18, + "name": "CumRocket", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x27ae27110350b98d564b9a3eed31baebc82d878d.png", + "aggregators": [ + "PancakeCoinMarketCap", + "1inch", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x3b248cefa87f836a4e6f6d6c9b42991b88dc1d58": { + "address": "0x3b248cefa87f836a4e6f6d6c9b42991b88dc1d58", + "symbol": "EMP", + "decimals": 18, + "name": "Emp Money", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x3b248cefa87f836a4e6f6d6c9b42991b88dc1d58.png", + "aggregators": [ + "PancakeCoinMarketCap", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x48b19b7605429acaa8ea734117f39726a9aab1f9": { + "address": "0x48b19b7605429acaa8ea734117f39726a9aab1f9", + "symbol": "ETHO", + "decimals": 18, + "name": "Etho Protocol", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x48b19b7605429acaa8ea734117f39726a9aab1f9.png", + "aggregators": [ + "PancakeCoinMarketCap", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0xf5d8a096cccb31b9d7bce5afe812be23e3d4690d": { + "address": "0xf5d8a096cccb31b9d7bce5afe812be23e3d4690d", + "symbol": "HAPPY", + "decimals": 18, + "name": "HappyFans", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xf5d8a096cccb31b9d7bce5afe812be23e3d4690d.png", + "aggregators": [ + "PancakeExtended", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0xe87e15b9c7d989474cb6d8c56b3db4efad5b21e8": { + "address": "0xe87e15b9c7d989474cb6d8c56b3db4efad5b21e8", + "symbol": "HOKK", + "decimals": 18, + "name": "HOKK Finance", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xe87e15b9c7d989474cb6d8c56b3db4efad5b21e8.png", + "aggregators": [ + "PancakeCoinMarketCap", + "1inch", + "Socket", + "Rubic", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x284ac5af363bde6ef5296036af8fb0e9cc347b41": { + "address": "0x284ac5af363bde6ef5296036af8fb0e9cc347b41", + "symbol": "HUSL", + "decimals": 18, + "name": "The HUSL", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x284ac5af363bde6ef5296036af8fb0e9cc347b41.png", + "aggregators": [ + "PancakeCoinMarketCap", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0xea51801b8f5b88543ddad3d1727400c15b209d8f": { + "address": "0xea51801b8f5b88543ddad3d1727400c15b209d8f", + "symbol": "INUKO", + "decimals": 18, + "name": "Inuko Finance", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xea51801b8f5b88543ddad3d1727400c15b209d8f.png", + "aggregators": [ + "PancakeCoinMarketCap", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x959229d94c9060552daea25ac17193bca65d7884": { + "address": "0x959229d94c9060552daea25ac17193bca65d7884", + "symbol": "IOI", + "decimals": 6, + "name": "IOI Token", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x959229d94c9060552daea25ac17193bca65d7884.png", + "aggregators": [ + "PancakeCoinMarketCap", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x545356d4d69d8cd1213ee7e339867574738751ca": { + "address": "0x545356d4d69d8cd1213ee7e339867574738751ca", + "symbol": "KTC", + "decimals": 18, + "name": "KTX.Finance", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x545356d4d69d8cd1213ee7e339867574738751ca.png", + "aggregators": [ + "PancakeCoinMarketCap", + "Rubic", + "Squid", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x513c3200f227ebb62e3b3d00b7a83779643a71cf": { + "address": "0x513c3200f227ebb62e3b3d00b7a83779643a71cf", + "symbol": "LIFT", + "decimals": 18, + "name": "Uplift", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x513c3200f227ebb62e3b3d00b7a83779643a71cf.png", + "aggregators": [ + "PancakeCoinMarketCap", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x1591e923e0836a3949b59637fbe8959f000894b9": { + "address": "0x1591e923e0836a3949b59637fbe8959f000894b9", + "symbol": "MAI", + "decimals": 18, + "name": "Multi AI", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x1591e923e0836a3949b59637fbe8959f000894b9.png", + "aggregators": [ + "PancakeCoinMarketCap", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0xc9bcf3f71e37579a4a42591b09c9dd93dfe27965": { + "address": "0xc9bcf3f71e37579a4a42591b09c9dd93dfe27965", + "symbol": "MILK", + "decimals": 18, + "name": "Milkshake Swap", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xc9bcf3f71e37579a4a42591b09c9dd93dfe27965.png", + "aggregators": [ + "PancakeCoinMarketCap", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0xcd6926193308d3b371fdd6a6219067e550000000": { + "address": "0xcd6926193308d3b371fdd6a6219067e550000000", + "symbol": "NEST", + "decimals": 18, + "name": "Nest Protocol", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xcd6926193308d3b371fdd6a6219067e550000000.png", + "aggregators": [ + "PancakeCoinMarketCap", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0xb49b7e0742ecb4240ffe91661d2a580677460b6a": { + "address": "0xb49b7e0742ecb4240ffe91661d2a580677460b6a", + "symbol": "PERI", + "decimals": 18, + "name": "PERI Finance", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xb49b7e0742ecb4240ffe91661d2a580677460b6a.png", + "aggregators": [ + "PancakeCoinMarketCap", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x464fdb8affc9bac185a7393fd4298137866dcfb8": { + "address": "0x464fdb8affc9bac185a7393fd4298137866dcfb8", + "symbol": "REALM", + "decimals": 18, + "name": "Realm", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x464fdb8affc9bac185a7393fd4298137866dcfb8.png", + "aggregators": [ + "PancakeCoinMarketCap", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0xf3a587d1ac967b40db59223434baf0c6e11588ea": { + "address": "0xf3a587d1ac967b40db59223434baf0c6e11588ea", + "symbol": "SNS", + "decimals": 18, + "name": "Sonorus", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xf3a587d1ac967b40db59223434baf0c6e11588ea.png", + "aggregators": [ + "PancakeCoinMarketCap", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x13a637026df26f846d55acc52775377717345c06": { + "address": "0x13a637026df26f846d55acc52775377717345c06", + "symbol": "SPAY", + "decimals": 18, + "name": "SpaceY 2025", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x13a637026df26f846d55acc52775377717345c06.png", + "aggregators": [ + "PancakeCoinMarketCap", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x75d107de2217ffe2cd574a1b3297c70c8fafd159": { + "address": "0x75d107de2217ffe2cd574a1b3297c70c8fafd159", + "symbol": "TRY", + "decimals": 18, + "name": "TryHards", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x75d107de2217ffe2cd574a1b3297c70c8fafd159.png", + "aggregators": [ + "PancakeCoinMarketCap", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0xd17479997f34dd9156deef8f95a52d81d265be9c": { + "address": "0xd17479997f34dd9156deef8f95a52d81d265be9c", + "symbol": "USDD", + "decimals": 18, + "name": "Decentralized USD", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xd17479997f34dd9156deef8f95a52d81d265be9c.png", + "aggregators": [ + "PancakeCoinMarketCap", + "LiFi", + "Socket", + "Rubic", + "Rango" + ], + "occurrences": 5 + }, + "0x5b6ebb33eea2d12eefd4a9b2aeaf733231169684": { + "address": "0x5b6ebb33eea2d12eefd4a9b2aeaf733231169684", + "symbol": "WELD", + "decimals": 18, + "name": "WELD", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x5b6ebb33eea2d12eefd4a9b2aeaf733231169684.png", + "aggregators": [ + "PancakeCoinMarketCap", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0xa9c41a46a6b3531d28d5c32f6633dd2ff05dfb90": { + "address": "0xa9c41a46a6b3531d28d5c32f6633dd2ff05dfb90", + "symbol": "WEX", + "decimals": 18, + "name": "WaultSwap", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xa9c41a46a6b3531d28d5c32f6633dd2ff05dfb90.png", + "aggregators": [ + "PancakeExtended", + "1inch", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x007ea5c0ea75a8df45d288a4debdd5bb633f9e56": { + "address": "0x007ea5c0ea75a8df45d288a4debdd5bb633f9e56", + "symbol": "CAN", + "decimals": 18, + "name": "CanYaCoin", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x007ea5c0ea75a8df45d288a4debdd5bb633f9e56.png", + "aggregators": [ + "PancakeCoinMarketCap", + "Socket", + "Rubic", + "Rango", + "SushiSwap", + "BinanceDex" + ], + "occurrences": 6 + }, + "0xd4cb328a82bdf5f03eb737f37fa6b370aef3e888": { + "address": "0xd4cb328a82bdf5f03eb737f37fa6b370aef3e888", + "symbol": "CREAM", + "decimals": 18, + "name": "Cream", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xd4cb328a82bdf5f03eb737f37fa6b370aef3e888.png", + "aggregators": [ + "PancakeExtended", + "Socket", + "Rubic", + "Rango", + "SushiSwap" + ], + "occurrences": 5 + }, + "0xe64f5cb844946c1f102bd25bbd87a5ab4ae89fbe": { + "address": "0xe64f5cb844946c1f102bd25bbd87a5ab4ae89fbe", + "symbol": "BROOBEE", + "decimals": 18, + "name": "ROOBEE", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xe64f5cb844946c1f102bd25bbd87a5ab4ae89fbe.png", + "aggregators": [ + "PancakeExtended", + "Socket", + "Rubic", + "Rango", + "SushiSwap" + ], + "occurrences": 5 + }, + "0x1a5f096d6d4f0da25f2df00279cff615c7f856fc": { + "address": "0x1a5f096d6d4f0da25f2df00279cff615c7f856fc", + "symbol": "CAMILLE", + "decimals": 18, + "name": "Camille", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x1a5f096d6d4f0da25f2df00279cff615c7f856fc.png", + "aggregators": [ + "PancakeExtended", + "LiFi", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x39ae8eefb05138f418bb27659c21632dc1ddab10": { + "address": "0x39ae8eefb05138f418bb27659c21632dc1ddab10", + "symbol": "KAI", + "decimals": 18, + "name": "KardiaChain Token", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x39ae8eefb05138f418bb27659c21632dc1ddab10.png", + "aggregators": ["PancakeCoinMarketCap", "Socket", "Rubic", "Rango"], + "occurrences": 4 + }, + "0xa19863e302fd1b41276fce5a48d9c511dbeef34c": { + "address": "0xa19863e302fd1b41276fce5a48d9c511dbeef34c", + "symbol": "PRIMATE", + "decimals": 18, + "name": "Primate", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xa19863e302fd1b41276fce5a48d9c511dbeef34c.png", + "aggregators": [ + "PancakeCoinMarketCap", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 4 + }, + "0x545f90dc35ca1e6129f1fed354b3e2df12034261": { + "address": "0x545f90dc35ca1e6129f1fed354b3e2df12034261", + "symbol": "NEWB", + "decimals": 18, + "name": "NewB.Farm", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x545f90dc35ca1e6129f1fed354b3e2df12034261.png", + "aggregators": [ + "PancakeCoinMarketCap", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 4 + }, + "0xec15a508a187e8ddfe572a5423faa82bbdd65120": { + "address": "0xec15a508a187e8ddfe572a5423faa82bbdd65120", + "symbol": "BABI", + "decimals": 18, + "name": "Babylons", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xec15a508a187e8ddfe572a5423faa82bbdd65120.png", + "aggregators": [ + "PancakeCoinMarketCap", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 4 + }, + "0x4f3266a56589357b4f8082918b14b923693e57f0": { + "address": "0x4f3266a56589357b4f8082918b14b923693e57f0", + "symbol": "LICO", + "decimals": 18, + "name": "Liquid Collectibles", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x4f3266a56589357b4f8082918b14b923693e57f0.png", + "aggregators": [ + "PancakeCoinMarketCap", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 4 + }, + "0xd635b32688f36ee4a7fe117b4c91dd811277acb6": { + "address": "0xd635b32688f36ee4a7fe117b4c91dd811277acb6", + "symbol": "COPYCAT", + "decimals": 18, + "name": "Copycat Finance", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xd635b32688f36ee4a7fe117b4c91dd811277acb6.png", + "aggregators": [ + "PancakeCoinMarketCap", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 4 + }, + "0xb19289b436b2f7a92891ac391d8f52580d3087e4": { + "address": "0xb19289b436b2f7a92891ac391d8f52580d3087e4", + "symbol": "OASIS", + "decimals": 18, + "name": "ProjectOasis", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xb19289b436b2f7a92891ac391d8f52580d3087e4.png", + "aggregators": [ + "PancakeCoinMarketCap", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 4 + }, + "0xfb9c339b4bace4fe63ccc1dd9a3c3c531441d5fe": { + "address": "0xfb9c339b4bace4fe63ccc1dd9a3c3c531441d5fe", + "symbol": "SHILL", + "decimals": 18, + "name": "SHILL Token", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xfb9c339b4bace4fe63ccc1dd9a3c3c531441d5fe.png", + "aggregators": [ + "PancakeCoinMarketCap", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 4 + }, + "0xa75e7928d3de682e3f44da60c26f33117c4e6c5c": { + "address": "0xa75e7928d3de682e3f44da60c26f33117c4e6c5c", + "symbol": "PEL", + "decimals": 18, + "name": "Propel", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xa75e7928d3de682e3f44da60c26f33117c4e6c5c.png", + "aggregators": [ + "PancakeCoinMarketCap", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 4 + }, + "0x08f725d2809fda409bc23493f3615a4c85a22d7d": { + "address": "0x08f725d2809fda409bc23493f3615a4c85a22d7d", + "symbol": "TRUSTNFT", + "decimals": 18, + "name": "TrustNFT", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x08f725d2809fda409bc23493f3615a4c85a22d7d.png", + "aggregators": [ + "PancakeCoinMarketCap", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 4 + }, + "0x61fa01129ac0bb124d1c60dc9f735c6c579a858b": { + "address": "0x61fa01129ac0bb124d1c60dc9f735c6c579a858b", + "symbol": "KTE", + "decimals": 18, + "name": "Kyte.One", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x61fa01129ac0bb124d1c60dc9f735c6c579a858b.png", + "aggregators": [ + "PancakeCoinMarketCap", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 4 + }, + "0x1a9b49e9f075c37fe5f86c916bac9deb33556d7e": { + "address": "0x1a9b49e9f075c37fe5f86c916bac9deb33556d7e", + "symbol": "ASPO", + "decimals": 18, + "name": "ASPO World", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x1a9b49e9f075c37fe5f86c916bac9deb33556d7e.png", + "aggregators": [ + "PancakeCoinMarketCap", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 4 + }, + "0x1d6cbdc6b29c6afbae65444a1f65ba9252b8ca83": { + "address": "0x1d6cbdc6b29c6afbae65444a1f65ba9252b8ca83", + "symbol": "TOR", + "decimals": 18, + "name": "TOR", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x1d6cbdc6b29c6afbae65444a1f65ba9252b8ca83.png", + "aggregators": [ + "PancakeCoinMarketCap", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 4 + }, + "0x53e4b7aa6caccb9576548be3259e62de4ddd4417": { + "address": "0x53e4b7aa6caccb9576548be3259e62de4ddd4417", + "symbol": "DAL", + "decimals": 18, + "name": "DAOLaunch", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x53e4b7aa6caccb9576548be3259e62de4ddd4417.png", + "aggregators": [ + "PancakeCoinMarketCap", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 4 + }, + "0xd52669712f253cd6b2fe8a8638f66ed726cb770c": { + "address": "0xd52669712f253cd6b2fe8a8638f66ed726cb770c", + "symbol": "XCUR", + "decimals": 8, + "name": "Curate", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xd52669712f253cd6b2fe8a8638f66ed726cb770c.png", + "aggregators": ["PancakeCoinMarketCap", "Socket", "Rubic", "Rango"], + "occurrences": 4 + }, + "0x4f1960e29b2ca581a38c5c474e123f420f8092db": { + "address": "0x4f1960e29b2ca581a38c5c474e123f420f8092db", + "symbol": "UBXS", + "decimals": 6, + "name": "UBXS", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x4f1960e29b2ca581a38c5c474e123f420f8092db.png", + "aggregators": [ + "PancakeCoinMarketCap", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 4 + }, + "0x529c79f6918665ebe250f32eeeaa1d410a0798c6": { + "address": "0x529c79f6918665ebe250f32eeeaa1d410a0798c6", + "symbol": "HGPT", + "decimals": 18, + "name": "HyperGPT", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x529c79f6918665ebe250f32eeeaa1d410a0798c6.png", + "aggregators": [ + "PancakeCoinMarketCap", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 4 + }, + "0x7b56748a3ef9970a5bae99c58ad8bc67b26c525f": { + "address": "0x7b56748a3ef9970a5bae99c58ad8bc67b26c525f", + "symbol": "CHAPZ", + "decimals": 10, + "name": "Chappyz", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x7b56748a3ef9970a5bae99c58ad8bc67b26c525f.png", + "aggregators": [ + "PancakeCoinMarketCap", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 4 + }, + "0x83451a4e3585fda74feb348ad929f2c4ca189660": { + "address": "0x83451a4e3585fda74feb348ad929f2c4ca189660", + "symbol": "HNTR", + "decimals": 18, + "name": "Hunter Token", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x83451a4e3585fda74feb348ad929f2c4ca189660.png", + "aggregators": [ + "PancakeCoinMarketCap", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 4 + }, + "0x1c3ba6cf2676cc795db02a3b2093e5076f5f330e": { + "address": "0x1c3ba6cf2676cc795db02a3b2093e5076f5f330e", + "symbol": "CDX", + "decimals": 18, + "name": "CodeXChain", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x1c3ba6cf2676cc795db02a3b2093e5076f5f330e.png", + "aggregators": [ + "PancakeCoinMarketCap", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 4 + }, + "0xf03ca04dd56d695a410f46f14fef4028b22fb79a": { + "address": "0xf03ca04dd56d695a410f46f14fef4028b22fb79a", + "symbol": "NFE", + "decimals": 18, + "name": "Edu3Labs", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xf03ca04dd56d695a410f46f14fef4028b22fb79a.png", + "aggregators": [ + "PancakeCoinMarketCap", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 4 + }, + "0x9e57e83ad79ac5312ba82940ba037ed30600e167": { + "address": "0x9e57e83ad79ac5312ba82940ba037ed30600e167", + "symbol": "F3", + "decimals": 18, + "name": "Friend3", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x9e57e83ad79ac5312ba82940ba037ed30600e167.png", + "aggregators": [ + "PancakeCoinMarketCap", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 4 + }, + "0x426c1c971fb00caaf1883bd801323a8becb0c919": { + "address": "0x426c1c971fb00caaf1883bd801323a8becb0c919", + "symbol": "CARAT", + "decimals": 18, + "name": "Alaska Gold Rush", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x426c1c971fb00caaf1883bd801323a8becb0c919.png", + "aggregators": [ + "PancakeCoinMarketCap", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 4 + }, + "0xf2b688b2201979d44fdf18d1d8c641305cf560ba": { + "address": "0xf2b688b2201979d44fdf18d1d8c641305cf560ba", + "symbol": "EVO", + "decimals": 18, + "name": "Devomon", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xf2b688b2201979d44fdf18d1d8c641305cf560ba.png", + "aggregators": [ + "PancakeCoinMarketCap", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 4 + }, + "0xebbaeff6217d22e7744394061d874015709b8141": { + "address": "0xebbaeff6217d22e7744394061d874015709b8141", + "symbol": "WAM", + "decimals": 18, + "name": "Wam", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xebbaeff6217d22e7744394061d874015709b8141.png", + "aggregators": [ + "PancakeCoinMarketCap", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 4 + }, + "0x29838b8c8b7cd6f0698c2fd6feaf0363d2cb6da1": { + "address": "0x29838b8c8b7cd6f0698c2fd6feaf0363d2cb6da1", + "symbol": "TX20", + "decimals": 18, + "name": "Trex20", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x29838b8c8b7cd6f0698c2fd6feaf0363d2cb6da1.png", + "aggregators": [ + "PancakeCoinMarketCap", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 4 + }, + "0x1f56efffee38eeeae36cd38225b66c56e4d095a7": { + "address": "0x1f56efffee38eeeae36cd38225b66c56e4d095a7", + "symbol": "GPTV", + "decimals": 18, + "name": "GPTVerse", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x1f56efffee38eeeae36cd38225b66c56e4d095a7.png", + "aggregators": [ + "PancakeCoinMarketCap", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 4 + }, + "0xe58c3a44b74362048e202cb7c8036d4b0b28af50": { + "address": "0xe58c3a44b74362048e202cb7c8036d4b0b28af50", + "symbol": "SXCH", + "decimals": 18, + "name": "SolarX", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xe58c3a44b74362048e202cb7c8036d4b0b28af50.png", + "aggregators": [ + "PancakeCoinMarketCap", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 4 + }, + "0xf4341fa52669cea0c1836095529a7e9b04b8b88d": { + "address": "0xf4341fa52669cea0c1836095529a7e9b04b8b88d", + "symbol": "SATOZ", + "decimals": 8, + "name": "Satozhi", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xf4341fa52669cea0c1836095529a7e9b04b8b88d.png", + "aggregators": [ + "PancakeCoinMarketCap", + "Socket", + "Rubic", + "Sonarwatch" + ], + "occurrences": 4 + }, + "0x0203d275d2a65030889af45ed91d472be3948b92": { + "address": "0x0203d275d2a65030889af45ed91d472be3948b92", + "symbol": "FURY", + "decimals": 18, + "name": "Engines of Fury", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x0203d275d2a65030889af45ed91d472be3948b92.png", + "aggregators": ["PancakeExtended", "Rubic", "Squid", "Sonarwatch"], + "occurrences": 4 + }, + "0xfebe8c1ed424dbf688551d4e2267e7a53698f0aa": { + "address": "0xfebe8c1ed424dbf688551d4e2267e7a53698f0aa", + "symbol": "VINU", + "decimals": 18, + "name": "Vita Inu", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xfebe8c1ed424dbf688551d4e2267e7a53698f0aa.png", + "aggregators": ["PancakeExtended", "1inch", "Rubic", "Sonarwatch"], + "occurrences": 4 + }, + "0x95a1199eba84ac5f19546519e287d43d2f0e1b41": { + "address": "0x95a1199eba84ac5f19546519e287d43d2f0e1b41", + "symbol": "RABBIT", + "decimals": 18, + "name": "Rabbit Finance", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x95a1199eba84ac5f19546519e287d43d2f0e1b41.png", + "aggregators": ["PancakeExtended", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0xfceb31a79f71ac9cbdcf853519c1b12d379edc46": { + "address": "0xfceb31a79f71ac9cbdcf853519c1b12d379edc46", + "symbol": "LISTA", + "decimals": 18, + "name": "Lista DAO", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xfceb31a79f71ac9cbdcf853519c1b12d379edc46.png", + "aggregators": ["PancakeExtended", "LiFi", "Rubic", "Sonarwatch"], + "occurrences": 4 + }, + "0x5b1f874d0b0c5ee17a495cbb70ab8bf64107a3bd": { + "address": "0x5b1f874d0b0c5ee17a495cbb70ab8bf64107a3bd", + "symbol": "BNX", + "decimals": 18, + "name": "BinaryX", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x5b1f874d0b0c5ee17a495cbb70ab8bf64107a3bd.png", + "aggregators": ["PancakeExtended", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0xa9b038285f43cd6fe9e16b4c80b4b9bccd3c161b": { + "address": "0xa9b038285f43cd6fe9e16b4c80b4b9bccd3c161b", + "symbol": "AI", + "decimals": 18, + "name": "Flourishing AI Token", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xa9b038285f43cd6fe9e16b4c80b4b9bccd3c161b.png", + "aggregators": ["PancakeCoinMarketCap", "Socket", "Rubic", "Rango"], + "occurrences": 4 + }, + "0xf606bd19b1e61574ed625d9ea96c841d4e247a32": { + "address": "0xf606bd19b1e61574ed625d9ea96c841d4e247a32", + "symbol": "GUARD", + "decimals": 18, + "name": "Guardian", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xf606bd19b1e61574ed625d9ea96c841d4e247a32.png", + "aggregators": ["PancakeCoinMarketCap", "1inch", "Rubic", "Rango"], + "occurrences": 4 + }, + "0x19e6bfc1a6e4b042fb20531244d47e252445df01": { + "address": "0x19e6bfc1a6e4b042fb20531244d47e252445df01", + "symbol": "TEM", + "decimals": 9, + "name": "Templar DAO", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x19e6bfc1a6e4b042fb20531244d47e252445df01.png", + "aggregators": ["PancakeExtended", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0x94b69263fca20119ae817b6f783fc0f13b02ad50": { + "address": "0x94b69263fca20119ae817b6f783fc0f13b02ad50", + "symbol": "LOA", + "decimals": 18, + "name": "League of Ancients", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x94b69263fca20119ae817b6f783fc0f13b02ad50.png", + "aggregators": ["PancakeExtended", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0x84c97300a190676a19d1e13115629a11f8482bd1": { + "address": "0x84c97300a190676a19d1e13115629a11f8482bd1", + "symbol": "DDD", + "decimals": 18, + "name": "Dot Dot Finance", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x84c97300a190676a19d1e13115629a11f8482bd1.png", + "aggregators": [ + "PancakeCoinMarketCap", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 4 + }, + "0xa260e12d2b924cb899ae80bb58123ac3fee1e2f0": { + "address": "0xa260e12d2b924cb899ae80bb58123ac3fee1e2f0", + "symbol": "HOOK", + "decimals": 18, + "name": "Hooked Protocol", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xa260e12d2b924cb899ae80bb58123ac3fee1e2f0.png", + "aggregators": ["PancakeExtended", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0x5e2689412fae5c29bd575fbe1d5c1cd1e0622a8f": { + "address": "0x5e2689412fae5c29bd575fbe1d5c1cd1e0622a8f", + "symbol": "HTD", + "decimals": 18, + "name": "Heroes TD", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x5e2689412fae5c29bd575fbe1d5c1cd1e0622a8f.png", + "aggregators": ["PancakeExtended", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0x62823659d09f9f9d2222058878f89437425eb261": { + "address": "0x62823659d09f9f9d2222058878f89437425eb261", + "symbol": "ERTHA", + "decimals": 18, + "name": "Ertha", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x62823659d09f9f9d2222058878f89437425eb261.png", + "aggregators": ["PancakeExtended", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0x936b6659ad0c1b244ba8efe639092acae30dc8d6": { + "address": "0x936b6659ad0c1b244ba8efe639092acae30dc8d6", + "symbol": "CO", + "decimals": 6, + "name": "Corite", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x936b6659ad0c1b244ba8efe639092acae30dc8d6.png", + "aggregators": ["PancakeExtended", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0xc598275452fa319d75ee5f176fd3b8384925b425": { + "address": "0xc598275452fa319d75ee5f176fd3b8384925b425", + "symbol": "STRM", + "decimals": 18, + "name": "StreamCoin", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xc598275452fa319d75ee5f176fd3b8384925b425.png", + "aggregators": [ + "PancakeCoinMarketCap", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 4 + }, + "0xfa40d8fc324bcdd6bbae0e086de886c571c225d4": { + "address": "0xfa40d8fc324bcdd6bbae0e086de886c571c225d4", + "symbol": "WZRD", + "decimals": 18, + "name": "Wizardia", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xfa40d8fc324bcdd6bbae0e086de886c571c225d4.png", + "aggregators": ["PancakeExtended", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0xca044f16afa434c0c17c0478d8a6ce4feef46504": { + "address": "0xca044f16afa434c0c17c0478d8a6ce4feef46504", + "symbol": "MAPE", + "decimals": 18, + "name": "Mecha Morphing", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xca044f16afa434c0c17c0478d8a6ce4feef46504.png", + "aggregators": [ + "PancakeCoinMarketCap", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 4 + }, + "0x4be63a9b26ee89b9a3a13fd0aa1d0b2427c135f8": { + "address": "0x4be63a9b26ee89b9a3a13fd0aa1d0b2427c135f8", + "symbol": "XCV", + "decimals": 18, + "name": "XCarnival", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x4be63a9b26ee89b9a3a13fd0aa1d0b2427c135f8.png", + "aggregators": ["PancakeExtended", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0x1ee098cbaf1f846d5df1993f7e2d10afb35a878d": { + "address": "0x1ee098cbaf1f846d5df1993f7e2d10afb35a878d", + "symbol": "SABLE", + "decimals": 18, + "name": "Sable", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x1ee098cbaf1f846d5df1993f7e2d10afb35a878d.png", + "aggregators": ["PancakeExtended", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0x837a130aed114300bab4f9f1f4f500682f7efd48": { + "address": "0x837a130aed114300bab4f9f1f4f500682f7efd48", + "symbol": "WSI", + "decimals": 18, + "name": "WeSendit", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x837a130aed114300bab4f9f1f4f500682f7efd48.png", + "aggregators": ["PancakeExtended", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0xbaea9aba1454df334943951d51116ae342eab255": { + "address": "0xbaea9aba1454df334943951d51116ae342eab255", + "symbol": "POOLX", + "decimals": 18, + "name": "Poolz Finance", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xbaea9aba1454df334943951d51116ae342eab255.png", + "aggregators": ["PancakeExtended", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0xf563e86e461de100cfcfd8b65daa542d3d4b0550": { + "address": "0xf563e86e461de100cfcfd8b65daa542d3d4b0550", + "symbol": "COCO", + "decimals": 18, + "name": "COCO COIN", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xf563e86e461de100cfcfd8b65daa542d3d4b0550.png", + "aggregators": ["PancakeExtended", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0x4ba0057f784858a48fe351445c672ff2a3d43515": { + "address": "0x4ba0057f784858a48fe351445c672ff2a3d43515", + "symbol": "KALM", + "decimals": 18, + "name": "KALM", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x4ba0057f784858a48fe351445c672ff2a3d43515.png", + "aggregators": ["PancakeExtended", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0x3910db0600ea925f63c36ddb1351ab6e2c6eb102": { + "address": "0x3910db0600ea925f63c36ddb1351ab6e2c6eb102", + "symbol": "SPARTA", + "decimals": 18, + "name": "Spartan Protocol", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x3910db0600ea925f63c36ddb1351ab6e2c6eb102.png", + "aggregators": ["PancakeExtended", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0x21fd16cd0ef24a49d28429921e335bb0c1bfadb3": { + "address": "0x21fd16cd0ef24a49d28429921e335bb0c1bfadb3", + "symbol": "FOUR", + "decimals": 18, + "name": "4", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x21fd16cd0ef24a49d28429921e335bb0c1bfadb3.png", + "aggregators": ["PancakeExtended", "Socket", "Rubic", "Sonarwatch"], + "occurrences": 4 + }, + "0x658a109c5900bc6d2357c87549b651670e5b0539": { + "address": "0x658a109c5900bc6d2357c87549b651670e5b0539", + "symbol": "FOR", + "decimals": 18, + "name": "ForTube", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x658a109c5900bc6d2357c87549b651670e5b0539.png", + "aggregators": ["PancakeExtended", "Socket", "Rubic", "Rango"], + "occurrences": 4 + }, + "0xa3f020a5c92e15be13caf0ee5c95cf79585eecc9": { + "address": "0xa3f020a5c92e15be13caf0ee5c95cf79585eecc9", + "symbol": "ELF", + "decimals": 18, + "name": "ELF Token", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xa3f020a5c92e15be13caf0ee5c95cf79585eecc9.png", + "aggregators": ["PancakeCoinMarketCap", "Socket", "Rubic", "Rango"], + "occurrences": 4 + }, + "0x1861c9058577c3b48e73d91d6f25c18b17fbffe0": { + "address": "0x1861c9058577c3b48e73d91d6f25c18b17fbffe0", + "symbol": "DSLA", + "decimals": 18, + "name": "DSLA Protocol", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x1861c9058577c3b48e73d91d6f25c18b17fbffe0.png", + "aggregators": ["PancakeCoinMarketCap", "Socket", "Rubic", "Rango"], + "occurrences": 4 + }, + "0x1ba8d3c4c219b124d351f603060663bd1bcd9bbf": { + "address": "0x1ba8d3c4c219b124d351f603060663bd1bcd9bbf", + "symbol": "TORN", + "decimals": 18, + "name": "TornadoCash", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x1ba8d3c4c219b124d351f603060663bd1bcd9bbf.png", + "aggregators": ["PancakeCoinMarketCap", "Socket", "Rubic", "Rango"], + "occurrences": 4 + }, + "0x482e6bd0a178f985818c5dfb9ac77918e8412fba": { + "address": "0x482e6bd0a178f985818c5dfb9ac77918e8412fba", + "symbol": "ZEUM", + "decimals": 18, + "name": "Colizeum", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x482e6bd0a178f985818c5dfb9ac77918e8412fba.png", + "aggregators": ["PancakeCoinMarketCap", "Socket", "Rubic", "Rango"], + "occurrences": 4 + }, + "0xfd4f2caf941b6d737382dce420b368de3fc7f2d4": { + "address": "0xfd4f2caf941b6d737382dce420b368de3fc7f2d4", + "symbol": "PATEX", + "decimals": 18, + "name": "Patex", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xfd4f2caf941b6d737382dce420b368de3fc7f2d4.png", + "aggregators": [ + "PancakeCoinMarketCap", + "Socket", + "Rubic", + "Sonarwatch" + ], + "occurrences": 4 + }, + "0xf1c3e69494e27bf067c4076a6f244a46446719d6": { + "address": "0xf1c3e69494e27bf067c4076a6f244a46446719d6", + "symbol": "GAINS", + "decimals": 18, + "name": "GAINS", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xf1c3e69494e27bf067c4076a6f244a46446719d6.png", + "aggregators": ["PancakeCoinMarketCap", "Socket", "Rubic", "Rango"], + "occurrences": 4 + }, + "0xaa88c603d142c371ea0eac8756123c5805edee03": { + "address": "0xaa88c603d142c371ea0eac8756123c5805edee03", + "symbol": "DOG", + "decimals": 18, + "name": "The Doge NFT", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xaa88c603d142c371ea0eac8756123c5805edee03.png", + "aggregators": ["PancakeCoinMarketCap", "Socket", "Rubic", "Rango"], + "occurrences": 4 + }, + "0x6cf8e39252bee00d168bd25bdf5834347d78e346": { + "address": "0x6cf8e39252bee00d168bd25bdf5834347d78e346", + "symbol": "CHO", + "decimals": 18, + "name": "choise.com Token", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x6cf8e39252bee00d168bd25bdf5834347d78e346.png", + "aggregators": ["PancakeCoinMarketCap", "Socket", "Rubic", "Rango"], + "occurrences": 4 + }, + "0x776f9987d9deed90eed791cbd824d971fd5ccf09": { + "address": "0x776f9987d9deed90eed791cbd824d971fd5ccf09", + "symbol": "LAI", + "decimals": 18, + "name": "LayerAI", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x776f9987d9deed90eed791cbd824d971fd5ccf09.png", + "aggregators": [ + "PancakeCoinMarketCap", + "Socket", + "Rubic", + "Sonarwatch" + ], + "occurrences": 4 + }, + "0x602b6c6cce5f95c00603bd07d8fa7ebaf3747d44": { + "address": "0x602b6c6cce5f95c00603bd07d8fa7ebaf3747d44", + "symbol": "RJV", + "decimals": 6, + "name": "Rejuve Token", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x602b6c6cce5f95c00603bd07d8fa7ebaf3747d44.png", + "aggregators": ["PancakeCoinMarketCap", "Socket", "Rubic", "Rango"], + "occurrences": 4 + }, + "0xa6c897caaca3db7fd6e2d2ce1a00744f40ab87bb": { + "address": "0xa6c897caaca3db7fd6e2d2ce1a00744f40ab87bb", + "symbol": "DRACE", + "decimals": 18, + "name": "DeathRoad", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xa6c897caaca3db7fd6e2d2ce1a00744f40ab87bb.png", + "aggregators": ["PancakeTop100", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0x09a6c44c3947b69e2b45f4d51b67e6a39acfb506": { + "address": "0x09a6c44c3947b69e2b45f4d51b67e6a39acfb506", + "symbol": "UNCX", + "decimals": 18, + "name": "UniCrypt on xDai on BSC", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x09a6c44c3947b69e2b45f4d51b67e6a39acfb506.png", + "aggregators": ["PancakeTop100", "Socket", "Rubic", "Rango"], + "occurrences": 4 + }, + "0x366d71ab095735b7dae83ce2b82d5262ef655f10": { + "address": "0x366d71ab095735b7dae83ce2b82d5262ef655f10", + "symbol": "APAD", + "decimals": 18, + "name": "AnyPad", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x366d71ab095735b7dae83ce2b82d5262ef655f10.png", + "aggregators": ["PancakeCoinMarketCap", "Socket", "Rubic", "Rango"], + "occurrences": 4 + }, + "0xf5e11df1ebcf78b6b6d26e04ff19cd786a1e81dc": { + "address": "0xf5e11df1ebcf78b6b6d26e04ff19cd786a1e81dc", + "symbol": "BBTC", + "decimals": 18, + "name": "BounceBit BTC", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xf5e11df1ebcf78b6b6d26e04ff19cd786a1e81dc.png", + "aggregators": [ + "PancakeCoinMarketCap", + "Socket", + "Rubic", + "Sonarwatch" + ], + "occurrences": 4 + }, + "0xfe1d7f7a8f0bda6e415593a2e4f82c64b446d404": { + "address": "0xfe1d7f7a8f0bda6e415593a2e4f82c64b446d404", + "symbol": "BLP", + "decimals": 18, + "name": "BullPerks", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xfe1d7f7a8f0bda6e415593a2e4f82c64b446d404.png", + "aggregators": [ + "PancakeCoinMarketCap", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 4 + }, + "0x51e7b598c9155b9dccb04eb42519f6eec9c841e9": { + "address": "0x51e7b598c9155b9dccb04eb42519f6eec9c841e9", + "symbol": "BTL", + "decimals": 6, + "name": "Bitlocus Token", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x51e7b598c9155b9dccb04eb42519f6eec9c841e9.png", + "aggregators": ["PancakeCoinMarketCap", "Socket", "Rubic", "Rango"], + "occurrences": 4 + }, + "0xd98560689c6e748dc37bc410b4d3096b1aa3d8c2": { + "address": "0xd98560689c6e748dc37bc410b4d3096b1aa3d8c2", + "symbol": "DFY", + "decimals": 18, + "name": "DeFi For You.", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xd98560689c6e748dc37bc410b4d3096b1aa3d8c2.png", + "aggregators": [ + "PancakeCoinMarketCap", + "Rubic", + "Rango", + "Sonarwatch", + "BinanceDex" + ], + "occurrences": 5 + }, + "0xff8bbc599ea030aa69d0298035dfe263740a95bc": { + "address": "0xff8bbc599ea030aa69d0298035dfe263740a95bc", + "symbol": "DHN", + "decimals": 18, + "name": "Dohrnii", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xff8bbc599ea030aa69d0298035dfe263740a95bc.png", + "aggregators": ["PancakeCoinMarketCap", "Socket", "Rubic", "Rango"], + "occurrences": 4 + }, + "0x049d68029688eabf473097a2fc38ef61633a3c7a": { + "address": "0x049d68029688eabf473097a2fc38ef61633a3c7a", + "symbol": "FUSDT", + "decimals": 6, + "name": "Frapped USDT", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x049d68029688eabf473097a2fc38ef61633a3c7a.png", + "aggregators": [ + "PancakeCoinMarketCap", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 4 + }, + "0x30842a9c941d9de3af582c41ad12b11d776ba69e": { + "address": "0x30842a9c941d9de3af582c41ad12b11d776ba69e", + "symbol": "GPT", + "decimals": 18, + "name": "QnA3.AI", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x30842a9c941d9de3af582c41ad12b11d776ba69e.png", + "aggregators": [ + "PancakeCoinMarketCap", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 4 + }, + "0xf48f91df403976060cc05dbbf8a0901b09fdefd4": { + "address": "0xf48f91df403976060cc05dbbf8a0901b09fdefd4", + "symbol": "MINU", + "decimals": 18, + "name": "Minu", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xf48f91df403976060cc05dbbf8a0901b09fdefd4.png", + "aggregators": [ + "PancakeCoinMarketCap", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 4 + }, + "0x7b610012bdc4d6deba2c2d91684e408f40863429": { + "address": "0x7b610012bdc4d6deba2c2d91684e408f40863429", + "symbol": "OSEA", + "decimals": 18, + "name": "Omnisea", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x7b610012bdc4d6deba2c2d91684e408f40863429.png", + "aggregators": [ + "PancakeCoinMarketCap", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 4 + }, + "0xf2c96e402c9199682d5ded26d3771c6b192c01af": { + "address": "0xf2c96e402c9199682d5ded26d3771c6b192c01af", + "symbol": "SCLP", + "decimals": 18, + "name": "Scallop", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xf2c96e402c9199682d5ded26d3771c6b192c01af.png", + "aggregators": [ + "PancakeCoinMarketCap", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 4 + }, + "0x6730f7a6bbb7b9c8e60843948f7feb4b6a17b7f7": { + "address": "0x6730f7a6bbb7b9c8e60843948f7feb4b6a17b7f7", + "symbol": "SEED", + "decimals": 18, + "name": "Seed.Photo", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x6730f7a6bbb7b9c8e60843948f7feb4b6a17b7f7.png", + "aggregators": ["PancakeCoinMarketCap", "Socket", "Rubic", "Rango"], + "occurrences": 4 + }, + "0x50c34995a273075a80c23625f69f40d56ce414de": { + "address": "0x50c34995a273075a80c23625f69f40d56ce414de", + "symbol": "SELF", + "decimals": 18, + "name": "SELF Crypto", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x50c34995a273075a80c23625f69f40d56ce414de.png", + "aggregators": ["PancakeCoinMarketCap", "Socket", "Rubic", "Rango"], + "occurrences": 4 + }, + "0x00f97c17f4dc4f3bfd2dd9ce5e67f3a339a8a261": { + "address": "0x00f97c17f4dc4f3bfd2dd9ce5e67f3a339a8a261", + "symbol": "SHIELD", + "decimals": 18, + "name": "Shield Protocol", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x00f97c17f4dc4f3bfd2dd9ce5e67f3a339a8a261.png", + "aggregators": ["PancakeCoinMarketCap", "Socket", "Rubic", "Rango"], + "occurrences": 4 + }, + "0x35bedbf9291b22218a0da863170dcc9329ef2563": { + "address": "0x35bedbf9291b22218a0da863170dcc9329ef2563", + "symbol": "TAP", + "decimals": 18, + "name": "TAP Coin", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x35bedbf9291b22218a0da863170dcc9329ef2563.png", + "aggregators": ["PancakeCoinMarketCap", "Socket", "Rubic", "Rango"], + "occurrences": 4 + }, + "0x2794dad4077602ed25a88d03781528d1637898b4": { + "address": "0x2794dad4077602ed25a88d03781528d1637898b4", + "symbol": "VITE", + "decimals": 18, + "name": "Vite", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x2794dad4077602ed25a88d03781528d1637898b4.png", + "aggregators": [ + "PancakeCoinMarketCap", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 4 + }, + "0x55f96c7005d7c684a65ee653b07b5fe1507c56ab": { + "address": "0x55f96c7005d7c684a65ee653b07b5fe1507c56ab", + "symbol": "WOJ", + "decimals": 9, + "name": "Wojak Finance", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x55f96c7005d7c684a65ee653b07b5fe1507c56ab.png", + "aggregators": [ + "PancakeCoinMarketCap", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 4 + }, + "0x5cc5e64ab764a0f1e97f23984e20fd4528356a6a": { + "address": "0x5cc5e64ab764a0f1e97f23984e20fd4528356a6a", + "symbol": "XRGB", + "decimals": 18, + "name": "XRGB", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x5cc5e64ab764a0f1e97f23984e20fd4528356a6a.png", + "aggregators": ["PancakeExtended", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0x666666661f9b6d8c581602aaa2f76cbead06c401": { + "address": "0x666666661f9b6d8c581602aaa2f76cbead06c401", + "symbol": "XY", + "decimals": 18, + "name": "XY Token", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x666666661f9b6d8c581602aaa2f76cbead06c401.png", + "aggregators": ["PancakeCoinMarketCap", "Socket", "Rubic", "Rango"], + "occurrences": 4 + }, + "0x00f80a8f39bb4d04a3038c497e3642bf1b0a304e": { + "address": "0x00f80a8f39bb4d04a3038c497e3642bf1b0a304e", + "symbol": "BOUNTIE", + "decimals": 18, + "name": "Bountie Hunter", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x00f80a8f39bb4d04a3038c497e3642bf1b0a304e.png", + "aggregators": ["PancakeCoinMarketCap", "Rubic", "Rango"], + "occurrences": 3 + }, + "0xad0926ecf31719263dc86426024794332d9dd9a3": { + "address": "0xad0926ecf31719263dc86426024794332d9dd9a3", + "symbol": "ARCAS", + "decimals": 18, + "name": "Arcas", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xad0926ecf31719263dc86426024794332d9dd9a3.png", + "aggregators": ["PancakeCoinMarketCap", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x317ae555dd3d474c4427699a7841891d398fa5a0": { + "address": "0x317ae555dd3d474c4427699a7841891d398fa5a0", + "symbol": "WEEBS", + "decimals": 18, + "name": "WEEBS", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x317ae555dd3d474c4427699a7841891d398fa5a0.png", + "aggregators": ["PancakeCoinMarketCap", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x724a32dfff9769a0a0e1f0515c0012d1fb14c3bd": { + "address": "0x724a32dfff9769a0a0e1f0515c0012d1fb14c3bd", + "symbol": "SQUAD", + "decimals": 18, + "name": "SQUAD", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x724a32dfff9769a0a0e1f0515c0012d1fb14c3bd.png", + "aggregators": ["PancakeExtended", "Rubic", "Rango"], + "occurrences": 3 + }, + "0xcc6f1e1b87cfcbe9221808d2d85c501aab0b5192": { + "address": "0xcc6f1e1b87cfcbe9221808d2d85c501aab0b5192", + "symbol": "DMAIL", + "decimals": 18, + "name": "Dmail Network", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xcc6f1e1b87cfcbe9221808d2d85c501aab0b5192.png", + "aggregators": ["PancakeExtended", "Rubic", "Sonarwatch"], + "occurrences": 3 + }, + "0x2b5d9adea07b590b638ffc165792b2c610eda649": { + "address": "0x2b5d9adea07b590b638ffc165792b2c610eda649", + "symbol": "CKP", + "decimals": 18, + "name": "Cakepie", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x2b5d9adea07b590b638ffc165792b2c610eda649.png", + "aggregators": ["PancakeExtended", "LiFi", "Rubic"], + "occurrences": 3 + }, + "0x5b65cd9feb54f1df3d0c60576003344079f8dc06": { + "address": "0x5b65cd9feb54f1df3d0c60576003344079f8dc06", + "symbol": "UNW", + "decimals": 18, + "name": "Uniwhale Token", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x5b65cd9feb54f1df3d0c60576003344079f8dc06.png", + "aggregators": ["PancakeExtended", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x42981d0bfbaf196529376ee702f2a9eb9092fcb5": { + "address": "0x42981d0bfbaf196529376ee702f2a9eb9092fcb5", + "symbol": "SFM", + "decimals": 9, + "name": "SafeMoon", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x42981d0bfbaf196529376ee702f2a9eb9092fcb5.png", + "aggregators": ["PancakeCoinMarketCap", "Rubic", "Rango"], + "occurrences": 3 + }, + "0xb59490ab09a0f526cc7305822ac65f2ab12f9723": { + "address": "0xb59490ab09a0f526cc7305822ac65f2ab12f9723", + "symbol": "LIT", + "decimals": 18, + "name": "Litentry", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xb59490ab09a0f526cc7305822ac65f2ab12f9723.png", + "aggregators": [ + "PancakeExtended", + "1inch", + "LiFi", + "TrustWallet", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 8 + }, + "0x4197c6ef3879a08cd51e5560da5064b773aa1d29": { + "address": "0x4197c6ef3879a08cd51e5560da5064b773aa1d29", + "symbol": "ACS", + "decimals": 18, + "name": "ACryptoS", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x4197c6ef3879a08cd51e5560da5064b773aa1d29.png", + "aggregators": [ + "PancakeCoinGecko", + "1inch", + "LiFi", + "TrustWallet", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 7 + }, + "0x8595f9da7b868b1822194faed312235e43007b49": { + "address": "0x8595f9da7b868b1822194faed312235e43007b49", + "symbol": "BTT", + "decimals": 18, + "name": "BitTorrent", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x8595f9da7b868b1822194faed312235e43007b49.png", + "aggregators": [ + "PancakeTop100", + "LiFi", + "Socket", + "Rubic", + "Rango", + "Sonarwatch", + "SushiSwap" + ], + "occurrences": 7 + }, + "0xf79037f6f6be66832de4e7516be52826bc3cbcc4": { + "address": "0xf79037f6f6be66832de4e7516be52826bc3cbcc4", + "symbol": "HARD", + "decimals": 6, + "name": "Hard Protocol", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xf79037f6f6be66832de4e7516be52826bc3cbcc4.png", + "aggregators": [ + "PancakeExtended", + "LiFi", + "TrustWallet", + "Socket", + "Rubic", + "Rango", + "SushiSwap" + ], + "occurrences": 7 + }, + "0x961c8c0b1aad0c0b10a51fef6a867e3091bcef17": { + "address": "0x961c8c0b1aad0c0b10a51fef6a867e3091bcef17", + "symbol": "DYP", + "decimals": 18, + "name": "Dypius [OLD]", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x961c8c0b1aad0c0b10a51fef6a867e3091bcef17.png", + "aggregators": [ + "PancakeCoinGecko", + "LiFi", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 6 + }, + "0x05b339b0a346bf01f851dde47a5d485c34fe220c": { + "address": "0x05b339b0a346bf01f851dde47a5d485c34fe220c", + "symbol": "NAUT", + "decimals": 8, + "name": "Astronaut", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x05b339b0a346bf01f851dde47a5d485c34fe220c.png", + "aggregators": [ + "PancakeCoinMarketCap", + "1inch", + "LiFi", + "Socket", + "Rubic", + "Rango" + ], + "occurrences": 6 + }, + "0x8c851d1a123ff703bd1f9dabe631b69902df5f97": { + "address": "0x8c851d1a123ff703bd1f9dabe631b69902df5f97", + "symbol": "BNX", + "decimals": 18, + "name": "BinaryX [OLD]", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x8c851d1a123ff703bd1f9dabe631b69902df5f97.png", + "aggregators": [ + "PancakeTop100", + "LiFi", + "Rubic", + "Squid", + "Rango", + "Sonarwatch" + ], + "occurrences": 6 + }, + "0x38f9bf9dce51833ec7f03c9dc218197999999999": { + "address": "0x38f9bf9dce51833ec7f03c9dc218197999999999", + "symbol": "NYA", + "decimals": 18, + "name": "Nya", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x38f9bf9dce51833ec7f03c9dc218197999999999.png", + "aggregators": [ + "PancakeCoinMarketCap", + "Socket", + "Rubic", + "Squid", + "Rango", + "Sonarwatch" + ], + "occurrences": 6 + }, + "0xe6df05ce8c8301223373cf5b969afcb1498c5528": { + "address": "0xe6df05ce8c8301223373cf5b969afcb1498c5528", + "symbol": "KOGE", + "decimals": 18, + "name": "BNB48 Club Token", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xe6df05ce8c8301223373cf5b969afcb1498c5528.png", + "aggregators": [ + "PancakeExtended", + "1inch", + "LiFi", + "Rubic", + "Squid", + "Rango" + ], + "occurrences": 6 + }, + "0xa73164db271931cf952cbaeff9e8f5817b42fa5c": { + "address": "0xa73164db271931cf952cbaeff9e8f5817b42fa5c", + "symbol": "LAND", + "decimals": 18, + "name": "Landshare", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xa73164db271931cf952cbaeff9e8f5817b42fa5c.png", + "aggregators": [ + "PancakeCoinMarketCap", + "1inch", + "LiFi", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 6 + }, + "0x92a42db88ed0f02c71d439e55962ca7cab0168b5": { + "address": "0x92a42db88ed0f02c71d439e55962ca7cab0168b5", + "symbol": "TRDG", + "decimals": 9, + "name": "TRDGtoken", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x92a42db88ed0f02c71d439e55962ca7cab0168b5.png", + "aggregators": [ + "PancakeCoinGecko", + "1inch", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 6 + }, + "0x59f4f336bf3d0c49dbfba4a74ebd2a6ace40539a": { + "address": "0x59f4f336bf3d0c49dbfba4a74ebd2a6ace40539a", + "symbol": "CAT", + "decimals": 9, + "name": "Catcoin", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x59f4f336bf3d0c49dbfba4a74ebd2a6ace40539a.png", + "aggregators": [ + "PancakeCoinMarketCap", + "Socket", + "Rubic", + "Squid", + "Rango", + "Sonarwatch" + ], + "occurrences": 6 + }, + "0xd6fdde76b8c1c45b33790cc8751d5b88984c44ec": { + "address": "0xd6fdde76b8c1c45b33790cc8751d5b88984c44ec", + "symbol": "STRX", + "decimals": 18, + "name": "StrikeX", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xd6fdde76b8c1c45b33790cc8751d5b88984c44ec.png", + "aggregators": [ + "PancakeCoinMarketCap", + "1inch", + "Rubic", + "Squid", + "Rango", + "Sonarwatch" + ], + "occurrences": 6 + }, + "0xc3137c696796d69f783cd0be4ab4bb96814234aa": { + "address": "0xc3137c696796d69f783cd0be4ab4bb96814234aa", + "symbol": "PEPA", + "decimals": 9, + "name": "Pepa Inu", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xc3137c696796d69f783cd0be4ab4bb96814234aa.png", + "aggregators": [ + "PancakeCoinMarketCap", + "TrustWallet", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 6 + }, + "0x66d79b8f60ec93bfce0b56f5ac14a2714e509a99": { + "address": "0x66d79b8f60ec93bfce0b56f5ac14a2714e509a99", + "symbol": "MAPO", + "decimals": 18, + "name": "MAP Protocol", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x66d79b8f60ec93bfce0b56f5ac14a2714e509a99.png", + "aggregators": [ + "PancakeCoinMarketCap", + "LiFi", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 6 + }, + "0x2f29bc0ffaf9bff337b31cbe6cb5fb3bf12e5840": { + "address": "0x2f29bc0ffaf9bff337b31cbe6cb5fb3bf12e5840", + "symbol": "DOLA", + "decimals": 18, + "name": "DOLA", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x2f29bc0ffaf9bff337b31cbe6cb5fb3bf12e5840.png", + "aggregators": [ + "PancakeCoinMarketCap", + "LiFi", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 6 + }, + "0x7ddc52c4de30e94be3a6a0a2b259b2850f421989": { + "address": "0x7ddc52c4de30e94be3a6a0a2b259b2850f421989", + "symbol": "GOMINING", + "decimals": 18, + "name": "Gomining Token", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x7ddc52c4de30e94be3a6a0a2b259b2850f421989.png", + "aggregators": [ + "PancakeCoinMarketCap", + "1inch", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 6 + }, + "0x7f792db54b0e580cdc755178443f0430cf799aca": { + "address": "0x7f792db54b0e580cdc755178443f0430cf799aca", + "symbol": "VOLT", + "decimals": 9, + "name": "Volt Inu", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x7f792db54b0e580cdc755178443f0430cf799aca.png", + "aggregators": [ + "PancakeCoinMarketCap", + "Socket", + "Rubic", + "Squid", + "Rango", + "Sonarwatch" + ], + "occurrences": 6 + }, + "0x94eafeeef7ffa66203fdc9349c54d601472a79dc": { + "address": "0x94eafeeef7ffa66203fdc9349c54d601472a79dc", + "symbol": "SWAP", + "decimals": 18, + "name": "TrustSwap", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x94eafeeef7ffa66203fdc9349c54d601472a79dc.png", + "aggregators": [ + "PancakeCoinMarketCap", + "LiFi", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 6 + }, + "0x965b0df5bda0e7a0649324d78f03d5f7f2de086a": { + "address": "0x965b0df5bda0e7a0649324d78f03d5f7f2de086a", + "symbol": "COOK", + "decimals": 18, + "name": "Cook", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x965b0df5bda0e7a0649324d78f03d5f7f2de086a.png", + "aggregators": [ + "PancakeCoinGecko", + "1inch", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 6 + }, + "0x92d7756c60dcfd4c689290e8a9f4d263b3b32241": { + "address": "0x92d7756c60dcfd4c689290e8a9f4d263b3b32241", + "symbol": "BOR", + "decimals": 18, + "name": "BoringDAO [OLD]", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x92d7756c60dcfd4c689290e8a9f4d263b3b32241.png", + "aggregators": [ + "PancakeCoinGecko", + "LiFi", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 6 + }, + "0x4e1b16ef22935a575a6811d4616f98c4077e4408": { + "address": "0x4e1b16ef22935a575a6811d4616f98c4077e4408", + "symbol": "KEL", + "decimals": 18, + "name": "KelVPN", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x4e1b16ef22935a575a6811d4616f98c4077e4408.png", + "aggregators": [ + "PancakeCoinMarketCap", + "LiFi", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 6 + }, + "0x1a2fb0af670d0234c2857fad35b789f8cb725584": { + "address": "0x1a2fb0af670d0234c2857fad35b789f8cb725584", + "symbol": "KUN", + "decimals": 18, + "name": "Qian Governance Token", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x1a2fb0af670d0234c2857fad35b789f8cb725584.png", + "aggregators": [ + "PancakeExtended", + "LiFi", + "Socket", + "Rubic", + "Rango", + "SushiSwap" + ], + "occurrences": 6 + }, + "0xa07c5b74c9b40447a954e1466938b865b6bbea36": { + "address": "0xa07c5b74c9b40447a954e1466938b865b6bbea36", + "symbol": "VBNB", + "decimals": 8, + "name": "Venus BNB", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xa07c5b74c9b40447a954e1466938b865b6bbea36.png", + "aggregators": [ + "PancakeCoinMarketCap", + "1inch", + "LiFi", + "Socket", + "Rubic", + "Rango" + ], + "occurrences": 6 + }, + "0x5986d5c77c65e5801a5caa4fae80089f870a71da": { + "address": "0x5986d5c77c65e5801a5caa4fae80089f870a71da", + "symbol": "BDIGG", + "decimals": 18, + "name": "BDIGG", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x5986d5c77c65e5801a5caa4fae80089f870a71da.png", + "aggregators": [ + "PancakeExtended", + "1inch", + "LiFi", + "Socket", + "Rubic", + "Rango" + ], + "occurrences": 6 + }, + "0xd15cee1deafbad6c0b3fd7489677cc102b141464": { + "address": "0xd15cee1deafbad6c0b3fd7489677cc102b141464", + "symbol": "COVAL", + "decimals": 8, + "name": "Circuits of Value", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xd15cee1deafbad6c0b3fd7489677cc102b141464.png", + "aggregators": [ + "PancakeCoinMarketCap", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0xec583f25a049cc145da9a256cdbe9b6201a705ff": { + "address": "0xec583f25a049cc145da9a256cdbe9b6201a705ff", + "symbol": "DREP", + "decimals": 18, + "name": "Drep", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xec583f25a049cc145da9a256cdbe9b6201a705ff.png", + "aggregators": [ + "PancakeCoinGecko", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0xfa54ff1a158b5189ebba6ae130ced6bbd3aea76e": { + "address": "0xfa54ff1a158b5189ebba6ae130ced6bbd3aea76e", + "symbol": "SOL", + "decimals": 9, + "name": "SOL (Wormhole)", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xfa54ff1a158b5189ebba6ae130ced6bbd3aea76e.png", + "aggregators": [ + "PancakeCoinGecko", + "1inch", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x3b198e26e473b8fab2085b37978e36c9de5d7f68": { + "address": "0x3b198e26e473b8fab2085b37978e36c9de5d7f68", + "symbol": "TIME", + "decimals": 6, + "name": "chrono.tech", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x3b198e26e473b8fab2085b37978e36c9de5d7f68.png", + "aggregators": [ + "PancakeCoinMarketCap", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x97a30c692ece9c317235d48287d23d358170fc40": { + "address": "0x97a30c692ece9c317235d48287d23d358170fc40", + "symbol": "CRX", + "decimals": 18, + "name": "CryptEx Token", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x97a30c692ece9c317235d48287d23d358170fc40.png", + "aggregators": [ + "PancakeCoinMarketCap", + "1inch", + "TrustWallet", + "Rubic", + "Rango" + ], + "occurrences": 5 + }, + "0x9ac983826058b8a9c7aa1c9171441191232e8404": { + "address": "0x9ac983826058b8a9c7aa1c9171441191232e8404", + "symbol": "SNX", + "decimals": 18, + "name": "Synthetix Network Token", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x9ac983826058b8a9c7aa1c9171441191232e8404.png", + "aggregators": [ + "PancakeCoinMarketCap", + "LiFi", + "Socket", + "Rubic", + "Rango" + ], + "occurrences": 5 + }, + "0x3d6545b08693dae087e957cb1180ee38b9e3c25e": { + "address": "0x3d6545b08693dae087e957cb1180ee38b9e3c25e", + "symbol": "ETC", + "decimals": 18, + "name": "Ethereum Classic", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x3d6545b08693dae087e957cb1180ee38b9e3c25e.png", + "aggregators": [ + "PancakeCoinMarketCap", + "1inch", + "LiFi", + "Rubic", + "Rango" + ], + "occurrences": 5 + }, + "0x1f9f6a696c6fd109cd3956f45dc709d2b3902163": { + "address": "0x1f9f6a696c6fd109cd3956f45dc709d2b3902163", + "symbol": "CELR", + "decimals": 18, + "name": "CelerToken", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x1f9f6a696c6fd109cd3956f45dc709d2b3902163.png", + "aggregators": [ + "PancakeCoinMarketCap", + "LiFi", + "Socket", + "Rubic", + "Rango" + ], + "occurrences": 5 + }, + "0x01e0d17a533e5930a349c2bb71304f04f20ab12b": { + "address": "0x01e0d17a533e5930a349c2bb71304f04f20ab12b", + "symbol": "RPG", + "decimals": 18, + "name": "Revolve Games", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x01e0d17a533e5930a349c2bb71304f04f20ab12b.png", + "aggregators": [ + "PancakeCoinMarketCap", + "LiFi", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x33333ee26a7d02e41c33828b42fb1e0889143477": { + "address": "0x33333ee26a7d02e41c33828b42fb1e0889143477", + "symbol": "LIQR", + "decimals": 18, + "name": "Topshelf Finance", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x33333ee26a7d02e41c33828b42fb1e0889143477.png", + "aggregators": [ + "PancakeCoinMarketCap", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x95c78222b3d6e262426483d42cfa53685a67ab9d": { + "address": "0x95c78222b3d6e262426483d42cfa53685a67ab9d", + "symbol": "VBUSD", + "decimals": 8, + "name": "Venus BUSD", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x95c78222b3d6e262426483d42cfa53685a67ab9d.png", + "aggregators": [ + "PancakeCoinMarketCap", + "LiFi", + "Socket", + "Rubic", + "Rango" + ], + "occurrences": 5 + }, + "0x2d2567dec25c9795117228adc7fd58116d2e310c": { + "address": "0x2d2567dec25c9795117228adc7fd58116d2e310c", + "symbol": "SQUAD", + "decimals": 18, + "name": "SquadSwap", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x2d2567dec25c9795117228adc7fd58116d2e310c.png", + "aggregators": [ + "PancakeCoinMarketCap", + "LiFi", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0xdb0170e2d0c1cc1b2e7a90313d9b9afa4f250289": { + "address": "0xdb0170e2d0c1cc1b2e7a90313d9b9afa4f250289", + "symbol": "ADAPAD", + "decimals": 18, + "name": "ADAPad", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xdb0170e2d0c1cc1b2e7a90313d9b9afa4f250289.png", + "aggregators": [ + "PancakeCoinMarketCap", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x20f663cea80face82acdfa3aae6862d246ce0333": { + "address": "0x20f663cea80face82acdfa3aae6862d246ce0333", + "symbol": "DRIP", + "decimals": 18, + "name": "Drip Network", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x20f663cea80face82acdfa3aae6862d246ce0333.png", + "aggregators": [ + "PancakeCoinMarketCap", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x2ab0e9e4ee70fff1fb9d67031e44f6410170d00e": { + "address": "0x2ab0e9e4ee70fff1fb9d67031e44f6410170d00e", + "symbol": "BXEN", + "decimals": 18, + "name": "XEN Crypto (BSC)", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x2ab0e9e4ee70fff1fb9d67031e44f6410170d00e.png", + "aggregators": [ + "PancakeCoinMarketCap", + "Rubic", + "Squid", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x843d4a358471547f51534e3e51fae91cb4dc3f28": { + "address": "0x843d4a358471547f51534e3e51fae91cb4dc3f28", + "symbol": "LOWB", + "decimals": 18, + "name": "Loser Coin", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x843d4a358471547f51534e3e51fae91cb4dc3f28.png", + "aggregators": [ + "PancakeCoinMarketCap", + "1inch", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x48077400faf11183c043feb5184a13ea628bb0db": { + "address": "0x48077400faf11183c043feb5184a13ea628bb0db", + "symbol": "ZIX", + "decimals": 18, + "name": "Coinzix Token", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x48077400faf11183c043feb5184a13ea628bb0db.png", + "aggregators": [ + "PancakeCoinMarketCap", + "1inch", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x551897f8203bd131b350601d3ac0679ba0fc0136": { + "address": "0x551897f8203bd131b350601d3ac0679ba0fc0136", + "symbol": "NFP", + "decimals": 18, + "name": "NFPrompt", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x551897f8203bd131b350601d3ac0679ba0fc0136.png", + "aggregators": [ + "PancakeCoinMarketCap", + "LiFi", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0xa776f5b86cc520861f55a261515264e3bd86e72e": { + "address": "0xa776f5b86cc520861f55a261515264e3bd86e72e", + "symbol": "SPHYNX", + "decimals": 18, + "name": "Sphynx Labs", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xa776f5b86cc520861f55a261515264e3bd86e72e.png", + "aggregators": [ + "PancakeCoinMarketCap", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x328fd053c4bb968875afd9ad0af36fcf4a0bdda9": { + "address": "0x328fd053c4bb968875afd9ad0af36fcf4a0bdda9", + "symbol": "AGII", + "decimals": 18, + "name": "AGII", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x328fd053c4bb968875afd9ad0af36fcf4a0bdda9.png", + "aggregators": [ + "PancakeCoinMarketCap", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x168e3b1746aa249a9b3603b70605924fe255ee1a": { + "address": "0x168e3b1746aa249a9b3603b70605924fe255ee1a", + "symbol": "GMR", + "decimals": 18, + "name": "GAMER", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x168e3b1746aa249a9b3603b70605924fe255ee1a.png", + "aggregators": [ + "PancakeCoinMarketCap", + "Rubic", + "Squid", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x184cff0e719826b966025f93e05d8c8b0a79b3f9": { + "address": "0x184cff0e719826b966025f93e05d8c8b0a79b3f9", + "symbol": "TRIAS", + "decimals": 18, + "name": "TriasLab", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x184cff0e719826b966025f93e05d8c8b0a79b3f9.png", + "aggregators": [ + "PancakeCoinGecko", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0xbb73bb2505ac4643d5c0a99c2a1f34b3dfd09d11": { + "address": "0xbb73bb2505ac4643d5c0a99c2a1f34b3dfd09d11", + "symbol": "MGC", + "decimals": 9, + "name": "Meta Games Coin", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xbb73bb2505ac4643d5c0a99c2a1f34b3dfd09d11.png", + "aggregators": [ + "PancakeCoinMarketCap", + "Rubic", + "Squid", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0xb583961e033dfe0fff161952f7ba21c411b6103d": { + "address": "0xb583961e033dfe0fff161952f7ba21c411b6103d", + "symbol": "YOU", + "decimals": 18, + "name": "Youwho", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xb583961e033dfe0fff161952f7ba21c411b6103d.png", + "aggregators": [ + "PancakeCoinMarketCap", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x1446f3cedf4d86a9399e49f7937766e6de2a3aab": { + "address": "0x1446f3cedf4d86a9399e49f7937766e6de2a3aab", + "symbol": "KRW", + "decimals": 18, + "name": "KROWN", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x1446f3cedf4d86a9399e49f7937766e6de2a3aab.png", + "aggregators": [ + "PancakeCoinMarketCap", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x551faab1027cc50efaea5bed092e330475c3cd99": { + "address": "0x551faab1027cc50efaea5bed092e330475c3cd99", + "symbol": "MBC", + "decimals": 18, + "name": "MonbaseCoin", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x551faab1027cc50efaea5bed092e330475c3cd99.png", + "aggregators": [ + "PancakeCoinMarketCap", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x4b87f578d6fabf381f43bd2197fbb2a877da6ef8": { + "address": "0x4b87f578d6fabf381f43bd2197fbb2a877da6ef8", + "symbol": "BFT", + "decimals": 9, + "name": "The Big Five", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x4b87f578d6fabf381f43bd2197fbb2a877da6ef8.png", + "aggregators": [ + "PancakeCoinMarketCap", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0xbb6cdedac5cab4a420211a4a8e8b5dca879b31de": { + "address": "0xbb6cdedac5cab4a420211a4a8e8b5dca879b31de", + "symbol": "MF", + "decimals": 18, + "name": "MetaFighter", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xbb6cdedac5cab4a420211a4a8e8b5dca879b31de.png", + "aggregators": [ + "PancakeCoinMarketCap", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0xb8e3bb633f7276cc17735d86154e0ad5ec9928c0": { + "address": "0xb8e3bb633f7276cc17735d86154e0ad5ec9928c0", + "symbol": "VLXPAD", + "decimals": 18, + "name": "VelasPad", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xb8e3bb633f7276cc17735d86154e0ad5ec9928c0.png", + "aggregators": [ + "PancakeCoinMarketCap", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0xbcbdecf8e76a5c32dba69de16985882ace1678c6": { + "address": "0xbcbdecf8e76a5c32dba69de16985882ace1678c6", + "symbol": "RVC", + "decimals": 18, + "name": "Revenue Coin", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xbcbdecf8e76a5c32dba69de16985882ace1678c6.png", + "aggregators": [ + "PancakeCoinMarketCap", + "1inch", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0xcab1fd29d6fd64bb63471b666e8dbfc1915bf90e": { + "address": "0xcab1fd29d6fd64bb63471b666e8dbfc1915bf90e", + "symbol": "MEGALAND", + "decimals": 18, + "name": "Metagalaxy Land", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xcab1fd29d6fd64bb63471b666e8dbfc1915bf90e.png", + "aggregators": [ + "PancakeCoinMarketCap", + "Rubic", + "Squid", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0xb248a295732e0225acd3337607cc01068e3b9c10": { + "address": "0xb248a295732e0225acd3337607cc01068e3b9c10", + "symbol": "VXRP", + "decimals": 8, + "name": "Venus XRP", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xb248a295732e0225acd3337607cc01068e3b9c10.png", + "aggregators": [ + "PancakeCoinMarketCap", + "1inch", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x523821d20a283d955f6205b4c9252779cd0f964b": { + "address": "0x523821d20a283d955f6205b4c9252779cd0f964b", + "symbol": "OK", + "decimals": 18, + "name": "Okcash", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x523821d20a283d955f6205b4c9252779cd0f964b.png", + "aggregators": [ + "PancakeCoinMarketCap", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x4d7fa587ec8e50bd0e9cd837cb4da796f47218a1": { + "address": "0x4d7fa587ec8e50bd0e9cd837cb4da796f47218a1", + "symbol": "SAFE", + "decimals": 18, + "name": "SAFE(AnWang)", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x4d7fa587ec8e50bd0e9cd837cb4da796f47218a1.png", + "aggregators": [ + "PancakeCoinGecko", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x72eb7ca07399ec402c5b7aa6a65752b6a1dc0c27": { + "address": "0x72eb7ca07399ec402c5b7aa6a65752b6a1dc0c27", + "symbol": "ASTRO", + "decimals": 18, + "name": "AstroSwap", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x72eb7ca07399ec402c5b7aa6a65752b6a1dc0c27.png", + "aggregators": [ + "PancakeCoinMarketCap", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x4a824ee819955a7d769e03fe36f9e0c3bd3aa60b": { + "address": "0x4a824ee819955a7d769e03fe36f9e0c3bd3aa60b", + "symbol": "KABOSU", + "decimals": 9, + "name": "Kabosu", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x4a824ee819955a7d769e03fe36f9e0c3bd3aa60b.png", + "aggregators": [ + "PancakeCoinMarketCap", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0xff71e87a2e7b818eee86f3f1c2e94a06cac85866": { + "address": "0xff71e87a2e7b818eee86f3f1c2e94a06cac85866", + "symbol": "CAT", + "decimals": 9, + "name": "Catcoin BSC", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xff71e87a2e7b818eee86f3f1c2e94a06cac85866.png", + "aggregators": [ + "PancakeCoinMarketCap", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x2290c6bd9560e6498dfdf10f9ecb17997ca131f2": { + "address": "0x2290c6bd9560e6498dfdf10f9ecb17997ca131f2", + "symbol": "MSTR", + "decimals": 18, + "name": "Monsterra", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x2290c6bd9560e6498dfdf10f9ecb17997ca131f2.png", + "aggregators": [ + "PancakeCoinGecko", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x8fff93e810a2edaafc326edee51071da9d398e83": { + "address": "0x8fff93e810a2edaafc326edee51071da9d398e83", + "symbol": "BRISE", + "decimals": 9, + "name": "Bitgert", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x8fff93e810a2edaafc326edee51071da9d398e83.png", + "aggregators": [ + "PancakeCoinMarketCap", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x5b52bfb8062ce664d74bbcd4cd6dc7df53fd7233": { + "address": "0x5b52bfb8062ce664d74bbcd4cd6dc7df53fd7233", + "symbol": "ZENIQ", + "decimals": 18, + "name": "ZENIQ", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x5b52bfb8062ce664d74bbcd4cd6dc7df53fd7233.png", + "aggregators": [ + "PancakeCoinMarketCap", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0xd89336eac00e689d218c46cdd854585a09f432b3": { + "address": "0xd89336eac00e689d218c46cdd854585a09f432b3", + "symbol": "LUSD", + "decimals": 18, + "name": "LUSD", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xd89336eac00e689d218c46cdd854585a09f432b3.png", + "aggregators": [ + "PancakeCoinGecko", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0xf7844cb890f4c339c497aeab599abdc3c874b67a": { + "address": "0xf7844cb890f4c339c497aeab599abdc3c874b67a", + "symbol": "NFTART", + "decimals": 9, + "name": "NFT Art Finance", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xf7844cb890f4c339c497aeab599abdc3c874b67a.png", + "aggregators": [ + "PancakeCoinMarketCap", + "1inch", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x577ad06f635b402fc2724efd6a53a3a0aed3d155": { + "address": "0x577ad06f635b402fc2724efd6a53a3a0aed3d155", + "symbol": "BFHT", + "decimals": 6, + "name": "BeFaster Holder Token", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x577ad06f635b402fc2724efd6a53a3a0aed3d155.png", + "aggregators": [ + "PancakeCoinMarketCap", + "Rubic", + "Squid", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x04c747b40be4d535fc83d09939fb0f626f32800b": { + "address": "0x04c747b40be4d535fc83d09939fb0f626f32800b", + "symbol": "ITAM", + "decimals": 18, + "name": "ITAM Games", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x04c747b40be4d535fc83d09939fb0f626f32800b.png", + "aggregators": [ + "PancakeCoinMarketCap", + "1inch", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x3ad9594151886ce8538c1ff615efa2385a8c3a88": { + "address": "0x3ad9594151886ce8538c1ff615efa2385a8c3a88", + "symbol": "SAFEMARS", + "decimals": 9, + "name": "Safemars", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x3ad9594151886ce8538c1ff615efa2385a8c3a88.png", + "aggregators": [ + "PancakeCoinMarketCap", + "1inch", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x8789337a176e6e7223ff115f1cd85c993d42c25c": { + "address": "0x8789337a176e6e7223ff115f1cd85c993d42c25c", + "symbol": "COP", + "decimals": 18, + "name": "Copiosa", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x8789337a176e6e7223ff115f1cd85c993d42c25c.png", + "aggregators": [ + "PancakeCoinMarketCap", + "LiFi", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x50d809c74e0b8e49e7b4c65bb3109abe3ff4c1c1": { + "address": "0x50d809c74e0b8e49e7b4c65bb3109abe3ff4c1c1", + "symbol": "CUB", + "decimals": 18, + "name": "Cub Finance", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x50d809c74e0b8e49e7b4c65bb3109abe3ff4c1c1.png", + "aggregators": [ + "PancakeCoinMarketCap", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0xc029a12e4a002c6858878fd9d3cc74e227cc2dda": { + "address": "0xc029a12e4a002c6858878fd9d3cc74e227cc2dda", + "symbol": "VEX", + "decimals": 9, + "name": "Velorex", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xc029a12e4a002c6858878fd9d3cc74e227cc2dda.png", + "aggregators": [ + "PancakeCoinMarketCap", + "1inch", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0xf483af09917ba63f1e274056978036d266eb56e6": { + "address": "0xf483af09917ba63f1e274056978036d266eb56e6", + "symbol": "BULL", + "decimals": 18, + "name": "Bull Coin", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xf483af09917ba63f1e274056978036d266eb56e6.png", + "aggregators": [ + "PancakeCoinMarketCap", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0xb0b84d294e0c75a6abe60171b70edeb2efd14a1b": { + "address": "0xb0b84d294e0c75a6abe60171b70edeb2efd14a1b", + "symbol": "SLISBNB", + "decimals": 18, + "name": "slisBNB", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xb0b84d294e0c75a6abe60171b70edeb2efd14a1b.png", + "aggregators": ["Metamask", "LiFi", "Rubic", "Squid", "Sonarwatch"], + "occurrences": 5 + }, + "0x0e7beec376099429b85639eb3abe7cf22694ed49": { + "address": "0x0e7beec376099429b85639eb3abe7cf22694ed49", + "symbol": "BUNI", + "decimals": 18, + "name": "Bunicorn", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x0e7beec376099429b85639eb3abe7cf22694ed49.png", + "aggregators": [ + "PancakeCoinMarketCap", + "LiFi", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x4f1a6fc6a7b65dc7ebc4eb692dc3641be997c2f2": { + "address": "0x4f1a6fc6a7b65dc7ebc4eb692dc3641be997c2f2", + "symbol": "SANTA", + "decimals": 9, + "name": "Santa Coin", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x4f1a6fc6a7b65dc7ebc4eb692dc3641be997c2f2.png", + "aggregators": [ + "PancakeCoinMarketCap", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x543c7ebb52d56985f63f246a5b3558aff79037d7": { + "address": "0x543c7ebb52d56985f63f246a5b3558aff79037d7", + "symbol": "SDT", + "decimals": 18, + "name": "Stabledoc", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x543c7ebb52d56985f63f246a5b3558aff79037d7.png", + "aggregators": [ + "PancakeCoinMarketCap", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0xfc4f5a4d1452b8dc6c3cb745db15b29c00812b19": { + "address": "0xfc4f5a4d1452b8dc6c3cb745db15b29c00812b19", + "symbol": "ORO", + "decimals": 18, + "name": "Operon Origins", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xfc4f5a4d1452b8dc6c3cb745db15b29c00812b19.png", + "aggregators": [ + "PancakeCoinMarketCap", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x4803ac6b79f9582f69c4fa23c72cb76dd1e46d8d": { + "address": "0x4803ac6b79f9582f69c4fa23c72cb76dd1e46d8d", + "symbol": "TMT", + "decimals": 18, + "name": "TopManager", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x4803ac6b79f9582f69c4fa23c72cb76dd1e46d8d.png", + "aggregators": [ + "PancakeCoinMarketCap", + "LiFi", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0xb72962568345253f71a18318d67e13a282b187e6": { + "address": "0xb72962568345253f71a18318d67e13a282b187e6", + "symbol": "EFT", + "decimals": 18, + "name": "ETH Fan Token Ecosystem", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xb72962568345253f71a18318d67e13a282b187e6.png", + "aggregators": [ + "PancakeCoinMarketCap", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0xce186ad6430e2fe494a22c9edbd4c68794a28b35": { + "address": "0xce186ad6430e2fe494a22c9edbd4c68794a28b35", + "symbol": "LOOP", + "decimals": 18, + "name": "LoopNetwork", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xce186ad6430e2fe494a22c9edbd4c68794a28b35.png", + "aggregators": [ + "PancakeCoinMarketCap", + "1inch", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x23e8a70534308a4aaf76fb8c32ec13d17a3bd89e": { + "address": "0x23e8a70534308a4aaf76fb8c32ec13d17a3bd89e", + "symbol": "LUSD", + "decimals": 18, + "name": "LUSD [OLD]", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x23e8a70534308a4aaf76fb8c32ec13d17a3bd89e.png", + "aggregators": [ + "PancakeExtended", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x332e78c687c3fcd91494c6b13f0fc685b2a57434": { + "address": "0x332e78c687c3fcd91494c6b13f0fc685b2a57434", + "symbol": "VISION", + "decimals": 18, + "name": "VisionGame", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x332e78c687c3fcd91494c6b13f0fc685b2a57434.png", + "aggregators": [ + "PancakeCoinMarketCap", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0xc864019047b864b6ab609a968ae2725dfaee808a": { + "address": "0xc864019047b864b6ab609a968ae2725dfaee808a", + "symbol": "BIT", + "decimals": 9, + "name": "Biconomy Exchange Token", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xc864019047b864b6ab609a968ae2725dfaee808a.png", + "aggregators": [ + "PancakeCoinMarketCap", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x443cab9583b83eaa7a712c9d64525e57e2a7eb3f": { + "address": "0x443cab9583b83eaa7a712c9d64525e57e2a7eb3f", + "symbol": "XTM", + "decimals": 18, + "name": "Torum", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x443cab9583b83eaa7a712c9d64525e57e2a7eb3f.png", + "aggregators": [ + "PancakeCoinMarketCap", + "LiFi", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0xbb0fa2fbe9b37444f5d1dbd22e0e5bdd2afbbe85": { + "address": "0xbb0fa2fbe9b37444f5d1dbd22e0e5bdd2afbbe85", + "symbol": "USDM", + "decimals": 18, + "name": "USD Mars", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xbb0fa2fbe9b37444f5d1dbd22e0e5bdd2afbbe85.png", + "aggregators": [ + "PancakeCoinMarketCap", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x9c67638c4fa06fd47fb8900fc7f932f7eab589de": { + "address": "0x9c67638c4fa06fd47fb8900fc7f932f7eab589de", + "symbol": "ARKER", + "decimals": 18, + "name": "Arker", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x9c67638c4fa06fd47fb8900fc7f932f7eab589de.png", + "aggregators": [ + "PancakeCoinMarketCap", + "1inch", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x7d4984490c4c68f8ead9dddca6d04c514ef77324": { + "address": "0x7d4984490c4c68f8ead9dddca6d04c514ef77324", + "symbol": "GOLDEN", + "decimals": 9, + "name": "Golden Inu", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x7d4984490c4c68f8ead9dddca6d04c514ef77324.png", + "aggregators": [ + "PancakeCoinMarketCap", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x193397bb76868c6873e733ad60d5953843ebc84e": { + "address": "0x193397bb76868c6873e733ad60d5953843ebc84e", + "symbol": "MEME", + "decimals": 18, + "name": "MEMETOON", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x193397bb76868c6873e733ad60d5953843ebc84e.png", + "aggregators": [ + "PancakeCoinMarketCap", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x738ea75b01d8db931b4374c6ebd3de82d7d3a272": { + "address": "0x738ea75b01d8db931b4374c6ebd3de82d7d3a272", + "symbol": "DUSD", + "decimals": 18, + "name": "DUSD", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x738ea75b01d8db931b4374c6ebd3de82d7d3a272.png", + "aggregators": [ + "PancakeCoinMarketCap", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x7029f86dc4634c5d59ee3f1578c193783505e2c1": { + "address": "0x7029f86dc4634c5d59ee3f1578c193783505e2c1", + "symbol": "TPAD", + "decimals": 18, + "name": "TrustPad", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x7029f86dc4634c5d59ee3f1578c193783505e2c1.png", + "aggregators": [ + "PancakeCoinGecko", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x0173295183685f27c84db046b5f0bea3e683c24b": { + "address": "0x0173295183685f27c84db046b5f0bea3e683c24b", + "symbol": "CAT", + "decimals": 18, + "name": "Cat", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x0173295183685f27c84db046b5f0bea3e683c24b.png", + "aggregators": [ + "PancakeCoinMarketCap", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x4d1e90ab966ae26c778b2f9f365aa40abb13f53c": { + "address": "0x4d1e90ab966ae26c778b2f9f365aa40abb13f53c", + "symbol": "STA", + "decimals": 8, + "name": "STA", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x4d1e90ab966ae26c778b2f9f365aa40abb13f53c.png", + "aggregators": [ + "PancakeCoinMarketCap", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x566a9eeac9a589bf0825222bca083ecdb9c86c82": { + "address": "0x566a9eeac9a589bf0825222bca083ecdb9c86c82", + "symbol": "LBR", + "decimals": 18, + "name": "Libra Protocol", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x566a9eeac9a589bf0825222bca083ecdb9c86c82.png", + "aggregators": [ + "PancakeCoinMarketCap", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x8b1869f79b9abf52001314a2e6990a96f039058d": { + "address": "0x8b1869f79b9abf52001314a2e6990a96f039058d", + "symbol": "ANDY", + "decimals": 9, + "name": "Andy", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x8b1869f79b9abf52001314a2e6990a96f039058d.png", + "aggregators": [ + "PancakeCoinMarketCap", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0xa57ac35ce91ee92caefaa8dc04140c8e232c2e50": { + "address": "0xa57ac35ce91ee92caefaa8dc04140c8e232c2e50", + "symbol": "PIT", + "decimals": 9, + "name": "Pitbull", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xa57ac35ce91ee92caefaa8dc04140c8e232c2e50.png", + "aggregators": [ + "PancakeCoinMarketCap", + "1inch", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x26c5e01524d2e6280a48f2c50ff6de7e52e9611c": { + "address": "0x26c5e01524d2e6280a48f2c50ff6de7e52e9611c", + "symbol": "WSTETH", + "decimals": 18, + "name": "Wrapped liquid staked Ether 2.0", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x26c5e01524d2e6280a48f2c50ff6de7e52e9611c.png", + "aggregators": [ + "PancakeExtended", + "1inch", + "LiFi", + "Socket", + "Rubic" + ], + "occurrences": 5 + }, + "0x2cd96e8c3ff6b5e01169f6e3b61d28204e7810bb": { + "address": "0x2cd96e8c3ff6b5e01169f6e3b61d28204e7810bb", + "symbol": "LBLOCK", + "decimals": 9, + "name": "Lucky Block", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x2cd96e8c3ff6b5e01169f6e3b61d28204e7810bb.png", + "aggregators": [ + "PancakeCoinMarketCap", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0xa7e477721019b0d0b870efe4899766d09aa41c05": { + "address": "0xa7e477721019b0d0b870efe4899766d09aa41c05", + "symbol": "PAN", + "decimals": 18, + "name": "Pankito", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xa7e477721019b0d0b870efe4899766d09aa41c05.png", + "aggregators": [ + "PancakeCoinMarketCap", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x9000cac49c3841926baac5b2e13c87d43e51b6a4": { + "address": "0x9000cac49c3841926baac5b2e13c87d43e51b6a4", + "symbol": "POR", + "decimals": 18, + "name": "Portuma", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x9000cac49c3841926baac5b2e13c87d43e51b6a4.png", + "aggregators": [ + "PancakeCoinMarketCap", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x02533c1e9abbafe5816ed8b27c0d22a8731075e0": { + "address": "0x02533c1e9abbafe5816ed8b27c0d22a8731075e0", + "symbol": "NOW", + "decimals": 18, + "name": "ChangeNOW", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x02533c1e9abbafe5816ed8b27c0d22a8731075e0.png", + "aggregators": [ + "PancakeCoinMarketCap", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x66207e39bb77e6b99aab56795c7c340c08520d83": { + "address": "0x66207e39bb77e6b99aab56795c7c340c08520d83", + "symbol": "IDRT", + "decimals": 2, + "name": "Rupiah Token", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x66207e39bb77e6b99aab56795c7c340c08520d83.png", + "aggregators": [ + "PancakeCoinMarketCap", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0xfd2700c51812753215754de9ec51cdd42bf725b9": { + "address": "0xfd2700c51812753215754de9ec51cdd42bf725b9", + "symbol": "ROUTE", + "decimals": 18, + "name": "Router Protocol [OLD]", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xfd2700c51812753215754de9ec51cdd42bf725b9.png", + "aggregators": [ + "PancakeCoinGecko", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x6d8734002fbffe1c86495e32c95f732fc77f6f2a": { + "address": "0x6d8734002fbffe1c86495e32c95f732fc77f6f2a", + "symbol": "NUX", + "decimals": 18, + "name": "Peanut", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x6d8734002fbffe1c86495e32c95f732fc77f6f2a.png", + "aggregators": [ + "PancakeCoinMarketCap", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x58759dd469ae5631c42cf8a473992335575b58d7": { + "address": "0x58759dd469ae5631c42cf8a473992335575b58d7", + "symbol": "DHV", + "decimals": 18, + "name": "DeHive", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x58759dd469ae5631c42cf8a473992335575b58d7.png", + "aggregators": [ + "PancakeCoinMarketCap", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0xd9e8d20bde081600fac0d94b88eafaddce55aa43": { + "address": "0xd9e8d20bde081600fac0d94b88eafaddce55aa43", + "symbol": "PUSSY", + "decimals": 18, + "name": "Pussy Financial", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xd9e8d20bde081600fac0d94b88eafaddce55aa43.png", + "aggregators": [ + "PancakeCoinMarketCap", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x2ff0b946a6782190c4fe5d4971cfe79f0b6e4df2": { + "address": "0x2ff0b946a6782190c4fe5d4971cfe79f0b6e4df2", + "symbol": "MYST", + "decimals": 18, + "name": "Mysterium", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x2ff0b946a6782190c4fe5d4971cfe79f0b6e4df2.png", + "aggregators": [ + "PancakeCoinMarketCap", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0xc9457161320210d22f0d0d5fc1309acb383d4609": { + "address": "0xc9457161320210d22f0d0d5fc1309acb383d4609", + "symbol": "DOV", + "decimals": 18, + "name": "Dovu [OLD]", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xc9457161320210d22f0d0d5fc1309acb383d4609.png", + "aggregators": [ + "PancakeCoinMarketCap", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0xd882739fca9cbae00f3821c4c65189e2d7e26147": { + "address": "0xd882739fca9cbae00f3821c4c65189e2d7e26147", + "symbol": "FOUR", + "decimals": 18, + "name": "FOUR", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xd882739fca9cbae00f3821c4c65189e2d7e26147.png", + "aggregators": [ + "PancakeCoinMarketCap", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x3da932456d082cba208feb0b096d49b202bf89c8": { + "address": "0x3da932456d082cba208feb0b096d49b202bf89c8", + "symbol": "DEGO", + "decimals": 18, + "name": "Dego Finance", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x3da932456d082cba208feb0b096d49b202bf89c8.png", + "aggregators": [ + "PancakeCoinMarketCap", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x23316e6b09e8f4f67b95d53b4f1e59d1fb518f29": { + "address": "0x23316e6b09e8f4f67b95d53b4f1e59d1fb518f29", + "symbol": "MVEDA", + "decimals": 8, + "name": "MedicalVeda", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x23316e6b09e8f4f67b95d53b4f1e59d1fb518f29.png", + "aggregators": [ + "PancakeCoinMarketCap", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x5d186e28934c6b0ff5fc2fece15d1f34f78cbd87": { + "address": "0x5d186e28934c6b0ff5fc2fece15d1f34f78cbd87", + "symbol": "DUCK", + "decimals": 18, + "name": "DLP Duck", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x5d186e28934c6b0ff5fc2fece15d1f34f78cbd87.png", + "aggregators": [ + "PancakeCoinGecko", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x08037036451c768465369431da5c671ad9b37dbc": { + "address": "0x08037036451c768465369431da5c671ad9b37dbc", + "symbol": "NFTS", + "decimals": 18, + "name": "NFT Stars", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x08037036451c768465369431da5c671ad9b37dbc.png", + "aggregators": [ + "PancakeCoinMarketCap", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0xdae4f1dca49408288b55250022f67195eff2445a": { + "address": "0xdae4f1dca49408288b55250022f67195eff2445a", + "symbol": "HANU", + "decimals": 12, + "name": "Hanu Yokia", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xdae4f1dca49408288b55250022f67195eff2445a.png", + "aggregators": [ + "PancakeCoinMarketCap", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x54012cdf4119de84218f7eb90eeb87e25ae6ebd7": { + "address": "0x54012cdf4119de84218f7eb90eeb87e25ae6ebd7", + "symbol": "LUFFY", + "decimals": 9, + "name": "Luffy", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x54012cdf4119de84218f7eb90eeb87e25ae6ebd7.png", + "aggregators": [ + "PancakeCoinMarketCap", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0xe4e8e6878718bfe533702d4a6571eb74d79b0915": { + "address": "0xe4e8e6878718bfe533702d4a6571eb74d79b0915", + "symbol": "LUCHOW", + "decimals": 18, + "name": "LunaChow", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xe4e8e6878718bfe533702d4a6571eb74d79b0915.png", + "aggregators": [ + "PancakeCoinMarketCap", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0xf4b5470523ccd314c6b9da041076e7d79e0df267": { + "address": "0xf4b5470523ccd314c6b9da041076e7d79e0df267", + "symbol": "BBANK", + "decimals": 18, + "name": "blockbank", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xf4b5470523ccd314c6b9da041076e7d79e0df267.png", + "aggregators": [ + "PancakeCoinMarketCap", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0xbd525e51384905c6c0936a431bc7efb6c4903ea0": { + "address": "0xbd525e51384905c6c0936a431bc7efb6c4903ea0", + "symbol": "BIST", + "decimals": 18, + "name": "Bistroo", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xbd525e51384905c6c0936a431bc7efb6c4903ea0.png", + "aggregators": [ + "PancakeCoinMarketCap", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x4a0a3902e091cdb3aec4279a6bfac50297f0a79e": { + "address": "0x4a0a3902e091cdb3aec4279a6bfac50297f0a79e", + "symbol": "VERA", + "decimals": 18, + "name": "Vera", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x4a0a3902e091cdb3aec4279a6bfac50297f0a79e.png", + "aggregators": [ + "PancakeCoinMarketCap", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0xb2343143f814639c9b1f42961c698247171df34a": { + "address": "0xb2343143f814639c9b1f42961c698247171df34a", + "symbol": "CMCX", + "decimals": 18, + "name": "CORE MultiChain", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xb2343143f814639c9b1f42961c698247171df34a.png", + "aggregators": [ + "PancakeCoinMarketCap", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x8530b66ca3ddf50e0447eae8ad7ea7d5e62762ed": { + "address": "0x8530b66ca3ddf50e0447eae8ad7ea7d5e62762ed", + "symbol": "METADOGE", + "decimals": 18, + "name": "Meta Doge", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x8530b66ca3ddf50e0447eae8ad7ea7d5e62762ed.png", + "aggregators": [ + "PancakeCoinMarketCap", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0xfa37e513e6cd506c4694b992825a8b614c035581": { + "address": "0xfa37e513e6cd506c4694b992825a8b614c035581", + "symbol": "NEXM", + "decimals": 8, + "name": "Nexum", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xfa37e513e6cd506c4694b992825a8b614c035581.png", + "aggregators": [ + "PancakeCoinMarketCap", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x6c619006043eab742355395690c7b42d3411e8c0": { + "address": "0x6c619006043eab742355395690c7b42d3411e8c0", + "symbol": "ELFI", + "decimals": 18, + "name": "ELYFI", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x6c619006043eab742355395690c7b42d3411e8c0.png", + "aggregators": [ + "PancakeCoinMarketCap", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0xa0ed3c520dc0632657ad2eaaf19e26c4fd431a84": { + "address": "0xa0ed3c520dc0632657ad2eaaf19e26c4fd431a84", + "symbol": "HPO", + "decimals": 18, + "name": "Hippo Wallet", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xa0ed3c520dc0632657ad2eaaf19e26c4fd431a84.png", + "aggregators": [ + "PancakeCoinGecko", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0xca6d678e74f553f0e59cccc03ae644a3c2c5ee7d": { + "address": "0xca6d678e74f553f0e59cccc03ae644a3c2c5ee7d", + "symbol": "PLANET", + "decimals": 18, + "name": "Planet Token", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xca6d678e74f553f0e59cccc03ae644a3c2c5ee7d.png", + "aggregators": [ + "PancakeExtended", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x61b83edf87ea662c695439a807c386455c9e797c": { + "address": "0x61b83edf87ea662c695439a807c386455c9e797c", + "symbol": "4TOKEN", + "decimals": 18, + "name": "Ignore Fud", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x61b83edf87ea662c695439a807c386455c9e797c.png", + "aggregators": [ + "PancakeCoinMarketCap", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x336f374198c872ba760e85af9c6331c3c5a535d3": { + "address": "0x336f374198c872ba760e85af9c6331c3c5a535d3", + "symbol": "LIF3", + "decimals": 18, + "name": "Lif3", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x336f374198c872ba760e85af9c6331c3c5a535d3.png", + "aggregators": [ + "PancakeCoinMarketCap", + "LiFi", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0xaf20f5f19698f1d19351028cd7103b63d30de7d7": { + "address": "0xaf20f5f19698f1d19351028cd7103b63d30de7d7", + "symbol": "WAGMI", + "decimals": 18, + "name": "Wagmi", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xaf20f5f19698f1d19351028cd7103b63d30de7d7.png", + "aggregators": [ + "PancakeCoinMarketCap", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x0465aad9da170798433f4ab7fa7ec8b9b9bf0bb1": { + "address": "0x0465aad9da170798433f4ab7fa7ec8b9b9bf0bb1", + "symbol": "MPENDLE", + "decimals": 18, + "name": "mPendle", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x0465aad9da170798433f4ab7fa7ec8b9b9bf0bb1.png", + "aggregators": [ + "PancakeExtended", + "LiFi", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x31e4efe290973ebe91b3a875a7994f650942d28f": { + "address": "0x31e4efe290973ebe91b3a875a7994f650942d28f", + "symbol": "SHRAP", + "decimals": 18, + "name": "Shrapnel", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x31e4efe290973ebe91b3a875a7994f650942d28f.png", + "aggregators": [ + "PancakeCoinMarketCap", + "LiFi", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x982e609643794a31a07f5c5b142dd3a9cf0690be": { + "address": "0x982e609643794a31a07f5c5b142dd3a9cf0690be", + "symbol": "TAROT", + "decimals": 18, + "name": "Tarot", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x982e609643794a31a07f5c5b142dd3a9cf0690be.png", + "aggregators": [ + "PancakeCoinMarketCap", + "Rubic", + "Squid", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x840ef7e5f896be71d46df234c60898216fefcbe3": { + "address": "0x840ef7e5f896be71d46df234c60898216fefcbe3", + "symbol": "BYTE", + "decimals": 9, + "name": "Byte", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x840ef7e5f896be71d46df234c60898216fefcbe3.png", + "aggregators": [ + "PancakeCoinMarketCap", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0xaeb63742f2c7dd1538bbe2285b6789017a06b58b": { + "address": "0xaeb63742f2c7dd1538bbe2285b6789017a06b58b", + "symbol": "COLLE", + "decimals": 18, + "name": "Colle AI", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xaeb63742f2c7dd1538bbe2285b6789017a06b58b.png", + "aggregators": [ + "PancakeCoinMarketCap", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x58b9cb810a68a7f3e1e4f8cb45d1b9b3c79705e8": { + "address": "0x58b9cb810a68a7f3e1e4f8cb45d1b9b3c79705e8", + "symbol": "NEXT", + "decimals": 18, + "name": "Everclear", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x58b9cb810a68a7f3e1e4f8cb45d1b9b3c79705e8.png", + "aggregators": [ + "PancakeCoinMarketCap", + "LiFi", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0xc5d27f27f08d1fd1e3ebbaa50b3442e6c0d50439": { + "address": "0xc5d27f27f08d1fd1e3ebbaa50b3442e6c0d50439", + "symbol": "APP", + "decimals": 18, + "name": "RWAX", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xc5d27f27f08d1fd1e3ebbaa50b3442e6c0d50439.png", + "aggregators": [ + "PancakeCoinGecko", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x61ec85ab89377db65762e234c946b5c25a56e99e": { + "address": "0x61ec85ab89377db65762e234c946b5c25a56e99e", + "symbol": "HTX", + "decimals": 18, + "name": "HTX DAO", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x61ec85ab89377db65762e234c946b5c25a56e99e.png", + "aggregators": [ + "PancakeCoinMarketCap", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x968be3f7bfef0f8edc3c1ad90232ebb0da0867aa": { + "address": "0x968be3f7bfef0f8edc3c1ad90232ebb0da0867aa", + "symbol": "SWORLD", + "decimals": 18, + "name": "Seedworld", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x968be3f7bfef0f8edc3c1ad90232ebb0da0867aa.png", + "aggregators": [ + "PancakeExtended", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x63eaeb6e33e11252b10553900a9f38a9ed172871": { + "address": "0x63eaeb6e33e11252b10553900a9f38a9ed172871", + "symbol": "TUP", + "decimals": 18, + "name": "Tenup", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x63eaeb6e33e11252b10553900a9f38a9ed172871.png", + "aggregators": [ + "PancakeCoinMarketCap", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0xede2f059545e8cde832d8da3985caacf795b8765": { + "address": "0xede2f059545e8cde832d8da3985caacf795b8765", + "symbol": "ECO", + "decimals": 18, + "name": "Ormeus Ecosystem", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xede2f059545e8cde832d8da3985caacf795b8765.png", + "aggregators": [ + "PancakeCoinMarketCap", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0xe138c66982fd5c890c60b94fdba1747faf092c20": { + "address": "0xe138c66982fd5c890c60b94fdba1747faf092c20", + "symbol": "XFT", + "decimals": 18, + "name": "Offshift", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xe138c66982fd5c890c60b94fdba1747faf092c20.png", + "aggregators": [ + "PancakeCoinGecko", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x69a1913d334b524ea1632461c78797c837ca9fa6": { + "address": "0x69a1913d334b524ea1632461c78797c837ca9fa6", + "symbol": "RFUEL", + "decimals": 18, + "name": "RioDeFi", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x69a1913d334b524ea1632461c78797c837ca9fa6.png", + "aggregators": [ + "PancakeCoinMarketCap", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x314593fa9a2fa16432913dbccc96104541d32d11": { + "address": "0x314593fa9a2fa16432913dbccc96104541d32d11", + "symbol": "KIT", + "decimals": 18, + "name": "DexKit", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x314593fa9a2fa16432913dbccc96104541d32d11.png", + "aggregators": [ + "PancakeCoinMarketCap", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0xfb288d60d3b66f9c3e231a9a39ed3f158a4269aa": { + "address": "0xfb288d60d3b66f9c3e231a9a39ed3f158a4269aa", + "symbol": "PPAY", + "decimals": 18, + "name": "Plasma Finance", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xfb288d60d3b66f9c3e231a9a39ed3f158a4269aa.png", + "aggregators": [ + "PancakeCoinMarketCap", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0xf64ed9ad397a1ae657f31131d4b189220a7f1cc7": { + "address": "0xf64ed9ad397a1ae657f31131d4b189220a7f1cc7", + "symbol": "DFIAT", + "decimals": 18, + "name": "DeFiato", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xf64ed9ad397a1ae657f31131d4b189220a7f1cc7.png", + "aggregators": [ + "PancakeCoinMarketCap", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x5e57f24415f37c7d304e85df9b4c36bc08789794": { + "address": "0x5e57f24415f37c7d304e85df9b4c36bc08789794", + "symbol": "BRTR", + "decimals": 8, + "name": "Barter", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x5e57f24415f37c7d304e85df9b4c36bc08789794.png", + "aggregators": [ + "PancakeCoinMarketCap", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0xf0902eb0049a4003793bab33f3566a22d2834442": { + "address": "0xf0902eb0049a4003793bab33f3566a22d2834442", + "symbol": "GLCH", + "decimals": 18, + "name": "Glitch Protocol", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xf0902eb0049a4003793bab33f3566a22d2834442.png", + "aggregators": [ + "PancakeCoinMarketCap", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x57effde2759b68d86c544e88f7977e3314144859": { + "address": "0x57effde2759b68d86c544e88f7977e3314144859", + "symbol": "DIS", + "decimals": 18, + "name": "TosDis", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x57effde2759b68d86c544e88f7977e3314144859.png", + "aggregators": [ + "PancakeCoinMarketCap", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x4e0fe270b856eebb91fb4b4364312be59f499a3f": { + "address": "0x4e0fe270b856eebb91fb4b4364312be59f499a3f", + "symbol": "DAFI", + "decimals": 18, + "name": "Dafi Protocol", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x4e0fe270b856eebb91fb4b4364312be59f499a3f.png", + "aggregators": [ + "PancakeCoinGecko", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0xb5be8d87fce6ce87a24b90abdb019458a8ec31f9": { + "address": "0xb5be8d87fce6ce87a24b90abdb019458a8ec31f9", + "symbol": "OBOT", + "decimals": 18, + "name": "Obortech", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xb5be8d87fce6ce87a24b90abdb019458a8ec31f9.png", + "aggregators": [ + "PancakeCoinMarketCap", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x9b4bdddaeb68d85b0848bab7774e6855439fd94e": { + "address": "0x9b4bdddaeb68d85b0848bab7774e6855439fd94e", + "symbol": "TKING", + "decimals": 18, + "name": "Tiger King Coin", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x9b4bdddaeb68d85b0848bab7774e6855439fd94e.png", + "aggregators": [ + "PancakeCoinMarketCap", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0xb3d691125514db7a5be3326af86a72ecdc2cde16": { + "address": "0xb3d691125514db7a5be3326af86a72ecdc2cde16", + "symbol": "ZOOT", + "decimals": 9, + "name": "Zoo", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xb3d691125514db7a5be3326af86a72ecdc2cde16.png", + "aggregators": [ + "PancakeCoinMarketCap", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x01e04c6e0b2c93bb4f8ee4b71072b861f9352660": { + "address": "0x01e04c6e0b2c93bb4f8ee4b71072b861f9352660", + "symbol": "USHIBA", + "decimals": 18, + "name": "American Shiba", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x01e04c6e0b2c93bb4f8ee4b71072b861f9352660.png", + "aggregators": [ + "PancakeCoinMarketCap", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0xbe4cb2c354480042a39350a0c6c26bf54786539f": { + "address": "0xbe4cb2c354480042a39350a0c6c26bf54786539f", + "symbol": "DEFX", + "decimals": 18, + "name": "DeFinity", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xbe4cb2c354480042a39350a0c6c26bf54786539f.png", + "aggregators": [ + "PancakeCoinMarketCap", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0xf585b5b4f22816baf7629aea55b701662630397b": { + "address": "0xf585b5b4f22816baf7629aea55b701662630397b", + "symbol": "VOW", + "decimals": 18, + "name": "Vow", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xf585b5b4f22816baf7629aea55b701662630397b.png", + "aggregators": [ + "PancakeCoinMarketCap", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0xebaffc2d2ea7c66fb848c48124b753f93a0a90ec": { + "address": "0xebaffc2d2ea7c66fb848c48124b753f93a0a90ec", + "symbol": "ASIA", + "decimals": 18, + "name": "Asia Coin", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xebaffc2d2ea7c66fb848c48124b753f93a0a90ec.png", + "aggregators": [ + "PancakeCoinMarketCap", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x3dcb18569425930954feb191122e574b87f66abd": { + "address": "0x3dcb18569425930954feb191122e574b87f66abd", + "symbol": "ORION", + "decimals": 18, + "name": "Orion Money", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x3dcb18569425930954feb191122e574b87f66abd.png", + "aggregators": [ + "PancakeCoinMarketCap", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x61d5822dd7b3ed495108733e6550d4529480c8f6": { + "address": "0x61d5822dd7b3ed495108733e6550d4529480c8f6", + "symbol": "GCAKE", + "decimals": 18, + "name": "Pancake Games", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x61d5822dd7b3ed495108733e6550d4529480c8f6.png", + "aggregators": [ + "PancakeCoinMarketCap", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x0f5d8cd195a4539bcf2ec6118c6da50287c6d5f5": { + "address": "0x0f5d8cd195a4539bcf2ec6118c6da50287c6d5f5", + "symbol": "NGL", + "decimals": 18, + "name": "Gold Fever Native Gold", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x0f5d8cd195a4539bcf2ec6118c6da50287c6d5f5.png", + "aggregators": [ + "PancakeCoinMarketCap", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x3d4350cd54aef9f9b2c29435e0fa809957b3f30a": { + "address": "0x3d4350cd54aef9f9b2c29435e0fa809957b3f30a", + "symbol": "UST", + "decimals": 6, + "name": "TerraUSD (Wormhole)", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x3d4350cd54aef9f9b2c29435e0fa809957b3f30a.png", + "aggregators": [ + "PancakeCoinGecko", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0xc3cac4ae38ccf6985ef9039acc1abbc874ddcbb0": { + "address": "0xc3cac4ae38ccf6985ef9039acc1abbc874ddcbb0", + "symbol": "STARS", + "decimals": 6, + "name": "Stargaze", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xc3cac4ae38ccf6985ef9039acc1abbc874ddcbb0.png", + "aggregators": [ + "PancakeExtended", + "Rubic", + "Squid", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x14a9a94e555fdd54c21d7f7e328e61d7ebece54b": { + "address": "0x14a9a94e555fdd54c21d7f7e328e61d7ebece54b", + "symbol": "LOOT", + "decimals": 18, + "name": "LOOT Token", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x14a9a94e555fdd54c21d7f7e328e61d7ebece54b.png", + "aggregators": [ + "PancakeCoinGecko", + "LiFi", + "Socket", + "Rubic", + "Rango" + ], + "occurrences": 5 + }, + "0x986854779804799c1d68867f5e03e601e781e41b": { + "address": "0x986854779804799c1d68867f5e03e601e781e41b", + "symbol": "LDO", + "decimals": 18, + "name": "Lido DAO (Wormhole)", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x986854779804799c1d68867f5e03e601e781e41b.png", + "aggregators": [ + "PancakeCoinMarketCap", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x27443b27dfdf632390521c0b8a6fdafe07d8f79f": { + "address": "0x27443b27dfdf632390521c0b8a6fdafe07d8f79f", + "symbol": "C4E", + "decimals": 18, + "name": "Chain4Energy", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x27443b27dfdf632390521c0b8a6fdafe07d8f79f.png", + "aggregators": [ + "PancakeCoinMarketCap", + "Rubic", + "Squid", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x444444444444c1a66f394025ac839a535246fcc8": { + "address": "0x444444444444c1a66f394025ac839a535246fcc8", + "symbol": "GENI", + "decimals": 9, + "name": "Genius", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x444444444444c1a66f394025ac839a535246fcc8.png", + "aggregators": [ + "PancakeCoinMarketCap", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x27c073e8427aa493a90b8dc8b73a89e670fd77bb": { + "address": "0x27c073e8427aa493a90b8dc8b73a89e670fd77bb", + "symbol": "RDP", + "decimals": 18, + "name": "Radpie", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x27c073e8427aa493a90b8dc8b73a89e670fd77bb.png", + "aggregators": [ + "PancakeExtended", + "LiFi", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x5651fa7a726b9ec0cad00ee140179912b6e73599": { + "address": "0x5651fa7a726b9ec0cad00ee140179912b6e73599", + "symbol": "OORT", + "decimals": 18, + "name": "OORT", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x5651fa7a726b9ec0cad00ee140179912b6e73599.png", + "aggregators": [ + "PancakeExtended", + "LiFi", + "Socket", + "Rubic", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0xa39bf0446268d99c5c0a85ecf92970611912d386": { + "address": "0xa39bf0446268d99c5c0a85ecf92970611912d386", + "symbol": "AAA", + "decimals": 18, + "name": "Moon Rabbit", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xa39bf0446268d99c5c0a85ecf92970611912d386.png", + "aggregators": [ + "PancakeCoinMarketCap", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x1bd9abf284e893705104e64b564b414620b722f1": { + "address": "0x1bd9abf284e893705104e64b564b414620b722f1", + "symbol": "ACM", + "decimals": 18, + "name": "acmFinance", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x1bd9abf284e893705104e64b564b414620b722f1.png", + "aggregators": [ + "PancakeCoinMarketCap", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0xf44fb887334fa17d2c5c0f970b5d320ab53ed557": { + "address": "0xf44fb887334fa17d2c5c0f970b5d320ab53ed557", + "symbol": "ALN", + "decimals": 18, + "name": "Aluna", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xf44fb887334fa17d2c5c0f970b5d320ab53ed557.png", + "aggregators": [ + "PancakeCoinMarketCap", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0xf9752a6e8a5e5f5e6eb3ab4e7d8492460fb319f0": { + "address": "0xf9752a6e8a5e5f5e6eb3ab4e7d8492460fb319f0", + "symbol": "ARES", + "decimals": 18, + "name": "Ares Protocol", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xf9752a6e8a5e5f5e6eb3ab4e7d8492460fb319f0.png", + "aggregators": [ + "PancakeCoinMarketCap", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0xf328ed974e586b6eea7997a87ea2ab1de149b186": { + "address": "0xf328ed974e586b6eea7997a87ea2ab1de149b186", + "symbol": "AUSD", + "decimals": 18, + "name": "Ambit USD", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xf328ed974e586b6eea7997a87ea2ab1de149b186.png", + "aggregators": [ + "PancakeCoinGecko", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x25b24b3c47918b7962b3e49c4f468367f73cc0e0": { + "address": "0x25b24b3c47918b7962b3e49c4f468367f73cc0e0", + "symbol": "AXL", + "decimals": 18, + "name": "AXL INU", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x25b24b3c47918b7962b3e49c4f468367f73cc0e0.png", + "aggregators": [ + "PancakeCoinMarketCap", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x37e5da11b6a4dc6d2f7abe232cdd30b0b8fc63b1": { + "address": "0x37e5da11b6a4dc6d2f7abe232cdd30b0b8fc63b1", + "symbol": "BBC", + "decimals": 18, + "name": "Bull BTC Club", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x37e5da11b6a4dc6d2f7abe232cdd30b0b8fc63b1.png", + "aggregators": [ + "PancakeCoinMarketCap", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x312d43881860807fa04b193d69744d087fc3308a": { + "address": "0x312d43881860807fa04b193d69744d087fc3308a", + "symbol": "BD20", + "decimals": 18, + "name": "BRC-20 DEX", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x312d43881860807fa04b193d69744d087fc3308a.png", + "aggregators": [ + "PancakeCoinMarketCap", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x8780fea4c6b242677d4a397fe1110ac09ce99ad2": { + "address": "0x8780fea4c6b242677d4a397fe1110ac09ce99ad2", + "symbol": "BIRD", + "decimals": 18, + "name": "Bird.Money", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x8780fea4c6b242677d4a397fe1110ac09ce99ad2.png", + "aggregators": [ + "PancakeCoinMarketCap", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x859c940f080b197659b3effc804fd622df66f0a1": { + "address": "0x859c940f080b197659b3effc804fd622df66f0a1", + "symbol": "CAL", + "decimals": 18, + "name": "FitBurn", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x859c940f080b197659b3effc804fd622df66f0a1.png", + "aggregators": [ + "PancakeCoinMarketCap", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0xa4b6573c9ae09d81e4d1360e6402b81f52557098": { + "address": "0xa4b6573c9ae09d81e4d1360e6402b81f52557098", + "symbol": "COR", + "decimals": 18, + "name": "Coreto", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xa4b6573c9ae09d81e4d1360e6402b81f52557098.png", + "aggregators": [ + "PancakeCoinMarketCap", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x7c3b67b30efbacc8f787f7ebd3bdc65234299f4c": { + "address": "0x7c3b67b30efbacc8f787f7ebd3bdc65234299f4c", + "symbol": "CTI", + "decimals": 18, + "name": "ClinTex CTi", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x7c3b67b30efbacc8f787f7ebd3bdc65234299f4c.png", + "aggregators": [ + "PancakeCoinGecko", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0xc9132c76060f6b319764ea075973a650a1a53bc9": { + "address": "0xc9132c76060f6b319764ea075973a650a1a53bc9", + "symbol": "DDIM", + "decimals": 18, + "name": "DuckDaoDime", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xc9132c76060f6b319764ea075973a650a1a53bc9.png", + "aggregators": [ + "PancakeCoinMarketCap", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x15f9eb4b9beafa9db35341c5694c0b6573809808": { + "address": "0x15f9eb4b9beafa9db35341c5694c0b6573809808", + "symbol": "DEDA", + "decimals": 8, + "name": "DedaCoin", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x15f9eb4b9beafa9db35341c5694c0b6573809808.png", + "aggregators": [ + "PancakeCoinMarketCap", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0xa0bed124a09ac2bd941b10349d8d224fe3c955eb": { + "address": "0xa0bed124a09ac2bd941b10349d8d224fe3c955eb", + "symbol": "DEPAY", + "decimals": 18, + "name": "DePay", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xa0bed124a09ac2bd941b10349d8d224fe3c955eb.png", + "aggregators": [ + "PancakeCoinMarketCap", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x239ec95667e37929d33066a8df8ddc9444dbcbca": { + "address": "0x239ec95667e37929d33066a8df8ddc9444dbcbca", + "symbol": "DFI", + "decimals": 18, + "name": "DfiStarter", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x239ec95667e37929d33066a8df8ddc9444dbcbca.png", + "aggregators": [ + "PancakeCoinMarketCap", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x3c1748d647e6a56b37b66fcd2b5626d0461d3aa0": { + "address": "0x3c1748d647e6a56b37b66fcd2b5626d0461d3aa0", + "symbol": "DNXC", + "decimals": 18, + "name": "DinoX", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x3c1748d647e6a56b37b66fcd2b5626d0461d3aa0.png", + "aggregators": [ + "PancakeCoinMarketCap", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x163f182c32d24a09d91eb75820cde9fd5832b329": { + "address": "0x163f182c32d24a09d91eb75820cde9fd5832b329", + "symbol": "EDOGE", + "decimals": 9, + "name": "ElonDoge.io", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x163f182c32d24a09d91eb75820cde9fd5832b329.png", + "aggregators": [ + "PancakeCoinMarketCap", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x8a505d5cb3db9fcf404c0a72af3df8be4efb707c": { + "address": "0x8a505d5cb3db9fcf404c0a72af3df8be4efb707c", + "symbol": "ENG", + "decimals": 18, + "name": "Eng Crypto", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x8a505d5cb3db9fcf404c0a72af3df8be4efb707c.png", + "aggregators": [ + "PancakeCoinMarketCap", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x436c52a8cee41d5e9c5e6f4cb146e66d552fb700": { + "address": "0x436c52a8cee41d5e9c5e6f4cb146e66d552fb700", + "symbol": "EQX", + "decimals": 18, + "name": "EQIFi", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x436c52a8cee41d5e9c5e6f4cb146e66d552fb700.png", + "aggregators": [ + "PancakeCoinMarketCap", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x1da87b114f35e1dc91f72bf57fc07a768ad40bb0": { + "address": "0x1da87b114f35e1dc91f72bf57fc07a768ad40bb0", + "symbol": "EQZ", + "decimals": 18, + "name": "Equalizer", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x1da87b114f35e1dc91f72bf57fc07a768ad40bb0.png", + "aggregators": [ + "PancakeCoinMarketCap", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x82030cdbd9e4b7c5bb0b811a61da6360d69449cc": { + "address": "0x82030cdbd9e4b7c5bb0b811a61da6360d69449cc", + "symbol": "FEVR", + "decimals": 18, + "name": "RealFevr", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x82030cdbd9e4b7c5bb0b811a61da6360d69449cc.png", + "aggregators": [ + "PancakeCoinMarketCap", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x49c7295ff86eabf5bf58c6ebc858db4805738c01": { + "address": "0x49c7295ff86eabf5bf58c6ebc858db4805738c01", + "symbol": "HERA", + "decimals": 18, + "name": "Hero Arena", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x49c7295ff86eabf5bf58c6ebc858db4805738c01.png", + "aggregators": [ + "PancakeCoinMarketCap", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0xbd100d061e120b2c67a24453cf6368e63f1be056": { + "address": "0xbd100d061e120b2c67a24453cf6368e63f1be056", + "symbol": "IDYP", + "decimals": 18, + "name": "iDypius", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xbd100d061e120b2c67a24453cf6368e63f1be056.png", + "aggregators": [ + "PancakeCoinMarketCap", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x937c73d59a26058f074428c0a7b1d31bd45f53d0": { + "address": "0x937c73d59a26058f074428c0a7b1d31bd45f53d0", + "symbol": "JEFF", + "decimals": 18, + "name": "JEFF", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x937c73d59a26058f074428c0a7b1d31bd45f53d0.png", + "aggregators": [ + "PancakeCoinMarketCap", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0xc3afde95b6eb9ba8553cdaea6645d45fb3a7faf5": { + "address": "0xc3afde95b6eb9ba8553cdaea6645d45fb3a7faf5", + "symbol": "KIBA", + "decimals": 18, + "name": "Kiba Inu", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xc3afde95b6eb9ba8553cdaea6645d45fb3a7faf5.png", + "aggregators": [ + "PancakeCoinMarketCap", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0xf83c0f6d3a5665bd7cfdd5831a856d85942bc060": { + "address": "0xf83c0f6d3a5665bd7cfdd5831a856d85942bc060", + "symbol": "KIRO", + "decimals": 18, + "name": "KIRO", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xf83c0f6d3a5665bd7cfdd5831a856d85942bc060.png", + "aggregators": [ + "PancakeCoinMarketCap", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x77edfae59a7948d66e9911a30cc787d2172343d4": { + "address": "0x77edfae59a7948d66e9911a30cc787d2172343d4", + "symbol": "LBL", + "decimals": 18, + "name": "LABEL AI", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x77edfae59a7948d66e9911a30cc787d2172343d4.png", + "aggregators": [ + "PancakeCoinMarketCap", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0xcd1b51b87a8a7137d6421ba5a976225187a26777": { + "address": "0xcd1b51b87a8a7137d6421ba5a976225187a26777", + "symbol": "LSD", + "decimals": 18, + "name": "L7DEX", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xcd1b51b87a8a7137d6421ba5a976225187a26777.png", + "aggregators": [ + "PancakeCoinMarketCap", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x558ad2b02ce979ca54f88206ed8597c8c740774e": { + "address": "0x558ad2b02ce979ca54f88206ed8597c8c740774e", + "symbol": "M", + "decimals": 18, + "name": "MetaVerse-M", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x558ad2b02ce979ca54f88206ed8597c8c740774e.png", + "aggregators": [ + "PancakeCoinMarketCap", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x6125adcab2f171bc70cfe2caecfec5509273a86a": { + "address": "0x6125adcab2f171bc70cfe2caecfec5509273a86a", + "symbol": "MGG", + "decimals": 18, + "name": "MetaGaming Guild", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x6125adcab2f171bc70cfe2caecfec5509273a86a.png", + "aggregators": [ + "PancakeCoinMarketCap", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x1f3af095cda17d63cad238358837321e95fc5915": { + "address": "0x1f3af095cda17d63cad238358837321e95fc5915", + "symbol": "MINT", + "decimals": 18, + "name": "Mint Club", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x1f3af095cda17d63cad238358837321e95fc5915.png", + "aggregators": [ + "PancakeCoinMarketCap", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x3e81aa8d6813ec9d7e6ddb4e523fb1601a0e86f3": { + "address": "0x3e81aa8d6813ec9d7e6ddb4e523fb1601a0e86f3", + "symbol": "MNT", + "decimals": 18, + "name": "Mr. Mint", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x3e81aa8d6813ec9d7e6ddb4e523fb1601a0e86f3.png", + "aggregators": [ + "PancakeCoinMarketCap", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x076ddce096c93dcf5d51fe346062bf0ba9523493": { + "address": "0x076ddce096c93dcf5d51fe346062bf0ba9523493", + "symbol": "PARA", + "decimals": 18, + "name": "Paralink Network", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x076ddce096c93dcf5d51fe346062bf0ba9523493.png", + "aggregators": [ + "PancakeCoinMarketCap", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0xe9b9c1c38dab5eab3b7e2ad295425e89bd8db066": { + "address": "0xe9b9c1c38dab5eab3b7e2ad295425e89bd8db066", + "symbol": "PCNT", + "decimals": 18, + "name": "Playcent", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xe9b9c1c38dab5eab3b7e2ad295425e89bd8db066.png", + "aggregators": [ + "PancakeCoinMarketCap", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x2466858ab5edad0bb597fe9f008f568b00d25fe3": { + "address": "0x2466858ab5edad0bb597fe9f008f568b00d25fe3", + "symbol": "PETS", + "decimals": 18, + "name": "MicroPets", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x2466858ab5edad0bb597fe9f008f568b00d25fe3.png", + "aggregators": [ + "PancakeCoinMarketCap", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x5f39dd1bb6db20f3e792c4489f514794cac6392c": { + "address": "0x5f39dd1bb6db20f3e792c4489f514794cac6392c", + "symbol": "PLY", + "decimals": 6, + "name": "PlayNity", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x5f39dd1bb6db20f3e792c4489f514794cac6392c.png", + "aggregators": [ + "PancakeCoinMarketCap", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x65e66a61d0a8f1e686c2d6083ad611a10d84d97a": { + "address": "0x65e66a61d0a8f1e686c2d6083ad611a10d84d97a", + "symbol": "RAZE", + "decimals": 18, + "name": "Raze Network", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x65e66a61d0a8f1e686c2d6083ad611a10d84d97a.png", + "aggregators": [ + "PancakeCoinMarketCap", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x041e714aa0dce7d4189441896486d361e98bad5f": { + "address": "0x041e714aa0dce7d4189441896486d361e98bad5f", + "symbol": "RCH", + "decimals": 9, + "name": "Rich", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x041e714aa0dce7d4189441896486d361e98bad5f.png", + "aggregators": [ + "PancakeCoinMarketCap", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0xe338d4250a4d959f88ff8789eaae8c32700bd175": { + "address": "0xe338d4250a4d959f88ff8789eaae8c32700bd175", + "symbol": "RELAY", + "decimals": 18, + "name": "Relay Token", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xe338d4250a4d959f88ff8789eaae8c32700bd175.png", + "aggregators": [ + "PancakeCoinMarketCap", + "LiFi", + "Socket", + "Rubic", + "Rango" + ], + "occurrences": 5 + }, + "0xba8a6ef5f15ed18e7184f44a775060a6bf91d8d0": { + "address": "0xba8a6ef5f15ed18e7184f44a775060a6bf91d8d0", + "symbol": "SHAKE", + "decimals": 18, + "name": "Spaceswap SHAKE", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xba8a6ef5f15ed18e7184f44a775060a6bf91d8d0.png", + "aggregators": [ + "PancakeCoinMarketCap", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0xa997e5aaae60987eb0b59a336dce6b158b113100": { + "address": "0xa997e5aaae60987eb0b59a336dce6b158b113100", + "symbol": "SNN", + "decimals": 3, + "name": "SeChain", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xa997e5aaae60987eb0b59a336dce6b158b113100.png", + "aggregators": [ + "PancakeCoinMarketCap", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x19ae49b9f38dd836317363839a5f6bfbfa7e319a": { + "address": "0x19ae49b9f38dd836317363839a5f6bfbfa7e319a", + "symbol": "STC", + "decimals": 9, + "name": "SaitaChain Coin", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x19ae49b9f38dd836317363839a5f6bfbfa7e319a.png", + "aggregators": [ + "PancakeCoinMarketCap", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0xcea59dce6a6d73a24e6d6944cfabc330814c098a": { + "address": "0xcea59dce6a6d73a24e6d6944cfabc330814c098a", + "symbol": "TORG", + "decimals": 18, + "name": "TORG", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xcea59dce6a6d73a24e6d6944cfabc330814c098a.png", + "aggregators": [ + "PancakeCoinMarketCap", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x6ba7a8f9063c712c1c8cabc776b1da7126805f3b": { + "address": "0x6ba7a8f9063c712c1c8cabc776b1da7126805f3b", + "symbol": "TRADE", + "decimals": 18, + "name": "Polytrade", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x6ba7a8f9063c712c1c8cabc776b1da7126805f3b.png", + "aggregators": [ + "PancakeCoinMarketCap", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0xbc648cbd7b2b2c666f9f46ac5c5ce6ee77f9c407": { + "address": "0xbc648cbd7b2b2c666f9f46ac5c5ce6ee77f9c407", + "symbol": "WQT", + "decimals": 18, + "name": "Work Quest", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xbc648cbd7b2b2c666f9f46ac5c5ce6ee77f9c407.png", + "aggregators": [ + "PancakeCoinMarketCap", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x5f26fa0c2ee5d3c0323d861d0c503f31ac212662": { + "address": "0x5f26fa0c2ee5d3c0323d861d0c503f31ac212662", + "symbol": "XNL", + "decimals": 18, + "name": "Chronicle", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x5f26fa0c2ee5d3c0323d861d0c503f31ac212662.png", + "aggregators": [ + "PancakeCoinMarketCap", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x37dfacfaeda801437ff648a1559d73f4c40aacb7": { + "address": "0x37dfacfaeda801437ff648a1559d73f4c40aacb7", + "symbol": "APYS", + "decimals": 18, + "name": "APYSwap", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x37dfacfaeda801437ff648a1559d73f4c40aacb7.png", + "aggregators": [ + "PancakeExtended", + "LiFi", + "Socket", + "Rubic", + "Rango" + ], + "occurrences": 5 + }, + "0xf018aea0a08a5d88674f0837bdac27ab89824dee": { + "address": "0xf018aea0a08a5d88674f0837bdac27ab89824dee", + "symbol": "MMG", + "decimals": 18, + "name": "MMG Token", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xf018aea0a08a5d88674f0837bdac27ab89824dee.png", + "aggregators": [ + "PancakeCoinMarketCap", + "1inch", + "LiFi", + "Rubic", + "Rango" + ], + "occurrences": 5 + }, + "0x8c784c49097dcc637b93232e15810d53871992bf": { + "address": "0x8c784c49097dcc637b93232e15810d53871992bf", + "symbol": "MSC", + "decimals": 18, + "name": "Monster Slayer Cash", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x8c784c49097dcc637b93232e15810d53871992bf.png", + "aggregators": [ + "PancakeCoinMarketCap", + "1inch", + "Socket", + "Rubic", + "Rango" + ], + "occurrences": 5 + }, + "0x4f47a0d15c1e53f3d94c069c7d16977c29f9cb6b": { + "address": "0x4f47a0d15c1e53f3d94c069c7d16977c29f9cb6b", + "symbol": "RAMEN", + "decimals": 18, + "name": "Ramen Token", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x4f47a0d15c1e53f3d94c069c7d16977c29f9cb6b.png", + "aggregators": [ + "PancakeCoinMarketCap", + "1inch", + "Socket", + "Rubic", + "Rango" + ], + "occurrences": 5 + }, + "0x0da6ed8b13214ff28e9ca979dd37439e8a88f6c4": { + "address": "0x0da6ed8b13214ff28e9ca979dd37439e8a88f6c4", + "symbol": "STAX", + "decimals": 18, + "name": "StableXSwap", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x0da6ed8b13214ff28e9ca979dd37439e8a88f6c4.png", + "aggregators": [ + "PancakeCoinMarketCap", + "LiFi", + "Socket", + "Rango", + "SushiSwap" + ], + "occurrences": 5 + }, + "0x80d5f92c2c8c682070c95495313ddb680b267320": { + "address": "0x80d5f92c2c8c682070c95495313ddb680b267320", + "symbol": "ASR", + "decimals": 2, + "name": "AS Roma", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x80d5f92c2c8c682070c95495313ddb680b267320.png", + "aggregators": [ + "PancakeExtended", + "Socket", + "Rubic", + "Rango", + "SushiSwap" + ], + "occurrences": 5 + }, + "0x25e9d05365c867e59c1904e7463af9f312296f9e": { + "address": "0x25e9d05365c867e59c1904e7463af9f312296f9e", + "symbol": "ATM", + "decimals": 2, + "name": "Atletico de Madrid", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x25e9d05365c867e59c1904e7463af9f312296f9e.png", + "aggregators": [ + "PancakeExtended", + "Socket", + "Rubic", + "Rango", + "SushiSwap" + ], + "occurrences": 5 + }, + "0x1f7216fdb338247512ec99715587bb97bbf96eae": { + "address": "0x1f7216fdb338247512ec99715587bb97bbf96eae", + "symbol": "BBADGER", + "decimals": 18, + "name": "BBADGER", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x1f7216fdb338247512ec99715587bb97bbf96eae.png", + "aggregators": [ + "PancakeExtended", + "1inch", + "LiFi", + "Socket", + "Rango" + ], + "occurrences": 5 + }, + "0xc40c9a843e1c6d01b7578284a9028854f6683b1b": { + "address": "0xc40c9a843e1c6d01b7578284a9028854f6683b1b", + "symbol": "JUV", + "decimals": 2, + "name": "Juventus", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xc40c9a843e1c6d01b7578284a9028854f6683b1b.png", + "aggregators": [ + "PancakeExtended", + "Socket", + "Rubic", + "Rango", + "SushiSwap" + ], + "occurrences": 5 + }, + "0xf05e45ad22150677a017fbd94b84fbb63dc9b44c": { + "address": "0xf05e45ad22150677a017fbd94b84fbb63dc9b44c", + "symbol": "OG", + "decimals": 2, + "name": "OG", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xf05e45ad22150677a017fbd94b84fbb63dc9b44c.png", + "aggregators": [ + "PancakeExtended", + "Socket", + "Rubic", + "Rango", + "SushiSwap" + ], + "occurrences": 5 + }, + "0xbc5609612b7c44bef426de600b5fd1379db2ecf1": { + "address": "0xbc5609612b7c44bef426de600b5fd1379db2ecf1", + "symbol": "PSG", + "decimals": 2, + "name": "Paris Saint-Germain", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xbc5609612b7c44bef426de600b5fd1379db2ecf1.png", + "aggregators": [ + "PancakeExtended", + "Socket", + "Rubic", + "Rango", + "SushiSwap" + ], + "occurrences": 5 + }, + "0x4e7f408be2d4e9d60f49a64b89bb619c84c7c6f5": { + "address": "0x4e7f408be2d4e9d60f49a64b89bb619c84c7c6f5", + "symbol": "PERP", + "decimals": 18, + "name": "Perpetual Protocol", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x4e7f408be2d4e9d60f49a64b89bb619c84c7c6f5.png", + "aggregators": ["PancakeCoinGecko", "Socket", "Rubic", "Rango"], + "occurrences": 4 + }, + "0x51ba0b044d96c3abfca52b64d733603ccc4f0d4d": { + "address": "0x51ba0b044d96c3abfca52b64d733603ccc4f0d4d", + "symbol": "SUPER", + "decimals": 18, + "name": "SUPER-ERC20", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x51ba0b044d96c3abfca52b64d733603ccc4f0d4d.png", + "aggregators": ["PancakeCoinGecko", "Socket", "Rubic", "Rango"], + "occurrences": 4 + }, + "0xf486ad071f3bee968384d2e39e2d8af0fcf6fd46": { + "address": "0xf486ad071f3bee968384d2e39e2d8af0fcf6fd46", + "symbol": "VELO", + "decimals": 18, + "name": "Velo", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xf486ad071f3bee968384d2e39e2d8af0fcf6fd46.png", + "aggregators": [ + "PancakeExtended", + "LiFi", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x86a53fcd199212fea44fa7e16eb1f28812be911d": { + "address": "0x86a53fcd199212fea44fa7e16eb1f28812be911d", + "symbol": "IHC", + "decimals": 18, + "name": "Inflation Hedging Coin", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x86a53fcd199212fea44fa7e16eb1f28812be911d.png", + "aggregators": [ + "PancakeCoinMarketCap", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 4 + }, + "0xa58950f05fea2277d2608748412bf9f802ea4901": { + "address": "0xa58950f05fea2277d2608748412bf9f802ea4901", + "symbol": "WSG", + "decimals": 18, + "name": "Wall Street Games [OLD]", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xa58950f05fea2277d2608748412bf9f802ea4901.png", + "aggregators": ["PancakeExtended", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0x21f1ce0fcf1e9e39f8e79b7762801e8096d9f6cd": { + "address": "0x21f1ce0fcf1e9e39f8e79b7762801e8096d9f6cd", + "symbol": "BCPAY", + "decimals": 8, + "name": "BCPAY FinTech", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x21f1ce0fcf1e9e39f8e79b7762801e8096d9f6cd.png", + "aggregators": ["PancakeCoinGecko", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0x7fe378c5e0b5c32af2ecc8829bedf02245a0e4ef": { + "address": "0x7fe378c5e0b5c32af2ecc8829bedf02245a0e4ef", + "symbol": "STZ", + "decimals": 18, + "name": "99Starz", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x7fe378c5e0b5c32af2ecc8829bedf02245a0e4ef.png", + "aggregators": [ + "PancakeCoinMarketCap", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 4 + }, + "0xea395dfafed39924988b475f2ca7f4c72655203a": { + "address": "0xea395dfafed39924988b475f2ca7f4c72655203a", + "symbol": "CPO", + "decimals": 18, + "name": "Cryptopolis", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xea395dfafed39924988b475f2ca7f4c72655203a.png", + "aggregators": [ + "PancakeCoinMarketCap", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 4 + }, + "0xbdc3b3639f7aa19e623a4d603a3fb7ab20115a91": { + "address": "0xbdc3b3639f7aa19e623a4d603a3fb7ab20115a91", + "symbol": "COC", + "decimals": 18, + "name": "Coin of the champions", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xbdc3b3639f7aa19e623a4d603a3fb7ab20115a91.png", + "aggregators": [ + "PancakeCoinMarketCap", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 4 + }, + "0xf77351d8f4ee853135961a936bb8d2e4ffa75f9d": { + "address": "0xf77351d8f4ee853135961a936bb8d2e4ffa75f9d", + "symbol": "ROOBEE", + "decimals": 18, + "name": "Roobee", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xf77351d8f4ee853135961a936bb8d2e4ffa75f9d.png", + "aggregators": [ + "PancakeCoinMarketCap", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 4 + }, + "0x766afcf83fd5eaf884b3d529b432ca27a6d84617": { + "address": "0x766afcf83fd5eaf884b3d529b432ca27a6d84617", + "symbol": "BLID", + "decimals": 18, + "name": "BLID", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x766afcf83fd5eaf884b3d529b432ca27a6d84617.png", + "aggregators": ["PancakeCoinMarketCap", "Socket", "Rubic", "Rango"], + "occurrences": 4 + }, + "0x78aae7e000bf6fc98a6b717d5ec8ef2bcd04f428": { + "address": "0x78aae7e000bf6fc98a6b717d5ec8ef2bcd04f428", + "symbol": "GEMS", + "decimals": 9, + "name": "GemPad", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x78aae7e000bf6fc98a6b717d5ec8ef2bcd04f428.png", + "aggregators": [ + "PancakeCoinMarketCap", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 4 + }, + "0x37a56cdcd83dce2868f721de58cb3830c44c6303": { + "address": "0x37a56cdcd83dce2868f721de58cb3830c44c6303", + "symbol": "ZBC", + "decimals": 9, + "name": "ZBC", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x37a56cdcd83dce2868f721de58cb3830c44c6303.png", + "aggregators": ["PancakeExtended", "LiFi", "Rubic", "Rango"], + "occurrences": 4 + }, + "0x45d486479ed1db8b164d1386b3c89c05cee8ca86": { + "address": "0x45d486479ed1db8b164d1386b3c89c05cee8ca86", + "symbol": "USDY", + "decimals": 18, + "name": "USDy", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x45d486479ed1db8b164d1386b3c89c05cee8ca86.png", + "aggregators": ["PancakeCoinMarketCap", "LiFi", "Socket", "Rubic"], + "occurrences": 4 + }, + "0x0012365f0a1e5f30a5046c680dcb21d07b15fcf7": { + "address": "0x0012365f0a1e5f30a5046c680dcb21d07b15fcf7", + "symbol": "GYMNET", + "decimals": 18, + "name": "Gym Network", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x0012365f0a1e5f30a5046c680dcb21d07b15fcf7.png", + "aggregators": [ + "PancakeCoinMarketCap", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 4 + }, + "0x17e65e6b9b166fb8e7c59432f0db126711246bc0": { + "address": "0x17e65e6b9b166fb8e7c59432f0db126711246bc0", + "symbol": "TIFI", + "decimals": 18, + "name": "TiFi", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x17e65e6b9b166fb8e7c59432f0db126711246bc0.png", + "aggregators": [ + "PancakeCoinMarketCap", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 4 + }, + "0x9bf543d8460583ff8a669aae01d9cdbee4defe3c": { + "address": "0x9bf543d8460583ff8a669aae01d9cdbee4defe3c", + "symbol": "SKO", + "decimals": 18, + "name": "Sugar Kingdom Odyssey", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x9bf543d8460583ff8a669aae01d9cdbee4defe3c.png", + "aggregators": [ + "PancakeCoinMarketCap", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 4 + }, + "0xfeb4e9b932ef708c498cc997abe51d0ee39300cf": { + "address": "0xfeb4e9b932ef708c498cc997abe51d0ee39300cf", + "symbol": "KICKS", + "decimals": 18, + "name": "GetKicks", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xfeb4e9b932ef708c498cc997abe51d0ee39300cf.png", + "aggregators": [ + "PancakeCoinMarketCap", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 4 + }, + "0x42c95788f791a2be3584446854c8d9bb01be88a9": { + "address": "0x42c95788f791a2be3584446854c8d9bb01be88a9", + "symbol": "HBR", + "decimals": 18, + "name": "Harbor", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x42c95788f791a2be3584446854c8d9bb01be88a9.png", + "aggregators": ["PancakeCoinGecko", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0x8dc0f602696de3ff03b37e19a172e5080f049c15": { + "address": "0x8dc0f602696de3ff03b37e19a172e5080f049c15", + "symbol": "CLASH", + "decimals": 18, + "name": "Clashub", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x8dc0f602696de3ff03b37e19a172e5080f049c15.png", + "aggregators": ["PancakeCoinGecko", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0x117a123ded97cd125837d9ac19592b77d806fa88": { + "address": "0x117a123ded97cd125837d9ac19592b77d806fa88", + "symbol": "BRBC", + "decimals": 18, + "name": "Bull Run Bets", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x117a123ded97cd125837d9ac19592b77d806fa88.png", + "aggregators": ["PancakeCoinGecko", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0x516f8a1fb458ebdcfd0f544ff85c69c1c0ebc31d": { + "address": "0x516f8a1fb458ebdcfd0f544ff85c69c1c0ebc31d", + "symbol": "SDM", + "decimals": 18, + "name": "Shieldeum", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x516f8a1fb458ebdcfd0f544ff85c69c1c0ebc31d.png", + "aggregators": ["PancakeExtended", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0x2aabe2ef9ee8ab04c6f27c4284c3f268769b35ec": { + "address": "0x2aabe2ef9ee8ab04c6f27c4284c3f268769b35ec", + "symbol": "BNBAI", + "decimals": 18, + "name": "BNB Agents", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x2aabe2ef9ee8ab04c6f27c4284c3f268769b35ec.png", + "aggregators": ["ApeSwap", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0x3e51783fef3cb3e807cff7fcb660d3e51c6127f6": { + "address": "0x3e51783fef3cb3e807cff7fcb660d3e51c6127f6", + "symbol": "CRS", + "decimals": 18, + "name": "CERANOS", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x3e51783fef3cb3e807cff7fcb660d3e51c6127f6.png", + "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0xe0e81c29a68bfdd7c48072fd94e7c58f1f0146c1": { + "address": "0xe0e81c29a68bfdd7c48072fd94e7c58f1f0146c1", + "symbol": "H2ON", + "decimals": 18, + "name": "H2O Securities", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xe0e81c29a68bfdd7c48072fd94e7c58f1f0146c1.png", + "aggregators": [ + "PancakeCoinMarketCap", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 4 + }, + "0xb5ab5cf2e2c686ae43f01f23859f3a55a8629c1c": { + "address": "0xb5ab5cf2e2c686ae43f01f23859f3a55a8629c1c", + "symbol": "MA", + "decimals": 18, + "name": "Mind AI", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xb5ab5cf2e2c686ae43f01f23859f3a55a8629c1c.png", + "aggregators": ["PancakeExtended", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0x9817f4c9f968a553ff6caef1a2ef6cf1386f16f7": { + "address": "0x9817f4c9f968a553ff6caef1a2ef6cf1386f16f7", + "symbol": "ASCAKE", + "decimals": 18, + "name": "Astherus Staked CAKE", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x9817f4c9f968a553ff6caef1a2ef6cf1386f16f7.png", + "aggregators": ["PancakeExtended", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0x7a9c8d33963aecca9a821802adfaf5bd9392351f": { + "address": "0x7a9c8d33963aecca9a821802adfaf5bd9392351f", + "symbol": "MMETA", + "decimals": 18, + "name": "Duckie Land Multi Metaverse", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x7a9c8d33963aecca9a821802adfaf5bd9392351f.png", + "aggregators": [ + "PancakeCoinMarketCap", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 4 + }, + "0xe37dbf20a4fff3b88233e456355dc49b76b6fe19": { + "address": "0xe37dbf20a4fff3b88233e456355dc49b76b6fe19", + "symbol": "LEE", + "decimals": 18, + "name": "Love Earn Enjoy", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xe37dbf20a4fff3b88233e456355dc49b76b6fe19.png", + "aggregators": [ + "PancakeCoinMarketCap", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 4 + }, + "0xc4a1e7106d08b7ff947254b6d75cf2b877d55daf": { + "address": "0xc4a1e7106d08b7ff947254b6d75cf2b877d55daf", + "symbol": "LQR", + "decimals": 18, + "name": "Laqira Protocol", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xc4a1e7106d08b7ff947254b6d75cf2b877d55daf.png", + "aggregators": [ + "PancakeCoinMarketCap", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 4 + }, + "0x1d0ac23f03870f768ca005c84cbb6fb82aa884fd": { + "address": "0x1d0ac23f03870f768ca005c84cbb6fb82aa884fd", + "symbol": "GALEON", + "decimals": 18, + "name": "Galeon", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x1d0ac23f03870f768ca005c84cbb6fb82aa884fd.png", + "aggregators": [ + "PancakeCoinMarketCap", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 4 + }, + "0xd522a1dce1ca4b138dda042a78672307eb124cc2": { + "address": "0xd522a1dce1ca4b138dda042a78672307eb124cc2", + "symbol": "SWAPZ", + "decimals": 18, + "name": "SWAPZ.app", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xd522a1dce1ca4b138dda042a78672307eb124cc2.png", + "aggregators": [ + "PancakeCoinMarketCap", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 4 + }, + "0x8e11e90b463bf521382e2b88539f053270a3848c": { + "address": "0x8e11e90b463bf521382e2b88539f053270a3848c", + "symbol": "TTAI", + "decimals": 18, + "name": "TTAI", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x8e11e90b463bf521382e2b88539f053270a3848c.png", + "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0x79be2b20389a869476d183b1f42b9950eaf457d8": { + "address": "0x79be2b20389a869476d183b1f42b9950eaf457d8", + "symbol": "MRLN", + "decimals": 18, + "name": "Merlin Token", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x79be2b20389a869476d183b1f42b9950eaf457d8.png", + "aggregators": ["CoinGecko", "LiFi", "Rubic", "Rango"], + "occurrences": 4 + }, + "0x47c454ca6be2f6def6f32b638c80f91c9c3c5949": { + "address": "0x47c454ca6be2f6def6f32b638c80f91c9c3c5949", + "symbol": "GFAL", + "decimals": 18, + "name": "Games for a Living", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x47c454ca6be2f6def6f32b638c80f91c9c3c5949.png", + "aggregators": [ + "PancakeCoinMarketCap", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 4 + }, + "0xc3028fbc1742a16a5d69de1b334cbce28f5d7eb3": { + "address": "0xc3028fbc1742a16a5d69de1b334cbce28f5d7eb3", + "symbol": "SSS", + "decimals": 18, + "name": "StarSharks", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xc3028fbc1742a16a5d69de1b334cbce28f5d7eb3.png", + "aggregators": ["PancakeCoinGecko", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0x3e7f1039896454b9cb27c53cc7383e1ab9d9512a": { + "address": "0x3e7f1039896454b9cb27c53cc7383e1ab9d9512a", + "symbol": "METFI", + "decimals": 18, + "name": "MetFi", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x3e7f1039896454b9cb27c53cc7383e1ab9d9512a.png", + "aggregators": [ + "PancakeCoinMarketCap", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 4 + }, + "0xb96d0f29a0ac9af4a32835e90ec6531389765089": { + "address": "0xb96d0f29a0ac9af4a32835e90ec6531389765089", + "symbol": "VPR", + "decimals": 18, + "name": "VaporFund", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xb96d0f29a0ac9af4a32835e90ec6531389765089.png", + "aggregators": [ + "PancakeCoinMarketCap", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 4 + }, + "0x75ca521892de7f2ecfb070cab545c250d0ceb7e3": { + "address": "0x75ca521892de7f2ecfb070cab545c250d0ceb7e3", + "symbol": "PVC", + "decimals": 9, + "name": "PVC META", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x75ca521892de7f2ecfb070cab545c250d0ceb7e3.png", + "aggregators": [ + "PancakeCoinMarketCap", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 4 + }, + "0xfbf174090b3cc8ebb9f39b697035a54c5c45b4d6": { + "address": "0xfbf174090b3cc8ebb9f39b697035a54c5c45b4d6", + "symbol": "$POM", + "decimals": 18, + "name": "POM", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xfbf174090b3cc8ebb9f39b697035a54c5c45b4d6.png", + "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0xb003c68917bab76812797d1b8056822f48e2e4fe": { + "address": "0xb003c68917bab76812797d1b8056822f48e2e4fe", + "symbol": "YUMMY", + "decimals": 9, + "name": "Yummy", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xb003c68917bab76812797d1b8056822f48e2e4fe.png", + "aggregators": [ + "PancakeCoinMarketCap", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 4 + }, + "0x3b76374cc2dfe28cc373dca6d5024791b2586335": { + "address": "0x3b76374cc2dfe28cc373dca6d5024791b2586335", + "symbol": "ADAO", + "decimals": 18, + "name": "ADADao", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x3b76374cc2dfe28cc373dca6d5024791b2586335.png", + "aggregators": [ + "PancakeCoinMarketCap", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 4 + }, + "0xde5bdcbd4d7dfa86e527fef9971bd6ca6a76eefb": { + "address": "0xde5bdcbd4d7dfa86e527fef9971bd6ca6a76eefb", + "symbol": "IVPAY", + "decimals": 18, + "name": "ivendPay", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xde5bdcbd4d7dfa86e527fef9971bd6ca6a76eefb.png", + "aggregators": [ + "PancakeCoinMarketCap", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 4 + }, + "0x342f7334e4c1732ea753a597722e9c3d04bdcce7": { + "address": "0x342f7334e4c1732ea753a597722e9c3d04bdcce7", + "symbol": "EIDMUBARAK", + "decimals": 18, + "name": "Eid Mubarak", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x342f7334e4c1732ea753a597722e9c3d04bdcce7.png", + "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0xc28957e946ac244612bcb205c899844cbbcb093d": { + "address": "0xc28957e946ac244612bcb205c899844cbbcb093d", + "symbol": "BUD", + "decimals": 18, + "name": "BOOKUSD", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xc28957e946ac244612bcb205c899844cbbcb093d.png", + "aggregators": ["CoinGecko", "LiFi", "Rubic", "Rango"], + "occurrences": 4 + }, + "0x32c830f5c34122c6afb8ae87aba541b7900a2c5f": { + "address": "0x32c830f5c34122c6afb8ae87aba541b7900a2c5f", + "symbol": "YNBNBX", + "decimals": 18, + "name": "ynBNB MAX", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x32c830f5c34122c6afb8ae87aba541b7900a2c5f.png", + "aggregators": ["CoinGecko", "LiFi", "Rubic", "Rango"], + "occurrences": 4 + }, + "0xf00600ebc7633462bc4f9c61ea2ce99f5aaebd4a": { + "address": "0xf00600ebc7633462bc4f9c61ea2ce99f5aaebd4a", + "symbol": "ROSE", + "decimals": 18, + "name": "Oasis", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xf00600ebc7633462bc4f9c61ea2ce99f5aaebd4a.png", + "aggregators": ["PancakeExtended", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0x079ff857bd4ff7c4acf49a1a02e67ef96d43e3e6": { + "address": "0x079ff857bd4ff7c4acf49a1a02e67ef96d43e3e6", + "symbol": "MEAI", + "decimals": 18, + "name": "MeAI", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x079ff857bd4ff7c4acf49a1a02e67ef96d43e3e6.png", + "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0x59e69094398afbea632f8bd63033bdd2443a3be1": { + "address": "0x59e69094398afbea632f8bd63033bdd2443a3be1", + "symbol": "MONKY", + "decimals": 18, + "name": "Wise Monkey", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x59e69094398afbea632f8bd63033bdd2443a3be1.png", + "aggregators": ["PancakeExtended", "Rubic", "Squid", "Rango"], + "occurrences": 4 + }, + "0x103071da56e7cd95b415320760d6a0ddc4da1ca5": { + "address": "0x103071da56e7cd95b415320760d6a0ddc4da1ca5", + "symbol": "XTER", + "decimals": 18, + "name": "Xterio", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x103071da56e7cd95b415320760d6a0ddc4da1ca5.png", + "aggregators": ["PancakeExtended", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0x965d3704de812f5e1e7eef1ac22fe92174258bd9": { + "address": "0x965d3704de812f5e1e7eef1ac22fe92174258bd9", + "symbol": "MXY", + "decimals": 18, + "name": "Metaxy", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x965d3704de812f5e1e7eef1ac22fe92174258bd9.png", + "aggregators": [ + "PancakeCoinMarketCap", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 4 + }, + "0xcae117ca6bc8a341d2e7207f30e180f0e5618b9d": { + "address": "0xcae117ca6bc8a341d2e7207f30e180f0e5618b9d", + "symbol": "ARK", + "decimals": 18, + "name": "ARK", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xcae117ca6bc8a341d2e7207f30e180f0e5618b9d.png", + "aggregators": ["CoinGecko", "Rubic", "Squid", "Rango"], + "occurrences": 4 + }, + "0x9505dbd77dacd1f6c89f101b98522d4b871d88c5": { + "address": "0x9505dbd77dacd1f6c89f101b98522d4b871d88c5", + "symbol": "LOVE", + "decimals": 9, + "name": "HunnyDAO", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x9505dbd77dacd1f6c89f101b98522d4b871d88c5.png", + "aggregators": [ + "PancakeCoinMarketCap", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 4 + }, + "0x36f2fd027f5f27c59b8c6d64df64bcc8e8c97777": { + "address": "0x36f2fd027f5f27c59b8c6d64df64bcc8e8c97777", + "symbol": "雪球", + "decimals": 18, + "name": "雪球", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x36f2fd027f5f27c59b8c6d64df64bcc8e8c97777.png", + "aggregators": ["PancakeExtended", "LiFi", "Rubic", "Rango"], + "occurrences": 4 + }, + "0x18ea4df6a9cde2472f2321a4ec77da106498a66e": { + "address": "0x18ea4df6a9cde2472f2321a4ec77da106498a66e", + "symbol": "SINGULARRY", + "decimals": 18, + "name": "Singularry", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x18ea4df6a9cde2472f2321a4ec77da106498a66e.png", + "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0x1fa0f5ed24a1a2b43741e88f8fec19633e67082b": { + "address": "0x1fa0f5ed24a1a2b43741e88f8fec19633e67082b", + "symbol": "DIAM", + "decimals": 18, + "name": "Diamante", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x1fa0f5ed24a1a2b43741e88f8fec19633e67082b.png", + "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0x6fd7c98458a943f469e1cf4ea85b173f5cd342f4": { + "address": "0x6fd7c98458a943f469e1cf4ea85b173f5cd342f4", + "symbol": "BHC", + "decimals": 18, + "name": "BillionHappiness", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x6fd7c98458a943f469e1cf4ea85b173f5cd342f4.png", + "aggregators": [ + "PancakeCoinMarketCap", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 4 + }, + "0xb897d0a0f68800f8be7d69ffdd1c24b69f57bf3e": { + "address": "0xb897d0a0f68800f8be7d69ffdd1c24b69f57bf3e", + "symbol": "XEP", + "decimals": 8, + "name": "Electra Protocol", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xb897d0a0f68800f8be7d69ffdd1c24b69f57bf3e.png", + "aggregators": [ + "PancakeCoinMarketCap", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 4 + }, + "0xe3f53c0d48360de764ddc2a1a82c3e6db5d4624d": { + "address": "0xe3f53c0d48360de764ddc2a1a82c3e6db5d4624d", + "symbol": "EMYC", + "decimals": 18, + "name": "E Money Network", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xe3f53c0d48360de764ddc2a1a82c3e6db5d4624d.png", + "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0xf0186490b18cb74619816cfc7feb51cdbe4ae7b9": { + "address": "0xf0186490b18cb74619816cfc7feb51cdbe4ae7b9", + "symbol": "ZUSD", + "decimals": 18, + "name": "Zasset zUSD", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xf0186490b18cb74619816cfc7feb51cdbe4ae7b9.png", + "aggregators": ["PancakeCoinMarketCap", "Socket", "Rubic", "Rango"], + "occurrences": 4 + }, + "0xd10332818d6a9b4b84bf5d87dbf9d80012fdf913": { + "address": "0xd10332818d6a9b4b84bf5d87dbf9d80012fdf913", + "symbol": "MRHB", + "decimals": 18, + "name": "MarhabaDeFi", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xd10332818d6a9b4b84bf5d87dbf9d80012fdf913.png", + "aggregators": [ + "PancakeCoinMarketCap", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 4 + }, + "0x881025d714c587611e47d89b7929c1cb4ff05b51": { + "address": "0x881025d714c587611e47d89b7929c1cb4ff05b51", + "symbol": "CONSCIOUS", + "decimals": 18, + "name": "Conscious Token", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x881025d714c587611e47d89b7929c1cb4ff05b51.png", + "aggregators": ["CoinGecko", "Rubic", "Squid", "Rango"], + "occurrences": 4 + }, + "0x28ce223853d123b52c74439b10b43366d73fd3b5": { + "address": "0x28ce223853d123b52c74439b10b43366d73fd3b5", + "symbol": "FAME", + "decimals": 18, + "name": "Fame MMA", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x28ce223853d123b52c74439b10b43366d73fd3b5.png", + "aggregators": [ + "PancakeCoinMarketCap", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 4 + }, + "0xf39e4b21c84e737df08e2c3b32541d856f508e48": { + "address": "0xf39e4b21c84e737df08e2c3b32541d856f508e48", + "symbol": "ESPORTS", + "decimals": 18, + "name": "Yooldo Games", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xf39e4b21c84e737df08e2c3b32541d856f508e48.png", + "aggregators": ["PancakeExtended", "Rubic", "Squid", "Rango"], + "occurrences": 4 + }, + "0xdc06717f367e57a16e06cce0c4761604460da8fc": { + "address": "0xdc06717f367e57a16e06cce0c4761604460da8fc", + "symbol": "BNBCARD", + "decimals": 18, + "name": "BNB Card", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xdc06717f367e57a16e06cce0c4761604460da8fc.png", + "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0xa5996fc5007dd2019f9a9ff6c50c1c847aa64444": { + "address": "0xa5996fc5007dd2019f9a9ff6c50c1c847aa64444", + "symbol": "CLZD", + "decimals": 18, + "name": "CLZD", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xa5996fc5007dd2019f9a9ff6c50c1c847aa64444.png", + "aggregators": ["CoinGecko", "Rubic", "Squid", "Rango"], + "occurrences": 4 + }, + "0x0a43fc31a73013089df59194872ecae4cae14444": { + "address": "0x0a43fc31a73013089df59194872ecae4cae14444", + "symbol": "4", + "decimals": 18, + "name": "4", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x0a43fc31a73013089df59194872ecae4cae14444.png", + "aggregators": ["PancakeExtended", "1inch", "Rubic", "Rango"], + "occurrences": 4 + }, + "0xb841f365d5221bed66d60e69094418d8c2aa5a44": { + "address": "0xb841f365d5221bed66d60e69094418d8c2aa5a44", + "symbol": "DSTRX", + "decimals": 18, + "name": "Districts", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xb841f365d5221bed66d60e69094418d8c2aa5a44.png", + "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0x617724974218a18769020a70162165a539c07e8a": { + "address": "0x617724974218a18769020a70162165a539c07e8a", + "symbol": "OLIVE", + "decimals": 18, + "name": "Olive Cash", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x617724974218a18769020a70162165a539c07e8a.png", + "aggregators": [ + "PancakeCoinMarketCap", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 4 + }, + "0x045c2767a6cae0a4551f40e4e8d250af94fe056b": { + "address": "0x045c2767a6cae0a4551f40e4e8d250af94fe056b", + "symbol": "TCAPY", + "decimals": 18, + "name": "TonCapy", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x045c2767a6cae0a4551f40e4e8d250af94fe056b.png", + "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0xbf8bab33600d5bca18e4464e34c2a8d532031f5c": { + "address": "0xbf8bab33600d5bca18e4464e34c2a8d532031f5c", + "symbol": "$OZONE", + "decimals": 18, + "name": "Ozone Metaverse", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xbf8bab33600d5bca18e4464e34c2a8d532031f5c.png", + "aggregators": [ + "PancakeCoinMarketCap", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 4 + }, + "0xaab09b5cd1694d12c8c980306f5e2f5d65b00e1c": { + "address": "0xaab09b5cd1694d12c8c980306f5e2f5d65b00e1c", + "symbol": "REVO", + "decimals": 18, + "name": "Revomon", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xaab09b5cd1694d12c8c980306f5e2f5d65b00e1c.png", + "aggregators": [ + "PancakeCoinMarketCap", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 4 + }, + "0xb1ff83ef5e44862d634413be77ca4dc6ac50b74f": { + "address": "0xb1ff83ef5e44862d634413be77ca4dc6ac50b74f", + "symbol": "CUT", + "decimals": 9, + "name": "CryptoUnity", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xb1ff83ef5e44862d634413be77ca4dc6ac50b74f.png", + "aggregators": [ + "PancakeCoinMarketCap", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 4 + }, + "0xdeb27a3d1c0cc78a2a7d679b94a2bd9c122613e2": { + "address": "0xdeb27a3d1c0cc78a2a7d679b94a2bd9c122613e2", + "symbol": "RTUSQ", + "decimals": 18, + "name": "rtUSQ", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xdeb27a3d1c0cc78a2a7d679b94a2bd9c122613e2.png", + "aggregators": ["CoinGecko", "1inch", "Rubic", "Rango"], + "occurrences": 4 + }, + "0x085d15db9c7cd3df188422f88ec41ec573d691b9": { + "address": "0x085d15db9c7cd3df188422f88ec41ec573d691b9", + "symbol": "PRIDE", + "decimals": 18, + "name": "Nomad Exiles", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x085d15db9c7cd3df188422f88ec41ec573d691b9.png", + "aggregators": [ + "PancakeCoinMarketCap", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 4 + }, + "0x619940c0f69f1612245f94b7659403623239fb20": { + "address": "0x619940c0f69f1612245f94b7659403623239fb20", + "symbol": "MSVP", + "decimals": 18, + "name": "MetaSoilVerseProtocol", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x619940c0f69f1612245f94b7659403623239fb20.png", + "aggregators": ["PancakeExtended", "LiFi", "Rubic", "Rango"], + "occurrences": 4 + }, + "0xb92c5e0135a510a4a3a8803f143d2cb085bbaf73": { + "address": "0xb92c5e0135a510a4a3a8803f143d2cb085bbaf73", + "symbol": "MTVT", + "decimals": 18, + "name": "Metaverser", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xb92c5e0135a510a4a3a8803f143d2cb085bbaf73.png", + "aggregators": [ + "PancakeCoinMarketCap", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 4 + }, + "0x95b0fffabd2817959ce410070600d77bce93d454": { + "address": "0x95b0fffabd2817959ce410070600d77bce93d454", + "symbol": "NEUROS", + "decimals": 18, + "name": "Shockwaves", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x95b0fffabd2817959ce410070600d77bce93d454.png", + "aggregators": [ + "PancakeCoinMarketCap", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 4 + }, + "0x35ae9accf59d646b181e816fdb86811671919d74": { + "address": "0x35ae9accf59d646b181e816fdb86811671919d74", + "symbol": "GPT", + "decimals": 8, + "name": "GPT", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x35ae9accf59d646b181e816fdb86811671919d74.png", + "aggregators": ["CoinGecko", "Socket", "Rubic", "Rango"], + "occurrences": 4 + }, + "0x9d39ef3bbca5927909dde44476656b81bbe4ee75": { + "address": "0x9d39ef3bbca5927909dde44476656b81bbe4ee75", + "symbol": "WEAR", + "decimals": 18, + "name": "MetaWear", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x9d39ef3bbca5927909dde44476656b81bbe4ee75.png", + "aggregators": [ + "PancakeCoinMarketCap", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 4 + }, + "0xfcb8a4b1a0b645e08064e05b98e9cc6f48d2aa57": { + "address": "0xfcb8a4b1a0b645e08064e05b98e9cc6f48d2aa57", + "symbol": "ZMN", + "decimals": 18, + "name": "ZMINE", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xfcb8a4b1a0b645e08064e05b98e9cc6f48d2aa57.png", + "aggregators": [ + "PancakeCoinMarketCap", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 4 + }, + "0x84affeef925cdce87f8a99b7b2e540da5140fc09": { + "address": "0x84affeef925cdce87f8a99b7b2e540da5140fc09", + "symbol": "SERSH", + "decimals": 18, + "name": "Serenity", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x84affeef925cdce87f8a99b7b2e540da5140fc09.png", + "aggregators": [ + "PancakeCoinMarketCap", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 4 + }, + "0x1f12b85aac097e43aa1555b2881e98a51090e9a6": { + "address": "0x1f12b85aac097e43aa1555b2881e98a51090e9a6", + "symbol": "GENIUS", + "decimals": 18, + "name": "Genius", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x1f12b85aac097e43aa1555b2881e98a51090e9a6.png", + "aggregators": ["PancakeExtended", "LiFi", "Rubic", "Rango"], + "occurrences": 4 + }, + "0x799e1cf88a236e42b4a87c544a22a94ae95a6910": { + "address": "0x799e1cf88a236e42b4a87c544a22a94ae95a6910", + "symbol": "MCONTENT", + "decimals": 6, + "name": "MContent", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x799e1cf88a236e42b4a87c544a22a94ae95a6910.png", + "aggregators": ["PancakeCoinMarketCap", "Socket", "Rubic", "Rango"], + "occurrences": 4 + }, + "0xb5bea8a26d587cf665f2d78f077cca3c7f6341bd": { + "address": "0xb5bea8a26d587cf665f2d78f077cca3c7f6341bd", + "symbol": "POLIS", + "decimals": 18, + "name": "Polis", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xb5bea8a26d587cf665f2d78f077cca3c7f6341bd.png", + "aggregators": [ + "PancakeCoinMarketCap", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 4 + }, + "0x46d502fac9aea7c5bc7b13c8ec9d02378c33d36f": { + "address": "0x46d502fac9aea7c5bc7b13c8ec9d02378c33d36f", + "symbol": "WSPP", + "decimals": 0, + "name": "Wolf Safe Poor People", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x46d502fac9aea7c5bc7b13c8ec9d02378c33d36f.png", + "aggregators": ["PancakeCoinMarketCap", "1inch", "Rubic", "Rango"], + "occurrences": 4 + }, + "0x8850d2c68c632e3b258e612abaa8fada7e6958e5": { + "address": "0x8850d2c68c632e3b258e612abaa8fada7e6958e5", + "symbol": "PIG", + "decimals": 9, + "name": "Pig Token", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x8850d2c68c632e3b258e612abaa8fada7e6958e5.png", + "aggregators": ["PancakeCoinMarketCap", "1inch", "Rubic", "Rango"], + "occurrences": 4 + }, + "0x84f70be4deb029d5f8aacbeacc74c4dc10737342": { + "address": "0x84f70be4deb029d5f8aacbeacc74c4dc10737342", + "symbol": "GCB", + "decimals": 18, + "name": "Global Commercial Business", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x84f70be4deb029d5f8aacbeacc74c4dc10737342.png", + "aggregators": [ + "PancakeCoinMarketCap", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 4 + }, + "0x3e5d4f8aee0d9b3082d5f6da5d6e225d17ba9ea0": { + "address": "0x3e5d4f8aee0d9b3082d5f6da5d6e225d17ba9ea0", + "symbol": "UAI", + "decimals": 18, + "name": "UnifAI", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x3e5d4f8aee0d9b3082d5f6da5d6e225d17ba9ea0.png", + "aggregators": [ + "PancakeExtended", + "LiFi", + "Rubic", + "Squid", + "Rango" + ], + "occurrences": 5 + }, + "0x41df31ff0a7c35eb9b12752f2a5c87c3a9c109f8": { + "address": "0x41df31ff0a7c35eb9b12752f2a5c87c3a9c109f8", + "symbol": "CPEN", + "decimals": 18, + "name": "cPen", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x41df31ff0a7c35eb9b12752f2a5c87c3a9c109f8.png", + "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0x7528bd0f620d1568c307cc8d5db481a29e8d4e37": { + "address": "0x7528bd0f620d1568c307cc8d5db481a29e8d4e37", + "symbol": "P33L", + "decimals": 18, + "name": "THE P33L", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x7528bd0f620d1568c307cc8d5db481a29e8d4e37.png", + "aggregators": ["PancakeExtended", "Socket", "Rubic", "Rango"], + "occurrences": 4 + }, + "0xc703da39ae3b9db67c207c7bad8100e1afdc0f9c": { + "address": "0xc703da39ae3b9db67c207c7bad8100e1afdc0f9c", + "symbol": "FRGX", + "decimals": 18, + "name": "FRGX Finance", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xc703da39ae3b9db67c207c7bad8100e1afdc0f9c.png", + "aggregators": [ + "PancakeCoinMarketCap", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 4 + }, + "0x77734e70b6e88b4d82fe632a168edf6e700912b6": { + "address": "0x77734e70b6e88b4d82fe632a168edf6e700912b6", + "symbol": "ASBNB", + "decimals": 18, + "name": "Aster Staked BNB", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x77734e70b6e88b4d82fe632a168edf6e700912b6.png", + "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0x924fa68a0fc644485b8df8abfa0a41c2e7744444": { + "address": "0x924fa68a0fc644485b8df8abfa0a41c2e7744444", + "symbol": "币安人生", + "decimals": 18, + "name": "币安人生", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x924fa68a0fc644485b8df8abfa0a41c2e7744444.png", + "aggregators": ["PancakeExtended", "LiFi", "Rubic", "Rango"], + "occurrences": 4 + }, + "0x7ca058309053f90b39bfc58de1eda2a89e9c03a8": { + "address": "0x7ca058309053f90b39bfc58de1eda2a89e9c03a8", + "symbol": "ARCAS", + "decimals": 18, + "name": "Arcas", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x7ca058309053f90b39bfc58de1eda2a89e9c03a8.png", + "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0x7c33d9c9685408645486497c708ab491402e0886": { + "address": "0x7c33d9c9685408645486497c708ab491402e0886", + "symbol": "BTE", + "decimals": 18, + "name": "Betero", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x7c33d9c9685408645486497c708ab491402e0886.png", + "aggregators": [ + "PancakeCoinMarketCap", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 4 + }, + "0x2bf83d080d8bc4715984e75e5b3d149805d11751": { + "address": "0x2bf83d080d8bc4715984e75e5b3d149805d11751", + "symbol": "VC", + "decimals": 18, + "name": "VinuChain", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x2bf83d080d8bc4715984e75e5b3d149805d11751.png", + "aggregators": [ + "PancakeCoinMarketCap", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 4 + }, + "0x3aee7602b612de36088f3ffed8c8f10e86ebf2bf": { + "address": "0x3aee7602b612de36088f3ffed8c8f10e86ebf2bf", + "symbol": "BANK", + "decimals": 18, + "name": "Lorenzo Governance Token", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x3aee7602b612de36088f3ffed8c8f10e86ebf2bf.png", + "aggregators": ["PancakeExtended", "LiFi", "Socket", "Rubic"], + "occurrences": 4 + }, + "0x062ca2d2f1af8c203fa3ad5298fd6faa4e44e897": { + "address": "0x062ca2d2f1af8c203fa3ad5298fd6faa4e44e897", + "symbol": "O4DX", + "decimals": 18, + "name": "OrangeDX", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x062ca2d2f1af8c203fa3ad5298fd6faa4e44e897.png", + "aggregators": [ + "PancakeCoinMarketCap", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 4 + }, + "0x998305efdc264b9674178899fffbb44a47134a76": { + "address": "0x998305efdc264b9674178899fffbb44a47134a76", + "symbol": "GMRX", + "decimals": 18, + "name": "Gaimin", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x998305efdc264b9674178899fffbb44a47134a76.png", + "aggregators": [ + "PancakeCoinMarketCap", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 4 + }, + "0x6f3aaf802f57d045efdd2ac9c06d8879305542af": { + "address": "0x6f3aaf802f57d045efdd2ac9c06d8879305542af", + "symbol": "XPX", + "decimals": 6, + "name": "Sirius Chain", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x6f3aaf802f57d045efdd2ac9c06d8879305542af.png", + "aggregators": [ + "PancakeCoinMarketCap", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 4 + }, + "0x509a51394cc4d6bb474fefb2994b8975a55a6e79": { + "address": "0x509a51394cc4d6bb474fefb2994b8975a55a6e79", + "symbol": "FUFU", + "decimals": 18, + "name": "Fufu", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x509a51394cc4d6bb474fefb2994b8975a55a6e79.png", + "aggregators": [ + "PancakeCoinMarketCap", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 4 + }, + "0xb1e998b346dddacd06f01db50645be52dafb93db": { + "address": "0xb1e998b346dddacd06f01db50645be52dafb93db", + "symbol": "AAST", + "decimals": 18, + "name": "AASToken", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xb1e998b346dddacd06f01db50645be52dafb93db.png", + "aggregators": [ + "PancakeCoinMarketCap", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 4 + }, + "0xeccbb861c0dda7efd964010085488b69317e4444": { + "address": "0xeccbb861c0dda7efd964010085488b69317e4444", + "symbol": "龙虾", + "decimals": 18, + "name": "龙虾 (Lobster)", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xeccbb861c0dda7efd964010085488b69317e4444.png", + "aggregators": ["CoinGecko", "Rubic", "Squid", "Rango"], + "occurrences": 4 + }, + "0x0de08c1abe5fb86dd7fd2ac90400ace305138d5b": { + "address": "0x0de08c1abe5fb86dd7fd2ac90400ace305138d5b", + "symbol": "IDNA", + "decimals": 18, + "name": "Idena", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x0de08c1abe5fb86dd7fd2ac90400ace305138d5b.png", + "aggregators": [ + "PancakeCoinMarketCap", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 4 + }, + "0x55ad16bd573b3365f43a9daeb0cc66a73821b4a5": { + "address": "0x55ad16bd573b3365f43a9daeb0cc66a73821b4a5", + "symbol": "AIOT", + "decimals": 18, + "name": "OKZOO", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x55ad16bd573b3365f43a9daeb0cc66a73821b4a5.png", + "aggregators": ["PancakeExtended", "Rubic", "Sonarwatch"], + "occurrences": 3 + }, + "0xb5761f36fdfe2892f1b54bc8ee8babb2a1b698d3": { + "address": "0xb5761f36fdfe2892f1b54bc8ee8babb2a1b698d3", + "symbol": "RICE", + "decimals": 18, + "name": "RICE AI", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xb5761f36fdfe2892f1b54bc8ee8babb2a1b698d3.png", + "aggregators": ["PancakeExtended", "LiFi", "Rubic", "Rango"], + "occurrences": 4 + }, + "0xaf44a1e76f56ee12adbb7ba8acd3cbd474888122": { + "address": "0xaf44a1e76f56ee12adbb7ba8acd3cbd474888122", + "symbol": "DUSD", + "decimals": 6, + "name": "StandX DUSD", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xaf44a1e76f56ee12adbb7ba8acd3cbd474888122.png", + "aggregators": ["Metamask", "Rubic", "Squid", "Rango"], + "occurrences": 4 + }, + "0xcf640fdf9b3d9e45cbd69fda91d7e22579c14444": { + "address": "0xcf640fdf9b3d9e45cbd69fda91d7e22579c14444", + "symbol": "GORILLA", + "decimals": 18, + "name": "gorilla", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xcf640fdf9b3d9e45cbd69fda91d7e22579c14444.png", + "aggregators": ["PancakeExtended", "1inch", "Rubic", "Rango"], + "occurrences": 4 + }, + "0x5dbde81fce337ff4bcaaee4ca3466c00aecae274": { + "address": "0x5dbde81fce337ff4bcaaee4ca3466c00aecae274", + "symbol": "AGT", + "decimals": 18, + "name": "Alaya AI", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x5dbde81fce337ff4bcaaee4ca3466c00aecae274.png", + "aggregators": ["PancakeExtended", "Rubic", "Sonarwatch"], + "occurrences": 3 + }, + "0xf19c362d779ade83d4f8708c6c36297b6ad57528": { + "address": "0xf19c362d779ade83d4f8708c6c36297b6ad57528", + "symbol": "COINBANK", + "decimals": 18, + "name": "CoinBank", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xf19c362d779ade83d4f8708c6c36297b6ad57528.png", + "aggregators": ["CoinGecko", "Rubic", "Squid", "Rango"], + "occurrences": 4 + }, + "0xf3147987a00d35eecc10c731269003ca093740ca": { + "address": "0xf3147987a00d35eecc10c731269003ca093740ca", + "symbol": "MAT", + "decimals": 18, + "name": "My Master War", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xf3147987a00d35eecc10c731269003ca093740ca.png", + "aggregators": [ + "PancakeCoinMarketCap", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 4 + }, + "0x11a31b833d43853f8869c9eec17f60e3b4d2a753": { + "address": "0x11a31b833d43853f8869c9eec17f60e3b4d2a753", + "symbol": "BIOFI", + "decimals": 18, + "name": "Biometric Financial", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x11a31b833d43853f8869c9eec17f60e3b4d2a753.png", + "aggregators": [ + "PancakeCoinMarketCap", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 4 + }, + "0xe94db607eba8f76a377d9bcc327c9856ed90fbde": { + "address": "0xe94db607eba8f76a377d9bcc327c9856ed90fbde", + "symbol": "NINA", + "decimals": 9, + "name": "Nina", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xe94db607eba8f76a377d9bcc327c9856ed90fbde.png", + "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0xd6b48ccf41a62eb3891e58d0f006b19b01d50cca": { + "address": "0xd6b48ccf41a62eb3891e58d0f006b19b01d50cca", + "symbol": "SERAPH", + "decimals": 18, + "name": "Seraph", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xd6b48ccf41a62eb3891e58d0f006b19b01d50cca.png", + "aggregators": ["PancakeExtended", "Socket", "Rubic", "Sonarwatch"], + "occurrences": 4 + }, + "0xa2c17a6fd0afe27afa2630a7528bc673089e6b8d": { + "address": "0xa2c17a6fd0afe27afa2630a7528bc673089e6b8d", + "symbol": "CZGOAT", + "decimals": 9, + "name": "CZ THE GOAT", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xa2c17a6fd0afe27afa2630a7528bc673089e6b8d.png", + "aggregators": [ + "PancakeCoinMarketCap", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 4 + }, + "0xb8fd1438ca2af47b940fff34d13cf58c64ac96a1": { + "address": "0xb8fd1438ca2af47b940fff34d13cf58c64ac96a1", + "symbol": "SFX", + "decimals": 18, + "name": "Space Frog X", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xb8fd1438ca2af47b940fff34d13cf58c64ac96a1.png", + "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0x351da1e7500aba1d168b9435dce73415718d212f": { + "address": "0x351da1e7500aba1d168b9435dce73415718d212f", + "symbol": "FPS", + "decimals": 12, + "name": "web3war", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x351da1e7500aba1d168b9435dce73415718d212f.png", + "aggregators": [ + "PancakeCoinMarketCap", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 4 + }, + "0x2f8a339b5889ffac4c5a956787cda593b3c36867": { + "address": "0x2f8a339b5889ffac4c5a956787cda593b3c36867", + "symbol": "CMC20", + "decimals": 18, + "name": "CoinMarketCap 20 Index DTF", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x2f8a339b5889ffac4c5a956787cda593b3c36867.png", + "aggregators": ["PancakeExtended", "LiFi", "Rubic", "Rango"], + "occurrences": 4 + }, + "0xcbd9f6d748dd3d19416f8914528a65c7838e27d8": { + "address": "0xcbd9f6d748dd3d19416f8914528a65c7838e27d8", + "symbol": "RGAME", + "decimals": 18, + "name": "R Games", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xcbd9f6d748dd3d19416f8914528a65c7838e27d8.png", + "aggregators": [ + "PancakeCoinMarketCap", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 4 + }, + "0x1e34fcc9a67e05d4beed8c6a70f98c3e4d1e1e96": { + "address": "0x1e34fcc9a67e05d4beed8c6a70f98c3e4d1e1e96", + "symbol": "LAND", + "decimals": 18, + "name": "Outlanders", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x1e34fcc9a67e05d4beed8c6a70f98c3e4d1e1e96.png", + "aggregators": [ + "PancakeCoinMarketCap", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 4 + }, + "0x9daf1a070f882d870a8d58d7a27041c752f3b88d": { + "address": "0x9daf1a070f882d870a8d58d7a27041c752f3b88d", + "symbol": "MHORSE", + "decimals": 18, + "name": "MHORSE", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x9daf1a070f882d870a8d58d7a27041c752f3b88d.png", + "aggregators": ["CoinGecko", "Rubic", "Squid", "Rango"], + "occurrences": 4 + }, + "0xd5d0322b6bab6a762c79f8c81a0b674778e13aed": { + "address": "0xd5d0322b6bab6a762c79f8c81a0b674778e13aed", + "symbol": "FIRO", + "decimals": 8, + "name": "Binance-Peg Firo", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xd5d0322b6bab6a762c79f8c81a0b674778e13aed.png", + "aggregators": [ + "PancakeCoinMarketCap", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 4 + }, + "0xcae3d82d63e2b0094bc959752993d3d3743b5d08": { + "address": "0xcae3d82d63e2b0094bc959752993d3d3743b5d08", + "symbol": "BTAF", + "decimals": 18, + "name": "BTAF token", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xcae3d82d63e2b0094bc959752993d3d3743b5d08.png", + "aggregators": [ + "PancakeCoinMarketCap", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 4 + }, + "0x997a58129890bbda032231a52ed1ddc845fc18e1": { + "address": "0x997a58129890bbda032231a52ed1ddc845fc18e1", + "symbol": "SIREN", + "decimals": 18, + "name": "SIREN", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x997a58129890bbda032231a52ed1ddc845fc18e1.png", + "aggregators": ["PancakeExtended", "LiFi", "Rubic", "Squid"], + "occurrences": 4 + }, + "0x76e9b54b49739837be8ad10c3687fc6b543de852": { + "address": "0x76e9b54b49739837be8ad10c3687fc6b543de852", + "symbol": "KLINK", + "decimals": 18, + "name": "Klink Finance", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x76e9b54b49739837be8ad10c3687fc6b543de852.png", + "aggregators": ["PancakeExtended", "LiFi", "Rubic", "Rango"], + "occurrences": 4 + }, + "0xc9ad421f96579ace066ec188a7bba472fb83017f": { + "address": "0xc9ad421f96579ace066ec188a7bba472fb83017f", + "symbol": "BOOK", + "decimals": 18, + "name": "Book of Binance", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xc9ad421f96579ace066ec188a7bba472fb83017f.png", + "aggregators": ["CoinGecko", "LiFi", "Rubic", "Rango"], + "occurrences": 4 + }, + "0xae28714390e95b8df1ef847c58aeac23ed457702": { + "address": "0xae28714390e95b8df1ef847c58aeac23ed457702", + "symbol": "X", + "decimals": 18, + "name": "GIBX Swap", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xae28714390e95b8df1ef847c58aeac23ed457702.png", + "aggregators": [ + "PancakeCoinMarketCap", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 4 + }, + "0x7ec43cf65f1663f820427c62a5780b8f2e25593a": { + "address": "0x7ec43cf65f1663f820427c62a5780b8f2e25593a", + "symbol": "LAB", + "decimals": 18, + "name": "LAB", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x7ec43cf65f1663f820427c62a5780b8f2e25593a.png", + "aggregators": ["CoinGecko", "LiFi", "Rubic", "Rango"], + "occurrences": 4 + }, + "0xcefc79c16cd62cf0c35c1d16d23b9f266f2eda51": { + "address": "0xcefc79c16cd62cf0c35c1d16d23b9f266f2eda51", + "symbol": "CATTON", + "decimals": 18, + "name": "Catton AI", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xcefc79c16cd62cf0c35c1d16d23b9f266f2eda51.png", + "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0xe7875e08e3c85dd49d4ff52a7d4c3a9c75c8a6a1": { + "address": "0xe7875e08e3c85dd49d4ff52a7d4c3a9c75c8a6a1", + "symbol": "EDN", + "decimals": 18, + "name": "Eden", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xe7875e08e3c85dd49d4ff52a7d4c3a9c75c8a6a1.png", + "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0x6cf271270662be1c4fc1b7bb7d7d7fc60cc19125": { + "address": "0x6cf271270662be1c4fc1b7bb7d7d7fc60cc19125", + "symbol": "KUNCI", + "decimals": 6, + "name": "Kunci Coin", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x6cf271270662be1c4fc1b7bb7d7d7fc60cc19125.png", + "aggregators": [ + "PancakeCoinMarketCap", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 4 + }, + "0x73ffdf2d2afb3def5b10bf967da743f2306a51db": { + "address": "0x73ffdf2d2afb3def5b10bf967da743f2306a51db", + "symbol": "AGS", + "decimals": 18, + "name": "Collector Coin", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x73ffdf2d2afb3def5b10bf967da743f2306a51db.png", + "aggregators": [ + "PancakeCoinMarketCap", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 4 + }, + "0x917af46b3c3c6e1bb7286b9f59637fb7c65851fb": { + "address": "0x917af46b3c3c6e1bb7286b9f59637fb7c65851fb", + "symbol": "ASUSDF", + "decimals": 18, + "name": "Astherus Staked USDF", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x917af46b3c3c6e1bb7286b9f59637fb7c65851fb.png", + "aggregators": ["PancakeExtended", "LiFi", "Rubic", "Sonarwatch"], + "occurrences": 4 + }, + "0xcaae2a2f939f51d97cdfa9a86e79e3f085b799f3": { + "address": "0xcaae2a2f939f51d97cdfa9a86e79e3f085b799f3", + "symbol": "TUT", + "decimals": 18, + "name": "Tutorial", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xcaae2a2f939f51d97cdfa9a86e79e3f085b799f3.png", + "aggregators": ["PancakeExtended", "LiFi", "Rubic", "Sonarwatch"], + "occurrences": 4 + }, + "0x383094a91ef2767eed2b063ea40465670bf1c83f": { + "address": "0x383094a91ef2767eed2b063ea40465670bf1c83f", + "symbol": "LMCSWAP", + "decimals": 18, + "name": "Limocoin Swap", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x383094a91ef2767eed2b063ea40465670bf1c83f.png", + "aggregators": [ + "PancakeCoinMarketCap", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 4 + }, + "0x6cfffa5bfd4277a04d83307feedfe2d18d944dd2": { + "address": "0x6cfffa5bfd4277a04d83307feedfe2d18d944dd2", + "symbol": "ALEO", + "decimals": 6, + "name": "Aleo", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x6cfffa5bfd4277a04d83307feedfe2d18d944dd2.png", + "aggregators": [ + "PancakeExtended", + "LiFi", + "Rubic", + "Squid", + "Rango" + ], + "occurrences": 5 + }, + "0x617cab4aaae1f8dfb3ee138698330776a1e1b324": { + "address": "0x617cab4aaae1f8dfb3ee138698330776a1e1b324", + "symbol": "ARTY", + "decimals": 6, + "name": "Artyfact", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x617cab4aaae1f8dfb3ee138698330776a1e1b324.png", + "aggregators": [ + "PancakeCoinMarketCap", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 4 + }, + "0x9d70a3ee3079a6fa2bb16591414678b7ad91f0b5": { + "address": "0x9d70a3ee3079a6fa2bb16591414678b7ad91f0b5", + "symbol": "MEPAD", + "decimals": 18, + "name": "MemePad", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x9d70a3ee3079a6fa2bb16591414678b7ad91f0b5.png", + "aggregators": [ + "PancakeCoinMarketCap", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 4 + }, + "0x15d1dafbcc97f606bd02120d170fdac33b1a4a86": { + "address": "0x15d1dafbcc97f606bd02120d170fdac33b1a4a86", + "symbol": "CBP", + "decimals": 6, + "name": "CashBackPro", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x15d1dafbcc97f606bd02120d170fdac33b1a4a86.png", + "aggregators": [ + "PancakeCoinMarketCap", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 4 + }, + "0xd82544bf0dfe8385ef8fa34d67e6e4940cc63e16": { + "address": "0xd82544bf0dfe8385ef8fa34d67e6e4940cc63e16", + "symbol": "MYX", + "decimals": 18, + "name": "MYX", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xd82544bf0dfe8385ef8fa34d67e6e4940cc63e16.png", + "aggregators": [ + "PancakeExtended", + "1inch", + "LiFi", + "Rubic", + "Rango" + ], + "occurrences": 5 + }, + "0x8b9abdd229ec0c4a28e01b91aacdc5daafc25c2b": { + "address": "0x8b9abdd229ec0c4a28e01b91aacdc5daafc25c2b", + "symbol": "STAR10", + "decimals": 18, + "name": "Ronaldinho Coin", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x8b9abdd229ec0c4a28e01b91aacdc5daafc25c2b.png", + "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0x54523d5fb56803bac758e8b10b321748a77ae9e9": { + "address": "0x54523d5fb56803bac758e8b10b321748a77ae9e9", + "symbol": "DREAMS", + "decimals": 18, + "name": "Dreams Quest", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x54523d5fb56803bac758e8b10b321748a77ae9e9.png", + "aggregators": [ + "PancakeCoinMarketCap", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 4 + }, + "0xbe2b6c5e31f292009f495ddbda88e28391c9815e": { + "address": "0xbe2b6c5e31f292009f495ddbda88e28391c9815e", + "symbol": "LGO", + "decimals": 18, + "name": "Level Governance", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xbe2b6c5e31f292009f495ddbda88e28391c9815e.png", + "aggregators": ["PancakeExtended", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0x3867564f3b5ad2ddb53b317ba64cddef9e1eb54d": { + "address": "0x3867564f3b5ad2ddb53b317ba64cddef9e1eb54d", + "symbol": "AFC", + "decimals": 18, + "name": "Accel Finance Coin", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x3867564f3b5ad2ddb53b317ba64cddef9e1eb54d.png", + "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0x6397de0f9aedc0f7a8fa8b438dde883b9c201010": { + "address": "0x6397de0f9aedc0f7a8fa8b438dde883b9c201010", + "symbol": "SIN", + "decimals": 18, + "name": "Sinverse", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x6397de0f9aedc0f7a8fa8b438dde883b9c201010.png", + "aggregators": [ + "PancakeCoinMarketCap", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 4 + }, + "0x87a2d9a9a6b2d61b2a57798f1b4b2ddd19458fb6": { + "address": "0x87a2d9a9a6b2d61b2a57798f1b4b2ddd19458fb6", + "symbol": "KDG", + "decimals": 18, + "name": "KingdomStarter", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x87a2d9a9a6b2d61b2a57798f1b4b2ddd19458fb6.png", + "aggregators": [ + "PancakeCoinMarketCap", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 4 + }, + "0x9d6db6382444b70a51307a4291188f60d4eef205": { + "address": "0x9d6db6382444b70a51307a4291188f60d4eef205", + "symbol": "BABYPEPE", + "decimals": 9, + "name": "Baby Pepe", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x9d6db6382444b70a51307a4291188f60d4eef205.png", + "aggregators": ["PancakeCoinMarketCap", "Socket", "Rubic", "Rango"], + "occurrences": 4 + }, + "0x8dedf84656fa932157e27c060d8613824e7979e3": { + "address": "0x8dedf84656fa932157e27c060d8613824e7979e3", + "symbol": "STBL", + "decimals": 18, + "name": "STBL_Token - STBL Governance Token", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x8dedf84656fa932157e27c060d8613824e7979e3.png", + "aggregators": ["PancakeExtended", "1inch", "LiFi", "Rubic"], + "occurrences": 4 + }, + "0x780207b8c0fdc32cf60e957415bfa1f2d4d9718c": { + "address": "0x780207b8c0fdc32cf60e957415bfa1f2d4d9718c", + "symbol": "CAS", + "decimals": 18, + "name": "CASHAA", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x780207b8c0fdc32cf60e957415bfa1f2d4d9718c.png", + "aggregators": [ + "PancakeCoinMarketCap", + "Rubic", + "Rango", + "Sonarwatch", + "BinanceDex" + ], + "occurrences": 5 + }, + "0x69bfa36d50d92e8985d27e6aa6e685c0325ce7b4": { + "address": "0x69bfa36d50d92e8985d27e6aa6e685c0325ce7b4", + "symbol": "CTG", + "decimals": 18, + "name": "Cryptorg", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x69bfa36d50d92e8985d27e6aa6e685c0325ce7b4.png", + "aggregators": [ + "PancakeCoinMarketCap", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 4 + }, + "0xc7091aa18598b87588e37501b6ce865263cd67ce": { + "address": "0xc7091aa18598b87588e37501b6ce865263cd67ce", + "symbol": "CCAKE", + "decimals": 18, + "name": "CheesecakeSwap", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xc7091aa18598b87588e37501b6ce865263cd67ce.png", + "aggregators": [ + "PancakeCoinMarketCap", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 4 + }, + "0x7565ab68d3f9dadff127f864103c8c706cf28235": { + "address": "0x7565ab68d3f9dadff127f864103c8c706cf28235", + "symbol": "TFI", + "decimals": 18, + "name": "TrustFi Network", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x7565ab68d3f9dadff127f864103c8c706cf28235.png", + "aggregators": [ + "PancakeCoinMarketCap", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 4 + }, + "0x16153214e683018d5aa318864c8e692b66e16778": { + "address": "0x16153214e683018d5aa318864c8e692b66e16778", + "symbol": "PWAR", + "decimals": 18, + "name": "PolkaWar", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x16153214e683018d5aa318864c8e692b66e16778.png", + "aggregators": [ + "PancakeCoinMarketCap", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 4 + }, + "0x5f84ce30dc3cf7909101c69086c50de191895883": { + "address": "0x5f84ce30dc3cf7909101c69086c50de191895883", + "symbol": "VRT", + "decimals": 18, + "name": "Venus Reward", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x5f84ce30dc3cf7909101c69086c50de191895883.png", + "aggregators": ["PancakeExtended", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0x19a4866a85c652eb4a2ed44c42e4cb2863a62d51": { + "address": "0x19a4866a85c652eb4a2ed44c42e4cb2863a62d51", + "symbol": "HOD", + "decimals": 18, + "name": "HoDooi.com", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x19a4866a85c652eb4a2ed44c42e4cb2863a62d51.png", + "aggregators": [ + "PancakeCoinMarketCap", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 4 + }, + "0x330f4fe5ef44b4d0742fe8bed8ca5e29359870df": { + "address": "0x330f4fe5ef44b4d0742fe8bed8ca5e29359870df", + "symbol": "JADE", + "decimals": 18, + "name": "Jade Currency", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x330f4fe5ef44b4d0742fe8bed8ca5e29359870df.png", + "aggregators": [ + "PancakeCoinMarketCap", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 4 + }, + "0x235b6fe22b4642ada16d311855c49ce7de260841": { + "address": "0x235b6fe22b4642ada16d311855c49ce7de260841", + "symbol": "EDEN", + "decimals": 18, + "name": "Eden Token", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x235b6fe22b4642ada16d311855c49ce7de260841.png", + "aggregators": ["PancakeExtended", "LiFi", "Socket", "Rubic"], + "occurrences": 4 + }, + "0x9240c44ee90d058b0b17ababe0f74ab1a205ae04": { + "address": "0x9240c44ee90d058b0b17ababe0f74ab1a205ae04", + "symbol": "ENTS", + "decimals": 18, + "name": "Ents", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x9240c44ee90d058b0b17ababe0f74ab1a205ae04.png", + "aggregators": [ + "PancakeCoinMarketCap", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 4 + }, + "0xec91cc1c33d44fe13b42150d2f1dfbeb668aef2e": { + "address": "0xec91cc1c33d44fe13b42150d2f1dfbeb668aef2e", + "symbol": "AGO", + "decimals": 18, + "name": "ago", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xec91cc1c33d44fe13b42150d2f1dfbeb668aef2e.png", + "aggregators": [ + "PancakeCoinMarketCap", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 4 + }, + "0xd8047afecb86e44eff3add991b9f063ed4ca716b": { + "address": "0xd8047afecb86e44eff3add991b9f063ed4ca716b", + "symbol": "GGG", + "decimals": 18, + "name": "Good Games Guild", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xd8047afecb86e44eff3add991b9f063ed4ca716b.png", + "aggregators": ["PancakeCoinMarketCap", "LiFi", "Rubic", "Rango"], + "occurrences": 4 + }, + "0xec3422ef92b2fb59e84c8b02ba73f1fe84ed8d71": { + "address": "0xec3422ef92b2fb59e84c8b02ba73f1fe84ed8d71", + "symbol": "VDOGE", + "decimals": 8, + "name": "Venus DOGE", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xec3422ef92b2fb59e84c8b02ba73f1fe84ed8d71.png", + "aggregators": [ + "PancakeCoinMarketCap", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 4 + }, + "0x7b0409a3a3f79baa284035d48e1dfd581d7d7654": { + "address": "0x7b0409a3a3f79baa284035d48e1dfd581d7d7654", + "symbol": "RUPEE", + "decimals": 18, + "name": "HyruleSwap", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x7b0409a3a3f79baa284035d48e1dfd581d7d7654.png", + "aggregators": [ + "PancakeCoinMarketCap", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 4 + }, + "0x3051cfb958dcd408fba70256073adba943fdf552": { + "address": "0x3051cfb958dcd408fba70256073adba943fdf552", + "symbol": "FOC", + "decimals": 18, + "name": "TheForce Trade", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x3051cfb958dcd408fba70256073adba943fdf552.png", + "aggregators": [ + "PancakeCoinMarketCap", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 4 + }, + "0x13e1070e3a388e53ec35480ff494538f9ffc5b8d": { + "address": "0x13e1070e3a388e53ec35480ff494538f9ffc5b8d", + "symbol": "BRICKS", + "decimals": 9, + "name": "MyBricks", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x13e1070e3a388e53ec35480ff494538f9ffc5b8d.png", + "aggregators": [ + "PancakeCoinMarketCap", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 4 + }, + "0x1f39dd2bf5a27e2d4ed691dcf933077371777cb0": { + "address": "0x1f39dd2bf5a27e2d4ed691dcf933077371777cb0", + "symbol": "NORA", + "decimals": 18, + "name": "SnowCrash", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x1f39dd2bf5a27e2d4ed691dcf933077371777cb0.png", + "aggregators": [ + "PancakeCoinMarketCap", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 4 + }, + "0x602ba546a7b06e0fc7f58fd27eb6996ecc824689": { + "address": "0x602ba546a7b06e0fc7f58fd27eb6996ecc824689", + "symbol": "PINKSALE", + "decimals": 18, + "name": "PinkSale", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x602ba546a7b06e0fc7f58fd27eb6996ecc824689.png", + "aggregators": ["PancakeCoinMarketCap", "1inch", "Rubic", "Rango"], + "occurrences": 4 + }, + "0xc79d1fd14f514cd713b5ca43d288a782ae53eab2": { + "address": "0xc79d1fd14f514cd713b5ca43d288a782ae53eab2", + "symbol": "XLD", + "decimals": 18, + "name": "Xcel Defi", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xc79d1fd14f514cd713b5ca43d288a782ae53eab2.png", + "aggregators": [ + "PancakeCoinMarketCap", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 4 + }, + "0xf574ba6bde97cc09784e616ebaed432b4e896b49": { + "address": "0xf574ba6bde97cc09784e616ebaed432b4e896b49", + "symbol": "VPAD", + "decimals": 18, + "name": "VLaunch", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xf574ba6bde97cc09784e616ebaed432b4e896b49.png", + "aggregators": [ + "PancakeCoinMarketCap", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 4 + }, + "0x8717e80eff08f53a45b4a925009957e14860a8a8": { + "address": "0x8717e80eff08f53a45b4a925009957e14860a8a8", + "symbol": "BHO", + "decimals": 18, + "name": "BHO Network", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x8717e80eff08f53a45b4a925009957e14860a8a8.png", + "aggregators": [ + "PancakeCoinMarketCap", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 4 + }, + "0x5ca4e7294b14ea5745ee2a688990e0cb68503219": { + "address": "0x5ca4e7294b14ea5745ee2a688990e0cb68503219", + "symbol": "GRBE", + "decimals": 18, + "name": "Green Beli", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x5ca4e7294b14ea5745ee2a688990e0cb68503219.png", + "aggregators": [ + "PancakeCoinMarketCap", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 4 + }, + "0x68d10dfe87a838d63bbef6c9a0d0b44beb799dc1": { + "address": "0x68d10dfe87a838d63bbef6c9a0d0b44beb799dc1", + "symbol": "MTG", + "decimals": 18, + "name": "MagnetGold", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x68d10dfe87a838d63bbef6c9a0d0b44beb799dc1.png", + "aggregators": [ + "PancakeCoinMarketCap", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 4 + }, + "0x0fe178b9a471b3698cb6fcb4625df9a756a2c55c": { + "address": "0x0fe178b9a471b3698cb6fcb4625df9a756a2c55c", + "symbol": "STRIP", + "decimals": 18, + "name": "Strip Finance", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x0fe178b9a471b3698cb6fcb4625df9a756a2c55c.png", + "aggregators": [ + "PancakeCoinMarketCap", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 4 + }, + "0x57bc18f6177cdaffb34ace048745bc913a1b1b54": { + "address": "0x57bc18f6177cdaffb34ace048745bc913a1b1b54", + "symbol": "BTH", + "decimals": 18, + "name": "Bit Hotel", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x57bc18f6177cdaffb34ace048745bc913a1b1b54.png", + "aggregators": [ + "PancakeCoinMarketCap", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 4 + }, + "0x6067490d05f3cf2fdffc0e353b1f5fd6e5ccdf70": { + "address": "0x6067490d05f3cf2fdffc0e353b1f5fd6e5ccdf70", + "symbol": "MMPRO", + "decimals": 18, + "name": "Market Making Pro", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x6067490d05f3cf2fdffc0e353b1f5fd6e5ccdf70.png", + "aggregators": [ + "PancakeCoinMarketCap", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 4 + }, + "0xaffeabc20b2cafa80d2d7ff220ad37e4ec7541d7": { + "address": "0xaffeabc20b2cafa80d2d7ff220ad37e4ec7541d7", + "symbol": "LINKS", + "decimals": 18, + "name": "Links", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xaffeabc20b2cafa80d2d7ff220ad37e4ec7541d7.png", + "aggregators": [ + "PancakeCoinMarketCap", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 4 + }, + "0x4f745c0c7da552a348c384da1a5baeb28f2c607c": { + "address": "0x4f745c0c7da552a348c384da1a5baeb28f2c607c", + "symbol": "XPS", + "decimals": 18, + "name": "Xpansion Game", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x4f745c0c7da552a348c384da1a5baeb28f2c607c.png", + "aggregators": [ + "PancakeCoinMarketCap", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 4 + }, + "0x4ce5f6bf8e996ae54709c75865709aca5127dd54": { + "address": "0x4ce5f6bf8e996ae54709c75865709aca5127dd54", + "symbol": "AMT", + "decimals": 18, + "name": "Amateras", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x4ce5f6bf8e996ae54709c75865709aca5127dd54.png", + "aggregators": [ + "PancakeCoinMarketCap", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 4 + }, + "0xb850cac12ab85d4400db61ac78dc5fc2418b6868": { + "address": "0xb850cac12ab85d4400db61ac78dc5fc2418b6868", + "symbol": "CTP", + "decimals": 8, + "name": "Ctomorrow Platform", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xb850cac12ab85d4400db61ac78dc5fc2418b6868.png", + "aggregators": [ + "PancakeCoinMarketCap", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 4 + }, + "0x7a2277f34f275ded630deff758fbc818409ca36d": { + "address": "0x7a2277f34f275ded630deff758fbc818409ca36d", + "symbol": "OPTCM", + "decimals": 18, + "name": "Optimus", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x7a2277f34f275ded630deff758fbc818409ca36d.png", + "aggregators": [ + "PancakeCoinMarketCap", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 4 + }, + "0xb2ea51baa12c461327d12a2069d47b30e680b69d": { + "address": "0xb2ea51baa12c461327d12a2069d47b30e680b69d", + "symbol": "SMCW", + "decimals": 18, + "name": "Space Misfits", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xb2ea51baa12c461327d12a2069d47b30e680b69d.png", + "aggregators": [ + "PancakeCoinMarketCap", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 4 + }, + "0x9528cceb678b90daf02ca5ca45622d5cbaf58a30": { + "address": "0x9528cceb678b90daf02ca5ca45622d5cbaf58a30", + "symbol": "GCME", + "decimals": 9, + "name": "GoCryptoMe", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x9528cceb678b90daf02ca5ca45622d5cbaf58a30.png", + "aggregators": [ + "PancakeCoinMarketCap", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 4 + }, + "0xbe0d3526fc797583dada3f30bc390013062a048b": { + "address": "0xbe0d3526fc797583dada3f30bc390013062a048b", + "symbol": "PLN", + "decimals": 18, + "name": "PLEARN", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xbe0d3526fc797583dada3f30bc390013062a048b.png", + "aggregators": [ + "PancakeCoinMarketCap", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 4 + }, + "0x3b0e967ce7712ec68131a809db4f78ce9490e779": { + "address": "0x3b0e967ce7712ec68131a809db4f78ce9490e779", + "symbol": "SON", + "decimals": 18, + "name": "Souni", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x3b0e967ce7712ec68131a809db4f78ce9490e779.png", + "aggregators": [ + "PancakeCoinMarketCap", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 4 + }, + "0x8182ac1c5512eb67756a89c40fadb2311757bd32": { + "address": "0x8182ac1c5512eb67756a89c40fadb2311757bd32", + "symbol": "NTR", + "decimals": 18, + "name": "Nether", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x8182ac1c5512eb67756a89c40fadb2311757bd32.png", + "aggregators": [ + "PancakeCoinMarketCap", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 4 + }, + "0x9f3bcbe48e8b754f331dfc694a894e8e686ac31d": { + "address": "0x9f3bcbe48e8b754f331dfc694a894e8e686ac31d", + "symbol": "ACT", + "decimals": 18, + "name": "Acet", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x9f3bcbe48e8b754f331dfc694a894e8e686ac31d.png", + "aggregators": [ + "PancakeCoinMarketCap", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 4 + }, + "0xe8c93310af068aa50bd7bf0ebfa459df2a02ceba": { + "address": "0xe8c93310af068aa50bd7bf0ebfa459df2a02ceba", + "symbol": "MOON", + "decimals": 18, + "name": "HoneyMOON", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xe8c93310af068aa50bd7bf0ebfa459df2a02ceba.png", + "aggregators": [ + "PancakeCoinMarketCap", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 4 + }, + "0x36bfbb1d5b3c9b336f3d64976599b6020ca805f1": { + "address": "0x36bfbb1d5b3c9b336f3d64976599b6020ca805f1", + "symbol": "PSB", + "decimals": 18, + "name": "Planet Sandbox", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x36bfbb1d5b3c9b336f3d64976599b6020ca805f1.png", + "aggregators": [ + "PancakeCoinMarketCap", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 4 + }, + "0x83d8ea5a4650b68cd2b57846783d86df940f7458": { + "address": "0x83d8ea5a4650b68cd2b57846783d86df940f7458", + "symbol": "HUDI", + "decimals": 18, + "name": "Hudi", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x83d8ea5a4650b68cd2b57846783d86df940f7458.png", + "aggregators": [ + "PancakeCoinMarketCap", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 4 + }, + "0x31acfce536b824ad0739e8d7b27cefaa4b8e4673": { + "address": "0x31acfce536b824ad0739e8d7b27cefaa4b8e4673", + "symbol": "LKN", + "decimals": 18, + "name": "Lockness", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x31acfce536b824ad0739e8d7b27cefaa4b8e4673.png", + "aggregators": [ + "PancakeCoinMarketCap", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 4 + }, + "0x32f1518baace69e85b9e5ff844ebd617c52573ac": { + "address": "0x32f1518baace69e85b9e5ff844ebd617c52573ac", + "symbol": "DESU", + "decimals": 18, + "name": "Dexsport", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x32f1518baace69e85b9e5ff844ebd617c52573ac.png", + "aggregators": [ + "PancakeCoinMarketCap", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 4 + }, + "0x4c403b1879aa6a79ba9c599a393ccc5d9fd2e788": { + "address": "0x4c403b1879aa6a79ba9c599a393ccc5d9fd2e788", + "symbol": "AI", + "decimals": 9, + "name": "Artificial Intelligence", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x4c403b1879aa6a79ba9c599a393ccc5d9fd2e788.png", + "aggregators": ["PancakeCoinMarketCap", "Socket", "Rubic", "Rango"], + "occurrences": 4 + }, + "0xd2a3eec06719d5ac66248003b5488e02165dd2fa": { + "address": "0xd2a3eec06719d5ac66248003b5488e02165dd2fa", + "symbol": "PAXE", + "decimals": 18, + "name": "Paxe", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xd2a3eec06719d5ac66248003b5488e02165dd2fa.png", + "aggregators": [ + "PancakeCoinMarketCap", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 4 + }, + "0x9d0211c1b1a217a574cb55b0e9c367e56debeae0": { + "address": "0x9d0211c1b1a217a574cb55b0e9c367e56debeae0", + "symbol": "TURBO", + "decimals": 18, + "name": "TurboDEX", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x9d0211c1b1a217a574cb55b0e9c367e56debeae0.png", + "aggregators": [ + "PancakeCoinMarketCap", + "Socket", + "Rubic", + "Sonarwatch" + ], + "occurrences": 4 + }, + "0xab4e026a2f6f6265c29bbb4c565e66968e3d4962": { + "address": "0xab4e026a2f6f6265c29bbb4c565e66968e3d4962", + "symbol": "$MANIA", + "decimals": 18, + "name": "ScapesMania", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xab4e026a2f6f6265c29bbb4c565e66968e3d4962.png", + "aggregators": [ + "PancakeCoinMarketCap", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 4 + }, + "0x62694d43ccb9b64e76e38385d15e325c7712a735": { + "address": "0x62694d43ccb9b64e76e38385d15e325c7712a735", + "symbol": "WSM", + "decimals": 18, + "name": "Wall Street Memes", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x62694d43ccb9b64e76e38385d15e325c7712a735.png", + "aggregators": [ + "PancakeCoinMarketCap", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 4 + }, + "0xefa4cda666c6a1c03a38e4885266b019dec57662": { + "address": "0xefa4cda666c6a1c03a38e4885266b019dec57662", + "symbol": "ORBI", + "decimals": 18, + "name": "Orbital7", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xefa4cda666c6a1c03a38e4885266b019dec57662.png", + "aggregators": [ + "PancakeCoinMarketCap", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 4 + }, + "0x9200ce9cc03307e0d3a8da80dd0d416aea3e7a8b": { + "address": "0x9200ce9cc03307e0d3a8da80dd0d416aea3e7a8b", + "symbol": "BMX", + "decimals": 9, + "name": "BitMinerX", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x9200ce9cc03307e0d3a8da80dd0d416aea3e7a8b.png", + "aggregators": ["PancakeCoinMarketCap", "Socket", "Rubic", "Rango"], + "occurrences": 4 + }, + "0xe52a85f67d5a55a77d35193d963b7e1d94d1f2eb": { + "address": "0xe52a85f67d5a55a77d35193d963b7e1d94d1f2eb", + "symbol": "ATHX", + "decimals": 18, + "name": "Athena DexFi", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xe52a85f67d5a55a77d35193d963b7e1d94d1f2eb.png", + "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0x94498055eaf906aacdf939c53bfad73ea1a57edf": { + "address": "0x94498055eaf906aacdf939c53bfad73ea1a57edf", + "symbol": "SIR", + "decimals": 9, + "name": "Sir", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x94498055eaf906aacdf939c53bfad73ea1a57edf.png", + "aggregators": [ + "PancakeCoinMarketCap", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 4 + }, + "0xc4736f2611a62d545dc2d0d8f0766283617e6fcb": { + "address": "0xc4736f2611a62d545dc2d0d8f0766283617e6fcb", + "symbol": "GOAL", + "decimals": 18, + "name": "TopGoal", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xc4736f2611a62d545dc2d0d8f0766283617e6fcb.png", + "aggregators": [ + "PancakeCoinMarketCap", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 4 + }, + "0xbd6ceeef56985b608252c3651dd903a3fcc34910": { + "address": "0xbd6ceeef56985b608252c3651dd903a3fcc34910", + "symbol": "TWELVE", + "decimals": 18, + "name": "Twelve Zodiac", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xbd6ceeef56985b608252c3651dd903a3fcc34910.png", + "aggregators": [ + "PancakeCoinMarketCap", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 4 + }, + "0x208bf3e7da9639f1eaefa2de78c23396b0682025": { + "address": "0x208bf3e7da9639f1eaefa2de78c23396b0682025", + "symbol": "TAG", + "decimals": 18, + "name": "TAGGER", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x208bf3e7da9639f1eaefa2de78c23396b0682025.png", + "aggregators": ["PancakeExtended", "LiFi", "Rubic", "Squid"], + "occurrences": 4 + }, + "0xc4a1cc5ca8955a4650bdc109bddf110e33a1e344": { + "address": "0xc4a1cc5ca8955a4650bdc109bddf110e33a1e344", + "symbol": "RZUSD", + "decimals": 18, + "name": "RZUSD", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xc4a1cc5ca8955a4650bdc109bddf110e33a1e344.png", + "aggregators": ["CoinGecko", "Rubic", "Squid", "Rango"], + "occurrences": 4 + }, + "0x9959413ec3eb6cee73ad16e6cd531352c9ce816f": { + "address": "0x9959413ec3eb6cee73ad16e6cd531352c9ce816f", + "symbol": "ZAI", + "decimals": 18, + "name": "ZAYA", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x9959413ec3eb6cee73ad16e6cd531352c9ce816f.png", + "aggregators": ["CoinGecko", "Socket", "Rubic", "Rango"], + "occurrences": 4 + }, + "0xbb1106c7deb7cc60efa51391760b14aed8cb5bed": { + "address": "0xbb1106c7deb7cc60efa51391760b14aed8cb5bed", + "symbol": "CAR", + "decimals": 18, + "name": "Car", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xbb1106c7deb7cc60efa51391760b14aed8cb5bed.png", + "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0xfe020130ea312be3efe53ed11e9d4d254b165f49": { + "address": "0xfe020130ea312be3efe53ed11e9d4d254b165f49", + "symbol": "BSAI", + "decimals": 18, + "name": "Bitcoin Silver AI", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xfe020130ea312be3efe53ed11e9d4d254b165f49.png", + "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0x4fa7c69a7b69f8bc48233024d546bc299d6b03bf": { + "address": "0x4fa7c69a7b69f8bc48233024d546bc299d6b03bf", + "symbol": "QUQ", + "decimals": 18, + "name": "Quq", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x4fa7c69a7b69f8bc48233024d546bc299d6b03bf.png", + "aggregators": ["PancakeExtended", "Rubic", "Squid", "Sonarwatch"], + "occurrences": 4 + }, + "0xdfa86a77c9c99c2a1d33e56f42081b40fc3bdfcc": { + "address": "0xdfa86a77c9c99c2a1d33e56f42081b40fc3bdfcc", + "symbol": "POGAI", + "decimals": 18, + "name": "POGAI (BSC)", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xdfa86a77c9c99c2a1d33e56f42081b40fc3bdfcc.png", + "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0x0c8382719ef242cae2247e4decb2891fbf699818": { + "address": "0x0c8382719ef242cae2247e4decb2891fbf699818", + "symbol": "BDCA", + "decimals": 18, + "name": "BDCA Token", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x0c8382719ef242cae2247e4decb2891fbf699818.png", + "aggregators": ["Metamask", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0x6d99031eeff9e38f65f6e473897805992c9ca80d": { + "address": "0x6d99031eeff9e38f65f6e473897805992c9ca80d", + "symbol": "BNC", + "decimals": 18, + "name": "BNC", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x6d99031eeff9e38f65f6e473897805992c9ca80d.png", + "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0x0dcd05357b83bf100e668f152bf14bf96b679cd1": { + "address": "0x0dcd05357b83bf100e668f152bf14bf96b679cd1", + "symbol": "PEPEMUSK", + "decimals": 18, + "name": "PepeMusk", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x0dcd05357b83bf100e668f152bf14bf96b679cd1.png", + "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0x252817c5dd2e90bca477d5975724418cbca49b60": { + "address": "0x252817c5dd2e90bca477d5975724418cbca49b60", + "symbol": "NEZHA", + "decimals": 18, + "name": "NEZHA", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x252817c5dd2e90bca477d5975724418cbca49b60.png", + "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0x08e8ac8c4bca64503f774d2c40c911e8a3ffcc12": { + "address": "0x08e8ac8c4bca64503f774d2c40c911e8a3ffcc12", + "symbol": "TCC", + "decimals": 18, + "name": "TCC", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x08e8ac8c4bca64503f774d2c40c911e8a3ffcc12.png", + "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0xe93da37413d99b304f55ec3826032a40ae657f8d": { + "address": "0xe93da37413d99b304f55ec3826032a40ae657f8d", + "symbol": "MPS", + "decimals": 18, + "name": "Meupass", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xe93da37413d99b304f55ec3826032a40ae657f8d.png", + "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0xc9bfb93d75645c4681bb63794abf1acad44725e7": { + "address": "0xc9bfb93d75645c4681bb63794abf1acad44725e7", + "symbol": "TRIP", + "decimals": 18, + "name": "Trip ", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xc9bfb93d75645c4681bb63794abf1acad44725e7.png", + "aggregators": ["CoinGecko", "Rubic", "Squid", "Rango"], + "occurrences": 4 + }, + "0xb20568b5de8abe668062710d785d292f686541e6": { + "address": "0xb20568b5de8abe668062710d785d292f686541e6", + "symbol": "MGTAI", + "decimals": 18, + "name": "Moongate Fun", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xb20568b5de8abe668062710d785d292f686541e6.png", + "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0x3199a64bc8aabdfd9a3937a346cc59c3d81d8a9a": { + "address": "0x3199a64bc8aabdfd9a3937a346cc59c3d81d8a9a", + "symbol": "MUBARAKAH", + "decimals": 18, + "name": "Mubarakah", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x3199a64bc8aabdfd9a3937a346cc59c3d81d8a9a.png", + "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0x1ea3ffc43ee291a4373418286e9b001aebe14444": { + "address": "0x1ea3ffc43ee291a4373418286e9b001aebe14444", + "symbol": "🔶", + "decimals": 18, + "name": "🔶", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x1ea3ffc43ee291a4373418286e9b001aebe14444.png", + "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0x661af369690a8f5591cc0df7d581c83d1a6e4444": { + "address": "0x661af369690a8f5591cc0df7d581c83d1a6e4444", + "symbol": "4444", + "decimals": 18, + "name": "4444", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x661af369690a8f5591cc0df7d581c83d1a6e4444.png", + "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0x541eec85ef7452d16814d32ab555df33f0e4cead": { + "address": "0x541eec85ef7452d16814d32ab555df33f0e4cead", + "symbol": "BIAO", + "decimals": 18, + "name": "Biao on BNBChain", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x541eec85ef7452d16814d32ab555df33f0e4cead.png", + "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0xd438b82543fb109f34575c825edaeefc98f1f2b4": { + "address": "0xd438b82543fb109f34575c825edaeefc98f1f2b4", + "symbol": "ICECREAM", + "decimals": 18, + "name": "IceCream AI", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xd438b82543fb109f34575c825edaeefc98f1f2b4.png", + "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0xe819c2ae87f6bb322f1571f41c2fbd2c15fec40b": { + "address": "0xe819c2ae87f6bb322f1571f41c2fbd2c15fec40b", + "symbol": "ABC", + "decimals": 18, + "name": "ABC", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xe819c2ae87f6bb322f1571f41c2fbd2c15fec40b.png", + "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0x39df92f325938c610f4e4a04f7b756145ebe8804": { + "address": "0x39df92f325938c610f4e4a04f7b756145ebe8804", + "symbol": "DEXNET", + "decimals": 18, + "name": "DexNet", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x39df92f325938c610f4e4a04f7b756145ebe8804.png", + "aggregators": [ + "PancakeCoinMarketCap", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 4 + }, + "0x16120ef3d353224222b0a257ad15b5eaec0525c5": { + "address": "0x16120ef3d353224222b0a257ad15b5eaec0525c5", + "symbol": "BEBE", + "decimals": 6, + "name": "BEBE DOG", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x16120ef3d353224222b0a257ad15b5eaec0525c5.png", + "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0xa4e8399482ed8f3f7216263d94ab647b8cfc22ec": { + "address": "0xa4e8399482ed8f3f7216263d94ab647b8cfc22ec", + "symbol": "PLAYFI", + "decimals": 18, + "name": "PlayFi Studio", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xa4e8399482ed8f3f7216263d94ab647b8cfc22ec.png", + "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0x1865dc79a9e4b5751531099057d7ee801033d268": { + "address": "0x1865dc79a9e4b5751531099057d7ee801033d268", + "symbol": "LKI", + "decimals": 18, + "name": "Laika AI", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x1865dc79a9e4b5751531099057d7ee801033d268.png", + "aggregators": [ + "PancakeCoinMarketCap", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 4 + }, + "0x5f78f4bfcb2b43bc174fe16a69a13945cefa2978": { + "address": "0x5f78f4bfcb2b43bc174fe16a69a13945cefa2978", + "symbol": "XR", + "decimals": 18, + "name": "Xraders", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x5f78f4bfcb2b43bc174fe16a69a13945cefa2978.png", + "aggregators": [ + "PancakeCoinMarketCap", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 4 + }, + "0x9cc484ded7a7851a03f05a03e8d19eb5f5a73f20": { + "address": "0x9cc484ded7a7851a03f05a03e8d19eb5f5a73f20", + "symbol": "BKOK", + "decimals": 18, + "name": "BKOKFi", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x9cc484ded7a7851a03f05a03e8d19eb5f5a73f20.png", + "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0xd34984d7bff492dc3b2336eabd1758ce16ddfc2d": { + "address": "0xd34984d7bff492dc3b2336eabd1758ce16ddfc2d", + "symbol": "AVC", + "decimals": 18, + "name": "AVC", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xd34984d7bff492dc3b2336eabd1758ce16ddfc2d.png", + "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0x0c4ac8952c28e2e7fe22033c8d2f1263372d301d": { + "address": "0x0c4ac8952c28e2e7fe22033c8d2f1263372d301d", + "symbol": "APRA", + "decimals": 18, + "name": "Apraemio", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x0c4ac8952c28e2e7fe22033c8d2f1263372d301d.png", + "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0x014d05725f9d95bc371a184373fab4ed0bd577ee": { + "address": "0x014d05725f9d95bc371a184373fab4ed0bd577ee", + "symbol": "GOR", + "decimals": 18, + "name": "Gold Reserve", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x014d05725f9d95bc371a184373fab4ed0bd577ee.png", + "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0x4f2760b32720f013e900dc92f65480137391199b": { + "address": "0x4f2760b32720f013e900dc92f65480137391199b", + "symbol": "SUSD1+", + "decimals": 18, + "name": "sUSD1+", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x4f2760b32720f013e900dc92f65480137391199b.png", + "aggregators": ["PancakeExtended", "LiFi", "Rubic", "Rango"], + "occurrences": 4 + }, + "0xb142417eb86799115fe353675fca7eb8b59ee0df": { + "address": "0xb142417eb86799115fe353675fca7eb8b59ee0df", + "symbol": "MSAI", + "decimals": 18, + "name": "Miss AI", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xb142417eb86799115fe353675fca7eb8b59ee0df.png", + "aggregators": ["PancakeExtended", "LiFi", "Rubic", "Rango"], + "occurrences": 4 + }, + "0x503fa24b7972677f00c4618e5fbe237780c1df53": { + "address": "0x503fa24b7972677f00c4618e5fbe237780c1df53", + "symbol": "KILO", + "decimals": 18, + "name": "KiloEx", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x503fa24b7972677f00c4618e5fbe237780c1df53.png", + "aggregators": ["PancakeExtended", "LiFi", "Rubic", "Sonarwatch"], + "occurrences": 4 + }, + "0x6fd2854cd1b05b8eb5f6d25c714184a92fedaf4f": { + "address": "0x6fd2854cd1b05b8eb5f6d25c714184a92fedaf4f", + "symbol": "O-MEGAX", + "decimals": 18, + "name": "O-megax", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x6fd2854cd1b05b8eb5f6d25c714184a92fedaf4f.png", + "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0xaff713b62e642b25898e24d5be6561f863582144": { + "address": "0xaff713b62e642b25898e24d5be6561f863582144", + "symbol": "SURV", + "decimals": 18, + "name": "Survarium", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xaff713b62e642b25898e24d5be6561f863582144.png", + "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0x59fbd938047ed48707c71f886bf053ce18c377f8": { + "address": "0x59fbd938047ed48707c71f886bf053ce18c377f8", + "symbol": "CAMEL", + "decimals": 18, + "name": "CAMEL", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x59fbd938047ed48707c71f886bf053ce18c377f8.png", + "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0x36fdebeb2bb7538d5559f1d2968307e86eb04444": { + "address": "0x36fdebeb2bb7538d5559f1d2968307e86eb04444", + "symbol": "CYBERWISH", + "decimals": 18, + "name": "CyberWishing", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x36fdebeb2bb7538d5559f1d2968307e86eb04444.png", + "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0x002d0619eab294d21fef071f8b780cae7e999999": { + "address": "0x002d0619eab294d21fef071f8b780cae7e999999", + "symbol": "PLAYFUN", + "decimals": 18, + "name": "PLAYFUN", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x002d0619eab294d21fef071f8b780cae7e999999.png", + "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0x999e62f80d2c8ec8adfbf041b06239c6ae6d8492": { + "address": "0x999e62f80d2c8ec8adfbf041b06239c6ae6d8492", + "symbol": "ROOMCON", + "decimals": 18, + "name": "ROOMCON", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x999e62f80d2c8ec8adfbf041b06239c6ae6d8492.png", + "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0xb849c4d843769d42812fb600b1bcc8a6ba843466": { + "address": "0xb849c4d843769d42812fb600b1bcc8a6ba843466", + "symbol": "UPY", + "decimals": 18, + "name": "Upstarty", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xb849c4d843769d42812fb600b1bcc8a6ba843466.png", + "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0x072ef16a59bdc14e25f33ff4509870660548c107": { + "address": "0x072ef16a59bdc14e25f33ff4509870660548c107", + "symbol": "HATCH", + "decimals": 18, + "name": "Hatch", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x072ef16a59bdc14e25f33ff4509870660548c107.png", + "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0x97b17ac9a0c4bf03cf3b9ed2ee6e397fb319705b": { + "address": "0x97b17ac9a0c4bf03cf3b9ed2ee6e397fb319705b", + "symbol": "BNBULL", + "decimals": 9, + "name": "BNBULL", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x97b17ac9a0c4bf03cf3b9ed2ee6e397fb319705b.png", + "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0x9c8b5ca345247396bdfac0395638ca9045c6586e": { + "address": "0x9c8b5ca345247396bdfac0395638ca9045c6586e", + "symbol": "RWA", + "decimals": 18, + "name": "Allo", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x9c8b5ca345247396bdfac0395638ca9045c6586e.png", + "aggregators": ["PancakeExtended", "Socket", "Rubic", "Sonarwatch"], + "occurrences": 4 + }, + "0x0688977ae5b10075f46519063fd2f03adc052c1f": { + "address": "0x0688977ae5b10075f46519063fd2f03adc052c1f", + "symbol": "$5SCAPE", + "decimals": 6, + "name": "5th Scape", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x0688977ae5b10075f46519063fd2f03adc052c1f.png", + "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0xfc35bf79270bcad22ce7dd5651aa2435fce9b7c5": { + "address": "0xfc35bf79270bcad22ce7dd5651aa2435fce9b7c5", + "symbol": "BUSS", + "decimals": 18, + "name": "BOOKUSD SHARE", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xfc35bf79270bcad22ce7dd5651aa2435fce9b7c5.png", + "aggregators": ["CoinGecko", "LiFi", "Rubic", "Rango"], + "occurrences": 4 + }, + "0x058240afd2df517fad59baa3a39c6ae28cf37f32": { + "address": "0x058240afd2df517fad59baa3a39c6ae28cf37f32", + "symbol": "LTCIC", + "decimals": 18, + "name": "LTCIC", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x058240afd2df517fad59baa3a39c6ae28cf37f32.png", + "aggregators": ["PancakeExtended", "Rubic", "Squid", "Rango"], + "occurrences": 4 + }, + "0x5519a479da8ce3af7f373c16f14870bbeafda265": { + "address": "0x5519a479da8ce3af7f373c16f14870bbeafda265", + "symbol": "BNBUSD", + "decimals": 18, + "name": "bnb USD", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x5519a479da8ce3af7f373c16f14870bbeafda265.png", + "aggregators": ["PancakeExtended", "LiFi", "Rubic", "Rango"], + "occurrences": 4 + }, + "0x395603b95d721084c1917affdd06d78e559fa94d": { + "address": "0x395603b95d721084c1917affdd06d78e559fa94d", + "symbol": "SVSA", + "decimals": 18, + "name": "SavannaSurvival", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x395603b95d721084c1917affdd06d78e559fa94d.png", + "aggregators": ["PancakeExtended", "LiFi", "Rubic", "Rango"], + "occurrences": 4 + }, + "0x19c018e13cff682e729cc7b5fb68c8a641bf98a4": { + "address": "0x19c018e13cff682e729cc7b5fb68c8a641bf98a4", + "symbol": "BURN", + "decimals": 18, + "name": "BurnedFi", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x19c018e13cff682e729cc7b5fb68c8a641bf98a4.png", + "aggregators": ["PancakeCoinMarketCap", "Socket", "Rubic", "Rango"], + "occurrences": 4 + }, + "0xab725d0a10c3f24725c89f5765ae5794a26c1336": { + "address": "0xab725d0a10c3f24725c89f5765ae5794a26c1336", + "symbol": "$INR", + "decimals": 18, + "name": "Inery", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xab725d0a10c3f24725c89f5765ae5794a26c1336.png", + "aggregators": [ + "PancakeCoinMarketCap", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 4 + }, + "0x0733618ab62eeec815f2d1739b7a50bf9e74d8a2": { + "address": "0x0733618ab62eeec815f2d1739b7a50bf9e74d8a2", + "symbol": "PMG", + "decimals": 18, + "name": "Pomerium Ecosystem Token", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x0733618ab62eeec815f2d1739b7a50bf9e74d8a2.png", + "aggregators": [ + "PancakeCoinMarketCap", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 4 + }, + "0xd15c444f1199ae72795eba15e8c1db44e47abf62": { + "address": "0xd15c444f1199ae72795eba15e8c1db44e47abf62", + "symbol": "TENFI", + "decimals": 18, + "name": "TEN", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xd15c444f1199ae72795eba15e8c1db44e47abf62.png", + "aggregators": [ + "PancakeCoinMarketCap", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 4 + }, + "0x722cb8e411d40942c0f581b919ecce3e4d759602": { + "address": "0x722cb8e411d40942c0f581b919ecce3e4d759602", + "symbol": "OSEAN", + "decimals": 18, + "name": "Osean", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x722cb8e411d40942c0f581b919ecce3e4d759602.png", + "aggregators": ["PancakeCoinMarketCap", "Socket", "Rubic", "Rango"], + "occurrences": 4 + }, + "0x302dfaf2cdbe51a18d97186a7384e87cf599877d": { + "address": "0x302dfaf2cdbe51a18d97186a7384e87cf599877d", + "symbol": "LYN", + "decimals": 18, + "name": "Everlyn Token", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x302dfaf2cdbe51a18d97186a7384e87cf599877d.png", + "aggregators": ["PancakeExtended", "Rubic", "Squid", "Rango"], + "occurrences": 4 + }, + "0x99aa29ac023057951781dc5d1784e9a4c362ce23": { + "address": "0x99aa29ac023057951781dc5d1784e9a4c362ce23", + "symbol": "CWS", + "decimals": 18, + "name": "Seascape Crowns", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x99aa29ac023057951781dc5d1784e9a4c362ce23.png", + "aggregators": [ + "PancakeCoinMarketCap", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 4 + }, + "0x4027d91ecd3140e53ae743d657549adfeebb27ab": { + "address": "0x4027d91ecd3140e53ae743d657549adfeebb27ab", + "symbol": "CLEG", + "decimals": 18, + "name": "Chain of Legends", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x4027d91ecd3140e53ae743d657549adfeebb27ab.png", + "aggregators": [ + "PancakeCoinMarketCap", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 4 + }, + "0x85375d3e9c4a39350f1140280a8b0de6890a40e7": { + "address": "0x85375d3e9c4a39350f1140280a8b0de6890a40e7", + "symbol": "SIGMA", + "decimals": 18, + "name": "Sigma", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x85375d3e9c4a39350f1140280a8b0de6890a40e7.png", + "aggregators": ["PancakeExtended", "Socket", "Rubic", "Rango"], + "occurrences": 4 + }, + "0x9ec02756a559700d8d9e79ece56809f7bcc5dc27": { + "address": "0x9ec02756a559700d8d9e79ece56809f7bcc5dc27", + "symbol": "WHY", + "decimals": 18, + "name": "WHY", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x9ec02756a559700d8d9e79ece56809f7bcc5dc27.png", + "aggregators": ["PancakeExtended", "Rubic", "Squid", "Sonarwatch"], + "occurrences": 4 + }, + "0x450593bf7f2d7e559e38496cfb06bdce5e963795": { + "address": "0x450593bf7f2d7e559e38496cfb06bdce5e963795", + "symbol": "BCCOIN", + "decimals": 18, + "name": "BlackCardCoin", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x450593bf7f2d7e559e38496cfb06bdce5e963795.png", + "aggregators": [ + "PancakeCoinMarketCap", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 4 + }, + "0xa49fa5e8106e2d6d6a69e78df9b6a20aab9c4444": { + "address": "0xa49fa5e8106e2d6d6a69e78df9b6a20aab9c4444", + "symbol": "DONKEY", + "decimals": 18, + "name": "donkey", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xa49fa5e8106e2d6d6a69e78df9b6a20aab9c4444.png", + "aggregators": ["PancakeExtended", "LiFi", "Rubic", "Rango"], + "occurrences": 4 + }, + "0xaf48b7e315a52518cfbf7d96c455d9dfad94cb48": { + "address": "0xaf48b7e315a52518cfbf7d96c455d9dfad94cb48", + "symbol": "IOST", + "decimals": 18, + "name": "IOST", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xaf48b7e315a52518cfbf7d96c455d9dfad94cb48.png", + "aggregators": ["CoinGecko", "LiFi", "Rubic", "Rango"], + "occurrences": 4 + }, + "0x582a560b9f8eaa5b6c889d7674532bcd61f066ec": { + "address": "0x582a560b9f8eaa5b6c889d7674532bcd61f066ec", + "symbol": "HAI", + "decimals": 18, + "name": "HAI", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x582a560b9f8eaa5b6c889d7674532bcd61f066ec.png", + "aggregators": ["CoinGecko", "Socket", "Rubic", "Rango"], + "occurrences": 4 + }, + "0x2645d5f59d952ef2317c8e0aaa5a61c392ccd44d": { + "address": "0x2645d5f59d952ef2317c8e0aaa5a61c392ccd44d", + "symbol": "UFT", + "decimals": 18, + "name": "UniLend Finance Token", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x2645d5f59d952ef2317c8e0aaa5a61c392ccd44d.png", + "aggregators": ["PancakeCoinMarketCap", "Socket", "Rubic", "Rango"], + "occurrences": 4 + }, + "0x3c1b057cb7aceb4f2c4d889a29febec30a6a3146": { + "address": "0x3c1b057cb7aceb4f2c4d889a29febec30a6a3146", + "symbol": "PBR", + "decimals": 18, + "name": "PolkaBridge", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x3c1b057cb7aceb4f2c4d889a29febec30a6a3146.png", + "aggregators": ["CoinGecko", "Socket", "Rubic", "Sonarwatch"], + "occurrences": 4 + }, + "0x1e8150ea46e2a7fbb795459198fbb4b35715196c": { + "address": "0x1e8150ea46e2a7fbb795459198fbb4b35715196c", + "symbol": "SHIH", + "decimals": 18, + "name": "Shih Tzu", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x1e8150ea46e2a7fbb795459198fbb4b35715196c.png", + "aggregators": [ + "PancakeCoinMarketCap", + "Socket", + "Rubic", + "Sonarwatch" + ], + "occurrences": 4 + }, + "0x22648c12acd87912ea1710357b1302c6a4154ebc": { + "address": "0x22648c12acd87912ea1710357b1302c6a4154ebc", + "symbol": "WCHI", + "decimals": 8, + "name": "XAYA", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x22648c12acd87912ea1710357b1302c6a4154ebc.png", + "aggregators": [ + "PancakeCoinMarketCap", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 4 + }, + "0xcd7c5025753a49f1881b31c48caa7c517bb46308": { + "address": "0xcd7c5025753a49f1881b31c48caa7c517bb46308", + "symbol": "RAVEN", + "decimals": 18, + "name": "Raven Protocol", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xcd7c5025753a49f1881b31c48caa7c517bb46308.png", + "aggregators": [ + "PancakeCoinMarketCap", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 4 + }, + "0xde9a73272bc2f28189ce3c243e36fafda2485212": { + "address": "0xde9a73272bc2f28189ce3c243e36fafda2485212", + "symbol": "CAN", + "decimals": 18, + "name": "Channels", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xde9a73272bc2f28189ce3c243e36fafda2485212.png", + "aggregators": [ + "PancakeCoinMarketCap", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 4 + }, + "0xb75ba7ef520a5bd0a5d01108060be269642c4601": { + "address": "0xb75ba7ef520a5bd0a5d01108060be269642c4601", + "symbol": "TRADE", + "decimals": 18, + "name": "Polytrade", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xb75ba7ef520a5bd0a5d01108060be269642c4601.png", + "aggregators": ["CoinGecko", "LiFi", "Rubic", "Rango"], + "occurrences": 4 + }, + "0x410a56541bd912f9b60943fcb344f1e3d6f09567": { + "address": "0x410a56541bd912f9b60943fcb344f1e3d6f09567", + "symbol": "BTCMT", + "decimals": 18, + "name": "Minto", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x410a56541bd912f9b60943fcb344f1e3d6f09567.png", + "aggregators": [ + "PancakeCoinMarketCap", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 4 + }, + "0x94025780a1ab58868d9b2dbbb775f44b32e8e6e5": { + "address": "0x94025780a1ab58868d9b2dbbb775f44b32e8e6e5", + "symbol": "BETS", + "decimals": 18, + "name": "BetSwirl", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x94025780a1ab58868d9b2dbbb775f44b32e8e6e5.png", + "aggregators": [ + "PancakeCoinMarketCap", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 4 + }, + "0x0d3843f92d622468ba67df5a6a4149b484a75af3": { + "address": "0x0d3843f92d622468ba67df5a6a4149b484a75af3", + "symbol": "DINGER", + "decimals": 9, + "name": "Dinger Token", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x0d3843f92d622468ba67df5a6a4149b484a75af3.png", + "aggregators": ["PancakeCoinMarketCap", "Socket", "Rubic", "Rango"], + "occurrences": 4 + }, + "0x1785113910847770290f5f840b4c74fc46451201": { + "address": "0x1785113910847770290f5f840b4c74fc46451201", + "symbol": "WELT", + "decimals": 18, + "name": "Fabwelt", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x1785113910847770290f5f840b4c74fc46451201.png", + "aggregators": [ + "PancakeCoinMarketCap", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 4 + }, + "0x40fed5691e547885cabd7a2990de719dcc8497fc": { + "address": "0x40fed5691e547885cabd7a2990de719dcc8497fc", + "symbol": "SHA", + "decimals": 18, + "name": "Safe Haven", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x40fed5691e547885cabd7a2990de719dcc8497fc.png", + "aggregators": [ + "PancakeCoinMarketCap", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 4 + }, + "0x4b85a666dec7c959e88b97814e46113601b07e57": { + "address": "0x4b85a666dec7c959e88b97814e46113601b07e57", + "symbol": "GOC", + "decimals": 18, + "name": "GoCrypto", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x4b85a666dec7c959e88b97814e46113601b07e57.png", + "aggregators": [ + "PancakeCoinMarketCap", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 4 + }, + "0x510ad22d8c956dcc20f68932861f54a591001283": { + "address": "0x510ad22d8c956dcc20f68932861f54a591001283", + "symbol": "SWEAT", + "decimals": 18, + "name": "Sweat Economy", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x510ad22d8c956dcc20f68932861f54a591001283.png", + "aggregators": ["PancakeExtended", "LiFi", "Rubic", "Sonarwatch"], + "occurrences": 4 + }, + "0x30807d3b851a31d62415b8bb7af7dca59390434a": { + "address": "0x30807d3b851a31d62415b8bb7af7dca59390434a", + "symbol": "RADIO", + "decimals": 18, + "name": "RadioShack", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x30807d3b851a31d62415b8bb7af7dca59390434a.png", + "aggregators": [ + "PancakeCoinMarketCap", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 4 + }, + "0x6a2608dabe09bc1128eec7275b92dfb939d5db3f": { + "address": "0x6a2608dabe09bc1128eec7275b92dfb939d5db3f", + "symbol": "TOSHI", + "decimals": 18, + "name": "Toshi", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x6a2608dabe09bc1128eec7275b92dfb939d5db3f.png", + "aggregators": ["PancakeExtended", "LiFi", "Rubic", "Rango"], + "occurrences": 4 + }, + "0x5668a83b46016b494a30dd14066a451e5417a8b8": { + "address": "0x5668a83b46016b494a30dd14066a451e5417a8b8", + "symbol": "ULTIMA", + "decimals": 6, + "name": "Ultima", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x5668a83b46016b494a30dd14066a451e5417a8b8.png", + "aggregators": ["CoinGecko", "Rubic", "Squid", "Rango"], + "occurrences": 4 + }, + "0xcdf937995a55a9ab551d81b463ac0f7f02795368": { + "address": "0xcdf937995a55a9ab551d81b463ac0f7f02795368", + "symbol": "VSC", + "decimals": 18, + "name": "Vyvo Smart Chain", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xcdf937995a55a9ab551d81b463ac0f7f02795368.png", + "aggregators": [ + "PancakeCoinMarketCap", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 4 + }, + "0x27f16d9a5095b763baeadd7dd78e83288af29cf4": { + "address": "0x27f16d9a5095b763baeadd7dd78e83288af29cf4", + "symbol": "YOURAI", + "decimals": 18, + "name": "YOUR AI", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x27f16d9a5095b763baeadd7dd78e83288af29cf4.png", + "aggregators": [ + "PancakeCoinMarketCap", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 4 + }, + "0xb4818bb69478730ef4e33cc068dd94278e2766cb": { + "address": "0xb4818bb69478730ef4e33cc068dd94278e2766cb", + "symbol": "SATUSD", + "decimals": 18, + "name": "Satoshi Stablecoin V2", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xb4818bb69478730ef4e33cc068dd94278e2766cb.png", + "aggregators": ["PancakeExtended", "LiFi", "Rubic", "Rango"], + "occurrences": 4 + }, + "0x8fb238058e71f828f505582e65b1d14f8cf52067": { + "address": "0x8fb238058e71f828f505582e65b1d14f8cf52067", + "symbol": "D", + "decimals": 6, + "name": "Dar Open Network", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x8fb238058e71f828f505582e65b1d14f8cf52067.png", + "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0x24fcfc492c1393274b6bcd568ac9e225bec93584": { + "address": "0x24fcfc492c1393274b6bcd568ac9e225bec93584", + "symbol": "MAVIA", + "decimals": 18, + "name": "Heroes of Mavia", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x24fcfc492c1393274b6bcd568ac9e225bec93584.png", + "aggregators": ["PancakeExtended", "LiFi", "Rubic", "Rango"], + "occurrences": 4 + }, + "0x0b6f3ea2814f3fff804ba5d5c237aebbc364fba9": { + "address": "0x0b6f3ea2814f3fff804ba5d5c237aebbc364fba9", + "symbol": "UNA", + "decimals": 18, + "name": "Unagi Token", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x0b6f3ea2814f3fff804ba5d5c237aebbc364fba9.png", + "aggregators": [ + "PancakeCoinMarketCap", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 4 + }, + "0xdac991621fd8048d9f235324780abd6c3ad26421": { + "address": "0xdac991621fd8048d9f235324780abd6c3ad26421", + "symbol": "ZRC", + "decimals": 18, + "name": "Zircuit", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xdac991621fd8048d9f235324780abd6c3ad26421.png", + "aggregators": ["PancakeExtended", "LiFi", "Socket", "Rubic"], + "occurrences": 4 + }, + "0xe50e3d1a46070444f44df911359033f2937fcc13": { + "address": "0xe50e3d1a46070444f44df911359033f2937fcc13", + "symbol": "SQD", + "decimals": 18, + "name": "Subsquid", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xe50e3d1a46070444f44df911359033f2937fcc13.png", + "aggregators": ["PancakeExtended", "1inch", "LiFi", "Rubic"], + "occurrences": 4 + }, + "0x3a1f0ca49314fce2211792c7fa60ac97ab217cdc": { + "address": "0x3a1f0ca49314fce2211792c7fa60ac97ab217cdc", + "symbol": "APAD", + "decimals": 18, + "name": "AlphPad", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x3a1f0ca49314fce2211792c7fa60ac97ab217cdc.png", + "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0x91f9cc2649ac70a071602cade9b0c1a5868af51d": { + "address": "0x91f9cc2649ac70a071602cade9b0c1a5868af51d", + "symbol": "WXTZ", + "decimals": 18, + "name": "Wrapped XTZ", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x91f9cc2649ac70a071602cade9b0c1a5868af51d.png", + "aggregators": ["CoinGecko", "LiFi", "Socket", "Rubic"], + "occurrences": 4 + }, + "0x4254813524695def4163a169e901f3d7a1a55429": { + "address": "0x4254813524695def4163a169e901f3d7a1a55429", + "symbol": "WSTUSR", + "decimals": 18, + "name": "WSTUSR", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x4254813524695def4163a169e901f3d7a1a55429.png", + "aggregators": ["CoinGecko", "Socket", "Rubic", "Rango"], + "occurrences": 4 + }, + "0x9a4a67721573f2c9209dfff972c52be4e3f6642e": { + "address": "0x9a4a67721573f2c9209dfff972c52be4e3f6642e", + "symbol": "GPS", + "decimals": 18, + "name": "GoPlus Security", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x9a4a67721573f2c9209dfff972c52be4e3f6642e.png", + "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0x64748ea3e31d0b7916f0ff91b017b9f404ded8ef": { + "address": "0x64748ea3e31d0b7916f0ff91b017b9f404ded8ef", + "symbol": "CUSDO", + "decimals": 18, + "name": "Compounding Open Dollar", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x64748ea3e31d0b7916f0ff91b017b9f404ded8ef.png", + "aggregators": ["PancakeExtended", "LiFi", "Rubic", "Rango"], + "occurrences": 4 + }, + "0xb42fc163f95332552a824020f15ed81ee7f0ce78": { + "address": "0xb42fc163f95332552a824020f15ed81ee7f0ce78", + "symbol": "DAWAE", + "decimals": 9, + "name": "Dawae", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xb42fc163f95332552a824020f15ed81ee7f0ce78.png", + "aggregators": ["CoinGecko", "Socket", "Rubic", "Rango"], + "occurrences": 4 + }, + "0xc9d23ed2adb0f551369946bd377f8644ce1ca5c4": { + "address": "0xc9d23ed2adb0f551369946bd377f8644ce1ca5c4", + "symbol": "HYPER", + "decimals": 18, + "name": "Hyperlane", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xc9d23ed2adb0f551369946bd377f8644ce1ca5c4.png", + "aggregators": ["PancakeExtended", "LiFi", "Socket", "Rubic"], + "occurrences": 4 + }, + "0x389ad4bb96d0d6ee5b6ef0efaf4b7db0ba2e02a0": { + "address": "0x389ad4bb96d0d6ee5b6ef0efaf4b7db0ba2e02a0", + "symbol": "LA", + "decimals": 18, + "name": "Lagrange", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x389ad4bb96d0d6ee5b6ef0efaf4b7db0ba2e02a0.png", + "aggregators": ["PancakeExtended", "Socket", "Rubic", "Rango"], + "occurrences": 4 + }, + "0x09d4214c03d01f49544c0448dbe3a27f768f2b34": { + "address": "0x09d4214c03d01f49544c0448dbe3a27f768f2b34", + "symbol": "RUSD", + "decimals": 18, + "name": "Reservoir Stablecoin", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x09d4214c03d01f49544c0448dbe3a27f768f2b34.png", + "aggregators": ["CoinGecko", "LiFi", "Socket", "Rubic"], + "occurrences": 4 + }, + "0xfed13d0c40790220fbde712987079eda1ed75c51": { + "address": "0xfed13d0c40790220fbde712987079eda1ed75c51", + "symbol": "BTR", + "decimals": 18, + "name": "BTR token", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xfed13d0c40790220fbde712987079eda1ed75c51.png", + "aggregators": ["PancakeExtended", "LiFi", "Socket", "Rubic"], + "occurrences": 4 + }, + "0x1219c409fabe2c27bd0d1a565daeed9bd9f271de": { + "address": "0x1219c409fabe2c27bd0d1a565daeed9bd9f271de", + "symbol": "TAC", + "decimals": 18, + "name": "TAC Token", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x1219c409fabe2c27bd0d1a565daeed9bd9f271de.png", + "aggregators": ["PancakeExtended", "LiFi", "Rubic", "Rango"], + "occurrences": 4 + }, + "0xa227cc36938f0c9e09ce0e64dfab226cad739447": { + "address": "0xa227cc36938f0c9e09ce0e64dfab226cad739447", + "symbol": "OPEN", + "decimals": 18, + "name": "OPEN", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xa227cc36938f0c9e09ce0e64dfab226cad739447.png", + "aggregators": ["PancakeExtended", "LiFi", "Socket", "Rubic"], + "occurrences": 4 + }, + "0x7313ea16493b2f55054df0131a3a14b043ec8992": { + "address": "0x7313ea16493b2f55054df0131a3a14b043ec8992", + "symbol": "MSTRON", + "decimals": 18, + "name": "MicroStrategy (Ondo Tokenized)", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x7313ea16493b2f55054df0131a3a14b043ec8992.png", + "aggregators": ["CoinGecko", "Rubic", "Rango", "Ondo"], + "occurrences": 4, + "rwaData": { + "market": { + "nextOpen": "2026-05-18T20:01:00.000Z", + "nextClose": "2026-05-18T19:59:00.000Z" + }, + "nextPause": { + "start": null, + "end": null + }, + "ticker": "MSTR", + "instrumentType": "stock" + } + }, + "0x374d03a6c0d5bd4be0a5117ebe1b49d52ac8a53f": { + "address": "0x374d03a6c0d5bd4be0a5117ebe1b49d52ac8a53f", + "symbol": "PYPLON", + "decimals": 18, + "name": "PayPal (Ondo Tokenized)", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x374d03a6c0d5bd4be0a5117ebe1b49d52ac8a53f.png", + "aggregators": ["CoinGecko", "Rubic", "Rango", "Ondo"], + "occurrences": 4, + "rwaData": { + "market": { + "nextOpen": "2026-05-18T20:01:00.000Z", + "nextClose": "2026-05-18T19:59:00.000Z" + }, + "nextPause": { + "start": "2026-06-03T23:52:00.000Z", + "end": "2026-06-04T00:12:00.000Z" + }, + "ticker": "PYPL", + "instrumentType": "stock" + } + }, + "0x5630b5741a33371d9d935283849a16dc808f7f3a": { + "address": "0x5630b5741a33371d9d935283849a16dc808f7f3a", + "symbol": "APOON", + "decimals": 18, + "name": "Apollo Global Management (Ondo Tokenized)", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x5630b5741a33371d9d935283849a16dc808f7f3a.png", + "aggregators": ["CoinGecko", "Rubic", "Rango", "Ondo"], + "occurrences": 4, + "rwaData": { + "market": { + "nextOpen": "2026-05-18T20:01:00.000Z", + "nextClose": "2026-05-18T19:59:00.000Z" + }, + "nextPause": { + "start": "2026-05-18T23:52:00.000Z", + "end": "2026-05-19T00:12:00.000Z" + }, + "ticker": "APO", + "instrumentType": "stock" + } + }, + "0xeee9eee593cb8f7946260b4066cba7907f40acfa": { + "address": "0xeee9eee593cb8f7946260b4066cba7907f40acfa", + "symbol": "DISON", + "decimals": 18, + "name": "Disney (Ondo Tokenized)", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xeee9eee593cb8f7946260b4066cba7907f40acfa.png", + "aggregators": ["CoinGecko", "Rubic", "Rango", "Ondo"], + "occurrences": 4, + "rwaData": { + "market": { + "nextOpen": "2026-05-18T20:01:00.000Z", + "nextClose": "2026-05-18T19:59:00.000Z" + }, + "nextPause": { + "start": "2026-06-29T23:52:00.000Z", + "end": "2026-06-30T00:12:00.000Z" + }, + "ticker": "DIS", + "instrumentType": "stock" + } + }, + "0xf99f8f3a95257d82006183bd524efa7aacc9ef7a": { + "address": "0xf99f8f3a95257d82006183bd524efa7aacc9ef7a", + "symbol": "PEPON", + "decimals": 18, + "name": "PepsiCo (Ondo Tokenized)", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xf99f8f3a95257d82006183bd524efa7aacc9ef7a.png", + "aggregators": ["CoinGecko", "Rubic", "Rango", "Ondo"], + "occurrences": 4, + "rwaData": { + "market": { + "nextOpen": "2026-05-18T20:01:00.000Z", + "nextClose": "2026-05-18T19:59:00.000Z" + }, + "nextPause": { + "start": "2026-06-04T23:52:00.000Z", + "end": "2026-06-05T00:12:00.000Z" + }, + "ticker": "PEP", + "instrumentType": "stock" + } + }, + "0x400f1e257f86d25578a0928c94dc95115f09d5c9": { + "address": "0x400f1e257f86d25578a0928c94dc95115f09d5c9", + "symbol": "PGON", + "decimals": 18, + "name": "Procter & Gamble (Ondo Tokenized)", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x400f1e257f86d25578a0928c94dc95115f09d5c9.png", + "aggregators": ["CoinGecko", "Rubic", "Rango", "Ondo"], + "occurrences": 4, + "rwaData": { + "market": { + "nextOpen": "2026-05-18T20:01:00.000Z", + "nextClose": "2026-05-18T19:59:00.000Z" + }, + "nextPause": { + "start": null, + "end": null + }, + "ticker": "PG", + "instrumentType": "stock" + } + }, + "0xd3113a0ad20a46f6a662c63fe8e637f7713e59c7": { + "address": "0xd3113a0ad20a46f6a662c63fe8e637f7713e59c7", + "symbol": "CVXON", + "decimals": 18, + "name": "Chevron (Ondo Tokenized)", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xd3113a0ad20a46f6a662c63fe8e637f7713e59c7.png", + "aggregators": ["CoinGecko", "Rubic", "Rango", "Ondo"], + "occurrences": 4, + "rwaData": { + "market": { + "nextOpen": "2026-05-18T20:01:00.000Z", + "nextClose": "2026-05-18T19:59:00.000Z" + }, + "nextPause": { + "start": "2026-05-18T23:52:00.000Z", + "end": "2026-05-19T00:12:00.000Z" + }, + "ticker": "CVX", + "instrumentType": "stock" + } + }, + "0xd09f7b75b9659b864c6f82bb00ff096f9d277998": { + "address": "0xd09f7b75b9659b864c6f82bb00ff096f9d277998", + "symbol": "LMTON", + "decimals": 18, + "name": "Lockheed (Ondo Tokenized)", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xd09f7b75b9659b864c6f82bb00ff096f9d277998.png", + "aggregators": ["CoinGecko", "Rubic", "Rango", "Ondo"], + "occurrences": 4, + "rwaData": { + "market": { + "nextOpen": "2026-05-18T20:01:00.000Z", + "nextClose": "2026-05-18T19:59:00.000Z" + }, + "nextPause": { + "start": "2026-05-31T23:52:00.000Z", + "end": "2026-06-01T00:12:00.000Z" + }, + "ticker": "LMT", + "instrumentType": "stock" + } + }, + "0x6e3e077a6c0e3c27fd6d00b97387d9b7bd451bab": { + "address": "0x6e3e077a6c0e3c27fd6d00b97387d9b7bd451bab", + "symbol": "INTUON", + "decimals": 18, + "name": "Intuit (Ondo Tokenized)", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x6e3e077a6c0e3c27fd6d00b97387d9b7bd451bab.png", + "aggregators": ["CoinGecko", "Rubic", "Rango", "Ondo"], + "occurrences": 4, + "rwaData": { + "market": { + "nextOpen": "2026-05-18T20:01:00.000Z", + "nextClose": "2026-05-18T19:59:00.000Z" + }, + "nextPause": { + "start": "2026-05-20T20:00:00.000Z", + "end": "2026-05-20T23:30:00.000Z" + }, + "ticker": "INTU", + "instrumentType": "stock" + } + }, + "0xcb22db0ecb6fe58b7b47db443dcfdfdfbf729cef": { + "address": "0xcb22db0ecb6fe58b7b47db443dcfdfdfbf729cef", + "symbol": "ADBEON", + "decimals": 18, + "name": "Adobe (Ondo Tokenized)", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xcb22db0ecb6fe58b7b47db443dcfdfdfbf729cef.png", + "aggregators": ["CoinGecko", "Rubic", "Rango", "Ondo"], + "occurrences": 4, + "rwaData": { + "market": { + "nextOpen": "2026-05-18T20:01:00.000Z", + "nextClose": "2026-05-18T19:59:00.000Z" + }, + "nextPause": { + "start": "2026-06-11T20:00:00.000Z", + "end": "2026-06-11T23:30:00.000Z" + }, + "ticker": "ADBE", + "instrumentType": "stock" + } + }, + "0x50356167a4dbc38bea6779c045e24e25facedfdc": { + "address": "0x50356167a4dbc38bea6779c045e24e25facedfdc", + "symbol": "SPOTON", + "decimals": 18, + "name": "Spotify (Ondo Tokenized)", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x50356167a4dbc38bea6779c045e24e25facedfdc.png", + "aggregators": ["CoinGecko", "Rubic", "Rango", "Ondo"], + "occurrences": 4, + "rwaData": { + "market": { + "nextOpen": "2026-05-18T20:01:00.000Z", + "nextClose": "2026-05-18T19:59:00.000Z" + }, + "nextPause": { + "start": null, + "end": null + }, + "ticker": "SPOT", + "instrumentType": "stock" + } + }, + "0x34375f826fd3dd4e15f883d4f4786bb45eb705ac": { + "address": "0x34375f826fd3dd4e15f883d4f4786bb45eb705ac", + "symbol": "COSTON", + "decimals": 18, + "name": "Costco (Ondo Tokenized)", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x34375f826fd3dd4e15f883d4f4786bb45eb705ac.png", + "aggregators": ["CoinGecko", "Rubic", "Rango", "Ondo"], + "occurrences": 4, + "rwaData": { + "market": { + "nextOpen": "2026-05-18T20:01:00.000Z", + "nextClose": "2026-05-18T19:59:00.000Z" + }, + "nextPause": { + "start": "2026-05-28T20:00:00.000Z", + "end": "2026-05-28T23:30:00.000Z" + }, + "ticker": "COST", + "instrumentType": "stock" + } + }, + "0xd89b7dd376e671c124352267516bef1c2cc231a3": { + "address": "0xd89b7dd376e671c124352267516bef1c2cc231a3", + "symbol": "ZKP", + "decimals": 18, + "name": "zkPass", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xd89b7dd376e671c124352267516bef1c2cc231a3.png", + "aggregators": ["PancakeExtended", "Socket", "Rubic", "Rango"], + "occurrences": 4 + }, + "0x0bbea6812fb3fcbca126edb558e551b3f1702026": { + "address": "0x0bbea6812fb3fcbca126edb558e551b3f1702026", + "symbol": "LITKEY", + "decimals": 18, + "name": "LITKEY", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x0bbea6812fb3fcbca126edb558e551b3f1702026.png", + "aggregators": ["PancakeExtended", "Socket", "Rubic", "Rango"], + "occurrences": 4 + }, + "0xc19d38925f9f645337b1d1f37baf3c0647a48e50": { + "address": "0xc19d38925f9f645337b1d1f37baf3c0647a48e50", + "symbol": "GAIB", + "decimals": 18, + "name": "GAIB", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xc19d38925f9f645337b1d1f37baf3c0647a48e50.png", + "aggregators": ["PancakeExtended", "Socket", "Rubic", "Rango"], + "occurrences": 4 + }, + "0xf2b51cc1850fed939658317a22d73d3482767591": { + "address": "0xf2b51cc1850fed939658317a22d73d3482767591", + "symbol": "NXPC", + "decimals": 18, + "name": "NXPC", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xf2b51cc1850fed939658317a22d73d3482767591.png", + "aggregators": ["PancakeExtended", "LiFi", "Rubic", "Rango"], + "occurrences": 4 + }, + "0xcc1b8207853662c5cfabfb028806ec06ea1f6ac6": { + "address": "0xcc1b8207853662c5cfabfb028806ec06ea1f6ac6", + "symbol": "KIN", + "decimals": 18, + "name": "KinToken", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xcc1b8207853662c5cfabfb028806ec06ea1f6ac6.png", + "aggregators": ["PancakeExtended", "Socket", "Rubic", "Rango"], + "occurrences": 4 + }, + "0x12b7adc48416a103f63e7e6210f62c81dfb91fd0": { + "address": "0x12b7adc48416a103f63e7e6210f62c81dfb91fd0", + "symbol": "EWYON", + "decimals": 18, + "name": "iShares MSCI South Korea ETF (Ondo Tokenized)", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x12b7adc48416a103f63e7e6210f62c81dfb91fd0.png", + "aggregators": ["CoinGecko", "Rubic", "Rango", "Ondo"], + "occurrences": 4, + "rwaData": { + "market": { + "nextOpen": "2026-05-18T20:01:00.000Z", + "nextClose": "2026-05-18T19:59:00.000Z" + }, + "nextPause": { + "start": null, + "end": null + }, + "ticker": "EWY", + "instrumentType": "stock" + } + }, + "0x4fd67cb8cfedc718bac984b5936abe3330d0a2a4": { + "address": "0x4fd67cb8cfedc718bac984b5936abe3330d0a2a4", + "symbol": "SNDKON", + "decimals": 18, + "name": "SanDisk (Ondo Tokenized)", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x4fd67cb8cfedc718bac984b5936abe3330d0a2a4.png", + "aggregators": ["CoinGecko", "Rubic", "Rango", "Ondo"], + "occurrences": 4, + "rwaData": { + "market": { + "nextOpen": "2026-05-18T20:01:00.000Z", + "nextClose": "2026-05-18T19:59:00.000Z" + }, + "nextPause": { + "start": null, + "end": null + }, + "ticker": "SNDK", + "instrumentType": "stock" + } + }, + "0xe4e12c9cec3e8cae405202a97f66afa695075fa0": { + "address": "0xe4e12c9cec3e8cae405202a97f66afa695075fa0", + "symbol": "EQIXON", + "decimals": 18, + "name": "Equinix (Ondo Tokenized)", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xe4e12c9cec3e8cae405202a97f66afa695075fa0.png", + "aggregators": ["CoinGecko", "Rubic", "Rango", "Ondo"], + "occurrences": 4, + "rwaData": { + "market": { + "nextOpen": "2026-05-18T20:01:00.000Z", + "nextClose": "2026-05-18T19:59:00.000Z" + }, + "nextPause": { + "start": "2026-05-19T23:52:00.000Z", + "end": "2026-05-20T00:12:00.000Z" + }, + "ticker": "EQIX", + "instrumentType": "stock" + } + }, + "0x04b5e199f2ec84f78b111035f57b16bee448db6f": { + "address": "0x04b5e199f2ec84f78b111035f57b16bee448db6f", + "symbol": "NKEON", + "decimals": 18, + "name": "Nike (Ondo Tokenized)", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x04b5e199f2ec84f78b111035f57b16bee448db6f.png", + "aggregators": ["CoinGecko", "Rubic", "Rango", "Ondo"], + "occurrences": 4, + "rwaData": { + "market": { + "nextOpen": "2026-05-18T20:01:00.000Z", + "nextClose": "2026-05-18T19:59:00.000Z" + }, + "nextPause": { + "start": "2026-05-31T23:52:00.000Z", + "end": "2026-06-01T00:12:00.000Z" + }, + "ticker": "NKE", + "instrumentType": "stock" + } + }, + "0xecc1299f183b6a720a6f4729bf24f82cd8d50828": { + "address": "0xecc1299f183b6a720a6f4729bf24f82cd8d50828", + "symbol": "TMON", + "decimals": 18, + "name": "Toyota (Ondo Tokenized)", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xecc1299f183b6a720a6f4729bf24f82cd8d50828.png", + "aggregators": ["CoinGecko", "Rubic", "Rango", "Ondo"], + "occurrences": 4, + "rwaData": { + "market": { + "nextOpen": "2026-05-18T20:01:00.000Z", + "nextClose": "2026-05-18T19:59:00.000Z" + }, + "nextPause": { + "start": null, + "end": null + }, + "ticker": "TM", + "instrumentType": "stock" + } + }, + "0x7567c2a46bce46373b454682f3d95e6535bde144": { + "address": "0x7567c2a46bce46373b454682f3d95e6535bde144", + "symbol": "DASHON", + "decimals": 18, + "name": "DoorDash (Ondo Tokenized)", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x7567c2a46bce46373b454682f3d95e6535bde144.png", + "aggregators": ["CoinGecko", "Rubic", "Rango", "Ondo"], + "occurrences": 4, + "rwaData": { + "market": { + "nextOpen": "2026-05-18T20:01:00.000Z", + "nextClose": "2026-05-18T19:59:00.000Z" + }, + "nextPause": { + "start": null, + "end": null + }, + "ticker": "DASH", + "instrumentType": "stock" + } + }, + "0xedb3124e96c64c177eb709cbc64f9977db40ea74": { + "address": "0xedb3124e96c64c177eb709cbc64f9977db40ea74", + "symbol": "APPON", + "decimals": 18, + "name": "AppLovin (Ondo Tokenized)", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xedb3124e96c64c177eb709cbc64f9977db40ea74.png", + "aggregators": ["CoinGecko", "Rubic", "Rango", "Ondo"], + "occurrences": 4, + "rwaData": { + "market": { + "nextOpen": "2026-05-18T20:01:00.000Z", + "nextClose": "2026-05-18T19:59:00.000Z" + }, + "nextPause": { + "start": null, + "end": null + }, + "ticker": "APP", + "instrumentType": "stock" + } + }, + "0x25ffda07f585c39848db6573e533d7585679c52d": { + "address": "0x25ffda07f585c39848db6573e533d7585679c52d", + "symbol": "MAON", + "decimals": 18, + "name": "Mastercard (Ondo Tokenized)", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x25ffda07f585c39848db6573e533d7585679c52d.png", + "aggregators": ["CoinGecko", "Rubic", "Rango", "Ondo"], + "occurrences": 4, + "rwaData": { + "market": { + "nextOpen": "2026-05-18T20:01:00.000Z", + "nextClose": "2026-05-18T19:59:00.000Z" + }, + "nextPause": { + "start": null, + "end": null + }, + "ticker": "MA", + "instrumentType": "stock" + } + }, + "0x1cde419fae0ef7f7931ae3e29e5f411c8c5e5fa1": { + "address": "0x1cde419fae0ef7f7931ae3e29e5f411c8c5e5fa1", + "symbol": "VON", + "decimals": 18, + "name": "Visa (Ondo Tokenized)", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x1cde419fae0ef7f7931ae3e29e5f411c8c5e5fa1.png", + "aggregators": ["CoinGecko", "Rubic", "Rango", "Ondo"], + "occurrences": 4, + "rwaData": { + "market": { + "nextOpen": "2026-05-18T20:01:00.000Z", + "nextClose": "2026-05-18T19:59:00.000Z" + }, + "nextPause": { + "start": null, + "end": null + }, + "ticker": "V", + "instrumentType": "stock" + } + }, + "0x24f5471183ea549987f245d6ce236b6108869c92": { + "address": "0x24f5471183ea549987f245d6ce236b6108869c92", + "symbol": "BLKON", + "decimals": 18, + "name": "Blackrock, Inc. (Ondo Tokenized)", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x24f5471183ea549987f245d6ce236b6108869c92.png", + "aggregators": ["CoinGecko", "Rubic", "Rango", "Ondo"], + "occurrences": 4, + "rwaData": { + "market": { + "nextOpen": "2026-05-18T20:01:00.000Z", + "nextClose": "2026-05-18T19:59:00.000Z" + }, + "nextPause": { + "start": null, + "end": null + }, + "ticker": "BLK", + "instrumentType": "stock" + } + }, + "0xeb19c13c54b1cd48afc62f6503375e92d5f1e856": { + "address": "0xeb19c13c54b1cd48afc62f6503375e92d5f1e856", + "symbol": "NOWON", + "decimals": 18, + "name": "ServiceNow (Ondo Tokenized)", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xeb19c13c54b1cd48afc62f6503375e92d5f1e856.png", + "aggregators": ["CoinGecko", "Rubic", "Rango", "Ondo"], + "occurrences": 4, + "rwaData": { + "market": { + "nextOpen": "2026-05-18T20:01:00.000Z", + "nextClose": "2026-05-18T19:59:00.000Z" + }, + "nextPause": { + "start": null, + "end": null + }, + "ticker": "NOW", + "instrumentType": "stock" + } + }, + "0x93fac02b22b6743423381d163aec418178019b7a": { + "address": "0x93fac02b22b6743423381d163aec418178019b7a", + "symbol": "FIGON", + "decimals": 18, + "name": "Figma (Ondo Tokenized)", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x93fac02b22b6743423381d163aec418178019b7a.png", + "aggregators": ["CoinGecko", "Rubic", "Rango", "Ondo"], + "occurrences": 4, + "rwaData": { + "market": { + "nextOpen": "2026-05-18T20:01:00.000Z", + "nextClose": "2026-05-18T19:59:00.000Z" + }, + "nextPause": { + "start": null, + "end": null + }, + "ticker": "FIG", + "instrumentType": "stock" + } + }, + "0xa9616e5e23ec1582c2828b025becf3ef610e266f": { + "address": "0xa9616e5e23ec1582c2828b025becf3ef610e266f", + "symbol": "SOMI", + "decimals": 18, + "name": "Somnia", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xa9616e5e23ec1582c2828b025becf3ef610e266f.png", + "aggregators": ["Metamask", "LiFi", "Rubic", "Rango"], + "occurrences": 4 + }, + "0x17ea10b6ae4fde59fdbf471bd28ab9710f508816": { + "address": "0x17ea10b6ae4fde59fdbf471bd28ab9710f508816", + "symbol": "RLS", + "decimals": 18, + "name": "Rayls", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x17ea10b6ae4fde59fdbf471bd28ab9710f508816.png", + "aggregators": ["PancakeExtended", "Rubic", "Squid", "Rango"], + "occurrences": 4 + }, + "0xb2d97c4ed2d0ef452654f5cab3da3735b5e6f3ab": { + "address": "0xb2d97c4ed2d0ef452654f5cab3da3735b5e6f3ab", + "symbol": "FIGHT", + "decimals": 18, + "name": "FIGHT", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xb2d97c4ed2d0ef452654f5cab3da3735b5e6f3ab.png", + "aggregators": ["PancakeExtended", "Socket", "Rubic", "Rango"], + "occurrences": 4 + }, + "0x9b6a1d4fa5d90e5f2d34130053978d14cd301d58": { + "address": "0x9b6a1d4fa5d90e5f2d34130053978d14cd301d58", + "symbol": "DN", + "decimals": 18, + "name": "DeepNode", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x9b6a1d4fa5d90e5f2d34130053978d14cd301d58.png", + "aggregators": ["PancakeExtended", "Socket", "Rubic", "Rango"], + "occurrences": 4 + }, + "0x5feccd17c393caf1001d18164236a37e731fcb9d": { + "address": "0x5feccd17c393caf1001d18164236a37e731fcb9d", + "symbol": "OPG", + "decimals": 18, + "name": "OpenGradient", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x5feccd17c393caf1001d18164236a37e731fcb9d.png", + "aggregators": ["PancakeExtended", "LiFi", "Rubic", "Rango"], + "occurrences": 4 + }, + "0x8d11ec38a3eb5e956b052f67da8bdc9bef8abf3e": { + "address": "0x8d11ec38a3eb5e956b052f67da8bdc9bef8abf3e", + "symbol": "KEX", + "decimals": 6, + "name": "KIRA Network", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x8d11ec38a3eb5e956b052f67da8bdc9bef8abf3e.png", + "aggregators": ["PancakeCoinMarketCap", "Socket", "Rubic", "Rango"], + "occurrences": 4 + }, + "0xbf776e4fca664d791c4ee3a71e2722990e003283": { + "address": "0xbf776e4fca664d791c4ee3a71e2722990e003283", + "symbol": "SMTY", + "decimals": 18, + "name": "Smoothy", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xbf776e4fca664d791c4ee3a71e2722990e003283.png", + "aggregators": [ + "PancakeCoinMarketCap", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 4 + }, + "0x6685906b75c61c57772c335402f594f855c1b0e3": { + "address": "0x6685906b75c61c57772c335402f594f855c1b0e3", + "symbol": "WILD", + "decimals": 18, + "name": "Wilder World", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x6685906b75c61c57772c335402f594f855c1b0e3.png", + "aggregators": ["PancakeExtended", "Socket", "Rubic", "Rango"], + "occurrences": 4 + }, + "0xfbcf80ed90856af0d6d9655f746331763efdb22c": { + "address": "0xfbcf80ed90856af0d6d9655f746331763efdb22c", + "symbol": "NT", + "decimals": 18, + "name": "NEXTYPE Finance", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xfbcf80ed90856af0d6d9655f746331763efdb22c.png", + "aggregators": [ + "PancakeCoinMarketCap", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 4 + }, + "0x659049786cb66e4486b8c0e0ccc90a5929a21162": { + "address": "0x659049786cb66e4486b8c0e0ccc90a5929a21162", + "symbol": "TC", + "decimals": 4, + "name": "TTcoin", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x659049786cb66e4486b8c0e0ccc90a5929a21162.png", + "aggregators": [ + "PancakeCoinMarketCap", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 4 + }, + "0x6e2a5ea25b161befa6a8444c71ae3a89c39933c6": { + "address": "0x6e2a5ea25b161befa6a8444c71ae3a89c39933c6", + "symbol": "B2M", + "decimals": 18, + "name": "Bit2Me", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x6e2a5ea25b161befa6a8444c71ae3a89c39933c6.png", + "aggregators": ["PancakeCoinMarketCap", "Socket", "Rubic", "Rango"], + "occurrences": 4 + }, + "0x6a8fd46f88dbd7bdc2d536c604f811c63052ce0f": { + "address": "0x6a8fd46f88dbd7bdc2d536c604f811c63052ce0f", + "symbol": "TRVL", + "decimals": 18, + "name": "TRVL", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x6a8fd46f88dbd7bdc2d536c604f811c63052ce0f.png", + "aggregators": ["PancakeCoinMarketCap", "Socket", "Rubic", "Rango"], + "occurrences": 4 + }, + "0x8f86a15ec17cb3369d8b3e666dadbc11daa82b79": { + "address": "0x8f86a15ec17cb3369d8b3e666dadbc11daa82b79", + "symbol": "APE", + "decimals": 18, + "name": "ApeCoin", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x8f86a15ec17cb3369d8b3e666dadbc11daa82b79.png", + "aggregators": ["PancakeExtended", "LiFi", "Rubic", "Rango"], + "occurrences": 4 + }, + "0x854a63b35b70a7becbed508ff0b6ff5038d0c917": { + "address": "0x854a63b35b70a7becbed508ff0b6ff5038d0c917", + "symbol": "MNTO", + "decimals": 18, + "name": "Minato", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x854a63b35b70a7becbed508ff0b6ff5038d0c917.png", + "aggregators": [ + "PancakeCoinMarketCap", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 4 + }, + "0x0b3eaead748facdb9d943d3407011f16eb17d0cf": { + "address": "0x0b3eaead748facdb9d943d3407011f16eb17d0cf", + "symbol": "PMX", + "decimals": 18, + "name": "Primex Finance", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x0b3eaead748facdb9d943d3407011f16eb17d0cf.png", + "aggregators": ["CoinGecko", "Socket", "Rubic", "Sonarwatch"], + "occurrences": 4 + }, + "0x4e200fe2f3efb977d5fd9c430a41531fb04d97b8": { + "address": "0x4e200fe2f3efb977d5fd9c430a41531fb04d97b8", + "symbol": "ORDER", + "decimals": 18, + "name": "Orderly Network", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x4e200fe2f3efb977d5fd9c430a41531fb04d97b8.png", + "aggregators": ["PancakeExtended", "LiFi", "Socket", "Rubic"], + "occurrences": 4 + }, + "0x00000000efe302beaa2b3e6e1b18d08d69a9012a": { + "address": "0x00000000efe302beaa2b3e6e1b18d08d69a9012a", + "symbol": "AUSD", + "decimals": 6, + "name": "AUSD", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x00000000efe302beaa2b3e6e1b18d08d69a9012a.png", + "aggregators": ["CoinGecko", "LiFi", "Rubic", "Rango"], + "occurrences": 4 + }, + "0xcef5b397051fc92026249670e918c0ad7b8585e4": { + "address": "0xcef5b397051fc92026249670e918c0ad7b8585e4", + "symbol": "OBT", + "decimals": 18, + "name": "Orbiter Token", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xcef5b397051fc92026249670e918c0ad7b8585e4.png", + "aggregators": ["PancakeExtended", "Socket", "Rubic", "Rango"], + "occurrences": 4 + }, + "0x64d1335b7b942385a60c50e57f647d1982f0c4c8": { + "address": "0x64d1335b7b942385a60c50e57f647d1982f0c4c8", + "symbol": "L1X", + "decimals": 18, + "name": "Layer One X", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x64d1335b7b942385a60c50e57f647d1982f0c4c8.png", + "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0x9beee89723ceec27d7c2834bec6834208ffdc202": { + "address": "0x9beee89723ceec27d7c2834bec6834208ffdc202", + "symbol": "AVL", + "decimals": 18, + "name": "Avalon", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x9beee89723ceec27d7c2834bec6834208ffdc202.png", + "aggregators": ["PancakeExtended", "Socket", "Rubic", "Sonarwatch"], + "occurrences": 4 + }, + "0x6a9a65b84843f5fd4ac9a0471c4fc11afffbce4a": { + "address": "0x6a9a65b84843f5fd4ac9a0471c4fc11afffbce4a", + "symbol": "ENZOBTC", + "decimals": 8, + "name": "Lorenzo Wrapped Bitcoin", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x6a9a65b84843f5fd4ac9a0471c4fc11afffbce4a.png", + "aggregators": ["CoinGecko", "LiFi", "Rubic", "Rango"], + "occurrences": 4 + }, + "0xdaf1695c41327b61b9b9965ac6a5843a3198cf07": { + "address": "0xdaf1695c41327b61b9b9965ac6a5843a3198cf07", + "symbol": "STO", + "decimals": 4, + "name": "StakeStone", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xdaf1695c41327b61b9b9965ac6a5843a3198cf07.png", + "aggregators": ["PancakeExtended", "LiFi", "Rubic", "Squid"], + "occurrences": 4 + }, + "0xd86e6ef14b96d942ef0abf0720c549197ea8c528": { + "address": "0xd86e6ef14b96d942ef0abf0720c549197ea8c528", + "symbol": "RDO", + "decimals": 18, + "name": "RDO Token", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xd86e6ef14b96d942ef0abf0720c549197ea8c528.png", + "aggregators": ["PancakeExtended", "1inch", "Socket", "Rubic"], + "occurrences": 4 + }, + "0xaedaff046601beb063b647845dfb21841f32d6a4": { + "address": "0xaedaff046601beb063b647845dfb21841f32d6a4", + "symbol": "RIZE", + "decimals": 18, + "name": "RIZE", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xaedaff046601beb063b647845dfb21841f32d6a4.png", + "aggregators": ["PancakeExtended", "LiFi", "Rubic", "Rango"], + "occurrences": 4 + }, + "0xb37194e8b99020ae0b8b6861d4217a9f016706a4": { + "address": "0xb37194e8b99020ae0b8b6861d4217a9f016706a4", + "symbol": "HYB", + "decimals": 18, + "name": "Hybrid", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xb37194e8b99020ae0b8b6861d4217a9f016706a4.png", + "aggregators": ["PancakeExtended", "Rubic", "Squid", "Rango"], + "occurrences": 4 + }, + "0xf970706063b7853877f39515c96932d49d5ac9cd": { + "address": "0xf970706063b7853877f39515c96932d49d5ac9cd", + "symbol": "YALA", + "decimals": 18, + "name": "Yala Token", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xf970706063b7853877f39515c96932d49d5ac9cd.png", + "aggregators": ["PancakeExtended", "LiFi", "Socket", "Rubic"], + "occurrences": 4 + }, + "0xf9ca3fe094212ffa705742d3626a8ab96aababf8": { + "address": "0xf9ca3fe094212ffa705742d3626a8ab96aababf8", + "symbol": "DAM", + "decimals": 18, + "name": "Reservoir", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xf9ca3fe094212ffa705742d3626a8ab96aababf8.png", + "aggregators": ["PancakeExtended", "Socket", "Rubic", "Rango"], + "occurrences": 4 + }, + "0x5a20886b575058dd7299785f0ea9b1172942a3e0": { + "address": "0x5a20886b575058dd7299785f0ea9b1172942a3e0", + "symbol": "ABTON", + "decimals": 18, + "name": "Abbott (Ondo Tokenized)", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x5a20886b575058dd7299785f0ea9b1172942a3e0.png", + "aggregators": ["CoinGecko", "Rubic", "Rango", "Ondo"], + "occurrences": 4, + "rwaData": { + "market": { + "nextOpen": "2026-05-18T20:01:00.000Z", + "nextClose": "2026-05-18T19:59:00.000Z" + }, + "nextPause": { + "start": null, + "end": null + }, + "ticker": "ABT", + "instrumentType": "stock" + } + }, + "0xfbd4d681c92ead6af0e49950c8b2e47eeacbb2db": { + "address": "0xfbd4d681c92ead6af0e49950c8b2e47eeacbb2db", + "symbol": "QCOMON", + "decimals": 18, + "name": "Qualcomm (Ondo Tokenized)", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xfbd4d681c92ead6af0e49950c8b2e47eeacbb2db.png", + "aggregators": ["CoinGecko", "Rubic", "Rango", "Ondo"], + "occurrences": 4, + "rwaData": { + "market": { + "nextOpen": "2026-05-18T20:01:00.000Z", + "nextClose": "2026-05-18T19:59:00.000Z" + }, + "nextPause": { + "start": "2026-06-03T23:52:00.000Z", + "end": "2026-06-04T00:12:00.000Z" + }, + "ticker": "QCOM", + "instrumentType": "stock" + } + }, + "0xef80743f78d98fc2b47a2253b293152ce8b879ba": { + "address": "0xef80743f78d98fc2b47a2253b293152ce8b879ba", + "symbol": "ABNBON", + "decimals": 18, + "name": "Airbnb (Ondo Tokenized)", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xef80743f78d98fc2b47a2253b293152ce8b879ba.png", + "aggregators": ["CoinGecko", "Rubic", "Rango", "Ondo"], + "occurrences": 4, + "rwaData": { + "market": { + "nextOpen": "2026-05-18T20:01:00.000Z", + "nextClose": "2026-05-18T19:59:00.000Z" + }, + "nextPause": { + "start": null, + "end": null + }, + "ticker": "ABNB", + "instrumentType": "stock" + } + }, + "0x5acf40056ed51c8bbcd1b125ef803581ac89a627": { + "address": "0x5acf40056ed51c8bbcd1b125ef803581ac89a627", + "symbol": "FUTUON", + "decimals": 18, + "name": "Futu Holdings (Ondo Tokenized)", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x5acf40056ed51c8bbcd1b125ef803581ac89a627.png", + "aggregators": ["CoinGecko", "Rubic", "Rango", "Ondo"], + "occurrences": 4, + "rwaData": { + "market": { + "nextOpen": "2026-05-18T20:01:00.000Z", + "nextClose": "2026-05-18T19:59:00.000Z" + }, + "nextPause": { + "start": "2026-06-04T09:00:00.000Z", + "end": "2026-06-04T23:30:00.000Z" + }, + "ticker": "FUTU", + "instrumentType": "stock" + } + }, + "0x527c6436e1eaa4f2065cde4090f798cb5d031dd6": { + "address": "0x527c6436e1eaa4f2065cde4090f798cb5d031dd6", + "symbol": "ARMON", + "decimals": 18, + "name": "Arm Holdings plc (Ondo Tokenized)", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x527c6436e1eaa4f2065cde4090f798cb5d031dd6.png", + "aggregators": ["CoinGecko", "Rubic", "Rango", "Ondo"], + "occurrences": 4, + "rwaData": { + "market": { + "nextOpen": "2026-05-18T20:01:00.000Z", + "nextClose": "2026-05-18T19:59:00.000Z" + }, + "nextPause": { + "start": null, + "end": null + }, + "ticker": "ARM", + "instrumentType": "stock" + } + }, + "0x55b370b704240a914f42b5bbb3195431c031f9f8": { + "address": "0x55b370b704240a914f42b5bbb3195431c031f9f8", + "symbol": "SPGION", + "decimals": 18, + "name": "S&P Global (Ondo Tokenized)", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x55b370b704240a914f42b5bbb3195431c031f9f8.png", + "aggregators": ["CoinGecko", "Rubic", "Rango", "Ondo"], + "occurrences": 4, + "rwaData": { + "market": { + "nextOpen": "2026-05-18T20:01:00.000Z", + "nextClose": "2026-05-18T19:59:00.000Z" + }, + "nextPause": { + "start": null, + "end": null + }, + "ticker": "SPGI", + "instrumentType": "stock" + } + }, + "0xd803f8777187d6dee1ea57854aeb957043fb1675": { + "address": "0xd803f8777187d6dee1ea57854aeb957043fb1675", + "symbol": "AXPON", + "decimals": 18, + "name": "American Express (Ondo Tokenized)", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xd803f8777187d6dee1ea57854aeb957043fb1675.png", + "aggregators": ["CoinGecko", "Rubic", "Rango", "Ondo"], + "occurrences": 4, + "rwaData": { + "market": { + "nextOpen": "2026-05-18T20:01:00.000Z", + "nextClose": "2026-05-18T19:59:00.000Z" + }, + "nextPause": { + "start": null, + "end": null + }, + "ticker": "AXP", + "instrumentType": "stock" + } + }, + "0x7af44d51d1fb88c5b74fc71d3cba649bb8099d14": { + "address": "0x7af44d51d1fb88c5b74fc71d3cba649bb8099d14", + "symbol": "ACNON", + "decimals": 18, + "name": "Accenture (Ondo Tokenized)", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x7af44d51d1fb88c5b74fc71d3cba649bb8099d14.png", + "aggregators": ["CoinGecko", "Rubic", "Rango", "Ondo"], + "occurrences": 4, + "rwaData": { + "market": { + "nextOpen": "2026-05-18T20:01:00.000Z", + "nextClose": "2026-05-18T19:59:00.000Z" + }, + "nextPause": { + "start": null, + "end": null + }, + "ticker": "ACN", + "instrumentType": "stock" + } + }, + "0x5151a22421ed4277f1e4ca4785a07b035d548a36": { + "address": "0x5151a22421ed4277f1e4ca4785a07b035d548a36", + "symbol": "GEON", + "decimals": 18, + "name": "General Electric (Ondo Tokenized)", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x5151a22421ed4277f1e4ca4785a07b035d548a36.png", + "aggregators": ["CoinGecko", "Rubic", "Rango", "Ondo"], + "occurrences": 4, + "rwaData": { + "market": { + "nextOpen": "2026-05-18T20:01:00.000Z", + "nextClose": "2026-05-18T19:59:00.000Z" + }, + "nextPause": { + "start": null, + "end": null + }, + "ticker": "GE", + "instrumentType": "stock" + } + }, + "0x0d4f9b25f81163fb4840ba4f434672543823000c": { + "address": "0x0d4f9b25f81163fb4840ba4f434672543823000c", + "symbol": "GSON", + "decimals": 18, + "name": "Goldman Sachs (Ondo Tokenized)", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x0d4f9b25f81163fb4840ba4f434672543823000c.png", + "aggregators": ["CoinGecko", "Rubic", "Rango", "Ondo"], + "occurrences": 4, + "rwaData": { + "market": { + "nextOpen": "2026-05-18T20:01:00.000Z", + "nextClose": "2026-05-18T19:59:00.000Z" + }, + "nextPause": { + "start": "2026-05-31T23:52:00.000Z", + "end": "2026-06-01T00:12:00.000Z" + }, + "ticker": "GS", + "instrumentType": "stock" + } + }, + "0x1f8955e640cbd9abc3c3bb408c9e2e1f5f20dfe6": { + "address": "0x1f8955e640cbd9abc3c3bb408c9e2e1f5f20dfe6", + "symbol": "USDON", + "decimals": 18, + "name": "Ondo U.S. Dollar Token", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x1f8955e640cbd9abc3c3bb408c9e2e1f5f20dfe6.png", + "aggregators": ["CoinGecko", "Rubic", "Rango", "Ondo"], + "occurrences": 4 + }, + "0xc07e1300dc138601fa6b0b59f8d0fa477e690589": { + "address": "0xc07e1300dc138601fa6b0b59f8d0fa477e690589", + "symbol": "Q", + "decimals": 18, + "name": "Quack AI", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xc07e1300dc138601fa6b0b59f8d0fa477e690589.png", + "aggregators": [ + "PancakeExtended", + "LiFi", + "Socket", + "Rubic", + "Squid" + ], + "occurrences": 5 + }, + "0xc8739fbbd54c587a2ad43b50cbcc30ae34fe9e34": { + "address": "0xc8739fbbd54c587a2ad43b50cbcc30ae34fe9e34", + "symbol": "MXRP", + "decimals": 18, + "name": "MXRP", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xc8739fbbd54c587a2ad43b50cbcc30ae34fe9e34.png", + "aggregators": ["PancakeExtended", "LiFi", "Rubic", "Rango"], + "occurrences": 4 + }, + "0x6907a5986c4950bdaf2f81828ec0737ce787519f": { + "address": "0x6907a5986c4950bdaf2f81828ec0737ce787519f", + "symbol": "ZAMA", + "decimals": 18, + "name": "Zama", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x6907a5986c4950bdaf2f81828ec0737ce787519f.png", + "aggregators": [ + "PancakeExtended", + "LiFi", + "Socket", + "Rubic", + "Rango" + ], + "occurrences": 5 + }, + "0x086f405146ce90135750bbec9a063a8b20a8bffb": { + "address": "0x086f405146ce90135750bbec9a063a8b20a8bffb", + "symbol": "BREV", + "decimals": 18, + "name": "Brevis Token", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x086f405146ce90135750bbec9a063a8b20a8bffb.png", + "aggregators": ["PancakeExtended", "Socket", "Rubic", "Rango"], + "occurrences": 4 + }, + "0xc762043e211571eb34f1ef377e5e8e76914962f9": { + "address": "0xc762043e211571eb34f1ef377e5e8e76914962f9", + "symbol": "APE", + "decimals": 18, + "name": "ApeCoin", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xc762043e211571eb34f1ef377e5e8e76914962f9.png", + "aggregators": ["OpenSwap", "Socket", "Rubic", "Rango"], + "occurrences": 4 + }, + "0x82c19905b036bf4e329740989dcf6ae441ae26c1": { + "address": "0x82c19905b036bf4e329740989dcf6ae441ae26c1", + "symbol": "CP", + "decimals": 18, + "name": "CP", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x82c19905b036bf4e329740989dcf6ae441ae26c1.png", + "aggregators": ["PancakeTop100", "LiFi", "Rubic"], + "occurrences": 3 + }, + "0xfafd4cb703b25cb22f43d017e7e0d75febc26743": { + "address": "0xfafd4cb703b25cb22f43d017e7e0d75febc26743", + "symbol": "WEYU", + "decimals": 18, + "name": "WEYU", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xfafd4cb703b25cb22f43d017e7e0d75febc26743.png", + "aggregators": ["PancakeTop100", "Rubic", "Squid", "Rango"], + "occurrences": 4 + }, + "0x5b17b4d5e4009b5c43e3e3d63a5229f794cba389": { + "address": "0x5b17b4d5e4009b5c43e3e3d63a5229f794cba389", + "symbol": "ACSI", + "decimals": 18, + "name": "ACryptoSI", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x5b17b4d5e4009b5c43e3e3d63a5229f794cba389.png", + "aggregators": ["PancakeCoinMarketCap", "LiFi", "Rubic", "Rango"], + "occurrences": 4 + }, + "0xd0840d5f67206f865aee7cce075bd4484cd3cc81": { + "address": "0xd0840d5f67206f865aee7cce075bd4484cd3cc81", + "symbol": "AFEN", + "decimals": 18, + "name": "AFEN Blockchain", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xd0840d5f67206f865aee7cce075bd4484cd3cc81.png", + "aggregators": [ + "PancakeCoinMarketCap", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 4 + }, + "0xb955b4cab9aa3b49e23aeb5204ebc5ff6678e86d": { + "address": "0xb955b4cab9aa3b49e23aeb5204ebc5ff6678e86d", + "symbol": "AFIN", + "decimals": 18, + "name": "Asian Fintech", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xb955b4cab9aa3b49e23aeb5204ebc5ff6678e86d.png", + "aggregators": ["PancakeCoinMarketCap", "Socket", "Rubic", "Rango"], + "occurrences": 4 + }, + "0xa89bf95c5f15a847c8eb8d348cd7fed719ad7d80": { + "address": "0xa89bf95c5f15a847c8eb8d348cd7fed719ad7d80", + "symbol": "AI", + "decimals": 18, + "name": "Chat AI", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xa89bf95c5f15a847c8eb8d348cd7fed719ad7d80.png", + "aggregators": ["PancakeCoinMarketCap", "Socket", "Rubic", "Rango"], + "occurrences": 4 + }, + "0x98999aa1b0d17fb832fd509e13b67fe506513a6d": { + "address": "0x98999aa1b0d17fb832fd509e13b67fe506513a6d", + "symbol": "BANUS", + "decimals": 18, + "name": "Banus Finance", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x98999aa1b0d17fb832fd509e13b67fe506513a6d.png", + "aggregators": [ + "PancakeCoinMarketCap", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 4 + }, + "0x8626f099434d9a7e603b8f0273880209eabfc1c5": { + "address": "0x8626f099434d9a7e603b8f0273880209eabfc1c5", + "symbol": "BERRY", + "decimals": 18, + "name": "BerrySwap", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x8626f099434d9a7e603b8f0273880209eabfc1c5.png", + "aggregators": ["PancakeCoinMarketCap", "Socket", "Rubic", "Rango"], + "occurrences": 4 + }, + "0xce6bd1833bd077f62b2c1f9a777bb829801d6811": { + "address": "0xce6bd1833bd077f62b2c1f9a777bb829801d6811", + "symbol": "BOBC", + "decimals": 18, + "name": "BOBC", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xce6bd1833bd077f62b2c1f9a777bb829801d6811.png", + "aggregators": ["PancakeCoinMarketCap", "Socket", "Rubic", "Rango"], + "occurrences": 4 + }, + "0x29132062319aa375e764ef8ef756f2b28c77a9c9": { + "address": "0x29132062319aa375e764ef8ef756f2b28c77a9c9", + "symbol": "BPAD", + "decimals": 18, + "name": "BlokPad", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x29132062319aa375e764ef8ef756f2b28c77a9c9.png", + "aggregators": [ + "PancakeCoinMarketCap", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 4 + }, + "0xd0f4afa85a667d27837e9c07c81169869c16dd16": { + "address": "0xd0f4afa85a667d27837e9c07c81169869c16dd16", + "symbol": "BPRIVA", + "decimals": 8, + "name": "Privapp Network", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xd0f4afa85a667d27837e9c07c81169869c16dd16.png", + "aggregators": [ + "PancakeCoinMarketCap", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 4 + }, + "0x4e5ab517719a2bdbafefc22c712d7b5bc5f5544e": { + "address": "0x4e5ab517719a2bdbafefc22c712d7b5bc5f5544e", + "symbol": "BRICK", + "decimals": 18, + "name": "BRICK Token", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x4e5ab517719a2bdbafefc22c712d7b5bc5f5544e.png", + "aggregators": ["PancakeCoinMarketCap", "Socket", "Rubic", "Rango"], + "occurrences": 4 + }, + "0x708955db0d4c52ffbf9aa34af7f3ca8bf07390a8": { + "address": "0x708955db0d4c52ffbf9aa34af7f3ca8bf07390a8", + "symbol": "BTL", + "decimals": 18, + "name": "Battle Saga", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x708955db0d4c52ffbf9aa34af7f3ca8bf07390a8.png", + "aggregators": [ + "PancakeCoinMarketCap", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 4 + }, + "0xefb5df8eb84055026018030e71bc2cdfa2f138b9": { + "address": "0xefb5df8eb84055026018030e71bc2cdfa2f138b9", + "symbol": "CARBON", + "decimals": 18, + "name": "Carbon", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xefb5df8eb84055026018030e71bc2cdfa2f138b9.png", + "aggregators": [ + "PancakeCoinMarketCap", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 4 + }, + "0x0dcee5f694e492f0dd842a7fbe5bed4c6e4665a6": { + "address": "0x0dcee5f694e492f0dd842a7fbe5bed4c6e4665a6", + "symbol": "CATBOY", + "decimals": 18, + "name": "Catboy", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x0dcee5f694e492f0dd842a7fbe5bed4c6e4665a6.png", + "aggregators": ["PancakeCoinMarketCap", "Socket", "Rubic", "Rango"], + "occurrences": 4 + }, + "0x0e2b41ea957624a314108cc4e33703e9d78f4b3c": { + "address": "0x0e2b41ea957624a314108cc4e33703e9d78f4b3c", + "symbol": "CBD", + "decimals": 18, + "name": "Greenheart CBD", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x0e2b41ea957624a314108cc4e33703e9d78f4b3c.png", + "aggregators": [ + "PancakeCoinMarketCap", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 4 + }, + "0xb9b41da7fa895b093b95340a3379383bba36735e": { + "address": "0xb9b41da7fa895b093b95340a3379383bba36735e", + "symbol": "CENT", + "decimals": 18, + "name": "Centaurify", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xb9b41da7fa895b093b95340a3379383bba36735e.png", + "aggregators": ["PancakeCoinMarketCap", "Socket", "Rubic", "Rango"], + "occurrences": 4 + }, + "0xbbbcb350c64fe974e5c42a55c7070644191823f3": { + "address": "0xbbbcb350c64fe974e5c42a55c7070644191823f3", + "symbol": "CHEERS", + "decimals": 18, + "name": "CheersLand", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xbbbcb350c64fe974e5c42a55c7070644191823f3.png", + "aggregators": [ + "PancakeCoinMarketCap", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 4 + }, + "0xb90cdb259b9c96b579a30dac027ff92c1e99f1e3": { + "address": "0xb90cdb259b9c96b579a30dac027ff92c1e99f1e3", + "symbol": "CORTEX", + "decimals": 18, + "name": "NeoCortexAI", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xb90cdb259b9c96b579a30dac027ff92c1e99f1e3.png", + "aggregators": [ + "PancakeCoinMarketCap", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 4 + }, + "0xbabacc135bbf2ce30f9c0f12665b244d3689a29c": { + "address": "0xbabacc135bbf2ce30f9c0f12665b244d3689a29c", + "symbol": "COSMIC", + "decimals": 18, + "name": "COSMIC FOMO", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xbabacc135bbf2ce30f9c0f12665b244d3689a29c.png", + "aggregators": ["PancakeCoinMarketCap", "Socket", "Rubic", "Rango"], + "occurrences": 4 + }, + "0xfc76ba9157ee5d079de8c1e969ee54096aaa6c9c": { + "address": "0xfc76ba9157ee5d079de8c1e969ee54096aaa6c9c", + "symbol": "CRED", + "decimals": 18, + "name": "CRED COIN PAY", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xfc76ba9157ee5d079de8c1e969ee54096aaa6c9c.png", + "aggregators": [ + "PancakeCoinMarketCap", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 4 + }, + "0x8ebc361536094fd5b4ffb8521e31900614c9f55d": { + "address": "0x8ebc361536094fd5b4ffb8521e31900614c9f55d", + "symbol": "DARC", + "decimals": 18, + "name": "DARC Token", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x8ebc361536094fd5b4ffb8521e31900614c9f55d.png", + "aggregators": [ + "PancakeCoinMarketCap", + "Rubic", + "Rango", + "Sonarwatch", + "BinanceDex" + ], + "occurrences": 5 + }, + "0x121235cff4c59eec80b14c1d38b44e7de3a18287": { + "address": "0x121235cff4c59eec80b14c1d38b44e7de3a18287", + "symbol": "DKS", + "decimals": 18, + "name": "DarkShield", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x121235cff4c59eec80b14c1d38b44e7de3a18287.png", + "aggregators": [ + "PancakeCoinMarketCap", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 4 + }, + "0xf81733eae028656fe2b85625d27051f5f6910936": { + "address": "0xf81733eae028656fe2b85625d27051f5f6910936", + "symbol": "DOGE-1", + "decimals": 9, + "name": "Satellite Doge-1", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xf81733eae028656fe2b85625d27051f5f6910936.png", + "aggregators": ["PancakeCoinMarketCap", "Socket", "Rubic", "Rango"], + "occurrences": 4 + }, + "0xc44f8508e1de753e7c523f98639132eef2ad8ea5": { + "address": "0xc44f8508e1de753e7c523f98639132eef2ad8ea5", + "symbol": "DOGEMOB", + "decimals": 18, + "name": "Dogemob", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xc44f8508e1de753e7c523f98639132eef2ad8ea5.png", + "aggregators": [ + "PancakeCoinMarketCap", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 4 + }, + "0x368ce786ea190f32439074e8d22e12ecb718b44c": { + "address": "0x368ce786ea190f32439074e8d22e12ecb718b44c", + "symbol": "EPIK", + "decimals": 18, + "name": "Epik Prime", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x368ce786ea190f32439074e8d22e12ecb718b44c.png", + "aggregators": [ + "PancakeCoinMarketCap", + "Socket", + "Rubic", + "Sonarwatch" + ], + "occurrences": 4 + }, + "0x6f9f0c4ad9af7ebd61ac5a1d4e0f2227f7b0e5f9": { + "address": "0x6f9f0c4ad9af7ebd61ac5a1d4e0f2227f7b0e5f9", + "symbol": "ERA", + "decimals": 18, + "name": "Era7", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x6f9f0c4ad9af7ebd61ac5a1d4e0f2227f7b0e5f9.png", + "aggregators": ["PancakeExtended", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0x18b5f22266343ccd180c6285a66cc9a23dc262e9": { + "address": "0x18b5f22266343ccd180c6285a66cc9a23dc262e9", + "symbol": "EVU", + "decimals": 9, + "name": "Evulus", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x18b5f22266343ccd180c6285a66cc9a23dc262e9.png", + "aggregators": [ + "PancakeCoinMarketCap", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 4 + }, + "0xbb7d61d2511fd2e63f02178ca9b663458af9fc63": { + "address": "0xbb7d61d2511fd2e63f02178ca9b663458af9fc63", + "symbol": "EXVG", + "decimals": 18, + "name": "Exverse", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xbb7d61d2511fd2e63f02178ca9b663458af9fc63.png", + "aggregators": [ + "PancakeCoinMarketCap", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 4 + }, + "0xef7d50069406a2f5a53806f7250a6c0f17ad9dcd": { + "address": "0xef7d50069406a2f5a53806f7250a6c0f17ad9dcd", + "symbol": "FIU", + "decimals": 18, + "name": "beFITTER", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xef7d50069406a2f5a53806f7250a6c0f17ad9dcd.png", + "aggregators": [ + "PancakeCoinMarketCap", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 4 + }, + "0xa3abe68db1b8467b44715eb94542b20dc134f005": { + "address": "0xa3abe68db1b8467b44715eb94542b20dc134f005", + "symbol": "FLUF", + "decimals": 18, + "name": "Fluffy Coin", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xa3abe68db1b8467b44715eb94542b20dc134f005.png", + "aggregators": [ + "PancakeCoinMarketCap", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 4 + }, + "0x6d96c6c401423a23945c03bc8c42e7f82d24b9e0": { + "address": "0x6d96c6c401423a23945c03bc8c42e7f82d24b9e0", + "symbol": "FRBK", + "decimals": 8, + "name": "FreeBnk", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x6d96c6c401423a23945c03bc8c42e7f82d24b9e0.png", + "aggregators": [ + "PancakeCoinMarketCap", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 4 + }, + "0x4437743ac02957068995c48e08465e0ee1769fbe": { + "address": "0x4437743ac02957068995c48e08465e0ee1769fbe", + "symbol": "FTS", + "decimals": 18, + "name": "Fortress Loans", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x4437743ac02957068995c48e08465e0ee1769fbe.png", + "aggregators": [ + "PancakeCoinMarketCap", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 4 + }, + "0x1236a887ef31b4d32e1f0a2b5e4531f52cec7e75": { + "address": "0x1236a887ef31b4d32e1f0a2b5e4531f52cec7e75", + "symbol": "GAMI", + "decimals": 6, + "name": "GAMI WORLD", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x1236a887ef31b4d32e1f0a2b5e4531f52cec7e75.png", + "aggregators": [ + "PancakeCoinMarketCap", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 4 + }, + "0xbac1df744df160877cdc45e13d0394c06bc388ff": { + "address": "0xbac1df744df160877cdc45e13d0394c06bc388ff", + "symbol": "GEM", + "decimals": 18, + "name": "NFTmall", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xbac1df744df160877cdc45e13d0394c06bc388ff.png", + "aggregators": [ + "PancakeCoinMarketCap", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 4 + }, + "0x72ff5742319ef07061836f5c924ac6d72c919080": { + "address": "0x72ff5742319ef07061836f5c924ac6d72c919080", + "symbol": "GFT", + "decimals": 18, + "name": "Gifto", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x72ff5742319ef07061836f5c924ac6d72c919080.png", + "aggregators": [ + "PancakeCoinMarketCap", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 4 + }, + "0xa90da9e3c71ddfcc2d793f80029acbd21a4a0db6": { + "address": "0xa90da9e3c71ddfcc2d793f80029acbd21a4a0db6", + "symbol": "GGR", + "decimals": 18, + "name": "GAGARIN", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xa90da9e3c71ddfcc2d793f80029acbd21a4a0db6.png", + "aggregators": [ + "PancakeCoinMarketCap", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 4 + }, + "0x9bae1a6bd435cd0deb62e7517ea948b5eb6eb497": { + "address": "0x9bae1a6bd435cd0deb62e7517ea948b5eb6eb497", + "symbol": "GWGW", + "decimals": 18, + "name": "GoWrap", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x9bae1a6bd435cd0deb62e7517ea948b5eb6eb497.png", + "aggregators": [ + "PancakeCoinMarketCap", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 4 + }, + "0x3107c0a1126268ca303f8d99c712392fa596e6d7": { + "address": "0x3107c0a1126268ca303f8d99c712392fa596e6d7", + "symbol": "GXT", + "decimals": 18, + "name": "Gem Exchange and Trading", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x3107c0a1126268ca303f8d99c712392fa596e6d7.png", + "aggregators": ["PancakeCoinMarketCap", "Socket", "Rubic", "Rango"], + "occurrences": 4 + }, + "0xb6b8ccd230bb4235c7b87986274e7ab550b72261": { + "address": "0xb6b8ccd230bb4235c7b87986274e7ab550b72261", + "symbol": "HALO", + "decimals": 18, + "name": "HALOnft.art", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xb6b8ccd230bb4235c7b87986274e7ab550b72261.png", + "aggregators": [ + "PancakeCoinMarketCap", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 4 + }, + "0x8cd0d76c0ad377378ab6ce878a7be686223497ee": { + "address": "0x8cd0d76c0ad377378ab6ce878a7be686223497ee", + "symbol": "HDV", + "decimals": 5, + "name": "Hydraverse", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x8cd0d76c0ad377378ab6ce878a7be686223497ee.png", + "aggregators": [ + "PancakeCoinMarketCap", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 4 + }, + "0x261510dd6257494eea1dda7618dbe8a7b87870dd": { + "address": "0x261510dd6257494eea1dda7618dbe8a7b87870dd", + "symbol": "HEROES", + "decimals": 12, + "name": "Dehero Community", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x261510dd6257494eea1dda7618dbe8a7b87870dd.png", + "aggregators": [ + "PancakeCoinMarketCap", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 4 + }, + "0xb626213cb1d52caa1ed71e2a0e62c0113ed8d642": { + "address": "0xb626213cb1d52caa1ed71e2a0e62c0113ed8d642", + "symbol": "HGHG", + "decimals": 8, + "name": "HUGHUG", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xb626213cb1d52caa1ed71e2a0e62c0113ed8d642.png", + "aggregators": [ + "PancakeCoinMarketCap", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 4 + }, + "0x1cc1aca0dae2d6c4a0e8ae7b4f2d01eabbc435ee": { + "address": "0x1cc1aca0dae2d6c4a0e8ae7b4f2d01eabbc435ee", + "symbol": "ISHND", + "decimals": 18, + "name": "StrongHands Finance", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x1cc1aca0dae2d6c4a0e8ae7b4f2d01eabbc435ee.png", + "aggregators": [ + "PancakeCoinMarketCap", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 4 + }, + "0xf94e94a6c5001886818def76097a0fd1ed049ba5": { + "address": "0xf94e94a6c5001886818def76097a0fd1ed049ba5", + "symbol": "JWIF", + "decimals": 9, + "name": "Jerrywifhat", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xf94e94a6c5001886818def76097a0fd1ed049ba5.png", + "aggregators": [ + "PancakeCoinMarketCap", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 4 + }, + "0xe64017bdacbe7dfc84886c3704a26d566e7550de": { + "address": "0xe64017bdacbe7dfc84886c3704a26d566e7550de", + "symbol": "KKT", + "decimals": 18, + "name": "Kingdom Karnage", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xe64017bdacbe7dfc84886c3704a26d566e7550de.png", + "aggregators": [ + "PancakeCoinMarketCap", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 4 + }, + "0xcfefa64b0ddd611b125157c41cd3827f2e8e8615": { + "address": "0xcfefa64b0ddd611b125157c41cd3827f2e8e8615", + "symbol": "KPAD", + "decimals": 18, + "name": "KickPad", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xcfefa64b0ddd611b125157c41cd3827f2e8e8615.png", + "aggregators": [ + "PancakeCoinMarketCap", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 4 + }, + "0xc8a11f433512c16ed895245f34bcc2ca44eb06bd": { + "address": "0xc8a11f433512c16ed895245f34bcc2ca44eb06bd", + "symbol": "KSN", + "decimals": 18, + "name": "Kissan", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xc8a11f433512c16ed895245f34bcc2ca44eb06bd.png", + "aggregators": [ + "PancakeCoinMarketCap", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 4 + }, + "0x5d0e95c15ca50f13fb86938433269d03112409fe": { + "address": "0x5d0e95c15ca50f13fb86938433269d03112409fe", + "symbol": "KWS", + "decimals": 18, + "name": "Knight War Spirits", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x5d0e95c15ca50f13fb86938433269d03112409fe.png", + "aggregators": [ + "PancakeCoinMarketCap", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 4 + }, + "0xd9474595edb03e35c5843335f90eb18671921246": { + "address": "0xd9474595edb03e35c5843335f90eb18671921246", + "symbol": "LFC", + "decimals": 9, + "name": "Supernova Shards Life Coin", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xd9474595edb03e35c5843335f90eb18671921246.png", + "aggregators": [ + "PancakeCoinMarketCap", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 4 + }, + "0xf93f6b686f4a6557151455189a9173735d668154": { + "address": "0xf93f6b686f4a6557151455189a9173735d668154", + "symbol": "LFG", + "decimals": 18, + "name": "LFG Token", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xf93f6b686f4a6557151455189a9173735d668154.png", + "aggregators": ["PancakeCoinMarketCap", "Socket", "Rubic", "Rango"], + "occurrences": 4 + }, + "0x7969dc3c6e925bccbea9f7fc466a63c74f0115b8": { + "address": "0x7969dc3c6e925bccbea9f7fc466a63c74f0115b8", + "symbol": "LION", + "decimals": 18, + "name": "Lion Token", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x7969dc3c6e925bccbea9f7fc466a63c74f0115b8.png", + "aggregators": ["PancakeCoinMarketCap", "Socket", "Rubic", "Rango"], + "occurrences": 4 + }, + "0xcdc3a010a3473c0c4b2cb03d8489d6ba387b83cd": { + "address": "0xcdc3a010a3473c0c4b2cb03d8489d6ba387b83cd", + "symbol": "LIVETHE", + "decimals": 18, + "name": "Liquid Driver liveTHE", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xcdc3a010a3473c0c4b2cb03d8489d6ba387b83cd.png", + "aggregators": ["PancakeCoinGecko", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0xfd54e565e6de7509b07cdba5769178045f212530": { + "address": "0xfd54e565e6de7509b07cdba5769178045f212530", + "symbol": "MAO", + "decimals": 18, + "name": "Mao", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xfd54e565e6de7509b07cdba5769178045f212530.png", + "aggregators": [ + "PancakeCoinMarketCap", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 4 + }, + "0xc32bb619966b9a56cf2472528a36fd099ce979e0": { + "address": "0xc32bb619966b9a56cf2472528a36fd099ce979e0", + "symbol": "MATRIX", + "decimals": 18, + "name": "Matrix Labs", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xc32bb619966b9a56cf2472528a36fd099ce979e0.png", + "aggregators": ["PancakeCoinMarketCap", "Socket", "Rubic", "Rango"], + "occurrences": 4 + }, + "0xc7b7844494c516b840a7a4575ff3e60ff0f056a9": { + "address": "0xc7b7844494c516b840a7a4575ff3e60ff0f056a9", + "symbol": "MECH", + "decimals": 18, + "name": "Mech Master", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xc7b7844494c516b840a7a4575ff3e60ff0f056a9.png", + "aggregators": [ + "PancakeCoinMarketCap", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 4 + }, + "0x2d5c9167fdd5c068c8fcb8992e6af639b42fbf70": { + "address": "0x2d5c9167fdd5c068c8fcb8992e6af639b42fbf70", + "symbol": "MERGE", + "decimals": 18, + "name": "Merge", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x2d5c9167fdd5c068c8fcb8992e6af639b42fbf70.png", + "aggregators": [ + "PancakeCoinMarketCap", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 4 + }, + "0x10a12969cb08a8d88d4bfb5d1fa317d41e0fdab3": { + "address": "0x10a12969cb08a8d88d4bfb5d1fa317d41e0fdab3", + "symbol": "MGOD", + "decimals": 18, + "name": "MetaGods", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x10a12969cb08a8d88d4bfb5d1fa317d41e0fdab3.png", + "aggregators": [ + "PancakeCoinMarketCap", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 4 + }, + "0x6a6ccf15b38da4b5b0ef4c8fe9fefcb472a893f9": { + "address": "0x6a6ccf15b38da4b5b0ef4c8fe9fefcb472a893f9", + "symbol": "MNST", + "decimals": 18, + "name": "MoonStarter", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x6a6ccf15b38da4b5b0ef4c8fe9fefcb472a893f9.png", + "aggregators": [ + "PancakeCoinMarketCap", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 4 + }, + "0x861f1e1397dad68289e8f6a09a2ebb567f1b895c": { + "address": "0x861f1e1397dad68289e8f6a09a2ebb567f1b895c", + "symbol": "MNZ", + "decimals": 18, + "name": "Menzy", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x861f1e1397dad68289e8f6a09a2ebb567f1b895c.png", + "aggregators": [ + "PancakeCoinMarketCap", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 4 + }, + "0x27d72484f1910f5d0226afa4e03742c9cd2b297a": { + "address": "0x27d72484f1910f5d0226afa4e03742c9cd2b297a", + "symbol": "MSCP", + "decimals": 18, + "name": "Moonscape", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x27d72484f1910f5d0226afa4e03742c9cd2b297a.png", + "aggregators": [ + "PancakeCoinMarketCap", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 4 + }, + "0x496cc0b4ee12aa2ac4c42e93067484e7ff50294b": { + "address": "0x496cc0b4ee12aa2ac4c42e93067484e7ff50294b", + "symbol": "MTS", + "decimals": 18, + "name": "Metastrike", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x496cc0b4ee12aa2ac4c42e93067484e7ff50294b.png", + "aggregators": [ + "PancakeCoinMarketCap", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 4 + }, + "0x8c21cef3c0f25e7fa267e33602702e3f91775360": { + "address": "0x8c21cef3c0f25e7fa267e33602702e3f91775360", + "symbol": "NERVE", + "decimals": 18, + "name": "NerveFlux", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x8c21cef3c0f25e7fa267e33602702e3f91775360.png", + "aggregators": [ + "PancakeCoinMarketCap", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 4 + }, + "0xb9c255c115636d8cbe107fc953364b243cacdbce": { + "address": "0xb9c255c115636d8cbe107fc953364b243cacdbce", + "symbol": "NEURALAI", + "decimals": 18, + "name": "Neural AI", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xb9c255c115636d8cbe107fc953364b243cacdbce.png", + "aggregators": [ + "PancakeCoinMarketCap", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 4 + }, + "0x8899ec96ed8c96b5c86c23c3f069c3def75b6d97": { + "address": "0x8899ec96ed8c96b5c86c23c3f069c3def75b6d97", + "symbol": "OFN", + "decimals": 18, + "name": "Openfabric AI", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x8899ec96ed8c96b5c86c23c3f069c3def75b6d97.png", + "aggregators": [ + "PancakeCoinMarketCap", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 4 + }, + "0x1851ccd370c444ff494d7505e6103959bce9f9d9": { + "address": "0x1851ccd370c444ff494d7505e6103959bce9f9d9", + "symbol": "ONUS", + "decimals": 18, + "name": "ONUS", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x1851ccd370c444ff494d7505e6103959bce9f9d9.png", + "aggregators": [ + "PancakeCoinMarketCap", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 4 + }, + "0x9d1d4de9cd93203147fac3bc0262a78e3a0e96bb": { + "address": "0x9d1d4de9cd93203147fac3bc0262a78e3a0e96bb", + "symbol": "PBUX", + "decimals": 18, + "name": "Playbux", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x9d1d4de9cd93203147fac3bc0262a78e3a0e96bb.png", + "aggregators": [ + "PancakeCoinMarketCap", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 4 + }, + "0x734548a9e43d2d564600b1b2ed5be9c2b911c6ab": { + "address": "0x734548a9e43d2d564600b1b2ed5be9c2b911c6ab", + "symbol": "PEEL", + "decimals": 18, + "name": "Meta Apes PEEL", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x734548a9e43d2d564600b1b2ed5be9c2b911c6ab.png", + "aggregators": ["PancakeExtended", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0xef00278d7eadf3b2c05267a2f185e468ad7eab7d": { + "address": "0xef00278d7eadf3b2c05267a2f185e468ad7eab7d", + "symbol": "PEPE", + "decimals": 18, + "name": "PEPE PAD", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xef00278d7eadf3b2c05267a2f185e468ad7eab7d.png", + "aggregators": ["PancakeCoinMarketCap", "Socket", "Rubic", "Rango"], + "occurrences": 4 + }, + "0xd069599e718f963bd84502b49ba8f8657faf5b3a": { + "address": "0xd069599e718f963bd84502b49ba8f8657faf5b3a", + "symbol": "PLAY", + "decimals": 18, + "name": "PLAY", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xd069599e718f963bd84502b49ba8f8657faf5b3a.png", + "aggregators": ["PancakeExtended", "Socket", "Rubic", "Rango"], + "occurrences": 4 + }, + "0xb4357054c3da8d46ed642383f03139ac7f090343": { + "address": "0xb4357054c3da8d46ed642383f03139ac7f090343", + "symbol": "PORT3", + "decimals": 18, + "name": "Port3 Network", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xb4357054c3da8d46ed642383f03139ac7f090343.png", + "aggregators": ["PancakeExtended", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0x93bb13e90678ccd8bbab07d1daef15086746dc9b": { + "address": "0x93bb13e90678ccd8bbab07d1daef15086746dc9b", + "symbol": "PPAD", + "decimals": 18, + "name": "PlayPad", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x93bb13e90678ccd8bbab07d1daef15086746dc9b.png", + "aggregators": [ + "PancakeCoinMarketCap", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 4 + }, + "0x24ef78c7092d255ed14a0281ac1800c359af3afe": { + "address": "0x24ef78c7092d255ed14a0281ac1800c359af3afe", + "symbol": "RAB", + "decimals": 18, + "name": "Rabbit Wallet", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x24ef78c7092d255ed14a0281ac1800c359af3afe.png", + "aggregators": [ + "PancakeCoinMarketCap", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 4 + }, + "0xe91cd52bd65fe23a3eae40e3eb87180e8306399f": { + "address": "0xe91cd52bd65fe23a3eae40e3eb87180e8306399f", + "symbol": "REAL", + "decimals": 18, + "name": "Real Realm", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xe91cd52bd65fe23a3eae40e3eb87180e8306399f.png", + "aggregators": [ + "PancakeCoinMarketCap", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 4 + }, + "0x9ed7e4b1bff939ad473da5e7a218c771d1569456": { + "address": "0x9ed7e4b1bff939ad473da5e7a218c771d1569456", + "symbol": "REUNI", + "decimals": 6, + "name": "Reunit Token", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x9ed7e4b1bff939ad473da5e7a218c771d1569456.png", + "aggregators": ["PancakeCoinMarketCap", "Socket", "Rubic", "Rango"], + "occurrences": 4 + }, + "0x25382fb31e4b22e0ea09cb0761863df5ad97ed72": { + "address": "0x25382fb31e4b22e0ea09cb0761863df5ad97ed72", + "symbol": "RGEN", + "decimals": 18, + "name": "Paragen", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x25382fb31e4b22e0ea09cb0761863df5ad97ed72.png", + "aggregators": [ + "PancakeCoinMarketCap", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 4 + }, + "0xfa262f303aa244f9cc66f312f0755d89c3793192": { + "address": "0xfa262f303aa244f9cc66f312f0755d89c3793192", + "symbol": "RGP", + "decimals": 18, + "name": "Rigel Protocol", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xfa262f303aa244f9cc66f312f0755d89c3793192.png", + "aggregators": [ + "PancakeCoinMarketCap", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 4 + }, + "0x1a3057027032a1af433f6f596cab15271e4d8196": { + "address": "0x1a3057027032a1af433f6f596cab15271e4d8196", + "symbol": "ROAD", + "decimals": 18, + "name": "Yellow Road", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x1a3057027032a1af433f6f596cab15271e4d8196.png", + "aggregators": [ + "PancakeCoinMarketCap", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 4 + }, + "0xb350aebaedb1ed3269b0e25d5e593a9bb4b9f9d5": { + "address": "0xb350aebaedb1ed3269b0e25d5e593a9bb4b9f9d5", + "symbol": "RYOSHI", + "decimals": 18, + "name": "Ryoshi", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xb350aebaedb1ed3269b0e25d5e593a9bb4b9f9d5.png", + "aggregators": [ + "PancakeCoinMarketCap", + "Socket", + "Rubic", + "Sonarwatch" + ], + "occurrences": 4 + }, + "0x8d9fb713587174ee97e91866050c383b5cee6209": { + "address": "0x8d9fb713587174ee97e91866050c383b5cee6209", + "symbol": "SCAR", + "decimals": 18, + "name": "ScarQuest", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x8d9fb713587174ee97e91866050c383b5cee6209.png", + "aggregators": [ + "PancakeCoinMarketCap", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 4 + }, + "0x5392ff4a9bd006dc272c1855af6640e17cc5ec0b": { + "address": "0x5392ff4a9bd006dc272c1855af6640e17cc5ec0b", + "symbol": "SFEX", + "decimals": 18, + "name": "SafeLaunch", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x5392ff4a9bd006dc272c1855af6640e17cc5ec0b.png", + "aggregators": [ + "PancakeCoinMarketCap", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 4 + }, + "0x6f51a1674befdd77f7ab1246b83adb9f13613762": { + "address": "0x6f51a1674befdd77f7ab1246b83adb9f13613762", + "symbol": "SNFTS", + "decimals": 18, + "name": "Seedify NFT Space", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x6f51a1674befdd77f7ab1246b83adb9f13613762.png", + "aggregators": [ + "PancakeCoinMarketCap", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 4 + }, + "0x317eb4ad9cfac6232f0046831322e895507bcbeb": { + "address": "0x317eb4ad9cfac6232f0046831322e895507bcbeb", + "symbol": "TDX", + "decimals": 18, + "name": "Tidex", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x317eb4ad9cfac6232f0046831322e895507bcbeb.png", + "aggregators": [ + "PancakeCoinMarketCap", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 4 + }, + "0x0c1253a30da9580472064a91946c5ce0c58acf7f": { + "address": "0x0c1253a30da9580472064a91946c5ce0c58acf7f", + "symbol": "TITA", + "decimals": 18, + "name": "Titan Hunters", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x0c1253a30da9580472064a91946c5ce0c58acf7f.png", + "aggregators": [ + "PancakeCoinMarketCap", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 4 + }, + "0x7849ed1447250d0b896f89b58f3075b127ca29b3": { + "address": "0x7849ed1447250d0b896f89b58f3075b127ca29b3", + "symbol": "TKP", + "decimals": 18, + "name": "TOKPIE", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x7849ed1447250d0b896f89b58f3075b127ca29b3.png", + "aggregators": ["PancakeCoinMarketCap", "Socket", "Rubic", "Rango"], + "occurrences": 4 + }, + "0xb346c52874c7023df183068c39478c3b7b2515bc": { + "address": "0xb346c52874c7023df183068c39478c3b7b2515bc", + "symbol": "TRUEPNL", + "decimals": 18, + "name": "PNL", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xb346c52874c7023df183068c39478c3b7b2515bc.png", + "aggregators": ["PancakeCoinMarketCap", "Socket", "Rubic", "Rango"], + "occurrences": 4 + }, + "0x39703a67bac0e39f9244d97f4c842d15fbad9c1f": { + "address": "0x39703a67bac0e39f9244d97f4c842d15fbad9c1f", + "symbol": "TTK", + "decimals": 18, + "name": "The Three Kingdoms", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x39703a67bac0e39f9244d97f4c842d15fbad9c1f.png", + "aggregators": [ + "PancakeCoinMarketCap", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 4 + }, + "0xedf3ce4dd6725650a8e9398e5c6398d061fa7955": { + "address": "0xedf3ce4dd6725650a8e9398e5c6398d061fa7955", + "symbol": "VEMP", + "decimals": 18, + "name": "vEmpire Gamer Token", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xedf3ce4dd6725650a8e9398e5c6398d061fa7955.png", + "aggregators": ["PancakeCoinMarketCap", "Socket", "Rubic", "Rango"], + "occurrences": 4 + }, + "0x4d61577d8fd2208a0afb814ea089fdeae19ed202": { + "address": "0x4d61577d8fd2208a0afb814ea089fdeae19ed202", + "symbol": "VFOX", + "decimals": 18, + "name": "VFOX", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x4d61577d8fd2208a0afb814ea089fdeae19ed202.png", + "aggregators": [ + "PancakeCoinMarketCap", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 4 + }, + "0xfb526228ff1c019e4604c7e7988c097d96bd5b70": { + "address": "0xfb526228ff1c019e4604c7e7988c097d96bd5b70", + "symbol": "VGO", + "decimals": 8, + "name": "Virgo", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xfb526228ff1c019e4604c7e7988c097d96bd5b70.png", + "aggregators": [ + "PancakeCoinMarketCap", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 4 + }, + "0xce237db5a3458f1250a553cf395c9c3cf658b3d1": { + "address": "0xce237db5a3458f1250a553cf395c9c3cf658b3d1", + "symbol": "VIZ", + "decimals": 18, + "name": "VIZ Token", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xce237db5a3458f1250a553cf395c9c3cf658b3d1.png", + "aggregators": ["PancakeCoinGecko", "Socket", "Rubic", "Rango"], + "occurrences": 4 + }, + "0x37ac5f3bfd18a164fc6cf0f0f0ecd334d9179d57": { + "address": "0x37ac5f3bfd18a164fc6cf0f0f0ecd334d9179d57", + "symbol": "VPK", + "decimals": 18, + "name": "Vulture Peak", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x37ac5f3bfd18a164fc6cf0f0f0ecd334d9179d57.png", + "aggregators": [ + "PancakeCoinMarketCap", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 4 + }, + "0x5d37abafd5498b0e7af753a2e83bd4f0335aa89f": { + "address": "0x5d37abafd5498b0e7af753a2e83bd4f0335aa89f", + "symbol": "WECO", + "decimals": 18, + "name": "WECOIN", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x5d37abafd5498b0e7af753a2e83bd4f0335aa89f.png", + "aggregators": [ + "PancakeCoinMarketCap", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 4 + }, + "0x8888888837f84a7a82668e0320ac454f5945d0b9": { + "address": "0x8888888837f84a7a82668e0320ac454f5945d0b9", + "symbol": "WORK", + "decimals": 18, + "name": "Work X", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x8888888837f84a7a82668e0320ac454f5945d0b9.png", + "aggregators": [ + "PancakeCoinMarketCap", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 4 + }, + "0x6ad0b271f4b3d7651ae9947a18bae29ca20d83eb": { + "address": "0x6ad0b271f4b3d7651ae9947a18bae29ca20d83eb", + "symbol": "WRKX", + "decimals": 18, + "name": "Web3 Workx", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x6ad0b271f4b3d7651ae9947a18bae29ca20d83eb.png", + "aggregators": [ + "PancakeCoinMarketCap", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 4 + }, + "0x0009ae5a69b037ea74a900783fab457fa605ae5d": { + "address": "0x0009ae5a69b037ea74a900783fab457fa605ae5d", + "symbol": "XAI", + "decimals": 9, + "name": "Grok", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x0009ae5a69b037ea74a900783fab457fa605ae5d.png", + "aggregators": ["PancakeCoinMarketCap", "Socket", "Rubic", "Rango"], + "occurrences": 4 + }, + "0xb81408a1cc2f4be70a6a3178d351ca95a77c5a06": { + "address": "0xb81408a1cc2f4be70a6a3178d351ca95a77c5a06", + "symbol": "XODEX", + "decimals": 18, + "name": "XODEX", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xb81408a1cc2f4be70a6a3178d351ca95a77c5a06.png", + "aggregators": [ + "PancakeCoinMarketCap", + "Socket", + "Rubic", + "Sonarwatch" + ], + "occurrences": 4 + }, + "0x88691f292b76bf4d2caa5678a54515fae77c33af": { + "address": "0x88691f292b76bf4d2caa5678a54515fae77c33af", + "symbol": "XPE", + "decimals": 18, + "name": "Xpense", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x88691f292b76bf4d2caa5678a54515fae77c33af.png", + "aggregators": [ + "PancakeCoinMarketCap", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 4 + }, + "0x8cf8238abf7b933bf8bb5ea2c7e4be101c11de2a": { + "address": "0x8cf8238abf7b933bf8bb5ea2c7e4be101c11de2a", + "symbol": "XPNET", + "decimals": 18, + "name": "XP Network", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x8cf8238abf7b933bf8bb5ea2c7e4be101c11de2a.png", + "aggregators": [ + "PancakeCoinMarketCap", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 4 + }, + "0xb653e9da791dd33e24cd687260c7c281928411ba": { + "address": "0xb653e9da791dd33e24cd687260c7c281928411ba", + "symbol": "YFO", + "decimals": 18, + "name": "YFIONE", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xb653e9da791dd33e24cd687260c7c281928411ba.png", + "aggregators": [ + "PancakeCoinMarketCap", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 4 + }, + "0x57c81885faad67fc4de892102f6fead3b9215f6b": { + "address": "0x57c81885faad67fc4de892102f6fead3b9215f6b", + "symbol": "ZENITH", + "decimals": 18, + "name": "Zenith Chain", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x57c81885faad67fc4de892102f6fead3b9215f6b.png", + "aggregators": [ + "PancakeCoinMarketCap", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 4 + }, + "0x1d1eb8e8293222e1a29d2c0e4ce6c0acfd89aaac": { + "address": "0x1d1eb8e8293222e1a29d2c0e4ce6c0acfd89aaac", + "symbol": "HAKKA", + "decimals": 18, + "name": "HAKKA", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x1d1eb8e8293222e1a29d2c0e4ce6c0acfd89aaac.png", + "aggregators": ["PancakeExtended", "Socket", "Rubic", "Rango"], + "occurrences": 4 + }, + "0x6a0b66710567b6beb81a71f7e9466450a91a384b": { + "address": "0x6a0b66710567b6beb81a71f7e9466450a91a384b", + "symbol": "PEX", + "decimals": 18, + "name": "PearDAO", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x6a0b66710567b6beb81a71f7e9466450a91a384b.png", + "aggregators": ["PancakeExtended", "Rubic", "Squid", "Rango"], + "occurrences": 4 + }, + "0x0feadcc3824e7f3c12f40e324a60c23ca51627fc": { + "address": "0x0feadcc3824e7f3c12f40e324a60c23ca51627fc", + "symbol": "WARDEN", + "decimals": 18, + "name": "WardenSwap Token", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x0feadcc3824e7f3c12f40e324a60c23ca51627fc.png", + "aggregators": ["PancakeCoinMarketCap", "1inch", "Rubic", "Rango"], + "occurrences": 4 + }, + "0x96dd399f9c3afda1f194182f71600f1b65946501": { + "address": "0x96dd399f9c3afda1f194182f71600f1b65946501", + "symbol": "COS", + "decimals": 18, + "name": "Contentos", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x96dd399f9c3afda1f194182f71600f1b65946501.png", + "aggregators": [ + "PancakeExtended", + "1inch", + "Rubic", + "Rango", + "BinanceDex" + ], + "occurrences": 5 + }, + "0xc6c4575dc40ac63a5f89b5c4ae0b3a9134c52c4c": { + "address": "0xc6c4575dc40ac63a5f89b5c4ae0b3a9134c52c4c", + "symbol": "NML", + "decimals": 18, + "name": "zoey - your longevity coach by NetMind XYZ", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xc6c4575dc40ac63a5f89b5c4ae0b3a9134c52c4c.png", + "aggregators": ["PancakeExtended", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0xaff2e841851700d1fc101995ee6b81ae21bb87d7": { + "address": "0xaff2e841851700d1fc101995ee6b81ae21bb87d7", + "symbol": "SPK", + "decimals": 18, + "name": "Spark", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xaff2e841851700d1fc101995ee6b81ae21bb87d7.png", + "aggregators": ["PancakeExtended", "Socket", "Rubic"], + "occurrences": 3 + }, + "0xf625b131336b4544907e160507aa8d8568104444": { + "address": "0xf625b131336b4544907e160507aa8d8568104444", + "symbol": "GRDM", + "decimals": 18, + "name": "GridiumAI", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xf625b131336b4544907e160507aa8d8568104444.png", + "aggregators": ["PancakeExtended", "LiFi", "Rubic", "Rango"], + "occurrences": 4 + }, + "0x194b302a4b0a79795fb68e2adf1b8c9ec5ff8d1f": { + "address": "0x194b302a4b0a79795fb68e2adf1b8c9ec5ff8d1f", + "symbol": "WKEYDAO", + "decimals": 9, + "name": "WebKey DAO", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x194b302a4b0a79795fb68e2adf1b8c9ec5ff8d1f.png", + "aggregators": ["PancakeExtended", "Rubic", "Squid", "Rango"], + "occurrences": 4 + }, + "0x932fb7f52adbc34ff81b4342b8c036b7b8ac4444": { + "address": "0x932fb7f52adbc34ff81b4342b8c036b7b8ac4444", + "symbol": "DUST", + "decimals": 18, + "name": "Dust", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x932fb7f52adbc34ff81b4342b8c036b7b8ac4444.png", + "aggregators": ["PancakeExtended", "Socket", "Rubic", "Rango"], + "occurrences": 4 + }, + "0x4829a1d1fb6ded1f81d26868ab8976648baf9893": { + "address": "0x4829a1d1fb6ded1f81d26868ab8976648baf9893", + "symbol": "RTX", + "decimals": 18, + "name": "RateX", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x4829a1d1fb6ded1f81d26868ab8976648baf9893.png", + "aggregators": ["PancakeExtended", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x70f2eadf1ca1969ff42b0c78e9da519e8937cbaf": { + "address": "0x70f2eadf1ca1969ff42b0c78e9da519e8937cbaf", + "symbol": "EDGE", + "decimals": 18, + "name": "Edge", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x70f2eadf1ca1969ff42b0c78e9da519e8937cbaf.png", + "aggregators": ["PancakeExtended", "LiFi", "Socket", "Rango"], + "occurrences": 4 + }, + "0x67aa700ab0110cc52bf7f308fe25068e87a0f581": { + "address": "0x67aa700ab0110cc52bf7f308fe25068e87a0f581", + "symbol": "PUNDIAI", + "decimals": 18, + "name": "Pundi AI", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x67aa700ab0110cc52bf7f308fe25068e87a0f581.png", + "aggregators": ["LiFi", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0x5f88ab06e8dfe89df127b2430bba4af600866035": { + "address": "0x5f88ab06e8dfe89df127b2430bba4af600866035", + "symbol": "KAVA", + "decimals": 6, + "name": "KAVA", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x5f88ab06e8dfe89df127b2430bba4af600866035.png", + "aggregators": ["Socket", "Rubic", "Rango", "SushiSwap"], + "occurrences": 4 + }, + "0xadbaf88b39d37dc68775ed1541f1bf83a5a45feb": { + "address": "0xadbaf88b39d37dc68775ed1541f1bf83a5a45feb", + "symbol": "COTI", + "decimals": 18, + "name": "COTI Token", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xadbaf88b39d37dc68775ed1541f1bf83a5a45feb.png", + "aggregators": ["PancakeCoinMarketCap", "Socket", "Rubic"], + "occurrences": 3 + }, + "0xb1ced2e320e3f4c8e3511b1dc59203303493f382": { + "address": "0xb1ced2e320e3f4c8e3511b1dc59203303493f382", + "symbol": "MOONLIGHT", + "decimals": 9, + "name": "Moonlight Token", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xb1ced2e320e3f4c8e3511b1dc59203303493f382.png", + "aggregators": ["PancakeCoinMarketCap", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x50ba8bf9e34f0f83f96a340387d1d3888ba4b3b5": { + "address": "0x50ba8bf9e34f0f83f96a340387d1d3888ba4b3b5", + "symbol": "ZMBE", + "decimals": 18, + "name": "RugZombie", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x50ba8bf9e34f0f83f96a340387d1d3888ba4b3b5.png", + "aggregators": ["PancakeCoinMarketCap", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x6ef238e9e8cd2a96740897761c18894fc086b9d0": { + "address": "0x6ef238e9e8cd2a96740897761c18894fc086b9d0", + "symbol": "MYRA", + "decimals": 18, + "name": "Mytheria", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x6ef238e9e8cd2a96740897761c18894fc086b9d0.png", + "aggregators": ["PancakeCoinMarketCap", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x2ffee7b4df74f7c6508a4af4d6d91058da5420d0": { + "address": "0x2ffee7b4df74f7c6508a4af4d6d91058da5420d0", + "symbol": "CHAINCADE", + "decimals": 9, + "name": "ChainCade", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x2ffee7b4df74f7c6508a4af4d6d91058da5420d0.png", + "aggregators": ["PancakeCoinMarketCap", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x3496212ec43cc49f5151ec4405efd4975e036f89": { + "address": "0x3496212ec43cc49f5151ec4405efd4975e036f89", + "symbol": "LGC", + "decimals": 18, + "name": "LiveGreen Coin", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x3496212ec43cc49f5151ec4405efd4975e036f89.png", + "aggregators": ["PancakeCoinMarketCap", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x98a2500a2c3b8877b0ed5ac3acc300c50bf7064b": { + "address": "0x98a2500a2c3b8877b0ed5ac3acc300c50bf7064b", + "symbol": "NOOT", + "decimals": 18, + "name": "NOOT", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x98a2500a2c3b8877b0ed5ac3acc300c50bf7064b.png", + "aggregators": ["PancakeCoinMarketCap", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x2947c22608d742af4e8c16d86f90a93969f13f8d": { + "address": "0x2947c22608d742af4e8c16d86f90a93969f13f8d", + "symbol": "CAKEBOT", + "decimals": 18, + "name": "Cakebot Token", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x2947c22608d742af4e8c16d86f90a93969f13f8d.png", + "aggregators": ["PancakeCoinMarketCap", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x52c1751c89fc913ed274d72e8d56dce4ee44a5cf": { + "address": "0x52c1751c89fc913ed274d72e8d56dce4ee44a5cf", + "symbol": "SCRL", + "decimals": 18, + "name": "Wizarre Scroll", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x52c1751c89fc913ed274d72e8d56dce4ee44a5cf.png", + "aggregators": ["PancakeCoinMarketCap", "Rubic", "Rango"], + "occurrences": 3 + }, + "0xa856098dcbc1b2b3a9c96c35c32bc4f71e49aed2": { + "address": "0xa856098dcbc1b2b3a9c96c35c32bc4f71e49aed2", + "symbol": "FINC", + "decimals": 18, + "name": "FinceptorToken", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xa856098dcbc1b2b3a9c96c35c32bc4f71e49aed2.png", + "aggregators": ["PancakeCoinMarketCap", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x30b5e345c79255101b8af22a19805a6fb96ddebb": { + "address": "0x30b5e345c79255101b8af22a19805a6fb96ddebb", + "symbol": "REV3L", + "decimals": 18, + "name": "REV3AL", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x30b5e345c79255101b8af22a19805a6fb96ddebb.png", + "aggregators": ["PancakeCoinMarketCap", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x7e2a35c746f2f7c240b664f1da4dd100141ae71f": { + "address": "0x7e2a35c746f2f7c240b664f1da4dd100141ae71f", + "symbol": "AIRI", + "decimals": 18, + "name": "aiRight Token", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x7e2a35c746f2f7c240b664f1da4dd100141ae71f.png", + "aggregators": ["PancakeCoinMarketCap", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x0808bf94d57c905f1236212654268ef82e1e594e": { + "address": "0x0808bf94d57c905f1236212654268ef82e1e594e", + "symbol": "RITE", + "decimals": 18, + "name": "RITE Coin", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x0808bf94d57c905f1236212654268ef82e1e594e.png", + "aggregators": ["PancakeCoinMarketCap", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x8a74bc8c372bc7f0e9ca3f6ac0df51be15aec47a": { + "address": "0x8a74bc8c372bc7f0e9ca3f6ac0df51be15aec47a", + "symbol": "PLSPAD", + "decimals": 18, + "name": "PULSEPAD.io", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x8a74bc8c372bc7f0e9ca3f6ac0df51be15aec47a.png", + "aggregators": ["PancakeCoinMarketCap", "Rubic", "Rango"], + "occurrences": 3 + }, + "0xcbe5bca571628894a38836b0bae833ff012f71d8": { + "address": "0xcbe5bca571628894a38836b0bae833ff012f71d8", + "symbol": "IRT", + "decimals": 18, + "name": "Infinity Rocket Token", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xcbe5bca571628894a38836b0bae833ff012f71d8.png", + "aggregators": ["PancakeCoinMarketCap", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x245d9f531757f83064ad808b4c9b220c703a4934": { + "address": "0x245d9f531757f83064ad808b4c9b220c703a4934", + "symbol": "GODE", + "decimals": 6, + "name": "Gode Chain", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x245d9f531757f83064ad808b4c9b220c703a4934.png", + "aggregators": ["PancakeCoinMarketCap", "Rubic", "Rango"], + "occurrences": 3 + }, + "0xca830317146bfdde71e7c0b880e2ec1f66e273ee": { + "address": "0xca830317146bfdde71e7c0b880e2ec1f66e273ee", + "symbol": "GULL", + "decimals": 18, + "name": "PolyGod", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xca830317146bfdde71e7c0b880e2ec1f66e273ee.png", + "aggregators": ["PancakeCoinMarketCap", "Rubic", "Sonarwatch"], + "occurrences": 3 + }, + "0xe356cb3efc9cb4320b945393a10fd71c77dc24a0": { + "address": "0xe356cb3efc9cb4320b945393a10fd71c77dc24a0", + "symbol": "TTM", + "decimals": 18, + "name": "Tradetomato Token", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xe356cb3efc9cb4320b945393a10fd71c77dc24a0.png", + "aggregators": ["PancakeCoinMarketCap", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x68ae2f202799be2008c89e2100257e66f77da1f3": { + "address": "0x68ae2f202799be2008c89e2100257e66f77da1f3", + "symbol": "PMT", + "decimals": 18, + "name": "Public Masterpiece Token", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x68ae2f202799be2008c89e2100257e66f77da1f3.png", + "aggregators": ["PancakeCoinMarketCap", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x8c6149aaea8161e2015fa563040a916e90d16dca": { + "address": "0x8c6149aaea8161e2015fa563040a916e90d16dca", + "symbol": "SMX", + "decimals": 8, + "name": "Snapmuse.io", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x8c6149aaea8161e2015fa563040a916e90d16dca.png", + "aggregators": ["PancakeCoinMarketCap", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x524d524b4c9366be706d3a90dcf70076ca037ae3": { + "address": "0x524d524b4c9366be706d3a90dcf70076ca037ae3", + "symbol": "RMRK", + "decimals": 18, + "name": "RMRK", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x524d524b4c9366be706d3a90dcf70076ca037ae3.png", + "aggregators": ["PancakeCoinMarketCap", "Rubic", "Rango"], + "occurrences": 3 + }, + "0xa0d96fd642156fc7e964949642257b3572f10cd6": { + "address": "0xa0d96fd642156fc7e964949642257b3572f10cd6", + "symbol": "BLOK", + "decimals": 18, + "name": "BLOK", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xa0d96fd642156fc7e964949642257b3572f10cd6.png", + "aggregators": ["PancakeCoinMarketCap", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x26433c8127d9b4e9b71eaa15111df99ea2eeb2f8": { + "address": "0x26433c8127d9b4e9b71eaa15111df99ea2eeb2f8", + "symbol": "MANA", + "decimals": 18, + "name": "Decentraland", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x26433c8127d9b4e9b71eaa15111df99ea2eeb2f8.png", + "aggregators": ["PancakeExtended", "Socket", "Rubic"], + "occurrences": 3 + }, + "0x658e64ffcf40d240a43d52ca9342140316ae44fa": { + "address": "0x658e64ffcf40d240a43d52ca9342140316ae44fa", + "symbol": "OIN", + "decimals": 8, + "name": "OIN", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x658e64ffcf40d240a43d52ca9342140316ae44fa.png", + "aggregators": ["PancakeExtended", "Rubic", "Rango"], + "occurrences": 3 + }, + "0xad86d0e9764ba90ddd68747d64bffbd79879a238": { + "address": "0xad86d0e9764ba90ddd68747d64bffbd79879a238", + "symbol": "PAID", + "decimals": 18, + "name": "PAID Network", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xad86d0e9764ba90ddd68747d64bffbd79879a238.png", + "aggregators": ["PancakeTop100", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x7062f2e2b917ed14b2b0833e9e0278cb4bc62c69": { + "address": "0x7062f2e2b917ed14b2b0833e9e0278cb4bc62c69", + "symbol": "ABN", + "decimals": 18, + "name": "Antofy", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x7062f2e2b917ed14b2b0833e9e0278cb4bc62c69.png", + "aggregators": ["PancakeCoinMarketCap", "Rubic", "Rango"], + "occurrences": 3 + }, + "0xf7b5fb4607abfe0ecf332c23cbdcc9e425b443a8": { + "address": "0xf7b5fb4607abfe0ecf332c23cbdcc9e425b443a8", + "symbol": "ACK", + "decimals": 18, + "name": "AcknoLedger", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xf7b5fb4607abfe0ecf332c23cbdcc9e425b443a8.png", + "aggregators": ["PancakeCoinMarketCap", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x4b4594bfe661919a8e2373eb175004da2989a479": { + "address": "0x4b4594bfe661919a8e2373eb175004da2989a479", + "symbol": "AIG", + "decimals": 18, + "name": "A.I. Genesis Official", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x4b4594bfe661919a8e2373eb175004da2989a479.png", + "aggregators": ["PancakeCoinMarketCap", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x5921dee8556c4593eefcfad3ca5e2f618606483b": { + "address": "0x5921dee8556c4593eefcfad3ca5e2f618606483b", + "symbol": "ANYMTLX", + "decimals": 18, + "name": "MTLX-ERC20", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x5921dee8556c4593eefcfad3ca5e2f618606483b.png", + "aggregators": ["PancakeExtended", "Rubic", "Rango"], + "occurrences": 3 + }, + "0xc0cc1e5761ba5786916fd055562551798e50d573": { + "address": "0xc0cc1e5761ba5786916fd055562551798e50d573", + "symbol": "ASY", + "decimals": 18, + "name": "ASYAGRO", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xc0cc1e5761ba5786916fd055562551798e50d573.png", + "aggregators": ["PancakeCoinMarketCap", "Rubic", "Rango"], + "occurrences": 3 + }, + "0xa2f46fe221f34dac4cf078e6946a7cb4e373ad28": { + "address": "0xa2f46fe221f34dac4cf078e6946a7cb4e373ad28", + "symbol": "BAFI", + "decimals": 18, + "name": "Bafi Finance", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xa2f46fe221f34dac4cf078e6946a7cb4e373ad28.png", + "aggregators": ["PancakeCoinMarketCap", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x140b890bf8e2fe3e26fcd516c75728fb20b31c4f": { + "address": "0x140b890bf8e2fe3e26fcd516c75728fb20b31c4f", + "symbol": "BUFFS", + "decimals": 4, + "name": "BuffSwap", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x140b890bf8e2fe3e26fcd516c75728fb20b31c4f.png", + "aggregators": ["PancakeCoinMarketCap", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x0f237db17aa4e6de062e6f052bd9c805789b01c3": { + "address": "0x0f237db17aa4e6de062e6f052bd9c805789b01c3", + "symbol": "COV", + "decimals": 18, + "name": "Covesting", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x0f237db17aa4e6de062e6f052bd9c805789b01c3.png", + "aggregators": ["PancakeCoinMarketCap", "Rubic", "Rango"], + "occurrences": 3 + }, + "0xde51d1599339809cafb8194189ce67d5bdca9e9e": { + "address": "0xde51d1599339809cafb8194189ce67d5bdca9e9e", + "symbol": "COWRIE", + "decimals": 18, + "name": "MYCOWRIE", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xde51d1599339809cafb8194189ce67d5bdca9e9e.png", + "aggregators": ["PancakeCoinMarketCap", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x8f9f2c61730932c99fae229a7265851aaaf9d59e": { + "address": "0x8f9f2c61730932c99fae229a7265851aaaf9d59e", + "symbol": "DONK", + "decimals": 18, + "name": "Donkey", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x8f9f2c61730932c99fae229a7265851aaaf9d59e.png", + "aggregators": ["PancakeCoinMarketCap", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x1294f4183763743c7c9519bec51773fb3acd78fd": { + "address": "0x1294f4183763743c7c9519bec51773fb3acd78fd", + "symbol": "FI", + "decimals": 18, + "name": "Fideum", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x1294f4183763743c7c9519bec51773fb3acd78fd.png", + "aggregators": ["PancakeCoinMarketCap", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x36e714d63b676236b72a0a4405f726337b06b6e5": { + "address": "0x36e714d63b676236b72a0a4405f726337b06b6e5", + "symbol": "GUT", + "decimals": 18, + "name": "Genesis Universe", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x36e714d63b676236b72a0a4405f726337b06b6e5.png", + "aggregators": ["PancakeCoinMarketCap", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x201bc9f242f74c47bbd898a5dc99cdcd81a21943": { + "address": "0x201bc9f242f74c47bbd898a5dc99cdcd81a21943", + "symbol": "IGU", + "decimals": 18, + "name": "IGU Token", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x201bc9f242f74c47bbd898a5dc99cdcd81a21943.png", + "aggregators": ["PancakeCoinMarketCap", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x257a8d1e03d17b8535a182301f15290f11674b53": { + "address": "0x257a8d1e03d17b8535a182301f15290f11674b53", + "symbol": "KWT", + "decimals": 18, + "name": "Kawaii Islands", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x257a8d1e03d17b8535a182301f15290f11674b53.png", + "aggregators": ["PancakeCoinMarketCap", "Rubic", "Rango"], + "occurrences": 3 + }, + "0xdd848e0cbfd3771dc7845b10072d973c375271e2": { + "address": "0xdd848e0cbfd3771dc7845b10072d973c375271e2", + "symbol": "LANC", + "decimals": 18, + "name": "Lanceria", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xdd848e0cbfd3771dc7845b10072d973c375271e2.png", + "aggregators": ["PancakeCoinMarketCap", "Rubic", "Rango"], + "occurrences": 3 + }, + "0xcebef3df1f3c5bfd90fde603e71f31a53b11944d": { + "address": "0xcebef3df1f3c5bfd90fde603e71f31a53b11944d", + "symbol": "LITT", + "decimals": 18, + "name": "LitLabToken", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xcebef3df1f3c5bfd90fde603e71f31a53b11944d.png", + "aggregators": ["PancakeCoinMarketCap", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x53f0e242ea207b6e9b63e0a53e788267aa99ff9b": { + "address": "0x53f0e242ea207b6e9b63e0a53e788267aa99ff9b", + "symbol": "MPG", + "decimals": 18, + "name": "Medping", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x53f0e242ea207b6e9b63e0a53e788267aa99ff9b.png", + "aggregators": ["PancakeCoinMarketCap", "Rubic", "Sonarwatch"], + "occurrences": 3 + }, + "0x6cda2862fd4b88ccfa522ffed66bc4277e7d9cc9": { + "address": "0x6cda2862fd4b88ccfa522ffed66bc4277e7d9cc9", + "symbol": "NEI", + "decimals": 18, + "name": "Neurashi", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x6cda2862fd4b88ccfa522ffed66bc4277e7d9cc9.png", + "aggregators": ["PancakeCoinMarketCap", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x3a2927e68749dd6ad0a568d7c05b587863c0bc10": { + "address": "0x3a2927e68749dd6ad0a568d7c05b587863c0bc10", + "symbol": "NNT", + "decimals": 18, + "name": "Nunu Spirits", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x3a2927e68749dd6ad0a568d7c05b587863c0bc10.png", + "aggregators": ["PancakeCoinMarketCap", "Rubic", "Rango"], + "occurrences": 3 + }, + "0xf1ca73caa1c7ad66af11147ba7d5636243af0493": { + "address": "0xf1ca73caa1c7ad66af11147ba7d5636243af0493", + "symbol": "REGU", + "decimals": 18, + "name": "Regular Presale", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xf1ca73caa1c7ad66af11147ba7d5636243af0493.png", + "aggregators": ["PancakeCoinMarketCap", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x87266413e5b64db72f11bb6795ee976545dbaf43": { + "address": "0x87266413e5b64db72f11bb6795ee976545dbaf43", + "symbol": "SHIBTC", + "decimals": 18, + "name": "Shibabitcoin", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x87266413e5b64db72f11bb6795ee976545dbaf43.png", + "aggregators": ["PancakeCoinMarketCap", "Rubic", "Rango"], + "occurrences": 3 + }, + "0xe2eb47954e821dc94e19013677004cd59be0b17f": { + "address": "0xe2eb47954e821dc94e19013677004cd59be0b17f", + "symbol": "TRL", + "decimals": 18, + "name": "Triall", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xe2eb47954e821dc94e19013677004cd59be0b17f.png", + "aggregators": ["PancakeCoinMarketCap", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x0a356f512f6fce740111ee04ab1699017a908680": { + "address": "0x0a356f512f6fce740111ee04ab1699017a908680", + "symbol": "UFARM", + "decimals": 18, + "name": "UniFarm", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x0a356f512f6fce740111ee04ab1699017a908680.png", + "aggregators": ["PancakeCoinMarketCap", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x50e756a22ff5cee3559d18b9d9576bc38f09fa7c": { + "address": "0x50e756a22ff5cee3559d18b9d9576bc38f09fa7c", + "symbol": "WARS", + "decimals": 18, + "name": "MetaWars", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x50e756a22ff5cee3559d18b9d9576bc38f09fa7c.png", + "aggregators": ["PancakeCoinMarketCap", "Rubic", "Rango"], + "occurrences": 3 + }, + "0xa19d3f4219e2ed6dc1cb595db20f70b8b6866734": { + "address": "0xa19d3f4219e2ed6dc1cb595db20f70b8b6866734", + "symbol": "WIRTUAL", + "decimals": 18, + "name": "Wirtual", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xa19d3f4219e2ed6dc1cb595db20f70b8b6866734.png", + "aggregators": ["PancakeCoinMarketCap", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x56aa0237244c67b9a854b4efe8479cca0b105289": { + "address": "0x56aa0237244c67b9a854b4efe8479cca0b105289", + "symbol": "WNOW", + "decimals": 18, + "name": "WalletNow", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x56aa0237244c67b9a854b4efe8479cca0b105289.png", + "aggregators": ["PancakeCoinMarketCap", "Rubic", "Rango"], + "occurrences": 3 + }, + "0xa83bfcf9e252adf1f39937984a4e113eda6e445b": { + "address": "0xa83bfcf9e252adf1f39937984a4e113eda6e445b", + "symbol": "PEFI", + "decimals": 18, + "name": "Plant Empires Token", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xa83bfcf9e252adf1f39937984a4e113eda6e445b.png", + "aggregators": ["PancakeCoinMarketCap", "Socket", "Rubic"], + "occurrences": 3 + }, + "0x3cb7378565718c64ab86970802140cc48ef1f969": { + "address": "0x3cb7378565718c64ab86970802140cc48ef1f969", + "symbol": "WING", + "decimals": 9, + "name": "Wing Token", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x3cb7378565718c64ab86970802140cc48ef1f969.png", + "aggregators": ["PancakeCoinMarketCap", "Socket", "Rubic"], + "occurrences": 3 + }, + "0x0df0587216a4a1bb7d5082fdc491d93d2dd4b413": { + "address": "0x0df0587216a4a1bb7d5082fdc491d93d2dd4b413", + "symbol": "CHEEMS", + "decimals": 18, + "name": "Cheems Token", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x0df0587216a4a1bb7d5082fdc491d93d2dd4b413.png", + "aggregators": [ + "PancakeExtended", + "1inch", + "Socket", + "Rubic", + "Squid", + "Rango", + "Sonarwatch" + ], + "occurrences": 7 + }, + "0xc9ccbd76c2353e593cc975f13295e8289d04d3bb": { + "address": "0xc9ccbd76c2353e593cc975f13295e8289d04d3bb", + "symbol": "F", + "decimals": 18, + "name": "SynFutures", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xc9ccbd76c2353e593cc975f13295e8289d04d3bb.png", + "aggregators": [ + "PancakeExtended", + "1inch", + "LiFi", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 7 + }, + "0xdbb5cf12408a3ac17d668037ce289f9ea75439d7": { + "address": "0xdbb5cf12408a3ac17d668037ce289f9ea75439d7", + "symbol": "WMTX", + "decimals": 6, + "name": "World Mobile Token", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xdbb5cf12408a3ac17d668037ce289f9ea75439d7.png", + "aggregators": [ + "Metamask", + "LiFi", + "Socket", + "Rubic", + "Squid", + "Rango", + "Sonarwatch" + ], + "occurrences": 7 + }, + "0x72faa679e1008ad8382959ff48e392042a8b06f7": { + "address": "0x72faa679e1008ad8382959ff48e392042a8b06f7", + "symbol": "BALBT", + "decimals": 18, + "name": "AllianceBlock Token", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x72faa679e1008ad8382959ff48e392042a8b06f7.png", + "aggregators": [ + "PancakeExtended", + "LiFi", + "TrustWallet", + "Socket", + "Rubic", + "Rango", + "SushiSwap" + ], + "occurrences": 7 + }, + "0x49f1d4db3ea1a64390e990c6debeac88eac007ca": { + "address": "0x49f1d4db3ea1a64390e990c6debeac88eac007ca", + "symbol": "ITHACA", + "decimals": 18, + "name": "Ithaca Protocol", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x49f1d4db3ea1a64390e990c6debeac88eac007ca.png", + "aggregators": [ + "CoinGecko", + "Socket", + "Rubic", + "Squid", + "Rango", + "Sonarwatch" + ], + "occurrences": 6 + }, + "0xc9f5955f6da20e44a068f3d58fb2404f56f9a6f2": { + "address": "0xc9f5955f6da20e44a068f3d58fb2404f56f9a6f2", + "symbol": "USDFI", + "decimals": 18, + "name": "USDFI", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xc9f5955f6da20e44a068f3d58fb2404f56f9a6f2.png", + "aggregators": [ + "PancakeCoinGecko", + "LiFi", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 6 + }, + "0xf9c4ff105803a77ecb5dae300871ad76c2794fa4": { + "address": "0xf9c4ff105803a77ecb5dae300871ad76c2794fa4", + "symbol": "PUMPBTC", + "decimals": 8, + "name": "pumpBTC", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xf9c4ff105803a77ecb5dae300871ad76c2794fa4.png", + "aggregators": [ + "PancakeCoinMarketCap", + "LiFi", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 6 + }, + "0x734d66f635523d7ddb7d2373c128333da313041b": { + "address": "0x734d66f635523d7ddb7d2373c128333da313041b", + "symbol": "USDZ", + "decimals": 9, + "name": "ZEDXION", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x734d66f635523d7ddb7d2373c128333da313041b.png", + "aggregators": [ + "PancakeCoinGecko", + "TrustWallet", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 6 + }, + "0x4d3dc895a9edb234dfa3e303a196c009dc918f84": { + "address": "0x4d3dc895a9edb234dfa3e303a196c009dc918f84", + "symbol": "ZBU", + "decimals": 18, + "name": "Zeebu", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x4d3dc895a9edb234dfa3e303a196c009dc918f84.png", + "aggregators": [ + "PancakeCoinMarketCap", + "LiFi", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 6 + }, + "0xb01cf1be9568f09449382a47cd5bf58e2a9d5922": { + "address": "0xb01cf1be9568f09449382a47cd5bf58e2a9d5922", + "symbol": "SPEED", + "decimals": 18, + "name": "Lightspeed", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xb01cf1be9568f09449382a47cd5bf58e2a9d5922.png", + "aggregators": [ + "CoinGecko", + "Socket", + "Rubic", + "Squid", + "Rango", + "Sonarwatch" + ], + "occurrences": 6 + }, + "0x9356086146be5158e98ad827e21b5cf944699894": { + "address": "0x9356086146be5158e98ad827e21b5cf944699894", + "symbol": "USDA", + "decimals": 18, + "name": "USDa", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x9356086146be5158e98ad827e21b5cf944699894.png", + "aggregators": [ + "PancakeExtended", + "LiFi", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 6 + }, + "0x4b6b3d425f82248996d77ecc3f3df1e500aac1db": { + "address": "0x4b6b3d425f82248996d77ecc3f3df1e500aac1db", + "symbol": "LQDR", + "decimals": 18, + "name": "LiquidDriver", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x4b6b3d425f82248996d77ecc3f3df1e500aac1db.png", + "aggregators": [ + "PancakeCoinMarketCap", + "LiFi", + "Rubic", + "Squid", + "Rango", + "Sonarwatch" + ], + "occurrences": 6 + }, + "0x6a661312938d22a2a0e27f585073e4406903990a": { + "address": "0x6a661312938d22a2a0e27f585073e4406903990a", + "symbol": "MAHA", + "decimals": 18, + "name": "Maha", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x6a661312938d22a2a0e27f585073e4406903990a.png", + "aggregators": [ + "PancakeCoinMarketCap", + "LiFi", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 6 + }, + "0x63870a18b6e42b01ef1ad8a2302ef50b7132054f": { + "address": "0x63870a18b6e42b01ef1ad8a2302ef50b7132054f", + "symbol": "BLINK", + "decimals": 6, + "name": "BLinkToken", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x63870a18b6e42b01ef1ad8a2302ef50b7132054f.png", + "aggregators": [ + "PancakeExtended", + "TrustWallet", + "Socket", + "Rubic", + "Rango", + "SushiSwap" + ], + "occurrences": 6 + }, + "0xdef1fac7bf08f173d286bbbdcbeeade695129840": { + "address": "0xdef1fac7bf08f173d286bbbdcbeeade695129840", + "symbol": "CERBY", + "decimals": 18, + "name": "Cerby Token", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xdef1fac7bf08f173d286bbbdcbeeade695129840.png", + "aggregators": [ + "PancakeCoinMarketCap", + "LiFi", + "Socket", + "Rubic", + "Rango", + "SushiSwap" + ], + "occurrences": 6 + }, + "0xa1303e6199b319a891b79685f0537d289af1fc83": { + "address": "0xa1303e6199b319a891b79685f0537d289af1fc83", + "symbol": "NAR", + "decimals": 18, + "name": "NAR Token", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xa1303e6199b319a891b79685f0537d289af1fc83.png", + "aggregators": [ + "PancakeCoinMarketCap", + "LiFi", + "Socket", + "Rubic", + "Rango", + "SushiSwap" + ], + "occurrences": 6 + }, + "0x8f49733210700d38098d7375c221c7d02f700cc8": { + "address": "0x8f49733210700d38098d7375c221c7d02f700cc8", + "symbol": "PALLA", + "decimals": 18, + "name": "Pallapay", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x8f49733210700d38098d7375c221c7d02f700cc8.png", + "aggregators": [ + "PancakeCoinMarketCap", + "1inch", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 6 + }, + "0xb8c540d00dd0bf76ea12e4b4b95efc90804f924e": { + "address": "0xb8c540d00dd0bf76ea12e4b4b95efc90804f924e", + "symbol": "QUSD", + "decimals": 18, + "name": "QUSD Stablecoin", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xb8c540d00dd0bf76ea12e4b4b95efc90804f924e.png", + "aggregators": [ + "PancakeCoinMarketCap", + "LiFi", + "Socket", + "Rubic", + "Rango", + "SushiSwap" + ], + "occurrences": 6 + }, + "0x988c11625472340b7b36ff1534893780e0d8d841": { + "address": "0x988c11625472340b7b36ff1534893780e0d8d841", + "symbol": "WCCX", + "decimals": 6, + "name": "WrappedConceal", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x988c11625472340b7b36ff1534893780e0d8d841.png", + "aggregators": [ + "PancakeCoinMarketCap", + "LiFi", + "Socket", + "Rubic", + "Rango", + "SushiSwap" + ], + "occurrences": 6 + }, + "0x541e619858737031a1244a5d0cd47e5ef480342c": { + "address": "0x541e619858737031a1244a5d0cd47e5ef480342c", + "symbol": "WSOTE", + "decimals": 18, + "name": "Soteria", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x541e619858737031a1244a5d0cd47e5ef480342c.png", + "aggregators": [ + "PancakeCoinMarketCap", + "LiFi", + "Socket", + "Rubic", + "Rango", + "SushiSwap" + ], + "occurrences": 6 + }, + "0xf215a127a196e3988c09d052e16bcfd365cd7aa3": { + "address": "0xf215a127a196e3988c09d052e16bcfd365cd7aa3", + "symbol": "MTSLA", + "decimals": 18, + "name": "Mirror TSLA Token", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xf215a127a196e3988c09d052e16bcfd365cd7aa3.png", + "aggregators": [ + "PancakeExtended", + "LiFi", + "Socket", + "Rubic", + "Rango", + "SushiSwap" + ], + "occurrences": 6 + }, + "0x0231f91e02debd20345ae8ab7d71a41f8e140ce7": { + "address": "0x0231f91e02debd20345ae8ab7d71a41f8e140ce7", + "symbol": "BWJUP", + "decimals": 18, + "name": "Jupiter", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x0231f91e02debd20345ae8ab7d71a41f8e140ce7.png", + "aggregators": [ + "PancakeCoinMarketCap", + "TrustWallet", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x07c15e4add8c23d2971380dde6c57b6f88902ec1": { + "address": "0x07c15e4add8c23d2971380dde6c57b6f88902ec1", + "symbol": "MARS", + "decimals": 18, + "name": "Metamars", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x07c15e4add8c23d2971380dde6c57b6f88902ec1.png", + "aggregators": [ + "PancakeCoinGecko", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x405be90996e7f995a08c2fbd8d8822ef5b03466c": { + "address": "0x405be90996e7f995a08c2fbd8d8822ef5b03466c", + "symbol": "JTS", + "decimals": 18, + "name": "Jetset", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x405be90996e7f995a08c2fbd8d8822ef5b03466c.png", + "aggregators": [ + "PancakeCoinMarketCap", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x6ec90334d89dbdc89e08a133271be3d104128edb": { + "address": "0x6ec90334d89dbdc89e08a133271be3d104128edb", + "symbol": "WKC", + "decimals": 18, + "name": "Wiki Cat", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x6ec90334d89dbdc89e08a133271be3d104128edb.png", + "aggregators": [ + "PancakeCoinMarketCap", + "Rubic", + "Squid", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x8888888888f004100c0353d657be6300587a6ccd": { + "address": "0x8888888888f004100c0353d657be6300587a6ccd", + "symbol": "ACS", + "decimals": 18, + "name": "ACryptoS", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x8888888888f004100c0353d657be6300587a6ccd.png", + "aggregators": [ + "PancakeCoinMarketCap", + "LiFi", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x55bde08af72cd693d1284b531f3f97dc81ecc334": { + "address": "0x55bde08af72cd693d1284b531f3f97dc81ecc334", + "symbol": "CAPY", + "decimals": 18, + "name": "capybara", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x55bde08af72cd693d1284b531f3f97dc81ecc334.png", + "aggregators": [ + "PancakeCoinGecko", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0xe50713c7a1487ff06a7d7a22a036ee7d1f02d5f8": { + "address": "0xe50713c7a1487ff06a7d7a22a036ee7d1f02d5f8", + "symbol": "CHOW", + "decimals": 18, + "name": "CHOW", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xe50713c7a1487ff06a7d7a22a036ee7d1f02d5f8.png", + "aggregators": [ + "PancakeCoinGecko", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0xc0d8daa6516bab4efce440860987e735bab44160": { + "address": "0xc0d8daa6516bab4efce440860987e735bab44160", + "symbol": "VUSD", + "decimals": 18, + "name": "Vow USD", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xc0d8daa6516bab4efce440860987e735bab44160.png", + "aggregators": [ + "PancakeCoinGecko", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0xfa4ba88cf97e282c505bea095297786c16070129": { + "address": "0xfa4ba88cf97e282c505bea095297786c16070129", + "symbol": "CUSD", + "decimals": 18, + "name": "Coin98 Dollar", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xfa4ba88cf97e282c505bea095297786c16070129.png", + "aggregators": [ + "PancakeCoinMarketCap", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0xae2df9f730c54400934c06a17462c41c08a06ed8": { + "address": "0xae2df9f730c54400934c06a17462c41c08a06ed8", + "symbol": "DOBO", + "decimals": 9, + "name": "DogeBonk", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xae2df9f730c54400934c06a17462c41c08a06ed8.png", + "aggregators": [ + "PancakeCoinMarketCap", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0xb68a20b9e9b06fde873897e12ab3372ce48f1a8a": { + "address": "0xb68a20b9e9b06fde873897e12ab3372ce48f1a8a", + "symbol": "$PLAY", + "decimals": 18, + "name": "Playdoge", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xb68a20b9e9b06fde873897e12ab3372ce48f1a8a.png", + "aggregators": [ + "PancakeCoinGecko", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x8bf75bc68fd337dfd8186d731df8b3c2cb14b9e6": { + "address": "0x8bf75bc68fd337dfd8186d731df8b3c2cb14b9e6", + "symbol": "STABLE", + "decimals": 18, + "name": "Stable", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x8bf75bc68fd337dfd8186d731df8b3c2cb14b9e6.png", + "aggregators": [ + "PancakeCoinGecko", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x4a2c860cec6471b9f5f5a336eb4f38bb21683c98": { + "address": "0x4a2c860cec6471b9f5f5a336eb4f38bb21683c98", + "symbol": "GST-BSC", + "decimals": 8, + "name": "STEPN Green Satoshi Token on BSC", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x4a2c860cec6471b9f5f5a336eb4f38bb21683c98.png", + "aggregators": [ + "PancakeCoinGecko", + "LiFi", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0xb43ac9a81eda5a5b36839d5b6fc65606815361b0": { + "address": "0xb43ac9a81eda5a5b36839d5b6fc65606815361b0", + "symbol": "SEN", + "decimals": 18, + "name": "Senspark (BNB)", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xb43ac9a81eda5a5b36839d5b6fc65606815361b0.png", + "aggregators": [ + "PancakeCoinGecko", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0xb020805e0bc7f0e353d1343d67a239f417d57bbf": { + "address": "0xb020805e0bc7f0e353d1343d67a239f417d57bbf", + "symbol": "KRD", + "decimals": 18, + "name": "Krypton DAO", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xb020805e0bc7f0e353d1343d67a239f417d57bbf.png", + "aggregators": [ + "PancakeCoinMarketCap", + "LiFi", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x64619f611248256f7f4b72fe83872f89d5d60d64": { + "address": "0x64619f611248256f7f4b72fe83872f89d5d60d64", + "symbol": "QUINT", + "decimals": 18, + "name": "Quint", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x64619f611248256f7f4b72fe83872f89d5d60d64.png", + "aggregators": [ + "PancakeCoinMarketCap", + "LiFi", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x7ffc1243232da3ac001994208e2002816b57c669": { + "address": "0x7ffc1243232da3ac001994208e2002816b57c669", + "symbol": "ZOO", + "decimals": 18, + "name": "CryptoZoo", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x7ffc1243232da3ac001994208e2002816b57c669.png", + "aggregators": [ + "PancakeCoinGecko", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x9d173e6c594f479b4d47001f8e6a95a7adda42bc": { + "address": "0x9d173e6c594f479b4d47001f8e6a95a7adda42bc", + "symbol": "ZOON", + "decimals": 18, + "name": "CryptoZoon", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x9d173e6c594f479b4d47001f8e6a95a7adda42bc.png", + "aggregators": [ + "PancakeCoinMarketCap", + "LiFi", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0xc45c56bf1aaf119a3c266f97bb28bf19646d0b1d": { + "address": "0xc45c56bf1aaf119a3c266f97bb28bf19646d0b1d", + "symbol": "SELF", + "decimals": 0, + "name": "Self Token", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xc45c56bf1aaf119a3c266f97bb28bf19646d0b1d.png", + "aggregators": [ + "PancakeCoinGecko", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0xe66fd34c0f8726a5eb97f6d45c5a5df4d57d39fc": { + "address": "0xe66fd34c0f8726a5eb97f6d45c5a5df4d57d39fc", + "symbol": "BABYTRUMP", + "decimals": 9, + "name": "Baby Trump (BSC)", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xe66fd34c0f8726a5eb97f6d45c5a5df4d57d39fc.png", + "aggregators": [ + "PancakeCoinGecko", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0xaf8e0bce56615edf2810fab024c307de352a431f": { + "address": "0xaf8e0bce56615edf2810fab024c307de352a431f", + "symbol": "CAT", + "decimals": 9, + "name": "CAT INU", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xaf8e0bce56615edf2810fab024c307de352a431f.png", + "aggregators": [ + "PancakeCoinGecko", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x3e098c23dcfbbe0a3f468a6bed1cf1a59dc1770d": { + "address": "0x3e098c23dcfbbe0a3f468a6bed1cf1a59dc1770d", + "symbol": "YU", + "decimals": 18, + "name": "BountyKinds YU", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x3e098c23dcfbbe0a3f468a6bed1cf1a59dc1770d.png", + "aggregators": [ + "PancakeCoinMarketCap", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x23c5d1164662758b3799103effe19cc064d897d6": { + "address": "0x23c5d1164662758b3799103effe19cc064d897d6", + "symbol": "AURA", + "decimals": 6, + "name": "Aura Network [OLD]", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x23c5d1164662758b3799103effe19cc064d897d6.png", + "aggregators": [ + "PancakeCoinGecko", + "LiFi", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x95c91eef65f50570cfc3f269961a00108cf7bf59": { + "address": "0x95c91eef65f50570cfc3f269961a00108cf7bf59", + "symbol": "DONS", + "decimals": 18, + "name": "The DONS", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x95c91eef65f50570cfc3f269961a00108cf7bf59.png", + "aggregators": [ + "PancakeCoinMarketCap", + "TrustWallet", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x086ddd008e20dd74c4fb216170349853f8ca8289": { + "address": "0x086ddd008e20dd74c4fb216170349853f8ca8289", + "symbol": "MBE", + "decimals": 18, + "name": "MxmBoxcEus Token", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x086ddd008e20dd74c4fb216170349853f8ca8289.png", + "aggregators": [ + "PancakeCoinMarketCap", + "LiFi", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x92ed61fb8955cc4e392781cb8b7cd04aadc43d0c": { + "address": "0x92ed61fb8955cc4e392781cb8b7cd04aadc43d0c", + "symbol": "OGGY", + "decimals": 9, + "name": "Oggy Inu", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x92ed61fb8955cc4e392781cb8b7cd04aadc43d0c.png", + "aggregators": [ + "PancakeCoinGecko", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0xa6c59de838f1eeb82d86f5af0750f5f656439999": { + "address": "0xa6c59de838f1eeb82d86f5af0750f5f656439999", + "symbol": "NEXT", + "decimals": 18, + "name": "ShopNext Loyalty Token", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xa6c59de838f1eeb82d86f5af0750f5f656439999.png", + "aggregators": [ + "PancakeCoinGecko", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0xed6af21df463c7f116a6d7d687a4c190c4cf7586": { + "address": "0xed6af21df463c7f116a6d7d687a4c190c4cf7586", + "symbol": "FU", + "decimals": 18, + "name": "FU", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xed6af21df463c7f116a6d7d687a4c190c4cf7586.png", + "aggregators": [ + "PancakeCoinGecko", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0xc0ecb8499d8da2771abcbf4091db7f65158f1468": { + "address": "0xc0ecb8499d8da2771abcbf4091db7f65158f1468", + "symbol": "SWTH", + "decimals": 8, + "name": "Carbon Protocol", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xc0ecb8499d8da2771abcbf4091db7f65158f1468.png", + "aggregators": [ + "PancakeExtended", + "LiFi", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x0b33542240d6fa323c796749f6d6869fdb7f13ca": { + "address": "0x0b33542240d6fa323c796749f6d6869fdb7f13ca", + "symbol": "ETHM", + "decimals": 18, + "name": "Ethereum Meta", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x0b33542240d6fa323c796749f6d6869fdb7f13ca.png", + "aggregators": [ + "PancakeCoinGecko", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0xc2c28b58db223da89b567a0a98197fc17c115148": { + "address": "0xc2c28b58db223da89b567a0a98197fc17c115148", + "symbol": "SOLO", + "decimals": 15, + "name": "Sologenic", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xc2c28b58db223da89b567a0a98197fc17c115148.png", + "aggregators": [ + "PancakeCoinMarketCap", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0xc2c23a86def9e9f5972a633b3d25f7ecbfa5e575": { + "address": "0xc2c23a86def9e9f5972a633b3d25f7ecbfa5e575", + "symbol": "LAYER", + "decimals": 18, + "name": "UniLayer", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xc2c23a86def9e9f5972a633b3d25f7ecbfa5e575.png", + "aggregators": [ + "PancakeCoinGecko", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x0a232cb2005bda62d3de7ab5deb3ffe4c456165a": { + "address": "0x0a232cb2005bda62d3de7ab5deb3ffe4c456165a", + "symbol": "FVT", + "decimals": 18, + "name": "Finance Vote", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x0a232cb2005bda62d3de7ab5deb3ffe4c456165a.png", + "aggregators": [ + "PancakeCoinGecko", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x9fdc3ae5c814b79dca2556564047c5e7e5449c19": { + "address": "0x9fdc3ae5c814b79dca2556564047c5e7e5449c19", + "symbol": "$DG", + "decimals": 18, + "name": "decentral.games on xDai from xDai", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x9fdc3ae5c814b79dca2556564047c5e7e5449c19.png", + "aggregators": [ + "PancakeExtended", + "LiFi", + "Socket", + "Rubic", + "Rango" + ], + "occurrences": 5 + }, + "0x50de6856358cc35f3a9a57eaaa34bd4cb707d2cd": { + "address": "0x50de6856358cc35f3a9a57eaaa34bd4cb707d2cd", + "symbol": "RAZOR", + "decimals": 18, + "name": "Razor Network", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x50de6856358cc35f3a9a57eaaa34bd4cb707d2cd.png", + "aggregators": [ + "PancakeCoinGecko", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x5fb4968fc85868df3ad2d6e59883a10570f01d18": { + "address": "0x5fb4968fc85868df3ad2d6e59883a10570f01d18", + "symbol": "SHR", + "decimals": 18, + "name": "Share", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x5fb4968fc85868df3ad2d6e59883a10570f01d18.png", + "aggregators": [ + "PancakeCoinGecko", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x94a8b4ee5cd64c79d0ee816f467ea73009f51aa0": { + "address": "0x94a8b4ee5cd64c79d0ee816f467ea73009f51aa0", + "symbol": "RIO", + "decimals": 18, + "name": "Realio Network Token", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x94a8b4ee5cd64c79d0ee816f467ea73009f51aa0.png", + "aggregators": [ + "CoinGecko", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x198abb2d13faa2e52e577d59209b5c23c20cd6b3": { + "address": "0x198abb2d13faa2e52e577d59209b5c23c20cd6b3", + "symbol": "BAMBOO", + "decimals": 18, + "name": "Bamboo DeFi", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x198abb2d13faa2e52e577d59209b5c23c20cd6b3.png", + "aggregators": [ + "PancakeCoinMarketCap", + "LiFi", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0xf9d906a8dd25c4a4966bc075cdc946702219e62c": { + "address": "0xf9d906a8dd25c4a4966bc075cdc946702219e62c", + "symbol": "YIELD", + "decimals": 18, + "name": "Yield Protocol", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xf9d906a8dd25c4a4966bc075cdc946702219e62c.png", + "aggregators": [ + "PancakeCoinGecko", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x99c6e435ec259a7e8d65e1955c9423db624ba54c": { + "address": "0x99c6e435ec259a7e8d65e1955c9423db624ba54c", + "symbol": "FMT", + "decimals": 18, + "name": "Finminity", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x99c6e435ec259a7e8d65e1955c9423db624ba54c.png", + "aggregators": [ + "PancakeCoinGecko", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x93b30f6d5c2eed35950498f71235a749e6f0540c": { + "address": "0x93b30f6d5c2eed35950498f71235a749e6f0540c", + "symbol": "LOVELY", + "decimals": 18, + "name": "Lovely Inu Finance", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x93b30f6d5c2eed35950498f71235a749e6f0540c.png", + "aggregators": [ + "PancakeCoinGecko", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x180dae91d6d56235453a892d2e56a3e40ba81df8": { + "address": "0x180dae91d6d56235453a892d2e56a3e40ba81df8", + "symbol": "DOJO", + "decimals": 18, + "name": "DOJO", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x180dae91d6d56235453a892d2e56a3e40ba81df8.png", + "aggregators": [ + "PancakeCoinGecko", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x790cfdc6ab2e0ee45a433aac5434f183be1f6a20": { + "address": "0x790cfdc6ab2e0ee45a433aac5434f183be1f6a20", + "symbol": "PLR", + "decimals": 18, + "name": "Pillar", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x790cfdc6ab2e0ee45a433aac5434f183be1f6a20.png", + "aggregators": [ + "PancakeCoinGecko", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0xdea12c8c23994ea2d88ed99ee1bdc0ff56f7f9d1": { + "address": "0xdea12c8c23994ea2d88ed99ee1bdc0ff56f7f9d1", + "symbol": "L3USD", + "decimals": 18, + "name": "L3USD", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xdea12c8c23994ea2d88ed99ee1bdc0ff56f7f9d1.png", + "aggregators": [ + "PancakeCoinMarketCap", + "LiFi", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0xbc7370641ddcf16a27eea11230af4a9f247b61f9": { + "address": "0xbc7370641ddcf16a27eea11230af4a9f247b61f9", + "symbol": "XETA", + "decimals": 18, + "name": "XANA", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xbc7370641ddcf16a27eea11230af4a9f247b61f9.png", + "aggregators": [ + "PancakeCoinGecko", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0xb53cc8303943582949b9a23f0556b0f0c41fec98": { + "address": "0xb53cc8303943582949b9a23f0556b0f0c41fec98", + "symbol": "OMNIA", + "decimals": 18, + "name": "Omnia Protocol", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xb53cc8303943582949b9a23f0556b0f0c41fec98.png", + "aggregators": [ + "PancakeCoinGecko", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x56d06a78ef8e95d6043341f24759e2834be6f97b": { + "address": "0x56d06a78ef8e95d6043341f24759e2834be6f97b", + "symbol": "DZOO", + "decimals": 18, + "name": "Degen Zoo", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x56d06a78ef8e95d6043341f24759e2834be6f97b.png", + "aggregators": [ + "PancakeCoinMarketCap", + "LiFi", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0xce1e3cc1950d2aaeb47de04de2dec2dc86380e0a": { + "address": "0xce1e3cc1950d2aaeb47de04de2dec2dc86380e0a", + "symbol": "ERN", + "decimals": 18, + "name": "Ethos Reserve Note", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xce1e3cc1950d2aaeb47de04de2dec2dc86380e0a.png", + "aggregators": [ + "PancakeCoinGecko", + "Rubic", + "Squid", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x644192291cc835a93d6330b24ea5f5fedd0eef9e": { + "address": "0x644192291cc835a93d6330b24ea5f5fedd0eef9e", + "symbol": "NXRA", + "decimals": 18, + "name": "Nexera", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x644192291cc835a93d6330b24ea5f5fedd0eef9e.png", + "aggregators": [ + "PancakeCoinMarketCap", + "LiFi", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x3419875b4d3bca7f3fdda2db7a476a79fd31b4fe": { + "address": "0x3419875b4d3bca7f3fdda2db7a476a79fd31b4fe", + "symbol": "DZHV", + "decimals": 18, + "name": "DizzyHavoc", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x3419875b4d3bca7f3fdda2db7a476a79fd31b4fe.png", + "aggregators": [ + "PancakeCoinGecko", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0xc71b5f631354be6853efe9c3ab6b9590f8302e81": { + "address": "0xc71b5f631354be6853efe9c3ab6b9590f8302e81", + "symbol": "ZKJ", + "decimals": 18, + "name": "Polyhedra Network", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xc71b5f631354be6853efe9c3ab6b9590f8302e81.png", + "aggregators": [ + "PancakeExtended", + "1inch", + "Socket", + "Rubic", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0xc6c58f600917de512cd02d2b6ed595ab54b4c30f": { + "address": "0xc6c58f600917de512cd02d2b6ed595ab54b4c30f", + "symbol": "DOGEVERSE", + "decimals": 18, + "name": "DogeVerse", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xc6c58f600917de512cd02d2b6ed595ab54b4c30f.png", + "aggregators": [ + "PancakeCoinGecko", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x6b2a01a5f79deb4c2f3c0eda7b01df456fbd726a": { + "address": "0x6b2a01a5f79deb4c2f3c0eda7b01df456fbd726a", + "symbol": "UNIBTC", + "decimals": 8, + "name": "uniBTC", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x6b2a01a5f79deb4c2f3c0eda7b01df456fbd726a.png", + "aggregators": [ + "PancakeExtended", + "LiFi", + "Rubic", + "Squid", + "Rango" + ], + "occurrences": 5 + }, + "0xecac9c5f704e954931349da37f60e39f515c11c1": { + "address": "0xecac9c5f704e954931349da37f60e39f515c11c1", + "symbol": "LBTC", + "decimals": 8, + "name": "LBTC", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xecac9c5f704e954931349da37f60e39f515c11c1.png", + "aggregators": [ + "PancakeExtended", + "LiFi", + "Socket", + "Rubic", + "Rango" + ], + "occurrences": 5 + }, + "0x0e37d70b51ffa2b98b4d34a5712c5291115464e3": { + "address": "0x0e37d70b51ffa2b98b4d34a5712c5291115464e3", + "symbol": "IQ", + "decimals": 18, + "name": "IQ", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x0e37d70b51ffa2b98b4d34a5712c5291115464e3.png", + "aggregators": [ + "PancakeCoinGecko", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x19c91764a976ac6c1e2c2e4c5856f2939342a814": { + "address": "0x19c91764a976ac6c1e2c2e4c5856f2939342a814", + "symbol": "PAR", + "decimals": 18, + "name": "Parachute", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x19c91764a976ac6c1e2c2e4c5856f2939342a814.png", + "aggregators": [ + "PancakeCoinGecko", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0xc1165227519ffd22fdc77ceb1037b9b284eef068": { + "address": "0xc1165227519ffd22fdc77ceb1037b9b284eef068", + "symbol": "BNSD", + "decimals": 18, + "name": "BNSD Finance", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xc1165227519ffd22fdc77ceb1037b9b284eef068.png", + "aggregators": [ + "PancakeCoinGecko", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x6e9730ecffbed43fd876a264c982e254ef05a0de": { + "address": "0x6e9730ecffbed43fd876a264c982e254ef05a0de", + "symbol": "NORD", + "decimals": 18, + "name": "Nord Finance", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x6e9730ecffbed43fd876a264c982e254ef05a0de.png", + "aggregators": [ + "PancakeCoinGecko", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0xf03a2dc374d494fbe894563fe22ee544d826aa50": { + "address": "0xf03a2dc374d494fbe894563fe22ee544d826aa50", + "symbol": "RADAR", + "decimals": 18, + "name": "Radar", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xf03a2dc374d494fbe894563fe22ee544d826aa50.png", + "aggregators": [ + "PancakeCoinGecko", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0xa5ff48e326958e0ce6fdf9518de561f2b5f57da3": { + "address": "0xa5ff48e326958e0ce6fdf9518de561f2b5f57da3", + "symbol": "LKR", + "decimals": 18, + "name": "Lokr", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xa5ff48e326958e0ce6fdf9518de561f2b5f57da3.png", + "aggregators": [ + "PancakeCoinGecko", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0xf7686f43591302cd9b4b9c4fe1291473fae7d9c9": { + "address": "0xf7686f43591302cd9b4b9c4fe1291473fae7d9c9", + "symbol": "LSS", + "decimals": 18, + "name": "Lossless", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xf7686f43591302cd9b4b9c4fe1291473fae7d9c9.png", + "aggregators": [ + "PancakeCoinGecko", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0xb1547683da678f2e1f003a780143ec10af8a832b": { + "address": "0xb1547683da678f2e1f003a780143ec10af8a832b", + "symbol": "SHIB", + "decimals": 18, + "name": "Shiba Inu (Wormhole)", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xb1547683da678f2e1f003a780143ec10af8a832b.png", + "aggregators": [ + "PancakeCoinGecko", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x4db5a66e937a9f4473fa95b1caf1d1e1d62e29ea": { + "address": "0x4db5a66e937a9f4473fa95b1caf1d1e1d62e29ea", + "symbol": "ETH", + "decimals": 18, + "name": "Ethereum (Wormhole)", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x4db5a66e937a9f4473fa95b1caf1d1e1d62e29ea.png", + "aggregators": [ + "PancakeCoinMarketCap", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0xd6f28f15a5cafc8d29556393c08177124b88de0d": { + "address": "0xd6f28f15a5cafc8d29556393c08177124b88de0d", + "symbol": "SPELLFIRE", + "decimals": 18, + "name": "Spellfire", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xd6f28f15a5cafc8d29556393c08177124b88de0d.png", + "aggregators": [ + "PancakeCoinMarketCap", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x7c63f96feafacd84e75a594c00fac3693386fbf0": { + "address": "0x7c63f96feafacd84e75a594c00fac3693386fbf0", + "symbol": "ASS", + "decimals": 9, + "name": "Australian Safe Shepherd", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x7c63f96feafacd84e75a594c00fac3693386fbf0.png", + "aggregators": [ + "PancakeCoinMarketCap", + "Rubic", + "Squid", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x0615dbba33fe61a31c7ed131bda6655ed76748b1": { + "address": "0x0615dbba33fe61a31c7ed131bda6655ed76748b1", + "symbol": "BACON", + "decimals": 18, + "name": "BaconDAO", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x0615dbba33fe61a31c7ed131bda6655ed76748b1.png", + "aggregators": [ + "PancakeCoinGecko", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0xbbbbbbe1da5eab142b32f8887ee8d3872d847c20": { + "address": "0xbbbbbbe1da5eab142b32f8887ee8d3872d847c20", + "symbol": "BBONK", + "decimals": 18, + "name": "BitBonk", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xbbbbbbe1da5eab142b32f8887ee8d3872d847c20.png", + "aggregators": [ + "PancakeCoinGecko", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x518445f0db93863e5e93a7f70617c05afa8048f1": { + "address": "0x518445f0db93863e5e93a7f70617c05afa8048f1", + "symbol": "BITT", + "decimals": 18, + "name": "BITT", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x518445f0db93863e5e93a7f70617c05afa8048f1.png", + "aggregators": [ + "PancakeCoinMarketCap", + "Rubic", + "Squid", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0xc03fbf20a586fa89c2a5f6f941458e1fbc40c661": { + "address": "0xc03fbf20a586fa89c2a5f6f941458e1fbc40c661", + "symbol": "COMBO", + "decimals": 18, + "name": "COMBO", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xc03fbf20a586fa89c2a5f6f941458e1fbc40c661.png", + "aggregators": [ + "PancakeCoinMarketCap", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x1a3264f2e7b1cfc6220ec9348d33ccf02af7aaa4": { + "address": "0x1a3264f2e7b1cfc6220ec9348d33ccf02af7aaa4", + "symbol": "DYP", + "decimals": 18, + "name": "Dypius", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x1a3264f2e7b1cfc6220ec9348d33ccf02af7aaa4.png", + "aggregators": [ + "PancakeCoinGecko", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x8f87a7d376821c7b2658a005aaf190ec778bf37a": { + "address": "0x8f87a7d376821c7b2658a005aaf190ec778bf37a", + "symbol": "GRAIN", + "decimals": 18, + "name": "Granary", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x8f87a7d376821c7b2658a005aaf190ec778bf37a.png", + "aggregators": [ + "PancakeCoinGecko", + "Rubic", + "Squid", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x2e53414853f058a9bc14e052431008483bd85b4c": { + "address": "0x2e53414853f058a9bc14e052431008483bd85b4c", + "symbol": "GROK", + "decimals": 9, + "name": "Grok Codes", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x2e53414853f058a9bc14e052431008483bd85b4c.png", + "aggregators": [ + "PancakeCoinGecko", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0xac5d23ce5e4a5eb11a5407a5fbee201a75e8c8ad": { + "address": "0xac5d23ce5e4a5eb11a5407a5fbee201a75e8c8ad", + "symbol": "IM", + "decimals": 18, + "name": "Internet Money (BSC)", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xac5d23ce5e4a5eb11a5407a5fbee201a75e8c8ad.png", + "aggregators": [ + "PancakeCoinGecko", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x0c08638473cafbca3beb113616a1871f4bfad4f9": { + "address": "0x0c08638473cafbca3beb113616a1871f4bfad4f9", + "symbol": "LSHARE", + "decimals": 18, + "name": "LIF3 LSHARE", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x0c08638473cafbca3beb113616a1871f4bfad4f9.png", + "aggregators": [ + "PancakeCoinMarketCap", + "LiFi", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0xe05d1c28b3f8127b5b058f101198ede30fe3961d": { + "address": "0xe05d1c28b3f8127b5b058f101198ede30fe3961d", + "symbol": "MSI", + "decimals": 18, + "name": "Martin Shkreli Inu", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xe05d1c28b3f8127b5b058f101198ede30fe3961d.png", + "aggregators": [ + "PancakeCoinGecko", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x73f4c95af5c2892253c068850b8c9a753636f58d": { + "address": "0x73f4c95af5c2892253c068850b8c9a753636f58d", + "symbol": "OATH", + "decimals": 18, + "name": "OATH", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x73f4c95af5c2892253c068850b8c9a753636f58d.png", + "aggregators": [ + "PancakeCoinGecko", + "Rubic", + "Squid", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x57022edd5c7ed7b6bd870488853fe961dfdd3fb6": { + "address": "0x57022edd5c7ed7b6bd870488853fe961dfdd3fb6", + "symbol": "PLX", + "decimals": 18, + "name": "Octaplex Network", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x57022edd5c7ed7b6bd870488853fe961dfdd3fb6.png", + "aggregators": [ + "PancakeCoinMarketCap", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x77018282fd033daf370337a5367e62d8811bc885": { + "address": "0x77018282fd033daf370337a5367e62d8811bc885", + "symbol": "POOLZ", + "decimals": 18, + "name": "Poolz Finance [OLD]", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x77018282fd033daf370337a5367e62d8811bc885.png", + "aggregators": [ + "PancakeCoinGecko", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x40f906e19b14100d5247686e08053c4873c66192": { + "address": "0x40f906e19b14100d5247686e08053c4873c66192", + "symbol": "SUGARB", + "decimals": 18, + "name": "Sugarblock.ai", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x40f906e19b14100d5247686e08053c4873c66192.png", + "aggregators": [ + "PancakeCoinMarketCap", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x51707dc661630f8fd624b985fa6ef4f1d4d919db": { + "address": "0x51707dc661630f8fd624b985fa6ef4f1d4d919db", + "symbol": "UNV", + "decimals": 18, + "name": "Unvest", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x51707dc661630f8fd624b985fa6ef4f1d4d919db.png", + "aggregators": [ + "PancakeCoinGecko", + "Rubic", + "Squid", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x9a5350edf28c1f93bb36d6e94b5c425fde8e222d": { + "address": "0x9a5350edf28c1f93bb36d6e94b5c425fde8e222d", + "symbol": "USDV", + "decimals": 6, + "name": "Vyvo US Dollar", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x9a5350edf28c1f93bb36d6e94b5c425fde8e222d.png", + "aggregators": [ + "PancakeCoinGecko", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0xdde5b33a56f3f1c22e5a6bd8429e6ad508bff24e": { + "address": "0xdde5b33a56f3f1c22e5a6bd8429e6ad508bff24e", + "symbol": "VNDC", + "decimals": 0, + "name": "VNDC", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xdde5b33a56f3f1c22e5a6bd8429e6ad508bff24e.png", + "aggregators": [ + "PancakeCoinGecko", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x304b5845b9114182ecb4495be4c91a273b74b509": { + "address": "0x304b5845b9114182ecb4495be4c91a273b74b509", + "symbol": "YNBNB", + "decimals": 18, + "name": "YieldNest Restaked BNB", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x304b5845b9114182ecb4495be4c91a273b74b509.png", + "aggregators": [ + "PancakeExtended", + "LiFi", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x747c8de898c595bdd74a9be3c28d5ac90acd1092": { + "address": "0x747c8de898c595bdd74a9be3c28d5ac90acd1092", + "symbol": "ZKE", + "decimals": 18, + "name": "zkEra Finance", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x747c8de898c595bdd74a9be3c28d5ac90acd1092.png", + "aggregators": [ + "PancakeCoinGecko", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x9a3321e1acd3b9f6debee5e042dd2411a1742002": { + "address": "0x9a3321e1acd3b9f6debee5e042dd2411a1742002", + "symbol": "AFP", + "decimals": 18, + "name": "PIGS Token", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x9a3321e1acd3b9f6debee5e042dd2411a1742002.png", + "aggregators": [ + "PancakeCoinMarketCap", + "1inch", + "Socket", + "Rubic", + "Rango" + ], + "occurrences": 5 + }, + "0xd8a2ae43fd061d24acd538e3866ffc2c05151b53": { + "address": "0xd8a2ae43fd061d24acd538e3866ffc2c05151b53", + "symbol": "AIR", + "decimals": 18, + "name": "AIR", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xd8a2ae43fd061d24acd538e3866ffc2c05151b53.png", + "aggregators": [ + "PancakeCoinMarketCap", + "1inch", + "Socket", + "Rubic", + "Rango" + ], + "occurrences": 5 + }, + "0x83b79f74f225e8f9a29fc67cb1678e7909d7d73d": { + "address": "0x83b79f74f225e8f9a29fc67cb1678e7909d7d73d", + "symbol": "AVA", + "decimals": 18, + "name": "Avatly", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x83b79f74f225e8f9a29fc67cb1678e7909d7d73d.png", + "aggregators": [ + "PancakeCoinMarketCap", + "1inch", + "Socket", + "Rubic", + "Rango" + ], + "occurrences": 5 + }, + "0x81859801b01764d4f0fa5e64729f5a6c3b91435b": { + "address": "0x81859801b01764d4f0fa5e64729f5a6c3b91435b", + "symbol": "BFI", + "decimals": 18, + "name": "bearn.fi", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x81859801b01764d4f0fa5e64729f5a6c3b91435b.png", + "aggregators": [ + "PancakeExtended", + "LiFi", + "TrustWallet", + "Rubic", + "Rango" + ], + "occurrences": 5 + }, + "0xda20c8a5c3b1ab48e31ba6e43f0f2830e50218d8": { + "address": "0xda20c8a5c3b1ab48e31ba6e43f0f2830e50218d8", + "symbol": "BINGUS", + "decimals": 9, + "name": "Bingus Token", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xda20c8a5c3b1ab48e31ba6e43f0f2830e50218d8.png", + "aggregators": [ + "PancakeCoinMarketCap", + "1inch", + "Socket", + "Rubic", + "Rango" + ], + "occurrences": 5 + }, + "0xebc76079da0c245fae7225b58a57a54809b40618": { + "address": "0xebc76079da0c245fae7225b58a57a54809b40618", + "symbol": "BPAY", + "decimals": 9, + "name": "BNBPay", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xebc76079da0c245fae7225b58a57a54809b40618.png", + "aggregators": [ + "PancakeCoinMarketCap", + "1inch", + "Socket", + "Rubic", + "Rango" + ], + "occurrences": 5 + }, + "0xd1102332a213e21faf78b69c03572031f3552c33": { + "address": "0xd1102332a213e21faf78b69c03572031f3552c33", + "symbol": "BTD", + "decimals": 18, + "name": "BTD", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xd1102332a213e21faf78b69c03572031f3552c33.png", + "aggregators": [ + "PancakeCoinMarketCap", + "1inch", + "LiFi", + "Rubic", + "Rango" + ], + "occurrences": 5 + }, + "0x211ffbe424b90e25a15531ca322adf1559779e45": { + "address": "0x211ffbe424b90e25a15531ca322adf1559779e45", + "symbol": "BUX", + "decimals": 18, + "name": "BUX Token", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x211ffbe424b90e25a15531ca322adf1559779e45.png", + "aggregators": ["PancakeExtended", "LiFi", "Socket", "Rubic"], + "occurrences": 4 + }, + "0xb6b91269413b6b99242b1c0bc611031529999999": { + "address": "0xb6b91269413b6b99242b1c0bc611031529999999", + "symbol": "CALO", + "decimals": 18, + "name": "CALO", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xb6b91269413b6b99242b1c0bc611031529999999.png", + "aggregators": [ + "PancakeCoinMarketCap", + "1inch", + "Socket", + "Rubic", + "Rango" + ], + "occurrences": 5 + }, + "0x2a1d286ed5edad78befd6e0d8beb38791e8cd69d": { + "address": "0x2a1d286ed5edad78befd6e0d8beb38791e8cd69d", + "symbol": "CLIMB", + "decimals": 8, + "name": "Climb Token Finance", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x2a1d286ed5edad78befd6e0d8beb38791e8cd69d.png", + "aggregators": [ + "PancakeCoinMarketCap", + "1inch", + "Socket", + "Rubic", + "Rango" + ], + "occurrences": 5 + }, + "0x74b3abb94e9e1ecc25bd77d6872949b4a9b2aacf": { + "address": "0x74b3abb94e9e1ecc25bd77d6872949b4a9b2aacf", + "symbol": "DFX", + "decimals": 18, + "name": "DeFireX on BSC", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x74b3abb94e9e1ecc25bd77d6872949b4a9b2aacf.png", + "aggregators": [ + "PancakeCoinMarketCap", + "1inch", + "Socket", + "Rubic", + "Rango" + ], + "occurrences": 5 + }, + "0x375483cfa7fc18f6b455e005d835a8335fbdbb1f": { + "address": "0x375483cfa7fc18f6b455e005d835a8335fbdbb1f", + "symbol": "ECP", + "decimals": 9, + "name": "Eclipse", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x375483cfa7fc18f6b455e005d835a8335fbdbb1f.png", + "aggregators": [ + "PancakeCoinMarketCap", + "1inch", + "Socket", + "Rubic", + "Rango" + ], + "occurrences": 5 + }, + "0xaff9084f2374585879e8b434c399e29e80cce635": { + "address": "0xaff9084f2374585879e8b434c399e29e80cce635", + "symbol": "FLUX", + "decimals": 8, + "name": "FLUX", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xaff9084f2374585879e8b434c399e29e80cce635.png", + "aggregators": [ + "PancakeCoinMarketCap", + "LiFi", + "Socket", + "Rubic", + "Rango" + ], + "occurrences": 5 + }, + "0xee738a9e5fb78c24d26cecd30389ed977c38d0ca": { + "address": "0xee738a9e5fb78c24d26cecd30389ed977c38d0ca", + "symbol": "FSAFE", + "decimals": 9, + "name": "Fair Safe", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xee738a9e5fb78c24d26cecd30389ed977c38d0ca.png", + "aggregators": [ + "PancakeCoinMarketCap", + "1inch", + "Socket", + "Rubic", + "Rango" + ], + "occurrences": 5 + }, + "0x182c763a4b2fbd18c9b5f2d18102a0ddd9d5df26": { + "address": "0x182c763a4b2fbd18c9b5f2d18102a0ddd9d5df26", + "symbol": "HOGL", + "decimals": 18, + "name": "HOGL Finance", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x182c763a4b2fbd18c9b5f2d18102a0ddd9d5df26.png", + "aggregators": [ + "PancakeCoinMarketCap", + "1inch", + "Socket", + "Rubic", + "Rango" + ], + "occurrences": 5 + }, + "0x0a3bb08b3a15a19b4de82f8acfc862606fb69a2d": { + "address": "0x0a3bb08b3a15a19b4de82f8acfc862606fb69a2d", + "symbol": "IUSD", + "decimals": 18, + "name": "IUSD", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x0a3bb08b3a15a19b4de82f8acfc862606fb69a2d.png", + "aggregators": [ + "PancakeCoinMarketCap", + "LiFi", + "Socket", + "Rubic", + "Rango" + ], + "occurrences": 5 + }, + "0x32dffc3fe8e3ef3571bf8a72c0d0015c5373f41d": { + "address": "0x32dffc3fe8e3ef3571bf8a72c0d0015c5373f41d", + "symbol": "JULB", + "decimals": 18, + "name": "JULB", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x32dffc3fe8e3ef3571bf8a72c0d0015c5373f41d.png", + "aggregators": [ + "PancakeCoinMarketCap", + "1inch", + "LiFi", + "Rubic", + "Rango" + ], + "occurrences": 5 + }, + "0xe5a09784b16e1065c37df14c6e2f06fdce317a1b": { + "address": "0xe5a09784b16e1065c37df14c6e2f06fdce317a1b", + "symbol": "KAIINU", + "decimals": 9, + "name": "Kai Inu", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xe5a09784b16e1065c37df14c6e2f06fdce317a1b.png", + "aggregators": [ + "PancakeCoinMarketCap", + "1inch", + "Socket", + "Rubic", + "Rango" + ], + "occurrences": 5 + }, + "0x4e8a9d0bf525d78fd9e0c88710099f227f6924cf": { + "address": "0x4e8a9d0bf525d78fd9e0c88710099f227f6924cf", + "symbol": "LUNAR", + "decimals": 9, + "name": "LunarHighway", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x4e8a9d0bf525d78fd9e0c88710099f227f6924cf.png", + "aggregators": [ + "PancakeCoinMarketCap", + "1inch", + "Socket", + "Rubic", + "Rango" + ], + "occurrences": 5 + }, + "0x35e869b7456462b81cdb5e6e42434bd27f3f788c": { + "address": "0x35e869b7456462b81cdb5e6e42434bd27f3f788c", + "symbol": "MDO", + "decimals": 18, + "name": "MDO", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x35e869b7456462b81cdb5e6e42434bd27f3f788c.png", + "aggregators": [ + "PancakeCoinMarketCap", + "1inch", + "LiFi", + "Rubic", + "Rango" + ], + "occurrences": 5 + }, + "0x0e0e877894a101ad8711ae3a0194fa44ca837a79": { + "address": "0x0e0e877894a101ad8711ae3a0194fa44ca837a79", + "symbol": "MOONMOON", + "decimals": 9, + "name": "MoonMoon", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x0e0e877894a101ad8711ae3a0194fa44ca837a79.png", + "aggregators": [ + "PancakeCoinMarketCap", + "1inch", + "Socket", + "Rubic", + "Rango" + ], + "occurrences": 5 + }, + "0x7ee7f14427cc41d6db17829eb57dc74a26796b9d": { + "address": "0x7ee7f14427cc41d6db17829eb57dc74a26796b9d", + "symbol": "MOONRISE", + "decimals": 9, + "name": "MoonRise", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x7ee7f14427cc41d6db17829eb57dc74a26796b9d.png", + "aggregators": [ + "PancakeCoinMarketCap", + "1inch", + "Socket", + "Rubic", + "Rango" + ], + "occurrences": 5 + }, + "0xce5814efff15d53efd8025b9f2006d4d7d640b9b": { + "address": "0xce5814efff15d53efd8025b9f2006d4d7d640b9b", + "symbol": "MOONSTAR", + "decimals": 9, + "name": "MoonStar", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xce5814efff15d53efd8025b9f2006d4d7d640b9b.png", + "aggregators": [ + "PancakeCoinMarketCap", + "1inch", + "Socket", + "Rubic", + "Rango" + ], + "occurrences": 5 + }, + "0x81e4d494b85a24a58a6ba45c9b418b32a4e039de": { + "address": "0x81e4d494b85a24a58a6ba45c9b418b32a4e039de", + "symbol": "MOONTOKEN", + "decimals": 18, + "name": "Moon Token", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x81e4d494b85a24a58a6ba45c9b418b32a4e039de.png", + "aggregators": [ + "PancakeCoinMarketCap", + "1inch", + "Socket", + "Rubic", + "Rango" + ], + "occurrences": 5 + }, + "0x411ec510c85c9e56271bf4e10364ffa909e685d9": { + "address": "0x411ec510c85c9e56271bf4e10364ffa909e685d9", + "symbol": "MOWA", + "decimals": 18, + "name": "Moniwar", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x411ec510c85c9e56271bf4e10364ffa909e685d9.png", + "aggregators": [ + "PancakeCoinMarketCap", + "1inch", + "Socket", + "Rubic", + "Rango" + ], + "occurrences": 5 + }, + "0x86c3e4ffacdb3af628ef985a518cd6ee22a22b28": { + "address": "0x86c3e4ffacdb3af628ef985a518cd6ee22a22b28", + "symbol": "OCTA", + "decimals": 9, + "name": "Octans", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x86c3e4ffacdb3af628ef985a518cd6ee22a22b28.png", + "aggregators": [ + "PancakeCoinMarketCap", + "1inch", + "Socket", + "Rubic", + "Rango" + ], + "occurrences": 5 + }, + "0x9085b4d52c3e0b8b6f9af6213e85a433c7d76f19": { + "address": "0x9085b4d52c3e0b8b6f9af6213e85a433c7d76f19", + "symbol": "OWL", + "decimals": 18, + "name": "OwlDAO token", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x9085b4d52c3e0b8b6f9af6213e85a433c7d76f19.png", + "aggregators": [ + "PancakeCoinMarketCap", + "1inch", + "Socket", + "Rubic", + "Rango" + ], + "occurrences": 5 + }, + "0x5bccfbd33873a5498f8406146868eddd5e998962": { + "address": "0x5bccfbd33873a5498f8406146868eddd5e998962", + "symbol": "PDO", + "decimals": 18, + "name": "pDollar", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x5bccfbd33873a5498f8406146868eddd5e998962.png", + "aggregators": [ + "PancakeCoinMarketCap", + "1inch", + "Socket", + "Rubic", + "Rango" + ], + "occurrences": 5 + }, + "0xaef0a177c8c329cbc8508292bb7e06c00786bbfc": { + "address": "0xaef0a177c8c329cbc8508292bb7e06c00786bbfc", + "symbol": "PULI", + "decimals": 9, + "name": "PULI INU", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xaef0a177c8c329cbc8508292bb7e06c00786bbfc.png", + "aggregators": [ + "PancakeCoinMarketCap", + "1inch", + "Socket", + "Rubic", + "Rango" + ], + "occurrences": 5 + }, + "0x276b440fdb4c54631c882cac9e4317929e751ff8": { + "address": "0x276b440fdb4c54631c882cac9e4317929e751ff8", + "symbol": "REV", + "decimals": 18, + "name": "REV", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x276b440fdb4c54631c882cac9e4317929e751ff8.png", + "aggregators": [ + "PancakeCoinMarketCap", + "LiFi", + "Socket", + "Rubic", + "Rango" + ], + "occurrences": 5 + }, + "0xfb981ed9a92377ca4d75d924b9ca06df163924fd": { + "address": "0xfb981ed9a92377ca4d75d924b9ca06df163924fd", + "symbol": "SA", + "decimals": 18, + "name": "Superalgos", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xfb981ed9a92377ca4d75d924b9ca06df163924fd.png", + "aggregators": [ + "PancakeCoinMarketCap", + "1inch", + "Socket", + "Rubic", + "Rango" + ], + "occurrences": 5 + }, + "0x380624a4a7e69db1ca07deecf764025fc224d056": { + "address": "0x380624a4a7e69db1ca07deecf764025fc224d056", + "symbol": "SAFEBTC", + "decimals": 9, + "name": "SafeBTC", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x380624a4a7e69db1ca07deecf764025fc224d056.png", + "aggregators": [ + "PancakeCoinMarketCap", + "1inch", + "Socket", + "Rubic", + "Rango" + ], + "occurrences": 5 + }, + "0x6b51231c43b1604815313801db5e9e614914d6e4": { + "address": "0x6b51231c43b1604815313801db5e9e614914d6e4", + "symbol": "SAFEGALAXY", + "decimals": 9, + "name": "SafeGalaxy", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x6b51231c43b1604815313801db5e9e614914d6e4.png", + "aggregators": [ + "PancakeCoinMarketCap", + "1inch", + "Socket", + "Rubic", + "Rango" + ], + "occurrences": 5 + }, + "0xe1db3d1ee5cfe5c6333be96e6421f9bd5b85c987": { + "address": "0xe1db3d1ee5cfe5c6333be96e6421f9bd5b85c987", + "symbol": "SAFESPACE", + "decimals": 9, + "name": "SAFESPACE", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xe1db3d1ee5cfe5c6333be96e6421f9bd5b85c987.png", + "aggregators": [ + "PancakeCoinMarketCap", + "1inch", + "Socket", + "Rubic", + "Rango" + ], + "occurrences": 5 + }, + "0x3c00f8fcc8791fa78daa4a480095ec7d475781e2": { + "address": "0x3c00f8fcc8791fa78daa4a480095ec7d475781e2", + "symbol": "SAFESTAR", + "decimals": 9, + "name": "SafeStar", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x3c00f8fcc8791fa78daa4a480095ec7d475781e2.png", + "aggregators": [ + "PancakeCoinMarketCap", + "1inch", + "Socket", + "Rubic", + "Rango" + ], + "occurrences": 5 + }, + "0x0d9319565be7f53cefe84ad201be3f40feae2740": { + "address": "0x0d9319565be7f53cefe84ad201be3f40feae2740", + "symbol": "SBDO", + "decimals": 18, + "name": "SBDO", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x0d9319565be7f53cefe84ad201be3f40feae2740.png", + "aggregators": [ + "PancakeCoinMarketCap", + "1inch", + "LiFi", + "Rubic", + "Rango" + ], + "occurrences": 5 + }, + "0xfb52fc1f90dd2b070b9cf7ad68ac3d68905643fa": { + "address": "0xfb52fc1f90dd2b070b9cf7ad68ac3d68905643fa", + "symbol": "SEA", + "decimals": 18, + "name": "Sea Token", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xfb52fc1f90dd2b070b9cf7ad68ac3d68905643fa.png", + "aggregators": [ + "PancakeCoinMarketCap", + "1inch", + "Socket", + "Rubic", + "Rango" + ], + "occurrences": 5 + }, + "0x69b14e8d3cebfdd8196bfe530954a0c226e5008e": { + "address": "0x69b14e8d3cebfdd8196bfe530954a0c226e5008e", + "symbol": "SPACEPI", + "decimals": 9, + "name": "SPACEPI", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x69b14e8d3cebfdd8196bfe530954a0c226e5008e.png", + "aggregators": [ + "PancakeCoinMarketCap", + "1inch", + "Socket", + "Rubic", + "Rango" + ], + "occurrences": 5 + }, + "0x90df11a8cce420675e73922419e3f4f3fe13cccb": { + "address": "0x90df11a8cce420675e73922419e3f4f3fe13cccb", + "symbol": "STM", + "decimals": 18, + "name": "Streamity", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x90df11a8cce420675e73922419e3f4f3fe13cccb.png", + "aggregators": [ + "PancakeCoinMarketCap", + "Socket", + "Rubic", + "Rango", + "SushiSwap" + ], + "occurrences": 5 + }, + "0xa96658cd0d04a8fdcdc30d1156cc65bbfc7591ed": { + "address": "0xa96658cd0d04a8fdcdc30d1156cc65bbfc7591ed", + "symbol": "SUSHIBA", + "decimals": 9, + "name": "Sushiba", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xa96658cd0d04a8fdcdc30d1156cc65bbfc7591ed.png", + "aggregators": [ + "PancakeCoinMarketCap", + "1inch", + "Socket", + "Rubic", + "Rango" + ], + "occurrences": 5 + }, + "0x52d86850bc8207b520340b7e39cdaf22561b9e56": { + "address": "0x52d86850bc8207b520340b7e39cdaf22561b9e56", + "symbol": "SWIRL", + "decimals": 18, + "name": "Swirl.Cash", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x52d86850bc8207b520340b7e39cdaf22561b9e56.png", + "aggregators": [ + "PancakeCoinMarketCap", + "1inch", + "Socket", + "Rubic", + "Rango" + ], + "occurrences": 5 + }, + "0xb93ba7dc61ecfced69067151fc00c41ca369a797": { + "address": "0xb93ba7dc61ecfced69067151fc00c41ca369a797", + "symbol": "WENMOON", + "decimals": 7, + "name": "WenMoon Token", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xb93ba7dc61ecfced69067151fc00c41ca369a797.png", + "aggregators": [ + "PancakeCoinMarketCap", + "1inch", + "Socket", + "Rubic", + "Rango" + ], + "occurrences": 5 + }, + "0x26a5dfab467d4f58fb266648cae769503cec9580": { + "address": "0x26a5dfab467d4f58fb266648cae769503cec9580", + "symbol": "XMARK", + "decimals": 9, + "name": "XMARK", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x26a5dfab467d4f58fb266648cae769503cec9580.png", + "aggregators": [ + "PancakeExtended", + "LiFi", + "Socket", + "Rubic", + "Rango" + ], + "occurrences": 5 + }, + "0x9806aec346064183b5ce441313231dff89811f7a": { + "address": "0x9806aec346064183b5ce441313231dff89811f7a", + "symbol": "YPANDA", + "decimals": 8, + "name": "YieldPanda.finance", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x9806aec346064183b5ce441313231dff89811f7a.png", + "aggregators": [ + "PancakeCoinMarketCap", + "1inch", + "Socket", + "Rubic", + "Rango" + ], + "occurrences": 5 + }, + "0x5a16e8ce8ca316407c6e6307095dc9540a8d62b3": { + "address": "0x5a16e8ce8ca316407c6e6307095dc9540a8d62b3", + "symbol": "BTR", + "decimals": 18, + "name": "Bitrue Token", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x5a16e8ce8ca316407c6e6307095dc9540a8d62b3.png", + "aggregators": [ + "PancakeExtended", + "LiFi", + "Socket", + "Rubic", + "Rango" + ], + "occurrences": 5 + }, + "0x039cb485212f996a9dbb85a9a75d898f94d38da6": { + "address": "0x039cb485212f996a9dbb85a9a75d898f94d38da6", + "symbol": "DEXE", + "decimals": 18, + "name": "DeXe", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x039cb485212f996a9dbb85a9a75d898f94d38da6.png", + "aggregators": [ + "PancakeExtended", + "LiFi", + "Socket", + "Rubic", + "Rango" + ], + "occurrences": 5 + }, + "0x398f7827dccbefe6990478876bbf3612d93baf05": { + "address": "0x398f7827dccbefe6990478876bbf3612d93baf05", + "symbol": "MIX", + "decimals": 18, + "name": "MixMarvel Token", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x398f7827dccbefe6990478876bbf3612d93baf05.png", + "aggregators": [ + "PancakeExtended", + "1inch", + "Socket", + "Rubic", + "Rango" + ], + "occurrences": 5 + }, + "0x8b303d5bbfbbf46f1a4d9741e491e06986894e18": { + "address": "0x8b303d5bbfbbf46f1a4d9741e491e06986894e18", + "symbol": "WOOP", + "decimals": 18, + "name": "Woonkly Power", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x8b303d5bbfbbf46f1a4d9741e491e06986894e18.png", + "aggregators": [ + "PancakeExtended", + "LiFi", + "Rubic", + "Squid", + "Rango" + ], + "occurrences": 5 + }, + "0xffeb8287de7dc756067e171e9919c730f0636680": { + "address": "0xffeb8287de7dc756067e171e9919c730f0636680", + "symbol": "LAVA", + "decimals": 6, + "name": " LAVA (Axelar)", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xffeb8287de7dc756067e171e9919c730f0636680.png", + "aggregators": ["PancakeExtended", "LiFi", "Rubic", "Squid"], + "occurrences": 4 + }, + "0x4d4e595d643dc61ea7fcbf12e4b1aaa39f9975b8": { + "address": "0x4d4e595d643dc61ea7fcbf12e4b1aaa39f9975b8", + "symbol": "PET", + "decimals": 18, + "name": "PET", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x4d4e595d643dc61ea7fcbf12e4b1aaa39f9975b8.png", + "aggregators": ["1inch", "LiFi", "Socket", "Rubic", "Rango"], + "occurrences": 5 + }, + "0xe4ae305ebe1abe663f261bc00534067c80ad677c": { + "address": "0xe4ae305ebe1abe663f261bc00534067c80ad677c", + "symbol": "SPARTA", + "decimals": 18, + "name": "SPARTAN PROTOCOL TOKEN", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xe4ae305ebe1abe663f261bc00534067c80ad677c.png", + "aggregators": ["LiFi", "Socket", "Rubic", "Rango", "SushiSwap"], + "occurrences": 5 + }, + "0x9d986a3f147212327dd658f712d5264a73a1fdb0": { + "address": "0x9d986a3f147212327dd658f712d5264a73a1fdb0", + "symbol": "LAND", + "decimals": 18, + "name": "Landshare Token", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x9d986a3f147212327dd658f712d5264a73a1fdb0.png", + "aggregators": ["ApeSwap", "1inch", "Rubic", "Rango"], + "occurrences": 4 + }, + "0x1a076e4633fa139d7b908b88326de603fbe8c199": { + "address": "0x1a076e4633fa139d7b908b88326de603fbe8c199", + "symbol": "FAV", + "decimals": 18, + "name": "Football at AlphaVerse", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x1a076e4633fa139d7b908b88326de603fbe8c199.png", + "aggregators": ["PancakeCoinMarketCap", "LiFi", "Rubic", "Rango"], + "occurrences": 4 + }, + "0x886640149e31e1430fa74cc39725431eb82ddfb2": { + "address": "0x886640149e31e1430fa74cc39725431eb82ddfb2", + "symbol": "FORWARD", + "decimals": 18, + "name": "Forward", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x886640149e31e1430fa74cc39725431eb82ddfb2.png", + "aggregators": [ + "PancakeCoinMarketCap", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 4 + }, + "0xbdf5bafee1291eec45ae3aadac89be8152d4e673": { + "address": "0xbdf5bafee1291eec45ae3aadac89be8152d4e673", + "symbol": "CATA", + "decimals": 18, + "name": "Catamoto", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xbdf5bafee1291eec45ae3aadac89be8152d4e673.png", + "aggregators": ["PancakeCoinGecko", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0x09f423ac3c9babbff6f94d372b16e4206e71439f": { + "address": "0x09f423ac3c9babbff6f94d372b16e4206e71439f", + "symbol": "EJS", + "decimals": 18, + "name": "Enjinstarter", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x09f423ac3c9babbff6f94d372b16e4206e71439f.png", + "aggregators": [ + "PancakeCoinMarketCap", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 4 + }, + "0xd6ef2222cc850fdc7ee30f2b2d5384e0167700a3": { + "address": "0xd6ef2222cc850fdc7ee30f2b2d5384e0167700a3", + "symbol": "RETRO", + "decimals": 18, + "name": "RetroCraft", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xd6ef2222cc850fdc7ee30f2b2d5384e0167700a3.png", + "aggregators": ["PancakeCoinGecko", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0x8613d52d74a48883a51badf8b25ab066714087da": { + "address": "0x8613d52d74a48883a51badf8b25ab066714087da", + "symbol": "LB", + "decimals": 18, + "name": "LoveBit", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x8613d52d74a48883a51badf8b25ab066714087da.png", + "aggregators": [ + "PancakeCoinMarketCap", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 4 + }, + "0x9767c8e438aa18f550208e6d1fdf5f43541cc2c8": { + "address": "0x9767c8e438aa18f550208e6d1fdf5f43541cc2c8", + "symbol": "MMIT", + "decimals": 18, + "name": "MangoMan Intelligent", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x9767c8e438aa18f550208e6d1fdf5f43541cc2c8.png", + "aggregators": [ + "PancakeCoinMarketCap", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 4 + }, + "0x47a9b109cfb8f89d16e8b34036150ee112572435": { + "address": "0x47a9b109cfb8f89d16e8b34036150ee112572435", + "symbol": "BCAT", + "decimals": 18, + "name": "BilliCat", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x47a9b109cfb8f89d16e8b34036150ee112572435.png", + "aggregators": [ + "PancakeCoinMarketCap", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 4 + }, + "0x80262f604acac839724f66846f290a2cc8b48662": { + "address": "0x80262f604acac839724f66846f290a2cc8b48662", + "symbol": "ARI10", + "decimals": 18, + "name": "Ari10", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x80262f604acac839724f66846f290a2cc8b48662.png", + "aggregators": [ + "PancakeCoinMarketCap", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 4 + }, + "0x991b4ce57864060115700d6fc05c7780346a15ac": { + "address": "0x991b4ce57864060115700d6fc05c7780346a15ac", + "symbol": "Y8U", + "decimals": 18, + "name": "Y8U", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x991b4ce57864060115700d6fc05c7780346a15ac.png", + "aggregators": ["PancakeCoinGecko", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0x5c4625ac040486ce7a9054924b8cd3e4ba8480a6": { + "address": "0x5c4625ac040486ce7a9054924b8cd3e4ba8480a6", + "symbol": "SNIFT", + "decimals": 18, + "name": "StarryNift", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x5c4625ac040486ce7a9054924b8cd3e4ba8480a6.png", + "aggregators": ["PancakeCoinGecko", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0xadaae082237cb1772c9e079db95c117e6dd0c5af": { + "address": "0xadaae082237cb1772c9e079db95c117e6dd0c5af", + "symbol": "VIZSLASWAP", + "decimals": 18, + "name": "VizslaSwap", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xadaae082237cb1772c9e079db95c117e6dd0c5af.png", + "aggregators": [ + "PancakeCoinMarketCap", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 4 + }, + "0xeceb785a646f2c5ac759aa30d0fc85841ba004f3": { + "address": "0xeceb785a646f2c5ac759aa30d0fc85841ba004f3", + "symbol": "$BABYLONG", + "decimals": 18, + "name": "BABYLONG", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xeceb785a646f2c5ac759aa30d0fc85841ba004f3.png", + "aggregators": [ + "PancakeCoinMarketCap", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 4 + }, + "0xdebd6e2da378784a69dc6ec99fe254223b312287": { + "address": "0xdebd6e2da378784a69dc6ec99fe254223b312287", + "symbol": "EXIT", + "decimals": 18, + "name": "EXIT Designer Token", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xdebd6e2da378784a69dc6ec99fe254223b312287.png", + "aggregators": [ + "PancakeCoinMarketCap", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 4 + }, + "0x2167afa1c658dc5c4ec975f4af608ff075a8b8ae": { + "address": "0x2167afa1c658dc5c4ec975f4af608ff075a8b8ae", + "symbol": "EV", + "decimals": 8, + "name": "Evai", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x2167afa1c658dc5c4ec975f4af608ff075a8b8ae.png", + "aggregators": [ + "PancakeCoinMarketCap", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 4 + }, + "0x9320bdb3c8f3d0b1313726efbb0f0061ebf149ad": { + "address": "0x9320bdb3c8f3d0b1313726efbb0f0061ebf149ad", + "symbol": "SAFO", + "decimals": 18, + "name": "SAFEONE CHAIN", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x9320bdb3c8f3d0b1313726efbb0f0061ebf149ad.png", + "aggregators": [ + "PancakeCoinMarketCap", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 4 + }, + "0xbe6ad1eb9876cf3d3f9b85feecfb400298e80143": { + "address": "0xbe6ad1eb9876cf3d3f9b85feecfb400298e80143", + "symbol": "AIC", + "decimals": 18, + "name": "AI Companions", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xbe6ad1eb9876cf3d3f9b85feecfb400298e80143.png", + "aggregators": [ + "PancakeCoinMarketCap", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 4 + }, + "0x2024b9be6b03f2a57d3533ae33c7e1d0b0b4be47": { + "address": "0x2024b9be6b03f2a57d3533ae33c7e1d0b0b4be47", + "symbol": "BTTY", + "decimals": 18, + "name": "Bitcointry Token", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x2024b9be6b03f2a57d3533ae33c7e1d0b0b4be47.png", + "aggregators": [ + "PancakeCoinMarketCap", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 4 + }, + "0x44ece1031e5b5e2d9169546cc10ea5c95ba96237": { + "address": "0x44ece1031e5b5e2d9169546cc10ea5c95ba96237", + "symbol": "AMAZINGTEAM", + "decimals": 18, + "name": "AmazingTeamDAO", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x44ece1031e5b5e2d9169546cc10ea5c95ba96237.png", + "aggregators": [ + "PancakeCoinMarketCap", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 4 + }, + "0x320d6fadc3c39263c25cbfaa01d02971c64ac623": { + "address": "0x320d6fadc3c39263c25cbfaa01d02971c64ac623", + "symbol": "INTELLIQUE", + "decimals": 18, + "name": "KARASOU", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x320d6fadc3c39263c25cbfaa01d02971c64ac623.png", + "aggregators": [ + "PancakeCoinMarketCap", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 4 + }, + "0x6d3a160b86edcd46d8f9bba25c2f88cccade19fc": { + "address": "0x6d3a160b86edcd46d8f9bba25c2f88cccade19fc", + "symbol": "FWC", + "decimals": 9, + "name": "Football World Community", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x6d3a160b86edcd46d8f9bba25c2f88cccade19fc.png", + "aggregators": [ + "PancakeCoinMarketCap", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 4 + }, + "0xd16cb89f621820bc19dae1c29c9db6d22813b01d": { + "address": "0xd16cb89f621820bc19dae1c29c9db6d22813b01d", + "symbol": "CBE", + "decimals": 18, + "name": "Coinbidex", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xd16cb89f621820bc19dae1c29c9db6d22813b01d.png", + "aggregators": [ + "PancakeCoinMarketCap", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 4 + }, + "0xde619a9e0eeeaa9f8cd39522ed788234837f3b26": { + "address": "0xde619a9e0eeeaa9f8cd39522ed788234837f3b26", + "symbol": "HVI", + "decimals": 9, + "name": "Hungarian Vizsla Inu", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xde619a9e0eeeaa9f8cd39522ed788234837f3b26.png", + "aggregators": [ + "PancakeCoinMarketCap", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 4 + }, + "0xb10be3f4c7e1f870d86ed6cfd412fed6615feb6f": { + "address": "0xb10be3f4c7e1f870d86ed6cfd412fed6615feb6f", + "symbol": "PRI", + "decimals": 18, + "name": "Privateum Global", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xb10be3f4c7e1f870d86ed6cfd412fed6615feb6f.png", + "aggregators": [ + "PancakeCoinMarketCap", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 4 + }, + "0x64f36701138f0e85cc10c34ea535fdbadcb54147": { + "address": "0x64f36701138f0e85cc10c34ea535fdbadcb54147", + "symbol": "AINU", + "decimals": 9, + "name": "Anon Inu", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x64f36701138f0e85cc10c34ea535fdbadcb54147.png", + "aggregators": [ + "PancakeCoinMarketCap", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 4 + }, + "0x43b35e89d15b91162dea1c51133c4c93bdd1c4af": { + "address": "0x43b35e89d15b91162dea1c51133c4c93bdd1c4af", + "symbol": "SAKAI", + "decimals": 18, + "name": "Sakai Vault", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x43b35e89d15b91162dea1c51133c4c93bdd1c4af.png", + "aggregators": [ + "PancakeCoinMarketCap", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 4 + }, + "0x4b5decb9327b4d511a58137a1ade61434aacdd43": { + "address": "0x4b5decb9327b4d511a58137a1ade61434aacdd43", + "symbol": "PKN", + "decimals": 18, + "name": "Poken", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x4b5decb9327b4d511a58137a1ade61434aacdd43.png", + "aggregators": [ + "PancakeCoinMarketCap", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 4 + }, + "0x1ae369a6ab222aff166325b7b87eb9af06c86e57": { + "address": "0x1ae369a6ab222aff166325b7b87eb9af06c86e57", + "symbol": "10SET", + "decimals": 18, + "name": "Tenset", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x1ae369a6ab222aff166325b7b87eb9af06c86e57.png", + "aggregators": [ + "PancakeCoinMarketCap", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 4 + }, + "0x6a1225c87f15da91e2fa5ee7b2075e2e3a9dbc39": { + "address": "0x6a1225c87f15da91e2fa5ee7b2075e2e3a9dbc39", + "symbol": "SSE", + "decimals": 18, + "name": "Soroosh Smart Ecosystem", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x6a1225c87f15da91e2fa5ee7b2075e2e3a9dbc39.png", + "aggregators": [ + "PancakeCoinMarketCap", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 4 + }, + "0xe4e11e02aa14c7f24db749421986eaec1369e8c9": { + "address": "0xe4e11e02aa14c7f24db749421986eaec1369e8c9", + "symbol": "MNTC", + "decimals": 18, + "name": "MINATIVERSE", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xe4e11e02aa14c7f24db749421986eaec1369e8c9.png", + "aggregators": [ + "PancakeCoinMarketCap", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 4 + }, + "0x11ac6af070fe1991a457c56fb85c577efe57f0e4": { + "address": "0x11ac6af070fe1991a457c56fb85c577efe57f0e4", + "symbol": "DRAGONKING", + "decimals": 18, + "name": "DragonKing", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x11ac6af070fe1991a457c56fb85c577efe57f0e4.png", + "aggregators": [ + "PancakeCoinMarketCap", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 4 + }, + "0x5492ef6aeeba1a3896357359ef039a8b11621b45": { + "address": "0x5492ef6aeeba1a3896357359ef039a8b11621b45", + "symbol": "CHMB", + "decimals": 18, + "name": "Chumbi Valley", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x5492ef6aeeba1a3896357359ef039a8b11621b45.png", + "aggregators": [ + "PancakeCoinMarketCap", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 4 + }, + "0x5569edd2e1535be2003470b2663f2ff77e83d27e": { + "address": "0x5569edd2e1535be2003470b2663f2ff77e83d27e", + "symbol": "KOL", + "decimals": 18, + "name": "KeyOfLife", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x5569edd2e1535be2003470b2663f2ff77e83d27e.png", + "aggregators": [ + "PancakeCoinMarketCap", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 4 + }, + "0xeacd67fa73606320e6c842c05df291ca0fac4142": { + "address": "0xeacd67fa73606320e6c842c05df291ca0fac4142", + "symbol": "FTS", + "decimals": 18, + "name": "FINANCIAL TRANSACTION SYSTEM", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xeacd67fa73606320e6c842c05df291ca0fac4142.png", + "aggregators": [ + "PancakeCoinMarketCap", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 4 + }, + "0x0e4b5ea0259eb3d66e6fcb7cc8785817f8490a53": { + "address": "0x0e4b5ea0259eb3d66e6fcb7cc8785817f8490a53", + "symbol": "SOKU", + "decimals": 18, + "name": "SokuSwap", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x0e4b5ea0259eb3d66e6fcb7cc8785817f8490a53.png", + "aggregators": [ + "PancakeCoinMarketCap", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 4 + }, + "0x8eca5c1b51a801a822912167153041ed0b92a397": { + "address": "0x8eca5c1b51a801a822912167153041ed0b92a397", + "symbol": "FRP", + "decimals": 18, + "name": "Fame Reward Plus", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x8eca5c1b51a801a822912167153041ed0b92a397.png", + "aggregators": [ + "PancakeCoinMarketCap", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 4 + }, + "0xc350caa89eb963d5d6b964324a0a7736d8d65533": { + "address": "0xc350caa89eb963d5d6b964324a0a7736d8d65533", + "symbol": "INFTEE", + "decimals": 18, + "name": "Infinitee", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xc350caa89eb963d5d6b964324a0a7736d8d65533.png", + "aggregators": [ + "PancakeCoinMarketCap", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 4 + }, + "0x21adb1c644663069e83059ac3f9d9ca1133d29e4": { + "address": "0x21adb1c644663069e83059ac3f9d9ca1133d29e4", + "symbol": "EGGP", + "decimals": 18, + "name": "Eggplant Finance", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x21adb1c644663069e83059ac3f9d9ca1133d29e4.png", + "aggregators": [ + "PancakeCoinMarketCap", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 4 + }, + "0x1f36fb2d91d9951cf58ae4c1956c0b77e224f1e9": { + "address": "0x1f36fb2d91d9951cf58ae4c1956c0b77e224f1e9", + "symbol": "VCG", + "decimals": 18, + "name": "VCGamers", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x1f36fb2d91d9951cf58ae4c1956c0b77e224f1e9.png", + "aggregators": [ + "PancakeCoinMarketCap", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 4 + }, + "0xe9d78bf51ae04c7e1263a76ed89a65537b9ca903": { + "address": "0xe9d78bf51ae04c7e1263a76ed89a65537b9ca903", + "symbol": "GMEX", + "decimals": 9, + "name": "Game Coin", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xe9d78bf51ae04c7e1263a76ed89a65537b9ca903.png", + "aggregators": [ + "PancakeCoinMarketCap", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 4 + }, + "0xdb238123939637d65a03e4b2b485650b4f9d91cb": { + "address": "0xdb238123939637d65a03e4b2b485650b4f9d91cb", + "symbol": "TASTE", + "decimals": 9, + "name": "TasteNFT", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xdb238123939637d65a03e4b2b485650b4f9d91cb.png", + "aggregators": [ + "PancakeCoinMarketCap", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 4 + }, + "0x57bfe2af99aeb7a3de3bc0c42c22353742bfd20d": { + "address": "0x57bfe2af99aeb7a3de3bc0c42c22353742bfd20d", + "symbol": "WAR", + "decimals": 18, + "name": "Water Rabbit", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x57bfe2af99aeb7a3de3bc0c42c22353742bfd20d.png", + "aggregators": [ + "PancakeCoinMarketCap", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 4 + }, + "0xddfd6382a18ad7279eb6db4dfb78922ddc33d6e7": { + "address": "0xddfd6382a18ad7279eb6db4dfb78922ddc33d6e7", + "symbol": "SHRED", + "decimals": 18, + "name": "ShredN", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xddfd6382a18ad7279eb6db4dfb78922ddc33d6e7.png", + "aggregators": [ + "PancakeCoinMarketCap", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 4 + }, + "0x79cdc9ca057e16dffd45bd803491f328f49e1762": { + "address": "0x79cdc9ca057e16dffd45bd803491f328f49e1762", + "symbol": "BFLOKI", + "decimals": 9, + "name": "bitFloki", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x79cdc9ca057e16dffd45bd803491f328f49e1762.png", + "aggregators": [ + "PancakeCoinMarketCap", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 4 + }, + "0x5f980533b994c93631a639deda7892fc49995839": { + "address": "0x5f980533b994c93631a639deda7892fc49995839", + "symbol": "COSA", + "decimals": 8, + "name": "Cosanta", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x5f980533b994c93631a639deda7892fc49995839.png", + "aggregators": ["PancakeCoinGecko", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0x2456493e757fdeedf569781f053998a72adfad03": { + "address": "0x2456493e757fdeedf569781f053998a72adfad03", + "symbol": "DNT", + "decimals": 6, + "name": "Definder Network", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x2456493e757fdeedf569781f053998a72adfad03.png", + "aggregators": [ + "PancakeCoinMarketCap", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 4 + }, + "0xfa2e4ec5a818c2d2c352f4b152c06338d476b646": { + "address": "0xfa2e4ec5a818c2d2c352f4b152c06338d476b646", + "symbol": "XPX", + "decimals": 18, + "name": "XPX", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xfa2e4ec5a818c2d2c352f4b152c06338d476b646.png", + "aggregators": [ + "PancakeCoinMarketCap", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 4 + }, + "0x2136cd209bb3d8e4c008ec2791b5d6790b5e33a9": { + "address": "0x2136cd209bb3d8e4c008ec2791b5d6790b5e33a9", + "symbol": "ABLE", + "decimals": 8, + "name": "Able Finance", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x2136cd209bb3d8e4c008ec2791b5d6790b5e33a9.png", + "aggregators": [ + "PancakeCoinMarketCap", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 4 + }, + "0x679d5b2d94f454c950d683d159b87aa8eae37c9e": { + "address": "0x679d5b2d94f454c950d683d159b87aa8eae37c9e", + "symbol": "HAM", + "decimals": 7, + "name": "Hamster", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x679d5b2d94f454c950d683d159b87aa8eae37c9e.png", + "aggregators": [ + "PancakeCoinMarketCap", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 4 + }, + "0x5ce12f6d9f2fcaf0b11494a1c39e09eeb16ca7e8": { + "address": "0x5ce12f6d9f2fcaf0b11494a1c39e09eeb16ca7e8", + "symbol": "BSR", + "decimals": 18, + "name": "BinStarter", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x5ce12f6d9f2fcaf0b11494a1c39e09eeb16ca7e8.png", + "aggregators": [ + "PancakeCoinMarketCap", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 4 + }, + "0x8578eb576e126f67913a8bc0622e0a22eba0989a": { + "address": "0x8578eb576e126f67913a8bc0622e0a22eba0989a", + "symbol": "PANDA", + "decimals": 9, + "name": "HashPanda", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x8578eb576e126f67913a8bc0622e0a22eba0989a.png", + "aggregators": [ + "PancakeCoinMarketCap", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 4 + }, + "0xf6cb4ad242bab681effc5de40f7c8ff921a12d63": { + "address": "0xf6cb4ad242bab681effc5de40f7c8ff921a12d63", + "symbol": "CNS", + "decimals": 8, + "name": "Centric Swap", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xf6cb4ad242bab681effc5de40f7c8ff921a12d63.png", + "aggregators": [ + "PancakeCoinMarketCap", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 4 + }, + "0xde83180dd1166d4f8e5c2b7de14a2163b1bb4a87": { + "address": "0xde83180dd1166d4f8e5c2b7de14a2163b1bb4a87", + "symbol": "DLC", + "decimals": 18, + "name": "Diamond Launch", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xde83180dd1166d4f8e5c2b7de14a2163b1bb4a87.png", + "aggregators": [ + "PancakeCoinMarketCap", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 4 + }, + "0xf51bee141c9551338d1b26844ae5035b55993f0d": { + "address": "0xf51bee141c9551338d1b26844ae5035b55993f0d", + "symbol": "KINGCAT", + "decimals": 9, + "name": "King Cat", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xf51bee141c9551338d1b26844ae5035b55993f0d.png", + "aggregators": [ + "PancakeCoinMarketCap", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 4 + }, + "0x682f8fddfec6ebdf6c7bf1c0eec276b37a647d59": { + "address": "0x682f8fddfec6ebdf6c7bf1c0eec276b37a647d59", + "symbol": "$GIGA", + "decimals": 8, + "name": "GigaChadGPT", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x682f8fddfec6ebdf6c7bf1c0eec276b37a647d59.png", + "aggregators": [ + "PancakeCoinMarketCap", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 4 + }, + "0x510975eda48a97e0ca228dd04d1217292487bea6": { + "address": "0x510975eda48a97e0ca228dd04d1217292487bea6", + "symbol": "GXE", + "decimals": 18, + "name": "PROJECT XENO", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x510975eda48a97e0ca228dd04d1217292487bea6.png", + "aggregators": [ + "PancakeCoinMarketCap", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 4 + }, + "0x73cba57ad8bc775a5345d9a0de2e90c74621d802": { + "address": "0x73cba57ad8bc775a5345d9a0de2e90c74621d802", + "symbol": "LOOK", + "decimals": 18, + "name": "LooksCoin", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x73cba57ad8bc775a5345d9a0de2e90c74621d802.png", + "aggregators": [ + "PancakeCoinMarketCap", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 4 + }, + "0xbdc87a65e0b6bfb631847b7de815d2b07dec8ee7": { + "address": "0xbdc87a65e0b6bfb631847b7de815d2b07dec8ee7", + "symbol": "IVIP", + "decimals": 5, + "name": "iVipCoin", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xbdc87a65e0b6bfb631847b7de815d2b07dec8ee7.png", + "aggregators": [ + "PancakeCoinMarketCap", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 4 + }, + "0xe1443170fab91fba2c535b3f78935d6fce55348d": { + "address": "0xe1443170fab91fba2c535b3f78935d6fce55348d", + "symbol": "GVC", + "decimals": 18, + "name": "Global Virtual Coin", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xe1443170fab91fba2c535b3f78935d6fce55348d.png", + "aggregators": [ + "PancakeCoinMarketCap", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 4 + }, + "0xe90d1567ecef9282cc1ab348d9e9e2ac95659b99": { + "address": "0xe90d1567ecef9282cc1ab348d9e9e2ac95659b99", + "symbol": "CXPAD", + "decimals": 18, + "name": "CoinxPad", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xe90d1567ecef9282cc1ab348d9e9e2ac95659b99.png", + "aggregators": [ + "PancakeCoinMarketCap", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 4 + }, + "0x2f0c6e147974bfbf7da557b88643d74c324053a2": { + "address": "0x2f0c6e147974bfbf7da557b88643d74c324053a2", + "symbol": "CATS", + "decimals": 0, + "name": "CatCoin Token", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x2f0c6e147974bfbf7da557b88643d74c324053a2.png", + "aggregators": [ + "PancakeCoinMarketCap", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 4 + }, + "0x84cfc0427147026368c2aac4f502d98aac47eb48": { + "address": "0x84cfc0427147026368c2aac4f502d98aac47eb48", + "symbol": "SHAN", + "decimals": 18, + "name": "Shanum", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x84cfc0427147026368c2aac4f502d98aac47eb48.png", + "aggregators": [ + "PancakeCoinMarketCap", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 4 + }, + "0xbe96fcf736ad906b1821ef74a0e4e346c74e6221": { + "address": "0xbe96fcf736ad906b1821ef74a0e4e346c74e6221", + "symbol": "NIX", + "decimals": 18, + "name": "NIX", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xbe96fcf736ad906b1821ef74a0e4e346c74e6221.png", + "aggregators": [ + "PancakeCoinMarketCap", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 4 + }, + "0x02ff5065692783374947393723dba9599e59f591": { + "address": "0x02ff5065692783374947393723dba9599e59f591", + "symbol": "YOOSHI", + "decimals": 9, + "name": "YooShi", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x02ff5065692783374947393723dba9599e59f591.png", + "aggregators": [ + "PancakeCoinMarketCap", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 4 + }, + "0x44c99ca267c2b2646ceec72e898273085ab87ca5": { + "address": "0x44c99ca267c2b2646ceec72e898273085ab87ca5", + "symbol": "RPTR", + "decimals": 18, + "name": "Raptor Finance", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x44c99ca267c2b2646ceec72e898273085ab87ca5.png", + "aggregators": [ + "PancakeCoinMarketCap", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 4 + }, + "0x680d3113caf77b61b510f332d5ef4cf5b41a761d": { + "address": "0x680d3113caf77b61b510f332d5ef4cf5b41a761d", + "symbol": "DHB", + "decimals": 18, + "name": "DeHub", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x680d3113caf77b61b510f332d5ef4cf5b41a761d.png", + "aggregators": [ + "PancakeCoinMarketCap", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 4 + }, + "0xb994882a1b9bd98a71dd6ea5f61577c42848b0e8": { + "address": "0xb994882a1b9bd98a71dd6ea5f61577c42848b0e8", + "symbol": "WOD", + "decimals": 18, + "name": "World of Dypians", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xb994882a1b9bd98a71dd6ea5f61577c42848b0e8.png", + "aggregators": ["PancakeExtended", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0x735c522c20305d868f2c14654b878950f820dc50": { + "address": "0x735c522c20305d868f2c14654b878950f820dc50", + "symbol": "BEE", + "decimals": 18, + "name": "BNBEE", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x735c522c20305d868f2c14654b878950f820dc50.png", + "aggregators": [ + "PancakeCoinMarketCap", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 4 + }, + "0xaee4164c1ee46ed0bbc34790f1a3d1fc87796668": { + "address": "0xaee4164c1ee46ed0bbc34790f1a3d1fc87796668", + "symbol": "HMDX", + "decimals": 18, + "name": "Poly-Peg Mdex", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xaee4164c1ee46ed0bbc34790f1a3d1fc87796668.png", + "aggregators": [ + "PancakeCoinMarketCap", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 4 + }, + "0x62858686119135cc00c4a3102b436a0eb314d402": { + "address": "0x62858686119135cc00c4a3102b436a0eb314d402", + "symbol": "METAV", + "decimals": 18, + "name": "MetaVPad", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x62858686119135cc00c4a3102b436a0eb314d402.png", + "aggregators": [ + "PancakeCoinMarketCap", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 4 + }, + "0xfe8bf5b8f5e4eb5f9bc2be16303f7dab8cf56aa8": { + "address": "0xfe8bf5b8f5e4eb5f9bc2be16303f7dab8cf56aa8", + "symbol": "BIBI", + "decimals": 18, + "name": "BIBI", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xfe8bf5b8f5e4eb5f9bc2be16303f7dab8cf56aa8.png", + "aggregators": [ + "PancakeCoinMarketCap", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 4 + }, + "0x842668e2b9a73240abf6532dedc89c9c3e050c98": { + "address": "0x842668e2b9a73240abf6532dedc89c9c3e050c98", + "symbol": "LIGHT", + "decimals": 9, + "name": "Light Defi", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x842668e2b9a73240abf6532dedc89c9c3e050c98.png", + "aggregators": [ + "PancakeCoinMarketCap", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 4 + }, + "0x9abdba20edfba06b782126b4d8d72a5853918fd0": { + "address": "0x9abdba20edfba06b782126b4d8d72a5853918fd0", + "symbol": "TABOO", + "decimals": 9, + "name": "Taboo", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x9abdba20edfba06b782126b4d8d72a5853918fd0.png", + "aggregators": [ + "PancakeCoinMarketCap", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 4 + }, + "0xe283d0e3b8c102badf5e8166b73e02d96d92f688": { + "address": "0xe283d0e3b8c102badf5e8166b73e02d96d92f688", + "symbol": "ELEPHANT", + "decimals": 9, + "name": "Elephant Money", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xe283d0e3b8c102badf5e8166b73e02d96d92f688.png", + "aggregators": [ + "PancakeCoinMarketCap", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 4 + }, + "0x092bbec1342afffd16cfb41b56343d5a299cdf0d": { + "address": "0x092bbec1342afffd16cfb41b56343d5a299cdf0d", + "symbol": "SHICO", + "decimals": 9, + "name": "ShibaCorgi", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x092bbec1342afffd16cfb41b56343d5a299cdf0d.png", + "aggregators": [ + "PancakeCoinMarketCap", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 4 + }, + "0x5b1baec64af6dc54e6e04349315919129a6d3c23": { + "address": "0x5b1baec64af6dc54e6e04349315919129a6d3c23", + "symbol": "DXCT", + "decimals": 18, + "name": "DNAxCAT", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x5b1baec64af6dc54e6e04349315919129a6d3c23.png", + "aggregators": [ + "PancakeCoinMarketCap", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 4 + }, + "0xcdb3d3642fb4d48d2b5e4fb4a014448a2761c063": { + "address": "0xcdb3d3642fb4d48d2b5e4fb4a014448a2761c063", + "symbol": "JTT", + "decimals": 18, + "name": "Justus", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xcdb3d3642fb4d48d2b5e4fb4a014448a2761c063.png", + "aggregators": [ + "PancakeCoinMarketCap", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 4 + }, + "0x1e446cbea52badeb614fbe4ab7610f737995fb44": { + "address": "0x1e446cbea52badeb614fbe4ab7610f737995fb44", + "symbol": "SAT", + "decimals": 9, + "name": "Saturna", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x1e446cbea52badeb614fbe4ab7610f737995fb44.png", + "aggregators": [ + "PancakeCoinMarketCap", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 4 + }, + "0x1162e2efce13f99ed259ffc24d99108aaa0ce935": { + "address": "0x1162e2efce13f99ed259ffc24d99108aaa0ce935", + "symbol": "CLU", + "decimals": 9, + "name": "CluCoin", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x1162e2efce13f99ed259ffc24d99108aaa0ce935.png", + "aggregators": [ + "PancakeCoinMarketCap", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 4 + }, + "0x4615c8e2db74517a34712c9bdea5c418d999014b": { + "address": "0x4615c8e2db74517a34712c9bdea5c418d999014b", + "symbol": "GROKCAT", + "decimals": 9, + "name": "Grok Cat", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x4615c8e2db74517a34712c9bdea5c418d999014b.png", + "aggregators": [ + "PancakeCoinMarketCap", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 4 + }, + "0xa0b9bb05da11e3b19ffd64554400f59d4a378515": { + "address": "0xa0b9bb05da11e3b19ffd64554400f59d4a378515", + "symbol": "MOOO", + "decimals": 18, + "name": "Hashtagger", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xa0b9bb05da11e3b19ffd64554400f59d4a378515.png", + "aggregators": [ + "PancakeCoinMarketCap", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 4 + }, + "0x7b9f36a2f331ece03a7483d2713cfd806f9beef2": { + "address": "0x7b9f36a2f331ece03a7483d2713cfd806f9beef2", + "symbol": "IRISTOKEN", + "decimals": 9, + "name": "Iris Ecosystem", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x7b9f36a2f331ece03a7483d2713cfd806f9beef2.png", + "aggregators": [ + "PancakeCoinMarketCap", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 4 + }, + "0xd460546a74827580cd3321eec817d0b7b7094210": { + "address": "0xd460546a74827580cd3321eec817d0b7b7094210", + "symbol": "UNMD", + "decimals": 18, + "name": "Utility NexusMind", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xd460546a74827580cd3321eec817d0b7b7094210.png", + "aggregators": [ + "PancakeCoinMarketCap", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 4 + }, + "0x0aa086e7a108d387de63294fe2a88b05820a9855": { + "address": "0x0aa086e7a108d387de63294fe2a88b05820a9855", + "symbol": "MMO", + "decimals": 18, + "name": "MMOCoin", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x0aa086e7a108d387de63294fe2a88b05820a9855.png", + "aggregators": [ + "PancakeCoinMarketCap", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 4 + }, + "0x1991501f1398663f69dd7391c055bb0df6514f76": { + "address": "0x1991501f1398663f69dd7391c055bb0df6514f76", + "symbol": "HOTDOGE", + "decimals": 9, + "name": "HotDoge [OLD]", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x1991501f1398663f69dd7391c055bb0df6514f76.png", + "aggregators": [ + "PancakeCoinMarketCap", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 4 + }, + "0xa11ff9976018fda2a8c4ccfa6ffbe8423c5ab668": { + "address": "0xa11ff9976018fda2a8c4ccfa6ffbe8423c5ab668", + "symbol": "FLOKICASH", + "decimals": 18, + "name": "Floki Cash", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xa11ff9976018fda2a8c4ccfa6ffbe8423c5ab668.png", + "aggregators": [ + "PancakeCoinMarketCap", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 4 + }, + "0x7fa7df4996ac59f398476892cfb195ed38543520": { + "address": "0x7fa7df4996ac59f398476892cfb195ed38543520", + "symbol": "WAG", + "decimals": 18, + "name": "WagyuSwap", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x7fa7df4996ac59f398476892cfb195ed38543520.png", + "aggregators": [ + "PancakeCoinMarketCap", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 4 + }, + "0x5f320c3b8f82acfe8f2bb1c85d63aa66a7ff524f": { + "address": "0x5f320c3b8f82acfe8f2bb1c85d63aa66a7ff524f", + "symbol": "NLC", + "decimals": 9, + "name": "Nelore Coin", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x5f320c3b8f82acfe8f2bb1c85d63aa66a7ff524f.png", + "aggregators": [ + "PancakeCoinMarketCap", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 4 + }, + "0x16dcc0ec78e91e868dca64be86aec62bf7c61037": { + "address": "0x16dcc0ec78e91e868dca64be86aec62bf7c61037", + "symbol": "EVERETH", + "decimals": 9, + "name": "EverETH Reflect", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x16dcc0ec78e91e868dca64be86aec62bf7c61037.png", + "aggregators": [ + "PancakeCoinMarketCap", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 4 + }, + "0x56672ecb506301b1e32ed28552797037c54d36a9": { + "address": "0x56672ecb506301b1e32ed28552797037c54d36a9", + "symbol": "BIS", + "decimals": 8, + "name": "Bismuth", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x56672ecb506301b1e32ed28552797037c54d36a9.png", + "aggregators": [ + "PancakeCoinMarketCap", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 4 + }, + "0x961e149db8bfbdb318c182152725ac806d7be3f4": { + "address": "0x961e149db8bfbdb318c182152725ac806d7be3f4", + "symbol": "UW3S", + "decimals": 18, + "name": "Utility Web3Shot", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x961e149db8bfbdb318c182152725ac806d7be3f4.png", + "aggregators": [ + "PancakeCoinMarketCap", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 4 + }, + "0x1894251aebcff227133575ed3069be9670e25db0": { + "address": "0x1894251aebcff227133575ed3069be9670e25db0", + "symbol": "HALO", + "decimals": 9, + "name": "Halo Coin", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x1894251aebcff227133575ed3069be9670e25db0.png", + "aggregators": [ + "PancakeCoinMarketCap", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 4 + }, + "0x71809c4ff017ceade03038a8b597ecabb6519918": { + "address": "0x71809c4ff017ceade03038a8b597ecabb6519918", + "symbol": "CPOO", + "decimals": 18, + "name": "Cockapoo", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x71809c4ff017ceade03038a8b597ecabb6519918.png", + "aggregators": [ + "PancakeCoinMarketCap", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 4 + }, + "0xa53e61578ff54f1ad70186be99332a6e20b6ffa9": { + "address": "0xa53e61578ff54f1ad70186be99332a6e20b6ffa9", + "symbol": "GDOGE", + "decimals": 9, + "name": "Golden Doge", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xa53e61578ff54f1ad70186be99332a6e20b6ffa9.png", + "aggregators": [ + "PancakeCoinMarketCap", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 4 + }, + "0xd73f32833b6d5d9c8070c23e599e283a3039823c": { + "address": "0xd73f32833b6d5d9c8070c23e599e283a3039823c", + "symbol": "WTF", + "decimals": 18, + "name": "Waterfall Governance", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xd73f32833b6d5d9c8070c23e599e283a3039823c.png", + "aggregators": [ + "PancakeCoinMarketCap", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 4 + }, + "0x9b152a4ce62d8157dc1d539021e9bca999124b0a": { + "address": "0x9b152a4ce62d8157dc1d539021e9bca999124b0a", + "symbol": "BABYMYRO", + "decimals": 9, + "name": "Baby Myro", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x9b152a4ce62d8157dc1d539021e9bca999124b0a.png", + "aggregators": [ + "PancakeCoinMarketCap", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 4 + }, + "0xbf3950db0522a7f5caa107d4cbbbd84de9e047e2": { + "address": "0xbf3950db0522a7f5caa107d4cbbbd84de9e047e2", + "symbol": "JUSD", + "decimals": 18, + "name": "JUSD", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xbf3950db0522a7f5caa107d4cbbbd84de9e047e2.png", + "aggregators": [ + "PancakeCoinMarketCap", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 4 + }, + "0x09c704c1eb9245af48f058878e72129557a10f04": { + "address": "0x09c704c1eb9245af48f058878e72129557a10f04", + "symbol": "SWEEP", + "decimals": 9, + "name": "Sweep Token", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x09c704c1eb9245af48f058878e72129557a10f04.png", + "aggregators": [ + "PancakeCoinMarketCap", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 4 + }, + "0x7db13e8b9eaa42fc948268b954dd4e6218cc4cb1": { + "address": "0x7db13e8b9eaa42fc948268b954dd4e6218cc4cb1", + "symbol": "FWIN-AI", + "decimals": 18, + "name": "Fight Win AI", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x7db13e8b9eaa42fc948268b954dd4e6218cc4cb1.png", + "aggregators": [ + "PancakeCoinMarketCap", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 4 + }, + "0x62760e76dce6b500349ec5f6119228d047913350": { + "address": "0x62760e76dce6b500349ec5f6119228d047913350", + "symbol": "TWIF", + "decimals": 9, + "name": "Tomwifhat", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x62760e76dce6b500349ec5f6119228d047913350.png", + "aggregators": [ + "PancakeCoinMarketCap", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 4 + }, + "0xc41689a727469c1573009757200371edf36d540e": { + "address": "0xc41689a727469c1573009757200371edf36d540e", + "symbol": "DYNA", + "decimals": 9, + "name": "Dynamix", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xc41689a727469c1573009757200371edf36d540e.png", + "aggregators": [ + "PancakeCoinMarketCap", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 4 + }, + "0x10051147418c42218986cedd0adc266441f8a14f": { + "address": "0x10051147418c42218986cedd0adc266441f8a14f", + "symbol": "DYOR", + "decimals": 9, + "name": "DYOR", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x10051147418c42218986cedd0adc266441f8a14f.png", + "aggregators": [ + "PancakeCoinMarketCap", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 4 + }, + "0x79ebc9a2ce02277a4b5b3a768b1c0a4ed75bd936": { + "address": "0x79ebc9a2ce02277a4b5b3a768b1c0a4ed75bd936", + "symbol": "CATGIRL", + "decimals": 9, + "name": "Catgirl", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x79ebc9a2ce02277a4b5b3a768b1c0a4ed75bd936.png", + "aggregators": [ + "PancakeCoinMarketCap", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 4 + }, + "0x166295ebd6a938c7aaf61350eb5161a9939ab2b7": { + "address": "0x166295ebd6a938c7aaf61350eb5161a9939ab2b7", + "symbol": "MURA", + "decimals": 18, + "name": "Murasaki", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x166295ebd6a938c7aaf61350eb5161a9939ab2b7.png", + "aggregators": [ + "PancakeCoinMarketCap", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 4 + }, + "0x70b6c6a555507ee4ac91c15e5c80b7dc8ff3b489": { + "address": "0x70b6c6a555507ee4ac91c15e5c80b7dc8ff3b489", + "symbol": "XTT-B20", + "decimals": 18, + "name": "XTblock", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x70b6c6a555507ee4ac91c15e5c80b7dc8ff3b489.png", + "aggregators": [ + "PancakeCoinMarketCap", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 4 + }, + "0xa78775bba7a542f291e5ef7f13c6204e704a90ba": { + "address": "0xa78775bba7a542f291e5ef7f13c6204e704a90ba", + "symbol": "METO", + "decimals": 18, + "name": "Metafluence", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xa78775bba7a542f291e5ef7f13c6204e704a90ba.png", + "aggregators": [ + "PancakeCoinMarketCap", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 4 + }, + "0xc8cc4bbd33264db465e4c9ea011f895d02505959": { + "address": "0xc8cc4bbd33264db465e4c9ea011f895d02505959", + "symbol": "SOR", + "decimals": 18, + "name": "Sorcery Finance", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xc8cc4bbd33264db465e4c9ea011f895d02505959.png", + "aggregators": [ + "PancakeCoinMarketCap", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 4 + }, + "0xe0b0c16038845bed3fcf70304d3e167df81ce225": { + "address": "0xe0b0c16038845bed3fcf70304d3e167df81ce225", + "symbol": "CSWAP", + "decimals": 18, + "name": "CrossSwap", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xe0b0c16038845bed3fcf70304d3e167df81ce225.png", + "aggregators": [ + "PancakeCoinMarketCap", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 4 + }, + "0x5c46c55a699a6359e451b2c99344138420c87261": { + "address": "0x5c46c55a699a6359e451b2c99344138420c87261", + "symbol": "IBG", + "decimals": 18, + "name": "iBG Finance (BSC)", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x5c46c55a699a6359e451b2c99344138420c87261.png", + "aggregators": [ + "PancakeCoinMarketCap", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 4 + }, + "0x69c2fcae7e30b429166bd616a322e32bec036bcf": { + "address": "0x69c2fcae7e30b429166bd616a322e32bec036bcf", + "symbol": "MURATIAI", + "decimals": 18, + "name": "MuratiAI", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x69c2fcae7e30b429166bd616a322e32bec036bcf.png", + "aggregators": [ + "PancakeCoinMarketCap", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 4 + }, + "0x0d1afece252ff513c5d210aeae88f6c7d37e6ab2": { + "address": "0x0d1afece252ff513c5d210aeae88f6c7d37e6ab2", + "symbol": "EBYT", + "decimals": 18, + "name": "EarthByt", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x0d1afece252ff513c5d210aeae88f6c7d37e6ab2.png", + "aggregators": [ + "PancakeCoinMarketCap", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 4 + }, + "0x432b4f994760ea0c5f48baab6217e82a2b7f2c55": { + "address": "0x432b4f994760ea0c5f48baab6217e82a2b7f2c55", + "symbol": "FIRSTHARE", + "decimals": 9, + "name": "FirstHare", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x432b4f994760ea0c5f48baab6217e82a2b7f2c55.png", + "aggregators": [ + "PancakeCoinMarketCap", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 4 + }, + "0xdaca7c8e16ddfa5d5b266380228ca9e2288f3931": { + "address": "0xdaca7c8e16ddfa5d5b266380228ca9e2288f3931", + "symbol": "DYZILLA", + "decimals": 18, + "name": "DYZilla", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xdaca7c8e16ddfa5d5b266380228ca9e2288f3931.png", + "aggregators": [ + "PancakeCoinMarketCap", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 4 + }, + "0xee81ca267b8357ba30049d679027ebf65fcf7458": { + "address": "0xee81ca267b8357ba30049d679027ebf65fcf7458", + "symbol": "VOPO", + "decimals": 18, + "name": "VOPO", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xee81ca267b8357ba30049d679027ebf65fcf7458.png", + "aggregators": [ + "PancakeCoinMarketCap", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 4 + }, + "0xd08b9e557d1f64c8dd50a168453ea302a83e47fc": { + "address": "0xd08b9e557d1f64c8dd50a168453ea302a83e47fc", + "symbol": "GROKINU", + "decimals": 9, + "name": "Grok Inu", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xd08b9e557d1f64c8dd50a168453ea302a83e47fc.png", + "aggregators": [ + "PancakeCoinMarketCap", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 4 + }, + "0x7f72ebb448387537c174a5d17e762c877db28fb6": { + "address": "0x7f72ebb448387537c174a5d17e762c877db28fb6", + "symbol": "KOIN", + "decimals": 18, + "name": "Fishkoin", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x7f72ebb448387537c174a5d17e762c877db28fb6.png", + "aggregators": [ + "PancakeCoinMarketCap", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 4 + }, + "0xcf0990170a60da34ffcffa14ead4a3de27d0f4ce": { + "address": "0xcf0990170a60da34ffcffa14ead4a3de27d0f4ce", + "symbol": "BTCBAM", + "decimals": 8, + "name": "BitcoinBam", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xcf0990170a60da34ffcffa14ead4a3de27d0f4ce.png", + "aggregators": [ + "PancakeCoinMarketCap", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 4 + }, + "0x68590a47578e5060a29fd99654f4556dbfa05d10": { + "address": "0x68590a47578e5060a29fd99654f4556dbfa05d10", + "symbol": "SMRAT", + "decimals": 9, + "name": "Secured MoonRat", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x68590a47578e5060a29fd99654f4556dbfa05d10.png", + "aggregators": [ + "PancakeCoinMarketCap", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 4 + }, + "0xbfbee3dac982148ac793161f7362344925506903": { + "address": "0xbfbee3dac982148ac793161f7362344925506903", + "symbol": "CATZ", + "decimals": 18, + "name": "CatzCoin", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xbfbee3dac982148ac793161f7362344925506903.png", + "aggregators": [ + "PancakeCoinMarketCap", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 4 + }, + "0x36dbcbca106353d49e1e0e8974492ffb862a0c92": { + "address": "0x36dbcbca106353d49e1e0e8974492ffb862a0c92", + "symbol": "SME", + "decimals": 9, + "name": "SafeMeme", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x36dbcbca106353d49e1e0e8974492ffb862a0c92.png", + "aggregators": [ + "PancakeCoinMarketCap", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 4 + }, + "0x5e90253fbae4dab78aa351f4e6fed08a64ab5590": { + "address": "0x5e90253fbae4dab78aa351f4e6fed08a64ab5590", + "symbol": "BONFIRE", + "decimals": 9, + "name": "Bonfire", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x5e90253fbae4dab78aa351f4e6fed08a64ab5590.png", + "aggregators": ["PancakeCoinMarketCap", "Rubic", "Squid", "Rango"], + "occurrences": 4 + }, + "0x1ef72a1df5e4d165f84fc43b20d56caa7dad46e1": { + "address": "0x1ef72a1df5e4d165f84fc43b20d56caa7dad46e1", + "symbol": "AMI", + "decimals": 18, + "name": "AMMYI Coin", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x1ef72a1df5e4d165f84fc43b20d56caa7dad46e1.png", + "aggregators": [ + "PancakeCoinMarketCap", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 4 + }, + "0x1b391f9d0fffa86a6088a73ac4ac28d12c9ccfbd": { + "address": "0x1b391f9d0fffa86a6088a73ac4ac28d12c9ccfbd", + "symbol": "SET", + "decimals": 9, + "name": "Sustainable Energy", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x1b391f9d0fffa86a6088a73ac4ac28d12c9ccfbd.png", + "aggregators": [ + "PancakeCoinMarketCap", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 4 + }, + "0x6aa150fff813e0bec1273691f349ad080df7216d": { + "address": "0x6aa150fff813e0bec1273691f349ad080df7216d", + "symbol": "FERMA", + "decimals": 8, + "name": "Ferma", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x6aa150fff813e0bec1273691f349ad080df7216d.png", + "aggregators": [ + "PancakeCoinMarketCap", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 4 + }, + "0xb27adaffb9fea1801459a1a81b17218288c097cc": { + "address": "0xb27adaffb9fea1801459a1a81b17218288c097cc", + "symbol": "POOCOIN", + "decimals": 8, + "name": "PooCoin", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xb27adaffb9fea1801459a1a81b17218288c097cc.png", + "aggregators": [ + "PancakeCoinMarketCap", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 4 + }, + "0x484312a0aaeae3ae36a74ff3e294246f35dddf4f": { + "address": "0x484312a0aaeae3ae36a74ff3e294246f35dddf4f", + "symbol": "BASHTANK", + "decimals": 9, + "name": "Baby Shark Tank", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x484312a0aaeae3ae36a74ff3e294246f35dddf4f.png", + "aggregators": [ + "PancakeCoinMarketCap", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 4 + }, + "0xb6090a50f66046e3c6afb9311846a6432e45060a": { + "address": "0xb6090a50f66046e3c6afb9311846a6432e45060a", + "symbol": "PINKM", + "decimals": 9, + "name": "PinkMoon", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xb6090a50f66046e3c6afb9311846a6432e45060a.png", + "aggregators": [ + "PancakeCoinMarketCap", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 4 + }, + "0xaf96a19c2dd4a0f6b077d9481fcc8c9102faa141": { + "address": "0xaf96a19c2dd4a0f6b077d9481fcc8c9102faa141", + "symbol": "MOONARCH", + "decimals": 9, + "name": "Moonarch", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xaf96a19c2dd4a0f6b077d9481fcc8c9102faa141.png", + "aggregators": [ + "PancakeCoinMarketCap", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 4 + }, + "0x3916984fa787d89b648ccd8d60b5ff07e0e8e4f4": { + "address": "0x3916984fa787d89b648ccd8d60b5ff07e0e8e4f4", + "symbol": "PUBE", + "decimals": 9, + "name": "Pube Finance", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x3916984fa787d89b648ccd8d60b5ff07e0e8e4f4.png", + "aggregators": [ + "PancakeCoinMarketCap", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 4 + }, + "0x9fb677928dd244befcd0bbebdf6068dd4bef559c": { + "address": "0x9fb677928dd244befcd0bbebdf6068dd4bef559c", + "symbol": "AQUA", + "decimals": 9, + "name": "Bela Aqua", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x9fb677928dd244befcd0bbebdf6068dd4bef559c.png", + "aggregators": [ + "PancakeCoinMarketCap", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 4 + }, + "0xb8309421b0603febbc370a6b0c5c59d3af202759": { + "address": "0xb8309421b0603febbc370a6b0c5c59d3af202759", + "symbol": "P3NGUIN", + "decimals": 18, + "name": "SpacePenguin", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xb8309421b0603febbc370a6b0c5c59d3af202759.png", + "aggregators": [ + "PancakeCoinMarketCap", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 4 + }, + "0xbceee918077f63fb1b9e10403f59ca40c7061341": { + "address": "0xbceee918077f63fb1b9e10403f59ca40c7061341", + "symbol": "PAPADOGE", + "decimals": 18, + "name": "Papa Doge", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xbceee918077f63fb1b9e10403f59ca40c7061341.png", + "aggregators": [ + "PancakeCoinMarketCap", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 4 + }, + "0xe3894cb9e92ca78524fb6a30ff072fa5e533c162": { + "address": "0xe3894cb9e92ca78524fb6a30ff072fa5e533c162", + "symbol": "ELP", + "decimals": 18, + "name": "The Everlasting Parachain", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xe3894cb9e92ca78524fb6a30ff072fa5e533c162.png", + "aggregators": [ + "PancakeCoinMarketCap", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 4 + }, + "0xaecf6d1aff214fef70042740054f0f6d0caa98ab": { + "address": "0xaecf6d1aff214fef70042740054f0f6d0caa98ab", + "symbol": "BABYSHIBAINU", + "decimals": 9, + "name": "Baby Shiba Inu", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xaecf6d1aff214fef70042740054f0f6d0caa98ab.png", + "aggregators": [ + "PancakeCoinMarketCap", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 4 + }, + "0x1cfd6813a59d7b90c41dd5990ed99c3bf2eb8f55": { + "address": "0x1cfd6813a59d7b90c41dd5990ed99c3bf2eb8f55", + "symbol": "CORGIB", + "decimals": 18, + "name": "The Corgi of PolkaBridge", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x1cfd6813a59d7b90c41dd5990ed99c3bf2eb8f55.png", + "aggregators": [ + "PancakeCoinMarketCap", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 4 + }, + "0x450dcf93160a30be156a4600802c91bf64dffd2e": { + "address": "0x450dcf93160a30be156a4600802c91bf64dffd2e", + "symbol": "CORGI", + "decimals": 18, + "name": "CorgiCoin", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x450dcf93160a30be156a4600802c91bf64dffd2e.png", + "aggregators": [ + "PancakeCoinMarketCap", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 4 + }, + "0xb6d053e260d410eac02ea28755696f90a8ecca2b": { + "address": "0xb6d053e260d410eac02ea28755696f90a8ecca2b", + "symbol": "SHIKO", + "decimals": 9, + "name": "Shikoku Inu", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xb6d053e260d410eac02ea28755696f90a8ecca2b.png", + "aggregators": [ + "PancakeCoinMarketCap", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 4 + }, + "0x3e07a8a8f260edeeca24139b6767a073918e8674": { + "address": "0x3e07a8a8f260edeeca24139b6767a073918e8674", + "symbol": "CATGE", + "decimals": 9, + "name": "Catge Coin", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x3e07a8a8f260edeeca24139b6767a073918e8674.png", + "aggregators": [ + "PancakeCoinMarketCap", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 4 + }, + "0xfd42728b76772a82ccad527e298dd15a55f4ddd6": { + "address": "0xfd42728b76772a82ccad527e298dd15a55f4ddd6", + "symbol": "KAREN", + "decimals": 9, + "name": "KarenCoin", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xfd42728b76772a82ccad527e298dd15a55f4ddd6.png", + "aggregators": [ + "PancakeCoinMarketCap", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 4 + }, + "0x960cc8f437165b7362a34d95d1ec62dd2a940f00": { + "address": "0x960cc8f437165b7362a34d95d1ec62dd2a940f00", + "symbol": "COSMIC", + "decimals": 18, + "name": "CosmicSwap", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x960cc8f437165b7362a34d95d1ec62dd2a940f00.png", + "aggregators": [ + "PancakeCoinMarketCap", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 4 + }, + "0xdf0816cc717216c8b0863af8d4f0fc20bc65d643": { + "address": "0xdf0816cc717216c8b0863af8d4f0fc20bc65d643", + "symbol": "SHIBSC", + "decimals": 18, + "name": "SHIBA BSC", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xdf0816cc717216c8b0863af8d4f0fc20bc65d643.png", + "aggregators": [ + "PancakeCoinMarketCap", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 4 + }, + "0xba26397cdff25f0d26e815d218ef3c77609ae7f1": { + "address": "0xba26397cdff25f0d26e815d218ef3c77609ae7f1", + "symbol": "LYPTUS", + "decimals": 18, + "name": "Lyptus", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xba26397cdff25f0d26e815d218ef3c77609ae7f1.png", + "aggregators": ["PancakeCoinGecko", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0x4efab39b14167da54aebed2094a61aa1fd384056": { + "address": "0x4efab39b14167da54aebed2094a61aa1fd384056", + "symbol": "LEOPARD", + "decimals": 9, + "name": "Leopard", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x4efab39b14167da54aebed2094a61aa1fd384056.png", + "aggregators": [ + "PancakeCoinMarketCap", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 4 + }, + "0x51e6ac1533032e72e92094867fd5921e3ea1bfa0": { + "address": "0x51e6ac1533032e72e92094867fd5921e3ea1bfa0", + "symbol": "LUCA", + "decimals": 18, + "name": "LUCA", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x51e6ac1533032e72e92094867fd5921e3ea1bfa0.png", + "aggregators": [ + "PancakeCoinMarketCap", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 4 + }, + "0xe52c5a3590952f3ed6fccf89a0bd7f38e11c5b98": { + "address": "0xe52c5a3590952f3ed6fccf89a0bd7f38e11c5b98", + "symbol": "DEK", + "decimals": 18, + "name": "DekBox", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xe52c5a3590952f3ed6fccf89a0bd7f38e11c5b98.png", + "aggregators": ["PancakeCoinGecko", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0x07b36f2549291d320132712a1e64d3826b1fb4d7": { + "address": "0x07b36f2549291d320132712a1e64d3826b1fb4d7", + "symbol": "WIFEDOGE", + "decimals": 9, + "name": "Wifedoge", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x07b36f2549291d320132712a1e64d3826b1fb4d7.png", + "aggregators": [ + "PancakeCoinMarketCap", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 4 + }, + "0x617ba3d39e96c084e60c6db3f7b365a96ee4e555": { + "address": "0x617ba3d39e96c084e60c6db3f7b365a96ee4e555", + "symbol": "IDO", + "decimals": 9, + "name": "Interstellar Domain Order", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x617ba3d39e96c084e60c6db3f7b365a96ee4e555.png", + "aggregators": [ + "PancakeCoinMarketCap", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 4 + }, + "0x98afac3b663113d29dc2cd8c2d1d14793692f110": { + "address": "0x98afac3b663113d29dc2cd8c2d1d14793692f110", + "symbol": "MVS", + "decimals": 18, + "name": "MVS Multiverse", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x98afac3b663113d29dc2cd8c2d1d14793692f110.png", + "aggregators": [ + "PancakeCoinMarketCap", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 4 + }, + "0xb661f4576d5e0b622fee6ab041fd5451fe02ba4c": { + "address": "0xb661f4576d5e0b622fee6ab041fd5451fe02ba4c", + "symbol": "DFG", + "decimals": 18, + "name": "Defigram", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xb661f4576d5e0b622fee6ab041fd5451fe02ba4c.png", + "aggregators": [ + "PancakeCoinMarketCap", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 4 + }, + "0x48ed9372169ef0bf2b901bbe45e52b6a6b8f1ecc": { + "address": "0x48ed9372169ef0bf2b901bbe45e52b6a6b8f1ecc", + "symbol": "CRAZYBUNNY", + "decimals": 9, + "name": "Crazy Bunny", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x48ed9372169ef0bf2b901bbe45e52b6a6b8f1ecc.png", + "aggregators": [ + "PancakeCoinMarketCap", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 4 + }, + "0x53ff62409b219ccaff01042bb2743211bb99882e": { + "address": "0x53ff62409b219ccaff01042bb2743211bb99882e", + "symbol": "PRZS", + "decimals": 18, + "name": "Perezoso", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x53ff62409b219ccaff01042bb2743211bb99882e.png", + "aggregators": [ + "PancakeCoinMarketCap", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 4 + }, + "0x565d40e2ef60f0b4e5bd0136bb2c58ace83fdaa5": { + "address": "0x565d40e2ef60f0b4e5bd0136bb2c58ace83fdaa5", + "symbol": "S315", + "decimals": 18, + "name": "SWAP315", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x565d40e2ef60f0b4e5bd0136bb2c58ace83fdaa5.png", + "aggregators": [ + "PancakeCoinMarketCap", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 4 + }, + "0xc35ed584b24fd2d0885708e370343c43e20f3424": { + "address": "0xc35ed584b24fd2d0885708e370343c43e20f3424", + "symbol": "SHIBAAI", + "decimals": 18, + "name": "SHIBAAI", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xc35ed584b24fd2d0885708e370343c43e20f3424.png", + "aggregators": [ + "PancakeCoinMarketCap", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 4 + }, + "0x3d90db6cc52e95679fb431e88b1830ba18e41889": { + "address": "0x3d90db6cc52e95679fb431e88b1830ba18e41889", + "symbol": "RABI", + "decimals": 4, + "name": "Rabi", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x3d90db6cc52e95679fb431e88b1830ba18e41889.png", + "aggregators": [ + "PancakeCoinMarketCap", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 4 + }, + "0xf29480344d8e21efeab7fde39f8d8299056a7fea": { + "address": "0xf29480344d8e21efeab7fde39f8d8299056a7fea", + "symbol": "TBCC", + "decimals": 18, + "name": "TBCC", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xf29480344d8e21efeab7fde39f8d8299056a7fea.png", + "aggregators": [ + "PancakeCoinMarketCap", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 4 + }, + "0xbb1861068fca591bd3009a1d3b7f985f3a6400f8": { + "address": "0xbb1861068fca591bd3009a1d3b7f985f3a6400f8", + "symbol": "RVM", + "decimals": 18, + "name": "Realvirm", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xbb1861068fca591bd3009a1d3b7f985f3a6400f8.png", + "aggregators": [ + "PancakeCoinMarketCap", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 4 + }, + "0xddae5f343b7768eadaad88a7f520fff54f198211": { + "address": "0xddae5f343b7768eadaad88a7f520fff54f198211", + "symbol": "BCA", + "decimals": 18, + "name": "Bitcoiva", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xddae5f343b7768eadaad88a7f520fff54f198211.png", + "aggregators": [ + "PancakeCoinMarketCap", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 4 + }, + "0x3c70260eee0a2bfc4b375feb810325801f289fbd": { + "address": "0x3c70260eee0a2bfc4b375feb810325801f289fbd", + "symbol": "OCP", + "decimals": 18, + "name": "Omni Consumer Protocol", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x3c70260eee0a2bfc4b375feb810325801f289fbd.png", + "aggregators": [ + "PancakeCoinMarketCap", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 4 + }, + "0x400613f184d1207f5c07a67d67040a4e23e92feb": { + "address": "0x400613f184d1207f5c07a67d67040a4e23e92feb", + "symbol": "UPDOG", + "decimals": 9, + "name": "UpDog", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x400613f184d1207f5c07a67d67040a4e23e92feb.png", + "aggregators": [ + "PancakeCoinMarketCap", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 4 + }, + "0x63290fc683d11ea077aba09596ff7387d49df912": { + "address": "0x63290fc683d11ea077aba09596ff7387d49df912", + "symbol": "RAM", + "decimals": 9, + "name": "Ramifi Protocol", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x63290fc683d11ea077aba09596ff7387d49df912.png", + "aggregators": [ + "PancakeCoinMarketCap", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 4 + }, + "0x0b3f42481c228f70756dbfa0309d3ddc2a5e0f6a": { + "address": "0x0b3f42481c228f70756dbfa0309d3ddc2a5e0f6a", + "symbol": "ULTRA", + "decimals": 9, + "name": "UltraSafe", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x0b3f42481c228f70756dbfa0309d3ddc2a5e0f6a.png", + "aggregators": [ + "PancakeCoinMarketCap", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 4 + }, + "0xef032f652fce3a0effce3796a68eb978b465a336": { + "address": "0xef032f652fce3a0effce3796a68eb978b465a336", + "symbol": "MOOCHII", + "decimals": 9, + "name": "Moochii", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xef032f652fce3a0effce3796a68eb978b465a336.png", + "aggregators": [ + "PancakeCoinMarketCap", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 4 + }, + "0x308fc5cdd559be5cb62b08a26a4699bbef4a888f": { + "address": "0x308fc5cdd559be5cb62b08a26a4699bbef4a888f", + "symbol": "DCIP", + "decimals": 9, + "name": "Decentralized Community Investment Protocol", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x308fc5cdd559be5cb62b08a26a4699bbef4a888f.png", + "aggregators": [ + "PancakeCoinMarketCap", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 4 + }, + "0x11582ef4642b1e7f0a023804b497656e2663bc9b": { + "address": "0x11582ef4642b1e7f0a023804b497656e2663bc9b", + "symbol": "KCCPAD", + "decimals": 18, + "name": "KCCPad", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x11582ef4642b1e7f0a023804b497656e2663bc9b.png", + "aggregators": [ + "PancakeCoinMarketCap", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 4 + }, + "0x802c68730212295149f2bea78c25e2cf5a05b8a0": { + "address": "0x802c68730212295149f2bea78c25e2cf5a05b8a0", + "symbol": "CORGI", + "decimals": 8, + "name": "Corgidoge", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x802c68730212295149f2bea78c25e2cf5a05b8a0.png", + "aggregators": [ + "PancakeCoinMarketCap", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 4 + }, + "0x12da2f2761038486271c99da7e0fb4413e2b5e38": { + "address": "0x12da2f2761038486271c99da7e0fb4413e2b5e38", + "symbol": "NBM", + "decimals": 9, + "name": "NFTBlackmarket", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x12da2f2761038486271c99da7e0fb4413e2b5e38.png", + "aggregators": [ + "PancakeCoinMarketCap", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 4 + }, + "0x989b8f0219eb7aa0bed22e24f053eb2b155f4394": { + "address": "0x989b8f0219eb7aa0bed22e24f053eb2b155f4394", + "symbol": "MOMMYDOGE", + "decimals": 9, + "name": "Mommy Doge", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x989b8f0219eb7aa0bed22e24f053eb2b155f4394.png", + "aggregators": [ + "PancakeCoinMarketCap", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 4 + }, + "0x3780e00d4c60887af38345ccd44f7617dbfb10a0": { + "address": "0x3780e00d4c60887af38345ccd44f7617dbfb10a0", + "symbol": "DOGE2", + "decimals": 9, + "name": "Dogecoin 2.0", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x3780e00d4c60887af38345ccd44f7617dbfb10a0.png", + "aggregators": [ + "PancakeCoinMarketCap", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 4 + }, + "0xc77dd3ade7b717583e0924466e4e474a5673332c": { + "address": "0xc77dd3ade7b717583e0924466e4e474a5673332c", + "symbol": "BSTS", + "decimals": 9, + "name": "Magic Beasties", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xc77dd3ade7b717583e0924466e4e474a5673332c.png", + "aggregators": [ + "PancakeCoinMarketCap", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 4 + }, + "0x1006ea3289b833b6720aaa82746990ec77de8c36": { + "address": "0x1006ea3289b833b6720aaa82746990ec77de8c36", + "symbol": "DBA", + "decimals": 8, + "name": "Digital Bank of Africa", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x1006ea3289b833b6720aaa82746990ec77de8c36.png", + "aggregators": [ + "PancakeCoinMarketCap", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 4 + }, + "0x6bfd4ca8ec078d613ed6a5248eb2c7a0d5c38b7b": { + "address": "0x6bfd4ca8ec078d613ed6a5248eb2c7a0d5c38b7b", + "symbol": "ECT", + "decimals": 9, + "name": "Ecochain Finance", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x6bfd4ca8ec078d613ed6a5248eb2c7a0d5c38b7b.png", + "aggregators": [ + "PancakeCoinMarketCap", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 4 + }, + "0x4c0415a6e340eccebff58131799c6c4127cc39fa": { + "address": "0x4c0415a6e340eccebff58131799c6c4127cc39fa", + "symbol": "XDOGE", + "decimals": 18, + "name": "Xdoge", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x4c0415a6e340eccebff58131799c6c4127cc39fa.png", + "aggregators": [ + "PancakeCoinMarketCap", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 4 + }, + "0xda4714fee90ad7de50bc185ccd06b175d23906c1": { + "address": "0xda4714fee90ad7de50bc185ccd06b175d23906c1", + "symbol": "GODZ", + "decimals": 9, + "name": "Godzilla", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xda4714fee90ad7de50bc185ccd06b175d23906c1.png", + "aggregators": [ + "PancakeCoinMarketCap", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 4 + }, + "0xb6adb74efb5801160ff749b1985fd3bd5000e938": { + "address": "0xb6adb74efb5801160ff749b1985fd3bd5000e938", + "symbol": "GZONE", + "decimals": 18, + "name": "GameZone", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xb6adb74efb5801160ff749b1985fd3bd5000e938.png", + "aggregators": [ + "PancakeCoinMarketCap", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 4 + }, + "0x23125108bc4c63e4677b2e253fa498ccb4b3298b": { + "address": "0x23125108bc4c63e4677b2e253fa498ccb4b3298b", + "symbol": "DOGECOIN", + "decimals": 9, + "name": "Buff Doge Coin", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x23125108bc4c63e4677b2e253fa498ccb4b3298b.png", + "aggregators": [ + "PancakeCoinMarketCap", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 4 + }, + "0x8e2d8f40818fbaba663db6a24fb9b527fc7100be": { + "address": "0x8e2d8f40818fbaba663db6a24fb9b527fc7100be", + "symbol": "ORE", + "decimals": 18, + "name": "ORE", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x8e2d8f40818fbaba663db6a24fb9b527fc7100be.png", + "aggregators": [ + "PancakeCoinMarketCap", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 4 + }, + "0x6169b3b23e57de79a6146a2170980ceb1f83b9e0": { + "address": "0x6169b3b23e57de79a6146a2170980ceb1f83b9e0", + "symbol": "VETTER", + "decimals": 9, + "name": "Vetter", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x6169b3b23e57de79a6146a2170980ceb1f83b9e0.png", + "aggregators": [ + "PancakeCoinMarketCap", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 4 + }, + "0x34ba3af693d6c776d73c7fa67e2b2e79be8ef4ed": { + "address": "0x34ba3af693d6c776d73c7fa67e2b2e79be8ef4ed", + "symbol": "BALA", + "decimals": 18, + "name": "Shambala", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x34ba3af693d6c776d73c7fa67e2b2e79be8ef4ed.png", + "aggregators": [ + "PancakeCoinMarketCap", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 4 + }, + "0x32d7da6a7cf25ed1b86e1b0ee9a62b0252d46b16": { + "address": "0x32d7da6a7cf25ed1b86e1b0ee9a62b0252d46b16", + "symbol": "GINZA", + "decimals": 18, + "name": "Ginza Network", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x32d7da6a7cf25ed1b86e1b0ee9a62b0252d46b16.png", + "aggregators": [ + "PancakeCoinMarketCap", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 4 + }, + "0x77e5cce02139814e7eff377244cac8b802cddab8": { + "address": "0x77e5cce02139814e7eff377244cac8b802cddab8", + "symbol": "ERW", + "decimals": 18, + "name": "ZeLoop Eco Reward", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x77e5cce02139814e7eff377244cac8b802cddab8.png", + "aggregators": [ + "PancakeCoinMarketCap", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 4 + }, + "0x2f4e9c97aaffd67d98a640062d90e355b4a1c539": { + "address": "0x2f4e9c97aaffd67d98a640062d90e355b4a1c539", + "symbol": "AFRO", + "decimals": 9, + "name": "Afrostar", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x2f4e9c97aaffd67d98a640062d90e355b4a1c539.png", + "aggregators": [ + "PancakeCoinMarketCap", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 4 + }, + "0x3523d58d8036b1c5c9a13493143c97aefc5ad422": { + "address": "0x3523d58d8036b1c5c9a13493143c97aefc5ad422", + "symbol": "KBOX", + "decimals": 18, + "name": "The Killbox Game", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x3523d58d8036b1c5c9a13493143c97aefc5ad422.png", + "aggregators": [ + "PancakeCoinMarketCap", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 4 + }, + "0xec126e20e7cb114dd3ba356100eaca2cc2921322": { + "address": "0xec126e20e7cb114dd3ba356100eaca2cc2921322", + "symbol": "SEG", + "decimals": 18, + "name": "Solar Energy", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xec126e20e7cb114dd3ba356100eaca2cc2921322.png", + "aggregators": [ + "PancakeCoinMarketCap", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 4 + }, + "0x07728696ee70a28c9c032926577af1d524df30f9": { + "address": "0x07728696ee70a28c9c032926577af1d524df30f9", + "symbol": "PLACE", + "decimals": 18, + "name": "PlaceWar Governance", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x07728696ee70a28c9c032926577af1d524df30f9.png", + "aggregators": [ + "PancakeCoinMarketCap", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 4 + }, + "0x777994409c6b7e2393f6098a33a9cd8b7e9d0d28": { + "address": "0x777994409c6b7e2393f6098a33a9cd8b7e9d0d28", + "symbol": "TOTEM", + "decimals": 18, + "name": "Cryptotem", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x777994409c6b7e2393f6098a33a9cd8b7e9d0d28.png", + "aggregators": [ + "PancakeCoinMarketCap", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 4 + }, + "0x0522ecfe37ab2bdb5d60a99e08d1e8379bd35c00": { + "address": "0x0522ecfe37ab2bdb5d60a99e08d1e8379bd35c00", + "symbol": "UMY", + "decimals": 6, + "name": "KaraStar UMY", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x0522ecfe37ab2bdb5d60a99e08d1e8379bd35c00.png", + "aggregators": [ + "PancakeCoinMarketCap", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 4 + }, + "0x4c769928971548eb71a3392eaf66bedc8bef4b80": { + "address": "0x4c769928971548eb71a3392eaf66bedc8bef4b80", + "symbol": "BITCOIN", + "decimals": 9, + "name": "HarryPotterObamaSonic10Inu", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x4c769928971548eb71a3392eaf66bedc8bef4b80.png", + "aggregators": ["PancakeCoinGecko", "Socket", "Rubic", "Rango"], + "occurrences": 4 + }, + "0x26734add0650719ea29087fe5cc0aab81b4f237d": { + "address": "0x26734add0650719ea29087fe5cc0aab81b4f237d", + "symbol": "STEMX", + "decimals": 18, + "name": "STEMX", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x26734add0650719ea29087fe5cc0aab81b4f237d.png", + "aggregators": [ + "PancakeCoinMarketCap", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 4 + }, + "0x14aad57fb5f9a0c9ce136cf93521cbebe14ec2e6": { + "address": "0x14aad57fb5f9a0c9ce136cf93521cbebe14ec2e6", + "symbol": "SHIBEMP", + "decimals": 9, + "name": "Shiba Inu Empire", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x14aad57fb5f9a0c9ce136cf93521cbebe14ec2e6.png", + "aggregators": [ + "PancakeCoinMarketCap", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 4 + }, + "0x2e42c9eac96833c6e16dc71c743cecc114ccd7e3": { + "address": "0x2e42c9eac96833c6e16dc71c743cecc114ccd7e3", + "symbol": "META", + "decimals": 18, + "name": "MetaCash", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x2e42c9eac96833c6e16dc71c743cecc114ccd7e3.png", + "aggregators": [ + "PancakeCoinMarketCap", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 4 + }, + "0x26d3163b165be95137cee97241e716b2791a7572": { + "address": "0x26d3163b165be95137cee97241e716b2791a7572", + "symbol": "DSHARE", + "decimals": 18, + "name": "Dibs Share", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x26d3163b165be95137cee97241e716b2791a7572.png", + "aggregators": [ + "PancakeCoinMarketCap", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 4 + }, + "0x641ec142e67ab213539815f67e4276975c2f8d50": { + "address": "0x641ec142e67ab213539815f67e4276975c2f8d50", + "symbol": "DOGEKING", + "decimals": 18, + "name": "DogeKing", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x641ec142e67ab213539815f67e4276975c2f8d50.png", + "aggregators": [ + "PancakeCoinMarketCap", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 4 + }, + "0x404f83279c36e3e0e2771b7ae9f9b0b2b50ee27c": { + "address": "0x404f83279c36e3e0e2771b7ae9f9b0b2b50ee27c", + "symbol": "AGRO", + "decimals": 18, + "name": "Agro Global Token", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x404f83279c36e3e0e2771b7ae9f9b0b2b50ee27c.png", + "aggregators": [ + "PancakeCoinMarketCap", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 4 + }, + "0xac68931b666e086e9de380cfdb0fb5704a35dc2d": { + "address": "0xac68931b666e086e9de380cfdb0fb5704a35dc2d", + "symbol": "BNBTIGER", + "decimals": 9, + "name": "BNB Tiger Inu", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xac68931b666e086e9de380cfdb0fb5704a35dc2d.png", + "aggregators": [ + "PancakeCoinMarketCap", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 4 + }, + "0x3efe3bee4dbeb77d260bc12aeb62072cf6e68478": { + "address": "0x3efe3bee4dbeb77d260bc12aeb62072cf6e68478", + "symbol": "BABYKITTY", + "decimals": 9, + "name": "BabyKitty", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x3efe3bee4dbeb77d260bc12aeb62072cf6e68478.png", + "aggregators": [ + "PancakeCoinMarketCap", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 4 + }, + "0x287880ea252b52b63cc5f40a2d3e5a44aa665a76": { + "address": "0x287880ea252b52b63cc5f40a2d3e5a44aa665a76", + "symbol": "ALPINE", + "decimals": 8, + "name": "Alpine F1 Team Fan Token", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x287880ea252b52b63cc5f40a2d3e5a44aa665a76.png", + "aggregators": [ + "PancakeCoinMarketCap", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 4 + }, + "0xd5d21b98903257ee56c3406ef72a60981ba81703": { + "address": "0xd5d21b98903257ee56c3406ef72a60981ba81703", + "symbol": "BABYBOME", + "decimals": 9, + "name": "Book of Baby Memes", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xd5d21b98903257ee56c3406ef72a60981ba81703.png", + "aggregators": [ + "PancakeCoinMarketCap", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 4 + }, + "0xb972c4027818223bb7b9399b3ca3ca58186e1590": { + "address": "0xb972c4027818223bb7b9399b3ca3ca58186e1590", + "symbol": "SUPE", + "decimals": 18, + "name": "Supe Infinity", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xb972c4027818223bb7b9399b3ca3ca58186e1590.png", + "aggregators": [ + "PancakeCoinMarketCap", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 4 + }, + "0xa677bc9bdb10329e488a4d8387ed7a08b2fc9005": { + "address": "0xa677bc9bdb10329e488a4d8387ed7a08b2fc9005", + "symbol": "MGP", + "decimals": 18, + "name": "Magic Power", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xa677bc9bdb10329e488a4d8387ed7a08b2fc9005.png", + "aggregators": [ + "PancakeCoinMarketCap", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 4 + }, + "0x08ccac619e9c6e95d48dfd23793d722a994b95b8": { + "address": "0x08ccac619e9c6e95d48dfd23793d722a994b95b8", + "symbol": "DOGE-1", + "decimals": 9, + "name": "Doge-1 Mission to the moon", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x08ccac619e9c6e95d48dfd23793d722a994b95b8.png", + "aggregators": [ + "PancakeCoinMarketCap", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 4 + }, + "0xdf677713a2c661ecd0b2bd4d7485170aa8c1eceb": { + "address": "0xdf677713a2c661ecd0b2bd4d7485170aa8c1eceb", + "symbol": "MCT", + "decimals": 18, + "name": "Metacraft", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xdf677713a2c661ecd0b2bd4d7485170aa8c1eceb.png", + "aggregators": [ + "PancakeCoinMarketCap", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 4 + }, + "0xbb689057fe1c4bfc573a54c0679ae1a7a1982f26": { + "address": "0xbb689057fe1c4bfc573a54c0679ae1a7a1982f26", + "symbol": "SHL", + "decimals": 18, + "name": "Shelling", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xbb689057fe1c4bfc573a54c0679ae1a7a1982f26.png", + "aggregators": [ + "PancakeCoinMarketCap", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 4 + }, + "0x9ba43191a84a726cbc48716c1ceb3d13a28a4535": { + "address": "0x9ba43191a84a726cbc48716c1ceb3d13a28a4535", + "symbol": "IXIR", + "decimals": 18, + "name": "IXIR", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x9ba43191a84a726cbc48716c1ceb3d13a28a4535.png", + "aggregators": [ + "PancakeCoinMarketCap", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 4 + }, + "0x879d239bcc0356cf9df8c90442488bce99554c66": { + "address": "0x879d239bcc0356cf9df8c90442488bce99554c66", + "symbol": "METAN", + "decimals": 18, + "name": "Metan Evolutions", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x879d239bcc0356cf9df8c90442488bce99554c66.png", + "aggregators": [ + "PancakeCoinMarketCap", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 4 + }, + "0x7111e5c9b01ffa18957b1aa27e9cb0e8fba214f5": { + "address": "0x7111e5c9b01ffa18957b1aa27e9cb0e8fba214f5", + "symbol": "ULAB", + "decimals": 18, + "name": "Unilab", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x7111e5c9b01ffa18957b1aa27e9cb0e8fba214f5.png", + "aggregators": [ + "PancakeCoinMarketCap", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 4 + }, + "0x26165a5a3dd21fa528becf3ff7f114d00a517344": { + "address": "0x26165a5a3dd21fa528becf3ff7f114d00a517344", + "symbol": "META", + "decimals": 9, + "name": "Meta BSC", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x26165a5a3dd21fa528becf3ff7f114d00a517344.png", + "aggregators": [ + "PancakeCoinMarketCap", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 4 + }, + "0x501d423a828e62f9d331b3a4ee4a7efb1ea40228": { + "address": "0x501d423a828e62f9d331b3a4ee4a7efb1ea40228", + "symbol": "CHONK", + "decimals": 18, + "name": "Chonk The Cat", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x501d423a828e62f9d331b3a4ee4a7efb1ea40228.png", + "aggregators": [ + "PancakeCoinMarketCap", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 4 + }, + "0x9eeb6c5ff183e6001c65a12d70026b900ae76781": { + "address": "0x9eeb6c5ff183e6001c65a12d70026b900ae76781", + "symbol": "IRENA", + "decimals": 9, + "name": "Irena Coin Apps", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x9eeb6c5ff183e6001c65a12d70026b900ae76781.png", + "aggregators": [ + "PancakeCoinMarketCap", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 4 + }, + "0xd15d3baf3f40988810c5f9da54394ffb5246ded6": { + "address": "0xd15d3baf3f40988810c5f9da54394ffb5246ded6", + "symbol": "SEBA", + "decimals": 18, + "name": "Seba", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xd15d3baf3f40988810c5f9da54394ffb5246ded6.png", + "aggregators": [ + "PancakeCoinMarketCap", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 4 + }, + "0x926ecc7687fcfb296e97a2b4501f41a6f5f8c214": { + "address": "0x926ecc7687fcfb296e97a2b4501f41a6f5f8c214", + "symbol": "BRN", + "decimals": 18, + "name": "BRN Metaverse", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x926ecc7687fcfb296e97a2b4501f41a6f5f8c214.png", + "aggregators": [ + "PancakeCoinMarketCap", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 4 + }, + "0x9ce116224459296abc7858627abd5879514bc629": { + "address": "0x9ce116224459296abc7858627abd5879514bc629", + "symbol": "COL", + "decimals": 18, + "name": "Clash of Lilliput", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x9ce116224459296abc7858627abd5879514bc629.png", + "aggregators": [ + "PancakeCoinMarketCap", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 4 + }, + "0xaf3287cae99c982586c07401c0d911bf7de6cd82": { + "address": "0xaf3287cae99c982586c07401c0d911bf7de6cd82", + "symbol": "H2O", + "decimals": 18, + "name": "H2O Dao", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xaf3287cae99c982586c07401c0d911bf7de6cd82.png", + "aggregators": [ + "PancakeCoinMarketCap", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 4 + }, + "0x55533be59de022d585a57e29539452d708d4a410": { + "address": "0x55533be59de022d585a57e29539452d708d4a410", + "symbol": "ZENC", + "decimals": 18, + "name": "Zenc Coin", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x55533be59de022d585a57e29539452d708d4a410.png", + "aggregators": [ + "PancakeCoinMarketCap", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 4 + }, + "0xf4914e6d97a75f014acfcf4072f11be5cffc4ca6": { + "address": "0xf4914e6d97a75f014acfcf4072f11be5cffc4ca6", + "symbol": "DEXSHARE", + "decimals": 18, + "name": "dexSHARE", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xf4914e6d97a75f014acfcf4072f11be5cffc4ca6.png", + "aggregators": [ + "PancakeCoinMarketCap", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 4 + }, + "0x4f5f7a7dca8ba0a7983381d23dfc5eaf4be9c79a": { + "address": "0x4f5f7a7dca8ba0a7983381d23dfc5eaf4be9c79a", + "symbol": "STI", + "decimals": 10, + "name": "Seek Tiger", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x4f5f7a7dca8ba0a7983381d23dfc5eaf4be9c79a.png", + "aggregators": [ + "PancakeCoinMarketCap", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 4 + }, + "0x8f1fe4e6707cd4236b704759d2ee15166c68183a": { + "address": "0x8f1fe4e6707cd4236b704759d2ee15166c68183a", + "symbol": "TMC", + "decimals": 18, + "name": "Tom Coin", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x8f1fe4e6707cd4236b704759d2ee15166c68183a.png", + "aggregators": [ + "PancakeCoinMarketCap", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 4 + }, + "0xe5ba47fd94cb645ba4119222e34fb33f59c7cd90": { + "address": "0xe5ba47fd94cb645ba4119222e34fb33f59c7cd90", + "symbol": "SAFUU", + "decimals": 5, + "name": "SAFUU", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xe5ba47fd94cb645ba4119222e34fb33f59c7cd90.png", + "aggregators": [ + "PancakeCoinMarketCap", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 4 + }, + "0xc868642d123289f0a6cb34a3c2810a0a46141947": { + "address": "0xc868642d123289f0a6cb34a3c2810a0a46141947", + "symbol": "BITWALLET", + "decimals": 6, + "name": "Bitcoin E-wallet", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xc868642d123289f0a6cb34a3c2810a0a46141947.png", + "aggregators": [ + "PancakeCoinMarketCap", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 4 + }, + "0x3606f220daeaeb3d47ac1923a8ce2a61205c88cd": { + "address": "0x3606f220daeaeb3d47ac1923a8ce2a61205c88cd", + "symbol": "ATOZ", + "decimals": 18, + "name": "Race Kingdom", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x3606f220daeaeb3d47ac1923a8ce2a61205c88cd.png", + "aggregators": [ + "PancakeCoinMarketCap", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 4 + }, + "0x20de6118c3672659e488d1d45279cdf77391fbdc": { + "address": "0x20de6118c3672659e488d1d45279cdf77391fbdc", + "symbol": "BIDZ", + "decimals": 18, + "name": "BIDZ Coin", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x20de6118c3672659e488d1d45279cdf77391fbdc.png", + "aggregators": [ + "PancakeCoinMarketCap", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 4 + }, + "0x238d02ee3f80fbf5e381f049616025c186889b68": { + "address": "0x238d02ee3f80fbf5e381f049616025c186889b68", + "symbol": "MRS", + "decimals": 18, + "name": "Metars Genesis", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x238d02ee3f80fbf5e381f049616025c186889b68.png", + "aggregators": [ + "PancakeCoinMarketCap", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 4 + }, + "0xc0366a104b429f0806bfa98d0008daa9555b2bed": { + "address": "0xc0366a104b429f0806bfa98d0008daa9555b2bed", + "symbol": "SMARS", + "decimals": 9, + "name": "Safemars Protocol", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xc0366a104b429f0806bfa98d0008daa9555b2bed.png", + "aggregators": [ + "PancakeCoinMarketCap", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 4 + }, + "0x5ca09af27b8a4f1d636380909087536bc7e2d94d": { + "address": "0x5ca09af27b8a4f1d636380909087536bc7e2d94d", + "symbol": "ALT", + "decimals": 18, + "name": "Alitas", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x5ca09af27b8a4f1d636380909087536bc7e2d94d.png", + "aggregators": [ + "PancakeCoinMarketCap", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 4 + }, + "0xe77011ed703ed06927dbd78e60c549bababf913e": { + "address": "0xe77011ed703ed06927dbd78e60c549bababf913e", + "symbol": "MBTC", + "decimals": 18, + "name": "Micro Bitcoin Finance", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xe77011ed703ed06927dbd78e60c549bababf913e.png", + "aggregators": [ + "PancakeCoinMarketCap", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 4 + }, + "0xcf9f991b14620f5ad144eec11f9bc7bf08987622": { + "address": "0xcf9f991b14620f5ad144eec11f9bc7bf08987622", + "symbol": "PORNROCKET", + "decimals": 9, + "name": "PornRocket", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xcf9f991b14620f5ad144eec11f9bc7bf08987622.png", + "aggregators": [ + "PancakeCoinMarketCap", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 4 + }, + "0xc003f5193cabe3a6cbb56948dfeaae2276a6aa5e": { + "address": "0xc003f5193cabe3a6cbb56948dfeaae2276a6aa5e", + "symbol": "TRUBGR", + "decimals": 18, + "name": "TruBadger", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xc003f5193cabe3a6cbb56948dfeaae2276a6aa5e.png", + "aggregators": [ + "PancakeCoinMarketCap", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 4 + }, + "0x7a983559e130723b70e45bd637773dbdfd3f71db": { + "address": "0x7a983559e130723b70e45bd637773dbdfd3f71db", + "symbol": "DBZ", + "decimals": 18, + "name": "Diamond Boyz Coin", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x7a983559e130723b70e45bd637773dbdfd3f71db.png", + "aggregators": [ + "PancakeCoinMarketCap", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 4 + }, + "0xe6ffa2e574a8bbeb5243d2109b6b11d4a459f88b": { + "address": "0xe6ffa2e574a8bbeb5243d2109b6b11d4a459f88b", + "symbol": "HIP", + "decimals": 18, + "name": "Hippo", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xe6ffa2e574a8bbeb5243d2109b6b11d4a459f88b.png", + "aggregators": [ + "PancakeCoinMarketCap", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 4 + }, + "0xdd17629d05e068a9d118ee35d11101d4140d0586": { + "address": "0xdd17629d05e068a9d118ee35d11101d4140d0586", + "symbol": "YOCO", + "decimals": 9, + "name": "YocoinYOCO", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xdd17629d05e068a9d118ee35d11101d4140d0586.png", + "aggregators": [ + "PancakeCoinMarketCap", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 4 + }, + "0xc22e8114818a918260662375450e19ac73d32852": { + "address": "0xc22e8114818a918260662375450e19ac73d32852", + "symbol": "KCAKE", + "decimals": 18, + "name": "KittyCake", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xc22e8114818a918260662375450e19ac73d32852.png", + "aggregators": [ + "PancakeCoinMarketCap", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 4 + }, + "0x9bcab88763c33a95e73bc6dcf80fcf27a77090b2": { + "address": "0x9bcab88763c33a95e73bc6dcf80fcf27a77090b2", + "symbol": "VICS", + "decimals": 18, + "name": "RoboFi", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x9bcab88763c33a95e73bc6dcf80fcf27a77090b2.png", + "aggregators": [ + "PancakeCoinMarketCap", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 4 + }, + "0x49324d59327fb799813b902db55b2a118d601547": { + "address": "0x49324d59327fb799813b902db55b2a118d601547", + "symbol": "BOSS", + "decimals": 9, + "name": "Boss", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x49324d59327fb799813b902db55b2a118d601547.png", + "aggregators": [ + "PancakeCoinMarketCap", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 4 + }, + "0x3220ccbbc29d727bde85b7333d31b21e0d6bc6f4": { + "address": "0x3220ccbbc29d727bde85b7333d31b21e0d6bc6f4", + "symbol": "PUPDOGE", + "decimals": 9, + "name": "Pup Doge", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x3220ccbbc29d727bde85b7333d31b21e0d6bc6f4.png", + "aggregators": [ + "PancakeCoinMarketCap", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 4 + }, + "0x2a17dc11a1828725cdb318e0036acf12727d27a2": { + "address": "0x2a17dc11a1828725cdb318e0036acf12727d27a2", + "symbol": "ARENA", + "decimals": 18, + "name": "ArenaSwap", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x2a17dc11a1828725cdb318e0036acf12727d27a2.png", + "aggregators": [ + "PancakeCoinMarketCap", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 4 + }, + "0x2db0d5cb907014c67dc201886624716fb5c71123": { + "address": "0x2db0d5cb907014c67dc201886624716fb5c71123", + "symbol": "AINU", + "decimals": 9, + "name": "Ainu", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x2db0d5cb907014c67dc201886624716fb5c71123.png", + "aggregators": [ + "PancakeCoinMarketCap", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 4 + }, + "0x808fac147a9c02723d0be300ac4753eaf93c0e1f": { + "address": "0x808fac147a9c02723d0be300ac4753eaf93c0e1f", + "symbol": "BABYFLOKICOIN", + "decimals": 9, + "name": "Baby Floki Coin", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x808fac147a9c02723d0be300ac4753eaf93c0e1f.png", + "aggregators": [ + "PancakeCoinMarketCap", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 4 + }, + "0x651a89fed302227d41425235f8e934502fb94c48": { + "address": "0x651a89fed302227d41425235f8e934502fb94c48", + "symbol": "ADACASH", + "decimals": 18, + "name": "ADAcash", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x651a89fed302227d41425235f8e934502fb94c48.png", + "aggregators": [ + "PancakeCoinMarketCap", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 4 + }, + "0xaec23008b1098e39c0f8de90bf7431d185efe8b3": { + "address": "0xaec23008b1098e39c0f8de90bf7431d185efe8b3", + "symbol": "CBUNNY", + "decimals": 18, + "name": "Crazy Bunny Equity", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xaec23008b1098e39c0f8de90bf7431d185efe8b3.png", + "aggregators": [ + "PancakeCoinMarketCap", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 4 + }, + "0x23e3981052d5280c658e5e18d814fa9582bfbc9e": { + "address": "0x23e3981052d5280c658e5e18d814fa9582bfbc9e", + "symbol": "YCT", + "decimals": 18, + "name": "Youclout", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x23e3981052d5280c658e5e18d814fa9582bfbc9e.png", + "aggregators": [ + "PancakeCoinMarketCap", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 4 + }, + "0xc6f509274fcc1f485644167cb911fd0c61545e6c": { + "address": "0xc6f509274fcc1f485644167cb911fd0c61545e6c", + "symbol": "OBS", + "decimals": 18, + "name": "Obsidium", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xc6f509274fcc1f485644167cb911fd0c61545e6c.png", + "aggregators": [ + "PancakeCoinMarketCap", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 4 + }, + "0xf9d6ddf44016953dbf7ab135a0f64d7a41870ede": { + "address": "0xf9d6ddf44016953dbf7ab135a0f64d7a41870ede", + "symbol": "DOFI", + "decimals": 9, + "name": "Doge Floki Coin [OLD]", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xf9d6ddf44016953dbf7ab135a0f64d7a41870ede.png", + "aggregators": [ + "PancakeCoinMarketCap", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 4 + }, + "0x599beec263fa6ea35055011967597b259fc012a4": { + "address": "0x599beec263fa6ea35055011967597b259fc012a4", + "symbol": "FOXGIRL", + "decimals": 18, + "name": "FoxGirl", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x599beec263fa6ea35055011967597b259fc012a4.png", + "aggregators": [ + "PancakeCoinMarketCap", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 4 + }, + "0x739e81bcd49854d7bdf526302989f14a2e7994b2": { + "address": "0x739e81bcd49854d7bdf526302989f14a2e7994b2", + "symbol": "CENX", + "decimals": 9, + "name": "Centcex", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x739e81bcd49854d7bdf526302989f14a2e7994b2.png", + "aggregators": [ + "PancakeCoinMarketCap", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 4 + }, + "0x549cc5df432cdbaebc8b9158a6bdfe1cbd0ba16d": { + "address": "0x549cc5df432cdbaebc8b9158a6bdfe1cbd0ba16d", + "symbol": "HWL", + "decimals": 18, + "name": "Howl City", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x549cc5df432cdbaebc8b9158a6bdfe1cbd0ba16d.png", + "aggregators": [ + "PancakeCoinMarketCap", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 4 + }, + "0x5a341dcf49e161cc73591f02e5f8cde8a29733fb": { + "address": "0x5a341dcf49e161cc73591f02e5f8cde8a29733fb", + "symbol": "RTO", + "decimals": 9, + "name": "Reflecto", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x5a341dcf49e161cc73591f02e5f8cde8a29733fb.png", + "aggregators": [ + "PancakeCoinMarketCap", + "Rubic", + "Squid", + "Sonarwatch" + ], + "occurrences": 4 + }, + "0x6ad0f087501eee603aeda0407c52864bc7f83322": { + "address": "0x6ad0f087501eee603aeda0407c52864bc7f83322", + "symbol": "MEFA", + "decimals": 9, + "name": "Metaverse Face", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x6ad0f087501eee603aeda0407c52864bc7f83322.png", + "aggregators": [ + "PancakeCoinMarketCap", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 4 + }, + "0x5ddb331c3ba48a1d68cbf50dd3bc7aac407dc115": { + "address": "0x5ddb331c3ba48a1d68cbf50dd3bc7aac407dc115", + "symbol": "NMBTC", + "decimals": 9, + "name": "NanoMeter Bitcoin", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x5ddb331c3ba48a1d68cbf50dd3bc7aac407dc115.png", + "aggregators": [ + "PancakeCoinMarketCap", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 4 + }, + "0xf3ed4770e6efe9168c3f2f50a6d9d0f97a550df1": { + "address": "0xf3ed4770e6efe9168c3f2f50a6d9d0f97a550df1", + "symbol": "DKEY", + "decimals": 18, + "name": "DKEY Bank", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xf3ed4770e6efe9168c3f2f50a6d9d0f97a550df1.png", + "aggregators": [ + "PancakeCoinMarketCap", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 4 + }, + "0xd4099a517f2fbe8a730d2ecaad1d0824b75e084a": { + "address": "0xd4099a517f2fbe8a730d2ecaad1d0824b75e084a", + "symbol": "MONO", + "decimals": 18, + "name": "The Monopolist", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xd4099a517f2fbe8a730d2ecaad1d0824b75e084a.png", + "aggregators": [ + "PancakeCoinMarketCap", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 4 + }, + "0x940230b6b7ef1979a28f32196a8e3439c645ba49": { + "address": "0x940230b6b7ef1979a28f32196a8e3439c645ba49", + "symbol": "SHIBARMY", + "decimals": 18, + "name": "Shib Army", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x940230b6b7ef1979a28f32196a8e3439c645ba49.png", + "aggregators": [ + "PancakeCoinMarketCap", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 4 + }, + "0x86cd1faf05abbb705842ec3c98ef5006173fb4d6": { + "address": "0x86cd1faf05abbb705842ec3c98ef5006173fb4d6", + "symbol": "JP", + "decimals": 9, + "name": "JP", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x86cd1faf05abbb705842ec3c98ef5006173fb4d6.png", + "aggregators": [ + "PancakeCoinMarketCap", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 4 + }, + "0x45289007706e7ee7b42b1fa506661d97740edfb4": { + "address": "0x45289007706e7ee7b42b1fa506661d97740edfb4", + "symbol": "FLOKICEO", + "decimals": 9, + "name": "FLOKI CEO", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x45289007706e7ee7b42b1fa506661d97740edfb4.png", + "aggregators": [ + "PancakeCoinMarketCap", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 4 + }, + "0x67d8e0080b612afae75a7f7229bfed3cdb998462": { + "address": "0x67d8e0080b612afae75a7f7229bfed3cdb998462", + "symbol": "CHT", + "decimals": 18, + "name": "CyberHarbor", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x67d8e0080b612afae75a7f7229bfed3cdb998462.png", + "aggregators": [ + "PancakeCoinMarketCap", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 4 + }, + "0x3cb20d96e866d128bc469a6e66505d46d7f9baba": { + "address": "0x3cb20d96e866d128bc469a6e66505d46d7f9baba", + "symbol": "BIB", + "decimals": 18, + "name": "BIB", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x3cb20d96e866d128bc469a6e66505d46d7f9baba.png", + "aggregators": [ + "PancakeCoinMarketCap", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 4 + }, + "0x36f84ee7f720312443c02389a08185e3ecf0ebed": { + "address": "0x36f84ee7f720312443c02389a08185e3ecf0ebed", + "symbol": "MTLA", + "decimals": 18, + "name": "Meta Launcher", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x36f84ee7f720312443c02389a08185e3ecf0ebed.png", + "aggregators": [ + "PancakeCoinMarketCap", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 4 + }, + "0xaf7c3e578621aabab184c706bad94ffb1a2e0179": { + "address": "0xaf7c3e578621aabab184c706bad94ffb1a2e0179", + "symbol": "DAOP", + "decimals": 18, + "name": "Dao Space", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xaf7c3e578621aabab184c706bad94ffb1a2e0179.png", + "aggregators": [ + "PancakeCoinMarketCap", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 4 + }, + "0x2cb63fcd1380a8ad0ff5ba16ddcbdf4935154da8": { + "address": "0x2cb63fcd1380a8ad0ff5ba16ddcbdf4935154da8", + "symbol": "TTT", + "decimals": 18, + "name": "TopTrade", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x2cb63fcd1380a8ad0ff5ba16ddcbdf4935154da8.png", + "aggregators": [ + "PancakeCoinMarketCap", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 4 + }, + "0x9aeb2e6dd8d55e14292acfcfc4077e33106e4144": { + "address": "0x9aeb2e6dd8d55e14292acfcfc4077e33106e4144", + "symbol": "PAYU", + "decimals": 18, + "name": "Platform of meme coins", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x9aeb2e6dd8d55e14292acfcfc4077e33106e4144.png", + "aggregators": [ + "PancakeCoinMarketCap", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 4 + }, + "0x52721d159cd90dd76014f73c1440e4ff983420ac": { + "address": "0x52721d159cd90dd76014f73c1440e4ff983420ac", + "symbol": "TROLL", + "decimals": 9, + "name": "Troll Face", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x52721d159cd90dd76014f73c1440e4ff983420ac.png", + "aggregators": [ + "PancakeCoinMarketCap", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 4 + }, + "0xf5355ddc7ffbf7ca119bf3222cb0ecac2fbb4502": { + "address": "0xf5355ddc7ffbf7ca119bf3222cb0ecac2fbb4502", + "symbol": "UCJL", + "decimals": 18, + "name": "Utility Cjournal", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xf5355ddc7ffbf7ca119bf3222cb0ecac2fbb4502.png", + "aggregators": [ + "PancakeCoinMarketCap", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 4 + }, + "0xddae2b90559f38eb41b93d946be21fb0dfb9a294": { + "address": "0xddae2b90559f38eb41b93d946be21fb0dfb9a294", + "symbol": "YEARN", + "decimals": 18, + "name": "YearnTogether", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xddae2b90559f38eb41b93d946be21fb0dfb9a294.png", + "aggregators": [ + "PancakeCoinMarketCap", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 4 + }, + "0xfc8774321ee4586af183baca95a8793530056353": { + "address": "0xfc8774321ee4586af183baca95a8793530056353", + "symbol": "LONG", + "decimals": 18, + "name": "LOONG", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xfc8774321ee4586af183baca95a8793530056353.png", + "aggregators": [ + "PancakeCoinMarketCap", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 4 + }, + "0x624b9b1ac0fb350aed8389a51b26e36147e158c3": { + "address": "0x624b9b1ac0fb350aed8389a51b26e36147e158c3", + "symbol": "NERO", + "decimals": 9, + "name": "Nero Token", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x624b9b1ac0fb350aed8389a51b26e36147e158c3.png", + "aggregators": [ + "PancakeCoinMarketCap", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 4 + }, + "0x933bcd9a03d350f040d2fe7e36d60a9c73d42ef5": { + "address": "0x933bcd9a03d350f040d2fe7e36d60a9c73d42ef5", + "symbol": "SNPS", + "decimals": 18, + "name": "Snaps", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x933bcd9a03d350f040d2fe7e36d60a9c73d42ef5.png", + "aggregators": [ + "PancakeCoinMarketCap", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 4 + }, + "0xab8c98491816fede394582f7758a5effeb4368d7": { + "address": "0xab8c98491816fede394582f7758a5effeb4368d7", + "symbol": "DTC", + "decimals": 9, + "name": "TrumpCoin", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xab8c98491816fede394582f7758a5effeb4368d7.png", + "aggregators": [ + "PancakeCoinMarketCap", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 4 + }, + "0x1606940bb5cd6de59a7e25367f4fb8965f38f122": { + "address": "0x1606940bb5cd6de59a7e25367f4fb8965f38f122", + "symbol": "AQUAGOAT", + "decimals": 9, + "name": "Aqua Goat", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x1606940bb5cd6de59a7e25367f4fb8965f38f122.png", + "aggregators": [ + "PancakeCoinMarketCap", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 4 + }, + "0x59769630b236398c2471eb26e6a529448030d94f": { + "address": "0x59769630b236398c2471eb26e6a529448030d94f", + "symbol": "NKYC", + "decimals": 18, + "name": "NKYC Token", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x59769630b236398c2471eb26e6a529448030d94f.png", + "aggregators": [ + "PancakeCoinMarketCap", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 4 + }, + "0x6f9320833d85a63c6a187cf9ada0f87930e61690": { + "address": "0x6f9320833d85a63c6a187cf9ada0f87930e61690", + "symbol": "DOGE-1SAT", + "decimals": 9, + "name": "DOGE-1SATELLITE", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x6f9320833d85a63c6a187cf9ada0f87930e61690.png", + "aggregators": [ + "PancakeCoinMarketCap", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 4 + }, + "0x3e45b22622b19c1eced632d8fe1ed708f9d471c3": { + "address": "0x3e45b22622b19c1eced632d8fe1ed708f9d471c3", + "symbol": "BESA", + "decimals": 9, + "name": "Besa Gaming Company", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x3e45b22622b19c1eced632d8fe1ed708f9d471c3.png", + "aggregators": [ + "PancakeCoinMarketCap", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 4 + }, + "0x6e8ce91124d57c37556672f8889cb89af52a6746": { + "address": "0x6e8ce91124d57c37556672f8889cb89af52a6746", + "symbol": "CBANK", + "decimals": 18, + "name": "Cairo Bank", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x6e8ce91124d57c37556672f8889cb89af52a6746.png", + "aggregators": [ + "PancakeCoinMarketCap", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 4 + }, + "0x4e1a724b0588fa971263c8ac5f78ca215c7d09dd": { + "address": "0x4e1a724b0588fa971263c8ac5f78ca215c7d09dd", + "symbol": "MTC", + "decimals": 18, + "name": "Moonft", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x4e1a724b0588fa971263c8ac5f78ca215c7d09dd.png", + "aggregators": [ + "PancakeCoinMarketCap", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 4 + }, + "0xca1c644704febf4ab81f85daca488d1623c28e63": { + "address": "0xca1c644704febf4ab81f85daca488d1623c28e63", + "symbol": "ABRA", + "decimals": 18, + "name": "Cadabra Finance", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xca1c644704febf4ab81f85daca488d1623c28e63.png", + "aggregators": ["PancakeCoinGecko", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0x33679898ceb9dc930024de84e7339d403191d8f6": { + "address": "0x33679898ceb9dc930024de84e7339d403191d8f6", + "symbol": "ALITA", + "decimals": 18, + "name": "AlitaAI", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x33679898ceb9dc930024de84e7339d403191d8f6.png", + "aggregators": [ + "PancakeCoinMarketCap", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 4 + }, + "0xbd4c4dc19f208cda6caacadadc0bff4cd975fa34": { + "address": "0xbd4c4dc19f208cda6caacadadc0bff4cd975fa34", + "symbol": "DOGSROCK", + "decimals": 9, + "name": "Dogs Rock", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xbd4c4dc19f208cda6caacadadc0bff4cd975fa34.png", + "aggregators": [ + "PancakeCoinMarketCap", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 4 + }, + "0x57185189118c7e786cafd5c71f35b16012fa95ad": { + "address": "0x57185189118c7e786cafd5c71f35b16012fa95ad", + "symbol": "BEFE", + "decimals": 18, + "name": "BEFE", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x57185189118c7e786cafd5c71f35b16012fa95ad.png", + "aggregators": [ + "PancakeCoinMarketCap", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 4 + }, + "0x6ec07dbd9311975b8002079d70c6f6d9e3e1ee5c": { + "address": "0x6ec07dbd9311975b8002079d70c6f6d9e3e1ee5c", + "symbol": "BABYTROLL", + "decimals": 9, + "name": "Baby Troll", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x6ec07dbd9311975b8002079d70c6f6d9e3e1ee5c.png", + "aggregators": [ + "PancakeCoinMarketCap", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 4 + }, + "0xa7380f5a0897820b7a385f27fe72e5469bacc8d6": { + "address": "0xa7380f5a0897820b7a385f27fe72e5469bacc8d6", + "symbol": "SORADOGE", + "decimals": 9, + "name": "Sora Doge", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xa7380f5a0897820b7a385f27fe72e5469bacc8d6.png", + "aggregators": [ + "PancakeCoinMarketCap", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 4 + }, + "0x9cae159a21a278e0a98ee42d197ae87cbc7165b3": { + "address": "0x9cae159a21a278e0a98ee42d197ae87cbc7165b3", + "symbol": "GIA", + "decimals": 9, + "name": "Gamia", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x9cae159a21a278e0a98ee42d197ae87cbc7165b3.png", + "aggregators": [ + "PancakeCoinMarketCap", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 4 + }, + "0x2243267f01efc579871eca055027e5214bbe5f14": { + "address": "0x2243267f01efc579871eca055027e5214bbe5f14", + "symbol": "BULL", + "decimals": 18, + "name": "Bull Token", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x2243267f01efc579871eca055027e5214bbe5f14.png", + "aggregators": [ + "PancakeCoinMarketCap", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 4 + }, + "0xcb3ae3099dc997616b907cefc9af5c850a067a4b": { + "address": "0xcb3ae3099dc997616b907cefc9af5c850a067a4b", + "symbol": "EMOJI", + "decimals": 18, + "name": "MOMOJI", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xcb3ae3099dc997616b907cefc9af5c850a067a4b.png", + "aggregators": [ + "PancakeCoinMarketCap", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 4 + }, + "0xe21502db7b9c6a78ed9400e30c8521be84f2ca4f": { + "address": "0xe21502db7b9c6a78ed9400e30c8521be84f2ca4f", + "symbol": "PETS", + "decimals": 18, + "name": "BNB Pets", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xe21502db7b9c6a78ed9400e30c8521be84f2ca4f.png", + "aggregators": [ + "PancakeCoinMarketCap", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 4 + }, + "0xf1dc2f7d9b9de5421ee89ef746f482a16e213383": { + "address": "0xf1dc2f7d9b9de5421ee89ef746f482a16e213383", + "symbol": "BABYPEPE", + "decimals": 18, + "name": "Babypepefi", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xf1dc2f7d9b9de5421ee89ef746f482a16e213383.png", + "aggregators": [ + "PancakeCoinMarketCap", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 4 + }, + "0x9059101e9c3b1ed5f778d6e88ba7d368f7dc9b57": { + "address": "0x9059101e9c3b1ed5f778d6e88ba7d368f7dc9b57", + "symbol": "KINGBONK", + "decimals": 9, + "name": "King Bonk", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x9059101e9c3b1ed5f778d6e88ba7d368f7dc9b57.png", + "aggregators": [ + "PancakeCoinMarketCap", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 4 + }, + "0xa910a46e2f2002fa9b5aa85f35b9440f6dac4b10": { + "address": "0xa910a46e2f2002fa9b5aa85f35b9440f6dac4b10", + "symbol": "SCORP", + "decimals": 18, + "name": "Scorpion", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xa910a46e2f2002fa9b5aa85f35b9440f6dac4b10.png", + "aggregators": ["PancakeCoinGecko", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0x963556de0eb8138e97a85f0a86ee0acd159d210b": { + "address": "0x963556de0eb8138e97a85f0a86ee0acd159d210b", + "symbol": "MARCO", + "decimals": 18, + "name": "Melega", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x963556de0eb8138e97a85f0a86ee0acd159d210b.png", + "aggregators": [ + "PancakeCoinMarketCap", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 4 + }, + "0x7b8779e01d117ec7e220f8299a6f93672e8eae23": { + "address": "0x7b8779e01d117ec7e220f8299a6f93672e8eae23", + "symbol": "IMT", + "decimals": 18, + "name": "IMOV", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x7b8779e01d117ec7e220f8299a6f93672e8eae23.png", + "aggregators": [ + "PancakeCoinMarketCap", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 4 + }, + "0xae7c682ba26ad6835b6150ffb35f22db9987f509": { + "address": "0xae7c682ba26ad6835b6150ffb35f22db9987f509", + "symbol": "ING", + "decimals": 18, + "name": "Infinity Games", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xae7c682ba26ad6835b6150ffb35f22db9987f509.png", + "aggregators": [ + "PancakeCoinMarketCap", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 4 + }, + "0x84fd7cc4cd689fc021ee3d00759b6d255269d538": { + "address": "0x84fd7cc4cd689fc021ee3d00759b6d255269d538", + "symbol": "KUKU", + "decimals": 18, + "name": "panKUKU", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x84fd7cc4cd689fc021ee3d00759b6d255269d538.png", + "aggregators": [ + "PancakeCoinMarketCap", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 4 + }, + "0x897f2be515373cf1f899d864b5be2bd5efd4e653": { + "address": "0x897f2be515373cf1f899d864b5be2bd5efd4e653", + "symbol": "T23", + "decimals": 18, + "name": "T23", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x897f2be515373cf1f899d864b5be2bd5efd4e653.png", + "aggregators": [ + "PancakeCoinMarketCap", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 4 + }, + "0x71b87be9ccbabe4f393e809dfc26df3c9720e0a2": { + "address": "0x71b87be9ccbabe4f393e809dfc26df3c9720e0a2", + "symbol": "TMG", + "decimals": 18, + "name": "T-mac DAO", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x71b87be9ccbabe4f393e809dfc26df3c9720e0a2.png", + "aggregators": [ + "PancakeCoinMarketCap", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 4 + }, + "0x066aee69d93dee28b32a57febd1878a2d94f6b0c": { + "address": "0x066aee69d93dee28b32a57febd1878a2d94f6b0c", + "symbol": "GOLD8", + "decimals": 18, + "name": "GOLD8", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x066aee69d93dee28b32a57febd1878a2d94f6b0c.png", + "aggregators": ["PancakeCoinGecko", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0x7b665b2f633d9363b89a98b094b1f9e732bd8f86": { + "address": "0x7b665b2f633d9363b89a98b094b1f9e732bd8f86", + "symbol": "AZY", + "decimals": 18, + "name": "Amazy", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x7b665b2f633d9363b89a98b094b1f9e732bd8f86.png", + "aggregators": [ + "PancakeCoinMarketCap", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 4 + }, + "0xf59918b07278ff20109f8c37d7255e0677b45c43": { + "address": "0xf59918b07278ff20109f8c37d7255e0677b45c43", + "symbol": "AFNTY", + "decimals": 9, + "name": "Affinity", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xf59918b07278ff20109f8c37d7255e0677b45c43.png", + "aggregators": [ + "PancakeCoinMarketCap", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 4 + }, + "0xe615c5e7219f9801c3b75bc76e45a4dab3c38e51": { + "address": "0xe615c5e7219f9801c3b75bc76e45a4dab3c38e51", + "symbol": "VMT", + "decimals": 18, + "name": "Vemate", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xe615c5e7219f9801c3b75bc76e45a4dab3c38e51.png", + "aggregators": [ + "PancakeCoinMarketCap", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 4 + }, + "0x7c56d81ecb5e1d287a1e22b89b01348f07be3541": { + "address": "0x7c56d81ecb5e1d287a1e22b89b01348f07be3541", + "symbol": "1MT", + "decimals": 18, + "name": "1Move Token", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x7c56d81ecb5e1d287a1e22b89b01348f07be3541.png", + "aggregators": [ + "PancakeCoinMarketCap", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 4 + }, + "0x78b2425fc305c0266143eaa527b01b043af83fb8": { + "address": "0x78b2425fc305c0266143eaa527b01b043af83fb8", + "symbol": "VSL", + "decimals": 9, + "name": "Vetter Skylabs", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x78b2425fc305c0266143eaa527b01b043af83fb8.png", + "aggregators": [ + "PancakeCoinMarketCap", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 4 + }, + "0x42414624c55a9cba80789f47c8f9828a7974e40f": { + "address": "0x42414624c55a9cba80789f47c8f9828a7974e40f", + "symbol": "KAKI", + "decimals": 18, + "name": "Doge KaKi", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x42414624c55a9cba80789f47c8f9828a7974e40f.png", + "aggregators": [ + "PancakeCoinMarketCap", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 4 + }, + "0x87e0ce18ce0ce0a86b22537b48c15e03a519b112": { + "address": "0x87e0ce18ce0ce0a86b22537b48c15e03a519b112", + "symbol": "SHINJI", + "decimals": 9, + "name": "Shinjiru Inu", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x87e0ce18ce0ce0a86b22537b48c15e03a519b112.png", + "aggregators": [ + "PancakeCoinMarketCap", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 4 + }, + "0x967784950655b8e74a2d3d3503933f0015660074": { + "address": "0x967784950655b8e74a2d3d3503933f0015660074", + "symbol": "ALIF", + "decimals": 18, + "name": "AliF Coin", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x967784950655b8e74a2d3d3503933f0015660074.png", + "aggregators": [ + "PancakeCoinMarketCap", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 4 + }, + "0x8abfa6a4f4b9865b0e7acfdce1839a2584636d06": { + "address": "0x8abfa6a4f4b9865b0e7acfdce1839a2584636d06", + "symbol": "MGKL", + "decimals": 18, + "name": "MAGIKAL.ai", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x8abfa6a4f4b9865b0e7acfdce1839a2584636d06.png", + "aggregators": [ + "PancakeCoinMarketCap", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 4 + }, + "0xa43d3e03d001492eb586db0990cb90d0c3bbe511": { + "address": "0xa43d3e03d001492eb586db0990cb90d0c3bbe511", + "symbol": "CLYC", + "decimals": 18, + "name": "Coinlocally", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xa43d3e03d001492eb586db0990cb90d0c3bbe511.png", + "aggregators": [ + "PancakeCoinMarketCap", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 4 + }, + "0xaa88fd757fa81ebbbce0eb1f324172d0e446093e": { + "address": "0xaa88fd757fa81ebbbce0eb1f324172d0e446093e", + "symbol": "REIGN", + "decimals": 18, + "name": "Reign of Terror", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xaa88fd757fa81ebbbce0eb1f324172d0e446093e.png", + "aggregators": [ + "PancakeCoinMarketCap", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 4 + }, + "0x9cbb03effd6fb7d79c9bab1b0ceaf4232e957521": { + "address": "0x9cbb03effd6fb7d79c9bab1b0ceaf4232e957521", + "symbol": "DOGECEO", + "decimals": 9, + "name": "Doge CEO", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x9cbb03effd6fb7d79c9bab1b0ceaf4232e957521.png", + "aggregators": [ + "PancakeCoinMarketCap", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 4 + }, + "0x06dc293c250e2fb2416a4276d291803fc74fb9b5": { + "address": "0x06dc293c250e2fb2416a4276d291803fc74fb9b5", + "symbol": "TKC", + "decimals": 18, + "name": "The Kingdom Coin", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x06dc293c250e2fb2416a4276d291803fc74fb9b5.png", + "aggregators": [ + "PancakeCoinMarketCap", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 4 + }, + "0x09cf7ca1b4ca6ab3855f23020e8e0e9e721cc03d": { + "address": "0x09cf7ca1b4ca6ab3855f23020e8e0e9e721cc03d", + "symbol": "LYUM", + "decimals": 18, + "name": "Layerium", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x09cf7ca1b4ca6ab3855f23020e8e0e9e721cc03d.png", + "aggregators": [ + "PancakeCoinMarketCap", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 4 + }, + "0x405e7454e71aefe8897438adc08e3f3e6d49dfc1": { + "address": "0x405e7454e71aefe8897438adc08e3f3e6d49dfc1", + "symbol": "SCT", + "decimals": 18, + "name": "SuperCells", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x405e7454e71aefe8897438adc08e3f3e6d49dfc1.png", + "aggregators": [ + "PancakeCoinMarketCap", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 4 + }, + "0x571dbcaa3df80dfebf69fefd084dace4a22ea7bf": { + "address": "0x571dbcaa3df80dfebf69fefd084dace4a22ea7bf", + "symbol": "BOAI", + "decimals": 18, + "name": "Bolic AI", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x571dbcaa3df80dfebf69fefd084dace4a22ea7bf.png", + "aggregators": [ + "PancakeCoinMarketCap", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 4 + }, + "0x3d17e0abd8d2f023970d8df8b43776a1a2bd737c": { + "address": "0x3d17e0abd8d2f023970d8df8b43776a1a2bd737c", + "symbol": "PEPECHAIN", + "decimals": 9, + "name": "PEPE Chain", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x3d17e0abd8d2f023970d8df8b43776a1a2bd737c.png", + "aggregators": [ + "PancakeCoinMarketCap", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 4 + }, + "0xbd817c2e531b1b31f211f50f59fbc87ebc50ef48": { + "address": "0xbd817c2e531b1b31f211f50f59fbc87ebc50ef48", + "symbol": "QTCC", + "decimals": 18, + "name": "Quick Transfer Coin Plus", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xbd817c2e531b1b31f211f50f59fbc87ebc50ef48.png", + "aggregators": [ + "PancakeCoinMarketCap", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 4 + }, + "0x6fa9c0ee8a1f237466bb9cac8466bfa2aa63a978": { + "address": "0x6fa9c0ee8a1f237466bb9cac8466bfa2aa63a978", + "symbol": "BICITY", + "decimals": 18, + "name": "BiCity AI Projects", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x6fa9c0ee8a1f237466bb9cac8466bfa2aa63a978.png", + "aggregators": [ + "PancakeCoinMarketCap", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 4 + }, + "0xf1e083a825db31c844b8b6be0b16a43fd523ca9c": { + "address": "0xf1e083a825db31c844b8b6be0b16a43fd523ca9c", + "symbol": "AVAC", + "decimals": 18, + "name": "AvaCoach", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xf1e083a825db31c844b8b6be0b16a43fd523ca9c.png", + "aggregators": ["PancakeCoinGecko", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0xde6e12bdb2062dc48b409f0086219464a0c317a0": { + "address": "0xde6e12bdb2062dc48b409f0086219464a0c317a0", + "symbol": "NIAO", + "decimals": 18, + "name": "NIAO", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xde6e12bdb2062dc48b409f0086219464a0c317a0.png", + "aggregators": [ + "PancakeCoinMarketCap", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 4 + }, + "0x52da44b5e584f730005dac8d2d2acbdee44d4ba3": { + "address": "0x52da44b5e584f730005dac8d2d2acbdee44d4ba3", + "symbol": "KT", + "decimals": 18, + "name": "KingdomX", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x52da44b5e584f730005dac8d2d2acbdee44d4ba3.png", + "aggregators": [ + "PancakeCoinMarketCap", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 4 + }, + "0xf6718b2701d4a6498ef77d7c152b2137ab28b8a3": { + "address": "0xf6718b2701d4a6498ef77d7c152b2137ab28b8a3", + "symbol": "STBTC", + "decimals": 18, + "name": "Lorenzo stBTC", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xf6718b2701d4a6498ef77d7c152b2137ab28b8a3.png", + "aggregators": ["PancakeExtended", "Rubic", "Squid", "Sonarwatch"], + "occurrences": 4 + }, + "0xd25db5c22a62041376f6f79372c8e204c7be7bdb": { + "address": "0xd25db5c22a62041376f6f79372c8e204c7be7bdb", + "symbol": "TBX", + "decimals": 18, + "name": "TurboX", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xd25db5c22a62041376f6f79372c8e204c7be7bdb.png", + "aggregators": [ + "PancakeCoinMarketCap", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 4 + }, + "0xfd60b3c3c1916bdbb4319a3d264894f1dfd5eca2": { + "address": "0xfd60b3c3c1916bdbb4319a3d264894f1dfd5eca2", + "symbol": "CNG", + "decimals": 18, + "name": "CoinNavigator", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xfd60b3c3c1916bdbb4319a3d264894f1dfd5eca2.png", + "aggregators": [ + "PancakeCoinMarketCap", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 4 + }, + "0xddb341e88bb2dd7cb56e3c62991c5ad3911518cc": { + "address": "0xddb341e88bb2dd7cb56e3c62991c5ad3911518cc", + "symbol": "CC", + "decimals": 18, + "name": "CCQKL", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xddb341e88bb2dd7cb56e3c62991c5ad3911518cc.png", + "aggregators": [ + "PancakeCoinMarketCap", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 4 + }, + "0x0910320181889fefde0bb1ca63962b0a8882e413": { + "address": "0x0910320181889fefde0bb1ca63962b0a8882e413", + "symbol": "CAMLY", + "decimals": 3, + "name": "CAMLY COIN", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x0910320181889fefde0bb1ca63962b0a8882e413.png", + "aggregators": [ + "PancakeCoinMarketCap", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 4 + }, + "0x75d8bb7fbd4782a134211dc350ba5c715197b81d": { + "address": "0x75d8bb7fbd4782a134211dc350ba5c715197b81d", + "symbol": "ATS", + "decimals": 18, + "name": "Alltoscan", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x75d8bb7fbd4782a134211dc350ba5c715197b81d.png", + "aggregators": [ + "PancakeCoinMarketCap", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 4 + }, + "0x8bfca09e5877ea59f85883d13a6873334b937d41": { + "address": "0x8bfca09e5877ea59f85883d13a6873334b937d41", + "symbol": "MADPEPE", + "decimals": 18, + "name": "Mad Pepe", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x8bfca09e5877ea59f85883d13a6873334b937d41.png", + "aggregators": [ + "PancakeCoinMarketCap", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 4 + }, + "0xb263feadea2d754dc72276a62e3cccf934669522": { + "address": "0xb263feadea2d754dc72276a62e3cccf934669522", + "symbol": "SNG", + "decimals": 18, + "name": "SNG Token", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xb263feadea2d754dc72276a62e3cccf934669522.png", + "aggregators": [ + "PancakeCoinMarketCap", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 4 + }, + "0x314bc6c98a28bd0580651233c351f2994cc12645": { + "address": "0x314bc6c98a28bd0580651233c351f2994cc12645", + "symbol": "$SHIBK", + "decimals": 18, + "name": "ShibaKeanu", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x314bc6c98a28bd0580651233c351f2994cc12645.png", + "aggregators": [ + "PancakeCoinMarketCap", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 4 + }, + "0xc636782a837feee37ccc29d58bdbb4bcbdd0ae1f": { + "address": "0xc636782a837feee37ccc29d58bdbb4bcbdd0ae1f", + "symbol": "POSEIDON", + "decimals": 18, + "name": "Binance Cat", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xc636782a837feee37ccc29d58bdbb4bcbdd0ae1f.png", + "aggregators": ["PancakeCoinGecko", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0x8e5cb7626dd949dff56fe2c130b75a8b6f1a05f8": { + "address": "0x8e5cb7626dd949dff56fe2c130b75a8b6f1a05f8", + "symbol": "BICS", + "decimals": 18, + "name": "Biceps", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x8e5cb7626dd949dff56fe2c130b75a8b6f1a05f8.png", + "aggregators": [ + "PancakeCoinMarketCap", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 4 + }, + "0xb1efa16818da8432add0cb0a82cc7fab98c78893": { + "address": "0xb1efa16818da8432add0cb0a82cc7fab98c78893", + "symbol": "KBC", + "decimals": 18, + "name": "Kibho Coin", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xb1efa16818da8432add0cb0a82cc7fab98c78893.png", + "aggregators": [ + "PancakeCoinMarketCap", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 4 + }, + "0xa9f978c02915246e435c0bda9785aaaad3cc46d2": { + "address": "0xa9f978c02915246e435c0bda9785aaaad3cc46d2", + "symbol": "LFT", + "decimals": 18, + "name": "Lifeform", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xa9f978c02915246e435c0bda9785aaaad3cc46d2.png", + "aggregators": [ + "PancakeCoinMarketCap", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 4 + }, + "0xda0f9f1204395c2481070c1d4dc1f996915527f2": { + "address": "0xda0f9f1204395c2481070c1d4dc1f996915527f2", + "symbol": "TBC", + "decimals": 18, + "name": "Tour Billion Coin", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xda0f9f1204395c2481070c1d4dc1f996915527f2.png", + "aggregators": [ + "PancakeCoinMarketCap", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 4 + }, + "0x05311d9aa0e17d1071986146ced510c85c71b52f": { + "address": "0x05311d9aa0e17d1071986146ced510c85c71b52f", + "symbol": "DOGA", + "decimals": 18, + "name": "DOGITA", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x05311d9aa0e17d1071986146ced510c85c71b52f.png", + "aggregators": [ + "PancakeCoinMarketCap", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 4 + }, + "0x68355e342ff81633ccd0395cc77c83e266ca548e": { + "address": "0x68355e342ff81633ccd0395cc77c83e266ca548e", + "symbol": "YON", + "decimals": 9, + "name": "YESorNO", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x68355e342ff81633ccd0395cc77c83e266ca548e.png", + "aggregators": [ + "PancakeCoinMarketCap", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 4 + }, + "0x67009eb16ff64d06b4f782b3c552b924b1d1bb93": { + "address": "0x67009eb16ff64d06b4f782b3c552b924b1d1bb93", + "symbol": "MTC", + "decimals": 18, + "name": "Matrix Chain", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x67009eb16ff64d06b4f782b3c552b924b1d1bb93.png", + "aggregators": [ + "PancakeCoinMarketCap", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 4 + }, + "0x766e09665a8128d9f7fd9d90bcd3d9cdc50b067f": { + "address": "0x766e09665a8128d9f7fd9d90bcd3d9cdc50b067f", + "symbol": "MOLI", + "decimals": 18, + "name": "Love Moli", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x766e09665a8128d9f7fd9d90bcd3d9cdc50b067f.png", + "aggregators": [ + "PancakeCoinMarketCap", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 4 + }, + "0x1c45366641014069114c78962bdc371f534bc81c": { + "address": "0x1c45366641014069114c78962bdc371f534bc81c", + "symbol": "BINANCEDOG", + "decimals": 18, + "name": "binancedog", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x1c45366641014069114c78962bdc371f534bc81c.png", + "aggregators": ["PancakeCoinGecko", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0x64cf1e2cab86694ac8b31653460faa47a68f59f0": { + "address": "0x64cf1e2cab86694ac8b31653460faa47a68f59f0", + "symbol": "GC", + "decimals": 5, + "name": "GamesCoin", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x64cf1e2cab86694ac8b31653460faa47a68f59f0.png", + "aggregators": ["PancakeCoinGecko", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0x3405ff989f8bb8efd6c85ad6b29219d3383a5fb0": { + "address": "0x3405ff989f8bb8efd6c85ad6b29219d3383a5fb0", + "symbol": "MVK", + "decimals": 18, + "name": "Metaverse Kombat", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x3405ff989f8bb8efd6c85ad6b29219d3383a5fb0.png", + "aggregators": [ + "PancakeCoinMarketCap", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 4 + }, + "0xc409ec8a33f31437ed753c82eed3c5f16d6d7e22": { + "address": "0xc409ec8a33f31437ed753c82eed3c5f16d6d7e22", + "symbol": "TOKAU", + "decimals": 18, + "name": "Tokyo AU", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xc409ec8a33f31437ed753c82eed3c5f16d6d7e22.png", + "aggregators": [ + "PancakeCoinMarketCap", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 4 + }, + "0xddc0dbd7dc799ae53a98a60b54999cb6ebb3abf0": { + "address": "0xddc0dbd7dc799ae53a98a60b54999cb6ebb3abf0", + "symbol": "BLAST", + "decimals": 9, + "name": "SafeBlast", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xddc0dbd7dc799ae53a98a60b54999cb6ebb3abf0.png", + "aggregators": [ + "PancakeCoinMarketCap", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 4 + }, + "0xbb95cc1c662d89822bda29d2e147b124406e6e42": { + "address": "0xbb95cc1c662d89822bda29d2e147b124406e6e42", + "symbol": "TRR", + "decimals": 18, + "name": "Terran Coin", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xbb95cc1c662d89822bda29d2e147b124406e6e42.png", + "aggregators": [ + "PancakeCoinMarketCap", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 4 + }, + "0xdd325c38b12903b727d16961e61333f4871a70e0": { + "address": "0xdd325c38b12903b727d16961e61333f4871a70e0", + "symbol": "TRUNK", + "decimals": 18, + "name": "Elephant Money (TRUNK)", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xdd325c38b12903b727d16961e61333f4871a70e0.png", + "aggregators": ["PancakeCoinGecko", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0x155e8a74dac3d8560ddabbc26aa064b764535193": { + "address": "0x155e8a74dac3d8560ddabbc26aa064b764535193", + "symbol": "FCP", + "decimals": 18, + "name": "Filipcoin", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x155e8a74dac3d8560ddabbc26aa064b764535193.png", + "aggregators": [ + "PancakeCoinMarketCap", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 4 + }, + "0xde301d6a2569aefcfe271b9d98f318baee1d30a4": { + "address": "0xde301d6a2569aefcfe271b9d98f318baee1d30a4", + "symbol": "LUS", + "decimals": 18, + "name": "Luna Rush", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xde301d6a2569aefcfe271b9d98f318baee1d30a4.png", + "aggregators": [ + "PancakeCoinMarketCap", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 4 + }, + "0x3d473c3ef4cd4c909b020f48477a2ee2617a8e3c": { + "address": "0x3d473c3ef4cd4c909b020f48477a2ee2617a8e3c", + "symbol": "GRG", + "decimals": 18, + "name": "RigoBlock", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x3d473c3ef4cd4c909b020f48477a2ee2617a8e3c.png", + "aggregators": [ + "PancakeCoinMarketCap", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 4 + }, + "0x0555e30da8f98308edb960aa94c0db47230d2b9c": { + "address": "0x0555e30da8f98308edb960aa94c0db47230d2b9c", + "symbol": "WBTC", + "decimals": 8, + "name": "Wrapped BTC", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x0555e30da8f98308edb960aa94c0db47230d2b9c.png", + "aggregators": ["PancakeExtended", "Socket", "Rubic", "Rango"], + "occurrences": 4 + }, + "0x5dd1e31e1a0e2e077ac98d2a4b781f418ca50387": { + "address": "0x5dd1e31e1a0e2e077ac98d2a4b781f418ca50387", + "symbol": "ZLW", + "decimals": 18, + "name": "Zelwin", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x5dd1e31e1a0e2e077ac98d2a4b781f418ca50387.png", + "aggregators": [ + "PancakeCoinMarketCap", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 4 + }, + "0xf1e5bbd997501a8439619266a09a54b2b499eaa3": { + "address": "0xf1e5bbd997501a8439619266a09a54b2b499eaa3", + "symbol": "UCO", + "decimals": 8, + "name": "Archethic Universal Coin", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xf1e5bbd997501a8439619266a09a54b2b499eaa3.png", + "aggregators": ["PancakeCoinGecko", "Socket", "Rubic", "Rango"], + "occurrences": 4 + }, + "0x755341c49f4427e43d99d8254a8dd87056f1ee00": { + "address": "0x755341c49f4427e43d99d8254a8dd87056f1ee00", + "symbol": "ELG", + "decimals": 18, + "name": "Escoin", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x755341c49f4427e43d99d8254a8dd87056f1ee00.png", + "aggregators": [ + "PancakeCoinMarketCap", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 4 + }, + "0xd632bd021a07af70592ce1e18717ab9aa126decb": { + "address": "0xd632bd021a07af70592ce1e18717ab9aa126decb", + "symbol": "KANGAL", + "decimals": 18, + "name": "Kangal", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xd632bd021a07af70592ce1e18717ab9aa126decb.png", + "aggregators": [ + "PancakeCoinMarketCap", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 4 + }, + "0xaa076b62efc6f357882e07665157a271ab46a063": { + "address": "0xaa076b62efc6f357882e07665157a271ab46a063", + "symbol": "NSFW", + "decimals": 18, + "name": "Pleasure Coin", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xaa076b62efc6f357882e07665157a271ab46a063.png", + "aggregators": [ + "PancakeCoinMarketCap", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 4 + }, + "0xc51ef828319b131b595b7ec4b28210ecf4d05ad0": { + "address": "0xc51ef828319b131b595b7ec4b28210ecf4d05ad0", + "symbol": "EFX", + "decimals": 18, + "name": "Effect AI", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xc51ef828319b131b595b7ec4b28210ecf4d05ad0.png", + "aggregators": [ + "PancakeCoinMarketCap", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 4 + }, + "0x5f588efaf8eb57e3837486e834fc5a4e07768d98": { + "address": "0x5f588efaf8eb57e3837486e834fc5a4e07768d98", + "symbol": "MVL", + "decimals": 18, + "name": "MVL", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x5f588efaf8eb57e3837486e834fc5a4e07768d98.png", + "aggregators": [ + "PancakeCoinMarketCap", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 4 + }, + "0x40225c6277b29bf9056b4acb7ee1512cbff11671": { + "address": "0x40225c6277b29bf9056b4acb7ee1512cbff11671", + "symbol": "BUY", + "decimals": 18, + "name": "Buying.com", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x40225c6277b29bf9056b4acb7ee1512cbff11671.png", + "aggregators": [ + "PancakeCoinMarketCap", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 4 + }, + "0x8bd778b12b15416359a227f0533ce2d91844e1ed": { + "address": "0x8bd778b12b15416359a227f0533ce2d91844e1ed", + "symbol": "SAKE", + "decimals": 18, + "name": "SakeSwap", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x8bd778b12b15416359a227f0533ce2d91844e1ed.png", + "aggregators": [ + "PancakeCoinMarketCap", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 4 + }, + "0xb0c4080a8fa7afa11a09473f3be14d44af3f8743": { + "address": "0xb0c4080a8fa7afa11a09473f3be14d44af3f8743", + "symbol": "STBU", + "decimals": 18, + "name": "Stobox", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xb0c4080a8fa7afa11a09473f3be14d44af3f8743.png", + "aggregators": [ + "PancakeCoinMarketCap", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 4 + }, + "0x141383cdb8158982fb3469c3e49cc82f8026d968": { + "address": "0x141383cdb8158982fb3469c3e49cc82f8026d968", + "symbol": "CORX", + "decimals": 18, + "name": "CorionX", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x141383cdb8158982fb3469c3e49cc82f8026d968.png", + "aggregators": [ + "PancakeCoinMarketCap", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 4 + }, + "0x33a3d962955a3862c8093d1273344719f03ca17c": { + "address": "0x33a3d962955a3862c8093d1273344719f03ca17c", + "symbol": "SPORE", + "decimals": 9, + "name": "Spore", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x33a3d962955a3862c8093d1273344719f03ca17c.png", + "aggregators": [ + "PancakeCoinMarketCap", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 4 + }, + "0x36fe11b6d5c9421f68d235694fe192b35e803903": { + "address": "0x36fe11b6d5c9421f68d235694fe192b35e803903", + "symbol": "RWA", + "decimals": 18, + "name": "Xend Finance", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x36fe11b6d5c9421f68d235694fe192b35e803903.png", + "aggregators": [ + "PancakeCoinMarketCap", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 4 + }, + "0x889efce29fa0bb9b26be9fda17a8003f4e8da4de": { + "address": "0x889efce29fa0bb9b26be9fda17a8003f4e8da4de", + "symbol": "EGG", + "decimals": 18, + "name": "Waves Ducks", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x889efce29fa0bb9b26be9fda17a8003f4e8da4de.png", + "aggregators": [ + "PancakeCoinMarketCap", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 4 + }, + "0x5ca42204cdaa70d5c773946e69de942b85ca6706": { + "address": "0x5ca42204cdaa70d5c773946e69de942b85ca6706", + "symbol": "POSI", + "decimals": 18, + "name": "Position", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x5ca42204cdaa70d5c773946e69de942b85ca6706.png", + "aggregators": [ + "PancakeCoinMarketCap", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 4 + }, + "0x2aaf50869739e317ab80a57bf87caa35f5b60598": { + "address": "0x2aaf50869739e317ab80a57bf87caa35f5b60598", + "symbol": "CIOTX", + "decimals": 18, + "name": "Crosschain IOTX", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x2aaf50869739e317ab80a57bf87caa35f5b60598.png", + "aggregators": [ + "PancakeCoinMarketCap", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 4 + }, + "0xbfef6ccfc830d3baca4f6766a0d4aaa242ca9f3d": { + "address": "0xbfef6ccfc830d3baca4f6766a0d4aaa242ca9f3d", + "symbol": "NAV", + "decimals": 8, + "name": "Navcoin", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xbfef6ccfc830d3baca4f6766a0d4aaa242ca9f3d.png", + "aggregators": [ + "PancakeCoinMarketCap", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 4 + }, + "0x13ab6739368a4e4abf24695bf52959224367391f": { + "address": "0x13ab6739368a4e4abf24695bf52959224367391f", + "symbol": "YGG", + "decimals": 18, + "name": "Yield Guild Games", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x13ab6739368a4e4abf24695bf52959224367391f.png", + "aggregators": [ + "PancakeCoinMarketCap", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 4 + }, + "0x7d61d3752f759c71f5291358408947aff7b0ff2c": { + "address": "0x7d61d3752f759c71f5291358408947aff7b0ff2c", + "symbol": "TALK", + "decimals": 18, + "name": "Talken", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x7d61d3752f759c71f5291358408947aff7b0ff2c.png", + "aggregators": [ + "PancakeCoinMarketCap", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 4 + }, + "0x73cf73c2503154de4dc12067546aa9357dadaff2": { + "address": "0x73cf73c2503154de4dc12067546aa9357dadaff2", + "symbol": "42", + "decimals": 8, + "name": "42-coin", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x73cf73c2503154de4dc12067546aa9357dadaff2.png", + "aggregators": [ + "PancakeCoinMarketCap", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 4 + }, + "0x8683e604cdf911cd72652a04bf9d571697a86a60": { + "address": "0x8683e604cdf911cd72652a04bf9d571697a86a60", + "symbol": "BCDT", + "decimals": 18, + "name": "EvidenZ", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x8683e604cdf911cd72652a04bf9d571697a86a60.png", + "aggregators": [ + "PancakeCoinMarketCap", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 4 + }, + "0x2dd1b4d4548accea497050619965f91f78b3b532": { + "address": "0x2dd1b4d4548accea497050619965f91f78b3b532", + "symbol": "FPI", + "decimals": 18, + "name": "Frax Price Index", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x2dd1b4d4548accea497050619965f91f78b3b532.png", + "aggregators": [ + "PancakeCoinMarketCap", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 4 + }, + "0xe62b7c22484f8b031930275d31f42b9a517fe038": { + "address": "0xe62b7c22484f8b031930275d31f42b9a517fe038", + "symbol": "SIDUS", + "decimals": 18, + "name": "Sidus", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xe62b7c22484f8b031930275d31f42b9a517fe038.png", + "aggregators": [ + "PancakeCoinMarketCap", + "Socket", + "Rubic", + "Sonarwatch" + ], + "occurrences": 4 + }, + "0x6c9297be2e3ce9c10c480a25b7157a43fd992942": { + "address": "0x6c9297be2e3ce9c10c480a25b7157a43fd992942", + "symbol": "MEAN", + "decimals": 6, + "name": "Mean DAO", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x6c9297be2e3ce9c10c480a25b7157a43fd992942.png", + "aggregators": [ + "PancakeCoinMarketCap", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 4 + }, + "0x7283dfa2d8d7e277b148cc263b5d8ae02f1076d3": { + "address": "0x7283dfa2d8d7e277b148cc263b5d8ae02f1076d3", + "symbol": "GRLC", + "decimals": 8, + "name": "Garlicoin", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x7283dfa2d8d7e277b148cc263b5d8ae02f1076d3.png", + "aggregators": [ + "PancakeCoinMarketCap", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 4 + }, + "0xc6bdfc4f2e90196738873e824a9efa03f7c64176": { + "address": "0xc6bdfc4f2e90196738873e824a9efa03f7c64176", + "symbol": "VCNT", + "decimals": 18, + "name": "ViciCoin", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xc6bdfc4f2e90196738873e824a9efa03f7c64176.png", + "aggregators": [ + "PancakeCoinMarketCap", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 4 + }, + "0x3a9eed92422abdd7566fba8c34bb74b3f656dbb3": { + "address": "0x3a9eed92422abdd7566fba8c34bb74b3f656dbb3", + "symbol": "KAT", + "decimals": 18, + "name": "Kambria", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x3a9eed92422abdd7566fba8c34bb74b3f656dbb3.png", + "aggregators": [ + "PancakeCoinMarketCap", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 4 + }, + "0x8af48050534ee9bde12ec6e45ea3db4908c04777": { + "address": "0x8af48050534ee9bde12ec6e45ea3db4908c04777", + "symbol": "HATCHY", + "decimals": 18, + "name": "HatchyPocket", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x8af48050534ee9bde12ec6e45ea3db4908c04777.png", + "aggregators": [ + "PancakeCoinMarketCap", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 4 + }, + "0xfa704148d516b209d52c2d75f239274c8f8eaf1a": { + "address": "0xfa704148d516b209d52c2d75f239274c8f8eaf1a", + "symbol": "OCTA", + "decimals": 18, + "name": "OctaSpace", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xfa704148d516b209d52c2d75f239274c8f8eaf1a.png", + "aggregators": [ + "PancakeCoinMarketCap", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 4 + }, + "0x848b991fb420cd59c8296143c8153477393ddcab": { + "address": "0x848b991fb420cd59c8296143c8153477393ddcab", + "symbol": "KCN", + "decimals": 12, + "name": "Kylacoin", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x848b991fb420cd59c8296143c8153477393ddcab.png", + "aggregators": [ + "PancakeCoinMarketCap", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 4 + }, + "0x1bc8bf18256d8b45d8367aac50fe2e24fc6aa8ca": { + "address": "0x1bc8bf18256d8b45d8367aac50fe2e24fc6aa8ca", + "symbol": "VES", + "decimals": 18, + "name": "Vestate", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x1bc8bf18256d8b45d8367aac50fe2e24fc6aa8ca.png", + "aggregators": [ + "PancakeCoinMarketCap", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 4 + }, + "0x5c999e15b71de2bb8e651f0f999fb0bc321a0dfe": { + "address": "0x5c999e15b71de2bb8e651f0f999fb0bc321a0dfe", + "symbol": "ZED", + "decimals": 18, + "name": "ZedDex", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x5c999e15b71de2bb8e651f0f999fb0bc321a0dfe.png", + "aggregators": [ + "PancakeCoinMarketCap", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 4 + }, + "0xa40640458fbc27b6eefedea1e9c9e17d4cee7a21": { + "address": "0xa40640458fbc27b6eefedea1e9c9e17d4cee7a21", + "symbol": "AEUR", + "decimals": 18, + "name": "Anchored Coins AEUR", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xa40640458fbc27b6eefedea1e9c9e17d4cee7a21.png", + "aggregators": [ + "PancakeCoinMarketCap", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 4 + }, + "0x1ca5f369eac57cb54aa54136b9552f59a0a4050f": { + "address": "0x1ca5f369eac57cb54aa54136b9552f59a0a4050f", + "symbol": "CHADCAT", + "decimals": 9, + "name": "CHAD CAT", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x1ca5f369eac57cb54aa54136b9552f59a0a4050f.png", + "aggregators": [ + "PancakeCoinMarketCap", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 4 + }, + "0x306fd3e7b169aa4ee19412323e1a5995b8c1a1f4": { + "address": "0x306fd3e7b169aa4ee19412323e1a5995b8c1a1f4", + "symbol": "FTW", + "decimals": 18, + "name": "Black Agnus", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x306fd3e7b169aa4ee19412323e1a5995b8c1a1f4.png", + "aggregators": ["PancakeCoinGecko", "Socket", "Rubic", "Rango"], + "occurrences": 4 + }, + "0x40d8e1fbaf69173c47fa493feb50a84eec6b57ee": { + "address": "0x40d8e1fbaf69173c47fa493feb50a84eec6b57ee", + "symbol": "IONQON", + "decimals": 18, + "name": "IonQ (Ondo Tokenized)", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x40d8e1fbaf69173c47fa493feb50a84eec6b57ee.png", + "aggregators": ["CoinGecko", "Rubic", "Rango", "Ondo"], + "occurrences": 4, + "rwaData": { + "market": { + "nextOpen": "2026-05-18T20:01:00.000Z", + "nextClose": "2026-05-18T19:59:00.000Z" + }, + "nextPause": { + "start": null, + "end": null + }, + "ticker": "IONQ", + "instrumentType": "stock" + } + }, + "0xf95e50be5efc96117c28775f80c7cdb41ebc4888": { + "address": "0xf95e50be5efc96117c28775f80c7cdb41ebc4888", + "symbol": "SHYON", + "decimals": 18, + "name": "iShares 1-3 Year Treasury Bond ETF (Ondo Tokenized)", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xf95e50be5efc96117c28775f80c7cdb41ebc4888.png", + "aggregators": ["CoinGecko", "Rubic", "Rango", "Ondo"], + "occurrences": 4, + "rwaData": { + "market": { + "nextOpen": "2026-05-18T20:01:00.000Z", + "nextClose": "2026-05-18T19:59:00.000Z" + }, + "nextPause": { + "start": null, + "end": null + }, + "ticker": "SHY", + "instrumentType": "stock" + } + }, + "0xa486a0a05250e8621ba3b26c3bbc517145eba619": { + "address": "0xa486a0a05250e8621ba3b26c3bbc517145eba619", + "symbol": "IEFON", + "decimals": 18, + "name": "iShares 7-10 Year Treasury Bond ETF (Ondo Tokenized)", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xa486a0a05250e8621ba3b26c3bbc517145eba619.png", + "aggregators": ["CoinGecko", "Rubic", "Rango", "Ondo"], + "occurrences": 4, + "rwaData": { + "market": { + "nextOpen": "2026-05-18T20:01:00.000Z", + "nextClose": "2026-05-18T19:59:00.000Z" + }, + "nextPause": { + "start": null, + "end": null + }, + "ticker": "IEF", + "instrumentType": "stock" + } + }, + "0x04b16ff1f9673146f68aa5d5f57aa45adcf068e1": { + "address": "0x04b16ff1f9673146f68aa5d5f57aa45adcf068e1", + "symbol": "ETHAON", + "decimals": 18, + "name": "iShares Ethereum Trust ETF (Ondo Tokenized)", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x04b16ff1f9673146f68aa5d5f57aa45adcf068e1.png", + "aggregators": ["CoinGecko", "Rubic", "Rango", "Ondo"], + "occurrences": 4, + "rwaData": { + "market": { + "nextOpen": "2026-05-18T20:01:00.000Z", + "nextClose": "2026-05-18T19:59:00.000Z" + }, + "nextPause": { + "start": null, + "end": null + }, + "ticker": "ETHA", + "instrumentType": "stock" + } + }, + "0x9876f4b879cde9aa49ffd260034a0698b7b33a49": { + "address": "0x9876f4b879cde9aa49ffd260034a0698b7b33a49", + "symbol": "EWZON", + "decimals": 18, + "name": "iShares MSCI Brazil ETF (Ondo Tokenized)", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x9876f4b879cde9aa49ffd260034a0698b7b33a49.png", + "aggregators": ["CoinGecko", "Rubic", "Rango", "Ondo"], + "occurrences": 4, + "rwaData": { + "market": { + "nextOpen": "2026-05-18T20:01:00.000Z", + "nextClose": "2026-05-18T19:59:00.000Z" + }, + "nextPause": { + "start": null, + "end": null + }, + "ticker": "EWZ", + "instrumentType": "stock" + } + }, + "0xdb0748297fbef0b33df89e86519a0bd3adaf6459": { + "address": "0xdb0748297fbef0b33df89e86519a0bd3adaf6459", + "symbol": "INDAON", + "decimals": 18, + "name": "iShares MSCI India ETF (Ondo Tokenized)", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xdb0748297fbef0b33df89e86519a0bd3adaf6459.png", + "aggregators": ["CoinGecko", "Rubic", "Rango", "Ondo"], + "occurrences": 4, + "rwaData": { + "market": { + "nextOpen": "2026-05-18T20:01:00.000Z", + "nextClose": "2026-05-18T19:59:00.000Z" + }, + "nextPause": { + "start": null, + "end": null + }, + "ticker": "INDA", + "instrumentType": "stock" + } + }, + "0x82715299f3f132fb85f3de1f7e8fafd3d79f3eb5": { + "address": "0x82715299f3f132fb85f3de1f7e8fafd3d79f3eb5", + "symbol": "EWJON", + "decimals": 18, + "name": "iShares MSCI Japan ETF (Ondo Tokenized)", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x82715299f3f132fb85f3de1f7e8fafd3d79f3eb5.png", + "aggregators": ["CoinGecko", "Rubic", "Rango", "Ondo"], + "occurrences": 4, + "rwaData": { + "market": { + "nextOpen": "2026-05-18T20:01:00.000Z", + "nextClose": "2026-05-18T19:59:00.000Z" + }, + "nextPause": { + "start": null, + "end": null + }, + "ticker": "EWJ", + "instrumentType": "stock" + } + }, + "0x2a3cbf64c8181db4a25d41d4d7a7db9984c59dac": { + "address": "0x2a3cbf64c8181db4a25d41d4d7a7db9984c59dac", + "symbol": "SOXXON", + "decimals": 18, + "name": "iShares Semiconductor ETF (Ondo Tokenized)", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x2a3cbf64c8181db4a25d41d4d7a7db9984c59dac.png", + "aggregators": ["CoinGecko", "Rubic", "Rango", "Ondo"], + "occurrences": 4, + "rwaData": { + "market": { + "nextOpen": "2026-05-18T20:01:00.000Z", + "nextClose": "2026-05-18T19:59:00.000Z" + }, + "nextPause": { + "start": null, + "end": null + }, + "ticker": "SOXX", + "instrumentType": "stock" + } + }, + "0x7437203800140ba7d9081dde8cef09ee40e3bf03": { + "address": "0x7437203800140ba7d9081dde8cef09ee40e3bf03", + "symbol": "KWEBON", + "decimals": 18, + "name": "KraneShares CSI China Internet ETF (Ondo Tokenized)", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x7437203800140ba7d9081dde8cef09ee40e3bf03.png", + "aggregators": ["CoinGecko", "Rubic", "Rango", "Ondo"], + "occurrences": 4, + "rwaData": { + "market": { + "nextOpen": "2026-05-18T20:01:00.000Z", + "nextClose": "2026-05-18T19:59:00.000Z" + }, + "nextPause": { + "start": null, + "end": null + }, + "ticker": "KWEB", + "instrumentType": "stock" + } + }, + "0x75e9d68e99e76714ed1a7663ab48ba3aabd7a6c5": { + "address": "0x75e9d68e99e76714ed1a7663ab48ba3aabd7a6c5", + "symbol": "HYSON", + "decimals": 18, + "name": "PIMCO 0-5 Year High Yield Corporate Bond Index ETF (Ondo Tokenized)", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x75e9d68e99e76714ed1a7663ab48ba3aabd7a6c5.png", + "aggregators": ["CoinGecko", "Rubic", "Rango", "Ondo"], + "occurrences": 4, + "rwaData": { + "market": { + "nextOpen": "2026-05-18T20:01:00.000Z", + "nextClose": "2026-05-18T19:59:00.000Z" + }, + "nextPause": { + "start": null, + "end": null + }, + "ticker": "HYS", + "instrumentType": "stock" + } + }, + "0x30bd85fd4286c5c9857679f5b188f737b4a7b8c0": { + "address": "0x30bd85fd4286c5c9857679f5b188f737b4a7b8c0", + "symbol": "REGNON", + "decimals": 18, + "name": "Regeneron Pharmaceuticals (Ondo Tokenized)", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x30bd85fd4286c5c9857679f5b188f737b4a7b8c0.png", + "aggregators": ["CoinGecko", "Rubic", "Rango", "Ondo"], + "occurrences": 4, + "rwaData": { + "market": { + "nextOpen": "2026-05-18T20:01:00.000Z", + "nextClose": "2026-05-18T19:59:00.000Z" + }, + "nextPause": { + "start": "2026-05-19T23:52:00.000Z", + "end": "2026-05-20T00:12:00.000Z" + }, + "ticker": "REGN", + "instrumentType": "stock" + } + }, + "0xe7ddf606841ee278a30e5c90486681e68ddd8cbf": { + "address": "0xe7ddf606841ee278a30e5c90486681e68ddd8cbf", + "symbol": "UECON", + "decimals": 18, + "name": "Uranium Energy (Ondo Tokenized)", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xe7ddf606841ee278a30e5c90486681e68ddd8cbf.png", + "aggregators": ["CoinGecko", "Rubic", "Rango", "Ondo"], + "occurrences": 4, + "rwaData": { + "market": { + "nextOpen": "2026-05-19T08:01:00.000Z", + "nextClose": "2026-05-18T19:59:00.000Z" + }, + "nextPause": { + "start": "2026-06-01T09:00:00.000Z", + "end": "2026-06-01T23:30:00.000Z" + }, + "ticker": "UEC", + "instrumentType": "stock" + } + }, + "0x5f2d37192576a6804f44722eb828e280d5fb43dc": { + "address": "0x5f2d37192576a6804f44722eb828e280d5fb43dc", + "symbol": "BNOON", + "decimals": 18, + "name": "US Brent Oil Fund (Ondo Tokenized)", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x5f2d37192576a6804f44722eb828e280d5fb43dc.png", + "aggregators": ["CoinGecko", "Rubic", "Rango", "Ondo"], + "occurrences": 4, + "rwaData": { + "market": { + "nextOpen": "2026-05-18T20:01:00.000Z", + "nextClose": "2026-05-18T19:59:00.000Z" + }, + "nextPause": { + "start": null, + "end": null + }, + "ticker": "BNO", + "instrumentType": "stock" + } + }, + "0x10b58a3d9dcec59bb1c3bf6b9c9414eafce711c9": { + "address": "0x10b58a3d9dcec59bb1c3bf6b9c9414eafce711c9", + "symbol": "VNQON", + "decimals": 18, + "name": "Vanguard Real Estate ETF (Ondo Tokenized)", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x10b58a3d9dcec59bb1c3bf6b9c9414eafce711c9.png", + "aggregators": ["CoinGecko", "Rubic", "Rango", "Ondo"], + "occurrences": 4, + "rwaData": { + "market": { + "nextOpen": "2026-05-18T20:01:00.000Z", + "nextClose": "2026-05-18T19:59:00.000Z" + }, + "nextPause": { + "start": null, + "end": null + }, + "ticker": "VNQ", + "instrumentType": "stock" + } + }, + "0x0b790abd6594918de1022233b7cc79badb84d92a": { + "address": "0x0b790abd6594918de1022233b7cc79badb84d92a", + "symbol": "ALBON", + "decimals": 18, + "name": "Albemarle (Ondo Tokenized)", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x0b790abd6594918de1022233b7cc79badb84d92a.png", + "aggregators": ["CoinGecko", "Rubic", "Rango", "Ondo"], + "occurrences": 4, + "rwaData": { + "market": { + "nextOpen": "2026-05-18T20:01:00.000Z", + "nextClose": "2026-05-18T19:59:00.000Z" + }, + "nextPause": { + "start": "2026-06-11T23:52:00.000Z", + "end": "2026-06-12T00:12:00.000Z" + }, + "ticker": "ALB", + "instrumentType": "stock" + } + }, + "0x0585756aafb241b0f8a9df62db26c566091bde0b": { + "address": "0x0585756aafb241b0f8a9df62db26c566091bde0b", + "symbol": "COHRON", + "decimals": 18, + "name": "Coherent (Ondo Tokenized)", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x0585756aafb241b0f8a9df62db26c566091bde0b.png", + "aggregators": ["CoinGecko", "Rubic", "Rango", "Ondo"], + "occurrences": 4, + "rwaData": { + "market": { + "nextOpen": "2026-05-18T20:01:00.000Z", + "nextClose": "2026-05-18T19:59:00.000Z" + }, + "nextPause": { + "start": null, + "end": null + }, + "ticker": "COHR", + "instrumentType": "stock" + } + }, + "0x76e39171cb665a35981e744e2ceb7012f76caeac": { + "address": "0x76e39171cb665a35981e744e2ceb7012f76caeac", + "symbol": "CRWVON", + "decimals": 18, + "name": "CoreWeave (Ondo Tokenized)", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x76e39171cb665a35981e744e2ceb7012f76caeac.png", + "aggregators": ["CoinGecko", "Rubic", "Rango", "Ondo"], + "occurrences": 4, + "rwaData": { + "market": { + "nextOpen": "2026-05-18T20:01:00.000Z", + "nextClose": "2026-05-18T19:59:00.000Z" + }, + "nextPause": { + "start": null, + "end": null + }, + "ticker": "CRWV", + "instrumentType": "stock" + } + }, + "0x4697b2a050f7b5a8e1ebc27c325f9d78d094f041": { + "address": "0x4697b2a050f7b5a8e1ebc27c325f9d78d094f041", + "symbol": "ETNON", + "decimals": 18, + "name": "Eaton (Ondo Tokenized)", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x4697b2a050f7b5a8e1ebc27c325f9d78d094f041.png", + "aggregators": ["CoinGecko", "Rubic", "Rango", "Ondo"], + "occurrences": 4, + "rwaData": { + "market": { + "nextOpen": "2026-05-18T20:01:00.000Z", + "nextClose": "2026-05-18T19:59:00.000Z" + }, + "nextPause": { + "start": null, + "end": null + }, + "ticker": "ETN", + "instrumentType": "stock" + } + }, + "0x30938154e2697694f41592c2e48459287debe4bf": { + "address": "0x30938154e2697694f41592c2e48459287debe4bf", + "symbol": "ENPHON", + "decimals": 18, + "name": "Enphase Energy (Ondo Tokenized)", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x30938154e2697694f41592c2e48459287debe4bf.png", + "aggregators": ["CoinGecko", "Rubic", "Rango", "Ondo"], + "occurrences": 4, + "rwaData": { + "market": { + "nextOpen": "2026-05-18T20:01:00.000Z", + "nextClose": "2026-05-18T19:59:00.000Z" + }, + "nextPause": { + "start": null, + "end": null + }, + "ticker": "ENPH", + "instrumentType": "stock" + } + }, + "0x92d504158a8dc69de989db5ede3230d958fb8630": { + "address": "0x92d504158a8dc69de989db5ede3230d958fb8630", + "symbol": "EXODON", + "decimals": 18, + "name": "Exodus Movement (Ondo Tokenized)", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x92d504158a8dc69de989db5ede3230d958fb8630.png", + "aggregators": ["CoinGecko", "Rubic", "Rango", "Ondo"], + "occurrences": 4, + "rwaData": { + "market": { + "nextOpen": "2026-05-19T13:31:00.000Z", + "nextClose": "2026-05-18T19:59:00.000Z" + }, + "nextPause": { + "start": null, + "end": null + }, + "ticker": "EXOD", + "instrumentType": "stock" + } + }, + "0x54b92fd77229269ff6484942c123cca72f2d6fec": { + "address": "0x54b92fd77229269ff6484942c123cca72f2d6fec", + "symbol": "FSOLON", + "decimals": 18, + "name": "Fidelity Solana Fund (Ondo Tokenized)", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x54b92fd77229269ff6484942c123cca72f2d6fec.png", + "aggregators": ["CoinGecko", "Rubic", "Rango", "Ondo"], + "occurrences": 4, + "rwaData": { + "market": { + "nextOpen": "2026-05-18T20:01:00.000Z", + "nextClose": "2026-05-18T19:59:00.000Z" + }, + "nextPause": { + "start": null, + "end": null + }, + "ticker": "FSOL", + "instrumentType": "stock" + } + }, + "0xdcd4536508060dab8f43c334b3a6c72c39528da5": { + "address": "0xdcd4536508060dab8f43c334b3a6c72c39528da5", + "symbol": "CIBRON", + "decimals": 18, + "name": "First Trust NASDAQ Cybersecurity ETF (Ondo Tokenized)", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xdcd4536508060dab8f43c334b3a6c72c39528da5.png", + "aggregators": ["CoinGecko", "Rubic", "Rango", "Ondo"], + "occurrences": 4, + "rwaData": { + "market": { + "nextOpen": "2026-05-19T00:05:00.000Z", + "nextClose": "2026-05-18T19:59:00.000Z" + }, + "nextPause": { + "start": null, + "end": null + }, + "ticker": "CIBR", + "instrumentType": "stock" + } + }, + "0x5e24db6de4c21e2c8f9e81bacfcedfbac2dee4aa": { + "address": "0x5e24db6de4c21e2c8f9e81bacfcedfbac2dee4aa", + "symbol": "INCEON", + "decimals": 18, + "name": "Franklin Income Equity Focus ETF (Ondo Tokenized)", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x5e24db6de4c21e2c8f9e81bacfcedfbac2dee4aa.png", + "aggregators": ["CoinGecko", "Rubic", "Rango", "Ondo"], + "occurrences": 4, + "rwaData": { + "market": { + "nextOpen": "2026-05-19T13:31:00.000Z", + "nextClose": "2026-05-18T19:59:00.000Z" + }, + "nextPause": { + "start": null, + "end": null + }, + "ticker": "INCE", + "instrumentType": "stock" + } + }, + "0x4d3442d884202584f1729bca20db05472b886b52": { + "address": "0x4d3442d884202584f1729bca20db05472b886b52", + "symbol": "NOCON", + "decimals": 18, + "name": "Northrop Grumman (Ondo Tokenized)", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x4d3442d884202584f1729bca20db05472b886b52.png", + "aggregators": ["CoinGecko", "Rubic", "Rango", "Ondo"], + "occurrences": 4, + "rwaData": { + "market": { + "nextOpen": "2026-05-18T20:01:00.000Z", + "nextClose": "2026-05-18T19:59:00.000Z" + }, + "nextPause": { + "start": null, + "end": null + }, + "ticker": "NOC", + "instrumentType": "stock" + } + }, + "0x82e07c1017032cfd889b1ca81ebe722c4d4de825": { + "address": "0x82e07c1017032cfd889b1ca81ebe722c4d4de825", + "symbol": "QUBTON", + "decimals": 18, + "name": "Quantum Computing (Ondo Tokenized)", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x82e07c1017032cfd889b1ca81ebe722c4d4de825.png", + "aggregators": ["CoinGecko", "Rubic", "Rango", "Ondo"], + "occurrences": 4, + "rwaData": { + "market": { + "nextOpen": "2026-05-19T00:05:00.000Z", + "nextClose": "2026-05-18T19:59:00.000Z" + }, + "nextPause": { + "start": null, + "end": null + }, + "ticker": "QUBT", + "instrumentType": "stock" + } + }, + "0x23e39d94807a8bb7e3f8294b4911d04ee26dce39": { + "address": "0x23e39d94807a8bb7e3f8294b4911d04ee26dce39", + "symbol": "RDWON", + "decimals": 18, + "name": "Redwire (Ondo Tokenized)", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x23e39d94807a8bb7e3f8294b4911d04ee26dce39.png", + "aggregators": ["CoinGecko", "Rubic", "Rango", "Ondo"], + "occurrences": 4, + "rwaData": { + "market": { + "nextOpen": "2026-05-18T20:01:00.000Z", + "nextClose": "2026-05-18T19:59:00.000Z" + }, + "nextPause": { + "start": null, + "end": null + }, + "ticker": "RDW", + "instrumentType": "stock" + } + }, + "0x8755c5c39b1aa9053a83ac731242a2cf4d04b0fe": { + "address": "0x8755c5c39b1aa9053a83ac731242a2cf4d04b0fe", + "symbol": "SEDGON", + "decimals": 18, + "name": "SolarEdge Technologies (Ondo Tokenized)", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x8755c5c39b1aa9053a83ac731242a2cf4d04b0fe.png", + "aggregators": ["CoinGecko", "Rubic", "Rango", "Ondo"], + "occurrences": 4, + "rwaData": { + "market": { + "nextOpen": "2026-05-19T13:31:00.000Z", + "nextClose": "2026-05-18T19:59:00.000Z" + }, + "nextPause": { + "start": null, + "end": null + }, + "ticker": "SEDG", + "instrumentType": "stock" + } + }, + "0xf15b8f7465b92799f6ee440f86b3cab5a4dbc65a": { + "address": "0xf15b8f7465b92799f6ee440f86b3cab5a4dbc65a", + "symbol": "SCCOON", + "decimals": 18, + "name": "Southern Copper (Ondo Tokenized)", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xf15b8f7465b92799f6ee440f86b3cab5a4dbc65a.png", + "aggregators": ["CoinGecko", "Rubic", "Rango", "Ondo"], + "occurrences": 4, + "rwaData": { + "market": { + "nextOpen": "2026-05-18T20:01:00.000Z", + "nextClose": "2026-05-18T19:59:00.000Z" + }, + "nextPause": { + "start": null, + "end": null + }, + "ticker": "SCCO", + "instrumentType": "stock" + } + }, + "0xfe9aa194e3c4604f3872f220eb41c33a287fcd90": { + "address": "0xfe9aa194e3c4604f3872f220eb41c33a287fcd90", + "symbol": "UNPON", + "decimals": 18, + "name": "Union Pacific Corporation (Ondo Tokenized)", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xfe9aa194e3c4604f3872f220eb41c33a287fcd90.png", + "aggregators": ["CoinGecko", "Rubic", "Rango", "Ondo"], + "occurrences": 4, + "rwaData": { + "market": { + "nextOpen": "2026-05-18T20:01:00.000Z", + "nextClose": "2026-05-18T19:59:00.000Z" + }, + "nextPause": { + "start": "2026-05-28T23:52:00.000Z", + "end": "2026-05-29T00:12:00.000Z" + }, + "ticker": "UNP", + "instrumentType": "stock" + } + }, + "0x31d6011023d6c7695efc29bb016830f3f36de40a": { + "address": "0x31d6011023d6c7695efc29bb016830f3f36de40a", + "symbol": "OIHON", + "decimals": 18, + "name": "VanEck Oil Services ETF (Ondo Tokenized)", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x31d6011023d6c7695efc29bb016830f3f36de40a.png", + "aggregators": ["CoinGecko", "Rubic", "Rango", "Ondo"], + "occurrences": 4, + "rwaData": { + "market": { + "nextOpen": "2026-05-18T20:01:00.000Z", + "nextClose": "2026-05-18T19:59:00.000Z" + }, + "nextPause": { + "start": null, + "end": null + }, + "ticker": "OIH", + "instrumentType": "stock" + } + }, + "0x3ec23f52f6573fc0587a0631dd8c3b107f6bcb35": { + "address": "0x3ec23f52f6573fc0587a0631dd8c3b107f6bcb35", + "symbol": "PPLTON", + "decimals": 18, + "name": "abrdn Physical Platinum Shares ETF (Ondo Tokenized)", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x3ec23f52f6573fc0587a0631dd8c3b107f6bcb35.png", + "aggregators": ["CoinGecko", "Rubic", "Rango", "Ondo"], + "occurrences": 4, + "rwaData": { + "market": { + "nextOpen": "2026-05-18T20:01:00.000Z", + "nextClose": "2026-05-18T19:59:00.000Z" + }, + "nextPause": { + "start": "2026-05-17T23:50:00.000Z", + "end": "2026-05-18T17:00:00.000Z" + }, + "ticker": "PPLT", + "instrumentType": "stock" + } + }, + "0x45abf29515bc23f8c0ed2a06584444ce473a75fb": { + "address": "0x45abf29515bc23f8c0ed2a06584444ce473a75fb", + "symbol": "ASTSON", + "decimals": 18, + "name": "AST SpaceMobile (Ondo Tokenized)", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x45abf29515bc23f8c0ed2a06584444ce473a75fb.png", + "aggregators": ["CoinGecko", "Rubic", "Rango", "Ondo"], + "occurrences": 4, + "rwaData": { + "market": { + "nextOpen": "2026-05-18T20:01:00.000Z", + "nextClose": "2026-05-18T19:59:00.000Z" + }, + "nextPause": { + "start": null, + "end": null + }, + "ticker": "ASTS", + "instrumentType": "stock" + } + }, + "0x812fc2943371c952c6c8daf99fe665eb0e40cd27": { + "address": "0x812fc2943371c952c6c8daf99fe665eb0e40cd27", + "symbol": "CAPRON", + "decimals": 18, + "name": "Capricor Therapeutics (Ondo Tokenized)", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x812fc2943371c952c6c8daf99fe665eb0e40cd27.png", + "aggregators": ["CoinGecko", "Rubic", "Rango", "Ondo"], + "occurrences": 4, + "rwaData": { + "market": { + "nextOpen": "2026-05-19T13:31:00.000Z", + "nextClose": "2026-05-18T19:59:00.000Z" + }, + "nextPause": { + "start": null, + "end": null + }, + "ticker": "CAPR", + "instrumentType": "stock" + } + }, + "0x240eb4859b4537d250cf784cc758c404da5fe4bd": { + "address": "0x240eb4859b4537d250cf784cc758c404da5fe4bd", + "symbol": "FLHYON", + "decimals": 18, + "name": "Franklin High Yield Corporate ETF (Ondo Tokenized)", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x240eb4859b4537d250cf784cc758c404da5fe4bd.png", + "aggregators": ["CoinGecko", "Rubic", "Rango", "Ondo"], + "occurrences": 4, + "rwaData": { + "market": { + "nextOpen": "2026-05-19T13:31:00.000Z", + "nextClose": "2026-05-18T19:59:00.000Z" + }, + "nextPause": { + "start": null, + "end": null + }, + "ticker": "FLHY", + "instrumentType": "stock" + } + }, + "0x48187890d16aee64798e02c5bed510f4db5694a9": { + "address": "0x48187890d16aee64798e02c5bed510f4db5694a9", + "symbol": "FLQLON", + "decimals": 18, + "name": "Franklin US Large Cap Multifactor Index ETF (Ondo Tokenized)", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x48187890d16aee64798e02c5bed510f4db5694a9.png", + "aggregators": ["CoinGecko", "Rubic", "Rango", "Ondo"], + "occurrences": 4, + "rwaData": { + "market": { + "nextOpen": "2026-05-19T13:31:00.000Z", + "nextClose": "2026-05-18T19:59:00.000Z" + }, + "nextPause": { + "start": null, + "end": null + }, + "ticker": "FLQL", + "instrumentType": "stock" + } + }, + "0xe3b17e6d290a0f28bd32af4064637057627004d5": { + "address": "0xe3b17e6d290a0f28bd32af4064637057627004d5", + "symbol": "FCXON", + "decimals": 18, + "name": "Freeport-McMoRan (Ondo Tokenized)", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xe3b17e6d290a0f28bd32af4064637057627004d5.png", + "aggregators": ["CoinGecko", "Rubic", "Rango", "Ondo"], + "occurrences": 4, + "rwaData": { + "market": { + "nextOpen": "2026-05-18T20:01:00.000Z", + "nextClose": "2026-05-18T19:59:00.000Z" + }, + "nextPause": { + "start": null, + "end": null + }, + "ticker": "FCX", + "instrumentType": "stock" + } + }, + "0xf98b89825233808cd37706a53d2b4ae3e359d442": { + "address": "0xf98b89825233808cd37706a53d2b4ae3e359d442", + "symbol": "GLXYON", + "decimals": 18, + "name": "Galaxy Digital (Ondo Tokenized)", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xf98b89825233808cd37706a53d2b4ae3e359d442.png", + "aggregators": ["CoinGecko", "Rubic", "Rango", "Ondo"], + "occurrences": 4, + "rwaData": { + "market": { + "nextOpen": "2026-05-19T00:05:00.000Z", + "nextClose": "2026-05-18T19:59:00.000Z" + }, + "nextPause": { + "start": null, + "end": null + }, + "ticker": "GLXY", + "instrumentType": "stock" + } + }, + "0xc1fdbed7dac39cae2ccc0748f7a80dc446f6a594": { + "address": "0xc1fdbed7dac39cae2ccc0748f7a80dc446f6a594", + "symbol": "TRYB", + "decimals": 6, + "name": "BiLira", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xc1fdbed7dac39cae2ccc0748f7a80dc446f6a594.png", + "aggregators": [ + "PancakeCoinMarketCap", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 4 + }, + "0x1f534d2b1ee2933f1fdf8e4b63a44b2249d77eaf": { + "address": "0x1f534d2b1ee2933f1fdf8e4b63a44b2249d77eaf", + "symbol": "ZERO", + "decimals": 18, + "name": "0.exchange", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x1f534d2b1ee2933f1fdf8e4b63a44b2249d77eaf.png", + "aggregators": [ + "PancakeCoinMarketCap", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 4 + }, + "0xa5342d72d04c133180f376753f90a4b2eee29bb3": { + "address": "0xa5342d72d04c133180f376753f90a4b2eee29bb3", + "symbol": "DMC", + "decimals": 18, + "name": "Decentralized Mining Exchange", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xa5342d72d04c133180f376753f90a4b2eee29bb3.png", + "aggregators": ["PancakeCoinGecko", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0xd38c1b7b95d359978996e01b8a85286f65b3c011": { + "address": "0xd38c1b7b95d359978996e01b8a85286f65b3c011", + "symbol": "RAGE", + "decimals": 18, + "name": "Rage.Fan", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xd38c1b7b95d359978996e01b8a85286f65b3c011.png", + "aggregators": [ + "PancakeCoinMarketCap", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 4 + }, + "0x8038b1f3eb4f70436569618530ac96b439d67bae": { + "address": "0x8038b1f3eb4f70436569618530ac96b439d67bae", + "symbol": "MCT", + "decimals": 18, + "name": "MicroTuber", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x8038b1f3eb4f70436569618530ac96b439d67bae.png", + "aggregators": [ + "PancakeCoinMarketCap", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 4 + }, + "0x1b41a1ba7722e6431b1a782327dbe466fe1ee9f9": { + "address": "0x1b41a1ba7722e6431b1a782327dbe466fe1ee9f9", + "symbol": "KFT", + "decimals": 18, + "name": "Knit Finance", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x1b41a1ba7722e6431b1a782327dbe466fe1ee9f9.png", + "aggregators": [ + "PancakeCoinMarketCap", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 4 + }, + "0x23b8683ff98f9e4781552dfe6f12aa32814924e8": { + "address": "0x23b8683ff98f9e4781552dfe6f12aa32814924e8", + "symbol": "JEUR", + "decimals": 18, + "name": "Jarvis Synthetic Euro", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x23b8683ff98f9e4781552dfe6f12aa32814924e8.png", + "aggregators": [ + "PancakeCoinMarketCap", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 4 + }, + "0xa8cd6e4bf45724d3ac27f9e31e47ba4e399a7b52": { + "address": "0xa8cd6e4bf45724d3ac27f9e31e47ba4e399a7b52", + "symbol": "TAROT", + "decimals": 18, + "name": "Tarot V1", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xa8cd6e4bf45724d3ac27f9e31e47ba4e399a7b52.png", + "aggregators": ["PancakeCoinGecko", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0xe7f72bc0252ca7b16dbb72eeee1afcdb2429f2dd": { + "address": "0xe7f72bc0252ca7b16dbb72eeee1afcdb2429f2dd", + "symbol": "NFTL", + "decimals": 18, + "name": "NFTLaunch", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xe7f72bc0252ca7b16dbb72eeee1afcdb2429f2dd.png", + "aggregators": [ + "PancakeCoinMarketCap", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 4 + }, + "0x82190d28e710ea9c029d009fad951c6f1d803bb3": { + "address": "0x82190d28e710ea9c029d009fad951c6f1d803bb3", + "symbol": "LIFE", + "decimals": 18, + "name": "Life Crypto", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x82190d28e710ea9c029d009fad951c6f1d803bb3.png", + "aggregators": [ + "PancakeCoinMarketCap", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 4 + }, + "0x43f5b29d63cedc5a7c1724dbb1d698fde05ada21": { + "address": "0x43f5b29d63cedc5a7c1724dbb1d698fde05ada21", + "symbol": "FODL", + "decimals": 18, + "name": "Fodl Finance", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x43f5b29d63cedc5a7c1724dbb1d698fde05ada21.png", + "aggregators": [ + "PancakeCoinMarketCap", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 4 + }, + "0xaf6162dc717cfc8818efc8d6f46a41cf7042fcba": { + "address": "0xaf6162dc717cfc8818efc8d6f46a41cf7042fcba", + "symbol": "USV", + "decimals": 9, + "name": "Atlas USV", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xaf6162dc717cfc8818efc8d6f46a41cf7042fcba.png", + "aggregators": [ + "PancakeCoinMarketCap", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 4 + }, + "0xe336a772532650bc82828e9620dd0d5a3b78bfe8": { + "address": "0xe336a772532650bc82828e9620dd0d5a3b78bfe8", + "symbol": "DGMV", + "decimals": 18, + "name": "DigiMetaverse", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xe336a772532650bc82828e9620dd0d5a3b78bfe8.png", + "aggregators": [ + "PancakeCoinMarketCap", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 4 + }, + "0x8ae619d633cce175a2fbcfa1cea119ddc80f1342": { + "address": "0x8ae619d633cce175a2fbcfa1cea119ddc80f1342", + "symbol": "POLYPAD", + "decimals": 18, + "name": "PolyPad", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x8ae619d633cce175a2fbcfa1cea119ddc80f1342.png", + "aggregators": [ + "PancakeCoinMarketCap", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 4 + }, + "0xd1738eb733a636d1b8665f48bc8a24da889c2562": { + "address": "0xd1738eb733a636d1b8665f48bc8a24da889c2562", + "symbol": "FPIS", + "decimals": 18, + "name": "Frax Price Index Share", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xd1738eb733a636d1b8665f48bc8a24da889c2562.png", + "aggregators": [ + "PancakeCoinMarketCap", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 4 + }, + "0xb7bda6a89e724f63572ce68fddc1a6d1d5d24bcf": { + "address": "0xb7bda6a89e724f63572ce68fddc1a6d1d5d24bcf", + "symbol": "OGZ", + "decimals": 18, + "name": "OGzClub", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xb7bda6a89e724f63572ce68fddc1a6d1d5d24bcf.png", + "aggregators": [ + "PancakeCoinMarketCap", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 4 + }, + "0x71cb7ef7980c44dfbbe5744973c0587764116d26": { + "address": "0x71cb7ef7980c44dfbbe5744973c0587764116d26", + "symbol": "WELLE", + "decimals": 18, + "name": "Welle", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x71cb7ef7980c44dfbbe5744973c0587764116d26.png", + "aggregators": ["PancakeCoinGecko", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0x34dce75a3d1910cc9d188aa5a75fb9addcae0fcc": { + "address": "0x34dce75a3d1910cc9d188aa5a75fb9addcae0fcc", + "symbol": "XV", + "decimals": 18, + "name": "XV", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x34dce75a3d1910cc9d188aa5a75fb9addcae0fcc.png", + "aggregators": [ + "PancakeCoinMarketCap", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 4 + }, + "0xe406281569308b8dced15e95894052272900e332": { + "address": "0xe406281569308b8dced15e95894052272900e332", + "symbol": "$SKOL", + "decimals": 18, + "name": "Skol", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xe406281569308b8dced15e95894052272900e332.png", + "aggregators": ["PancakeCoinGecko", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0xc7806943663158d68740a14ab0b270bd60bde87d": { + "address": "0xc7806943663158d68740a14ab0b270bd60bde87d", + "symbol": "URAON", + "decimals": 18, + "name": "Global X Uranium ETF (Ondo Tokenized)", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xc7806943663158d68740a14ab0b270bd60bde87d.png", + "aggregators": ["CoinGecko", "Rubic", "Rango", "Ondo"], + "occurrences": 4, + "rwaData": { + "market": { + "nextOpen": "2026-05-18T20:01:00.000Z", + "nextClose": "2026-05-18T19:59:00.000Z" + }, + "nextPause": { + "start": null, + "end": null + }, + "ticker": "URA", + "instrumentType": "stock" + } + }, + "0x6f28cb07790c1049ecd7482d09fd13b977b47201": { + "address": "0x6f28cb07790c1049ecd7482d09fd13b977b47201", + "symbol": "PAVEON", + "decimals": 18, + "name": "Global X US Infrastructure Development ETF (Ondo Tokenized)", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x6f28cb07790c1049ecd7482d09fd13b977b47201.png", + "aggregators": ["CoinGecko", "Rubic", "Rango", "Ondo"], + "occurrences": 4, + "rwaData": { + "market": { + "nextOpen": "2026-05-18T20:01:00.000Z", + "nextClose": "2026-05-18T19:59:00.000Z" + }, + "nextPause": { + "start": null, + "end": null + }, + "ticker": "PAVE", + "instrumentType": "stock" + } + }, + "0xa3b7b7cfeb023a6c4f444f5ca9a3fc85809ece15": { + "address": "0xa3b7b7cfeb023a6c4f444f5ca9a3fc85809ece15", + "symbol": "LUNRON", + "decimals": 18, + "name": "Intuitive Machines (Ondo Tokenized)", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xa3b7b7cfeb023a6c4f444f5ca9a3fc85809ece15.png", + "aggregators": ["CoinGecko", "Rubic", "Rango", "Ondo"], + "occurrences": 4, + "rwaData": { + "market": { + "nextOpen": "2026-05-18T20:01:00.000Z", + "nextClose": "2026-05-18T19:59:00.000Z" + }, + "nextPause": { + "start": null, + "end": null + }, + "ticker": "LUNR", + "instrumentType": "stock" + } + }, + "0x68b07cef227cea1b2b6683921c8c825cd5c69ec7": { + "address": "0x68b07cef227cea1b2b6683921c8c825cd5c69ec7", + "symbol": "IBITON", + "decimals": 18, + "name": "iShares Bitcoin Trust (Ondo Tokenized)", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x68b07cef227cea1b2b6683921c8c825cd5c69ec7.png", + "aggregators": ["CoinGecko", "Rubic", "Rango", "Ondo"], + "occurrences": 4, + "rwaData": { + "market": { + "nextOpen": "2026-05-18T20:01:00.000Z", + "nextClose": "2026-05-18T19:59:00.000Z" + }, + "nextPause": { + "start": null, + "end": null + }, + "ticker": "IBIT", + "instrumentType": "stock" + } + }, + "0x9b8e987e6fec8cf1380c4dca7071e2c7853aeea1": { + "address": "0x9b8e987e6fec8cf1380c4dca7071e2c7853aeea1", + "symbol": "FXION", + "decimals": 18, + "name": "iShares China Large-Cap ETF (Ondo Tokenized)", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x9b8e987e6fec8cf1380c4dca7071e2c7853aeea1.png", + "aggregators": ["CoinGecko", "Rubic", "Rango", "Ondo"], + "occurrences": 4, + "rwaData": { + "market": { + "nextOpen": "2026-05-18T20:01:00.000Z", + "nextClose": "2026-05-18T19:59:00.000Z" + }, + "nextPause": { + "start": null, + "end": null + }, + "ticker": "FXI", + "instrumentType": "stock" + } + }, + "0x551f8db0da800c910e12cf991eac306714481685": { + "address": "0x551f8db0da800c910e12cf991eac306714481685", + "symbol": "ECHON", + "decimals": 18, + "name": "iShares MSCI Chile ETF (Ondo Tokenized)", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x551f8db0da800c910e12cf991eac306714481685.png", + "aggregators": ["CoinGecko", "Rubic", "Rango", "Ondo"], + "occurrences": 4, + "rwaData": { + "market": { + "nextOpen": "2026-05-19T08:01:00.000Z", + "nextClose": "2026-05-18T19:59:00.000Z" + }, + "nextPause": { + "start": null, + "end": null + }, + "ticker": "ECH", + "instrumentType": "stock" + } + }, + "0x88b90f45bd6a4f97f7d85d280ed64a40880e4935": { + "address": "0x88b90f45bd6a4f97f7d85d280ed64a40880e4935", + "symbol": "ITAON", + "decimals": 18, + "name": "iShares US Aerospace and Defense ETF (Ondo Tokenized)", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x88b90f45bd6a4f97f7d85d280ed64a40880e4935.png", + "aggregators": ["CoinGecko", "Rubic", "Rango", "Ondo"], + "occurrences": 4, + "rwaData": { + "market": { + "nextOpen": "2026-05-18T20:01:00.000Z", + "nextClose": "2026-05-18T19:59:00.000Z" + }, + "nextPause": { + "start": null, + "end": null + }, + "ticker": "ITA", + "instrumentType": "stock" + } + }, + "0xee268780473e7a0e47bac41547c6e01512555a16": { + "address": "0xee268780473e7a0e47bac41547c6e01512555a16", + "symbol": "NBISON", + "decimals": 18, + "name": "Nebius Group (Ondo Tokenized)", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xee268780473e7a0e47bac41547c6e01512555a16.png", + "aggregators": ["CoinGecko", "Rubic", "Rango", "Ondo"], + "occurrences": 4, + "rwaData": { + "market": { + "nextOpen": "2026-05-18T20:01:00.000Z", + "nextClose": "2026-05-18T19:59:00.000Z" + }, + "nextPause": { + "start": null, + "end": null + }, + "ticker": "NBIS", + "instrumentType": "stock" + } + }, + "0x5e63232993789601ce362e0240a299c1dfcbfbec": { + "address": "0x5e63232993789601ce362e0240a299c1dfcbfbec", + "symbol": "NEMON", + "decimals": 18, + "name": "Newmont (Ondo Tokenized)", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x5e63232993789601ce362e0240a299c1dfcbfbec.png", + "aggregators": ["CoinGecko", "Rubic", "Rango", "Ondo"], + "occurrences": 4, + "rwaData": { + "market": { + "nextOpen": "2026-05-18T20:01:00.000Z", + "nextClose": "2026-05-18T19:59:00.000Z" + }, + "nextPause": { + "start": "2026-05-26T23:52:00.000Z", + "end": "2026-05-27T00:12:00.000Z" + }, + "ticker": "NEM", + "instrumentType": "stock" + } + }, + "0xb4d695569236273745b4cd54b539b1b9cc1513af": { + "address": "0xb4d695569236273745b4cd54b539b1b9cc1513af", + "symbol": "RKLBON", + "decimals": 18, + "name": "Rocket Lab (Ondo Tokenized)", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xb4d695569236273745b4cd54b539b1b9cc1513af.png", + "aggregators": ["CoinGecko", "Rubic", "Rango", "Ondo"], + "occurrences": 4, + "rwaData": { + "market": { + "nextOpen": "2026-05-18T20:01:00.000Z", + "nextClose": "2026-05-18T19:59:00.000Z" + }, + "nextPause": { + "start": null, + "end": null + }, + "ticker": "RKLB", + "instrumentType": "stock" + } + }, + "0x966ebcba3c51e81f5cf159a1eabefd2327ab5e8d": { + "address": "0x966ebcba3c51e81f5cf159a1eabefd2327ab5e8d", + "symbol": "STXON", + "decimals": 18, + "name": "Seagate (Ondo Tokenized)", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x966ebcba3c51e81f5cf159a1eabefd2327ab5e8d.png", + "aggregators": ["CoinGecko", "Rubic", "Rango", "Ondo"], + "occurrences": 4, + "rwaData": { + "market": { + "nextOpen": "2026-05-18T20:01:00.000Z", + "nextClose": "2026-05-18T19:59:00.000Z" + }, + "nextPause": { + "start": "2026-06-23T23:52:00.000Z", + "end": "2026-06-24T00:12:00.000Z" + }, + "ticker": "STX", + "instrumentType": "stock" + } + }, + "0xa5351c9bf08055e03642b6b8649a0f7e895501bf": { + "address": "0xa5351c9bf08055e03642b6b8649a0f7e895501bf", + "symbol": "UNGON", + "decimals": 18, + "name": "US Natural Gas Fund (Ondo Tokenized)", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xa5351c9bf08055e03642b6b8649a0f7e895501bf.png", + "aggregators": ["CoinGecko", "Rubic", "Rango", "Ondo"], + "occurrences": 4, + "rwaData": { + "market": { + "nextOpen": "2026-05-18T20:01:00.000Z", + "nextClose": "2026-05-18T19:59:00.000Z" + }, + "nextPause": { + "start": null, + "end": null + }, + "ticker": "UNG", + "instrumentType": "stock" + } + }, + "0x8c9979dc208f74a5602c38691aa920f121e2f863": { + "address": "0x8c9979dc208f74a5602c38691aa920f121e2f863", + "symbol": "VRTXON", + "decimals": 18, + "name": "Vertex Pharmaceuticals (Ondo Tokenized)", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x8c9979dc208f74a5602c38691aa920f121e2f863.png", + "aggregators": ["CoinGecko", "Rubic", "Rango", "Ondo"], + "occurrences": 4, + "rwaData": { + "market": { + "nextOpen": "2026-05-18T20:01:00.000Z", + "nextClose": "2026-05-18T19:59:00.000Z" + }, + "nextPause": { + "start": null, + "end": null + }, + "ticker": "VRTX", + "instrumentType": "stock" + } + }, + "0x1d2eaaf0ae00382893aa4318bd88d1cd0e9b858a": { + "address": "0x1d2eaaf0ae00382893aa4318bd88d1cd0e9b858a", + "symbol": "VFSON", + "decimals": 18, + "name": "VinFast Auto (Ondo Tokenized)", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x1d2eaaf0ae00382893aa4318bd88d1cd0e9b858a.png", + "aggregators": ["CoinGecko", "Rubic", "Rango", "Ondo"], + "occurrences": 4, + "rwaData": { + "market": { + "nextOpen": "2026-05-19T13:31:00.000Z", + "nextClose": "2026-05-18T19:59:00.000Z" + }, + "nextPause": { + "start": "2026-06-08T09:00:00.000Z", + "end": "2026-06-08T23:30:00.000Z" + }, + "ticker": "VFS", + "instrumentType": "stock" + } + }, + "0xce0466bae0e867239719dc386ca84b1f3efe6914": { + "address": "0xce0466bae0e867239719dc386ca84b1f3efe6914", + "symbol": "WMON", + "decimals": 18, + "name": "Waste Management (Ondo Tokenized)", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xce0466bae0e867239719dc386ca84b1f3efe6914.png", + "aggregators": ["CoinGecko", "Rubic", "Rango", "Ondo"], + "occurrences": 4, + "rwaData": { + "market": { + "nextOpen": "2026-05-18T20:01:00.000Z", + "nextClose": "2026-05-18T19:59:00.000Z" + }, + "nextPause": { + "start": "2026-06-04T23:52:00.000Z", + "end": "2026-06-05T00:12:00.000Z" + }, + "ticker": "WM", + "instrumentType": "stock" + } + }, + "0xceb29848d04ad3cb46e1fe8e45b82ffac39d797d": { + "address": "0xceb29848d04ad3cb46e1fe8e45b82ffac39d797d", + "symbol": "WDCON", + "decimals": 18, + "name": "Western Digital (Ondo Tokenized)", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xceb29848d04ad3cb46e1fe8e45b82ffac39d797d.png", + "aggregators": ["CoinGecko", "Rubic", "Rango", "Ondo"], + "occurrences": 4, + "rwaData": { + "market": { + "nextOpen": "2026-05-18T20:01:00.000Z", + "nextClose": "2026-05-18T19:59:00.000Z" + }, + "nextPause": { + "start": "2026-06-04T23:52:00.000Z", + "end": "2026-06-05T00:12:00.000Z" + }, + "ticker": "WDC", + "instrumentType": "stock" + } + }, + "0x15580092796f69825cff4738cac55d05d41eaa42": { + "address": "0x15580092796f69825cff4738cac55d05d41eaa42", + "symbol": "GLTRON", + "decimals": 18, + "name": "abrdn Physical Precious Metals Basket Shares ETF (Ondo Tokenized)", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x15580092796f69825cff4738cac55d05d41eaa42.png", + "aggregators": ["CoinGecko", "Rubic", "Rango", "Ondo"], + "occurrences": 4, + "rwaData": { + "market": { + "nextOpen": "2026-05-18T20:01:00.000Z", + "nextClose": "2026-05-18T19:59:00.000Z" + }, + "nextPause": { + "start": null, + "end": null + }, + "ticker": "GLTR", + "instrumentType": "stock" + } + }, + "0x18de24acb876c0b8392d9c55583bb21c0355980b": { + "address": "0x18de24acb876c0b8392d9c55583bb21c0355980b", + "symbol": "APLDON", + "decimals": 18, + "name": "Applied Digital (Ondo Tokenized)", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x18de24acb876c0b8392d9c55583bb21c0355980b.png", + "aggregators": ["CoinGecko", "Rubic", "Rango", "Ondo"], + "occurrences": 4, + "rwaData": { + "market": { + "nextOpen": "2026-05-18T20:01:00.000Z", + "nextClose": "2026-05-18T19:59:00.000Z" + }, + "nextPause": { + "start": null, + "end": null + }, + "ticker": "APLD", + "instrumentType": "stock" + } + }, + "0x5a9d924fc336a5ec8cf3b1909aa660533b50b015": { + "address": "0x5a9d924fc336a5ec8cf3b1909aa660533b50b015", + "symbol": "ENLVON", + "decimals": 18, + "name": "Enlivex Therapeutics (Ondo Tokenized)", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x5a9d924fc336a5ec8cf3b1909aa660533b50b015.png", + "aggregators": ["CoinGecko", "Rubic", "Rango", "Ondo"], + "occurrences": 4, + "rwaData": { + "market": { + "nextOpen": "2026-05-19T13:31:00.000Z", + "nextClose": "2026-05-18T19:59:00.000Z" + }, + "nextPause": { + "start": "2026-05-29T09:00:00.000Z", + "end": "2026-05-29T23:30:00.000Z" + }, + "ticker": "ENLV", + "instrumentType": "stock" + } + }, + "0xea130432a9fee9ca1a7eda84028650d38bd0e232": { + "address": "0xea130432a9fee9ca1a7eda84028650d38bd0e232", + "symbol": "FFOGON", + "decimals": 18, + "name": "Franklin Focused Growth ETF (Ondo Tokenized)", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xea130432a9fee9ca1a7eda84028650d38bd0e232.png", + "aggregators": ["CoinGecko", "Rubic", "Rango", "Ondo"], + "occurrences": 4, + "rwaData": { + "market": { + "nextOpen": "2026-05-19T13:31:00.000Z", + "nextClose": "2026-05-18T19:59:00.000Z" + }, + "nextPause": { + "start": null, + "end": null + }, + "ticker": "FFOG", + "instrumentType": "stock" + } + }, + "0xee0d57462f20434030b8262204c00c0ea0399c41": { + "address": "0xee0d57462f20434030b8262204c00c0ea0399c41", + "symbol": "FGDLON", + "decimals": 18, + "name": "Franklin Responsibly Sourced Gold ETF (Ondo Tokenized)", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xee0d57462f20434030b8262204c00c0ea0399c41.png", + "aggregators": ["CoinGecko", "Rubic", "Rango", "Ondo"], + "occurrences": 4, + "rwaData": { + "market": { + "nextOpen": "2026-05-19T08:01:00.000Z", + "nextClose": "2026-05-18T19:59:00.000Z" + }, + "nextPause": { + "start": null, + "end": null + }, + "ticker": "FGDL", + "instrumentType": "stock" + } + }, + "0x2aea1d415d45ccf3eabe565d45dcaf4ea2035b9c": { + "address": "0x2aea1d415d45ccf3eabe565d45dcaf4ea2035b9c", + "symbol": "GEVON", + "decimals": 18, + "name": "GE Vernova (Ondo Tokenized)", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x2aea1d415d45ccf3eabe565d45dcaf4ea2035b9c.png", + "aggregators": ["CoinGecko", "Rubic", "Rango", "Ondo"], + "occurrences": 4, + "rwaData": { + "market": { + "nextOpen": "2026-05-18T20:01:00.000Z", + "nextClose": "2026-05-18T19:59:00.000Z" + }, + "nextPause": { + "start": null, + "end": null + }, + "ticker": "GEV", + "instrumentType": "stock" + } + }, + "0xaf6bd11a6f8f9c44b9d18f5fa116e403db599f8e": { + "address": "0xaf6bd11a6f8f9c44b9d18f5fa116e403db599f8e", + "symbol": "ALIX", + "decimals": 18, + "name": "AlinX", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xaf6bd11a6f8f9c44b9d18f5fa116e403db599f8e.png", + "aggregators": ["PancakeTop100", "LiFi", "Rubic"], + "occurrences": 3 + }, + "0x0e8d5504bf54d9e44260f8d153ecd5412130cabb": { + "address": "0x0e8d5504bf54d9e44260f8d153ecd5412130cabb", + "symbol": "UNCL", + "decimals": 18, + "name": "UNCL on xDai on BSC", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x0e8d5504bf54d9e44260f8d153ecd5412130cabb.png", + "aggregators": ["PancakeTop100", "LiFi", "Rubic", "Rango"], + "occurrences": 4 + }, + "0x22a213852cee93eb6d41601133414d180c5684c2": { + "address": "0x22a213852cee93eb6d41601133414d180c5684c2", + "symbol": "0XMR", + "decimals": 18, + "name": "0xMonero", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x22a213852cee93eb6d41601133414d180c5684c2.png", + "aggregators": ["PancakeCoinGecko", "Socket", "Rubic", "Rango"], + "occurrences": 4 + }, + "0xf43c9b40c9361b301019c98fb535affb3ec6c673": { + "address": "0xf43c9b40c9361b301019c98fb535affb3ec6c673", + "symbol": "1MDC", + "decimals": 18, + "name": "1MDC", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xf43c9b40c9361b301019c98fb535affb3ec6c673.png", + "aggregators": [ + "PancakeCoinMarketCap", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 4 + }, + "0x012a6a39eec345a0ea2b994b17875e721d17ee45": { + "address": "0x012a6a39eec345a0ea2b994b17875e721d17ee45", + "symbol": "1RT", + "decimals": 18, + "name": "1Reward Token", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x012a6a39eec345a0ea2b994b17875e721d17ee45.png", + "aggregators": ["PancakeCoinGecko", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0x1a515bf4e35aa2df67109281de6b3b00ec37675e": { + "address": "0x1a515bf4e35aa2df67109281de6b3b00ec37675e", + "symbol": "2GCC", + "decimals": 18, + "name": "2G Carbon Coin", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x1a515bf4e35aa2df67109281de6b3b00ec37675e.png", + "aggregators": [ + "PancakeCoinMarketCap", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 4 + }, + "0x99e6ca7e6c5c5aea22b4a992eb6895bc6d433298": { + "address": "0x99e6ca7e6c5c5aea22b4a992eb6895bc6d433298", + "symbol": "AA", + "decimals": 18, + "name": "ALVA", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x99e6ca7e6c5c5aea22b4a992eb6895bc6d433298.png", + "aggregators": [ + "PancakeCoinMarketCap", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 4 + }, + "0xcb7bf0218ccbf340c6676706c60a41c1e9cbdd44": { + "address": "0xcb7bf0218ccbf340c6676706c60a41c1e9cbdd44", + "symbol": "ACE", + "decimals": 18, + "name": "Apollo Caps", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xcb7bf0218ccbf340c6676706c60a41c1e9cbdd44.png", + "aggregators": [ + "PancakeCoinMarketCap", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 4 + }, + "0xcd392021084683803525fe5e6c00cae9c6be5774": { + "address": "0xcd392021084683803525fe5e6c00cae9c6be5774", + "symbol": "ADON", + "decimals": 18, + "name": "Adonis", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xcd392021084683803525fe5e6c00cae9c6be5774.png", + "aggregators": [ + "PancakeCoinMarketCap", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 4 + }, + "0x36f1f32c728c3f330409ec1f0928fa3ab3c8a76f": { + "address": "0x36f1f32c728c3f330409ec1f0928fa3ab3c8a76f", + "symbol": "ADR", + "decimals": 18, + "name": "Adroverse", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x36f1f32c728c3f330409ec1f0928fa3ab3c8a76f.png", + "aggregators": [ + "PancakeCoinMarketCap", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 4 + }, + "0xc8354507f0361712143efa635cce060788888888": { + "address": "0xc8354507f0361712143efa635cce060788888888", + "symbol": "AI", + "decimals": 18, + "name": "AICoin", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xc8354507f0361712143efa635cce060788888888.png", + "aggregators": [ + "PancakeCoinMarketCap", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 4 + }, + "0x1e30bbee322b3b11c60cb434a47f1605c2a99483": { + "address": "0x1e30bbee322b3b11c60cb434a47f1605c2a99483", + "symbol": "AIE", + "decimals": 18, + "name": "AIEarn", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x1e30bbee322b3b11c60cb434a47f1605c2a99483.png", + "aggregators": [ + "PancakeCoinMarketCap", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 4 + }, + "0x75d6bd84de4cbcb92495204de959f7fea6a3f89a": { + "address": "0x75d6bd84de4cbcb92495204de959f7fea6a3f89a", + "symbol": "AIMX", + "decimals": 18, + "name": "Mind Matrix", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x75d6bd84de4cbcb92495204de959f7fea6a3f89a.png", + "aggregators": [ + "PancakeCoinMarketCap", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 4 + }, + "0x8974769bcfc2715fcabcfe4341ba4fcc804abcd8": { + "address": "0x8974769bcfc2715fcabcfe4341ba4fcc804abcd8", + "symbol": "AIS", + "decimals": 18, + "name": "AI Swap", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x8974769bcfc2715fcabcfe4341ba4fcc804abcd8.png", + "aggregators": ["PancakeCoinMarketCap", "Socket", "Rubic", "Rango"], + "occurrences": 4 + }, + "0x44055f43a0dc22e77c53b16eab04e253158d6b06": { + "address": "0x44055f43a0dc22e77c53b16eab04e253158d6b06", + "symbol": "AIT", + "decimals": 18, + "name": "AI protocol", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x44055f43a0dc22e77c53b16eab04e253158d6b06.png", + "aggregators": ["PancakeCoinGecko", "Socket", "Rubic", "Rango"], + "occurrences": 4 + }, + "0x7c38870e93a1f959cb6c533eb10bbc3e438aac11": { + "address": "0x7c38870e93a1f959cb6c533eb10bbc3e438aac11", + "symbol": "ALM", + "decimals": 18, + "name": "Alium Finance", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x7c38870e93a1f959cb6c533eb10bbc3e438aac11.png", + "aggregators": [ + "PancakeCoinMarketCap", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 4 + }, + "0x9b3a01f8b4abd2e2a74597b21b7c269abf4e9f41": { + "address": "0x9b3a01f8b4abd2e2a74597b21b7c269abf4e9f41", + "symbol": "ALTB", + "decimals": 18, + "name": "Altbase", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x9b3a01f8b4abd2e2a74597b21b7c269abf4e9f41.png", + "aggregators": [ + "PancakeCoinMarketCap", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 4 + }, + "0x8929e9dbd2785e3ba16175e596cdd61520fee0d1": { + "address": "0x8929e9dbd2785e3ba16175e596cdd61520fee0d1", + "symbol": "ALTD", + "decimals": 18, + "name": "Altitude", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x8929e9dbd2785e3ba16175e596cdd61520fee0d1.png", + "aggregators": [ + "PancakeCoinMarketCap", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 4 + }, + "0x4aac18de824ec1b553dbf342829834e4ff3f7a9f": { + "address": "0x4aac18de824ec1b553dbf342829834e4ff3f7a9f", + "symbol": "ANCHOR", + "decimals": 18, + "name": "AnchorSwap", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x4aac18de824ec1b553dbf342829834e4ff3f7a9f.png", + "aggregators": [ + "PancakeCoinMarketCap", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 4 + }, + "0xa7bd657c5838472ddf85ff0797a2e6fce8fd4833": { + "address": "0xa7bd657c5838472ddf85ff0797a2e6fce8fd4833", + "symbol": "ARBI", + "decimals": 18, + "name": "ArbiPad", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xa7bd657c5838472ddf85ff0797a2e6fce8fd4833.png", + "aggregators": [ + "PancakeCoinMarketCap", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 4 + }, + "0x851f7a700c5d67db59612b871338a85526752c25": { + "address": "0x851f7a700c5d67db59612b871338a85526752c25", + "symbol": "ARGON", + "decimals": 18, + "name": "Argon", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x851f7a700c5d67db59612b871338a85526752c25.png", + "aggregators": [ + "PancakeCoinMarketCap", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 4 + }, + "0x315d6f9d775daa04bc9e36100c8a82377846dbc6": { + "address": "0x315d6f9d775daa04bc9e36100c8a82377846dbc6", + "symbol": "ATH", + "decimals": 18, + "name": "Athena DexFi", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x315d6f9d775daa04bc9e36100c8a82377846dbc6.png", + "aggregators": ["PancakeCoinMarketCap", "Socket", "Rubic", "Rango"], + "occurrences": 4 + }, + "0xbf151f63d8d1287db5fc7a3bc104a9c38124cdeb": { + "address": "0xbf151f63d8d1287db5fc7a3bc104a9c38124cdeb", + "symbol": "AVN", + "decimals": 18, + "name": "AVNRich", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xbf151f63d8d1287db5fc7a3bc104a9c38124cdeb.png", + "aggregators": [ + "PancakeCoinMarketCap", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 4 + }, + "0x14ee333538b4621a600f011e508d783ea200d60e": { + "address": "0x14ee333538b4621a600f011e508d783ea200d60e", + "symbol": "AVO", + "decimals": 18, + "name": "AVOCADO BG", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x14ee333538b4621a600f011e508d783ea200d60e.png", + "aggregators": [ + "PancakeCoinMarketCap", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 4 + }, + "0xaed8bd0608ef3cc45290a8d0e4223ef4c92dd3dc": { + "address": "0xaed8bd0608ef3cc45290a8d0e4223ef4c92dd3dc", + "symbol": "AVO", + "decimals": 18, + "name": "Avoteo", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xaed8bd0608ef3cc45290a8d0e4223ef4c92dd3dc.png", + "aggregators": [ + "PancakeCoinMarketCap", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 4 + }, + "0xbb2826ab03b6321e170f0558804f2b6488c98775": { + "address": "0xbb2826ab03b6321e170f0558804f2b6488c98775", + "symbol": "BABYBONK", + "decimals": 9, + "name": "BabyBonk", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xbb2826ab03b6321e170f0558804f2b6488c98775.png", + "aggregators": [ + "PancakeCoinMarketCap", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 4 + }, + "0x258903a8e68d5248de85cf8a0a173d9e046edd98": { + "address": "0x258903a8e68d5248de85cf8a0a173d9e046edd98", + "symbol": "BABYELON", + "decimals": 9, + "name": "Baby Elon", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x258903a8e68d5248de85cf8a0a173d9e046edd98.png", + "aggregators": [ + "PancakeCoinMarketCap", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 4 + }, + "0x88da9901b3a02fe24e498e1ed683d2310383e295": { + "address": "0x88da9901b3a02fe24e498e1ed683d2310383e295", + "symbol": "BABYGROK", + "decimals": 9, + "name": "Baby Grok", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x88da9901b3a02fe24e498e1ed683d2310383e295.png", + "aggregators": [ + "PancakeCoinMarketCap", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 4 + }, + "0x10da043d0b46e43b53b74a88ac60ccc28e2afdf8": { + "address": "0x10da043d0b46e43b53b74a88ac60ccc28e2afdf8", + "symbol": "BAI", + "decimals": 18, + "name": "BlockAI", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x10da043d0b46e43b53b74a88ac60ccc28e2afdf8.png", + "aggregators": [ + "PancakeCoinGecko", + "Socket", + "Rubic", + "Sonarwatch" + ], + "occurrences": 4 + }, + "0x3e92ce6e8929334c54ce759cf6736ea15fbfdc7f": { + "address": "0x3e92ce6e8929334c54ce759cf6736ea15fbfdc7f", + "symbol": "BAKED", + "decimals": 18, + "name": "Baked Beans Token", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x3e92ce6e8929334c54ce759cf6736ea15fbfdc7f.png", + "aggregators": ["PancakeCoinMarketCap", "Socket", "Rubic", "Rango"], + "occurrences": 4 + }, + "0xb1528a7be5a96b77de5337988ba69029ca6e2c7a": { + "address": "0xb1528a7be5a96b77de5337988ba69029ca6e2c7a", + "symbol": "BARK", + "decimals": 18, + "name": "Barking", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xb1528a7be5a96b77de5337988ba69029ca6e2c7a.png", + "aggregators": ["PancakeCoinGecko", "Socket", "Rubic", "Rango"], + "occurrences": 4 + }, + "0x16f9cc3c6f8d8006cfc0ee693cef9d76b0d44c36": { + "address": "0x16f9cc3c6f8d8006cfc0ee693cef9d76b0d44c36", + "symbol": "BB", + "decimals": 9, + "name": "Baby Bali", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x16f9cc3c6f8d8006cfc0ee693cef9d76b0d44c36.png", + "aggregators": [ + "PancakeCoinMarketCap", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 4 + }, + "0x688ec465111ed639267cb17c47e790c9cc7279c1": { + "address": "0x688ec465111ed639267cb17c47e790c9cc7279c1", + "symbol": "BB", + "decimals": 18, + "name": "BB Gaming", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x688ec465111ed639267cb17c47e790c9cc7279c1.png", + "aggregators": [ + "PancakeCoinMarketCap", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 4 + }, + "0x77776b40c3d75cb07ce54dea4b2fd1d07f865222": { + "address": "0x77776b40c3d75cb07ce54dea4b2fd1d07f865222", + "symbol": "BBUSD", + "decimals": 18, + "name": "BounceBit USD", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x77776b40c3d75cb07ce54dea4b2fd1d07f865222.png", + "aggregators": [ + "PancakeCoinMarketCap", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 4 + }, + "0x8beabaa4f025d00b4699d56a683758d692d17f20": { + "address": "0x8beabaa4f025d00b4699d56a683758d692d17f20", + "symbol": "BBYXRP", + "decimals": 9, + "name": "BabyXrp", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x8beabaa4f025d00b4699d56a683758d692d17f20.png", + "aggregators": [ + "PancakeCoinMarketCap", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 4 + }, + "0x708cb02ad77e1b245b1640cee51b3cc844bcaef4": { + "address": "0x708cb02ad77e1b245b1640cee51b3cc844bcaef4", + "symbol": "ELAND", + "decimals": 18, + "name": "Etherland", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x708cb02ad77e1b245b1640cee51b3cc844bcaef4.png", + "aggregators": [ + "PancakeCoinMarketCap", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 4 + }, + "0x7fa92c33fdfa1050256437b302832a2ed530859f": { + "address": "0x7fa92c33fdfa1050256437b302832a2ed530859f", + "symbol": "BERGERDOGE", + "decimals": 9, + "name": "BergerDoge", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x7fa92c33fdfa1050256437b302832a2ed530859f.png", + "aggregators": [ + "PancakeCoinMarketCap", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 4 + }, + "0xd04c116c4f02f3cca44b7d4e5209225c8779c8b8": { + "address": "0xd04c116c4f02f3cca44b7d4e5209225c8779c8b8", + "symbol": "BG", + "decimals": 18, + "name": "BunnyPark Game", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xd04c116c4f02f3cca44b7d4e5209225c8779c8b8.png", + "aggregators": [ + "PancakeCoinMarketCap", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 4 + }, + "0xa03110800894b3ccf8723d991d80875561f96777": { + "address": "0xa03110800894b3ccf8723d991d80875561f96777", + "symbol": "BGVT", + "decimals": 18, + "name": "Bit Game Verse Token", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xa03110800894b3ccf8723d991d80875561f96777.png", + "aggregators": [ + "PancakeCoinMarketCap", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 4 + }, + "0xed0c1c9c64ff7c7cc37c3af0dfcf5b02efe0bb5f": { + "address": "0xed0c1c9c64ff7c7cc37c3af0dfcf5b02efe0bb5f", + "symbol": "BITORB", + "decimals": 18, + "name": "BitOrbit", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xed0c1c9c64ff7c7cc37c3af0dfcf5b02efe0bb5f.png", + "aggregators": [ + "PancakeCoinMarketCap", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 4 + }, + "0x6448be0ca45a7581d9c4c9dd665e14ec60b25113": { + "address": "0x6448be0ca45a7581d9c4c9dd665e14ec60b25113", + "symbol": "BKPT", + "decimals": 18, + "name": "Biokript", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x6448be0ca45a7581d9c4c9dd665e14ec60b25113.png", + "aggregators": [ + "PancakeCoinMarketCap", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 4 + }, + "0xa2f1a99a74d4cc072b810b1696239e4dd76221c4": { + "address": "0xa2f1a99a74d4cc072b810b1696239e4dd76221c4", + "symbol": "BLACK", + "decimals": 18, + "name": "Black Token", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xa2f1a99a74d4cc072b810b1696239e4dd76221c4.png", + "aggregators": ["PancakeCoinMarketCap", "Socket", "Rubic", "Rango"], + "occurrences": 4 + }, + "0xdd1b6b259986571a85da82a84f461e1c212591c0": { + "address": "0xdd1b6b259986571a85da82a84f461e1c212591c0", + "symbol": "BLAZEX", + "decimals": 9, + "name": "BlazeX", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xdd1b6b259986571a85da82a84f461e1c212591c0.png", + "aggregators": [ + "PancakeCoinMarketCap", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 4 + }, + "0x8626264b6a1b4e920905efd381002aba52ea0eea": { + "address": "0x8626264b6a1b4e920905efd381002aba52ea0eea", + "symbol": "BLKC", + "decimals": 8, + "name": "BlackHat Coin", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x8626264b6a1b4e920905efd381002aba52ea0eea.png", + "aggregators": [ + "PancakeCoinMarketCap", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 4 + }, + "0x4954e0062e0a7668a2fe3df924cd20e6440a7b77": { + "address": "0x4954e0062e0a7668a2fe3df924cd20e6440a7b77", + "symbol": "BNU", + "decimals": 18, + "name": "ByteNext", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x4954e0062e0a7668a2fe3df924cd20e6440a7b77.png", + "aggregators": [ + "PancakeCoinMarketCap", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 4 + }, + "0x41b7d66d96a30d301be938adb8a6c18656109517": { + "address": "0x41b7d66d96a30d301be938adb8a6c18656109517", + "symbol": "BOOST", + "decimals": 18, + "name": "BitBoost", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x41b7d66d96a30d301be938adb8a6c18656109517.png", + "aggregators": ["PancakeCoinGecko", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0x4d993ec7b44276615bb2f6f20361ab34fbf0ec49": { + "address": "0x4d993ec7b44276615bb2f6f20361ab34fbf0ec49", + "symbol": "BRAND", + "decimals": 9, + "name": "BrandPad Finance", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x4d993ec7b44276615bb2f6f20361ab34fbf0ec49.png", + "aggregators": [ + "PancakeCoinMarketCap", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 4 + }, + "0xe8993ea85b9aa3e864fef4f7685966c485546161": { + "address": "0xe8993ea85b9aa3e864fef4f7685966c485546161", + "symbol": "BSG", + "decimals": 9, + "name": "Baby Squid Game", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xe8993ea85b9aa3e864fef4f7685966c485546161.png", + "aggregators": [ + "PancakeCoinMarketCap", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 4 + }, + "0x83b27de2fca046fa63a11c7ce7743de33ec58822": { + "address": "0x83b27de2fca046fa63a11c7ce7743de33ec58822", + "symbol": "BUILD", + "decimals": 18, + "name": "BUILD", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x83b27de2fca046fa63a11c7ce7743de33ec58822.png", + "aggregators": [ + "PancakeCoinMarketCap", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 4 + }, + "0x067bd9825c92a4384f55b4cb8fcaeaefffcd490e": { + "address": "0x067bd9825c92a4384f55b4cb8fcaeaefffcd490e", + "symbol": "BWLD", + "decimals": 18, + "name": "Bowled.io", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x067bd9825c92a4384f55b4cb8fcaeaefffcd490e.png", + "aggregators": [ + "PancakeCoinMarketCap", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 4 + }, + "0x76e112203ef59d445452ef7556386dd2df3ed914": { + "address": "0x76e112203ef59d445452ef7556386dd2df3ed914", + "symbol": "CADINU", + "decimals": 18, + "name": "Canadian Inuit Dog", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x76e112203ef59d445452ef7556386dd2df3ed914.png", + "aggregators": [ + "PancakeCoinMarketCap", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 4 + }, + "0x096985703f584b9444ce9730b600fc39de29ccc8": { + "address": "0x096985703f584b9444ce9730b600fc39de29ccc8", + "symbol": "CAF", + "decimals": 18, + "name": "Childrens Aid Foundation", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x096985703f584b9444ce9730b600fc39de29ccc8.png", + "aggregators": [ + "PancakeCoinMarketCap", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 4 + }, + "0x5971f6ecf4092824ed8229154d97c21317a04764": { + "address": "0x5971f6ecf4092824ed8229154d97c21317a04764", + "symbol": "CAT", + "decimals": 9, + "name": "Cat Token", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x5971f6ecf4092824ed8229154d97c21317a04764.png", + "aggregators": ["PancakeCoinGecko", "Socket", "Rubic", "Rango"], + "occurrences": 4 + }, + "0x912ef48f4da0c68d6c7c6d0b35d4e62e71771f33": { + "address": "0x912ef48f4da0c68d6c7c6d0b35d4e62e71771f33", + "symbol": "CBU", + "decimals": 4, + "name": "Banque Universal", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x912ef48f4da0c68d6c7c6d0b35d4e62e71771f33.png", + "aggregators": [ + "PancakeCoinMarketCap", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 4 + }, + "0x612e1726435fe38dd49a0b35b4065b56f49c8f11": { + "address": "0x612e1726435fe38dd49a0b35b4065b56f49c8f11", + "symbol": "CCV2", + "decimals": 18, + "name": "CryptoCart V2", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x612e1726435fe38dd49a0b35b4065b56f49c8f11.png", + "aggregators": [ + "PancakeCoinMarketCap", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 4 + }, + "0x111111267109489dc6f350608d5113b10c0c5cd7": { + "address": "0x111111267109489dc6f350608d5113b10c0c5cd7", + "symbol": "CEC", + "decimals": 18, + "name": "Counterfire Economic Coin", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x111111267109489dc6f350608d5113b10c0c5cd7.png", + "aggregators": [ + "PancakeCoinMarketCap", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 4 + }, + "0x78d66f72af18b678df82c91817b5cfd5b405b186": { + "address": "0x78d66f72af18b678df82c91817b5cfd5b405b186", + "symbol": "CENS", + "decimals": 18, + "name": "Censored AI", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x78d66f72af18b678df82c91817b5cfd5b405b186.png", + "aggregators": [ + "PancakeCoinMarketCap", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 4 + }, + "0xa3d2ae2d6684178a8565231465c3feebb05880c1": { + "address": "0xa3d2ae2d6684178a8565231465c3feebb05880c1", + "symbol": "CFT", + "decimals": 18, + "name": "CANNFINITY", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xa3d2ae2d6684178a8565231465c3feebb05880c1.png", + "aggregators": [ + "PancakeCoinMarketCap", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 4 + }, + "0xbac405e6b93846cdc809db7af3380746efa2c06f": { + "address": "0xbac405e6b93846cdc809db7af3380746efa2c06f", + "symbol": "CGPU", + "decimals": 18, + "name": "ChainGPU", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xbac405e6b93846cdc809db7af3380746efa2c06f.png", + "aggregators": [ + "PancakeCoinMarketCap", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 4 + }, + "0x7dd4cca136132e2260b3e8b4053cd7af057c3ed5": { + "address": "0x7dd4cca136132e2260b3e8b4053cd7af057c3ed5", + "symbol": "COAI", + "decimals": 18, + "name": "CodeMong Ai Games", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x7dd4cca136132e2260b3e8b4053cd7af057c3ed5.png", + "aggregators": [ + "PancakeCoinMarketCap", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 4 + }, + "0x8b6fa031c7d2e60fbfe4e663ec1b8f37df1ba483": { + "address": "0x8b6fa031c7d2e60fbfe4e663ec1b8f37df1ba483", + "symbol": "COW", + "decimals": 9, + "name": "CashCow", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x8b6fa031c7d2e60fbfe4e663ec1b8f37df1ba483.png", + "aggregators": [ + "PancakeCoinMarketCap", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 4 + }, + "0xae20bc46300bab5d85612c6bc6ea87ea0f186035": { + "address": "0xae20bc46300bab5d85612c6bc6ea87ea0f186035", + "symbol": "CRFI", + "decimals": 18, + "name": "CrossFi", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xae20bc46300bab5d85612c6bc6ea87ea0f186035.png", + "aggregators": [ + "PancakeCoinMarketCap", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 4 + }, + "0xa236fd48f30ad4dee145652a71912189855dd575": { + "address": "0xa236fd48f30ad4dee145652a71912189855dd575", + "symbol": "CRH", + "decimals": 18, + "name": "Crypto Hunters Coin", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xa236fd48f30ad4dee145652a71912189855dd575.png", + "aggregators": [ + "PancakeCoinMarketCap", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 4 + }, + "0x502b8136c48977b975a6c62b08ac4e15dabc8172": { + "address": "0x502b8136c48977b975a6c62b08ac4e15dabc8172", + "symbol": "$CS", + "decimals": 9, + "name": "Child Support", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x502b8136c48977b975a6c62b08ac4e15dabc8172.png", + "aggregators": [ + "PancakeCoinMarketCap", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 4 + }, + "0xef9481115ff33e94d3e28a52d3a8f642bf3521e5": { + "address": "0xef9481115ff33e94d3e28a52d3a8f642bf3521e5", + "symbol": "CSPD", + "decimals": 18, + "name": "CasperPad", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xef9481115ff33e94d3e28a52d3a8f642bf3521e5.png", + "aggregators": [ + "PancakeCoinMarketCap", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 4 + }, + "0xb3ba14f6a482dfdebc3c2fb726ac10df91ee504c": { + "address": "0xb3ba14f6a482dfdebc3c2fb726ac10df91ee504c", + "symbol": "CTG", + "decimals": 18, + "name": "City Tycoon Games", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xb3ba14f6a482dfdebc3c2fb726ac10df91ee504c.png", + "aggregators": [ + "PancakeCoinMarketCap", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 4 + }, + "0x73bc158e84873888cfc8b617524eebb1cfce8d4e": { + "address": "0x73bc158e84873888cfc8b617524eebb1cfce8d4e", + "symbol": "CTL", + "decimals": 18, + "name": "Twelve Legions", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x73bc158e84873888cfc8b617524eebb1cfce8d4e.png", + "aggregators": [ + "PancakeCoinMarketCap", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 4 + }, + "0x464863745ed3af8b9f8871f1082211c55f8f884d": { + "address": "0x464863745ed3af8b9f8871f1082211c55f8f884d", + "symbol": "CTT", + "decimals": 18, + "name": "CryptoTycoon", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x464863745ed3af8b9f8871f1082211c55f8f884d.png", + "aggregators": [ + "PancakeCoinMarketCap", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 4 + }, + "0x222cf80a8514f8ce551c06d1b8d01db3678688ad": { + "address": "0x222cf80a8514f8ce551c06d1b8d01db3678688ad", + "symbol": "DAWGS", + "decimals": 9, + "name": "SpaceDawgs", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x222cf80a8514f8ce551c06d1b8d01db3678688ad.png", + "aggregators": [ + "PancakeCoinMarketCap", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 4 + }, + "0x220e6a613f00c79025d5611b73639e045b186ff8": { + "address": "0x220e6a613f00c79025d5611b73639e045b186ff8", + "symbol": "DBC", + "decimals": 18, + "name": "Dhabicoin", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x220e6a613f00c79025d5611b73639e045b186ff8.png", + "aggregators": [ + "PancakeCoinMarketCap", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 4 + }, + "0x5c9ac6cbadfb0900a17735c9ffaacd20c60cfc15": { + "address": "0x5c9ac6cbadfb0900a17735c9ffaacd20c60cfc15", + "symbol": "DEMI", + "decimals": 6, + "name": "DeMi", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x5c9ac6cbadfb0900a17735c9ffaacd20c60cfc15.png", + "aggregators": [ + "PancakeCoinMarketCap", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 4 + }, + "0xb148df3c114b1233b206160a0f2a74999bb2fbf3": { + "address": "0xb148df3c114b1233b206160a0f2a74999bb2fbf3", + "symbol": "DHLT", + "decimals": 18, + "name": "DeHealth", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xb148df3c114b1233b206160a0f2a74999bb2fbf3.png", + "aggregators": [ + "PancakeCoinMarketCap", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 4 + }, + "0x697bd938e7e572e787ecd7bc74a31f1814c21264": { + "address": "0x697bd938e7e572e787ecd7bc74a31f1814c21264", + "symbol": "DIFX", + "decimals": 18, + "name": "Digital Financial Exchange", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x697bd938e7e572e787ecd7bc74a31f1814c21264.png", + "aggregators": [ + "PancakeCoinMarketCap", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 4 + }, + "0x7ec0da57eba5398470c6bcb5518406d885240c85": { + "address": "0x7ec0da57eba5398470c6bcb5518406d885240c85", + "symbol": "DIGI", + "decimals": 18, + "name": "DIGIVERSE", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x7ec0da57eba5398470c6bcb5518406d885240c85.png", + "aggregators": [ + "PancakeCoinMarketCap", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 4 + }, + "0x5fb60a9e69b53edbc95a5a2d9dd4abd8c16c4233": { + "address": "0x5fb60a9e69b53edbc95a5a2d9dd4abd8c16c4233", + "symbol": "DINO", + "decimals": 8, + "name": "Dinosaur Inu", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x5fb60a9e69b53edbc95a5a2d9dd4abd8c16c4233.png", + "aggregators": [ + "PancakeCoinMarketCap", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 4 + }, + "0x1c796c140de269e255372ea687ef7644bab87935": { + "address": "0x1c796c140de269e255372ea687ef7644bab87935", + "symbol": "DMLG", + "decimals": 18, + "name": "Demole", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x1c796c140de269e255372ea687ef7644bab87935.png", + "aggregators": [ + "PancakeCoinMarketCap", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 4 + }, + "0x9a26e6d24df036b0b015016d1b55011c19e76c87": { + "address": "0x9a26e6d24df036b0b015016d1b55011c19e76c87", + "symbol": "DMS", + "decimals": 18, + "name": "Dragon Mainland Shards", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x9a26e6d24df036b0b015016d1b55011c19e76c87.png", + "aggregators": [ + "PancakeCoinMarketCap", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 4 + }, + "0x44836708ff32246635d8d08c785f4e779e294598": { + "address": "0x44836708ff32246635d8d08c785f4e779e294598", + "symbol": "DNT", + "decimals": 8, + "name": "Space Guild Diamond Token", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x44836708ff32246635d8d08c785f4e779e294598.png", + "aggregators": [ + "PancakeCoinMarketCap", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 4 + }, + "0x94db03752342bc9b5bbf89e3bf0132494f0cb2b3": { + "address": "0x94db03752342bc9b5bbf89e3bf0132494f0cb2b3", + "symbol": "DOGAI", + "decimals": 18, + "name": "Dogai", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x94db03752342bc9b5bbf89e3bf0132494f0cb2b3.png", + "aggregators": [ + "PancakeCoinMarketCap", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 4 + }, + "0x1bec41a36356d5574aeb068b599ab7e48dd008b8": { + "address": "0x1bec41a36356d5574aeb068b599ab7e48dd008b8", + "symbol": "DOGEFOOD", + "decimals": 9, + "name": "DogeFood", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x1bec41a36356d5574aeb068b599ab7e48dd008b8.png", + "aggregators": [ + "PancakeCoinMarketCap", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 4 + }, + "0x123458c167a371250d325bd8b1fff12c8af692a7": { + "address": "0x123458c167a371250d325bd8b1fff12c8af692a7", + "symbol": "DRAC", + "decimals": 18, + "name": "DRAC Network", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x123458c167a371250d325bd8b1fff12c8af692a7.png", + "aggregators": [ + "PancakeCoinMarketCap", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 4 + }, + "0x1384555d00144c7725ac71da2bb1fd67b9ad889a": { + "address": "0x1384555d00144c7725ac71da2bb1fd67b9ad889a", + "symbol": "DSUN", + "decimals": 18, + "name": "Dsun Token", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x1384555d00144c7725ac71da2bb1fd67b9ad889a.png", + "aggregators": [ + "PancakeCoinMarketCap", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 4 + }, + "0xaee234825dc4687fae606485c1ebd06336052bcc": { + "address": "0xaee234825dc4687fae606485c1ebd06336052bcc", + "symbol": "DUKE", + "decimals": 9, + "name": "Duke Inu", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xaee234825dc4687fae606485c1ebd06336052bcc.png", + "aggregators": [ + "PancakeCoinMarketCap", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 4 + }, + "0x8ec1877698acf262fe8ad8a295ad94d6ea258988": { + "address": "0x8ec1877698acf262fe8ad8a295ad94d6ea258988", + "symbol": "DUSD", + "decimals": 18, + "name": "Davos.xyz USD", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x8ec1877698acf262fe8ad8a295ad94d6ea258988.png", + "aggregators": [ + "PancakeCoinMarketCap", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 4 + }, + "0x4e0da40b9063dc48364c1c0ffb4ae9d091fc2270": { + "address": "0x4e0da40b9063dc48364c1c0ffb4ae9d091fc2270", + "symbol": "EDG", + "decimals": 18, + "name": "Edgeware", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x4e0da40b9063dc48364c1c0ffb4ae9d091fc2270.png", + "aggregators": [ + "PancakeCoinMarketCap", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 4 + }, + "0xbe76f927d274072266cade09daa54750cd4293a1": { + "address": "0xbe76f927d274072266cade09daa54750cd4293a1", + "symbol": "EGOLD", + "decimals": 18, + "name": "EGOLD", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xbe76f927d274072266cade09daa54750cd4293a1.png", + "aggregators": ["PancakeCoinMarketCap", "Socket", "Rubic", "Rango"], + "occurrences": 4 + }, + "0xa526b7abb8010cd3b79c56e074ad34dff3d4b0e7": { + "address": "0xa526b7abb8010cd3b79c56e074ad34dff3d4b0e7", + "symbol": "ELONMARS", + "decimals": 9, + "name": "Elon Mars", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xa526b7abb8010cd3b79c56e074ad34dff3d4b0e7.png", + "aggregators": [ + "PancakeCoinMarketCap", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 4 + }, + "0x37807d4fbeb84124347b8899dd99616090d3e304": { + "address": "0x37807d4fbeb84124347b8899dd99616090d3e304", + "symbol": "LUNR", + "decimals": 4, + "name": "LunarCrush", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x37807d4fbeb84124347b8899dd99616090d3e304.png", + "aggregators": [ + "PancakeCoinMarketCap", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 4 + }, + "0x2d35c695be9080d27ef5c6efe80beefcfaab8573": { + "address": "0x2d35c695be9080d27ef5c6efe80beefcfaab8573", + "symbol": "EOTH", + "decimals": 18, + "name": "Echo Of The Horizon", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x2d35c695be9080d27ef5c6efe80beefcfaab8573.png", + "aggregators": [ + "PancakeCoinMarketCap", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 4 + }, + "0x4c48cca6153db911002f965d22fdefcd95f33be9": { + "address": "0x4c48cca6153db911002f965d22fdefcd95f33be9", + "symbol": "ESC", + "decimals": 18, + "name": "The Essential Coin", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x4c48cca6153db911002f965d22fdefcd95f33be9.png", + "aggregators": [ + "PancakeCoinMarketCap", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 4 + }, + "0x4ad006e61d77453ce99f6e24ba45d59e1c194644": { + "address": "0x4ad006e61d77453ce99f6e24ba45d59e1c194644", + "symbol": "ESX", + "decimals": 9, + "name": "EstateX", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x4ad006e61d77453ce99f6e24ba45d59e1c194644.png", + "aggregators": [ + "PancakeCoinMarketCap", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 4 + }, + "0x854f7cd3677737241e3eed0dc3d7f33dfaf72bc4": { + "address": "0x854f7cd3677737241e3eed0dc3d7f33dfaf72bc4", + "symbol": "ETHAX", + "decimals": 18, + "name": "ETHAX", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x854f7cd3677737241e3eed0dc3d7f33dfaf72bc4.png", + "aggregators": [ + "PancakeCoinMarketCap", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 4 + }, + "0x269b7a30497f92ebf307e7467fd4f1210a6c36b6": { + "address": "0x269b7a30497f92ebf307e7467fd4f1210a6c36b6", + "symbol": "EVIN", + "decimals": 18, + "name": "Evin Token", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x269b7a30497f92ebf307e7467fd4f1210a6c36b6.png", + "aggregators": [ + "PancakeCoinMarketCap", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 4 + }, + "0x3c2e501b08cf5c16061468c96b19b32bae451da3": { + "address": "0x3c2e501b08cf5c16061468c96b19b32bae451da3", + "symbol": "EVRF", + "decimals": 18, + "name": "EverReflect", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x3c2e501b08cf5c16061468c96b19b32bae451da3.png", + "aggregators": [ + "PancakeCoinMarketCap", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 4 + }, + "0x657b632714e08ac66b79444ad3f3875526ee6689": { + "address": "0x657b632714e08ac66b79444ad3f3875526ee6689", + "symbol": "F2C", + "decimals": 18, + "name": "Ftribe Fighters", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x657b632714e08ac66b79444ad3f3875526ee6689.png", + "aggregators": ["PancakeCoinGecko", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0x8132a61eff71fec65e6dfb3406f4f64e55c69a82": { + "address": "0x8132a61eff71fec65e6dfb3406f4f64e55c69a82", + "symbol": "FAND", + "decimals": 18, + "name": "Fandomdao", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x8132a61eff71fec65e6dfb3406f4f64e55c69a82.png", + "aggregators": [ + "PancakeCoinMarketCap", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 4 + }, + "0x6d1a4650e83708b583c35d5e0952a0b46354ca9b": { + "address": "0x6d1a4650e83708b583c35d5e0952a0b46354ca9b", + "symbol": "FDC", + "decimals": 18, + "name": "Fidance", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x6d1a4650e83708b583c35d5e0952a0b46354ca9b.png", + "aggregators": [ + "PancakeCoinMarketCap", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 4 + }, + "0x3a599e584075065eaaac768d75eaef85c2f2ff64": { + "address": "0x3a599e584075065eaaac768d75eaef85c2f2ff64", + "symbol": "FDT", + "decimals": 18, + "name": "Frutti Dino", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x3a599e584075065eaaac768d75eaef85c2f2ff64.png", + "aggregators": [ + "PancakeCoinMarketCap", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 4 + }, + "0xf397680d99a92e4b60637e9f5c71a4def1f6c7b5": { + "address": "0xf397680d99a92e4b60637e9f5c71a4def1f6c7b5", + "symbol": "FLIGHT", + "decimals": 4, + "name": "FlightClupcoin", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xf397680d99a92e4b60637e9f5c71a4def1f6c7b5.png", + "aggregators": [ + "PancakeCoinMarketCap", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 4 + }, + "0x0a4e1bdfa75292a98c15870aef24bd94bffe0bd4": { + "address": "0x0a4e1bdfa75292a98c15870aef24bd94bffe0bd4", + "symbol": "FOTA", + "decimals": 18, + "name": "Fight Of The Ages", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x0a4e1bdfa75292a98c15870aef24bd94bffe0bd4.png", + "aggregators": [ + "PancakeCoinMarketCap", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 4 + }, + "0x1acbc7d9c40aa8955281ae29b581bcf002eeb4f4": { + "address": "0x1acbc7d9c40aa8955281ae29b581bcf002eeb4f4", + "symbol": "FOUND", + "decimals": 18, + "name": "ccFound", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x1acbc7d9c40aa8955281ae29b581bcf002eeb4f4.png", + "aggregators": [ + "PancakeCoinMarketCap", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 4 + }, + "0x440758df68a045db3f2517257f27330a12438656": { + "address": "0x440758df68a045db3f2517257f27330a12438656", + "symbol": "FRGST", + "decimals": 18, + "name": "Froggies", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x440758df68a045db3f2517257f27330a12438656.png", + "aggregators": [ + "PancakeCoinMarketCap", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 4 + }, + "0x90a1e4bbade88366dc44436535f1571d95e666c7": { + "address": "0x90a1e4bbade88366dc44436535f1571d95e666c7", + "symbol": "FWT", + "decimals": 18, + "name": "Freeway", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x90a1e4bbade88366dc44436535f1571d95e666c7.png", + "aggregators": [ + "PancakeCoinMarketCap", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 4 + }, + "0x4d14e0c131ca155de4d69e009bc62b01a052eb87": { + "address": "0x4d14e0c131ca155de4d69e009bc62b01a052eb87", + "symbol": "GAME", + "decimals": 18, + "name": "Gamereum", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x4d14e0c131ca155de4d69e009bc62b01a052eb87.png", + "aggregators": ["PancakeCoinGecko", "Socket", "Rubic", "Rango"], + "occurrences": 4 + }, + "0xf0dcf7ac48f8c745f2920d03dff83f879b80d438": { + "address": "0xf0dcf7ac48f8c745f2920d03dff83f879b80d438", + "symbol": "GAMI", + "decimals": 18, + "name": "Gami", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xf0dcf7ac48f8c745f2920d03dff83f879b80d438.png", + "aggregators": [ + "PancakeCoinMarketCap", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 4 + }, + "0x7e5cf1f395846ab2c13eba2e6953b54b92a80bbd": { + "address": "0x7e5cf1f395846ab2c13eba2e6953b54b92a80bbd", + "symbol": "GBURN", + "decimals": 18, + "name": "GBURN", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x7e5cf1f395846ab2c13eba2e6953b54b92a80bbd.png", + "aggregators": [ + "PancakeCoinMarketCap", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 4 + }, + "0x2cd14cba3f26254beed1d78158cd2b6f91809600": { + "address": "0x2cd14cba3f26254beed1d78158cd2b6f91809600", + "symbol": "GENS", + "decimals": 18, + "name": "Genshiro", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x2cd14cba3f26254beed1d78158cd2b6f91809600.png", + "aggregators": [ + "PancakeCoinMarketCap", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 4 + }, + "0xfdfd27ae39cebefdbaac8615f18aa68ddd0f15f5": { + "address": "0xfdfd27ae39cebefdbaac8615f18aa68ddd0f15f5", + "symbol": "GHD", + "decimals": 18, + "name": "Giftedhands", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xfdfd27ae39cebefdbaac8615f18aa68ddd0f15f5.png", + "aggregators": ["PancakeCoinGecko", "Socket", "Rubic", "Rango"], + "occurrences": 4 + }, + "0x0f34810810dd05d2bcaef091d54497ad40801ff2": { + "address": "0x0f34810810dd05d2bcaef091d54497ad40801ff2", + "symbol": "GIGS", + "decimals": 18, + "name": "Climate101", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x0f34810810dd05d2bcaef091d54497ad40801ff2.png", + "aggregators": [ + "PancakeCoinMarketCap", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 4 + }, + "0x0ee7292bd28f4a490f849fb30c28cabab9440f9e": { + "address": "0x0ee7292bd28f4a490f849fb30c28cabab9440f9e", + "symbol": "GLINK", + "decimals": 8, + "name": "GemLink", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x0ee7292bd28f4a490f849fb30c28cabab9440f9e.png", + "aggregators": [ + "PancakeCoinMarketCap", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 4 + }, + "0xfa139cc2f5c5b8c72309be8e63c3024d03b7e63c": { + "address": "0xfa139cc2f5c5b8c72309be8e63c3024d03b7e63c", + "symbol": "GNP", + "decimals": 18, + "name": "Genie Protocol", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xfa139cc2f5c5b8c72309be8e63c3024d03b7e63c.png", + "aggregators": [ + "PancakeCoinMarketCap", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 4 + }, + "0xeb52620b04e8eacfd795353f2827673887f292e0": { + "address": "0xeb52620b04e8eacfd795353f2827673887f292e0", + "symbol": "GOLC", + "decimals": 18, + "name": "GOLCOIN", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xeb52620b04e8eacfd795353f2827673887f292e0.png", + "aggregators": [ + "PancakeCoinMarketCap", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 4 + }, + "0xf29bf05de3dd6a5f7496841f81f96a3a130c3420": { + "address": "0xf29bf05de3dd6a5f7496841f81f96a3a130c3420", + "symbol": "GOMD", + "decimals": 18, + "name": "Gomdori", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xf29bf05de3dd6a5f7496841f81f96a3a130c3420.png", + "aggregators": [ + "PancakeCoinMarketCap", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 4 + }, + "0x6294deb10817e47a4ee6869db59c85f3ef4bee29": { + "address": "0x6294deb10817e47a4ee6869db59c85f3ef4bee29", + "symbol": "GROKCEO", + "decimals": 9, + "name": "GROK CEO", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x6294deb10817e47a4ee6869db59c85f3ef4bee29.png", + "aggregators": [ + "PancakeCoinMarketCap", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 4 + }, + "0x6f3468588a57d5a631198532c6a3c693cf512c5c": { + "address": "0x6f3468588a57d5a631198532c6a3c693cf512c5c", + "symbol": "GROKMOON", + "decimals": 9, + "name": "Grok Moon", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x6f3468588a57d5a631198532c6a3c693cf512c5c.png", + "aggregators": [ + "PancakeCoinMarketCap", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 4 + }, + "0xa24259b154f6199f881c99fca26d7b3e8f8f2711": { + "address": "0xa24259b154f6199f881c99fca26d7b3e8f8f2711", + "symbol": "GTTM", + "decimals": 18, + "name": "Going To The Moon", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xa24259b154f6199f881c99fca26d7b3e8f8f2711.png", + "aggregators": [ + "PancakeCoinMarketCap", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 4 + }, + "0x7597bdccf10e41bccc374a6a0104cf430c420884": { + "address": "0x7597bdccf10e41bccc374a6a0104cf430c420884", + "symbol": "GULF", + "decimals": 18, + "name": "GulfCoin", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x7597bdccf10e41bccc374a6a0104cf430c420884.png", + "aggregators": [ + "PancakeCoinMarketCap", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 4 + }, + "0xd85ad783cc94bd04196a13dc042a3054a9b52210": { + "address": "0xd85ad783cc94bd04196a13dc042a3054a9b52210", + "symbol": "HAKA", + "decimals": 18, + "name": "TribeOne", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xd85ad783cc94bd04196a13dc042a3054a9b52210.png", + "aggregators": ["PancakeCoinMarketCap", "Socket", "Rubic", "Rango"], + "occurrences": 4 + }, + "0xb38c9d498bab8deefa5ffe8e1d7ca000ef6c3362": { + "address": "0xb38c9d498bab8deefa5ffe8e1d7ca000ef6c3362", + "symbol": "HECT", + "decimals": 18, + "name": "Hectic Turkey", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xb38c9d498bab8deefa5ffe8e1d7ca000ef6c3362.png", + "aggregators": [ + "PancakeCoinMarketCap", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 4 + }, + "0x45eaccc670e0ef785d9c298217a7ab777757721b": { + "address": "0x45eaccc670e0ef785d9c298217a7ab777757721b", + "symbol": "HEFI", + "decimals": 18, + "name": "HeFi", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x45eaccc670e0ef785d9c298217a7ab777757721b.png", + "aggregators": [ + "PancakeCoinMarketCap", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 4 + }, + "0x8c18ffd66d943c9b0ad3dc40e2d64638f1e6e1ab": { + "address": "0x8c18ffd66d943c9b0ad3dc40e2d64638f1e6e1ab", + "symbol": "HER", + "decimals": 9, + "name": "Herity Network", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x8c18ffd66d943c9b0ad3dc40e2d64638f1e6e1ab.png", + "aggregators": [ + "PancakeCoinMarketCap", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 4 + }, + "0x71e67b8d88718d113fc7edbd95f7ca380222b3c6": { + "address": "0x71e67b8d88718d113fc7edbd95f7ca380222b3c6", + "symbol": "$HMT", + "decimals": 8, + "name": "Humanize", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x71e67b8d88718d113fc7edbd95f7ca380222b3c6.png", + "aggregators": [ + "PancakeCoinMarketCap", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 4 + }, + "0xc1357d32bf23fd5fe3280681a36755b6f150442e": { + "address": "0xc1357d32bf23fd5fe3280681a36755b6f150442e", + "symbol": "HOTMOON", + "decimals": 18, + "name": "HotMoon", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xc1357d32bf23fd5fe3280681a36755b6f150442e.png", + "aggregators": [ + "PancakeCoinMarketCap", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 4 + }, + "0xdaa64420e769fae36ccaa78e26024fe9f583e9d8": { + "address": "0xdaa64420e769fae36ccaa78e26024fe9f583e9d8", + "symbol": "HOW", + "decimals": 18, + "name": "HowInu", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xdaa64420e769fae36ccaa78e26024fe9f583e9d8.png", + "aggregators": [ + "PancakeCoinMarketCap", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 4 + }, + "0x3be0e5edc58bd55aaa381fa642688adc289c05a3": { + "address": "0x3be0e5edc58bd55aaa381fa642688adc289c05a3", + "symbol": "HRSE", + "decimals": 18, + "name": "The Winners Circle", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x3be0e5edc58bd55aaa381fa642688adc289c05a3.png", + "aggregators": [ + "PancakeCoinMarketCap", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 4 + }, + "0x4dfad9a4cba318efc53743b803588b113f8a84bd": { + "address": "0x4dfad9a4cba318efc53743b803588b113f8a84bd", + "symbol": "HUA", + "decimals": 9, + "name": "Chihuahua", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x4dfad9a4cba318efc53743b803588b113f8a84bd.png", + "aggregators": [ + "PancakeCoinMarketCap", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 4 + }, + "0xee5b03b769ca6c690d140cafb52fc8de3f38fc28": { + "address": "0xee5b03b769ca6c690d140cafb52fc8de3f38fc28", + "symbol": "HYPER", + "decimals": 7, + "name": "HyperChainX", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xee5b03b769ca6c690d140cafb52fc8de3f38fc28.png", + "aggregators": [ + "PancakeCoinMarketCap", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 4 + }, + "0xa7266989b0df675cc8257d53b6bc1358faf6626a": { + "address": "0xa7266989b0df675cc8257d53b6bc1358faf6626a", + "symbol": "IPAD", + "decimals": 18, + "name": "Infinity PAD", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xa7266989b0df675cc8257d53b6bc1358faf6626a.png", + "aggregators": [ + "PancakeCoinMarketCap", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 4 + }, + "0x93425e1324e3fea144579ed40bbadf8b481c944a": { + "address": "0x93425e1324e3fea144579ed40bbadf8b481c944a", + "symbol": "IQT", + "decimals": 18, + "name": "IQT TOKEN", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x93425e1324e3fea144579ed40bbadf8b481c944a.png", + "aggregators": ["PancakeCoinMarketCap", "Socket", "Rubic", "Rango"], + "occurrences": 4 + }, + "0x517396bd11d750e4417b82f2b0fcfa62a4f2bb96": { + "address": "0x517396bd11d750e4417b82f2b0fcfa62a4f2bb96", + "symbol": "ITEM", + "decimals": 18, + "name": "ITEMVERSE", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x517396bd11d750e4417b82f2b0fcfa62a4f2bb96.png", + "aggregators": [ + "PancakeCoinMarketCap", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 4 + }, + "0x2b1d36f5b61addaf7da7ebbd11b35fd8cfb0de31": { + "address": "0x2b1d36f5b61addaf7da7ebbd11b35fd8cfb0de31", + "symbol": "ITP", + "decimals": 18, + "name": "Interport Token", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x2b1d36f5b61addaf7da7ebbd11b35fd8cfb0de31.png", + "aggregators": [ + "PancakeCoinMarketCap", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 4 + }, + "0x845705db1623b8363a6d9813f33b73ec50cea0a2": { + "address": "0x845705db1623b8363a6d9813f33b73ec50cea0a2", + "symbol": "JFIVE", + "decimals": 9, + "name": "Jonny Five", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x845705db1623b8363a6d9813f33b73ec50cea0a2.png", + "aggregators": [ + "PancakeCoinMarketCap", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 4 + }, + "0x7db21353a0c4659b6a9a0519066aa8d52639dfa5": { + "address": "0x7db21353a0c4659b6a9a0519066aa8d52639dfa5", + "symbol": "JOLT", + "decimals": 18, + "name": "Joltify", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x7db21353a0c4659b6a9a0519066aa8d52639dfa5.png", + "aggregators": [ + "PancakeCoinMarketCap", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 4 + }, + "0xf5d8015d625be6f59b8073c8189bd51ba28792e1": { + "address": "0xf5d8015d625be6f59b8073c8189bd51ba28792e1", + "symbol": "JULD", + "decimals": 18, + "name": "JulSwap", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xf5d8015d625be6f59b8073c8189bd51ba28792e1.png", + "aggregators": [ + "PancakeCoinMarketCap", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 4 + }, + "0x13b8abb1cfd7bbe1f5764fe967ed049d488d9d1d": { + "address": "0x13b8abb1cfd7bbe1f5764fe967ed049d488d9d1d", + "symbol": "JYC", + "decimals": 9, + "name": "Joe-Yo Coin", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x13b8abb1cfd7bbe1f5764fe967ed049d488d9d1d.png", + "aggregators": [ + "PancakeCoinMarketCap", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 4 + }, + "0x4811d9a0b2655a5f317e466f2be0139ff949297b": { + "address": "0x4811d9a0b2655a5f317e466f2be0139ff949297b", + "symbol": "KABOSU", + "decimals": 9, + "name": "Kabosu (BNB)", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x4811d9a0b2655a5f317e466f2be0139ff949297b.png", + "aggregators": [ + "PancakeCoinMarketCap", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 4 + }, + "0x14f1ec1ba0f8a8e9a3b8178c9dcc32155e82c70b": { + "address": "0x14f1ec1ba0f8a8e9a3b8178c9dcc32155e82c70b", + "symbol": "KAF", + "decimals": 18, + "name": "KAIF", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x14f1ec1ba0f8a8e9a3b8178c9dcc32155e82c70b.png", + "aggregators": [ + "PancakeCoinMarketCap", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 4 + }, + "0xe3e3f8218562a7c9b594bef2946ec72f1b043ae8": { + "address": "0xe3e3f8218562a7c9b594bef2946ec72f1b043ae8", + "symbol": "KBD", + "decimals": 18, + "name": "Kyberdyne", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xe3e3f8218562a7c9b594bef2946ec72f1b043ae8.png", + "aggregators": [ + "PancakeCoinMarketCap", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 4 + }, + "0xacff4e9e9110971e1a4d8f013f5f97dd8fb4f430": { + "address": "0xacff4e9e9110971e1a4d8f013f5f97dd8fb4f430", + "symbol": "KFR", + "decimals": 9, + "name": "KING FOREVER", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xacff4e9e9110971e1a4d8f013f5f97dd8fb4f430.png", + "aggregators": [ + "PancakeCoinMarketCap", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 4 + }, + "0x824a50df33ac1b41afc52f4194e2e8356c17c3ac": { + "address": "0x824a50df33ac1b41afc52f4194e2e8356c17c3ac", + "symbol": "KICK", + "decimals": 10, + "name": "Kick", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x824a50df33ac1b41afc52f4194e2e8356c17c3ac.png", + "aggregators": [ + "PancakeCoinMarketCap", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 4 + }, + "0x84f4f7cdb4574c9556a494dab18ffc1d1d22316c": { + "address": "0x84f4f7cdb4574c9556a494dab18ffc1d1d22316c", + "symbol": "KINGSHIB", + "decimals": 9, + "name": "King Shiba", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x84f4f7cdb4574c9556a494dab18ffc1d1d22316c.png", + "aggregators": [ + "PancakeCoinMarketCap", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 4 + }, + "0x8094e772fa4a60bdeb1dfec56ab040e17dd608d5": { + "address": "0x8094e772fa4a60bdeb1dfec56ab040e17dd608d5", + "symbol": "KODA", + "decimals": 9, + "name": "Koda Cryptocurrency", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x8094e772fa4a60bdeb1dfec56ab040e17dd608d5.png", + "aggregators": [ + "PancakeCoinMarketCap", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 4 + }, + "0xd9eade302456aff8bf8d87ff0ef77dab1fb9230f": { + "address": "0xd9eade302456aff8bf8d87ff0ef77dab1fb9230f", + "symbol": "KOL", + "decimals": 18, + "name": "King of Legends", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xd9eade302456aff8bf8d87ff0ef77dab1fb9230f.png", + "aggregators": [ + "PancakeCoinMarketCap", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 4 + }, + "0x8013d731f429b3ad418f5467f9f68285efd67ca7": { + "address": "0x8013d731f429b3ad418f5467f9f68285efd67ca7", + "symbol": "KRN", + "decimals": 18, + "name": "KRYZA Network", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x8013d731f429b3ad418f5467f9f68285efd67ca7.png", + "aggregators": [ + "PancakeCoinMarketCap", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 4 + }, + "0xf06ce11836851d71e74e4ffefa7b73fcc8a27786": { + "address": "0xf06ce11836851d71e74e4ffefa7b73fcc8a27786", + "symbol": "LAY3R", + "decimals": 18, + "name": "Autolayer", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xf06ce11836851d71e74e4ffefa7b73fcc8a27786.png", + "aggregators": ["PancakeCoinGecko", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0x15a133ba390ffd210c13a03950f0d2dfe6e14b84": { + "address": "0x15a133ba390ffd210c13a03950f0d2dfe6e14b84", + "symbol": "LESBIAN", + "decimals": 18, + "name": "Lesbian Inu", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x15a133ba390ffd210c13a03950f0d2dfe6e14b84.png", + "aggregators": [ + "PancakeCoinMarketCap", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 4 + }, + "0xd71239a33c8542bd42130c1b4aca0673b4e4f48b": { + "address": "0xd71239a33c8542bd42130c1b4aca0673b4e4f48b", + "symbol": "LFW", + "decimals": 18, + "name": "Linked Finance World", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xd71239a33c8542bd42130c1b4aca0673b4e4f48b.png", + "aggregators": [ + "PancakeCoinMarketCap", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 4 + }, + "0x0dfcb45eae071b3b846e220560bbcdd958414d78": { + "address": "0x0dfcb45eae071b3b846e220560bbcdd958414d78", + "symbol": "LIBERO", + "decimals": 18, + "name": "Libero Financial", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x0dfcb45eae071b3b846e220560bbcdd958414d78.png", + "aggregators": [ + "PancakeCoinMarketCap", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 4 + }, + "0x679d2c23497d4431311ac001618cd0b8789ac29c": { + "address": "0x679d2c23497d4431311ac001618cd0b8789ac29c", + "symbol": "LINKFI", + "decimals": 18, + "name": "LINKFI", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x679d2c23497d4431311ac001618cd0b8789ac29c.png", + "aggregators": [ + "PancakeCoinMarketCap", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 4 + }, + "0xb99172949554e6c10c28c880ec0306d2a9d5c753": { + "address": "0xb99172949554e6c10c28c880ec0306d2a9d5c753", + "symbol": "LOGE", + "decimals": 9, + "name": "LunaDoge", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xb99172949554e6c10c28c880ec0306d2a9d5c753.png", + "aggregators": [ + "PancakeCoinMarketCap", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 4 + }, + "0x20b4620a767d6dccbb9314104d5cf0d08d1f7045": { + "address": "0x20b4620a767d6dccbb9314104d5cf0d08d1f7045", + "symbol": "LOP", + "decimals": 6, + "name": "Kilopi", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x20b4620a767d6dccbb9314104d5cf0d08d1f7045.png", + "aggregators": [ + "PancakeCoinMarketCap", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 4 + }, + "0xbd2c43da85d007b0b3cd856fd55c299578d832bc": { + "address": "0xbd2c43da85d007b0b3cd856fd55c299578d832bc", + "symbol": "LQT", + "decimals": 18, + "name": "Lifty", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xbd2c43da85d007b0b3cd856fd55c299578d832bc.png", + "aggregators": [ + "PancakeCoinMarketCap", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 4 + }, + "0xf70b6d6acd652612f24f7dd2ca2f1727eb20793a": { + "address": "0xf70b6d6acd652612f24f7dd2ca2f1727eb20793a", + "symbol": "LSHARE", + "decimals": 18, + "name": "LIF3 LSHARE (OLD)", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xf70b6d6acd652612f24f7dd2ca2f1727eb20793a.png", + "aggregators": ["PancakeCoinGecko", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0x1dc84fc11e48ae640d48044f22a603bbe914a612": { + "address": "0x1dc84fc11e48ae640d48044f22a603bbe914a612", + "symbol": "LTT", + "decimals": 9, + "name": "LocalTrade", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x1dc84fc11e48ae640d48044f22a603bbe914a612.png", + "aggregators": [ + "PancakeCoinMarketCap", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 4 + }, + "0x87837b7b4850687e200254f78c0af0a34329a491": { + "address": "0x87837b7b4850687e200254f78c0af0a34329a491", + "symbol": "LUC", + "decimals": 15, + "name": "Lucretius", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x87837b7b4850687e200254f78c0af0a34329a491.png", + "aggregators": [ + "PancakeCoinMarketCap", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 4 + }, + "0x9d6df568d4d3e619b99a5f988ac7b2bcc3408753": { + "address": "0x9d6df568d4d3e619b99a5f988ac7b2bcc3408753", + "symbol": "LUMI", + "decimals": 18, + "name": "Lumishare", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x9d6df568d4d3e619b99a5f988ac7b2bcc3408753.png", + "aggregators": [ + "PancakeCoinMarketCap", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 4 + }, + "0x2a48ece377b87ce941406657b9278b4459595e06": { + "address": "0x2a48ece377b87ce941406657b9278b4459595e06", + "symbol": "LUNAT", + "decimals": 9, + "name": "Lunatics", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x2a48ece377b87ce941406657b9278b4459595e06.png", + "aggregators": [ + "PancakeCoinMarketCap", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 4 + }, + "0x7ba1a5780ce75a6998e0f65529393873a6d57cda": { + "address": "0x7ba1a5780ce75a6998e0f65529393873a6d57cda", + "symbol": "LUNCARMY", + "decimals": 18, + "name": "LUNCARMY", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x7ba1a5780ce75a6998e0f65529393873a6d57cda.png", + "aggregators": [ + "PancakeCoinMarketCap", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 4 + }, + "0x3ef144cb45c8a390eb207a6aa9bfcf3da639cb5c": { + "address": "0x3ef144cb45c8a390eb207a6aa9bfcf3da639cb5c", + "symbol": "MAGA", + "decimals": 9, + "name": "MAGA Coin BSC", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x3ef144cb45c8a390eb207a6aa9bfcf3da639cb5c.png", + "aggregators": [ + "PancakeCoinMarketCap", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 4 + }, + "0xe045fc25581cfdc3cfb5c282501f3cd1a133a7ec": { + "address": "0xe045fc25581cfdc3cfb5c282501f3cd1a133a7ec", + "symbol": "MAI", + "decimals": 18, + "name": "MatrixGPT", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xe045fc25581cfdc3cfb5c282501f3cd1a133a7ec.png", + "aggregators": [ + "PancakeCoinMarketCap", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 4 + }, + "0xa5f249f401ba8931899a364d8e2699b5fa1d87a9": { + "address": "0xa5f249f401ba8931899a364d8e2699b5fa1d87a9", + "symbol": "MAIN", + "decimals": 18, + "name": "MAIN", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xa5f249f401ba8931899a364d8e2699b5fa1d87a9.png", + "aggregators": ["PancakeCoinMarketCap", "Socket", "Rubic", "Rango"], + "occurrences": 4 + }, + "0x12e114ef949177ddb37716bc6eefb9c5bc25de12": { + "address": "0x12e114ef949177ddb37716bc6eefb9c5bc25de12", + "symbol": "MANE", + "decimals": 18, + "name": "MANE", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x12e114ef949177ddb37716bc6eefb9c5bc25de12.png", + "aggregators": [ + "PancakeCoinMarketCap", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 4 + }, + "0x9d44c04ef10cbd4ba321e51a54f1354d0799feef": { + "address": "0x9d44c04ef10cbd4ba321e51a54f1354d0799feef", + "symbol": "MAR3", + "decimals": 18, + "name": "MAR3 AI", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x9d44c04ef10cbd4ba321e51a54f1354d0799feef.png", + "aggregators": [ + "PancakeCoinMarketCap", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 4 + }, + "0x9df90628d40c72f85137e8cee09dde353a651266": { + "address": "0x9df90628d40c72f85137e8cee09dde353a651266", + "symbol": "MC", + "decimals": 18, + "name": "Mechaverse", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x9df90628d40c72f85137e8cee09dde353a651266.png", + "aggregators": ["PancakeCoinMarketCap", "Socket", "Rubic", "Rango"], + "occurrences": 4 + }, + "0xf3b185ab60128e4c08008fd90c3f1f01f4b78d50": { + "address": "0xf3b185ab60128e4c08008fd90c3f1f01f4b78d50", + "symbol": "METADOGE", + "decimals": 18, + "name": "MetaDoge BSC", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xf3b185ab60128e4c08008fd90c3f1f01f4b78d50.png", + "aggregators": [ + "PancakeCoinGecko", + "Socket", + "Rubic", + "Sonarwatch" + ], + "occurrences": 4 + }, + "0xa1a0c7849e6916945a78f8af843738c051ab15f3": { + "address": "0xa1a0c7849e6916945a78f8af843738c051ab15f3", + "symbol": "METAMOON", + "decimals": 9, + "name": "MetaMoon", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xa1a0c7849e6916945a78f8af843738c051ab15f3.png", + "aggregators": [ + "PancakeCoinMarketCap", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 4 + }, + "0x19da1f6a5c2aec9315bf16d14ce7f7163082bf82": { + "address": "0x19da1f6a5c2aec9315bf16d14ce7f7163082bf82", + "symbol": "METAQ", + "decimals": 18, + "name": "MetaQ", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x19da1f6a5c2aec9315bf16d14ce7f7163082bf82.png", + "aggregators": [ + "PancakeCoinMarketCap", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 4 + }, + "0x03ac6ab6a9a91a0fcdec7d85b38bdfbb719ec02f": { + "address": "0x03ac6ab6a9a91a0fcdec7d85b38bdfbb719ec02f", + "symbol": "MGA", + "decimals": 18, + "name": "Metagame Arena", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x03ac6ab6a9a91a0fcdec7d85b38bdfbb719ec02f.png", + "aggregators": [ + "PancakeCoinMarketCap", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 4 + }, + "0xbf37f781473f3b50e82c668352984865eac9853f": { + "address": "0xbf37f781473f3b50e82c668352984865eac9853f", + "symbol": "MILK", + "decimals": 18, + "name": "Milk", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xbf37f781473f3b50e82c668352984865eac9853f.png", + "aggregators": ["PancakeCoinMarketCap", "Socket", "Rubic", "Rango"], + "occurrences": 4 + }, + "0x6d4e8507084c7b58d33b3b88915591670f959b2f": { + "address": "0x6d4e8507084c7b58d33b3b88915591670f959b2f", + "symbol": "MINAR", + "decimals": 18, + "name": "Miner Arena", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x6d4e8507084c7b58d33b3b88915591670f959b2f.png", + "aggregators": [ + "PancakeCoinMarketCap", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 4 + }, + "0x934b0633f4874ca9340341ad66ff2f6ce3124b4c": { + "address": "0x934b0633f4874ca9340341ad66ff2f6ce3124b4c", + "symbol": "MISA", + "decimals": 18, + "name": "Sangkara", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x934b0633f4874ca9340341ad66ff2f6ce3124b4c.png", + "aggregators": [ + "PancakeCoinMarketCap", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 4 + }, + "0xcd03f8a59252f317a679eddb5315150f40d06e5e": { + "address": "0xcd03f8a59252f317a679eddb5315150f40d06e5e", + "symbol": "MNR", + "decimals": 18, + "name": "Mooner", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xcd03f8a59252f317a679eddb5315150f40d06e5e.png", + "aggregators": [ + "PancakeCoinMarketCap", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 4 + }, + "0x211fa9e7e390c29b0ab1a9248949a0ab716c4154": { + "address": "0x211fa9e7e390c29b0ab1a9248949a0ab716c4154", + "symbol": "MOM", + "decimals": 9, + "name": "Mother of Memes", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x211fa9e7e390c29b0ab1a9248949a0ab716c4154.png", + "aggregators": [ + "PancakeCoinMarketCap", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 4 + }, + "0x7e60c74b9096f8fa6fb5a9fd88405ded8b7d44f3": { + "address": "0x7e60c74b9096f8fa6fb5a9fd88405ded8b7d44f3", + "symbol": "MONIE", + "decimals": 18, + "name": "Infiblue World", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x7e60c74b9096f8fa6fb5a9fd88405ded8b7d44f3.png", + "aggregators": [ + "PancakeCoinMarketCap", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 4 + }, + "0x9073b858a7cdf121e6bf8d1367e200e5d0cc0188": { + "address": "0x9073b858a7cdf121e6bf8d1367e200e5d0cc0188", + "symbol": "MOONION", + "decimals": 18, + "name": "Moonions", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x9073b858a7cdf121e6bf8d1367e200e5d0cc0188.png", + "aggregators": [ + "PancakeCoinMarketCap", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 4 + }, + "0xf3f3d7f713df0447e9595d9b830a5f00297070e4": { + "address": "0xf3f3d7f713df0447e9595d9b830a5f00297070e4", + "symbol": "MOT", + "decimals": 9, + "name": "Mother Earth", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xf3f3d7f713df0447e9595d9b830a5f00297070e4.png", + "aggregators": [ + "PancakeCoinMarketCap", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 4 + }, + "0x11d1ac5ec23e3a193e8a491a198f5fc9ee715839": { + "address": "0x11d1ac5ec23e3a193e8a491a198f5fc9ee715839", + "symbol": "MPAD", + "decimals": 18, + "name": "MultiPad", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x11d1ac5ec23e3a193e8a491a198f5fc9ee715839.png", + "aggregators": [ + "PancakeCoinMarketCap", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 4 + }, + "0x94c6b279b5df54b335ae51866d6e2a56bf5ef9b7": { + "address": "0x94c6b279b5df54b335ae51866d6e2a56bf5ef9b7", + "symbol": "MPX", + "decimals": 18, + "name": "MPX", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x94c6b279b5df54b335ae51866d6e2a56bf5ef9b7.png", + "aggregators": ["PancakeCoinGecko", "Rubic", "Squid", "Rango"], + "occurrences": 4 + }, + "0xdd5a149740c055bdcdc5c066888f739dbe0bf2d0": { + "address": "0xdd5a149740c055bdcdc5c066888f739dbe0bf2d0", + "symbol": "MSWAP", + "decimals": 18, + "name": "MoneySwap", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xdd5a149740c055bdcdc5c066888f739dbe0bf2d0.png", + "aggregators": [ + "PancakeCoinMarketCap", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 4 + }, + "0xcc0d48a5530cca0481105ccd61a14c495a51c901": { + "address": "0xcc0d48a5530cca0481105ccd61a14c495a51c901", + "symbol": "MTHN", + "decimals": 12, + "name": "MTH Network", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xcc0d48a5530cca0481105ccd61a14c495a51c901.png", + "aggregators": [ + "PancakeCoinMarketCap", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 4 + }, + "0x08b87b1cfdba00dfb79d77cac1a5970ba6c9cde2": { + "address": "0x08b87b1cfdba00dfb79d77cac1a5970ba6c9cde2", + "symbol": "MTRX", + "decimals": 18, + "name": "Metarix", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x08b87b1cfdba00dfb79d77cac1a5970ba6c9cde2.png", + "aggregators": [ + "PancakeCoinMarketCap", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 4 + }, + "0xf8bacadc39f2bfe86df4c48a1e87c9aa89d7d018": { + "address": "0xf8bacadc39f2bfe86df4c48a1e87c9aa89d7d018", + "symbol": "MVU", + "decimals": 18, + "name": "Memes vs Undead", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xf8bacadc39f2bfe86df4c48a1e87c9aa89d7d018.png", + "aggregators": [ + "PancakeCoinMarketCap", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 4 + }, + "0xdf1f7adf59a178ba83f6140a4930cf3beb7b73bf": { + "address": "0xdf1f7adf59a178ba83f6140a4930cf3beb7b73bf", + "symbol": "MXD", + "decimals": 9, + "name": "Denarius MXD", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xdf1f7adf59a178ba83f6140a4930cf3beb7b73bf.png", + "aggregators": [ + "PancakeCoinMarketCap", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 4 + }, + "0x5989d72a559eb0192f2d20170a43a4bd28a1b174": { + "address": "0x5989d72a559eb0192f2d20170a43a4bd28a1b174", + "symbol": "N1", + "decimals": 18, + "name": "NFTify", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x5989d72a559eb0192f2d20170a43a4bd28a1b174.png", + "aggregators": [ + "PancakeCoinMarketCap", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 4 + }, + "0x74c22834744e8d5e36c79420ff7b057964aba8a7": { + "address": "0x74c22834744e8d5e36c79420ff7b057964aba8a7", + "symbol": "NBP", + "decimals": 18, + "name": "NFTBomb", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x74c22834744e8d5e36c79420ff7b057964aba8a7.png", + "aggregators": [ + "PancakeCoinMarketCap", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 4 + }, + "0xe7498f332c35a346b486f3f6a68f05934e92a228": { + "address": "0xe7498f332c35a346b486f3f6a68f05934e92a228", + "symbol": "NEVA", + "decimals": 18, + "name": "NevaCoin", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xe7498f332c35a346b486f3f6a68f05934e92a228.png", + "aggregators": [ + "PancakeCoinMarketCap", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 4 + }, + "0x5ac5e6af46ef285b3536833e65d245c49b608d9b": { + "address": "0x5ac5e6af46ef285b3536833e65d245c49b608d9b", + "symbol": "NIOB", + "decimals": 18, + "name": "NIOB", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x5ac5e6af46ef285b3536833e65d245c49b608d9b.png", + "aggregators": [ + "PancakeCoinMarketCap", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 4 + }, + "0xa67ed14c65e7b717674f0d66570c13e77583a68f": { + "address": "0xa67ed14c65e7b717674f0d66570c13e77583a68f", + "symbol": "NMD", + "decimals": 18, + "name": "NexusMind", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xa67ed14c65e7b717674f0d66570c13e77583a68f.png", + "aggregators": [ + "PancakeCoinMarketCap", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 4 + }, + "0x30683d46edd7e2a52402e5301b14db33bd4ff550": { + "address": "0x30683d46edd7e2a52402e5301b14db33bd4ff550", + "symbol": "NOMOX", + "decimals": 8, + "name": "NOMOEX Token", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x30683d46edd7e2a52402e5301b14db33bd4ff550.png", + "aggregators": [ + "PancakeCoinMarketCap", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 4 + }, + "0x57f12fe6a4e5fe819eec699fadf9db2d06606bb4": { + "address": "0x57f12fe6a4e5fe819eec699fadf9db2d06606bb4", + "symbol": "NPM", + "decimals": 18, + "name": "Neptune Mutual", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x57f12fe6a4e5fe819eec699fadf9db2d06606bb4.png", + "aggregators": [ + "PancakeCoinMarketCap", + "Rubic", + "Rango", + "SushiSwap" + ], + "occurrences": 4 + }, + "0x69fa8e7f6bf1ca1fb0de61e1366f7412b827cc51": { + "address": "0x69fa8e7f6bf1ca1fb0de61e1366f7412b827cc51", + "symbol": "NRCH", + "decimals": 9, + "name": "Enreach", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x69fa8e7f6bf1ca1fb0de61e1366f7412b827cc51.png", + "aggregators": [ + "PancakeCoinMarketCap", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 4 + }, + "0x9d71ce49ab8a0e6d2a1e7bfb89374c9392fd6804": { + "address": "0x9d71ce49ab8a0e6d2a1e7bfb89374c9392fd6804", + "symbol": "NVIR", + "decimals": 18, + "name": "NvirWorld", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x9d71ce49ab8a0e6d2a1e7bfb89374c9392fd6804.png", + "aggregators": [ + "PancakeCoinMarketCap", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 4 + }, + "0x0c27b49db71a9fb6e9cf97f7cbb0cf3f0e97f920": { + "address": "0x0c27b49db71a9fb6e9cf97f7cbb0cf3f0e97f920", + "symbol": "NYANTE", + "decimals": 18, + "name": "Nyantereum International", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x0c27b49db71a9fb6e9cf97f7cbb0cf3f0e97f920.png", + "aggregators": [ + "PancakeCoinMarketCap", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 4 + }, + "0xa94fb437b8bacb591c6b828bef5a837afe542100": { + "address": "0xa94fb437b8bacb591c6b828bef5a837afe542100", + "symbol": "NZERO", + "decimals": 18, + "name": "NETZERO", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xa94fb437b8bacb591c6b828bef5a837afe542100.png", + "aggregators": [ + "PancakeCoinMarketCap", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 4 + }, + "0x095956b142431eb9cf88b99f392540b91acbf4ad": { + "address": "0x095956b142431eb9cf88b99f392540b91acbf4ad", + "symbol": "OBS", + "decimals": 18, + "name": "One Basis Cash", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x095956b142431eb9cf88b99f392540b91acbf4ad.png", + "aggregators": [ + "PancakeCoinMarketCap", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 4 + }, + "0x07f9702ce093db82dfdc92c2c6e578d6ea8d5e22": { + "address": "0x07f9702ce093db82dfdc92c2c6e578d6ea8d5e22", + "symbol": "OBT", + "decimals": 18, + "name": "Oobit", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x07f9702ce093db82dfdc92c2c6e578d6ea8d5e22.png", + "aggregators": [ + "PancakeCoinMarketCap", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 4 + }, + "0xb0461d7e8212d311b842a58e9989ede849ac6816": { + "address": "0xb0461d7e8212d311b842a58e9989ede849ac6816", + "symbol": "OLAND", + "decimals": 18, + "name": "OceanLand", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xb0461d7e8212d311b842a58e9989ede849ac6816.png", + "aggregators": [ + "PancakeCoinMarketCap", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 4 + }, + "0xa2f89a3be1bada5eb9d58d23edc2e2fe0f82f4b0": { + "address": "0xa2f89a3be1bada5eb9d58d23edc2e2fe0f82f4b0", + "symbol": "OPA", + "decimals": 18, + "name": "Option Panda Platform", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xa2f89a3be1bada5eb9d58d23edc2e2fe0f82f4b0.png", + "aggregators": [ + "PancakeCoinMarketCap", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 4 + }, + "0x7a656f418afc09eaf4ae8b75eae74fe09e7a7706": { + "address": "0x7a656f418afc09eaf4ae8b75eae74fe09e7a7706", + "symbol": "OPY", + "decimals": 18, + "name": "OPYx", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x7a656f418afc09eaf4ae8b75eae74fe09e7a7706.png", + "aggregators": ["PancakeCoinGecko", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0xb0dba141b38e61d704168fab3ce7366575c503ad": { + "address": "0xb0dba141b38e61d704168fab3ce7366575c503ad", + "symbol": "ORE", + "decimals": 18, + "name": "Orenium Protocol", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xb0dba141b38e61d704168fab3ce7366575c503ad.png", + "aggregators": [ + "PancakeCoinMarketCap", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 4 + }, + "0xd61ec800066d4b8b1b3609ef91d50817193e6056": { + "address": "0xd61ec800066d4b8b1b3609ef91d50817193e6056", + "symbol": "PACT", + "decimals": 18, + "name": "impactMarket OLD ", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xd61ec800066d4b8b1b3609ef91d50817193e6056.png", + "aggregators": ["PancakeCoinGecko", "Socket", "Rubic", "Rango"], + "occurrences": 4 + }, + "0xa2dd9651f54320022af562ce5b25aea69b3b444c": { + "address": "0xa2dd9651f54320022af562ce5b25aea69b3b444c", + "symbol": "PAPA", + "decimals": 18, + "name": "PAPA BEAR", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xa2dd9651f54320022af562ce5b25aea69b3b444c.png", + "aggregators": [ + "PancakeCoinMarketCap", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 4 + }, + "0x91dba2cd05c8a0227b48c3e426077145d23b21df": { + "address": "0x91dba2cd05c8a0227b48c3e426077145d23b21df", + "symbol": "PAPU", + "decimals": 18, + "name": "Papu Token", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x91dba2cd05c8a0227b48c3e426077145d23b21df.png", + "aggregators": [ + "PancakeCoinMarketCap", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 4 + }, + "0xf7f0dc9fd88e436847580d883319137ec2aa6b94": { + "address": "0xf7f0dc9fd88e436847580d883319137ec2aa6b94", + "symbol": "PARMA", + "decimals": 18, + "name": "Parma Calcio 1913 Fan Token", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xf7f0dc9fd88e436847580d883319137ec2aa6b94.png", + "aggregators": [ + "PancakeCoinMarketCap", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 4 + }, + "0xfc914ecb4e4cbeea1fcf5315129c6cdb398cd465": { + "address": "0xfc914ecb4e4cbeea1fcf5315129c6cdb398cd465", + "symbol": "PAWS", + "decimals": 18, + "name": "PawStars", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xfc914ecb4e4cbeea1fcf5315129c6cdb398cd465.png", + "aggregators": [ + "PancakeCoinMarketCap", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 4 + }, + "0xdb5642fc3ffd7a8bdc2c837197736c54b120872d": { + "address": "0xdb5642fc3ffd7a8bdc2c837197736c54b120872d", + "symbol": "PAYS", + "decimals": 18, + "name": "Payslink Token", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xdb5642fc3ffd7a8bdc2c837197736c54b120872d.png", + "aggregators": [ + "PancakeCoinMarketCap", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 4 + }, + "0xb823746401d03ce7b4d748bb3e9c7a4912c68377": { + "address": "0xb823746401d03ce7b4d748bb3e9c7a4912c68377", + "symbol": "PAYX", + "decimals": 18, + "name": "PayX", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xb823746401d03ce7b4d748bb3e9c7a4912c68377.png", + "aggregators": [ + "PancakeCoinMarketCap", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 4 + }, + "0x1d1cb8997570e73949930c01fe5796c88d7336c6": { + "address": "0x1d1cb8997570e73949930c01fe5796c88d7336c6", + "symbol": "PBR", + "decimals": 18, + "name": "PolkaBridge", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x1d1cb8997570e73949930c01fe5796c88d7336c6.png", + "aggregators": ["PancakeCoinMarketCap", "Socket", "Rubic", "Rango"], + "occurrences": 4 + }, + "0xc1cbfb96a1d5361590b8df04ef78de2fa3178390": { + "address": "0xc1cbfb96a1d5361590b8df04ef78de2fa3178390", + "symbol": "PCHF", + "decimals": 18, + "name": "Peachfolio", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xc1cbfb96a1d5361590b8df04ef78de2fa3178390.png", + "aggregators": [ + "PancakeCoinMarketCap", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 4 + }, + "0x0fc170b2b697f9a97a2fe4ae26b02495aa5ff2c2": { + "address": "0x0fc170b2b697f9a97a2fe4ae26b02495aa5ff2c2", + "symbol": "PEACHY", + "decimals": 18, + "name": "PEACHY", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x0fc170b2b697f9a97a2fe4ae26b02495aa5ff2c2.png", + "aggregators": [ + "PancakeCoinMarketCap", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 4 + }, + "0xd585f9c5953ca97da3551f20725a274c9e442ff3": { + "address": "0xd585f9c5953ca97da3551f20725a274c9e442ff3", + "symbol": "PEG", + "decimals": 9, + "name": "Pegazus Finance", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xd585f9c5953ca97da3551f20725a274c9e442ff3.png", + "aggregators": [ + "PancakeCoinMarketCap", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 4 + }, + "0x22178c1b9e0455d5d20661e5aa8f34354f888888": { + "address": "0x22178c1b9e0455d5d20661e5aa8f34354f888888", + "symbol": "PEIPEI", + "decimals": 18, + "name": "Chinese PEPE", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x22178c1b9e0455d5d20661e5aa8f34354f888888.png", + "aggregators": [ + "PancakeCoinGecko", + "Socket", + "Rubic", + "Sonarwatch" + ], + "occurrences": 4 + }, + "0xa5dec77c4d1b4eba2807c9926b182812a0cbf9eb": { + "address": "0xa5dec77c4d1b4eba2807c9926b182812a0cbf9eb", + "symbol": "PEN", + "decimals": 18, + "name": "Protocon", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xa5dec77c4d1b4eba2807c9926b182812a0cbf9eb.png", + "aggregators": [ + "PancakeCoinMarketCap", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 4 + }, + "0x47fd014706081068448b89fc6baca2730977216a": { + "address": "0x47fd014706081068448b89fc6baca2730977216a", + "symbol": "PEPEBNB", + "decimals": 9, + "name": "Pepe the Frog", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x47fd014706081068448b89fc6baca2730977216a.png", + "aggregators": [ + "PancakeCoinMarketCap", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 4 + }, + "0x2a5472268d5b176f5ef28d7a53c8258bbce26313": { + "address": "0x2a5472268d5b176f5ef28d7a53c8258bbce26313", + "symbol": "PEPECASH", + "decimals": 18, + "name": "PEPECASH", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x2a5472268d5b176f5ef28d7a53c8258bbce26313.png", + "aggregators": [ + "PancakeCoinMarketCap", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 4 + }, + "0xa7ebcb0da35a8b6d2ea6943faec8949676a316cd": { + "address": "0xa7ebcb0da35a8b6d2ea6943faec8949676a316cd", + "symbol": "PERRY", + "decimals": 18, + "name": "Perry The BNB", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xa7ebcb0da35a8b6d2ea6943faec8949676a316cd.png", + "aggregators": [ + "PancakeCoinMarketCap", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 4 + }, + "0x33a64943a0eaecc2b06b10f89686b797ba75ffad": { + "address": "0x33a64943a0eaecc2b06b10f89686b797ba75ffad", + "symbol": "PGPT", + "decimals": 6, + "name": "PrivateAI", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x33a64943a0eaecc2b06b10f89686b797ba75ffad.png", + "aggregators": [ + "PancakeCoinMarketCap", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 4 + }, + "0x4399ae7538c33ca24edd4c28c5dd7ce9a80acf81": { + "address": "0x4399ae7538c33ca24edd4c28c5dd7ce9a80acf81", + "symbol": "PHM", + "decimals": 18, + "name": "Phantom Protocol", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x4399ae7538c33ca24edd4c28c5dd7ce9a80acf81.png", + "aggregators": [ + "PancakeCoinMarketCap", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 4 + }, + "0x880ab5bede12d05e125ce21689d8a5e230b38cd6": { + "address": "0x880ab5bede12d05e125ce21689d8a5e230b38cd6", + "symbol": "PIKA", + "decimals": 18, + "name": "Pika Protocol", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x880ab5bede12d05e125ce21689d8a5e230b38cd6.png", + "aggregators": [ + "PancakeCoinMarketCap", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 4 + }, + "0x7de324ad84858484f1fa7cb3d6777b74942d7a55": { + "address": "0x7de324ad84858484f1fa7cb3d6777b74942d7a55", + "symbol": "PIPE", + "decimals": 18, + "name": "Quantum Pipeline", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x7de324ad84858484f1fa7cb3d6777b74942d7a55.png", + "aggregators": ["PancakeCoinGecko", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0x47db24e17c0c4622523449a239b3de746e2b0b23": { + "address": "0x47db24e17c0c4622523449a239b3de746e2b0b23", + "symbol": "PIXEL", + "decimals": 18, + "name": "PixelVerse", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x47db24e17c0c4622523449a239b3de746e2b0b23.png", + "aggregators": [ + "PancakeCoinMarketCap", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 4 + }, + "0xfc646d0b564bf191b3d3adf2b620a792e485e6da": { + "address": "0xfc646d0b564bf191b3d3adf2b620a792e485e6da", + "symbol": "PIZA", + "decimals": 18, + "name": "Half Pizza", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xfc646d0b564bf191b3d3adf2b620a792e485e6da.png", + "aggregators": [ + "PancakeCoinMarketCap", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 4 + }, + "0xfe642f7463b7a2ab67690209ed5a070a46b66064": { + "address": "0xfe642f7463b7a2ab67690209ed5a070a46b66064", + "symbol": "PLAYFI", + "decimals": 18, + "name": "PlayFi", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xfe642f7463b7a2ab67690209ed5a070a46b66064.png", + "aggregators": ["PancakeCoinGecko", "Socket", "Rubic", "Rango"], + "occurrences": 4 + }, + "0x320f6c1304e1a2a50a0febb62ba6a9700043d152": { + "address": "0x320f6c1304e1a2a50a0febb62ba6a9700043d152", + "symbol": "PME", + "decimals": 18, + "name": "Pomerium Community Meme Token", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x320f6c1304e1a2a50a0febb62ba6a9700043d152.png", + "aggregators": [ + "PancakeCoinMarketCap", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 4 + }, + "0x6c1efbed2f57dd486ec091dffd08ee5235a570b1": { + "address": "0x6c1efbed2f57dd486ec091dffd08ee5235a570b1", + "symbol": "PNDR", + "decimals": 18, + "name": "Pandora Finance", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x6c1efbed2f57dd486ec091dffd08ee5235a570b1.png", + "aggregators": [ + "PancakeCoinMarketCap", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 4 + }, + "0x63bc9770ea9a2f21df6cc1224d64d8dec9c61a74": { + "address": "0x63bc9770ea9a2f21df6cc1224d64d8dec9c61a74", + "symbol": "POP", + "decimals": 18, + "name": "Popcoin", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x63bc9770ea9a2f21df6cc1224d64d8dec9c61a74.png", + "aggregators": [ + "PancakeCoinMarketCap", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 4 + }, + "0x1bb76a939d6b7f5be6b95c4f9f822b02b4d62ced": { + "address": "0x1bb76a939d6b7f5be6b95c4f9f822b02b4d62ced", + "symbol": "POP", + "decimals": 18, + "name": "POP Network", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x1bb76a939d6b7f5be6b95c4f9f822b02b4d62ced.png", + "aggregators": [ + "PancakeCoinMarketCap", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 4 + }, + "0xdf061250302e5ccae091b18ca2b45914d785f214": { + "address": "0xdf061250302e5ccae091b18ca2b45914d785f214", + "symbol": "PPT", + "decimals": 18, + "name": "Pop Token", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xdf061250302e5ccae091b18ca2b45914d785f214.png", + "aggregators": [ + "PancakeCoinMarketCap", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 4 + }, + "0x9f402f44684574f3535ea6f1bb5cfbffef42ee28": { + "address": "0x9f402f44684574f3535ea6f1bb5cfbffef42ee28", + "symbol": "PRNT", + "decimals": 18, + "name": "PrimeNumbers", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x9f402f44684574f3535ea6f1bb5cfbffef42ee28.png", + "aggregators": ["PancakeCoinGecko", "Socket", "Rubic", "Rango"], + "occurrences": 4 + }, + "0x84afb95ca5589674e02d227bdd6da7e7dcf31a3e": { + "address": "0x84afb95ca5589674e02d227bdd6da7e7dcf31a3e", + "symbol": "PRP", + "decimals": 9, + "name": "Perpetuum Coin", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x84afb95ca5589674e02d227bdd6da7e7dcf31a3e.png", + "aggregators": [ + "PancakeCoinMarketCap", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 4 + }, + "0xaf00aac2431b04ef6afd904d19b08d5146e3a9a0": { + "address": "0xaf00aac2431b04ef6afd904d19b08d5146e3a9a0", + "symbol": "PRT", + "decimals": 18, + "name": "Portion", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xaf00aac2431b04ef6afd904d19b08d5146e3a9a0.png", + "aggregators": ["PancakeCoinMarketCap", "Socket", "Rubic", "Rango"], + "occurrences": 4 + }, + "0xda2c0cdf7d764f8c587380cadf7129e5ecb7efb7": { + "address": "0xda2c0cdf7d764f8c587380cadf7129e5ecb7efb7", + "symbol": "PUPPETS", + "decimals": 18, + "name": "Puppets Coin", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xda2c0cdf7d764f8c587380cadf7129e5ecb7efb7.png", + "aggregators": [ + "PancakeCoinMarketCap", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 4 + }, + "0xeb79c85c6d633ae81c97be71e1691ee7dc6e132d": { + "address": "0xeb79c85c6d633ae81c97be71e1691ee7dc6e132d", + "symbol": "PXT", + "decimals": 18, + "name": "Pixer Eternity", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xeb79c85c6d633ae81c97be71e1691ee7dc6e132d.png", + "aggregators": [ + "PancakeCoinMarketCap", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 4 + }, + "0xe6df015f66653ece085a5fbba8d42c356114ce4f": { + "address": "0xe6df015f66653ece085a5fbba8d42c356114ce4f", + "symbol": "PYO", + "decimals": 18, + "name": "Pyrrho", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xe6df015f66653ece085a5fbba8d42c356114ce4f.png", + "aggregators": [ + "PancakeCoinMarketCap", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 4 + }, + "0x921d3a6ed8223afb6358410f717e2fb13cbae700": { + "address": "0x921d3a6ed8223afb6358410f717e2fb13cbae700", + "symbol": "QRT", + "decimals": 9, + "name": "Qrkita", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x921d3a6ed8223afb6358410f717e2fb13cbae700.png", + "aggregators": [ + "PancakeCoinMarketCap", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 4 + }, + "0x4c8a3a1025ab87ef184cb7f0691a5a371fe783a6": { + "address": "0x4c8a3a1025ab87ef184cb7f0691a5a371fe783a6", + "symbol": "RAKE", + "decimals": 6, + "name": "Rake.in", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x4c8a3a1025ab87ef184cb7f0691a5a371fe783a6.png", + "aggregators": ["PancakeCoinMarketCap", "Socket", "Rubic", "Rango"], + "occurrences": 4 + }, + "0x891e4554227385c5c740f9b483e935e3cbc29f01": { + "address": "0x891e4554227385c5c740f9b483e935e3cbc29f01", + "symbol": "RBT", + "decimals": 18, + "name": "Robust", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x891e4554227385c5c740f9b483e935e3cbc29f01.png", + "aggregators": [ + "PancakeCoinMarketCap", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 4 + }, + "0xf29cccc3460506e8f9bc038d4716c05b76b0441e": { + "address": "0xf29cccc3460506e8f9bc038d4716c05b76b0441e", + "symbol": "RDF", + "decimals": 18, + "name": "ReadFi", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xf29cccc3460506e8f9bc038d4716c05b76b0441e.png", + "aggregators": [ + "PancakeCoinMarketCap", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 4 + }, + "0x641a6dc991a49f7be9fe3c72c5d0fbb223edb12f": { + "address": "0x641a6dc991a49f7be9fe3c72c5d0fbb223edb12f", + "symbol": "REFI", + "decimals": 18, + "name": "RealfinanceNetwork", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x641a6dc991a49f7be9fe3c72c5d0fbb223edb12f.png", + "aggregators": ["PancakeCoinMarketCap", "Socket", "Rubic", "Rango"], + "occurrences": 4 + }, + "0xb44c63a09adf51f5e62cc7b63628b1b789941fa0": { + "address": "0xb44c63a09adf51f5e62cc7b63628b1b789941fa0", + "symbol": "RFX", + "decimals": 9, + "name": "Reflex", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xb44c63a09adf51f5e62cc7b63628b1b789941fa0.png", + "aggregators": [ + "PancakeCoinMarketCap", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 4 + }, + "0xd73e883e203646e87f6d073baf3d7719bda68bcb": { + "address": "0xd73e883e203646e87f6d073baf3d7719bda68bcb", + "symbol": "RHYTHM", + "decimals": 9, + "name": "Rhythm", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xd73e883e203646e87f6d073baf3d7719bda68bcb.png", + "aggregators": [ + "PancakeCoinMarketCap", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 4 + }, + "0xc0994af94fee0361a1e1e1ccf72bce19d5fd86fb": { + "address": "0xc0994af94fee0361a1e1e1ccf72bce19d5fd86fb", + "symbol": "RICH", + "decimals": 9, + "name": "RichCity", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xc0994af94fee0361a1e1e1ccf72bce19d5fd86fb.png", + "aggregators": [ + "PancakeCoinMarketCap", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 4 + }, + "0xa25199a79a34cc04b15e5c0bba4e3a557364e532": { + "address": "0xa25199a79a34cc04b15e5c0bba4e3a557364e532", + "symbol": "RIM", + "decimals": 18, + "name": "MetaRim", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xa25199a79a34cc04b15e5c0bba4e3a557364e532.png", + "aggregators": [ + "PancakeCoinMarketCap", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 4 + }, + "0x8c49a510756224e887b3d99d00d959f2d86dda1c": { + "address": "0x8c49a510756224e887b3d99d00d959f2d86dda1c", + "symbol": "RIO", + "decimals": 18, + "name": "Realio Network", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x8c49a510756224e887b3d99d00d959f2d86dda1c.png", + "aggregators": ["PancakeCoinGecko", "Socket", "Rubic", "Rango"], + "occurrences": 4 + }, + "0x788d2780992222360f674cc12c36478870b8e6ed": { + "address": "0x788d2780992222360f674cc12c36478870b8e6ed", + "symbol": "S4F", + "decimals": 18, + "name": "S4FE", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x788d2780992222360f674cc12c36478870b8e6ed.png", + "aggregators": [ + "PancakeCoinMarketCap", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 4 + }, + "0x5cdabc6bc3b14a77a502cce5ea05d04a0cf52557": { + "address": "0x5cdabc6bc3b14a77a502cce5ea05d04a0cf52557", + "symbol": "SAFEMOO", + "decimals": 18, + "name": "SafeMoo", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x5cdabc6bc3b14a77a502cce5ea05d04a0cf52557.png", + "aggregators": [ + "PancakeCoinMarketCap", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 4 + }, + "0x890cc7d14948478c98a6cd7f511e1f7f7f99f397": { + "address": "0x890cc7d14948478c98a6cd7f511e1f7f7f99f397", + "symbol": "SAFU", + "decimals": 9, + "name": "StaySAFU", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x890cc7d14948478c98a6cd7f511e1f7f7f99f397.png", + "aggregators": [ + "PancakeCoinMarketCap", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 4 + }, + "0x4d496efc21754481fe7a9f3f0f758785ade8e1d3": { + "address": "0x4d496efc21754481fe7a9f3f0f758785ade8e1d3", + "symbol": "SANINU", + "decimals": 18, + "name": "Santa Inu", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x4d496efc21754481fe7a9f3f0f758785ade8e1d3.png", + "aggregators": [ + "PancakeCoinMarketCap", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 4 + }, + "0xf251d850898758775958691df66895d0b5f837ad": { + "address": "0xf251d850898758775958691df66895d0b5f837ad", + "symbol": "SAP", + "decimals": 9, + "name": "Satoshi Panda", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xf251d850898758775958691df66895d0b5f837ad.png", + "aggregators": [ + "PancakeCoinMarketCap", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 4 + }, + "0x6af2f57f61cec0883c71f3175774ebeb290a10e6": { + "address": "0x6af2f57f61cec0883c71f3175774ebeb290a10e6", + "symbol": "SCIE", + "decimals": 9, + "name": "Scientia", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x6af2f57f61cec0883c71f3175774ebeb290a10e6.png", + "aggregators": [ + "PancakeCoinMarketCap", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 4 + }, + "0x510aeb87665d3fce5395a62045c5b7ae8990bf35": { + "address": "0x510aeb87665d3fce5395a62045c5b7ae8990bf35", + "symbol": "SDX", + "decimals": 18, + "name": "Steakd", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x510aeb87665d3fce5395a62045c5b7ae8990bf35.png", + "aggregators": [ + "PancakeCoinMarketCap", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 4 + }, + "0x5de40c1152c990492eaeaeecc4ecaab788bbc4fd": { + "address": "0x5de40c1152c990492eaeaeecc4ecaab788bbc4fd", + "symbol": "SEF", + "decimals": 18, + "name": "Segment Finance", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x5de40c1152c990492eaeaeecc4ecaab788bbc4fd.png", + "aggregators": ["PancakeCoinGecko", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0x63e77cf206801782239d4f126cfa22b517fb4edb": { + "address": "0x63e77cf206801782239d4f126cfa22b517fb4edb", + "symbol": "SENSI", + "decimals": 9, + "name": "Sensi", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x63e77cf206801782239d4f126cfa22b517fb4edb.png", + "aggregators": [ + "PancakeCoinMarketCap", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 4 + }, + "0x965b85d4674f64422c4898c8f8083187f02b32c0": { + "address": "0x965b85d4674f64422c4898c8f8083187f02b32c0", + "symbol": "SFIL", + "decimals": 8, + "name": "Filecoin Standard Full Hashrate", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x965b85d4674f64422c4898c8f8083187f02b32c0.png", + "aggregators": [ + "PancakeCoinMarketCap", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 4 + }, + "0xe9d6d6d7cde5c7d45927f8c37460d932e612c902": { + "address": "0xe9d6d6d7cde5c7d45927f8c37460d932e612c902", + "symbol": "SFTY", + "decimals": 18, + "name": "Stella Fantasy Token", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xe9d6d6d7cde5c7d45927f8c37460d932e612c902.png", + "aggregators": [ + "PancakeCoinMarketCap", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 4 + }, + "0x5f50411cde3eec27b0eac21691b4e500c69a5a2e": { + "address": "0x5f50411cde3eec27b0eac21691b4e500c69a5a2e", + "symbol": "SGLY", + "decimals": 18, + "name": "Singularity", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x5f50411cde3eec27b0eac21691b4e500c69a5a2e.png", + "aggregators": [ + "PancakeCoinMarketCap", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 4 + }, + "0x783fe4a84645431b31b914b609b86127b96057ea": { + "address": "0x783fe4a84645431b31b914b609b86127b96057ea", + "symbol": "SGT", + "decimals": 9, + "name": "SpaceGoat", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x783fe4a84645431b31b914b609b86127b96057ea.png", + "aggregators": [ + "PancakeCoinMarketCap", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 4 + }, + "0x1f6c1516bdeba1a01643b792eb12d68cec8658ba": { + "address": "0x1f6c1516bdeba1a01643b792eb12d68cec8658ba", + "symbol": "SHACK", + "decimals": 18, + "name": "Shackleford", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x1f6c1516bdeba1a01643b792eb12d68cec8658ba.png", + "aggregators": [ + "PancakeCoinMarketCap", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 4 + }, + "0x53c2a6cc05f9647d59201b19cb5f5e42cc6dc524": { + "address": "0x53c2a6cc05f9647d59201b19cb5f5e42cc6dc524", + "symbol": "SHAK", + "decimals": 9, + "name": "Shakita Inu", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x53c2a6cc05f9647d59201b19cb5f5e42cc6dc524.png", + "aggregators": [ + "PancakeCoinMarketCap", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 4 + }, + "0x864f20c06fff47e3130de2e1269d6067b67aa69d": { + "address": "0x864f20c06fff47e3130de2e1269d6067b67aa69d", + "symbol": "SHIBCEO", + "decimals": 9, + "name": "ShibCEO", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x864f20c06fff47e3130de2e1269d6067b67aa69d.png", + "aggregators": [ + "PancakeCoinMarketCap", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 4 + }, + "0xc0f42b31d154234a0a3ebe7ec52c662101c1d9bc": { + "address": "0xc0f42b31d154234a0a3ebe7ec52c662101c1d9bc", + "symbol": "SHOE", + "decimals": 18, + "name": "ShoeFy", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xc0f42b31d154234a0a3ebe7ec52c662101c1d9bc.png", + "aggregators": [ + "PancakeCoinMarketCap", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 4 + }, + "0xcfa784a3e9e7e9c88a845ab9afa8f3b95fcdf5d0": { + "address": "0xcfa784a3e9e7e9c88a845ab9afa8f3b95fcdf5d0", + "symbol": "SHR", + "decimals": 18, + "name": "SHREE", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xcfa784a3e9e7e9c88a845ab9afa8f3b95fcdf5d0.png", + "aggregators": [ + "PancakeCoinMarketCap", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 4 + }, + "0x68b5edb385b59e30a7a7db1e681a449e94df0213": { + "address": "0x68b5edb385b59e30a7a7db1e681a449e94df0213", + "symbol": "SILVA", + "decimals": 9, + "name": "Silva", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x68b5edb385b59e30a7a7db1e681a449e94df0213.png", + "aggregators": [ + "PancakeCoinMarketCap", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 4 + }, + "0x939dd9e433552e325d78c33a16ef4cd8004d2f9c": { + "address": "0x939dd9e433552e325d78c33a16ef4cd8004d2f9c", + "symbol": "SN", + "decimals": 18, + "name": "SpaceN", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x939dd9e433552e325d78c33a16ef4cd8004d2f9c.png", + "aggregators": [ + "PancakeCoinMarketCap", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 4 + }, + "0xf7d6243b937136d432adbc643f311b5a9436b0b0": { + "address": "0xf7d6243b937136d432adbc643f311b5a9436b0b0", + "symbol": "SNAKE", + "decimals": 18, + "name": "snake", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xf7d6243b937136d432adbc643f311b5a9436b0b0.png", + "aggregators": [ + "PancakeCoinMarketCap", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 4 + }, + "0x066cda0cca84e9c6ed0a4ecb92aa036a9582544b": { + "address": "0x066cda0cca84e9c6ed0a4ecb92aa036a9582544b", + "symbol": "SONIC", + "decimals": 9, + "name": "Sonic Inu", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x066cda0cca84e9c6ed0a4ecb92aa036a9582544b.png", + "aggregators": [ + "PancakeCoinMarketCap", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 4 + }, + "0xea136fc555e695ba96d22e10b7e2151c4c6b2a20": { + "address": "0xea136fc555e695ba96d22e10b7e2151c4c6b2a20", + "symbol": "SOURCE", + "decimals": 18, + "name": "ReSource Protocol", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xea136fc555e695ba96d22e10b7e2151c4c6b2a20.png", + "aggregators": [ + "PancakeCoinMarketCap", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 4 + }, + "0x156df0dd6300c73ac692d805720967cf4464776e": { + "address": "0x156df0dd6300c73ac692d805720967cf4464776e", + "symbol": "SPACES", + "decimals": 9, + "name": "AstroSpaces.io", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x156df0dd6300c73ac692d805720967cf4464776e.png", + "aggregators": [ + "PancakeCoinMarketCap", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 4 + }, + "0x1eaffd6b9ef0f45d663f3fbf402226c98609600e": { + "address": "0x1eaffd6b9ef0f45d663f3fbf402226c98609600e", + "symbol": "SPC", + "decimals": 18, + "name": "Storepay", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x1eaffd6b9ef0f45d663f3fbf402226c98609600e.png", + "aggregators": [ + "PancakeCoinMarketCap", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 4 + }, + "0xf1b6460e7fa76e7afddfe20740c260b0ec6807a8": { + "address": "0xf1b6460e7fa76e7afddfe20740c260b0ec6807a8", + "symbol": "SPEX", + "decimals": 18, + "name": "Speciex", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xf1b6460e7fa76e7afddfe20740c260b0ec6807a8.png", + "aggregators": [ + "PancakeCoinMarketCap", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 4 + }, + "0x8ea93d00cc6252e2bd02a34782487eed65738152": { + "address": "0x8ea93d00cc6252e2bd02a34782487eed65738152", + "symbol": "SPHRI", + "decimals": 18, + "name": "Spherium", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x8ea93d00cc6252e2bd02a34782487eed65738152.png", + "aggregators": [ + "PancakeCoinMarketCap", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 4 + }, + "0x6fc39ac154cfd20f1951a2823abab7ec471b783a": { + "address": "0x6fc39ac154cfd20f1951a2823abab7ec471b783a", + "symbol": "SPRITZMOON", + "decimals": 9, + "name": "SpritzMoon Crypto Token", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x6fc39ac154cfd20f1951a2823abab7ec471b783a.png", + "aggregators": [ + "PancakeCoinMarketCap", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 4 + }, + "0x722f41f6511ff7cda73a1cb0a9ea2f731738c4a0": { + "address": "0x722f41f6511ff7cda73a1cb0a9ea2f731738c4a0", + "symbol": "SRG", + "decimals": 18, + "name": "Street Runner", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x722f41f6511ff7cda73a1cb0a9ea2f731738c4a0.png", + "aggregators": [ + "PancakeCoinMarketCap", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 4 + }, + "0xcb2b25e783a414f0d20a65afa741c51b1ad84c49": { + "address": "0xcb2b25e783a414f0d20a65afa741c51b1ad84c49", + "symbol": "SRP", + "decimals": 18, + "name": "Starpad", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xcb2b25e783a414f0d20a65afa741c51b1ad84c49.png", + "aggregators": [ + "PancakeCoinMarketCap", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 4 + }, + "0x5396734569e26101677eb39c89413f7fa7d8006f": { + "address": "0x5396734569e26101677eb39c89413f7fa7d8006f", + "symbol": "SSTX", + "decimals": 7, + "name": "Silver Stonks", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x5396734569e26101677eb39c89413f7fa7d8006f.png", + "aggregators": [ + "PancakeCoinMarketCap", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 4 + }, + "0x14220f5893e945eed36389905b991d6b972e04f0": { + "address": "0x14220f5893e945eed36389905b991d6b972e04f0", + "symbol": "STACKS", + "decimals": 18, + "name": "STACKS", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x14220f5893e945eed36389905b991d6b972e04f0.png", + "aggregators": [ + "PancakeCoinMarketCap", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 4 + }, + "0x7f14ce2a5df31ad0d2bf658d3840b1f7559d3ee0": { + "address": "0x7f14ce2a5df31ad0d2bf658d3840b1f7559d3ee0", + "symbol": "STAY", + "decimals": 18, + "name": "NFsTay", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x7f14ce2a5df31ad0d2bf658d3840b1f7559d3ee0.png", + "aggregators": [ + "PancakeCoinMarketCap", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 4 + }, + "0x34a279ece38f260a28c8872f416319e9b6aa428e": { + "address": "0x34a279ece38f260a28c8872f416319e9b6aa428e", + "symbol": "STERN", + "decimals": 18, + "name": "Staked Ethos Reserve Note", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x34a279ece38f260a28c8872f416319e9b6aa428e.png", + "aggregators": ["PancakeCoinGecko", "Rubic", "Squid", "Rango"], + "occurrences": 4 + }, + "0x65d9033cff96782394dab5dbef17fa771bbe1732": { + "address": "0x65d9033cff96782394dab5dbef17fa771bbe1732", + "symbol": "STORE", + "decimals": 18, + "name": "Bit Store", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x65d9033cff96782394dab5dbef17fa771bbe1732.png", + "aggregators": [ + "PancakeCoinMarketCap", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 4 + }, + "0x85ee8e3e0068edeeee960979958d7f61416a9d84": { + "address": "0x85ee8e3e0068edeeee960979958d7f61416a9d84", + "symbol": "STORY", + "decimals": 18, + "name": "Story", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x85ee8e3e0068edeeee960979958d7f61416a9d84.png", + "aggregators": [ + "PancakeCoinMarketCap", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 4 + }, + "0x82e7eb8f4c307f2dcf522fdca7b7038296584f29": { + "address": "0x82e7eb8f4c307f2dcf522fdca7b7038296584f29", + "symbol": "SWAT", + "decimals": 18, + "name": "SWTCoin", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x82e7eb8f4c307f2dcf522fdca7b7038296584f29.png", + "aggregators": [ + "PancakeCoinMarketCap", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 4 + }, + "0xb1a5e3068837fcff1f7f2abf592a5de7a20b2a40": { + "address": "0xb1a5e3068837fcff1f7f2abf592a5de7a20b2a40", + "symbol": "SWT", + "decimals": 18, + "name": "SmartWalletToken", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xb1a5e3068837fcff1f7f2abf592a5de7a20b2a40.png", + "aggregators": ["PancakeCoinMarketCap", "Socket", "Rubic", "Rango"], + "occurrences": 4 + }, + "0xdc8c498cfc915dba55f0524fa9f5e57288110ab9": { + "address": "0xdc8c498cfc915dba55f0524fa9f5e57288110ab9", + "symbol": "THING", + "decimals": 9, + "name": "Thing", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xdc8c498cfc915dba55f0524fa9f5e57288110ab9.png", + "aggregators": [ + "PancakeCoinMarketCap", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 4 + }, + "0xd79bc26c424bcb52eec2708d224868c1499422c8": { + "address": "0xd79bc26c424bcb52eec2708d224868c1499422c8", + "symbol": "TKD", + "decimals": 18, + "name": "TOKUDA", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xd79bc26c424bcb52eec2708d224868c1499422c8.png", + "aggregators": [ + "PancakeCoinMarketCap", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 4 + }, + "0x29a5daf6e3fdf964def07706ea1abee7ec03d021": { + "address": "0x29a5daf6e3fdf964def07706ea1abee7ec03d021", + "symbol": "TLC", + "decimals": 18, + "name": "Trillioner", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x29a5daf6e3fdf964def07706ea1abee7ec03d021.png", + "aggregators": [ + "PancakeCoinMarketCap", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 4 + }, + "0xaee433adebe0fbb88daa47ef0c1a513caa52ef02": { + "address": "0xaee433adebe0fbb88daa47ef0c1a513caa52ef02", + "symbol": "TOON", + "decimals": 18, + "name": "Pontoon", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xaee433adebe0fbb88daa47ef0c1a513caa52ef02.png", + "aggregators": [ + "PancakeCoinMarketCap", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 4 + }, + "0x7e8db69dcff9209e486a100e611b0af300c3374e": { + "address": "0x7e8db69dcff9209e486a100e611b0af300c3374e", + "symbol": "TRDC", + "decimals": 18, + "name": "Traders Coin", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x7e8db69dcff9209e486a100e611b0af300c3374e.png", + "aggregators": [ + "PancakeCoinMarketCap", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 4 + }, + "0xd3b77ac07c963b8cead47000a5208434d9a8734d": { + "address": "0xd3b77ac07c963b8cead47000a5208434d9a8734d", + "symbol": "TREES", + "decimals": 9, + "name": "Safetrees", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xd3b77ac07c963b8cead47000a5208434d9a8734d.png", + "aggregators": [ + "PancakeCoinMarketCap", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 4 + }, + "0x328ea6e5ba4cc4b58799f2aec3d8ba839f4314ba": { + "address": "0x328ea6e5ba4cc4b58799f2aec3d8ba839f4314ba", + "symbol": "$TRUMAGA", + "decimals": 18, + "name": "TrumpMAGA", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x328ea6e5ba4cc4b58799f2aec3d8ba839f4314ba.png", + "aggregators": [ + "PancakeCoinMarketCap", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 4 + }, + "0x29a75ec2d2b8a57fdc45094dc51fefd147c908d8": { + "address": "0x29a75ec2d2b8a57fdc45094dc51fefd147c908d8", + "symbol": "TUR", + "decimals": 18, + "name": "Turex", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x29a75ec2d2b8a57fdc45094dc51fefd147c908d8.png", + "aggregators": ["PancakeCoinGecko", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0xd9a44c40584288505931880c9915c6a5eb5f2fb1": { + "address": "0xd9a44c40584288505931880c9915c6a5eb5f2fb1", + "symbol": "TYPE", + "decimals": 18, + "name": "TypeIt", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xd9a44c40584288505931880c9915c6a5eb5f2fb1.png", + "aggregators": [ + "PancakeCoinMarketCap", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 4 + }, + "0x029b739ae68b258dd777bfb6ebb43c5b04617074": { + "address": "0x029b739ae68b258dd777bfb6ebb43c5b04617074", + "symbol": "ULD", + "decimals": 18, + "name": "Unlighted", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x029b739ae68b258dd777bfb6ebb43c5b04617074.png", + "aggregators": [ + "PancakeCoinMarketCap", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 4 + }, + "0xa0cf89ee581313d84d28409eb6bb1d1f9b55d410": { + "address": "0xa0cf89ee581313d84d28409eb6bb1d1f9b55d410", + "symbol": "UNICE", + "decimals": 18, + "name": "UNICE", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xa0cf89ee581313d84d28409eb6bb1d1f9b55d410.png", + "aggregators": [ + "PancakeCoinMarketCap", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 4 + }, + "0x3b6564b5da73a41d3a66e6558a98fd0e9e1e77ad": { + "address": "0x3b6564b5da73a41d3a66e6558a98fd0e9e1e77ad", + "symbol": "UTS", + "decimals": 18, + "name": "Unitus", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x3b6564b5da73a41d3a66e6558a98fd0e9e1e77ad.png", + "aggregators": ["PancakeCoinGecko", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0xb3a95bdbe4ac65b0628db1e6600f71ed59b89255": { + "address": "0xb3a95bdbe4ac65b0628db1e6600f71ed59b89255", + "symbol": "UV", + "decimals": 18, + "name": "Unityventures", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xb3a95bdbe4ac65b0628db1e6600f71ed59b89255.png", + "aggregators": [ + "PancakeCoinMarketCap", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 4 + }, + "0xe6e4d9e1ddd783b6beeccc059abc17be88ee1a03": { + "address": "0xe6e4d9e1ddd783b6beeccc059abc17be88ee1a03", + "symbol": "VERUM", + "decimals": 8, + "name": "Verum Coin", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xe6e4d9e1ddd783b6beeccc059abc17be88ee1a03.png", + "aggregators": [ + "PancakeCoinMarketCap", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 4 + }, + "0x873801ae2ff12d816db9a7b082f5796bec64c82c": { + "address": "0x873801ae2ff12d816db9a7b082f5796bec64c82c", + "symbol": "VEST", + "decimals": 18, + "name": "DAO Invest", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x873801ae2ff12d816db9a7b082f5796bec64c82c.png", + "aggregators": [ + "PancakeCoinMarketCap", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 4 + }, + "0x8de5aa37a7c40a53062ead382b8eead3b08a7a46": { + "address": "0x8de5aa37a7c40a53062ead382b8eead3b08a7a46", + "symbol": "VTG", + "decimals": 18, + "name": "Victory Gem", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x8de5aa37a7c40a53062ead382b8eead3b08a7a46.png", + "aggregators": ["PancakeCoinGecko", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0x876866ef03d1bd9cc7afdc2df9bf21b21a57af04": { + "address": "0x876866ef03d1bd9cc7afdc2df9bf21b21a57af04", + "symbol": "WFT", + "decimals": 18, + "name": "Windfall", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x876866ef03d1bd9cc7afdc2df9bf21b21a57af04.png", + "aggregators": [ + "PancakeCoinMarketCap", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 4 + }, + "0x298632d8ea20d321fab1c9b473df5dbda249b2b6": { + "address": "0x298632d8ea20d321fab1c9b473df5dbda249b2b6", + "symbol": "WOD", + "decimals": 18, + "name": "World of Defish", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x298632d8ea20d321fab1c9b473df5dbda249b2b6.png", + "aggregators": [ + "PancakeCoinMarketCap", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 4 + }, + "0x9467f15f44a8641389556387b43d9ed3f6981818": { + "address": "0x9467f15f44a8641389556387b43d9ed3f6981818", + "symbol": "WUSDR", + "decimals": 9, + "name": "Wrapped USDR", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x9467f15f44a8641389556387b43d9ed3f6981818.png", + "aggregators": [ + "PancakeCoinMarketCap", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 4 + }, + "0x567556a7493fb7a22d2fd158dd4c766a98705f96": { + "address": "0x567556a7493fb7a22d2fd158dd4c766a98705f96", + "symbol": "WZEDX", + "decimals": 18, + "name": "Wrapped Zedxion", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x567556a7493fb7a22d2fd158dd4c766a98705f96.png", + "aggregators": [ + "PancakeCoinMarketCap", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 4 + }, + "0x8ea43e15b1a616a19903f6a87498f7dca1efae0f": { + "address": "0x8ea43e15b1a616a19903f6a87498f7dca1efae0f", + "symbol": "XAI", + "decimals": 9, + "name": "xAI", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x8ea43e15b1a616a19903f6a87498f7dca1efae0f.png", + "aggregators": ["PancakeCoinMarketCap", "Socket", "Rubic", "Rango"], + "occurrences": 4 + }, + "0x747747e47a48c669be384e0dfb248eee6ba04039": { + "address": "0x747747e47a48c669be384e0dfb248eee6ba04039", + "symbol": "XHP", + "decimals": 18, + "name": "XHYPE", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x747747e47a48c669be384e0dfb248eee6ba04039.png", + "aggregators": [ + "PancakeCoinMarketCap", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 4 + }, + "0xaa9826732f3a4973ff8b384b3f4e3c70c2984651": { + "address": "0xaa9826732f3a4973ff8b384b3f4e3c70c2984651", + "symbol": "XPRESS", + "decimals": 18, + "name": "CryptoXpress", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xaa9826732f3a4973ff8b384b3f4e3c70c2984651.png", + "aggregators": [ + "PancakeCoinMarketCap", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 4 + }, + "0xbc2a152ce36a76e3071ce221761e2445c1c496d4": { + "address": "0xbc2a152ce36a76e3071ce221761e2445c1c496d4", + "symbol": "XSP", + "decimals": 18, + "name": "XSPACE", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xbc2a152ce36a76e3071ce221761e2445c1c496d4.png", + "aggregators": [ + "PancakeCoinMarketCap", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 4 + }, + "0x3757232b55e60da4a8793183ac030cfce4c3865d": { + "address": "0x3757232b55e60da4a8793183ac030cfce4c3865d", + "symbol": "YDR", + "decimals": 18, + "name": "YDragon", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x3757232b55e60da4a8793183ac030cfce4c3865d.png", + "aggregators": ["PancakeCoinGecko", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0xdcb624c870d73cdd0b3345762977cb14de598cd0": { + "address": "0xdcb624c870d73cdd0b3345762977cb14de598cd0", + "symbol": "YFIH2", + "decimals": 18, + "name": "H2Finance", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xdcb624c870d73cdd0b3345762977cb14de598cd0.png", + "aggregators": [ + "PancakeCoinMarketCap", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 4 + }, + "0xf55a93b613d172b86c2ba3981a849dae2aecde2f": { + "address": "0xf55a93b613d172b86c2ba3981a849dae2aecde2f", + "symbol": "YFX", + "decimals": 18, + "name": "Your Futures Exchange", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xf55a93b613d172b86c2ba3981a849dae2aecde2f.png", + "aggregators": [ + "PancakeCoinMarketCap", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 4 + }, + "0xff44967f2e4ebe0b8c5b6812f25e1b9bcec70b34": { + "address": "0xff44967f2e4ebe0b8c5b6812f25e1b9bcec70b34", + "symbol": "ZEDXION", + "decimals": 18, + "name": "Zedxion", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xff44967f2e4ebe0b8c5b6812f25e1b9bcec70b34.png", + "aggregators": [ + "PancakeCoinMarketCap", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 4 + }, + "0xbf27da33a58de2bc6eb1c7dab6cf2e84e825d7dc": { + "address": "0xbf27da33a58de2bc6eb1c7dab6cf2e84e825d7dc", + "symbol": "ZGD", + "decimals": 18, + "name": "ZambesiGold", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xbf27da33a58de2bc6eb1c7dab6cf2e84e825d7dc.png", + "aggregators": [ + "PancakeCoinMarketCap", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 4 + }, + "0x29df52dbd2a73ae6f4ee3a397fd7706216af12da": { + "address": "0x29df52dbd2a73ae6f4ee3a397fd7706216af12da", + "symbol": "ZILPEPE", + "decimals": 18, + "name": "ZilPepe", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x29df52dbd2a73ae6f4ee3a397fd7706216af12da.png", + "aggregators": [ + "PancakeCoinMarketCap", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 4 + }, + "0x0cca2f5561bb0fca88e5b9b48b7fbf000349c357": { + "address": "0x0cca2f5561bb0fca88e5b9b48b7fbf000349c357", + "symbol": "ZODI", + "decimals": 18, + "name": "Zodium", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x0cca2f5561bb0fca88e5b9b48b7fbf000349c357.png", + "aggregators": [ + "PancakeCoinMarketCap", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 4 + }, + "0x1fd991fb6c3102873ba68a4e6e6a87b3a5c10271": { + "address": "0x1fd991fb6c3102873ba68a4e6e6a87b3a5c10271", + "symbol": "ATL", + "decimals": 18, + "name": "Atlantis", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x1fd991fb6c3102873ba68a4e6e6a87b3a5c10271.png", + "aggregators": ["PancakeCoinMarketCap", "LiFi", "Socket", "Rubic"], + "occurrences": 4 + }, + "0x6fefd97f328342a8a840546a55fdcfee7542f9a8": { + "address": "0x6fefd97f328342a8a840546a55fdcfee7542f9a8", + "symbol": "BTBS", + "decimals": 18, + "name": "BitBase", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x6fefd97f328342a8a840546a55fdcfee7542f9a8.png", + "aggregators": ["PancakeCoinMarketCap", "1inch", "Rubic", "Rango"], + "occurrences": 4 + }, + "0x2406dce4da5ab125a18295f4fb9fd36a0f7879a2": { + "address": "0x2406dce4da5ab125a18295f4fb9fd36a0f7879a2", + "symbol": "CPD", + "decimals": 18, + "name": "Coinspaid", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x2406dce4da5ab125a18295f4fb9fd36a0f7879a2.png", + "aggregators": ["PancakeCoinMarketCap", "Socket", "Rubic", "Rango"], + "occurrences": 4 + }, + "0x7ceb519718a80dd78a8545ad8e7f401de4f2faa7": { + "address": "0x7ceb519718a80dd78a8545ad8e7f401de4f2faa7", + "symbol": "DKT", + "decimals": 18, + "name": "Duelist King Token", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x7ceb519718a80dd78a8545ad8e7f401de4f2faa7.png", + "aggregators": ["PancakeExtended", "LiFi", "Rubic"], + "occurrences": 3 + }, + "0xa00e5306902c3fddace62bdf391907753c941050": { + "address": "0xa00e5306902c3fddace62bdf391907753c941050", + "symbol": "FLORK", + "decimals": 18, + "name": "FLORK BNB", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xa00e5306902c3fddace62bdf391907753c941050.png", + "aggregators": ["PancakeCoinMarketCap", "Socket", "Rubic", "Rango"], + "occurrences": 4 + }, + "0x444a0e0c139cac67e8f9be945c6dfe01a2766ed1": { + "address": "0x444a0e0c139cac67e8f9be945c6dfe01a2766ed1", + "symbol": "GST", + "decimals": 18, + "name": "Gemstone Token", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x444a0e0c139cac67e8f9be945c6dfe01a2766ed1.png", + "aggregators": ["PancakeCoinMarketCap", "1inch", "Rubic", "Rango"], + "occurrences": 4 + }, + "0xa80221d067603e30060f75e2458aa361f8ee5402": { + "address": "0xa80221d067603e30060f75e2458aa361f8ee5402", + "symbol": "IRL", + "decimals": 18, + "name": "Rebase", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xa80221d067603e30060f75e2458aa361f8ee5402.png", + "aggregators": ["PancakeExtended", "LiFi", "Rubic", "Rango"], + "occurrences": 4 + }, + "0x7b65b489fe53fce1f6548db886c08ad73111ddd8": { + "address": "0x7b65b489fe53fce1f6548db886c08ad73111ddd8", + "symbol": "IRON", + "decimals": 18, + "name": "IRON Stablecoin", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x7b65b489fe53fce1f6548db886c08ad73111ddd8.png", + "aggregators": ["PancakeCoinMarketCap", "Socket", "Rubic", "Rango"], + "occurrences": 4 + }, + "0x8bdd8dbcbdf0c066ca5f3286d33673aa7a553c10": { + "address": "0x8bdd8dbcbdf0c066ca5f3286d33673aa7a553c10", + "symbol": "KART", + "decimals": 18, + "name": "Dragon Kart", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x8bdd8dbcbdf0c066ca5f3286d33673aa7a553c10.png", + "aggregators": ["PancakeExtended", "LiFi", "Rubic"], + "occurrences": 3 + }, + "0x12d76741f56ffde15d0da9865c05089425337aab": { + "address": "0x12d76741f56ffde15d0da9865c05089425337aab", + "symbol": "LBCC", + "decimals": 18, + "name": "Lightbeam Courier Coin", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x12d76741f56ffde15d0da9865c05089425337aab.png", + "aggregators": [ + "PancakeCoinMarketCap", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 4 + }, + "0xe6ce27025f13f5213bbc560dc275e292965a392f": { + "address": "0xe6ce27025f13f5213bbc560dc275e292965a392f", + "symbol": "LOOM", + "decimals": 18, + "name": "Loom Token", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xe6ce27025f13f5213bbc560dc275e292965a392f.png", + "aggregators": ["PancakeCoinMarketCap", "Socket", "Rubic", "Rango"], + "occurrences": 4 + }, + "0xae493a1f8bbe36ba8e687352f638d4c07c54f8d7": { + "address": "0xae493a1f8bbe36ba8e687352f638d4c07c54f8d7", + "symbol": "MC", + "decimals": 18, + "name": "Matthew Coin", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xae493a1f8bbe36ba8e687352f638d4c07c54f8d7.png", + "aggregators": ["PancakeExtended", "LiFi", "Rubic", "Rango"], + "occurrences": 4 + }, + "0x5f0da599bb2cccfcf6fdfd7d81743b6020864350": { + "address": "0x5f0da599bb2cccfcf6fdfd7d81743b6020864350", + "symbol": "MKR", + "decimals": 18, + "name": "Maker", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x5f0da599bb2cccfcf6fdfd7d81743b6020864350.png", + "aggregators": ["PancakeCoinMarketCap", "Socket", "Rubic", "Rango"], + "occurrences": 4 + }, + "0xe4c797d43631f4d660ec67b5cb0b78ef5c902532": { + "address": "0xe4c797d43631f4d660ec67b5cb0b78ef5c902532", + "symbol": "MONS", + "decimals": 18, + "name": "Monsters Clan Token", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xe4c797d43631f4d660ec67b5cb0b78ef5c902532.png", + "aggregators": ["PancakeCoinMarketCap", "1inch", "Rubic", "Rango"], + "occurrences": 4 + }, + "0xabae871b7e3b67aeec6b46ae9fe1a91660aadac5": { + "address": "0xabae871b7e3b67aeec6b46ae9fe1a91660aadac5", + "symbol": "POPEN", + "decimals": 18, + "name": "pTokens OPEN", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xabae871b7e3b67aeec6b46ae9fe1a91660aadac5.png", + "aggregators": ["PancakeExtended", "LiFi", "Rubic", "Rango"], + "occurrences": 4 + }, + "0xd07e82440a395f3f3551b42da9210cd1ef4f8b24": { + "address": "0xd07e82440a395f3f3551b42da9210cd1ef4f8b24", + "symbol": "PRL", + "decimals": 18, + "name": "Parallel Token", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xd07e82440a395f3f3551b42da9210cd1ef4f8b24.png", + "aggregators": ["PancakeExtended", "Socket", "Rubic", "Rango"], + "occurrences": 4 + }, + "0x6ad9e9c098a45b2b41b519119c31c3dcb02accb2": { + "address": "0x6ad9e9c098a45b2b41b519119c31c3dcb02accb2", + "symbol": "PZP", + "decimals": 18, + "name": "PLAYZAP", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x6ad9e9c098a45b2b41b519119c31c3dcb02accb2.png", + "aggregators": ["PancakeCoinMarketCap", "LiFi", "Rubic", "Rango"], + "occurrences": 4 + }, + "0xf027e525d491ef6ffcc478555fbb3cfabb3406a6": { + "address": "0xf027e525d491ef6ffcc478555fbb3cfabb3406a6", + "symbol": "RBNB", + "decimals": 18, + "name": "StaFi rBNB", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xf027e525d491ef6ffcc478555fbb3cfabb3406a6.png", + "aggregators": ["PancakeExtended", "LiFi", "Rubic", "Rango"], + "occurrences": 4 + }, + "0x26193c7fa4354ae49ec53ea2cebc513dc39a10aa": { + "address": "0x26193c7fa4354ae49ec53ea2cebc513dc39a10aa", + "symbol": "SEA", + "decimals": 18, + "name": "SEA", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x26193c7fa4354ae49ec53ea2cebc513dc39a10aa.png", + "aggregators": ["PancakeCoinMarketCap", "LiFi", "Rubic", "Rango"], + "occurrences": 4 + }, + "0xb455d798e8b07dbbf9d4609f7b7bdc574463d0b3": { + "address": "0xb455d798e8b07dbbf9d4609f7b7bdc574463d0b3", + "symbol": "SHIB", + "decimals": 18, + "name": "Shibaqua", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xb455d798e8b07dbbf9d4609f7b7bdc574463d0b3.png", + "aggregators": ["PancakeCoinMarketCap", "Socket", "Rubic", "Rango"], + "occurrences": 4 + }, + "0x070a08beef8d36734dd67a491202ff35a6a16d97": { + "address": "0x070a08beef8d36734dd67a491202ff35a6a16d97", + "symbol": "SLP", + "decimals": 18, + "name": "Smooth Love Potion", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x070a08beef8d36734dd67a491202ff35a6a16d97.png", + "aggregators": ["PancakeCoinMarketCap", "Socket", "Rubic", "Rango"], + "occurrences": 4 + }, + "0x4cfbbdfbd5bf0814472ff35c72717bd095ada055": { + "address": "0x4cfbbdfbd5bf0814472ff35c72717bd095ada055", + "symbol": "SUTER", + "decimals": 18, + "name": "SUTER", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x4cfbbdfbd5bf0814472ff35c72717bd095ada055.png", + "aggregators": ["PancakeExtended", "Socket", "Rubic", "Rango"], + "occurrences": 4 + }, + "0xf4bea2c219eb95c6745983b68185c7340c319d9e": { + "address": "0xf4bea2c219eb95c6745983b68185c7340c319d9e", + "symbol": "TFS", + "decimals": 18, + "name": "Fairspin Token", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xf4bea2c219eb95c6745983b68185c7340c319d9e.png", + "aggregators": ["PancakeCoinMarketCap", "1inch", "Rubic", "Rango"], + "occurrences": 4 + }, + "0x990e7154bb999faa9b2fa5ed29e822703311ea85": { + "address": "0x990e7154bb999faa9b2fa5ed29e822703311ea85", + "symbol": "TT", + "decimals": 18, + "name": "ThunderCore", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x990e7154bb999faa9b2fa5ed29e822703311ea85.png", + "aggregators": ["PancakeExtended", "Socket", "Rubic", "Rango"], + "occurrences": 4 + }, + "0x89db9b433fec1307d3dc8908f2813e9f7a1d38f0": { + "address": "0x89db9b433fec1307d3dc8908f2813e9f7a1d38f0", + "symbol": "U", + "decimals": 18, + "name": "Unidef", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x89db9b433fec1307d3dc8908f2813e9f7a1d38f0.png", + "aggregators": ["PancakeCoinMarketCap", "Socket", "Rubic", "Rango"], + "occurrences": 4 + }, + "0xb001f1e7c8bda414ac7cf7ecba5469fe8d24b6de": { + "address": "0xb001f1e7c8bda414ac7cf7ecba5469fe8d24b6de", + "symbol": "UCO", + "decimals": 18, + "name": "UnirisToken", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xb001f1e7c8bda414ac7cf7ecba5469fe8d24b6de.png", + "aggregators": ["PancakeCoinMarketCap", "Socket", "Rubic", "Rango"], + "occurrences": 4 + }, + "0x9c4a515cd72d27a4710571aca94858a53d9278d5": { + "address": "0x9c4a515cd72d27a4710571aca94858a53d9278d5", + "symbol": "VIDT", + "decimals": 18, + "name": "VIDT DAO", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x9c4a515cd72d27a4710571aca94858a53d9278d5.png", + "aggregators": ["PancakeCoinMarketCap", "Socket", "Rubic", "Rango"], + "occurrences": 4 + }, + "0x15669cf161946c09a8b207650bfbb00e3d8a2e3e": { + "address": "0x15669cf161946c09a8b207650bfbb00e3d8a2e3e", + "symbol": "JASMY", + "decimals": 18, + "name": "JasmyCoin", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x15669cf161946c09a8b207650bfbb00e3d8a2e3e.png", + "aggregators": ["PancakeExtended", "Socket", "Rubic", "Rango"], + "occurrences": 4 + }, + "0xb67754f5b4c704a24d2db68e661b2875a4ddd197": { + "address": "0xb67754f5b4c704a24d2db68e661b2875a4ddd197", + "symbol": "MIX", + "decimals": 18, + "name": "Mix", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xb67754f5b4c704a24d2db68e661b2875a4ddd197.png", + "aggregators": ["PancakeExtended", "Socket", "Rubic"], + "occurrences": 3 + }, + "0x9f882567a62a5560d147d64871776eea72df41d3": { + "address": "0x9f882567a62a5560d147d64871776eea72df41d3", + "symbol": "MX", + "decimals": 18, + "name": "MX Token", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x9f882567a62a5560d147d64871776eea72df41d3.png", + "aggregators": ["PancakeExtended", "Socket", "Rubic", "Rango"], + "occurrences": 4 + }, + "0xa865197a84e780957422237b5d152772654341f3": { + "address": "0xa865197a84e780957422237b5d152772654341f3", + "symbol": "OLE", + "decimals": 18, + "name": "OpenLeverage", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xa865197a84e780957422237b5d152772654341f3.png", + "aggregators": ["PancakeExtended", "Socket", "Rubic", "Rango"], + "occurrences": 4 + }, + "0x0112e557d400474717056c4e6d40edd846f38351": { + "address": "0x0112e557d400474717056c4e6d40edd846f38351", + "symbol": "PHA", + "decimals": 18, + "name": "Phala Network", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x0112e557d400474717056c4e6d40edd846f38351.png", + "aggregators": ["PancakeExtended", "Socket", "Rubic", "Rango"], + "occurrences": 4 + }, + "0x300d2c875c6fb8ce4bf5480b4d34b7c9ea8a33a4": { + "address": "0x300d2c875c6fb8ce4bf5480b4d34b7c9ea8a33a4", + "symbol": "PXETH", + "decimals": 18, + "name": "Redacted Finance", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x300d2c875c6fb8ce4bf5480b4d34b7c9ea8a33a4.png", + "aggregators": ["PancakeExtended", "LiFi", "Socket"], + "occurrences": 3 + }, + "0x8729438eb15e2c8b576fcc6aecda6a148776c0f5": { + "address": "0x8729438eb15e2c8b576fcc6aecda6a148776c0f5", + "symbol": "QI", + "decimals": 18, + "name": "BENQI", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x8729438eb15e2c8b576fcc6aecda6a148776c0f5.png", + "aggregators": ["PancakeExtended", "LiFi", "Socket", "Rango"], + "occurrences": 4 + }, + "0xa1434f1fc3f437fa33f7a781e041961c0205b5da": { + "address": "0xa1434f1fc3f437fa33f7a781e041961c0205b5da", + "symbol": "QKC", + "decimals": 18, + "name": "QuarkChain Token", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xa1434f1fc3f437fa33f7a781e041961c0205b5da.png", + "aggregators": ["PancakeExtended", "Socket", "Rubic"], + "occurrences": 3 + }, + "0x67b725d7e342d7b611fa85e859df9697d9378b2e": { + "address": "0x67b725d7e342d7b611fa85e859df9697d9378b2e", + "symbol": "SAND", + "decimals": 18, + "name": "The Sandbox", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x67b725d7e342d7b611fa85e859df9697d9378b2e.png", + "aggregators": ["PancakeExtended", "Socket", "Rubic", "Rango"], + "occurrences": 4 + }, + "0x07715ee7219b07b8e01cc7d2787f4e5e75860383": { + "address": "0x07715ee7219b07b8e01cc7d2787f4e5e75860383", + "symbol": "SDT", + "decimals": 18, + "name": "Stake DAO Token", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x07715ee7219b07b8e01cc7d2787f4e5e75860383.png", + "aggregators": ["PancakeExtended", "LiFi", "Socket", "Rango"], + "occurrences": 4 + }, + "0x4a080377f83d669d7bb83b3184a8a5e61b500608": { + "address": "0x4a080377f83d669d7bb83b3184a8a5e61b500608", + "symbol": "XEND", + "decimals": 18, + "name": "XEND", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x4a080377f83d669d7bb83b3184a8a5e61b500608.png", + "aggregators": ["PancakeExtended", "1inch", "Rubic", "Rango"], + "occurrences": 4 + }, + "0xe9cd2668fb580c96b035b6d081e5753f23fe7f46": { + "address": "0xe9cd2668fb580c96b035b6d081e5753f23fe7f46", + "symbol": "AMA", + "decimals": 18, + "name": "AMAUROT", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xe9cd2668fb580c96b035b6d081e5753f23fe7f46.png", + "aggregators": ["1inch", "Socket", "Rubic", "Rango"], + "occurrences": 4 + }, + "0xf8e026dc4c0860771f691ecffbbdfe2fa51c77cf": { + "address": "0xf8e026dc4c0860771f691ecffbbdfe2fa51c77cf", + "symbol": "BGOV", + "decimals": 18, + "name": "BGOV Token", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xf8e026dc4c0860771f691ecffbbdfe2fa51c77cf.png", + "aggregators": ["1inch", "Socket", "Rubic", "Rango"], + "occurrences": 4 + }, + "0x2f7b4c618dc8e0bba648e54cdadce3d8361f9816": { + "address": "0x2f7b4c618dc8e0bba648e54cdadce3d8361f9816", + "symbol": "NFTL", + "decimals": 18, + "name": "NFTL Token", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x2f7b4c618dc8e0bba648e54cdadce3d8361f9816.png", + "aggregators": ["1inch", "Socket", "Rubic", "Rango"], + "occurrences": 4 + }, + "0x3a5325f0e5ee4da06a285e988f052d4e45aa64b4": { + "address": "0x3a5325f0e5ee4da06a285e988f052d4e45aa64b4", + "symbol": "POLAR", + "decimals": 18, + "name": "Polaris", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x3a5325f0e5ee4da06a285e988f052d4e45aa64b4.png", + "aggregators": ["1inch", "Socket", "Rubic", "Rango"], + "occurrences": 4 + }, + "0x5ef5994fa33ff4eb6c82d51ee1dc145c546065bd": { + "address": "0x5ef5994fa33ff4eb6c82d51ee1dc145c546065bd", + "symbol": "ALLOY", + "decimals": 18, + "name": "HyperAlloy", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x5ef5994fa33ff4eb6c82d51ee1dc145c546065bd.png", + "aggregators": ["1inch", "Socket", "Rubic", "Rango"], + "occurrences": 4 + }, + "0x431e0cd023a32532bf3969cddfc002c00e98429d": { + "address": "0x431e0cd023a32532bf3969cddfc002c00e98429d", + "symbol": "XCAD", + "decimals": 18, + "name": "Chainport.io-Peg XCAD Token", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x431e0cd023a32532bf3969cddfc002c00e98429d.png", + "aggregators": ["LiFi", "Socket", "Rubic", "Rango"], + "occurrences": 4 + }, + "0x3c037c4c2296f280bb318d725d0b454b76c199b9": { + "address": "0x3c037c4c2296f280bb318d725d0b454b76c199b9", + "symbol": "JNTR/B", + "decimals": 18, + "name": "JNTR/b", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x3c037c4c2296f280bb318d725d0b454b76c199b9.png", + "aggregators": ["Socket", "Rubic", "Rango", "SushiSwap"], + "occurrences": 4 + }, + "0xbfa0841f7a90c4ce6643f651756ee340991f99d5": { + "address": "0xbfa0841f7a90c4ce6643f651756ee340991f99d5", + "symbol": "NYA", + "decimals": 18, + "name": "Nyanswop Token", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xbfa0841f7a90c4ce6643f651756ee340991f99d5.png", + "aggregators": ["Socket", "Rubic", "Rango", "SushiSwap"], + "occurrences": 4 + }, + "0x1a4c5c74fb1ec39e839799baa0a91caeaeadedf7": { + "address": "0x1a4c5c74fb1ec39e839799baa0a91caeaeadedf7", + "symbol": "AKITA", + "decimals": 9, + "name": "AKITA-BSC", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x1a4c5c74fb1ec39e839799baa0a91caeaeadedf7.png", + "aggregators": ["Socket", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0x0a73d885cdd66adf69c6d64c0609e55c527db2be": { + "address": "0x0a73d885cdd66adf69c6d64c0609e55c527db2be", + "symbol": "K", + "decimals": 18, + "name": "Sidekick", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x0a73d885cdd66adf69c6d64c0609e55c527db2be.png", + "aggregators": ["PancakeExtended", "Socket", "Rubic"], + "occurrences": 3 + }, + "0x868fced65edbf0056c4163515dd840e9f287a4c3": { + "address": "0x868fced65edbf0056c4163515dd840e9f287a4c3", + "symbol": "SIGN", + "decimals": 18, + "name": "Sign", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x868fced65edbf0056c4163515dd840e9f287a4c3.png", + "aggregators": ["PancakeExtended", "LiFi", "Socket", "Rubic"], + "occurrences": 4 + }, + "0x21caef8a43163eea865baee23b9c2e327696a3bf": { + "address": "0x21caef8a43163eea865baee23b9c2e327696a3bf", + "symbol": "XAUT", + "decimals": 6, + "name": "Tether Gold", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x21caef8a43163eea865baee23b9c2e327696a3bf.png", + "aggregators": ["PancakeExtended", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x06250a4962558f0f3e69fc07f4c67bb9c9eac739": { + "address": "0x06250a4962558f0f3e69fc07f4c67bb9c9eac739", + "symbol": "BICO", + "decimals": 18, + "name": "Biconomy Token (Wormhole)", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x06250a4962558f0f3e69fc07f4c67bb9c9eac739.png", + "aggregators": ["ApeSwap", "Socket", "Rubic"], + "occurrences": 3 + }, + "0x8a5d7fcd4c90421d21d30fcc4435948ac3618b2f": { + "address": "0x8a5d7fcd4c90421d21d30fcc4435948ac3618b2f", + "symbol": "MONSTA", + "decimals": 18, + "name": "Cake Monster", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x8a5d7fcd4c90421d21d30fcc4435948ac3618b2f.png", + "aggregators": ["PancakeCoinMarketCap", "Rubic", "Rango"], + "occurrences": 3 + }, + "0xd3c6ceedd1cc7bd4304f72b011d53441d631e662": { + "address": "0xd3c6ceedd1cc7bd4304f72b011d53441d631e662", + "symbol": "OATH", + "decimals": 18, + "name": "Oath Token", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xd3c6ceedd1cc7bd4304f72b011d53441d631e662.png", + "aggregators": ["PancakeCoinMarketCap", "Socket", "Rubic"], + "occurrences": 3 + }, + "0xaaaafdc2e08371b956be515b3f3ff735ab9c9d74": { + "address": "0xaaaafdc2e08371b956be515b3f3ff735ab9c9d74", + "symbol": "AZ", + "decimals": 18, + "name": "Azbit", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xaaaafdc2e08371b956be515b3f3ff735ab9c9d74.png", + "aggregators": ["PancakeCoinMarketCap", "Rubic", "Rango"], + "occurrences": 3 + }, + "0xc3e06bebc0c00d825f9c7a3b17db8b9a2eea4444": { + "address": "0xc3e06bebc0c00d825f9c7a3b17db8b9a2eea4444", + "symbol": "最暗黑马", + "decimals": 18, + "name": "最暗黑马 (Darkest Horse)", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xc3e06bebc0c00d825f9c7a3b17db8b9a2eea4444.png", + "aggregators": ["CoinGecko", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x19683a9d2a31508847a026dfe77f53a05a084444": { + "address": "0x19683a9d2a31508847a026dfe77f53a05a084444", + "symbol": "W", + "decimals": 18, + "name": "W", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x19683a9d2a31508847a026dfe77f53a05a084444.png", + "aggregators": ["PancakeExtended", "Rubic", "Rango"], + "occurrences": 3 + }, + "0xa2320fff1069ed5b4b02ddb386823e837a7e7777": { + "address": "0xa2320fff1069ed5b4b02ddb386823e837a7e7777", + "symbol": "BFLAP", + "decimals": 18, + "name": "BubbleFlap", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xa2320fff1069ed5b4b02ddb386823e837a7e7777.png", + "aggregators": ["CoinGecko", "Rubic", "Rango"], + "occurrences": 3 + }, + "0xfc6be825925b7a83d131e33b46efef9084f0e014": { + "address": "0xfc6be825925b7a83d131e33b46efef9084f0e014", + "symbol": "RIVER PTS", + "decimals": 18, + "name": "River Point Reward Token", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xfc6be825925b7a83d131e33b46efef9084f0e014.png", + "aggregators": ["PancakeExtended", "LiFi", "Rubic"], + "occurrences": 3 + }, + "0xda033999bb6165e64db01bd9be14b40f5653092e": { + "address": "0xda033999bb6165e64db01bd9be14b40f5653092e", + "symbol": "ORI", + "decimals": 9, + "name": "ORI", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xda033999bb6165e64db01bd9be14b40f5653092e.png", + "aggregators": ["CoinGecko", "Rubic", "Rango"], + "occurrences": 3 + }, + "0xac45475abe6f9516e233a824aa013933b61bbb5c": { + "address": "0xac45475abe6f9516e233a824aa013933b61bbb5c", + "symbol": "BRG", + "decimals": 18, + "name": "BridgeAI", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xac45475abe6f9516e233a824aa013933b61bbb5c.png", + "aggregators": ["CoinGecko", "Rubic", "Rango"], + "occurrences": 3 + }, + "0xf2730645213c43d8affbb4deb9b4c1abc4e74444": { + "address": "0xf2730645213c43d8affbb4deb9b4c1abc4e74444", + "symbol": "EGG", + "decimals": 18, + "name": "EggNuke", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xf2730645213c43d8affbb4deb9b4c1abc4e74444.png", + "aggregators": ["CoinGecko", "Rubic", "Rango"], + "occurrences": 3 + }, + "0xd9375cc6d571817e65017ab94de6f927ebbb4444": { + "address": "0xd9375cc6d571817e65017ab94de6f927ebbb4444", + "symbol": "牛马", + "decimals": 18, + "name": "牛马打工人", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xd9375cc6d571817e65017ab94de6f927ebbb4444.png", + "aggregators": ["CoinGecko", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x872109274218cb50f310e2bfb160d135b502a9d5": { + "address": "0x872109274218cb50f310e2bfb160d135b502a9d5", + "symbol": "SPCX", + "decimals": 18, + "name": "SPCX", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x872109274218cb50f310e2bfb160d135b502a9d5.png", + "aggregators": ["PancakeExtended", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x004d50b3fc784b580531d8e8615aa96cf7fbb919": { + "address": "0x004d50b3fc784b580531d8e8615aa96cf7fbb919", + "symbol": "PLANCK", + "decimals": 18, + "name": "Planck", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x004d50b3fc784b580531d8e8615aa96cf7fbb919.png", + "aggregators": ["PancakeExtended", "Rubic", "Rango"], + "occurrences": 3 + }, + "0xa86a86b8acdc55812bec2971a2fc8a989455858c": { + "address": "0xa86a86b8acdc55812bec2971a2fc8a989455858c", + "symbol": "DSC", + "decimals": 18, + "name": "DSFS Coin", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xa86a86b8acdc55812bec2971a2fc8a989455858c.png", + "aggregators": ["PancakeCoinMarketCap", "Rubic", "Rango"], + "occurrences": 3 + }, + "0xc2d09cf86b9ff43cb29ef8ddca57a4eb4410d5f3": { + "address": "0xc2d09cf86b9ff43cb29ef8ddca57a4eb4410d5f3", + "symbol": "GTBTC", + "decimals": 8, + "name": "GTBTC", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xc2d09cf86b9ff43cb29ef8ddca57a4eb4410d5f3.png", + "aggregators": ["CoinGecko", "Rubic", "Rango"], + "occurrences": 3 + }, + "0xc0edcddd6d5417c22467e3d5642efa1820e454f8": { + "address": "0xc0edcddd6d5417c22467e3d5642efa1820e454f8", + "symbol": "GLG", + "decimals": 18, + "name": "Glorious Looking", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xc0edcddd6d5417c22467e3d5642efa1820e454f8.png", + "aggregators": ["CoinGecko", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x6a9540a84cd1a798a3b1a7cd74c7196cc3e24444": { + "address": "0x6a9540a84cd1a798a3b1a7cd74c7196cc3e24444", + "symbol": "FIREHORSE", + "decimals": 18, + "name": "Fire Horse", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x6a9540a84cd1a798a3b1a7cd74c7196cc3e24444.png", + "aggregators": ["CoinGecko", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x4b7c04ff792581f93f80d69c0f357cb890444444": { + "address": "0x4b7c04ff792581f93f80d69c0f357cb890444444", + "symbol": "火箭狗", + "decimals": 18, + "name": "火箭狗", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x4b7c04ff792581f93f80d69c0f357cb890444444.png", + "aggregators": ["CoinGecko", "Rubic", "Rango"], + "occurrences": 3 + }, + "0xaa242a47f4cc074e59cbc7d65309b1f21202aaa3": { + "address": "0xaa242a47f4cc074e59cbc7d65309b1f21202aaa3", + "symbol": "BTX", + "decimals": 18, + "name": "BeatSwap", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xaa242a47f4cc074e59cbc7d65309b1f21202aaa3.png", + "aggregators": ["PancakeExtended", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x2ae7e0a1d22daecabf5d80b37030c0ab25894444": { + "address": "0x2ae7e0a1d22daecabf5d80b37030c0ab25894444", + "symbol": "WINTERDOGE", + "decimals": 18, + "name": "Winter Doge", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x2ae7e0a1d22daecabf5d80b37030c0ab25894444.png", + "aggregators": ["PancakeExtended", "Rubic", "Rango"], + "occurrences": 3 + }, + "0xad4f3b563f2363e7593ddcaab322604cedf55952": { + "address": "0xad4f3b563f2363e7593ddcaab322604cedf55952", + "symbol": "ZGC", + "decimals": 18, + "name": "ZGC", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xad4f3b563f2363e7593ddcaab322604cedf55952.png", + "aggregators": ["CoinGecko", "Rubic", "Squid"], + "occurrences": 3 + }, + "0x1aaeb7d6436fda7cdac7b87ab8022e97586d2da1": { + "address": "0x1aaeb7d6436fda7cdac7b87ab8022e97586d2da1", + "symbol": "TOWN", + "decimals": 18, + "name": "Alt.town", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x1aaeb7d6436fda7cdac7b87ab8022e97586d2da1.png", + "aggregators": ["CoinGecko", "Rubic", "Rango"], + "occurrences": 3 + }, + "0xca1262e77fb25c0a4112cfc9bad3ff54f617f2e6": { + "address": "0xca1262e77fb25c0a4112cfc9bad3ff54f617f2e6", + "symbol": "WJXN", + "decimals": 0, + "name": "Wrapped JAXNET", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xca1262e77fb25c0a4112cfc9bad3ff54f617f2e6.png", + "aggregators": ["PancakeCoinMarketCap", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x6ba5657bbff83cb579503847c6baa47295ef79a8": { + "address": "0x6ba5657bbff83cb579503847c6baa47295ef79a8", + "symbol": "NBLU", + "decimals": 18, + "name": "NuriTopia", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x6ba5657bbff83cb579503847c6baa47295ef79a8.png", + "aggregators": ["PancakeCoinMarketCap", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x76b2a23f2a94c894fa9eb6c60688e8e38bd95e9a": { + "address": "0x76b2a23f2a94c894fa9eb6c60688e8e38bd95e9a", + "symbol": "CSTAR", + "decimals": 18, + "name": "coinstar", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x76b2a23f2a94c894fa9eb6c60688e8e38bd95e9a.png", + "aggregators": ["CoinGecko", "Rubic", "Rango"], + "occurrences": 3 + }, + "0xae5a409773b9a7dd0ae94ff437ac213d8fafba01": { + "address": "0xae5a409773b9a7dd0ae94ff437ac213d8fafba01", + "symbol": "UPS", + "decimals": 18, + "name": "Upscreener", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xae5a409773b9a7dd0ae94ff437ac213d8fafba01.png", + "aggregators": ["CoinGecko", "Rubic", "Rango"], + "occurrences": 3 + }, + "0xe054017a2f0ecfa294b08a74af319bce0b985a39": { + "address": "0xe054017a2f0ecfa294b08a74af319bce0b985a39", + "symbol": "LUCIC", + "decimals": 18, + "name": "Lucidum Coin", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xe054017a2f0ecfa294b08a74af319bce0b985a39.png", + "aggregators": ["CoinGecko", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x9ccff2aeb0d19565fc5d2934ab9d463274d87423": { + "address": "0x9ccff2aeb0d19565fc5d2934ab9d463274d87423", + "symbol": "KABOSU", + "decimals": 2, + "name": "X Meme Dog", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x9ccff2aeb0d19565fc5d2934ab9d463274d87423.png", + "aggregators": ["CoinGecko", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x94be0bba8e1e303fe998c9360b57b826f1a4f828": { + "address": "0x94be0bba8e1e303fe998c9360b57b826f1a4f828", + "symbol": "KGST", + "decimals": 18, + "name": "Kyrgyz Som Stablecoin", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x94be0bba8e1e303fe998c9360b57b826f1a4f828.png", + "aggregators": ["CoinGecko", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x9c30537f0116be1cceb1397ae0b1cb6792647d79": { + "address": "0x9c30537f0116be1cceb1397ae0b1cb6792647d79", + "symbol": "JQ", + "decimals": 18, + "name": "Jargon Quest", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x9c30537f0116be1cceb1397ae0b1cb6792647d79.png", + "aggregators": ["CoinGecko", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x610fd1a9601cf7b1d188dbf3264738aecc9fc96c": { + "address": "0x610fd1a9601cf7b1d188dbf3264738aecc9fc96c", + "symbol": "PETS", + "decimals": 18, + "name": "MicroPets", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x610fd1a9601cf7b1d188dbf3264738aecc9fc96c.png", + "aggregators": ["CoinGecko", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x8d0c064ab0973fe124fa9efaad492060baacb62c": { + "address": "0x8d0c064ab0973fe124fa9efaad492060baacb62c", + "symbol": "CATX", + "decimals": 9, + "name": "CATX", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x8d0c064ab0973fe124fa9efaad492060baacb62c.png", + "aggregators": ["PancakeCoinMarketCap", "Rubic", "Sonarwatch"], + "occurrences": 3 + }, + "0x95cf6927ab44c78df65177752658b2d64a524444": { + "address": "0x95cf6927ab44c78df65177752658b2d64a524444", + "symbol": "BOB", + "decimals": 18, + "name": "Book Of BSC", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x95cf6927ab44c78df65177752658b2d64a524444.png", + "aggregators": ["CoinGecko", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x854b5f2bfcc5b7cd05d6259cf5d035af57cfa301": { + "address": "0x854b5f2bfcc5b7cd05d6259cf5d035af57cfa301", + "symbol": "PRDT", + "decimals": 18, + "name": "PRDT Token", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x854b5f2bfcc5b7cd05d6259cf5d035af57cfa301.png", + "aggregators": ["PancakeExtended", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x093316456a50033a7cf5af85dabbd4206a312f25": { + "address": "0x093316456a50033a7cf5af85dabbd4206a312f25", + "symbol": "RETSA", + "decimals": 9, + "name": "Retsa Coin", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x093316456a50033a7cf5af85dabbd4206a312f25.png", + "aggregators": ["CoinGecko", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x0409633a72d846fc5bbe2f98d88564d35987904d": { + "address": "0x0409633a72d846fc5bbe2f98d88564d35987904d", + "symbol": "PHB", + "decimals": 18, + "name": "Phoenix Global", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x0409633a72d846fc5bbe2f98d88564d35987904d.png", + "aggregators": ["PancakeCoinMarketCap", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x3065930e06307eecf872304299ce9be2a2f6bce0": { + "address": "0x3065930e06307eecf872304299ce9be2a2f6bce0", + "symbol": "NIZA", + "decimals": 18, + "name": "NIZA", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x3065930e06307eecf872304299ce9be2a2f6bce0.png", + "aggregators": ["CoinGecko", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x9988d876d7500646534e2d91b382b1ac4c5a4444": { + "address": "0x9988d876d7500646534e2d91b382b1ac4c5a4444", + "symbol": "BOGE", + "decimals": 18, + "name": "BNB DOGE", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x9988d876d7500646534e2d91b382b1ac4c5a4444.png", + "aggregators": ["CoinGecko", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x40030e3e47b955351d00c98b392142ed23fa4444": { + "address": "0x40030e3e47b955351d00c98b392142ed23fa4444", + "symbol": "先富带动后富", + "decimals": 18, + "name": "先富带动后富", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x40030e3e47b955351d00c98b392142ed23fa4444.png", + "aggregators": ["CoinGecko", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x0770f3701e63495b04ba88bebca30b93dc1effff": { + "address": "0x0770f3701e63495b04ba88bebca30b93dc1effff", + "symbol": "马仰人翻", + "decimals": 18, + "name": "马仰人翻", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x0770f3701e63495b04ba88bebca30b93dc1effff.png", + "aggregators": ["CoinGecko", "Rubic", "Rango"], + "occurrences": 3 + }, + "0xf7ed52010a766164262f79a340c3868817174444": { + "address": "0xf7ed52010a766164262f79a340c3868817174444", + "symbol": "赛季", + "decimals": 18, + "name": "赛季 (Season)", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xf7ed52010a766164262f79a340c3868817174444.png", + "aggregators": ["CoinGecko", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x1224721fe8b31ac9d5d55ced8e0b12a573de4444": { + "address": "0x1224721fe8b31ac9d5d55ced8e0b12a573de4444", + "symbol": "NAMT", + "decimals": 18, + "name": "Namimoto Token", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x1224721fe8b31ac9d5d55ced8e0b12a573de4444.png", + "aggregators": ["CoinGecko", "Rubic", "Rango"], + "occurrences": 3 + }, + "0xec69f1351b66902cd5e79f0924a5ad049f682540": { + "address": "0xec69f1351b66902cd5e79f0924a5ad049f682540", + "symbol": "VFX", + "decimals": 3, + "name": "ViFoxCoin", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xec69f1351b66902cd5e79f0924a5ad049f682540.png", + "aggregators": ["CoinGecko", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x167315be60caafde69183d35b3f1501ea5677777": { + "address": "0x167315be60caafde69183d35b3f1501ea5677777", + "symbol": "VERTEX", + "decimals": 18, + "name": "Vertex Privacy", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x167315be60caafde69183d35b3f1501ea5677777.png", + "aggregators": ["CoinGecko", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x6f88dbed8f178f71f6a0c27df10d4f0b8ddf4444": { + "address": "0x6f88dbed8f178f71f6a0c27df10d4f0b8ddf4444", + "symbol": "U", + "decimals": 18, + "name": "U", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x6f88dbed8f178f71f6a0c27df10d4f0b8ddf4444.png", + "aggregators": ["CoinGecko", "Rubic", "Rango"], + "occurrences": 3 + }, + "0xe3225e11cab122f1a126a28997788e5230838ab9": { + "address": "0xe3225e11cab122f1a126a28997788e5230838ab9", + "symbol": "XNY", + "decimals": 18, + "name": "Codatta XNY", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xe3225e11cab122f1a126a28997788e5230838ab9.png", + "aggregators": ["PancakeExtended", "LiFi", "Rubic"], + "occurrences": 3 + }, + "0xedd52d44de950ccc3b2e6abdf0da8e99bb0ec480": { + "address": "0xedd52d44de950ccc3b2e6abdf0da8e99bb0ec480", + "symbol": "CRAZYTIGER", + "decimals": 9, + "name": "Crazy Tiger", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xedd52d44de950ccc3b2e6abdf0da8e99bb0ec480.png", + "aggregators": ["PancakeCoinMarketCap", "Rubic", "Sonarwatch"], + "occurrences": 3 + }, + "0x8f647568ffed14b2a75a6eb911d112b0fe570c94": { + "address": "0x8f647568ffed14b2a75a6eb911d112b0fe570c94", + "symbol": "$GOLD", + "decimals": 2, + "name": "$GOLD", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x8f647568ffed14b2a75a6eb911d112b0fe570c94.png", + "aggregators": ["CoinGecko", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x3e17ee3b1895dd1a7cf993a89769c5e029584444": { + "address": "0x3e17ee3b1895dd1a7cf993a89769c5e029584444", + "symbol": "FREEDOM OF MONEY", + "decimals": 18, + "name": "Freedom of Money", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x3e17ee3b1895dd1a7cf993a89769c5e029584444.png", + "aggregators": ["CoinGecko", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x99df6f337eec8bb3a197961099df163ea3494444": { + "address": "0x99df6f337eec8bb3a197961099df163ea3494444", + "symbol": "PLUTO", + "decimals": 18, + "name": "Pluto", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x99df6f337eec8bb3a197961099df163ea3494444.png", + "aggregators": ["CoinGecko", "Rubic", "Rango"], + "occurrences": 3 + }, + "0xc76979538aad5c50ede8fe561830e35ab49c8888": { + "address": "0xc76979538aad5c50ede8fe561830e35ab49c8888", + "symbol": "MINIDOGE", + "decimals": 18, + "name": "MiniDoge", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xc76979538aad5c50ede8fe561830e35ab49c8888.png", + "aggregators": ["CoinGecko", "Rubic", "Rango"], + "occurrences": 3 + }, + "0xd0d5ff4c23f294f0b2f629dc1e2c57b09c374444": { + "address": "0xd0d5ff4c23f294f0b2f629dc1e2c57b09c374444", + "symbol": "茄子", + "decimals": 18, + "name": "茄子", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xd0d5ff4c23f294f0b2f629dc1e2c57b09c374444.png", + "aggregators": ["CoinGecko", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x2f97137ea4cca7a9997e89cb16d4ef6e750f4444": { + "address": "0x2f97137ea4cca7a9997e89cb16d4ef6e750f4444", + "symbol": "$PRIME", + "decimals": 18, + "name": "PRIME", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x2f97137ea4cca7a9997e89cb16d4ef6e750f4444.png", + "aggregators": ["CoinGecko", "Rubic", "Rango"], + "occurrences": 3 + }, + "0xe8c392861d675517fd4b078330cd175053c74444": { + "address": "0xe8c392861d675517fd4b078330cd175053c74444", + "symbol": "招财猫", + "decimals": 18, + "name": "招财猫", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xe8c392861d675517fd4b078330cd175053c74444.png", + "aggregators": ["CoinGecko", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x9c573c93c4a25dac626fe09d6ae41d184d8f7777": { + "address": "0x9c573c93c4a25dac626fe09d6ae41d184d8f7777", + "symbol": "分红狗头", + "decimals": 18, + "name": "分红狗头 (Dividend Dog Head)", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x9c573c93c4a25dac626fe09d6ae41d184d8f7777.png", + "aggregators": ["CoinGecko", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x5f970c855c063df6b093e19bda889fdda3ca4444": { + "address": "0x5f970c855c063df6b093e19bda889fdda3ca4444", + "symbol": "LOL", + "decimals": 18, + "name": "LOL", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x5f970c855c063df6b093e19bda889fdda3ca4444.png", + "aggregators": ["CoinGecko", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x7a5c7be8478f4a65c9264bdc684f8e9e0aae4444": { + "address": "0x7a5c7be8478f4a65c9264bdc684f8e9e0aae4444", + "symbol": "$RIDER", + "decimals": 18, + "name": "Seal the Night Rider", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x7a5c7be8478f4a65c9264bdc684f8e9e0aae4444.png", + "aggregators": ["CoinGecko", "Rubic", "Rango"], + "occurrences": 3 + }, + "0xb1a3810fce5678128b6a61a41871ea344b938e76": { + "address": "0xb1a3810fce5678128b6a61a41871ea344b938e76", + "symbol": "OEX", + "decimals": 18, + "name": "OEX", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xb1a3810fce5678128b6a61a41871ea344b938e76.png", + "aggregators": ["CoinGecko", "Rubic", "Rango"], + "occurrences": 3 + }, + "0xb26df3cadef9f4b771d98d20a7f05e055173f90a": { + "address": "0xb26df3cadef9f4b771d98d20a7f05e055173f90a", + "symbol": "VELT", + "decimals": 18, + "name": "VELTRIXA", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xb26df3cadef9f4b771d98d20a7f05e055173f90a.png", + "aggregators": ["CoinGecko", "Rubic", "Rango"], + "occurrences": 3 + }, + "0xf8584516b7d2c156c763c874d6813e06b57e4cb5": { + "address": "0xf8584516b7d2c156c763c874d6813e06b57e4cb5", + "symbol": "BNBTIGER", + "decimals": 9, + "name": "Bnb Tiger Inu", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xf8584516b7d2c156c763c874d6813e06b57e4cb5.png", + "aggregators": ["CoinGecko", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x5d0ae9223533db48f32ae0aa3845eedf20894444": { + "address": "0x5d0ae9223533db48f32ae0aa3845eedf20894444", + "symbol": "HERD", + "decimals": 18, + "name": "羊群币 (Herd)", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x5d0ae9223533db48f32ae0aa3845eedf20894444.png", + "aggregators": ["CoinGecko", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x50e0de39e80b55fe2a29464c105a2823c11e83d4": { + "address": "0x50e0de39e80b55fe2a29464c105a2823c11e83d4", + "symbol": "WR", + "decimals": 9, + "name": "White Rat", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x50e0de39e80b55fe2a29464c105a2823c11e83d4.png", + "aggregators": ["CoinGecko", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x386b656500a3c9019992f0fd9f24725fca5e4444": { + "address": "0x386b656500a3c9019992f0fd9f24725fca5e4444", + "symbol": "NATIVE", + "decimals": 18, + "name": "native coin", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x386b656500a3c9019992f0fd9f24725fca5e4444.png", + "aggregators": ["CoinGecko", "Rubic", "Rango"], + "occurrences": 3 + }, + "0xfe2dd2d57a05f89438f3aec94eafa4070396bab0": { + "address": "0xfe2dd2d57a05f89438f3aec94eafa4070396bab0", + "symbol": "MAT", + "decimals": 18, + "name": "Matchain", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xfe2dd2d57a05f89438f3aec94eafa4070396bab0.png", + "aggregators": ["PancakeExtended", "1inch", "Rubic"], + "occurrences": 3 + }, + "0xabebed1684a789b3cf178db810f3cbb30cc14444": { + "address": "0xabebed1684a789b3cf178db810f3cbb30cc14444", + "symbol": "SORA", + "decimals": 18, + "name": "Sora Oracle", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xabebed1684a789b3cf178db810f3cbb30cc14444.png", + "aggregators": ["CoinGecko", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x6261963ebe9ff014aad10ecc3b0238d4d04e8353": { + "address": "0x6261963ebe9ff014aad10ecc3b0238d4d04e8353", + "symbol": "HANA", + "decimals": 18, + "name": "Hana Token", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x6261963ebe9ff014aad10ecc3b0238d4d04e8353.png", + "aggregators": ["PancakeExtended", "Socket", "Rubic"], + "occurrences": 3 + }, + "0x1a0d665ff8582fe135a8867bfd38b5e48baf7777": { + "address": "0x1a0d665ff8582fe135a8867bfd38b5e48baf7777", + "symbol": "雪球人生", + "decimals": 18, + "name": "雪球人生 (A Snowball Life)", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x1a0d665ff8582fe135a8867bfd38b5e48baf7777.png", + "aggregators": ["CoinGecko", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x51d5b1377b4d429283e8156540855ece77ad4444": { + "address": "0x51d5b1377b4d429283e8156540855ece77ad4444", + "symbol": "小股东", + "decimals": 18, + "name": "小股东 (Minor Shareholder)", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x51d5b1377b4d429283e8156540855ece77ad4444.png", + "aggregators": ["CoinGecko", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x5ae6abd70147d2214cac2e2dee7af15235bf4444": { + "address": "0x5ae6abd70147d2214cac2e2dee7af15235bf4444", + "symbol": "BRAIN", + "decimals": 18, + "name": "Ask Brain", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x5ae6abd70147d2214cac2e2dee7af15235bf4444.png", + "aggregators": ["CoinGecko", "Rubic", "Rango"], + "occurrences": 3 + }, + "0xa4b68d48d7bc6f04420e8077e6f74bdef809dea3": { + "address": "0xa4b68d48d7bc6f04420e8077e6f74bdef809dea3", + "symbol": "BGSC", + "decimals": 18, + "name": "BugsCoin", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xa4b68d48d7bc6f04420e8077e6f74bdef809dea3.png", + "aggregators": ["PancakeExtended", "Rubic", "Sonarwatch"], + "occurrences": 3 + }, + "0x71fb1795b084ff2b65eabf51cad22bbefd42ed5f": { + "address": "0x71fb1795b084ff2b65eabf51cad22bbefd42ed5f", + "symbol": "CAPX", + "decimals": 18, + "name": "Capx", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x71fb1795b084ff2b65eabf51cad22bbefd42ed5f.png", + "aggregators": ["PancakeExtended", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x610a07435f5683a7eea1b9d8479c4ec34e284444": { + "address": "0x610a07435f5683a7eea1b9d8479c4ec34e284444", + "symbol": "白马", + "decimals": 18, + "name": "白马 (White Horse)", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x610a07435f5683a7eea1b9d8479c4ec34e284444.png", + "aggregators": ["CoinGecko", "Rubic", "Rango"], + "occurrences": 3 + }, + "0xf117dfcb241c0003d5e2fc72f288755c17a46980": { + "address": "0xf117dfcb241c0003d5e2fc72f288755c17a46980", + "symbol": "SIXP", + "decimals": 18, + "name": "SIXP", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xf117dfcb241c0003d5e2fc72f288755c17a46980.png", + "aggregators": ["CoinGecko", "Rubic", "Rango"], + "occurrences": 3 + }, + "0xabfd54934ca4535afa589346bf7938b8ce3f4444": { + "address": "0xabfd54934ca4535afa589346bf7938b8ce3f4444", + "symbol": "SHIBY", + "decimals": 18, + "name": "Yellow Shib", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xabfd54934ca4535afa589346bf7938b8ce3f4444.png", + "aggregators": ["CoinGecko", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x83094ecef16971cd09092aa7cdd7f90ded2e4444": { + "address": "0x83094ecef16971cd09092aa7cdd7f90ded2e4444", + "symbol": "ZKASTER", + "decimals": 18, + "name": "zkAster", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x83094ecef16971cd09092aa7cdd7f90ded2e4444.png", + "aggregators": ["CoinGecko", "Rubic", "Rango"], + "occurrences": 3 + }, + "0xbcf2349b0092648073389e753d3e77bec9cef604": { + "address": "0xbcf2349b0092648073389e753d3e77bec9cef604", + "symbol": "BOS", + "decimals": 18, + "name": "Bitcos Pro", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xbcf2349b0092648073389e753d3e77bec9cef604.png", + "aggregators": ["CoinGecko", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x00f8da33734feb9b946fec2228c25072d2e2e41f": { + "address": "0x00f8da33734feb9b946fec2228c25072d2e2e41f", + "symbol": "NILA", + "decimals": 18, + "name": "NILA", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x00f8da33734feb9b946fec2228c25072d2e2e41f.png", + "aggregators": ["CoinGecko", "Rubic", "Rango"], + "occurrences": 3 + }, + "0xe215f9575e2fafff8d0d3f9c6866ac656bd25bd9": { + "address": "0xe215f9575e2fafff8d0d3f9c6866ac656bd25bd9", + "symbol": "DUCKY", + "decimals": 18, + "name": "Ducky", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xe215f9575e2fafff8d0d3f9c6866ac656bd25bd9.png", + "aggregators": ["CoinGecko", "Rubic", "Sonarwatch"], + "occurrences": 3 + }, + "0x5b2ba38272125bd1dcde41f1a88d98c2f5c14444": { + "address": "0x5b2ba38272125bd1dcde41f1a88d98c2f5c14444", + "symbol": "HORIZON", + "decimals": 18, + "name": "Horizon Oracles", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x5b2ba38272125bd1dcde41f1a88d98c2f5c14444.png", + "aggregators": ["CoinGecko", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x3dc8e2d80b6215a1bccae4d38715c3520581e77c": { + "address": "0x3dc8e2d80b6215a1bccae4d38715c3520581e77c", + "symbol": "EPT", + "decimals": 18, + "name": "Balance", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x3dc8e2d80b6215a1bccae4d38715c3520581e77c.png", + "aggregators": ["PancakeExtended", "Rubic", "Sonarwatch"], + "occurrences": 3 + }, + "0xda1060158f7d593667cce0a15db346bb3ffb3596": { + "address": "0xda1060158f7d593667cce0a15db346bb3ffb3596", + "symbol": "TWC", + "decimals": 9, + "name": "TIWI CAT", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xda1060158f7d593667cce0a15db346bb3ffb3596.png", + "aggregators": ["CoinGecko", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x3433a5748bda2f7338bdc600be7bc716d5882b0c": { + "address": "0x3433a5748bda2f7338bdc600be7bc716d5882b0c", + "symbol": "SAFU", + "decimals": 18, + "name": "SAFU", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x3433a5748bda2f7338bdc600be7bc716d5882b0c.png", + "aggregators": ["CoinGecko", "Rubic", "Rango"], + "occurrences": 3 + }, + "0xfdce0c0fe058e3f31153a5caef99a2ff24904444": { + "address": "0xfdce0c0fe058e3f31153a5caef99a2ff24904444", + "symbol": "TNEWS", + "decimals": 18, + "name": "TerraNewsEN", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xfdce0c0fe058e3f31153a5caef99a2ff24904444.png", + "aggregators": ["CoinGecko", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x9cbf2a763e797d8cde780d199f63901027ea3b8e": { + "address": "0x9cbf2a763e797d8cde780d199f63901027ea3b8e", + "symbol": "XPASS", + "decimals": 18, + "name": "XPASS Token", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x9cbf2a763e797d8cde780d199f63901027ea3b8e.png", + "aggregators": ["CoinGecko", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x5fca51aff213bfbeab0b711b93c3374252fd6ac3": { + "address": "0x5fca51aff213bfbeab0b711b93c3374252fd6ac3", + "symbol": "SHARE", + "decimals": 18, + "name": "ShareX Token", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x5fca51aff213bfbeab0b711b93c3374252fd6ac3.png", + "aggregators": ["PancakeExtended", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x44442271e6ca7336a29032838d70675680adc7df": { + "address": "0x44442271e6ca7336a29032838d70675680adc7df", + "symbol": "RCHV", + "decimals": 18, + "name": "Archivas", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x44442271e6ca7336a29032838d70675680adc7df.png", + "aggregators": ["CoinGecko", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x14b792a2d8252cf8fbfa5b8f29e3388576c33a31": { + "address": "0x14b792a2d8252cf8fbfa5b8f29e3388576c33a31", + "symbol": "FUST", + "decimals": 18, + "name": "FUST", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x14b792a2d8252cf8fbfa5b8f29e3388576c33a31.png", + "aggregators": ["CoinGecko", "Rubic", "Rango"], + "occurrences": 3 + }, + "0xa5deb178c729e058018db8bd68a9ffb8418df42d": { + "address": "0xa5deb178c729e058018db8bd68a9ffb8418df42d", + "symbol": "MIBNB", + "decimals": 24, + "name": "Mitosis EOL BNB", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xa5deb178c729e058018db8bd68a9ffb8418df42d.png", + "aggregators": ["CoinGecko", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x996d1b997203a024e205069a304161ba618d1c61": { + "address": "0x996d1b997203a024e205069a304161ba618d1c61", + "symbol": "TAT", + "decimals": 18, + "name": "Tell A Tale", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x996d1b997203a024e205069a304161ba618d1c61.png", + "aggregators": ["CoinGecko", "Rubic", "Rango"], + "occurrences": 3 + }, + "0xbce1a560bb7e98d21a71720b20f9dc06c6584444": { + "address": "0xbce1a560bb7e98d21a71720b20f9dc06c6584444", + "symbol": "早上好", + "decimals": 18, + "name": "早上好", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xbce1a560bb7e98d21a71720b20f9dc06c6584444.png", + "aggregators": ["CoinGecko", "Rubic", "Rango"], + "occurrences": 3 + }, + "0xff583dc5ddc7c0bb3625fff39a587a2000e78888": { + "address": "0xff583dc5ddc7c0bb3625fff39a587a2000e78888", + "symbol": "HOLD", + "decimals": 18, + "name": "Holdstation", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xff583dc5ddc7c0bb3625fff39a587a2000e78888.png", + "aggregators": ["CoinGecko", "Rubic", "Rango"], + "occurrences": 3 + }, + "0xaa648834ea4f3ec34a6ce22042b6def9aa534444": { + "address": "0xaa648834ea4f3ec34a6ce22042b6def9aa534444", + "symbol": "MBGA", + "decimals": 18, + "name": "MAKE BNB GREAT AGAIN", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xaa648834ea4f3ec34a6ce22042b6def9aa534444.png", + "aggregators": ["CoinGecko", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x4c9027e10c5271efca82379d3123917ae3f2374e": { + "address": "0x4c9027e10c5271efca82379d3123917ae3f2374e", + "symbol": "BTG", + "decimals": 18, + "name": "Bitgold", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x4c9027e10c5271efca82379d3123917ae3f2374e.png", + "aggregators": ["PancakeExtended", "Rubic", "Rango"], + "occurrences": 3 + }, + "0xf1c599e9a5fbdea408a7409c0176a2fe42c64444": { + "address": "0xf1c599e9a5fbdea408a7409c0176a2fe42c64444", + "symbol": "HACHIKO", + "decimals": 18, + "name": "Hachiko Inu", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xf1c599e9a5fbdea408a7409c0176a2fe42c64444.png", + "aggregators": ["CoinGecko", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x54ea4f36dff50a75658087a141464d2c44b8837f": { + "address": "0x54ea4f36dff50a75658087a141464d2c44b8837f", + "symbol": "CORGI", + "decimals": 18, + "name": "Corgi Inu", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x54ea4f36dff50a75658087a141464d2c44b8837f.png", + "aggregators": ["CoinGecko", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x49c6c91ec839a581de2b882e868494215250ee59": { + "address": "0x49c6c91ec839a581de2b882e868494215250ee59", + "symbol": "DGRAM", + "decimals": 18, + "name": "Datagram", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x49c6c91ec839a581de2b882e868494215250ee59.png", + "aggregators": ["PancakeExtended", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x0bc61768132aa1484e2b09301284b7def78a4444": { + "address": "0x0bc61768132aa1484e2b09301284b7def78a4444", + "symbol": "BENJI", + "decimals": 18, + "name": "Benji Bean", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x0bc61768132aa1484e2b09301284b7def78a4444.png", + "aggregators": ["CoinGecko", "Rubic", "Rango"], + "occurrences": 3 + }, + "0xf3c7cecf8cbc3066f9a87b310cebe198d00479ac": { + "address": "0xf3c7cecf8cbc3066f9a87b310cebe198d00479ac", + "symbol": "FEG", + "decimals": 18, + "name": "FEED EVERY GORILLA", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xf3c7cecf8cbc3066f9a87b310cebe198d00479ac.png", + "aggregators": ["PancakeCoinMarketCap", "Rubic", "Sonarwatch"], + "occurrences": 3 + }, + "0x52c5f209795451cbdcf1d418c508af4525304444": { + "address": "0x52c5f209795451cbdcf1d418c508af4525304444", + "symbol": "C", + "decimals": 18, + "name": "C", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x52c5f209795451cbdcf1d418c508af4525304444.png", + "aggregators": ["CoinGecko", "Rubic", "Rango"], + "occurrences": 3 + }, + "0xb03f0323da5ca66781de6823ed0681800798de57": { + "address": "0xb03f0323da5ca66781de6823ed0681800798de57", + "symbol": "CRAU", + "decimals": 18, + "name": "CRYN Gold", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xb03f0323da5ca66781de6823ed0681800798de57.png", + "aggregators": ["CoinGecko", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x44444e15232ff6dfed49b550d672707a283b3910": { + "address": "0x44444e15232ff6dfed49b550d672707a283b3910", + "symbol": "BOL", + "decimals": 18, + "name": "BNBOFLEGENDS", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x44444e15232ff6dfed49b550d672707a283b3910.png", + "aggregators": ["CoinGecko", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x3f2b10f3327ea2337c524eef23f4cd61bc364444": { + "address": "0x3f2b10f3327ea2337c524eef23f4cd61bc364444", + "symbol": "SAFU", + "decimals": 18, + "name": " Funds are SAFU", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x3f2b10f3327ea2337c524eef23f4cd61bc364444.png", + "aggregators": ["CoinGecko", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x0ea82a52da127bb06740b4b2b2863fefe9c34011": { + "address": "0x0ea82a52da127bb06740b4b2b2863fefe9c34011", + "symbol": "AIW", + "decimals": 18, + "name": "Stability World AI", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x0ea82a52da127bb06740b4b2b2863fefe9c34011.png", + "aggregators": ["CoinGecko", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x8b194370825e37b33373e74a41009161808c1488": { + "address": "0x8b194370825e37b33373e74a41009161808c1488", + "symbol": "VELVET", + "decimals": 18, + "name": "Velvet", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x8b194370825e37b33373e74a41009161808c1488.png", + "aggregators": ["PancakeExtended", "LiFi", "Rubic", "Squid"], + "occurrences": 4 + }, + "0x36a650e757da5fb28f1c50c3405360f60c5bffff": { + "address": "0x36a650e757da5fb28f1c50c3405360f60c5bffff", + "symbol": "WILLU", + "decimals": 18, + "name": "Will U", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x36a650e757da5fb28f1c50c3405360f60c5bffff.png", + "aggregators": ["CoinGecko", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x3da14529289ea39368298657071033b0c81c0fa9": { + "address": "0x3da14529289ea39368298657071033b0c81c0fa9", + "symbol": "ODIC", + "decimals": 18, + "name": "ODIC Token", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x3da14529289ea39368298657071033b0c81c0fa9.png", + "aggregators": ["CoinGecko", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x517b41b73457f7befd5930b1807bdaf196bd4444": { + "address": "0x517b41b73457f7befd5930b1807bdaf196bd4444", + "symbol": "AKITAAI", + "decimals": 18, + "name": "AkitaAI", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x517b41b73457f7befd5930b1807bdaf196bd4444.png", + "aggregators": ["CoinGecko", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x23b35c7f686cac8297ea6e81a467286481ca4444": { + "address": "0x23b35c7f686cac8297ea6e81a467286481ca4444", + "symbol": "SZN", + "decimals": 18, + "name": "BNB SZN", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x23b35c7f686cac8297ea6e81a467286481ca4444.png", + "aggregators": ["CoinGecko", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x87241b1b7fd82cf4f4842f195909ca69aa6e4444": { + "address": "0x87241b1b7fd82cf4f4842f195909ca69aa6e4444", + "symbol": "ADOG", + "decimals": 18, + "name": "aster dog", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x87241b1b7fd82cf4f4842f195909ca69aa6e4444.png", + "aggregators": ["CoinGecko", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x0aa9d742a1e3c4ad2947ebbf268afa15d7c9bfbd": { + "address": "0x0aa9d742a1e3c4ad2947ebbf268afa15d7c9bfbd", + "symbol": "LISA", + "decimals": 18, + "name": "LISA Token", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x0aa9d742a1e3c4ad2947ebbf268afa15d7c9bfbd.png", + "aggregators": ["PancakeExtended", "Rubic", "Rango"], + "occurrences": 3 + }, + "0xb208063997db51de3f0988f8a87b0aff83a6213f": { + "address": "0xb208063997db51de3f0988f8a87b0aff83a6213f", + "symbol": "BBT", + "decimals": 8, + "name": "BBT", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xb208063997db51de3f0988f8a87b0aff83a6213f.png", + "aggregators": ["CoinGecko", "Rubic", "Rango"], + "occurrences": 3 + }, + "0xcc442a4c0b9c35578aa285f0d39f2bcc0e152acd": { + "address": "0xcc442a4c0b9c35578aa285f0d39f2bcc0e152acd", + "symbol": "SSS", + "decimals": 18, + "name": "Sparkle Token", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xcc442a4c0b9c35578aa285f0d39f2bcc0e152acd.png", + "aggregators": ["PancakeExtended", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x5d7909f951436d4e6974d841316057df3a622962": { + "address": "0x5d7909f951436d4e6974d841316057df3a622962", + "symbol": "GOATED", + "decimals": 18, + "name": "Goat Network", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x5d7909f951436d4e6974d841316057df3a622962.png", + "aggregators": ["PancakeExtended", "Rubic", "Rango"], + "occurrences": 3 + }, + "0xa7536d3c8b307f9c208ec84b54af0e38a4839a5e": { + "address": "0xa7536d3c8b307f9c208ec84b54af0e38a4839a5e", + "symbol": "MHNA", + "decimals": 18, + "name": "MHNA", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xa7536d3c8b307f9c208ec84b54af0e38a4839a5e.png", + "aggregators": ["CoinGecko", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x4dbc56a42524e553a069c7c955e32b6f089cc1e2": { + "address": "0x4dbc56a42524e553a069c7c955e32b6f089cc1e2", + "symbol": "UDOG", + "decimals": 18, + "name": "UDOG", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x4dbc56a42524e553a069c7c955e32b6f089cc1e2.png", + "aggregators": ["CoinGecko", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x7453190391f2e8c19198d06845210b78a0b34444": { + "address": "0x7453190391f2e8c19198d06845210b78a0b34444", + "symbol": "GIGL", + "decimals": 18, + "name": "GIGGLE PANDA", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x7453190391f2e8c19198d06845210b78a0b34444.png", + "aggregators": ["CoinGecko", "Rubic", "Rango"], + "occurrences": 3 + }, + "0xce1b3e5087e8215876af976032382dd338cf8401": { + "address": "0xce1b3e5087e8215876af976032382dd338cf8401", + "symbol": "THOREUM", + "decimals": 18, + "name": "Thoreum V3", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xce1b3e5087e8215876af976032382dd338cf8401.png", + "aggregators": ["PancakeCoinMarketCap", "Rubic", "Sonarwatch"], + "occurrences": 3 + }, + "0xaafe1f781bc5e4d240c4b73f6748d76079678fa8": { + "address": "0xaafe1f781bc5e4d240c4b73f6748d76079678fa8", + "symbol": "TIMI", + "decimals": 18, + "name": "TIMI", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xaafe1f781bc5e4d240c4b73f6748d76079678fa8.png", + "aggregators": ["PancakeExtended", "Rubic", "Rango"], + "occurrences": 3 + }, + "0xec52981e5af19dd4a89464cc3a2a4a94b97adc62": { + "address": "0xec52981e5af19dd4a89464cc3a2a4a94b97adc62", + "symbol": "DANKDOGEAI", + "decimals": 2, + "name": "DankDoge AI Agent", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xec52981e5af19dd4a89464cc3a2a4a94b97adc62.png", + "aggregators": ["CoinGecko", "Rubic", "Rango"], + "occurrences": 3 + }, + "0xcad5a334dc54143d122d1e753bad5050181270c8": { + "address": "0xcad5a334dc54143d122d1e753bad5050181270c8", + "symbol": "KAKA", + "decimals": 18, + "name": "Miss Kaka", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xcad5a334dc54143d122d1e753bad5050181270c8.png", + "aggregators": ["CoinGecko", "Rubic", "Rango"], + "occurrences": 3 + }, + "0xcc9b175e4b88a22543c44f1cc65b73f63b0d4efe": { + "address": "0xcc9b175e4b88a22543c44f1cc65b73f63b0d4efe", + "symbol": "SHARK", + "decimals": 9, + "name": "Baby Shark", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xcc9b175e4b88a22543c44f1cc65b73f63b0d4efe.png", + "aggregators": ["PancakeCoinMarketCap", "Rubic", "Rango"], + "occurrences": 3 + }, + "0xf5dfd94bf89e0948c7770adf5e747dfa47bc4444": { + "address": "0xf5dfd94bf89e0948c7770adf5e747dfa47bc4444", + "symbol": "1", + "decimals": 18, + "name": "1", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xf5dfd94bf89e0948c7770adf5e747dfa47bc4444.png", + "aggregators": ["CoinGecko", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x146498a28b329841da47c27c4738b47f47057777": { + "address": "0x146498a28b329841da47c27c4738b47f47057777", + "symbol": "OSK", + "decimals": 18, + "name": "OSK", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x146498a28b329841da47c27c4738b47f47057777.png", + "aggregators": ["CoinGecko", "Rubic", "Rango"], + "occurrences": 3 + }, + "0xa992ffb0c9b753307b9704079c61db4e405deffd": { + "address": "0xa992ffb0c9b753307b9704079c61db4e405deffd", + "symbol": "COA", + "decimals": 18, + "name": "Alliance Games", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xa992ffb0c9b753307b9704079c61db4e405deffd.png", + "aggregators": ["CoinGecko", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x4f436232f4a21cef94c2b6d1a1dbedf675ac4444": { + "address": "0x4f436232f4a21cef94c2b6d1a1dbedf675ac4444", + "symbol": "马上领红包", + "decimals": 18, + "name": "马上领红包 (Claim Your Red Envelope Now)", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x4f436232f4a21cef94c2b6d1a1dbedf675ac4444.png", + "aggregators": ["CoinGecko", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x336ff048c664a081d527979ac4197d6c3c8bfb14": { + "address": "0x336ff048c664a081d527979ac4197d6c3c8bfb14", + "symbol": "TEA", + "decimals": 18, + "name": "TeaFi Token", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x336ff048c664a081d527979ac4197d6c3c8bfb14.png", + "aggregators": ["CoinGecko", "LiFi", "Rubic"], + "occurrences": 3 + }, + "0xa226dfdd0e2168676ba13889e93c07ce3a0b4e37": { + "address": "0xa226dfdd0e2168676ba13889e93c07ce3a0b4e37", + "symbol": "RWS", + "decimals": 18, + "name": "Real World Services", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xa226dfdd0e2168676ba13889e93c07ce3a0b4e37.png", + "aggregators": ["CoinGecko", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x2d739dd563609c39a1ae1546a03e8b469361175f": { + "address": "0x2d739dd563609c39a1ae1546a03e8b469361175f", + "symbol": "KO", + "decimals": 18, + "name": "Kyuzo’s Friends", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x2d739dd563609c39a1ae1546a03e8b469361175f.png", + "aggregators": ["PancakeExtended", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x862829e8dcf0fd939d61d1b0d4a3aaf983ee4f73": { + "address": "0x862829e8dcf0fd939d61d1b0d4a3aaf983ee4f73", + "symbol": "VEREM", + "decimals": 18, + "name": "Verified Emeralds", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x862829e8dcf0fd939d61d1b0d4a3aaf983ee4f73.png", + "aggregators": ["CoinGecko", "Rubic", "Rango"], + "occurrences": 3 + }, + "0xa1c1a7341a1713f174d59926e49e4a1228924100": { + "address": "0xa1c1a7341a1713f174d59926e49e4a1228924100", + "symbol": "MON", + "decimals": 18, + "name": "Moneymon", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xa1c1a7341a1713f174d59926e49e4a1228924100.png", + "aggregators": ["CoinGecko", "Rubic", "Rango"], + "occurrences": 3 + }, + "0xf74548802f4c700315f019fde17178b392ee4444": { + "address": "0xf74548802f4c700315f019fde17178b392ee4444", + "symbol": "MEMES", + "decimals": 18, + "name": "memes will continue", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xf74548802f4c700315f019fde17178b392ee4444.png", + "aggregators": ["PancakeExtended", "Rubic", "Rango"], + "occurrences": 3 + }, + "0xd9780513292477c4039dfda1cfcd89ff111e9da5": { + "address": "0xd9780513292477c4039dfda1cfcd89ff111e9da5", + "symbol": "TGR", + "decimals": 18, + "name": "Tegro", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xd9780513292477c4039dfda1cfcd89ff111e9da5.png", + "aggregators": ["PancakeCoinMarketCap", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x6a43cb09fc6d16525f38ecfa27cc568282d86678": { + "address": "0x6a43cb09fc6d16525f38ecfa27cc568282d86678", + "symbol": "VK", + "decimals": 18, + "name": "VK Token", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x6a43cb09fc6d16525f38ecfa27cc568282d86678.png", + "aggregators": ["CoinGecko", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x6d57f5c286e04850c2c085350f2e60aaa7b7c15b": { + "address": "0x6d57f5c286e04850c2c085350f2e60aaa7b7c15b", + "symbol": "GROKGIRL", + "decimals": 9, + "name": "Grok Girl", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x6d57f5c286e04850c2c085350f2e60aaa7b7c15b.png", + "aggregators": ["PancakeCoinMarketCap", "Rubic", "Sonarwatch"], + "occurrences": 3 + }, + "0xb150e91cb40909f47d45115ee9e90667d807464b": { + "address": "0xb150e91cb40909f47d45115ee9e90667d807464b", + "symbol": "CRTR", + "decimals": 18, + "name": "CReaToR", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xb150e91cb40909f47d45115ee9e90667d807464b.png", + "aggregators": ["CoinGecko", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x248db81f8307de98107602d5fdf1aa6398a14444": { + "address": "0x248db81f8307de98107602d5fdf1aa6398a14444", + "symbol": "山野万里 你是我藏在微风里的欢喜", + "decimals": 18, + "name": "山野万里 你是我藏在微风里的欢喜", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x248db81f8307de98107602d5fdf1aa6398a14444.png", + "aggregators": ["CoinGecko", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x90869b3a42e399951bd5f5ff278b8cc5ee1dc0fe": { + "address": "0x90869b3a42e399951bd5f5ff278b8cc5ee1dc0fe", + "symbol": "REX", + "decimals": 18, + "name": "REVOX", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x90869b3a42e399951bd5f5ff278b8cc5ee1dc0fe.png", + "aggregators": ["PancakeExtended", "Rubic", "Sonarwatch"], + "occurrences": 3 + }, + "0xc12efb9e4a1a753e7f6523482c569793c2271dbb": { + "address": "0xc12efb9e4a1a753e7f6523482c569793c2271dbb", + "symbol": "GAIX", + "decimals": 18, + "name": "GaiAI Token", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xc12efb9e4a1a753e7f6523482c569793c2271dbb.png", + "aggregators": ["PancakeExtended", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x8db780f5e1238bf3fc0e14c099b98bb63362d16e": { + "address": "0x8db780f5e1238bf3fc0e14c099b98bb63362d16e", + "symbol": "MGG", + "decimals": 18, + "name": "MGG", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x8db780f5e1238bf3fc0e14c099b98bb63362d16e.png", + "aggregators": ["CoinGecko", "Rubic", "Rango"], + "occurrences": 3 + }, + "0xd013ca6b1f361a951f0c7125e65f5621c3dd8802": { + "address": "0xd013ca6b1f361a951f0c7125e65f5621c3dd8802", + "symbol": "SNOR", + "decimals": 9, + "name": "SNOR", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xd013ca6b1f361a951f0c7125e65f5621c3dd8802.png", + "aggregators": ["CoinGecko", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x9eca8dedb4882bd694aea786c0cbe770e70d52e3": { + "address": "0x9eca8dedb4882bd694aea786c0cbe770e70d52e3", + "symbol": "LONG", + "decimals": 18, + "name": "LONG", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x9eca8dedb4882bd694aea786c0cbe770e70d52e3.png", + "aggregators": ["PancakeExtended", "Rubic", "Rango"], + "occurrences": 3 + }, + "0xf197e06dab32b3c1cd8c055598bea0af11b44444": { + "address": "0xf197e06dab32b3c1cd8c055598bea0af11b44444", + "symbol": "BINANCIANS", + "decimals": 18, + "name": "Binancians", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xf197e06dab32b3c1cd8c055598bea0af11b44444.png", + "aggregators": ["CoinGecko", "Rubic", "Rango"], + "occurrences": 3 + }, + "0xddbc2ba2d9f87cbb5ad7d315de6a6ca6ccfc4444": { + "address": "0xddbc2ba2d9f87cbb5ad7d315de6a6ca6ccfc4444", + "symbol": "YETI", + "decimals": 18, + "name": "YETI", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xddbc2ba2d9f87cbb5ad7d315de6a6ca6ccfc4444.png", + "aggregators": ["CoinGecko", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x7e7ec10e7b55194714cfbc4daa14eaa4e423b774": { + "address": "0x7e7ec10e7b55194714cfbc4daa14eaa4e423b774", + "symbol": "CAI", + "decimals": 18, + "name": "CharacterX", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x7e7ec10e7b55194714cfbc4daa14eaa4e423b774.png", + "aggregators": ["PancakeExtended", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x3e9fc4f2acf5d6f7815cb9f38b2c69576088ffff": { + "address": "0x3e9fc4f2acf5d6f7815cb9f38b2c69576088ffff", + "symbol": "FORGAI", + "decimals": 18, + "name": "ForgAI", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x3e9fc4f2acf5d6f7815cb9f38b2c69576088ffff.png", + "aggregators": ["CoinGecko", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x74ac77d7ca54c38eb5ea2e638a80a5182558d3a2": { + "address": "0x74ac77d7ca54c38eb5ea2e638a80a5182558d3a2", + "symbol": "SURGE", + "decimals": 18, + "name": "SURGE", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x74ac77d7ca54c38eb5ea2e638a80a5182558d3a2.png", + "aggregators": ["CoinGecko", "Rubic", "Rango"], + "occurrences": 3 + }, + "0xdf7434d15656809f56dd17371b2339baacd9b494": { + "address": "0xdf7434d15656809f56dd17371b2339baacd9b494", + "symbol": "GBD", + "decimals": 18, + "name": "Great Bounty Dealer", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xdf7434d15656809f56dd17371b2339baacd9b494.png", + "aggregators": ["PancakeCoinMarketCap", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x4ffa143ce16a24215e8df96c0cef5677a7b91ee4": { + "address": "0x4ffa143ce16a24215e8df96c0cef5677a7b91ee4", + "symbol": "REGENT", + "decimals": 18, + "name": "Regent Coin", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x4ffa143ce16a24215e8df96c0cef5677a7b91ee4.png", + "aggregators": ["PancakeCoinMarketCap", "Rubic", "Sonarwatch"], + "occurrences": 3 + }, + "0x730e9b7091258cdf578136ec8394daea2db84444": { + "address": "0x730e9b7091258cdf578136ec8394daea2db84444", + "symbol": "马到成功", + "decimals": 18, + "name": "马到成功", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x730e9b7091258cdf578136ec8394daea2db84444.png", + "aggregators": ["CoinGecko", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x76d7966227939b67d66fdb1373a0808ac53ca9ad": { + "address": "0x76d7966227939b67d66fdb1373a0808ac53ca9ad", + "symbol": "KEN", + "decimals": 18, + "name": "KENESIS", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x76d7966227939b67d66fdb1373a0808ac53ca9ad.png", + "aggregators": ["CoinGecko", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x9a79d9c9e521cb900d2584c74bb41997eb7bf49f": { + "address": "0x9a79d9c9e521cb900d2584c74bb41997eb7bf49f", + "symbol": "MEC", + "decimals": 18, + "name": "Mellion Coin", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x9a79d9c9e521cb900d2584c74bb41997eb7bf49f.png", + "aggregators": ["CoinGecko", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x5fc6179fcf814fcd4344ee03376ba717a95992b6": { + "address": "0x5fc6179fcf814fcd4344ee03376ba717a95992b6", + "symbol": "VCC", + "decimals": 18, + "name": "Victorum", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x5fc6179fcf814fcd4344ee03376ba717a95992b6.png", + "aggregators": ["CoinGecko", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x4444d14d522386647c29fd9cd9723f7339ac0f3c": { + "address": "0x4444d14d522386647c29fd9cd9723f7339ac0f3c", + "symbol": "TORA", + "decimals": 18, + "name": "Tensora", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x4444d14d522386647c29fd9cd9723f7339ac0f3c.png", + "aggregators": ["CoinGecko", "Rubic", "Rango"], + "occurrences": 3 + }, + "0xa9550c2112a277b03ccff6aa1baaacd74c754444": { + "address": "0xa9550c2112a277b03ccff6aa1baaacd74c754444", + "symbol": "DEW", + "decimals": 18, + "name": "DEW", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xa9550c2112a277b03ccff6aa1baaacd74c754444.png", + "aggregators": ["CoinGecko", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x55b69bca0e6749ed67e03b16c95a29e963777777": { + "address": "0x55b69bca0e6749ed67e03b16c95a29e963777777", + "symbol": "暴力雪球", + "decimals": 18, + "name": "暴力雪球 (Violent Snowball)", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x55b69bca0e6749ed67e03b16c95a29e963777777.png", + "aggregators": ["CoinGecko", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x3510fbbc13090f991ffa523527113a166161683e": { + "address": "0x3510fbbc13090f991ffa523527113a166161683e", + "symbol": "DEOD", + "decimals": 18, + "name": "Decentrawood", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x3510fbbc13090f991ffa523527113a166161683e.png", + "aggregators": ["CoinGecko", "Rubic", "Rango"], + "occurrences": 3 + }, + "0xc44f9f08e524669e5deeebc9eb142c81edfad178": { + "address": "0xc44f9f08e524669e5deeebc9eb142c81edfad178", + "symbol": "FAR", + "decimals": 18, + "name": "Farcana", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xc44f9f08e524669e5deeebc9eb142c81edfad178.png", + "aggregators": ["CoinGecko", "Rubic", "Rango"], + "occurrences": 3 + }, + "0xd955c9ba56fb1ab30e34766e252a97ccce3d31a6": { + "address": "0xd955c9ba56fb1ab30e34766e252a97ccce3d31a6", + "symbol": "XPIN", + "decimals": 18, + "name": "XPIN Token", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xd955c9ba56fb1ab30e34766e252a97ccce3d31a6.png", + "aggregators": ["PancakeExtended", "LiFi", "Rubic"], + "occurrences": 3 + }, + "0x4acb4cc1f0a073ce4bde893faebc726198c14444": { + "address": "0x4acb4cc1f0a073ce4bde893faebc726198c14444", + "symbol": "NDQ", + "decimals": 18, + "name": "Nasdaq666", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x4acb4cc1f0a073ce4bde893faebc726198c14444.png", + "aggregators": ["CoinGecko", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x56083560594e314b5cdd1680ec6a493bb851bbd8": { + "address": "0x56083560594e314b5cdd1680ec6a493bb851bbd8", + "symbol": "THC", + "decimals": 9, + "name": "Transhuman Coin", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x56083560594e314b5cdd1680ec6a493bb851bbd8.png", + "aggregators": ["PancakeCoinMarketCap", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x2aa89a0113bcbbcdc5812c6df794e2d9650fc1af": { + "address": "0x2aa89a0113bcbbcdc5812c6df794e2d9650fc1af", + "symbol": "STRIKE", + "decimals": 18, + "name": "StrikeBit", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x2aa89a0113bcbbcdc5812c6df794e2d9650fc1af.png", + "aggregators": ["PancakeExtended", "Socket", "Rubic"], + "occurrences": 3 + }, + "0xc07d28f8e9d9b5644676196afe14af09e1c79afd": { + "address": "0xc07d28f8e9d9b5644676196afe14af09e1c79afd", + "symbol": "HODL", + "decimals": 18, + "name": "HoldOn4DearLife", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xc07d28f8e9d9b5644676196afe14af09e1c79afd.png", + "aggregators": ["CoinGecko", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x0e4f6209ed984b21edea43ace6e09559ed051d48": { + "address": "0x0e4f6209ed984b21edea43ace6e09559ed051d48", + "symbol": "ON", + "decimals": 18, + "name": "Orochi Network Token", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x0e4f6209ed984b21edea43ace6e09559ed051d48.png", + "aggregators": ["PancakeExtended", "Socket", "Rubic"], + "occurrences": 3 + }, + "0xcd806d0eb9465020994c9e977cbe34fe430172ae": { + "address": "0xcd806d0eb9465020994c9e977cbe34fe430172ae", + "symbol": "DL", + "decimals": 18, + "name": "Dill", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xcd806d0eb9465020994c9e977cbe34fe430172ae.png", + "aggregators": ["PancakeExtended", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x6d8d8df799279e761a4f49edc319b3bd50f14444": { + "address": "0x6d8d8df799279e761a4f49edc319b3bd50f14444", + "symbol": "我是未来", + "decimals": 18, + "name": "我是未来 (I am the Future)", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x6d8d8df799279e761a4f49edc319b3bd50f14444.png", + "aggregators": ["CoinGecko", "Rubic", "Rango"], + "occurrences": 3 + }, + "0xc0f6a75a6102ed31f85e3b3186a64174de943792": { + "address": "0xc0f6a75a6102ed31f85e3b3186a64174de943792", + "symbol": "GOAI", + "decimals": 18, + "name": "GOATxAI", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xc0f6a75a6102ed31f85e3b3186a64174de943792.png", + "aggregators": ["PancakeExtended", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x181de8c57c4f25eba9fd27757bbd11cc66a55d31": { + "address": "0x181de8c57c4f25eba9fd27757bbd11cc66a55d31", + "symbol": "BELUGA", + "decimals": 18, + "name": "Beluga fi", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x181de8c57c4f25eba9fd27757bbd11cc66a55d31.png", + "aggregators": ["PancakeCoinGecko", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x40af8fd127dcd302d7ffa6f37cf5a002e54ac68c": { + "address": "0x40af8fd127dcd302d7ffa6f37cf5a002e54ac68c", + "symbol": "CONCILIUM", + "decimals": 18, + "name": "CONCILIUM", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x40af8fd127dcd302d7ffa6f37cf5a002e54ac68c.png", + "aggregators": ["CoinGecko", "Rubic", "Rango"], + "occurrences": 3 + }, + "0xc51a9250795c0186a6fb4a7d20a90330651e4444": { + "address": "0xc51a9250795c0186a6fb4a7d20a90330651e4444", + "symbol": "我踏马来了", + "decimals": 18, + "name": "我踏马来了", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xc51a9250795c0186a6fb4a7d20a90330651e4444.png", + "aggregators": ["PancakeExtended", "Rubic", "Rango"], + "occurrences": 3 + }, + "0xed146fa6bf4755544d295d8dc4bc3e4eabab4444": { + "address": "0xed146fa6bf4755544d295d8dc4bc3e4eabab4444", + "symbol": "SYBEX", + "decimals": 18, + "name": "Sybex Oracle", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xed146fa6bf4755544d295d8dc4bc3e4eabab4444.png", + "aggregators": ["CoinGecko", "Rubic", "Rango"], + "occurrences": 3 + }, + "0xa14b0b99c9117ea2f4fb2c9d772d95d9fd3acaab": { + "address": "0xa14b0b99c9117ea2f4fb2c9d772d95d9fd3acaab", + "symbol": "BROCCOLI", + "decimals": 18, + "name": "Broccoli", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xa14b0b99c9117ea2f4fb2c9d772d95d9fd3acaab.png", + "aggregators": ["PancakeExtended", "Rubic", "Rango"], + "occurrences": 3 + }, + "0xdf5c227ab75d309d46fb9df0f7fa043e4534d2ab": { + "address": "0xdf5c227ab75d309d46fb9df0f7fa043e4534d2ab", + "symbol": "GBCK", + "decimals": 18, + "name": "GoldBrick", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xdf5c227ab75d309d46fb9df0f7fa043e4534d2ab.png", + "aggregators": ["CoinGecko", "Rubic", "Rango"], + "occurrences": 3 + }, + "0xc269d59a0d608ea0bd672f2f4616c372d8554444": { + "address": "0xc269d59a0d608ea0bd672f2f4616c372d8554444", + "symbol": "CLIPX", + "decimals": 18, + "name": "ClipX", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xc269d59a0d608ea0bd672f2f4616c372d8554444.png", + "aggregators": ["CoinGecko", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x80f1ff15b887cb19295d88c8c16f89d47f6d8888": { + "address": "0x80f1ff15b887cb19295d88c8c16f89d47f6d8888", + "symbol": "COCO", + "decimals": 18, + "name": "coco", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x80f1ff15b887cb19295d88c8c16f89d47f6d8888.png", + "aggregators": ["CoinGecko", "Rubic", "Rango"], + "occurrences": 3 + }, + "0xeb09e61726922ec613567a63761339dad49d5d3a": { + "address": "0xeb09e61726922ec613567a63761339dad49d5d3a", + "symbol": "RTX", + "decimals": 18, + "name": "OrbitX DAO", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xeb09e61726922ec613567a63761339dad49d5d3a.png", + "aggregators": ["CoinGecko", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x80563fc2dd549bf36f82d3bf3b970bb5b08dbddb": { + "address": "0x80563fc2dd549bf36f82d3bf3b970bb5b08dbddb", + "symbol": "RVV", + "decimals": 18, + "name": "REVIVE", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x80563fc2dd549bf36f82d3bf3b970bb5b08dbddb.png", + "aggregators": ["PancakeExtended", "Rubic", "Rango"], + "occurrences": 3 + }, + "0xabe8e5cabe24cb36df9540088fd7ce1175b9bc52": { + "address": "0xabe8e5cabe24cb36df9540088fd7ce1175b9bc52", + "symbol": "SOLV", + "decimals": 18, + "name": "Solv Protocol", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xabe8e5cabe24cb36df9540088fd7ce1175b9bc52.png", + "aggregators": ["PancakeExtended", "Rubic", "Sonarwatch"], + "occurrences": 3 + }, + "0xf6402bec11bd945bbd46be77e1fa5d477883f6c2": { + "address": "0xf6402bec11bd945bbd46be77e1fa5d477883f6c2", + "symbol": "PORT3", + "decimals": 18, + "name": "Port3 Network", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xf6402bec11bd945bbd46be77e1fa5d477883f6c2.png", + "aggregators": ["PancakeExtended", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x36765928c3d4abf286f2b67120c093c26a284444": { + "address": "0x36765928c3d4abf286f2b67120c093c26a284444", + "symbol": "BBOB", + "decimals": 18, + "name": "BabyBuilder", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x36765928c3d4abf286f2b67120c093c26a284444.png", + "aggregators": ["CoinGecko", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x9f1e8901e93a141c70cc90eee4c4cefd264b44d1": { + "address": "0x9f1e8901e93a141c70cc90eee4c4cefd264b44d1", + "symbol": "DDM", + "decimals": 18, + "name": "Deutsche Mark", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x9f1e8901e93a141c70cc90eee4c4cefd264b44d1.png", + "aggregators": ["CoinGecko", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x08352620afa34ad8c82492661481d7ab62634444": { + "address": "0x08352620afa34ad8c82492661481d7ab62634444", + "symbol": "CRYPTO GUY", + "decimals": 18, + "name": "crypto guy", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x08352620afa34ad8c82492661481d7ab62634444.png", + "aggregators": ["CoinGecko", "Rubic", "Rango"], + "occurrences": 3 + }, + "0xadb50d6a3f931e5b4a14d06a4a77fe71171a462f": { + "address": "0xadb50d6a3f931e5b4a14d06a4a77fe71171a462f", + "symbol": "DUCKY", + "decimals": 18, + "name": "Ducky", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xadb50d6a3f931e5b4a14d06a4a77fe71171a462f.png", + "aggregators": ["CoinGecko", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x26186251f697484878c968b42a35fc31c50f8888": { + "address": "0x26186251f697484878c968b42a35fc31c50f8888", + "symbol": "自由人生", + "decimals": 18, + "name": "自由人生", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x26186251f697484878c968b42a35fc31c50f8888.png", + "aggregators": ["CoinGecko", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x17eafd08994305d8ace37efb82f1523177ec70ee": { + "address": "0x17eafd08994305d8ace37efb82f1523177ec70ee", + "symbol": "USDA", + "decimals": 18, + "name": "USDA", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x17eafd08994305d8ace37efb82f1523177ec70ee.png", + "aggregators": ["CoinGecko", "Rubic", "Rango"], + "occurrences": 3 + }, + "0xfecbda1b8dbd73c4eea7843c04db816107fa6666": { + "address": "0xfecbda1b8dbd73c4eea7843c04db816107fa6666", + "symbol": "BABYASTEROID", + "decimals": 9, + "name": "Baby Asteroid", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xfecbda1b8dbd73c4eea7843c04db816107fa6666.png", + "aggregators": ["CoinGecko", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x2e221f0a81eabad8bc3606e51890895e4af813c7": { + "address": "0x2e221f0a81eabad8bc3606e51890895e4af813c7", + "symbol": "BABYFROG", + "decimals": 9, + "name": "Baby Frog Coin", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x2e221f0a81eabad8bc3606e51890895e4af813c7.png", + "aggregators": ["CoinGecko", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x20d6015660b3fe52e6690a889b5c51f69902ce0e": { + "address": "0x20d6015660b3fe52e6690a889b5c51f69902ce0e", + "symbol": "GIGGLE", + "decimals": 18, + "name": "Giggle Fund", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x20d6015660b3fe52e6690a889b5c51f69902ce0e.png", + "aggregators": ["PancakeExtended", "LiFi", "Rubic", "Rango"], + "occurrences": 4 + }, + "0x617c0440334bb4a63b75847345f906c782b419ab": { + "address": "0x617c0440334bb4a63b75847345f906c782b419ab", + "symbol": "HLDR", + "decimals": 18, + "name": "HLDR", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x617c0440334bb4a63b75847345f906c782b419ab.png", + "aggregators": ["CoinGecko", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x4f9d3adbfaf4579518b1ca7e06468a363897b997": { + "address": "0x4f9d3adbfaf4579518b1ca7e06468a363897b997", + "symbol": "SMILEK", + "decimals": 18, + "name": "Smilek to the Bank", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x4f9d3adbfaf4579518b1ca7e06468a363897b997.png", + "aggregators": ["CoinGecko", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x93891a3328cc16ebd59474ced882b1d91dec63e1": { + "address": "0x93891a3328cc16ebd59474ced882b1d91dec63e1", + "symbol": "GEC", + "decimals": 18, + "name": "GreenEnvCoalition", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x93891a3328cc16ebd59474ced882b1d91dec63e1.png", + "aggregators": ["PancakeCoinMarketCap", "Rubic", "Sonarwatch"], + "occurrences": 3 + }, + "0x6e02ef88fd22390449d1610d1b8154b401134444": { + "address": "0x6e02ef88fd22390449d1610d1b8154b401134444", + "symbol": "H", + "decimals": 18, + "name": "H", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x6e02ef88fd22390449d1610d1b8154b401134444.png", + "aggregators": ["CoinGecko", "Rubic", "Rango"], + "occurrences": 3 + }, + "0xc7ab2c545aa6f0ce5571120f84a9abbc9f4736db": { + "address": "0xc7ab2c545aa6f0ce5571120f84a9abbc9f4736db", + "symbol": "KEY", + "decimals": 8, + "name": "KEY", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xc7ab2c545aa6f0ce5571120f84a9abbc9f4736db.png", + "aggregators": ["CoinGecko", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x9c27c4072738cf4b7b0b7071af0ad5666bddc096": { + "address": "0x9c27c4072738cf4b7b0b7071af0ad5666bddc096", + "symbol": "NIANNIAN", + "decimals": 18, + "name": "NianNian", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x9c27c4072738cf4b7b0b7071af0ad5666bddc096.png", + "aggregators": ["CoinGecko", "Rubic", "Rango"], + "occurrences": 3 + }, + "0xb21b24f12c6125487a33fcf96ab06a5c74114444": { + "address": "0xb21b24f12c6125487a33fcf96ab06a5c74114444", + "symbol": "NAIIVE", + "decimals": 18, + "name": "naiive", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xb21b24f12c6125487a33fcf96ab06a5c74114444.png", + "aggregators": ["PancakeExtended", "Rubic", "Rango"], + "occurrences": 3 + }, + "0xe1ab61f7b093435204df32f5b3a405de55445ea8": { + "address": "0xe1ab61f7b093435204df32f5b3a405de55445ea8", + "symbol": "ION", + "decimals": 9, + "name": "Ice Open Network", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xe1ab61f7b093435204df32f5b3a405de55445ea8.png", + "aggregators": ["CoinGecko", "Rubic", "Rango"], + "occurrences": 3 + }, + "0xe7bf59c402a50778e2f54626380abcc752fc7777": { + "address": "0xe7bf59c402a50778e2f54626380abcc752fc7777", + "symbol": "老板", + "decimals": 18, + "name": "BOSS", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xe7bf59c402a50778e2f54626380abcc752fc7777.png", + "aggregators": ["CoinGecko", "Rubic", "Rango"], + "occurrences": 3 + }, + "0xdfeb13936a8975f9f788e73fb93861ce461541f9": { + "address": "0xdfeb13936a8975f9f788e73fb93861ce461541f9", + "symbol": "XNL", + "decimals": 18, + "name": "XNL", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xdfeb13936a8975f9f788e73fb93861ce461541f9.png", + "aggregators": ["CoinGecko", "Rubic", "Rango"], + "occurrences": 3 + }, + "0xf0ebb572643336834d516c485ad31d3299999999": { + "address": "0xf0ebb572643336834d516c485ad31d3299999999", + "symbol": "MY", + "decimals": 18, + "name": "MetYa", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xf0ebb572643336834d516c485ad31d3299999999.png", + "aggregators": ["CoinGecko", "Rubic", "Rango"], + "occurrences": 3 + }, + "0xfceabd6338e41c7731f78a48cd66a3f58758f9af": { + "address": "0xfceabd6338e41c7731f78a48cd66a3f58758f9af", + "symbol": "RXRC", + "decimals": 18, + "name": "RXRC", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xfceabd6338e41c7731f78a48cd66a3f58758f9af.png", + "aggregators": ["CoinGecko", "Rubic", "Rango"], + "occurrences": 3 + }, + "0xc3cd6531634d6d0cce95b0422b9f8d8b0aa94444": { + "address": "0xc3cd6531634d6d0cce95b0422b9f8d8b0aa94444", + "symbol": "RATKING", + "decimals": 18, + "name": "Ratking", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xc3cd6531634d6d0cce95b0422b9f8d8b0aa94444.png", + "aggregators": ["CoinGecko", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x3aa6b9a5306d1cd48b0466cfb130b08a70257e12": { + "address": "0x3aa6b9a5306d1cd48b0466cfb130b08a70257e12", + "symbol": "GORILLA", + "decimals": 18, + "name": "Gorilla Finance", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x3aa6b9a5306d1cd48b0466cfb130b08a70257e12.png", + "aggregators": ["PancakeCoinMarketCap", "Rubic", "Sonarwatch"], + "occurrences": 3 + }, + "0x5ac0c096549d9df6bf2f709d8c169ceb92470267": { + "address": "0x5ac0c096549d9df6bf2f709d8c169ceb92470267", + "symbol": "SAFE", + "decimals": 18, + "name": "SAFE", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x5ac0c096549d9df6bf2f709d8c169ceb92470267.png", + "aggregators": ["CoinGecko", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x87d87671aefb97610390cd7fdbb4281c3f734444": { + "address": "0x87d87671aefb97610390cd7fdbb4281c3f734444", + "symbol": "CRYPTO WINTER", + "decimals": 18, + "name": "Crypto winter", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x87d87671aefb97610390cd7fdbb4281c3f734444.png", + "aggregators": ["CoinGecko", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x017b22fdeff61724ee94642121799960875f4444": { + "address": "0x017b22fdeff61724ee94642121799960875f4444", + "symbol": "币安汽车", + "decimals": 18, + "name": "币安汽车", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x017b22fdeff61724ee94642121799960875f4444.png", + "aggregators": ["CoinGecko", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x77d689c28b9a1661aa75451dcee6d3d3c0264444": { + "address": "0x77d689c28b9a1661aa75451dcee6d3d3c0264444", + "symbol": "HODL", + "decimals": 18, + "name": "HODL", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x77d689c28b9a1661aa75451dcee6d3d3c0264444.png", + "aggregators": ["CoinGecko", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x6c46422a0f7dbbad9bec3bbbc1189bfaf9794b05": { + "address": "0x6c46422a0f7dbbad9bec3bbbc1189bfaf9794b05", + "symbol": "LTRBT", + "decimals": 9, + "name": "Little Rabbit", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x6c46422a0f7dbbad9bec3bbbc1189bfaf9794b05.png", + "aggregators": ["PancakeCoinMarketCap", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x85e92213fca84aa99adbac5049d8426984d64444": { + "address": "0x85e92213fca84aa99adbac5049d8426984d64444", + "symbol": "BSTR", + "decimals": 18, + "name": "BSTR", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x85e92213fca84aa99adbac5049d8426984d64444.png", + "aggregators": ["PancakeExtended", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x8f1408171eae06aec4549fd0a5808a42cee6dd84": { + "address": "0x8f1408171eae06aec4549fd0a5808a42cee6dd84", + "symbol": "GAN", + "decimals": 18, + "name": "Galactic Arena: The NFTverse", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x8f1408171eae06aec4549fd0a5808a42cee6dd84.png", + "aggregators": ["PancakeCoinMarketCap", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x5a7b18ba78d2ec0fd1ef4cd196bc0d7564dc4444": { + "address": "0x5a7b18ba78d2ec0fd1ef4cd196bc0d7564dc4444", + "symbol": "GENESIS", + "decimals": 18, + "name": "Genesis Arena", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x5a7b18ba78d2ec0fd1ef4cd196bc0d7564dc4444.png", + "aggregators": ["CoinGecko", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x44440f83419de123d7d411187adb9962db017d03": { + "address": "0x44440f83419de123d7d411187adb9962db017d03", + "symbol": "BNBHOLDER", + "decimals": 18, + "name": "币安Holder", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x44440f83419de123d7d411187adb9962db017d03.png", + "aggregators": ["PancakeExtended", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x7e0d753d44d5a7492d31ffc020c9b0d07c6d05d7": { + "address": "0x7e0d753d44d5a7492d31ffc020c9b0d07c6d05d7", + "symbol": "MIDLE", + "decimals": 18, + "name": "MIDLE", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x7e0d753d44d5a7492d31ffc020c9b0d07c6d05d7.png", + "aggregators": ["CoinGecko", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x73b84f7e3901f39fc29f3704a03126d317ab4444": { + "address": "0x73b84f7e3901f39fc29f3704a03126d317ab4444", + "symbol": "PUP", + "decimals": 18, + "name": "PUP", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x73b84f7e3901f39fc29f3704a03126d317ab4444.png", + "aggregators": ["PancakeExtended", "Rubic", "Rango"], + "occurrences": 3 + }, + "0xae7484d162ba80b340eba7769a7a67838b1c16c1": { + "address": "0xae7484d162ba80b340eba7769a7a67838b1c16c1", + "symbol": "NXT", + "decimals": 18, + "name": "NEXST", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xae7484d162ba80b340eba7769a7a67838b1c16c1.png", + "aggregators": ["CoinGecko", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x1f891d25a386e6f67ead37d9bfaf5c444213a134": { + "address": "0x1f891d25a386e6f67ead37d9bfaf5c444213a134", + "symbol": "SUSDT", + "decimals": 18, + "name": "SkyTrade USDT", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x1f891d25a386e6f67ead37d9bfaf5c444213a134.png", + "aggregators": ["CoinGecko", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x6d1703d913c74afaedd4b78deee7f32aa91a5943": { + "address": "0x6d1703d913c74afaedd4b78deee7f32aa91a5943", + "symbol": "MAUSDT_LISTA", + "decimals": 24, + "name": "Mitosis Matrix USDT (Lista)", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x6d1703d913c74afaedd4b78deee7f32aa91a5943.png", + "aggregators": ["CoinGecko", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x113f9616ad86a358bb7e58eb3e977d976af44444": { + "address": "0x113f9616ad86a358bb7e58eb3e977d976af44444", + "symbol": "SUPERCYCLE", + "decimals": 18, + "name": "Crypto SuperCycle", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x113f9616ad86a358bb7e58eb3e977d976af44444.png", + "aggregators": ["CoinGecko", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x9831e9ab89e6f15b9a072f200b78e0bed8b6c66c": { + "address": "0x9831e9ab89e6f15b9a072f200b78e0bed8b6c66c", + "symbol": "HORSE", + "decimals": 18, + "name": "Horse", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x9831e9ab89e6f15b9a072f200b78e0bed8b6c66c.png", + "aggregators": ["CoinGecko", "Rubic", "Rango"], + "occurrences": 3 + }, + "0xf0a28bddac9d3045c95bf57df033e80685d881c0": { + "address": "0xf0a28bddac9d3045c95bf57df033e80685d881c0", + "symbol": "OOOO", + "decimals": 18, + "name": "oooo", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xf0a28bddac9d3045c95bf57df033e80685d881c0.png", + "aggregators": ["PancakeExtended", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x23ccab1de32e06a6235a7997c266f86440c2cbe6": { + "address": "0x23ccab1de32e06a6235a7997c266f86440c2cbe6", + "symbol": "DELABS", + "decimals": 18, + "name": "Delabs Games", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x23ccab1de32e06a6235a7997c266f86440c2cbe6.png", + "aggregators": ["PancakeExtended", "Rubic", "Rango"], + "occurrences": 3 + }, + "0xb7c0007ab75350c582d5eab1862b872b5cf53f0c": { + "address": "0xb7c0007ab75350c582d5eab1862b872b5cf53f0c", + "symbol": "PUMP", + "decimals": 18, + "name": "pumpBTC Governance token", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xb7c0007ab75350c582d5eab1862b872b5cf53f0c.png", + "aggregators": ["PancakeExtended", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x0d8c844716bcd981d9b6d3f2ccf5364129086c96": { + "address": "0x0d8c844716bcd981d9b6d3f2ccf5364129086c96", + "symbol": "ZYRA", + "decimals": 18, + "name": "Zero Knowledge Era", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x0d8c844716bcd981d9b6d3f2ccf5364129086c96.png", + "aggregators": ["CoinGecko", "Rubic", "Rango"], + "occurrences": 3 + }, + "0xa45f5eb48cecd034751651aeeda6271bd5df8888": { + "address": "0xa45f5eb48cecd034751651aeeda6271bd5df8888", + "symbol": "FROGGIE ", + "decimals": 18, + "name": "Froggie ", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xa45f5eb48cecd034751651aeeda6271bd5df8888.png", + "aggregators": ["PancakeExtended", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x1646980a0e0ebea85db014807205aa4d9bf87777": { + "address": "0x1646980a0e0ebea85db014807205aa4d9bf87777", + "symbol": "SHARE", + "decimals": 18, + "name": "BNBShare", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x1646980a0e0ebea85db014807205aa4d9bf87777.png", + "aggregators": ["CoinGecko", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x14bf16f280696ec4431f2579309e865693964444": { + "address": "0x14bf16f280696ec4431f2579309e865693964444", + "symbol": "爱你老己", + "decimals": 18, + "name": "爱你老己 明天见 (Love you, my dear. See you tomorrow.)", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x14bf16f280696ec4431f2579309e865693964444.png", + "aggregators": ["CoinGecko", "Rubic", "Rango"], + "occurrences": 3 + }, + "0xe1e93e92c0c2aff2dc4d7d4a8b250d973cad4444": { + "address": "0xe1e93e92c0c2aff2dc4d7d4a8b250d973cad4444", + "symbol": "恶俗企鹅", + "decimals": 18, + "name": "三维威廉泰尔企鹅", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xe1e93e92c0c2aff2dc4d7d4a8b250d973cad4444.png", + "aggregators": ["PancakeExtended", "Rubic", "Rango"], + "occurrences": 3 + }, + "0xde914ed9f96853ab95df19481bd14f0fd9dc2249": { + "address": "0xde914ed9f96853ab95df19481bd14f0fd9dc2249", + "symbol": "VULPEFI", + "decimals": 18, + "name": "Vulpe Finance", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xde914ed9f96853ab95df19481bd14f0fd9dc2249.png", + "aggregators": ["CoinGecko", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x2896bf7bb2d4004ec18ac0c2cb92251646904444": { + "address": "0x2896bf7bb2d4004ec18ac0c2cb92251646904444", + "symbol": "SYNAP", + "decimals": 18, + "name": "Synap", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x2896bf7bb2d4004ec18ac0c2cb92251646904444.png", + "aggregators": ["CoinGecko", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x915c882e4f67d5fed79889353bfdb0ad213e9b97": { + "address": "0x915c882e4f67d5fed79889353bfdb0ad213e9b97", + "symbol": "TYCOON", + "decimals": 18, + "name": "TYCOON", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x915c882e4f67d5fed79889353bfdb0ad213e9b97.png", + "aggregators": ["PancakeExtended", "Rubic", "Rango"], + "occurrences": 3 + }, + "0xe6cae4094352a670c3eb0fcbda17c898b71c7f2a": { + "address": "0xe6cae4094352a670c3eb0fcbda17c898b71c7f2a", + "symbol": "5PT", + "decimals": 18, + "name": "Five Pillars Token", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xe6cae4094352a670c3eb0fcbda17c898b71c7f2a.png", + "aggregators": ["CoinGecko", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x88b985007d714d1578bccdec2303212c14946cdc": { + "address": "0x88b985007d714d1578bccdec2303212c14946cdc", + "symbol": "FRTC", + "decimals": 18, + "name": "FART COIN", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x88b985007d714d1578bccdec2303212c14946cdc.png", + "aggregators": ["PancakeCoinMarketCap", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x66e3daa0c86e0ad56302d36af0e7c1ba24442244": { + "address": "0x66e3daa0c86e0ad56302d36af0e7c1ba24442244", + "symbol": "AIL", + "decimals": 18, + "name": "AILayer Token", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x66e3daa0c86e0ad56302d36af0e7c1ba24442244.png", + "aggregators": ["CoinGecko", "Rubic", "Sonarwatch"], + "occurrences": 3 + }, + "0x546d499689e0d4101c7ea774a61e312d1ad72352": { + "address": "0x546d499689e0d4101c7ea774a61e312d1ad72352", + "symbol": "BABYCAT", + "decimals": 9, + "name": "Baby Cat", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x546d499689e0d4101c7ea774a61e312d1ad72352.png", + "aggregators": ["PancakeCoinMarketCap", "Rubic", "Sonarwatch"], + "occurrences": 3 + }, + "0x652fcafea5a2da18e8947748b7849b72148b4543": { + "address": "0x652fcafea5a2da18e8947748b7849b72148b4543", + "symbol": "PM", + "decimals": 18, + "name": "PumpMeme", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x652fcafea5a2da18e8947748b7849b72148b4543.png", + "aggregators": ["CoinGecko", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x2a846aaaf896ef393ccb76398c1d96ea97374444": { + "address": "0x2a846aaaf896ef393ccb76398c1d96ea97374444", + "symbol": "BORT", + "decimals": 18, + "name": "BORT", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x2a846aaaf896ef393ccb76398c1d96ea97374444.png", + "aggregators": ["CoinGecko", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x023fae553a61e6749d03e460848b33beddcc4444": { + "address": "0x023fae553a61e6749d03e460848b33beddcc4444", + "symbol": "金狗", + "decimals": 18, + "name": "金狗 (Golden Dog)", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x023fae553a61e6749d03e460848b33beddcc4444.png", + "aggregators": ["CoinGecko", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x4c32964715e9a42f8d119bfa8917d57822d3adf1": { + "address": "0x4c32964715e9a42f8d119bfa8917d57822d3adf1", + "symbol": "NETX", + "decimals": 18, + "name": "NETX", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x4c32964715e9a42f8d119bfa8917d57822d3adf1.png", + "aggregators": ["CoinGecko", "Rubic", "Rango"], + "occurrences": 3 + }, + "0xfb69e2d3d673a8db9fa74ffc036a8cf641255769": { + "address": "0xfb69e2d3d673a8db9fa74ffc036a8cf641255769", + "symbol": "BBFT", + "decimals": 18, + "name": "Baby BFT", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xfb69e2d3d673a8db9fa74ffc036a8cf641255769.png", + "aggregators": ["CoinGecko", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x94468828f4678398d976d725361004e75dcb4444": { + "address": "0x94468828f4678398d976d725361004e75dcb4444", + "symbol": "BEEPE", + "decimals": 18, + "name": "beepe", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x94468828f4678398d976d725361004e75dcb4444.png", + "aggregators": ["CoinGecko", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x743f798dd6dd9c8baa243b83d873da569ed74444": { + "address": "0x743f798dd6dd9c8baa243b83d873da569ed74444", + "symbol": "$ALPHA", + "decimals": 18, + "name": "$ALPHA", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x743f798dd6dd9c8baa243b83d873da569ed74444.png", + "aggregators": ["CoinGecko", "Rubic", "Rango"], + "occurrences": 3 + }, + "0xa524b11473b7ce7eb1dc883a585e64471a734444": { + "address": "0xa524b11473b7ce7eb1dc883a585e64471a734444", + "symbol": "JOBIESS", + "decimals": 18, + "name": "JobIess", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xa524b11473b7ce7eb1dc883a585e64471a734444.png", + "aggregators": ["PancakeExtended", "Rubic", "Rango"], + "occurrences": 3 + }, + "0xf8f4a417dbb936c2aa0fcc9e14ecc9825b13b0b5": { + "address": "0xf8f4a417dbb936c2aa0fcc9e14ecc9825b13b0b5", + "symbol": "LOA", + "decimals": 18, + "name": "Legend of Annihilation", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xf8f4a417dbb936c2aa0fcc9e14ecc9825b13b0b5.png", + "aggregators": ["PancakeCoinMarketCap", "Rubic", "Sonarwatch"], + "occurrences": 3 + }, + "0x7d38315b92d0e7a85b35b2b7fe969b25935619d7": { + "address": "0x7d38315b92d0e7a85b35b2b7fe969b25935619d7", + "symbol": "ECOIN", + "decimals": 18, + "name": "Ecoin Finance", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x7d38315b92d0e7a85b35b2b7fe969b25935619d7.png", + "aggregators": ["PancakeCoinMarketCap", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x3ecb529752dec6c6ab08fd83e425497874e21d49": { + "address": "0x3ecb529752dec6c6ab08fd83e425497874e21d49", + "symbol": "PINGPONG", + "decimals": 18, + "name": "PINGPONG", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x3ecb529752dec6c6ab08fd83e425497874e21d49.png", + "aggregators": ["CoinGecko", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x7320fdc13c9c6fb9e261b6dd3c46555fe9a5f3bc": { + "address": "0x7320fdc13c9c6fb9e261b6dd3c46555fe9a5f3bc", + "symbol": "NANA", + "decimals": 18, + "name": "NanoVita", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x7320fdc13c9c6fb9e261b6dd3c46555fe9a5f3bc.png", + "aggregators": ["PancakeExtended", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x74836cc0e821a6be18e407e6388e430b689c66e9": { + "address": "0x74836cc0e821a6be18e407e6388e430b689c66e9", + "symbol": "JAGER", + "decimals": 18, + "name": "Jager Hunter", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x74836cc0e821a6be18e407e6388e430b689c66e9.png", + "aggregators": ["PancakeExtended", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x723000d0df87652387e737f5747ac9205bf9c213": { + "address": "0x723000d0df87652387e737f5747ac9205bf9c213", + "symbol": "ND", + "decimals": 18, + "name": "Nemesis Downfall", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x723000d0df87652387e737f5747ac9205bf9c213.png", + "aggregators": ["PancakeCoinMarketCap", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x1382992c4f997a21256be58dc546e9937a5f7777": { + "address": "0x1382992c4f997a21256be58dc546e9937a5f7777", + "symbol": "BURN", + "decimals": 18, + "name": "Burn Reward Systeam", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x1382992c4f997a21256be58dc546e9937a5f7777.png", + "aggregators": ["CoinGecko", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x6efa75a8c3f2f233b0b42cb8dc3893073e7edd95": { + "address": "0x6efa75a8c3f2f233b0b42cb8dc3893073e7edd95", + "symbol": "CNV", + "decimals": 18, + "name": "Caniverse", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x6efa75a8c3f2f233b0b42cb8dc3893073e7edd95.png", + "aggregators": ["CoinGecko", "Rubic", "Rango"], + "occurrences": 3 + }, + "0xda67fbf4e6fa4bb78f62533b7264e1b13295fdf3": { + "address": "0xda67fbf4e6fa4bb78f62533b7264e1b13295fdf3", + "symbol": "CELB", + "decimals": 18, + "name": "Celb Token", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xda67fbf4e6fa4bb78f62533b7264e1b13295fdf3.png", + "aggregators": ["PancakeExtended", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x7e4dab87cbd6307e8833cc5c540ee151c6db4f42": { + "address": "0x7e4dab87cbd6307e8833cc5c540ee151c6db4f42", + "symbol": "BELG", + "decimals": 18, + "name": "Belgian Malinois", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x7e4dab87cbd6307e8833cc5c540ee151c6db4f42.png", + "aggregators": ["CoinGecko", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x9123400446a56176eb1b6be9ee5cf703e409f492": { + "address": "0x9123400446a56176eb1b6be9ee5cf703e409f492", + "symbol": "TRADOOR", + "decimals": 18, + "name": "Tradoor", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x9123400446a56176eb1b6be9ee5cf703e409f492.png", + "aggregators": ["PancakeExtended", "Rubic", "Squid"], + "occurrences": 3 + }, + "0xfd9a3f94bec6b08711d90ff69cbba42fac96b45a": { + "address": "0xfd9a3f94bec6b08711d90ff69cbba42fac96b45a", + "symbol": "CORL", + "decimals": 18, + "name": "Coral Finance", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xfd9a3f94bec6b08711d90ff69cbba42fac96b45a.png", + "aggregators": ["CoinGecko", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x4b3d30992f003c8167699735f5ab2831b2a087d3": { + "address": "0x4b3d30992f003c8167699735f5ab2831b2a087d3", + "symbol": "COLLECT", + "decimals": 18, + "name": "Collect on Fanable", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x4b3d30992f003c8167699735f5ab2831b2a087d3.png", + "aggregators": ["PancakeExtended", "LiFi", "Rubic", "Rango"], + "occurrences": 4 + }, + "0xd743d3c50ebd82f9173b599383979d10f3494444": { + "address": "0xd743d3c50ebd82f9173b599383979d10f3494444", + "symbol": "TOTAKEKE", + "decimals": 18, + "name": "Dark Cheems", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xd743d3c50ebd82f9173b599383979d10f3494444.png", + "aggregators": ["CoinGecko", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x5119b761c43ee153b5464d83fda4361512f15835": { + "address": "0x5119b761c43ee153b5464d83fda4361512f15835", + "symbol": "YBNB", + "decimals": 18, + "name": "Yellow BNB 4", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x5119b761c43ee153b5464d83fda4361512f15835.png", + "aggregators": ["CoinGecko", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x107c9c954b19f69dec6ddeffff9a5745a05e86a3": { + "address": "0x107c9c954b19f69dec6ddeffff9a5745a05e86a3", + "symbol": "SIGHT", + "decimals": 18, + "name": "Empire of Sight", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x107c9c954b19f69dec6ddeffff9a5745a05e86a3.png", + "aggregators": ["PancakeExtended", "Rubic", "Rango"], + "occurrences": 3 + }, + "0xd29f15355de1ed59970562be731f75a504a0ffff": { + "address": "0xd29f15355de1ed59970562be731f75a504a0ffff", + "symbol": "ZYAN", + "decimals": 18, + "name": "ZAYAN", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xd29f15355de1ed59970562be731f75a504a0ffff.png", + "aggregators": ["CoinGecko", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x925c8ab7a9a8a148e87cd7f1ec7ecc3625864444": { + "address": "0x925c8ab7a9a8a148e87cd7f1ec7ecc3625864444", + "symbol": "DOYR", + "decimals": 18, + "name": "DOYR", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x925c8ab7a9a8a148e87cd7f1ec7ecc3625864444.png", + "aggregators": ["PancakeExtended", "Rubic", "Rango"], + "occurrences": 3 + }, + "0xec29c09208eb99e22c81b797679a69bcf55461cf": { + "address": "0xec29c09208eb99e22c81b797679a69bcf55461cf", + "symbol": "GGEZ1", + "decimals": 18, + "name": "GGEZ1", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xec29c09208eb99e22c81b797679a69bcf55461cf.png", + "aggregators": ["CoinGecko", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x2eb08a8fe215f72e01e089c1cd8c4c4937414444": { + "address": "0x2eb08a8fe215f72e01e089c1cd8c4c4937414444", + "symbol": "蜜蜂狗", + "decimals": 18, + "name": "蜜蜂狗", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x2eb08a8fe215f72e01e089c1cd8c4c4937414444.png", + "aggregators": ["CoinGecko", "Rubic", "Rango"], + "occurrences": 3 + }, + "0xe53d384cf33294c1882227ae4f90d64cf2a5db70": { + "address": "0xe53d384cf33294c1882227ae4f90d64cf2a5db70", + "symbol": "OCICAT", + "decimals": 6, + "name": "Ocicat", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xe53d384cf33294c1882227ae4f90d64cf2a5db70.png", + "aggregators": ["CoinGecko", "Rubic", "Rango"], + "occurrences": 3 + }, + "0xf3e07812ebc8604fddb0aa35ff79a03f48f48948": { + "address": "0xf3e07812ebc8604fddb0aa35ff79a03f48f48948", + "symbol": "JART", + "decimals": 4, + "name": "JournArt", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xf3e07812ebc8604fddb0aa35ff79a03f48f48948.png", + "aggregators": ["PancakeCoinMarketCap", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x477c2c0459004e3354ba427fa285d7c053203c0e": { + "address": "0x477c2c0459004e3354ba427fa285d7c053203c0e", + "symbol": "LIGHT", + "decimals": 6, + "name": "Bitlight", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x477c2c0459004e3354ba427fa285d7c053203c0e.png", + "aggregators": ["PancakeExtended", "Rubic", "Squid"], + "occurrences": 3 + }, + "0xb77a1bd00d9c7ff5e15d70c7f78e4b80e18e4444": { + "address": "0xb77a1bd00d9c7ff5e15d70c7f78e4b80e18e4444", + "symbol": "財務自由", + "decimals": 18, + "name": "財務自由", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xb77a1bd00d9c7ff5e15d70c7f78e4b80e18e4444.png", + "aggregators": ["PancakeExtended", "Rubic", "Rango"], + "occurrences": 3 + }, + "0xd6b8e4f8c9f4694ae8e2a9565f7e039307e98b34": { + "address": "0xd6b8e4f8c9f4694ae8e2a9565f7e039307e98b34", + "symbol": "ENTRV", + "decimals": 18, + "name": "ENTRAVE", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xd6b8e4f8c9f4694ae8e2a9565f7e039307e98b34.png", + "aggregators": ["CoinGecko", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x0f0df6cb17ee5e883eddfef9153fc6036bdb4e37": { + "address": "0x0f0df6cb17ee5e883eddfef9153fc6036bdb4e37", + "symbol": "BAS", + "decimals": 18, + "name": "BNB Attestation Service", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x0f0df6cb17ee5e883eddfef9153fc6036bdb4e37.png", + "aggregators": ["PancakeExtended", "LiFi", "Rubic", "Squid"], + "occurrences": 4 + }, + "0x169ec30125728bc7912da2df76ab5f97f3bab9cb": { + "address": "0x169ec30125728bc7912da2df76ab5f97f3bab9cb", + "symbol": "TTD", + "decimals": 18, + "name": "Trade Tide Token", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x169ec30125728bc7912da2df76ab5f97f3bab9cb.png", + "aggregators": ["PancakeExtended", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x903badf5bf9175297cc889030e051431950cffff": { + "address": "0x903badf5bf9175297cc889030e051431950cffff", + "symbol": "$CARDIO", + "decimals": 18, + "name": "Cardio", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x903badf5bf9175297cc889030e051431950cffff.png", + "aggregators": ["CoinGecko", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x70131b713a5d0e9d900feca15d0e1348658e4444": { + "address": "0x70131b713a5d0e9d900feca15d0e1348658e4444", + "symbol": "NOTIFAI", + "decimals": 18, + "name": "NotifAi News", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x70131b713a5d0e9d900feca15d0e1348658e4444.png", + "aggregators": ["CoinGecko", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x529edc4cd7d7ff773837ce0ff5492d1fd2d0eafd": { + "address": "0x529edc4cd7d7ff773837ce0ff5492d1fd2d0eafd", + "symbol": "FORU", + "decimals": 18, + "name": "ForU AI", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x529edc4cd7d7ff773837ce0ff5492d1fd2d0eafd.png", + "aggregators": ["PancakeExtended", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x2789033dfe80593f69d689f65892a75afa491111": { + "address": "0x2789033dfe80593f69d689f65892a75afa491111", + "symbol": "WM", + "decimals": 18, + "name": "White Monkey", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x2789033dfe80593f69d689f65892a75afa491111.png", + "aggregators": ["PancakeExtended", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x1a5f9d77ca46646cd4937fd8d093f460b66f4444": { + "address": "0x1a5f9d77ca46646cd4937fd8d093f460b66f4444", + "symbol": "老子", + "decimals": 18, + "name": "老子", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x1a5f9d77ca46646cd4937fd8d093f460b66f4444.png", + "aggregators": ["PancakeExtended", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x45e57907058c707a068100de358ba4535b18e2f3": { + "address": "0x45e57907058c707a068100de358ba4535b18e2f3", + "symbol": "MEFAI", + "decimals": 18, + "name": "META FINANCIAL AI", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x45e57907058c707a068100de358ba4535b18e2f3.png", + "aggregators": ["CoinGecko", "Rubic", "Rango"], + "occurrences": 3 + }, + "0xffda10b7fd9cf172e0502a6bc0e5e355516c5232": { + "address": "0xffda10b7fd9cf172e0502a6bc0e5e355516c5232", + "symbol": "SFUND", + "decimals": 18, + "name": "SFUND", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xffda10b7fd9cf172e0502a6bc0e5e355516c5232.png", + "aggregators": ["PancakeExtended", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x4cda4daad72340b28925ccd6fa78db631267d3c4": { + "address": "0x4cda4daad72340b28925ccd6fa78db631267d3c4", + "symbol": "BABYDOGECASH", + "decimals": 9, + "name": "Baby Doge Cash", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x4cda4daad72340b28925ccd6fa78db631267d3c4.png", + "aggregators": ["PancakeCoinMarketCap", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x7765a659c5b0cfbfd9fbc2ef2298b75a598f2d2d": { + "address": "0x7765a659c5b0cfbfd9fbc2ef2298b75a598f2d2d", + "symbol": "ESIM", + "decimals": 18, + "name": "DEPINSIM Token", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x7765a659c5b0cfbfd9fbc2ef2298b75a598f2d2d.png", + "aggregators": ["PancakeExtended", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x7cce94c0b2c8ae7661f02544e62178377fe8cf92": { + "address": "0x7cce94c0b2c8ae7661f02544e62178377fe8cf92", + "symbol": "DADDYDOGE", + "decimals": 9, + "name": "Daddy Doge", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x7cce94c0b2c8ae7661f02544e62178377fe8cf92.png", + "aggregators": ["PancakeCoinMarketCap", "Rubic", "Rango"], + "occurrences": 3 + }, + "0xbb6738fd45aa7bb35944f0cdcc63abf54cefd4e4": { + "address": "0xbb6738fd45aa7bb35944f0cdcc63abf54cefd4e4", + "symbol": "DXP", + "decimals": 18, + "name": "DeXRP", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xbb6738fd45aa7bb35944f0cdcc63abf54cefd4e4.png", + "aggregators": ["CoinGecko", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x4e229ee3aea5047dc070b07483d8975485dd4444": { + "address": "0x4e229ee3aea5047dc070b07483d8975485dd4444", + "symbol": "币安时代", + "decimals": 18, + "name": "币安时代", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x4e229ee3aea5047dc070b07483d8975485dd4444.png", + "aggregators": ["CoinGecko", "Rubic", "Rango"], + "occurrences": 3 + }, + "0xa4b3445a58111abd407c34402ab59b0fe05bff5a": { + "address": "0xa4b3445a58111abd407c34402ab59b0fe05bff5a", + "symbol": "EXC", + "decimals": 18, + "name": "ElonXCat", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xa4b3445a58111abd407c34402ab59b0fe05bff5a.png", + "aggregators": ["CoinGecko", "Rubic", "Rango"], + "occurrences": 3 + }, + "0xa93e4bbe09b834b5a13dcd832daeaefe79fb4ae9": { + "address": "0xa93e4bbe09b834b5a13dcd832daeaefe79fb4ae9", + "symbol": "REDPEPE", + "decimals": 18, + "name": "Red Pepe", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xa93e4bbe09b834b5a13dcd832daeaefe79fb4ae9.png", + "aggregators": ["PancakeCoinMarketCap", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x1094814045fe0c29023df28698ca539296cf7777": { + "address": "0x1094814045fe0c29023df28698ca539296cf7777", + "symbol": "FDUCK", + "decimals": 18, + "name": "FinnDuck for Autism", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x1094814045fe0c29023df28698ca539296cf7777.png", + "aggregators": ["CoinGecko", "Rubic", "Rango"], + "occurrences": 3 + }, + "0xc2bd425a63800731e3ae42b6596bdd783299fcb1": { + "address": "0xc2bd425a63800731e3ae42b6596bdd783299fcb1", + "symbol": "NB", + "decimals": 18, + "name": "Nubila Network", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xc2bd425a63800731e3ae42b6596bdd783299fcb1.png", + "aggregators": ["CoinGecko", "Rubic", "Rango"], + "occurrences": 3 + }, + "0xa7bef5abd9265ab97ee43d2fc4a56e0ba25aca25": { + "address": "0xa7bef5abd9265ab97ee43d2fc4a56e0ba25aca25", + "symbol": "BAY", + "decimals": 18, + "name": "Marina Protocol", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xa7bef5abd9265ab97ee43d2fc4a56e0ba25aca25.png", + "aggregators": ["CoinGecko", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x82ec31d69b3c289e541b50e30681fd1acad24444": { + "address": "0x82ec31d69b3c289e541b50e30681fd1acad24444", + "symbol": "哈基米", + "decimals": 18, + "name": "哈基米", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x82ec31d69b3c289e541b50e30681fd1acad24444.png", + "aggregators": ["PancakeExtended", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x683e9dcf085e5efcc7925858aace94d4b8882024": { + "address": "0x683e9dcf085e5efcc7925858aace94d4b8882024", + "symbol": "TANGYUAN", + "decimals": 9, + "name": "TangYuan", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x683e9dcf085e5efcc7925858aace94d4b8882024.png", + "aggregators": ["PancakeCoinMarketCap", "Rubic", "Sonarwatch"], + "occurrences": 3 + }, + "0xc1353d3ee02fdbd4f65f92eee543cfd709049cb1": { + "address": "0xc1353d3ee02fdbd4f65f92eee543cfd709049cb1", + "symbol": "CUDIS", + "decimals": 18, + "name": "CUDIS", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xc1353d3ee02fdbd4f65f92eee543cfd709049cb1.png", + "aggregators": ["PancakeExtended", "1inch", "Rubic"], + "occurrences": 3 + }, + "0x595b0774d1b2c87dbf9720912ba0870ae9b94444": { + "address": "0x595b0774d1b2c87dbf9720912ba0870ae9b94444", + "symbol": "SHISA", + "decimals": 18, + "name": "SHISA", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x595b0774d1b2c87dbf9720912ba0870ae9b94444.png", + "aggregators": ["CoinGecko", "Rubic", "Rango"], + "occurrences": 3 + }, + "0xd686e8dfecfd976d80e5641489b7a18ac16d965d": { + "address": "0xd686e8dfecfd976d80e5641489b7a18ac16d965d", + "symbol": "WOOP", + "decimals": 18, + "name": "Woonkly", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xd686e8dfecfd976d80e5641489b7a18ac16d965d.png", + "aggregators": ["PancakeCoinMarketCap", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x93749e69560efe1ad6661903e47df538492c50a4": { + "address": "0x93749e69560efe1ad6661903e47df538492c50a4", + "symbol": "EVDC", + "decimals": 9, + "name": "EVDC", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x93749e69560efe1ad6661903e47df538492c50a4.png", + "aggregators": ["PancakeCoinMarketCap", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x78a499a998bdd5a84cf8b5abe49100d82de12f1c": { + "address": "0x78a499a998bdd5a84cf8b5abe49100d82de12f1c", + "symbol": "JOJO", + "decimals": 9, + "name": "JOJO", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x78a499a998bdd5a84cf8b5abe49100d82de12f1c.png", + "aggregators": ["PancakeCoinMarketCap", "Rubic", "Rango"], + "occurrences": 3 + }, + "0xdc847755343c3a2b94d6afc0aae57651e1b14064": { + "address": "0xdc847755343c3a2b94d6afc0aae57651e1b14064", + "symbol": "BODAV2", + "decimals": 18, + "name": "BODA", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xdc847755343c3a2b94d6afc0aae57651e1b14064.png", + "aggregators": ["PancakeCoinMarketCap", "Rubic", "Sonarwatch"], + "occurrences": 3 + }, + "0x80d04e44955aa9c3f24041b2a824a20a88e735a8": { + "address": "0x80d04e44955aa9c3f24041b2a824a20a88e735a8", + "symbol": "MVC", + "decimals": 18, + "name": "Multiverse Capital", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x80d04e44955aa9c3f24041b2a824a20a88e735a8.png", + "aggregators": ["PancakeCoinMarketCap", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x6249428345819cac8b8c7f1f68771073cb689ab1": { + "address": "0x6249428345819cac8b8c7f1f68771073cb689ab1", + "symbol": "BBK", + "decimals": 18, + "name": "BNB Bank", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x6249428345819cac8b8c7f1f68771073cb689ab1.png", + "aggregators": ["PancakeCoinMarketCap", "Rubic", "Sonarwatch"], + "occurrences": 3 + }, + "0x34e4a7454cae15990850166a8771cb8408b62a26": { + "address": "0x34e4a7454cae15990850166a8771cb8408b62a26", + "symbol": "FLX", + "decimals": 9, + "name": "Felix", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x34e4a7454cae15990850166a8771cb8408b62a26.png", + "aggregators": ["PancakeCoinMarketCap", "Rubic", "Sonarwatch"], + "occurrences": 3 + }, + "0x7268b479eb7ce8d1b37ef1ffc3b82d7383a1162d": { + "address": "0x7268b479eb7ce8d1b37ef1ffc3b82d7383a1162d", + "symbol": "MEB", + "decimals": 18, + "name": "Meblox Protocol", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x7268b479eb7ce8d1b37ef1ffc3b82d7383a1162d.png", + "aggregators": ["PancakeCoinMarketCap", "Rubic", "Rango"], + "occurrences": 3 + }, + "0xb149b030cfa47880af0bde4cd36539e4c928b3eb": { + "address": "0xb149b030cfa47880af0bde4cd36539e4c928b3eb", + "symbol": "NUTGV2", + "decimals": 9, + "name": "NUTGAIN", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xb149b030cfa47880af0bde4cd36539e4c928b3eb.png", + "aggregators": ["PancakeCoinMarketCap", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x10b9dd394467f2cfbc769e07e88dc7e2c41b0965": { + "address": "0x10b9dd394467f2cfbc769e07e88dc7e2c41b0965", + "symbol": "RET", + "decimals": 9, + "name": "Renewable Energy Token", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x10b9dd394467f2cfbc769e07e88dc7e2c41b0965.png", + "aggregators": ["PancakeCoinMarketCap", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x4afc8c2be6a0783ea16e16066fde140d15979296": { + "address": "0x4afc8c2be6a0783ea16e16066fde140d15979296", + "symbol": "HARE", + "decimals": 9, + "name": "Hare Token", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x4afc8c2be6a0783ea16e16066fde140d15979296.png", + "aggregators": ["PancakeCoinMarketCap", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x88c55b3255ae1e6628c953c5cdff27ad3cc33c81": { + "address": "0x88c55b3255ae1e6628c953c5cdff27ad3cc33c81", + "symbol": "DLEGENDS", + "decimals": 9, + "name": "My DeFi Legends", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x88c55b3255ae1e6628c953c5cdff27ad3cc33c81.png", + "aggregators": ["PancakeCoinMarketCap", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x54626300818e5c5b44db0fcf45ba4943ca89a9e2": { + "address": "0x54626300818e5c5b44db0fcf45ba4943ca89a9e2", + "symbol": "CHECOIN", + "decimals": 18, + "name": "CheCoin", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x54626300818e5c5b44db0fcf45ba4943ca89a9e2.png", + "aggregators": ["PancakeCoinMarketCap", "Rubic", "Sonarwatch"], + "occurrences": 3 + }, + "0x4823a096382f4fa583b55d563afb9f9a58c72fc0": { + "address": "0x4823a096382f4fa583b55d563afb9f9a58c72fc0", + "symbol": "ABIC", + "decimals": 18, + "name": "Arabic", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x4823a096382f4fa583b55d563afb9f9a58c72fc0.png", + "aggregators": ["PancakeCoinMarketCap", "Rubic", "Rango"], + "occurrences": 3 + }, + "0xed66ec1acb7dbd0c01cccff33e3ff1f423057c21": { + "address": "0xed66ec1acb7dbd0c01cccff33e3ff1f423057c21", + "symbol": "VT", + "decimals": 18, + "name": "Virtual Tourist", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xed66ec1acb7dbd0c01cccff33e3ff1f423057c21.png", + "aggregators": ["PancakeCoinMarketCap", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x1b2128abc4119474d16bb0a04200b63b0e68a971": { + "address": "0x1b2128abc4119474d16bb0a04200b63b0e68a971", + "symbol": "CONX", + "decimals": 18, + "name": "Connex", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x1b2128abc4119474d16bb0a04200b63b0e68a971.png", + "aggregators": ["PancakeCoinMarketCap", "Rubic", "Rango"], + "occurrences": 3 + }, + "0xe96a53af382c669848a87d42df3af6e08c34fa5e": { + "address": "0xe96a53af382c669848a87d42df3af6e08c34fa5e", + "symbol": "GUCCIPEPE", + "decimals": 18, + "name": "GucciPepe", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xe96a53af382c669848a87d42df3af6e08c34fa5e.png", + "aggregators": ["PancakeCoinMarketCap", "Rubic", "Rango"], + "occurrences": 3 + }, + "0xded8893858419bad2fa43970ab29776d6c171455": { + "address": "0xded8893858419bad2fa43970ab29776d6c171455", + "symbol": "GELO", + "decimals": 9, + "name": "Grok Elo", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xded8893858419bad2fa43970ab29776d6c171455.png", + "aggregators": ["PancakeCoinMarketCap", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x6ec9a568881755c9698384cc6b5b13bf4064e12b": { + "address": "0x6ec9a568881755c9698384cc6b5b13bf4064e12b", + "symbol": "OPX", + "decimals": 9, + "name": "Optimus X", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x6ec9a568881755c9698384cc6b5b13bf4064e12b.png", + "aggregators": ["PancakeCoinMarketCap", "Rubic", "Sonarwatch"], + "occurrences": 3 + }, + "0xe0edfb2d674188d3fea36a38f39e6cd8a14e28e0": { + "address": "0xe0edfb2d674188d3fea36a38f39e6cd8a14e28e0", + "symbol": "SAFEGROK", + "decimals": 9, + "name": "SafeGrok", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xe0edfb2d674188d3fea36a38f39e6cd8a14e28e0.png", + "aggregators": ["PancakeCoinMarketCap", "Rubic", "Sonarwatch"], + "occurrences": 3 + }, + "0x9f7f4ddbcac23db5280d4aab83a28c5c3eff535e": { + "address": "0x9f7f4ddbcac23db5280d4aab83a28c5c3eff535e", + "symbol": "OUT", + "decimals": 18, + "name": "Outter Finance", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x9f7f4ddbcac23db5280d4aab83a28c5c3eff535e.png", + "aggregators": ["PancakeCoinMarketCap", "Rubic", "Sonarwatch"], + "occurrences": 3 + }, + "0x9851feb263dd6e559c2b934f2873401cfb09ecb5": { + "address": "0x9851feb263dd6e559c2b934f2873401cfb09ecb5", + "symbol": "BUCK", + "decimals": 18, + "name": "CoinBuck", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x9851feb263dd6e559c2b934f2873401cfb09ecb5.png", + "aggregators": ["PancakeCoinMarketCap", "Rubic", "Sonarwatch"], + "occurrences": 3 + }, + "0x0c78d4605c2972e5f989de9019de1fb00c5d3462": { + "address": "0x0c78d4605c2972e5f989de9019de1fb00c5d3462", + "symbol": "CESS", + "decimals": 18, + "name": "CESS Network", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x0c78d4605c2972e5f989de9019de1fb00c5d3462.png", + "aggregators": ["CoinGecko", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x22830be0954ff3bf7929405c488b1bba54a7e0d3": { + "address": "0x22830be0954ff3bf7929405c488b1bba54a7e0d3", + "symbol": "BRCST", + "decimals": 18, + "name": "BRCStarter", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x22830be0954ff3bf7929405c488b1bba54a7e0d3.png", + "aggregators": ["PancakeCoinMarketCap", "Rubic", "Rango"], + "occurrences": 3 + }, + "0xf00cd9366a13e725ab6764ee6fc8bd21da22786e": { + "address": "0xf00cd9366a13e725ab6764ee6fc8bd21da22786e", + "symbol": "TWD", + "decimals": 18, + "name": "THE WORD TOKEN", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xf00cd9366a13e725ab6764ee6fc8bd21da22786e.png", + "aggregators": ["PancakeCoinMarketCap", "Rubic", "Rango"], + "occurrences": 3 + }, + "0xbfc89d2134053d15d277a01c2a1a1980e0a5dbcd": { + "address": "0xbfc89d2134053d15d277a01c2a1a1980e0a5dbcd", + "symbol": "BABYTOMCAT", + "decimals": 9, + "name": "Baby Tomcat", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xbfc89d2134053d15d277a01c2a1a1980e0a5dbcd.png", + "aggregators": ["PancakeCoinMarketCap", "Rubic", "Sonarwatch"], + "occurrences": 3 + }, + "0xe11f1d5eee6be945bee3fa20dbf46febbc9f4a19": { + "address": "0xe11f1d5eee6be945bee3fa20dbf46febbc9f4a19", + "symbol": "NUSA", + "decimals": 18, + "name": "Nusa", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xe11f1d5eee6be945bee3fa20dbf46febbc9f4a19.png", + "aggregators": ["PancakeCoinMarketCap", "Rubic", "Rango"], + "occurrences": 3 + }, + "0xee7e8c85956d32c64bafdcded3f43b3c39b1ce2f": { + "address": "0xee7e8c85956d32c64bafdcded3f43b3c39b1ce2f", + "symbol": "WEB4", + "decimals": 9, + "name": "WEB4 AI", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xee7e8c85956d32c64bafdcded3f43b3c39b1ce2f.png", + "aggregators": ["PancakeCoinMarketCap", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x23f9a46a2c06f5249702aad1b9b1fd1b6e6833cf": { + "address": "0x23f9a46a2c06f5249702aad1b9b1fd1b6e6833cf", + "symbol": "NPT", + "decimals": 18, + "name": "Nero", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x23f9a46a2c06f5249702aad1b9b1fd1b6e6833cf.png", + "aggregators": ["PancakeCoinMarketCap", "Rubic", "Sonarwatch"], + "occurrences": 3 + }, + "0x71d03f5cbf039febcc6ee8dbe20bc9ba3ea874fe": { + "address": "0x71d03f5cbf039febcc6ee8dbe20bc9ba3ea874fe", + "symbol": "W3S", + "decimals": 18, + "name": "Web3Shot", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x71d03f5cbf039febcc6ee8dbe20bc9ba3ea874fe.png", + "aggregators": ["PancakeCoinMarketCap", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x62529d7de8293217c8f74d60c8c0f6481de47f0e": { + "address": "0x62529d7de8293217c8f74d60c8c0f6481de47f0e", + "symbol": "DAYL", + "decimals": 18, + "name": "Daylight Protocol", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x62529d7de8293217c8f74d60c8c0f6481de47f0e.png", + "aggregators": ["PancakeCoinMarketCap", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x6eb6e8974264bee01c160f1770a38f8e6de1a3b1": { + "address": "0x6eb6e8974264bee01c160f1770a38f8e6de1a3b1", + "symbol": "GET", + "decimals": 9, + "name": "Get AI", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x6eb6e8974264bee01c160f1770a38f8e6de1a3b1.png", + "aggregators": ["CoinGecko", "Rubic", "Sonarwatch"], + "occurrences": 3 + }, + "0xf5f53af4595bab806e2522ca7a8bbcb70a9b3da8": { + "address": "0xf5f53af4595bab806e2522ca7a8bbcb70a9b3da8", + "symbol": "T99", + "decimals": 18, + "name": "T99", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xf5f53af4595bab806e2522ca7a8bbcb70a9b3da8.png", + "aggregators": ["CoinGecko", "Rubic", "Rango"], + "occurrences": 3 + }, + "0xda05ca5303d75f14e298fb8aeff51fd2f2105803": { + "address": "0xda05ca5303d75f14e298fb8aeff51fd2f2105803", + "symbol": "ARARA", + "decimals": 18, + "name": "ARARA", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xda05ca5303d75f14e298fb8aeff51fd2f2105803.png", + "aggregators": ["CoinGecko", "Rubic", "Rango"], + "occurrences": 3 + }, + "0xd5369a3cac0f4448a9a96bb98af9c887c92fc37b": { + "address": "0xd5369a3cac0f4448a9a96bb98af9c887c92fc37b", + "symbol": "BUBB", + "decimals": 18, + "name": "Bubb", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xd5369a3cac0f4448a9a96bb98af9c887c92fc37b.png", + "aggregators": ["PancakeExtended", "Rubic", "Sonarwatch"], + "occurrences": 3 + }, + "0x07cce0b93cde5e14a00e680fb39c189c7a2b7d93": { + "address": "0x07cce0b93cde5e14a00e680fb39c189c7a2b7d93", + "symbol": "BPT", + "decimals": 18, + "name": "BPT", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x07cce0b93cde5e14a00e680fb39c189c7a2b7d93.png", + "aggregators": ["CoinGecko", "Rubic", "Rango"], + "occurrences": 3 + }, + "0xcab6311f95faf6b5db4fd306092b6bcd9807e8f0": { + "address": "0xcab6311f95faf6b5db4fd306092b6bcd9807e8f0", + "symbol": "FXBT", + "decimals": 18, + "name": "FourXBT", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xcab6311f95faf6b5db4fd306092b6bcd9807e8f0.png", + "aggregators": ["CoinGecko", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x2ff8d8cae3a9633285c60150099bad25c9b4e5d9": { + "address": "0x2ff8d8cae3a9633285c60150099bad25c9b4e5d9", + "symbol": "AICZ", + "decimals": 18, + "name": "Artificial CZ", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x2ff8d8cae3a9633285c60150099bad25c9b4e5d9.png", + "aggregators": ["CoinGecko", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x12819623921be0f4d5ebfc12c75e6d08a1683080": { + "address": "0x12819623921be0f4d5ebfc12c75e6d08a1683080", + "symbol": "BROCCOLI", + "decimals": 18, + "name": "Broccoli", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x12819623921be0f4d5ebfc12c75e6d08a1683080.png", + "aggregators": ["CoinGecko", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x86da4b72f0ce7a9d263263f521f37b3aa9a996d4": { + "address": "0x86da4b72f0ce7a9d263263f521f37b3aa9a996d4", + "symbol": "TDE", + "decimals": 9, + "name": "Trader", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x86da4b72f0ce7a9d263263f521f37b3aa9a996d4.png", + "aggregators": ["CoinGecko", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x23d3f4eaaa515403c6765bb623f287a8cca28f2b": { + "address": "0x23d3f4eaaa515403c6765bb623f287a8cca28f2b", + "symbol": "BROCCOLI", + "decimals": 18, + "name": "Broccoli", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x23d3f4eaaa515403c6765bb623f287a8cca28f2b.png", + "aggregators": ["PancakeExtended", "Rubic", "Sonarwatch"], + "occurrences": 3 + }, + "0x3ab1a5f76e12202d1ad1548a08a799501581da4e": { + "address": "0x3ab1a5f76e12202d1ad1548a08a799501581da4e", + "symbol": "DIN", + "decimals": 18, + "name": "DIN", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x3ab1a5f76e12202d1ad1548a08a799501581da4e.png", + "aggregators": ["CoinGecko", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x709a6bb090b8c4c72cb44533624f3df320a8ba80": { + "address": "0x709a6bb090b8c4c72cb44533624f3df320a8ba80", + "symbol": "BABYBROCCOLI", + "decimals": 18, + "name": "Baby Broccoli", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x709a6bb090b8c4c72cb44533624f3df320a8ba80.png", + "aggregators": ["CoinGecko", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x8a87562947422db0eb3070a5a1ac773c7a8d64e7": { + "address": "0x8a87562947422db0eb3070a5a1ac773c7a8d64e7", + "symbol": "SILENTIS", + "decimals": 18, + "name": "Silentis", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x8a87562947422db0eb3070a5a1ac773c7a8d64e7.png", + "aggregators": ["CoinGecko", "Rubic", "Sonarwatch"], + "occurrences": 3 + }, + "0x1e756f0493da68433de3b47d5de2d5e791fe5a26": { + "address": "0x1e756f0493da68433de3b47d5de2d5e791fe5a26", + "symbol": "BOBO", + "decimals": 18, + "name": "BOBO", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x1e756f0493da68433de3b47d5de2d5e791fe5a26.png", + "aggregators": ["CoinGecko", "Rubic", "Sonarwatch"], + "occurrences": 3 + }, + "0x92072f045d0904e9a0cdfd48519f54c83bf41e82": { + "address": "0x92072f045d0904e9a0cdfd48519f54c83bf41e82", + "symbol": "MOCHI", + "decimals": 9, + "name": "Mochi DeFi", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x92072f045d0904e9a0cdfd48519f54c83bf41e82.png", + "aggregators": ["PancakeCoinMarketCap", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x04c6f12e06ffe8a79935accf3d3068a4581a7e95": { + "address": "0x04c6f12e06ffe8a79935accf3d3068a4581a7e95", + "symbol": "BABYPEIPEI", + "decimals": 9, + "name": "Baby PeiPei", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x04c6f12e06ffe8a79935accf3d3068a4581a7e95.png", + "aggregators": ["PancakeCoinMarketCap", "Rubic", "Sonarwatch"], + "occurrences": 3 + }, + "0xde04da55b74435d7b9f2c5c62d9f1b53929b09aa": { + "address": "0xde04da55b74435d7b9f2c5c62d9f1b53929b09aa", + "symbol": "AICELL", + "decimals": 18, + "name": "AICell", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xde04da55b74435d7b9f2c5c62d9f1b53929b09aa.png", + "aggregators": ["PancakeExtended", "Rubic", "Sonarwatch"], + "occurrences": 3 + }, + "0xd949902af904dc295d85cf8e9de0ece9d5699a8f": { + "address": "0xd949902af904dc295d85cf8e9de0ece9d5699a8f", + "symbol": "MANA3", + "decimals": 18, + "name": "MANA3", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xd949902af904dc295d85cf8e9de0ece9d5699a8f.png", + "aggregators": ["CoinGecko", "Rubic", "Sonarwatch"], + "occurrences": 3 + }, + "0x5f2ad0a281ea15515c8feff8421cb968cbfe9ae4": { + "address": "0x5f2ad0a281ea15515c8feff8421cb968cbfe9ae4", + "symbol": "SETAI", + "decimals": 18, + "name": "Sentient AI", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x5f2ad0a281ea15515c8feff8421cb968cbfe9ae4.png", + "aggregators": ["CoinGecko", "Rubic", "Rango"], + "occurrences": 3 + }, + "0xea7ebde332834c636e788819d0dcdc94ec936200": { + "address": "0xea7ebde332834c636e788819d0dcdc94ec936200", + "symbol": "PSP", + "decimals": 18, + "name": "PSP", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xea7ebde332834c636e788819d0dcdc94ec936200.png", + "aggregators": ["CoinGecko", "Rubic", "Rango"], + "occurrences": 3 + }, + "0xac36f2697a315a0a2244b905d13cd31dfebc8e63": { + "address": "0xac36f2697a315a0a2244b905d13cd31dfebc8e63", + "symbol": "DOGE BABY", + "decimals": 8, + "name": "Doge Baby", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xac36f2697a315a0a2244b905d13cd31dfebc8e63.png", + "aggregators": ["CoinGecko", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x3303113001c51769f2753c2afb7b5a6d0535660e": { + "address": "0x3303113001c51769f2753c2afb7b5a6d0535660e", + "symbol": "BABYGROK", + "decimals": 9, + "name": "Baby Grok", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x3303113001c51769f2753c2afb7b5a6d0535660e.png", + "aggregators": ["CoinGecko", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x1e3dbc0aad9671fdd31e58b2fcc6cf1ca9947994": { + "address": "0x1e3dbc0aad9671fdd31e58b2fcc6cf1ca9947994", + "symbol": "WAI", + "decimals": 18, + "name": "WORLD3", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x1e3dbc0aad9671fdd31e58b2fcc6cf1ca9947994.png", + "aggregators": ["PancakeExtended", "Socket", "Rubic"], + "occurrences": 3 + }, + "0x001208f7f53f78db2b32e1c68198d3e8f320aa23": { + "address": "0x001208f7f53f78db2b32e1c68198d3e8f320aa23", + "symbol": "APD", + "decimals": 9, + "name": "APD", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x001208f7f53f78db2b32e1c68198d3e8f320aa23.png", + "aggregators": ["CoinGecko", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x8888888809b788cd6e40a2d27e67425d5d0b5d3b": { + "address": "0x8888888809b788cd6e40a2d27e67425d5d0b5d3b", + "symbol": "CTH", + "decimals": 18, + "name": "Wrapped CTH Token", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x8888888809b788cd6e40a2d27e67425d5d0b5d3b.png", + "aggregators": ["CoinGecko", "Rubic", "Rango"], + "occurrences": 3 + }, + "0xe41de737f691847bc5ea486f2adc443936e5010c": { + "address": "0xe41de737f691847bc5ea486f2adc443936e5010c", + "symbol": "AIX", + "decimals": 18, + "name": "AIX Wallet", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xe41de737f691847bc5ea486f2adc443936e5010c.png", + "aggregators": ["CoinGecko", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x6a37f1219f367f8a369a2e2d00c8dbe0354086dd": { + "address": "0x6a37f1219f367f8a369a2e2d00c8dbe0354086dd", + "symbol": "CAL50", + "decimals": 18, + "name": "CAL50", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x6a37f1219f367f8a369a2e2d00c8dbe0354086dd.png", + "aggregators": ["CoinGecko", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x338ede32ef54b28a9a755d07144b4a7061dd4444": { + "address": "0x338ede32ef54b28a9a755d07144b4a7061dd4444", + "symbol": "空气币", + "decimals": 18, + "name": "air coin", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x338ede32ef54b28a9a755d07144b4a7061dd4444.png", + "aggregators": ["CoinGecko", "Rubic", "Rango"], + "occurrences": 3 + }, + "0xf3091e416b8b77b9b293ce8ea15ce1e034ff4bd1": { + "address": "0xf3091e416b8b77b9b293ce8ea15ce1e034ff4bd1", + "symbol": "PUG", + "decimals": 9, + "name": "Pug Inu", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xf3091e416b8b77b9b293ce8ea15ce1e034ff4bd1.png", + "aggregators": ["CoinGecko", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x84575b87395c970f1f48e87d87a8db36ed653716": { + "address": "0x84575b87395c970f1f48e87d87a8db36ed653716", + "symbol": "CDL", + "decimals": 18, + "name": "Creditlink", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x84575b87395c970f1f48e87d87a8db36ed653716.png", + "aggregators": ["PancakeExtended", "Rubic", "Rango"], + "occurrences": 3 + }, + "0xdd6abc8d9b3741df92eb82fb593f6abb1203ea92": { + "address": "0xdd6abc8d9b3741df92eb82fb593f6abb1203ea92", + "symbol": "CCC", + "decimals": 18, + "name": "CyberCrashCoin", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xdd6abc8d9b3741df92eb82fb593f6abb1203ea92.png", + "aggregators": ["CoinGecko", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x1eb55169c045dd91ac47a0c3af2fb1df93064444": { + "address": "0x1eb55169c045dd91ac47a0c3af2fb1df93064444", + "symbol": "MOON", + "decimals": 18, + "name": "Moon", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x1eb55169c045dd91ac47a0c3af2fb1df93064444.png", + "aggregators": ["CoinGecko", "Rubic", "Rango"], + "occurrences": 3 + }, + "0xc23db46993f643f1fa0494cd30f9f43505885d84": { + "address": "0xc23db46993f643f1fa0494cd30f9f43505885d84", + "symbol": "TCOM", + "decimals": 18, + "name": "TCOM", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xc23db46993f643f1fa0494cd30f9f43505885d84.png", + "aggregators": ["PancakeExtended", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x718447e29b90d00461966d01e533fa1b69574444": { + "address": "0x718447e29b90d00461966d01e533fa1b69574444", + "symbol": "TENGE", + "decimals": 18, + "name": "TENGE TENGE", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x718447e29b90d00461966d01e533fa1b69574444.png", + "aggregators": ["CoinGecko", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x5d3a12c42e5372b2cc3264ab3cdcf660a1555238": { + "address": "0x5d3a12c42e5372b2cc3264ab3cdcf660a1555238", + "symbol": "ARIA", + "decimals": 18, + "name": "Aria.AI", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x5d3a12c42e5372b2cc3264ab3cdcf660a1555238.png", + "aggregators": ["PancakeExtended", "Rubic", "Squid"], + "occurrences": 3 + }, + "0xf22aac87e08d7fc60aa89eb21110ddfe59c20854": { + "address": "0xf22aac87e08d7fc60aa89eb21110ddfe59c20854", + "symbol": "BTC", + "decimals": 18, + "name": "Bitcoin AI", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xf22aac87e08d7fc60aa89eb21110ddfe59c20854.png", + "aggregators": ["CoinGecko", "Rubic", "Rango"], + "occurrences": 3 + }, + "0xaf62c16e46238c14ab8eda78285feb724e7d4444": { + "address": "0xaf62c16e46238c14ab8eda78285feb724e7d4444", + "symbol": "CRX", + "decimals": 18, + "name": "Chatrix", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xaf62c16e46238c14ab8eda78285feb724e7d4444.png", + "aggregators": ["CoinGecko", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x83330d159c9a4b09e6717feefef7a634b70d216a": { + "address": "0x83330d159c9a4b09e6717feefef7a634b70d216a", + "symbol": "MTP", + "decimals": 18, + "name": "Multiple Network Token", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x83330d159c9a4b09e6717feefef7a634b70d216a.png", + "aggregators": ["CoinGecko", "Rubic", "Rango"], + "occurrences": 3 + }, + "0xbfa362937bfd11ec22a023abf83b6df4e5e303d4": { + "address": "0xbfa362937bfd11ec22a023abf83b6df4e5e303d4", + "symbol": "DIT", + "decimals": 18, + "name": "DIT", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xbfa362937bfd11ec22a023abf83b6df4e5e303d4.png", + "aggregators": ["CoinGecko", "Rubic", "Rango"], + "occurrences": 3 + }, + "0xe5e1a0a43f307f390887e2a17399172f3f9a3cab": { + "address": "0xe5e1a0a43f307f390887e2a17399172f3f9a3cab", + "symbol": "ETAN", + "decimals": 18, + "name": "Etarn", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xe5e1a0a43f307f390887e2a17399172f3f9a3cab.png", + "aggregators": ["CoinGecko", "Rubic", "Rango"], + "occurrences": 3 + }, + "0xf0b6e02bb5903bc98792aebe98e72007d3d7e5e8": { + "address": "0xf0b6e02bb5903bc98792aebe98e72007d3d7e5e8", + "symbol": "BLWK", + "decimals": 18, + "name": "BlackWork", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xf0b6e02bb5903bc98792aebe98e72007d3d7e5e8.png", + "aggregators": ["CoinGecko", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x42fe1937e1db4f11509e9f7fdd97048bd8d04444": { + "address": "0x42fe1937e1db4f11509e9f7fdd97048bd8d04444", + "symbol": "DON", + "decimals": 18, + "name": "Salamanca", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x42fe1937e1db4f11509e9f7fdd97048bd8d04444.png", + "aggregators": ["CoinGecko", "Rubic", "Rango"], + "occurrences": 3 + }, + "0xe9ff81d70aa9319134748c1628b6768e8f281f19": { + "address": "0xe9ff81d70aa9319134748c1628b6768e8f281f19", + "symbol": "PUPX", + "decimals": 18, + "name": "Pupnance", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xe9ff81d70aa9319134748c1628b6768e8f281f19.png", + "aggregators": ["CoinGecko", "Rubic", "Sonarwatch"], + "occurrences": 3 + }, + "0xd8002d4bd1d50136a731c141e3206d516e6d3b3d": { + "address": "0xd8002d4bd1d50136a731c141e3206d516e6d3b3d", + "symbol": "GM", + "decimals": 18, + "name": "Gomble", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xd8002d4bd1d50136a731c141e3206d516e6d3b3d.png", + "aggregators": ["PancakeExtended", "Rubic", "Sonarwatch"], + "occurrences": 3 + }, + "0xcdc80a63d24bb2b3c7de48ef4a69a00000000000": { + "address": "0xcdc80a63d24bb2b3c7de48ef4a69a00000000000", + "symbol": "K0", + "decimals": 18, + "name": "Kill Zero Token", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xcdc80a63d24bb2b3c7de48ef4a69a00000000000.png", + "aggregators": ["CoinGecko", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x795d2710e383f33fbebe980a155b29757b6703f3": { + "address": "0x795d2710e383f33fbebe980a155b29757b6703f3", + "symbol": "GHIBLI", + "decimals": 18, + "name": "GhibliCZ", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x795d2710e383f33fbebe980a155b29757b6703f3.png", + "aggregators": ["CoinGecko", "Rubic", "Rango"], + "occurrences": 3 + }, + "0xee20edd0cd31b499796b4dc9db5fd0eb6bb17961": { + "address": "0xee20edd0cd31b499796b4dc9db5fd0eb6bb17961", + "symbol": "SENTI", + "decimals": 18, + "name": "Senti AI", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xee20edd0cd31b499796b4dc9db5fd0eb6bb17961.png", + "aggregators": ["CoinGecko", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x4a1c76b8e8b347e1852352ea931bfe649fc64444": { + "address": "0x4a1c76b8e8b347e1852352ea931bfe649fc64444", + "symbol": "ROCKET", + "decimals": 18, + "name": "DOGE ROCKET", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x4a1c76b8e8b347e1852352ea931bfe649fc64444.png", + "aggregators": ["CoinGecko", "Rubic", "Rango"], + "occurrences": 3 + }, + "0xacee924ec7fceb684369519e2d135db2eaabe192": { + "address": "0xacee924ec7fceb684369519e2d135db2eaabe192", + "symbol": "SHORT", + "decimals": 18, + "name": "Bermuda Shorts", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xacee924ec7fceb684369519e2d135db2eaabe192.png", + "aggregators": ["CoinGecko", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x7f890a4a575558307826c82e4cb6e671f3178bfc": { + "address": "0x7f890a4a575558307826c82e4cb6e671f3178bfc", + "symbol": "CTD", + "decimals": 18, + "name": "Chain Talk Daily", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x7f890a4a575558307826c82e4cb6e671f3178bfc.png", + "aggregators": ["CoinGecko", "Rubic", "Rango"], + "occurrences": 3 + }, + "0xaa9f209c295437c31bde75eee1aa8453f2acabcd": { + "address": "0xaa9f209c295437c31bde75eee1aa8453f2acabcd", + "symbol": "AID", + "decimals": 18, + "name": "AID", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xaa9f209c295437c31bde75eee1aa8453f2acabcd.png", + "aggregators": ["CoinGecko", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x380bf199b3173cf7b3b321848ae1c5014a124444": { + "address": "0x380bf199b3173cf7b3b321848ae1c5014a124444", + "symbol": "W", + "decimals": 18, + "name": "W", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x380bf199b3173cf7b3b321848ae1c5014a124444.png", + "aggregators": ["CoinGecko", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x3b4de3c7855c03bb9f50ea252cd2c9fa1125ab07": { + "address": "0x3b4de3c7855c03bb9f50ea252cd2c9fa1125ab07", + "symbol": "IDOL", + "decimals": 18, + "name": "MEET48 Token", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x3b4de3c7855c03bb9f50ea252cd2c9fa1125ab07.png", + "aggregators": ["PancakeExtended", "LiFi", "Rubic"], + "occurrences": 3 + }, + "0x74da4c5f8c254dd4fb39f9804c0924f52a808318": { + "address": "0x74da4c5f8c254dd4fb39f9804c0924f52a808318", + "symbol": "CA", + "decimals": 18, + "name": "Caila", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x74da4c5f8c254dd4fb39f9804c0924f52a808318.png", + "aggregators": ["PancakeExtended", "Socket", "Rubic"], + "occurrences": 3 + }, + "0xbfe78de7d1c51e0868501d5fa3e88e674c79acdd": { + "address": "0xbfe78de7d1c51e0868501d5fa3e88e674c79acdd", + "symbol": "LOT", + "decimals": 18, + "name": "League of Traders", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xbfe78de7d1c51e0868501d5fa3e88e674c79acdd.png", + "aggregators": ["CoinGecko", "Rubic", "Rango"], + "occurrences": 3 + }, + "0xadf7335da0e77339f2d69841f79b0aa6c14d187d": { + "address": "0xadf7335da0e77339f2d69841f79b0aa6c14d187d", + "symbol": "AIV", + "decimals": 18, + "name": "AIVille Governance Token", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xadf7335da0e77339f2d69841f79b0aa6c14d187d.png", + "aggregators": ["CoinGecko", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x3c8d20001fe883934a15c949a3355a65ca984444": { + "address": "0x3c8d20001fe883934a15c949a3355a65ca984444", + "symbol": "JANITOR", + "decimals": 18, + "name": "Janitor", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x3c8d20001fe883934a15c949a3355a65ca984444.png", + "aggregators": ["PancakeExtended", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x945cd29a40629ada610c2f6eba3f393756aa4444": { + "address": "0x945cd29a40629ada610c2f6eba3f393756aa4444", + "symbol": "USD1DOGE", + "decimals": 18, + "name": "USD1DOGE", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x945cd29a40629ada610c2f6eba3f393756aa4444.png", + "aggregators": ["CoinGecko", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x595e21b20e78674f8a64c1566a20b2b316bc3511": { + "address": "0x595e21b20e78674f8a64c1566a20b2b316bc3511", + "symbol": "BULLA", + "decimals": 18, + "name": "BULLA", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x595e21b20e78674f8a64c1566a20b2b316bc3511.png", + "aggregators": ["PancakeExtended", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x88a573484a2bb61dc830cd41cfca2f7b75622ec9": { + "address": "0x88a573484a2bb61dc830cd41cfca2f7b75622ec9", + "symbol": "MOCO", + "decimals": 0, + "name": "MOCO", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x88a573484a2bb61dc830cd41cfca2f7b75622ec9.png", + "aggregators": ["CoinGecko", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x6338daf47ea4cf4f0901d16853eaa8e64b499c30": { + "address": "0x6338daf47ea4cf4f0901d16853eaa8e64b499c30", + "symbol": "TNT", + "decimals": 18, + "name": "Titan Token", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x6338daf47ea4cf4f0901d16853eaa8e64b499c30.png", + "aggregators": ["CoinGecko", "Rubic", "Sonarwatch"], + "occurrences": 3 + }, + "0x2d2d8449ec0bb78c497c36ffaac583dff4bd4444": { + "address": "0x2d2d8449ec0bb78c497c36ffaac583dff4bd4444", + "symbol": "MVP", + "decimals": 18, + "name": "CrypstocksAI", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x2d2d8449ec0bb78c497c36ffaac583dff4bd4444.png", + "aggregators": ["CoinGecko", "Rubic", "Rango"], + "occurrences": 3 + }, + "0xd6a8dc25b26beb85cd0eef63e5d8d32048113b51": { + "address": "0xd6a8dc25b26beb85cd0eef63e5d8d32048113b51", + "symbol": "F", + "decimals": 18, + "name": "F", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xd6a8dc25b26beb85cd0eef63e5d8d32048113b51.png", + "aggregators": ["CoinGecko", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x8de4aa9716c1bd8d68ad73b1cb8639830f40ee05": { + "address": "0x8de4aa9716c1bd8d68ad73b1cb8639830f40ee05", + "symbol": "CJL", + "decimals": 18, + "name": "CJL", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x8de4aa9716c1bd8d68ad73b1cb8639830f40ee05.png", + "aggregators": ["CoinGecko", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x46ee3bfc281d59009ccd06f1dd6abdbfcd82ffc3": { + "address": "0x46ee3bfc281d59009ccd06f1dd6abdbfcd82ffc3", + "symbol": "GATA", + "decimals": 18, + "name": "Gata", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x46ee3bfc281d59009ccd06f1dd6abdbfcd82ffc3.png", + "aggregators": ["PancakeExtended", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x8a0db359c38414b5f145f65cc1c69d9253067c43": { + "address": "0x8a0db359c38414b5f145f65cc1c69d9253067c43", + "symbol": "UPTOP", + "decimals": 18, + "name": "UPTOP", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x8a0db359c38414b5f145f65cc1c69d9253067c43.png", + "aggregators": ["PancakeExtended", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x4ade32598fe2caa549fd7c720bb91c0111314444": { + "address": "0x4ade32598fe2caa549fd7c720bb91c0111314444", + "symbol": "CRYSTAL", + "decimals": 18, + "name": "CrystalMine", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x4ade32598fe2caa549fd7c720bb91c0111314444.png", + "aggregators": ["CoinGecko", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x0d4d3c739e2fdf82c7ce2a9e450e208e5330a237": { + "address": "0x0d4d3c739e2fdf82c7ce2a9e450e208e5330a237", + "symbol": "ZORO", + "decimals": 18, + "name": "ZoRobotics", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x0d4d3c739e2fdf82c7ce2a9e450e208e5330a237.png", + "aggregators": ["PancakeExtended", "Rubic", "Rango"], + "occurrences": 3 + }, + "0xd6752d1c7fcec58bffe3898eb31453b9e35d47e6": { + "address": "0xd6752d1c7fcec58bffe3898eb31453b9e35d47e6", + "symbol": "BALDOR", + "decimals": 18, + "name": "Baldor", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xd6752d1c7fcec58bffe3898eb31453b9e35d47e6.png", + "aggregators": ["CoinGecko", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x0510101ec6c49d24ed911f0011e22a0d697ee776": { + "address": "0x0510101ec6c49d24ed911f0011e22a0d697ee776", + "symbol": "X", + "decimals": 18, + "name": "TaleX", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x0510101ec6c49d24ed911f0011e22a0d697ee776.png", + "aggregators": ["PancakeExtended", "Socket", "Rubic"], + "occurrences": 3 + }, + "0x2e156a3e09782a785345b7a33c46c71596ffd551": { + "address": "0x2e156a3e09782a785345b7a33c46c71596ffd551", + "symbol": "IMAGE", + "decimals": 18, + "name": "Imagen Network (BSC)", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x2e156a3e09782a785345b7a33c46c71596ffd551.png", + "aggregators": ["CoinGecko", "Rubic", "Rango"], + "occurrences": 3 + }, + "0xc2b1ddb75046c4915c641cc0dc0d0f160ef82be5": { + "address": "0xc2b1ddb75046c4915c641cc0dc0d0f160ef82be5", + "symbol": "GLIDR", + "decimals": 18, + "name": "Glidr", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xc2b1ddb75046c4915c641cc0dc0d0f160ef82be5.png", + "aggregators": ["CoinGecko", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x6dfa5cfb15a439f78b118a14780e7c07a14148af": { + "address": "0x6dfa5cfb15a439f78b118a14780e7c07a14148af", + "symbol": "BLUP", + "decimals": 18, + "name": "Bluwhale Points Token", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x6dfa5cfb15a439f78b118a14780e7c07a14148af.png", + "aggregators": ["CoinGecko", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x6ea8211a1e47dbd8b55c487c0b906ebc57b94444": { + "address": "0x6ea8211a1e47dbd8b55c487c0b906ebc57b94444", + "symbol": "LIBERTY", + "decimals": 18, + "name": "Torch of Liberty", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x6ea8211a1e47dbd8b55c487c0b906ebc57b94444.png", + "aggregators": ["PancakeExtended", "Rubic", "Rango"], + "occurrences": 3 + }, + "0xb5b7f828caed10db9582bed424ff79809ce766cb": { + "address": "0xb5b7f828caed10db9582bed424ff79809ce766cb", + "symbol": "MOO", + "decimals": 18, + "name": "Moo", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xb5b7f828caed10db9582bed424ff79809ce766cb.png", + "aggregators": ["CoinGecko", "Rubic", "Rango"], + "occurrences": 3 + }, + "0xb86414afc434345a91ca80a889d73fd1e8155b4b": { + "address": "0xb86414afc434345a91ca80a889d73fd1e8155b4b", + "symbol": "CTCP", + "decimals": 18, + "name": "CTC PLUS", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xb86414afc434345a91ca80a889d73fd1e8155b4b.png", + "aggregators": ["CoinGecko", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x5f992abf5bc1725f6b0dfd116031c31aebb54444": { + "address": "0x5f992abf5bc1725f6b0dfd116031c31aebb54444", + "symbol": "OID", + "decimals": 18, + "name": "OID", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x5f992abf5bc1725f6b0dfd116031c31aebb54444.png", + "aggregators": ["CoinGecko", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x977c4f40742daca3f1a4c11b44938fc12d714444": { + "address": "0x977c4f40742daca3f1a4c11b44938fc12d714444", + "symbol": "2", + "decimals": 18, + "name": "2", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x977c4f40742daca3f1a4c11b44938fc12d714444.png", + "aggregators": ["CoinGecko", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x02e75d28a8aa2a0033b8cf866fcf0bb0e1ee4444": { + "address": "0x02e75d28a8aa2a0033b8cf866fcf0bb0e1ee4444", + "symbol": "PALU", + "decimals": 18, + "name": "Palu", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x02e75d28a8aa2a0033b8cf866fcf0bb0e1ee4444.png", + "aggregators": ["PancakeExtended", "Rubic", "Rango"], + "occurrences": 3 + }, + "0xb3eb140b4183bd155eb6d3e62a28758ad8a04444": { + "address": "0xb3eb140b4183bd155eb6d3e62a28758ad8a04444", + "symbol": "LULU", + "decimals": 18, + "name": "Capybara LULU", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xb3eb140b4183bd155eb6d3e62a28758ad8a04444.png", + "aggregators": ["CoinGecko", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x95db59f8aeeed345cfb3dd87762de37c77b8f520": { + "address": "0x95db59f8aeeed345cfb3dd87762de37c77b8f520", + "symbol": "$IPAX", + "decimals": 18, + "name": "Icopax", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x95db59f8aeeed345cfb3dd87762de37c77b8f520.png", + "aggregators": ["CoinGecko", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x593964358e7a1f4aa29e3c371e2148d18a6e4444": { + "address": "0x593964358e7a1f4aa29e3c371e2148d18a6e4444", + "symbol": "UPTOBER", + "decimals": 18, + "name": "Uptober", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x593964358e7a1f4aa29e3c371e2148d18a6e4444.png", + "aggregators": ["CoinGecko", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x0ace816a5336d8bdf8dece69cf084a03e36c4444": { + "address": "0x0ace816a5336d8bdf8dece69cf084a03e36c4444", + "symbol": "TIMELESS", + "decimals": 18, + "name": "Timeless", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x0ace816a5336d8bdf8dece69cf084a03e36c4444.png", + "aggregators": ["CoinGecko", "Rubic", "Rango"], + "occurrences": 3 + }, + "0xe389d200de7825db1a0fb62a0a68723920594444": { + "address": "0xe389d200de7825db1a0fb62a0a68723920594444", + "symbol": "FOREVER", + "decimals": 18, + "name": "FOREVER", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xe389d200de7825db1a0fb62a0a68723920594444.png", + "aggregators": ["CoinGecko", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x1d62584d38d26519ea509ee0668e4df25d164444": { + "address": "0x1d62584d38d26519ea509ee0668e4df25d164444", + "symbol": "ZIB", + "decimals": 18, + "name": "ZIBA", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x1d62584d38d26519ea509ee0668e4df25d164444.png", + "aggregators": ["CoinGecko", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x88883075fb050f4199cf7b2011cc15f1c966403f": { + "address": "0x88883075fb050f4199cf7b2011cc15f1c966403f", + "symbol": "BGOAT", + "decimals": 18, + "name": "BNB Goat", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x88883075fb050f4199cf7b2011cc15f1c966403f.png", + "aggregators": ["CoinGecko", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x3a89ff5a692cbb4a726a4d58253cbbbca9914444": { + "address": "0x3a89ff5a692cbb4a726a4d58253cbbbca9914444", + "symbol": "SANTA", + "decimals": 18, + "name": "Santacoin", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x3a89ff5a692cbb4a726a4d58253cbbbca9914444.png", + "aggregators": ["CoinGecko", "Rubic", "Rango"], + "occurrences": 3 + }, + "0xe9e3d8609e50c333b7e8fafb1a06f5443cb64444": { + "address": "0xe9e3d8609e50c333b7e8fafb1a06f5443cb64444", + "symbol": "YEPE", + "decimals": 18, + "name": "Yellow Pepe", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xe9e3d8609e50c333b7e8fafb1a06f5443cb64444.png", + "aggregators": ["CoinGecko", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x3ac8e2c113d5d7824ac6ebe82a3c60b1b9d64444": { + "address": "0x3ac8e2c113d5d7824ac6ebe82a3c60b1b9d64444", + "symbol": "客服小何", + "decimals": 18, + "name": "客服小何", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x3ac8e2c113d5d7824ac6ebe82a3c60b1b9d64444.png", + "aggregators": ["PancakeExtended", "Rubic", "Rango"], + "occurrences": 3 + }, + "0xf63d65a803efc5389ebded67473819a208ef4444": { + "address": "0xf63d65a803efc5389ebded67473819a208ef4444", + "symbol": "PALIE", + "decimals": 18, + "name": "Palie", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xf63d65a803efc5389ebded67473819a208ef4444.png", + "aggregators": ["CoinGecko", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x4f0a3bb884ac105d5e9f5ece437b05fc9a374444": { + "address": "0x4f0a3bb884ac105d5e9f5ece437b05fc9a374444", + "symbol": "SENDIT", + "decimals": 18, + "name": "Send It", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x4f0a3bb884ac105d5e9f5ece437b05fc9a374444.png", + "aggregators": ["CoinGecko", "Rubic", "Rango"], + "occurrences": 3 + }, + "0xc64dd458016302156323e724e94187b22a614444": { + "address": "0xc64dd458016302156323e724e94187b22a614444", + "symbol": "LIMITIESS", + "decimals": 18, + "name": "Limitless Coin", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xc64dd458016302156323e724e94187b22a614444.png", + "aggregators": ["CoinGecko", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x44443dd87ec4d1bea3425acc118adb023f07f91b": { + "address": "0x44443dd87ec4d1bea3425acc118adb023f07f91b", + "symbol": "修仙", + "decimals": 18, + "name": "修仙", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x44443dd87ec4d1bea3425acc118adb023f07f91b.png", + "aggregators": ["PancakeExtended", "Rubic", "Rango"], + "occurrences": 3 + }, + "0xc3c1b25ff8c3f828f36a030960d54082ed984444": { + "address": "0xc3c1b25ff8c3f828f36a030960d54082ed984444", + "symbol": "龙LONG", + "decimals": 18, + "name": "龙Long", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xc3c1b25ff8c3f828f36a030960d54082ed984444.png", + "aggregators": ["CoinGecko", "Rubic", "Rango"], + "occurrences": 3 + }, + "0xf368b32764a4b9e58cf6da67bb454f7809bc4444": { + "address": "0xf368b32764a4b9e58cf6da67bb454f7809bc4444", + "symbol": "1BNB", + "decimals": 18, + "name": "just buy 1bnb", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xf368b32764a4b9e58cf6da67bb454f7809bc4444.png", + "aggregators": ["CoinGecko", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x4444915314921dedff580946b691e5521d3aaa5a": { + "address": "0x4444915314921dedff580946b691e5521d3aaa5a", + "symbol": "Z", + "decimals": 18, + "name": "Z", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x4444915314921dedff580946b691e5521d3aaa5a.png", + "aggregators": ["CoinGecko", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x23d6645c66ebb25a68aa2862357eac378a274444": { + "address": "0x23d6645c66ebb25a68aa2862357eac378a274444", + "symbol": "马喽", + "decimals": 18, + "name": "马喽", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x23d6645c66ebb25a68aa2862357eac378a274444.png", + "aggregators": ["CoinGecko", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x78525f54e46d2821ec59bfae27201058881b4444": { + "address": "0x78525f54e46d2821ec59bfae27201058881b4444", + "symbol": "BULLS", + "decimals": 18, + "name": "BULLS", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x78525f54e46d2821ec59bfae27201058881b4444.png", + "aggregators": ["CoinGecko", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x7eb8f6a94cb6ffdf9f38c9d5b92e45de81474444": { + "address": "0x7eb8f6a94cb6ffdf9f38c9d5b92e45de81474444", + "symbol": "佩佩", + "decimals": 18, + "name": "PEPE", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x7eb8f6a94cb6ffdf9f38c9d5b92e45de81474444.png", + "aggregators": ["CoinGecko", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x4444f20947325dc5d37643bcaaa537c85cfcb524": { + "address": "0x4444f20947325dc5d37643bcaaa537c85cfcb524", + "symbol": "BOA", + "decimals": 18, + "name": "BULL FROG", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x4444f20947325dc5d37643bcaaa537c85cfcb524.png", + "aggregators": ["CoinGecko", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x544028231562a43b106fbceca722b65cb5c861b0": { + "address": "0x544028231562a43b106fbceca722b65cb5c861b0", + "symbol": "OLY", + "decimals": 9, + "name": "OLY", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x544028231562a43b106fbceca722b65cb5c861b0.png", + "aggregators": ["CoinGecko", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x9edcb93ecbe489d1ff2e4b9a4370d32309474444": { + "address": "0x9edcb93ecbe489d1ff2e4b9a4370d32309474444", + "symbol": "SCI6900", + "decimals": 18, + "name": "上证综合指数6900", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x9edcb93ecbe489d1ff2e4b9a4370d32309474444.png", + "aggregators": ["CoinGecko", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x0c5429e9dd1362bfb55c31c01b7f0f38f5f64444": { + "address": "0x0c5429e9dd1362bfb55c31c01b7f0f38f5f64444", + "symbol": "BINA", + "decimals": 18, + "name": "Binance yellow robot", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x0c5429e9dd1362bfb55c31c01b7f0f38f5f64444.png", + "aggregators": ["CoinGecko", "Rubic", "Rango"], + "occurrences": 3 + }, + "0xdc280afcd08e61be78ca8d154f78ef0bfea6deac": { + "address": "0xdc280afcd08e61be78ca8d154f78ef0bfea6deac", + "symbol": "BIAO", + "decimals": 18, + "name": "Biaoqing", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xdc280afcd08e61be78ca8d154f78ef0bfea6deac.png", + "aggregators": ["CoinGecko", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x810df4c7daf4ee06ae7c621d0680e73a505c9a06": { + "address": "0x810df4c7daf4ee06ae7c621d0680e73a505c9a06", + "symbol": "P", + "decimals": 18, + "name": "PoP Planet", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x810df4c7daf4ee06ae7c621d0680e73a505c9a06.png", + "aggregators": ["PancakeExtended", "Rubic", "Rango"], + "occurrences": 3 + }, + "0xee634a826465a1799afc2cfefbdb6fa3766c8888": { + "address": "0xee634a826465a1799afc2cfefbdb6fa3766c8888", + "symbol": "AEA", + "decimals": 18, + "name": "AlphaExchangeAI", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xee634a826465a1799afc2cfefbdb6fa3766c8888.png", + "aggregators": ["CoinGecko", "Rubic", "Rango"], + "occurrences": 3 + }, + "0xd0593df7a9a99ae03b46437c5f20c339bc02fc37": { + "address": "0xd0593df7a9a99ae03b46437c5f20c339bc02fc37", + "symbol": "BABYASTER", + "decimals": 9, + "name": "Baby Aster", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xd0593df7a9a99ae03b46437c5f20c339bc02fc37.png", + "aggregators": ["CoinGecko", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x6331bf8d601f0d7f0d2101772af5137c418c4444": { + "address": "0x6331bf8d601f0d7f0d2101772af5137c418c4444", + "symbol": "BSC", + "decimals": 18, + "name": "Binance Super Cycle", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x6331bf8d601f0d7f0d2101772af5137c418c4444.png", + "aggregators": ["CoinGecko", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x0320ac98a6b24acc65af829d15822f2c47904444": { + "address": "0x0320ac98a6b24acc65af829d15822f2c47904444", + "symbol": "BABYBTC", + "decimals": 18, + "name": "Baby Bitcoin", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x0320ac98a6b24acc65af829d15822f2c47904444.png", + "aggregators": ["CoinGecko", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x7d03759e5b41e36899833cb2e008455d69a24444": { + "address": "0x7d03759e5b41e36899833cb2e008455d69a24444", + "symbol": "PRICELESS", + "decimals": 18, + "name": "priceless", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x7d03759e5b41e36899833cb2e008455d69a24444.png", + "aggregators": ["CoinGecko", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x953783617a71a888f8b04f397f2c9e1a7c37af7e": { + "address": "0x953783617a71a888f8b04f397f2c9e1a7c37af7e", + "symbol": "JOJO", + "decimals": 18, + "name": "JOJOWORLD", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x953783617a71a888f8b04f397f2c9e1a7c37af7e.png", + "aggregators": ["PancakeExtended", "Rubic", "Rango"], + "occurrences": 3 + }, + "0xf1cf3b0e5c427c04cc48dbb3ab7f6ba357434444": { + "address": "0xf1cf3b0e5c427c04cc48dbb3ab7f6ba357434444", + "symbol": "杀马特", + "decimals": 18, + "name": "Shamatte", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xf1cf3b0e5c427c04cc48dbb3ab7f6ba357434444.png", + "aggregators": ["CoinGecko", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x9798da338fe83caf52d7533b48b8aed0913c4444": { + "address": "0x9798da338fe83caf52d7533b48b8aed0913c4444", + "symbol": "脸谱", + "decimals": 18, + "name": "脸谱", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x9798da338fe83caf52d7533b48b8aed0913c4444.png", + "aggregators": ["CoinGecko", "Rubic", "Rango"], + "occurrences": 3 + }, + "0xac5d77c76583a48d025ba1f01b0f544ea1294444": { + "address": "0xac5d77c76583a48d025ba1f01b0f544ea1294444", + "symbol": "PREDIFY", + "decimals": 18, + "name": "Predify", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xac5d77c76583a48d025ba1f01b0f544ea1294444.png", + "aggregators": ["CoinGecko", "Rubic", "Rango"], + "occurrences": 3 + }, + "0xcfc416b8d7937e77ac2e461afe1abea34d874444": { + "address": "0xcfc416b8d7937e77ac2e461afe1abea34d874444", + "symbol": "DARKBET", + "decimals": 18, + "name": "Darkbet", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xcfc416b8d7937e77ac2e461afe1abea34d874444.png", + "aggregators": ["CoinGecko", "Rubic", "Rango"], + "occurrences": 3 + }, + "0xc160598f2f5b216b48fa36007b4538114a234444": { + "address": "0xc160598f2f5b216b48fa36007b4538114a234444", + "symbol": "SAFE", + "decimals": 18, + "name": "SAFE", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xc160598f2f5b216b48fa36007b4538114a234444.png", + "aggregators": ["CoinGecko", "Rubic", "Rango"], + "occurrences": 3 + }, + "0xc8edb71a0a0873b8dcdfdcf619542d5de350b9e4": { + "address": "0xc8edb71a0a0873b8dcdfdcf619542d5de350b9e4", + "symbol": "FROG", + "decimals": 9, + "name": "FROG", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xc8edb71a0a0873b8dcdfdcf619542d5de350b9e4.png", + "aggregators": ["CoinGecko", "Rubic", "Rango"], + "occurrences": 3 + }, + "0xf6661fdb33c5fbf6d2c514598cdee0ea9ff04444": { + "address": "0xf6661fdb33c5fbf6d2c514598cdee0ea9ff04444", + "symbol": "ORACLE", + "decimals": 18, + "name": "OracleBNB", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xf6661fdb33c5fbf6d2c514598cdee0ea9ff04444.png", + "aggregators": ["CoinGecko", "Rubic", "Rango"], + "occurrences": 3 + }, + "0xf857213e62d9419ca2076032a1ea3a89d0714444": { + "address": "0xf857213e62d9419ca2076032a1ea3a89d0714444", + "symbol": "POCHITA", + "decimals": 18, + "name": "pochita", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xf857213e62d9419ca2076032a1ea3a89d0714444.png", + "aggregators": ["CoinGecko", "Rubic", "Rango"], + "occurrences": 3 + }, + "0xc6ebc9ac941082398b2b7118e82fa4351a234444": { + "address": "0xc6ebc9ac941082398b2b7118e82fa4351a234444", + "symbol": "DIGI1", + "decimals": 18, + "name": "Digichain Agent", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xc6ebc9ac941082398b2b7118e82fa4351a234444.png", + "aggregators": ["CoinGecko", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x15b204919815b32fc8c6319d2f09d98a02c41111": { + "address": "0x15b204919815b32fc8c6319d2f09d98a02c41111", + "symbol": "TAKO", + "decimals": 18, + "name": "TAKO", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x15b204919815b32fc8c6319d2f09d98a02c41111.png", + "aggregators": ["CoinGecko", "Rubic", "Rango"], + "occurrences": 3 + }, + "0xf909f5b0533f3269eea797c93d2c8e2abdbf4444": { + "address": "0xf909f5b0533f3269eea797c93d2c8e2abdbf4444", + "symbol": "BNBDIP", + "decimals": 18, + "name": "BNBdip", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xf909f5b0533f3269eea797c93d2c8e2abdbf4444.png", + "aggregators": ["CoinGecko", "Rubic", "Rango"], + "occurrences": 3 + }, + "0xafc4867779e03b81bebe62ec587f55e00cd02dc1": { + "address": "0xafc4867779e03b81bebe62ec587f55e00cd02dc1", + "symbol": "100¥", + "decimals": 18, + "name": "just buy 100¥ worth", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xafc4867779e03b81bebe62ec587f55e00cd02dc1.png", + "aggregators": ["CoinGecko", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x7bd8c371304cc038ff8dc0e54975a719f9aa4444": { + "address": "0x7bd8c371304cc038ff8dc0e54975a719f9aa4444", + "symbol": "重生", + "decimals": 18, + "name": "重生", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x7bd8c371304cc038ff8dc0e54975a719f9aa4444.png", + "aggregators": ["CoinGecko", "Rubic", "Rango"], + "occurrences": 3 + }, + "0xa890f8ba60051ec8a5b528f056da362ba208a96f": { + "address": "0xa890f8ba60051ec8a5b528f056da362ba208a96f", + "symbol": "GAIN", + "decimals": 18, + "name": "GriffinAI", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xa890f8ba60051ec8a5b528f056da362ba208a96f.png", + "aggregators": ["PancakeExtended", "LiFi", "Rubic"], + "occurrences": 3 + }, + "0xd6c9383d1030c3ca802632e139880d6f99604444": { + "address": "0xd6c9383d1030c3ca802632e139880d6f99604444", + "symbol": "高手", + "decimals": 18, + "name": "高手", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xd6c9383d1030c3ca802632e139880d6f99604444.png", + "aggregators": ["CoinGecko", "Rubic", "Rango"], + "occurrences": 3 + }, + "0xf34eb033ffc9dd8d64514af8e7ceaed5d6154444": { + "address": "0xf34eb033ffc9dd8d64514af8e7ceaed5d6154444", + "symbol": "PVE", + "decimals": 18, + "name": "pve", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xf34eb033ffc9dd8d64514af8e7ceaed5d6154444.png", + "aggregators": ["CoinGecko", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x085e90d9d5c9e3540ee91f7e28c48fc8cb314444": { + "address": "0x085e90d9d5c9e3540ee91f7e28c48fc8cb314444", + "symbol": "KORICO", + "decimals": 18, + "name": "Korico", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x085e90d9d5c9e3540ee91f7e28c48fc8cb314444.png", + "aggregators": ["CoinGecko", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x7a0bc0f5de87be3b2fe00546df583668b2994444": { + "address": "0x7a0bc0f5de87be3b2fe00546df583668b2994444", + "symbol": "CBNB", + "decimals": 18, + "name": "Community of BNB", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x7a0bc0f5de87be3b2fe00546df583668b2994444.png", + "aggregators": ["CoinGecko", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x15272209c6996e7dfa88c7463b899f4754794444": { + "address": "0x15272209c6996e7dfa88c7463b899f4754794444", + "symbol": "X444", + "decimals": 18, + "name": "x444", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x15272209c6996e7dfa88c7463b899f4754794444.png", + "aggregators": ["CoinGecko", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x4444b33f8d84f37c08b9487ff2efb8c908496b34": { + "address": "0x4444b33f8d84f37c08b9487ff2efb8c908496b34", + "symbol": "GM", + "decimals": 18, + "name": "gm", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x4444b33f8d84f37c08b9487ff2efb8c908496b34.png", + "aggregators": ["CoinGecko", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x444489f1ded1f000e5b4cd53c16c26f13d1b325d": { + "address": "0x444489f1ded1f000e5b4cd53c16c26f13d1b325d", + "symbol": "MIKA", + "decimals": 18, + "name": "Mika Grok Companion", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x444489f1ded1f000e5b4cd53c16c26f13d1b325d.png", + "aggregators": ["CoinGecko", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x44449eb99a54fb5f6de516ca4dc213602d50be33": { + "address": "0x44449eb99a54fb5f6de516ca4dc213602d50be33", + "symbol": "KURUMI", + "decimals": 18, + "name": "Kurumi", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x44449eb99a54fb5f6de516ca4dc213602d50be33.png", + "aggregators": ["CoinGecko", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x66969ecd173451f00a4652a53acc6246569d4444": { + "address": "0x66969ecd173451f00a4652a53acc6246569d4444", + "symbol": "DRAGON", + "decimals": 18, + "name": "DRAGON", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x66969ecd173451f00a4652a53acc6246569d4444.png", + "aggregators": ["CoinGecko", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x67b47971426bb2180453b3993ff2ec319e704444": { + "address": "0x67b47971426bb2180453b3993ff2ec319e704444", + "symbol": "LUCKY", + "decimals": 18, + "name": "B-Lucky", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x67b47971426bb2180453b3993ff2ec319e704444.png", + "aggregators": ["CoinGecko", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x2a7e3392458307493c86388d5e544aad93286836": { + "address": "0x2a7e3392458307493c86388d5e544aad93286836", + "symbol": "ARIAIP", + "decimals": 18, + "name": "Aria", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x2a7e3392458307493c86388d5e544aad93286836.png", + "aggregators": ["PancakeExtended", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x136acf349e28936489742f0d031f6271239ff63c": { + "address": "0x136acf349e28936489742f0d031f6271239ff63c", + "symbol": "NIHAO", + "decimals": 18, + "name": "NiHao Coin", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x136acf349e28936489742f0d031f6271239ff63c.png", + "aggregators": ["CoinGecko", "Rubic", "Rango"], + "occurrences": 3 + }, + "0xfca5208e4074e06596cc28b47214a109e4c14444": { + "address": "0xfca5208e4074e06596cc28b47214a109e4c14444", + "symbol": "SHIH", + "decimals": 18, + "name": "Shih Tzu", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xfca5208e4074e06596cc28b47214a109e4c14444.png", + "aggregators": ["CoinGecko", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x55f75fe8345db62fd30d57e0c60903a758484444": { + "address": "0x55f75fe8345db62fd30d57e0c60903a758484444", + "symbol": "松狮犬", + "decimals": 18, + "name": "chow-chow", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x55f75fe8345db62fd30d57e0c60903a758484444.png", + "aggregators": ["CoinGecko", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x444416a582466fdae0f2fcdf0a859675f8ff6e9f": { + "address": "0x444416a582466fdae0f2fcdf0a859675f8ff6e9f", + "symbol": "MARSCOIN", + "decimals": 18, + "name": "MarsCoin", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x444416a582466fdae0f2fcdf0a859675f8ff6e9f.png", + "aggregators": ["PancakeExtended", "Rubic", "Rango"], + "occurrences": 3 + }, + "0xd6d4854c63055e7d0caae22ab8c4e023104a4444": { + "address": "0xd6d4854c63055e7d0caae22ab8c4e023104a4444", + "symbol": "🫰", + "decimals": 18, + "name": "🫰", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xd6d4854c63055e7d0caae22ab8c4e023104a4444.png", + "aggregators": ["CoinGecko", "Rubic", "Rango"], + "occurrences": 3 + }, + "0xae9abf7172fcce37a3b423893018d3366a1f4444": { + "address": "0xae9abf7172fcce37a3b423893018d3366a1f4444", + "symbol": "WAVE", + "decimals": 18, + "name": "WaveFi", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xae9abf7172fcce37a3b423893018d3366a1f4444.png", + "aggregators": ["CoinGecko", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x49cf3353e2e514cca0f185b916a7d672de9f4444": { + "address": "0x49cf3353e2e514cca0f185b916a7d672de9f4444", + "symbol": "4444", + "decimals": 18, + "name": "4444", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x49cf3353e2e514cca0f185b916a7d672de9f4444.png", + "aggregators": ["CoinGecko", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x370fa5abd5385f1acaeb708bd675012d5bbde9ac": { + "address": "0x370fa5abd5385f1acaeb708bd675012d5bbde9ac", + "symbol": "BIOBOI", + "decimals": 18, + "name": "BioBOI", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x370fa5abd5385f1acaeb708bd675012d5bbde9ac.png", + "aggregators": ["CoinGecko", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x8fd0d741e09a98e82256c63f25f90301ea71a83e": { + "address": "0x8fd0d741e09a98e82256c63f25f90301ea71a83e", + "symbol": "SENTIS", + "decimals": 18, + "name": "Sentism AI Token", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x8fd0d741e09a98e82256c63f25f90301ea71a83e.png", + "aggregators": ["PancakeExtended", "Rubic", "Rango"], + "occurrences": 3 + }, + "0xcbccebef2258e49add9ff60221e568069b6b4444": { + "address": "0xcbccebef2258e49add9ff60221e568069b6b4444", + "symbol": "ZINTECH", + "decimals": 18, + "name": "Zintech", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xcbccebef2258e49add9ff60221e568069b6b4444.png", + "aggregators": ["CoinGecko", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x6f0d89f39e0c7034ce3a5865ed111187a30a4444": { + "address": "0x6f0d89f39e0c7034ce3a5865ed111187a30a4444", + "symbol": "CAST", + "decimals": 18, + "name": "CAST ORACLES", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x6f0d89f39e0c7034ce3a5865ed111187a30a4444.png", + "aggregators": ["CoinGecko", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x834baf4f7832cc3c00734ddb2e0c61c68d975822": { + "address": "0x834baf4f7832cc3c00734ddb2e0c61c68d975822", + "symbol": "42", + "decimals": 18, + "name": "Semantic Layer", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x834baf4f7832cc3c00734ddb2e0c61c68d975822.png", + "aggregators": ["PancakeExtended", "Rubic", "Rango"], + "occurrences": 3 + }, + "0xff5d99a5c16cf2ffb4e7da1d7c42a791e70e4444": { + "address": "0xff5d99a5c16cf2ffb4e7da1d7c42a791e70e4444", + "symbol": "1", + "decimals": 18, + "name": "Ucan fix life in1day", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xff5d99a5c16cf2ffb4e7da1d7c42a791e70e4444.png", + "aggregators": ["PancakeExtended", "Rubic", "Rango"], + "occurrences": 3 + }, + "0xd3e261612e1d0076153c1d1c37585f7dec6aeca5": { + "address": "0xd3e261612e1d0076153c1d1c37585f7dec6aeca5", + "symbol": "EVOP", + "decimals": 18, + "name": "Evolve PRO", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xd3e261612e1d0076153c1d1c37585f7dec6aeca5.png", + "aggregators": ["CoinGecko", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x63b2ec5371f4527e02193af24b81933a9ecf4444": { + "address": "0x63b2ec5371f4527e02193af24b81933a9ecf4444", + "symbol": "YULI", + "decimals": 18, + "name": "The BnB Fish", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x63b2ec5371f4527e02193af24b81933a9ecf4444.png", + "aggregators": ["CoinGecko", "Rubic", "Rango"], + "occurrences": 3 + }, + "0xa4c21320d2c4e1ee7a72abe9b2b04f2cd3786028": { + "address": "0xa4c21320d2c4e1ee7a72abe9b2b04f2cd3786028", + "symbol": "BONG", + "decimals": 18, + "name": "BONG", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xa4c21320d2c4e1ee7a72abe9b2b04f2cd3786028.png", + "aggregators": ["CoinGecko", "Rubic", "Rango"], + "occurrences": 3 + }, + "0xe77223430bfb8e497a3c8e126cb5ad5275934444": { + "address": "0xe77223430bfb8e497a3c8e126cb5ad5275934444", + "symbol": "1", + "decimals": 18, + "name": "1", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xe77223430bfb8e497a3c8e126cb5ad5275934444.png", + "aggregators": ["CoinGecko", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x2e44ab95549b8a12afdb970bde5a6a78365e4444": { + "address": "0x2e44ab95549b8a12afdb970bde5a6a78365e4444", + "symbol": "ZSWAP", + "decimals": 18, + "name": "ZygoSwap", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x2e44ab95549b8a12afdb970bde5a6a78365e4444.png", + "aggregators": ["CoinGecko", "Rubic", "Rango"], + "occurrences": 3 + }, + "0xa3cfb853339b77f385b994799b015cb04b208fe6": { + "address": "0xa3cfb853339b77f385b994799b015cb04b208fe6", + "symbol": "POP", + "decimals": 18, + "name": "Zypher Token", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xa3cfb853339b77f385b994799b015cb04b208fe6.png", + "aggregators": ["PancakeExtended", "Socket", "Rubic"], + "occurrences": 3 + }, + "0x41f52a42091a6b2146561bf05b722ad1d0e46f8b": { + "address": "0x41f52a42091a6b2146561bf05b722ad1d0e46f8b", + "symbol": "KIND", + "decimals": 18, + "name": "KIND CAT TOKEN", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x41f52a42091a6b2146561bf05b722ad1d0e46f8b.png", + "aggregators": ["CoinGecko", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x9d0d41df4ca809dc16a9bff646d3c6cbc4ebc707": { + "address": "0x9d0d41df4ca809dc16a9bff646d3c6cbc4ebc707", + "symbol": "RZR", + "decimals": 9, + "name": "Rezor", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x9d0d41df4ca809dc16a9bff646d3c6cbc4ebc707.png", + "aggregators": ["CoinGecko", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x9f6c24232f1bba6ef47bcb81b9b9434acdb94444": { + "address": "0x9f6c24232f1bba6ef47bcb81b9b9434acdb94444", + "symbol": "ASTERINU", + "decimals": 18, + "name": "Aster INU", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x9f6c24232f1bba6ef47bcb81b9b9434acdb94444.png", + "aggregators": ["CoinGecko", "Rubic", "Rango"], + "occurrences": 3 + }, + "0xeb2b7d5691878627eff20492ca7c9a71228d931d": { + "address": "0xeb2b7d5691878627eff20492ca7c9a71228d931d", + "symbol": "CREPE", + "decimals": 9, + "name": "CREPE", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xeb2b7d5691878627eff20492ca7c9a71228d931d.png", + "aggregators": ["CoinGecko", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x1a4d41219c547f3a0ee36cf3d9e68f80699cf283": { + "address": "0x1a4d41219c547f3a0ee36cf3d9e68f80699cf283", + "symbol": "OASIS", + "decimals": 18, + "name": "OASIS", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x1a4d41219c547f3a0ee36cf3d9e68f80699cf283.png", + "aggregators": ["CoinGecko", "Rubic", "Rango"], + "occurrences": 3 + }, + "0xb51d09b75193c35c1eb72d5714453a04051a80bc": { + "address": "0xb51d09b75193c35c1eb72d5714453a04051a80bc", + "symbol": "WMN", + "decimals": 18, + "name": "WebMind Network", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xb51d09b75193c35c1eb72d5714453a04051a80bc.png", + "aggregators": ["PancakeCoinMarketCap", "Rubic", "Sonarwatch"], + "occurrences": 3 + }, + "0x238950013fa29a3575eb7a3d99c00304047a77b5": { + "address": "0x238950013fa29a3575eb7a3d99c00304047a77b5", + "symbol": "BEEPER", + "decimals": 18, + "name": "Beeper Coin", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x238950013fa29a3575eb7a3d99c00304047a77b5.png", + "aggregators": ["CoinGecko", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x98a0a245ef9a96cf28f1ebf1a3b3bc562ed8d783": { + "address": "0x98a0a245ef9a96cf28f1ebf1a3b3bc562ed8d783", + "symbol": "ILMT", + "decimals": 18, + "name": "iLuminary Token", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x98a0a245ef9a96cf28f1ebf1a3b3bc562ed8d783.png", + "aggregators": ["CoinGecko", "Rubic", "Sonarwatch"], + "occurrences": 3 + }, + "0x575abfc711d630189cfd048788519782a1914444": { + "address": "0x575abfc711d630189cfd048788519782a1914444", + "symbol": "VISION", + "decimals": 18, + "name": "OcularAI", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x575abfc711d630189cfd048788519782a1914444.png", + "aggregators": ["CoinGecko", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x6ad12e761b438bea3ea09f6c6266556bb24c2181": { + "address": "0x6ad12e761b438bea3ea09f6c6266556bb24c2181", + "symbol": "BDX", + "decimals": 9, + "name": "BDX", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x6ad12e761b438bea3ea09f6c6266556bb24c2181.png", + "aggregators": ["CoinGecko", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x1ce440d1a64eea6aa1db2a5aa51c9b326930957c": { + "address": "0x1ce440d1a64eea6aa1db2a5aa51c9b326930957c", + "symbol": "ATD", + "decimals": 18, + "name": "A2DAO Token", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x1ce440d1a64eea6aa1db2a5aa51c9b326930957c.png", + "aggregators": ["PancakeCoinMarketCap", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x9bafc8d4b487cebff201721702507a3e2c67ad79": { + "address": "0x9bafc8d4b487cebff201721702507a3e2c67ad79", + "symbol": "KAVA", + "decimals": 18, + "name": "Kava", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x9bafc8d4b487cebff201721702507a3e2c67ad79.png", + "aggregators": ["PancakeExtended", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x8d010bf9c26881788b4e6bf5fd1bdc358c8f90b8": { + "address": "0x8d010bf9c26881788b4e6bf5fd1bdc358c8f90b8", + "symbol": "DOT", + "decimals": 18, + "name": "Polkadot", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x8d010bf9c26881788b4e6bf5fd1bdc358c8f90b8.png", + "aggregators": ["CoinGecko", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x711fd6ab6d65a98904522d4e3586f492b989c527": { + "address": "0x711fd6ab6d65a98904522d4e3586f492b989c527", + "symbol": "HMT", + "decimals": 18, + "name": "HUMAN Protocol", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x711fd6ab6d65a98904522d4e3586f492b989c527.png", + "aggregators": ["CoinGecko", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x4343e178c37556e708e65c1d7be0cb2537b50d7d": { + "address": "0x4343e178c37556e708e65c1d7be0cb2537b50d7d", + "symbol": "WCS", + "decimals": 8, + "name": "WeeCoins", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x4343e178c37556e708e65c1d7be0cb2537b50d7d.png", + "aggregators": ["CoinGecko", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x65e7a112db1142eae919201b1232f7aa488ed83c": { + "address": "0x65e7a112db1142eae919201b1232f7aa488ed83c", + "symbol": "REAL", + "decimals": 6, + "name": "REAL", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x65e7a112db1142eae919201b1232f7aa488ed83c.png", + "aggregators": ["CoinGecko", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x3235b13708f178af6f110de7177ed5de10c1093d": { + "address": "0x3235b13708f178af6f110de7177ed5de10c1093d", + "symbol": "MNFT", + "decimals": 18, + "name": "MongolNFT", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x3235b13708f178af6f110de7177ed5de10c1093d.png", + "aggregators": ["PancakeCoinMarketCap", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x9d5a383581882750ce27f84c72f017b378edb736": { + "address": "0x9d5a383581882750ce27f84c72f017b378edb736", + "symbol": "ALOT", + "decimals": 18, + "name": "ALOT", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x9d5a383581882750ce27f84c72f017b378edb736.png", + "aggregators": ["CoinGecko", "Rubic", "Rango"], + "occurrences": 3 + }, + "0xcf3d31dd1bced6121d97e98d110f8fc54d993365": { + "address": "0xcf3d31dd1bced6121d97e98d110f8fc54d993365", + "symbol": "LOP", + "decimals": 6, + "name": "Kilopi", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xcf3d31dd1bced6121d97e98d110f8fc54d993365.png", + "aggregators": ["CoinGecko", "Rubic", "Rango"], + "occurrences": 3 + }, + "0xced4ad3e56fdbdd31cca3f76f4ffb1eadd920dcf": { + "address": "0xced4ad3e56fdbdd31cca3f76f4ffb1eadd920dcf", + "symbol": "SSLX", + "decimals": 7, + "name": "Sl8 social crypto platform SSLX", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xced4ad3e56fdbdd31cca3f76f4ffb1eadd920dcf.png", + "aggregators": ["CoinGecko", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x75a5863a19af60ec0098d62ed8c34cc594fb470f": { + "address": "0x75a5863a19af60ec0098d62ed8c34cc594fb470f", + "symbol": "MPLX", + "decimals": 6, + "name": "Metaplex", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x75a5863a19af60ec0098d62ed8c34cc594fb470f.png", + "aggregators": ["PancakeExtended", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x92516e0ddf1ddbf7fab1b79cac26689fdc5ba8e6": { + "address": "0x92516e0ddf1ddbf7fab1b79cac26689fdc5ba8e6", + "symbol": "HUMA", + "decimals": 6, + "name": "Huma Finance", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x92516e0ddf1ddbf7fab1b79cac26689fdc5ba8e6.png", + "aggregators": ["CoinGecko", "Rubic", "Squid"], + "occurrences": 3 + }, + "0x319558c8ad708dc42f45ab70eada4750d6c942d7": { + "address": "0x319558c8ad708dc42f45ab70eada4750d6c942d7", + "symbol": "TABBY", + "decimals": 18, + "name": "TabbyPOS", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x319558c8ad708dc42f45ab70eada4750d6c942d7.png", + "aggregators": ["CoinGecko", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x0a80bbfcfe280eb072e767e4c015a2fc2da5145c": { + "address": "0x0a80bbfcfe280eb072e767e4c015a2fc2da5145c", + "symbol": "ƎԀƎԀ", + "decimals": 9, + "name": "Pepe Inverted", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x0a80bbfcfe280eb072e767e4c015a2fc2da5145c.png", + "aggregators": ["CoinGecko", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x39702843a6733932ec7ce0dde404e5a6dbd8c989": { + "address": "0x39702843a6733932ec7ce0dde404e5a6dbd8c989", + "symbol": "AVAIL", + "decimals": 18, + "name": "Avail (Wormhole)", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x39702843a6733932ec7ce0dde404e5a6dbd8c989.png", + "aggregators": ["PancakeExtended", "LiFi", "Rubic"], + "occurrences": 3 + }, + "0xc08cd26474722ce93f4d0c34d16201461c10aa8c": { + "address": "0xc08cd26474722ce93f4d0c34d16201461c10aa8c", + "symbol": "CARV", + "decimals": 18, + "name": "CARV", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xc08cd26474722ce93f4d0c34d16201461c10aa8c.png", + "aggregators": ["CoinGecko", "Rubic", "Rango"], + "occurrences": 3 + }, + "0xf81ac2e1a0373dde1bce01e2fe694a9b7e3bfcb9": { + "address": "0xf81ac2e1a0373dde1bce01e2fe694a9b7e3bfcb9", + "symbol": "XUSD", + "decimals": 6, + "name": "StraitsX XUSD", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xf81ac2e1a0373dde1bce01e2fe694a9b7e3bfcb9.png", + "aggregators": ["PancakeExtended", "Rubic", "Sonarwatch"], + "occurrences": 3 + }, + "0x7f39bcdca8e0e581c1d43aaa1cb862aa1c8c2047": { + "address": "0x7f39bcdca8e0e581c1d43aaa1cb862aa1c8c2047", + "symbol": "LUMIA", + "decimals": 18, + "name": "LUMIA", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x7f39bcdca8e0e581c1d43aaa1cb862aa1c8c2047.png", + "aggregators": ["CoinGecko", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x8d0fa28f221eb5735bc71d3a0da67ee5bc821311": { + "address": "0x8d0fa28f221eb5735bc71d3a0da67ee5bc821311", + "symbol": "USYC", + "decimals": 6, + "name": "USYC", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x8d0fa28f221eb5735bc71d3a0da67ee5bc821311.png", + "aggregators": ["CoinGecko", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x2d5bdc96d9c8aabbdb38c9a27398513e7e5ef84f": { + "address": "0x2d5bdc96d9c8aabbdb38c9a27398513e7e5ef84f", + "symbol": "BUIDL", + "decimals": 6, + "name": "BUIDL", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x2d5bdc96d9c8aabbdb38c9a27398513e7e5ef84f.png", + "aggregators": ["CoinGecko", "Rubic", "Rango"], + "occurrences": 3 + }, + "0xe8db8733c5badf634f86d6ef894ffdbf0e85b7c2": { + "address": "0xe8db8733c5badf634f86d6ef894ffdbf0e85b7c2", + "symbol": "MLC", + "decimals": 18, + "name": "My Lovely Coin", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xe8db8733c5badf634f86d6ef894ffdbf0e85b7c2.png", + "aggregators": ["CoinGecko", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x94162acc63812d53ac2bcf1f4aef65863273e63b": { + "address": "0x94162acc63812d53ac2bcf1f4aef65863273e63b", + "symbol": "NEIRO", + "decimals": 9, + "name": "NEIRO", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x94162acc63812d53ac2bcf1f4aef65863273e63b.png", + "aggregators": ["CoinGecko", "Rubic", "Rango"], + "occurrences": 3 + }, + "0xe0e8a04242f35b95dc64b07e0eae23a8e43a78e4": { + "address": "0xe0e8a04242f35b95dc64b07e0eae23a8e43a78e4", + "symbol": "RSERG", + "decimals": 9, + "name": "rsERG", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xe0e8a04242f35b95dc64b07e0eae23a8e43a78e4.png", + "aggregators": ["CoinGecko", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x226a2fa2556c48245e57cd1cba4c6c9e67077dd2": { + "address": "0x226a2fa2556c48245e57cd1cba4c6c9e67077dd2", + "symbol": "BIO", + "decimals": 18, + "name": "BIO", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x226a2fa2556c48245e57cd1cba4c6c9e67077dd2.png", + "aggregators": ["PancakeExtended", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x840b20fa3d48ac709fd841fcd878c3e8aabd7087": { + "address": "0x840b20fa3d48ac709fd841fcd878c3e8aabd7087", + "symbol": "WGLUE", + "decimals": 18, + "name": "WGLUE", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x840b20fa3d48ac709fd841fcd878c3e8aabd7087.png", + "aggregators": ["CoinGecko", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x1b93875b82da65fb3f8a3591b21888f41517be93": { + "address": "0x1b93875b82da65fb3f8a3591b21888f41517be93", + "symbol": "AITV", + "decimals": 18, + "name": "AITV", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x1b93875b82da65fb3f8a3591b21888f41517be93.png", + "aggregators": ["CoinGecko", "Rubic", "Rango"], + "occurrences": 3 + }, + "0xb035723d62e0e2ea7499d76355c9d560f13ba404": { + "address": "0xb035723d62e0e2ea7499d76355c9d560f13ba404", + "symbol": "OIK", + "decimals": 18, + "name": "Space Nation Oikos", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xb035723d62e0e2ea7499d76355c9d560f13ba404.png", + "aggregators": ["PancakeExtended", "Rubic", "Squid"], + "occurrences": 3 + }, + "0xfb93ee8152dd0a0e6f4b49c66c06d800cf1db72d": { + "address": "0xfb93ee8152dd0a0e6f4b49c66c06d800cf1db72d", + "symbol": "YB", + "decimals": 18, + "name": "Yield Basis (Bridged)", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xfb93ee8152dd0a0e6f4b49c66c06d800cf1db72d.png", + "aggregators": ["PancakeExtended", "Socket", "Rubic"], + "occurrences": 3 + }, + "0x58b4591a3fd16041f28686098431b1374c3bb789": { + "address": "0x58b4591a3fd16041f28686098431b1374c3bb789", + "symbol": "BTC.ℏ", + "decimals": 8, + "name": "BTC.ℏ", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x58b4591a3fd16041f28686098431b1374c3bb789.png", + "aggregators": ["CoinGecko", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x50a1291f69d9d3853def8209cfb1af0b46927be1": { + "address": "0x50a1291f69d9d3853def8209cfb1af0b46927be1", + "symbol": "APPX", + "decimals": 18, + "name": "AppLovin xStock", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x50a1291f69d9d3853def8209cfb1af0b46927be1.png", + "aggregators": ["CoinGecko", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x4e107a0000db66f0e9fd2039288bf811dd1f9c74": { + "address": "0x4e107a0000db66f0e9fd2039288bf811dd1f9c74", + "symbol": "VLR", + "decimals": 18, + "name": "Velora", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x4e107a0000db66f0e9fd2039288bf811dd1f9c74.png", + "aggregators": ["PancakeExtended", "Socket", "Rubic"], + "occurrences": 3 + }, + "0x5d642505fe1a28897eb3baba665f454755d8daa2": { + "address": "0x5d642505fe1a28897eb3baba665f454755d8daa2", + "symbol": "AZNX", + "decimals": 18, + "name": "AstraZeneca xStock", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x5d642505fe1a28897eb3baba665f454755d8daa2.png", + "aggregators": ["CoinGecko", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x314938c596f5ce31c3f75307d2979338c346d7f2": { + "address": "0x314938c596f5ce31c3f75307d2979338c346d7f2", + "symbol": "BACX", + "decimals": 18, + "name": "Bank of America xStock", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x314938c596f5ce31c3f75307d2979338c346d7f2.png", + "aggregators": ["CoinGecko", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x12992613fdd35abe95dec5a4964331b1ee23b50d": { + "address": "0x12992613fdd35abe95dec5a4964331b1ee23b50d", + "symbol": "BRK.BX", + "decimals": 18, + "name": "Berkshire Hathaway xStock", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x12992613fdd35abe95dec5a4964331b1ee23b50d.png", + "aggregators": ["CoinGecko", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x364f210f430ec2448fc68a49203040f6124096f0": { + "address": "0x364f210f430ec2448fc68a49203040f6124096f0", + "symbol": "COINX", + "decimals": 18, + "name": "Coinbase xStock", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x364f210f430ec2448fc68a49203040f6124096f0.png", + "aggregators": ["CoinGecko", "Rubic", "Rango"], + "occurrences": 3 + }, + "0xad5cdc3340904285b8159089974a99a1a09eb4c0": { + "address": "0xad5cdc3340904285b8159089974a99a1a09eb4c0", + "symbol": "CVXX", + "decimals": 18, + "name": "Chevron xStock", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xad5cdc3340904285b8159089974a99a1a09eb4c0.png", + "aggregators": ["CoinGecko", "Rubic", "Rango"], + "occurrences": 3 + }, + "0xe5f6d3b2405abdfe6f660e63202b25d23763160d": { + "address": "0xe5f6d3b2405abdfe6f660e63202b25d23763160d", + "symbol": "GMEX", + "decimals": 18, + "name": "Gamestop xStock", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xe5f6d3b2405abdfe6f660e63202b25d23763160d.png", + "aggregators": ["CoinGecko", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x3ee7e9b3a992fd23cd1c363b0e296856b04ab149": { + "address": "0x3ee7e9b3a992fd23cd1c363b0e296856b04ab149", + "symbol": "GSX", + "decimals": 18, + "name": "Goldman Sachs xStock", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x3ee7e9b3a992fd23cd1c363b0e296856b04ab149.png", + "aggregators": ["CoinGecko", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x766b0cd6ed6d90b5d49d2c36a3761e9728501ba9": { + "address": "0x766b0cd6ed6d90b5d49d2c36a3761e9728501ba9", + "symbol": "HDX", + "decimals": 18, + "name": "Home Depot xStock", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x766b0cd6ed6d90b5d49d2c36a3761e9728501ba9.png", + "aggregators": ["CoinGecko", "Rubic", "Rango"], + "occurrences": 3 + }, + "0xf8a80d1cb9cfd70d03d655d9df42339846f3b3c8": { + "address": "0xf8a80d1cb9cfd70d03d655d9df42339846f3b3c8", + "symbol": "INTCX", + "decimals": 18, + "name": "Intel xStock", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xf8a80d1cb9cfd70d03d655d9df42339846f3b3c8.png", + "aggregators": ["CoinGecko", "Rubic", "Rango"], + "occurrences": 3 + }, + "0xd9fc3e075d45254a1d834fea18af8041207dea0a": { + "address": "0xd9fc3e075d45254a1d834fea18af8041207dea0a", + "symbol": "JPMX", + "decimals": 18, + "name": "JPMorgan Chase xStock", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xd9fc3e075d45254a1d834fea18af8041207dea0a.png", + "aggregators": ["CoinGecko", "Rubic", "Rango"], + "occurrences": 3 + }, + "0xdcc1a2699441079da889b1f49e12b69cc791129b": { + "address": "0xdcc1a2699441079da889b1f49e12b69cc791129b", + "symbol": "KOX", + "decimals": 18, + "name": "Coca-Cola xStock", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xdcc1a2699441079da889b1f49e12b69cc791129b.png", + "aggregators": ["CoinGecko", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x19c41ea77b34bbdee61c3a87a75d1abda2ed0be4": { + "address": "0x19c41ea77b34bbdee61c3a87a75d1abda2ed0be4", + "symbol": "LLYX", + "decimals": 18, + "name": "Eli Lilly xStock", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x19c41ea77b34bbdee61c3a87a75d1abda2ed0be4.png", + "aggregators": ["CoinGecko", "Rubic", "Rango"], + "occurrences": 3 + }, + "0xb365cd2588065f522d379ad19e903304f6b622c6": { + "address": "0xb365cd2588065f522d379ad19e903304f6b622c6", + "symbol": "MAX", + "decimals": 18, + "name": "Mastercard xStock", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xb365cd2588065f522d379ad19e903304f6b622c6.png", + "aggregators": ["CoinGecko", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x96702be57cd9777f835117a809c7124fe4ec989a": { + "address": "0x96702be57cd9777f835117a809c7124fe4ec989a", + "symbol": "METAX", + "decimals": 18, + "name": "METAX", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x96702be57cd9777f835117a809c7124fe4ec989a.png", + "aggregators": ["CoinGecko", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x5621737f42dae558b81269fcb9e9e70c19aa6b35": { + "address": "0x5621737f42dae558b81269fcb9e9e70c19aa6b35", + "symbol": "MSFTX", + "decimals": 18, + "name": "MSFTX", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x5621737f42dae558b81269fcb9e9e70c19aa6b35.png", + "aggregators": ["CoinGecko", "Rubic", "Rango"], + "occurrences": 3 + }, + "0xa6a65ac27e76cd53cb790473e4345c46e5ebf961": { + "address": "0xa6a65ac27e76cd53cb790473e4345c46e5ebf961", + "symbol": "NFLXX", + "decimals": 18, + "name": "Netflix xStock", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xa6a65ac27e76cd53cb790473e4345c46e5ebf961.png", + "aggregators": ["CoinGecko", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x5afadcd1e8e3ca78ee2d37100102f2aec8bc0aa8": { + "address": "0x5afadcd1e8e3ca78ee2d37100102f2aec8bc0aa8", + "symbol": "PLUME", + "decimals": 18, + "name": "PLUME", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x5afadcd1e8e3ca78ee2d37100102f2aec8bc0aa8.png", + "aggregators": ["PancakeExtended", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x8c8d2a7d8d9cf26f5ee1bbfc0ba56e93f4a4a7ac": { + "address": "0x8c8d2a7d8d9cf26f5ee1bbfc0ba56e93f4a4a7ac", + "symbol": "AVAXAI", + "decimals": 18, + "name": "AIvalanche DeFAI Agents", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x8c8d2a7d8d9cf26f5ee1bbfc0ba56e93f4a4a7ac.png", + "aggregators": ["CoinGecko", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x7636d8722fdf7cd34232a915e48e96aa3eb386bf": { + "address": "0x7636d8722fdf7cd34232a915e48e96aa3eb386bf", + "symbol": "SFI", + "decimals": 18, + "name": "Singularity Finance", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x7636d8722fdf7cd34232a915e48e96aa3eb386bf.png", + "aggregators": ["CoinGecko", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x00312400303d02c323295f6e8b7309bc30fb6bce": { + "address": "0x00312400303d02c323295f6e8b7309bc30fb6bce", + "symbol": "ERA", + "decimals": 18, + "name": "ERA", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x00312400303d02c323295f6e8b7309bc30fb6bce.png", + "aggregators": ["PancakeExtended", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x440017a1b021006d556d7fc06a54c32e42eb745b": { + "address": "0x440017a1b021006d556d7fc06a54c32e42eb745b", + "symbol": "@G", + "decimals": 18, + "name": "Graphite Network", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x440017a1b021006d556d7fc06a54c32e42eb745b.png", + "aggregators": ["CoinGecko", "Rubic", "Sonarwatch"], + "occurrences": 3 + }, + "0xfc5a743271672e91d77f0176e5cea581fbd5d834": { + "address": "0xfc5a743271672e91d77f0176e5cea581fbd5d834", + "symbol": "SLAY", + "decimals": 6, + "name": "SatLayer", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xfc5a743271672e91d77f0176e5cea581fbd5d834.png", + "aggregators": ["PancakeExtended", "Socket", "Rubic"], + "occurrences": 3 + }, + "0xc61eb549acf4a05ed6e3fe0966f5e213b23541ce": { + "address": "0xc61eb549acf4a05ed6e3fe0966f5e213b23541ce", + "symbol": "NUMI", + "decimals": 18, + "name": "NUMINE Token", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xc61eb549acf4a05ed6e3fe0966f5e213b23541ce.png", + "aggregators": ["PancakeExtended", "Socket", "Rubic"], + "occurrences": 3 + }, + "0x00000000bca93b25a6694ca3d2109d545988b13b": { + "address": "0x00000000bca93b25a6694ca3d2109d545988b13b", + "symbol": "TOWNS", + "decimals": 18, + "name": "Towns", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x00000000bca93b25a6694ca3d2109d545988b13b.png", + "aggregators": ["PancakeExtended", "Rubic", "Squid"], + "occurrences": 3 + }, + "0x502a641decfe32b1e3d030e05effb8ae5146e64b": { + "address": "0x502a641decfe32b1e3d030e05effb8ae5146e64b", + "symbol": "PALM", + "decimals": 6, + "name": "Palm Economy", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x502a641decfe32b1e3d030e05effb8ae5146e64b.png", + "aggregators": ["CoinGecko", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x3d9be0ac1001cd81c32464276d863d2ffdca4967": { + "address": "0x3d9be0ac1001cd81c32464276d863d2ffdca4967", + "symbol": "HAEDAL", + "decimals": 9, + "name": "Haedal", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x3d9be0ac1001cd81c32464276d863d2ffdca4967.png", + "aggregators": ["PancakeExtended", "LiFi", "Rubic"], + "occurrences": 3 + }, + "0x03183ce31b1656b72a55fa6056e287f50c35bbeb": { + "address": "0x03183ce31b1656b72a55fa6056e287f50c35bbeb", + "symbol": "ACNX", + "decimals": 18, + "name": "Accenture xStock", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x03183ce31b1656b72a55fa6056e287f50c35bbeb.png", + "aggregators": ["CoinGecko", "Rubic", "Rango"], + "occurrences": 3 + }, + "0xbc7170a1280be28513b4e940c681537eb25e39f4": { + "address": "0xbc7170a1280be28513b4e940c681537eb25e39f4", + "symbol": "CMCSAX", + "decimals": 18, + "name": "Comcast xStock", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xbc7170a1280be28513b4e940c681537eb25e39f4.png", + "aggregators": ["CoinGecko", "Rubic", "Rango"], + "occurrences": 3 + }, + "0xd9913208647671fe0f48f7f260076b2c6f310aac": { + "address": "0xd9913208647671fe0f48f7f260076b2c6f310aac", + "symbol": "IBMX", + "decimals": 18, + "name": "International Business Machines xStock", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xd9913208647671fe0f48f7f260076b2c6f310aac.png", + "aggregators": ["CoinGecko", "Rubic", "Rango"], + "occurrences": 3 + }, + "0xdb0482cfad4789798623e64b15eeba01b16e917c": { + "address": "0xdb0482cfad4789798623e64b15eeba01b16e917c", + "symbol": "JNJX", + "decimals": 18, + "name": "Johnson & Johnson xStock", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xdb0482cfad4789798623e64b15eeba01b16e917c.png", + "aggregators": ["CoinGecko", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x80a77a372c1e12accda84299492f404902e2da67": { + "address": "0x80a77a372c1e12accda84299492f404902e2da67", + "symbol": "MCDX", + "decimals": 18, + "name": "McDonald's xStock", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x80a77a372c1e12accda84299492f404902e2da67.png", + "aggregators": ["CoinGecko", "Rubic", "Rango"], + "occurrences": 3 + }, + "0xc845b2894dbddd03858fd2d643b4ef725fe0849d": { + "address": "0xc845b2894dbddd03858fd2d643b4ef725fe0849d", + "symbol": "NVDAX", + "decimals": 18, + "name": "NVDAX", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xc845b2894dbddd03858fd2d643b4ef725fe0849d.png", + "aggregators": ["CoinGecko", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x36c424a6ec0e264b1616102ad63ed2ad7857413e": { + "address": "0x36c424a6ec0e264b1616102ad63ed2ad7857413e", + "symbol": "PEPX", + "decimals": 18, + "name": "PepsiCo xStock", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x36c424a6ec0e264b1616102ad63ed2ad7857413e.png", + "aggregators": ["CoinGecko", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x8ad3c73f833d3f9a523ab01476625f269aeb7cf0": { + "address": "0x8ad3c73f833d3f9a523ab01476625f269aeb7cf0", + "symbol": "TSLAX", + "decimals": 18, + "name": "Tesla xStock", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x8ad3c73f833d3f9a523ab01476625f269aeb7cf0.png", + "aggregators": ["CoinGecko", "Rubic", "Rango"], + "occurrences": 3 + }, + "0xaf072f109a2c173d822a4fe9af311a1b18f83d19": { + "address": "0xaf072f109a2c173d822a4fe9af311a1b18f83d19", + "symbol": "TMOX", + "decimals": 18, + "name": "Thermo Fisher xStock", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xaf072f109a2c173d822a4fe9af311a1b18f83d19.png", + "aggregators": ["CoinGecko", "Rubic", "Rango"], + "occurrences": 3 + }, + "0xfbf2398df672cee4afcc2a4a733222331c742a6a": { + "address": "0xfbf2398df672cee4afcc2a4a733222331c742a6a", + "symbol": "ABBVX", + "decimals": 18, + "name": "AbbVie xStock", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xfbf2398df672cee4afcc2a4a733222331c742a6a.png", + "aggregators": ["CoinGecko", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x6d482cec5f9dd1f05ccee9fd3ff79b246170f8e2": { + "address": "0x6d482cec5f9dd1f05ccee9fd3ff79b246170f8e2", + "symbol": "PLTRX", + "decimals": 18, + "name": "Palantir xStock", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x6d482cec5f9dd1f05ccee9fd3ff79b246170f8e2.png", + "aggregators": ["CoinGecko", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x1ac765b5bea23184802c7d2d497f7c33f1444a9e": { + "address": "0x1ac765b5bea23184802c7d2d497f7c33f1444a9e", + "symbol": "PFEX", + "decimals": 18, + "name": "Pfizer xStock", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x1ac765b5bea23184802c7d2d497f7c33f1444a9e.png", + "aggregators": ["CoinGecko", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x167a6375da1efc4a5be0f470e73ecefd66245048": { + "address": "0x167a6375da1efc4a5be0f470e73ecefd66245048", + "symbol": "UNHX", + "decimals": 18, + "name": "UnitedHealth xStock", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x167a6375da1efc4a5be0f470e73ecefd66245048.png", + "aggregators": ["CoinGecko", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x2363fd1235c1b6d3a5088ddf8df3a0b3a30c5293": { + "address": "0x2363fd1235c1b6d3a5088ddf8df3a0b3a30c5293", + "symbol": "VX", + "decimals": 18, + "name": "Visa xStock", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x2363fd1235c1b6d3a5088ddf8df3a0b3a30c5293.png", + "aggregators": ["CoinGecko", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x7aefc9965699fbea943e03264d96e50cd4a97b21": { + "address": "0x7aefc9965699fbea943e03264d96e50cd4a97b21", + "symbol": "WMTX", + "decimals": 18, + "name": "Walmart xStock", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x7aefc9965699fbea943e03264d96e50cd4a97b21.png", + "aggregators": ["CoinGecko", "Rubic", "Rango"], + "occurrences": 3 + }, + "0xeedb0273c5af792745180e9ff568cd01550ffa13": { + "address": "0xeedb0273c5af792745180e9ff568cd01550ffa13", + "symbol": "XOMX", + "decimals": 18, + "name": "Exxon Mobil xStock", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xeedb0273c5af792745180e9ff568cd01550ffa13.png", + "aggregators": ["CoinGecko", "Rubic", "Rango"], + "occurrences": 3 + }, + "0xdba228936f4079daf9aa906fd48a87f2300405f4": { + "address": "0xdba228936f4079daf9aa906fd48a87f2300405f4", + "symbol": "DHRX", + "decimals": 18, + "name": "Danaher xStock", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xdba228936f4079daf9aa906fd48a87f2300405f4.png", + "aggregators": ["CoinGecko", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x62a48560861b0b451654bfffdb5be6e47aa8ff1b": { + "address": "0x62a48560861b0b451654bfffdb5be6e47aa8ff1b", + "symbol": "HONX", + "decimals": 18, + "name": "Honeywell xStock", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x62a48560861b0b451654bfffdb5be6e47aa8ff1b.png", + "aggregators": ["CoinGecko", "Rubic", "Rango"], + "occurrences": 3 + }, + "0xeaad46f4146ded5a47b55aa7f6c48c191deaec88": { + "address": "0xeaad46f4146ded5a47b55aa7f6c48c191deaec88", + "symbol": "MRVLX", + "decimals": 18, + "name": "Marvell xStock", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xeaad46f4146ded5a47b55aa7f6c48c191deaec88.png", + "aggregators": ["CoinGecko", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x15059c599c16fd8f70b633ade165502d6402cd49": { + "address": "0x15059c599c16fd8f70b633ade165502d6402cd49", + "symbol": "LINX", + "decimals": 18, + "name": "Linde xStock", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x15059c599c16fd8f70b633ade165502d6402cd49.png", + "aggregators": ["CoinGecko", "Rubic", "Rango"], + "occurrences": 3 + }, + "0xa753a7395cae905cd615da0b82a53e0560f250af": { + "address": "0xa753a7395cae905cd615da0b82a53e0560f250af", + "symbol": "QQQX", + "decimals": 18, + "name": "QQQX", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xa753a7395cae905cd615da0b82a53e0560f250af.png", + "aggregators": ["CoinGecko", "Rubic", "Rango"], + "occurrences": 3 + }, + "0xbd730e618bcd88c82ddee52e10275cf2f88a4777": { + "address": "0xbd730e618bcd88c82ddee52e10275cf2f88a4777", + "symbol": "VTIX", + "decimals": 18, + "name": "Vanguard xStock", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xbd730e618bcd88c82ddee52e10275cf2f88a4777.png", + "aggregators": ["CoinGecko", "Rubic", "Rango"], + "occurrences": 3 + }, + "0xb8a677e6d805c8d743e6f14c8bc9c19305b5defc": { + "address": "0xb8a677e6d805c8d743e6f14c8bc9c19305b5defc", + "symbol": "NEWT", + "decimals": 18, + "name": "Newton", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xb8a677e6d805c8d743e6f14c8bc9c19305b5defc.png", + "aggregators": ["PancakeExtended", "Rubic", "Rango"], + "occurrences": 3 + }, + "0xbe7e12b2e128bc955a0130ffb168f031d7dd8d58": { + "address": "0xbe7e12b2e128bc955a0130ffb168f031d7dd8d58", + "symbol": "BOOST", + "decimals": 18, + "name": "Boost", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xbe7e12b2e128bc955a0130ffb168f031d7dd8d58.png", + "aggregators": ["PancakeExtended", "Socket", "Rubic"], + "occurrences": 3 + }, + "0x5845684b49aef79a5c0f887f50401c247dca7ac6": { + "address": "0x5845684b49aef79a5c0f887f50401c247dca7ac6", + "symbol": "CYC", + "decimals": 18, + "name": "Cycle Network Token", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x5845684b49aef79a5c0f887f50401c247dca7ac6.png", + "aggregators": ["PancakeExtended", "Socket", "Rubic"], + "occurrences": 3 + }, + "0xc32cc70741c3a8433dcbcb5ade071c299b55ffc8": { + "address": "0xc32cc70741c3a8433dcbcb5ade071c299b55ffc8", + "symbol": "C", + "decimals": 18, + "name": "Chainbase", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xc32cc70741c3a8433dcbcb5ade071c299b55ffc8.png", + "aggregators": ["PancakeExtended", "Rubic", "Squid"], + "occurrences": 3 + }, + "0x77146784315ba81904d654466968e3a7c196d1f3": { + "address": "0x77146784315ba81904d654466968e3a7c196d1f3", + "symbol": "TREE", + "decimals": 18, + "name": "Treehouse Token", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x77146784315ba81904d654466968e3a7c196d1f3.png", + "aggregators": ["PancakeExtended", "LiFi", "Rubic"], + "occurrences": 3 + }, + "0x2380f2673c640fb67e2d6b55b44c62f0e0e69da9": { + "address": "0x2380f2673c640fb67e2d6b55b44c62f0e0e69da9", + "symbol": "GLDX", + "decimals": 18, + "name": "GLDX", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x2380f2673c640fb67e2d6b55b44c62f0e0e69da9.png", + "aggregators": ["CoinGecko", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x06238c1b8e618abedf17669228dc95fb2d2e210b": { + "address": "0x06238c1b8e618abedf17669228dc95fb2d2e210b", + "symbol": "ECHO", + "decimals": 8, + "name": "Echo", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x06238c1b8e618abedf17669228dc95fb2d2e210b.png", + "aggregators": ["PancakeExtended", "1inch", "Rubic"], + "occurrences": 3 + }, + "0x6f0037c79d144d5b8e3e6f04e49fbb5f25fd508f": { + "address": "0x6f0037c79d144d5b8e3e6f04e49fbb5f25fd508f", + "symbol": "RCADE", + "decimals": 18, + "name": "RCADE", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x6f0037c79d144d5b8e3e6f04e49fbb5f25fd508f.png", + "aggregators": ["PancakeExtended", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x87aa6aeb62ff128aaa96e275d7b24cd12a72aba1": { + "address": "0x87aa6aeb62ff128aaa96e275d7b24cd12a72aba1", + "symbol": "PUBLIC", + "decimals": 18, + "name": "PublicAI", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x87aa6aeb62ff128aaa96e275d7b24cd12a72aba1.png", + "aggregators": ["PancakeExtended", "Rubic", "Rango"], + "occurrences": 3 + }, + "0xbee6b69345f376598fe16abd5592c6f844825e66": { + "address": "0xbee6b69345f376598fe16abd5592c6f844825e66", + "symbol": "OPENX", + "decimals": 18, + "name": "OPEN xStock", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xbee6b69345f376598fe16abd5592c6f844825e66.png", + "aggregators": ["CoinGecko", "Rubic", "Rango"], + "occurrences": 3 + }, + "0xa8aea66b361a8d53e8865c62d142167af28af058": { + "address": "0xa8aea66b361a8d53e8865c62d142167af28af058", + "symbol": "CNGN", + "decimals": 6, + "name": "CNGN", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xa8aea66b361a8d53e8865c62d142167af28af058.png", + "aggregators": ["CoinGecko", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x27f6c8289550fce67f6b50bed1f519966afe5287": { + "address": "0x27f6c8289550fce67f6b50bed1f519966afe5287", + "symbol": "TGBP", + "decimals": 18, + "name": "tGBP", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x27f6c8289550fce67f6b50bed1f519966afe5287.png", + "aggregators": ["CoinGecko", "Rubic", "Rango"], + "occurrences": 3 + }, + "0xf9471965b3e9df2d07bed059117a3ff2fee35dd1": { + "address": "0xf9471965b3e9df2d07bed059117a3ff2fee35dd1", + "symbol": "MOVA", + "decimals": 18, + "name": "MOVA", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xf9471965b3e9df2d07bed059117a3ff2fee35dd1.png", + "aggregators": ["CoinGecko", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x96adaa33e175f4a7f20c099730bc78dd0b45745b": { + "address": "0x96adaa33e175f4a7f20c099730bc78dd0b45745b", + "symbol": "AIBOT", + "decimals": 18, + "name": "CherryAI", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x96adaa33e175f4a7f20c099730bc78dd0b45745b.png", + "aggregators": ["PancakeExtended", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x4cbf89ed7bb30b8a860fa86d3c96e9c72931299b": { + "address": "0x4cbf89ed7bb30b8a860fa86d3c96e9c72931299b", + "symbol": "TBLLX", + "decimals": 18, + "name": "TBLL xStock", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x4cbf89ed7bb30b8a860fa86d3c96e9c72931299b.png", + "aggregators": ["CoinGecko", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x95c9b514566fbd224dc2037f5914eb8ab91c9201": { + "address": "0x95c9b514566fbd224dc2037f5914eb8ab91c9201", + "symbol": "PTB", + "decimals": 18, + "name": "Portal To Bitcoin", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x95c9b514566fbd224dc2037f5914eb8ab91c9201.png", + "aggregators": ["PancakeExtended", "Socket", "Rubic"], + "occurrences": 3 + }, + "0x53ec33cd4fa46b9eced9ca3f6db626c5ffcd55cc": { + "address": "0x53ec33cd4fa46b9eced9ca3f6db626c5ffcd55cc", + "symbol": "AIA", + "decimals": 9, + "name": "DeAgentAI", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x53ec33cd4fa46b9eced9ca3f6db626c5ffcd55cc.png", + "aggregators": ["CoinGecko", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x7c8217517ed4711fe2deccdfeffe8d906b9ae11f": { + "address": "0x7c8217517ed4711fe2deccdfeffe8d906b9ae11f", + "symbol": "BLESS", + "decimals": 9, + "name": "Bless", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x7c8217517ed4711fe2deccdfeffe8d906b9ae11f.png", + "aggregators": ["PancakeExtended", "Rubic", "Squid"], + "occurrences": 3 + }, + "0x58f93d6b1ef2f44ec379cb975657c132cbed3b6b": { + "address": "0x58f93d6b1ef2f44ec379cb975657c132cbed3b6b", + "symbol": "JAAA", + "decimals": 6, + "name": "JAAA", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x58f93d6b1ef2f44ec379cb975657c132cbed3b6b.png", + "aggregators": ["CoinGecko", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x374c5fb7979d5fdbaad2d95409e235e5cbdfd43c": { + "address": "0x374c5fb7979d5fdbaad2d95409e235e5cbdfd43c", + "symbol": "MLK", + "decimals": 8, + "name": "MiL.k", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x374c5fb7979d5fdbaad2d95409e235e5cbdfd43c.png", + "aggregators": ["PancakeExtended", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x80dba9c32b7ab5445e482387a5522e24c0ba4c24": { + "address": "0x80dba9c32b7ab5445e482387a5522e24c0ba4c24", + "symbol": "XDNA", + "decimals": 18, + "name": "extraDNA", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x80dba9c32b7ab5445e482387a5522e24c0ba4c24.png", + "aggregators": ["PancakeCoinMarketCap", "Rubic", "Rango"], + "occurrences": 3 + }, + "0xd4423795fd904d9b87554940a95fb7016f172773": { + "address": "0xd4423795fd904d9b87554940a95fb7016f172773", + "symbol": "AIN", + "decimals": 18, + "name": "AI Network", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xd4423795fd904d9b87554940a95fb7016f172773.png", + "aggregators": ["CoinGecko", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x76e8e912097f0e6b81cab73147161bb616df1d7d": { + "address": "0x76e8e912097f0e6b81cab73147161bb616df1d7d", + "symbol": "KEL", + "decimals": 18, + "name": "KelVPN v2", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x76e8e912097f0e6b81cab73147161bb616df1d7d.png", + "aggregators": ["CoinGecko", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x94cf269d63c4140ed481cb0b149dae03c4620cdf": { + "address": "0x94cf269d63c4140ed481cb0b149dae03c4620cdf", + "symbol": "BALN", + "decimals": 18, + "name": "Balanced", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x94cf269d63c4140ed481cb0b149dae03c4620cdf.png", + "aggregators": ["CoinGecko", "Rubic", "Sonarwatch"], + "occurrences": 3 + }, + "0x4e22ab2bbcb3e7f74249c87f62bb35ef92c3d964": { + "address": "0x4e22ab2bbcb3e7f74249c87f62bb35ef92c3d964", + "symbol": "BPX", + "decimals": 18, + "name": "Black Phoenix", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x4e22ab2bbcb3e7f74249c87f62bb35ef92c3d964.png", + "aggregators": ["PancakeCoinMarketCap", "Rubic", "Sonarwatch"], + "occurrences": 3 + }, + "0xbc33b4d48f76d17a1800afcb730e8a6aaada7fe5": { + "address": "0xbc33b4d48f76d17a1800afcb730e8a6aaada7fe5", + "symbol": "VDOT", + "decimals": 18, + "name": "Voucher DOT", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xbc33b4d48f76d17a1800afcb730e8a6aaada7fe5.png", + "aggregators": ["CoinGecko", "Rubic", "Sonarwatch"], + "occurrences": 3 + }, + "0x7ce4bfc3a66d0fcf5d91dd846911c15c3ff82ecc": { + "address": "0x7ce4bfc3a66d0fcf5d91dd846911c15c3ff82ecc", + "symbol": "MIRA", + "decimals": 2, + "name": "MIRA", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x7ce4bfc3a66d0fcf5d91dd846911c15c3ff82ecc.png", + "aggregators": ["CoinGecko", "Rubic", "Rango"], + "occurrences": 3 + }, + "0xc4044d67585d421495fb0bf08c50b15683647003": { + "address": "0xc4044d67585d421495fb0bf08c50b15683647003", + "symbol": "BITCOIN", + "decimals": 8, + "name": "HarryPotterObamaSonic10Inu (ETH)", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xc4044d67585d421495fb0bf08c50b15683647003.png", + "aggregators": ["CoinGecko", "Rubic", "Rango"], + "occurrences": 3 + }, + "0xce5098dc1748789f66926a43c054d7d2e150f46b": { + "address": "0xce5098dc1748789f66926a43c054d7d2e150f46b", + "symbol": "UNP", + "decimals": 18, + "name": "UNP", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xce5098dc1748789f66926a43c054d7d2e150f46b.png", + "aggregators": ["CoinGecko", "Rubic", "Rango"], + "occurrences": 3 + }, + "0xa7440029eca41deabd8775ef1d6086b37d4df8d6": { + "address": "0xa7440029eca41deabd8775ef1d6086b37d4df8d6", + "symbol": "BRETT", + "decimals": 18, + "name": "Brett", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xa7440029eca41deabd8775ef1d6086b37d4df8d6.png", + "aggregators": ["CoinGecko", "Rubic", "Rango"], + "occurrences": 3 + }, + "0xa2be3e48170a60119b5f0400c65f65f3158fbeee": { + "address": "0xa2be3e48170a60119b5f0400c65f65f3158fbeee", + "symbol": "ZEUS", + "decimals": 6, + "name": "ZEUS", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xa2be3e48170a60119b5f0400c65f65f3158fbeee.png", + "aggregators": ["PancakeExtended", "Socket", "Rubic"], + "occurrences": 3 + }, + "0x7a986ba67227acfab86385ff33436a80e2bb4cc5": { + "address": "0x7a986ba67227acfab86385ff33436a80e2bb4cc5", + "symbol": "PUNDIAI", + "decimals": 18, + "name": "Pundi AI", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x7a986ba67227acfab86385ff33436a80e2bb4cc5.png", + "aggregators": ["PancakeExtended", "Rubic", "Squid"], + "occurrences": 3 + }, + "0x5868a0bc3a64cff82e19a135e17fe18e18e03bc1": { + "address": "0x5868a0bc3a64cff82e19a135e17fe18e18e03bc1", + "symbol": "KRWO", + "decimals": 6, + "name": "KRWO", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x5868a0bc3a64cff82e19a135e17fe18e18e03bc1.png", + "aggregators": ["CoinGecko", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x2a3dc2d5daf9c8c46c954b8669f4643c6b1c081a": { + "address": "0x2a3dc2d5daf9c8c46c954b8669f4643c6b1c081a", + "symbol": "UBTC", + "decimals": 18, + "name": "uBTC", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x2a3dc2d5daf9c8c46c954b8669f4643c6b1c081a.png", + "aggregators": ["CoinGecko", "Rubic", "Sonarwatch"], + "occurrences": 3 + }, + "0x7b4bf9feccff207ef2cb7101ceb15b8516021acd": { + "address": "0x7b4bf9feccff207ef2cb7101ceb15b8516021acd", + "symbol": "MILK", + "decimals": 6, + "name": "MilkyWay", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x7b4bf9feccff207ef2cb7101ceb15b8516021acd.png", + "aggregators": ["PancakeExtended", "Socket", "Rubic"], + "occurrences": 3 + }, + "0x9d275685dc284c8eb1c79f6aba7a63dc75ec890a": { + "address": "0x9d275685dc284c8eb1c79f6aba7a63dc75ec890a", + "symbol": "AAPLX", + "decimals": 18, + "name": "AAPLX", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x9d275685dc284c8eb1c79f6aba7a63dc75ec890a.png", + "aggregators": ["CoinGecko", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x89233399708c18ac6887f90a2b4cd8ba5fedd06e": { + "address": "0x89233399708c18ac6887f90a2b4cd8ba5fedd06e", + "symbol": "ABTX", + "decimals": 18, + "name": "Abbott xStock", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x89233399708c18ac6887f90a2b4cd8ba5fedd06e.png", + "aggregators": ["CoinGecko", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x3557ba345b01efa20a1bddc61f573bfd87195081": { + "address": "0x3557ba345b01efa20a1bddc61f573bfd87195081", + "symbol": "AMZNX", + "decimals": 18, + "name": "AMZNX", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x3557ba345b01efa20a1bddc61f573bfd87195081.png", + "aggregators": ["CoinGecko", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x38bac69cbbd28156796e4163b2b6dcb81e336565": { + "address": "0x38bac69cbbd28156796e4163b2b6dcb81e336565", + "symbol": "AVGOX", + "decimals": 18, + "name": "Broadcom xStock", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x38bac69cbbd28156796e4163b2b6dcb81e336565.png", + "aggregators": ["CoinGecko", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x214151022c2a5e380ab80cdac31f23ae554a7345": { + "address": "0x214151022c2a5e380ab80cdac31f23ae554a7345", + "symbol": "CRWDX", + "decimals": 18, + "name": "CrowdStrike xStock", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x214151022c2a5e380ab80cdac31f23ae554a7345.png", + "aggregators": ["CoinGecko", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x053c784cd87b74f42e0c089f98643e79c1a3ff16": { + "address": "0x053c784cd87b74f42e0c089f98643e79c1a3ff16", + "symbol": "CSCOX", + "decimals": 18, + "name": "Cisco xStock", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x053c784cd87b74f42e0c089f98643e79c1a3ff16.png", + "aggregators": ["CoinGecko", "Rubic", "Rango"], + "occurrences": 3 + }, + "0xe92f673ca36c5e2efd2de7628f815f84807e803f": { + "address": "0xe92f673ca36c5e2efd2de7628f815f84807e803f", + "symbol": "GOOGLX", + "decimals": 18, + "name": "GOOGLX", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xe92f673ca36c5e2efd2de7628f815f84807e803f.png", + "aggregators": ["CoinGecko", "Rubic", "Rango"], + "occurrences": 3 + }, + "0xe1385fdd5ffb10081cd52c56584f25efa9084015": { + "address": "0xe1385fdd5ffb10081cd52c56584f25efa9084015", + "symbol": "HOODX", + "decimals": 18, + "name": "HOODX", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xe1385fdd5ffb10081cd52c56584f25efa9084015.png", + "aggregators": ["CoinGecko", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x0588e851ec0418d660bee81230d6c678daf21d46": { + "address": "0x0588e851ec0418d660bee81230d6c678daf21d46", + "symbol": "MDTX", + "decimals": 18, + "name": "Medtronic xStock", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x0588e851ec0418d660bee81230d6c678daf21d46.png", + "aggregators": ["CoinGecko", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x17d8186ed8f68059124190d147174d0f6697dc40": { + "address": "0x17d8186ed8f68059124190d147174d0f6697dc40", + "symbol": "MRKX", + "decimals": 18, + "name": "Merck xStock", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x17d8186ed8f68059124190d147174d0f6697dc40.png", + "aggregators": ["CoinGecko", "Rubic", "Rango"], + "occurrences": 3 + }, + "0xae2f842ef90c0d5213259ab82639d5bbf649b08e": { + "address": "0xae2f842ef90c0d5213259ab82639d5bbf649b08e", + "symbol": "MSTRX", + "decimals": 18, + "name": "MSTRX", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xae2f842ef90c0d5213259ab82639d5bbf649b08e.png", + "aggregators": ["CoinGecko", "Rubic", "Rango"], + "occurrences": 3 + }, + "0xa90424d5d3e770e8644103ab503ed775dd1318fd": { + "address": "0xa90424d5d3e770e8644103ab503ed775dd1318fd", + "symbol": "PGX", + "decimals": 18, + "name": "Procter & Gamble xStock", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xa90424d5d3e770e8644103ab503ed775dd1318fd.png", + "aggregators": ["CoinGecko", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x02a6c1789c3b4fdb1a7a3dfa39f90e5d3c94f4f9": { + "address": "0x02a6c1789c3b4fdb1a7a3dfa39f90e5d3c94f4f9", + "symbol": "PMX", + "decimals": 18, + "name": "Philip Morris xStock", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x02a6c1789c3b4fdb1a7a3dfa39f90e5d3c94f4f9.png", + "aggregators": ["CoinGecko", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x4a4073f2eaf299a1be22254dcd2c41727f6f54a2": { + "address": "0x4a4073f2eaf299a1be22254dcd2c41727f6f54a2", + "symbol": "CRMX", + "decimals": 18, + "name": "Salesforce xStock", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x4a4073f2eaf299a1be22254dcd2c41727f6f54a2.png", + "aggregators": ["CoinGecko", "Rubic", "Rango"], + "occurrences": 3 + }, + "0xf9523e369c5f55ad72dbaa75b0a9b92b3d8b147e": { + "address": "0xf9523e369c5f55ad72dbaa75b0a9b92b3d8b147e", + "symbol": "NVOX", + "decimals": 18, + "name": "Novo Nordisk xStock", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xf9523e369c5f55ad72dbaa75b0a9b92b3d8b147e.png", + "aggregators": ["CoinGecko", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x548308e91ec9f285c7bff05295badbd56a6e4971": { + "address": "0x548308e91ec9f285c7bff05295badbd56a6e4971", + "symbol": "ORCLX", + "decimals": 18, + "name": "Oracle xStock", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x548308e91ec9f285c7bff05295badbd56a6e4971.png", + "aggregators": ["CoinGecko", "Rubic", "Rango"], + "occurrences": 3 + }, + "0xba38b3c706f7a515ff7c8db04daa0a134ec46d2b": { + "address": "0xba38b3c706f7a515ff7c8db04daa0a134ec46d2b", + "symbol": "USELESS", + "decimals": 6, + "name": "USELESS COIN", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xba38b3c706f7a515ff7c8db04daa0a134ec46d2b.png", + "aggregators": ["PancakeExtended", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x7cea5b9548a4b48cf9551813ef9e73de916e41e0": { + "address": "0x7cea5b9548a4b48cf9551813ef9e73de916e41e0", + "symbol": "MIA", + "decimals": 18, + "name": "MIA", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x7cea5b9548a4b48cf9551813ef9e73de916e41e0.png", + "aggregators": ["PancakeExtended", "Rubic", "Rango"], + "occurrences": 3 + }, + "0xda6cef7f667d992a60eb823ab215493aa0c6b360": { + "address": "0xda6cef7f667d992a60eb823ab215493aa0c6b360", + "symbol": "RESOLV", + "decimals": 18, + "name": "Resolv", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xda6cef7f667d992a60eb823ab215493aa0c6b360.png", + "aggregators": ["PancakeExtended", "Socket", "Rubic"], + "occurrences": 3 + }, + "0xdb8e54f39aff243b25a41e4747957ed517af0511": { + "address": "0xdb8e54f39aff243b25a41e4747957ed517af0511", + "symbol": "YND", + "decimals": 18, + "name": "YieldNest", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xdb8e54f39aff243b25a41e4747957ed517af0511.png", + "aggregators": ["CoinGecko", "Socket", "Rubic"], + "occurrences": 3 + }, + "0xf7626c7ff7b778aaf187d508d056a9398d9545d1": { + "address": "0xf7626c7ff7b778aaf187d508d056a9398d9545d1", + "symbol": "ASRR", + "decimals": 9, + "name": "Assisterr AI", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xf7626c7ff7b778aaf187d508d056a9398d9545d1.png", + "aggregators": ["PancakeExtended", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x90a2a4c76b5d8c0bc892a69ea28aa775a8f2dd48": { + "address": "0x90a2a4c76b5d8c0bc892a69ea28aa775a8f2dd48", + "symbol": "SPYX", + "decimals": 18, + "name": "SPYX", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x90a2a4c76b5d8c0bc892a69ea28aa775a8f2dd48.png", + "aggregators": ["CoinGecko", "Rubic", "Rango"], + "occurrences": 3 + }, + "0xfdddb57878ef9d6f681ec4381dcb626b9e69ac86": { + "address": "0xfdddb57878ef9d6f681ec4381dcb626b9e69ac86", + "symbol": "TQQQX", + "decimals": 18, + "name": "TQQQX", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xfdddb57878ef9d6f681ec4381dcb626b9e69ac86.png", + "aggregators": ["CoinGecko", "Rubic", "Rango"], + "occurrences": 3 + }, + "0xffffff9936bd58a008855b0812b44d2c8dffe2aa": { + "address": "0xffffff9936bd58a008855b0812b44d2c8dffe2aa", + "symbol": "GGUSD", + "decimals": 6, + "name": "GGUSD", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xffffff9936bd58a008855b0812b44d2c8dffe2aa.png", + "aggregators": ["CoinGecko", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x2f714d7b9a035d4ce24af8d9b6091c07e37f43fb": { + "address": "0x2f714d7b9a035d4ce24af8d9b6091c07e37f43fb", + "symbol": "NODE", + "decimals": 18, + "name": "NodeOps", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x2f714d7b9a035d4ce24af8d9b6091c07e37f43fb.png", + "aggregators": ["PancakeExtended", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x2f9a35ab5ddfbc49927bfdeab98a86c53dc6e763": { + "address": "0x2f9a35ab5ddfbc49927bfdeab98a86c53dc6e763", + "symbol": "AMBRX", + "decimals": 18, + "name": "Amber xStock", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x2f9a35ab5ddfbc49927bfdeab98a86c53dc6e763.png", + "aggregators": ["CoinGecko", "Rubic", "Rango"], + "occurrences": 3 + }, + "0xfebded1b0986a8ee107f5ab1a1c5a813491deceb": { + "address": "0xfebded1b0986a8ee107f5ab1a1c5a813491deceb", + "symbol": "CRCLX", + "decimals": 18, + "name": "Circle xStock", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xfebded1b0986a8ee107f5ab1a1c5a813491deceb.png", + "aggregators": ["CoinGecko", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x521860bb5df5468358875266b89bfe90d990c6e7": { + "address": "0x521860bb5df5468358875266b89bfe90d990c6e7", + "symbol": "DFDVX", + "decimals": 18, + "name": "DFDV xStock", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x521860bb5df5468358875266b89bfe90d990c6e7.png", + "aggregators": ["CoinGecko", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x4c067de26475e1cefee8b8d1f6e2266b33a2372e": { + "address": "0x4c067de26475e1cefee8b8d1f6e2266b33a2372e", + "symbol": "RHEA", + "decimals": 18, + "name": "Rhea", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x4c067de26475e1cefee8b8d1f6e2266b33a2372e.png", + "aggregators": ["PancakeExtended", "LiFi", "Rubic"], + "occurrences": 3 + }, + "0xd715cc968c288740028be20685263f43ed1e4837": { + "address": "0xd715cc968c288740028be20685263f43ed1e4837", + "symbol": "GAIA", + "decimals": 18, + "name": "Gaia Token", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xd715cc968c288740028be20685263f43ed1e4837.png", + "aggregators": ["PancakeExtended", "Socket", "Rubic"], + "occurrences": 3 + }, + "0x5dd1a7a369e8273371d2dbf9d83356057088082c": { + "address": "0x5dd1a7a369e8273371d2dbf9d83356057088082c", + "symbol": "FT", + "decimals": 18, + "name": "FT", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x5dd1a7a369e8273371d2dbf9d83356057088082c.png", + "aggregators": ["CoinGecko", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x241f21df529c05289a00dafecea10139a287cdca": { + "address": "0x241f21df529c05289a00dafecea10139a287cdca", + "symbol": "WELEPHANT", + "decimals": 9, + "name": "Wrapped Elephant", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x241f21df529c05289a00dafecea10139a287cdca.png", + "aggregators": ["CoinGecko", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x8b9ee39195ea99d6ddd68030f44131116bc218f6": { + "address": "0x8b9ee39195ea99d6ddd68030f44131116bc218f6", + "symbol": "PEAQ", + "decimals": 18, + "name": "PeaqOFT", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x8b9ee39195ea99d6ddd68030f44131116bc218f6.png", + "aggregators": ["PancakeExtended", "LiFi", "Rubic"], + "occurrences": 3 + }, + "0xaa036928c9c0df07d525b55ea8ee690bb5a628c1": { + "address": "0xaa036928c9c0df07d525b55ea8ee690bb5a628c1", + "symbol": "EVAA", + "decimals": 18, + "name": "EVAA", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xaa036928c9c0df07d525b55ea8ee690bb5a628c1.png", + "aggregators": ["PancakeExtended", "LiFi", "Rubic"], + "occurrences": 3 + }, + "0x81d3a238b02827f62b9f390f947d36d4a5bf89d2": { + "address": "0x81d3a238b02827f62b9f390f947d36d4a5bf89d2", + "symbol": "CLO", + "decimals": 18, + "name": "Yei Finance", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x81d3a238b02827f62b9f390f947d36d4a5bf89d2.png", + "aggregators": ["PancakeExtended", "Rubic", "Rango"], + "occurrences": 3 + }, + "0xae1e85c3665b70b682defd778e3dafdf09ed3b0f": { + "address": "0xae1e85c3665b70b682defd778e3dafdf09ed3b0f", + "symbol": "BOS", + "decimals": 18, + "name": "BitcoinOS Token", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xae1e85c3665b70b682defd778e3dafdf09ed3b0f.png", + "aggregators": ["PancakeExtended", "Socket", "Rubic"], + "occurrences": 3 + }, + "0x775acf0fae2b97789ea58e775789925ade06b867": { + "address": "0x775acf0fae2b97789ea58e775789925ade06b867", + "symbol": "WQIE", + "decimals": 18, + "name": "WQIE", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x775acf0fae2b97789ea58e775789925ade06b867.png", + "aggregators": ["CoinGecko", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x8d047f4f57a190c96c8b9704b39a1379e999d82b": { + "address": "0x8d047f4f57a190c96c8b9704b39a1379e999d82b", + "symbol": "ECC", + "decimals": 8, + "name": "Etherconnect Coin", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x8d047f4f57a190c96c8b9704b39a1379e999d82b.png", + "aggregators": ["PancakeTop100", "Rubic", "Rango"], + "occurrences": 3 + }, + "0xf3edd4f14a018df4b6f02bf1b2cf17a8120519a2": { + "address": "0xf3edd4f14a018df4b6f02bf1b2cf17a8120519a2", + "symbol": "PWT", + "decimals": 8, + "name": "PandaInu Wallet Token", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xf3edd4f14a018df4b6f02bf1b2cf17a8120519a2.png", + "aggregators": ["PancakeTop100", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x849c6a8188b89f9a9757507705263fdfc0f8cd57": { + "address": "0x849c6a8188b89f9a9757507705263fdfc0f8cd57", + "symbol": "$EGGY", + "decimals": 18, + "name": "EGGY", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x849c6a8188b89f9a9757507705263fdfc0f8cd57.png", + "aggregators": ["PancakeCoinGecko", "Rubic", "Rango"], + "occurrences": 3 + }, + "0xb806fa32ebdc04e5dbdd2ad83e75c8f7d8e8ef8b": { + "address": "0xb806fa32ebdc04e5dbdd2ad83e75c8f7d8e8ef8b", + "symbol": "3P", + "decimals": 18, + "name": "Web3Camp", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xb806fa32ebdc04e5dbdd2ad83e75c8f7d8e8ef8b.png", + "aggregators": ["PancakeCoinMarketCap", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x7e8bae727abc245181f7abad0a4445114c0ca987": { + "address": "0x7e8bae727abc245181f7abad0a4445114c0ca987", + "symbol": "7", + "decimals": 9, + "name": "Lucky7", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x7e8bae727abc245181f7abad0a4445114c0ca987.png", + "aggregators": ["PancakeCoinMarketCap", "Rubic", "Rango"], + "occurrences": 3 + }, + "0xf92d62ed69242d655e685c96b98f32f1409c3262": { + "address": "0xf92d62ed69242d655e685c96b98f32f1409c3262", + "symbol": "A4M", + "decimals": 9, + "name": "Alien Form", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xf92d62ed69242d655e685c96b98f32f1409c3262.png", + "aggregators": ["PancakeCoinMarketCap", "Rubic", "Rango"], + "occurrences": 3 + }, + "0xed19b2b301e8a4e18c5dca374a27e7d209ba02c9": { + "address": "0xed19b2b301e8a4e18c5dca374a27e7d209ba02c9", + "symbol": "AAI", + "decimals": 18, + "name": "Aventis AI", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xed19b2b301e8a4e18c5dca374a27e7d209ba02c9.png", + "aggregators": ["PancakeCoinMarketCap", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x277ae79c42c859ca858d5a92c22222c8b65c6d94": { + "address": "0x277ae79c42c859ca858d5a92c22222c8b65c6d94", + "symbol": "ABB", + "decimals": 18, + "name": "Astro Token", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x277ae79c42c859ca858d5a92c22222c8b65c6d94.png", + "aggregators": ["PancakeCoinMarketCap", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x44f5909e97e1cbf5fbbdf0fc92fd83cde5d5c58a": { + "address": "0x44f5909e97e1cbf5fbbdf0fc92fd83cde5d5c58a", + "symbol": "ACRIA", + "decimals": 18, + "name": "Acria Token", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x44f5909e97e1cbf5fbbdf0fc92fd83cde5d5c58a.png", + "aggregators": ["PancakeCoinMarketCap", "Rubic", "Rango"], + "occurrences": 3 + }, + "0xc30c95205c7bc70d81da8e852255cc89b90480f7": { + "address": "0xc30c95205c7bc70d81da8e852255cc89b90480f7", + "symbol": "ADD", + "decimals": 18, + "name": "Add Finance", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xc30c95205c7bc70d81da8e852255cc89b90480f7.png", + "aggregators": ["PancakeCoinMarketCap", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x883916d358d6262a47b0516a4243bb08310dbdf0": { + "address": "0x883916d358d6262a47b0516a4243bb08310dbdf0", + "symbol": "ADO", + "decimals": 18, + "name": "ADO Protocol", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x883916d358d6262a47b0516a4243bb08310dbdf0.png", + "aggregators": ["PancakeCoinMarketCap", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x4e93bfcd6378e564c454bf99e130ae10a1c7b2dd": { + "address": "0x4e93bfcd6378e564c454bf99e130ae10a1c7b2dd", + "symbol": "AIRBTC", + "decimals": 18, + "name": "AIRBTC", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x4e93bfcd6378e564c454bf99e130ae10a1c7b2dd.png", + "aggregators": ["PancakeCoinMarketCap", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x69df2aaea7a40dad19c74e65192df0d0f7f7912b": { + "address": "0x69df2aaea7a40dad19c74e65192df0d0f7f7912b", + "symbol": "ALME", + "decimals": 18, + "name": "ALITA", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x69df2aaea7a40dad19c74e65192df0d0f7f7912b.png", + "aggregators": ["PancakeCoinMarketCap", "Rubic", "Sonarwatch"], + "occurrences": 3 + }, + "0x083dcb9df5453bb81f73dd9df5fa81b128035a29": { + "address": "0x083dcb9df5453bb81f73dd9df5fa81b128035a29", + "symbol": "ARG", + "decimals": 18, + "name": "Argent", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x083dcb9df5453bb81f73dd9df5fa81b128035a29.png", + "aggregators": ["PancakeCoinMarketCap", "Rubic", "Rango"], + "occurrences": 3 + }, + "0xf1f0fa0287c47804636ffef14e2c241f2587903e": { + "address": "0xf1f0fa0287c47804636ffef14e2c241f2587903e", + "symbol": "ARMA", + "decimals": 18, + "name": "Aarma", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xf1f0fa0287c47804636ffef14e2c241f2587903e.png", + "aggregators": ["PancakeCoinMarketCap", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x906089721cc5cb41c87d35bb05bea70bdf47a269": { + "address": "0x906089721cc5cb41c87d35bb05bea70bdf47a269", + "symbol": "ARMY", + "decimals": 9, + "name": "BabyDogeARMY", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x906089721cc5cb41c87d35bb05bea70bdf47a269.png", + "aggregators": ["PancakeCoinMarketCap", "Rubic", "Rango"], + "occurrences": 3 + }, + "0xc98a8ec7a07f1b743e86896a52434c4c6a0dbc42": { + "address": "0xc98a8ec7a07f1b743e86896a52434c4c6a0dbc42", + "symbol": "ASIX", + "decimals": 9, + "name": "ASIX", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xc98a8ec7a07f1b743e86896a52434c4c6a0dbc42.png", + "aggregators": ["PancakeCoinMarketCap", "Rubic", "Sonarwatch"], + "occurrences": 3 + }, + "0x8ea2f890cb86dfb0e376137451c6fd982afefc15": { + "address": "0x8ea2f890cb86dfb0e376137451c6fd982afefc15", + "symbol": "AU", + "decimals": 18, + "name": "AutoCrypto", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x8ea2f890cb86dfb0e376137451c6fd982afefc15.png", + "aggregators": ["PancakeCoinMarketCap", "Rubic", "Sonarwatch"], + "occurrences": 3 + }, + "0x1dbd1fbfb0eb339c14f63f908a4aba27b58b6fab": { + "address": "0x1dbd1fbfb0eb339c14f63f908a4aba27b58b6fab", + "symbol": "BABYMUSK", + "decimals": 18, + "name": "Baby Musk", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x1dbd1fbfb0eb339c14f63f908a4aba27b58b6fab.png", + "aggregators": ["PancakeCoinMarketCap", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x6cf278f71b4ebbfeecdb49d11373cb2c52d8e3f8": { + "address": "0x6cf278f71b4ebbfeecdb49d11373cb2c52d8e3f8", + "symbol": "BABYPORK", + "decimals": 9, + "name": "Baby Pepe Fork", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x6cf278f71b4ebbfeecdb49d11373cb2c52d8e3f8.png", + "aggregators": ["PancakeCoinMarketCap", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x079c6dc6b3b627e8eb07fa2e391b27d59eb4000b": { + "address": "0x079c6dc6b3b627e8eb07fa2e391b27d59eb4000b", + "symbol": "BABYRATS", + "decimals": 9, + "name": "Baby Rats", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x079c6dc6b3b627e8eb07fa2e391b27d59eb4000b.png", + "aggregators": ["PancakeCoinMarketCap", "Rubic", "Rango"], + "occurrences": 3 + }, + "0xb7f86029269ee2f93f51e116e08901e955a6668c": { + "address": "0xb7f86029269ee2f93f51e116e08901e955a6668c", + "symbol": "BABYSORA", + "decimals": 9, + "name": "Baby Sora", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xb7f86029269ee2f93f51e116e08901e955a6668c.png", + "aggregators": ["PancakeCoinMarketCap", "Rubic", "Sonarwatch"], + "occurrences": 3 + }, + "0x30f12482fc0f4341cc6c1be242c7578a1ff154c7": { + "address": "0x30f12482fc0f4341cc6c1be242c7578a1ff154c7", + "symbol": "BCAI", + "decimals": 18, + "name": "Bright Crypto Ai", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x30f12482fc0f4341cc6c1be242c7578a1ff154c7.png", + "aggregators": ["PancakeCoinMarketCap", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x8f081eb884fd47b79536d28e2dd9d4886773f783": { + "address": "0x8f081eb884fd47b79536d28e2dd9d4886773f783", + "symbol": "BECOIN", + "decimals": 6, + "name": "bePAY Finance", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x8f081eb884fd47b79536d28e2dd9d4886773f783.png", + "aggregators": ["PancakeCoinMarketCap", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x75b2fdd95418e093fca7db858b36549e5e412076": { + "address": "0x75b2fdd95418e093fca7db858b36549e5e412076", + "symbol": "BEFX", + "decimals": 18, + "name": "Belifex", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x75b2fdd95418e093fca7db858b36549e5e412076.png", + "aggregators": ["PancakeCoinMarketCap", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x50a53ad44590df1d6c9fcf257d6416e937e5ed4f": { + "address": "0x50a53ad44590df1d6c9fcf257d6416e937e5ed4f", + "symbol": "BEMD", + "decimals": 18, + "name": "Betterment digital", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x50a53ad44590df1d6c9fcf257d6416e937e5ed4f.png", + "aggregators": ["PancakeCoinMarketCap", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x315be92aba5c3aaaf82b0c0c613838342c1416e7": { + "address": "0x315be92aba5c3aaaf82b0c0c613838342c1416e7", + "symbol": "BENX", + "decimals": 7, + "name": "BlueBenx", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x315be92aba5c3aaaf82b0c0c613838342c1416e7.png", + "aggregators": ["PancakeCoinMarketCap", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x2bc8c2ae9dad57948fa4168e56e177a29ae0c0b1": { + "address": "0x2bc8c2ae9dad57948fa4168e56e177a29ae0c0b1", + "symbol": "BFT", + "decimals": 18, + "name": "BattleForTEN", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x2bc8c2ae9dad57948fa4168e56e177a29ae0c0b1.png", + "aggregators": ["PancakeCoinMarketCap", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x874966221020d6ac1aed0e2cfad9cbfee0ba713b": { + "address": "0x874966221020d6ac1aed0e2cfad9cbfee0ba713b", + "symbol": "BHBD", + "decimals": 3, + "name": "BNB Smart Chain HBD", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x874966221020d6ac1aed0e2cfad9cbfee0ba713b.png", + "aggregators": ["PancakeCoinMarketCap", "Rubic", "Rango"], + "occurrences": 3 + }, + "0xb12186584f74195eedc7f5e3c274c6784a000000": { + "address": "0xb12186584f74195eedc7f5e3c274c6784a000000", + "symbol": "BHC", + "decimals": 18, + "name": "Black Hole Coin", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xb12186584f74195eedc7f5e3c274c6784a000000.png", + "aggregators": ["PancakeCoinMarketCap", "Rubic", "Rango"], + "occurrences": 3 + }, + "0xdd041e030ade3db3b2221ce681b65f9650f250d7": { + "address": "0xdd041e030ade3db3b2221ce681b65f9650f250d7", + "symbol": "BIBL", + "decimals": 18, + "name": "Biblecoin", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xdd041e030ade3db3b2221ce681b65f9650f250d7.png", + "aggregators": ["PancakeCoinMarketCap", "Rubic", "Rango"], + "occurrences": 3 + }, + "0xa9cf023a5f6de6863f02761f6166799ec2595758": { + "address": "0xa9cf023a5f6de6863f02761f6166799ec2595758", + "symbol": "BLAST", + "decimals": 18, + "name": "Blast Frontiers", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xa9cf023a5f6de6863f02761f6166799ec2595758.png", + "aggregators": ["PancakeCoinMarketCap", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x42907d9f7e3d4291c801bbd1f601066eb1dfa956": { + "address": "0x42907d9f7e3d4291c801bbd1f601066eb1dfa956", + "symbol": "BLEC", + "decimals": 18, + "name": "Bless Global Credit", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x42907d9f7e3d4291c801bbd1f601066eb1dfa956.png", + "aggregators": ["PancakeCoinGecko", "Rubic", "Rango"], + "occurrences": 3 + }, + "0xf376807dcdbaa0d7fa86e7c9eacc58d11ad710e4": { + "address": "0xf376807dcdbaa0d7fa86e7c9eacc58d11ad710e4", + "symbol": "BLITZ", + "decimals": 18, + "name": "Blitz Labs", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xf376807dcdbaa0d7fa86e7c9eacc58d11ad710e4.png", + "aggregators": ["PancakeCoinMarketCap", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x04df8c91fccfd703cd15047bf6c1ce76d335c6ce": { + "address": "0x04df8c91fccfd703cd15047bf6c1ce76d335c6ce", + "symbol": "BLOVELY", + "decimals": 9, + "name": "Baby Lovely Inu", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x04df8c91fccfd703cd15047bf6c1ce76d335c6ce.png", + "aggregators": ["PancakeCoinMarketCap", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x708739980021a0b0b2e555383fe1283697e140e9": { + "address": "0x708739980021a0b0b2e555383fe1283697e140e9", + "symbol": "BLS", + "decimals": 18, + "name": "Metacourt", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x708739980021a0b0b2e555383fe1283697e140e9.png", + "aggregators": ["PancakeCoinMarketCap", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x24dcd565ba10c64daf1e9faedb0f09a9053c6d07": { + "address": "0x24dcd565ba10c64daf1e9faedb0f09a9053c6d07", + "symbol": "BLU", + "decimals": 18, + "name": "BLU", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x24dcd565ba10c64daf1e9faedb0f09a9053c6d07.png", + "aggregators": ["PancakeCoinMarketCap", "Rubic", "Rango"], + "occurrences": 3 + }, + "0xa0243cf95800a2f1358cac08e6367c5aef6bab40": { + "address": "0xa0243cf95800a2f1358cac08e6367c5aef6bab40", + "symbol": "BOMEDOGE", + "decimals": 9, + "name": "BOOK OF DOGE MEMES", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xa0243cf95800a2f1358cac08e6367c5aef6bab40.png", + "aggregators": ["PancakeCoinMarketCap", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x9f5d4479b783327b61718fa13b3a0583869a80c1": { + "address": "0x9f5d4479b783327b61718fa13b3a0583869a80c1", + "symbol": "BOXY", + "decimals": 18, + "name": "BOXY", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x9f5d4479b783327b61718fa13b3a0583869a80c1.png", + "aggregators": ["PancakeExtended", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x6aac56305825f712fd44599e59f2ede51d42c3e7": { + "address": "0x6aac56305825f712fd44599e59f2ede51d42c3e7", + "symbol": "BREWLABS", + "decimals": 9, + "name": "Brewlabs", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x6aac56305825f712fd44599e59f2ede51d42c3e7.png", + "aggregators": ["PancakeCoinMarketCap", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x98c6fd0281a9a0300cb88553bf386a3492bb70f7": { + "address": "0x98c6fd0281a9a0300cb88553bf386a3492bb70f7", + "symbol": "BRS", + "decimals": 18, + "name": "Broovs", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x98c6fd0281a9a0300cb88553bf386a3492bb70f7.png", + "aggregators": ["PancakeCoinMarketCap", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x4dd1984a706e1c2c227bea67ad2f92dbde30afce": { + "address": "0x4dd1984a706e1c2c227bea67ad2f92dbde30afce", + "symbol": "BSKT", + "decimals": 18, + "name": "BasketCoin", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x4dd1984a706e1c2c227bea67ad2f92dbde30afce.png", + "aggregators": ["PancakeCoinMarketCap", "Rubic", "Rango"], + "occurrences": 3 + }, + "0xe00cebf04e6a0a82a82a58f3b714d4b1cc67f6a1": { + "address": "0xe00cebf04e6a0a82a82a58f3b714d4b1cc67f6a1", + "symbol": "BTR", + "decimals": 18, + "name": "BTRIPS", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xe00cebf04e6a0a82a82a58f3b714d4b1cc67f6a1.png", + "aggregators": ["PancakeCoinMarketCap", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x7fcd1f0959c8c9a68087eadb74955b11830fe880": { + "address": "0x7fcd1f0959c8c9a68087eadb74955b11830fe880", + "symbol": "BURNKING", + "decimals": 18, + "name": "BurnKing", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x7fcd1f0959c8c9a68087eadb74955b11830fe880.png", + "aggregators": ["PancakeCoinMarketCap", "Rubic", "Rango"], + "occurrences": 3 + }, + "0xdfaabaa57dec10c049335bdaa2e949b4ce2ead30": { + "address": "0xdfaabaa57dec10c049335bdaa2e949b4ce2ead30", + "symbol": "CABO", + "decimals": 9, + "name": "CatBonk", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xdfaabaa57dec10c049335bdaa2e949b4ce2ead30.png", + "aggregators": ["PancakeCoinMarketCap", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x39132daa2082e12ac33a08478a74362e3c394357": { + "address": "0x39132daa2082e12ac33a08478a74362e3c394357", + "symbol": "CAKEBOT", + "decimals": 9, + "name": "CakeBot", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x39132daa2082e12ac33a08478a74362e3c394357.png", + "aggregators": ["PancakeCoinMarketCap", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x922722e9ef614ec9a3e94b78496e92abfbb5a624": { + "address": "0x922722e9ef614ec9a3e94b78496e92abfbb5a624", + "symbol": "CAPO", + "decimals": 18, + "name": "ILCAPO", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x922722e9ef614ec9a3e94b78496e92abfbb5a624.png", + "aggregators": ["PancakeCoinMarketCap", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x7df083f3b16a37ee91e89d4a11d62053aad331a4": { + "address": "0x7df083f3b16a37ee91e89d4a11d62053aad331a4", + "symbol": "CAT", + "decimals": 9, + "name": "Cat Finance", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x7df083f3b16a37ee91e89d4a11d62053aad331a4.png", + "aggregators": ["PancakeCoinMarketCap", "Rubic", "Rango"], + "occurrences": 3 + }, + "0xc9ac219c6a3eb0e0acbb5911099c6a79d29f585d": { + "address": "0xc9ac219c6a3eb0e0acbb5911099c6a79d29f585d", + "symbol": "CATEX", + "decimals": 9, + "name": "CATEX", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xc9ac219c6a3eb0e0acbb5911099c6a79d29f585d.png", + "aggregators": ["PancakeCoinMarketCap", "Rubic", "Sonarwatch"], + "occurrences": 3 + }, + "0x18d9d0d6e42bb52a13236f4fa33d9d2485d9015a": { + "address": "0x18d9d0d6e42bb52a13236f4fa33d9d2485d9015a", + "symbol": "CATSHIRA", + "decimals": 18, + "name": "Shira Cat", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x18d9d0d6e42bb52a13236f4fa33d9d2485d9015a.png", + "aggregators": ["PancakeCoinMarketCap", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x92b0e13f1c6bf5696289863ebc49a4f0bce46f3e": { + "address": "0x92b0e13f1c6bf5696289863ebc49a4f0bce46f3e", + "symbol": "CBAB", + "decimals": 18, + "name": "CreBit", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x92b0e13f1c6bf5696289863ebc49a4f0bce46f3e.png", + "aggregators": ["PancakeCoinMarketCap", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x39bff8613defd221b0410ed3d4e5c07512d55f2d": { + "address": "0x39bff8613defd221b0410ed3d4e5c07512d55f2d", + "symbol": "CBIX-P", + "decimals": 18, + "name": "Cubiex Power", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x39bff8613defd221b0410ed3d4e5c07512d55f2d.png", + "aggregators": ["PancakeCoinMarketCap", "Rubic", "Rango"], + "occurrences": 3 + }, + "0xbfb8f92e8f3a9034019ac97fd9f85c6dfb513834": { + "address": "0xbfb8f92e8f3a9034019ac97fd9f85c6dfb513834", + "symbol": "CBSL", + "decimals": 18, + "name": "CeBioLabs", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xbfb8f92e8f3a9034019ac97fd9f85c6dfb513834.png", + "aggregators": ["PancakeCoinMarketCap", "Rubic", "Rango"], + "occurrences": 3 + }, + "0xfa2ad87e35fc8d3c9f57d73c4667a4651ce6ad2f": { + "address": "0xfa2ad87e35fc8d3c9f57d73c4667a4651ce6ad2f", + "symbol": "CEB", + "decimals": 18, + "name": "Carbon Emission Blockchain", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xfa2ad87e35fc8d3c9f57d73c4667a4651ce6ad2f.png", + "aggregators": ["PancakeCoinGecko", "Rubic", "Rango"], + "occurrences": 3 + }, + "0xfc3514474306e2d4aa8350fd8fa9c46c165fe8cd": { + "address": "0xfc3514474306e2d4aa8350fd8fa9c46c165fe8cd", + "symbol": "CNAME", + "decimals": 18, + "name": "Cloudname", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xfc3514474306e2d4aa8350fd8fa9c46c165fe8cd.png", + "aggregators": ["PancakeCoinMarketCap", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x9f6651f7147c4ec16357d0a56122e52c3c804b50": { + "address": "0x9f6651f7147c4ec16357d0a56122e52c3c804b50", + "symbol": "CODAI", + "decimals": 18, + "name": "CODAI", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x9f6651f7147c4ec16357d0a56122e52c3c804b50.png", + "aggregators": ["PancakeCoinMarketCap", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x57ac045f3553882e0e1e4cb44faffdc1bdfee249": { + "address": "0x57ac045f3553882e0e1e4cb44faffdc1bdfee249", + "symbol": "COMA", + "decimals": 9, + "name": "Compound Meta", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x57ac045f3553882e0e1e4cb44faffdc1bdfee249.png", + "aggregators": ["PancakeCoinMarketCap", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x3542a28854c5243656fa5cfa1a2811a32e28c1c8": { + "address": "0x3542a28854c5243656fa5cfa1a2811a32e28c1c8", + "symbol": "CR", + "decimals": 18, + "name": "Capitalrock", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x3542a28854c5243656fa5cfa1a2811a32e28c1c8.png", + "aggregators": ["PancakeCoinMarketCap", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x6289812163af9421e566b3d74774074fac2a0441": { + "address": "0x6289812163af9421e566b3d74774074fac2a0441", + "symbol": "CRUSADER", + "decimals": 9, + "name": "Crusaders of Crypto", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x6289812163af9421e566b3d74774074fac2a0441.png", + "aggregators": ["PancakeCoinMarketCap", "Rubic", "Rango"], + "occurrences": 3 + }, + "0xc85a2576693e5a6206398fe1c498c4bfe214df58": { + "address": "0xc85a2576693e5a6206398fe1c498c4bfe214df58", + "symbol": "CT", + "decimals": 18, + "name": "CLIQ token", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xc85a2576693e5a6206398fe1c498c4bfe214df58.png", + "aggregators": ["PancakeCoinMarketCap", "Rubic", "Rango"], + "occurrences": 3 + }, + "0xa5331bb3a3f1e1cb98ba8160176569ac0a80e61d": { + "address": "0xa5331bb3a3f1e1cb98ba8160176569ac0a80e61d", + "symbol": "CTS", + "decimals": 18, + "name": "Cats Coin", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xa5331bb3a3f1e1cb98ba8160176569ac0a80e61d.png", + "aggregators": ["PancakeCoinMarketCap", "Rubic", "Rango"], + "occurrences": 3 + }, + "0xba08da6b46e3dd153dd8b66a6e4cfd37a6359559": { + "address": "0xba08da6b46e3dd153dd8b66a6e4cfd37a6359559", + "symbol": "CTY", + "decimals": 18, + "name": "CUSTODIY", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xba08da6b46e3dd153dd8b66a6e4cfd37a6359559.png", + "aggregators": ["PancakeCoinMarketCap", "Rubic", "Sonarwatch"], + "occurrences": 3 + }, + "0x7fbec0bb6a7152e77c30d005b5d49cbc08a602c3": { + "address": "0x7fbec0bb6a7152e77c30d005b5d49cbc08a602c3", + "symbol": "DDOS", + "decimals": 18, + "name": "disBalancer", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x7fbec0bb6a7152e77c30d005b5d49cbc08a602c3.png", + "aggregators": ["PancakeCoinMarketCap", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x1a131f7b106d58f33eaf0fe5b47db2f2045e5732": { + "address": "0x1a131f7b106d58f33eaf0fe5b47db2f2045e5732", + "symbol": "DEGEN", + "decimals": 18, + "name": "DegenReborn", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x1a131f7b106d58f33eaf0fe5b47db2f2045e5732.png", + "aggregators": ["PancakeCoinMarketCap", "Rubic", "Rango"], + "occurrences": 3 + }, + "0xa87584cfeb892c33a1c9a233e4a733b45c4160e6": { + "address": "0xa87584cfeb892c33a1c9a233e4a733b45c4160e6", + "symbol": "DGH", + "decimals": 18, + "name": "Digihealth", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xa87584cfeb892c33a1c9a233e4a733b45c4160e6.png", + "aggregators": ["PancakeCoinMarketCap", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x3a06212763caf64bf101daa4b0cebb0cd393fa1a": { + "address": "0x3a06212763caf64bf101daa4b0cebb0cd393fa1a", + "symbol": "DLTA", + "decimals": 18, + "name": "delta.theta", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x3a06212763caf64bf101daa4b0cebb0cd393fa1a.png", + "aggregators": ["PancakeCoinMarketCap", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x4d829d37460d2490446255b15d52c81df3093290": { + "address": "0x4d829d37460d2490446255b15d52c81df3093290", + "symbol": "DLY", + "decimals": 18, + "name": "Daily Finance", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x4d829d37460d2490446255b15d52c81df3093290.png", + "aggregators": ["PancakeCoinMarketCap", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x1a2662f7195d4a4636bf56868055d529937f8e10": { + "address": "0x1a2662f7195d4a4636bf56868055d529937f8e10", + "symbol": "DOGEGROK", + "decimals": 9, + "name": "Doge Grok", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x1a2662f7195d4a4636bf56868055d529937f8e10.png", + "aggregators": ["PancakeCoinMarketCap", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x2b2ff80c489dad868318a19fd6f258889a026da5": { + "address": "0x2b2ff80c489dad868318a19fd6f258889a026da5", + "symbol": "DXT", + "decimals": 9, + "name": "DeXit Network", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x2b2ff80c489dad868318a19fd6f258889a026da5.png", + "aggregators": ["PancakeCoinMarketCap", "Rubic", "Rango"], + "occurrences": 3 + }, + "0xb1ce906c610004e27e74415aa9bcc90e46366f90": { + "address": "0xb1ce906c610004e27e74415aa9bcc90e46366f90", + "symbol": "DYNMT", + "decimals": 2, + "name": "Dynamite", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xb1ce906c610004e27e74415aa9bcc90e46366f90.png", + "aggregators": ["PancakeCoinMarketCap", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x2b1b730c997d81db2e792b47d0bc42a64ee6aa55": { + "address": "0x2b1b730c997d81db2e792b47d0bc42a64ee6aa55", + "symbol": "EDUX", + "decimals": 18, + "name": "Edufex", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x2b1b730c997d81db2e792b47d0bc42a64ee6aa55.png", + "aggregators": ["PancakeCoinMarketCap", "Rubic", "Rango"], + "occurrences": 3 + }, + "0xae98e63db1c4646bf5b40b29c664bc922f71bc65": { + "address": "0xae98e63db1c4646bf5b40b29c664bc922f71bc65", + "symbol": "EFT", + "decimals": 18, + "name": "Energyfi Token", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xae98e63db1c4646bf5b40b29c664bc922f71bc65.png", + "aggregators": ["PancakeCoinMarketCap", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x6746e37a756da9e34f0bbf1c0495784ba33b79b4": { + "address": "0x6746e37a756da9e34f0bbf1c0495784ba33b79b4", + "symbol": "EFUN", + "decimals": 18, + "name": "EFUN", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x6746e37a756da9e34f0bbf1c0495784ba33b79b4.png", + "aggregators": ["PancakeCoinMarketCap", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x74afe449d1beffc90456cfebd700ab391abd7daf": { + "address": "0x74afe449d1beffc90456cfebd700ab391abd7daf", + "symbol": "EG", + "decimals": 18, + "name": "EG Token", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x74afe449d1beffc90456cfebd700ab391abd7daf.png", + "aggregators": ["PancakeCoinMarketCap", "Rubic", "Rango"], + "occurrences": 3 + }, + "0xc001bbe2b87079294c63ece98bdd0a88d761434e": { + "address": "0xc001bbe2b87079294c63ece98bdd0a88d761434e", + "symbol": "EGC", + "decimals": 9, + "name": "EverGrow Coin", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xc001bbe2b87079294c63ece98bdd0a88d761434e.png", + "aggregators": ["PancakeCoinMarketCap", "Rubic", "Sonarwatch"], + "occurrences": 3 + }, + "0x623be4fde518a00ac49a870bd439cfd5c35e08ed": { + "address": "0x623be4fde518a00ac49a870bd439cfd5c35e08ed", + "symbol": "EXT", + "decimals": 9, + "name": "Exatech", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x623be4fde518a00ac49a870bd439cfd5c35e08ed.png", + "aggregators": ["PancakeCoinMarketCap", "Rubic", "Sonarwatch"], + "occurrences": 3 + }, + "0xca0c1c12466a57b26850b05a0ba2fb39f9763a0c": { + "address": "0xca0c1c12466a57b26850b05a0ba2fb39f9763a0c", + "symbol": "EZI", + "decimals": 9, + "name": "Ezillion", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xca0c1c12466a57b26850b05a0ba2fb39f9763a0c.png", + "aggregators": ["PancakeCoinMarketCap", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x87e2414093632a3b9a1afea7083e5dab59b5dc4f": { + "address": "0x87e2414093632a3b9a1afea7083e5dab59b5dc4f", + "symbol": "FALCON", + "decimals": 18, + "name": "FalconsInu", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x87e2414093632a3b9a1afea7083e5dab59b5dc4f.png", + "aggregators": ["PancakeCoinMarketCap", "Rubic", "Sonarwatch"], + "occurrences": 3 + }, + "0x56513627e7cea535b9b5a18da7643a4b21999994": { + "address": "0x56513627e7cea535b9b5a18da7643a4b21999994", + "symbol": "FATHOM", + "decimals": 18, + "name": "Fathom", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x56513627e7cea535b9b5a18da7643a4b21999994.png", + "aggregators": ["PancakeCoinMarketCap", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x29cabf2a1e5de6f0ebc39ca6fe83c687fe90fb6c": { + "address": "0x29cabf2a1e5de6f0ebc39ca6fe83c687fe90fb6c", + "symbol": "FICO", + "decimals": 18, + "name": "Fish Crypto", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x29cabf2a1e5de6f0ebc39ca6fe83c687fe90fb6c.png", + "aggregators": ["PancakeCoinMarketCap", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x3b95702dd0ce375462f131f805f9ee6e1563f8d5": { + "address": "0x3b95702dd0ce375462f131f805f9ee6e1563f8d5", + "symbol": "FINE", + "decimals": 18, + "name": "This is Fine", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x3b95702dd0ce375462f131f805f9ee6e1563f8d5.png", + "aggregators": ["PancakeCoinMarketCap", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x1b219aca875f8c74c33cff9ff98f3a9b62fcbff5": { + "address": "0x1b219aca875f8c74c33cff9ff98f3a9b62fcbff5", + "symbol": "FINS", + "decimals": 18, + "name": "AutoShark DEX", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x1b219aca875f8c74c33cff9ff98f3a9b62fcbff5.png", + "aggregators": ["PancakeCoinMarketCap", "Rubic", "Rango"], + "occurrences": 3 + }, + "0xbb9f216bac27046c6b8bdaae660b761b851ab068": { + "address": "0xbb9f216bac27046c6b8bdaae660b761b851ab068", + "symbol": "FOHO", + "decimals": 8, + "name": "FOHO Coin", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xbb9f216bac27046c6b8bdaae660b761b851ab068.png", + "aggregators": ["PancakeCoinMarketCap", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x5a29c96fa93ffa8845fb7f8616a03aa85fcc11d6": { + "address": "0x5a29c96fa93ffa8845fb7f8616a03aa85fcc11d6", + "symbol": "FRF", + "decimals": 8, + "name": "France REV Finance", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x5a29c96fa93ffa8845fb7f8616a03aa85fcc11d6.png", + "aggregators": ["PancakeCoinMarketCap", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x4c561c1ef2109fc6b230304b114671f72820421b": { + "address": "0x4c561c1ef2109fc6b230304b114671f72820421b", + "symbol": "FROGGY", + "decimals": 18, + "name": "Froggy", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x4c561c1ef2109fc6b230304b114671f72820421b.png", + "aggregators": ["PancakeCoinMarketCap", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x9fbff386a9405b4c98329824418ec02b5c20976b": { + "address": "0x9fbff386a9405b4c98329824418ec02b5c20976b", + "symbol": "FUTURE", + "decimals": 18, + "name": "FUTURECOIN", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x9fbff386a9405b4c98329824418ec02b5c20976b.png", + "aggregators": ["PancakeCoinMarketCap", "Rubic", "Rango"], + "occurrences": 3 + }, + "0xa99600043e84181a9d4137ad1cefb8cfe9138674": { + "address": "0xa99600043e84181a9d4137ad1cefb8cfe9138674", + "symbol": "FXST", + "decimals": 6, + "name": "FX Stock Token", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xa99600043e84181a9d4137ad1cefb8cfe9138674.png", + "aggregators": ["PancakeCoinMarketCap", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x0158d3817c1391b4736be724b1e8e8553d615c57": { + "address": "0x0158d3817c1391b4736be724b1e8e8553d615c57", + "symbol": "GAYPEPE", + "decimals": 18, + "name": "Gay Pepe", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x0158d3817c1391b4736be724b1e8e8553d615c57.png", + "aggregators": ["PancakeCoinMarketCap", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x2d8269dae518e78d95110dbfadf1fb479b8152e7": { + "address": "0x2d8269dae518e78d95110dbfadf1fb479b8152e7", + "symbol": "GCC", + "decimals": 9, + "name": "GCCOIN", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x2d8269dae518e78d95110dbfadf1fb479b8152e7.png", + "aggregators": ["PancakeCoinMarketCap", "Rubic", "Rango"], + "occurrences": 3 + }, + "0xb2192a2829a5220bafd5b0a67f3328e209887bee": { + "address": "0xb2192a2829a5220bafd5b0a67f3328e209887bee", + "symbol": "GETA", + "decimals": 18, + "name": "Getaverse", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xb2192a2829a5220bafd5b0a67f3328e209887bee.png", + "aggregators": ["PancakeCoinMarketCap", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x2ff90b0c29ededdaf11c847925ea4a17789e88c3": { + "address": "0x2ff90b0c29ededdaf11c847925ea4a17789e88c3", + "symbol": "GINOA", + "decimals": 18, + "name": "Ginoa", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x2ff90b0c29ededdaf11c847925ea4a17789e88c3.png", + "aggregators": ["PancakeCoinMarketCap", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x655e1cb3f2c81c76856302679648df698a5f1989": { + "address": "0x655e1cb3f2c81c76856302679648df698a5f1989", + "symbol": "GLI", + "decimals": 9, + "name": "GLI TOKEN", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x655e1cb3f2c81c76856302679648df698a5f1989.png", + "aggregators": ["PancakeCoinMarketCap", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x9720ca160bbd4e7f3dd4bb3f8bd4227ca0342e63": { + "address": "0x9720ca160bbd4e7f3dd4bb3f8bd4227ca0342e63", + "symbol": "GMPD", + "decimals": 18, + "name": "GMPD", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x9720ca160bbd4e7f3dd4bb3f8bd4227ca0342e63.png", + "aggregators": ["PancakeCoinMarketCap", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x87429b114315e8dbfa8b9611bef07ecad9a13742": { + "address": "0x87429b114315e8dbfa8b9611bef07ecad9a13742", + "symbol": "GOKU", + "decimals": 18, + "name": "GOKUSWAP", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x87429b114315e8dbfa8b9611bef07ecad9a13742.png", + "aggregators": ["PancakeCoinMarketCap", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x8a99feefc8857e65be8f098f22765b99113d43ef": { + "address": "0x8a99feefc8857e65be8f098f22765b99113d43ef", + "symbol": "GOOGLY", + "decimals": 9, + "name": "Googly Cat", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x8a99feefc8857e65be8f098f22765b99113d43ef.png", + "aggregators": ["PancakeCoinMarketCap", "Rubic", "Rango"], + "occurrences": 3 + }, + "0xa5fbc3520dd4bb85fcd175e1e3b994546a2c1ee8": { + "address": "0xa5fbc3520dd4bb85fcd175e1e3b994546a2c1ee8", + "symbol": "GOTEM", + "decimals": 18, + "name": "gotEM", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xa5fbc3520dd4bb85fcd175e1e3b994546a2c1ee8.png", + "aggregators": ["PancakeCoinMarketCap", "Rubic", "Rango"], + "occurrences": 3 + }, + "0xc1a8f8bb27958c92ca1ed00340a50297cd4ccdd8": { + "address": "0xc1a8f8bb27958c92ca1ed00340a50297cd4ccdd8", + "symbol": "GROKBANK", + "decimals": 9, + "name": "Grok Bank", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xc1a8f8bb27958c92ca1ed00340a50297cd4ccdd8.png", + "aggregators": ["PancakeCoinMarketCap", "Rubic", "Sonarwatch"], + "occurrences": 3 + }, + "0xaf27e0c18d1c63884ec73cee8838a2aa49c58517": { + "address": "0xaf27e0c18d1c63884ec73cee8838a2aa49c58517", + "symbol": "GROKBOY", + "decimals": 1, + "name": "GrokBoy", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xaf27e0c18d1c63884ec73cee8838a2aa49c58517.png", + "aggregators": ["PancakeCoinMarketCap", "Rubic", "Rango"], + "occurrences": 3 + }, + "0xbd566c45e13023b94ad0f07f2a93d1ed74801f90": { + "address": "0xbd566c45e13023b94ad0f07f2a93d1ed74801f90", + "symbol": "GROKHEROES", + "decimals": 18, + "name": "GROK heroes", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xbd566c45e13023b94ad0f07f2a93d1ed74801f90.png", + "aggregators": ["PancakeCoinMarketCap", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x6ddd36f6c7c021ebf7d4b9753537d7bca8ed4e37": { + "address": "0x6ddd36f6c7c021ebf7d4b9753537d7bca8ed4e37", + "symbol": "GROOMER", + "decimals": 18, + "name": "Hamster Groomers", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x6ddd36f6c7c021ebf7d4b9753537d7bca8ed4e37.png", + "aggregators": ["PancakeCoinMarketCap", "Rubic", "Rango"], + "occurrences": 3 + }, + "0xbc4d19d6ab09fafe720db304fac0e9ec941a932b": { + "address": "0xbc4d19d6ab09fafe720db304fac0e9ec941a932b", + "symbol": "HIDE", + "decimals": 18, + "name": "Hide Coin", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xbc4d19d6ab09fafe720db304fac0e9ec941a932b.png", + "aggregators": ["PancakeCoinMarketCap", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x469acf8e1f29c1b5db99394582464fad45a1fc6f": { + "address": "0x469acf8e1f29c1b5db99394582464fad45a1fc6f", + "symbol": "HIMO", + "decimals": 18, + "name": "Himo World", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x469acf8e1f29c1b5db99394582464fad45a1fc6f.png", + "aggregators": ["PancakeCoinMarketCap", "Rubic", "Rango"], + "occurrences": 3 + }, + "0xb534b21082e44a9c5865876f41f8dd348278fdf2": { + "address": "0xb534b21082e44a9c5865876f41f8dd348278fdf2", + "symbol": "HOMIECOIN", + "decimals": 18, + "name": "Homie Wars", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xb534b21082e44a9c5865876f41f8dd348278fdf2.png", + "aggregators": ["PancakeCoinMarketCap", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x17b69d106f3fcd3ca441d794b5641428ec633f03": { + "address": "0x17b69d106f3fcd3ca441d794b5641428ec633f03", + "symbol": "HONK", + "decimals": 9, + "name": "HONK", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x17b69d106f3fcd3ca441d794b5641428ec633f03.png", + "aggregators": ["PancakeCoinMarketCap", "Rubic", "Rango"], + "occurrences": 3 + }, + "0xc75aa1fa199eac5adabc832ea4522cff6dfd521a": { + "address": "0xc75aa1fa199eac5adabc832ea4522cff6dfd521a", + "symbol": "HPAY", + "decimals": 18, + "name": "HedgePay", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xc75aa1fa199eac5adabc832ea4522cff6dfd521a.png", + "aggregators": ["PancakeCoinMarketCap", "Rubic", "Rango"], + "occurrences": 3 + }, + "0xda8929a6338f408cc78c1845fb4f71bffd2cfcfb": { + "address": "0xda8929a6338f408cc78c1845fb4f71bffd2cfcfb", + "symbol": "HSF", + "decimals": 18, + "name": "Hillstone Finance", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xda8929a6338f408cc78c1845fb4f71bffd2cfcfb.png", + "aggregators": ["PancakeCoinMarketCap", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x724f8ebae58f19bc472ae57b4b24748a9f3e55c5": { + "address": "0x724f8ebae58f19bc472ae57b4b24748a9f3e55c5", + "symbol": "HUS", + "decimals": 18, + "name": "Husky.AI", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x724f8ebae58f19bc472ae57b4b24748a9f3e55c5.png", + "aggregators": ["PancakeCoinMarketCap", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x19cd9b8e42d4ef62c3ea124110d5cfd283ceac43": { + "address": "0x19cd9b8e42d4ef62c3ea124110d5cfd283ceac43", + "symbol": "IBAT", + "decimals": 9, + "name": "BattleInfinity", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x19cd9b8e42d4ef62c3ea124110d5cfd283ceac43.png", + "aggregators": ["PancakeCoinMarketCap", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x4927b4d730ae6f5a9a9115cf81848a3b9cfad891": { + "address": "0x4927b4d730ae6f5a9a9115cf81848a3b9cfad891", + "symbol": "IFC", + "decimals": 18, + "name": "iFortune", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x4927b4d730ae6f5a9a9115cf81848a3b9cfad891.png", + "aggregators": ["PancakeCoinMarketCap", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x9babcd3a6f62d9adc709e919d5faa39aa85749fc": { + "address": "0x9babcd3a6f62d9adc709e919d5faa39aa85749fc", + "symbol": "INDSHIB", + "decimals": 18, + "name": "Indian Shiba Inu", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x9babcd3a6f62d9adc709e919d5faa39aa85749fc.png", + "aggregators": ["PancakeCoinMarketCap", "Rubic", "Rango"], + "occurrences": 3 + }, + "0xe2efe9d38e21293347018914ee1d23913ecb811c": { + "address": "0xe2efe9d38e21293347018914ee1d23913ecb811c", + "symbol": "INTL", + "decimals": 18, + "name": "Intelly", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xe2efe9d38e21293347018914ee1d23913ecb811c.png", + "aggregators": ["PancakeCoinMarketCap", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x5d681b9839e237c4f1dc7d7486e6cb0a12b9654f": { + "address": "0x5d681b9839e237c4f1dc7d7486e6cb0a12b9654f", + "symbol": "IOWN", + "decimals": 18, + "name": "iOWN Token", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x5d681b9839e237c4f1dc7d7486e6cb0a12b9654f.png", + "aggregators": ["PancakeCoinMarketCap", "Rubic", "Rango"], + "occurrences": 3 + }, + "0xcdb96d3aef363a036c6cf6c9b5736d79f0e404e2": { + "address": "0xcdb96d3aef363a036c6cf6c9b5736d79f0e404e2", + "symbol": "IPX", + "decimals": 18, + "name": "InpulseX", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xcdb96d3aef363a036c6cf6c9b5736d79f0e404e2.png", + "aggregators": ["PancakeCoinGecko", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x146171eb1c1e32faefcfdabc3c470b83197adb60": { + "address": "0x146171eb1c1e32faefcfdabc3c470b83197adb60", + "symbol": "ITC", + "decimals": 18, + "name": "ITC", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x146171eb1c1e32faefcfdabc3c470b83197adb60.png", + "aggregators": ["PancakeCoinMarketCap", "Rubic", "Rango"], + "occurrences": 3 + }, + "0xdd97ab35e3c0820215bc85a395e13671d84ccba2": { + "address": "0xdd97ab35e3c0820215bc85a395e13671d84ccba2", + "symbol": "JAWS", + "decimals": 18, + "name": "AutoShark", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xdd97ab35e3c0820215bc85a395e13671d84ccba2.png", + "aggregators": ["PancakeCoinMarketCap", "Rubic", "Rango"], + "occurrences": 3 + }, + "0xb8167c0e58f4ca0ec7a6d967a8d138f05b3a981f": { + "address": "0xb8167c0e58f4ca0ec7a6d967a8d138f05b3a981f", + "symbol": "JEN", + "decimals": 18, + "name": "Jencoin", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xb8167c0e58f4ca0ec7a6d967a8d138f05b3a981f.png", + "aggregators": ["PancakeCoinMarketCap", "Rubic", "Rango"], + "occurrences": 3 + }, + "0xdd6978f36c98aff4287e5ac803c9cf1b865641f6": { + "address": "0xdd6978f36c98aff4287e5ac803c9cf1b865641f6", + "symbol": "JERRY", + "decimals": 9, + "name": "Jerry Inu", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xdd6978f36c98aff4287e5ac803c9cf1b865641f6.png", + "aggregators": ["PancakeCoinMarketCap", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x1ec58fe5e681e35e490b5d4cbecdf42b29c1b063": { + "address": "0x1ec58fe5e681e35e490b5d4cbecdf42b29c1b063", + "symbol": "JK", + "decimals": 18, + "name": "JK Coin", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x1ec58fe5e681e35e490b5d4cbecdf42b29c1b063.png", + "aggregators": ["PancakeCoinMarketCap", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x57c58c724460f10bd75ffac248c2621818c086d5": { + "address": "0x57c58c724460f10bd75ffac248c2621818c086d5", + "symbol": "JOKER", + "decimals": 9, + "name": "JOKER", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x57c58c724460f10bd75ffac248c2621818c086d5.png", + "aggregators": ["PancakeCoinMarketCap", "Rubic", "Rango"], + "occurrences": 3 + }, + "0xe3b933caed104db24542249c7331584d5a05972f": { + "address": "0xe3b933caed104db24542249c7331584d5a05972f", + "symbol": "JOOPS", + "decimals": 18, + "name": "JOOPS", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xe3b933caed104db24542249c7331584d5a05972f.png", + "aggregators": ["PancakeCoinMarketCap", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x26a1bdfa3bb86b2744c4a42ebfdd205761d13a8a": { + "address": "0x26a1bdfa3bb86b2744c4a42ebfdd205761d13a8a", + "symbol": "KAKA", + "decimals": 18, + "name": "KAKA Metaverse Token", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x26a1bdfa3bb86b2744c4a42ebfdd205761d13a8a.png", + "aggregators": ["PancakeCoinMarketCap", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x8e984e03ab35795c60242c902ece2450242c90e9": { + "address": "0x8e984e03ab35795c60242c902ece2450242c90e9", + "symbol": "KAMPAY", + "decimals": 18, + "name": "KamPay", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x8e984e03ab35795c60242c902ece2450242c90e9.png", + "aggregators": ["PancakeCoinMarketCap", "Rubic", "Rango"], + "occurrences": 3 + }, + "0xaf6424e047d52c5394fe6151b433c6ee6d222958": { + "address": "0xaf6424e047d52c5394fe6151b433c6ee6d222958", + "symbol": "KBC", + "decimals": 7, + "name": "KB Chain", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xaf6424e047d52c5394fe6151b433c6ee6d222958.png", + "aggregators": ["PancakeCoinMarketCap", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x2df3774f46049da1efeb2b0c393efd7234b6ad56": { + "address": "0x2df3774f46049da1efeb2b0c393efd7234b6ad56", + "symbol": "KINGGROK", + "decimals": 9, + "name": "King Grok", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x2df3774f46049da1efeb2b0c393efd7234b6ad56.png", + "aggregators": ["PancakeCoinMarketCap", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x235d650fc6d9eb7d4bac77e128265295a0054304": { + "address": "0x235d650fc6d9eb7d4bac77e128265295a0054304", + "symbol": "KWAI", + "decimals": 18, + "name": "KWAI", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x235d650fc6d9eb7d4bac77e128265295a0054304.png", + "aggregators": ["PancakeCoinMarketCap", "Rubic", "Rango"], + "occurrences": 3 + }, + "0xa78628ecba2bf5fedf3fe27a7cedaa363b46708f": { + "address": "0xa78628ecba2bf5fedf3fe27a7cedaa363b46708f", + "symbol": "LBR", + "decimals": 9, + "name": "Little Bunny Rocket", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xa78628ecba2bf5fedf3fe27a7cedaa363b46708f.png", + "aggregators": ["PancakeCoinMarketCap", "Rubic", "Rango"], + "occurrences": 3 + }, + "0xce36b4caed3ea2ac7b8fe026d111718fb79caf8e": { + "address": "0xce36b4caed3ea2ac7b8fe026d111718fb79caf8e", + "symbol": "LCI", + "decimals": 18, + "name": "LOVECHAIN", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xce36b4caed3ea2ac7b8fe026d111718fb79caf8e.png", + "aggregators": ["PancakeCoinMarketCap", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x320d31183100280ccdf69366cd56180ea442a3e8": { + "address": "0x320d31183100280ccdf69366cd56180ea442a3e8", + "symbol": "LHC", + "decimals": 8, + "name": "Lightcoin", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x320d31183100280ccdf69366cd56180ea442a3e8.png", + "aggregators": ["PancakeCoinMarketCap", "Rubic", "Rango"], + "occurrences": 3 + }, + "0xbcc608002765339db153d07250d516bc4356531b": { + "address": "0xbcc608002765339db153d07250d516bc4356531b", + "symbol": "LIO", + "decimals": 18, + "name": "Leonidasbilic", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xbcc608002765339db153d07250d516bc4356531b.png", + "aggregators": ["PancakeCoinMarketCap", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x16530b5c105fcb7c50bc84a039a0a4ed806a5124": { + "address": "0x16530b5c105fcb7c50bc84a039a0a4ed806a5124", + "symbol": "LIXX", + "decimals": 9, + "name": "Libra Incentix", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x16530b5c105fcb7c50bc84a039a0a4ed806a5124.png", + "aggregators": ["PancakeCoinMarketCap", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x39926824c06491284d13f7babaf06c8fed3add6c": { + "address": "0x39926824c06491284d13f7babaf06c8fed3add6c", + "symbol": "LONGFU", + "decimals": 18, + "name": "LONGFU", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x39926824c06491284d13f7babaf06c8fed3add6c.png", + "aggregators": ["PancakeCoinMarketCap", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x7bb5c17a9889fde42c4c95a937f7d387b8bcd409": { + "address": "0x7bb5c17a9889fde42c4c95a937f7d387b8bcd409", + "symbol": "LORDZ", + "decimals": 18, + "name": "MemeLordz Token", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x7bb5c17a9889fde42c4c95a937f7d387b8bcd409.png", + "aggregators": ["PancakeCoinMarketCap", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x32413018b57a706ea5882c8a9279258e637157e6": { + "address": "0x32413018b57a706ea5882c8a9279258e637157e6", + "symbol": "MATAR", + "decimals": 18, + "name": "MATAR AI", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x32413018b57a706ea5882c8a9279258e637157e6.png", + "aggregators": ["PancakeCoinMarketCap", "Rubic", "Rango"], + "occurrences": 3 + }, + "0xaf2f53cc6cc0384aba52275b0f715851fb5aff94": { + "address": "0xaf2f53cc6cc0384aba52275b0f715851fb5aff94", + "symbol": "MBP", + "decimals": 18, + "name": "MobiPad", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xaf2f53cc6cc0384aba52275b0f715851fb5aff94.png", + "aggregators": ["PancakeCoinMarketCap", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x92d28e49a4ffd443c1e2a907dcc07d2a41e67f4d": { + "address": "0x92d28e49a4ffd443c1e2a907dcc07d2a41e67f4d", + "symbol": "MELB", + "decimals": 18, + "name": "Minelab", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x92d28e49a4ffd443c1e2a907dcc07d2a41e67f4d.png", + "aggregators": ["PancakeCoinMarketCap", "Rubic", "Rango"], + "occurrences": 3 + }, + "0xad04ac36791d923deb082da4f91ab71675dd18fb": { + "address": "0xad04ac36791d923deb082da4f91ab71675dd18fb", + "symbol": "MELI", + "decimals": 18, + "name": "MELI", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xad04ac36791d923deb082da4f91ab71675dd18fb.png", + "aggregators": ["PancakeCoinMarketCap", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x04073d16c6a08c27e8bbebe262ea4d1c6fa4c772": { + "address": "0x04073d16c6a08c27e8bbebe262ea4d1c6fa4c772", + "symbol": "META", + "decimals": 18, + "name": "MetaToken", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x04073d16c6a08c27e8bbebe262ea4d1c6fa4c772.png", + "aggregators": ["PancakeCoinMarketCap", "Rubic", "Rango"], + "occurrences": 3 + }, + "0xdc3541806d651ec79ba8639a1b495acf503eb2dd": { + "address": "0xdc3541806d651ec79ba8639a1b495acf503eb2dd", + "symbol": "METO", + "decimals": 18, + "name": "Metoshi", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xdc3541806d651ec79ba8639a1b495acf503eb2dd.png", + "aggregators": ["PancakeCoinMarketCap", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x6d23970ce32cb0f1929bece7c56d71319e1b4f01": { + "address": "0x6d23970ce32cb0f1929bece7c56d71319e1b4f01", + "symbol": "MFET", + "decimals": 8, + "name": "Multi Functional Environmental Token", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x6d23970ce32cb0f1929bece7c56d71319e1b4f01.png", + "aggregators": ["PancakeCoinMarketCap", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x336f5a68fd46a25056a6c1d9c06072c691486acc": { + "address": "0x336f5a68fd46a25056a6c1d9c06072c691486acc", + "symbol": "MIMIR", + "decimals": 18, + "name": "Mimir Token", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x336f5a68fd46a25056a6c1d9c06072c691486acc.png", + "aggregators": ["PancakeCoinMarketCap", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x5f2f6c4c491b690216e0f8ea753ff49ef4e36ba6": { + "address": "0x5f2f6c4c491b690216e0f8ea753ff49ef4e36ba6", + "symbol": "MLS", + "decimals": 18, + "name": "MetaLand Shares", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x5f2f6c4c491b690216e0f8ea753ff49ef4e36ba6.png", + "aggregators": ["PancakeCoinMarketCap", "Rubic", "Rango"], + "occurrences": 3 + }, + "0xa922a70569a7555518bf4ded5094661a965e23ca": { + "address": "0xa922a70569a7555518bf4ded5094661a965e23ca", + "symbol": "MNB", + "decimals": 8, + "name": "MN Bridge", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xa922a70569a7555518bf4ded5094661a965e23ca.png", + "aggregators": ["PancakeCoinMarketCap", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x039cd22cb49084142d55fcd4b6096a4f51ffb3b4": { + "address": "0x039cd22cb49084142d55fcd4b6096a4f51ffb3b4", + "symbol": "MOVEZ", + "decimals": 18, + "name": "MOVEZ.me", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x039cd22cb49084142d55fcd4b6096a4f51ffb3b4.png", + "aggregators": ["PancakeCoinMarketCap", "Rubic", "Rango"], + "occurrences": 3 + }, + "0xf1b602fc211e3e2976ef44e4017b764a778197e0": { + "address": "0xf1b602fc211e3e2976ef44e4017b764a778197e0", + "symbol": "MTG", + "decimals": 18, + "name": "MTG", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xf1b602fc211e3e2976ef44e4017b764a778197e0.png", + "aggregators": ["PancakeCoinMarketCap", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x6f7a1beab01c90545822a43ae1f5a59b779a30d9": { + "address": "0x6f7a1beab01c90545822a43ae1f5a59b779a30d9", + "symbol": "MTRC", + "decimals": 18, + "name": "Motorcoin", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x6f7a1beab01c90545822a43ae1f5a59b779a30d9.png", + "aggregators": ["PancakeCoinGecko", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x5e7f472b9481c80101b22d0ba4ef4253aa61dabc": { + "address": "0x5e7f472b9481c80101b22d0ba4ef4253aa61dabc", + "symbol": "MUDOL2", + "decimals": 18, + "name": "Hero Blaze: Three Kingdoms", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x5e7f472b9481c80101b22d0ba4ef4253aa61dabc.png", + "aggregators": ["PancakeCoinMarketCap", "Rubic", "Rango"], + "occurrences": 3 + }, + "0xf8028b65005b0b45f76988d2a77910186e7af4ef": { + "address": "0xf8028b65005b0b45f76988d2a77910186e7af4ef", + "symbol": "NDB", + "decimals": 12, + "name": "NDB", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xf8028b65005b0b45f76988d2a77910186e7af4ef.png", + "aggregators": ["PancakeCoinMarketCap", "Rubic", "Rango"], + "occurrences": 3 + }, + "0xf538030ba4b39e35a3576bd6698cfcc6ac34a81f": { + "address": "0xf538030ba4b39e35a3576bd6698cfcc6ac34a81f", + "symbol": "NEMO", + "decimals": 18, + "name": "NEMO", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xf538030ba4b39e35a3576bd6698cfcc6ac34a81f.png", + "aggregators": ["PancakeCoinMarketCap", "Rubic", "Rango"], + "occurrences": 3 + }, + "0xaa3ed6e6ea3ed78d4d57e373aabd6f54df5bb508": { + "address": "0xaa3ed6e6ea3ed78d4d57e373aabd6f54df5bb508", + "symbol": "NGA", + "decimals": 18, + "name": "NGA Tiger", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xaa3ed6e6ea3ed78d4d57e373aabd6f54df5bb508.png", + "aggregators": ["PancakeCoinMarketCap", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x7efb55d9ac57b23cc6811c9068db3cf83cbdfe39": { + "address": "0x7efb55d9ac57b23cc6811c9068db3cf83cbdfe39", + "symbol": "NSI", + "decimals": 18, + "name": "nSights DeFi Trader", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x7efb55d9ac57b23cc6811c9068db3cf83cbdfe39.png", + "aggregators": ["PancakeCoinMarketCap", "Rubic", "Rango"], + "occurrences": 3 + }, + "0xfdad8edc724277e975f4955d288c6eb5b20a3146": { + "address": "0xfdad8edc724277e975f4955d288c6eb5b20a3146", + "symbol": "NSWAP", + "decimals": 8, + "name": "Nulswap", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xfdad8edc724277e975f4955d288c6eb5b20a3146.png", + "aggregators": ["PancakeCoinMarketCap", "Rubic", "Rango"], + "occurrences": 3 + }, + "0xfdff7a8eda6a3739132867f989be4bf84e803c15": { + "address": "0xfdff7a8eda6a3739132867f989be4bf84e803c15", + "symbol": "NYT", + "decimals": 18, + "name": "New Year Token", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xfdff7a8eda6a3739132867f989be4bf84e803c15.png", + "aggregators": ["PancakeCoinMarketCap", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x37fe635d1e25b2f7276c1b9dbbcc7b087f80c050": { + "address": "0x37fe635d1e25b2f7276c1b9dbbcc7b087f80c050", + "symbol": "OCICAT", + "decimals": 18, + "name": "OciCat", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x37fe635d1e25b2f7276c1b9dbbcc7b087f80c050.png", + "aggregators": ["PancakeCoinMarketCap", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x6b0a03c7bd8441e0f8959394761e29bd6afbfdf7": { + "address": "0x6b0a03c7bd8441e0f8959394761e29bd6afbfdf7", + "symbol": "ONE", + "decimals": 18, + "name": "One Token", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x6b0a03c7bd8441e0f8959394761e29bd6afbfdf7.png", + "aggregators": ["PancakeCoinMarketCap", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x7536c00711e41df6aebcca650791107645b6bc52": { + "address": "0x7536c00711e41df6aebcca650791107645b6bc52", + "symbol": "OXB", + "decimals": 18, + "name": "OXBULL.TECH", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x7536c00711e41df6aebcca650791107645b6bc52.png", + "aggregators": ["PancakeCoinMarketCap", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x43a0c5eb1763a211aa3c05849a617f2ee0452767": { + "address": "0x43a0c5eb1763a211aa3c05849a617f2ee0452767", + "symbol": "PDX", + "decimals": 9, + "name": "PokeDX", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x43a0c5eb1763a211aa3c05849a617f2ee0452767.png", + "aggregators": ["PancakeCoinMarketCap", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x4adc604a0261e3d340745533964fff6bb130f3c3": { + "address": "0x4adc604a0261e3d340745533964fff6bb130f3c3", + "symbol": "PESA", + "decimals": 18, + "name": "Pesabase", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x4adc604a0261e3d340745533964fff6bb130f3c3.png", + "aggregators": ["PancakeCoinMarketCap", "Rubic", "Rango"], + "occurrences": 3 + }, + "0xa31be3734c2f2928570e363f89441cf1b527f6d4": { + "address": "0xa31be3734c2f2928570e363f89441cf1b527f6d4", + "symbol": "PIE", + "decimals": 18, + "name": "SportsPie", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xa31be3734c2f2928570e363f89441cf1b527f6d4.png", + "aggregators": ["PancakeCoinMarketCap", "Rubic", "Rango"], + "occurrences": 3 + }, + "0xb8067235c9b71feec069af151fdf0975dfbdfba5": { + "address": "0xb8067235c9b71feec069af151fdf0975dfbdfba5", + "symbol": "PION", + "decimals": 18, + "name": "PION Network", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xb8067235c9b71feec069af151fdf0975dfbdfba5.png", + "aggregators": ["PancakeCoinGecko", "Rubic", "Rango"], + "occurrences": 3 + }, + "0xac4ff793053c9fe8163020df5054865d925f9bbd": { + "address": "0xac4ff793053c9fe8163020df5054865d925f9bbd", + "symbol": "PLXY", + "decimals": 18, + "name": "Plxyer", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xac4ff793053c9fe8163020df5054865d925f9bbd.png", + "aggregators": ["PancakeCoinMarketCap", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x0cf453dc7ea21ef8fdffc1b14cb848e1e3884be5": { + "address": "0x0cf453dc7ea21ef8fdffc1b14cb848e1e3884be5", + "symbol": "POINT", + "decimals": 18, + "name": "SportPoint", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x0cf453dc7ea21ef8fdffc1b14cb848e1e3884be5.png", + "aggregators": ["PancakeCoinMarketCap", "Rubic", "Rango"], + "occurrences": 3 + }, + "0xefd8bb69ab5c0b022b1d33120ddd1dac3a83877e": { + "address": "0xefd8bb69ab5c0b022b1d33120ddd1dac3a83877e", + "symbol": "POKEGROK", + "decimals": 18, + "name": "PokeGROK", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xefd8bb69ab5c0b022b1d33120ddd1dac3a83877e.png", + "aggregators": ["PancakeCoinMarketCap", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x0c7d31befe4945089a3b8f835d6e8c1d4df6d952": { + "address": "0x0c7d31befe4945089a3b8f835d6e8c1d4df6d952", + "symbol": "POKO", + "decimals": 9, + "name": "POKO", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x0c7d31befe4945089a3b8f835d6e8c1d4df6d952.png", + "aggregators": ["PancakeCoinMarketCap", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x651189c8c0abbd79d51af276aa241915ca782b21": { + "address": "0x651189c8c0abbd79d51af276aa241915ca782b21", + "symbol": "PONG", + "decimals": 18, + "name": "Pong Heroes", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x651189c8c0abbd79d51af276aa241915ca782b21.png", + "aggregators": ["PancakeCoinMarketCap", "Rubic", "Rango"], + "occurrences": 3 + }, + "0xe8647ea19496e87c061bbad79f457928b2f52b5a": { + "address": "0xe8647ea19496e87c061bbad79f457928b2f52b5a", + "symbol": "POP", + "decimals": 18, + "name": "Popcorn", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xe8647ea19496e87c061bbad79f457928b2f52b5a.png", + "aggregators": ["PancakeCoinMarketCap", "Rubic", "Rango"], + "occurrences": 3 + }, + "0xfa53a4778431712af31a11621edee4d0926df1ac": { + "address": "0xfa53a4778431712af31a11621edee4d0926df1ac", + "symbol": "PTS", + "decimals": 18, + "name": "Petals", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xfa53a4778431712af31a11621edee4d0926df1ac.png", + "aggregators": ["PancakeCoinMarketCap", "Rubic", "Rango"], + "occurrences": 3 + }, + "0xd4d55b811d9ede2adce61a98d67d7f91bffce495": { + "address": "0xd4d55b811d9ede2adce61a98d67d7f91bffce495", + "symbol": "PULSEDOGE", + "decimals": 18, + "name": "PulseDoge", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xd4d55b811d9ede2adce61a98d67d7f91bffce495.png", + "aggregators": ["PancakeCoinMarketCap", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x6dc923900b3000bd074d1fea072839d51c76e70e": { + "address": "0x6dc923900b3000bd074d1fea072839d51c76e70e", + "symbol": "RU", + "decimals": 18, + "name": "RIFI United", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x6dc923900b3000bd074d1fea072839d51c76e70e.png", + "aggregators": ["PancakeCoinMarketCap", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x7c59a57fc16eac270421b74615c4bc009ecd486d": { + "address": "0x7c59a57fc16eac270421b74615c4bc009ecd486d", + "symbol": "RXCG", + "decimals": 18, + "name": "RXCGames", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x7c59a57fc16eac270421b74615c4bc009ecd486d.png", + "aggregators": ["PancakeCoinMarketCap", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x8d1427a32f0a4c4bf052252e68e7ff1b2ba80c01": { + "address": "0x8d1427a32f0a4c4bf052252e68e7ff1b2ba80c01", + "symbol": "RXT", + "decimals": 18, + "name": "RIMAUNANGIS", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x8d1427a32f0a4c4bf052252e68e7ff1b2ba80c01.png", + "aggregators": ["PancakeCoinMarketCap", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x855c172281e2f0a8ac59248c04cfd47a7f40e8dd": { + "address": "0x855c172281e2f0a8ac59248c04cfd47a7f40e8dd", + "symbol": "SAKA", + "decimals": 18, + "name": "Saka Vault", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x855c172281e2f0a8ac59248c04cfd47a7f40e8dd.png", + "aggregators": ["PancakeCoinGecko", "Rubic", "Rango"], + "occurrences": 3 + }, + "0xb9efd0936e4d4eff2c1e3b50629a3348a9a86942": { + "address": "0xb9efd0936e4d4eff2c1e3b50629a3348a9a86942", + "symbol": "SANTAGROK", + "decimals": 9, + "name": "Santa Grok", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xb9efd0936e4d4eff2c1e3b50629a3348a9a86942.png", + "aggregators": ["PancakeCoinMarketCap", "Rubic", "Rango"], + "occurrences": 3 + }, + "0xef43bf8c6430a615bba48987ae2522e3a3be0a18": { + "address": "0xef43bf8c6430a615bba48987ae2522e3a3be0a18", + "symbol": "SAY", + "decimals": 18, + "name": "SAYCOIN", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xef43bf8c6430a615bba48987ae2522e3a3be0a18.png", + "aggregators": ["PancakeCoinMarketCap", "Rubic", "Sonarwatch"], + "occurrences": 3 + }, + "0x6e02be885fca1138038420fddd4b41c59a8cea6d": { + "address": "0x6e02be885fca1138038420fddd4b41c59a8cea6d", + "symbol": "SBCC", + "decimals": 18, + "name": "Smart Block Chain City", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x6e02be885fca1138038420fddd4b41c59a8cea6d.png", + "aggregators": ["PancakeCoinMarketCap", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x800a25741a414ea6e6e2b382435081a479a8cc3c": { + "address": "0x800a25741a414ea6e6e2b382435081a479a8cc3c", + "symbol": "SEOR", + "decimals": 18, + "name": "SEOR Network", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x800a25741a414ea6e6e2b382435081a479a8cc3c.png", + "aggregators": ["PancakeCoinMarketCap", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x91656750bc364ff38adb51157acbb76f9f5ec2fe": { + "address": "0x91656750bc364ff38adb51157acbb76f9f5ec2fe", + "symbol": "SFZ", + "decimals": 9, + "name": "Safemoon Zilla", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x91656750bc364ff38adb51157acbb76f9f5ec2fe.png", + "aggregators": ["PancakeCoinMarketCap", "Rubic", "Rango"], + "occurrences": 3 + }, + "0xc183062db25fc96325485ea369c979ce881ac0ea": { + "address": "0xc183062db25fc96325485ea369c979ce881ac0ea", + "symbol": "SHIBELON", + "decimals": 4, + "name": "ShibElon", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xc183062db25fc96325485ea369c979ce881ac0ea.png", + "aggregators": ["PancakeCoinMarketCap", "Rubic", "Rango"], + "occurrences": 3 + }, + "0xf224ade71c20f9823e34e0792f72437596b4e28c": { + "address": "0xf224ade71c20f9823e34e0792f72437596b4e28c", + "symbol": "SHIBO", + "decimals": 9, + "name": "ShiBonk", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xf224ade71c20f9823e34e0792f72437596b4e28c.png", + "aggregators": ["PancakeCoinMarketCap", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x2ddb89a10bf2020d8cae7c5d239b6f38be9d91d9": { + "address": "0x2ddb89a10bf2020d8cae7c5d239b6f38be9d91d9", + "symbol": "SHOKI", + "decimals": 18, + "name": "Shoki", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x2ddb89a10bf2020d8cae7c5d239b6f38be9d91d9.png", + "aggregators": ["PancakeCoinMarketCap", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x71f69afed8825d6d9300ba4d74103e1dcc263b93": { + "address": "0x71f69afed8825d6d9300ba4d74103e1dcc263b93", + "symbol": "SIMPLI", + "decimals": 18, + "name": "Simpli Finance", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x71f69afed8825d6d9300ba4d74103e1dcc263b93.png", + "aggregators": ["PancakeCoinMarketCap", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x000851476180bfc499ea68450a5327d21c9b050e": { + "address": "0x000851476180bfc499ea68450a5327d21c9b050e", + "symbol": "SLAM", + "decimals": 18, + "name": "Slam Token", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x000851476180bfc499ea68450a5327d21c9b050e.png", + "aggregators": ["PancakeCoinMarketCap", "Rubic", "Rango"], + "occurrences": 3 + }, + "0xc56dc6c39b2866fa8b6970f94a228ec15be3bcf6": { + "address": "0xc56dc6c39b2866fa8b6970f94a228ec15be3bcf6", + "symbol": "SLEX", + "decimals": 18, + "name": "SLEX Token", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xc56dc6c39b2866fa8b6970f94a228ec15be3bcf6.png", + "aggregators": ["PancakeCoinMarketCap", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x9c2b1b3780a8b36b695f0b2781668664ac1bf25a": { + "address": "0x9c2b1b3780a8b36b695f0b2781668664ac1bf25a", + "symbol": "SPKY", + "decimals": 18, + "name": "SpookyShiba", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x9c2b1b3780a8b36b695f0b2781668664ac1bf25a.png", + "aggregators": ["PancakeCoinMarketCap", "Rubic", "Sonarwatch"], + "occurrences": 3 + }, + "0x56156fb7860d7eb0b4b1a5356c5354b295194a45": { + "address": "0x56156fb7860d7eb0b4b1a5356c5354b295194a45", + "symbol": "SPRT", + "decimals": 18, + "name": "Sportium Token", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x56156fb7860d7eb0b4b1a5356c5354b295194a45.png", + "aggregators": ["PancakeCoinMarketCap", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x57528b45134f09f2e0069334a36a7e14af74745f": { + "address": "0x57528b45134f09f2e0069334a36a7e14af74745f", + "symbol": "SUGAR", + "decimals": 18, + "name": "SugarYield", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x57528b45134f09f2e0069334a36a7e14af74745f.png", + "aggregators": ["PancakeCoinMarketCap", "Rubic", "Rango"], + "occurrences": 3 + }, + "0xcdaba68a050fc4ba5c7e18d37e8be955b1bfbb00": { + "address": "0xcdaba68a050fc4ba5c7e18d37e8be955b1bfbb00", + "symbol": "SWC", + "decimals": 18, + "name": "Swiss Cash Coin", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xcdaba68a050fc4ba5c7e18d37e8be955b1bfbb00.png", + "aggregators": ["PancakeCoinMarketCap", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x98b6e33e77a55732f0e2ce595429144b18ce862c": { + "address": "0x98b6e33e77a55732f0e2ce595429144b18ce862c", + "symbol": "SWCAT", + "decimals": 18, + "name": "Star Wars Cat", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x98b6e33e77a55732f0e2ce595429144b18ce862c.png", + "aggregators": ["PancakeCoinMarketCap", "Rubic", "Sonarwatch"], + "occurrences": 3 + }, + "0x7dc3577681038522d796335e73f2efeccca1878d": { + "address": "0x7dc3577681038522d796335e73f2efeccca1878d", + "symbol": "SWIRLX", + "decimals": 18, + "name": "SwirlToken", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x7dc3577681038522d796335e73f2efeccca1878d.png", + "aggregators": ["PancakeCoinMarketCap", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x53607c4a966f79d3ab1750180e770b0bfd493f46": { + "address": "0x53607c4a966f79d3ab1750180e770b0bfd493f46", + "symbol": "SWP", + "decimals": 18, + "name": "Stepwatch Paradise", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x53607c4a966f79d3ab1750180e770b0bfd493f46.png", + "aggregators": ["PancakeCoinMarketCap", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x958cc5ac2efa569cd9ad9b9b88245e1f038b02be": { + "address": "0x958cc5ac2efa569cd9ad9b9b88245e1f038b02be", + "symbol": "SWU", + "decimals": 18, + "name": "Smart World Union", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x958cc5ac2efa569cd9ad9b9b88245e1f038b02be.png", + "aggregators": ["PancakeCoinMarketCap", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x0a94ea47de185d6376db4cad70123ec8de4f2841": { + "address": "0x0a94ea47de185d6376db4cad70123ec8de4f2841", + "symbol": "SYNAPTICAI", + "decimals": 18, + "name": "Synaptic AI", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x0a94ea47de185d6376db4cad70123ec8de4f2841.png", + "aggregators": ["PancakeCoinMarketCap", "Rubic", "Rango"], + "occurrences": 3 + }, + "0xc98cf0876b23fb1f574be5c59e4217c80b34d327": { + "address": "0xc98cf0876b23fb1f574be5c59e4217c80b34d327", + "symbol": "T99", + "decimals": 18, + "name": "Tethereum", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xc98cf0876b23fb1f574be5c59e4217c80b34d327.png", + "aggregators": ["PancakeCoinGecko", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x26d6e280f9687c463420908740ae59f712419147": { + "address": "0x26d6e280f9687c463420908740ae59f712419147", + "symbol": "TBAKE", + "decimals": 18, + "name": "Bakery Tools", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x26d6e280f9687c463420908740ae59f712419147.png", + "aggregators": ["PancakeCoinMarketCap", "Rubic", "Rango"], + "occurrences": 3 + }, + "0xcf3bb6ac0f6d987a5727e2d15e39c2d6061d5bec": { + "address": "0xcf3bb6ac0f6d987a5727e2d15e39c2d6061d5bec", + "symbol": "TERZ", + "decimals": 18, + "name": "SHELTERZ", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xcf3bb6ac0f6d987a5727e2d15e39c2d6061d5bec.png", + "aggregators": ["PancakeCoinMarketCap", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x049dd7532148826cde956c7b45fec8c30b514052": { + "address": "0x049dd7532148826cde956c7b45fec8c30b514052", + "symbol": "TEX", + "decimals": 18, + "name": "IoTex Pad", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x049dd7532148826cde956c7b45fec8c30b514052.png", + "aggregators": ["PancakeCoinMarketCap", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x3da4f9e86deef7c50a8b167493f26e894edcd7d5": { + "address": "0x3da4f9e86deef7c50a8b167493f26e894edcd7d5", + "symbol": "TIIM", + "decimals": 18, + "name": "TriipMiles", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x3da4f9e86deef7c50a8b167493f26e894edcd7d5.png", + "aggregators": ["PancakeCoinMarketCap", "Rubic", "Rango"], + "occurrences": 3 + }, + "0xc81688968bd1e8da313b8f2936852ec4307cd17f": { + "address": "0xc81688968bd1e8da313b8f2936852ec4307cd17f", + "symbol": "TRUMP", + "decimals": 18, + "name": "PEPE", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xc81688968bd1e8da313b8f2936852ec4307cd17f.png", + "aggregators": ["PancakeCoinMarketCap", "Socket", "Rubic"], + "occurrences": 3 + }, + "0x9efb5bf31c3d950a8531445b7de5881001346268": { + "address": "0x9efb5bf31c3d950a8531445b7de5881001346268", + "symbol": "TSM", + "decimals": 18, + "name": "Tusima Token", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x9efb5bf31c3d950a8531445b7de5881001346268.png", + "aggregators": ["PancakeCoinGecko", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x3a1fb088d52b79c62c8b88238e174c2b0336fd6f": { + "address": "0x3a1fb088d52b79c62c8b88238e174c2b0336fd6f", + "symbol": "TVS", + "decimals": 18, + "name": "TVS", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x3a1fb088d52b79c62c8b88238e174c2b0336fd6f.png", + "aggregators": ["PancakeCoinMarketCap", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x301af3eff0c904dc5ddd06faa808f653474f7fcc": { + "address": "0x301af3eff0c904dc5ddd06faa808f653474f7fcc", + "symbol": "UNB", + "decimals": 18, + "name": "Unbound", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x301af3eff0c904dc5ddd06faa808f653474f7fcc.png", + "aggregators": ["PancakeCoinMarketCap", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x43767d226ef1f5337d10382cd19d64b60a30c5fd": { + "address": "0x43767d226ef1f5337d10382cd19d64b60a30c5fd", + "symbol": "USBT", + "decimals": 18, + "name": "Universal Blockchain", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x43767d226ef1f5337d10382cd19d64b60a30c5fd.png", + "aggregators": ["PancakeCoinMarketCap", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x39dc1f91fee49c03a0db558254707116101518bf": { + "address": "0x39dc1f91fee49c03a0db558254707116101518bf", + "symbol": "UT", + "decimals": 18, + "name": "Fantaverse", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x39dc1f91fee49c03a0db558254707116101518bf.png", + "aggregators": ["PancakeCoinMarketCap", "Rubic", "Rango"], + "occurrences": 3 + }, + "0xe6884e29ffe5c6f68f4958cf201b0e308f982ac9": { + "address": "0xe6884e29ffe5c6f68f4958cf201b0e308f982ac9", + "symbol": "VEGAS", + "decimals": 18, + "name": "Vegasino", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xe6884e29ffe5c6f68f4958cf201b0e308f982ac9.png", + "aggregators": ["PancakeCoinMarketCap", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x6759565574de509b7725abb4680020704b3f404e": { + "address": "0x6759565574de509b7725abb4680020704b3f404e", + "symbol": "VIP", + "decimals": 9, + "name": "VIP", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x6759565574de509b7725abb4680020704b3f404e.png", + "aggregators": ["PancakeCoinMarketCap", "Rubic", "Sonarwatch"], + "occurrences": 3 + }, + "0xabc69f2025bdb12efcdb8fd048d240fff943ca82": { + "address": "0xabc69f2025bdb12efcdb8fd048d240fff943ca82", + "symbol": "VNY", + "decimals": 9, + "name": "Vanity", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xabc69f2025bdb12efcdb8fd048d240fff943ca82.png", + "aggregators": ["PancakeCoinMarketCap", "Rubic", "Sonarwatch"], + "occurrences": 3 + }, + "0xa975be9202ce26dde8bce29034be42bcd4861e36": { + "address": "0xa975be9202ce26dde8bce29034be42bcd4861e36", + "symbol": "VRL", + "decimals": 8, + "name": "Virtual X ", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xa975be9202ce26dde8bce29034be42bcd4861e36.png", + "aggregators": ["PancakeCoinMarketCap", "Rubic", "Rango"], + "occurrences": 3 + }, + "0xbbdac6ca30ba9189c7bf67a1f7160379f7e25835": { + "address": "0xbbdac6ca30ba9189c7bf67a1f7160379f7e25835", + "symbol": "VX", + "decimals": 18, + "name": "ViteX Coin", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xbbdac6ca30ba9189c7bf67a1f7160379f7e25835.png", + "aggregators": ["PancakeCoinMarketCap", "Rubic", "Rango"], + "occurrences": 3 + }, + "0xd0aa796e2160ed260c668e90ac5f237b4ebd4b0d": { + "address": "0xd0aa796e2160ed260c668e90ac5f237b4ebd4b0d", + "symbol": "WAIFU", + "decimals": 18, + "name": "Waifu", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xd0aa796e2160ed260c668e90ac5f237b4ebd4b0d.png", + "aggregators": ["PancakeCoinMarketCap", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x0b1d4c430de9fc309e38826729ac9cff7070d0a5": { + "address": "0x0b1d4c430de9fc309e38826729ac9cff7070d0a5", + "symbol": "WAT", + "decimals": 9, + "name": "Wat BNB", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x0b1d4c430de9fc309e38826729ac9cff7070d0a5.png", + "aggregators": ["PancakeCoinMarketCap", "Rubic", "Sonarwatch"], + "occurrences": 3 + }, + "0xd3987cb8a59e8ef6aab0d95b92254344ed9c3c6f": { + "address": "0xd3987cb8a59e8ef6aab0d95b92254344ed9c3c6f", + "symbol": "WEBFOUR", + "decimals": 18, + "name": "Webfour", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xd3987cb8a59e8ef6aab0d95b92254344ed9c3c6f.png", + "aggregators": ["PancakeCoinMarketCap", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x1e87b1f395a6a61c8dec2933a527680bb723be11": { + "address": "0x1e87b1f395a6a61c8dec2933a527680bb723be11", + "symbol": "WHEN", + "decimals": 9, + "name": "when", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x1e87b1f395a6a61c8dec2933a527680bb723be11.png", + "aggregators": ["PancakeCoinMarketCap", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x6c015277b0f9b8c24b20bd8bbbd29fdb25738a69": { + "address": "0x6c015277b0f9b8c24b20bd8bbbd29fdb25738a69", + "symbol": "WNYC", + "decimals": 18, + "name": "Wrapped NewYorkCoin", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x6c015277b0f9b8c24b20bd8bbbd29fdb25738a69.png", + "aggregators": ["PancakeCoinMarketCap", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x747b1223b23e53070c54df355fac2e198aa54708": { + "address": "0x747b1223b23e53070c54df355fac2e198aa54708", + "symbol": "WSYS", + "decimals": 18, + "name": "Wrapped Syscoin", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x747b1223b23e53070c54df355fac2e198aa54708.png", + "aggregators": ["PancakeCoinMarketCap", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x3764bc0de9b6a68c67929130aaec16b6060cab8c": { + "address": "0x3764bc0de9b6a68c67929130aaec16b6060cab8c", + "symbol": "XIDO", + "decimals": 18, + "name": "XIDO FINANCE", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x3764bc0de9b6a68c67929130aaec16b6060cab8c.png", + "aggregators": ["PancakeCoinMarketCap", "Rubic", "Rango"], + "occurrences": 3 + }, + "0xf3be1a4a47576208c1592cc027087ce154b00672": { + "address": "0xf3be1a4a47576208c1592cc027087ce154b00672", + "symbol": "XIL", + "decimals": 18, + "name": "XIL", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xf3be1a4a47576208c1592cc027087ce154b00672.png", + "aggregators": ["PancakeCoinMarketCap", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x695adae22c14c3a166afeb46f15ab7262c5d5bc2": { + "address": "0x695adae22c14c3a166afeb46f15ab7262c5d5bc2", + "symbol": "XQUOK", + "decimals": 9, + "name": "XQUOK", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x695adae22c14c3a166afeb46f15ab7262c5d5bc2.png", + "aggregators": ["PancakeCoinMarketCap", "Rubic", "Rango"], + "occurrences": 3 + }, + "0xb25583e5e2db32b7fcbffe3f5e8e305c36157e54": { + "address": "0xb25583e5e2db32b7fcbffe3f5e8e305c36157e54", + "symbol": "XRX", + "decimals": 18, + "name": "REX", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xb25583e5e2db32b7fcbffe3f5e8e305c36157e54.png", + "aggregators": ["PancakeCoinMarketCap", "Rubic", "Rango"], + "occurrences": 3 + }, + "0xffe2a166a3ea6dd7bb11b2c48f08f1e4202d4e78": { + "address": "0xffe2a166a3ea6dd7bb11b2c48f08f1e4202d4e78", + "symbol": "XVC", + "decimals": 18, + "name": "Xave Coin", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xffe2a166a3ea6dd7bb11b2c48f08f1e4202d4e78.png", + "aggregators": ["PancakeCoinMarketCap", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x768a62a22b187eb350637e720ebc552d905c0331": { + "address": "0x768a62a22b187eb350637e720ebc552d905c0331", + "symbol": "YMII", + "decimals": 18, + "name": "Young Mids Inspired", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x768a62a22b187eb350637e720ebc552d905c0331.png", + "aggregators": ["PancakeCoinGecko", "Rubic", "Rango"], + "occurrences": 3 + }, + "0xfcadd830ff2d6cf3ad1681e1e8fc5ddce9d59e74": { + "address": "0xfcadd830ff2d6cf3ad1681e1e8fc5ddce9d59e74", + "symbol": "ZADA", + "decimals": 18, + "name": "Zada", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xfcadd830ff2d6cf3ad1681e1e8fc5ddce9d59e74.png", + "aggregators": ["PancakeCoinMarketCap", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x0e8fe6eed5342ea9189d9268d088821f0532fb74": { + "address": "0x0e8fe6eed5342ea9189d9268d088821f0532fb74", + "symbol": "ZCR", + "decimals": 18, + "name": "ZCore Network", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x0e8fe6eed5342ea9189d9268d088821f0532fb74.png", + "aggregators": ["PancakeCoinMarketCap", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x213fd3c787b6c452f50fd91f14e12ddf04a7ab4a": { + "address": "0x213fd3c787b6c452f50fd91f14e12ddf04a7ab4a", + "symbol": "ZDCV2", + "decimals": 18, + "name": "ZodiacsV2", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x213fd3c787b6c452f50fd91f14e12ddf04a7ab4a.png", + "aggregators": ["PancakeCoinMarketCap", "Rubic", "Rango"], + "occurrences": 3 + }, + "0xf226432a5f49d595def3a3c51c7210b61f0aef2d": { + "address": "0xf226432a5f49d595def3a3c51c7210b61f0aef2d", + "symbol": "ZENQ", + "decimals": 18, + "name": "ZENQIRA", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xf226432a5f49d595def3a3c51c7210b61f0aef2d.png", + "aggregators": ["PancakeCoinGecko", "Rubic", "Rango"], + "occurrences": 3 + }, + "0xe9cba5d3a0505cbbee0154be49b1d8eb68d392b3": { + "address": "0xe9cba5d3a0505cbbee0154be49b1d8eb68d392b3", + "symbol": "ZUSHI", + "decimals": 18, + "name": "ZUSHI", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xe9cba5d3a0505cbbee0154be49b1d8eb68d392b3.png", + "aggregators": ["PancakeCoinMarketCap", "Rubic", "Sonarwatch"], + "occurrences": 3 + }, + "0x85f41e668499c91ee47f7629507ad1acf96ee327": { + "address": "0x85f41e668499c91ee47f7629507ad1acf96ee327", + "symbol": "ZUZU", + "decimals": 18, + "name": "ZUZU", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x85f41e668499c91ee47f7629507ad1acf96ee327.png", + "aggregators": ["PancakeCoinMarketCap", "Rubic", "Rango"], + "occurrences": 3 + }, + "0xf625069dce62df95b4910f83446954b871f0fc4f": { + "address": "0xf625069dce62df95b4910f83446954b871f0fc4f", + "symbol": "AMT", + "decimals": 18, + "name": "Amazy Move Token", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xf625069dce62df95b4910f83446954b871f0fc4f.png", + "aggregators": ["PancakeCoinMarketCap", "Socket", "Rubic"], + "occurrences": 3 + }, + "0xa9ea4b786ee5b7a733c035564bfd9341a4c9fc1e": { + "address": "0xa9ea4b786ee5b7a733c035564bfd9341a4c9fc1e", + "symbol": "APE", + "decimals": 18, + "name": "APEcoin", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xa9ea4b786ee5b7a733c035564bfd9341a4c9fc1e.png", + "aggregators": ["PancakeCoinMarketCap", "Socket", "Rubic"], + "occurrences": 3 + }, + "0x0bc89aa98ad94e6798ec822d0814d934ccd0c0ce": { + "address": "0x0bc89aa98ad94e6798ec822d0814d934ccd0c0ce", + "symbol": "BATH", + "decimals": 18, + "name": "Battle Hero", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x0bc89aa98ad94e6798ec822d0814d934ccd0c0ce.png", + "aggregators": ["PancakeExtended", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x667bebff5cda3c4a460b514ab478da0a8cf80910": { + "address": "0x667bebff5cda3c4a460b514ab478da0a8cf80910", + "symbol": "BEST", + "decimals": 18, + "name": "Bitcoin And Ethereum Standard Token", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x667bebff5cda3c4a460b514ab478da0a8cf80910.png", + "aggregators": ["PancakeCoinMarketCap", "Socket", "Rubic"], + "occurrences": 3 + }, + "0x0aec1e4ce3cd3ccee64ff1a2ee47770fd2b0d8d3": { + "address": "0x0aec1e4ce3cd3ccee64ff1a2ee47770fd2b0d8d3", + "symbol": "CAPY", + "decimals": 18, + "name": "Capybara Coin", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x0aec1e4ce3cd3ccee64ff1a2ee47770fd2b0d8d3.png", + "aggregators": ["PancakeCoinMarketCap", "Socket", "Rubic"], + "occurrences": 3 + }, + "0x00f9928315196cdfbee0205520a8ebe60d9172f0": { + "address": "0x00f9928315196cdfbee0205520a8ebe60d9172f0", + "symbol": "DEVE", + "decimals": 18, + "name": "Develocity", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x00f9928315196cdfbee0205520a8ebe60d9172f0.png", + "aggregators": ["PancakeCoinMarketCap", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x44a21b3577924dcd2e9c81a3347d204c36a55466": { + "address": "0x44a21b3577924dcd2e9c81a3347d204c36a55466", + "symbol": "EGO", + "decimals": 18, + "name": "Paysenger EGO", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x44a21b3577924dcd2e9c81a3347d204c36a55466.png", + "aggregators": ["PancakeExtended", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x4f39c3319188a723003670c3f9b9e7ef991e52f3": { + "address": "0x4f39c3319188a723003670c3f9b9e7ef991e52f3", + "symbol": "FIGHT", + "decimals": 18, + "name": "FIGHT", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x4f39c3319188a723003670c3f9b9e7ef991e52f3.png", + "aggregators": ["PancakeExtended", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x4aadad81487c3fadd9f162b851e6a61b729200cb": { + "address": "0x4aadad81487c3fadd9f162b851e6a61b729200cb", + "symbol": "FLOKI", + "decimals": 18, + "name": "Shiba Floki Inu", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x4aadad81487c3fadd9f162b851e6a61b729200cb.png", + "aggregators": ["PancakeCoinMarketCap", "Socket", "Rubic"], + "occurrences": 3 + }, + "0x0965d7717068ff4f8f302556316f7b8e8661e485": { + "address": "0x0965d7717068ff4f8f302556316f7b8e8661e485", + "symbol": "GEC", + "decimals": 9, + "name": "Green Energy Coin - CNES", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x0965d7717068ff4f8f302556316f7b8e8661e485.png", + "aggregators": ["PancakeCoinMarketCap", "Socket", "Rubic"], + "occurrences": 3 + }, + "0xb0f2939a1c0e43683e5954c9fe142f7df9f8d967": { + "address": "0xb0f2939a1c0e43683e5954c9fe142f7df9f8d967", + "symbol": "GEN", + "decimals": 18, + "name": "Gen Token", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xb0f2939a1c0e43683e5954c9fe142f7df9f8d967.png", + "aggregators": ["PancakeCoinMarketCap", "Socket", "Rubic"], + "occurrences": 3 + }, + "0x639fc0c006bd7050e2c359295b41a79cb28694ba": { + "address": "0x639fc0c006bd7050e2c359295b41a79cb28694ba", + "symbol": "GSC", + "decimals": 18, + "name": "Gunstar Metaverse Currency", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x639fc0c006bd7050e2c359295b41a79cb28694ba.png", + "aggregators": ["PancakeCoinMarketCap", "Socket", "Rubic"], + "occurrences": 3 + }, + "0x7edc0ec89f987ecd85617b891c44fe462a325869": { + "address": "0x7edc0ec89f987ecd85617b891c44fe462a325869", + "symbol": "GST", + "decimals": 18, + "name": "Gunstar Metaverse", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x7edc0ec89f987ecd85617b891c44fe462a325869.png", + "aggregators": ["PancakeCoinMarketCap", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x5659bc175f83a609f0ff38d7e2b15533e7d14406": { + "address": "0x5659bc175f83a609f0ff38d7e2b15533e7d14406", + "symbol": "JOE", + "decimals": 9, + "name": "Joe Coin", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x5659bc175f83a609f0ff38d7e2b15533e7d14406.png", + "aggregators": ["PancakeCoinMarketCap", "Socket", "Rubic"], + "occurrences": 3 + }, + "0x4e7ae924fd9a5d60b56be486b2900efe0c6a9ca7": { + "address": "0x4e7ae924fd9a5d60b56be486b2900efe0c6a9ca7", + "symbol": "LOT", + "decimals": 9, + "name": "Lottery Token", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x4e7ae924fd9a5d60b56be486b2900efe0c6a9ca7.png", + "aggregators": ["PancakeCoinMarketCap", "Socket", "Rubic"], + "occurrences": 3 + }, + "0x668db7aa38eac6b40c9d13dbe61361dc4c4611d1": { + "address": "0x668db7aa38eac6b40c9d13dbe61361dc4c4611d1", + "symbol": "MDT", + "decimals": 18, + "name": "Measurable Data Token", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x668db7aa38eac6b40c9d13dbe61361dc4c4611d1.png", + "aggregators": ["PancakeCoinMarketCap", "Socket", "Rubic"], + "occurrences": 3 + }, + "0x994517e000aa3f117e7ad61b0e2336c76b4fd94a": { + "address": "0x994517e000aa3f117e7ad61b0e2336c76b4fd94a", + "symbol": "MTDR", + "decimals": 18, + "name": "Matador Token", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x994517e000aa3f117e7ad61b0e2336c76b4fd94a.png", + "aggregators": ["PancakeCoinMarketCap", "Socket", "Rubic"], + "occurrences": 3 + }, + "0x8ff07f92f4f432f6874a023e9bc49093a35dd726": { + "address": "0x8ff07f92f4f432f6874a023e9bc49093a35dd726", + "symbol": "NEXBOX", + "decimals": 9, + "name": "NexBox", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x8ff07f92f4f432f6874a023e9bc49093a35dd726.png", + "aggregators": ["PancakeCoinMarketCap", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x1ba8c21c623c843cd4c60438d70e7ad50f363fbb": { + "address": "0x1ba8c21c623c843cd4c60438d70e7ad50f363fbb", + "symbol": "SACT", + "decimals": 18, + "name": "srnArtGallery", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x1ba8c21c623c843cd4c60438d70e7ad50f363fbb.png", + "aggregators": ["PancakeCoinMarketCap", "Socket", "Rubic"], + "occurrences": 3 + }, + "0x46f275321107d7c49cf80216371abf1a1599c36f": { + "address": "0x46f275321107d7c49cf80216371abf1a1599c36f", + "symbol": "TGDAO", + "decimals": 18, + "name": "TGDAO", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x46f275321107d7c49cf80216371abf1a1599c36f.png", + "aggregators": ["PancakeCoinMarketCap", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x05ad6e30a855be07afa57e08a4f30d00810a402e": { + "address": "0x05ad6e30a855be07afa57e08a4f30d00810a402e", + "symbol": "TINC", + "decimals": 18, + "name": "Tiny Coin", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x05ad6e30a855be07afa57e08a4f30d00810a402e.png", + "aggregators": ["PancakeExtended", "Rubic", "Rango"], + "occurrences": 3 + }, + "0xd2ddfba7bb12f6e70c2aab6b6bf9edaef42ed22f": { + "address": "0xd2ddfba7bb12f6e70c2aab6b6bf9edaef42ed22f", + "symbol": "UBU", + "decimals": 18, + "name": "UBUToken", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xd2ddfba7bb12f6e70c2aab6b6bf9edaef42ed22f.png", + "aggregators": ["PancakeCoinMarketCap", "Socket", "Rubic"], + "occurrences": 3 + }, + "0xfdd2374be7ae7a71138b9f6b93d9ef034a49edb6": { + "address": "0xfdd2374be7ae7a71138b9f6b93d9ef034a49edb6", + "symbol": "VRGW", + "decimals": 18, + "name": "Virtual Reality Game World", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xfdd2374be7ae7a71138b9f6b93d9ef034a49edb6.png", + "aggregators": ["PancakeCoinMarketCap", "Socket", "Rubic"], + "occurrences": 3 + }, + "0xa75d9ca2a0a1d547409d82e1b06618ec284a2ced": { + "address": "0xa75d9ca2a0a1d547409d82e1b06618ec284a2ced", + "symbol": "WMX", + "decimals": 18, + "name": "Wombex Token", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xa75d9ca2a0a1d547409d82e1b06618ec284a2ced.png", + "aggregators": ["PancakeExtended", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x2c44b726adf1963ca47af88b284c06f30380fc78": { + "address": "0x2c44b726adf1963ca47af88b284c06f30380fc78", + "symbol": "PEOPLE", + "decimals": 18, + "name": "ConstitutionDAO", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x2c44b726adf1963ca47af88b284c06f30380fc78.png", + "aggregators": ["PancakeExtended", "Socket", "Rubic"], + "occurrences": 3 + }, + "0x5867cbf2a3fa758c063e8a2deeaf0de8d71c3ef4": { + "address": "0x5867cbf2a3fa758c063e8a2deeaf0de8d71c3ef4", + "symbol": "BUTTER", + "decimals": 18, + "name": "BreadnButter", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x5867cbf2a3fa758c063e8a2deeaf0de8d71c3ef4.png", + "aggregators": ["PancakeExtended", "Socket", "Rango"], + "occurrences": 3 + }, + "0xecf2bcb2342d8157d4fb4f4bdc1edf74fbf759b3": { + "address": "0xecf2bcb2342d8157d4fb4f4bdc1edf74fbf759b3", + "symbol": "MLISTA", + "decimals": 18, + "name": "mLista Token", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xecf2bcb2342d8157d4fb4f4bdc1edf74fbf759b3.png", + "aggregators": ["PancakeExtended", "LiFi", "Rango"], + "occurrences": 3 + }, + "0xdb6f1f098b55e36b036603c8e54663a8d907d6e1": { + "address": "0xdb6f1f098b55e36b036603c8e54663a8d907d6e1", + "symbol": "BEE", + "decimals": 18, + "name": "BEE", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xdb6f1f098b55e36b036603c8e54663a8d907d6e1.png", + "aggregators": ["PancakeExtended", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x308f4f8979285416d21876843ee67e79b086fa3a": { + "address": "0x308f4f8979285416d21876843ee67e79b086fa3a", + "symbol": "DESCI", + "decimals": 18, + "name": "Descipher Fund", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x308f4f8979285416d21876843ee67e79b086fa3a.png", + "aggregators": ["PancakeExtended", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x647a50540f5a1058b206f5a3eb17f56f29127f53": { + "address": "0x647a50540f5a1058b206f5a3eb17f56f29127f53", + "symbol": "SOLVBTC.DLP", + "decimals": 18, + "name": "SolvBTC DEX LP", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x647a50540f5a1058b206f5a3eb17f56f29127f53.png", + "aggregators": ["PancakeExtended", "LiFi", "Rango"], + "occurrences": 3 + }, + "0xa22159faca8bf5c57a48888a2d4ddafc88e4ddeb": { + "address": "0xa22159faca8bf5c57a48888a2d4ddafc88e4ddeb", + "symbol": "AIO", + "decimals": 18, + "name": "AIO", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xa22159faca8bf5c57a48888a2d4ddafc88e4ddeb.png", + "aggregators": ["PancakeExtended", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x79f294ae9c9257c1a8070fd8ed66bace24bc39d2": { + "address": "0x79f294ae9c9257c1a8070fd8ed66bace24bc39d2", + "symbol": "BIG", + "decimals": 18, + "name": "BIGCOUSIN", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x79f294ae9c9257c1a8070fd8ed66bace24bc39d2.png", + "aggregators": ["PancakeExtended", "LiFi", "Rango"], + "occurrences": 3 + }, + "0xf324791c3a08cc8cd9a3d77ddc4681276bdf4444": { + "address": "0xf324791c3a08cc8cd9a3d77ddc4681276bdf4444", + "symbol": "UNIART", + "decimals": 18, + "name": "UNIART", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xf324791c3a08cc8cd9a3d77ddc4681276bdf4444.png", + "aggregators": ["PancakeExtended", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x31d0e332ccef98b583e40e0cefbb7502c9a6b3f8": { + "address": "0x31d0e332ccef98b583e40e0cefbb7502c9a6b3f8", + "symbol": "NYM", + "decimals": 6, + "name": "NYM", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x31d0e332ccef98b583e40e0cefbb7502c9a6b3f8.png", + "aggregators": ["PancakeExtended", "LiFi", "Rango"], + "occurrences": 3 + }, + "0x4a61e3217d48b6361b87f598256a8ef71ac913f7": { + "address": "0x4a61e3217d48b6361b87f598256a8ef71ac913f7", + "symbol": "RWAL", + "decimals": 18, + "name": "RWAL", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x4a61e3217d48b6361b87f598256a8ef71ac913f7.png", + "aggregators": ["PancakeExtended", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x7997fc068fc3803dc35f0ae99ab61ba0b272165e": { + "address": "0x7997fc068fc3803dc35f0ae99ab61ba0b272165e", + "symbol": "WABA", + "decimals": 18, + "name": "WABA Token", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x7997fc068fc3803dc35f0ae99ab61ba0b272165e.png", + "aggregators": ["PancakeExtended", "LiFi", "Rango"], + "occurrences": 3 + }, + "0xd4058218632112de109846a2952be102d0330ab3": { + "address": "0xd4058218632112de109846a2952be102d0330ab3", + "symbol": "XNAP", + "decimals": 8, + "name": "SNAPX", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xd4058218632112de109846a2952be102d0330ab3.png", + "aggregators": ["PancakeExtended", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x8410fea2dd13c1798977ff4d55a9e1835f54f216": { + "address": "0x8410fea2dd13c1798977ff4d55a9e1835f54f216", + "symbol": "PIGGY", + "decimals": 18, + "name": "Piggycell", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x8410fea2dd13c1798977ff4d55a9e1835f54f216.png", + "aggregators": ["PancakeExtended", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x1775504c5873e179ea2f8abfce3861ec74d159bc": { + "address": "0x1775504c5873e179ea2f8abfce3861ec74d159bc", + "symbol": "CASH+", + "decimals": 18, + "name": "CashPlus", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x1775504c5873e179ea2f8abfce3861ec74d159bc.png", + "aggregators": ["PancakeExtended", "LiFi", "Rango"], + "occurrences": 3 + }, + "0x8105743e8a19c915a604d7d9e7aa3a060a4c2c32": { + "address": "0x8105743e8a19c915a604d7d9e7aa3a060a4c2c32", + "symbol": "ARTX", + "decimals": 18, + "name": "Ultiland", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x8105743e8a19c915a604d7d9e7aa3a060a4c2c32.png", + "aggregators": ["PancakeExtended", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x76cc9e532bb6803efc3d7766ac16a884a015951f": { + "address": "0x76cc9e532bb6803efc3d7766ac16a884a015951f", + "symbol": "$AIAV", + "decimals": 18, + "name": "AI AVatar", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x76cc9e532bb6803efc3d7766ac16a884a015951f.png", + "aggregators": ["PancakeExtended", "Rubic", "Rango"], + "occurrences": 3 + }, + "0xf9c6e80e9a5807a1214a79449009b48104f94444": { + "address": "0xf9c6e80e9a5807a1214a79449009b48104f94444", + "symbol": "黑马", + "decimals": 18, + "name": "黑马", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xf9c6e80e9a5807a1214a79449009b48104f94444.png", + "aggregators": ["PancakeExtended", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x1f1a06ec00c0b4505526fb928ad6a56e6e888888": { + "address": "0x1f1a06ec00c0b4505526fb928ad6a56e6e888888", + "symbol": "DEVAI", + "decimals": 18, + "name": "ClawDEV", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x1f1a06ec00c0b4505526fb928ad6a56e6e888888.png", + "aggregators": ["PancakeExtended", "LiFi", "Rango"], + "occurrences": 3 + }, + "0x7d28276933d6aa0ef1513f8b5e18dc492befefea": { + "address": "0x7d28276933d6aa0ef1513f8b5e18dc492befefea", + "symbol": "MBC", + "decimals": 18, + "name": "Mining Base Coin", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x7d28276933d6aa0ef1513f8b5e18dc492befefea.png", + "aggregators": ["Metamask", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x5ca718e2c0f2e873b8de38b02ad0497e8ac38ecb": { + "address": "0x5ca718e2c0f2e873b8de38b02ad0497e8ac38ecb", + "symbol": "C-DAO", + "decimals": 18, + "name": "Cyber-DAO", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x5ca718e2c0f2e873b8de38b02ad0497e8ac38ecb.png", + "aggregators": ["LiFi", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x13616f44ba82d63c8c0dc3ff843d36a8ec1c05a9": { + "address": "0x13616f44ba82d63c8c0dc3ff843d36a8ec1c05a9", + "symbol": "AVA", + "decimals": 18, + "name": "Travala.com Token", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x13616f44ba82d63c8c0dc3ff843d36a8ec1c05a9.png", + "aggregators": ["Socket", "Rubic", "Rango", "BinanceDex"], + "occurrences": 4 + }, + "0xd9e90df21f4229249e8841580cde7048bf935710": { + "address": "0xd9e90df21f4229249e8841580cde7048bf935710", + "symbol": "SHIELD", + "decimals": 18, + "name": "Shield protocol", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xd9e90df21f4229249e8841580cde7048bf935710.png", + "aggregators": ["Rubic", "Rango", "Sonarwatch"], + "occurrences": 3 + }, + "0x4ecec618ce8eeb94d99f970f0d9b2fd031986fd5": { + "address": "0x4ecec618ce8eeb94d99f970f0d9b2fd031986fd5", + "symbol": "BNOM", + "decimals": 9, + "name": "BitNomad", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x4ecec618ce8eeb94d99f970f0d9b2fd031986fd5.png", + "aggregators": ["Rubic", "Rango", "Sonarwatch"], + "occurrences": 3 + }, + "0x554b5daea72b2e2185147374954cb4721e20f4e1": { + "address": "0x554b5daea72b2e2185147374954cb4721e20f4e1", + "symbol": "BROC", + "decimals": 18, + "name": "Broccoli", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x554b5daea72b2e2185147374954cb4721e20f4e1.png", + "aggregators": ["Rubic", "Rango", "Sonarwatch"], + "occurrences": 3 + }, + "0xc1f0768587dc889e494c171b155c60b4e9a13f08": { + "address": "0xc1f0768587dc889e494c171b155c60b4e9a13f08", + "symbol": "AIG", + "decimals": 18, + "name": "A.I Genesis", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xc1f0768587dc889e494c171b155c60b4e9a13f08.png", + "aggregators": ["Rubic", "Rango", "Sonarwatch"], + "occurrences": 3 + }, + "0x45c1e431e255810824a508dcb4ff1f82c8a4662e": { + "address": "0x45c1e431e255810824a508dcb4ff1f82c8a4662e", + "symbol": "ASIX", + "decimals": 18, + "name": "ASIX", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x45c1e431e255810824a508dcb4ff1f82c8a4662e.png", + "aggregators": ["Rubic", "Rango", "Sonarwatch"], + "occurrences": 3 + }, + "0xba0552504704e1b2bcc98169cbd025bd37f87532": { + "address": "0xba0552504704e1b2bcc98169cbd025bd37f87532", + "symbol": "DUMP", + "decimals": 18, + "name": "Dumpling", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xba0552504704e1b2bcc98169cbd025bd37f87532.png", + "aggregators": ["Rubic", "Rango", "Sonarwatch"], + "occurrences": 3 + }, + "0x355758684251605af26dbec0fa672af174c384ab": { + "address": "0x355758684251605af26dbec0fa672af174c384ab", + "symbol": "DEGENT", + "decimals": 18, + "name": "Degent", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x355758684251605af26dbec0fa672af174c384ab.png", + "aggregators": ["Rubic", "Rango", "Sonarwatch"], + "occurrences": 3 + }, + "0xe1b8f4053de96ab94513864f409ac72d752a3703": { + "address": "0xe1b8f4053de96ab94513864f409ac72d752a3703", + "symbol": "FTPXBT", + "decimals": 18, + "name": "FOR THE PEOPLE XBT", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xe1b8f4053de96ab94513864f409ac72d752a3703.png", + "aggregators": ["Rubic", "Rango", "Sonarwatch"], + "occurrences": 3 + }, + "0x18ebb8a30dd304c306b5296518fcb0fd31372198": { + "address": "0x18ebb8a30dd304c306b5296518fcb0fd31372198", + "symbol": "BOOK", + "decimals": 18, + "name": "Bscbook", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x18ebb8a30dd304c306b5296518fcb0fd31372198.png", + "aggregators": ["Rubic", "Rango", "Sonarwatch"], + "occurrences": 3 + }, + "0xdfa7e9c060dc5292c881eb48cfe26b27aef5f0d9": { + "address": "0xdfa7e9c060dc5292c881eb48cfe26b27aef5f0d9", + "symbol": "BNBGPT", + "decimals": 18, + "name": "BNBGPT", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xdfa7e9c060dc5292c881eb48cfe26b27aef5f0d9.png", + "aggregators": ["Rubic", "Rango", "Sonarwatch"], + "occurrences": 3 + }, + "0x9804021fab007caf29c8d75e3becacec7860de30": { + "address": "0x9804021fab007caf29c8d75e3becacec7860de30", + "symbol": "EYE", + "decimals": 18, + "name": "THE EYE", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x9804021fab007caf29c8d75e3becacec7860de30.png", + "aggregators": ["Rubic", "Rango", "Sonarwatch"], + "occurrences": 3 + }, + "0x0781552e3c597b14e146b8589f322a751e90e904": { + "address": "0x0781552e3c597b14e146b8589f322a751e90e904", + "symbol": "FUXI", + "decimals": 18, + "name": "Fuxi Dragon", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x0781552e3c597b14e146b8589f322a751e90e904.png", + "aggregators": ["Rubic", "Rango", "Sonarwatch"], + "occurrences": 3 + }, + "0xaa52167bd14b1b22c74a80390469f796f1f82632": { + "address": "0xaa52167bd14b1b22c74a80390469f796f1f82632", + "symbol": "GRD", + "decimals": 18, + "name": "Grade", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xaa52167bd14b1b22c74a80390469f796f1f82632.png", + "aggregators": ["Rubic", "Rango", "Sonarwatch"], + "occurrences": 3 + }, + "0x00f2b1d536485f3493fe7609249128027951d87e": { + "address": "0x00f2b1d536485f3493fe7609249128027951d87e", + "symbol": "GROKAI", + "decimals": 9, + "name": "Grok Ai", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x00f2b1d536485f3493fe7609249128027951d87e.png", + "aggregators": ["Rubic", "Rango", "Sonarwatch"], + "occurrences": 3 + }, + "0xa0600d65366e16a3c27faecbb110eb2e150e48e1": { + "address": "0xa0600d65366e16a3c27faecbb110eb2e150e48e1", + "symbol": "INSN", + "decimals": 18, + "name": "Industry Sonic", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xa0600d65366e16a3c27faecbb110eb2e150e48e1.png", + "aggregators": ["Rubic", "Rango", "Sonarwatch"], + "occurrences": 3 + }, + "0xb00052f9b6df3c88c56451d54799c0848e0e3778": { + "address": "0xb00052f9b6df3c88c56451d54799c0848e0e3778", + "symbol": "IVY", + "decimals": 6, + "name": "Ivy Live", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xb00052f9b6df3c88c56451d54799c0848e0e3778.png", + "aggregators": ["Rubic", "Rango", "Sonarwatch"], + "occurrences": 3 + }, + "0x700735317e1af4687c17f5c30e11a74778395922": { + "address": "0x700735317e1af4687c17f5c30e11a74778395922", + "symbol": "MCC", + "decimals": 18, + "name": "MeshChain Coin", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x700735317e1af4687c17f5c30e11a74778395922.png", + "aggregators": ["Rubic", "Rango", "Sonarwatch"], + "occurrences": 3 + }, + "0xfe7364b31c9a366407986d0cbdfa8a599757dda5": { + "address": "0xfe7364b31c9a366407986d0cbdfa8a599757dda5", + "symbol": "NIMO", + "decimals": 18, + "name": "NimoAI", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xfe7364b31c9a366407986d0cbdfa8a599757dda5.png", + "aggregators": ["Rubic", "Rango", "Sonarwatch"], + "occurrences": 3 + }, + "0x2bd236ad144753bd5839d82c46ee2c2225b9e0c0": { + "address": "0x2bd236ad144753bd5839d82c46ee2c2225b9e0c0", + "symbol": "TSM", + "decimals": 18, + "name": "Tusima Network", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x2bd236ad144753bd5839d82c46ee2c2225b9e0c0.png", + "aggregators": ["Rubic", "Rango", "Sonarwatch"], + "occurrences": 3 + }, + "0x9cd3ffb31c0bae5d0771ef48e735dc1ca2333275": { + "address": "0x9cd3ffb31c0bae5d0771ef48e735dc1ca2333275", + "symbol": "UNI2", + "decimals": 18, + "name": "Uni2token", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x9cd3ffb31c0bae5d0771ef48e735dc1ca2333275.png", + "aggregators": ["Rubic", "Rango", "Sonarwatch"], + "occurrences": 3 + }, + "0xea40ba42ee2e35f36eb63770f23a96ec47e14091": { + "address": "0xea40ba42ee2e35f36eb63770f23a96ec47e14091", + "symbol": "VERB", + "decimals": 18, + "name": "Verb Ai", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xea40ba42ee2e35f36eb63770f23a96ec47e14091.png", + "aggregators": ["Rubic", "Rango", "Sonarwatch"], + "occurrences": 3 + }, + "0x0fc036cfd300519170f90b21b92a4349d2dabbae": { + "address": "0x0fc036cfd300519170f90b21b92a4349d2dabbae", + "symbol": "TNT", + "decimals": 18, + "name": "TrinityPad", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x0fc036cfd300519170f90b21b92a4349d2dabbae.png", + "aggregators": ["Rubic", "Rango", "Sonarwatch"], + "occurrences": 3 + }, + "0x6aa6eec5ba2e7ab3ae7d9807c7a13c1fecf55da7": { + "address": "0x6aa6eec5ba2e7ab3ae7d9807c7a13c1fecf55da7", + "symbol": "WLSC", + "decimals": 18, + "name": "Westland Smart City", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x6aa6eec5ba2e7ab3ae7d9807c7a13c1fecf55da7.png", + "aggregators": ["Rubic", "Rango", "Sonarwatch"], + "occurrences": 3 + }, + "0x7ed9054c48088bb8cfc5c5fbc32775b9455a13f7": { + "address": "0x7ed9054c48088bb8cfc5c5fbc32775b9455a13f7", + "symbol": "WEB3D", + "decimals": 18, + "name": "WEB3 DECISION", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x7ed9054c48088bb8cfc5c5fbc32775b9455a13f7.png", + "aggregators": ["Rubic", "Rango", "Sonarwatch"], + "occurrences": 3 + }, + "0xdaecc7ddd6df9c7840018d4d4fdf9599e101481c": { + "address": "0xdaecc7ddd6df9c7840018d4d4fdf9599e101481c", + "symbol": "XHUNT", + "decimals": 18, + "name": "XHUNT", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xdaecc7ddd6df9c7840018d4d4fdf9599e101481c.png", + "aggregators": ["Rubic", "Rango", "Sonarwatch"], + "occurrences": 3 + }, + "0x7212088a11b4d8f6fc90fbb3dfe793b45dd72323": { + "address": "0x7212088a11b4d8f6fc90fbb3dfe793b45dd72323", + "symbol": "BGME", + "decimals": 18, + "name": "Backed GameStop Corp", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x7212088a11b4d8f6fc90fbb3dfe793b45dd72323.png", + "aggregators": ["Rubic", "Rango", "Sonarwatch"], + "occurrences": 3 + }, + "0xa5b000d453143b357dba63f4ee83f2f6fda832b8": { + "address": "0xa5b000d453143b357dba63f4ee83f2f6fda832b8", + "symbol": "MET", + "decimals": 18, + "name": "MetYa", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xa5b000d453143b357dba63f4ee83f2f6fda832b8.png", + "aggregators": ["Rubic", "Rango", "Sonarwatch"], + "occurrences": 3 + }, + "0x2eaf707440974deba88f5b2425cadcc4821aa954": { + "address": "0x2eaf707440974deba88f5b2425cadcc4821aa954", + "symbol": "AZC", + "decimals": 18, + "name": "AZCoiner", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x2eaf707440974deba88f5b2425cadcc4821aa954.png", + "aggregators": ["Rubic", "Rango", "Sonarwatch"], + "occurrences": 3 + }, + "0x4341bb2200176f89eb90eac4fd6cfe958e206005": { + "address": "0x4341bb2200176f89eb90eac4fd6cfe958e206005", + "symbol": "EAFIN", + "decimals": 18, + "name": "Eafin", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x4341bb2200176f89eb90eac4fd6cfe958e206005.png", + "aggregators": ["Rubic", "Rango", "Sonarwatch"], + "occurrences": 3 + }, + "0x6d8058cdaa406ea4924d47b48f2ef5f18d35637c": { + "address": "0x6d8058cdaa406ea4924d47b48f2ef5f18d35637c", + "symbol": "GRAB", + "decimals": 18, + "name": "GRABWAY", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x6d8058cdaa406ea4924d47b48f2ef5f18d35637c.png", + "aggregators": ["Rubic", "Rango", "Sonarwatch"], + "occurrences": 3 + }, + "0x77ed4e6d616bcd773328d61cf2690225e4cca238": { + "address": "0x77ed4e6d616bcd773328d61cf2690225e4cca238", + "symbol": "MDOGE", + "decimals": 18, + "name": "Mars Doge", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x77ed4e6d616bcd773328d61cf2690225e4cca238.png", + "aggregators": ["Rubic", "Rango", "Sonarwatch"], + "occurrences": 3 + }, + "0x578a30d32cc99468ab27a0218dbe52f1b61b0f20": { + "address": "0x578a30d32cc99468ab27a0218dbe52f1b61b0f20", + "symbol": "NOEL", + "decimals": 18, + "name": "AskNoel", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x578a30d32cc99468ab27a0218dbe52f1b61b0f20.png", + "aggregators": ["Rubic", "Rango", "Sonarwatch"], + "occurrences": 3 + }, + "0x74a907ab83f77a79c6e5dfbe7e330d557704d74c": { + "address": "0x74a907ab83f77a79c6e5dfbe7e330d557704d74c", + "symbol": "KEKIUS", + "decimals": 9, + "name": "Kekius Maximus-BSC", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x74a907ab83f77a79c6e5dfbe7e330d557704d74c.png", + "aggregators": ["Rubic", "Rango", "Sonarwatch"], + "occurrences": 3 + }, + "0x095a7e0d6f3c9201fa867799e14221ea8b33562e": { + "address": "0x095a7e0d6f3c9201fa867799e14221ea8b33562e", + "symbol": "TOAD", + "decimals": 9, + "name": "TOAD", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x095a7e0d6f3c9201fa867799e14221ea8b33562e.png", + "aggregators": ["Rubic", "Rango", "Sonarwatch"], + "occurrences": 3 + }, + "0x910f42f204bd998fa271ca8aa07ce359c733b898": { + "address": "0x910f42f204bd998fa271ca8aa07ce359c733b898", + "symbol": "VZ", + "decimals": 18, + "name": "Vault Zero", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x910f42f204bd998fa271ca8aa07ce359c733b898.png", + "aggregators": ["Rubic", "Rango", "Sonarwatch"], + "occurrences": 3 + }, + "0x96be0fbbfb126063eb27bea4f34e096fa661fc9e": { + "address": "0x96be0fbbfb126063eb27bea4f34e096fa661fc9e", + "symbol": "HINAGI", + "decimals": 18, + "name": "Hinagi", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x96be0fbbfb126063eb27bea4f34e096fa661fc9e.png", + "aggregators": ["Rubic", "Rango", "Sonarwatch"], + "occurrences": 3 + }, + "0x1a72064361894f185782bdbb046bc2af94ab6abe": { + "address": "0x1a72064361894f185782bdbb046bc2af94ab6abe", + "symbol": "DUCK", + "decimals": 9, + "name": "DUCK", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x1a72064361894f185782bdbb046bc2af94ab6abe.png", + "aggregators": ["Rubic", "Rango", "Sonarwatch"], + "occurrences": 3 + }, + "0xf86ef0abe36c7aa4066408479acf37decdb739ec": { + "address": "0xf86ef0abe36c7aa4066408479acf37decdb739ec", + "symbol": "GMUBARAK", + "decimals": 18, + "name": "Ghibli Mubarak", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xf86ef0abe36c7aa4066408479acf37decdb739ec.png", + "aggregators": ["Rubic", "Rango", "Sonarwatch"], + "occurrences": 3 + }, + "0x39878e8a41af06d99e605c1e65eea755128f05f1": { + "address": "0x39878e8a41af06d99e605c1e65eea755128f05f1", + "symbol": "MANYU", + "decimals": 18, + "name": "MANYU", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x39878e8a41af06d99e605c1e65eea755128f05f1.png", + "aggregators": ["Rubic", "Rango", "Sonarwatch"], + "occurrences": 3 + }, + "0x2f2af9134f617bf4826848e0aac1e8865544dca2": { + "address": "0x2f2af9134f617bf4826848e0aac1e8865544dca2", + "symbol": "$SHIHTZU", + "decimals": 18, + "name": "SHIH TZU", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x2f2af9134f617bf4826848e0aac1e8865544dca2.png", + "aggregators": ["Rubic", "Rango", "Sonarwatch"], + "occurrences": 3 + }, + "0x753f185b24aee5e5b21e4218ff16afc9db7ae8a3": { + "address": "0x753f185b24aee5e5b21e4218ff16afc9db7ae8a3", + "symbol": "BPEPE", + "decimals": 9, + "name": "BPEPE", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x753f185b24aee5e5b21e4218ff16afc9db7ae8a3.png", + "aggregators": ["Rubic", "Rango", "Sonarwatch"], + "occurrences": 3 + }, + "0xda52b818c1348bfee27989e2a0df39224a3e52fa": { + "address": "0xda52b818c1348bfee27989e2a0df39224a3e52fa", + "symbol": "BLEND", + "decimals": 18, + "name": "Blend", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xda52b818c1348bfee27989e2a0df39224a3e52fa.png", + "aggregators": ["Rubic", "Rango", "Sonarwatch"], + "occurrences": 3 + }, + "0x46680028b950460f4f42446585051ddd232dfefe": { + "address": "0x46680028b950460f4f42446585051ddd232dfefe", + "symbol": "FROGO", + "decimals": 18, + "name": "Frogo The Lord", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x46680028b950460f4f42446585051ddd232dfefe.png", + "aggregators": ["Rubic", "Rango", "Sonarwatch"], + "occurrences": 3 + }, + "0x3dba4ae830896467a0a1c731686a2ad40cf76777": { + "address": "0x3dba4ae830896467a0a1c731686a2ad40cf76777", + "symbol": "ONI", + "decimals": 18, + "name": "ONI PROTOCOL", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x3dba4ae830896467a0a1c731686a2ad40cf76777.png", + "aggregators": ["Rubic", "Rango", "Sonarwatch"], + "occurrences": 3 + }, + "0xc468acf451922712cf45af9801df89578b0418b4": { + "address": "0xc468acf451922712cf45af9801df89578b0418b4", + "symbol": "DOODI", + "decimals": 18, + "name": "DOODiPALS", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xc468acf451922712cf45af9801df89578b0418b4.png", + "aggregators": ["Rubic", "Rango", "Sonarwatch"], + "occurrences": 3 + }, + "0x22fffab2e52c4a1dff83b7db7ef319698d48667f": { + "address": "0x22fffab2e52c4a1dff83b7db7ef319698d48667f", + "symbol": "BULL", + "decimals": 18, + "name": "Bull", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x22fffab2e52c4a1dff83b7db7ef319698d48667f.png", + "aggregators": ["Rubic", "Rango", "Sonarwatch"], + "occurrences": 3 + }, + "0x1a2457016bee420da8bb40be029b76119847731d": { + "address": "0x1a2457016bee420da8bb40be029b76119847731d", + "symbol": "$TRUST", + "decimals": 18, + "name": "Trust Inspect", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x1a2457016bee420da8bb40be029b76119847731d.png", + "aggregators": ["Rubic", "Rango", "Sonarwatch"], + "occurrences": 3 + }, + "0x5df0a19605b7b31716fc83dcfc6a79a36ef7a0f2": { + "address": "0x5df0a19605b7b31716fc83dcfc6a79a36ef7a0f2", + "symbol": "JOI", + "decimals": 18, + "name": "Joi", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x5df0a19605b7b31716fc83dcfc6a79a36ef7a0f2.png", + "aggregators": ["Rubic", "Rango", "Sonarwatch"], + "occurrences": 3 + }, + "0xd55578730450e9cc9554c47cc055d557e2af4444": { + "address": "0xd55578730450e9cc9554c47cc055d557e2af4444", + "symbol": "SHONG", + "decimals": 18, + "name": "Shong Inu", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xd55578730450e9cc9554c47cc055d557e2af4444.png", + "aggregators": ["Rubic", "Rango", "Sonarwatch"], + "occurrences": 3 + }, + "0x0abeaf56546a563824c96bb93d1c46f1d4cd11eb": { + "address": "0x0abeaf56546a563824c96bb93d1c46f1d4cd11eb", + "symbol": "BAKENEKO", + "decimals": 9, + "name": "BAKENEKO", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x0abeaf56546a563824c96bb93d1c46f1d4cd11eb.png", + "aggregators": ["Rubic", "Rango", "Sonarwatch"], + "occurrences": 3 + }, + "0x6961974d3bc7f26f3488c64330111c8ecfe75bf3": { + "address": "0x6961974d3bc7f26f3488c64330111c8ecfe75bf3", + "symbol": "GMX", + "decimals": 18, + "name": "GameXT", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x6961974d3bc7f26f3488c64330111c8ecfe75bf3.png", + "aggregators": ["Rubic", "Rango", "Sonarwatch"], + "occurrences": 3 + }, + "0x30117e4bc17d7b044194b76a38365c53b72f7d49": { + "address": "0x30117e4bc17d7b044194b76a38365c53b72f7d49", + "symbol": "GWEI", + "decimals": 18, + "name": "ETHGas", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x30117e4bc17d7b044194b76a38365c53b72f7d49.png", + "aggregators": [ + "PancakeExtended", + "LiFi", + "Socket", + "Rubic", + "Squid", + "Rango" + ], + "occurrences": 6 + }, + "0xe552fb52a4f19e44ef5a967632dbc320b0820639": { + "address": "0xe552fb52a4f19e44ef5a967632dbc320b0820639", + "symbol": "METIS", + "decimals": 18, + "name": "Metis Token", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xe552fb52a4f19e44ef5a967632dbc320b0820639.png", + "aggregators": [ + "PancakeExtended", + "LiFi", + "Socket", + "Rubic", + "Squid", + "Rango" + ], + "occurrences": 6 + }, + "0x0d35a2b85c5a63188d566d104bebf7c694334ee4": { + "address": "0x0d35a2b85c5a63188d566d104bebf7c694334ee4", + "symbol": "UPI", + "decimals": 18, + "name": "Pawtocol", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x0d35a2b85c5a63188d566d104bebf7c694334ee4.png", + "aggregators": [ + "PancakeCoinGecko", + "LiFi", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 6 + }, + "0xce24439f2d9c6a2289f741120fe202248b666666": { + "address": "0xce24439f2d9c6a2289f741120fe202248b666666", + "symbol": "U", + "decimals": 18, + "name": "United Stables", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xce24439f2d9c6a2289f741120fe202248b666666.png", + "aggregators": [ + "PancakeExtended", + "LiFi", + "Socket", + "Rubic", + "Squid", + "Rango" + ], + "occurrences": 6 + }, + "0x1346b618dc92810ec74163e4c27004c921d446a5": { + "address": "0x1346b618dc92810ec74163e4c27004c921d446a5", + "symbol": "SOLVBTC.BBN", + "decimals": 18, + "name": "Solv Protocol SolvBTC.BBN", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x1346b618dc92810ec74163e4c27004c921d446a5.png", + "aggregators": [ + "PancakeExtended", + "LiFi", + "Rubic", + "Squid", + "Rango", + "Sonarwatch" + ], + "occurrences": 6 + }, + "0x74ccbe53f77b08632ce0cb91d3a545bf6b8e0979": { + "address": "0x74ccbe53f77b08632ce0cb91d3a545bf6b8e0979", + "symbol": "BOMB", + "decimals": 18, + "name": "Fantom Bomb", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x74ccbe53f77b08632ce0cb91d3a545bf6b8e0979.png", + "aggregators": [ + "PancakeCoinMarketCap", + "LiFi", + "Rubic", + "Squid", + "Rango", + "Sonarwatch" + ], + "occurrences": 6 + }, + "0xfebfa339e44c28e2aa9e62ea1027c9cb4e378605": { + "address": "0xfebfa339e44c28e2aa9e62ea1027c9cb4e378605", + "symbol": "NPC", + "decimals": 18, + "name": "Non-Playable Coin", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xfebfa339e44c28e2aa9e62ea1027c9cb4e378605.png", + "aggregators": [ + "PancakeCoinGecko", + "Socket", + "Rubic", + "Squid", + "Rango", + "Sonarwatch" + ], + "occurrences": 6 + }, + "0xc96de26018a54d51c097160568752c4e3bd6c364": { + "address": "0xc96de26018a54d51c097160568752c4e3bd6c364", + "symbol": "FBTC", + "decimals": 8, + "name": "Function ƒBTC", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xc96de26018a54d51c097160568752c4e3bd6c364.png", + "aggregators": [ + "PancakeCoinGecko", + "LiFi", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 6 + }, + "0xa4335da338ec4c07c391fc1a9bf75f306adadc08": { + "address": "0xa4335da338ec4c07c391fc1a9bf75f306adadc08", + "symbol": "EUSD", + "decimals": 18, + "name": "ARYZE eUSD", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xa4335da338ec4c07c391fc1a9bf75f306adadc08.png", + "aggregators": [ + "PancakeCoinGecko", + "LiFi", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 6 + }, + "0xc7d8d35eba58a0935ff2d5a33df105dd9f071731": { + "address": "0xc7d8d35eba58a0935ff2d5a33df105dd9f071731", + "symbol": "HGET", + "decimals": 6, + "name": "Hedget", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xc7d8d35eba58a0935ff2d5a33df105dd9f071731.png", + "aggregators": [ + "PancakeExtended", + "LiFi", + "TrustWallet", + "Socket", + "Rubic", + "Rango" + ], + "occurrences": 6 + }, + "0x000008d2175f9aeaddb2430c26f8a6f73c5a0000": { + "address": "0x000008d2175f9aeaddb2430c26f8a6f73c5a0000", + "symbol": "UP", + "decimals": 18, + "name": "Unitas", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x000008d2175f9aeaddb2430c26f8a6f73c5a0000.png", + "aggregators": [ + "PancakeExtended", + "LiFi", + "Socket", + "Rubic", + "Rango" + ], + "occurrences": 5 + }, + "0x7c3b00cb3b40cc77d88329a58574e29cfa3cb9e2": { + "address": "0x7c3b00cb3b40cc77d88329a58574e29cfa3cb9e2", + "symbol": "MSS", + "decimals": 18, + "name": "MintStakeShare", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x7c3b00cb3b40cc77d88329a58574e29cfa3cb9e2.png", + "aggregators": [ + "CoinGecko", + "Rubic", + "Squid", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x51363f073b1e4920fda7aa9e9d84ba97ede1560e": { + "address": "0x51363f073b1e4920fda7aa9e9d84ba97ede1560e", + "symbol": "BOB", + "decimals": 18, + "name": "Build On BNB", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x51363f073b1e4920fda7aa9e9d84ba97ede1560e.png", + "aggregators": [ + "PancakeExtended", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x6cdd08de79231a1957f205a3fe5cf9dbf4b0c454": { + "address": "0x6cdd08de79231a1957f205a3fe5cf9dbf4b0c454", + "symbol": "BABYNEIRO", + "decimals": 9, + "name": "Baby Neiro", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x6cdd08de79231a1957f205a3fe5cf9dbf4b0c454.png", + "aggregators": [ + "PancakeCoinGecko", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0xb617fab6b94ed1fe6df3cad71e1dc997927a2a0e": { + "address": "0xb617fab6b94ed1fe6df3cad71e1dc997927a2a0e", + "symbol": "INCO", + "decimals": 18, + "name": "InfinitiCoin", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xb617fab6b94ed1fe6df3cad71e1dc997927a2a0e.png", + "aggregators": [ + "CoinGecko", + "1inch", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x64e4fea6e4f3637025c7bcd878e2b238b01f7d4e": { + "address": "0x64e4fea6e4f3637025c7bcd878e2b238b01f7d4e", + "symbol": "INSURANCE", + "decimals": 18, + "name": "INSURANCE", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x64e4fea6e4f3637025c7bcd878e2b238b01f7d4e.png", + "aggregators": [ + "CoinGecko", + "Rubic", + "Squid", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x36b2269fd151208a4bfc3dea503e0a6f2485fa78": { + "address": "0x36b2269fd151208a4bfc3dea503e0a6f2485fa78", + "symbol": "TUA", + "decimals": 18, + "name": "Atua AI", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x36b2269fd151208a4bfc3dea503e0a6f2485fa78.png", + "aggregators": [ + "CoinGecko", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0xdce40c14d5956f8b8ba912402ba73b4d4d599612": { + "address": "0xdce40c14d5956f8b8ba912402ba73b4d4d599612", + "symbol": "PZP", + "decimals": 18, + "name": "PlayZap", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xdce40c14d5956f8b8ba912402ba73b4d4d599612.png", + "aggregators": [ + "PancakeCoinGecko", + "LiFi", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x71e80e96af604afc23ca2aed4c1c7466db6dd0c4": { + "address": "0x71e80e96af604afc23ca2aed4c1c7466db6dd0c4", + "symbol": "BABYFLOKI", + "decimals": 7, + "name": "Baby Floki", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x71e80e96af604afc23ca2aed4c1c7466db6dd0c4.png", + "aggregators": [ + "PancakeCoinGecko", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x96e8d3a52dd950aacc8d1749932e1c14bc76e371": { + "address": "0x96e8d3a52dd950aacc8d1749932e1c14bc76e371", + "symbol": "WHALE", + "decimals": 18, + "name": "Whale", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x96e8d3a52dd950aacc8d1749932e1c14bc76e371.png", + "aggregators": [ + "CoinGecko", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x86bf362b3bcb067895481aa071a7364e5884232e": { + "address": "0x86bf362b3bcb067895481aa071a7364e5884232e", + "symbol": "ANDY", + "decimals": 9, + "name": "Andy", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x86bf362b3bcb067895481aa071a7364e5884232e.png", + "aggregators": [ + "CoinGecko", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0xd82109718fff521387bfed5424ead7e8a1cb9780": { + "address": "0xd82109718fff521387bfed5424ead7e8a1cb9780", + "symbol": "ONC", + "decimals": 18, + "name": "Oncology Network", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xd82109718fff521387bfed5424ead7e8a1cb9780.png", + "aggregators": [ + "CoinGecko", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x4f7ea8f6487a7007ca054f35c4a7b961f5b18961": { + "address": "0x4f7ea8f6487a7007ca054f35c4a7b961f5b18961", + "symbol": "CATS", + "decimals": 9, + "name": "GoldenCat", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x4f7ea8f6487a7007ca054f35c4a7b961f5b18961.png", + "aggregators": [ + "CoinGecko", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x949185d3be66775ea648f4a306740ea9eff9c567": { + "address": "0x949185d3be66775ea648f4a306740ea9eff9c567", + "symbol": "YEL", + "decimals": 18, + "name": "Yel.Finance", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x949185d3be66775ea648f4a306740ea9eff9c567.png", + "aggregators": [ + "PancakeCoinGecko", + "LiFi", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x8683ba2f8b0f69b2105f26f488bade1d3ab4dec8": { + "address": "0x8683ba2f8b0f69b2105f26f488bade1d3ab4dec8", + "symbol": "ALPH", + "decimals": 18, + "name": "Alephium", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x8683ba2f8b0f69b2105f26f488bade1d3ab4dec8.png", + "aggregators": [ + "PancakeExtended", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0xb04906e95ab5d797ada81508115611fee694c2b3": { + "address": "0xb04906e95ab5d797ada81508115611fee694c2b3", + "symbol": "USDCET", + "decimals": 6, + "name": "Bridged USD Coin (Wormhole Ethereum)", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xb04906e95ab5d797ada81508115611fee694c2b3.png", + "aggregators": [ + "PancakeCoinGecko", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0xbbcb0356bb9e6b3faa5cbf9e5f36185d53403ac9": { + "address": "0xbbcb0356bb9e6b3faa5cbf9e5f36185d53403ac9", + "symbol": "BCOIN", + "decimals": 18, + "name": "Backed Coinbase Global", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xbbcb0356bb9e6b3faa5cbf9e5f36185d53403ac9.png", + "aggregators": [ + "PancakeCoinGecko", + "LiFi", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x1e2c4fb7ede391d116e6b41cd0608260e8801d59": { + "address": "0x1e2c4fb7ede391d116e6b41cd0608260e8801d59", + "symbol": "BCSPX", + "decimals": 18, + "name": "Backed CSPX Core S&P 500", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x1e2c4fb7ede391d116e6b41cd0608260e8801d59.png", + "aggregators": [ + "PancakeCoinGecko", + "LiFi", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x758a3e0b1f842c9306b783f8a4078c6c8c03a270": { + "address": "0x758a3e0b1f842c9306b783f8a4078c6c8c03a270", + "symbol": "USD0", + "decimals": 18, + "name": "Usual USD", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x758a3e0b1f842c9306b783f8a4078c6c8c03a270.png", + "aggregators": [ + "CoinGecko", + "LiFi", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x45f55b46689402583073ff227b6ac20520052a24": { + "address": "0x45f55b46689402583073ff227b6ac20520052a24", + "symbol": "INX", + "decimals": 18, + "name": "Infinex", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x45f55b46689402583073ff227b6ac20520052a24.png", + "aggregators": ["PancakeExtended", "Socket", "Rubic", "Rango"], + "occurrences": 4 + }, + "0x3fcd741646a9790635b938cdb69af5df356cbaab": { + "address": "0x3fcd741646a9790635b938cdb69af5df356cbaab", + "symbol": "PALLON", + "decimals": 18, + "name": "abrdn Physical Palladium Shares ETF (Ondo Tokenized)", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x3fcd741646a9790635b938cdb69af5df356cbaab.png", + "aggregators": ["CoinGecko", "LiFi", "Rubic", "Rango", "Ondo"], + "occurrences": 5, + "rwaData": { + "market": { + "nextOpen": "2026-05-18T20:01:00.000Z", + "nextClose": "2026-05-18T19:59:00.000Z" + }, + "nextPause": { + "start": "2026-05-17T23:50:00.000Z", + "end": "2026-05-18T17:00:00.000Z" + }, + "ticker": "PALL", + "instrumentType": "stock" + } + }, + "0x02d608506ca0048d0d991a11f1e7fb8cad1e44f8": { + "address": "0x02d608506ca0048d0d991a11f1e7fb8cad1e44f8", + "symbol": "AALON", + "decimals": 18, + "name": "American Airlines Group (Ondo Tokenized)", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x02d608506ca0048d0d991a11f1e7fb8cad1e44f8.png", + "aggregators": ["CoinGecko", "LiFi", "Rubic", "Rango", "Ondo"], + "occurrences": 5, + "rwaData": { + "market": { + "nextOpen": "2026-05-18T20:01:00.000Z", + "nextClose": "2026-05-18T19:59:00.000Z" + }, + "nextPause": { + "start": null, + "end": null + }, + "ticker": "AAL", + "instrumentType": "stock" + } + }, + "0x52ad57a7ea642e99a892afc79e937b383f1b59e9": { + "address": "0x52ad57a7ea642e99a892afc79e937b383f1b59e9", + "symbol": "BMNRON", + "decimals": 18, + "name": "BitMine Immersion Technologies (Ondo Tokenized)", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x52ad57a7ea642e99a892afc79e937b383f1b59e9.png", + "aggregators": ["CoinGecko", "LiFi", "Rubic", "Rango", "Ondo"], + "occurrences": 5, + "rwaData": { + "market": { + "nextOpen": "2026-05-18T20:01:00.000Z", + "nextClose": "2026-05-18T19:59:00.000Z" + }, + "nextPause": { + "start": null, + "end": null + }, + "ticker": "BMNR", + "instrumentType": "stock" + } + }, + "0xec93fe7ff4b09ca3ccafbc4cc9615e62be412780": { + "address": "0xec93fe7ff4b09ca3ccafbc4cc9615e62be412780", + "symbol": "COPXON", + "decimals": 18, + "name": "Global X Copper Miners ETF (Ondo Tokenized)", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xec93fe7ff4b09ca3ccafbc4cc9615e62be412780.png", + "aggregators": ["CoinGecko", "LiFi", "Rubic", "Rango", "Ondo"], + "occurrences": 5, + "rwaData": { + "market": { + "nextOpen": "2026-05-18T20:01:00.000Z", + "nextClose": "2026-05-18T19:59:00.000Z" + }, + "nextPause": { + "start": null, + "end": null + }, + "ticker": "COPX", + "instrumentType": "stock" + } + }, + "0x4752ae8f910b25e64e4406eaad50c1b4e8de7e6d": { + "address": "0x4752ae8f910b25e64e4406eaad50c1b4e8de7e6d", + "symbol": "PLUGON", + "decimals": 18, + "name": "Plug Power (Ondo Tokenized)", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x4752ae8f910b25e64e4406eaad50c1b4e8de7e6d.png", + "aggregators": ["CoinGecko", "LiFi", "Rubic", "Rango", "Ondo"], + "occurrences": 5, + "rwaData": { + "market": { + "nextOpen": "2026-05-18T20:01:00.000Z", + "nextClose": "2026-05-18T19:59:00.000Z" + }, + "nextPause": { + "start": null, + "end": null + }, + "ticker": "PLUG", + "instrumentType": "stock" + } + }, + "0x17515b68378d86c38f394c666e79907da05dcba9": { + "address": "0x17515b68378d86c38f394c666e79907da05dcba9", + "symbol": "SQQQON", + "decimals": 18, + "name": "ProShares UltraPro Short QQQ (Ondo Tokenized)", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x17515b68378d86c38f394c666e79907da05dcba9.png", + "aggregators": ["CoinGecko", "LiFi", "Rubic", "Rango", "Ondo"], + "occurrences": 5, + "rwaData": { + "market": { + "nextOpen": "2026-05-18T20:01:00.000Z", + "nextClose": "2026-05-18T19:59:00.000Z" + }, + "nextPause": { + "start": null, + "end": null + }, + "ticker": "SQQQ", + "instrumentType": "stock" + } + }, + "0x94174e3d1335db402dd03a092f7aa7ac2cb32be4": { + "address": "0x94174e3d1335db402dd03a092f7aa7ac2cb32be4", + "symbol": "USOON", + "decimals": 18, + "name": "United States Oil Fund (Ondo Tokenized)", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x94174e3d1335db402dd03a092f7aa7ac2cb32be4.png", + "aggregators": ["CoinGecko", "LiFi", "Rubic", "Rango", "Ondo"], + "occurrences": 5, + "rwaData": { + "market": { + "nextOpen": "2026-05-18T20:01:00.000Z", + "nextClose": "2026-05-18T19:59:00.000Z" + }, + "nextPause": { + "start": null, + "end": null + }, + "ticker": "USO", + "instrumentType": "stock" + } + }, + "0xc16f47c4a7ed39372b9a0e3e2016cede9b4cb83a": { + "address": "0xc16f47c4a7ed39372b9a0e3e2016cede9b4cb83a", + "symbol": "REMXON", + "decimals": 18, + "name": "VanEck Rare Earth and Strategic Metals ETF (Ondo Tokenized)", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xc16f47c4a7ed39372b9a0e3e2016cede9b4cb83a.png", + "aggregators": ["CoinGecko", "LiFi", "Rubic", "Rango", "Ondo"], + "occurrences": 5, + "rwaData": { + "market": { + "nextOpen": "2026-05-19T13:31:00.000Z", + "nextClose": "2026-05-18T19:59:00.000Z" + }, + "nextPause": { + "start": null, + "end": null + }, + "ticker": "REMX", + "instrumentType": "stock" + } + }, + "0x65d84f0990b7394209d591380c2952c83d778aa3": { + "address": "0x65d84f0990b7394209d591380c2952c83d778aa3", + "symbol": "CEGON", + "decimals": 18, + "name": "Constellation Energy (Ondo Tokenized)", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x65d84f0990b7394209d591380c2952c83d778aa3.png", + "aggregators": ["CoinGecko", "LiFi", "Rubic", "Rango", "Ondo"], + "occurrences": 5, + "rwaData": { + "market": { + "nextOpen": "2026-05-18T20:01:00.000Z", + "nextClose": "2026-05-18T19:59:00.000Z" + }, + "nextPause": { + "start": null, + "end": null + }, + "ticker": "CEG", + "instrumentType": "stock" + } + }, + "0x71507068e98049cba81e9bbc8d901e4a2f4222eb": { + "address": "0x71507068e98049cba81e9bbc8d901e4a2f4222eb", + "symbol": "SOFION", + "decimals": 18, + "name": "SoFi Technologies (Ondo Tokenized)", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x71507068e98049cba81e9bbc8d901e4a2f4222eb.png", + "aggregators": ["CoinGecko", "LiFi", "Rubic", "Rango", "Ondo"], + "occurrences": 5, + "rwaData": { + "market": { + "nextOpen": "2026-05-18T20:01:00.000Z", + "nextClose": "2026-05-18T19:59:00.000Z" + }, + "nextPause": { + "start": null, + "end": null + }, + "ticker": "SOFI", + "instrumentType": "stock" + } + }, + "0x87acfa3fd7a6e0d48677d070644d76905c2bdc00": { + "address": "0x87acfa3fd7a6e0d48677d070644d76905c2bdc00", + "symbol": "SPACE", + "decimals": 18, + "name": "Spacecoin", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x87acfa3fd7a6e0d48677d070644d76905c2bdc00.png", + "aggregators": [ + "PancakeExtended", + "LiFi", + "Socket", + "Rubic", + "Rango" + ], + "occurrences": 5 + }, + "0xfbdf0366f800cc79d6663da26bc0bf21fb455aa6": { + "address": "0xfbdf0366f800cc79d6663da26bc0bf21fb455aa6", + "symbol": "AMGNON", + "decimals": 18, + "name": "Amgen (Ondo Tokenized)", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xfbdf0366f800cc79d6663da26bc0bf21fb455aa6.png", + "aggregators": ["CoinGecko", "LiFi", "Rubic", "Rango", "Ondo"], + "occurrences": 5, + "rwaData": { + "market": { + "nextOpen": "2026-05-18T20:01:00.000Z", + "nextClose": "2026-05-18T19:59:00.000Z" + }, + "nextPause": { + "start": null, + "end": null + }, + "ticker": "AMGN", + "instrumentType": "stock" + } + }, + "0xe6837794fbc6dd024733a1a31f86061296fa2752": { + "address": "0xe6837794fbc6dd024733a1a31f86061296fa2752", + "symbol": "CRWDON", + "decimals": 18, + "name": "CrowdStrike (Ondo Tokenized)", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xe6837794fbc6dd024733a1a31f86061296fa2752.png", + "aggregators": ["CoinGecko", "LiFi", "Rubic", "Rango", "Ondo"], + "occurrences": 5, + "rwaData": { + "market": { + "nextOpen": "2026-05-18T20:01:00.000Z", + "nextClose": "2026-05-18T19:59:00.000Z" + }, + "nextPause": { + "start": "2026-06-03T20:00:00.000Z", + "end": "2026-06-03T23:30:00.000Z" + }, + "ticker": "CRWD", + "instrumentType": "stock" + } + }, + "0xd85d4ce29b4ca361ff72ef0e53d6236e334c5db6": { + "address": "0xd85d4ce29b4ca361ff72ef0e53d6236e334c5db6", + "symbol": "ONDSON", + "decimals": 18, + "name": "Ondas Holdings (Ondo Tokenized)", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xd85d4ce29b4ca361ff72ef0e53d6236e334c5db6.png", + "aggregators": ["CoinGecko", "LiFi", "Rubic", "Rango", "Ondo"], + "occurrences": 5, + "rwaData": { + "market": { + "nextOpen": "2026-05-18T20:01:00.000Z", + "nextClose": "2026-05-18T19:59:00.000Z" + }, + "nextPause": { + "start": null, + "end": null + }, + "ticker": "ONDS", + "instrumentType": "stock" + } + }, + "0xf3e82ea164cb344b2b11bad4c24b0ea4f7ba4714": { + "address": "0xf3e82ea164cb344b2b11bad4c24b0ea4f7ba4714", + "symbol": "PDDON", + "decimals": 18, + "name": "PDD Holdings (Ondo Tokenized)", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xf3e82ea164cb344b2b11bad4c24b0ea4f7ba4714.png", + "aggregators": ["CoinGecko", "LiFi", "Rubic", "Rango", "Ondo"], + "occurrences": 5, + "rwaData": { + "market": { + "nextOpen": "2026-05-18T20:01:00.000Z", + "nextClose": "2026-05-18T19:59:00.000Z" + }, + "nextPause": { + "start": "2026-05-26T09:00:00.000Z", + "end": "2026-05-26T23:30:00.000Z" + }, + "ticker": "PDD", + "instrumentType": "stock" + } + }, + "0xed2a500eb2b66679e0bbd76e51a60049ae5f3271": { + "address": "0xed2a500eb2b66679e0bbd76e51a60049ae5f3271", + "symbol": "RGTION", + "decimals": 18, + "name": "Rigetti Computing (Ondo Tokenized)", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xed2a500eb2b66679e0bbd76e51a60049ae5f3271.png", + "aggregators": ["CoinGecko", "LiFi", "Rubic", "Rango", "Ondo"], + "occurrences": 5, + "rwaData": { + "market": { + "nextOpen": "2026-05-18T20:01:00.000Z", + "nextClose": "2026-05-18T19:59:00.000Z" + }, + "nextPause": { + "start": null, + "end": null + }, + "ticker": "RGTI", + "instrumentType": "stock" + } + }, + "0x277e1fa8704c5511fed7e30bc691f922aa30101b": { + "address": "0x277e1fa8704c5511fed7e30bc691f922aa30101b", + "symbol": "RIVNON", + "decimals": 18, + "name": "Rivian Automotive (Ondo Tokenized)", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x277e1fa8704c5511fed7e30bc691f922aa30101b.png", + "aggregators": ["CoinGecko", "LiFi", "Rubic", "Rango", "Ondo"], + "occurrences": 5, + "rwaData": { + "market": { + "nextOpen": "2026-05-18T20:01:00.000Z", + "nextClose": "2026-05-18T19:59:00.000Z" + }, + "nextPause": { + "start": null, + "end": null + }, + "ticker": "RIVN", + "instrumentType": "stock" + } + }, + "0xc0c6e4c6e70c6231b20979bda581a66f062a7967": { + "address": "0xc0c6e4c6e70c6231b20979bda581a66f062a7967", + "symbol": "ATRI", + "decimals": 0, + "name": "Atari", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xc0c6e4c6e70c6231b20979bda581a66f062a7967.png", + "aggregators": [ + "PancakeCoinMarketCap", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x91c62325f901ee29da8e521cfe68980332a4ca06": { + "address": "0x91c62325f901ee29da8e521cfe68980332a4ca06", + "symbol": "ACHRON", + "decimals": 18, + "name": "Archer Aviation (Ondo Tokenized)", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x91c62325f901ee29da8e521cfe68980332a4ca06.png", + "aggregators": ["CoinGecko", "LiFi", "Rubic", "Rango", "Ondo"], + "occurrences": 5, + "rwaData": { + "market": { + "nextOpen": "2026-05-18T20:01:00.000Z", + "nextClose": "2026-05-18T19:59:00.000Z" + }, + "nextPause": { + "start": null, + "end": null + }, + "ticker": "ACHR", + "instrumentType": "stock" + } + }, + "0x8fd70ee385f470c8d6fda2d93a4e49c849bac6a6": { + "address": "0x8fd70ee385f470c8d6fda2d93a4e49c849bac6a6", + "symbol": "IRENON", + "decimals": 18, + "name": "IREN (Ondo Tokenized)", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x8fd70ee385f470c8d6fda2d93a4e49c849bac6a6.png", + "aggregators": ["CoinGecko", "LiFi", "Rubic", "Rango", "Ondo"], + "occurrences": 5, + "rwaData": { + "market": { + "nextOpen": "2026-05-18T20:01:00.000Z", + "nextClose": "2026-05-18T19:59:00.000Z" + }, + "nextPause": { + "start": null, + "end": null + }, + "ticker": "IREN", + "instrumentType": "stock" + } + }, + "0xc008c5f579ec1450f20099c39f587547e27c7523": { + "address": "0xc008c5f579ec1450f20099c39f587547e27c7523", + "symbol": "SGOVON", + "decimals": 18, + "name": "iShares 0-3 Month Treasury Bond ETF (Ondo Tokenized)", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xc008c5f579ec1450f20099c39f587547e27c7523.png", + "aggregators": ["CoinGecko", "LiFi", "Rubic", "Rango", "Ondo"], + "occurrences": 5, + "rwaData": { + "market": { + "nextOpen": "2026-05-18T20:01:00.000Z", + "nextClose": "2026-05-18T19:59:00.000Z" + }, + "nextPause": { + "start": null, + "end": null + }, + "ticker": "SGOV", + "instrumentType": "stock" + } + }, + "0xfc263946439b0d802bf4c5a6fcd34e2885259f91": { + "address": "0xfc263946439b0d802bf4c5a6fcd34e2885259f91", + "symbol": "KLACON", + "decimals": 18, + "name": "KLA (Ondo Tokenized)", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xfc263946439b0d802bf4c5a6fcd34e2885259f91.png", + "aggregators": ["CoinGecko", "LiFi", "Rubic", "Rango", "Ondo"], + "occurrences": 5, + "rwaData": { + "market": { + "nextOpen": "2026-05-18T20:01:00.000Z", + "nextClose": "2026-05-18T19:59:00.000Z" + }, + "nextPause": { + "start": "2026-06-11T23:50:00.000Z", + "end": "2026-06-12T17:00:00.000Z" + }, + "ticker": "KLAC", + "instrumentType": "stock" + } + }, + "0xe9d43f7e6b2237e8873a7003b3f43c6b03160be5": { + "address": "0xe9d43f7e6b2237e8873a7003b3f43c6b03160be5", + "symbol": "NEEON", + "decimals": 18, + "name": "NextEra Energy (Ondo Tokenized)", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xe9d43f7e6b2237e8873a7003b3f43c6b03160be5.png", + "aggregators": ["CoinGecko", "LiFi", "Rubic", "Rango", "Ondo"], + "occurrences": 5, + "rwaData": { + "market": { + "nextOpen": "2026-05-19T13:31:00.000Z", + "nextClose": "2026-05-18T19:59:00.000Z" + }, + "nextPause": { + "start": null, + "end": null + }, + "ticker": "NEE", + "instrumentType": "stock" + } + }, + "0xaf6c03acf72355ce98d0741302b78870b376428c": { + "address": "0xaf6c03acf72355ce98d0741302b78870b376428c", + "symbol": "OKLOON", + "decimals": 18, + "name": "Oklo (Ondo Tokenized)", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xaf6c03acf72355ce98d0741302b78870b376428c.png", + "aggregators": ["CoinGecko", "LiFi", "Rubic", "Rango", "Ondo"], + "occurrences": 5, + "rwaData": { + "market": { + "nextOpen": "2026-05-18T20:01:00.000Z", + "nextClose": "2026-05-18T19:59:00.000Z" + }, + "nextPause": { + "start": null, + "end": null + }, + "ticker": "OKLO", + "instrumentType": "stock" + } + }, + "0xa09699fc0cbb1f85128450a0ff6a3c4d3a7e7b9b": { + "address": "0xa09699fc0cbb1f85128450a0ff6a3c4d3a7e7b9b", + "symbol": "OPENON", + "decimals": 18, + "name": "Opendoor Technologies (Ondo Tokenized)", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xa09699fc0cbb1f85128450a0ff6a3c4d3a7e7b9b.png", + "aggregators": ["CoinGecko", "LiFi", "Rubic", "Rango", "Ondo"], + "occurrences": 5, + "rwaData": { + "market": { + "nextOpen": "2026-05-19T13:31:00.000Z", + "nextClose": "2026-05-18T19:59:00.000Z" + }, + "nextPause": { + "start": null, + "end": null + }, + "ticker": "OPEN", + "instrumentType": "stock" + } + }, + "0xe42cfb20e00912409b77a602b5bdcff3c7acc5f4": { + "address": "0xe42cfb20e00912409b77a602b5bdcff3c7acc5f4", + "symbol": "TQQQON", + "decimals": 18, + "name": "ProShares UltraPro QQQ (Ondo Tokenized)", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xe42cfb20e00912409b77a602b5bdcff3c7acc5f4.png", + "aggregators": ["CoinGecko", "LiFi", "Rubic", "Rango", "Ondo"], + "occurrences": 5, + "rwaData": { + "market": { + "nextOpen": "2026-05-18T20:01:00.000Z", + "nextClose": "2026-05-18T19:59:00.000Z" + }, + "nextPause": { + "start": null, + "end": null + }, + "ticker": "TQQQ", + "instrumentType": "stock" + } + }, + "0xfa9a1e901085e269f6d428f79cd5252d8b919344": { + "address": "0xfa9a1e901085e269f6d428f79cd5252d8b919344", + "symbol": "GLDON", + "decimals": 18, + "name": "SPDR Gold Shares (Ondo Tokenized)", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xfa9a1e901085e269f6d428f79cd5252d8b919344.png", + "aggregators": ["CoinGecko", "LiFi", "Rubic", "Rango", "Ondo"], + "occurrences": 5, + "rwaData": { + "market": { + "nextOpen": "2026-05-18T20:01:00.000Z", + "nextClose": "2026-05-18T19:59:00.000Z" + }, + "nextPause": { + "start": null, + "end": null + }, + "ticker": "GLD", + "instrumentType": "stock" + } + }, + "0x518960f5d12eb192f89a73c2ae9b2bd369c73d40": { + "address": "0x518960f5d12eb192f89a73c2ae9b2bd369c73d40", + "symbol": "SEILOR", + "decimals": 6, + "name": "Kryptonite", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x518960f5d12eb192f89a73c2ae9b2bd369c73d40.png", + "aggregators": [ + "PancakeCoinGecko", + "Rubic", + "Squid", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x614577036f0a024dbc1c88ba616b394dd65d105a": { + "address": "0x614577036f0a024dbc1c88ba616b394dd65d105a", + "symbol": "GNUS", + "decimals": 16, + "name": "GENIUS AI", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x614577036f0a024dbc1c88ba616b394dd65d105a.png", + "aggregators": [ + "PancakeCoinMarketCap", + "Rubic", + "Squid", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x7788a3538c5fc7f9c7c8a74eac4c898fc8d87d92": { + "address": "0x7788a3538c5fc7f9c7c8a74eac4c898fc8d87d92", + "symbol": "SUSDX", + "decimals": 18, + "name": "usdx.money Staked USDX", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x7788a3538c5fc7f9c7c8a74eac4c898fc8d87d92.png", + "aggregators": [ + "PancakeExtended", + "LiFi", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x8f01d597d2022656494e30fb76eccf1eea2e092e": { + "address": "0x8f01d597d2022656494e30fb76eccf1eea2e092e", + "symbol": "TOMB", + "decimals": 18, + "name": "Tomb", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x8f01d597d2022656494e30fb76eccf1eea2e092e.png", + "aggregators": [ + "PancakeCoinGecko", + "LiFi", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0xda5be69074afd12354173b4350ec9117e73e92e2": { + "address": "0xda5be69074afd12354173b4350ec9117e73e92e2", + "symbol": "AQT", + "decimals": 18, + "name": "AQT", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xda5be69074afd12354173b4350ec9117e73e92e2.png", + "aggregators": [ + "PancakeCoinMarketCap", + "LiFi", + "Socket", + "Rubic", + "Rango" + ], + "occurrences": 5 + }, + "0xc04a23149efdf9a63697f3eb60705147e9f07ffd": { + "address": "0xc04a23149efdf9a63697f3eb60705147e9f07ffd", + "symbol": "GENI", + "decimals": 18, + "name": "GemUni", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xc04a23149efdf9a63697f3eb60705147e9f07ffd.png", + "aggregators": [ + "PancakeCoinMarketCap", + "LiFi", + "Socket", + "Rubic", + "Rango" + ], + "occurrences": 5 + }, + "0x3fda9383a84c05ec8f7630fe10adf1fac13241cc": { + "address": "0x3fda9383a84c05ec8f7630fe10adf1fac13241cc", + "symbol": "DEGO", + "decimals": 18, + "name": "dego.finance", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x3fda9383a84c05ec8f7630fe10adf1fac13241cc.png", + "aggregators": ["PancakeExtended", "LiFi", "Socket", "Rubic"], + "occurrences": 4 + }, + "0x3947b992dc0147d2d89df0392213781b04b25075": { + "address": "0x3947b992dc0147d2d89df0392213781b04b25075", + "symbol": "MAMZN", + "decimals": 18, + "name": "Mirror AMZN Token", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x3947b992dc0147d2d89df0392213781b04b25075.png", + "aggregators": [ + "PancakeExtended", + "LiFi", + "Rubic", + "Rango", + "SushiSwap" + ], + "occurrences": 5 + }, + "0x7c1cca5b25fa0bc9af9275fb53cba89dc172b878": { + "address": "0x7c1cca5b25fa0bc9af9275fb53cba89dc172b878", + "symbol": "MBTC", + "decimals": 8, + "name": "Babypie Wrapped BTC", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x7c1cca5b25fa0bc9af9275fb53cba89dc172b878.png", + "aggregators": [ + "PancakeExtended", + "LiFi", + "Rubic", + "Squid", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x62d71b23bf15218c7d2d7e48dbbd9e9c650b173f": { + "address": "0x62d71b23bf15218c7d2d7e48dbbd9e9c650b173f", + "symbol": "MGOOGL", + "decimals": 18, + "name": "Mirror GOOGL Token", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x62d71b23bf15218c7d2d7e48dbbd9e9c650b173f.png", + "aggregators": [ + "PancakeExtended", + "LiFi", + "Rubic", + "Rango", + "SushiSwap" + ], + "occurrences": 5 + }, + "0xa04f060077d90fe2647b61e4da4ad1f97d6649dc": { + "address": "0xa04f060077d90fe2647b61e4da4ad1f97d6649dc", + "symbol": "MNFLX", + "decimals": 18, + "name": "Mirror NFLX Token", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xa04f060077d90fe2647b61e4da4ad1f97d6649dc.png", + "aggregators": [ + "PancakeExtended", + "LiFi", + "Rubic", + "Rango", + "SushiSwap" + ], + "occurrences": 5 + }, + "0x53e63a31fd1077f949204b94f431bcab98f72bce": { + "address": "0x53e63a31fd1077f949204b94f431bcab98f72bce", + "symbol": "SOLVBTC.ENA", + "decimals": 18, + "name": "Solv Protocol SolvBTC.ENA", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x53e63a31fd1077f949204b94f431bcab98f72bce.png", + "aggregators": [ + "PancakeExtended", + "LiFi", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x0034719300501b06e10ebb1d07ea5967301f0941": { + "address": "0x0034719300501b06e10ebb1d07ea5967301f0941", + "symbol": "XALGO", + "decimals": 6, + "name": "Governance xAlgo", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x0034719300501b06e10ebb1d07ea5967301f0941.png", + "aggregators": [ + "PancakeExtended", + "LiFi", + "Socket", + "Rubic", + "Rango" + ], + "occurrences": 5 + }, + "0x73a325103935b0b5e7aa3aca6dba74ad22f82b03": { + "address": "0x73a325103935b0b5e7aa3aca6dba74ad22f82b03", + "symbol": "SUSDA", + "decimals": 18, + "name": "sUSDa", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x73a325103935b0b5e7aa3aca6dba74ad22f82b03.png", + "aggregators": [ + "PancakeExtended", + "LiFi", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x4a2940263acfd179dbc1c6b69a3392671accaf5b": { + "address": "0x4a2940263acfd179dbc1c6b69a3392671accaf5b", + "symbol": "SHWA", + "decimals": 18, + "name": "ShibaWallet", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x4a2940263acfd179dbc1c6b69a3392671accaf5b.png", + "aggregators": ["LiFi", "Socket", "Rubic", "Rango", "SushiSwap"], + "occurrences": 5 + }, + "0x9fe28d11ce29e340b7124c493f59607cbab9ce48": { + "address": "0x9fe28d11ce29e340b7124c493f59607cbab9ce48", + "symbol": "SPELL", + "decimals": 18, + "name": "Spell", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x9fe28d11ce29e340b7124c493f59607cbab9ce48.png", + "aggregators": ["LiFi", "Socket", "Rubic", "Rango", "SushiSwap"], + "occurrences": 5 + }, + "0x393b312c01048b3ed2720bf1b090084c09e408a1": { + "address": "0x393b312c01048b3ed2720bf1b090084c09e408a1", + "symbol": "FRIES", + "decimals": 18, + "name": "fry.world", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x393b312c01048b3ed2720bf1b090084c09e408a1.png", + "aggregators": ["LiFi", "Socket", "Rubic", "Rango", "SushiSwap"], + "occurrences": 5 + }, + "0x748ad98b14c814b28812eb42ad219c8672909879": { + "address": "0x748ad98b14c814b28812eb42ad219c8672909879", + "symbol": "DICE", + "decimals": 18, + "name": "Dice.finance Token", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x748ad98b14c814b28812eb42ad219c8672909879.png", + "aggregators": ["LiFi", "Socket", "Rubic", "Rango", "SushiSwap"], + "occurrences": 5 + }, + "0xe85afccdafbe7f2b096f268e31cce3da8da2990a": { + "address": "0xe85afccdafbe7f2b096f268e31cce3da8da2990a", + "symbol": "ABNBC", + "decimals": 18, + "name": "Ankr BNB Reward Bearing Certificate", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xe85afccdafbe7f2b096f268e31cce3da8da2990a.png", + "aggregators": ["PancakeCoinMarketCap", "LiFi", "Socket", "Rubic"], + "occurrences": 4 + }, + "0x418f9e4976f467efdb31b2009ac69a7e30ef58b7": { + "address": "0x418f9e4976f467efdb31b2009ac69a7e30ef58b7", + "symbol": "ENF", + "decimals": 18, + "name": "enfineo", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x418f9e4976f467efdb31b2009ac69a7e30ef58b7.png", + "aggregators": ["PancakeCoinGecko", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0xc9ad37e9baf41377540df5a77831db98c1915128": { + "address": "0xc9ad37e9baf41377540df5a77831db98c1915128", + "symbol": "GINUX", + "decimals": 18, + "name": "Green Shiba Inu", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xc9ad37e9baf41377540df5a77831db98c1915128.png", + "aggregators": ["PancakeCoinGecko", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0xeec027f0d9a1de829f430b5dfafe9f7ca5be9c88": { + "address": "0xeec027f0d9a1de829f430b5dfafe9f7ca5be9c88", + "symbol": "BCRE", + "decimals": 18, + "name": "BCREPE", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xeec027f0d9a1de829f430b5dfafe9f7ca5be9c88.png", + "aggregators": ["PancakeCoinGecko", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0xbe2d8ac2a370972c4328bed520b224c3903a4941": { + "address": "0xbe2d8ac2a370972c4328bed520b224c3903a4941", + "symbol": "NVM", + "decimals": 18, + "name": "Novem Pro", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xbe2d8ac2a370972c4328bed520b224c3903a4941.png", + "aggregators": ["PancakeCoinGecko", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0xc53ca0d56c420e8f913316e84d2c492ede99c61e": { + "address": "0xc53ca0d56c420e8f913316e84d2c492ede99c61e", + "symbol": "GROK", + "decimals": 18, + "name": "GROK", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xc53ca0d56c420e8f913316e84d2c492ede99c61e.png", + "aggregators": ["PancakeCoinGecko", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0xef433ebb8ba7a486ce21b854f093b9a3f4e696bc": { + "address": "0xef433ebb8ba7a486ce21b854f093b9a3f4e696bc", + "symbol": "TUK", + "decimals": 18, + "name": "eTukTuk", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xef433ebb8ba7a486ce21b854f093b9a3f4e696bc.png", + "aggregators": ["PancakeCoinGecko", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0xf8acf86194443dcde55fc5b9e448e183c290d8cb": { + "address": "0xf8acf86194443dcde55fc5b9e448e183c290d8cb", + "symbol": "COLX", + "decimals": 8, + "name": "ColossusXT", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xf8acf86194443dcde55fc5b9e448e183c290d8cb.png", + "aggregators": [ + "PancakeCoinMarketCap", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 4 + }, + "0x3439baa16ad653f644fb9f1781113d80590542a5": { + "address": "0x3439baa16ad653f644fb9f1781113d80590542a5", + "symbol": "CCFI", + "decimals": 18, + "name": "CloudCoin Finance", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x3439baa16ad653f644fb9f1781113d80590542a5.png", + "aggregators": ["PancakeCoinGecko", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0xce76fa691ffce00e6ce9bb788e9cbdfb52933f7a": { + "address": "0xce76fa691ffce00e6ce9bb788e9cbdfb52933f7a", + "symbol": "KEKE", + "decimals": 9, + "name": "Keke Inu", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xce76fa691ffce00e6ce9bb788e9cbdfb52933f7a.png", + "aggregators": ["PancakeCoinGecko", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0x179e3b3d1fcba4d740171c710e6a6cfc3c80a571": { + "address": "0x179e3b3d1fcba4d740171c710e6a6cfc3c80a571", + "symbol": "BCL", + "decimals": 18, + "name": "Blockchain Island", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x179e3b3d1fcba4d740171c710e6a6cfc3c80a571.png", + "aggregators": ["PancakeCoinGecko", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0x41515885251e724233c6ca94530d6dcf3a20dec7": { + "address": "0x41515885251e724233c6ca94530d6dcf3a20dec7", + "symbol": "HO", + "decimals": 18, + "name": "HALO Network", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x41515885251e724233c6ca94530d6dcf3a20dec7.png", + "aggregators": [ + "PancakeCoinMarketCap", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 4 + }, + "0x3fd230b77ad19aaf6330da7854ec76d5aeb49ead": { + "address": "0x3fd230b77ad19aaf6330da7854ec76d5aeb49ead", + "symbol": "COINROBOT", + "decimals": 18, + "name": "CoinRobot.AI", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x3fd230b77ad19aaf6330da7854ec76d5aeb49ead.png", + "aggregators": ["PancakeCoinGecko", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0xaf6e18ee53693c3bcd144c27df54320e29097595": { + "address": "0xaf6e18ee53693c3bcd144c27df54320e29097595", + "symbol": "HNY", + "decimals": 18, + "name": "Honey", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xaf6e18ee53693c3bcd144c27df54320e29097595.png", + "aggregators": ["PancakeCoinGecko", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0x6eadc05928acd93efb3fa0dfbc644d96c6aa1df8": { + "address": "0x6eadc05928acd93efb3fa0dfbc644d96c6aa1df8", + "symbol": "8PAY", + "decimals": 18, + "name": "8Pay", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x6eadc05928acd93efb3fa0dfbc644d96c6aa1df8.png", + "aggregators": ["PancakeExtended", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0x6ae0a238a6f51df8eee084b1756a54dd8a8e85d3": { + "address": "0x6ae0a238a6f51df8eee084b1756a54dd8a8e85d3", + "symbol": "AMT", + "decimals": 18, + "name": "AutoMiningToken", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x6ae0a238a6f51df8eee084b1756a54dd8a8e85d3.png", + "aggregators": ["PancakeCoinGecko", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0x557805bbe627ad81adecf4a94ef028141cebabdf": { + "address": "0x557805bbe627ad81adecf4a94ef028141cebabdf", + "symbol": "BCPI", + "decimals": 18, + "name": "Cryptopia", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x557805bbe627ad81adecf4a94ef028141cebabdf.png", + "aggregators": ["PancakeCoinGecko", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0xebd3619642d78f0c98c84f6fa9a678653fb5a99b": { + "address": "0xebd3619642d78f0c98c84f6fa9a678653fb5a99b", + "symbol": "ASX", + "decimals": 18, + "name": "ASX Capital", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xebd3619642d78f0c98c84f6fa9a678653fb5a99b.png", + "aggregators": ["PancakeCoinGecko", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0x65346b41b6d467ff330deaea87a1f7747e44f4cb": { + "address": "0x65346b41b6d467ff330deaea87a1f7747e44f4cb", + "symbol": "PPD", + "decimals": 18, + "name": "PaisaPad", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x65346b41b6d467ff330deaea87a1f7747e44f4cb.png", + "aggregators": ["PancakeCoinGecko", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0xb1ee6fdd6ecec9eebb8368839684f9bcf2f52076": { + "address": "0xb1ee6fdd6ecec9eebb8368839684f9bcf2f52076", + "symbol": "FAML", + "decimals": 18, + "name": "FAML", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xb1ee6fdd6ecec9eebb8368839684f9bcf2f52076.png", + "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0x99945f484ebc48f5307cc00cf8dcf8d6d3d4b017": { + "address": "0x99945f484ebc48f5307cc00cf8dcf8d6d3d4b017", + "symbol": "SWIFT", + "decimals": 18, + "name": "SwiftCash", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x99945f484ebc48f5307cc00cf8dcf8d6d3d4b017.png", + "aggregators": [ + "PancakeCoinMarketCap", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 4 + }, + "0xa4904cc19c4fd9bf3152ff96cdf72a8f135b5286": { + "address": "0xa4904cc19c4fd9bf3152ff96cdf72a8f135b5286", + "symbol": "CPET", + "decimals": 18, + "name": "Cloud Pet", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xa4904cc19c4fd9bf3152ff96cdf72a8f135b5286.png", + "aggregators": ["PancakeCoinGecko", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0x0d07873cacd5f40f47fb19b2c1115b7e1a9db4bf": { + "address": "0x0d07873cacd5f40f47fb19b2c1115b7e1a9db4bf", + "symbol": "21M", + "decimals": 8, + "name": "21Million", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x0d07873cacd5f40f47fb19b2c1115b7e1a9db4bf.png", + "aggregators": ["PancakeCoinGecko", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0xe4a1a0f812eb343e68e5e0ef1883a8196e6ec342": { + "address": "0xe4a1a0f812eb343e68e5e0ef1883a8196e6ec342", + "symbol": "CICCA", + "decimals": 18, + "name": "Cicca Network", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xe4a1a0f812eb343e68e5e0ef1883a8196e6ec342.png", + "aggregators": ["PancakeCoinGecko", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0x73cb8ea6d2331eb9892583e6f7a6ac733b932550": { + "address": "0x73cb8ea6d2331eb9892583e6f7a6ac733b932550", + "symbol": "VEVE", + "decimals": 18, + "name": "VEVE", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x73cb8ea6d2331eb9892583e6f7a6ac733b932550.png", + "aggregators": ["PancakeCoinGecko", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0x61a10e8556bed032ea176330e7f17d6a12a10000": { + "address": "0x61a10e8556bed032ea176330e7f17d6a12a10000", + "symbol": "UUSD", + "decimals": 18, + "name": "Unity USD", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x61a10e8556bed032ea176330e7f17d6a12a10000.png", + "aggregators": ["PancakeExtended", "LiFi", "Rubic", "Rango"], + "occurrences": 4 + }, + "0x9ca5dfa3b0b187d7f53f4ef83ca435a2ec2e4070": { + "address": "0x9ca5dfa3b0b187d7f53f4ef83ca435a2ec2e4070", + "symbol": "CHESS", + "decimals": 8, + "name": "ChessCoin 0.32%", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x9ca5dfa3b0b187d7f53f4ef83ca435a2ec2e4070.png", + "aggregators": ["PancakeCoinGecko", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0xace9de5af92eb82a97a5973b00eff85024bdcb39": { + "address": "0xace9de5af92eb82a97a5973b00eff85024bdcb39", + "symbol": "IR", + "decimals": 18, + "name": "Infrared Governance Token", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xace9de5af92eb82a97a5973b00eff85024bdcb39.png", + "aggregators": ["PancakeExtended", "Rubic", "Squid", "Rango"], + "occurrences": 4 + }, + "0x01ca78a2b5f1a9152d8a3a625bd7df5765eee1d8": { + "address": "0x01ca78a2b5f1a9152d8a3a625bd7df5765eee1d8", + "symbol": "ANDY", + "decimals": 18, + "name": "Andy BSC", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x01ca78a2b5f1a9152d8a3a625bd7df5765eee1d8.png", + "aggregators": ["PancakeExtended", "Socket", "Rubic", "Sonarwatch"], + "occurrences": 4 + }, + "0x6b85f1fe36af537ce5085ef441c92de09af74f0e": { + "address": "0x6b85f1fe36af537ce5085ef441c92de09af74f0e", + "symbol": "DOGER", + "decimals": 18, + "name": "Robotic Doge", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x6b85f1fe36af537ce5085ef441c92de09af74f0e.png", + "aggregators": [ + "PancakeCoinMarketCap", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 4 + }, + "0x90500b067a9b24dcb4834a839c44eec90b2cd9ac": { + "address": "0x90500b067a9b24dcb4834a839c44eec90b2cd9ac", + "symbol": "FGDS", + "decimals": 18, + "name": "FGDSwap", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x90500b067a9b24dcb4834a839c44eec90b2cd9ac.png", + "aggregators": ["PancakeCoinGecko", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0x78e624070871831842730b43f77467af3e8b580c": { + "address": "0x78e624070871831842730b43f77467af3e8b580c", + "symbol": "ALINK", + "decimals": 8, + "name": "ALINK AI", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x78e624070871831842730b43f77467af3e8b580c.png", + "aggregators": ["PancakeCoinGecko", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0x9810512be701801954449408966c630595d0cd51": { + "address": "0x9810512be701801954449408966c630595d0cd51", + "symbol": "HYDT", + "decimals": 18, + "name": "HYDT", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x9810512be701801954449408966c630595d0cd51.png", + "aggregators": ["PancakeCoinGecko", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0x100995a7e5ffd8ee60cc18a10c75cee8c572c59b": { + "address": "0x100995a7e5ffd8ee60cc18a10c75cee8c572c59b", + "symbol": "HYGT", + "decimals": 18, + "name": "HYGT", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x100995a7e5ffd8ee60cc18a10c75cee8c572c59b.png", + "aggregators": ["PancakeCoinGecko", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0xc75835c00c7b1b8589d2438e8b8d83472d238306": { + "address": "0xc75835c00c7b1b8589d2438e8b8d83472d238306", + "symbol": "RTG", + "decimals": 18, + "name": "Rectangle Finance", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xc75835c00c7b1b8589d2438e8b8d83472d238306.png", + "aggregators": ["PancakeCoinGecko", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0x89414f992d4f24fc1bde61eb5c7a74ca83fbe13b": { + "address": "0x89414f992d4f24fc1bde61eb5c7a74ca83fbe13b", + "symbol": "RBL", + "decimals": 18, + "name": "Rublex", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x89414f992d4f24fc1bde61eb5c7a74ca83fbe13b.png", + "aggregators": ["PancakeCoinGecko", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0x223a20e1b83aa3832e78d4b7b132df022e739222": { + "address": "0x223a20e1b83aa3832e78d4b7b132df022e739222", + "symbol": "R2", + "decimals": 18, + "name": "R2", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x223a20e1b83aa3832e78d4b7b132df022e739222.png", + "aggregators": ["PancakeExtended", "Rubic", "Squid", "Rango"], + "occurrences": 4 + }, + "0xd70d1dd91ecd79c6f8de86924571a454ff587818": { + "address": "0xd70d1dd91ecd79c6f8de86924571a454ff587818", + "symbol": "SLT", + "decimals": 18, + "name": "SeedLaunch", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xd70d1dd91ecd79c6f8de86924571a454ff587818.png", + "aggregators": ["PancakeCoinGecko", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0xde8e272ed57488c817b9023c1b2d3e1923ccab86": { + "address": "0xde8e272ed57488c817b9023c1b2d3e1923ccab86", + "symbol": "STAKELAYER", + "decimals": 18, + "name": "StakeLayer", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xde8e272ed57488c817b9023c1b2d3e1923ccab86.png", + "aggregators": ["PancakeCoinGecko", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0x350494bcc94efb5c6080f6a6f0043da27be2ad2c": { + "address": "0x350494bcc94efb5c6080f6a6f0043da27be2ad2c", + "symbol": "DFSM", + "decimals": 9, + "name": "DFS Mafia V2", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x350494bcc94efb5c6080f6a6f0043da27be2ad2c.png", + "aggregators": ["PancakeCoinGecko", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0xd0ed8f9c119beb13b9fce318a28827d0574c37d6": { + "address": "0xd0ed8f9c119beb13b9fce318a28827d0574c37d6", + "symbol": "CPL", + "decimals": 18, + "name": "CATERPILLAR", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xd0ed8f9c119beb13b9fce318a28827d0574c37d6.png", + "aggregators": [ + "PancakeCoinMarketCap", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 4 + }, + "0x3b26fb89eab263cc6cb1e91f611bae8793f927ef": { + "address": "0x3b26fb89eab263cc6cb1e91f611bae8793f927ef", + "symbol": "VNST", + "decimals": 18, + "name": "VNST Stablecoin", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x3b26fb89eab263cc6cb1e91f611bae8793f927ef.png", + "aggregators": ["PancakeCoinGecko", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0x7ea42e53033b9c4bf975c1afcf17ff7ef25b04a4": { + "address": "0x7ea42e53033b9c4bf975c1afcf17ff7ef25b04a4", + "symbol": "DYNA", + "decimals": 18, + "name": "Dynachain", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x7ea42e53033b9c4bf975c1afcf17ff7ef25b04a4.png", + "aggregators": ["PancakeCoinGecko", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0xd5eaaac47bd1993d661bc087e15dfb079a7f3c19": { + "address": "0xd5eaaac47bd1993d661bc087e15dfb079a7f3c19", + "symbol": "KOMA", + "decimals": 18, + "name": "Koma Inu", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xd5eaaac47bd1993d661bc087e15dfb079a7f3c19.png", + "aggregators": ["PancakeExtended", "Rubic", "Squid", "Rango"], + "occurrences": 4 + }, + "0xa164bb2d282ee762d5bc2161cf9914c712732ed7": { + "address": "0xa164bb2d282ee762d5bc2161cf9914c712732ed7", + "symbol": "GTF", + "decimals": 18, + "name": "Goatly.farm", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xa164bb2d282ee762d5bc2161cf9914c712732ed7.png", + "aggregators": ["PancakeCoinGecko", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0xd58b8747307936d1324bf8c40f45687c7bacc6b9": { + "address": "0xd58b8747307936d1324bf8c40f45687c7bacc6b9", + "symbol": "MHCASH", + "decimals": 18, + "name": "MHCASH", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xd58b8747307936d1324bf8c40f45687c7bacc6b9.png", + "aggregators": ["PancakeCoinGecko", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0x2da91257961b87e69fa13b2e20931d517dc97597": { + "address": "0x2da91257961b87e69fa13b2e20931d517dc97597", + "symbol": "LEMX", + "decimals": 18, + "name": "Lemon", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x2da91257961b87e69fa13b2e20931d517dc97597.png", + "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0x55493e35e33fcf811571707ac5bf1dbcb658bafc": { + "address": "0x55493e35e33fcf811571707ac5bf1dbcb658bafc", + "symbol": "FATCAT", + "decimals": 9, + "name": "FAT CAT", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x55493e35e33fcf811571707ac5bf1dbcb658bafc.png", + "aggregators": ["PancakeCoinGecko", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0x2d5f3b0722acd35fbb749cb936dfdd93247bbc95": { + "address": "0x2d5f3b0722acd35fbb749cb936dfdd93247bbc95", + "symbol": "BABYBNB", + "decimals": 18, + "name": "Baby BNB", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x2d5f3b0722acd35fbb749cb936dfdd93247bbc95.png", + "aggregators": ["PancakeCoinGecko", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0xde009cb3371825bafb80a01004c58f8166ee13d5": { + "address": "0xde009cb3371825bafb80a01004c58f8166ee13d5", + "symbol": "LUD", + "decimals": 9, + "name": "Little Ugly Duck", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xde009cb3371825bafb80a01004c58f8166ee13d5.png", + "aggregators": ["PancakeCoinGecko", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0xdc49a53e1f15fd7fd522e0691cb570f442e9ca6c": { + "address": "0xdc49a53e1f15fd7fd522e0691cb570f442e9ca6c", + "symbol": "QGOLD", + "decimals": 3, + "name": "Quorium", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xdc49a53e1f15fd7fd522e0691cb570f442e9ca6c.png", + "aggregators": ["PancakeCoinGecko", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0x2fd2799e83a723b19026a979899dfb70bbf6bf6b": { + "address": "0x2fd2799e83a723b19026a979899dfb70bbf6bf6b", + "symbol": "JAIHO", + "decimals": 9, + "name": "Jaiho Crypto", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x2fd2799e83a723b19026a979899dfb70bbf6bf6b.png", + "aggregators": ["PancakeCoinGecko", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0xaf1736800d805723b9fc6a176badc1d189467bc8": { + "address": "0xaf1736800d805723b9fc6a176badc1d189467bc8", + "symbol": "DRA", + "decimals": 18, + "name": "Dracoo Point", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xaf1736800d805723b9fc6a176badc1d189467bc8.png", + "aggregators": ["PancakeCoinGecko", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0x5e61e8e2aadb381af29c3048671b2d4477764ada": { + "address": "0x5e61e8e2aadb381af29c3048671b2d4477764ada", + "symbol": "CLP", + "decimals": 18, + "name": "CLP", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x5e61e8e2aadb381af29c3048671b2d4477764ada.png", + "aggregators": ["PancakeCoinGecko", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0x04e3e226bedfd57252198443561b57c0a6456e9b": { + "address": "0x04e3e226bedfd57252198443561b57c0a6456e9b", + "symbol": "FAYA", + "decimals": 9, + "name": "FAYA", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x04e3e226bedfd57252198443561b57c0a6456e9b.png", + "aggregators": ["PancakeCoinGecko", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0x2885c2e374301d494208fc9c66ad22ced289a97f": { + "address": "0x2885c2e374301d494208fc9c66ad22ced289a97f", + "symbol": "FOX", + "decimals": 18, + "name": "Foxcon", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x2885c2e374301d494208fc9c66ad22ced289a97f.png", + "aggregators": ["PancakeCoinGecko", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0x9ee10d2e9571aecfe5a604af7fe71b96eba84b7b": { + "address": "0x9ee10d2e9571aecfe5a604af7fe71b96eba84b7b", + "symbol": "WLTK", + "decimals": 18, + "name": "Walletika", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x9ee10d2e9571aecfe5a604af7fe71b96eba84b7b.png", + "aggregators": ["PancakeCoinGecko", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0x719323e2f539d35fd7e549ddccb43e6bdba08e17": { + "address": "0x719323e2f539d35fd7e549ddccb43e6bdba08e17", + "symbol": "MBXN", + "decimals": 18, + "name": "UpBots Token", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x719323e2f539d35fd7e549ddccb43e6bdba08e17.png", + "aggregators": ["PancakeCoinGecko", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0x31de61d9a39cb9f479570bd3dc3ac93bc0402cdb": { + "address": "0x31de61d9a39cb9f479570bd3dc3ac93bc0402cdb", + "symbol": "NFTPUNK", + "decimals": 9, + "name": "NFTPunk.Finance", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x31de61d9a39cb9f479570bd3dc3ac93bc0402cdb.png", + "aggregators": ["PancakeCoinGecko", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0xe550a593d09fbc8dcd557b5c88cea6946a8b404a": { + "address": "0xe550a593d09fbc8dcd557b5c88cea6946a8b404a", + "symbol": "TDOGE", + "decimals": 8, + "name": "τDoge", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xe550a593d09fbc8dcd557b5c88cea6946a8b404a.png", + "aggregators": ["PancakeExtended", "Socket", "Rubic", "Sonarwatch"], + "occurrences": 4 + }, + "0xd5239b38b93b54a31b348afaac3edcdf9e3c546a": { + "address": "0xd5239b38b93b54a31b348afaac3edcdf9e3c546a", + "symbol": "HBIT", + "decimals": 18, + "name": "HashBit [OLD]", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xd5239b38b93b54a31b348afaac3edcdf9e3c546a.png", + "aggregators": ["PancakeCoinGecko", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0x18359cf655a444204e46f286edc445c9d30ffc54": { + "address": "0x18359cf655a444204e46f286edc445c9d30ffc54", + "symbol": "DOGEMOON", + "decimals": 18, + "name": "Dogemoon", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x18359cf655a444204e46f286edc445c9d30ffc54.png", + "aggregators": [ + "PancakeCoinMarketCap", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 4 + }, + "0x633237c6fa30fae46cc5bb22014da30e50a718cc": { + "address": "0x633237c6fa30fae46cc5bb22014da30e50a718cc", + "symbol": "FIWA", + "decimals": 18, + "name": "Defi Warrior", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x633237c6fa30fae46cc5bb22014da30e50a718cc.png", + "aggregators": ["PancakeCoinGecko", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0x6421531af54c7b14ea805719035ebf1e3661c44a": { + "address": "0x6421531af54c7b14ea805719035ebf1e3661c44a", + "symbol": "BLEO", + "decimals": 3, + "name": "BEP20 LEO", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x6421531af54c7b14ea805719035ebf1e3661c44a.png", + "aggregators": ["PancakeCoinGecko", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0x19b99162adaab85134e781ac0048c275c31b205a": { + "address": "0x19b99162adaab85134e781ac0048c275c31b205a", + "symbol": "TAUR", + "decimals": 18, + "name": "Marnotaur", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x19b99162adaab85134e781ac0048c275c31b205a.png", + "aggregators": ["PancakeCoinGecko", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0x81372c18c87f6d2fe91f416d7c8a109cea48c332": { + "address": "0x81372c18c87f6d2fe91f416d7c8a109cea48c332", + "symbol": "SWI", + "decimals": 4, + "name": "Swinca", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x81372c18c87f6d2fe91f416d7c8a109cea48c332.png", + "aggregators": ["PancakeCoinGecko", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0xe0167c41bea56432f8588a4ceff0f5f3642120e7": { + "address": "0xe0167c41bea56432f8588a4ceff0f5f3642120e7", + "symbol": "VELON", + "decimals": 9, + "name": "Viking Elon", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xe0167c41bea56432f8588a4ceff0f5f3642120e7.png", + "aggregators": ["PancakeCoinGecko", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0xd48d639f72ef29458b72cdc9a47a95fa46101529": { + "address": "0xd48d639f72ef29458b72cdc9a47a95fa46101529", + "symbol": "HKC", + "decimals": 12, + "name": "HelpKidz Coin", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xd48d639f72ef29458b72cdc9a47a95fa46101529.png", + "aggregators": ["PancakeCoinGecko", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0x00855c21754fe85fd4e38ac23d2b3e091b04a042": { + "address": "0x00855c21754fe85fd4e38ac23d2b3e091b04a042", + "symbol": "YKS", + "decimals": 9, + "name": "YourKiss", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x00855c21754fe85fd4e38ac23d2b3e091b04a042.png", + "aggregators": ["PancakeCoinGecko", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0xb700597d8425ced17677bc68042d7d92764acf59": { + "address": "0xb700597d8425ced17677bc68042d7d92764acf59", + "symbol": "FACE", + "decimals": 18, + "name": "FaceDAO", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xb700597d8425ced17677bc68042d7d92764acf59.png", + "aggregators": [ + "PancakeCoinMarketCap", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 4 + }, + "0x94df6e5bc05b6eb9eb65c918902f6f4b8edd8833": { + "address": "0x94df6e5bc05b6eb9eb65c918902f6f4b8edd8833", + "symbol": "DC", + "decimals": 18, + "name": "DavidCoin", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x94df6e5bc05b6eb9eb65c918902f6f4b8edd8833.png", + "aggregators": ["PancakeCoinGecko", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0xe9c1b765c3b69ff6178c7310fe3eb106421870a5": { + "address": "0xe9c1b765c3b69ff6178c7310fe3eb106421870a5", + "symbol": "BUFF", + "decimals": 18, + "name": "Buff Coin", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xe9c1b765c3b69ff6178c7310fe3eb106421870a5.png", + "aggregators": ["PancakeCoinGecko", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0x02a9d7162bd73c2b35c5cf6cdd585e91928c850a": { + "address": "0x02a9d7162bd73c2b35c5cf6cdd585e91928c850a", + "symbol": "BFLOKI", + "decimals": 9, + "name": "Baby Floki Inu", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x02a9d7162bd73c2b35c5cf6cdd585e91928c850a.png", + "aggregators": ["PancakeCoinGecko", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0xc2cb89bbb5bba6e21db1dfe13493dfd7dcbabd68": { + "address": "0xc2cb89bbb5bba6e21db1dfe13493dfd7dcbabd68", + "symbol": "$MANGA", + "decimals": 18, + "name": "Manga", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xc2cb89bbb5bba6e21db1dfe13493dfd7dcbabd68.png", + "aggregators": [ + "PancakeCoinMarketCap", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 4 + }, + "0xfa17b330bcc4e7f3e2456996d89a5a54ab044831": { + "address": "0xfa17b330bcc4e7f3e2456996d89a5a54ab044831", + "symbol": "$CRDN", + "decimals": 18, + "name": "Cardence", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xfa17b330bcc4e7f3e2456996d89a5a54ab044831.png", + "aggregators": [ + "PancakeCoinMarketCap", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 4 + }, + "0xb4bf64b17e270b50d00658e3c0e2fbdefabdd87b": { + "address": "0xb4bf64b17e270b50d00658e3c0e2fbdefabdd87b", + "symbol": "CHEESE", + "decimals": 18, + "name": "Cheese Swap", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xb4bf64b17e270b50d00658e3c0e2fbdefabdd87b.png", + "aggregators": ["PancakeCoinGecko", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0x17fd3caa66502c6f1cbd5600d8448f3af8f2aba1": { + "address": "0x17fd3caa66502c6f1cbd5600d8448f3af8f2aba1", + "symbol": "SPY", + "decimals": 0, + "name": "Smarty Pay", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x17fd3caa66502c6f1cbd5600d8448f3af8f2aba1.png", + "aggregators": ["PancakeCoinGecko", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0x1964dd991a98690578310ba826c3755dfc753e5c": { + "address": "0x1964dd991a98690578310ba826c3755dfc753e5c", + "symbol": "SCART", + "decimals": 18, + "name": "SCART360", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x1964dd991a98690578310ba826c3755dfc753e5c.png", + "aggregators": ["PancakeCoinGecko", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0x4a1ad6a5aee1915c5bc0104bd7e2671ed37aaf0e": { + "address": "0x4a1ad6a5aee1915c5bc0104bd7e2671ed37aaf0e", + "symbol": "GED", + "decimals": 18, + "name": "GreenDex", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x4a1ad6a5aee1915c5bc0104bd7e2671ed37aaf0e.png", + "aggregators": ["PancakeCoinGecko", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0xb21d59547140c9a028efb943e723e04015597e97": { + "address": "0xb21d59547140c9a028efb943e723e04015597e97", + "symbol": "MTP", + "decimals": 18, + "name": "MetaPuss", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xb21d59547140c9a028efb943e723e04015597e97.png", + "aggregators": ["PancakeCoinGecko", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0x991bb6093fa735d27cd1444b2ad8fdd95876fed5": { + "address": "0x991bb6093fa735d27cd1444b2ad8fdd95876fed5", + "symbol": "PTAS", + "decimals": 18, + "name": "La Peseta", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x991bb6093fa735d27cd1444b2ad8fdd95876fed5.png", + "aggregators": ["PancakeCoinGecko", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0x8a5652eb940dd3832a8426fbe5afbb01b0f96a14": { + "address": "0x8a5652eb940dd3832a8426fbe5afbb01b0f96a14", + "symbol": "PARA", + "decimals": 10, + "name": "Paraverse", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x8a5652eb940dd3832a8426fbe5afbb01b0f96a14.png", + "aggregators": ["PancakeCoinGecko", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0x95ca12cd249d27008a482009e101a8501cf3a64f": { + "address": "0x95ca12cd249d27008a482009e101a8501cf3a64f", + "symbol": "MOVE", + "decimals": 18, + "name": "MoveApp", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x95ca12cd249d27008a482009e101a8501cf3a64f.png", + "aggregators": ["PancakeCoinGecko", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0xf5469e4ecc5afb3ac13da5737f88dc4563ce8454": { + "address": "0xf5469e4ecc5afb3ac13da5737f88dc4563ce8454", + "symbol": "LAN", + "decimals": 18, + "name": "LAN Network", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xf5469e4ecc5afb3ac13da5737f88dc4563ce8454.png", + "aggregators": ["PancakeCoinGecko", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0x9e0335fb61958fe19bb120f3f8408b4297921820": { + "address": "0x9e0335fb61958fe19bb120f3f8408b4297921820", + "symbol": "FFE", + "decimals": 18, + "name": "Forbidden Fruit Energy", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x9e0335fb61958fe19bb120f3f8408b4297921820.png", + "aggregators": ["PancakeCoinGecko", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0x124123c7af9efd2a86f4d41daa88ac164d02a3d5": { + "address": "0x124123c7af9efd2a86f4d41daa88ac164d02a3d5", + "symbol": "GEC", + "decimals": 18, + "name": "GreenEnvironmentalCoins", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x124123c7af9efd2a86f4d41daa88ac164d02a3d5.png", + "aggregators": ["PancakeCoinGecko", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0x851da0bea7fe6db35c11c1d3a065a96e6b36acf1": { + "address": "0x851da0bea7fe6db35c11c1d3a065a96e6b36acf1", + "symbol": "OMT", + "decimals": 4, + "name": "Oracle Meta Technologies", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x851da0bea7fe6db35c11c1d3a065a96e6b36acf1.png", + "aggregators": ["PancakeCoinGecko", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0x0079914b3c6ff1867b62c2cf8f108126970eab6e": { + "address": "0x0079914b3c6ff1867b62c2cf8f108126970eab6e", + "symbol": "W3W", + "decimals": 18, + "name": "Web3 Whales", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x0079914b3c6ff1867b62c2cf8f108126970eab6e.png", + "aggregators": ["PancakeCoinGecko", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0xd4e9e6e5a91bf44e23d53985e65f8d7df43cdd20": { + "address": "0xd4e9e6e5a91bf44e23d53985e65f8d7df43cdd20", + "symbol": "CC", + "decimals": 18, + "name": "Crypto Clubs App [OLD]", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xd4e9e6e5a91bf44e23d53985e65f8d7df43cdd20.png", + "aggregators": ["PancakeCoinGecko", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0x6b4b961391fe2b1b2b5b7ae6da87bc95831448e0": { + "address": "0x6b4b961391fe2b1b2b5b7ae6da87bc95831448e0", + "symbol": "CTI", + "decimals": 9, + "name": "Community Inu", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x6b4b961391fe2b1b2b5b7ae6da87bc95831448e0.png", + "aggregators": ["PancakeCoinGecko", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0xca39370ab6cf858343cea824a1c784964e5bf247": { + "address": "0xca39370ab6cf858343cea824a1c784964e5bf247", + "symbol": "RTIME", + "decimals": 9, + "name": "RecTime", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xca39370ab6cf858343cea824a1c784964e5bf247.png", + "aggregators": ["PancakeCoinGecko", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0x09531ece451453d68f8c6399120f67f19fee4489": { + "address": "0x09531ece451453d68f8c6399120f67f19fee4489", + "symbol": "DAN", + "decimals": 18, + "name": "Dastra Network", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x09531ece451453d68f8c6399120f67f19fee4489.png", + "aggregators": ["PancakeCoinGecko", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0xac927db34e4648781a32a9a4b673cee28c4ec4fe": { + "address": "0xac927db34e4648781a32a9a4b673cee28c4ec4fe", + "symbol": "NXTU", + "decimals": 8, + "name": "4 Next Unicorn", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xac927db34e4648781a32a9a4b673cee28c4ec4fe.png", + "aggregators": ["PancakeCoinGecko", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0xc5d3455dfc04f04a5c1889c5486bf48551990256": { + "address": "0xc5d3455dfc04f04a5c1889c5486bf48551990256", + "symbol": "SWIFT", + "decimals": 18, + "name": "SwiftPad", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xc5d3455dfc04f04a5c1889c5486bf48551990256.png", + "aggregators": ["PancakeCoinGecko", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0x6f46a74ca99bc39249af47fb5101552f5b5c55d9": { + "address": "0x6f46a74ca99bc39249af47fb5101552f5b5c55d9", + "symbol": "XPP", + "decimals": 18, + "name": "Xpad.pro", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x6f46a74ca99bc39249af47fb5101552f5b5c55d9.png", + "aggregators": ["PancakeCoinGecko", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0xc01444175ff3c39047f1548507cdf2183dc55e06": { + "address": "0xc01444175ff3c39047f1548507cdf2183dc55e06", + "symbol": "W3F", + "decimals": 18, + "name": "Web3Frontier", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xc01444175ff3c39047f1548507cdf2183dc55e06.png", + "aggregators": ["PancakeCoinGecko", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0x296d1836658344e4257ec4c9d3c0fcb8312de87c": { + "address": "0x296d1836658344e4257ec4c9d3c0fcb8312de87c", + "symbol": "FOMO", + "decimals": 18, + "name": "FomoFi", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x296d1836658344e4257ec4c9d3c0fcb8312de87c.png", + "aggregators": ["PancakeCoinGecko", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0xf8ccea8707cfc155ef595fc25cb77696d4445fcc": { + "address": "0xf8ccea8707cfc155ef595fc25cb77696d4445fcc", + "symbol": "FOMOS", + "decimals": 18, + "name": "FomosFi", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xf8ccea8707cfc155ef595fc25cb77696d4445fcc.png", + "aggregators": ["PancakeCoinGecko", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0xdf5ba79f0fd70c6609666d5ed603710609a530ab": { + "address": "0xdf5ba79f0fd70c6609666d5ed603710609a530ab", + "symbol": "CFX", + "decimals": 18, + "name": "Cosmic Force Token v2", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xdf5ba79f0fd70c6609666d5ed603710609a530ab.png", + "aggregators": ["PancakeCoinGecko", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0x6d16370d523f7626b241b8040fd444dee055d20a": { + "address": "0x6d16370d523f7626b241b8040fd444dee055d20a", + "symbol": "ANDY", + "decimals": 18, + "name": "Andy Bsc", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x6d16370d523f7626b241b8040fd444dee055d20a.png", + "aggregators": ["PancakeCoinGecko", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0x17893dd8bf3f868f691b314abeb3ba8fd615e680": { + "address": "0x17893dd8bf3f868f691b314abeb3ba8fd615e680", + "symbol": "DFISH", + "decimals": 18, + "name": "DailyFish", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x17893dd8bf3f868f691b314abeb3ba8fd615e680.png", + "aggregators": ["PancakeCoinGecko", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0x49074051ad996828504d7f719fc5769ac942220d": { + "address": "0x49074051ad996828504d7f719fc5769ac942220d", + "symbol": "AGT", + "decimals": 18, + "name": "AVATAGO", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x49074051ad996828504d7f719fc5769ac942220d.png", + "aggregators": ["PancakeCoinGecko", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0x2f03d0b2f702884fa43aee8e092e83650c5670e9": { + "address": "0x2f03d0b2f702884fa43aee8e092e83650c5670e9", + "symbol": "VOID", + "decimals": 18, + "name": "The Great Void Token", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x2f03d0b2f702884fa43aee8e092e83650c5670e9.png", + "aggregators": ["PancakeCoinGecko", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0x25587c58d335a3c89058a5f12a6adf8c966a33d3": { + "address": "0x25587c58d335a3c89058a5f12a6adf8c966a33d3", + "symbol": "TRW", + "decimals": 18, + "name": "Traders Wallet [OLD]", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x25587c58d335a3c89058a5f12a6adf8c966a33d3.png", + "aggregators": ["PancakeCoinGecko", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0x97a143545c0f8200222c051ac0a2fc93acbe6ba2": { + "address": "0x97a143545c0f8200222c051ac0a2fc93acbe6ba2", + "symbol": "DFC", + "decimals": 8, + "name": "DefiConnect V2", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x97a143545c0f8200222c051ac0a2fc93acbe6ba2.png", + "aggregators": ["PancakeCoinGecko", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0x68de53b47be0dc566bf4673c748d58bbbad3deb1": { + "address": "0x68de53b47be0dc566bf4673c748d58bbbad3deb1", + "symbol": "DGR", + "decimals": 18, + "name": "DogeGrow", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x68de53b47be0dc566bf4673c748d58bbbad3deb1.png", + "aggregators": ["PancakeCoinGecko", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0x4e53522932608e61b6bd8d50cf15a5501054db4e": { + "address": "0x4e53522932608e61b6bd8d50cf15a5501054db4e", + "symbol": "ABOAT", + "decimals": 18, + "name": "Aboat Token", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x4e53522932608e61b6bd8d50cf15a5501054db4e.png", + "aggregators": ["PancakeCoinGecko", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0x5a04565ee1c90c84061ad357ae9e2f1c32d57dc6": { + "address": "0x5a04565ee1c90c84061ad357ae9e2f1c32d57dc6", + "symbol": "BABYBNBTIG", + "decimals": 9, + "name": "BabyBNBTiger", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x5a04565ee1c90c84061ad357ae9e2f1c32d57dc6.png", + "aggregators": [ + "PancakeCoinMarketCap", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 4 + }, + "0x4c906b99a2f45a47c8570b7a41ffe940f71676af": { + "address": "0x4c906b99a2f45a47c8570b7a41ffe940f71676af", + "symbol": "OPIP", + "decimals": 18, + "name": "OpiPets", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x4c906b99a2f45a47c8570b7a41ffe940f71676af.png", + "aggregators": ["PancakeCoinGecko", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0xbb25c03be85ca09662ecb599df0000b33c2c2c26": { + "address": "0xbb25c03be85ca09662ecb599df0000b33c2c2c26", + "symbol": "TLF", + "decimals": 6, + "name": "Tradeleaf", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xbb25c03be85ca09662ecb599df0000b33c2c2c26.png", + "aggregators": ["PancakeCoinGecko", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0x99c486b908434ae4adf567e9990a929854d0c955": { + "address": "0x99c486b908434ae4adf567e9990a929854d0c955", + "symbol": "GNIMB", + "decimals": 18, + "name": "Nimbus Platform GNIMB", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x99c486b908434ae4adf567e9990a929854d0c955.png", + "aggregators": ["PancakeCoinGecko", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0xe57f73eb27da9d17f90c994744d842e95700c100": { + "address": "0xe57f73eb27da9d17f90c994744d842e95700c100", + "symbol": "PEPEAI", + "decimals": 9, + "name": "Pepe AI", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xe57f73eb27da9d17f90c994744d842e95700c100.png", + "aggregators": ["PancakeCoinGecko", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0x2c29d6da871a6b90d7b4ae470079cdf5252df5f8": { + "address": "0x2c29d6da871a6b90d7b4ae470079cdf5252df5f8", + "symbol": "BENYKE", + "decimals": 9, + "name": "Benyke Finance", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x2c29d6da871a6b90d7b4ae470079cdf5252df5f8.png", + "aggregators": ["PancakeCoinGecko", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0xe846d164b88ed2e1209609fea3cf7a3d89d70d2d": { + "address": "0xe846d164b88ed2e1209609fea3cf7a3d89d70d2d", + "symbol": "HAWK", + "decimals": 18, + "name": "Hawk", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xe846d164b88ed2e1209609fea3cf7a3d89d70d2d.png", + "aggregators": ["PancakeCoinGecko", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0xe12359d6858402d10bcbf1bb1c75cf8e7e25270b": { + "address": "0xe12359d6858402d10bcbf1bb1c75cf8e7e25270b", + "symbol": "BCX", + "decimals": 18, + "name": "Big Coin", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xe12359d6858402d10bcbf1bb1c75cf8e7e25270b.png", + "aggregators": ["PancakeCoinGecko", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0xa9883ec06b42e77b7cd9a502eb418539a4eeda03": { + "address": "0xa9883ec06b42e77b7cd9a502eb418539a4eeda03", + "symbol": "SMBA", + "decimals": 9, + "name": "ShimbaINU", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xa9883ec06b42e77b7cd9a502eb418539a4eeda03.png", + "aggregators": ["PancakeCoinGecko", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0x0d67d1bec77e562a73a65eef5ed92ac46744671c": { + "address": "0x0d67d1bec77e562a73a65eef5ed92ac46744671c", + "symbol": "SCARCITY", + "decimals": 18, + "name": "SCARCITY", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x0d67d1bec77e562a73a65eef5ed92ac46744671c.png", + "aggregators": ["PancakeCoinGecko", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0x0305ce989f3055a6da8955fc52b615b0086a2157": { + "address": "0x0305ce989f3055a6da8955fc52b615b0086a2157", + "symbol": "JACE", + "decimals": 18, + "name": "Jace", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x0305ce989f3055a6da8955fc52b615b0086a2157.png", + "aggregators": ["PancakeCoinGecko", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0xca30e772e4bd5f38ed775e6f8c57c6ffcb3c931f": { + "address": "0xca30e772e4bd5f38ed775e6f8c57c6ffcb3c931f", + "symbol": "ZEDX", + "decimals": 9, + "name": "Zedxion", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xca30e772e4bd5f38ed775e6f8c57c6ffcb3c931f.png", + "aggregators": [ + "PancakeCoinMarketCap", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 4 + }, + "0xe855e5348923560940981882ab40a5ede6bd16a0": { + "address": "0xe855e5348923560940981882ab40a5ede6bd16a0", + "symbol": "AIP", + "decimals": 18, + "name": "AI Powers", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xe855e5348923560940981882ab40a5ede6bd16a0.png", + "aggregators": ["PancakeCoinGecko", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0x5a7a15f8d5daeae4e5ba880451cddf64fa2fae6d": { + "address": "0x5a7a15f8d5daeae4e5ba880451cddf64fa2fae6d", + "symbol": "PROMISE", + "decimals": 6, + "name": "Promise", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x5a7a15f8d5daeae4e5ba880451cddf64fa2fae6d.png", + "aggregators": ["PancakeCoinGecko", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0x218617d3250be4a1f182c28a1a94b1ab37d94235": { + "address": "0x218617d3250be4a1f182c28a1a94b1ab37d94235", + "symbol": "LUMOX", + "decimals": 18, + "name": "Lumox Studio", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x218617d3250be4a1f182c28a1a94b1ab37d94235.png", + "aggregators": ["PancakeCoinGecko", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0x0c0ae048d2d0b50e7d8a2870556419d6b59b6a47": { + "address": "0x0c0ae048d2d0b50e7d8a2870556419d6b59b6a47", + "symbol": "AGRF", + "decimals": 18, + "name": "AGRI FUTURE TOKEN", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x0c0ae048d2d0b50e7d8a2870556419d6b59b6a47.png", + "aggregators": ["PancakeCoinGecko", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0x166dfe78311914cf046ece73ab8667f5ee8fbaef": { + "address": "0x166dfe78311914cf046ece73ab8667f5ee8fbaef", + "symbol": "LCOM", + "decimals": 18, + "name": "LCOM", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x166dfe78311914cf046ece73ab8667f5ee8fbaef.png", + "aggregators": ["PancakeCoinGecko", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0xb0b5c93655b7932ac4516eb4fc4a8fff45b6b562": { + "address": "0xb0b5c93655b7932ac4516eb4fc4a8fff45b6b562", + "symbol": "GG", + "decimals": 18, + "name": "GameX", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xb0b5c93655b7932ac4516eb4fc4a8fff45b6b562.png", + "aggregators": ["PancakeCoinGecko", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0x0c9bb15b32334bdaa7ad319fa356dd3e8e184564": { + "address": "0x0c9bb15b32334bdaa7ad319fa356dd3e8e184564", + "symbol": "MOGUL", + "decimals": 18, + "name": "Marine Moguls", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x0c9bb15b32334bdaa7ad319fa356dd3e8e184564.png", + "aggregators": ["PancakeCoinGecko", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0x137ffd84025c582482e03d3a0b9f74c26dddfbad": { + "address": "0x137ffd84025c582482e03d3a0b9f74c26dddfbad", + "symbol": "HODL", + "decimals": 6, + "name": "HODL", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x137ffd84025c582482e03d3a0b9f74c26dddfbad.png", + "aggregators": ["PancakeCoinGecko", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0x1592c5704f9e8c20bf7707c5d42626cecda912c0": { + "address": "0x1592c5704f9e8c20bf7707c5d42626cecda912c0", + "symbol": "TODING", + "decimals": 18, + "name": "ToDing Protocol", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x1592c5704f9e8c20bf7707c5d42626cecda912c0.png", + "aggregators": ["PancakeCoinGecko", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0x0d4629ff6d6ca422178dc66a21eea0dfb182e72c": { + "address": "0x0d4629ff6d6ca422178dc66a21eea0dfb182e72c", + "symbol": "COPX", + "decimals": 18, + "name": "CopXToken", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x0d4629ff6d6ca422178dc66a21eea0dfb182e72c.png", + "aggregators": ["PancakeCoinGecko", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0x76b560b628f74bf192be09f0449abef8e456be79": { + "address": "0x76b560b628f74bf192be09f0449abef8e456be79", + "symbol": "BABYCATE", + "decimals": 9, + "name": "BabyCate", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x76b560b628f74bf192be09f0449abef8e456be79.png", + "aggregators": ["PancakeCoinGecko", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0x726a54e04f394b6e44e58a2d7cb0fec61361d10e": { + "address": "0x726a54e04f394b6e44e58a2d7cb0fec61361d10e", + "symbol": "NAWS", + "decimals": 18, + "name": "NAWS.AI", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x726a54e04f394b6e44e58a2d7cb0fec61361d10e.png", + "aggregators": ["PancakeCoinGecko", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0xb299b7697d7b63b7c8616a120c0fe7a70db2f59b": { + "address": "0xb299b7697d7b63b7c8616a120c0fe7a70db2f59b", + "symbol": "PDOGE", + "decimals": 18, + "name": "Poor Doge", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xb299b7697d7b63b7c8616a120c0fe7a70db2f59b.png", + "aggregators": ["PancakeCoinGecko", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0xd10d6f1d4b905b67735a62079743723e6f3c19c3": { + "address": "0xd10d6f1d4b905b67735a62079743723e6f3c19c3", + "symbol": "BDOGITO", + "decimals": 18, + "name": "BullDogito", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xd10d6f1d4b905b67735a62079743723e6f3c19c3.png", + "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0x8033064fe1df862271d4546c281afb581ee25c4a": { + "address": "0x8033064fe1df862271d4546c281afb581ee25c4a", + "symbol": "SPS", + "decimals": 8, + "name": "Sparklife", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x8033064fe1df862271d4546c281afb581ee25c4a.png", + "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0x48c9473e28d0d76e9691149c9c0816e6b030ac62": { + "address": "0x48c9473e28d0d76e9691149c9c0816e6b030ac62", + "symbol": "NGY", + "decimals": 18, + "name": "NAGAYA", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x48c9473e28d0d76e9691149c9c0816e6b030ac62.png", + "aggregators": ["PancakeCoinGecko", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0x465707181acba42ed01268a33f0507e320a154bd": { + "address": "0x465707181acba42ed01268a33f0507e320a154bd", + "symbol": "STEP", + "decimals": 18, + "name": "Step", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x465707181acba42ed01268a33f0507e320a154bd.png", + "aggregators": ["PancakeCoinGecko", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0x01da6501d1083464f9a2c9a8cacf89f2dc160a97": { + "address": "0x01da6501d1083464f9a2c9a8cacf89f2dc160a97", + "symbol": "TQS", + "decimals": 18, + "name": "Torq Swap", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x01da6501d1083464f9a2c9a8cacf89f2dc160a97.png", + "aggregators": ["PancakeCoinGecko", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0xd2cdfd5d26dfa1d11116b9ed7dbd7c6b88c6e1d3": { + "address": "0xd2cdfd5d26dfa1d11116b9ed7dbd7c6b88c6e1d3", + "symbol": "BLK", + "decimals": 18, + "name": "BlackCoin", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xd2cdfd5d26dfa1d11116b9ed7dbd7c6b88c6e1d3.png", + "aggregators": [ + "PancakeCoinMarketCap", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 4 + }, + "0x3028b4395f98777123c7da327010c40f3c7cc4ef": { + "address": "0x3028b4395f98777123c7da327010c40f3c7cc4ef", + "symbol": "AUC", + "decimals": 18, + "name": "Auctus", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x3028b4395f98777123c7da327010c40f3c7cc4ef.png", + "aggregators": ["PancakeCoinGecko", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0x304fc73e86601a61a6c6db5b0eafea587622acdc": { + "address": "0x304fc73e86601a61a6c6db5b0eafea587622acdc", + "symbol": "COT", + "decimals": 18, + "name": "CoTrader", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x304fc73e86601a61a6c6db5b0eafea587622acdc.png", + "aggregators": [ + "PancakeCoinMarketCap", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 4 + }, + "0xdfc3829b127761a3218bfcee7fc92e1232c9d116": { + "address": "0xdfc3829b127761a3218bfcee7fc92e1232c9d116", + "symbol": "PRCY", + "decimals": 8, + "name": "PRivaCY Coin", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xdfc3829b127761a3218bfcee7fc92e1232c9d116.png", + "aggregators": [ + "PancakeCoinMarketCap", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 4 + }, + "0x6cd871fb811224aa23b6bf1646177cdfe5106416": { + "address": "0x6cd871fb811224aa23b6bf1646177cdfe5106416", + "symbol": "GTC", + "decimals": 4, + "name": "Global Trust Coin", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x6cd871fb811224aa23b6bf1646177cdfe5106416.png", + "aggregators": ["PancakeCoinGecko", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0x70802af0ba10dd5bb33276b5b37574b6451db3d9": { + "address": "0x70802af0ba10dd5bb33276b5b37574b6451db3d9", + "symbol": "UDO", + "decimals": 18, + "name": "Unido", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x70802af0ba10dd5bb33276b5b37574b6451db3d9.png", + "aggregators": [ + "PancakeCoinMarketCap", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 4 + }, + "0x0af55d5ff28a3269d69b98680fd034f115dd53ac": { + "address": "0x0af55d5ff28a3269d69b98680fd034f115dd53ac", + "symbol": "BSL", + "decimals": 8, + "name": "BankSocial", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x0af55d5ff28a3269d69b98680fd034f115dd53ac.png", + "aggregators": ["PancakeCoinGecko", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0x9b208b117b2c4f76c1534b6f006b033220a681a4": { + "address": "0x9b208b117b2c4f76c1534b6f006b033220a681a4", + "symbol": "DINGO", + "decimals": 8, + "name": "Dingocoin", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x9b208b117b2c4f76c1534b6f006b033220a681a4.png", + "aggregators": [ + "PancakeCoinMarketCap", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 4 + }, + "0xa0cb0ce7c6d93a7ebd72952feb4407dddee8a194": { + "address": "0xa0cb0ce7c6d93a7ebd72952feb4407dddee8a194", + "symbol": "SHIBAKEN", + "decimals": 0, + "name": "Shibaken Finance", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xa0cb0ce7c6d93a7ebd72952feb4407dddee8a194.png", + "aggregators": ["PancakeCoinGecko", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0x8cd29d79f9376f353c493a7f2ff9d27df8d372de": { + "address": "0x8cd29d79f9376f353c493a7f2ff9d27df8d372de", + "symbol": "WFDP", + "decimals": 18, + "name": "WFDP", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x8cd29d79f9376f353c493a7f2ff9d27df8d372de.png", + "aggregators": ["PancakeCoinGecko", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0x7588df009c3d82378be6ab81f2108fa963c10fc8": { + "address": "0x7588df009c3d82378be6ab81f2108fa963c10fc8", + "symbol": "FITFI", + "decimals": 18, + "name": "Step App", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x7588df009c3d82378be6ab81f2108fa963c10fc8.png", + "aggregators": ["PancakeCoinGecko", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0x156ab3346823b651294766e23e6cf87254d68962": { + "address": "0x156ab3346823b651294766e23e6cf87254d68962", + "symbol": "LUNC", + "decimals": 6, + "name": "Terra Classic (Wormhole)", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x156ab3346823b651294766e23e6cf87254d68962.png", + "aggregators": [ + "PancakeCoinMarketCap", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 4 + }, + "0x524bc91dc82d6b90ef29f76a3ecaabafffd490bc": { + "address": "0x524bc91dc82d6b90ef29f76a3ecaabafffd490bc", + "symbol": "USDTET", + "decimals": 6, + "name": "Bridged Tether (Wormhole Ethereum)", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x524bc91dc82d6b90ef29f76a3ecaabafffd490bc.png", + "aggregators": ["PancakeExtended", "Socket", "Rubic", "Sonarwatch"], + "occurrences": 4 + }, + "0xc11158c5da9db1d553ed28f0c2ba1cbedd42cfcb": { + "address": "0xc11158c5da9db1d553ed28f0c2ba1cbedd42cfcb", + "symbol": "PAW", + "decimals": 18, + "name": "PAW", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xc11158c5da9db1d553ed28f0c2ba1cbedd42cfcb.png", + "aggregators": [ + "PancakeCoinMarketCap", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 4 + }, + "0x52d134c6db5889fad3542a09eaf7aa90c0fdf9e4": { + "address": "0x52d134c6db5889fad3542a09eaf7aa90c0fdf9e4", + "symbol": "BIBTA", + "decimals": 18, + "name": "Backed IBTA $ Treasury Bond 1-3yr", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x52d134c6db5889fad3542a09eaf7aa90c0fdf9e4.png", + "aggregators": ["PancakeCoinGecko", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0x9f02af2d749ee3745fb3bd6ef76f1b5e4947cf9f": { + "address": "0x9f02af2d749ee3745fb3bd6ef76f1b5e4947cf9f", + "symbol": "KEK", + "decimals": 18, + "name": "Pepe Prophet", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x9f02af2d749ee3745fb3bd6ef76f1b5e4947cf9f.png", + "aggregators": ["PancakeCoinGecko", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0x1236ea13c7339287cd00ab196aaa8217006b04dc": { + "address": "0x1236ea13c7339287cd00ab196aaa8217006b04dc", + "symbol": "EPL", + "decimals": 18, + "name": "Epic League", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x1236ea13c7339287cd00ab196aaa8217006b04dc.png", + "aggregators": ["PancakeCoinGecko", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0x8f0f56472c3e5730b1ea2f444e7829288da261e6": { + "address": "0x8f0f56472c3e5730b1ea2f444e7829288da261e6", + "symbol": "RMAV", + "decimals": 18, + "name": "Rogue MAV", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x8f0f56472c3e5730b1ea2f444e7829288da261e6.png", + "aggregators": ["PancakeCoinGecko", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0x347862372f7c8f83d69025234367ac11c5241db3": { + "address": "0x347862372f7c8f83d69025234367ac11c5241db3", + "symbol": "KIIRO", + "decimals": 8, + "name": "Kiirocoin", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x347862372f7c8f83d69025234367ac11c5241db3.png", + "aggregators": ["PancakeCoinGecko", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0x04c0599ae5a44757c0af6f9ec3b93da8976c150a": { + "address": "0x04c0599ae5a44757c0af6f9ec3b93da8976c150a", + "symbol": "WEETH", + "decimals": 18, + "name": "Wrapped eETH", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x04c0599ae5a44757c0af6f9ec3b93da8976c150a.png", + "aggregators": ["PancakeExtended", "LiFi", "Rubic", "Rango"], + "occurrences": 4 + }, + "0x2f11eeee0bf21e7661a22dbbbb9068f4ad191b86": { + "address": "0x2f11eeee0bf21e7661a22dbbbb9068f4ad191b86", + "symbol": "BNIU", + "decimals": 18, + "name": "Backed NIU Technologies", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x2f11eeee0bf21e7661a22dbbbb9068f4ad191b86.png", + "aggregators": ["PancakeCoinGecko", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0x5db5efaea47662677f2d401504520ce2ea866638": { + "address": "0x5db5efaea47662677f2d401504520ce2ea866638", + "symbol": "XCCX", + "decimals": 4, + "name": "BlockChainCoinX", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x5db5efaea47662677f2d401504520ce2ea866638.png", + "aggregators": ["PancakeCoinGecko", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0xd711d7d893de57dc13ff465763218770bd42db1d": { + "address": "0xd711d7d893de57dc13ff465763218770bd42db1d", + "symbol": "EGBP", + "decimals": 18, + "name": "ARYZE eGBP", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xd711d7d893de57dc13ff465763218770bd42db1d.png", + "aggregators": ["PancakeCoinGecko", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0x653aab62056b92641116d63927de6141d780e596": { + "address": "0x653aab62056b92641116d63927de6141d780e596", + "symbol": "ACHF", + "decimals": 18, + "name": "Anchored Coins ACHF", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x653aab62056b92641116d63927de6141d780e596.png", + "aggregators": ["PancakeCoinGecko", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0x039d2e8f097331278bd6c1415d839310e0d5ece4": { + "address": "0x039d2e8f097331278bd6c1415d839310e0d5ece4", + "symbol": "LINDA", + "decimals": 18, + "name": "Linda", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x039d2e8f097331278bd6c1415d839310e0d5ece4.png", + "aggregators": ["PancakeCoinGecko", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0xaf42a5df3c1c1427da8fc0326bd7b030a9367e78": { + "address": "0xaf42a5df3c1c1427da8fc0326bd7b030a9367e78", + "symbol": "BSKT", + "decimals": 5, + "name": "Basket", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xaf42a5df3c1c1427da8fc0326bd7b030a9367e78.png", + "aggregators": ["PancakeCoinGecko", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0x334ed8117a7cd5efa17681093c3e66af61f877c1": { + "address": "0x334ed8117a7cd5efa17681093c3e66af61f877c1", + "symbol": "AGUS", + "decimals": 18, + "name": "AGUS", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x334ed8117a7cd5efa17681093c3e66af61f877c1.png", + "aggregators": ["PancakeCoinGecko", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0xa4e8e73c8be170528385bbce78172c891f1febd7": { + "address": "0xa4e8e73c8be170528385bbce78172c891f1febd7", + "symbol": "MVP", + "decimals": 18, + "name": "MAGA VP", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xa4e8e73c8be170528385bbce78172c891f1febd7.png", + "aggregators": ["PancakeCoinGecko", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0xe309c0fe37d3696cf8c13a629dc43eaefc077418": { + "address": "0xe309c0fe37d3696cf8c13a629dc43eaefc077418", + "symbol": "SDUSD", + "decimals": 18, + "name": "Davos Protocol Staked DUSD", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xe309c0fe37d3696cf8c13a629dc43eaefc077418.png", + "aggregators": ["PancakeCoinGecko", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0x644c545703f57a4b905f4c558f52342a206e2c55": { + "address": "0x644c545703f57a4b905f4c558f52342a206e2c55", + "symbol": "JARVIS", + "decimals": 18, + "name": "Jarvis", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x644c545703f57a4b905f4c558f52342a206e2c55.png", + "aggregators": ["PancakeCoinGecko", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0x1d7b5e06fdbe4fd33f5c64c081e32b5d539751d0": { + "address": "0x1d7b5e06fdbe4fd33f5c64c081e32b5d539751d0", + "symbol": "AMCON", + "decimals": 18, + "name": "AMC Entertainment (Ondo Tokenized)", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x1d7b5e06fdbe4fd33f5c64c081e32b5d539751d0.png", + "aggregators": ["CoinGecko", "Rubic", "Rango", "Ondo"], + "occurrences": 4, + "rwaData": { + "market": { + "nextOpen": "2026-05-19T13:31:00.000Z", + "nextClose": "2026-05-18T19:59:00.000Z" + }, + "nextPause": { + "start": null, + "end": null + }, + "ticker": "AMC", + "instrumentType": "stock" + } + }, + "0x91fc7371d6de682a1e8cfcb4eb7da693312a03a4": { + "address": "0x91fc7371d6de682a1e8cfcb4eb7da693312a03a4", + "symbol": "BILION", + "decimals": 18, + "name": "Bilibili (Ondo Tokenized)", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x91fc7371d6de682a1e8cfcb4eb7da693312a03a4.png", + "aggregators": ["CoinGecko", "Rubic", "Rango", "Ondo"], + "occurrences": 4, + "rwaData": { + "market": { + "nextOpen": "2026-05-18T20:01:00.000Z", + "nextClose": "2026-05-18T19:59:00.000Z" + }, + "nextPause": { + "start": "2026-05-19T09:00:00.000Z", + "end": "2026-05-19T13:31:00.000Z" + }, + "ticker": "BILI", + "instrumentType": "stock" + } + }, + "0xe778a2e5d953c82eb9475cf3b87654226a867344": { + "address": "0xe778a2e5d953c82eb9475cf3b87654226a867344", + "symbol": "XYZON", + "decimals": 18, + "name": "Block (Ondo Tokenized)", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xe778a2e5d953c82eb9475cf3b87654226a867344.png", + "aggregators": ["CoinGecko", "Rubic", "Rango", "Ondo"], + "occurrences": 4, + "rwaData": { + "market": { + "nextOpen": "2026-05-19T00:05:00.000Z", + "nextClose": "2026-05-18T19:59:00.000Z" + }, + "nextPause": { + "start": null, + "end": null + }, + "ticker": "XYZ", + "instrumentType": "stock" + } + }, + "0xfbe22d27b6e153244882fd7bdfe7c6109918281b": { + "address": "0xfbe22d27b6e153244882fd7bdfe7c6109918281b", + "symbol": "BLSHON", + "decimals": 18, + "name": "Bullish (Ondo Tokenized)", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xfbe22d27b6e153244882fd7bdfe7c6109918281b.png", + "aggregators": ["CoinGecko", "Rubic", "Rango", "Ondo"], + "occurrences": 4, + "rwaData": { + "market": { + "nextOpen": "2026-05-19T13:31:00.000Z", + "nextClose": "2026-05-18T19:59:00.000Z" + }, + "nextPause": { + "start": null, + "end": null + }, + "ticker": "BLSH", + "instrumentType": "stock" + } + }, + "0x817942d5de16092656568e9f67f54ccb462f8989": { + "address": "0x817942d5de16092656568e9f67f54ccb462f8989", + "symbol": "GEMION", + "decimals": 18, + "name": "Gemini Space Station (Ondo Tokenized)", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x817942d5de16092656568e9f67f54ccb462f8989.png", + "aggregators": ["CoinGecko", "Rubic", "Rango", "Ondo"], + "occurrences": 4, + "rwaData": { + "market": { + "nextOpen": "2026-05-19T13:31:00.000Z", + "nextClose": "2026-05-18T19:59:00.000Z" + }, + "nextPause": { + "start": null, + "end": null + }, + "ticker": "GEMI", + "instrumentType": "stock" + } + }, + "0xab2f74804c022c5249d52e743af4340e42f5f3b6": { + "address": "0xab2f74804c022c5249d52e743af4340e42f5f3b6", + "symbol": "GRABON", + "decimals": 18, + "name": "Grab Holdings (Ondo Tokenized)", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xab2f74804c022c5249d52e743af4340e42f5f3b6.png", + "aggregators": ["CoinGecko", "Rubic", "Rango", "Ondo"], + "occurrences": 4, + "rwaData": { + "market": { + "nextOpen": "2026-05-19T13:31:00.000Z", + "nextClose": "2026-05-18T19:59:00.000Z" + }, + "nextPause": { + "start": null, + "end": null + }, + "ticker": "GRAB", + "instrumentType": "stock" + } + }, + "0x20cce48d767ed68cbba7727c4c504efe5bcb626c": { + "address": "0x20cce48d767ed68cbba7727c4c504efe5bcb626c", + "symbol": "GRNDON", + "decimals": 18, + "name": "Grindr (Ondo Tokenized)", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x20cce48d767ed68cbba7727c4c504efe5bcb626c.png", + "aggregators": ["CoinGecko", "Rubic", "Rango", "Ondo"], + "occurrences": 4, + "rwaData": { + "market": { + "nextOpen": "2026-05-19T13:31:00.000Z", + "nextClose": "2026-05-18T19:59:00.000Z" + }, + "nextPause": { + "start": null, + "end": null + }, + "ticker": "GRND", + "instrumentType": "stock" + } + }, + "0x31dabf49e4bc1af1456c1819cb6a2562154e92f3": { + "address": "0x31dabf49e4bc1af1456c1819cb6a2562154e92f3", + "symbol": "HDON", + "decimals": 18, + "name": "Home Depot (Ondo Tokenized)", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x31dabf49e4bc1af1456c1819cb6a2562154e92f3.png", + "aggregators": ["CoinGecko", "Rubic", "Rango", "Ondo"], + "occurrences": 4, + "rwaData": { + "market": { + "nextOpen": "2026-05-19T13:31:00.000Z", + "nextClose": "2026-05-18T19:59:00.000Z" + }, + "nextPause": { + "start": "2026-05-19T09:00:00.000Z", + "end": "2026-05-19T13:31:00.000Z" + }, + "ticker": "HD", + "instrumentType": "stock" + } + }, + "0x784584933c2192caa062e90d8140d94768ce62d8": { + "address": "0x784584933c2192caa062e90d8140d94768ce62d8", + "symbol": "ISRGON", + "decimals": 18, + "name": "Intuitive Surgical (Ondo Tokenized)", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x784584933c2192caa062e90d8140d94768ce62d8.png", + "aggregators": ["CoinGecko", "Rubic", "Rango", "Ondo"], + "occurrences": 4, + "rwaData": { + "market": { + "nextOpen": "2026-05-18T20:01:00.000Z", + "nextClose": "2026-05-18T19:59:00.000Z" + }, + "nextPause": { + "start": null, + "end": null + }, + "ticker": "ISRG", + "instrumentType": "stock" + } + }, + "0xfc2067e3e6a289c205151d96ef67a032f339566d": { + "address": "0xfc2067e3e6a289c205151d96ef67a032f339566d", + "symbol": "DBCON", + "decimals": 18, + "name": "Invesco DB Commodity Index Tracking Fund (Ondo Tokenized)", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xfc2067e3e6a289c205151d96ef67a032f339566d.png", + "aggregators": ["CoinGecko", "Rubic", "Rango", "Ondo"], + "occurrences": 4, + "rwaData": { + "market": { + "nextOpen": "2026-05-19T13:31:00.000Z", + "nextClose": "2026-05-18T19:59:00.000Z" + }, + "nextPause": { + "start": null, + "end": null + }, + "ticker": "DBC", + "instrumentType": "stock" + } + }, + "0x158734153f354cb326ee690c3d55f810dcb0fc90": { + "address": "0x158734153f354cb326ee690c3d55f810dcb0fc90", + "symbol": "VTION", + "decimals": 18, + "name": "Vanguard Total Stock Market ETF (Ondo Tokenized)", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x158734153f354cb326ee690c3d55f810dcb0fc90.png", + "aggregators": ["CoinGecko", "Rubic", "Rango", "Ondo"], + "occurrences": 4, + "rwaData": { + "market": { + "nextOpen": "2026-05-18T20:01:00.000Z", + "nextClose": "2026-05-18T19:59:00.000Z" + }, + "nextPause": { + "start": null, + "end": null + }, + "ticker": "VTI", + "instrumentType": "stock" + } + }, + "0xc2dd31b1b3a2f515ce0d48de712c6744c3475170": { + "address": "0xc2dd31b1b3a2f515ce0d48de712c6744c3475170", + "symbol": "VTVON", + "decimals": 18, + "name": "Vanguard Value ETF (Ondo Tokenized)", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xc2dd31b1b3a2f515ce0d48de712c6744c3475170.png", + "aggregators": ["CoinGecko", "Rubic", "Rango", "Ondo"], + "occurrences": 4, + "rwaData": { + "market": { + "nextOpen": "2026-05-18T20:01:00.000Z", + "nextClose": "2026-05-18T19:59:00.000Z" + }, + "nextPause": { + "start": null, + "end": null + }, + "ticker": "VTV", + "instrumentType": "stock" + } + }, + "0xdad07d0ca26ed4109bc00893dbee3ed4ce8ce2a4": { + "address": "0xdad07d0ca26ed4109bc00893dbee3ed4ce8ce2a4", + "symbol": "CIFRON", + "decimals": 18, + "name": "Cipher Mining (Ondo Tokenized)", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xdad07d0ca26ed4109bc00893dbee3ed4ce8ce2a4.png", + "aggregators": ["CoinGecko", "Rubic", "Rango", "Ondo"], + "occurrences": 4, + "rwaData": { + "market": { + "nextOpen": "2026-05-19T13:31:00.000Z", + "nextClose": "2026-05-18T19:59:00.000Z" + }, + "nextPause": { + "start": null, + "end": null + }, + "ticker": "CIFR", + "instrumentType": "stock" + } + }, + "0x620477782cea4c4171165396f8014edef83a13da": { + "address": "0x620477782cea4c4171165396f8014edef83a13da", + "symbol": "FIGRON", + "decimals": 18, + "name": "Figure Technology Solutions (Ondo Tokenized)", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x620477782cea4c4171165396f8014edef83a13da.png", + "aggregators": ["CoinGecko", "Rubic", "Rango", "Ondo"], + "occurrences": 4, + "rwaData": { + "market": { + "nextOpen": "2026-05-19T13:31:00.000Z", + "nextClose": "2026-05-18T19:59:00.000Z" + }, + "nextPause": { + "start": null, + "end": null + }, + "ticker": "FIGR", + "instrumentType": "stock" + } + }, + "0xb1aba049c42b6fe811766eba61f51f11c57acc4b": { + "address": "0xb1aba049c42b6fe811766eba61f51f11c57acc4b", + "symbol": "FON", + "decimals": 18, + "name": "Ford Motor (Ondo Tokenized)", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xb1aba049c42b6fe811766eba61f51f11c57acc4b.png", + "aggregators": ["CoinGecko", "Rubic", "Rango", "Ondo"], + "occurrences": 4, + "rwaData": { + "market": { + "nextOpen": "2026-05-18T20:01:00.000Z", + "nextClose": "2026-05-18T19:59:00.000Z" + }, + "nextPause": { + "start": null, + "end": null + }, + "ticker": "F", + "instrumentType": "stock" + } + }, + "0xbcf7d958791152128710565a5fc6f68342ed71c8": { + "address": "0xbcf7d958791152128710565a5fc6f68342ed71c8", + "symbol": "TMOON", + "decimals": 18, + "name": "Thermo Fisher Scientific (Ondo Tokenized)", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xbcf7d958791152128710565a5fc6f68342ed71c8.png", + "aggregators": ["CoinGecko", "Rubic", "Rango", "Ondo"], + "occurrences": 4, + "rwaData": { + "market": { + "nextOpen": "2026-05-18T20:01:00.000Z", + "nextClose": "2026-05-18T19:59:00.000Z" + }, + "nextPause": { + "start": null, + "end": null + }, + "ticker": "TMO", + "instrumentType": "stock" + } + }, + "0xd7e3317d54473dab04135fb0676623f237ff5ca9": { + "address": "0xd7e3317d54473dab04135fb0676623f237ff5ca9", + "symbol": "CLOION", + "decimals": 18, + "name": "VanEck CLO ETF (Ondo Tokenized)", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xd7e3317d54473dab04135fb0676623f237ff5ca9.png", + "aggregators": ["CoinGecko", "Rubic", "Rango", "Ondo"], + "occurrences": 4, + "rwaData": { + "market": { + "nextOpen": "2026-05-19T13:31:00.000Z", + "nextClose": "2026-05-18T19:59:00.000Z" + }, + "nextPause": { + "start": null, + "end": null + }, + "ticker": "CLOI", + "instrumentType": "stock" + } + }, + "0x1cd89241b26fcdc421fd02907d6504c8abbfe1bc": { + "address": "0x1cd89241b26fcdc421fd02907d6504c8abbfe1bc", + "symbol": "DGRWON", + "decimals": 18, + "name": "WisdomTree US Quality Dividend Growth Fund (Ondo Tokenized)", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x1cd89241b26fcdc421fd02907d6504c8abbfe1bc.png", + "aggregators": ["CoinGecko", "Rubic", "Rango", "Ondo"], + "occurrences": 4, + "rwaData": { + "market": { + "nextOpen": "2026-05-19T13:31:00.000Z", + "nextClose": "2026-05-18T19:59:00.000Z" + }, + "nextPause": { + "start": null, + "end": null + }, + "ticker": "DGRW", + "instrumentType": "stock" + } + }, + "0x0e246e05212dbbd78a354c072a92b4e5723b2fa0": { + "address": "0x0e246e05212dbbd78a354c072a92b4e5723b2fa0", + "symbol": "ADION", + "decimals": 18, + "name": "Analog Devices (Ondo Tokenized)", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x0e246e05212dbbd78a354c072a92b4e5723b2fa0.png", + "aggregators": ["CoinGecko", "Rubic", "Rango", "Ondo"], + "occurrences": 4, + "rwaData": { + "market": { + "nextOpen": "2026-05-18T20:01:00.000Z", + "nextClose": "2026-05-18T19:59:00.000Z" + }, + "nextPause": { + "start": "2026-05-20T09:00:00.000Z", + "end": "2026-05-20T13:31:00.000Z" + }, + "ticker": "ADI", + "instrumentType": "stock" + } + }, + "0x5ecc352c4640f1d26bd231dbbd171f40f7d0eec6": { + "address": "0x5ecc352c4640f1d26bd231dbbd171f40f7d0eec6", + "symbol": "AMATON", + "decimals": 18, + "name": "Applied Materials (Ondo Tokenized)", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x5ecc352c4640f1d26bd231dbbd171f40f7d0eec6.png", + "aggregators": ["CoinGecko", "Rubic", "Rango", "Ondo"], + "occurrences": 4, + "rwaData": { + "market": { + "nextOpen": "2026-05-18T20:01:00.000Z", + "nextClose": "2026-05-18T19:59:00.000Z" + }, + "nextPause": { + "start": "2026-05-20T23:52:00.000Z", + "end": "2026-05-21T00:12:00.000Z" + }, + "ticker": "AMAT", + "instrumentType": "stock" + } + }, + "0xd615468088b19fb9d4f03cb3ce9e33876ff3db99": { + "address": "0xd615468088b19fb9d4f03cb3ce9e33876ff3db99", + "symbol": "BACON", + "decimals": 18, + "name": "Bank of America (Ondo Tokenized)", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xd615468088b19fb9d4f03cb3ce9e33876ff3db99.png", + "aggregators": ["CoinGecko", "Rubic", "Rango", "Ondo"], + "occurrences": 4, + "rwaData": { + "market": { + "nextOpen": "2026-05-18T20:01:00.000Z", + "nextClose": "2026-05-18T19:59:00.000Z" + }, + "nextPause": { + "start": "2026-06-04T23:52:00.000Z", + "end": "2026-06-05T00:12:00.000Z" + }, + "ticker": "BAC", + "instrumentType": "stock" + } + }, + "0xe5ba472c98b7e4695bd856290de66bdedaffc123": { + "address": "0xe5ba472c98b7e4695bd856290de66bdedaffc123", + "symbol": "SCHWON", + "decimals": 18, + "name": "Charles Schwab (Ondo Tokenized)", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xe5ba472c98b7e4695bd856290de66bdedaffc123.png", + "aggregators": ["CoinGecko", "Rubic", "Rango", "Ondo"], + "occurrences": 4, + "rwaData": { + "market": { + "nextOpen": "2026-05-19T00:05:00.000Z", + "nextClose": "2026-05-18T19:59:00.000Z" + }, + "nextPause": { + "start": null, + "end": null + }, + "ticker": "SCHW", + "instrumentType": "stock" + } + }, + "0x0d586b51a90dc999f9bb6a0506da7f034a1d3a2e": { + "address": "0x0d586b51a90dc999f9bb6a0506da7f034a1d3a2e", + "symbol": "COPON", + "decimals": 18, + "name": "ConocoPhillips (Ondo Tokenized)", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x0d586b51a90dc999f9bb6a0506da7f034a1d3a2e.png", + "aggregators": ["CoinGecko", "Rubic", "Rango", "Ondo"], + "occurrences": 4, + "rwaData": { + "market": { + "nextOpen": "2026-05-18T20:01:00.000Z", + "nextClose": "2026-05-18T19:59:00.000Z" + }, + "nextPause": { + "start": null, + "end": null + }, + "ticker": "COP", + "instrumentType": "stock" + } + }, + "0x19904bc04c09e5d29ed216ddd105bdf103a0ba2d": { + "address": "0x19904bc04c09e5d29ed216ddd105bdf103a0ba2d", + "symbol": "CPNGON", + "decimals": 18, + "name": "Coupang (Ondo Tokenized)", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x19904bc04c09e5d29ed216ddd105bdf103a0ba2d.png", + "aggregators": ["CoinGecko", "Rubic", "Rango", "Ondo"], + "occurrences": 4, + "rwaData": { + "market": { + "nextOpen": "2026-05-18T20:01:00.000Z", + "nextClose": "2026-05-18T19:59:00.000Z" + }, + "nextPause": { + "start": null, + "end": null + }, + "ticker": "CPNG", + "instrumentType": "stock" + } + }, + "0x90ccbb75d61cb65cd73a3abb5df04a75961612b7": { + "address": "0x90ccbb75d61cb65cd73a3abb5df04a75961612b7", + "symbol": "DEON", + "decimals": 18, + "name": "Deere (Ondo Tokenized)", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x90ccbb75d61cb65cd73a3abb5df04a75961612b7.png", + "aggregators": ["CoinGecko", "Rubic", "Rango", "Ondo"], + "occurrences": 4, + "rwaData": { + "market": { + "nextOpen": "2026-05-18T20:01:00.000Z", + "nextClose": "2026-05-18T19:59:00.000Z" + }, + "nextPause": { + "start": "2026-05-21T09:00:00.000Z", + "end": "2026-05-21T13:31:00.000Z" + }, + "ticker": "DE", + "instrumentType": "stock" + } + }, + "0x70bd780076e25d087ed9c35f4e4a540522abe8cf": { + "address": "0x70bd780076e25d087ed9c35f4e4a540522abe8cf", + "symbol": "DNNON", + "decimals": 18, + "name": "Denison Mines (Ondo Tokenized)", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x70bd780076e25d087ed9c35f4e4a540522abe8cf.png", + "aggregators": ["CoinGecko", "Rubic", "Rango", "Ondo"], + "occurrences": 4, + "rwaData": { + "market": { + "nextOpen": "2026-05-19T13:31:00.000Z", + "nextClose": "2026-05-18T19:59:00.000Z" + }, + "nextPause": { + "start": null, + "end": null + }, + "ticker": "DNN", + "instrumentType": "stock" + } + }, + "0x4d209d275e3492ac08497a7a42915899c4dd5e86": { + "address": "0x4d209d275e3492ac08497a7a42915899c4dd5e86", + "symbol": "XOMON", + "decimals": 18, + "name": "Exxon Mobil (Ondo Tokenized)", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x4d209d275e3492ac08497a7a42915899c4dd5e86.png", + "aggregators": ["CoinGecko", "Rubic", "Rango", "Ondo"], + "occurrences": 4, + "rwaData": { + "market": { + "nextOpen": "2026-05-18T20:01:00.000Z", + "nextClose": "2026-05-18T19:59:00.000Z" + }, + "nextPause": { + "start": null, + "end": null + }, + "ticker": "XOM", + "instrumentType": "stock" + } + }, + "0xe96f94e10f1265dcc15f83d251f1f6758d2cd67d": { + "address": "0xe96f94e10f1265dcc15f83d251f1f6758d2cd67d", + "symbol": "FTGCON", + "decimals": 18, + "name": "First Trust Global Tactical Commodity Strategy Fund (Ondo Tokenized)", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xe96f94e10f1265dcc15f83d251f1f6758d2cd67d.png", + "aggregators": ["CoinGecko", "Rubic", "Rango", "Ondo"], + "occurrences": 4, + "rwaData": { + "market": { + "nextOpen": "2026-05-19T13:31:00.000Z", + "nextClose": "2026-05-18T19:59:00.000Z" + }, + "nextPause": { + "start": null, + "end": null + }, + "ticker": "FTGC", + "instrumentType": "stock" + } + }, + "0xd1f799cb9f5d0a02951b0755beced6c43882712f": { + "address": "0xd1f799cb9f5d0a02951b0755beced6c43882712f", + "symbol": "JNJON", + "decimals": 18, + "name": "Johnson & Johnson (Ondo Tokenized)", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xd1f799cb9f5d0a02951b0755beced6c43882712f.png", + "aggregators": ["CoinGecko", "Rubic", "Rango", "Ondo"], + "occurrences": 4, + "rwaData": { + "market": { + "nextOpen": "2026-05-18T20:01:00.000Z", + "nextClose": "2026-05-18T19:59:00.000Z" + }, + "nextPause": { + "start": "2026-05-25T23:52:00.000Z", + "end": "2026-05-26T00:12:00.000Z" + }, + "ticker": "JNJ", + "instrumentType": "stock" + } + }, + "0xc2c7fcddc37f6737ca2481ebda6b81ee279fe20c": { + "address": "0xc2c7fcddc37f6737ca2481ebda6b81ee279fe20c", + "symbol": "BZON", + "decimals": 18, + "name": "Kanzhun (Ondo Tokenized)", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xc2c7fcddc37f6737ca2481ebda6b81ee279fe20c.png", + "aggregators": ["CoinGecko", "Rubic", "Rango", "Ondo"], + "occurrences": 4, + "rwaData": { + "market": { + "nextOpen": "2026-05-19T13:31:00.000Z", + "nextClose": "2026-05-18T19:59:00.000Z" + }, + "nextPause": { + "start": "2026-05-20T09:00:00.000Z", + "end": "2026-05-20T13:31:00.000Z" + }, + "ticker": "BZ", + "instrumentType": "stock" + } + }, + "0x35895a1fa1aff7fb3204fb01257409fd75acb24c": { + "address": "0x35895a1fa1aff7fb3204fb01257409fd75acb24c", + "symbol": "LRCXON", + "decimals": 18, + "name": "Lam Research (Ondo Tokenized)", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x35895a1fa1aff7fb3204fb01257409fd75acb24c.png", + "aggregators": ["CoinGecko", "Rubic", "Rango", "Ondo"], + "occurrences": 4, + "rwaData": { + "market": { + "nextOpen": "2026-05-18T20:01:00.000Z", + "nextClose": "2026-05-18T19:59:00.000Z" + }, + "nextPause": { + "start": null, + "end": null + }, + "ticker": "LRCX", + "instrumentType": "stock" + } + }, + "0x9810beac9af3c30d14cfb61cdd557e160f60fd50": { + "address": "0x9810beac9af3c30d14cfb61cdd557e160f60fd50", + "symbol": "LION", + "decimals": 18, + "name": "Li Auto (Ondo Tokenized)", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x9810beac9af3c30d14cfb61cdd557e160f60fd50.png", + "aggregators": ["CoinGecko", "Rubic", "Rango", "Ondo"], + "occurrences": 4, + "rwaData": { + "market": { + "nextOpen": "2026-05-19T00:05:00.000Z", + "nextClose": "2026-05-18T19:59:00.000Z" + }, + "nextPause": { + "start": "2026-05-28T09:00:00.000Z", + "end": "2026-05-28T13:31:00.000Z" + }, + "ticker": "LI", + "instrumentType": "stock" + } + }, + "0x47b36ddb9dd12a8411f78226f55e8c3f0d65481f": { + "address": "0x47b36ddb9dd12a8411f78226f55e8c3f0d65481f", + "symbol": "PCGON", + "decimals": 18, + "name": "PG&E (Ondo Tokenized)", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x47b36ddb9dd12a8411f78226f55e8c3f0d65481f.png", + "aggregators": ["CoinGecko", "Rubic", "Rango", "Ondo"], + "occurrences": 4, + "rwaData": { + "market": { + "nextOpen": "2026-05-19T13:31:00.000Z", + "nextClose": "2026-05-18T19:59:00.000Z" + }, + "nextPause": { + "start": null, + "end": null + }, + "ticker": "PCG", + "instrumentType": "stock" + } + }, + "0xcfd1f0df84300ea1a4e2ba5238043a2fa5a7237c": { + "address": "0xcfd1f0df84300ea1a4e2ba5238043a2fa5a7237c", + "symbol": "PINSON", + "decimals": 18, + "name": "Pinterest (Ondo Tokenized)", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xcfd1f0df84300ea1a4e2ba5238043a2fa5a7237c.png", + "aggregators": ["CoinGecko", "Rubic", "Rango", "Ondo"], + "occurrences": 4, + "rwaData": { + "market": { + "nextOpen": "2026-05-18T20:01:00.000Z", + "nextClose": "2026-05-18T19:59:00.000Z" + }, + "nextPause": { + "start": null, + "end": null + }, + "ticker": "PINS", + "instrumentType": "stock" + } + }, + "0x44fde2c6bc2c2b54962c69fcef57a2a50121dbd7": { + "address": "0x44fde2c6bc2c2b54962c69fcef57a2a50121dbd7", + "symbol": "RTXON", + "decimals": 18, + "name": "RTX (Ondo Tokenized)", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x44fde2c6bc2c2b54962c69fcef57a2a50121dbd7.png", + "aggregators": ["CoinGecko", "Rubic", "Rango", "Ondo"], + "occurrences": 4, + "rwaData": { + "market": { + "nextOpen": "2026-05-18T20:01:00.000Z", + "nextClose": "2026-05-18T19:59:00.000Z" + }, + "nextPause": { + "start": "2026-05-21T23:52:00.000Z", + "end": "2026-05-22T08:10:00.000Z" + }, + "ticker": "RTX", + "instrumentType": "stock" + } + }, + "0xf325884d9bcac457271fe7f7b6be1765348fcca2": { + "address": "0xf325884d9bcac457271fe7f7b6be1765348fcca2", + "symbol": "SNAPON", + "decimals": 18, + "name": "Snap (Ondo Tokenized)", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xf325884d9bcac457271fe7f7b6be1765348fcca2.png", + "aggregators": ["CoinGecko", "Rubic", "Rango", "Ondo"], + "occurrences": 4, + "rwaData": { + "market": { + "nextOpen": "2026-05-19T13:31:00.000Z", + "nextClose": "2026-05-18T19:59:00.000Z" + }, + "nextPause": { + "start": null, + "end": null + }, + "ticker": "SNAP", + "instrumentType": "stock" + } + }, + "0xad56701d9e57957e28e546db7db508a16d4f86cc": { + "address": "0xad56701d9e57957e28e546db7db508a16d4f86cc", + "symbol": "WULFON", + "decimals": 18, + "name": "Terawulf (Ondo Tokenized)", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xad56701d9e57957e28e546db7db508a16d4f86cc.png", + "aggregators": ["CoinGecko", "Rubic", "Rango", "Ondo"], + "occurrences": 4, + "rwaData": { + "market": { + "nextOpen": "2026-05-19T13:31:00.000Z", + "nextClose": "2026-05-18T19:59:00.000Z" + }, + "nextPause": { + "start": null, + "end": null + }, + "ticker": "WULF", + "instrumentType": "stock" + } + }, + "0xca3a5c955f1f01f20aacf9501b03e4aa235e478b": { + "address": "0xca3a5c955f1f01f20aacf9501b03e4aa235e478b", + "symbol": "TXNON", + "decimals": 18, + "name": "Texas Instruments (Ondo Tokenized)", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xca3a5c955f1f01f20aacf9501b03e4aa235e478b.png", + "aggregators": ["CoinGecko", "Rubic", "Rango", "Ondo"], + "occurrences": 4, + "rwaData": { + "market": { + "nextOpen": "2026-05-18T20:01:00.000Z", + "nextClose": "2026-05-18T19:59:00.000Z" + }, + "nextPause": { + "start": null, + "end": null + }, + "ticker": "TXN", + "instrumentType": "stock" + } + }, + "0xa3b089c886e6d721f49def8e050f3b9d4362560b": { + "address": "0xa3b089c886e6d721f49def8e050f3b9d4362560b", + "symbol": "VZON", + "decimals": 18, + "name": "Verizon (Ondo Tokenized)", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xa3b089c886e6d721f49def8e050f3b9d4362560b.png", + "aggregators": ["CoinGecko", "Rubic", "Rango", "Ondo"], + "occurrences": 4, + "rwaData": { + "market": { + "nextOpen": "2026-05-18T20:01:00.000Z", + "nextClose": "2026-05-18T19:59:00.000Z" + }, + "nextPause": { + "start": null, + "end": null + }, + "ticker": "VZ", + "instrumentType": "stock" + } + }, + "0x9cea8a7be1ab0320b709d368ad60d8500f55995f": { + "address": "0x9cea8a7be1ab0320b709d368ad60d8500f55995f", + "symbol": "VRTON", + "decimals": 18, + "name": "Vertiv (Ondo Tokenized)", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x9cea8a7be1ab0320b709d368ad60d8500f55995f.png", + "aggregators": ["CoinGecko", "Rubic", "Rango", "Ondo"], + "occurrences": 4, + "rwaData": { + "market": { + "nextOpen": "2026-05-18T20:01:00.000Z", + "nextClose": "2026-05-18T19:59:00.000Z" + }, + "nextPause": { + "start": null, + "end": null + }, + "ticker": "VRT", + "instrumentType": "stock" + } + }, + "0xf2c24c47805f4f72d3919c8674bfdd401505794b": { + "address": "0xf2c24c47805f4f72d3919c8674bfdd401505794b", + "symbol": "VSTON", + "decimals": 18, + "name": "Vistra (Ondo Tokenized)", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xf2c24c47805f4f72d3919c8674bfdd401505794b.png", + "aggregators": ["CoinGecko", "Rubic", "Rango", "Ondo"], + "occurrences": 4, + "rwaData": { + "market": { + "nextOpen": "2026-05-18T20:01:00.000Z", + "nextClose": "2026-05-18T19:59:00.000Z" + }, + "nextPause": { + "start": "2026-06-21T23:52:00.000Z", + "end": "2026-06-22T08:10:00.000Z" + }, + "ticker": "VST", + "instrumentType": "stock" + } + }, + "0xf4fd75764a5c086fb12f822be2ca318b3a362dc3": { + "address": "0xf4fd75764a5c086fb12f822be2ca318b3a362dc3", + "symbol": "USFRON", + "decimals": 18, + "name": "WisdomTree Floating Rate Treasury Fund (Ondo Tokenized)", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xf4fd75764a5c086fb12f822be2ca318b3a362dc3.png", + "aggregators": ["CoinGecko", "Rubic", "Rango", "Ondo"], + "occurrences": 4, + "rwaData": { + "market": { + "nextOpen": "2026-05-18T20:01:00.000Z", + "nextClose": "2026-05-18T19:59:00.000Z" + }, + "nextPause": { + "start": null, + "end": null + }, + "ticker": "USFR", + "instrumentType": "stock" + } + }, + "0x53a8c5fc5643b437779742f494691e6b7c660a8b": { + "address": "0x53a8c5fc5643b437779742f494691e6b7c660a8b", + "symbol": "COFON", + "decimals": 18, + "name": "Capital One (Ondo Tokenized)", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x53a8c5fc5643b437779742f494691e6b7c660a8b.png", + "aggregators": ["CoinGecko", "Rubic", "Rango", "Ondo"], + "occurrences": 4, + "rwaData": { + "market": { + "nextOpen": "2026-05-18T20:01:00.000Z", + "nextClose": "2026-05-18T19:59:00.000Z" + }, + "nextPause": { + "start": "2026-05-18T23:52:00.000Z", + "end": "2026-05-19T00:12:00.000Z" + }, + "ticker": "COF", + "instrumentType": "stock" + } + }, + "0xbbe4dfe7a349fb72aec6f52d5cd9bdd78ae8f313": { + "address": "0xbbe4dfe7a349fb72aec6f52d5cd9bdd78ae8f313", + "symbol": "TLNON", + "decimals": 18, + "name": "Talen Energy (Ondo Tokenized)", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xbbe4dfe7a349fb72aec6f52d5cd9bdd78ae8f313.png", + "aggregators": ["CoinGecko", "Rubic", "Rango", "Ondo"], + "occurrences": 4, + "rwaData": { + "market": { + "nextOpen": "2026-05-19T13:31:00.000Z", + "nextClose": "2026-05-18T19:59:00.000Z" + }, + "nextPause": { + "start": null, + "end": null + }, + "ticker": "TLN", + "instrumentType": "stock" + } + }, + "0x6459303f58244ff1e7a42b90aa3782dfb6ca6969": { + "address": "0x6459303f58244ff1e7a42b90aa3782dfb6ca6969", + "symbol": "TCOMON", + "decimals": 18, + "name": "Trip.com Group (Ondo Tokenized)", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x6459303f58244ff1e7a42b90aa3782dfb6ca6969.png", + "aggregators": ["CoinGecko", "Rubic", "Rango", "Ondo"], + "occurrences": 4, + "rwaData": { + "market": { + "nextOpen": "2026-05-18T20:01:00.000Z", + "nextClose": "2026-05-18T19:59:00.000Z" + }, + "nextPause": { + "start": "2026-05-18T09:00:00.000Z", + "end": "2026-05-18T23:30:00.000Z" + }, + "ticker": "TCOM", + "instrumentType": "stock" + } + }, + "0x65c8743a5a266c3512eabd34e65ade42d4355ef1": { + "address": "0x65c8743a5a266c3512eabd34e65ade42d4355ef1", + "symbol": "BPLC", + "decimals": 18, + "name": "BlackPearl", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x65c8743a5a266c3512eabd34e65ade42d4355ef1.png", + "aggregators": ["PancakeCoinGecko", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0x976e33b07565b0c05b08b2e13affd3113e3d178d": { + "address": "0x976e33b07565b0c05b08b2e13affd3113e3d178d", + "symbol": "AGA", + "decimals": 4, + "name": "AGA", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x976e33b07565b0c05b08b2e13affd3113e3d178d.png", + "aggregators": ["PancakeCoinGecko", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0x764a726d9ced0433a8d7643335919deb03a9a935": { + "address": "0x764a726d9ced0433a8d7643335919deb03a9a935", + "symbol": "POKT", + "decimals": 6, + "name": "Pocket Network", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x764a726d9ced0433a8d7643335919deb03a9a935.png", + "aggregators": ["PancakeCoinGecko", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0x388d819724dd6d71760a38f00dc01d310d879771": { + "address": "0x388d819724dd6d71760a38f00dc01d310d879771", + "symbol": "JM", + "decimals": 8, + "name": "JustMoney", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x388d819724dd6d71760a38f00dc01d310d879771.png", + "aggregators": ["PancakeCoinGecko", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0x13ef69f64de07d14517b667728db8b9f23856a38": { + "address": "0x13ef69f64de07d14517b667728db8b9f23856a38", + "symbol": "PLQ", + "decimals": 18, + "name": "Planq", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x13ef69f64de07d14517b667728db8b9f23856a38.png", + "aggregators": [ + "PancakeCoinMarketCap", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 4 + }, + "0x4d4d883f920f7c0c36a1be71a02aa0cde2aa22d1": { + "address": "0x4d4d883f920f7c0c36a1be71a02aa0cde2aa22d1", + "symbol": "OPCH", + "decimals": 18, + "name": "Opticash", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x4d4d883f920f7c0c36a1be71a02aa0cde2aa22d1.png", + "aggregators": ["PancakeCoinGecko", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0xffa188493c15dfaf2c206c97d8633377847b6a52": { + "address": "0xffa188493c15dfaf2c206c97d8633377847b6a52", + "symbol": "WEFI", + "decimals": 18, + "name": "Wefi", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xffa188493c15dfaf2c206c97d8633377847b6a52.png", + "aggregators": ["PancakeCoinGecko", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0x20c64dee8fda5269a78f2d5bdba861ca1d83df7a": { + "address": "0x20c64dee8fda5269a78f2d5bdba861ca1d83df7a", + "symbol": "BHIGH", + "decimals": 18, + "name": "Backed HIGH € High Yield Corp Bond", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x20c64dee8fda5269a78f2d5bdba861ca1d83df7a.png", + "aggregators": ["PancakeCoinGecko", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0x2f123cf3f37ce3328cc9b5b8415f9ec5109b45e7": { + "address": "0x2f123cf3f37ce3328cc9b5b8415f9ec5109b45e7", + "symbol": "BC3M", + "decimals": 18, + "name": "Backed GOVIES 0-6 months EURO", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x2f123cf3f37ce3328cc9b5b8415f9ec5109b45e7.png", + "aggregators": ["PancakeCoinGecko", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0xb55ee890426341fe45ee6dc788d2d93d25b59063": { + "address": "0xb55ee890426341fe45ee6dc788d2d93d25b59063", + "symbol": "LOVE", + "decimals": 18, + "name": "Love.io", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xb55ee890426341fe45ee6dc788d2d93d25b59063.png", + "aggregators": ["PancakeCoinGecko", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0xda31d0d1bc934fc34f7189e38a413ca0a5e8b44f": { + "address": "0xda31d0d1bc934fc34f7189e38a413ca0a5e8b44f", + "symbol": "$BSSB", + "decimals": 18, + "name": "BitStable Finance", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xda31d0d1bc934fc34f7189e38a413ca0a5e8b44f.png", + "aggregators": ["PancakeCoinGecko", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0x15fa5d3dbd11a831b72b92c1705bc9f801e233cb": { + "address": "0x15fa5d3dbd11a831b72b92c1705bc9f801e233cb", + "symbol": "PXP", + "decimals": 18, + "name": "PointPay", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x15fa5d3dbd11a831b72b92c1705bc9f801e233cb.png", + "aggregators": ["PancakeCoinGecko", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0xf8cc82e3427443f36b6d3925110cefa8a5da93d0": { + "address": "0xf8cc82e3427443f36b6d3925110cefa8a5da93d0", + "symbol": "ROSA", + "decimals": 18, + "name": "Rosa Inu", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xf8cc82e3427443f36b6d3925110cefa8a5da93d0.png", + "aggregators": ["PancakeCoinGecko", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0x259b0f9494b3f02c652fa11417b94cb700f1f7d8": { + "address": "0x259b0f9494b3f02c652fa11417b94cb700f1f7d8", + "symbol": "CVPAD", + "decimals": 18, + "name": "CV Pad", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x259b0f9494b3f02c652fa11417b94cb700f1f7d8.png", + "aggregators": ["PancakeCoinGecko", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0x23ae4fd8e7844cdbc97775496ebd0e8248656028": { + "address": "0x23ae4fd8e7844cdbc97775496ebd0e8248656028", + "symbol": "XAUM", + "decimals": 18, + "name": "Matrixdock Gold", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x23ae4fd8e7844cdbc97775496ebd0e8248656028.png", + "aggregators": ["PancakeExtended", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0x96c7957030aa8b1fd3c6e0ee3d84c4695c6eae9c": { + "address": "0x96c7957030aa8b1fd3c6e0ee3d84c4695c6eae9c", + "symbol": "AMB", + "decimals": 18, + "name": "AirDAO", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x96c7957030aa8b1fd3c6e0ee3d84c4695c6eae9c.png", + "aggregators": ["PancakeCoinGecko", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0x8677abad7b458bf16a0fb2676dfc7d3f55ac202a": { + "address": "0x8677abad7b458bf16a0fb2676dfc7d3f55ac202a", + "symbol": "ABBVON", + "decimals": 18, + "name": "AbbVie (Ondo Tokenized)", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x8677abad7b458bf16a0fb2676dfc7d3f55ac202a.png", + "aggregators": ["CoinGecko", "Rubic", "Rango", "Ondo"], + "occurrences": 4, + "rwaData": { + "market": { + "nextOpen": "2026-05-18T20:01:00.000Z", + "nextClose": "2026-05-18T19:59:00.000Z" + }, + "nextPause": { + "start": null, + "end": null + }, + "ticker": "ABBV", + "instrumentType": "stock" + } + }, + "0x538e2838f9ebc9b891399df4a8dcc42890d9dc20": { + "address": "0x538e2838f9ebc9b891399df4a8dcc42890d9dc20", + "symbol": "ANETON", + "decimals": 18, + "name": "Arista Networks (Ondo Tokenized)", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x538e2838f9ebc9b891399df4a8dcc42890d9dc20.png", + "aggregators": ["CoinGecko", "Rubic", "Rango", "Ondo"], + "occurrences": 4, + "rwaData": { + "market": { + "nextOpen": "2026-05-18T20:01:00.000Z", + "nextClose": "2026-05-18T19:59:00.000Z" + }, + "nextPause": { + "start": null, + "end": null + }, + "ticker": "ANET", + "instrumentType": "stock" + } + }, + "0xe2ac868f2fd097086d83bc939248e5ae08d35da4": { + "address": "0xe2ac868f2fd097086d83bc939248e5ae08d35da4", + "symbol": "BTGON", + "decimals": 18, + "name": "B2Gold (Ondo Tokenized)", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xe2ac868f2fd097086d83bc939248e5ae08d35da4.png", + "aggregators": ["CoinGecko", "Rubic", "Rango", "Ondo"], + "occurrences": 4, + "rwaData": { + "market": { + "nextOpen": "2026-05-19T13:31:00.000Z", + "nextClose": "2026-05-18T19:59:00.000Z" + }, + "nextPause": { + "start": "2026-06-09T23:52:00.000Z", + "end": "2026-06-10T13:40:00.000Z" + }, + "ticker": "BTG", + "instrumentType": "stock" + } + }, + "0x7ba995f1662a01f3be0dc299ce94bb7e9c7075f5": { + "address": "0x7ba995f1662a01f3be0dc299ce94bb7e9c7075f5", + "symbol": "BBAION", + "decimals": 18, + "name": "BigBear.ai Holdings (Ondo Tokenized)", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x7ba995f1662a01f3be0dc299ce94bb7e9c7075f5.png", + "aggregators": ["CoinGecko", "Rubic", "Rango", "Ondo"], + "occurrences": 4, + "rwaData": { + "market": { + "nextOpen": "2026-05-18T20:01:00.000Z", + "nextClose": "2026-05-18T19:59:00.000Z" + }, + "nextPause": { + "start": null, + "end": null + }, + "ticker": "BBAI", + "instrumentType": "stock" + } + }, + "0xc145dc2ebdbe8ead1fecdebf46c76eb1fdd0104d": { + "address": "0xc145dc2ebdbe8ead1fecdebf46c76eb1fdd0104d", + "symbol": "CVNAON", + "decimals": 18, + "name": "Carvana (Ondo Tokenized)", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xc145dc2ebdbe8ead1fecdebf46c76eb1fdd0104d.png", + "aggregators": ["CoinGecko", "Rubic", "Rango", "Ondo"], + "occurrences": 4, + "rwaData": { + "market": { + "nextOpen": "2026-05-18T20:01:00.000Z", + "nextClose": "2026-05-18T19:59:00.000Z" + }, + "nextPause": { + "start": null, + "end": null + }, + "ticker": "CVNA", + "instrumentType": "stock" + } + }, + "0xcf3e84e62002ca459db81b2032d7fe13715bad51": { + "address": "0xcf3e84e62002ca459db81b2032d7fe13715bad51", + "symbol": "PDBCON", + "decimals": 18, + "name": "Invesco Optimum Yld Dvsfd Cmd Str No K-1 ETF (Ondo Tokenized)", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xcf3e84e62002ca459db81b2032d7fe13715bad51.png", + "aggregators": ["CoinGecko", "Rubic", "Rango", "Ondo"], + "occurrences": 4, + "rwaData": { + "market": { + "nextOpen": "2026-05-19T13:31:00.000Z", + "nextClose": "2026-05-18T19:59:00.000Z" + }, + "nextPause": { + "start": null, + "end": null + }, + "ticker": "PDBC", + "instrumentType": "stock" + } + }, + "0x940f442746d9ae699e63c378d52c4494ea02684f": { + "address": "0x940f442746d9ae699e63c378d52c4494ea02684f", + "symbol": "BINCON", + "decimals": 18, + "name": "iShares Flexible Income Active ETF (Ondo Tokenized)", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x940f442746d9ae699e63c378d52c4494ea02684f.png", + "aggregators": ["CoinGecko", "Rubic", "Rango", "Ondo"], + "occurrences": 4, + "rwaData": { + "market": { + "nextOpen": "2026-05-18T20:01:00.000Z", + "nextClose": "2026-05-18T19:59:00.000Z" + }, + "nextPause": { + "start": null, + "end": null + }, + "ticker": "BINC", + "instrumentType": "stock" + } + }, + "0x84719a1082ed487c7eeac7d69885e3cc2009ea78": { + "address": "0x84719a1082ed487c7eeac7d69885e3cc2009ea78", + "symbol": "JAAAON", + "decimals": 18, + "name": "Janus Henderson AAA CLO ETF (Ondo Tokenized)", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x84719a1082ed487c7eeac7d69885e3cc2009ea78.png", + "aggregators": ["CoinGecko", "Rubic", "Rango", "Ondo"], + "occurrences": 4, + "rwaData": { + "market": { + "nextOpen": "2026-05-18T20:01:00.000Z", + "nextClose": "2026-05-18T19:59:00.000Z" + }, + "nextPause": { + "start": null, + "end": null + }, + "ticker": "JAAA", + "instrumentType": "stock" + } + }, + "0x2ec46eed30c94caa5979e6a0395abe824138335f": { + "address": "0x2ec46eed30c94caa5979e6a0395abe824138335f", + "symbol": "LOWON", + "decimals": 18, + "name": "Lowe's (Ondo Tokenized)", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x2ec46eed30c94caa5979e6a0395abe824138335f.png", + "aggregators": ["CoinGecko", "Rubic", "Rango", "Ondo"], + "occurrences": 4, + "rwaData": { + "market": { + "nextOpen": "2026-05-19T13:31:00.000Z", + "nextClose": "2026-05-18T19:59:00.000Z" + }, + "nextPause": { + "start": "2026-05-20T09:00:00.000Z", + "end": "2026-05-20T13:31:00.000Z" + }, + "ticker": "LOW", + "instrumentType": "stock" + } + }, + "0xf49046aae76eaeb7ffd3ef116ce0f7cd0f52d93e": { + "address": "0xf49046aae76eaeb7ffd3ef116ce0f7cd0f52d93e", + "symbol": "MTZON", + "decimals": 18, + "name": "MasTec (Ondo Tokenized)", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xf49046aae76eaeb7ffd3ef116ce0f7cd0f52d93e.png", + "aggregators": ["CoinGecko", "Rubic", "Rango", "Ondo"], + "occurrences": 4, + "rwaData": { + "market": { + "nextOpen": "2026-05-19T13:31:00.000Z", + "nextClose": "2026-05-18T19:59:00.000Z" + }, + "nextPause": { + "start": null, + "end": null + }, + "ticker": "MTZ", + "instrumentType": "stock" + } + }, + "0x869027261075c3c239d6a26842579b93802606f4": { + "address": "0x869027261075c3c239d6a26842579b93802606f4", + "symbol": "MRKON", + "decimals": 18, + "name": "Merck (Ondo Tokenized)", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x869027261075c3c239d6a26842579b93802606f4.png", + "aggregators": ["CoinGecko", "Rubic", "Rango", "Ondo"], + "occurrences": 4, + "rwaData": { + "market": { + "nextOpen": "2026-05-18T20:01:00.000Z", + "nextClose": "2026-05-18T19:59:00.000Z" + }, + "nextPause": { + "start": null, + "end": null + }, + "ticker": "MRK", + "instrumentType": "stock" + } + }, + "0x01486675da0764ee780ea7cb65c33062e9b2d28c": { + "address": "0x01486675da0764ee780ea7cb65c33062e9b2d28c", + "symbol": "MRNAON", + "decimals": 18, + "name": "Moderna (Ondo Tokenized)", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x01486675da0764ee780ea7cb65c33062e9b2d28c.png", + "aggregators": ["CoinGecko", "Rubic", "Rango", "Ondo"], + "occurrences": 4, + "rwaData": { + "market": { + "nextOpen": "2026-05-18T20:01:00.000Z", + "nextClose": "2026-05-18T19:59:00.000Z" + }, + "nextPause": { + "start": null, + "end": null + }, + "ticker": "MRNA", + "instrumentType": "stock" + } + }, + "0x4baf4dc56cf6a525a0874e25cc6372a6a8915135": { + "address": "0x4baf4dc56cf6a525a0874e25cc6372a6a8915135", + "symbol": "MPON", + "decimals": 18, + "name": "MP Materials (Ondo Tokenized)", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x4baf4dc56cf6a525a0874e25cc6372a6a8915135.png", + "aggregators": ["CoinGecko", "Rubic", "Rango", "Ondo"], + "occurrences": 4, + "rwaData": { + "market": { + "nextOpen": "2026-05-18T20:01:00.000Z", + "nextClose": "2026-05-18T19:59:00.000Z" + }, + "nextPause": { + "start": null, + "end": null + }, + "ticker": "MP", + "instrumentType": "stock" + } + }, + "0x282973969118f9fe39bf2ff3d8dd1efee82ccb11": { + "address": "0x282973969118f9fe39bf2ff3d8dd1efee82ccb11", + "symbol": "NTESON", + "decimals": 18, + "name": "NetEase (Ondo Tokenized)", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x282973969118f9fe39bf2ff3d8dd1efee82ccb11.png", + "aggregators": ["CoinGecko", "Rubic", "Rango", "Ondo"], + "occurrences": 4, + "rwaData": { + "market": { + "nextOpen": "2026-05-19T13:31:00.000Z", + "nextClose": "2026-05-18T19:59:00.000Z" + }, + "nextPause": { + "start": "2026-05-21T09:00:00.000Z", + "end": "2026-05-21T13:31:00.000Z" + }, + "ticker": "NTES", + "instrumentType": "stock" + } + }, + "0xc6f9edbee6042a237d72493bbda3ee2c3c62f708": { + "address": "0xc6f9edbee6042a237d72493bbda3ee2c3c62f708", + "symbol": "NIOON", + "decimals": 18, + "name": "NIO (Ondo Tokenized)", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xc6f9edbee6042a237d72493bbda3ee2c3c62f708.png", + "aggregators": ["CoinGecko", "Rubic", "Rango", "Ondo"], + "occurrences": 4, + "rwaData": { + "market": { + "nextOpen": "2026-05-18T20:01:00.000Z", + "nextClose": "2026-05-18T19:59:00.000Z" + }, + "nextPause": { + "start": "2026-05-21T09:00:00.000Z", + "end": "2026-05-21T13:31:00.000Z" + }, + "ticker": "NIO", + "instrumentType": "stock" + } + }, + "0x01b5a4ac600be98448dbefbb78bcdf38262552cc": { + "address": "0x01b5a4ac600be98448dbefbb78bcdf38262552cc", + "symbol": "OXYON", + "decimals": 18, + "name": "Occidental Petroleum (Ondo Tokenized)", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x01b5a4ac600be98448dbefbb78bcdf38262552cc.png", + "aggregators": ["CoinGecko", "Rubic", "Rango", "Ondo"], + "occurrences": 4, + "rwaData": { + "market": { + "nextOpen": "2026-05-18T20:01:00.000Z", + "nextClose": "2026-05-18T19:59:00.000Z" + }, + "nextPause": { + "start": "2026-06-09T23:52:00.000Z", + "end": "2026-06-10T08:10:00.000Z" + }, + "ticker": "OXY", + "instrumentType": "stock" + } + }, + "0xb35a9eab5d25282f4e668798b629a9294e9a47aa": { + "address": "0xb35a9eab5d25282f4e668798b629a9294e9a47aa", + "symbol": "ONON", + "decimals": 18, + "name": "ON Semiconductor (Ondo Tokenized)", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xb35a9eab5d25282f4e668798b629a9294e9a47aa.png", + "aggregators": ["CoinGecko", "Rubic", "Rango", "Ondo"], + "occurrences": 4, + "rwaData": { + "market": { + "nextOpen": "2026-05-19T13:31:00.000Z", + "nextClose": "2026-05-18T19:59:00.000Z" + }, + "nextPause": { + "start": null, + "end": null + }, + "ticker": "ON", + "instrumentType": "stock" + } + }, + "0x88672043905bdd272df55a5a7bb1b7e1e693cbc5": { + "address": "0x88672043905bdd272df55a5a7bb1b7e1e693cbc5", + "symbol": "OPRAON", + "decimals": 18, + "name": "Opera (Ondo Tokenized)", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x88672043905bdd272df55a5a7bb1b7e1e693cbc5.png", + "aggregators": ["CoinGecko", "Rubic", "Rango", "Ondo"], + "occurrences": 4, + "rwaData": { + "market": { + "nextOpen": "2026-05-19T13:31:00.000Z", + "nextClose": "2026-05-18T19:59:00.000Z" + }, + "nextPause": { + "start": null, + "end": null + }, + "ticker": "OPRA", + "instrumentType": "stock" + } + }, + "0xb0752aa50b089ee6ea9acd51373207fa460e87bb": { + "address": "0xb0752aa50b089ee6ea9acd51373207fa460e87bb", + "symbol": "OSCRON", + "decimals": 18, + "name": "Oscar Health (Ondo Tokenized)", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xb0752aa50b089ee6ea9acd51373207fa460e87bb.png", + "aggregators": ["CoinGecko", "Rubic", "Rango", "Ondo"], + "occurrences": 4, + "rwaData": { + "market": { + "nextOpen": "2026-05-19T13:31:00.000Z", + "nextClose": "2026-05-18T19:59:00.000Z" + }, + "nextPause": { + "start": null, + "end": null + }, + "ticker": "OSCR", + "instrumentType": "stock" + } + }, + "0x3802dc739ef9e226f36421a9c15efa519153bbbe": { + "address": "0x3802dc739ef9e226f36421a9c15efa519153bbbe", + "symbol": "PSQON", + "decimals": 18, + "name": "ProShares Short QQQ (Ondo Tokenized)", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x3802dc739ef9e226f36421a9c15efa519153bbbe.png", + "aggregators": ["CoinGecko", "Rubic", "Rango", "Ondo"], + "occurrences": 4, + "rwaData": { + "market": { + "nextOpen": "2026-05-18T20:01:00.000Z", + "nextClose": "2026-05-18T19:59:00.000Z" + }, + "nextPause": { + "start": null, + "end": null + }, + "ticker": "PSQ", + "instrumentType": "stock" + } + }, + "0xedcf71b2e2217064038adcb54a3c3a5fc3488ef1": { + "address": "0xedcf71b2e2217064038adcb54a3c3a5fc3488ef1", + "symbol": "SOUNON", + "decimals": 18, + "name": "SoundHound AI (Ondo Tokenized)", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xedcf71b2e2217064038adcb54a3c3a5fc3488ef1.png", + "aggregators": ["CoinGecko", "Rubic", "Rango", "Ondo"], + "occurrences": 4, + "rwaData": { + "market": { + "nextOpen": "2026-05-18T20:01:00.000Z", + "nextClose": "2026-05-18T19:59:00.000Z" + }, + "nextPause": { + "start": null, + "end": null + }, + "ticker": "SOUN", + "instrumentType": "stock" + } + }, + "0xe23f03d2907cdc38a10f6ccdc1a157bf1afe51de": { + "address": "0xe23f03d2907cdc38a10f6ccdc1a157bf1afe51de", + "symbol": "NIKLON", + "decimals": 18, + "name": "Sprott Nickel Miners ETF (Ondo Tokenized)", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xe23f03d2907cdc38a10f6ccdc1a157bf1afe51de.png", + "aggregators": ["CoinGecko", "Rubic", "Rango", "Ondo"], + "occurrences": 4, + "rwaData": { + "market": { + "nextOpen": "2026-05-19T13:31:00.000Z", + "nextClose": "2026-05-18T19:59:00.000Z" + }, + "nextPause": { + "start": null, + "end": null + }, + "ticker": "NIKL", + "instrumentType": "stock" + } + }, + "0x4255279af47cf10efb9a5c8839f90170f4ef759f": { + "address": "0x4255279af47cf10efb9a5c8839f90170f4ef759f", + "symbol": "TON", + "decimals": 18, + "name": "AT&T (Ondo Tokenized)", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x4255279af47cf10efb9a5c8839f90170f4ef759f.png", + "aggregators": ["CoinGecko", "Rubic", "Rango", "Ondo"], + "occurrences": 4, + "rwaData": { + "market": { + "nextOpen": "2026-05-18T20:01:00.000Z", + "nextClose": "2026-05-18T19:59:00.000Z" + }, + "nextPause": { + "start": null, + "end": null + }, + "ticker": "T", + "instrumentType": "stock" + } + }, + "0x274b0cb6db9473245a31cdea9b789786f4108e4b": { + "address": "0x274b0cb6db9473245a31cdea9b789786f4108e4b", + "symbol": "CATON", + "decimals": 18, + "name": "Caterpillar (Ondo Tokenized)", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x274b0cb6db9473245a31cdea9b789786f4108e4b.png", + "aggregators": ["CoinGecko", "Rubic", "Rango", "Ondo"], + "occurrences": 4, + "rwaData": { + "market": { + "nextOpen": "2026-05-18T20:01:00.000Z", + "nextClose": "2026-05-18T19:59:00.000Z" + }, + "nextPause": { + "start": null, + "end": null + }, + "ticker": "CAT", + "instrumentType": "stock" + } + }, + "0x8ddb97556f6ae98b4d408c56b167139fe1cbe3e8": { + "address": "0x8ddb97556f6ae98b4d408c56b167139fe1cbe3e8", + "symbol": "CON", + "decimals": 18, + "name": "Citigroup (Ondo Tokenized)", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x8ddb97556f6ae98b4d408c56b167139fe1cbe3e8.png", + "aggregators": ["CoinGecko", "Rubic", "Rango", "Ondo"], + "occurrences": 4, + "rwaData": { + "market": { + "nextOpen": "2026-05-18T20:01:00.000Z", + "nextClose": "2026-05-18T19:59:00.000Z" + }, + "nextPause": { + "start": null, + "end": null + }, + "ticker": "C", + "instrumentType": "stock" + } + }, + "0x4ef383f521e803863a33fca8f3f861e53ef9ef9b": { + "address": "0x4ef383f521e803863a33fca8f3f861e53ef9ef9b", + "symbol": "CLOAON", + "decimals": 18, + "name": "iShares AAA CLO Active ETF (Ondo Tokenized)", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x4ef383f521e803863a33fca8f3f861e53ef9ef9b.png", + "aggregators": ["CoinGecko", "Rubic", "Rango", "Ondo"], + "occurrences": 4, + "rwaData": { + "market": { + "nextOpen": "2026-05-19T13:31:00.000Z", + "nextClose": "2026-05-18T19:59:00.000Z" + }, + "nextPause": { + "start": null, + "end": null + }, + "ticker": "CLOA", + "instrumentType": "stock" + } + }, + "0xd7a6353a23ed2c4fcac29a63cbbe3f65ffef41f5": { + "address": "0xd7a6353a23ed2c4fcac29a63cbbe3f65ffef41f5", + "symbol": "SOON", + "decimals": 18, + "name": "Southern (Ondo Tokenized)", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xd7a6353a23ed2c4fcac29a63cbbe3f65ffef41f5.png", + "aggregators": ["CoinGecko", "Rubic", "Rango", "Ondo"], + "occurrences": 4, + "rwaData": { + "market": { + "nextOpen": "2026-05-19T13:31:00.000Z", + "nextClose": "2026-05-18T19:59:00.000Z" + }, + "nextPause": { + "start": "2026-05-17T23:52:00.000Z", + "end": "2026-05-18T13:40:00.000Z" + }, + "ticker": "SO", + "instrumentType": "stock" + } + }, + "0x2588f20bad92da8dcce7fac8311b5f8ab4690e43": { + "address": "0x2588f20bad92da8dcce7fac8311b5f8ab4690e43", + "symbol": "TMUSON", + "decimals": 18, + "name": "T-Mobile US (Ondo Tokenized)", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x2588f20bad92da8dcce7fac8311b5f8ab4690e43.png", + "aggregators": ["CoinGecko", "Rubic", "Rango", "Ondo"], + "occurrences": 4, + "rwaData": { + "market": { + "nextOpen": "2026-05-18T20:01:00.000Z", + "nextClose": "2026-05-18T19:59:00.000Z" + }, + "nextPause": { + "start": "2026-05-28T23:52:00.000Z", + "end": "2026-05-29T08:10:00.000Z" + }, + "ticker": "TMUS", + "instrumentType": "stock" + } + }, + "0xe1d1f66215998786110ba0102ef558b22224c016": { + "address": "0xe1d1f66215998786110ba0102ef558b22224c016", + "symbol": "HOO", + "decimals": 8, + "name": "HOO", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xe1d1f66215998786110ba0102ef558b22224c016.png", + "aggregators": ["PancakeExtended", "LiFi", "Rubic", "Rango"], + "occurrences": 4 + }, + "0x373e768f79c820aa441540d254dca6d045c6d25b": { + "address": "0x373e768f79c820aa441540d254dca6d045c6d25b", + "symbol": "DERC", + "decimals": 18, + "name": "DERC", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x373e768f79c820aa441540d254dca6d045c6d25b.png", + "aggregators": ["PancakeTop100", "LiFi", "Rubic", "Rango"], + "occurrences": 4 + }, + "0xa1ac3b22b102caa62c9ecaf418585528855b0ddd": { + "address": "0xa1ac3b22b102caa62c9ecaf418585528855b0ddd", + "symbol": "STRIP", + "decimals": 18, + "name": "Stripto", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xa1ac3b22b102caa62c9ecaf418585528855b0ddd.png", + "aggregators": [ + "PancakeCoinMarketCap", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 4 + }, + "0xcac007926755e2675e201223f7d4d68c74fd3439": { + "address": "0xcac007926755e2675e201223f7d4d68c74fd3439", + "symbol": "1GUY", + "decimals": 18, + "name": "1GUY", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xcac007926755e2675e201223f7d4d68c74fd3439.png", + "aggregators": ["PancakeCoinGecko", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0x817b32d386cfc1f872de306dfaedfda36429ca1e": { + "address": "0x817b32d386cfc1f872de306dfaedfda36429ca1e", + "symbol": "MOON", + "decimals": 18, + "name": "2MOON", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x817b32d386cfc1f872de306dfaedfda36429ca1e.png", + "aggregators": [ + "PancakeCoinMarketCap", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 4 + }, + "0x6ccc8db8e3fd5ffdd2e7b92bd92e8e27baf704a8": { + "address": "0x6ccc8db8e3fd5ffdd2e7b92bd92e8e27baf704a8", + "symbol": "3TH", + "decimals": 18, + "name": "Ethos", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x6ccc8db8e3fd5ffdd2e7b92bd92e8e27baf704a8.png", + "aggregators": ["PancakeCoinGecko", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0xa9e22e82d5a497c764a9fcd566bc8df933b74fbe": { + "address": "0xa9e22e82d5a497c764a9fcd566bc8df933b74fbe", + "symbol": "AGT", + "decimals": 19, + "name": "Agritech", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xa9e22e82d5a497c764a9fcd566bc8df933b74fbe.png", + "aggregators": [ + "PancakeCoinMarketCap", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 4 + }, + "0xbf70a52aef7822047076749b9ba63c4597d4626f": { + "address": "0xbf70a52aef7822047076749b9ba63c4597d4626f", + "symbol": "AIH", + "decimals": 18, + "name": "AIHub", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xbf70a52aef7822047076749b9ba63c4597d4626f.png", + "aggregators": ["PancakeCoinGecko", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0x5525821d99d3c3892f7c9aa3fa752d48c8764668": { + "address": "0x5525821d99d3c3892f7c9aa3fa752d48c8764668", + "symbol": "ALITA", + "decimals": 8, + "name": "ALITA GOLD", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x5525821d99d3c3892f7c9aa3fa752d48c8764668.png", + "aggregators": ["PancakeCoinGecko", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0x7e2cfe1d55dfa63c8a1bf989c5335419d912e37a": { + "address": "0x7e2cfe1d55dfa63c8a1bf989c5335419d912e37a", + "symbol": "APES", + "decimals": 18, + "name": "AGE OF APES", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x7e2cfe1d55dfa63c8a1bf989c5335419d912e37a.png", + "aggregators": ["PancakeCoinGecko", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0x33aa7797ac6cb8b4652b68e33e5add8ad1218a8d": { + "address": "0x33aa7797ac6cb8b4652b68e33e5add8ad1218a8d", + "symbol": "AQDC", + "decimals": 18, + "name": "Aquanee", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x33aa7797ac6cb8b4652b68e33e5add8ad1218a8d.png", + "aggregators": ["PancakeCoinGecko", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0xe3c1bdeec4db91cd90c336776332fae2e00fddd9": { + "address": "0xe3c1bdeec4db91cd90c336776332fae2e00fddd9", + "symbol": "ASH", + "decimals": 9, + "name": "Ash Token", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xe3c1bdeec4db91cd90c336776332fae2e00fddd9.png", + "aggregators": ["PancakeCoinGecko", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0x9e14c36896daf970ae77a03e157e2dd3d0577c5b": { + "address": "0x9e14c36896daf970ae77a03e157e2dd3d0577c5b", + "symbol": "AUT", + "decimals": 18, + "name": "Autentic", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x9e14c36896daf970ae77a03e157e2dd3d0577c5b.png", + "aggregators": ["PancakeCoinGecko", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0x556b60c53fbc1518ad17e03d52e47368dd4d81b3": { + "address": "0x556b60c53fbc1518ad17e03d52e47368dd4d81b3", + "symbol": "AXS", + "decimals": 18, + "name": "Axie Infinity Shard", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x556b60c53fbc1518ad17e03d52e47368dd4d81b3.png", + "aggregators": ["PancakeCoinGecko", "Socket", "Rubic", "Rango"], + "occurrences": 4 + }, + "0x0df73831c00b157bb0fed3c06eb475f201b64a78": { + "address": "0x0df73831c00b157bb0fed3c06eb475f201b64a78", + "symbol": "B2SHARE", + "decimals": 18, + "name": "B2SHARE", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x0df73831c00b157bb0fed3c06eb475f201b64a78.png", + "aggregators": ["PancakeCoinGecko", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0xdf8d912f96078f9b23cc20a128199f7a6baf82ba": { + "address": "0xdf8d912f96078f9b23cc20a128199f7a6baf82ba", + "symbol": "BHA", + "decimals": 18, + "name": "BHA", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xdf8d912f96078f9b23cc20a128199f7a6baf82ba.png", + "aggregators": ["PancakeCoinGecko", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0x9f7277778c798ef0bc1debf28994eaec1af7ba24": { + "address": "0x9f7277778c798ef0bc1debf28994eaec1af7ba24", + "symbol": "BIRD", + "decimals": 18, + "name": "LuckyBird", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x9f7277778c798ef0bc1debf28994eaec1af7ba24.png", + "aggregators": ["PancakeCoinGecko", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0xb71d6d378176842dfe778d9509d7d3852806cd7a": { + "address": "0xb71d6d378176842dfe778d9509d7d3852806cd7a", + "symbol": "BOPB", + "decimals": 18, + "name": "BIOPOP", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xb71d6d378176842dfe778d9509d7d3852806cd7a.png", + "aggregators": ["PancakeCoinGecko", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0xfc9f81b107f51f2383fce56650fedb59c5fd59bd": { + "address": "0xfc9f81b107f51f2383fce56650fedb59c5fd59bd", + "symbol": "BRT", + "decimals": 18, + "name": "Bikerush", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xfc9f81b107f51f2383fce56650fedb59c5fd59bd.png", + "aggregators": ["PancakeCoinGecko", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0x39541a42b5085f3cf69b2258eaeb5bb3ee8c823c": { + "address": "0x39541a42b5085f3cf69b2258eaeb5bb3ee8c823c", + "symbol": "BSF", + "decimals": 18, + "name": "Bull Star Finance", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x39541a42b5085f3cf69b2258eaeb5bb3ee8c823c.png", + "aggregators": ["PancakeCoinGecko", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0x011734f6ed20e8d011d85cf7894814b897420acf": { + "address": "0x011734f6ed20e8d011d85cf7894814b897420acf", + "symbol": "BSP", + "decimals": 18, + "name": "BallSwap", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x011734f6ed20e8d011d85cf7894814b897420acf.png", + "aggregators": ["PancakeCoinGecko", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0xc84fae1141b92fa5bf847276828f69caf651cb7f": { + "address": "0xc84fae1141b92fa5bf847276828f69caf651cb7f", + "symbol": "BXNF", + "decimals": 18, + "name": "bXNF", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xc84fae1141b92fa5bf847276828f69caf651cb7f.png", + "aggregators": ["PancakeCoinGecko", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0xb71b42f7f0513b3f49a0a42ffdcf90509a888888": { + "address": "0xb71b42f7f0513b3f49a0a42ffdcf90509a888888", + "symbol": "CATME", + "decimals": 0, + "name": "Elon's Cat", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xb71b42f7f0513b3f49a0a42ffdcf90509a888888.png", + "aggregators": ["PancakeCoinGecko", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0xb3a7713521007d79e757f83ce763ded56bb0f6b3": { + "address": "0xb3a7713521007d79e757f83ce763ded56bb0f6b3", + "symbol": "CB8", + "decimals": 18, + "name": "chabit", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xb3a7713521007d79e757f83ce763ded56bb0f6b3.png", + "aggregators": ["PancakeCoinGecko", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0xf68d4d917592f3a62417ace42592f15296cc33a0": { + "address": "0xf68d4d917592f3a62417ace42592f15296cc33a0", + "symbol": "CHB", + "decimals": 8, + "name": "COINHUB TOKEN", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xf68d4d917592f3a62417ace42592f15296cc33a0.png", + "aggregators": ["PancakeCoinGecko", "Socket", "Rubic", "Rango"], + "occurrences": 4 + }, + "0xa91c7bc1e07996a188c1a5b1cfdff450389d8acf": { + "address": "0xa91c7bc1e07996a188c1a5b1cfdff450389d8acf", + "symbol": "CHICKS", + "decimals": 8, + "name": "SolChicks", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xa91c7bc1e07996a188c1a5b1cfdff450389d8acf.png", + "aggregators": ["PancakeCoinGecko", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0x433fce7dfbec729a79999eaf056cb073b2153eba": { + "address": "0x433fce7dfbec729a79999eaf056cb073b2153eba", + "symbol": "CNW", + "decimals": 6, + "name": "CoinWealth", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x433fce7dfbec729a79999eaf056cb073b2153eba.png", + "aggregators": ["PancakeCoinGecko", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0xdc3254103c348c1026f3ef7e9951e5e812b8eadc": { + "address": "0xdc3254103c348c1026f3ef7e9951e5e812b8eadc", + "symbol": "CPY", + "decimals": 18, + "name": "CoinPays", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xdc3254103c348c1026f3ef7e9951e5e812b8eadc.png", + "aggregators": ["PancakeCoinGecko", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0x264cd9744c83d3b7b0255f6bee7ab1b9dd9f89ff": { + "address": "0x264cd9744c83d3b7b0255f6bee7ab1b9dd9f89ff", + "symbol": "CST", + "decimals": 18, + "name": "Crypto Samurai", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x264cd9744c83d3b7b0255f6bee7ab1b9dd9f89ff.png", + "aggregators": ["PancakeCoinGecko", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0x57f5c1a40f1e847e50ebdd29cb3dbfef777d2d3e": { + "address": "0x57f5c1a40f1e847e50ebdd29cb3dbfef777d2d3e", + "symbol": "CVN", + "decimals": 18, + "name": "ConsciousDao", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x57f5c1a40f1e847e50ebdd29cb3dbfef777d2d3e.png", + "aggregators": ["PancakeCoinGecko", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0x9001fd53504f7bf253296cffadf5b6030cd61abb": { + "address": "0x9001fd53504f7bf253296cffadf5b6030cd61abb", + "symbol": "CYFM", + "decimals": 18, + "name": "CyberFM", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x9001fd53504f7bf253296cffadf5b6030cd61abb.png", + "aggregators": ["PancakeCoinGecko", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0x83f35be304902571235c590b7564d9c495491456": { + "address": "0x83f35be304902571235c590b7564d9c495491456", + "symbol": "DCLOUD", + "decimals": 9, + "name": "DecentraCloud", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x83f35be304902571235c590b7564d9c495491456.png", + "aggregators": ["PancakeCoinGecko", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0xc632f90affec7121120275610bf17df9963f181c": { + "address": "0xc632f90affec7121120275610bf17df9963f181c", + "symbol": "DEBT", + "decimals": 8, + "name": "DEBT", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xc632f90affec7121120275610bf17df9963f181c.png", + "aggregators": ["PancakeCoinMarketCap", "LiFi", "Rubic", "Rango"], + "occurrences": 4 + }, + "0x7f4b7431a4e1b9f375ef0a94224ea4ef09b4f668": { + "address": "0x7f4b7431a4e1b9f375ef0a94224ea4ef09b4f668", + "symbol": "DEOD", + "decimals": 18, + "name": "Decentrawood", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x7f4b7431a4e1b9f375ef0a94224ea4ef09b4f668.png", + "aggregators": ["PancakeCoinGecko", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0x04088b85ab27f247c76e3adbf787f5a51e3470b6": { + "address": "0x04088b85ab27f247c76e3adbf787f5a51e3470b6", + "symbol": "DOBO", + "decimals": 18, + "name": "DonaBlock", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x04088b85ab27f247c76e3adbf787f5a51e3470b6.png", + "aggregators": ["PancakeCoinGecko", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0xce2194ef6cd74ac3fc21e5e02524f990ec31e3fd": { + "address": "0xce2194ef6cd74ac3fc21e5e02524f990ec31e3fd", + "symbol": "DON", + "decimals": 18, + "name": "TheDonato Token", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xce2194ef6cd74ac3fc21e5e02524f990ec31e3fd.png", + "aggregators": ["PancakeCoinGecko", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0x622b8f894c3d556594bf2d5e4da0478d4968a4ee": { + "address": "0x622b8f894c3d556594bf2d5e4da0478d4968a4ee", + "symbol": "DRA", + "decimals": 18, + "name": "Dracarys Token", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x622b8f894c3d556594bf2d5e4da0478d4968a4ee.png", + "aggregators": ["PancakeCoinGecko", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0x9400aa8eb5126d20cde45c7822836bfb70f19878": { + "address": "0x9400aa8eb5126d20cde45c7822836bfb70f19878", + "symbol": "DRF", + "decimals": 18, + "name": "Drife [OLD]", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x9400aa8eb5126d20cde45c7822836bfb70f19878.png", + "aggregators": ["PancakeCoinGecko", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0x5de9a1c782fd38eabbf6c99f5457e0518ab36ae4": { + "address": "0x5de9a1c782fd38eabbf6c99f5457e0518ab36ae4", + "symbol": "DRIFT", + "decimals": 18, + "name": "Drift Token", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x5de9a1c782fd38eabbf6c99f5457e0518ab36ae4.png", + "aggregators": ["PancakeCoinGecko", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0xd68e5c52f7563486cc1a15d00efa12c8644a907e": { + "address": "0xd68e5c52f7563486cc1a15d00efa12c8644a907e", + "symbol": "EGC", + "decimals": 18, + "name": "Egoras Credit", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xd68e5c52f7563486cc1a15d00efa12c8644a907e.png", + "aggregators": ["PancakeCoinGecko", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0x72a76965eb8f606675f119dae89deda557fdbf01": { + "address": "0x72a76965eb8f606675f119dae89deda557fdbf01", + "symbol": "EIQT", + "decimals": 18, + "name": "eIQT Token", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x72a76965eb8f606675f119dae89deda557fdbf01.png", + "aggregators": ["PancakeCoinGecko", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0x02bafcec586ad22ce409dadb2d2a1af11f8fc112": { + "address": "0x02bafcec586ad22ce409dadb2d2a1af11f8fc112", + "symbol": "ELON2024", + "decimals": 9, + "name": "ELON 2024", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x02bafcec586ad22ce409dadb2d2a1af11f8fc112.png", + "aggregators": ["PancakeCoinGecko", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0x5fec857958fbde28e45f779daf5aba8fdd5bd6bc": { + "address": "0x5fec857958fbde28e45f779daf5aba8fdd5bd6bc", + "symbol": "EPENDLE", + "decimals": 18, + "name": "Equilibria Finance ePENDLE", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x5fec857958fbde28e45f779daf5aba8fdd5bd6bc.png", + "aggregators": ["PancakeCoinGecko", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0xaf41054c1487b0e5e2b9250c0332ecbce6ce9d71": { + "address": "0xaf41054c1487b0e5e2b9250c0332ecbce6ce9d71", + "symbol": "EPX", + "decimals": 18, + "name": "Ellipsis X", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xaf41054c1487b0e5e2b9250c0332ecbce6ce9d71.png", + "aggregators": ["PancakeCoinGecko", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0x29c55f1b02a95f0b30e61976835a3eee2359ad92": { + "address": "0x29c55f1b02a95f0b30e61976835a3eee2359ad92", + "symbol": "ESHAREV2", + "decimals": 18, + "name": "EMP Shares", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x29c55f1b02a95f0b30e61976835a3eee2359ad92.png", + "aggregators": ["PancakeCoinGecko", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0x928f64d31186a0a341b38624177e911d746dc6b6": { + "address": "0x928f64d31186a0a341b38624177e911d746dc6b6", + "symbol": "EVLD", + "decimals": 6, + "name": "Evoload", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x928f64d31186a0a341b38624177e911d746dc6b6.png", + "aggregators": ["PancakeCoinGecko", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0x4dc507440ef8fe7e80eefd0951fbbb13fec0d7a7": { + "address": "0x4dc507440ef8fe7e80eefd0951fbbb13fec0d7a7", + "symbol": "FROP", + "decimals": 18, + "name": "Popo The Frog", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x4dc507440ef8fe7e80eefd0951fbbb13fec0d7a7.png", + "aggregators": ["PancakeCoinGecko", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0x3f6b3595ecf70735d3f48d69b09c4e4506db3f47": { + "address": "0x3f6b3595ecf70735d3f48d69b09c4e4506db3f47", + "symbol": "GAMER", + "decimals": 18, + "name": "GameStation", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x3f6b3595ecf70735d3f48d69b09c4e4506db3f47.png", + "aggregators": ["PancakeCoinGecko", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0x167fcfed3aad2d11052fcde0cbf704d879939473": { + "address": "0x167fcfed3aad2d11052fcde0cbf704d879939473", + "symbol": "GROW", + "decimals": 18, + "name": "Triathon", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x167fcfed3aad2d11052fcde0cbf704d879939473.png", + "aggregators": [ + "PancakeCoinMarketCap", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 4 + }, + "0x7777ca3b39f446d4b3472d6ea5080682686a7777": { + "address": "0x7777ca3b39f446d4b3472d6ea5080682686a7777", + "symbol": "GFX", + "decimals": 18, + "name": "GameFi X", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x7777ca3b39f446d4b3472d6ea5080682686a7777.png", + "aggregators": ["PancakeCoinGecko", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0xdb533afcbcb88edfe256e9373a513021c2d6286e": { + "address": "0xdb533afcbcb88edfe256e9373a513021c2d6286e", + "symbol": "GNFTY", + "decimals": 18, + "name": "GoNFTY", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xdb533afcbcb88edfe256e9373a513021c2d6286e.png", + "aggregators": ["PancakeCoinGecko", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0xbc5e9b2b222130115788139b495af4e1c6a70912": { + "address": "0xbc5e9b2b222130115788139b495af4e1c6a70912", + "symbol": "GROKQUEEN", + "decimals": 9, + "name": "Grok Queen", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xbc5e9b2b222130115788139b495af4e1c6a70912.png", + "aggregators": ["PancakeCoinGecko", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0x7e4c1d51ace44e26c5924d590995dea3eb8ad505": { + "address": "0x7e4c1d51ace44e26c5924d590995dea3eb8ad505", + "symbol": "HIP", + "decimals": 18, + "name": "Gameta", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x7e4c1d51ace44e26c5924d590995dea3eb8ad505.png", + "aggregators": ["PancakeCoinGecko", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0x5a7a183b6b44dc4ec2e3d2ef43f98c5152b1d76d": { + "address": "0x5a7a183b6b44dc4ec2e3d2ef43f98c5152b1d76d", + "symbol": "INETH", + "decimals": 18, + "name": "Inception Restaked ETH", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x5a7a183b6b44dc4ec2e3d2ef43f98c5152b1d76d.png", + "aggregators": ["PancakeCoinGecko", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0x7c869b5a294b1314e985283d01c702b62224a05f": { + "address": "0x7c869b5a294b1314e985283d01c702b62224a05f", + "symbol": "JCHF", + "decimals": 18, + "name": "Jarvis Synthetic Swiss Franc", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x7c869b5a294b1314e985283d01c702b62224a05f.png", + "aggregators": ["PancakeCoinGecko", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0x56a1eec9494ad59a1954616cb38715dc4aa61960": { + "address": "0x56a1eec9494ad59a1954616cb38715dc4aa61960", + "symbol": "JMTAI", + "decimals": 18, + "name": "Judgment AI", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x56a1eec9494ad59a1954616cb38715dc4aa61960.png", + "aggregators": ["PancakeCoinGecko", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0xa66cd1c4d890faa7c1a09a54a254d33d809ba3b5": { + "address": "0xa66cd1c4d890faa7c1a09a54a254d33d809ba3b5", + "symbol": "KTR", + "decimals": 18, + "name": "Kitty Run", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xa66cd1c4d890faa7c1a09a54a254d33d809ba3b5.png", + "aggregators": ["PancakeCoinGecko", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0x510ca7d22a84599e7d0f15f09e674056a6255389": { + "address": "0x510ca7d22a84599e7d0f15f09e674056a6255389", + "symbol": "LABSV2", + "decimals": 18, + "name": "LABSV2", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x510ca7d22a84599e7d0f15f09e674056a6255389.png", + "aggregators": [ + "PancakeCoinMarketCap", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 4 + }, + "0xd6a540543327b5a4f2223f123640932ee3c6c583": { + "address": "0xd6a540543327b5a4f2223f123640932ee3c6c583", + "symbol": "LCN", + "decimals": 8, + "name": "Lyncoin", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xd6a540543327b5a4f2223f123640932ee3c6c583.png", + "aggregators": ["PancakeCoinGecko", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0x61909950e1bfb5d567c5463cbd33dc1cdc85ee93": { + "address": "0x61909950e1bfb5d567c5463cbd33dc1cdc85ee93", + "symbol": "LITHO", + "decimals": 18, + "name": "Lithosphere", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x61909950e1bfb5d567c5463cbd33dc1cdc85ee93.png", + "aggregators": ["PancakeCoinGecko", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0xd979d11c03cc7a66028755846f77fff0a270f753": { + "address": "0xd979d11c03cc7a66028755846f77fff0a270f753", + "symbol": "LOH", + "decimals": 18, + "name": "Land Of Heroes", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xd979d11c03cc7a66028755846f77fff0a270f753.png", + "aggregators": ["PancakeCoinGecko", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0xd4c73fd18f732bc6ee9fb193d109b2eed815df80": { + "address": "0xd4c73fd18f732bc6ee9fb193d109b2eed815df80", + "symbol": "MAG", + "decimals": 18, + "name": "Monsterra MAG", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xd4c73fd18f732bc6ee9fb193d109b2eed815df80.png", + "aggregators": ["PancakeCoinGecko", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0x1d42e1cd643941b26a4191e72a617ed32670df55": { + "address": "0x1d42e1cd643941b26a4191e72a617ed32670df55", + "symbol": "MBP", + "decimals": 10, + "name": "MBP Coin", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x1d42e1cd643941b26a4191e72a617ed32670df55.png", + "aggregators": ["PancakeCoinGecko", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0xd77b2d571256ce5fb3365bfff3c5859d1ef40f0a": { + "address": "0xd77b2d571256ce5fb3365bfff3c5859d1ef40f0a", + "symbol": "MCAKE", + "decimals": 18, + "name": "EasyCake", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xd77b2d571256ce5fb3365bfff3c5859d1ef40f0a.png", + "aggregators": ["PancakeCoinGecko", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0xdc0d0eb492e4902c5991c5cb2038fb06409e7f99": { + "address": "0xdc0d0eb492e4902c5991c5cb2038fb06409e7f99", + "symbol": "MG8", + "decimals": 18, + "name": "Megalink", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xdc0d0eb492e4902c5991c5cb2038fb06409e7f99.png", + "aggregators": ["PancakeCoinGecko", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0xbf76dbf84b16da71366fc73cf8c19600449ce71a": { + "address": "0xbf76dbf84b16da71366fc73cf8c19600449ce71a", + "symbol": "MIMBO", + "decimals": 18, + "name": "Mimbo", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xbf76dbf84b16da71366fc73cf8c19600449ce71a.png", + "aggregators": ["PancakeCoinGecko", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0x768d221e81524de52841aed976370b2e4f990416": { + "address": "0x768d221e81524de52841aed976370b2e4f990416", + "symbol": "MMP", + "decimals": 18, + "name": "Moon Maker Protocol", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x768d221e81524de52841aed976370b2e4f990416.png", + "aggregators": ["PancakeCoinGecko", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0x33be7644c0e489b3a0c639d103392d4f3e338158": { + "address": "0x33be7644c0e489b3a0c639d103392d4f3e338158", + "symbol": "MNFT", + "decimals": 18, + "name": "Marvelous NFTs", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x33be7644c0e489b3a0c639d103392d4f3e338158.png", + "aggregators": ["PancakeCoinGecko", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0xbd4b29918d92d613b019252091ab0189f354534f": { + "address": "0xbd4b29918d92d613b019252091ab0189f354534f", + "symbol": "MSHIBA", + "decimals": 18, + "name": "Matsuri Shiba Inu", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xbd4b29918d92d613b019252091ab0189f354534f.png", + "aggregators": ["PancakeCoinGecko", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0x10c9524dbf934b3b625dce3bdc0efdc367f4e84b": { + "address": "0x10c9524dbf934b3b625dce3bdc0efdc367f4e84b", + "symbol": "MVX", + "decimals": 8, + "name": "Mavaverse", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x10c9524dbf934b3b625dce3bdc0efdc367f4e84b.png", + "aggregators": ["PancakeCoinGecko", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0x021f48697343a6396bafc01795a4c140b637f4b4": { + "address": "0x021f48697343a6396bafc01795a4c140b637f4b4", + "symbol": "MYS", + "decimals": 18, + "name": "Magic Yearn Share", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x021f48697343a6396bafc01795a4c140b637f4b4.png", + "aggregators": ["PancakeCoinGecko", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0x563b7b186dd21b320d8f721c971b40b3d6d36113": { + "address": "0x563b7b186dd21b320d8f721c971b40b3d6d36113", + "symbol": "NFTC", + "decimals": 18, + "name": "NFT Combining", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x563b7b186dd21b320d8f721c971b40b3d6d36113.png", + "aggregators": ["PancakeCoinGecko", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0x5d5c5c1d14faf8ff704295b2f502daa9d06799a0": { + "address": "0x5d5c5c1d14faf8ff704295b2f502daa9d06799a0", + "symbol": "NNN", + "decimals": 18, + "name": "Novem Gold Token", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x5d5c5c1d14faf8ff704295b2f502daa9d06799a0.png", + "aggregators": ["PancakeCoinGecko", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0x5a10bdbbaf804184508d4a9e3ebdaf453129a452": { + "address": "0x5a10bdbbaf804184508d4a9e3ebdaf453129a452", + "symbol": "NPT", + "decimals": 18, + "name": "Nexus Pro Token", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x5a10bdbbaf804184508d4a9e3ebdaf453129a452.png", + "aggregators": ["PancakeCoinGecko", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0x93ea2a6508d410490f2094fc68625522ddc5cd9f": { + "address": "0x93ea2a6508d410490f2094fc68625522ddc5cd9f", + "symbol": "NRG", + "decimals": 18, + "name": "Energy Token", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x93ea2a6508d410490f2094fc68625522ddc5cd9f.png", + "aggregators": ["PancakeCoinGecko", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0x6ab39cd7ff157caeecb97f69a54f8c0e67861feb": { + "address": "0x6ab39cd7ff157caeecb97f69a54f8c0e67861feb", + "symbol": "NYANDOGE", + "decimals": 18, + "name": "NyanDOGE International", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x6ab39cd7ff157caeecb97f69a54f8c0e67861feb.png", + "aggregators": ["PancakeCoinGecko", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0x3ec451733496b0ee147926cadf2fc58a2947300a": { + "address": "0x3ec451733496b0ee147926cadf2fc58a2947300a", + "symbol": "OCB", + "decimals": 18, + "name": "OneCoinBuy", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x3ec451733496b0ee147926cadf2fc58a2947300a.png", + "aggregators": ["PancakeCoinGecko", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0xdf0121a3ba5c10816ea2943c722650c4a4b0dbe6": { + "address": "0xdf0121a3ba5c10816ea2943c722650c4a4b0dbe6", + "symbol": "OPS", + "decimals": 18, + "name": "Octopus Protocol", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xdf0121a3ba5c10816ea2943c722650c4a4b0dbe6.png", + "aggregators": ["PancakeCoinGecko", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0x9f3a937a3cdd0673088304311a9c98a18ad0a3d8": { + "address": "0x9f3a937a3cdd0673088304311a9c98a18ad0a3d8", + "symbol": "PANA", + "decimals": 18, + "name": "Panacoin", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x9f3a937a3cdd0673088304311a9c98a18ad0a3d8.png", + "aggregators": ["PancakeCoinGecko", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0x673da443da2f6ae7c5c660a9f0d3dd24d1643d36": { + "address": "0x673da443da2f6ae7c5c660a9f0d3dd24d1643d36", + "symbol": "RAINBOWTOKEN", + "decimals": 9, + "name": "RainbowToken", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x673da443da2f6ae7c5c660a9f0d3dd24d1643d36.png", + "aggregators": [ + "PancakeCoinMarketCap", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 4 + }, + "0x2a900573082c58053377e54642038fa46f19a8a2": { + "address": "0x2a900573082c58053377e54642038fa46f19a8a2", + "symbol": "RIKO", + "decimals": 18, + "name": "RIKO", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x2a900573082c58053377e54642038fa46f19a8a2.png", + "aggregators": ["PancakeCoinGecko", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0x37ac4d6140e54304d77437a5c11924f61a2d976f": { + "address": "0x37ac4d6140e54304d77437a5c11924f61a2d976f", + "symbol": "SFUEL", + "decimals": 18, + "name": "SparkPoint Fuel", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x37ac4d6140e54304d77437a5c11924f61a2d976f.png", + "aggregators": [ + "PancakeCoinMarketCap", + "TrustWallet", + "Rubic", + "Rango" + ], + "occurrences": 4 + }, + "0x0b34d4a7c5bfc7004b9a193f8309523e99ca766e": { + "address": "0x0b34d4a7c5bfc7004b9a193f8309523e99ca766e", + "symbol": "SHON", + "decimals": 18, + "name": "Shon", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x0b34d4a7c5bfc7004b9a193f8309523e99ca766e.png", + "aggregators": ["PancakeCoinGecko", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0xb65d506b0343db06200c0803585554da3712830f": { + "address": "0xb65d506b0343db06200c0803585554da3712830f", + "symbol": "SLC", + "decimals": 18, + "name": "SparkLucky", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xb65d506b0343db06200c0803585554da3712830f.png", + "aggregators": ["PancakeCoinGecko", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0xeba6a22ba57994b6600671ec9ec8389272cbe71d": { + "address": "0xeba6a22ba57994b6600671ec9ec8389272cbe71d", + "symbol": "SMILE", + "decimals": 18, + "name": "SmileAI", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xeba6a22ba57994b6600671ec9ec8389272cbe71d.png", + "aggregators": ["PancakeCoinGecko", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0x5e7fc3844463745fca858f85d6b90d9a03fcbe93": { + "address": "0x5e7fc3844463745fca858f85d6b90d9a03fcbe93", + "symbol": "SNB", + "decimals": 8, + "name": "Safe Nebula", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x5e7fc3844463745fca858f85d6b90d9a03fcbe93.png", + "aggregators": ["PancakeCoinGecko", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0x34980c35353a8d7b1a1ba02e02e387a8383e004a": { + "address": "0x34980c35353a8d7b1a1ba02e02e387a8383e004a", + "symbol": "SNK", + "decimals": 18, + "name": "Snake", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x34980c35353a8d7b1a1ba02e02e387a8383e004a.png", + "aggregators": ["PancakeCoinGecko", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0x1a28ed8472f644e8898a169a644503b779748d6e": { + "address": "0x1a28ed8472f644e8898a169a644503b779748d6e", + "symbol": "SOFI", + "decimals": 18, + "name": "RAI Finance", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x1a28ed8472f644e8898a169a644503b779748d6e.png", + "aggregators": ["PancakeCoinGecko", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0xfab178ec82e29761f79565f260c1b1e8fead566e": { + "address": "0xfab178ec82e29761f79565f260c1b1e8fead566e", + "symbol": "SWO", + "decimals": 18, + "name": "Sword and Magic World", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xfab178ec82e29761f79565f260c1b1e8fead566e.png", + "aggregators": ["PancakeCoinGecko", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0xe981ed1c382eea4424fbaa889852149b964400be": { + "address": "0xe981ed1c382eea4424fbaa889852149b964400be", + "symbol": "TIP", + "decimals": 9, + "name": "Tiperian", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xe981ed1c382eea4424fbaa889852149b964400be.png", + "aggregators": ["PancakeCoinGecko", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0x49d71842870b5a1e19ee14c8281114be74d5be20": { + "address": "0x49d71842870b5a1e19ee14c8281114be74d5be20", + "symbol": "TRCON", + "decimals": 18, + "name": "TERATTO", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x49d71842870b5a1e19ee14c8281114be74d5be20.png", + "aggregators": ["PancakeCoinGecko", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0xccf15cf6e1b65c935572564185701a9e740da8a5": { + "address": "0xccf15cf6e1b65c935572564185701a9e740da8a5", + "symbol": "TROG", + "decimals": 9, + "name": "TROG", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xccf15cf6e1b65c935572564185701a9e740da8a5.png", + "aggregators": ["PancakeCoinGecko", "Socket", "Rubic", "Rango"], + "occurrences": 4 + }, + "0xe610d6ee762f865f98b2458af87a79828fa724f3": { + "address": "0xe610d6ee762f865f98b2458af87a79828fa724f3", + "symbol": "TRRXITTE", + "decimals": 18, + "name": "TRRXITTE International", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xe610d6ee762f865f98b2458af87a79828fa724f3.png", + "aggregators": ["PancakeCoinGecko", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0x50183054167b9dd2cb4c363092e3d6389648c2a4": { + "address": "0x50183054167b9dd2cb4c363092e3d6389648c2a4", + "symbol": "UNQT", + "decimals": 18, + "name": "Unique Utility", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x50183054167b9dd2cb4c363092e3d6389648c2a4.png", + "aggregators": ["PancakeCoinGecko", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0x0f6d3353914caafe18ab0c835a789afc886e7039": { + "address": "0x0f6d3353914caafe18ab0c835a789afc886e7039", + "symbol": "UNT", + "decimals": 18, + "name": "Umi's Friends Unity", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x0f6d3353914caafe18ab0c835a789afc886e7039.png", + "aggregators": ["PancakeCoinGecko", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0x672147dd47674757c457eb155baa382cc10705dd": { + "address": "0x672147dd47674757c457eb155baa382cc10705dd", + "symbol": "USDC", + "decimals": 6, + "name": "USD Coin (PoS)", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x672147dd47674757c457eb155baa382cc10705dd.png", + "aggregators": ["PancakeCoinGecko", "Socket", "Rubic", "Rango"], + "occurrences": 4 + }, + "0x953e94caf91a1e32337d0548b9274f337920edfa": { + "address": "0x953e94caf91a1e32337d0548b9274f337920edfa", + "symbol": "USDV", + "decimals": 18, + "name": "USDV", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x953e94caf91a1e32337d0548b9274f337920edfa.png", + "aggregators": ["PancakeCoinGecko", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0x2f053e33bd590830858161d42c67e9e8a9390019": { + "address": "0x2f053e33bd590830858161d42c67e9e8a9390019", + "symbol": "VENTION", + "decimals": 18, + "name": "Vention", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x2f053e33bd590830858161d42c67e9e8a9390019.png", + "aggregators": [ + "PancakeCoinMarketCap", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 4 + }, + "0xed236c32f695c83efde232c288701d6f9c23e60e": { + "address": "0xed236c32f695c83efde232c288701d6f9c23e60e", + "symbol": "VRTK", + "decimals": 18, + "name": "Vertek", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xed236c32f695c83efde232c288701d6f9c23e60e.png", + "aggregators": ["PancakeCoinGecko", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0xb7ae4ea886face39d47a47f46d6afabcaad5af6e": { + "address": "0xb7ae4ea886face39d47a47f46d6afabcaad5af6e", + "symbol": "W8BIT", + "decimals": 18, + "name": "8Bit Chain", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xb7ae4ea886face39d47a47f46d6afabcaad5af6e.png", + "aggregators": ["PancakeCoinGecko", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0x3623f2b63d8f50b477849d29e7c9a6625331e89d": { + "address": "0x3623f2b63d8f50b477849d29e7c9a6625331e89d", + "symbol": "WEC", + "decimals": 18, + "name": "Whole Earth Coin", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x3623f2b63d8f50b477849d29e7c9a6625331e89d.png", + "aggregators": ["PancakeCoinGecko", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0x632b8c4e95b2f8a9309417f8d990ab9c04c77369": { + "address": "0x632b8c4e95b2f8a9309417f8d990ab9c04c77369", + "symbol": "WET", + "decimals": 18, + "name": "Weble Ecosystem", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x632b8c4e95b2f8a9309417f8d990ab9c04c77369.png", + "aggregators": ["PancakeCoinGecko", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0x0093f72b900c0b526aa0ef736048a916010a02d1": { + "address": "0x0093f72b900c0b526aa0ef736048a916010a02d1", + "symbol": "XDOGE", + "decimals": 18, + "name": "XDOGE", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x0093f72b900c0b526aa0ef736048a916010a02d1.png", + "aggregators": ["PancakeCoinGecko", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0x7cc1c126be3128c1f0441a893cd6220498b27650": { + "address": "0x7cc1c126be3128c1f0441a893cd6220498b27650", + "symbol": "XROW", + "decimals": 18, + "name": "XROW", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x7cc1c126be3128c1f0441a893cd6220498b27650.png", + "aggregators": ["PancakeCoinGecko", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0x62d7c4e3566f7f4033fc8e01b4d8e9bbc01c0760": { + "address": "0x62d7c4e3566f7f4033fc8e01b4d8e9bbc01c0760", + "symbol": "XWGT", + "decimals": 18, + "name": "Wodo Gaming", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x62d7c4e3566f7f4033fc8e01b4d8e9bbc01c0760.png", + "aggregators": ["PancakeCoinGecko", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0xff61f59f1591b32d08414acac4454cf7096b67ea": { + "address": "0xff61f59f1591b32d08414acac4454cf7096b67ea", + "symbol": "YOLO", + "decimals": 18, + "name": "YOLO", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xff61f59f1591b32d08414acac4454cf7096b67ea.png", + "aggregators": ["PancakeCoinGecko", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0x2efdff1e566202f82e774bb7add18c56cbb9427d": { + "address": "0x2efdff1e566202f82e774bb7add18c56cbb9427d", + "symbol": "ZAFI", + "decimals": 17, + "name": "ZakumiFi", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x2efdff1e566202f82e774bb7add18c56cbb9427d.png", + "aggregators": [ + "PancakeCoinMarketCap", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 4 + }, + "0x9a2478c4036548864d96a97fbf93f6a3341fedac": { + "address": "0x9a2478c4036548864d96a97fbf93f6a3341fedac", + "symbol": "ZILLIONXO", + "decimals": 9, + "name": "Zillion Aakar XO", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x9a2478c4036548864d96a97fbf93f6a3341fedac.png", + "aggregators": [ + "PancakeCoinMarketCap", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 4 + }, + "0x0bb536b81aa213b4fb1ed53765d105887e8d9160": { + "address": "0x0bb536b81aa213b4fb1ed53765d105887e8d9160", + "symbol": "ZIGAP", + "decimals": 18, + "name": "ZIGAP", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x0bb536b81aa213b4fb1ed53765d105887e8d9160.png", + "aggregators": ["PancakeCoinGecko", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0x4ace5cdb2aa47d1b2b8e4c4ca01bf6850a4b87b5": { + "address": "0x4ace5cdb2aa47d1b2b8e4c4ca01bf6850a4b87b5", + "symbol": "ZILLA", + "decimals": 18, + "name": "DogeZilla", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x4ace5cdb2aa47d1b2b8e4c4ca01bf6850a4b87b5.png", + "aggregators": ["PancakeCoinGecko", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0x0b9bdcc696efa768cafe0e675525eaf42e32d108": { + "address": "0x0b9bdcc696efa768cafe0e675525eaf42e32d108", + "symbol": "ZZZ", + "decimals": 18, + "name": "GoSleep ZZZ", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x0b9bdcc696efa768cafe0e675525eaf42e32d108.png", + "aggregators": ["PancakeCoinGecko", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0xcffd4d3b517b77be32c76da768634de6c738889b": { + "address": "0xcffd4d3b517b77be32c76da768634de6c738889b", + "symbol": "ARENA", + "decimals": 18, + "name": "ESPL ARENA", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xcffd4d3b517b77be32c76da768634de6c738889b.png", + "aggregators": ["PancakeExtended", "LiFi", "Rubic"], + "occurrences": 3 + }, + "0x5afa2959c98b030716f7c0a4d85e0b0e35f3791b": { + "address": "0x5afa2959c98b030716f7c0a4d85e0b0e35f3791b", + "symbol": "BITCOIN", + "decimals": 9, + "name": "ElonXAIDogeMessi69PepeInu", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x5afa2959c98b030716f7c0a4d85e0b0e35f3791b.png", + "aggregators": ["PancakeCoinMarketCap", "Socket", "Rubic", "Rango"], + "occurrences": 4 + }, + "0x790be81c3ca0e53974be2688cdb954732c9862e1": { + "address": "0x790be81c3ca0e53974be2688cdb954732c9862e1", + "symbol": "BREW", + "decimals": 18, + "name": "CafeSwap Token", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x790be81c3ca0e53974be2688cdb954732c9862e1.png", + "aggregators": [ + "PancakeCoinMarketCap", + "TrustWallet", + "Rubic", + "Rango" + ], + "occurrences": 4 + }, + "0xc2e1acef50ae55661855e8dcb72adb182a3cc259": { + "address": "0xc2e1acef50ae55661855e8dcb72adb182a3cc259", + "symbol": "BTS", + "decimals": 18, + "name": "BTS", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xc2e1acef50ae55661855e8dcb72adb182a3cc259.png", + "aggregators": ["PancakeCoinMarketCap", "LiFi", "Rubic", "Rango"], + "occurrences": 4 + }, + "0x3cef8d4cc106a169902ea985cec2dc6ab055ad4c": { + "address": "0x3cef8d4cc106a169902ea985cec2dc6ab055ad4c", + "symbol": "CAI", + "decimals": 9, + "name": "Crypto AI", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x3cef8d4cc106a169902ea985cec2dc6ab055ad4c.png", + "aggregators": ["PancakeCoinMarketCap", "Socket", "Rubic", "Rango"], + "occurrences": 4 + }, + "0xd41c4805a9a3128f9f7a7074da25965371ba50d5": { + "address": "0xd41c4805a9a3128f9f7a7074da25965371ba50d5", + "symbol": "COINSCOPE", + "decimals": 18, + "name": "Coinscope", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xd41c4805a9a3128f9f7a7074da25965371ba50d5.png", + "aggregators": ["PancakeCoinMarketCap", "1inch", "Rubic", "Rango"], + "occurrences": 4 + }, + "0xcc2e12a9b5b75360c6fbf23b584c275d52cddb0e": { + "address": "0xcc2e12a9b5b75360c6fbf23b584c275d52cddb0e", + "symbol": "CROW", + "decimals": 18, + "name": "Crow Token", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xcc2e12a9b5b75360c6fbf23b584c275d52cddb0e.png", + "aggregators": [ + "PancakeCoinMarketCap", + "TrustWallet", + "Socket", + "Rubic" + ], + "occurrences": 4 + }, + "0xfb7400707df3d76084fbeae0109f41b178f71c02": { + "address": "0xfb7400707df3d76084fbeae0109f41b178f71c02", + "symbol": "DOWS", + "decimals": 18, + "name": "DOWS", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xfb7400707df3d76084fbeae0109f41b178f71c02.png", + "aggregators": ["PancakeCoinMarketCap", "LiFi", "Rubic", "Rango"], + "occurrences": 4 + }, + "0x3944ac66b9b9b40a6474022d6962b6caa001b5e3": { + "address": "0x3944ac66b9b9b40a6474022d6962b6caa001b5e3", + "symbol": "EBA", + "decimals": 18, + "name": "Elpis Battle", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x3944ac66b9b9b40a6474022d6962b6caa001b5e3.png", + "aggregators": ["PancakeCoinMarketCap", "LiFi", "Rubic", "Rango"], + "occurrences": 4 + }, + "0x0f0dd5e2c0e0c4a41f8908d73d36b8d142f6745a": { + "address": "0x0f0dd5e2c0e0c4a41f8908d73d36b8d142f6745a", + "symbol": "FIRE", + "decimals": 18, + "name": "FIRE", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x0f0dd5e2c0e0c4a41f8908d73d36b8d142f6745a.png", + "aggregators": ["PancakeCoinMarketCap", "Socket", "Rubic", "Rango"], + "occurrences": 4 + }, + "0x924d221c4fd599e5894706ac2e8f6a35a3cc981e": { + "address": "0x924d221c4fd599e5894706ac2e8f6a35a3cc981e", + "symbol": "FRR", + "decimals": 18, + "name": "FRR", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x924d221c4fd599e5894706ac2e8f6a35a3cc981e.png", + "aggregators": ["PancakeCoinMarketCap", "Socket", "Rubic", "Rango"], + "occurrences": 4 + }, + "0xb46049c79d77ff1d555a67835fba6978536581af": { + "address": "0xb46049c79d77ff1d555a67835fba6978536581af", + "symbol": "MFO", + "decimals": 18, + "name": "Moonfarm Finance", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xb46049c79d77ff1d555a67835fba6978536581af.png", + "aggregators": ["PancakeCoinMarketCap", "LiFi", "Rubic", "Rango"], + "occurrences": 4 + }, + "0x129385c4acd0075e45a0c9a5177bdfec9678a138": { + "address": "0x129385c4acd0075e45a0c9a5177bdfec9678a138", + "symbol": "MTK", + "decimals": 18, + "name": "METAKINGS", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x129385c4acd0075e45a0c9a5177bdfec9678a138.png", + "aggregators": ["PancakeCoinMarketCap", "Socket", "Rubic", "Rango"], + "occurrences": 4 + }, + "0xf54b110b84ab2033330ed64c645a136ef0dde683": { + "address": "0xf54b110b84ab2033330ed64c645a136ef0dde683", + "symbol": "PLENA", + "decimals": 18, + "name": "Plena", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xf54b110b84ab2033330ed64c645a136ef0dde683.png", + "aggregators": [ + "PancakeCoinMarketCap", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 4 + }, + "0x7704d0ead6f74e625d7371b079d8b2475bc852d4": { + "address": "0x7704d0ead6f74e625d7371b079d8b2475bc852d4", + "symbol": "PULSE", + "decimals": 9, + "name": "PulseAI", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x7704d0ead6f74e625d7371b079d8b2475bc852d4.png", + "aggregators": ["PancakeCoinMarketCap", "Socket", "Rubic", "Rango"], + "occurrences": 4 + }, + "0xd52efe1039d706722b3d696e74ad4095dc3d3860": { + "address": "0xd52efe1039d706722b3d696e74ad4095dc3d3860", + "symbol": "PWR", + "decimals": 18, + "name": "PWR", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xd52efe1039d706722b3d696e74ad4095dc3d3860.png", + "aggregators": ["PancakeCoinMarketCap", "LiFi", "Rubic", "Rango"], + "occurrences": 4 + }, + "0xedecfb4801c04f3eb394b89397c6aafa4adda15b": { + "address": "0xedecfb4801c04f3eb394b89397c6aafa4adda15b", + "symbol": "PYRAM", + "decimals": 18, + "name": "PYRAM", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xedecfb4801c04f3eb394b89397c6aafa4adda15b.png", + "aggregators": ["PancakeCoinMarketCap", "LiFi", "Rubic", "Rango"], + "occurrences": 4 + }, + "0x07aaa29e63ffeb2ebf59b33ee61437e1a91a3bb2": { + "address": "0x07aaa29e63ffeb2ebf59b33ee61437e1a91a3bb2", + "symbol": "QSD", + "decimals": 18, + "name": "QSD", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x07aaa29e63ffeb2ebf59b33ee61437e1a91a3bb2.png", + "aggregators": ["PancakeExtended", "LiFi", "Rubic", "Rango"], + "occurrences": 4 + }, + "0x4b497a84fe1b0df682425799c0580355b0dc05b8": { + "address": "0x4b497a84fe1b0df682425799c0580355b0dc05b8", + "symbol": "REBD", + "decimals": 18, + "name": "REBORN", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x4b497a84fe1b0df682425799c0580355b0dc05b8.png", + "aggregators": [ + "PancakeCoinMarketCap", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 4 + }, + "0x30dcf96a8a0c742aa1f534fac79e99d320c97901": { + "address": "0x30dcf96a8a0c742aa1f534fac79e99d320c97901", + "symbol": "STR", + "decimals": 13, + "name": "SourceLess", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x30dcf96a8a0c742aa1f534fac79e99d320c97901.png", + "aggregators": ["PancakeCoinMarketCap", "Socket", "Rubic", "Squid"], + "occurrences": 4 + }, + "0xe792f64c582698b8572aaf765bdc426ac3aefb6b": { + "address": "0xe792f64c582698b8572aaf765bdc426ac3aefb6b", + "symbol": "SWG", + "decimals": 18, + "name": "SWGToken", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xe792f64c582698b8572aaf765bdc426ac3aefb6b.png", + "aggregators": ["PancakeExtended", "LiFi", "Rubic"], + "occurrences": 3 + }, + "0x250b211ee44459dad5cd3bca803dd6a7ecb5d46c": { + "address": "0x250b211ee44459dad5cd3bca803dd6a7ecb5d46c", + "symbol": "SWTH", + "decimals": 8, + "name": "SWTH", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x250b211ee44459dad5cd3bca803dd6a7ecb5d46c.png", + "aggregators": ["PancakeCoinMarketCap", "LiFi", "Rubic", "Rango"], + "occurrences": 4 + }, + "0x9798df2f5d213a872c787bd03b2b91f54d0d04a1": { + "address": "0x9798df2f5d213a872c787bd03b2b91f54d0d04a1", + "symbol": "TBC", + "decimals": 18, + "name": "TeraBlock Token", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x9798df2f5d213a872c787bd03b2b91f54d0d04a1.png", + "aggregators": [ + "PancakeCoinMarketCap", + "TrustWallet", + "Socket", + "Rubic" + ], + "occurrences": 4 + }, + "0x19048172b5a0893ad008e7c52c11a6dd3c8784a1": { + "address": "0x19048172b5a0893ad008e7c52c11a6dd3c8784a1", + "symbol": "WILD", + "decimals": 18, + "name": "Wild Island Game", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x19048172b5a0893ad008e7c52c11a6dd3c8784a1.png", + "aggregators": ["PancakeCoinMarketCap", "Socket", "Rubic", "Rango"], + "occurrences": 4 + }, + "0xcbcd9c0f344960f40c5ce7eb17a17e837fe8bb92": { + "address": "0xcbcd9c0f344960f40c5ce7eb17a17e837fe8bb92", + "symbol": "WOLF", + "decimals": 18, + "name": "WOLFCOIN", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xcbcd9c0f344960f40c5ce7eb17a17e837fe8bb92.png", + "aggregators": ["PancakeCoinMarketCap", "Socket", "Rubic", "Rango"], + "occurrences": 4 + }, + "0x2a45a892877ef383c5fc93a5206546c97496da9e": { + "address": "0x2a45a892877ef383c5fc93a5206546c97496da9e", + "symbol": "X", + "decimals": 9, + "name": "X AI", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x2a45a892877ef383c5fc93a5206546c97496da9e.png", + "aggregators": ["PancakeCoinMarketCap", "Socket", "Rubic", "Rango"], + "occurrences": 4 + }, + "0xb9d35811424600fa9e8cd62a0471fbd025131cb8": { + "address": "0xb9d35811424600fa9e8cd62a0471fbd025131cb8", + "symbol": "YES", + "decimals": 18, + "name": "YES WORLD", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xb9d35811424600fa9e8cd62a0471fbd025131cb8.png", + "aggregators": ["PancakeCoinMarketCap", "LiFi", "Socket", "Rubic"], + "occurrences": 4 + }, + "0x40e46de174dfb776bb89e04df1c47d8a66855eb3": { + "address": "0x40e46de174dfb776bb89e04df1c47d8a66855eb3", + "symbol": "BSCDEFI", + "decimals": 18, + "name": "BSCDEFI", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x40e46de174dfb776bb89e04df1c47d8a66855eb3.png", + "aggregators": ["PancakeExtended", "LiFi", "Rubic", "Rango"], + "occurrences": 4 + }, + "0x5ec3adbdae549dce842e24480eb2434769e22b2e": { + "address": "0x5ec3adbdae549dce842e24480eb2434769e22b2e", + "symbol": "CVP", + "decimals": 18, + "name": "CVP", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x5ec3adbdae549dce842e24480eb2434769e22b2e.png", + "aggregators": ["PancakeExtended", "Socket", "Rubic", "Rango"], + "occurrences": 4 + }, + "0x9899a98b222fcb2f3dbee7df45d943093a4ff9ff": { + "address": "0x9899a98b222fcb2f3dbee7df45d943093a4ff9ff", + "symbol": "DFD", + "decimals": 18, + "name": "DFD", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x9899a98b222fcb2f3dbee7df45d943093a4ff9ff.png", + "aggregators": ["PancakeExtended", "LiFi", "Rubic", "Rango"], + "occurrences": 4 + }, + "0x9fd470124903957f299a1c90feda9043a4619cc6": { + "address": "0x9fd470124903957f299a1c90feda9043a4619cc6", + "symbol": "HUAHUA", + "decimals": 6, + "name": "Chihuahua Token", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x9fd470124903957f299a1c90feda9043a4619cc6.png", + "aggregators": ["PancakeExtended", "Rubic", "Squid"], + "occurrences": 3 + }, + "0x9356f6d95b8e109f4b7ce3e49d672967d3b48383": { + "address": "0x9356f6d95b8e109f4b7ce3e49d672967d3b48383", + "symbol": "KBTC", + "decimals": 18, + "name": "Kinza Babylon Staked BTC", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x9356f6d95b8e109f4b7ce3e49d672967d3b48383.png", + "aggregators": ["PancakeExtended", "LiFi", "Rubic", "Squid"], + "occurrences": 4 + }, + "0xbcf39f0edda668c58371e519af37ca705f2bfcbd": { + "address": "0xbcf39f0edda668c58371e519af37ca705f2bfcbd", + "symbol": "PCWS", + "decimals": 18, + "name": "PolyCrowns", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xbcf39f0edda668c58371e519af37ca705f2bfcbd.png", + "aggregators": ["PancakeExtended", "LiFi", "Rubic", "Rango"], + "occurrences": 4 + }, + "0x7e396bfc8a2f84748701167c2d622f041a1d7a17": { + "address": "0x7e396bfc8a2f84748701167c2d622f041a1d7a17", + "symbol": "WMASS", + "decimals": 8, + "name": "WMASS", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x7e396bfc8a2f84748701167c2d622f041a1d7a17.png", + "aggregators": ["PancakeExtended", "LiFi", "Rubic", "Rango"], + "occurrences": 4 + }, + "0x7a10f506e4c7658e6ad15fdf0443d450b7fa80d7": { + "address": "0x7a10f506e4c7658e6ad15fdf0443d450b7fa80d7", + "symbol": "EYWA", + "decimals": 18, + "name": "EYWA", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x7a10f506e4c7658e6ad15fdf0443d450b7fa80d7.png", + "aggregators": ["PancakeExtended", "Socket", "Rubic", "Rango"], + "occurrences": 4 + }, + "0xf8252c05ec4cb2fdf1e0398bae049d454ddba3ad": { + "address": "0xf8252c05ec4cb2fdf1e0398bae049d454ddba3ad", + "symbol": "JAM", + "decimals": 18, + "name": "JAM", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xf8252c05ec4cb2fdf1e0398bae049d454ddba3ad.png", + "aggregators": ["PancakeExtended", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0xd20fb09a49a8e75fef536a2dbc68222900287bac": { + "address": "0xd20fb09a49a8e75fef536a2dbc68222900287bac", + "symbol": "PRL", + "decimals": 8, + "name": "Perle", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xd20fb09a49a8e75fef536a2dbc68222900287bac.png", + "aggregators": ["PancakeExtended", "LiFi", "Socket", "Rango"], + "occurrences": 4 + }, + "0x90e767a68a7d707b74d569c8e79f9bbb79b98a8b": { + "address": "0x90e767a68a7d707b74d569c8e79f9bbb79b98a8b", + "symbol": "FAT", + "decimals": 18, + "name": "Fatfi Protocol", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x90e767a68a7d707b74d569c8e79f9bbb79b98a8b.png", + "aggregators": ["1inch", "Socket", "Rubic", "Rango"], + "occurrences": 4 + }, + "0x5a41f637c3f7553dba6ddc2d3ca92641096577ea": { + "address": "0x5a41f637c3f7553dba6ddc2d3ca92641096577ea", + "symbol": "JULD", + "decimals": 18, + "name": "JULD", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x5a41f637c3f7553dba6ddc2d3ca92641096577ea.png", + "aggregators": ["1inch", "LiFi", "Rubic", "Rango"], + "occurrences": 4 + }, + "0x6d949f9297a522c0f97c232cc209a67bd7cfa471": { + "address": "0x6d949f9297a522c0f97c232cc209a67bd7cfa471", + "symbol": "MRAT", + "decimals": 9, + "name": "Moon Rat Token", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x6d949f9297a522c0f97c232cc209a67bd7cfa471.png", + "aggregators": ["1inch", "Socket", "Rubic", "Rango"], + "occurrences": 4 + }, + "0x5cd50aae14e14b3fdf3ff13c7a40e8cf5ae8b0a5": { + "address": "0x5cd50aae14e14b3fdf3ff13c7a40e8cf5ae8b0a5", + "symbol": "ZSEED", + "decimals": 18, + "name": "ZSEED", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x5cd50aae14e14b3fdf3ff13c7a40e8cf5ae8b0a5.png", + "aggregators": ["1inch", "LiFi", "Rubic", "Rango"], + "occurrences": 4 + }, + "0x94f559ae621f1c810f31a6a620ad7376776fe09e": { + "address": "0x94f559ae621f1c810f31a6a620ad7376776fe09e", + "symbol": "SOUP", + "decimals": 18, + "name": "Soup", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x94f559ae621f1c810f31a6a620ad7376776fe09e.png", + "aggregators": ["1inch", "Socket", "Rubic", "Rango"], + "occurrences": 4 + }, + "0xe3e1fabeabd48491bd6902b0c32fdeee8d2ff12b": { + "address": "0xe3e1fabeabd48491bd6902b0c32fdeee8d2ff12b", + "symbol": "UNICORN", + "decimals": 18, + "name": "UNICORN Token", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xe3e1fabeabd48491bd6902b0c32fdeee8d2ff12b.png", + "aggregators": ["1inch", "Socket", "Rubic", "Rango"], + "occurrences": 4 + }, + "0x9131066022b909c65edd1aaf7ff213dacf4e86d0": { + "address": "0x9131066022b909c65edd1aaf7ff213dacf4e86d0", + "symbol": "LAND_1", + "decimals": 18, + "name": "META-UTOPIA LAND", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x9131066022b909c65edd1aaf7ff213dacf4e86d0.png", + "aggregators": ["1inch", "Socket", "Rubic", "Rango"], + "occurrences": 4 + }, + "0xa72a0564d0e887123112e6a4dc1aba7611ad861d": { + "address": "0xa72a0564d0e887123112e6a4dc1aba7611ad861d", + "symbol": "FEB", + "decimals": 0, + "name": "FEB Token", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xa72a0564d0e887123112e6a4dc1aba7611ad861d.png", + "aggregators": ["1inch", "Socket", "Rubic", "Rango"], + "occurrences": 4 + }, + "0x7f479d78380ad00341fdd7322fe8aef766e29e5a": { + "address": "0x7f479d78380ad00341fdd7322fe8aef766e29e5a", + "symbol": "WHIRL", + "decimals": 18, + "name": "Whirl Finance", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x7f479d78380ad00341fdd7322fe8aef766e29e5a.png", + "aggregators": ["1inch", "Socket", "Rubic", "Rango"], + "occurrences": 4 + }, + "0x8597ba143ac509189e89aab3ba28d661a5dd9830": { + "address": "0x8597ba143ac509189e89aab3ba28d661a5dd9830", + "symbol": "VANCAT", + "decimals": 0, + "name": "VANCAT Token", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x8597ba143ac509189e89aab3ba28d661a5dd9830.png", + "aggregators": ["1inch", "Socket", "Rubic", "Rango"], + "occurrences": 4 + }, + "0x67d012f731c23f0313cea1186d0121779c77fcfe": { + "address": "0x67d012f731c23f0313cea1186d0121779c77fcfe", + "symbol": "SOUL", + "decimals": 8, + "name": "APOyield SOULS", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x67d012f731c23f0313cea1186d0121779c77fcfe.png", + "aggregators": ["1inch", "Socket", "Rubic", "Rango"], + "occurrences": 4 + }, + "0x07af67b392b7a202fad8e0fbc64c34f33102165b": { + "address": "0x07af67b392b7a202fad8e0fbc64c34f33102165b", + "symbol": "AQUAGOAT", + "decimals": 9, + "name": "Aquagoat", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x07af67b392b7a202fad8e0fbc64c34f33102165b.png", + "aggregators": ["1inch", "Socket", "Rubic", "Rango"], + "occurrences": 4 + }, + "0xce5347fdd503f25f8428151a274544a5bd1bd8ca": { + "address": "0xce5347fdd503f25f8428151a274544a5bd1bd8ca", + "symbol": "UNIF", + "decimals": 9, + "name": "Unified", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xce5347fdd503f25f8428151a274544a5bd1bd8ca.png", + "aggregators": ["1inch", "Socket", "Rubic", "Rango"], + "occurrences": 4 + }, + "0xa86d305a36cdb815af991834b46ad3d7fbb38523": { + "address": "0xa86d305a36cdb815af991834b46ad3d7fbb38523", + "symbol": "BR34P", + "decimals": 8, + "name": "BR34P", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xa86d305a36cdb815af991834b46ad3d7fbb38523.png", + "aggregators": ["1inch", "Socket", "Rubic", "Rango"], + "occurrences": 4 + }, + "0xa3870fbbeb730ba99e4107051612af3465ca9f5e": { + "address": "0xa3870fbbeb730ba99e4107051612af3465ca9f5e", + "symbol": "STABLE", + "decimals": 18, + "name": "STABLE", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xa3870fbbeb730ba99e4107051612af3465ca9f5e.png", + "aggregators": ["LiFi", "Socket", "Rubic", "Rango"], + "occurrences": 4 + }, + "0x72f28c09be1342447fa01ebc76ef508473d08c5c": { + "address": "0x72f28c09be1342447fa01ebc76ef508473d08c5c", + "symbol": "DGN", + "decimals": 18, + "name": "DGN", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x72f28c09be1342447fa01ebc76ef508473d08c5c.png", + "aggregators": ["LiFi", "Socket", "Rubic", "Rango"], + "occurrences": 4 + }, + "0x8506560320826e459f356cb56ccf721da8875414": { + "address": "0x8506560320826e459f356cb56ccf721da8875414", + "symbol": "NICE", + "decimals": 18, + "name": "NICE", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x8506560320826e459f356cb56ccf721da8875414.png", + "aggregators": ["Socket", "Rubic", "Rango", "SushiSwap"], + "occurrences": 4 + }, + "0x66eff5221ca926636224650fd3b9c497ff828f7d": { + "address": "0x66eff5221ca926636224650fd3b9c497ff828f7d", + "symbol": "SSPELL", + "decimals": 18, + "name": "Staked Spell", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x66eff5221ca926636224650fd3b9c497ff828f7d.png", + "aggregators": ["Socket", "Rubic", "Rango", "SushiSwap"], + "occurrences": 4 + }, + "0x1203355742e76875154c0d13eb81dcd7711dc7d9": { + "address": "0x1203355742e76875154c0d13eb81dcd7711dc7d9", + "symbol": "USDX", + "decimals": 6, + "name": "USDX", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x1203355742e76875154c0d13eb81dcd7711dc7d9.png", + "aggregators": ["Socket", "Rubic", "Rango", "SushiSwap"], + "occurrences": 4 + }, + "0xd8a31016cd7da048ca21ffe04256c6d08c3a2251": { + "address": "0xd8a31016cd7da048ca21ffe04256c6d08c3a2251", + "symbol": "WENLAMBO", + "decimals": 18, + "name": "WenLambo", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xd8a31016cd7da048ca21ffe04256c6d08c3a2251.png", + "aggregators": ["Socket", "Rubic", "Rango", "SushiSwap"], + "occurrences": 4 + }, + "0xd944f1d1e9d5f9bb90b62f9d45e447d989580782": { + "address": "0xd944f1d1e9d5f9bb90b62f9d45e447d989580782", + "symbol": "IOTA", + "decimals": 6, + "name": "MIOTAC", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xd944f1d1e9d5f9bb90b62f9d45e447d989580782.png", + "aggregators": ["ApeSwap", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x0318c252e0a310b94d1ab5b70d81e56bbd24f479": { + "address": "0x0318c252e0a310b94d1ab5b70d81e56bbd24f479", + "symbol": "COLOS", + "decimals": 18, + "name": "ChainColosseum Token", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x0318c252e0a310b94d1ab5b70d81e56bbd24f479.png", + "aggregators": ["PancakeCoinMarketCap", "LiFi", "Rubic"], + "occurrences": 3 + }, + "0x06fda0758c17416726f77cb11305eac94c074ec0": { + "address": "0x06fda0758c17416726f77cb11305eac94c074ec0", + "symbol": "ANML", + "decimals": 18, + "name": "Animal Concerts Token", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x06fda0758c17416726f77cb11305eac94c074ec0.png", + "aggregators": ["PancakeCoinMarketCap", "Socket", "Rubic"], + "occurrences": 3 + }, + "0x08426874d46f90e5e527604fa5e3e30486770eb3": { + "address": "0x08426874d46f90e5e527604fa5e3e30486770eb3", + "symbol": "BONES", + "decimals": 18, + "name": "Moonshots Farm", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x08426874d46f90e5e527604fa5e3e30486770eb3.png", + "aggregators": ["PancakeCoinMarketCap", "LiFi", "Rubic"], + "occurrences": 3 + }, + "0x5829e758859b74426b0b2447e82e19ad8e68e87a": { + "address": "0x5829e758859b74426b0b2447e82e19ad8e68e87a", + "symbol": "ACX", + "decimals": 18, + "name": "ApexCoin", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x5829e758859b74426b0b2447e82e19ad8e68e87a.png", + "aggregators": ["PancakeCoinMarketCap", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x1b015705214bdcaaf43e8edeca13023143224ab7": { + "address": "0x1b015705214bdcaaf43e8edeca13023143224ab7", + "symbol": "YNBFBTCK", + "decimals": 8, + "name": "YieldNest Restaked BitFi BTC - Kernel", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x1b015705214bdcaaf43e8edeca13023143224ab7.png", + "aggregators": ["CoinGecko", "Rubic", "Sonarwatch"], + "occurrences": 3 + }, + "0xcf10117b30c7a5fc7c77b611bfc2555610dd4b3a": { + "address": "0xcf10117b30c7a5fc7c77b611bfc2555610dd4b3a", + "symbol": "NOTAI", + "decimals": 18, + "name": "NOTAI", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xcf10117b30c7a5fc7c77b611bfc2555610dd4b3a.png", + "aggregators": ["PancakeCoinGecko", "Rubic", "Rango"], + "occurrences": 3 + }, + "0xbb02e0dc6ca8c838daa2f73f045f831ba3dcd4a2": { + "address": "0xbb02e0dc6ca8c838daa2f73f045f831ba3dcd4a2", + "symbol": "MBC", + "decimals": 18, + "name": "MB COIN", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xbb02e0dc6ca8c838daa2f73f045f831ba3dcd4a2.png", + "aggregators": ["PancakeCoinGecko", "Rubic", "Sonarwatch"], + "occurrences": 3 + }, + "0x5e5c9001aa81332d405d993ffd1468751d659d1e": { + "address": "0x5e5c9001aa81332d405d993ffd1468751d659d1e", + "symbol": "$BABYDOGEINU", + "decimals": 9, + "name": "Baby Doge Inu", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x5e5c9001aa81332d405d993ffd1468751d659d1e.png", + "aggregators": ["PancakeCoinMarketCap", "Rubic", "Sonarwatch"], + "occurrences": 3 + }, + "0xf758cfb1467a227516d73d87da7d36e7cb6f71f1": { + "address": "0xf758cfb1467a227516d73d87da7d36e7cb6f71f1", + "symbol": "SN3", + "decimals": 18, + "name": "Supernova Nebula3", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xf758cfb1467a227516d73d87da7d36e7cb6f71f1.png", + "aggregators": ["PancakeExtended", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x6e9a1428798ff011e2cf369b129630f686232784": { + "address": "0x6e9a1428798ff011e2cf369b129630f686232784", + "symbol": "KBK", + "decimals": 15, + "name": "Koubek", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x6e9a1428798ff011e2cf369b129630f686232784.png", + "aggregators": ["PancakeCoinGecko", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x28337d750194c17769bf31324512ca4e217174fa": { + "address": "0x28337d750194c17769bf31324512ca4e217174fa", + "symbol": "DTNG", + "decimals": 8, + "name": "DTNG", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x28337d750194c17769bf31324512ca4e217174fa.png", + "aggregators": ["PancakeCoinGecko", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x95034f653d5d161890836ad2b6b8cc49d14e029a": { + "address": "0x95034f653d5d161890836ad2b6b8cc49d14e029a", + "symbol": "AB", + "decimals": 18, + "name": "AB", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x95034f653d5d161890836ad2b6b8cc49d14e029a.png", + "aggregators": ["PancakeExtended", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x36a8fcb1f8bca02dc74eb34281de3b9143eae8e3": { + "address": "0x36a8fcb1f8bca02dc74eb34281de3b9143eae8e3", + "symbol": "EMBER", + "decimals": 18, + "name": "Ember", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x36a8fcb1f8bca02dc74eb34281de3b9143eae8e3.png", + "aggregators": ["PancakeCoinGecko", "Rubic", "Rango"], + "occurrences": 3 + }, + "0xdadfead95ee0dded4031d09afac96c30430e5d6d": { + "address": "0xdadfead95ee0dded4031d09afac96c30430e5d6d", + "symbol": "FAFY", + "decimals": 18, + "name": "Fafy Token", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xdadfead95ee0dded4031d09afac96c30430e5d6d.png", + "aggregators": ["PancakeCoinGecko", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x9bb28ee1a5e4a9f5a34a151adf7a0acf34560ec8": { + "address": "0x9bb28ee1a5e4a9f5a34a151adf7a0acf34560ec8", + "symbol": "RLD", + "decimals": 18, + "name": "Refluid", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x9bb28ee1a5e4a9f5a34a151adf7a0acf34560ec8.png", + "aggregators": ["PancakeCoinGecko", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x07869c388a4decf49bdc61ec1ed2b3af8a27f116": { + "address": "0x07869c388a4decf49bdc61ec1ed2b3af8a27f116", + "symbol": "CWF", + "decimals": 18, + "name": "Universal Contact", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x07869c388a4decf49bdc61ec1ed2b3af8a27f116.png", + "aggregators": ["PancakeCoinGecko", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x3c730718c97a77562866b5d29b33228c019eac68": { + "address": "0x3c730718c97a77562866b5d29b33228c019eac68", + "symbol": "BNBD", + "decimals": 9, + "name": "BNB Diamond", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x3c730718c97a77562866b5d29b33228c019eac68.png", + "aggregators": ["PancakeCoinGecko", "Rubic", "Rango"], + "occurrences": 3 + }, + "0xca3c1dc12b0dd0d65964abaa533106cf4f372c78": { + "address": "0xca3c1dc12b0dd0d65964abaa533106cf4f372c78", + "symbol": "CAKITA", + "decimals": 9, + "name": "ChubbyAkita", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xca3c1dc12b0dd0d65964abaa533106cf4f372c78.png", + "aggregators": ["PancakeCoinGecko", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x297c6470cc7a3fe5cf8e5d977c33a2d4b4d9b126": { + "address": "0x297c6470cc7a3fe5cf8e5d977c33a2d4b4d9b126", + "symbol": "OFT", + "decimals": 18, + "name": "ONFA", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x297c6470cc7a3fe5cf8e5d977c33a2d4b4d9b126.png", + "aggregators": ["PancakeCoinGecko", "Rubic", "Rango"], + "occurrences": 3 + }, + "0xec9742f992acc615c4252060d896c845ca8fc086": { + "address": "0xec9742f992acc615c4252060d896c845ca8fc086", + "symbol": "BRICS", + "decimals": 18, + "name": "BRICS Chain", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xec9742f992acc615c4252060d896c845ca8fc086.png", + "aggregators": ["PancakeCoinGecko", "Rubic", "Sonarwatch"], + "occurrences": 3 + }, + "0x07e81d7a652a855261e093fa2b770c26395614cb": { + "address": "0x07e81d7a652a855261e093fa2b770c26395614cb", + "symbol": "BABYX", + "decimals": 9, + "name": "BabyX Swap", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x07e81d7a652a855261e093fa2b770c26395614cb.png", + "aggregators": ["PancakeCoinGecko", "Rubic", "Sonarwatch"], + "occurrences": 3 + }, + "0xdf9e1a85db4f985d5bb5644ad07d9d7ee5673b5e": { + "address": "0xdf9e1a85db4f985d5bb5644ad07d9d7ee5673b5e", + "symbol": "MM72", + "decimals": 18, + "name": "MM72", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xdf9e1a85db4f985d5bb5644ad07d9d7ee5673b5e.png", + "aggregators": ["PancakeCoinGecko", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x522d0f9f3eff479a5b256bb1c1108f47b8e1a153": { + "address": "0x522d0f9f3eff479a5b256bb1c1108f47b8e1a153", + "symbol": "IGUP", + "decimals": 18, + "name": "IGUP Token", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x522d0f9f3eff479a5b256bb1c1108f47b8e1a153.png", + "aggregators": ["PancakeCoinGecko", "Rubic", "Rango"], + "occurrences": 3 + }, + "0xc519a8fc44dbdbf1aac2205847b8d7549339215e": { + "address": "0xc519a8fc44dbdbf1aac2205847b8d7549339215e", + "symbol": "AHA", + "decimals": 18, + "name": "Anagata", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xc519a8fc44dbdbf1aac2205847b8d7549339215e.png", + "aggregators": ["PancakeCoinGecko", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x1475ff9356a8f8099a675ca81a5a4de481c15994": { + "address": "0x1475ff9356a8f8099a675ca81a5a4de481c15994", + "symbol": "OCF", + "decimals": 18, + "name": "OceanFi", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x1475ff9356a8f8099a675ca81a5a4de481c15994.png", + "aggregators": ["PancakeCoinGecko", "Rubic", "Sonarwatch"], + "occurrences": 3 + }, + "0x851944049dfdd189725b136c5ae3fb83cc62b28d": { + "address": "0x851944049dfdd189725b136c5ae3fb83cc62b28d", + "symbol": "HMNG", + "decimals": 18, + "name": "Hummingbird Finance", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x851944049dfdd189725b136c5ae3fb83cc62b28d.png", + "aggregators": ["PancakeCoinGecko", "Rubic", "Sonarwatch"], + "occurrences": 3 + }, + "0x598487dc1f4e129b3499b6231dd18642e5315608": { + "address": "0x598487dc1f4e129b3499b6231dd18642e5315608", + "symbol": "LOGG", + "decimals": 0, + "name": "Logarithm games", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x598487dc1f4e129b3499b6231dd18642e5315608.png", + "aggregators": ["PancakeCoinGecko", "Rubic", "Rango"], + "occurrences": 3 + }, + "0xb800aff8391abacdeb0199ab9cebf63771fcf491": { + "address": "0xb800aff8391abacdeb0199ab9cebf63771fcf491", + "symbol": "NOVAX", + "decimals": 18, + "name": "NovaX", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xb800aff8391abacdeb0199ab9cebf63771fcf491.png", + "aggregators": ["PancakeCoinGecko", "Rubic", "Sonarwatch"], + "occurrences": 3 + }, + "0xc18358243294ecf28955f7029559a253f04b4ad9": { + "address": "0xc18358243294ecf28955f7029559a253f04b4ad9", + "symbol": "MOB", + "decimals": 18, + "name": "Mobster", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xc18358243294ecf28955f7029559a253f04b4ad9.png", + "aggregators": ["PancakeCoinGecko", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x2442421fe1acc8a732251fc372892b5ff1fdd938": { + "address": "0x2442421fe1acc8a732251fc372892b5ff1fdd938", + "symbol": "DEER", + "decimals": 18, + "name": "DEER TOKEN", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x2442421fe1acc8a732251fc372892b5ff1fdd938.png", + "aggregators": ["CoinGecko", "Rubic", "Sonarwatch"], + "occurrences": 3 + }, + "0xca003170865d064002d0ee140d3092efa60cd74c": { + "address": "0xca003170865d064002d0ee140d3092efa60cd74c", + "symbol": "SKH", + "decimals": 18, + "name": "Skyhash", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xca003170865d064002d0ee140d3092efa60cd74c.png", + "aggregators": ["PancakeCoinGecko", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x3c6256f234ba638e5883c46b3fedb00ea2e66b8a": { + "address": "0x3c6256f234ba638e5883c46b3fedb00ea2e66b8a", + "symbol": "MGT", + "decimals": 18, + "name": "Moongate", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x3c6256f234ba638e5883c46b3fedb00ea2e66b8a.png", + "aggregators": ["CoinGecko", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x22b4fa9a13a0d303ad258ee6d62a6ac60364b0c9": { + "address": "0x22b4fa9a13a0d303ad258ee6d62a6ac60364b0c9", + "symbol": "PUMP", + "decimals": 18, + "name": "Big Pump", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x22b4fa9a13a0d303ad258ee6d62a6ac60364b0c9.png", + "aggregators": ["PancakeCoinGecko", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x51e667e91b4b8cb8e6e0528757f248406bd34b57": { + "address": "0x51e667e91b4b8cb8e6e0528757f248406bd34b57", + "symbol": "OWL", + "decimals": 18, + "name": "Owlto", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x51e667e91b4b8cb8e6e0528757f248406bd34b57.png", + "aggregators": ["PancakeExtended", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x414f9e74ba3a9d0acce65182809492f41ac671e0": { + "address": "0x414f9e74ba3a9d0acce65182809492f41ac671e0", + "symbol": "JRT", + "decimals": 18, + "name": "Jarvis Reward", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x414f9e74ba3a9d0acce65182809492f41ac671e0.png", + "aggregators": ["PancakeCoinGecko", "Rubic", "Rango"], + "occurrences": 3 + }, + "0xcbbb3e5099f769f6d4e2b8b92dc0e268f7e099d8": { + "address": "0xcbbb3e5099f769f6d4e2b8b92dc0e268f7e099d8", + "symbol": "BTCZ", + "decimals": 8, + "name": "BitcoinZ", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xcbbb3e5099f769f6d4e2b8b92dc0e268f7e099d8.png", + "aggregators": ["PancakeCoinMarketCap", "Rubic", "Sonarwatch"], + "occurrences": 3 + }, + "0xc836d8dc361e44dbe64c4862d55ba041f88ddd39": { + "address": "0xc836d8dc361e44dbe64c4862d55ba041f88ddd39", + "symbol": "WMATIC", + "decimals": 18, + "name": "Wrapped Matic", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xc836d8dc361e44dbe64c4862d55ba041f88ddd39.png", + "aggregators": ["PancakeCoinMarketCap", "Rubic", "Rango"], + "occurrences": 3 + }, + "0xe2fb3f127f5450dee44afe054385d74c392bdef4": { + "address": "0xe2fb3f127f5450dee44afe054385d74c392bdef4", + "symbol": "CRVUSD", + "decimals": 18, + "name": "Curve.fi USD Stablecoin", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xe2fb3f127f5450dee44afe054385d74c392bdef4.png", + "aggregators": ["PancakeCoinGecko", "Rubic", "Rango"], + "occurrences": 3 + }, + "0xb962150760f9a3bb00e3e9cf48297ee20ada4a33": { + "address": "0xb962150760f9a3bb00e3e9cf48297ee20ada4a33", + "symbol": "XZOOMER", + "decimals": 18, + "name": "xZoomerCoin", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xb962150760f9a3bb00e3e9cf48297ee20ada4a33.png", + "aggregators": ["PancakeCoinMarketCap", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x24b1c3f935dffcadb606920022ba8c703bb065d7": { + "address": "0x24b1c3f935dffcadb606920022ba8c703bb065d7", + "symbol": "RAIN", + "decimals": 18, + "name": "RAIN", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x24b1c3f935dffcadb606920022ba8c703bb065d7.png", + "aggregators": ["CoinGecko", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x35de111558f691f77f791fb0c08b2d6b931a9d47": { + "address": "0x35de111558f691f77f791fb0c08b2d6b931a9d47", + "symbol": "BCHAIN", + "decimals": 18, + "name": "Chain Games", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x35de111558f691f77f791fb0c08b2d6b931a9d47.png", + "aggregators": ["PancakeCoinMarketCap", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x0226a6203e113253c5a7afad2f7c75a2e8324009": { + "address": "0x0226a6203e113253c5a7afad2f7c75a2e8324009", + "symbol": "ZOO", + "decimals": 18, + "name": "ZOO", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x0226a6203e113253c5a7afad2f7c75a2e8324009.png", + "aggregators": ["PancakeCoinGecko", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x2b3f34e9d4b127797ce6244ea341a83733ddd6e4": { + "address": "0x2b3f34e9d4b127797ce6244ea341a83733ddd6e4", + "symbol": "FLOKI", + "decimals": 9, + "name": "FLOKI", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x2b3f34e9d4b127797ce6244ea341a83733ddd6e4.png", + "aggregators": ["PancakeTop100", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x48378891d6e459ca9a56b88b406e8f4eab2e39bf": { + "address": "0x48378891d6e459ca9a56b88b406e8f4eab2e39bf", + "symbol": "$FUR", + "decimals": 18, + "name": "Furio", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x48378891d6e459ca9a56b88b406e8f4eab2e39bf.png", + "aggregators": ["PancakeCoinMarketCap", "Rubic", "Rango"], + "occurrences": 3 + }, + "0xafe3321309a994831884fc1725f4c3236ac79f76": { + "address": "0xafe3321309a994831884fc1725f4c3236ac79f76", + "symbol": "$MFLATE", + "decimals": 9, + "name": "Memeflate", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xafe3321309a994831884fc1725f4c3236ac79f76.png", + "aggregators": ["PancakeCoinMarketCap", "Rubic", "Rango"], + "occurrences": 3 + }, + "0xc2eaaf69e6439abab12dd21f560ba0ec7f17cff7": { + "address": "0xc2eaaf69e6439abab12dd21f560ba0ec7f17cff7", + "symbol": "$POV", + "decimals": 18, + "name": "Pepe Original Version", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xc2eaaf69e6439abab12dd21f560ba0ec7f17cff7.png", + "aggregators": ["PancakeCoinMarketCap", "Rubic", "Rango"], + "occurrences": 3 + }, + "0xe097bceb09bfb18047cf259f321cc129b7beba5e": { + "address": "0xe097bceb09bfb18047cf259f321cc129b7beba5e", + "symbol": "$TIPSY", + "decimals": 18, + "name": "TipsyCoin", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xe097bceb09bfb18047cf259f321cc129b7beba5e.png", + "aggregators": ["PancakeCoinMarketCap", "Rubic", "Rango"], + "occurrences": 3 + }, + "0xcee4e6f4d8e634e329c457a4f98c090afafb1c4b": { + "address": "0xcee4e6f4d8e634e329c457a4f98c090afafb1c4b", + "symbol": "2024", + "decimals": 18, + "name": "2024 PUMP", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xcee4e6f4d8e634e329c457a4f98c090afafb1c4b.png", + "aggregators": ["PancakeCoinMarketCap", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x4e7ef0077a1bc31fd9bcadd6ca149dea9c3faedb": { + "address": "0x4e7ef0077a1bc31fd9bcadd6ca149dea9c3faedb", + "symbol": "4DC", + "decimals": 18, + "name": "4DCoin", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x4e7ef0077a1bc31fd9bcadd6ca149dea9c3faedb.png", + "aggregators": ["PancakeCoinGecko", "Rubic", "Rango"], + "occurrences": 3 + }, + "0xd99903242745e8e3ecf1e2a7d4f6052282f891ee": { + "address": "0xd99903242745e8e3ecf1e2a7d4f6052282f891ee", + "symbol": "4DMAPS", + "decimals": 18, + "name": "4D Twin Maps", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xd99903242745e8e3ecf1e2a7d4f6052282f891ee.png", + "aggregators": ["PancakeCoinGecko", "Rubic", "Rango"], + "occurrences": 3 + }, + "0xd8126b749e4ec149c97bffbe875ab9960bdb8916": { + "address": "0xd8126b749e4ec149c97bffbe875ab9960bdb8916", + "symbol": "A2E", + "decimals": 9, + "name": "Hey Floki AI", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xd8126b749e4ec149c97bffbe875ab9960bdb8916.png", + "aggregators": ["PancakeCoinMarketCap", "Rubic", "Rango"], + "occurrences": 3 + }, + "0xfaaa87943bfca6d97434be3d26c589647fea4375": { + "address": "0xfaaa87943bfca6d97434be3d26c589647fea4375", + "symbol": "ACE", + "decimals": 18, + "name": "ACEToken", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xfaaa87943bfca6d97434be3d26c589647fea4375.png", + "aggregators": ["PancakeCoinMarketCap", "Rubic", "Rango"], + "occurrences": 3 + }, + "0xebd949aacfc681787d3d091fa2929e4413e0e4e1": { + "address": "0xebd949aacfc681787d3d091fa2929e4413e0e4e1", + "symbol": "ACRE", + "decimals": 18, + "name": "Arable Protocol", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xebd949aacfc681787d3d091fa2929e4413e0e4e1.png", + "aggregators": ["PancakeCoinGecko", "Rubic", "Rango"], + "occurrences": 3 + }, + "0xb427e47e8fdd678278d2a91eeac014ffcddaf029": { + "address": "0xb427e47e8fdd678278d2a91eeac014ffcddaf029", + "symbol": "AGATA", + "decimals": 18, + "name": "Agatech", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xb427e47e8fdd678278d2a91eeac014ffcddaf029.png", + "aggregators": ["PancakeCoinMarketCap", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x499fc0ec9aade85de50af0c17513c7b850eb275f": { + "address": "0x499fc0ec9aade85de50af0c17513c7b850eb275f", + "symbol": "AICR", + "decimals": 18, + "name": "AICrew", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x499fc0ec9aade85de50af0c17513c7b850eb275f.png", + "aggregators": ["PancakeCoinGecko", "Rubic", "Sonarwatch"], + "occurrences": 3 + }, + "0x461ab4d656bc22230a650d9d37e1c85f90bfed02": { + "address": "0x461ab4d656bc22230a650d9d37e1c85f90bfed02", + "symbol": "AIRTOK", + "decimals": 18, + "name": "Airtok", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x461ab4d656bc22230a650d9d37e1c85f90bfed02.png", + "aggregators": ["PancakeCoinGecko", "Rubic", "Rango"], + "occurrences": 3 + }, + "0xc3438d410e9a1b3096caa4424c0d7b7257ab08ba": { + "address": "0xc3438d410e9a1b3096caa4424c0d7b7257ab08ba", + "symbol": "AISC", + "decimals": 18, + "name": "AI Surf", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xc3438d410e9a1b3096caa4424c0d7b7257ab08ba.png", + "aggregators": ["PancakeCoinGecko", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x581c124d0f4b9d365c06e30d37ea8352d5f3a2af": { + "address": "0x581c124d0f4b9d365c06e30d37ea8352d5f3a2af", + "symbol": "AIV", + "decimals": 18, + "name": "AIVOICE", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x581c124d0f4b9d365c06e30d37ea8352d5f3a2af.png", + "aggregators": ["PancakeCoinGecko", "Rubic", "Rango"], + "occurrences": 3 + }, + "0xa77d560e34bd6a8d7265f754b4fcd65d9a8e5619": { + "address": "0xa77d560e34bd6a8d7265f754b4fcd65d9a8e5619", + "symbol": "AMA", + "decimals": 18, + "name": "Mrweb Finance", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xa77d560e34bd6a8d7265f754b4fcd65d9a8e5619.png", + "aggregators": ["PancakeCoinGecko", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x70a30bb133f7b5038d3c28d8b77d8da258fc784a": { + "address": "0x70a30bb133f7b5038d3c28d8b77d8da258fc784a", + "symbol": "AMG", + "decimals": 18, + "name": "DeHeroGame Amazing Token", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x70a30bb133f7b5038d3c28d8b77d8da258fc784a.png", + "aggregators": ["PancakeCoinMarketCap", "Rubic", "Rango"], + "occurrences": 3 + }, + "0xb0abd9e24769dae9eee658498eabb35edf3f57e9": { + "address": "0xb0abd9e24769dae9eee658498eabb35edf3f57e9", + "symbol": "AMPERE", + "decimals": 18, + "name": "AmpereChain", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xb0abd9e24769dae9eee658498eabb35edf3f57e9.png", + "aggregators": ["PancakeCoinGecko", "Rubic", "Rango"], + "occurrences": 3 + }, + "0xb32d4817908f001c2a53c15bff8c14d8813109be": { + "address": "0xb32d4817908f001c2a53c15bff8c14d8813109be", + "symbol": "AOG", + "decimals": 18, + "name": "smARTOFGIVING", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xb32d4817908f001c2a53c15bff8c14d8813109be.png", + "aggregators": ["PancakeCoinMarketCap", "Rubic", "Rango"], + "occurrences": 3 + }, + "0xa49c8cbbddfe4dbc8605f0f5c8f2845c5e225d22": { + "address": "0xa49c8cbbddfe4dbc8605f0f5c8f2845c5e225d22", + "symbol": "APT", + "decimals": 18, + "name": "Apidae", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xa49c8cbbddfe4dbc8605f0f5c8f2845c5e225d22.png", + "aggregators": ["PancakeCoinGecko", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x8668fc058ac48bc2a5696c2125b4ce38d4bd0223": { + "address": "0x8668fc058ac48bc2a5696c2125b4ce38d4bd0223", + "symbol": "ARABBIT", + "decimals": 8, + "name": "Alpha Rabbit", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x8668fc058ac48bc2a5696c2125b4ce38d4bd0223.png", + "aggregators": ["PancakeCoinGecko", "Rubic", "Rango"], + "occurrences": 3 + }, + "0xaec9e50e3397f9ddc635c6c429c8c7eca418a143": { + "address": "0xaec9e50e3397f9ddc635c6c429c8c7eca418a143", + "symbol": "ARCUSD", + "decimals": 18, + "name": "Arcana arcUSD", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xaec9e50e3397f9ddc635c6c429c8c7eca418a143.png", + "aggregators": ["PancakeCoinGecko", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x701d9a068d1eec64fbc10299b9f1b18fbb355ddb": { + "address": "0x701d9a068d1eec64fbc10299b9f1b18fbb355ddb", + "symbol": "ARG", + "decimals": 18, + "name": "Argonon Helium", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x701d9a068d1eec64fbc10299b9f1b18fbb355ddb.png", + "aggregators": ["PancakeCoinGecko", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x4db2495afad4c0e481ffc40fdaf66e13a786b619": { + "address": "0x4db2495afad4c0e481ffc40fdaf66e13a786b619", + "symbol": "ARIX", + "decimals": 18, + "name": "Arix", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x4db2495afad4c0e481ffc40fdaf66e13a786b619.png", + "aggregators": ["PancakeCoinGecko", "Rubic", "Sonarwatch"], + "occurrences": 3 + }, + "0x1d4268a58ee7ec2cc2af5d70a2fd2b3a896527a2": { + "address": "0x1d4268a58ee7ec2cc2af5d70a2fd2b3a896527a2", + "symbol": "ARKEN", + "decimals": 18, + "name": "Arken Token", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x1d4268a58ee7ec2cc2af5d70a2fd2b3a896527a2.png", + "aggregators": ["PancakeCoinMarketCap", "Rubic", "Rango"], + "occurrences": 3 + }, + "0xb4d5841cb352be4b743283dd58b61ecd86655510": { + "address": "0xb4d5841cb352be4b743283dd58b61ecd86655510", + "symbol": "ATB", + "decimals": 18, + "name": "ATB", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xb4d5841cb352be4b743283dd58b61ecd86655510.png", + "aggregators": ["PancakeCoinGecko", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x00000000ba2ca30042001abc545871380f570b1f": { + "address": "0x00000000ba2ca30042001abc545871380f570b1f", + "symbol": "ATF", + "decimals": 18, + "name": "ArithFi", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x00000000ba2ca30042001abc545871380f570b1f.png", + "aggregators": ["PancakeCoinMarketCap", "Rubic", "Rango"], + "occurrences": 3 + }, + "0xa85128073e25a0190b86b72e3976f8b02dad757d": { + "address": "0xa85128073e25a0190b86b72e3976f8b02dad757d", + "symbol": "B2B", + "decimals": 18, + "name": "B2B Token", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xa85128073e25a0190b86b72e3976f8b02dad757d.png", + "aggregators": ["PancakeCoinGecko", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x43f102bbd52259f2cfd0ef82e8807e3610ae3e40": { + "address": "0x43f102bbd52259f2cfd0ef82e8807e3610ae3e40", + "symbol": "BABYDOGE", + "decimals": 9, + "name": "Save Baby Doge", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x43f102bbd52259f2cfd0ef82e8807e3610ae3e40.png", + "aggregators": ["PancakeCoinGecko", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x222c1e86c78b4a1d9c57c120d18b584be2c65937": { + "address": "0x222c1e86c78b4a1d9c57c120d18b584be2c65937", + "symbol": "BABYDRAGON", + "decimals": 9, + "name": "Baby Dragon", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x222c1e86c78b4a1d9c57c120d18b584be2c65937.png", + "aggregators": ["PancakeCoinGecko", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x63f79d1de735c922cfce240b6c1cc30a00214f8c": { + "address": "0x63f79d1de735c922cfce240b6c1cc30a00214f8c", + "symbol": "BABYMEME", + "decimals": 9, + "name": "Baby Meme Coin", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x63f79d1de735c922cfce240b6c1cc30a00214f8c.png", + "aggregators": ["PancakeCoinMarketCap", "Rubic", "Rango"], + "occurrences": 3 + }, + "0xc2fd585d2e6a33fe48a0ffc65072216b0e3b2e07": { + "address": "0xc2fd585d2e6a33fe48a0ffc65072216b0e3b2e07", + "symbol": "BASE", + "decimals": 18, + "name": "ReBaseChain", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xc2fd585d2e6a33fe48a0ffc65072216b0e3b2e07.png", + "aggregators": ["PancakeCoinGecko", "Rubic", "Sonarwatch"], + "occurrences": 3 + }, + "0x0ea8286ffc0080061d60a156cce02db24bb06858": { + "address": "0x0ea8286ffc0080061d60a156cce02db24bb06858", + "symbol": "BCAT", + "decimals": 9, + "name": "BSCCAT", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x0ea8286ffc0080061d60a156cce02db24bb06858.png", + "aggregators": ["PancakeCoinMarketCap", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x0747cda49c82d3fc6b06df1822e1de0c16673e9f": { + "address": "0x0747cda49c82d3fc6b06df1822e1de0c16673e9f", + "symbol": "BCFLUX", + "decimals": 18, + "name": "binance conflux Flux Protocol", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x0747cda49c82d3fc6b06df1822e1de0c16673e9f.png", + "aggregators": ["PancakeCoinMarketCap", "Rubic", "Rango"], + "occurrences": 3 + }, + "0xf7f3ac6ae80cecd3fdf0a74019117aa69fb86120": { + "address": "0xf7f3ac6ae80cecd3fdf0a74019117aa69fb86120", + "symbol": "BEBE", + "decimals": 18, + "name": "BEBE", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xf7f3ac6ae80cecd3fdf0a74019117aa69fb86120.png", + "aggregators": ["PancakeCoinGecko", "Rubic", "Rango"], + "occurrences": 3 + }, + "0xe75f36244902c1a2913623fce22b1e58ffe47192": { + "address": "0xe75f36244902c1a2913623fce22b1e58ffe47192", + "symbol": "BITCOINAI", + "decimals": 18, + "name": "Bitcoin AI", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xe75f36244902c1a2913623fce22b1e58ffe47192.png", + "aggregators": ["PancakeCoinGecko", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x81aa4d3ad2a86e7a2cd44630c36ccaacd6b30568": { + "address": "0x81aa4d3ad2a86e7a2cd44630c36ccaacd6b30568", + "symbol": "BLA", + "decimals": 9, + "name": "BLUEART TOKEN", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x81aa4d3ad2a86e7a2cd44630c36ccaacd6b30568.png", + "aggregators": ["PancakeCoinMarketCap", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x00db8321c431b62a6d42979ed4a5d0f3661c959e": { + "address": "0x00db8321c431b62a6d42979ed4a5d0f3661c959e", + "symbol": "BNA", + "decimals": 18, + "name": "BNAcoin", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x00db8321c431b62a6d42979ed4a5d0f3661c959e.png", + "aggregators": ["PancakeCoinGecko", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x061e64f1293bc49402a867cc6411987148bcdb1b": { + "address": "0x061e64f1293bc49402a867cc6411987148bcdb1b", + "symbol": "BNBKING", + "decimals": 9, + "name": "BNBKinG", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x061e64f1293bc49402a867cc6411987148bcdb1b.png", + "aggregators": ["PancakeCoinGecko", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x455ad1bc4e18fd4e369234b6e11d88acbc416758": { + "address": "0x455ad1bc4e18fd4e369234b6e11d88acbc416758", + "symbol": "BRCT", + "decimals": 18, + "name": "BRCT", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x455ad1bc4e18fd4e369234b6e11d88acbc416758.png", + "aggregators": ["PancakeCoinGecko", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x77491cdcbb8320feeabf21bac19a00e2e3143708": { + "address": "0x77491cdcbb8320feeabf21bac19a00e2e3143708", + "symbol": "BRCX", + "decimals": 18, + "name": "BRC20X", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x77491cdcbb8320feeabf21bac19a00e2e3143708.png", + "aggregators": ["PancakeCoinGecko", "Rubic", "Rango"], + "occurrences": 3 + }, + "0xa9231f3b68e8059722c86014df8ce8607bb8defe": { + "address": "0xa9231f3b68e8059722c86014df8ce8607bb8defe", + "symbol": "$BRES", + "decimals": 18, + "name": "BlastFi Ecosystem Token", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xa9231f3b68e8059722c86014df8ce8607bb8defe.png", + "aggregators": ["PancakeCoinGecko", "Rubic", "Sonarwatch"], + "occurrences": 3 + }, + "0x20d278c31a66d31edcb83cc0597c7182a7c91ca4": { + "address": "0x20d278c31a66d31edcb83cc0597c7182a7c91ca4", + "symbol": "BSK", + "decimals": 18, + "name": "BTCSKR", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x20d278c31a66d31edcb83cc0597c7182a7c91ca4.png", + "aggregators": ["PancakeCoinGecko", "Rubic", "Rango"], + "occurrences": 3 + }, + "0xf78a2e1824638d09571172368bbe1d8d399893ab": { + "address": "0xf78a2e1824638d09571172368bbe1d8d399893ab", + "symbol": "BTOP", + "decimals": 18, + "name": "Botopia.Finance", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xf78a2e1824638d09571172368bbe1d8d399893ab.png", + "aggregators": ["PancakeCoinMarketCap", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x91f1d3c7ddb8d5e290e71f893bad45f16e8bd7ba": { + "address": "0x91f1d3c7ddb8d5e290e71f893bad45f16e8bd7ba", + "symbol": "BURNS", + "decimals": 18, + "name": "Burnsdefi", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x91f1d3c7ddb8d5e290e71f893bad45f16e8bd7ba.png", + "aggregators": ["PancakeCoinMarketCap", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x1dacbcd9b3fc2d6a341dca3634439d12bc71ca4d": { + "address": "0x1dacbcd9b3fc2d6a341dca3634439d12bc71ca4d", + "symbol": "BVT", + "decimals": 18, + "name": "Bovine Verse Token", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x1dacbcd9b3fc2d6a341dca3634439d12bc71ca4d.png", + "aggregators": ["PancakeCoinGecko", "Rubic", "Rango"], + "occurrences": 3 + }, + "0xdefcafe7eac90d31bbba841038df365de3c4e207": { + "address": "0xdefcafe7eac90d31bbba841038df365de3c4e207", + "symbol": "CAFE", + "decimals": 9, + "name": "0xDEFCAFE", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xdefcafe7eac90d31bbba841038df365de3c4e207.png", + "aggregators": ["PancakeCoinGecko", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x9377e3c3180dddfcda4e4217ed21f2f7c3b235a0": { + "address": "0x9377e3c3180dddfcda4e4217ed21f2f7c3b235a0", + "symbol": "CAVADA", + "decimals": 6, + "name": "CAVADA", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x9377e3c3180dddfcda4e4217ed21f2f7c3b235a0.png", + "aggregators": ["PancakeCoinMarketCap", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x31913aa5de81ff679c603053c3554ab90d5dbaf8": { + "address": "0x31913aa5de81ff679c603053c3554ab90d5dbaf8", + "symbol": "CBIT", + "decimals": 18, + "name": "CentBit", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x31913aa5de81ff679c603053c3554ab90d5dbaf8.png", + "aggregators": ["PancakeCoinGecko", "Rubic", "Rango"], + "occurrences": 3 + }, + "0xa4599f3ab65e9d115df5cef609fb4f23536f6818": { + "address": "0xa4599f3ab65e9d115df5cef609fb4f23536f6818", + "symbol": "CCC", + "decimals": 18, + "name": "Candide Coin", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xa4599f3ab65e9d115df5cef609fb4f23536f6818.png", + "aggregators": ["PancakeCoinGecko", "Rubic", "Sonarwatch"], + "occurrences": 3 + }, + "0x8daa7c321f7a7fe921f51d0457ec7f149e8be926": { + "address": "0x8daa7c321f7a7fe921f51d0457ec7f149e8be926", + "symbol": "CEX", + "decimals": 18, + "name": "Coinmart Finance", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x8daa7c321f7a7fe921f51d0457ec7f149e8be926.png", + "aggregators": ["PancakeCoinGecko", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x9029d86aa59b4680b40f4f42505d5f8f880d2ac5": { + "address": "0x9029d86aa59b4680b40f4f42505d5f8f880d2ac5", + "symbol": "CO2", + "decimals": 18, + "name": "Co2DAO", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x9029d86aa59b4680b40f4f42505d5f8f880d2ac5.png", + "aggregators": ["PancakeCoinGecko", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x7e84ac3b1eea1ef60b1a58fc3679829cc19f19e6": { + "address": "0x7e84ac3b1eea1ef60b1a58fc3679829cc19f19e6", + "symbol": "COON", + "decimals": 18, + "name": "Maine Coon Cat", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x7e84ac3b1eea1ef60b1a58fc3679829cc19f19e6.png", + "aggregators": ["PancakeCoinGecko", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x88e4adc30b5dd08122d55b0cef013062a94986da": { + "address": "0x88e4adc30b5dd08122d55b0cef013062a94986da", + "symbol": "CRTAI", + "decimals": 18, + "name": "CRT AI NETWORK", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x88e4adc30b5dd08122d55b0cef013062a94986da.png", + "aggregators": ["PancakeCoinGecko", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x4861ba0ce919fee66b41c85a08a7476557914275": { + "address": "0x4861ba0ce919fee66b41c85a08a7476557914275", + "symbol": "CTN", + "decimals": 18, + "name": "Continuum Finance", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x4861ba0ce919fee66b41c85a08a7476557914275.png", + "aggregators": ["PancakeCoinMarketCap", "Rubic", "Rango"], + "occurrences": 3 + }, + "0xe5a46bf898ce7583b612e5d168073ff773d7857e": { + "address": "0xe5a46bf898ce7583b612e5d168073ff773d7857e", + "symbol": "CVIP", + "decimals": 18, + "name": "CVIP", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xe5a46bf898ce7583b612e5d168073ff773d7857e.png", + "aggregators": ["PancakeCoinMarketCap", "Rubic", "Rango"], + "occurrences": 3 + }, + "0xd3c7e51caab1089002ec05569a04d14bcc478bc4": { + "address": "0xd3c7e51caab1089002ec05569a04d14bcc478bc4", + "symbol": "D3D", + "decimals": 18, + "name": "D3D Social", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xd3c7e51caab1089002ec05569a04d14bcc478bc4.png", + "aggregators": ["PancakeCoinMarketCap", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x2c7df6aa715f77a8ebe2e14c10fabf72d0063015": { + "address": "0x2c7df6aa715f77a8ebe2e14c10fabf72d0063015", + "symbol": "DALMA", + "decimals": 18, + "name": "Dalma Inu", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x2c7df6aa715f77a8ebe2e14c10fabf72d0063015.png", + "aggregators": ["PancakeCoinGecko", "Rubic", "Rango"], + "occurrences": 3 + }, + "0xe90c8abc9901895b2ace2e0075291e9ef0aa1f07": { + "address": "0xe90c8abc9901895b2ace2e0075291e9ef0aa1f07", + "symbol": "DAW", + "decimals": 18, + "name": "Daw Currency", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xe90c8abc9901895b2ace2e0075291e9ef0aa1f07.png", + "aggregators": ["PancakeCoinMarketCap", "Rubic", "Rango"], + "occurrences": 3 + }, + "0xf106f153bd77be6d5191a07159c99c4219a1cec4": { + "address": "0xf106f153bd77be6d5191a07159c99c4219a1cec4", + "symbol": "DCNX", + "decimals": 18, + "name": "DCNTRL Network", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xf106f153bd77be6d5191a07159c99c4219a1cec4.png", + "aggregators": ["PancakeCoinGecko", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x71b3a0566f4bf80331d115d8026a7022bf670cce": { + "address": "0x71b3a0566f4bf80331d115d8026a7022bf670cce", + "symbol": "DD", + "decimals": 6, + "name": "Diment Dollar", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x71b3a0566f4bf80331d115d8026a7022bf670cce.png", + "aggregators": ["PancakeCoinMarketCap", "Rubic", "Rango"], + "occurrences": 3 + }, + "0xb2c40b797cc80debd08a4ab26d1bc2f2317b6c7c": { + "address": "0xb2c40b797cc80debd08a4ab26d1bc2f2317b6c7c", + "symbol": "DEGA", + "decimals": 9, + "name": "Dega", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xb2c40b797cc80debd08a4ab26d1bc2f2317b6c7c.png", + "aggregators": ["PancakeCoinMarketCap", "Rubic", "Rango"], + "occurrences": 3 + }, + "0xde314a065aaaf11e794706f8585c77e3bb7a2741": { + "address": "0xde314a065aaaf11e794706f8585c77e3bb7a2741", + "symbol": "DOCSWAP", + "decimals": 18, + "name": "Dex on Crypto", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xde314a065aaaf11e794706f8585c77e3bb7a2741.png", + "aggregators": ["PancakeCoinGecko", "Rubic", "Rango"], + "occurrences": 3 + }, + "0xbebdcc8a61bf7372461cd1e746a0c2ead1bc06d2": { + "address": "0xbebdcc8a61bf7372461cd1e746a0c2ead1bc06d2", + "symbol": "DOD100", + "decimals": 18, + "name": "Day of Defeat Mini 100x", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xbebdcc8a61bf7372461cd1e746a0c2ead1bc06d2.png", + "aggregators": ["PancakeCoinMarketCap", "Rubic", "Rango"], + "occurrences": 3 + }, + "0xdc49d53330317cbc6924fa53042e0c9bca0a8d63": { + "address": "0xdc49d53330317cbc6924fa53042e0c9bca0a8d63", + "symbol": "DOGEDI", + "decimals": 12, + "name": "DOGEDI", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xdc49d53330317cbc6924fa53042e0c9bca0a8d63.png", + "aggregators": ["PancakeCoinMarketCap", "Rubic", "Rango"], + "occurrences": 3 + }, + "0xf8d44b7c801bb3e323752419ff8285b80fcfbf20": { + "address": "0xf8d44b7c801bb3e323752419ff8285b80fcfbf20", + "symbol": "DOM", + "decimals": 18, + "name": "Domus AI", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xf8d44b7c801bb3e323752419ff8285b80fcfbf20.png", + "aggregators": ["PancakeCoinGecko", "Rubic", "Sonarwatch"], + "occurrences": 3 + }, + "0x229c32460c6beac113e720ac4a7495b57f53f7cf": { + "address": "0x229c32460c6beac113e720ac4a7495b57f53f7cf", + "symbol": "DONA", + "decimals": 9, + "name": "DonaSwap", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x229c32460c6beac113e720ac4a7495b57f53f7cf.png", + "aggregators": ["PancakeCoinMarketCap", "Rubic", "Rango"], + "occurrences": 3 + }, + "0xfafbc48f6aa3587984ea50e472304802b39c2604": { + "address": "0xfafbc48f6aa3587984ea50e472304802b39c2604", + "symbol": "DOR", + "decimals": 18, + "name": "DogyRace", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xfafbc48f6aa3587984ea50e472304802b39c2604.png", + "aggregators": ["PancakeCoinMarketCap", "Rubic", "Rango"], + "occurrences": 3 + }, + "0xc054131808e11a71bb585e8965d14422a4666666": { + "address": "0xc054131808e11a71bb585e8965d14422a4666666", + "symbol": "DRAGON", + "decimals": 6, + "name": "Dragon Coin", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xc054131808e11a71bb585e8965d14422a4666666.png", + "aggregators": ["PancakeCoinGecko", "Rubic", "Rango"], + "occurrences": 3 + }, + "0xe298ed3543b45037a2d4037ac6dfeb2e801f9803": { + "address": "0xe298ed3543b45037a2d4037ac6dfeb2e801f9803", + "symbol": "DU", + "decimals": 18, + "name": "Du", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xe298ed3543b45037a2d4037ac6dfeb2e801f9803.png", + "aggregators": ["PancakeCoinGecko", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x1cc73d96ff2cb0d7bec74eaf4c81f27c9132ee86": { + "address": "0x1cc73d96ff2cb0d7bec74eaf4c81f27c9132ee86", + "symbol": "EFCR", + "decimals": 8, + "name": "EFLANCER", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x1cc73d96ff2cb0d7bec74eaf4c81f27c9132ee86.png", + "aggregators": ["PancakeCoinGecko", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x8005d97e993668a528008d16338b42f9e976ed0f": { + "address": "0x8005d97e993668a528008d16338b42f9e976ed0f", + "symbol": "EGOLD", + "decimals": 18, + "name": "EGOLD - Algorithmic NFT Mining", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x8005d97e993668a528008d16338b42f9e976ed0f.png", + "aggregators": ["PancakeCoinGecko", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x9d4282b4b6dc457f44f15e39ebffd4621c6df246": { + "address": "0x9d4282b4b6dc457f44f15e39ebffd4621c6df246", + "symbol": "ELOIN", + "decimals": 18, + "name": "Eloin", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x9d4282b4b6dc457f44f15e39ebffd4621c6df246.png", + "aggregators": ["PancakeCoinGecko", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x5bc4e94ce63c5470515cbddc903f813580a2a08d": { + "address": "0x5bc4e94ce63c5470515cbddc903f813580a2a08d", + "symbol": "ENTER", + "decimals": 18, + "name": "ENTER", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x5bc4e94ce63c5470515cbddc903f813580a2a08d.png", + "aggregators": ["PancakeCoinGecko", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x90e1f81b298f6c180ce6f71a6bdb4acf41be8e01": { + "address": "0x90e1f81b298f6c180ce6f71a6bdb4acf41be8e01", + "symbol": "EPIX", + "decimals": 18, + "name": "Byepix", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x90e1f81b298f6c180ce6f71a6bdb4acf41be8e01.png", + "aggregators": ["PancakeCoinMarketCap", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x696b2518190211879d6ea281664b690ef327b717": { + "address": "0x696b2518190211879d6ea281664b690ef327b717", + "symbol": "FAYD", + "decimals": 18, + "name": "Fayda", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x696b2518190211879d6ea281664b690ef327b717.png", + "aggregators": ["PancakeCoinMarketCap", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x816ec483ceffe52f174aaba14b83bc7b5f33b403": { + "address": "0x816ec483ceffe52f174aaba14b83bc7b5f33b403", + "symbol": "FHB", + "decimals": 18, + "name": "FHB", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x816ec483ceffe52f174aaba14b83bc7b5f33b403.png", + "aggregators": ["PancakeCoinMarketCap", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x88fa341d1c61f6723491dceb56ee09f1fda6d972": { + "address": "0x88fa341d1c61f6723491dceb56ee09f1fda6d972", + "symbol": "FTT", + "decimals": 18, + "name": "FTT Token", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x88fa341d1c61f6723491dceb56ee09f1fda6d972.png", + "aggregators": ["PancakeCoinMarketCap", "Rubic", "Rango"], + "occurrences": 3 + }, + "0xc14a7747cfec02cfea62e72bb93538de6b2078e6": { + "address": "0xc14a7747cfec02cfea62e72bb93538de6b2078e6", + "symbol": "GBL", + "decimals": 18, + "name": "Global Token", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xc14a7747cfec02cfea62e72bb93538de6b2078e6.png", + "aggregators": ["PancakeCoinMarketCap", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x90a7253b4dc957257a363b9960ca383d241bd01f": { + "address": "0x90a7253b4dc957257a363b9960ca383d241bd01f", + "symbol": "GBT", + "decimals": 18, + "name": "Give Back Token", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x90a7253b4dc957257a363b9960ca383d241bd01f.png", + "aggregators": ["PancakeCoinGecko", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x52eb6c887a4691f10bee396778603927c23be1fc": { + "address": "0x52eb6c887a4691f10bee396778603927c23be1fc", + "symbol": "GLB", + "decimals": 9, + "name": "Golden Ball", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x52eb6c887a4691f10bee396778603927c23be1fc.png", + "aggregators": ["PancakeCoinMarketCap", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x606379220ab266bbe4b0fef8469e6e602f295a84": { + "address": "0x606379220ab266bbe4b0fef8469e6e602f295a84", + "symbol": "GLOW", + "decimals": 18, + "name": "Glow Token", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x606379220ab266bbe4b0fef8469e6e602f295a84.png", + "aggregators": ["PancakeCoinGecko", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x7fdf0d77f9f906addc7f3b75a73df941ae65d7d6": { + "address": "0x7fdf0d77f9f906addc7f3b75a73df941ae65d7d6", + "symbol": "GLT", + "decimals": 9, + "name": "GeoLeaf", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x7fdf0d77f9f906addc7f3b75a73df941ae65d7d6.png", + "aggregators": ["PancakeCoinGecko", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x4b71bd5e1db6cce4179e175a3a2033e4f17b7432": { + "address": "0x4b71bd5e1db6cce4179e175a3a2033e4f17b7432", + "symbol": "GMY", + "decimals": 9, + "name": "Gameology", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x4b71bd5e1db6cce4179e175a3a2033e4f17b7432.png", + "aggregators": ["PancakeCoinGecko", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x438fc473ba340d0734e2d05acdf5bee775d1b0a4": { + "address": "0x438fc473ba340d0734e2d05acdf5bee775d1b0a4", + "symbol": "GOAL", + "decimals": 18, + "name": "GOAL token", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x438fc473ba340d0734e2d05acdf5bee775d1b0a4.png", + "aggregators": ["PancakeCoinMarketCap", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x8b6fba73454101d537d51d5b12614a01067cd168": { + "address": "0x8b6fba73454101d537d51d5b12614a01067cd168", + "symbol": "GOLD", + "decimals": 18, + "name": "GOLD", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x8b6fba73454101d537d51d5b12614a01067cd168.png", + "aggregators": ["PancakeCoinGecko", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x8de4228d54fc86d4607c8425e8becefb93888fe4": { + "address": "0x8de4228d54fc86d4607c8425e8becefb93888fe4", + "symbol": "GRWV", + "decimals": 18, + "name": "GreenWAVES OLD ", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x8de4228d54fc86d4607c8425e8becefb93888fe4.png", + "aggregators": ["PancakeCoinGecko", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x552594612f935441c01c6854edf111f343c1ca07": { + "address": "0x552594612f935441c01c6854edf111f343c1ca07", + "symbol": "GWT", + "decimals": 18, + "name": "Galaxy War", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x552594612f935441c01c6854edf111f343c1ca07.png", + "aggregators": ["PancakeCoinMarketCap", "Rubic", "Rango"], + "occurrences": 3 + }, + "0xc4bc63af55d684bfd83006678a4a77d7c88431fd": { + "address": "0xc4bc63af55d684bfd83006678a4a77d7c88431fd", + "symbol": "HAC", + "decimals": 18, + "name": "Planet Hares - HAC Token v2", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xc4bc63af55d684bfd83006678a4a77d7c88431fd.png", + "aggregators": ["PancakeCoinGecko", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x20d39a5130f799b95b55a930e5b7ebc589ea9ed8": { + "address": "0x20d39a5130f799b95b55a930e5b7ebc589ea9ed8", + "symbol": "HE", + "decimals": 18, + "name": "Heroes&Empires", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x20d39a5130f799b95b55a930e5b7ebc589ea9ed8.png", + "aggregators": ["PancakeCoinGecko", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x759bd4ed07a34b9ea761f8f2ed9f0e102675a29c": { + "address": "0x759bd4ed07a34b9ea761f8f2ed9f0e102675a29c", + "symbol": "HF", + "decimals": 9, + "name": "Have Fun", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x759bd4ed07a34b9ea761f8f2ed9f0e102675a29c.png", + "aggregators": ["PancakeCoinMarketCap", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x186866858aef38c05829166a7711b37563e15994": { + "address": "0x186866858aef38c05829166a7711b37563e15994", + "symbol": "HFT", + "decimals": 9, + "name": "Hodl Finance", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x186866858aef38c05829166a7711b37563e15994.png", + "aggregators": ["PancakeCoinMarketCap", "Rubic", "Rango"], + "occurrences": 3 + }, + "0xbfdfa2143d1aa3efea094e5177295df9e77202a8": { + "address": "0xbfdfa2143d1aa3efea094e5177295df9e77202a8", + "symbol": "HOKA", + "decimals": 9, + "name": "Hokkaido Inu", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xbfdfa2143d1aa3efea094e5177295df9e77202a8.png", + "aggregators": ["PancakeCoinMarketCap", "Rubic", "Rango"], + "occurrences": 3 + }, + "0xfe7e505865d6ff8e09b6d18133c0c393c27de410": { + "address": "0xfe7e505865d6ff8e09b6d18133c0c393c27de410", + "symbol": "HRM", + "decimals": 18, + "name": "Honorarium", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xfe7e505865d6ff8e09b6d18133c0c393c27de410.png", + "aggregators": ["PancakeCoinMarketCap", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x6b2812f1a8350de38c4da2d29446ead15b91fa3c": { + "address": "0x6b2812f1a8350de38c4da2d29446ead15b91fa3c", + "symbol": "HUT", + "decimals": 18, + "name": "Hanuman Universe", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x6b2812f1a8350de38c4da2d29446ead15b91fa3c.png", + "aggregators": ["PancakeCoinGecko", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x4c61d70c0089d708040919aac7bdd600da72bc81": { + "address": "0x4c61d70c0089d708040919aac7bdd600da72bc81", + "symbol": "HYME", + "decimals": 18, + "name": "HYME", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x4c61d70c0089d708040919aac7bdd600da72bc81.png", + "aggregators": ["PancakeCoinGecko", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x92f3e7840133d372052dec535c49f07fca6bb851": { + "address": "0x92f3e7840133d372052dec535c49f07fca6bb851", + "symbol": "IEX", + "decimals": 18, + "name": "Infinity Exchange", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x92f3e7840133d372052dec535c49f07fca6bb851.png", + "aggregators": ["PancakeCoinGecko", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x94d79c325268c898d2902050730f27a478c56cc1": { + "address": "0x94d79c325268c898d2902050730f27a478c56cc1", + "symbol": "IMO", + "decimals": 18, + "name": "IMO", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x94d79c325268c898d2902050730f27a478c56cc1.png", + "aggregators": ["PancakeCoinMarketCap", "Rubic", "Rango"], + "occurrences": 3 + }, + "0xc08aa06c1d707bf910ada0bdeef1353f379e64e1": { + "address": "0xc08aa06c1d707bf910ada0bdeef1353f379e64e1", + "symbol": "INK", + "decimals": 18, + "name": "Ink Fantom", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xc08aa06c1d707bf910ada0bdeef1353f379e64e1.png", + "aggregators": ["PancakeCoinGecko", "Rubic", "Rango"], + "occurrences": 3 + }, + "0xb43cac81cfe4be81166fe984b54e8f9cb0ab2fd3": { + "address": "0xb43cac81cfe4be81166fe984b54e8f9cb0ab2fd3", + "symbol": "ITX", + "decimals": 18, + "name": "ITRONIX", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xb43cac81cfe4be81166fe984b54e8f9cb0ab2fd3.png", + "aggregators": ["PancakeCoinGecko", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x903beffc8ecc50841373d0ecc2ca53fa4b04c31f": { + "address": "0x903beffc8ecc50841373d0ecc2ca53fa4b04c31f", + "symbol": "IVY", + "decimals": 18, + "name": "Ivy Live", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x903beffc8ecc50841373d0ecc2ca53fa4b04c31f.png", + "aggregators": ["PancakeCoinMarketCap", "Rubic", "Rango"], + "occurrences": 3 + }, + "0xa310017e40e687c8670d218e3c86a0d09786574f": { + "address": "0xa310017e40e687c8670d218e3c86a0d09786574f", + "symbol": "JEDALS", + "decimals": 18, + "name": "Yoda Coin Swap", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xa310017e40e687c8670d218e3c86a0d09786574f.png", + "aggregators": ["PancakeCoinMarketCap", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x5fead99998788ac1bca768796483d899f1aef4c4": { + "address": "0x5fead99998788ac1bca768796483d899f1aef4c4", + "symbol": "JIND", + "decimals": 18, + "name": "Jindo Inu", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x5fead99998788ac1bca768796483d899f1aef4c4.png", + "aggregators": ["PancakeCoinMarketCap", "Rubic", "Sonarwatch"], + "occurrences": 3 + }, + "0x8cb623789b566f7a992f2677ddba7af7191b711a": { + "address": "0x8cb623789b566f7a992f2677ddba7af7191b711a", + "symbol": "JUMP4EVER", + "decimals": 18, + "name": "Jump Forever", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x8cb623789b566f7a992f2677ddba7af7191b711a.png", + "aggregators": ["PancakeCoinGecko", "Rubic", "Sonarwatch"], + "occurrences": 3 + }, + "0x4eae52907dba9c370e9ee99f0ce810602a4f2c63": { + "address": "0x4eae52907dba9c370e9ee99f0ce810602a4f2c63", + "symbol": "KABOSU", + "decimals": 18, + "name": "KaBoSu", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x4eae52907dba9c370e9ee99f0ce810602a4f2c63.png", + "aggregators": ["PancakeCoinGecko", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x8ffdcb0cabccf2767366a2eba6e2fdcc37baa1b2": { + "address": "0x8ffdcb0cabccf2767366a2eba6e2fdcc37baa1b2", + "symbol": "KPL", + "decimals": 18, + "name": "Kepple", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x8ffdcb0cabccf2767366a2eba6e2fdcc37baa1b2.png", + "aggregators": ["PancakeCoinMarketCap", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x53940d46a35162255511ff7cade811891d49533c": { + "address": "0x53940d46a35162255511ff7cade811891d49533c", + "symbol": "KRPZA", + "decimals": 18, + "name": "OxyO2", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x53940d46a35162255511ff7cade811891d49533c.png", + "aggregators": ["PancakeCoinGecko", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x072b4e4209df4e418bae0a490dcd8c8b75d1d7c7": { + "address": "0x072b4e4209df4e418bae0a490dcd8c8b75d1d7c7", + "symbol": "KUNKUN", + "decimals": 18, + "name": "KUNKUN Coin", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x072b4e4209df4e418bae0a490dcd8c8b75d1d7c7.png", + "aggregators": ["PancakeCoinGecko", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x8b0ce9c8797c393efeef48791960ee3d7297bac6": { + "address": "0x8b0ce9c8797c393efeef48791960ee3d7297bac6", + "symbol": "LION", + "decimals": 18, + "name": "LION", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x8b0ce9c8797c393efeef48791960ee3d7297bac6.png", + "aggregators": ["PancakeCoinGecko", "Rubic", "Rango"], + "occurrences": 3 + }, + "0xd966cc309898847ded8741deb877d16a7fae4d2c": { + "address": "0xd966cc309898847ded8741deb877d16a7fae4d2c", + "symbol": "LKT", + "decimals": 6, + "name": "LuxKingTech", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xd966cc309898847ded8741deb877d16a7fae4d2c.png", + "aggregators": ["PancakeCoinMarketCap", "Rubic", "Rango"], + "occurrences": 3 + }, + "0xc13cbf50370e5eae6f5dd9d8a1015007f34c4ead": { + "address": "0xc13cbf50370e5eae6f5dd9d8a1015007f34c4ead", + "symbol": "LNT", + "decimals": 18, + "name": "Limitless Network", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xc13cbf50370e5eae6f5dd9d8a1015007f34c4ead.png", + "aggregators": ["PancakeCoinGecko", "Rubic", "Rango"], + "occurrences": 3 + }, + "0xe702c303173f90094ce8c9c6ca3f198eca0e027c": { + "address": "0xe702c303173f90094ce8c9c6ca3f198eca0e027c", + "symbol": "LOF", + "decimals": 9, + "name": "LOFCrypto", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xe702c303173f90094ce8c9c6ca3f198eca0e027c.png", + "aggregators": ["PancakeCoinGecko", "Rubic", "Rango"], + "occurrences": 3 + }, + "0xf82aa46120314904cd8119dac84f6bcc7d90ed2e": { + "address": "0xf82aa46120314904cd8119dac84f6bcc7d90ed2e", + "symbol": "LUCA", + "decimals": 18, + "name": "Lucrosus Capital Coin", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xf82aa46120314904cd8119dac84f6bcc7d90ed2e.png", + "aggregators": ["PancakeCoinMarketCap", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x28b9aed756de31b6b362aa0f23211d13093ebb79": { + "address": "0x28b9aed756de31b6b362aa0f23211d13093ebb79", + "symbol": "LUNG", + "decimals": 18, + "name": "LungDefi", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x28b9aed756de31b6b362aa0f23211d13093ebb79.png", + "aggregators": ["PancakeCoinMarketCap", "Rubic", "Rango"], + "occurrences": 3 + }, + "0xd39ba5680e5a59ed032054485a0a8d2d5a6a2366": { + "address": "0xd39ba5680e5a59ed032054485a0a8d2d5a6a2366", + "symbol": "MCOIN", + "decimals": 18, + "name": "Mcoin", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xd39ba5680e5a59ed032054485a0a8d2d5a6a2366.png", + "aggregators": ["PancakeCoinGecko", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x1d2ec31b2fcd89997a544d6e7444586dce529b4e": { + "address": "0x1d2ec31b2fcd89997a544d6e7444586dce529b4e", + "symbol": "MDTI", + "decimals": 18, + "name": "Meditoc", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x1d2ec31b2fcd89997a544d6e7444586dce529b4e.png", + "aggregators": ["PancakeCoinGecko", "Rubic", "Sonarwatch"], + "occurrences": 3 + }, + "0xe846dd34dc07ab517e78f5e58edae79d80222fd0": { + "address": "0xe846dd34dc07ab517e78f5e58edae79d80222fd0", + "symbol": "MEF", + "decimals": 18, + "name": "Meflex", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xe846dd34dc07ab517e78f5e58edae79d80222fd0.png", + "aggregators": ["PancakeCoinMarketCap", "Rubic", "Rango"], + "occurrences": 3 + }, + "0xabcad2648fd27538e44bbd91109835aadaf981bc": { + "address": "0xabcad2648fd27538e44bbd91109835aadaf981bc", + "symbol": "MEMEMINT", + "decimals": 18, + "name": "MEME MINT", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xabcad2648fd27538e44bbd91109835aadaf981bc.png", + "aggregators": ["PancakeCoinMarketCap", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x23ccf3c12a7eff7fe09fa52c716ea9f200b87363": { + "address": "0x23ccf3c12a7eff7fe09fa52c716ea9f200b87363", + "symbol": "MEVRV2", + "decimals": 18, + "name": "Metaverse VR V2", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x23ccf3c12a7eff7fe09fa52c716ea9f200b87363.png", + "aggregators": ["PancakeCoinMarketCap", "Rubic", "Rango"], + "occurrences": 3 + }, + "0xac394dd65e1bb24b3191d3863d3f5c170b4f733d": { + "address": "0xac394dd65e1bb24b3191d3863d3f5c170b4f733d", + "symbol": "MILLE", + "decimals": 6, + "name": "MILLE CHAIN", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xac394dd65e1bb24b3191d3863d3f5c170b4f733d.png", + "aggregators": ["PancakeCoinGecko", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x66c1efe68d1cce628ba797b98ab7f654fba154dc": { + "address": "0x66c1efe68d1cce628ba797b98ab7f654fba154dc", + "symbol": "MLZ", + "decimals": 18, + "name": "MetaLabz", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x66c1efe68d1cce628ba797b98ab7f654fba154dc.png", + "aggregators": ["PancakeCoinGecko", "Rubic", "Sonarwatch"], + "occurrences": 3 + }, + "0xcc116e59dd51df5460e8b11ff615e3e706a9202a": { + "address": "0xcc116e59dd51df5460e8b11ff615e3e706a9202a", + "symbol": "MMAC", + "decimals": 9, + "name": "Rise of the Warbots MMAC", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xcc116e59dd51df5460e8b11ff615e3e706a9202a.png", + "aggregators": ["PancakeCoinGecko", "Rubic", "Rango"], + "occurrences": 3 + }, + "0xd86a046ed8a235bea8773e804d4cc50f5676fe2c": { + "address": "0xd86a046ed8a235bea8773e804d4cc50f5676fe2c", + "symbol": "MMGT", + "decimals": 18, + "name": "MultiMoney.Global", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xd86a046ed8a235bea8773e804d4cc50f5676fe2c.png", + "aggregators": ["PancakeCoinGecko", "Rubic", "Rango"], + "occurrences": 3 + }, + "0xd517ce9206c09dfaa7e7f40f98e59f54fb10e09f": { + "address": "0xd517ce9206c09dfaa7e7f40f98e59f54fb10e09f", + "symbol": "MMM", + "decimals": 18, + "name": "Meta Merge", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xd517ce9206c09dfaa7e7f40f98e59f54fb10e09f.png", + "aggregators": ["PancakeCoinMarketCap", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x36953b5ec00a13edceceb3af258d034913d2a79d": { + "address": "0x36953b5ec00a13edceceb3af258d034913d2a79d", + "symbol": "MNFT", + "decimals": 18, + "name": "MANUFACTORY", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x36953b5ec00a13edceceb3af258d034913d2a79d.png", + "aggregators": ["PancakeCoinMarketCap", "Rubic", "Rango"], + "occurrences": 3 + }, + "0xf0f14cbd7ce6753bc209eb0d8f67fc84cccb9b2f": { + "address": "0xf0f14cbd7ce6753bc209eb0d8f67fc84cccb9b2f", + "symbol": "MSS", + "decimals": 18, + "name": "MintStakeShare", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xf0f14cbd7ce6753bc209eb0d8f67fc84cccb9b2f.png", + "aggregators": ["PancakeCoinGecko", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x12de91acb5f544b37b1e66438324b8db26a91d8a": { + "address": "0x12de91acb5f544b37b1e66438324b8db26a91d8a", + "symbol": "MTF", + "decimals": 9, + "name": "MetaFootball", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x12de91acb5f544b37b1e66438324b8db26a91d8a.png", + "aggregators": ["PancakeCoinMarketCap", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x74c701d916803387ed7efd104ea6a55d299824e9": { + "address": "0x74c701d916803387ed7efd104ea6a55d299824e9", + "symbol": "MTPE", + "decimals": 18, + "name": "Misty Pepe", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x74c701d916803387ed7efd104ea6a55d299824e9.png", + "aggregators": ["PancakeCoinGecko", "Rubic", "Rango"], + "occurrences": 3 + }, + "0xe28832f94aa99d3ed4c61ef805330168556b4179": { + "address": "0xe28832f94aa99d3ed4c61ef805330168556b4179", + "symbol": "MTX", + "decimals": 9, + "name": "Matrix Protocol", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xe28832f94aa99d3ed4c61ef805330168556b4179.png", + "aggregators": ["PancakeCoinMarketCap", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x011a5de645f7b599bb4d6fa1371532dd25a45201": { + "address": "0x011a5de645f7b599bb4d6fa1371532dd25a45201", + "symbol": "MUNK", + "decimals": 18, + "name": "Dramatic Chipmunk", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x011a5de645f7b599bb4d6fa1371532dd25a45201.png", + "aggregators": ["PancakeCoinMarketCap", "Rubic", "Rango"], + "occurrences": 3 + }, + "0xc45de8ab31140e9ced1575ec53ffffa1e3062576": { + "address": "0xc45de8ab31140e9ced1575ec53ffffa1e3062576", + "symbol": "MVG", + "decimals": 18, + "name": "Mad Viking Games", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xc45de8ab31140e9ced1575ec53ffffa1e3062576.png", + "aggregators": ["PancakeCoinMarketCap", "Rubic", "Rango"], + "occurrences": 3 + }, + "0xca8a893a7464e82bdee582017c749b92e5b45b48": { + "address": "0xca8a893a7464e82bdee582017c749b92e5b45b48", + "symbol": "MW", + "decimals": 18, + "name": "Metaworld", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xca8a893a7464e82bdee582017c749b92e5b45b48.png", + "aggregators": ["PancakeCoinMarketCap", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x6ec7ad5a76dd866f07ddf293d4f5bc89c8bd2e09": { + "address": "0x6ec7ad5a76dd866f07ddf293d4f5bc89c8bd2e09", + "symbol": "N0LE", + "decimals": 9, + "name": "Nole Inu", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x6ec7ad5a76dd866f07ddf293d4f5bc89c8bd2e09.png", + "aggregators": ["PancakeCoinMarketCap", "Rubic", "Rango"], + "occurrences": 3 + }, + "0xb15488af39bd1de209d501672a293bcd05f82ab4": { + "address": "0xb15488af39bd1de209d501672a293bcd05f82ab4", + "symbol": "NANO", + "decimals": 18, + "name": "Nanomatic", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xb15488af39bd1de209d501672a293bcd05f82ab4.png", + "aggregators": ["PancakeCoinMarketCap", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x07430e1482574389bc0e5d33cfb65280e881ee8c": { + "address": "0x07430e1482574389bc0e5d33cfb65280e881ee8c", + "symbol": "NAO", + "decimals": 18, + "name": "Nami Frame Futures", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x07430e1482574389bc0e5d33cfb65280e881ee8c.png", + "aggregators": ["PancakeCoinGecko", "Rubic", "Rango"], + "occurrences": 3 + }, + "0xeac7250cf7ef47abdccb26df77b81bdac3da4cfb": { + "address": "0xeac7250cf7ef47abdccb26df77b81bdac3da4cfb", + "symbol": "NEVER", + "decimals": 18, + "name": "MALOU", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xeac7250cf7ef47abdccb26df77b81bdac3da4cfb.png", + "aggregators": ["PancakeCoinMarketCap", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x6519cb1f694ccbcc72417570b364f2d051eefb9d": { + "address": "0x6519cb1f694ccbcc72417570b364f2d051eefb9d", + "symbol": "NLC", + "decimals": 8, + "name": "NoLimitCoin", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x6519cb1f694ccbcc72417570b364f2d051eefb9d.png", + "aggregators": ["PancakeCoinMarketCap", "Rubic", "Rango"], + "occurrences": 3 + }, + "0xd8cb4c2369db13c94c90c7fd3bebc9757900ee6b": { + "address": "0xd8cb4c2369db13c94c90c7fd3bebc9757900ee6b", + "symbol": "NPXB", + "decimals": 18, + "name": "NapoleonX Token", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xd8cb4c2369db13c94c90c7fd3bebc9757900ee6b.png", + "aggregators": ["PancakeCoinMarketCap", "Rubic", "Rango"], + "occurrences": 3 + }, + "0xcce7162344dc758e4715079c8abc981dc72273b9": { + "address": "0xcce7162344dc758e4715079c8abc981dc72273b9", + "symbol": "OIL", + "decimals": 18, + "name": "CRUDE OIL BRENT", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xcce7162344dc758e4715079c8abc981dc72273b9.png", + "aggregators": ["PancakeCoinGecko", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x12ef97ebe8a51bb7cff3e1799c8f7936db9d13d3": { + "address": "0x12ef97ebe8a51bb7cff3e1799c8f7936db9d13d3", + "symbol": "OKY", + "decimals": 18, + "name": "Onigiri Kitty", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x12ef97ebe8a51bb7cff3e1799c8f7936db9d13d3.png", + "aggregators": ["PancakeCoinGecko", "Rubic", "Rango"], + "occurrences": 3 + }, + "0xc7e9841afc184485e6a3375bc59ce2f43e9f738a": { + "address": "0xc7e9841afc184485e6a3375bc59ce2f43e9f738a", + "symbol": "OMP", + "decimals": 18, + "name": "Onmax", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xc7e9841afc184485e6a3375bc59ce2f43e9f738a.png", + "aggregators": ["PancakeCoinGecko", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x674aa28ac436834051fff3fc7b6e59d6f9c57a1c": { + "address": "0x674aa28ac436834051fff3fc7b6e59d6f9c57a1c", + "symbol": "OPINU", + "decimals": 18, + "name": "Optimus Inu", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x674aa28ac436834051fff3fc7b6e59d6f9c57a1c.png", + "aggregators": ["PancakeCoinMarketCap", "Rubic", "Rango"], + "occurrences": 3 + }, + "0xf9ba4b77e9a5e7d16633191932f95eaf70086dc0": { + "address": "0xf9ba4b77e9a5e7d16633191932f95eaf70086dc0", + "symbol": "OVDM", + "decimals": 18, + "name": "Overdome", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xf9ba4b77e9a5e7d16633191932f95eaf70086dc0.png", + "aggregators": ["PancakeCoinGecko", "Rubic", "Rango"], + "occurrences": 3 + }, + "0xbfbe5fda3483f6bcd1b3e6fb0647c00667e05d54": { + "address": "0xbfbe5fda3483f6bcd1b3e6fb0647c00667e05d54", + "symbol": "OWNER", + "decimals": 18, + "name": "OPENWORLDNFT", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xbfbe5fda3483f6bcd1b3e6fb0647c00667e05d54.png", + "aggregators": ["PancakeCoinGecko", "Rubic", "Rango"], + "occurrences": 3 + }, + "0xe239b561369aef79ed55dfdded84848a3bf60480": { + "address": "0xe239b561369aef79ed55dfdded84848a3bf60480", + "symbol": "PAPER", + "decimals": 18, + "name": "Paper", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xe239b561369aef79ed55dfdded84848a3bf60480.png", + "aggregators": ["PancakeCoinGecko", "Rubic", "Rango"], + "occurrences": 3 + }, + "0xe825056ee107d8044f6f811cae6bb2d96e011dfd": { + "address": "0xe825056ee107d8044f6f811cae6bb2d96e011dfd", + "symbol": "PBIE", + "decimals": 18, + "name": "PBIE", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xe825056ee107d8044f6f811cae6bb2d96e011dfd.png", + "aggregators": ["PancakeCoinGecko", "Rubic", "Rango"], + "occurrences": 3 + }, + "0xe700ba35998fad8e669e3cca7b3a350f1fdcacf8": { + "address": "0xe700ba35998fad8e669e3cca7b3a350f1fdcacf8", + "symbol": "PCA", + "decimals": 18, + "name": "Purchasa", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xe700ba35998fad8e669e3cca7b3a350f1fdcacf8.png", + "aggregators": ["PancakeCoinGecko", "Rubic", "Rango"], + "occurrences": 3 + }, + "0xcddfbedb73f025752c61746acdf56c0f3cbb023d": { + "address": "0xcddfbedb73f025752c61746acdf56c0f3cbb023d", + "symbol": "PCK", + "decimals": 18, + "name": "Pickvibe", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xcddfbedb73f025752c61746acdf56c0f3cbb023d.png", + "aggregators": ["PancakeCoinGecko", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x6385fae4c6510d0a70d41f4bfa3529fad850aeca": { + "address": "0x6385fae4c6510d0a70d41f4bfa3529fad850aeca", + "symbol": "PEKA", + "decimals": 18, + "name": "PEKA", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x6385fae4c6510d0a70d41f4bfa3529fad850aeca.png", + "aggregators": ["PancakeCoinMarketCap", "Rubic", "Rango"], + "occurrences": 3 + }, + "0xdccb6095245b3ddb709f77faf251ab31ccf1f70c": { + "address": "0xdccb6095245b3ddb709f77faf251ab31ccf1f70c", + "symbol": "PEM", + "decimals": 18, + "name": "Pem", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xdccb6095245b3ddb709f77faf251ab31ccf1f70c.png", + "aggregators": ["PancakeCoinGecko", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x33678c7b2a58480ef599ce73ad0d002dc6b6f7dc": { + "address": "0x33678c7b2a58480ef599ce73ad0d002dc6b6f7dc", + "symbol": "PEO", + "decimals": 18, + "name": "PepeCEO", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x33678c7b2a58480ef599ce73ad0d002dc6b6f7dc.png", + "aggregators": ["PancakeCoinMarketCap", "Rubic", "Rango"], + "occurrences": 3 + }, + "0xd3317ea3178fb1852c7db37c6d50e4c823a734bc": { + "address": "0xd3317ea3178fb1852c7db37c6d50e4c823a734bc", + "symbol": "PEPES", + "decimals": 18, + "name": "Star Pepe", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xd3317ea3178fb1852c7db37c6d50e4c823a734bc.png", + "aggregators": ["PancakeCoinGecko", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x2d230f311f1f663eb5d0aafd58800cf6f2097c85": { + "address": "0x2d230f311f1f663eb5d0aafd58800cf6f2097c85", + "symbol": "PGT", + "decimals": 18, + "name": "PUZZLE GAME GOVERNANCE TOKEN", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x2d230f311f1f663eb5d0aafd58800cf6f2097c85.png", + "aggregators": ["PancakeCoinGecko", "Rubic", "Rango"], + "occurrences": 3 + }, + "0xac86e5f9ba48d680516df50c72928c2ec50f3025": { + "address": "0xac86e5f9ba48d680516df50c72928c2ec50f3025", + "symbol": "PHX", + "decimals": 18, + "name": "Phoenix Token@BSC", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xac86e5f9ba48d680516df50c72928c2ec50f3025.png", + "aggregators": ["PancakeCoinGecko", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x574f75bc522cb42ec2365dc54485d471f2efb4b6": { + "address": "0x574f75bc522cb42ec2365dc54485d471f2efb4b6", + "symbol": "PIE", + "decimals": 18, + "name": "ApplePies.co", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x574f75bc522cb42ec2365dc54485d471f2efb4b6.png", + "aggregators": ["PancakeCoinGecko", "Rubic", "Rango"], + "occurrences": 3 + }, + "0xc98a06e7362789f57c8861e8f33f2ebe3d32eed1": { + "address": "0xc98a06e7362789f57c8861e8f33f2ebe3d32eed1", + "symbol": "PITQC", + "decimals": 9, + "name": "Pitquidity Capital", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xc98a06e7362789f57c8861e8f33f2ebe3d32eed1.png", + "aggregators": ["PancakeCoinGecko", "Rubic", "Rango"], + "occurrences": 3 + }, + "0xf0aaa03cd21c989c98074aded9c942ff938b2ab0": { + "address": "0xf0aaa03cd21c989c98074aded9c942ff938b2ab0", + "symbol": "PKT", + "decimals": 18, + "name": "Play Kingdom", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xf0aaa03cd21c989c98074aded9c942ff938b2ab0.png", + "aggregators": ["PancakeCoinMarketCap", "Rubic", "Rango"], + "occurrences": 3 + }, + "0xe6d6928e5ce18aa1a6b3653993678f291cbe2b0a": { + "address": "0xe6d6928e5ce18aa1a6b3653993678f291cbe2b0a", + "symbol": "PLUP", + "decimals": 18, + "name": "PoolUp", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xe6d6928e5ce18aa1a6b3653993678f291cbe2b0a.png", + "aggregators": ["PancakeCoinMarketCap", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x43a167b15a6f24913a8b4d35488b36ac15d39200": { + "address": "0x43a167b15a6f24913a8b4d35488b36ac15d39200", + "symbol": "PMA", + "decimals": 18, + "name": "PumaPay", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x43a167b15a6f24913a8b4d35488b36ac15d39200.png", + "aggregators": ["PancakeCoinGecko", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x9b44df3318972be845d83f961735609137c4c23c": { + "address": "0x9b44df3318972be845d83f961735609137c4c23c", + "symbol": "PROPEL", + "decimals": 18, + "name": "Propel", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x9b44df3318972be845d83f961735609137c4c23c.png", + "aggregators": ["PancakeCoinGecko", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x5711f19b7b21938d31d07e5736b4660c1159d7d3": { + "address": "0x5711f19b7b21938d31d07e5736b4660c1159d7d3", + "symbol": "PRVC", + "decimals": 18, + "name": "PrivaCoin", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x5711f19b7b21938d31d07e5736b4660c1159d7d3.png", + "aggregators": ["PancakeCoinMarketCap", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x90e3414e00e231b962666bd94adb811d5bcd0c2a": { + "address": "0x90e3414e00e231b962666bd94adb811d5bcd0c2a", + "symbol": "PRX", + "decimals": 8, + "name": "PRX", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x90e3414e00e231b962666bd94adb811d5bcd0c2a.png", + "aggregators": ["PancakeCoinMarketCap", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x563ca064e41f3b5d80adeecfe49ab375fd7afbef": { + "address": "0x563ca064e41f3b5d80adeecfe49ab375fd7afbef", + "symbol": "RBP", + "decimals": 18, + "name": "Rare Ball Portion", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x563ca064e41f3b5d80adeecfe49ab375fd7afbef.png", + "aggregators": ["PancakeCoinMarketCap", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x2d94172436d869c1e3c094bead272508fab0d9e3": { + "address": "0x2d94172436d869c1e3c094bead272508fab0d9e3", + "symbol": "RCG", + "decimals": 18, + "name": "The Recharge", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x2d94172436d869c1e3c094bead272508fab0d9e3.png", + "aggregators": ["PancakeCoinMarketCap", "Rubic", "Rango"], + "occurrences": 3 + }, + "0xb922aa024e71a25077d78b593bd6f11f2f412e72": { + "address": "0xb922aa024e71a25077d78b593bd6f11f2f412e72", + "symbol": "REC", + "decimals": 18, + "name": "RecoveryDAO", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xb922aa024e71a25077d78b593bd6f11f2f412e72.png", + "aggregators": ["PancakeCoinMarketCap", "Rubic", "Rango"], + "occurrences": 3 + }, + "0xe17fbdf671f3cce0f354cacbd27e03f4245a3ffe": { + "address": "0xe17fbdf671f3cce0f354cacbd27e03f4245a3ffe", + "symbol": "RIFI", + "decimals": 18, + "name": "Rikkei Finance", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xe17fbdf671f3cce0f354cacbd27e03f4245a3ffe.png", + "aggregators": ["PancakeCoinMarketCap", "Rubic", "Rango"], + "occurrences": 3 + }, + "0xa2ea0de93ba8dbd632c6a605f59a4950a4a25a76": { + "address": "0xa2ea0de93ba8dbd632c6a605f59a4950a4a25a76", + "symbol": "RIK", + "decimals": 18, + "name": "RIKEZA", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xa2ea0de93ba8dbd632c6a605f59a4950a4a25a76.png", + "aggregators": ["PancakeCoinGecko", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x117eefdde5e5aed6626ffedbb5d2ac955f64dbf3": { + "address": "0x117eefdde5e5aed6626ffedbb5d2ac955f64dbf3", + "symbol": "RMATIC", + "decimals": 18, + "name": "StaFi Staked MATIC", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x117eefdde5e5aed6626ffedbb5d2ac955f64dbf3.png", + "aggregators": ["PancakeCoinMarketCap", "Rubic", "Rango"], + "occurrences": 3 + }, + "0xb6dea09415611c6f0425f3437c43de966aa7a1e9": { + "address": "0xb6dea09415611c6f0425f3437c43de966aa7a1e9", + "symbol": "RONG", + "decimals": 18, + "name": "Rong", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xb6dea09415611c6f0425f3437c43de966aa7a1e9.png", + "aggregators": ["PancakeCoinGecko", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x62175af6d9b045d8435cdedd9bf542c7bcc56dcc": { + "address": "0x62175af6d9b045d8435cdedd9bf542c7bcc56dcc", + "symbol": "SAFE", + "decimals": 18, + "name": "SAFE", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x62175af6d9b045d8435cdedd9bf542c7bcc56dcc.png", + "aggregators": ["PancakeCoinMarketCap", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x1bcb66eac3657a26c4bd9005e15b504555bf9433": { + "address": "0x1bcb66eac3657a26c4bd9005e15b504555bf9433", + "symbol": "SEAH", + "decimals": 18, + "name": "Seahorses", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x1bcb66eac3657a26c4bd9005e15b504555bf9433.png", + "aggregators": ["PancakeCoinGecko", "Rubic", "Rango"], + "occurrences": 3 + }, + "0xe95fd76cf16008c12ff3b3a937cb16cd9cc20284": { + "address": "0xe95fd76cf16008c12ff3b3a937cb16cd9cc20284", + "symbol": "SETS", + "decimals": 18, + "name": "Sensitrust", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xe95fd76cf16008c12ff3b3a937cb16cd9cc20284.png", + "aggregators": ["PancakeCoinGecko", "Rubic", "Rango"], + "occurrences": 3 + }, + "0xa63f56985f9c7f3bc9ffc5685535649e0c1a55f3": { + "address": "0xa63f56985f9c7f3bc9ffc5685535649e0c1a55f3", + "symbol": "SFRAX", + "decimals": 18, + "name": "Staked FRAX", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xa63f56985f9c7f3bc9ffc5685535649e0c1a55f3.png", + "aggregators": ["PancakeCoinGecko", "Rubic", "Rango"], + "occurrences": 3 + }, + "0xe79a1163a95734ccfbd006cbaaba954f3e846beb": { + "address": "0xe79a1163a95734ccfbd006cbaaba954f3e846beb", + "symbol": "SHACK", + "decimals": 18, + "name": "Shack Token", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xe79a1163a95734ccfbd006cbaaba954f3e846beb.png", + "aggregators": ["PancakeCoinMarketCap", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x0b842c7b18bef85daea11f23e1dabe0d6671c19a": { + "address": "0x0b842c7b18bef85daea11f23e1dabe0d6671c19a", + "symbol": "SHIDO", + "decimals": 18, + "name": "Shido OLD ", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x0b842c7b18bef85daea11f23e1dabe0d6671c19a.png", + "aggregators": ["PancakeCoinGecko", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x61d9f522b332d1f2ab25d5803371e5eac6cf8808": { + "address": "0x61d9f522b332d1f2ab25d5803371e5eac6cf8808", + "symbol": "SHIFO", + "decimals": 9, + "name": "Shibafomi", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x61d9f522b332d1f2ab25d5803371e5eac6cf8808.png", + "aggregators": ["PancakeCoinGecko", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x8f4e64d92adc4681093aeacb3d60d862a0536b0f": { + "address": "0x8f4e64d92adc4681093aeacb3d60d862a0536b0f", + "symbol": "SIMBA", + "decimals": 9, + "name": "Simba Coin", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x8f4e64d92adc4681093aeacb3d60d862a0536b0f.png", + "aggregators": ["PancakeCoinGecko", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x91a483538deea8ef583b413166a91e709bd2c8f6": { + "address": "0x91a483538deea8ef583b413166a91e709bd2c8f6", + "symbol": "SIR", + "decimals": 18, + "name": "Poo Chi", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x91a483538deea8ef583b413166a91e709bd2c8f6.png", + "aggregators": ["PancakeCoinGecko", "Rubic", "Rango"], + "occurrences": 3 + }, + "0xf11f3130d64aa7b52876786336c8dc55b3bdf093": { + "address": "0xf11f3130d64aa7b52876786336c8dc55b3bdf093", + "symbol": "SITY", + "decimals": 18, + "name": "Versity", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xf11f3130d64aa7b52876786336c8dc55b3bdf093.png", + "aggregators": ["PancakeCoinGecko", "Rubic", "Sonarwatch"], + "occurrences": 3 + }, + "0x3dbf8babf260be2a6221dc6fb1c4074a44b58562": { + "address": "0x3dbf8babf260be2a6221dc6fb1c4074a44b58562", + "symbol": "SLK", + "decimals": 18, + "name": "SLK", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x3dbf8babf260be2a6221dc6fb1c4074a44b58562.png", + "aggregators": ["PancakeCoinGecko", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x39e8aaaaf4b642f9c4fd57a9bee3f337665678d0": { + "address": "0x39e8aaaaf4b642f9c4fd57a9bee3f337665678d0", + "symbol": "SLT", + "decimals": 18, + "name": "SLT", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x39e8aaaaf4b642f9c4fd57a9bee3f337665678d0.png", + "aggregators": ["PancakeCoinGecko", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x8b5d49d5f9c4569c5cd5dc7a13c5846e84a035f7": { + "address": "0x8b5d49d5f9c4569c5cd5dc7a13c5846e84a035f7", + "symbol": "SQD", + "decimals": 6, + "name": "Squared Token", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x8b5d49d5f9c4569c5cd5dc7a13c5846e84a035f7.png", + "aggregators": ["PancakeCoinGecko", "Rubic", "Rango"], + "occurrences": 3 + }, + "0xa9cb8ecb67fe770fe1f2feb3c2d85117cac0d4fb": { + "address": "0xa9cb8ecb67fe770fe1f2feb3c2d85117cac0d4fb", + "symbol": "SQRB", + "decimals": 18, + "name": "SQRBIT", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xa9cb8ecb67fe770fe1f2feb3c2d85117cac0d4fb.png", + "aggregators": ["PancakeCoinGecko", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x62fac6fc252e40015b19d188529247e2a24f0a4e": { + "address": "0x62fac6fc252e40015b19d188529247e2a24f0a4e", + "symbol": "STAY", + "decimals": 18, + "name": "STAYNEX", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x62fac6fc252e40015b19d188529247e2a24f0a4e.png", + "aggregators": ["PancakeCoinGecko", "Rubic", "Sonarwatch"], + "occurrences": 3 + }, + "0xcba2aeec821b0b119857a9ab39e09b034249681a": { + "address": "0xcba2aeec821b0b119857a9ab39e09b034249681a", + "symbol": "STVLX", + "decimals": 18, + "name": "Staked VLX", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xcba2aeec821b0b119857a9ab39e09b034249681a.png", + "aggregators": ["PancakeCoinGecko", "Rubic", "Rango"], + "occurrences": 3 + }, + "0xbc404429558292ee2d769e57d57d6e74bbd2792d": { + "address": "0xbc404429558292ee2d769e57d57d6e74bbd2792d", + "symbol": "SUSX", + "decimals": 18, + "name": "Savings USX", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xbc404429558292ee2d769e57d57d6e74bbd2792d.png", + "aggregators": ["PancakeCoinGecko", "Rubic", "Sonarwatch"], + "occurrences": 3 + }, + "0x01832e3346fd3a0d38ca589d836bd78d1de7030c": { + "address": "0x01832e3346fd3a0d38ca589d836bd78d1de7030c", + "symbol": "SWPT", + "decimals": 18, + "name": "SwapTracker", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x01832e3346fd3a0d38ca589d836bd78d1de7030c.png", + "aggregators": ["PancakeCoinMarketCap", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x7d23de8d1e71b42b821ea4157ca6b81524729cf3": { + "address": "0x7d23de8d1e71b42b821ea4157ca6b81524729cf3", + "symbol": "SYAI", + "decimals": 18, + "name": "Synth Ai", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x7d23de8d1e71b42b821ea4157ca6b81524729cf3.png", + "aggregators": ["PancakeCoinGecko", "Rubic", "Rango"], + "occurrences": 3 + }, + "0xe9a5c635c51002fa5f377f956a8ce58573d63d91": { + "address": "0xe9a5c635c51002fa5f377f956a8ce58573d63d91", + "symbol": "T99", + "decimals": 18, + "name": "TETHEREUM", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xe9a5c635c51002fa5f377f956a8ce58573d63d91.png", + "aggregators": ["PancakeCoinMarketCap", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x4444a19c8bb86e9bdbc023709a363bbce91af33e": { + "address": "0x4444a19c8bb86e9bdbc023709a363bbce91af33e", + "symbol": "TANK", + "decimals": 18, + "name": "CryptoTanks", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x4444a19c8bb86e9bdbc023709a363bbce91af33e.png", + "aggregators": ["PancakeCoinMarketCap", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x837656c3f5858692ccdce13ba66e09d2685073df": { + "address": "0x837656c3f5858692ccdce13ba66e09d2685073df", + "symbol": "TOX", + "decimals": 18, + "name": "INTOVERSE TOKEN", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x837656c3f5858692ccdce13ba66e09d2685073df.png", + "aggregators": ["PancakeCoinMarketCap", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x01bd7acb6ff3b6dd5aefa05cf085f2104f3fc53f": { + "address": "0x01bd7acb6ff3b6dd5aefa05cf085f2104f3fc53f", + "symbol": "TREAT", + "decimals": 18, + "name": "TreatDAO", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x01bd7acb6ff3b6dd5aefa05cf085f2104f3fc53f.png", + "aggregators": ["PancakeCoinGecko", "Rubic", "Rango"], + "occurrences": 3 + }, + "0xf46306cdc35b845ebcc823be8363249b21f7ee63": { + "address": "0xf46306cdc35b845ebcc823be8363249b21f7ee63", + "symbol": "TRHUB", + "decimals": 18, + "name": "Tradehub", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xf46306cdc35b845ebcc823be8363249b21f7ee63.png", + "aggregators": ["PancakeCoinMarketCap", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x9fd83625b3a70f95557a117dbbfb67a0d3406d3e": { + "address": "0x9fd83625b3a70f95557a117dbbfb67a0d3406d3e", + "symbol": "TRP", + "decimals": 18, + "name": "Truth Pay", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x9fd83625b3a70f95557a117dbbfb67a0d3406d3e.png", + "aggregators": ["PancakeCoinGecko", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x697f883b7e84ea84e0880abc80b6a5bdf7daa5e0": { + "address": "0x697f883b7e84ea84e0880abc80b6a5bdf7daa5e0", + "symbol": "UB", + "decimals": 18, + "name": "UBit Token", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x697f883b7e84ea84e0880abc80b6a5bdf7daa5e0.png", + "aggregators": ["PancakeCoinMarketCap", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x35da89a339de2c78f8fb1c5e1a9a9c6539e2fa8a": { + "address": "0x35da89a339de2c78f8fb1c5e1a9a9c6539e2fa8a", + "symbol": "UNC", + "decimals": 18, + "name": "Utility Net", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x35da89a339de2c78f8fb1c5e1a9a9c6539e2fa8a.png", + "aggregators": ["PancakeCoinGecko", "Rubic", "Rango"], + "occurrences": 3 + }, + "0xdb29192fc2b487bb5185e155752328d4f249743c": { + "address": "0xdb29192fc2b487bb5185e155752328d4f249743c", + "symbol": "UNFT", + "decimals": 9, + "name": "Ultra NFT", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xdb29192fc2b487bb5185e155752328d4f249743c.png", + "aggregators": ["PancakeCoinMarketCap", "Rubic", "Rango"], + "occurrences": 3 + }, + "0xde7d1ce109236b12809c45b23d22f30dba0ef424": { + "address": "0xde7d1ce109236b12809c45b23d22f30dba0ef424", + "symbol": "USDS", + "decimals": 18, + "name": "SpiceUSD", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xde7d1ce109236b12809c45b23d22f30dba0ef424.png", + "aggregators": ["PancakeCoinMarketCap", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x04a52f280f7ffc7a08462463903883ccdf6b95a7": { + "address": "0x04a52f280f7ffc7a08462463903883ccdf6b95a7", + "symbol": "VISA", + "decimals": 18, + "name": "Visa Meme", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x04a52f280f7ffc7a08462463903883ccdf6b95a7.png", + "aggregators": ["PancakeCoinGecko", "Rubic", "Rango"], + "occurrences": 3 + }, + "0xf4dc9bcc6c5f774b2ce6f9118b3a55867ecbf6cb": { + "address": "0xf4dc9bcc6c5f774b2ce6f9118b3a55867ecbf6cb", + "symbol": "WCADAI", + "decimals": 18, + "name": "CADAI", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xf4dc9bcc6c5f774b2ce6f9118b3a55867ecbf6cb.png", + "aggregators": ["PancakeCoinMarketCap", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x5c873454ba84ada3d8a5f7b535a3a21a2eb8d7cb": { + "address": "0x5c873454ba84ada3d8a5f7b535a3a21a2eb8d7cb", + "symbol": "WUSD", + "decimals": 6, + "name": "Worldwide USD", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x5c873454ba84ada3d8a5f7b535a3a21a2eb8d7cb.png", + "aggregators": ["PancakeCoinMarketCap", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x4ae1cd329e3aa0f70164424d2e5688723a6f9b71": { + "address": "0x4ae1cd329e3aa0f70164424d2e5688723a6f9b71", + "symbol": "WXFI", + "decimals": 18, + "name": "WrappedXFI", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x4ae1cd329e3aa0f70164424d2e5688723a6f9b71.png", + "aggregators": ["PancakeCoinGecko", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x28b28dda85c60e3397933ea50ed3522bb25487ab": { + "address": "0x28b28dda85c60e3397933ea50ed3522bb25487ab", + "symbol": "X-FILE", + "decimals": 18, + "name": "XFILE", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x28b28dda85c60e3397933ea50ed3522bb25487ab.png", + "aggregators": ["PancakeCoinGecko", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x71eeba415a523f5c952cc2f06361d5443545ad28": { + "address": "0x71eeba415a523f5c952cc2f06361d5443545ad28", + "symbol": "XDAO", + "decimals": 18, + "name": "XDAO", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x71eeba415a523f5c952cc2f06361d5443545ad28.png", + "aggregators": ["PancakeCoinMarketCap", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x529a1468a91fa4ee0d65ee2b4b66fe4f6a55154f": { + "address": "0x529a1468a91fa4ee0d65ee2b4b66fe4f6a55154f", + "symbol": "XERT", + "decimals": 18, + "name": "Xertinet Token", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x529a1468a91fa4ee0d65ee2b4b66fe4f6a55154f.png", + "aggregators": ["PancakeCoinGecko", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x3a0604f9a340c0485303b58b489e23d614197ffb": { + "address": "0x3a0604f9a340c0485303b58b489e23d614197ffb", + "symbol": "XG", + "decimals": 18, + "name": "X-GAME", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x3a0604f9a340c0485303b58b489e23d614197ffb.png", + "aggregators": ["PancakeCoinGecko", "Rubic", "Sonarwatch"], + "occurrences": 3 + }, + "0xb8c3e8ff71513afc8cfb2dddc5a994a501db1916": { + "address": "0xb8c3e8ff71513afc8cfb2dddc5a994a501db1916", + "symbol": "YON", + "decimals": 18, + "name": "YES||NO", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xb8c3e8ff71513afc8cfb2dddc5a994a501db1916.png", + "aggregators": ["PancakeCoinGecko", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x382ec3f9f2e79b03abf0127f3aa985b148cef6d7": { + "address": "0x382ec3f9f2e79b03abf0127f3aa985b148cef6d7", + "symbol": "ZENF", + "decimals": 18, + "name": "Zenland", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x382ec3f9f2e79b03abf0127f3aa985b148cef6d7.png", + "aggregators": ["PancakeCoinMarketCap", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x40c9393d4e7153199fb28615a2a0a7039ae1df15": { + "address": "0x40c9393d4e7153199fb28615a2a0a7039ae1df15", + "symbol": "$CASH", + "decimals": 18, + "name": "Print Cash - BNB", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x40c9393d4e7153199fb28615a2a0a7039ae1df15.png", + "aggregators": ["PancakeCoinMarketCap", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x9cae753b661142ae766374cefa5dc800d80446ac": { + "address": "0x9cae753b661142ae766374cefa5dc800d80446ac", + "symbol": "HAVEN", + "decimals": 9, + "name": "Haven token", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x9cae753b661142ae766374cefa5dc800d80446ac.png", + "aggregators": ["PancakeCoinMarketCap", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x9767203e89dcd34851240b3919d4900d3e5069f1": { + "address": "0x9767203e89dcd34851240b3919d4900d3e5069f1", + "symbol": "A4", + "decimals": 6, + "name": "A4 Finance", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x9767203e89dcd34851240b3919d4900d3e5069f1.png", + "aggregators": ["PancakeCoinMarketCap", "Rubic", "Rango"], + "occurrences": 3 + }, + "0xbb1aa6e59e5163d8722a122cd66eba614b59df0d": { + "address": "0xbb1aa6e59e5163d8722a122cd66eba614b59df0d", + "symbol": "ABNBB", + "decimals": 18, + "name": "Ankr BNB Reward Earning Bond", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xbb1aa6e59e5163d8722a122cd66eba614b59df0d.png", + "aggregators": ["PancakeCoinMarketCap", "Socket", "Rubic"], + "occurrences": 3 + }, + "0x2cace984dab08bd192a7fd044276060cb955dd9c": { + "address": "0x2cace984dab08bd192a7fd044276060cb955dd9c", + "symbol": "ACCEL", + "decimals": 18, + "name": "ACCEL", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x2cace984dab08bd192a7fd044276060cb955dd9c.png", + "aggregators": ["PancakeCoinMarketCap", "Socket", "Rubic"], + "occurrences": 3 + }, + "0xd436f4f4f309f3eec38b33071ccc7115630a1f1c": { + "address": "0xd436f4f4f309f3eec38b33071ccc7115630a1f1c", + "symbol": "ACCG", + "decimals": 18, + "name": "Australian Crypto Coin Green", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xd436f4f4f309f3eec38b33071ccc7115630a1f1c.png", + "aggregators": ["PancakeCoinMarketCap", "Rubic", "Sonarwatch"], + "occurrences": 3 + }, + "0x706d16f0d6930867f3acca5f791f85c633d0f086": { + "address": "0x706d16f0d6930867f3acca5f791f85c633d0f086", + "symbol": "AGON", + "decimals": 9, + "name": "Arabian Dragon", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x706d16f0d6930867f3acca5f791f85c633d0f086.png", + "aggregators": ["PancakeCoinMarketCap", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x1496fb27d8cf1887d21cac161987821859ca56ba": { + "address": "0x1496fb27d8cf1887d21cac161987821859ca56ba", + "symbol": "AMC", + "decimals": 18, + "name": "AMC FIGHT NIGHTS", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x1496fb27d8cf1887d21cac161987821859ca56ba.png", + "aggregators": ["PancakeCoinMarketCap", "Socket", "Rubic"], + "occurrences": 3 + }, + "0x5224f552f110ec78e6e0468138950ae5f3040942": { + "address": "0x5224f552f110ec78e6e0468138950ae5f3040942", + "symbol": "ANOM", + "decimals": 18, + "name": "Anomus", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x5224f552f110ec78e6e0468138950ae5f3040942.png", + "aggregators": ["PancakeCoinMarketCap", "Rubic", "Rango"], + "occurrences": 3 + }, + "0xed3d88d3321f82e5c25ca9ac6d5b427ec93f567e": { + "address": "0xed3d88d3321f82e5c25ca9ac6d5b427ec93f567e", + "symbol": "APE", + "decimals": 18, + "name": "ApeMove Game Token", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xed3d88d3321f82e5c25ca9ac6d5b427ec93f567e.png", + "aggregators": ["PancakeCoinMarketCap", "Socket", "Rubic"], + "occurrences": 3 + }, + "0x4c2a5a1a4b01d293affaa4739f884d7a905a5a8f": { + "address": "0x4c2a5a1a4b01d293affaa4739f884d7a905a5a8f", + "symbol": "APES", + "decimals": 9, + "name": "ApesToken", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x4c2a5a1a4b01d293affaa4739f884d7a905a5a8f.png", + "aggregators": ["PancakeCoinMarketCap", "Socket", "Rubic"], + "occurrences": 3 + }, + "0x097f8ae21e81d4f248a2e2d18543c6b3cc0d8e59": { + "address": "0x097f8ae21e81d4f248a2e2d18543c6b3cc0d8e59", + "symbol": "APP", + "decimals": 18, + "name": "Sappchat", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x097f8ae21e81d4f248a2e2d18543c6b3cc0d8e59.png", + "aggregators": ["PancakeCoinMarketCap", "Socket", "Rubic"], + "occurrences": 3 + }, + "0xb98b2f39c82d2be83dc12087ad71ab85376285e8": { + "address": "0xb98b2f39c82d2be83dc12087ad71ab85376285e8", + "symbol": "AST", + "decimals": 18, + "name": "Astroon", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xb98b2f39c82d2be83dc12087ad71ab85376285e8.png", + "aggregators": ["PancakeCoinMarketCap", "Socket", "Rubic"], + "occurrences": 3 + }, + "0x83850d97018f665eb746fbb8f18351e977d1b0d6": { + "address": "0x83850d97018f665eb746fbb8f18351e977d1b0d6", + "symbol": "ATLAS", + "decimals": 8, + "name": "Star Atlas", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x83850d97018f665eb746fbb8f18351e977d1b0d6.png", + "aggregators": ["PancakeCoinMarketCap", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x1188d953afc697c031851169eef640f23ac8529c": { + "address": "0x1188d953afc697c031851169eef640f23ac8529c", + "symbol": "AUCTION", + "decimals": 18, + "name": "Bounce Token", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x1188d953afc697c031851169eef640f23ac8529c.png", + "aggregators": ["PancakeCoinMarketCap", "Socket", "Rubic"], + "occurrences": 3 + }, + "0x7c56c79a454cbfaf63badb39f82555109a2a80bf": { + "address": "0x7c56c79a454cbfaf63badb39f82555109a2a80bf", + "symbol": "AXLE", + "decimals": 9, + "name": "Axle Games", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x7c56c79a454cbfaf63badb39f82555109a2a80bf.png", + "aggregators": ["PancakeCoinMarketCap", "Rubic", "Rango"], + "occurrences": 3 + }, + "0xd7935bf3a576e997021789f895f0e898fc1aadd6": { + "address": "0xd7935bf3a576e997021789f895f0e898fc1aadd6", + "symbol": "BABYDRAGON", + "decimals": 9, + "name": "Baby Dragon", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xd7935bf3a576e997021789f895f0e898fc1aadd6.png", + "aggregators": ["PancakeCoinMarketCap", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x4a8049c015ae1c6665fc9e49f053458ae3a102d0": { + "address": "0x4a8049c015ae1c6665fc9e49f053458ae3a102d0", + "symbol": "BABYRWA", + "decimals": 9, + "name": "BabyRWA", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x4a8049c015ae1c6665fc9e49f053458ae3a102d0.png", + "aggregators": ["PancakeCoinMarketCap", "Rubic", "Rango"], + "occurrences": 3 + }, + "0xc134fb0200faa2f214b779bcfeafc44519f3f353": { + "address": "0xc134fb0200faa2f214b779bcfeafc44519f3f353", + "symbol": "BAI", + "decimals": 18, + "name": "BEAR AI", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xc134fb0200faa2f214b779bcfeafc44519f3f353.png", + "aggregators": ["PancakeCoinMarketCap", "Socket", "Rubic"], + "occurrences": 3 + }, + "0x084deea43349a1ff65c84750cdd624769e680a4f": { + "address": "0x084deea43349a1ff65c84750cdd624769e680a4f", + "symbol": "BANANA", + "decimals": 9, + "name": "BananaCoin", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x084deea43349a1ff65c84750cdd624769e680a4f.png", + "aggregators": ["PancakeCoinMarketCap", "Socket", "Rubic"], + "occurrences": 3 + }, + "0x26837b64f1302afb1e364082a9e6a0076bb88888": { + "address": "0x26837b64f1302afb1e364082a9e6a0076bb88888", + "symbol": "BANK", + "decimals": 1, + "name": "Bank", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x26837b64f1302afb1e364082a9e6a0076bb88888.png", + "aggregators": ["PancakeCoinMarketCap", "Socket", "Rubic"], + "occurrences": 3 + }, + "0x1b7cc2e9dfeadc0aa3c283d727c50df84558da59": { + "address": "0x1b7cc2e9dfeadc0aa3c283d727c50df84558da59", + "symbol": "BAO", + "decimals": 18, + "name": "BAO", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x1b7cc2e9dfeadc0aa3c283d727c50df84558da59.png", + "aggregators": ["PancakeCoinMarketCap", "Socket", "Rubic"], + "occurrences": 3 + }, + "0xd08527df0c264c214769d17a1bb5b27db5df2b3e": { + "address": "0xd08527df0c264c214769d17a1bb5b27db5df2b3e", + "symbol": "BCHEC", + "decimals": 9, + "name": "Bitchemical", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xd08527df0c264c214769d17a1bb5b27db5df2b3e.png", + "aggregators": ["PancakeCoinMarketCap", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x78e24521d5782c1158bcf187987fb39576d8b4c7": { + "address": "0x78e24521d5782c1158bcf187987fb39576d8b4c7", + "symbol": "BCX", + "decimals": 18, + "name": "Big Coin", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x78e24521d5782c1158bcf187987fb39576d8b4c7.png", + "aggregators": ["PancakeCoinMarketCap", "Rubic", "Rango"], + "occurrences": 3 + }, + "0xa5438df34698df262d5ed463f10387c998edc24a": { + "address": "0xa5438df34698df262d5ed463f10387c998edc24a", + "symbol": "BFK", + "decimals": 18, + "name": "BFK Warzone", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xa5438df34698df262d5ed463f10387c998edc24a.png", + "aggregators": ["PancakeCoinMarketCap", "Rubic", "Rango"], + "occurrences": 3 + }, + "0xf339e8c294046e6e7ef6ad4f6fa9e202b59b556b": { + "address": "0xf339e8c294046e6e7ef6ad4f6fa9e202b59b556b", + "symbol": "BGS", + "decimals": 18, + "name": "Battle of Guardians", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xf339e8c294046e6e7ef6ad4f6fa9e202b59b556b.png", + "aggregators": ["PancakeCoinMarketCap", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x9a2f5556e9a637e8fbce886d8e3cf8b316a1d8a2": { + "address": "0x9a2f5556e9a637e8fbce886d8e3cf8b316a1d8a2", + "symbol": "BIDR", + "decimals": 18, + "name": "BIDR BEP2", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x9a2f5556e9a637e8fbce886d8e3cf8b316a1d8a2.png", + "aggregators": [ + "PancakeCoinMarketCap", + "Rubic", + "Rango", + "BinanceDex" + ], + "occurrences": 4 + }, + "0x668935b74cd1683c44dc3e5dfa61a6e0b219b913": { + "address": "0x668935b74cd1683c44dc3e5dfa61a6e0b219b913", + "symbol": "BITX", + "decimals": 9, + "name": "BitX Exchange", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x668935b74cd1683c44dc3e5dfa61a6e0b219b913.png", + "aggregators": ["PancakeCoinMarketCap", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x773b532126b9f307665942b0fa4cda0540cedb71": { + "address": "0x773b532126b9f307665942b0fa4cda0540cedb71", + "symbol": "BOOST", + "decimals": 18, + "name": "Booster", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x773b532126b9f307665942b0fa4cda0540cedb71.png", + "aggregators": ["PancakeCoinMarketCap", "Socket", "Rubic"], + "occurrences": 3 + }, + "0xc4daa5a9f2b832ed0f9bc579662883cd53ea9d61": { + "address": "0xc4daa5a9f2b832ed0f9bc579662883cd53ea9d61", + "symbol": "BRICK", + "decimals": 18, + "name": "BrickChain", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xc4daa5a9f2b832ed0f9bc579662883cd53ea9d61.png", + "aggregators": ["PancakeCoinMarketCap", "Socket", "Rubic"], + "occurrences": 3 + }, + "0x0e5366c4b3eb849a711932c027fb0d2d2d834846": { + "address": "0x0e5366c4b3eb849a711932c027fb0d2d2d834846", + "symbol": "BT", + "decimals": 18, + "name": "Bozkurt Token", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x0e5366c4b3eb849a711932c027fb0d2d2d834846.png", + "aggregators": ["PancakeCoinMarketCap", "Socket", "Rubic"], + "occurrences": 3 + }, + "0x5de820707adc87b4581f8e7914a65341e68216db": { + "address": "0x5de820707adc87b4581f8e7914a65341e68216db", + "symbol": "BTCP", + "decimals": 8, + "name": "Bitcoin Pro Wrapped", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x5de820707adc87b4581f8e7914a65341e68216db.png", + "aggregators": ["PancakeCoinMarketCap", "Socket", "Rubic"], + "occurrences": 3 + }, + "0x99cd7207d1cbe59033a01892c06889adae47b0e5": { + "address": "0x99cd7207d1cbe59033a01892c06889adae47b0e5", + "symbol": "BULL", + "decimals": 18, + "name": "Bullshit Inu", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x99cd7207d1cbe59033a01892c06889adae47b0e5.png", + "aggregators": ["PancakeCoinMarketCap", "Socket", "Rubic"], + "occurrences": 3 + }, + "0xdacc0417add48b63cbefb77efbe4a3801aad51ba": { + "address": "0xdacc0417add48b63cbefb77efbe4a3801aad51ba", + "symbol": "BZEN", + "decimals": 9, + "name": "BITZEN", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xdacc0417add48b63cbefb77efbe4a3801aad51ba.png", + "aggregators": ["PancakeCoinMarketCap", "Socket", "Rubic"], + "occurrences": 3 + }, + "0xe82d5e015713ea2bd14b30377350626ec5172a9e": { + "address": "0xe82d5e015713ea2bd14b30377350626ec5172a9e", + "symbol": "CAT", + "decimals": 18, + "name": "NOT", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xe82d5e015713ea2bd14b30377350626ec5172a9e.png", + "aggregators": ["PancakeCoinMarketCap", "Socket", "Rubic"], + "occurrences": 3 + }, + "0x50332bdca94673f33401776365b66cc4e81ac81d": { + "address": "0x50332bdca94673f33401776365b66cc4e81ac81d", + "symbol": "CCAR", + "decimals": 18, + "name": "CCAR", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x50332bdca94673f33401776365b66cc4e81ac81d.png", + "aggregators": ["PancakeCoinMarketCap", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x6dda867f8f0019fe108e3b4c7187c1d0a2d57897": { + "address": "0x6dda867f8f0019fe108e3b4c7187c1d0a2d57897", + "symbol": "CHAIN", + "decimals": 18, + "name": "ChainSwaps", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x6dda867f8f0019fe108e3b4c7187c1d0a2d57897.png", + "aggregators": ["PancakeCoinMarketCap", "Socket", "Rubic"], + "occurrences": 3 + }, + "0x6e1b4ba8f5be7708cd475795fc23924ed078a8d2": { + "address": "0x6e1b4ba8f5be7708cd475795fc23924ed078a8d2", + "symbol": "CHANGE", + "decimals": 9, + "name": "Change Our World", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x6e1b4ba8f5be7708cd475795fc23924ed078a8d2.png", + "aggregators": ["PancakeCoinMarketCap", "Socket", "Rubic"], + "occurrences": 3 + }, + "0x3f670f65b9ce89b82e82121fd68c340ac22c08d6": { + "address": "0x3f670f65b9ce89b82e82121fd68c340ac22c08d6", + "symbol": "CTI", + "decimals": 18, + "name": "ClinTex", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x3f670f65b9ce89b82e82121fd68c340ac22c08d6.png", + "aggregators": ["PancakeCoinMarketCap", "Socket", "Rubic"], + "occurrences": 3 + }, + "0x6a50a1f2ff0c5658815215b498f7ab003a783dc7": { + "address": "0x6a50a1f2ff0c5658815215b498f7ab003a783dc7", + "symbol": "CVT", + "decimals": 18, + "name": "CV TOKEN", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x6a50a1f2ff0c5658815215b498f7ab003a783dc7.png", + "aggregators": ["PancakeCoinMarketCap", "Socket", "Rubic"], + "occurrences": 3 + }, + "0x5fdab5bdbad5277b383b3482d085f4bfef68828c": { + "address": "0x5fdab5bdbad5277b383b3482d085f4bfef68828c", + "symbol": "DFH", + "decimals": 18, + "name": "DefiHorse", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x5fdab5bdbad5277b383b3482d085f4bfef68828c.png", + "aggregators": ["PancakeCoinMarketCap", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x42712df5009c20fee340b245b510c0395896cf6e": { + "address": "0x42712df5009c20fee340b245b510c0395896cf6e", + "symbol": "DFT", + "decimals": 18, + "name": "DFT", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x42712df5009c20fee340b245b510c0395896cf6e.png", + "aggregators": ["PancakeExtended", "Rubic", "Rango"], + "occurrences": 3 + }, + "0xf317932ee2c30fa5d0e14416775977801734812d": { + "address": "0xf317932ee2c30fa5d0e14416775977801734812d", + "symbol": "DINO", + "decimals": 18, + "name": "Dino Token", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xf317932ee2c30fa5d0e14416775977801734812d.png", + "aggregators": ["PancakeCoinMarketCap", "Socket", "Rubic"], + "occurrences": 3 + }, + "0x6f8deb41ad9c9e25b2674a9ed083afc4f529bc11": { + "address": "0x6f8deb41ad9c9e25b2674a9ed083afc4f529bc11", + "symbol": "DOGE", + "decimals": 9, + "name": "MOON DOGE", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x6f8deb41ad9c9e25b2674a9ed083afc4f529bc11.png", + "aggregators": ["PancakeCoinMarketCap", "Socket", "Rubic"], + "occurrences": 3 + }, + "0xda1e806ffc0ee2e541a212183306071c3a375b74": { + "address": "0xda1e806ffc0ee2e541a212183306071c3a375b74", + "symbol": "DOGS", + "decimals": 18, + "name": "HARRIS DOGS", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xda1e806ffc0ee2e541a212183306071c3a375b74.png", + "aggregators": ["PancakeCoinMarketCap", "Socket", "Rubic"], + "occurrences": 3 + }, + "0x844fa82f1e54824655470970f7004dd90546bb28": { + "address": "0x844fa82f1e54824655470970f7004dd90546bb28", + "symbol": "DOP", + "decimals": 18, + "name": "Dopple Token", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x844fa82f1e54824655470970f7004dd90546bb28.png", + "aggregators": ["PancakeCoinMarketCap", "Socket", "Rubic"], + "occurrences": 3 + }, + "0x6db3972c6a5535708e7a4f7ad52f24d178d9a93e": { + "address": "0x6db3972c6a5535708e7a4f7ad52f24d178d9a93e", + "symbol": "DRIVENX", + "decimals": 18, + "name": "DVX", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x6db3972c6a5535708e7a4f7ad52f24d178d9a93e.png", + "aggregators": ["PancakeCoinMarketCap", "Socket", "Rubic"], + "occurrences": 3 + }, + "0xb0df5519f460e96117c12ea667557b161866189c": { + "address": "0xb0df5519f460e96117c12ea667557b161866189c", + "symbol": "DXS", + "decimals": 8, + "name": "DX SPOT", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xb0df5519f460e96117c12ea667557b161866189c.png", + "aggregators": ["PancakeCoinMarketCap", "Socket", "Rubic"], + "occurrences": 3 + }, + "0xc84d8d03aa41ef941721a4d77b24bb44d7c7ac55": { + "address": "0xc84d8d03aa41ef941721a4d77b24bb44d7c7ac55", + "symbol": "ECC", + "decimals": 9, + "name": "Empire Capital Token", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xc84d8d03aa41ef941721a4d77b24bb44d7c7ac55.png", + "aggregators": ["PancakeCoinMarketCap", "Socket", "Rubic"], + "occurrences": 3 + }, + "0x5357e9c3488c7680e710b46b744e706e484b4ad7": { + "address": "0x5357e9c3488c7680e710b46b744e706e484b4ad7", + "symbol": "EL", + "decimals": 18, + "name": "ELYSIA", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x5357e9c3488c7680e710b46b744e706e484b4ad7.png", + "aggregators": ["PancakeCoinMarketCap", "Socket", "Rubic"], + "occurrences": 3 + }, + "0x56d594d76b37be83c54abf8a4747d60ce58d32c2": { + "address": "0x56d594d76b37be83c54abf8a4747d60ce58d32c2", + "symbol": "ELF", + "decimals": 18, + "name": "ELF wallet", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x56d594d76b37be83c54abf8a4747d60ce58d32c2.png", + "aggregators": ["PancakeCoinMarketCap", "Socket", "Rubic"], + "occurrences": 3 + }, + "0x7eefb6aeb8bc2c1ba6be1d4273ec0758a1321272": { + "address": "0x7eefb6aeb8bc2c1ba6be1d4273ec0758a1321272", + "symbol": "ENG", + "decimals": 18, + "name": "Endless Board Game", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x7eefb6aeb8bc2c1ba6be1d4273ec0758a1321272.png", + "aggregators": ["PancakeCoinMarketCap", "Socket", "Rubic"], + "occurrences": 3 + }, + "0xbb38f4b6e289aa900505c92bd9743bd4d3c8d2de": { + "address": "0xbb38f4b6e289aa900505c92bd9743bd4d3c8d2de", + "symbol": "ETHM", + "decimals": 18, + "name": "Ethereum Meta", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xbb38f4b6e289aa900505c92bd9743bd4d3c8d2de.png", + "aggregators": ["PancakeCoinMarketCap", "Socket", "Rubic"], + "occurrences": 3 + }, + "0xe9a97602ea2985634032a6dfe8a391f7124328f1": { + "address": "0xe9a97602ea2985634032a6dfe8a391f7124328f1", + "symbol": "EYE", + "decimals": 18, + "name": "EYE Network ", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xe9a97602ea2985634032a6dfe8a391f7124328f1.png", + "aggregators": ["PancakeCoinMarketCap", "Socket", "Rubic"], + "occurrences": 3 + }, + "0xa5496935a247fa81b1462e553ad139d2fd0af795": { + "address": "0xa5496935a247fa81b1462e553ad139d2fd0af795", + "symbol": "FLAG", + "decimals": 18, + "name": "Flag Network", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xa5496935a247fa81b1462e553ad139d2fd0af795.png", + "aggregators": ["PancakeCoinMarketCap", "Socket", "Rubic"], + "occurrences": 3 + }, + "0xe02b264915474eb711832bfb8fb6a765b2d36e68": { + "address": "0xe02b264915474eb711832bfb8fb6a765b2d36e68", + "symbol": "FLOKI", + "decimals": 9, + "name": "SUPER FLOKI", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xe02b264915474eb711832bfb8fb6a765b2d36e68.png", + "aggregators": ["PancakeCoinMarketCap", "Socket", "Rubic"], + "occurrences": 3 + }, + "0x5eef8c4320e2bf8d1e6231a31500fd7a87d02985": { + "address": "0x5eef8c4320e2bf8d1e6231a31500fd7a87d02985", + "symbol": "FOMO", + "decimals": 18, + "name": "FOMO", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x5eef8c4320e2bf8d1e6231a31500fd7a87d02985.png", + "aggregators": ["PancakeCoinMarketCap", "Socket", "Rubic"], + "occurrences": 3 + }, + "0x02df2d8120966a143caaf760cc3ae1d12f9862a7": { + "address": "0x02df2d8120966a143caaf760cc3ae1d12f9862a7", + "symbol": "FOX", + "decimals": 18, + "name": "FOX TOKEN", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x02df2d8120966a143caaf760cc3ae1d12f9862a7.png", + "aggregators": ["PancakeCoinMarketCap", "Socket", "Rubic"], + "occurrences": 3 + }, + "0x63f712b7ec2b9f7146b54a79133900f9458eec6a": { + "address": "0x63f712b7ec2b9f7146b54a79133900f9458eec6a", + "symbol": "FTR", + "decimals": 18, + "name": "FutureToken", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x63f712b7ec2b9f7146b54a79133900f9458eec6a.png", + "aggregators": ["PancakeCoinMarketCap", "Socket", "Rubic"], + "occurrences": 3 + }, + "0xf209ce1960fb7e750ff30ba7794ea11c6acdc1f3": { + "address": "0xf209ce1960fb7e750ff30ba7794ea11c6acdc1f3", + "symbol": "GFN", + "decimals": 18, + "name": "Graphene", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xf209ce1960fb7e750ff30ba7794ea11c6acdc1f3.png", + "aggregators": ["PancakeCoinMarketCap", "Socket", "Rubic"], + "occurrences": 3 + }, + "0xd523f5097fe10cb8760f7011796a6edf7a268061": { + "address": "0xd523f5097fe10cb8760f7011796a6edf7a268061", + "symbol": "GM", + "decimals": 18, + "name": "GM Holding", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xd523f5097fe10cb8760f7011796a6edf7a268061.png", + "aggregators": ["PancakeCoinMarketCap", "Socket", "Rubic"], + "occurrences": 3 + }, + "0xf0c99b0288508d004f4abeca34d830ce7682977c": { + "address": "0xf0c99b0288508d004f4abeca34d830ce7682977c", + "symbol": "GME", + "decimals": 18, + "name": "GameStop Coin", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xf0c99b0288508d004f4abeca34d830ce7682977c.png", + "aggregators": ["PancakeCoinMarketCap", "Socket", "Rubic"], + "occurrences": 3 + }, + "0x93d8d25e3c9a847a5da79f79ecac89461feca846": { + "address": "0x93d8d25e3c9a847a5da79f79ecac89461feca846", + "symbol": "GMI", + "decimals": 18, + "name": "GMI", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x93d8d25e3c9a847a5da79f79ecac89461feca846.png", + "aggregators": ["PancakeExtended", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x7c67dccb04b67d4666fd97b2a00bb6d9b8d82e3f": { + "address": "0x7c67dccb04b67d4666fd97b2a00bb6d9b8d82e3f", + "symbol": "GOAT", + "decimals": 18, + "name": "Goatcoin", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x7c67dccb04b67d4666fd97b2a00bb6d9b8d82e3f.png", + "aggregators": ["PancakeCoinMarketCap", "Socket", "Rubic"], + "occurrences": 3 + }, + "0xc6759a4fc56b3ce9734035a56b36e8637c45b77e": { + "address": "0xc6759a4fc56b3ce9734035a56b36e8637c45b77e", + "symbol": "GRIMACE", + "decimals": 18, + "name": "GrimaceCoin", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xc6759a4fc56b3ce9734035a56b36e8637c45b77e.png", + "aggregators": ["PancakeCoinMarketCap", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x87ffc48c9f89fc5dfa05836e083406d684fd6331": { + "address": "0x87ffc48c9f89fc5dfa05836e083406d684fd6331", + "symbol": "HACHIKO", + "decimals": 9, + "name": "Hachiko", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x87ffc48c9f89fc5dfa05836e083406d684fd6331.png", + "aggregators": ["PancakeCoinMarketCap", "Socket", "Rubic"], + "occurrences": 3 + }, + "0xf19cfb40b3774df6eed83169ad5ab0aaf6865f25": { + "address": "0xf19cfb40b3774df6eed83169ad5ab0aaf6865f25", + "symbol": "HOOP", + "decimals": 18, + "name": "Chibi Dinos", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xf19cfb40b3774df6eed83169ad5ab0aaf6865f25.png", + "aggregators": ["PancakeExtended", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x984811e6f2695192add6f88615df637bf52a5cae": { + "address": "0x984811e6f2695192add6f88615df637bf52a5cae", + "symbol": "HOP", + "decimals": 9, + "name": "HOPPY", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x984811e6f2695192add6f88615df637bf52a5cae.png", + "aggregators": ["PancakeCoinMarketCap", "Socket", "Rubic"], + "occurrences": 3 + }, + "0x39d4549908e7adcee9b439429294eeb4c65c2c9e": { + "address": "0x39d4549908e7adcee9b439429294eeb4c65c2c9e", + "symbol": "HORD", + "decimals": 18, + "name": "Chainport.io-Peg HORD Token", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x39d4549908e7adcee9b439429294eeb4c65c2c9e.png", + "aggregators": ["PancakeCoinMarketCap", "Socket", "Rubic"], + "occurrences": 3 + }, + "0xb15e296636cd8c447f0d2564ce4d7dfe4a72a910": { + "address": "0xb15e296636cd8c447f0d2564ce4d7dfe4a72a910", + "symbol": "HOT", + "decimals": 18, + "name": "HYPERONE TOKEN", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xb15e296636cd8c447f0d2564ce4d7dfe4a72a910.png", + "aggregators": ["PancakeCoinMarketCap", "Socket", "Rubic"], + "occurrences": 3 + }, + "0xc15e89f2149bcc0cbd5fb204c9e77fe878f1e9b2": { + "address": "0xc15e89f2149bcc0cbd5fb204c9e77fe878f1e9b2", + "symbol": "HUH", + "decimals": 9, + "name": "HUH_Token", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xc15e89f2149bcc0cbd5fb204c9e77fe878f1e9b2.png", + "aggregators": ["PancakeCoinMarketCap", "Socket", "Rubic"], + "occurrences": 3 + }, + "0xdfcf44e9a6d99717fc04addd57fb667286bb7dc0": { + "address": "0xdfcf44e9a6d99717fc04addd57fb667286bb7dc0", + "symbol": "INCOME", + "decimals": 18, + "name": "Income", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xdfcf44e9a6d99717fc04addd57fb667286bb7dc0.png", + "aggregators": ["PancakeCoinMarketCap", "Socket", "Rubic"], + "occurrences": 3 + }, + "0x059ca11ba3099683dc2e46f048063f5799a7f34c": { + "address": "0x059ca11ba3099683dc2e46f048063f5799a7f34c", + "symbol": "IVI", + "decimals": 18, + "name": "IVIRSE", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x059ca11ba3099683dc2e46f048063f5799a7f34c.png", + "aggregators": ["PancakeCoinMarketCap", "LiFi", "Rango"], + "occurrences": 3 + }, + "0xb9eee0069bb54c2aa5762d184455686ec58a431f": { + "address": "0xb9eee0069bb54c2aa5762d184455686ec58a431f", + "symbol": "KDOE", + "decimals": 18, + "name": "Kudoe", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xb9eee0069bb54c2aa5762d184455686ec58a431f.png", + "aggregators": ["PancakeCoinMarketCap", "Socket", "Rubic"], + "occurrences": 3 + }, + "0x46e83fbcc5623172ee61935c96b7276ab92562de": { + "address": "0x46e83fbcc5623172ee61935c96b7276ab92562de", + "symbol": "KNFT", + "decimals": 18, + "name": "KStarNFT", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x46e83fbcc5623172ee61935c96b7276ab92562de.png", + "aggregators": ["PancakeCoinMarketCap", "Rubic", "Sonarwatch"], + "occurrences": 3 + }, + "0x37b53894e7429f794b56f22a32e1695567ee9913": { + "address": "0x37b53894e7429f794b56f22a32e1695567ee9913", + "symbol": "KRS", + "decimals": 18, + "name": "Kingdom Raids", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x37b53894e7429f794b56f22a32e1695567ee9913.png", + "aggregators": ["PancakeExtended", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x86296279c147bd40cbe5b353f83cea9e9cc9b7bb": { + "address": "0x86296279c147bd40cbe5b353f83cea9e9cc9b7bb", + "symbol": "KTY", + "decimals": 9, + "name": "Krypto Kitty", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x86296279c147bd40cbe5b353f83cea9e9cc9b7bb.png", + "aggregators": ["PancakeCoinMarketCap", "Socket", "Rubic"], + "occurrences": 3 + }, + "0xa3499dd7dbbbd93cb0f8303f8a8ace8d02508e73": { + "address": "0xa3499dd7dbbbd93cb0f8303f8a8ace8d02508e73", + "symbol": "LACE", + "decimals": 18, + "name": "LACE", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xa3499dd7dbbbd93cb0f8303f8a8ace8d02508e73.png", + "aggregators": ["PancakeCoinMarketCap", "Rubic", "Rango"], + "occurrences": 3 + }, + "0xe03e306466965d242db8c562ba2ce230472ca9b3": { + "address": "0xe03e306466965d242db8c562ba2ce230472ca9b3", + "symbol": "LADYS", + "decimals": 18, + "name": "Milady Coin", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xe03e306466965d242db8c562ba2ce230472ca9b3.png", + "aggregators": ["PancakeCoinMarketCap", "Socket", "Rubic"], + "occurrences": 3 + }, + "0xd38b305cac06990c0887032a02c03d6839f770a8": { + "address": "0xd38b305cac06990c0887032a02c03d6839f770a8", + "symbol": "LGCT", + "decimals": 18, + "name": "Legacy Token", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xd38b305cac06990c0887032a02c03d6839f770a8.png", + "aggregators": ["PancakeCoinMarketCap", "Rubic", "Rango"], + "occurrences": 3 + }, + "0xcfb24d3c3767364391340a2e6d99c64f1cbd7a3d": { + "address": "0xcfb24d3c3767364391340a2e6d99c64f1cbd7a3d", + "symbol": "LPOOL", + "decimals": 18, + "name": "Launchpool token (Multichain)", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xcfb24d3c3767364391340a2e6d99c64f1cbd7a3d.png", + "aggregators": ["PancakeCoinMarketCap", "Socket", "Rubic"], + "occurrences": 3 + }, + "0x71e72dde4152d274afd1f2db43531ed9e44a78fa": { + "address": "0x71e72dde4152d274afd1f2db43531ed9e44a78fa", + "symbol": "LTT", + "decimals": 9, + "name": "LordToken", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x71e72dde4152d274afd1f2db43531ed9e44a78fa.png", + "aggregators": ["PancakeCoinMarketCap", "Socket", "Rubic"], + "occurrences": 3 + }, + "0x8479b19c5a3c43e024b2543582af0fc2fef2e6a8": { + "address": "0x8479b19c5a3c43e024b2543582af0fc2fef2e6a8", + "symbol": "MAGA", + "decimals": 9, + "name": "TRUMP", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x8479b19c5a3c43e024b2543582af0fc2fef2e6a8.png", + "aggregators": ["PancakeCoinMarketCap", "Socket", "Rubic"], + "occurrences": 3 + }, + "0x38a62b2030068e7b7a5268df7ab7a48bc6e396b4": { + "address": "0x38a62b2030068e7b7a5268df7ab7a48bc6e396b4", + "symbol": "MELO", + "decimals": 18, + "name": "Melo Token", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x38a62b2030068e7b7a5268df7ab7a48bc6e396b4.png", + "aggregators": ["PancakeCoinMarketCap", "Socket", "Rubic"], + "occurrences": 3 + }, + "0xd399359683c1cd5267f611261ede08f22ce9729f": { + "address": "0xd399359683c1cd5267f611261ede08f22ce9729f", + "symbol": "MFTU", + "decimals": 18, + "name": "Mainstream For The Underground", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xd399359683c1cd5267f611261ede08f22ce9729f.png", + "aggregators": ["PancakeCoinMarketCap", "Socket", "Rubic"], + "occurrences": 3 + }, + "0xd05b1cff02b5955c8d1ceced2fe12ed12804974d": { + "address": "0xd05b1cff02b5955c8d1ceced2fe12ed12804974d", + "symbol": "MICRO", + "decimals": 18, + "name": "Micromines", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xd05b1cff02b5955c8d1ceced2fe12ed12804974d.png", + "aggregators": ["PancakeCoinMarketCap", "Socket", "Rubic"], + "occurrences": 3 + }, + "0x2b15bc62d1fb46ade4763a3c5ea0917460bb25f1": { + "address": "0x2b15bc62d1fb46ade4763a3c5ea0917460bb25f1", + "symbol": "MORPH", + "decimals": 18, + "name": "Morphose Token", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x2b15bc62d1fb46ade4763a3c5ea0917460bb25f1.png", + "aggregators": ["PancakeCoinMarketCap", "Socket", "Rubic"], + "occurrences": 3 + }, + "0xacabd3f9b8f76ffd2724604185fa5afa5df25ac6": { + "address": "0xacabd3f9b8f76ffd2724604185fa5afa5df25ac6", + "symbol": "MSS", + "decimals": 18, + "name": "Monster Slayer Share", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xacabd3f9b8f76ffd2724604185fa5afa5df25ac6.png", + "aggregators": ["PancakeCoinMarketCap", "Socket", "Rubic"], + "occurrences": 3 + }, + "0xcd657182a749554fc8487757612f02226355269d": { + "address": "0xcd657182a749554fc8487757612f02226355269d", + "symbol": "MUSK", + "decimals": 18, + "name": "Musk Token", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xcd657182a749554fc8487757612f02226355269d.png", + "aggregators": ["PancakeCoinMarketCap", "Socket", "Rubic"], + "occurrences": 3 + }, + "0xaf7bfa6240745fd41d1ed4b5fade9dcaf369ba6c": { + "address": "0xaf7bfa6240745fd41d1ed4b5fade9dcaf369ba6c", + "symbol": "MVERSE", + "decimals": 18, + "name": "MaticVerse", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xaf7bfa6240745fd41d1ed4b5fade9dcaf369ba6c.png", + "aggregators": ["PancakeCoinMarketCap", "Socket", "Rubic"], + "occurrences": 3 + }, + "0x9f1f27179fb25f11e1f8113be830cff5926c4605": { + "address": "0x9f1f27179fb25f11e1f8113be830cff5926c4605", + "symbol": "NCT", + "decimals": 9, + "name": "New Cat", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x9f1f27179fb25f11e1f8113be830cff5926c4605.png", + "aggregators": ["PancakeCoinMarketCap", "Socket", "Rubic"], + "occurrences": 3 + }, + "0xe38950f71e2d2fc4ca9dc9c3625d82560b0a5d8f": { + "address": "0xe38950f71e2d2fc4ca9dc9c3625d82560b0a5d8f", + "symbol": "NELO", + "decimals": 9, + "name": "NELO Metaverse", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xe38950f71e2d2fc4ca9dc9c3625d82560b0a5d8f.png", + "aggregators": ["PancakeCoinMarketCap", "Socket", "Rubic"], + "occurrences": 3 + }, + "0xfaab744db9def8e13194600ed02bc5d5bed3b85c": { + "address": "0xfaab744db9def8e13194600ed02bc5d5bed3b85c", + "symbol": "NFT", + "decimals": 16, + "name": "Neftipedia", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xfaab744db9def8e13194600ed02bc5d5bed3b85c.png", + "aggregators": ["PancakeCoinMarketCap", "Socket", "Rubic"], + "occurrences": 3 + }, + "0xe5904e9816b309d3ed4d061c922f5aa8f3b24c92": { + "address": "0xe5904e9816b309d3ed4d061c922f5aa8f3b24c92", + "symbol": "NFTL", + "decimals": 18, + "name": "NFTL Token", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xe5904e9816b309d3ed4d061c922f5aa8f3b24c92.png", + "aggregators": ["PancakeCoinMarketCap", "Socket", "Rubic"], + "occurrences": 3 + }, + "0x606fb7969fc1b5cad58e64b12cf827fb65ee4875": { + "address": "0x606fb7969fc1b5cad58e64b12cf827fb65ee4875", + "symbol": "OKSE", + "decimals": 18, + "name": "Okse", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x606fb7969fc1b5cad58e64b12cf827fb65ee4875.png", + "aggregators": ["PancakeCoinMarketCap", "LiFi", "Rubic"], + "occurrences": 3 + }, + "0x18b426813731c144108c6d7faf5ede71a258fd9a": { + "address": "0x18b426813731c144108c6d7faf5ede71a258fd9a", + "symbol": "OLYMPUS", + "decimals": 9, + "name": "OLYMPUS", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x18b426813731c144108c6d7faf5ede71a258fd9a.png", + "aggregators": ["PancakeCoinMarketCap", "Socket", "Rubic"], + "occurrences": 3 + }, + "0x91f006ee672f8f39c6e63ca75b1ca14067b3c366": { + "address": "0x91f006ee672f8f39c6e63ca75b1ca14067b3c366", + "symbol": "ORE", + "decimals": 8, + "name": "OUTRACE", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x91f006ee672f8f39c6e63ca75b1ca14067b3c366.png", + "aggregators": ["PancakeCoinMarketCap", "Socket", "Rubic"], + "occurrences": 3 + }, + "0x5559a5d740c09fdfd9a9929c45297a6f633bbf12": { + "address": "0x5559a5d740c09fdfd9a9929c45297a6f633bbf12", + "symbol": "OT", + "decimals": 9, + "name": "Olaf Token", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x5559a5d740c09fdfd9a9929c45297a6f633bbf12.png", + "aggregators": ["PancakeCoinMarketCap", "Socket", "Rubic"], + "occurrences": 3 + }, + "0x7665cb7b0d01df1c9f9b9cc66019f00abd6959ba": { + "address": "0x7665cb7b0d01df1c9f9b9cc66019f00abd6959ba", + "symbol": "OWN", + "decimals": 18, + "name": "Ownly", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x7665cb7b0d01df1c9f9b9cc66019f00abd6959ba.png", + "aggregators": ["PancakeCoinMarketCap", "Socket", "Rubic"], + "occurrences": 3 + }, + "0x916792fd41855914ba4b71285c8a05b866f0618b": { + "address": "0x916792fd41855914ba4b71285c8a05b866f0618b", + "symbol": "PAYB", + "decimals": 18, + "name": "Paybswap", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x916792fd41855914ba4b71285c8a05b866f0618b.png", + "aggregators": ["PancakeCoinMarketCap", "Socket", "Rubic"], + "occurrences": 3 + }, + "0xb46584e0efde3092e04010a13f2eae62adb3b9f0": { + "address": "0xb46584e0efde3092e04010a13f2eae62adb3b9f0", + "symbol": "PEPE", + "decimals": 18, + "name": "Pepe Coin", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xb46584e0efde3092e04010a13f2eae62adb3b9f0.png", + "aggregators": ["PancakeCoinMarketCap", "Socket", "Rubic"], + "occurrences": 3 + }, + "0x43b9ce0394d9affc97501359646a410a48c21a11": { + "address": "0x43b9ce0394d9affc97501359646a410a48c21a11", + "symbol": "PEPE", + "decimals": 9, + "name": "Pepecoin", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x43b9ce0394d9affc97501359646a410a48c21a11.png", + "aggregators": ["PancakeCoinMarketCap", "Socket", "Rubic"], + "occurrences": 3 + }, + "0xdce796806394e015b7bcf71d1558181a194fc62a": { + "address": "0xdce796806394e015b7bcf71d1558181a194fc62a", + "symbol": "PEPE", + "decimals": 18, + "name": "MOG PEPE", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xdce796806394e015b7bcf71d1558181a194fc62a.png", + "aggregators": ["PancakeCoinMarketCap", "Socket", "Rubic"], + "occurrences": 3 + }, + "0xb2388648cb6d7bcdfb3a623b424660448d31c1b6": { + "address": "0xb2388648cb6d7bcdfb3a623b424660448d31c1b6", + "symbol": "PEPE", + "decimals": 18, + "name": "SEXY PEPE", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xb2388648cb6d7bcdfb3a623b424660448d31c1b6.png", + "aggregators": ["PancakeCoinMarketCap", "Socket", "Rubic"], + "occurrences": 3 + }, + "0x45b19b46be1b9006f388873e2c460fccc7d00f15": { + "address": "0x45b19b46be1b9006f388873e2c460fccc7d00f15", + "symbol": "PIB", + "decimals": 18, + "name": "PiBridge Token", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x45b19b46be1b9006f388873e2c460fccc7d00f15.png", + "aggregators": ["PancakeCoinMarketCap", "Socket", "Rubic"], + "occurrences": 3 + }, + "0xf03e02acbc5eb22de027ea4f59235966f5810d4f": { + "address": "0xf03e02acbc5eb22de027ea4f59235966f5810d4f", + "symbol": "PINU", + "decimals": 18, + "name": "piinu", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xf03e02acbc5eb22de027ea4f59235966f5810d4f.png", + "aggregators": ["PancakeCoinMarketCap", "Socket", "Rubic"], + "occurrences": 3 + }, + "0x7ef000cf62623c7e8d574a80f14484a796232ecd": { + "address": "0x7ef000cf62623c7e8d574a80f14484a796232ecd", + "symbol": "PIPI", + "decimals": 18, + "name": "PIPI", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x7ef000cf62623c7e8d574a80f14484a796232ecd.png", + "aggregators": ["PancakeCoinMarketCap", "Socket", "Rubic"], + "occurrences": 3 + }, + "0x3e63e9c8f2297e3c027f8444b4591e2583d8780b": { + "address": "0x3e63e9c8f2297e3c027f8444b4591e2583d8780b", + "symbol": "PLOT", + "decimals": 18, + "name": "PLOT", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x3e63e9c8f2297e3c027f8444b4591e2583d8780b.png", + "aggregators": ["PancakeCoinMarketCap", "Socket", "Rubic"], + "occurrences": 3 + }, + "0x8ce7fc007fc5d1dea63fed829e11eeddd6406dff": { + "address": "0x8ce7fc007fc5d1dea63fed829e11eeddd6406dff", + "symbol": "POWER", + "decimals": 18, + "name": "Power", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x8ce7fc007fc5d1dea63fed829e11eeddd6406dff.png", + "aggregators": ["PancakeCoinMarketCap", "Socket", "Rubic"], + "occurrences": 3 + }, + "0xfd0fd32a20532ad690731c2685d77c351015ebba": { + "address": "0xfd0fd32a20532ad690731c2685d77c351015ebba", + "symbol": "QUA", + "decimals": 18, + "name": "Quarashi", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xfd0fd32a20532ad690731c2685d77c351015ebba.png", + "aggregators": ["PancakeCoinMarketCap", "Socket", "Rubic"], + "occurrences": 3 + }, + "0xcf909ef9a61dc5b05d46b5490a9f00d51c40bb28": { + "address": "0xcf909ef9a61dc5b05d46b5490a9f00d51c40bb28", + "symbol": "RICE", + "decimals": 18, + "name": "RICE", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xcf909ef9a61dc5b05d46b5490a9f00d51c40bb28.png", + "aggregators": ["PancakeCoinMarketCap", "Rubic", "Rango"], + "occurrences": 3 + }, + "0xe561ebd0d7f9b2bd81da6e7da655030dcb0a926b": { + "address": "0xe561ebd0d7f9b2bd81da6e7da655030dcb0a926b", + "symbol": "ROAR", + "decimals": 18, + "name": "AlphaDEX", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xe561ebd0d7f9b2bd81da6e7da655030dcb0a926b.png", + "aggregators": ["PancakeCoinMarketCap", "Socket", "Rubic"], + "occurrences": 3 + }, + "0x57bb0f40479d7dd0caa67f2a579273a8e9c038ee": { + "address": "0x57bb0f40479d7dd0caa67f2a579273a8e9c038ee", + "symbol": "RUGBUST", + "decimals": 18, + "name": "Rug Busters", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x57bb0f40479d7dd0caa67f2a579273a8e9c038ee.png", + "aggregators": ["PancakeCoinMarketCap", "Socket", "Rubic"], + "occurrences": 3 + }, + "0x7d89c67d3c4e72e8c5c64be201dc225f99d16aca": { + "address": "0x7d89c67d3c4e72e8c5c64be201dc225f99d16aca", + "symbol": "RVZ", + "decimals": 9, + "name": "Revoluzion", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x7d89c67d3c4e72e8c5c64be201dc225f99d16aca.png", + "aggregators": ["PancakeCoinMarketCap", "Socket", "Rubic"], + "occurrences": 3 + }, + "0x04f73a09e2eb410205be256054794fb452f0d245": { + "address": "0x04f73a09e2eb410205be256054794fb452f0d245", + "symbol": "SALE", + "decimals": 18, + "name": "DxSale.Network", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x04f73a09e2eb410205be256054794fb452f0d245.png", + "aggregators": ["PancakeCoinMarketCap", "Socket", "Rubic"], + "occurrences": 3 + }, + "0x40b34cc972908060d6d527276e17c105d224559d": { + "address": "0x40b34cc972908060d6d527276e17c105d224559d", + "symbol": "SEED", + "decimals": 18, + "name": "TreeDefi Token", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x40b34cc972908060d6d527276e17c105d224559d.png", + "aggregators": ["PancakeCoinMarketCap", "Socket", "Rubic"], + "occurrences": 3 + }, + "0x070a9867ea49ce7afc4505817204860e823489fe": { + "address": "0x070a9867ea49ce7afc4505817204860e823489fe", + "symbol": "SIX", + "decimals": 18, + "name": "SIX Token", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x070a9867ea49ce7afc4505817204860e823489fe.png", + "aggregators": ["PancakeCoinMarketCap", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x1cd137eb5bdf426aae58c3ed80383f74e42d9bf2": { + "address": "0x1cd137eb5bdf426aae58c3ed80383f74e42d9bf2", + "symbol": "SMILE", + "decimals": 18, + "name": "Smile Token", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x1cd137eb5bdf426aae58c3ed80383f74e42d9bf2.png", + "aggregators": ["PancakeCoinMarketCap", "Socket", "Rubic"], + "occurrences": 3 + }, + "0x8bac6b4af65c8c1967a0fbc27cd37fd6059daa00": { + "address": "0x8bac6b4af65c8c1967a0fbc27cd37fd6059daa00", + "symbol": "SPH", + "decimals": 18, + "name": "Sphynx Network", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x8bac6b4af65c8c1967a0fbc27cd37fd6059daa00.png", + "aggregators": ["PancakeCoinMarketCap", "Socket", "Rubic"], + "occurrences": 3 + }, + "0x1c3c3941acb8a9be35e50f086fae6a481f7d9df7": { + "address": "0x1c3c3941acb8a9be35e50f086fae6a481f7d9df7", + "symbol": "SQUID", + "decimals": 9, + "name": "SQUID", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x1c3c3941acb8a9be35e50f086fae6a481f7d9df7.png", + "aggregators": ["PancakeCoinMarketCap", "Socket", "Rubic"], + "occurrences": 3 + }, + "0x937dcca207128af363470a711d0c2b1cf76c49b1": { + "address": "0x937dcca207128af363470a711d0c2b1cf76c49b1", + "symbol": "SU", + "decimals": 18, + "name": "SKYUP", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x937dcca207128af363470a711d0c2b1cf76c49b1.png", + "aggregators": ["PancakeCoinMarketCap", "Socket", "Rubic"], + "occurrences": 3 + }, + "0xe56a473043eaab7947c0a2408cea623074500ee3": { + "address": "0xe56a473043eaab7947c0a2408cea623074500ee3", + "symbol": "SWAP", + "decimals": 18, + "name": "SafeSwap Token", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xe56a473043eaab7947c0a2408cea623074500ee3.png", + "aggregators": ["PancakeCoinMarketCap", "Socket", "Rango"], + "occurrences": 3 + }, + "0xe0f7c8682f865b417aeb80bf237025b4cb5ebaef": { + "address": "0xe0f7c8682f865b417aeb80bf237025b4cb5ebaef", + "symbol": "SWAP", + "decimals": 18, + "name": "SatoshiSwap", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xe0f7c8682f865b417aeb80bf237025b4cb5ebaef.png", + "aggregators": ["PancakeCoinMarketCap", "Socket", "Rubic"], + "occurrences": 3 + }, + "0xf0443834b7b21104b7102edbe8f9ec06204cd395": { + "address": "0xf0443834b7b21104b7102edbe8f9ec06204cd395", + "symbol": "TAO", + "decimals": 9, + "name": "Friction Finance", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xf0443834b7b21104b7102edbe8f9ec06204cd395.png", + "aggregators": ["PancakeCoinMarketCap", "Socket", "Rubic"], + "occurrences": 3 + }, + "0xb7fda7374362f66a50665b991aa7ee77b2c6abbe": { + "address": "0xb7fda7374362f66a50665b991aa7ee77b2c6abbe", + "symbol": "TCUB", + "decimals": 9, + "name": "TCUB www.tiger-king.org", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xb7fda7374362f66a50665b991aa7ee77b2c6abbe.png", + "aggregators": ["PancakeCoinMarketCap", "Socket", "Rubic"], + "occurrences": 3 + }, + "0x2d69c55baecefc6ec815239da0a985747b50db6e": { + "address": "0x2d69c55baecefc6ec815239da0a985747b50db6e", + "symbol": "TFF", + "decimals": 18, + "name": "Tutti Frutti", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x2d69c55baecefc6ec815239da0a985747b50db6e.png", + "aggregators": ["PancakeCoinMarketCap", "Socket", "Rubic"], + "occurrences": 3 + }, + "0x1792d8636a9c70b89022167ccb89fd836a6ac771": { + "address": "0x1792d8636a9c70b89022167ccb89fd836a6ac771", + "symbol": "TOM", + "decimals": 18, + "name": "TOMCoin", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x1792d8636a9c70b89022167ccb89fd836a6ac771.png", + "aggregators": ["PancakeCoinMarketCap", "Socket", "Rubic"], + "occurrences": 3 + }, + "0xa75ccffdd6bf0cf2f01cdbb627f9845d1ec32c2a": { + "address": "0xa75ccffdd6bf0cf2f01cdbb627f9845d1ec32c2a", + "symbol": "TOTO", + "decimals": 18, + "name": "Gold Toad Token", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xa75ccffdd6bf0cf2f01cdbb627f9845d1ec32c2a.png", + "aggregators": ["PancakeCoinMarketCap", "Socket", "Rubic"], + "occurrences": 3 + }, + "0xde7bf57c393f0da0b79cdb749e363cbae40ca1c3": { + "address": "0xde7bf57c393f0da0b79cdb749e363cbae40ca1c3", + "symbol": "TRUMP", + "decimals": 18, + "name": "MOG TRUMP", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xde7bf57c393f0da0b79cdb749e363cbae40ca1c3.png", + "aggregators": ["PancakeCoinMarketCap", "Socket", "Rubic"], + "occurrences": 3 + }, + "0xccdf812aa7cdee4ff7cb89546d7f1718bb8d46e1": { + "address": "0xccdf812aa7cdee4ff7cb89546d7f1718bb8d46e1", + "symbol": "TRUMP", + "decimals": 18, + "name": "TRUMP AI", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xccdf812aa7cdee4ff7cb89546d7f1718bb8d46e1.png", + "aggregators": ["PancakeCoinMarketCap", "Socket", "Rubic"], + "occurrences": 3 + }, + "0xee89bd9af5e72b19b48cac3e51acde3a09a3ade3": { + "address": "0xee89bd9af5e72b19b48cac3e51acde3a09a3ade3", + "symbol": "TRUSTK", + "decimals": 18, + "name": "TrustKeys Coin", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xee89bd9af5e72b19b48cac3e51acde3a09a3ade3.png", + "aggregators": ["PancakeCoinMarketCap", "LiFi", "Rubic"], + "occurrences": 3 + }, + "0x58d372a8db7696c0c066f25c9eaf2af6f147b726": { + "address": "0x58d372a8db7696c0c066f25c9eaf2af6f147b726", + "symbol": "TSUGA", + "decimals": 18, + "name": "Tsukiverse: Galactic Adventures", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x58d372a8db7696c0c066f25c9eaf2af6f147b726.png", + "aggregators": ["PancakeCoinMarketCap", "Socket", "Rubic"], + "occurrences": 3 + }, + "0x37e7e9129c78d32f547b7d42c6e3db639b76bd4b": { + "address": "0x37e7e9129c78d32f547b7d42c6e3db639b76bd4b", + "symbol": "TWEETY", + "decimals": 9, + "name": "TWEETY", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x37e7e9129c78d32f547b7d42c6e3db639b76bd4b.png", + "aggregators": ["PancakeCoinMarketCap", "Socket", "Rubic"], + "occurrences": 3 + }, + "0xaf83f292fced83032f52ced45ef7dbddb586441a": { + "address": "0xaf83f292fced83032f52ced45ef7dbddb586441a", + "symbol": "TWIN", + "decimals": 18, + "name": "Twinci", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xaf83f292fced83032f52ced45ef7dbddb586441a.png", + "aggregators": ["PancakeCoinMarketCap", "Socket", "Rubic"], + "occurrences": 3 + }, + "0x86ac3974e2bd0d60825230fa6f355ff11409df5c": { + "address": "0x86ac3974e2bd0d60825230fa6f355ff11409df5c", + "symbol": "VCAKE", + "decimals": 8, + "name": "Venus CAKE", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x86ac3974e2bd0d60825230fa6f355ff11409df5c.png", + "aggregators": ["PancakeCoinMarketCap", "LiFi", "Rubic"], + "occurrences": 3 + }, + "0x9825a3db53e8c21265cabbb73749d71e4bd7b68b": { + "address": "0x9825a3db53e8c21265cabbb73749d71e4bd7b68b", + "symbol": "VOLT", + "decimals": 18, + "name": "Bitvolt", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x9825a3db53e8c21265cabbb73749d71e4bd7b68b.png", + "aggregators": ["PancakeCoinMarketCap", "Socket", "Rubic"], + "occurrences": 3 + }, + "0x934c9198582bf2631128c5d4b051aacef9a6224f": { + "address": "0x934c9198582bf2631128c5d4b051aacef9a6224f", + "symbol": "WAI", + "decimals": 18, + "name": "Wanaka Wai Token", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x934c9198582bf2631128c5d4b051aacef9a6224f.png", + "aggregators": ["PancakeCoinMarketCap", "Socket", "Rubic"], + "occurrences": 3 + }, + "0xd306c124282880858a634e7396383ae58d37c79c": { + "address": "0xd306c124282880858a634e7396383ae58d37c79c", + "symbol": "WAL", + "decimals": 18, + "name": "WastedLands", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xd306c124282880858a634e7396383ae58d37c79c.png", + "aggregators": ["PancakeCoinMarketCap", "Socket", "Rubic"], + "occurrences": 3 + }, + "0x9e26c50b8a3b7652c3fd2b378252a8647a0c9268": { + "address": "0x9e26c50b8a3b7652c3fd2b378252a8647a0c9268", + "symbol": "WOOF", + "decimals": 18, + "name": "Shibance token", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x9e26c50b8a3b7652c3fd2b378252a8647a0c9268.png", + "aggregators": ["PancakeCoinMarketCap", "Socket", "Rubic"], + "occurrences": 3 + }, + "0x6f620ec89b8479e97a6985792d0c64f237566746": { + "address": "0x6f620ec89b8479e97a6985792d0c64f237566746", + "symbol": "WPC", + "decimals": 18, + "name": "WePiggy Coin", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x6f620ec89b8479e97a6985792d0c64f237566746.png", + "aggregators": ["PancakeCoinMarketCap", "Socket", "Rubic"], + "occurrences": 3 + }, + "0xd16eaaba33a0822f5cbe4e0c63ca51d3c3fbb08b": { + "address": "0xd16eaaba33a0822f5cbe4e0c63ca51d3c3fbb08b", + "symbol": "XAI", + "decimals": 9, + "name": "X AI", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xd16eaaba33a0822f5cbe4e0c63ca51d3c3fbb08b.png", + "aggregators": ["PancakeCoinMarketCap", "Socket", "Rubic"], + "occurrences": 3 + }, + "0x547cbe0f0c25085e7015aa6939b28402eb0ccdac": { + "address": "0x547cbe0f0c25085e7015aa6939b28402eb0ccdac", + "symbol": "XBN", + "decimals": 18, + "name": "Elastic BNB", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x547cbe0f0c25085e7015aa6939b28402eb0ccdac.png", + "aggregators": ["PancakeCoinMarketCap", "1inch", "Rubic"], + "occurrences": 3 + }, + "0xd0dff49de3e314fdfd3f93c5eeee7d5d2f5515cd": { + "address": "0xd0dff49de3e314fdfd3f93c5eeee7d5d2f5515cd", + "symbol": "ZBTC", + "decimals": 18, + "name": "ZBTC", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xd0dff49de3e314fdfd3f93c5eeee7d5d2f5515cd.png", + "aggregators": ["PancakeCoinMarketCap", "Socket", "Rubic"], + "occurrences": 3 + }, + "0x23ec58e45ac5313bcb6681f4f7827b8a8453ac45": { + "address": "0x23ec58e45ac5313bcb6681f4f7827b8a8453ac45", + "symbol": "ZEFU", + "decimals": 18, + "name": "Zenfuse Trading Platform Token (BSC)", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x23ec58e45ac5313bcb6681f4f7827b8a8453ac45.png", + "aggregators": ["PancakeCoinMarketCap", "Socket", "Rubic"], + "occurrences": 3 + }, + "0x2770b104374f8130e5a25a203b63c79436b11a0d": { + "address": "0x2770b104374f8130e5a25a203b63c79436b11a0d", + "symbol": "ZKB", + "decimals": 18, + "name": "ZK Cross Chain Bridge", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x2770b104374f8130e5a25a203b63c79436b11a0d.png", + "aggregators": ["PancakeCoinMarketCap", "Socket", "Rubic"], + "occurrences": 3 + }, + "0xdb8d30b74bf098af214e862c90e647bbb1fcc58c": { + "address": "0xdb8d30b74bf098af214e862c90e647bbb1fcc58c", + "symbol": "BABYCAKE", + "decimals": 18, + "name": "BabyCake", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xdb8d30b74bf098af214e862c90e647bbb1fcc58c.png", + "aggregators": ["PancakeExtended", "Rubic", "Squid"], + "occurrences": 3 + }, + "0x045c4324039da91c52c55df5d785385aab073dcf": { + "address": "0x045c4324039da91c52c55df5d785385aab073dcf", + "symbol": "BCFX", + "decimals": 18, + "name": "BSC Conflux", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x045c4324039da91c52c55df5d785385aab073dcf.png", + "aggregators": ["PancakeExtended", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x581fa684d0ec11ccb46b1d92f1f24c8a3f95c0ca": { + "address": "0x581fa684d0ec11ccb46b1d92f1f24c8a3f95c0ca", + "symbol": "MCAKE", + "decimals": 18, + "name": "mCake Token", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x581fa684d0ec11ccb46b1d92f1f24c8a3f95c0ca.png", + "aggregators": ["PancakeExtended", "Rubic", "Rango"], + "occurrences": 3 + }, + "0xc2098a8938119a52b1f7661893c0153a6cb116d5": { + "address": "0xc2098a8938119a52b1f7661893c0153a6cb116d5", + "symbol": "RPG", + "decimals": 18, + "name": "Rangers Protocol Gas", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xc2098a8938119a52b1f7661893c0153a6cb116d5.png", + "aggregators": ["PancakeExtended", "Socket", "Rango"], + "occurrences": 3 + }, + "0xad90c05bc51672eedfee36e58b3ff1a78bbc146d": { + "address": "0xad90c05bc51672eedfee36e58b3ff1a78bbc146d", + "symbol": "XSPACE", + "decimals": 9, + "name": "XSPACE", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xad90c05bc51672eedfee36e58b3ff1a78bbc146d.png", + "aggregators": ["1inch", "Socket", "Rubic"], + "occurrences": 3 + }, + "0x0047a0deadafb7ee6b1a0d219e70fb6767057d93": { + "address": "0x0047a0deadafb7ee6b1a0d219e70fb6767057d93", + "symbol": "XYSL", + "decimals": 18, + "name": "xYSL token", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x0047a0deadafb7ee6b1a0d219e70fb6767057d93.png", + "aggregators": ["1inch", "Socket", "Rango"], + "occurrences": 3 + }, + "0x441bb79f2da0daf457bad3d401edb68535fb3faa": { + "address": "0x441bb79f2da0daf457bad3d401edb68535fb3faa", + "symbol": "RB", + "decimals": 18, + "name": "Hey Reborn", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x441bb79f2da0daf457bad3d401edb68535fb3faa.png", + "aggregators": ["LiFi", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x7979f6c54eba05e18ded44c4f986f49a5de551c2": { + "address": "0x7979f6c54eba05e18ded44c4f986f49a5de551c2", + "symbol": "KEBAB", + "decimals": 18, + "name": "Kebab Token", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x7979f6c54eba05e18ded44c4f986f49a5de551c2.png", + "aggregators": ["TrustWallet", "Rubic", "Rango"], + "occurrences": 3 + }, + "0xfeea0bdd3d07eb6fe305938878c0cadbfa169042": { + "address": "0xfeea0bdd3d07eb6fe305938878c0cadbfa169042", + "symbol": "8PAY", + "decimals": 18, + "name": "8PAY Network", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xfeea0bdd3d07eb6fe305938878c0cadbfa169042.png", + "aggregators": ["Socket", "Rubic", "Rango"], + "occurrences": 3 + }, + "0xebd49b26169e1b52c04cfd19fcf289405df55f80": { + "address": "0xebd49b26169e1b52c04cfd19fcf289405df55f80", + "symbol": "ORBS", + "decimals": 18, + "name": "Orbs", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xebd49b26169e1b52c04cfd19fcf289405df55f80.png", + "aggregators": ["Socket", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x4206931337dc273a630d328da6441786bfad668f": { + "address": "0x4206931337dc273a630d328da6441786bfad668f", + "symbol": "DOGE", + "decimals": 8, + "name": "Dogecoin", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x4206931337dc273a630d328da6441786bfad668f.png", + "aggregators": ["Socket", "Rubic", "Squid"], + "occurrences": 3 + }, + "0x4d5f833711128f20c8065c48823e322f0b87742c": { + "address": "0x4d5f833711128f20c8065c48823e322f0b87742c", + "symbol": "PC", + "decimals": 18, + "name": "Peace Coin", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x4d5f833711128f20c8065c48823e322f0b87742c.png", + "aggregators": ["Socket", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x8b4c03308579a0c4166b44f84565d97378303247": { + "address": "0x8b4c03308579a0c4166b44f84565d97378303247", + "symbol": "GATTO", + "decimals": 18, + "name": "Madonna del gatto", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x8b4c03308579a0c4166b44f84565d97378303247.png", + "aggregators": ["Rubic", "Rango", "Sonarwatch"], + "occurrences": 3 + }, + "0xddf7d080c82b8048baae54e376a3406572429b4e": { + "address": "0xddf7d080c82b8048baae54e376a3406572429b4e", + "symbol": "OOOOOO", + "decimals": 18, + "name": "GODDOG", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xddf7d080c82b8048baae54e376a3406572429b4e.png", + "aggregators": ["Rubic", "Squid", "Rango"], + "occurrences": 3 + }, + "0x0bb0e29458714c4961e5198ab3bc808f628dd6c7": { + "address": "0x0bb0e29458714c4961e5198ab3bc808f628dd6c7", + "symbol": "SOLVEX", + "decimals": 9, + "name": "Solvex Network", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x0bb0e29458714c4961e5198ab3bc808f628dd6c7.png", + "aggregators": ["Rubic", "Rango", "Sonarwatch"], + "occurrences": 3 + }, + "0x80a78a9b6b1272fdb612b39181bf113706024875": { + "address": "0x80a78a9b6b1272fdb612b39181bf113706024875", + "symbol": "HLO", + "decimals": 18, + "name": "Halo", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x80a78a9b6b1272fdb612b39181bf113706024875.png", + "aggregators": ["Rubic", "Rango", "Sonarwatch"], + "occurrences": 3 + }, + "0x9f9bb3d5af7cc774f9b6adf66e32859b5a998952": { + "address": "0x9f9bb3d5af7cc774f9b6adf66e32859b5a998952", + "symbol": "SATX", + "decimals": 18, + "name": "$SATX", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x9f9bb3d5af7cc774f9b6adf66e32859b5a998952.png", + "aggregators": ["Rubic", "Rango", "Sonarwatch"], + "occurrences": 3 + }, + "0x59264f02d301281f3393e1385c0aefd446eb0f00": { + "address": "0x59264f02d301281f3393e1385c0aefd446eb0f00", + "symbol": "PARTI", + "decimals": 18, + "name": "PARTI Token", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x59264f02d301281f3393e1385c0aefd446eb0f00.png", + "aggregators": ["PancakeExtended", "LiFi", "Rubic"], + "occurrences": 3 + }, + "0x1a5d7e4c3a7f940b240b7357a4bfed30d17f9497": { + "address": "0x1a5d7e4c3a7f940b240b7357a4bfed30d17f9497", + "symbol": "HOLO", + "decimals": 18, + "name": "Holoworld AI", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x1a5d7e4c3a7f940b240b7357a4bfed30d17f9497.png", + "aggregators": ["PancakeExtended", "LiFi", "Rubic"], + "occurrences": 3 + }, + "0x34681c1035f97e1edcccec5f142e02ff81a3a230": { + "address": "0x34681c1035f97e1edcccec5f142e02ff81a3a230", + "symbol": "CBIX", + "decimals": 18, + "name": "Cubiex", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x34681c1035f97e1edcccec5f142e02ff81a3a230.png", + "aggregators": ["PancakeCoinMarketCap", "Rubic", "BinanceDex"], + "occurrences": 3 + }, + "0x8fce7206e3043dd360f115afa956ee31b90b787c": { + "address": "0x8fce7206e3043dd360f115afa956ee31b90b787c", + "symbol": "STAR", + "decimals": 18, + "name": "Starpower Network", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x8fce7206e3043dd360f115afa956ee31b90b787c.png", + "aggregators": ["PancakeExtended", "LiFi", "Socket"], + "occurrences": 3 + }, + "0x1510ae95447ccbc66bc2eadaa298a17427814ef2": { + "address": "0x1510ae95447ccbc66bc2eadaa298a17427814ef2", + "symbol": "NAIT", + "decimals": 5, + "name": "Node AI Token", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x1510ae95447ccbc66bc2eadaa298a17427814ef2.png", + "aggregators": ["Metamask", "Rubic"], + "occurrences": 2 + }, + "0x4ff1e3c449a7f4b42d8c6f5fbb89c52b8b47fc65": { + "address": "0x4ff1e3c449a7f4b42d8c6f5fbb89c52b8b47fc65", + "symbol": "HOLD", + "decimals": 18, + "name": "HOLD", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x4ff1e3c449a7f4b42d8c6f5fbb89c52b8b47fc65.png", + "aggregators": ["Metamask", "Rubic"], + "occurrences": 2 + }, + "0xdc0f0a5719c39764b011edd02811bd228296887c": { + "address": "0xdc0f0a5719c39764b011edd02811bd228296887c", + "symbol": "DOS", + "decimals": 18, + "name": "DOS Network Token", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xdc0f0a5719c39764b011edd02811bd228296887c.png", + "aggregators": ["Socket", "Rubic", "BinanceDex"], + "occurrences": 3 + }, + "0xbb325dde9b92e0e02b01272f761ddf51d93fabd8": { + "address": "0xbb325dde9b92e0e02b01272f761ddf51d93fabd8", + "symbol": "WESTIE", + "decimals": 9, + "name": "Westie", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xbb325dde9b92e0e02b01272f761ddf51d93fabd8.png", + "aggregators": ["CoinGecko", "Rubic", "Rango"], + "occurrences": 3 + }, + "0xe1743616f705954620aa351465c8885fbde5a8a9": { + "address": "0xe1743616f705954620aa351465c8885fbde5a8a9", + "symbol": "LINON", + "decimals": 18, + "name": "Linde plc (Ondo Tokenized)", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xe1743616f705954620aa351465c8885fbde5a8a9.png", + "aggregators": ["Rango", "Ondo"], + "occurrences": 2, + "rwaData": { + "market": { + "nextOpen": "2026-05-18T20:01:00.000Z", + "nextClose": "2026-05-18T19:59:00.000Z" + }, + "nextPause": { + "start": "2026-06-03T23:52:00.000Z", + "end": "2026-06-04T00:12:00.000Z" + }, + "ticker": "LIN", + "instrumentType": "stock" + } + }, + "0x333333c465a19c85f85c6cfbed7b16b0b26e3333": { + "address": "0x333333c465a19c85f85c6cfbed7b16b0b26e3333", + "symbol": "ORA", + "decimals": 18, + "name": "ORA Coin", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x333333c465a19c85f85c6cfbed7b16b0b26e3333.png", + "aggregators": [ + "PancakeExtended", + "LiFi", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 6 + }, + "0x0b079b33b6e72311c6be245f9f660cc385029fc3": { + "address": "0x0b079b33b6e72311c6be245f9f660cc385029fc3", + "symbol": "APE", + "decimals": 18, + "name": "APE", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x0b079b33b6e72311c6be245f9f660cc385029fc3.png", + "aggregators": ["ApeSwap", "LiFi", "Socket", "Rubic", "Rango"], + "occurrences": 5 + }, + "0x70be40667385500c5da7f108a022e21b606045dd": { + "address": "0x70be40667385500c5da7f108a022e21b606045dd", + "symbol": "ST", + "decimals": 18, + "name": "Sentio Token", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x70be40667385500c5da7f108a022e21b606045dd.png", + "aggregators": [ + "PancakeExtended", + "LiFi", + "Socket", + "Rubic", + "Rango" + ], + "occurrences": 5 + }, + "0x3d4f0513e8a29669b960f9dbca61861548a9a760": { + "address": "0x3d4f0513e8a29669b960f9dbca61861548a9a760", + "symbol": "BANANA", + "decimals": 18, + "name": "Banana For Scale", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x3d4f0513e8a29669b960f9dbca61861548a9a760.png", + "aggregators": [ + "CoinGecko", + "LiFi", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0xab7dd9c9993e63604ff57cfc2dbe430adffd33d3": { + "address": "0xab7dd9c9993e63604ff57cfc2dbe430adffd33d3", + "symbol": "LUNAR", + "decimals": 18, + "name": "MoonPrime Games", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xab7dd9c9993e63604ff57cfc2dbe430adffd33d3.png", + "aggregators": [ + "CoinGecko", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x13a5c811093dd001c328b59a0cc9dec88951f042": { + "address": "0x13a5c811093dd001c328b59a0cc9dec88951f042", + "symbol": "PAI", + "decimals": 18, + "name": "Panther AI", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x13a5c811093dd001c328b59a0cc9dec88951f042.png", + "aggregators": [ + "CoinGecko", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x56fa5f7bf457454be33d8b978c86a5f5b9dd84c2": { + "address": "0x56fa5f7bf457454be33d8b978c86a5f5b9dd84c2", + "symbol": "LTP", + "decimals": 18, + "name": "Listapie", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x56fa5f7bf457454be33d8b978c86a5f5b9dd84c2.png", + "aggregators": [ + "PancakeExtended", + "LiFi", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x85dab10c3ba20148ca60c2eb955e1f8ffe9eaa79": { + "address": "0x85dab10c3ba20148ca60c2eb955e1f8ffe9eaa79", + "symbol": "ARTH", + "decimals": 18, + "name": "ARTH", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x85dab10c3ba20148ca60c2eb955e1f8ffe9eaa79.png", + "aggregators": [ + "CoinGecko", + "LiFi", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0xbb1b031c591235408755ff4e0739cb88c5cf2507": { + "address": "0xbb1b031c591235408755ff4e0739cb88c5cf2507", + "symbol": "PAAL", + "decimals": 18, + "name": "PAAL AI", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xbb1b031c591235408755ff4e0739cb88c5cf2507.png", + "aggregators": [ + "CoinGecko", + "LiFi", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x9ecaf80c1303cca8791afbc0ad405c8a35e8d9f1": { + "address": "0x9ecaf80c1303cca8791afbc0ad405c8a35e8d9f1", + "symbol": "KERNEL", + "decimals": 18, + "name": "KernelDAO", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x9ecaf80c1303cca8791afbc0ad405c8a35e8d9f1.png", + "aggregators": [ + "CoinGecko", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x5d3a1ff2b6bab83b63cd9ad0787074081a52ef34": { + "address": "0x5d3a1ff2b6bab83b63cd9ad0787074081a52ef34", + "symbol": "USDE", + "decimals": 18, + "name": "USDe", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x5d3a1ff2b6bab83b63cd9ad0787074081a52ef34.png", + "aggregators": [ + "PancakeExtended", + "LiFi", + "Socket", + "Rubic", + "Rango" + ], + "occurrences": 5 + }, + "0x211cc4dd073734da055fbf44a2b4667d5e5fe5d2": { + "address": "0x211cc4dd073734da055fbf44a2b4667d5e5fe5d2", + "symbol": "SUSDE", + "decimals": 18, + "name": "SUSDE", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x211cc4dd073734da055fbf44a2b4667d5e5fe5d2.png", + "aggregators": [ + "PancakeExtended", + "LiFi", + "Socket", + "Rubic", + "Rango" + ], + "occurrences": 5 + }, + "0x80eede496655fb9047dd39d9f418d5483ed600df": { + "address": "0x80eede496655fb9047dd39d9f418d5483ed600df", + "symbol": "FRXUSD", + "decimals": 18, + "name": "FRXUSD", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x80eede496655fb9047dd39d9f418d5483ed600df.png", + "aggregators": ["CoinGecko", "LiFi", "Rubic", "Squid", "Rango"], + "occurrences": 5 + }, + "0x420eeed09cbc6e8416decd28857ff3c7d991fc46": { + "address": "0x420eeed09cbc6e8416decd28857ff3c7d991fc46", + "symbol": "AXLTIA", + "decimals": 6, + "name": "Axelar Wrapped TIA", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x420eeed09cbc6e8416decd28857ff3c7d991fc46.png", + "aggregators": ["LiFi", "Socket", "Rubic", "Squid", "Rango"], + "occurrences": 5 + }, + "0xe07710cdcd1c9f0fb04bfd013f9854e4552671ce": { + "address": "0xe07710cdcd1c9f0fb04bfd013f9854e4552671ce", + "symbol": "U", + "decimals": 18, + "name": "U Coin", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xe07710cdcd1c9f0fb04bfd013f9854e4552671ce.png", + "aggregators": ["ApeSwap", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0xb42e1e0165140321db20ef46a2e9a240d60284b6": { + "address": "0xb42e1e0165140321db20ef46a2e9a240d60284b6", + "symbol": "RECT", + "decimals": 18, + "name": "ReflectionAI", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xb42e1e0165140321db20ef46a2e9a240d60284b6.png", + "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0xe580d4db885f697de3e45cbfcbf746232b0a345e": { + "address": "0xe580d4db885f697de3e45cbfcbf746232b0a345e", + "symbol": "STARX", + "decimals": 18, + "name": "STARX", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xe580d4db885f697de3e45cbfcbf746232b0a345e.png", + "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0x5ff325ec2cde57373cb3db511f96a33dc92e1986": { + "address": "0x5ff325ec2cde57373cb3db511f96a33dc92e1986", + "symbol": "BABYHIPPO", + "decimals": 9, + "name": "BABY HIPPO", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x5ff325ec2cde57373cb3db511f96a33dc92e1986.png", + "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0x3e2242cb2fc1465822a0bb81ca2fe1f633a45757": { + "address": "0x3e2242cb2fc1465822a0bb81ca2fe1f633a45757", + "symbol": "FORKY", + "decimals": 18, + "name": "Forky", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x3e2242cb2fc1465822a0bb81ca2fe1f633a45757.png", + "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0x90c48855bb69f9d2c261efd0d8c7f35990f2dd6f": { + "address": "0x90c48855bb69f9d2c261efd0d8c7f35990f2dd6f", + "symbol": "WFI", + "decimals": 18, + "name": "WeFi", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x90c48855bb69f9d2c261efd0d8c7f35990f2dd6f.png", + "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0x37e2ae82c454a6888e4bbb3e21a6607034832b4f": { + "address": "0x37e2ae82c454a6888e4bbb3e21a6607034832b4f", + "symbol": "LIMO", + "decimals": 18, + "name": "Limoverse", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x37e2ae82c454a6888e4bbb3e21a6607034832b4f.png", + "aggregators": ["PancakeCoinGecko", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0xcf221109f45854ac52159420c543757fe84c113a": { + "address": "0xcf221109f45854ac52159420c543757fe84c113a", + "symbol": "AWARE", + "decimals": 18, + "name": "ChainAware.ai", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xcf221109f45854ac52159420c543757fe84c113a.png", + "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0x6050d829f5a5e0ea758d8357ddcdec1381699248": { + "address": "0x6050d829f5a5e0ea758d8357ddcdec1381699248", + "symbol": "WCC", + "decimals": 18, + "name": "Wrapped Canton Coin", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x6050d829f5a5e0ea758d8357ddcdec1381699248.png", + "aggregators": ["PancakeExtended", "LiFi", "Rubic", "Rango"], + "occurrences": 4 + }, + "0x5cc3de2a7f03b1c0a5661a846b367460c3bd128f": { + "address": "0x5cc3de2a7f03b1c0a5661a846b367460c3bd128f", + "symbol": "SLAV", + "decimals": 18, + "name": "SLAV", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x5cc3de2a7f03b1c0a5661a846b367460c3bd128f.png", + "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0x53ffa52f358ccdb59c2a248d5d17ab91a32ab44d": { + "address": "0x53ffa52f358ccdb59c2a248d5d17ab91a32ab44d", + "symbol": "GNESS", + "decimals": 18, + "name": "Gameness Token", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x53ffa52f358ccdb59c2a248d5d17ab91a32ab44d.png", + "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0x653062e37d7a52d465a8570a5daa46ca4e0bd3d9": { + "address": "0x653062e37d7a52d465a8570a5daa46ca4e0bd3d9", + "symbol": "FTD", + "decimals": 18, + "name": "Forty Two DAO Token", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x653062e37d7a52d465a8570a5daa46ca4e0bd3d9.png", + "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0x9f5c37e0fd9bf729b1f0a6f39ce57be5e9bfd435": { + "address": "0x9f5c37e0fd9bf729b1f0a6f39ce57be5e9bfd435", + "symbol": "BTCPAY", + "decimals": 18, + "name": "Bitcoin Pay", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x9f5c37e0fd9bf729b1f0a6f39ce57be5e9bfd435.png", + "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0xf40a230bd8162e34f97a3e113c4e44a7e9bafa16": { + "address": "0xf40a230bd8162e34f97a3e113c4e44a7e9bafa16", + "symbol": "HOGSCOIN", + "decimals": 18, + "name": "CryptoHog", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xf40a230bd8162e34f97a3e113c4e44a7e9bafa16.png", + "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0x4f0572ca0bf96f5ae17b7062d97cea3f35bdea6f": { + "address": "0x4f0572ca0bf96f5ae17b7062d97cea3f35bdea6f", + "symbol": "UNX", + "decimals": 18, + "name": "Unchain X", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x4f0572ca0bf96f5ae17b7062d97cea3f35bdea6f.png", + "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0x57f2be3e97e7653a2e6d6bddda40160d202d5305": { + "address": "0x57f2be3e97e7653a2e6d6bddda40160d202d5305", + "symbol": "KARAT", + "decimals": 18, + "name": "KARAT Galaxy", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x57f2be3e97e7653a2e6d6bddda40160d202d5305.png", + "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0xa97b32d699e3908ff34502af489604ccdc1feb10": { + "address": "0xa97b32d699e3908ff34502af489604ccdc1feb10", + "symbol": "SMOON", + "decimals": 18, + "name": "Solmoon BSC", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xa97b32d699e3908ff34502af489604ccdc1feb10.png", + "aggregators": ["PancakeCoinGecko", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0xbc12ad556581ff7162e595e5956f5f3845fdb38c": { + "address": "0xbc12ad556581ff7162e595e5956f5f3845fdb38c", + "symbol": "COPTER", + "decimals": 9, + "name": "Helicopter Finance", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xbc12ad556581ff7162e595e5956f5f3845fdb38c.png", + "aggregators": ["PancakeCoinGecko", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0xc30f12cd65f61ded24db6c415c84f999c9704ebc": { + "address": "0xc30f12cd65f61ded24db6c415c84f999c9704ebc", + "symbol": "SABAKAINU", + "decimals": 9, + "name": "Sabaka Inu", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xc30f12cd65f61ded24db6c415c84f999c9704ebc.png", + "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0xdafc45a82c3681d857c6ae36227998190a9b6798": { + "address": "0xdafc45a82c3681d857c6ae36227998190a9b6798", + "symbol": "SOUL", + "decimals": 18, + "name": "Kindness For The Soul SOUL", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xdafc45a82c3681d857c6ae36227998190a9b6798.png", + "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0x1225075c06b8e288953531e96f22490dd85b7f60": { + "address": "0x1225075c06b8e288953531e96f22490dd85b7f60", + "symbol": "BABYSHARK", + "decimals": 9, + "name": "Baby Shark", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x1225075c06b8e288953531e96f22490dd85b7f60.png", + "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0x07f5ceded6b3dba557b3663edc8941fb37b63945": { + "address": "0x07f5ceded6b3dba557b3663edc8941fb37b63945", + "symbol": "LAB-V2", + "decimals": 9, + "name": "Little Angry Bunny v2", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x07f5ceded6b3dba557b3663edc8941fb37b63945.png", + "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0x7eb567f5c781ee8e47c7100dc5046955503fc26a": { + "address": "0x7eb567f5c781ee8e47c7100dc5046955503fc26a", + "symbol": "KOJI", + "decimals": 9, + "name": "Koji", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x7eb567f5c781ee8e47c7100dc5046955503fc26a.png", + "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0x25574cad6f03ffacd9d08b288e8d5d88997fb2f3": { + "address": "0x25574cad6f03ffacd9d08b288e8d5d88997fb2f3", + "symbol": "REDFEG", + "decimals": 9, + "name": "RedFeg", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x25574cad6f03ffacd9d08b288e8d5d88997fb2f3.png", + "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0x041640ea980e3fe61e9c4ca26d9007bc70094c15": { + "address": "0x041640ea980e3fe61e9c4ca26d9007bc70094c15", + "symbol": "PIRATECOIN", + "decimals": 9, + "name": "PirateCoin", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x041640ea980e3fe61e9c4ca26d9007bc70094c15.png", + "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0xbbf8b05ef7af53ccbff8e3673e73714f939bfd84": { + "address": "0xbbf8b05ef7af53ccbff8e3673e73714f939bfd84", + "symbol": "FROGCEO", + "decimals": 9, + "name": "FROG CEO", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xbbf8b05ef7af53ccbff8e3673e73714f939bfd84.png", + "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0x9dce13e71b11eb5df66ca269bd657696587fd4e2": { + "address": "0x9dce13e71b11eb5df66ca269bd657696587fd4e2", + "symbol": "ALE", + "decimals": 18, + "name": "Project Ailey", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x9dce13e71b11eb5df66ca269bd657696587fd4e2.png", + "aggregators": [ + "PancakeCoinMarketCap", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 4 + }, + "0xecd042fe089473194dce264a4686298003fc173e": { + "address": "0xecd042fe089473194dce264a4686298003fc173e", + "symbol": "OPTIMUSELO", + "decimals": 9, + "name": "OptimusElonAI", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xecd042fe089473194dce264a4686298003fc173e.png", + "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0xce403dbdff00853860c68739611c64f0bd1c9aff": { + "address": "0xce403dbdff00853860c68739611c64f0bd1c9aff", + "symbol": "KITEAI", + "decimals": 6, + "name": "KITEAI", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xce403dbdff00853860c68739611c64f0bd1c9aff.png", + "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0x56f46bd073e9978eb6984c0c3e5c661407c3a447": { + "address": "0x56f46bd073e9978eb6984c0c3e5c661407c3a447", + "symbol": "DCT", + "decimals": 18, + "name": "decapitaltoken", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x56f46bd073e9978eb6984c0c3e5c661407c3a447.png", + "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0xe85562c6ff86a8ff0268222aff0205a26d37d68e": { + "address": "0xe85562c6ff86a8ff0268222aff0205a26d37d68e", + "symbol": "TOP", + "decimals": 18, + "name": "TOP PROTOCOL", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xe85562c6ff86a8ff0268222aff0205a26d37d68e.png", + "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0xc3571b3f9721d07919dc42af7fce2784b56e8e3c": { + "address": "0xc3571b3f9721d07919dc42af7fce2784b56e8e3c", + "symbol": "ZHOA", + "decimals": 18, + "name": "Chengpang Zhoa", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xc3571b3f9721d07919dc42af7fce2784b56e8e3c.png", + "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0x8ff417e9b7832b09e5717532dc7f251b346442ab": { + "address": "0x8ff417e9b7832b09e5717532dc7f251b346442ab", + "symbol": "WHYPAD", + "decimals": 18, + "name": "Unamano", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x8ff417e9b7832b09e5717532dc7f251b346442ab.png", + "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0x45787821a0bd5e6bba8e709783c773a386e34d65": { + "address": "0x45787821a0bd5e6bba8e709783c773a386e34d65", + "symbol": "RATS", + "decimals": 9, + "name": "GoldenRat", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x45787821a0bd5e6bba8e709783c773a386e34d65.png", + "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0x40ba01da634a189d248fb1ee47141a4e11cd94bd": { + "address": "0x40ba01da634a189d248fb1ee47141a4e11cd94bd", + "symbol": "X314", + "decimals": 18, + "name": "X314", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x40ba01da634a189d248fb1ee47141a4e11cd94bd.png", + "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0x566cedd201f67e542a6851a2959c1a449a041945": { + "address": "0x566cedd201f67e542a6851a2959c1a449a041945", + "symbol": "OPIUM", + "decimals": 18, + "name": "Opium", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x566cedd201f67e542a6851a2959c1a449a041945.png", + "aggregators": ["PancakeCoinGecko", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0x9929b92f4c743d014c68dfe022d04c8c8fcfa37a": { + "address": "0x9929b92f4c743d014c68dfe022d04c8c8fcfa37a", + "symbol": "OPENX", + "decimals": 18, + "name": "OpenSwap.One", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x9929b92f4c743d014c68dfe022d04c8c8fcfa37a.png", + "aggregators": ["PancakeCoinGecko", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0xc2eb046621b59f604c7abdb1600d01636adc4fed": { + "address": "0xc2eb046621b59f604c7abdb1600d01636adc4fed", + "symbol": "ZNX", + "decimals": 6, + "name": "ZENEX", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xc2eb046621b59f604c7abdb1600d01636adc4fed.png", + "aggregators": ["PancakeCoinGecko", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0x9bfa177621119e64cecbeabe184ab9993e2ef727": { + "address": "0x9bfa177621119e64cecbeabe184ab9993e2ef727", + "symbol": "M-BTC", + "decimals": 18, + "name": "Merlin's Seal BTC", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x9bfa177621119e64cecbeabe184ab9993e2ef727.png", + "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0xa0c56a8c0692bd10b3fa8f8ba79cf5332b7107f9": { + "address": "0xa0c56a8c0692bd10b3fa8f8ba79cf5332b7107f9", + "symbol": "MERL", + "decimals": 18, + "name": "Merlin Chain", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xa0c56a8c0692bd10b3fa8f8ba79cf5332b7107f9.png", + "aggregators": ["PancakeExtended", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0x25be3edd820a8fce6b8e211f40c5b82ba176994c": { + "address": "0x25be3edd820a8fce6b8e211f40c5b82ba176994c", + "symbol": "IBTC", + "decimals": 8, + "name": "iBTC Network", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x25be3edd820a8fce6b8e211f40c5b82ba176994c.png", + "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0xa4156cc61dc7796faa24278a0f9f229b15e298cb": { + "address": "0xa4156cc61dc7796faa24278a0f9f229b15e298cb", + "symbol": "BTC.Z", + "decimals": 18, + "name": "Bitcoin Bridged ZED20", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xa4156cc61dc7796faa24278a0f9f229b15e298cb.png", + "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0xb18940bbef83b687b292ab03523c89f80717c5bc": { + "address": "0xb18940bbef83b687b292ab03523c89f80717c5bc", + "symbol": "$BMC", + "decimals": 18, + "name": "BullishMarketCap", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xb18940bbef83b687b292ab03523c89f80717c5bc.png", + "aggregators": ["PancakeCoinGecko", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0x3ebde1ed6b67236b1e714b3a6bb19644df03fd18": { + "address": "0x3ebde1ed6b67236b1e714b3a6bb19644df03fd18", + "symbol": "NULL", + "decimals": 18, + "name": "NULL MATRIX", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x3ebde1ed6b67236b1e714b3a6bb19644df03fd18.png", + "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0x000000000000012def132e61759048be5b5c6033": { + "address": "0x000000000000012def132e61759048be5b5c6033", + "symbol": "CX", + "decimals": 18, + "name": "Cortex", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x000000000000012def132e61759048be5b5c6033.png", + "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0x649a2da7b28e0d54c13d5eff95d3a660652742cc": { + "address": "0x649a2da7b28e0d54c13d5eff95d3a660652742cc", + "symbol": "IDRX", + "decimals": 0, + "name": "IDRX", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x649a2da7b28e0d54c13d5eff95d3a660652742cc.png", + "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0x0cc7288a11c0c31d39d0e05eb59f24e506ad6ad5": { + "address": "0x0cc7288a11c0c31d39d0e05eb59f24e506ad6ad5", + "symbol": "EGP", + "decimals": 18, + "name": "Eigenpie", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x0cc7288a11c0c31d39d0e05eb59f24e506ad6ad5.png", + "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0x7712da72127d5dd213b621497d6e4899d5989e5c": { + "address": "0x7712da72127d5dd213b621497d6e4899d5989e5c", + "symbol": "RYZE", + "decimals": 18, + "name": "Ryze", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x7712da72127d5dd213b621497d6e4899d5989e5c.png", + "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0x9158df7da69b048a296636d5de7a3d9a7fb25e88": { + "address": "0x9158df7da69b048a296636d5de7a3d9a7fb25e88", + "symbol": "SEED", + "decimals": 18, + "name": "Kalijo", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x9158df7da69b048a296636d5de7a3d9a7fb25e88.png", + "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0xbf59dbc154421a7b37f4f2841e11f4ed2a1dee7c": { + "address": "0xbf59dbc154421a7b37f4f2841e11f4ed2a1dee7c", + "symbol": "EDEL", + "decimals": 18, + "name": "EDEL", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xbf59dbc154421a7b37f4f2841e11f4ed2a1dee7c.png", + "aggregators": ["PancakeExtended", "LiFi", "Rubic", "Rango"], + "occurrences": 4 + }, + "0x5fa699c0c1319b8d86489af77dfde4fa97b47df8": { + "address": "0x5fa699c0c1319b8d86489af77dfde4fa97b47df8", + "symbol": "BTGOON", + "decimals": 18, + "name": "BitGo Holdings (Ondo Tokenized)", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x5fa699c0c1319b8d86489af77dfde4fa97b47df8.png", + "aggregators": ["CoinGecko", "Rubic", "Rango", "Ondo"], + "occurrences": 4, + "rwaData": { + "market": { + "nextOpen": "2026-05-18T20:01:00.000Z", + "nextClose": "2026-05-18T19:59:00.000Z" + }, + "nextPause": { + "start": null, + "end": null + }, + "ticker": "BTGO", + "instrumentType": "stock" + } + }, + "0x71e9dc9debc18650bd2342b93623b88c2ad00c89": { + "address": "0x71e9dc9debc18650bd2342b93623b88c2ad00c89", + "symbol": "STRCON", + "decimals": 18, + "name": "Strategy Stretch Preferred (Ondo Tokenized)", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x71e9dc9debc18650bd2342b93623b88c2ad00c89.png", + "aggregators": ["CoinGecko", "Rubic", "Rango", "Ondo"], + "occurrences": 4, + "rwaData": { + "market": { + "nextOpen": "2026-05-18T20:01:00.000Z", + "nextClose": "2026-05-18T19:59:00.000Z" + }, + "nextPause": { + "start": null, + "end": null + }, + "ticker": "STRC", + "instrumentType": "stock" + } + }, + "0x96412902aa9aff61e13f085e70d3152c6ef2a817": { + "address": "0x96412902aa9aff61e13f085e70d3152c6ef2a817", + "symbol": "AVAX", + "decimals": 18, + "name": "Avalanche (Wormhole)", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x96412902aa9aff61e13f085e70d3152c6ef2a817.png", + "aggregators": ["PancakeCoinGecko", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0x0002bcdaf53f4889bf2f43a3252d7c03fe1b80bc": { + "address": "0x0002bcdaf53f4889bf2f43a3252d7c03fe1b80bc", + "symbol": "GORPLES", + "decimals": 18, + "name": "GorplesCoin", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x0002bcdaf53f4889bf2f43a3252d7c03fe1b80bc.png", + "aggregators": ["PancakeCoinGecko", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0xb2b446386633c6746b0a2735fb57edbb066c5878": { + "address": "0xb2b446386633c6746b0a2735fb57edbb066c5878", + "symbol": "INSLISBNB", + "decimals": 18, + "name": "Inception Restaked slisBNB", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xb2b446386633c6746b0a2735fb57edbb066c5878.png", + "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0x5019fe1867d8ccfd76d8d5abd85db5efce548fba": { + "address": "0x5019fe1867d8ccfd76d8d5abd85db5efce548fba", + "symbol": "INT", + "decimals": 18, + "name": "InteNet", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x5019fe1867d8ccfd76d8d5abd85db5efce548fba.png", + "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0x4bfaa776991e85e5f8b1255461cbbd216cfc714f": { + "address": "0x4bfaa776991e85e5f8b1255461cbbd216cfc714f", + "symbol": "HOME", + "decimals": 18, + "name": "Home", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x4bfaa776991e85e5f8b1255461cbbd216cfc714f.png", + "aggregators": ["PancakeExtended", "LiFi", "Rubic", "Rango"], + "occurrences": 4 + }, + "0xea953ea6634d55dac6697c436b1e81a679db5882": { + "address": "0xea953ea6634d55dac6697c436b1e81a679db5882", + "symbol": "USDU", + "decimals": 18, + "name": "USDu", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xea953ea6634d55dac6697c436b1e81a679db5882.png", + "aggregators": ["PancakeExtended", "LiFi", "Rubic", "Rango"], + "occurrences": 4 + }, + "0x15c5be2f72d2f8211ca1cf3d29f058f2b844ffc6": { + "address": "0x15c5be2f72d2f8211ca1cf3d29f058f2b844ffc6", + "symbol": "ADE", + "decimals": 18, + "name": "AADex Finance", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x15c5be2f72d2f8211ca1cf3d29f058f2b844ffc6.png", + "aggregators": ["PancakeCoinGecko", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0xa179248e50ce5afb507fd8c54e08a66fbac7b6ff": { + "address": "0xa179248e50ce5afb507fd8c54e08a66fbac7b6ff", + "symbol": "$FJB", + "decimals": 9, + "name": "Freedom. Jobs. Business", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xa179248e50ce5afb507fd8c54e08a66fbac7b6ff.png", + "aggregators": ["PancakeCoinGecko", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0x93ab30c08421750d5c7993fb621c6ff32fe3f89e": { + "address": "0x93ab30c08421750d5c7993fb621c6ff32fe3f89e", + "symbol": "FROGEX", + "decimals": 9, + "name": "FrogeX", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x93ab30c08421750d5c7993fb621c6ff32fe3f89e.png", + "aggregators": ["PancakeCoinGecko", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0xae3bcdadf58ec10b0ca0566f35877de4467ad222": { + "address": "0xae3bcdadf58ec10b0ca0566f35877de4467ad222", + "symbol": "MARU", + "decimals": 18, + "name": "marumaruNFT", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xae3bcdadf58ec10b0ca0566f35877de4467ad222.png", + "aggregators": ["PancakeCoinGecko", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0xe703bcd08af361b3de09a617fb74f98520954fca": { + "address": "0xe703bcd08af361b3de09a617fb74f98520954fca", + "symbol": "MGP", + "decimals": 18, + "name": "MOST Global", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xe703bcd08af361b3de09a617fb74f98520954fca.png", + "aggregators": [ + "PancakeCoinMarketCap", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 4 + }, + "0xac6ec101ddcb953774d103ba4a82fa257138459f": { + "address": "0xac6ec101ddcb953774d103ba4a82fa257138459f", + "symbol": "MRUN", + "decimals": 18, + "name": "Metarun", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xac6ec101ddcb953774d103ba4a82fa257138459f.png", + "aggregators": [ + "PancakeCoinMarketCap", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 4 + }, + "0x31c91d8fb96bff40955dd2dbc909b36e8b104dde": { + "address": "0x31c91d8fb96bff40955dd2dbc909b36e8b104dde", + "symbol": "POI$ON", + "decimals": 18, + "name": "Poison Finance", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x31c91d8fb96bff40955dd2dbc909b36e8b104dde.png", + "aggregators": ["PancakeCoinGecko", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0xa996dbda4a536700dc1441442ffbdef10c32cb9b": { + "address": "0xa996dbda4a536700dc1441442ffbdef10c32cb9b", + "symbol": "VITRA", + "decimals": 18, + "name": "Vitra Studios", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xa996dbda4a536700dc1441442ffbdef10c32cb9b.png", + "aggregators": [ + "PancakeCoinMarketCap", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 4 + }, + "0x7465b49f83bfd74e8df8574d43bfff34edbc1758": { + "address": "0x7465b49f83bfd74e8df8574d43bfff34edbc1758", + "symbol": "AMATICB", + "decimals": 18, + "name": "AMATICB", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x7465b49f83bfd74e8df8574d43bfff34edbc1758.png", + "aggregators": ["PancakeCoinMarketCap", "LiFi", "Rubic", "Rango"], + "occurrences": 4 + }, + "0xdbccd9131405dd1fe7320090af337952b9845dfa": { + "address": "0xdbccd9131405dd1fe7320090af337952b9845dfa", + "symbol": "BOT", + "decimals": 8, + "name": "Starbots", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xdbccd9131405dd1fe7320090af337952b9845dfa.png", + "aggregators": ["PancakeCoinMarketCap", "LiFi", "Rubic", "Rango"], + "occurrences": 4 + }, + "0xe68b79e51bf826534ff37aa9cee71a3842ee9c70": { + "address": "0xe68b79e51bf826534ff37aa9cee71a3842ee9c70", + "symbol": "CZUSD", + "decimals": 18, + "name": "CZUSD", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xe68b79e51bf826534ff37aa9cee71a3842ee9c70.png", + "aggregators": ["PancakeCoinMarketCap", "LiFi", "Rubic", "Rango"], + "occurrences": 4 + }, + "0x002d8563759f5e1eaf8784181f3973288f6856e4": { + "address": "0x002d8563759f5e1eaf8784181f3973288f6856e4", + "symbol": "DMOD", + "decimals": 18, + "name": "DMOD", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x002d8563759f5e1eaf8784181f3973288f6856e4.png", + "aggregators": ["PancakeCoinMarketCap", "LiFi", "Rubic", "Rango"], + "occurrences": 4 + }, + "0x7ad7242a99f21aa543f9650a56d141c57e4f6081": { + "address": "0x7ad7242a99f21aa543f9650a56d141c57e4f6081", + "symbol": "JADE", + "decimals": 9, + "name": "JADE", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x7ad7242a99f21aa543f9650a56d141c57e4f6081.png", + "aggregators": ["PancakeCoinMarketCap", "LiFi", "Rubic", "Rango"], + "occurrences": 4 + }, + "0xd3c9609b6cbc6ef02390f33c230590c38f9e5f9d": { + "address": "0xd3c9609b6cbc6ef02390f33c230590c38f9e5f9d", + "symbol": "PROT", + "decimals": 18, + "name": "PROT", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xd3c9609b6cbc6ef02390f33c230590c38f9e5f9d.png", + "aggregators": ["PancakeCoinMarketCap", "LiFi", "Rubic", "Rango"], + "occurrences": 4 + }, + "0x270388e0ca29cfd7c7e73903d9d933a23d1bab39": { + "address": "0x270388e0ca29cfd7c7e73903d9d933a23d1bab39", + "symbol": "TSX", + "decimals": 18, + "name": "TradeStars", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x270388e0ca29cfd7c7e73903d9d933a23d1bab39.png", + "aggregators": ["PancakeCoinMarketCap", "LiFi", "Rubic", "Rango"], + "occurrences": 4 + }, + "0x590d11c0696b0023176f5d7587d6b2f502a08047": { + "address": "0x590d11c0696b0023176f5d7587d6b2f502a08047", + "symbol": "LOOKS", + "decimals": 18, + "name": "LooksRare", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x590d11c0696b0023176f5d7587d6b2f502a08047.png", + "aggregators": ["PancakeExtended", "LiFi", "Rubic"], + "occurrences": 3 + }, + "0x18e37f96628db3037d633fe4d469fb1933a63c5b": { + "address": "0x18e37f96628db3037d633fe4d469fb1933a63c5b", + "symbol": "MBL", + "decimals": 18, + "name": "MovieBloc", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x18e37f96628db3037d633fe4d469fb1933a63c5b.png", + "aggregators": ["PancakeExtended", "LiFi", "Rubic"], + "occurrences": 3 + }, + "0x49022089e78a8d46ec87a3af86a1db6c189afa6f": { + "address": "0x49022089e78a8d46ec87a3af86a1db6c189afa6f", + "symbol": "MCOIN", + "decimals": 18, + "name": "MCOIN", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x49022089e78a8d46ec87a3af86a1db6c189afa6f.png", + "aggregators": ["PancakeExtended", "LiFi", "Rubic", "Rango"], + "occurrences": 4 + }, + "0x7dc91cbd6cb5a3e6a95eed713aa6bf1d987146c8": { + "address": "0x7dc91cbd6cb5a3e6a95eed713aa6bf1d987146c8", + "symbol": "BRIDGED MWBETH", + "decimals": 18, + "name": "Bridged mwBETH", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x7dc91cbd6cb5a3e6a95eed713aa6bf1d987146c8.png", + "aggregators": ["PancakeExtended", "LiFi", "Squid"], + "occurrences": 3 + }, + "0x75e8ddb518bb757b4282cd5b83bb70d4101d12fb": { + "address": "0x75e8ddb518bb757b4282cd5b83bb70d4101d12fb", + "symbol": "NFP", + "decimals": 18, + "name": "NFPrompt Token", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x75e8ddb518bb757b4282cd5b83bb70d4101d12fb.png", + "aggregators": ["PancakeExtended", "LiFi", "Rubic"], + "occurrences": 3 + }, + "0xe898edc43920f357a93083f1d4460437de6daec2": { + "address": "0xe898edc43920f357a93083f1d4460437de6daec2", + "symbol": "TITAN", + "decimals": 18, + "name": "TITAN", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xe898edc43920f357a93083f1d4460437de6daec2.png", + "aggregators": ["PancakeExtended", "LiFi", "Rubic", "Rango"], + "occurrences": 4 + }, + "0x392004bee213f1ff580c867359c246924f21e6ad": { + "address": "0x392004bee213f1ff580c867359c246924f21e6ad", + "symbol": "USDD", + "decimals": 18, + "name": "USDD", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x392004bee213f1ff580c867359c246924f21e6ad.png", + "aggregators": ["PancakeExtended", "LiFi", "Rubic", "Rango"], + "occurrences": 4 + }, + "0x00901a076785e0906d1028c7d6372d247bec7d61": { + "address": "0x00901a076785e0906d1028c7d6372d247bec7d61", + "symbol": "AUSDC", + "decimals": 18, + "name": "Aave v3 USDC", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x00901a076785e0906d1028c7d6372d247bec7d61.png", + "aggregators": ["Metamask", "1inch", "LiFi", "Rango"], + "occurrences": 4 + }, + "0xa9251ca9de909cb71783723713b21e4233fbf1b1": { + "address": "0xa9251ca9de909cb71783723713b21e4233fbf1b1", + "symbol": "AUSDT", + "decimals": 18, + "name": "Aave v3 USDT", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xa9251ca9de909cb71783723713b21e4233fbf1b1.png", + "aggregators": ["Metamask", "1inch", "LiFi", "Rango"], + "occurrences": 4 + }, + "0x78839ce14a8213779128ee4da6d75e1326606a56": { + "address": "0x78839ce14a8213779128ee4da6d75e1326606a56", + "symbol": "YNBTCK", + "decimals": 18, + "name": "YieldNest Restaked BTC - Kernel", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x78839ce14a8213779128ee4da6d75e1326606a56.png", + "aggregators": ["LiFi", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0x48dc0190df5ece990c649a7a07ba19d3650a9572": { + "address": "0x48dc0190df5ece990c649a7a07ba19d3650a9572", + "symbol": "BOT", + "decimals": 18, + "name": "BOT", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x48dc0190df5ece990c649a7a07ba19d3650a9572.png", + "aggregators": ["LiFi", "Socket", "Rubic", "Rango"], + "occurrences": 4 + }, + "0xf3e1449ddb6b218da2c9463d4594ceccc8934346": { + "address": "0xf3e1449ddb6b218da2c9463d4594ceccc8934346", + "symbol": "CELL", + "decimals": 18, + "name": "CELL", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xf3e1449ddb6b218da2c9463d4594ceccc8934346.png", + "aggregators": ["LiFi", "Socket", "Rubic", "Rango"], + "occurrences": 4 + }, + "0x11a38e06699b238d6d9a0c7a01f3ac63a07ad318": { + "address": "0x11a38e06699b238d6d9a0c7a01f3ac63a07ad318", + "symbol": "USDFI", + "decimals": 18, + "name": "USDFI", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x11a38e06699b238d6d9a0c7a01f3ac63a07ad318.png", + "aggregators": ["LiFi", "Socket", "Rubic", "Rango"], + "occurrences": 4 + }, + "0x267e0c7456df5254492127ea7b2e14e556b492b8": { + "address": "0x267e0c7456df5254492127ea7b2e14e556b492b8", + "symbol": "RVF", + "decimals": 18, + "name": "RVF", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x267e0c7456df5254492127ea7b2e14e556b492b8.png", + "aggregators": ["LiFi", "Socket", "Rubic", "Rango"], + "occurrences": 4 + }, + "0x293c3ee9abacb08bb8ced107987f00efd1539288": { + "address": "0x293c3ee9abacb08bb8ced107987f00efd1539288", + "symbol": "EMPIRE", + "decimals": 9, + "name": "EMPIRE", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x293c3ee9abacb08bb8ced107987f00efd1539288.png", + "aggregators": ["LiFi", "Socket", "Rubic", "Rango"], + "occurrences": 4 + }, + "0xfd799ddcca8ab5c1ad8a3d64a58d4e907c9d0b71": { + "address": "0xfd799ddcca8ab5c1ad8a3d64a58d4e907c9d0b71", + "symbol": "TAP", + "decimals": 18, + "name": "TAP", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xfd799ddcca8ab5c1ad8a3d64a58d4e907c9d0b71.png", + "aggregators": ["LiFi", "Socket", "Rubic", "Rango"], + "occurrences": 4 + }, + "0x0829d2d5cc09d3d341e813c821b0cfae272d9fb2": { + "address": "0x0829d2d5cc09d3d341e813c821b0cfae272d9fb2", + "symbol": "ROCKS", + "decimals": 18, + "name": "ROCKS", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x0829d2d5cc09d3d341e813c821b0cfae272d9fb2.png", + "aggregators": ["LiFi", "Socket", "Rubic", "Rango"], + "occurrences": 4 + }, + "0xe40255c5d7fa7ceec5120408c78c787cecb4cfdb": { + "address": "0xe40255c5d7fa7ceec5120408c78c787cecb4cfdb", + "symbol": "SWGB", + "decimals": 18, + "name": "SWGb", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xe40255c5d7fa7ceec5120408c78c787cecb4cfdb.png", + "aggregators": ["LiFi", "TrustWallet", "Rubic", "Rango"], + "occurrences": 4 + }, + "0x986cdf0fd180b40c4d6aeaa01ab740b996d8b782": { + "address": "0x986cdf0fd180b40c4d6aeaa01ab740b996d8b782", + "symbol": "SUSHI.MULTICHAIN", + "decimals": 18, + "name": "SushiToken MultiChain", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x986cdf0fd180b40c4d6aeaa01ab740b996d8b782.png", + "aggregators": ["LiFi", "Rubic", "SushiSwap"], + "occurrences": 3 + }, + "0x973616ff3b9d8f88411c5b4e6f928ee541e4d01f": { + "address": "0x973616ff3b9d8f88411c5b4e6f928ee541e4d01f", + "symbol": "AETHC", + "decimals": 18, + "name": "AETHC", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x973616ff3b9d8f88411c5b4e6f928ee541e4d01f.png", + "aggregators": ["LiFi", "Socket", "Rubic", "Rango"], + "occurrences": 4 + }, + "0x8c80c06c6f8c00d2d6f3cfd6333ebb3759d66868": { + "address": "0x8c80c06c6f8c00d2d6f3cfd6333ebb3759d66868", + "symbol": "SING", + "decimals": 18, + "name": "SingSing", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x8c80c06c6f8c00d2d6f3cfd6333ebb3759d66868.png", + "aggregators": ["Socket", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0xab287e6d370c61f105630e656b5468acb4d00423": { + "address": "0xab287e6d370c61f105630e656b5468acb4d00423", + "symbol": "BSR", + "decimals": 18, + "name": "BinStarter", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xab287e6d370c61f105630e656b5468acb4d00423.png", + "aggregators": ["ApeSwap", "LiFi", "Rubic"], + "occurrences": 3 + }, + "0xcd883a18f8d33cf823d13cf2c6787c913d09e640": { + "address": "0xcd883a18f8d33cf823d13cf2c6787c913d09e640", + "symbol": "TAL", + "decimals": 18, + "name": "TalentIDO", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xcd883a18f8d33cf823d13cf2c6787c913d09e640.png", + "aggregators": ["PancakeCoinGecko", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x6dc200b21894af4660b549b678ea8df22bf7cfac": { + "address": "0x6dc200b21894af4660b549b678ea8df22bf7cfac", + "symbol": "WARD", + "decimals": 18, + "name": "WARD", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x6dc200b21894af4660b549b678ea8df22bf7cfac.png", + "aggregators": ["PancakeExtended", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x71d421b6de07cefa2733d044f92a0306308de8b8": { + "address": "0x71d421b6de07cefa2733d044f92a0306308de8b8", + "symbol": "BNBLION", + "decimals": 9, + "name": "BNB LION", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x71d421b6de07cefa2733d044f92a0306308de8b8.png", + "aggregators": ["PancakeCoinMarketCap", "Rubic", "Rango"], + "occurrences": 3 + }, + "0xccd6b38fffeeab9c0ac2413bccf8b0aced748881": { + "address": "0xccd6b38fffeeab9c0ac2413bccf8b0aced748881", + "symbol": "KUVI", + "decimals": 18, + "name": "Kuvi", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xccd6b38fffeeab9c0ac2413bccf8b0aced748881.png", + "aggregators": ["CoinGecko", "Rubic", "Rango"], + "occurrences": 3 + }, + "0xbd7909318b9ca4ff140b840f69bb310a785d1095": { + "address": "0xbd7909318b9ca4ff140b840f69bb310a785d1095", + "symbol": "GTAN", + "decimals": 9, + "name": "GIANT", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xbd7909318b9ca4ff140b840f69bb310a785d1095.png", + "aggregators": ["PancakeCoinMarketCap", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x9102e0a76a5e2823073ed763a32ba8ca8521b1f3": { + "address": "0x9102e0a76a5e2823073ed763a32ba8ca8521b1f3", + "symbol": "BCHEM", + "decimals": 18, + "name": "BCHEM", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x9102e0a76a5e2823073ed763a32ba8ca8521b1f3.png", + "aggregators": ["CoinGecko", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x9d2144328e1d618f54cd38540f5ee50671f6a208": { + "address": "0x9d2144328e1d618f54cd38540f5ee50671f6a208", + "symbol": "BTCLE", + "decimals": 18, + "name": "Bitcoin Limited Edition ", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x9d2144328e1d618f54cd38540f5ee50671f6a208.png", + "aggregators": ["PancakeCoinMarketCap", "Rubic", "Rango"], + "occurrences": 3 + }, + "0xde6ed03f9706b0a49ff165a09853310c88d687c0": { + "address": "0xde6ed03f9706b0a49ff165a09853310c88d687c0", + "symbol": "DDY", + "decimals": 18, + "name": "AltsDaddy", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xde6ed03f9706b0a49ff165a09853310c88d687c0.png", + "aggregators": ["CoinGecko", "Rubic", "Sonarwatch"], + "occurrences": 3 + }, + "0x64da67a12a46f1ddf337393e2da12ed0a507ad3d": { + "address": "0x64da67a12a46f1ddf337393e2da12ed0a507ad3d", + "symbol": "BNBFROG", + "decimals": 9, + "name": "BNB Frog Inu", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x64da67a12a46f1ddf337393e2da12ed0a507ad3d.png", + "aggregators": ["PancakeCoinMarketCap", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x6e61579c22f9a6da63a33e819f29b6697d2a126e": { + "address": "0x6e61579c22f9a6da63a33e819f29b6697d2a126e", + "symbol": "ROCKETFI", + "decimals": 9, + "name": "RocketFi", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x6e61579c22f9a6da63a33e819f29b6697d2a126e.png", + "aggregators": ["PancakeCoinMarketCap", "Rubic", "Sonarwatch"], + "occurrences": 3 + }, + "0xb1957bdba889686ebde631df970ece6a7571a1b6": { + "address": "0xb1957bdba889686ebde631df970ece6a7571a1b6", + "symbol": "DTG", + "decimals": 9, + "name": "Defi Tiger", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xb1957bdba889686ebde631df970ece6a7571a1b6.png", + "aggregators": ["PancakeCoinMarketCap", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x441f06c76fd62b8a243fcec2fc3b6b4de34e875c": { + "address": "0x441f06c76fd62b8a243fcec2fc3b6b4de34e875c", + "symbol": "FH", + "decimals": 18, + "name": "Fullhouse.gg", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x441f06c76fd62b8a243fcec2fc3b6b4de34e875c.png", + "aggregators": ["CoinGecko", "Rubic", "Sonarwatch"], + "occurrences": 3 + }, + "0x0e4197e42ba77bc2a84627087c1006ab1254fae8": { + "address": "0x0e4197e42ba77bc2a84627087c1006ab1254fae8", + "symbol": "BABYGROKX", + "decimals": 9, + "name": "BabyGrok X", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x0e4197e42ba77bc2a84627087c1006ab1254fae8.png", + "aggregators": ["CoinGecko", "Rubic", "Sonarwatch"], + "occurrences": 3 + }, + "0xd5eeec1a534c35c418b44bb28e4d5a602f1a22de": { + "address": "0xd5eeec1a534c35c418b44bb28e4d5a602f1a22de", + "symbol": "IGT", + "decimals": 18, + "name": "Infinitar Governance Token", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xd5eeec1a534c35c418b44bb28e4d5a602f1a22de.png", + "aggregators": ["CoinGecko", "Rubic", "Rango"], + "occurrences": 3 + }, + "0xf86af2fbcf6a0479b21b1d3a4af3893f63207fe7": { + "address": "0xf86af2fbcf6a0479b21b1d3a4af3893f63207fe7", + "symbol": "GOUT", + "decimals": 18, + "name": "GOUT", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xf86af2fbcf6a0479b21b1d3a4af3893f63207fe7.png", + "aggregators": ["CoinGecko", "Rubic", "Sonarwatch"], + "occurrences": 3 + }, + "0x635d44f246156ed1080cb470877256c847673f19": { + "address": "0x635d44f246156ed1080cb470877256c847673f19", + "symbol": "WBAI", + "decimals": 18, + "name": "WhiteBridge Network", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x635d44f246156ed1080cb470877256c847673f19.png", + "aggregators": ["PancakeExtended", "Rubic", "Sonarwatch"], + "occurrences": 3 + }, + "0xceb24c99579e6140517d59c8dd4f5b36d84ed6de": { + "address": "0xceb24c99579e6140517d59c8dd4f5b36d84ed6de", + "symbol": "PCD ", + "decimals": 18, + "name": "Phecda", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xceb24c99579e6140517d59c8dd4f5b36d84ed6de.png", + "aggregators": ["CoinGecko", "Rubic", "Rango"], + "occurrences": 3 + }, + "0xe8c6a28a9ed7c2b8358d41a7cf679fb5e7ba15a2": { + "address": "0xe8c6a28a9ed7c2b8358d41a7cf679fb5e7ba15a2", + "symbol": "UNIFI", + "decimals": 18, + "name": "UNIFI", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xe8c6a28a9ed7c2b8358d41a7cf679fb5e7ba15a2.png", + "aggregators": ["CoinGecko", "Rubic", "Sonarwatch"], + "occurrences": 3 + }, + "0x5bebf2b9ca7f25983b0cbe2a9e681804da034558": { + "address": "0x5bebf2b9ca7f25983b0cbe2a9e681804da034558", + "symbol": "BABYCHEEMS", + "decimals": 9, + "name": "Baby Cheems", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x5bebf2b9ca7f25983b0cbe2a9e681804da034558.png", + "aggregators": ["CoinGecko", "Rubic", "Rango"], + "occurrences": 3 + }, + "0xdbe3ea3639077a837e767c5d82730254fc933e41": { + "address": "0xdbe3ea3639077a837e767c5d82730254fc933e41", + "symbol": "MLP", + "decimals": 18, + "name": "Matrix Layer Protocol", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xdbe3ea3639077a837e767c5d82730254fc933e41.png", + "aggregators": ["CoinGecko", "Rubic", "Sonarwatch"], + "occurrences": 3 + }, + "0xdea0b8ad5806d8be6ea38ba4e5fc36118808eb04": { + "address": "0xdea0b8ad5806d8be6ea38ba4e5fc36118808eb04", + "symbol": "CNX", + "decimals": 18, + "name": "CNX", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xdea0b8ad5806d8be6ea38ba4e5fc36118808eb04.png", + "aggregators": ["PancakeCoinMarketCap", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x5bfdaa3f7c28b9994b56135403bf1acea02595b0": { + "address": "0x5bfdaa3f7c28b9994b56135403bf1acea02595b0", + "symbol": "COW", + "decimals": 18, + "name": "COW", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x5bfdaa3f7c28b9994b56135403bf1acea02595b0.png", + "aggregators": ["CoinGecko", "Rubic", "Rango"], + "occurrences": 3 + }, + "0xade6057fcafa57d6d51ffa341c64ce4814995995": { + "address": "0xade6057fcafa57d6d51ffa341c64ce4814995995", + "symbol": "BZPR1", + "decimals": 18, + "name": "Backed ZPR1 $ 1-3 Month T-Bill", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xade6057fcafa57d6d51ffa341c64ce4814995995.png", + "aggregators": ["CoinGecko", "Rubic", "Sonarwatch"], + "occurrences": 3 + }, + "0x0f76d32cdccdcbd602a55af23eaf58fd1ee17245": { + "address": "0x0f76d32cdccdcbd602a55af23eaf58fd1ee17245", + "symbol": "BERNA", + "decimals": 18, + "name": "Backed ERNA $ Bond", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x0f76d32cdccdcbd602a55af23eaf58fd1ee17245.png", + "aggregators": ["CoinGecko", "Rubic", "Sonarwatch"], + "occurrences": 3 + }, + "0x40f85d6040df96ea14cd41142bcd244e14cf76f6": { + "address": "0x40f85d6040df96ea14cd41142bcd244e14cf76f6", + "symbol": "USDC.Z", + "decimals": 18, + "name": "USD Coin Bridged ZED20", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x40f85d6040df96ea14cd41142bcd244e14cf76f6.png", + "aggregators": ["CoinGecko", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x6a68abc18806cdf5665e16fca665c4fe3cf1bd13": { + "address": "0x6a68abc18806cdf5665e16fca665c4fe3cf1bd13", + "symbol": "OPULENCE", + "decimals": 18, + "name": "OPULENCE", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x6a68abc18806cdf5665e16fca665c4fe3cf1bd13.png", + "aggregators": ["PancakeCoinGecko", "Rubic", "Sonarwatch"], + "occurrences": 3 + }, + "0x3f95aa88ddbb7d9d484aa3d482bf0a80009c52c9": { + "address": "0x3f95aa88ddbb7d9d484aa3d482bf0a80009c52c9", + "symbol": "BERNX", + "decimals": 18, + "name": "Backed ERNX € Bond", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x3f95aa88ddbb7d9d484aa3d482bf0a80009c52c9.png", + "aggregators": ["CoinGecko", "Rubic", "Sonarwatch"], + "occurrences": 3 + }, + "0x30c60b20c25b2810ca524810467a0c342294fc61": { + "address": "0x30c60b20c25b2810ca524810467a0c342294fc61", + "symbol": "TAIKO", + "decimals": 18, + "name": "Taiko Token", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x30c60b20c25b2810ca524810467a0c342294fc61.png", + "aggregators": ["PancakeExtended", "Rubic", "Rango"], + "occurrences": 3 + }, + "0xd26889f63094ba5a9d32666cdf5ba381acfad6a6": { + "address": "0xd26889f63094ba5a9d32666cdf5ba381acfad6a6", + "symbol": "FNXAI", + "decimals": 18, + "name": "Finanx AI", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xd26889f63094ba5a9d32666cdf5ba381acfad6a6.png", + "aggregators": ["CoinGecko", "Rubic", "Rango"], + "occurrences": 3 + }, + "0xba9425ec55ee0e72216d18e0ad8bbba2553bfb60": { + "address": "0xba9425ec55ee0e72216d18e0ad8bbba2553bfb60", + "symbol": "REUSD", + "decimals": 18, + "name": "REUSD", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xba9425ec55ee0e72216d18e0ad8bbba2553bfb60.png", + "aggregators": ["CoinGecko", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x8b4e28607bdcacbf937f81f29e3dafe7bc1d7c0b": { + "address": "0x8b4e28607bdcacbf937f81f29e3dafe7bc1d7c0b", + "symbol": "STONEUSD", + "decimals": 18, + "name": "StakeStone USD", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x8b4e28607bdcacbf937f81f29e3dafe7bc1d7c0b.png", + "aggregators": ["CoinGecko", "Rubic", "Rango"], + "occurrences": 3 + }, + "0xca30c93b02514f86d5c86a6e375e3a330b435fb5": { + "address": "0xca30c93b02514f86d5c86a6e375e3a330b435fb5", + "symbol": "BIB01", + "decimals": 18, + "name": "Backed IB01 $ Treasury Bond 0-1yr", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xca30c93b02514f86d5c86a6e375e3a330b435fb5.png", + "aggregators": ["CoinGecko", "Rubic", "Sonarwatch"], + "occurrences": 3 + }, + "0x87d00066cf131ff54b72b134a217d5401e5392b6": { + "address": "0x87d00066cf131ff54b72b134a217d5401e5392b6", + "symbol": "PUFFER", + "decimals": 18, + "name": "PUFFER", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x87d00066cf131ff54b72b134a217d5401e5392b6.png", + "aggregators": ["PancakeExtended", "Socket", "Rubic"], + "occurrences": 3 + }, + "0x46deb1af1e93a3e5e9a277dcc4818d9e0ade242d": { + "address": "0x46deb1af1e93a3e5e9a277dcc4818d9e0ade242d", + "symbol": "SKIBIDI", + "decimals": 6, + "name": "Skibidi Dop Dop", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x46deb1af1e93a3e5e9a277dcc4818d9e0ade242d.png", + "aggregators": ["CoinGecko", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x14d72634328c4d03bba184a48081df65f1911279": { + "address": "0x14d72634328c4d03bba184a48081df65f1911279", + "symbol": "VBILL", + "decimals": 6, + "name": "VBILL", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x14d72634328c4d03bba184a48081df65f1911279.png", + "aggregators": ["CoinGecko", "Rubic", "Rango"], + "occurrences": 3 + }, + "0xbe1936a67f503e0eaf2434b0cf9f4e3d7100008a": { + "address": "0xbe1936a67f503e0eaf2434b0cf9f4e3d7100008a", + "symbol": "PROS", + "decimals": 18, + "name": "Prospective", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xbe1936a67f503e0eaf2434b0cf9f4e3d7100008a.png", + "aggregators": ["PancakeCoinMarketCap", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x8e9d4cea39299323fe8eda678cad449718556c4e": { + "address": "0x8e9d4cea39299323fe8eda678cad449718556c4e", + "symbol": "SYRUPUSDT", + "decimals": 6, + "name": "Syrup USDT", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x8e9d4cea39299323fe8eda678cad449718556c4e.png", + "aggregators": ["CoinGecko", "LiFi", "Rubic"], + "occurrences": 3 + }, + "0xa25896b34c9ea0a3da53ca0640bf6b5772e0bf2d": { + "address": "0xa25896b34c9ea0a3da53ca0640bf6b5772e0bf2d", + "symbol": "$AEONODEX", + "decimals": 9, + "name": "AEONODEX", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xa25896b34c9ea0a3da53ca0640bf6b5772e0bf2d.png", + "aggregators": ["PancakeCoinGecko", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x105dd4727c09feace2158ed125fa45382058df6c": { + "address": "0x105dd4727c09feace2158ed125fa45382058df6c", + "symbol": "$CATA", + "decimals": 9, + "name": "CATA BSC", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x105dd4727c09feace2158ed125fa45382058df6c.png", + "aggregators": ["PancakeCoinGecko", "Rubic", "Rango"], + "occurrences": 3 + }, + "0xfce692762e907e80a061c01631d15ba7328eaaaa": { + "address": "0xfce692762e907e80a061c01631d15ba7328eaaaa", + "symbol": "$MONKE", + "decimals": 0, + "name": "Monkecoin", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xfce692762e907e80a061c01631d15ba7328eaaaa.png", + "aggregators": ["PancakeCoinGecko", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x596a1017af27593e0ab371f74e36dc923f3b2c11": { + "address": "0x596a1017af27593e0ab371f74e36dc923f3b2c11", + "symbol": "$NINJAPEPE", + "decimals": 18, + "name": "NinjaPepe", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x596a1017af27593e0ab371f74e36dc923f3b2c11.png", + "aggregators": ["PancakeCoinGecko", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x2a5da6b2e641484b1233e69109ddaaa330551e90": { + "address": "0x2a5da6b2e641484b1233e69109ddaaa330551e90", + "symbol": "$RBET", + "decimals": 18, + "name": "RangerBet", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x2a5da6b2e641484b1233e69109ddaaa330551e90.png", + "aggregators": ["PancakeCoinGecko", "Rubic", "Rango"], + "occurrences": 3 + }, + "0xddd394707fc1af81d98f132825df713dd9bb494e": { + "address": "0xddd394707fc1af81d98f132825df713dd9bb494e", + "symbol": "$SOULB", + "decimals": 18, + "name": "SOULB ID TOKEN", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xddd394707fc1af81d98f132825df713dd9bb494e.png", + "aggregators": ["PancakeCoinGecko", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x4628587cd13d50eef72ec485cdc88f66c0196436": { + "address": "0x4628587cd13d50eef72ec485cdc88f66c0196436", + "symbol": "AET", + "decimals": 18, + "name": "AET", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x4628587cd13d50eef72ec485cdc88f66c0196436.png", + "aggregators": ["PancakeCoinGecko", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x5ee91759f20155c953f29284b7e96d2b05679f95": { + "address": "0x5ee91759f20155c953f29284b7e96d2b05679f95", + "symbol": "AMAR", + "decimals": 18, + "name": "Amar Token", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x5ee91759f20155c953f29284b7e96d2b05679f95.png", + "aggregators": ["PancakeCoinGecko", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x68d806380ce01e994f7583d796d0aea9ab470219": { + "address": "0x68d806380ce01e994f7583d796d0aea9ab470219", + "symbol": "AN", + "decimals": 18, + "name": "AANN ai", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x68d806380ce01e994f7583d796d0aea9ab470219.png", + "aggregators": ["PancakeCoinGecko", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x6db034647c94a73f7f4d6dbeb818cd796551238c": { + "address": "0x6db034647c94a73f7f4d6dbeb818cd796551238c", + "symbol": "ATC", + "decimals": 18, + "name": "Autochain", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x6db034647c94a73f7f4d6dbeb818cd796551238c.png", + "aggregators": ["PancakeCoinGecko", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x46f063d5dcf1378e4ca3dca992450cacf64603eb": { + "address": "0x46f063d5dcf1378e4ca3dca992450cacf64603eb", + "symbol": "B-DAO", + "decimals": 18, + "name": "Box DAO", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x46f063d5dcf1378e4ca3dca992450cacf64603eb.png", + "aggregators": ["PancakeCoinGecko", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x5896c58eb385604c33f4c5f93d547d1d0cc746e8": { + "address": "0x5896c58eb385604c33f4c5f93d547d1d0cc746e8", + "symbol": "BABYGROKCEO", + "decimals": 9, + "name": "Baby Grok CEO", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x5896c58eb385604c33f4c5f93d547d1d0cc746e8.png", + "aggregators": ["PancakeCoinGecko", "Rubic", "Rango"], + "occurrences": 3 + }, + "0xf6d0840e6c21180dc7831edeafaa33292c16a587": { + "address": "0xf6d0840e6c21180dc7831edeafaa33292c16a587", + "symbol": "BART", + "decimals": 18, + "name": "Ballswapper Accelerator Reflection", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xf6d0840e6c21180dc7831edeafaa33292c16a587.png", + "aggregators": ["PancakeCoinGecko", "Rubic", "Rango"], + "occurrences": 3 + }, + "0xf40cb2efc2e015c55da85d23fde18975edbdf99a": { + "address": "0xf40cb2efc2e015c55da85d23fde18975edbdf99a", + "symbol": "BAYE", + "decimals": 18, + "name": "Bayesian", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xf40cb2efc2e015c55da85d23fde18975edbdf99a.png", + "aggregators": ["PancakeCoinGecko", "Rubic", "Rango"], + "occurrences": 3 + }, + "0xb0458283033e5a3f7867f409477f53754b667dcc": { + "address": "0xb0458283033e5a3f7867f409477f53754b667dcc", + "symbol": "BBLURT", + "decimals": 18, + "name": "BBlurt Token", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xb0458283033e5a3f7867f409477f53754b667dcc.png", + "aggregators": ["PancakeCoinGecko", "Rubic", "Rango"], + "occurrences": 3 + }, + "0xe612fd8a8456d7fe1f3a4c93f7db1a620d6dc3d4": { + "address": "0xe612fd8a8456d7fe1f3a4c93f7db1a620d6dc3d4", + "symbol": "BCHEC", + "decimals": 18, + "name": "Bitchemical", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xe612fd8a8456d7fe1f3a4c93f7db1a620d6dc3d4.png", + "aggregators": ["PancakeCoinGecko", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x684eafeb7e5be043842d892980695c68e15152b7": { + "address": "0x684eafeb7e5be043842d892980695c68e15152b7", + "symbol": "BEET", + "decimals": 18, + "name": "Flappybee", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x684eafeb7e5be043842d892980695c68e15152b7.png", + "aggregators": ["PancakeCoinGecko", "Rubic", "Rango"], + "occurrences": 3 + }, + "0xfe1d8816a1c4431f14cdf1d20e3e0c3812dce3e0": { + "address": "0xfe1d8816a1c4431f14cdf1d20e3e0c3812dce3e0", + "symbol": "PEPEBNBS", + "decimals": 18, + "name": "PEPEBNBS", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xfe1d8816a1c4431f14cdf1d20e3e0c3812dce3e0.png", + "aggregators": ["PancakeCoinGecko", "Rubic", "Sonarwatch"], + "occurrences": 3 + }, + "0x850606b482a9d5e1be25a89d988a7eb05b613cc2": { + "address": "0x850606b482a9d5e1be25a89d988a7eb05b613cc2", + "symbol": "BNBTIGER", + "decimals": 8, + "name": "Bnb Tiger Inu", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x850606b482a9d5e1be25a89d988a7eb05b613cc2.png", + "aggregators": ["PancakeCoinGecko", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x9792f67b919d0694edfcb69294872e392bfbb0f9": { + "address": "0x9792f67b919d0694edfcb69294872e392bfbb0f9", + "symbol": "BOTC", + "decimals": 18, + "name": "Botccoin Chain", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x9792f67b919d0694edfcb69294872e392bfbb0f9.png", + "aggregators": ["PancakeCoinGecko", "Rubic", "Rango"], + "occurrences": 3 + }, + "0xd7f64df62b984547c03dd7ad161043f45a744a77": { + "address": "0xd7f64df62b984547c03dd7ad161043f45a744a77", + "symbol": "BSH", + "decimals": 6, + "name": "Banana Superhero", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xd7f64df62b984547c03dd7ad161043f45a744a77.png", + "aggregators": ["PancakeCoinGecko", "Rubic", "Rango"], + "occurrences": 3 + }, + "0xb236b181590b15ae841976f036cff64c9a1f8b9d": { + "address": "0xb236b181590b15ae841976f036cff64c9a1f8b9d", + "symbol": "BW", + "decimals": 18, + "name": "BLWise", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xb236b181590b15ae841976f036cff64c9a1f8b9d.png", + "aggregators": ["PancakeCoinGecko", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x6e64fcf15be3eb71c3d42acf44d85bb119b2d98b": { + "address": "0x6e64fcf15be3eb71c3d42acf44d85bb119b2d98b", + "symbol": "CBON", + "decimals": 18, + "name": "CADINU Bonus", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x6e64fcf15be3eb71c3d42acf44d85bb119b2d98b.png", + "aggregators": ["PancakeCoinGecko", "Rubic", "Rango"], + "occurrences": 3 + }, + "0xf86d4743fc1de2a6bef2d733158edb9b72bd16ba": { + "address": "0xf86d4743fc1de2a6bef2d733158edb9b72bd16ba", + "symbol": "CTO", + "decimals": 9, + "name": "Chief Troll Officer", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xf86d4743fc1de2a6bef2d733158edb9b72bd16ba.png", + "aggregators": ["PancakeCoinGecko", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x3a7bea5d56bbcdc599827444786c370cf4d62dfa": { + "address": "0x3a7bea5d56bbcdc599827444786c370cf4d62dfa", + "symbol": "CTUS", + "decimals": 9, + "name": "Contractus", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x3a7bea5d56bbcdc599827444786c370cf4d62dfa.png", + "aggregators": ["PancakeCoinGecko", "Rubic", "Rango"], + "occurrences": 3 + }, + "0xe6f786f4a2a82cab3fdef8d6a45a6c6ee90322cf": { + "address": "0xe6f786f4a2a82cab3fdef8d6a45a6c6ee90322cf", + "symbol": "CZPW", + "decimals": 18, + "name": "CZPOW", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xe6f786f4a2a82cab3fdef8d6a45a6c6ee90322cf.png", + "aggregators": ["PancakeCoinGecko", "Rubic", "Rango"], + "occurrences": 3 + }, + "0xf6b53b4c982b9b7e87af9dc5c66c85117a5df303": { + "address": "0xf6b53b4c982b9b7e87af9dc5c66c85117a5df303", + "symbol": "DB", + "decimals": 8, + "name": "Denarius Binance Token", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xf6b53b4c982b9b7e87af9dc5c66c85117a5df303.png", + "aggregators": ["PancakeCoinGecko", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x2528a195d09eea15e07bb9cbbce62bedbb5ef721": { + "address": "0x2528a195d09eea15e07bb9cbbce62bedbb5ef721", + "symbol": "DGW", + "decimals": 18, + "name": "DegenWin", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x2528a195d09eea15e07bb9cbbce62bedbb5ef721.png", + "aggregators": ["PancakeCoinGecko", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x2574646118b5694faafcb9dcbfdfc1206c9b6936": { + "address": "0x2574646118b5694faafcb9dcbfdfc1206c9b6936", + "symbol": "EGOLD", + "decimals": 18, + "name": "ARYZE eGold", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x2574646118b5694faafcb9dcbfdfc1206c9b6936.png", + "aggregators": ["PancakeCoinGecko", "Rubic", "Rango"], + "occurrences": 3 + }, + "0xaf55e53cfa099a59aa30554fe106f33c47564a25": { + "address": "0xaf55e53cfa099a59aa30554fe106f33c47564a25", + "symbol": "EMAGIC", + "decimals": 18, + "name": "ElvishMagic 2.0", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xaf55e53cfa099a59aa30554fe106f33c47564a25.png", + "aggregators": ["PancakeCoinMarketCap", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x06f96469fd2b81f43e26e061635177b66ac45280": { + "address": "0x06f96469fd2b81f43e26e061635177b66ac45280", + "symbol": "ENSUE", + "decimals": 18, + "name": "Ensue", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x06f96469fd2b81f43e26e061635177b66ac45280.png", + "aggregators": ["PancakeCoinGecko", "Rubic", "Rango"], + "occurrences": 3 + }, + "0xf6c2d8d863a325846ac4f37d2c4432f6683ae442": { + "address": "0xf6c2d8d863a325846ac4f37d2c4432f6683ae442", + "symbol": "FAST", + "decimals": 18, + "name": "Fastswap BSC ", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xf6c2d8d863a325846ac4f37d2c4432f6683ae442.png", + "aggregators": ["PancakeCoinGecko", "Rubic", "Rango"], + "occurrences": 3 + }, + "0xc8316fa07150e254281331a84b2198594b005e25": { + "address": "0xc8316fa07150e254281331a84b2198594b005e25", + "symbol": "FBT", + "decimals": 18, + "name": "Fitburn FBT", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xc8316fa07150e254281331a84b2198594b005e25.png", + "aggregators": ["PancakeCoinGecko", "Rubic", "Rango"], + "occurrences": 3 + }, + "0xedfee2f15ce844cbcf764a05fb7c911e2d999999": { + "address": "0xedfee2f15ce844cbcf764a05fb7c911e2d999999", + "symbol": "FIERDRAGON", + "decimals": 18, + "name": "FierDragon", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xedfee2f15ce844cbcf764a05fb7c911e2d999999.png", + "aggregators": ["PancakeCoinGecko", "Rubic", "Rango"], + "occurrences": 3 + }, + "0xaed361021d6fb2ef2ce65049e7b0e814ce5fa2c1": { + "address": "0xaed361021d6fb2ef2ce65049e7b0e814ce5fa2c1", + "symbol": "FINX", + "decimals": 18, + "name": "FINX", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xaed361021d6fb2ef2ce65049e7b0e814ce5fa2c1.png", + "aggregators": ["PancakeCoinGecko", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x297b695bef42588b15e25f45727a6012738503af": { + "address": "0x297b695bef42588b15e25f45727a6012738503af", + "symbol": "FT", + "decimals": 18, + "name": "FUEL TOKEN", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x297b695bef42588b15e25f45727a6012738503af.png", + "aggregators": ["PancakeCoinGecko", "Rubic", "Rango"], + "occurrences": 3 + }, + "0xde4addcc213f6750faabdad59c00a2eb57352737": { + "address": "0xde4addcc213f6750faabdad59c00a2eb57352737", + "symbol": "GAC", + "decimals": 18, + "name": "Greenart Coin", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xde4addcc213f6750faabdad59c00a2eb57352737.png", + "aggregators": ["PancakeCoinGecko", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x431d14283a0b9e1acb7bb28d883f4a7b99f9606c": { + "address": "0x431d14283a0b9e1acb7bb28d883f4a7b99f9606c", + "symbol": "GACH", + "decimals": 18, + "name": "Game Changer", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x431d14283a0b9e1acb7bb28d883f4a7b99f9606c.png", + "aggregators": ["PancakeCoinGecko", "Rubic", "Rango"], + "occurrences": 3 + }, + "0xb265cba9bd6e34fa412bd8b4c1514c902c0e7e7d": { + "address": "0xb265cba9bd6e34fa412bd8b4c1514c902c0e7e7d", + "symbol": "GIGGLE", + "decimals": 18, + "name": "Giggle Academy", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xb265cba9bd6e34fa412bd8b4c1514c902c0e7e7d.png", + "aggregators": ["PancakeCoinGecko", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x25a2b2327e9c787e138708b24df58bce4d9ab3f6": { + "address": "0x25a2b2327e9c787e138708b24df58bce4d9ab3f6", + "symbol": "GLD", + "decimals": 18, + "name": "GoldenCoin", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x25a2b2327e9c787e138708b24df58bce4d9ab3f6.png", + "aggregators": ["PancakeCoinGecko", "Rubic", "Rango"], + "occurrences": 3 + }, + "0xe5c85b60ff243cfdb067be4078e477ac04b594e9": { + "address": "0xe5c85b60ff243cfdb067be4078e477ac04b594e9", + "symbol": "GM", + "decimals": 8, + "name": "GhostMarket", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xe5c85b60ff243cfdb067be4078e477ac04b594e9.png", + "aggregators": ["PancakeCoinGecko", "Rubic", "Rango"], + "occurrences": 3 + }, + "0xa8de5067fa003febb7a006589dc7fe097ce5e2f9": { + "address": "0xa8de5067fa003febb7a006589dc7fe097ce5e2f9", + "symbol": "GORILLA", + "decimals": 9, + "name": "GORILLA", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xa8de5067fa003febb7a006589dc7fe097ce5e2f9.png", + "aggregators": ["PancakeCoinGecko", "Rubic", "Rango"], + "occurrences": 3 + }, + "0xb470d3bc05f88022bd151346591d51ac12b1eeb6": { + "address": "0xb470d3bc05f88022bd151346591d51ac12b1eeb6", + "symbol": "HM", + "decimals": 9, + "name": "HorizonMarketing", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xb470d3bc05f88022bd151346591d51ac12b1eeb6.png", + "aggregators": ["PancakeCoinGecko", "Rubic", "Rango"], + "occurrences": 3 + }, + "0xb2c1528a5ea04528ac6a3e481d38c19003cb71d4": { + "address": "0xb2c1528a5ea04528ac6a3e481d38c19003cb71d4", + "symbol": "IMO", + "decimals": 18, + "name": "IMonster", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xb2c1528a5ea04528ac6a3e481d38c19003cb71d4.png", + "aggregators": ["PancakeCoinGecko", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x535154b23670a8c96e68230cd59e7754884fd67e": { + "address": "0x535154b23670a8c96e68230cd59e7754884fd67e", + "symbol": "IN", + "decimals": 18, + "name": "INVESTIVE", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x535154b23670a8c96e68230cd59e7754884fd67e.png", + "aggregators": ["PancakeCoinGecko", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x0c35c6d7c7a21f3299285840710437c50f608b19": { + "address": "0x0c35c6d7c7a21f3299285840710437c50f608b19", + "symbol": "ION", + "decimals": 8, + "name": "ZIY N SAS", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x0c35c6d7c7a21f3299285840710437c50f608b19.png", + "aggregators": ["PancakeCoinGecko", "Rubic", "Rango"], + "occurrences": 3 + }, + "0xbfc83596b4da935a0d89b6ff49f46b3ef563fafd": { + "address": "0xbfc83596b4da935a0d89b6ff49f46b3ef563fafd", + "symbol": "IRBIS", + "decimals": 18, + "name": "Snow Leopard IRBIS", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xbfc83596b4da935a0d89b6ff49f46b3ef563fafd.png", + "aggregators": ["PancakeCoinGecko", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x471ea49dd8e60e697f4cac262b5fafcc307506e4": { + "address": "0x471ea49dd8e60e697f4cac262b5fafcc307506e4", + "symbol": "KOM", + "decimals": 8, + "name": "Kommunitas", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x471ea49dd8e60e697f4cac262b5fafcc307506e4.png", + "aggregators": ["PancakeCoinGecko", "Rubic", "Rango"], + "occurrences": 3 + }, + "0xff022329c5ff7d0aee3ba099a0878789aecd090d": { + "address": "0xff022329c5ff7d0aee3ba099a0878789aecd090d", + "symbol": "KUNI", + "decimals": 18, + "name": "Kuni", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xff022329c5ff7d0aee3ba099a0878789aecd090d.png", + "aggregators": ["PancakeCoinGecko", "Rubic", "Rango"], + "occurrences": 3 + }, + "0xa8a33e365d5a03c94c3258a10dd5d6dfe686941b": { + "address": "0xa8a33e365d5a03c94c3258a10dd5d6dfe686941b", + "symbol": "KY", + "decimals": 18, + "name": "Kaoya Token", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xa8a33e365d5a03c94c3258a10dd5d6dfe686941b.png", + "aggregators": ["PancakeCoinGecko", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x052775cf897b3ec894f26b8d801c514123c305d1": { + "address": "0x052775cf897b3ec894f26b8d801c514123c305d1", + "symbol": "LAR", + "decimals": 18, + "name": "LaRace Governance Token", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x052775cf897b3ec894f26b8d801c514123c305d1.png", + "aggregators": ["PancakeCoinGecko", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x92f038ea40164fc622f622150ad3ff9daa335192": { + "address": "0x92f038ea40164fc622f622150ad3ff9daa335192", + "symbol": "LCOM", + "decimals": 18, + "name": "LCOM OLD ", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x92f038ea40164fc622f622150ad3ff9daa335192.png", + "aggregators": ["PancakeCoinGecko", "Rubic", "Rango"], + "occurrences": 3 + }, + "0xfadc157f0d98e3051cfad0653e720e5889db2b92": { + "address": "0xfadc157f0d98e3051cfad0653e720e5889db2b92", + "symbol": "LIFC", + "decimals": 18, + "name": "Life Coin", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xfadc157f0d98e3051cfad0653e720e5889db2b92.png", + "aggregators": ["PancakeCoinGecko", "Rubic", "Rango"], + "occurrences": 3 + }, + "0xa5d6a00d4d16229345f7f4b3a38db1752c3aa09c": { + "address": "0xa5d6a00d4d16229345f7f4b3a38db1752c3aa09c", + "symbol": "LORDZ", + "decimals": 9, + "name": "MemeLordz", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xa5d6a00d4d16229345f7f4b3a38db1752c3aa09c.png", + "aggregators": ["PancakeCoinGecko", "Rubic", "Rango"], + "occurrences": 3 + }, + "0xb2a3ff23bc36b962ca5f2ca8fef118ef7f83c152": { + "address": "0xb2a3ff23bc36b962ca5f2ca8fef118ef7f83c152", + "symbol": "MDN", + "decimals": 18, + "name": "Maidaan", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xb2a3ff23bc36b962ca5f2ca8fef118ef7f83c152.png", + "aggregators": ["PancakeCoinGecko", "Rubic", "Rango"], + "occurrences": 3 + }, + "0xfb52370e0fcac5bfca44b4e6c09a97be1875605f": { + "address": "0xfb52370e0fcac5bfca44b4e6c09a97be1875605f", + "symbol": "METABOT", + "decimals": 18, + "name": "MetaBot", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xfb52370e0fcac5bfca44b4e6c09a97be1875605f.png", + "aggregators": ["PancakeCoinGecko", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x10adf50e15611d5a4de3bd21f0db7f3491a8ae0f": { + "address": "0x10adf50e15611d5a4de3bd21f0db7f3491a8ae0f", + "symbol": "MNTG", + "decimals": 18, + "name": "Monetas OLD ", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x10adf50e15611d5a4de3bd21f0db7f3491a8ae0f.png", + "aggregators": ["PancakeCoinGecko", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x6e7573e492f31107ef98029276922854e919ca28": { + "address": "0x6e7573e492f31107ef98029276922854e919ca28", + "symbol": "MSC", + "decimals": 18, + "name": "Matrix SmartChain", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x6e7573e492f31107ef98029276922854e919ca28.png", + "aggregators": ["PancakeCoinGecko", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x2b168f6beeaa101aaf414f3320f2fdfdc9fdf04b": { + "address": "0x2b168f6beeaa101aaf414f3320f2fdfdc9fdf04b", + "symbol": "PCH", + "decimals": 6, + "name": "PigCoinHero", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x2b168f6beeaa101aaf414f3320f2fdfdc9fdf04b.png", + "aggregators": ["PancakeCoinGecko", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x9032e5689038332d0315228a27fb3b6517b088bb": { + "address": "0x9032e5689038332d0315228a27fb3b6517b088bb", + "symbol": "PINKNINJA", + "decimals": 6, + "name": "PinkNinja", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x9032e5689038332d0315228a27fb3b6517b088bb.png", + "aggregators": ["PancakeCoinGecko", "Rubic", "Rango"], + "occurrences": 3 + }, + "0xea4821632b139b7f08e37533d8152d50976618c6": { + "address": "0xea4821632b139b7f08e37533d8152d50976618c6", + "symbol": "RUG", + "decimals": 18, + "name": "Rug", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xea4821632b139b7f08e37533d8152d50976618c6.png", + "aggregators": ["PancakeCoinGecko", "Rubic", "Rango"], + "occurrences": 3 + }, + "0xb0a1c87b890fe171371f81a59f7ed4636e82595d": { + "address": "0xb0a1c87b890fe171371f81a59f7ed4636e82595d", + "symbol": "RWX", + "decimals": 18, + "name": "RealWorldX", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xb0a1c87b890fe171371f81a59f7ed4636e82595d.png", + "aggregators": ["PancakeCoinGecko", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x640bb7b0716a3c58b29f83a10e0b4b51580693d3": { + "address": "0x640bb7b0716a3c58b29f83a10e0b4b51580693d3", + "symbol": "RYZE", + "decimals": 18, + "name": "ARYZE", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x640bb7b0716a3c58b29f83a10e0b4b51580693d3.png", + "aggregators": ["PancakeCoinGecko", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x708baac4b235d3f62bd18e58c0594b8b20b2ed5b": { + "address": "0x708baac4b235d3f62bd18e58c0594b8b20b2ed5b", + "symbol": "SATO", + "decimals": 18, + "name": "Satoshi Finance", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x708baac4b235d3f62bd18e58c0594b8b20b2ed5b.png", + "aggregators": ["PancakeCoinGecko", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x1b01a1ae8f233fd3d39fff9825c74b05caa84a7d": { + "address": "0x1b01a1ae8f233fd3d39fff9825c74b05caa84a7d", + "symbol": "SHREKAI", + "decimals": 6, + "name": "Shrek AI", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x1b01a1ae8f233fd3d39fff9825c74b05caa84a7d.png", + "aggregators": ["PancakeCoinGecko", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x8ae8663cd26d58bf51ccd78cd95cca3fda1690de": { + "address": "0x8ae8663cd26d58bf51ccd78cd95cca3fda1690de", + "symbol": "SINDI", + "decimals": 18, + "name": "SINDI", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x8ae8663cd26d58bf51ccd78cd95cca3fda1690de.png", + "aggregators": ["PancakeCoinGecko", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x1123e16abea3a59e16d2b5614668481f7d15a706": { + "address": "0x1123e16abea3a59e16d2b5614668481f7d15a706", + "symbol": "SLM", + "decimals": 18, + "name": "SLM Games", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x1123e16abea3a59e16d2b5614668481f7d15a706.png", + "aggregators": ["PancakeCoinGecko", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x16b3e050e9e2f0ac4f1bea1b3e4fdc43d7f062dd": { + "address": "0x16b3e050e9e2f0ac4f1bea1b3e4fdc43d7f062dd", + "symbol": "SMBR", + "decimals": 9, + "name": "Sombra", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x16b3e050e9e2f0ac4f1bea1b3e4fdc43d7f062dd.png", + "aggregators": ["PancakeCoinGecko", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x24ea2693e6af2e732154fc8c8e3e8aca23a4ef22": { + "address": "0x24ea2693e6af2e732154fc8c8e3e8aca23a4ef22", + "symbol": "SMT", + "decimals": 18, + "name": "Starmine", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x24ea2693e6af2e732154fc8c8e3e8aca23a4ef22.png", + "aggregators": ["PancakeCoinGecko", "Rubic", "Rango"], + "occurrences": 3 + }, + "0xb4ebc6fd70a852d052163f25949c70fb9506d6a0": { + "address": "0xb4ebc6fd70a852d052163f25949c70fb9506d6a0", + "symbol": "SOCAP", + "decimals": 18, + "name": "Social Capitalism", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xb4ebc6fd70a852d052163f25949c70fb9506d6a0.png", + "aggregators": ["PancakeCoinGecko", "Rubic", "Rango"], + "occurrences": 3 + }, + "0xf8f1cecc95a3441725243350172269299ae133b8": { + "address": "0xf8f1cecc95a3441725243350172269299ae133b8", + "symbol": "SQD", + "decimals": 6, + "name": "SQUARED", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xf8f1cecc95a3441725243350172269299ae133b8.png", + "aggregators": ["PancakeCoinGecko", "Rubic", "Rango"], + "occurrences": 3 + }, + "0xd0e98827d675a3231c2ea69d1f3ed12270df1435": { + "address": "0xd0e98827d675a3231c2ea69d1f3ed12270df1435", + "symbol": "SRBP", + "decimals": 18, + "name": "Super Rare Ball Portion", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xd0e98827d675a3231c2ea69d1f3ed12270df1435.png", + "aggregators": ["PancakeCoinGecko", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x127415d59e508c70a3990175c8267eb9c49b84fc": { + "address": "0x127415d59e508c70a3990175c8267eb9c49b84fc", + "symbol": "STAY", + "decimals": 18, + "name": "STAY", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x127415d59e508c70a3990175c8267eb9c49b84fc.png", + "aggregators": ["PancakeCoinGecko", "Rubic", "Rango"], + "occurrences": 3 + }, + "0xa35b5c783117e107644056f5d39faa468e9d8d47": { + "address": "0xa35b5c783117e107644056f5d39faa468e9d8d47", + "symbol": "STK", + "decimals": 18, + "name": "STARCK", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xa35b5c783117e107644056f5d39faa468e9d8d47.png", + "aggregators": ["PancakeCoinGecko", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x9334e37fad7c41cd6c9565bff3a97ce31cee52a3": { + "address": "0x9334e37fad7c41cd6c9565bff3a97ce31cee52a3", + "symbol": "SWYCH", + "decimals": 18, + "name": "Swych", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x9334e37fad7c41cd6c9565bff3a97ce31cee52a3.png", + "aggregators": ["PancakeCoinGecko", "Rubic", "Rango"], + "occurrences": 3 + }, + "0xca01f271694224d9b82084c40590dbc75241796b": { + "address": "0xca01f271694224d9b82084c40590dbc75241796b", + "symbol": "SWYP", + "decimals": 18, + "name": "SWYP Foundation", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xca01f271694224d9b82084c40590dbc75241796b.png", + "aggregators": ["PancakeCoinGecko", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x1354e1c028ad93ed9992ee3bfd3ee5608489439c": { + "address": "0x1354e1c028ad93ed9992ee3bfd3ee5608489439c", + "symbol": "TFBX", + "decimals": 18, + "name": "Truefeedback", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x1354e1c028ad93ed9992ee3bfd3ee5608489439c.png", + "aggregators": ["PancakeCoinGecko", "Rubic", "Rango"], + "occurrences": 3 + }, + "0xd60c9d31fcd3a70b6711c76012894d026f6ffa5f": { + "address": "0xd60c9d31fcd3a70b6711c76012894d026f6ffa5f", + "symbol": "TGMT", + "decimals": 18, + "name": "Tiger Meme Token", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xd60c9d31fcd3a70b6711c76012894d026f6ffa5f.png", + "aggregators": ["PancakeCoinGecko", "Rubic", "Rango"], + "occurrences": 3 + }, + "0xfd435840ed3a4ea061ea3a4cb3c8617823ee2049": { + "address": "0xfd435840ed3a4ea061ea3a4cb3c8617823ee2049", + "symbol": "TIF", + "decimals": 18, + "name": "This Is Fine", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xfd435840ed3a4ea061ea3a4cb3c8617823ee2049.png", + "aggregators": ["PancakeCoinGecko", "Rubic", "Rango"], + "occurrences": 3 + }, + "0xc9f8c639135fc1412f011cc84810635d6bbca19d": { + "address": "0xc9f8c639135fc1412f011cc84810635d6bbca19d", + "symbol": "TLIFE", + "decimals": 8, + "name": "TLifeCoin", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xc9f8c639135fc1412f011cc84810635d6bbca19d.png", + "aggregators": ["PancakeCoinGecko", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x75adb3f6d788c344c409278263f70c5b60feb33a": { + "address": "0x75adb3f6d788c344c409278263f70c5b60feb33a", + "symbol": "TUNA", + "decimals": 18, + "name": "Fishing Tuna", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x75adb3f6d788c344c409278263f70c5b60feb33a.png", + "aggregators": ["PancakeCoinGecko", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x13a08a0d90b84a099a7914012aa8628da696769a": { + "address": "0x13a08a0d90b84a099a7914012aa8628da696769a", + "symbol": "UMAREUM", + "decimals": 18, + "name": "UMAREUM", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x13a08a0d90b84a099a7914012aa8628da696769a.png", + "aggregators": ["PancakeCoinGecko", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x6aaed0beca7687f40b8af1272717a1c1b6a27bf3": { + "address": "0x6aaed0beca7687f40b8af1272717a1c1b6a27bf3", + "symbol": "VNPT", + "decimals": 18, + "name": "Vitruvian Nexus Protocol Tokens", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x6aaed0beca7687f40b8af1272717a1c1b6a27bf3.png", + "aggregators": ["PancakeCoinGecko", "Rubic", "Rango"], + "occurrences": 3 + }, + "0xdad237477643b5bf0bea14616747ba00d0212f8c": { + "address": "0xdad237477643b5bf0bea14616747ba00d0212f8c", + "symbol": "WATER", + "decimals": 18, + "name": "WATER", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xdad237477643b5bf0bea14616747ba00d0212f8c.png", + "aggregators": ["PancakeCoinGecko", "Rubic", "Rango"], + "occurrences": 3 + }, + "0xad9a1e7b34da8a17dec7328b151a4d3627f21d6b": { + "address": "0xad9a1e7b34da8a17dec7328b151a4d3627f21d6b", + "symbol": "WLD", + "decimals": 18, + "name": "WiLD", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xad9a1e7b34da8a17dec7328b151a4d3627f21d6b.png", + "aggregators": ["PancakeCoinGecko", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x12996c7b23c4012149bf9f5663ff9aa08a9cf2e4": { + "address": "0x12996c7b23c4012149bf9f5663ff9aa08a9cf2e4", + "symbol": "WSH", + "decimals": 18, + "name": "White Yorkshire", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x12996c7b23c4012149bf9f5663ff9aa08a9cf2e4.png", + "aggregators": ["PancakeCoinGecko", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x5587b8e1cfc8ed45a68aeaddcae001251a880cd0": { + "address": "0x5587b8e1cfc8ed45a68aeaddcae001251a880cd0", + "symbol": "ZKEVM", + "decimals": 18, + "name": "zkEVM Chain", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x5587b8e1cfc8ed45a68aeaddcae001251a880cd0.png", + "aggregators": ["PancakeCoinGecko", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x63d0761ab9705ce0af64e78664a64e550cc53b92": { + "address": "0x63d0761ab9705ce0af64e78664a64e550cc53b92", + "symbol": "ZKGAP", + "decimals": 18, + "name": "ZKGAP", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x63d0761ab9705ce0af64e78664a64e550cc53b92.png", + "aggregators": ["PancakeCoinGecko", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x2a49840ba994486dd3ceb93e1124308f7226f219": { + "address": "0x2a49840ba994486dd3ceb93e1124308f7226f219", + "symbol": "GARFIELD", + "decimals": 18, + "name": "Garfield", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x2a49840ba994486dd3ceb93e1124308f7226f219.png", + "aggregators": ["PancakeCoinMarketCap", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x3e61c7fb137765e7cfcc4399d2d7d5bc1838d6b1": { + "address": "0x3e61c7fb137765e7cfcc4399d2d7d5bc1838d6b1", + "symbol": "$MAXX", + "decimals": 18, + "name": "Maxx", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x3e61c7fb137765e7cfcc4399d2d7d5bc1838d6b1.png", + "aggregators": ["PancakeCoinMarketCap", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x4477b28e8b797ebaebd2539bb24290fdfcc27807": { + "address": "0x4477b28e8b797ebaebd2539bb24290fdfcc27807", + "symbol": "$RFG", + "decimals": 9, + "name": "$RFG", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x4477b28e8b797ebaebd2539bb24290fdfcc27807.png", + "aggregators": ["PancakeCoinMarketCap", "Rubic", "Rango"], + "occurrences": 3 + }, + "0xb27607d439751555003506455dd9e763a53e5b1d": { + "address": "0xb27607d439751555003506455dd9e763a53e5b1d", + "symbol": "TIMESERIES", + "decimals": 9, + "name": "Timeseries AI", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xb27607d439751555003506455dd9e763a53e5b1d.png", + "aggregators": ["PancakeCoinMarketCap", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x768ed2e8b05e3c1fd8361f1ba769750e108d7af4": { + "address": "0x768ed2e8b05e3c1fd8361f1ba769750e108d7af4", + "symbol": "VTR", + "decimals": 18, + "name": "Virtual Trader", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x768ed2e8b05e3c1fd8361f1ba769750e108d7af4.png", + "aggregators": ["PancakeCoinMarketCap", "Rubic", "Rango"], + "occurrences": 3 + }, + "0xed0353560c43f3e0336d197e4081c81e1015dd51": { + "address": "0xed0353560c43f3e0336d197e4081c81e1015dd51", + "symbol": "3CEO", + "decimals": 18, + "name": "FLOKI SHIBA PEPE CEO", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xed0353560c43f3e0336d197e4081c81e1015dd51.png", + "aggregators": ["PancakeCoinMarketCap", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x6c5fe6e99d2484db7e4bf34f365aba42d0e4dc20": { + "address": "0x6c5fe6e99d2484db7e4bf34f365aba42d0e4dc20", + "symbol": "ABS", + "decimals": 18, + "name": "Absorber", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x6c5fe6e99d2484db7e4bf34f365aba42d0e4dc20.png", + "aggregators": ["PancakeCoinMarketCap", "TrustWallet", "Rubic"], + "occurrences": 3 + }, + "0xc7ad2ce38f208eed77a368613c62062fce88f125": { + "address": "0xc7ad2ce38f208eed77a368613c62062fce88f125", + "symbol": "AER", + "decimals": 9, + "name": "Aerdrop", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xc7ad2ce38f208eed77a368613c62062fce88f125.png", + "aggregators": ["PancakeCoinMarketCap", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x2aa7e601a67d9c57bada24e186632539663b4945": { + "address": "0x2aa7e601a67d9c57bada24e186632539663b4945", + "symbol": "AET", + "decimals": 18, + "name": "AET", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x2aa7e601a67d9c57bada24e186632539663b4945.png", + "aggregators": ["PancakeCoinMarketCap", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x3548e7c2af658957692ec0397eed431e85bf952b": { + "address": "0x3548e7c2af658957692ec0397eed431e85bf952b", + "symbol": "AI", + "decimals": 9, + "name": "GPT AI", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x3548e7c2af658957692ec0397eed431e85bf952b.png", + "aggregators": ["PancakeCoinMarketCap", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x0cd5c0e24a29225b2e0eae25c3ab8f62ef70df9d": { + "address": "0x0cd5c0e24a29225b2e0eae25c3ab8f62ef70df9d", + "symbol": "AIFLOKI", + "decimals": 9, + "name": "AI Floki", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x0cd5c0e24a29225b2e0eae25c3ab8f62ef70df9d.png", + "aggregators": ["PancakeCoinMarketCap", "Rubic", "Rango"], + "occurrences": 3 + }, + "0xeb05ac86959725f9e7284cf67b052ba82aeb446e": { + "address": "0xeb05ac86959725f9e7284cf67b052ba82aeb446e", + "symbol": "AIGPT", + "decimals": 18, + "name": "All In GPT", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xeb05ac86959725f9e7284cf67b052ba82aeb446e.png", + "aggregators": ["PancakeCoinMarketCap", "Rubic", "Rango"], + "occurrences": 3 + }, + "0xa2214039c2ccb9b86d351000ba2f126f45ce44a4": { + "address": "0xa2214039c2ccb9b86d351000ba2f126f45ce44a4", + "symbol": "ALONMARS", + "decimals": 18, + "name": "AIon Mars", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xa2214039c2ccb9b86d351000ba2f126f45ce44a4.png", + "aggregators": ["PancakeCoinMarketCap", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x08080b4da7857e523453b140af3ff7277f81bb26": { + "address": "0x08080b4da7857e523453b140af3ff7277f81bb26", + "symbol": "AITK", + "decimals": 6, + "name": "AITK", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x08080b4da7857e523453b140af3ff7277f81bb26.png", + "aggregators": ["PancakeCoinMarketCap", "Rubic", "Rango"], + "occurrences": 3 + }, + "0xfe2f3580856376377c14e2287fa15bcb703e5fb5": { + "address": "0xfe2f3580856376377c14e2287fa15bcb703e5fb5", + "symbol": "ALT", + "decimals": 9, + "name": "Alphabet", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xfe2f3580856376377c14e2287fa15bcb703e5fb5.png", + "aggregators": ["PancakeCoinMarketCap", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x1d84850c9716c5130b114f0795a4552036b55bd4": { + "address": "0x1d84850c9716c5130b114f0795a4552036b55bd4", + "symbol": "ANB", + "decimals": 18, + "name": "Anubit", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x1d84850c9716c5130b114f0795a4552036b55bd4.png", + "aggregators": ["PancakeCoinMarketCap", "Rubic", "Rango"], + "occurrences": 3 + }, + "0xa1943bc4a417ffd2e9e11a97383fa3f9548291c3": { + "address": "0xa1943bc4a417ffd2e9e11a97383fa3f9548291c3", + "symbol": "API", + "decimals": 9, + "name": "API", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xa1943bc4a417ffd2e9e11a97383fa3f9548291c3.png", + "aggregators": ["PancakeCoinMarketCap", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x2e8138054d64917703af28d81629499318a047fa": { + "address": "0x2e8138054d64917703af28d81629499318a047fa", + "symbol": "APX", + "decimals": 18, + "name": "APX", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x2e8138054d64917703af28d81629499318a047fa.png", + "aggregators": ["PancakeCoinMarketCap", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x888ed27c3ab248868c29dabe3d1b3d7cc5c89c5b": { + "address": "0x888ed27c3ab248868c29dabe3d1b3d7cc5c89c5b", + "symbol": "ARCS", + "decimals": 18, + "name": "Arbitrum Charts", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x888ed27c3ab248868c29dabe3d1b3d7cc5c89c5b.png", + "aggregators": ["PancakeCoinMarketCap", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x48a356df5140ed37034afada32d03b74d4271d6a": { + "address": "0x48a356df5140ed37034afada32d03b74d4271d6a", + "symbol": "ARMOUR", + "decimals": 18, + "name": "Armour Wallet", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x48a356df5140ed37034afada32d03b74d4271d6a.png", + "aggregators": ["PancakeCoinMarketCap", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x8f2588f8627107b233d65c7b65c93c17ac11c871": { + "address": "0x8f2588f8627107b233d65c7b65c93c17ac11c871", + "symbol": "ASTROPEPE", + "decimals": 18, + "name": "Astro Pepe", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x8f2588f8627107b233d65c7b65c93c17ac11c871.png", + "aggregators": ["PancakeCoinMarketCap", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x261c94f2d3cccae76f86f6c8f2c93785dd6ce022": { + "address": "0x261c94f2d3cccae76f86f6c8f2c93785dd6ce022", + "symbol": "ATH", + "decimals": 18, + "name": "AETHR Token", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x261c94f2d3cccae76f86f6c8f2c93785dd6ce022.png", + "aggregators": ["PancakeCoinMarketCap", "Socket", "Rango"], + "occurrences": 3 + }, + "0xf20f2ad6a36e9a4f585755aceb0da750de80ed4e": { + "address": "0xf20f2ad6a36e9a4f585755aceb0da750de80ed4e", + "symbol": "BABYRABBIT", + "decimals": 18, + "name": "Babyrabbit", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xf20f2ad6a36e9a4f585755aceb0da750de80ed4e.png", + "aggregators": ["PancakeCoinMarketCap", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x2d77863f3586e1e4e6d91706b6c8a1e1f628b4ad": { + "address": "0x2d77863f3586e1e4e6d91706b6c8a1e1f628b4ad", + "symbol": "BAI", + "decimals": 18, + "name": "Based AI", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x2d77863f3586e1e4e6d91706b6c8a1e1f628b4ad.png", + "aggregators": ["PancakeCoinMarketCap", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x4c496592fd52c2810651b4862cc9fe13940fea31": { + "address": "0x4c496592fd52c2810651b4862cc9fe13940fea31", + "symbol": "BALVEY", + "decimals": 9, + "name": "Baby Alvey", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x4c496592fd52c2810651b4862cc9fe13940fea31.png", + "aggregators": ["PancakeCoinMarketCap", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x31b79e34b32239f0c3604db4a451ce9256b92919": { + "address": "0x31b79e34b32239f0c3604db4a451ce9256b92919", + "symbol": "BAPTOS", + "decimals": 9, + "name": "Baby Aptos", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x31b79e34b32239f0c3604db4a451ce9256b92919.png", + "aggregators": ["PancakeCoinMarketCap", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x8800e9902879ac7fb9823086d1749030c9a5eb91": { + "address": "0x8800e9902879ac7fb9823086d1749030c9a5eb91", + "symbol": "BBL", + "decimals": 18, + "name": "Basket Legends", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x8800e9902879ac7fb9823086d1749030c9a5eb91.png", + "aggregators": ["PancakeCoinMarketCap", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x8d875abca035858c901fb3b61a98179aa2ca7ed9": { + "address": "0x8d875abca035858c901fb3b61a98179aa2ca7ed9", + "symbol": "BCEO", + "decimals": 9, + "name": "BabyDoge CEO", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x8d875abca035858c901fb3b61a98179aa2ca7ed9.png", + "aggregators": ["PancakeCoinMarketCap", "Rubic", "Rango"], + "occurrences": 3 + }, + "0xa7751516e06e1715264306a51437774bf94266dc": { + "address": "0xa7751516e06e1715264306a51437774bf94266dc", + "symbol": "BIC", + "decimals": 18, + "name": "Billiard Crypto", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xa7751516e06e1715264306a51437774bf94266dc.png", + "aggregators": ["PancakeCoinMarketCap", "Rubic", "Rango"], + "occurrences": 3 + }, + "0xdd8b490001d081ed065239644dae8d1a77b8a91f": { + "address": "0xdd8b490001d081ed065239644dae8d1a77b8a91f", + "symbol": "BITV", + "decimals": 18, + "name": "BitValley", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xdd8b490001d081ed065239644dae8d1a77b8a91f.png", + "aggregators": ["PancakeCoinMarketCap", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x419264d79b92b8de3c710ab0cd3406cd11990e02": { + "address": "0x419264d79b92b8de3c710ab0cd3406cd11990e02", + "symbol": "BLC", + "decimals": 9, + "name": "Blockscape", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x419264d79b92b8de3c710ab0cd3406cd11990e02.png", + "aggregators": ["PancakeCoinMarketCap", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x755a1c9b62126b289338733aa4d6e9669de2b989": { + "address": "0x755a1c9b62126b289338733aa4d6e9669de2b989", + "symbol": "BLET", + "decimals": 18, + "name": "Blockearth", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x755a1c9b62126b289338733aa4d6e9669de2b989.png", + "aggregators": ["PancakeCoinMarketCap", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x064c8e55aa484adbd58ca2d43343ef50137473b7": { + "address": "0x064c8e55aa484adbd58ca2d43343ef50137473b7", + "symbol": "BMBX", + "decimals": 18, + "name": "Mobie bMBX", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x064c8e55aa484adbd58ca2d43343ef50137473b7.png", + "aggregators": ["PancakeCoinMarketCap", "Socket", "Rubic"], + "occurrences": 3 + }, + "0x034d4fda3860ea9cc0274e602fb9d9732712480f": { + "address": "0x034d4fda3860ea9cc0274e602fb9d9732712480f", + "symbol": "BONY", + "decimals": 18, + "name": "Bloody Bunny", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x034d4fda3860ea9cc0274e602fb9d9732712480f.png", + "aggregators": ["PancakeCoinMarketCap", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x74d23db8fd35fd20e1964f7197147c8a22d92a8d": { + "address": "0x74d23db8fd35fd20e1964f7197147c8a22d92a8d", + "symbol": "NAXAR", + "decimals": 18, + "name": "Utility Token Boxch", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x74d23db8fd35fd20e1964f7197147c8a22d92a8d.png", + "aggregators": ["PancakeCoinMarketCap", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x098a138fd939ae6bde61deb9ab82c838e85d98e3": { + "address": "0x098a138fd939ae6bde61deb9ab82c838e85d98e3", + "symbol": "BPC", + "decimals": 9, + "name": "Billionaires Pixel Club", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x098a138fd939ae6bde61deb9ab82c838e85d98e3.png", + "aggregators": ["PancakeCoinMarketCap", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x3aeff4e27e1f9144ed75ba65a80bdfee345f413e": { + "address": "0x3aeff4e27e1f9144ed75ba65a80bdfee345f413e", + "symbol": "BUMN", + "decimals": 9, + "name": "BUMooN", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x3aeff4e27e1f9144ed75ba65a80bdfee345f413e.png", + "aggregators": ["PancakeCoinMarketCap", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x9bee0c15676a65ef3c8cdb38cb3dd31c675bbd12": { + "address": "0x9bee0c15676a65ef3c8cdb38cb3dd31c675bbd12", + "symbol": "BVC", + "decimals": 18, + "name": "BattleVerse", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x9bee0c15676a65ef3c8cdb38cb3dd31c675bbd12.png", + "aggregators": ["PancakeCoinMarketCap", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x4937e7d93dd8d8e76eb83659f109cdc633ffdee9": { + "address": "0x4937e7d93dd8d8e76eb83659f109cdc633ffdee9", + "symbol": "CATCEO", + "decimals": 9, + "name": "CATCEO", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x4937e7d93dd8d8e76eb83659f109cdc633ffdee9.png", + "aggregators": ["PancakeCoinMarketCap", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x2789604fe261adc1aed3927f41277d8bffe33c36": { + "address": "0x2789604fe261adc1aed3927f41277d8bffe33c36", + "symbol": "CATCHY", + "decimals": 9, + "name": "Catchy", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x2789604fe261adc1aed3927f41277d8bffe33c36.png", + "aggregators": ["PancakeCoinMarketCap", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x116204ba071bb5c8b203e2a5f903f557b54ef577": { + "address": "0x116204ba071bb5c8b203e2a5f903f557b54ef577", + "symbol": "CAVAT", + "decimals": 18, + "name": "Cavatar", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x116204ba071bb5c8b203e2a5f903f557b54ef577.png", + "aggregators": ["PancakeCoinMarketCap", "Rubic", "Rango"], + "occurrences": 3 + }, + "0xd96e43fb44be20e9e9a5872ce1904ebaa9975ead": { + "address": "0xd96e43fb44be20e9e9a5872ce1904ebaa9975ead", + "symbol": "CAWCEO", + "decimals": 18, + "name": "CAW CEO", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xd96e43fb44be20e9e9a5872ce1904ebaa9975ead.png", + "aggregators": ["PancakeCoinMarketCap", "Rubic", "Rango"], + "occurrences": 3 + }, + "0xfdfc1ab8bf1e2d6920caf405aa488987a077fc4b": { + "address": "0xfdfc1ab8bf1e2d6920caf405aa488987a077fc4b", + "symbol": "CBYTE", + "decimals": 18, + "name": "CBYTE", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xfdfc1ab8bf1e2d6920caf405aa488987a077fc4b.png", + "aggregators": ["PancakeCoinMarketCap", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x1baadfd674c641149b0d5a39e697ec877ab47083": { + "address": "0x1baadfd674c641149b0d5a39e697ec877ab47083", + "symbol": "CCGDS", + "decimals": 18, + "name": "CCGDS", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x1baadfd674c641149b0d5a39e697ec877ab47083.png", + "aggregators": ["PancakeCoinMarketCap", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x5754a836708fe2bbdaf8dd71d13f5d1a59bcec6f": { + "address": "0x5754a836708fe2bbdaf8dd71d13f5d1a59bcec6f", + "symbol": "CCT", + "decimals": 18, + "name": "Collective Care", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x5754a836708fe2bbdaf8dd71d13f5d1a59bcec6f.png", + "aggregators": ["PancakeCoinMarketCap", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x4e5ef3493bcfb5e7548913c3f2a40623be7d7f98": { + "address": "0x4e5ef3493bcfb5e7548913c3f2a40623be7d7f98", + "symbol": "CD", + "decimals": 9, + "name": "Cash Driver", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x4e5ef3493bcfb5e7548913c3f2a40623be7d7f98.png", + "aggregators": ["PancakeCoinMarketCap", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x52f8d048ba279556dd981036e7fa0345b5a90c7a": { + "address": "0x52f8d048ba279556dd981036e7fa0345b5a90c7a", + "symbol": "CGC", + "decimals": 18, + "name": "HeroesTD CGC", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x52f8d048ba279556dd981036e7fa0345b5a90c7a.png", + "aggregators": ["PancakeCoinMarketCap", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x1c5a65ededa96e7daf0715d978cc643184fbbd6c": { + "address": "0x1c5a65ededa96e7daf0715d978cc643184fbbd6c", + "symbol": "CHAOS", + "decimals": 18, + "name": "Warrior Empires", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x1c5a65ededa96e7daf0715d978cc643184fbbd6c.png", + "aggregators": ["PancakeCoinMarketCap", "Rubic", "Rango"], + "occurrences": 3 + }, + "0xbc420bc2c015d1579f77e4a5c68270b75f2ddb9d": { + "address": "0xbc420bc2c015d1579f77e4a5c68270b75f2ddb9d", + "symbol": "CHE", + "decimals": 18, + "name": "CherrySwap Token", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xbc420bc2c015d1579f77e4a5c68270b75f2ddb9d.png", + "aggregators": ["PancakeCoinMarketCap", "Rubic", "Rango"], + "occurrences": 3 + }, + "0xd3a26b1329caa71b3c8175b454caf61e5b49c9ae": { + "address": "0xd3a26b1329caa71b3c8175b454caf61e5b49c9ae", + "symbol": "CHICA", + "decimals": 18, + "name": "CHICA", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xd3a26b1329caa71b3c8175b454caf61e5b49c9ae.png", + "aggregators": ["PancakeCoinMarketCap", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x4c888e116d57a32f84865f3789dcb131fdc9fab6": { + "address": "0x4c888e116d57a32f84865f3789dcb131fdc9fab6", + "symbol": "CIRUS", + "decimals": 18, + "name": "Cirus", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x4c888e116d57a32f84865f3789dcb131fdc9fab6.png", + "aggregators": ["PancakeCoinMarketCap", "Socket", "Rubic"], + "occurrences": 3 + }, + "0x5c10e4660ec45a89de85a1fd1b22355b0398fb66": { + "address": "0x5c10e4660ec45a89de85a1fd1b22355b0398fb66", + "symbol": "CLOUD", + "decimals": 18, + "name": "Cloud Token", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x5c10e4660ec45a89de85a1fd1b22355b0398fb66.png", + "aggregators": ["PancakeCoinMarketCap", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x77140a6f53c09c36abf10ef947655317a7670a3b": { + "address": "0x77140a6f53c09c36abf10ef947655317a7670a3b", + "symbol": "CMAI", + "decimals": 18, + "name": "CoinMatch Ai", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x77140a6f53c09c36abf10ef947655317a7670a3b.png", + "aggregators": ["PancakeCoinMarketCap", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x8c74f24de882f7a6ffe96e657e8ee10b1917849c": { + "address": "0x8c74f24de882f7a6ffe96e657e8ee10b1917849c", + "symbol": "CNYD", + "decimals": 18, + "name": "Chinese NY Dragon", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x8c74f24de882f7a6ffe96e657e8ee10b1917849c.png", + "aggregators": ["PancakeCoinMarketCap", "Rubic", "Rango"], + "occurrences": 3 + }, + "0xaf099ef77575a9f981660b1c9e3b78a3ba89ffd9": { + "address": "0xaf099ef77575a9f981660b1c9e3b78a3ba89ffd9", + "symbol": "COINSALE", + "decimals": 18, + "name": "CoinSale Token", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xaf099ef77575a9f981660b1c9e3b78a3ba89ffd9.png", + "aggregators": ["PancakeCoinMarketCap", "Rubic", "Rango"], + "occurrences": 3 + }, + "0xe0e0fbc7e8d881953d39cf899409410b50b8c924": { + "address": "0xe0e0fbc7e8d881953d39cf899409410b50b8c924", + "symbol": "CON", + "decimals": 9, + "name": "Coin of Nature", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xe0e0fbc7e8d881953d39cf899409410b50b8c924.png", + "aggregators": ["PancakeCoinMarketCap", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x365b475bc0eaf3c92f6b248b3f09d10f55ec900d": { + "address": "0x365b475bc0eaf3c92f6b248b3f09d10f55ec900d", + "symbol": "CORGICEO", + "decimals": 9, + "name": "CORGI CEO", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x365b475bc0eaf3c92f6b248b3f09d10f55ec900d.png", + "aggregators": ["PancakeCoinMarketCap", "Rubic", "Rango"], + "occurrences": 3 + }, + "0xb78e0ff3a82c487295074465ff714e45a6e7b39c": { + "address": "0xb78e0ff3a82c487295074465ff714e45a6e7b39c", + "symbol": "COSMIC", + "decimals": 18, + "name": "Cosmic Chain", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xb78e0ff3a82c487295074465ff714e45a6e7b39c.png", + "aggregators": ["PancakeCoinMarketCap", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x04260673729c5f2b9894a467736f3d85f8d34fc8": { + "address": "0x04260673729c5f2b9894a467736f3d85f8d34fc8", + "symbol": "CPAN", + "decimals": 18, + "name": "CPAN", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x04260673729c5f2b9894a467736f3d85f8d34fc8.png", + "aggregators": ["PancakeCoinMarketCap", "Rubic", "Rango"], + "occurrences": 3 + }, + "0xfbb4f2f342c6daab63ab85b0226716c4d1e26f36": { + "address": "0xfbb4f2f342c6daab63ab85b0226716c4d1e26f36", + "symbol": "CRACE", + "decimals": 18, + "name": "Coinracer", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xfbb4f2f342c6daab63ab85b0226716c4d1e26f36.png", + "aggregators": ["PancakeCoinMarketCap", "Rubic", "Rango"], + "occurrences": 3 + }, + "0xb8501a9a9aaae239a2490f44e00b284baa0b131a": { + "address": "0xb8501a9a9aaae239a2490f44e00b284baa0b131a", + "symbol": "CREMAT", + "decimals": 18, + "name": "Cremation Coin", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xb8501a9a9aaae239a2490f44e00b284baa0b131a.png", + "aggregators": ["PancakeCoinMarketCap", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x2ee8ca014fdab5f5d0436c866937d32ef97373b0": { + "address": "0x2ee8ca014fdab5f5d0436c866937d32ef97373b0", + "symbol": "CRIMSON", + "decimals": 18, + "name": "Crimson Network", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x2ee8ca014fdab5f5d0436c866937d32ef97373b0.png", + "aggregators": ["PancakeCoinMarketCap", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x78948a37bafb910e24a7cf4ccc242d5a6166ea46": { + "address": "0x78948a37bafb910e24a7cf4ccc242d5a6166ea46", + "symbol": "CYBERTRUCK", + "decimals": 9, + "name": "CYBERTRUCK", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x78948a37bafb910e24a7cf4ccc242d5a6166ea46.png", + "aggregators": ["PancakeCoinMarketCap", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x5cd0c2c744caf04cda258efc6558a3ed3defe97b": { + "address": "0x5cd0c2c744caf04cda258efc6558a3ed3defe97b", + "symbol": "CZR", + "decimals": 18, + "name": "CZRed", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x5cd0c2c744caf04cda258efc6558a3ed3defe97b.png", + "aggregators": ["PancakeCoinMarketCap", "LiFi", "Rubic"], + "occurrences": 3 + }, + "0x43bee29430a2dda4bc053dd5669a56efd6e0556a": { + "address": "0x43bee29430a2dda4bc053dd5669a56efd6e0556a", + "symbol": "DAI", + "decimals": 18, + "name": "DogeZila Ai", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x43bee29430a2dda4bc053dd5669a56efd6e0556a.png", + "aggregators": ["PancakeCoinMarketCap", "Rubic", "Rango"], + "occurrences": 3 + }, + "0xdfa1c5fcd4d64729cdf6d553b2fb1def11a7c689": { + "address": "0xdfa1c5fcd4d64729cdf6d553b2fb1def11a7c689", + "symbol": "DCO", + "decimals": 18, + "name": "DCOREUM", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xdfa1c5fcd4d64729cdf6d553b2fb1def11a7c689.png", + "aggregators": ["PancakeCoinMarketCap", "Rubic", "Rango"], + "occurrences": 3 + }, + "0xe1a0ce8b94c6a5e4791401086763d7bd0a6c18f5": { + "address": "0xe1a0ce8b94c6a5e4791401086763d7bd0a6c18f5", + "symbol": "DEFIAI", + "decimals": 18, + "name": "DeFiAI Token", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xe1a0ce8b94c6a5e4791401086763d7bd0a6c18f5.png", + "aggregators": ["PancakeCoinMarketCap", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x6c13a45101bd70561daf6186da86d7bdb018754f": { + "address": "0x6c13a45101bd70561daf6186da86d7bdb018754f", + "symbol": "DEWAE", + "decimals": 18, + "name": "DEWAE", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x6c13a45101bd70561daf6186da86d7bdb018754f.png", + "aggregators": ["PancakeCoinMarketCap", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x2a8557c1ca81573d33771d0f57a975c2388c5f38": { + "address": "0x2a8557c1ca81573d33771d0f57a975c2388c5f38", + "symbol": "DGC", + "decimals": 18, + "name": "MetaFishing", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x2a8557c1ca81573d33771d0f57a975c2388c5f38.png", + "aggregators": ["PancakeCoinMarketCap", "Rubic", "Rango"], + "occurrences": 3 + }, + "0xac55b04af8e9067d6c53785b34113e99e10c2a11": { + "address": "0xac55b04af8e9067d6c53785b34113e99e10c2a11", + "symbol": "DHD", + "decimals": 18, + "name": "Doom Hero Dao", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xac55b04af8e9067d6c53785b34113e99e10c2a11.png", + "aggregators": ["PancakeCoinMarketCap", "Rubic", "Rango"], + "occurrences": 3 + }, + "0xe2ecc66e14efa96e9c55945f79564f468882d24c": { + "address": "0xe2ecc66e14efa96e9c55945f79564f468882d24c", + "symbol": "DIS", + "decimals": 18, + "name": "Disney", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xe2ecc66e14efa96e9c55945f79564f468882d24c.png", + "aggregators": ["PancakeCoinMarketCap", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x6b9481fb5465ef9ab9347b332058d894ab09b2f6": { + "address": "0x6b9481fb5465ef9ab9347b332058d894ab09b2f6", + "symbol": "DNL", + "decimals": 18, + "name": "Dinoland Metaverse", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x6b9481fb5465ef9ab9347b332058d894ab09b2f6.png", + "aggregators": ["PancakeCoinMarketCap", "LiFi", "Rubic"], + "occurrences": 3 + }, + "0x0e9729a1db9e45ff08f64e6c4342be3921e993e0": { + "address": "0x0e9729a1db9e45ff08f64e6c4342be3921e993e0", + "symbol": "DOD", + "decimals": 18, + "name": "Day Of Defeat 2.0", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x0e9729a1db9e45ff08f64e6c4342be3921e993e0.png", + "aggregators": ["PancakeCoinMarketCap", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x182fd4f68695f1951018b5f8c1b2f778919ff0ce": { + "address": "0x182fd4f68695f1951018b5f8c1b2f778919ff0ce", + "symbol": "DPF", + "decimals": 9, + "name": "Dogepad Finance", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x182fd4f68695f1951018b5f8c1b2f778919ff0ce.png", + "aggregators": ["PancakeCoinMarketCap", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x556ee4eab4fbf6ddc4c05285966fb839f424c8a8": { + "address": "0x556ee4eab4fbf6ddc4c05285966fb839f424c8a8", + "symbol": "DROGGY", + "decimals": 18, + "name": "Droggy", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x556ee4eab4fbf6ddc4c05285966fb839f424c8a8.png", + "aggregators": ["PancakeCoinMarketCap", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x6d64010596f7ec3b40b40223a5f847a1b243fd99": { + "address": "0x6d64010596f7ec3b40b40223a5f847a1b243fd99", + "symbol": "DTA", + "decimals": 9, + "name": "Digital Trip Advisor", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x6d64010596f7ec3b40b40223a5f847a1b243fd99.png", + "aggregators": ["PancakeCoinMarketCap", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x6f1462bf17724d6f8551544d57e29bbbcbf3b1c1": { + "address": "0x6f1462bf17724d6f8551544d57e29bbbcbf3b1c1", + "symbol": "DUG", + "decimals": 9, + "name": "DUG", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x6f1462bf17724d6f8551544d57e29bbbcbf3b1c1.png", + "aggregators": ["PancakeCoinMarketCap", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x865a0e15ac5c309e7ea61410cebdea1df686dbb2": { + "address": "0x865a0e15ac5c309e7ea61410cebdea1df686dbb2", + "symbol": "DWT", + "decimals": 18, + "name": "DexWallet", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x865a0e15ac5c309e7ea61410cebdea1df686dbb2.png", + "aggregators": ["PancakeCoinMarketCap", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x5c0d0111ffc638802c9efccf55934d5c63ab3f79": { + "address": "0x5c0d0111ffc638802c9efccf55934d5c63ab3f79", + "symbol": "DYNA", + "decimals": 18, + "name": "Dynamic", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x5c0d0111ffc638802c9efccf55934d5c63ab3f79.png", + "aggregators": ["PancakeCoinMarketCap", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x33840024177a7daca3468912363bed8b425015c5": { + "address": "0x33840024177a7daca3468912363bed8b425015c5", + "symbol": "EBOX", + "decimals": 18, + "name": "ebox", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x33840024177a7daca3468912363bed8b425015c5.png", + "aggregators": ["PancakeCoinMarketCap", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x730cb2ba0f654ddec32470d265555f26fe545eb8": { + "address": "0x730cb2ba0f654ddec32470d265555f26fe545eb8", + "symbol": "EDAO", + "decimals": 18, + "name": "ElonDoge DAO", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x730cb2ba0f654ddec32470d265555f26fe545eb8.png", + "aggregators": ["PancakeCoinMarketCap", "Rubic", "Rango"], + "occurrences": 3 + }, + "0xda2e636a6b6d3eaacb3a5fb00f86ead84e0d908f": { + "address": "0xda2e636a6b6d3eaacb3a5fb00f86ead84e0d908f", + "symbol": "EDX", + "decimals": 18, + "name": "Equilibrium", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xda2e636a6b6d3eaacb3a5fb00f86ead84e0d908f.png", + "aggregators": ["PancakeCoinMarketCap", "Rubic", "Rango"], + "occurrences": 3 + }, + "0xa37100bb05271853766af8ed7a32ca20c8311acc": { + "address": "0xa37100bb05271853766af8ed7a32ca20c8311acc", + "symbol": "ELONMUSKCEO", + "decimals": 9, + "name": "Elon Musk CEO", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xa37100bb05271853766af8ed7a32ca20c8311acc.png", + "aggregators": ["PancakeCoinMarketCap", "Rubic", "Rango"], + "occurrences": 3 + }, + "0xae90ca218f9c3b1aa84af33a7907e4890ec6a167": { + "address": "0xae90ca218f9c3b1aa84af33a7907e4890ec6a167", + "symbol": "ELT", + "decimals": 18, + "name": "ECLAT", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xae90ca218f9c3b1aa84af33a7907e4890ec6a167.png", + "aggregators": ["PancakeCoinMarketCap", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x6cb8065f96d63630425fd95a408a0d6cd697c662": { + "address": "0x6cb8065f96d63630425fd95a408a0d6cd697c662", + "symbol": "EMBR", + "decimals": 18, + "name": "Embr", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x6cb8065f96d63630425fd95a408a0d6cd697c662.png", + "aggregators": ["PancakeCoinMarketCap", "Rubic", "Rango"], + "occurrences": 3 + }, + "0xe4f3252f268b6b5beae4b02a4b99b369bbea12f1": { + "address": "0xe4f3252f268b6b5beae4b02a4b99b369bbea12f1", + "symbol": "ENG", + "decimals": 18, + "name": "Enigma Gaming", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xe4f3252f268b6b5beae4b02a4b99b369bbea12f1.png", + "aggregators": ["PancakeCoinMarketCap", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x17bd2e09fa4585c15749f40bb32a6e3db58522ba": { + "address": "0x17bd2e09fa4585c15749f40bb32a6e3db58522ba", + "symbol": "ETHFIN", + "decimals": 18, + "name": "Ethernal Finance", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x17bd2e09fa4585c15749f40bb32a6e3db58522ba.png", + "aggregators": ["PancakeCoinMarketCap", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x459fab6be3b07558e28fecb07b64a481d0e8c6a3": { + "address": "0x459fab6be3b07558e28fecb07b64a481d0e8c6a3", + "symbol": "FAI", + "decimals": 18, + "name": "Flokiter", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x459fab6be3b07558e28fecb07b64a481d0e8c6a3.png", + "aggregators": ["PancakeCoinMarketCap", "Rubic", "Rango"], + "occurrences": 3 + }, + "0xb6d48fcef36e19681ee29896b19c1b6cbd1eab1b": { + "address": "0xb6d48fcef36e19681ee29896b19c1b6cbd1eab1b", + "symbol": "FAN", + "decimals": 18, + "name": "Fanadise", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xb6d48fcef36e19681ee29896b19c1b6cbd1eab1b.png", + "aggregators": ["PancakeCoinMarketCap", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x393c44a497706dde15996bb0c7bdf691a79de38a": { + "address": "0x393c44a497706dde15996bb0c7bdf691a79de38a", + "symbol": "FBL", + "decimals": 18, + "name": "FootballBattle", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x393c44a497706dde15996bb0c7bdf691a79de38a.png", + "aggregators": ["PancakeCoinMarketCap", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x14e0980675ada43085c6c69c3cd207a03e43549b": { + "address": "0x14e0980675ada43085c6c69c3cd207a03e43549b", + "symbol": "FDAO", + "decimals": 18, + "name": "Figure DAO", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x14e0980675ada43085c6c69c3cd207a03e43549b.png", + "aggregators": ["PancakeCoinMarketCap", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x85cec9d09529c4239dcd89018889238abdd3ede6": { + "address": "0x85cec9d09529c4239dcd89018889238abdd3ede6", + "symbol": "FDLS", + "decimals": 9, + "name": "FIDELIS", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x85cec9d09529c4239dcd89018889238abdd3ede6.png", + "aggregators": ["PancakeCoinMarketCap", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x1603441703472aff8cdf1871961176cc494588dc": { + "address": "0x1603441703472aff8cdf1871961176cc494588dc", + "symbol": "FINANCEAI", + "decimals": 18, + "name": "Finance AI", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x1603441703472aff8cdf1871961176cc494588dc.png", + "aggregators": ["PancakeCoinMarketCap", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x77922a521182a719a48ba650ac2a040269888888": { + "address": "0x77922a521182a719a48ba650ac2a040269888888", + "symbol": "FIT", + "decimals": 18, + "name": "FIT Token", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x77922a521182a719a48ba650ac2a040269888888.png", + "aggregators": ["PancakeCoinMarketCap", "Socket", "Rubic"], + "occurrences": 3 + }, + "0x73e8dd9d52bd26a2134698e2aff964e121f4759b": { + "address": "0x73e8dd9d52bd26a2134698e2aff964e121f4759b", + "symbol": "FITAI", + "decimals": 18, + "name": "GoFitterAI", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x73e8dd9d52bd26a2134698e2aff964e121f4759b.png", + "aggregators": ["PancakeCoinMarketCap", "Rubic", "Rango"], + "occurrences": 3 + }, + "0xe5765e33e349b2dcf22a37b2b4e87c10ad43f165": { + "address": "0xe5765e33e349b2dcf22a37b2b4e87c10ad43f165", + "symbol": "FLOC", + "decimals": 18, + "name": "Christmas Floki", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xe5765e33e349b2dcf22a37b2b4e87c10ad43f165.png", + "aggregators": ["PancakeCoinMarketCap", "Rubic", "Rango"], + "occurrences": 3 + }, + "0xdc8c8221b8e27dfda87a6d56dc5899a65087b6f4": { + "address": "0xdc8c8221b8e27dfda87a6d56dc5899a65087b6f4", + "symbol": "FLOKITA", + "decimals": 18, + "name": "FLOKITA", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xdc8c8221b8e27dfda87a6d56dc5899a65087b6f4.png", + "aggregators": ["PancakeCoinMarketCap", "Rubic", "Rango"], + "occurrences": 3 + }, + "0xae7300b51a8cd43d5b74be0dd5047715b7017e3e": { + "address": "0xae7300b51a8cd43d5b74be0dd5047715b7017e3e", + "symbol": "FOA", + "decimals": 18, + "name": "Fragments of arker", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xae7300b51a8cd43d5b74be0dd5047715b7017e3e.png", + "aggregators": ["PancakeCoinMarketCap", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x6507458bb53aec6be863161641ec28739c41cc97": { + "address": "0x6507458bb53aec6be863161641ec28739c41cc97", + "symbol": "FOOTBALLSTARS", + "decimals": 18, + "name": "FTS", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x6507458bb53aec6be863161641ec28739c41cc97.png", + "aggregators": ["PancakeCoinMarketCap", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x50ea9c9f88aeab9f554b8ffb4d7a1017957e866a": { + "address": "0x50ea9c9f88aeab9f554b8ffb4d7a1017957e866a", + "symbol": "FOXT", + "decimals": 18, + "name": "Fox Trading", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x50ea9c9f88aeab9f554b8ffb4d7a1017957e866a.png", + "aggregators": ["PancakeCoinMarketCap", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x0b98814e29a9731daed49d301e09aaf508408e28": { + "address": "0x0b98814e29a9731daed49d301e09aaf508408e28", + "symbol": "FROG", + "decimals": 9, + "name": "Frog Bsc", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x0b98814e29a9731daed49d301e09aaf508408e28.png", + "aggregators": ["PancakeCoinMarketCap", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x7806dad5651d657986f5cb27932d59d90f1646c7": { + "address": "0x7806dad5651d657986f5cb27932d59d90f1646c7", + "symbol": "FROGGO", + "decimals": 18, + "name": "FROGGO The Last Pepe", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x7806dad5651d657986f5cb27932d59d90f1646c7.png", + "aggregators": ["PancakeCoinMarketCap", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x0dbcec4214d7e9c316e0eb53991a43f42f432e15": { + "address": "0x0dbcec4214d7e9c316e0eb53991a43f42f432e15", + "symbol": "FXB", + "decimals": 18, + "name": "FxBox", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x0dbcec4214d7e9c316e0eb53991a43f42f432e15.png", + "aggregators": ["PancakeCoinMarketCap", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x77f2be773ca0887ba2b3ef8344c8cf13c98d8ca7": { + "address": "0x77f2be773ca0887ba2b3ef8344c8cf13c98d8ca7", + "symbol": "FYT", + "decimals": 18, + "name": "FloraChain", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x77f2be773ca0887ba2b3ef8344c8cf13c98d8ca7.png", + "aggregators": ["PancakeCoinMarketCap", "Rubic", "Rango"], + "occurrences": 3 + }, + "0xf300e4f1a193dd047b0c6747ad4e16dedf886297": { + "address": "0xf300e4f1a193dd047b0c6747ad4e16dedf886297", + "symbol": "GAMES", + "decimals": 18, + "name": "Gaming Stars", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xf300e4f1a193dd047b0c6747ad4e16dedf886297.png", + "aggregators": ["PancakeCoinMarketCap", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x6d830e1d0179b4fe656683c9d14c05f8cd95db75": { + "address": "0x6d830e1d0179b4fe656683c9d14c05f8cd95db75", + "symbol": "GART", + "decimals": 18, + "name": "Griffin Art Ecosystem", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x6d830e1d0179b4fe656683c9d14c05f8cd95db75.png", + "aggregators": ["PancakeCoinMarketCap", "Rubic", "Rango"], + "occurrences": 3 + }, + "0xb8d5cc1462bf5a28366d58ffd4d40d5d26030f3f": { + "address": "0xb8d5cc1462bf5a28366d58ffd4d40d5d26030f3f", + "symbol": "GBC", + "decimals": 18, + "name": "Green Block Token", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xb8d5cc1462bf5a28366d58ffd4d40d5d26030f3f.png", + "aggregators": ["PancakeCoinMarketCap", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x742f1fbec70b81ed0a32093d0c9054264fd850b2": { + "address": "0x742f1fbec70b81ed0a32093d0c9054264fd850b2", + "symbol": "GDE", + "decimals": 18, + "name": "GianniDoge Esport", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x742f1fbec70b81ed0a32093d0c9054264fd850b2.png", + "aggregators": ["PancakeCoinMarketCap", "Rubic", "Rango"], + "occurrences": 3 + }, + "0xdfdec49462f7d3c3b0a48e729f77a0645cdfa7c0": { + "address": "0xdfdec49462f7d3c3b0a48e729f77a0645cdfa7c0", + "symbol": "GEMS", + "decimals": 9, + "name": "Safegem.finance", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xdfdec49462f7d3c3b0a48e729f77a0645cdfa7c0.png", + "aggregators": ["PancakeCoinMarketCap", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x6f13b1fb6b2897bb40adbc09f7f6cfad181c0904": { + "address": "0x6f13b1fb6b2897bb40adbc09f7f6cfad181c0904", + "symbol": "GEURO", + "decimals": 18, + "name": "GEURO", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x6f13b1fb6b2897bb40adbc09f7f6cfad181c0904.png", + "aggregators": ["PancakeCoinMarketCap", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x2c8d970d7c8c878db422c4bcd7d2542104ecfa2c": { + "address": "0x2c8d970d7c8c878db422c4bcd7d2542104ecfa2c", + "symbol": "GEZY", + "decimals": 2, + "name": "EZZY GAME GEZY", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x2c8d970d7c8c878db422c4bcd7d2542104ecfa2c.png", + "aggregators": ["PancakeCoinMarketCap", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x65ad6a2288b2dd23e466226397c8f5d1794e58fc": { + "address": "0x65ad6a2288b2dd23e466226397c8f5d1794e58fc", + "symbol": "GFX", + "decimals": 18, + "name": "GamyFi", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x65ad6a2288b2dd23e466226397c8f5d1794e58fc.png", + "aggregators": ["PancakeCoinMarketCap", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x1fc71fe3e333d5262828f3d348c12c7e52306b8a": { + "address": "0x1fc71fe3e333d5262828f3d348c12c7e52306b8a", + "symbol": "GLR", + "decimals": 18, + "name": "Glory Finance", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x1fc71fe3e333d5262828f3d348c12c7e52306b8a.png", + "aggregators": ["PancakeCoinMarketCap", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x99e92123eb77bc8f999316f622e5222498438784": { + "address": "0x99e92123eb77bc8f999316f622e5222498438784", + "symbol": "GMT", + "decimals": 18, + "name": "Gambit", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x99e92123eb77bc8f999316f622e5222498438784.png", + "aggregators": ["PancakeCoinMarketCap", "Socket", "Rubic"], + "occurrences": 3 + }, + "0xde2a66c92583332e8e1f0aeeb03deb749a3fd33a": { + "address": "0xde2a66c92583332e8e1f0aeeb03deb749a3fd33a", + "symbol": "GOBLIN", + "decimals": 18, + "name": "Goblin", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xde2a66c92583332e8e1f0aeeb03deb749a3fd33a.png", + "aggregators": ["PancakeCoinMarketCap", "Rubic", "Rango"], + "occurrences": 3 + }, + "0xaddc5ce5cb80ea434e85c71589159716ab00b53c": { + "address": "0xaddc5ce5cb80ea434e85c71589159716ab00b53c", + "symbol": "GROKKY", + "decimals": 9, + "name": "GroKKy", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xaddc5ce5cb80ea434e85c71589159716ab00b53c.png", + "aggregators": ["PancakeCoinMarketCap", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x77774a06271d6a305caccdbc06f847def05c7777": { + "address": "0x77774a06271d6a305caccdbc06f847def05c7777", + "symbol": "GW", + "decimals": 18, + "name": "Gyrowin", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x77774a06271d6a305caccdbc06f847def05c7777.png", + "aggregators": ["PancakeCoinMarketCap", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x3cc20cf966b25be8538a8bc70e53c720c7133f35": { + "address": "0x3cc20cf966b25be8538a8bc70e53c720c7133f35", + "symbol": "GWINK", + "decimals": 18, + "name": "Genesis Wink", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x3cc20cf966b25be8538a8bc70e53c720c7133f35.png", + "aggregators": ["PancakeCoinMarketCap", "Rubic", "Rango"], + "occurrences": 3 + }, + "0xe33012187af219072dff81f54060febed2a91337": { + "address": "0xe33012187af219072dff81f54060febed2a91337", + "symbol": "HBN", + "decimals": 18, + "name": "HubinNetwork", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xe33012187af219072dff81f54060febed2a91337.png", + "aggregators": ["PancakeCoinMarketCap", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x29a1e54de0fce58e1018535d30af77a9d2d940c4": { + "address": "0x29a1e54de0fce58e1018535d30af77a9d2d940c4", + "symbol": "HCT", + "decimals": 18, + "name": "HeroCatGamefi", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x29a1e54de0fce58e1018535d30af77a9d2d940c4.png", + "aggregators": ["PancakeCoinMarketCap", "Rubic", "Rango"], + "occurrences": 3 + }, + "0xe350b08079f9523b24029b838184f177baf961ff": { + "address": "0xe350b08079f9523b24029b838184f177baf961ff", + "symbol": "HELENA", + "decimals": 5, + "name": "Helena Financial", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xe350b08079f9523b24029b838184f177baf961ff.png", + "aggregators": ["PancakeCoinMarketCap", "Rubic", "Rango"], + "occurrences": 3 + }, + "0xfb2c085a8b266b264ff0a38b9687ae14ef8a67fb": { + "address": "0xfb2c085a8b266b264ff0a38b9687ae14ef8a67fb", + "symbol": "HLS", + "decimals": 18, + "name": "Halis", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xfb2c085a8b266b264ff0a38b9687ae14ef8a67fb.png", + "aggregators": ["PancakeCoinMarketCap", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x0e9766df73973abcfedde700497c57110ee5c301": { + "address": "0x0e9766df73973abcfedde700497c57110ee5c301", + "symbol": "HODL", + "decimals": 9, + "name": "HODL", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x0e9766df73973abcfedde700497c57110ee5c301.png", + "aggregators": ["PancakeCoinMarketCap", "Rubic", "Rango"], + "occurrences": 3 + }, + "0xe13cd1c9d52126afc33976401aed4072597c97f8": { + "address": "0xe13cd1c9d52126afc33976401aed4072597c97f8", + "symbol": "HODL", + "decimals": 9, + "name": "ORDINAL HODL MEME", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xe13cd1c9d52126afc33976401aed4072597c97f8.png", + "aggregators": ["PancakeCoinMarketCap", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x2e7f28f0d27ffa238fdf7517a3bbe239b8189741": { + "address": "0x2e7f28f0d27ffa238fdf7517a3bbe239b8189741", + "symbol": "HOPPYINU", + "decimals": 18, + "name": "HoppyInu", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x2e7f28f0d27ffa238fdf7517a3bbe239b8189741.png", + "aggregators": ["PancakeCoinMarketCap", "Rubic", "Rango"], + "occurrences": 3 + }, + "0xf6b52a29671e74e6b3a7592ef79039abb64e2885": { + "address": "0xf6b52a29671e74e6b3a7592ef79039abb64e2885", + "symbol": "HUMAI", + "decimals": 18, + "name": "Humanoid AI", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xf6b52a29671e74e6b3a7592ef79039abb64e2885.png", + "aggregators": ["PancakeCoinMarketCap", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x62891201468a517eeec00fe72f33595a3f9047ee": { + "address": "0x62891201468a517eeec00fe72f33595a3f9047ee", + "symbol": "HYPE", + "decimals": 18, + "name": "HYPE", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x62891201468a517eeec00fe72f33595a3f9047ee.png", + "aggregators": ["PancakeCoinMarketCap", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x57d2a45653b329fac354b04cead92c4db71cf09f": { + "address": "0x57d2a45653b329fac354b04cead92c4db71cf09f", + "symbol": "IBS", + "decimals": 18, + "name": "IBStoken", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x57d2a45653b329fac354b04cead92c4db71cf09f.png", + "aggregators": ["PancakeCoinMarketCap", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x14b13e06f75e1f0fd51ca2e699589ef398e10f4c": { + "address": "0x14b13e06f75e1f0fd51ca2e699589ef398e10f4c", + "symbol": "IDM", + "decimals": 9, + "name": "IDM Token", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x14b13e06f75e1f0fd51ca2e699589ef398e10f4c.png", + "aggregators": ["PancakeCoinMarketCap", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x0f005dfe97c5041e538b7075915b2ee706677c26": { + "address": "0x0f005dfe97c5041e538b7075915b2ee706677c26", + "symbol": "JETS", + "decimals": 9, + "name": "JeToken", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x0f005dfe97c5041e538b7075915b2ee706677c26.png", + "aggregators": ["PancakeCoinMarketCap", "Rubic", "Rango"], + "occurrences": 3 + }, + "0xc8ab61bed1d2baa1237f7aa4641e68342c58824f": { + "address": "0xc8ab61bed1d2baa1237f7aa4641e68342c58824f", + "symbol": "KANG3N", + "decimals": 9, + "name": "Kang3n", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xc8ab61bed1d2baa1237f7aa4641e68342c58824f.png", + "aggregators": ["PancakeCoinMarketCap", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x64e93084a4e539b7b60a1b247756373c8b4a1db3": { + "address": "0x64e93084a4e539b7b60a1b247756373c8b4a1db3", + "symbol": "KCEO", + "decimals": 9, + "name": "KabosuCEO", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x64e93084a4e539b7b60a1b247756373c8b4a1db3.png", + "aggregators": ["PancakeCoinMarketCap", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x5616671d3d989940c67ea57cb9e8d347696826a3": { + "address": "0x5616671d3d989940c67ea57cb9e8d347696826a3", + "symbol": "KINGU", + "decimals": 18, + "name": "KINGU", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x5616671d3d989940c67ea57cb9e8d347696826a3.png", + "aggregators": ["PancakeCoinMarketCap", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x580cf2c36b913228dd0194a833f0ead8938f18ae": { + "address": "0x580cf2c36b913228dd0194a833f0ead8938f18ae", + "symbol": "KIT", + "decimals": 6, + "name": "KIT Token", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x580cf2c36b913228dd0194a833f0ead8938f18ae.png", + "aggregators": ["PancakeCoinMarketCap", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x18d3be5ecddf79279004e2d90d507594c2d46f85": { + "address": "0x18d3be5ecddf79279004e2d90d507594c2d46f85", + "symbol": "KKMA", + "decimals": 18, + "name": "Koakuma", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x18d3be5ecddf79279004e2d90d507594c2d46f85.png", + "aggregators": ["PancakeCoinMarketCap", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x078efa21a70337834788c3e6f0a99275f71393f0": { + "address": "0x078efa21a70337834788c3e6f0a99275f71393f0", + "symbol": "KNT", + "decimals": 18, + "name": "Kinect Finance", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x078efa21a70337834788c3e6f0a99275f71393f0.png", + "aggregators": ["PancakeCoinMarketCap", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x41b2f7acc00035f9b1cec868b5054a6238c0a910": { + "address": "0x41b2f7acc00035f9b1cec868b5054a6238c0a910", + "symbol": "KOCHI", + "decimals": 18, + "name": "Kochi Ken", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x41b2f7acc00035f9b1cec868b5054a6238c0a910.png", + "aggregators": ["PancakeCoinMarketCap", "Rubic", "Rango"], + "occurrences": 3 + }, + "0xfa4a5c4ce029fd6872400545df44675219c2e037": { + "address": "0xfa4a5c4ce029fd6872400545df44675219c2e037", + "symbol": "KPHI", + "decimals": 18, + "name": "Kephi Token", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xfa4a5c4ce029fd6872400545df44675219c2e037.png", + "aggregators": ["PancakeCoinMarketCap", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x8ab7ef0eb25aad36dff0661f81fb81b144af5b87": { + "address": "0x8ab7ef0eb25aad36dff0661f81fb81b144af5b87", + "symbol": "KUMAMON", + "decimals": 18, + "name": "Kumamon", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x8ab7ef0eb25aad36dff0661f81fb81b144af5b87.png", + "aggregators": ["PancakeCoinMarketCap", "Rubic", "Rango"], + "occurrences": 3 + }, + "0xbe5166e8e8a5cb801f09a6a0a46c42b7c27be755": { + "address": "0xbe5166e8e8a5cb801f09a6a0a46c42b7c27be755", + "symbol": "KVERSE", + "decimals": 18, + "name": "Keeps Coin", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xbe5166e8e8a5cb801f09a6a0a46c42b7c27be755.png", + "aggregators": ["PancakeCoinMarketCap", "Rubic", "Rango"], + "occurrences": 3 + }, + "0xcf5b48bd28dc1459ad575c0c83a839fef2a463bc": { + "address": "0xcf5b48bd28dc1459ad575c0c83a839fef2a463bc", + "symbol": "LILC", + "decimals": 9, + "name": "LIGHTCYCLE", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xcf5b48bd28dc1459ad575c0c83a839fef2a463bc.png", + "aggregators": ["PancakeCoinMarketCap", "Rubic", "Rango"], + "occurrences": 3 + }, + "0xd2b6bf88b7d9da599331719e338fcdeb235a0b99": { + "address": "0xd2b6bf88b7d9da599331719e338fcdeb235a0b99", + "symbol": "LIMO", + "decimals": 18, + "name": "LIMOVERSE", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xd2b6bf88b7d9da599331719e338fcdeb235a0b99.png", + "aggregators": ["PancakeCoinMarketCap", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x5b180109332b079c44447f52a8adad5b1cd9dcfd": { + "address": "0x5b180109332b079c44447f52a8adad5b1cd9dcfd", + "symbol": "LITH", + "decimals": 18, + "name": "Litherium", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x5b180109332b079c44447f52a8adad5b1cd9dcfd.png", + "aggregators": ["PancakeCoinMarketCap", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x167e5455e4c978883b414e7f02c0147eec9a18e9": { + "address": "0x167e5455e4c978883b414e7f02c0147eec9a18e9", + "symbol": "LTNV2", + "decimals": 18, + "name": "Life Token v2", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x167e5455e4c978883b414e7f02c0147eec9a18e9.png", + "aggregators": ["PancakeCoinMarketCap", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x037d70234eea7d05e8cd6796d89bc37a2ac45de9": { + "address": "0x037d70234eea7d05e8cd6796d89bc37a2ac45de9", + "symbol": "MAORABBIT", + "decimals": 18, + "name": "MaoRabbit", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x037d70234eea7d05e8cd6796d89bc37a2ac45de9.png", + "aggregators": ["PancakeCoinMarketCap", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x908ef6b57a6bb5b043ea6ef84142895b519c713c": { + "address": "0x908ef6b57a6bb5b043ea6ef84142895b519c713c", + "symbol": "MATCH", + "decimals": 18, + "name": "Matchcup", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x908ef6b57a6bb5b043ea6ef84142895b519c713c.png", + "aggregators": ["PancakeCoinMarketCap", "Rubic", "Rango"], + "occurrences": 3 + }, + "0xf3dbdf718667874e19ef368721a10409345fc218": { + "address": "0xf3dbdf718667874e19ef368721a10409345fc218", + "symbol": "MCA", + "decimals": 18, + "name": "MoveCash", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xf3dbdf718667874e19ef368721a10409345fc218.png", + "aggregators": ["PancakeCoinMarketCap", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x0557a288a93ed0df218785f2787dac1cd077f8f3": { + "address": "0x0557a288a93ed0df218785f2787dac1cd077f8f3", + "symbol": "MDB", + "decimals": 18, + "name": "MillionDollarBaby", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x0557a288a93ed0df218785f2787dac1cd077f8f3.png", + "aggregators": ["PancakeCoinMarketCap", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x079f0f5f3ad15e01a5cd919564a8f52dde03431b": { + "address": "0x079f0f5f3ad15e01a5cd919564a8f52dde03431b", + "symbol": "MEGA", + "decimals": 18, + "name": "MegaToken", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x079f0f5f3ad15e01a5cd919564a8f52dde03431b.png", + "aggregators": ["PancakeCoinMarketCap", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x347dc3036defc7ac9b28f4d83c65502827693414": { + "address": "0x347dc3036defc7ac9b28f4d83c65502827693414", + "symbol": "MEMEAI", + "decimals": 9, + "name": "Meme AI", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x347dc3036defc7ac9b28f4d83c65502827693414.png", + "aggregators": ["PancakeCoinMarketCap", "Rubic", "Rango"], + "occurrences": 3 + }, + "0xb1764342b981d2947bb69e68c470f0a907f08e5b": { + "address": "0xb1764342b981d2947bb69e68c470f0a907f08e5b", + "symbol": "MEMEMUSK", + "decimals": 9, + "name": "MEME MUSK", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xb1764342b981d2947bb69e68c470f0a907f08e5b.png", + "aggregators": ["PancakeCoinMarketCap", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x6f64cc61d0d5542e40e6f2828cbdda84507d214d": { + "address": "0x6f64cc61d0d5542e40e6f2828cbdda84507d214d", + "symbol": "METANIA", + "decimals": 9, + "name": "MetaniaGames", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x6f64cc61d0d5542e40e6f2828cbdda84507d214d.png", + "aggregators": ["PancakeCoinMarketCap", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x24ce3d571fbcfd9d81dc0e1a560504636a4d046d": { + "address": "0x24ce3d571fbcfd9d81dc0e1a560504636a4d046d", + "symbol": "METAPETS", + "decimals": 9, + "name": "METAPETS", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x24ce3d571fbcfd9d81dc0e1a560504636a4d046d.png", + "aggregators": ["PancakeCoinMarketCap", "Rubic", "Rango"], + "occurrences": 3 + }, + "0xf7a086bff67ded4aa785e8a0a81d4345d9bb4740": { + "address": "0xf7a086bff67ded4aa785e8a0a81d4345d9bb4740", + "symbol": "METASFM", + "decimals": 9, + "name": "MetaSafeMoon", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xf7a086bff67ded4aa785e8a0a81d4345d9bb4740.png", + "aggregators": ["PancakeCoinMarketCap", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x7082ff3a22e707136c80a9efcb215ec4c1fda810": { + "address": "0x7082ff3a22e707136c80a9efcb215ec4c1fda810", + "symbol": "METT", + "decimals": 9, + "name": "MetaThings", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x7082ff3a22e707136c80a9efcb215ec4c1fda810.png", + "aggregators": ["PancakeCoinMarketCap", "Rubic", "Rango"], + "occurrences": 3 + }, + "0xa528d8b9cd90b06d373373c37f8f188e44cad3be": { + "address": "0xa528d8b9cd90b06d373373c37f8f188e44cad3be", + "symbol": "MFB", + "decimals": 18, + "name": "Monster Ball", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xa528d8b9cd90b06d373373c37f8f188e44cad3be.png", + "aggregators": ["PancakeCoinMarketCap", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x6fe3d0f096fc932a905accd1eb1783f6e4cec717": { + "address": "0x6fe3d0f096fc932a905accd1eb1783f6e4cec717", + "symbol": "MILKY", + "decimals": 18, + "name": "Kawaii Milky Token", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x6fe3d0f096fc932a905accd1eb1783f6e4cec717.png", + "aggregators": ["PancakeCoinMarketCap", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x31e5e2b990cc9f03540b488fdc78d3806826f161": { + "address": "0x31e5e2b990cc9f03540b488fdc78d3806826f161", + "symbol": "MM", + "decimals": 18, + "name": "MetaMecha", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x31e5e2b990cc9f03540b488fdc78d3806826f161.png", + "aggregators": ["PancakeCoinMarketCap", "Rubic", "Rango"], + "occurrences": 3 + }, + "0xbe3fd4d1e0d244ddd98686a28f67355efe223346": { + "address": "0xbe3fd4d1e0d244ddd98686a28f67355efe223346", + "symbol": "MMC", + "decimals": 8, + "name": "Monopoly Millionaire Control", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xbe3fd4d1e0d244ddd98686a28f67355efe223346.png", + "aggregators": ["PancakeCoinMarketCap", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x67db74b6d1ea807cb47248489c99d144323d348d": { + "address": "0x67db74b6d1ea807cb47248489c99d144323d348d", + "symbol": "MMSC", + "decimals": 8, + "name": "MMS COIN", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x67db74b6d1ea807cb47248489c99d144323d348d.png", + "aggregators": ["PancakeCoinMarketCap", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x89e4818ed21f668d65f7851839d2dd8ce5d208b0": { + "address": "0x89e4818ed21f668d65f7851839d2dd8ce5d208b0", + "symbol": "MNTG", + "decimals": 18, + "name": "Monetas", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x89e4818ed21f668d65f7851839d2dd8ce5d208b0.png", + "aggregators": ["PancakeCoinMarketCap", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x256be284fea694f1bb11f76d556a28ecb496eee9": { + "address": "0x256be284fea694f1bb11f76d556a28ecb496eee9", + "symbol": "MNU", + "decimals": 18, + "name": "NirvanaMeta V2", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x256be284fea694f1bb11f76d556a28ecb496eee9.png", + "aggregators": ["PancakeCoinMarketCap", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x52b7c9d984ea17e9ee31159ca3fff3790981b64a": { + "address": "0x52b7c9d984ea17e9ee31159ca3fff3790981b64a", + "symbol": "MON", + "decimals": 18, + "name": "Medamon", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x52b7c9d984ea17e9ee31159ca3fff3790981b64a.png", + "aggregators": ["PancakeCoinMarketCap", "Rubic", "Rango"], + "occurrences": 3 + }, + "0xef843fb4c112e618b262f6897f479474e4586f05": { + "address": "0xef843fb4c112e618b262f6897f479474e4586f05", + "symbol": "MONA", + "decimals": 18, + "name": "Monaco Planet", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xef843fb4c112e618b262f6897f479474e4586f05.png", + "aggregators": ["PancakeCoinMarketCap", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x7317da9c15303bfb434690586c3373b94fb2dd31": { + "address": "0x7317da9c15303bfb434690586c3373b94fb2dd31", + "symbol": "MONO", + "decimals": 18, + "name": "MonoMoney", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x7317da9c15303bfb434690586c3373b94fb2dd31.png", + "aggregators": ["PancakeCoinMarketCap", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x34e942859469c9db9c22f4eaf866e2c2401bb795": { + "address": "0x34e942859469c9db9c22f4eaf866e2c2401bb795", + "symbol": "MOONER", + "decimals": 18, + "name": "CoinMooner", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x34e942859469c9db9c22f4eaf866e2c2401bb795.png", + "aggregators": ["PancakeCoinMarketCap", "Rubic", "Rango"], + "occurrences": 3 + }, + "0xd6163cec51f2e7c5974f3f4ce8fdb9c80abf142e": { + "address": "0xd6163cec51f2e7c5974f3f4ce8fdb9c80abf142e", + "symbol": "MORE", + "decimals": 18, + "name": "Mythic Ore", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xd6163cec51f2e7c5974f3f4ce8fdb9c80abf142e.png", + "aggregators": ["PancakeCoinMarketCap", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x16350ac2153a1d6322c90197129076b747d3222a": { + "address": "0x16350ac2153a1d6322c90197129076b747d3222a", + "symbol": "MORPHO", + "decimals": 18, + "name": "MORPHO NETWORK", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x16350ac2153a1d6322c90197129076b747d3222a.png", + "aggregators": ["PancakeCoinMarketCap", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x2b511aa476213e9081dd6a59a3739f0cb9d01162": { + "address": "0x2b511aa476213e9081dd6a59a3739f0cb9d01162", + "symbol": "MOVEY", + "decimals": 5, + "name": "MOVEY", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x2b511aa476213e9081dd6a59a3739f0cb9d01162.png", + "aggregators": ["PancakeCoinMarketCap", "Rubic", "Rango"], + "occurrences": 3 + }, + "0xe4b22193d68f18f8e8eb3a26f4d64cb6d4573022": { + "address": "0xe4b22193d68f18f8e8eb3a26f4d64cb6d4573022", + "symbol": "MOZ", + "decimals": 18, + "name": "MOZ", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xe4b22193d68f18f8e8eb3a26f4d64cb6d4573022.png", + "aggregators": ["PancakeCoinMarketCap", "Rubic", "Rango"], + "occurrences": 3 + }, + "0xa7aea81bb187bde731019ee0ca665c751179c102": { + "address": "0xa7aea81bb187bde731019ee0ca665c751179c102", + "symbol": "MPLAI", + "decimals": 18, + "name": "MetaPlanet AI", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xa7aea81bb187bde731019ee0ca665c751179c102.png", + "aggregators": ["PancakeCoinMarketCap", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x767b28a30e3a15dcece7bff7a020adfde9d19cf8": { + "address": "0x767b28a30e3a15dcece7bff7a020adfde9d19cf8", + "symbol": "MRXB", + "decimals": 8, + "name": "Wrapped Metrix", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x767b28a30e3a15dcece7bff7a020adfde9d19cf8.png", + "aggregators": ["PancakeCoinMarketCap", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x06ce168ff4ca760768f42c440d4266ba705e2f21": { + "address": "0x06ce168ff4ca760768f42c440d4266ba705e2f21", + "symbol": "MSHD", + "decimals": 9, + "name": "MSHD", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x06ce168ff4ca760768f42c440d4266ba705e2f21.png", + "aggregators": ["PancakeCoinMarketCap", "Rubic", "Rango"], + "occurrences": 3 + }, + "0xe37f5e9c1e8199bda350243aaa50076959ea13d2": { + "address": "0xe37f5e9c1e8199bda350243aaa50076959ea13d2", + "symbol": "MSZ", + "decimals": 9, + "name": "MegaShibaZilla", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xe37f5e9c1e8199bda350243aaa50076959ea13d2.png", + "aggregators": ["PancakeCoinMarketCap", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x4d4af26f52c7e96a5f42d7a70caa43f2dab5acb4": { + "address": "0x4d4af26f52c7e96a5f42d7a70caa43f2dab5acb4", + "symbol": "MTLS", + "decimals": 18, + "name": "METAL FRIENDS", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x4d4af26f52c7e96a5f42d7a70caa43f2dab5acb4.png", + "aggregators": ["PancakeCoinMarketCap", "Rubic", "Rango"], + "occurrences": 3 + }, + "0xca407a297ef2a3f2dfd24832e40e3fdc94448fb7": { + "address": "0xca407a297ef2a3f2dfd24832e40e3fdc94448fb7", + "symbol": "MUSKMEME", + "decimals": 9, + "name": "MUSK MEME", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xca407a297ef2a3f2dfd24832e40e3fdc94448fb7.png", + "aggregators": ["PancakeCoinMarketCap", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x0d4992e48278aa7f7c915f820743d9fab7fea713": { + "address": "0x0d4992e48278aa7f7c915f820743d9fab7fea713", + "symbol": "MZ", + "decimals": 8, + "name": "MetaZilla", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x0d4992e48278aa7f7c915f820743d9fab7fea713.png", + "aggregators": ["PancakeCoinMarketCap", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x3194e783fdbaff5edacb71afb6e4c8d7aa67ac61": { + "address": "0x3194e783fdbaff5edacb71afb6e4c8d7aa67ac61", + "symbol": "NANA", + "decimals": 18, + "name": "Bananace", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x3194e783fdbaff5edacb71afb6e4c8d7aa67ac61.png", + "aggregators": ["PancakeCoinMarketCap", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x6a061bc3bd2f90fc3fe0b305488c32d121d0093e": { + "address": "0x6a061bc3bd2f90fc3fe0b305488c32d121d0093e", + "symbol": "NETC", + "decimals": 18, + "name": "Network Capital Token", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x6a061bc3bd2f90fc3fe0b305488c32d121d0093e.png", + "aggregators": ["PancakeCoinMarketCap", "Rubic", "Rango"], + "occurrences": 3 + }, + "0xefdb93e14cd63b08561e86d3a30aae0f3aabad9a": { + "address": "0xefdb93e14cd63b08561e86d3a30aae0f3aabad9a", + "symbol": "NEXUS", + "decimals": 18, + "name": "NEXUSPAD PROTOCOL", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xefdb93e14cd63b08561e86d3a30aae0f3aabad9a.png", + "aggregators": ["PancakeCoinMarketCap", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x5d33e26336c445c71f206dd18b64ce11c2eee3f0": { + "address": "0x5d33e26336c445c71f206dd18b64ce11c2eee3f0", + "symbol": "NFTSTYLE", + "decimals": 18, + "name": "NFTStyle", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x5d33e26336c445c71f206dd18b64ce11c2eee3f0.png", + "aggregators": ["PancakeCoinMarketCap", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x02030d968558fd429eafa6e5b0c7a95a4903233b": { + "address": "0x02030d968558fd429eafa6e5b0c7a95a4903233b", + "symbol": "NGT", + "decimals": 18, + "name": "GoSleep NGT", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x02030d968558fd429eafa6e5b0c7a95a4903233b.png", + "aggregators": ["PancakeCoinMarketCap", "Rubic", "Rango"], + "occurrences": 3 + }, + "0xcb492c701f7fe71bc9c4b703b84b0da933ff26bb": { + "address": "0xcb492c701f7fe71bc9c4b703b84b0da933ff26bb", + "symbol": "NIMB", + "decimals": 18, + "name": "Nimbus Platform", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xcb492c701f7fe71bc9c4b703b84b0da933ff26bb.png", + "aggregators": ["PancakeCoinMarketCap", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x54e951e513bc09abaff971641947bc69e31068bd": { + "address": "0x54e951e513bc09abaff971641947bc69e31068bd", + "symbol": "ODYS", + "decimals": 18, + "name": "OdysseyWallet", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x54e951e513bc09abaff971641947bc69e31068bd.png", + "aggregators": ["PancakeCoinMarketCap", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x7758a52c1bb823d02878b67ad87b6ba37a0cdbf5": { + "address": "0x7758a52c1bb823d02878b67ad87b6ba37a0cdbf5", + "symbol": "OKG", + "decimals": 18, + "name": "Ookeenga", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x7758a52c1bb823d02878b67ad87b6ba37a0cdbf5.png", + "aggregators": ["PancakeCoinMarketCap", "Rubic", "Rango"], + "occurrences": 3 + }, + "0xb1d40b17d12375dec4c14cc273a461ca74a60c07": { + "address": "0xb1d40b17d12375dec4c14cc273a461ca74a60c07", + "symbol": "ONNO", + "decimals": 18, + "name": "Onno Vault", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xb1d40b17d12375dec4c14cc273a461ca74a60c07.png", + "aggregators": ["PancakeCoinMarketCap", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x20dd734594dadc69df313cd143b34a70a3d9214e": { + "address": "0x20dd734594dadc69df313cd143b34a70a3d9214e", + "symbol": "ORIGEN", + "decimals": 18, + "name": "Origen DEFI", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x20dd734594dadc69df313cd143b34a70a3d9214e.png", + "aggregators": ["PancakeCoinMarketCap", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x7e2afe446a30fa67600a5174df7f4002b8e15b03": { + "address": "0x7e2afe446a30fa67600a5174df7f4002b8e15b03", + "symbol": "ORME", + "decimals": 18, + "name": "Ormeus Coin", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x7e2afe446a30fa67600a5174df7f4002b8e15b03.png", + "aggregators": ["PancakeCoinMarketCap", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x8f2714b178676ba0f9cfb226f6519b92dd8def9d": { + "address": "0x8f2714b178676ba0f9cfb226f6519b92dd8def9d", + "symbol": "PANDA", + "decimals": 18, + "name": "Big Panda", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x8f2714b178676ba0f9cfb226f6519b92dd8def9d.png", + "aggregators": ["PancakeCoinMarketCap", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x44f0e42ea6fd05f8fc5a03697438487d04632dc5": { + "address": "0x44f0e42ea6fd05f8fc5a03697438487d04632dc5", + "symbol": "PAYBIT", + "decimals": 18, + "name": "PAY BIT", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x44f0e42ea6fd05f8fc5a03697438487d04632dc5.png", + "aggregators": ["PancakeCoinMarketCap", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x3d780eb7deef5d2fa1194e4b4b739f919bc81f00": { + "address": "0x3d780eb7deef5d2fa1194e4b4b739f919bc81f00", + "symbol": "PDRAGON", + "decimals": 18, + "name": "Phoenix Dragon", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x3d780eb7deef5d2fa1194e4b4b739f919bc81f00.png", + "aggregators": ["PancakeCoinMarketCap", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x2a374d02e244aaa175b38ba1ba9ee443d20e7e41": { + "address": "0x2a374d02e244aaa175b38ba1ba9ee443d20e7e41", + "symbol": "PEACH", + "decimals": 9, + "name": "Peach Inu", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x2a374d02e244aaa175b38ba1ba9ee443d20e7e41.png", + "aggregators": ["PancakeCoinMarketCap", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x03887c177c18140209c0f93adc230d4c5515bf4a": { + "address": "0x03887c177c18140209c0f93adc230d4c5515bf4a", + "symbol": "PEG", + "decimals": 18, + "name": "Pegasus", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x03887c177c18140209c0f93adc230d4c5515bf4a.png", + "aggregators": ["PancakeCoinMarketCap", "Rubic", "Rango"], + "occurrences": 3 + }, + "0xc9c0133f5d5227b059bffee0dbdcfc3f6a8ba434": { + "address": "0xc9c0133f5d5227b059bffee0dbdcfc3f6a8ba434", + "symbol": "PEPEDASHAI", + "decimals": 18, + "name": "Pepe Dash AI", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xc9c0133f5d5227b059bffee0dbdcfc3f6a8ba434.png", + "aggregators": ["PancakeCoinMarketCap", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x4e2434294a722329b6b64e0c2fca51b2533d7015": { + "address": "0x4e2434294a722329b6b64e0c2fca51b2533d7015", + "symbol": "PEPEF", + "decimals": 18, + "name": "PEPEFLOKI", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x4e2434294a722329b6b64e0c2fca51b2533d7015.png", + "aggregators": ["PancakeCoinMarketCap", "Rubic", "Rango"], + "occurrences": 3 + }, + "0xdd80c9625e13db655840ed47af90cc78702367ed": { + "address": "0xdd80c9625e13db655840ed47af90cc78702367ed", + "symbol": "PEPELON", + "decimals": 9, + "name": "Pepelon", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xdd80c9625e13db655840ed47af90cc78702367ed.png", + "aggregators": ["PancakeCoinMarketCap", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x54bb6c8551712ab214950cd7acf8493ef4e7e3ae": { + "address": "0x54bb6c8551712ab214950cd7acf8493ef4e7e3ae", + "symbol": "PIF", + "decimals": 18, + "name": "Pepe Wif Hat", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x54bb6c8551712ab214950cd7acf8493ef4e7e3ae.png", + "aggregators": ["PancakeCoinMarketCap", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x25c30340e6f9f6e521827cf03282943da00c0ece": { + "address": "0x25c30340e6f9f6e521827cf03282943da00c0ece", + "symbol": "PIP", + "decimals": 18, + "name": "Pi Protocol", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x25c30340e6f9f6e521827cf03282943da00c0ece.png", + "aggregators": ["PancakeCoinMarketCap", "Rubic", "Rango"], + "occurrences": 3 + }, + "0xb27b68431c9a1819c8633ff75a2dd14f54799a21": { + "address": "0xb27b68431c9a1819c8633ff75a2dd14f54799a21", + "symbol": "PIRA", + "decimals": 18, + "name": "Piratera", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xb27b68431c9a1819c8633ff75a2dd14f54799a21.png", + "aggregators": ["PancakeCoinMarketCap", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x1dc5779ed65bcc1f0a42d654444fb0ce59d7783b": { + "address": "0x1dc5779ed65bcc1f0a42d654444fb0ce59d7783b", + "symbol": "PMR", + "decimals": 18, + "name": "Pomerium Utility Token", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x1dc5779ed65bcc1f0a42d654444fb0ce59d7783b.png", + "aggregators": ["PancakeCoinMarketCap", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x76d36d44dc4595e8d2eb3ad745f175eda134284f": { + "address": "0x76d36d44dc4595e8d2eb3ad745f175eda134284f", + "symbol": "PNIC", + "decimals": 18, + "name": "Phoenic Token", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x76d36d44dc4595e8d2eb3ad745f175eda134284f.png", + "aggregators": ["PancakeCoinMarketCap", "Rubic", "Rango"], + "occurrences": 3 + }, + "0xb28a7f8f5328faffdd862985177583c2bb71e016": { + "address": "0xb28a7f8f5328faffdd862985177583c2bb71e016", + "symbol": "POLO", + "decimals": 18, + "name": "NftyPlay", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xb28a7f8f5328faffdd862985177583c2bb71e016.png", + "aggregators": ["PancakeCoinMarketCap", "Rubic", "Rango"], + "occurrences": 3 + }, + "0xefd1c4bc2d22639ea86b70e249eec0ccabf54f06": { + "address": "0xefd1c4bc2d22639ea86b70e249eec0ccabf54f06", + "symbol": "PPAI", + "decimals": 9, + "name": "Plug Power AI", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xefd1c4bc2d22639ea86b70e249eec0ccabf54f06.png", + "aggregators": ["PancakeCoinMarketCap", "Rubic", "Rango"], + "occurrences": 3 + }, + "0xbdd2e3fdb879aa42748e9d47b7359323f226ba22": { + "address": "0xbdd2e3fdb879aa42748e9d47b7359323f226ba22", + "symbol": "PRED", + "decimals": 18, + "name": "Predictcoin", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xbdd2e3fdb879aa42748e9d47b7359323f226ba22.png", + "aggregators": ["PancakeCoinMarketCap", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x3cf04a59b7bfd6299be4a2104b6e1ca1334750e3": { + "address": "0x3cf04a59b7bfd6299be4a2104b6e1ca1334750e3", + "symbol": "PROTON", + "decimals": 18, + "name": "Proton Protocol", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x3cf04a59b7bfd6299be4a2104b6e1ca1334750e3.png", + "aggregators": ["PancakeCoinMarketCap", "Rubic", "Rango"], + "occurrences": 3 + }, + "0xb72ba371c900aa68bb9fa473e93cfbe212030fcb": { + "address": "0xb72ba371c900aa68bb9fa473e93cfbe212030fcb", + "symbol": "PSR", + "decimals": 18, + "name": "Pandora Spirit", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xb72ba371c900aa68bb9fa473e93cfbe212030fcb.png", + "aggregators": ["PancakeCoinMarketCap", "LiFi", "Rubic"], + "occurrences": 3 + }, + "0x3843f234b35a311e195608d32283a68284b3c44d": { + "address": "0x3843f234b35a311e195608d32283a68284b3c44d", + "symbol": "PTA", + "decimals": 9, + "name": "La Peseta", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x3843f234b35a311e195608d32283a68284b3c44d.png", + "aggregators": ["PancakeCoinMarketCap", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x92400f8b8c4658153c10c98500b63ac9f87571c2": { + "address": "0x92400f8b8c4658153c10c98500b63ac9f87571c2", + "symbol": "PTOOLS", + "decimals": 18, + "name": "Pricetools", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x92400f8b8c4658153c10c98500b63ac9f87571c2.png", + "aggregators": ["PancakeCoinMarketCap", "Rubic", "Rango"], + "occurrences": 3 + }, + "0xa469d8e55afcd58003d6cbdc770c0ecc2dd71945": { + "address": "0xa469d8e55afcd58003d6cbdc770c0ecc2dd71945", + "symbol": "PTX", + "decimals": 8, + "name": "PLATINX", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xa469d8e55afcd58003d6cbdc770c0ecc2dd71945.png", + "aggregators": ["PancakeCoinMarketCap", "Rubic", "Rango"], + "occurrences": 3 + }, + "0xba7e020d5a463f29535b35137ccb4aa6f4359272": { + "address": "0xba7e020d5a463f29535b35137ccb4aa6f4359272", + "symbol": "PULSE", + "decimals": 18, + "name": "PulseFolio", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xba7e020d5a463f29535b35137ccb4aa6f4359272.png", + "aggregators": ["PancakeCoinMarketCap", "Rubic", "Rango"], + "occurrences": 3 + }, + "0xb4e14166f6de109f800c52a84a434c383137c8dc": { + "address": "0xb4e14166f6de109f800c52a84a434c383137c8dc", + "symbol": "PVT", + "decimals": 18, + "name": "PAYVERTISE", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xb4e14166f6de109f800c52a84a434c383137c8dc.png", + "aggregators": ["PancakeCoinMarketCap", "Rubic", "Rango"], + "occurrences": 3 + }, + "0xea917ec08ab64c030e67a80559ad569f48aa360a": { + "address": "0xea917ec08ab64c030e67a80559ad569f48aa360a", + "symbol": "PWT", + "decimals": 18, + "name": "Perpetual Wallet", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xea917ec08ab64c030e67a80559ad569f48aa360a.png", + "aggregators": ["PancakeCoinMarketCap", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x238f5cc8bd082895d1f832cef967e7bb7ba4f992": { + "address": "0x238f5cc8bd082895d1f832cef967e7bb7ba4f992", + "symbol": "QATARGROW", + "decimals": 18, + "name": "QatarGrow", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x238f5cc8bd082895d1f832cef967e7bb7ba4f992.png", + "aggregators": ["PancakeCoinMarketCap", "Rubic", "Rango"], + "occurrences": 3 + }, + "0xcfa65d49541a0a930a19321c797e442123822fb4": { + "address": "0xcfa65d49541a0a930a19321c797e442123822fb4", + "symbol": "QUACKS", + "decimals": 18, + "name": "STAR QUACK", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xcfa65d49541a0a930a19321c797e442123822fb4.png", + "aggregators": ["PancakeCoinMarketCap", "Rubic", "Rango"], + "occurrences": 3 + }, + "0xf8f95f20cd1fb6f1fa6f7776c359214220f49aa6": { + "address": "0xf8f95f20cd1fb6f1fa6f7776c359214220f49aa6", + "symbol": "RABBIT", + "decimals": 9, + "name": "Gangs Rabbit", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xf8f95f20cd1fb6f1fa6f7776c359214220f49aa6.png", + "aggregators": ["PancakeCoinMarketCap", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x626cab57051e80f4b84551856588b62983bdb94e": { + "address": "0x626cab57051e80f4b84551856588b62983bdb94e", + "symbol": "RB", + "decimals": 18, + "name": "RabbitKing", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x626cab57051e80f4b84551856588b62983bdb94e.png", + "aggregators": ["PancakeCoinMarketCap", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x92da433da84d58dfe2aade1943349e491cbd6820": { + "address": "0x92da433da84d58dfe2aade1943349e491cbd6820", + "symbol": "RDR", + "decimals": 18, + "name": "Rise of Defenders Token", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x92da433da84d58dfe2aade1943349e491cbd6820.png", + "aggregators": ["PancakeCoinMarketCap", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x3c0fe6c4acd3a21615a51372d2a430eb68ccde43": { + "address": "0x3c0fe6c4acd3a21615a51372d2a430eb68ccde43", + "symbol": "REDFLOKICEO", + "decimals": 9, + "name": "Red Floki CEO", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x3c0fe6c4acd3a21615a51372d2a430eb68ccde43.png", + "aggregators": ["PancakeCoinMarketCap", "Rubic", "Rango"], + "occurrences": 3 + }, + "0xd3513dc0df25f60c71822e7bacac14f9391845ff": { + "address": "0xd3513dc0df25f60c71822e7bacac14f9391845ff", + "symbol": "REELFI", + "decimals": 18, + "name": "ReelFi", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xd3513dc0df25f60c71822e7bacac14f9391845ff.png", + "aggregators": ["PancakeCoinMarketCap", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x6eda890c7c914e9c6b42415d2a3273b022e7b5e7": { + "address": "0x6eda890c7c914e9c6b42415d2a3273b022e7b5e7", + "symbol": "RISITA", + "decimals": 18, + "name": "Risitas Coin", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x6eda890c7c914e9c6b42415d2a3273b022e7b5e7.png", + "aggregators": ["PancakeCoinMarketCap", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x1476e96fadb37668d7680921297e2ab98ec36c2f": { + "address": "0x1476e96fadb37668d7680921297e2ab98ec36c2f", + "symbol": "RLOKI", + "decimals": 18, + "name": "Floki Rocket", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x1476e96fadb37668d7680921297e2ab98ec36c2f.png", + "aggregators": ["PancakeCoinMarketCap", "Rubic", "Rango"], + "occurrences": 3 + }, + "0xfc111b40ad299572f74f1c119c036508c621bb19": { + "address": "0xfc111b40ad299572f74f1c119c036508c621bb19", + "symbol": "ROC", + "decimals": 18, + "name": "Rocket Raccoon", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xfc111b40ad299572f74f1c119c036508c621bb19.png", + "aggregators": ["PancakeCoinMarketCap", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x267022751e06d97b9ee4e5f26cc1023670bdb349": { + "address": "0x267022751e06d97b9ee4e5f26cc1023670bdb349", + "symbol": "RPS", + "decimals": 18, + "name": "RPS LEAGUE", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x267022751e06d97b9ee4e5f26cc1023670bdb349.png", + "aggregators": ["PancakeCoinMarketCap", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x80aa21b19c2fa7aa29a654859ffec161aa6f04a4": { + "address": "0x80aa21b19c2fa7aa29a654859ffec161aa6f04a4", + "symbol": "RULE", + "decimals": 18, + "name": "Rule", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x80aa21b19c2fa7aa29a654859ffec161aa6f04a4.png", + "aggregators": ["PancakeCoinMarketCap", "Rubic", "Rango"], + "occurrences": 3 + }, + "0xff12afb3841b737289d1b02dfedbe4c85a8ec6e6": { + "address": "0xff12afb3841b737289d1b02dfedbe4c85a8ec6e6", + "symbol": "SABA", + "decimals": 18, + "name": "Saba Finance", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xff12afb3841b737289d1b02dfedbe4c85a8ec6e6.png", + "aggregators": ["PancakeCoinMarketCap", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x8ae14ce43f71201bb79babd00cc8d00a7fadb3bd": { + "address": "0x8ae14ce43f71201bb79babd00cc8d00a7fadb3bd", + "symbol": "SAVANTAI", + "decimals": 9, + "name": "Savant AI", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x8ae14ce43f71201bb79babd00cc8d00a7fadb3bd.png", + "aggregators": ["PancakeCoinMarketCap", "Rubic", "Rango"], + "occurrences": 3 + }, + "0xa4d92138537bb0bbeaeab095381be422d785e7c4": { + "address": "0xa4d92138537bb0bbeaeab095381be422d785e7c4", + "symbol": "SDXB", + "decimals": 18, + "name": "SwapDEX", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xa4d92138537bb0bbeaeab095381be422d785e7c4.png", + "aggregators": ["PancakeCoinMarketCap", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x2fc9e0f34d86f65b495de7ee3bb5cbeac7f92b04": { + "address": "0x2fc9e0f34d86f65b495de7ee3bb5cbeac7f92b04", + "symbol": "SEAMLESS", + "decimals": 18, + "name": "SeamlessSwap", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x2fc9e0f34d86f65b495de7ee3bb5cbeac7f92b04.png", + "aggregators": ["PancakeCoinMarketCap", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x0cbfdea4f45a486cc7db53cb6e37b312a137c605": { + "address": "0x0cbfdea4f45a486cc7db53cb6e37b312a137c605", + "symbol": "SEEDX", + "decimals": 18, + "name": "SEEDx", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x0cbfdea4f45a486cc7db53cb6e37b312a137c605.png", + "aggregators": ["PancakeCoinMarketCap", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x5a8261214a6c5fe68a6a4c81aec4f68bcd73ebc1": { + "address": "0x5a8261214a6c5fe68a6a4c81aec4f68bcd73ebc1", + "symbol": "SHFLCN", + "decimals": 18, + "name": "ShibFalcon", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x5a8261214a6c5fe68a6a4c81aec4f68bcd73ebc1.png", + "aggregators": ["PancakeCoinMarketCap", "Rubic", "Rango"], + "occurrences": 3 + }, + "0xbef05cf52d8b244eeca6033fb8b9b69e1974f681": { + "address": "0xbef05cf52d8b244eeca6033fb8b9b69e1974f681", + "symbol": "SHIBCEO", + "decimals": 9, + "name": "Shiba CEO", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xbef05cf52d8b244eeca6033fb8b9b69e1974f681.png", + "aggregators": ["PancakeCoinMarketCap", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x0151f08a29142e07d075664e2ecf3c949635c31e": { + "address": "0x0151f08a29142e07d075664e2ecf3c949635c31e", + "symbol": "SHIBOT", + "decimals": 9, + "name": "SHIBOT", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x0151f08a29142e07d075664e2ecf3c949635c31e.png", + "aggregators": ["PancakeCoinMarketCap", "Rubic", "Rango"], + "occurrences": 3 + }, + "0xf2e00684457de1a3c87361bc4bfe2de92342306c": { + "address": "0xf2e00684457de1a3c87361bc4bfe2de92342306c", + "symbol": "SHIELDNET", + "decimals": 18, + "name": "Shield Network", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xf2e00684457de1a3c87361bc4bfe2de92342306c.png", + "aggregators": ["PancakeCoinMarketCap", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x1b2fdb1626285b94782af2fda8e270e95cebc3b4": { + "address": "0x1b2fdb1626285b94782af2fda8e270e95cebc3b4", + "symbol": "SKMT", + "decimals": 18, + "name": "Soakmont", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x1b2fdb1626285b94782af2fda8e270e95cebc3b4.png", + "aggregators": ["PancakeCoinMarketCap", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x940580db429da7fa8662d66f7a4d312443f09f52": { + "address": "0x940580db429da7fa8662d66f7a4d312443f09f52", + "symbol": "SLGO", + "decimals": 18, + "name": "Solalgo", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x940580db429da7fa8662d66f7a4d312443f09f52.png", + "aggregators": ["PancakeCoinMarketCap", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x4a76a1eaa365c10bd9b895acab5760d52ff2f7c9": { + "address": "0x4a76a1eaa365c10bd9b895acab5760d52ff2f7c9", + "symbol": "SM96", + "decimals": 9, + "name": "Safemoon 1996", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x4a76a1eaa365c10bd9b895acab5760d52ff2f7c9.png", + "aggregators": ["PancakeCoinMarketCap", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x3d0e93bfcb8fb46331ea8c98b6ab8c575ab424c3": { + "address": "0x3d0e93bfcb8fb46331ea8c98b6ab8c575ab424c3", + "symbol": "SMASH", + "decimals": 18, + "name": "Smash Cash", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x3d0e93bfcb8fb46331ea8c98b6ab8c575ab424c3.png", + "aggregators": ["PancakeCoinMarketCap", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x515e62a3ac560fd5df08536d08336e63aed3b182": { + "address": "0x515e62a3ac560fd5df08536d08336e63aed3b182", + "symbol": "SMPF", + "decimals": 18, + "name": "SMP Finance", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x515e62a3ac560fd5df08536d08336e63aed3b182.png", + "aggregators": ["PancakeCoinMarketCap", "Rubic", "Rango"], + "occurrences": 3 + }, + "0xd5cbae3f69b0640724a6532cc81be9c798a755a7": { + "address": "0xd5cbae3f69b0640724a6532cc81be9c798a755a7", + "symbol": "SNS", + "decimals": 18, + "name": "SING NFT SHOW", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xd5cbae3f69b0640724a6532cc81be9c798a755a7.png", + "aggregators": ["PancakeCoinMarketCap", "Socket", "Rubic"], + "occurrences": 3 + }, + "0x45d51acc587574536cb292500d35dd3060796c63": { + "address": "0x45d51acc587574536cb292500d35dd3060796c63", + "symbol": "SNX", + "decimals": 18, + "name": "SincroniX", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x45d51acc587574536cb292500d35dd3060796c63.png", + "aggregators": ["PancakeCoinMarketCap", "Rubic", "Rango"], + "occurrences": 3 + }, + "0xde1a0f6c7078c5da0a6236eeb04261f4699905c5": { + "address": "0xde1a0f6c7078c5da0a6236eeb04261f4699905c5", + "symbol": "SOT", + "decimals": 18, + "name": "Soccer Crypto", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xde1a0f6c7078c5da0a6236eeb04261f4699905c5.png", + "aggregators": ["PancakeCoinMarketCap", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x178fbe1cf4775fbdb9756d6349195a05799c0fe5": { + "address": "0x178fbe1cf4775fbdb9756d6349195a05799c0fe5", + "symbol": "SPENT", + "decimals": 18, + "name": "Espento", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x178fbe1cf4775fbdb9756d6349195a05799c0fe5.png", + "aggregators": ["PancakeCoinMarketCap", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x0ecaf010fc192e2d5cbeb4dfb1fee20fbd733aa1": { + "address": "0x0ecaf010fc192e2d5cbeb4dfb1fee20fbd733aa1", + "symbol": "SPG", + "decimals": 18, + "name": "SPG", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x0ecaf010fc192e2d5cbeb4dfb1fee20fbd733aa1.png", + "aggregators": ["PancakeCoinMarketCap", "Rubic", "Rango"], + "occurrences": 3 + }, + "0xe19a9626aef55e20400a3b82a25c003403e88b7f": { + "address": "0xe19a9626aef55e20400a3b82a25c003403e88b7f", + "symbol": "SPIN", + "decimals": 18, + "name": "Spinada.cash", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xe19a9626aef55e20400a3b82a25c003403e88b7f.png", + "aggregators": ["PancakeCoinMarketCap", "Rubic", "Rango"], + "occurrences": 3 + }, + "0xe1bb77c8e012c1514373a40cfbb8645293075125": { + "address": "0xe1bb77c8e012c1514373a40cfbb8645293075125", + "symbol": "SPORTS-AI", + "decimals": 18, + "name": "Sports Artificial", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xe1bb77c8e012c1514373a40cfbb8645293075125.png", + "aggregators": ["PancakeCoinMarketCap", "Rubic", "Rango"], + "occurrences": 3 + }, + "0xd63cdf02853d759831550fae7df8fffe0b317b39": { + "address": "0xd63cdf02853d759831550fae7df8fffe0b317b39", + "symbol": "SRM", + "decimals": 6, + "name": "Serum", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xd63cdf02853d759831550fae7df8fffe0b317b39.png", + "aggregators": ["PancakeCoinMarketCap", "Rubic", "Rango"], + "occurrences": 3 + }, + "0xebc148d40313be9c9f214d3beb9f2ddebec0ec52": { + "address": "0xebc148d40313be9c9f214d3beb9f2ddebec0ec52", + "symbol": "STAI", + "decimals": 18, + "name": "StereoAI", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xebc148d40313be9c9f214d3beb9f2ddebec0ec52.png", + "aggregators": ["PancakeCoinMarketCap", "Rubic", "Rango"], + "occurrences": 3 + }, + "0xb0a480e2fa5af51c733a0af9fcb4de62bc48c38b": { + "address": "0xb0a480e2fa5af51c733a0af9fcb4de62bc48c38b", + "symbol": "STARLY", + "decimals": 8, + "name": "Starly", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xb0a480e2fa5af51c733a0af9fcb4de62bc48c38b.png", + "aggregators": ["PancakeCoinMarketCap", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x9731b59a10833ef635b2d0fb6f87716876a2d5e1": { + "address": "0x9731b59a10833ef635b2d0fb6f87716876a2d5e1", + "symbol": "STARSHIP", + "decimals": 9, + "name": "Starship", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x9731b59a10833ef635b2d0fb6f87716876a2d5e1.png", + "aggregators": ["PancakeCoinMarketCap", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x7deb9906bd1d77b410a56e5c23c36340bd60c983": { + "address": "0x7deb9906bd1d77b410a56e5c23c36340bd60c983", + "symbol": "STATIC", + "decimals": 18, + "name": "Static", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x7deb9906bd1d77b410a56e5c23c36340bd60c983.png", + "aggregators": ["PancakeCoinMarketCap", "Rubic", "Rango"], + "occurrences": 3 + }, + "0xdc42c3a92c4a03f9b9f3fbaba0125286fdaa6772": { + "address": "0xdc42c3a92c4a03f9b9f3fbaba0125286fdaa6772", + "symbol": "STINK", + "decimals": 18, + "name": "Drunk Skunks DC", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xdc42c3a92c4a03f9b9f3fbaba0125286fdaa6772.png", + "aggregators": ["PancakeCoinMarketCap", "Rubic", "Rango"], + "occurrences": 3 + }, + "0xd18dcd429c4c44b98242042cc35a3e03bfabdb08": { + "address": "0xd18dcd429c4c44b98242042cc35a3e03bfabdb08", + "symbol": "STKC", + "decimals": 18, + "name": "Streakk Chain", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xd18dcd429c4c44b98242042cc35a3e03bfabdb08.png", + "aggregators": ["PancakeCoinMarketCap", "Rubic", "Rango"], + "occurrences": 3 + }, + "0xd83cec69ed9d8044597a793445c86a5e763b0e3d": { + "address": "0xd83cec69ed9d8044597a793445c86a5e763b0e3d", + "symbol": "STOPELON", + "decimals": 9, + "name": "StopElon", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xd83cec69ed9d8044597a793445c86a5e763b0e3d.png", + "aggregators": ["PancakeCoinMarketCap", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x716de634227c1831f78d1989c92c6495e279a084": { + "address": "0x716de634227c1831f78d1989c92c6495e279a084", + "symbol": "SWS", + "decimals": 18, + "name": "SwiftSwap", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x716de634227c1831f78d1989c92c6495e279a084.png", + "aggregators": ["PancakeCoinMarketCap", "Rubic", "Rango"], + "occurrences": 3 + }, + "0xe82546b56b1b8a5f031bcd23ff6332282cb0124b": { + "address": "0xe82546b56b1b8a5f031bcd23ff6332282cb0124b", + "symbol": "SYNCBRAIN", + "decimals": 18, + "name": "Brain Sync", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xe82546b56b1b8a5f031bcd23ff6332282cb0124b.png", + "aggregators": ["PancakeCoinMarketCap", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x7606267a4bfff2c5010c92924348c3e4221955f2": { + "address": "0x7606267a4bfff2c5010c92924348c3e4221955f2", + "symbol": "TALK", + "decimals": 9, + "name": "Talkado", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x7606267a4bfff2c5010c92924348c3e4221955f2.png", + "aggregators": ["PancakeCoinMarketCap", "Rubic", "Rango"], + "occurrences": 3 + }, + "0xd20738760aededa73f6cd91a3d357746e0283a0e": { + "address": "0xd20738760aededa73f6cd91a3d357746e0283a0e", + "symbol": "TANKS", + "decimals": 18, + "name": "Tanks For Playing", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xd20738760aededa73f6cd91a3d357746e0283a0e.png", + "aggregators": ["PancakeCoinMarketCap", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x2fc00683e0b83a5472cefaf083babe3be9e7dfa6": { + "address": "0x2fc00683e0b83a5472cefaf083babe3be9e7dfa6", + "symbol": "TARM", + "decimals": 18, + "name": "Tarmex", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x2fc00683e0b83a5472cefaf083babe3be9e7dfa6.png", + "aggregators": ["PancakeCoinMarketCap", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x55a633b3fce52144222e468a326105aa617cc1cc": { + "address": "0x55a633b3fce52144222e468a326105aa617cc1cc", + "symbol": "TRUTH", + "decimals": 18, + "name": "TRUTH SEEKERS", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x55a633b3fce52144222e468a326105aa617cc1cc.png", + "aggregators": ["PancakeCoinMarketCap", "Rubic", "Rango"], + "occurrences": 3 + }, + "0xd618ad98e6557532d3c65e88bf1ff765724f21c9": { + "address": "0xd618ad98e6557532d3c65e88bf1ff765724f21c9", + "symbol": "TTAI", + "decimals": 18, + "name": "Trade Tech AI", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xd618ad98e6557532d3c65e88bf1ff765724f21c9.png", + "aggregators": ["PancakeCoinMarketCap", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x50a9eb8a53f2c2993f46b354bd5f24f1c880bf24": { + "address": "0x50a9eb8a53f2c2993f46b354bd5f24f1c880bf24", + "symbol": "TTN", + "decimals": 9, + "name": "TeleTreon", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x50a9eb8a53f2c2993f46b354bd5f24f1c880bf24.png", + "aggregators": ["PancakeCoinMarketCap", "Rubic", "Rango"], + "occurrences": 3 + }, + "0xf4ff4a33dcf849e6af763a266c0ee6628811fe79": { + "address": "0xf4ff4a33dcf849e6af763a266c0ee6628811fe79", + "symbol": "TW", + "decimals": 18, + "name": "Winners Coin", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xf4ff4a33dcf849e6af763a266c0ee6628811fe79.png", + "aggregators": ["PancakeCoinMarketCap", "Rubic", "Rango"], + "occurrences": 3 + }, + "0xd2ed1973d55488b7118ea81d5a30cd7b61c68a49": { + "address": "0xd2ed1973d55488b7118ea81d5a30cd7b61c68a49", + "symbol": "ULTRON", + "decimals": 18, + "name": "Ultron Vault", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xd2ed1973d55488b7118ea81d5a30cd7b61c68a49.png", + "aggregators": ["PancakeCoinMarketCap", "Rubic", "Rango"], + "occurrences": 3 + }, + "0xf8759de7f2c8d3f32fd8f8e4c0c02d436a05ddeb": { + "address": "0xf8759de7f2c8d3f32fd8f8e4c0c02d436a05ddeb", + "symbol": "URUB", + "decimals": 8, + "name": "Urubit", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xf8759de7f2c8d3f32fd8f8e4c0c02d436a05ddeb.png", + "aggregators": ["PancakeCoinMarketCap", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x2d3b329aed5d62945f35104cb73514f507929841": { + "address": "0x2d3b329aed5d62945f35104cb73514f507929841", + "symbol": "USDT", + "decimals": 18, + "name": "Tether USD", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x2d3b329aed5d62945f35104cb73514f507929841.png", + "aggregators": ["PancakeCoinMarketCap", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x9a2a3813ba02add52907f6cf8fa5358856a673bc": { + "address": "0x9a2a3813ba02add52907f6cf8fa5358856a673bc", + "symbol": "VFLOW", + "decimals": 18, + "name": "ValueFlow", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x9a2a3813ba02add52907f6cf8fa5358856a673bc.png", + "aggregators": ["PancakeCoinMarketCap", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x86fac768241b4133d131edccbd47f143a4fa9d32": { + "address": "0x86fac768241b4133d131edccbd47f143a4fa9d32", + "symbol": "WARC", + "decimals": 18, + "name": "WrappedARC", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x86fac768241b4133d131edccbd47f143a4fa9d32.png", + "aggregators": ["PancakeCoinMarketCap", "Rubic", "Rango"], + "occurrences": 3 + }, + "0xfc12242996ed64382286d765572f19e9b843f196": { + "address": "0xfc12242996ed64382286d765572f19e9b843f196", + "symbol": "WDF", + "decimals": 18, + "name": "Wallet Defi", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xfc12242996ed64382286d765572f19e9b843f196.png", + "aggregators": ["PancakeCoinMarketCap", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x7c5e8a22a4e8f9da2797a9e30e9d64abf5493c43": { + "address": "0x7c5e8a22a4e8f9da2797a9e30e9d64abf5493c43", + "symbol": "WEBAI", + "decimals": 18, + "name": "Web Ai", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x7c5e8a22a4e8f9da2797a9e30e9d64abf5493c43.png", + "aggregators": ["PancakeCoinMarketCap", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x637c2173f6e678ac3c9b43b6665c760dc6021c13": { + "address": "0x637c2173f6e678ac3c9b43b6665c760dc6021c13", + "symbol": "WMT", + "decimals": 6, + "name": "worldmobiletoken", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x637c2173f6e678ac3c9b43b6665c760dc6021c13.png", + "aggregators": ["PancakeCoinMarketCap", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x6ad2b6d5d8f96c8e581d3100c12878b2151a0423": { + "address": "0x6ad2b6d5d8f96c8e581d3100c12878b2151a0423", + "symbol": "WOLFIES", + "decimals": 18, + "name": "Wolf Pups", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x6ad2b6d5d8f96c8e581d3100c12878b2151a0423.png", + "aggregators": ["PancakeCoinMarketCap", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x5c0d3c165dc46cfd5ec80bbb1bf7cb8631f9d6c7": { + "address": "0x5c0d3c165dc46cfd5ec80bbb1bf7cb8631f9d6c7", + "symbol": "WSAFU", + "decimals": 18, + "name": "Wallet SAFU", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x5c0d3c165dc46cfd5ec80bbb1bf7cb8631f9d6c7.png", + "aggregators": ["PancakeCoinMarketCap", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x421f9d1b2147f534e3aefc6af95edd4cf2430874": { + "address": "0x421f9d1b2147f534e3aefc6af95edd4cf2430874", + "symbol": "WWE", + "decimals": 9, + "name": "Wrestling Shiba", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x421f9d1b2147f534e3aefc6af95edd4cf2430874.png", + "aggregators": ["PancakeCoinMarketCap", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x9dcd6ab0511b2e72af3d088538d678bae9bbf552": { + "address": "0x9dcd6ab0511b2e72af3d088538d678bae9bbf552", + "symbol": "XCB", + "decimals": 18, + "name": "CryptoBirdToken", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x9dcd6ab0511b2e72af3d088538d678bae9bbf552.png", + "aggregators": ["PancakeCoinMarketCap", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x1b818cecf52e3b47ee47f7c909e023e4d1b3027c": { + "address": "0x1b818cecf52e3b47ee47f7c909e023e4d1b3027c", + "symbol": "XCE", + "decimals": 18, + "name": "xrpcashone", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x1b818cecf52e3b47ee47f7c909e023e4d1b3027c.png", + "aggregators": ["PancakeCoinMarketCap", "Rubic", "Rango"], + "occurrences": 3 + }, + "0xf5c924b00fa2712b685bbe800d268046f06eb549": { + "address": "0xf5c924b00fa2712b685bbe800d268046f06eb549", + "symbol": "XDOG", + "decimals": 9, + "name": "XDOG", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xf5c924b00fa2712b685bbe800d268046f06eb549.png", + "aggregators": ["PancakeCoinMarketCap", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x2e2ea48c9412e0abb2d6acccec571c6b6411725a": { + "address": "0x2e2ea48c9412e0abb2d6acccec571c6b6411725a", + "symbol": "XLN", + "decimals": 9, + "name": "LunaOne", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x2e2ea48c9412e0abb2d6acccec571c6b6411725a.png", + "aggregators": ["PancakeCoinMarketCap", "Rubic", "Rango"], + "occurrences": 3 + }, + "0xb0cb8dd3b2aa9558ba632a350e242f58d2e289b0": { + "address": "0xb0cb8dd3b2aa9558ba632a350e242f58d2e289b0", + "symbol": "XMC", + "decimals": 18, + "name": "X-MASK Coin", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xb0cb8dd3b2aa9558ba632a350e242f58d2e289b0.png", + "aggregators": ["PancakeCoinMarketCap", "Rubic", "Rango"], + "occurrences": 3 + }, + "0xd88e4d729407d1fa1c04cfdd8abe3972b052f356": { + "address": "0xd88e4d729407d1fa1c04cfdd8abe3972b052f356", + "symbol": "XRS", + "decimals": 9, + "name": "Xrius", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xd88e4d729407d1fa1c04cfdd8abe3972b052f356.png", + "aggregators": ["PancakeCoinMarketCap", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x26c98b27ab51af12c616d2d2eb99909b6bde6dde": { + "address": "0x26c98b27ab51af12c616d2d2eb99909b6bde6dde", + "symbol": "YOEX", + "decimals": 12, + "name": "YO EXCHANGE", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x26c98b27ab51af12c616d2d2eb99909b6bde6dde.png", + "aggregators": ["PancakeCoinMarketCap", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x4aaf59dee18ecc1bbd2bf68b3f7ba3af47eb9cfc": { + "address": "0x4aaf59dee18ecc1bbd2bf68b3f7ba3af47eb9cfc", + "symbol": "YOURWALLET", + "decimals": 18, + "name": "YourWallet", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x4aaf59dee18ecc1bbd2bf68b3f7ba3af47eb9cfc.png", + "aggregators": ["PancakeCoinMarketCap", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x580e2b3170aa36e7018ead248298c8cc18b0f019": { + "address": "0x580e2b3170aa36e7018ead248298c8cc18b0f019", + "symbol": "ZIBU", + "decimals": 18, + "name": "Zibu", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x580e2b3170aa36e7018ead248298c8cc18b0f019.png", + "aggregators": ["PancakeCoinMarketCap", "Rubic", "Rango"], + "occurrences": 3 + }, + "0xe0399378f7a92a39da849eb64cddde2940e234bb": { + "address": "0xe0399378f7a92a39da849eb64cddde2940e234bb", + "symbol": "ZION", + "decimals": 9, + "name": "ZionTopia", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xe0399378f7a92a39da849eb64cddde2940e234bb.png", + "aggregators": ["PancakeCoinMarketCap", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x1c310cd730d36c0b34c36bd881cd3cbfac6f17e5": { + "address": "0x1c310cd730d36c0b34c36bd881cd3cbfac6f17e5", + "symbol": "ZKSVM", + "decimals": 18, + "name": "ZkSVM", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x1c310cd730d36c0b34c36bd881cd3cbfac6f17e5.png", + "aggregators": ["PancakeCoinMarketCap", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x5c8c8d560048f34e5f7f8ad71f2f81a89dbd273e": { + "address": "0x5c8c8d560048f34e5f7f8ad71f2f81a89dbd273e", + "symbol": "CART", + "decimals": 18, + "name": "CART", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x5c8c8d560048f34e5f7f8ad71f2f81a89dbd273e.png", + "aggregators": ["PancakeExtended", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x2cd1075682b0fccaadd0ca629e138e64015ba11c": { + "address": "0x2cd1075682b0fccaadd0ca629e138e64015ba11c", + "symbol": "ΤBTC", + "decimals": 9, + "name": "τBitcoin", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x2cd1075682b0fccaadd0ca629e138e64015ba11c.png", + "aggregators": ["PancakeExtended", "LiFi", "Rubic"], + "occurrences": 3 + }, + "0xf07a32eb035b786898c00bb1c64d8c6f8e7a46d5": { + "address": "0xf07a32eb035b786898c00bb1c64d8c6f8e7a46d5", + "symbol": "WELL", + "decimals": 18, + "name": "WELL", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xf07a32eb035b786898c00bb1c64d8c6f8e7a46d5.png", + "aggregators": ["PancakeExtended", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x75bd1a659bdc62e4c313950d44a2416fab43e785": { + "address": "0x75bd1a659bdc62e4c313950d44a2416fab43e785", + "symbol": "ABNBFDUSD", + "decimals": 18, + "name": "Aave BNB Smart Chain FDUSD", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x75bd1a659bdc62e4c313950d44a2416fab43e785.png", + "aggregators": ["1inch", "LiFi", "Rango"], + "occurrences": 3 + }, + "0x4d074aaa0821073da827f7bf6a02cf905b394ed0": { + "address": "0x4d074aaa0821073da827f7bf6a02cf905b394ed0", + "symbol": "STATABNBFDUSD", + "decimals": 18, + "name": "Static Aave BNB Smart Chain FDUSD", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x4d074aaa0821073da827f7bf6a02cf905b394ed0.png", + "aggregators": ["1inch", "LiFi", "Rango"], + "occurrences": 3 + }, + "0x3906cddfb781f02b21f21bd81ed7fd8dc37075e1": { + "address": "0x3906cddfb781f02b21f21bd81ed7fd8dc37075e1", + "symbol": "STATABNBUSDC", + "decimals": 18, + "name": "Static Aave BNB Smart Chain USDC", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x3906cddfb781f02b21f21bd81ed7fd8dc37075e1.png", + "aggregators": ["1inch", "LiFi", "Rango"], + "occurrences": 3 + }, + "0x0471d185cc7be61e154277cab2396cd397663da6": { + "address": "0x0471d185cc7be61e154277cab2396cd397663da6", + "symbol": "STATABNBUSDT", + "decimals": 18, + "name": "Static Aave BNB Smart Chain USDT", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x0471d185cc7be61e154277cab2396cd397663da6.png", + "aggregators": ["1inch", "LiFi", "Rango"], + "occurrences": 3 + }, + "0x31b9773f225408129a90788ef013bd449e283865": { + "address": "0x31b9773f225408129a90788ef013bd449e283865", + "symbol": "PORN", + "decimals": 9, + "name": "Porn", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x31b9773f225408129a90788ef013bd449e283865.png", + "aggregators": ["1inch", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x050787de0cf5da03d9387b344334d51cae5dd0fd": { + "address": "0x050787de0cf5da03d9387b344334d51cae5dd0fd", + "symbol": "PEKC", + "decimals": 9, + "name": "PEACOCKCOIN", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x050787de0cf5da03d9387b344334d51cae5dd0fd.png", + "aggregators": ["1inch", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x2e94171493fabe316b6205f1585779c887771e2f": { + "address": "0x2e94171493fabe316b6205f1585779c887771e2f", + "symbol": "ABNBETH", + "decimals": 18, + "name": "Aave BNB Smart Chain ETH", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x2e94171493fabe316b6205f1585779c887771e2f.png", + "aggregators": ["1inch", "LiFi", "Rango"], + "occurrences": 3 + }, + "0x52077433fb7053d747e2846ad0c18ff5015c368e": { + "address": "0x52077433fb7053d747e2846ad0c18ff5015c368e", + "symbol": "STATABNBETH", + "decimals": 18, + "name": "Static Aave BNB Smart Chain ETH", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x52077433fb7053d747e2846ad0c18ff5015c368e.png", + "aggregators": ["1inch", "LiFi", "Rango"], + "occurrences": 3 + }, + "0xbdfd4e51d3c14a232135f04988a42576efb31519": { + "address": "0xbdfd4e51d3c14a232135f04988a42576efb31519", + "symbol": "ABNBWSTETH", + "decimals": 18, + "name": "Aave BNB Smart Chain wstETH", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xbdfd4e51d3c14a232135f04988a42576efb31519.png", + "aggregators": ["1inch", "LiFi", "Rango"], + "occurrences": 3 + }, + "0x1a7e4e63778b4f12a199c062f3efdd288afcbce8": { + "address": "0x1a7e4e63778b4f12a199c062f3efdd288afcbce8", + "symbol": "LZ-AGEUR", + "decimals": 18, + "name": "LayerZero Bridge agEUR", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x1a7e4e63778b4f12a199c062f3efdd288afcbce8.png", + "aggregators": ["1inch", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x43c934a845205f0b514417d757d7235b8f53f1b9": { + "address": "0x43c934a845205f0b514417d757d7235b8f53f1b9", + "symbol": "XLM", + "decimals": 18, + "name": "XLM", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x43c934a845205f0b514417d757d7235b8f53f1b9.png", + "aggregators": ["LiFi", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x1ab6478b47270ff05af11a012ac17b098758e193": { + "address": "0x1ab6478b47270ff05af11a012ac17b098758e193", + "symbol": "BFLUX", + "decimals": 18, + "name": "Flux Protocol", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x1ab6478b47270ff05af11a012ac17b098758e193.png", + "aggregators": ["LiFi", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x78e1936f065fd4082387622878c7d11c9f05ecf4": { + "address": "0x78e1936f065fd4082387622878c7d11c9f05ecf4", + "symbol": "JNTR/B", + "decimals": 18, + "name": "JNTR/B", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x78e1936f065fd4082387622878c7d11c9f05ecf4.png", + "aggregators": ["LiFi", "Rubic", "Rango"], + "occurrences": 3 + }, + "0xe81257d932280ae440b17afc5f07c8a110d21432": { + "address": "0xe81257d932280ae440b17afc5f07c8a110d21432", + "symbol": "ZUKI", + "decimals": 18, + "name": "ZUKI MOBA", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xe81257d932280ae440b17afc5f07c8a110d21432.png", + "aggregators": ["LiFi", "Rubic", "Rango"], + "occurrences": 3 + }, + "0xf7fb08c187e6cd1f2149e6c818d0b6d4d4ef1430": { + "address": "0xf7fb08c187e6cd1f2149e6c818d0b6d4d4ef1430", + "symbol": "STN", + "decimals": 18, + "name": "STN", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xf7fb08c187e6cd1f2149e6c818d0b6d4d4ef1430.png", + "aggregators": ["LiFi", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x5e0691ba91e21f3fdc88a0550aa4f7304ed89b5c": { + "address": "0x5e0691ba91e21f3fdc88a0550aa4f7304ed89b5c", + "symbol": "DGCL", + "decimals": 18, + "name": "DGCL", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x5e0691ba91e21f3fdc88a0550aa4f7304ed89b5c.png", + "aggregators": ["LiFi", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x39db1a30122031751e803fabf329c44efbbfbf4b": { + "address": "0x39db1a30122031751e803fabf329c44efbbfbf4b", + "symbol": "FRXETH.AXL", + "decimals": 18, + "name": "Frax Ether", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x39db1a30122031751e803fabf329c44efbbfbf4b.png", + "aggregators": ["LiFi", "Rubic", "Squid"], + "occurrences": 3 + }, + "0x0ebd9537a25f56713e34c45b38f421a1e7191469": { + "address": "0x0ebd9537a25f56713e34c45b38f421a1e7191469", + "symbol": "MOOV", + "decimals": 18, + "name": "MOOV", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x0ebd9537a25f56713e34c45b38f421a1e7191469.png", + "aggregators": ["Socket", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x417e99871cdc1a48cc313be8b586667d54b46494": { + "address": "0x417e99871cdc1a48cc313be8b586667d54b46494", + "symbol": "EUSD", + "decimals": 18, + "name": "ESPENTO-USD", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x417e99871cdc1a48cc313be8b586667d54b46494.png", + "aggregators": ["Socket", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x7ddee176f665cd201f93eede625770e2fd911990": { + "address": "0x7ddee176f665cd201f93eede625770e2fd911990", + "symbol": "GALA", + "decimals": 18, + "name": "pTokens GALA", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x7ddee176f665cd201f93eede625770e2fd911990.png", + "aggregators": ["Socket", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x1fc9004ec7e5722891f5f38bae7678efcb11d34d": { + "address": "0x1fc9004ec7e5722891f5f38bae7678efcb11d34d", + "symbol": "NFT", + "decimals": 6, + "name": "NFT", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x1fc9004ec7e5722891f5f38bae7678efcb11d34d.png", + "aggregators": ["Socket", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x9029fdfae9a03135846381c7ce16595c3554e10a": { + "address": "0x9029fdfae9a03135846381c7ce16595c3554e10a", + "symbol": "OOE", + "decimals": 18, + "name": "OpenOcean", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x9029fdfae9a03135846381c7ce16595c3554e10a.png", + "aggregators": ["Socket", "Rubic", "Rango"], + "occurrences": 3 + }, + "0xa7c29b7630d6cc41a10f8e85a1fa17d6bdeb000f": { + "address": "0xa7c29b7630d6cc41a10f8e85a1fa17d6bdeb000f", + "symbol": "CATE", + "decimals": 9, + "name": "Cate", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xa7c29b7630d6cc41a10f8e85a1fa17d6bdeb000f.png", + "aggregators": ["Socket", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x3524fd7488fdb1f4723bbc22c9cbd1bf89f46e3b": { + "address": "0x3524fd7488fdb1f4723bbc22c9cbd1bf89f46e3b", + "symbol": "SUSHI", + "decimals": 18, + "name": "SushiToken", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x3524fd7488fdb1f4723bbc22c9cbd1bf89f46e3b.png", + "aggregators": ["Socket", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x786ad7b4e3f785c1d429084ca110a7647c7d3011": { + "address": "0x786ad7b4e3f785c1d429084ca110a7647c7d3011", + "symbol": "NEURAL", + "decimals": 18, + "name": "Artificial Neural Network", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x786ad7b4e3f785c1d429084ca110a7647c7d3011.png", + "aggregators": ["Socket", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x96058f8c3e16576d9bd68766f3836d9a33158f89": { + "address": "0x96058f8c3e16576d9bd68766f3836d9a33158f89", + "symbol": "BONDLY", + "decimals": 18, + "name": "BONDLY", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x96058f8c3e16576d9bd68766f3836d9a33158f89.png", + "aggregators": ["Socket", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x7db5af2b9624e1b3b4bb69d6debd9ad1016a58ac": { + "address": "0x7db5af2b9624e1b3b4bb69d6debd9ad1016a58ac", + "symbol": "VOLT", + "decimals": 9, + "name": "VOLT", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x7db5af2b9624e1b3b4bb69d6debd9ad1016a58ac.png", + "aggregators": ["Socket", "Rubic", "Rango"], + "occurrences": 3 + }, + "0xa4fffc757e8c4f24e7b209c033c123d20983ad40": { + "address": "0xa4fffc757e8c4f24e7b209c033c123d20983ad40", + "symbol": "HOGE", + "decimals": 9, + "name": "hoge.finance", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xa4fffc757e8c4f24e7b209c033c123d20983ad40.png", + "aggregators": ["Socket", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x6855f7bb6287f94ddcc8915e37e73a3c9fee5cf3": { + "address": "0x6855f7bb6287f94ddcc8915e37e73a3c9fee5cf3", + "symbol": "STACK", + "decimals": 18, + "name": "STACK", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x6855f7bb6287f94ddcc8915e37e73a3c9fee5cf3.png", + "aggregators": ["Socket", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x7b7af2f5414fb6daeea39e811cf288380323f889": { + "address": "0x7b7af2f5414fb6daeea39e811cf288380323f889", + "symbol": "BABYNEIRO", + "decimals": 18, + "name": "BABY NEIRO", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x7b7af2f5414fb6daeea39e811cf288380323f889.png", + "aggregators": ["Rubic", "Rango", "Sonarwatch"], + "occurrences": 3 + }, + "0x18c4af61dbe6fd55d6470943b4ab8530777d009c": { + "address": "0x18c4af61dbe6fd55d6470943b4ab8530777d009c", + "symbol": "AGATA", + "decimals": 18, + "name": "Agatech", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x18c4af61dbe6fd55d6470943b4ab8530777d009c.png", + "aggregators": ["Rubic", "Rango", "Sonarwatch"], + "occurrences": 3 + }, + "0x6b954b64ef0e5dbe738a4ebe466bd5a8529e7844": { + "address": "0x6b954b64ef0e5dbe738a4ebe466bd5a8529e7844", + "symbol": "ARK", + "decimals": 18, + "name": "Ark Fintech", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x6b954b64ef0e5dbe738a4ebe466bd5a8529e7844.png", + "aggregators": ["Rubic", "Rango", "Sonarwatch"], + "occurrences": 3 + }, + "0xeace46b3e761a1c06a51050ca4e8217d1c81ae2a": { + "address": "0xeace46b3e761a1c06a51050ca4e8217d1c81ae2a", + "symbol": "FINA", + "decimals": 18, + "name": "Lufina", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xeace46b3e761a1c06a51050ca4e8217d1c81ae2a.png", + "aggregators": ["Rubic", "Rango", "Sonarwatch"], + "occurrences": 3 + }, + "0xb1a1d06d42a43a8fcfdc7fdcd744f7ef03e8ad1a": { + "address": "0xb1a1d06d42a43a8fcfdc7fdcd744f7ef03e8ad1a", + "symbol": "HKD", + "decimals": 18, + "name": "HongKongDAO", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xb1a1d06d42a43a8fcfdc7fdcd744f7ef03e8ad1a.png", + "aggregators": ["Rubic", "Rango", "Sonarwatch"], + "occurrences": 3 + }, + "0xc9de725a4be9ab74b136c29d4731d6bebd7122e8": { + "address": "0xc9de725a4be9ab74b136c29d4731d6bebd7122e8", + "symbol": "HTP", + "decimals": 18, + "name": "HowToPay", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xc9de725a4be9ab74b136c29d4731d6bebd7122e8.png", + "aggregators": ["Rubic", "Rango", "Sonarwatch"], + "occurrences": 3 + }, + "0x291aa47c58558adfc2bcd6f060578fdae1f6570c": { + "address": "0x291aa47c58558adfc2bcd6f060578fdae1f6570c", + "symbol": "MBASE", + "decimals": 18, + "name": "Minebase", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x291aa47c58558adfc2bcd6f060578fdae1f6570c.png", + "aggregators": ["Rubic", "Rango", "Sonarwatch"], + "occurrences": 3 + }, + "0xcf123d8638266629fb02fc415ad47bd47de01a6b": { + "address": "0xcf123d8638266629fb02fc415ad47bd47de01a6b", + "symbol": "STZETA", + "decimals": 18, + "name": "Accumulated Finance Staked ZETA", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xcf123d8638266629fb02fc415ad47bd47de01a6b.png", + "aggregators": ["Rubic", "Rango", "Sonarwatch"], + "occurrences": 3 + }, + "0x9b403edc5c75232a6596bbe6ce4dcef44aec3bc0": { + "address": "0x9b403edc5c75232a6596bbe6ce4dcef44aec3bc0", + "symbol": "JETT", + "decimals": 18, + "name": "JETT CRYPTO", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x9b403edc5c75232a6596bbe6ce4dcef44aec3bc0.png", + "aggregators": ["Rubic", "Rango", "Sonarwatch"], + "occurrences": 3 + }, + "0x26d3c0d9f4cc4c130097b6afdebe4f5e497e6bdf": { + "address": "0x26d3c0d9f4cc4c130097b6afdebe4f5e497e6bdf", + "symbol": "MNT", + "decimals": 6, + "name": "Mynth", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x26d3c0d9f4cc4c130097b6afdebe4f5e497e6bdf.png", + "aggregators": ["Rubic", "Rango", "Sonarwatch"], + "occurrences": 3 + }, + "0x4be35ec329343d7d9f548d42b0f8c17fffe07db4": { + "address": "0x4be35ec329343d7d9f548d42b0f8c17fffe07db4", + "symbol": "USDT.Z", + "decimals": 18, + "name": "Tether USD Bridged ZED20", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x4be35ec329343d7d9f548d42b0f8c17fffe07db4.png", + "aggregators": ["Rubic", "Squid", "Rango"], + "occurrences": 3 + }, + "0xca9b8d6df0729d85dcfc8ef8bb18af1ad1990786": { + "address": "0xca9b8d6df0729d85dcfc8ef8bb18af1ad1990786", + "symbol": "CATBOY", + "decimals": 18, + "name": "Catboy", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xca9b8d6df0729d85dcfc8ef8bb18af1ad1990786.png", + "aggregators": ["Rubic", "Squid", "Rango"], + "occurrences": 3 + }, + "0x61632b49df5ca20846b3220bfc42bda5e32c81ad": { + "address": "0x61632b49df5ca20846b3220bfc42bda5e32c81ad", + "symbol": "CGT", + "decimals": 18, + "name": "Curio Gas Token", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x61632b49df5ca20846b3220bfc42bda5e32c81ad.png", + "aggregators": ["Rubic", "Rango", "Sonarwatch"], + "occurrences": 3 + }, + "0x8125355777a19ba58890d71c5754ed1cc4d58fd7": { + "address": "0x8125355777a19ba58890d71c5754ed1cc4d58fd7", + "symbol": "MAKE", + "decimals": 18, + "name": "MAKE", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x8125355777a19ba58890d71c5754ed1cc4d58fd7.png", + "aggregators": ["Rubic", "Rango", "Sonarwatch"], + "occurrences": 3 + }, + "0x25d624e571d6d7b32729b11ddbbd96fe89af44e1": { + "address": "0x25d624e571d6d7b32729b11ddbbd96fe89af44e1", + "symbol": "WIBE", + "decimals": 18, + "name": "WibeGram", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x25d624e571d6d7b32729b11ddbbd96fe89af44e1.png", + "aggregators": ["Rubic", "Rango", "Sonarwatch"], + "occurrences": 3 + }, + "0xe5ba37d7818dad6aac9212f0e8a363c6e8ea0dfb": { + "address": "0xe5ba37d7818dad6aac9212f0e8a363c6e8ea0dfb", + "symbol": "KINGNEIRO", + "decimals": 9, + "name": "King Neiro", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xe5ba37d7818dad6aac9212f0e8a363c6e8ea0dfb.png", + "aggregators": ["Rubic", "Rango", "Sonarwatch"], + "occurrences": 3 + }, + "0x45808ce43eb2d7685ff0242631f0feb6f3d8701a": { + "address": "0x45808ce43eb2d7685ff0242631f0feb6f3d8701a", + "symbol": "EKTAV2", + "decimals": 18, + "name": "EKTAv2", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x45808ce43eb2d7685ff0242631f0feb6f3d8701a.png", + "aggregators": ["Rubic", "Rango", "SushiSwap"], + "occurrences": 3 + }, + "0x3917d6bdffe43105a74e6f9c09b5206f0f3f5fc0": { + "address": "0x3917d6bdffe43105a74e6f9c09b5206f0f3f5fc0", + "symbol": "LCAT", + "decimals": 18, + "name": "Lion Cat", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x3917d6bdffe43105a74e6f9c09b5206f0f3f5fc0.png", + "aggregators": ["Rubic", "Rango", "Sonarwatch"], + "occurrences": 3 + }, + "0x00a8bc9887d40ff12575f6814e98d479afadabe6": { + "address": "0x00a8bc9887d40ff12575f6814e98d479afadabe6", + "symbol": "BABYGOAT", + "decimals": 9, + "name": "Baby Goat", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x00a8bc9887d40ff12575f6814e98d479afadabe6.png", + "aggregators": ["Rubic", "Rango", "Sonarwatch"], + "occurrences": 3 + }, + "0xa20d4d64db3be56d3a02f11c407a403164ee3456": { + "address": "0xa20d4d64db3be56d3a02f11c407a403164ee3456", + "symbol": "BABYMAGA", + "decimals": 9, + "name": "Baby Maga", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xa20d4d64db3be56d3a02f11c407a403164ee3456.png", + "aggregators": ["Rubic", "Rango", "Sonarwatch"], + "occurrences": 3 + }, + "0x248430019224e4479588b3161af49ee44155d450": { + "address": "0x248430019224e4479588b3161af49ee44155d450", + "symbol": "GIC", + "decimals": 9, + "name": "GIC Sports Network", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x248430019224e4479588b3161af49ee44155d450.png", + "aggregators": ["Rubic", "Rango", "Sonarwatch"], + "occurrences": 3 + }, + "0xc790ac3b67c42302555d928e5644b848c557e319": { + "address": "0xc790ac3b67c42302555d928e5644b848c557e319", + "symbol": "CELA", + "decimals": 18, + "name": "CELLULA", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xc790ac3b67c42302555d928e5644b848c557e319.png", + "aggregators": ["Rubic", "Rango", "Sonarwatch"], + "occurrences": 3 + }, + "0x1912a3504e59d1c1b060bf2d371deb00b70e8796": { + "address": "0x1912a3504e59d1c1b060bf2d371deb00b70e8796", + "symbol": "NFTE", + "decimals": 18, + "name": "NFTEarthOFT", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x1912a3504e59d1c1b060bf2d371deb00b70e8796.png", + "aggregators": ["Rubic", "Rango", "SushiSwap"], + "occurrences": 3 + }, + "0x501e3d716a72e11e1e22edcf0365556b357da0c9": { + "address": "0x501e3d716a72e11e1e22edcf0365556b357da0c9", + "symbol": "AXLWMAI", + "decimals": 18, + "name": "Axelar Wrapped WMAI", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x501e3d716a72e11e1e22edcf0365556b357da0c9.png", + "aggregators": ["Rubic", "Squid", "Rango"], + "occurrences": 3 + }, + "0x0bd7241fb1f38765917c42e75eb59946fe212634": { + "address": "0x0bd7241fb1f38765917c42e75eb59946fe212634", + "symbol": "PHPT", + "decimals": 18, + "name": "PHPToken", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x0bd7241fb1f38765917c42e75eb59946fe212634.png", + "aggregators": ["Metamask"], + "occurrences": 1 + }, + "0xa059080853b2f273a452424859a4701a1ce13a0e": { + "address": "0xa059080853b2f273a452424859a4701a1ce13a0e", + "symbol": "MIDAS", + "decimals": 18, + "name": "MIDAS", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xa059080853b2f273a452424859a4701a1ce13a0e.png", + "aggregators": ["Metamask"], + "occurrences": 1 + }, + "0xaca92e438df0b2401ff60da7e4337b687a2435da": { + "address": "0xaca92e438df0b2401ff60da7e4337b687a2435da", + "symbol": "MUSD", + "decimals": 6, + "name": "MetaMask USD", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xaca92e438df0b2401ff60da7e4337b687a2435da.png", + "aggregators": ["Metamask"], + "occurrences": 1 + }, + "0xc64e4e82ddacb9fc1347e3b447f784574604dbec": { + "address": "0xc64e4e82ddacb9fc1347e3b447f784574604dbec", + "symbol": "AXNV", + "decimals": 18, + "name": "Axionova", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xc64e4e82ddacb9fc1347e3b447f784574604dbec.png", + "aggregators": ["Metamask"], + "occurrences": 1 + } + }, + "timestamp": 1779126362508 + }, + "0x3e7": { + "data": { + "0x00fdbc53719604d924226215bc871d55e40a1009": { + "address": "0x00fdbc53719604d924226215bc871d55e40a1009", + "aggregators": ["CoinGecko", "LiFi", "Squid"], + "decimals": 18, + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/999/0x00fdbc53719604d924226215bc871d55e40a1009.png", + "name": "Looping Collective", + "occurrences": 3, + "symbol": "LOOP" + }, + "0x02c6a2fa58cc01a18b8d9e00ea48d65e4df26c70": { + "address": "0x02c6a2fa58cc01a18b8d9e00ea48d65e4df26c70", + "aggregators": ["Metamask", "LiFi", "Squid"], + "decimals": 18, + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/999/0x02c6a2fa58cc01a18b8d9e00ea48d65e4df26c70.png", + "name": "Felix feUSD", + "occurrences": 3, + "symbol": "FEUSD" + }, + "0x03832767bdf9a8ef007449942125ad605acfadb8": { + "address": "0x03832767bdf9a8ef007449942125ad605acfadb8", + "aggregators": ["CoinGecko", "LiFi", "Squid"], + "decimals": 18, + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/999/0x03832767bdf9a8ef007449942125ad605acfadb8.png", + "name": "Swap", + "occurrences": 3, + "symbol": "SWAP" + }, + "0x053f6755320d06b8fd6675581b0475b2e32399b1": { + "address": "0x053f6755320d06b8fd6675581b0475b2e32399b1", + "aggregators": ["CoinGecko", "LiFi", "Squid"], + "decimals": 18, + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/999/0x053f6755320d06b8fd6675581b0475b2e32399b1.png", + "name": "based.one", + "occurrences": 3, + "symbol": "BASED" + }, + "0x068f321fa8fb9f0d135f290ef6a3e2813e1c8a29": { + "address": "0x068f321fa8fb9f0d135f290ef6a3e2813e1c8a29", + "aggregators": ["Metamask", "LiFi", "Squid"], + "decimals": 9, + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/999/0x068f321fa8fb9f0d135f290ef6a3e2813e1c8a29.png", + "name": "Unit Solana", + "occurrences": 3, + "symbol": "USOL" + }, + "0x0ad339d66bf4aed5ce31c64bc37b3244b6394a77": { + "address": "0x0ad339d66bf4aed5ce31c64bc37b3244b6394a77", + "aggregators": ["CoinGecko", "LiFi", "Squid"], + "decimals": 18, + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/999/0x0ad339d66bf4aed5ce31c64bc37b3244b6394a77.png", + "name": "Resolv USD", + "occurrences": 3, + "symbol": "USR" + }, + "0x111111a1a0667d36bd57c0a9f569b98057111111": { + "address": "0x111111a1a0667d36bd57c0a9f569b98057111111", + "aggregators": ["Metamask", "LiFi", "Squid"], + "decimals": 6, + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/999/0x111111a1a0667d36bd57c0a9f569b98057111111.png", + "name": "USDH", + "occurrences": 3, + "symbol": "USDH" + }, + "0x11735dbd0b97cfa7accf47d005673ba185f7fd49": { + "address": "0x11735dbd0b97cfa7accf47d005673ba185f7fd49", + "aggregators": ["CoinGecko", "LiFi", "Squid"], + "decimals": 18, + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/999/0x11735dbd0b97cfa7accf47d005673ba185f7fd49.png", + "name": "CATBAL", + "occurrences": 3, + "symbol": "CATBAL" + }, + "0x1359b05241ca5076c9f59605214f4f84114c0de8": { + "address": "0x1359b05241ca5076c9f59605214f4f84114c0de8", + "aggregators": ["CoinGecko", "LiFi", "Squid"], + "decimals": 6, + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/999/0x1359b05241ca5076c9f59605214f4f84114c0de8.png", + "name": "Wrapped HLP", + "occurrences": 3, + "symbol": "WHLP" + }, + "0x1bee6762f0b522c606dc2ffb106c0bb391b2e309": { + "address": "0x1bee6762f0b522c606dc2ffb106c0bb391b2e309", + "aggregators": ["CoinGecko", "LiFi", "Squid"], + "decimals": 18, + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/999/0x1bee6762f0b522c606dc2ffb106c0bb391b2e309.png", + "name": "PiP", + "occurrences": 3, + "symbol": "PIP" + }, + "0x1ecd15865d7f8019d546f76d095d9c93cc34edfa": { + "address": "0x1ecd15865d7f8019d546f76d095d9c93cc34edfa", + "aggregators": ["CoinGecko", "LiFi", "Squid"], + "decimals": 18, + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/999/0x1ecd15865d7f8019d546f76d095d9c93cc34edfa.png", + "name": "LiquidLaunch", + "occurrences": 3, + "symbol": "LIQD" + }, + "0x27ec642013bcb3d80ca3706599d3cda04f6f4452": { + "address": "0x27ec642013bcb3d80ca3706599d3cda04f6f4452", + "aggregators": ["CoinGecko", "LiFi", "Squid"], + "decimals": 6, + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/999/0x27ec642013bcb3d80ca3706599d3cda04f6f4452.png", + "name": "Unit Pump", + "occurrences": 3, + "symbol": "UPUMP" + }, + "0x28245ab01298eaef7933bc90d35bd9dbca5c89db": { + "address": "0x28245ab01298eaef7933bc90d35bd9dbca5c89db", + "aggregators": ["CoinGecko", "LiFi", "Squid"], + "decimals": 18, + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/999/0x28245ab01298eaef7933bc90d35bd9dbca5c89db.png", + "name": "Peg", + "occurrences": 3, + "symbol": "PEG" + }, + "0x3b4575e689ded21caad31d64c4df1f10f3b2cedf": { + "address": "0x3b4575e689ded21caad31d64c4df1f10f3b2cedf", + "aggregators": ["Metamask", "LiFi", "Squid"], + "decimals": 6, + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/999/0x3b4575e689ded21caad31d64c4df1f10f3b2cedf.png", + "name": "Unit Fartcoin", + "occurrences": 3, + "symbol": "UFART" + }, + "0x3fa145cad2c8108a68cfc803a8e1ae246c36df3e": { + "address": "0x3fa145cad2c8108a68cfc803a8e1ae246c36df3e", + "aggregators": ["CoinGecko", "LiFi", "Squid"], + "decimals": 18, + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/999/0x3fa145cad2c8108a68cfc803a8e1ae246c36df3e.png", + "name": "HyperStrategy", + "occurrences": 3, + "symbol": "HSTR" + }, + "0x47bb061c0204af921f43dc73c7d7768d2672ddee": { + "address": "0x47bb061c0204af921f43dc73c7d7768d2672ddee", + "aggregators": ["CoinGecko", "LiFi", "Squid"], + "decimals": 6, + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/999/0x47bb061c0204af921f43dc73c7d7768d2672ddee.png", + "name": "alright buddy", + "occurrences": 3, + "symbol": "BUDDY" + }, + "0x52e444545fbe9e5972a7a371299522f7871aec1f": { + "address": "0x52e444545fbe9e5972a7a371299522f7871aec1f", + "aggregators": ["CoinGecko", "LiFi", "Squid"], + "decimals": 18, + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/999/0x52e444545fbe9e5972a7a371299522f7871aec1f.png", + "name": "Jeff", + "occurrences": 3, + "symbol": "JEFF" + }, + "0x5555555555555555555555555555555555555555": { + "address": "0x5555555555555555555555555555555555555555", + "aggregators": ["Metamask", "LiFi", "Squid"], + "decimals": 18, + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/999/0x5555555555555555555555555555555555555555.png", + "name": "Wrapped HYPE", + "occurrences": 3, + "symbol": "WHYPE" + }, + "0x5748ae796ae46a4f1348a1693de4b50560485562": { + "address": "0x5748ae796ae46a4f1348a1693de4b50560485562", + "aggregators": ["CoinGecko", "LiFi", "Squid"], + "decimals": 18, + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/999/0x5748ae796ae46a4f1348a1693de4b50560485562.png", + "name": "Looped HYPE", + "occurrences": 3, + "symbol": "LHYPE" + }, + "0x5d3a1ff2b6bab83b63cd9ad0787074081a52ef34": { + "address": "0x5d3a1ff2b6bab83b63cd9ad0787074081a52ef34", + "aggregators": ["Metamask", "LiFi", "Squid"], + "decimals": 18, + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/999/0x5d3a1ff2b6bab83b63cd9ad0787074081a52ef34.png", + "name": "Ethena USDe", + "occurrences": 3, + "symbol": "USDE" + }, + "0x5e105266db42f78fa814322bce7f388b4c2e61eb": { + "address": "0x5e105266db42f78fa814322bce7f388b4c2e61eb", + "aggregators": ["CoinGecko", "LiFi", "Squid"], + "decimals": 18, + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/999/0x5e105266db42f78fa814322bce7f388b4c2e61eb.png", + "name": "Hyperbeat USDT", + "occurrences": 3, + "symbol": "HBUSDT" + }, + "0x738dd55c272b0b686382f62dd4a590056839f4f6": { + "address": "0x738dd55c272b0b686382f62dd4a590056839f4f6", + "aggregators": ["CoinGecko", "LiFi", "Squid"], + "decimals": 6, + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/999/0x738dd55c272b0b686382f62dd4a590056839f4f6.png", + "name": "Holy Liquid", + "occurrences": 3, + "symbol": "HL" + }, + "0x7dcffcb06b40344eeced2d1cbf096b299fe4b405": { + "address": "0x7dcffcb06b40344eeced2d1cbf096b299fe4b405", + "aggregators": ["CoinGecko", "LiFi", "Squid"], + "decimals": 18, + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/999/0x7dcffcb06b40344eeced2d1cbf096b299fe4b405.png", + "name": "RUB", + "occurrences": 3, + "symbol": "RUB" + }, + "0x8888888fdaac0e7cf8c6523c8955bf7954c216fa": { + "address": "0x8888888fdaac0e7cf8c6523c8955bf7954c216fa", + "aggregators": ["CoinGecko", "LiFi", "Squid"], + "decimals": 18, + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/999/0x8888888fdaac0e7cf8c6523c8955bf7954c216fa.png", + "name": "vHYPE", + "occurrences": 3, + "symbol": "VHYPE" + }, + "0x8ff0dd9f9c40a0d76ef1bcfaf5f98c1610c74bd8": { + "address": "0x8ff0dd9f9c40a0d76ef1bcfaf5f98c1610c74bd8", + "aggregators": ["CoinGecko", "LiFi", "Squid"], + "decimals": 18, + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/999/0x8ff0dd9f9c40a0d76ef1bcfaf5f98c1610c74bd8.png", + "name": "Hyperstable", + "occurrences": 3, + "symbol": "USH" + }, + "0x94e8396e0869c9f2200760af0621afd240e1cf38": { + "address": "0x94e8396e0869c9f2200760af0621afd240e1cf38", + "aggregators": ["CoinGecko", "LiFi", "Squid"], + "decimals": 18, + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/999/0x94e8396e0869c9f2200760af0621afd240e1cf38.png", + "name": "Staked HYPE Shares", + "occurrences": 3, + "symbol": "WSTHYPE" + }, + "0x96c6cbb6251ee1c257b2162ca0f39aa5fa44b1fb": { + "address": "0x96c6cbb6251ee1c257b2162ca0f39aa5fa44b1fb", + "aggregators": ["CoinGecko", "LiFi", "Squid"], + "decimals": 18, + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/999/0x96c6cbb6251ee1c257b2162ca0f39aa5fa44b1fb.png", + "name": "Hyperbeat HYPE", + "occurrences": 3, + "symbol": "HBHYPE" + }, + "0x97df58ce4489896f4ec7d16b59b64ad0a56243a8": { + "address": "0x97df58ce4489896f4ec7d16b59b64ad0a56243a8", + "aggregators": ["Metamask", "LiFi"], + "decimals": 18, + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/999/0x97df58ce4489896f4ec7d16b59b64ad0a56243a8.png", + "name": "xBTC", + "occurrences": 2, + "symbol": "XBTC" + }, + "0x9a12cb8869498d8826567437abea27be1c2ba9ab": { + "address": "0x9a12cb8869498d8826567437abea27be1c2ba9ab", + "aggregators": ["CoinGecko", "LiFi", "Squid"], + "decimals": 18, + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/999/0x9a12cb8869498d8826567437abea27be1c2ba9ab.png", + "name": "LINK0", + "occurrences": 3, + "symbol": "LINK0" + }, + "0x9ab96a4668456896d45c301bc3a15cee76aa7b8d": { + "address": "0x9ab96a4668456896d45c301bc3a15cee76aa7b8d", + "aggregators": ["CoinGecko", "LiFi", "Squid"], + "decimals": 6, + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/999/0x9ab96a4668456896d45c301bc3a15cee76aa7b8d.png", + "name": "Relend Network USDC", + "occurrences": 3, + "symbol": "RUSDC" + }, + "0x9b498c3c8a0b8cd8ba1d9851d40d186f1872b44e": { + "address": "0x9b498c3c8a0b8cd8ba1d9851d40d186f1872b44e", + "aggregators": ["Metamask", "LiFi", "Squid"], + "decimals": 18, + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/999/0x9b498c3c8a0b8cd8ba1d9851d40d186f1872b44e.png", + "name": "Purr", + "occurrences": 3, + "symbol": "PURR" + }, + "0x9fd7466f987fd4c45a5bbde22ed8aba5bc8d72d1": { + "address": "0x9fd7466f987fd4c45a5bbde22ed8aba5bc8d72d1", + "aggregators": ["CoinGecko", "LiFi", "Squid"], + "decimals": 6, + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/999/0x9fd7466f987fd4c45a5bbde22ed8aba5bc8d72d1.png", + "name": "hwHLP", + "occurrences": 3, + "symbol": "HWHLP" + }, + "0x9fdbda0a5e284c32744d2f17ee5c74b284993463": { + "address": "0x9fdbda0a5e284c32744d2f17ee5c74b284993463", + "aggregators": ["Metamask", "LiFi", "Squid"], + "decimals": 8, + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/999/0x9fdbda0a5e284c32744d2f17ee5c74b284993463.png", + "name": "Unit Bitcoin", + "occurrences": 3, + "symbol": "UBTC" + }, + "0xa2f8da4a55898b6c947fa392ef8d6bfd87a4ff77": { + "address": "0xa2f8da4a55898b6c947fa392ef8d6bfd87a4ff77", + "aggregators": ["CoinGecko", "LiFi", "Squid"], + "decimals": 6, + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/999/0xa2f8da4a55898b6c947fa392ef8d6bfd87a4ff77.png", + "name": "Hyperwave USD", + "occurrences": 3, + "symbol": "HWUSD" + }, + "0xa320d9f65ec992eff38622c63627856382db726c": { + "address": "0xa320d9f65ec992eff38622c63627856382db726c", + "aggregators": ["CoinGecko", "LiFi", "Squid"], + "decimals": 18, + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/999/0xa320d9f65ec992eff38622c63627856382db726c.png", + "name": "HFUN", + "occurrences": 3, + "symbol": "HFUN" + }, + "0xb09158c8297acee00b900dc1f8715df46b7246a6": { + "address": "0xb09158c8297acee00b900dc1f8715df46b7246a6", + "aggregators": ["CoinGecko", "LiFi", "Squid"], + "decimals": 18, + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/999/0xb09158c8297acee00b900dc1f8715df46b7246a6.png", + "name": "Vegas", + "occurrences": 3, + "symbol": "VEGAS" + }, + "0xb50a96253abdf803d85efcdce07ad8becbc52bd5": { + "address": "0xb50a96253abdf803d85efcdce07ad8becbc52bd5", + "aggregators": ["CoinGecko", "LiFi", "Squid"], + "decimals": 6, + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/999/0xb50a96253abdf803d85efcdce07ad8becbc52bd5.png", + "name": "Hyper USD", + "occurrences": 3, + "symbol": "USDHL" + }, + "0xb5ee887259f792e613edbd20dde8970c10fefda1": { + "address": "0xb5ee887259f792e613edbd20dde8970c10fefda1", + "aggregators": ["CoinGecko", "LiFi", "Squid"], + "decimals": 18, + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/999/0xb5ee887259f792e613edbd20dde8970c10fefda1.png", + "name": "ValiDAO", + "occurrences": 3, + "symbol": "VDO" + }, + "0xb5fe77d323d69eb352a02006ea8ecc38d882620c": { + "address": "0xb5fe77d323d69eb352a02006ea8ecc38d882620c", + "aggregators": ["CoinGecko", "LiFi", "Squid"], + "decimals": 18, + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/999/0xb5fe77d323d69eb352a02006ea8ecc38d882620c.png", + "name": "KEI Stablecoin", + "occurrences": 3, + "symbol": "KEI" + }, + "0xb88339cb7199b77e23db6e890353e22632ba630f": { + "address": "0xb88339cb7199b77e23db6e890353e22632ba630f", + "aggregators": ["Metamask", "LiFi", "Squid"], + "decimals": 6, + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/999/0xb88339cb7199b77e23db6e890353e22632ba630f.png", + "name": "USDC", + "occurrences": 3, + "symbol": "USDC" + }, + "0xb8ce59fc3717ada4c02eadf9682a9e934f625ebb": { + "address": "0xb8ce59fc3717ada4c02eadf9682a9e934f625ebb", + "aggregators": ["Metamask", "LiFi", "Squid"], + "decimals": 6, + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/999/0xb8ce59fc3717ada4c02eadf9682a9e934f625ebb.png", + "name": "USDT0", + "occurrences": 3, + "symbol": "USDT0" + }, + "0xbd6dab50f03a305a80037294fa8d1a9dc0cac91b": { + "address": "0xbd6dab50f03a305a80037294fa8d1a9dc0cac91b", + "aggregators": ["Metamask", "LiFi"], + "decimals": 18, + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/999/0xbd6dab50f03a305a80037294fa8d1a9dc0cac91b.png", + "name": "HyperLend", + "occurrences": 2, + "symbol": "HPL" + }, + "0xbe6727b535545c67d5caa73dea54865b92cf7907": { + "address": "0xbe6727b535545c67d5caa73dea54865b92cf7907", + "aggregators": ["Metamask", "LiFi", "Squid"], + "decimals": 18, + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/999/0xbe6727b535545c67d5caa73dea54865b92cf7907.png", + "name": "Unit Ethereum", + "occurrences": 3, + "symbol": "UETH" + }, + "0xbef0142a0955a7d5dcce5c2a13fb84e332669d2d": { + "address": "0xbef0142a0955a7d5dcce5c2a13fb84e332669d2d", + "aggregators": ["CoinGecko", "LiFi", "Squid"], + "decimals": 18, + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/999/0xbef0142a0955a7d5dcce5c2a13fb84e332669d2d.png", + "name": "Kintsu Staked Hype", + "occurrences": 3, + "symbol": "SHYPE" + }, + "0xca79db4b49f608ef54a5cb813fbed3a6387bc645": { + "address": "0xca79db4b49f608ef54a5cb813fbed3a6387bc645", + "aggregators": ["CoinGecko", "LiFi", "Squid"], + "decimals": 18, + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/999/0xca79db4b49f608ef54a5cb813fbed3a6387bc645.png", + "name": "Last USD", + "occurrences": 3, + "symbol": "USDXL" + }, + "0xd2567ee20d75e8b74b44875173054365f6eb5052": { + "address": "0xd2567ee20d75e8b74b44875173054365f6eb5052", + "aggregators": ["CoinGecko", "LiFi", "Squid"], + "decimals": 6, + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/999/0xd2567ee20d75e8b74b44875173054365f6eb5052.png", + "name": "perpcoin", + "occurrences": 3, + "symbol": "PERPCOIN" + }, + "0xdabb040c428436d41cecd0fb06bcfdbaad3a9aa8": { + "address": "0xdabb040c428436d41cecd0fb06bcfdbaad3a9aa8", + "aggregators": ["CoinGecko", "LiFi", "Squid"], + "decimals": 18, + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/999/0xdabb040c428436d41cecd0fb06bcfdbaad3a9aa8.png", + "name": "Hyperpie Staked mHYPE", + "occurrences": 3, + "symbol": "MHYPE" + }, + "0xe6829d9a7ee3040e1276fa75293bde931859e8fa": { + "address": "0xe6829d9a7ee3040e1276fa75293bde931859e8fa", + "aggregators": ["CoinGecko", "LiFi", "Squid"], + "decimals": 18, + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/999/0xe6829d9a7ee3040e1276fa75293bde931859e8fa.png", + "name": "cmETH", + "occurrences": 3, + "symbol": "CMETH" + }, + "0xf4d9235269a96aadafc9adae454a0618ebe37949": { + "address": "0xf4d9235269a96aadafc9adae454a0618ebe37949", + "aggregators": ["Metamask", "LiFi", "Squid"], + "decimals": 6, + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/999/0xf4d9235269a96aadafc9adae454a0618ebe37949.png", + "name": "Tether Gold Tokens", + "occurrences": 3, + "symbol": "XAUT0" + }, + "0xfd739d4e423301ce9385c1fb8850539d657c296d": { + "address": "0xfd739d4e423301ce9385c1fb8850539d657c296d", + "aggregators": ["Metamask", "LiFi", "Squid"], + "decimals": 18, + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/999/0xfd739d4e423301ce9385c1fb8850539d657c296d.png", + "name": "Kinetiq Staked HYPE", + "occurrences": 3, + "symbol": "KHYPE" + }, + "0xfdd22ce6d1f66bc0ec89b20bf16ccb6670f55a5a": { + "address": "0xfdd22ce6d1f66bc0ec89b20bf16ccb6670f55a5a", + "aggregators": ["CoinGecko", "LiFi", "Squid"], + "decimals": 6, + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/999/0xfdd22ce6d1f66bc0ec89b20bf16ccb6670f55a5a.png", + "name": "thBILL", + "occurrences": 3, + "symbol": "THBILL" + }, + "0xfde5b0626fc80e36885e2fa9cd5ad9d7768d725c": { + "address": "0xfde5b0626fc80e36885e2fa9cd5ad9d7768d725c", + "aggregators": ["CoinGecko", "LiFi", "Squid"], + "decimals": 18, + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/999/0xfde5b0626fc80e36885e2fa9cd5ad9d7768d725c.png", + "name": "haHYPE", + "occurrences": 3, + "symbol": "HAHYPE" + }, + "0xffaa4a3d97fe9107cef8a3f48c069f577ff76cc1": { + "address": "0xffaa4a3d97fe9107cef8a3f48c069f577ff76cc1", + "aggregators": ["CoinGecko", "LiFi", "Squid"], + "decimals": 18, + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/999/0xffaa4a3d97fe9107cef8a3f48c069f577ff76cc1.png", + "name": "Staked HYPE", + "occurrences": 3, + "symbol": "STHYPE" + } + }, + "timestamp": 1775750886331 + }, + "0x89": { + "data": { + "0xc2132d05d31c914a87c6611c10748aeb04b58e8f": { + "address": "0xc2132d05d31c914a87c6611c10748aeb04b58e8f", + "symbol": "USDT", + "decimals": 6, + "name": "(PoS) Tether USD", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0xc2132d05d31c914a87c6611c10748aeb04b58e8f.png", + "aggregators": [ + "QuickSwap", + "1inch", + "LiFi", + "TrustWallet", + "Socket", + "Rubic", + "Squid", + "Rango", + "Sonarwatch", + "SushiSwap" + ], + "occurrences": 10 + }, + "0x1bfd67037b42cf73acf2047067bd4f2c47d9bfd6": { + "address": "0x1bfd67037b42cf73acf2047067bd4f2c47d9bfd6", + "symbol": "WBTC", + "decimals": 8, + "name": "Wrapped BTC", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x1bfd67037b42cf73acf2047067bd4f2c47d9bfd6.png", + "aggregators": [ + "QuickSwap", + "1inch", + "LiFi", + "Socket", + "Rubic", + "Squid", + "Rango", + "Sonarwatch", + "SushiSwap" + ], + "occurrences": 9 + }, + "0xd6df932a45c0f255f85145f286ea0b292b21c90b": { + "address": "0xd6df932a45c0f255f85145f286ea0b292b21c90b", + "symbol": "AAVE", + "decimals": 18, + "name": "Aave (PoS)", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0xd6df932a45c0f255f85145f286ea0b292b21c90b.png", + "aggregators": [ + "QuickSwap", + "1inch", + "LiFi", + "TrustWallet", + "Socket", + "Rubic", + "Squid", + "Rango", + "Sonarwatch", + "SushiSwap" + ], + "occurrences": 10 + }, + "0x8f3cf7ad23cd3cadbd9735aff958023239c6a063": { + "address": "0x8f3cf7ad23cd3cadbd9735aff958023239c6a063", + "symbol": "DAI", + "decimals": 18, + "name": "(PoS) Dai Stablecoin", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x8f3cf7ad23cd3cadbd9735aff958023239c6a063.png", + "aggregators": [ + "QuickSwap", + "1inch", + "LiFi", + "TrustWallet", + "Socket", + "Rubic", + "Squid", + "Rango", + "Sonarwatch", + "SushiSwap" + ], + "occurrences": 10 + }, + "0x53e0bca35ec356bd5dddfebbd1fc0fd03fabad39": { + "address": "0x53e0bca35ec356bd5dddfebbd1fc0fd03fabad39", + "symbol": "LINK", + "decimals": 18, + "name": "ChainLink Token", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x53e0bca35ec356bd5dddfebbd1fc0fd03fabad39.png", + "aggregators": [ + "QuickSwap", + "1inch", + "LiFi", + "TrustWallet", + "Socket", + "Rubic", + "Squid", + "Rango", + "Sonarwatch", + "SushiSwap" + ], + "occurrences": 10 + }, + "0xa1c57f48f0deb89f569dfbe6e2b7f46d33606fd4": { + "address": "0xa1c57f48f0deb89f569dfbe6e2b7f46d33606fd4", + "symbol": "MANA", + "decimals": 18, + "name": "Decentraland MANA", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0xa1c57f48f0deb89f569dfbe6e2b7f46d33606fd4.png", + "aggregators": [ + "QuickSwap", + "1inch", + "LiFi", + "Socket", + "Rubic", + "Squid", + "Rango", + "Sonarwatch", + "SushiSwap" + ], + "occurrences": 9 + }, + "0xb33eaad8d922b1083446dc23f610c2567fb5180f": { + "address": "0xb33eaad8d922b1083446dc23f610c2567fb5180f", + "symbol": "UNI", + "decimals": 18, + "name": "Uniswap", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0xb33eaad8d922b1083446dc23f610c2567fb5180f.png", + "aggregators": [ + "QuickSwap", + "1inch", + "LiFi", + "Socket", + "Rubic", + "Squid", + "Rango", + "Sonarwatch", + "SushiSwap" + ], + "occurrences": 9 + }, + "0x385eeac5cb85a38a9a07a70c73e0a3271cfb54a7": { + "address": "0x385eeac5cb85a38a9a07a70c73e0a3271cfb54a7", + "symbol": "GHST", + "decimals": 18, + "name": "Aavegotchi GHST Token", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x385eeac5cb85a38a9a07a70c73e0a3271cfb54a7.png", + "aggregators": [ + "QuickSwap", + "1inch", + "LiFi", + "Socket", + "Rubic", + "Squid", + "Rango", + "Sonarwatch", + "SushiSwap" + ], + "occurrences": 9 + }, + "0x7ceb23fd6bc0add59e62ac25578270cff1b9f619": { + "address": "0x7ceb23fd6bc0add59e62ac25578270cff1b9f619", + "symbol": "WETH", + "decimals": 18, + "name": "Wrapped Ether", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x7ceb23fd6bc0add59e62ac25578270cff1b9f619.png", + "aggregators": [ + "QuickSwap", + "1inch", + "LiFi", + "TrustWallet", + "Socket", + "Rubic", + "Squid", + "Rango", + "Sonarwatch", + "SushiSwap" + ], + "occurrences": 10 + }, + "0xbbba073c31bf03b8acf7c28ef0738decf3695683": { + "address": "0xbbba073c31bf03b8acf7c28ef0738decf3695683", + "symbol": "SAND", + "decimals": 18, + "name": "SAND", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0xbbba073c31bf03b8acf7c28ef0738decf3695683.png", + "aggregators": [ + "QuickSwap", + "1inch", + "LiFi", + "Socket", + "Rubic", + "Squid", + "Rango", + "Sonarwatch", + "SushiSwap" + ], + "occurrences": 9 + }, + "0xdf7837de1f2fa4631d716cf2502f8b230f1dcc32": { + "address": "0xdf7837de1f2fa4631d716cf2502f8b230f1dcc32", + "symbol": "TEL", + "decimals": 2, + "name": "Telcoin", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0xdf7837de1f2fa4631d716cf2502f8b230f1dcc32.png", + "aggregators": [ + "QuickSwap", + "1inch", + "LiFi", + "Socket", + "Rubic", + "Squid", + "Rango", + "SushiSwap" + ], + "occurrences": 8 + }, + "0x172370d5cd63279efa6d502dab29171933a610af": { + "address": "0x172370d5cd63279efa6d502dab29171933a610af", + "symbol": "CRV", + "decimals": 18, + "name": "Curve", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x172370d5cd63279efa6d502dab29171933a610af.png", + "aggregators": [ + "CoinGecko", + "1inch", + "LiFi", + "Socket", + "Rubic", + "Squid", + "Rango", + "Sonarwatch", + "SushiSwap" + ], + "occurrences": 9 + }, + "0x3c499c542cef5e3811e1192ce70d8cc03d5c3359": { + "address": "0x3c499c542cef5e3811e1192ce70d8cc03d5c3359", + "symbol": "USDC", + "decimals": 6, + "name": "USD Coin", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x3c499c542cef5e3811e1192ce70d8cc03d5c3359.png", + "aggregators": [ + "CoinGecko", + "1inch", + "LiFi", + "Socket", + "Rubic", + "Squid", + "Rango", + "Sonarwatch", + "SushiSwap" + ], + "occurrences": 9 + }, + "0x4e78011ce80ee02d2c3e649fb657e45898257815": { + "address": "0x4e78011ce80ee02d2c3e649fb657e45898257815", + "symbol": "KLIMA", + "decimals": 9, + "name": "KlimaDAO", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x4e78011ce80ee02d2c3e649fb657e45898257815.png", + "aggregators": [ + "QuickSwap", + "1inch", + "LiFi", + "Socket", + "Rubic", + "Squid", + "Rango", + "Sonarwatch", + "SushiSwap" + ], + "occurrences": 9 + }, + "0x9a71012b13ca4d3d0cdc72a177df3ef03b0e76a3": { + "address": "0x9a71012b13ca4d3d0cdc72a177df3ef03b0e76a3", + "symbol": "BAL", + "decimals": 18, + "name": "Balancer", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x9a71012b13ca4d3d0cdc72a177df3ef03b0e76a3.png", + "aggregators": [ + "OpenSwap", + "1inch", + "LiFi", + "Socket", + "Rubic", + "Rango", + "Sonarwatch", + "SushiSwap" + ], + "occurrences": 8 + }, + "0xd0258a3fd00f38aa8090dfee343f10a9d4d30d3f": { + "address": "0xd0258a3fd00f38aa8090dfee343f10a9d4d30d3f", + "symbol": "VOXEL", + "decimals": 18, + "name": "VOXEL Token", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0xd0258a3fd00f38aa8090dfee343f10a9d4d30d3f.png", + "aggregators": [ + "QuickSwap", + "1inch", + "LiFi", + "Rubic", + "Squid", + "Rango", + "Sonarwatch", + "SushiSwap" + ], + "occurrences": 8 + }, + "0x03b54a6e9a984069379fae1a4fc4dbae93b3bccd": { + "address": "0x03b54a6e9a984069379fae1a4fc4dbae93b3bccd", + "symbol": "WSTETH", + "decimals": 18, + "name": "Wrapped stETH", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x03b54a6e9a984069379fae1a4fc4dbae93b3bccd.png", + "aggregators": [ + "QuickSwap", + "1inch", + "LiFi", + "Socket", + "Rubic", + "Squid", + "Rango", + "Sonarwatch" + ], + "occurrences": 8 + }, + "0x2e1ad108ff1d8c782fcbbb89aad783ac49586756": { + "address": "0x2e1ad108ff1d8c782fcbbb89aad783ac49586756", + "symbol": "TUSD", + "decimals": 18, + "name": "TrueUSD", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x2e1ad108ff1d8c782fcbbb89aad783ac49586756.png", + "aggregators": [ + "QuickSwap", + "1inch", + "LiFi", + "Socket", + "Rubic", + "Rango", + "Sonarwatch", + "SushiSwap" + ], + "occurrences": 8 + }, + "0x0b3f868e0be5597d5db7feb59e1cadbb0fdda50a": { + "address": "0x0b3f868e0be5597d5db7feb59e1cadbb0fdda50a", + "symbol": "SUSHI", + "decimals": 18, + "name": "SushiToken", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x0b3f868e0be5597d5db7feb59e1cadbb0fdda50a.png", + "aggregators": [ + "OpenSwap", + "1inch", + "LiFi", + "Socket", + "Rubic", + "Squid", + "Rango", + "SushiSwap" + ], + "occurrences": 8 + }, + "0x45c32fa6df82ead1e2ef74d17b76547eddfaff89": { + "address": "0x45c32fa6df82ead1e2ef74d17b76547eddfaff89", + "symbol": "FRAX", + "decimals": 18, + "name": "Frax", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x45c32fa6df82ead1e2ef74d17b76547eddfaff89.png", + "aggregators": [ + "QuickSwap", + "1inch", + "LiFi", + "Socket", + "Rubic", + "Rango", + "SushiSwap" + ], + "occurrences": 7 + }, + "0x5fe2b58c013d7601147dcdd68c143a77499f5531": { + "address": "0x5fe2b58c013d7601147dcdd68c143a77499f5531", + "symbol": "GRT", + "decimals": 18, + "name": "Graph Token", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x5fe2b58c013d7601147dcdd68c143a77499f5531.png", + "aggregators": [ + "CoinGecko", + "1inch", + "LiFi", + "Socket", + "Rubic", + "Squid", + "Rango", + "Sonarwatch", + "SushiSwap" + ], + "occurrences": 9 + }, + "0x6f7c932e7684666c9fd1d44527765433e01ff61d": { + "address": "0x6f7c932e7684666c9fd1d44527765433e01ff61d", + "symbol": "MKR", + "decimals": 18, + "name": "Maker", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x6f7c932e7684666c9fd1d44527765433e01ff61d.png", + "aggregators": [ + "CoinGecko", + "1inch", + "LiFi", + "Socket", + "Rubic", + "Squid", + "Rango", + "Sonarwatch", + "SushiSwap" + ], + "occurrences": 9 + }, + "0x50b728d8d964fd00c2d0aad81718b71311fef68a": { + "address": "0x50b728d8d964fd00c2d0aad81718b71311fef68a", + "symbol": "SNX", + "decimals": 18, + "name": "Synthetix Network Token", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x50b728d8d964fd00c2d0aad81718b71311fef68a.png", + "aggregators": [ + "CoinGecko", + "1inch", + "LiFi", + "Socket", + "Rubic", + "Squid", + "Rango", + "Sonarwatch", + "SushiSwap" + ], + "occurrences": 9 + }, + "0x1c954e8fe737f99f68fa1ccda3e51ebdb291948c": { + "address": "0x1c954e8fe737f99f68fa1ccda3e51ebdb291948c", + "symbol": "KNC", + "decimals": 18, + "name": "Kyber Network Crystal v2", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x1c954e8fe737f99f68fa1ccda3e51ebdb291948c.png", + "aggregators": [ + "CoinGecko", + "1inch", + "LiFi", + "Socket", + "Rubic", + "Squid", + "Rango", + "Sonarwatch", + "SushiSwap" + ], + "occurrences": 9 + }, + "0x2f6f07cdcf3588944bf4c42ac74ff24bf56e7590": { + "address": "0x2f6f07cdcf3588944bf4c42ac74ff24bf56e7590", + "symbol": "STG", + "decimals": 18, + "name": "StargateToken", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x2f6f07cdcf3588944bf4c42ac74ff24bf56e7590.png", + "aggregators": [ + "CoinGecko", + "1inch", + "LiFi", + "Socket", + "Rubic", + "Squid", + "Rango", + "Sonarwatch", + "SushiSwap" + ], + "occurrences": 9 + }, + "0xb0b195aefa3650a6908f15cdac7d92f8a5791b0b": { + "address": "0xb0b195aefa3650a6908f15cdac7d92f8a5791b0b", + "symbol": "BOB", + "decimals": 18, + "name": "BOB", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0xb0b195aefa3650a6908f15cdac7d92f8a5791b0b.png", + "aggregators": [ + "QuickSwap", + "1inch", + "LiFi", + "Socket", + "Rubic", + "Rango", + "Sonarwatch", + "SushiSwap" + ], + "occurrences": 8 + }, + "0xee7666aacaefaa6efeef62ea40176d3eb21953b9": { + "address": "0xee7666aacaefaa6efeef62ea40176d3eb21953b9", + "symbol": "MCHC", + "decimals": 18, + "name": "MCH Coin", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0xee7666aacaefaa6efeef62ea40176d3eb21953b9.png", + "aggregators": [ + "QuickSwap", + "1inch", + "LiFi", + "Socket", + "Rubic", + "Squid", + "Rango", + "Sonarwatch" + ], + "occurrences": 8 + }, + "0x1b815d120b3ef02039ee11dc2d33de7aa4a8c603": { + "address": "0x1b815d120b3ef02039ee11dc2d33de7aa4a8c603", + "symbol": "WOO", + "decimals": 18, + "name": "Wootrade", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x1b815d120b3ef02039ee11dc2d33de7aa4a8c603.png", + "aggregators": [ + "QuickSwap", + "1inch", + "LiFi", + "Socket", + "Rubic", + "Rango", + "Sonarwatch", + "SushiSwap" + ], + "occurrences": 8 + }, + "0x3a58a54c066fdc0f2d55fc9c89f0415c92ebf3c4": { + "address": "0x3a58a54c066fdc0f2d55fc9c89f0415c92ebf3c4", + "symbol": "STMATIC", + "decimals": 18, + "name": "Lido Staked Matic", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x3a58a54c066fdc0f2d55fc9c89f0415c92ebf3c4.png", + "aggregators": [ + "QuickSwap", + "1inch", + "LiFi", + "Socket", + "Rubic", + "Squid", + "Rango", + "Sonarwatch" + ], + "occurrences": 8 + }, + "0xc3c7d422809852031b44ab29eec9f1eff2a58756": { + "address": "0xc3c7d422809852031b44ab29eec9f1eff2a58756", + "symbol": "LDO", + "decimals": 18, + "name": "Lido DAO", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0xc3c7d422809852031b44ab29eec9f1eff2a58756.png", + "aggregators": [ + "QuickSwap", + "1inch", + "LiFi", + "Socket", + "Rubic", + "Squid", + "Rango", + "Sonarwatch" + ], + "occurrences": 8 + }, + "0xfa68fb4628dff1028cfec22b4162fccd0d45efb6": { + "address": "0xfa68fb4628dff1028cfec22b4162fccd0d45efb6", + "symbol": "MATICX", + "decimals": 18, + "name": "Stader MaticX", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0xfa68fb4628dff1028cfec22b4162fccd0d45efb6.png", + "aggregators": [ + "QuickSwap", + "1inch", + "LiFi", + "Socket", + "Rubic", + "Squid", + "Rango", + "Sonarwatch" + ], + "occurrences": 8 + }, + "0x580a84c73811e1839f75d86d75d88cca0c241ff4": { + "address": "0x580a84c73811e1839f75d86d75d88cca0c241ff4", + "symbol": "QI", + "decimals": 18, + "name": "Qi Dao", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x580a84c73811e1839f75d86d75d88cca0c241ff4.png", + "aggregators": [ + "QuickSwap", + "1inch", + "LiFi", + "Socket", + "Rubic", + "Squid", + "Rango", + "SushiSwap" + ], + "occurrences": 8 + }, + "0xe06bd4f5aac8d0aa337d13ec88db6defc6eaeefe": { + "address": "0xe06bd4f5aac8d0aa337d13ec88db6defc6eaeefe", + "symbol": "IXT", + "decimals": 18, + "name": "Planet IX", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0xe06bd4f5aac8d0aa337d13ec88db6defc6eaeefe.png", + "aggregators": [ + "QuickSwap", + "1inch", + "LiFi", + "Rubic", + "Squid", + "Rango", + "Sonarwatch" + ], + "occurrences": 7 + }, + "0x2760e46d9bb43dafcbecaad1f64b93207f9f0ed7": { + "address": "0x2760e46d9bb43dafcbecaad1f64b93207f9f0ed7", + "symbol": "MVX", + "decimals": 18, + "name": "Metavault Trade", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x2760e46d9bb43dafcbecaad1f64b93207f9f0ed7.png", + "aggregators": [ + "QuickSwap", + "LiFi", + "Socket", + "Rubic", + "Squid", + "Rango", + "Sonarwatch" + ], + "occurrences": 7 + }, + "0xeb971fd26783f32694dbb392dd7289de23109148": { + "address": "0xeb971fd26783f32694dbb392dd7289de23109148", + "symbol": "SOPH", + "decimals": 18, + "name": "Sophon", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0xeb971fd26783f32694dbb392dd7289de23109148.png", + "aggregators": [ + "CoinGecko", + "1inch", + "LiFi", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 7 + }, + "0xee9a352f6aac4af1a5b9f467f6a93e0ffbe9dd35": { + "address": "0xee9a352f6aac4af1a5b9f467f6a93e0ffbe9dd35", + "symbol": "MASQ", + "decimals": 18, + "name": "MASQ", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0xee9a352f6aac4af1a5b9f467f6a93e0ffbe9dd35.png", + "aggregators": [ + "QuickSwap", + "1inch", + "LiFi", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 7 + }, + "0x695fc8b80f344411f34bdbcb4e621aa69ada384b": { + "address": "0x695fc8b80f344411f34bdbcb4e621aa69ada384b", + "symbol": "NITRO", + "decimals": 18, + "name": "Nitro League", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x695fc8b80f344411f34bdbcb4e621aa69ada384b.png", + "aggregators": [ + "QuickSwap", + "1inch", + "Socket", + "Rubic", + "Squid", + "Rango", + "Sonarwatch" + ], + "occurrences": 7 + }, + "0x0d500b1d8e8ef31e21c99d1db9a6444d3adf1270": { + "address": "0x0d500b1d8e8ef31e21c99d1db9a6444d3adf1270", + "symbol": "WMATIC", + "decimals": 18, + "name": "Wrapped MATIC", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x0d500b1d8e8ef31e21c99d1db9a6444d3adf1270.png", + "aggregators": [ + "QuickSwap", + "1inch", + "LiFi", + "TrustWallet", + "Socket", + "Rubic", + "Squid", + "Rango", + "Sonarwatch", + "SushiSwap" + ], + "occurrences": 10 + }, + "0xa3fa99a148fa48d14ed51d610c367c61876997f1": { + "address": "0xa3fa99a148fa48d14ed51d610c367c61876997f1", + "symbol": "MIMATIC", + "decimals": 18, + "name": "MAI", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0xa3fa99a148fa48d14ed51d610c367c61876997f1.png", + "aggregators": [ + "QuickSwap", + "1inch", + "LiFi", + "Socket", + "Rubic", + "Squid", + "Rango", + "Sonarwatch", + "SushiSwap" + ], + "occurrences": 9 + }, + "0x2c89bbc92bd86f8075d1decc58c7f4e0107f286b": { + "address": "0x2c89bbc92bd86f8075d1decc58c7f4e0107f286b", + "symbol": "AVAX", + "decimals": 18, + "name": "Avalanche Token", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x2c89bbc92bd86f8075d1decc58c7f4e0107f286b.png", + "aggregators": [ + "QuickSwap", + "1inch", + "LiFi", + "Socket", + "Rubic", + "Squid", + "Rango", + "Sonarwatch", + "SushiSwap" + ], + "occurrences": 9 + }, + "0x2f800db0fdb5223b3c3f354886d907a671414a7f": { + "address": "0x2f800db0fdb5223b3c3f354886d907a671414a7f", + "symbol": "BCT", + "decimals": 18, + "name": "Toucan Protocol: Base Carbon Tonne", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x2f800db0fdb5223b3c3f354886d907a671414a7f.png", + "aggregators": [ + "CoinGecko", + "1inch", + "LiFi", + "Rubic", + "Squid", + "Rango", + "Sonarwatch", + "SushiSwap" + ], + "occurrences": 8 + }, + "0xd838290e877e0188a4a44700463419ed96c16107": { + "address": "0xd838290e877e0188a4a44700463419ed96c16107", + "symbol": "NCT", + "decimals": 18, + "name": "Nature Carbon Tonne", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0xd838290e877e0188a4a44700463419ed96c16107.png", + "aggregators": [ + "CoinGecko", + "1inch", + "Socket", + "Rubic", + "Squid", + "Rango", + "Sonarwatch", + "SushiSwap" + ], + "occurrences": 8 + }, + "0x0e9b89007eee9c958c0eda24ef70723c2c93dd58": { + "address": "0x0e9b89007eee9c958c0eda24ef70723c2c93dd58", + "symbol": "ANKRMATIC", + "decimals": 18, + "name": "Ankr Staked MATIC", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x0e9b89007eee9c958c0eda24ef70723c2c93dd58.png", + "aggregators": [ + "QuickSwap", + "1inch", + "LiFi", + "Socket", + "Rubic", + "Rango", + "Sonarwatch", + "SushiSwap" + ], + "occurrences": 8 + }, + "0xcd7361ac3307d1c5a46b63086a90742ff44c63b3": { + "address": "0xcd7361ac3307d1c5a46b63086a90742ff44c63b3", + "symbol": "RAIDER", + "decimals": 18, + "name": "Crypto Raider", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0xcd7361ac3307d1c5a46b63086a90742ff44c63b3.png", + "aggregators": [ + "CoinGecko", + "1inch", + "LiFi", + "Rubic", + "Squid", + "Rango", + "Sonarwatch", + "SushiSwap" + ], + "occurrences": 8 + }, + "0x1379e8886a944d2d9d440b3d88df536aea08d9f3": { + "address": "0x1379e8886a944d2d9d440b3d88df536aea08d9f3", + "symbol": "MYST", + "decimals": 18, + "name": "Mysterium", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x1379e8886a944d2d9d440b3d88df536aea08d9f3.png", + "aggregators": [ + "QuickSwap", + "1inch", + "LiFi", + "Socket", + "Rubic", + "Squid", + "Rango", + "Sonarwatch" + ], + "occurrences": 8 + }, + "0xdbf31df14b66535af65aac99c32e9ea844e14501": { + "address": "0xdbf31df14b66535af65aac99c32e9ea844e14501", + "symbol": "RENBTC", + "decimals": 8, + "name": "Ren BTC", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0xdbf31df14b66535af65aac99c32e9ea844e14501.png", + "aggregators": [ + "CoinGecko", + "1inch", + "LiFi", + "Socket", + "Rubic", + "Rango", + "Sonarwatch", + "SushiSwap" + ], + "occurrences": 8 + }, + "0xdb725f82818de83e99f1dac22a9b5b51d3d04dd4": { + "address": "0xdb725f82818de83e99f1dac22a9b5b51d3d04dd4", + "symbol": "GET", + "decimals": 18, + "name": "Guaranteed Entrance Token", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0xdb725f82818de83e99f1dac22a9b5b51d3d04dd4.png", + "aggregators": [ + "CoinGecko", + "1inch", + "LiFi", + "Socket", + "Rubic", + "Rango", + "Sonarwatch", + "SushiSwap" + ], + "occurrences": 8 + }, + "0x750e4c4984a9e0f12978ea6742bc1c5d248f40ed": { + "address": "0x750e4c4984a9e0f12978ea6742bc1c5d248f40ed", + "symbol": "AXLUSDC", + "decimals": 6, + "name": "Axelar Wrapped USDC", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x750e4c4984a9e0f12978ea6742bc1c5d248f40ed.png", + "aggregators": [ + "QuickSwap", + "1inch", + "LiFi", + "Rubic", + "Squid", + "Rango", + "Sonarwatch", + "SushiSwap" + ], + "occurrences": 8 + }, + "0x614389eaae0a6821dc49062d56bda3d9d45fa2ff": { + "address": "0x614389eaae0a6821dc49062d56bda3d9d45fa2ff", + "symbol": "ORBS", + "decimals": 18, + "name": "Orbs", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x614389eaae0a6821dc49062d56bda3d9d45fa2ff.png", + "aggregators": [ + "QuickSwap", + "1inch", + "LiFi", + "Socket", + "Rubic", + "Squid", + "Rango", + "Sonarwatch" + ], + "occurrences": 8 + }, + "0x8c92e38eca8210f4fcbf17f0951b198dd7668292": { + "address": "0x8c92e38eca8210f4fcbf17f0951b198dd7668292", + "symbol": "DHT", + "decimals": 18, + "name": "dHedge DAO Token", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x8c92e38eca8210f4fcbf17f0951b198dd7668292.png", + "aggregators": [ + "CoinGecko", + "1inch", + "LiFi", + "Socket", + "Rubic", + "Rango", + "Sonarwatch", + "SushiSwap" + ], + "occurrences": 8 + }, + "0x65a05db8322701724c197af82c9cae41195b0aa8": { + "address": "0x65a05db8322701724c197af82c9cae41195b0aa8", + "symbol": "FOX", + "decimals": 18, + "name": "ShapeShift FOX Token", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x65a05db8322701724c197af82c9cae41195b0aa8.png", + "aggregators": [ + "CoinGecko", + "1inch", + "LiFi", + "Socket", + "Rubic", + "Rango", + "Sonarwatch", + "SushiSwap" + ], + "occurrences": 8 + }, + "0x8505b9d2254a7ae468c0e9dd10ccea3a837aef5c": { + "address": "0x8505b9d2254a7ae468c0e9dd10ccea3a837aef5c", + "symbol": "COMP", + "decimals": 18, + "name": "Compound", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x8505b9d2254a7ae468c0e9dd10ccea3a837aef5c.png", + "aggregators": [ + "CoinGecko", + "LiFi", + "Socket", + "Rubic", + "Rango", + "Sonarwatch", + "SushiSwap" + ], + "occurrences": 7 + }, + "0xc3fdbadc7c795ef1d6ba111e06ff8f16a20ea539": { + "address": "0xc3fdbadc7c795ef1d6ba111e06ff8f16a20ea539", + "symbol": "ADDY", + "decimals": 18, + "name": "Adamant", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0xc3fdbadc7c795ef1d6ba111e06ff8f16a20ea539.png", + "aggregators": [ + "QuickSwap", + "1inch", + "LiFi", + "Rubic", + "Rango", + "Sonarwatch", + "SushiSwap" + ], + "occurrences": 7 + }, + "0x7e4c577ca35913af564ee2a24d882a4946ec492b": { + "address": "0x7e4c577ca35913af564ee2a24d882a4946ec492b", + "symbol": "MOONED", + "decimals": 18, + "name": "MoonEdge", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x7e4c577ca35913af564ee2a24d882a4946ec492b.png", + "aggregators": [ + "QuickSwap", + "1inch", + "LiFi", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 7 + }, + "0x200c234721b5e549c3693ccc93cf191f90dc2af9": { + "address": "0x200c234721b5e549c3693ccc93cf191f90dc2af9", + "symbol": "METAL", + "decimals": 18, + "name": "Badmad Robots", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x200c234721b5e549c3693ccc93cf191f90dc2af9.png", + "aggregators": [ + "CoinGecko", + "1inch", + "Socket", + "Rubic", + "Squid", + "Rango", + "Sonarwatch" + ], + "occurrences": 7 + }, + "0x34d4ab47bee066f361fa52d792e69ac7bd05ee23": { + "address": "0x34d4ab47bee066f361fa52d792e69ac7bd05ee23", + "symbol": "AURUM", + "decimals": 18, + "name": "Raider Aurum", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x34d4ab47bee066f361fa52d792e69ac7bd05ee23.png", + "aggregators": [ + "CoinGecko", + "1inch", + "Rubic", + "Squid", + "Rango", + "Sonarwatch", + "SushiSwap" + ], + "occurrences": 7 + }, + "0xa3c322ad15218fbfaed26ba7f616249f7705d945": { + "address": "0xa3c322ad15218fbfaed26ba7f616249f7705d945", + "symbol": "MV", + "decimals": 18, + "name": "GensoKishi Metaverse", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0xa3c322ad15218fbfaed26ba7f616249f7705d945.png", + "aggregators": [ + "QuickSwap", + "1inch", + "LiFi", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 7 + }, + "0xe5417af564e4bfda1c483642db72007871397896": { + "address": "0xe5417af564e4bfda1c483642db72007871397896", + "symbol": "GNS", + "decimals": 18, + "name": "Gains Network", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0xe5417af564e4bfda1c483642db72007871397896.png", + "aggregators": [ + "QuickSwap", + "1inch", + "LiFi", + "Rubic", + "Squid", + "Rango", + "Sonarwatch" + ], + "occurrences": 7 + }, + "0xd1f9c58e33933a993a3891f8acfe05a68e1afc05": { + "address": "0xd1f9c58e33933a993a3891f8acfe05a68e1afc05", + "symbol": "SFL", + "decimals": 18, + "name": "Sunflower Land", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0xd1f9c58e33933a993a3891f8acfe05a68e1afc05.png", + "aggregators": [ + "QuickSwap", + "1inch", + "LiFi", + "Rubic", + "Squid", + "Rango", + "Sonarwatch" + ], + "occurrences": 7 + }, + "0x41b3966b4ff7b427969ddf5da3627d6aeae9a48e": { + "address": "0x41b3966b4ff7b427969ddf5da3627d6aeae9a48e", + "symbol": "NEXO", + "decimals": 18, + "name": "Nexo", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x41b3966b4ff7b427969ddf5da3627d6aeae9a48e.png", + "aggregators": [ + "QuickSwap", + "LiFi", + "Socket", + "Rubic", + "Rango", + "Sonarwatch", + "SushiSwap" + ], + "occurrences": 7 + }, + "0x282d8efce846a88b159800bd4130ad77443fa1a1": { + "address": "0x282d8efce846a88b159800bd4130ad77443fa1a1", + "symbol": "OCEAN", + "decimals": 18, + "name": "Ocean Protocol", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x282d8efce846a88b159800bd4130ad77443fa1a1.png", + "aggregators": [ + "QuickSwap", + "1inch", + "LiFi", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 7 + }, + "0x101a023270368c0d50bffb62780f4afd4ea79c35": { + "address": "0x101a023270368c0d50bffb62780f4afd4ea79c35", + "symbol": "ANKR", + "decimals": 18, + "name": "Ankr (PoS)", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x101a023270368c0d50bffb62780f4afd4ea79c35.png", + "aggregators": [ + "QuickSwap", + "LiFi", + "Socket", + "Rubic", + "Rango", + "Sonarwatch", + "SushiSwap" + ], + "occurrences": 7 + }, + "0x831753dd7087cac61ab5644b308642cc1c33dc13": { + "address": "0x831753dd7087cac61ab5644b308642cc1c33dc13", + "symbol": "QUICK", + "decimals": 18, + "name": "Quickswap [OLD]", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x831753dd7087cac61ab5644b308642cc1c33dc13.png", + "aggregators": [ + "QuickSwap", + "LiFi", + "Socket", + "Rubic", + "Squid", + "Rango", + "Sonarwatch" + ], + "occurrences": 7 + }, + "0x1a3acf6d19267e2d3e7f898f42803e90c9219062": { + "address": "0x1a3acf6d19267e2d3e7f898f42803e90c9219062", + "symbol": "FXS", + "decimals": 18, + "name": "Frax Share", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x1a3acf6d19267e2d3e7f898f42803e90c9219062.png", + "aggregators": [ + "CoinGecko", + "LiFi", + "Socket", + "Rubic", + "Rango", + "Sonarwatch", + "SushiSwap" + ], + "occurrences": 7 + }, + "0xee800b277a96b0f490a1a732e1d6395fad960a26": { + "address": "0xee800b277a96b0f490a1a732e1d6395fad960a26", + "symbol": "ARPA", + "decimals": 18, + "name": "ARPA Token", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0xee800b277a96b0f490a1a732e1d6395fad960a26.png", + "aggregators": [ + "CoinGecko", + "LiFi", + "Socket", + "Rubic", + "Rango", + "Sonarwatch", + "SushiSwap" + ], + "occurrences": 7 + }, + "0x85955046df4668e1dd369d2de9f3aeb98dd2a369": { + "address": "0x85955046df4668e1dd369d2de9f3aeb98dd2a369", + "symbol": "DPI", + "decimals": 18, + "name": "DefiPulse Index", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x85955046df4668e1dd369d2de9f3aeb98dd2a369.png", + "aggregators": [ + "QuickSwap", + "LiFi", + "Socket", + "Rubic", + "Rango", + "Sonarwatch", + "SushiSwap" + ], + "occurrences": 7 + }, + "0xf4c83080e80ae530d6f8180572cbbf1ac9d5d435": { + "address": "0xf4c83080e80ae530d6f8180572cbbf1ac9d5d435", + "symbol": "BLANK", + "decimals": 18, + "name": "BlockWallet", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0xf4c83080e80ae530d6f8180572cbbf1ac9d5d435.png", + "aggregators": [ + "QuickSwap", + "1inch", + "LiFi", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 7 + }, + "0x598e49f01befeb1753737934a5b11fea9119c796": { + "address": "0x598e49f01befeb1753737934a5b11fea9119c796", + "symbol": "ADS", + "decimals": 11, + "name": "Adshares", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x598e49f01befeb1753737934a5b11fea9119c796.png", + "aggregators": [ + "QuickSwap", + "1inch", + "LiFi", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 7 + }, + "0x6968105460f67c3bf751be7c15f92f5286fd0ce5": { + "address": "0x6968105460f67c3bf751be7c15f92f5286fd0ce5", + "symbol": "MONA", + "decimals": 18, + "name": "Monavale", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x6968105460f67c3bf751be7c15f92f5286fd0ce5.png", + "aggregators": [ + "QuickSwap", + "1inch", + "LiFi", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 7 + }, + "0xfe712251173a2cd5f5be2b46bb528328ea3565e1": { + "address": "0xfe712251173a2cd5f5be2b46bb528328ea3565e1", + "symbol": "MVI", + "decimals": 18, + "name": "Metaverse Index", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0xfe712251173a2cd5f5be2b46bb528328ea3565e1.png", + "aggregators": [ + "CoinGecko", + "1inch", + "LiFi", + "Socket", + "Rubic", + "Rango", + "SushiSwap" + ], + "occurrences": 7 + }, + "0xd8ca34fd379d9ca3c6ee3b3905678320f5b45195": { + "address": "0xd8ca34fd379d9ca3c6ee3b3905678320f5b45195", + "symbol": "GOHM", + "decimals": 18, + "name": "Governance Ohm", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0xd8ca34fd379d9ca3c6ee3b3905678320f5b45195.png", + "aggregators": [ + "CoinGecko", + "1inch", + "Socket", + "Rubic", + "Rango", + "Sonarwatch", + "SushiSwap" + ], + "occurrences": 7 + }, + "0x2b9e7ccdf0f4e5b24757c1e1a80e311e34cb10c7": { + "address": "0x2b9e7ccdf0f4e5b24757c1e1a80e311e34cb10c7", + "symbol": "MASK", + "decimals": 18, + "name": "MASK", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x2b9e7ccdf0f4e5b24757c1e1a80e311e34cb10c7.png", + "aggregators": [ + "QuickSwap", + "1inch", + "LiFi", + "Socket", + "Rubic", + "Squid", + "Rango" + ], + "occurrences": 7 + }, + "0xd93f7e271cb87c23aaa73edc008a79646d1f9912": { + "address": "0xd93f7e271cb87c23aaa73edc008a79646d1f9912", + "symbol": "SOL", + "decimals": 9, + "name": "SOL (Wormhole)", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0xd93f7e271cb87c23aaa73edc008a79646d1f9912.png", + "aggregators": [ + "CoinGecko", + "1inch", + "LiFi", + "Rubic", + "Squid", + "Rango", + "Sonarwatch" + ], + "occurrences": 7 + }, + "0x70c006878a5a50ed185ac4c87d837633923de296": { + "address": "0x70c006878a5a50ed185ac4c87d837633923de296", + "symbol": "REVV", + "decimals": 18, + "name": "REVV", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x70c006878a5a50ed185ac4c87d837633923de296.png", + "aggregators": [ + "QuickSwap", + "1inch", + "LiFi", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 7 + }, + "0x6ae7dfc73e0dde2aa99ac063dcf7e8a63265108c": { + "address": "0x6ae7dfc73e0dde2aa99ac063dcf7e8a63265108c", + "symbol": "JPYC", + "decimals": 18, + "name": "JPY Coin", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x6ae7dfc73e0dde2aa99ac063dcf7e8a63265108c.png", + "aggregators": [ + "QuickSwap", + "LiFi", + "Socket", + "Rubic", + "Rango", + "Sonarwatch", + "SushiSwap" + ], + "occurrences": 7 + }, + "0xc3ec80343d2bae2f8e680fdadde7c17e71e114ea": { + "address": "0xc3ec80343d2bae2f8e680fdadde7c17e71e114ea", + "symbol": "OM", + "decimals": 18, + "name": "MANTRA", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0xc3ec80343d2bae2f8e680fdadde7c17e71e114ea.png", + "aggregators": [ + "QuickSwap", + "1inch", + "LiFi", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 7 + }, + "0x76e63a3e7ba1e2e61d3da86a87479f983de89a7e": { + "address": "0x76e63a3e7ba1e2e61d3da86a87479f983de89a7e", + "symbol": "OMEN", + "decimals": 18, + "name": "Augury Finance", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x76e63a3e7ba1e2e61d3da86a87479f983de89a7e.png", + "aggregators": [ + "QuickSwap", + "1inch", + "Rubic", + "Rango", + "Sonarwatch", + "SushiSwap" + ], + "occurrences": 6 + }, + "0xd125443f38a69d776177c2b9c041f462936f8218": { + "address": "0xd125443f38a69d776177c2b9c041f462936f8218", + "symbol": "FBX", + "decimals": 18, + "name": "FireBotToken", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0xd125443f38a69d776177c2b9c041f462936f8218.png", + "aggregators": [ + "QuickSwap", + "Socket", + "Rubic", + "Rango", + "Sonarwatch", + "SushiSwap" + ], + "occurrences": 6 + }, + "0x8f9e8e833a69aa467e42c46cca640da84dd4585f": { + "address": "0x8f9e8e833a69aa467e42c46cca640da84dd4585f", + "symbol": "CHAMP", + "decimals": 8, + "name": "NFT Champions", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x8f9e8e833a69aa467e42c46cca640da84dd4585f.png", + "aggregators": [ + "QuickSwap", + "1inch", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 6 + }, + "0xc004e2318722ea2b15499d6375905d75ee5390b8": { + "address": "0xc004e2318722ea2b15499d6375905d75ee5390b8", + "symbol": "KOM", + "decimals": 8, + "name": "Kommunitas", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0xc004e2318722ea2b15499d6375905d75ee5390b8.png", + "aggregators": [ + "QuickSwap", + "1inch", + "Rubic", + "Rango", + "Sonarwatch", + "SushiSwap" + ], + "occurrences": 6 + }, + "0x00000000efe302beaa2b3e6e1b18d08d69a9012a": { + "address": "0x00000000efe302beaa2b3e6e1b18d08d69a9012a", + "symbol": "AUSD", + "decimals": 6, + "name": "AUSD", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x00000000efe302beaa2b3e6e1b18d08d69a9012a.png", + "aggregators": [ + "CoinGecko", + "LiFi", + "Rubic", + "Squid", + "Rango", + "Sonarwatch" + ], + "occurrences": 6 + }, + "0x0266f4f08d82372cf0fcbccc0ff74309089c74d1": { + "address": "0x0266f4f08d82372cf0fcbccc0ff74309089c74d1", + "symbol": "RETH", + "decimals": 18, + "name": "Rocket Pool ETH", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x0266f4f08d82372cf0fcbccc0ff74309089c74d1.png", + "aggregators": [ + "CoinGecko", + "LiFi", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 6 + }, + "0x23d29d30e35c5e8d321e1dc9a8a61bfd846d4c5c": { + "address": "0x23d29d30e35c5e8d321e1dc9a8a61bfd846d4c5c", + "symbol": "HEX", + "decimals": 8, + "name": "HEX", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x23d29d30e35c5e8d321e1dc9a8a61bfd846d4c5c.png", + "aggregators": [ + "QuickSwap", + "LiFi", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 6 + }, + "0xe82808eaa78339b06a691fd92e1be79671cad8d3": { + "address": "0xe82808eaa78339b06a691fd92e1be79671cad8d3", + "symbol": "PLOT", + "decimals": 18, + "name": "PLOT", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0xe82808eaa78339b06a691fd92e1be79671cad8d3.png", + "aggregators": [ + "QuickSwap", + "1inch", + "LiFi", + "Socket", + "Rubic", + "Rango" + ], + "occurrences": 6 + }, + "0x3b1a0c9252ee7403093ff55b4a5886d49a3d837a": { + "address": "0x3b1a0c9252ee7403093ff55b4a5886d49a3d837a", + "symbol": "UM", + "decimals": 18, + "name": "Continuum World", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x3b1a0c9252ee7403093ff55b4a5886d49a3d837a.png", + "aggregators": [ + "QuickSwap", + "1inch", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 6 + }, + "0x2bc07124d8dac638e290f401046ad584546bc47b": { + "address": "0x2bc07124d8dac638e290f401046ad584546bc47b", + "symbol": "TOWER", + "decimals": 18, + "name": "Tower", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x2bc07124d8dac638e290f401046ad584546bc47b.png", + "aggregators": [ + "QuickSwap", + "1inch", + "LiFi", + "Socket", + "Rubic", + "Sonarwatch" + ], + "occurrences": 6 + }, + "0x1599fe55cda767b1f631ee7d414b41f5d6de393d": { + "address": "0x1599fe55cda767b1f631ee7d414b41f5d6de393d", + "symbol": "MILK", + "decimals": 18, + "name": "Milk", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x1599fe55cda767b1f631ee7d414b41f5d6de393d.png", + "aggregators": ["QuickSwap", "1inch", "Socket", "Rubic", "Rango"], + "occurrences": 5 + }, + "0xeb7eab87837f4dad1bb80856db9e4506fc441f3d": { + "address": "0xeb7eab87837f4dad1bb80856db9e4506fc441f3d", + "symbol": "MEE", + "decimals": 18, + "name": "Medieval Empires", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0xeb7eab87837f4dad1bb80856db9e4506fc441f3d.png", + "aggregators": ["QuickSwap", "Socket", "Rubic", "Squid", "Rango"], + "occurrences": 5 + }, + "0x2791bca1f2de4661ed88a30c99a7a9449aa84174": { + "address": "0x2791bca1f2de4661ed88a30c99a7a9449aa84174", + "symbol": "USDC.E", + "decimals": 6, + "name": "USD Coin (PoS)", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x2791bca1f2de4661ed88a30c99a7a9449aa84174.png", + "aggregators": [ + "Metamask", + "1inch", + "LiFi", + "TrustWallet", + "Socket", + "Rubic", + "Squid", + "Rango", + "Sonarwatch", + "SushiSwap" + ], + "occurrences": 10 + }, + "0x6985884c4392d348587b19cb9eaaf157f13271cd": { + "address": "0x6985884c4392d348587b19cb9eaaf157f13271cd", + "symbol": "ZRO", + "decimals": 18, + "name": "LayerZero", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x6985884c4392d348587b19cb9eaaf157f13271cd.png", + "aggregators": [ + "CoinGecko", + "1inch", + "LiFi", + "Socket", + "Rubic", + "Squid", + "Rango", + "Sonarwatch", + "SushiSwap" + ], + "occurrences": 9 + }, + "0xf50d05a1402d0adafa880d36050736f9f6ee7dee": { + "address": "0xf50d05a1402d0adafa880d36050736f9f6ee7dee", + "symbol": "INST", + "decimals": 18, + "name": "Instadapp", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0xf50d05a1402d0adafa880d36050736f9f6ee7dee.png", + "aggregators": [ + "CoinGecko", + "1inch", + "LiFi", + "Socket", + "Rubic", + "Squid", + "Rango", + "Sonarwatch", + "SushiSwap" + ], + "occurrences": 9 + }, + "0xdc3326e71d45186f113a2f448984ca0e8d201995": { + "address": "0xdc3326e71d45186f113a2f448984ca0e8d201995", + "symbol": "XSGD", + "decimals": 6, + "name": "XSGD", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0xdc3326e71d45186f113a2f448984ca0e8d201995.png", + "aggregators": [ + "CoinGecko", + "1inch", + "LiFi", + "Socket", + "Rubic", + "Squid", + "Rango", + "Sonarwatch" + ], + "occurrences": 8 + }, + "0xb5c064f955d8e7f38fe0460c556a72987494ee17": { + "address": "0xb5c064f955d8e7f38fe0460c556a72987494ee17", + "symbol": "QUICK", + "decimals": 18, + "name": "QuickSwap", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0xb5c064f955d8e7f38fe0460c556a72987494ee17.png", + "aggregators": [ + "Metamask", + "1inch", + "LiFi", + "Socket", + "Rubic", + "Squid", + "Rango", + "Sonarwatch" + ], + "occurrences": 8 + }, + "0xb121fcd122daaa153bb8a102754127b2682645cb": { + "address": "0xb121fcd122daaa153bb8a102754127b2682645cb", + "symbol": "PERL", + "decimals": 18, + "name": "Perlin (PoS)", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0xb121fcd122daaa153bb8a102754127b2682645cb.png", + "aggregators": [ + "CoinGecko", + "LiFi", + "Socket", + "Rubic", + "Squid", + "Rango", + "Sonarwatch", + "SushiSwap" + ], + "occurrences": 8 + }, + "0xe111178a87a3bff0c8d18decba5798827539ae99": { + "address": "0xe111178a87a3bff0c8d18decba5798827539ae99", + "symbol": "EURS", + "decimals": 2, + "name": "STASIS EURS Token (PoS)", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0xe111178a87a3bff0c8d18decba5798827539ae99.png", + "aggregators": [ + "CoinGecko", + "1inch", + "LiFi", + "Socket", + "Rubic", + "Rango", + "Sonarwatch", + "SushiSwap" + ], + "occurrences": 8 + }, + "0x18e73a5333984549484348a94f4d219f4fab7b81": { + "address": "0x18e73a5333984549484348a94f4d219f4fab7b81", + "symbol": "DUCKIES", + "decimals": 8, + "name": "Yellow Duckies", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x18e73a5333984549484348a94f4d219f4fab7b81.png", + "aggregators": [ + "CoinGecko", + "Socket", + "Rubic", + "Squid", + "Rango", + "Sonarwatch", + "SushiSwap" + ], + "occurrences": 7 + }, + "0xc6c855ad634dcdad23e64da71ba85b8c51e5ad7c": { + "address": "0xc6c855ad634dcdad23e64da71ba85b8c51e5ad7c", + "symbol": "ICE", + "decimals": 18, + "name": "Decentral Games ICE", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0xc6c855ad634dcdad23e64da71ba85b8c51e5ad7c.png", + "aggregators": [ + "QuickSwap", + "1inch", + "LiFi", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 7 + }, + "0x8f18dc399594b451eda8c5da02d0563c0b2d0f16": { + "address": "0x8f18dc399594b451eda8c5da02d0563c0b2d0f16", + "symbol": "WOLF", + "decimals": 9, + "name": "Moonwolf", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x8f18dc399594b451eda8c5da02d0563c0b2d0f16.png", + "aggregators": [ + "CoinGecko", + "1inch", + "Socket", + "Rubic", + "Rango", + "Sonarwatch", + "SushiSwap" + ], + "occurrences": 7 + }, + "0xe261d618a959afffd53168cd07d12e37b26761db": { + "address": "0xe261d618a959afffd53168cd07d12e37b26761db", + "symbol": "DIMO", + "decimals": 18, + "name": "DIMO", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0xe261d618a959afffd53168cd07d12e37b26761db.png", + "aggregators": [ + "CoinGecko", + "LiFi", + "Socket", + "Rubic", + "Squid", + "Rango", + "Sonarwatch" + ], + "occurrences": 7 + }, + "0x255707b70bf90aa112006e1b07b9aea6de021424": { + "address": "0x255707b70bf90aa112006e1b07b9aea6de021424", + "symbol": "TETU", + "decimals": 18, + "name": "TETU Reward Token", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x255707b70bf90aa112006e1b07b9aea6de021424.png", + "aggregators": [ + "CoinGecko", + "1inch", + "LiFi", + "Rubic", + "Rango", + "Sonarwatch", + "SushiSwap" + ], + "occurrences": 7 + }, + "0x3ad707da309f3845cd602059901e39c4dcd66473": { + "address": "0x3ad707da309f3845cd602059901e39c4dcd66473", + "symbol": "ETH2X-FLI-P", + "decimals": 18, + "name": "ETH 2x Flexible Leverage Index", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x3ad707da309f3845cd602059901e39c4dcd66473.png", + "aggregators": [ + "CoinGecko", + "LiFi", + "Socket", + "Rubic", + "Squid", + "Rango", + "SushiSwap" + ], + "occurrences": 7 + }, + "0xaaa5b9e6c589642f98a1cda99b9d024b8407285a": { + "address": "0xaaa5b9e6c589642f98a1cda99b9d024b8407285a", + "symbol": "TITAN", + "decimals": 18, + "name": "IRON Titanium", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0xaaa5b9e6c589642f98a1cda99b9d024b8407285a.png", + "aggregators": [ + "CoinGecko", + "1inch", + "Socket", + "Rubic", + "Rango", + "Sonarwatch", + "SushiSwap" + ], + "occurrences": 7 + }, + "0x236aa50979d5f3de3bd1eeb40e81137f22ab794b": { + "address": "0x236aa50979d5f3de3bd1eeb40e81137f22ab794b", + "symbol": "TBTC", + "decimals": 18, + "name": "tBTC", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x236aa50979d5f3de3bd1eeb40e81137f22ab794b.png", + "aggregators": [ + "CoinGecko", + "1inch", + "LiFi", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 7 + }, + "0x59d9356e565ab3a36dd77763fc0d87feaf85508c": { + "address": "0x59d9356e565ab3a36dd77763fc0d87feaf85508c", + "symbol": "USDM", + "decimals": 18, + "name": "Mountain Protocol USD", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x59d9356e565ab3a36dd77763fc0d87feaf85508c.png", + "aggregators": [ + "CoinGecko", + "1inch", + "LiFi", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 7 + }, + "0x9c9e5fd8bbc25984b178fdce6117defa39d2db39": { + "address": "0x9c9e5fd8bbc25984b178fdce6117defa39d2db39", + "symbol": "BUSD", + "decimals": 18, + "name": "Binance-Peg BUSD", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x9c9e5fd8bbc25984b178fdce6117defa39d2db39.png", + "aggregators": [ + "CoinGecko", + "1inch", + "LiFi", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 7 + }, + "0xe5b49820e5a1063f6f4ddf851327b5e8b2301048": { + "address": "0xe5b49820e5a1063f6f4ddf851327b5e8b2301048", + "symbol": "BONK", + "decimals": 5, + "name": "Bonk", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0xe5b49820e5a1063f6f4ddf851327b5e8b2301048.png", + "aggregators": [ + "CoinGecko", + "1inch", + "Socket", + "Rubic", + "Squid", + "Rango", + "Sonarwatch" + ], + "occurrences": 7 + }, + "0x6ddb31002abc64e1479fc439692f7ea061e78165": { + "address": "0x6ddb31002abc64e1479fc439692f7ea061e78165", + "symbol": "COMBO", + "decimals": 18, + "name": "Furucombo", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x6ddb31002abc64e1479fc439692f7ea061e78165.png", + "aggregators": [ + "QuickSwap", + "LiFi", + "Socket", + "Rubic", + "Rango", + "Sonarwatch", + "SushiSwap" + ], + "occurrences": 7 + }, + "0x5d47baba0d66083c52009271faf3f50dcc01023c": { + "address": "0x5d47baba0d66083c52009271faf3f50dcc01023c", + "symbol": "BANANA", + "decimals": 18, + "name": "ApeSwap", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x5d47baba0d66083c52009271faf3f50dcc01023c.png", + "aggregators": [ + "CoinGecko", + "1inch", + "LiFi", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 7 + }, + "0x840195888db4d6a99ed9f73fcd3b225bb3cb1a79": { + "address": "0x840195888db4d6a99ed9f73fcd3b225bb3cb1a79", + "symbol": "SX", + "decimals": 18, + "name": "SportX", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x840195888db4d6a99ed9f73fcd3b225bb3cb1a79.png", + "aggregators": [ + "CoinGecko", + "LiFi", + "Socket", + "Rubic", + "Rango", + "Sonarwatch", + "SushiSwap" + ], + "occurrences": 7 + }, + "0x9c78ee466d6cb57a4d01fd887d2b5dfb2d46288f": { + "address": "0x9c78ee466d6cb57a4d01fd887d2b5dfb2d46288f", + "symbol": "MUST", + "decimals": 18, + "name": "Must", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x9c78ee466d6cb57a4d01fd887d2b5dfb2d46288f.png", + "aggregators": [ + "CoinGecko", + "1inch", + "LiFi", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 7 + }, + "0x361a5a4993493ce00f61c32d4ecca5512b82ce90": { + "address": "0x361a5a4993493ce00f61c32d4ecca5512b82ce90", + "symbol": "SDT", + "decimals": 18, + "name": "Stake DAO", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x361a5a4993493ce00f61c32d4ecca5512b82ce90.png", + "aggregators": [ + "CoinGecko", + "1inch", + "LiFi", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 7 + }, + "0xd85d1e945766fea5eda9103f918bd915fbca63e6": { + "address": "0xd85d1e945766fea5eda9103f918bd915fbca63e6", + "symbol": "CEL", + "decimals": 4, + "name": "Celsius", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0xd85d1e945766fea5eda9103f918bd915fbca63e6.png", + "aggregators": [ + "CoinGecko", + "LiFi", + "Socket", + "Rubic", + "Rango", + "Sonarwatch", + "SushiSwap" + ], + "occurrences": 7 + }, + "0x3809dcdd5dde24b37abe64a5a339784c3323c44f": { + "address": "0x3809dcdd5dde24b37abe64a5a339784c3323c44f", + "symbol": "SWAP", + "decimals": 18, + "name": "TrustSwap", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x3809dcdd5dde24b37abe64a5a339784c3323c44f.png", + "aggregators": [ + "CoinGecko", + "LiFi", + "Socket", + "Rubic", + "Squid", + "Rango", + "Sonarwatch" + ], + "occurrences": 7 + }, + "0x034b2090b579228482520c589dbd397c53fc51cc": { + "address": "0x034b2090b579228482520c589dbd397c53fc51cc", + "symbol": "VISION", + "decimals": 18, + "name": "APY.vision", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x034b2090b579228482520c589dbd397c53fc51cc.png", + "aggregators": [ + "CoinGecko", + "1inch", + "LiFi", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 7 + }, + "0xb9638272ad6998708de56bbc0a290a1de534a578": { + "address": "0xb9638272ad6998708de56bbc0a290a1de534a578", + "symbol": "IQ", + "decimals": 18, + "name": "IQ", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0xb9638272ad6998708de56bbc0a290a1de534a578.png", + "aggregators": [ + "CoinGecko", + "1inch", + "LiFi", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 7 + }, + "0xc168e40227e4ebd8c1cae80f7a55a4f0e6d66c97": { + "address": "0xc168e40227e4ebd8c1cae80f7a55a4f0e6d66c97", + "symbol": "DFYN", + "decimals": 18, + "name": "Dfyn Network", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0xc168e40227e4ebd8c1cae80f7a55a4f0e6d66c97.png", + "aggregators": [ + "CoinGecko", + "1inch", + "LiFi", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 7 + }, + "0xf501dd45a1198c2e1b5aef5314a68b9006d842e0": { + "address": "0xf501dd45a1198c2e1b5aef5314a68b9006d842e0", + "symbol": "MTA", + "decimals": 18, + "name": "mStable Governance Token", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0xf501dd45a1198c2e1b5aef5314a68b9006d842e0.png", + "aggregators": [ + "CoinGecko", + "LiFi", + "Socket", + "Rubic", + "Rango", + "Sonarwatch", + "SushiSwap" + ], + "occurrences": 7 + }, + "0x6c0ab120dbd11ba701aff6748568311668f63fe0": { + "address": "0x6c0ab120dbd11ba701aff6748568311668f63fe0", + "symbol": "APW", + "decimals": 18, + "name": "Spectra", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x6c0ab120dbd11ba701aff6748568311668f63fe0.png", + "aggregators": [ + "CoinGecko", + "1inch", + "LiFi", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 7 + }, + "0x3cef98bb43d732e2f285ee605a8158cde967d219": { + "address": "0x3cef98bb43d732e2f285ee605a8158cde967d219", + "symbol": "BAT", + "decimals": 18, + "name": "Basic Attention Token", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x3cef98bb43d732e2f285ee605a8158cde967d219.png", + "aggregators": [ + "CoinGecko", + "LiFi", + "Socket", + "Rubic", + "Rango", + "Sonarwatch", + "SushiSwap" + ], + "occurrences": 7 + }, + "0xf4b0903774532aee5ee567c02aab681a81539e92": { + "address": "0xf4b0903774532aee5ee567c02aab681a81539e92", + "symbol": "GAJ", + "decimals": 18, + "name": "PolyGaj Token", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0xf4b0903774532aee5ee567c02aab681a81539e92.png", + "aggregators": [ + "CoinGecko", + "LiFi", + "Socket", + "Rubic", + "Rango", + "Sonarwatch", + "SushiSwap" + ], + "occurrences": 7 + }, + "0x2b88ad57897a8b496595925f43048301c37615da": { + "address": "0x2b88ad57897a8b496595925f43048301c37615da", + "symbol": "PICKLE", + "decimals": 18, + "name": "Pickle Finance", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x2b88ad57897a8b496595925f43048301c37615da.png", + "aggregators": [ + "CoinGecko", + "LiFi", + "Socket", + "Rubic", + "Rango", + "Sonarwatch", + "SushiSwap" + ], + "occurrences": 7 + }, + "0xe2aa7db6da1dae97c5f5c6914d285fbfcc32a128": { + "address": "0xe2aa7db6da1dae97c5f5c6914d285fbfcc32a128", + "symbol": "PAR", + "decimals": 18, + "name": "Parallel", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0xe2aa7db6da1dae97c5f5c6914d285fbfcc32a128.png", + "aggregators": [ + "CoinGecko", + "1inch", + "LiFi", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 7 + }, + "0xa486c6bc102f409180ccb8a94ba045d39f8fc7cb": { + "address": "0xa486c6bc102f409180ccb8a94ba045d39f8fc7cb", + "symbol": "NEX", + "decimals": 8, + "name": "Nash", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0xa486c6bc102f409180ccb8a94ba045d39f8fc7cb.png", + "aggregators": [ + "CoinGecko", + "1inch", + "LiFi", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 7 + }, + "0xa69d14d6369e414a32a5c7e729b7afbafd285965": { + "address": "0xa69d14d6369e414a32a5c7e729b7afbafd285965", + "symbol": "GCR", + "decimals": 4, + "name": "Global Coin Research", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0xa69d14d6369e414a32a5c7e729b7afbafd285965.png", + "aggregators": [ + "CoinGecko", + "1inch", + "LiFi", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 7 + }, + "0x64ca1571d1476b7a21c5aaf9f1a750a193a103c0": { + "address": "0x64ca1571d1476b7a21c5aaf9f1a750a193a103c0", + "symbol": "BONDLY", + "decimals": 18, + "name": "Forj", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x64ca1571d1476b7a21c5aaf9f1a750a193a103c0.png", + "aggregators": [ + "CoinGecko", + "1inch", + "LiFi", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 7 + }, + "0xdb7cb471dd0b49b29cab4a1c14d070f27216a0ab": { + "address": "0xdb7cb471dd0b49b29cab4a1c14d070f27216a0ab", + "symbol": "BANK", + "decimals": 18, + "name": "Bankless Token (PoS)", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0xdb7cb471dd0b49b29cab4a1c14d070f27216a0ab.png", + "aggregators": [ + "CoinGecko", + "LiFi", + "Socket", + "Rubic", + "Rango", + "Sonarwatch", + "SushiSwap" + ], + "occurrences": 7 + }, + "0xba3cb8329d442e6f9eb70fafe1e214251df3d275": { + "address": "0xba3cb8329d442e6f9eb70fafe1e214251df3d275", + "symbol": "SWASH", + "decimals": 18, + "name": "Swash", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0xba3cb8329d442e6f9eb70fafe1e214251df3d275.png", + "aggregators": [ + "CoinGecko", + "1inch", + "LiFi", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 7 + }, + "0x3a9a81d576d83ff21f26f325066054540720fc34": { + "address": "0x3a9a81d576d83ff21f26f325066054540720fc34", + "symbol": "DATA", + "decimals": 18, + "name": "Streamr", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x3a9a81d576d83ff21f26f325066054540720fc34.png", + "aggregators": [ + "CoinGecko", + "1inch", + "LiFi", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 7 + }, + "0xeeeeeb57642040be42185f49c52f7e9b38f8eeee": { + "address": "0xeeeeeb57642040be42185f49c52f7e9b38f8eeee", + "symbol": "ELK", + "decimals": 18, + "name": "Elk Finance", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0xeeeeeb57642040be42185f49c52f7e9b38f8eeee.png", + "aggregators": [ + "CoinGecko", + "1inch", + "LiFi", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 7 + }, + "0x431d5dff03120afa4bdf332c61a6e1766ef37bdb": { + "address": "0x431d5dff03120afa4bdf332c61a6e1766ef37bdb", + "symbol": "JPYC", + "decimals": 18, + "name": "JPY Coin", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x431d5dff03120afa4bdf332c61a6e1766ef37bdb.png", + "aggregators": [ + "CoinGecko", + "1inch", + "LiFi", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 7 + }, + "0x18ec0a6e18e5bc3784fdd3a3634b31245ab704f6": { + "address": "0x18ec0a6e18e5bc3784fdd3a3634b31245ab704f6", + "symbol": "EURE", + "decimals": 18, + "name": "Monerium EUR emoney", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x18ec0a6e18e5bc3784fdd3a3634b31245ab704f6.png", + "aggregators": [ + "CoinGecko", + "LiFi", + "Socket", + "Rubic", + "Squid", + "Rango", + "Sonarwatch" + ], + "occurrences": 7 + }, + "0x61299774020da444af134c82fa83e3810b309991": { + "address": "0x61299774020da444af134c82fa83e3810b309991", + "symbol": "RENDER", + "decimals": 18, + "name": "Render", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x61299774020da444af134c82fa83e3810b309991.png", + "aggregators": [ + "1inch", + "LiFi", + "Socket", + "Rubic", + "Squid", + "Rango", + "Sonarwatch" + ], + "occurrences": 7 + }, + "0xda537104d6a5edd53c6fbba9a898708e465260b6": { + "address": "0xda537104d6a5edd53c6fbba9a898708e465260b6", + "symbol": "YFI", + "decimals": 18, + "name": "yearn finance", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0xda537104d6a5edd53c6fbba9a898708e465260b6.png", + "aggregators": [ + "OpenSwap", + "LiFi", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 6 + }, + "0x3a3e7650f8b9f667da98f236010fbf44ee4b2975": { + "address": "0x3a3e7650f8b9f667da98f236010fbf44ee4b2975", + "symbol": "XUSD", + "decimals": 18, + "name": "xDollar Stablecoin", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x3a3e7650f8b9f667da98f236010fbf44ee4b2975.png", + "aggregators": [ + "CoinGecko", + "1inch", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 6 + }, + "0xce899f26928a2b21c6a2fddd393ef37c61dba918": { + "address": "0xce899f26928a2b21c6a2fddd393ef37c61dba918", + "symbol": "MOCA", + "decimals": 18, + "name": "Museum of Crypto Art", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0xce899f26928a2b21c6a2fddd393ef37c61dba918.png", + "aggregators": [ + "QuickSwap", + "LiFi", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 6 + }, + "0x8a953cfe442c5e8855cc6c61b1293fa648bae472": { + "address": "0x8a953cfe442c5e8855cc6c61b1293fa648bae472", + "symbol": "POLYDOGE", + "decimals": 18, + "name": "PolyDoge", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x8a953cfe442c5e8855cc6c61b1293fa648bae472.png", + "aggregators": [ + "QuickSwap", + "1inch", + "Rubic", + "Rango", + "Sonarwatch", + "SushiSwap" + ], + "occurrences": 6 + }, + "0x300211def2a644b036a9bdd3e58159bb2074d388": { + "address": "0x300211def2a644b036a9bdd3e58159bb2074d388", + "symbol": "CIOTX", + "decimals": 18, + "name": "Crosschain IOTX", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x300211def2a644b036a9bdd3e58159bb2074d388.png", + "aggregators": [ + "QuickSwap", + "LiFi", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 6 + }, + "0xaa9654becca45b5bdfa5ac646c939c62b527d394": { + "address": "0xaa9654becca45b5bdfa5ac646c939c62b527d394", + "symbol": "DINO", + "decimals": 18, + "name": "DinoSwap", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0xaa9654becca45b5bdfa5ac646c939c62b527d394.png", + "aggregators": [ + "CoinGecko", + "LiFi", + "Socket", + "Rubic", + "Rango", + "SushiSwap" + ], + "occurrences": 6 + }, + "0x5c2ed810328349100a66b82b78a1791b101c9d61": { + "address": "0x5c2ed810328349100a66b82b78a1791b101c9d61", + "symbol": "AMWBTC", + "decimals": 8, + "name": "Aave Polygon WBTC", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x5c2ed810328349100a66b82b78a1791b101c9d61.png", + "aggregators": [ + "CoinGecko", + "1inch", + "LiFi", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 6 + }, + "0x723b17718289a91af252d616de2c77944962d122": { + "address": "0x723b17718289a91af252d616de2c77944962d122", + "symbol": "GAIA", + "decimals": 18, + "name": "Gaia Everworld", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x723b17718289a91af252d616de2c77944962d122.png", + "aggregators": [ + "QuickSwap", + "1inch", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 6 + }, + "0x3a3df212b7aa91aa0402b9035b098891d276572b": { + "address": "0x3a3df212b7aa91aa0402b9035b098891d276572b", + "symbol": "FISH", + "decimals": 18, + "name": "Fish", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x3a3df212b7aa91aa0402b9035b098891d276572b.png", + "aggregators": [ + "CoinGecko", + "1inch", + "LiFi", + "Rubic", + "Rango", + "SushiSwap" + ], + "occurrences": 6 + }, + "0xba0dda8762c24da9487f5fa026a9b64b695a07ea": { + "address": "0xba0dda8762c24da9487f5fa026a9b64b695a07ea", + "symbol": "OX", + "decimals": 18, + "name": "OX Coin", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0xba0dda8762c24da9487f5fa026a9b64b695a07ea.png", + "aggregators": [ + "CoinGecko", + "1inch", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 6 + }, + "0xb87904db461005fc716a6bf9f2d451c33b10b80b": { + "address": "0xb87904db461005fc716a6bf9f2d451c33b10b80b", + "symbol": "AMKT", + "decimals": 18, + "name": "Alongside Crypto Market Index", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0xb87904db461005fc716a6bf9f2d451c33b10b80b.png", + "aggregators": [ + "CoinGecko", + "LiFi", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 6 + }, + "0xe6828d65bf5023ae1851d90d8783cc821ba7eee1": { + "address": "0xe6828d65bf5023ae1851d90d8783cc821ba7eee1", + "symbol": "ABOND", + "decimals": 18, + "name": "ApeBond", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0xe6828d65bf5023ae1851d90d8783cc821ba7eee1.png", + "aggregators": [ + "CoinGecko", + "LiFi", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 6 + }, + "0x4f604735c1cf31399c6e711d5962b2b3e0225ad3": { + "address": "0x4f604735c1cf31399c6e711d5962b2b3e0225ad3", + "symbol": "USDGLO", + "decimals": 18, + "name": "Glo Dollar", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x4f604735c1cf31399c6e711d5962b2b3e0225ad3.png", + "aggregators": [ + "CoinGecko", + "Socket", + "Rubic", + "Squid", + "Rango", + "Sonarwatch" + ], + "occurrences": 6 + }, + "0xd55fce7cdab84d84f2ef3f99816d765a2a94a509": { + "address": "0xd55fce7cdab84d84f2ef3f99816d765a2a94a509", + "symbol": "CHAIN", + "decimals": 18, + "name": "CHAIN", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0xd55fce7cdab84d84f2ef3f99816d765a2a94a509.png", + "aggregators": [ + "CoinGecko", + "1inch", + "LiFi", + "Socket", + "Rubic", + "Rango" + ], + "occurrences": 6 + }, + "0xfef5d947472e72efbb2e388c730b7428406f2f95": { + "address": "0xfef5d947472e72efbb2e388c730b7428406f2f95", + "symbol": "OLAS", + "decimals": 18, + "name": "Autonolas", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0xfef5d947472e72efbb2e388c730b7428406f2f95.png", + "aggregators": [ + "CoinGecko", + "LiFi", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 6 + }, + "0xa1428174f516f527fafdd146b883bb4428682737": { + "address": "0xa1428174f516f527fafdd146b883bb4428682737", + "symbol": "SUPER", + "decimals": 18, + "name": "SUPER", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0xa1428174f516f527fafdd146b883bb4428682737.png", + "aggregators": [ + "CoinGecko", + "1inch", + "LiFi", + "Socket", + "Rubic", + "Rango" + ], + "occurrences": 6 + }, + "0xb755506531786c8ac63b756bab1ac387bacb0c04": { + "address": "0xb755506531786c8ac63b756bab1ac387bacb0c04", + "symbol": "ZARP", + "decimals": 18, + "name": "ZARP Stablecoin", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0xb755506531786c8ac63b756bab1ac387bacb0c04.png", + "aggregators": [ + "CoinGecko", + "LiFi", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 6 + }, + "0xbfc70507384047aa74c29cdc8c5cb88d0f7213ac": { + "address": "0xbfc70507384047aa74c29cdc8c5cb88d0f7213ac", + "symbol": "ALI", + "decimals": 18, + "name": "Artificial Liquid Intelligence", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0xbfc70507384047aa74c29cdc8c5cb88d0f7213ac.png", + "aggregators": [ + "QuickSwap", + "LiFi", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 6 + }, + "0xa55870278d6389ec5b524553d03c04f5677c061e": { + "address": "0xa55870278d6389ec5b524553d03c04f5677c061e", + "symbol": "XCAD", + "decimals": 18, + "name": "XCAD Network", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0xa55870278d6389ec5b524553d03c04f5677c061e.png", + "aggregators": [ + "QuickSwap", + "LiFi", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 6 + }, + "0x692ac1e363ae34b6b489148152b12e2785a3d8d6": { + "address": "0x692ac1e363ae34b6b489148152b12e2785a3d8d6", + "symbol": "TRADE", + "decimals": 18, + "name": "Polytrade", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x692ac1e363ae34b6b489148152b12e2785a3d8d6.png", + "aggregators": [ + "QuickSwap", + "LiFi", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 6 + }, + "0x1d734a02ef1e1f5886e66b0673b71af5b53ffa94": { + "address": "0x1d734a02ef1e1f5886e66b0673b71af5b53ffa94", + "symbol": "SD", + "decimals": 18, + "name": "Stader", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x1d734a02ef1e1f5886e66b0673b71af5b53ffa94.png", + "aggregators": [ + "QuickSwap", + "LiFi", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 6 + }, + "0x4e3decbb3645551b8a19f0ea1678079fcb33fb4c": { + "address": "0x4e3decbb3645551b8a19f0ea1678079fcb33fb4c", + "symbol": "JEUR", + "decimals": 18, + "name": "Jarvis Synthetic Euro", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x4e3decbb3645551b8a19f0ea1678079fcb33fb4c.png", + "aggregators": [ + "CoinGecko", + "1inch", + "LiFi", + "Socket", + "Rubic", + "Rango" + ], + "occurrences": 6 + }, + "0x00e5646f60ac6fb446f621d146b6e1886f002905": { + "address": "0x00e5646f60ac6fb446f621d146b6e1886f002905", + "symbol": "RAI", + "decimals": 18, + "name": "RAI", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x00e5646f60ac6fb446f621d146b6e1886f002905.png", + "aggregators": [ + "CoinGecko", + "1inch", + "LiFi", + "Socket", + "Rubic", + "Rango" + ], + "occurrences": 6 + }, + "0xc10358f062663448a3489fc258139944534592ac": { + "address": "0xc10358f062663448a3489fc258139944534592ac", + "symbol": "BCMC", + "decimals": 18, + "name": "Blockchain Monster Hunt", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0xc10358f062663448a3489fc258139944534592ac.png", + "aggregators": [ + "CoinGecko", + "1inch", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 6 + }, + "0xef938b6da8576a896f6e0321ef80996f4890f9c4": { + "address": "0xef938b6da8576a896f6e0321ef80996f4890f9c4", + "symbol": "DG", + "decimals": 18, + "name": "Decentral Games", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0xef938b6da8576a896f6e0321ef80996f4890f9c4.png", + "aggregators": [ + "QuickSwap", + "LiFi", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 6 + }, + "0x430ef9263e76dae63c84292c3409d61c598e9682": { + "address": "0x430ef9263e76dae63c84292c3409d61c598e9682", + "symbol": "PYR", + "decimals": 18, + "name": "Vulcan Forged", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x430ef9263e76dae63c84292c3409d61c598e9682.png", + "aggregators": [ + "QuickSwap", + "LiFi", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 6 + }, + "0x43df9c0a1156c96cea98737b511ac89d0e2a1f46": { + "address": "0x43df9c0a1156c96cea98737b511ac89d0e2a1f46", + "symbol": "GOVI", + "decimals": 18, + "name": "CVI", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x43df9c0a1156c96cea98737b511ac89d0e2a1f46.png", + "aggregators": [ + "QuickSwap", + "LiFi", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 6 + }, + "0x8839e639f210b80ffea73aedf51baed8dac04499": { + "address": "0x8839e639f210b80ffea73aedf51baed8dac04499", + "symbol": "DWEB", + "decimals": 18, + "name": "DecentraWeb", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x8839e639f210b80ffea73aedf51baed8dac04499.png", + "aggregators": [ + "CoinGecko", + "LiFi", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 6 + }, + "0xbc91347e80886453f3f8bbd6d7ac07c122d87735": { + "address": "0xbc91347e80886453f3f8bbd6d7ac07c122d87735", + "symbol": "BANANA", + "decimals": 18, + "name": "Banana", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0xbc91347e80886453f3f8bbd6d7ac07c122d87735.png", + "aggregators": [ + "QuickSwap", + "LiFi", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 6 + }, + "0xa2ca40dbe72028d3ac78b5250a8cb8c404e7fb8c": { + "address": "0xa2ca40dbe72028d3ac78b5250a8cb8c404e7fb8c", + "symbol": "FEAR", + "decimals": 18, + "name": "FEAR", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0xa2ca40dbe72028d3ac78b5250a8cb8c404e7fb8c.png", + "aggregators": [ + "QuickSwap", + "LiFi", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 6 + }, + "0x42d61d766b85431666b39b89c43011f24451bff6": { + "address": "0x42d61d766b85431666b39b89c43011f24451bff6", + "symbol": "PSP", + "decimals": 18, + "name": "ParaSwap", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x42d61d766b85431666b39b89c43011f24451bff6.png", + "aggregators": [ + "QuickSwap", + "LiFi", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 6 + }, + "0x34c1b299a74588d6abdc1b85a53345a48428a521": { + "address": "0x34c1b299a74588d6abdc1b85a53345a48428a521", + "symbol": "EZ", + "decimals": 18, + "name": "EasyFi V2", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x34c1b299a74588d6abdc1b85a53345a48428a521.png", + "aggregators": [ + "QuickSwap", + "LiFi", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 6 + }, + "0xb77e62709e39ad1cbeebe77cf493745aec0f453a": { + "address": "0xb77e62709e39ad1cbeebe77cf493745aec0f453a", + "symbol": "WISE", + "decimals": 18, + "name": "WISE", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0xb77e62709e39ad1cbeebe77cf493745aec0f453a.png", + "aggregators": [ + "QuickSwap", + "1inch", + "LiFi", + "Socket", + "Rubic", + "Rango" + ], + "occurrences": 6 + }, + "0xd28449bb9bb659725accad52947677cce3719fd7": { + "address": "0xd28449bb9bb659725accad52947677cce3719fd7", + "symbol": "DMT", + "decimals": 18, + "name": "Dark Matter", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0xd28449bb9bb659725accad52947677cce3719fd7.png", + "aggregators": [ + "1inch", + "LiFi", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 6 + }, + "0xc19669a405067927865b40ea045a2baabbbe57f5": { + "address": "0xc19669a405067927865b40ea045a2baabbbe57f5", + "symbol": "STAR", + "decimals": 18, + "name": "Star", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0xc19669a405067927865b40ea045a2baabbbe57f5.png", + "aggregators": [ + "1inch", + "LiFi", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 6 + }, + "0x2ab4f9ac80f33071211729e45cfc346c1f8446d5": { + "address": "0x2ab4f9ac80f33071211729e45cfc346c1f8446d5", + "symbol": "CGG", + "decimals": 18, + "name": "ChainGuardians Governance Token (PoS)", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x2ab4f9ac80f33071211729e45cfc346c1f8446d5.png", + "aggregators": [ + "LiFi", + "Socket", + "Rubic", + "Rango", + "Sonarwatch", + "SushiSwap" + ], + "occurrences": 6 + }, + "0x49a0400587a7f65072c87c4910449fdcc5c47242": { + "address": "0x49a0400587a7f65072c87c4910449fdcc5c47242", + "symbol": "MIM", + "decimals": 18, + "name": "Magic Internet Money", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x49a0400587a7f65072c87c4910449fdcc5c47242.png", + "aggregators": [ + "LiFi", + "Socket", + "Rubic", + "Rango", + "Sonarwatch", + "SushiSwap" + ], + "occurrences": 6 + }, + "0x086373fad3447f7f86252fb59d56107e9e0faafa": { + "address": "0x086373fad3447f7f86252fb59d56107e9e0faafa", + "symbol": "YUP", + "decimals": 18, + "name": "Yup", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x086373fad3447f7f86252fb59d56107e9e0faafa.png", + "aggregators": [ + "LiFi", + "Socket", + "Rubic", + "Squid", + "Rango", + "Sonarwatch" + ], + "occurrences": 6 + }, + "0x8a0e8b4b0903929f47c3ea30973940d4a9702067": { + "address": "0x8a0e8b4b0903929f47c3ea30973940d4a9702067", + "symbol": "INSUR", + "decimals": 18, + "name": "InsurAce", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x8a0e8b4b0903929f47c3ea30973940d4a9702067.png", + "aggregators": [ + "LiFi", + "Socket", + "Rubic", + "Rango", + "Sonarwatch", + "SushiSwap" + ], + "occurrences": 6 + }, + "0xc25351811983818c9fe6d8c580531819c8ade90f": { + "address": "0xc25351811983818c9fe6d8c580531819c8ade90f", + "symbol": "IDLE", + "decimals": 18, + "name": "Idle", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0xc25351811983818c9fe6d8c580531819c8ade90f.png", + "aggregators": [ + "LiFi", + "Socket", + "Rubic", + "Rango", + "Sonarwatch", + "SushiSwap" + ], + "occurrences": 6 + }, + "0xe6a537a407488807f0bbeb0038b79004f19dddfb": { + "address": "0xe6a537a407488807f0bbeb0038b79004f19dddfb", + "symbol": "BRLA", + "decimals": 18, + "name": "BRLA Digital BRLA", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0xe6a537a407488807f0bbeb0038b79004f19dddfb.png", + "aggregators": [ + "CoinGecko", + "Rubic", + "Squid", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0xb36b62929762acf8a9cc27ecebf6d353ebb48244": { + "address": "0xb36b62929762acf8a9cc27ecebf6d353ebb48244", + "symbol": "SHARP", + "decimals": 18, + "name": "SHARP", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0xb36b62929762acf8a9cc27ecebf6d353ebb48244.png", + "aggregators": ["CoinGecko", "LiFi", "Socket", "Rubic", "Rango"], + "occurrences": 5 + }, + "0x98965474ecbec2f532f1f780ee37b0b05f77ca55": { + "address": "0x98965474ecbec2f532f1f780ee37b0b05f77ca55", + "symbol": "SUT", + "decimals": 18, + "name": "SUPER TRUST", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x98965474ecbec2f532f1f780ee37b0b05f77ca55.png", + "aggregators": ["CoinGecko", "Socket", "Rubic", "Squid", "Rango"], + "occurrences": 5 + }, + "0x3b56a704c01d650147ade2b8cee594066b3f9421": { + "address": "0x3b56a704c01d650147ade2b8cee594066b3f9421", + "symbol": "FYN", + "decimals": 18, + "name": "Affyn", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x3b56a704c01d650147ade2b8cee594066b3f9421.png", + "aggregators": [ + "QuickSwap", + "1inch", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x27842334c55c01ddfe81bf687425f906816c5141": { + "address": "0x27842334c55c01ddfe81bf687425f906816c5141", + "symbol": "VEXT", + "decimals": 18, + "name": "Veloce", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x27842334c55c01ddfe81bf687425f906816c5141.png", + "aggregators": ["CoinGecko", "Socket", "Rubic", "Squid", "Rango"], + "occurrences": 5 + }, + "0x23e8b6a3f6891254988b84da3738d2bfe5e703b9": { + "address": "0x23e8b6a3f6891254988b84da3738d2bfe5e703b9", + "symbol": "WELT", + "decimals": 18, + "name": "Fabwelt", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x23e8b6a3f6891254988b84da3738d2bfe5e703b9.png", + "aggregators": [ + "QuickSwap", + "1inch", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x8a16d4bf8a0a716017e8d2262c4ac32927797a2f": { + "address": "0x8a16d4bf8a0a716017e8d2262c4ac32927797a2f", + "symbol": "VCNT", + "decimals": 18, + "name": "VCNT", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x8a16d4bf8a0a716017e8d2262c4ac32927797a2f.png", + "aggregators": ["CoinGecko", "Socket", "Rubic", "Squid", "Rango"], + "occurrences": 5 + }, + "0x88c949b4eb85a90071f2c0bef861bddee1a7479d": { + "address": "0x88c949b4eb85a90071f2c0bef861bddee1a7479d", + "symbol": "MSHEESHA", + "decimals": 18, + "name": "Sheesha Finance Polygon", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x88c949b4eb85a90071f2c0bef861bddee1a7479d.png", + "aggregators": [ + "QuickSwap", + "1inch", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0xe20b9e246db5a0d21bf9209e4858bc9a3ff7a034": { + "address": "0xe20b9e246db5a0d21bf9209e4858bc9a3ff7a034", + "symbol": "WBAN", + "decimals": 18, + "name": "Wrapped Banano", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0xe20b9e246db5a0d21bf9209e4858bc9a3ff7a034.png", + "aggregators": [ + "CoinGecko", + "Socket", + "Rubic", + "Rango", + "SushiSwap" + ], + "occurrences": 5 + }, + "0x4c5ca366e26409845624e29b62c388a06961a792": { + "address": "0x4c5ca366e26409845624e29b62c388a06961a792", + "symbol": "HLSCOPE", + "decimals": 6, + "name": "Hamilton Lane Senior Credit Opportunities Securitize Fund", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x4c5ca366e26409845624e29b62c388a06961a792.png", + "aggregators": [ + "CoinGecko", + "LiFi", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x229b1b6c23ff8953d663c4cbb519717e323a0a84": { + "address": "0x229b1b6c23ff8953d663c4cbb519717e323a0a84", + "symbol": "BLOK", + "decimals": 18, + "name": "Bloktopia", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x229b1b6c23ff8953d663c4cbb519717e323a0a84.png", + "aggregators": [ + "QuickSwap", + "1inch", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0xa1a39558718d6fa57c699dc45981e5a1b2e25d08": { + "address": "0xa1a39558718d6fa57c699dc45981e5a1b2e25d08", + "symbol": "$GINI", + "decimals": 18, + "name": "GINI", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0xa1a39558718d6fa57c699dc45981e5a1b2e25d08.png", + "aggregators": [ + "CoinGecko", + "LiFi", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0xffffff9936bd58a008855b0812b44d2c8dffe2aa": { + "address": "0xffffff9936bd58a008855b0812b44d2c8dffe2aa", + "symbol": "GGUSD", + "decimals": 6, + "name": "GGUSD", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0xffffff9936bd58a008855b0812b44d2c8dffe2aa.png", + "aggregators": ["CoinGecko", "LiFi", "Rubic", "Squid", "Rango"], + "occurrences": 5 + }, + "0xff7f8f301f7a706e3cfd3d2275f5dc0b9ee8009b": { + "address": "0xff7f8f301f7a706e3cfd3d2275f5dc0b9ee8009b", + "symbol": "FOLKS", + "decimals": 6, + "name": "FOLKS", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0xff7f8f301f7a706e3cfd3d2275f5dc0b9ee8009b.png", + "aggregators": ["CoinGecko", "1inch", "LiFi", "Rubic", "Rango"], + "occurrences": 5 + }, + "0x4837b18a6d7af6159c8665505b90a2ed393255e0": { + "address": "0x4837b18a6d7af6159c8665505b90a2ed393255e0", + "symbol": "LYP", + "decimals": 18, + "name": "LYP", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x4837b18a6d7af6159c8665505b90a2ed393255e0.png", + "aggregators": ["CoinGecko", "1inch", "LiFi", "Rubic", "Rango"], + "occurrences": 5 + }, + "0xafde2490236bc64950def5472296aa0d9758db0d": { + "address": "0xafde2490236bc64950def5472296aa0d9758db0d", + "symbol": "WILD", + "decimals": 18, + "name": "WILD", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0xafde2490236bc64950def5472296aa0d9758db0d.png", + "aggregators": ["CoinGecko", "LiFi", "Socket", "Rubic", "Rango"], + "occurrences": 5 + }, + "0x0cc931c30f4fc7fa36d290a4cd8d94acd738826e": { + "address": "0x0cc931c30f4fc7fa36d290a4cd8d94acd738826e", + "symbol": "SWEAT", + "decimals": 18, + "name": "Sweat Economy", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x0cc931c30f4fc7fa36d290a4cd8d94acd738826e.png", + "aggregators": [ + "CoinGecko", + "LiFi", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0xe75220cb014dfb2d354bb59be26d7458bb8d0706": { + "address": "0xe75220cb014dfb2d354bb59be26d7458bb8d0706", + "symbol": "PHT", + "decimals": 18, + "name": "PHT", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0xe75220cb014dfb2d354bb59be26d7458bb8d0706.png", + "aggregators": ["CoinGecko", "LiFi", "Rubic", "Squid", "Rango"], + "occurrences": 5 + }, + "0xe7c3d8c9a439fede00d2600032d5db0be71c3c29": { + "address": "0xe7c3d8c9a439fede00d2600032d5db0be71c3c29", + "symbol": "JPYC", + "decimals": 18, + "name": "JPYC", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0xe7c3d8c9a439fede00d2600032d5db0be71c3c29.png", + "aggregators": ["CoinGecko", "1inch", "LiFi", "Rubic", "Rango"], + "occurrences": 5 + }, + "0x7ff7fa94b8b66ef313f7970d4eebd2cb3103a2c0": { + "address": "0x7ff7fa94b8b66ef313f7970d4eebd2cb3103a2c0", + "symbol": "VANA", + "decimals": 18, + "name": "VANA", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x7ff7fa94b8b66ef313f7970d4eebd2cb3103a2c0.png", + "aggregators": ["CoinGecko", "LiFi", "Socket", "Rubic", "Rango"], + "occurrences": 5 + }, + "0x2893ef551b6dd69f661ac00f11d93e5dc5dc0e99": { + "address": "0x2893ef551b6dd69f661ac00f11d93e5dc5dc0e99", + "symbol": "BUIDL", + "decimals": 6, + "name": "BlackRock USD Institutional Digital Liquidity Fund", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x2893ef551b6dd69f661ac00f11d93e5dc5dc0e99.png", + "aggregators": [ + "CoinGecko", + "LiFi", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x7f280dac515121dcda3eac69eb4c13a52392cace": { + "address": "0x7f280dac515121dcda3eac69eb4c13a52392cace", + "symbol": "FNC", + "decimals": 18, + "name": "Fancy Games", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x7f280dac515121dcda3eac69eb4c13a52392cace.png", + "aggregators": ["QuickSwap", "LiFi", "Socket", "Rubic", "Rango"], + "occurrences": 5 + }, + "0x3f6b3595ecf70735d3f48d69b09c4e4506db3f47": { + "address": "0x3f6b3595ecf70735d3f48d69b09c4e4506db3f47", + "symbol": "GAMER", + "decimals": 18, + "name": "GameStation", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x3f6b3595ecf70735d3f48d69b09c4e4506db3f47.png", + "aggregators": [ + "QuickSwap", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x67eb41a14c0fe5cd701fc9d5a3d6597a72f641a6": { + "address": "0x67eb41a14c0fe5cd701fc9d5a3d6597a72f641a6", + "symbol": "GIDDY", + "decimals": 18, + "name": "Giddy Token", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x67eb41a14c0fe5cd701fc9d5a3d6597a72f641a6.png", + "aggregators": [ + "QuickSwap", + "Rubic", + "Rango", + "Sonarwatch", + "SushiSwap" + ], + "occurrences": 5 + }, + "0x4455ef8b4b4a007a93daa12de63a47eeac700d9d": { + "address": "0x4455ef8b4b4a007a93daa12de63a47eeac700d9d", + "symbol": "KNIGHT", + "decimals": 18, + "name": "Forest Knight", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x4455ef8b4b4a007a93daa12de63a47eeac700d9d.png", + "aggregators": [ + "QuickSwap", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x04b33078ea1aef29bf3fb29c6ab7b200c58ea126": { + "address": "0x04b33078ea1aef29bf3fb29c6ab7b200c58ea126", + "symbol": "SAFLE", + "decimals": 18, + "name": "Safle", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x04b33078ea1aef29bf3fb29c6ab7b200c58ea126.png", + "aggregators": [ + "QuickSwap", + "1inch", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x02649c1ff4296038de4b9ba8f491b42b940a8252": { + "address": "0x02649c1ff4296038de4b9ba8f491b42b940a8252", + "symbol": "XGEM", + "decimals": 18, + "name": "Exchange Genesis Ethlas Medium", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x02649c1ff4296038de4b9ba8f491b42b940a8252.png", + "aggregators": [ + "QuickSwap", + "Rubic", + "Rango", + "Sonarwatch", + "SushiSwap" + ], + "occurrences": 5 + }, + "0x236eec6359fb44cce8f97e99387aa7f8cd5cde1f": { + "address": "0x236eec6359fb44cce8f97e99387aa7f8cd5cde1f", + "symbol": "USD+", + "decimals": 6, + "name": "USD+", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x236eec6359fb44cce8f97e99387aa7f8cd5cde1f.png", + "aggregators": [ + "1inch", + "Squid", + "Rango", + "Sonarwatch", + "SushiSwap" + ], + "occurrences": 5 + }, + "0x4ff0b68abc2b9e4e1401e9b691dba7d66b264ac8": { + "address": "0x4ff0b68abc2b9e4e1401e9b691dba7d66b264ac8", + "symbol": "RIOT", + "decimals": 18, + "name": "Riot Racers", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x4ff0b68abc2b9e4e1401e9b691dba7d66b264ac8.png", + "aggregators": ["1inch", "LiFi", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 5 + }, + "0x820802fa8a99901f52e39acd21177b0be6ee2974": { + "address": "0x820802fa8a99901f52e39acd21177b0be6ee2974", + "symbol": "EUROE", + "decimals": 6, + "name": "EUROe Stablecoin", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x820802fa8a99901f52e39acd21177b0be6ee2974.png", + "aggregators": [ + "LiFi", + "Rubic", + "Rango", + "Sonarwatch", + "SushiSwap" + ], + "occurrences": 5 + }, + "0xc5b57e9a1e7914fda753a88f24e5703e617ee50c": { + "address": "0xc5b57e9a1e7914fda753a88f24e5703e617ee50c", + "symbol": "POP", + "decimals": 18, + "name": "Popcorn", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0xc5b57e9a1e7914fda753a88f24e5703e617ee50c.png", + "aggregators": ["LiFi", "Socket", "Rubic", "Rango", "SushiSwap"], + "occurrences": 5 + }, + "0xdfce1e99a31c4597a3f8a8945cbfa9037655e335": { + "address": "0xdfce1e99a31c4597a3f8a8945cbfa9037655e335", + "symbol": "ASTRAFER", + "decimals": 18, + "name": "Astrafer", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0xdfce1e99a31c4597a3f8a8945cbfa9037655e335.png", + "aggregators": ["QuickSwap", "LiFi", "Rubic", "Rango"], + "occurrences": 4 + }, + "0x9c32185b81766a051e08de671207b34466dd1021": { + "address": "0x9c32185b81766a051e08de671207b34466dd1021", + "symbol": "BTCPX", + "decimals": 8, + "name": "BTC Proxy", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x9c32185b81766a051e08de671207b34466dd1021.png", + "aggregators": ["Socket", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0x5f32abeebd3c2fac1e7459a27e1ae9f1c16cccca": { + "address": "0x5f32abeebd3c2fac1e7459a27e1ae9f1c16cccca", + "symbol": "FAR", + "decimals": 18, + "name": "FARCANA", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x5f32abeebd3c2fac1e7459a27e1ae9f1c16cccca.png", + "aggregators": ["Rubic", "Rango", "Sonarwatch"], + "occurrences": 3 + }, + "0x4ed141110f6eeeaba9a1df36d8c26f684d2475dc": { + "address": "0x4ed141110f6eeeaba9a1df36d8c26f684d2475dc", + "symbol": "BRZ", + "decimals": 18, + "name": "Brazilian Digital", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x4ed141110f6eeeaba9a1df36d8c26f684d2475dc.png", + "aggregators": [ + "CoinGecko", + "LiFi", + "Socket", + "Rubic", + "Squid", + "Rango", + "Sonarwatch" + ], + "occurrences": 7 + }, + "0x033d942a6b495c4071083f4cde1f17e986fe856c": { + "address": "0x033d942a6b495c4071083f4cde1f17e986fe856c", + "symbol": "AGA", + "decimals": 4, + "name": "AGA", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x033d942a6b495c4071083f4cde1f17e986fe856c.png", + "aggregators": [ + "CoinGecko", + "1inch", + "LiFi", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 7 + }, + "0x6e4e624106cb12e168e6533f8ec7c82263358940": { + "address": "0x6e4e624106cb12e168e6533f8ec7c82263358940", + "symbol": "AXL", + "decimals": 6, + "name": "Axelar", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x6e4e624106cb12e168e6533f8ec7c82263358940.png", + "aggregators": [ + "QuickSwap", + "LiFi", + "Socket", + "Rubic", + "Squid", + "Rango", + "Sonarwatch" + ], + "occurrences": 7 + }, + "0x596ebe76e2db4470966ea395b0d063ac6197a8c5": { + "address": "0x596ebe76e2db4470966ea395b0d063ac6197a8c5", + "symbol": "JRT", + "decimals": 18, + "name": "Jarvis Reward Token", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x596ebe76e2db4470966ea395b0d063ac6197a8c5.png", + "aggregators": [ + "CoinGecko", + "LiFi", + "Socket", + "Rubic", + "Rango", + "Sonarwatch", + "SushiSwap" + ], + "occurrences": 7 + }, + "0xde5ed76e7c05ec5e4572cfc88d1acea165109e44": { + "address": "0xde5ed76e7c05ec5e4572cfc88d1acea165109e44", + "symbol": "DEUS", + "decimals": 18, + "name": "DEUS Finance", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0xde5ed76e7c05ec5e4572cfc88d1acea165109e44.png", + "aggregators": [ + "CoinGecko", + "LiFi", + "Socket", + "Rubic", + "Squid", + "Rango", + "Sonarwatch" + ], + "occurrences": 7 + }, + "0x692597b009d13c4049a947cab2239b7d6517875f": { + "address": "0x692597b009d13c4049a947cab2239b7d6517875f", + "symbol": "USTC", + "decimals": 18, + "name": "Wrapped USTC", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x692597b009d13c4049a947cab2239b7d6517875f.png", + "aggregators": [ + "CoinGecko", + "1inch", + "LiFi", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 7 + }, + "0xf0059cc2b3e980065a906940fbce5f9db7ae40a7": { + "address": "0xf0059cc2b3e980065a906940fbce5f9db7ae40a7", + "symbol": "ULT", + "decimals": 18, + "name": "Shardus", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0xf0059cc2b3e980065a906940fbce5f9db7ae40a7.png", + "aggregators": [ + "CoinGecko", + "LiFi", + "Socket", + "Rubic", + "Squid", + "Rango", + "Sonarwatch" + ], + "occurrences": 7 + }, + "0xc48f61a288a08f1b80c2edd74652e1276b6a168c": { + "address": "0xc48f61a288a08f1b80c2edd74652e1276b6a168c", + "symbol": "GYSR", + "decimals": 18, + "name": "Geyser", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0xc48f61a288a08f1b80c2edd74652e1276b6a168c.png", + "aggregators": [ + "CoinGecko", + "LiFi", + "Socket", + "Rubic", + "Rango", + "Sonarwatch", + "SushiSwap" + ], + "occurrences": 7 + }, + "0x1631244689ec1fecbdd22fb5916e920dfc9b8d30": { + "address": "0x1631244689ec1fecbdd22fb5916e920dfc9b8d30", + "symbol": "OVR", + "decimals": 18, + "name": "Ovr", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x1631244689ec1fecbdd22fb5916e920dfc9b8d30.png", + "aggregators": [ + "CoinGecko", + "LiFi", + "Socket", + "Rubic", + "Squid", + "Rango", + "Sonarwatch" + ], + "occurrences": 7 + }, + "0xe631dabef60c37a37d70d3b4f812871df663226f": { + "address": "0xe631dabef60c37a37d70d3b4f812871df663226f", + "symbol": "SMT", + "decimals": 18, + "name": "Swarm Markets", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0xe631dabef60c37a37d70d3b4f812871df663226f.png", + "aggregators": [ + "CoinGecko", + "LiFi", + "Socket", + "Rubic", + "Squid", + "Rango", + "Sonarwatch" + ], + "occurrences": 7 + }, + "0x3d1d2afd191b165d140e3e8329e634665ffb0e5e": { + "address": "0x3d1d2afd191b165d140e3e8329e634665ffb0e5e", + "symbol": "DERI", + "decimals": 18, + "name": "Deri Protocol", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x3d1d2afd191b165d140e3e8329e634665ffb0e5e.png", + "aggregators": [ + "CoinGecko", + "LiFi", + "Socket", + "Rubic", + "Rango", + "Sonarwatch", + "SushiSwap" + ], + "occurrences": 7 + }, + "0x4e1581f01046efdd7a1a2cdb0f82cdd7f71f2e59": { + "address": "0x4e1581f01046efdd7a1a2cdb0f82cdd7f71f2e59", + "symbol": "ICE", + "decimals": 18, + "name": "IceToken", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x4e1581f01046efdd7a1a2cdb0f82cdd7f71f2e59.png", + "aggregators": [ + "1inch", + "LiFi", + "Socket", + "Rubic", + "Rango", + "Sonarwatch", + "SushiSwap" + ], + "occurrences": 7 + }, + "0x62a872d9977db171d9e213a5dc2b782e72ca0033": { + "address": "0x62a872d9977db171d9e213a5dc2b782e72ca0033", + "symbol": "NEUY", + "decimals": 18, + "name": "NEUY", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x62a872d9977db171d9e213a5dc2b782e72ca0033.png", + "aggregators": [ + "CoinGecko", + "LiFi", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 6 + }, + "0x1a13f4ca1d028320a707d99520abfefca3998b7f": { + "address": "0x1a13f4ca1d028320a707d99520abfefca3998b7f", + "symbol": "AMUSDC", + "decimals": 6, + "name": "Aave Polygon USDC", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x1a13f4ca1d028320a707d99520abfefca3998b7f.png", + "aggregators": [ + "CoinGecko", + "1inch", + "LiFi", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 6 + }, + "0x1d2a0e5ec8e5bbdca5cb219e649b565d8e5c3360": { + "address": "0x1d2a0e5ec8e5bbdca5cb219e649b565d8e5c3360", + "symbol": "AMAAVE", + "decimals": 18, + "name": "Aave Polygon AAVE", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x1d2a0e5ec8e5bbdca5cb219e649b565d8e5c3360.png", + "aggregators": [ + "CoinGecko", + "1inch", + "LiFi", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 6 + }, + "0x8df3aad3a84da6b69a4da8aec3ea40d9091b2ac4": { + "address": "0x8df3aad3a84da6b69a4da8aec3ea40d9091b2ac4", + "symbol": "AMWMATIC", + "decimals": 18, + "name": "Aave Polygon WMATIC", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x8df3aad3a84da6b69a4da8aec3ea40d9091b2ac4.png", + "aggregators": [ + "CoinGecko", + "1inch", + "LiFi", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 6 + }, + "0x4c16f69302ccb511c5fac682c7626b9ef0dc126a": { + "address": "0x4c16f69302ccb511c5fac682c7626b9ef0dc126a", + "symbol": "POLYBUNNY", + "decimals": 18, + "name": "Polygon Bunny Token", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x4c16f69302ccb511c5fac682c7626b9ef0dc126a.png", + "aggregators": [ + "CoinGecko", + "LiFi", + "Rubic", + "Rango", + "Sonarwatch", + "SushiSwap" + ], + "occurrences": 6 + }, + "0x874e178a2f3f3f9d34db862453cd756e7eab0381": { + "address": "0x874e178a2f3f3f9d34db862453cd756e7eab0381", + "symbol": "GFI", + "decimals": 18, + "name": "Gravity Finance", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x874e178a2f3f3f9d34db862453cd756e7eab0381.png", + "aggregators": [ + "CoinGecko", + "LiFi", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 6 + }, + "0x127e47aba094a9a87d084a3a93732909ff031419": { + "address": "0x127e47aba094a9a87d084a3a93732909ff031419", + "symbol": "GNUS", + "decimals": 18, + "name": "Genius Token & NFT Collections", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x127e47aba094a9a87d084a3a93732909ff031419.png", + "aggregators": [ + "CoinGecko", + "Rubic", + "Squid", + "Rango", + "Sonarwatch", + "SushiSwap" + ], + "occurrences": 6 + }, + "0x9719d867a500ef117cc201206b8ab51e794d3f82": { + "address": "0x9719d867a500ef117cc201206b8ab51e794d3f82", + "symbol": "MAUSDC", + "decimals": 6, + "name": "Matic Aave Interest Bearing USDC", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x9719d867a500ef117cc201206b8ab51e794d3f82.png", + "aggregators": [ + "CoinGecko", + "LiFi", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 6 + }, + "0x2075828cdedc356b5358d79cfd314548842e4a2e": { + "address": "0x2075828cdedc356b5358d79cfd314548842e4a2e", + "symbol": "XCCX", + "decimals": 6, + "name": "BlockChainCoinX", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x2075828cdedc356b5358d79cfd314548842e4a2e.png", + "aggregators": [ + "CoinGecko", + "LiFi", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 6 + }, + "0x27f8d03b3a2196956ed754badc28d73be8830a6e": { + "address": "0x27f8d03b3a2196956ed754badc28d73be8830a6e", + "symbol": "AMDAI", + "decimals": 18, + "name": "Aave Polygon DAI", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x27f8d03b3a2196956ed754badc28d73be8830a6e.png", + "aggregators": [ + "CoinGecko", + "1inch", + "LiFi", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 6 + }, + "0x140a4e80dd8184536acc45f1c452d7540472e6e1": { + "address": "0x140a4e80dd8184536acc45f1c452d7540472e6e1", + "symbol": "PKR", + "decimals": 18, + "name": "POLKER", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x140a4e80dd8184536acc45f1c452d7540472e6e1.png", + "aggregators": [ + "CoinGecko", + "Rubic", + "Squid", + "Rango", + "Sonarwatch", + "SushiSwap" + ], + "occurrences": 6 + }, + "0x28424507fefb6f7f8e9d3860f56504e4e5f5f390": { + "address": "0x28424507fefb6f7f8e9d3860f56504e4e5f5f390", + "symbol": "AMWETH", + "decimals": 18, + "name": "Aave Polygon WETH", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x28424507fefb6f7f8e9d3860f56504e4e5f5f390.png", + "aggregators": [ + "CoinGecko", + "1inch", + "LiFi", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 6 + }, + "0x5ec03c1f7fa7ff05ec476d19e34a22eddb48acdc": { + "address": "0x5ec03c1f7fa7ff05ec476d19e34a22eddb48acdc", + "symbol": "ZED", + "decimals": 18, + "name": "ZED RUN", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x5ec03c1f7fa7ff05ec476d19e34a22eddb48acdc.png", + "aggregators": [ + "CoinGecko", + "LiFi", + "Rubic", + "Rango", + "Sonarwatch", + "SushiSwap" + ], + "occurrences": 6 + }, + "0x60d55f02a771d515e077c9c2403a1ef324885cec": { + "address": "0x60d55f02a771d515e077c9c2403a1ef324885cec", + "symbol": "AMUSDT", + "decimals": 6, + "name": "Aave Polygon USDT", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x60d55f02a771d515e077c9c2403a1ef324885cec.png", + "aggregators": [ + "CoinGecko", + "1inch", + "LiFi", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 6 + }, + "0x431cd3c9ac9fc73644bf68bf5691f4b83f9e104f": { + "address": "0x431cd3c9ac9fc73644bf68bf5691f4b83f9e104f", + "symbol": "RBW", + "decimals": 18, + "name": "Rainbow Token", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x431cd3c9ac9fc73644bf68bf5691f4b83f9e104f.png", + "aggregators": [ + "CoinGecko", + "1inch", + "LiFi", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 6 + }, + "0x95a62521c655e7a24a3919aa1f99764c05b7ec4e": { + "address": "0x95a62521c655e7a24a3919aa1f99764c05b7ec4e", + "symbol": "MMX", + "decimals": 18, + "name": "MMX", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x95a62521c655e7a24a3919aa1f99764c05b7ec4e.png", + "aggregators": [ + "CoinGecko", + "LiFi", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 6 + }, + "0x60d01ec2d5e98ac51c8b4cf84dfcce98d527c747": { + "address": "0x60d01ec2d5e98ac51c8b4cf84dfcce98d527c747", + "symbol": "IZI", + "decimals": 18, + "name": "iZUMi Finance", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x60d01ec2d5e98ac51c8b4cf84dfcce98d527c747.png", + "aggregators": [ + "CoinGecko", + "LiFi", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 6 + }, + "0xaff41da975501e5b71848c975834341777d1a473": { + "address": "0xaff41da975501e5b71848c975834341777d1a473", + "symbol": "GUILD", + "decimals": 18, + "name": "BlockchainSpace", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0xaff41da975501e5b71848c975834341777d1a473.png", + "aggregators": [ + "CoinGecko", + "LiFi", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 6 + }, + "0x58001cc1a9e17a20935079ab40b1b8f4fc19efd1": { + "address": "0x58001cc1a9e17a20935079ab40b1b8f4fc19efd1", + "symbol": "PUSH", + "decimals": 18, + "name": "Push Protocol", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x58001cc1a9e17a20935079ab40b1b8f4fc19efd1.png", + "aggregators": [ + "CoinGecko", + "LiFi", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 6 + }, + "0xb7b31a6bc18e48888545ce79e83e06003be70930": { + "address": "0xb7b31a6bc18e48888545ce79e83e06003be70930", + "symbol": "APE", + "decimals": 18, + "name": "ApeCoin", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0xb7b31a6bc18e48888545ce79e83e06003be70930.png", + "aggregators": [ + "CoinGecko", + "LiFi", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 6 + }, + "0x714db550b574b3e927af3d93e26127d15721d4c2": { + "address": "0x714db550b574b3e927af3d93e26127d15721d4c2", + "symbol": "GMT", + "decimals": 8, + "name": "GMT", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x714db550b574b3e927af3d93e26127d15721d4c2.png", + "aggregators": [ + "CoinGecko", + "Socket", + "Rubic", + "Squid", + "Rango", + "Sonarwatch" + ], + "occurrences": 6 + }, + "0x6ab4e20f36ca48b61ecd66c0450fdf665fa130be": { + "address": "0x6ab4e20f36ca48b61ecd66c0450fdf665fa130be", + "symbol": "DOLZ", + "decimals": 18, + "name": "DOLZ.io", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x6ab4e20f36ca48b61ecd66c0450fdf665fa130be.png", + "aggregators": [ + "CoinGecko", + "LiFi", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 6 + }, + "0xf0949dd87d2531d665010d6274f06a357669457a": { + "address": "0xf0949dd87d2531d665010d6274f06a357669457a", + "symbol": "RMV", + "decimals": 18, + "name": "Reality Metaverse", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0xf0949dd87d2531d665010d6274f06a357669457a.png", + "aggregators": [ + "CoinGecko", + "LiFi", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 6 + }, + "0xc4ce1d6f5d98d65ee25cf85e9f2e9dcfee6cb5d6": { + "address": "0xc4ce1d6f5d98d65ee25cf85e9f2e9dcfee6cb5d6", + "symbol": "CRVUSD", + "decimals": 18, + "name": "crvUSD", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0xc4ce1d6f5d98d65ee25cf85e9f2e9dcfee6cb5d6.png", + "aggregators": [ + "CoinGecko", + "LiFi", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 6 + }, + "0xf21441f9ec4c1fe69cb7cf186eceab31af2b658d": { + "address": "0xf21441f9ec4c1fe69cb7cf186eceab31af2b658d", + "symbol": "VENT", + "decimals": 18, + "name": "Vent Finance", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0xf21441f9ec4c1fe69cb7cf186eceab31af2b658d.png", + "aggregators": [ + "CoinGecko", + "LiFi", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 6 + }, + "0x193f4a4a6ea24102f49b931deeeb931f6e32405d": { + "address": "0x193f4a4a6ea24102f49b931deeeb931f6e32405d", + "symbol": "TLOS", + "decimals": 18, + "name": "Telos", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x193f4a4a6ea24102f49b931deeeb931f6e32405d.png", + "aggregators": [ + "CoinGecko", + "LiFi", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 6 + }, + "0x3fb83a9a2c4408909c058b0bfe5b4823f54fafe2": { + "address": "0x3fb83a9a2c4408909c058b0bfe5b4823f54fafe2", + "symbol": "BCUT", + "decimals": 18, + "name": "bitsCrunch Token", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x3fb83a9a2c4408909c058b0bfe5b4823f54fafe2.png", + "aggregators": [ + "CoinGecko", + "LiFi", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 6 + }, + "0x2598c30330d5771ae9f983979209486ae26de875": { + "address": "0x2598c30330d5771ae9f983979209486ae26de875", + "symbol": "AI", + "decimals": 18, + "name": "Any Inu", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x2598c30330d5771ae9f983979209486ae26de875.png", + "aggregators": [ + "CoinGecko", + "Socket", + "Rubic", + "Squid", + "Rango", + "Sonarwatch" + ], + "occurrences": 6 + }, + "0x17d342b29f054030a455b4191f977c3b0aa62fd9": { + "address": "0x17d342b29f054030a455b4191f977c3b0aa62fd9", + "symbol": "KNG", + "decimals": 18, + "name": "Kanga Exchange", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x17d342b29f054030a455b4191f977c3b0aa62fd9.png", + "aggregators": [ + "CoinGecko", + "LiFi", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 6 + }, + "0xcf66eb3d546f0415b368d98a95eaf56ded7aa752": { + "address": "0xcf66eb3d546f0415b368d98a95eaf56ded7aa752", + "symbol": "USX", + "decimals": 18, + "name": "dForce USD", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0xcf66eb3d546f0415b368d98a95eaf56ded7aa752.png", + "aggregators": [ + "CoinGecko", + "LiFi", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 6 + }, + "0x9c1c23e60b72bc88a043bf64afdb16a02540ae8f": { + "address": "0x9c1c23e60b72bc88a043bf64afdb16a02540ae8f", + "symbol": "RING", + "decimals": 18, + "name": "Darwinia Network", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x9c1c23e60b72bc88a043bf64afdb16a02540ae8f.png", + "aggregators": [ + "CoinGecko", + "LiFi", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 6 + }, + "0x3c59798620e5fec0ae6df1a19c6454094572ab92": { + "address": "0x3c59798620e5fec0ae6df1a19c6454094572ab92", + "symbol": "MNW", + "decimals": 18, + "name": "Morpheus Network", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x3c59798620e5fec0ae6df1a19c6454094572ab92.png", + "aggregators": [ + "CoinGecko", + "LiFi", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 6 + }, + "0x82617aa52dddf5ed9bb7b370ed777b3182a30fd1": { + "address": "0x82617aa52dddf5ed9bb7b370ed777b3182a30fd1", + "symbol": "YGG", + "decimals": 18, + "name": "Yield Guild Games", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x82617aa52dddf5ed9bb7b370ed777b3182a30fd1.png", + "aggregators": [ + "CoinGecko", + "LiFi", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 6 + }, + "0x110b25d2b21ee73eb401f3ae7833f7072912a0bf": { + "address": "0x110b25d2b21ee73eb401f3ae7833f7072912a0bf", + "symbol": "LIF3", + "decimals": 18, + "name": "Lif3", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x110b25d2b21ee73eb401f3ae7833f7072912a0bf.png", + "aggregators": [ + "CoinGecko", + "LiFi", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 6 + }, + "0xc3a9a54c043f348027fffaac0f2f996123a19bf4": { + "address": "0xc3a9a54c043f348027fffaac0f2f996123a19bf4", + "symbol": "ERN", + "decimals": 18, + "name": "Ethos Reserve Note", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0xc3a9a54c043f348027fffaac0f2f996123a19bf4.png", + "aggregators": [ + "CoinGecko", + "LiFi", + "Rubic", + "Squid", + "Rango", + "Sonarwatch" + ], + "occurrences": 6 + }, + "0x9ff62d1fc52a907b6dcba8077c2ddca6e6a9d3e1": { + "address": "0x9ff62d1fc52a907b6dcba8077c2ddca6e6a9d3e1", + "symbol": "FORT", + "decimals": 18, + "name": "Forta", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x9ff62d1fc52a907b6dcba8077c2ddca6e6a9d3e1.png", + "aggregators": [ + "CoinGecko", + "LiFi", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 6 + }, + "0x9b3b0703d392321ad24338ff1f846650437a43c9": { + "address": "0x9b3b0703d392321ad24338ff1f846650437a43c9", + "symbol": "BOSON", + "decimals": 18, + "name": "Boson Protocol", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x9b3b0703d392321ad24338ff1f846650437a43c9.png", + "aggregators": [ + "CoinGecko", + "LiFi", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 6 + }, + "0xee327f889d5947c1dc1934bb208a1e792f953e96": { + "address": "0xee327f889d5947c1dc1934bb208a1e792f953e96", + "symbol": "FRXETH", + "decimals": 18, + "name": "Frax Ether", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0xee327f889d5947c1dc1934bb208a1e792f953e96.png", + "aggregators": [ + "CoinGecko", + "LiFi", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 6 + }, + "0xb9585ec9d4c97ad9ded7250bb9a199fe8eed0eca": { + "address": "0xb9585ec9d4c97ad9ded7250bb9a199fe8eed0eca", + "symbol": "WHALE", + "decimals": 4, + "name": "WHALE", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0xb9585ec9d4c97ad9ded7250bb9a199fe8eed0eca.png", + "aggregators": [ + "CoinGecko", + "LiFi", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 6 + }, + "0x9cb74c8032b007466865f060ad2c46145d45553d": { + "address": "0x9cb74c8032b007466865f060ad2c46145d45553d", + "symbol": "IDEX", + "decimals": 18, + "name": "IDEX", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x9cb74c8032b007466865f060ad2c46145d45553d.png", + "aggregators": [ + "CoinGecko", + "LiFi", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 6 + }, + "0xdcb72ae4d5dc6ae274461d57e65db8d50d0a33ad": { + "address": "0xdcb72ae4d5dc6ae274461d57e65db8d50d0a33ad", + "symbol": "RADAR", + "decimals": 18, + "name": "DappRadar", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0xdcb72ae4d5dc6ae274461d57e65db8d50d0a33ad.png", + "aggregators": [ + "CoinGecko", + "LiFi", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 6 + }, + "0x9e20461bc2c4c980f62f1b279d71734207a6a356": { + "address": "0x9e20461bc2c4c980f62f1b279d71734207a6a356", + "symbol": "OMNI", + "decimals": 18, + "name": "OmniCat", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x9e20461bc2c4c980f62f1b279d71734207a6a356.png", + "aggregators": [ + "CoinGecko", + "Socket", + "Rubic", + "Rango", + "Sonarwatch", + "SushiSwap" + ], + "occurrences": 6 + }, + "0x7fbc10850cae055b27039af31bd258430e714c62": { + "address": "0x7fbc10850cae055b27039af31bd258430e714c62", + "symbol": "UBT", + "decimals": 8, + "name": "Unibright", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x7fbc10850cae055b27039af31bd258430e714c62.png", + "aggregators": [ + "CoinGecko", + "LiFi", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 6 + }, + "0x46f48fbdedaa6f5500993bede9539ef85f4bee8e": { + "address": "0x46f48fbdedaa6f5500993bede9539ef85f4bee8e", + "symbol": "ARIA20", + "decimals": 18, + "name": "Arianee", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x46f48fbdedaa6f5500993bede9539ef85f4bee8e.png", + "aggregators": [ + "CoinGecko", + "LiFi", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 6 + }, + "0x2727ab1c2d22170abc9b595177b2d5c6e1ab7b7b": { + "address": "0x2727ab1c2d22170abc9b595177b2d5c6e1ab7b7b", + "symbol": "CTSI", + "decimals": 18, + "name": "Cartesi", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x2727ab1c2d22170abc9b595177b2d5c6e1ab7b7b.png", + "aggregators": [ + "CoinGecko", + "LiFi", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 6 + }, + "0x5b4cf2c120a9702225814e18543ee658c5f8631e": { + "address": "0x5b4cf2c120a9702225814e18543ee658c5f8631e", + "symbol": "UFT", + "decimals": 18, + "name": "UniLend Finance", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x5b4cf2c120a9702225814e18543ee658c5f8631e.png", + "aggregators": [ + "CoinGecko", + "LiFi", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 6 + }, + "0xa6b37fc85d870711c56fbcb8afe2f8db049ae774": { + "address": "0xa6b37fc85d870711c56fbcb8afe2f8db049ae774", + "symbol": "PLR", + "decimals": 18, + "name": "Pillar", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0xa6b37fc85d870711c56fbcb8afe2f8db049ae774.png", + "aggregators": [ + "CoinGecko", + "LiFi", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 6 + }, + "0x6aca77cf3bab0c4e8210a09b57b07854a995289a": { + "address": "0x6aca77cf3bab0c4e8210a09b57b07854a995289a", + "symbol": "MEED", + "decimals": 18, + "name": "Meeds DAO", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x6aca77cf3bab0c4e8210a09b57b07854a995289a.png", + "aggregators": [ + "CoinGecko", + "LiFi", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 6 + }, + "0x70d59baa5ab360b2723dd561415bdbcd4435e1c4": { + "address": "0x70d59baa5ab360b2723dd561415bdbcd4435e1c4", + "symbol": "SPRING", + "decimals": 18, + "name": "Spring Token", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x70d59baa5ab360b2723dd561415bdbcd4435e1c4.png", + "aggregators": [ + "CoinGecko", + "LiFi", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 6 + }, + "0xfe049f59963545bf5469f968e04c9646d6e2c2c5": { + "address": "0xfe049f59963545bf5469f968e04c9646d6e2c2c5", + "symbol": "BC", + "decimals": 18, + "name": "Blood Crystal", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0xfe049f59963545bf5469f968e04c9646d6e2c2c5.png", + "aggregators": [ + "CoinGecko", + "LiFi", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 6 + }, + "0xf972daced7c6b03223710c11413036d17eb298f6": { + "address": "0xf972daced7c6b03223710c11413036d17eb298f6", + "symbol": "IBEX", + "decimals": 18, + "name": "Impermax", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0xf972daced7c6b03223710c11413036d17eb298f6.png", + "aggregators": [ + "CoinGecko", + "LiFi", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 6 + }, + "0xc8bb8eda94931ca2f20ef43ea7dbd58e68400400": { + "address": "0xc8bb8eda94931ca2f20ef43ea7dbd58e68400400", + "symbol": "VNXAU", + "decimals": 18, + "name": "VNX Gold", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0xc8bb8eda94931ca2f20ef43ea7dbd58e68400400.png", + "aggregators": [ + "CoinGecko", + "LiFi", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 6 + }, + "0xbe5cf150e1ff59ca7f2499eaa13bfc40aae70e78": { + "address": "0xbe5cf150e1ff59ca7f2499eaa13bfc40aae70e78", + "symbol": "GLCH", + "decimals": 18, + "name": "Glitch Protocol", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0xbe5cf150e1ff59ca7f2499eaa13bfc40aae70e78.png", + "aggregators": [ + "CoinGecko", + "LiFi", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 6 + }, + "0xf88332547c680f755481bf489d890426248bb275": { + "address": "0xf88332547c680f755481bf489d890426248bb275", + "symbol": "SURE", + "decimals": 18, + "name": "inSure DeFi", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0xf88332547c680f755481bf489d890426248bb275.png", + "aggregators": [ + "CoinGecko", + "LiFi", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 6 + }, + "0x8346ab8d5ea7a9db0209aed2d1806afa0e2c4c21": { + "address": "0x8346ab8d5ea7a9db0209aed2d1806afa0e2c4c21", + "symbol": "MOD", + "decimals": 18, + "name": "Modefi", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x8346ab8d5ea7a9db0209aed2d1806afa0e2c4c21.png", + "aggregators": [ + "CoinGecko", + "LiFi", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 6 + }, + "0xadbe0eac80f955363f4ff47b0f70189093908c04": { + "address": "0xadbe0eac80f955363f4ff47b0f70189093908c04", + "symbol": "XMT", + "decimals": 18, + "name": "MetalSwap", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0xadbe0eac80f955363f4ff47b0f70189093908c04.png", + "aggregators": [ + "CoinGecko", + "LiFi", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 6 + }, + "0x6fb54ffe60386ac33b722be13d2549dd87bf63af": { + "address": "0x6fb54ffe60386ac33b722be13d2549dd87bf63af", + "symbol": "POLI", + "decimals": 18, + "name": "Polinate", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x6fb54ffe60386ac33b722be13d2549dd87bf63af.png", + "aggregators": [ + "CoinGecko", + "LiFi", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 6 + }, + "0xd566c529b33ecf15170f600d4b1ab12468c8efc6": { + "address": "0xd566c529b33ecf15170f600d4b1ab12468c8efc6", + "symbol": "UERII", + "decimals": 18, + "name": "UERII", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0xd566c529b33ecf15170f600d4b1ab12468c8efc6.png", + "aggregators": [ + "CoinGecko", + "LiFi", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 6 + }, + "0xd0e9c8f5fae381459cf07ec506c1d2896e8b5df6": { + "address": "0xd0e9c8f5fae381459cf07ec506c1d2896e8b5df6", + "symbol": "IOEN", + "decimals": 18, + "name": "Internet of Energy Network", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0xd0e9c8f5fae381459cf07ec506c1d2896e8b5df6.png", + "aggregators": [ + "CoinGecko", + "LiFi", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 6 + }, + "0xd5d86fc8d5c0ea1ac1ac5dfab6e529c9967a45e9": { + "address": "0xd5d86fc8d5c0ea1ac1ac5dfab6e529c9967a45e9", + "symbol": "WRLD", + "decimals": 18, + "name": "NFT Worlds", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0xd5d86fc8d5c0ea1ac1ac5dfab6e529c9967a45e9.png", + "aggregators": [ + "CoinGecko", + "LiFi", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 6 + }, + "0xf8f9efc0db77d8881500bb06ff5d6abc3070e695": { + "address": "0xf8f9efc0db77d8881500bb06ff5d6abc3070e695", + "symbol": "SYN", + "decimals": 18, + "name": "Synapse", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0xf8f9efc0db77d8881500bb06ff5d6abc3070e695.png", + "aggregators": [ + "CoinGecko", + "LiFi", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 6 + }, + "0xaecebfcf604ad245eaf0d5bd68459c3a7a6399c2": { + "address": "0xaecebfcf604ad245eaf0d5bd68459c3a7a6399c2", + "symbol": "RAMP", + "decimals": 18, + "name": "RAMP [OLD]", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0xaecebfcf604ad245eaf0d5bd68459c3a7a6399c2.png", + "aggregators": [ + "CoinGecko", + "LiFi", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 6 + }, + "0xad684e79ce4b6d464f2ff7c3fd51646892e24b96": { + "address": "0xad684e79ce4b6d464f2ff7c3fd51646892e24b96", + "symbol": "NIOX", + "decimals": 4, + "name": "Autonio", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0xad684e79ce4b6d464f2ff7c3fd51646892e24b96.png", + "aggregators": [ + "CoinGecko", + "LiFi", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 6 + }, + "0x71b821aa52a49f32eed535fca6eb5aa130085978": { + "address": "0x71b821aa52a49f32eed535fca6eb5aa130085978", + "symbol": "0XBTC", + "decimals": 8, + "name": "0xBitcoin", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x71b821aa52a49f32eed535fca6eb5aa130085978.png", + "aggregators": [ + "CoinGecko", + "LiFi", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 6 + }, + "0x0d6ae2a429df13e44a07cd2969e085e4833f64a0": { + "address": "0x0d6ae2a429df13e44a07cd2969e085e4833f64a0", + "symbol": "PBR", + "decimals": 18, + "name": "PolkaBridge", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x0d6ae2a429df13e44a07cd2969e085e4833f64a0.png", + "aggregators": [ + "CoinGecko", + "LiFi", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 6 + }, + "0x0df0f72ee0e5c9b7ca761ecec42754992b2da5bf": { + "address": "0x0df0f72ee0e5c9b7ca761ecec42754992b2da5bf", + "symbol": "ATA", + "decimals": 18, + "name": "Automata", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x0df0f72ee0e5c9b7ca761ecec42754992b2da5bf.png", + "aggregators": [ + "CoinGecko", + "LiFi", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 6 + }, + "0xc91c06db0f7bffba61e2a5645cc15686f0a8c828": { + "address": "0xc91c06db0f7bffba61e2a5645cc15686f0a8c828", + "symbol": "RAZOR", + "decimals": 18, + "name": "Razor Network", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0xc91c06db0f7bffba61e2a5645cc15686f0a8c828.png", + "aggregators": [ + "CoinGecko", + "LiFi", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 6 + }, + "0x4d0def42cf57d6f27cd4983042a55dce1c9f853c": { + "address": "0x4d0def42cf57d6f27cd4983042a55dce1c9f853c", + "symbol": "KIT", + "decimals": 18, + "name": "DexKit", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x4d0def42cf57d6f27cd4983042a55dce1c9f853c.png", + "aggregators": [ + "CoinGecko", + "LiFi", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 6 + }, + "0xd52f6ca48882be8fbaa98ce390db18e1dbe1062d": { + "address": "0xd52f6ca48882be8fbaa98ce390db18e1dbe1062d", + "symbol": "ORE", + "decimals": 18, + "name": "ORE Network", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0xd52f6ca48882be8fbaa98ce390db18e1dbe1062d.png", + "aggregators": [ + "CoinGecko", + "LiFi", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 6 + }, + "0x25788a1a171ec66da6502f9975a15b609ff54cf6": { + "address": "0x25788a1a171ec66da6502f9975a15b609ff54cf6", + "symbol": "POOL", + "decimals": 18, + "name": "PoolTogether", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x25788a1a171ec66da6502f9975a15b609ff54cf6.png", + "aggregators": [ + "CoinGecko", + "LiFi", + "Rubic", + "Rango", + "Sonarwatch", + "SushiSwap" + ], + "occurrences": 6 + }, + "0x87847703d4bb4fcd42db887ffdcb94496e77e3ab": { + "address": "0x87847703d4bb4fcd42db887ffdcb94496e77e3ab", + "symbol": "HID", + "decimals": 18, + "name": "Hypersign Identity", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x87847703d4bb4fcd42db887ffdcb94496e77e3ab.png", + "aggregators": [ + "CoinGecko", + "LiFi", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 6 + }, + "0x49b1be61a8ca3f9a9f178d6550e41e00d9162159": { + "address": "0x49b1be61a8ca3f9a9f178d6550e41e00d9162159", + "symbol": "GGTK", + "decimals": 18, + "name": "GG", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x49b1be61a8ca3f9a9f178d6550e41e00d9162159.png", + "aggregators": [ + "CoinGecko", + "LiFi", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 6 + }, + "0x7cdc0421469398e0f3aa8890693d86c840ac8931": { + "address": "0x7cdc0421469398e0f3aa8890693d86c840ac8931", + "symbol": "AZUKI", + "decimals": 18, + "name": "Azuki", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x7cdc0421469398e0f3aa8890693d86c840ac8931.png", + "aggregators": [ + "CoinGecko", + "LiFi", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 6 + }, + "0x0e50bea95fe001a370a4f1c220c49aedcb982dec": { + "address": "0x0e50bea95fe001a370a4f1c220c49aedcb982dec", + "symbol": "ERN", + "decimals": 18, + "name": "Ethernity Chain", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x0e50bea95fe001a370a4f1c220c49aedcb982dec.png", + "aggregators": [ + "QuickSwap", + "LiFi", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 6 + }, + "0xf1c1a3c2481a3a8a3f173a9ab5ade275292a6fa3": { + "address": "0xf1c1a3c2481a3a8a3f173a9ab5ade275292a6fa3", + "symbol": "VEE", + "decimals": 18, + "name": "VEE", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0xf1c1a3c2481a3a8a3f173a9ab5ade275292a6fa3.png", + "aggregators": [ + "CoinGecko", + "LiFi", + "Socket", + "Rubic", + "Squid", + "Rango" + ], + "occurrences": 6 + }, + "0x1b599beb7b1f50807dd58fd7e8ffcf073b435e71": { + "address": "0x1b599beb7b1f50807dd58fd7e8ffcf073b435e71", + "symbol": "BLES", + "decimals": 18, + "name": "Blind Boxes", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x1b599beb7b1f50807dd58fd7e8ffcf073b435e71.png", + "aggregators": [ + "CoinGecko", + "LiFi", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 6 + }, + "0xe79feaaa457ad7899357e8e2065a3267ac9ee601": { + "address": "0xe79feaaa457ad7899357e8e2065a3267ac9ee601", + "symbol": "WCHI", + "decimals": 8, + "name": "XAYA", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0xe79feaaa457ad7899357e8e2065a3267ac9ee601.png", + "aggregators": [ + "CoinGecko", + "LiFi", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 6 + }, + "0xe51e88dd08499762b8e4eb3a9f3da9b8e79608c3": { + "address": "0xe51e88dd08499762b8e4eb3a9f3da9b8e79608c3", + "symbol": "SKRT", + "decimals": 18, + "name": "Sekuritance", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0xe51e88dd08499762b8e4eb3a9f3da9b8e79608c3.png", + "aggregators": [ + "CoinGecko", + "LiFi", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 6 + }, + "0x51de72b17c7bd12e9e6d69eb506a669eb6b5249e": { + "address": "0x51de72b17c7bd12e9e6d69eb506a669eb6b5249e", + "symbol": "EGG", + "decimals": 18, + "name": "Waves Ducks", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x51de72b17c7bd12e9e6d69eb506a669eb6b5249e.png", + "aggregators": [ + "QuickSwap", + "LiFi", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 6 + }, + "0x5314ba045a459f63906aa7c76d9f337dcb7d6995": { + "address": "0x5314ba045a459f63906aa7c76d9f337dcb7d6995", + "symbol": "FODL", + "decimals": 18, + "name": "Fodl Finance", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x5314ba045a459f63906aa7c76d9f337dcb7d6995.png", + "aggregators": [ + "CoinGecko", + "LiFi", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 6 + }, + "0xc748b2a084f8efc47e086ccddd9b7e67aeb571bf": { + "address": "0xc748b2a084f8efc47e086ccddd9b7e67aeb571bf", + "symbol": "HMT", + "decimals": 18, + "name": "HUMAN Protocol", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0xc748b2a084f8efc47e086ccddd9b7e67aeb571bf.png", + "aggregators": [ + "CoinGecko", + "LiFi", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 6 + }, + "0xf2ae0038696774d65e67892c9d301c5f2cbbda58": { + "address": "0xf2ae0038696774d65e67892c9d301c5f2cbbda58", + "symbol": "CXO", + "decimals": 18, + "name": "CargoX", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0xf2ae0038696774d65e67892c9d301c5f2cbbda58.png", + "aggregators": [ + "CoinGecko", + "LiFi", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 6 + }, + "0x09c5a4bca808bd1ba2b8e6b3aaf7442046b4ca5b": { + "address": "0x09c5a4bca808bd1ba2b8e6b3aaf7442046b4ca5b", + "symbol": "VSP", + "decimals": 18, + "name": "Vesper Finance", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x09c5a4bca808bd1ba2b8e6b3aaf7442046b4ca5b.png", + "aggregators": [ + "CoinGecko", + "LiFi", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 6 + }, + "0x6863bd30c9e313b264657b107352ba246f8af8e0": { + "address": "0x6863bd30c9e313b264657b107352ba246f8af8e0", + "symbol": "BPT", + "decimals": 18, + "name": "BlackPool", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x6863bd30c9e313b264657b107352ba246f8af8e0.png", + "aggregators": [ + "CoinGecko", + "LiFi", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 6 + }, + "0x638df98ad8069a15569da5a6b01181804c47e34c": { + "address": "0x638df98ad8069a15569da5a6b01181804c47e34c", + "symbol": "DAFI", + "decimals": 18, + "name": "Dafi Protocol", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x638df98ad8069a15569da5a6b01181804c47e34c.png", + "aggregators": [ + "CoinGecko", + "LiFi", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 6 + }, + "0xe4bf2864ebec7b7fdf6eeca9bacae7cdfdaffe78": { + "address": "0xe4bf2864ebec7b7fdf6eeca9bacae7cdfdaffe78", + "symbol": "DODO", + "decimals": 18, + "name": "DODO", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0xe4bf2864ebec7b7fdf6eeca9bacae7cdfdaffe78.png", + "aggregators": [ + "CoinGecko", + "LiFi", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 6 + }, + "0x8d520c8e66091cfd6743fe37fbe3a09505616c4b": { + "address": "0x8d520c8e66091cfd6743fe37fbe3a09505616c4b", + "symbol": "COT", + "decimals": 18, + "name": "Cosplay Token", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x8d520c8e66091cfd6743fe37fbe3a09505616c4b.png", + "aggregators": [ + "QuickSwap", + "LiFi", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 6 + }, + "0x14af1f2f02dccb1e43402339099a05a5e363b83c": { + "address": "0x14af1f2f02dccb1e43402339099a05a5e363b83c", + "symbol": "KROM", + "decimals": 18, + "name": "Kromatika", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x14af1f2f02dccb1e43402339099a05a5e363b83c.png", + "aggregators": [ + "CoinGecko", + "LiFi", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 6 + }, + "0x538d47d142f6993038a667e9d6210d3735749b36": { + "address": "0x538d47d142f6993038a667e9d6210d3735749b36", + "symbol": "BURP", + "decimals": 18, + "name": "Burp", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x538d47d142f6993038a667e9d6210d3735749b36.png", + "aggregators": [ + "CoinGecko", + "LiFi", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 6 + }, + "0xf6f85b3f9fd581c2ee717c404f7684486f057f95": { + "address": "0xf6f85b3f9fd581c2ee717c404f7684486f057f95", + "symbol": "NORD", + "decimals": 18, + "name": "Nord Finance", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0xf6f85b3f9fd581c2ee717c404f7684486f057f95.png", + "aggregators": [ + "CoinGecko", + "LiFi", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 6 + }, + "0x3c205c8b3e02421da82064646788c82f7bd753b9": { + "address": "0x3c205c8b3e02421da82064646788c82f7bd753b9", + "symbol": "UFI", + "decimals": 18, + "name": "PureFi", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x3c205c8b3e02421da82064646788c82f7bd753b9.png", + "aggregators": [ + "CoinGecko", + "LiFi", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 6 + }, + "0x692c44990e4f408ba0917f5c78a83160c1557237": { + "address": "0x692c44990e4f408ba0917f5c78a83160c1557237", + "symbol": "THALES", + "decimals": 18, + "name": "Thales", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x692c44990e4f408ba0917f5c78a83160c1557237.png", + "aggregators": [ + "CoinGecko", + "LiFi", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 6 + }, + "0x4fb71290ac171e1d144f7221d882becac7196eb5": { + "address": "0x4fb71290ac171e1d144f7221d882becac7196eb5", + "symbol": "TRYB", + "decimals": 6, + "name": "BiLira", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x4fb71290ac171e1d144f7221d882becac7196eb5.png", + "aggregators": [ + "CoinGecko", + "LiFi", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 6 + }, + "0x111111517e4929d3dcbdfa7cce55d30d4b6bc4d6": { + "address": "0x111111517e4929d3dcbdfa7cce55d30d4b6bc4d6", + "symbol": "ICHI", + "decimals": 18, + "name": "ICHI", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x111111517e4929d3dcbdfa7cce55d30d4b6bc4d6.png", + "aggregators": [ + "CoinGecko", + "LiFi", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 6 + }, + "0x23001f892c0c82b79303edc9b9033cd190bb21c7": { + "address": "0x23001f892c0c82b79303edc9b9033cd190bb21c7", + "symbol": "LUSD", + "decimals": 18, + "name": "Liquity USD", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x23001f892c0c82b79303edc9b9033cd190bb21c7.png", + "aggregators": [ + "CoinGecko", + "LiFi", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 6 + }, + "0x79375c41d88f839f551457145066096c5c8944bc": { + "address": "0x79375c41d88f839f551457145066096c5c8944bc", + "symbol": "SG", + "decimals": 18, + "name": "SocialGood", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x79375c41d88f839f551457145066096c5c8944bc.png", + "aggregators": [ + "CoinGecko", + "LiFi", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 6 + }, + "0x7e7ff932fab08a0af569f93ce65e7b8b23698ad8": { + "address": "0x7e7ff932fab08a0af569f93ce65e7b8b23698ad8", + "symbol": "YF-DAI", + "decimals": 18, + "name": "YfDAI.finance", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x7e7ff932fab08a0af569f93ce65e7b8b23698ad8.png", + "aggregators": [ + "CoinGecko", + "LiFi", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 6 + }, + "0x1fe78e67ad10ba3a9583e672cac0480737d1b9f7": { + "address": "0x1fe78e67ad10ba3a9583e672cac0480737d1b9f7", + "symbol": "SLN", + "decimals": 18, + "name": "Smart Layer Network", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x1fe78e67ad10ba3a9583e672cac0480737d1b9f7.png", + "aggregators": [ + "CoinGecko", + "LiFi", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 6 + }, + "0xb25e20de2f2ebb4cffd4d16a55c7b395e8a94762": { + "address": "0xb25e20de2f2ebb4cffd4d16a55c7b395e8a94762", + "symbol": "REQ", + "decimals": 18, + "name": "Request", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0xb25e20de2f2ebb4cffd4d16a55c7b395e8a94762.png", + "aggregators": [ + "QuickSwap", + "LiFi", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 6 + }, + "0xfbdd194376de19a88118e84e279b977f165d01b8": { + "address": "0xfbdd194376de19a88118e84e279b977f165d01b8", + "symbol": "BIFI", + "decimals": 18, + "name": "Beefy.finance", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0xfbdd194376de19a88118e84e279b977f165d01b8.png", + "aggregators": [ + "QuickSwap", + "LiFi", + "Socket", + "Rubic", + "Rango", + "SushiSwap" + ], + "occurrences": 6 + }, + "0x553d3d295e0f695b9228246232edf400ed3560b5": { + "address": "0x553d3d295e0f695b9228246232edf400ed3560b5", + "symbol": "PAXG", + "decimals": 18, + "name": "Paxos Gold (PoS)", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x553d3d295e0f695b9228246232edf400ed3560b5.png", + "aggregators": [ + "QuickSwap", + "LiFi", + "Socket", + "Rubic", + "Squid", + "Rango" + ], + "occurrences": 6 + }, + "0xa9536b9c75a9e0fae3b56a96ac8edf76abc91978": { + "address": "0xa9536b9c75a9e0fae3b56a96ac8edf76abc91978", + "symbol": "PECO", + "decimals": 18, + "name": "Polygon Ecosystem Index", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0xa9536b9c75a9e0fae3b56a96ac8edf76abc91978.png", + "aggregators": [ + "QuickSwap", + "LiFi", + "Socket", + "Rubic", + "Rango", + "SushiSwap" + ], + "occurrences": 6 + }, + "0x2c92a8a41f4b806a6f6f1f7c9d9dec78dcd8c18e": { + "address": "0x2c92a8a41f4b806a6f6f1f7c9d9dec78dcd8c18e", + "symbol": "STZ", + "decimals": 18, + "name": "99Starz", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x2c92a8a41f4b806a6f6f1f7c9d9dec78dcd8c18e.png", + "aggregators": [ + "QuickSwap", + "LiFi", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 6 + }, + "0xf5ea626334037a2cf0155d49ea6462fddc6eff19": { + "address": "0xf5ea626334037a2cf0155d49ea6462fddc6eff19", + "symbol": "SPADE", + "decimals": 18, + "name": "PolygonFarm Finance", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0xf5ea626334037a2cf0155d49ea6462fddc6eff19.png", + "aggregators": [ + "CoinGecko", + "Rubic", + "Rango", + "Sonarwatch", + "SushiSwap" + ], + "occurrences": 5 + }, + "0x80244c2441779361f35803b8c711c6c8fc6054a3": { + "address": "0x80244c2441779361f35803b8c711c6c8fc6054a3", + "symbol": "BONE", + "decimals": 18, + "name": "BoneSwap", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x80244c2441779361f35803b8c711c6c8fc6054a3.png", + "aggregators": [ + "CoinGecko", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0xa2c638b78783e9afe26a16ec8b11de54eb169360": { + "address": "0xa2c638b78783e9afe26a16ec8b11de54eb169360", + "symbol": "PIN", + "decimals": 18, + "name": "Pay It Now", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0xa2c638b78783e9afe26a16ec8b11de54eb169360.png", + "aggregators": [ + "CoinGecko", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0xeb51d9a39ad5eef215dc0bf39a8821ff804a0f01": { + "address": "0xeb51d9a39ad5eef215dc0bf39a8821ff804a0f01", + "symbol": "LGNS", + "decimals": 9, + "name": "Longinus", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0xeb51d9a39ad5eef215dc0bf39a8821ff804a0f01.png", + "aggregators": ["CoinGecko", "1inch", "Rubic", "Squid", "Rango"], + "occurrences": 5 + }, + "0x071ac29d569a47ebffb9e57517f855cb577dcc4c": { + "address": "0x071ac29d569a47ebffb9e57517f855cb577dcc4c", + "symbol": "GCOIN", + "decimals": 18, + "name": "Galaxy Fight Club", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x071ac29d569a47ebffb9e57517f855cb577dcc4c.png", + "aggregators": [ + "CoinGecko", + "1inch", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x311434160d7537be358930def317afb606c0d737": { + "address": "0x311434160d7537be358930def317afb606c0d737", + "symbol": "NAKA", + "decimals": 18, + "name": "Nakamoto Games", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x311434160d7537be358930def317afb606c0d737.png", + "aggregators": [ + "CoinGecko", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x05089c9ebffa4f0aca269e32056b1b36b37ed71b": { + "address": "0x05089c9ebffa4f0aca269e32056b1b36b37ed71b", + "symbol": "KRILL", + "decimals": 18, + "name": "Krill", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x05089c9ebffa4f0aca269e32056b1b36b37ed71b.png", + "aggregators": ["CoinGecko", "LiFi", "Rubic", "Rango", "SushiSwap"], + "occurrences": 5 + }, + "0xfe302b8666539d5046cd9aa0707bb327f5f94c22": { + "address": "0xfe302b8666539d5046cd9aa0707bb327f5f94c22", + "symbol": "SEN", + "decimals": 18, + "name": "Senspark (POL)", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0xfe302b8666539d5046cd9aa0707bb327f5f94c22.png", + "aggregators": [ + "CoinGecko", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x82362ec182db3cf7829014bc61e9be8a2e82868a": { + "address": "0x82362ec182db3cf7829014bc61e9be8a2e82868a", + "symbol": "MESH", + "decimals": 18, + "name": "MESH", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x82362ec182db3cf7829014bc61e9be8a2e82868a.png", + "aggregators": ["CoinGecko", "1inch", "LiFi", "Rubic", "Rango"], + "occurrences": 5 + }, + "0x838c9634de6590b96aeadc4bc6db5c28fd17e3c2": { + "address": "0x838c9634de6590b96aeadc4bc6db5c28fd17e3c2", + "symbol": "FIRE", + "decimals": 18, + "name": "Matr1x Fire", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x838c9634de6590b96aeadc4bc6db5c28fd17e3c2.png", + "aggregators": [ + "CoinGecko", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x9af3b7dc29d3c4b1a5731408b6a9656fa7ac3b72": { + "address": "0x9af3b7dc29d3c4b1a5731408b6a9656fa7ac3b72", + "symbol": "PUSD", + "decimals": 18, + "name": "PUSD", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x9af3b7dc29d3c4b1a5731408b6a9656fa7ac3b72.png", + "aggregators": [ + "CoinGecko", + "Rubic", + "Rango", + "Sonarwatch", + "SushiSwap" + ], + "occurrences": 5 + }, + "0xac63686230f64bdeaf086fe6764085453ab3023f": { + "address": "0xac63686230f64bdeaf086fe6764085453ab3023f", + "symbol": "USV", + "decimals": 9, + "name": "Universal Store of Value", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0xac63686230f64bdeaf086fe6764085453ab3023f.png", + "aggregators": [ + "CoinGecko", + "Socket", + "Rubic", + "Rango", + "SushiSwap" + ], + "occurrences": 5 + }, + "0x658cda444ac43b0a7da13d638700931319b64014": { + "address": "0x658cda444ac43b0a7da13d638700931319b64014", + "symbol": "SMT", + "decimals": 18, + "name": "Smartmall Token", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x658cda444ac43b0a7da13d638700931319b64014.png", + "aggregators": [ + "CoinGecko", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0xaa4fbc6809a8e1924520fc85282ac4c76a7671d7": { + "address": "0xaa4fbc6809a8e1924520fc85282ac4c76a7671d7", + "symbol": "SOULS", + "decimals": 18, + "name": "Unfettered Ecosystem", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0xaa4fbc6809a8e1924520fc85282ac4c76a7671d7.png", + "aggregators": [ + "CoinGecko", + "Rubic", + "Squid", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x235737dbb56e8517391473f7c964db31fa6ef280": { + "address": "0x235737dbb56e8517391473f7c964db31fa6ef280", + "symbol": "KASTA", + "decimals": 18, + "name": "Kasta", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x235737dbb56e8517391473f7c964db31fa6ef280.png", + "aggregators": [ + "CoinGecko", + "1inch", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x62f594339830b90ae4c084ae7d223ffafd9658a7": { + "address": "0x62f594339830b90ae4c084ae7d223ffafd9658a7", + "symbol": "SPHERE", + "decimals": 18, + "name": "Sphere Finance", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x62f594339830b90ae4c084ae7d223ffafd9658a7.png", + "aggregators": [ + "CoinGecko", + "1inch", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x8f006d1e1d9dc6c98996f50a4c810f17a47fbf19": { + "address": "0x8f006d1e1d9dc6c98996f50a4c810f17a47fbf19", + "symbol": "NSFW", + "decimals": 18, + "name": "Pleasure Coin", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x8f006d1e1d9dc6c98996f50a4c810f17a47fbf19.png", + "aggregators": [ + "QuickSwap", + "Socket", + "Rubic", + "Rango", + "SushiSwap" + ], + "occurrences": 5 + }, + "0x58b9cb810a68a7f3e1e4f8cb45d1b9b3c79705e8": { + "address": "0x58b9cb810a68a7f3e1e4f8cb45d1b9b3c79705e8", + "symbol": "NEXT", + "decimals": 18, + "name": "Everclear", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x58b9cb810a68a7f3e1e4f8cb45d1b9b3c79705e8.png", + "aggregators": [ + "CoinGecko", + "LiFi", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x93890f346c5d02c3863a06657bc72555dc72c527": { + "address": "0x93890f346c5d02c3863a06657bc72555dc72c527", + "symbol": "ROUTE", + "decimals": 18, + "name": "Router Protocol", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x93890f346c5d02c3863a06657bc72555dc72c527.png", + "aggregators": [ + "CoinGecko", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0xaa53b93608c88ee55fad8db4c504fa20e52642ad": { + "address": "0xaa53b93608c88ee55fad8db4c504fa20e52642ad", + "symbol": "UCO", + "decimals": 8, + "name": "Archethic", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0xaa53b93608c88ee55fad8db4c504fa20e52642ad.png", + "aggregators": [ + "CoinGecko", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0xc5102fe9359fd9a28f877a67e36b0f050d81a3cc": { + "address": "0xc5102fe9359fd9a28f877a67e36b0f050d81a3cc", + "symbol": "HOP", + "decimals": 18, + "name": "Hop Protocol", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0xc5102fe9359fd9a28f877a67e36b0f050d81a3cc.png", + "aggregators": [ + "QuickSwap", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x07ed33a242bd9c08ca3c198e01189e35265024da": { + "address": "0x07ed33a242bd9c08ca3c198e01189e35265024da", + "symbol": "WAGMI", + "decimals": 18, + "name": "Wagmi", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x07ed33a242bd9c08ca3c198e01189e35265024da.png", + "aggregators": [ + "CoinGecko", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x3562ddf1f5ce2c02ef109e9d5a72e2fdb702711d": { + "address": "0x3562ddf1f5ce2c02ef109e9d5a72e2fdb702711d", + "symbol": "KAS", + "decimals": 8, + "name": "Wrapped Kaspa", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x3562ddf1f5ce2c02ef109e9d5a72e2fdb702711d.png", + "aggregators": [ + "CoinGecko", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0xe0bceef36f3a6efdd5eebfacd591423f8549b9d5": { + "address": "0xe0bceef36f3a6efdd5eebfacd591423f8549b9d5", + "symbol": "FACTR", + "decimals": 18, + "name": "Defactor", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0xe0bceef36f3a6efdd5eebfacd591423f8549b9d5.png", + "aggregators": [ + "CoinGecko", + "LiFi", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0xeee3371b89fc43ea970e908536fcddd975135d8a": { + "address": "0xeee3371b89fc43ea970e908536fcddd975135d8a", + "symbol": "DOG", + "decimals": 18, + "name": "The Doge NFT", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0xeee3371b89fc43ea970e908536fcddd975135d8a.png", + "aggregators": [ + "CoinGecko", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x68ee0d0aad9e1984af85ca224117e4d20eaf68be": { + "address": "0x68ee0d0aad9e1984af85ca224117e4d20eaf68be", + "symbol": "ROY", + "decimals": 18, + "name": "Royale", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x68ee0d0aad9e1984af85ca224117e4d20eaf68be.png", + "aggregators": [ + "CoinGecko", + "Rubic", + "Rango", + "Sonarwatch", + "SushiSwap" + ], + "occurrences": 5 + }, + "0x60ea918fc64360269da4efbda11d8fc6514617c6": { + "address": "0x60ea918fc64360269da4efbda11d8fc6514617c6", + "symbol": "SUKU", + "decimals": 18, + "name": "SUKU", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x60ea918fc64360269da4efbda11d8fc6514617c6.png", + "aggregators": ["CoinGecko", "LiFi", "Socket", "Rubic", "Rango"], + "occurrences": 5 + }, + "0xa0e390e9cea0d0e8cd40048ced9fa9ea10d71639": { + "address": "0xa0e390e9cea0d0e8cd40048ced9fa9ea10d71639", + "symbol": "DSLA", + "decimals": 18, + "name": "DSLA Protocol", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0xa0e390e9cea0d0e8cd40048ced9fa9ea10d71639.png", + "aggregators": [ + "CoinGecko", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x855d4248672a1fce482165e8dbe1207b94b1968a": { + "address": "0x855d4248672a1fce482165e8dbe1207b94b1968a", + "symbol": "WOW", + "decimals": 18, + "name": "WOWSwap", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x855d4248672a1fce482165e8dbe1207b94b1968a.png", + "aggregators": [ + "CoinGecko", + "Rubic", + "Rango", + "Sonarwatch", + "SushiSwap" + ], + "occurrences": 5 + }, + "0xab5f7a0e20b0d056aed4aa4528c78da45be7308b": { + "address": "0xab5f7a0e20b0d056aed4aa4528c78da45be7308b", + "symbol": "GBYTE", + "decimals": 18, + "name": "Obyte", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0xab5f7a0e20b0d056aed4aa4528c78da45be7308b.png", + "aggregators": [ + "CoinGecko", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0xcfb54a6d2da14abecd231174fc5735b4436965d8": { + "address": "0xcfb54a6d2da14abecd231174fc5735b4436965d8", + "symbol": "CYC", + "decimals": 18, + "name": "Cyclone Protocol", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0xcfb54a6d2da14abecd231174fc5735b4436965d8.png", + "aggregators": [ + "QuickSwap", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0xfd4959c06fbcc02250952daebf8e0fb38cf9fd8c": { + "address": "0xfd4959c06fbcc02250952daebf8e0fb38cf9fd8c", + "symbol": "ZEE", + "decimals": 18, + "name": "ZeroSwap", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0xfd4959c06fbcc02250952daebf8e0fb38cf9fd8c.png", + "aggregators": [ + "CoinGecko", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x6ab6d61428fde76768d7b45d8bfeec19c6ef91a8": { + "address": "0x6ab6d61428fde76768d7b45d8bfeec19c6ef91a8", + "symbol": "ANY", + "decimals": 18, + "name": "Anyswap", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x6ab6d61428fde76768d7b45d8bfeec19c6ef91a8.png", + "aggregators": [ + "CoinGecko", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0xe0339c80ffde91f3e20494df88d4206d86024cdf": { + "address": "0xe0339c80ffde91f3e20494df88d4206d86024cdf", + "symbol": "ELON", + "decimals": 18, + "name": "Dogelon Mars", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0xe0339c80ffde91f3e20494df88d4206d86024cdf.png", + "aggregators": [ + "QuickSwap", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x3c69d114664d48357d820dbdd121a8071eac99bf": { + "address": "0x3c69d114664d48357d820dbdd121a8071eac99bf", + "symbol": "GALAXIS", + "decimals": 18, + "name": "GALAXIS Token", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x3c69d114664d48357d820dbdd121a8071eac99bf.png", + "aggregators": [ + "CoinGecko", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x04429fbb948bbd09327763214b45e505a5293346": { + "address": "0x04429fbb948bbd09327763214b45e505a5293346", + "symbol": "ABR", + "decimals": 18, + "name": "Allbridge", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x04429fbb948bbd09327763214b45e505a5293346.png", + "aggregators": [ + "CoinGecko", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x1796ae0b0fa4862485106a0de9b654efe301d0b2": { + "address": "0x1796ae0b0fa4862485106a0de9b654efe301d0b2", + "symbol": "PMON", + "decimals": 18, + "name": "Protocol Monsters", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x1796ae0b0fa4862485106a0de9b654efe301d0b2.png", + "aggregators": [ + "CoinGecko", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x5e0294af1732498c77f8db015a2d52a76298542b": { + "address": "0x5e0294af1732498c77f8db015a2d52a76298542b", + "symbol": "ORION", + "decimals": 18, + "name": "Orion Money", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x5e0294af1732498c77f8db015a2d52a76298542b.png", + "aggregators": [ + "CoinGecko", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x5d49c278340655b56609fdf8976eb0612af3a0c3": { + "address": "0x5d49c278340655b56609fdf8976eb0612af3a0c3", + "symbol": "WBTC", + "decimals": 8, + "name": "Wrapped BTC (Wormhole)", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x5d49c278340655b56609fdf8976eb0612af3a0c3.png", + "aggregators": [ + "CoinGecko", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0xee9801669c6138e84bd50deb500827b776777d28": { + "address": "0xee9801669c6138e84bd50deb500827b776777d28", + "symbol": "O3", + "decimals": 18, + "name": "O3 Swap", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0xee9801669c6138e84bd50deb500827b776777d28.png", + "aggregators": [ + "CoinGecko", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0xc17c30e98541188614df99239cabd40280810ca3": { + "address": "0xc17c30e98541188614df99239cabd40280810ca3", + "symbol": "RISE", + "decimals": 18, + "name": "EverRise", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0xc17c30e98541188614df99239cabd40280810ca3.png", + "aggregators": [ + "CoinGecko", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x189586b5f6317538ae50c20a976597da38984a24": { + "address": "0x189586b5f6317538ae50c20a976597da38984a24", + "symbol": "PORTX", + "decimals": 18, + "name": "ChainPort", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x189586b5f6317538ae50c20a976597da38984a24.png", + "aggregators": [ + "CoinGecko", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0xe1b3eb06806601828976e491914e3de18b5d6b28": { + "address": "0xe1b3eb06806601828976e491914e3de18b5d6b28", + "symbol": "ZERC", + "decimals": 18, + "name": "zkRace", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0xe1b3eb06806601828976e491914e3de18b5d6b28.png", + "aggregators": [ + "CoinGecko", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x73b29199a8e4c146e893eb95f18dac41738a88c6": { + "address": "0x73b29199a8e4c146e893eb95f18dac41738a88c6", + "symbol": "BAG", + "decimals": 18, + "name": "Bag.win", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x73b29199a8e4c146e893eb95f18dac41738a88c6.png", + "aggregators": [ + "CoinGecko", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x7844f79fc841e4f92d974c417031c76f8578c2d5": { + "address": "0x7844f79fc841e4f92d974c417031c76f8578c2d5", + "symbol": "OPN", + "decimals": 18, + "name": "OPEN Ticketing Ecosystem", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x7844f79fc841e4f92d974c417031c76f8578c2d5.png", + "aggregators": [ + "CoinGecko", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0xb01cf1be9568f09449382a47cd5bf58e2a9d5922": { + "address": "0xb01cf1be9568f09449382a47cd5bf58e2a9d5922", + "symbol": "SPEED", + "decimals": 18, + "name": "Lightspeed", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0xb01cf1be9568f09449382a47cd5bf58e2a9d5922.png", + "aggregators": ["CoinGecko", "Socket", "Rubic", "Squid", "Rango"], + "occurrences": 5 + }, + "0x94025780a1ab58868d9b2dbbb775f44b32e8e6e5": { + "address": "0x94025780a1ab58868d9b2dbbb775f44b32e8e6e5", + "symbol": "BETS", + "decimals": 18, + "name": "BetSwirl", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x94025780a1ab58868d9b2dbbb775f44b32e8e6e5.png", + "aggregators": [ + "CoinGecko", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0xf9d3d8b25b95bcda979025b74fdfa7ac3f380f9f": { + "address": "0xf9d3d8b25b95bcda979025b74fdfa7ac3f380f9f", + "symbol": "CP", + "decimals": 18, + "name": "Cookies Protocol", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0xf9d3d8b25b95bcda979025b74fdfa7ac3f380f9f.png", + "aggregators": [ + "QuickSwap", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x81382e9693de2afc33f69b70a6c12ca9b3a73f47": { + "address": "0x81382e9693de2afc33f69b70a6c12ca9b3a73f47", + "symbol": "DOSE", + "decimals": 18, + "name": "DOSE", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x81382e9693de2afc33f69b70a6c12ca9b3a73f47.png", + "aggregators": [ + "QuickSwap", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x7a7b94f18ef6ad056cda648588181cda84800f94": { + "address": "0x7a7b94f18ef6ad056cda648588181cda84800f94", + "symbol": "FIS", + "decimals": 18, + "name": "StaFi (PoS)", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x7a7b94f18ef6ad056cda648588181cda84800f94.png", + "aggregators": ["QuickSwap", "LiFi", "Socket", "Rubic", "Rango"], + "occurrences": 5 + }, + "0x61f95bd637e3034133335c1baa0148e518d438ad": { + "address": "0x61f95bd637e3034133335c1baa0148e518d438ad", + "symbol": "MHUNT", + "decimals": 18, + "name": "MetaShooter", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x61f95bd637e3034133335c1baa0148e518d438ad.png", + "aggregators": [ + "QuickSwap", + "Rubic", + "Rango", + "Sonarwatch", + "SushiSwap" + ], + "occurrences": 5 + }, + "0x38a536a31ba4d8c1bcca016abbf786ecd25877e8": { + "address": "0x38a536a31ba4d8c1bcca016abbf786ecd25877e8", + "symbol": "MNTL", + "decimals": 6, + "name": "AssetMantle (PoS)", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x38a536a31ba4d8c1bcca016abbf786ecd25877e8.png", + "aggregators": ["QuickSwap", "LiFi", "Socket", "Rubic", "Rango"], + "occurrences": 5 + }, + "0x6286a9e6f7e745a6d884561d88f94542d6715698": { + "address": "0x6286a9e6f7e745a6d884561d88f94542d6715698", + "symbol": "TECH", + "decimals": 18, + "name": "Cryptomeda", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x6286a9e6f7e745a6d884561d88f94542d6715698.png", + "aggregators": [ + "QuickSwap", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x4287f07cbe6954f9f0decd91d0705c926d8d03a4": { + "address": "0x4287f07cbe6954f9f0decd91d0705c926d8d03a4", + "symbol": "TRACE", + "decimals": 18, + "name": "Trace Network Labs", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x4287f07cbe6954f9f0decd91d0705c926d8d03a4.png", + "aggregators": [ + "QuickSwap", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x3c720206bfacb2d16fa3ac0ed87d2048dbc401fc": { + "address": "0x3c720206bfacb2d16fa3ac0ed87d2048dbc401fc", + "symbol": "UCO", + "decimals": 18, + "name": "UCO", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x3c720206bfacb2d16fa3ac0ed87d2048dbc401fc.png", + "aggregators": ["QuickSwap", "LiFi", "Socket", "Rubic", "Rango"], + "occurrences": 5 + }, + "0xffa4d863c96e743a2e1513824ea006b8d0353c57": { + "address": "0xffa4d863c96e743a2e1513824ea006b8d0353c57", + "symbol": "USDD", + "decimals": 18, + "name": "Decentralized USD (PoS)", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0xffa4d863c96e743a2e1513824ea006b8d0353c57.png", + "aggregators": ["QuickSwap", "LiFi", "Socket", "Rubic", "Rango"], + "occurrences": 5 + }, + "0x8497842420cfdbc97896c2353d75d89fc8d5be5d": { + "address": "0x8497842420cfdbc97896c2353d75d89fc8d5be5d", + "symbol": "VERSA", + "decimals": 18, + "name": "VersaGames", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x8497842420cfdbc97896c2353d75d89fc8d5be5d.png", + "aggregators": [ + "QuickSwap", + "LiFi", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x0c9c7712c83b3c70e7c5e11100d33d9401bdf9dd": { + "address": "0x0c9c7712c83b3c70e7c5e11100d33d9401bdf9dd", + "symbol": "WOMBAT", + "decimals": 18, + "name": "Wombat", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x0c9c7712c83b3c70e7c5e11100d33d9401bdf9dd.png", + "aggregators": [ + "QuickSwap", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x7075cab6bcca06613e2d071bd918d1a0241379e2": { + "address": "0x7075cab6bcca06613e2d071bd918d1a0241379e2", + "symbol": "GFARM2", + "decimals": 18, + "name": "Gains Farm v2", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x7075cab6bcca06613e2d071bd918d1a0241379e2.png", + "aggregators": ["1inch", "LiFi", "Rubic", "Rango", "SushiSwap"], + "occurrences": 5 + }, + "0xc1c93d475dc82fe72dbc7074d55f5a734f8ceeae": { + "address": "0xc1c93d475dc82fe72dbc7074d55f5a734f8ceeae", + "symbol": "PGX", + "decimals": 18, + "name": "Pegaxy Stone", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0xc1c93d475dc82fe72dbc7074d55f5a734f8ceeae.png", + "aggregators": ["1inch", "LiFi", "Socket", "Rubic", "Rango"], + "occurrences": 5 + }, + "0xdab625853c2b35d0a9c6bd8e5a097a664ef4ccfb": { + "address": "0xdab625853c2b35d0a9c6bd8e5a097a664ef4ccfb", + "symbol": "EQUAD", + "decimals": 18, + "name": "Quadrant Protocol", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0xdab625853c2b35d0a9c6bd8e5a097a664ef4ccfb.png", + "aggregators": ["1inch", "LiFi", "Socket", "Rubic", "Rango"], + "occurrences": 5 + }, + "0x9c2c5fd7b07e95ee044ddeba0e97a665f142394f": { + "address": "0x9c2c5fd7b07e95ee044ddeba0e97a665f142394f", + "symbol": "1INCH", + "decimals": 18, + "name": "1inch", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x9c2c5fd7b07e95ee044ddeba0e97a665f142394f.png", + "aggregators": ["LiFi", "Socket", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 5 + }, + "0xfdc26cda2d2440d0e83cd1dee8e8be48405806dc": { + "address": "0xfdc26cda2d2440d0e83cd1dee8e8be48405806dc", + "symbol": "BTU", + "decimals": 18, + "name": "BTU Protocol", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0xfdc26cda2d2440d0e83cd1dee8e8be48405806dc.png", + "aggregators": ["LiFi", "Socket", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 5 + }, + "0x9ca6a77c8b38159fd2da9bd25bc3e259c33f5e39": { + "address": "0x9ca6a77c8b38159fd2da9bd25bc3e259c33f5e39", + "symbol": "SPORK", + "decimals": 18, + "name": "SporkDAO", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x9ca6a77c8b38159fd2da9bd25bc3e259c33f5e39.png", + "aggregators": ["LiFi", "Socket", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 5 + }, + "0x323665443cef804a3b5206103304bd4872ea4253": { + "address": "0x323665443cef804a3b5206103304bd4872ea4253", + "symbol": "USDV", + "decimals": 6, + "name": "Verified USD", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x323665443cef804a3b5206103304bd4872ea4253.png", + "aggregators": ["LiFi", "Socket", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 5 + }, + "0x42dbbd5ae373fea2fc320f62d44c058522bb3758": { + "address": "0x42dbbd5ae373fea2fc320f62d44c058522bb3758", + "symbol": "MEM", + "decimals": 18, + "name": "Memecoin", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x42dbbd5ae373fea2fc320f62d44c058522bb3758.png", + "aggregators": ["LiFi", "Socket", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 5 + }, + "0x5647fe4281f8f6f01e84bce775ad4b828a7b8927": { + "address": "0x5647fe4281f8f6f01e84bce775ad4b828a7b8927", + "symbol": "MM", + "decimals": 18, + "name": "Million", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x5647fe4281f8f6f01e84bce775ad4b828a7b8927.png", + "aggregators": ["LiFi", "Socket", "Rubic", "Rango", "SushiSwap"], + "occurrences": 5 + }, + "0x72928d5436ff65e57f72d5566dcd3baedc649a88": { + "address": "0x72928d5436ff65e57f72d5566dcd3baedc649a88", + "symbol": "HDAO", + "decimals": 18, + "name": "humanDAO", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x72928d5436ff65e57f72d5566dcd3baedc649a88.png", + "aggregators": ["LiFi", "Socket", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 5 + }, + "0xe7804d91dfcde7f776c90043e03eaa6df87e6395": { + "address": "0xe7804d91dfcde7f776c90043e03eaa6df87e6395", + "symbol": "DFX", + "decimals": 18, + "name": "DFX Token", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0xe7804d91dfcde7f776c90043e03eaa6df87e6395.png", + "aggregators": ["LiFi", "Socket", "Rubic", "Rango", "SushiSwap"], + "occurrences": 5 + }, + "0x381caf412b45dac0f62fbeec89de306d3eabe384": { + "address": "0x381caf412b45dac0f62fbeec89de306d3eabe384", + "symbol": "VEST", + "decimals": 18, + "name": "DAO Invest", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x381caf412b45dac0f62fbeec89de306d3eabe384.png", + "aggregators": ["LiFi", "Socket", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 5 + }, + "0x211f4e76fcb811ed2b310a232a24b3445d95e3bc": { + "address": "0x211f4e76fcb811ed2b310a232a24b3445d95e3bc", + "symbol": "MATRIX", + "decimals": 18, + "name": "Matrix Labs", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x211f4e76fcb811ed2b310a232a24b3445d95e3bc.png", + "aggregators": ["LiFi", "Socket", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 5 + }, + "0xdc0e17eae3b9651875030244b971fa0223a1764f": { + "address": "0xdc0e17eae3b9651875030244b971fa0223a1764f", + "symbol": "PERI", + "decimals": 18, + "name": "PERI Finance", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0xdc0e17eae3b9651875030244b971fa0223a1764f.png", + "aggregators": ["LiFi", "Socket", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 5 + }, + "0xdbb5da27ffcfebea8799a5832d4607714fc6aba8": { + "address": "0xdbb5da27ffcfebea8799a5832d4607714fc6aba8", + "symbol": "DGEN", + "decimals": 18, + "name": "DGEN", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0xdbb5da27ffcfebea8799a5832d4607714fc6aba8.png", + "aggregators": ["LiFi", "Socket", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 5 + }, + "0x61bdd9c7d4df4bf47a4508c0c8245505f2af5b7b": { + "address": "0x61bdd9c7d4df4bf47a4508c0c8245505f2af5b7b", + "symbol": "AXS", + "decimals": 18, + "name": "Axie Infinity", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x61bdd9c7d4df4bf47a4508c0c8245505f2af5b7b.png", + "aggregators": ["LiFi", "Socket", "Rubic", "Rango", "SushiSwap"], + "occurrences": 5 + }, + "0xd0660cd418a64a1d44e9214ad8e459324d8157f1": { + "address": "0xd0660cd418a64a1d44e9214ad8e459324d8157f1", + "symbol": "WOOFY", + "decimals": 12, + "name": "Woofy", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0xd0660cd418a64a1d44e9214ad8e459324d8157f1.png", + "aggregators": ["LiFi", "Socket", "Rubic", "Rango", "SushiSwap"], + "occurrences": 5 + }, + "0xfd0cbddec28a93bb86b9db4a62258f5ef25fefde": { + "address": "0xfd0cbddec28a93bb86b9db4a62258f5ef25fefde", + "symbol": "BITT", + "decimals": 18, + "name": "BITT", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0xfd0cbddec28a93bb86b9db4a62258f5ef25fefde.png", + "aggregators": ["LiFi", "Socket", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 5 + }, + "0x4af5ff1a60a6ef6c7c8f9c4e304cd9051fca3ec0": { + "address": "0x4af5ff1a60a6ef6c7c8f9c4e304cd9051fca3ec0", + "symbol": "RGP", + "decimals": 18, + "name": "Rigel Protocol", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x4af5ff1a60a6ef6c7c8f9c4e304cd9051fca3ec0.png", + "aggregators": ["LiFi", "Socket", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 5 + }, + "0x89c296be2f904f3e99a6125815b4b78f5388d2dd": { + "address": "0x89c296be2f904f3e99a6125815b4b78f5388d2dd", + "symbol": "RCN", + "decimals": 18, + "name": "RipioCreditNetwork", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x89c296be2f904f3e99a6125815b4b78f5388d2dd.png", + "aggregators": ["LiFi", "Socket", "Rubic", "Rango", "SushiSwap"], + "occurrences": 5 + }, + "0x6bb45ceac714c52342ef73ec663479da35934bf7": { + "address": "0x6bb45ceac714c52342ef73ec663479da35934bf7", + "symbol": "BONE", + "decimals": 18, + "name": "BONE Token", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x6bb45ceac714c52342ef73ec663479da35934bf7.png", + "aggregators": [ + "Socket", + "Rubic", + "Rango", + "Sonarwatch", + "SushiSwap" + ], + "occurrences": 5 + }, + "0xf1815bd50389c46847f0bda824ec8da914045d14": { + "address": "0xf1815bd50389c46847f0bda824ec8da914045d14", + "symbol": "XAUT0", + "decimals": 6, + "name": "Tether Gold", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0xf1815bd50389c46847f0bda824ec8da914045d14.png", + "aggregators": ["CoinGecko", "LiFi", "Rubic", "Rango"], + "occurrences": 4 + }, + "0x3d09f7f5039567564c3655b4814ea4bf63ce9fd3": { + "address": "0x3d09f7f5039567564c3655b4814ea4bf63ce9fd3", + "symbol": "KARMA", + "decimals": 18, + "name": "KARMA", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x3d09f7f5039567564c3655b4814ea4bf63ce9fd3.png", + "aggregators": ["CoinGecko", "LiFi", "Rubic", "Rango"], + "occurrences": 4 + }, + "0xee997788f625809332baabb3110bcf1ba7400824": { + "address": "0xee997788f625809332baabb3110bcf1ba7400824", + "symbol": "FELY", + "decimals": 18, + "name": "FELY", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0xee997788f625809332baabb3110bcf1ba7400824.png", + "aggregators": ["CoinGecko", "Rubic", "Squid", "Rango"], + "occurrences": 4 + }, + "0x68f610f2220a6974eb69963bdaf5a0de0dc9bd8c": { + "address": "0x68f610f2220a6974eb69963bdaf5a0de0dc9bd8c", + "symbol": "SMB", + "decimals": 18, + "name": "SMB Token", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x68f610f2220a6974eb69963bdaf5a0de0dc9bd8c.png", + "aggregators": ["CoinGecko", "LiFi", "Rubic", "Sonarwatch"], + "occurrences": 4 + }, + "0xe313bcb77dba15f39ff0b9ceabe140cedd0953cb": { + "address": "0xe313bcb77dba15f39ff0b9ceabe140cedd0953cb", + "symbol": "JUGNI", + "decimals": 9, + "name": "JUGNI", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0xe313bcb77dba15f39ff0b9ceabe140cedd0953cb.png", + "aggregators": ["CoinGecko", "Rubic", "Squid", "Rango"], + "occurrences": 4 + }, + "0x2d34a748427801e5d3da862bf474e2b28e501624": { + "address": "0x2d34a748427801e5d3da862bf474e2b28e501624", + "symbol": "MULT POOL", + "decimals": 18, + "name": "MULT POOL", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x2d34a748427801e5d3da862bf474e2b28e501624.png", + "aggregators": ["CoinGecko", "LiFi", "Rubic", "Rango"], + "occurrences": 4 + }, + "0xe8d17b127ba8b9899a160d9a07b69bca8e08bfc6": { + "address": "0xe8d17b127ba8b9899a160d9a07b69bca8e08bfc6", + "symbol": "NSDX", + "decimals": 18, + "name": "NASDEX", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0xe8d17b127ba8b9899a160d9a07b69bca8e08bfc6.png", + "aggregators": ["QuickSwap", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0x954aec663b893d81b4c8dbe1a0544491fd63fa77": { + "address": "0x954aec663b893d81b4c8dbe1a0544491fd63fa77", + "symbol": "EDOM", + "decimals": 18, + "name": "EDOM", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x954aec663b893d81b4c8dbe1a0544491fd63fa77.png", + "aggregators": ["CoinGecko", "LiFi", "Rubic", "Rango"], + "occurrences": 4 + }, + "0x5c067c80c00ecd2345b05e83a3e758ef799c40b5": { + "address": "0x5c067c80c00ecd2345b05e83a3e758ef799c40b5", + "symbol": "BRL1", + "decimals": 18, + "name": "BRL1", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x5c067c80c00ecd2345b05e83a3e758ef799c40b5.png", + "aggregators": ["CoinGecko", "Rubic", "Squid", "Rango"], + "occurrences": 4 + }, + "0xff343d97abd18c56894f0eb5302f92ad9226d55d": { + "address": "0xff343d97abd18c56894f0eb5302f92ad9226d55d", + "symbol": "SNC", + "decimals": 18, + "name": "Syncoin", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0xff343d97abd18c56894f0eb5302f92ad9226d55d.png", + "aggregators": ["CoinGecko", "LiFi", "Rubic", "Rango"], + "occurrences": 4 + }, + "0x06737d16ad9c1e41aa44fee2a952b26723b20673": { + "address": "0x06737d16ad9c1e41aa44fee2a952b26723b20673", + "symbol": "GT3", + "decimals": 18, + "name": "GT3", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x06737d16ad9c1e41aa44fee2a952b26723b20673.png", + "aggregators": ["CoinGecko", "LiFi", "Rubic", "Rango"], + "occurrences": 4 + }, + "0x613a489785c95afeb3b404cc41565ccff107b6e0": { + "address": "0x613a489785c95afeb3b404cc41565ccff107b6e0", + "symbol": "RADIO", + "decimals": 18, + "name": "RadioShack Token", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x613a489785c95afeb3b404cc41565ccff107b6e0.png", + "aggregators": ["CoinGecko", "Socket", "Rubic", "Rango"], + "occurrences": 4 + }, + "0x204820b6e6feae805e376d2c6837446186e57981": { + "address": "0x204820b6e6feae805e376d2c6837446186e57981", + "symbol": "ROND", + "decimals": 18, + "name": "ROND", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x204820b6e6feae805e376d2c6837446186e57981.png", + "aggregators": ["QuickSwap", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0x765af38a6e8fdcb1efef8a3dd2213efd3090b00f": { + "address": "0x765af38a6e8fdcb1efef8a3dd2213efd3090b00f", + "symbol": "VDT", + "decimals": 18, + "name": "Vendetta", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x765af38a6e8fdcb1efef8a3dd2213efd3090b00f.png", + "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0x2c72d25530191ebd244eb6325e1892480b0e6e28": { + "address": "0x2c72d25530191ebd244eb6325e1892480b0e6e28", + "symbol": "AIPF", + "decimals": 18, + "name": "AIPF", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x2c72d25530191ebd244eb6325e1892480b0e6e28.png", + "aggregators": ["CoinGecko", "LiFi", "Rubic", "Rango"], + "occurrences": 4 + }, + "0x888883b5f5d21fb10dfeb70e8f9722b9fb0e5e51": { + "address": "0x888883b5f5d21fb10dfeb70e8f9722b9fb0e5e51", + "symbol": "EUROP", + "decimals": 6, + "name": "EUROP", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x888883b5f5d21fb10dfeb70e8f9722b9fb0e5e51.png", + "aggregators": ["CoinGecko", "LiFi", "Rubic", "Rango"], + "occurrences": 4 + }, + "0xd4423795fd904d9b87554940a95fb7016f172773": { + "address": "0xd4423795fd904d9b87554940a95fb7016f172773", + "symbol": "AIN", + "decimals": 18, + "name": "AIN", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0xd4423795fd904d9b87554940a95fb7016f172773.png", + "aggregators": ["CoinGecko", "LiFi", "Rubic", "Rango"], + "occurrences": 4 + }, + "0x9f1e8f87c6321b84bad7dda7dfb86d5115a47605": { + "address": "0x9f1e8f87c6321b84bad7dda7dfb86d5115a47605", + "symbol": "RIZE", + "decimals": 18, + "name": "RIZE", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x9f1e8f87c6321b84bad7dda7dfb86d5115a47605.png", + "aggregators": ["CoinGecko", "LiFi", "Rubic", "Rango"], + "occurrences": 4 + }, + "0xd687759f35bb747a29246a4b9495c8f52c49e00c": { + "address": "0xd687759f35bb747a29246a4b9495c8f52c49e00c", + "symbol": "AUDX", + "decimals": 18, + "name": "AUDX", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0xd687759f35bb747a29246a4b9495c8f52c49e00c.png", + "aggregators": ["CoinGecko", "LiFi", "Rubic", "Rango"], + "occurrences": 4 + }, + "0xd571edb2ef29df10fcd6200fd6d0ed2389983db3": { + "address": "0xd571edb2ef29df10fcd6200fd6d0ed2389983db3", + "symbol": "EURQ", + "decimals": 6, + "name": "EURQ", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0xd571edb2ef29df10fcd6200fd6d0ed2389983db3.png", + "aggregators": ["CoinGecko", "LiFi", "Rubic", "Rango"], + "occurrences": 4 + }, + "0xd1cd49a08aef3af93457aec17c786c2b7f48ecd7": { + "address": "0xd1cd49a08aef3af93457aec17c786c2b7f48ecd7", + "symbol": "SPOL", + "decimals": 18, + "name": "sPOL", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0xd1cd49a08aef3af93457aec17c786c2b7f48ecd7.png", + "aggregators": ["CoinGecko", "Rubic", "Squid", "Rango"], + "occurrences": 4 + }, + "0x4933a85b5b5466fbaf179f72d3de273c287ec2c2": { + "address": "0x4933a85b5b5466fbaf179f72d3de273c287ec2c2", + "symbol": "EURAU", + "decimals": 6, + "name": "EURAU", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x4933a85b5b5466fbaf179f72d3de273c287ec2c2.png", + "aggregators": ["CoinGecko", "LiFi", "Rubic", "Rango"], + "occurrences": 4 + }, + "0x27f6c8289550fce67f6b50bed1f519966afe5287": { + "address": "0x27f6c8289550fce67f6b50bed1f519966afe5287", + "symbol": "TGBP", + "decimals": 18, + "name": "TGBP", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x27f6c8289550fce67f6b50bed1f519966afe5287.png", + "aggregators": ["CoinGecko", "LiFi", "Rubic", "Rango"], + "occurrences": 4 + }, + "0x24c80d7f032bc8d308f10d59e20d5a65b90b7334": { + "address": "0x24c80d7f032bc8d308f10d59e20d5a65b90b7334", + "symbol": "PHL", + "decimals": 18, + "name": "PHILCOIN", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x24c80d7f032bc8d308f10d59e20d5a65b90b7334.png", + "aggregators": ["CoinGecko", "Socket", "Rubic", "Rango"], + "occurrences": 4 + }, + "0xd4dd9e2f021bb459d5a5f6c24c12fe09c5d45553": { + "address": "0xd4dd9e2f021bb459d5a5f6c24c12fe09c5d45553", + "symbol": "ZCHF", + "decimals": 18, + "name": "ZCHF", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0xd4dd9e2f021bb459d5a5f6c24c12fe09c5d45553.png", + "aggregators": ["CoinGecko", "LiFi", "Rubic", "Rango"], + "occurrences": 4 + }, + "0xc7b1807822160a8c5b6c9eaf5c584aad0972deec": { + "address": "0xc7b1807822160a8c5b6c9eaf5c584aad0972deec", + "symbol": "GIV", + "decimals": 18, + "name": "GIV", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0xc7b1807822160a8c5b6c9eaf5c584aad0972deec.png", + "aggregators": ["CoinGecko", "Rubic", "Squid", "Rango"], + "occurrences": 4 + }, + "0xcccde52ef8f7d74d73ee033f7daccfafe29edd45": { + "address": "0xcccde52ef8f7d74d73ee033f7daccfafe29edd45", + "symbol": "OPUL", + "decimals": 18, + "name": "OPUL", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0xcccde52ef8f7d74d73ee033f7daccfafe29edd45.png", + "aggregators": ["CoinGecko", "Socket", "Rubic", "Rango"], + "occurrences": 4 + }, + "0x52828daa48c1a9a06f37500882b42daf0be04c3b": { + "address": "0x52828daa48c1a9a06f37500882b42daf0be04c3b", + "symbol": "CNGN", + "decimals": 6, + "name": "CNGN", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x52828daa48c1a9a06f37500882b42daf0be04c3b.png", + "aggregators": ["CoinGecko", "LiFi", "Rubic", "Rango"], + "occurrences": 4 + }, + "0x48cbc913de09317df2365e6827df50da083701d5": { + "address": "0x48cbc913de09317df2365e6827df50da083701d5", + "symbol": "FOUR", + "decimals": 18, + "name": "FOUR", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x48cbc913de09317df2365e6827df50da083701d5.png", + "aggregators": ["CoinGecko", "Socket", "Rubic", "Sonarwatch"], + "occurrences": 4 + }, + "0xd1a5f2a049343fc4d5f8d478f734eba51b22375e": { + "address": "0xd1a5f2a049343fc4d5f8d478f734eba51b22375e", + "symbol": "KEYFI", + "decimals": 18, + "name": "KEYFI", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0xd1a5f2a049343fc4d5f8d478f734eba51b22375e.png", + "aggregators": ["CoinGecko", "Socket", "Rubic", "Rango"], + "occurrences": 4 + }, + "0xe6469ba6d2fd6130788e0ea9c0a0515900563b59": { + "address": "0xe6469ba6d2fd6130788e0ea9c0a0515900563b59", + "symbol": "UST", + "decimals": 6, + "name": "TerraUSD (Wormhole)", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0xe6469ba6d2fd6130788e0ea9c0a0515900563b59.png", + "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0x15b7c0c907e4c6b9adaaaabc300c08991d6cea05": { + "address": "0x15b7c0c907e4c6b9adaaaabc300c08991d6cea05", + "symbol": "GEL", + "decimals": 18, + "name": "GEL", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x15b7c0c907e4c6b9adaaaabc300c08991d6cea05.png", + "aggregators": ["CoinGecko", "Socket", "Rubic", "Rango"], + "occurrences": 4 + }, + "0x64445f0aecc51e94ad52d8ac56b7190e764e561a": { + "address": "0x64445f0aecc51e94ad52d8ac56b7190e764e561a", + "symbol": "WFRAX", + "decimals": 18, + "name": "WFRAX", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x64445f0aecc51e94ad52d8ac56b7190e764e561a.png", + "aggregators": ["CoinGecko", "Socket", "Rubic", "Rango"], + "occurrences": 4 + }, + "0x3e12b9d6a4d12cd9b4a6d613872d0eb32f68b380": { + "address": "0x3e12b9d6a4d12cd9b4a6d613872d0eb32f68b380", + "symbol": "FLOWER", + "decimals": 18, + "name": "Flower", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x3e12b9d6a4d12cd9b4a6d613872d0eb32f68b380.png", + "aggregators": ["CoinGecko", "LiFi", "Rubic", "Squid"], + "occurrences": 4 + }, + "0xb291996477504506bf5f583102b5b5ea5d1e40e0": { + "address": "0xb291996477504506bf5f583102b5b5ea5d1e40e0", + "symbol": "USDQ", + "decimals": 6, + "name": "USDQ", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0xb291996477504506bf5f583102b5b5ea5d1e40e0.png", + "aggregators": ["CoinGecko", "LiFi", "Rubic", "Rango"], + "occurrences": 4 + }, + "0xc4420347a4791832bb7b16bf070d5c017d9fabc4": { + "address": "0xc4420347a4791832bb7b16bf070d5c017d9fabc4", + "symbol": "STABUL", + "decimals": 18, + "name": "Stabull Finance", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0xc4420347a4791832bb7b16bf070d5c017d9fabc4.png", + "aggregators": ["CoinGecko", "LiFi", "Rubic", "Sonarwatch"], + "occurrences": 4 + }, + "0x2f4efd3aa42e15a1ec6114547151b63ee5d39958": { + "address": "0x2f4efd3aa42e15a1ec6114547151b63ee5d39958", + "symbol": "COW", + "decimals": 18, + "name": "COW", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x2f4efd3aa42e15a1ec6114547151b63ee5d39958.png", + "aggregators": ["CoinGecko", "LiFi", "Rubic", "Rango"], + "occurrences": 4 + }, + "0x0b3eaead748facdb9d943d3407011f16eb17d0cf": { + "address": "0x0b3eaead748facdb9d943d3407011f16eb17d0cf", + "symbol": "PMX", + "decimals": 18, + "name": "Primex Finance", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x0b3eaead748facdb9d943d3407011f16eb17d0cf.png", + "aggregators": ["CoinGecko", "Socket", "Rubic", "Sonarwatch"], + "occurrences": 4 + }, + "0xdab529f40e671a1d4bf91361c21bf9f0c9712ab7": { + "address": "0xdab529f40e671a1d4bf91361c21bf9f0c9712ab7", + "symbol": "BUSD", + "decimals": 18, + "name": "(PoS) Binance USD", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0xdab529f40e671a1d4bf91361c21bf9f0c9712ab7.png", + "aggregators": ["OpenSwap", "LiFi", "Socket", "Rubic"], + "occurrences": 4 + }, + "0x011734f6ed20e8d011d85cf7894814b897420acf": { + "address": "0x011734f6ed20e8d011d85cf7894814b897420acf", + "symbol": "ACRE", + "decimals": 18, + "name": "Arable Protocol", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x011734f6ed20e8d011d85cf7894814b897420acf.png", + "aggregators": ["QuickSwap", "Socket", "Rubic", "Rango"], + "occurrences": 4 + }, + "0x91c89a94567980f0e9723b487b0bed586ee96aa7": { + "address": "0x91c89a94567980f0e9723b487b0bed586ee96aa7", + "symbol": "BICO", + "decimals": 18, + "name": "Biconomy Token", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x91c89a94567980f0e9723b487b0bed586ee96aa7.png", + "aggregators": ["QuickSwap", "LiFi", "Socket", "Rubic"], + "occurrences": 4 + }, + "0xb35fcbcf1fd489fce02ee146599e893fdcdc60e6": { + "address": "0xb35fcbcf1fd489fce02ee146599e893fdcdc60e6", + "symbol": "DERC", + "decimals": 18, + "name": "DERC", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0xb35fcbcf1fd489fce02ee146599e893fdcdc60e6.png", + "aggregators": ["QuickSwap", "1inch", "Rubic", "Rango"], + "occurrences": 4 + }, + "0x44a6e0be76e1d9620a7f76588e4509fe4fa8e8c8": { + "address": "0x44a6e0be76e1d9620a7f76588e4509fe4fa8e8c8", + "symbol": "FOMO", + "decimals": 18, + "name": "Aavegotchi FOMO", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x44a6e0be76e1d9620a7f76588e4509fe4fa8e8c8.png", + "aggregators": ["QuickSwap", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0x346404079b3792a6c548b072b9c4dddfb92948d5": { + "address": "0x346404079b3792a6c548b072b9c4dddfb92948d5", + "symbol": "IUX", + "decimals": 18, + "name": "GeniuX", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x346404079b3792a6c548b072b9c4dddfb92948d5.png", + "aggregators": ["QuickSwap", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0x42e5e06ef5b90fe15f853f59299fc96259209c5c": { + "address": "0x42e5e06ef5b90fe15f853f59299fc96259209c5c", + "symbol": "KEK", + "decimals": 18, + "name": "Aavegotchi KEK", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x42e5e06ef5b90fe15f853f59299fc96259209c5c.png", + "aggregators": ["QuickSwap", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0x77d97db5615dfe8a2d16b38eaa3f8f34524a0a74": { + "address": "0x77d97db5615dfe8a2d16b38eaa3f8f34524a0a74", + "symbol": "LFI", + "decimals": 18, + "name": "Lunafi", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x77d97db5615dfe8a2d16b38eaa3f8f34524a0a74.png", + "aggregators": ["QuickSwap", "Socket", "Rubic", "Rango"], + "occurrences": 4 + }, + "0xaa7dbd1598251f856c12f63557a4c4397c253cea": { + "address": "0xaa7dbd1598251f856c12f63557a4c4397c253cea", + "symbol": "MCO2", + "decimals": 18, + "name": "Moss Carbon Credit (PoS)", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0xaa7dbd1598251f856c12f63557a4c4397c253cea.png", + "aggregators": ["QuickSwap", "LiFi", "Socket", "Rubic"], + "occurrences": 4 + }, + "0x7dff46370e9ea5f0bad3c4e29711ad50062ea7a4": { + "address": "0x7dff46370e9ea5f0bad3c4e29711ad50062ea7a4", + "symbol": "SOL", + "decimals": 18, + "name": "SOL", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x7dff46370e9ea5f0bad3c4e29711ad50062ea7a4.png", + "aggregators": ["QuickSwap", "LiFi", "Rubic", "Rango"], + "occurrences": 4 + }, + "0xd3b71117e6c1558c1553305b44988cd944e97300": { + "address": "0xd3b71117e6c1558c1553305b44988cd944e97300", + "symbol": "YEL", + "decimals": 18, + "name": "YEL Token", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0xd3b71117e6c1558c1553305b44988cd944e97300.png", + "aggregators": ["1inch", "Socket", "Rubic", "Rango"], + "occurrences": 4 + }, + "0x428360b02c1269bc1c79fbc399ad31d58c1e8fda": { + "address": "0x428360b02c1269bc1c79fbc399ad31d58c1e8fda", + "symbol": "DEFIT", + "decimals": 18, + "name": "Digital Fitness", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x428360b02c1269bc1c79fbc399ad31d58c1e8fda.png", + "aggregators": ["1inch", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0xf33687811f3ad0cd6b48dd4b39f9f977bd7165a2": { + "address": "0xf33687811f3ad0cd6b48dd4b39f9f977bd7165a2", + "symbol": "TRUMATIC", + "decimals": 18, + "name": "TruFin Staked MATIC", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0xf33687811f3ad0cd6b48dd4b39f9f977bd7165a2.png", + "aggregators": ["LiFi", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0xadac33f543267c4d59a8c299cf804c303bc3e4ac": { + "address": "0xadac33f543267c4d59a8c299cf804c303bc3e4ac", + "symbol": "MIMO", + "decimals": 18, + "name": "MIMO Parallel Governance Token (PoS)", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0xadac33f543267c4d59a8c299cf804c303bc3e4ac.png", + "aggregators": ["LiFi", "Socket", "Rubic", "Rango"], + "occurrences": 4 + }, + "0x55555555a687343c6ce28c8e1f6641dc71659fad": { + "address": "0x55555555a687343c6ce28c8e1f6641dc71659fad", + "symbol": "XY", + "decimals": 18, + "name": "XY", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x55555555a687343c6ce28c8e1f6641dc71659fad.png", + "aggregators": ["LiFi", "Socket", "Rubic", "Rango"], + "occurrences": 4 + }, + "0x84a431bd2c958414b2e316cedd9f85993ace5000": { + "address": "0x84a431bd2c958414b2e316cedd9f85993ace5000", + "symbol": "L7L", + "decimals": 18, + "name": "LE7EL", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x84a431bd2c958414b2e316cedd9f85993ace5000.png", + "aggregators": ["LiFi", "Socket", "Rubic", "Rango"], + "occurrences": 4 + }, + "0xbfa35599c7aebb0dace9b5aa3ca5f2a79624d8eb": { + "address": "0xbfa35599c7aebb0dace9b5aa3ca5f2a79624d8eb", + "symbol": "RETRO", + "decimals": 18, + "name": "Retro Finance", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0xbfa35599c7aebb0dace9b5aa3ca5f2a79624d8eb.png", + "aggregators": ["LiFi", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0xb763f1177e9b2fb66fbe0d50372e3e2575c043e5": { + "address": "0xb763f1177e9b2fb66fbe0d50372e3e2575c043e5", + "symbol": "KNOT", + "decimals": 18, + "name": "Karmaverse", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0xb763f1177e9b2fb66fbe0d50372e3e2575c043e5.png", + "aggregators": ["LiFi", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0xb0f61c597bbcc29f3f38396b01f9c0f0c2e8bff0": { + "address": "0xb0f61c597bbcc29f3f38396b01f9c0f0c2e8bff0", + "symbol": "ELAND", + "decimals": 18, + "name": "Etherland", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0xb0f61c597bbcc29f3f38396b01f9c0f0c2e8bff0.png", + "aggregators": ["LiFi", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0xce829a89d4a55a63418bcc43f00145adef0edb8e": { + "address": "0xce829a89d4a55a63418bcc43f00145adef0edb8e", + "symbol": "RENDOGE", + "decimals": 8, + "name": "Ren DOGE", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0xce829a89d4a55a63418bcc43f00145adef0edb8e.png", + "aggregators": ["LiFi", "Socket", "Rango", "SushiSwap"], + "occurrences": 4 + }, + "0xf9cea445c2ac1668f50caa2c2924f93606a4a37d": { + "address": "0xf9cea445c2ac1668f50caa2c2924f93606a4a37d", + "symbol": "RIA", + "decimals": 18, + "name": "Calvaria: DoE", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0xf9cea445c2ac1668f50caa2c2924f93606a4a37d.png", + "aggregators": ["LiFi", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0x1a763170b96f23f15576d0fa0b2619d1254c437d": { + "address": "0x1a763170b96f23f15576d0fa0b2619d1254c437d", + "symbol": "AX", + "decimals": 18, + "name": "AurusX", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x1a763170b96f23f15576d0fa0b2619d1254c437d.png", + "aggregators": ["LiFi", "Socket", "Rubic", "Sonarwatch"], + "occurrences": 4 + }, + "0x698a8b4ba48c2ee8d468a3a530c83ef422d54857": { + "address": "0x698a8b4ba48c2ee8d468a3a530c83ef422d54857", + "symbol": "SIO", + "decimals": 18, + "name": "SAINO", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x698a8b4ba48c2ee8d468a3a530c83ef422d54857.png", + "aggregators": ["LiFi", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0x64afdf9e28946419e325d801fb3053d8b8ffdc23": { + "address": "0x64afdf9e28946419e325d801fb3053d8b8ffdc23", + "symbol": "MEEB", + "decimals": 18, + "name": "Meeb Master", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x64afdf9e28946419e325d801fb3053d8b8ffdc23.png", + "aggregators": ["LiFi", "Socket", "Rubic", "Rango"], + "occurrences": 4 + }, + "0xa1388e73c51b37383b1ab9dce8317ef5a0349cc5": { + "address": "0xa1388e73c51b37383b1ab9dce8317ef5a0349cc5", + "symbol": "VERSE", + "decimals": 18, + "name": "Shibaverse", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0xa1388e73c51b37383b1ab9dce8317ef5a0349cc5.png", + "aggregators": ["Socket", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0xe8377a076adabb3f9838afb77bee96eac101ffb1": { + "address": "0xe8377a076adabb3f9838afb77bee96eac101ffb1", + "symbol": "MSU", + "decimals": 18, + "name": "MetaSoccer Universe", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0xe8377a076adabb3f9838afb77bee96eac101ffb1.png", + "aggregators": ["Socket", "Rubic", "Rango", "SushiSwap"], + "occurrences": 4 + }, + "0xe3f2b1b2229c0333ad17d03f179b87500e7c5e01": { + "address": "0xe3f2b1b2229c0333ad17d03f179b87500e7c5e01", + "symbol": "AEG", + "decimals": 18, + "name": "Aether Games", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0xe3f2b1b2229c0333ad17d03f179b87500e7c5e01.png", + "aggregators": ["Socket", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0xd6a5ab46ead26f49b03bbb1f9eb1ad5c1767974a": { + "address": "0xd6a5ab46ead26f49b03bbb1f9eb1ad5c1767974a", + "symbol": "EMON", + "decimals": 18, + "name": "Ethermon", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0xd6a5ab46ead26f49b03bbb1f9eb1ad5c1767974a.png", + "aggregators": ["Socket", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0x8f36cc333f55b09bb71091409a3d7ade399e3b1c": { + "address": "0x8f36cc333f55b09bb71091409a3d7ade399e3b1c", + "symbol": "CHER", + "decimals": 18, + "name": "Cherry Network", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x8f36cc333f55b09bb71091409a3d7ade399e3b1c.png", + "aggregators": ["Socket", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0x92868a5255c628da08f550a858a802f5351c5223": { + "address": "0x92868a5255c628da08f550a858a802f5351c5223", + "symbol": "BRIDGE", + "decimals": 18, + "name": "Cross-Chain Bridge", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x92868a5255c628da08f550a858a802f5351c5223.png", + "aggregators": ["Socket", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0x20c750c57c3bc5145af4b7a33d4fb66a8e79fe05": { + "address": "0x20c750c57c3bc5145af4b7a33d4fb66a8e79fe05", + "symbol": "ORB", + "decimals": 18, + "name": "Orbcity", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x20c750c57c3bc5145af4b7a33d4fb66a8e79fe05.png", + "aggregators": ["Socket", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0x11a819beb0aa3327e39f52f90d65cc9bca499f33": { + "address": "0x11a819beb0aa3327e39f52f90d65cc9bca499f33", + "symbol": "SCA", + "decimals": 18, + "name": "Scaleswap", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x11a819beb0aa3327e39f52f90d65cc9bca499f33.png", + "aggregators": ["Socket", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0x5c15cdb9d43824dca67fceb1201e5abebe0b2cbc": { + "address": "0x5c15cdb9d43824dca67fceb1201e5abebe0b2cbc", + "symbol": "FARM", + "decimals": 6, + "name": "CryptoFarmers", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x5c15cdb9d43824dca67fceb1201e5abebe0b2cbc.png", + "aggregators": ["Socket", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0x8ad3d3e6b1b7b65138bd508e48330b544539b2c3": { + "address": "0x8ad3d3e6b1b7b65138bd508e48330b544539b2c3", + "symbol": "KAI", + "decimals": 18, + "name": "Kinetix Finance Token", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x8ad3d3e6b1b7b65138bd508e48330b544539b2c3.png", + "aggregators": ["Socket", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0x32515ffdc3a84cfbf9ad4db14ef8f0a535c7afd6": { + "address": "0x32515ffdc3a84cfbf9ad4db14ef8f0a535c7afd6", + "symbol": "BAKED", + "decimals": 18, + "name": "Baked", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x32515ffdc3a84cfbf9ad4db14ef8f0a535c7afd6.png", + "aggregators": ["Socket", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0x12a34a6759c871c4c1e8a0a42cfc97e4d7aaf68d": { + "address": "0x12a34a6759c871c4c1e8a0a42cfc97e4d7aaf68d", + "symbol": "TUT", + "decimals": 18, + "name": "Tutellus Token", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x12a34a6759c871c4c1e8a0a42cfc97e4d7aaf68d.png", + "aggregators": ["Rubic", "Rango", "Sonarwatch", "SushiSwap"], + "occurrences": 4 + }, + "0xd86b5923f3ad7b585ed81b448170ae026c65ae9a": { + "address": "0xd86b5923f3ad7b585ed81b448170ae026c65ae9a", + "symbol": "IRON", + "decimals": 18, + "name": "IRON Stablecoin", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0xd86b5923f3ad7b585ed81b448170ae026c65ae9a.png", + "aggregators": ["Rubic", "Rango", "Sonarwatch", "SushiSwap"], + "occurrences": 4 + }, + "0x22e3f02f86bc8ea0d73718a2ae8851854e62adc5": { + "address": "0x22e3f02f86bc8ea0d73718a2ae8851854e62adc5", + "symbol": "FLAME", + "decimals": 18, + "name": "FLAME", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x22e3f02f86bc8ea0d73718a2ae8851854e62adc5.png", + "aggregators": ["QuickSwap", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x5ceebb0947d58fabde2fc026ffe4b33ccfe1ba8b": { + "address": "0x5ceebb0947d58fabde2fc026ffe4b33ccfe1ba8b", + "symbol": "4INT", + "decimals": 9, + "name": "4INT", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x5ceebb0947d58fabde2fc026ffe4b33ccfe1ba8b.png", + "aggregators": ["QuickSwap", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x4b27cd6e6a5e83d236ead376d256fe2f9e9f0d2e": { + "address": "0x4b27cd6e6a5e83d236ead376d256fe2f9e9f0d2e", + "symbol": "BLID", + "decimals": 18, + "name": "Bolide", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x4b27cd6e6a5e83d236ead376d256fe2f9e9f0d2e.png", + "aggregators": ["QuickSwap", "Socket", "Rubic"], + "occurrences": 3 + }, + "0xdda40cdfe4a0090f42ff49f264a831402adb801a": { + "address": "0xdda40cdfe4a0090f42ff49f264a831402adb801a", + "symbol": "DOGIRA", + "decimals": 9, + "name": "Dogira", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0xdda40cdfe4a0090f42ff49f264a831402adb801a.png", + "aggregators": ["QuickSwap", "Rubic", "Rango"], + "occurrences": 3 + }, + "0xc2a45fe7d40bcac8369371b08419ddafd3131b4a": { + "address": "0xc2a45fe7d40bcac8369371b08419ddafd3131b4a", + "symbol": "LCD", + "decimals": 18, + "name": "Lucidao", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0xc2a45fe7d40bcac8369371b08419ddafd3131b4a.png", + "aggregators": ["QuickSwap", "Rubic", "Rango"], + "occurrences": 3 + }, + "0xd7c8469c7ec40f853da5f651de81b45aed47e5ab": { + "address": "0xd7c8469c7ec40f853da5f651de81b45aed47e5ab", + "symbol": "POT", + "decimals": 18, + "name": "PotCoin.com POT", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0xd7c8469c7ec40f853da5f651de81b45aed47e5ab.png", + "aggregators": ["Socket", "Rubic", "Rango"], + "occurrences": 3 + }, + "0xb6a5ae40e79891e4deadad06c8a7ca47396df21c": { + "address": "0xb6a5ae40e79891e4deadad06c8a7ca47396df21c", + "symbol": "CBY", + "decimals": 18, + "name": "Carbify", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0xb6a5ae40e79891e4deadad06c8a7ca47396df21c.png", + "aggregators": ["Rubic", "Rango", "Sonarwatch"], + "occurrences": 3 + }, + "0xb3886b3aaa6087b3d185daeb89ac113d195b5eb9": { + "address": "0xb3886b3aaa6087b3d185daeb89ac113d195b5eb9", + "symbol": "ROBO", + "decimals": 18, + "name": "RoboHero", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0xb3886b3aaa6087b3d185daeb89ac113d195b5eb9.png", + "aggregators": ["Rubic", "Rango", "Sonarwatch"], + "occurrences": 3 + }, + "0x34667ed7c36cbbbf2d5d5c5c8d6eb76a094edb9f": { + "address": "0x34667ed7c36cbbbf2d5d5c5c8d6eb76a094edb9f", + "symbol": "$GENE", + "decimals": 18, + "name": "GenomesDAO GENE", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x34667ed7c36cbbbf2d5d5c5c8d6eb76a094edb9f.png", + "aggregators": ["Rubic", "Rango", "Sonarwatch"], + "occurrences": 3 + }, + "0x1d3c629ca5c1d0ab3bdf74600e81b4145615df8e": { + "address": "0x1d3c629ca5c1d0ab3bdf74600e81b4145615df8e", + "symbol": "PRNT", + "decimals": 18, + "name": "Preprints.io", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x1d3c629ca5c1d0ab3bdf74600e81b4145615df8e.png", + "aggregators": ["Rubic", "Rango", "Sonarwatch"], + "occurrences": 3 + }, + "0x2ad2934d5bfb7912304754479dd1f096d5c807da": { + "address": "0x2ad2934d5bfb7912304754479dd1f096d5c807da", + "symbol": "AGC", + "decimals": 18, + "name": "Argocoin", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x2ad2934d5bfb7912304754479dd1f096d5c807da.png", + "aggregators": ["Rubic", "Squid", "Rango"], + "occurrences": 3 + }, + "0xe0b52e49357fd4daf2c15e02058dce6bc0057db4": { + "address": "0xe0b52e49357fd4daf2c15e02058dce6bc0057db4", + "symbol": "AGEUR", + "decimals": 18, + "name": "agEUR", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0xe0b52e49357fd4daf2c15e02058dce6bc0057db4.png", + "aggregators": [ + "QuickSwap", + "1inch", + "LiFi", + "Rubic", + "Rango", + "Sonarwatch", + "SushiSwap" + ], + "occurrences": 7 + }, + "0x43c73b90e0c2a355784dcf0da12f477729b31e77": { + "address": "0x43c73b90e0c2a355784dcf0da12f477729b31e77", + "symbol": "SOIL", + "decimals": 18, + "name": "Soil", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x43c73b90e0c2a355784dcf0da12f477729b31e77.png", + "aggregators": [ + "CoinGecko", + "LiFi", + "Socket", + "Rubic", + "Squid", + "Rango", + "Sonarwatch" + ], + "occurrences": 7 + }, + "0x8e677ca17065ed74675bc27bcabadb7eef10a292": { + "address": "0x8e677ca17065ed74675bc27bcabadb7eef10a292", + "symbol": "RAIN", + "decimals": 18, + "name": "Rain Coin", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x8e677ca17065ed74675bc27bcabadb7eef10a292.png", + "aggregators": [ + "CoinGecko", + "LiFi", + "Socket", + "Rubic", + "Squid", + "Rango", + "Sonarwatch" + ], + "occurrences": 7 + }, + "0x4b4327db1600b8b1440163f667e199cef35385f5": { + "address": "0x4b4327db1600b8b1440163f667e199cef35385f5", + "symbol": "FXCBETH", + "decimals": 18, + "name": "Coinbase Wrapped Staked ETH (FXERC20)", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x4b4327db1600b8b1440163f667e199cef35385f5.png", + "aggregators": [ + "QuickSwap", + "LiFi", + "Socket", + "Rubic", + "Rango", + "Sonarwatch", + "SushiSwap" + ], + "occurrences": 7 + }, + "0x16eccfdbb4ee1a85a33f3a9b21175cd7ae753db4": { + "address": "0x16eccfdbb4ee1a85a33f3a9b21175cd7ae753db4", + "symbol": "ROUTE", + "decimals": 18, + "name": "Router Protocol", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x16eccfdbb4ee1a85a33f3a9b21175cd7ae753db4.png", + "aggregators": [ + "CoinGecko", + "1inch", + "LiFi", + "Rubic", + "Rango", + "Sonarwatch", + "SushiSwap" + ], + "occurrences": 7 + }, + "0x27f485b62c4a7e635f561a87560adf5090239e93": { + "address": "0x27f485b62c4a7e635f561a87560adf5090239e93", + "symbol": "DFX", + "decimals": 18, + "name": "DFX Finance", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x27f485b62c4a7e635f561a87560adf5090239e93.png", + "aggregators": [ + "CoinGecko", + "1inch", + "LiFi", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 7 + }, + "0x66dc5a08091d1968e08c16aa5b27bac8398b02be": { + "address": "0x66dc5a08091d1968e08c16aa5b27bac8398b02be", + "symbol": "CVC", + "decimals": 8, + "name": "Civic", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x66dc5a08091d1968e08c16aa5b27bac8398b02be.png", + "aggregators": [ + "CoinGecko", + "LiFi", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 6 + }, + "0x5ffd62d3c3ee2e81c00a7b9079fb248e7df024a8": { + "address": "0x5ffd62d3c3ee2e81c00a7b9079fb248e7df024a8", + "symbol": "GNO", + "decimals": 18, + "name": "Gnosis Token", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x5ffd62d3c3ee2e81c00a7b9079fb248e7df024a8.png", + "aggregators": [ + "UniswapLabs", + "LiFi", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 6 + }, + "0x883abe4168705d2e5da925d28538b7a6aa9d8419": { + "address": "0x883abe4168705d2e5da925d28538b7a6aa9d8419", + "symbol": "BALL", + "decimals": 18, + "name": "Ball", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x883abe4168705d2e5da925d28538b7a6aa9d8419.png", + "aggregators": [ + "CoinGecko", + "LiFi", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 6 + }, + "0xd7bb095a60d7666d4a6f236423b47ddd6ae6cfa7": { + "address": "0xd7bb095a60d7666d4a6f236423b47ddd6ae6cfa7", + "symbol": "AXL-WSTETH", + "decimals": 18, + "name": "Bridged Wrapped stETH (Axelar)", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0xd7bb095a60d7666d4a6f236423b47ddd6ae6cfa7.png", + "aggregators": [ + "CoinGecko", + "LiFi", + "Rubic", + "Squid", + "Rango", + "Sonarwatch" + ], + "occurrences": 6 + }, + "0x04f177fcacf6fb4d2f95d41d7d3fee8e565ca1d0": { + "address": "0x04f177fcacf6fb4d2f95d41d7d3fee8e565ca1d0", + "symbol": "DMT", + "decimals": 18, + "name": "DragonMaster", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x04f177fcacf6fb4d2f95d41d7d3fee8e565ca1d0.png", + "aggregators": [ + "CoinGecko", + "LiFi", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 6 + }, + "0x49e6a20f1bbdfeec2a8222e052000bbb14ee6007": { + "address": "0x49e6a20f1bbdfeec2a8222e052000bbb14ee6007", + "symbol": "TNGBL", + "decimals": 18, + "name": "Tangible", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x49e6a20f1bbdfeec2a8222e052000bbb14ee6007.png", + "aggregators": [ + "CoinGecko", + "LiFi", + "Rubic", + "Rango", + "Sonarwatch", + "SushiSwap" + ], + "occurrences": 6 + }, + "0xf2b028ed5977f136982fdfa429814cf19f09693f": { + "address": "0xf2b028ed5977f136982fdfa429814cf19f09693f", + "symbol": "UNCN", + "decimals": 18, + "name": "Unseen", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0xf2b028ed5977f136982fdfa429814cf19f09693f.png", + "aggregators": [ + "CoinGecko", + "LiFi", + "Rubic", + "Squid", + "Rango", + "Sonarwatch" + ], + "occurrences": 6 + }, + "0xd2e57e7019a8faea8b3e4a3738ee5b269975008a": { + "address": "0xd2e57e7019a8faea8b3e4a3738ee5b269975008a", + "symbol": "THAT", + "decimals": 18, + "name": "THAT", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0xd2e57e7019a8faea8b3e4a3738ee5b269975008a.png", + "aggregators": [ + "CoinGecko", + "1inch", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 6 + }, + "0x09cad96bc28f55e9253cfb9a84a3a1ab79061e54": { + "address": "0x09cad96bc28f55e9253cfb9a84a3a1ab79061e54", + "symbol": "OSHI", + "decimals": 18, + "name": "OSHI3", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x09cad96bc28f55e9253cfb9a84a3a1ab79061e54.png", + "aggregators": [ + "CoinGecko", + "LiFi", + "Rubic", + "Squid", + "Rango", + "Sonarwatch" + ], + "occurrences": 6 + }, + "0x7cc15fef543f205bf21018f038f591c6bada941c": { + "address": "0x7cc15fef543f205bf21018f038f591c6bada941c", + "symbol": "POLYCUB", + "decimals": 18, + "name": "PolyCub", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x7cc15fef543f205bf21018f038f591c6bada941c.png", + "aggregators": [ + "CoinGecko", + "LiFi", + "Rubic", + "Rango", + "Sonarwatch", + "SushiSwap" + ], + "occurrences": 6 + }, + "0xa9f37d84c856fda3812ad0519dad44fa0a3fe207": { + "address": "0xa9f37d84c856fda3812ad0519dad44fa0a3fe207", + "symbol": "MLN", + "decimals": 11, + "name": "Enzyme", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0xa9f37d84c856fda3812ad0519dad44fa0a3fe207.png", + "aggregators": [ + "CoinGecko", + "LiFi", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 6 + }, + "0xc03e6ad83de7c58c9166ff08d66b960d78e64105": { + "address": "0xc03e6ad83de7c58c9166ff08d66b960d78e64105", + "symbol": "LAND", + "decimals": 18, + "name": "Landshare Token", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0xc03e6ad83de7c58c9166ff08d66b960d78e64105.png", + "aggregators": [ + "CoinGecko", + "LiFi", + "Rubic", + "Rango", + "Sonarwatch", + "SushiSwap" + ], + "occurrences": 6 + }, + "0xf328b73b6c685831f238c30a23fc19140cb4d8fc": { + "address": "0xf328b73b6c685831f238c30a23fc19140cb4d8fc", + "symbol": "ACX", + "decimals": 18, + "name": "Across Protocol Token (PoS)", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0xf328b73b6c685831f238c30a23fc19140cb4d8fc.png", + "aggregators": [ + "CoinGecko", + "LiFi", + "Rubic", + "Rango", + "Sonarwatch", + "SushiSwap" + ], + "occurrences": 6 + }, + "0xb75bbd79985a8092b05224f62d7fed25924b075d": { + "address": "0xb75bbd79985a8092b05224f62d7fed25924b075d", + "symbol": "DAM", + "decimals": 18, + "name": "Datamine", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0xb75bbd79985a8092b05224f62d7fed25924b075d.png", + "aggregators": [ + "CoinGecko", + "LiFi", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 6 + }, + "0x4985e0b13554fb521840e893574d3848c10fcc6f": { + "address": "0x4985e0b13554fb521840e893574d3848c10fcc6f", + "symbol": "NCT", + "decimals": 18, + "name": "PolySwarm", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x4985e0b13554fb521840e893574d3848c10fcc6f.png", + "aggregators": [ + "CoinGecko", + "LiFi", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 6 + }, + "0x6e7f6a2404ff6b4363b0a5085dbf7b78d46e04d7": { + "address": "0x6e7f6a2404ff6b4363b0a5085dbf7b78d46e04d7", + "symbol": "BRTR", + "decimals": 8, + "name": "Barter", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x6e7f6a2404ff6b4363b0a5085dbf7b78d46e04d7.png", + "aggregators": [ + "CoinGecko", + "LiFi", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 6 + }, + "0x57f5e098cad7a3d1eed53991d4d66c45c9af7812": { + "address": "0x57f5e098cad7a3d1eed53991d4d66c45c9af7812", + "symbol": "WUSDM", + "decimals": 18, + "name": "Wrapped USDM", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x57f5e098cad7a3d1eed53991d4d66c45c9af7812.png", + "aggregators": [ + "CoinGecko", + "LiFi", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 6 + }, + "0xe3322702bedaaed36cddab233360b939775ae5f1": { + "address": "0xe3322702bedaaed36cddab233360b939775ae5f1", + "symbol": "TRB", + "decimals": 18, + "name": "Tellor Tributes", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0xe3322702bedaaed36cddab233360b939775ae5f1.png", + "aggregators": [ + "CoinGecko", + "LiFi", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 6 + }, + "0x7205705771547cf79201111b4bd8aaf29467b9ec": { + "address": "0x7205705771547cf79201111b4bd8aaf29467b9ec", + "symbol": "RPL", + "decimals": 18, + "name": "Rocket Pool", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x7205705771547cf79201111b4bd8aaf29467b9ec.png", + "aggregators": [ + "CoinGecko", + "LiFi", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 6 + }, + "0x4987a49c253c38b3259092e9aac10ec0c7ef7542": { + "address": "0x4987a49c253c38b3259092e9aac10ec0c7ef7542", + "symbol": "DUST", + "decimals": 9, + "name": "Dust Protocol", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x4987a49c253c38b3259092e9aac10ec0c7ef7542.png", + "aggregators": [ + "CoinGecko", + "LiFi", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 6 + }, + "0x6899face15c14348e1759371049ab64a3a06bfa6": { + "address": "0x6899face15c14348e1759371049ab64a3a06bfa6", + "symbol": "SDEX", + "decimals": 18, + "name": "SmarDex", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x6899face15c14348e1759371049ab64a3a06bfa6.png", + "aggregators": [ + "CoinGecko", + "LiFi", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 6 + }, + "0xfbd8a3b908e764dbcd51e27992464b4432a1132b": { + "address": "0xfbd8a3b908e764dbcd51e27992464b4432a1132b", + "symbol": "INDEX", + "decimals": 18, + "name": "Index Cooperative", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0xfbd8a3b908e764dbcd51e27992464b4432a1132b.png", + "aggregators": [ + "CoinGecko", + "LiFi", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 6 + }, + "0xbc0bea8e634ec838a2a45f8a43e7e16cd2a8ba99": { + "address": "0xbc0bea8e634ec838a2a45f8a43e7e16cd2a8ba99", + "symbol": "GRG", + "decimals": 18, + "name": "RigoBlock", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0xbc0bea8e634ec838a2a45f8a43e7e16cd2a8ba99.png", + "aggregators": [ + "CoinGecko", + "LiFi", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 6 + }, + "0x72d6066f486bd0052eefb9114b66ae40e0a6031a": { + "address": "0x72d6066f486bd0052eefb9114b66ae40e0a6031a", + "symbol": "WRX", + "decimals": 8, + "name": "WazirX", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x72d6066f486bd0052eefb9114b66ae40e0a6031a.png", + "aggregators": [ + "CoinGecko", + "LiFi", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 6 + }, + "0xecf8f2fa183b1c4d2a269bf98a54fce86c812d3e": { + "address": "0xecf8f2fa183b1c4d2a269bf98a54fce86c812d3e", + "symbol": "CFI", + "decimals": 18, + "name": "CyberFi", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0xecf8f2fa183b1c4d2a269bf98a54fce86c812d3e.png", + "aggregators": [ + "CoinGecko", + "LiFi", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 6 + }, + "0x127984b5e6d5c59f81dacc9f1c8b3bdc8494572e": { + "address": "0x127984b5e6d5c59f81dacc9f1c8b3bdc8494572e", + "symbol": "PPDEX", + "decimals": 18, + "name": "Pepedex", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x127984b5e6d5c59f81dacc9f1c8b3bdc8494572e.png", + "aggregators": [ + "CoinGecko", + "LiFi", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 6 + }, + "0x6109cb051c5c64093830121ed76272ab04bbdd7c": { + "address": "0x6109cb051c5c64093830121ed76272ab04bbdd7c", + "symbol": "PROS", + "decimals": 18, + "name": "Prosper [OLD]", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x6109cb051c5c64093830121ed76272ab04bbdd7c.png", + "aggregators": [ + "CoinGecko", + "LiFi", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 6 + }, + "0x2fe8733dcb25bfbba79292294347415417510067": { + "address": "0x2fe8733dcb25bfbba79292294347415417510067", + "symbol": "XED", + "decimals": 18, + "name": "Exeedme", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x2fe8733dcb25bfbba79292294347415417510067.png", + "aggregators": [ + "CoinGecko", + "LiFi", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 6 + }, + "0x44acd96620b708162af4a90524f29a6839675533": { + "address": "0x44acd96620b708162af4a90524f29a6839675533", + "symbol": "TCGC", + "decimals": 18, + "name": "TCG Verse", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x44acd96620b708162af4a90524f29a6839675533.png", + "aggregators": [ + "CoinGecko", + "LiFi", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 6 + }, + "0x11cd72f7a4b699c67f225ca8abb20bc9f8db90c7": { + "address": "0x11cd72f7a4b699c67f225ca8abb20bc9f8db90c7", + "symbol": "OSAK", + "decimals": 18, + "name": "Osaka Protocol", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x11cd72f7a4b699c67f225ca8abb20bc9f8db90c7.png", + "aggregators": [ + "CoinGecko", + "Socket", + "Rubic", + "Rango", + "Sonarwatch", + "SushiSwap" + ], + "occurrences": 6 + }, + "0xe3ab61371ecc88534c522922a026f2296116c109": { + "address": "0xe3ab61371ecc88534c522922a026f2296116c109", + "symbol": "MOMA", + "decimals": 18, + "name": "Mochi Market", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0xe3ab61371ecc88534c522922a026f2296116c109.png", + "aggregators": [ + "CoinGecko", + "LiFi", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 6 + }, + "0x4cebdbcb286101a17d3ea1f7fe7bbded2b2053dd": { + "address": "0x4cebdbcb286101a17d3ea1f7fe7bbded2b2053dd", + "symbol": "YLD", + "decimals": 18, + "name": "Yield App", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x4cebdbcb286101a17d3ea1f7fe7bbded2b2053dd.png", + "aggregators": [ + "CoinGecko", + "LiFi", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 6 + }, + "0xa91fe5a535967f52d3abebdffb3b306d964ace13": { + "address": "0xa91fe5a535967f52d3abebdffb3b306d964ace13", + "symbol": "QUARTZ", + "decimals": 18, + "name": "Sandclock", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0xa91fe5a535967f52d3abebdffb3b306d964ace13.png", + "aggregators": [ + "CoinGecko", + "LiFi", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 6 + }, + "0xbd1463f02f61676d53fd183c2b19282bff93d099": { + "address": "0xbd1463f02f61676d53fd183c2b19282bff93d099", + "symbol": "JCHF", + "decimals": 18, + "name": "Jarvis Synthetic Swiss Franc", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0xbd1463f02f61676d53fd183c2b19282bff93d099.png", + "aggregators": [ + "CoinGecko", + "LiFi", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 6 + }, + "0x11602a402281974a70c2b4824d58ebede967e2be": { + "address": "0x11602a402281974a70c2b4824d58ebede967e2be", + "symbol": "BYN", + "decimals": 18, + "name": "NBX", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x11602a402281974a70c2b4824d58ebede967e2be.png", + "aggregators": [ + "CoinGecko", + "LiFi", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 6 + }, + "0x72b9f88e822cf08b031c2206612b025a82fb303c": { + "address": "0x72b9f88e822cf08b031c2206612b025a82fb303c", + "symbol": "DBD", + "decimals": 18, + "name": "Day By Day", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x72b9f88e822cf08b031c2206612b025a82fb303c.png", + "aggregators": [ + "CoinGecko", + "LiFi", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 6 + }, + "0xeb94a5e2c643403e29fa1d7197e7e0708b09ad84": { + "address": "0xeb94a5e2c643403e29fa1d7197e7e0708b09ad84", + "symbol": "ONX", + "decimals": 18, + "name": "OnX Finance", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0xeb94a5e2c643403e29fa1d7197e7e0708b09ad84.png", + "aggregators": [ + "CoinGecko", + "LiFi", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 6 + }, + "0xa3ed22eee92a3872709823a6970069e12a4540eb": { + "address": "0xa3ed22eee92a3872709823a6970069e12a4540eb", + "symbol": "FRONT", + "decimals": 18, + "name": "Frontier", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0xa3ed22eee92a3872709823a6970069e12a4540eb.png", + "aggregators": [ + "CoinGecko", + "LiFi", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 6 + }, + "0xe8f157e041df3b28151b667364e9c90789da7923": { + "address": "0xe8f157e041df3b28151b667364e9c90789da7923", + "symbol": "OPIUM", + "decimals": 18, + "name": "Opium", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0xe8f157e041df3b28151b667364e9c90789da7923.png", + "aggregators": [ + "CoinGecko", + "LiFi", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 6 + }, + "0x9fb9a33956351cf4fa040f65a13b835a3c8764e3": { + "address": "0x9fb9a33956351cf4fa040f65a13b835a3c8764e3", + "symbol": "MULTI", + "decimals": 18, + "name": "Multichain", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x9fb9a33956351cf4fa040f65a13b835a3c8764e3.png", + "aggregators": [ + "CoinGecko", + "LiFi", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 6 + }, + "0x4fafad147c8cd0e52f83830484d164e960bdc6c3": { + "address": "0x4fafad147c8cd0e52f83830484d164e960bdc6c3", + "symbol": "QWLA", + "decimals": 18, + "name": "Qawalla", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x4fafad147c8cd0e52f83830484d164e960bdc6c3.png", + "aggregators": [ + "CoinGecko", + "LiFi", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 6 + }, + "0xc3f56d567e7663e8932e65d85ae4be7eb5575ca7": { + "address": "0xc3f56d567e7663e8932e65d85ae4be7eb5575ca7", + "symbol": "FTRB", + "decimals": 18, + "name": "Faith Tribe", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0xc3f56d567e7663e8932e65d85ae4be7eb5575ca7.png", + "aggregators": [ + "CoinGecko", + "LiFi", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 6 + }, + "0xeeda694439c6fb56cbaa011cc849650b7273285b": { + "address": "0xeeda694439c6fb56cbaa011cc849650b7273285b", + "symbol": "BED", + "decimals": 18, + "name": "Bankless BED Index", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0xeeda694439c6fb56cbaa011cc849650b7273285b.png", + "aggregators": [ + "CoinGecko", + "LiFi", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 6 + }, + "0x38f9bf9dce51833ec7f03c9dc218197999999999": { + "address": "0x38f9bf9dce51833ec7f03c9dc218197999999999", + "symbol": "NYA", + "decimals": 18, + "name": "Nya", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x38f9bf9dce51833ec7f03c9dc218197999999999.png", + "aggregators": [ + "CoinGecko", + "Socket", + "Rubic", + "Squid", + "Rango", + "Sonarwatch" + ], + "occurrences": 6 + }, + "0x8bb30e0e67b11b978a5040144c410e1ccddcba30": { + "address": "0x8bb30e0e67b11b978a5040144c410e1ccddcba30", + "symbol": "ZCN", + "decimals": 10, + "name": "Zus", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x8bb30e0e67b11b978a5040144c410e1ccddcba30.png", + "aggregators": [ + "CoinGecko", + "LiFi", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 6 + }, + "0xceed2671d8634e3ee65000edbbee66139b132fbf": { + "address": "0xceed2671d8634e3ee65000edbbee66139b132fbf", + "symbol": "AXLUSDT", + "decimals": 6, + "name": "Bridged Tether (Axelar)", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0xceed2671d8634e3ee65000edbbee66139b132fbf.png", + "aggregators": [ + "CoinGecko", + "LiFi", + "Rubic", + "Squid", + "Rango", + "Sonarwatch" + ], + "occurrences": 6 + }, + "0x7f792db54b0e580cdc755178443f0430cf799aca": { + "address": "0x7f792db54b0e580cdc755178443f0430cf799aca", + "symbol": "VOLT", + "decimals": 9, + "name": "Volt Inu", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x7f792db54b0e580cdc755178443f0430cf799aca.png", + "aggregators": [ + "CoinGecko", + "Socket", + "Rubic", + "Squid", + "Rango", + "Sonarwatch" + ], + "occurrences": 6 + }, + "0x276c9cbaa4bdf57d7109a41e67bd09699536fa3d": { + "address": "0x276c9cbaa4bdf57d7109a41e67bd09699536fa3d", + "symbol": "CUBE", + "decimals": 8, + "name": "Somnium Space CUBEs", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x276c9cbaa4bdf57d7109a41e67bd09699536fa3d.png", + "aggregators": [ + "CoinGecko", + "LiFi", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 6 + }, + "0xbbbbbbbbb7949dcc7d1539c91b81a5bf09e37bdb": { + "address": "0xbbbbbbbbb7949dcc7d1539c91b81a5bf09e37bdb", + "symbol": "CAW", + "decimals": 18, + "name": "crow with knife", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0xbbbbbbbbb7949dcc7d1539c91b81a5bf09e37bdb.png", + "aggregators": [ + "CoinGecko", + "1inch", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 6 + }, + "0x91c5a5488c0decde1eacd8a4f10e0942fb925067": { + "address": "0x91c5a5488c0decde1eacd8a4f10e0942fb925067", + "symbol": "AUDT", + "decimals": 17, + "name": "Auditchain", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x91c5a5488c0decde1eacd8a4f10e0942fb925067.png", + "aggregators": [ + "CoinGecko", + "LiFi", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 6 + }, + "0x0621d647cecbfb64b79e44302c1933cb4f27054d": { + "address": "0x0621d647cecbfb64b79e44302c1933cb4f27054d", + "symbol": "AMP", + "decimals": 18, + "name": "Amp Token (PoS)", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x0621d647cecbfb64b79e44302c1933cb4f27054d.png", + "aggregators": ["UniswapLabs", "LiFi", "Socket", "Rubic", "Rango"], + "occurrences": 5 + }, + "0x3066818837c5e6ed6601bd5a91b0762877a6b731": { + "address": "0x3066818837c5e6ed6601bd5a91b0762877a6b731", + "symbol": "UMA", + "decimals": 18, + "name": "UMA Voting Token", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x3066818837c5e6ed6601bd5a91b0762877a6b731.png", + "aggregators": [ + "UniswapLabs", + "Socket", + "Rubic", + "Rango", + "SushiSwap" + ], + "occurrences": 5 + }, + "0x5559edb74751a0ede9dea4dc23aee72cca6be3d5": { + "address": "0x5559edb74751a0ede9dea4dc23aee72cca6be3d5", + "symbol": "ZRX", + "decimals": 18, + "name": "0x Protocol Token", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x5559edb74751a0ede9dea4dc23aee72cca6be3d5.png", + "aggregators": [ + "OpenSwap", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x3ce1327867077b551ae9a6987bf10c9fd08edce1": { + "address": "0x3ce1327867077b551ae9a6987bf10c9fd08edce1", + "symbol": "SWCH", + "decimals": 18, + "name": "SWCH", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x3ce1327867077b551ae9a6987bf10c9fd08edce1.png", + "aggregators": ["CoinGecko", "1inch", "LiFi", "Rubic", "Rango"], + "occurrences": 5 + }, + "0x0052074d3eb1429f39e5ea529b54a650c21f5aa4": { + "address": "0x0052074d3eb1429f39e5ea529b54a650c21f5aa4", + "symbol": "RTK", + "decimals": 18, + "name": "RetaFi", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x0052074d3eb1429f39e5ea529b54a650c21f5aa4.png", + "aggregators": [ + "CoinGecko", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0xdd9ba3b2571bea0854beb0508ce10fed0eca7e3e": { + "address": "0xdd9ba3b2571bea0854beb0508ce10fed0eca7e3e", + "symbol": "EDAT", + "decimals": 18, + "name": "EnviDa", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0xdd9ba3b2571bea0854beb0508ce10fed0eca7e3e.png", + "aggregators": [ + "CoinGecko", + "LiFi", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0xd9a1070f832cc02ff9d839500eef6e8c64983726": { + "address": "0xd9a1070f832cc02ff9d839500eef6e8c64983726", + "symbol": "BAT", + "decimals": 18, + "name": "Batic", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0xd9a1070f832cc02ff9d839500eef6e8c64983726.png", + "aggregators": [ + "CoinGecko", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x7aefff599570dec2f3dbbc2ace3cb1f8206749eb": { + "address": "0x7aefff599570dec2f3dbbc2ace3cb1f8206749eb", + "symbol": "MOON", + "decimals": 18, + "name": "Moonflow", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x7aefff599570dec2f3dbbc2ace3cb1f8206749eb.png", + "aggregators": ["CoinGecko", "Socket", "Rubic", "Squid", "Rango"], + "occurrences": 5 + }, + "0x839f1a22a59eaaf26c85958712ab32f80fea23d9": { + "address": "0x839f1a22a59eaaf26c85958712ab32f80fea23d9", + "symbol": "AXN", + "decimals": 18, + "name": "Axion", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x839f1a22a59eaaf26c85958712ab32f80fea23d9.png", + "aggregators": [ + "CoinGecko", + "Rubic", + "Rango", + "Sonarwatch", + "SushiSwap" + ], + "occurrences": 5 + }, + "0x4a81f8796e0c6ad4877a51c86693b0de8093f2ef": { + "address": "0x4a81f8796e0c6ad4877a51c86693b0de8093f2ef", + "symbol": "ICE", + "decimals": 18, + "name": "Iron Finance", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x4a81f8796e0c6ad4877a51c86693b0de8093f2ef.png", + "aggregators": [ + "CoinGecko", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x5d066d022ede10efa2717ed3d79f22f949f8c175": { + "address": "0x5d066d022ede10efa2717ed3d79f22f949f8c175", + "symbol": "CASH", + "decimals": 18, + "name": "Stabl.fi CASH", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x5d066d022ede10efa2717ed3d79f22f949f8c175.png", + "aggregators": [ + "CoinGecko", + "LiFi", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0xbf7970d56a150cd0b60bd08388a4a75a27777777": { + "address": "0xbf7970d56a150cd0b60bd08388a4a75a27777777", + "symbol": "BET", + "decimals": 18, + "name": "Betfin token", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0xbf7970d56a150cd0b60bd08388a4a75a27777777.png", + "aggregators": [ + "CoinGecko", + "Rubic", + "Squid", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x01d35cbc2070a3b76693ce2b6364eae24eb88591": { + "address": "0x01d35cbc2070a3b76693ce2b6364eae24eb88591", + "symbol": "PGEN", + "decimals": 18, + "name": "Polygen", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x01d35cbc2070a3b76693ce2b6364eae24eb88591.png", + "aggregators": [ + "CoinGecko", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0xffa188493c15dfaf2c206c97d8633377847b6a52": { + "address": "0xffa188493c15dfaf2c206c97d8633377847b6a52", + "symbol": "WEFI", + "decimals": 18, + "name": "Wefi", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0xffa188493c15dfaf2c206c97d8633377847b6a52.png", + "aggregators": [ + "CoinGecko", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0xbc5b59ea1b6f8da8258615ee38d40e999ec5d74f": { + "address": "0xbc5b59ea1b6f8da8258615ee38d40e999ec5d74f", + "symbol": "PAW", + "decimals": 18, + "name": "Paw V2", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0xbc5b59ea1b6f8da8258615ee38d40e999ec5d74f.png", + "aggregators": [ + "CoinGecko", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0xd28b3fd350a14f0b1d14633e3d14db7b80406391": { + "address": "0xd28b3fd350a14f0b1d14633e3d14db7b80406391", + "symbol": "TRUMP", + "decimals": 18, + "name": "Meme TrumpCoin", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0xd28b3fd350a14f0b1d14633e3d14db7b80406391.png", + "aggregators": [ + "CoinGecko", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x57211299bc356319ba5ca36873eb06896173f8bc": { + "address": "0x57211299bc356319ba5ca36873eb06896173f8bc", + "symbol": "SUT", + "decimals": 18, + "name": "Super Useless Token", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x57211299bc356319ba5ca36873eb06896173f8bc.png", + "aggregators": [ + "CoinGecko", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0xbbcb0356bb9e6b3faa5cbf9e5f36185d53403ac9": { + "address": "0xbbcb0356bb9e6b3faa5cbf9e5f36185d53403ac9", + "symbol": "BCOIN", + "decimals": 18, + "name": "Backed Coinbase Global", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0xbbcb0356bb9e6b3faa5cbf9e5f36185d53403ac9.png", + "aggregators": [ + "CoinGecko", + "LiFi", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0xe7a24ef0c5e95ffb0f6684b813a78f2a3ad7d171": { + "address": "0xe7a24ef0c5e95ffb0f6684b813a78f2a3ad7d171", + "symbol": "AM3CRV", + "decimals": 18, + "name": "Curve.fi amDAI/amUSDC/amUSDT", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0xe7a24ef0c5e95ffb0f6684b813a78f2a3ad7d171.png", + "aggregators": [ + "CoinGecko", + "LiFi", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x2d66953fc2eb650f0fd992dbe1e71d743a4e9fee": { + "address": "0x2d66953fc2eb650f0fd992dbe1e71d743a4e9fee", + "symbol": "NOTES", + "decimals": 9, + "name": "Backstage Pass Notes", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x2d66953fc2eb650f0fd992dbe1e71d743a4e9fee.png", + "aggregators": [ + "CoinGecko", + "Rubic", + "Squid", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0xcfe2cf35d2bdde84967e67d00ad74237e234ce59": { + "address": "0xcfe2cf35d2bdde84967e67d00ad74237e234ce59", + "symbol": "PUP", + "decimals": 18, + "name": "PolyPup", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0xcfe2cf35d2bdde84967e67d00ad74237e234ce59.png", + "aggregators": [ + "CoinGecko", + "LiFi", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x162539172b53e9a93b7d98fb6c41682de558a320": { + "address": "0x162539172b53e9a93b7d98fb6c41682de558a320", + "symbol": "GONE", + "decimals": 18, + "name": "Gone", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x162539172b53e9a93b7d98fb6c41682de558a320.png", + "aggregators": [ + "CoinGecko", + "Rubic", + "Squid", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0xb2c63830d4478cb331142fac075a39671a5541dc": { + "address": "0xb2c63830d4478cb331142fac075a39671a5541dc", + "symbol": "BCOIN", + "decimals": 18, + "name": "Bomb Crypto (POL)", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0xb2c63830d4478cb331142fac075a39671a5541dc.png", + "aggregators": [ + "CoinGecko", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x0566c506477cd2d8df4e0123512dbc344bd9d111": { + "address": "0x0566c506477cd2d8df4e0123512dbc344bd9d111", + "symbol": "MLC", + "decimals": 18, + "name": "My Lovely Coin", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x0566c506477cd2d8df4e0123512dbc344bd9d111.png", + "aggregators": [ + "CoinGecko", + "Rubic", + "Squid", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0xd14d1e501b2b52d6134db1ad0857aa91f9bfe2dd": { + "address": "0xd14d1e501b2b52d6134db1ad0857aa91f9bfe2dd", + "symbol": "SWAVE", + "decimals": 18, + "name": "shuts Wave", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0xd14d1e501b2b52d6134db1ad0857aa91f9bfe2dd.png", + "aggregators": [ + "CoinGecko", + "LiFi", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x6a8ec2d9bfbdd20a7f5a4e89d640f7e7ceba4499": { + "address": "0x6a8ec2d9bfbdd20a7f5a4e89d640f7e7ceba4499", + "symbol": "MSQ", + "decimals": 18, + "name": "MSquare Global", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x6a8ec2d9bfbdd20a7f5a4e89d640f7e7ceba4499.png", + "aggregators": [ + "CoinGecko", + "Rubic", + "Squid", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x708383ae0e80e75377d664e4d6344404dede119a": { + "address": "0x708383ae0e80e75377d664e4d6344404dede119a", + "symbol": "EMT", + "decimals": 18, + "name": "EarthMeta", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x708383ae0e80e75377d664e4d6344404dede119a.png", + "aggregators": [ + "CoinGecko", + "Rubic", + "Squid", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x2ab0e9e4ee70fff1fb9d67031e44f6410170d00e": { + "address": "0x2ab0e9e4ee70fff1fb9d67031e44f6410170d00e", + "symbol": "MXEN", + "decimals": 18, + "name": "Xen Crypto (MATIC)", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x2ab0e9e4ee70fff1fb9d67031e44f6410170d00e.png", + "aggregators": [ + "CoinGecko", + "Rubic", + "Squid", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x27ab6e82f3458edbc0703db2756391b899ce6324": { + "address": "0x27ab6e82f3458edbc0703db2756391b899ce6324", + "symbol": "RNT", + "decimals": 18, + "name": "Reental", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x27ab6e82f3458edbc0703db2756391b899ce6324.png", + "aggregators": [ + "CoinGecko", + "Rubic", + "Squid", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x61bf130d973d59c69d3227f1668d534d83119860": { + "address": "0x61bf130d973d59c69d3227f1668d534d83119860", + "symbol": "TRKX", + "decimals": 18, + "name": "Trakx", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x61bf130d973d59c69d3227f1668d534d83119860.png", + "aggregators": [ + "CoinGecko", + "Rubic", + "Squid", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0xbed0b9240bdbcc8e33f66d2ca650a5ef60a5bab0": { + "address": "0xbed0b9240bdbcc8e33f66d2ca650a5ef60a5bab0", + "symbol": "MAX", + "decimals": 18, + "name": "Matr1x", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0xbed0b9240bdbcc8e33f66d2ca650a5ef60a5bab0.png", + "aggregators": [ + "CoinGecko", + "LiFi", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x01b317bc5ed573faa112ef64dd029f407cecb155": { + "address": "0x01b317bc5ed573faa112ef64dd029f407cecb155", + "symbol": "IONX", + "decimals": 18, + "name": "Charged Particles", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x01b317bc5ed573faa112ef64dd029f407cecb155.png", + "aggregators": [ + "CoinGecko", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x444444444444c1a66f394025ac839a535246fcc8": { + "address": "0x444444444444c1a66f394025ac839a535246fcc8", + "symbol": "GENI", + "decimals": 9, + "name": "Genius", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x444444444444c1a66f394025ac839a535246fcc8.png", + "aggregators": [ + "CoinGecko", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x4a506181f07da5ddfda4ca4c2fa4c67001db94b4": { + "address": "0x4a506181f07da5ddfda4ca4c2fa4c67001db94b4", + "symbol": "DYL", + "decimals": 18, + "name": "Dyl", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x4a506181f07da5ddfda4ca4c2fa4c67001db94b4.png", + "aggregators": [ + "CoinGecko", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0xba11c5effa33c4d6f8f593cfa394241cfe925811": { + "address": "0xba11c5effa33c4d6f8f593cfa394241cfe925811", + "symbol": "OUSG", + "decimals": 18, + "name": "OUSG", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0xba11c5effa33c4d6f8f593cfa394241cfe925811.png", + "aggregators": [ + "CoinGecko", + "LiFi", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x1280830f690d0e65195b3c61b028244c3a49f26d": { + "address": "0x1280830f690d0e65195b3c61b028244c3a49f26d", + "symbol": "AXLETH", + "decimals": 18, + "name": "Axelar Wrapped Ether", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x1280830f690d0e65195b3c61b028244c3a49f26d.png", + "aggregators": [ + "CoinGecko", + "LiFi", + "Rubic", + "Squid", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x554cd6bdd03214b10aafa3e0d4d42de0c5d2937b": { + "address": "0x554cd6bdd03214b10aafa3e0d4d42de0c5d2937b", + "symbol": "IDRT", + "decimals": 6, + "name": "Rupiah Token", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x554cd6bdd03214b10aafa3e0d4d42de0c5d2937b.png", + "aggregators": [ + "CoinGecko", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0xb092e1bf50f518b3ebf7ed26a40015183ae36ac2": { + "address": "0xb092e1bf50f518b3ebf7ed26a40015183ae36ac2", + "symbol": "TAROT", + "decimals": 18, + "name": "Tarot", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0xb092e1bf50f518b3ebf7ed26a40015183ae36ac2.png", + "aggregators": [ + "CoinGecko", + "LiFi", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x1e2c4fb7ede391d116e6b41cd0608260e8801d59": { + "address": "0x1e2c4fb7ede391d116e6b41cd0608260e8801d59", + "symbol": "BCSPX", + "decimals": 18, + "name": "Backed CSPX Core S&P 500", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x1e2c4fb7ede391d116e6b41cd0608260e8801d59.png", + "aggregators": [ + "CoinGecko", + "LiFi", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0xcb64cdeb45def1c513fd890e7e76a865bae46060": { + "address": "0xcb64cdeb45def1c513fd890e7e76a865bae46060", + "symbol": "FAKT", + "decimals": 18, + "name": "Medifakt", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0xcb64cdeb45def1c513fd890e7e76a865bae46060.png", + "aggregators": [ + "CoinGecko", + "LiFi", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x3558887f15b5b0074dc4167761de14a6dfcb676e": { + "address": "0x3558887f15b5b0074dc4167761de14a6dfcb676e", + "symbol": "NETVR", + "decimals": 18, + "name": "Netvrk", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x3558887f15b5b0074dc4167761de14a6dfcb676e.png", + "aggregators": [ + "CoinGecko", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x7bebd226154e865954a87650faefa8f485d36081": { + "address": "0x7bebd226154e865954a87650faefa8f485d36081", + "symbol": "ZIG", + "decimals": 18, + "name": "Zignaly", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x7bebd226154e865954a87650faefa8f485d36081.png", + "aggregators": [ + "CoinGecko", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x644192291cc835a93d6330b24ea5f5fedd0eef9e": { + "address": "0x644192291cc835a93d6330b24ea5f5fedd0eef9e", + "symbol": "NXRA", + "decimals": 18, + "name": "Nexera", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x644192291cc835a93d6330b24ea5f5fedd0eef9e.png", + "aggregators": [ + "CoinGecko", + "LiFi", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x2f123cf3f37ce3328cc9b5b8415f9ec5109b45e7": { + "address": "0x2f123cf3f37ce3328cc9b5b8415f9ec5109b45e7", + "symbol": "BC3M", + "decimals": 18, + "name": "Backed GOVIES 0-6 months EURO", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x2f123cf3f37ce3328cc9b5b8415f9ec5109b45e7.png", + "aggregators": [ + "CoinGecko", + "LiFi", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x4b85a666dec7c959e88b97814e46113601b07e57": { + "address": "0x4b85a666dec7c959e88b97814e46113601b07e57", + "symbol": "GOC", + "decimals": 18, + "name": "GoCrypto", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x4b85a666dec7c959e88b97814e46113601b07e57.png", + "aggregators": [ + "CoinGecko", + "LiFi", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x4ec203dd0699fac6adaf483cdd2519bc05d2c573": { + "address": "0x4ec203dd0699fac6adaf483cdd2519bc05d2c573", + "symbol": "CBK", + "decimals": 18, + "name": "CBK", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x4ec203dd0699fac6adaf483cdd2519bc05d2c573.png", + "aggregators": ["CoinGecko", "LiFi", "Socket", "Rubic", "Rango"], + "occurrences": 5 + }, + "0x03cf5d93ca7c70ce0a21a09f4d70779d2c66b25a": { + "address": "0x03cf5d93ca7c70ce0a21a09f4d70779d2c66b25a", + "symbol": "JMPT", + "decimals": 18, + "name": "JumpToken", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x03cf5d93ca7c70ce0a21a09f4d70779d2c66b25a.png", + "aggregators": [ + "CoinGecko", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0xc4bb7277a74678f053259cb1f96140347efbfd46": { + "address": "0xc4bb7277a74678f053259cb1f96140347efbfd46", + "symbol": "LUCHOW", + "decimals": 18, + "name": "LunaChow", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0xc4bb7277a74678f053259cb1f96140347efbfd46.png", + "aggregators": [ + "CoinGecko", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0xd5fa77a860fea9cff31da91bbf9e0faea9538290": { + "address": "0xd5fa77a860fea9cff31da91bbf9e0faea9538290", + "symbol": "COLLAR", + "decimals": 18, + "name": "Dog Collar", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0xd5fa77a860fea9cff31da91bbf9e0faea9538290.png", + "aggregators": [ + "CoinGecko", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x6c3b2f402cd7d22ae2c319b9d2f16f57927a4a17": { + "address": "0x6c3b2f402cd7d22ae2c319b9d2f16f57927a4a17", + "symbol": "KRW", + "decimals": 18, + "name": "KROWN", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x6c3b2f402cd7d22ae2c319b9d2f16f57927a4a17.png", + "aggregators": [ + "CoinGecko", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0xd99bafe5031cc8b345cb2e8c80135991f12d7130": { + "address": "0xd99bafe5031cc8b345cb2e8c80135991f12d7130", + "symbol": "FRM", + "decimals": 18, + "name": "Ferrum Network", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0xd99bafe5031cc8b345cb2e8c80135991f12d7130.png", + "aggregators": [ + "CoinGecko", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x72a5a58f79ffc2102227b92faeba93b169a3a3f1": { + "address": "0x72a5a58f79ffc2102227b92faeba93b169a3a3f1", + "symbol": "FVT", + "decimals": 18, + "name": "Finance Vote", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x72a5a58f79ffc2102227b92faeba93b169a3a3f1.png", + "aggregators": [ + "CoinGecko", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0xd3ac016b1b8c80eeadde4d186a9138c9324e4189": { + "address": "0xd3ac016b1b8c80eeadde4d186a9138c9324e4189", + "symbol": "OK", + "decimals": 18, + "name": "Okcash", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0xd3ac016b1b8c80eeadde4d186a9138c9324e4189.png", + "aggregators": [ + "CoinGecko", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x306fd3e7b169aa4ee19412323e1a5995b8c1a1f4": { + "address": "0x306fd3e7b169aa4ee19412323e1a5995b8c1a1f4", + "symbol": "FTW", + "decimals": 18, + "name": "Black Agnus", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x306fd3e7b169aa4ee19412323e1a5995b8c1a1f4.png", + "aggregators": [ + "CoinGecko", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x08158a6b5d4018340387d1a302f882e98a8bc5b4": { + "address": "0x08158a6b5d4018340387d1a302f882e98a8bc5b4", + "symbol": "PPAY", + "decimals": 18, + "name": "Plasma Finance", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x08158a6b5d4018340387d1a302f882e98a8bc5b4.png", + "aggregators": [ + "CoinGecko", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0xfed16c746cb5bfed009730f9e3e6a673006105c7": { + "address": "0xfed16c746cb5bfed009730f9e3e6a673006105c7", + "symbol": "DRC", + "decimals": 0, + "name": "Digital Reserve Currency", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0xfed16c746cb5bfed009730f9e3e6a673006105c7.png", + "aggregators": [ + "CoinGecko", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0xf521d590fb1e0b432fd0e020cdbd6c6397d652c2": { + "address": "0xf521d590fb1e0b432fd0e020cdbd6c6397d652c2", + "symbol": "PAR", + "decimals": 18, + "name": "Parachute", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0xf521d590fb1e0b432fd0e020cdbd6c6397d652c2.png", + "aggregators": [ + "CoinGecko", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0xfe457497a2a71bce1eb93ea9e6a685057dd93dee": { + "address": "0xfe457497a2a71bce1eb93ea9e6a685057dd93dee", + "symbol": "BNSD", + "decimals": 18, + "name": "BNSD Finance", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0xfe457497a2a71bce1eb93ea9e6a685057dd93dee.png", + "aggregators": ["CoinGecko", "LiFi", "Socket", "Rubic", "Rango"], + "occurrences": 5 + }, + "0x34f380a4e3389e99c0369264453523bbe5af7fab": { + "address": "0x34f380a4e3389e99c0369264453523bbe5af7fab", + "symbol": "KANGAL", + "decimals": 18, + "name": "Kangal", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x34f380a4e3389e99c0369264453523bbe5af7fab.png", + "aggregators": [ + "CoinGecko", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0xdae89da41a96956e9e70320ac9c0dd077070d3a5": { + "address": "0xdae89da41a96956e9e70320ac9c0dd077070d3a5", + "symbol": "CNTR", + "decimals": 18, + "name": "Centaur", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0xdae89da41a96956e9e70320ac9c0dd077070d3a5.png", + "aggregators": [ + "CoinGecko", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x4597c8a59ab28b36840b82b3a674994a279593d0": { + "address": "0x4597c8a59ab28b36840b82b3a674994a279593d0", + "symbol": "COVAL", + "decimals": 8, + "name": "COVAL", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x4597c8a59ab28b36840b82b3a674994a279593d0.png", + "aggregators": ["CoinGecko", "LiFi", "Socket", "Rubic", "Rango"], + "occurrences": 5 + }, + "0x709a4b6217584188ddb93c82f5d716d969acce1c": { + "address": "0x709a4b6217584188ddb93c82f5d716d969acce1c", + "symbol": "HANU", + "decimals": 12, + "name": "Hanu Yokia", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x709a4b6217584188ddb93c82f5d716d969acce1c.png", + "aggregators": [ + "CoinGecko", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0xb41ec2c036f8a42da384dde6ada79884f8b84b26": { + "address": "0xb41ec2c036f8a42da384dde6ada79884f8b84b26", + "symbol": "TIDAL", + "decimals": 18, + "name": "Tidal Finance", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0xb41ec2c036f8a42da384dde6ada79884f8b84b26.png", + "aggregators": [ + "CoinGecko", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x1ba17c639bdaecd8dc4aac37df062d17ee43a1b8": { + "address": "0x1ba17c639bdaecd8dc4aac37df062d17ee43a1b8", + "symbol": "IXS", + "decimals": 18, + "name": "IX Swap", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x1ba17c639bdaecd8dc4aac37df062d17ee43a1b8.png", + "aggregators": [ + "CoinGecko", + "1inch", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x8eef5a82e6aa222a60f009ac18c24ee12dbf4b41": { + "address": "0x8eef5a82e6aa222a60f009ac18c24ee12dbf4b41", + "symbol": "TXL", + "decimals": 18, + "name": "Autobahn Network", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x8eef5a82e6aa222a60f009ac18c24ee12dbf4b41.png", + "aggregators": [ + "CoinGecko", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x55b1a124c04a54eefdefe5fa2ef5f852fb5f2f26": { + "address": "0x55b1a124c04a54eefdefe5fa2ef5f852fb5f2f26", + "symbol": "ETHM", + "decimals": 18, + "name": "Ethereum Meta", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x55b1a124c04a54eefdefe5fa2ef5f852fb5f2f26.png", + "aggregators": [ + "CoinGecko", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0xa0cb0ce7c6d93a7ebd72952feb4407dddee8a194": { + "address": "0xa0cb0ce7c6d93a7ebd72952feb4407dddee8a194", + "symbol": "SHIBAKEN", + "decimals": 0, + "name": "Shibaken Finance", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0xa0cb0ce7c6d93a7ebd72952feb4407dddee8a194.png", + "aggregators": [ + "CoinGecko", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x50bcbc40306230713239ae1bddd5eefeeaa273dc": { + "address": "0x50bcbc40306230713239ae1bddd5eefeeaa273dc", + "symbol": "ASIA", + "decimals": 18, + "name": "ASIA", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x50bcbc40306230713239ae1bddd5eefeeaa273dc.png", + "aggregators": ["CoinGecko", "LiFi", "Socket", "Rubic", "Rango"], + "occurrences": 5 + }, + "0x42f6bdcfd82547e89f1069bf375aa60e6c6c063d": { + "address": "0x42f6bdcfd82547e89f1069bf375aa60e6c6c063d", + "symbol": "CIV", + "decimals": 18, + "name": "Civilization", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x42f6bdcfd82547e89f1069bf375aa60e6c6c063d.png", + "aggregators": ["CoinGecko", "LiFi", "Socket", "Rubic", "Rango"], + "occurrences": 5 + }, + "0x6b021b3f68491974be6d4009fee61a4e3c708fd6": { + "address": "0x6b021b3f68491974be6d4009fee61a4e3c708fd6", + "symbol": "FUSE", + "decimals": 18, + "name": "Fuse", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x6b021b3f68491974be6d4009fee61a4e3c708fd6.png", + "aggregators": [ + "CoinGecko", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x4c9f66b2806538cf00ef596e09fb05bcb0d17dc8": { + "address": "0x4c9f66b2806538cf00ef596e09fb05bcb0d17dc8", + "symbol": "MNTO", + "decimals": 18, + "name": "Minato", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x4c9f66b2806538cf00ef596e09fb05bcb0d17dc8.png", + "aggregators": [ + "CoinGecko", + "LiFi", + "Socket", + "Rubic", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0xe613a914bbb433855378183c3ab13003285da40a": { + "address": "0xe613a914bbb433855378183c3ab13003285da40a", + "symbol": "B2M", + "decimals": 18, + "name": "Bit2Me", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0xe613a914bbb433855378183c3ab13003285da40a.png", + "aggregators": [ + "CoinGecko", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x0a3bb08b3a15a19b4de82f8acfc862606fb69a2d": { + "address": "0x0a3bb08b3a15a19b4de82f8acfc862606fb69a2d", + "symbol": "IUSD", + "decimals": 18, + "name": "iZUMi Bond USD", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x0a3bb08b3a15a19b4de82f8acfc862606fb69a2d.png", + "aggregators": [ + "CoinGecko", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x388d819724dd6d71760a38f00dc01d310d879771": { + "address": "0x388d819724dd6d71760a38f00dc01d310d879771", + "symbol": "JM", + "decimals": 8, + "name": "JustMoney", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x388d819724dd6d71760a38f00dc01d310d879771.png", + "aggregators": [ + "CoinGecko", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x564906ec1df8399f00e4ad32c0ecac0404a27a1c": { + "address": "0x564906ec1df8399f00e4ad32c0ecac0404a27a1c", + "symbol": "WALLET", + "decimals": 18, + "name": "Ambire Wallet", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x564906ec1df8399f00e4ad32c0ecac0404a27a1c.png", + "aggregators": [ + "CoinGecko", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0xe749ea14a2d18e361ed092ebefba64d77a8b4eac": { + "address": "0xe749ea14a2d18e361ed092ebefba64d77a8b4eac", + "symbol": "DGTX", + "decimals": 18, + "name": "Digitex", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0xe749ea14a2d18e361ed092ebefba64d77a8b4eac.png", + "aggregators": [ + "CoinGecko", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0xffb89d7637cf4860884ed48b57ae5562bf64e10f": { + "address": "0xffb89d7637cf4860884ed48b57ae5562bf64e10f", + "symbol": "PIKA", + "decimals": 18, + "name": "Pika", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0xffb89d7637cf4860884ed48b57ae5562bf64e10f.png", + "aggregators": [ + "CoinGecko", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x38022a157b95c52d43abcac9bd09f028a1079105": { + "address": "0x38022a157b95c52d43abcac9bd09f028a1079105", + "symbol": "DOGEVERSE", + "decimals": 18, + "name": "DogeVerse", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x38022a157b95c52d43abcac9bd09f028a1079105.png", + "aggregators": [ + "CoinGecko", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0xfa78cba4ebbf8fe28b4fc1468948f16fda2752b3": { + "address": "0xfa78cba4ebbf8fe28b4fc1468948f16fda2752b3", + "symbol": "AI", + "decimals": 18, + "name": "Flourishing AI", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0xfa78cba4ebbf8fe28b4fc1468948f16fda2752b3.png", + "aggregators": [ + "CoinGecko", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x306ee01a6ba3b4a8e993fa2c1adc7ea24462000c": { + "address": "0x306ee01a6ba3b4a8e993fa2c1adc7ea24462000c", + "symbol": "NPT", + "decimals": 18, + "name": "Neopin", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x306ee01a6ba3b4a8e993fa2c1adc7ea24462000c.png", + "aggregators": [ + "CoinGecko", + "LiFi", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0xec38621e72d86775a89c7422746de1f52bba5320": { + "address": "0xec38621e72d86775a89c7422746de1f52bba5320", + "symbol": "DUSD", + "decimals": 18, + "name": "Davos.xyz USD", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0xec38621e72d86775a89c7422746de1f52bba5320.png", + "aggregators": [ + "QuickSwap", + "1inch", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x958d208cdf087843e9ad98d23823d32e17d723a1": { + "address": "0x958d208cdf087843e9ad98d23823d32e17d723a1", + "symbol": "DQUICK", + "decimals": 18, + "name": "Dragon's Quick", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x958d208cdf087843e9ad98d23823d32e17d723a1.png", + "aggregators": [ + "QuickSwap", + "LiFi", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x59e9261255644c411afdd00bd89162d09d862e38": { + "address": "0x59e9261255644c411afdd00bd89162d09d862e38", + "symbol": "ETHA", + "decimals": 18, + "name": "ETHA", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x59e9261255644c411afdd00bd89162d09d862e38.png", + "aggregators": ["QuickSwap", "LiFi", "Socket", "Rubic", "Rango"], + "occurrences": 5 + }, + "0x5736df66b4f8401d639ffa915a46b4c548c09ac1": { + "address": "0x5736df66b4f8401d639ffa915a46b4c548c09ac1", + "symbol": "RETH", + "decimals": 18, + "name": "StaFi (PoS)", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x5736df66b4f8401d639ffa915a46b4c548c09ac1.png", + "aggregators": ["QuickSwap", "LiFi", "Socket", "Rubic", "Rango"], + "occurrences": 5 + }, + "0x689f8e5913c158ffb5ac5aeb83b3c875f5d20309": { + "address": "0x689f8e5913c158ffb5ac5aeb83b3c875f5d20309", + "symbol": "SNK", + "decimals": 18, + "name": "Snook", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x689f8e5913c158ffb5ac5aeb83b3c875f5d20309.png", + "aggregators": [ + "QuickSwap", + "LiFi", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x90f3edc7d5298918f7bb51694134b07356f7d0c7": { + "address": "0x90f3edc7d5298918f7bb51694134b07356f7d0c7", + "symbol": "DDAO", + "decimals": 18, + "name": "DDAO Hunters", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x90f3edc7d5298918f7bb51694134b07356f7d0c7.png", + "aggregators": ["1inch", "LiFi", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 5 + }, + "0xa94880d3a4b39746e90cdb57f8de3732c984de14": { + "address": "0xa94880d3a4b39746e90cdb57f8de3732c984de14", + "symbol": "UCASH", + "decimals": 8, + "name": "U.CASH", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0xa94880d3a4b39746e90cdb57f8de3732c984de14.png", + "aggregators": ["LiFi", "Socket", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 5 + }, + "0x84342e932797fc62814189f01f0fb05f52519708": { + "address": "0x84342e932797fc62814189f01f0fb05f52519708", + "symbol": "NHT", + "decimals": 18, + "name": "Neighbourhoods", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x84342e932797fc62814189f01f0fb05f52519708.png", + "aggregators": ["LiFi", "Socket", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 5 + }, + "0x0000206329b97db379d5e1bf586bbdb969c63274": { + "address": "0x0000206329b97db379d5e1bf586bbdb969c63274", + "symbol": "USDA", + "decimals": 18, + "name": "USDA", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x0000206329b97db379d5e1bf586bbdb969c63274.png", + "aggregators": ["LiFi", "Socket", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 5 + }, + "0xa041544fe2be56cce31ebb69102b965e06aace80": { + "address": "0xa041544fe2be56cce31ebb69102b965e06aace80", + "symbol": "BOND", + "decimals": 18, + "name": "BarnBridge Governance Token", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0xa041544fe2be56cce31ebb69102b965e06aace80.png", + "aggregators": ["LiFi", "Socket", "Rubic", "Rango", "SushiSwap"], + "occurrences": 5 + }, + "0x6002410dda2fb88b4d0dc3c1d562f7761191ea80": { + "address": "0x6002410dda2fb88b4d0dc3c1d562f7761191ea80", + "symbol": "WORK", + "decimals": 18, + "name": "The Employment Commons Work Token", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x6002410dda2fb88b4d0dc3c1d562f7761191ea80.png", + "aggregators": [ + "LiFi", + "Rubic", + "Rango", + "Sonarwatch", + "SushiSwap" + ], + "occurrences": 5 + }, + "0x23fe1ee2f536427b7e8ac02fb037a7f867037fe8": { + "address": "0x23fe1ee2f536427b7e8ac02fb037a7f867037fe8", + "symbol": "TORN", + "decimals": 18, + "name": "Tornado Cash", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x23fe1ee2f536427b7e8ac02fb037a7f867037fe8.png", + "aggregators": ["LiFi", "Socket", "Rubic", "Rango", "SushiSwap"], + "occurrences": 5 + }, + "0xeaf631ac57f3cdddd261770dd47f85066131a156": { + "address": "0xeaf631ac57f3cdddd261770dd47f85066131a156", + "symbol": "EQZ", + "decimals": 18, + "name": "Equalizer", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0xeaf631ac57f3cdddd261770dd47f85066131a156.png", + "aggregators": ["LiFi", "Socket", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 5 + }, + "0x7c603c3c0c97a565cf202c94ab5298bf8510f7dc": { + "address": "0x7c603c3c0c97a565cf202c94ab5298bf8510f7dc", + "symbol": "OATH", + "decimals": 18, + "name": "OATH", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x7c603c3c0c97a565cf202c94ab5298bf8510f7dc.png", + "aggregators": ["LiFi", "Rubic", "Squid", "Rango", "Sonarwatch"], + "occurrences": 5 + }, + "0xa6da8c8999c094432c77e7d318951d34019af24b": { + "address": "0xa6da8c8999c094432c77e7d318951d34019af24b", + "symbol": "TXAU", + "decimals": 18, + "name": "tGOLD", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0xa6da8c8999c094432c77e7d318951d34019af24b.png", + "aggregators": ["LiFi", "Socket", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 5 + }, + "0x3e121107f6f22da4911079845a470757af4e1a1b": { + "address": "0x3e121107f6f22da4911079845a470757af4e1a1b", + "symbol": "POLYFXS", + "decimals": 18, + "name": "Poly Frax Share", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x3e121107f6f22da4911079845a470757af4e1a1b.png", + "aggregators": ["LiFi", "Socket", "Rubic", "Rango", "SushiSwap"], + "occurrences": 5 + }, + "0x1d607faa0a51518a7728580c238d912747e71f7a": { + "address": "0x1d607faa0a51518a7728580c238d912747e71f7a", + "symbol": "DATA", + "decimals": 18, + "name": "DATA Economy Index", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x1d607faa0a51518a7728580c238d912747e71f7a.png", + "aggregators": ["LiFi", "Socket", "Rubic", "Rango", "SushiSwap"], + "occurrences": 5 + }, + "0x8626264b6a1b4e920905efd381002aba52ea0eea": { + "address": "0x8626264b6a1b4e920905efd381002aba52ea0eea", + "symbol": "BLKC", + "decimals": 8, + "name": "BlackHat Coin", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x8626264b6a1b4e920905efd381002aba52ea0eea.png", + "aggregators": ["LiFi", "Socket", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 5 + }, + "0xa8fcee762642f156b5d757b6fabc36e06b6d4a1a": { + "address": "0xa8fcee762642f156b5d757b6fabc36e06b6d4a1a", + "symbol": "ALN", + "decimals": 18, + "name": "Aluna", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0xa8fcee762642f156b5d757b6fabc36e06b6d4a1a.png", + "aggregators": ["LiFi", "Socket", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 5 + }, + "0x92c59f1cc9a322670cca29594e4d994d48bdfd36": { + "address": "0x92c59f1cc9a322670cca29594e4d994d48bdfd36", + "symbol": "PHNX", + "decimals": 18, + "name": "PhoenixDAO", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x92c59f1cc9a322670cca29594e4d994d48bdfd36.png", + "aggregators": ["LiFi", "Socket", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 5 + }, + "0x4a7b9a4589a88a06ca29f99556db08234078d727": { + "address": "0x4a7b9a4589a88a06ca29f99556db08234078d727", + "symbol": "GEM", + "decimals": 18, + "name": "NFTmall", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x4a7b9a4589a88a06ca29f99556db08234078d727.png", + "aggregators": ["LiFi", "Socket", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 5 + }, + "0x6811079e3c63ed96eb005384d7e7ec8810e3d521": { + "address": "0x6811079e3c63ed96eb005384d7e7ec8810e3d521", + "symbol": "XSUSHI", + "decimals": 18, + "name": "SushiBar", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x6811079e3c63ed96eb005384d7e7ec8810e3d521.png", + "aggregators": ["LiFi", "Socket", "Rubic", "Rango", "SushiSwap"], + "occurrences": 5 + }, + "0x3f717919def69f81d17b80839bf8af35697ccbfa": { + "address": "0x3f717919def69f81d17b80839bf8af35697ccbfa", + "symbol": "DTX", + "decimals": 18, + "name": "Data Exchange Token", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x3f717919def69f81d17b80839bf8af35697ccbfa.png", + "aggregators": ["LiFi", "Socket", "Rubic", "Rango", "SushiSwap"], + "occurrences": 5 + }, + "0x4df071fb2d145be595b767f997c91818694a6ce1": { + "address": "0x4df071fb2d145be595b767f997c91818694a6ce1", + "symbol": "MRCH", + "decimals": 18, + "name": "MerchDAO", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x4df071fb2d145be595b767f997c91818694a6ce1.png", + "aggregators": ["LiFi", "Socket", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 5 + }, + "0x13f76eab3ec634c5479cbb0fb705e867b3e469de": { + "address": "0x13f76eab3ec634c5479cbb0fb705e867b3e469de", + "symbol": "TRDM", + "decimals": 18, + "name": "TradeMaster.ninja", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x13f76eab3ec634c5479cbb0fb705e867b3e469de.png", + "aggregators": ["LiFi", "Socket", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 5 + }, + "0x08be454de533509e8832b257116c5506e55b0b64": { + "address": "0x08be454de533509e8832b257116c5506e55b0b64", + "symbol": "STND", + "decimals": 18, + "name": "Standard", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x08be454de533509e8832b257116c5506e55b0b64.png", + "aggregators": ["LiFi", "Socket", "Rubic", "Rango", "SushiSwap"], + "occurrences": 5 + }, + "0xb382c1cfa622795a534e5bd56fac93d59bac8b0d": { + "address": "0xb382c1cfa622795a534e5bd56fac93d59bac8b0d", + "symbol": "KIRO", + "decimals": 18, + "name": "KIRO", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0xb382c1cfa622795a534e5bd56fac93d59bac8b0d.png", + "aggregators": ["LiFi", "Socket", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 5 + }, + "0x66d7fdcc7403f18cae9b0e2e8385649d2acbc12a": { + "address": "0x66d7fdcc7403f18cae9b0e2e8385649d2acbc12a", + "symbol": "ETH2X-FLI", + "decimals": 18, + "name": "ETH 2x Flexible Leverage Index PoS", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x66d7fdcc7403f18cae9b0e2e8385649d2acbc12a.png", + "aggregators": ["LiFi", "Socket", "Rubic", "Rango", "SushiSwap"], + "occurrences": 5 + }, + "0xda6f726e2088f129d3ecb2257206adf7d8537ba5": { + "address": "0xda6f726e2088f129d3ecb2257206adf7d8537ba5", + "symbol": "NCR", + "decimals": 18, + "name": "Neos Credits", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0xda6f726e2088f129d3ecb2257206adf7d8537ba5.png", + "aggregators": ["LiFi", "Socket", "Rubic", "Rango", "SushiSwap"], + "occurrences": 5 + }, + "0x54cfe73f2c7d0c4b62ab869b473f5512dc0944d2": { + "address": "0x54cfe73f2c7d0c4b62ab869b473f5512dc0944d2", + "symbol": "BZRX", + "decimals": 18, + "name": "BZRX Token", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x54cfe73f2c7d0c4b62ab869b473f5512dc0944d2.png", + "aggregators": ["LiFi", "Socket", "Rubic", "Rango", "SushiSwap"], + "occurrences": 5 + }, + "0xaf24765f631c8830b5528b57002241ee7eef1c14": { + "address": "0xaf24765f631c8830b5528b57002241ee7eef1c14", + "symbol": "IOI", + "decimals": 6, + "name": "IOI Token", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0xaf24765f631c8830b5528b57002241ee7eef1c14.png", + "aggregators": ["LiFi", "Socket", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 5 + }, + "0x5eb8d998371971d01954205c7afe90a7af6a95ac": { + "address": "0x5eb8d998371971d01954205c7afe90a7af6a95ac", + "symbol": "AUDIO", + "decimals": 18, + "name": "Audius", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x5eb8d998371971d01954205c7afe90a7af6a95ac.png", + "aggregators": ["LiFi", "Socket", "Rubic", "Rango", "SushiSwap"], + "occurrences": 5 + }, + "0x4b54bc363f5f9c6e0fcd82eac6919ae213464cc6": { + "address": "0x4b54bc363f5f9c6e0fcd82eac6919ae213464cc6", + "symbol": "BTC2X-FLI", + "decimals": 18, + "name": "BTC 2x Flexible Leverage Index", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x4b54bc363f5f9c6e0fcd82eac6919ae213464cc6.png", + "aggregators": ["LiFi", "Socket", "Rubic", "Rango", "SushiSwap"], + "occurrences": 5 + }, + "0x91ca694d2b293f70fe722fba7d8a5259188959c3": { + "address": "0x91ca694d2b293f70fe722fba7d8a5259188959c3", + "symbol": "MFT", + "decimals": 18, + "name": "Hifi Finance", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x91ca694d2b293f70fe722fba7d8a5259188959c3.png", + "aggregators": ["LiFi", "Socket", "Rubic", "Rango", "SushiSwap"], + "occurrences": 5 + }, + "0xa380c0b01ad15c8cf6b46890bddab5f0868e87f3": { + "address": "0xa380c0b01ad15c8cf6b46890bddab5f0868e87f3", + "symbol": "USDV", + "decimals": 6, + "name": "Vyvo US Dollar", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0xa380c0b01ad15c8cf6b46890bddab5f0868e87f3.png", + "aggregators": ["LiFi", "Socket", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 5 + }, + "0x8de5b80a0c1b02fe4976851d030b36122dbb8624": { + "address": "0x8de5b80a0c1b02fe4976851d030b36122dbb8624", + "symbol": "VANRY", + "decimals": 18, + "name": "VANRY", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x8de5b80a0c1b02fe4976851d030b36122dbb8624.png", + "aggregators": ["CoinGecko", "Socket", "Rubic", "Rango"], + "occurrences": 4 + }, + "0x198f1d316aad1c0bfd36a79bd1a8e9dba92daa18": { + "address": "0x198f1d316aad1c0bfd36a79bd1a8e9dba92daa18", + "symbol": "DECATS", + "decimals": 18, + "name": "DeCats", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x198f1d316aad1c0bfd36a79bd1a8e9dba92daa18.png", + "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0xab9cb20a28f97e189ca0b666b8087803ad636b3c": { + "address": "0xab9cb20a28f97e189ca0b666b8087803ad636b3c", + "symbol": "MDUS", + "decimals": 18, + "name": "MEDIEUS", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0xab9cb20a28f97e189ca0b666b8087803ad636b3c.png", + "aggregators": ["CoinGecko", "LiFi", "Rubic", "Sonarwatch"], + "occurrences": 4 + }, + "0xdcff29b7bd211aaef6e4a3989e4d3f732cf5b4b6": { + "address": "0xdcff29b7bd211aaef6e4a3989e4d3f732cf5b4b6", + "symbol": "$MART", + "decimals": 18, + "name": "ArtMeta", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0xdcff29b7bd211aaef6e4a3989e4d3f732cf5b4b6.png", + "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0x8d60fb5886497851aac8c5195006ecf07647ba0d": { + "address": "0x8d60fb5886497851aac8c5195006ecf07647ba0d", + "symbol": "W3GG", + "decimals": 18, + "name": "W3GG", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x8d60fb5886497851aac8c5195006ecf07647ba0d.png", + "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0x5f2f8818002dc64753daedf4a6cb2ccb757cd220": { + "address": "0x5f2f8818002dc64753daedf4a6cb2ccb757cd220", + "symbol": "WSDM", + "decimals": 6, + "name": "WSDM", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x5f2f8818002dc64753daedf4a6cb2ccb757cd220.png", + "aggregators": ["CoinGecko", "LiFi", "Rubic", "Rango"], + "occurrences": 4 + }, + "0xd3144ff5f388d36c0a445686c08540296d8b209b": { + "address": "0xd3144ff5f388d36c0a445686c08540296d8b209b", + "symbol": "WWD", + "decimals": 18, + "name": "WolfWorksDAO", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0xd3144ff5f388d36c0a445686c08540296d8b209b.png", + "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0x7abe9edf5c544a04da83e9110cf46dbc4759170c": { + "address": "0x7abe9edf5c544a04da83e9110cf46dbc4759170c", + "symbol": "WPAY", + "decimals": 18, + "name": "WPAY", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x7abe9edf5c544a04da83e9110cf46dbc4759170c.png", + "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0x972999c58bbce63a2e398d4ed3bde414b8349eb3": { + "address": "0x972999c58bbce63a2e398d4ed3bde414b8349eb3", + "symbol": "PRPS", + "decimals": 18, + "name": "Purpose", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x972999c58bbce63a2e398d4ed3bde414b8349eb3.png", + "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0x8349314651ede274f8c5fef01aa65ff8da75e57c": { + "address": "0x8349314651ede274f8c5fef01aa65ff8da75e57c", + "symbol": "GGT", + "decimals": 8, + "name": "Go Game Token", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x8349314651ede274f8c5fef01aa65ff8da75e57c.png", + "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0x14e5386f47466a463f85d151653e1736c0c50fc3": { + "address": "0x14e5386f47466a463f85d151653e1736c0c50fc3", + "symbol": "RUM", + "decimals": 18, + "name": "Arrland RUM", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x14e5386f47466a463f85d151653e1736c0c50fc3.png", + "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0xe4feab21b42919c5c960ed2b4bdffc521e26881f": { + "address": "0xe4feab21b42919c5c960ed2b4bdffc521e26881f", + "symbol": "MUT", + "decimals": 18, + "name": "MUT", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0xe4feab21b42919c5c960ed2b4bdffc521e26881f.png", + "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0xfca466f2fa8e667a517c9c6cfa99cf985be5d9b1": { + "address": "0xfca466f2fa8e667a517c9c6cfa99cf985be5d9b1", + "symbol": "SPEPE", + "decimals": 18, + "name": "Saiyan PEPE", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0xfca466f2fa8e667a517c9c6cfa99cf985be5d9b1.png", + "aggregators": ["QuickSwap", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0x78445485a8d5b3be765e3027bc336e3c272a23c9": { + "address": "0x78445485a8d5b3be765e3027bc336e3c272a23c9", + "symbol": "UBU", + "decimals": 18, + "name": "Africarare", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x78445485a8d5b3be765e3027bc336e3c272a23c9.png", + "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0xb58458c52b6511dc723d7d6f3be8c36d7383b4a8": { + "address": "0xb58458c52b6511dc723d7d6f3be8c36d7383b4a8", + "symbol": "FANX", + "decimals": 18, + "name": "FrontFanz", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0xb58458c52b6511dc723d7d6f3be8c36d7383b4a8.png", + "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0x2f11eeee0bf21e7661a22dbbbb9068f4ad191b86": { + "address": "0x2f11eeee0bf21e7661a22dbbbb9068f4ad191b86", + "symbol": "BNIU", + "decimals": 18, + "name": "Backed NIU Technologies", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x2f11eeee0bf21e7661a22dbbbb9068f4ad191b86.png", + "aggregators": ["CoinGecko", "LiFi", "Rubic", "Sonarwatch"], + "occurrences": 4 + }, + "0xac0f66379a6d7801d7726d5a943356a172549adb": { + "address": "0xac0f66379a6d7801d7726d5a943356a172549adb", + "symbol": "GEOD", + "decimals": 18, + "name": "Geodnet", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0xac0f66379a6d7801d7726d5a943356a172549adb.png", + "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0x0d0b8488222f7f83b23e365320a4021b12ead608": { + "address": "0x0d0b8488222f7f83b23e365320a4021b12ead608", + "symbol": "NXTT", + "decimals": 18, + "name": "Next Earth", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x0d0b8488222f7f83b23e365320a4021b12ead608.png", + "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0x552f4d98f338fbbd3175ddf38ce1260f403bbba2": { + "address": "0x552f4d98f338fbbd3175ddf38ce1260f403bbba2", + "symbol": "MINX", + "decimals": 18, + "name": "Modern Innovation Network Token", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x552f4d98f338fbbd3175ddf38ce1260f403bbba2.png", + "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0xd3f07ea86ddf7baebefd49731d7bbd207fedc53b": { + "address": "0xd3f07ea86ddf7baebefd49731d7bbd207fedc53b", + "symbol": "NDEFI", + "decimals": 18, + "name": "Polly DeFi Nest", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0xd3f07ea86ddf7baebefd49731d7bbd207fedc53b.png", + "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0x0184316f58b9a44acdd3e683257259dc0cf2202a": { + "address": "0x0184316f58b9a44acdd3e683257259dc0cf2202a", + "symbol": "POLYGOLD", + "decimals": 18, + "name": "PolyGold", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x0184316f58b9a44acdd3e683257259dc0cf2202a.png", + "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0x9a4eb698e5de3d3df0a68f681789072de1e50222": { + "address": "0x9a4eb698e5de3d3df0a68f681789072de1e50222", + "symbol": "FID", + "decimals": 18, + "name": "Fidira", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x9a4eb698e5de3d3df0a68f681789072de1e50222.png", + "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0x4f800ba0dff2980c5006c6816f7aa3de63ce8087": { + "address": "0x4f800ba0dff2980c5006c6816f7aa3de63ce8087", + "symbol": "BRIL", + "decimals": 18, + "name": "Brilliant Crypto Token", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x4f800ba0dff2980c5006c6816f7aa3de63ce8087.png", + "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0x40379a439d4f6795b6fc9aa5687db461677a2dba": { + "address": "0x40379a439d4f6795b6fc9aa5687db461677a2dba", + "symbol": "USDR", + "decimals": 9, + "name": "Real USD", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x40379a439d4f6795b6fc9aa5687db461677a2dba.png", + "aggregators": ["CoinGecko", "LiFi", "Rubic", "Rango"], + "occurrences": 4 + }, + "0x4550003152f12014558e5ce025707e4dd841100f": { + "address": "0x4550003152f12014558e5ce025707e4dd841100f", + "symbol": "KZEN", + "decimals": 18, + "name": "Kaizen.Finance", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x4550003152f12014558e5ce025707e4dd841100f.png", + "aggregators": ["CoinGecko", "LiFi", "Rubic", "Sonarwatch"], + "occurrences": 4 + }, + "0x7e7737c40878e720b32e7bc9cd096259f876d69f": { + "address": "0x7e7737c40878e720b32e7bc9cd096259f876d69f", + "symbol": "CATHEON", + "decimals": 9, + "name": "Catheon Gaming", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x7e7737c40878e720b32e7bc9cd096259f876d69f.png", + "aggregators": ["QuickSwap", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0x03f61137bfb86be07394f0fd07a33984020f96d8": { + "address": "0x03f61137bfb86be07394f0fd07a33984020f96d8", + "symbol": "XPND", + "decimals": 18, + "name": "Xpendium", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x03f61137bfb86be07394f0fd07a33984020f96d8.png", + "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0x262b8aa7542004f023b0eb02bc6b96350a02b728": { + "address": "0x262b8aa7542004f023b0eb02bc6b96350a02b728", + "symbol": "SWAY", + "decimals": 18, + "name": "Sway Social", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x262b8aa7542004f023b0eb02bc6b96350a02b728.png", + "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0xee5bb31fdf28b5d64f5a5605085cc4e3649aa624": { + "address": "0xee5bb31fdf28b5d64f5a5605085cc4e3649aa624", + "symbol": "WBS", + "decimals": 18, + "name": "Websea", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0xee5bb31fdf28b5d64f5a5605085cc4e3649aa624.png", + "aggregators": ["CoinGecko", "LiFi", "Rubic", "Sonarwatch"], + "occurrences": 4 + }, + "0xf28164a485b0b2c90639e47b0f377b4a438a16b1": { + "address": "0xf28164a485b0b2c90639e47b0f377b4a438a16b1", + "symbol": "DQUICK", + "decimals": 18, + "name": "Dragon's Quick", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0xf28164a485b0b2c90639e47b0f377b4a438a16b1.png", + "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0x47dae46d31f31f84336ac120b15efda261d484fb": { + "address": "0x47dae46d31f31f84336ac120b15efda261d484fb", + "symbol": "BUND", + "decimals": 18, + "name": "Bund V2", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x47dae46d31f31f84336ac120b15efda261d484fb.png", + "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0x91f3b9366801c1fca6184c3bd99d5ab0c43a9033": { + "address": "0x91f3b9366801c1fca6184c3bd99d5ab0c43a9033", + "symbol": "ICNX", + "decimals": 18, + "name": "Icon.X World", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x91f3b9366801c1fca6184c3bd99d5ab0c43a9033.png", + "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0xaa3717090cddc9b227e49d0d84a28ac0a996e6ff": { + "address": "0xaa3717090cddc9b227e49d0d84a28ac0a996e6ff", + "symbol": "ASK", + "decimals": 18, + "name": "Permission Coin", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0xaa3717090cddc9b227e49d0d84a28ac0a996e6ff.png", + "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0x3d2bd0e15829aa5c362a4144fdf4a1112fa29b5c": { + "address": "0x3d2bd0e15829aa5c362a4144fdf4a1112fa29b5c", + "symbol": "BONSAI", + "decimals": 18, + "name": "Bonsai Token", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x3d2bd0e15829aa5c362a4144fdf4a1112fa29b5c.png", + "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0xe238ecb42c424e877652ad82d8a939183a04c35f": { + "address": "0xe238ecb42c424e877652ad82d8a939183a04c35f", + "symbol": "WIFI", + "decimals": 18, + "name": "WiFi Map", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0xe238ecb42c424e877652ad82d8a939183a04c35f.png", + "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0x33b6d77c607ea499ab5db7e2201c5a516a78a5db": { + "address": "0x33b6d77c607ea499ab5db7e2201c5a516a78a5db", + "symbol": "AIMX", + "decimals": 18, + "name": "AIMX", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x33b6d77c607ea499ab5db7e2201c5a516a78a5db.png", + "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0x483dd3425278c1f79f377f1034d9d2cae55648b6": { + "address": "0x483dd3425278c1f79f377f1034d9d2cae55648b6", + "symbol": "CROWD", + "decimals": 18, + "name": "CrowdSwap", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x483dd3425278c1f79f377f1034d9d2cae55648b6.png", + "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0x1c15926ea330c394d891fd88f62d37ea6af953c3": { + "address": "0x1c15926ea330c394d891fd88f62d37ea6af953c3", + "symbol": "AFFI", + "decimals": 18, + "name": "Affi Network", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x1c15926ea330c394d891fd88f62d37ea6af953c3.png", + "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0x5f0197ba06860dac7e31258bdf749f92b6a636d4": { + "address": "0x5f0197ba06860dac7e31258bdf749f92b6a636d4", + "symbol": "1FLR", + "decimals": 18, + "name": "Flare Token", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x5f0197ba06860dac7e31258bdf749f92b6a636d4.png", + "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0x13748d548d95d78a3c83fe3f32604b4796cffa23": { + "address": "0x13748d548d95d78a3c83fe3f32604b4796cffa23", + "symbol": "KOGECOIN", + "decimals": 9, + "name": "KogeCoin", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x13748d548d95d78a3c83fe3f32604b4796cffa23.png", + "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0x56633733fc8baf9f730ad2b6b9956ae22c6d4148": { + "address": "0x56633733fc8baf9f730ad2b6b9956ae22c6d4148", + "symbol": "COLLECT", + "decimals": 18, + "name": "CoinCollect", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x56633733fc8baf9f730ad2b6b9956ae22c6d4148.png", + "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0x8b78927048de67b9e8c8f834359f15c3822ed871": { + "address": "0x8b78927048de67b9e8c8f834359f15c3822ed871", + "symbol": "LOE", + "decimals": 18, + "name": "Legends of Elysium", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x8b78927048de67b9e8c8f834359f15c3822ed871.png", + "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0x683565196c3eab450003c964d4bad1fd3068d4cc": { + "address": "0x683565196c3eab450003c964d4bad1fd3068d4cc", + "symbol": "VDA", + "decimals": 18, + "name": "Verida", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x683565196c3eab450003c964d4bad1fd3068d4cc.png", + "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0x0e2c818fea38e7df50410f772b7d59af20589a62": { + "address": "0x0e2c818fea38e7df50410f772b7d59af20589a62", + "symbol": "DOM", + "decimals": 9, + "name": "Dominium", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x0e2c818fea38e7df50410f772b7d59af20589a62.png", + "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0x0bd49815ea8e2682220bcb41524c0dd10ba71d41": { + "address": "0x0bd49815ea8e2682220bcb41524c0dd10ba71d41", + "symbol": "PYM", + "decimals": 18, + "name": "PYM", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x0bd49815ea8e2682220bcb41524c0dd10ba71d41.png", + "aggregators": ["CoinGecko", "LiFi", "Rubic", "Rango"], + "occurrences": 4 + }, + "0x53df32548214f51821cf1fe4368109ac5ddea1ff": { + "address": "0x53df32548214f51821cf1fe4368109ac5ddea1ff", + "symbol": "$SPONGE", + "decimals": 18, + "name": "Sponge", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x53df32548214f51821cf1fe4368109ac5ddea1ff.png", + "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0xadb6d62e142a2f911fb3c9ca1c1d0fe5d9437252": { + "address": "0xadb6d62e142a2f911fb3c9ca1c1d0fe5d9437252", + "symbol": "LAI", + "decimals": 18, + "name": "LOCKON Active Index", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0xadb6d62e142a2f911fb3c9ca1c1d0fe5d9437252.png", + "aggregators": ["CoinGecko", "LiFi", "Rubic", "Sonarwatch"], + "occurrences": 4 + }, + "0x87d6f8edeccbcca766d2880d19b2c3777d322c22": { + "address": "0x87d6f8edeccbcca766d2880d19b2c3777d322c22", + "symbol": "MPT", + "decimals": 18, + "name": "Miracle Play", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x87d6f8edeccbcca766d2880d19b2c3777d322c22.png", + "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0x202655af326de310491cb54f120e02ee0da92b55": { + "address": "0x202655af326de310491cb54f120e02ee0da92b55", + "symbol": "CRETA", + "decimals": 18, + "name": "Creta World", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x202655af326de310491cb54f120e02ee0da92b55.png", + "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0x95093f8348c6678df4812c008248d88cad344069": { + "address": "0x95093f8348c6678df4812c008248d88cad344069", + "symbol": "WAR", + "decimals": 18, + "name": "War Legends", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x95093f8348c6678df4812c008248d88cad344069.png", + "aggregators": ["CoinGecko", "Socket", "Rubic", "Sonarwatch"], + "occurrences": 4 + }, + "0x13646e0e2d768d31b75d1a1e375e3e17f18567f2": { + "address": "0x13646e0e2d768d31b75d1a1e375e3e17f18567f2", + "symbol": "NWS", + "decimals": 18, + "name": "Nodewaves", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x13646e0e2d768d31b75d1a1e375e3e17f18567f2.png", + "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0xfb7f8a2c0526d01bfb00192781b7a7761841b16c": { + "address": "0xfb7f8a2c0526d01bfb00192781b7a7761841b16c", + "symbol": "LRT", + "decimals": 18, + "name": "LandRocker", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0xfb7f8a2c0526d01bfb00192781b7a7761841b16c.png", + "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0x9dbfc1cbf7a1e711503a29b4b5f9130ebeccac96": { + "address": "0x9dbfc1cbf7a1e711503a29b4b5f9130ebeccac96", + "symbol": "UPO", + "decimals": 18, + "name": "UpOnly", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x9dbfc1cbf7a1e711503a29b4b5f9130ebeccac96.png", + "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0xaa404804ba583c025fa64c9a276a6127ceb355c6": { + "address": "0xaa404804ba583c025fa64c9a276a6127ceb355c6", + "symbol": "CPR", + "decimals": 2, + "name": "CIPHER", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0xaa404804ba583c025fa64c9a276a6127ceb355c6.png", + "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0xffbf21632d4ad2b1f85031b418a8f69638118364": { + "address": "0xffbf21632d4ad2b1f85031b418a8f69638118364", + "symbol": "FAST", + "decimals": 24, + "name": "Edge Video AI", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0xffbf21632d4ad2b1f85031b418a8f69638118364.png", + "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0xc708d6f2153933daa50b2d0758955be0a93a8fec": { + "address": "0xc708d6f2153933daa50b2d0758955be0a93a8fec", + "symbol": "FXVERSE", + "decimals": 18, + "name": "FXVERSE", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0xc708d6f2153933daa50b2d0758955be0a93a8fec.png", + "aggregators": ["CoinGecko", "Socket", "Rubic", "Rango"], + "occurrences": 4 + }, + "0x903d5990119bc799423e9c25c56518ba7dd19474": { + "address": "0x903d5990119bc799423e9c25c56518ba7dd19474", + "symbol": "SPKCC", + "decimals": 5, + "name": "SPKCC", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x903d5990119bc799423e9c25c56518ba7dd19474.png", + "aggregators": ["CoinGecko", "LiFi", "Rubic", "Rango"], + "occurrences": 4 + }, + "0x7790dd69aa10ed3f1271e41cd7222d2a7d2d5948": { + "address": "0x7790dd69aa10ed3f1271e41cd7222d2a7d2d5948", + "symbol": "PRL", + "decimals": 18, + "name": "Parallel Governance Token", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x7790dd69aa10ed3f1271e41cd7222d2a7d2d5948.png", + "aggregators": ["CoinGecko", "LiFi", "Rubic", "Rango"], + "occurrences": 4 + }, + "0x99f70a0e1786402a6796c6b0aa997ef340a5c6da": { + "address": "0x99f70a0e1786402a6796c6b0aa997ef340a5c6da", + "symbol": "EURSPKCC", + "decimals": 5, + "name": "Spiko Digital Assets Cash & Carry Fund - Euro Share Class", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x99f70a0e1786402a6796c6b0aa997ef340a5c6da.png", + "aggregators": ["CoinGecko", "LiFi", "Rubic", "Rango"], + "occurrences": 4 + }, + "0xa7e22972a19dd924afeedf3db28033b146801081": { + "address": "0xa7e22972a19dd924afeedf3db28033b146801081", + "symbol": "XAUM", + "decimals": 18, + "name": "Matrixdock Gold", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0xa7e22972a19dd924afeedf3db28033b146801081.png", + "aggregators": ["CoinGecko", "LiFi", "Rubic", "Rango"], + "occurrences": 4 + }, + "0xd24157aa1097486dc9d7cf094a7e15026e566b5d": { + "address": "0xd24157aa1097486dc9d7cf094a7e15026e566b5d", + "symbol": "TPRO", + "decimals": 18, + "name": "TPRO Network", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0xd24157aa1097486dc9d7cf094a7e15026e566b5d.png", + "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0x52d134c6db5889fad3542a09eaf7aa90c0fdf9e4": { + "address": "0x52d134c6db5889fad3542a09eaf7aa90c0fdf9e4", + "symbol": "BIBTA", + "decimals": 18, + "name": "Backed IBTA $ Treasury Bond 1-3yr", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x52d134c6db5889fad3542a09eaf7aa90c0fdf9e4.png", + "aggregators": ["CoinGecko", "LiFi", "Rubic", "Sonarwatch"], + "occurrences": 4 + }, + "0x0b6f3ea2814f3fff804ba5d5c237aebbc364fba9": { + "address": "0x0b6f3ea2814f3fff804ba5d5c237aebbc364fba9", + "symbol": "UNA", + "decimals": 18, + "name": "Unagi Token", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x0b6f3ea2814f3fff804ba5d5c237aebbc364fba9.png", + "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0x4867b60ad7c6adc98653f661f1aea31740986ba5": { + "address": "0x4867b60ad7c6adc98653f661f1aea31740986ba5", + "symbol": "MEAN", + "decimals": 6, + "name": "Mean DAO", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x4867b60ad7c6adc98653f661f1aea31740986ba5.png", + "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0x20c64dee8fda5269a78f2d5bdba861ca1d83df7a": { + "address": "0x20c64dee8fda5269a78f2d5bdba861ca1d83df7a", + "symbol": "BHIGH", + "decimals": 18, + "name": "Backed HIGH € High Yield Corp Bond", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x20c64dee8fda5269a78f2d5bdba861ca1d83df7a.png", + "aggregators": ["CoinGecko", "LiFi", "Rubic", "Sonarwatch"], + "occurrences": 4 + }, + "0xa5eb60ca85898f8b26e18ff7c7e43623ccba772c": { + "address": "0xa5eb60ca85898f8b26e18ff7c7e43623ccba772c", + "symbol": "COSMIC", + "decimals": 18, + "name": "CosmicSwap", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0xa5eb60ca85898f8b26e18ff7c7e43623ccba772c.png", + "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0x7cd017ca5ddb86861fa983a34b5f495c6f898c41": { + "address": "0x7cd017ca5ddb86861fa983a34b5f495c6f898c41", + "symbol": "WUSD", + "decimals": 18, + "name": "Worldwide USD", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x7cd017ca5ddb86861fa983a34b5f495c6f898c41.png", + "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0xc6920888988caceea7acca0c96f2d65b05ee22ba": { + "address": "0xc6920888988caceea7acca0c96f2d65b05ee22ba", + "symbol": "ECLD", + "decimals": 18, + "name": "Ethernity Cloud", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0xc6920888988caceea7acca0c96f2d65b05ee22ba.png", + "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0x36fe11b6d5c9421f68d235694fe192b35e803903": { + "address": "0x36fe11b6d5c9421f68d235694fe192b35e803903", + "symbol": "RWA", + "decimals": 18, + "name": "Xend Finance", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x36fe11b6d5c9421f68d235694fe192b35e803903.png", + "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0xea50f402653c41cadbafd1f788341db7b7f37816": { + "address": "0xea50f402653c41cadbafd1f788341db7b7f37816", + "symbol": "SGYD", + "decimals": 18, + "name": "sGYD", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0xea50f402653c41cadbafd1f788341db7b7f37816.png", + "aggregators": ["CoinGecko", "LiFi", "Rubic", "Sonarwatch"], + "occurrences": 4 + }, + "0xe58e8391ba17731c5671f9c6e00e420608dca10e": { + "address": "0xe58e8391ba17731c5671f9c6e00e420608dca10e", + "symbol": "GNFT", + "decimals": 18, + "name": "GNFT", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0xe58e8391ba17731c5671f9c6e00e420608dca10e.png", + "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0x949185d3be66775ea648f4a306740ea9eff9c567": { + "address": "0x949185d3be66775ea648f4a306740ea9eff9c567", + "symbol": "YEL", + "decimals": 18, + "name": "Yel.Finance", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x949185d3be66775ea648f4a306740ea9eff9c567.png", + "aggregators": ["CoinGecko", "LiFi", "Rubic", "Sonarwatch"], + "occurrences": 4 + }, + "0x524d524b4c9366be706d3a90dcf70076ca037ae3": { + "address": "0x524d524b4c9366be706d3a90dcf70076ca037ae3", + "symbol": "RMRK", + "decimals": 18, + "name": "RMRK", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x524d524b4c9366be706d3a90dcf70076ca037ae3.png", + "aggregators": ["CoinGecko", "LiFi", "Rubic", "Rango"], + "occurrences": 4 + }, + "0x6a3e7c3c6ef65ee26975b12293ca1aad7e1daed2": { + "address": "0x6a3e7c3c6ef65ee26975b12293ca1aad7e1daed2", + "symbol": "ALPHA", + "decimals": 18, + "name": "Aavegotchi ALPHA", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x6a3e7c3c6ef65ee26975b12293ca1aad7e1daed2.png", + "aggregators": ["QuickSwap", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0x403e967b044d4be25170310157cb1a4bf10bdd0f": { + "address": "0x403e967b044d4be25170310157cb1a4bf10bdd0f", + "symbol": "FUD", + "decimals": 18, + "name": "Aavegotchi FUD", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x403e967b044d4be25170310157cb1a4bf10bdd0f.png", + "aggregators": ["QuickSwap", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0x6f3cc27e17a0f2e52d8e7693ff0d892cea1854bf": { + "address": "0x6f3cc27e17a0f2e52d8e7693ff0d892cea1854bf", + "symbol": "GOO", + "decimals": 9, + "name": "Gooeys", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x6f3cc27e17a0f2e52d8e7693ff0d892cea1854bf.png", + "aggregators": ["QuickSwap", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0x123706cdd8e60324e610e9a2cc7012d0f45a5b8e": { + "address": "0x123706cdd8e60324e610e9a2cc7012d0f45a5b8e", + "symbol": "QUIDD", + "decimals": 18, + "name": "Quidd", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x123706cdd8e60324e610e9a2cc7012d0f45a5b8e.png", + "aggregators": ["QuickSwap", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0x6f8a06447ff6fcf75d803135a7de15ce88c1d4ec": { + "address": "0x6f8a06447ff6fcf75d803135a7de15ce88c1d4ec", + "symbol": "SHIB", + "decimals": 18, + "name": "SHIB", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x6f8a06447ff6fcf75d803135a7de15ce88c1d4ec.png", + "aggregators": ["QuickSwap", "Socket", "Rubic", "Rango"], + "occurrences": 4 + }, + "0x32934cb16da43fd661116468c1b225fc26cf9a8c": { + "address": "0x32934cb16da43fd661116468c1b225fc26cf9a8c", + "symbol": "SNE", + "decimals": 18, + "name": "StrongNode", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x32934cb16da43fd661116468c1b225fc26cf9a8c.png", + "aggregators": ["QuickSwap", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0x30de46509dbc3a491128f97be0aaf70dc7ff33cb": { + "address": "0x30de46509dbc3a491128f97be0aaf70dc7ff33cb", + "symbol": "XZAR", + "decimals": 18, + "name": "South African Tether (PoS)", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x30de46509dbc3a491128f97be0aaf70dc7ff33cb.png", + "aggregators": ["1inch", "LiFi", "Rubic", "Rango"], + "occurrences": 4 + }, + "0xd4945a3d0de9923035521687d4bf18cc9b0c7c2a": { + "address": "0xd4945a3d0de9923035521687d4bf18cc9b0c7c2a", + "symbol": "LUXY", + "decimals": 18, + "name": "LUXY", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0xd4945a3d0de9923035521687d4bf18cc9b0c7c2a.png", + "aggregators": ["1inch", "LiFi", "Rubic", "Rango"], + "occurrences": 4 + }, + "0x8bc3ec2e7973e64be582a90b08cadd13457160fe": { + "address": "0x8bc3ec2e7973e64be582a90b08cadd13457160fe", + "symbol": "SDG", + "decimals": 9, + "name": "ShadowGold", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x8bc3ec2e7973e64be582a90b08cadd13457160fe.png", + "aggregators": ["LiFi", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0x119fd89e56e3845b520644dcedf4a86cd0b66aa6": { + "address": "0x119fd89e56e3845b520644dcedf4a86cd0b66aa6", + "symbol": "NOVA", + "decimals": 18, + "name": "Nova DAO", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x119fd89e56e3845b520644dcedf4a86cd0b66aa6.png", + "aggregators": ["LiFi", "Socket", "Rubic", "Rango"], + "occurrences": 4 + }, + "0x527856315a4bcd2f428ea7fa05ea251f7e96a50a": { + "address": "0x527856315a4bcd2f428ea7fa05ea251f7e96a50a", + "symbol": "CDFI", + "decimals": 18, + "name": "CeDeFiAi", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x527856315a4bcd2f428ea7fa05ea251f7e96a50a.png", + "aggregators": ["LiFi", "Socket", "Rubic", "Rango"], + "occurrences": 4 + }, + "0xca5d8f8a8d49439357d3cf46ca2e720702f132b8": { + "address": "0xca5d8f8a8d49439357d3cf46ca2e720702f132b8", + "symbol": "GYD", + "decimals": 18, + "name": "Gyroscope GYD", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0xca5d8f8a8d49439357d3cf46ca2e720702f132b8.png", + "aggregators": ["LiFi", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0x60ed6acef3a96f8cdaf0c0d207bbafa66e751af2": { + "address": "0x60ed6acef3a96f8cdaf0c0d207bbafa66e751af2", + "symbol": "EP", + "decimals": 18, + "name": "Elemental Particles", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x60ed6acef3a96f8cdaf0c0d207bbafa66e751af2.png", + "aggregators": ["LiFi", "Rubic", "Rango", "SushiSwap"], + "occurrences": 4 + }, + "0xa0ead927e6c31646cf1d4cc721705c415e515bd4": { + "address": "0xa0ead927e6c31646cf1d4cc721705c415e515bd4", + "symbol": "TRIM", + "decimals": 18, + "name": "TRIMBEX", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0xa0ead927e6c31646cf1d4cc721705c415e515bd4.png", + "aggregators": ["LiFi", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0x00e8c0e92eb3ad88189e7125ec8825edc03ab265": { + "address": "0x00e8c0e92eb3ad88189e7125ec8825edc03ab265", + "symbol": "WUSDR", + "decimals": 9, + "name": "Wrapped USDR", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x00e8c0e92eb3ad88189e7125ec8825edc03ab265.png", + "aggregators": ["LiFi", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0x51707dc661630f8fd624b985fa6ef4f1d4d919db": { + "address": "0x51707dc661630f8fd624b985fa6ef4f1d4d919db", + "symbol": "UNV", + "decimals": 18, + "name": "Unvest", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x51707dc661630f8fd624b985fa6ef4f1d4d919db.png", + "aggregators": ["LiFi", "Rubic", "Squid", "Sonarwatch"], + "occurrences": 4 + }, + "0x632b8c4e95b2f8a9309417f8d990ab9c04c77369": { + "address": "0x632b8c4e95b2f8a9309417f8d990ab9c04c77369", + "symbol": "WET", + "decimals": 18, + "name": "Weble Ecosystem", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x632b8c4e95b2f8a9309417f8d990ab9c04c77369.png", + "aggregators": ["LiFi", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0x6d969cea201e427d2875724fd4e8044833fbc7f4": { + "address": "0x6d969cea201e427d2875724fd4e8044833fbc7f4", + "symbol": "PHBD", + "decimals": 3, + "name": "Polygon HBD", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x6d969cea201e427d2875724fd4e8044833fbc7f4.png", + "aggregators": ["LiFi", "Rubic", "Rango", "SushiSwap"], + "occurrences": 4 + }, + "0x5e430f88d1be82eb3ef92b6ff06125168fd5dcf2": { + "address": "0x5e430f88d1be82eb3ef92b6ff06125168fd5dcf2", + "symbol": "MODA", + "decimals": 18, + "name": "moda", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x5e430f88d1be82eb3ef92b6ff06125168fd5dcf2.png", + "aggregators": ["LiFi", "Socket", "Rubic", "Rango"], + "occurrences": 4 + }, + "0xf14fbc6b30e2c4bc05a1d4fbe34bf9f14313309d": { + "address": "0xf14fbc6b30e2c4bc05a1d4fbe34bf9f14313309d", + "symbol": "AKT", + "decimals": 6, + "name": "AKT", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0xf14fbc6b30e2c4bc05a1d4fbe34bf9f14313309d.png", + "aggregators": ["LiFi", "Socket", "Rubic", "Rango"], + "occurrences": 4 + }, + "0x61daecab65ee2a1d5b6032df030f3faa3d116aa7": { + "address": "0x61daecab65ee2a1d5b6032df030f3faa3d116aa7", + "symbol": "DMAGIC", + "decimals": 18, + "name": "Dark Magic", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x61daecab65ee2a1d5b6032df030f3faa3d116aa7.png", + "aggregators": ["LiFi", "Rubic", "Rango", "SushiSwap"], + "occurrences": 4 + }, + "0x7272a5a8bd39f204bf773e8b74bb01e31681ad1d": { + "address": "0x7272a5a8bd39f204bf773e8b74bb01e31681ad1d", + "symbol": "OMZ", + "decimals": 18, + "name": "Open Meta City", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x7272a5a8bd39f204bf773e8b74bb01e31681ad1d.png", + "aggregators": ["LiFi", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0x0b220b82f3ea3b7f6d9a1d8ab58930c064a2b5bf": { + "address": "0x0b220b82f3ea3b7f6d9a1d8ab58930c064a2b5bf", + "symbol": "GLM", + "decimals": 18, + "name": "Golem Network Token (PoS)", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x0b220b82f3ea3b7f6d9a1d8ab58930c064a2b5bf.png", + "aggregators": ["LiFi", "Socket", "Rubic", "Rango"], + "occurrences": 4 + }, + "0xcaf5191fc480f43e4df80106c7695eca56e48b18": { + "address": "0xcaf5191fc480f43e4df80106c7695eca56e48b18", + "symbol": "DNXC", + "decimals": 18, + "name": "DinoX", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0xcaf5191fc480f43e4df80106c7695eca56e48b18.png", + "aggregators": ["LiFi", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0xf689e85988d3a7921e852867ce49f53388985e6d": { + "address": "0xf689e85988d3a7921e852867ce49f53388985e6d", + "symbol": "MOFI", + "decimals": 18, + "name": "MobiFi", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0xf689e85988d3a7921e852867ce49f53388985e6d.png", + "aggregators": ["LiFi", "Socket", "Rubic", "Sonarwatch"], + "occurrences": 4 + }, + "0x52ede6bba83b7b4ba1d738df0df713d6a2036b71": { + "address": "0x52ede6bba83b7b4ba1d738df0df713d6a2036b71", + "symbol": "0XMR", + "decimals": 18, + "name": "0xMonero (PoS)", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x52ede6bba83b7b4ba1d738df0df713d6a2036b71.png", + "aggregators": ["LiFi", "Socket", "Rubic", "Rango"], + "occurrences": 4 + }, + "0x0907b8b13970df091ecc9d4d4c7ae12a599ad923": { + "address": "0x0907b8b13970df091ecc9d4d4c7ae12a599ad923", + "symbol": "CCC", + "decimals": 18, + "name": "Credit Check Coin", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x0907b8b13970df091ecc9d4d4c7ae12a599ad923.png", + "aggregators": ["LiFi", "Socket", "Rubic", "Rango"], + "occurrences": 4 + }, + "0x4eac4c4e9050464067d673102f8e24b2fcceb350": { + "address": "0x4eac4c4e9050464067d673102f8e24b2fcceb350", + "symbol": "IBBTC", + "decimals": 18, + "name": "Interest-Bearing BTC", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x4eac4c4e9050464067d673102f8e24b2fcceb350.png", + "aggregators": ["LiFi", "Socket", "Rango", "SushiSwap"], + "occurrences": 4 + }, + "0x78b1aa5c9b37c52695c93448ad0c64560edb9c4d": { + "address": "0x78b1aa5c9b37c52695c93448ad0c64560edb9c4d", + "symbol": "FOOD", + "decimals": 18, + "name": "Fooday", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x78b1aa5c9b37c52695c93448ad0c64560edb9c4d.png", + "aggregators": ["LiFi", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0x8d1566569d5b695d44a9a234540f68d393cdc40d": { + "address": "0x8d1566569d5b695d44a9a234540f68d393cdc40d", + "symbol": "GAME", + "decimals": 18, + "name": "GAME", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x8d1566569d5b695d44a9a234540f68d393cdc40d.png", + "aggregators": ["LiFi", "Socket", "Rubic", "Rango"], + "occurrences": 4 + }, + "0xd7ecf95cf7ef5256990beaf4ac895cd9e64cb947": { + "address": "0xd7ecf95cf7ef5256990beaf4ac895cd9e64cb947", + "symbol": "PBTC", + "decimals": 18, + "name": "PBTC", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0xd7ecf95cf7ef5256990beaf4ac895cd9e64cb947.png", + "aggregators": ["LiFi", "Socket", "Rubic", "Rango"], + "occurrences": 4 + }, + "0x9b034262e0095210ab9ddec60199741a8a1fbfe7": { + "address": "0x9b034262e0095210ab9ddec60199741a8a1fbfe7", + "symbol": "THREE", + "decimals": 18, + "name": "ThreeCoin", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x9b034262e0095210ab9ddec60199741a8a1fbfe7.png", + "aggregators": ["LiFi", "Rubic", "Rango", "SushiSwap"], + "occurrences": 4 + }, + "0x0361bdeab89df6bbcc52c43589fabba5143d19dd": { + "address": "0x0361bdeab89df6bbcc52c43589fabba5143d19dd", + "symbol": "DTOP", + "decimals": 18, + "name": "dHEDGE Top Index", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x0361bdeab89df6bbcc52c43589fabba5143d19dd.png", + "aggregators": ["LiFi", "Rubic", "Rango", "SushiSwap"], + "occurrences": 4 + }, + "0xba25b552c8a098afdf276324c32c71fe28e0ad40": { + "address": "0xba25b552c8a098afdf276324c32c71fe28e0ad40", + "symbol": "MCRN", + "decimals": 18, + "name": "MacaronSwap", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0xba25b552c8a098afdf276324c32c71fe28e0ad40.png", + "aggregators": ["LiFi", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0x2db0db271a10661e7090b6758350e18f6798a49d": { + "address": "0x2db0db271a10661e7090b6758350e18f6798a49d", + "symbol": "MOT", + "decimals": 18, + "name": "Mobius Finance", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x2db0db271a10661e7090b6758350e18f6798a49d.png", + "aggregators": ["LiFi", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0x28c388fb1f4fa9f9eb445f0579666849ee5eeb42": { + "address": "0x28c388fb1f4fa9f9eb445f0579666849ee5eeb42", + "symbol": "BEL", + "decimals": 18, + "name": "BEL", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x28c388fb1f4fa9f9eb445f0579666849ee5eeb42.png", + "aggregators": ["LiFi", "Socket", "Rubic", "Rango"], + "occurrences": 4 + }, + "0xede1b77c0ccc45bfa949636757cd2ca7ef30137f": { + "address": "0xede1b77c0ccc45bfa949636757cd2ca7ef30137f", + "symbol": "WFIL", + "decimals": 18, + "name": "Wrapped Filecoin", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0xede1b77c0ccc45bfa949636757cd2ca7ef30137f.png", + "aggregators": ["LiFi", "Rubic", "Rango", "SushiSwap"], + "occurrences": 4 + }, + "0x6d5f5317308c6fe7d6ce16930353a8dfd92ba4d7": { + "address": "0x6d5f5317308c6fe7d6ce16930353a8dfd92ba4d7", + "symbol": "ABI", + "decimals": 9, + "name": "Abachi", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x6d5f5317308c6fe7d6ce16930353a8dfd92ba4d7.png", + "aggregators": ["LiFi", "Rubic", "Rango", "SushiSwap"], + "occurrences": 4 + }, + "0x858bcee0e62dd0c961611ddddb908767b0ce801c": { + "address": "0x858bcee0e62dd0c961611ddddb908767b0ce801c", + "symbol": "LSMATIC", + "decimals": 18, + "name": "Liquid Staked MATIC Index", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x858bcee0e62dd0c961611ddddb908767b0ce801c.png", + "aggregators": ["LiFi", "Rubic", "Rango", "SushiSwap"], + "occurrences": 4 + }, + "0x904371845bc56dcbbcf0225ef84a669b2fd6bd0d": { + "address": "0x904371845bc56dcbbcf0225ef84a669b2fd6bd0d", + "symbol": "RELAY", + "decimals": 18, + "name": "RELAY", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x904371845bc56dcbbcf0225ef84a669b2fd6bd0d.png", + "aggregators": ["LiFi", "Socket", "Rubic", "Rango"], + "occurrences": 4 + }, + "0xba4c54ea2d66b904c82847a7d2357d22b857e812": { + "address": "0xba4c54ea2d66b904c82847a7d2357d22b857e812", + "symbol": "UGT", + "decimals": 18, + "name": "UGT", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0xba4c54ea2d66b904c82847a7d2357d22b857e812.png", + "aggregators": ["LiFi", "Socket", "Rubic", "Rango"], + "occurrences": 4 + }, + "0xf629712180bef6f4c569b704e03d0acbe276eb6d": { + "address": "0xf629712180bef6f4c569b704e03d0acbe276eb6d", + "symbol": "WSTA", + "decimals": 18, + "name": "Wrapped STA (PoS)", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0xf629712180bef6f4c569b704e03d0acbe276eb6d.png", + "aggregators": ["LiFi", "Socket", "Rubic", "Rango"], + "occurrences": 4 + }, + "0xdda7b23d2d72746663e7939743f929a3d85fc975": { + "address": "0xdda7b23d2d72746663e7939743f929a3d85fc975", + "symbol": "ADX", + "decimals": 18, + "name": "AdEx", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0xdda7b23d2d72746663e7939743f929a3d85fc975.png", + "aggregators": ["LiFi", "Socket", "Rubic", "Sonarwatch"], + "occurrences": 4 + }, + "0x960d43be128585ca45365cd74a7773b9d814dfbe": { + "address": "0x960d43be128585ca45365cd74a7773b9d814dfbe", + "symbol": "FIREFBX", + "decimals": 18, + "name": "FireVault FBX", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x960d43be128585ca45365cd74a7773b9d814dfbe.png", + "aggregators": ["LiFi", "Rubic", "Rango", "SushiSwap"], + "occurrences": 4 + }, + "0x1db06f39c14d813d7b1ccb275a93f5b052de1cac": { + "address": "0x1db06f39c14d813d7b1ccb275a93f5b052de1cac", + "symbol": "XAV", + "decimals": 18, + "name": "Xave", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x1db06f39c14d813d7b1ccb275a93f5b052de1cac.png", + "aggregators": ["LiFi", "Rubic", "Squid", "Sonarwatch"], + "occurrences": 4 + }, + "0x281c4746c902a322b9a951f07893ac51a7221acc": { + "address": "0x281c4746c902a322b9a951f07893ac51a7221acc", + "symbol": "STERN", + "decimals": 18, + "name": "Staked Ethos Reserve Note", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x281c4746c902a322b9a951f07893ac51a7221acc.png", + "aggregators": ["LiFi", "Rubic", "Squid", "Rango"], + "occurrences": 4 + }, + "0x6ccf12b480a99c54b23647c995f4525d544a7e72": { + "address": "0x6ccf12b480a99c54b23647c995f4525d544a7e72", + "symbol": "START", + "decimals": 18, + "name": "Starter.xyz", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x6ccf12b480a99c54b23647c995f4525d544a7e72.png", + "aggregators": ["Socket", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0xa649325aa7c5093d12d6f98eb4378deae68ce23f": { + "address": "0xa649325aa7c5093d12d6f98eb4378deae68ce23f", + "symbol": "WBNB", + "decimals": 18, + "name": "Wrapped BNB", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0xa649325aa7c5093d12d6f98eb4378deae68ce23f.png", + "aggregators": ["Socket", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0xbf9f916bbda29a7f990f5f55c7607d94d7c3a60b": { + "address": "0xbf9f916bbda29a7f990f5f55c7607d94d7c3a60b", + "symbol": "DEFY", + "decimals": 18, + "name": "DEFY", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0xbf9f916bbda29a7f990f5f55c7607d94d7c3a60b.png", + "aggregators": ["Socket", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0x0a307bd521701f9d70fb29bfa9e2e36dc998dadb": { + "address": "0x0a307bd521701f9d70fb29bfa9e2e36dc998dadb", + "symbol": "CNW", + "decimals": 6, + "name": "CoinWealth", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x0a307bd521701f9d70fb29bfa9e2e36dc998dadb.png", + "aggregators": ["Socket", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0xd281af594cbb99e8469f3591d57a0c72eb725bdb": { + "address": "0xd281af594cbb99e8469f3591d57a0c72eb725bdb", + "symbol": "MNFT", + "decimals": 18, + "name": "Marvelous NFTs", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0xd281af594cbb99e8469f3591d57a0c72eb725bdb.png", + "aggregators": ["Socket", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0x8c059898ca6274750b6bf1cf38f2848347c490cc": { + "address": "0x8c059898ca6274750b6bf1cf38f2848347c490cc", + "symbol": "SOS", + "decimals": 18, + "name": "SOS (PoS)", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x8c059898ca6274750b6bf1cf38f2848347c490cc.png", + "aggregators": ["Socket", "Rubic", "Rango", "SushiSwap"], + "occurrences": 4 + }, + "0x04f3c4cf2e806da6df31e80e8a5d121f98edd61d": { + "address": "0x04f3c4cf2e806da6df31e80e8a5d121f98edd61d", + "symbol": "CREAM", + "decimals": 18, + "name": "Cream", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x04f3c4cf2e806da6df31e80e8a5d121f98edd61d.png", + "aggregators": ["Socket", "Rubic", "Rango", "SushiSwap"], + "occurrences": 4 + }, + "0x2ebd50ae084e71eed419cb6c620b3bbd3927bf7e": { + "address": "0x2ebd50ae084e71eed419cb6c620b3bbd3927bf7e", + "symbol": "AAA", + "decimals": 18, + "name": "Moon Rabbit", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x2ebd50ae084e71eed419cb6c620b3bbd3927bf7e.png", + "aggregators": ["Socket", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0x0c47298beee5203358e7bc30b9954b584361eab5": { + "address": "0x0c47298beee5203358e7bc30b9954b584361eab5", + "symbol": "BS", + "decimals": 18, + "name": "Black Stallion", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x0c47298beee5203358e7bc30b9954b584361eab5.png", + "aggregators": ["Socket", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0x057e0bd9b797f9eeeb8307b35dbc8c12e534c41e": { + "address": "0x057e0bd9b797f9eeeb8307b35dbc8c12e534c41e", + "symbol": "GURU", + "decimals": 9, + "name": "Guru", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x057e0bd9b797f9eeeb8307b35dbc8c12e534c41e.png", + "aggregators": ["Socket", "Rubic", "Rango", "SushiSwap"], + "occurrences": 4 + }, + "0xd6a33f67b733d422c821c36f0f79ca145b930d01": { + "address": "0xd6a33f67b733d422c821c36f0f79ca145b930d01", + "symbol": "AGLA", + "decimals": 18, + "name": "Angola", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0xd6a33f67b733d422c821c36f0f79ca145b930d01.png", + "aggregators": ["Socket", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0xeec2e29ff5cd4cecea61de09e9f28fae74c70ddd": { + "address": "0xeec2e29ff5cd4cecea61de09e9f28fae74c70ddd", + "symbol": "AITT", + "decimals": 8, + "name": "Aittcoin", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0xeec2e29ff5cd4cecea61de09e9f28fae74c70ddd.png", + "aggregators": ["Socket", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0xcd150b1f528f326f5194c012f32eb30135c7c2c9": { + "address": "0xcd150b1f528f326f5194c012f32eb30135c7c2c9", + "symbol": "OOKI", + "decimals": 18, + "name": "OOKI", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0xcd150b1f528f326f5194c012f32eb30135c7c2c9.png", + "aggregators": ["Socket", "Rubic", "Rango", "SushiSwap"], + "occurrences": 4 + }, + "0x7c28f627ea3aec8b882b51eb1935f66e5b875714": { + "address": "0x7c28f627ea3aec8b882b51eb1935f66e5b875714", + "symbol": "PAINT", + "decimals": 18, + "name": "MurAll", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x7c28f627ea3aec8b882b51eb1935f66e5b875714.png", + "aggregators": ["Socket", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0x4fdce518fe527439fe76883e6b51a1c522b61b7c": { + "address": "0x4fdce518fe527439fe76883e6b51a1c522b61b7c", + "symbol": "COR", + "decimals": 18, + "name": "Coreto", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x4fdce518fe527439fe76883e6b51a1c522b61b7c.png", + "aggregators": ["Socket", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0xe6b9d092223f39013656702a40dbe6b7decc5746": { + "address": "0xe6b9d092223f39013656702a40dbe6b7decc5746", + "symbol": "FEVR", + "decimals": 18, + "name": "RealFevr", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0xe6b9d092223f39013656702a40dbe6b7decc5746.png", + "aggregators": ["Socket", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0x382586651f043cbdec7bb586e367d77b26d7d149": { + "address": "0x382586651f043cbdec7bb586e367d77b26d7d149", + "symbol": "WGC", + "decimals": 6, + "name": "Wild Goat Coin", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x382586651f043cbdec7bb586e367d77b26d7d149.png", + "aggregators": ["Socket", "Rubic", "Rango", "SushiSwap"], + "occurrences": 4 + }, + "0x8a2870fb69a90000d6439b7adfb01d4ba383a415": { + "address": "0x8a2870fb69a90000d6439b7adfb01d4ba383a415", + "symbol": "DEGEN", + "decimals": 18, + "name": "DEGEN Index", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x8a2870fb69a90000d6439b7adfb01d4ba383a415.png", + "aggregators": ["Socket", "Rubic", "Rango", "SushiSwap"], + "occurrences": 4 + }, + "0xe9993763e0b7f7d915a62a5f22a6e151f91d98a8": { + "address": "0xe9993763e0b7f7d915a62a5f22a6e151f91d98a8", + "symbol": "TORG", + "decimals": 18, + "name": "TORG", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0xe9993763e0b7f7d915a62a5f22a6e151f91d98a8.png", + "aggregators": ["Socket", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0x46d502fac9aea7c5bc7b13c8ec9d02378c33d36f": { + "address": "0x46d502fac9aea7c5bc7b13c8ec9d02378c33d36f", + "symbol": "WSPP", + "decimals": 18, + "name": "WolfSafePoorPeople", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x46d502fac9aea7c5bc7b13c8ec9d02378c33d36f.png", + "aggregators": ["Rubic", "Rango", "Sonarwatch", "SushiSwap"], + "occurrences": 4 + }, + "0x40445993b0122456ec9e5c679f4f0485e1a5b474": { + "address": "0x40445993b0122456ec9e5c679f4f0485e1a5b474", + "symbol": "FDC", + "decimals": 18, + "name": "FDrive Coin", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x40445993b0122456ec9e5c679f4f0485e1a5b474.png", + "aggregators": ["CoinGecko", "LiFi", "Rubic"], + "occurrences": 3 + }, + "0xae840deab9916d80fadf42e218119a6051468169": { + "address": "0xae840deab9916d80fadf42e218119a6051468169", + "symbol": "EFI", + "decimals": 18, + "name": "EFI", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0xae840deab9916d80fadf42e218119a6051468169.png", + "aggregators": ["CoinGecko", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x231878d973c09fbcc0ca2239fffb717795402cb4": { + "address": "0x231878d973c09fbcc0ca2239fffb717795402cb4", + "symbol": "RUSK", + "decimals": 18, + "name": "RUSK", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x231878d973c09fbcc0ca2239fffb717795402cb4.png", + "aggregators": ["CoinGecko", "Rubic", "Rango"], + "occurrences": 3 + }, + "0xcc44674022a792794d219847362bb95c661937a9": { + "address": "0xcc44674022a792794d219847362bb95c661937a9", + "symbol": "ROU", + "decimals": 18, + "name": "ROU", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0xcc44674022a792794d219847362bb95c661937a9.png", + "aggregators": ["CoinGecko", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x25ed22a5b6804cd1fbf750f005d5c4c80763c0fb": { + "address": "0x25ed22a5b6804cd1fbf750f005d5c4c80763c0fb", + "symbol": "FPL", + "decimals": 18, + "name": "Fanpla", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x25ed22a5b6804cd1fbf750f005d5c4c80763c0fb.png", + "aggregators": ["CoinGecko", "LiFi", "Rubic"], + "occurrences": 3 + }, + "0x978bf545a15e29595e6c583aefa76f5fe71070c2": { + "address": "0x978bf545a15e29595e6c583aefa76f5fe71070c2", + "symbol": "LOI", + "decimals": 18, + "name": "Loop Of Infinity", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x978bf545a15e29595e6c583aefa76f5fe71070c2.png", + "aggregators": ["CoinGecko", "Rubic", "Sonarwatch"], + "occurrences": 3 + }, + "0x94b959c93761835f634b8d6e655070c58e2caa12": { + "address": "0x94b959c93761835f634b8d6e655070c58e2caa12", + "symbol": "MEN", + "decimals": 6, + "name": "DAC Platform", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x94b959c93761835f634b8d6e655070c58e2caa12.png", + "aggregators": ["Metamask", "Rubic", "Sonarwatch"], + "occurrences": 3 + }, + "0xc750c8a5115cc76a1682c3c0d83e7eb281da0d5a": { + "address": "0xc750c8a5115cc76a1682c3c0d83e7eb281da0d5a", + "symbol": "CCASH", + "decimals": 18, + "name": "C-Cash", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0xc750c8a5115cc76a1682c3c0d83e7eb281da0d5a.png", + "aggregators": ["CoinGecko", "LiFi", "Rubic"], + "occurrences": 3 + }, + "0x14f74e11f0d9d469a4c9d686cfb18a771b31d94f": { + "address": "0x14f74e11f0d9d469a4c9d686cfb18a771b31d94f", + "symbol": "ONLIVE", + "decimals": 18, + "name": "ONLIVE", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x14f74e11f0d9d469a4c9d686cfb18a771b31d94f.png", + "aggregators": ["CoinGecko", "Rubic", "Rango"], + "occurrences": 3 + }, + "0xe6800cf598015a3ec5dd534f328f349da239bc78": { + "address": "0xe6800cf598015a3ec5dd534f328f349da239bc78", + "symbol": "DRESS", + "decimals": 18, + "name": "DRESS", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0xe6800cf598015a3ec5dd534f328f349da239bc78.png", + "aggregators": ["CoinGecko", "Rubic", "Rango"], + "occurrences": 3 + }, + "0xcc0643b786d8b566a98e85dde48077239eaa8598": { + "address": "0xcc0643b786d8b566a98e85dde48077239eaa8598", + "symbol": "AVR", + "decimals": 18, + "name": "Averra", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0xcc0643b786d8b566a98e85dde48077239eaa8598.png", + "aggregators": ["CoinGecko", "LiFi", "Rubic"], + "occurrences": 3 + }, + "0x17c7c74e0cd779f33cb5a6e8ab39de46168e9ef7": { + "address": "0x17c7c74e0cd779f33cb5a6e8ab39de46168e9ef7", + "symbol": "CFR", + "decimals": 18, + "name": "CFR", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x17c7c74e0cd779f33cb5a6e8ab39de46168e9ef7.png", + "aggregators": ["CoinGecko", "Rubic", "Rango"], + "occurrences": 3 + }, + "0xe9c21de62c5c5d0ceacce2762bf655afdceb7ab3": { + "address": "0xe9c21de62c5c5d0ceacce2762bf655afdceb7ab3", + "symbol": "AKRE", + "decimals": 18, + "name": "AKRE", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0xe9c21de62c5c5d0ceacce2762bf655afdceb7ab3.png", + "aggregators": ["CoinGecko", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x7b43e83a5c5d60a7b8886b4205ace88d1f4e2803": { + "address": "0x7b43e83a5c5d60a7b8886b4205ace88d1f4e2803", + "symbol": "PAPARAZZI", + "decimals": 18, + "name": "PAPARAZZI", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x7b43e83a5c5d60a7b8886b4205ace88d1f4e2803.png", + "aggregators": ["CoinGecko", "Rubic", "Rango"], + "occurrences": 3 + }, + "0xb8d5f5f236c24e09c7f55eec313818742ac4cf79": { + "address": "0xb8d5f5f236c24e09c7f55eec313818742ac4cf79", + "symbol": "VSX", + "decimals": 18, + "name": "VSX", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0xb8d5f5f236c24e09c7f55eec313818742ac4cf79.png", + "aggregators": ["CoinGecko", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x380df89d883776ba04f65569f1d1a6e218bfc2df": { + "address": "0x380df89d883776ba04f65569f1d1a6e218bfc2df", + "symbol": "AWK", + "decimals": 18, + "name": "AWK", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x380df89d883776ba04f65569f1d1a6e218bfc2df.png", + "aggregators": ["CoinGecko", "Rubic", "Rango"], + "occurrences": 3 + }, + "0xb4e876f6c9d5ba104112d222083527b1dad17103": { + "address": "0xb4e876f6c9d5ba104112d222083527b1dad17103", + "symbol": "VOLLAR", + "decimals": 8, + "name": "VDS", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0xb4e876f6c9d5ba104112d222083527b1dad17103.png", + "aggregators": ["CoinGecko", "LiFi", "Rubic"], + "occurrences": 3 + }, + "0x68727e573d21a49c767c3c86a92d9f24bd933c99": { + "address": "0x68727e573d21a49c767c3c86a92d9f24bd933c99", + "symbol": "EMXN", + "decimals": 6, + "name": "Telcoin MXN", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x68727e573d21a49c767c3c86a92d9f24bd933c99.png", + "aggregators": ["CoinGecko", "LiFi", "Rubic"], + "occurrences": 3 + }, + "0x9b765735c82bb00085e9dbf194f20e3fa754258e": { + "address": "0x9b765735c82bb00085e9dbf194f20e3fa754258e", + "symbol": "CARR", + "decimals": 18, + "name": "CARR", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x9b765735c82bb00085e9dbf194f20e3fa754258e.png", + "aggregators": ["CoinGecko", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x1a3c7d6cb66299f769040e6d4cf0c1945f6a2f32": { + "address": "0x1a3c7d6cb66299f769040e6d4cf0c1945f6a2f32", + "symbol": "KIA", + "decimals": 18, + "name": "KIATOKEN", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x1a3c7d6cb66299f769040e6d4cf0c1945f6a2f32.png", + "aggregators": ["CoinGecko", "Rubic", "Sonarwatch"], + "occurrences": 3 + }, + "0xa8bf0b92be0338794d2e3b180b9643a1f0eb2914": { + "address": "0xa8bf0b92be0338794d2e3b180b9643a1f0eb2914", + "symbol": "ERA", + "decimals": 18, + "name": "Erable°", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0xa8bf0b92be0338794d2e3b180b9643a1f0eb2914.png", + "aggregators": ["CoinGecko", "Rubic", "Sonarwatch"], + "occurrences": 3 + }, + "0x2278485e81b735e0f79fdca936f901d0727e6603": { + "address": "0x2278485e81b735e0f79fdca936f901d0727e6603", + "symbol": "ARSE", + "decimals": 6, + "name": "ARSe", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x2278485e81b735e0f79fdca936f901d0727e6603.png", + "aggregators": ["CoinGecko", "LiFi", "Rubic"], + "occurrences": 3 + }, + "0x070c3e8a408bbacc61f40ef023d30e173f268f5e": { + "address": "0x070c3e8a408bbacc61f40ef023d30e173f268f5e", + "symbol": "GMTO", + "decimals": 18, + "name": "Game Meteor Coin", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x070c3e8a408bbacc61f40ef023d30e173f268f5e.png", + "aggregators": ["CoinGecko", "Rubic", "Rango"], + "occurrences": 3 + }, + "0xc91953e110ebb0039859304a0d1b64f8450763fc": { + "address": "0xc91953e110ebb0039859304a0d1b64f8450763fc", + "symbol": "DCI", + "decimals": 18, + "name": "DCI", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0xc91953e110ebb0039859304a0d1b64f8450763fc.png", + "aggregators": ["CoinGecko", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x433cde5a82b5e0658da3543b47a375dffd126eb6": { + "address": "0x433cde5a82b5e0658da3543b47a375dffd126eb6", + "symbol": "GOON", + "decimals": 18, + "name": "GOON", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x433cde5a82b5e0658da3543b47a375dffd126eb6.png", + "aggregators": ["CoinGecko", "Rubic", "Rango"], + "occurrences": 3 + }, + "0xd32dfefd9d00f772db460a3b542f0a736d80662f": { + "address": "0xd32dfefd9d00f772db460a3b542f0a736d80662f", + "symbol": "LPI", + "decimals": 18, + "name": "LOCKON Passive Index", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0xd32dfefd9d00f772db460a3b542f0a736d80662f.png", + "aggregators": ["CoinGecko", "LiFi", "Rubic"], + "occurrences": 3 + }, + "0xe1b0e0f0427af6f943cdeb6304eed259d152fc78": { + "address": "0xe1b0e0f0427af6f943cdeb6304eed259d152fc78", + "symbol": "OVO", + "decimals": 18, + "name": "Ovato", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0xe1b0e0f0427af6f943cdeb6304eed259d152fc78.png", + "aggregators": ["CoinGecko", "LiFi", "Rubic"], + "occurrences": 3 + }, + "0x570a42849ac23e3fdc45d8c31ddf7c09283e702d": { + "address": "0x570a42849ac23e3fdc45d8c31ddf7c09283e702d", + "symbol": "XRS", + "decimals": 18, + "name": "Xauras token", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x570a42849ac23e3fdc45d8c31ddf7c09283e702d.png", + "aggregators": ["CoinGecko", "LiFi", "Rubic"], + "occurrences": 3 + }, + "0xd87af7b418d64ff2cde48d890285ba64fc6e115f": { + "address": "0xd87af7b418d64ff2cde48d890285ba64fc6e115f", + "symbol": "DTEC", + "decimals": 18, + "name": "DTEC", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0xd87af7b418d64ff2cde48d890285ba64fc6e115f.png", + "aggregators": ["CoinGecko", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x8708cceb45b218e93a4d2cfc95eb8250ab13fa9d": { + "address": "0x8708cceb45b218e93a4d2cfc95eb8250ab13fa9d", + "symbol": "DVO", + "decimals": 18, + "name": "DVO", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x8708cceb45b218e93a4d2cfc95eb8250ab13fa9d.png", + "aggregators": ["CoinGecko", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x1adcef5c780d8895ac77e6ee9239b4b3ecb76da2": { + "address": "0x1adcef5c780d8895ac77e6ee9239b4b3ecb76da2", + "symbol": "TOTEM", + "decimals": 6, + "name": "DragonMaster Totem", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x1adcef5c780d8895ac77e6ee9239b4b3ecb76da2.png", + "aggregators": ["CoinGecko", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x14913815bcfde78baead2111f463d038ac9c2949": { + "address": "0x14913815bcfde78baead2111f463d038ac9c2949", + "symbol": "EUSD", + "decimals": 6, + "name": "EUSD", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x14913815bcfde78baead2111f463d038ac9c2949.png", + "aggregators": ["CoinGecko", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x4e24c684a90f2c1f9030a5608a6c3a6fa4e854f5": { + "address": "0x4e24c684a90f2c1f9030a5608a6c3a6fa4e854f5", + "symbol": "ORBD", + "decimals": 18, + "name": "OrbitEdge", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x4e24c684a90f2c1f9030a5608a6c3a6fa4e854f5.png", + "aggregators": ["CoinGecko", "LiFi", "Rubic"], + "occurrences": 3 + }, + "0x3deb0c60f0be9d9b99da83a2b6b2ee790f5af37a": { + "address": "0x3deb0c60f0be9d9b99da83a2b6b2ee790f5af37a", + "symbol": "USDW", + "decimals": 18, + "name": "USD DWIN", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x3deb0c60f0be9d9b99da83a2b6b2ee790f5af37a.png", + "aggregators": ["CoinGecko", "LiFi", "Rubic"], + "occurrences": 3 + }, + "0xf197ffc28c23e0309b5559e7a166f2c6164c80aa": { + "address": "0xf197ffc28c23e0309b5559e7a166f2c6164c80aa", + "symbol": "MXNB", + "decimals": 6, + "name": "MXNB", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0xf197ffc28c23e0309b5559e7a166f2c6164c80aa.png", + "aggregators": ["CoinGecko", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x6eaea1ed457e06f8cf6ee7adf34e621844c3b0fc": { + "address": "0x6eaea1ed457e06f8cf6ee7adf34e621844c3b0fc", + "symbol": "FXNESS", + "decimals": 18, + "name": "NESS (FXERC20)", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x6eaea1ed457e06f8cf6ee7adf34e621844c3b0fc.png", + "aggregators": ["CoinGecko", "LiFi", "Rubic"], + "occurrences": 3 + }, + "0x79103b27fc21c81f7c6cb5caff78901b45a972d5": { + "address": "0x79103b27fc21c81f7c6cb5caff78901b45a972d5", + "symbol": "BTC.ℏ[0X]", + "decimals": 8, + "name": "BTC.ℏ[0X]", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x79103b27fc21c81f7c6cb5caff78901b45a972d5.png", + "aggregators": ["CoinGecko", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x0f13fc8a93ab8edc9fde0a1e19aac693161599a5": { + "address": "0x0f13fc8a93ab8edc9fde0a1e19aac693161599a5", + "symbol": "SCAI", + "decimals": 18, + "name": "SecureChain AI", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x0f13fc8a93ab8edc9fde0a1e19aac693161599a5.png", + "aggregators": ["CoinGecko", "LiFi", "Rubic"], + "occurrences": 3 + }, + "0xc53ac24320e3a54c7211e4993c8095078a0cb3cf": { + "address": "0xc53ac24320e3a54c7211e4993c8095078a0cb3cf", + "symbol": "WGC", + "decimals": 6, + "name": "Wild Goat Coin", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0xc53ac24320e3a54c7211e4993c8095078a0cb3cf.png", + "aggregators": ["CoinGecko", "Socket", "Rubic"], + "occurrences": 3 + }, + "0xdcffa515620def25d18f8d2c8aeca67f9ad31f58": { + "address": "0xdcffa515620def25d18f8d2c8aeca67f9ad31f58", + "symbol": "SAVI", + "decimals": 18, + "name": "SAVI", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0xdcffa515620def25d18f8d2c8aeca67f9ad31f58.png", + "aggregators": ["CoinGecko", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x5e817f2abccb9095585d26c2a3ce234a440574fc": { + "address": "0x5e817f2abccb9095585d26c2a3ce234a440574fc", + "symbol": "FRNT", + "decimals": 6, + "name": "Frontier Stable Token", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x5e817f2abccb9095585d26c2a3ce234a440574fc.png", + "aggregators": ["CoinGecko", "LiFi", "Rubic"], + "occurrences": 3 + }, + "0xa0a675d08ca63066f48408136f8a71fc65be4afc": { + "address": "0xa0a675d08ca63066f48408136f8a71fc65be4afc", + "symbol": "BZR", + "decimals": 18, + "name": "Bazaars", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0xa0a675d08ca63066f48408136f8a71fc65be4afc.png", + "aggregators": ["CoinGecko", "LiFi", "Rubic"], + "occurrences": 3 + }, + "0x834df4c1d8f51be24322e39e4766697be015512f": { + "address": "0x834df4c1d8f51be24322e39e4766697be015512f", + "symbol": "CETES", + "decimals": 6, + "name": "Etherfuse CETES", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x834df4c1d8f51be24322e39e4766697be015512f.png", + "aggregators": ["CoinGecko", "LiFi", "Rubic"], + "occurrences": 3 + }, + "0x9246a5f10a79a5a939b0c2a75a3ad196aafdb43b": { + "address": "0x9246a5f10a79a5a939b0c2a75a3ad196aafdb43b", + "symbol": "BETS", + "decimals": 18, + "name": "BetSwirl Token", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x9246a5f10a79a5a939b0c2a75a3ad196aafdb43b.png", + "aggregators": ["QuickSwap", "Socket", "Rubic"], + "occurrences": 3 + }, + "0x5c4b7ccbf908e64f32e12c6650ec0c96d717f03f": { + "address": "0x5c4b7ccbf908e64f32e12c6650ec0c96d717f03f", + "symbol": "BNB", + "decimals": 18, + "name": "BNB", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x5c4b7ccbf908e64f32e12c6650ec0c96d717f03f.png", + "aggregators": ["QuickSwap", "Socket", "Rango"], + "occurrences": 3 + }, + "0x6f06e6bed64cf4c4187c06ee2a4732f6a171bc4e": { + "address": "0x6f06e6bed64cf4c4187c06ee2a4732f6a171bc4e", + "symbol": "FOOD", + "decimals": 18, + "name": "FoodChain Global", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x6f06e6bed64cf4c4187c06ee2a4732f6a171bc4e.png", + "aggregators": ["QuickSwap", "Rubic", "Rango"], + "occurrences": 3 + }, + "0xb85517b87bf64942adf3a0b9e4c71e4bc5caa4e5": { + "address": "0xb85517b87bf64942adf3a0b9e4c71e4bc5caa4e5", + "symbol": "FTM", + "decimals": 18, + "name": "FTM", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0xb85517b87bf64942adf3a0b9e4c71e4bc5caa4e5.png", + "aggregators": ["QuickSwap", "Socket", "Rango"], + "occurrences": 3 + }, + "0x3801c3b3b5c98f88a9c9005966aa96aa440b9afc": { + "address": "0x3801c3b3b5c98f88a9c9005966aa96aa440b9afc", + "symbol": "GLTR", + "decimals": 18, + "name": "GAX Liquidity Token Reward", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x3801c3b3b5c98f88a9c9005966aa96aa440b9afc.png", + "aggregators": ["QuickSwap", "Rubic", "Rango"], + "occurrences": 3 + }, + "0xff2382bd52efacef02cc895bcbfc4618608aa56f": { + "address": "0xff2382bd52efacef02cc895bcbfc4618608aa56f", + "symbol": "ORARE", + "decimals": 18, + "name": "OneRare", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0xff2382bd52efacef02cc895bcbfc4618608aa56f.png", + "aggregators": ["QuickSwap", "Rubic", "Rango"], + "occurrences": 3 + }, + "0xa936e1f747d14fc30d08272d065c8aef4ab7f810": { + "address": "0xa936e1f747d14fc30d08272d065c8aef4ab7f810", + "symbol": "WLD", + "decimals": 18, + "name": "wLitiDAO", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0xa936e1f747d14fc30d08272d065c8aef4ab7f810.png", + "aggregators": ["QuickSwap", "Socket", "Rubic"], + "occurrences": 3 + }, + "0xe46b4a950c389e80621d10dfc398e91613c7e25e": { + "address": "0xe46b4a950c389e80621d10dfc398e91613c7e25e", + "symbol": "PFI", + "decimals": 18, + "name": "PartyFinance", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0xe46b4a950c389e80621d10dfc398e91613c7e25e.png", + "aggregators": ["1inch", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x486ffaf06a681bf22b5209e9ffce722662a60e8c": { + "address": "0x486ffaf06a681bf22b5209e9ffce722662a60e8c", + "symbol": "FLY", + "decimals": 18, + "name": "FlyCoin (PoS)", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x486ffaf06a681bf22b5209e9ffce722662a60e8c.png", + "aggregators": ["LiFi", "Socket", "Rubic"], + "occurrences": 3 + }, + "0x06480acaae64bcfa6da8fd176f60982584385090": { + "address": "0x06480acaae64bcfa6da8fd176f60982584385090", + "symbol": "IVY", + "decimals": 18, + "name": "IVY Trading System", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x06480acaae64bcfa6da8fd176f60982584385090.png", + "aggregators": ["LiFi", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x3ad736904e9e65189c3000c7dd2c8ac8bb7cd4e3": { + "address": "0x3ad736904e9e65189c3000c7dd2c8ac8bb7cd4e3", + "symbol": "MATICX", + "decimals": 18, + "name": "Super MATIC", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x3ad736904e9e65189c3000c7dd2c8ac8bb7cd4e3.png", + "aggregators": ["LiFi", "Socket", "Rubic"], + "occurrences": 3 + }, + "0xccbe9b810d6574701d324fd6dbe0a1b68f9d5bf7": { + "address": "0xccbe9b810d6574701d324fd6dbe0a1b68f9d5bf7", + "symbol": "STACK", + "decimals": 18, + "name": "Stacker Ventures Token (PoS)", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0xccbe9b810d6574701d324fd6dbe0a1b68f9d5bf7.png", + "aggregators": ["LiFi", "Socket", "Rubic"], + "occurrences": 3 + }, + "0x3c5a5885f6ee4acc2597069fe3c19f49c6efba96": { + "address": "0x3c5a5885f6ee4acc2597069fe3c19f49c6efba96", + "symbol": "KRIDA", + "decimals": 18, + "name": "Krida Fans", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x3c5a5885f6ee4acc2597069fe3c19f49c6efba96.png", + "aggregators": ["LiFi", "Rubic", "Rango"], + "occurrences": 3 + }, + "0xf6372cdb9c1d3674e83842e3800f2a62ac9f3c66": { + "address": "0xf6372cdb9c1d3674e83842e3800f2a62ac9f3c66", + "symbol": "IOTX", + "decimals": 18, + "name": "IoTeX Network (PoS)", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0xf6372cdb9c1d3674e83842e3800f2a62ac9f3c66.png", + "aggregators": ["LiFi", "Socket", "Rubic"], + "occurrences": 3 + }, + "0x01fa5b3a5d77bcf705dd505bbcbb34bce310e7fe": { + "address": "0x01fa5b3a5d77bcf705dd505bbcbb34bce310e7fe", + "symbol": "AXI", + "decimals": 18, + "name": "Axioms (PoS)", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x01fa5b3a5d77bcf705dd505bbcbb34bce310e7fe.png", + "aggregators": ["LiFi", "Socket", "Rubic"], + "occurrences": 3 + }, + "0x0cfc9a713a5c17bc8a5ff0379467f6558bacd0e0": { + "address": "0x0cfc9a713a5c17bc8a5ff0379467f6558bacd0e0", + "symbol": "GLQ", + "decimals": 18, + "name": "GraphLinq (PoS)", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x0cfc9a713a5c17bc8a5ff0379467f6558bacd0e0.png", + "aggregators": ["LiFi", "Socket", "Rubic"], + "occurrences": 3 + }, + "0x9a41e03fef7f16f552c6fba37ffa7590fb1ec0c4": { + "address": "0x9a41e03fef7f16f552c6fba37ffa7590fb1ec0c4", + "symbol": "CHAIN", + "decimals": 18, + "name": "Arch Blockchains (PoS)", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x9a41e03fef7f16f552c6fba37ffa7590fb1ec0c4.png", + "aggregators": ["LiFi", "Socket", "Rubic"], + "occurrences": 3 + }, + "0x07cc1cc3628cc1615120df781ef9fc8ec2feae09": { + "address": "0x07cc1cc3628cc1615120df781ef9fc8ec2feae09", + "symbol": "BEPRO", + "decimals": 18, + "name": "BetProtocolToken (PoS)", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x07cc1cc3628cc1615120df781ef9fc8ec2feae09.png", + "aggregators": ["LiFi", "Socket", "Rubic"], + "occurrences": 3 + }, + "0x030a6b1da67963fc22265d8c6686d1878d581b6b": { + "address": "0x030a6b1da67963fc22265d8c6686d1878d581b6b", + "symbol": "PASS", + "decimals": 6, + "name": "Blockpass (PoS)", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x030a6b1da67963fc22265d8c6686d1878d581b6b.png", + "aggregators": ["LiFi", "Socket", "Rubic"], + "occurrences": 3 + }, + "0x190eb8a183d22a4bdf278c6791b152228857c033": { + "address": "0x190eb8a183d22a4bdf278c6791b152228857c033", + "symbol": "AGIX", + "decimals": 8, + "name": "SingularityNET Token (PoS)", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x190eb8a183d22a4bdf278c6791b152228857c033.png", + "aggregators": ["LiFi", "Socket", "Rubic"], + "occurrences": 3 + }, + "0x1e289178612f5b6d32f692e312dcf783c74b2162": { + "address": "0x1e289178612f5b6d32f692e312dcf783c74b2162", + "symbol": "ISP", + "decimals": 18, + "name": "Ispolink Token (PoS)", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x1e289178612f5b6d32f692e312dcf783c74b2162.png", + "aggregators": ["LiFi", "Socket", "Rubic"], + "occurrences": 3 + }, + "0x769434dca303597c8fc4997bf3dab233e961eda2": { + "address": "0x769434dca303597c8fc4997bf3dab233e961eda2", + "symbol": "XSGD", + "decimals": 6, + "name": "XSGD (PoS)", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x769434dca303597c8fc4997bf3dab233e961eda2.png", + "aggregators": ["LiFi", "Socket", "Rubic"], + "occurrences": 3 + }, + "0x2934b36ca9a4b31e633c5be670c8c8b28b6aa015": { + "address": "0x2934b36ca9a4b31e633c5be670c8c8b28b6aa015", + "symbol": "THX", + "decimals": 18, + "name": "THX", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x2934b36ca9a4b31e633c5be670c8c8b28b6aa015.png", + "aggregators": ["LiFi", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x34cba1561424b192f263883ba2b8ccbbc12bb13f": { + "address": "0x34cba1561424b192f263883ba2b8ccbbc12bb13f", + "symbol": "MOAR", + "decimals": 18, + "name": "MOAR Finance (PoS)", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x34cba1561424b192f263883ba2b8ccbbc12bb13f.png", + "aggregators": ["LiFi", "Socket", "Rubic"], + "occurrences": 3 + }, + "0xada58df0f643d959c2a47c9d4d4c1a4defe3f11c": { + "address": "0xada58df0f643d959c2a47c9d4d4c1a4defe3f11c", + "symbol": "CRO", + "decimals": 8, + "name": "CRO (PoS)", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0xada58df0f643d959c2a47c9d4d4c1a4defe3f11c.png", + "aggregators": ["LiFi", "Socket", "Rubic"], + "occurrences": 3 + }, + "0x26373ec913876c9e6d38494dde458cb8649cb30c": { + "address": "0x26373ec913876c9e6d38494dde458cb8649cb30c", + "symbol": "OJA", + "decimals": 18, + "name": "Ojamu", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x26373ec913876c9e6d38494dde458cb8649cb30c.png", + "aggregators": ["LiFi", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x60e6895184448f3e8ef509d083e3cc3ac31f82fd": { + "address": "0x60e6895184448f3e8ef509d083e3cc3ac31f82fd", + "symbol": "KTX", + "decimals": 18, + "name": "KwikTrust (PoS)", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x60e6895184448f3e8ef509d083e3cc3ac31f82fd.png", + "aggregators": ["LiFi", "Rubic", "Rango"], + "occurrences": 3 + }, + "0xf84bd51eab957c2e7b7d646a3427c5a50848281d": { + "address": "0xf84bd51eab957c2e7b7d646a3427c5a50848281d", + "symbol": "AGAR", + "decimals": 8, + "name": "AGAR", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0xf84bd51eab957c2e7b7d646a3427c5a50848281d.png", + "aggregators": ["LiFi", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x0527c8c43250279d6eb74da1078193f5316fc9a0": { + "address": "0x0527c8c43250279d6eb74da1078193f5316fc9a0", + "symbol": "PYD", + "decimals": 18, + "name": "PolyQuity Dollar", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x0527c8c43250279d6eb74da1078193f5316fc9a0.png", + "aggregators": ["LiFi", "Rango", "SushiSwap"], + "occurrences": 3 + }, + "0xd6d3b4254b4526c3095d8ab00b75f186c56dd72c": { + "address": "0xd6d3b4254b4526c3095d8ab00b75f186c56dd72c", + "symbol": "IONS", + "decimals": 18, + "name": "Lithium Ventures", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0xd6d3b4254b4526c3095d8ab00b75f186c56dd72c.png", + "aggregators": ["LiFi", "Rubic", "Rango"], + "occurrences": 3 + }, + "0xe21b9bda4ecef9e4652bc5c6863f731c2151ef28": { + "address": "0xe21b9bda4ecef9e4652bc5c6863f731c2151ef28", + "symbol": "KTON", + "decimals": 18, + "name": "Darwinia Commitment Token (PoS)", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0xe21b9bda4ecef9e4652bc5c6863f731c2151ef28.png", + "aggregators": ["LiFi", "Socket", "Rubic"], + "occurrences": 3 + }, + "0xd43be54c1aedf7ee4099104f2dae4ea88b18a249": { + "address": "0xd43be54c1aedf7ee4099104f2dae4ea88b18a249", + "symbol": "TRAXX", + "decimals": 18, + "name": "TRAXX", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0xd43be54c1aedf7ee4099104f2dae4ea88b18a249.png", + "aggregators": ["LiFi", "Socket", "Rubic"], + "occurrences": 3 + }, + "0xeaecc18198a475c921b24b8a6c1c1f0f5f3f7ea0": { + "address": "0xeaecc18198a475c921b24b8a6c1c1f0f5f3f7ea0", + "symbol": "SEED", + "decimals": 18, + "name": "Seed (PoS)", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0xeaecc18198a475c921b24b8a6c1c1f0f5f3f7ea0.png", + "aggregators": ["LiFi", "Socket", "Rubic"], + "occurrences": 3 + }, + "0xc9c1c1c20b3658f8787cc2fd702267791f224ce1": { + "address": "0xc9c1c1c20b3658f8787cc2fd702267791f224ce1", + "symbol": "FTM", + "decimals": 18, + "name": "Fantom Token (PoS)", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0xc9c1c1c20b3658f8787cc2fd702267791f224ce1.png", + "aggregators": ["LiFi", "Socket", "Rubic"], + "occurrences": 3 + }, + "0x9a37814d1ec68ca5f8aab205f628869f3926ce3e": { + "address": "0x9a37814d1ec68ca5f8aab205f628869f3926ce3e", + "symbol": "LAYER", + "decimals": 18, + "name": "Unilayer (PoS)", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x9a37814d1ec68ca5f8aab205f628869f3926ce3e.png", + "aggregators": ["LiFi", "Socket", "Rubic"], + "occurrences": 3 + }, + "0xe8a05e85883f9663b18a38d7aa89853deaba56e3": { + "address": "0xe8a05e85883f9663b18a38d7aa89853deaba56e3", + "symbol": "VOLT", + "decimals": 18, + "name": "VOLTAGE (PoS)", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0xe8a05e85883f9663b18a38d7aa89853deaba56e3.png", + "aggregators": ["LiFi", "Socket", "Rubic"], + "occurrences": 3 + }, + "0x2ce13e4199443fdfff531abb30c9b6594446bbc7": { + "address": "0x2ce13e4199443fdfff531abb30c9b6594446bbc7", + "symbol": "RVF", + "decimals": 18, + "name": "Rocket Vault (PoS)", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x2ce13e4199443fdfff531abb30c9b6594446bbc7.png", + "aggregators": ["LiFi", "Socket", "Rubic"], + "occurrences": 3 + }, + "0x1fcbe5937b0cc2adf69772d228fa4205acf4d9b2": { + "address": "0x1fcbe5937b0cc2adf69772d228fa4205acf4d9b2", + "symbol": "BADGER", + "decimals": 18, + "name": "Badger (PoS)", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x1fcbe5937b0cc2adf69772d228fa4205acf4d9b2.png", + "aggregators": ["LiFi", "Socket", "Rubic"], + "occurrences": 3 + }, + "0x5f5f7ca63a9d2c5200bc03ca3335a975d8f771d9": { + "address": "0x5f5f7ca63a9d2c5200bc03ca3335a975d8f771d9", + "symbol": "BITS", + "decimals": 18, + "name": "BitStarters", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x5f5f7ca63a9d2c5200bc03ca3335a975d8f771d9.png", + "aggregators": ["Socket", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x280053c54006a624c26989cb8354fa4cb86f14d1": { + "address": "0x280053c54006a624c26989cb8354fa4cb86f14d1", + "symbol": "MIND", + "decimals": 18, + "name": "Morpheus Infrastructure Node(PoS)", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x280053c54006a624c26989cb8354fa4cb86f14d1.png", + "aggregators": ["Socket", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x2c826035c1c36986117a0e949bd6ad4bab54afe2": { + "address": "0x2c826035c1c36986117a0e949bd6ad4bab54afe2", + "symbol": "XIDR", + "decimals": 6, + "name": "XIDR", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x2c826035c1c36986117a0e949bd6ad4bab54afe2.png", + "aggregators": ["Socket", "Rubic", "Rango"], + "occurrences": 3 + }, + "0xce6bf09e5c7a3e65b84f88dcc6475c88d38ba5ef": { + "address": "0xce6bf09e5c7a3e65b84f88dcc6475c88d38ba5ef", + "symbol": "OPCT", + "decimals": 18, + "name": "Opacity (PoS)", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0xce6bf09e5c7a3e65b84f88dcc6475c88d38ba5ef.png", + "aggregators": ["Socket", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x3963a400b42377376d6c3d92ddf2d6288d8ee0d6": { + "address": "0x3963a400b42377376d6c3d92ddf2d6288d8ee0d6", + "symbol": "EQ9", + "decimals": 18, + "name": "Equals9", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x3963a400b42377376d6c3d92ddf2d6288d8ee0d6.png", + "aggregators": ["Socket", "Rubic", "Rango"], + "occurrences": 3 + }, + "0xf0b2b2d73a7c070e5f44a4e12b3f6a51949a3459": { + "address": "0xf0b2b2d73a7c070e5f44a4e12b3f6a51949a3459", + "symbol": "UNI", + "decimals": 18, + "name": "UNILAPSE", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0xf0b2b2d73a7c070e5f44a4e12b3f6a51949a3459.png", + "aggregators": ["Socket", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x18c3eb88c972390120bb4abd2f705c48f62e212c": { + "address": "0x18c3eb88c972390120bb4abd2f705c48f62e212c", + "symbol": "DEFI", + "decimals": 18, + "name": "Defiway Token", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x18c3eb88c972390120bb4abd2f705c48f62e212c.png", + "aggregators": ["Socket", "Rubic", "Rango"], + "occurrences": 3 + }, + "0xa7305ae84519ff8be02484cda45834c4e7d13dd6": { + "address": "0xa7305ae84519ff8be02484cda45834c4e7d13dd6", + "symbol": "UFARM", + "decimals": 18, + "name": "UniFarm", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0xa7305ae84519ff8be02484cda45834c4e7d13dd6.png", + "aggregators": ["Socket", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x9c6bfedc14b5c23e3900889436edca7805170f01": { + "address": "0x9c6bfedc14b5c23e3900889436edca7805170f01", + "symbol": "PHX", + "decimals": 18, + "name": "PHX", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x9c6bfedc14b5c23e3900889436edca7805170f01.png", + "aggregators": ["Socket", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x5f0e650708e060cbe092547f53dfaf1e17f0b371": { + "address": "0x5f0e650708e060cbe092547f53dfaf1e17f0b371", + "symbol": "FOXE", + "decimals": 18, + "name": "Fox Europe", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x5f0e650708e060cbe092547f53dfaf1e17f0b371.png", + "aggregators": ["Socket", "Rubic", "Rango"], + "occurrences": 3 + }, + "0xb4357054c3da8d46ed642383f03139ac7f090343": { + "address": "0xb4357054c3da8d46ed642383f03139ac7f090343", + "symbol": "PORT3", + "decimals": 18, + "name": "Port3 Network", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0xb4357054c3da8d46ed642383f03139ac7f090343.png", + "aggregators": ["Socket", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x04565fe9aa3ae571ada8e1bebf8282c4e5247b2a": { + "address": "0x04565fe9aa3ae571ada8e1bebf8282c4e5247b2a", + "symbol": "WGC", + "decimals": 6, + "name": "Wild Goat Coin", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x04565fe9aa3ae571ada8e1bebf8282c4e5247b2a.png", + "aggregators": ["Socket", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x411be1e071675df40fe1c08ca760bb7aa707cedf": { + "address": "0x411be1e071675df40fe1c08ca760bb7aa707cedf", + "symbol": "LFG", + "decimals": 18, + "name": "Gamerse", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x411be1e071675df40fe1c08ca760bb7aa707cedf.png", + "aggregators": ["Socket", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x5617604ba0a30e0ff1d2163ab94e50d8b6d0b0df": { + "address": "0x5617604ba0a30e0ff1d2163ab94e50d8b6d0b0df", + "symbol": "AX", + "decimals": 18, + "name": "AthleteX", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x5617604ba0a30e0ff1d2163ab94e50d8b6d0b0df.png", + "aggregators": ["Socket", "Rango", "SushiSwap"], + "occurrences": 3 + }, + "0x3f94618ad346f34f43e27f0cf46decbb0d396b1b": { + "address": "0x3f94618ad346f34f43e27f0cf46decbb0d396b1b", + "symbol": "FKR", + "decimals": 18, + "name": "Flicker", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x3f94618ad346f34f43e27f0cf46decbb0d396b1b.png", + "aggregators": ["Rubic", "Rango", "Sonarwatch"], + "occurrences": 3 + }, + "0x3b9e9100db1389c518d47c635d80a90ad4c4f41b": { + "address": "0x3b9e9100db1389c518d47c635d80a90ad4c4f41b", + "symbol": "FAN", + "decimals": 8, + "name": "Film.io", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x3b9e9100db1389c518d47c635d80a90ad4c4f41b.png", + "aggregators": ["Rubic", "Rango", "Sonarwatch"], + "occurrences": 3 + }, + "0xe77abb1e75d2913b2076dd16049992ffeaca5235": { + "address": "0xe77abb1e75d2913b2076dd16049992ffeaca5235", + "symbol": "DEOD", + "decimals": 18, + "name": "Decentrawood", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0xe77abb1e75d2913b2076dd16049992ffeaca5235.png", + "aggregators": ["Rubic", "Rango", "Sonarwatch"], + "occurrences": 3 + }, + "0xc1ab7e48fafee6b2596c65261392e59690ce7742": { + "address": "0xc1ab7e48fafee6b2596c65261392e59690ce7742", + "symbol": "ECET", + "decimals": 18, + "name": "Evercraft Ecotechnologies", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0xc1ab7e48fafee6b2596c65261392e59690ce7742.png", + "aggregators": ["Rubic", "Rango", "Sonarwatch"], + "occurrences": 3 + }, + "0xeb45921fedadf41df0bfcf5c33453acedda32441": { + "address": "0xeb45921fedadf41df0bfcf5c33453acedda32441", + "symbol": "PZUG", + "decimals": 18, + "name": "pZUG", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0xeb45921fedadf41df0bfcf5c33453acedda32441.png", + "aggregators": ["Rubic", "Rango", "SushiSwap"], + "occurrences": 3 + }, + "0x8054d4d130c3a84852f379424bcac75673a7486b": { + "address": "0x8054d4d130c3a84852f379424bcac75673a7486b", + "symbol": "PAUSD", + "decimals": 18, + "name": "Parallel USD", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x8054d4d130c3a84852f379424bcac75673a7486b.png", + "aggregators": ["Rubic", "Rango", "Sonarwatch"], + "occurrences": 3 + }, + "0x8929e9dbd2785e3ba16175e596cdd61520fee0d1": { + "address": "0x8929e9dbd2785e3ba16175e596cdd61520fee0d1", + "symbol": "ALTD", + "decimals": 18, + "name": "Altitude", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x8929e9dbd2785e3ba16175e596cdd61520fee0d1.png", + "aggregators": ["Rubic", "Rango", "Sonarwatch"], + "occurrences": 3 + }, + "0xf868939ee81f04f463010bc52eab91c0839ef08c": { + "address": "0xf868939ee81f04f463010bc52eab91c0839ef08c", + "symbol": "ATK", + "decimals": 18, + "name": "Attack Wagon", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0xf868939ee81f04f463010bc52eab91c0839ef08c.png", + "aggregators": ["Rubic", "Rango", "Sonarwatch"], + "occurrences": 3 + }, + "0x925fadb35b73720238cc78777d02ed4dd3100816": { + "address": "0x925fadb35b73720238cc78777d02ed4dd3100816", + "symbol": "AUTOS", + "decimals": 18, + "name": "AutoSingle", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x925fadb35b73720238cc78777d02ed4dd3100816.png", + "aggregators": ["Rubic", "Rango", "Sonarwatch"], + "occurrences": 3 + }, + "0xcddbd374a9df30bbbe4bc4c008fa229cb3587511": { + "address": "0xcddbd374a9df30bbbe4bc4c008fa229cb3587511", + "symbol": "DDM", + "decimals": 18, + "name": "Deutsche Mark", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0xcddbd374a9df30bbbe4bc4c008fa229cb3587511.png", + "aggregators": ["Rubic", "Rango", "Sonarwatch"], + "occurrences": 3 + }, + "0x245e5ddb65efea6522fa913229df1f4957fb2e21": { + "address": "0x245e5ddb65efea6522fa913229df1f4957fb2e21", + "symbol": "EGG", + "decimals": 18, + "name": "LoserChick EGG", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x245e5ddb65efea6522fa913229df1f4957fb2e21.png", + "aggregators": ["Rubic", "Rango", "Sonarwatch"], + "occurrences": 3 + }, + "0xc4a206a306f0db88f98a3591419bc14832536862": { + "address": "0xc4a206a306f0db88f98a3591419bc14832536862", + "symbol": "ELE", + "decimals": 18, + "name": "Elefant", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0xc4a206a306f0db88f98a3591419bc14832536862.png", + "aggregators": ["Rubic", "Rango", "Sonarwatch"], + "occurrences": 3 + }, + "0xe0ce60af0850bf54072635e66e79df17082a1109": { + "address": "0xe0ce60af0850bf54072635e66e79df17082a1109", + "symbol": "PROPEL", + "decimals": 18, + "name": "Propel", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0xe0ce60af0850bf54072635e66e79df17082a1109.png", + "aggregators": ["Rubic", "Rango", "SushiSwap"], + "occurrences": 3 + }, + "0xf796969fa47fb0748c80b8b153cbb895e88cbd54": { + "address": "0xf796969fa47fb0748c80b8b153cbb895e88cbd54", + "symbol": "OCAVU", + "decimals": 18, + "name": "Ocavu Network", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0xf796969fa47fb0748c80b8b153cbb895e88cbd54.png", + "aggregators": ["Rubic", "Rango", "Sonarwatch"], + "occurrences": 3 + }, + "0xd57f8b6f3e5d1e0ab85118f5e0dd893a08c43346": { + "address": "0xd57f8b6f3e5d1e0ab85118f5e0dd893a08c43346", + "symbol": "OSEA", + "decimals": 18, + "name": "Omnisea", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0xd57f8b6f3e5d1e0ab85118f5e0dd893a08c43346.png", + "aggregators": ["Rubic", "Rango", "Sonarwatch"], + "occurrences": 3 + }, + "0xb424f20a80117472175f03853e2901f6fb0c0016": { + "address": "0xb424f20a80117472175f03853e2901f6fb0c0016", + "symbol": "QUICK", + "decimals": 18, + "name": "Quick Drop", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0xb424f20a80117472175f03853e2901f6fb0c0016.png", + "aggregators": ["Rubic", "Rango", "Sonarwatch"], + "occurrences": 3 + }, + "0x182f1d39df9460d7aef29afbc80bbd68ed0a41d5": { + "address": "0x182f1d39df9460d7aef29afbc80bbd68ed0a41d5", + "symbol": "RUUF", + "decimals": 18, + "name": "RuufCoin", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x182f1d39df9460d7aef29afbc80bbd68ed0a41d5.png", + "aggregators": ["Rubic", "Rango", "Sonarwatch"], + "occurrences": 3 + }, + "0xad9f61563b104281b14322fec8b42eb67711bf68": { + "address": "0xad9f61563b104281b14322fec8b42eb67711bf68", + "symbol": "SNG", + "decimals": 18, + "name": "Synergy Land Token", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0xad9f61563b104281b14322fec8b42eb67711bf68.png", + "aggregators": ["Rubic", "Rango", "Sonarwatch"], + "occurrences": 3 + }, + "0xc61f39418cd27820b5d4e9ba4a7197eefaeb8b05": { + "address": "0xc61f39418cd27820b5d4e9ba4a7197eefaeb8b05", + "symbol": "TAMA", + "decimals": 18, + "name": "Tamadoge", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0xc61f39418cd27820b5d4e9ba4a7197eefaeb8b05.png", + "aggregators": ["Rubic", "Rango", "Sonarwatch"], + "occurrences": 3 + }, + "0x3b7e1ce09afe2bb3a23919afb65a38e627cfbe97": { + "address": "0x3b7e1ce09afe2bb3a23919afb65a38e627cfbe97", + "symbol": "DST", + "decimals": 18, + "name": "Dragon Soul Token", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x3b7e1ce09afe2bb3a23919afb65a38e627cfbe97.png", + "aggregators": ["Rubic", "Rango", "Sonarwatch"], + "occurrences": 3 + }, + "0xbe75385304b3bca6fd25b755e849f63b70e84793": { + "address": "0xbe75385304b3bca6fd25b755e849f63b70e84793", + "symbol": "SWIO", + "decimals": 18, + "name": "Second World Games", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0xbe75385304b3bca6fd25b755e849f63b70e84793.png", + "aggregators": ["Rubic", "Rango", "Sonarwatch"], + "occurrences": 3 + }, + "0xc46a37fbbe433ef24bc7b9388c8728ddcf3ca87c": { + "address": "0xc46a37fbbe433ef24bc7b9388c8728ddcf3ca87c", + "symbol": "MFTU", + "decimals": 18, + "name": "Mainstream For The Underground", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0xc46a37fbbe433ef24bc7b9388c8728ddcf3ca87c.png", + "aggregators": ["Rubic", "Rango", "Sonarwatch"], + "occurrences": 3 + }, + "0x981aecc6eb4d382b96a02b75e931900705e95a31": { + "address": "0x981aecc6eb4d382b96a02b75e931900705e95a31", + "symbol": "SAVG", + "decimals": 18, + "name": "SAVAGE", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x981aecc6eb4d382b96a02b75e931900705e95a31.png", + "aggregators": ["Rubic", "Rango", "Sonarwatch"], + "occurrences": 3 + }, + "0x656bf6767fa8863ac0dd0b7d2a26602b838a2e70": { + "address": "0x656bf6767fa8863ac0dd0b7d2a26602b838a2e70", + "symbol": "FITT", + "decimals": 18, + "name": "Fitmint", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x656bf6767fa8863ac0dd0b7d2a26602b838a2e70.png", + "aggregators": ["Rubic", "Rango", "Sonarwatch"], + "occurrences": 3 + }, + "0x5dfd5edfde4d8ec9e632dca9d09fc7e833f74210": { + "address": "0x5dfd5edfde4d8ec9e632dca9d09fc7e833f74210", + "symbol": "ISKY", + "decimals": 18, + "name": "Infinity Skies", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x5dfd5edfde4d8ec9e632dca9d09fc7e833f74210.png", + "aggregators": ["Rubic", "Rango", "Sonarwatch"], + "occurrences": 3 + }, + "0x76bf0c28e604cc3fe9967c83b3c3f31c213cfe64": { + "address": "0x76bf0c28e604cc3fe9967c83b3c3f31c213cfe64", + "symbol": "CRYSTL", + "decimals": 18, + "name": "Crystl Finance", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x76bf0c28e604cc3fe9967c83b3c3f31c213cfe64.png", + "aggregators": ["Rubic", "Rango", "Sonarwatch"], + "occurrences": 3 + }, + "0x23001ae6cd2f0644c5846e156565998334fc2be3": { + "address": "0x23001ae6cd2f0644c5846e156565998334fc2be3", + "symbol": "ABYS", + "decimals": 8, + "name": "Trinity Of The Fabled Abyss Fragment", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x23001ae6cd2f0644c5846e156565998334fc2be3.png", + "aggregators": ["Rubic", "Rango", "Sonarwatch"], + "occurrences": 3 + }, + "0x6bd10299f4f1d31b3489dc369ea958712d27c81b": { + "address": "0x6bd10299f4f1d31b3489dc369ea958712d27c81b", + "symbol": "ADF", + "decimals": 18, + "name": "Art de Finance", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x6bd10299f4f1d31b3489dc369ea958712d27c81b.png", + "aggregators": ["Rubic", "Rango", "Sonarwatch"], + "occurrences": 3 + }, + "0x503836c8c3a453c57f58cc99b070f2e78ec14fc0": { + "address": "0x503836c8c3a453c57f58cc99b070f2e78ec14fc0", + "symbol": "SPORT", + "decimals": 18, + "name": "SPORT", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x503836c8c3a453c57f58cc99b070f2e78ec14fc0.png", + "aggregators": ["Rubic", "Rango", "Sonarwatch"], + "occurrences": 3 + }, + "0xa7051c5a22d963b81d71c2ba64d46a877fbc1821": { + "address": "0xa7051c5a22d963b81d71c2ba64d46a877fbc1821", + "symbol": "EROWAN", + "decimals": 18, + "name": "Sifchain", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0xa7051c5a22d963b81d71c2ba64d46a877fbc1821.png", + "aggregators": ["Rubic", "Rango", "Sonarwatch"], + "occurrences": 3 + }, + "0x5a7bb7b8eff493625a2bb855445911e63a490e42": { + "address": "0x5a7bb7b8eff493625a2bb855445911e63a490e42", + "symbol": "TSUBASAUT", + "decimals": 8, + "name": "TSUBASA Utilitiy Token", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x5a7bb7b8eff493625a2bb855445911e63a490e42.png", + "aggregators": ["Rubic", "Rango", "Sonarwatch"], + "occurrences": 3 + }, + "0xf46cb10e8c5fb9368bbf497a3176b80c0af66d44": { + "address": "0xf46cb10e8c5fb9368bbf497a3176b80c0af66d44", + "symbol": "VP", + "decimals": 11, + "name": "Vortex Protocol", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0xf46cb10e8c5fb9368bbf497a3176b80c0af66d44.png", + "aggregators": ["Rubic", "Rango", "Sonarwatch"], + "occurrences": 3 + }, + "0xf36f79feb5d97e18c69078d8d13d941cae447a04": { + "address": "0xf36f79feb5d97e18c69078d8d13d941cae447a04", + "symbol": "B01", + "decimals": 18, + "name": "b0rder1ess", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0xf36f79feb5d97e18c69078d8d13d941cae447a04.png", + "aggregators": ["Rubic", "Squid", "Rango"], + "occurrences": 3 + }, + "0x1a7e49125a6595588c9556f07a4c006461b24545": { + "address": "0x1a7e49125a6595588c9556f07a4c006461b24545", + "symbol": "AKI", + "decimals": 18, + "name": "Aki Network", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x1a7e49125a6595588c9556f07a4c006461b24545.png", + "aggregators": ["Rubic", "Rango", "Sonarwatch"], + "occurrences": 3 + }, + "0x2b1d36f5b61addaf7da7ebbd11b35fd8cfb0de31": { + "address": "0x2b1d36f5b61addaf7da7ebbd11b35fd8cfb0de31", + "symbol": "ITP", + "decimals": 18, + "name": "Interport Token", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x2b1d36f5b61addaf7da7ebbd11b35fd8cfb0de31.png", + "aggregators": ["Rubic", "Rango", "Sonarwatch"], + "occurrences": 3 + }, + "0xe78aee6ccb05471a69677fb74da80f5d251c042b": { + "address": "0xe78aee6ccb05471a69677fb74da80f5d251c042b", + "symbol": "TAKI", + "decimals": 18, + "name": "Taki Games", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0xe78aee6ccb05471a69677fb74da80f5d251c042b.png", + "aggregators": ["Rubic", "Rango", "Sonarwatch"], + "occurrences": 3 + }, + "0xe319519d910e733098fb559c2b10cb70ed854603": { + "address": "0xe319519d910e733098fb559c2b10cb70ed854603", + "symbol": "GQB", + "decimals": 18, + "name": "GuildQB Token", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0xe319519d910e733098fb559c2b10cb70ed854603.png", + "aggregators": ["Rubic", "Rango", "Sonarwatch"], + "occurrences": 3 + }, + "0x12a4cebf81f8671faf1ab0acea4e3429e42869e7": { + "address": "0x12a4cebf81f8671faf1ab0acea4e3429e42869e7", + "symbol": "HOM", + "decimals": 18, + "name": "Homeety", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x12a4cebf81f8671faf1ab0acea4e3429e42869e7.png", + "aggregators": ["Rubic", "Rango", "Sonarwatch"], + "occurrences": 3 + }, + "0xdab35042e63e93cc8556c9bae482e5415b5ac4b1": { + "address": "0xdab35042e63e93cc8556c9bae482e5415b5ac4b1", + "symbol": "IRIS", + "decimals": 18, + "name": "Iris", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0xdab35042e63e93cc8556c9bae482e5415b5ac4b1.png", + "aggregators": ["Rubic", "Rango", "Sonarwatch"], + "occurrences": 3 + }, + "0x5198e7cc1640049de37d1bd10b03fa5a3afda120": { + "address": "0x5198e7cc1640049de37d1bd10b03fa5a3afda120", + "symbol": "KABY", + "decimals": 18, + "name": "Kaby Arena", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x5198e7cc1640049de37d1bd10b03fa5a3afda120.png", + "aggregators": ["Rubic", "Rango", "Sonarwatch"], + "occurrences": 3 + }, + "0xa25610a77077390a75ad9072a084c5fbc7d43a0d": { + "address": "0xa25610a77077390a75ad9072a084c5fbc7d43a0d", + "symbol": "MCASH", + "decimals": 18, + "name": "Monsoon Finance", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0xa25610a77077390a75ad9072a084c5fbc7d43a0d.png", + "aggregators": ["Rubic", "Rango", "Sonarwatch"], + "occurrences": 3 + }, + "0x411bc96881a62572ff33c9d8ce60df99e3d96cd8": { + "address": "0x411bc96881a62572ff33c9d8ce60df99e3d96cd8", + "symbol": "MRST", + "decimals": 18, + "name": "Mars Token", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x411bc96881a62572ff33c9d8ce60df99e3d96cd8.png", + "aggregators": ["Rubic", "Rango", "Sonarwatch"], + "occurrences": 3 + }, + "0xc26d47d5c33ac71ac5cf9f776d63ba292a4f7842": { + "address": "0xc26d47d5c33ac71ac5cf9f776d63ba292a4f7842", + "symbol": "BNT", + "decimals": 18, + "name": "Bancor Network Token", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0xc26d47d5c33ac71ac5cf9f776d63ba292a4f7842.png", + "aggregators": [ + "UniswapLabs", + "LiFi", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 6 + }, + "0x735fa792e731a2e8f83f32eb539841b7b72e6d8f": { + "address": "0x735fa792e731a2e8f83f32eb539841b7b72e6d8f", + "symbol": "EEUR", + "decimals": 18, + "name": "ARYZE eEUR", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x735fa792e731a2e8f83f32eb539841b7b72e6d8f.png", + "aggregators": [ + "CoinGecko", + "LiFi", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 6 + }, + "0x612d833c0c7a54cdfbe9a4328b6d658020563ec0": { + "address": "0x612d833c0c7a54cdfbe9a4328b6d658020563ec0", + "symbol": "PINE", + "decimals": 18, + "name": "Pine", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x612d833c0c7a54cdfbe9a4328b6d658020563ec0.png", + "aggregators": [ + "CoinGecko", + "LiFi", + "Rubic", + "Squid", + "Rango", + "Sonarwatch" + ], + "occurrences": 6 + }, + "0x32dc2dd3c2be453a369625e6fe0e438aed814919": { + "address": "0x32dc2dd3c2be453a369625e6fe0e438aed814919", + "symbol": "KEY", + "decimals": 18, + "name": "SelfKey", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x32dc2dd3c2be453a369625e6fe0e438aed814919.png", + "aggregators": [ + "CoinGecko", + "LiFi", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 6 + }, + "0x6d1fdbb266fcc09a16a22016369210a15bb95761": { + "address": "0x6d1fdbb266fcc09a16a22016369210a15bb95761", + "symbol": "SFRXETH", + "decimals": 18, + "name": "Staked Frax Ether", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x6d1fdbb266fcc09a16a22016369210a15bb95761.png", + "aggregators": [ + "CoinGecko", + "LiFi", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 6 + }, + "0x2a93172c8dccbfbc60a39d56183b7279a2f647b4": { + "address": "0x2a93172c8dccbfbc60a39d56183b7279a2f647b4", + "symbol": "DG", + "decimals": 18, + "name": "decentral.games", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x2a93172c8dccbfbc60a39d56183b7279a2f647b4.png", + "aggregators": [ + "CoinGecko", + "LiFi", + "Rubic", + "Rango", + "Sonarwatch", + "SushiSwap" + ], + "occurrences": 6 + }, + "0xc553a5a789f1bb56a72847b3fda1de3e16e6763f": { + "address": "0xc553a5a789f1bb56a72847b3fda1de3e16e6763f", + "symbol": "CYG", + "decimals": 18, + "name": "CygnusDAO", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0xc553a5a789f1bb56a72847b3fda1de3e16e6763f.png", + "aggregators": [ + "CoinGecko", + "LiFi", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 6 + }, + "0xab0b2ddb9c7e440fac8e140a89c0dbcbf2d7bbff": { + "address": "0xab0b2ddb9c7e440fac8e140a89c0dbcbf2d7bbff", + "symbol": "IFARM", + "decimals": 18, + "name": "iFARM", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0xab0b2ddb9c7e440fac8e140a89c0dbcbf2d7bbff.png", + "aggregators": [ + "CoinGecko", + "1inch", + "LiFi", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 6 + }, + "0xcdb3867935247049e87c38ea270edd305d84c9ae": { + "address": "0xcdb3867935247049e87c38ea270edd305d84c9ae", + "symbol": "VCHF", + "decimals": 18, + "name": "VNX Swiss Franc", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0xcdb3867935247049e87c38ea270edd305d84c9ae.png", + "aggregators": [ + "CoinGecko", + "LiFi", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 6 + }, + "0x4e830f67ec499e69930867f9017aeb5b3f629c73": { + "address": "0x4e830f67ec499e69930867f9017aeb5b3f629c73", + "symbol": "ODDZ", + "decimals": 18, + "name": "Oddz", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x4e830f67ec499e69930867f9017aeb5b3f629c73.png", + "aggregators": [ + "CoinGecko", + "LiFi", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 6 + }, + "0x11cd37bb86f65419713f30673a480ea33c826872": { + "address": "0x11cd37bb86f65419713f30673a480ea33c826872", + "symbol": "WETH", + "decimals": 18, + "name": "Wrapped Ether (Wormhole)", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x11cd37bb86f65419713f30673a480ea33c826872.png", + "aggregators": [ + "Metamask", + "Socket", + "Rubic", + "Squid", + "Rango", + "Sonarwatch" + ], + "occurrences": 6 + }, + "0xa5ff48e326958e0ce6fdf9518de561f2b5f57da3": { + "address": "0xa5ff48e326958e0ce6fdf9518de561f2b5f57da3", + "symbol": "LKR", + "decimals": 18, + "name": "Lokr", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0xa5ff48e326958e0ce6fdf9518de561f2b5f57da3.png", + "aggregators": [ + "CoinGecko", + "LiFi", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 6 + }, + "0x46777c76dbbe40fabb2aab99e33ce20058e76c59": { + "address": "0x46777c76dbbe40fabb2aab99e33ce20058e76c59", + "symbol": "L3", + "decimals": 18, + "name": "Layer3", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x46777c76dbbe40fabb2aab99e33ce20058e76c59.png", + "aggregators": [ + "CoinGecko", + "LiFi", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 6 + }, + "0x51540d15957bdc0fdb87d32616c8d658d59f77c6": { + "address": "0x51540d15957bdc0fdb87d32616c8d658d59f77c6", + "symbol": "WINTER", + "decimals": 18, + "name": "Winter", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x51540d15957bdc0fdb87d32616c8d658d59f77c6.png", + "aggregators": [ + "CoinGecko", + "LiFi", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 6 + }, + "0x84e1670f61347cdaed56dcc736fb990fbb47ddc1": { + "address": "0x84e1670f61347cdaed56dcc736fb990fbb47ddc1", + "symbol": "LRC", + "decimals": 18, + "name": "LoopringCoin V2 (PoS)", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x84e1670f61347cdaed56dcc736fb990fbb47ddc1.png", + "aggregators": ["UniswapLabs", "LiFi", "Socket", "Rubic", "Rango"], + "occurrences": 5 + }, + "0x19782d3dc4701ceeedcd90f0993f0a9126ed89d0": { + "address": "0x19782d3dc4701ceeedcd90f0993f0a9126ed89d0", + "symbol": "REN", + "decimals": 18, + "name": "Republic Token", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x19782d3dc4701ceeedcd90f0993f0a9126ed89d0.png", + "aggregators": [ + "UniswapLabs", + "LiFi", + "Socket", + "Rubic", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x0735fa49eb7d9ddf3e4d9a9f01229627f67632a1": { + "address": "0x0735fa49eb7d9ddf3e4d9a9f01229627f67632a1", + "symbol": "CROC", + "decimals": 18, + "name": "Cropto Corn Token", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x0735fa49eb7d9ddf3e4d9a9f01229627f67632a1.png", + "aggregators": [ + "CoinGecko", + "LiFi", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x8eb270e296023e9d92081fdf967ddd7878724424": { + "address": "0x8eb270e296023e9d92081fdf967ddd7878724424", + "symbol": "AGHST", + "decimals": 18, + "name": "Aave v3 GHST", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x8eb270e296023e9d92081fdf967ddd7878724424.png", + "aggregators": [ + "CoinGecko", + "LiFi", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x6d80113e533a2c0fe82eabd35f1875dcea89ea97": { + "address": "0x6d80113e533a2c0fe82eabd35f1875dcea89ea97", + "symbol": "AWMATIC", + "decimals": 18, + "name": "Aave v3 WMATIC", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x6d80113e533a2c0fe82eabd35f1875dcea89ea97.png", + "aggregators": [ + "CoinGecko", + "LiFi", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x3af2dd7b91d8faceccc26d21a065267817213d37": { + "address": "0x3af2dd7b91d8faceccc26d21a065267817213d37", + "symbol": "RIB", + "decimals": 8, + "name": "Ribus", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x3af2dd7b91d8faceccc26d21a065267817213d37.png", + "aggregators": [ + "CoinGecko", + "LiFi", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x4d08ef733cf27b4cd37810cf9b72a82d2a135549": { + "address": "0x4d08ef733cf27b4cd37810cf9b72a82d2a135549", + "symbol": "DEAR", + "decimals": 18, + "name": "DEAR Token", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x4d08ef733cf27b4cd37810cf9b72a82d2a135549.png", + "aggregators": [ + "CoinGecko", + "LiFi", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0xa4335da338ec4c07c391fc1a9bf75f306adadc08": { + "address": "0xa4335da338ec4c07c391fc1a9bf75f306adadc08", + "symbol": "EUSD", + "decimals": 18, + "name": "ARYZE eUSD", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0xa4335da338ec4c07c391fc1a9bf75f306adadc08.png", + "aggregators": ["CoinGecko", "LiFi", "Socket", "Rubic", "Rango"], + "occurrences": 5 + }, + "0x823cd4264c1b951c9209ad0deaea9988fe8429bf": { + "address": "0x823cd4264c1b951c9209ad0deaea9988fe8429bf", + "symbol": "MAAAVE", + "decimals": 18, + "name": "Matic Aave Interest Bearing AAVE", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x823cd4264c1b951c9209ad0deaea9988fe8429bf.png", + "aggregators": [ + "CoinGecko", + "LiFi", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x3f374ed3c8e61a0d250f275609be2219005c021e": { + "address": "0x3f374ed3c8e61a0d250f275609be2219005c021e", + "symbol": "ARCADIUM", + "decimals": 18, + "name": "Arcadium", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x3f374ed3c8e61a0d250f275609be2219005c021e.png", + "aggregators": [ + "CoinGecko", + "LiFi", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x950e1561b7a7deb1a32a6419fd435410daf851b0": { + "address": "0x950e1561b7a7deb1a32a6419fd435410daf851b0", + "symbol": "DUBI", + "decimals": 18, + "name": "Decentralized Universal Basic Income", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x950e1561b7a7deb1a32a6419fd435410daf851b0.png", + "aggregators": [ + "CoinGecko", + "LiFi", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x37b8e1152fb90a867f3dcca6e8d537681b04705e": { + "address": "0x37b8e1152fb90a867f3dcca6e8d537681b04705e", + "symbol": "P-GYD", + "decimals": 18, + "name": "Proto Gyro Dollar", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x37b8e1152fb90a867f3dcca6e8d537681b04705e.png", + "aggregators": [ + "CoinGecko", + "LiFi", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x5b901182b9b2820a713ff5d88519999c550d40e8": { + "address": "0x5b901182b9b2820a713ff5d88519999c550d40e8", + "symbol": "LFIT", + "decimals": 18, + "name": "LFIT", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x5b901182b9b2820a713ff5d88519999c550d40e8.png", + "aggregators": [ + "CoinGecko", + "LiFi", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x7b3bd12675c6b9d6993eb81283cb68e6eb9260b5": { + "address": "0x7b3bd12675c6b9d6993eb81283cb68e6eb9260b5", + "symbol": "CTF", + "decimals": 18, + "name": "Crypto Trading Fund", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x7b3bd12675c6b9d6993eb81283cb68e6eb9260b5.png", + "aggregators": [ + "CoinGecko", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x28767e286113ab01ee819b9398a22d6f27badb6e": { + "address": "0x28767e286113ab01ee819b9398a22d6f27badb6e", + "symbol": "RABBIT", + "decimals": 18, + "name": "RabbitCoin Exchange", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x28767e286113ab01ee819b9398a22d6f27badb6e.png", + "aggregators": [ + "CoinGecko", + "LiFi", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x44d09156c7b4acf0c64459fbcced7613f5519918": { + "address": "0x44d09156c7b4acf0c64459fbcced7613f5519918", + "symbol": "$KMC", + "decimals": 18, + "name": "Kitsumon", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x44d09156c7b4acf0c64459fbcced7613f5519918.png", + "aggregators": [ + "CoinGecko", + "1inch", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x22737f5bbb7c5b5ba407b0c1c9a9cdf66cf25d7d": { + "address": "0x22737f5bbb7c5b5ba407b0c1c9a9cdf66cf25d7d", + "symbol": "SNPT", + "decimals": 18, + "name": "SNPIT TOKEN", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x22737f5bbb7c5b5ba407b0c1c9a9cdf66cf25d7d.png", + "aggregators": [ + "CoinGecko", + "LiFi", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0xf695f9499d18584363aeed0eba4c381d350f81c3": { + "address": "0xf695f9499d18584363aeed0eba4c381d350f81c3", + "symbol": "RVR", + "decimals": 9, + "name": "Reality VR", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0xf695f9499d18584363aeed0eba4c381d350f81c3.png", + "aggregators": [ + "CoinGecko", + "LiFi", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x74dd45dd579cad749f9381d6227e7e02277c944b": { + "address": "0x74dd45dd579cad749f9381d6227e7e02277c944b", + "symbol": "CULO", + "decimals": 9, + "name": "CULO", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x74dd45dd579cad749f9381d6227e7e02277c944b.png", + "aggregators": [ + "CoinGecko", + "Rubic", + "Squid", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x0c8c8ae8bc3a69dc8482c01ceacfb588bb516b01": { + "address": "0x0c8c8ae8bc3a69dc8482c01ceacfb588bb516b01", + "symbol": "AURORA", + "decimals": 18, + "name": "AuroraToken", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x0c8c8ae8bc3a69dc8482c01ceacfb588bb516b01.png", + "aggregators": [ + "CoinGecko", + "LiFi", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x82a0e6c02b91ec9f6ff943c0a933c03dbaa19689": { + "address": "0x82a0e6c02b91ec9f6ff943c0a933c03dbaa19689", + "symbol": "WNT", + "decimals": 18, + "name": "Wicrypt", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x82a0e6c02b91ec9f6ff943c0a933c03dbaa19689.png", + "aggregators": [ + "CoinGecko", + "LiFi", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0xc3211f7eb806e916d54a2a166fc36188cffde25b": { + "address": "0xc3211f7eb806e916d54a2a166fc36188cffde25b", + "symbol": "CROB", + "decimals": 18, + "name": "Cropto Barley Token", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0xc3211f7eb806e916d54a2a166fc36188cffde25b.png", + "aggregators": [ + "CoinGecko", + "LiFi", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x0da0bd2f57a27a70665d53db4ea71e1f26f77a46": { + "address": "0x0da0bd2f57a27a70665d53db4ea71e1f26f77a46", + "symbol": "CROW", + "decimals": 18, + "name": "Cropto Wheat Token", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x0da0bd2f57a27a70665d53db4ea71e1f26f77a46.png", + "aggregators": [ + "CoinGecko", + "LiFi", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x16dfb898cf7029303c2376031392cb9bac450f94": { + "address": "0x16dfb898cf7029303c2376031392cb9bac450f94", + "symbol": "DMA", + "decimals": 18, + "name": "Dragoma", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x16dfb898cf7029303c2376031392cb9bac450f94.png", + "aggregators": [ + "CoinGecko", + "LiFi", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0xcdf937995a55a9ab551d81b463ac0f7f02795368": { + "address": "0xcdf937995a55a9ab551d81b463ac0f7f02795368", + "symbol": "VSC", + "decimals": 18, + "name": "Vyvo Smart Chain", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0xcdf937995a55a9ab551d81b463ac0f7f02795368.png", + "aggregators": [ + "CoinGecko", + "LiFi", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x13590c53df63b52e159328c5b4ffb5f6dc5163c0": { + "address": "0x13590c53df63b52e159328c5b4ffb5f6dc5163c0", + "symbol": "FNCT", + "decimals": 18, + "name": "FNCT", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x13590c53df63b52e159328c5b4ffb5f6dc5163c0.png", + "aggregators": ["CoinGecko", "LiFi", "Socket", "Rubic", "Rango"], + "occurrences": 5 + }, + "0x131409b31bf446737dd04353d43dacada544b6fa": { + "address": "0x131409b31bf446737dd04353d43dacada544b6fa", + "symbol": "USC", + "decimals": 6, + "name": "Classic USD", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x131409b31bf446737dd04353d43dacada544b6fa.png", + "aggregators": [ + "CoinGecko", + "LiFi", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0xfce60bbc52a5705cec5b445501fbaf3274dc43d0": { + "address": "0xfce60bbc52a5705cec5b445501fbaf3274dc43d0", + "symbol": "ACRED", + "decimals": 6, + "name": "Apollo Diversified Credit Securitize Fund", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0xfce60bbc52a5705cec5b445501fbaf3274dc43d0.png", + "aggregators": [ + "CoinGecko", + "LiFi", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0xe7e72be51c3b4e1f3ceb34e177e1ba1c1744fd7d": { + "address": "0xe7e72be51c3b4e1f3ceb34e177e1ba1c1744fd7d", + "symbol": "TALK", + "decimals": 18, + "name": "Talken", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0xe7e72be51c3b4e1f3ceb34e177e1ba1c1744fd7d.png", + "aggregators": [ + "CoinGecko", + "LiFi", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0xa0769f7a8fc65e47de93797b4e21c073c117fc80": { + "address": "0xa0769f7a8fc65e47de93797b4e21c073c117fc80", + "symbol": "EUTBL", + "decimals": 5, + "name": "Spiko EU T-Bills Money Market Fund", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0xa0769f7a8fc65e47de93797b4e21c073c117fc80.png", + "aggregators": [ + "CoinGecko", + "LiFi", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0xe4880249745eac5f1ed9d8f7df844792d560e750": { + "address": "0xe4880249745eac5f1ed9d8f7df844792d560e750", + "symbol": "USTBL", + "decimals": 5, + "name": "Spiko US T-Bills Money Market Fund", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0xe4880249745eac5f1ed9d8f7df844792d560e750.png", + "aggregators": [ + "CoinGecko", + "LiFi", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x9a6a40cdf21a0af417f1b815223fd92c85636c58": { + "address": "0x9a6a40cdf21a0af417f1b815223fd92c85636c58", + "symbol": "BSKT", + "decimals": 5, + "name": "Basket", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x9a6a40cdf21a0af417f1b815223fd92c85636c58.png", + "aggregators": [ + "CoinGecko", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x38029c62dfa30d9fd3cadf4c64e9b2ab21dbda17": { + "address": "0x38029c62dfa30d9fd3cadf4c64e9b2ab21dbda17", + "symbol": "DUBBZ", + "decimals": 18, + "name": "Dubbz", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x38029c62dfa30d9fd3cadf4c64e9b2ab21dbda17.png", + "aggregators": [ + "CoinGecko", + "LiFi", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0xe292178333fc7424211795895865adac05baf3be": { + "address": "0xe292178333fc7424211795895865adac05baf3be", + "symbol": "JARVIS", + "decimals": 18, + "name": "Jarvis", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0xe292178333fc7424211795895865adac05baf3be.png", + "aggregators": [ + "CoinGecko", + "LiFi", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0xe50fa9b3c56ffb159cb0fca61f5c9d750e8128c8": { + "address": "0xe50fa9b3c56ffb159cb0fca61f5c9d750e8128c8", + "symbol": "AWETH", + "decimals": 18, + "name": "Aave v3 WETH", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0xe50fa9b3c56ffb159cb0fca61f5c9d750e8128c8.png", + "aggregators": [ + "CoinGecko", + "LiFi", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x078f358208685046a11c85e8ad32895ded33a249": { + "address": "0x078f358208685046a11c85e8ad32895ded33a249", + "symbol": "AWBTC", + "decimals": 8, + "name": "Aave v3 WBTC", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x078f358208685046a11c85e8ad32895ded33a249.png", + "aggregators": [ + "CoinGecko", + "LiFi", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x6ab707aca953edaefbc4fd23ba73294241490620": { + "address": "0x6ab707aca953edaefbc4fd23ba73294241490620", + "symbol": "AUSDT", + "decimals": 6, + "name": "Aave v3 USDT", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x6ab707aca953edaefbc4fd23ba73294241490620.png", + "aggregators": [ + "CoinGecko", + "LiFi", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0xb1a91036e4a3c144efed953e0b6cc5f6b98ad256": { + "address": "0xb1a91036e4a3c144efed953e0b6cc5f6b98ad256", + "symbol": "MUBI", + "decimals": 18, + "name": "Multibit", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0xb1a91036e4a3c144efed953e0b6cc5f6b98ad256.png", + "aggregators": [ + "CoinGecko", + "LiFi", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x82e64f49ed5ec1bc6e43dad4fc8af9bb3a2312ee": { + "address": "0x82e64f49ed5ec1bc6e43dad4fc8af9bb3a2312ee", + "symbol": "ADAI", + "decimals": 18, + "name": "Aave v3 DAI", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x82e64f49ed5ec1bc6e43dad4fc8af9bb3a2312ee.png", + "aggregators": [ + "CoinGecko", + "LiFi", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0xf329e36c7bf6e5e86ce2150875a84ce77f477375": { + "address": "0xf329e36c7bf6e5e86ce2150875a84ce77f477375", + "symbol": "AAAVE", + "decimals": 18, + "name": "Aave v3 AAVE", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0xf329e36c7bf6e5e86ce2150875a84ce77f477375.png", + "aggregators": [ + "CoinGecko", + "LiFi", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x191c10aa4af7c30e871e70c95db0e4eb77237530": { + "address": "0x191c10aa4af7c30e871e70c95db0e4eb77237530", + "symbol": "ALINK", + "decimals": 18, + "name": "Aave v3 LINK", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x191c10aa4af7c30e871e70c95db0e4eb77237530.png", + "aggregators": [ + "CoinGecko", + "LiFi", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0xb541a306dd240ef04fb5e7e0db9a3c6cb7ddbb07": { + "address": "0xb541a306dd240ef04fb5e7e0db9a3c6cb7ddbb07", + "symbol": "WFDP", + "decimals": 18, + "name": "WFDP", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0xb541a306dd240ef04fb5e7e0db9a3c6cb7ddbb07.png", + "aggregators": [ + "CoinGecko", + "LiFi", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x24834bbec7e39ef42f4a75eaf8e5b6486d3f0e57": { + "address": "0x24834bbec7e39ef42f4a75eaf8e5b6486d3f0e57", + "symbol": "LUNC", + "decimals": 18, + "name": "Wrapped Terra Classic", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x24834bbec7e39ef42f4a75eaf8e5b6486d3f0e57.png", + "aggregators": [ + "CoinGecko", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x513c7e3a9c69ca3e22550ef58ac1c0088e918fff": { + "address": "0x513c7e3a9c69ca3e22550ef58ac1c0088e918fff", + "symbol": "ACRV", + "decimals": 18, + "name": "Aave v3 CRV", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x513c7e3a9c69ca3e22550ef58ac1c0088e918fff.png", + "aggregators": [ + "CoinGecko", + "LiFi", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0xca30c93b02514f86d5c86a6e375e3a330b435fb5": { + "address": "0xca30c93b02514f86d5c86a6e375e3a330b435fb5", + "symbol": "BIB01", + "decimals": 18, + "name": "Backed IB01 $ Treasury Bond 0-1yr", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0xca30c93b02514f86d5c86a6e375e3a330b435fb5.png", + "aggregators": [ + "CoinGecko", + "LiFi", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x44e3ae622c1570dc6e492adb8de92d01ca923d26": { + "address": "0x44e3ae622c1570dc6e492adb8de92d01ca923d26", + "symbol": "RYZE", + "decimals": 18, + "name": "Ryze", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x44e3ae622c1570dc6e492adb8de92d01ca923d26.png", + "aggregators": [ + "CoinGecko", + "LiFi", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x9de41aff9f55219d5bf4359f167d1d0c772a396d": { + "address": "0x9de41aff9f55219d5bf4359f167d1d0c772a396d", + "symbol": "CADC", + "decimals": 18, + "name": "CADC", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x9de41aff9f55219d5bf4359f167d1d0c772a396d.png", + "aggregators": ["CoinGecko", "LiFi", "Socket", "Rubic", "Rango"], + "occurrences": 5 + }, + "0x764a726d9ced0433a8d7643335919deb03a9a935": { + "address": "0x764a726d9ced0433a8d7643335919deb03a9a935", + "symbol": "POKT", + "decimals": 6, + "name": "Pocket Network", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x764a726d9ced0433a8d7643335919deb03a9a935.png", + "aggregators": [ + "CoinGecko", + "LiFi", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0xe4095d9372e68d108225c306a4491cacfb33b097": { + "address": "0xe4095d9372e68d108225c306a4491cacfb33b097", + "symbol": "VEUR", + "decimals": 18, + "name": "VNX EURO", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0xe4095d9372e68d108225c306a4491cacfb33b097.png", + "aggregators": [ + "CoinGecko", + "LiFi", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x4e200fe2f3efb977d5fd9c430a41531fb04d97b8": { + "address": "0x4e200fe2f3efb977d5fd9c430a41531fb04d97b8", + "symbol": "ORDER", + "decimals": 18, + "name": "ORDER", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x4e200fe2f3efb977d5fd9c430a41531fb04d97b8.png", + "aggregators": ["CoinGecko", "LiFi", "Socket", "Rubic", "Rango"], + "occurrences": 5 + }, + "0x47536f17f4ff30e64a96a7555826b8f9e66ec468": { + "address": "0x47536f17f4ff30e64a96a7555826b8f9e66ec468", + "symbol": "BELUGA", + "decimals": 18, + "name": "Beluga.fi", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x47536f17f4ff30e64a96a7555826b8f9e66ec468.png", + "aggregators": [ + "CoinGecko", + "LiFi", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x7f426f6dc648e50464a0392e60e1bb465a67e9cf": { + "address": "0x7f426f6dc648e50464a0392e60e1bb465a67e9cf", + "symbol": "PAUTO", + "decimals": 18, + "name": "Orbit Bridge Polygon Token", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x7f426f6dc648e50464a0392e60e1bb465a67e9cf.png", + "aggregators": [ + "CoinGecko", + "Rubic", + "Rango", + "Sonarwatch", + "SushiSwap" + ], + "occurrences": 5 + }, + "0x3553f861dec0257bada9f8ed268bf0d74e45e89c": { + "address": "0x3553f861dec0257bada9f8ed268bf0d74e45e89c", + "symbol": "USDTSO", + "decimals": 6, + "name": "Bridged Tether (Wormhole)", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x3553f861dec0257bada9f8ed268bf0d74e45e89c.png", + "aggregators": [ + "CoinGecko", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0xecdcb5b88f8e3c15f95c720c51c71c9e2080525d": { + "address": "0xecdcb5b88f8e3c15f95c720c51c71c9e2080525d", + "symbol": "BNB", + "decimals": 18, + "name": "Binance Coin (Wormhole)", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0xecdcb5b88f8e3c15f95c720c51c71c9e2080525d.png", + "aggregators": [ + "CoinGecko", + "LiFi", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x9417669fbf23357d2774e9d421307bd5ea1006d2": { + "address": "0x9417669fbf23357d2774e9d421307bd5ea1006d2", + "symbol": "USDTET", + "decimals": 6, + "name": "Bridged Tether (Wormhole Ethereum)", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x9417669fbf23357d2774e9d421307bd5ea1006d2.png", + "aggregators": [ + "CoinGecko", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x4318cb63a2b8edf2de971e2f17f77097e499459d": { + "address": "0x4318cb63a2b8edf2de971e2f17f77097e499459d", + "symbol": "USDCET", + "decimals": 6, + "name": "Bridged USD Coin (Wormhole Ethereum)", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x4318cb63a2b8edf2de971e2f17f77097e499459d.png", + "aggregators": [ + "CoinGecko", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0xcf403036bc139d30080d2cf0f5b48066f98191bb": { + "address": "0xcf403036bc139d30080d2cf0f5b48066f98191bb", + "symbol": "STBU", + "decimals": 18, + "name": "Stobox", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0xcf403036bc139d30080d2cf0f5b48066f98191bb.png", + "aggregators": [ + "CoinGecko", + "LiFi", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x91e7e32c710661c44ae44d10aa86135d91c3ed65": { + "address": "0x91e7e32c710661c44ae44d10aa86135d91c3ed65", + "symbol": "PPC", + "decimals": 6, + "name": "Peercoin", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x91e7e32c710661c44ae44d10aa86135d91c3ed65.png", + "aggregators": [ + "CoinGecko", + "LiFi", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x9a06db14d639796b25a6cec6a1bf614fd98815ec": { + "address": "0x9a06db14d639796b25a6cec6a1bf614fd98815ec", + "symbol": "ZKP", + "decimals": 18, + "name": "Panther Protocol", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x9a06db14d639796b25a6cec6a1bf614fd98815ec.png", + "aggregators": [ + "CoinGecko", + "LiFi", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0xb5b8381b67248f832c7961bd265f021cd8d291a4": { + "address": "0xb5b8381b67248f832c7961bd265f021cd8d291a4", + "symbol": "ZLW", + "decimals": 18, + "name": "Zelwin", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0xb5b8381b67248f832c7961bd265f021cd8d291a4.png", + "aggregators": [ + "CoinGecko", + "LiFi", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x221743dc9e954be4f86844649bf19b43d6f8366d": { + "address": "0x221743dc9e954be4f86844649bf19b43d6f8366d", + "symbol": "OBOT", + "decimals": 18, + "name": "Obortech", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x221743dc9e954be4f86844649bf19b43d6f8366d.png", + "aggregators": [ + "CoinGecko", + "LiFi", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x534f39c5f4df9cb13e16b24ca07c7c8c0e2eadb7": { + "address": "0x534f39c5f4df9cb13e16b24ca07c7c8c0e2eadb7", + "symbol": "SHA", + "decimals": 18, + "name": "Safe Haven", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x534f39c5f4df9cb13e16b24ca07c7c8c0e2eadb7.png", + "aggregators": [ + "CoinGecko", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0xc88640b734fea3b35c132fe757aeb5ca6c8cdc66": { + "address": "0xc88640b734fea3b35c132fe757aeb5ca6c8cdc66", + "symbol": "NEXM", + "decimals": 8, + "name": "Nexum", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0xc88640b734fea3b35c132fe757aeb5ca6c8cdc66.png", + "aggregators": [ + "CoinGecko", + "LiFi", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x6cd6cb131764c704ba9167c29930fbdc38901ab7": { + "address": "0x6cd6cb131764c704ba9167c29930fbdc38901ab7", + "symbol": "XWIN", + "decimals": 18, + "name": "xWIN Finance", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x6cd6cb131764c704ba9167c29930fbdc38901ab7.png", + "aggregators": [ + "CoinGecko", + "LiFi", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x26c80854c36ff62bba7414a358c8c23bbb8dec39": { + "address": "0x26c80854c36ff62bba7414a358c8c23bbb8dec39", + "symbol": "CDT", + "decimals": 18, + "name": "CheckDot", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x26c80854c36ff62bba7414a358c8c23bbb8dec39.png", + "aggregators": [ + "CoinGecko", + "LiFi", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0xe3c8f0d7f978aadf1929cbbfb116419175844f04": { + "address": "0xe3c8f0d7f978aadf1929cbbfb116419175844f04", + "symbol": "SWK", + "decimals": 18, + "name": "Sowaka", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0xe3c8f0d7f978aadf1929cbbfb116419175844f04.png", + "aggregators": [ + "CoinGecko", + "LiFi", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0xdd28ec6b06983d01d37dbd9ab581d8d884d95264": { + "address": "0xdd28ec6b06983d01d37dbd9ab581d8d884d95264", + "symbol": "SUMMER", + "decimals": 18, + "name": "Summer", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0xdd28ec6b06983d01d37dbd9ab581d8d884d95264.png", + "aggregators": ["CoinGecko", "LiFi", "Socket", "Rubic", "Rango"], + "occurrences": 5 + }, + "0xfba4d30e964e40775c95b58acf6b5a621b929c0a": { + "address": "0xfba4d30e964e40775c95b58acf6b5a621b929c0a", + "symbol": "AUTUMN", + "decimals": 18, + "name": "Autumn", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0xfba4d30e964e40775c95b58acf6b5a621b929c0a.png", + "aggregators": ["CoinGecko", "LiFi", "Socket", "Rubic", "Rango"], + "occurrences": 5 + }, + "0xbbfe0b60de96a189bf09079de86a2db7bf0c7883": { + "address": "0xbbfe0b60de96a189bf09079de86a2db7bf0c7883", + "symbol": "LUNR", + "decimals": 4, + "name": "LunarCrush", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0xbbfe0b60de96a189bf09079de86a2db7bf0c7883.png", + "aggregators": [ + "QuickSwap", + "LiFi", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x78a0a62fba6fb21a83fe8a3433d44c73a4017a6f": { + "address": "0x78a0a62fba6fb21a83fe8a3433d44c73a4017a6f", + "symbol": "OXOLD", + "decimals": 18, + "name": "Open Exchange Token", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x78a0a62fba6fb21a83fe8a3433d44c73a4017a6f.png", + "aggregators": ["1inch", "Socket", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 5 + }, + "0x104592a158490a9228070e0a8e5343b499e125d0": { + "address": "0x104592a158490a9228070e0a8e5343b499e125d0", + "symbol": "POLYFRAX", + "decimals": 18, + "name": "Poly Frax", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x104592a158490a9228070e0a8e5343b499e125d0.png", + "aggregators": ["LiFi", "Socket", "Rubic", "Rango", "SushiSwap"], + "occurrences": 5 + }, + "0xd13cfd3133239a3c73a9e535a5c4dadee36b395c": { + "address": "0xd13cfd3133239a3c73a9e535a5c4dadee36b395c", + "symbol": "VAI", + "decimals": 18, + "name": "VAIOT Token", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0xd13cfd3133239a3c73a9e535a5c4dadee36b395c.png", + "aggregators": ["LiFi", "Socket", "Rubic", "Squid", "SushiSwap"], + "occurrences": 5 + }, + "0x0294d8eb7857d43feb1210db72456d41481f9ede": { + "address": "0x0294d8eb7857d43feb1210db72456d41481f9ede", + "symbol": "LQDR", + "decimals": 18, + "name": "LiquidDriver", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x0294d8eb7857d43feb1210db72456d41481f9ede.png", + "aggregators": ["LiFi", "Rubic", "Squid", "Rango", "Sonarwatch"], + "occurrences": 5 + }, + "0xff88434e29d1e2333ad6baa08d358b436196da6b": { + "address": "0xff88434e29d1e2333ad6baa08d358b436196da6b", + "symbol": "BOR", + "decimals": 18, + "name": "BoringDao", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0xff88434e29d1e2333ad6baa08d358b436196da6b.png", + "aggregators": ["LiFi", "Socket", "Rubic", "Rango", "SushiSwap"], + "occurrences": 5 + }, + "0xd1a718f77ab5d22e3955050658d7f65ae857a85e": { + "address": "0xd1a718f77ab5d22e3955050658d7f65ae857a85e", + "symbol": "FXSAIL", + "decimals": 18, + "name": "SAIL Token (FXERC20)", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0xd1a718f77ab5d22e3955050658d7f65ae857a85e.png", + "aggregators": [ + "Socket", + "Rubic", + "Rango", + "Sonarwatch", + "SushiSwap" + ], + "occurrences": 5 + }, + "0xa8b1e0764f85f53dfe21760e8afe5446d82606ac": { + "address": "0xa8b1e0764f85f53dfe21760e8afe5446d82606ac", + "symbol": "BAND", + "decimals": 18, + "name": "BandToken (PoS)", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0xa8b1e0764f85f53dfe21760e8afe5446d82606ac.png", + "aggregators": ["UniswapLabs", "LiFi", "Socket", "Rubic"], + "occurrences": 4 + }, + "0xbd7a5cf51d22930b8b3df6d834f9bcef90ee7c4f": { + "address": "0xbd7a5cf51d22930b8b3df6d834f9bcef90ee7c4f", + "symbol": "ENS", + "decimals": 18, + "name": "Ethereum Name Service", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0xbd7a5cf51d22930b8b3df6d834f9bcef90ee7c4f.png", + "aggregators": ["UniswapLabs", "LiFi", "Socket", "Sonarwatch"], + "occurrences": 4 + }, + "0x42f37a1296b2981f7c3caced84c5096b2eb0c72c": { + "address": "0x42f37a1296b2981f7c3caced84c5096b2eb0c72c", + "symbol": "KEEP", + "decimals": 18, + "name": "Keep Network", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x42f37a1296b2981f7c3caced84c5096b2eb0c72c.png", + "aggregators": ["UniswapLabs", "Socket", "Rubic", "Sonarwatch"], + "occurrences": 4 + }, + "0x1ed02954d60ba14e26c230eec40cbac55fa3aeea": { + "address": "0x1ed02954d60ba14e26c230eec40cbac55fa3aeea", + "symbol": "MKX", + "decimals": 18, + "name": "MakerX", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x1ed02954d60ba14e26c230eec40cbac55fa3aeea.png", + "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0xea1132120ddcdda2f119e99fa7a27a0d036f7ac9": { + "address": "0xea1132120ddcdda2f119e99fa7a27a0d036f7ac9", + "symbol": "ASTMATIC", + "decimals": 18, + "name": "Aave v3 stMATIC", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0xea1132120ddcdda2f119e99fa7a27a0d036f7ac9.png", + "aggregators": ["CoinGecko", "LiFi", "Rubic", "Sonarwatch"], + "occurrences": 4 + }, + "0xa9c992952c2090a51506c4f3636c1320f8fa93fa": { + "address": "0xa9c992952c2090a51506c4f3636c1320f8fa93fa", + "symbol": "CROF", + "decimals": 18, + "name": "Cropto Hazelnut Token", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0xa9c992952c2090a51506c4f3636c1320f8fa93fa.png", + "aggregators": ["CoinGecko", "LiFi", "Rubic", "Sonarwatch"], + "occurrences": 4 + }, + "0x80ca0d8c38d2e2bcbab66aa1648bd1c7160500fe": { + "address": "0x80ca0d8c38d2e2bcbab66aa1648bd1c7160500fe", + "symbol": "AMATICX", + "decimals": 18, + "name": "Aave v3 MaticX", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x80ca0d8c38d2e2bcbab66aa1648bd1c7160500fe.png", + "aggregators": ["CoinGecko", "LiFi", "Rubic", "Sonarwatch"], + "occurrences": 4 + }, + "0xdc4f4ed9872571d5ec8986a502a0d88f3a175f1e": { + "address": "0xdc4f4ed9872571d5ec8986a502a0d88f3a175f1e", + "symbol": "DEZ", + "decimals": 18, + "name": "$DEZ", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0xdc4f4ed9872571d5ec8986a502a0d88f3a175f1e.png", + "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0x4c392822d4be8494b798cea17b43d48b2308109c": { + "address": "0x4c392822d4be8494b798cea17b43d48b2308109c", + "symbol": "POLLY", + "decimals": 18, + "name": "Polly Finance", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x4c392822d4be8494b798cea17b43d48b2308109c.png", + "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0xd60deba014459f07bbcc077a5b817f31dafd5229": { + "address": "0xd60deba014459f07bbcc077a5b817f31dafd5229", + "symbol": "VATRENI", + "decimals": 18, + "name": "Croatian FF Fan Token", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0xd60deba014459f07bbcc077a5b817f31dafd5229.png", + "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0xc157ee77518769b8009642f68a8d6a500ff59d53": { + "address": "0xc157ee77518769b8009642f68a8d6a500ff59d53", + "symbol": "NLC", + "decimals": 18, + "name": "NoLimitCoin", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0xc157ee77518769b8009642f68a8d6a500ff59d53.png", + "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0x8437d7c167dfb82ed4cb79cd44b7a32a1dd95c77": { + "address": "0x8437d7c167dfb82ed4cb79cd44b7a32a1dd95c77", + "symbol": "AAGEUR", + "decimals": 18, + "name": "Aave v3 agEUR", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x8437d7c167dfb82ed4cb79cd44b7a32a1dd95c77.png", + "aggregators": ["CoinGecko", "LiFi", "Rubic", "Sonarwatch"], + "occurrences": 4 + }, + "0x6396252377f54ad33cff9131708da075b21d9b88": { + "address": "0x6396252377f54ad33cff9131708da075b21d9b88", + "symbol": "NFTBS", + "decimals": 9, + "name": "NFTBooks", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x6396252377f54ad33cff9131708da075b21d9b88.png", + "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0xd711d7d893de57dc13ff465763218770bd42db1d": { + "address": "0xd711d7d893de57dc13ff465763218770bd42db1d", + "symbol": "EGBP", + "decimals": 18, + "name": "ARYZE eGBP", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0xd711d7d893de57dc13ff465763218770bd42db1d.png", + "aggregators": ["CoinGecko", "LiFi", "Rubic", "Rango"], + "occurrences": 4 + }, + "0xf239e69ce434c7fb408b05a0da416b14917d934e": { + "address": "0xf239e69ce434c7fb408b05a0da416b14917d934e", + "symbol": "SHI3LD", + "decimals": 18, + "name": "PolyShield", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0xf239e69ce434c7fb408b05a0da416b14917d934e.png", + "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0x4f7cc8ef14f3dc76ee2fb60028749e1b61cea162": { + "address": "0x4f7cc8ef14f3dc76ee2fb60028749e1b61cea162", + "symbol": "BB", + "decimals": 18, + "name": "BitBoard", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x4f7cc8ef14f3dc76ee2fb60028749e1b61cea162.png", + "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0xafb755c5f2ea2aadbae693d3bf2dc2c35158dc04": { + "address": "0xafb755c5f2ea2aadbae693d3bf2dc2c35158dc04", + "symbol": "MORK", + "decimals": 18, + "name": "Morkie", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0xafb755c5f2ea2aadbae693d3bf2dc2c35158dc04.png", + "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0x94615302bcb36309371ea7454f3e99a4002105de": { + "address": "0x94615302bcb36309371ea7454f3e99a4002105de", + "symbol": "NRS", + "decimals": 18, + "name": "Nereus Token", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x94615302bcb36309371ea7454f3e99a4002105de.png", + "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0xbd8005612124dc30601e22d8b5d188a89767c640": { + "address": "0xbd8005612124dc30601e22d8b5d188a89767c640", + "symbol": "EXO", + "decimals": 18, + "name": "Exohood", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0xbd8005612124dc30601e22d8b5d188a89767c640.png", + "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0xc45a479877e1e9dfe9fcd4056c699575a1045daa": { + "address": "0xc45a479877e1e9dfe9fcd4056c699575a1045daa", + "symbol": "ASUSHI", + "decimals": 18, + "name": "Aave v3 SUSHI", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0xc45a479877e1e9dfe9fcd4056c699575a1045daa.png", + "aggregators": ["CoinGecko", "LiFi", "Rubic", "Sonarwatch"], + "occurrences": 4 + }, + "0x8105f88e77a5d102099bf73db4469d3f1e3b0cd6": { + "address": "0x8105f88e77a5d102099bf73db4469d3f1e3b0cd6", + "symbol": "JCO", + "decimals": 18, + "name": "JennyCo", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x8105f88e77a5d102099bf73db4469d3f1e3b0cd6.png", + "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0x08e175a1eac9744a0f1ccaeb8f669af6a2bda3ce": { + "address": "0x08e175a1eac9744a0f1ccaeb8f669af6a2bda3ce", + "symbol": "E8", + "decimals": 9, + "name": "Energy8", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x08e175a1eac9744a0f1ccaeb8f669af6a2bda3ce.png", + "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0xade6057fcafa57d6d51ffa341c64ce4814995995": { + "address": "0xade6057fcafa57d6d51ffa341c64ce4814995995", + "symbol": "BZPR1", + "decimals": 18, + "name": "Backed ZPR1 $ 1-3 Month T-Bill", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0xade6057fcafa57d6d51ffa341c64ce4814995995.png", + "aggregators": ["CoinGecko", "LiFi", "Rubic", "Sonarwatch"], + "occurrences": 4 + }, + "0x724dc807b04555b71ed48a6896b6f41593b8c637": { + "address": "0x724dc807b04555b71ed48a6896b6f41593b8c637", + "symbol": "ADPI", + "decimals": 18, + "name": "Aave v3 DPI", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x724dc807b04555b71ed48a6896b6f41593b8c637.png", + "aggregators": ["CoinGecko", "LiFi", "Rubic", "Sonarwatch"], + "occurrences": 4 + }, + "0xba777ae3a3c91fcd83ef85bfe65410592bdd0f7c": { + "address": "0xba777ae3a3c91fcd83ef85bfe65410592bdd0f7c", + "symbol": "CONE", + "decimals": 18, + "name": "BitCone", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0xba777ae3a3c91fcd83ef85bfe65410592bdd0f7c.png", + "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0xf86df9b91f002cfeb2aed0e6d05c4c4eaef7cf02": { + "address": "0xf86df9b91f002cfeb2aed0e6d05c4c4eaef7cf02", + "symbol": "PORY", + "decimals": 18, + "name": "Porygon", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0xf86df9b91f002cfeb2aed0e6d05c4c4eaef7cf02.png", + "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0x7ca601b0a7de5c086f265d76237b1d8a8b3194dc": { + "address": "0x7ca601b0a7de5c086f265d76237b1d8a8b3194dc", + "symbol": "LEKS", + "decimals": 18, + "name": "Lecksis", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x7ca601b0a7de5c086f265d76237b1d8a8b3194dc.png", + "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0xa8c557c7ac1626eacaa0e80fac7b6997346306e8": { + "address": "0xa8c557c7ac1626eacaa0e80fac7b6997346306e8", + "symbol": "EGX", + "decimals": 6, + "name": "Enegra", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0xa8c557c7ac1626eacaa0e80fac7b6997346306e8.png", + "aggregators": ["CoinGecko", "LiFi", "Rubic", "Sonarwatch"], + "occurrences": 4 + }, + "0x433ccebc95ad458e74d81837db0d4aa27e30e117": { + "address": "0x433ccebc95ad458e74d81837db0d4aa27e30e117", + "symbol": "UDAO", + "decimals": 18, + "name": "UDAO", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x433ccebc95ad458e74d81837db0d4aa27e30e117.png", + "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0x3ed4c2d63def617f436eb031bacae16f478f3b00": { + "address": "0x3ed4c2d63def617f436eb031bacae16f478f3b00", + "symbol": "DPEX", + "decimals": 18, + "name": "DPEX", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x3ed4c2d63def617f436eb031bacae16f478f3b00.png", + "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0xb9df5fda1c435cd4017a1f1f9111996520b64439": { + "address": "0xb9df5fda1c435cd4017a1f1f9111996520b64439", + "symbol": "IBS", + "decimals": 18, + "name": "IBS", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0xb9df5fda1c435cd4017a1f1f9111996520b64439.png", + "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0xbac3368b5110f3a3dda8b5a0f7b66edb37c47afe": { + "address": "0xbac3368b5110f3a3dda8b5a0f7b66edb37c47afe", + "symbol": "AIPEPE", + "decimals": 18, + "name": "AI PEPE KING", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0xbac3368b5110f3a3dda8b5a0f7b66edb37c47afe.png", + "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0x37c5ebfae4e4da225e9d8042b05063c4a2c94bb6": { + "address": "0x37c5ebfae4e4da225e9d8042b05063c4a2c94bb6", + "symbol": "STAU", + "decimals": 18, + "name": "STAU", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x37c5ebfae4e4da225e9d8042b05063c4a2c94bb6.png", + "aggregators": ["CoinGecko", "LiFi", "Rubic", "Rango"], + "occurrences": 4 + }, + "0x6483de4a2c76a38f288c4922fe2f507b2322ef80": { + "address": "0x6483de4a2c76a38f288c4922fe2f507b2322ef80", + "symbol": "LRS", + "decimals": 18, + "name": "Larissa Blockchain", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x6483de4a2c76a38f288c4922fe2f507b2322ef80.png", + "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0xb7f1219db39ea0cb029e4dcc3daffdcfd233defd": { + "address": "0xb7f1219db39ea0cb029e4dcc3daffdcfd233defd", + "symbol": "KEYSATIN", + "decimals": 18, + "name": "KeySATIN", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0xb7f1219db39ea0cb029e4dcc3daffdcfd233defd.png", + "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0xc114678c6e4654d041b2006c90f08478b444c4e2": { + "address": "0xc114678c6e4654d041b2006c90f08478b444c4e2", + "symbol": "EDX", + "decimals": 18, + "name": "edeXa", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0xc114678c6e4654d041b2006c90f08478b444c4e2.png", + "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0xe9e7c09e82328c3107d367f6c617cf9977e63ed0": { + "address": "0xe9e7c09e82328c3107d367f6c617cf9977e63ed0", + "symbol": "A51", + "decimals": 18, + "name": "A51 Finance", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0xe9e7c09e82328c3107d367f6c617cf9977e63ed0.png", + "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0xaa1e97614eaf8d85dbf58f7f0b3080b2affcfefc": { + "address": "0xaa1e97614eaf8d85dbf58f7f0b3080b2affcfefc", + "symbol": "FEVO", + "decimals": 18, + "name": "Flappy Bird Evolution", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0xaa1e97614eaf8d85dbf58f7f0b3080b2affcfefc.png", + "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0x61ca155f1660b0af117ed00321d1c3ee264ef943": { + "address": "0x61ca155f1660b0af117ed00321d1c3ee264ef943", + "symbol": "CRMC", + "decimals": 8, + "name": "Chrema Coin", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x61ca155f1660b0af117ed00321d1c3ee264ef943.png", + "aggregators": ["CoinGecko", "LiFi", "Rubic", "Rango"], + "occurrences": 4 + }, + "0xab670fdfb0060bdc6508b84a309ff41b56ccaf3f": { + "address": "0xab670fdfb0060bdc6508b84a309ff41b56ccaf3f", + "symbol": "USDW", + "decimals": 18, + "name": "USD WINK", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0xab670fdfb0060bdc6508b84a309ff41b56ccaf3f.png", + "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0xd33fd95fc17bc808b35e98458e078330f35dbfa3": { + "address": "0xd33fd95fc17bc808b35e98458e078330f35dbfa3", + "symbol": "NIGHT", + "decimals": 9, + "name": "Midnight", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0xd33fd95fc17bc808b35e98458e078330f35dbfa3.png", + "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0xa3f751662e282e83ec3cbc387d225ca56dd63d3a": { + "address": "0xa3f751662e282e83ec3cbc387d225ca56dd63d3a", + "symbol": "APEPE", + "decimals": 18, + "name": "Ape and Pepe", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0xa3f751662e282e83ec3cbc387d225ca56dd63d3a.png", + "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0x301595f6fd5f69fad7a488dacb8971e7c0c2f559": { + "address": "0x301595f6fd5f69fad7a488dacb8971e7c0c2f559", + "symbol": "WTPOKT", + "decimals": 12, + "name": "Wrapped ThunderPOKT", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x301595f6fd5f69fad7a488dacb8971e7c0c2f559.png", + "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0x59536e645e5f394045049c38ea98ae45b4b0ded2": { + "address": "0x59536e645e5f394045049c38ea98ae45b4b0ded2", + "symbol": "DDMT", + "decimals": 18, + "name": "Dongdaemun Token", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x59536e645e5f394045049c38ea98ae45b4b0ded2.png", + "aggregators": ["CoinGecko", "LiFi", "Rubic", "Sonarwatch"], + "occurrences": 4 + }, + "0x30ea765d4dda26e0f89e1b23a7c7b2526b7d29ec": { + "address": "0x30ea765d4dda26e0f89e1b23a7c7b2526b7d29ec", + "symbol": "POLYPAD", + "decimals": 18, + "name": "PolyPad", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x30ea765d4dda26e0f89e1b23a7c7b2526b7d29ec.png", + "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0x649a2da7b28e0d54c13d5eff95d3a660652742cc": { + "address": "0x649a2da7b28e0d54c13d5eff95d3a660652742cc", + "symbol": "IDRX", + "decimals": 0, + "name": "IDRX", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x649a2da7b28e0d54c13d5eff95d3a660652742cc.png", + "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0xe156987a81a9b841c1def6f111ea69bf817fb272": { + "address": "0xe156987a81a9b841c1def6f111ea69bf817fb272", + "symbol": "SHARDS", + "decimals": 6, + "name": "Flux Point Studios SHARDS", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0xe156987a81a9b841c1def6f111ea69bf817fb272.png", + "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0x8fa62d23fb6359c1e1685dbfa9b63ef27ecdb612": { + "address": "0x8fa62d23fb6359c1e1685dbfa9b63ef27ecdb612", + "symbol": "MCOIN", + "decimals": 3, + "name": "MariCoin", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x8fa62d23fb6359c1e1685dbfa9b63ef27ecdb612.png", + "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0x408a634b8a8f0de729b48574a3a7ec3fe820b00a": { + "address": "0x408a634b8a8f0de729b48574a3a7ec3fe820b00a", + "symbol": "BENJI", + "decimals": 18, + "name": "Franklin OnChain U.S. Government Money Fund", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x408a634b8a8f0de729b48574a3a7ec3fe820b00a.png", + "aggregators": ["CoinGecko", "LiFi", "Rubic", "Sonarwatch"], + "occurrences": 4 + }, + "0x463fae8f3c63af7c40e50df3ba28469bf9942f69": { + "address": "0x463fae8f3c63af7c40e50df3ba28469bf9942f69", + "symbol": "SABAI", + "decimals": 18, + "name": "Sabai Protocol", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x463fae8f3c63af7c40e50df3ba28469bf9942f69.png", + "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0x6749441fdc8650b5b5a854ed255c82ef361f1596": { + "address": "0x6749441fdc8650b5b5a854ed255c82ef361f1596", + "symbol": "LUCHA", + "decimals": 18, + "name": "Lucha", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x6749441fdc8650b5b5a854ed255c82ef361f1596.png", + "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0x7961ade0a767c0e5b67dd1a1f78ba44f727642ed": { + "address": "0x7961ade0a767c0e5b67dd1a1f78ba44f727642ed", + "symbol": "TGR", + "decimals": 18, + "name": "Tegro", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x7961ade0a767c0e5b67dd1a1f78ba44f727642ed.png", + "aggregators": ["CoinGecko", "LiFi", "Rubic", "Sonarwatch"], + "occurrences": 4 + }, + "0xdd75542611d57c4b6e68168b14c3591c539022ed": { + "address": "0xdd75542611d57c4b6e68168b14c3591c539022ed", + "symbol": "ZCX", + "decimals": 18, + "name": "Unizen", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0xdd75542611d57c4b6e68168b14c3591c539022ed.png", + "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0x6f64f47f95cf656f21b40e14798f6b49f80b3dc5": { + "address": "0x6f64f47f95cf656f21b40e14798f6b49f80b3dc5", + "symbol": "SAFO", + "decimals": 5, + "name": "Spiko Amundi Overnight Swap Fund", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x6f64f47f95cf656f21b40e14798f6b49f80b3dc5.png", + "aggregators": ["CoinGecko", "LiFi", "Rubic", "Rango"], + "occurrences": 4 + }, + "0x272ea767712cc4839f4a27ee35eb73116158c8a2": { + "address": "0x272ea767712cc4839f4a27ee35eb73116158c8a2", + "symbol": "EURSAFO", + "decimals": 5, + "name": "Spiko Amundi Overnight Swap Fund (EUR)", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x272ea767712cc4839f4a27ee35eb73116158c8a2.png", + "aggregators": ["CoinGecko", "LiFi", "Rubic", "Rango"], + "occurrences": 4 + }, + "0x4fe515c67eeeadb3282780325f09bb7c244fe774": { + "address": "0x4fe515c67eeeadb3282780325f09bb7c244fe774", + "symbol": "GBPSAFO", + "decimals": 5, + "name": "Spiko Amundi Overnight Swap Fund (GBP)", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x4fe515c67eeeadb3282780325f09bb7c244fe774.png", + "aggregators": ["CoinGecko", "LiFi", "Rubic", "Rango"], + "occurrences": 4 + }, + "0x039d2e8f097331278bd6c1415d839310e0d5ece4": { + "address": "0x039d2e8f097331278bd6c1415d839310e0d5ece4", + "symbol": "LINDA", + "decimals": 18, + "name": "Linda", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x039d2e8f097331278bd6c1415d839310e0d5ece4.png", + "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0x0aa1e96d2a46ec6beb2923de1e61addf5f5f1dce": { + "address": "0x0aa1e96d2a46ec6beb2923de1e61addf5f5f1dce", + "symbol": "REG", + "decimals": 18, + "name": "REG", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x0aa1e96d2a46ec6beb2923de1e61addf5f5f1dce.png", + "aggregators": ["CoinGecko", "LiFi", "Rubic", "Rango"], + "occurrences": 4 + }, + "0x0ba8a6ce46d369d779299dedade864318097b703": { + "address": "0x0ba8a6ce46d369d779299dedade864318097b703", + "symbol": "JUSD", + "decimals": 18, + "name": "JUSD", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x0ba8a6ce46d369d779299dedade864318097b703.png", + "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0x8226ac9edb26ff16da19151042a8ba3bb2cc237f": { + "address": "0x8226ac9edb26ff16da19151042a8ba3bb2cc237f", + "symbol": "ELG", + "decimals": 18, + "name": "Escoin", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x8226ac9edb26ff16da19151042a8ba3bb2cc237f.png", + "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0x1236ea13c7339287cd00ab196aaa8217006b04dc": { + "address": "0x1236ea13c7339287cd00ab196aaa8217006b04dc", + "symbol": "EPL", + "decimals": 18, + "name": "Epic League", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x1236ea13c7339287cd00ab196aaa8217006b04dc.png", + "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0xfa5d5dd2517ee9c1419534a16b132adde2e3d948": { + "address": "0xfa5d5dd2517ee9c1419534a16b132adde2e3d948", + "symbol": "ULX", + "decimals": 18, + "name": "ULTRON", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0xfa5d5dd2517ee9c1419534a16b132adde2e3d948.png", + "aggregators": ["CoinGecko", "LiFi", "Rubic", "Sonarwatch"], + "occurrences": 4 + }, + "0x77f56cf9365955486b12c4816992388ee8606f0e": { + "address": "0x77f56cf9365955486b12c4816992388ee8606f0e", + "symbol": "C98", + "decimals": 18, + "name": "Coin98", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x77f56cf9365955486b12c4816992388ee8606f0e.png", + "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0xb140665dde25c644c6b418e417c930de8a8a6ac9": { + "address": "0xb140665dde25c644c6b418e417c930de8a8a6ac9", + "symbol": "ATRI", + "decimals": 0, + "name": "ATRI", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0xb140665dde25c644c6b418e417c930de8a8a6ac9.png", + "aggregators": ["CoinGecko", "Socket", "Rubic", "Rango"], + "occurrences": 4 + }, + "0xe229b734251dd48dda27bb908d90329f229c3531": { + "address": "0xe229b734251dd48dda27bb908d90329f229c3531", + "symbol": "GRAMP", + "decimals": 18, + "name": "Gram Platinum", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0xe229b734251dd48dda27bb908d90329f229c3531.png", + "aggregators": ["CoinGecko", "LiFi", "Rubic", "Sonarwatch"], + "occurrences": 4 + }, + "0xf59036caebea7dc4b86638dfa2e3c97da9fccd40": { + "address": "0xf59036caebea7dc4b86638dfa2e3c97da9fccd40", + "symbol": "AWSTETH", + "decimals": 18, + "name": "Aave v3 wstETH", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0xf59036caebea7dc4b86638dfa2e3c97da9fccd40.png", + "aggregators": ["CoinGecko", "LiFi", "Rubic", "Sonarwatch"], + "occurrences": 4 + }, + "0x8ffdf2de812095b1d19cb146e4c004587c0a0692": { + "address": "0x8ffdf2de812095b1d19cb146e4c004587c0a0692", + "symbol": "ABAL", + "decimals": 18, + "name": "Aave v3 BAL", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x8ffdf2de812095b1d19cb146e4c004587c0a0692.png", + "aggregators": ["CoinGecko", "LiFi", "Rubic", "Sonarwatch"], + "occurrences": 4 + }, + "0xd2a530170d71a9cfe1651fb468e2b98f7ed7456b": { + "address": "0xd2a530170d71a9cfe1651fb468e2b98f7ed7456b", + "symbol": "AUDF", + "decimals": 6, + "name": "Forte AUD", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0xd2a530170d71a9cfe1651fb468e2b98f7ed7456b.png", + "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0x95e376390f472fcaa21995169e11d523954b3bbb": { + "address": "0x95e376390f472fcaa21995169e11d523954b3bbb", + "symbol": "TRYT", + "decimals": 18, + "name": "LiraT", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x95e376390f472fcaa21995169e11d523954b3bbb.png", + "aggregators": ["CoinGecko", "LiFi", "Rubic", "Sonarwatch"], + "occurrences": 4 + }, + "0xd94a8f9caed25e63ecc90edfefaf3635ea1e182a": { + "address": "0xd94a8f9caed25e63ecc90edfefaf3635ea1e182a", + "symbol": "SCOMP", + "decimals": 18, + "name": "Stablecomp", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0xd94a8f9caed25e63ecc90edfefaf3635ea1e182a.png", + "aggregators": ["CoinGecko", "LiFi", "Rubic", "Sonarwatch"], + "occurrences": 4 + }, + "0xb0b2ef34d412d73b0ff90a709d1779a20655165a": { + "address": "0xb0b2ef34d412d73b0ff90a709d1779a20655165a", + "symbol": "GUARD", + "decimals": 18, + "name": "Guardian GUARD", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0xb0b2ef34d412d73b0ff90a709d1779a20655165a.png", + "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0x2f5de51823e514de04475ba8db1eeba5b244ba84": { + "address": "0x2f5de51823e514de04475ba8db1eeba5b244ba84", + "symbol": "USDOT", + "decimals": 18, + "name": "Token Teknoloji A.Ş. USD", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x2f5de51823e514de04475ba8db1eeba5b244ba84.png", + "aggregators": ["CoinGecko", "LiFi", "Rubic", "Sonarwatch"], + "occurrences": 4 + }, + "0xb5e0cfe1b4db501ac003b740665bf43192cc7853": { + "address": "0xb5e0cfe1b4db501ac003b740665bf43192cc7853", + "symbol": "GHOST", + "decimals": 8, + "name": "Ghost", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0xb5e0cfe1b4db501ac003b740665bf43192cc7853.png", + "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0x1c0a798b5a5273a9e54028eb1524fd337b24145f": { + "address": "0x1c0a798b5a5273a9e54028eb1524fd337b24145f", + "symbol": "LOWB", + "decimals": 18, + "name": "Loser Coin", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x1c0a798b5a5273a9e54028eb1524fd337b24145f.png", + "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0x14a5f2872396802c3cc8942a39ab3e4118ee5038": { + "address": "0x14a5f2872396802c3cc8942a39ab3e4118ee5038", + "symbol": "BTSLA", + "decimals": 18, + "name": "Backed Tesla", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x14a5f2872396802c3cc8942a39ab3e4118ee5038.png", + "aggregators": ["CoinGecko", "LiFi", "Rubic", "Sonarwatch"], + "occurrences": 4 + }, + "0xac28c9178acc8ba4a11a29e013a3a2627086e422": { + "address": "0xac28c9178acc8ba4a11a29e013a3a2627086e422", + "symbol": "BMSTR", + "decimals": 18, + "name": "Backed MicroStrategy", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0xac28c9178acc8ba4a11a29e013a3a2627086e422.png", + "aggregators": ["CoinGecko", "LiFi", "Rubic", "Sonarwatch"], + "occurrences": 4 + }, + "0x0f76d32cdccdcbd602a55af23eaf58fd1ee17245": { + "address": "0x0f76d32cdccdcbd602a55af23eaf58fd1ee17245", + "symbol": "BERNA", + "decimals": 18, + "name": "Backed ERNA $ Bond", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x0f76d32cdccdcbd602a55af23eaf58fd1ee17245.png", + "aggregators": ["CoinGecko", "LiFi", "Rubic", "Sonarwatch"], + "occurrences": 4 + }, + "0xebee37aaf2905b7bda7e3b928043862e982e8f32": { + "address": "0xebee37aaf2905b7bda7e3b928043862e982e8f32", + "symbol": "BGOOGL", + "decimals": 18, + "name": "Backed Alphabet Class A", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0xebee37aaf2905b7bda7e3b928043862e982e8f32.png", + "aggregators": ["CoinGecko", "LiFi", "Rubic", "Sonarwatch"], + "occurrences": 4 + }, + "0x374a457967ba24fd3ae66294cab08244185574b0": { + "address": "0x374a457967ba24fd3ae66294cab08244185574b0", + "symbol": "BMSFT", + "decimals": 18, + "name": "Backed Microsoft", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x374a457967ba24fd3ae66294cab08244185574b0.png", + "aggregators": ["CoinGecko", "LiFi", "Rubic", "Sonarwatch"], + "occurrences": 4 + }, + "0xd8b95b1987741849ca7e71e976aeb535fd2e55a2": { + "address": "0xd8b95b1987741849ca7e71e976aeb535fd2e55a2", + "symbol": "BCSBGC3", + "decimals": 18, + "name": "Backed Swiss Domestic Government Bond 0-3", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0xd8b95b1987741849ca7e71e976aeb535fd2e55a2.png", + "aggregators": ["CoinGecko", "LiFi", "Rubic", "Sonarwatch"], + "occurrences": 4 + }, + "0x5fcb9de282af6122ce3518cde28b7089c9f97b26": { + "address": "0x5fcb9de282af6122ce3518cde28b7089c9f97b26", + "symbol": "DHV", + "decimals": 18, + "name": "DHV", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x5fcb9de282af6122ce3518cde28b7089c9f97b26.png", + "aggregators": ["CoinGecko", "Socket", "Rubic", "Rango"], + "occurrences": 4 + }, + "0x09211dc67f9fe98fb7bbb91be0ef05f4a12fa2b2": { + "address": "0x09211dc67f9fe98fb7bbb91be0ef05f4a12fa2b2", + "symbol": "WATCH", + "decimals": 18, + "name": "Yieldwatch", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x09211dc67f9fe98fb7bbb91be0ef05f4a12fa2b2.png", + "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0xbc2597d3f1f9565100582cde02e3712d03b8b0f6": { + "address": "0xbc2597d3f1f9565100582cde02e3712d03b8b0f6", + "symbol": "CCAKE", + "decimals": 18, + "name": "CheesecakeSwap", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0xbc2597d3f1f9565100582cde02e3712d03b8b0f6.png", + "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0x863d6074afaf02d9d41a5f8ea83278df7089aa86": { + "address": "0x863d6074afaf02d9d41a5f8ea83278df7089aa86", + "symbol": "SKILL", + "decimals": 18, + "name": "CryptoBlades", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x863d6074afaf02d9d41a5f8ea83278df7089aa86.png", + "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0x3c1bb39bb696b443a1d80bb2b3a3d950ba9dee87": { + "address": "0x3c1bb39bb696b443a1d80bb2b3a3d950ba9dee87", + "symbol": "WSG", + "decimals": 18, + "name": "Wall Street Games [OLD]", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x3c1bb39bb696b443a1d80bb2b3a3d950ba9dee87.png", + "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0xdb298285fe4c5410b05390ca80e8fbe9de1f259b": { + "address": "0xdb298285fe4c5410b05390ca80e8fbe9de1f259b", + "symbol": "FOREX", + "decimals": 18, + "name": "handle.fi", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0xdb298285fe4c5410b05390ca80e8fbe9de1f259b.png", + "aggregators": ["CoinGecko", "LiFi", "Rubic", "Sonarwatch"], + "occurrences": 4 + }, + "0x1d1498166ddceee616a6d99868e1e0677300056f": { + "address": "0x1d1498166ddceee616a6d99868e1e0677300056f", + "symbol": "SPACE", + "decimals": 18, + "name": "Space Token", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x1d1498166ddceee616a6d99868e1e0677300056f.png", + "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0x7bb11e7f8b10e9e571e5d8eace04735fdfb2358a": { + "address": "0x7bb11e7f8b10e9e571e5d8eace04735fdfb2358a", + "symbol": "AVAX", + "decimals": 18, + "name": "Avalanche (Wormhole)", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x7bb11e7f8b10e9e571e5d8eace04735fdfb2358a.png", + "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0x61aee582896064ecd5d85d66a32ddeb5574a699d": { + "address": "0x61aee582896064ecd5d85d66a32ddeb5574a699d", + "symbol": "HYVE", + "decimals": 18, + "name": "Hyve", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x61aee582896064ecd5d85d66a32ddeb5574a699d.png", + "aggregators": ["CoinGecko", "LiFi", "Rubic", "Sonarwatch"], + "occurrences": 4 + }, + "0xfafa220145dfa5c3ec85b6fa8a75aee2451cde5e": { + "address": "0xfafa220145dfa5c3ec85b6fa8a75aee2451cde5e", + "symbol": "ROOBEE", + "decimals": 18, + "name": "Roobee", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0xfafa220145dfa5c3ec85b6fa8a75aee2451cde5e.png", + "aggregators": ["CoinGecko", "LiFi", "Rubic", "Sonarwatch"], + "occurrences": 4 + }, + "0x14eb40fb7900185c01adc6a5b8ac506d8a600e3c": { + "address": "0x14eb40fb7900185c01adc6a5b8ac506d8a600e3c", + "symbol": "EUROT", + "decimals": 18, + "name": "Token Teknoloji A.Ş. EURO", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x14eb40fb7900185c01adc6a5b8ac506d8a600e3c.png", + "aggregators": ["CoinGecko", "LiFi", "Rubic", "Sonarwatch"], + "occurrences": 4 + }, + "0x554f074d9ccda8f483d1812d4874cbebd682644e": { + "address": "0x554f074d9ccda8f483d1812d4874cbebd682644e", + "symbol": "$ANRX", + "decimals": 18, + "name": "$ANRX", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x554f074d9ccda8f483d1812d4874cbebd682644e.png", + "aggregators": ["QuickSwap", "Socket", "Rubic", "Rango"], + "occurrences": 4 + }, + "0xac51c4c48dc3116487ed4bc16542e27b5694da1b": { + "address": "0xac51c4c48dc3116487ed4bc16542e27b5694da1b", + "symbol": "ATOM", + "decimals": 6, + "name": "ATOM", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0xac51c4c48dc3116487ed4bc16542e27b5694da1b.png", + "aggregators": ["QuickSwap", "LiFi", "Rubic", "Rango"], + "occurrences": 4 + }, + "0x72bd80445b0db58ebe3e8db056529d4c5faf6f2f": { + "address": "0x72bd80445b0db58ebe3e8db056529d4c5faf6f2f", + "symbol": "NEAR", + "decimals": 18, + "name": "NEAR", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x72bd80445b0db58ebe3e8db056529d4c5faf6f2f.png", + "aggregators": ["QuickSwap", "LiFi", "Socket", "Rango"], + "occurrences": 4 + }, + "0x9f28e2455f9ffcfac9ebd6084853417362bc5dbb": { + "address": "0x9f28e2455f9ffcfac9ebd6084853417362bc5dbb", + "symbol": "RMATIC", + "decimals": 18, + "name": "StaFi Staked MATIC", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x9f28e2455f9ffcfac9ebd6084853417362bc5dbb.png", + "aggregators": ["QuickSwap", "LiFi", "Rubic", "Rango"], + "occurrences": 4 + }, + "0x1eba4b44c4f8cc2695347c6a78f0b7a002d26413": { + "address": "0x1eba4b44c4f8cc2695347c6a78f0b7a002d26413", + "symbol": "UND", + "decimals": 18, + "name": "Unbound Dollar", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x1eba4b44c4f8cc2695347c6a78f0b7a002d26413.png", + "aggregators": ["QuickSwap", "LiFi", "Rubic", "Rango"], + "occurrences": 4 + }, + "0x42435f467d33e5c4146a4e8893976ef12bbce762": { + "address": "0x42435f467d33e5c4146a4e8893976ef12bbce762", + "symbol": "DEFI5", + "decimals": 18, + "name": "DEFI5", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x42435f467d33e5c4146a4e8893976ef12bbce762.png", + "aggregators": ["LiFi", "Socket", "Rubic", "Rango"], + "occurrences": 4 + }, + "0xb03e3b00baf9954bf1604d09a4dbd5cf88e1f695": { + "address": "0xb03e3b00baf9954bf1604d09a4dbd5cf88e1f695", + "symbol": "EDU", + "decimals": 18, + "name": "Open Campus", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0xb03e3b00baf9954bf1604d09a4dbd5cf88e1f695.png", + "aggregators": ["LiFi", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0x58d70ef99a1d22e1a8f8f0e8f27c1babcf8464f3": { + "address": "0x58d70ef99a1d22e1a8f8f0e8f27c1babcf8464f3", + "symbol": "MTS", + "decimals": 18, + "name": "Meta Plus Token", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x58d70ef99a1d22e1a8f8f0e8f27c1babcf8464f3.png", + "aggregators": ["LiFi", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0xc2a7195cef4605bd80b949cd7eb1f7ad1566c850": { + "address": "0xc2a7195cef4605bd80b949cd7eb1f7ad1566c850", + "symbol": "PWR", + "decimals": 18, + "name": "Gamebitcoin Power", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0xc2a7195cef4605bd80b949cd7eb1f7ad1566c850.png", + "aggregators": ["LiFi", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0x65517425ac3ce259a34400bb67ceb39ff3ddc0bd": { + "address": "0x65517425ac3ce259a34400bb67ceb39ff3ddc0bd", + "symbol": "NARS", + "decimals": 18, + "name": "Num ARS", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x65517425ac3ce259a34400bb67ceb39ff3ddc0bd.png", + "aggregators": ["LiFi", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0xf30aabd8cbb8e1d827a79b4354868914040ec155": { + "address": "0xf30aabd8cbb8e1d827a79b4354868914040ec155", + "symbol": "COW", + "decimals": 18, + "name": "Chronicles of Warcraft", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0xf30aabd8cbb8e1d827a79b4354868914040ec155.png", + "aggregators": ["LiFi", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0x5d2375c6af4b7de4e395ada20aab937895b4fa70": { + "address": "0x5d2375c6af4b7de4e395ada20aab937895b4fa70", + "symbol": "MSC", + "decimals": 18, + "name": "MetaSoccer Cash", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x5d2375c6af4b7de4e395ada20aab937895b4fa70.png", + "aggregators": ["LiFi", "Rubic", "Rango", "SushiSwap"], + "occurrences": 4 + }, + "0x27dfd2d7b85e0010542da35c6ebcd59e45fc949d": { + "address": "0x27dfd2d7b85e0010542da35c6ebcd59e45fc949d", + "symbol": "THE", + "decimals": 18, + "name": "THE", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x27dfd2d7b85e0010542da35c6ebcd59e45fc949d.png", + "aggregators": ["LiFi", "Socket", "Rubic", "Rango"], + "occurrences": 4 + }, + "0xdd14c9059a5eba25a41997efc106ce0a9664b53a": { + "address": "0xdd14c9059a5eba25a41997efc106ce0a9664b53a", + "symbol": "HMD", + "decimals": 18, + "name": "Healthmedi", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0xdd14c9059a5eba25a41997efc106ce0a9664b53a.png", + "aggregators": ["LiFi", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0x1221591c1d77a9c334abb0fe530ae6ee3af51af9": { + "address": "0x1221591c1d77a9c334abb0fe530ae6ee3af51af9", + "symbol": "AXMATIC", + "decimals": 18, + "name": "axMatic", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x1221591c1d77a9c334abb0fe530ae6ee3af51af9.png", + "aggregators": ["LiFi", "Rubic", "Rango", "SushiSwap"], + "occurrences": 4 + }, + "0x26d3c0d9f4cc4c130097b6afdebe4f5e497e6bdf": { + "address": "0x26d3c0d9f4cc4c130097b6afdebe4f5e497e6bdf", + "symbol": "MNT", + "decimals": 6, + "name": "Mynth", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x26d3c0d9f4cc4c130097b6afdebe4f5e497e6bdf.png", + "aggregators": ["LiFi", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0x0308a3a9c433256ad7ef24dbef9c49c8cb01300a": { + "address": "0x0308a3a9c433256ad7ef24dbef9c49c8cb01300a", + "symbol": "GPO", + "decimals": 18, + "name": "GoldPesa Option", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x0308a3a9c433256ad7ef24dbef9c49c8cb01300a.png", + "aggregators": ["LiFi", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0xd4d996ccda51b65c6fd884feaea83b237d084262": { + "address": "0xd4d996ccda51b65c6fd884feaea83b237d084262", + "symbol": "ALOR", + "decimals": 18, + "name": "Algorix (ALOR)", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0xd4d996ccda51b65c6fd884feaea83b237d084262.png", + "aggregators": ["LiFi", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0x85931ad37af0a3bb892086d13030330e93eac9df": { + "address": "0x85931ad37af0a3bb892086d13030330e93eac9df", + "symbol": "TXT", + "decimals": 18, + "name": "Tx24", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x85931ad37af0a3bb892086d13030330e93eac9df.png", + "aggregators": ["LiFi", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0x5eab32fe1d104ce0c5436fedc3433b646096e47c": { + "address": "0x5eab32fe1d104ce0c5436fedc3433b646096e47c", + "symbol": "LSHARE", + "decimals": 18, + "name": "LIF3 LSHARE", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x5eab32fe1d104ce0c5436fedc3433b646096e47c.png", + "aggregators": ["LiFi", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0xe07710cdcd1c9f0fb04bfd013f9854e4552671ce": { + "address": "0xe07710cdcd1c9f0fb04bfd013f9854e4552671ce", + "symbol": "U", + "decimals": 18, + "name": "U Coin", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0xe07710cdcd1c9f0fb04bfd013f9854e4552671ce.png", + "aggregators": ["LiFi", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0xc6480da81151b2277761024599e8db2ad4c388c8": { + "address": "0xc6480da81151b2277761024599e8db2ad4c388c8", + "symbol": "XDG", + "decimals": 18, + "name": "XDG", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0xc6480da81151b2277761024599e8db2ad4c388c8.png", + "aggregators": ["LiFi", "Socket", "Rubic", "Rango"], + "occurrences": 4 + }, + "0x08ad99fb3f9f262853b54613249b4064901bd358": { + "address": "0x08ad99fb3f9f262853b54613249b4064901bd358", + "symbol": "AXLWMAI", + "decimals": 18, + "name": "Axelar Wrapped WMAI", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x08ad99fb3f9f262853b54613249b4064901bd358.png", + "aggregators": ["LiFi", "Rubic", "Squid", "Rango"], + "occurrences": 4 + }, + "0x9e6b19874e97fe8e8cad77f2c0ab5e7a693e5dbf": { + "address": "0x9e6b19874e97fe8e8cad77f2c0ab5e7a693e5dbf", + "symbol": "ISHND", + "decimals": 18, + "name": "StrongHands Finance", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x9e6b19874e97fe8e8cad77f2c0ab5e7a693e5dbf.png", + "aggregators": ["LiFi", "Socket", "Rubic", "Rango"], + "occurrences": 4 + }, + "0x51869836681bce74a514625c856afb697a013797": { + "address": "0x51869836681bce74a514625c856afb697a013797", + "symbol": "GENESIS", + "decimals": 18, + "name": "Genesis Worlds", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x51869836681bce74a514625c856afb697a013797.png", + "aggregators": ["LiFi", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0x263026e7e53dbfdce5ae55ade22493f828922965": { + "address": "0x263026e7e53dbfdce5ae55ade22493f828922965", + "symbol": "RIC", + "decimals": 18, + "name": "RIC", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x263026e7e53dbfdce5ae55ade22493f828922965.png", + "aggregators": ["LiFi", "Rubic", "Rango", "SushiSwap"], + "occurrences": 4 + }, + "0x83a6da342099835bcaa9c219dd76a5033c837de5": { + "address": "0x83a6da342099835bcaa9c219dd76a5033c837de5", + "symbol": "BAS", + "decimals": 18, + "name": "Basis Share", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x83a6da342099835bcaa9c219dd76a5033c837de5.png", + "aggregators": ["LiFi", "Socket", "Rubic", "Rango"], + "occurrences": 4 + }, + "0x0835cdd017ea7bc4cc187c6e0f8ea2dbe0fea0dd": { + "address": "0x0835cdd017ea7bc4cc187c6e0f8ea2dbe0fea0dd", + "symbol": "KEN", + "decimals": 18, + "name": "KOHENOOR", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x0835cdd017ea7bc4cc187c6e0f8ea2dbe0fea0dd.png", + "aggregators": ["LiFi", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0xb7042c40de76cfc607ac05e68f9c28a778f0c8a6": { + "address": "0xb7042c40de76cfc607ac05e68f9c28a778f0c8a6", + "symbol": "WISTA", + "decimals": 18, + "name": "Wistaverse", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0xb7042c40de76cfc607ac05e68f9c28a778f0c8a6.png", + "aggregators": ["LiFi", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0x1ba3510a9ceeb72e5cdba8bcdde9647e1f20fb4b": { + "address": "0x1ba3510a9ceeb72e5cdba8bcdde9647e1f20fb4b", + "symbol": "DRAX", + "decimals": 18, + "name": "Drax", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x1ba3510a9ceeb72e5cdba8bcdde9647e1f20fb4b.png", + "aggregators": ["LiFi", "Rubic", "Rango", "SushiSwap"], + "occurrences": 4 + }, + "0x137ee749f0f8c2ed34ca00de33bb59e3dafa494a": { + "address": "0x137ee749f0f8c2ed34ca00de33bb59e3dafa494a", + "symbol": "WCCX", + "decimals": 6, + "name": "WrappedConceal", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x137ee749f0f8c2ed34ca00de33bb59e3dafa494a.png", + "aggregators": ["LiFi", "Rubic", "Rango", "SushiSwap"], + "occurrences": 4 + }, + "0x61e9c2f3501889f6167921087bd6ea306002904a": { + "address": "0x61e9c2f3501889f6167921087bd6ea306002904a", + "symbol": "PIXEL", + "decimals": 18, + "name": "Pixel", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x61e9c2f3501889f6167921087bd6ea306002904a.png", + "aggregators": ["LiFi", "Rubic", "Rango", "SushiSwap"], + "occurrences": 4 + }, + "0x3dc6052a693e4a2fc28eb2ea12fe0cfd3bd221d1": { + "address": "0x3dc6052a693e4a2fc28eb2ea12fe0cfd3bd221d1", + "symbol": "IRIS", + "decimals": 6, + "name": "IRIS", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x3dc6052a693e4a2fc28eb2ea12fe0cfd3bd221d1.png", + "aggregators": ["LiFi", "Socket", "Rubic", "Rango"], + "occurrences": 4 + }, + "0xacd7b3d9c10e97d0efa418903c0c7669e702e4c0": { + "address": "0xacd7b3d9c10e97d0efa418903c0c7669e702e4c0", + "symbol": "ELE", + "decimals": 18, + "name": "Eleven.finance", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0xacd7b3d9c10e97d0efa418903c0c7669e702e4c0.png", + "aggregators": ["LiFi", "Rubic", "Rango", "SushiSwap"], + "occurrences": 4 + }, + "0xf1938ce12400f9a761084e7a80d37e732a4da056": { + "address": "0xf1938ce12400f9a761084e7a80d37e732a4da056", + "symbol": "CHZ", + "decimals": 18, + "name": "CHZ (PoS)", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0xf1938ce12400f9a761084e7a80d37e732a4da056.png", + "aggregators": ["LiFi", "Socket", "Rubic", "Rango"], + "occurrences": 4 + }, + "0xcb898b0efb084df14dd8e018da37b4d0f06ab26d": { + "address": "0xcb898b0efb084df14dd8e018da37b4d0f06ab26d", + "symbol": "SING", + "decimals": 18, + "name": "Sing", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0xcb898b0efb084df14dd8e018da37b4d0f06ab26d.png", + "aggregators": ["LiFi", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0x9111d6446ac5b88a84cf06425c6286658368542f": { + "address": "0x9111d6446ac5b88a84cf06425c6286658368542f", + "symbol": "FLAG", + "decimals": 18, + "name": "For Loot And Glory", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x9111d6446ac5b88a84cf06425c6286658368542f.png", + "aggregators": ["LiFi", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0x2628568509e87c4429fbb5c664ed11391be1bd29": { + "address": "0x2628568509e87c4429fbb5c664ed11391be1bd29", + "symbol": "RENDGB", + "decimals": 8, + "name": "renDGB", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x2628568509e87c4429fbb5c664ed11391be1bd29.png", + "aggregators": ["LiFi", "Rubic", "Rango", "SushiSwap"], + "occurrences": 4 + }, + "0x0c51f415cf478f8d08c246a6c6ee180c5dc3a012": { + "address": "0x0c51f415cf478f8d08c246a6c6ee180c5dc3a012", + "symbol": "HOT", + "decimals": 18, + "name": "HOLO (PoS)", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x0c51f415cf478f8d08c246a6c6ee180c5dc3a012.png", + "aggregators": ["LiFi", "Socket", "Rubic", "Rango"], + "occurrences": 4 + }, + "0x11a1779ae6b02bb8e7ff847919bca3e55bcbb3d5": { + "address": "0x11a1779ae6b02bb8e7ff847919bca3e55bcbb3d5", + "symbol": "PAPER", + "decimals": 18, + "name": "Paper", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x11a1779ae6b02bb8e7ff847919bca3e55bcbb3d5.png", + "aggregators": ["LiFi", "Socket", "Rubic", "Rango"], + "occurrences": 4 + }, + "0x3962f4a0a0051dcce0be73a7e09cef5756736712": { + "address": "0x3962f4a0a0051dcce0be73a7e09cef5756736712", + "symbol": "LPT", + "decimals": 18, + "name": "Livepeer Token (PoS)", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x3962f4a0a0051dcce0be73a7e09cef5756736712.png", + "aggregators": ["LiFi", "Socket", "Rubic", "Rango"], + "occurrences": 4 + }, + "0xc4ace9278e7e01755b670c0838c3106367639962": { + "address": "0xc4ace9278e7e01755b670c0838c3106367639962", + "symbol": "RENFIL", + "decimals": 18, + "name": "renFIL", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0xc4ace9278e7e01755b670c0838c3106367639962.png", + "aggregators": ["LiFi", "Rubic", "Rango", "SushiSwap"], + "occurrences": 4 + }, + "0x46371c90fcce4d7367a61cb43ea7922406bc707a": { + "address": "0x46371c90fcce4d7367a61cb43ea7922406bc707a", + "symbol": "AXLKNC", + "decimals": 18, + "name": "Axelar Wrapped KNC", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x46371c90fcce4d7367a61cb43ea7922406bc707a.png", + "aggregators": ["LiFi", "Rubic", "Squid", "Rango"], + "occurrences": 4 + }, + "0x2b3ecb0991af0498ece9135bcd04013d7993110c": { + "address": "0x2b3ecb0991af0498ece9135bcd04013d7993110c", + "symbol": "UBO", + "decimals": 18, + "name": "Universal Basic Offset", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x2b3ecb0991af0498ece9135bcd04013d7993110c.png", + "aggregators": ["LiFi", "Rubic", "Rango", "SushiSwap"], + "occurrences": 4 + }, + "0x1e37b3855ca1ef46106baa162bfaf8a1e7666a5d": { + "address": "0x1e37b3855ca1ef46106baa162bfaf8a1e7666a5d", + "symbol": "TSLT", + "decimals": 18, + "name": "Tamkin", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x1e37b3855ca1ef46106baa162bfaf8a1e7666a5d.png", + "aggregators": ["LiFi", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0x6bca3b77c1909ce1a4ba1a20d1103bde8d222e48": { + "address": "0x6bca3b77c1909ce1a4ba1a20d1103bde8d222e48", + "symbol": "NBO", + "decimals": 18, + "name": "Nature Based Offset", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x6bca3b77c1909ce1a4ba1a20d1103bde8d222e48.png", + "aggregators": ["LiFi", "Rubic", "Rango", "SushiSwap"], + "occurrences": 4 + }, + "0x8829d36f6680be993f5444198e8cbfa8f02ede96": { + "address": "0x8829d36f6680be993f5444198e8cbfa8f02ede96", + "symbol": "TKAI", + "decimals": 18, + "name": "TAIKAI", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x8829d36f6680be993f5444198e8cbfa8f02ede96.png", + "aggregators": ["Socket", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0xb8cb8a7f4c2885c03e57e973c74827909fdc2032": { + "address": "0xb8cb8a7f4c2885c03e57e973c74827909fdc2032", + "symbol": "YFI", + "decimals": 18, + "name": "yearn.finance", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0xb8cb8a7f4c2885c03e57e973c74827909fdc2032.png", + "aggregators": ["Socket", "Rubic", "Rango", "SushiSwap"], + "occurrences": 4 + }, + "0x25c498781ca536547b147e2199f572e5393d36f0": { + "address": "0x25c498781ca536547b147e2199f572e5393d36f0", + "symbol": "AIRTNT", + "decimals": 18, + "name": "AirTnT", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x25c498781ca536547b147e2199f572e5393d36f0.png", + "aggregators": ["Socket", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0xda5949544aaf6124d06f398bfde4c86cc33b0ee7": { + "address": "0xda5949544aaf6124d06f398bfde4c86cc33b0ee7", + "symbol": "CYFM", + "decimals": 18, + "name": "CyberFM", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0xda5949544aaf6124d06f398bfde4c86cc33b0ee7.png", + "aggregators": ["Socket", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0xb988bd378a0754957d5d9471c96e0f8051645a26": { + "address": "0xb988bd378a0754957d5d9471c96e0f8051645a26", + "symbol": "INS", + "decimals": 18, + "name": "iNFTspace", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0xb988bd378a0754957d5d9471c96e0f8051645a26.png", + "aggregators": ["Socket", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0x8df26a1bd9bd98e2ec506fc9d8009954716a05dc": { + "address": "0x8df26a1bd9bd98e2ec506fc9d8009954716a05dc", + "symbol": "COLLAR", + "decimals": 18, + "name": "PolyPup Finance", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x8df26a1bd9bd98e2ec506fc9d8009954716a05dc.png", + "aggregators": ["Socket", "Rubic", "Rango", "SushiSwap"], + "occurrences": 4 + }, + "0x7b12598e3616261df1c05ec28de0d2fb10c1f206": { + "address": "0x7b12598e3616261df1c05ec28de0d2fb10c1f206", + "symbol": "COCA", + "decimals": 18, + "name": "COCA", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x7b12598e3616261df1c05ec28de0d2fb10c1f206.png", + "aggregators": ["CoinGecko", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x21a77520d0a25eede18a34ad4bc7a769d785c6ff": { + "address": "0x21a77520d0a25eede18a34ad4bc7a769d785c6ff", + "symbol": "SRX", + "decimals": 18, + "name": "Stars", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x21a77520d0a25eede18a34ad4bc7a769d785c6ff.png", + "aggregators": ["CoinGecko", "Rubic", "Sonarwatch"], + "occurrences": 3 + }, + "0xc65b1b55a287b4e8bf5c04faad21d43a21a1ce46": { + "address": "0xc65b1b55a287b4e8bf5c04faad21d43a21a1ce46", + "symbol": "CMT", + "decimals": 18, + "name": "CornerMarket", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0xc65b1b55a287b4e8bf5c04faad21d43a21a1ce46.png", + "aggregators": ["CoinGecko", "Rubic", "Sonarwatch"], + "occurrences": 3 + }, + "0x00a0d4f2fe50e023aec0648271ce1a6616c702e2": { + "address": "0x00a0d4f2fe50e023aec0648271ce1a6616c702e2", + "symbol": "HITT", + "decimals": 18, + "name": "TOKHIT", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x00a0d4f2fe50e023aec0648271ce1a6616c702e2.png", + "aggregators": ["CoinGecko", "Rubic", "Sonarwatch"], + "occurrences": 3 + }, + "0x2cb7285733a30bb08303b917a7a519c88146c6eb": { + "address": "0x2cb7285733a30bb08303b917a7a519c88146c6eb", + "symbol": "FRK", + "decimals": 18, + "name": "KUMA Protocol FR KUMA Interest Bearing Token", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x2cb7285733a30bb08303b917a7a519c88146c6eb.png", + "aggregators": ["CoinGecko", "Rubic", "Sonarwatch"], + "occurrences": 3 + }, + "0x24fd25a49627ce2e4be711e76dc22234c83539fe": { + "address": "0x24fd25a49627ce2e4be711e76dc22234c83539fe", + "symbol": "LIY", + "decimals": 18, + "name": "Lily", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x24fd25a49627ce2e4be711e76dc22234c83539fe.png", + "aggregators": ["CoinGecko", "LiFi", "Rubic"], + "occurrences": 3 + }, + "0xb91025710adbc140a9fee4b3e465545a2bf53e20": { + "address": "0xb91025710adbc140a9fee4b3e465545a2bf53e20", + "symbol": "EMRL.D", + "decimals": 18, + "name": "Emerald Security Token", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0xb91025710adbc140a9fee4b3e465545a2bf53e20.png", + "aggregators": ["CoinGecko", "LiFi", "Rubic"], + "occurrences": 3 + }, + "0xcce87c5b269c94b31ec437b1d7d85bf1413b7804": { + "address": "0xcce87c5b269c94b31ec437b1d7d85bf1413b7804", + "symbol": "OORT", + "decimals": 18, + "name": "Oort Digital", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0xcce87c5b269c94b31ec437b1d7d85bf1413b7804.png", + "aggregators": ["CoinGecko", "Rubic", "Sonarwatch"], + "occurrences": 3 + }, + "0x181feaecca4a69a793272ea06df40edf2dd0804c": { + "address": "0x181feaecca4a69a793272ea06df40edf2dd0804c", + "symbol": "ARES", + "decimals": 18, + "name": "Ares3 Network", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x181feaecca4a69a793272ea06df40edf2dd0804c.png", + "aggregators": ["CoinGecko", "Rubic", "Sonarwatch"], + "occurrences": 3 + }, + "0x21a00838e6b2d4aa3ac4bbc11111be011e1ca111": { + "address": "0x21a00838e6b2d4aa3ac4bbc11111be011e1ca111", + "symbol": "$GREENGOLD", + "decimals": 6, + "name": "GREENGOLD", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x21a00838e6b2d4aa3ac4bbc11111be011e1ca111.png", + "aggregators": ["CoinGecko", "Rubic", "Sonarwatch"], + "occurrences": 3 + }, + "0x62395ec568c92973a38230de209abba9de18b9b7": { + "address": "0x62395ec568c92973a38230de209abba9de18b9b7", + "symbol": "T3XP", + "decimals": 18, + "name": "XP", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x62395ec568c92973a38230de209abba9de18b9b7.png", + "aggregators": ["CoinGecko", "Rubic", "Sonarwatch"], + "occurrences": 3 + }, + "0x05059b925e1396a78f7375a74bc81085b0694436": { + "address": "0x05059b925e1396a78f7375a74bc81085b0694436", + "symbol": "MTFI", + "decimals": 18, + "name": "MTFi", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x05059b925e1396a78f7375a74bc81085b0694436.png", + "aggregators": ["CoinGecko", "Rubic", "Sonarwatch"], + "occurrences": 3 + }, + "0x9c17d36bccecafb7d284e8b3d985576d21cf2350": { + "address": "0x9c17d36bccecafb7d284e8b3d985576d21cf2350", + "symbol": "OBSW", + "decimals": 18, + "name": "OBS World", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x9c17d36bccecafb7d284e8b3d985576d21cf2350.png", + "aggregators": ["CoinGecko", "Rubic", "Sonarwatch"], + "occurrences": 3 + }, + "0x95f9b9beceb273815f7f22a5729924acf88050a6": { + "address": "0x95f9b9beceb273815f7f22a5729924acf88050a6", + "symbol": "TPT", + "decimals": 18, + "name": "Triple Plus", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x95f9b9beceb273815f7f22a5729924acf88050a6.png", + "aggregators": ["CoinGecko", "Rubic", "Rango"], + "occurrences": 3 + }, + "0xb853f7852aa780831f165899ccbaf5db0882b0d6": { + "address": "0xb853f7852aa780831f165899ccbaf5db0882b0d6", + "symbol": "CRS", + "decimals": 18, + "name": "CYRUS", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0xb853f7852aa780831f165899ccbaf5db0882b0d6.png", + "aggregators": ["CoinGecko", "Rubic", "Sonarwatch"], + "occurrences": 3 + }, + "0x0fced30234c3ea94a7b47cc88006ecb7a39dc30e": { + "address": "0x0fced30234c3ea94a7b47cc88006ecb7a39dc30e", + "symbol": "BTMT", + "decimals": 18, + "name": "BITmarkets Token", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x0fced30234c3ea94a7b47cc88006ecb7a39dc30e.png", + "aggregators": ["CoinGecko", "Rubic", "Sonarwatch"], + "occurrences": 3 + }, + "0xf401e2c1ce8f252947b60bfb92578f84217a1545": { + "address": "0xf401e2c1ce8f252947b60bfb92578f84217a1545", + "symbol": "ABAL", + "decimals": 18, + "name": "Arch Balanced Portfolio", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0xf401e2c1ce8f252947b60bfb92578f84217a1545.png", + "aggregators": ["CoinGecko", "Rubic", "Sonarwatch"], + "occurrences": 3 + }, + "0x688b4231472fde70c1d30f48638aa1661725d3ce": { + "address": "0x688b4231472fde70c1d30f48638aa1661725d3ce", + "symbol": "SENDC", + "decimals": 18, + "name": "SendCrypto", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x688b4231472fde70c1d30f48638aa1661725d3ce.png", + "aggregators": ["CoinGecko", "Rubic", "Sonarwatch"], + "occurrences": 3 + }, + "0x5d301750cc9719f00872e33ee81f9c37aba242f4": { + "address": "0x5d301750cc9719f00872e33ee81f9c37aba242f4", + "symbol": "RVLT", + "decimals": 18, + "name": "Revolt 2 Earn", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x5d301750cc9719f00872e33ee81f9c37aba242f4.png", + "aggregators": ["CoinGecko", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x823bbb870b0eb86bd7ec0bcc98c84b46a0f99ac7": { + "address": "0x823bbb870b0eb86bd7ec0bcc98c84b46a0f99ac7", + "symbol": "VOY", + "decimals": 18, + "name": "Voy Finance", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x823bbb870b0eb86bd7ec0bcc98c84b46a0f99ac7.png", + "aggregators": ["CoinGecko", "Rubic", "Sonarwatch"], + "occurrences": 3 + }, + "0xc71a7e46266a9a78212a5d87b030f8d1ce942efd": { + "address": "0xc71a7e46266a9a78212a5d87b030f8d1ce942efd", + "symbol": "CFI", + "decimals": 18, + "name": "Coinbet Finance", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0xc71a7e46266a9a78212a5d87b030f8d1ce942efd.png", + "aggregators": ["CoinGecko", "Rubic", "Sonarwatch"], + "occurrences": 3 + }, + "0x6ccb663dad597058da28b58974e8bdb81323dd09": { + "address": "0x6ccb663dad597058da28b58974e8bdb81323dd09", + "symbol": "BLOC", + "decimals": 18, + "name": "BlockCentral Token", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x6ccb663dad597058da28b58974e8bdb81323dd09.png", + "aggregators": ["CoinGecko", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x2e2992688ee4b2b7229118f2f4cfd9b8ab13c520": { + "address": "0x2e2992688ee4b2b7229118f2f4cfd9b8ab13c520", + "symbol": "EAPE", + "decimals": 18, + "name": "EraApe", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x2e2992688ee4b2b7229118f2f4cfd9b8ab13c520.png", + "aggregators": ["CoinGecko", "Rubic", "Sonarwatch"], + "occurrences": 3 + }, + "0x01d1a890d40d890d59795afcce22f5adbb511a3a": { + "address": "0x01d1a890d40d890d59795afcce22f5adbb511a3a", + "symbol": "WFRK", + "decimals": 18, + "name": "KUMA Protocol Wrapped FRK", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x01d1a890d40d890d59795afcce22f5adbb511a3a.png", + "aggregators": ["CoinGecko", "Rubic", "Sonarwatch"], + "occurrences": 3 + }, + "0xafb6e8331355fae99c8e8953bb4c6dc5d11e9f3c": { + "address": "0xafb6e8331355fae99c8e8953bb4c6dc5d11e9f3c", + "symbol": "AAGG", + "decimals": 18, + "name": "Arch Aggressive Portfolio", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0xafb6e8331355fae99c8e8953bb4c6dc5d11e9f3c.png", + "aggregators": ["CoinGecko", "Rubic", "Sonarwatch"], + "occurrences": 3 + }, + "0x6c511dc18572d31c2c3f7b1505cb2bbc08282fcc": { + "address": "0x6c511dc18572d31c2c3f7b1505cb2bbc08282fcc", + "symbol": "AIPO", + "decimals": 18, + "name": "Aipocalypto", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x6c511dc18572d31c2c3f7b1505cb2bbc08282fcc.png", + "aggregators": ["CoinGecko", "LiFi", "Rubic"], + "occurrences": 3 + }, + "0x00560e906b7c73ee2d18ebfd191591a83ae27ea0": { + "address": "0x00560e906b7c73ee2d18ebfd191591a83ae27ea0", + "symbol": "LOVELY", + "decimals": 18, + "name": "Lovely Inu Finance", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x00560e906b7c73ee2d18ebfd191591a83ae27ea0.png", + "aggregators": ["CoinGecko", "Rubic", "Sonarwatch"], + "occurrences": 3 + }, + "0x9de2b2dcdcf43540e47143f28484b6d15118f089": { + "address": "0x9de2b2dcdcf43540e47143f28484b6d15118f089", + "symbol": "CHFSAFO", + "decimals": 5, + "name": "Spiko Amundi Overnight Swap Fund (CHF)", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x9de2b2dcdcf43540e47143f28484b6d15118f089.png", + "aggregators": ["CoinGecko", "LiFi", "Rubic"], + "occurrences": 3 + }, + "0x17a011150e9feb7bec4cfada055c8df436eb730b": { + "address": "0x17a011150e9feb7bec4cfada055c8df436eb730b", + "symbol": "TT", + "decimals": 18, + "name": "TDEX Token", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x17a011150e9feb7bec4cfada055c8df436eb730b.png", + "aggregators": ["CoinGecko", "Rubic", "Sonarwatch"], + "occurrences": 3 + }, + "0x2c2d8a078b33bf7782a16acce2c5ba6653a90d5f": { + "address": "0x2c2d8a078b33bf7782a16acce2c5ba6653a90d5f", + "symbol": "L3USD", + "decimals": 18, + "name": "L3USD", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x2c2d8a078b33bf7782a16acce2c5ba6653a90d5f.png", + "aggregators": ["CoinGecko", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x1bc8bf18256d8b45d8367aac50fe2e24fc6aa8ca": { + "address": "0x1bc8bf18256d8b45d8367aac50fe2e24fc6aa8ca", + "symbol": "VES", + "decimals": 18, + "name": "VESTATE", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x1bc8bf18256d8b45d8367aac50fe2e24fc6aa8ca.png", + "aggregators": ["CoinGecko", "LiFi", "Rubic"], + "occurrences": 3 + }, + "0x4d4d883f920f7c0c36a1be71a02aa0cde2aa22d1": { + "address": "0x4d4d883f920f7c0c36a1be71a02aa0cde2aa22d1", + "symbol": "OPCH", + "decimals": 18, + "name": "Opticash", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x4d4d883f920f7c0c36a1be71a02aa0cde2aa22d1.png", + "aggregators": ["CoinGecko", "Rubic", "Sonarwatch"], + "occurrences": 3 + }, + "0x3235b13708f178af6f110de7177ed5de10c1093d": { + "address": "0x3235b13708f178af6f110de7177ed5de10c1093d", + "symbol": "MNFT", + "decimals": 18, + "name": "MNFT", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x3235b13708f178af6f110de7177ed5de10c1093d.png", + "aggregators": ["CoinGecko", "Rubic", "Rango"], + "occurrences": 3 + }, + "0xae55ab6a966863cb4c774ba8e6c0a37cfbea01f9": { + "address": "0xae55ab6a966863cb4c774ba8e6c0a37cfbea01f9", + "symbol": "GRAMG", + "decimals": 18, + "name": "Gram Gold", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0xae55ab6a966863cb4c774ba8e6c0a37cfbea01f9.png", + "aggregators": ["CoinGecko", "LiFi", "Rubic"], + "occurrences": 3 + }, + "0x0e62cadbaeec69b8b0f2e9d56510f925512837d2": { + "address": "0x0e62cadbaeec69b8b0f2e9d56510f925512837d2", + "symbol": "ZOO", + "decimals": 18, + "name": "ZooCoin", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x0e62cadbaeec69b8b0f2e9d56510f925512837d2.png", + "aggregators": ["CoinGecko", "Rubic", "Sonarwatch"], + "occurrences": 3 + }, + "0x7212088a11b4d8f6fc90fbb3dfe793b45dd72323": { + "address": "0x7212088a11b4d8f6fc90fbb3dfe793b45dd72323", + "symbol": "BGME", + "decimals": 18, + "name": "Backed GameStop Corp", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x7212088a11b4d8f6fc90fbb3dfe793b45dd72323.png", + "aggregators": ["CoinGecko", "LiFi", "Rubic"], + "occurrences": 3 + }, + "0xa34c5e0abe843e10461e2c9586ea03e55dbcc495": { + "address": "0xa34c5e0abe843e10461e2c9586ea03e55dbcc495", + "symbol": "BNVDA", + "decimals": 18, + "name": "Backed NVIDIA Corp", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0xa34c5e0abe843e10461e2c9586ea03e55dbcc495.png", + "aggregators": ["CoinGecko", "LiFi", "Rubic"], + "occurrences": 3 + }, + "0x259b0f9494b3f02c652fa11417b94cb700f1f7d8": { + "address": "0x259b0f9494b3f02c652fa11417b94cb700f1f7d8", + "symbol": "CVPAD", + "decimals": 18, + "name": "CV Pad", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x259b0f9494b3f02c652fa11417b94cb700f1f7d8.png", + "aggregators": ["CoinGecko", "Rubic", "Sonarwatch"], + "occurrences": 3 + }, + "0xd7b675cd5c84a13d1d0f84509345530f6421b57c": { + "address": "0xd7b675cd5c84a13d1d0f84509345530f6421b57c", + "symbol": "OOOI", + "decimals": 18, + "name": "Corridor Finance", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0xd7b675cd5c84a13d1d0f84509345530f6421b57c.png", + "aggregators": ["CoinGecko", "Rubic", "Sonarwatch"], + "occurrences": 3 + }, + "0x3f95aa88ddbb7d9d484aa3d482bf0a80009c52c9": { + "address": "0x3f95aa88ddbb7d9d484aa3d482bf0a80009c52c9", + "symbol": "BERNX", + "decimals": 18, + "name": "Backed ERNX € Bond", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x3f95aa88ddbb7d9d484aa3d482bf0a80009c52c9.png", + "aggregators": ["CoinGecko", "Rubic", "Sonarwatch"], + "occurrences": 3 + }, + "0x0169ec1f8f639b32eec6d923e24c2a2ff45b9dd6": { + "address": "0x0169ec1f8f639b32eec6d923e24c2a2ff45b9dd6", + "symbol": "ALGB", + "decimals": 18, + "name": "Algebra", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x0169ec1f8f639b32eec6d923e24c2a2ff45b9dd6.png", + "aggregators": ["QuickSwap", "Rango", "SushiSwap"], + "occurrences": 3 + }, + "0x8bae3f5eb10f39663e57be19741fd9ccef0e113a": { + "address": "0x8bae3f5eb10f39663e57be19741fd9ccef0e113a", + "symbol": "PEPE.AXL", + "decimals": 18, + "name": " PEPE (Axelar)", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x8bae3f5eb10f39663e57be19741fd9ccef0e113a.png", + "aggregators": ["QuickSwap", "Rubic", "Squid"], + "occurrences": 3 + }, + "0xf915fdda4c882731c0456a4214548cd13a822886": { + "address": "0xf915fdda4c882731c0456a4214548cd13a822886", + "symbol": "FUSE", + "decimals": 18, + "name": "Fuse", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0xf915fdda4c882731c0456a4214548cd13a822886.png", + "aggregators": ["QuickSwap", "Socket", "Rubic"], + "occurrences": 3 + }, + "0xed88227296943857409a8e0f15ad7134e70d0f73": { + "address": "0xed88227296943857409a8e0f15ad7134e70d0f73", + "symbol": "LUMIII", + "decimals": 18, + "name": "LumiiiToken", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0xed88227296943857409a8e0f15ad7134e70d0f73.png", + "aggregators": ["QuickSwap", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x0ef39e52704ad52e2882bbfa6781167e1b6c4510": { + "address": "0x0ef39e52704ad52e2882bbfa6781167e1b6c4510", + "symbol": "PBORA", + "decimals": 18, + "name": "pBORA", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x0ef39e52704ad52e2882bbfa6781167e1b6c4510.png", + "aggregators": ["QuickSwap", "LiFi", "Rubic"], + "occurrences": 3 + }, + "0xf0f9d895aca5c8678f706fb8216fa22957685a13": { + "address": "0xf0f9d895aca5c8678f706fb8216fa22957685a13", + "symbol": "RVLT", + "decimals": 18, + "name": "Revolt 2 Earn", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0xf0f9d895aca5c8678f706fb8216fa22957685a13.png", + "aggregators": ["QuickSwap", "Rubic", "Squid"], + "occurrences": 3 + }, + "0xf1428850f92b87e629c6f3a3b75bffbc496f7ba6": { + "address": "0xf1428850f92b87e629c6f3a3b75bffbc496f7ba6", + "symbol": "GEO$", + "decimals": 18, + "name": "GEOPOLY", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0xf1428850f92b87e629c6f3a3b75bffbc496f7ba6.png", + "aggregators": ["1inch", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x1581929770be3275a82068c1135b6dd59c5334ed": { + "address": "0x1581929770be3275a82068c1135b6dd59c5334ed", + "symbol": "ALM", + "decimals": 18, + "name": "Alium Finance", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x1581929770be3275a82068c1135b6dd59c5334ed.png", + "aggregators": ["LiFi", "Rubic", "Sonarwatch"], + "occurrences": 3 + }, + "0x43e4b063f96c33f0433863a927f5bad34bb4b03d": { + "address": "0x43e4b063f96c33f0433863a927f5bad34bb4b03d", + "symbol": "EWTB", + "decimals": 18, + "name": "Energy Web Token Bridged (PoS)", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x43e4b063f96c33f0433863a927f5bad34bb4b03d.png", + "aggregators": ["LiFi", "Socket", "Rubic"], + "occurrences": 3 + }, + "0x36de20a30386b5bf99762e4b7e62f6a28dcea3ae": { + "address": "0x36de20a30386b5bf99762e4b7e62f6a28dcea3ae", + "symbol": "BAD", + "decimals": 18, + "name": "BAD Token", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x36de20a30386b5bf99762e4b7e62f6a28dcea3ae.png", + "aggregators": ["LiFi", "Socket", "Rubic"], + "occurrences": 3 + }, + "0x835273d47a2a4cc84693639f8d890af1caea611d": { + "address": "0x835273d47a2a4cc84693639f8d890af1caea611d", + "symbol": "NDX", + "decimals": 18, + "name": "Indexed (PoS)", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x835273d47a2a4cc84693639f8d890af1caea611d.png", + "aggregators": ["LiFi", "Socket", "Rubic"], + "occurrences": 3 + }, + "0x1bd9abf284e893705104e64b564b414620b722f1": { + "address": "0x1bd9abf284e893705104e64b564b414620b722f1", + "symbol": "ACM", + "decimals": 18, + "name": "acmFinance", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x1bd9abf284e893705104e64b564b414620b722f1.png", + "aggregators": ["LiFi", "Rubic", "Sonarwatch"], + "occurrences": 3 + }, + "0xd9d77b113e6ef2696267e20c35f3abd87cdaca2c": { + "address": "0xd9d77b113e6ef2696267e20c35f3abd87cdaca2c", + "symbol": "TANPIN", + "decimals": 18, + "name": "Tanpin", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0xd9d77b113e6ef2696267e20c35f3abd87cdaca2c.png", + "aggregators": ["LiFi", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x9377eeb7419486fd4d485671d50baa4bf77c2222": { + "address": "0x9377eeb7419486fd4d485671d50baa4bf77c2222", + "symbol": "PRQ", + "decimals": 18, + "name": "Parsiq (PoS)", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x9377eeb7419486fd4d485671d50baa4bf77c2222.png", + "aggregators": ["LiFi", "Socket", "Rubic"], + "occurrences": 3 + }, + "0x590eb2920486486c2d9bb3eb651f73b81df87bcf": { + "address": "0x590eb2920486486c2d9bb3eb651f73b81df87bcf", + "symbol": "BOBC", + "decimals": 18, + "name": "bobcoin", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x590eb2920486486c2d9bb3eb651f73b81df87bcf.png", + "aggregators": ["LiFi", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x59b5654a17ac44f3068b3882f298881433bb07ef": { + "address": "0x59b5654a17ac44f3068b3882f298881433bb07ef", + "symbol": "CHP", + "decimals": 18, + "name": "CoinPoker Chips (PoS)", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x59b5654a17ac44f3068b3882f298881433bb07ef.png", + "aggregators": ["LiFi", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x8429d0afade80498eadb9919e41437a14d45a00b": { + "address": "0x8429d0afade80498eadb9919e41437a14d45a00b", + "symbol": "GRAIN", + "decimals": 18, + "name": "Granary Token", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x8429d0afade80498eadb9919e41437a14d45a00b.png", + "aggregators": ["LiFi", "Rubic", "Squid"], + "occurrences": 3 + }, + "0xace7eb41d6bad44907cda84a122f052c74cb7826": { + "address": "0xace7eb41d6bad44907cda84a122f052c74cb7826", + "symbol": "GPRO", + "decimals": 18, + "name": "GoldPro", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0xace7eb41d6bad44907cda84a122f052c74cb7826.png", + "aggregators": ["LiFi", "Rubic", "Sonarwatch"], + "occurrences": 3 + }, + "0x329434fe066ac71d5fb93489f955a6959658097b": { + "address": "0x329434fe066ac71d5fb93489f955a6959658097b", + "symbol": "ADAI", + "decimals": 18, + "name": "Aave interest bearing DAI (PoS)", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x329434fe066ac71d5fb93489f955a6959658097b.png", + "aggregators": ["LiFi", "Socket", "Rubic"], + "occurrences": 3 + }, + "0x1ef5bb23e0b91c2e8480a4a2b71feb4607cb32f1": { + "address": "0x1ef5bb23e0b91c2e8480a4a2b71feb4607cb32f1", + "symbol": "SGT", + "decimals": 8, + "name": "SGT (PoS)", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x1ef5bb23e0b91c2e8480a4a2b71feb4607cb32f1.png", + "aggregators": ["LiFi", "Socket", "Rubic"], + "occurrences": 3 + }, + "0x8f6196901a4a153d8ee8f3fa779a042f6092d908": { + "address": "0x8f6196901a4a153d8ee8f3fa779a042f6092d908", + "symbol": "SALE", + "decimals": 18, + "name": "DxSale.Network (PoS)", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x8f6196901a4a153d8ee8f3fa779a042f6092d908.png", + "aggregators": ["LiFi", "Socket", "Rubic"], + "occurrences": 3 + }, + "0x13607aa9b2ffdd8340f4628049bd35c02a68fa05": { + "address": "0x13607aa9b2ffdd8340f4628049bd35c02a68fa05", + "symbol": "PPBLZ", + "decimals": 18, + "name": "Pepemon Pepeballs (PoS)", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x13607aa9b2ffdd8340f4628049bd35c02a68fa05.png", + "aggregators": ["LiFi", "Socket", "Rubic"], + "occurrences": 3 + }, + "0x57fcbd6503c8be3b1abad191bc7799ef414a5b31": { + "address": "0x57fcbd6503c8be3b1abad191bc7799ef414a5b31", + "symbol": "TXAG", + "decimals": 18, + "name": "tSILVER", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x57fcbd6503c8be3b1abad191bc7799ef414a5b31.png", + "aggregators": ["LiFi", "Socket", "Rubic"], + "occurrences": 3 + }, + "0xc1543024dc71247888a7e139c644f44e75e96d38": { + "address": "0xc1543024dc71247888a7e139c644f44e75e96d38", + "symbol": "BWO", + "decimals": 18, + "name": "Battle World", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0xc1543024dc71247888a7e139c644f44e75e96d38.png", + "aggregators": ["LiFi", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x02567e4b14b25549331fcee2b56c647a8bab16fd": { + "address": "0x02567e4b14b25549331fcee2b56c647a8bab16fd", + "symbol": "ZCHF", + "decimals": 18, + "name": "Frankencoin (PoS)", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x02567e4b14b25549331fcee2b56c647a8bab16fd.png", + "aggregators": ["LiFi", "Socket", "Rubic"], + "occurrences": 3 + }, + "0xad5dc12e88c6534eea8cfe2265851d9d4a1472ad": { + "address": "0xad5dc12e88c6534eea8cfe2265851d9d4a1472ad", + "symbol": "FSW", + "decimals": 18, + "name": "FalconSwap Token (PoS)", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0xad5dc12e88c6534eea8cfe2265851d9d4a1472ad.png", + "aggregators": ["LiFi", "Socket", "Rubic"], + "occurrences": 3 + }, + "0x0a5926027d407222f8fe20f24cb16e103f617046": { + "address": "0x0a5926027d407222f8fe20f24cb16e103f617046", + "symbol": "NFD", + "decimals": 18, + "name": "Feisty Doge NFT (PoS)", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x0a5926027d407222f8fe20f24cb16e103f617046.png", + "aggregators": ["LiFi", "Socket", "Rubic"], + "occurrences": 3 + }, + "0x82dcf1df86ada26b2dcd9ba6334cedb8c2448e9e": { + "address": "0x82dcf1df86ada26b2dcd9ba6334cedb8c2448e9e", + "symbol": "ALEPH", + "decimals": 18, + "name": "aleph.im v2 (PoS)", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x82dcf1df86ada26b2dcd9ba6334cedb8c2448e9e.png", + "aggregators": ["LiFi", "Socket", "Rubic"], + "occurrences": 3 + }, + "0xd4cce747e623ce2d72322892e5db238e2a5eb4f3": { + "address": "0xd4cce747e623ce2d72322892e5db238e2a5eb4f3", + "symbol": "HCFW", + "decimals": 18, + "name": "HumansCareFoundationWater", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0xd4cce747e623ce2d72322892e5db238e2a5eb4f3.png", + "aggregators": ["LiFi", "Rubic", "Rango"], + "occurrences": 3 + }, + "0xc3c604f1943b8c619c5d65cd11a876e9c8edcf10": { + "address": "0xc3c604f1943b8c619c5d65cd11a876e9c8edcf10", + "symbol": "MGH", + "decimals": 18, + "name": "the metaverse game hub (PoS)", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0xc3c604f1943b8c619c5d65cd11a876e9c8edcf10.png", + "aggregators": ["LiFi", "Socket", "Rubic"], + "occurrences": 3 + }, + "0x0aab8dc887d34f00d50e19aee48371a941390d14": { + "address": "0x0aab8dc887d34f00d50e19aee48371a941390d14", + "symbol": "POWR", + "decimals": 6, + "name": "PowerLedger (PoS)", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x0aab8dc887d34f00d50e19aee48371a941390d14.png", + "aggregators": ["LiFi", "Socket", "Rubic"], + "occurrences": 3 + }, + "0x0bd820ad2d7ab7305b5c9538ba824c9b9beb0561": { + "address": "0x0bd820ad2d7ab7305b5c9538ba824c9b9beb0561", + "symbol": "ROYA", + "decimals": 18, + "name": "Royale (PoS)", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x0bd820ad2d7ab7305b5c9538ba824c9b9beb0561.png", + "aggregators": ["LiFi", "Socket", "Rubic"], + "occurrences": 3 + }, + "0x28e96ffe75cdcc97044585b866bd02bd79c12dc0": { + "address": "0x28e96ffe75cdcc97044585b866bd02bd79c12dc0", + "symbol": "JUICE", + "decimals": 6, + "name": "JUICE (PoS)", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x28e96ffe75cdcc97044585b866bd02bd79c12dc0.png", + "aggregators": ["LiFi", "Socket", "Rubic"], + "occurrences": 3 + }, + "0x00d5149cdf7cec8725bf50073c51c4fa58ecca12": { + "address": "0x00d5149cdf7cec8725bf50073c51c4fa58ecca12", + "symbol": "POWER", + "decimals": 18, + "name": "UniPower (PoS)", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x00d5149cdf7cec8725bf50073c51c4fa58ecca12.png", + "aggregators": ["LiFi", "Socket", "Rubic"], + "occurrences": 3 + }, + "0xd3fdcb837dafdb7c9c3ebd48fe22a53f6dd3d7d7": { + "address": "0xd3fdcb837dafdb7c9c3ebd48fe22a53f6dd3d7d7", + "symbol": "QI", + "decimals": 18, + "name": "QiDao", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0xd3fdcb837dafdb7c9c3ebd48fe22a53f6dd3d7d7.png", + "aggregators": ["LiFi", "Socket", "Rubic"], + "occurrences": 3 + }, + "0x556f501cf8a43216df5bc9cc57eb04d4ffaa9e6d": { + "address": "0x556f501cf8a43216df5bc9cc57eb04d4ffaa9e6d", + "symbol": "DUST", + "decimals": 8, + "name": "Distant Universe Stardust Token", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x556f501cf8a43216df5bc9cc57eb04d4ffaa9e6d.png", + "aggregators": ["LiFi", "Socket", "Rubic"], + "occurrences": 3 + }, + "0xb8e5b39689f886f8c34d3e5ac09f513a282d486d": { + "address": "0xb8e5b39689f886f8c34d3e5ac09f513a282d486d", + "symbol": "FGH", + "decimals": 18, + "name": "Flowing Hair (PoS)", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0xb8e5b39689f886f8c34d3e5ac09f513a282d486d.png", + "aggregators": ["LiFi", "Socket", "Rubic"], + "occurrences": 3 + }, + "0xa96d47c621a8316d4f9539e3b38180c7067e84ca": { + "address": "0xa96d47c621a8316d4f9539e3b38180c7067e84ca", + "symbol": "AWS", + "decimals": 18, + "name": "AurusSILVER", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0xa96d47c621a8316d4f9539e3b38180c7067e84ca.png", + "aggregators": ["LiFi", "Socket", "Rubic"], + "occurrences": 3 + }, + "0x2da719db753dfa10a62e140f436e1d67f2ddb0d6": { + "address": "0x2da719db753dfa10a62e140f436e1d67f2ddb0d6", + "symbol": "CERE", + "decimals": 10, + "name": "CERE Network", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x2da719db753dfa10a62e140f436e1d67f2ddb0d6.png", + "aggregators": ["LiFi", "Socket", "Rubic"], + "occurrences": 3 + }, + "0xfa3c05c2023918a4324fde7163591fe6bebd1692": { + "address": "0xfa3c05c2023918a4324fde7163591fe6bebd1692", + "symbol": "XCRE", + "decimals": 18, + "name": "Cresio", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0xfa3c05c2023918a4324fde7163591fe6bebd1692.png", + "aggregators": ["LiFi", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x5d146d8b1dacb1ebba5cb005ae1059da8a1fbf57": { + "address": "0x5d146d8b1dacb1ebba5cb005ae1059da8a1fbf57", + "symbol": "CADC", + "decimals": 18, + "name": "CAD Coin (PoS)", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x5d146d8b1dacb1ebba5cb005ae1059da8a1fbf57.png", + "aggregators": ["LiFi", "Socket", "Rubic"], + "occurrences": 3 + }, + "0x5b0a0cd03e9df1829e00128ebe277cc3247da346": { + "address": "0x5b0a0cd03e9df1829e00128ebe277cc3247da346", + "symbol": "BFLY", + "decimals": 18, + "name": "Butterfly Protocol (PoS)", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x5b0a0cd03e9df1829e00128ebe277cc3247da346.png", + "aggregators": ["LiFi", "Socket", "Rubic"], + "occurrences": 3 + }, + "0x10635bf5c17f5e4c0ed9012aef7c12f96a57a4dd": { + "address": "0x10635bf5c17f5e4c0ed9012aef7c12f96a57a4dd", + "symbol": "TAP", + "decimals": 18, + "name": "Tapmydata (PoS)", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x10635bf5c17f5e4c0ed9012aef7c12f96a57a4dd.png", + "aggregators": ["LiFi", "Socket", "Rubic"], + "occurrences": 3 + }, + "0x1e42edbe5376e717c1b22904c59e406426e8173f": { + "address": "0x1e42edbe5376e717c1b22904c59e406426e8173f", + "symbol": "SURF", + "decimals": 18, + "name": "SURF.Finance (PoS)", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x1e42edbe5376e717c1b22904c59e406426e8173f.png", + "aggregators": ["LiFi", "Socket", "Rubic"], + "occurrences": 3 + }, + "0xf9b2ebdfa24688f0dfb12cc55782e635f91e64a2": { + "address": "0xf9b2ebdfa24688f0dfb12cc55782e635f91e64a2", + "symbol": "CLEO", + "decimals": 18, + "name": "Cleo", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0xf9b2ebdfa24688f0dfb12cc55782e635f91e64a2.png", + "aggregators": ["LiFi", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x74ac7664abb1c8fa152d41bb60e311a663a41c7e": { + "address": "0x74ac7664abb1c8fa152d41bb60e311a663a41c7e", + "symbol": "MOONEY", + "decimals": 18, + "name": "MOONEY (PoS)", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x74ac7664abb1c8fa152d41bb60e311a663a41c7e.png", + "aggregators": ["LiFi", "Socket", "Rubic"], + "occurrences": 3 + }, + "0xfe6a2342f7c5d234e8496df12c468be17e0c181f": { + "address": "0xfe6a2342f7c5d234e8496df12c468be17e0c181f", + "symbol": "ISLA", + "decimals": 18, + "name": "Defiville Island Token (PoS)", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0xfe6a2342f7c5d234e8496df12c468be17e0c181f.png", + "aggregators": ["LiFi", "Socket", "Rubic"], + "occurrences": 3 + }, + "0x08c15fa26e519a78a666d19ce5c646d55047e0a3": { + "address": "0x08c15fa26e519a78a666d19ce5c646d55047e0a3", + "symbol": "DF", + "decimals": 18, + "name": "dForce (PoS)", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x08c15fa26e519a78a666d19ce5c646d55047e0a3.png", + "aggregators": ["LiFi", "Socket", "Rubic"], + "occurrences": 3 + }, + "0xc8a94a3d3d2dabc3c1caffffdca6a7543c3e3e65": { + "address": "0xc8a94a3d3d2dabc3c1caffffdca6a7543c3e3e65", + "symbol": "GUSD", + "decimals": 2, + "name": "Gemini dollar (PoS)", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0xc8a94a3d3d2dabc3c1caffffdca6a7543c3e3e65.png", + "aggregators": ["LiFi", "Socket", "Rubic"], + "occurrences": 3 + }, + "0x90fb380ddebaf872cc1f8d8e8c604ff2f4697c19": { + "address": "0x90fb380ddebaf872cc1f8d8e8c604ff2f4697c19", + "symbol": "OBTC", + "decimals": 18, + "name": "BoringDAO BTC (PoS)", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x90fb380ddebaf872cc1f8d8e8c604ff2f4697c19.png", + "aggregators": ["LiFi", "Socket", "Rubic"], + "occurrences": 3 + }, + "0x24f82ae063f165d621b2aec10714eb989c51938a": { + "address": "0x24f82ae063f165d621b2aec10714eb989c51938a", + "symbol": "PIXEL", + "decimals": 4, + "name": "Pixel (PoS)", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x24f82ae063f165d621b2aec10714eb989c51938a.png", + "aggregators": ["LiFi", "Socket", "Rubic"], + "occurrences": 3 + }, + "0xedd6ca8a4202d4a36611e2fff109648c4863ae19": { + "address": "0xedd6ca8a4202d4a36611e2fff109648c4863ae19", + "symbol": "MAHA", + "decimals": 18, + "name": "MahaDAO (PoS)", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0xedd6ca8a4202d4a36611e2fff109648c4863ae19.png", + "aggregators": ["LiFi", "Socket", "Rubic"], + "occurrences": 3 + }, + "0x2e6978ceea865948f4c5685e35aec72652e3cb88": { + "address": "0x2e6978ceea865948f4c5685e35aec72652e3cb88", + "symbol": "TXPT", + "decimals": 18, + "name": "tPLATINUM", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x2e6978ceea865948f4c5685e35aec72652e3cb88.png", + "aggregators": ["LiFi", "Socket", "Rubic"], + "occurrences": 3 + }, + "0x41b3fc2302c8aac4c84c552f770419091ef52435": { + "address": "0x41b3fc2302c8aac4c84c552f770419091ef52435", + "symbol": "MAXX", + "decimals": 18, + "name": "MAXXToken.com (PoS)", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x41b3fc2302c8aac4c84c552f770419091ef52435.png", + "aggregators": ["LiFi", "Socket", "Rubic"], + "occurrences": 3 + }, + "0x348e62131fce2f4e0d5ead3fe1719bc039b380a9": { + "address": "0x348e62131fce2f4e0d5ead3fe1719bc039b380a9", + "symbol": "PYR", + "decimals": 18, + "name": "PYR Token", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x348e62131fce2f4e0d5ead3fe1719bc039b380a9.png", + "aggregators": ["LiFi", "Socket", "Rubic"], + "occurrences": 3 + }, + "0xf9a4bbaa7fa1dd2352f1a47d6d3fcff259a6d05f": { + "address": "0xf9a4bbaa7fa1dd2352f1a47d6d3fcff259a6d05f", + "symbol": "LEPA", + "decimals": 18, + "name": "Lepasa (PoS)", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0xf9a4bbaa7fa1dd2352f1a47d6d3fcff259a6d05f.png", + "aggregators": ["LiFi", "Socket", "Rubic"], + "occurrences": 3 + }, + "0xffcd553464a00d7b30a48960611e5032f544700a": { + "address": "0xffcd553464a00d7b30a48960611e5032f544700a", + "symbol": "GM", + "decimals": 8, + "name": "GhostMarket Token", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0xffcd553464a00d7b30a48960611e5032f544700a.png", + "aggregators": ["LiFi", "Socket", "Rubic"], + "occurrences": 3 + }, + "0xcbb2da0127042546ceff56da69faf3f2ba6d1c51": { + "address": "0xcbb2da0127042546ceff56da69faf3f2ba6d1c51", + "symbol": "MBC", + "decimals": 18, + "name": "MarbleCoin", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0xcbb2da0127042546ceff56da69faf3f2ba6d1c51.png", + "aggregators": ["LiFi", "Socket", "Rubic"], + "occurrences": 3 + }, + "0x5c7f7fe4766fe8f0fa9b41e2e4194d939488ff1c": { + "address": "0x5c7f7fe4766fe8f0fa9b41e2e4194d939488ff1c", + "symbol": "DOKI", + "decimals": 18, + "name": "DokiDokiFinance (PoS)", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x5c7f7fe4766fe8f0fa9b41e2e4194d939488ff1c.png", + "aggregators": ["LiFi", "Socket", "Rubic"], + "occurrences": 3 + }, + "0x5ecba59dacc1adc5bdea35f38a732823fc3de977": { + "address": "0x5ecba59dacc1adc5bdea35f38a732823fc3de977", + "symbol": "FORTH", + "decimals": 18, + "name": "Ampleforth Governance (PoS)", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x5ecba59dacc1adc5bdea35f38a732823fc3de977.png", + "aggregators": ["LiFi", "Socket", "Rubic"], + "occurrences": 3 + }, + "0x422361e0e97cbfd5f95d5a50f50598a6fc4d8ce6": { + "address": "0x422361e0e97cbfd5f95d5a50f50598a6fc4d8ce6", + "symbol": "AVA", + "decimals": 18, + "name": "Alpha Fund (PoS)", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x422361e0e97cbfd5f95d5a50f50598a6fc4d8ce6.png", + "aggregators": ["LiFi", "Socket", "Rubic"], + "occurrences": 3 + }, + "0x06d02e9d62a13fc76bb229373fb3bbbd1101d2fc": { + "address": "0x06d02e9d62a13fc76bb229373fb3bbbd1101d2fc", + "symbol": "LEO", + "decimals": 18, + "name": "Bitfinex LEO Token (PoS)", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x06d02e9d62a13fc76bb229373fb3bbbd1101d2fc.png", + "aggregators": ["LiFi", "Socket", "Rubic"], + "occurrences": 3 + }, + "0x5f084f3ee7ea09e4c01cee3cdf1b5620a3344fd0": { + "address": "0x5f084f3ee7ea09e4c01cee3cdf1b5620a3344fd0", + "symbol": "KIF", + "decimals": 18, + "name": "KittenFinance (PoS)", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x5f084f3ee7ea09e4c01cee3cdf1b5620a3344fd0.png", + "aggregators": ["LiFi", "Socket", "Rubic"], + "occurrences": 3 + }, + "0x679c986e183261b31c0065eb0b3c2ebd59035d56": { + "address": "0x679c986e183261b31c0065eb0b3c2ebd59035d56", + "symbol": "ZIK", + "decimals": 18, + "name": "Ziktalk (PoS)", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x679c986e183261b31c0065eb0b3c2ebd59035d56.png", + "aggregators": ["LiFi", "Socket", "Rubic"], + "occurrences": 3 + }, + "0xfeff6c1643d38b13a198cfe1d76505701c380af0": { + "address": "0xfeff6c1643d38b13a198cfe1d76505701c380af0", + "symbol": "DIP", + "decimals": 18, + "name": "Etherisc DIP (PoS)", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0xfeff6c1643d38b13a198cfe1d76505701c380af0.png", + "aggregators": ["LiFi", "Socket", "Rubic"], + "occurrences": 3 + }, + "0xf7d9e281c5cb4c6796284c5b663b3593d2037af2": { + "address": "0xf7d9e281c5cb4c6796284c5b663b3593d2037af2", + "symbol": "NFTP", + "decimals": 18, + "name": "NFT Platform Index (PoS)", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0xf7d9e281c5cb4c6796284c5b663b3593d2037af2.png", + "aggregators": ["LiFi", "Socket", "Rubic"], + "occurrences": 3 + }, + "0xd93c61d4418d77a537b6b57478c108e193362f0c": { + "address": "0xd93c61d4418d77a537b6b57478c108e193362f0c", + "symbol": "MBONK", + "decimals": 18, + "name": "megaBONK (PoS)", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0xd93c61d4418d77a537b6b57478c108e193362f0c.png", + "aggregators": ["LiFi", "Socket", "Rubic"], + "occurrences": 3 + }, + "0xae29ac47a9e3b0a52840e547adf74b912999f7fc": { + "address": "0xae29ac47a9e3b0a52840e547adf74b912999f7fc", + "symbol": "EVE", + "decimals": 18, + "name": "EVE", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0xae29ac47a9e3b0a52840e547adf74b912999f7fc.png", + "aggregators": ["LiFi", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x5c59d7cb794471a9633391c4927ade06b8787a90": { + "address": "0x5c59d7cb794471a9633391c4927ade06b8787a90", + "symbol": "TIME", + "decimals": 18, + "name": "Timeleap Finance", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x5c59d7cb794471a9633391c4927ade06b8787a90.png", + "aggregators": ["LiFi", "Rubic", "Rango"], + "occurrences": 3 + }, + "0xd0252fb67606ed74d0cacd17b2eb38446e4466c9": { + "address": "0xd0252fb67606ed74d0cacd17b2eb38446e4466c9", + "symbol": "ARGO", + "decimals": 18, + "name": "ArGo Token (PoS)", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0xd0252fb67606ed74d0cacd17b2eb38446e4466c9.png", + "aggregators": ["LiFi", "Socket", "Rubic"], + "occurrences": 3 + }, + "0x609255414ff5289f87c99baf9737a4ec85a18643": { + "address": "0x609255414ff5289f87c99baf9737a4ec85a18643", + "symbol": "SONG", + "decimals": 18, + "name": "Beatify (PoS)", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x609255414ff5289f87c99baf9737a4ec85a18643.png", + "aggregators": ["LiFi", "Socket", "Rubic"], + "occurrences": 3 + }, + "0x33c9f7c0afe2722cb9e426360c261fb755b4483d": { + "address": "0x33c9f7c0afe2722cb9e426360c261fb755b4483d", + "symbol": "SNOW", + "decimals": 18, + "name": "SnowSwap (PoS)", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x33c9f7c0afe2722cb9e426360c261fb755b4483d.png", + "aggregators": ["LiFi", "Socket", "Rubic"], + "occurrences": 3 + }, + "0x948d2a81086a075b3130bac19e4c6dee1d2e3fe8": { + "address": "0x948d2a81086a075b3130bac19e4c6dee1d2e3fe8", + "symbol": "GUARD", + "decimals": 18, + "name": "GUARD", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x948d2a81086a075b3130bac19e4c6dee1d2e3fe8.png", + "aggregators": ["LiFi", "Rubic", "Rango"], + "occurrences": 3 + }, + "0xb3b9c016ad1e9f7efdae451b04ef696e05658b32": { + "address": "0xb3b9c016ad1e9f7efdae451b04ef696e05658b32", + "symbol": "XPRT", + "decimals": 6, + "name": "Persistence (PoS)", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0xb3b9c016ad1e9f7efdae451b04ef696e05658b32.png", + "aggregators": ["LiFi", "Socket", "Rubic"], + "occurrences": 3 + }, + "0x57999936fc9a9ec0751a8d146cce11901be8bed0": { + "address": "0x57999936fc9a9ec0751a8d146cce11901be8bed0", + "symbol": "FXVRSW", + "decimals": 18, + "name": "FXVRSW", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x57999936fc9a9ec0751a8d146cce11901be8bed0.png", + "aggregators": ["LiFi", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x7c4a54f5d20b4023d6746f1f765f4dfe7c39a7e6": { + "address": "0x7c4a54f5d20b4023d6746f1f765f4dfe7c39a7e6", + "symbol": "RENDOGE", + "decimals": 8, + "name": "renDOGE (PoS)", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x7c4a54f5d20b4023d6746f1f765f4dfe7c39a7e6.png", + "aggregators": ["LiFi", "Socket", "Rubic"], + "occurrences": 3 + }, + "0xe86e8beb7340659dddce61727e500e3a5ad75a90": { + "address": "0xe86e8beb7340659dddce61727e500e3a5ad75a90", + "symbol": "ZUT", + "decimals": 18, + "name": "ZeroUtility (PoS)", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0xe86e8beb7340659dddce61727e500e3a5ad75a90.png", + "aggregators": ["LiFi", "Socket", "Rubic"], + "occurrences": 3 + }, + "0xce4e6da9c509cb33c23d748713c681c959f68658": { + "address": "0xce4e6da9c509cb33c23d748713c681c959f68658", + "symbol": "YIELD", + "decimals": 18, + "name": "PolyYield", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0xce4e6da9c509cb33c23d748713c681c959f68658.png", + "aggregators": ["LiFi", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x2e220744f9ac1bf3045b0588d339f5fd3bb8623a": { + "address": "0x2e220744f9ac1bf3045b0588d339f5fd3bb8623a", + "symbol": "MM", + "decimals": 18, + "name": "MMToken (PoS)", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x2e220744f9ac1bf3045b0588d339f5fd3bb8623a.png", + "aggregators": ["LiFi", "Socket", "Rubic"], + "occurrences": 3 + }, + "0x09e1943dd2a4e82032773594f50cf54453000b97": { + "address": "0x09e1943dd2a4e82032773594f50cf54453000b97", + "symbol": "GALA", + "decimals": 8, + "name": "Gala (PoS)", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x09e1943dd2a4e82032773594f50cf54453000b97.png", + "aggregators": ["LiFi", "Socket", "Rubic"], + "occurrences": 3 + }, + "0x968f6f898a6df937fc1859b323ac2f14643e3fed": { + "address": "0x968f6f898a6df937fc1859b323ac2f14643e3fed", + "symbol": "NWC", + "decimals": 18, + "name": "Newscrypto", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x968f6f898a6df937fc1859b323ac2f14643e3fed.png", + "aggregators": ["LiFi", "Socket", "Rubic"], + "occurrences": 3 + }, + "0x9f5755d47fb80100e7ee65bf7e136fca85dd9334": { + "address": "0x9f5755d47fb80100e7ee65bf7e136fca85dd9334", + "symbol": "OM", + "decimals": 18, + "name": "OM Token (PoS)", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x9f5755d47fb80100e7ee65bf7e136fca85dd9334.png", + "aggregators": ["LiFi", "Socket", "Rubic"], + "occurrences": 3 + }, + "0x8ba941b64901e306667a287a370f145d98811096": { + "address": "0x8ba941b64901e306667a287a370f145d98811096", + "symbol": "CTI", + "decimals": 18, + "name": "ClinTex (PoS)", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x8ba941b64901e306667a287a370f145d98811096.png", + "aggregators": ["LiFi", "Socket", "Rubic"], + "occurrences": 3 + }, + "0xd7671bdce849eabef4da313ccc80e689151ee811": { + "address": "0xd7671bdce849eabef4da313ccc80e689151ee811", + "symbol": "BID", + "decimals": 18, + "name": "Bidao (PoS)", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0xd7671bdce849eabef4da313ccc80e689151ee811.png", + "aggregators": ["LiFi", "Socket", "Rubic"], + "occurrences": 3 + }, + "0xb371248dd0f9e4061ccf8850e9223ca48aa7ca4b": { + "address": "0xb371248dd0f9e4061ccf8850e9223ca48aa7ca4b", + "symbol": "HNY", + "decimals": 18, + "name": "Honey (PoS)", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0xb371248dd0f9e4061ccf8850e9223ca48aa7ca4b.png", + "aggregators": ["LiFi", "Socket", "Rubic"], + "occurrences": 3 + }, + "0x068180071617528606371c31892ecbf2b70ac1d2": { + "address": "0x068180071617528606371c31892ecbf2b70ac1d2", + "symbol": "SPI", + "decimals": 18, + "name": "Shopping.io (PoS)", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x068180071617528606371c31892ecbf2b70ac1d2.png", + "aggregators": ["LiFi", "Socket", "Rubic"], + "occurrences": 3 + }, + "0x95c300e7740d2a88a44124b424bfc1cb2f9c3b89": { + "address": "0x95c300e7740d2a88a44124b424bfc1cb2f9c3b89", + "symbol": "ALCX", + "decimals": 18, + "name": "Alchemix (PoS)", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x95c300e7740d2a88a44124b424bfc1cb2f9c3b89.png", + "aggregators": ["LiFi", "Socket", "Rubic"], + "occurrences": 3 + }, + "0x9d5565da88e596730522cbc5a918d2a89dbc16d9": { + "address": "0x9d5565da88e596730522cbc5a918d2a89dbc16d9", + "symbol": "OOE", + "decimals": 18, + "name": "OOE", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x9d5565da88e596730522cbc5a918d2a89dbc16d9.png", + "aggregators": ["LiFi", "Socket", "Rango"], + "occurrences": 3 + }, + "0xe2341718c6c0cbfa8e6686102dd8fbf4047a9e9b": { + "address": "0xe2341718c6c0cbfa8e6686102dd8fbf4047a9e9b", + "symbol": "AIOZ", + "decimals": 18, + "name": "AIOZ Network (PoS)", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0xe2341718c6c0cbfa8e6686102dd8fbf4047a9e9b.png", + "aggregators": ["LiFi", "Socket", "Rubic"], + "occurrences": 3 + }, + "0x60ac2e84078ce30cbc68e3d7b18bcf613271ce6b": { + "address": "0x60ac2e84078ce30cbc68e3d7b18bcf613271ce6b", + "symbol": "ALOHA", + "decimals": 18, + "name": "ALOHA", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x60ac2e84078ce30cbc68e3d7b18bcf613271ce6b.png", + "aggregators": ["LiFi", "Socket", "Rubic"], + "occurrences": 3 + }, + "0x6e8a8726639d12935b3219892155520bdc57366b": { + "address": "0x6e8a8726639d12935b3219892155520bdc57366b", + "symbol": "GNOME", + "decimals": 18, + "name": "GenomesDAO Governance (PoS)", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x6e8a8726639d12935b3219892155520bdc57366b.png", + "aggregators": ["LiFi", "Socket", "Rubic"], + "occurrences": 3 + }, + "0x7dd3d9e1868a7da87509a601e7dbbf938c819a32": { + "address": "0x7dd3d9e1868a7da87509a601e7dbbf938c819a32", + "symbol": "VOX", + "decimals": 18, + "name": "Vox.Finance (PoS)", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x7dd3d9e1868a7da87509a601e7dbbf938c819a32.png", + "aggregators": ["LiFi", "Socket", "Rubic"], + "occurrences": 3 + }, + "0xfe9ca7cf13e33b23af63fea696f4aae1b7a65585": { + "address": "0xfe9ca7cf13e33b23af63fea696f4aae1b7a65585", + "symbol": "VIDYA", + "decimals": 18, + "name": "Vidya (PoS)", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0xfe9ca7cf13e33b23af63fea696f4aae1b7a65585.png", + "aggregators": ["LiFi", "Socket", "Rubic"], + "occurrences": 3 + }, + "0xf2b5a8c37278bcdd50727d5ca879f8e5a4642e2e": { + "address": "0xf2b5a8c37278bcdd50727d5ca879f8e5a4642e2e", + "symbol": "MEME", + "decimals": 8, + "name": "MEME (PoS)", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0xf2b5a8c37278bcdd50727d5ca879f8e5a4642e2e.png", + "aggregators": ["LiFi", "Socket", "Rubic"], + "occurrences": 3 + }, + "0x780053837ce2ceead2a90d9151aa21fc89ed49c2": { + "address": "0x780053837ce2ceead2a90d9151aa21fc89ed49c2", + "symbol": "RARI", + "decimals": 18, + "name": "Rarible (PoS)", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x780053837ce2ceead2a90d9151aa21fc89ed49c2.png", + "aggregators": ["LiFi", "Socket", "Rubic"], + "occurrences": 3 + }, + "0x2a82437475a60bebd53e33997636fade77604fc2": { + "address": "0x2a82437475a60bebd53e33997636fade77604fc2", + "symbol": "CIRUS", + "decimals": 18, + "name": "Cirus (PoS)", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x2a82437475a60bebd53e33997636fade77604fc2.png", + "aggregators": ["LiFi", "Socket", "Rubic"], + "occurrences": 3 + }, + "0x2e4b0fb46a46c90cb410fe676f24e466753b469f": { + "address": "0x2e4b0fb46a46c90cb410fe676f24e466753b469f", + "symbol": "UMBR", + "decimals": 18, + "name": "UmbriaToken (PoS)", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x2e4b0fb46a46c90cb410fe676f24e466753b469f.png", + "aggregators": ["LiFi", "Socket", "Rubic"], + "occurrences": 3 + }, + "0x8dc302e2141da59c934d900886dbf1518fd92cd4": { + "address": "0x8dc302e2141da59c934d900886dbf1518fd92cd4", + "symbol": "POLS", + "decimals": 18, + "name": "PolkastarterToken (PoS)", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x8dc302e2141da59c934d900886dbf1518fd92cd4.png", + "aggregators": ["LiFi", "Socket", "Rubic"], + "occurrences": 3 + }, + "0x220ed61d1f1cc754cb71978585d69e07be576315": { + "address": "0x220ed61d1f1cc754cb71978585d69e07be576315", + "symbol": "LADZ", + "decimals": 4, + "name": "LADZ (PoS)", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x220ed61d1f1cc754cb71978585d69e07be576315.png", + "aggregators": ["LiFi", "Socket", "Rubic"], + "occurrences": 3 + }, + "0x157b28e46f301c596668a4b85c59f710f9c4bbaa": { + "address": "0x157b28e46f301c596668a4b85c59f710f9c4bbaa", + "symbol": "WWGR", + "decimals": 8, + "name": "Wrapped Wagerr (PoS)", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x157b28e46f301c596668a4b85c59f710f9c4bbaa.png", + "aggregators": ["LiFi", "Socket", "Rubic"], + "occurrences": 3 + }, + "0xcb059c5573646047d6d88dddb87b745c18161d3b": { + "address": "0xcb059c5573646047d6d88dddb87b745c18161d3b", + "symbol": "POLY", + "decimals": 18, + "name": "Polymath (PoS)", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0xcb059c5573646047d6d88dddb87b745c18161d3b.png", + "aggregators": ["LiFi", "Socket", "Rango"], + "occurrences": 3 + }, + "0x66e16d50c07a01bb473ec794349d45aa1a0e5dc2": { + "address": "0x66e16d50c07a01bb473ec794349d45aa1a0e5dc2", + "symbol": "FOAM", + "decimals": 18, + "name": "FOAM Token (PoS)", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x66e16d50c07a01bb473ec794349d45aa1a0e5dc2.png", + "aggregators": ["LiFi", "Socket", "Rubic"], + "occurrences": 3 + }, + "0x7f2841a5c7e69e921897fbfbce95caea34634a35": { + "address": "0x7f2841a5c7e69e921897fbfbce95caea34634a35", + "symbol": "WAR", + "decimals": 18, + "name": "NFT WARS (PoS)", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x7f2841a5c7e69e921897fbfbce95caea34634a35.png", + "aggregators": ["LiFi", "Socket", "Rubic"], + "occurrences": 3 + }, + "0x0731d0c0d123382c163aae78a09390cad2ffc941": { + "address": "0x0731d0c0d123382c163aae78a09390cad2ffc941", + "symbol": "INK", + "decimals": 18, + "name": "Ink Fantom", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x0731d0c0d123382c163aae78a09390cad2ffc941.png", + "aggregators": ["LiFi", "Rubic", "Rango"], + "occurrences": 3 + }, + "0xfe7ff8b5dfba93a9eab7aee447c3c72990052d93": { + "address": "0xfe7ff8b5dfba93a9eab7aee447c3c72990052d93", + "symbol": "UBI", + "decimals": 18, + "name": "Universal Basic Income (PoS)", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0xfe7ff8b5dfba93a9eab7aee447c3c72990052d93.png", + "aggregators": ["LiFi", "Socket", "Rubic"], + "occurrences": 3 + }, + "0x7e85e6b00a8e9c757f2fef60d047b6f787c66a1e": { + "address": "0x7e85e6b00a8e9c757f2fef60d047b6f787c66a1e", + "symbol": "LPL", + "decimals": 18, + "name": "LinkPool (PoS)", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x7e85e6b00a8e9c757f2fef60d047b6f787c66a1e.png", + "aggregators": ["LiFi", "Socket", "Rubic"], + "occurrences": 3 + }, + "0x4ba47b10ea8f544f8969ba61df3e5be67692a122": { + "address": "0x4ba47b10ea8f544f8969ba61df3e5be67692a122", + "symbol": "IFUND", + "decimals": 18, + "name": "UNIFUND (PoS)", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x4ba47b10ea8f544f8969ba61df3e5be67692a122.png", + "aggregators": ["LiFi", "Socket", "Rubic"], + "occurrences": 3 + }, + "0xad93e067e149f0a5ecd12d8ea83b05581dd6374c": { + "address": "0xad93e067e149f0a5ecd12d8ea83b05581dd6374c", + "symbol": "PNK", + "decimals": 18, + "name": "Pinakion (PoS)", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0xad93e067e149f0a5ecd12d8ea83b05581dd6374c.png", + "aggregators": ["LiFi", "Socket", "Rubic"], + "occurrences": 3 + }, + "0xe9949106f0777e7a2e36df891d59583ac94dc896": { + "address": "0xe9949106f0777e7a2e36df891d59583ac94dc896", + "symbol": "PAN", + "decimals": 18, + "name": "Panvala PAN (PoS)", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0xe9949106f0777e7a2e36df891d59583ac94dc896.png", + "aggregators": ["LiFi", "Socket", "Rubic"], + "occurrences": 3 + }, + "0x800eb319e3f0e962d3ca8d625c871b8f1bdf2bc8": { + "address": "0x800eb319e3f0e962d3ca8d625c871b8f1bdf2bc8", + "symbol": "AGI", + "decimals": 8, + "name": "SingularityNET Token (PoS)", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x800eb319e3f0e962d3ca8d625c871b8f1bdf2bc8.png", + "aggregators": ["LiFi", "Socket", "Rubic"], + "occurrences": 3 + }, + "0xbf3d5d13b3cb79a6173394046973c34a60ac8a41": { + "address": "0xbf3d5d13b3cb79a6173394046973c34a60ac8a41", + "symbol": "BOBA", + "decimals": 18, + "name": "bobabet.dcl.eth.link (PoS)", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0xbf3d5d13b3cb79a6173394046973c34a60ac8a41.png", + "aggregators": ["LiFi", "Socket", "Rubic"], + "occurrences": 3 + }, + "0xa3860f969075045d82de85b06bb665f93c4bae32": { + "address": "0xa3860f969075045d82de85b06bb665f93c4bae32", + "symbol": "SUPERBID", + "decimals": 18, + "name": "SuperBid (PoS)", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0xa3860f969075045d82de85b06bb665f93c4bae32.png", + "aggregators": ["LiFi", "Socket", "Rubic"], + "occurrences": 3 + }, + "0x103308793661879166464cd0d0370ac3b8a2a1cb": { + "address": "0x103308793661879166464cd0d0370ac3b8a2a1cb", + "symbol": "YOP", + "decimals": 8, + "name": "YOP (PoS)", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x103308793661879166464cd0d0370ac3b8a2a1cb.png", + "aggregators": ["LiFi", "Socket", "Rubic"], + "occurrences": 3 + }, + "0xebf9b87583c284f0a1b7af72371f84d2a7567285": { + "address": "0xebf9b87583c284f0a1b7af72371f84d2a7567285", + "symbol": "CRTS", + "decimals": 9, + "name": "Cryptotipsfr Token V2 (PoS)", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0xebf9b87583c284f0a1b7af72371f84d2a7567285.png", + "aggregators": ["LiFi", "Socket", "Rubic"], + "occurrences": 3 + }, + "0x957d1ad5214468332c5e6c00305a25116f9a46bb": { + "address": "0x957d1ad5214468332c5e6c00305a25116f9a46bb", + "symbol": "NOIA", + "decimals": 18, + "name": "NOIA Token (PoS)", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x957d1ad5214468332c5e6c00305a25116f9a46bb.png", + "aggregators": ["LiFi", "Socket", "Rubic"], + "occurrences": 3 + }, + "0x8ca5ed20346c5d8a21a849d59c64f0884a532882": { + "address": "0x8ca5ed20346c5d8a21a849d59c64f0884a532882", + "symbol": "OFT", + "decimals": 18, + "name": "Orient (PoS)", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x8ca5ed20346c5d8a21a849d59c64f0884a532882.png", + "aggregators": ["LiFi", "Socket", "Rubic"], + "occurrences": 3 + }, + "0x175bdc4e52eecb675b86fc4c9a3ea3f80adbb610": { + "address": "0x175bdc4e52eecb675b86fc4c9a3ea3f80adbb610", + "symbol": "HXN", + "decimals": 18, + "name": "Havens Nook (PoS)", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x175bdc4e52eecb675b86fc4c9a3ea3f80adbb610.png", + "aggregators": ["LiFi", "Socket", "Rubic"], + "occurrences": 3 + }, + "0x5de4005155933c0e1612ce808f12b4cd8daabc82": { + "address": "0x5de4005155933c0e1612ce808f12b4cd8daabc82", + "symbol": "ARMOR", + "decimals": 18, + "name": "Armor (PoS)", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x5de4005155933c0e1612ce808f12b4cd8daabc82.png", + "aggregators": ["LiFi", "Socket", "Rubic"], + "occurrences": 3 + }, + "0xcd0d64c971af8b477042130c5e6cd2a6f7842869": { + "address": "0xcd0d64c971af8b477042130c5e6cd2a6f7842869", + "symbol": "BZN", + "decimals": 18, + "name": "Benzene (PoS)", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0xcd0d64c971af8b477042130c5e6cd2a6f7842869.png", + "aggregators": ["LiFi", "Socket", "Rubic"], + "occurrences": 3 + }, + "0xa707734bd310883e133e0ca23f6c166aeb2a1a7a": { + "address": "0xa707734bd310883e133e0ca23f6c166aeb2a1a7a", + "symbol": "MORK", + "decimals": 4, + "name": "Mork (PoS)", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0xa707734bd310883e133e0ca23f6c166aeb2a1a7a.png", + "aggregators": ["LiFi", "Socket", "Rubic"], + "occurrences": 3 + }, + "0xb3b681dee0435ecc0a508e40b02b3c9068d618cd": { + "address": "0xb3b681dee0435ecc0a508e40b02b3c9068d618cd", + "symbol": "YAM", + "decimals": 18, + "name": "YAM (PoS)", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0xb3b681dee0435ecc0a508e40b02b3c9068d618cd.png", + "aggregators": ["LiFi", "Socket", "Rubic"], + "occurrences": 3 + }, + "0xb272b6d99858b0efb079946942006727fe105201": { + "address": "0xb272b6d99858b0efb079946942006727fe105201", + "symbol": "XPB", + "decimals": 18, + "name": "Lead Token (PoS)", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0xb272b6d99858b0efb079946942006727fe105201.png", + "aggregators": ["LiFi", "Socket", "Rubic"], + "occurrences": 3 + }, + "0x2fd4d793c1905d82018d75e3b09d3035856890a1": { + "address": "0x2fd4d793c1905d82018d75e3b09d3035856890a1", + "symbol": "SPHRI", + "decimals": 18, + "name": "Spherium", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x2fd4d793c1905d82018d75e3b09d3035856890a1.png", + "aggregators": ["LiFi", "Rubic", "Sonarwatch"], + "occurrences": 3 + }, + "0xe6f3be5b52b5de0156148a4aab2e6674e7c1f5d0": { + "address": "0xe6f3be5b52b5de0156148a4aab2e6674e7c1f5d0", + "symbol": "CODA", + "decimals": 18, + "name": "CODA", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0xe6f3be5b52b5de0156148a4aab2e6674e7c1f5d0.png", + "aggregators": ["LiFi", "Rubic", "Sonarwatch"], + "occurrences": 3 + }, + "0xc0a1adce1c62daedf1b5f07b31266090bc5cc6d2": { + "address": "0xc0a1adce1c62daedf1b5f07b31266090bc5cc6d2", + "symbol": "ONUS", + "decimals": 18, + "name": "ONUS", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0xc0a1adce1c62daedf1b5f07b31266090bc5cc6d2.png", + "aggregators": ["LiFi", "Rubic", "Sonarwatch"], + "occurrences": 3 + }, + "0x2808edb7398b25e0f6c41cd98fd114d924008c87": { + "address": "0x2808edb7398b25e0f6c41cd98fd114d924008c87", + "symbol": "FLUX", + "decimals": 18, + "name": "FLUX (PoS)", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x2808edb7398b25e0f6c41cd98fd114d924008c87.png", + "aggregators": ["LiFi", "Socket", "Rubic"], + "occurrences": 3 + }, + "0x0f92d459b20d21f6bf9e02056ea9165d3f78ba62": { + "address": "0x0f92d459b20d21f6bf9e02056ea9165d3f78ba62", + "symbol": "CUM", + "decimals": 18, + "name": "CumCoin (PoS)", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x0f92d459b20d21f6bf9e02056ea9165d3f78ba62.png", + "aggregators": ["LiFi", "Socket", "Rubic"], + "occurrences": 3 + }, + "0x709d140925272ee606825781b1bef7be6b1412cd": { + "address": "0x709d140925272ee606825781b1bef7be6b1412cd", + "symbol": "CGU", + "decimals": 8, + "name": "Crypto Global United", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x709d140925272ee606825781b1bef7be6b1412cd.png", + "aggregators": ["LiFi", "Rubic", "Sonarwatch"], + "occurrences": 3 + }, + "0xa79178574dc455dbdc846166939b686b41164758": { + "address": "0xa79178574dc455dbdc846166939b686b41164758", + "symbol": "BJR", + "decimals": 18, + "name": "BiJiRi", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0xa79178574dc455dbdc846166939b686b41164758.png", + "aggregators": ["LiFi", "Rubic", "Sonarwatch"], + "occurrences": 3 + }, + "0x49fc111e5ddd5580f48d6fdc4314540cb3a5cc4b": { + "address": "0x49fc111e5ddd5580f48d6fdc4314540cb3a5cc4b", + "symbol": "1337", + "decimals": 4, + "name": "1337 (PoS)", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x49fc111e5ddd5580f48d6fdc4314540cb3a5cc4b.png", + "aggregators": ["LiFi", "Socket", "Rubic"], + "occurrences": 3 + }, + "0x418839451873b0e69e628f95dc39a877a9715196": { + "address": "0x418839451873b0e69e628f95dc39a877a9715196", + "symbol": "NFTX", + "decimals": 18, + "name": "NFTX (PoS)", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x418839451873b0e69e628f95dc39a877a9715196.png", + "aggregators": ["LiFi", "Socket", "Rubic"], + "occurrences": 3 + }, + "0xedcfb6984a3c70501baa8b7f5421ae795ecc1496": { + "address": "0xedcfb6984a3c70501baa8b7f5421ae795ecc1496", + "symbol": "META", + "decimals": 8, + "name": "ABCMETA Token", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0xedcfb6984a3c70501baa8b7f5421ae795ecc1496.png", + "aggregators": ["Socket", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x9627a3d6872be48410fcece9b1ddd344bf08c53e": { + "address": "0x9627a3d6872be48410fcece9b1ddd344bf08c53e", + "symbol": "ACE", + "decimals": 2, + "name": "MetaTrace Utility Token", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x9627a3d6872be48410fcece9b1ddd344bf08c53e.png", + "aggregators": ["Socket", "Rubic", "Rango"], + "occurrences": 3 + }, + "0xa04c86c411320444d4a99d44082e057772e8cf96": { + "address": "0xa04c86c411320444d4a99d44082e057772e8cf96", + "symbol": "WUSD", + "decimals": 6, + "name": "Worldwide USD", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0xa04c86c411320444d4a99d44082e057772e8cf96.png", + "aggregators": ["Socket", "Rubic", "Rango"], + "occurrences": 3 + }, + "0xd07a7fac2857901e4bec0d89bbdae764723aab86": { + "address": "0xd07a7fac2857901e4bec0d89bbdae764723aab86", + "symbol": "USDK", + "decimals": 18, + "name": "USDK (PoS)", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0xd07a7fac2857901e4bec0d89bbdae764723aab86.png", + "aggregators": ["Socket", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x032f85b8fbf8540a92b986d953e4c3a61c76d39e": { + "address": "0x032f85b8fbf8540a92b986d953e4c3a61c76d39e", + "symbol": "TCP", + "decimals": 18, + "name": "TCP", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x032f85b8fbf8540a92b986d953e4c3a61c76d39e.png", + "aggregators": ["Socket", "Rubic", "Rango"], + "occurrences": 3 + }, + "0xa4ce4a467e51aefec683a649c3f14427f104667f": { + "address": "0xa4ce4a467e51aefec683a649c3f14427f104667f", + "symbol": "ONSTON", + "decimals": 18, + "name": "ONSTON", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0xa4ce4a467e51aefec683a649c3f14427f104667f.png", + "aggregators": ["Socket", "Rubic", "Rango"], + "occurrences": 3 + }, + "0xe6fc6c7cb6d2c31b359a49a33ef08ab87f4de7ce": { + "address": "0xe6fc6c7cb6d2c31b359a49a33ef08ab87f4de7ce", + "symbol": "IGG", + "decimals": 6, + "name": "IGG", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0xe6fc6c7cb6d2c31b359a49a33ef08ab87f4de7ce.png", + "aggregators": ["Socket", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x576cf361711cd940cd9c397bb98c4c896cbd38de": { + "address": "0x576cf361711cd940cd9c397bb98c4c896cbd38de", + "symbol": "USDC", + "decimals": 6, + "name": "USD Coin", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x576cf361711cd940cd9c397bb98c4c896cbd38de.png", + "aggregators": ["Socket", "Rubic", "Rango"], + "occurrences": 3 + }, + "0xa3c53b53fe43083aa31c6f32ffe90c4d91b44391": { + "address": "0xa3c53b53fe43083aa31c6f32ffe90c4d91b44391", + "symbol": "SPN", + "decimals": 18, + "name": "Sportzchain", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0xa3c53b53fe43083aa31c6f32ffe90c4d91b44391.png", + "aggregators": ["Socket", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x7ec26842f195c852fa843bb9f6d8b583a274a157": { + "address": "0x7ec26842f195c852fa843bb9f6d8b583a274a157", + "symbol": "ENJ", + "decimals": 18, + "name": "Enjin Coin (PoS)", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x7ec26842f195c852fa843bb9f6d8b583a274a157.png", + "aggregators": ["Socket", "Rubic", "Rango"], + "occurrences": 3 + }, + "0xa8d394fe7380b8ce6145d5f85e6ac22d4e91acde": { + "address": "0xa8d394fe7380b8ce6145d5f85e6ac22d4e91acde", + "symbol": "BUSD", + "decimals": 18, + "name": "BUSD", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0xa8d394fe7380b8ce6145d5f85e6ac22d4e91acde.png", + "aggregators": ["Socket", "Rubic", "Rango"], + "occurrences": 3 + }, + "0xfeb090fcd433de479396e82db8b83a470dbad3c9": { + "address": "0xfeb090fcd433de479396e82db8b83a470dbad3c9", + "symbol": "MVERSE", + "decimals": 18, + "name": "MVERSE", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0xfeb090fcd433de479396e82db8b83a470dbad3c9.png", + "aggregators": ["Socket", "Rubic", "Rango"], + "occurrences": 3 + }, + "0xd3c325848d7c6e29b574cb0789998b2ff901f17e": { + "address": "0xd3c325848d7c6e29b574cb0789998b2ff901f17e", + "symbol": "1ART", + "decimals": 18, + "name": "1ART", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0xd3c325848d7c6e29b574cb0789998b2ff901f17e.png", + "aggregators": ["Socket", "Rubic", "Rango"], + "occurrences": 3 + }, + "0xcc081220542a60a8ea7963c4f53d522b503272c1": { + "address": "0xcc081220542a60a8ea7963c4f53d522b503272c1", + "symbol": "NFTY", + "decimals": 18, + "name": "NFTY Token", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0xcc081220542a60a8ea7963c4f53d522b503272c1.png", + "aggregators": ["Socket", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x9c49ba0212bb5db371e66b59d1565b7c06e4894e": { + "address": "0x9c49ba0212bb5db371e66b59d1565b7c06e4894e", + "symbol": "CC10", + "decimals": 18, + "name": "CC10", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x9c49ba0212bb5db371e66b59d1565b7c06e4894e.png", + "aggregators": ["Socket", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x3d5efbcf89ba18ac4cf7f7e5db838e554d15fead": { + "address": "0x3d5efbcf89ba18ac4cf7f7e5db838e554d15fead", + "symbol": "DRIFT", + "decimals": 18, + "name": "Drift Token", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x3d5efbcf89ba18ac4cf7f7e5db838e554d15fead.png", + "aggregators": ["Socket", "Rubic", "Rango"], + "occurrences": 3 + }, + "0xb46e0ae620efd98516f49bb00263317096c114b2": { + "address": "0xb46e0ae620efd98516f49bb00263317096c114b2", + "symbol": "THETA", + "decimals": 18, + "name": "Theta Token (PoS)", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0xb46e0ae620efd98516f49bb00263317096c114b2.png", + "aggregators": ["Socket", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x62414d03084eeb269e18c970a21f45d2967f0170": { + "address": "0x62414d03084eeb269e18c970a21f45d2967f0170", + "symbol": "OMG", + "decimals": 18, + "name": "OMGToken (PoS)", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x62414d03084eeb269e18c970a21f45d2967f0170.png", + "aggregators": ["Socket", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x6abb753c1893194de4a83c6e8b4eadfc105fd5f5": { + "address": "0x6abb753c1893194de4a83c6e8b4eadfc105fd5f5", + "symbol": "SXP", + "decimals": 18, + "name": "Swipe (PoS)", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x6abb753c1893194de4a83c6e8b4eadfc105fd5f5.png", + "aggregators": ["Socket", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x67ce67ec4fcd4aca0fcb738dd080b2a21ff69d75": { + "address": "0x67ce67ec4fcd4aca0fcb738dd080b2a21ff69d75", + "symbol": "CHSB", + "decimals": 8, + "name": "SwissBorg (PoS)", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x67ce67ec4fcd4aca0fcb738dd080b2a21ff69d75.png", + "aggregators": ["Socket", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x8c3441e7b9aa8a30a542dde048dd067de2802e9b": { + "address": "0x8c3441e7b9aa8a30a542dde048dd067de2802e9b", + "symbol": "WINK", + "decimals": 18, + "name": "WINK", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x8c3441e7b9aa8a30a542dde048dd067de2802e9b.png", + "aggregators": ["Rubic", "Rango", "Sonarwatch"], + "occurrences": 3 + }, + "0x25578065bdd4ebd68e7ffeedfc4e6614f3f0057f": { + "address": "0x25578065bdd4ebd68e7ffeedfc4e6614f3f0057f", + "symbol": "GMTO", + "decimals": 18, + "name": "Game Meteor Coin", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x25578065bdd4ebd68e7ffeedfc4e6614f3f0057f.png", + "aggregators": ["Rubic", "Rango", "Sonarwatch"], + "occurrences": 3 + }, + "0xdc3acb92712d1d44ffe15d3a8d66d9d18c81e038": { + "address": "0xdc3acb92712d1d44ffe15d3a8d66d9d18c81e038", + "symbol": "POLAR", + "decimals": 18, + "name": "Polaris Token", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0xdc3acb92712d1d44ffe15d3a8d66d9d18c81e038.png", + "aggregators": ["Rubic", "Rango", "SushiSwap"], + "occurrences": 3 + }, + "0x5a3064cbdccf428ae907796cf6ad5a664cd7f3d8": { + "address": "0x5a3064cbdccf428ae907796cf6ad5a664cd7f3d8", + "symbol": "PYQ", + "decimals": 18, + "name": "PYQ", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x5a3064cbdccf428ae907796cf6ad5a664cd7f3d8.png", + "aggregators": ["Rubic", "Rango", "SushiSwap"], + "occurrences": 3 + }, + "0x5d0915f929fc090fd9c843a53e7e30335dd199bc": { + "address": "0x5d0915f929fc090fd9c843a53e7e30335dd199bc", + "symbol": "PTREAT", + "decimals": 18, + "name": "pTREAT", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x5d0915f929fc090fd9c843a53e7e30335dd199bc.png", + "aggregators": ["Rubic", "Rango", "SushiSwap"], + "occurrences": 3 + }, + "0xad01dffe604cdc172d8237566ee3a3ab6524d4c6": { + "address": "0xad01dffe604cdc172d8237566ee3a3ab6524d4c6", + "symbol": "C3", + "decimals": 18, + "name": "C3 Token", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0xad01dffe604cdc172d8237566ee3a3ab6524d4c6.png", + "aggregators": ["Rubic", "Rango", "SushiSwap"], + "occurrences": 3 + }, + "0xd5d84e75f48e75f01fb2eb6dfd8ea148ee3d0feb": { + "address": "0xd5d84e75f48e75f01fb2eb6dfd8ea148ee3d0feb", + "symbol": "PGOV", + "decimals": 18, + "name": "bZX PGOV Token", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0xd5d84e75f48e75f01fb2eb6dfd8ea148ee3d0feb.png", + "aggregators": ["Rubic", "Rango", "SushiSwap"], + "occurrences": 3 + }, + "0x1b43b97094aa3c6cc678edb9e28ac67daaa7cc64": { + "address": "0x1b43b97094aa3c6cc678edb9e28ac67daaa7cc64", + "symbol": "LICP", + "decimals": 18, + "name": "Liquid ICP", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x1b43b97094aa3c6cc678edb9e28ac67daaa7cc64.png", + "aggregators": ["Rubic", "Rango", "SushiSwap"], + "occurrences": 3 + }, + "0x7e94de269df2eb9f4d0443d46500191f19c9a8da": { + "address": "0x7e94de269df2eb9f4d0443d46500191f19c9a8da", + "symbol": "UNITY", + "decimals": 18, + "name": "Unity", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x7e94de269df2eb9f4d0443d46500191f19c9a8da.png", + "aggregators": ["Rubic", "Rango", "SushiSwap"], + "occurrences": 3 + }, + "0x29f1e986fca02b7e54138c04c4f503dddd250558": { + "address": "0x29f1e986fca02b7e54138c04c4f503dddd250558", + "symbol": "VSQ", + "decimals": 9, + "name": "VSQ", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x29f1e986fca02b7e54138c04c4f503dddd250558.png", + "aggregators": ["Rubic", "Rango", "SushiSwap"], + "occurrences": 3 + }, + "0x23c70dd93d4ecac7fb93631488c5412e02f4a57c": { + "address": "0x23c70dd93d4ecac7fb93631488c5412e02f4a57c", + "symbol": "REIN", + "decimals": 18, + "name": "Reyna Ventures", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x23c70dd93d4ecac7fb93631488c5412e02f4a57c.png", + "aggregators": ["Rubic", "Rango", "SushiSwap"], + "occurrences": 3 + }, + "0xc68e83a305b0fad69e264a1769a0a070f190d2d6": { + "address": "0xc68e83a305b0fad69e264a1769a0a070f190d2d6", + "symbol": "ROLL", + "decimals": 18, + "name": "Polyroll Token", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0xc68e83a305b0fad69e264a1769a0a070f190d2d6.png", + "aggregators": ["Rubic", "Rango", "SushiSwap"], + "occurrences": 3 + }, + "0xb74f2220ad34a03730400c9c97bd10863bbc4130": { + "address": "0xb74f2220ad34a03730400c9c97bd10863bbc4130", + "symbol": "CHECK", + "decimals": 6, + "name": "Check Token", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0xb74f2220ad34a03730400c9c97bd10863bbc4130.png", + "aggregators": ["Rubic", "Rango", "SushiSwap"], + "occurrences": 3 + }, + "0x2e2dde47952b9c7defde7424d00dd2341ad927ca": { + "address": "0x2e2dde47952b9c7defde7424d00dd2341ad927ca", + "symbol": "CHUM", + "decimals": 18, + "name": "ChumHum", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x2e2dde47952b9c7defde7424d00dd2341ad927ca.png", + "aggregators": ["Rubic", "Rango", "SushiSwap"], + "occurrences": 3 + }, + "0xab9ad9089f23e6779a8727900709427719f753e1": { + "address": "0xab9ad9089f23e6779a8727900709427719f753e1", + "symbol": "NGNC", + "decimals": 6, + "name": "NGN Coin", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0xab9ad9089f23e6779a8727900709427719f753e1.png", + "aggregators": ["Rubic", "Rango", "SushiSwap"], + "occurrences": 3 + }, + "0x57f12fe6a4e5fe819eec699fadf9db2d06606bb4": { + "address": "0x57f12fe6a4e5fe819eec699fadf9db2d06606bb4", + "symbol": "NPM", + "decimals": 18, + "name": "Neptune Mutual", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x57f12fe6a4e5fe819eec699fadf9db2d06606bb4.png", + "aggregators": ["Rubic", "Rango", "SushiSwap"], + "occurrences": 3 + }, + "0x2df54842cd85c60f21b4871e09bcc6047b2dcc4d": { + "address": "0x2df54842cd85c60f21b4871e09bcc6047b2dcc4d", + "symbol": "IMRTL", + "decimals": 18, + "name": "Immortl", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x2df54842cd85c60f21b4871e09bcc6047b2dcc4d.png", + "aggregators": ["Rubic", "Rango", "SushiSwap"], + "occurrences": 3 + }, + "0x0d962a1a2a27b402e4d84772dea65ac8592eb6bf": { + "address": "0x0d962a1a2a27b402e4d84772dea65ac8592eb6bf", + "symbol": "GMS", + "decimals": 18, + "name": "Gemstones", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x0d962a1a2a27b402e4d84772dea65ac8592eb6bf.png", + "aggregators": ["Rubic", "Rango", "SushiSwap"], + "occurrences": 3 + }, + "0x0c705862f56cd8ec70337f5f5184fea4158a3c00": { + "address": "0x0c705862f56cd8ec70337f5f5184fea4158a3c00", + "symbol": "AWT", + "decimals": 18, + "name": "Abyss World", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x0c705862f56cd8ec70337f5f5184fea4158a3c00.png", + "aggregators": ["Rubic", "Rango", "Sonarwatch"], + "occurrences": 3 + }, + "0x40f97ec376ac1c503e755433bf57f21e3a49f440": { + "address": "0x40f97ec376ac1c503e755433bf57f21e3a49f440", + "symbol": "CVTX", + "decimals": 18, + "name": "CarrieVerse", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x40f97ec376ac1c503e755433bf57f21e3a49f440.png", + "aggregators": ["Rubic", "Rango", "Sonarwatch"], + "occurrences": 3 + }, + "0xa0e4c84693266a9d3bbef2f394b33712c76599ab": { + "address": "0xa0e4c84693266a9d3bbef2f394b33712c76599ab", + "symbol": "EURO3", + "decimals": 18, + "name": "EURO3", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0xa0e4c84693266a9d3bbef2f394b33712c76599ab.png", + "aggregators": ["Rubic", "Rango", "SushiSwap"], + "occurrences": 3 + }, + "0xe9bc9ad74cca887aff32ba09a121b1256fc9f052": { + "address": "0xe9bc9ad74cca887aff32ba09a121b1256fc9f052", + "symbol": "PIG", + "decimals": 18, + "name": "Pigcoin", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0xe9bc9ad74cca887aff32ba09a121b1256fc9f052.png", + "aggregators": ["Rubic", "Rango", "Sonarwatch"], + "occurrences": 3 + }, + "0x2f3e306d9f02ee8e8850f9040404918d0b345207": { + "address": "0x2f3e306d9f02ee8e8850f9040404918d0b345207", + "symbol": "DOGA", + "decimals": 5, + "name": "Dogami", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x2f3e306d9f02ee8e8850f9040404918d0b345207.png", + "aggregators": ["Rubic", "Rango", "Sonarwatch"], + "occurrences": 3 + }, + "0x228b5c21ac00155cf62c57bcc704c0da8187950b": { + "address": "0x228b5c21ac00155cf62c57bcc704c0da8187950b", + "symbol": "NXD", + "decimals": 18, + "name": "Nexus Dubai", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x228b5c21ac00155cf62c57bcc704c0da8187950b.png", + "aggregators": ["Rubic", "Rango", "Sonarwatch"], + "occurrences": 3 + }, + "0x60eec374a1ba3907e9bdd8a74ce368d041d89c79": { + "address": "0x60eec374a1ba3907e9bdd8a74ce368d041d89c79", + "symbol": "PBIRB", + "decimals": 18, + "name": "Parrotly", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x60eec374a1ba3907e9bdd8a74ce368d041d89c79.png", + "aggregators": ["Rubic", "Rango", "Sonarwatch"], + "occurrences": 3 + }, + "0xfd1eeb2f3399872735f3df735816c4fc607e12c4": { + "address": "0xfd1eeb2f3399872735f3df735816c4fc607e12c4", + "symbol": "PME", + "decimals": 18, + "name": "PCO Metaverse", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0xfd1eeb2f3399872735f3df735816c4fc607e12c4.png", + "aggregators": ["Rubic", "Rango", "Sonarwatch"], + "occurrences": 3 + }, + "0x762b56f3e36a4be65763056d6464668b4c7b2f49": { + "address": "0x762b56f3e36a4be65763056d6464668b4c7b2f49", + "symbol": "PUGGY", + "decimals": 18, + "name": "PUGGY Coin", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x762b56f3e36a4be65763056d6464668b4c7b2f49.png", + "aggregators": ["Rubic", "Rango", "Sonarwatch"], + "occurrences": 3 + }, + "0xc79fc2885e207e1c4cc69cf94402dd1a5642452e": { + "address": "0xc79fc2885e207e1c4cc69cf94402dd1a5642452e", + "symbol": "SEAT", + "decimals": 18, + "name": "Seamans Token", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0xc79fc2885e207e1c4cc69cf94402dd1a5642452e.png", + "aggregators": ["Rubic", "Rango", "Sonarwatch"], + "occurrences": 3 + }, + "0xfcb54da3f4193435184f3f647467e12b50754575": { + "address": "0xfcb54da3f4193435184f3f647467e12b50754575", + "symbol": "SML", + "decimals": 8, + "name": "Smell", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0xfcb54da3f4193435184f3f647467e12b50754575.png", + "aggregators": ["Rubic", "Rango", "Sonarwatch"], + "occurrences": 3 + }, + "0xefee2de82343be622dcb4e545f75a3b9f50c272d": { + "address": "0xefee2de82343be622dcb4e545f75a3b9f50c272d", + "symbol": "TRY", + "decimals": 18, + "name": "TryHards", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0xefee2de82343be622dcb4e545f75a3b9f50c272d.png", + "aggregators": ["Rubic", "Rango", "Sonarwatch"], + "occurrences": 3 + }, + "0x41084fdc569099d9e527ccf126e12d9c7c688ec3": { + "address": "0x41084fdc569099d9e527ccf126e12d9c7c688ec3", + "symbol": "IQT", + "decimals": 18, + "name": "IQ Protocol", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x41084fdc569099d9e527ccf126e12d9c7c688ec3.png", + "aggregators": ["Rubic", "Rango", "Sonarwatch"], + "occurrences": 3 + }, + "0x03c2f6808502ffd4ab2787ad1a98ec13dbd5718b": { + "address": "0x03c2f6808502ffd4ab2787ad1a98ec13dbd5718b", + "symbol": "CTI", + "decimals": 18, + "name": "ClinTex CTi", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x03c2f6808502ffd4ab2787ad1a98ec13dbd5718b.png", + "aggregators": ["Rubic", "Rango", "Sonarwatch"], + "occurrences": 3 + }, + "0x99083d1b9c6744c71d0cf70b8965faca37684527": { + "address": "0x99083d1b9c6744c71d0cf70b8965faca37684527", + "symbol": "FRF", + "decimals": 18, + "name": "FRANCE REV FINANCE", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x99083d1b9c6744c71d0cf70b8965faca37684527.png", + "aggregators": ["Rubic", "Rango", "Sonarwatch"], + "occurrences": 3 + }, + "0xd9a9b4d466747e1ebcb7aeb42784452f40452367": { + "address": "0xd9a9b4d466747e1ebcb7aeb42784452f40452367", + "symbol": "ACTIVE", + "decimals": 18, + "name": "Active Token", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0xd9a9b4d466747e1ebcb7aeb42784452f40452367.png", + "aggregators": ["Rubic", "Rango", "Sonarwatch"], + "occurrences": 3 + }, + "0xacd4e2d936be9b16c01848a3742a34b3d5a5bdfa": { + "address": "0xacd4e2d936be9b16c01848a3742a34b3d5a5bdfa", + "symbol": "$MECHA", + "decimals": 18, + "name": "Mechanium", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0xacd4e2d936be9b16c01848a3742a34b3d5a5bdfa.png", + "aggregators": ["Rubic", "Rango", "Sonarwatch"], + "occurrences": 3 + }, + "0x492fa53b88614923937b7197c87e0f7f8eeb7b20": { + "address": "0x492fa53b88614923937b7197c87e0f7f8eeb7b20", + "symbol": "NFTE", + "decimals": 18, + "name": "NFTEarthOFT", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x492fa53b88614923937b7197c87e0f7f8eeb7b20.png", + "aggregators": ["Rubic", "Rango", "SushiSwap"], + "occurrences": 3 + }, + "0x2a07461a493b994c2a32f549fd185524f306ab38": { + "address": "0x2a07461a493b994c2a32f549fd185524f306ab38", + "symbol": "AES", + "decimals": 18, + "name": "Aree Shards", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x2a07461a493b994c2a32f549fd185524f306ab38.png", + "aggregators": ["Rubic", "Rango", "Sonarwatch"], + "occurrences": 3 + }, + "0x187ae45f2d361cbce37c6a8622119c91148f261b": { + "address": "0x187ae45f2d361cbce37c6a8622119c91148f261b", + "symbol": "POLX", + "decimals": 18, + "name": "Polylastic", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x187ae45f2d361cbce37c6a8622119c91148f261b.png", + "aggregators": ["Rubic", "Rango", "Sonarwatch"], + "occurrences": 3 + }, + "0xdb6dae4b87be1289715c08385a6fc1a3d970b09d": { + "address": "0xdb6dae4b87be1289715c08385a6fc1a3d970b09d", + "symbol": "MOOVE", + "decimals": 18, + "name": "Moove Protocol", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0xdb6dae4b87be1289715c08385a6fc1a3d970b09d.png", + "aggregators": ["Rubic", "Rango", "Sonarwatch"], + "occurrences": 3 + }, + "0xe5cf781d9e6e92b051ffb8037a5d81981863ea82": { + "address": "0xe5cf781d9e6e92b051ffb8037a5d81981863ea82", + "symbol": "TYT", + "decimals": 18, + "name": "Bounty Temple", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0xe5cf781d9e6e92b051ffb8037a5d81981863ea82.png", + "aggregators": ["Rubic", "Rango", "Sonarwatch"], + "occurrences": 3 + }, + "0xfb40b1efe90d4b786d2d9d9dc799b18bde92923b": { + "address": "0xfb40b1efe90d4b786d2d9d9dc799b18bde92923b", + "symbol": "LSHARE", + "decimals": 18, + "name": "LIF3 LSHARE (OLD)", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0xfb40b1efe90d4b786d2d9d9dc799b18bde92923b.png", + "aggregators": ["Rubic", "Rango", "Sonarwatch"], + "occurrences": 3 + }, + "0x9c891326fd8b1a713974f73bb604677e1e63396d": { + "address": "0x9c891326fd8b1a713974f73bb604677e1e63396d", + "symbol": "ISLAMI", + "decimals": 7, + "name": "ISLAMICOIN", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x9c891326fd8b1a713974f73bb604677e1e63396d.png", + "aggregators": ["Rubic", "Rango", "Sonarwatch"], + "occurrences": 3 + }, + "0x0e98c977b943f06075b2d795794238fbfb9b9a34": { + "address": "0x0e98c977b943f06075b2d795794238fbfb9b9a34", + "symbol": "TOMB", + "decimals": 18, + "name": "Tomb", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x0e98c977b943f06075b2d795794238fbfb9b9a34.png", + "aggregators": ["Rubic", "Rango", "Sonarwatch"], + "occurrences": 3 + }, + "0x03b92ebf0615d44d8c782c209e4405b74cb77d1d": { + "address": "0x03b92ebf0615d44d8c782c209e4405b74cb77d1d", + "symbol": "MUC", + "decimals": 18, + "name": "Multi Universe Central", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x03b92ebf0615d44d8c782c209e4405b74cb77d1d.png", + "aggregators": ["Rubic", "Rango", "Sonarwatch"], + "occurrences": 3 + }, + "0x0b048d6e01a6b9002c291060bf2179938fd8264c": { + "address": "0x0b048d6e01a6b9002c291060bf2179938fd8264c", + "symbol": "ALPHA", + "decimals": 18, + "name": "PolyAlpha Finance", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x0b048d6e01a6b9002c291060bf2179938fd8264c.png", + "aggregators": ["Rubic", "Rango", "SushiSwap"], + "occurrences": 3 + }, + "0x8328e6fcec9477c28298c9f02d740dd87a1683e5": { + "address": "0x8328e6fcec9477c28298c9f02d740dd87a1683e5", + "symbol": "KPN", + "decimals": 18, + "name": "KonnektVPN", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x8328e6fcec9477c28298c9f02d740dd87a1683e5.png", + "aggregators": ["Rubic", "Rango", "Sonarwatch"], + "occurrences": 3 + }, + "0xca730042595a1809793fbe2e9883c184c7eb27db": { + "address": "0xca730042595a1809793fbe2e9883c184c7eb27db", + "symbol": "GENO", + "decimals": 18, + "name": "GenomeFi", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0xca730042595a1809793fbe2e9883c184c7eb27db.png", + "aggregators": ["Rubic", "Rango", "Sonarwatch"], + "occurrences": 3 + }, + "0x3efcd659b7a45d14dda8a102836ce4b765c42324": { + "address": "0x3efcd659b7a45d14dda8a102836ce4b765c42324", + "symbol": "$GIB", + "decimals": 18, + "name": "GIB", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x3efcd659b7a45d14dda8a102836ce4b765c42324.png", + "aggregators": ["Rubic", "Rango", "Sonarwatch"], + "occurrences": 3 + }, + "0xf50441d584d435e5f917c8201f72ca2b1b7f1d04": { + "address": "0xf50441d584d435e5f917c8201f72ca2b1b7f1d04", + "symbol": "LYK", + "decimals": 8, + "name": "LayerK", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0xf50441d584d435e5f917c8201f72ca2b1b7f1d04.png", + "aggregators": ["Rubic", "Rango", "Sonarwatch"], + "occurrences": 3 + }, + "0xd0ac5be680bfbc0f1958413f4201f91934f61bea": { + "address": "0xd0ac5be680bfbc0f1958413f4201f91934f61bea", + "symbol": "MILO", + "decimals": 18, + "name": "MILO", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0xd0ac5be680bfbc0f1958413f4201f91934f61bea.png", + "aggregators": ["Rubic", "Rango", "Sonarwatch"], + "occurrences": 3 + }, + "0xdec933e2392ad908263e70a386fbf34e703ffe8f": { + "address": "0xdec933e2392ad908263e70a386fbf34e703ffe8f", + "symbol": "WBCOIN", + "decimals": 18, + "name": "Wrapped bCOIN", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0xdec933e2392ad908263e70a386fbf34e703ffe8f.png", + "aggregators": [ + "CoinGecko", + "LiFi", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 6 + }, + "0xae4efbc7736f963982aacb17efa37fcbab924cb3": { + "address": "0xae4efbc7736f963982aacb17efa37fcbab924cb3", + "symbol": "SOLVBTC", + "decimals": 18, + "name": "Solv Protocol BTC", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0xae4efbc7736f963982aacb17efa37fcbab924cb3.png", + "aggregators": [ + "CoinGecko", + "LiFi", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0xc99f5c922dae05b6e2ff83463ce705ef7c91f077": { + "address": "0xc99f5c922dae05b6e2ff83463ce705ef7c91f077", + "symbol": "XSOLVBTC", + "decimals": 18, + "name": "Solv Protocol Staked BTC", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0xc99f5c922dae05b6e2ff83463ce705ef7c91f077.png", + "aggregators": [ + "CoinGecko", + "LiFi", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x58c7b2828e7f2b2caa0cc7feef242fa3196d03df": { + "address": "0x58c7b2828e7f2b2caa0cc7feef242fa3196d03df", + "symbol": "FXA3A", + "decimals": 18, + "name": "3A Utility Token (FXERC20)", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x58c7b2828e7f2b2caa0cc7feef242fa3196d03df.png", + "aggregators": [ + "CoinGecko", + "Rubic", + "Rango", + "Sonarwatch", + "SushiSwap" + ], + "occurrences": 5 + }, + "0x625e7708f30ca75bfd92586e17077590c60eb4cd": { + "address": "0x625e7708f30ca75bfd92586e17077590c60eb4cd", + "symbol": "AUSDC", + "decimals": 6, + "name": "Aave v3 USDC", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x625e7708f30ca75bfd92586e17077590c60eb4cd.png", + "aggregators": [ + "CoinGecko", + "LiFi", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x013f9c3fac3e2759d7e90aca4f9540f75194a0d7": { + "address": "0x013f9c3fac3e2759d7e90aca4f9540f75194a0d7", + "symbol": "USDN", + "decimals": 18, + "name": "USDN", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x013f9c3fac3e2759d7e90aca4f9540f75194a0d7.png", + "aggregators": ["CoinGecko", "LiFi", "Socket", "Rubic", "Rango"], + "occurrences": 5 + }, + "0x06ddb3a8bc0abc14f85e974cf1a93a6f8d4909d9": { + "address": "0x06ddb3a8bc0abc14f85e974cf1a93a6f8d4909d9", + "symbol": "8PAY", + "decimals": 18, + "name": "8Pay", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x06ddb3a8bc0abc14f85e974cf1a93a6f8d4909d9.png", + "aggregators": [ + "CoinGecko", + "LiFi", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0xe0aea583266584dafbb3f9c3211d5588c73fea8d": { + "address": "0xe0aea583266584dafbb3f9c3211d5588c73fea8d", + "symbol": "EURE", + "decimals": 18, + "name": "Monerium EUR emoney", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0xe0aea583266584dafbb3f9c3211d5588c73fea8d.png", + "aggregators": [ + "CoinGecko", + "1inch", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x9880e3dda13c8e7d4804691a45160102d31f6060": { + "address": "0x9880e3dda13c8e7d4804691a45160102d31f6060", + "symbol": "OXT", + "decimals": 18, + "name": "Orchid", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x9880e3dda13c8e7d4804691a45160102d31f6060.png", + "aggregators": ["UniswapLabs", "LiFi", "Socket", "Sonarwatch"], + "occurrences": 4 + }, + "0xd72357daca2cf11a5f155b9ff7880e595a3f5792": { + "address": "0xd72357daca2cf11a5f155b9ff7880e595a3f5792", + "symbol": "STORJ", + "decimals": 8, + "name": "Storj Token", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0xd72357daca2cf11a5f155b9ff7880e595a3f5792.png", + "aggregators": ["UniswapLabs", "LiFi", "Socket", "Sonarwatch"], + "occurrences": 4 + }, + "0xf81b4bec6ca8f9fe7be01ca734f55b2b6e03a7a0": { + "address": "0xf81b4bec6ca8f9fe7be01ca734f55b2b6e03a7a0", + "symbol": "SUSD", + "decimals": 18, + "name": "Synth sUSD", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0xf81b4bec6ca8f9fe7be01ca734f55b2b6e03a7a0.png", + "aggregators": ["UniswapLabs", "LiFi", "Socket", "Sonarwatch"], + "occurrences": 4 + }, + "0x1fd6cf265fd3428f655378a803658942095b4c4e": { + "address": "0x1fd6cf265fd3428f655378a803658942095b4c4e", + "symbol": "YELD", + "decimals": 18, + "name": "PolyYeld", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x1fd6cf265fd3428f655378a803658942095b4c4e.png", + "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0xc011a7e12a19f7b1f670d46f03b03f3342e82dfb": { + "address": "0xc011a7e12a19f7b1f670d46f03b03f3342e82dfb", + "symbol": "PUSD", + "decimals": 6, + "name": "Polymarket USD", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0xc011a7e12a19f7b1f670d46f03b03f3342e82dfb.png", + "aggregators": ["Metamask", "LiFi", "Rubic", "Rango"], + "occurrences": 4 + }, + "0x2ab445c24c96db13383bb34678adae50c43b4baa": { + "address": "0x2ab445c24c96db13383bb34678adae50c43b4baa", + "symbol": "CLAY", + "decimals": 18, + "name": "Clay", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x2ab445c24c96db13383bb34678adae50c43b4baa.png", + "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0x11b37c9388420d79d48e8d531227f43c9bf1bbf1": { + "address": "0x11b37c9388420d79d48e8d531227f43c9bf1bbf1", + "symbol": "FIT", + "decimals": 18, + "name": "FIT", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x11b37c9388420d79d48e8d531227f43c9bf1bbf1.png", + "aggregators": ["CoinGecko", "Rubic", "Squid", "Rango"], + "occurrences": 4 + }, + "0x3bf668fe1ec79a84ca8481cead5dbb30d61cc685": { + "address": "0x3bf668fe1ec79a84ca8481cead5dbb30d61cc685", + "symbol": "TELEBTC", + "decimals": 8, + "name": "teleBTC", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x3bf668fe1ec79a84ca8481cead5dbb30d61cc685.png", + "aggregators": ["CoinGecko", "Rubic", "Squid", "Rango"], + "occurrences": 4 + }, + "0x46080f31351a6568f44575e3effde7f0c86867f9": { + "address": "0x46080f31351a6568f44575e3effde7f0c86867f9", + "symbol": "GILTS", + "decimals": 6, + "name": "GILTS", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x46080f31351a6568f44575e3effde7f0c86867f9.png", + "aggregators": ["CoinGecko", "LiFi", "Rubic", "Rango"], + "occurrences": 4 + }, + "0xc11158c5da9db1d553ed28f0c2ba1cbedd42cfcb": { + "address": "0xc11158c5da9db1d553ed28f0c2ba1cbedd42cfcb", + "symbol": "PAW", + "decimals": 18, + "name": "PAW", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0xc11158c5da9db1d553ed28f0c2ba1cbedd42cfcb.png", + "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0x80eede496655fb9047dd39d9f418d5483ed600df": { + "address": "0x80eede496655fb9047dd39d9f418d5483ed600df", + "symbol": "FRXUSD", + "decimals": 18, + "name": "FRXUSD", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x80eede496655fb9047dd39d9f418d5483ed600df.png", + "aggregators": ["CoinGecko", "LiFi", "Rubic", "Rango"], + "occurrences": 4 + }, + "0x1f82284c1658ad71c576f7230e6c2dee7901c1fa": { + "address": "0x1f82284c1658ad71c576f7230e6c2dee7901c1fa", + "symbol": "WBTSLA", + "decimals": 18, + "name": "Wrapped bTSLA", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x1f82284c1658ad71c576f7230e6c2dee7901c1fa.png", + "aggregators": ["CoinGecko", "LiFi", "Rubic", "Sonarwatch"], + "occurrences": 4 + }, + "0xfdcc3dd6671eab0709a4c0f3f53de9a333d80798": { + "address": "0xfdcc3dd6671eab0709a4c0f3f53de9a333d80798", + "symbol": "SBC", + "decimals": 18, + "name": "SBC", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0xfdcc3dd6671eab0709a4c0f3f53de9a333d80798.png", + "aggregators": ["CoinGecko", "Socket", "Rubic", "Rango"], + "occurrences": 4 + }, + "0x11a88f949c0592238959142653bb6847c6523d81": { + "address": "0x11a88f949c0592238959142653bb6847c6523d81", + "symbol": "WEN", + "decimals": 18, + "name": "WEN Token", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x11a88f949c0592238959142653bb6847c6523d81.png", + "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0xdfc3829b127761a3218bfcee7fc92e1232c9d116": { + "address": "0xdfc3829b127761a3218bfcee7fc92e1232c9d116", + "symbol": "PRCY", + "decimals": 8, + "name": "PRivaCY Coin", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0xdfc3829b127761a3218bfcee7fc92e1232c9d116.png", + "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0x9cd6746665d9557e1b9a775819625711d0693439": { + "address": "0x9cd6746665d9557e1b9a775819625711d0693439", + "symbol": "LUNC", + "decimals": 6, + "name": "Terra Classic (Wormhole)", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x9cd6746665d9557e1b9a775819625711d0693439.png", + "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0xb962150760f9a3bb00e3e9cf48297ee20ada4a33": { + "address": "0xb962150760f9a3bb00e3e9cf48297ee20ada4a33", + "symbol": "ZOOMER", + "decimals": 18, + "name": "Zoomer", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0xb962150760f9a3bb00e3e9cf48297ee20ada4a33.png", + "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0xdfffe0c33b4011c4218acd61e68a62a32eaf9a8b": { + "address": "0xdfffe0c33b4011c4218acd61e68a62a32eaf9a8b", + "symbol": "AXLREGEN", + "decimals": 6, + "name": "AXLREGEN", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0xdfffe0c33b4011c4218acd61e68a62a32eaf9a8b.png", + "aggregators": ["CoinGecko", "Rubic", "Squid", "Rango"], + "occurrences": 4 + }, + "0x1a4f71b0ff3c22540887bcf83b50054a213c673d": { + "address": "0x1a4f71b0ff3c22540887bcf83b50054a213c673d", + "symbol": "WBMSTR", + "decimals": 18, + "name": "Wrapped bMSTR", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x1a4f71b0ff3c22540887bcf83b50054a213c673d.png", + "aggregators": ["CoinGecko", "LiFi", "Rubic", "Sonarwatch"], + "occurrences": 4 + }, + "0x47c52f93a359db9f4509005cf982dfc440790561": { + "address": "0x47c52f93a359db9f4509005cf982dfc440790561", + "symbol": "MPWR", + "decimals": 18, + "name": "Empower", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x47c52f93a359db9f4509005cf982dfc440790561.png", + "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0xdef1fac7bf08f173d286bbbdcbeeade695129840": { + "address": "0xdef1fac7bf08f173d286bbbdcbeeade695129840", + "symbol": "CERBY", + "decimals": 18, + "name": "Cerby Token", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0xdef1fac7bf08f173d286bbbdcbeeade695129840.png", + "aggregators": ["LiFi", "Rubic", "Rango", "SushiSwap"], + "occurrences": 4 + }, + "0x3a79241a92a4f06952107308057da1991792d372": { + "address": "0x3a79241a92a4f06952107308057da1991792d372", + "symbol": "ZENF", + "decimals": 18, + "name": "Zenland", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x3a79241a92a4f06952107308057da1991792d372.png", + "aggregators": ["LiFi", "Socket", "Rubic", "Rango"], + "occurrences": 4 + }, + "0xa9a8eed4c7b91de6d6d2a6b2d21300ec162b1375": { + "address": "0xa9a8eed4c7b91de6d6d2a6b2d21300ec162b1375", + "symbol": "SKX", + "decimals": 18, + "name": "SKX", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0xa9a8eed4c7b91de6d6d2a6b2d21300ec162b1375.png", + "aggregators": ["CoinGecko", "LiFi", "Rubic"], + "occurrences": 3 + }, + "0x784665471bb8b945b57a76a9200b109ee214e789": { + "address": "0x784665471bb8b945b57a76a9200b109ee214e789", + "symbol": "KC", + "decimals": 6, + "name": "Krasnalcoin", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x784665471bb8b945b57a76a9200b109ee214e789.png", + "aggregators": ["CoinGecko", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x3c12f8829041bf99deaa2965014e01b750f87905": { + "address": "0x3c12f8829041bf99deaa2965014e01b750f87905", + "symbol": "TTAJ", + "decimals": 18, + "name": "TTAJ", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x3c12f8829041bf99deaa2965014e01b750f87905.png", + "aggregators": ["CoinGecko", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x0f09e11501b01b3e9dc77d96db752d1a2ac84b20": { + "address": "0x0f09e11501b01b3e9dc77d96db752d1a2ac84b20", + "symbol": "NOGS", + "decimals": 16, + "name": "Noggles", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x0f09e11501b01b3e9dc77d96db752d1a2ac84b20.png", + "aggregators": ["CoinGecko", "Rubic", "Sonarwatch"], + "occurrences": 3 + }, + "0xe56cee16b76903b3c8eb4af3c06d1d2fab320f95": { + "address": "0xe56cee16b76903b3c8eb4af3c06d1d2fab320f95", + "symbol": "KTB", + "decimals": 6, + "name": "Etherfuse KTB", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0xe56cee16b76903b3c8eb4af3c06d1d2fab320f95.png", + "aggregators": ["CoinGecko", "LiFi", "Rubic"], + "occurrences": 3 + }, + "0x7e8101a1c322d394b3961498c7d40d2dfa94c392": { + "address": "0x7e8101a1c322d394b3961498c7d40d2dfa94c392", + "symbol": "WBNVDA", + "decimals": 18, + "name": "Wrapped Backed NVIDIA Corp", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x7e8101a1c322d394b3961498c7d40d2dfa94c392.png", + "aggregators": ["CoinGecko", "LiFi", "Rubic"], + "occurrences": 3 + }, + "0x337e7456b420bd3481e7fa61fa9850343d610d34": { + "address": "0x337e7456b420bd3481e7fa61fa9850343d610d34", + "symbol": "WMXN", + "decimals": 18, + "name": "Peso Mexicano", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x337e7456b420bd3481e7fa61fa9850343d610d34.png", + "aggregators": ["CoinGecko", "LiFi", "Rubic"], + "occurrences": 3 + }, + "0xc2ff25dd99e467d2589b2c26edd270f220f14e47": { + "address": "0xc2ff25dd99e467d2589b2c26edd270f220f14e47", + "symbol": "DEURO", + "decimals": 18, + "name": "DEURO", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0xc2ff25dd99e467d2589b2c26edd270f220f14e47.png", + "aggregators": ["CoinGecko", "Rubic", "Rango"], + "occurrences": 3 + }, + "0xd0076d7e57aac42ec3f9d6e7c604d04a5b7030fa": { + "address": "0xd0076d7e57aac42ec3f9d6e7c604d04a5b7030fa", + "symbol": "VNDC", + "decimals": 0, + "name": "VNDC", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0xd0076d7e57aac42ec3f9d6e7c604d04a5b7030fa.png", + "aggregators": ["CoinGecko", "Socket", "Rubic"], + "occurrences": 3 + }, + "0x970e2adc2fdf53aea6b5fa73ca6dc30eafedfe3d": { + "address": "0x970e2adc2fdf53aea6b5fa73ca6dc30eafedfe3d", + "symbol": "UKTBL", + "decimals": 5, + "name": "Spiko UK T-Bills Money Market Fund", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x970e2adc2fdf53aea6b5fa73ca6dc30eafedfe3d.png", + "aggregators": ["CoinGecko", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x0dc4f92879b7670e5f4e4e6e3c801d229129d90d": { + "address": "0x0dc4f92879b7670e5f4e4e6e3c801d229129d90d", + "symbol": "WARS", + "decimals": 18, + "name": "Peso Argentino", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x0dc4f92879b7670e5f4e4e6e3c801d229129d90d.png", + "aggregators": ["CoinGecko", "LiFi", "Rubic"], + "occurrences": 3 + }, + "0xf4c3fac9c98aa62474998e299495b699dfdb00eb": { + "address": "0xf4c3fac9c98aa62474998e299495b699dfdb00eb", + "symbol": "HANDL", + "decimals": 18, + "name": "HandlPay", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0xf4c3fac9c98aa62474998e299495b699dfdb00eb.png", + "aggregators": ["CoinGecko", "LiFi", "Rubic"], + "occurrences": 3 + }, + "0xea0941c6e067a4fb4399436ad3e2510eb36b419d": { + "address": "0xea0941c6e067a4fb4399436ad3e2510eb36b419d", + "symbol": "PROS", + "decimals": 18, + "name": "PROS", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0xea0941c6e067a4fb4399436ad3e2510eb36b419d.png", + "aggregators": ["CoinGecko", "Rubic", "Rango"], + "occurrences": 3 + }, + "0xd76f5faf6888e24d9f04bf92a0c8b921fe4390e0": { + "address": "0xd76f5faf6888e24d9f04bf92a0c8b921fe4390e0", + "symbol": "WBRL", + "decimals": 18, + "name": "Real Brasileño", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0xd76f5faf6888e24d9f04bf92a0c8b921fe4390e0.png", + "aggregators": ["CoinGecko", "LiFi", "Rubic"], + "occurrences": 3 + }, + "0x4f34c8b3b5fb6d98da888f0fea543d4d9c9f2ebe": { + "address": "0x4f34c8b3b5fb6d98da888f0fea543d4d9c9f2ebe", + "symbol": "WPEN", + "decimals": 18, + "name": "Sol Peruano", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x4f34c8b3b5fb6d98da888f0fea543d4d9c9f2ebe.png", + "aggregators": ["CoinGecko", "LiFi", "Rubic"], + "occurrences": 3 + }, + "0x8a1d45e102e886510e891d2ec656a708991e2d76": { + "address": "0x8a1d45e102e886510e891d2ec656a708991e2d76", + "symbol": "WCOP", + "decimals": 18, + "name": "Peso Colombiano", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x8a1d45e102e886510e891d2ec656a708991e2d76.png", + "aggregators": ["CoinGecko", "LiFi", "Rubic"], + "occurrences": 3 + }, + "0x61d450a098b6a7f69fc4b98ce68198fe59768651": { + "address": "0x61d450a098b6a7f69fc4b98ce68198fe59768651", + "symbol": "WCLP", + "decimals": 18, + "name": "Peso Chileno", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x61d450a098b6a7f69fc4b98ce68198fe59768651.png", + "aggregators": ["CoinGecko", "LiFi", "Rubic"], + "occurrences": 3 + }, + "0x176f5ab638cf4ff3b6239ba609c3fadaa46ef5b0": { + "address": "0x176f5ab638cf4ff3b6239ba609c3fadaa46ef5b0", + "symbol": "MFARM", + "decimals": 18, + "name": "Harvest Reward Token", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x176f5ab638cf4ff3b6239ba609c3fadaa46ef5b0.png", + "aggregators": ["LiFi", "Socket", "Rubic"], + "occurrences": 3 + }, + "0xe81432473290f4ffcfc5e823f8069db83e8a677b": { + "address": "0xe81432473290f4ffcfc5e823f8069db83e8a677b", + "symbol": "CRE", + "decimals": 18, + "name": "CrepeToken", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0xe81432473290f4ffcfc5e823f8069db83e8a677b.png", + "aggregators": ["LiFi", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x60f7dd499956ec8fcea8ed80e9d7eade4ccdc417": { + "address": "0x60f7dd499956ec8fcea8ed80e9d7eade4ccdc417", + "symbol": "USDW", + "decimals": 6, + "name": "USD DWIN", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x60f7dd499956ec8fcea8ed80e9d7eade4ccdc417.png", + "aggregators": ["LiFi", "Rubic", "Sonarwatch"], + "occurrences": 3 + }, + "0x160d64f91ad7c4d9ac4ba2c44a0e77373ca69ebe": { + "address": "0x160d64f91ad7c4d9ac4ba2c44a0e77373ca69ebe", + "symbol": "BONDLY", + "decimals": 18, + "name": "Bondly (PoS)", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x160d64f91ad7c4d9ac4ba2c44a0e77373ca69ebe.png", + "aggregators": ["LiFi", "Socket", "Rubic"], + "occurrences": 3 + }, + "0xb6c3c00d730acca326db40e418353f04f7444e2b": { + "address": "0xb6c3c00d730acca326db40e418353f04f7444e2b", + "symbol": "FCC", + "decimals": 18, + "name": "first choice coin", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0xb6c3c00d730acca326db40e418353f04f7444e2b.png", + "aggregators": ["LiFi", "Squid", "Rango"], + "occurrences": 3 + }, + "0xfe58138156dee3eaef5e6d113210dbf460b61df1": { + "address": "0xfe58138156dee3eaef5e6d113210dbf460b61df1", + "symbol": "RYZE", + "decimals": 18, + "name": "ARYZE", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0xfe58138156dee3eaef5e6d113210dbf460b61df1.png", + "aggregators": ["LiFi", "Rubic", "Rango"], + "occurrences": 3 + }, + "0xaf0d9d65fc54de245cda37af3d18cbec860a4d4b": { + "address": "0xaf0d9d65fc54de245cda37af3d18cbec860a4d4b", + "symbol": "WUSDR", + "decimals": 9, + "name": "Wrapped USDR", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0xaf0d9d65fc54de245cda37af3d18cbec860a4d4b.png", + "aggregators": ["LiFi", "Rubic", "Rango"], + "occurrences": 3 + }, + "0xb044e4d2b145a8e7832889fc4609f654446c22f9": { + "address": "0xb044e4d2b145a8e7832889fc4609f654446c22f9", + "symbol": "SITY", + "decimals": 18, + "name": "Versity", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0xb044e4d2b145a8e7832889fc4609f654446c22f9.png", + "aggregators": ["LiFi", "Rubic", "Rango"], + "occurrences": 3 + }, + "0xed755dba6ec1eb520076cec051a582a6d81a8253": { + "address": "0xed755dba6ec1eb520076cec051a582a6d81a8253", + "symbol": "CHAMP", + "decimals": 18, + "name": "CHAMP", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0xed755dba6ec1eb520076cec051a582a6d81a8253.png", + "aggregators": ["LiFi", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x433e39ce74aef8f409182541269e417ad9b56011": { + "address": "0x433e39ce74aef8f409182541269e417ad9b56011", + "symbol": "FKRPRO", + "decimals": 18, + "name": "FlickerPro", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x433e39ce74aef8f409182541269e417ad9b56011.png", + "aggregators": ["LiFi", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x70a13201df2364b634cb5aac8d735db3a654b30c": { + "address": "0x70a13201df2364b634cb5aac8d735db3a654b30c", + "symbol": "CHAIN", + "decimals": 18, + "name": "Arch Blockchains(PoS)", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x70a13201df2364b634cb5aac8d735db3a654b30c.png", + "aggregators": ["LiFi", "Socket", "Rubic"], + "occurrences": 3 + }, + "0x521cddc0cba84f14c69c1e99249f781aa73ee0bc": { + "address": "0x521cddc0cba84f14c69c1e99249f781aa73ee0bc", + "symbol": "HH", + "decimals": 18, + "name": "Holyheld (PoS)", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x521cddc0cba84f14c69c1e99249f781aa73ee0bc.png", + "aggregators": ["LiFi", "Rubic", "Rango"], + "occurrences": 3 + }, + "0xadeb98a12b2cdfbdb45cdd2274a369e79a7002e0": { + "address": "0xadeb98a12b2cdfbdb45cdd2274a369e79a7002e0", + "symbol": "QTK", + "decimals": 18, + "name": "QuantCheck", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0xadeb98a12b2cdfbdb45cdd2274a369e79a7002e0.png", + "aggregators": ["LiFi", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x2b3b16826719bf0b494c8ddebaa5e882093ee37e": { + "address": "0x2b3b16826719bf0b494c8ddebaa5e882093ee37e", + "symbol": "FIBO", + "decimals": 18, + "name": "FIBO", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x2b3b16826719bf0b494c8ddebaa5e882093ee37e.png", + "aggregators": ["LiFi", "Rubic", "Rango"], + "occurrences": 3 + }, + "0xcaaf554900e33ae5dbc66ae9f8adc3049b7d31db": { + "address": "0xcaaf554900e33ae5dbc66ae9f8adc3049b7d31db", + "symbol": "LIVERETRO", + "decimals": 18, + "name": "liveRetro", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0xcaaf554900e33ae5dbc66ae9f8adc3049b7d31db.png", + "aggregators": ["LiFi", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x31c91d8fb96bff40955dd2dbc909b36e8b104dde": { + "address": "0x31c91d8fb96bff40955dd2dbc909b36e8b104dde", + "symbol": "POI$ON", + "decimals": 18, + "name": "Poison Finance", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x31c91d8fb96bff40955dd2dbc909b36e8b104dde.png", + "aggregators": ["LiFi", "Rubic", "Sonarwatch"], + "occurrences": 3 + }, + "0xc3cffdaf8f3fdf07da6d5e3a89b8723d5e385ff8": { + "address": "0xc3cffdaf8f3fdf07da6d5e3a89b8723d5e385ff8", + "symbol": "RBC", + "decimals": 18, + "name": "RBC", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0xc3cffdaf8f3fdf07da6d5e3a89b8723d5e385ff8.png", + "aggregators": ["LiFi", "Socket", "Rango"], + "occurrences": 3 + }, + "0x3eb177a6693ec81d1e170136f8ad02fffbe172a7": { + "address": "0x3eb177a6693ec81d1e170136f8ad02fffbe172a7", + "symbol": "AUMI", + "decimals": 18, + "name": "AUMI", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x3eb177a6693ec81d1e170136f8ad02fffbe172a7.png", + "aggregators": ["LiFi", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x2c9d233914f46b88e9ae08326fa60e40ea3faa12": { + "address": "0x2c9d233914f46b88e9ae08326fa60e40ea3faa12", + "symbol": "SPH", + "decimals": 18, + "name": "Spheroid (PoS)", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x2c9d233914f46b88e9ae08326fa60e40ea3faa12.png", + "aggregators": ["LiFi", "Socket", "Rubic"], + "occurrences": 3 + }, + "0xf244e91a46a9cdd48da295ca5d0b27894f8032b1": { + "address": "0xf244e91a46a9cdd48da295ca5d0b27894f8032b1", + "symbol": "UART", + "decimals": 12, + "name": "UART", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0xf244e91a46a9cdd48da295ca5d0b27894f8032b1.png", + "aggregators": ["LiFi", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x8bed972bc5ff0ab8290461cd01f8b58f39fa312f": { + "address": "0x8bed972bc5ff0ab8290461cd01f8b58f39fa312f", + "symbol": "EDUM", + "decimals": 18, + "name": "EDUM(PoS)", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x8bed972bc5ff0ab8290461cd01f8b58f39fa312f.png", + "aggregators": ["LiFi", "Socket", "Rubic"], + "occurrences": 3 + }, + "0x60bb3d364b765c497c8ce50ae0ae3f0882c5bd05": { + "address": "0x60bb3d364b765c497c8ce50ae0ae3f0882c5bd05", + "symbol": "IMX", + "decimals": 18, + "name": "IMX", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x60bb3d364b765c497c8ce50ae0ae3f0882c5bd05.png", + "aggregators": ["LiFi", "Socket", "Rango"], + "occurrences": 3 + }, + "0x3a29cab2e124919d14a6f735b6033a3aad2b260f": { + "address": "0x3a29cab2e124919d14a6f735b6033a3aad2b260f", + "symbol": "ORETRO", + "decimals": 18, + "name": "Option to buy RETRO", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x3a29cab2e124919d14a6f735b6033a3aad2b260f.png", + "aggregators": ["LiFi", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x5f1657896b38c4761dbc5484473c7a7c845910b6": { + "address": "0x5f1657896b38c4761dbc5484473c7a7c845910b6", + "symbol": "PSWAMP", + "decimals": 18, + "name": "PSWAMP", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x5f1657896b38c4761dbc5484473c7a7c845910b6.png", + "aggregators": ["LiFi", "Rubic", "Rango"], + "occurrences": 3 + }, + "0xfd39c9bb69cc3bd57959284acf855ae65d06f8cf": { + "address": "0xfd39c9bb69cc3bd57959284acf855ae65d06f8cf", + "symbol": "TRUTRU", + "decimals": 18, + "name": "Truebit (PoS)", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0xfd39c9bb69cc3bd57959284acf855ae65d06f8cf.png", + "aggregators": ["LiFi", "Socket", "Rubic"], + "occurrences": 3 + }, + "0x767058f11800fba6a682e73a6e79ec5eb74fac8c": { + "address": "0x767058f11800fba6a682e73a6e79ec5eb74fac8c", + "symbol": "JGBP", + "decimals": 18, + "name": "Jarvis Synthetic British Pound", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x767058f11800fba6a682e73a6e79ec5eb74fac8c.png", + "aggregators": ["LiFi", "Rubic", "Rango"], + "occurrences": 3 + }, + "0xfad65eb62a97ff5ed91b23afd039956aaca6e93b": { + "address": "0xfad65eb62a97ff5ed91b23afd039956aaca6e93b", + "symbol": "HT", + "decimals": 18, + "name": "HuobiToken (PoS)", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0xfad65eb62a97ff5ed91b23afd039956aaca6e93b.png", + "aggregators": ["LiFi", "Socket", "Rango"], + "occurrences": 3 + }, + "0x18fb181ee70c20c68a7e7905e52830bf8b47c25d": { + "address": "0x18fb181ee70c20c68a7e7905e52830bf8b47c25d", + "symbol": "SDAI", + "decimals": 18, + "name": "Savings Dai (PoS)", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x18fb181ee70c20c68a7e7905e52830bf8b47c25d.png", + "aggregators": ["LiFi", "Socket", "Rango"], + "occurrences": 3 + }, + "0xe8b9c5c5561727d248aac2a3207219bbae25a16c": { + "address": "0xe8b9c5c5561727d248aac2a3207219bbae25a16c", + "symbol": "SHC2.0", + "decimals": 18, + "name": "Show Plus Chain", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0xe8b9c5c5561727d248aac2a3207219bbae25a16c.png", + "aggregators": ["LiFi", "Rubic", "Sonarwatch"], + "occurrences": 3 + }, + "0x291aa47c58558adfc2bcd6f060578fdae1f6570c": { + "address": "0x291aa47c58558adfc2bcd6f060578fdae1f6570c", + "symbol": "MBASE", + "decimals": 18, + "name": "Minebase", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x291aa47c58558adfc2bcd6f060578fdae1f6570c.png", + "aggregators": ["LiFi", "Rubic", "Sonarwatch"], + "occurrences": 3 + }, + "0x7238390d5f6f64e67c3211c343a410e2a3dec142": { + "address": "0x7238390d5f6f64e67c3211c343a410e2a3dec142", + "symbol": "PEARL", + "decimals": 18, + "name": "Pearl", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x7238390d5f6f64e67c3211c343a410e2a3dec142.png", + "aggregators": ["LiFi", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x74ccbe53f77b08632ce0cb91d3a545bf6b8e0979": { + "address": "0x74ccbe53f77b08632ce0cb91d3a545bf6b8e0979", + "symbol": "FBOMB", + "decimals": 18, + "name": "Fantom Bomb", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x74ccbe53f77b08632ce0cb91d3a545bf6b8e0979.png", + "aggregators": ["LiFi", "Rubic", "Rango"], + "occurrences": 3 + }, + "0xc27158bb8e08899d38765752f91d7d778e16ab8e": { + "address": "0xc27158bb8e08899d38765752f91d7d778e16ab8e", + "symbol": "KAP", + "decimals": 18, + "name": "KAP Games", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0xc27158bb8e08899d38765752f91d7d778e16ab8e.png", + "aggregators": ["Rubic", "Rango", "Sonarwatch"], + "occurrences": 3 + }, + "0x77a6f2e9a9e44fd5d5c3f9be9e52831fc1c3c0a0": { + "address": "0x77a6f2e9a9e44fd5d5c3f9be9e52831fc1c3c0a0", + "symbol": "W$C", + "decimals": 18, + "name": "World$tateCoin", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x77a6f2e9a9e44fd5d5c3f9be9e52831fc1c3c0a0.png", + "aggregators": ["Rubic", "Rango", "Sonarwatch"], + "occurrences": 3 + } + }, + "timestamp": 1779126362436 + }, + "0x8f": { + "data": { + "0x754704bc059f8c67012fed69bc8a327a5aafb603": { + "address": "0x754704bc059f8c67012fed69bc8a327a5aafb603", + "symbol": "USDC", + "decimals": 6, + "name": "USDC", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/143/0x754704bc059f8c67012fed69bc8a327a5aafb603.png", + "aggregators": ["Metamask", "LiFi", "Squid"], + "occurrences": 3 + }, + "0xe7cd86e13ac4309349f30b3435a9d337750fc82d": { + "address": "0xe7cd86e13ac4309349f30b3435a9d337750fc82d", + "symbol": "USDT0", + "decimals": 6, + "name": "USDT0", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/143/0xe7cd86e13ac4309349f30b3435a9d337750fc82d.png", + "aggregators": ["Metamask", "LiFi", "Squid"], + "occurrences": 3 + }, + "0xee8c0e9f1bffb4eb878d8f15f368a02a35481242": { + "address": "0xee8c0e9f1bffb4eb878d8f15f368a02a35481242", + "symbol": "WETH", + "decimals": 18, + "name": "Wrapped Ether", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/143/0xee8c0e9f1bffb4eb878d8f15f368a02a35481242.png", + "aggregators": ["Metamask", "LiFi", "Squid"], + "occurrences": 3 + }, + "0x3bd359c1119da7da1d913d1c4d2b7c461115433a": { + "address": "0x3bd359c1119da7da1d913d1c4d2b7c461115433a", + "symbol": "WMON", + "decimals": 18, + "name": "Wrapped MON", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/143/0x3bd359c1119da7da1d913d1c4d2b7c461115433a.png", + "aggregators": ["Metamask", "LiFi", "Squid"], + "occurrences": 3 + }, + "0xa3227c5969757783154c60bf0bc1944180ed81b9": { + "address": "0xa3227c5969757783154c60bf0bc1944180ed81b9", + "symbol": "SMON", + "decimals": 18, + "name": "Kintsu Staked Monad", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/143/0xa3227c5969757783154c60bf0bc1944180ed81b9.png", + "aggregators": ["Metamask", "LiFi"], + "occurrences": 2 + }, + "0x1b68626dca36c7fe922fd2d55e4f631d962de19c": { + "address": "0x1b68626dca36c7fe922fd2d55e4f631d962de19c", + "symbol": "SHMON", + "decimals": 18, + "name": "ShMonad", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/143/0x1b68626dca36c7fe922fd2d55e4f631d962de19c.png", + "aggregators": ["Metamask", "LiFi", "Squid"], + "occurrences": 3 + }, + "0x00000000efe302beaa2b3e6e1b18d08d69a9012a": { + "address": "0x00000000efe302beaa2b3e6e1b18d08d69a9012a", + "symbol": "AUSD", + "decimals": 6, + "name": "AUSD", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/143/0x00000000efe302beaa2b3e6e1b18d08d69a9012a.png", + "aggregators": ["Metamask", "LiFi", "Squid"], + "occurrences": 3 + }, + "0x4917a5ec9fcb5e10f47cbb197abe6ab63be81fe8": { + "address": "0x4917a5ec9fcb5e10f47cbb197abe6ab63be81fe8", + "symbol": "AZND", + "decimals": 18, + "name": "Asian Dollar", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/143/0x4917a5ec9fcb5e10f47cbb197abe6ab63be81fe8.png", + "aggregators": ["Metamask", "LiFi"], + "occurrences": 2 + }, + "0xb0f70c0bd6fd87dbeb7c10dc692a2a6106817072": { + "address": "0xb0f70c0bd6fd87dbeb7c10dc692a2a6106817072", + "symbol": "BTC.B", + "decimals": 8, + "name": "Bitcoin", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/143/0xb0f70c0bd6fd87dbeb7c10dc692a2a6106817072.png", + "aggregators": ["Metamask", "LiFi"], + "occurrences": 2 + }, + "0xf59d81cd43f620e722e07f9cb3f6e41b031017a3": { + "address": "0xf59d81cd43f620e722e07f9cb3f6e41b031017a3", + "symbol": "CAKE", + "decimals": 18, + "name": "PancakeSwap Token", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/143/0xf59d81cd43f620e722e07f9cb3f6e41b031017a3.png", + "aggregators": ["MonadTeam", "LiFi"], + "occurrences": 2 + }, + "0xad96c3dffcd6374294e2573a7fbba96097cc8d7c": { + "address": "0xad96c3dffcd6374294e2573a7fbba96097cc8d7c", + "symbol": "DUST", + "decimals": 18, + "name": "Pixie Dust", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/143/0xad96c3dffcd6374294e2573a7fbba96097cc8d7c.png", + "aggregators": ["CoinGecko", "Squid"], + "occurrences": 2 + }, + "0xff7f8f301f7a706e3cfd3d2275f5dc0b9ee8009b": { + "address": "0xff7f8f301f7a706e3cfd3d2275f5dc0b9ee8009b", + "symbol": "FOLKS", + "decimals": 6, + "name": "Folks Finance", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/143/0xff7f8f301f7a706e3cfd3d2275f5dc0b9ee8009b.png", + "aggregators": ["Metamask", "LiFi"], + "occurrences": 2 + }, + "0xce6170ea245dc8d1f275a710a062b70f125f0110": { + "address": "0xce6170ea245dc8d1f275a710a062b70f125f0110", + "symbol": "FXRP", + "decimals": 6, + "name": "FXRP", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/143/0xce6170ea245dc8d1f275a710a062b70f125f0110.png", + "aggregators": ["MonadTeam", "LiFi"], + "occurrences": 2 + }, + "0xecac9c5f704e954931349da37f60e39f515c11c1": { + "address": "0xecac9c5f704e954931349da37f60e39f515c11c1", + "symbol": "LBTC", + "decimals": 8, + "name": "Lombard Staked Bitcoin", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/143/0xecac9c5f704e954931349da37f60e39f515c11c1.png", + "aggregators": ["Metamask", "LiFi"], + "occurrences": 2 + }, + "0xea17e5a9efebf1477db45082d67010e2245217f1": { + "address": "0xea17e5a9efebf1477db45082d67010e2245217f1", + "symbol": "SOL", + "decimals": 9, + "name": "Wrapped SOL", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/143/0xea17e5a9efebf1477db45082d67010e2245217f1.png", + "aggregators": ["Metamask", "LiFi"], + "occurrences": 2 + }, + "0x111111d2bf19e43c34263401e0cad979ed1cdb61": { + "address": "0x111111d2bf19e43c34263401e0cad979ed1cdb61", + "symbol": "USD1", + "decimals": 6, + "name": "USD1", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/143/0x111111d2bf19e43c34263401e0cad979ed1cdb61.png", + "aggregators": ["Metamask", "LiFi"], + "occurrences": 2 + }, + "0x0555e30da8f98308edb960aa94c0db47230d2b9c": { + "address": "0x0555e30da8f98308edb960aa94c0db47230d2b9c", + "symbol": "WBTC", + "decimals": 8, + "name": "Wrapped BTC", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/143/0x0555e30da8f98308edb960aa94c0db47230d2b9c.png", + "aggregators": ["Metamask", "LiFi"], + "occurrences": 2 + }, + "0x01bff41798a0bcf287b996046ca68b395dbc1071": { + "address": "0x01bff41798a0bcf287b996046ca68b395dbc1071", + "symbol": "XAUT0", + "decimals": 6, + "name": "XAUt0", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/143/0x01bff41798a0bcf287b996046ca68b395dbc1071.png", + "aggregators": ["Metamask", "LiFi"], + "occurrences": 2 + }, + "0x0c65a0bc65a5d819235b71f554d210d3f80e0852": { + "address": "0x0c65a0bc65a5d819235b71f554d210d3f80e0852", + "symbol": "APRMON", + "decimals": 18, + "name": "aPriori Monad LST", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/143/0x0c65a0bc65a5d819235b71f554d210d3f80e0852.png", + "aggregators": ["CoinGecko", "LiFi"], + "occurrences": 2 + }, + "0x103222f020e98bba0ad9809a011fdf8e6f067496": { + "address": "0x103222f020e98bba0ad9809a011fdf8e6f067496", + "symbol": "EARNAUSD", + "decimals": 6, + "name": "earnAUSD", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/143/0x103222f020e98bba0ad9809a011fdf8e6f067496.png", + "aggregators": ["CoinGecko", "LiFi"], + "occurrences": 2 + }, + "0x8498312a6b3cbd158bf0c93abdcf29e6e4f55081": { + "address": "0x8498312a6b3cbd158bf0c93abdcf29e6e4f55081", + "symbol": "GMON", + "decimals": 18, + "name": "gMON", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/143/0x8498312a6b3cbd158bf0c93abdcf29e6e4f55081.png", + "aggregators": ["Metamask", "LiFi"], + "occurrences": 2 + }, + "0x9c82eb49b51f7dc61e22ff347931ca32adc6cd90": { + "address": "0x9c82eb49b51f7dc61e22ff347931ca32adc6cd90", + "symbol": "LOAZND", + "decimals": 18, + "name": "Locked AZND", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/143/0x9c82eb49b51f7dc61e22ff347931ca32adc6cd90.png", + "aggregators": ["CoinGecko", "LiFi"], + "occurrences": 2 + }, + "0xf7cf282ec810fded974f99c0163e792f432892bc": { + "address": "0xf7cf282ec810fded974f99c0163e792f432892bc", + "symbol": "MHYPERBTC", + "decimals": 18, + "name": "Midas Hyperithm BTC", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/143/0xf7cf282ec810fded974f99c0163e792f432892bc.png", + "aggregators": ["CoinGecko", "LiFi"], + "occurrences": 2 + }, + "0x1d4795a4670033f47f572b910553be0295077b51": { + "address": "0x1d4795a4670033f47f572b910553be0295077b51", + "symbol": "MCMON", + "decimals": 18, + "name": "mcMON", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/143/0x1d4795a4670033f47f572b910553be0295077b51.png", + "aggregators": ["Metamask", "LiFi"], + "occurrences": 2 + }, + "0x336d414754967c6682b5a665c7daf6f1409e63e8": { + "address": "0x336d414754967c6682b5a665c7daf6f1409e63e8", + "symbol": "MUBOND", + "decimals": 18, + "name": "mu Bond", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/143/0x336d414754967c6682b5a665c7daf6f1409e63e8.png", + "aggregators": ["Metamask", "LiFi"], + "occurrences": 2 + }, + "0xd793c04b87386a6bb84ee61d98e0065fde7fda5e": { + "address": "0xd793c04b87386a6bb84ee61d98e0065fde7fda5e", + "symbol": "SAUSD", + "decimals": 6, + "name": "sAUSD", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/143/0xd793c04b87386a6bb84ee61d98e0065fde7fda5e.png", + "aggregators": ["MonadTeam"], + "occurrences": 1 + }, + "0xa3d68b74bf0528fdd07263c60d6488749044914b": { + "address": "0xa3d68b74bf0528fdd07263c60d6488749044914b", + "symbol": "WEETH", + "decimals": 18, + "name": "Wrapped eETH", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/143/0xa3d68b74bf0528fdd07263c60d6488749044914b.png", + "aggregators": ["CoinGecko", "LiFi"], + "occurrences": 2 + }, + "0x10aeaf63194db8d453d4d85a06e5efe1dd0b5417": { + "address": "0x10aeaf63194db8d453d4d85a06e5efe1dd0b5417", + "symbol": "WSTETH", + "decimals": 18, + "name": "Wrapped liquid staked Ether 2.0", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/143/0x10aeaf63194db8d453d4d85a06e5efe1dd0b5417.png", + "aggregators": ["Metamask", "LiFi"], + "occurrences": 2 + }, + "0x350035555e10d9afaf1566aaebfced5ba6c27777": { + "address": "0x350035555e10d9afaf1566aaebfced5ba6c27777", + "symbol": "CHOG", + "decimals": 18, + "name": "Chog", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/143/0x350035555e10d9afaf1566aaebfced5ba6c27777.png", + "aggregators": ["CoinGecko", "LiFi"], + "occurrences": 2 + }, + "0x97401d48a80b15bc7291599e24b590eedcd7ce37": { + "address": "0x97401d48a80b15bc7291599e24b590eedcd7ce37", + "symbol": "HST", + "decimals": 18, + "name": "HYPERSTITIONS", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/143/0x97401d48a80b15bc7291599e24b590eedcd7ce37.png", + "aggregators": ["CoinGecko", "LiFi"], + "occurrences": 2 + }, + "0x1f80c65cc2c37af84abbe1ea03183a624a6f8888": { + "address": "0x1f80c65cc2c37af84abbe1ea03183a624a6f8888", + "symbol": "GMONAD", + "decimals": 18, + "name": "Gmonad", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/143/0x1f80c65cc2c37af84abbe1ea03183a624a6f8888.png", + "aggregators": ["CoinGecko", "Squid"], + "occurrences": 2 + }, + "0x1ad7052bb331a0529c1981c3ec2bc4663498a110": { + "address": "0x1ad7052bb331a0529c1981c3ec2bc4663498a110", + "symbol": "ALLOCA", + "decimals": 18, + "name": "ALLOCA", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/143/0x1ad7052bb331a0529c1981c3ec2bc4663498a110.png", + "aggregators": ["CoinGecko", "Squid"], + "occurrences": 2 + }, + "0xd32e9ddd968b18e8429f2d1da7efb2cc1f01d42d": { + "address": "0xd32e9ddd968b18e8429f2d1da7efb2cc1f01d42d", + "symbol": "MOLANDAK", + "decimals": 18, + "name": "MOLANDAK", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/143/0xd32e9ddd968b18e8429f2d1da7efb2cc1f01d42d.png", + "aggregators": ["CoinGecko", "Squid"], + "occurrences": 2 + }, + "0xd33f18d8d48cbbb2f8b47063de97f94de0d49b99": { + "address": "0xd33f18d8d48cbbb2f8b47063de97f94de0d49b99", + "symbol": "NXPC", + "decimals": 18, + "name": "NXPC", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/143/0xd33f18d8d48cbbb2f8b47063de97f94de0d49b99.png", + "aggregators": ["Metamask", "LiFi"], + "occurrences": 2 + }, + "0xae4efbc7736f963982aacb17efa37fcbab924cb3": { + "address": "0xae4efbc7736f963982aacb17efa37fcbab924cb3", + "symbol": "SOLVBTC", + "decimals": 18, + "name": "Solv BTC", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/143/0xae4efbc7736f963982aacb17efa37fcbab924cb3.png", + "aggregators": ["CoinGecko", "LiFi"], + "occurrences": 2 + }, + "0xd18b7ec58cdf4876f6afebd3ed1730e4ce10414b": { + "address": "0xd18b7ec58cdf4876f6afebd3ed1730e4ce10414b", + "symbol": "CBBTC", + "decimals": 8, + "name": "Coinbase Wrapped BTC", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/143/0xd18b7ec58cdf4876f6afebd3ed1730e4ce10414b.png", + "aggregators": ["CoinGecko", "LiFi"], + "occurrences": 2 + }, + "0x1c8ee940b654bfced403f2a44c1603d5be0f50fa": { + "address": "0x1c8ee940b654bfced403f2a44c1603d5be0f50fa", + "symbol": "MEDGE", + "decimals": 18, + "name": "Midas mEDGE", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/143/0x1c8ee940b654bfced403f2a44c1603d5be0f50fa.png", + "aggregators": ["CoinGecko"], + "occurrences": 1 + }, + "0xfdd22ce6d1f66bc0ec89b20bf16ccb6670f55a5a": { + "address": "0xfdd22ce6d1f66bc0ec89b20bf16ccb6670f55a5a", + "symbol": "THBILL", + "decimals": 6, + "name": "thBILL", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/143/0xfdd22ce6d1f66bc0ec89b20bf16ccb6670f55a5a.png", + "aggregators": ["MonadTeam", "LiFi"], + "occurrences": 2 + }, + "0x4809010926aec940b550d34a46a52739f996d75d": { + "address": "0x4809010926aec940b550d34a46a52739f996d75d", + "symbol": "WSRUSD", + "decimals": 18, + "name": "Wrapped Savings rUSD", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/143/0x4809010926aec940b550d34a46a52739f996d75d.png", + "aggregators": ["MonadTeam", "LiFi"], + "occurrences": 2 + }, + "0xc99f5c922dae05b6e2ff83463ce705ef7c91f077": { + "address": "0xc99f5c922dae05b6e2ff83463ce705ef7c91f077", + "symbol": "XSOLVBTC", + "decimals": 18, + "name": "Solv Protocol Staked BTC", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/143/0xc99f5c922dae05b6e2ff83463ce705ef7c91f077.png", + "aggregators": ["CoinGecko"], + "occurrences": 1 + }, + "0xdef72af3fc69e1dd5a094f7dda08ba203cd0438b": { + "address": "0xdef72af3fc69e1dd5a094f7dda08ba203cd0438b", + "symbol": "EUL", + "decimals": 18, + "name": "Euler", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/143/0xdef72af3fc69e1dd5a094f7dda08ba203cd0438b.png", + "aggregators": ["MonadTeam", "LiFi"], + "occurrences": 2 + }, + "0x3fea1cb36d2c5523c062d0e060eac253608b4daf": { + "address": "0x3fea1cb36d2c5523c062d0e060eac253608b4daf", + "symbol": "FUSDLP", + "decimals": 18, + "name": "FinChain Dollar LP", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/143/0x3fea1cb36d2c5523c062d0e060eac253608b4daf.png", + "aggregators": ["MonadTeam"], + "occurrences": 1 + }, + "0x39bb4e0a204412bb98e821d25e7d955e69d40fd1": { + "address": "0x39bb4e0a204412bb98e821d25e7d955e69d40fd1", + "symbol": "GBPM", + "decimals": 18, + "name": "Mento British Pound", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/143/0x39bb4e0a204412bb98e821d25e7d955e69d40fd1.png", + "aggregators": ["MonadTeam"], + "occurrences": 1 + }, + "0x18bc5bcc660cf2b9ce3cd51a404afe1a0cbd3c22": { + "address": "0x18bc5bcc660cf2b9ce3cd51a404afe1a0cbd3c22", + "symbol": "IDRX", + "decimals": 2, + "name": "IDRX", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/143/0x18bc5bcc660cf2b9ce3cd51a404afe1a0cbd3c22.png", + "aggregators": ["MonadTeam"], + "occurrences": 1 + }, + "0x1001ff13bf368aa4fa85f21043648079f00e1001": { + "address": "0x1001ff13bf368aa4fa85f21043648079f00e1001", + "symbol": "LV", + "decimals": 18, + "name": "LeverUp", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/143/0x1001ff13bf368aa4fa85f21043648079f00e1001.png", + "aggregators": ["MonadTeam"], + "occurrences": 1 + }, + "0x91b81bfbe3a747230f0529aa28d8b2bc898e6d56": { + "address": "0x91b81bfbe3a747230f0529aa28d8b2bc898e6d56", + "symbol": "LVMON", + "decimals": 18, + "name": "LeverUp MON", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/143/0x91b81bfbe3a747230f0529aa28d8b2bc898e6d56.png", + "aggregators": ["Metamask"], + "occurrences": 1 + }, + "0xfd44b35139ae53fff7d8f2a9869c503d987f00d1": { + "address": "0xfd44b35139ae53fff7d8f2a9869c503d987f00d1", + "symbol": "LVUSD", + "decimals": 18, + "name": "LeverUp USD", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/143/0xfd44b35139ae53fff7d8f2a9869c503d987f00d1.png", + "aggregators": ["Metamask"], + "occurrences": 1 + }, + "0x04f8c38ae80bcf690b947f60f62bda18145c3d67": { + "address": "0x04f8c38ae80bcf690b947f60f62bda18145c3d67", + "symbol": "MVT", + "decimals": 18, + "name": "Monad Vault", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/143/0x04f8c38ae80bcf690b947f60f62bda18145c3d67.png", + "aggregators": ["Metamask"], + "occurrences": 1 + }, + "0x1808d4aa4d4a7cf66bb6515bf126edefa2b018c1": { + "address": "0x1808d4aa4d4a7cf66bb6515bf126edefa2b018c1", + "symbol": "USD*", + "decimals": 6, + "name": "USD Star", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/143/0x1808d4aa4d4a7cf66bb6515bf126edefa2b018c1.png", + "aggregators": ["MonadTeam"], + "occurrences": 1 + }, + "0xbc69212b8e4d445b2307c9d32dd68e2a4df00115": { + "address": "0xbc69212b8e4d445b2307c9d32dd68e2a4df00115", + "symbol": "USDM", + "decimals": 18, + "name": "Mento Dollar", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/143/0xbc69212b8e4d445b2307c9d32dd68e2a4df00115.png", + "aggregators": ["MonadTeam"], + "occurrences": 1 + }, + "0x3a2c4aaae6776dc1c31316de559598f2f952e2cb": { + "address": "0x3a2c4aaae6776dc1c31316de559598f2f952e2cb", + "symbol": "YZM", + "decimals": 6, + "name": "Yuzu Money Vault", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/143/0x3a2c4aaae6776dc1c31316de559598f2f952e2cb.png", + "aggregators": ["MonadTeam"], + "occurrences": 1 + }, + "0x7cd231120a60f500887444a9baf5e1bd753a5e59": { + "address": "0x7cd231120a60f500887444a9baf5e1bd753a5e59", + "symbol": "AHYPER", + "decimals": 6, + "name": "Hyperithm Delta Neutral Vault", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/143/0x7cd231120a60f500887444a9baf5e1bd753a5e59.png", + "aggregators": ["MonadTeam"], + "occurrences": 1 + }, + "0xd691b0afed67f96cec28ab6308cbe5b2c103b7e9": { + "address": "0xd691b0afed67f96cec28ab6308cbe5b2c103b7e9", + "symbol": "EBTC", + "decimals": 10, + "name": "eBTC", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/143/0xd691b0afed67f96cec28ab6308cbe5b2c103b7e9.png", + "aggregators": ["CoinGecko"], + "occurrences": 1 + }, + "0x8fa1365f6e39b7404737721a356b1d4a7b11ca7d": { + "address": "0x8fa1365f6e39b7404737721a356b1d4a7b11ca7d", + "symbol": "EARNMON", + "decimals": 18, + "name": "earnMON", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/143/0x8fa1365f6e39b7404737721a356b1d4a7b11ca7d.png", + "aggregators": ["MonadTeam"], + "occurrences": 1 + }, + "0xd7acb868f97f8286d5d3a0fd5ef112a8a72ecd90": { + "address": "0xd7acb868f97f8286d5d3a0fd5ef112a8a72ecd90", + "symbol": "ENZOBTC", + "decimals": 8, + "name": "Lorenzo Wrapped Bitcoin", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/143/0xd7acb868f97f8286d5d3a0fd5ef112a8a72ecd90.png", + "aggregators": ["MonadTeam"], + "occurrences": 1 + }, + "0x2416092f143378750bb29b79ed961ab195cceea5": { + "address": "0x2416092f143378750bb29b79ed961ab195cceea5", + "symbol": "EZETH", + "decimals": 18, + "name": "Renzo Restaked ETH", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/143/0x2416092f143378750bb29b79ed961ab195cceea5.png", + "aggregators": ["MonadTeam"], + "occurrences": 1 + }, + "0xd90f6bfed23ffde40106fc4498dd2e9edb95e4e7": { + "address": "0xd90f6bfed23ffde40106fc4498dd2e9edb95e4e7", + "symbol": "MHYPER", + "decimals": 18, + "name": "Midas mHYPER", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/143/0xd90f6bfed23ffde40106fc4498dd2e9edb95e4e7.png", + "aggregators": ["CoinGecko"], + "occurrences": 1 + }, + "0x37d6382b6889ccef8d6871a8b60e667115eddbcf": { + "address": "0x37d6382b6889ccef8d6871a8b60e667115eddbcf", + "symbol": "PUFETH", + "decimals": 18, + "name": "pufETH", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/143/0x37d6382b6889ccef8d6871a8b60e667115eddbcf.png", + "aggregators": ["Metamask"], + "occurrences": 1 + }, + "0xc50f2e735edd9dcd8ccd41ecfe9894e679e3195f": { + "address": "0xc50f2e735edd9dcd8ccd41ecfe9894e679e3195f", + "symbol": "RETH", + "decimals": 18, + "name": "Rocket Pool ETH", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/143/0xc50f2e735edd9dcd8ccd41ecfe9894e679e3195f.png", + "aggregators": ["MonadTeam"], + "occurrences": 1 + }, + "0x9648db94f1e6b19e7d755585542981f97dc806c6": { + "address": "0x9648db94f1e6b19e7d755585542981f97dc806c6", + "symbol": "SAVUSD", + "decimals": 18, + "name": "Staked avUSD", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/143/0x9648db94f1e6b19e7d755585542981f97dc806c6.png", + "aggregators": ["MonadTeam"], + "occurrences": 1 + }, + "0xe85411c030fb32a9d8b14bbbc6cb19417391f711": { + "address": "0xe85411c030fb32a9d8b14bbbc6cb19417391f711", + "symbol": "SUBTC", + "decimals": 18, + "name": "Sumerian BTC", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/143/0xe85411c030fb32a9d8b14bbbc6cb19417391f711.png", + "aggregators": ["Metamask"], + "occurrences": 1 + }, + "0x1c22531aa9747d76fff8f0a43b37954ca67d28e0": { + "address": "0x1c22531aa9747d76fff8f0a43b37954ca67d28e0", + "symbol": "SUETH", + "decimals": 18, + "name": "Sumerian ETH", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/143/0x1c22531aa9747d76fff8f0a43b37954ca67d28e0.png", + "aggregators": ["Metamask"], + "occurrences": 1 + }, + "0x8bf591eae535f93a242d5a954d3cde648b48a5a8": { + "address": "0x8bf591eae535f93a242d5a954d3cde648b48a5a8", + "symbol": "SUUSD", + "decimals": 18, + "name": "Sumerian USD", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/143/0x8bf591eae535f93a242d5a954d3cde648b48a5a8.png", + "aggregators": ["Metamask"], + "occurrences": 1 + }, + "0x484be0540ad49f351eaa04eeb35df0f937d4e73f": { + "address": "0x484be0540ad49f351eaa04eeb35df0f937d4e73f", + "symbol": "SYZUSD", + "decimals": 18, + "name": "Staked Yuzu USD", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/143/0x484be0540ad49f351eaa04eeb35df0f937d4e73f.png", + "aggregators": ["MonadTeam"], + "occurrences": 1 + }, + "0x8d3f9f9eb2f5e8b48efbb4074440d1e2a34bc365": { + "address": "0x8d3f9f9eb2f5e8b48efbb4074440d1e2a34bc365", + "symbol": "VUSD", + "decimals": 6, + "name": "RWA Backed Lending by Valos", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/143/0x8d3f9f9eb2f5e8b48efbb4074440d1e2a34bc365.png", + "aggregators": ["MonadTeam"], + "occurrences": 1 + }, + "0xb37476cb1f6111cc682b107b747b8652f90b0984": { + "address": "0xb37476cb1f6111cc682b107b747b8652f90b0984", + "symbol": "YZPP", + "decimals": 18, + "name": "Yuzu Protection Pool", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/143/0xb37476cb1f6111cc682b107b747b8652f90b0984.png", + "aggregators": ["MonadTeam"], + "occurrences": 1 + }, + "0x9dcb0d17edde04d27f387c89fecb78654c373858": { + "address": "0x9dcb0d17edde04d27f387c89fecb78654c373858", + "symbol": "YZUSD", + "decimals": 18, + "name": "Yuzu USD", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/143/0x9dcb0d17edde04d27f387c89fecb78654c373858.png", + "aggregators": ["MonadTeam"], + "occurrences": 1 + }, + "0x25ac11cb986ca6910501803af5b4e41cf3ad9999": { + "address": "0x25ac11cb986ca6910501803af5b4e41cf3ad9999", + "symbol": "MONADP", + "decimals": 9, + "name": "MonadPrinter", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/143/0x25ac11cb986ca6910501803af5b4e41cf3ad9999.png", + "aggregators": ["CoinGecko"], + "occurrences": 1 + }, + "0x21e325b059cd83d4037c82f0f5998ba2df3d7777": { + "address": "0x21e325b059cd83d4037c82f0f5998ba2df3d7777", + "symbol": "BOB", + "decimals": 18, + "name": "Bob", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/143/0x21e325b059cd83d4037c82f0f5998ba2df3d7777.png", + "aggregators": ["CoinGecko"], + "occurrences": 1 + }, + "0x39b9e06f226ff6d7500c870b82333aacbd2f7777": { + "address": "0x39b9e06f226ff6d7500c870b82333aacbd2f7777", + "symbol": "NADS", + "decimals": 18, + "name": "NADS", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/143/0x39b9e06f226ff6d7500c870b82333aacbd2f7777.png", + "aggregators": ["CoinGecko"], + "occurrences": 1 + }, + "0x4e8aaecce10ad9394e96fe5f2bd4e587a7b04298": { + "address": "0x4e8aaecce10ad9394e96fe5f2bd4e587a7b04298", + "symbol": "WNUSDT0", + "decimals": 6, + "name": "Wrapped Neverland USDT0", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/143/0x4e8aaecce10ad9394e96fe5f2bd4e587a7b04298.png", + "aggregators": ["CoinGecko"], + "occurrences": 1 + }, + "0x65ea4cdaf74537202bfb1124131e1c68f9512d1b": { + "address": "0x65ea4cdaf74537202bfb1124131e1c68f9512d1b", + "symbol": "SAL", + "decimals": 18, + "name": "Salmonad", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/143/0x65ea4cdaf74537202bfb1124131e1c68f9512d1b.png", + "aggregators": ["CoinGecko"], + "occurrences": 1 + }, + "0xc9ea90692757831d98ac629f2a0140e02b80a7da": { + "address": "0xc9ea90692757831d98ac629f2a0140e02b80a7da", + "symbol": "YZPRIME", + "decimals": 18, + "name": "Yuzu Prime", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/143/0xc9ea90692757831d98ac629f2a0140e02b80a7da.png", + "aggregators": ["CoinGecko"], + "occurrences": 1 + }, + "0xdb39a9d4a1f1b4e93a5684d602207628ad60613c": { + "address": "0xdb39a9d4a1f1b4e93a5684d602207628ad60613c", + "symbol": "wnWMON", + "decimals": 18, + "name": "Wrapped Neverland WMON", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/143/0xdb39a9d4a1f1b4e93a5684d602207628ad60613c.png", + "aggregators": ["Dynamic"], + "occurrences": 1 + }, + "0x228c673cae7aad0f4d9f309616d6b546356b7777": { + "address": "0x228c673cae7aad0f4d9f309616d6b546356b7777", + "symbol": "BC", + "decimals": 18, + "name": "Black Currency", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/143/0x228c673cae7aad0f4d9f309616d6b546356b7777.png", + "aggregators": ["CoinGecko"], + "occurrences": 1 + }, + "0x82c370ba90e38ef6acd8b1b078d34fd86fc6bac9": { + "address": "0x82c370ba90e38ef6acd8b1b078d34fd86fc6bac9", + "symbol": "WNAUSD", + "decimals": 6, + "name": "Wrapped Neverland AUSD", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/143/0x82c370ba90e38ef6acd8b1b078d34fd86fc6bac9.png", + "aggregators": ["CoinGecko"], + "occurrences": 1 + }, + "0x3ff60900b70db8d0bde4d4819f028673718c5d1b": { + "address": "0x3ff60900b70db8d0bde4d4819f028673718c5d1b", + "symbol": "GMONAD", + "decimals": 18, + "name": "GMONAD", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/143/0x3ff60900b70db8d0bde4d4819f028673718c5d1b.png", + "aggregators": ["CoinGecko"], + "occurrences": 1 + }, + "0x81a224f8a62f52bde942dbf23a56df77a10b7777": { + "address": "0x81a224f8a62f52bde942dbf23a56df77a10b7777", + "symbol": "emo", + "decimals": 18, + "name": "emonad", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/143/0x81a224f8a62f52bde942dbf23a56df77a10b7777.png", + "aggregators": ["Dynamic"], + "occurrences": 1 + }, + "0xc88cacd6fe1838c8dd1f0244b6cc0dee910dd261": { + "address": "0xc88cacd6fe1838c8dd1f0244b6cc0dee910dd261", + "symbol": "AETHON", + "decimals": 18, + "name": "AethonSwap", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/143/0xc88cacd6fe1838c8dd1f0244b6cc0dee910dd261.png", + "aggregators": ["CoinGecko"], + "occurrences": 1 + }, + "0xd786f7569c39a9f64e6a54eb77db21364e90f279": { + "address": "0xd786f7569c39a9f64e6a54eb77db21364e90f279", + "symbol": "WNLOAZND", + "decimals": 18, + "name": "Wrapped Neverland loAZND", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/143/0xd786f7569c39a9f64e6a54eb77db21364e90f279.png", + "aggregators": ["CoinGecko"], + "occurrences": 1 + }, + "0x8d5c2df3eef09088fcccf3376d8ecd0dd505f642": { + "address": "0x8d5c2df3eef09088fcccf3376d8ecd0dd505f642", + "symbol": "WNUSDC", + "decimals": 6, + "name": "Wrapped Neverland USDC", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/143/0x8d5c2df3eef09088fcccf3376d8ecd0dd505f642.png", + "aggregators": ["CoinGecko"], + "occurrences": 1 + }, + "0x1111b3ded9f1fe1801ad4ebef8e2788183a24111": { + "address": "0x1111b3ded9f1fe1801ad4ebef8e2788183a24111", + "symbol": "EURW", + "decimals": 6, + "name": "Newrails Euro", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/143/0x1111b3ded9f1fe1801ad4ebef8e2788183a24111.png", + "aggregators": ["CoinGecko"], + "occurrences": 1 + }, + "0x42a4aa89864a794de135b23c6a8d2e05513d7777": { + "address": "0x42a4aa89864a794de135b23c6a8d2e05513d7777", + "symbol": "shramp", + "decimals": 18, + "name": "shramp", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/143/0x42a4aa89864a794de135b23c6a8d2e05513d7777.png", + "aggregators": ["Dynamic"], + "occurrences": 1 + }, + "0x7db552eeb6b77a6babe6e0a739b5382cd653cc3e": { + "address": "0x7db552eeb6b77a6babe6e0a739b5382cd653cc3e", + "symbol": "GMONAD", + "decimals": 18, + "name": "GMONAD", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/143/0x7db552eeb6b77a6babe6e0a739b5382cd653cc3e.png", + "aggregators": ["CoinGecko"], + "occurrences": 1 + }, + "0x2fabf1c784b8583d63c00c5c9c0377d8cf1a3245": { + "address": "0x2fabf1c784b8583d63c00c5c9c0377d8cf1a3245", + "symbol": "ACRDX", + "decimals": 18, + "name": "Anemoy Tokenized Apollo Diversified Credit Fund", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/143/0x2fabf1c784b8583d63c00c5c9c0377d8cf1a3245.png", + "aggregators": ["CoinGecko"], + "occurrences": 1 + }, + "0xaca92e438df0b2401ff60da7e4337b687a2435da": { + "address": "0xaca92e438df0b2401ff60da7e4337b687a2435da", + "symbol": "MUSD", + "decimals": 6, + "name": "MetaMask USD", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/143/0xaca92e438df0b2401ff60da7e4337b687a2435da.png", + "aggregators": ["Metamask"], + "occurrences": 1 + }, + "0x2f2f2f74ab5db61ae8bd3c13ccd4dc8c9e8a2f2f": { + "address": "0x2f2f2f74ab5db61ae8bd3c13ccd4dc8c9e8a2f2f", + "symbol": "ZF", + "decimals": 18, + "name": "zkSwap Finance", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/143/0x2f2f2f74ab5db61ae8bd3c13ccd4dc8c9e8a2f2f.png", + "aggregators": ["CoinGecko"], + "occurrences": 1 + }, + "0x123468b48eadbc13c65cd9c66a9913cde4e94321": { + "address": "0x123468b48eadbc13c65cd9c66a9913cde4e94321", + "symbol": "LONG", + "decimals": 18, + "name": "Long", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/143/0x123468b48eadbc13c65cd9c66a9913cde4e94321.png", + "aggregators": ["CoinGecko"], + "occurrences": 1 + }, + "0x6fe981dbd557f81ff66836af0932cba535cbc343": { + "address": "0x6fe981dbd557f81ff66836af0932cba535cbc343", + "symbol": "LINK", + "decimals": 18, + "name": "Chainlink", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/143/0x6fe981dbd557f81ff66836af0932cba535cbc343.png", + "aggregators": ["CoinGecko"], + "occurrences": 1 + }, + "0x6a7e3f839382fbb6a6131d4aae864aaeb362292d": { + "address": "0x6a7e3f839382fbb6a6131d4aae864aaeb362292d", + "symbol": "APE", + "decimals": 18, + "name": "ApeCoin", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/143/0x6a7e3f839382fbb6a6131d4aae864aaeb362292d.png", + "aggregators": ["LiFi"], + "occurrences": 1 + }, + "0x0a332311633c0625f63cfc51ee33fc49826e0a3c": { + "address": "0x0a332311633c0625f63cfc51ee33fc49826e0a3c", + "symbol": "APR", + "decimals": 18, + "name": "aPriori", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/143/0x0a332311633c0625f63cfc51ee33fc49826e0a3c.png", + "aggregators": ["Dynamic"], + "occurrences": 1 + }, + "0x46080f31351a6568f44575e3effde7f0c86867f9": { + "address": "0x46080f31351a6568f44575e3effde7f0c86867f9", + "symbol": "GILTS", + "decimals": 6, + "name": "Etherfuse GILTS", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/143/0x46080f31351a6568f44575e3effde7f0c86867f9.png", + "aggregators": ["CoinGecko"], + "occurrences": 1 + }, + "0xad48f183e586e92a591a610397ebf534609df797": { + "address": "0xad48f183e586e92a591a610397ebf534609df797", + "symbol": "JAAA", + "decimals": 18, + "name": "Janus Henderson Anemoy AAA CLO Fund", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/143/0xad48f183e586e92a591a610397ebf534609df797.png", + "aggregators": ["CoinGecko"], + "occurrences": 1 + }, + "0x7a9990ffe3057edc18558ca4c8804430fe917456": { + "address": "0x7a9990ffe3057edc18558ca4c8804430fe917456", + "symbol": "TESOURO", + "decimals": 6, + "name": "Etherfuse TESOURO", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/143/0x7a9990ffe3057edc18558ca4c8804430fe917456.png", + "aggregators": ["CoinGecko"], + "occurrences": 1 + }, + "0xc18e6f730896971a79d748e8dea61067a9bc6040": { + "address": "0xc18e6f730896971a79d748e8dea61067a9bc6040", + "symbol": "JTRSY", + "decimals": 18, + "name": "Janus Henderson Anemoy Treasury Fund", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/143/0xc18e6f730896971a79d748e8dea61067a9bc6040.png", + "aggregators": ["CoinGecko"], + "occurrences": 1 + }, + "0x834df4c1d8f51be24322e39e4766697be015512f": { + "address": "0x834df4c1d8f51be24322e39e4766697be015512f", + "symbol": "CETES", + "decimals": 6, + "name": "Etherfuse CETES", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/143/0x834df4c1d8f51be24322e39e4766697be015512f.png", + "aggregators": ["CoinGecko"], + "occurrences": 1 + }, + "0x3db619ff72d877490699276061fb0fa0618fdf47": { + "address": "0x3db619ff72d877490699276061fb0fa0618fdf47", + "symbol": "EARN", + "decimals": 18, + "name": "HOLD", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/143/0x3db619ff72d877490699276061fb0fa0618fdf47.png", + "aggregators": ["CoinGecko"], + "occurrences": 1 + }, + "0x095957ceb9f317ac1328f0ab3123622401766d71": { + "address": "0x095957ceb9f317ac1328f0ab3123622401766d71", + "symbol": "STONEUSD", + "decimals": 18, + "name": "StakeStone USD", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/143/0x095957ceb9f317ac1328f0ab3123622401766d71.png", + "aggregators": ["CoinGecko"], + "occurrences": 1 + }, + "0x96043804d00dcec238718eedad9ac10719778380": { + "address": "0x96043804d00dcec238718eedad9ac10719778380", + "symbol": "SHUSD", + "decimals": 6, + "name": "Staked Sherpa USD", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/143/0x96043804d00dcec238718eedad9ac10719778380.png", + "aggregators": ["CoinGecko"], + "occurrences": 1 + }, + "0xe9c082921dc3564e10196c5cc15db1250ac7d5c6": { + "address": "0xe9c082921dc3564e10196c5cc15db1250ac7d5c6", + "symbol": "KTB", + "decimals": 6, + "name": "Etherfuse KTB", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/143/0xe9c082921dc3564e10196c5cc15db1250ac7d5c6.png", + "aggregators": ["CoinGecko"], + "occurrences": 1 + }, + "0xc53ac24320e3a54c7211e4993c8095078a0cb3cf": { + "address": "0xc53ac24320e3a54c7211e4993c8095078a0cb3cf", + "symbol": "WGC", + "decimals": 6, + "name": "Wild Goat Coin", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/143/0xc53ac24320e3a54c7211e4993c8095078a0cb3cf.png", + "aggregators": ["CoinGecko"], + "occurrences": 1 + }, + "0x58e3ee6accd124642ddb5d3f91928816be8d8ed3": { + "address": "0x58e3ee6accd124642ddb5d3f91928816be8d8ed3", + "symbol": "FRXUSD", + "decimals": 18, + "name": "Frax USD", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/143/0x58e3ee6accd124642ddb5d3f91928816be8d8ed3.png", + "aggregators": ["LiFi"], + "occurrences": 1 + }, + "0x3b4cf37a3335f21c945a40088404c715525fcb29": { + "address": "0x3b4cf37a3335f21c945a40088404c715525fcb29", + "symbol": "SFRXETH", + "decimals": 18, + "name": "Staked Frax Ether", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/143/0x3b4cf37a3335f21c945a40088404c715525fcb29.png", + "aggregators": ["LiFi"], + "occurrences": 1 + }, + "0x137643f7b2c189173867b3391f6629cab46f0f1a": { + "address": "0x137643f7b2c189173867b3391f6629cab46f0f1a", + "symbol": "SFRXUSD", + "decimals": 18, + "name": "Staked Frax USD", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/143/0x137643f7b2c189173867b3391f6629cab46f0f1a.png", + "aggregators": ["LiFi"], + "occurrences": 1 + }, + "0x09d4214c03d01f49544c0448dbe3a27f768f2b34": { + "address": "0x09d4214c03d01f49544c0448dbe3a27f768f2b34", + "symbol": "RUSD", + "decimals": 18, + "name": "Reservoir Stablecoin", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/143/0x09d4214c03d01f49544c0448dbe3a27f768f2b34.png", + "aggregators": ["LiFi"], + "occurrences": 1 + }, + "0x288f9d76019469bfeb56bb77d86afa2bf563b75b": { + "address": "0x288f9d76019469bfeb56bb77d86afa2bf563b75b", + "symbol": "FRXETH", + "decimals": 18, + "name": "Frax Ether", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/143/0x288f9d76019469bfeb56bb77d86afa2bf563b75b.png", + "aggregators": ["LiFi"], + "occurrences": 1 + }, + "0xd0fd2cf7f6ceff4f96b1161f5e995d5843326154": { + "address": "0xd0fd2cf7f6ceff4f96b1161f5e995d5843326154", + "symbol": "NWMON", + "decimals": 18, + "name": "Neverland Interest Bearing WMON", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/143/0xd0fd2cf7f6ceff4f96b1161f5e995d5843326154.png", + "aggregators": ["LiFi"], + "occurrences": 1 + }, + "0xbeeff443c3cba3e369da795002243beac311ab83": { + "address": "0xbeeff443c3cba3e369da795002243beac311ab83", + "symbol": "BBQUSDC", + "decimals": 18, + "name": "Steakhouse High Yield USDC", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/143/0xbeeff443c3cba3e369da795002243beac311ab83.png", + "aggregators": ["LiFi"], + "occurrences": 1 + }, + "0x38648958836ea88b368b4ac23b86ad44b0fe7508": { + "address": "0x38648958836ea88b368b4ac23b86ad44b0fe7508", + "symbol": "NUSDC", + "decimals": 6, + "name": "Neverland Interest Bearing USDC", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/143/0x38648958836ea88b368b4ac23b86ad44b0fe7508.png", + "aggregators": ["LiFi"], + "occurrences": 1 + }, + "0xc64d73bb8748c6fa7487ace2d0d945b6fbb2ecde": { + "address": "0xc64d73bb8748c6fa7487ace2d0d945b6fbb2ecde", + "symbol": "NSHMON", + "decimals": 18, + "name": "Neverland Interest Bearing SHMON", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/143/0xc64d73bb8748c6fa7487ace2d0d945b6fbb2ecde.png", + "aggregators": ["LiFi"], + "occurrences": 1 + }, + "0x7f81779736968836582d31d36274ed82053ad1ae": { + "address": "0x7f81779736968836582d31d36274ed82053ad1ae", + "symbol": "NGMON", + "decimals": 18, + "name": "Neverland Interest Bearing GMON", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/143/0x7f81779736968836582d31d36274ed82053ad1ae.png", + "aggregators": ["LiFi"], + "occurrences": 1 + }, + "0xdfc14d336aea9e49113b1356333fd374e646bf85": { + "address": "0xdfc14d336aea9e49113b1356333fd374e646bf85", + "symbol": "NSMON", + "decimals": 18, + "name": "Neverland Interest Bearing SMON", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/143/0xdfc14d336aea9e49113b1356333fd374e646bf85.png", + "aggregators": ["LiFi"], + "occurrences": 1 + }, + "0x1ed6703bd9dd1a82979100d21910f17b074c8293": { + "address": "0x1ed6703bd9dd1a82979100d21910f17b074c8293", + "symbol": "EWSTETH-3", + "decimals": 18, + "name": "EVK Vault ewstETH-3", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/143/0x1ed6703bd9dd1a82979100d21910f17b074c8293.png", + "aggregators": ["LiFi"], + "occurrences": 1 + }, + "0x225e145c65031d39c3d9c58bddaef47f8d9faec5": { + "address": "0x225e145c65031d39c3d9c58bddaef47f8d9faec5", + "symbol": "EUSDT0-7", + "decimals": 6, + "name": "EVK Vault eUSDT0-7", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/143/0x225e145c65031d39c3d9c58bddaef47f8d9faec5.png", + "aggregators": ["LiFi"], + "occurrences": 1 + }, + "0x850dafb683743076f65d62d95e36ec9d04fb4b23": { + "address": "0x850dafb683743076f65d62d95e36ec9d04fb4b23", + "symbol": "EWMON-9", + "decimals": 18, + "name": "EVK Vault eWMON-9", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/143/0x850dafb683743076f65d62d95e36ec9d04fb4b23.png", + "aggregators": ["LiFi"], + "occurrences": 1 + }, + "0x87760787d770bc9f039843fec7636f3b8dd12206": { + "address": "0x87760787d770bc9f039843fec7636f3b8dd12206", + "symbol": "EWMON-10", + "decimals": 18, + "name": "EVK Vault eWMON-10", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/143/0x87760787d770bc9f039843fec7636f3b8dd12206.png", + "aggregators": ["LiFi"], + "occurrences": 1 + }, + "0x88927d35e37286805f343dc449b750f431e70a20": { + "address": "0x88927d35e37286805f343dc449b750f431e70a20", + "symbol": "EWBTC-4", + "decimals": 8, + "name": "EVK Vault eWBTC-4", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/143/0x88927d35e37286805f343dc449b750f431e70a20.png", + "aggregators": ["LiFi"], + "occurrences": 1 + }, + "0x9190269f87bd30f0eb94dc3d6369b42a1a27eefa": { + "address": "0x9190269f87bd30f0eb94dc3d6369b42a1a27eefa", + "symbol": "EUSDT0-5", + "decimals": 6, + "name": "EVK Vault eUSDT0-5", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/143/0x9190269f87bd30f0eb94dc3d6369b42a1a27eefa.png", + "aggregators": ["LiFi"], + "occurrences": 1 + }, + "0xce67457a858da99bf19ff22d595cd60808f2e77d": { + "address": "0xce67457a858da99bf19ff22d595cd60808f2e77d", + "symbol": "EWMON-11", + "decimals": 18, + "name": "EVK Vault eWMON-11", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/143/0xce67457a858da99bf19ff22d595cd60808f2e77d.png", + "aggregators": ["LiFi"], + "occurrences": 1 + }, + "0xdb53e5c7578cfb52e72728c89ba895692e49aa45": { + "address": "0xdb53e5c7578cfb52e72728c89ba895692e49aa45", + "symbol": "ELBTC-4", + "decimals": 8, + "name": "EVK Vault eLBTC-4", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/143/0xdb53e5c7578cfb52e72728c89ba895692e49aa45.png", + "aggregators": ["LiFi"], + "occurrences": 1 + }, + "0xee3eaec5b3860ad40a767594f0990a74a32329e8": { + "address": "0xee3eaec5b3860ad40a767594f0990a74a32329e8", + "symbol": "EUSDT0-3", + "decimals": 6, + "name": "EVK Vault eUSDT0-3", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/143/0xee3eaec5b3860ad40a767594f0990a74a32329e8.png", + "aggregators": ["LiFi"], + "occurrences": 1 + }, + "0xb267cc10fa4c54db1fd5a6e9cafbb98c16cc9b97": { + "address": "0xb267cc10fa4c54db1fd5a6e9cafbb98c16cc9b97", + "symbol": "W0G", + "decimals": 18, + "name": "Wrapped 0G", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/143/0xb267cc10fa4c54db1fd5a6e9cafbb98c16cc9b97.png", + "aggregators": ["LiFi"], + "occurrences": 1 + }, + "0xe89d322b5822d828b8252d3087be8486cc2048ef": { + "address": "0xe89d322b5822d828b8252d3087be8486cc2048ef", + "symbol": "AMAUSD", + "decimals": 6, + "name": "Ample Monad AUSD", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/143/0xe89d322b5822d828b8252d3087be8486cc2048ef.png", + "aggregators": ["LiFi"], + "occurrences": 1 + }, + "0x32841a8511d5c2c5b253f45668780b99139e476d": { + "address": "0x32841a8511d5c2c5b253f45668780b99139e476d", + "symbol": "GROVE-BBQAUSD", + "decimals": 18, + "name": "Grove x Steakhouse High Yield AUSD", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/143/0x32841a8511d5c2c5b253f45668780b99139e476d.png", + "aggregators": ["LiFi"], + "occurrences": 1 + }, + "0x802c91d807a8daca257c4708ab264b6520964e44": { + "address": "0x802c91d807a8daca257c4708ab264b6520964e44", + "symbol": "BBQUSDC", + "decimals": 18, + "name": "Steakhouse High Yield USDC", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/143/0x802c91d807a8daca257c4708ab264b6520964e44.png", + "aggregators": ["LiFi"], + "occurrences": 1 + }, + "0x961a59fe249b9795fae7fa35f9e89629689d5278": { + "address": "0x961a59fe249b9795fae7fa35f9e89629689d5278", + "symbol": "BBQUSDT0", + "decimals": 18, + "name": "Steakhouse High Yield USDT0", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/143/0x961a59fe249b9795fae7fa35f9e89629689d5278.png", + "aggregators": ["LiFi"], + "occurrences": 1 + }, + "0xbc03e505ee65f9faa68a2d7e5a74452858c16d29": { + "address": "0xbc03e505ee65f9faa68a2d7e5a74452858c16d29", + "symbol": "BBQAUSD", + "decimals": 18, + "name": "Steakhouse High Yield AUSD", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/143/0xbc03e505ee65f9faa68a2d7e5a74452858c16d29.png", + "aggregators": ["LiFi"], + "occurrences": 1 + }, + "0x048e7f7857c5297cd7623244bbb4fae65936996a": { + "address": "0x048e7f7857c5297cd7623244bbb4fae65936996a", + "symbol": "EAUSD-9", + "decimals": 6, + "name": "EVK Vault eAUSD-9", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/143/0x048e7f7857c5297cd7623244bbb4fae65936996a.png", + "aggregators": ["LiFi"], + "occurrences": 1 + }, + "0x0709be7bb77b25e398ccfd518770c0bae31a38df": { + "address": "0x0709be7bb77b25e398ccfd518770c0bae31a38df", + "symbol": "EAUSD-8", + "decimals": 6, + "name": "EVK Vault eAUSD-8", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/143/0x0709be7bb77b25e398ccfd518770c0bae31a38df.png", + "aggregators": ["LiFi"], + "occurrences": 1 + }, + "0x091298d908a216cfca30729db2b194fe5f1d16be": { + "address": "0x091298d908a216cfca30729db2b194fe5f1d16be", + "symbol": "EXAUT0-4", + "decimals": 6, + "name": "EVK Vault eXAUt0-4", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/143/0x091298d908a216cfca30729db2b194fe5f1d16be.png", + "aggregators": ["LiFi"], + "occurrences": 1 + }, + "0x1874f82ac9ef2bd5603cc946cb6f3bcb9dd2d66f": { + "address": "0x1874f82ac9ef2bd5603cc946cb6f3bcb9dd2d66f", + "symbol": "ELBTC-2", + "decimals": 8, + "name": "EVK Vault eLBTC-2", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/143/0x1874f82ac9ef2bd5603cc946cb6f3bcb9dd2d66f.png", + "aggregators": ["LiFi"], + "occurrences": 1 + }, + "0x1e4d67c666c2ccf27a0af980fe6c8e0f05ac8949": { + "address": "0x1e4d67c666c2ccf27a0af980fe6c8e0f05ac8949", + "symbol": "EUSDC-5", + "decimals": 6, + "name": "EVK Vault eUSDC-5", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/143/0x1e4d67c666c2ccf27a0af980fe6c8e0f05ac8949.png", + "aggregators": ["LiFi"], + "occurrences": 1 + }, + "0x2178894927657fd5a464ce082e0b514ceb12720c": { + "address": "0x2178894927657fd5a464ce082e0b514ceb12720c", + "symbol": "EUSDT0-4", + "decimals": 6, + "name": "EVK Vault eUSDT0-4", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/143/0x2178894927657fd5a464ce082e0b514ceb12720c.png", + "aggregators": ["LiFi"], + "occurrences": 1 + }, + "0x234d354b39a4ca1274cb04972d3a9e03f1d8c4ff": { + "address": "0x234d354b39a4ca1274cb04972d3a9e03f1d8c4ff", + "symbol": "EXAUT0-2", + "decimals": 6, + "name": "EVK Vault eXAUt0-2", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/143/0x234d354b39a4ca1274cb04972d3a9e03f1d8c4ff.png", + "aggregators": ["LiFi"], + "occurrences": 1 + }, + "0x240fcaffff24aaa39e420b6f70ed5519847648b4": { + "address": "0x240fcaffff24aaa39e420b6f70ed5519847648b4", + "symbol": "EAUSD-3", + "decimals": 6, + "name": "EVK Vault eAUSD-3", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/143/0x240fcaffff24aaa39e420b6f70ed5519847648b4.png", + "aggregators": ["LiFi"], + "occurrences": 1 + }, + "0x289f801765b99b5e6263853859fe302dbecab6d6": { + "address": "0x289f801765b99b5e6263853859fe302dbecab6d6", + "symbol": "EUSDC-10", + "decimals": 6, + "name": "EVK Vault eUSDC-10", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/143/0x289f801765b99b5e6263853859fe302dbecab6d6.png", + "aggregators": ["LiFi"], + "occurrences": 1 + }, + "0x28bd4f19c812cbf9e33a206f87125f14e65dc8aa": { + "address": "0x28bd4f19c812cbf9e33a206f87125f14e65dc8aa", + "symbol": "EWMON-5", + "decimals": 18, + "name": "EVK Vault eWMON-5", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/143/0x28bd4f19c812cbf9e33a206f87125f14e65dc8aa.png", + "aggregators": ["LiFi"], + "occurrences": 1 + }, + "0x36d0f0a4cb615c200310ae2c5b5d345189d01197": { + "address": "0x36d0f0a4cb615c200310ae2c5b5d345189d01197", + "symbol": "EUSDC-8", + "decimals": 6, + "name": "EVK Vault eUSDC-8", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/143/0x36d0f0a4cb615c200310ae2c5b5d345189d01197.png", + "aggregators": ["LiFi"], + "occurrences": 1 + }, + "0x3bcc41c9510a4b601bfbfa6da8d933d50fd175e8": { + "address": "0x3bcc41c9510a4b601bfbfa6da8d933d50fd175e8", + "symbol": "ESHMON-3", + "decimals": 18, + "name": "EVK Vault eshMON-3", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/143/0x3bcc41c9510a4b601bfbfa6da8d933d50fd175e8.png", + "aggregators": ["LiFi"], + "occurrences": 1 + }, + "0x3fe40329061a40f95416da42bb69e15d8eb83740": { + "address": "0x3fe40329061a40f95416da42bb69e15d8eb83740", + "symbol": "EAUSD-7", + "decimals": 6, + "name": "EVK Vault eAUSD-7", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/143/0x3fe40329061a40f95416da42bb69e15d8eb83740.png", + "aggregators": ["LiFi"], + "occurrences": 1 + }, + "0x502e4a0b61deba3015eb9e51116b832003b22c2c": { + "address": "0x502e4a0b61deba3015eb9e51116b832003b22c2c", + "symbol": "EWETH-3", + "decimals": 18, + "name": "EVK Vault eWETH-3", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/143/0x502e4a0b61deba3015eb9e51116b832003b22c2c.png", + "aggregators": ["LiFi"], + "occurrences": 1 + }, + "0x50fe3eac875afbf5a121f2f792ffb7f9fb27629f": { + "address": "0x50fe3eac875afbf5a121f2f792ffb7f9fb27629f", + "symbol": "EUSDT0-8", + "decimals": 6, + "name": "EVK Vault eUSDT0-8", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/143/0x50fe3eac875afbf5a121f2f792ffb7f9fb27629f.png", + "aggregators": ["LiFi"], + "occurrences": 1 + }, + "0x52a59afaf5cb7cb09f94056fd631688d659a33b6": { + "address": "0x52a59afaf5cb7cb09f94056fd631688d659a33b6", + "symbol": "EWBTC-3", + "decimals": 8, + "name": "EVK Vault eWBTC-3", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/143/0x52a59afaf5cb7cb09f94056fd631688d659a33b6.png", + "aggregators": ["LiFi"], + "occurrences": 1 + }, + "0x5792753b66eb5213e416755546abbcc1aef1008a": { + "address": "0x5792753b66eb5213e416755546abbcc1aef1008a", + "symbol": "EUSDC-7", + "decimals": 6, + "name": "EVK Vault eUSDC-7", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/143/0x5792753b66eb5213e416755546abbcc1aef1008a.png", + "aggregators": ["LiFi"], + "occurrences": 1 + }, + "0x57c5dff5ddb1289c21cc752a05330a12e3542578": { + "address": "0x57c5dff5ddb1289c21cc752a05330a12e3542578", + "symbol": "EUSDT0-6", + "decimals": 6, + "name": "EVK Vault eUSDT0-6", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/143/0x57c5dff5ddb1289c21cc752a05330a12e3542578.png", + "aggregators": ["LiFi"], + "occurrences": 1 + }, + "0x5e1534af364de6f789b67dab52abdc154ab48757": { + "address": "0x5e1534af364de6f789b67dab52abdc154ab48757", + "symbol": "EWMON-4", + "decimals": 18, + "name": "EVK Vault eWMON-4", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/143/0x5e1534af364de6f789b67dab52abdc154ab48757.png", + "aggregators": ["LiFi"], + "occurrences": 1 + }, + "0x61788859b923989dfeb995b8de5cbbcd719475e9": { + "address": "0x61788859b923989dfeb995b8de5cbbcd719475e9", + "symbol": "EWSTETH-2", + "decimals": 18, + "name": "EVK Vault ewstETH-2", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/143/0x61788859b923989dfeb995b8de5cbbcd719475e9.png", + "aggregators": ["LiFi"], + "occurrences": 1 + }, + "0x6661a2b4008b70f22ff84c2134ac6f51534e162d": { + "address": "0x6661a2b4008b70f22ff84c2134ac6f51534e162d", + "symbol": "ESHMON-1", + "decimals": 18, + "name": "EVK Vault eshMON-1", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/143/0x6661a2b4008b70f22ff84c2134ac6f51534e162d.png", + "aggregators": ["LiFi"], + "occurrences": 1 + }, + "0x6e06ce28a6c28bffa274ead5cb715992033e351a": { + "address": "0x6e06ce28a6c28bffa274ead5cb715992033e351a", + "symbol": "EAUSD-6", + "decimals": 6, + "name": "EVK Vault eAUSD-6", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/143/0x6e06ce28a6c28bffa274ead5cb715992033e351a.png", + "aggregators": ["LiFi"], + "occurrences": 1 + }, + "0x7b4bcaeac5eb67ae947903f24bba660ee06a5231": { + "address": "0x7b4bcaeac5eb67ae947903f24bba660ee06a5231", + "symbol": "EWMON-6", + "decimals": 18, + "name": "EVK Vault eWMON-6", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/143/0x7b4bcaeac5eb67ae947903f24bba660ee06a5231.png", + "aggregators": ["LiFi"], + "occurrences": 1 + }, + "0x870e172c3c7ea274ce60fb8d19d86012edc3c043": { + "address": "0x870e172c3c7ea274ce60fb8d19d86012edc3c043", + "symbol": "EAUSD-4", + "decimals": 6, + "name": "EVK Vault eAUSD-4", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/143/0x870e172c3c7ea274ce60fb8d19d86012edc3c043.png", + "aggregators": ["LiFi"], + "occurrences": 1 + }, + "0x8c75a7177d64167e6ebc65a1d25d03cbf726fc46": { + "address": "0x8c75a7177d64167e6ebc65a1d25d03cbf726fc46", + "symbol": "EWETH-2", + "decimals": 18, + "name": "EVK Vault eWETH-2", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/143/0x8c75a7177d64167e6ebc65a1d25d03cbf726fc46.png", + "aggregators": ["LiFi"], + "occurrences": 1 + }, + "0x8f47d9d9d5a8202a5a37c4e41fbdd3146d88a579": { + "address": "0x8f47d9d9d5a8202a5a37c4e41fbdd3146d88a579", + "symbol": "EWBTC-2", + "decimals": 8, + "name": "EVK Vault eWBTC-2", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/143/0x8f47d9d9d5a8202a5a37c4e41fbdd3146d88a579.png", + "aggregators": ["LiFi"], + "occurrences": 1 + }, + "0x8f79f6ee218826d5144b917f901b147d4354bd74": { + "address": "0x8f79f6ee218826d5144b917f901b147d4354bd74", + "symbol": "EUSDT0-2", + "decimals": 6, + "name": "EVK Vault eUSDT0-2", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/143/0x8f79f6ee218826d5144b917f901b147d4354bd74.png", + "aggregators": ["LiFi"], + "occurrences": 1 + }, + "0x9020dbca5a8ccfab6116123e308204a44a5b93d4": { + "address": "0x9020dbca5a8ccfab6116123e308204a44a5b93d4", + "symbol": "EGMON-3", + "decimals": 18, + "name": "EVK Vault egMON-3", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/143/0x9020dbca5a8ccfab6116123e308204a44a5b93d4.png", + "aggregators": ["LiFi"], + "occurrences": 1 + }, + "0x9109529c3a2eb36de0ac3837baea74044863c60a": { + "address": "0x9109529c3a2eb36de0ac3837baea74044863c60a", + "symbol": "EWMON-8", + "decimals": 18, + "name": "EVK Vault eWMON-8", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/143/0x9109529c3a2eb36de0ac3837baea74044863c60a.png", + "aggregators": ["LiFi"], + "occurrences": 1 + }, + "0x94a169ad76f75e32b5e4e716a0cacfa28a619b66": { + "address": "0x94a169ad76f75e32b5e4e716a0cacfa28a619b66", + "symbol": "EWMON-3", + "decimals": 18, + "name": "EVK Vault eWMON-3", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/143/0x94a169ad76f75e32b5e4e716a0cacfa28a619b66.png", + "aggregators": ["LiFi"], + "occurrences": 1 + }, + "0x994d141557dc6abb13afd374ddc0224c0e7ef478": { + "address": "0x994d141557dc6abb13afd374ddc0224c0e7ef478", + "symbol": "ESMON-3", + "decimals": 18, + "name": "EVK Vault esMON-3", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/143/0x994d141557dc6abb13afd374ddc0224c0e7ef478.png", + "aggregators": ["LiFi"], + "occurrences": 1 + }, + "0x9ea1b948186f9a8cfe375278d96363103f4fa42b": { + "address": "0x9ea1b948186f9a8cfe375278d96363103f4fa42b", + "symbol": "EWMON-7", + "decimals": 18, + "name": "EVK Vault eWMON-7", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/143/0x9ea1b948186f9a8cfe375278d96363103f4fa42b.png", + "aggregators": ["LiFi"], + "occurrences": 1 + }, + "0xa8f093cfb04a536dbc6aa9bb94a2d617305a48f3": { + "address": "0xa8f093cfb04a536dbc6aa9bb94a2d617305a48f3", + "symbol": "ESMON-1", + "decimals": 18, + "name": "EVK Vault esMON-1", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/143/0xa8f093cfb04a536dbc6aa9bb94a2d617305a48f3.png", + "aggregators": ["LiFi"], + "occurrences": 1 + }, + "0xb181030ff0767c24d83c65527bd42146486f415e": { + "address": "0xb181030ff0767c24d83c65527bd42146486f415e", + "symbol": "EGMON-2", + "decimals": 18, + "name": "EVK Vault egMON-2", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/143/0xb181030ff0767c24d83c65527bd42146486f415e.png", + "aggregators": ["LiFi"], + "occurrences": 1 + }, + "0xb6a4db1fef7831f65827d9af2cb1e69f764ec123": { + "address": "0xb6a4db1fef7831f65827d9af2cb1e69f764ec123", + "symbol": "ESHMON-2", + "decimals": 18, + "name": "EVK Vault eshMON-2", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/143/0xb6a4db1fef7831f65827d9af2cb1e69f764ec123.png", + "aggregators": ["LiFi"], + "occurrences": 1 + }, + "0xb72e0659417bbb1ea55869ab2f81cb41e751938f": { + "address": "0xb72e0659417bbb1ea55869ab2f81cb41e751938f", + "symbol": "EWSTETH-1", + "decimals": 18, + "name": "EVK Vault ewstETH-1", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/143/0xb72e0659417bbb1ea55869ab2f81cb41e751938f.png", + "aggregators": ["LiFi"], + "occurrences": 1 + }, + "0xbc5fd2ca51b0bca8882246833b2ea8627a79bc59": { + "address": "0xbc5fd2ca51b0bca8882246833b2ea8627a79bc59", + "symbol": "ELBTC-3", + "decimals": 8, + "name": "EVK Vault eLBTC-3", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/143/0xbc5fd2ca51b0bca8882246833b2ea8627a79bc59.png", + "aggregators": ["LiFi"], + "occurrences": 1 + }, + "0xd2f35c39a7187bbf55c0b05c52808d7a18ed62ca": { + "address": "0xd2f35c39a7187bbf55c0b05c52808d7a18ed62ca", + "symbol": "EGMON-1", + "decimals": 18, + "name": "EVK Vault egMON-1", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/143/0xd2f35c39a7187bbf55c0b05c52808d7a18ed62ca.png", + "aggregators": ["LiFi"], + "occurrences": 1 + }, + "0xd505cce10571c1d07dd40d2d9001bef22cdf0d71": { + "address": "0xd505cce10571c1d07dd40d2d9001bef22cdf0d71", + "symbol": "EXAUT0-3", + "decimals": 6, + "name": "EVK Vault eXAUt0-3", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/143/0xd505cce10571c1d07dd40d2d9001bef22cdf0d71.png", + "aggregators": ["LiFi"], + "occurrences": 1 + }, + "0xd5ff5152edbd0d921bbff5eef84dda95c6c5a108": { + "address": "0xd5ff5152edbd0d921bbff5eef84dda95c6c5a108", + "symbol": "EAUSD-5", + "decimals": 6, + "name": "EVK Vault eAUSD-5", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/143/0xd5ff5152edbd0d921bbff5eef84dda95c6c5a108.png", + "aggregators": ["LiFi"], + "occurrences": 1 + }, + "0xddffd6801a86b598077addda04f70af08b6f8807": { + "address": "0xddffd6801a86b598077addda04f70af08b6f8807", + "symbol": "ESMON-2", + "decimals": 18, + "name": "EVK Vault esMON-2", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/143/0xddffd6801a86b598077addda04f70af08b6f8807.png", + "aggregators": ["LiFi"], + "occurrences": 1 + }, + "0xf048977215c8efd805f2d48b1d45304742d6ab58": { + "address": "0xf048977215c8efd805f2d48b1d45304742d6ab58", + "symbol": "EWETH-4", + "decimals": 18, + "name": "EVK Vault eWETH-4", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/143/0xf048977215c8efd805f2d48b1d45304742d6ab58.png", + "aggregators": ["LiFi"], + "occurrences": 1 + }, + "0xf19e8ddc541dee2f4d6796a79b1c1e10a415a0da": { + "address": "0xf19e8ddc541dee2f4d6796a79b1c1e10a415a0da", + "symbol": "EUSDC-4", + "decimals": 6, + "name": "EVK Vault eUSDC-4", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/143/0xf19e8ddc541dee2f4d6796a79b1c1e10a415a0da.png", + "aggregators": ["LiFi"], + "occurrences": 1 + }, + "0xf2acb868eaf64ef36bc0d3b4ba93af00fc3167cf": { + "address": "0xf2acb868eaf64ef36bc0d3b4ba93af00fc3167cf", + "symbol": "EUSDC-6", + "decimals": 6, + "name": "EVK Vault eUSDC-6", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/143/0xf2acb868eaf64ef36bc0d3b4ba93af00fc3167cf.png", + "aggregators": ["LiFi"], + "occurrences": 1 + }, + "0xf62c7cd4f71434f7c4d12a1142133d4ed4abaec4": { + "address": "0xf62c7cd4f71434f7c4d12a1142133d4ed4abaec4", + "symbol": "EUSDC-9", + "decimals": 6, + "name": "EVK Vault eUSDC-9", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/143/0xf62c7cd4f71434f7c4d12a1142133d4ed4abaec4.png", + "aggregators": ["LiFi"], + "occurrences": 1 + }, + "0x31f63ae5a96566b93477191778606bebdc4ca66f": { + "address": "0x31f63ae5a96566b93477191778606bebdc4ca66f", + "symbol": "NWETH", + "decimals": 18, + "name": "Neverland Interest Bearing WETH", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/143/0x31f63ae5a96566b93477191778606bebdc4ca66f.png", + "aggregators": ["LiFi"], + "occurrences": 1 + }, + "0x34c43684293963c546b0ab6841008a4d3393b9ab": { + "address": "0x34c43684293963c546b0ab6841008a4d3393b9ab", + "symbol": "NWBTC", + "decimals": 8, + "name": "Neverland Interest Bearing WBTC", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/143/0x34c43684293963c546b0ab6841008a4d3393b9ab.png", + "aggregators": ["LiFi"], + "occurrences": 1 + }, + "0x39f901c32b2e0d25ae8deaa1ee115c748f8f6bdf": { + "address": "0x39f901c32b2e0d25ae8deaa1ee115c748f8f6bdf", + "symbol": "NUSDT0", + "decimals": 6, + "name": "Neverland Interest Bearing USDT0", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/143/0x39f901c32b2e0d25ae8deaa1ee115c748f8f6bdf.png", + "aggregators": ["LiFi"], + "occurrences": 1 + }, + "0x784999fc2dd132a41d1cc0f1ae9805854bad1f2d": { + "address": "0x784999fc2dd132a41d1cc0f1ae9805854bad1f2d", + "symbol": "NAUSD", + "decimals": 6, + "name": "Neverland Interest Bearing AUSD", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/143/0x784999fc2dd132a41d1cc0f1ae9805854bad1f2d.png", + "aggregators": ["LiFi"], + "occurrences": 1 + }, + "0xacaaa891b30e13d024ab67b6eca9c2ecbd8cf52b": { + "address": "0xacaaa891b30e13d024ab67b6eca9c2ecbd8cf52b", + "symbol": "NEARNAUSD", + "decimals": 6, + "name": "Neverland Interest Bearing EARNAUSD", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/143/0xacaaa891b30e13d024ab67b6eca9c2ecbd8cf52b.png", + "aggregators": ["LiFi"], + "occurrences": 1 + }, + "0x293e2f01a38fe690eb8e570ab952b24b225113a7": { + "address": "0x293e2f01a38fe690eb8e570ab952b24b225113a7", + "symbol": "NLOAZND", + "decimals": 18, + "name": "Neverland Interest Bearing LOAZND", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/143/0x293e2f01a38fe690eb8e570ab952b24b225113a7.png", + "aggregators": ["LiFi"], + "occurrences": 1 + }, + "0xa8665084d8cd6276c00ca97cbc0bf4bc9ae94c79": { + "address": "0xa8665084d8cd6276c00ca97cbc0bf4bc9ae94c79", + "symbol": "HYPERUSDCD", + "decimals": 18, + "name": "Hyperithm USDC Degen", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/143/0xa8665084d8cd6276c00ca97cbc0bf4bc9ae94c79.png", + "aggregators": ["LiFi"], + "occurrences": 1 + }, + "0xba8424ebbed6c51bea6d6d903b8815838e6a0322": { + "address": "0xba8424ebbed6c51bea6d6d903b8815838e6a0322", + "symbol": "STEAKETH", + "decimals": 18, + "name": "Steakhouse Prime ETH", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/143/0xba8424ebbed6c51bea6d6d903b8815838e6a0322.png", + "aggregators": ["LiFi"], + "occurrences": 1 + }, + "0x78999cc96d2ba0341588c60ccb0e91c6c33cf371": { + "address": "0x78999cc96d2ba0341588c60ccb0e91c6c33cf371", + "symbol": "HYPERUSDCD", + "decimals": 18, + "name": "Hyperithm USDC Degen", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/143/0x78999cc96d2ba0341588c60ccb0e91c6c33cf371.png", + "aggregators": ["LiFi"], + "occurrences": 1 + }, + "0xbeef04b01e0275d4ac2e2986256bb14e3ff6ef42": { + "address": "0xbeef04b01e0275d4ac2e2986256bb14e3ff6ef42", + "symbol": "STEAKETH", + "decimals": 18, + "name": "Steakhouse Prime ETH", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/143/0xbeef04b01e0275d4ac2e2986256bb14e3ff6ef42.png", + "aggregators": ["LiFi"], + "occurrences": 1 + }, + "0xbeeff300e9a9caec7beea740ab8758d33b777509": { + "address": "0xbeeff300e9a9caec7beea740ab8758d33b777509", + "symbol": "BBQUSDT0", + "decimals": 18, + "name": "Steakhouse High Yield USDT0", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/143/0xbeeff300e9a9caec7beea740ab8758d33b777509.png", + "aggregators": ["LiFi"], + "occurrences": 1 + }, + "0xbeeffea75cfc4128ebe10c8d7ae22016d215060d": { + "address": "0xbeeffea75cfc4128ebe10c8d7ae22016d215060d", + "symbol": "BBQAUSD", + "decimals": 18, + "name": "Steakhouse High Yield AUSD", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/143/0xbeeffea75cfc4128ebe10c8d7ae22016d215060d.png", + "aggregators": ["LiFi"], + "occurrences": 1 + }, + "0xc402b0cacc0c684427daa40d964c8ae6fdbb96f7": { + "address": "0xc402b0cacc0c684427daa40d964c8ae6fdbb96f7", + "symbol": "HYPERCBBTCD", + "decimals": 18, + "name": "Hyperithm cbBTC Degen", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/143/0xc402b0cacc0c684427daa40d964c8ae6fdbb96f7.png", + "aggregators": ["LiFi"], + "occurrences": 1 + }, + "0xe09a93786275546690247d70f1767cf0b69e8ea0": { + "address": "0xe09a93786275546690247d70f1767cf0b69e8ea0", + "symbol": "HYPERCBBTCD", + "decimals": 18, + "name": "Hyperithm cbBTC Degen", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/143/0xe09a93786275546690247d70f1767cf0b69e8ea0.png", + "aggregators": ["LiFi"], + "occurrences": 1 + }, + "0x4f28cc08305e8585f8dd2a329ba41e77a9a54f97": { + "address": "0x4f28cc08305e8585f8dd2a329ba41e77a9a54f97", + "symbol": "BBQETH", + "decimals": 18, + "name": "Steakhouse High Yield ETH", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/143/0x4f28cc08305e8585f8dd2a329ba41e77a9a54f97.png", + "aggregators": ["LiFi"], + "occurrences": 1 + }, + "0xbeeff96d65cb80a0029dc9d3c4d7306c3c3a6253": { + "address": "0xbeeff96d65cb80a0029dc9d3c4d7306c3c3a6253", + "symbol": "BBQETH", + "decimals": 18, + "name": "Steakhouse High Yield ETH", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/143/0xbeeff96d65cb80a0029dc9d3c4d7306c3c3a6253.png", + "aggregators": ["LiFi"], + "occurrences": 1 + }, + "0x0f6f5a8272a4da23e458aabcbce6382c5cdc6b77": { + "address": "0x0f6f5a8272a4da23e458aabcbce6382c5cdc6b77", + "symbol": "BBQCBBTC", + "decimals": 18, + "name": "Steakhouse High Yield cbBTC", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/143/0x0f6f5a8272a4da23e458aabcbce6382c5cdc6b77.png", + "aggregators": ["LiFi"], + "occurrences": 1 + }, + "0xbeeff421948cde29644a63fba4ef5e5a621075d0": { + "address": "0xbeeff421948cde29644a63fba4ef5e5a621075d0", + "symbol": "BBQCBBTC", + "decimals": 18, + "name": "Steakhouse High Yield cbBTC", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/143/0xbeeff421948cde29644a63fba4ef5e5a621075d0.png", + "aggregators": ["LiFi"], + "occurrences": 1 + }, + "0x21649703fe63265058e9f22582552561af4afa3f": { + "address": "0x21649703fe63265058e9f22582552561af4afa3f", + "symbol": "AUGUSTUSDC", + "decimals": 18, + "name": "August USDC", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/143/0x21649703fe63265058e9f22582552561af4afa3f.png", + "aggregators": ["LiFi"], + "occurrences": 1 + }, + "0x80017bf0f793ebbe9679cd61ff0e395b62cabb59": { + "address": "0x80017bf0f793ebbe9679cd61ff0e395b62cabb59", + "symbol": "AUGUSTUSDCV2", + "decimals": 18, + "name": "August USDC V2", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/143/0x80017bf0f793ebbe9679cd61ff0e395b62cabb59.png", + "aggregators": ["LiFi"], + "occurrences": 1 + }, + "0x8699bfe5c6d74df561555bc708dacf165d8e0d73": { + "address": "0x8699bfe5c6d74df561555bc708dacf165d8e0d73", + "symbol": "BBQUSD1", + "decimals": 18, + "name": "Steakhouse High Yield USD1", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/143/0x8699bfe5c6d74df561555bc708dacf165d8e0d73.png", + "aggregators": ["LiFi"], + "occurrences": 1 + }, + "0xbeeffb65df79baac701307c9605b7ab207355fdb": { + "address": "0xbeeffb65df79baac701307c9605b7ab207355fdb", + "symbol": "BBQUSD1", + "decimals": 18, + "name": "Steakhouse High Yield USD1", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/143/0xbeeffb65df79baac701307c9605b7ab207355fdb.png", + "aggregators": ["LiFi"], + "occurrences": 1 + }, + "0x144290085da25e3078425c6f4a477fd8cab0c43e": { + "address": "0x144290085da25e3078425c6f4a477fd8cab0c43e", + "symbol": "EFXRP-1", + "decimals": 6, + "name": "EVK Vault eFXRP-1", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/143/0x144290085da25e3078425c6f4a477fd8cab0c43e.png", + "aggregators": ["LiFi"], + "occurrences": 1 + }, + "0x1475d3da9ca6a3aa14f76b7f5e9da0d0bcf1b2f9": { + "address": "0x1475d3da9ca6a3aa14f76b7f5e9da0d0bcf1b2f9", + "symbol": "EAUSD-12", + "decimals": 6, + "name": "EVK Vault eAUSD-12", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/143/0x1475d3da9ca6a3aa14f76b7f5e9da0d0bcf1b2f9.png", + "aggregators": ["LiFi"], + "occurrences": 1 + }, + "0x1905eddf5943ef6c92ccf1469bd40fc2cb4a77b0": { + "address": "0x1905eddf5943ef6c92ccf1469bd40fc2cb4a77b0", + "symbol": "EUSDC-12", + "decimals": 6, + "name": "EVK Vault eUSDC-12", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/143/0x1905eddf5943ef6c92ccf1469bd40fc2cb4a77b0.png", + "aggregators": ["LiFi"], + "occurrences": 1 + }, + "0x2f13d29b4eff12fc5e6b2560ed5183354c38a82f": { + "address": "0x2f13d29b4eff12fc5e6b2560ed5183354c38a82f", + "symbol": "EUSDT0-9", + "decimals": 6, + "name": "EVK Vault eUSDT0-9", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/143/0x2f13d29b4eff12fc5e6b2560ed5183354c38a82f.png", + "aggregators": ["LiFi"], + "occurrences": 1 + }, + "0xecef08a3cd83054e8ff6d8cb9ce41a36b81e8d7e": { + "address": "0xecef08a3cd83054e8ff6d8cb9ce41a36b81e8d7e", + "symbol": "UYCBBTC", + "decimals": 18, + "name": "UltraYield cbBTC", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/143/0xecef08a3cd83054e8ff6d8cb9ce41a36b81e8d7e.png", + "aggregators": ["LiFi"], + "occurrences": 1 + }, + "0x0ed3615ff949c8a34d15441970900e849a3409fc": { + "address": "0x0ed3615ff949c8a34d15441970900e849a3409fc", + "symbol": "URRWA", + "decimals": 18, + "name": "Unified Labs USDC RWA", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/143/0x0ed3615ff949c8a34d15441970900e849a3409fc.png", + "aggregators": ["LiFi"], + "occurrences": 1 + }, + "0xa16148c6ac9ede0d82f0c52899e22a575284f131": { + "address": "0xa16148c6ac9ede0d82f0c52899e22a575284f131", + "symbol": "USDC.AXL", + "decimals": 6, + "name": "USDC (Axelar)", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/143/0xa16148c6ac9ede0d82f0c52899e22a575284f131.png", + "aggregators": ["Squid"], + "occurrences": 1 + }, + "0xf8eb4ed0d4cf2bb707c0272f8c6827deb6e4c0a9": { + "address": "0xf8eb4ed0d4cf2bb707c0272f8c6827deb6e4c0a9", + "symbol": "WBTC", + "decimals": 8, + "name": "Wrapped BTC", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/143/0xf8eb4ed0d4cf2bb707c0272f8c6827deb6e4c0a9.png", + "aggregators": ["Squid"], + "occurrences": 1 + }, + "0x99ae2dc76c43979e3bcc0ae8d69f1fca077c8888": { + "address": "0x99ae2dc76c43979e3bcc0ae8d69f1fca077c8888", + "symbol": "ANAGO", + "decimals": 18, + "name": "Anago", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/143/0x99ae2dc76c43979e3bcc0ae8d69f1fca077c8888.png", + "aggregators": ["Squid"], + "occurrences": 1 + }, + "0x788571e0e5067adea87e6ba22a2b738ffdf48888": { + "address": "0x788571e0e5067adea87e6ba22a2b738ffdf48888", + "symbol": "UNIT", + "decimals": 18, + "name": "UNIT", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/143/0x788571e0e5067adea87e6ba22a2b738ffdf48888.png", + "aggregators": ["Squid"], + "occurrences": 1 + }, + "0xd0f0a3cfb7f8b90b6aa91989110fea5f77607655": { + "address": "0xd0f0a3cfb7f8b90b6aa91989110fea5f77607655", + "symbol": "BEING", + "decimals": 18, + "name": "being", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/143/0xd0f0a3cfb7f8b90b6aa91989110fea5f77607655.png", + "aggregators": ["Squid"], + "occurrences": 1 + } + }, + "timestamp": 1779126362441 + }, + "0xa": { + "data": { + "0x8700daec35af8ff88c16bdf0418774cb3d7599b4": { + "address": "0x8700daec35af8ff88c16bdf0418774cb3d7599b4", + "symbol": "SNX", + "decimals": 18, + "name": "Synthetix Network", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/10/0x8700daec35af8ff88c16bdf0418774cb3d7599b4.png", + "aggregators": [ + "Uniswap", + "1inch", + "LiFi", + "TrustWallet", + "Socket", + "Rubic", + "Squid", + "Rango", + "Sonarwatch", + "SushiSwap" + ], + "occurrences": 10 + }, + "0x0994206dfe8de6ec6920ff4d779b0d950605fb53": { + "address": "0x0994206dfe8de6ec6920ff4d779b0d950605fb53", + "symbol": "CRV", + "decimals": 18, + "name": "Curve DAO Token", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/10/0x0994206dfe8de6ec6920ff4d779b0d950605fb53.png", + "aggregators": [ + "Uniswap", + "1inch", + "LiFi", + "Socket", + "Rubic", + "Squid", + "Rango", + "Sonarwatch", + "SushiSwap" + ], + "occurrences": 9 + }, + "0xda10009cbd5d07dd0cecc66161fc93d7c9000da1": { + "address": "0xda10009cbd5d07dd0cecc66161fc93d7c9000da1", + "symbol": "DAI", + "decimals": 18, + "name": "Dai Stablecoin", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/10/0xda10009cbd5d07dd0cecc66161fc93d7c9000da1.png", + "aggregators": [ + "Uniswap", + "1inch", + "LiFi", + "Socket", + "Rubic", + "Squid", + "Rango", + "Sonarwatch", + "SushiSwap" + ], + "occurrences": 9 + }, + "0x4200000000000000000000000000000000000042": { + "address": "0x4200000000000000000000000000000000000042", + "symbol": "OP", + "decimals": 18, + "name": "Optimism", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/10/0x4200000000000000000000000000000000000042.png", + "aggregators": [ + "Uniswap", + "1inch", + "LiFi", + "Socket", + "Rubic", + "Squid", + "Rango", + "Sonarwatch", + "SushiSwap" + ], + "occurrences": 9 + }, + "0x8c6f28f2f1a3c87f0f938b96d27520d9751ec8d9": { + "address": "0x8c6f28f2f1a3c87f0f938b96d27520d9751ec8d9", + "symbol": "SUSD", + "decimals": 18, + "name": "Synth sUSD", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/10/0x8c6f28f2f1a3c87f0f938b96d27520d9751ec8d9.png", + "aggregators": [ + "Uniswap", + "1inch", + "LiFi", + "Socket", + "Rubic", + "Squid", + "Rango", + "Sonarwatch", + "SushiSwap" + ], + "occurrences": 9 + }, + "0x94b008aa00579c1307b0ef2c499ad98a8ce58e58": { + "address": "0x94b008aa00579c1307b0ef2c499ad98a8ce58e58", + "symbol": "USDT", + "decimals": 6, + "name": "Tether USD", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/10/0x94b008aa00579c1307b0ef2c499ad98a8ce58e58.png", + "aggregators": [ + "Uniswap", + "1inch", + "LiFi", + "Socket", + "Rubic", + "Squid", + "Rango", + "Sonarwatch", + "SushiSwap" + ], + "occurrences": 9 + }, + "0x68f180fcce6836688e9084f035309e29bf0a2095": { + "address": "0x68f180fcce6836688e9084f035309e29bf0a2095", + "symbol": "WBTC", + "decimals": 8, + "name": "Wrapped BTC", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/10/0x68f180fcce6836688e9084f035309e29bf0a2095.png", + "aggregators": [ + "Uniswap", + "1inch", + "LiFi", + "Socket", + "Rubic", + "Squid", + "Rango", + "Sonarwatch", + "SushiSwap" + ], + "occurrences": 9 + }, + "0x1f32b1c2345538c0c6f582fcb022739c4a194ebb": { + "address": "0x1f32b1c2345538c0c6f582fcb022739c4a194ebb", + "symbol": "WSTETH", + "decimals": 18, + "name": "Wrapped liquid staked Ether 2.0", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/10/0x1f32b1c2345538c0c6f582fcb022739c4a194ebb.png", + "aggregators": [ + "Uniswap", + "1inch", + "LiFi", + "Socket", + "Rubic", + "Squid", + "Rango", + "Sonarwatch", + "SushiSwap" + ], + "occurrences": 9 + }, + "0x350a791bfc2c21f9ed5d10980dad2e2638ffa7f6": { + "address": "0x350a791bfc2c21f9ed5d10980dad2e2638ffa7f6", + "symbol": "LINK", + "decimals": 18, + "name": "ChainLink", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/10/0x350a791bfc2c21f9ed5d10980dad2e2638ffa7f6.png", + "aggregators": [ + "Uniswap", + "1inch", + "LiFi", + "TrustWallet", + "Socket", + "Rubic", + "Squid", + "Rango", + "Sonarwatch", + "SushiSwap" + ], + "occurrences": 10 + }, + "0x4200000000000000000000000000000000000006": { + "address": "0x4200000000000000000000000000000000000006", + "symbol": "WETH", + "decimals": 18, + "name": "Wrapped Ether", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/10/0x4200000000000000000000000000000000000006.png", + "aggregators": [ + "Uniswap", + "1inch", + "LiFi", + "TrustWallet", + "Socket", + "Rubic", + "Squid", + "Rango", + "Sonarwatch", + "SushiSwap" + ], + "occurrences": 10 + }, + "0x76fb31fb4af56892a25e32cfc43de717950c9278": { + "address": "0x76fb31fb4af56892a25e32cfc43de717950c9278", + "symbol": "AAVE", + "decimals": 18, + "name": "Aave Token", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/10/0x76fb31fb4af56892a25e32cfc43de717950c9278.png", + "aggregators": [ + "Uniswap", + "1inch", + "LiFi", + "Socket", + "Rubic", + "Squid", + "Rango", + "Sonarwatch", + "SushiSwap" + ], + "occurrences": 9 + }, + "0x9e1028f5f1d5ede59748ffcee5532509976840e0": { + "address": "0x9e1028f5f1d5ede59748ffcee5532509976840e0", + "symbol": "PERP", + "decimals": 18, + "name": "Perpetual", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/10/0x9e1028f5f1d5ede59748ffcee5532509976840e0.png", + "aggregators": [ + "Uniswap", + "1inch", + "LiFi", + "TrustWallet", + "Socket", + "Rubic", + "Squid", + "Rango", + "SushiSwap" + ], + "occurrences": 9 + }, + "0x217d47011b23bb961eb6d93ca9945b7501a5bb11": { + "address": "0x217d47011b23bb961eb6d93ca9945b7501a5bb11", + "symbol": "THALES", + "decimals": 18, + "name": "Optimistic Thales Token", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/10/0x217d47011b23bb961eb6d93ca9945b7501a5bb11.png", + "aggregators": [ + "Uniswap", + "1inch", + "LiFi", + "Socket", + "Rubic", + "Squid", + "Rango", + "Sonarwatch", + "SushiSwap" + ], + "occurrences": 9 + }, + "0x8ae125e8653821e851f12a49f7765db9a9ce7384": { + "address": "0x8ae125e8653821e851f12a49f7765db9a9ce7384", + "symbol": "DOLA", + "decimals": 18, + "name": "Dola USD Stablecoin", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/10/0x8ae125e8653821e851f12a49f7765db9a9ce7384.png", + "aggregators": [ + "Uniswap", + "1inch", + "LiFi", + "Socket", + "Rubic", + "Squid", + "Rango", + "Sonarwatch", + "SushiSwap" + ], + "occurrences": 9 + }, + "0x9bcef72be871e61ed4fbbc7630889bee758eb81d": { + "address": "0x9bcef72be871e61ed4fbbc7630889bee758eb81d", + "symbol": "RETH", + "decimals": 18, + "name": "Rocket Pool ETH", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/10/0x9bcef72be871e61ed4fbbc7630889bee758eb81d.png", + "aggregators": [ + "Uniswap", + "1inch", + "LiFi", + "Socket", + "Rubic", + "Squid", + "Rango", + "Sonarwatch", + "SushiSwap" + ], + "occurrences": 9 + }, + "0x2e3d870790dc77a83dd1d18184acc7439a53f475": { + "address": "0x2e3d870790dc77a83dd1d18184acc7439a53f475", + "symbol": "FRAX", + "decimals": 18, + "name": "Frax", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/10/0x2e3d870790dc77a83dd1d18184acc7439a53f475.png", + "aggregators": [ + "Uniswap", + "1inch", + "LiFi", + "Socket", + "Rubic", + "Squid", + "Rango", + "SushiSwap" + ], + "occurrences": 8 + }, + "0xc40f949f8a4e094d1b49a23ea9241d289b7b2819": { + "address": "0xc40f949f8a4e094d1b49a23ea9241d289b7b2819", + "symbol": "LUSD", + "decimals": 18, + "name": "LUSD Stablecoin", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/10/0xc40f949f8a4e094d1b49a23ea9241d289b7b2819.png", + "aggregators": [ + "Uniswap", + "LiFi", + "Socket", + "Rubic", + "Squid", + "Rango", + "Sonarwatch", + "SushiSwap" + ], + "occurrences": 8 + }, + "0x0b2c639c533813f4aa9d7837caf62653d097ff85": { + "address": "0x0b2c639c533813f4aa9d7837caf62653d097ff85", + "symbol": "USDC", + "decimals": 6, + "name": "USD Coin", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/10/0x0b2c639c533813f4aa9d7837caf62653d097ff85.png", + "aggregators": [ + "Uniswap", + "1inch", + "LiFi", + "Socket", + "Rubic", + "Squid", + "Rango", + "SushiSwap" + ], + "occurrences": 8 + }, + "0xf98dcd95217e15e05d8638da4c91125e59590b07": { + "address": "0xf98dcd95217e15e05d8638da4c91125e59590b07", + "symbol": "KROM", + "decimals": 18, + "name": "Kromatika", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/10/0xf98dcd95217e15e05d8638da4c91125e59590b07.png", + "aggregators": [ + "Uniswap", + "1inch", + "LiFi", + "TrustWallet", + "Socket", + "Rubic", + "Squid", + "Rango", + "Sonarwatch", + "SushiSwap" + ], + "occurrences": 10 + }, + "0x61baadcf22d2565b0f471b291c475db5555e0b76": { + "address": "0x61baadcf22d2565b0f471b291c475db5555e0b76", + "symbol": "AELIN", + "decimals": 18, + "name": "Aelin Token", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/10/0x61baadcf22d2565b0f471b291c475db5555e0b76.png", + "aggregators": [ + "Uniswap", + "1inch", + "LiFi", + "TrustWallet", + "Rubic", + "Squid", + "Rango", + "Sonarwatch", + "SushiSwap" + ], + "occurrences": 9 + }, + "0xb0b195aefa3650a6908f15cdac7d92f8a5791b0b": { + "address": "0xb0b195aefa3650a6908f15cdac7d92f8a5791b0b", + "symbol": "BOB", + "decimals": 18, + "name": "BOB", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/10/0xb0b195aefa3650a6908f15cdac7d92f8a5791b0b.png", + "aggregators": [ + "Uniswap", + "1inch", + "LiFi", + "Socket", + "Rubic", + "Squid", + "Rango", + "Sonarwatch", + "SushiSwap" + ], + "occurrences": 9 + }, + "0xfdb794692724153d1488ccdbe0c56c252596735f": { + "address": "0xfdb794692724153d1488ccdbe0c56c252596735f", + "symbol": "LDO", + "decimals": 18, + "name": "Lido DAO Token", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/10/0xfdb794692724153d1488ccdbe0c56c252596735f.png", + "aggregators": [ + "Uniswap", + "LiFi", + "Socket", + "Rubic", + "Squid", + "Rango", + "Sonarwatch", + "SushiSwap" + ], + "occurrences": 8 + }, + "0x7fb688ccf682d58f86d7e38e03f9d22e7705448b": { + "address": "0x7fb688ccf682d58f86d7e38e03f9d22e7705448b", + "symbol": "RAI", + "decimals": 18, + "name": "Rai Reflex Index", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/10/0x7fb688ccf682d58f86d7e38e03f9d22e7705448b.png", + "aggregators": [ + "Uniswap", + "1inch", + "LiFi", + "Socket", + "Rubic", + "Rango", + "Sonarwatch", + "SushiSwap" + ], + "occurrences": 8 + }, + "0xe405de8f52ba7559f9df3c368500b6e6ae6cee49": { + "address": "0xe405de8f52ba7559f9df3c368500b6e6ae6cee49", + "symbol": "SETH", + "decimals": 18, + "name": "Synthetic Ether", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/10/0xe405de8f52ba7559f9df3c368500b6e6ae6cee49.png", + "aggregators": [ + "Uniswap", + "1inch", + "LiFi", + "Socket", + "Rubic", + "Rango", + "Sonarwatch", + "SushiSwap" + ], + "occurrences": 8 + }, + "0xbfd291da8a403daaf7e5e9dc1ec0aceacd4848b9": { + "address": "0xbfd291da8a403daaf7e5e9dc1ec0aceacd4848b9", + "symbol": "USX", + "decimals": 18, + "name": "dForce USD", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/10/0xbfd291da8a403daaf7e5e9dc1ec0aceacd4848b9.png", + "aggregators": [ + "Uniswap", + "LiFi", + "Socket", + "Rubic", + "Squid", + "Rango", + "Sonarwatch", + "SushiSwap" + ], + "occurrences": 8 + }, + "0xa00e3a3511aac35ca78530c85007afcd31753819": { + "address": "0xa00e3a3511aac35ca78530c85007afcd31753819", + "symbol": "KNC", + "decimals": 18, + "name": "Kyber Network Crystal v2", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/10/0xa00e3a3511aac35ca78530c85007afcd31753819.png", + "aggregators": [ + "Uniswap", + "LiFi", + "Socket", + "Rubic", + "Squid", + "Rango", + "Sonarwatch", + "SushiSwap" + ], + "occurrences": 8 + }, + "0xaf9fe3b5ccdae78188b1f8b9a49da7ae9510f151": { + "address": "0xaf9fe3b5ccdae78188b1f8b9a49da7ae9510f151", + "symbol": "DHT", + "decimals": 18, + "name": "dHEDGE DAO Token", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/10/0xaf9fe3b5ccdae78188b1f8b9a49da7ae9510f151.png", + "aggregators": [ + "Uniswap", + "1inch", + "LiFi", + "Socket", + "Rubic", + "Rango", + "SushiSwap" + ], + "occurrences": 7 + }, + "0x6fd9d7ad17242c41f7131d257212c54a0e816691": { + "address": "0x6fd9d7ad17242c41f7131d257212c54a0e816691", + "symbol": "UNI", + "decimals": 18, + "name": "Uniswap", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/10/0x6fd9d7ad17242c41f7131d257212c54a0e816691.png", + "aggregators": [ + "Uniswap", + "LiFi", + "Socket", + "Rubic", + "Rango", + "SushiSwap" + ], + "occurrences": 6 + }, + "0x7f5c764cbc14f9669b88837ca1490cca17c31607": { + "address": "0x7f5c764cbc14f9669b88837ca1490cca17c31607", + "symbol": "USDC.E", + "decimals": 6, + "name": "USD Coin", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/10/0x7f5c764cbc14f9669b88837ca1490cca17c31607.png", + "aggregators": [ + "Uniswap", + "1inch", + "LiFi", + "Socket", + "Rubic", + "Squid", + "Rango", + "Sonarwatch", + "SushiSwap" + ], + "occurrences": 9 + }, + "0x395ae52bb17aef68c2888d941736a71dc6d4e125": { + "address": "0x395ae52bb17aef68c2888d941736a71dc6d4e125", + "symbol": "POOL", + "decimals": 18, + "name": "PoolTogether", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/10/0x395ae52bb17aef68c2888d941736a71dc6d4e125.png", + "aggregators": [ + "Uniswap", + "LiFi", + "Socket", + "Rubic", + "Squid", + "Rango", + "Sonarwatch", + "SushiSwap" + ], + "occurrences": 8 + }, + "0x50c5725949a6f0c72e6c4a641f24049a917db0cb": { + "address": "0x50c5725949a6f0c72e6c4a641f24049a917db0cb", + "symbol": "LYRA", + "decimals": 18, + "name": "Lyra", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/10/0x50c5725949a6f0c72e6c4a641f24049a917db0cb.png", + "aggregators": [ + "Uniswap", + "LiFi", + "Socket", + "Rubic", + "Squid", + "Rango", + "Sonarwatch", + "SushiSwap" + ], + "occurrences": 8 + }, + "0xaddb6a0412de1ba0f936dcaeb8aaa24578dcf3b2": { + "address": "0xaddb6a0412de1ba0f936dcaeb8aaa24578dcf3b2", + "symbol": "CBETH", + "decimals": 18, + "name": "Coinbase Wrapped Staked ETH", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/10/0xaddb6a0412de1ba0f936dcaeb8aaa24578dcf3b2.png", + "aggregators": [ + "Uniswap", + "LiFi", + "Socket", + "Rubic", + "Rango", + "Sonarwatch", + "SushiSwap" + ], + "occurrences": 7 + }, + "0xbc7b1ff1c6989f006a1185318ed4e7b5796e66e1": { + "address": "0xbc7b1ff1c6989f006a1185318ed4e7b5796e66e1", + "symbol": "PENDLE", + "decimals": 18, + "name": "Pendle", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/10/0xbc7b1ff1c6989f006a1185318ed4e7b5796e66e1.png", + "aggregators": [ + "Uniswap", + "1inch", + "LiFi", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 7 + }, + "0xdc6ff44d5d932cbd77b52e5612ba0529dc6226f1": { + "address": "0xdc6ff44d5d932cbd77b52e5612ba0529dc6226f1", + "symbol": "WLD", + "decimals": 18, + "name": "Worldcoin", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/10/0xdc6ff44d5d932cbd77b52e5612ba0529dc6226f1.png", + "aggregators": [ + "Uniswap", + "1inch", + "LiFi", + "Rubic", + "Squid", + "Rango", + "Sonarwatch" + ], + "occurrences": 7 + }, + "0xc5102fe9359fd9a28f877a67e36b0f050d81a3cc": { + "address": "0xc5102fe9359fd9a28f877a67e36b0f050d81a3cc", + "symbol": "HOP", + "decimals": 18, + "name": "Hop Protocol", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/10/0xc5102fe9359fd9a28f877a67e36b0f050d81a3cc.png", + "aggregators": [ + "Uniswap", + "1inch", + "LiFi", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 7 + }, + "0xcb59a0a753fdb7491d5f3d794316f1ade197b21e": { + "address": "0xcb59a0a753fdb7491d5f3d794316f1ade197b21e", + "symbol": "TUSD", + "decimals": 18, + "name": "TrueUSD", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/10/0xcb59a0a753fdb7491d5f3d794316f1ade197b21e.png", + "aggregators": [ + "Uniswap", + "LiFi", + "Socket", + "Rubic", + "Rango", + "Sonarwatch", + "SushiSwap" + ], + "occurrences": 7 + }, + "0x73cb180bf0521828d8849bc8cf2b920918e23032": { + "address": "0x73cb180bf0521828d8849bc8cf2b920918e23032", + "symbol": "USD+", + "decimals": 6, + "name": "Overnight.fi USD+ (Optimism)", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/10/0x73cb180bf0521828d8849bc8cf2b920918e23032.png", + "aggregators": [ + "Uniswap", + "1inch", + "LiFi", + "Rubic", + "Squid", + "Rango", + "Sonarwatch" + ], + "occurrences": 7 + }, + "0xff733b2a3557a7ed6697007ab5d11b79fdd1b76b": { + "address": "0xff733b2a3557a7ed6697007ab5d11b79fdd1b76b", + "symbol": "ACX", + "decimals": 18, + "name": "Across Protocol Token", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/10/0xff733b2a3557a7ed6697007ab5d11b79fdd1b76b.png", + "aggregators": [ + "Uniswap", + "LiFi", + "Rubic", + "Rango", + "Sonarwatch", + "SushiSwap" + ], + "occurrences": 6 + }, + "0x528cdc92eab044e1e39fe43b9514bfdab4412b98": { + "address": "0x528cdc92eab044e1e39fe43b9514bfdab4412b98", + "symbol": "GIV", + "decimals": 18, + "name": "Giveth Token", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/10/0x528cdc92eab044e1e39fe43b9514bfdab4412b98.png", + "aggregators": [ + "Uniswap", + "1inch", + "LiFi", + "Socket", + "Rubic", + "Squid", + "Rango", + "Sonarwatch", + "SushiSwap" + ], + "occurrences": 9 + }, + "0x3e29d3a9316dab217754d13b28646b76607c5f04": { + "address": "0x3e29d3a9316dab217754d13b28646b76607c5f04", + "symbol": "ALETH", + "decimals": 18, + "name": "Alchemix ETH", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/10/0x3e29d3a9316dab217754d13b28646b76607c5f04.png", + "aggregators": [ + "Uniswap", + "1inch", + "LiFi", + "Socket", + "Rubic", + "Squid", + "Rango", + "Sonarwatch" + ], + "occurrences": 8 + }, + "0xfe8b128ba8c78aabc59d4c64cee7ff28e9379921": { + "address": "0xfe8b128ba8c78aabc59d4c64cee7ff28e9379921", + "symbol": "BAL", + "decimals": 18, + "name": "Balancer", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/10/0xfe8b128ba8c78aabc59d4c64cee7ff28e9379921.png", + "aggregators": [ + "Uniswap", + "LiFi", + "Socket", + "Rubic", + "Rango", + "Sonarwatch", + "SushiSwap" + ], + "occurrences": 7 + }, + "0x3e7ef8f50246f725885102e8238cbba33f276747": { + "address": "0x3e7ef8f50246f725885102e8238cbba33f276747", + "symbol": "BOND", + "decimals": 18, + "name": "BarnBridge Governance Token", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/10/0x3e7ef8f50246f725885102e8238cbba33f276747.png", + "aggregators": [ + "Uniswap", + "LiFi", + "Socket", + "Rubic", + "Rango", + "Sonarwatch", + "SushiSwap" + ], + "occurrences": 7 + }, + "0x1eba7a6a72c894026cd654ac5cdcf83a46445b08": { + "address": "0x1eba7a6a72c894026cd654ac5cdcf83a46445b08", + "symbol": "GTC", + "decimals": 18, + "name": "Gitcoin", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/10/0x1eba7a6a72c894026cd654ac5cdcf83a46445b08.png", + "aggregators": [ + "Uniswap", + "LiFi", + "Socket", + "Rubic", + "Squid", + "Rango", + "SushiSwap" + ], + "occurrences": 7 + }, + "0x4f604735c1cf31399c6e711d5962b2b3e0225ad3": { + "address": "0x4f604735c1cf31399c6e711d5962b2b3e0225ad3", + "symbol": "USDGLO", + "decimals": 18, + "name": "Glo Dollar", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/10/0x4f604735c1cf31399c6e711d5962b2b3e0225ad3.png", + "aggregators": [ + "Uniswap", + "LiFi", + "Socket", + "Rubic", + "Squid", + "Rango", + "Sonarwatch" + ], + "occurrences": 7 + }, + "0x374ad0f47f4ca39c78e5cc54f1c9e426ff8f231a": { + "address": "0x374ad0f47f4ca39c78e5cc54f1c9e426ff8f231a", + "symbol": "PREMIA", + "decimals": 18, + "name": "Premia", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/10/0x374ad0f47f4ca39c78e5cc54f1c9e426ff8f231a.png", + "aggregators": [ + "Uniswap", + "LiFi", + "Socket", + "Rubic", + "Rango", + "Sonarwatch", + "SushiSwap" + ], + "occurrences": 7 + }, + "0x929b939f8524c3be977af57a4a0ad3fb1e374b50": { + "address": "0x929b939f8524c3be977af57a4a0ad3fb1e374b50", + "symbol": "MTA", + "decimals": 18, + "name": "mStable Governance: Meta", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/10/0x929b939f8524c3be977af57a4a0ad3fb1e374b50.png", + "aggregators": [ + "Uniswap", + "LiFi", + "Socket", + "Rubic", + "Squid", + "Rango", + "Sonarwatch" + ], + "occurrences": 7 + }, + "0x65559aa14915a70190438ef90104769e5e890a00": { + "address": "0x65559aa14915a70190438ef90104769e5e890a00", + "symbol": "ENS", + "decimals": 18, + "name": "Ethereum Name Service", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/10/0x65559aa14915a70190438ef90104769e5e890a00.png", + "aggregators": [ + "Uniswap", + "LiFi", + "Socket", + "Rubic", + "Rango", + "SushiSwap" + ], + "occurrences": 6 + }, + "0x67ccea5bb16181e7b4109c9c2143c24a1c2205be": { + "address": "0x67ccea5bb16181e7b4109c9c2143c24a1c2205be", + "symbol": "FXS", + "decimals": 18, + "name": "Frax Share", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/10/0x67ccea5bb16181e7b4109c9c2143c24a1c2205be.png", + "aggregators": [ + "Uniswap", + "LiFi", + "Socket", + "Rubic", + "Rango", + "SushiSwap" + ], + "occurrences": 6 + }, + "0xfeaa9194f9f8c1b65429e31341a103071464907e": { + "address": "0xfeaa9194f9f8c1b65429e31341a103071464907e", + "symbol": "LRC", + "decimals": 18, + "name": "LoopringCoin V2", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/10/0xfeaa9194f9f8c1b65429e31341a103071464907e.png", + "aggregators": [ + "Uniswap", + "LiFi", + "Socket", + "Rubic", + "Rango", + "SushiSwap" + ], + "occurrences": 6 + }, + "0xab7badef82e9fe11f6f33f87bc9bc2aa27f2fcb5": { + "address": "0xab7badef82e9fe11f6f33f87bc9bc2aa27f2fcb5", + "symbol": "MKR", + "decimals": 18, + "name": "Maker", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/10/0xab7badef82e9fe11f6f33f87bc9bc2aa27f2fcb5.png", + "aggregators": [ + "Uniswap", + "LiFi", + "Socket", + "Rubic", + "Rango", + "SushiSwap" + ], + "occurrences": 6 + }, + "0xe7798f023fc62146e8aa1b36da45fb70855a77ea": { + "address": "0xe7798f023fc62146e8aa1b36da45fb70855a77ea", + "symbol": "UMA", + "decimals": 18, + "name": "UMA Voting Token v1", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/10/0xe7798f023fc62146e8aa1b36da45fb70855a77ea.png", + "aggregators": [ + "Uniswap", + "LiFi", + "Socket", + "Rubic", + "Rango", + "SushiSwap" + ], + "occurrences": 6 + }, + "0xd1917629b3e6a72e6772aab5dbe58eb7fa3c2f33": { + "address": "0xd1917629b3e6a72e6772aab5dbe58eb7fa3c2f33", + "symbol": "ZRX", + "decimals": 18, + "name": "0x Protocol Token", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/10/0xd1917629b3e6a72e6772aab5dbe58eb7fa3c2f33.png", + "aggregators": [ + "Uniswap", + "LiFi", + "Socket", + "Rubic", + "Rango", + "SushiSwap" + ], + "occurrences": 6 + }, + "0x6806411765af15bddd26f8f544a34cc40cb9838b": { + "address": "0x6806411765af15bddd26f8f544a34cc40cb9838b", + "symbol": "FRXETH", + "decimals": 18, + "name": "Frax Ether", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/10/0x6806411765af15bddd26f8f544a34cc40cb9838b.png", + "aggregators": [ + "Uniswap", + "LiFi", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 6 + }, + "0xe0bb0d3de8c10976511e5030ca403dbf4c25165b": { + "address": "0xe0bb0d3de8c10976511e5030ca403dbf4c25165b", + "symbol": "0XBTC", + "decimals": 8, + "name": "0xBitcoin", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/10/0xe0bb0d3de8c10976511e5030ca403dbf4c25165b.png", + "aggregators": [ + "Uniswap", + "LiFi", + "Socket", + "Rubic", + "Rango", + "SushiSwap" + ], + "occurrences": 6 + }, + "0xc98b98d17435aa00830c87ea02474c5007e1f272": { + "address": "0xc98b98d17435aa00830c87ea02474c5007e1f272", + "symbol": "BITBTC", + "decimals": 18, + "name": "BitBTC", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/10/0xc98b98d17435aa00830c87ea02474c5007e1f272.png", + "aggregators": [ + "Uniswap", + "LiFi", + "Socket", + "Rubic", + "Rango", + "SushiSwap" + ], + "occurrences": 6 + }, + "0x81ab7e0d570b01411fcc4afd3d50ec8c241cb74b": { + "address": "0x81ab7e0d570b01411fcc4afd3d50ec8c241cb74b", + "symbol": "EQZ", + "decimals": 18, + "name": "Equalizer", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/10/0x81ab7e0d570b01411fcc4afd3d50ec8c241cb74b.png", + "aggregators": [ + "Uniswap", + "LiFi", + "Socket", + "Rubic", + "Rango", + "SushiSwap" + ], + "occurrences": 6 + }, + "0x7b0bcc23851bbf7601efc9e9fe532bf5284f65d3": { + "address": "0x7b0bcc23851bbf7601efc9e9fe532bf5284f65d3", + "symbol": "EST", + "decimals": 18, + "name": "Erica Social Token", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/10/0x7b0bcc23851bbf7601efc9e9fe532bf5284f65d3.png", + "aggregators": [ + "Uniswap", + "LiFi", + "Socket", + "Rubic", + "Rango", + "SushiSwap" + ], + "occurrences": 6 + }, + "0x117cfd9060525452db4a34d51c0b3b7599087f05": { + "address": "0x117cfd9060525452db4a34d51c0b3b7599087f05", + "symbol": "GYSR", + "decimals": 18, + "name": "Geyser", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/10/0x117cfd9060525452db4a34d51c0b3b7599087f05.png", + "aggregators": [ + "Uniswap", + "LiFi", + "Socket", + "Rubic", + "Rango", + "SushiSwap" + ], + "occurrences": 6 + }, + "0x00f932f0fe257456b32deda4758922e56a4f4b42": { + "address": "0x00f932f0fe257456b32deda4758922e56a4f4b42", + "symbol": "PAPER", + "decimals": 18, + "name": "Paper", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/10/0x00f932f0fe257456b32deda4758922e56a4f4b42.png", + "aggregators": [ + "Uniswap", + "LiFi", + "Socket", + "Rubic", + "Rango", + "SushiSwap" + ], + "occurrences": 6 + }, + "0x298b9b95708152ff6968aafd889c6586e9169f1d": { + "address": "0x298b9b95708152ff6968aafd889c6586e9169f1d", + "symbol": "SBTC", + "decimals": 18, + "name": "Synthetic Bitcoin", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/10/0x298b9b95708152ff6968aafd889c6586e9169f1d.png", + "aggregators": [ + "Uniswap", + "LiFi", + "Socket", + "Rubic", + "Rango", + "SushiSwap" + ], + "occurrences": 6 + }, + "0xc5db22719a06418028a40a9b5e9a7c02959d0d08": { + "address": "0xc5db22719a06418028a40a9b5e9a7c02959d0d08", + "symbol": "SLINK", + "decimals": 18, + "name": "Synthetic Chainlink", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/10/0xc5db22719a06418028a40a9b5e9a7c02959d0d08.png", + "aggregators": [ + "Uniswap", + "LiFi", + "Socket", + "Rubic", + "Rango", + "SushiSwap" + ], + "occurrences": 6 + }, + "0x7113370218f31764c1b6353bdf6004d86ff6b9cc": { + "address": "0x7113370218f31764c1b6353bdf6004d86ff6b9cc", + "symbol": "USDD", + "decimals": 18, + "name": "Decentralized USD", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/10/0x7113370218f31764c1b6353bdf6004d86ff6b9cc.png", + "aggregators": [ + "Uniswap", + "LiFi", + "Socket", + "Rubic", + "Rango", + "SushiSwap" + ], + "occurrences": 6 + }, + "0xb548f63d4405466b36c0c0ac3318a22fdcec711a": { + "address": "0xb548f63d4405466b36c0c0ac3318a22fdcec711a", + "symbol": "RGT", + "decimals": 18, + "name": "Rari Governance Token", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/10/0xb548f63d4405466b36c0c0ac3318a22fdcec711a.png", + "aggregators": ["Uniswap", "LiFi", "Socket", "Rango", "SushiSwap"], + "occurrences": 5 + }, + "0x3c8b650257cfb5f272f799f5e2b4e65093a11a05": { + "address": "0x3c8b650257cfb5f272f799f5e2b4e65093a11a05", + "symbol": "VELO", + "decimals": 18, + "name": "VELO", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/10/0x3c8b650257cfb5f272f799f5e2b4e65093a11a05.png", + "aggregators": ["Uniswap", "LiFi", "Rubic", "Squid", "Rango"], + "occurrences": 5 + }, + "0xdfa46478f9e5ea86d57387849598dbfb2e964b02": { + "address": "0xdfa46478f9e5ea86d57387849598dbfb2e964b02", + "symbol": "MAI", + "decimals": 18, + "name": "Mai Stablecoin", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/10/0xdfa46478f9e5ea86d57387849598dbfb2e964b02.png", + "aggregators": [ + "OpenSwap", + "1inch", + "LiFi", + "Socket", + "Rubic", + "Squid", + "Rango", + "Sonarwatch", + "SushiSwap" + ], + "occurrences": 9 + }, + "0xcb8fa9a76b8e203d8c3797bf438d8fb81ea3326a": { + "address": "0xcb8fa9a76b8e203d8c3797bf438d8fb81ea3326a", + "symbol": "ALUSD", + "decimals": 18, + "name": "Alchemix USD", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/10/0xcb8fa9a76b8e203d8c3797bf438d8fb81ea3326a.png", + "aggregators": [ + "CoinGecko", + "1inch", + "LiFi", + "Socket", + "Rubic", + "Squid", + "Rango", + "Sonarwatch" + ], + "occurrences": 8 + }, + "0x296f55f8fb28e498b858d0bcda06d955b2cb3f97": { + "address": "0x296f55f8fb28e498b858d0bcda06d955b2cb3f97", + "symbol": "STG", + "decimals": 18, + "name": "Stargate Finance", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/10/0x296f55f8fb28e498b858d0bcda06d955b2cb3f97.png", + "aggregators": [ + "CoinGecko", + "1inch", + "LiFi", + "Socket", + "Rubic", + "Squid", + "Rango", + "Sonarwatch" + ], + "occurrences": 8 + }, + "0xec6adef5e1006bb305bb1975333e8fc4071295bf": { + "address": "0xec6adef5e1006bb305bb1975333e8fc4071295bf", + "symbol": "CTSI", + "decimals": 18, + "name": "Cartesi", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/10/0xec6adef5e1006bb305bb1975333e8fc4071295bf.png", + "aggregators": [ + "Uniswap", + "LiFi", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 6 + }, + "0x2561aa2bb1d2eb6629edd7b0938d7679b8b49f9e": { + "address": "0x2561aa2bb1d2eb6629edd7b0938d7679b8b49f9e", + "symbol": "OCEAN", + "decimals": 18, + "name": "Ocean Protocol", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/10/0x2561aa2bb1d2eb6629edd7b0938d7679b8b49f9e.png", + "aggregators": [ + "Uniswap", + "LiFi", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 6 + }, + "0xef6301da234fc7b0545c6e877d3359fe0b9e50a4": { + "address": "0xef6301da234fc7b0545c6e877d3359fe0b9e50a4", + "symbol": "SUKU", + "decimals": 18, + "name": "SUKU", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/10/0xef6301da234fc7b0545c6e877d3359fe0b9e50a4.png", + "aggregators": [ + "Uniswap", + "LiFi", + "Socket", + "Rubic", + "Rango", + "SushiSwap" + ], + "occurrences": 6 + }, + "0xaf8ca653fa2772d58f4368b0a71980e9e3ceb888": { + "address": "0xaf8ca653fa2772d58f4368b0a71980e9e3ceb888", + "symbol": "TRB", + "decimals": 18, + "name": "Tellor Tributes", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/10/0xaf8ca653fa2772d58f4368b0a71980e9e3ceb888.png", + "aggregators": [ + "Uniswap", + "LiFi", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 6 + }, + "0x9046d36440290ffde54fe0dd84db8b1cfee9107b": { + "address": "0x9046d36440290ffde54fe0dd84db8b1cfee9107b", + "symbol": "YFI", + "decimals": 18, + "name": "yearn.finance", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/10/0x9046d36440290ffde54fe0dd84db8b1cfee9107b.png", + "aggregators": [ + "Uniswap", + "LiFi", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 6 + }, + "0xc3248a1bd9d72fa3da6e6ba701e58cbf818354eb": { + "address": "0xc3248a1bd9d72fa3da6e6ba701e58cbf818354eb", + "symbol": "HANEP", + "decimals": 18, + "name": "HANePlatform", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/10/0xc3248a1bd9d72fa3da6e6ba701e58cbf818354eb.png", + "aggregators": [ + "Uniswap", + "Socket", + "Rubic", + "Squid", + "Rango", + "Sonarwatch" + ], + "occurrences": 6 + }, + "0x29faf5905bff9cfcc7cf56a5ed91e0f091f8664b": { + "address": "0x29faf5905bff9cfcc7cf56a5ed91e0f091f8664b", + "symbol": "BANK", + "decimals": 18, + "name": "Bankless DAO", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/10/0x29faf5905bff9cfcc7cf56a5ed91e0f091f8664b.png", + "aggregators": [ + "Uniswap", + "LiFi", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 6 + }, + "0x2218a117083f5b482b0bb821d27056ba9c04b1d3": { + "address": "0x2218a117083f5b482b0bb821d27056ba9c04b1d3", + "symbol": "SDAI", + "decimals": 18, + "name": "Savings Dai", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/10/0x2218a117083f5b482b0bb821d27056ba9c04b1d3.png", + "aggregators": [ + "Uniswap", + "LiFi", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 6 + }, + "0xd3594e879b358f430e20f82bea61e83562d49d48": { + "address": "0xd3594e879b358f430e20f82bea61e83562d49d48", + "symbol": "PSP", + "decimals": 18, + "name": "ParaSwap", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/10/0xd3594e879b358f430e20f82bea61e83562d49d48.png", + "aggregators": [ + "Uniswap", + "LiFi", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 6 + }, + "0xc52d7f23a2e460248db6ee192cb23dd12bddcbf6": { + "address": "0xc52d7f23a2e460248db6ee192cb23dd12bddcbf6", + "symbol": "CRVUSD", + "decimals": 18, + "name": "crvUSD", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/10/0xc52d7f23a2e460248db6ee192cb23dd12bddcbf6.png", + "aggregators": [ + "Uniswap", + "LiFi", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 6 + }, + "0x50bce64397c75488465253c0a034b8097fea6578": { + "address": "0x50bce64397c75488465253c0a034b8097fea6578", + "symbol": "HAN", + "decimals": 18, + "name": "HanChain", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/10/0x50bce64397c75488465253c0a034b8097fea6578.png", + "aggregators": [ + "Uniswap", + "Socket", + "Rubic", + "Squid", + "Rango", + "Sonarwatch" + ], + "occurrences": 6 + }, + "0x1da650c3b2daa8aa9ff6f661d4156ce24d08a062": { + "address": "0x1da650c3b2daa8aa9ff6f661d4156ce24d08a062", + "symbol": "DCN", + "decimals": 0, + "name": "Dentacoin", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/10/0x1da650c3b2daa8aa9ff6f661d4156ce24d08a062.png", + "aggregators": [ + "Uniswap", + "Socket", + "Rubic", + "Rango", + "Sonarwatch", + "SushiSwap" + ], + "occurrences": 6 + }, + "0x7c6b91d9be155a6db01f749217d76ff02a7227f2": { + "address": "0x7c6b91d9be155a6db01f749217d76ff02a7227f2", + "symbol": "SARCO", + "decimals": 18, + "name": "Sarcophagus", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/10/0x7c6b91d9be155a6db01f749217d76ff02a7227f2.png", + "aggregators": [ + "Uniswap", + "LiFi", + "Socket", + "Rubic", + "Rango", + "SushiSwap" + ], + "occurrences": 6 + }, + "0xcfd1d50ce23c46d3cf6407487b2f8934e96dc8f9": { + "address": "0xcfd1d50ce23c46d3cf6407487b2f8934e96dc8f9", + "symbol": "SPANK", + "decimals": 18, + "name": "SPANK", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/10/0xcfd1d50ce23c46d3cf6407487b2f8934e96dc8f9.png", + "aggregators": [ + "Uniswap", + "LiFi", + "Socket", + "Rubic", + "Rango", + "SushiSwap" + ], + "occurrences": 6 + }, + "0xba28feb4b6a6b81e3f26f08b83a19e715c4294fd": { + "address": "0xba28feb4b6a6b81e3f26f08b83a19e715c4294fd", + "symbol": "UST", + "decimals": 6, + "name": "UST (Wormhole)", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/10/0xba28feb4b6a6b81e3f26f08b83a19e715c4294fd.png", + "aggregators": [ + "Uniswap", + "LiFi", + "Socket", + "Rubic", + "Rango", + "SushiSwap" + ], + "occurrences": 6 + }, + "0xe4f27b04cc7729901876b44f4eaa5102ec150265": { + "address": "0xe4f27b04cc7729901876b44f4eaa5102ec150265", + "symbol": "XCHF", + "decimals": 18, + "name": "CryptoFranc", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/10/0xe4f27b04cc7729901876b44f4eaa5102ec150265.png", + "aggregators": [ + "Uniswap", + "LiFi", + "Socket", + "Rubic", + "Rango", + "SushiSwap" + ], + "occurrences": 6 + }, + "0x9e5aac1ba1a2e6aed6b32689dfcf62a509ca96f3": { + "address": "0x9e5aac1ba1a2e6aed6b32689dfcf62a509ca96f3", + "symbol": "DF", + "decimals": 18, + "name": "dForce", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/10/0x9e5aac1ba1a2e6aed6b32689dfcf62a509ca96f3.png", + "aggregators": [ + "Uniswap", + "LiFi", + "Socket", + "Rubic", + "Rango", + "SushiSwap" + ], + "occurrences": 6 + }, + "0xf1a0da3367bc7aa04f8d94ba57b862ff37ced174": { + "address": "0xf1a0da3367bc7aa04f8d94ba57b862ff37ced174", + "symbol": "FOX", + "decimals": 18, + "name": "ShapeShift FOX", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/10/0xf1a0da3367bc7aa04f8d94ba57b862ff37ced174.png", + "aggregators": [ + "Uniswap", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x3390108e913824b8ead638444cc52b9abdf63798": { + "address": "0x3390108e913824b8ead638444cc52b9abdf63798", + "symbol": "MASK", + "decimals": 18, + "name": "Mask Network", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/10/0x3390108e913824b8ead638444cc52b9abdf63798.png", + "aggregators": ["Uniswap", "Socket", "Rubic", "Rango", "SushiSwap"], + "occurrences": 5 + }, + "0x3eaeb77b03dbc0f6321ae1b72b2e9adb0f60112b": { + "address": "0x3eaeb77b03dbc0f6321ae1b72b2e9adb0f60112b", + "symbol": "SUSHI", + "decimals": 18, + "name": "SushiToken", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/10/0x3eaeb77b03dbc0f6321ae1b72b2e9adb0f60112b.png", + "aggregators": ["Uniswap", "Socket", "Rubic", "Rango", "SushiSwap"], + "occurrences": 5 + }, + "0x747e42eb0591547a0ab429b3627816208c734ea7": { + "address": "0x747e42eb0591547a0ab429b3627816208c734ea7", + "symbol": "T", + "decimals": 18, + "name": "Threshold Network", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/10/0x747e42eb0591547a0ab429b3627816208c734ea7.png", + "aggregators": [ + "Uniswap", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x79e6c6b6aaba4432fabacb30cc0c879d8f3e598e": { + "address": "0x79e6c6b6aaba4432fabacb30cc0c879d8f3e598e", + "symbol": "FOAM", + "decimals": 18, + "name": "FOAM Token", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/10/0x79e6c6b6aaba4432fabacb30cc0c879d8f3e598e.png", + "aggregators": ["Uniswap", "LiFi", "Socket", "Rubic", "Rango"], + "occurrences": 5 + }, + "0x6af3cb766d6cd37449bfd321d961a61b0515c1bc": { + "address": "0x6af3cb766d6cd37449bfd321d961a61b0515c1bc", + "symbol": "OS", + "decimals": 18, + "name": "Ethereans", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/10/0x6af3cb766d6cd37449bfd321d961a61b0515c1bc.png", + "aggregators": [ + "Uniswap", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x5029c236320b8f15ef0a657054b84d90bfbeded3": { + "address": "0x5029c236320b8f15ef0a657054b84d90bfbeded3", + "symbol": "BITANT", + "decimals": 18, + "name": "BitANT", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/10/0x5029c236320b8f15ef0a657054b84d90bfbeded3.png", + "aggregators": ["Uniswap", "Socket", "Rubic", "Rango", "SushiSwap"], + "occurrences": 5 + }, + "0x3bb4445d30ac020a84c1b5a8a2c6248ebc9779d0": { + "address": "0x3bb4445d30ac020a84c1b5a8a2c6248ebc9779d0", + "symbol": "LIZ", + "decimals": 18, + "name": "Theranos Coin", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/10/0x3bb4445d30ac020a84c1b5a8a2c6248ebc9779d0.png", + "aggregators": ["Uniswap", "Socket", "Rubic", "Rango", "SushiSwap"], + "occurrences": 5 + }, + "0x703d57164ca270b0b330a87fd159cfef1490c0a5": { + "address": "0x703d57164ca270b0b330a87fd159cfef1490c0a5", + "symbol": "WAD", + "decimals": 18, + "name": "WardenSwap", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/10/0x703d57164ca270b0b330a87fd159cfef1490c0a5.png", + "aggregators": ["Uniswap", "LiFi", "Rubic", "Rango", "SushiSwap"], + "occurrences": 5 + }, + "0x7a1263ec3bf0a19e25c553b8a2c312e903262c5e": { + "address": "0x7a1263ec3bf0a19e25c553b8a2c312e903262c5e", + "symbol": "SAIL", + "decimals": 18, + "name": "SAIL Token", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/10/0x7a1263ec3bf0a19e25c553b8a2c312e903262c5e.png", + "aggregators": [ + "Uniswap", + "Rubic", + "Rango", + "Sonarwatch", + "SushiSwap" + ], + "occurrences": 5 + }, + "0x6985884c4392d348587b19cb9eaaf157f13271cd": { + "address": "0x6985884c4392d348587b19cb9eaaf157f13271cd", + "symbol": "ZRO", + "decimals": 18, + "name": "LayerZero", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/10/0x6985884c4392d348587b19cb9eaaf157f13271cd.png", + "aggregators": [ + "CoinGecko", + "1inch", + "LiFi", + "Socket", + "Rubic", + "Squid", + "Rango", + "Sonarwatch", + "SushiSwap" + ], + "occurrences": 9 + }, + "0x6c84a8f1c29108f47a79964b5fe888d4f4d0de40": { + "address": "0x6c84a8f1c29108f47a79964b5fe888d4f4d0de40", + "symbol": "TBTC", + "decimals": 18, + "name": "tBTC", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/10/0x6c84a8f1c29108f47a79964b5fe888d4f4d0de40.png", + "aggregators": [ + "CoinGecko", + "1inch", + "LiFi", + "Socket", + "Rubic", + "Squid", + "Rango", + "Sonarwatch" + ], + "occurrences": 8 + }, + "0xc55e93c62874d8100dbd2dfe307edc1036ad5434": { + "address": "0xc55e93c62874d8100dbd2dfe307edc1036ad5434", + "symbol": "MOOBIFI", + "decimals": 18, + "name": "Staked BIFI", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/10/0xc55e93c62874d8100dbd2dfe307edc1036ad5434.png", + "aggregators": [ + "CoinGecko", + "1inch", + "LiFi", + "Socket", + "Rubic", + "Squid", + "Rango", + "Sonarwatch" + ], + "occurrences": 8 + }, + "0x59d9356e565ab3a36dd77763fc0d87feaf85508c": { + "address": "0x59d9356e565ab3a36dd77763fc0d87feaf85508c", + "symbol": "USDM", + "decimals": 18, + "name": "Mountain Protocol USD", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/10/0x59d9356e565ab3a36dd77763fc0d87feaf85508c.png", + "aggregators": [ + "CoinGecko", + "1inch", + "LiFi", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 7 + }, + "0xc5b001dc33727f8f26880b184090d3e252470d45": { + "address": "0xc5b001dc33727f8f26880b184090d3e252470d45", + "symbol": "ERN", + "decimals": 18, + "name": "Ethos Reserve Note", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/10/0xc5b001dc33727f8f26880b184090d3e252470d45.png", + "aggregators": [ + "CoinGecko", + "Socket", + "Rubic", + "Squid", + "Rango", + "Sonarwatch" + ], + "occurrences": 6 + }, + "0x3e5d9d8a63cc8a88748f229999cf59487e90721e": { + "address": "0x3e5d9d8a63cc8a88748f229999cf59487e90721e", + "symbol": "XMT", + "decimals": 18, + "name": "MetalSwap", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/10/0x3e5d9d8a63cc8a88748f229999cf59487e90721e.png", + "aggregators": [ + "Uniswap", + "LiFi", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 6 + }, + "0x484c2d6e3cdd945a8b2df735e079178c1036578c": { + "address": "0x484c2d6e3cdd945a8b2df735e079178c1036578c", + "symbol": "SFRXETH", + "decimals": 18, + "name": "Staked Frax Ether", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/10/0x484c2d6e3cdd945a8b2df735e079178c1036578c.png", + "aggregators": [ + "Uniswap", + "LiFi", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 6 + }, + "0x66e535e8d2ebf13f49f3d49e5c50395a97c137b1": { + "address": "0x66e535e8d2ebf13f49f3d49e5c50395a97c137b1", + "symbol": "MOLTEN", + "decimals": 18, + "name": "Molten", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/10/0x66e535e8d2ebf13f49f3d49e5c50395a97c137b1.png", + "aggregators": [ + "CoinGecko", + "Socket", + "Rubic", + "Squid", + "Rango", + "Sonarwatch" + ], + "occurrences": 6 + }, + "0xc27d9bc194a648fe3069955a5126699c4e49351c": { + "address": "0xc27d9bc194a648fe3069955a5126699c4e49351c", + "symbol": "AMKT", + "decimals": 18, + "name": "Alongside Crypto Market Index", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/10/0xc27d9bc194a648fe3069955a5126699c4e49351c.png", + "aggregators": [ + "Uniswap", + "LiFi", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 6 + }, + "0x1db2466d9f5e10d7090e7152b68d62703a2245f0": { + "address": "0x1db2466d9f5e10d7090e7152b68d62703a2245f0", + "symbol": "SONNE", + "decimals": 18, + "name": "Sonne Finance", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/10/0x1db2466d9f5e10d7090e7152b68d62703a2245f0.png", + "aggregators": [ + "OpenSwap", + "LiFi", + "Rubic", + "Squid", + "Rango", + "Sonarwatch" + ], + "occurrences": 6 + }, + "0x920cf626a271321c151d027030d5d08af699456b": { + "address": "0x920cf626a271321c151d027030d5d08af699456b", + "symbol": "KWENTA", + "decimals": 18, + "name": "Kwenta", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/10/0x920cf626a271321c151d027030d5d08af699456b.png", + "aggregators": [ + "1inch", + "LiFi", + "Rubic", + "Squid", + "Rango", + "Sonarwatch" + ], + "occurrences": 6 + }, + "0xd8737ca46aa6285de7b8777a8e3db232911bad41": { + "address": "0xd8737ca46aa6285de7b8777a8e3db232911bad41", + "symbol": "FIS", + "decimals": 18, + "name": "StaFi Token", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/10/0xd8737ca46aa6285de7b8777a8e3db232911bad41.png", + "aggregators": ["Uniswap", "LiFi", "Socket", "Rubic", "Rango"], + "occurrences": 5 + }, + "0x3a18dcc9745edcd1ef33ecb93b0b6eba5671e7ca": { + "address": "0x3a18dcc9745edcd1ef33ecb93b0b6eba5671e7ca", + "symbol": "KUJI", + "decimals": 6, + "name": "KUJI", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/10/0x3a18dcc9745edcd1ef33ecb93b0b6eba5671e7ca.png", + "aggregators": ["UniswapLabs", "Socket", "Rubic", "Squid", "Rango"], + "occurrences": 5 + }, + "0xc81d1f0eb955b0c020e5d5b264e1ff72c14d1401": { + "address": "0xc81d1f0eb955b0c020e5d5b264e1ff72c14d1401", + "symbol": "RPL", + "decimals": 18, + "name": "Rocket Pool Protocol", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/10/0xc81d1f0eb955b0c020e5d5b264e1ff72c14d1401.png", + "aggregators": ["Uniswap", "LiFi", "Socket", "Rubic", "Rango"], + "occurrences": 5 + }, + "0x01bff41798a0bcf287b996046ca68b395dbc1071": { + "address": "0x01bff41798a0bcf287b996046ca68b395dbc1071", + "symbol": "USD₮0", + "decimals": 6, + "name": "USD₮0", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/10/0x01bff41798a0bcf287b996046ca68b395dbc1071.png", + "aggregators": ["Uniswap", "LiFi", "Rubic", "Squid", "Rango"], + "occurrences": 5 + }, + "0x871f2f2ff935fd1ed867842ff2a7bfd051a5e527": { + "address": "0x871f2f2ff935fd1ed867842ff2a7bfd051a5e527", + "symbol": "WOO", + "decimals": 18, + "name": "Wootrade Network", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/10/0x871f2f2ff935fd1ed867842ff2a7bfd051a5e527.png", + "aggregators": ["Uniswap", "LiFi", "Socket", "Rubic", "Rango"], + "occurrences": 5 + }, + "0x1217bfe6c773eec6cc4a38b5dc45b92292b6e189": { + "address": "0x1217bfe6c773eec6cc4a38b5dc45b92292b6e189", + "symbol": "OUSDT", + "decimals": 6, + "name": "OUSDT", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/10/0x1217bfe6c773eec6cc4a38b5dc45b92292b6e189.png", + "aggregators": ["CoinGecko", "LiFi", "Socket", "Rubic", "Rango"], + "occurrences": 5 + }, + "0xecf46257ed31c329f204eb43e254c609dee143b3": { + "address": "0xecf46257ed31c329f204eb43e254c609dee143b3", + "symbol": "GRG", + "decimals": 18, + "name": "RigoBlock", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/10/0xecf46257ed31c329f204eb43e254c609dee143b3.png", + "aggregators": [ + "Uniswap", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x7ff7fa94b8b66ef313f7970d4eebd2cb3103a2c0": { + "address": "0x7ff7fa94b8b66ef313f7970d4eebd2cb3103a2c0", + "symbol": "VANA", + "decimals": 18, + "name": "VANA", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/10/0x7ff7fa94b8b66ef313f7970d4eebd2cb3103a2c0.png", + "aggregators": ["CoinGecko", "LiFi", "Socket", "Rubic", "Rango"], + "occurrences": 5 + }, + "0xd8f365c2c85648f9b89d9f1bf72c0ae4b1c36cfd": { + "address": "0xd8f365c2c85648f9b89d9f1bf72c0ae4b1c36cfd", + "symbol": "THEDAO", + "decimals": 16, + "name": "TheDAO", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/10/0xd8f365c2c85648f9b89d9f1bf72c0ae4b1c36cfd.png", + "aggregators": ["Uniswap", "LiFi", "Rubic", "Rango", "SushiSwap"], + "occurrences": 5 + }, + "0x5465145a47260d5e715733997333a175d97285bb": { + "address": "0x5465145a47260d5e715733997333a175d97285bb", + "symbol": "HAIR", + "decimals": 18, + "name": "HairDAO Token", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/10/0x5465145a47260d5e715733997333a175d97285bb.png", + "aggregators": ["Uniswap", "LiFi", "Socket", "Rubic", "Rango"], + "occurrences": 5 + }, + "0x01b8b6384298d4848e3be63d4c9d17830eee488a": { + "address": "0x01b8b6384298d4848e3be63d4c9d17830eee488a", + "symbol": "HAUS", + "decimals": 18, + "name": "DAOhaus Token on Optimism", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/10/0x01b8b6384298d4848e3be63d4c9d17830eee488a.png", + "aggregators": ["Uniswap", "LiFi", "Socket", "Rubic", "Rango"], + "occurrences": 5 + }, + "0x6f0fecbc276de8fc69257065fe47c5a03d986394": { + "address": "0x6f0fecbc276de8fc69257065fe47c5a03d986394", + "symbol": "POP", + "decimals": 18, + "name": "Popcorn", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/10/0x6f0fecbc276de8fc69257065fe47c5a03d986394.png", + "aggregators": ["Uniswap", "LiFi", "Socket", "Rubic", "Rango"], + "occurrences": 5 + }, + "0x323665443cef804a3b5206103304bd4872ea4253": { + "address": "0x323665443cef804a3b5206103304bd4872ea4253", + "symbol": "USDV", + "decimals": 6, + "name": "Verified USD", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/10/0x323665443cef804a3b5206103304bd4872ea4253.png", + "aggregators": ["LiFi", "Socket", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 5 + }, + "0xfd389dc9533717239856190f42475d3f263a270d": { + "address": "0xfd389dc9533717239856190f42475d3f263a270d", + "symbol": "GRAIN", + "decimals": 18, + "name": "Granary", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/10/0xfd389dc9533717239856190f42475d3f263a270d.png", + "aggregators": ["Socket", "Rubic", "Squid", "Rango", "Sonarwatch"], + "occurrences": 5 + }, + "0x7d14206c937e70e19e3a5b94011faf0d5b3928e2": { + "address": "0x7d14206c937e70e19e3a5b94011faf0d5b3928e2", + "symbol": "VITA", + "decimals": 18, + "name": "VitaDAO Token", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/10/0x7d14206c937e70e19e3a5b94011faf0d5b3928e2.png", + "aggregators": ["Uniswap", "Socket", "Rubic", "Rango"], + "occurrences": 4 + }, + "0x14778860e937f509e651192a90589de711fb88a9": { + "address": "0x14778860e937f509e651192a90589de711fb88a9", + "symbol": "CYBER", + "decimals": 18, + "name": "CYBER", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/10/0x14778860e937f509e651192a90589de711fb88a9.png", + "aggregators": [ + "CoinGecko", + "LiFi", + "Socket", + "Rubic", + "Squid", + "Rango", + "Sonarwatch" + ], + "occurrences": 7 + }, + "0xef4461891dfb3ac8572ccf7c794664a8dd927945": { + "address": "0xef4461891dfb3ac8572ccf7c794664a8dd927945", + "symbol": "WCT", + "decimals": 18, + "name": "WalletConnect Token", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/10/0xef4461891dfb3ac8572ccf7c794664a8dd927945.png", + "aggregators": [ + "Metamask", + "1inch", + "LiFi", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 7 + }, + "0xb153fb3d196a8eb25522705560ac152eeec57901": { + "address": "0xb153fb3d196a8eb25522705560ac152eeec57901", + "symbol": "MIM", + "decimals": 18, + "name": "Magic Internet Money (Optimism)", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/10/0xb153fb3d196a8eb25522705560ac152eeec57901.png", + "aggregators": [ + "CoinGecko", + "LiFi", + "Socket", + "Rubic", + "Squid", + "Rango", + "Sonarwatch" + ], + "occurrences": 7 + }, + "0x1f514a61bcde34f94bc39731235690ab9da737f7": { + "address": "0x1f514a61bcde34f94bc39731235690ab9da737f7", + "symbol": "TAROT", + "decimals": 18, + "name": "Tarot", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/10/0x1f514a61bcde34f94bc39731235690ab9da737f7.png", + "aggregators": [ + "CoinGecko", + "LiFi", + "Socket", + "Rubic", + "Squid", + "Rango", + "Sonarwatch" + ], + "occurrences": 7 + }, + "0xeb466342c4d449bc9f53a865d5cb90586f405215": { + "address": "0xeb466342c4d449bc9f53a865d5cb90586f405215", + "symbol": "AXLUSDC", + "decimals": 6, + "name": "Axelar Wrapped USDC", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/10/0xeb466342c4d449bc9f53a865d5cb90586f405215.png", + "aggregators": [ + "CoinGecko", + "LiFi", + "Rubic", + "Squid", + "Rango", + "Sonarwatch", + "SushiSwap" + ], + "occurrences": 7 + }, + "0x9c9e5fd8bbc25984b178fdce6117defa39d2db39": { + "address": "0x9c9e5fd8bbc25984b178fdce6117defa39d2db39", + "symbol": "BUSD", + "decimals": 18, + "name": "Binance-Peg BUSD", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/10/0x9c9e5fd8bbc25984b178fdce6117defa39d2db39.png", + "aggregators": [ + "CoinGecko", + "LiFi", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 6 + }, + "0x9560e827af36c94d2ac33a39bce1fe78631088db": { + "address": "0x9560e827af36c94d2ac33a39bce1fe78631088db", + "symbol": "VELO", + "decimals": 18, + "name": "Velodrome Finance", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/10/0x9560e827af36c94d2ac33a39bce1fe78631088db.png", + "aggregators": [ + "CoinGecko", + "1inch", + "LiFi", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 6 + }, + "0x3b08fcd15280e7b5a6e404c4abb87f7c774d1b2e": { + "address": "0x3b08fcd15280e7b5a6e404c4abb87f7c774d1b2e", + "symbol": "OVN", + "decimals": 18, + "name": "Overnight Finance", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/10/0x3b08fcd15280e7b5a6e404c4abb87f7c774d1b2e.png", + "aggregators": [ + "CoinGecko", + "LiFi", + "Rubic", + "Squid", + "Rango", + "Sonarwatch" + ], + "occurrences": 6 + }, + "0x9a601c5bb360811d96a23689066af316a30c3027": { + "address": "0x9a601c5bb360811d96a23689066af316a30c3027", + "symbol": "PIKA", + "decimals": 18, + "name": "Pika Protocol", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/10/0x9a601c5bb360811d96a23689066af316a30c3027.png", + "aggregators": [ + "CoinGecko", + "LiFi", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 6 + }, + "0x00a35fd824c717879bf370e70ac6868b95870dfb": { + "address": "0x00a35fd824c717879bf370e70ac6868b95870dfb", + "symbol": "IB", + "decimals": 18, + "name": "Iron Bank", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/10/0x00a35fd824c717879bf370e70ac6868b95870dfb.png", + "aggregators": [ + "CoinGecko", + "1inch", + "LiFi", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 6 + }, + "0x2598c30330d5771ae9f983979209486ae26de875": { + "address": "0x2598c30330d5771ae9f983979209486ae26de875", + "symbol": "AI", + "decimals": 18, + "name": "Any Inu", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/10/0x2598c30330d5771ae9f983979209486ae26de875.png", + "aggregators": [ + "CoinGecko", + "Socket", + "Rubic", + "Squid", + "Rango", + "Sonarwatch" + ], + "occurrences": 6 + }, + "0x57f5e098cad7a3d1eed53991d4d66c45c9af7812": { + "address": "0x57f5e098cad7a3d1eed53991d4d66c45c9af7812", + "symbol": "WUSDM", + "decimals": 18, + "name": "Wrapped USDM", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/10/0x57f5e098cad7a3d1eed53991d4d66c45c9af7812.png", + "aggregators": [ + "CoinGecko", + "LiFi", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 6 + }, + "0x5a5fff6f753d7c11a56a52fe47a177a87e431655": { + "address": "0x5a5fff6f753d7c11a56a52fe47a177a87e431655", + "symbol": "SYN", + "decimals": 18, + "name": "Synapse", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/10/0x5a5fff6f753d7c11a56a52fe47a177a87e431655.png", + "aggregators": [ + "OpenSwap", + "1inch", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 6 + }, + "0x375488f097176507e39b9653b88fdc52cde736bf": { + "address": "0x375488f097176507e39b9653b88fdc52cde736bf", + "symbol": "TAROT", + "decimals": 18, + "name": "Tarot V1", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/10/0x375488f097176507e39b9653b88fdc52cde736bf.png", + "aggregators": [ + "OpenSwap", + "LiFi", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 6 + }, + "0x93919784c523f39cacaa98ee0a9d96c3f32b593e": { + "address": "0x93919784c523f39cacaa98ee0a9d96c3f32b593e", + "symbol": "UNIBTC", + "decimals": 8, + "name": "Universal BTC", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/10/0x93919784c523f39cacaa98ee0a9d96c3f32b593e.png", + "aggregators": [ + "CoinGecko", + "LiFi", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 6 + }, + "0x9b88d293b7a791e40d36a39765ffd5a1b9b5c349": { + "address": "0x9b88d293b7a791e40d36a39765ffd5a1b9b5c349", + "symbol": "CELO", + "decimals": 18, + "name": "Celo (Wormhole)", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/10/0x9b88d293b7a791e40d36a39765ffd5a1b9b5c349.png", + "aggregators": [ + "UniswapLabs", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x589d35656641d6ab57a545f08cf473ecd9b6d5f7": { + "address": "0x589d35656641d6ab57a545f08cf473ecd9b6d5f7", + "symbol": "GYEN", + "decimals": 6, + "name": "GMO JPY", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/10/0x589d35656641d6ab57a545f08cf473ecd9b6d5f7.png", + "aggregators": ["Uniswap", "LiFi", "Socket", "Rubic", "Rango"], + "occurrences": 5 + }, + "0xc3864f98f2a61a7caeb95b039d031b4e2f55e0e9": { + "address": "0xc3864f98f2a61a7caeb95b039d031b4e2f55e0e9", + "symbol": "OPENX", + "decimals": 18, + "name": "OpenXSwap", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/10/0xc3864f98f2a61a7caeb95b039d031b4e2f55e0e9.png", + "aggregators": [ + "OpenSwap", + "Rubic", + "Squid", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x1e925de1c68ef83bd98ee3e130ef14a50309c01b": { + "address": "0x1e925de1c68ef83bd98ee3e130ef14a50309c01b", + "symbol": "EXA", + "decimals": 18, + "name": "EXA", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/10/0x1e925de1c68ef83bd98ee3e130ef14a50309c01b.png", + "aggregators": ["CoinGecko", "1inch", "Rubic", "Squid", "Rango"], + "occurrences": 5 + }, + "0x4186bfc76e2e237523cbc30fd220fe055156b41f": { + "address": "0x4186bfc76e2e237523cbc30fd220fe055156b41f", + "symbol": "RSETH", + "decimals": 18, + "name": "RSETH", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/10/0x4186bfc76e2e237523cbc30fd220fe055156b41f.png", + "aggregators": ["CoinGecko", "LiFi", "Socket", "Rubic", "Rango"], + "occurrences": 5 + }, + "0x87eee96d50fb761ad85b1c982d28a042169d61b1": { + "address": "0x87eee96d50fb761ad85b1c982d28a042169d61b1", + "symbol": "WRSETH", + "decimals": 18, + "name": "rsETHWrapper", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/10/0x87eee96d50fb761ad85b1c982d28a042169d61b1.png", + "aggregators": ["CoinGecko", "LiFi", "Rubic", "Squid", "Rango"], + "occurrences": 5 + }, + "0xe453d6649643f1f460c371dc3d1da98f7922fe51": { + "address": "0xe453d6649643f1f460c371dc3d1da98f7922fe51", + "symbol": "FUSE", + "decimals": 18, + "name": "Fuse", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/10/0xe453d6649643f1f460c371dc3d1da98f7922fe51.png", + "aggregators": [ + "CoinGecko", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0xaf1d71bf947709315655514467d5158e5d3046d5": { + "address": "0xaf1d71bf947709315655514467d5158e5d3046d5", + "symbol": "SHU", + "decimals": 18, + "name": "Shutter Token", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/10/0xaf1d71bf947709315655514467d5158e5d3046d5.png", + "aggregators": ["Uniswap", "LiFi", "Socket", "Rubic", "Rango"], + "occurrences": 5 + }, + "0xca0e54b636db823847b29f506bffee743f57729d": { + "address": "0xca0e54b636db823847b29f506bffee743f57729d", + "symbol": "CHI", + "decimals": 18, + "name": "Chi USD", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/10/0xca0e54b636db823847b29f506bffee743f57729d.png", + "aggregators": ["Uniswap", "LiFi", "Socket", "Rubic", "Rango"], + "occurrences": 5 + }, + "0x6c2f7b6110a37b3b0fbdd811876be368df02e8b0": { + "address": "0x6c2f7b6110a37b3b0fbdd811876be368df02e8b0", + "symbol": "RETH", + "decimals": 18, + "name": "StaFi Staked ETH", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/10/0x6c2f7b6110a37b3b0fbdd811876be368df02e8b0.png", + "aggregators": ["Uniswap", "LiFi", "Socket", "Rubic", "Rango"], + "occurrences": 5 + }, + "0xae31207ac34423c41576ff59bfb4e036150f9cf7": { + "address": "0xae31207ac34423c41576ff59bfb4e036150f9cf7", + "symbol": "SDL", + "decimals": 18, + "name": "Saddle DAO", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/10/0xae31207ac34423c41576ff59bfb4e036150f9cf7.png", + "aggregators": ["Uniswap", "LiFi", "Socket", "Rubic", "Rango"], + "occurrences": 5 + }, + "0xbb586ed34974b15049a876fd5366a4c2d1203115": { + "address": "0xbb586ed34974b15049a876fd5366a4c2d1203115", + "symbol": "UBI", + "decimals": 18, + "name": "Universal Basic Income", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/10/0xbb586ed34974b15049a876fd5366a4c2d1203115.png", + "aggregators": ["Uniswap", "LiFi", "Socket", "Rubic", "Rango"], + "occurrences": 5 + }, + "0xeeeeeb57642040be42185f49c52f7e9b38f8eeee": { + "address": "0xeeeeeb57642040be42185f49c52f7e9b38f8eeee", + "symbol": "ELK", + "decimals": 18, + "name": "Elk", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/10/0xeeeeeb57642040be42185f49c52f7e9b38f8eeee.png", + "aggregators": ["1inch", "LiFi", "Socket", "Rubic", "Rango"], + "occurrences": 5 + }, + "0xad42d013ac31486b73b6b059e748172994736426": { + "address": "0xad42d013ac31486b73b6b059e748172994736426", + "symbol": "1INCH", + "decimals": 18, + "name": "1INCH Token", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/10/0xad42d013ac31486b73b6b059e748172994736426.png", + "aggregators": ["Uniswap", "LiFi", "Socket", "Rango"], + "occurrences": 4 + }, + "0x334cc734866e97d8452ae6261d68fd9bc9bfa31e": { + "address": "0x334cc734866e97d8452ae6261d68fd9bc9bfa31e", + "symbol": "ARPA", + "decimals": 18, + "name": "ARPA Token", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/10/0x334cc734866e97d8452ae6261d68fd9bc9bfa31e.png", + "aggregators": ["Uniswap", "LiFi", "Socket", "Rango"], + "occurrences": 4 + }, + "0xed50ace88bd42b45cb0f49be15395021e141254e": { + "address": "0xed50ace88bd42b45cb0f49be15395021e141254e", + "symbol": "BTRST", + "decimals": 18, + "name": "BTRST", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/10/0xed50ace88bd42b45cb0f49be15395021e141254e.png", + "aggregators": ["Uniswap", "LiFi", "Socket", "Rango"], + "occurrences": 4 + }, + "0x650af3c15af43dcb218406d30784416d64cfb6b2": { + "address": "0x650af3c15af43dcb218406d30784416d64cfb6b2", + "symbol": "SNT", + "decimals": 18, + "name": "Status Network Token", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/10/0x650af3c15af43dcb218406d30784416d64cfb6b2.png", + "aggregators": ["Uniswap", "LiFi", "Socket", "Rango"], + "occurrences": 4 + }, + "0x9db118d43069b73b8a252bf0be49d50edbd81fc8": { + "address": "0x9db118d43069b73b8a252bf0be49d50edbd81fc8", + "symbol": "XYO", + "decimals": 18, + "name": "XY Oracle", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/10/0x9db118d43069b73b8a252bf0be49d50edbd81fc8.png", + "aggregators": ["Uniswap", "LiFi", "Socket", "Rango"], + "occurrences": 4 + }, + "0x38761749330c23d681d136e8ea3fc47d4bb93db3": { + "address": "0x38761749330c23d681d136e8ea3fc47d4bb93db3", + "symbol": "SWEAT", + "decimals": 18, + "name": "Sweat Economy", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/10/0x38761749330c23d681d136e8ea3fc47d4bb93db3.png", + "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0x0f13fc8a93ab8edc9fde0a1e19aac693161599a5": { + "address": "0x0f13fc8a93ab8edc9fde0a1e19aac693161599a5", + "symbol": "SCAI", + "decimals": 18, + "name": "SecureChain AI", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/10/0x0f13fc8a93ab8edc9fde0a1e19aac693161599a5.png", + "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0xfc2e6e6bcbd49ccf3a5f029c79984372dcbfe527": { + "address": "0xfc2e6e6bcbd49ccf3a5f029c79984372dcbfe527", + "symbol": "OLAS", + "decimals": 18, + "name": "Autonolas", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/10/0xfc2e6e6bcbd49ccf3a5f029c79984372dcbfe527.png", + "aggregators": ["Uniswap", "Socket", "Rubic", "Rango"], + "occurrences": 4 + }, + "0x47c337bd5b9344a6f3d6f58c474d9d8cd419d8ca": { + "address": "0x47c337bd5b9344a6f3d6f58c474d9d8cd419d8ca", + "symbol": "DACKIE", + "decimals": 18, + "name": "DackieSwap", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/10/0x47c337bd5b9344a6f3d6f58c474d9d8cd419d8ca.png", + "aggregators": ["CoinGecko", "Rubic", "Squid", "Sonarwatch"], + "occurrences": 4 + }, + "0x53ed36b1d07a5f4b01e5f872fd054f8439335460": { + "address": "0x53ed36b1d07a5f4b01e5f872fd054f8439335460", + "symbol": "GMAC", + "decimals": 18, + "name": "Gemach", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/10/0x53ed36b1d07a5f4b01e5f872fd054f8439335460.png", + "aggregators": ["Uniswap", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0x64445f0aecc51e94ad52d8ac56b7190e764e561a": { + "address": "0x64445f0aecc51e94ad52d8ac56b7190e764e561a", + "symbol": "WFRAX", + "decimals": 18, + "name": "WFRAX", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/10/0x64445f0aecc51e94ad52d8ac56b7190e764e561a.png", + "aggregators": ["CoinGecko", "Socket", "Rubic", "Rango"], + "occurrences": 4 + }, + "0x764ad60e1b81f6cacfec1a2926393d688d4493e6": { + "address": "0x764ad60e1b81f6cacfec1a2926393d688d4493e6", + "symbol": "ACRV", + "decimals": 18, + "name": "AladdinCRV", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/10/0x764ad60e1b81f6cacfec1a2926393d688d4493e6.png", + "aggregators": ["Uniswap", "Socket", "Rubic", "Rango"], + "occurrences": 4 + }, + "0xca0eac34408e4b5906d3e161c73bb4611ff22ca1": { + "address": "0xca0eac34408e4b5906d3e161c73bb4611ff22ca1", + "symbol": "CANA", + "decimals": 18, + "name": "CANA Holdings California Carbon Credits", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/10/0xca0eac34408e4b5906d3e161c73bb4611ff22ca1.png", + "aggregators": ["Uniswap", "LiFi", "Socket", "Rango"], + "occurrences": 4 + }, + "0x1d015bf7d8a6fb0fc30959f3e12355530086b2a5": { + "address": "0x1d015bf7d8a6fb0fc30959f3e12355530086b2a5", + "symbol": "CNG", + "decimals": 18, + "name": "Changer", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/10/0x1d015bf7d8a6fb0fc30959f3e12355530086b2a5.png", + "aggregators": ["Uniswap", "LiFi", "Socket", "Rango"], + "occurrences": 4 + }, + "0x0e49ca6ea763190084c846d3fc18f28bc2ac689a": { + "address": "0x0e49ca6ea763190084c846d3fc18f28bc2ac689a", + "symbol": "DUCK", + "decimals": 18, + "name": "Unit protocol", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/10/0x0e49ca6ea763190084c846d3fc18f28bc2ac689a.png", + "aggregators": ["Uniswap", "Socket", "Rubic", "Rango"], + "occurrences": 4 + }, + "0xaf3a6f67af1624d3878a8d30b09fae7915dca2a0": { + "address": "0xaf3a6f67af1624d3878a8d30b09fae7915dca2a0", + "symbol": "EQB", + "decimals": 18, + "name": "Equilibria Token", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/10/0xaf3a6f67af1624d3878a8d30b09fae7915dca2a0.png", + "aggregators": ["Uniswap", "LiFi", "Socket", "Rango"], + "occurrences": 4 + }, + "0xb58d1d90c4f0a89c96337387feafff0a7a75a722": { + "address": "0xb58d1d90c4f0a89c96337387feafff0a7a75a722", + "symbol": "FLY", + "decimals": 4, + "name": "Franklin", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/10/0xb58d1d90c4f0a89c96337387feafff0a7a75a722.png", + "aggregators": ["Uniswap", "Socket", "Rubic", "Rango"], + "occurrences": 4 + }, + "0xc871ccf95024efa2cbce69b5b775d2a1dcf49c1b": { + "address": "0xc871ccf95024efa2cbce69b5b775d2a1dcf49c1b", + "symbol": "GROW", + "decimals": 18, + "name": "ValleyDAO Token", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/10/0xc871ccf95024efa2cbce69b5b775d2a1dcf49c1b.png", + "aggregators": ["Uniswap", "LiFi", "Socket", "Rango"], + "occurrences": 4 + }, + "0xbb6bbaa0f6d839a00c82b10747abc3b7e2eecc82": { + "address": "0xbb6bbaa0f6d839a00c82b10747abc3b7e2eecc82", + "symbol": "IBEX", + "decimals": 18, + "name": "Impermax", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/10/0xbb6bbaa0f6d839a00c82b10747abc3b7e2eecc82.png", + "aggregators": ["Uniswap", "Socket", "Rubic", "Rango"], + "occurrences": 4 + }, + "0x0633e91f64c22d4fea53dbe6e77b7ba4093177b8": { + "address": "0x0633e91f64c22d4fea53dbe6e77b7ba4093177b8", + "symbol": "LITKEY", + "decimals": 18, + "name": "Lit Protocol", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/10/0x0633e91f64c22d4fea53dbe6e77b7ba4093177b8.png", + "aggregators": ["Uniswap", "LiFi", "Socket", "Rango"], + "occurrences": 4 + }, + "0xa6521c950b0ab5215337dab84d65f4ffa7f6df55": { + "address": "0xa6521c950b0ab5215337dab84d65f4ffa7f6df55", + "symbol": "SILO", + "decimals": 18, + "name": "Silo Governance Token", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/10/0xa6521c950b0ab5215337dab84d65f4ffa7f6df55.png", + "aggregators": ["Uniswap", "LiFi", "Socket", "Rango"], + "occurrences": 4 + }, + "0xb94944669f7967e16588e55ac41be0d5ef399dcd": { + "address": "0xb94944669f7967e16588e55ac41be0d5ef399dcd", + "symbol": "SIPHER", + "decimals": 18, + "name": "Sipher Token", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/10/0xb94944669f7967e16588e55ac41be0d5ef399dcd.png", + "aggregators": ["Uniswap", "LiFi", "Socket", "Rango"], + "occurrences": 4 + }, + "0x3eb398fec5f7327c6b15099a9681d9568ded2e82": { + "address": "0x3eb398fec5f7327c6b15099a9681d9568ded2e82", + "symbol": "TKN", + "decimals": 18, + "name": "Token Name Service", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/10/0x3eb398fec5f7327c6b15099a9681d9568ded2e82.png", + "aggregators": ["Uniswap", "LiFi", "Socket", "Rango"], + "occurrences": 4 + }, + "0x3ee6107d9c93955acbb3f39871d32b02f82b78ab": { + "address": "0x3ee6107d9c93955acbb3f39871d32b02f82b78ab", + "symbol": "STERN", + "decimals": 18, + "name": "Staked Ethos Reserve Note", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/10/0x3ee6107d9c93955acbb3f39871d32b02f82b78ab.png", + "aggregators": ["LiFi", "Rubic", "Squid", "Rango"], + "occurrences": 4 + }, + "0x970d50d09f3a656b43e11b0d45241a84e3a6e011": { + "address": "0x970d50d09f3a656b43e11b0d45241a84e3a6e011", + "symbol": "DAI+", + "decimals": 18, + "name": "DAI+", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/10/0x970d50d09f3a656b43e11b0d45241a84e3a6e011.png", + "aggregators": ["LiFi", "Rubic", "Squid", "Rango"], + "occurrences": 4 + }, + "0xd9cc3d70e730503e7f28c1b407389198c4b75fa2": { + "address": "0xd9cc3d70e730503e7f28c1b407389198c4b75fa2", + "symbol": "TLX", + "decimals": 18, + "name": "TLX", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/10/0xd9cc3d70e730503e7f28c1b407389198c4b75fa2.png", + "aggregators": ["CoinGecko", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x2513486f18eee1498d7b6281f668b955181dd0d9": { + "address": "0x2513486f18eee1498d7b6281f668b955181dd0d9", + "symbol": "XOPENX", + "decimals": 18, + "name": "OpenXSwap Gov Token", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/10/0x2513486f18eee1498d7b6281f668b955181dd0d9.png", + "aggregators": ["OpenSwap", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x8b21e9b7daf2c4325bf3d18c1beb79a347fe902a": { + "address": "0x8b21e9b7daf2c4325bf3d18c1beb79a347fe902a", + "symbol": "COLLAB", + "decimals": 18, + "name": "Collab.Land", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/10/0x8b21e9b7daf2c4325bf3d18c1beb79a347fe902a.png", + "aggregators": ["Uniswap", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x76c37f9949e05b37c8373d155c1fef46a6858481": { + "address": "0x76c37f9949e05b37c8373d155c1fef46a6858481", + "symbol": "EPENDLE", + "decimals": 18, + "name": "Equilibria Pendle", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/10/0x76c37f9949e05b37c8373d155c1fef46a6858481.png", + "aggregators": ["Uniswap", "LiFi", "Rango"], + "occurrences": 3 + }, + "0x9a2e53158e12bc09270af10c16a466cb2b5d7836": { + "address": "0x9a2e53158e12bc09270af10c16a466cb2b5d7836", + "symbol": "MET", + "decimals": 18, + "name": "Metronome2", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/10/0x9a2e53158e12bc09270af10c16a466cb2b5d7836.png", + "aggregators": ["Uniswap", "Socket", "Rango"], + "occurrences": 3 + }, + "0x8637725ada78db0674a679cea2a5e0a0869ef4a1": { + "address": "0x8637725ada78db0674a679cea2a5e0a0869ef4a1", + "symbol": "NFTE", + "decimals": 18, + "name": "NFTEarthOFT", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/10/0x8637725ada78db0674a679cea2a5e0a0869ef4a1.png", + "aggregators": ["Uniswap", "Rubic", "SushiSwap"], + "occurrences": 3 + }, + "0x4a36562d5d7074f8ee664922b320e066e67c2a24": { + "address": "0x4a36562d5d7074f8ee664922b320e066e67c2a24", + "symbol": "ZUN", + "decimals": 18, + "name": "Zunami Token", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/10/0x4a36562d5d7074f8ee664922b320e066e67c2a24.png", + "aggregators": ["Uniswap", "LiFi", "Rango"], + "occurrences": 3 + }, + "0xc03b43d492d904406db2d7d57e67c7e8234ba752": { + "address": "0xc03b43d492d904406db2d7d57e67c7e8234ba752", + "symbol": "WUSDR", + "decimals": 9, + "name": "Wrapped USDR", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/10/0xc03b43d492d904406db2d7d57e67c7e8234ba752.png", + "aggregators": ["LiFi", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x10010078a54396f62c96df8532dc2b4847d47ed3": { + "address": "0x10010078a54396f62c96df8532dc2b4847d47ed3", + "symbol": "HND", + "decimals": 18, + "name": "Hundred Finance", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/10/0x10010078a54396f62c96df8532dc2b4847d47ed3.png", + "aggregators": ["Socket", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x28b42698caf46b4b012cf38b6c75867e0762186d": { + "address": "0x28b42698caf46b4b012cf38b6c75867e0762186d", + "symbol": "UNIDX", + "decimals": 18, + "name": "Unidex", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/10/0x28b42698caf46b4b012cf38b6c75867e0762186d.png", + "aggregators": ["Socket", "Rubic", "Rango"], + "occurrences": 3 + }, + "0xfa436399d0458dbe8ab890c3441256e3e09022a8": { + "address": "0xfa436399d0458dbe8ab890c3441256e3e09022a8", + "symbol": "ZIP", + "decimals": 18, + "name": "ZipSwap", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/10/0xfa436399d0458dbe8ab890c3441256e3e09022a8.png", + "aggregators": ["Rubic", "Rango", "Sonarwatch"], + "occurrences": 3 + }, + "0xf467c7d5a4a9c4687ffc7986ac6ad5a4c81e1404": { + "address": "0xf467c7d5a4a9c4687ffc7986ac6ad5a4c81e1404", + "symbol": "KITE", + "decimals": 18, + "name": "Kite", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/10/0xf467c7d5a4a9c4687ffc7986ac6ad5a4c81e1404.png", + "aggregators": [ + "CoinGecko", + "1inch", + "Socket", + "Rubic", + "Squid", + "Rango", + "Sonarwatch" + ], + "occurrences": 7 + }, + "0x23ee2343b892b1bb63503a4fabc840e0e2c6810f": { + "address": "0x23ee2343b892b1bb63503a4fabc840e0e2c6810f", + "symbol": "AXL", + "decimals": 6, + "name": "Axelar", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/10/0x23ee2343b892b1bb63503a4fabc840e0e2c6810f.png", + "aggregators": [ + "CoinGecko", + "LiFi", + "Socket", + "Rubic", + "Squid", + "Rango", + "Sonarwatch" + ], + "occurrences": 7 + }, + "0x33800de7e817a70a694f31476313a7c572bba100": { + "address": "0x33800de7e817a70a694f31476313a7c572bba100", + "symbol": "DRV", + "decimals": 18, + "name": "Derive", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/10/0x33800de7e817a70a694f31476313a7c572bba100.png", + "aggregators": [ + "CoinGecko", + "LiFi", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 6 + }, + "0xaeaeed23478c3a4b798e4ed40d8b7f41366ae861": { + "address": "0xaeaeed23478c3a4b798e4ed40d8b7f41366ae861", + "symbol": "ANKR", + "decimals": 18, + "name": "Ankr Network", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/10/0xaeaeed23478c3a4b798e4ed40d8b7f41366ae861.png", + "aggregators": [ + "CoinGecko", + "LiFi", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 6 + }, + "0x38f9bf9dce51833ec7f03c9dc218197999999999": { + "address": "0x38f9bf9dce51833ec7f03c9dc218197999999999", + "symbol": "NYA", + "decimals": 18, + "name": "Nya", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/10/0x38f9bf9dce51833ec7f03c9dc218197999999999.png", + "aggregators": [ + "CoinGecko", + "Socket", + "Rubic", + "Squid", + "Rango", + "Sonarwatch" + ], + "occurrences": 6 + }, + "0xe05a08226c49b636acf99c40da8dc6af83ce5bb3": { + "address": "0xe05a08226c49b636acf99c40da8dc6af83ce5bb3", + "symbol": "ANKRETH", + "decimals": 18, + "name": "Ankr Staked ETH", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/10/0xe05a08226c49b636acf99c40da8dc6af83ce5bb3.png", + "aggregators": [ + "CoinGecko", + "LiFi", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 6 + }, + "0xc6bdfc4f2e90196738873e824a9efa03f7c64176": { + "address": "0xc6bdfc4f2e90196738873e824a9efa03f7c64176", + "symbol": "VCNT", + "decimals": 18, + "name": "ViciCoin", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/10/0xc6bdfc4f2e90196738873e824a9efa03f7c64176.png", + "aggregators": [ + "CoinGecko", + "LiFi", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 6 + }, + "0x47536f17f4ff30e64a96a7555826b8f9e66ec468": { + "address": "0x47536f17f4ff30e64a96a7555826b8f9e66ec468", + "symbol": "MMY", + "decimals": 18, + "name": "Mummy Finance", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/10/0x47536f17f4ff30e64a96a7555826b8f9e66ec468.png", + "aggregators": [ + "CoinGecko", + "LiFi", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 6 + }, + "0xbfd5206962267c7b4b4a8b3d76ac2e1b2a5c4d5e": { + "address": "0xbfd5206962267c7b4b4a8b3d76ac2e1b2a5c4d5e", + "symbol": "OSAK", + "decimals": 18, + "name": "Osaka Protocol", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/10/0xbfd5206962267c7b4b4a8b3d76ac2e1b2a5c4d5e.png", + "aggregators": [ + "CoinGecko", + "Socket", + "Rubic", + "Rango", + "Sonarwatch", + "SushiSwap" + ], + "occurrences": 6 + }, + "0xd6909e9e702024eb93312b989ee46794c0fb1c9d": { + "address": "0xd6909e9e702024eb93312b989ee46794c0fb1c9d", + "symbol": "BICO", + "decimals": 18, + "name": "Biconomy Token", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/10/0xd6909e9e702024eb93312b989ee46794c0fb1c9d.png", + "aggregators": ["Uniswap", "LiFi", "Socket", "Rubic", "Rango"], + "occurrences": 5 + }, + "0x29cb69d4780b53c1e5cd4d2b817142d2e9890715": { + "address": "0x29cb69d4780b53c1e5cd4d2b817142d2e9890715", + "symbol": "PWETH", + "decimals": 18, + "name": "PoolTogether Prize WETH - Aave", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/10/0x29cb69d4780b53c1e5cd4d2b817142d2e9890715.png", + "aggregators": [ + "CoinGecko", + "LiFi", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x17aabf6838a6303fc6e9c5a227dc1eb6d95c829a": { + "address": "0x17aabf6838a6303fc6e9c5a227dc1eb6d95c829a", + "symbol": "TUX", + "decimals": 18, + "name": "Magicaltux", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/10/0x17aabf6838a6303fc6e9c5a227dc1eb6d95c829a.png", + "aggregators": [ + "CoinGecko", + "Rubic", + "Squid", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x2dad3a13ef0c6366220f989157009e501e7938f8": { + "address": "0x2dad3a13ef0c6366220f989157009e501e7938f8", + "symbol": "EXTRA", + "decimals": 18, + "name": "Extra Finance", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/10/0x2dad3a13ef0c6366220f989157009e501e7938f8.png", + "aggregators": [ + "CoinGecko", + "LiFi", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x9cfb13e6c11054ac9fcb92ba89644f30775436e4": { + "address": "0x9cfb13e6c11054ac9fcb92ba89644f30775436e4", + "symbol": "AXL-WSTETH", + "decimals": 18, + "name": "Axelar Wrapped wstETH", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/10/0x9cfb13e6c11054ac9fcb92ba89644f30775436e4.png", + "aggregators": ["CoinGecko", "LiFi", "Rubic", "Squid", "Rango"], + "occurrences": 5 + }, + "0xb4bc46bc6cb217b59ea8f4530bae26bf69f677f0": { + "address": "0xb4bc46bc6cb217b59ea8f4530bae26bf69f677f0", + "symbol": "BEETS", + "decimals": 18, + "name": "Beethoven X", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/10/0xb4bc46bc6cb217b59ea8f4530bae26bf69f677f0.png", + "aggregators": [ + "CoinGecko", + "LiFi", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x023550adde4fa2f90d63a41d9282bee0294c04cd": { + "address": "0x023550adde4fa2f90d63a41d9282bee0294c04cd", + "symbol": "PSTAKE", + "decimals": 18, + "name": "pSTAKE Finance", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/10/0x023550adde4fa2f90d63a41d9282bee0294c04cd.png", + "aggregators": [ + "CoinGecko", + "Rubic", + "Squid", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x58b9cb810a68a7f3e1e4f8cb45d1b9b3c79705e8": { + "address": "0x58b9cb810a68a7f3e1e4f8cb45d1b9b3c79705e8", + "symbol": "NEXT", + "decimals": 18, + "name": "Everclear", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/10/0x58b9cb810a68a7f3e1e4f8cb45d1b9b3c79705e8.png", + "aggregators": [ + "CoinGecko", + "LiFi", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0xb0ae108669ceb86e9e98e8fe9e40d98b867855fd": { + "address": "0xb0ae108669ceb86e9e98e8fe9e40d98b867855fd", + "symbol": "RING", + "decimals": 18, + "name": "OneRing", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/10/0xb0ae108669ceb86e9e98e8fe9e40d98b867855fd.png", + "aggregators": [ + "CoinGecko", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x74ccbe53f77b08632ce0cb91d3a545bf6b8e0979": { + "address": "0x74ccbe53f77b08632ce0cb91d3a545bf6b8e0979", + "symbol": "BOMB", + "decimals": 18, + "name": "Fantom Bomb", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/10/0x74ccbe53f77b08632ce0cb91d3a545bf6b8e0979.png", + "aggregators": ["OpenSwap", "LiFi", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 5 + }, + "0xc7edf7b7b3667a06992508e7b156eff794a9e1c8": { + "address": "0xc7edf7b7b3667a06992508e7b156eff794a9e1c8", + "symbol": "XPRT", + "decimals": 6, + "name": "Persistence One", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/10/0xc7edf7b7b3667a06992508e7b156eff794a9e1c8.png", + "aggregators": [ + "CoinGecko", + "Rubic", + "Squid", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x1574564fcfd15bccb3fe04e9818f61131ea74066": { + "address": "0x1574564fcfd15bccb3fe04e9818f61131ea74066", + "symbol": "JARVIS", + "decimals": 18, + "name": "Jarvis", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/10/0x1574564fcfd15bccb3fe04e9818f61131ea74066.png", + "aggregators": [ + "CoinGecko", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0xe3c332a5dce0e1d9bc2cc72a68437790570c28a4": { + "address": "0xe3c332a5dce0e1d9bc2cc72a68437790570c28a4", + "symbol": "VEE", + "decimals": 18, + "name": "BLOCKv", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/10/0xe3c332a5dce0e1d9bc2cc72a68437790570c28a4.png", + "aggregators": [ + "CoinGecko", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x8f69ee043d52161fd29137aedf63f5e70cd504d5": { + "address": "0x8f69ee043d52161fd29137aedf63f5e70cd504d5", + "symbol": "DOG", + "decimals": 18, + "name": "The Doge NFT", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/10/0x8f69ee043d52161fd29137aedf63f5e70cd504d5.png", + "aggregators": [ + "CoinGecko", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0xd52f94df742a6f4b4c8b033369fe13a41782bf44": { + "address": "0xd52f94df742a6f4b4c8b033369fe13a41782bf44", + "symbol": "L2DAO", + "decimals": 18, + "name": "Layer2DAO", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/10/0xd52f94df742a6f4b4c8b033369fe13a41782bf44.png", + "aggregators": [ + "CoinGecko", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x135c78d7f52aab6e9f17bcf4a9e8627aa233d050": { + "address": "0x135c78d7f52aab6e9f17bcf4a9e8627aa233d050", + "symbol": "$BOO", + "decimals": 18, + "name": "BOO", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/10/0x135c78d7f52aab6e9f17bcf4a9e8627aa233d050.png", + "aggregators": [ + "CoinGecko", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x9485aca5bbbe1667ad97c7fe7c4531a624c8b1ed": { + "address": "0x9485aca5bbbe1667ad97c7fe7c4531a624c8b1ed", + "symbol": "AGEUR", + "decimals": 18, + "name": "agEUR", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/10/0x9485aca5bbbe1667ad97c7fe7c4531a624c8b1ed.png", + "aggregators": ["LiFi", "Rubic", "Squid", "Rango", "SushiSwap"], + "occurrences": 5 + }, + "0x25193034153afb4251a8e02a8db0deaef4c876f6": { + "address": "0x25193034153afb4251a8e02a8db0deaef4c876f6", + "symbol": "ZUN", + "decimals": 18, + "name": "Zunami Governance Token", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/10/0x25193034153afb4251a8e02a8db0deaef4c876f6.png", + "aggregators": ["LiFi", "Socket", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 5 + }, + "0x10398abc267496e49106b07dd6be13364d10dc71": { + "address": "0x10398abc267496e49106b07dd6be13364d10dc71", + "symbol": "HAI", + "decimals": 18, + "name": "Let's Get HAI", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/10/0x10398abc267496e49106b07dd6be13364d10dc71.png", + "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0xc4d4500326981eacd020e20a81b1c479c161c7ef": { + "address": "0xc4d4500326981eacd020e20a81b1c479c161c7ef", + "symbol": "EXAWETH", + "decimals": 18, + "name": "Exactly Wrapped Ether", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/10/0xc4d4500326981eacd020e20a81b1c479c161c7ef.png", + "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0x887d1c6a4f3548279c2a8a9d0fa61b5d458d14fc": { + "address": "0x887d1c6a4f3548279c2a8a9d0fa61b5d458d14fc", + "symbol": "ION", + "decimals": 18, + "name": "Ionic Protocol", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/10/0x887d1c6a4f3548279c2a8a9d0fa61b5d458d14fc.png", + "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0xb962150760f9a3bb00e3e9cf48297ee20ada4a33": { + "address": "0xb962150760f9a3bb00e3e9cf48297ee20ada4a33", + "symbol": "ZOOMER", + "decimals": 18, + "name": "Zoomer", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/10/0xb962150760f9a3bb00e3e9cf48297ee20ada4a33.png", + "aggregators": ["Uniswap", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0x73e0c0d45e048d25fc26fa3159b0aa04bfa4db98": { + "address": "0x73e0c0d45e048d25fc26fa3159b0aa04bfa4db98", + "symbol": "KBTC", + "decimals": 8, + "name": "Kraken Wrapped BTC", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/10/0x73e0c0d45e048d25fc26fa3159b0aa04bfa4db98.png", + "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0x4e720dd3ac5cfe1e1fbde4935f386bb1c66f4642": { + "address": "0x4e720dd3ac5cfe1e1fbde4935f386bb1c66f4642", + "symbol": "BIFI", + "decimals": 18, + "name": "beefy.finance", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/10/0x4e720dd3ac5cfe1e1fbde4935f386bb1c66f4642.png", + "aggregators": ["OpenSwap", "LiFi", "Socket", "Rubic"], + "occurrences": 4 + }, + "0x65334ce5aae9fb390c056574c7aa4de33cf1d40e": { + "address": "0x65334ce5aae9fb390c056574c7aa4de33cf1d40e", + "symbol": "BRIGHT", + "decimals": 18, + "name": "Bright", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/10/0x65334ce5aae9fb390c056574c7aa4de33cf1d40e.png", + "aggregators": ["Uniswap", "LiFi", "Socket", "Rango"], + "occurrences": 4 + }, + "0x86bea60374f220de9769b2fef2db725bc1cdd335": { + "address": "0x86bea60374f220de9769b2fef2db725bc1cdd335", + "symbol": "FLASH", + "decimals": 18, + "name": "Flashstake", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/10/0x86bea60374f220de9769b2fef2db725bc1cdd335.png", + "aggregators": ["Uniswap", "LiFi", "Rubic", "Rango"], + "occurrences": 4 + }, + "0x5e70affe232e2919792f77eb94e566db0320fa88": { + "address": "0x5e70affe232e2919792f77eb94e566db0320fa88", + "symbol": "MOM", + "decimals": 18, + "name": "Monetum", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/10/0x5e70affe232e2919792f77eb94e566db0320fa88.png", + "aggregators": ["Uniswap", "LiFi", "Rubic", "Rango"], + "occurrences": 4 + }, + "0x0f5d45a7023612e9e244fe84fac5fcf3740d1492": { + "address": "0x0f5d45a7023612e9e244fe84fac5fcf3740d1492", + "symbol": "STKLYRA", + "decimals": 18, + "name": "Staked Lyra", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/10/0x0f5d45a7023612e9e244fe84fac5fcf3740d1492.png", + "aggregators": ["Uniswap", "LiFi", "Rubic", "Rango"], + "occurrences": 4 + }, + "0xb1ae0a34dc3976d98c1741c92b798daf8e0e1e11": { + "address": "0xb1ae0a34dc3976d98c1741c92b798daf8e0e1e11", + "symbol": "TRX", + "decimals": 6, + "name": "TRON", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/10/0xb1ae0a34dc3976d98c1741c92b798daf8e0e1e11.png", + "aggregators": ["Uniswap", "LiFi", "Socket", "Rango"], + "occurrences": 4 + }, + "0xdb4ea87ff83eb1c80b8976fc47731da6a31d35e5": { + "address": "0xdb4ea87ff83eb1c80b8976fc47731da6a31d35e5", + "symbol": "WTBT", + "decimals": 18, + "name": "wTBT(Bridge Token)", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/10/0xdb4ea87ff83eb1c80b8976fc47731da6a31d35e5.png", + "aggregators": ["Uniswap", "LiFi", "Rubic", "Rango"], + "occurrences": 4 + }, + "0x2dd1b4d4548accea497050619965f91f78b3b532": { + "address": "0x2dd1b4d4548accea497050619965f91f78b3b532", + "symbol": "SFRAX", + "decimals": 18, + "name": "Staked FRAX", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/10/0x2dd1b4d4548accea497050619965f91f78b3b532.png", + "aggregators": ["LiFi", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0x00e1724885473b63bce08a9f0a52f35b0979e35a": { + "address": "0x00e1724885473b63bce08a9f0a52f35b0979e35a", + "symbol": "OATH", + "decimals": 18, + "name": "Oath Token", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/10/0x00e1724885473b63bce08a9f0a52f35b0979e35a.png", + "aggregators": ["LiFi", "Rubic", "Squid", "Rango"], + "occurrences": 4 + }, + "0x9fd22a17b4a96da3f83797d122172c450381fb88": { + "address": "0x9fd22a17b4a96da3f83797d122172c450381fb88", + "symbol": "JEFE", + "decimals": 9, + "name": "Jefe", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/10/0x9fd22a17b4a96da3f83797d122172c450381fb88.png", + "aggregators": ["Socket", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0xb396b31599333739a97951b74652c117be86ee1d": { + "address": "0xb396b31599333739a97951b74652c117be86ee1d", + "symbol": "DUSD", + "decimals": 18, + "name": "Davos.xyz USD", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/10/0xb396b31599333739a97951b74652c117be86ee1d.png", + "aggregators": ["Socket", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0x51707dc661630f8fd624b985fa6ef4f1d4d919db": { + "address": "0x51707dc661630f8fd624b985fa6ef4f1d4d919db", + "symbol": "UNV", + "decimals": 18, + "name": "Unvest", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/10/0x51707dc661630f8fd624b985fa6ef4f1d4d919db.png", + "aggregators": ["Rubic", "Squid", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0x07ad578ff86b135be19a12759064b802cb88854d": { + "address": "0x07ad578ff86b135be19a12759064b802cb88854d", + "symbol": "BOBA", + "decimals": 18, + "name": "Boba Token", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/10/0x07ad578ff86b135be19a12759064b802cb88854d.png", + "aggregators": ["Uniswap", "Socket", "Rango"], + "occurrences": 3 + }, + "0xc1c167cc44f7923cd0062c4370df962f9ddb16f5": { + "address": "0xc1c167cc44f7923cd0062c4370df962f9ddb16f5", + "symbol": "PEPE", + "decimals": 18, + "name": "Pepe", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/10/0xc1c167cc44f7923cd0062c4370df962f9ddb16f5.png", + "aggregators": ["Uniswap", "Socket", "Rango"], + "occurrences": 3 + }, + "0xd0cf4de352ac8dcce00bd6b93ee73d3cb272edc3": { + "address": "0xd0cf4de352ac8dcce00bd6b93ee73d3cb272edc3", + "symbol": "PCM", + "decimals": 18, + "name": "PCM", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/10/0xd0cf4de352ac8dcce00bd6b93ee73d3cb272edc3.png", + "aggregators": ["CoinGecko", "Rubic", "Rango"], + "occurrences": 3 + }, + "0xb5b2dc7fd34c249f4be7fb1fcea07950784229e0": { + "address": "0xb5b2dc7fd34c249f4be7fb1fcea07950784229e0", + "symbol": "SUSDS", + "decimals": 18, + "name": "SUSDS", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/10/0xb5b2dc7fd34c249f4be7fb1fcea07950784229e0.png", + "aggregators": ["CoinGecko", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x0b5740c6b4a97f90ef2f0220651cca420b868ffb": { + "address": "0x0b5740c6b4a97f90ef2f0220651cca420b868ffb", + "symbol": "GOHM", + "decimals": 18, + "name": "Governance OHM", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/10/0x0b5740c6b4a97f90ef2f0220651cca420b868ffb.png", + "aggregators": ["CoinGecko", "Rubic", "Rango"], + "occurrences": 3 + }, + "0xb73ee5488647a6302ebf5fee8af3152f6960ae4c": { + "address": "0xb73ee5488647a6302ebf5fee8af3152f6960ae4c", + "symbol": "WXRP", + "decimals": 6, + "name": "Hex Trust Wrapped XRP", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/10/0xb73ee5488647a6302ebf5fee8af3152f6960ae4c.png", + "aggregators": ["CoinGecko", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x8d010bf9c26881788b4e6bf5fd1bdc358c8f90b8": { + "address": "0x8d010bf9c26881788b4e6bf5fd1bdc358c8f90b8", + "symbol": "DOT", + "decimals": 18, + "name": "DOT", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/10/0x8d010bf9c26881788b4e6bf5fd1bdc358c8f90b8.png", + "aggregators": ["CoinGecko", "Rubic", "Rango"], + "occurrences": 3 + }, + "0xd83e3d560ba6f05094d9d8b3eb8aaea571d1864e": { + "address": "0xd83e3d560ba6f05094d9d8b3eb8aaea571d1864e", + "symbol": "WHYPE", + "decimals": 18, + "name": "Wrapped HYPE", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/10/0xd83e3d560ba6f05094d9d8b3eb8aaea571d1864e.png", + "aggregators": ["CoinGecko", "Rubic", "Rango"], + "occurrences": 3 + }, + "0xa0a675d08ca63066f48408136f8a71fc65be4afc": { + "address": "0xa0a675d08ca63066f48408136f8a71fc65be4afc", + "symbol": "BZR", + "decimals": 18, + "name": "Bazaars", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/10/0xa0a675d08ca63066f48408136f8a71fc65be4afc.png", + "aggregators": ["CoinGecko", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x4933a85b5b5466fbaf179f72d3de273c287ec2c2": { + "address": "0x4933a85b5b5466fbaf179f72d3de273c287ec2c2", + "symbol": "EURAU", + "decimals": 6, + "name": "EURAU", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/10/0x4933a85b5b5466fbaf179f72d3de273c287ec2c2.png", + "aggregators": ["CoinGecko", "Rubic", "Rango"], + "occurrences": 3 + }, + "0xbc33b4d48f76d17a1800afcb730e8a6aaada7fe5": { + "address": "0xbc33b4d48f76d17a1800afcb730e8a6aaada7fe5", + "symbol": "VDOT", + "decimals": 18, + "name": "Voucher DOT", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/10/0xbc33b4d48f76d17a1800afcb730e8a6aaada7fe5.png", + "aggregators": ["CoinGecko", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x17906b1cd88aa8efaefc5e82891b52a22219bd45": { + "address": "0x17906b1cd88aa8efaefc5e82891b52a22219bd45", + "symbol": "SUPR", + "decimals": 18, + "name": "SUPR", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/10/0x17906b1cd88aa8efaefc5e82891b52a22219bd45.png", + "aggregators": ["CoinGecko", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x720f86f4b5b5d5d0ea3e5718ec43071d4d05134b": { + "address": "0x720f86f4b5b5d5d0ea3e5718ec43071d4d05134b", + "symbol": "HLSCOPE", + "decimals": 6, + "name": "HLSCOPE", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/10/0x720f86f4b5b5d5d0ea3e5718ec43071d4d05134b.png", + "aggregators": ["CoinGecko", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x4e107a0000db66f0e9fd2039288bf811dd1f9c74": { + "address": "0x4e107a0000db66f0e9fd2039288bf811dd1f9c74", + "symbol": "VLR", + "decimals": 18, + "name": "VLR", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/10/0x4e107a0000db66f0e9fd2039288bf811dd1f9c74.png", + "aggregators": ["CoinGecko", "Rubic", "Rango"], + "occurrences": 3 + }, + "0xd4423795fd904d9b87554940a95fb7016f172773": { + "address": "0xd4423795fd904d9b87554940a95fb7016f172773", + "symbol": "AIN", + "decimals": 18, + "name": "AIN", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/10/0xd4423795fd904d9b87554940a95fb7016f172773.png", + "aggregators": ["CoinGecko", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x5e817f2abccb9095585d26c2a3ce234a440574fc": { + "address": "0x5e817f2abccb9095585d26c2a3ce234a440574fc", + "symbol": "FRNT", + "decimals": 6, + "name": "Frontier Stable Token", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/10/0x5e817f2abccb9095585d26c2a3ce234a440574fc.png", + "aggregators": ["CoinGecko", "Rubic", "Rango"], + "occurrences": 3 + }, + "0xd4dd9e2f021bb459d5a5f6c24c12fe09c5d45553": { + "address": "0xd4dd9e2f021bb459d5a5f6c24c12fe09c5d45553", + "symbol": "ZCHF", + "decimals": 18, + "name": "ZCHF", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/10/0xd4dd9e2f021bb459d5a5f6c24c12fe09c5d45553.png", + "aggregators": ["CoinGecko", "Rubic", "Rango"], + "occurrences": 3 + }, + "0xf4f447e6afa04c9d11ef0e2fc0d7f19c24ee55de": { + "address": "0xf4f447e6afa04c9d11ef0e2fc0d7f19c24ee55de", + "symbol": "VYUSD", + "decimals": 18, + "name": "VYUSD", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/10/0xf4f447e6afa04c9d11ef0e2fc0d7f19c24ee55de.png", + "aggregators": ["CoinGecko", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x7d3ce1265d5ea5848dc1c96aadbf754e2bad33b1": { + "address": "0x7d3ce1265d5ea5848dc1c96aadbf754e2bad33b1", + "symbol": "FASH", + "decimals": 18, + "name": "BNV", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/10/0x7d3ce1265d5ea5848dc1c96aadbf754e2bad33b1.png", + "aggregators": ["CoinGecko", "Rubic", "Rango"], + "occurrences": 3 + }, + "0xdcb612005417dc906ff72c87df732e5a90d49e11": { + "address": "0xdcb612005417dc906ff72c87df732e5a90d49e11", + "symbol": "EURC", + "decimals": 6, + "name": "EURC", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/10/0xdcb612005417dc906ff72c87df732e5a90d49e11.png", + "aggregators": ["CoinGecko", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x3417e54a51924c225330f8770514ad5560b9098d": { + "address": "0x3417e54a51924c225330f8770514ad5560b9098d", + "symbol": "RED", + "decimals": 18, + "name": "REDKoin", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/10/0x3417e54a51924c225330f8770514ad5560b9098d.png", + "aggregators": ["OpenSwap", "Socket", "Squid"], + "occurrences": 3 + }, + "0xc62c9b7be5d4e5d415f682b2331bfa5f0c8d061a": { + "address": "0xc62c9b7be5d4e5d415f682b2331bfa5f0c8d061a", + "symbol": "ATH", + "decimals": 18, + "name": "AthenaDAO Token", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/10/0xc62c9b7be5d4e5d415f682b2331bfa5f0c8d061a.png", + "aggregators": ["Uniswap", "Socket", "Rango"], + "occurrences": 3 + }, + "0xdb9888b842408b0b8efa1f5477bd9f351754999e": { + "address": "0xdb9888b842408b0b8efa1f5477bd9f351754999e", + "symbol": "BAXA", + "decimals": 18, + "name": "BAXagent Coin", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/10/0xdb9888b842408b0b8efa1f5477bd9f351754999e.png", + "aggregators": ["Uniswap", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x0af1580f49121d7a42b0f9125f5f7dc172f8a469": { + "address": "0x0af1580f49121d7a42b0f9125f5f7dc172f8a469", + "symbol": "BCAT", + "decimals": 9, + "name": "BananaCat", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/10/0x0af1580f49121d7a42b0f9125f5f7dc172f8a469.png", + "aggregators": ["Uniswap", "Socket", "Rango"], + "occurrences": 3 + }, + "0x629c2fd5d5f432357465b59d7832389a89956f0b": { + "address": "0x629c2fd5d5f432357465b59d7832389a89956f0b", + "symbol": "COC", + "decimals": 18, + "name": "CryptoOracle Collective", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/10/0x629c2fd5d5f432357465b59d7832389a89956f0b.png", + "aggregators": ["Uniswap", "Socket", "Rango"], + "occurrences": 3 + }, + "0x01402d1bc10ae6e96c0e494a5860748517a3c070": { + "address": "0x01402d1bc10ae6e96c0e494a5860748517a3c070", + "symbol": "CRYO", + "decimals": 18, + "name": "CryoDAO", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/10/0x01402d1bc10ae6e96c0e494a5860748517a3c070.png", + "aggregators": ["Uniswap", "Socket", "Rango"], + "occurrences": 3 + }, + "0x5eaa326fb2fc97facce6a79a304876dad0f2e96c": { + "address": "0x5eaa326fb2fc97facce6a79a304876dad0f2e96c", + "symbol": "DIMO", + "decimals": 18, + "name": "Dimo", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/10/0x5eaa326fb2fc97facce6a79a304876dad0f2e96c.png", + "aggregators": ["Uniswap", "Socket", "Rango"], + "occurrences": 3 + }, + "0x8368dca5ce2a4db530c0f6e535d90b6826428dee": { + "address": "0x8368dca5ce2a4db530c0f6e535d90b6826428dee", + "symbol": "FPIS", + "decimals": 18, + "name": "Frax Price Index Share", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/10/0x8368dca5ce2a4db530c0f6e535d90b6826428dee.png", + "aggregators": ["Uniswap", "Socket", "Rubic"], + "occurrences": 3 + }, + "0xa211e25f7246950e0cce054e3161c7c0b6379485": { + "address": "0xa211e25f7246950e0cce054e3161c7c0b6379485", + "symbol": "IPT", + "decimals": 18, + "name": "Interest Protocol", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/10/0xa211e25f7246950e0cce054e3161c7c0b6379485.png", + "aggregators": ["Uniswap", "LiFi", "Rango"], + "occurrences": 3 + }, + "0x0b3e851cf6508a16266bc68a651ea68b31ef673b": { + "address": "0x0b3e851cf6508a16266bc68a651ea68b31ef673b", + "symbol": "LPF", + "decimals": 18, + "name": "Loopfi", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/10/0x0b3e851cf6508a16266bc68a651ea68b31ef673b.png", + "aggregators": ["Uniswap", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x77d40cbc27f912dcdbf4348caf87b427c4d02486": { + "address": "0x77d40cbc27f912dcdbf4348caf87b427c4d02486", + "symbol": "MOCHI", + "decimals": 18, + "name": "Mochi", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/10/0x77d40cbc27f912dcdbf4348caf87b427c4d02486.png", + "aggregators": ["Uniswap", "Rubic", "Rango"], + "occurrences": 3 + }, + "0xfa956eb0c4b3e692ad5a6b2f08170ade55999aca": { + "address": "0xfa956eb0c4b3e692ad5a6b2f08170ade55999aca", + "symbol": "PHTK", + "decimals": 18, + "name": "PhunToken", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/10/0xfa956eb0c4b3e692ad5a6b2f08170ade55999aca.png", + "aggregators": ["Uniswap", "Rubic", "Rango"], + "occurrences": 3 + }, + "0xf8397db1eedb800fdbce9e62ad83a28059cbb068": { + "address": "0xf8397db1eedb800fdbce9e62ad83a28059cbb068", + "symbol": "RAZOR", + "decimals": 18, + "name": "RAZOR", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/10/0xf8397db1eedb800fdbce9e62ad83a28059cbb068.png", + "aggregators": ["Uniswap", "Socket", "Rango"], + "occurrences": 3 + }, + "0xeaeadac73baaf4cb8b024de9d65b2eefa722856c": { + "address": "0xeaeadac73baaf4cb8b024de9d65b2eefa722856c", + "symbol": "RFWSTETH", + "decimals": 18, + "name": "Respawn Finance Wrapped Staked Ethereum", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/10/0xeaeadac73baaf4cb8b024de9d65b2eefa722856c.png", + "aggregators": ["Uniswap", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x61ccfe71d8ee67780320b0d990a02d702d99c271": { + "address": "0x61ccfe71d8ee67780320b0d990a02d702d99c271", + "symbol": "SCM", + "decimals": 18, + "name": "Scamfari", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/10/0x61ccfe71d8ee67780320b0d990a02d702d99c271.png", + "aggregators": ["Uniswap", "Socket", "Rango"], + "occurrences": 3 + }, + "0x8eb99a441b04576282e9069977f6de6053ef6a97": { + "address": "0x8eb99a441b04576282e9069977f6de6053ef6a97", + "symbol": "SMT", + "decimals": 18, + "name": "Swarm Markets", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/10/0x8eb99a441b04576282e9069977f6de6053ef6a97.png", + "aggregators": ["Uniswap", "Socket", "Rango"], + "occurrences": 3 + }, + "0xe539298a99004a102e4b6997ef96e5137be42eab": { + "address": "0xe539298a99004a102e4b6997ef96e5137be42eab", + "symbol": "SPC", + "decimals": 18, + "name": "SpaceChainV2", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/10/0xe539298a99004a102e4b6997ef96e5137be42eab.png", + "aggregators": ["Uniswap", "Socket", "Rango"], + "occurrences": 3 + }, + "0xc709c9116dbf29da9c25041b13a07a0e68ac5d2d": { + "address": "0xc709c9116dbf29da9c25041b13a07a0e68ac5d2d", + "symbol": "UDT", + "decimals": 18, + "name": "Unlock Discount Token", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/10/0xc709c9116dbf29da9c25041b13a07a0e68ac5d2d.png", + "aggregators": ["Uniswap", "LiFi", "Rango"], + "occurrences": 3 + }, + "0x0a9aaa1c7542b42233ac7ffda364e97ade21f160": { + "address": "0x0a9aaa1c7542b42233ac7ffda364e97ade21f160", + "symbol": "VALX", + "decimals": 18, + "name": "Validator", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/10/0x0a9aaa1c7542b42233ac7ffda364e97ade21f160.png", + "aggregators": ["Uniswap", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x678d8f4ba8dfe6bad51796351824dcceceaeff2b": { + "address": "0x678d8f4ba8dfe6bad51796351824dcceceaeff2b", + "symbol": "VEKWENTA", + "decimals": 18, + "name": "veKwenta", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/10/0x678d8f4ba8dfe6bad51796351824dcceceaeff2b.png", + "aggregators": ["Uniswap", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x888a88eb9de9401237dbf543eaaf4b90b6574261": { + "address": "0x888a88eb9de9401237dbf543eaaf4b90b6574261", + "symbol": "VSP", + "decimals": 18, + "name": "VesperToken", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/10/0x888a88eb9de9401237dbf543eaaf4b90b6574261.png", + "aggregators": ["Uniswap", "Socket", "Rango"], + "occurrences": 3 + }, + "0x17b4f9da9e06d395db5de839e299cf829469e7ef": { + "address": "0x17b4f9da9e06d395db5de839e299cf829469e7ef", + "symbol": "VUSD", + "decimals": 18, + "name": "VUSD", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/10/0x17b4f9da9e06d395db5de839e299cf829469e7ef.png", + "aggregators": ["Uniswap", "Socket", "Rango"], + "occurrences": 3 + }, + "0x346e03f8cce9fe01dcb3d0da3e9d00dc2c0e08f0": { + "address": "0x346e03f8cce9fe01dcb3d0da3e9d00dc2c0e08f0", + "symbol": "WEETH", + "decimals": 18, + "name": "Wrapped eETH", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/10/0x346e03f8cce9fe01dcb3d0da3e9d00dc2c0e08f0.png", + "aggregators": ["Uniswap", "Socket", "Rango"], + "occurrences": 3 + }, + "0x6e4cc0ab2b4d2edafa6723cfa1582229f1dd1be1": { + "address": "0x6e4cc0ab2b4d2edafa6723cfa1582229f1dd1be1", + "symbol": "ZUSD", + "decimals": 6, + "name": "Z.com USD", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/10/0x6e4cc0ab2b4d2edafa6723cfa1582229f1dd1be1.png", + "aggregators": ["Uniswap", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x79af5dd14e855823fa3e9ecacdf001d99647d043": { + "address": "0x79af5dd14e855823fa3e9ecacdf001d99647d043", + "symbol": "JEUR", + "decimals": 18, + "name": "Jarvis Synthetic Euro", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/10/0x79af5dd14e855823fa3e9ecacdf001d99647d043.png", + "aggregators": ["LiFi", "Socket", "Rubic"], + "occurrences": 3 + }, + "0x259c1c2ed264402b5ed2f02bc7dc25a15c680c18": { + "address": "0x259c1c2ed264402b5ed2f02bc7dc25a15c680c18", + "symbol": "RING", + "decimals": 18, + "name": "OneRing", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/10/0x259c1c2ed264402b5ed2f02bc7dc25a15c680c18.png", + "aggregators": ["Socket", "Rubic", "Squid"], + "occurrences": 3 + }, + "0x67631ff69130ea1a6c4feaa4a0abf0a1e0148be7": { + "address": "0x67631ff69130ea1a6c4feaa4a0abf0a1e0148be7", + "symbol": "WGC", + "decimals": 6, + "name": "Wild Goat Coin", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/10/0x67631ff69130ea1a6c4feaa4a0abf0a1e0148be7.png", + "aggregators": ["Socket", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x2b1d36f5b61addaf7da7ebbd11b35fd8cfb0de31": { + "address": "0x2b1d36f5b61addaf7da7ebbd11b35fd8cfb0de31", + "symbol": "ITP", + "decimals": 18, + "name": "Interport Token", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/10/0x2b1d36f5b61addaf7da7ebbd11b35fd8cfb0de31.png", + "aggregators": ["Rubic", "Rango", "Sonarwatch"], + "occurrences": 3 + }, + "0x5df7abe3c51c01dcf6d1f1f9a0ab4dc3759869b9": { + "address": "0x5df7abe3c51c01dcf6d1f1f9a0ab4dc3759869b9", + "symbol": "SOONX", + "decimals": 18, + "name": "SoonChain", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/10/0x5df7abe3c51c01dcf6d1f1f9a0ab4dc3759869b9.png", + "aggregators": ["Rubic", "Rango", "Sonarwatch"], + "occurrences": 3 + }, + "0xddf7d080c82b8048baae54e376a3406572429b4e": { + "address": "0xddf7d080c82b8048baae54e376a3406572429b4e", + "symbol": "OOOOOO", + "decimals": 18, + "name": "GODDOG", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/10/0xddf7d080c82b8048baae54e376a3406572429b4e.png", + "aggregators": ["Rubic", "Squid", "Rango"], + "occurrences": 3 + }, + "0x513c7e3a9c69ca3e22550ef58ac1c0088e918fff": { + "address": "0x513c7e3a9c69ca3e22550ef58ac1c0088e918fff", + "symbol": "AOP", + "decimals": 18, + "name": "Aave v3 OP", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/10/0x513c7e3a9c69ca3e22550ef58ac1c0088e918fff.png", + "aggregators": [ + "CoinGecko", + "1inch", + "LiFi", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 6 + }, + "0x6d80113e533a2c0fe82eabd35f1875dcea89ea97": { + "address": "0x6d80113e533a2c0fe82eabd35f1875dcea89ea97", + "symbol": "ASUSD", + "decimals": 18, + "name": "Aave v3 sUSD", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/10/0x6d80113e533a2c0fe82eabd35f1875dcea89ea97.png", + "aggregators": [ + "CoinGecko", + "1inch", + "LiFi", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 6 + }, + "0x46777c76dbbe40fabb2aab99e33ce20058e76c59": { + "address": "0x46777c76dbbe40fabb2aab99e33ce20058e76c59", + "symbol": "L3", + "decimals": 18, + "name": "Layer3", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/10/0x46777c76dbbe40fabb2aab99e33ce20058e76c59.png", + "aggregators": [ + "CoinGecko", + "LiFi", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 6 + }, + "0x078f358208685046a11c85e8ad32895ded33a249": { + "address": "0x078f358208685046a11c85e8ad32895ded33a249", + "symbol": "AWBTC", + "decimals": 8, + "name": "Aave v3 WBTC", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/10/0x078f358208685046a11c85e8ad32895ded33a249.png", + "aggregators": [ + "CoinGecko", + "1inch", + "LiFi", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 6 + }, + "0x6ab707aca953edaefbc4fd23ba73294241490620": { + "address": "0x6ab707aca953edaefbc4fd23ba73294241490620", + "symbol": "AUSDT", + "decimals": 6, + "name": "Aave v3 USDT", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/10/0x6ab707aca953edaefbc4fd23ba73294241490620.png", + "aggregators": [ + "CoinGecko", + "1inch", + "LiFi", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 6 + }, + "0x724dc807b04555b71ed48a6896b6f41593b8c637": { + "address": "0x724dc807b04555b71ed48a6896b6f41593b8c637", + "symbol": "ARETH", + "decimals": 18, + "name": "Aave v3 rETH", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/10/0x724dc807b04555b71ed48a6896b6f41593b8c637.png", + "aggregators": [ + "CoinGecko", + "1inch", + "LiFi", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 6 + }, + "0x82e64f49ed5ec1bc6e43dad4fc8af9bb3a2312ee": { + "address": "0x82e64f49ed5ec1bc6e43dad4fc8af9bb3a2312ee", + "symbol": "ADAI", + "decimals": 18, + "name": "Aave v3 DAI", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/10/0x82e64f49ed5ec1bc6e43dad4fc8af9bb3a2312ee.png", + "aggregators": [ + "CoinGecko", + "1inch", + "LiFi", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 6 + }, + "0xf329e36c7bf6e5e86ce2150875a84ce77f477375": { + "address": "0xf329e36c7bf6e5e86ce2150875a84ce77f477375", + "symbol": "AAAVE", + "decimals": 18, + "name": "Aave v3 AAVE", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/10/0xf329e36c7bf6e5e86ce2150875a84ce77f477375.png", + "aggregators": [ + "CoinGecko", + "1inch", + "LiFi", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 6 + }, + "0x191c10aa4af7c30e871e70c95db0e4eb77237530": { + "address": "0x191c10aa4af7c30e871e70c95db0e4eb77237530", + "symbol": "ALINK", + "decimals": 18, + "name": "Aave v3 LINK", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/10/0x191c10aa4af7c30e871e70c95db0e4eb77237530.png", + "aggregators": [ + "CoinGecko", + "1inch", + "LiFi", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 6 + }, + "0xb12c13e66ade1f72f71834f2fc5082db8c091358": { + "address": "0xb12c13e66ade1f72f71834f2fc5082db8c091358", + "symbol": "ROOBEE", + "decimals": 18, + "name": "Roobee", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/10/0xb12c13e66ade1f72f71834f2fc5082db8c091358.png", + "aggregators": [ + "CoinGecko", + "LiFi", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 6 + }, + "0x625e7708f30ca75bfd92586e17077590c60eb4cd": { + "address": "0x625e7708f30ca75bfd92586e17077590c60eb4cd", + "symbol": "AUSDC", + "decimals": 6, + "name": "Aave v3 USDC", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/10/0x625e7708f30ca75bfd92586e17077590c60eb4cd.png", + "aggregators": [ + "CoinGecko", + "1inch", + "LiFi", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 6 + }, + "0xe50fa9b3c56ffb159cb0fca61f5c9d750e8128c8": { + "address": "0xe50fa9b3c56ffb159cb0fca61f5c9d750e8128c8", + "symbol": "AWETH", + "decimals": 18, + "name": "Aave v3 WETH", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/10/0xe50fa9b3c56ffb159cb0fca61f5c9d750e8128c8.png", + "aggregators": [ + "CoinGecko", + "1inch", + "LiFi", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 6 + }, + "0xc45a479877e1e9dfe9fcd4056c699575a1045daa": { + "address": "0xc45a479877e1e9dfe9fcd4056c699575a1045daa", + "symbol": "AWSTETH", + "decimals": 18, + "name": "Aave v3 wstETH", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/10/0xc45a479877e1e9dfe9fcd4056c699575a1045daa.png", + "aggregators": [ + "CoinGecko", + "1inch", + "LiFi", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 6 + }, + "0x8eb270e296023e9d92081fdf967ddd7878724424": { + "address": "0x8eb270e296023e9d92081fdf967ddd7878724424", + "symbol": "ALUSD", + "decimals": 18, + "name": "Aave v3 LUSD", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/10/0x8eb270e296023e9d92081fdf967ddd7878724424.png", + "aggregators": [ + "CoinGecko", + "1inch", + "LiFi", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 6 + }, + "0x15e770b95edd73fd96b02ece0266247d50895e76": { + "address": "0x15e770b95edd73fd96b02ece0266247d50895e76", + "symbol": "JRT", + "decimals": 18, + "name": "Jarvis Reward", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/10/0x15e770b95edd73fd96b02ece0266247d50895e76.png", + "aggregators": [ + "CoinGecko", + "LiFi", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 6 + }, + "0xee9801669c6138e84bd50deb500827b776777d28": { + "address": "0xee9801669c6138e84bd50deb500827b776777d28", + "symbol": "O3", + "decimals": 18, + "name": "O3 Swap", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/10/0xee9801669c6138e84bd50deb500827b776777d28.png", + "aggregators": [ + "CoinGecko", + "LiFi", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 6 + }, + "0x4e200fe2f3efb977d5fd9c430a41531fb04d97b8": { + "address": "0x4e200fe2f3efb977d5fd9c430a41531fb04d97b8", + "symbol": "ORDER", + "decimals": 18, + "name": "Orderly Network", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/10/0x4e200fe2f3efb977d5fd9c430a41531fb04d97b8.png", + "aggregators": [ + "CoinGecko", + "LiFi", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 6 + }, + "0x4a971e87ad1f61f7f3081645f52a99277ae917cf": { + "address": "0x4a971e87ad1f61f7f3081645f52a99277ae917cf", + "symbol": "XVS", + "decimals": 18, + "name": "Venus", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/10/0x4a971e87ad1f61f7f3081645f52a99277ae917cf.png", + "aggregators": [ + "CoinGecko", + "LiFi", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0xaf20f5f19698f1d19351028cd7103b63d30de7d7": { + "address": "0xaf20f5f19698f1d19351028cd7103b63d30de7d7", + "symbol": "WAGMI", + "decimals": 18, + "name": "Wagmi", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/10/0xaf20f5f19698f1d19351028cd7103b63d30de7d7.png", + "aggregators": [ + "CoinGecko", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0xb829b68f57cc546da7e5806a929e53be32a4625d": { + "address": "0xb829b68f57cc546da7e5806a929e53be32a4625d", + "symbol": "AXLETH", + "decimals": 18, + "name": "Axelar Wrapped Ether", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/10/0xb829b68f57cc546da7e5806a929e53be32a4625d.png", + "aggregators": [ + "CoinGecko", + "Rubic", + "Squid", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x7f5373ae26c3e8ffc4c77b7255df7ec1a9af52a6": { + "address": "0x7f5373ae26c3e8ffc4c77b7255df7ec1a9af52a6", + "symbol": "AXLUSDT", + "decimals": 6, + "name": "Bridged Tether (Axelar)", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/10/0x7f5373ae26c3e8ffc4c77b7255df7ec1a9af52a6.png", + "aggregators": [ + "CoinGecko", + "Rubic", + "Squid", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x5d3a1ff2b6bab83b63cd9ad0787074081a52ef34": { + "address": "0x5d3a1ff2b6bab83b63cd9ad0787074081a52ef34", + "symbol": "USDE", + "decimals": 18, + "name": "USDE", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/10/0x5d3a1ff2b6bab83b63cd9ad0787074081a52ef34.png", + "aggregators": ["CoinGecko", "LiFi", "Socket", "Rubic", "Rango"], + "occurrences": 5 + }, + "0xc4a65a93dd6cd9717551ebe827e8baee025d1d7e": { + "address": "0xc4a65a93dd6cd9717551ebe827e8baee025d1d7e", + "symbol": "PNP", + "decimals": 18, + "name": "Penpie", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/10/0xc4a65a93dd6cd9717551ebe827e8baee025d1d7e.png", + "aggregators": [ + "CoinGecko", + "LiFi", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x0000206329b97db379d5e1bf586bbdb969c63274": { + "address": "0x0000206329b97db379d5e1bf586bbdb969c63274", + "symbol": "USDA", + "decimals": 18, + "name": "USDA", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/10/0x0000206329b97db379d5e1bf586bbdb969c63274.png", + "aggregators": ["LiFi", "Socket", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 5 + }, + "0x41b94c5867f7f6217c9a30520cb3e793b1ee1b97": { + "address": "0x41b94c5867f7f6217c9a30520cb3e793b1ee1b97", + "symbol": "AXLTIA", + "decimals": 6, + "name": "Axelar Wrapped TIA", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/10/0x41b94c5867f7f6217c9a30520cb3e793b1ee1b97.png", + "aggregators": ["LiFi", "Socket", "Rubic", "Squid", "Rango"], + "occurrences": 5 + }, + "0x6f748fd65d7c71949ba6641b3248c4c191f3b322": { + "address": "0x6f748fd65d7c71949ba6641b3248c4c191f3b322", + "symbol": "EXAWBTC", + "decimals": 8, + "name": "Exactly WBTC", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/10/0x6f748fd65d7c71949ba6641b3248c4c191f3b322.png", + "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0xb9243c495117343981ec9f8aa2abffee54396fc0": { + "address": "0xb9243c495117343981ec9f8aa2abffee54396fc0", + "symbol": "USDPY", + "decimals": 18, + "name": "Perpetual Delta Neutral Yield (Optimism)", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/10/0xb9243c495117343981ec9f8aa2abffee54396fc0.png", + "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0x8fb94e08bc984497aaaf1a545ed455be89f8c675": { + "address": "0x8fb94e08bc984497aaaf1a545ed455be89f8c675", + "symbol": "TVPLS", + "decimals": 0, + "name": "Aktionariat TV PLUS AG Tokenized Shares", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/10/0x8fb94e08bc984497aaaf1a545ed455be89f8c675.png", + "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0xc02b55bb2fe3643e1955b13515396ce23b110f80": { + "address": "0xc02b55bb2fe3643e1955b13515396ce23b110f80", + "symbol": "AXRAS", + "decimals": 0, + "name": "Aktionariat Axelra Early Stage AG Tokenized Shares", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/10/0xc02b55bb2fe3643e1955b13515396ce23b110f80.png", + "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0xe64b4eb5eec6343887c4683da31f0ca62ea39ce3": { + "address": "0xe64b4eb5eec6343887c4683da31f0ca62ea39ce3", + "symbol": "BEES", + "decimals": 0, + "name": "Aktionariat BEE Digital Growth AG Tokenized Shares", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/10/0xe64b4eb5eec6343887c4683da31f0ca62ea39ce3.png", + "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0xa72f7df6c1454096387dbb74f70b3dac4f0a61f5": { + "address": "0xa72f7df6c1454096387dbb74f70b3dac4f0a61f5", + "symbol": "CAS", + "decimals": 0, + "name": "Aktionariat Carnault AG Tokenized Shares", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/10/0xa72f7df6c1454096387dbb74f70b3dac4f0a61f5.png", + "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0xed9b52e6d2df4ad9fc258254e1e5ef5ad0b3ca3c": { + "address": "0xed9b52e6d2df4ad9fc258254e1e5ef5ad0b3ca3c", + "symbol": "FDOS", + "decimals": 0, + "name": "Aktionariat Fieldoo AG Tokenized Shares", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/10/0xed9b52e6d2df4ad9fc258254e1e5ef5ad0b3ca3c.png", + "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0x5ad323d764301e057614edb0449f470d68ea9485": { + "address": "0x5ad323d764301e057614edb0449f470d68ea9485", + "symbol": "SIAS", + "decimals": 0, + "name": "Aktionariat SIA Swiss Influencer Award AG Tokenized Shares", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/10/0x5ad323d764301e057614edb0449f470d68ea9485.png", + "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0xf8e943f646816e4b51279b8934753821ed832dca": { + "address": "0xf8e943f646816e4b51279b8934753821ed832dca", + "symbol": "CTH", + "decimals": 18, + "name": "Cthulhu Finance", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/10/0xf8e943f646816e4b51279b8934753821ed832dca.png", + "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0x6926b434cce9b5b7966ae1bfeef6d0a7dcf3a8bb": { + "address": "0x6926b434cce9b5b7966ae1bfeef6d0a7dcf3a8bb", + "symbol": "EXAUSDC", + "decimals": 6, + "name": "Exactly USD Coin", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/10/0x6926b434cce9b5b7966ae1bfeef6d0a7dcf3a8bb.png", + "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0xa430a427bd00210506589906a71b54d6c256cedb": { + "address": "0xa430a427bd00210506589906a71b54d6c256cedb", + "symbol": "EXAOP", + "decimals": 18, + "name": "Exactly Optimism", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/10/0xa430a427bd00210506589906a71b54d6c256cedb.png", + "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0x065399a1e5522af1c9044c18ce60ec70d64d74a1": { + "address": "0x065399a1e5522af1c9044c18ce60ec70d64d74a1", + "symbol": "FNLS", + "decimals": 0, + "name": "Aktionariat Finelli Studios AG Tokenized Shares", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/10/0x065399a1e5522af1c9044c18ce60ec70d64d74a1.png", + "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0x22ab31cd55130435b5efbf9224b6a9d5ec36533f": { + "address": "0x22ab31cd55130435b5efbf9224b6a9d5ec36533f", + "symbol": "EXAWSTETH", + "decimals": 18, + "name": "Exactly Wrapped stETH", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/10/0x22ab31cd55130435b5efbf9224b6a9d5ec36533f.png", + "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0x69420f9e38a4e60a62224c489be4bf7a94402496": { + "address": "0x69420f9e38a4e60a62224c489be4bf7a94402496", + "symbol": "MONEY", + "decimals": 18, + "name": "Defi.money", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/10/0x69420f9e38a4e60a62224c489be4bf7a94402496.png", + "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0xb5090d514bcaca7dafb7e52763658844121f346d": { + "address": "0xb5090d514bcaca7dafb7e52763658844121f346d", + "symbol": "BNRY", + "decimals": 18, + "name": "Binary Holdings", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/10/0xb5090d514bcaca7dafb7e52763658844121f346d.png", + "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0x0d82b5d3a8420c285c6d353a6bdc30d164bb50f0": { + "address": "0x0d82b5d3a8420c285c6d353a6bdc30d164bb50f0", + "symbol": "SPOS", + "decimals": 0, + "name": "Aktionariat Sportsparadise Switzerland AG Tokenized Shares", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/10/0x0d82b5d3a8420c285c6d353a6bdc30d164bb50f0.png", + "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0x071682832d213638f8eda67a873262e581a4006d": { + "address": "0x071682832d213638f8eda67a873262e581a4006d", + "symbol": "VRGNS", + "decimals": 0, + "name": "Aktionariat Vereign AG Tokenized Shares", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/10/0x071682832d213638f8eda67a873262e581a4006d.png", + "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0x3ed9acaac7bd974eb83a8ea6432a239e3c829d5d": { + "address": "0x3ed9acaac7bd974eb83a8ea6432a239e3c829d5d", + "symbol": "2192", + "decimals": 18, + "name": "LERNITAS", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/10/0x3ed9acaac7bd974eb83a8ea6432a239e3c829d5d.png", + "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0xd6c67ff71a82f1d994d94fa01295467d273d7324": { + "address": "0xd6c67ff71a82f1d994d94fa01295467d273d7324", + "symbol": "DDCS", + "decimals": 0, + "name": "Aktionariat DDC Schweiz AG Tokenized Shares", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/10/0xd6c67ff71a82f1d994d94fa01295467d273d7324.png", + "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0xc26921b5b9ee80773774d36c84328ccb22c3a819": { + "address": "0xc26921b5b9ee80773774d36c84328ccb22c3a819", + "symbol": "WOPTIDOGE", + "decimals": 18, + "name": "Wrapped OptiDoge", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/10/0xc26921b5b9ee80773774d36c84328ccb22c3a819.png", + "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0xe3b3a464ee575e8e25d2508918383b89c832f275": { + "address": "0xe3b3a464ee575e8e25d2508918383b89c832f275", + "symbol": "PUSDC.E", + "decimals": 6, + "name": "Prize USDC.e - Aave", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/10/0xe3b3a464ee575e8e25d2508918383b89c832f275.png", + "aggregators": ["CoinGecko", "LiFi", "Rubic", "Rango"], + "occurrences": 4 + }, + "0x10b3667304130ecc9c972008459249e8141ced97": { + "address": "0x10b3667304130ecc9c972008459249e8141ced97", + "symbol": "CFES", + "decimals": 0, + "name": "Aktionariat Clever Forever Education AG Tokenized Shares", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/10/0x10b3667304130ecc9c972008459249e8141ced97.png", + "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0xc04fb38f10ad352c5f16bd4546f7456e7f1a2d9e": { + "address": "0xc04fb38f10ad352c5f16bd4546f7456e7f1a2d9e", + "symbol": "MNTO", + "decimals": 18, + "name": "Minato", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/10/0xc04fb38f10ad352c5f16bd4546f7456e7f1a2d9e.png", + "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0x94025780a1ab58868d9b2dbbb775f44b32e8e6e5": { + "address": "0x94025780a1ab58868d9b2dbbb775f44b32e8e6e5", + "symbol": "BETS", + "decimals": 18, + "name": "BetSwirl", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/10/0x94025780a1ab58868d9b2dbbb775f44b32e8e6e5.png", + "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0x42069d11a2cc72388a2e06210921e839cfbd3280": { + "address": "0x42069d11a2cc72388a2e06210921e839cfbd3280", + "symbol": "GNOME", + "decimals": 18, + "name": "GnomeLand", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/10/0x42069d11a2cc72388a2e06210921e839cfbd3280.png", + "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0xd336c74b840f9962cf2c666f8666d6d61ec24440": { + "address": "0xd336c74b840f9962cf2c666f8666d6d61ec24440", + "symbol": "BALN", + "decimals": 18, + "name": "Balanced", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/10/0xd336c74b840f9962cf2c666f8666d6d61ec24440.png", + "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0xa3b615667cbd33cfc69843bf11fbb2a1d926bd46": { + "address": "0xa3b615667cbd33cfc69843bf11fbb2a1d926bd46", + "symbol": "MPENDLE", + "decimals": 18, + "name": "mPendle", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/10/0xa3b615667cbd33cfc69843bf11fbb2a1d926bd46.png", + "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0xe2dca969624795985f2f083bcd0b674337ba130a": { + "address": "0xe2dca969624795985f2f083bcd0b674337ba130a", + "symbol": "SKR", + "decimals": 18, + "name": "Saakuru", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/10/0xe2dca969624795985f2f083bcd0b674337ba130a.png", + "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0x50549be7e21c3dc0db03c3abab83e1a78d07e6e0": { + "address": "0x50549be7e21c3dc0db03c3abab83e1a78d07e6e0", + "symbol": "IONUSDC", + "decimals": 6, + "name": "Ionic USD Coin", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/10/0x50549be7e21c3dc0db03c3abab83e1a78d07e6e0.png", + "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0xb2918350826c1fb3c8b25a553b5d49611698206f": { + "address": "0xb2918350826c1fb3c8b25a553b5d49611698206f", + "symbol": "IONUSDT", + "decimals": 6, + "name": "Ionic Tether USD", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/10/0xb2918350826c1fb3c8b25a553b5d49611698206f.png", + "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0xf7dc37493e2e375dfdebec75e71d555af68648bf": { + "address": "0xf7dc37493e2e375dfdebec75e71d555af68648bf", + "symbol": "UTU", + "decimals": 18, + "name": "UTU Coin", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/10/0xf7dc37493e2e375dfdebec75e71d555af68648bf.png", + "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0x5f5292fe4583f476ab90fbf247999816a9503f9e": { + "address": "0x5f5292fe4583f476ab90fbf247999816a9503f9e", + "symbol": "SMP", + "decimals": 18, + "name": "Seamoon Protocol", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/10/0x5f5292fe4583f476ab90fbf247999816a9503f9e.png", + "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0x8413041a7702603d9d991f2c4add29e4e8a241f8": { + "address": "0x8413041a7702603d9d991f2c4add29e4e8a241f8", + "symbol": "ROUTE", + "decimals": 18, + "name": "Router Protocol [OLD]", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/10/0x8413041a7702603d9d991f2c4add29e4e8a241f8.png", + "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0x35b5a3bf31b67f832230da9424824edc9f7ad98c": { + "address": "0x35b5a3bf31b67f832230da9424824edc9f7ad98c", + "symbol": "PT", + "decimals": 18, + "name": "Phemex Token", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/10/0x35b5a3bf31b67f832230da9424824edc9f7ad98c.png", + "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0xd3ac016b1b8c80eeadde4d186a9138c9324e4189": { + "address": "0xd3ac016b1b8c80eeadde4d186a9138c9324e4189", + "symbol": "OK", + "decimals": 18, + "name": "Okcash", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/10/0xd3ac016b1b8c80eeadde4d186a9138c9324e4189.png", + "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0xf899e3909b4492859d44260e1de41a9e663e70f5": { + "address": "0xf899e3909b4492859d44260e1de41a9e663e70f5", + "symbol": "RADIO", + "decimals": 18, + "name": "RadioShack", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/10/0xf899e3909b4492859d44260e1de41a9e663e70f5.png", + "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0x764a726d9ced0433a8d7643335919deb03a9a935": { + "address": "0x764a726d9ced0433a8d7643335919deb03a9a935", + "symbol": "POKT", + "decimals": 6, + "name": "Pocket Network", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/10/0x764a726d9ced0433a8d7643335919deb03a9a935.png", + "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0x000000000000012def132e61759048be5b5c6033": { + "address": "0x000000000000012def132e61759048be5b5c6033", + "symbol": "CX", + "decimals": 18, + "name": "Cortex", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/10/0x000000000000012def132e61759048be5b5c6033.png", + "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0xea50f402653c41cadbafd1f788341db7b7f37816": { + "address": "0xea50f402653c41cadbafd1f788341db7b7f37816", + "symbol": "SGYD", + "decimals": 18, + "name": "sGYD", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/10/0xea50f402653c41cadbafd1f788341db7b7f37816.png", + "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0x1d1498166ddceee616a6d99868e1e0677300056f": { + "address": "0x1d1498166ddceee616a6d99868e1e0677300056f", + "symbol": "SPACE", + "decimals": 18, + "name": "Space Token", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/10/0x1d1498166ddceee616a6d99868e1e0677300056f.png", + "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0xa6ae8f29e0031340ea5dbe11c2da4466cde34464": { + "address": "0xa6ae8f29e0031340ea5dbe11c2da4466cde34464", + "symbol": "SDUSD", + "decimals": 18, + "name": "Davos Protocol Staked DUSD", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/10/0xa6ae8f29e0031340ea5dbe11c2da4466cde34464.png", + "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0xbcb49fcb41899e31e442a4d7439964966e0c9b28": { + "address": "0xbcb49fcb41899e31e442a4d7439964966e0c9b28", + "symbol": "SLN", + "decimals": 18, + "name": "Smart Layer Network", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/10/0xbcb49fcb41899e31e442a4d7439964966e0c9b28.png", + "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0xdd462e9399624dfcf73018793bd50a7ef47940b9": { + "address": "0xdd462e9399624dfcf73018793bd50a7ef47940b9", + "symbol": "MEED", + "decimals": 18, + "name": "Meeds DAO", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/10/0xdd462e9399624dfcf73018793bd50a7ef47940b9.png", + "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0xe9185ee218cae427af7b9764a011bb89fea761b4": { + "address": "0xe9185ee218cae427af7b9764a011bb89fea761b4", + "symbol": "BRZ", + "decimals": 18, + "name": "BRZ Token", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/10/0xe9185ee218cae427af7b9764a011bb89fea761b4.png", + "aggregators": ["Uniswap", "Socket", "Rubic", "Rango"], + "occurrences": 4 + }, + "0x44805a7597ab90624e0b4aa6947a47f358ae4ef1": { + "address": "0x44805a7597ab90624e0b4aa6947a47f358ae4ef1", + "symbol": "COR", + "decimals": 18, + "name": "Cortensor", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/10/0x44805a7597ab90624e0b4aa6947a47f358ae4ef1.png", + "aggregators": ["Uniswap", "LiFi", "Socket", "Rango"], + "occurrences": 4 + }, + "0xca5d8f8a8d49439357d3cf46ca2e720702f132b8": { + "address": "0xca5d8f8a8d49439357d3cf46ca2e720702f132b8", + "symbol": "GYD", + "decimals": 18, + "name": "Gyroscope GYD", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/10/0xca5d8f8a8d49439357d3cf46ca2e720702f132b8.png", + "aggregators": ["LiFi", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0x2416092f143378750bb29b79ed961ab195cceea5": { + "address": "0x2416092f143378750bb29b79ed961ab195cceea5", + "symbol": "EZETH", + "decimals": 18, + "name": "Renzo Restaked ETH", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/10/0x2416092f143378750bb29b79ed961ab195cceea5.png", + "aggregators": ["LiFi", "Socket", "Squid", "Rango"], + "occurrences": 4 + }, + "0x300d2c875c6fb8ce4bf5480b4d34b7c9ea8a33a4": { + "address": "0x300d2c875c6fb8ce4bf5480b4d34b7c9ea8a33a4", + "symbol": "PXETH", + "decimals": 18, + "name": "Pirex Ether OFT", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/10/0x300d2c875c6fb8ce4bf5480b4d34b7c9ea8a33a4.png", + "aggregators": ["LiFi", "Socket", "Squid", "Rango"], + "occurrences": 4 + }, + "0x88dfaaabaf06f3a41d2606ea98bc8eda109abebb": { + "address": "0x88dfaaabaf06f3a41d2606ea98bc8eda109abebb", + "symbol": "AXLWMAI", + "decimals": 18, + "name": "Axelar Wrapped WMAI", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/10/0x88dfaaabaf06f3a41d2606ea98bc8eda109abebb.png", + "aggregators": ["LiFi", "Rubic", "Squid", "Rango"], + "occurrences": 4 + }, + "0xb448ec505c924944ca8b2c55ef05c299ee0781df": { + "address": "0xb448ec505c924944ca8b2c55ef05c299ee0781df", + "symbol": "AXLKNC", + "decimals": 18, + "name": "Axelar Wrapped KNC", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/10/0xb448ec505c924944ca8b2c55ef05c299ee0781df.png", + "aggregators": ["LiFi", "Rubic", "Squid", "Rango"], + "occurrences": 4 + }, + "0xecc68d0451e20292406967fe7c04280e5238ac7d": { + "address": "0xecc68d0451e20292406967fe7c04280e5238ac7d", + "symbol": "FRXETH", + "decimals": 18, + "name": "Frax Ether", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/10/0xecc68d0451e20292406967fe7c04280e5238ac7d.png", + "aggregators": ["LiFi", "Rubic", "Squid", "Rango"], + "occurrences": 4 + }, + "0x087c440f251ff6cfe62b86dde1be558b95b4bb9b": { + "address": "0x087c440f251ff6cfe62b86dde1be558b95b4bb9b", + "symbol": "BOLD", + "decimals": 18, + "name": "Liquity BOLD", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/10/0x087c440f251ff6cfe62b86dde1be558b95b4bb9b.png", + "aggregators": ["Socket", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0xca5921df65e2e1b0b98ae91c0187ba80d4124898": { + "address": "0xca5921df65e2e1b0b98ae91c0187ba80d4124898", + "symbol": "LIQUIDRESERVE", + "decimals": 18, + "name": "EtherFi Liquid Reserve", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/10/0xca5921df65e2e1b0b98ae91c0187ba80d4124898.png", + "aggregators": ["CoinGecko", "Rubic", "Rango"], + "occurrences": 3 + }, + "0xe7ba07519dfa06e60059563f484d6090dedf21b3": { + "address": "0xe7ba07519dfa06e60059563f484d6090dedf21b3", + "symbol": "MRE7ETH", + "decimals": 18, + "name": "Midas Re7 Ethereum", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/10/0xe7ba07519dfa06e60059563f484d6090dedf21b3.png", + "aggregators": ["CoinGecko", "Rubic", "Rango"], + "occurrences": 3 + }, + "0xcc476b1a49bcdf5192561e87b6fb8ea78aa28c13": { + "address": "0xcc476b1a49bcdf5192561e87b6fb8ea78aa28c13", + "symbol": "WEEUR", + "decimals": 18, + "name": "Liquid Euro", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/10/0xcc476b1a49bcdf5192561e87b6fb8ea78aa28c13.png", + "aggregators": ["CoinGecko", "Rubic", "Rango"], + "occurrences": 3 + }, + "0xc3997ff81f2831929499c4ee4ee4e0f08f42d4d8": { + "address": "0xc3997ff81f2831929499c4ee4ee4e0f08f42d4d8", + "symbol": "VETH", + "decimals": 18, + "name": "Bifrost Voucher ETH", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/10/0xc3997ff81f2831929499c4ee4ee4e0f08f42d4d8.png", + "aggregators": ["CoinGecko", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x949185d3be66775ea648f4a306740ea9eff9c567": { + "address": "0x949185d3be66775ea648f4a306740ea9eff9c567", + "symbol": "YEL", + "decimals": 18, + "name": "YELToken", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/10/0x949185d3be66775ea648f4a306740ea9eff9c567.png", + "aggregators": ["CoinGecko", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x1b5f7fa46ed0f487f049c42f374ca4827d65a264": { + "address": "0x1b5f7fa46ed0f487f049c42f374ca4827d65a264", + "symbol": "DEURO", + "decimals": 18, + "name": "DEURO", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/10/0x1b5f7fa46ed0f487f049c42f374ca4827d65a264.png", + "aggregators": ["CoinGecko", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x4772d2e014f9fc3a820c444e3313968e9a5c8121": { + "address": "0x4772d2e014f9fc3a820c444e3313968e9a5c8121", + "symbol": "YUSD", + "decimals": 18, + "name": "YUSD", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/10/0x4772d2e014f9fc3a820c444e3313968e9a5c8121.png", + "aggregators": ["CoinGecko", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x1f444e9fb735b2438bee3b841efea060d235abf1": { + "address": "0x1f444e9fb735b2438bee3b841efea060d235abf1", + "symbol": "OPUL", + "decimals": 18, + "name": "OPUL", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/10/0x1f444e9fb735b2438bee3b841efea060d235abf1.png", + "aggregators": ["CoinGecko", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x5e0f5388896a6b6232abf076ee89bc6dfc043685": { + "address": "0x5e0f5388896a6b6232abf076ee89bc6dfc043685", + "symbol": "AJNA", + "decimals": 18, + "name": "Ajna", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/10/0x5e0f5388896a6b6232abf076ee89bc6dfc043685.png", + "aggregators": ["Uniswap", "Socket", "Rango"], + "occurrences": 3 + }, + "0xefcc1bacd639619135746bd8113b70abbfa6c7b0": { + "address": "0xefcc1bacd639619135746bd8113b70abbfa6c7b0", + "symbol": "CTRAVL", + "decimals": 4, + "name": "Travel Deals", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/10/0xefcc1bacd639619135746bd8113b70abbfa6c7b0.png", + "aggregators": ["Uniswap", "LiFi", "Rango"], + "occurrences": 3 + }, + "0x64ba55a341ec586a4c5d58d6297cde5125ab55bc": { + "address": "0x64ba55a341ec586a4c5d58d6297cde5125ab55bc", + "symbol": "SCRY", + "decimals": 18, + "name": "Scry Protocol", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/10/0x64ba55a341ec586a4c5d58d6297cde5125ab55bc.png", + "aggregators": ["Uniswap", "LiFi", "Rango"], + "occurrences": 3 + }, + "0xa925f4057d6e6c8faf8bde537ad14ba91a1d0337": { + "address": "0xa925f4057d6e6c8faf8bde537ad14ba91a1d0337", + "symbol": "SYNTH", + "decimals": 18, + "name": "Synth", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/10/0xa925f4057d6e6c8faf8bde537ad14ba91a1d0337.png", + "aggregators": ["Uniswap", "LiFi", "Rango"], + "occurrences": 3 + }, + "0x5ac3f9edb4896db1edc0ef9d91421e740083e6e8": { + "address": "0x5ac3f9edb4896db1edc0ef9d91421e740083e6e8", + "symbol": "XRING", + "decimals": 18, + "name": "Darwinia Network xRING", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/10/0x5ac3f9edb4896db1edc0ef9d91421e740083e6e8.png", + "aggregators": ["Uniswap", "Socket", "Rango"], + "occurrences": 3 + }, + "0xb0ffa8000886e57f86dd5264b9582b2ad87b2b91": { + "address": "0xb0ffa8000886e57f86dd5264b9582b2ad87b2b91", + "symbol": "W", + "decimals": 18, + "name": "Wormhole Token", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/10/0xb0ffa8000886e57f86dd5264b9582b2ad87b2b91.png", + "aggregators": ["LiFi", "Socket", "Rubic"], + "occurrences": 3 + }, + "0x894134a25a5fac1c2c26f1d8fbf05111a3cb9487": { + "address": "0x894134a25a5fac1c2c26f1d8fbf05111a3cb9487", + "symbol": "GRAI", + "decimals": 18, + "name": "Gravita Debt Token", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/10/0x894134a25a5fac1c2c26f1d8fbf05111a3cb9487.png", + "aggregators": ["LiFi", "Socket", "Rango"], + "occurrences": 3 + }, + "0x39fde572a18448f8139b7788099f0a0740f51205": { + "address": "0x39fde572a18448f8139b7788099f0a0740f51205", + "symbol": "OATH", + "decimals": 18, + "name": "Oath Token", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/10/0x39fde572a18448f8139b7788099f0a0740f51205.png", + "aggregators": ["LiFi", "Socket", "Rubic"], + "occurrences": 3 + }, + "0x2d691c2492e056adcae7ca317569af25910fc4cb": { + "address": "0x2d691c2492e056adcae7ca317569af25910fc4cb", + "symbol": "ZUNETH", + "decimals": 18, + "name": "Zunami ETH", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/10/0x2d691c2492e056adcae7ca317569af25910fc4cb.png", + "aggregators": ["LiFi", "Rubic", "Sonarwatch"], + "occurrences": 3 + }, + "0xdc30b3bde2734a0bc55af01b38943ef04aacb423": { + "address": "0xdc30b3bde2734a0bc55af01b38943ef04aacb423", + "symbol": "ZUNUSD", + "decimals": 18, + "name": "Zunami USD", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/10/0xdc30b3bde2734a0bc55af01b38943ef04aacb423.png", + "aggregators": ["LiFi", "Rubic", "Sonarwatch"], + "occurrences": 3 + }, + "0xdc8840a0a1ebf8be5ace62a7d9360dfcb26adffc": { + "address": "0xdc8840a0a1ebf8be5ace62a7d9360dfcb26adffc", + "symbol": "SMILE", + "decimals": 13, + "name": "SMILE", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/10/0xdc8840a0a1ebf8be5ace62a7d9360dfcb26adffc.png", + "aggregators": ["Socket", "Rubic", "Rango"], + "occurrences": 3 + }, + "0xc96f4f893286137ac17e07ae7f217ffca5db3ab6": { + "address": "0xc96f4f893286137ac17e07ae7f217ffca5db3ab6", + "symbol": "NFTE", + "decimals": 18, + "name": "NFTE", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/10/0xc96f4f893286137ac17e07ae7f217ffca5db3ab6.png", + "aggregators": ["Socket", "Rubic", "Rango"], + "occurrences": 3 + }, + "0xbc404429558292ee2d769e57d57d6e74bbd2792d": { + "address": "0xbc404429558292ee2d769e57d57d6e74bbd2792d", + "symbol": "SUSX", + "decimals": 18, + "name": "Savings USX", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/10/0xbc404429558292ee2d769e57d57d6e74bbd2792d.png", + "aggregators": ["Rubic", "Rango", "Sonarwatch"], + "occurrences": 3 + }, + "0xd42fe55e8a43b546aa75fda6483073be1d7ef74c": { + "address": "0xd42fe55e8a43b546aa75fda6483073be1d7ef74c", + "symbol": "NEROX", + "decimals": 18, + "name": "NEROX AI", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/10/0xd42fe55e8a43b546aa75fda6483073be1d7ef74c.png", + "aggregators": ["Rubic", "Rango", "Sonarwatch"], + "occurrences": 3 + }, + "0x3b6564b5da73a41d3a66e6558a98fd0e9e1e77ad": { + "address": "0x3b6564b5da73a41d3a66e6558a98fd0e9e1e77ad", + "symbol": "UTS", + "decimals": 18, + "name": "Unitus", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/10/0x3b6564b5da73a41d3a66e6558a98fd0e9e1e77ad.png", + "aggregators": ["Rubic", "Rango", "Sonarwatch"], + "occurrences": 3 + }, + "0x5c0ea461fe5e6f3b4f90a071e72243c14c6abfd7": { + "address": "0x5c0ea461fe5e6f3b4f90a071e72243c14c6abfd7", + "symbol": "AMU", + "decimals": 9, + "name": "Amulet Protocol", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/10/0x5c0ea461fe5e6f3b4f90a071e72243c14c6abfd7.png", + "aggregators": ["Rubic", "Rango", "Sonarwatch"], + "occurrences": 3 + }, + "0xd08c3f25862077056cb1b710937576af899a4959": { + "address": "0xd08c3f25862077056cb1b710937576af899a4959", + "symbol": "INSTETH", + "decimals": 18, + "name": "Inception stETH", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/10/0xd08c3f25862077056cb1b710937576af899a4959.png", + "aggregators": ["Rubic", "Rango", "Sonarwatch"], + "occurrences": 3 + }, + "0x3925f9820c312d968644f12ebd314c13558a7c05": { + "address": "0x3925f9820c312d968644f12ebd314c13558a7c05", + "symbol": "MASKS", + "decimals": 18, + "name": "Masks", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/10/0x3925f9820c312d968644f12ebd314c13558a7c05.png", + "aggregators": ["Rubic", "Rango", "Sonarwatch"], + "occurrences": 3 + }, + "0x8fc7c1109c08904160d6ae36482b79814d45eb78": { + "address": "0x8fc7c1109c08904160d6ae36482b79814d45eb78", + "symbol": "TEC", + "decimals": 18, + "name": "Token Engineering Commons", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/10/0x8fc7c1109c08904160d6ae36482b79814d45eb78.png", + "aggregators": ["Rubic", "Rango", "Sonarwatch"], + "occurrences": 3 + }, + "0x0a7b751fcdbbaa8bb988b9217ad5fb5cfe7bf7a0": { + "address": "0x0a7b751fcdbbaa8bb988b9217ad5fb5cfe7bf7a0", + "symbol": "ITP", + "decimals": 18, + "name": "Infinite Trading Protocol", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/10/0x0a7b751fcdbbaa8bb988b9217ad5fb5cfe7bf7a0.png", + "aggregators": [ + "CoinGecko", + "LiFi", + "Socket", + "Rubic", + "Squid", + "Rango" + ], + "occurrences": 6 + }, + "0x1610e3c85dd44af31ed7f33a63642012dca0c5a5": { + "address": "0x1610e3c85dd44af31ed7f33a63642012dca0c5a5", + "symbol": "MSETH", + "decimals": 18, + "name": "MSETH", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/10/0x1610e3c85dd44af31ed7f33a63642012dca0c5a5.png", + "aggregators": [ + "CoinGecko", + "LiFi", + "Socket", + "Rubic", + "Squid", + "Rango" + ], + "occurrences": 6 + }, + "0x9dabae7274d28a45f0b65bf8ed201a5731492ca0": { + "address": "0x9dabae7274d28a45f0b65bf8ed201a5731492ca0", + "symbol": "MSUSD", + "decimals": 18, + "name": "MSUSD", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/10/0x9dabae7274d28a45f0b65bf8ed201a5731492ca0.png", + "aggregators": [ + "CoinGecko", + "LiFi", + "Socket", + "Rubic", + "Squid", + "Rango" + ], + "occurrences": 6 + }, + "0x2ed6222cb75e353b8789bec7bb443b7ec9022021": { + "address": "0x2ed6222cb75e353b8789bec7bb443b7ec9022021", + "symbol": "KRL", + "decimals": 18, + "name": "KRYLL", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/10/0x2ed6222cb75e353b8789bec7bb443b7ec9022021.png", + "aggregators": [ + "Uniswap", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0xedf38688b27036816a50185caa430d5479e1c63e": { + "address": "0xedf38688b27036816a50185caa430d5479e1c63e", + "symbol": "OVER", + "decimals": 18, + "name": "Overtime", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/10/0xedf38688b27036816a50185caa430d5479e1c63e.png", + "aggregators": ["CoinGecko", "LiFi", "Rubic", "Squid", "Rango"], + "occurrences": 5 + }, + "0x5a7facb970d094b6c7ff1df0ea68d99e6e73cbff": { + "address": "0x5a7facb970d094b6c7ff1df0ea68d99e6e73cbff", + "symbol": "WEETH", + "decimals": 18, + "name": "WEETH", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/10/0x5a7facb970d094b6c7ff1df0ea68d99e6e73cbff.png", + "aggregators": ["CoinGecko", "LiFi", "Socket", "Rubic", "Rango"], + "occurrences": 5 + }, + "0x58538e6a46e07434d7e7375bc268d3cb839c0133": { + "address": "0x58538e6a46e07434d7e7375bc268d3cb839c0133", + "symbol": "ENA", + "decimals": 18, + "name": "ENA", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/10/0x58538e6a46e07434d7e7375bc268d3cb839c0133.png", + "aggregators": ["CoinGecko", "LiFi", "Socket", "Rubic", "Rango"], + "occurrences": 5 + }, + "0x211cc4dd073734da055fbf44a2b4667d5e5fe5d2": { + "address": "0x211cc4dd073734da055fbf44a2b4667d5e5fe5d2", + "symbol": "SUSDE", + "decimals": 18, + "name": "SUSDE", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/10/0x211cc4dd073734da055fbf44a2b4667d5e5fe5d2.png", + "aggregators": ["CoinGecko", "LiFi", "Socket", "Rubic", "Rango"], + "occurrences": 5 + }, + "0x80137510979822322193fc997d400d5a6c747bf7": { + "address": "0x80137510979822322193fc997d400d5a6c747bf7", + "symbol": "STONE", + "decimals": 17, + "name": "StakeStone ETH", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/10/0x80137510979822322193fc997d400d5a6c747bf7.png", + "aggregators": [ + "CoinGecko", + "LiFi", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x647fe0cca3df596ba414c8c600d441bb3d10d616": { + "address": "0x647fe0cca3df596ba414c8c600d441bb3d10d616", + "symbol": "BOSON", + "decimals": 18, + "name": "Boson Token", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/10/0x647fe0cca3df596ba414c8c600d441bb3d10d616.png", + "aggregators": ["Uniswap", "LiFi", "Socket", "Rubic", "Rango"], + "occurrences": 5 + }, + "0x81c9a7b55a4df39a9b7b5f781ec0e53539694873": { + "address": "0x81c9a7b55a4df39a9b7b5f781ec0e53539694873", + "symbol": "EXAUSDC.E", + "decimals": 6, + "name": "Exactly USD.e Coin", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/10/0x81c9a7b55a4df39a9b7b5f781ec0e53539694873.png", + "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0xc47da4cb96ce65a96844a01bfae509f9d5454534": { + "address": "0xc47da4cb96ce65a96844a01bfae509f9d5454534", + "symbol": "JPYT", + "decimals": 6, + "name": "Dephaser JPY", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/10/0xc47da4cb96ce65a96844a01bfae509f9d5454534.png", + "aggregators": ["CoinGecko", "Rubic", "Squid", "Rango"], + "occurrences": 4 + }, + "0x060cb087a9730e13aa191f31a6d86bff8dfcdcc0": { + "address": "0x060cb087a9730e13aa191f31a6d86bff8dfcdcc0", + "symbol": "OHM", + "decimals": 9, + "name": "OHM", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/10/0x060cb087a9730e13aa191f31a6d86bff8dfcdcc0.png", + "aggregators": ["CoinGecko", "LiFi", "Rubic", "Rango"], + "occurrences": 4 + }, + "0x3d63825b0d8669307366e6c8202f656b9e91d368": { + "address": "0x3d63825b0d8669307366e6c8202f656b9e91d368", + "symbol": "WGC", + "decimals": 6, + "name": "Wild Goat Coin", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/10/0x3d63825b0d8669307366e6c8202f656b9e91d368.png", + "aggregators": ["CoinGecko", "Socket", "Rubic", "Rango"], + "occurrences": 4 + }, + "0xe231db5f348d709239ef1741ea30961b3b635a61": { + "address": "0xe231db5f348d709239ef1741ea30961b3b635a61", + "symbol": "YNETHX", + "decimals": 18, + "name": "YNETHX", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/10/0xe231db5f348d709239ef1741ea30961b3b635a61.png", + "aggregators": ["CoinGecko", "Socket", "Rubic", "Rango"], + "occurrences": 4 + }, + "0x248f43b622ce2f35a14db3fc528284730b619cd5": { + "address": "0x248f43b622ce2f35a14db3fc528284730b619cd5", + "symbol": "SPECTRA", + "decimals": 14, + "name": "Spectra", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/10/0x248f43b622ce2f35a14db3fc528284730b619cd5.png", + "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0x9923db8d7fbacc2e69e87fad19b886c81cd74979": { + "address": "0x9923db8d7fbacc2e69e87fad19b886c81cd74979", + "symbol": "HYPER", + "decimals": 18, + "name": "Hyperlane", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/10/0x9923db8d7fbacc2e69e87fad19b886c81cd74979.png", + "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0xfd28f108e95f4d41daae9dbfff707d677985998e": { + "address": "0xfd28f108e95f4d41daae9dbfff707d677985998e", + "symbol": "PRL", + "decimals": 18, + "name": "Parallel Governance", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/10/0xfd28f108e95f4d41daae9dbfff707d677985998e.png", + "aggregators": ["CoinGecko", "LiFi", "Rubic", "Rango"], + "occurrences": 4 + }, + "0x084382d1cc4f4dfd1769b1cc1ac2a9b1f8365e90": { + "address": "0x084382d1cc4f4dfd1769b1cc1ac2a9b1f8365e90", + "symbol": "MODE", + "decimals": 18, + "name": "MODE", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/10/0x084382d1cc4f4dfd1769b1cc1ac2a9b1f8365e90.png", + "aggregators": ["CoinGecko", "Socket", "Rubic", "Rango"], + "occurrences": 4 + }, + "0xfe3b2f655b725ba6cd0cc78961e013968ffb30fb": { + "address": "0xfe3b2f655b725ba6cd0cc78961e013968ffb30fb", + "symbol": "RUBI", + "decimals": 18, + "name": "Rubicon", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/10/0xfe3b2f655b725ba6cd0cc78961e013968ffb30fb.png", + "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0x03569cc076654f82679c4ba2124d64774781b01d": { + "address": "0x03569cc076654f82679c4ba2124d64774781b01d", + "symbol": "BOLD", + "decimals": 18, + "name": "BOLD", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/10/0x03569cc076654f82679c4ba2124d64774781b01d.png", + "aggregators": ["CoinGecko", "LiFi", "Rubic", "Rango"], + "occurrences": 4 + }, + "0x1792865d493fe4dfdd504010d3c0f6da11e8046d": { + "address": "0x1792865d493fe4dfdd504010d3c0f6da11e8046d", + "symbol": "CLBTC", + "decimals": 18, + "name": "clBTC", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/10/0x1792865d493fe4dfdd504010d3c0f6da11e8046d.png", + "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0x2baa7e92f3f14883264bfa63058cc223ad719438": { + "address": "0x2baa7e92f3f14883264bfa63058cc223ad719438", + "symbol": "IBTC", + "decimals": 8, + "name": "IBTC", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/10/0x2baa7e92f3f14883264bfa63058cc223ad719438.png", + "aggregators": ["CoinGecko", "LiFi", "Rubic", "Rango"], + "occurrences": 4 + }, + "0xa1cdab15bba75a80df4089cafba013e376957cf5": { + "address": "0xa1cdab15bba75a80df4089cafba013e376957cf5", + "symbol": "BUIDL", + "decimals": 6, + "name": "BlackRock USD Institutional Digital Liquidity Fund", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/10/0xa1cdab15bba75a80df4089cafba013e376957cf5.png", + "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0x80eede496655fb9047dd39d9f418d5483ed600df": { + "address": "0x80eede496655fb9047dd39d9f418d5483ed600df", + "symbol": "FRXUSD", + "decimals": 18, + "name": "FRXUSD", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/10/0x80eede496655fb9047dd39d9f418d5483ed600df.png", + "aggregators": ["CoinGecko", "LiFi", "Rubic", "Rango"], + "occurrences": 4 + }, + "0x139052115f8b1773cf7dcba6a553f922a2e54f69": { + "address": "0x139052115f8b1773cf7dcba6a553f922a2e54f69", + "symbol": "((==))", + "decimals": 6, + "name": "Nekocoin", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/10/0x139052115f8b1773cf7dcba6a553f922a2e54f69.png", + "aggregators": ["1inch", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0x000000001dc8bd45d7e7829fb1c969cbe4d0d1ec": { + "address": "0x000000001dc8bd45d7e7829fb1c969cbe4d0d1ec", + "symbol": "GTUSDA", + "decimals": 18, + "name": "Gauntlet USD Alpha", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/10/0x000000001dc8bd45d7e7829fb1c969cbe4d0d1ec.png", + "aggregators": ["CoinGecko", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x9f281eb58fd98ad98ede0fc4c553ad4d73e7ca2c": { + "address": "0x9f281eb58fd98ad98ede0fc4c553ad4d73e7ca2c", + "symbol": "STATAOPTUSDC", + "decimals": 6, + "name": "Static Aave Optimism USDC", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/10/0x9f281eb58fd98ad98ede0fc4c553ad4d73e7ca2c.png", + "aggregators": ["1inch", "LiFi", "Rango"], + "occurrences": 3 + }, + "0x61b620fad391b53a2d0973b10a3ed69558d5c66e": { + "address": "0x61b620fad391b53a2d0973b10a3ed69558d5c66e", + "symbol": "WAOPTDAI", + "decimals": 18, + "name": "Wrapped Aave Optimism DAI", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/10/0x61b620fad391b53a2d0973b10a3ed69558d5c66e.png", + "aggregators": ["1inch", "LiFi", "Rango"], + "occurrences": 3 + }, + "0x712ef4d78f43ecafa106ea003704a908c99d7f11": { + "address": "0x712ef4d78f43ecafa106ea003704a908c99d7f11", + "symbol": "WAOPTOP", + "decimals": 18, + "name": "Wrapped Aave Optimism OP", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/10/0x712ef4d78f43ecafa106ea003704a908c99d7f11.png", + "aggregators": ["1inch", "LiFi", "Rango"], + "occurrences": 3 + }, + "0xb972abef80046a57409e37a7df5def2638917516": { + "address": "0xb972abef80046a57409e37a7df5def2638917516", + "symbol": "STATAOPTWSTETH", + "decimals": 18, + "name": "Static Aave Optimism wstETH", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/10/0xb972abef80046a57409e37a7df5def2638917516.png", + "aggregators": ["1inch", "LiFi", "Rango"], + "occurrences": 3 + }, + "0x8ffdf2de812095b1d19cb146e4c004587c0a0692": { + "address": "0x8ffdf2de812095b1d19cb146e4c004587c0a0692", + "symbol": "AOPTMAI", + "decimals": 18, + "name": "Aave Optimism MAI", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/10/0x8ffdf2de812095b1d19cb146e4c004587c0a0692.png", + "aggregators": ["1inch", "LiFi", "Rango"], + "occurrences": 3 + }, + "0x4dd03dfd36548c840b563745e3fbec320f37ba7e": { + "address": "0x4dd03dfd36548c840b563745e3fbec320f37ba7e", + "symbol": "STATAOPTUSDCN", + "decimals": 6, + "name": "Static Aave Optimism USDCn", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/10/0x4dd03dfd36548c840b563745e3fbec320f37ba7e.png", + "aggregators": ["1inch", "LiFi", "Rango"], + "occurrences": 3 + }, + "0x035c93db04e5aaea54e6cd0261c492a3e0638b37": { + "address": "0x035c93db04e5aaea54e6cd0261c492a3e0638b37", + "symbol": "STATAOPTUSDT", + "decimals": 6, + "name": "Static Aave Optimism USDT", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/10/0x035c93db04e5aaea54e6cd0261c492a3e0638b37.png", + "aggregators": ["1inch", "LiFi", "Rango"], + "occurrences": 3 + }, + "0xd4f1cf9a038269fe8f03745c2875591ad6438ab1": { + "address": "0xd4f1cf9a038269fe8f03745c2875591ad6438ab1", + "symbol": "STATAOPTOP", + "decimals": 18, + "name": "Static Aave Optimism OP", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/10/0xd4f1cf9a038269fe8f03745c2875591ad6438ab1.png", + "aggregators": ["1inch", "LiFi", "Rango"], + "occurrences": 3 + }, + "0x39bcf217acc4bf2fcaf7bc8800e69d986912c75e": { + "address": "0x39bcf217acc4bf2fcaf7bc8800e69d986912c75e", + "symbol": "STATAOPTLINK", + "decimals": 18, + "name": "Static Aave Optimism LINK", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/10/0x39bcf217acc4bf2fcaf7bc8800e69d986912c75e.png", + "aggregators": ["1inch", "LiFi", "Rango"], + "occurrences": 3 + }, + "0xae0ca1b1bc6cac26981b5e2b9c40f8ce8a9082ee": { + "address": "0xae0ca1b1bc6cac26981b5e2b9c40f8ce8a9082ee", + "symbol": "STATAOPTAAVE", + "decimals": 18, + "name": "Static Aave Optimism AAVE", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/10/0xae0ca1b1bc6cac26981b5e2b9c40f8ce8a9082ee.png", + "aggregators": ["1inch", "LiFi", "Rango"], + "occurrences": 3 + }, + "0xf9ce3c97b4b54f3d16861420f4816d9f68190b7b": { + "address": "0xf9ce3c97b4b54f3d16861420f4816d9f68190b7b", + "symbol": "STATAOPTRETH", + "decimals": 18, + "name": "Static Aave Optimism rETH", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/10/0xf9ce3c97b4b54f3d16861420f4816d9f68190b7b.png", + "aggregators": ["1inch", "LiFi", "Rango"], + "occurrences": 3 + }, + "0x6ddc64289be8a71a707fb057d5d07cc756055d6e": { + "address": "0x6ddc64289be8a71a707fb057d5d07cc756055d6e", + "symbol": "STATAOPTDAI", + "decimals": 18, + "name": "Static Aave Optimism DAI", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/10/0x6ddc64289be8a71a707fb057d5d07cc756055d6e.png", + "aggregators": ["1inch", "LiFi", "Rango"], + "occurrences": 3 + }, + "0x6d998feefc7b3664ead09caf02b5a0fc2e365f18": { + "address": "0x6d998feefc7b3664ead09caf02b5a0fc2e365f18", + "symbol": "STATAOPTWBTC", + "decimals": 8, + "name": "Static Aave Optimism WBTC", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/10/0x6d998feefc7b3664ead09caf02b5a0fc2e365f18.png", + "aggregators": ["1inch", "LiFi", "Rango"], + "occurrences": 3 + }, + "0x38d693ce1df5aadf7bc62595a37d667ad57922e5": { + "address": "0x38d693ce1df5aadf7bc62595a37d667ad57922e5", + "symbol": "AOPTUSDCN", + "decimals": 6, + "name": "Aave Optimism USDCn", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/10/0x38d693ce1df5aadf7bc62595a37d667ad57922e5.png", + "aggregators": ["1inch", "LiFi", "Rango"], + "occurrences": 3 + }, + "0x3a956e2fcc7e71ea14b0257d40bebdb287d19652": { + "address": "0x3a956e2fcc7e71ea14b0257d40bebdb287d19652", + "symbol": "STATAOPTSUSD", + "decimals": 18, + "name": "Static Aave Optimism SUSD", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/10/0x3a956e2fcc7e71ea14b0257d40bebdb287d19652.png", + "aggregators": ["1inch", "LiFi", "Rango"], + "occurrences": 3 + }, + "0x84648dc3cefb601bc28a49a07a1a8bad04d30ad3": { + "address": "0x84648dc3cefb601bc28a49a07a1a8bad04d30ad3", + "symbol": "STATAOPTLUSD", + "decimals": 18, + "name": "Static Aave Optimism LUSD", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/10/0x84648dc3cefb601bc28a49a07a1a8bad04d30ad3.png", + "aggregators": ["1inch", "LiFi", "Rango"], + "occurrences": 3 + }, + "0x41b334e9f2c0ed1f30fd7c351874a6071c53a78e": { + "address": "0x41b334e9f2c0ed1f30fd7c351874a6071c53a78e", + "symbol": "WAOPTUSDCN", + "decimals": 6, + "name": "Wrapped Aave Optimism USDCn", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/10/0x41b334e9f2c0ed1f30fd7c351874a6071c53a78e.png", + "aggregators": ["1inch", "LiFi", "Rango"], + "occurrences": 3 + }, + "0x0ec63a55a688e5ba26afe8d9250114505e8b60a0": { + "address": "0x0ec63a55a688e5ba26afe8d9250114505e8b60a0", + "symbol": "WAOPTSUSD", + "decimals": 18, + "name": "Wrapped Aave Optimism SUSD", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/10/0x0ec63a55a688e5ba26afe8d9250114505e8b60a0.png", + "aggregators": ["1inch", "LiFi", "Rango"], + "occurrences": 3 + }, + "0x8e6a81b9d541a0cea090818b62c4b2de7f2a2cf7": { + "address": "0x8e6a81b9d541a0cea090818b62c4b2de7f2a2cf7", + "symbol": "WAOPTRETH", + "decimals": 18, + "name": "Wrapped Aave Optimism rETH", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/10/0x8e6a81b9d541a0cea090818b62c4b2de7f2a2cf7.png", + "aggregators": ["1inch", "LiFi", "Rango"], + "occurrences": 3 + }, + "0xbaf95bb30cdab3d5b7a11b67edef5631bd62be86": { + "address": "0xbaf95bb30cdab3d5b7a11b67edef5631bd62be86", + "symbol": "WAOPTWSTETH", + "decimals": 18, + "name": "Wrapped Aave Optimism wstETH", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/10/0xbaf95bb30cdab3d5b7a11b67edef5631bd62be86.png", + "aggregators": ["1inch", "LiFi", "Rango"], + "occurrences": 3 + }, + "0xea9020a9e04c557478dad749a1aad242b443042c": { + "address": "0xea9020a9e04c557478dad749a1aad242b443042c", + "symbol": "WAOPTWBTC", + "decimals": 8, + "name": "Wrapped Aave Optimism WBTC", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/10/0xea9020a9e04c557478dad749a1aad242b443042c.png", + "aggregators": ["1inch", "LiFi", "Rango"], + "occurrences": 3 + }, + "0x927cff131fd5b43fc992d071929b2c095d6e4b70": { + "address": "0x927cff131fd5b43fc992d071929b2c095d6e4b70", + "symbol": "WAOPTUSDT", + "decimals": 6, + "name": "Wrapped Aave Optimism USDT", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/10/0x927cff131fd5b43fc992d071929b2c095d6e4b70.png", + "aggregators": ["1inch", "LiFi", "Rango"], + "occurrences": 3 + }, + "0x0b590ef479c8e03825ae779839acb4583acc15fd": { + "address": "0x0b590ef479c8e03825ae779839acb4583acc15fd", + "symbol": "WAOPTUSDC", + "decimals": 6, + "name": "Wrapped Aave Optimism USDC", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/10/0x0b590ef479c8e03825ae779839acb4583acc15fd.png", + "aggregators": ["1inch", "LiFi", "Rango"], + "occurrences": 3 + }, + "0x413093e03d6aee4f2f7e48d4b88881bf4932b249": { + "address": "0x413093e03d6aee4f2f7e48d4b88881bf4932b249", + "symbol": "WAOPTLUSD", + "decimals": 18, + "name": "Wrapped Aave Optimism LUSD", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/10/0x413093e03d6aee4f2f7e48d4b88881bf4932b249.png", + "aggregators": ["1inch", "LiFi", "Rango"], + "occurrences": 3 + }, + "0x464b808c2c7e04b07e860fdf7a91870620246148": { + "address": "0x464b808c2c7e04b07e860fdf7a91870620246148", + "symbol": "WAOPTWETH", + "decimals": 18, + "name": "WAOPTWETH", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/10/0x464b808c2c7e04b07e860fdf7a91870620246148.png", + "aggregators": ["1inch", "Rubic", "Rango"], + "occurrences": 3 + }, + "0xc438643b0eee8a314eec53eb8a1ee6467c88fc24": { + "address": "0xc438643b0eee8a314eec53eb8a1ee6467c88fc24", + "symbol": "WAOPTLINK", + "decimals": 18, + "name": "Wrapped Aave Optimism LINK", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/10/0xc438643b0eee8a314eec53eb8a1ee6467c88fc24.png", + "aggregators": ["1inch", "LiFi", "Rango"], + "occurrences": 3 + }, + "0x527604e4d87a7562ec653dbe2878d0dcab7f1972": { + "address": "0x527604e4d87a7562ec653dbe2878d0dcab7f1972", + "symbol": "WAOPTAAVE", + "decimals": 18, + "name": "Wrapped Aave Optimism AAVE", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/10/0x527604e4d87a7562ec653dbe2878d0dcab7f1972.png", + "aggregators": ["1inch", "LiFi", "Rango"], + "occurrences": 3 + }, + "0x97513e975a7fa9072c72c92d8000b0db90b163c5": { + "address": "0x97513e975a7fa9072c72c92d8000b0db90b163c5", + "symbol": "BEETS", + "decimals": 18, + "name": "BEETS", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/10/0x97513e975a7fa9072c72c92d8000b0db90b163c5.png", + "aggregators": ["LiFi", "Rubic", "Rango"], + "occurrences": 3 + }, + "0xc22885e06cd8507c5c74a948c59af853aed1ea5c": { + "address": "0xc22885e06cd8507c5c74a948c59af853aed1ea5c", + "symbol": "USDD", + "decimals": 18, + "name": "Decentralized USD", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/10/0xc22885e06cd8507c5c74a948c59af853aed1ea5c.png", + "aggregators": ["Socket", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x0ce45dd53affbb011884ef1866e0738f58ab7969": { + "address": "0x0ce45dd53affbb011884ef1866e0738f58ab7969", + "symbol": "CGETH.HASHKEY", + "decimals": 18, + "name": "cgETH Hashkey Cloud", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/10/0x0ce45dd53affbb011884ef1866e0738f58ab7969.png", + "aggregators": ["Rubic", "Rango", "Sonarwatch"], + "occurrences": 3 + }, + "0xe4de4b87345815c71aa843ea4841bcdc682637bb": { + "address": "0xe4de4b87345815c71aa843ea4841bcdc682637bb", + "symbol": "BUILD", + "decimals": 4, + "name": "BUILD", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/10/0xe4de4b87345815c71aa843ea4841bcdc682637bb.png", + "aggregators": ["Rubic", "Rango", "Sonarwatch"], + "occurrences": 3 + }, + "0xfe5b10f053871e66a319a57a16cf4e709f51367f": { + "address": "0xfe5b10f053871e66a319a57a16cf4e709f51367f", + "symbol": "OVERPOW", + "decimals": 18, + "name": "OVERPOWERED", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/10/0xfe5b10f053871e66a319a57a16cf4e709f51367f.png", + "aggregators": ["Rubic", "Rango", "Sonarwatch"], + "occurrences": 3 + } + }, + "timestamp": 1779126362455 + }, + "0xa4b1": { + "data": { + "0xda10009cbd5d07dd0cecc66161fc93d7c9000da1": { + "address": "0xda10009cbd5d07dd0cecc66161fc93d7c9000da1", + "symbol": "DAI", + "decimals": 18, + "name": "Dai Stablecoin", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0xda10009cbd5d07dd0cecc66161fc93d7c9000da1.png", + "aggregators": [ + "TraderJoe", + "1inch", + "LiFi", + "TrustWallet", + "Socket", + "Rubic", + "Squid", + "Rango", + "Sonarwatch", + "SushiSwap" + ], + "occurrences": 10 + }, + "0xfd086bc7cd5c481dcc9c85ebe478a1c0b69fcbb9": { + "address": "0xfd086bc7cd5c481dcc9c85ebe478a1c0b69fcbb9", + "symbol": "USDT", + "decimals": 6, + "name": "Tether USD", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0xfd086bc7cd5c481dcc9c85ebe478a1c0b69fcbb9.png", + "aggregators": [ + "TraderJoe", + "1inch", + "LiFi", + "TrustWallet", + "Socket", + "Rubic", + "Squid", + "Rango", + "Sonarwatch", + "SushiSwap" + ], + "occurrences": 10 + }, + "0x82af49447d8a07e3bd95bd0d56f35241523fbab1": { + "address": "0x82af49447d8a07e3bd95bd0d56f35241523fbab1", + "symbol": "WETH", + "decimals": 18, + "name": "Wrapped Ether", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0x82af49447d8a07e3bd95bd0d56f35241523fbab1.png", + "aggregators": [ + "TraderJoe", + "1inch", + "LiFi", + "TrustWallet", + "Socket", + "Rubic", + "Squid", + "Rango", + "Sonarwatch", + "SushiSwap" + ], + "occurrences": 10 + }, + "0xf97f4df75117a78c1a5a0dbb814af92458539fb4": { + "address": "0xf97f4df75117a78c1a5a0dbb814af92458539fb4", + "symbol": "LINK", + "decimals": 18, + "name": "ChainLink Token", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0xf97f4df75117a78c1a5a0dbb814af92458539fb4.png", + "aggregators": [ + "TraderJoe", + "1inch", + "LiFi", + "Socket", + "Rubic", + "Squid", + "Rango", + "Sonarwatch", + "SushiSwap" + ], + "occurrences": 9 + }, + "0x539bde0d7dbd336b79148aa742883198bbf60342": { + "address": "0x539bde0d7dbd336b79148aa742883198bbf60342", + "symbol": "MAGIC", + "decimals": 18, + "name": "MAGIC", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0x539bde0d7dbd336b79148aa742883198bbf60342.png", + "aggregators": [ + "TraderJoe", + "1inch", + "LiFi", + "Socket", + "Rubic", + "Squid", + "Rango", + "Sonarwatch", + "SushiSwap" + ], + "occurrences": 9 + }, + "0x2f2a2543b76a4166549f7aab2e75bef0aefc5b0f": { + "address": "0x2f2a2543b76a4166549f7aab2e75bef0aefc5b0f", + "symbol": "WBTC", + "decimals": 8, + "name": "Wrapped BTC", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0x2f2a2543b76a4166549f7aab2e75bef0aefc5b0f.png", + "aggregators": [ + "TraderJoe", + "1inch", + "LiFi", + "Socket", + "Rubic", + "Squid", + "Rango", + "Sonarwatch", + "SushiSwap" + ], + "occurrences": 9 + }, + "0x6c2c06790b3e3e3c38e12ee22f8183b37a13ee55": { + "address": "0x6c2c06790b3e3e3c38e12ee22f8183b37a13ee55", + "symbol": "DPX", + "decimals": 18, + "name": "Dopex Governance Token", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0x6c2c06790b3e3e3c38e12ee22f8183b37a13ee55.png", + "aggregators": [ + "TraderJoe", + "1inch", + "LiFi", + "Socket", + "Rubic", + "Squid", + "Rango", + "Sonarwatch", + "SushiSwap" + ], + "occurrences": 9 + }, + "0x11cdb42b0eb46d95f990bedd4695a6e3fa034978": { + "address": "0x11cdb42b0eb46d95f990bedd4695a6e3fa034978", + "symbol": "CRV", + "decimals": 18, + "name": "Curve DAO Token", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0x11cdb42b0eb46d95f990bedd4695a6e3fa034978.png", + "aggregators": [ + "TraderJoe", + "1inch", + "LiFi", + "Socket", + "Rubic", + "Squid", + "Rango", + "Sonarwatch", + "SushiSwap" + ], + "occurrences": 9 + }, + "0x3e6648c5a70a150a88bce65f4ad4d506fe15d2af": { + "address": "0x3e6648c5a70a150a88bce65f4ad4d506fe15d2af", + "symbol": "SPELL", + "decimals": 18, + "name": "Spell Token", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0x3e6648c5a70a150a88bce65f4ad4d506fe15d2af.png", + "aggregators": [ + "TraderJoe", + "1inch", + "LiFi", + "Socket", + "Rubic", + "Squid", + "Rango", + "Sonarwatch", + "SushiSwap" + ], + "occurrences": 9 + }, + "0xd4d42f0b6def4ce0383636770ef773390d85c61a": { + "address": "0xd4d42f0b6def4ce0383636770ef773390d85c61a", + "symbol": "SUSHI", + "decimals": 18, + "name": "SushiToken", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0xd4d42f0b6def4ce0383636770ef773390d85c61a.png", + "aggregators": [ + "TraderJoe", + "1inch", + "LiFi", + "Socket", + "Rubic", + "Squid", + "Rango", + "Sonarwatch", + "SushiSwap" + ], + "occurrences": 9 + }, + "0xfa7f8980b0f1e64a2062791cc3b0871572f1f7f0": { + "address": "0xfa7f8980b0f1e64a2062791cc3b0871572f1f7f0", + "symbol": "UNI", + "decimals": 18, + "name": "Uniswap", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0xfa7f8980b0f1e64a2062791cc3b0871572f1f7f0.png", + "aggregators": [ + "TraderJoe", + "1inch", + "LiFi", + "Socket", + "Rubic", + "Squid", + "Rango", + "Sonarwatch", + "SushiSwap" + ], + "occurrences": 9 + }, + "0x32eb7902d4134bf98a28b963d26de779af92a212": { + "address": "0x32eb7902d4134bf98a28b963d26de779af92a212", + "symbol": "RDPX", + "decimals": 18, + "name": "Dopex Rebate Token", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0x32eb7902d4134bf98a28b963d26de779af92a212.png", + "aggregators": [ + "TraderJoe", + "1inch", + "LiFi", + "Socket", + "Rubic", + "Rango", + "SushiSwap" + ], + "occurrences": 7 + }, + "0xfc5a1a6eb076a2c7ad06ed22c90d7e710e35ad0a": { + "address": "0xfc5a1a6eb076a2c7ad06ed22c90d7e710e35ad0a", + "symbol": "GMX", + "decimals": 18, + "name": "GMX", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0xfc5a1a6eb076a2c7ad06ed22c90d7e710e35ad0a.png", + "aggregators": [ + "TraderJoe", + "1inch", + "LiFi", + "TrustWallet", + "Socket", + "Rubic", + "Squid", + "Rango", + "Sonarwatch", + "SushiSwap" + ], + "occurrences": 10 + }, + "0x912ce59144191c1204e64559fe8253a0e49e6548": { + "address": "0x912ce59144191c1204e64559fe8253a0e49e6548", + "symbol": "ARB", + "decimals": 18, + "name": "Arbitrum", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0x912ce59144191c1204e64559fe8253a0e49e6548.png", + "aggregators": [ + "TraderJoe", + "1inch", + "LiFi", + "Socket", + "Rubic", + "Squid", + "Rango", + "Sonarwatch", + "SushiSwap" + ], + "occurrences": 9 + }, + "0x354a6da3fcde098f8389cad84b0182725c6c91de": { + "address": "0x354a6da3fcde098f8389cad84b0182725c6c91de", + "symbol": "COMP", + "decimals": 18, + "name": "Compound", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0x354a6da3fcde098f8389cad84b0182725c6c91de.png", + "aggregators": [ + "TraderJoe", + "1inch", + "LiFi", + "Socket", + "Rubic", + "Squid", + "Rango", + "Sonarwatch", + "SushiSwap" + ], + "occurrences": 9 + }, + "0xaf88d065e77c8cc2239327c5edb3a432268e5831": { + "address": "0xaf88d065e77c8cc2239327c5edb3a432268e5831", + "symbol": "USDC", + "decimals": 6, + "name": "USD Coin (Native)", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0xaf88d065e77c8cc2239327c5edb3a432268e5831.png", + "aggregators": [ + "TraderJoe", + "1inch", + "LiFi", + "Socket", + "Rubic", + "Squid", + "Rango", + "Sonarwatch", + "SushiSwap" + ], + "occurrences": 9 + }, + "0x51fc0f6660482ea73330e414efd7808811a57fa2": { + "address": "0x51fc0f6660482ea73330e414efd7808811a57fa2", + "symbol": "PREMIA", + "decimals": 18, + "name": "Premia", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0x51fc0f6660482ea73330e414efd7808811a57fa2.png", + "aggregators": [ + "TraderJoe", + "1inch", + "LiFi", + "Socket", + "Rubic", + "Squid", + "Rango", + "Sonarwatch", + "SushiSwap" + ], + "occurrences": 9 + }, + "0x040d1edc9569d4bab2d15287dc5a4f10f56a56b8": { + "address": "0x040d1edc9569d4bab2d15287dc5a4f10f56a56b8", + "symbol": "BAL", + "decimals": 18, + "name": "Balancer", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0x040d1edc9569d4bab2d15287dc5a4f10f56a56b8.png", + "aggregators": [ + "TraderJoe", + "1inch", + "LiFi", + "Socket", + "Rubic", + "Rango", + "Sonarwatch", + "SushiSwap" + ], + "occurrences": 8 + }, + "0x9623063377ad1b27544c965ccd7342f7ea7e88c7": { + "address": "0x9623063377ad1b27544c965ccd7342f7ea7e88c7", + "symbol": "GRT", + "decimals": 18, + "name": "The Graph", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0x9623063377ad1b27544c965ccd7342f7ea7e88c7.png", + "aggregators": [ + "TraderJoe", + "1inch", + "LiFi", + "TrustWallet", + "Socket", + "Rubic", + "Squid", + "Rango", + "Sonarwatch" + ], + "occurrences": 9 + }, + "0xff970a61a04b1ca14834a43f5de4533ebddb5cc8": { + "address": "0xff970a61a04b1ca14834a43f5de4533ebddb5cc8", + "symbol": "USDC.E", + "decimals": 6, + "name": "Bridged USDC", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0xff970a61a04b1ca14834a43f5de4533ebddb5cc8.png", + "aggregators": [ + "TraderJoe", + "1inch", + "LiFi", + "TrustWallet", + "Rubic", + "Squid", + "Rango", + "Sonarwatch", + "SushiSwap" + ], + "occurrences": 9 + }, + "0x3082cc23568ea640225c2467653db90e9250aaa0": { + "address": "0x3082cc23568ea640225c2467653db90e9250aaa0", + "symbol": "RDNT", + "decimals": 18, + "name": "Radiant", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0x3082cc23568ea640225c2467653db90e9250aaa0.png", + "aggregators": [ + "TraderJoe", + "1inch", + "LiFi", + "Socket", + "Rubic", + "Squid", + "Rango", + "Sonarwatch", + "SushiSwap" + ], + "occurrences": 9 + }, + "0x5979d7b546e38e414f7e9822514be443a4800529": { + "address": "0x5979d7b546e38e414f7e9822514be443a4800529", + "symbol": "WSTETH", + "decimals": 18, + "name": "Wrapped liquid staked Ether 2.0", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0x5979d7b546e38e414f7e9822514be443a4800529.png", + "aggregators": [ + "TraderJoe", + "1inch", + "LiFi", + "Socket", + "Rubic", + "Squid", + "Rango", + "Sonarwatch", + "SushiSwap" + ], + "occurrences": 9 + }, + "0xfea7a6a0b346362bf88a9e4a88416b77a57d6c2a": { + "address": "0xfea7a6a0b346362bf88a9e4a88416b77a57d6c2a", + "symbol": "MIM", + "decimals": 18, + "name": "Magic Internet Money", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0xfea7a6a0b346362bf88a9e4a88416b77a57d6c2a.png", + "aggregators": [ + "TraderJoe", + "1inch", + "LiFi", + "Socket", + "Rubic", + "Squid", + "Rango", + "Sonarwatch", + "SushiSwap" + ], + "occurrences": 9 + }, + "0x6694340fc020c5e6b96567843da2df01b2ce1eb6": { + "address": "0x6694340fc020c5e6b96567843da2df01b2ce1eb6", + "symbol": "STG", + "decimals": 18, + "name": "StargateToken", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0x6694340fc020c5e6b96567843da2df01b2ce1eb6.png", + "aggregators": [ + "TraderJoe", + "1inch", + "LiFi", + "Socket", + "Rubic", + "Squid", + "Rango", + "Sonarwatch", + "SushiSwap" + ], + "occurrences": 9 + }, + "0xa970af1a584579b618be4d69ad6f73459d112f95": { + "address": "0xa970af1a584579b618be4d69ad6f73459d112f95", + "symbol": "SUSD", + "decimals": 18, + "name": "Synth sUSD", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0xa970af1a584579b618be4d69ad6f73459d112f95.png", + "aggregators": [ + "TraderJoe", + "LiFi", + "Socket", + "Rubic", + "Rango", + "Sonarwatch", + "SushiSwap" + ], + "occurrences": 7 + }, + "0x07e49d5de43dda6162fa28d24d5935c151875283": { + "address": "0x07e49d5de43dda6162fa28d24d5935c151875283", + "symbol": "GOVI", + "decimals": 18, + "name": "GOVI", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0x07e49d5de43dda6162fa28d24d5935c151875283.png", + "aggregators": [ + "TraderJoe", + "LiFi", + "Socket", + "Rubic", + "Rango", + "Sonarwatch", + "SushiSwap" + ], + "occurrences": 7 + }, + "0x35751007a407ca6feffe80b3cb397736d2cf4dbe": { + "address": "0x35751007a407ca6feffe80b3cb397736d2cf4dbe", + "symbol": "WEETH", + "decimals": 18, + "name": "Wrapped eETH", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0x35751007a407ca6feffe80b3cb397736d2cf4dbe.png", + "aggregators": [ + "TraderJoe", + "1inch", + "LiFi", + "Socket", + "Rubic", + "Squid", + "Rango", + "Sonarwatch", + "SushiSwap" + ], + "occurrences": 9 + }, + "0x2416092f143378750bb29b79ed961ab195cceea5": { + "address": "0x2416092f143378750bb29b79ed961ab195cceea5", + "symbol": "EZETH", + "decimals": 18, + "name": "Renzo Restaked ETH", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0x2416092f143378750bb29b79ed961ab195cceea5.png", + "aggregators": [ + "TraderJoe", + "1inch", + "LiFi", + "Socket", + "Rubic", + "Squid", + "Rango", + "Sonarwatch", + "SushiSwap" + ], + "occurrences": 9 + }, + "0x4e352cf164e64adcbad318c3a1e222e9eba4ce42": { + "address": "0x4e352cf164e64adcbad318c3a1e222e9eba4ce42", + "symbol": "MCB", + "decimals": 18, + "name": "MCDEX Token", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0x4e352cf164e64adcbad318c3a1e222e9eba4ce42.png", + "aggregators": [ + "TraderJoe", + "1inch", + "LiFi", + "Socket", + "Rubic", + "Rango", + "Sonarwatch", + "SushiSwap" + ], + "occurrences": 8 + }, + "0x4cb9a7ae498cedcbb5eae9f25736ae7d428c9d66": { + "address": "0x4cb9a7ae498cedcbb5eae9f25736ae7d428c9d66", + "symbol": "XAI", + "decimals": 18, + "name": "Xai", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0x4cb9a7ae498cedcbb5eae9f25736ae7d428c9d66.png", + "aggregators": [ + "TraderJoe", + "1inch", + "LiFi", + "Socket", + "Rubic", + "Squid", + "Rango", + "Sonarwatch" + ], + "occurrences": 8 + }, + "0xe80772eaf6e2e18b651f160bc9158b2a5cafca65": { + "address": "0xe80772eaf6e2e18b651f160bc9158b2a5cafca65", + "symbol": "XUSD", + "decimals": 6, + "name": "xUSD", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0xe80772eaf6e2e18b651f160bc9158b2a5cafca65.png", + "aggregators": [ + "TraderJoe", + "1inch", + "LiFi", + "Socket", + "Rubic", + "Squid", + "Rango", + "Sonarwatch" + ], + "occurrences": 8 + }, + "0xec70dcb4a1efa46b8f2d97c310c9c4790ba5ffa8": { + "address": "0xec70dcb4a1efa46b8f2d97c310c9c4790ba5ffa8", + "symbol": "RETH", + "decimals": 18, + "name": "Rocket Pool ETH", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0xec70dcb4a1efa46b8f2d97c310c9c4790ba5ffa8.png", + "aggregators": [ + "TraderJoe", + "1inch", + "LiFi", + "Socket", + "Rubic", + "Squid", + "Rango", + "Sonarwatch" + ], + "occurrences": 8 + }, + "0x17fc002b466eec40dae837fc4be5c67993ddbd6f": { + "address": "0x17fc002b466eec40dae837fc4be5c67993ddbd6f", + "symbol": "FRAX", + "decimals": 18, + "name": "Frax", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0x17fc002b466eec40dae837fc4be5c67993ddbd6f.png", + "aggregators": [ + "TraderJoe", + "LiFi", + "Socket", + "Rubic", + "Squid", + "Rango", + "Sonarwatch", + "SushiSwap" + ], + "occurrences": 8 + }, + "0x8d9ba570d6cb60c7e3e0f31343efe75ab8e65fb1": { + "address": "0x8d9ba570d6cb60c7e3e0f31343efe75ab8e65fb1", + "symbol": "GOHM", + "decimals": 18, + "name": "Governance OHM", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0x8d9ba570d6cb60c7e3e0f31343efe75ab8e65fb1.png", + "aggregators": [ + "TraderJoe", + "LiFi", + "Socket", + "Rubic", + "Squid", + "Rango", + "Sonarwatch", + "SushiSwap" + ], + "occurrences": 8 + }, + "0x088cd8f5ef3652623c22d48b1605dcfe860cd704": { + "address": "0x088cd8f5ef3652623c22d48b1605dcfe860cd704", + "symbol": "VELA", + "decimals": 18, + "name": "Vela Exchange", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0x088cd8f5ef3652623c22d48b1605dcfe860cd704.png", + "aggregators": [ + "TraderJoe", + "1inch", + "LiFi", + "Rubic", + "Squid", + "Rango", + "Sonarwatch", + "SushiSwap" + ], + "occurrences": 8 + }, + "0xbfa641051ba0a0ad1b0acf549a89536a0d76472e": { + "address": "0xbfa641051ba0a0ad1b0acf549a89536a0d76472e", + "symbol": "BADGER", + "decimals": 18, + "name": "Badger", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0xbfa641051ba0a0ad1b0acf549a89536a0d76472e.png", + "aggregators": [ + "TraderJoe", + "1inch", + "LiFi", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 7 + }, + "0x3a8b787f78d775aecfeea15706d4221b40f345ab": { + "address": "0x3a8b787f78d775aecfeea15706d4221b40f345ab", + "symbol": "CELR", + "decimals": 18, + "name": "CelerToken", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0x3a8b787f78d775aecfeea15706d4221b40f345ab.png", + "aggregators": [ + "TraderJoe", + "LiFi", + "Socket", + "Rubic", + "Rango", + "Sonarwatch", + "SushiSwap" + ], + "occurrences": 7 + }, + "0xa0b862f60edef4452f25b4160f177db44deb6cf1": { + "address": "0xa0b862f60edef4452f25b4160f177db44deb6cf1", + "symbol": "GNO", + "decimals": 18, + "name": "Gnosis Token", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0xa0b862f60edef4452f25b4160f177db44deb6cf1.png", + "aggregators": [ + "TraderJoe", + "LiFi", + "Socket", + "Rubic", + "Rango", + "Sonarwatch", + "SushiSwap" + ], + "occurrences": 7 + }, + "0x99f40b01ba9c469193b360f72740e416b17ac332": { + "address": "0x99f40b01ba9c469193b360f72740e416b17ac332", + "symbol": "MATH", + "decimals": 18, + "name": "MATH Token", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0x99f40b01ba9c469193b360f72740e416b17ac332.png", + "aggregators": [ + "TraderJoe", + "LiFi", + "Socket", + "Rubic", + "Rango", + "Sonarwatch", + "SushiSwap" + ], + "occurrences": 7 + }, + "0x0c880f6761f1af8d9aa9c466984b80dab9a8c9e8": { + "address": "0x0c880f6761f1af8d9aa9c466984b80dab9a8c9e8", + "symbol": "PENDLE", + "decimals": 18, + "name": "Pendle", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0x0c880f6761f1af8d9aa9c466984b80dab9a8c9e8.png", + "aggregators": [ + "TraderJoe", + "1inch", + "LiFi", + "Socket", + "Rubic", + "Squid", + "Rango" + ], + "occurrences": 7 + }, + "0xef888bca6ab6b1d26dbec977c455388ecd794794": { + "address": "0xef888bca6ab6b1d26dbec977c455388ecd794794", + "symbol": "RGT", + "decimals": 18, + "name": "Rari Governance Token", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0xef888bca6ab6b1d26dbec977c455388ecd794794.png", + "aggregators": [ + "CoinGecko", + "LiFi", + "Socket", + "Rubic", + "Rango", + "Sonarwatch", + "SushiSwap" + ], + "occurrences": 7 + }, + "0xcafcd85d8ca7ad1e1c6f82f651fa15e33aefd07b": { + "address": "0xcafcd85d8ca7ad1e1c6f82f651fa15e33aefd07b", + "symbol": "WOO", + "decimals": 18, + "name": "Wootrade Network", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0xcafcd85d8ca7ad1e1c6f82f651fa15e33aefd07b.png", + "aggregators": [ + "TraderJoe", + "LiFi", + "Socket", + "Rubic", + "Rango", + "Sonarwatch", + "SushiSwap" + ], + "occurrences": 7 + }, + "0x82e3a8f066a6989666b031d916c43672085b1582": { + "address": "0x82e3a8f066a6989666b031d916c43672085b1582", + "symbol": "YFI", + "decimals": 18, + "name": "yearn.finance", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0x82e3a8f066a6989666b031d916c43672085b1582.png", + "aggregators": [ + "TraderJoe", + "LiFi", + "Socket", + "Rubic", + "Rango", + "Sonarwatch", + "SushiSwap" + ], + "occurrences": 7 + }, + "0xf4d48ce3ee1ac3651998971541badbb9a14d7234": { + "address": "0xf4d48ce3ee1ac3651998971541badbb9a14d7234", + "symbol": "CREAM", + "decimals": 18, + "name": "Cream", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0xf4d48ce3ee1ac3651998971541badbb9a14d7234.png", + "aggregators": [ + "TraderJoe", + "LiFi", + "Socket", + "Rubic", + "Rango", + "Sonarwatch", + "SushiSwap" + ], + "occurrences": 7 + }, + "0x69eb4fa4a2fbd498c257c57ea8b7655a2559a581": { + "address": "0x69eb4fa4a2fbd498c257c57ea8b7655a2559a581", + "symbol": "DODO", + "decimals": 18, + "name": "DODO bird", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0x69eb4fa4a2fbd498c257c57ea8b7655a2559a581.png", + "aggregators": [ + "TraderJoe", + "LiFi", + "Socket", + "Rubic", + "Rango", + "Sonarwatch", + "SushiSwap" + ], + "occurrences": 7 + }, + "0x7ba4a00d54a07461d9db2aef539e91409943adc9": { + "address": "0x7ba4a00d54a07461d9db2aef539e91409943adc9", + "symbol": "SDT", + "decimals": 18, + "name": "Stake DAO Token", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0x7ba4a00d54a07461d9db2aef539e91409943adc9.png", + "aggregators": [ + "TraderJoe", + "LiFi", + "Socket", + "Rubic", + "Rango", + "Sonarwatch", + "SushiSwap" + ], + "occurrences": 7 + }, + "0x51318b7d00db7acc4026c88c3952b66278b6a67f": { + "address": "0x51318b7d00db7acc4026c88c3952b66278b6a67f", + "symbol": "PLS", + "decimals": 18, + "name": "Plutus", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0x51318b7d00db7acc4026c88c3952b66278b6a67f.png", + "aggregators": [ + "TraderJoe", + "LiFi", + "Rubic", + "Squid", + "Rango", + "Sonarwatch", + "SushiSwap" + ], + "occurrences": 7 + }, + "0x10393c20975cf177a3513071bc110f7962cd67da": { + "address": "0x10393c20975cf177a3513071bc110f7962cd67da", + "symbol": "JONES", + "decimals": 18, + "name": "Jones DAO", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0x10393c20975cf177a3513071bc110f7962cd67da.png", + "aggregators": [ + "TraderJoe", + "LiFi", + "Rubic", + "Squid", + "Rango", + "Sonarwatch", + "SushiSwap" + ], + "occurrences": 7 + }, + "0xddb46999f8891663a8f2828d25298f70416d7610": { + "address": "0xddb46999f8891663a8f2828d25298f70416d7610", + "symbol": "SUSDS", + "decimals": 18, + "name": "sUSDS", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0xddb46999f8891663a8f2828d25298f70416d7610.png", + "aggregators": [ + "CoinGecko", + "1inch", + "LiFi", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 7 + }, + "0x61dbbbb552dc893ab3aad09f289f811e67cef285": { + "address": "0x61dbbbb552dc893ab3aad09f289f811e67cef285", + "symbol": "SKATE", + "decimals": 18, + "name": "Skate", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0x61dbbbb552dc893ab3aad09f289f811e67cef285.png", + "aggregators": [ + "CoinGecko", + "1inch", + "LiFi", + "Socket", + "Rubic", + "Squid", + "Rango" + ], + "occurrences": 7 + }, + "0xf80d589b3dbe130c270a69f1a69d050f268786df": { + "address": "0xf80d589b3dbe130c270a69f1a69d050f268786df", + "symbol": "FLUX", + "decimals": 18, + "name": "Flux", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0xf80d589b3dbe130c270a69f1a69d050f268786df.png", + "aggregators": [ + "TraderJoe", + "LiFi", + "Socket", + "Rubic", + "Rango", + "SushiSwap" + ], + "occurrences": 6 + }, + "0x5575552988a3a80504bbaeb1311674fcfd40ad4b": { + "address": "0x5575552988a3a80504bbaeb1311674fcfd40ad4b", + "symbol": "SPA", + "decimals": 18, + "name": "Sperax", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0x5575552988a3a80504bbaeb1311674fcfd40ad4b.png", + "aggregators": [ + "TraderJoe", + "LiFi", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 6 + }, + "0x5d3a1ff2b6bab83b63cd9ad0787074081a52ef34": { + "address": "0x5d3a1ff2b6bab83b63cd9ad0787074081a52ef34", + "symbol": "USDE", + "decimals": 18, + "name": "USDe", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0x5d3a1ff2b6bab83b63cd9ad0787074081a52ef34.png", + "aggregators": [ + "TraderJoe", + "1inch", + "LiFi", + "Socket", + "Rubic", + "Squid", + "Rango", + "Sonarwatch", + "SushiSwap" + ], + "occurrences": 9 + }, + "0x1debd73e752beaf79865fd6446b0c970eae7732f": { + "address": "0x1debd73e752beaf79865fd6446b0c970eae7732f", + "symbol": "CBETH", + "decimals": 18, + "name": "Coinbase Wrapped Staked ETH", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0x1debd73e752beaf79865fd6446b0c970eae7732f.png", + "aggregators": [ + "TraderJoe", + "LiFi", + "Socket", + "Rubic", + "Squid", + "Rango", + "Sonarwatch", + "SushiSwap" + ], + "occurrences": 8 + }, + "0x6985884c4392d348587b19cb9eaaf157f13271cd": { + "address": "0x6985884c4392d348587b19cb9eaaf157f13271cd", + "symbol": "ZRO", + "decimals": 18, + "name": "LayerZero", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0x6985884c4392d348587b19cb9eaaf157f13271cd.png", + "aggregators": [ + "TraderJoe", + "LiFi", + "Socket", + "Rubic", + "Squid", + "Rango", + "Sonarwatch", + "SushiSwap" + ], + "occurrences": 8 + }, + "0xed3fb761414da74b74f33e5c5a1f78104b188dfc": { + "address": "0xed3fb761414da74b74f33e5c5a1f78104b188dfc", + "symbol": "NYAN", + "decimals": 18, + "name": "ArbiNYAN", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0xed3fb761414da74b74f33e5c5a1f78104b188dfc.png", + "aggregators": [ + "TraderJoe", + "LiFi", + "Socket", + "Rubic", + "Squid", + "Rango", + "Sonarwatch", + "SushiSwap" + ], + "occurrences": 8 + }, + "0x13ad51ed4f1b7e9dc168d8a00cb3f4ddd85efa60": { + "address": "0x13ad51ed4f1b7e9dc168d8a00cb3f4ddd85efa60", + "symbol": "LDO", + "decimals": 18, + "name": "Lido DAO", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0x13ad51ed4f1b7e9dc168d8a00cb3f4ddd85efa60.png", + "aggregators": [ + "TraderJoe", + "1inch", + "LiFi", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 7 + }, + "0x93b346b6bc2548da6a1e7d98e9a421b42541425b": { + "address": "0x93b346b6bc2548da6a1e7d98e9a421b42541425b", + "symbol": "LUSD", + "decimals": 18, + "name": "LUSD Stablecoin", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0x93b346b6bc2548da6a1e7d98e9a421b42541425b.png", + "aggregators": [ + "TraderJoe", + "LiFi", + "Socket", + "Rubic", + "Squid", + "Sonarwatch", + "SushiSwap" + ], + "occurrences": 7 + }, + "0xb766039cc6db368759c1e56b79affe831d0cc507": { + "address": "0xb766039cc6db368759c1e56b79affe831d0cc507", + "symbol": "RPL", + "decimals": 18, + "name": "Rocket Pool", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0xb766039cc6db368759c1e56b79affe831d0cc507.png", + "aggregators": [ + "TraderJoe", + "1inch", + "LiFi", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 7 + }, + "0xd77b108d4f6cefaa0cae9506a934e825becca46e": { + "address": "0xd77b108d4f6cefaa0cae9506a934e825becca46e", + "symbol": "WINR", + "decimals": 18, + "name": "WINR Protocol", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0xd77b108d4f6cefaa0cae9506a934e825becca46e.png", + "aggregators": [ + "TraderJoe", + "1inch", + "LiFi", + "Rubic", + "Squid", + "Rango", + "Sonarwatch" + ], + "occurrences": 7 + }, + "0x93c15cd7de26f07265f0272e0b831c5d7fab174f": { + "address": "0x93c15cd7de26f07265f0272e0b831c5d7fab174f", + "symbol": "LIQD", + "decimals": 18, + "name": "Liquid", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0x93c15cd7de26f07265f0272e0b831c5d7fab174f.png", + "aggregators": [ + "TraderJoe", + "1inch", + "Rubic", + "Squid", + "Rango", + "Sonarwatch", + "SushiSwap" + ], + "occurrences": 7 + }, + "0xc87b37a581ec3257b734886d9d3a581f5a9d056c": { + "address": "0xc87b37a581ec3257b734886d9d3a581f5a9d056c", + "symbol": "ATH", + "decimals": 18, + "name": "Aethir", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0xc87b37a581ec3257b734886d9d3a581f5a9d056c.png", + "aggregators": [ + "CoinGecko", + "1inch", + "Socket", + "Rubic", + "Squid", + "Rango", + "Sonarwatch" + ], + "occurrences": 7 + }, + "0x0341c0c0ec423328621788d4854119b97f44e391": { + "address": "0x0341c0c0ec423328621788d4854119b97f44e391", + "symbol": "SILO", + "decimals": 18, + "name": "Silo Governance Token", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0x0341c0c0ec423328621788d4854119b97f44e391.png", + "aggregators": [ + "TraderJoe", + "LiFi", + "Socket", + "Rubic", + "Rango", + "Sonarwatch", + "SushiSwap" + ], + "occurrences": 7 + }, + "0x371c7ec6d8039ff7933a2aa28eb827ffe1f52f07": { + "address": "0x371c7ec6d8039ff7933a2aa28eb827ffe1f52f07", + "symbol": "JOE", + "decimals": 18, + "name": "JOE", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0x371c7ec6d8039ff7933a2aa28eb827ffe1f52f07.png", + "aggregators": [ + "TraderJoe", + "1inch", + "LiFi", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 7 + }, + "0x9d2f299715d94d8a7e6f5eaa8e654e8c74a988a7": { + "address": "0x9d2f299715d94d8a7e6f5eaa8e654e8c74a988a7", + "symbol": "FXS", + "decimals": 18, + "name": "Frax Share", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0x9d2f299715d94d8a7e6f5eaa8e654e8c74a988a7.png", + "aggregators": [ + "TraderJoe", + "LiFi", + "Socket", + "Rubic", + "Squid", + "Rango", + "SushiSwap" + ], + "occurrences": 7 + }, + "0x323665443cef804a3b5206103304bd4872ea4253": { + "address": "0x323665443cef804a3b5206103304bd4872ea4253", + "symbol": "USDV", + "decimals": 6, + "name": "USDV", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0x323665443cef804a3b5206103304bd4872ea4253.png", + "aggregators": [ + "TraderJoe", + "LiFi", + "Socket", + "Rubic", + "Rango", + "Sonarwatch", + "SushiSwap" + ], + "occurrences": 7 + }, + "0x3b8db18e69d6686ad9371a423afe3dd1065c94f1": { + "address": "0x3b8db18e69d6686ad9371a423afe3dd1065c94f1", + "symbol": "ESP", + "decimals": 18, + "name": "Espresso", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0x3b8db18e69d6686ad9371a423afe3dd1065c94f1.png", + "aggregators": [ + "CoinGecko", + "LiFi", + "Socket", + "Rubic", + "Squid", + "Rango" + ], + "occurrences": 6 + }, + "0x46d0ce7de6247b0a95f67b43b589b4041bae7fbe": { + "address": "0x46d0ce7de6247b0a95f67b43b589b4041bae7fbe", + "symbol": "LRC", + "decimals": 18, + "name": "Loopring", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0x46d0ce7de6247b0a95f67b43b589b4041bae7fbe.png", + "aggregators": [ + "TraderJoe", + "LiFi", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 6 + }, + "0x2e9a6df78e42a30712c10a9dc4b1c8656f8f2879": { + "address": "0x2e9a6df78e42a30712c10a9dc4b1c8656f8f2879", + "symbol": "MKR", + "decimals": 18, + "name": "Maker", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0x2e9a6df78e42a30712c10a9dc4b1c8656f8f2879.png", + "aggregators": [ + "ArbitrumWhitelist", + "1inch", + "LiFi", + "Socket", + "Rubic", + "Rango" + ], + "occurrences": 6 + }, + "0x753d224bcf9aafacd81558c32341416df61d3dac": { + "address": "0x753d224bcf9aafacd81558c32341416df61d3dac", + "symbol": "PERP", + "decimals": 18, + "name": "Perpetual Protocol", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0x753d224bcf9aafacd81558c32341416df61d3dac.png", + "aggregators": [ + "TraderJoe", + "LiFi", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 6 + }, + "0x6491c05a82219b8d1479057361ff1654749b876b": { + "address": "0x6491c05a82219b8d1479057361ff1654749b876b", + "symbol": "USDS", + "decimals": 18, + "name": "USDS", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0x6491c05a82219b8d1479057361ff1654749b876b.png", + "aggregators": [ + "CoinGecko", + "1inch", + "LiFi", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 6 + }, + "0x031d35296154279dc1984dcd93e392b1f946737b": { + "address": "0x031d35296154279dc1984dcd93e392b1f946737b", + "symbol": "CAP", + "decimals": 18, + "name": "Cap", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0x031d35296154279dc1984dcd93e392b1f946737b.png", + "aggregators": [ + "TraderJoe", + "LiFi", + "Socket", + "Rubic", + "Rango", + "SushiSwap" + ], + "occurrences": 6 + }, + "0xae6aab43c4f3e0cea4ab83752c278f8debaba689": { + "address": "0xae6aab43c4f3e0cea4ab83752c278f8debaba689", + "symbol": "DF", + "decimals": 18, + "name": "dForce", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0xae6aab43c4f3e0cea4ab83752c278f8debaba689.png", + "aggregators": [ + "TraderJoe", + "LiFi", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 6 + }, + "0x8038f3c971414fd1fc220ba727f2d4a0fc98cb65": { + "address": "0x8038f3c971414fd1fc220ba727f2d4a0fc98cb65", + "symbol": "DHT", + "decimals": 18, + "name": "dHEDGE DAO", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0x8038f3c971414fd1fc220ba727f2d4a0fc98cb65.png", + "aggregators": [ + "TraderJoe", + "LiFi", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 6 + }, + "0x4425742f1ec8d98779690b5a3a6276db85ddc01a": { + "address": "0x4425742f1ec8d98779690b5a3a6276db85ddc01a", + "symbol": "DOG", + "decimals": 18, + "name": "The Doge NFT", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0x4425742f1ec8d98779690b5a3a6276db85ddc01a.png", + "aggregators": [ + "TraderJoe", + "LiFi", + "Socket", + "Rubic", + "Rango", + "SushiSwap" + ], + "occurrences": 6 + }, + "0xc3ae0333f0f34aa734d5493276223d95b8f9cb37": { + "address": "0xc3ae0333f0f34aa734d5493276223d95b8f9cb37", + "symbol": "DXD", + "decimals": 18, + "name": "DXdao", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0xc3ae0333f0f34aa734d5493276223d95b8f9cb37.png", + "aggregators": [ + "TraderJoe", + "LiFi", + "Socket", + "Rubic", + "Rango", + "SushiSwap" + ], + "occurrences": 6 + }, + "0x969131d8ddc06c2be11a13e6e7facf22cf57d95e": { + "address": "0x969131d8ddc06c2be11a13e6e7facf22cf57d95e", + "symbol": "EUX", + "decimals": 18, + "name": "dForce EUR", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0x969131d8ddc06c2be11a13e6e7facf22cf57d95e.png", + "aggregators": [ + "ArbitrumWhitelist", + "LiFi", + "Socket", + "Rubic", + "Rango", + "SushiSwap" + ], + "occurrences": 6 + }, + "0x965772e0e9c84b6f359c8597c891108dcf1c5b1a": { + "address": "0x965772e0e9c84b6f359c8597c891108dcf1c5b1a", + "symbol": "PICKLE", + "decimals": 18, + "name": "Pickle Finance", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0x965772e0e9c84b6f359c8597c891108dcf1c5b1a.png", + "aggregators": [ + "TraderJoe", + "LiFi", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 6 + }, + "0x326c33fd1113c1f29b35b4407f3d6312a8518431": { + "address": "0x326c33fd1113c1f29b35b4407f3d6312a8518431", + "symbol": "STRP", + "decimals": 18, + "name": "Strips Token", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0x326c33fd1113c1f29b35b4407f3d6312a8518431.png", + "aggregators": [ + "ArbitrumWhitelist", + "LiFi", + "Socket", + "Rubic", + "Rango", + "SushiSwap" + ], + "occurrences": 6 + }, + "0xa78d8321b20c4ef90ecd72f2588aa985a4bdb684": { + "address": "0xa78d8321b20c4ef90ecd72f2588aa985a4bdb684", + "symbol": "ANT", + "decimals": 18, + "name": "Autonomi", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0xa78d8321b20c4ef90ecd72f2588aa985a4bdb684.png", + "aggregators": [ + "CoinGecko", + "Socket", + "Rubic", + "Squid", + "Rango", + "Sonarwatch" + ], + "occurrences": 6 + }, + "0x0c1c1c109fe34733fca54b82d7b46b75cfb71f6e": { + "address": "0x0c1c1c109fe34733fca54b82d7b46b75cfb71f6e", + "symbol": "CHIP", + "decimals": 18, + "name": "USD.AI", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0x0c1c1c109fe34733fca54b82d7b46b75cfb71f6e.png", + "aggregators": [ + "CoinGecko", + "LiFi", + "Socket", + "Rubic", + "Squid", + "Rango" + ], + "occurrences": 6 + }, + "0x4cfa50b7ce747e2d61724fcac57f24b748ff2b2a": { + "address": "0x4cfa50b7ce747e2d61724fcac57f24b748ff2b2a", + "symbol": "FUSDC", + "decimals": 6, + "name": "Fluid USDC", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0x4cfa50b7ce747e2d61724fcac57f24b748ff2b2a.png", + "aggregators": [ + "TraderJoe", + "LiFi", + "Socket", + "Rubic", + "Sonarwatch", + "SushiSwap" + ], + "occurrences": 6 + }, + "0x6fbbbd8bfb1cd3986b1d05e7861a0f62f87db74b": { + "address": "0x6fbbbd8bfb1cd3986b1d05e7861a0f62f87db74b", + "symbol": "VSN", + "decimals": 18, + "name": "Vision", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0x6fbbbd8bfb1cd3986b1d05e7861a0f62f87db74b.png", + "aggregators": [ + "CoinGecko", + "LiFi", + "Socket", + "Rubic", + "Squid", + "Rango" + ], + "occurrences": 6 + }, + "0x46850ad61c2b7d64d08c9c754f45254596696984": { + "address": "0x46850ad61c2b7d64d08c9c754f45254596696984", + "symbol": "PYUSD", + "decimals": 6, + "name": "PayPal USD", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0x46850ad61c2b7d64d08c9c754f45254596696984.png", + "aggregators": [ + "CoinGecko", + "LiFi", + "Socket", + "Rubic", + "Squid", + "Rango" + ], + "occurrences": 6 + }, + "0xfdd22ce6d1f66bc0ec89b20bf16ccb6670f55a5a": { + "address": "0xfdd22ce6d1f66bc0ec89b20bf16ccb6670f55a5a", + "symbol": "THBILL", + "decimals": 6, + "name": "Theo Short Duration US Treasury Fund", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0xfdd22ce6d1f66bc0ec89b20bf16ccb6670f55a5a.png", + "aggregators": [ + "CoinGecko", + "LiFi", + "Socket", + "Rubic", + "Squid", + "Rango" + ], + "occurrences": 6 + }, + "0x0d81e50bc677fa67341c44d7eaa9228dee64a4e1": { + "address": "0x0d81e50bc677fa67341c44d7eaa9228dee64a4e1", + "symbol": "BOND", + "decimals": 18, + "name": "BarnBridge Governance Token", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0x0d81e50bc677fa67341c44d7eaa9228dee64a4e1.png", + "aggregators": ["TraderJoe", "LiFi", "Socket", "Rubic", "Rango"], + "occurrences": 5 + }, + "0x488cc08935458403a0458e45e20c0159c8ab2c92": { + "address": "0x488cc08935458403a0458e45e20c0159c8ab2c92", + "symbol": "FST", + "decimals": 18, + "name": "Futureswap", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0x488cc08935458403a0458e45e20c0159c8ab2c92.png", + "aggregators": [ + "ArbitrumWhitelist", + "LiFi", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0xde903e2712288a1da82942dddf2c20529565ac30": { + "address": "0xde903e2712288a1da82942dddf2c20529565ac30", + "symbol": "SWPR", + "decimals": 18, + "name": "Swapr", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0xde903e2712288a1da82942dddf2c20529565ac30.png", + "aggregators": [ + "TraderJoe", + "LiFi", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x4d15a3a2286d883af0aa1b3f21367843fac63e07": { + "address": "0x4d15a3a2286d883af0aa1b3f21367843fac63e07", + "symbol": "TUSD", + "decimals": 18, + "name": "TrueUSD", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0x4d15a3a2286d883af0aa1b3f21367843fac63e07.png", + "aggregators": ["TraderJoe", "LiFi", "Socket", "Rubic", "Rango"], + "occurrences": 5 + }, + "0x2cab3abfc1670d1a452df502e216a66883cdf079": { + "address": "0x2cab3abfc1670d1a452df502e216a66883cdf079", + "symbol": "L2DAO", + "decimals": 18, + "name": "Layer2DAO", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0x2cab3abfc1670d1a452df502e216a66883cdf079.png", + "aggregators": [ + "TraderJoe", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0xf0a5717ec0883ee56438932b0fe4a20822735fba": { + "address": "0xf0a5717ec0883ee56438932b0fe4a20822735fba", + "symbol": "XTK", + "decimals": 18, + "name": "xToken", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0xf0a5717ec0883ee56438932b0fe4a20822735fba.png", + "aggregators": ["TraderJoe", "Socket", "Rubic", "Rango"], + "occurrences": 4 + }, + "0xba5ddd1f9d7f570dc94a51479a000e3bce967196": { + "address": "0xba5ddd1f9d7f570dc94a51479a000e3bce967196", + "symbol": "AAVE", + "decimals": 18, + "name": "Aave", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0xba5ddd1f9d7f570dc94a51479a000e3bce967196.png", + "aggregators": [ + "CoinGecko", + "1inch", + "LiFi", + "Socket", + "Rubic", + "Squid", + "Rango", + "Sonarwatch" + ], + "occurrences": 8 + }, + "0xcbb7c0000ab88b473b1f5afd9ef808440eed33bf": { + "address": "0xcbb7c0000ab88b473b1f5afd9ef808440eed33bf", + "symbol": "CBBTC", + "decimals": 8, + "name": "Coinbase Wrapped BTC", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0xcbb7c0000ab88b473b1f5afd9ef808440eed33bf.png", + "aggregators": [ + "CoinGecko", + "1inch", + "LiFi", + "Socket", + "Rubic", + "Squid", + "Rango", + "Sonarwatch" + ], + "occurrences": 8 + }, + "0x7dff72693f6a4149b17e7c6314655f6a9f7c8b33": { + "address": "0x7dff72693f6a4149b17e7c6314655f6a9f7c8b33", + "symbol": "GHO", + "decimals": 18, + "name": "GHO", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0x7dff72693f6a4149b17e7c6314655f6a9f7c8b33.png", + "aggregators": [ + "CoinGecko", + "1inch", + "LiFi", + "Socket", + "Rubic", + "Squid", + "Rango", + "Sonarwatch" + ], + "occurrences": 8 + }, + "0x7189fb5b6504bbff6a852b13b7b82a3c118fdc27": { + "address": "0x7189fb5b6504bbff6a852b13b7b82a3c118fdc27", + "symbol": "ETHFI", + "decimals": 18, + "name": "Ether.fi", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0x7189fb5b6504bbff6a852b13b7b82a3c118fdc27.png", + "aggregators": [ + "TraderJoe", + "1inch", + "LiFi", + "Socket", + "Rubic", + "Squid", + "Rango", + "Sonarwatch" + ], + "occurrences": 8 + }, + "0x1b896893dfc86bb67cf57767298b9073d2c1ba2c": { + "address": "0x1b896893dfc86bb67cf57767298b9073d2c1ba2c", + "symbol": "CAKE", + "decimals": 18, + "name": "PancakeSwap", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0x1b896893dfc86bb67cf57767298b9073d2c1ba2c.png", + "aggregators": [ + "CoinGecko", + "1inch", + "LiFi", + "Socket", + "Rubic", + "Squid", + "Rango", + "Sonarwatch" + ], + "occurrences": 8 + }, + "0x9e758b8a98a42d612b3d38b66a22074dc03d7370": { + "address": "0x9e758b8a98a42d612b3d38b66a22074dc03d7370", + "symbol": "SIS", + "decimals": 18, + "name": "Symbiosis", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0x9e758b8a98a42d612b3d38b66a22074dc03d7370.png", + "aggregators": [ + "CoinGecko", + "1inch", + "LiFi", + "Socket", + "Rubic", + "Squid", + "Rango", + "Sonarwatch" + ], + "occurrences": 8 + }, + "0x55ff62567f09906a85183b866df84bf599a4bf70": { + "address": "0x55ff62567f09906a85183b866df84bf599a4bf70", + "symbol": "KROM", + "decimals": 18, + "name": "Kromatika", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0x55ff62567f09906a85183b866df84bf599a4bf70.png", + "aggregators": [ + "TraderJoe", + "1inch", + "LiFi", + "Socket", + "Rubic", + "Squid", + "Rango", + "Sonarwatch" + ], + "occurrences": 8 + }, + "0xd74f5255d557944cf7dd0e45ff521520002d5748": { + "address": "0xd74f5255d557944cf7dd0e45ff521520002d5748", + "symbol": "USDS", + "decimals": 18, + "name": "Sperax USD", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0xd74f5255d557944cf7dd0e45ff521520002d5748.png", + "aggregators": [ + "TraderJoe", + "1inch", + "LiFi", + "Socket", + "Rubic", + "Squid", + "Sonarwatch" + ], + "occurrences": 7 + }, + "0x4186bfc76e2e237523cbc30fd220fe055156b41f": { + "address": "0x4186bfc76e2e237523cbc30fd220fe055156b41f", + "symbol": "RSETH", + "decimals": 18, + "name": "KelpDAO Bridged rsETH (Arbitrum)", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0x4186bfc76e2e237523cbc30fd220fe055156b41f.png", + "aggregators": [ + "TraderJoe", + "1inch", + "LiFi", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 7 + }, + "0x4e200fe2f3efb977d5fd9c430a41531fb04d97b8": { + "address": "0x4e200fe2f3efb977d5fd9c430a41531fb04d97b8", + "symbol": "ORDER", + "decimals": 18, + "name": "Orderly Network", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0x4e200fe2f3efb977d5fd9c430a41531fb04d97b8.png", + "aggregators": [ + "TraderJoe", + "LiFi", + "Socket", + "Rubic", + "Squid", + "Rango", + "Sonarwatch" + ], + "occurrences": 7 + }, + "0x894134a25a5fac1c2c26f1d8fbf05111a3cb9487": { + "address": "0x894134a25a5fac1c2c26f1d8fbf05111a3cb9487", + "symbol": "GRAI", + "decimals": 18, + "name": "Grai", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0x894134a25a5fac1c2c26f1d8fbf05111a3cb9487.png", + "aggregators": [ + "CoinGecko", + "LiFi", + "Socket", + "Rubic", + "Squid", + "Rango", + "Sonarwatch" + ], + "occurrences": 7 + }, + "0x09199d9a5f4448d0848e4395d065e1ad9c4a1f74": { + "address": "0x09199d9a5f4448d0848e4395d065e1ad9c4a1f74", + "symbol": "BONK", + "decimals": 5, + "name": "Bonk", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0x09199d9a5f4448d0848e4395d065e1ad9c4a1f74.png", + "aggregators": [ + "TraderJoe", + "1inch", + "Socket", + "Rubic", + "Squid", + "Rango", + "Sonarwatch" + ], + "occurrences": 7 + }, + "0x55678cd083fcdc2947a0df635c93c838c89454a3": { + "address": "0x55678cd083fcdc2947a0df635c93c838c89454a3", + "symbol": "LON", + "decimals": 18, + "name": "Tokenlon", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0x55678cd083fcdc2947a0df635c93c838c89454a3.png", + "aggregators": [ + "TraderJoe", + "LiFi", + "Socket", + "Rubic", + "Squid", + "Rango", + "SushiSwap" + ], + "occurrences": 7 + }, + "0x178412e79c25968a32e89b11f63b33f733770c2a": { + "address": "0x178412e79c25968a32e89b11f63b33f733770c2a", + "symbol": "FRXETH", + "decimals": 18, + "name": "Frax Ether", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0x178412e79c25968a32e89b11f63b33f733770c2a.png", + "aggregators": [ + "TraderJoe", + "LiFi", + "Socket", + "Rubic", + "Squid", + "Rango", + "Sonarwatch" + ], + "occurrences": 7 + }, + "0x431402e8b9de9aa016c743880e04e517074d8cec": { + "address": "0x431402e8b9de9aa016c743880e04e517074d8cec", + "symbol": "HEGIC", + "decimals": 18, + "name": "Hegic", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0x431402e8b9de9aa016c743880e04e517074d8cec.png", + "aggregators": [ + "TraderJoe", + "LiFi", + "Socket", + "Rubic", + "Squid", + "Rango", + "Sonarwatch" + ], + "occurrences": 7 + }, + "0xe4dddfe67e7164b0fe14e218d80dc4c08edc01cb": { + "address": "0xe4dddfe67e7164b0fe14e218d80dc4c08edc01cb", + "symbol": "KNC", + "decimals": 18, + "name": "Kyber Network Crystal", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0xe4dddfe67e7164b0fe14e218d80dc4c08edc01cb.png", + "aggregators": [ + "TraderJoe", + "LiFi", + "Socket", + "Rubic", + "Squid", + "Rango", + "Sonarwatch" + ], + "occurrences": 7 + }, + "0x498c620c7c91c6eba2e3cd5485383f41613b7eb6": { + "address": "0x498c620c7c91c6eba2e3cd5485383f41613b7eb6", + "symbol": "AMKT", + "decimals": 18, + "name": "Alongside Crypto Market Index", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0x498c620c7c91c6eba2e3cd5485383f41613b7eb6.png", + "aggregators": [ + "TraderJoe", + "LiFi", + "Socket", + "Rubic", + "Squid", + "Rango", + "Sonarwatch" + ], + "occurrences": 7 + }, + "0x59d9356e565ab3a36dd77763fc0d87feaf85508c": { + "address": "0x59d9356e565ab3a36dd77763fc0d87feaf85508c", + "symbol": "USDM", + "decimals": 18, + "name": "Mountain Protocol USD", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0x59d9356e565ab3a36dd77763fc0d87feaf85508c.png", + "aggregators": [ + "CoinGecko", + "1inch", + "LiFi", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 7 + }, + "0xee9801669c6138e84bd50deb500827b776777d28": { + "address": "0xee9801669c6138e84bd50deb500827b776777d28", + "symbol": "O3", + "decimals": 18, + "name": "O3 Swap Token", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0xee9801669c6138e84bd50deb500827b776777d28.png", + "aggregators": [ + "TraderJoe", + "LiFi", + "Socket", + "Rubic", + "Rango", + "Sonarwatch", + "SushiSwap" + ], + "occurrences": 7 + }, + "0x123389c2f0e9194d9ba98c21e63c375b67614108": { + "address": "0x123389c2f0e9194d9ba98c21e63c375b67614108", + "symbol": "EMAX", + "decimals": 18, + "name": "EthereumMax", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0x123389c2f0e9194d9ba98c21e63c375b67614108.png", + "aggregators": [ + "TraderJoe", + "1inch", + "Socket", + "Rubic", + "Squid", + "Rango", + "SushiSwap" + ], + "occurrences": 7 + }, + "0xb0ffa8000886e57f86dd5264b9582b2ad87b2b91": { + "address": "0xb0ffa8000886e57f86dd5264b9582b2ad87b2b91", + "symbol": "W", + "decimals": 18, + "name": "Wormhole", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0xb0ffa8000886e57f86dd5264b9582b2ad87b2b91.png", + "aggregators": [ + "CoinGecko", + "1inch", + "LiFi", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 7 + }, + "0xcf985aba4647a432e60efceeb8054bbd64244305": { + "address": "0xcf985aba4647a432e60efceeb8054bbd64244305", + "symbol": "EUROE", + "decimals": 6, + "name": "EUROe Stablecoin", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0xcf985aba4647a432e60efceeb8054bbd64244305.png", + "aggregators": [ + "TraderJoe", + "LiFi", + "Socket", + "Rubic", + "Rango", + "Sonarwatch", + "SushiSwap" + ], + "occurrences": 7 + }, + "0xd5954c3084a1ccd70b4da011e67760b8e78aee84": { + "address": "0xd5954c3084a1ccd70b4da011e67760b8e78aee84", + "symbol": "ARX", + "decimals": 18, + "name": "Arbidex", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0xd5954c3084a1ccd70b4da011e67760b8e78aee84.png", + "aggregators": [ + "TraderJoe", + "LiFi", + "Socket", + "Rubic", + "Squid", + "Rango", + "Sonarwatch" + ], + "occurrences": 7 + }, + "0x3a18dcc9745edcd1ef33ecb93b0b6eba5671e7ca": { + "address": "0x3a18dcc9745edcd1ef33ecb93b0b6eba5671e7ca", + "symbol": "KUJI", + "decimals": 6, + "name": "Kujira", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0x3a18dcc9745edcd1ef33ecb93b0b6eba5671e7ca.png", + "aggregators": [ + "TraderJoe", + "LiFi", + "Socket", + "Rubic", + "Squid", + "Sonarwatch" + ], + "occurrences": 6 + }, + "0x289ba1701c2f088cf0faf8b3705246331cb8a839": { + "address": "0x289ba1701c2f088cf0faf8b3705246331cb8a839", + "symbol": "LPT", + "decimals": 18, + "name": "Livepeer Token", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0x289ba1701c2f088cf0faf8b3705246331cb8a839.png", + "aggregators": [ + "TraderJoe", + "LiFi", + "Socket", + "Rubic", + "Squid", + "Rango" + ], + "occurrences": 6 + }, + "0x0e15258734300290a651fdbae8deb039a8e7a2fa": { + "address": "0x0e15258734300290a651fdbae8deb039a8e7a2fa", + "symbol": "ALCH", + "decimals": 18, + "name": "Alchemy", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0x0e15258734300290a651fdbae8deb039a8e7a2fa.png", + "aggregators": [ + "ArbitrumWhitelist", + "LiFi", + "Socket", + "Rubic", + "Rango", + "SushiSwap" + ], + "occurrences": 6 + }, + "0xea986d33ef8a20a96120ecc44dbdd49830192043": { + "address": "0xea986d33ef8a20a96120ecc44dbdd49830192043", + "symbol": "AUC", + "decimals": 18, + "name": "Auctus", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0xea986d33ef8a20a96120ecc44dbdd49830192043.png", + "aggregators": [ + "TraderJoe", + "LiFi", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 6 + }, + "0xa7aa2921618e3d63da433829d448b58c9445a4c3": { + "address": "0xa7aa2921618e3d63da433829d448b58c9445a4c3", + "symbol": "DVF", + "decimals": 18, + "name": "DeversiFi Token", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0xa7aa2921618e3d63da433829d448b58c9445a4c3.png", + "aggregators": [ + "ArbitrumWhitelist", + "LiFi", + "Socket", + "Rubic", + "Rango", + "SushiSwap" + ], + "occurrences": 6 + }, + "0x2338a5d62e9a766289934e8d2e83a443e8065b83": { + "address": "0x2338a5d62e9a766289934e8d2e83a443e8065b83", + "symbol": "FLUX", + "decimals": 18, + "name": "Flux Protocol", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0x2338a5d62e9a766289934e8d2e83a443e8065b83.png", + "aggregators": [ + "ArbitrumWhitelist", + "LiFi", + "Socket", + "Rubic", + "Rango", + "SushiSwap" + ], + "occurrences": 6 + }, + "0xbdef0e9ef12e689f366fe494a7a7d0dad25d9286": { + "address": "0xbdef0e9ef12e689f366fe494a7a7d0dad25d9286", + "symbol": "FUSE", + "decimals": 18, + "name": "Fuse Token", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0xbdef0e9ef12e689f366fe494a7a7d0dad25d9286.png", + "aggregators": [ + "ArbitrumWhitelist", + "LiFi", + "Socket", + "Rubic", + "Rango", + "SushiSwap" + ], + "occurrences": 6 + }, + "0xb965029343d55189c25a7f3e0c9394dc0f5d41b1": { + "address": "0xb965029343d55189c25a7f3e0c9394dc0f5d41b1", + "symbol": "NDX", + "decimals": 18, + "name": "Indexed Finance", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0xb965029343d55189c25a7f3e0c9394dc0f5d41b1.png", + "aggregators": [ + "TraderJoe", + "LiFi", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 6 + }, + "0xa72159fc390f0e3c6d415e658264c7c4051e9b87": { + "address": "0xa72159fc390f0e3c6d415e658264c7c4051e9b87", + "symbol": "TCR", + "decimals": 18, + "name": "Tracer", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0xa72159fc390f0e3c6d415e658264c7c4051e9b87.png", + "aggregators": [ + "ArbitrumWhitelist", + "LiFi", + "Socket", + "Rubic", + "Rango", + "SushiSwap" + ], + "occurrences": 6 + }, + "0x995c235521820f2637303ca1970c7c044583df44": { + "address": "0x995c235521820f2637303ca1970c7c044583df44", + "symbol": "VISR", + "decimals": 18, + "name": "VISOR", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0x995c235521820f2637303ca1970c7c044583df44.png", + "aggregators": [ + "ArbitrumWhitelist", + "LiFi", + "Socket", + "Rubic", + "Rango", + "SushiSwap" + ], + "occurrences": 6 + }, + "0xc24a365a870821eb83fd216c9596edd89479d8d7": { + "address": "0xc24a365a870821eb83fd216c9596edd89479d8d7", + "symbol": "G3", + "decimals": 18, + "name": "GAM3S.GG", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0xc24a365a870821eb83fd216c9596edd89479d8d7.png", + "aggregators": [ + "CoinGecko", + "LiFi", + "Socket", + "Rubic", + "Squid", + "Rango" + ], + "occurrences": 6 + }, + "0x7f465507f058e17ad21623927a120ac05ca32741": { + "address": "0x7f465507f058e17ad21623927a120ac05ca32741", + "symbol": "ARC", + "decimals": 18, + "name": "Arcadeum", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0x7f465507f058e17ad21623927a120ac05ca32741.png", + "aggregators": [ + "TraderJoe", + "LiFi", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 6 + }, + "0x3d9907f9a368ad0a51be60f7da3b97cf940982d8": { + "address": "0x3d9907f9a368ad0a51be60f7da3b97cf940982d8", + "symbol": "GRAIL", + "decimals": 18, + "name": "Camelot Token", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0x3d9907f9a368ad0a51be60f7da3b97cf940982d8.png", + "aggregators": [ + "TraderJoe", + "LiFi", + "Rubic", + "Squid", + "Rango", + "Sonarwatch" + ], + "occurrences": 6 + }, + "0x58b9cb810a68a7f3e1e4f8cb45d1b9b3c79705e8": { + "address": "0x58b9cb810a68a7f3e1e4f8cb45d1b9b3c79705e8", + "symbol": "NEXT", + "decimals": 18, + "name": "Everclear", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0x58b9cb810a68a7f3e1e4f8cb45d1b9b3c79705e8.png", + "aggregators": [ + "CoinGecko", + "1inch", + "LiFi", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 6 + }, + "0x9f6abbf0ba6b5bfa27f4deb6597cc6ec20573fda": { + "address": "0x9f6abbf0ba6b5bfa27f4deb6597cc6ec20573fda", + "symbol": "FRM", + "decimals": 18, + "name": "Ferrum Network Token", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0x9f6abbf0ba6b5bfa27f4deb6597cc6ec20573fda.png", + "aggregators": [ + "TraderJoe", + "Socket", + "Rubic", + "Rango", + "Sonarwatch", + "SushiSwap" + ], + "occurrences": 6 + }, + "0x498bf2b1e120fed3ad3d42ea2165e9b73f99c1e5": { + "address": "0x498bf2b1e120fed3ad3d42ea2165e9b73f99c1e5", + "symbol": "CRVUSD", + "decimals": 18, + "name": "crvUSD", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0x498bf2b1e120fed3ad3d42ea2165e9b73f99c1e5.png", + "aggregators": [ + "CoinGecko", + "1inch", + "LiFi", + "Socket", + "Rubic", + "Rango" + ], + "occurrences": 6 + }, + "0x66e535e8d2ebf13f49f3d49e5c50395a97c137b1": { + "address": "0x66e535e8d2ebf13f49f3d49e5c50395a97c137b1", + "symbol": "MOLTEN", + "decimals": 18, + "name": "Molten", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0x66e535e8d2ebf13f49f3d49e5c50395a97c137b1.png", + "aggregators": [ + "TraderJoe", + "Socket", + "Rubic", + "Squid", + "Rango", + "Sonarwatch" + ], + "occurrences": 6 + }, + "0xdcbf4cb83d27c408b30dd7f39bfcabd7176b1ba3": { + "address": "0xdcbf4cb83d27c408b30dd7f39bfcabd7176b1ba3", + "symbol": "OOE", + "decimals": 18, + "name": "OpenOcean", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0xdcbf4cb83d27c408b30dd7f39bfcabd7176b1ba3.png", + "aggregators": [ + "CoinGecko", + "LiFi", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 6 + }, + "0x17a8541b82bf67e10b0874284b4ae66858cb1fd5": { + "address": "0x17a8541b82bf67e10b0874284b4ae66858cb1fd5", + "symbol": "PSM", + "decimals": 18, + "name": "Possum", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0x17a8541b82bf67e10b0874284b4ae66858cb1fd5.png", + "aggregators": [ + "TraderJoe", + "1inch", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 6 + }, + "0x4f604735c1cf31399c6e711d5962b2b3e0225ad3": { + "address": "0x4f604735c1cf31399c6e711d5962b2b3e0225ad3", + "symbol": "USDGLO", + "decimals": 18, + "name": "Glo Dollar", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0x4f604735c1cf31399c6e711d5962b2b3e0225ad3.png", + "aggregators": [ + "CoinGecko", + "Socket", + "Rubic", + "Squid", + "Rango", + "Sonarwatch" + ], + "occurrences": 6 + }, + "0x18c11fd286c5ec11c3b683caa813b77f5163a122": { + "address": "0x18c11fd286c5ec11c3b683caa813b77f5163a122", + "symbol": "GNS", + "decimals": 18, + "name": "Gains Network", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0x18c11fd286c5ec11c3b683caa813b77f5163a122.png", + "aggregators": [ + "TraderJoe", + "LiFi", + "Rubic", + "Squid", + "Rango", + "Sonarwatch" + ], + "occurrences": 6 + }, + "0x7b5eb3940021ec0e8e463d5dbb4b7b09a89ddf96": { + "address": "0x7b5eb3940021ec0e8e463d5dbb4b7b09a89ddf96", + "symbol": "WOM", + "decimals": 18, + "name": "Wombat Exchange", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0x7b5eb3940021ec0e8e463d5dbb4b7b09a89ddf96.png", + "aggregators": [ + "TraderJoe", + "LiFi", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 6 + }, + "0x641441c631e2f909700d2f41fd87f0aa6a6b4edb": { + "address": "0x641441c631e2f909700d2f41fd87f0aa6a6b4edb", + "symbol": "USX", + "decimals": 18, + "name": "dForce USD", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0x641441c631e2f909700d2f41fd87f0aa6a6b4edb.png", + "aggregators": [ + "TraderJoe", + "LiFi", + "Socket", + "Rubic", + "Rango", + "SushiSwap" + ], + "occurrences": 6 + }, + "0xbc011a12da28e8f0f528d9ee5e7039e22f91cf18": { + "address": "0xbc011a12da28e8f0f528d9ee5e7039e22f91cf18", + "symbol": "SWETH", + "decimals": 18, + "name": "Swell Ethereum", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0xbc011a12da28e8f0f528d9ee5e7039e22f91cf18.png", + "aggregators": [ + "TraderJoe", + "LiFi", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 6 + }, + "0x10010078a54396f62c96df8532dc2b4847d47ed3": { + "address": "0x10010078a54396f62c96df8532dc2b4847d47ed3", + "symbol": "HND", + "decimals": 18, + "name": "Hundred Finance", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0x10010078a54396f62c96df8532dc2b4847d47ed3.png", + "aggregators": [ + "TraderJoe", + "LiFi", + "Socket", + "Rubic", + "Rango", + "SushiSwap" + ], + "occurrences": 6 + }, + "0x64343594ab9b56e99087bfa6f2335db24c2d1f17": { + "address": "0x64343594ab9b56e99087bfa6f2335db24c2d1f17", + "symbol": "VST", + "decimals": 18, + "name": "Vesta Stable", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0x64343594ab9b56e99087bfa6f2335db24c2d1f17.png", + "aggregators": [ + "TraderJoe", + "LiFi", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 6 + }, + "0x80bb30d62a16e1f2084deae84dc293531c3ac3a1": { + "address": "0x80bb30d62a16e1f2084deae84dc293531c3ac3a1", + "symbol": "GRAIN", + "decimals": 18, + "name": "Granary", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0x80bb30d62a16e1f2084deae84dc293531c3ac3a1.png", + "aggregators": [ + "TraderJoe", + "Socket", + "Rubic", + "Squid", + "Rango", + "Sonarwatch" + ], + "occurrences": 6 + }, + "0x876ec6be52486eeec06bc06434f3e629d695c6ba": { + "address": "0x876ec6be52486eeec06bc06434f3e629d695c6ba", + "symbol": "FLUID", + "decimals": 18, + "name": "FluidFi", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0x876ec6be52486eeec06bc06434f3e629d695c6ba.png", + "aggregators": [ + "LiFi", + "Socket", + "Rubic", + "Squid", + "Rango", + "SushiSwap" + ], + "occurrences": 6 + }, + "0x6fe14d3cc2f7bddffba5cdb3bbe7467dd81ea101": { + "address": "0x6fe14d3cc2f7bddffba5cdb3bbe7467dd81ea101", + "symbol": "COTI", + "decimals": 18, + "name": "COTI Token", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0x6fe14d3cc2f7bddffba5cdb3bbe7467dd81ea101.png", + "aggregators": [ + "ArbitrumWhitelist", + "LiFi", + "Socket", + "Rubic", + "Rango" + ], + "occurrences": 5 + }, + "0xaef5bbcbfa438519a5ea80b4c7181b4e78d419f2": { + "address": "0xaef5bbcbfa438519a5ea80b4c7181b4e78d419f2", + "symbol": "RAI", + "decimals": 18, + "name": "Rai Reflex Index", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0xaef5bbcbfa438519a5ea80b4c7181b4e78d419f2.png", + "aggregators": [ + "ArbitrumWhitelist", + "LiFi", + "Socket", + "Rubic", + "Rango" + ], + "occurrences": 5 + }, + "0x25118290e6a5f4139381d072181157035864099d": { + "address": "0x25118290e6a5f4139381d072181157035864099d", + "symbol": "RAIN", + "decimals": 18, + "name": "RAIN", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0x25118290e6a5f4139381d072181157035864099d.png", + "aggregators": ["CoinGecko", "Socket", "Rubic", "Rango"], + "occurrences": 4 + }, + "0x40461291347e1ecbb09499f3371d3f17f10d7159": { + "address": "0x40461291347e1ecbb09499f3371d3f17f10d7159", + "symbol": "XAUT0", + "decimals": 6, + "name": "Tether Gold Tokens", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0x40461291347e1ecbb09499f3371d3f17f10d7159.png", + "aggregators": ["CoinGecko", "LiFi", "Rubic", "Squid", "Rango"], + "occurrences": 5 + }, + "0x7cb16cb78ea464ad35c8a50abf95dff3c9e09d5d": { + "address": "0x7cb16cb78ea464ad35c8a50abf95dff3c9e09d5d", + "symbol": "0XBTC", + "decimals": 8, + "name": "0xBitcoin Token", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0x7cb16cb78ea464ad35c8a50abf95dff3c9e09d5d.png", + "aggregators": ["TraderJoe", "LiFi", "Socket", "Rubic", "Rango"], + "occurrences": 5 + }, + "0x9b3fa2a7c3eb36d048a5d38d81e7fafc6bc47b25": { + "address": "0x9b3fa2a7c3eb36d048a5d38d81e7fafc6bc47b25", + "symbol": "ALN", + "decimals": 18, + "name": "Aluna", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0x9b3fa2a7c3eb36d048a5d38d81e7fafc6bc47b25.png", + "aggregators": [ + "TraderJoe", + "LiFi", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x5298ee77a8f9e226898403ebac33e68a62f770a0": { + "address": "0x5298ee77a8f9e226898403ebac33e68a62f770a0", + "symbol": "MTA", + "decimals": 18, + "name": "Meta", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0x5298ee77a8f9e226898403ebac33e68a62f770a0.png", + "aggregators": [ + "ArbitrumWhitelist", + "LiFi", + "Socket", + "Rubic", + "Rango" + ], + "occurrences": 5 + }, + "0x55704a0e9e2eb59e176c5b69655dbd3dcdcfc0f0": { + "address": "0x55704a0e9e2eb59e176c5b69655dbd3dcdcfc0f0", + "symbol": "OVR", + "decimals": 18, + "name": "OVR", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0x55704a0e9e2eb59e176c5b69655dbd3dcdcfc0f0.png", + "aggregators": [ + "ArbitrumWhitelist", + "LiFi", + "Socket", + "Rubic", + "Rango" + ], + "occurrences": 5 + }, + "0x3642c0680329ae3e103e2b5ab29ddfed4d43cbe5": { + "address": "0x3642c0680329ae3e103e2b5ab29ddfed4d43cbe5", + "symbol": "PL2", + "decimals": 18, + "name": "Plenny", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0x3642c0680329ae3e103e2b5ab29ddfed4d43cbe5.png", + "aggregators": [ + "ArbitrumWhitelist", + "Socket", + "Rubic", + "Rango", + "SushiSwap" + ], + "occurrences": 5 + }, + "0x1cd9a56c8c2ea913c70319a44da75e99255aa46f": { + "address": "0x1cd9a56c8c2ea913c70319a44da75e99255aa46f", + "symbol": "OBT", + "decimals": 18, + "name": "Orbiter Token", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0x1cd9a56c8c2ea913c70319a44da75e99255aa46f.png", + "aggregators": ["CoinGecko", "LiFi", "Socket", "Rubic", "Rango"], + "occurrences": 5 + }, + "0x8b0e6f19ee57089f7649a455d89d7bc6314d04e8": { + "address": "0x8b0e6f19ee57089f7649a455d89d7bc6314d04e8", + "symbol": "DMT", + "decimals": 18, + "name": "Dream Machine Token", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0x8b0e6f19ee57089f7649a455d89d7bc6314d04e8.png", + "aggregators": [ + "TraderJoe", + "LiFi", + "Socket", + "Rubic", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0xef261714f7e5ba6b86f4780eb6e3bf26b10729cf": { + "address": "0xef261714f7e5ba6b86f4780eb6e3bf26b10729cf", + "symbol": "LOTUS", + "decimals": 18, + "name": "White Lotus", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0xef261714f7e5ba6b86f4780eb6e3bf26b10729cf.png", + "aggregators": [ + "TraderJoe", + "Rubic", + "Squid", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x0c3ff025aacfa2670420f1d4cb593dd2a0a0383e": { + "address": "0x0c3ff025aacfa2670420f1d4cb593dd2a0a0383e", + "symbol": "WEHMND", + "decimals": 18, + "name": "Wrapped eHMND", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0x0c3ff025aacfa2670420f1d4cb593dd2a0a0383e.png", + "aggregators": ["CoinGecko", "1inch", "Rubic", "Squid", "Rango"], + "occurrences": 5 + }, + "0x462cd9e0247b2e63831c3189ae738e5e9a5a4b64": { + "address": "0x462cd9e0247b2e63831c3189ae738e5e9a5a4b64", + "symbol": "EUL", + "decimals": 18, + "name": "EUL", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0x462cd9e0247b2e63831c3189ae738e5e9a5a4b64.png", + "aggregators": ["CoinGecko", "LiFi", "Socket", "Rubic", "Rango"], + "occurrences": 5 + }, + "0xa4eaec0b1d564061a4951816fd5b1ba8cfbc425c": { + "address": "0xa4eaec0b1d564061a4951816fd5b1ba8cfbc425c", + "symbol": "GIZA", + "decimals": 18, + "name": "GIZA", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0xa4eaec0b1d564061a4951816fd5b1ba8cfbc425c.png", + "aggregators": ["CoinGecko", "LiFi", "Socket", "Rubic", "Rango"], + "occurrences": 5 + }, + "0x10ea9e5303670331bdddfa66a4cea47dae4fcf3b": { + "address": "0x10ea9e5303670331bdddfa66a4cea47dae4fcf3b", + "symbol": "SESH", + "decimals": 9, + "name": "Session Token", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0x10ea9e5303670331bdddfa66a4cea47dae4fcf3b.png", + "aggregators": [ + "CoinGecko", + "LiFi", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x31dba3c96481fde3cd81c2aaf51f2d8bf618c742": { + "address": "0x31dba3c96481fde3cd81c2aaf51f2d8bf618c742", + "symbol": "SOPH", + "decimals": 18, + "name": "SOPH", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0x31dba3c96481fde3cd81c2aaf51f2d8bf618c742.png", + "aggregators": ["CoinGecko", "LiFi", "Socket", "Rubic", "Rango"], + "occurrences": 5 + }, + "0xaeac3b55c3522157ecda7ec8fcb86c832faa28af": { + "address": "0xaeac3b55c3522157ecda7ec8fcb86c832faa28af", + "symbol": "XYRO", + "decimals": 18, + "name": "XYRO", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0xaeac3b55c3522157ecda7ec8fcb86c832faa28af.png", + "aggregators": [ + "CoinGecko", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x333333c465a19c85f85c6cfbed7b16b0b26e3333": { + "address": "0x333333c465a19c85f85c6cfbed7b16b0b26e3333", + "symbol": "ORA", + "decimals": 18, + "name": "ORA", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0x333333c465a19c85f85c6cfbed7b16b0b26e3333.png", + "aggregators": ["CoinGecko", "LiFi", "Socket", "Rubic", "Rango"], + "occurrences": 5 + }, + "0x291a50e611035b6562a2374b8b44de70aa8d7896": { + "address": "0x291a50e611035b6562a2374b8b44de70aa8d7896", + "symbol": "PEN", + "decimals": 18, + "name": "Pentagon Games", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0x291a50e611035b6562a2374b8b44de70aa8d7896.png", + "aggregators": [ + "CoinGecko", + "LiFi", + "Socket", + "Rubic", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x0b3eaead748facdb9d943d3407011f16eb17d0cf": { + "address": "0x0b3eaead748facdb9d943d3407011f16eb17d0cf", + "symbol": "PMX", + "decimals": 18, + "name": "Primex Finance", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0x0b3eaead748facdb9d943d3407011f16eb17d0cf.png", + "aggregators": [ + "CoinGecko", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0xca7dec8550f43a5e46e3dfb95801f64280e75b27": { + "address": "0xca7dec8550f43a5e46e3dfb95801f64280e75b27", + "symbol": "SWEAT", + "decimals": 18, + "name": "Sweat Economy", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0xca7dec8550f43a5e46e3dfb95801f64280e75b27.png", + "aggregators": [ + "CoinGecko", + "LiFi", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x0c5fa0e07949f941a6c2c29a008252db1527d6ee": { + "address": "0x0c5fa0e07949f941a6c2c29a008252db1527d6ee", + "symbol": "OPUL", + "decimals": 18, + "name": "Opulous", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0x0c5fa0e07949f941a6c2c29a008252db1527d6ee.png", + "aggregators": [ + "TraderJoe", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0xb1fe27b32ffb5ce54e272c096547f1e86c19e72f": { + "address": "0xb1fe27b32ffb5ce54e272c096547f1e86c19e72f", + "symbol": "RSWETH", + "decimals": 18, + "name": "RSWETH", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0xb1fe27b32ffb5ce54e272c096547f1e86c19e72f.png", + "aggregators": ["CoinGecko", "LiFi", "Socket", "Rubic", "Rango"], + "occurrences": 5 + }, + "0x61e030a56d33e8260fdd81f03b162a79fe3449cd": { + "address": "0x61e030a56d33e8260fdd81f03b162a79fe3449cd", + "symbol": "FLUID", + "decimals": 18, + "name": "Fluid", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0x61e030a56d33e8260fdd81f03b162a79fe3449cd.png", + "aggregators": ["CoinGecko", "LiFi", "Socket", "Rubic", "Rango"], + "occurrences": 5 + }, + "0x7424f00845777a06e21f0bd8873f814a8a814b2d": { + "address": "0x7424f00845777a06e21f0bd8873f814a8a814b2d", + "symbol": "WXTZ", + "decimals": 18, + "name": "Wrapped XTZ", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0x7424f00845777a06e21f0bd8873f814a8a814b2d.png", + "aggregators": ["CoinGecko", "LiFi", "Socket", "Rubic", "Rango"], + "occurrences": 5 + }, + "0x437cc33344a0b27a429f795ff6b469c72698b291": { + "address": "0x437cc33344a0b27a429f795ff6b469c72698b291", + "symbol": "WM", + "decimals": 6, + "name": "WrappedM by M0", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0x437cc33344a0b27a429f795ff6b469c72698b291.png", + "aggregators": ["CoinGecko", "LiFi", "Socket", "Rubic", "Rango"], + "occurrences": 5 + }, + "0x09d4214c03d01f49544c0448dbe3a27f768f2b34": { + "address": "0x09d4214c03d01f49544c0448dbe3a27f768f2b34", + "symbol": "RUSD", + "decimals": 18, + "name": "RUSD", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0x09d4214c03d01f49544c0448dbe3a27f768f2b34.png", + "aggregators": ["CoinGecko", "LiFi", "Socket", "Rubic", "Rango"], + "occurrences": 5 + }, + "0xe649e6a1f2afc63ca268c2363691cecaf75cf47c": { + "address": "0xe649e6a1f2afc63ca268c2363691cecaf75cf47c", + "symbol": "RLC", + "decimals": 9, + "name": "iExec RLC", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0xe649e6a1f2afc63ca268c2363691cecaf75cf47c.png", + "aggregators": ["CoinGecko", "Socket", "Rubic", "Squid", "Rango"], + "occurrences": 5 + }, + "0x4809010926aec940b550d34a46a52739f996d75d": { + "address": "0x4809010926aec940b550d34a46a52739f996d75d", + "symbol": "WSRUSD", + "decimals": 18, + "name": "WSRUSD", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0x4809010926aec940b550d34a46a52739f996d75d.png", + "aggregators": ["CoinGecko", "LiFi", "Socket", "Rubic", "Rango"], + "occurrences": 5 + }, + "0xf8173a39c56a554837c4c7f104153a005d284d11": { + "address": "0xf8173a39c56a554837c4c7f104153a005d284d11", + "symbol": "EDU", + "decimals": 18, + "name": "EDU Coin", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0xf8173a39c56a554837c4c7f104153a005d284d11.png", + "aggregators": ["CoinGecko", "LiFi", "Socket", "Rubic", "Rango"], + "occurrences": 5 + }, + "0x5e85faf503621830ca857a5f38b982e0cc57d537": { + "address": "0x5e85faf503621830ca857a5f38b982e0cc57d537", + "symbol": "DEURO", + "decimals": 18, + "name": "Decentralized Euro", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0x5e85faf503621830ca857a5f38b982e0cc57d537.png", + "aggregators": [ + "CoinGecko", + "LiFi", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x000f1720a263f96532d1ac2bb9cdc12b72c6f386": { + "address": "0x000f1720a263f96532d1ac2bb9cdc12b72c6f386", + "symbol": "FLY", + "decimals": 6, + "name": "Fluidity", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0x000f1720a263f96532d1ac2bb9cdc12b72c6f386.png", + "aggregators": [ + "TraderJoe", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x9ed7e4b1bff939ad473da5e7a218c771d1569456": { + "address": "0x9ed7e4b1bff939ad473da5e7a218c771d1569456", + "symbol": "REUNI", + "decimals": 6, + "name": "Reunit Token", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0x9ed7e4b1bff939ad473da5e7a218c771d1569456.png", + "aggregators": ["TraderJoe", "1inch", "LiFi", "Rubic", "Rango"], + "occurrences": 5 + }, + "0xdd89a4d3362828e601df52208302a741f08e46c5": { + "address": "0xdd89a4d3362828e601df52208302a741f08e46c5", + "symbol": "O3", + "decimals": 18, + "name": "O3", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0xdd89a4d3362828e601df52208302a741f08e46c5.png", + "aggregators": [ + "TraderJoe", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0xf18e4466f26b4ca55bbab890b314a54976e45b17": { + "address": "0xf18e4466f26b4ca55bbab890b314a54976e45b17", + "symbol": "G7", + "decimals": 18, + "name": "Game7", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0xf18e4466f26b4ca55bbab890b314a54976e45b17.png", + "aggregators": [ + "TraderJoe", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0xb2f30a7c980f052f02563fb518dcc39e6bf38175": { + "address": "0xb2f30a7c980f052f02563fb518dcc39e6bf38175", + "symbol": "USDX", + "decimals": 18, + "name": "Synthetix USD", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0xb2f30a7c980f052f02563fb518dcc39e6bf38175.png", + "aggregators": ["1inch", "LiFi", "Socket", "Rubic", "Rango"], + "occurrences": 5 + }, + "0xc136e6b376a9946b156db1ed3a34b08afdaed76d": { + "address": "0xc136e6b376a9946b156db1ed3a34b08afdaed76d", + "symbol": "CREDA", + "decimals": 18, + "name": "CreDA Protocol Token", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0xc136e6b376a9946b156db1ed3a34b08afdaed76d.png", + "aggregators": ["LiFi", "Socket", "Rubic", "Rango", "SushiSwap"], + "occurrences": 5 + }, + "0xafd871f684f21ab9d7137608c71808f83d75e6fc": { + "address": "0xafd871f684f21ab9d7137608c71808f83d75e6fc", + "symbol": "BUCK", + "decimals": 18, + "name": "Arbucks", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0xafd871f684f21ab9d7137608c71808f83d75e6fc.png", + "aggregators": ["Socket", "Rubic", "Squid", "Rango", "SushiSwap"], + "occurrences": 5 + }, + "0x86a1012d437bbff84fbdf62569d12d4fd3396f8c": { + "address": "0x86a1012d437bbff84fbdf62569d12d4fd3396f8c", + "symbol": "ARBYS", + "decimals": 18, + "name": "Arbys", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0x86a1012d437bbff84fbdf62569d12d4fd3396f8c.png", + "aggregators": ["Socket", "Rubic", "Squid", "Rango", "SushiSwap"], + "occurrences": 5 + }, + "0x11920f139a3121c2836e01551d43f95b3c31159c": { + "address": "0x11920f139a3121c2836e01551d43f95b3c31159c", + "symbol": "YBR", + "decimals": 18, + "name": "YieldBricks", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0x11920f139a3121c2836e01551d43f95b3c31159c.png", + "aggregators": ["Socket", "Rubic", "Squid", "Rango", "Sonarwatch"], + "occurrences": 5 + }, + "0xc9c2b86cd4cdbab70cd65d22eb044574c3539f6c": { + "address": "0xc9c2b86cd4cdbab70cd65d22eb044574c3539f6c", + "symbol": "NFD", + "decimals": 18, + "name": "Feisty Doge NFT", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0xc9c2b86cd4cdbab70cd65d22eb044574c3539f6c.png", + "aggregators": ["ArbitrumWhitelist", "Socket", "Rubic", "Rango"], + "occurrences": 4 + }, + "0x95146881b86b3ee99e63705ec87afe29fcc044d9": { + "address": "0x95146881b86b3ee99e63705ec87afe29fcc044d9", + "symbol": "VRTX", + "decimals": 18, + "name": "Vertex", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0x95146881b86b3ee99e63705ec87afe29fcc044d9.png", + "aggregators": ["TraderJoe", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0xddf7d080c82b8048baae54e376a3406572429b4e": { + "address": "0xddf7d080c82b8048baae54e376a3406572429b4e", + "symbol": "OOOOOO", + "decimals": 18, + "name": "GODDOG", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0xddf7d080c82b8048baae54e376a3406572429b4e.png", + "aggregators": ["Socket", "Rubic", "Squid", "Rango"], + "occurrences": 4 + }, + "0x0c4681e6c0235179ec3d4f4fc4df3d14fdd96017": { + "address": "0x0c4681e6c0235179ec3d4f4fc4df3d14fdd96017", + "symbol": "RDNT", + "decimals": 18, + "name": "Radiant", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0x0c4681e6c0235179ec3d4f4fc4df3d14fdd96017.png", + "aggregators": ["Rubic", "Squid", "Rango", "SushiSwap"], + "occurrences": 4 + }, + "0x6c84a8f1c29108f47a79964b5fe888d4f4d0de40": { + "address": "0x6c84a8f1c29108f47a79964b5fe888d4f4d0de40", + "symbol": "TBTC", + "decimals": 18, + "name": "Arbitrum tBTC v2", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0x6c84a8f1c29108f47a79964b5fe888d4f4d0de40.png", + "aggregators": [ + "TraderJoe", + "LiFi", + "Socket", + "Rubic", + "Squid", + "Rango", + "Sonarwatch", + "SushiSwap" + ], + "occurrences": 8 + }, + "0xf42e2b8bc2af8b110b65be98db1321b1ab8d44f5": { + "address": "0xf42e2b8bc2af8b110b65be98db1321b1ab8d44f5", + "symbol": "DONUT", + "decimals": 18, + "name": "Donut", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0xf42e2b8bc2af8b110b65be98db1321b1ab8d44f5.png", + "aggregators": [ + "CoinGecko", + "LiFi", + "Socket", + "Rubic", + "Squid", + "Rango", + "Sonarwatch", + "SushiSwap" + ], + "occurrences": 8 + }, + "0xbfbcfe8873fe28dfa25f1099282b088d52bbad9c": { + "address": "0xbfbcfe8873fe28dfa25f1099282b088d52bbad9c", + "symbol": "EQB", + "decimals": 18, + "name": "Equilibria Finance", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0xbfbcfe8873fe28dfa25f1099282b088d52bbad9c.png", + "aggregators": [ + "TraderJoe", + "LiFi", + "Socket", + "Rubic", + "Squid", + "Rango", + "Sonarwatch" + ], + "occurrences": 7 + }, + "0x155f0dd04424939368972f4e1838687d6a831151": { + "address": "0x155f0dd04424939368972f4e1838687d6a831151", + "symbol": "ADOGE", + "decimals": 18, + "name": "ArbiDoge", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0x155f0dd04424939368972f4e1838687d6a831151.png", + "aggregators": [ + "TraderJoe", + "Socket", + "Rubic", + "Squid", + "Rango", + "Sonarwatch", + "SushiSwap" + ], + "occurrences": 7 + }, + "0x092baadb7def4c3981454dd9c0a0d7ff07bcfc86": { + "address": "0x092baadb7def4c3981454dd9c0a0d7ff07bcfc86", + "symbol": "MOR", + "decimals": 18, + "name": "MorpheusAI", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0x092baadb7def4c3981454dd9c0a0d7ff07bcfc86.png", + "aggregators": [ + "CoinGecko", + "LiFi", + "Socket", + "Rubic", + "Squid", + "Rango", + "Sonarwatch" + ], + "occurrences": 7 + }, + "0xb688ba096b7bb75d7841e47163cd12d18b36a5bf": { + "address": "0xb688ba096b7bb75d7841e47163cd12d18b36a5bf", + "symbol": "MPENDLE", + "decimals": 18, + "name": "mPendle", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0xb688ba096b7bb75d7841e47163cd12d18b36a5bf.png", + "aggregators": [ + "TraderJoe", + "LiFi", + "Socket", + "Rubic", + "Squid", + "Rango", + "Sonarwatch" + ], + "occurrences": 7 + }, + "0x27f485b62c4a7e635f561a87560adf5090239e93": { + "address": "0x27f485b62c4a7e635f561a87560adf5090239e93", + "symbol": "DFX", + "decimals": 18, + "name": "DFX Finance", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0x27f485b62c4a7e635f561a87560adf5090239e93.png", + "aggregators": [ + "TraderJoe", + "1inch", + "LiFi", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 7 + }, + "0x3647c54c4c2c65bc7a2d63c0da2809b399dbbdc0": { + "address": "0x3647c54c4c2c65bc7a2d63c0da2809b399dbbdc0", + "symbol": "SOLVBTC", + "decimals": 18, + "name": "Solv BTC", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0x3647c54c4c2c65bc7a2d63c0da2809b399dbbdc0.png", + "aggregators": [ + "CoinGecko", + "LiFi", + "Socket", + "Rubic", + "Rango", + "Sonarwatch", + "SushiSwap" + ], + "occurrences": 7 + }, + "0xa3d1a8deb97b111454b294e2324efad13a9d8396": { + "address": "0xa3d1a8deb97b111454b294e2324efad13a9d8396", + "symbol": "OVN", + "decimals": 18, + "name": "Overnight Finance", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0xa3d1a8deb97b111454b294e2324efad13a9d8396.png", + "aggregators": [ + "CoinGecko", + "LiFi", + "Rubic", + "Squid", + "Rango", + "Sonarwatch", + "SushiSwap" + ], + "occurrences": 7 + }, + "0x6a7661795c374c0bfc635934efaddff3a7ee23b6": { + "address": "0x6a7661795c374c0bfc635934efaddff3a7ee23b6", + "symbol": "DOLA", + "decimals": 18, + "name": "DOLA", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0x6a7661795c374c0bfc635934efaddff3a7ee23b6.png", + "aggregators": [ + "TraderJoe", + "LiFi", + "Socket", + "Rubic", + "Squid", + "Rango", + "Sonarwatch" + ], + "occurrences": 7 + }, + "0xf0cb2dc0db5e6c66b9a70ac27b06b878da017028": { + "address": "0xf0cb2dc0db5e6c66b9a70ac27b06b878da017028", + "symbol": "OHM", + "decimals": 9, + "name": "Olympus", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0xf0cb2dc0db5e6c66b9a70ac27b06b878da017028.png", + "aggregators": [ + "TraderJoe", + "LiFi", + "Socket", + "Rubic", + "Squid", + "Rango", + "Sonarwatch" + ], + "occurrences": 7 + }, + "0x93fa0b88c0c78e45980fa74cdd87469311b7b3e4": { + "address": "0x93fa0b88c0c78e45980fa74cdd87469311b7b3e4", + "symbol": "XBG", + "decimals": 18, + "name": "XBorg", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0x93fa0b88c0c78e45980fa74cdd87469311b7b3e4.png", + "aggregators": [ + "CoinGecko", + "LiFi", + "Socket", + "Rubic", + "Squid", + "Rango", + "Sonarwatch" + ], + "occurrences": 7 + }, + "0x080f6aed32fc474dd5717105dba5ea57268f46eb": { + "address": "0x080f6aed32fc474dd5717105dba5ea57268f46eb", + "symbol": "SYN", + "decimals": 18, + "name": "Synapse", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0x080f6aed32fc474dd5717105dba5ea57268f46eb.png", + "aggregators": [ + "TraderJoe", + "LiFi", + "Socket", + "Rubic", + "Squid", + "Rango", + "Sonarwatch" + ], + "occurrences": 7 + }, + "0xb01cf1be9568f09449382a47cd5bf58e2a9d5922": { + "address": "0xb01cf1be9568f09449382a47cd5bf58e2a9d5922", + "symbol": "SPEED", + "decimals": 18, + "name": "Lightspeed", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0xb01cf1be9568f09449382a47cd5bf58e2a9d5922.png", + "aggregators": [ + "CoinGecko", + "LiFi", + "Socket", + "Rubic", + "Squid", + "Rango", + "Sonarwatch" + ], + "occurrences": 7 + }, + "0x4a24b101728e07a52053c13fb4db2bcf490cabc3": { + "address": "0x4a24b101728e07a52053c13fb4db2bcf490cabc3", + "symbol": "AIUS", + "decimals": 18, + "name": "Arbius", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0x4a24b101728e07a52053c13fb4db2bcf490cabc3.png", + "aggregators": [ + "CoinGecko", + "LiFi", + "Socket", + "Rubic", + "Squid", + "Rango", + "Sonarwatch" + ], + "occurrences": 7 + }, + "0x53691596d1bce8cea565b84d4915e69e03d9c99d": { + "address": "0x53691596d1bce8cea565b84d4915e69e03d9c99d", + "symbol": "ACX", + "decimals": 18, + "name": "Across Protocol Token", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0x53691596d1bce8cea565b84d4915e69e03d9c99d.png", + "aggregators": [ + "TraderJoe", + "LiFi", + "Rubic", + "Rango", + "Sonarwatch", + "SushiSwap" + ], + "occurrences": 6 + }, + "0xa68ec98d7ca870cf1dd0b00ebbb7c4bf60a8e74d": { + "address": "0xa68ec98d7ca870cf1dd0b00ebbb7c4bf60a8e74d", + "symbol": "BICO", + "decimals": 18, + "name": "Biconomy", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0xa68ec98d7ca870cf1dd0b00ebbb7c4bf60a8e74d.png", + "aggregators": [ + "TraderJoe", + "LiFi", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 6 + }, + "0xcb8b5cd20bdcaea9a010ac1f8d835824f5c87a04": { + "address": "0xcb8b5cd20bdcaea9a010ac1f8d835824f5c87a04", + "symbol": "COW", + "decimals": 18, + "name": "CoW Protocol", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0xcb8b5cd20bdcaea9a010ac1f8d835824f5c87a04.png", + "aggregators": [ + "CoinGecko", + "LiFi", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 6 + }, + "0x319f865b287fcc10b30d8ce6144e8b6d1b476999": { + "address": "0x319f865b287fcc10b30d8ce6144e8b6d1b476999", + "symbol": "CTSI", + "decimals": 18, + "name": "Cartesi", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0x319f865b287fcc10b30d8ce6144e8b6d1b476999.png", + "aggregators": [ + "TraderJoe", + "LiFi", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 6 + }, + "0xf929de51d91c77e42f5090069e0ad7a09e513c73": { + "address": "0xf929de51d91c77e42f5090069e0ad7a09e513c73", + "symbol": "FOX", + "decimals": 18, + "name": "ShapeShift FOX", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0xf929de51d91c77e42f5090069e0ad7a09e513c73.png", + "aggregators": [ + "CoinGecko", + "LiFi", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 6 + }, + "0xfb9e5d956d889d91a82737b9bfcdac1dce3e1449": { + "address": "0xfb9e5d956d889d91a82737b9bfcdac1dce3e1449", + "symbol": "LQTY", + "decimals": 18, + "name": "Liquity", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0xfb9e5d956d889d91a82737b9bfcdac1dce3e1449.png", + "aggregators": [ + "TraderJoe", + "LiFi", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 6 + }, + "0x8f5c1a99b1df736ad685006cb6adca7b7ae4b514": { + "address": "0x8f5c1a99b1df736ad685006cb6adca7b7ae4b514", + "symbol": "MLN", + "decimals": 18, + "name": "Enzyme", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0x8f5c1a99b1df736ad685006cb6adca7b7ae4b514.png", + "aggregators": [ + "CoinGecko", + "LiFi", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 6 + }, + "0xda0a57b710768ae17941a9fa33f8b720c8bd9ddd": { + "address": "0xda0a57b710768ae17941a9fa33f8b720c8bd9ddd", + "symbol": "POND", + "decimals": 18, + "name": "Marlin", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0xda0a57b710768ae17941a9fa33f8b720c8bd9ddd.png", + "aggregators": [ + "TraderJoe", + "LiFi", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 6 + }, + "0xca5ca9083702c56b481d1eec86f1776fdbd2e594": { + "address": "0xca5ca9083702c56b481d1eec86f1776fdbd2e594", + "symbol": "RSR", + "decimals": 18, + "name": "Reserve Rights", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0xca5ca9083702c56b481d1eec86f1776fdbd2e594.png", + "aggregators": [ + "CoinGecko", + "LiFi", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 6 + }, + "0xd58d345fd9c82262e087d2d0607624b410d88242": { + "address": "0xd58d345fd9c82262e087d2d0607624b410d88242", + "symbol": "TRB", + "decimals": 18, + "name": "Tellor Tributes", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0xd58d345fd9c82262e087d2d0607624b410d88242.png", + "aggregators": [ + "TraderJoe", + "LiFi", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 6 + }, + "0x5c816d4582c857dcadb1bb1f62ad6c9dede4576a": { + "address": "0x5c816d4582c857dcadb1bb1f62ad6c9dede4576a", + "symbol": "TURBO", + "decimals": 18, + "name": "Turbo", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0x5c816d4582c857dcadb1bb1f62ad6c9dede4576a.png", + "aggregators": [ + "UniswapLabs", + "LiFi", + "Socket", + "Rubic", + "Rango", + "SushiSwap" + ], + "occurrences": 6 + }, + "0x13a7dedb7169a17be92b0e3c7c2315b46f4772b3": { + "address": "0x13a7dedb7169a17be92b0e3c7c2315b46f4772b3", + "symbol": "BOOP", + "decimals": 18, + "name": "Boop", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0x13a7dedb7169a17be92b0e3c7c2315b46f4772b3.png", + "aggregators": [ + "TraderJoe", + "Socket", + "Rubic", + "Squid", + "Rango", + "Sonarwatch" + ], + "occurrences": 6 + }, + "0xaaa6c1e32c55a7bfa8066a6fae9b42650f262418": { + "address": "0xaaa6c1e32c55a7bfa8066a6fae9b42650f262418", + "symbol": "RAM", + "decimals": 18, + "name": "Ramses Exchange", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0xaaa6c1e32c55a7bfa8066a6fae9b42650f262418.png", + "aggregators": [ + "TraderJoe", + "LiFi", + "Rubic", + "Squid", + "Rango", + "Sonarwatch" + ], + "occurrences": 6 + }, + "0x3b475f6f2f41853706afc9fa6a6b8c5df1a2724c": { + "address": "0x3b475f6f2f41853706afc9fa6a6b8c5df1a2724c", + "symbol": "ZYB", + "decimals": 18, + "name": "Zyberswap", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0x3b475f6f2f41853706afc9fa6a6b8c5df1a2724c.png", + "aggregators": [ + "TraderJoe", + "LiFi", + "Rubic", + "Squid", + "Rango", + "Sonarwatch" + ], + "occurrences": 6 + }, + "0x15b2fb8f08e4ac1ce019eadae02ee92aedf06851": { + "address": "0x15b2fb8f08e4ac1ce019eadae02ee92aedf06851", + "symbol": "CHR", + "decimals": 18, + "name": "Chronos Finance", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0x15b2fb8f08e4ac1ce019eadae02ee92aedf06851.png", + "aggregators": [ + "TraderJoe", + "LiFi", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 6 + }, + "0x982239d38af50b0168da33346d85fb12929c4c07": { + "address": "0x982239d38af50b0168da33346d85fb12929c4c07", + "symbol": "TROVE", + "decimals": 18, + "name": "Arbitrove Governance Token", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0x982239d38af50b0168da33346d85fb12929c4c07.png", + "aggregators": [ + "TraderJoe", + "LiFi", + "Rubic", + "Squid", + "Rango", + "Sonarwatch" + ], + "occurrences": 6 + }, + "0x3212dc0f8c834e4de893532d27cc9b6001684db0": { + "address": "0x3212dc0f8c834e4de893532d27cc9b6001684db0", + "symbol": "PEAR", + "decimals": 18, + "name": "Pear Protocol", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0x3212dc0f8c834e4de893532d27cc9b6001684db0.png", + "aggregators": [ + "TraderJoe", + "LiFi", + "Rubic", + "Squid", + "Rango", + "Sonarwatch" + ], + "occurrences": 6 + }, + "0x11e969e9b3f89cb16d686a03cd8508c9fc0361af": { + "address": "0x11e969e9b3f89cb16d686a03cd8508c9fc0361af", + "symbol": "LAVA", + "decimals": 6, + "name": "Lava Network", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0x11e969e9b3f89cb16d686a03cd8508c9fc0361af.png", + "aggregators": [ + "CoinGecko", + "Rubic", + "Squid", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x3d15fd46ce9e551498328b1c83071d9509e2c3a0": { + "address": "0x3d15fd46ce9e551498328b1c83071d9509e2c3a0", + "symbol": "UNIETH", + "decimals": 18, + "name": "Universal ETH", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0x3d15fd46ce9e551498328b1c83071d9509e2c3a0.png", + "aggregators": [ + "CoinGecko", + "LiFi", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 6 + }, + "0xcb8fa9a76b8e203d8c3797bf438d8fb81ea3326a": { + "address": "0xcb8fa9a76b8e203d8c3797bf438d8fb81ea3326a", + "symbol": "ALUSD", + "decimals": 18, + "name": "Alchemix USD", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0xcb8fa9a76b8e203d8c3797bf438d8fb81ea3326a.png", + "aggregators": [ + "CoinGecko", + "LiFi", + "Rubic", + "Squid", + "Rango", + "Sonarwatch" + ], + "occurrences": 6 + }, + "0x60d01ec2d5e98ac51c8b4cf84dfcce98d527c747": { + "address": "0x60d01ec2d5e98ac51c8b4cf84dfcce98d527c747", + "symbol": "IZI", + "decimals": 18, + "name": "iZUMi Finance", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0x60d01ec2d5e98ac51c8b4cf84dfcce98d527c747.png", + "aggregators": [ + "CoinGecko", + "LiFi", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 6 + }, + "0x35ca1e5a9b1c09fa542fa18d1ba4d61c8edff852": { + "address": "0x35ca1e5a9b1c09fa542fa18d1ba4d61c8edff852", + "symbol": "SCHRODI", + "decimals": 18, + "name": "Schrodi", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0x35ca1e5a9b1c09fa542fa18d1ba4d61c8edff852.png", + "aggregators": [ + "CoinGecko", + "LiFi", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 6 + }, + "0x35f1c5cb7fb977e669fd244c567da99d8a3a6850": { + "address": "0x35f1c5cb7fb977e669fd244c567da99d8a3a6850", + "symbol": "USD0", + "decimals": 18, + "name": "Usual USD", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0x35f1c5cb7fb977e669fd244c567da99d8a3a6850.png", + "aggregators": [ + "CoinGecko", + "LiFi", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 6 + }, + "0xe0ee18eacafddaeb38f8907c74347c44385578ab": { + "address": "0xe0ee18eacafddaeb38f8907c74347c44385578ab", + "symbol": "AXGT", + "decimals": 18, + "name": "AxonDAO Governance Token", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0xe0ee18eacafddaeb38f8907c74347c44385578ab.png", + "aggregators": [ + "CoinGecko", + "LiFi", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 6 + }, + "0x86f65121804d2cdbef79f9f072d4e0c2eebabc08": { + "address": "0x86f65121804d2cdbef79f9f072d4e0c2eebabc08", + "symbol": "SEED", + "decimals": 18, + "name": "Garden", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0x86f65121804d2cdbef79f9f072d4e0c2eebabc08.png", + "aggregators": [ + "CoinGecko", + "LiFi", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 6 + }, + "0x12275dcb9048680c4be40942ea4d92c74c63b844": { + "address": "0x12275dcb9048680c4be40942ea4d92c74c63b844", + "symbol": "EUSD", + "decimals": 18, + "name": "Electronic USD", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0x12275dcb9048680c4be40942ea4d92c74c63b844.png", + "aggregators": [ + "CoinGecko", + "LiFi", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 6 + }, + "0xbfd5206962267c7b4b4a8b3d76ac2e1b2a5c4d5e": { + "address": "0xbfd5206962267c7b4b4a8b3d76ac2e1b2a5c4d5e", + "symbol": "OSAK", + "decimals": 18, + "name": "Osaka Protocol", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0xbfd5206962267c7b4b4a8b3d76ac2e1b2a5c4d5e.png", + "aggregators": [ + "TraderJoe", + "Socket", + "Rubic", + "Rango", + "Sonarwatch", + "SushiSwap" + ], + "occurrences": 6 + }, + "0xf3527ef8de265eaa3716fb312c12847bfba66cef": { + "address": "0xf3527ef8de265eaa3716fb312c12847bfba66cef", + "symbol": "USDX", + "decimals": 18, + "name": "usdx.money USDX", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0xf3527ef8de265eaa3716fb312c12847bfba66cef.png", + "aggregators": [ + "TraderJoe", + "LiFi", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 6 + }, + "0xe22c452bd2ade15dfc8ad98286bc6bdf0c9219b7": { + "address": "0xe22c452bd2ade15dfc8ad98286bc6bdf0c9219b7", + "symbol": "TRADE", + "decimals": 18, + "name": "Polytrade", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0xe22c452bd2ade15dfc8ad98286bc6bdf0c9219b7.png", + "aggregators": [ + "TraderJoe", + "LiFi", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 6 + }, + "0xeb466342c4d449bc9f53a865d5cb90586f405215": { + "address": "0xeb466342c4d449bc9f53a865d5cb90586f405215", + "symbol": "AXLUSDC", + "decimals": 6, + "name": "Axelar Wrapped USDC", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0xeb466342c4d449bc9f53a865d5cb90586f405215.png", + "aggregators": [ + "TraderJoe", + "LiFi", + "Rubic", + "Squid", + "Rango", + "SushiSwap" + ], + "occurrences": 6 + }, + "0xabd587f2607542723b17f14d00d99b987c29b074": { + "address": "0xabd587f2607542723b17f14d00d99b987c29b074", + "symbol": "SDEX", + "decimals": 18, + "name": "SmarDex", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0xabd587f2607542723b17f14d00d99b987c29b074.png", + "aggregators": [ + "TraderJoe", + "LiFi", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 6 + }, + "0xe85b662fe97e8562f4099d8a1d5a92d4b453bf30": { + "address": "0xe85b662fe97e8562f4099d8a1d5a92d4b453bf30", + "symbol": "THALES", + "decimals": 18, + "name": "Thales", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0xe85b662fe97e8562f4099d8a1d5a92d4b453bf30.png", + "aggregators": [ + "TraderJoe", + "LiFi", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 6 + }, + "0xa61f74247455a40b01b0559ff6274441fafa22a3": { + "address": "0xa61f74247455a40b01b0559ff6274441fafa22a3", + "symbol": "MGP", + "decimals": 18, + "name": "Magpie", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0xa61f74247455a40b01b0559ff6274441fafa22a3.png", + "aggregators": [ + "TraderJoe", + "LiFi", + "Rubic", + "Squid", + "Rango", + "Sonarwatch" + ], + "occurrences": 6 + }, + "0x95ab45875cffdba1e5f451b950bc2e42c0053f39": { + "address": "0x95ab45875cffdba1e5f451b950bc2e42c0053f39", + "symbol": "SFRXETH", + "decimals": 18, + "name": "Staked Frax Ether", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0x95ab45875cffdba1e5f451b950bc2e42c0053f39.png", + "aggregators": [ + "TraderJoe", + "LiFi", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 6 + }, + "0x56659245931cb6920e39c189d2a0e7dd0da2d57b": { + "address": "0x56659245931cb6920e39c189d2a0e7dd0da2d57b", + "symbol": "IBEX", + "decimals": 18, + "name": "Impermax", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0x56659245931cb6920e39c189d2a0e7dd0da2d57b.png", + "aggregators": [ + "TraderJoe", + "LiFi", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 6 + }, + "0xadf5dd3e51bf28ab4f07e684ecf5d00691818790": { + "address": "0xadf5dd3e51bf28ab4f07e684ecf5d00691818790", + "symbol": "ICHI", + "decimals": 18, + "name": "ICHI", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0xadf5dd3e51bf28ab4f07e684ecf5d00691818790.png", + "aggregators": [ + "TraderJoe", + "LiFi", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 6 + }, + "0x9dca587dc65ac0a043828b0acd946d71eb8d46c1": { + "address": "0x9dca587dc65ac0a043828b0acd946d71eb8d46c1", + "symbol": "IFARM", + "decimals": 18, + "name": "iFARM", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0x9dca587dc65ac0a043828b0acd946d71eb8d46c1.png", + "aggregators": [ + "TraderJoe", + "LiFi", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 6 + }, + "0xe05a08226c49b636acf99c40da8dc6af83ce5bb3": { + "address": "0xe05a08226c49b636acf99c40da8dc6af83ce5bb3", + "symbol": "ANKRETH", + "decimals": 18, + "name": "Ankr Staked ETH", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0xe05a08226c49b636acf99c40da8dc6af83ce5bb3.png", + "aggregators": [ + "TraderJoe", + "LiFi", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 6 + }, + "0xa334884bf6b0a066d553d19e507315e839409e62": { + "address": "0xa334884bf6b0a066d553d19e507315e839409e62", + "symbol": "ERN", + "decimals": 18, + "name": "Ethos Reserve Note", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0xa334884bf6b0a066d553d19e507315e839409e62.png", + "aggregators": [ + "TraderJoe", + "LiFi", + "Rubic", + "Squid", + "Rango", + "Sonarwatch" + ], + "occurrences": 6 + }, + "0x2ac2b254bc18cd4999f64773a966e4f4869c34ee": { + "address": "0x2ac2b254bc18cd4999f64773a966e4f4869c34ee", + "symbol": "PNP", + "decimals": 18, + "name": "Penpie Token", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0x2ac2b254bc18cd4999f64773a966e4f4869c34ee.png", + "aggregators": [ + "TraderJoe", + "LiFi", + "Socket", + "Rubic", + "Squid", + "Rango" + ], + "occurrences": 6 + }, + "0x21e60ee73f17ac0a411ae5d690f908c3ed66fe12": { + "address": "0x21e60ee73f17ac0a411ae5d690f908c3ed66fe12", + "symbol": "DERI", + "decimals": 18, + "name": "Deri Protocol", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0x21e60ee73f17ac0a411ae5d690f908c3ed66fe12.png", + "aggregators": [ + "CoinGecko", + "LiFi", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 6 + }, + "0xb1084db8d3c05cebd5fa9335df95ee4b8a0edc30": { + "address": "0xb1084db8d3c05cebd5fa9335df95ee4b8a0edc30", + "symbol": "USDT+", + "decimals": 6, + "name": "Overnight.fi USDT+", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0xb1084db8d3c05cebd5fa9335df95ee4b8a0edc30.png", + "aggregators": [ + "CoinGecko", + "LiFi", + "Rubic", + "Squid", + "Rango", + "Sonarwatch" + ], + "occurrences": 6 + }, + "0x9e20461bc2c4c980f62f1b279d71734207a6a356": { + "address": "0x9e20461bc2c4c980f62f1b279d71734207a6a356", + "symbol": "OMNI", + "decimals": 18, + "name": "OmniCat", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0x9e20461bc2c4c980f62f1b279d71734207a6a356.png", + "aggregators": [ + "TraderJoe", + "Socket", + "Rubic", + "Rango", + "Sonarwatch", + "SushiSwap" + ], + "occurrences": 6 + }, + "0x2598c30330d5771ae9f983979209486ae26de875": { + "address": "0x2598c30330d5771ae9f983979209486ae26de875", + "symbol": "AI", + "decimals": 18, + "name": "Any Inu", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0x2598c30330d5771ae9f983979209486ae26de875.png", + "aggregators": [ + "TraderJoe", + "Socket", + "Rubic", + "Squid", + "Rango", + "Sonarwatch" + ], + "occurrences": 6 + }, + "0xdb298285fe4c5410b05390ca80e8fbe9de1f259b": { + "address": "0xdb298285fe4c5410b05390ca80e8fbe9de1f259b", + "symbol": "FOREX", + "decimals": 18, + "name": "handle.fi", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0xdb298285fe4c5410b05390ca80e8fbe9de1f259b.png", + "aggregators": [ + "TraderJoe", + "LiFi", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 6 + }, + "0xc08cd26474722ce93f4d0c34d16201461c10aa8c": { + "address": "0xc08cd26474722ce93f4d0c34d16201461c10aa8c", + "symbol": "CARV", + "decimals": 18, + "name": "CARV", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0xc08cd26474722ce93f4d0c34d16201461c10aa8c.png", + "aggregators": [ + "TraderJoe", + "Socket", + "Rubic", + "Squid", + "Rango", + "Sonarwatch" + ], + "occurrences": 6 + }, + "0x6b2a01a5f79deb4c2f3c0eda7b01df456fbd726a": { + "address": "0x6b2a01a5f79deb4c2f3c0eda7b01df456fbd726a", + "symbol": "UNIBTC", + "decimals": 8, + "name": "Universal BTC", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0x6b2a01a5f79deb4c2f3c0eda7b01df456fbd726a.png", + "aggregators": [ + "TraderJoe", + "LiFi", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 6 + }, + "0x10aaed289a7b1b0155bf4b86c862f297e84465e0": { + "address": "0x10aaed289a7b1b0155bf4b86c862f297e84465e0", + "symbol": "RBC", + "decimals": 18, + "name": "Rubic", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0x10aaed289a7b1b0155bf4b86c862f297e84465e0.png", + "aggregators": [ + "TraderJoe", + "LiFi", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 6 + }, + "0xb6093b61544572ab42a0e43af08abafd41bf25a6": { + "address": "0xb6093b61544572ab42a0e43af08abafd41bf25a6", + "symbol": "WXM", + "decimals": 18, + "name": "WeatherXM", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0xb6093b61544572ab42a0e43af08abafd41bf25a6.png", + "aggregators": [ + "CoinGecko", + "LiFi", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 6 + }, + "0xc5102fe9359fd9a28f877a67e36b0f050d81a3cc": { + "address": "0xc5102fe9359fd9a28f877a67e36b0f050d81a3cc", + "symbol": "HOP", + "decimals": 18, + "name": "Hop Protocol", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0xc5102fe9359fd9a28f877a67e36b0f050d81a3cc.png", + "aggregators": [ + "TraderJoe", + "LiFi", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 6 + }, + "0x18c14c2d707b2212e17d1579789fc06010cfca23": { + "address": "0x18c14c2d707b2212e17d1579789fc06010cfca23", + "symbol": "ETH+", + "decimals": 18, + "name": "ETHPlus", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0x18c14c2d707b2212e17d1579789fc06010cfca23.png", + "aggregators": [ + "CoinGecko", + "LiFi", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 6 + }, + "0x60bf4e7cf16ff34513514b968483b54beff42a81": { + "address": "0x60bf4e7cf16ff34513514b968483b54beff42a81", + "symbol": "VCNT", + "decimals": 18, + "name": "ViciCoin", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0x60bf4e7cf16ff34513514b968483b54beff42a81.png", + "aggregators": [ + "CoinGecko", + "Socket", + "Rubic", + "Squid", + "Rango", + "Sonarwatch" + ], + "occurrences": 6 + }, + "0x3269a3c00ab86c753856fd135d97b87facb0d848": { + "address": "0x3269a3c00ab86c753856fd135d97b87facb0d848", + "symbol": "FFM", + "decimals": 18, + "name": "Florence Finance Medici", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0x3269a3c00ab86c753856fd135d97b87facb0d848.png", + "aggregators": [ + "TraderJoe", + "LiFi", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 6 + }, + "0x417a1afd44250314bffb11ff68e989775e990ab6": { + "address": "0x417a1afd44250314bffb11ff68e989775e990ab6", + "symbol": "VOLTA", + "decimals": 18, + "name": "Volta Protocol", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0x417a1afd44250314bffb11ff68e989775e990ab6.png", + "aggregators": [ + "TraderJoe", + "LiFi", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 6 + }, + "0x7788a3538c5fc7f9c7c8a74eac4c898fc8d87d92": { + "address": "0x7788a3538c5fc7f9c7c8a74eac4c898fc8d87d92", + "symbol": "SUSDX", + "decimals": 18, + "name": "Stables Labs Staked USDX", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0x7788a3538c5fc7f9c7c8a74eac4c898fc8d87d92.png", + "aggregators": [ + "TraderJoe", + "LiFi", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 6 + }, + "0x83d6c8c06ac276465e4c92e7ac8c23740f435140": { + "address": "0x83d6c8c06ac276465e4c92e7ac8c23740f435140", + "symbol": "HMX", + "decimals": 18, + "name": "HMX", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0x83d6c8c06ac276465e4c92e7ac8c23740f435140.png", + "aggregators": [ + "TraderJoe", + "LiFi", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 6 + }, + "0xbcc9c1763d54427bdf5efb6e9eb9494e5a1fbabf": { + "address": "0xbcc9c1763d54427bdf5efb6e9eb9494e5a1fbabf", + "symbol": "HWT", + "decimals": 18, + "name": "Honor World Token", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0xbcc9c1763d54427bdf5efb6e9eb9494e5a1fbabf.png", + "aggregators": [ + "TraderJoe", + "LiFi", + "Rubic", + "Rango", + "Sonarwatch", + "SushiSwap" + ], + "occurrences": 6 + }, + "0xc19669a405067927865b40ea045a2baabbbe57f5": { + "address": "0xc19669a405067927865b40ea045a2baabbbe57f5", + "symbol": "STAR", + "decimals": 18, + "name": "Star", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0xc19669a405067927865b40ea045a2baabbbe57f5.png", + "aggregators": [ + "TraderJoe", + "LiFi", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 6 + }, + "0xeb8e93a0c7504bffd8a8ffa56cd754c63aaebfe8": { + "address": "0xeb8e93a0c7504bffd8a8ffa56cd754c63aaebfe8", + "symbol": "DAI+", + "decimals": 18, + "name": "Overnight.fi DAI+", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0xeb8e93a0c7504bffd8a8ffa56cd754c63aaebfe8.png", + "aggregators": [ + "TraderJoe", + "LiFi", + "Rubic", + "Squid", + "Rango", + "Sonarwatch" + ], + "occurrences": 6 + }, + "0x680447595e8b7b3aa1b43beb9f6098c79ac2ab3f": { + "address": "0x680447595e8b7b3aa1b43beb9f6098c79ac2ab3f", + "symbol": "USDD", + "decimals": 18, + "name": "USDD", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0x680447595e8b7b3aa1b43beb9f6098c79ac2ab3f.png", + "aggregators": [ + "LiFi", + "Socket", + "Rubic", + "Squid", + "Rango", + "Sonarwatch" + ], + "occurrences": 6 + }, + "0x09ad12552ec45f82be90b38dfe7b06332a680864": { + "address": "0x09ad12552ec45f82be90b38dfe7b06332a680864", + "symbol": "ARBY", + "decimals": 18, + "name": "Adamant Token", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0x09ad12552ec45f82be90b38dfe7b06332a680864.png", + "aggregators": [ + "LiFi", + "Socket", + "Rubic", + "Squid", + "Rango", + "SushiSwap" + ], + "occurrences": 6 + }, + "0xa6219b4bf4b861a2b1c02da43b2af266186edc04": { + "address": "0xa6219b4bf4b861a2b1c02da43b2af266186edc04", + "symbol": "ARVAULT", + "decimals": 9, + "name": "ArVault", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0xa6219b4bf4b861a2b1c02da43b2af266186edc04.png", + "aggregators": [ + "LiFi", + "Socket", + "Rubic", + "Squid", + "Rango", + "SushiSwap" + ], + "occurrences": 6 + }, + "0x4e51ac49bc5e2d87e0ef713e9e5ab2d71ef4f336": { + "address": "0x4e51ac49bc5e2d87e0ef713e9e5ab2d71ef4f336", + "symbol": "CELO", + "decimals": 18, + "name": "Celo (Wormhole)", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0x4e51ac49bc5e2d87e0ef713e9e5ab2d71ef4f336.png", + "aggregators": [ + "UniswapLabs", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0xdeba25af35e4097146d7629055e0ec3c71706324": { + "address": "0xdeba25af35e4097146d7629055e0ec3c71706324", + "symbol": "DEFI5", + "decimals": 18, + "name": "DEFI Top 5 Tokens Index", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0xdeba25af35e4097146d7629055e0ec3c71706324.png", + "aggregators": [ + "ArbitrumWhitelist", + "LiFi", + "Socket", + "Rubic", + "Rango" + ], + "occurrences": 5 + }, + "0x9c67ee39e3c4954396b9142010653f17257dd39c": { + "address": "0x9c67ee39e3c4954396b9142010653f17257dd39c", + "symbol": "IMX", + "decimals": 18, + "name": "Impermax", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0x9c67ee39e3c4954396b9142010653f17257dd39c.png", + "aggregators": [ + "ArbitrumWhitelist", + "LiFi", + "Socket", + "Rubic", + "Rango" + ], + "occurrences": 5 + }, + "0xcd14c3a2ba27819b352aae73414a26e2b366dc50": { + "address": "0xcd14c3a2ba27819b352aae73414a26e2b366dc50", + "symbol": "USX", + "decimals": 18, + "name": "dForce USD", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0xcd14c3a2ba27819b352aae73414a26e2b366dc50.png", + "aggregators": [ + "ArbitrumWhitelist", + "LiFi", + "Socket", + "Rubic", + "Rango" + ], + "occurrences": 5 + }, + "0xa64ecce74f8cdb7a940766b71f1b108bac69851a": { + "address": "0xa64ecce74f8cdb7a940766b71f1b108bac69851a", + "symbol": "WCHI", + "decimals": 8, + "name": "Wrapped CHI", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0xa64ecce74f8cdb7a940766b71f1b108bac69851a.png", + "aggregators": [ + "ArbitrumWhitelist", + "LiFi", + "Socket", + "Rubic", + "Rango" + ], + "occurrences": 5 + }, + "0x59062301fb510f4ea2417b67404cb16d31e604ba": { + "address": "0x59062301fb510f4ea2417b67404cb16d31e604ba", + "symbol": "LOGX", + "decimals": 18, + "name": "LogX Network", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0x59062301fb510f4ea2417b67404cb16d31e604ba.png", + "aggregators": [ + "CoinGecko", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0xb299751b088336e165da313c33e3195b8c6663a6": { + "address": "0xb299751b088336e165da313c33e3195b8c6663a6", + "symbol": "STAR", + "decimals": 18, + "name": "StarHeroes", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0xb299751b088336e165da313c33e3195b8c6663a6.png", + "aggregators": [ + "CoinGecko", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0xccd05a0fcfc1380e9da27862adb2198e58e0d66f": { + "address": "0xccd05a0fcfc1380e9da27862adb2198e58e0d66f", + "symbol": "ANIMA", + "decimals": 18, + "name": "Anima", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0xccd05a0fcfc1380e9da27862adb2198e58e0d66f.png", + "aggregators": [ + "CoinGecko", + "Rubic", + "Rango", + "Sonarwatch", + "SushiSwap" + ], + "occurrences": 5 + }, + "0x3096e7bfd0878cc65be71f8899bc4cfb57187ba3": { + "address": "0x3096e7bfd0878cc65be71f8899bc4cfb57187ba3", + "symbol": "RWA", + "decimals": 18, + "name": "Xend Finance", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0x3096e7bfd0878cc65be71f8899bc4cfb57187ba3.png", + "aggregators": [ + "CoinGecko", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0xf1264873436a0771e440e2b28072fafcc5eebd01": { + "address": "0xf1264873436a0771e440e2b28072fafcc5eebd01", + "symbol": "KNS", + "decimals": 18, + "name": "Kenshi", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0xf1264873436a0771e440e2b28072fafcc5eebd01.png", + "aggregators": [ + "TraderJoe", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x21ccbc5e7f353ec43b2f5b1fb12c3e9d89d30dca": { + "address": "0x21ccbc5e7f353ec43b2f5b1fb12c3e9d89d30dca", + "symbol": "BDT", + "decimals": 18, + "name": "BlackDragon", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0x21ccbc5e7f353ec43b2f5b1fb12c3e9d89d30dca.png", + "aggregators": [ + "CoinGecko", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x580e933d90091b9ce380740e3a4a39c67eb85b4c": { + "address": "0x580e933d90091b9ce380740e3a4a39c67eb85b4c", + "symbol": "GSWIFT", + "decimals": 18, + "name": "GameSwift", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0x580e933d90091b9ce380740e3a4a39c67eb85b4c.png", + "aggregators": [ + "TraderJoe", + "LiFi", + "Socket", + "Rubic", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x655a6beebf2361a19549a99486ff65f709bd2646": { + "address": "0x655a6beebf2361a19549a99486ff65f709bd2646", + "symbol": "LILAI", + "decimals": 18, + "name": "LilAI", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0x655a6beebf2361a19549a99486ff65f709bd2646.png", + "aggregators": [ + "TraderJoe", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x772598e9e62155d7fdfe65fdf01eb5a53a8465be": { + "address": "0x772598e9e62155d7fdfe65fdf01eb5a53a8465be", + "symbol": "EMP", + "decimals": 18, + "name": "Empyreal", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0x772598e9e62155d7fdfe65fdf01eb5a53a8465be.png", + "aggregators": [ + "TraderJoe", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0xd56734d7f9979dd94fae3d67c7e928234e71cd4c": { + "address": "0xd56734d7f9979dd94fae3d67c7e928234e71cd4c", + "symbol": "TIA.N", + "decimals": 6, + "name": "Bridged TIA (Hyperlane)", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0xd56734d7f9979dd94fae3d67c7e928234e71cd4c.png", + "aggregators": [ + "TraderJoe", + "Rubic", + "Squid", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x1c43d05be7e5b54d506e3ddb6f0305e8a66cd04e": { + "address": "0x1c43d05be7e5b54d506e3ddb6f0305e8a66cd04e", + "symbol": "ZTX", + "decimals": 18, + "name": "ZTX", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0x1c43d05be7e5b54d506e3ddb6f0305e8a66cd04e.png", + "aggregators": [ + "TraderJoe", + "Rubic", + "Rango", + "Sonarwatch", + "SushiSwap" + ], + "occurrences": 5 + }, + "0x3de81ce90f5a27c5e6a5adb04b54aba488a6d14e": { + "address": "0x3de81ce90f5a27c5e6a5adb04b54aba488a6d14e", + "symbol": "PRIME", + "decimals": 18, + "name": "DeltaPrime", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0x3de81ce90f5a27c5e6a5adb04b54aba488a6d14e.png", + "aggregators": [ + "CoinGecko", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x004626a008b1acdc4c74ab51644093b155e59a23": { + "address": "0x004626a008b1acdc4c74ab51644093b155e59a23", + "symbol": "STEUR", + "decimals": 18, + "name": "Staked EURA", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0x004626a008b1acdc4c74ab51644093b155e59a23.png", + "aggregators": ["TraderJoe", "LiFi", "Socket", "Rubic", "Rango"], + "occurrences": 5 + }, + "0xc1eb7689147c81ac840d4ff0d298489fc7986d52": { + "address": "0xc1eb7689147c81ac840d4ff0d298489fc7986d52", + "symbol": "XVS", + "decimals": 18, + "name": "Venus", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0xc1eb7689147c81ac840d4ff0d298489fc7986d52.png", + "aggregators": ["CoinGecko", "LiFi", "Socket", "Rubic", "Rango"], + "occurrences": 5 + }, + "0xbcd4d5ac29e06e4973a1ddcd782cd035d04bc0b7": { + "address": "0xbcd4d5ac29e06e4973a1ddcd782cd035d04bc0b7", + "symbol": "QKNTL", + "decimals": 18, + "name": "Quick Intel", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0xbcd4d5ac29e06e4973a1ddcd782cd035d04bc0b7.png", + "aggregators": [ + "CoinGecko", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x999faf0af2ff109938eefe6a7bf91ca56f0d07e1": { + "address": "0x999faf0af2ff109938eefe6a7bf91ca56f0d07e1", + "symbol": "LDY", + "decimals": 18, + "name": "Ledgity Token", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0x999faf0af2ff109938eefe6a7bf91ca56f0d07e1.png", + "aggregators": ["CoinGecko", "LiFi", "Socket", "Rubic", "Rango"], + "occurrences": 5 + }, + "0x42069d11a2cc72388a2e06210921e839cfbd3280": { + "address": "0x42069d11a2cc72388a2e06210921e839cfbd3280", + "symbol": "GNOME", + "decimals": 18, + "name": "GnomeLand", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0x42069d11a2cc72388a2e06210921e839cfbd3280.png", + "aggregators": [ + "CoinGecko", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x94025780a1ab58868d9b2dbbb775f44b32e8e6e5": { + "address": "0x94025780a1ab58868d9b2dbbb775f44b32e8e6e5", + "symbol": "BETS", + "decimals": 18, + "name": "BetSwirl", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0x94025780a1ab58868d9b2dbbb775f44b32e8e6e5.png", + "aggregators": [ + "CoinGecko", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x25d887ce7a35172c62febfd67a1856f20faebb00": { + "address": "0x25d887ce7a35172c62febfd67a1856f20faebb00", + "symbol": "PEPE", + "decimals": 18, + "name": "Pepe", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0x25d887ce7a35172c62febfd67a1856f20faebb00.png", + "aggregators": [ + "TraderJoe", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x51a80238b5738725128d3a3e06ab41c1d4c05c74": { + "address": "0x51a80238b5738725128d3a3e06ab41c1d4c05c74", + "symbol": "USH", + "decimals": 18, + "name": "unshETHing_Token", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0x51a80238b5738725128d3a3e06ab41c1d4c05c74.png", + "aggregators": [ + "TraderJoe", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0xb64e280e9d1b5dbec4accedb2257a87b400db149": { + "address": "0xb64e280e9d1b5dbec4accedb2257a87b400db149", + "symbol": "LVL", + "decimals": 18, + "name": "Level", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0xb64e280e9d1b5dbec4accedb2257a87b400db149.png", + "aggregators": [ + "TraderJoe", + "LiFi", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0xaf20f5f19698f1d19351028cd7103b63d30de7d7": { + "address": "0xaf20f5f19698f1d19351028cd7103b63d30de7d7", + "symbol": "WAGMI", + "decimals": 18, + "name": "Wagmi", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0xaf20f5f19698f1d19351028cd7103b63d30de7d7.png", + "aggregators": [ + "CoinGecko", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x2bcc6d6cdbbdc0a4071e48bb3b969b06b3330c07": { + "address": "0x2bcc6d6cdbbdc0a4071e48bb3b969b06b3330c07", + "symbol": "SOL", + "decimals": 9, + "name": "Wrapped SOL", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0x2bcc6d6cdbbdc0a4071e48bb3b969b06b3330c07.png", + "aggregators": ["TraderJoe", "LiFi", "Rubic", "Squid", "Rango"], + "occurrences": 5 + }, + "0x00cbcf7b3d37844e44b888bc747bdd75fcf4e555": { + "address": "0x00cbcf7b3d37844e44b888bc747bdd75fcf4e555", + "symbol": "XPET", + "decimals": 18, + "name": "xPet.tech", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0x00cbcf7b3d37844e44b888bc747bdd75fcf4e555.png", + "aggregators": [ + "TraderJoe", + "LiFi", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x8929e9dbd2785e3ba16175e596cdd61520fee0d1": { + "address": "0x8929e9dbd2785e3ba16175e596cdd61520fee0d1", + "symbol": "ALTD", + "decimals": 18, + "name": "Altitude", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0x8929e9dbd2785e3ba16175e596cdd61520fee0d1.png", + "aggregators": [ + "TraderJoe", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0xa684cd057951541187f288294a1e1c2646aa2d24": { + "address": "0xa684cd057951541187f288294a1e1c2646aa2d24", + "symbol": "VSTA", + "decimals": 18, + "name": "Vesta Finance", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0xa684cd057951541187f288294a1e1c2646aa2d24.png", + "aggregators": [ + "TraderJoe", + "LiFi", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0xdce765f021410b3266aa0053c93cb4535f1e12e0": { + "address": "0xdce765f021410b3266aa0053c93cb4535f1e12e0", + "symbol": "PEUSD", + "decimals": 18, + "name": "peg-eUSD", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0xdce765f021410b3266aa0053c93cb4535f1e12e0.png", + "aggregators": [ + "TraderJoe", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0xe1d3495717f9534db67a6a8d4940dd17435b6a9e": { + "address": "0xe1d3495717f9534db67a6a8d4940dd17435b6a9e", + "symbol": "LOCUS", + "decimals": 18, + "name": "Locus Finance", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0xe1d3495717f9534db67a6a8d4940dd17435b6a9e.png", + "aggregators": [ + "TraderJoe", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0xf236ea74b515ef96a9898f5a4ed4aa591f253ce1": { + "address": "0xf236ea74b515ef96a9898f5a4ed4aa591f253ce1", + "symbol": "PLSDPX", + "decimals": 18, + "name": "Plutus DPX", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0xf236ea74b515ef96a9898f5a4ed4aa591f253ce1.png", + "aggregators": ["TraderJoe", "LiFi", "Rubic", "Rango", "SushiSwap"], + "occurrences": 5 + }, + "0x429fed88f10285e61b12bdf00848315fbdfcc341": { + "address": "0x429fed88f10285e61b12bdf00848315fbdfcc341", + "symbol": "TGT", + "decimals": 18, + "name": "THORWallet DEX", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0x429fed88f10285e61b12bdf00848315fbdfcc341.png", + "aggregators": ["LiFi", "Socket", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 5 + }, + "0x955b9fe60a5b5093df9dc4b1b18ec8e934e77162": { + "address": "0x955b9fe60a5b5093df9dc4b1b18ec8e934e77162", + "symbol": "SWPR", + "decimals": 18, + "name": "Swapr", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0x955b9fe60a5b5093df9dc4b1b18ec8e934e77162.png", + "aggregators": ["LiFi", "Socket", "Rubic", "Rango", "SushiSwap"], + "occurrences": 5 + }, + "0x180f7cf38805d1be95c7632f653e26b0838e2969": { + "address": "0x180f7cf38805d1be95c7632f653e26b0838e2969", + "symbol": "XDEFI", + "decimals": 18, + "name": "XDEFI", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0x180f7cf38805d1be95c7632f653e26b0838e2969.png", + "aggregators": ["LiFi", "Rubic", "Squid", "Rango", "Sonarwatch"], + "occurrences": 5 + }, + "0x816e21c33fa5f8440ebcdf6e01d39314541bea72": { + "address": "0x816e21c33fa5f8440ebcdf6e01d39314541bea72", + "symbol": "LQDR", + "decimals": 18, + "name": "LiquidDriver", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0x816e21c33fa5f8440ebcdf6e01d39314541bea72.png", + "aggregators": ["LiFi", "Rubic", "Squid", "Rango", "Sonarwatch"], + "occurrences": 5 + }, + "0x6f67043201c903bbcbc129750cb3b328dd56a0a5": { + "address": "0x6f67043201c903bbcbc129750cb3b328dd56a0a5", + "symbol": "BAC", + "decimals": 18, + "name": "BAC", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0x6f67043201c903bbcbc129750cb3b328dd56a0a5.png", + "aggregators": ["ArbitrumWhitelist", "LiFi", "Socket", "Rango"], + "occurrences": 4 + }, + "0xa5ec9d64b64b8b9e94feaa7538c084b38117e7ba": { + "address": "0xa5ec9d64b64b8b9e94feaa7538c084b38117e7ba", + "symbol": "BLANK", + "decimals": 18, + "name": "GoBlank Token", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0xa5ec9d64b64b8b9e94feaa7538c084b38117e7ba.png", + "aggregators": ["ArbitrumWhitelist", "LiFi", "Socket", "Rango"], + "occurrences": 4 + }, + "0xae6e3540e97b0b9ea8797b157b510e133afb6282": { + "address": "0xae6e3540e97b0b9ea8797b157b510e133afb6282", + "symbol": "DEGEN", + "decimals": 18, + "name": "DEGEN Index", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0xae6e3540e97b0b9ea8797b157b510e133afb6282.png", + "aggregators": ["ArbitrumWhitelist", "Socket", "Rubic", "Rango"], + "occurrences": 4 + }, + "0x1d54aa7e322e02a0453c0f2fa21505ce7f2e9e93": { + "address": "0x1d54aa7e322e02a0453c0f2fa21505ce7f2e9e93", + "symbol": "DFYN", + "decimals": 18, + "name": "DFYN Token", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0x1d54aa7e322e02a0453c0f2fa21505ce7f2e9e93.png", + "aggregators": ["ArbitrumWhitelist", "LiFi", "Socket", "Rango"], + "occurrences": 4 + }, + "0x3cd1833ce959e087d0ef0cb45ed06bffe60f23ba": { + "address": "0x3cd1833ce959e087d0ef0cb45ed06bffe60f23ba", + "symbol": "LAND", + "decimals": 18, + "name": "LAND", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0x3cd1833ce959e087d0ef0cb45ed06bffe60f23ba.png", + "aggregators": ["ArbitrumWhitelist", "LiFi", "Rubic", "Rango"], + "occurrences": 4 + }, + "0x6e6a3d8f1affac703b1aef1f43b8d2321be40043": { + "address": "0x6e6a3d8f1affac703b1aef1f43b8d2321be40043", + "symbol": "OHM", + "decimals": 9, + "name": "Olympus", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0x6e6a3d8f1affac703b1aef1f43b8d2321be40043.png", + "aggregators": ["ArbitrumWhitelist", "LiFi", "Socket", "Rango"], + "occurrences": 4 + }, + "0x5298060a95205be6dd4abc21910a4bb23d6dcd8b": { + "address": "0x5298060a95205be6dd4abc21910a4bb23d6dcd8b", + "symbol": "ROUTE", + "decimals": 18, + "name": "Route", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0x5298060a95205be6dd4abc21910a4bb23d6dcd8b.png", + "aggregators": ["ArbitrumWhitelist", "LiFi", "Socket", "Rango"], + "occurrences": 4 + }, + "0x552e4e96a0ce6d36d161b63984848c8dac471ea2": { + "address": "0x552e4e96a0ce6d36d161b63984848c8dac471ea2", + "symbol": "SAKE", + "decimals": 18, + "name": "SakeToken", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0x552e4e96a0ce6d36d161b63984848c8dac471ea2.png", + "aggregators": ["ArbitrumWhitelist", "LiFi", "Socket", "Rango"], + "occurrences": 4 + }, + "0x2ad62674a64e698c24831faf824973c360430140": { + "address": "0x2ad62674a64e698c24831faf824973c360430140", + "symbol": "UBT", + "decimals": 8, + "name": "UBT", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0x2ad62674a64e698c24831faf824973c360430140.png", + "aggregators": ["ArbitrumWhitelist", "LiFi", "Socket", "Rango"], + "occurrences": 4 + }, + "0x9ab3fd50fcae73a1aeda959468fd0d662c881b42": { + "address": "0x9ab3fd50fcae73a1aeda959468fd0d662c881b42", + "symbol": "IBBTC", + "decimals": 18, + "name": "Interest-Bearing Bitcoin", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0x9ab3fd50fcae73a1aeda959468fd0d662c881b42.png", + "aggregators": ["ArbitrumWhitelist", "LiFi", "Socket", "Rango"], + "occurrences": 4 + }, + "0x30a538effd91acefb1b12ce9bc0074ed18c9dfc9": { + "address": "0x30a538effd91acefb1b12ce9bc0074ed18c9dfc9", + "symbol": "T", + "decimals": 9, + "name": "Talos", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0x30a538effd91acefb1b12ce9bc0074ed18c9dfc9.png", + "aggregators": ["CoinGecko", "Rubic", "Squid", "Rango"], + "occurrences": 4 + }, + "0xb23bb8c2c6cb9169eeac8f2bd42fcf333a1a8c55": { + "address": "0xb23bb8c2c6cb9169eeac8f2bd42fcf333a1a8c55", + "symbol": "NOX", + "decimals": 18, + "name": "Noxcat", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0xb23bb8c2c6cb9169eeac8f2bd42fcf333a1a8c55.png", + "aggregators": ["CoinGecko", "LiFi", "Rubic", "Rango"], + "occurrences": 4 + }, + "0x6dd963c510c2d2f09d5eddb48ede45fed063eb36": { + "address": "0x6dd963c510c2d2f09d5eddb48ede45fed063eb36", + "symbol": "FCTR", + "decimals": 18, + "name": "FactorDAO", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0x6dd963c510c2d2f09d5eddb48ede45fed063eb36.png", + "aggregators": ["TraderJoe", "Rubic", "Squid", "Sonarwatch"], + "occurrences": 4 + }, + "0x4ecf61a6c2fab8a047ceb3b3b263b401763e9d49": { + "address": "0x4ecf61a6c2fab8a047ceb3b3b263b401763e9d49", + "symbol": "USND", + "decimals": 18, + "name": "USND", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0x4ecf61a6c2fab8a047ceb3b3b263b401763e9d49.png", + "aggregators": ["CoinGecko", "Rubic", "Squid", "Rango"], + "occurrences": 4 + }, + "0x374c5fb7979d5fdbaad2d95409e235e5cbdfd43c": { + "address": "0x374c5fb7979d5fdbaad2d95409e235e5cbdfd43c", + "symbol": "MLK", + "decimals": 8, + "name": "MiL.k", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0x374c5fb7979d5fdbaad2d95409e235e5cbdfd43c.png", + "aggregators": ["TraderJoe", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0xb37194e8b99020ae0b8b6861d4217a9f016706a4": { + "address": "0xb37194e8b99020ae0b8b6861d4217a9f016706a4", + "symbol": "HYB", + "decimals": 18, + "name": "Hybrid", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0xb37194e8b99020ae0b8b6861d4217a9f016706a4.png", + "aggregators": ["CoinGecko", "Rubic", "Squid", "Rango"], + "occurrences": 4 + }, + "0xc7603786470f04d33e35f9e9b56bd0ca8803fb95": { + "address": "0xc7603786470f04d33e35f9e9b56bd0ca8803fb95", + "symbol": "LITKEY", + "decimals": 18, + "name": "LITKEY", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0xc7603786470f04d33e35f9e9b56bd0ca8803fb95.png", + "aggregators": ["CoinGecko", "LiFi", "Rubic", "Rango"], + "occurrences": 4 + }, + "0x441fcb23dfe8289cf572126fedcf450974adc891": { + "address": "0x441fcb23dfe8289cf572126fedcf450974adc891", + "symbol": "RBTC", + "decimals": 18, + "name": "RBTC", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0x441fcb23dfe8289cf572126fedcf450974adc891.png", + "aggregators": ["CoinGecko", "Socket", "Rubic", "Rango"], + "occurrences": 4 + }, + "0x4772d2e014f9fc3a820c444e3313968e9a5c8121": { + "address": "0x4772d2e014f9fc3a820c444e3313968e9a5c8121", + "symbol": "YUSD", + "decimals": 18, + "name": "YieldFi yToken", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0x4772d2e014f9fc3a820c444e3313968e9a5c8121.png", + "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0x66cfbd79257dc5217903a36293120282548e2254": { + "address": "0x66cfbd79257dc5217903a36293120282548e2254", + "symbol": "WSTUSR", + "decimals": 18, + "name": "Resolv wstUSR", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0x66cfbd79257dc5217903a36293120282548e2254.png", + "aggregators": ["CoinGecko", "Socket", "Rubic", "Rango"], + "occurrences": 4 + }, + "0xbc33b4d48f76d17a1800afcb730e8a6aaada7fe5": { + "address": "0xbc33b4d48f76d17a1800afcb730e8a6aaada7fe5", + "symbol": "VDOT", + "decimals": 18, + "name": "Voucher DOT", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0xbc33b4d48f76d17a1800afcb730e8a6aaada7fe5.png", + "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0x0f13fc8a93ab8edc9fde0a1e19aac693161599a5": { + "address": "0x0f13fc8a93ab8edc9fde0a1e19aac693161599a5", + "symbol": "SCAI", + "decimals": 18, + "name": "SecureChain AI", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0x0f13fc8a93ab8edc9fde0a1e19aac693161599a5.png", + "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0x440017a1b021006d556d7fc06a54c32e42eb745b": { + "address": "0x440017a1b021006d556d7fc06a54c32e42eb745b", + "symbol": "@G", + "decimals": 18, + "name": "Graphite Network", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0x440017a1b021006d556d7fc06a54c32e42eb745b.png", + "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0xba0dda8762c24da9487f5fa026a9b64b695a07ea": { + "address": "0xba0dda8762c24da9487f5fa026a9b64b695a07ea", + "symbol": "OX", + "decimals": 18, + "name": "OX Coin", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0xba0dda8762c24da9487f5fa026a9b64b695a07ea.png", + "aggregators": ["CoinGecko", "Socket", "Rubic", "Rango"], + "occurrences": 4 + }, + "0x88a269df8fe7f53e590c561954c52fccc8ec0cfb": { + "address": "0x88a269df8fe7f53e590c561954c52fccc8ec0cfb", + "symbol": "NST", + "decimals": 18, + "name": "Ninja Squad Token", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0x88a269df8fe7f53e590c561954c52fccc8ec0cfb.png", + "aggregators": ["CoinGecko", "Socket", "Rubic", "Rango"], + "occurrences": 4 + }, + "0xe5e851b01dd3eda24fde709a407db44555b6d1e0": { + "address": "0xe5e851b01dd3eda24fde709a407db44555b6d1e0", + "symbol": "RIF", + "decimals": 18, + "name": "RIF", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0xe5e851b01dd3eda24fde709a407db44555b6d1e0.png", + "aggregators": ["CoinGecko", "Socket", "Rubic", "Rango"], + "occurrences": 4 + }, + "0xff7f8f301f7a706e3cfd3d2275f5dc0b9ee8009b": { + "address": "0xff7f8f301f7a706e3cfd3d2275f5dc0b9ee8009b", + "symbol": "FOLKS", + "decimals": 6, + "name": "FOLKS", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0xff7f8f301f7a706e3cfd3d2275f5dc0b9ee8009b.png", + "aggregators": ["CoinGecko", "LiFi", "Rubic", "Rango"], + "occurrences": 4 + }, + "0xe2b1dc2d4a3b4e59fdf0c47b71a7a86391a8b35a": { + "address": "0xe2b1dc2d4a3b4e59fdf0c47b71a7a86391a8b35a", + "symbol": "RWA", + "decimals": 18, + "name": "RWA", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0xe2b1dc2d4a3b4e59fdf0c47b71a7a86391a8b35a.png", + "aggregators": ["CoinGecko", "Socket", "Rubic", "Rango"], + "occurrences": 4 + }, + "0x64445f0aecc51e94ad52d8ac56b7190e764e561a": { + "address": "0x64445f0aecc51e94ad52d8ac56b7190e764e561a", + "symbol": "FXS", + "decimals": 18, + "name": "FXS", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0x64445f0aecc51e94ad52d8ac56b7190e764e561a.png", + "aggregators": ["CoinGecko", "Socket", "Rubic", "Rango"], + "occurrences": 4 + }, + "0x00000000efe302beaa2b3e6e1b18d08d69a9012a": { + "address": "0x00000000efe302beaa2b3e6e1b18d08d69a9012a", + "symbol": "AUSD", + "decimals": 6, + "name": "AUSD", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0x00000000efe302beaa2b3e6e1b18d08d69a9012a.png", + "aggregators": ["CoinGecko", "LiFi", "Rubic", "Rango"], + "occurrences": 4 + }, + "0xb4444468e444f89e1c2cac2f1d3ee7e336cbd1f5": { + "address": "0xb4444468e444f89e1c2cac2f1d3ee7e336cbd1f5", + "symbol": "RZR", + "decimals": 18, + "name": "RZR", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0xb4444468e444f89e1c2cac2f1d3ee7e336cbd1f5.png", + "aggregators": ["CoinGecko", "Socket", "Rubic", "Rango"], + "occurrences": 4 + }, + "0x41ca7586cc1311807b4605fbb748a3b8862b42b5": { + "address": "0x41ca7586cc1311807b4605fbb748a3b8862b42b5", + "symbol": "SYRUPUSDC", + "decimals": 6, + "name": "Syrup USDC", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0x41ca7586cc1311807b4605fbb748a3b8862b42b5.png", + "aggregators": ["CoinGecko", "LiFi", "Rubic", "Rango"], + "occurrences": 4 + }, + "0x54b334d68cf5382fee7fbbe496fcf1e76d9ba000": { + "address": "0x54b334d68cf5382fee7fbbe496fcf1e76d9ba000", + "symbol": "BOSON", + "decimals": 18, + "name": "Boson", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0x54b334d68cf5382fee7fbbe496fcf1e76d9ba000.png", + "aggregators": ["CoinGecko", "LiFi", "Rubic", "Rango"], + "occurrences": 4 + }, + "0x35e5db674d8e93a03d814fa0ada70731efe8a4b9": { + "address": "0x35e5db674d8e93a03d814fa0ada70731efe8a4b9", + "symbol": "RLP", + "decimals": 18, + "name": "Resolv Liquidity Provider Token", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0x35e5db674d8e93a03d814fa0ada70731efe8a4b9.png", + "aggregators": ["CoinGecko", "Socket", "Rubic", "Rango"], + "occurrences": 4 + }, + "0x527e8d368298dea5a53be257e5300f4dbafb7a97": { + "address": "0x527e8d368298dea5a53be257e5300f4dbafb7a97", + "symbol": "LION", + "decimals": 18, + "name": "Loaded Lions", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0x527e8d368298dea5a53be257e5300f4dbafb7a97.png", + "aggregators": ["CoinGecko", "Socket", "Rubic", "Rango"], + "occurrences": 4 + }, + "0x40bd670a58238e6e230c430bbb5ce6ec0d40df48": { + "address": "0x40bd670a58238e6e230c430bbb5ce6ec0d40df48", + "symbol": "MORPHO", + "decimals": 18, + "name": "MORPHO", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0x40bd670a58238e6e230c430bbb5ce6ec0d40df48.png", + "aggregators": ["CoinGecko", "Socket", "Rubic", "Rango"], + "occurrences": 4 + }, + "0x2492d0006411af6c8bbb1c8afc1b0197350a79e9": { + "address": "0x2492d0006411af6c8bbb1c8afc1b0197350a79e9", + "symbol": "USR", + "decimals": 18, + "name": "USR", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0x2492d0006411af6c8bbb1c8afc1b0197350a79e9.png", + "aggregators": ["CoinGecko", "Socket", "Rubic", "Rango"], + "occurrences": 4 + }, + "0x000000000026839b3f4181f2cf69336af6153b99": { + "address": "0x000000000026839b3f4181f2cf69336af6153b99", + "symbol": "GG", + "decimals": 18, + "name": "Reboot", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0x000000000026839b3f4181f2cf69336af6153b99.png", + "aggregators": ["TraderJoe", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0x15a808ed3846d25e88ae868de79f1bcb1ac382b5": { + "address": "0x15a808ed3846d25e88ae868de79f1bcb1ac382b5", + "symbol": "MVD", + "decimals": 9, + "name": "Metavault DAO", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0x15a808ed3846d25e88ae868de79f1bcb1ac382b5.png", + "aggregators": ["TraderJoe", "LiFi", "Rubic", "Rango"], + "occurrences": 4 + }, + "0x5429706887fcb58a595677b73e9b0441c25d993d": { + "address": "0x5429706887fcb58a595677b73e9b0441c25d993d", + "symbol": "UNIDX", + "decimals": 18, + "name": "Unidex", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0x5429706887fcb58a595677b73e9b0441c25d993d.png", + "aggregators": ["TraderJoe", "Socket", "Rubic", "Rango"], + "occurrences": 4 + }, + "0x6609be1547166d1c4605f3a243fdcff467e600c3": { + "address": "0x6609be1547166d1c4605f3a243fdcff467e600c3", + "symbol": "NEU", + "decimals": 18, + "name": "Neutra Finance", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0x6609be1547166d1c4605f3a243fdcff467e600c3.png", + "aggregators": ["TraderJoe", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0x6daf586b7370b14163171544fca24abcc0862ac5": { + "address": "0x6daf586b7370b14163171544fca24abcc0862ac5", + "symbol": "BPET", + "decimals": 18, + "name": "xPet.tech BPET", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0x6daf586b7370b14163171544fca24abcc0862ac5.png", + "aggregators": ["TraderJoe", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0xe7f6c3c1f0018e4c08acc52965e5cbff99e34a44": { + "address": "0xe7f6c3c1f0018e4c08acc52965e5cbff99e34a44", + "symbol": "PLSJONES", + "decimals": 18, + "name": "Plutus JONES", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0xe7f6c3c1f0018e4c08acc52965e5cbff99e34a44.png", + "aggregators": ["TraderJoe", "Rubic", "Rango", "SushiSwap"], + "occurrences": 4 + }, + "0xf19547f9ed24aa66b03c3a552d181ae334fbb8db": { + "address": "0xf19547f9ed24aa66b03c3a552d181ae334fbb8db", + "symbol": "LODE", + "decimals": 18, + "name": "Lodestar", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0xf19547f9ed24aa66b03c3a552d181ae334fbb8db.png", + "aggregators": ["TraderJoe", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0xeeeeeb57642040be42185f49c52f7e9b38f8eeee": { + "address": "0xeeeeeb57642040be42185f49c52f7e9b38f8eeee", + "symbol": "ELK", + "decimals": 18, + "name": "Elk", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0xeeeeeb57642040be42185f49c52f7e9b38f8eeee.png", + "aggregators": ["1inch", "LiFi", "Socket", "Rubic"], + "occurrences": 4 + }, + "0xfb9fed8cb962548a11fe7f6f282949061395c7f5": { + "address": "0xfb9fed8cb962548a11fe7f6f282949061395c7f5", + "symbol": "NUON", + "decimals": 18, + "name": "NUON", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0xfb9fed8cb962548a11fe7f6f282949061395c7f5.png", + "aggregators": ["LiFi", "Rubic", "Rango", "SushiSwap"], + "occurrences": 4 + }, + "0xf7a0dd3317535ec4f4d29adf9d620b3d8d5d5069": { + "address": "0xf7a0dd3317535ec4f4d29adf9d620b3d8d5d5069", + "symbol": "STERN", + "decimals": 18, + "name": "Staked ERN Vault", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0xf7a0dd3317535ec4f4d29adf9d620b3d8d5d5069.png", + "aggregators": ["LiFi", "Rubic", "Squid", "Rango"], + "occurrences": 4 + }, + "0x1b8d516e2146d7a32aca0fcbf9482db85fd42c3a": { + "address": "0x1b8d516e2146d7a32aca0fcbf9482db85fd42c3a", + "symbol": "ASCN", + "decimals": 18, + "name": "AlphaScan AI", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0x1b8d516e2146d7a32aca0fcbf9482db85fd42c3a.png", + "aggregators": ["Socket", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0x2b1d36f5b61addaf7da7ebbd11b35fd8cfb0de31": { + "address": "0x2b1d36f5b61addaf7da7ebbd11b35fd8cfb0de31", + "symbol": "ITP", + "decimals": 18, + "name": "Interport Token", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0x2b1d36f5b61addaf7da7ebbd11b35fd8cfb0de31.png", + "aggregators": ["Socket", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0x2b41806cbf1ffb3d9e31a9ece6b738bf9d6f645f": { + "address": "0x2b41806cbf1ffb3d9e31a9ece6b738bf9d6f645f", + "symbol": "ENO", + "decimals": 18, + "name": "ENO", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0x2b41806cbf1ffb3d9e31a9ece6b738bf9d6f645f.png", + "aggregators": ["Socket", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0xb41bd4c99da73510d9e081c5fadbe7a27ac1f814": { + "address": "0xb41bd4c99da73510d9e081c5fadbe7a27ac1f814", + "symbol": "IMO", + "decimals": 18, + "name": "Ideamarket", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0xb41bd4c99da73510d9e081c5fadbe7a27ac1f814.png", + "aggregators": ["Socket", "Rubic", "Rango", "SushiSwap"], + "occurrences": 4 + }, + "0x1c986661170c1834db49c3830130d4038eeeb866": { + "address": "0x1c986661170c1834db49c3830130d4038eeeb866", + "symbol": "APTR", + "decimals": 6, + "name": "Aperture Finance", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0x1c986661170c1834db49c3830130d4038eeeb866.png", + "aggregators": ["Socket", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0x2ea0be86990e8dac0d09e4316bb92086f304622d": { + "address": "0x2ea0be86990e8dac0d09e4316bb92086f304622d", + "symbol": "USDS", + "decimals": 18, + "name": "TheStandard USD", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0x2ea0be86990e8dac0d09e4316bb92086f304622d.png", + "aggregators": ["Socket", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0x3816e40c1eb106c8fb7c05f901cfd58c7292d051": { + "address": "0x3816e40c1eb106c8fb7c05f901cfd58c7292d051", + "symbol": "FOR", + "decimals": 18, + "name": "The Force Token", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0x3816e40c1eb106c8fb7c05f901cfd58c7292d051.png", + "aggregators": ["ArbitrumWhitelist", "Socket", "Rango"], + "occurrences": 3 + }, + "0x0ae38f7e10a43b5b2fb064b42a2f4514cba909ef": { + "address": "0x0ae38f7e10a43b5b2fb064b42a2f4514cba909ef", + "symbol": "UNSHETH", + "decimals": 18, + "name": "unshETH Ether", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0x0ae38f7e10a43b5b2fb064b42a2f4514cba909ef.png", + "aggregators": ["TraderJoe", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x7cfadfd5645b50be87d546f42699d863648251ad": { + "address": "0x7cfadfd5645b50be87d546f42699d863648251ad", + "symbol": "STATAARBUSDCN", + "decimals": 6, + "name": "Static Aave Arbitrum USDCn", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0x7cfadfd5645b50be87d546f42699d863648251ad.png", + "aggregators": ["1inch", "LiFi", "Rubic"], + "occurrences": 3 + }, + "0xfb853acea0e76f73f8274b521fe1611c888670cc": { + "address": "0xfb853acea0e76f73f8274b521fe1611c888670cc", + "symbol": "PLX", + "decimals": 18, + "name": "Plexus", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0xfb853acea0e76f73f8274b521fe1611c888670cc.png", + "aggregators": ["Socket", "Rubic", "Rango"], + "occurrences": 3 + }, + "0xf93fc7d6508ae2faf8fc5675e896bc38d6e7212c": { + "address": "0xf93fc7d6508ae2faf8fc5675e896bc38d6e7212c", + "symbol": "YOU", + "decimals": 18, + "name": "Your Omnichain U Protocol Governance Token", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0xf93fc7d6508ae2faf8fc5675e896bc38d6e7212c.png", + "aggregators": ["Socket", "Rubic", "Rango"], + "occurrences": 3 + }, + "0xa586b3b80d7e3e8d439e25fbc16bc5bcee3e2c85": { + "address": "0xa586b3b80d7e3e8d439e25fbc16bc5bcee3e2c85", + "symbol": "CTOK", + "decimals": 18, + "name": "Codyfight", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0xa586b3b80d7e3e8d439e25fbc16bc5bcee3e2c85.png", + "aggregators": ["Rubic", "Rango", "Sonarwatch"], + "occurrences": 3 + }, + "0xa06d505ec28fd9756a200d2b503a66103db98d09": { + "address": "0xa06d505ec28fd9756a200d2b503a66103db98d09", + "symbol": "KEI", + "decimals": 18, + "name": "KEI Finance", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0xa06d505ec28fd9756a200d2b503a66103db98d09.png", + "aggregators": ["Rubic", "Rango", "Sonarwatch"], + "occurrences": 3 + }, + "0x37a645648df29205c6261289983fb04ecd70b4b3": { + "address": "0x37a645648df29205c6261289983fb04ecd70b4b3", + "symbol": "ANIME", + "decimals": 18, + "name": "Animecoin", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0x37a645648df29205c6261289983fb04ecd70b4b3.png", + "aggregators": [ + "CoinGecko", + "1inch", + "LiFi", + "Socket", + "Rubic", + "Squid", + "Rango", + "Sonarwatch" + ], + "occurrences": 8 + }, + "0x3124678d62d2aa1f615b54525310fbfda6dcf7ae": { + "address": "0x3124678d62d2aa1f615b54525310fbfda6dcf7ae", + "symbol": "SNSY", + "decimals": 18, + "name": "Sensay", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0x3124678d62d2aa1f615b54525310fbfda6dcf7ae.png", + "aggregators": [ + "CoinGecko", + "LiFi", + "Socket", + "Rubic", + "Squid", + "Rango", + "Sonarwatch", + "SushiSwap" + ], + "occurrences": 8 + }, + "0xfa5ed56a203466cbbc2430a43c66b9d8723528e7": { + "address": "0xfa5ed56a203466cbbc2430a43c66b9d8723528e7", + "symbol": "AGEUR", + "decimals": 18, + "name": "agEUR", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0xfa5ed56a203466cbbc2430a43c66b9d8723528e7.png", + "aggregators": [ + "TraderJoe", + "1inch", + "LiFi", + "Rubic", + "Rango", + "Sonarwatch", + "SushiSwap" + ], + "occurrences": 7 + }, + "0x23ee2343b892b1bb63503a4fabc840e0e2c6810f": { + "address": "0x23ee2343b892b1bb63503a4fabc840e0e2c6810f", + "symbol": "AXL", + "decimals": 6, + "name": "Axelar", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0x23ee2343b892b1bb63503a4fabc840e0e2c6810f.png", + "aggregators": [ + "TraderJoe", + "LiFi", + "Socket", + "Rubic", + "Squid", + "Rango", + "Sonarwatch" + ], + "occurrences": 7 + }, + "0x1337420ded5adb9980cfc35f8f2b054ea86f8ab1": { + "address": "0x1337420ded5adb9980cfc35f8f2b054ea86f8ab1", + "symbol": "SQD", + "decimals": 18, + "name": "Subsquid", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0x1337420ded5adb9980cfc35f8f2b054ea86f8ab1.png", + "aggregators": [ + "CoinGecko", + "1inch", + "LiFi", + "Socket", + "Rubic", + "Squid", + "Rango" + ], + "occurrences": 7 + }, + "0xb08d8becab1bf76a9ce3d2d5fa946f65ec1d3e83": { + "address": "0xb08d8becab1bf76a9ce3d2d5fa946f65ec1d3e83", + "symbol": "GS", + "decimals": 18, + "name": "GammaSwap", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0xb08d8becab1bf76a9ce3d2d5fa946f65ec1d3e83.png", + "aggregators": [ + "CoinGecko", + "1inch", + "LiFi", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 7 + }, + "0x61a1ff55c5216b636a294a07d77c6f4df10d3b56": { + "address": "0x61a1ff55c5216b636a294a07d77c6f4df10d3b56", + "symbol": "APEX", + "decimals": 18, + "name": "ApeX", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0x61a1ff55c5216b636a294a07d77c6f4df10d3b56.png", + "aggregators": [ + "TraderJoe", + "LiFi", + "Socket", + "Rubic", + "Squid", + "Rango", + "Sonarwatch" + ], + "occurrences": 7 + }, + "0x3f56e0c36d275367b8c502090edf38289b3dea0d": { + "address": "0x3f56e0c36d275367b8c502090edf38289b3dea0d", + "symbol": "MAI", + "decimals": 18, + "name": "Mai Stablecoin", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0x3f56e0c36d275367b8c502090edf38289b3dea0d.png", + "aggregators": [ + "1inch", + "LiFi", + "Socket", + "Rubic", + "Rango", + "Sonarwatch", + "SushiSwap" + ], + "occurrences": 7 + }, + "0x77b7787a09818502305c95d68a2571f090abb135": { + "address": "0x77b7787a09818502305c95d68a2571f090abb135", + "symbol": "DRV", + "decimals": 18, + "name": "Derive", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0x77b7787a09818502305c95d68a2571f090abb135.png", + "aggregators": [ + "CoinGecko", + "LiFi", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 6 + }, + "0x2297aebd383787a160dd0d9f71508148769342e3": { + "address": "0x2297aebd383787a160dd0d9f71508148769342e3", + "symbol": "BTC.B", + "decimals": 8, + "name": "Avalanche Bridged BTC (Arbitrum One)", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0x2297aebd383787a160dd0d9f71508148769342e3.png", + "aggregators": [ + "TraderJoe", + "LiFi", + "Rubic", + "Squid", + "Rango", + "Sonarwatch" + ], + "occurrences": 6 + }, + "0x3106e2e148525b3db36795b04691d444c24972fb": { + "address": "0x3106e2e148525b3db36795b04691d444c24972fb", + "symbol": "WSTLINK", + "decimals": 18, + "name": "Wrapped Staked LINK", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0x3106e2e148525b3db36795b04691d444c24972fb.png", + "aggregators": [ + "TraderJoe", + "LiFi", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 6 + }, + "0x050c24dbf1eec17babe5fc585f06116a259cc77a": { + "address": "0x050c24dbf1eec17babe5fc585f06116a259cc77a", + "symbol": "DLCBTC", + "decimals": 8, + "name": "dlcBTC", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0x050c24dbf1eec17babe5fc585f06116a259cc77a.png", + "aggregators": [ + "TraderJoe", + "1inch", + "LiFi", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 6 + }, + "0xf63b14f5ee5574e3f337b2796bbdf6dcfb4e2cb7": { + "address": "0xf63b14f5ee5574e3f337b2796bbdf6dcfb4e2cb7", + "symbol": "KIP", + "decimals": 18, + "name": "KIP", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0xf63b14f5ee5574e3f337b2796bbdf6dcfb4e2cb7.png", + "aggregators": [ + "CoinGecko", + "Socket", + "Rubic", + "Squid", + "Rango", + "Sonarwatch" + ], + "occurrences": 6 + }, + "0x38f9bf9dce51833ec7f03c9dc218197999999999": { + "address": "0x38f9bf9dce51833ec7f03c9dc218197999999999", + "symbol": "NYA", + "decimals": 18, + "name": "Nya", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0x38f9bf9dce51833ec7f03c9dc218197999999999.png", + "aggregators": [ + "CoinGecko", + "Socket", + "Rubic", + "Squid", + "Rango", + "Sonarwatch" + ], + "occurrences": 6 + }, + "0x57f5e098cad7a3d1eed53991d4d66c45c9af7812": { + "address": "0x57f5e098cad7a3d1eed53991d4d66c45c9af7812", + "symbol": "WUSDM", + "decimals": 18, + "name": "Wrapped USDM", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0x57f5e098cad7a3d1eed53991d4d66c45c9af7812.png", + "aggregators": [ + "CoinGecko", + "LiFi", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 6 + }, + "0x8cf7e3aa6faf6ae180e5ec3f0fb95081c2086ebe": { + "address": "0x8cf7e3aa6faf6ae180e5ec3f0fb95081c2086ebe", + "symbol": "SX", + "decimals": 18, + "name": "SX Network", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0x8cf7e3aa6faf6ae180e5ec3f0fb95081c2086ebe.png", + "aggregators": [ + "CoinGecko", + "LiFi", + "Rubic", + "Rango", + "Sonarwatch", + "SushiSwap" + ], + "occurrences": 6 + }, + "0xf525e73bdeb4ac1b0e741af3ed8a8cbb43ab0756": { + "address": "0xf525e73bdeb4ac1b0e741af3ed8a8cbb43ab0756", + "symbol": "KIBSHI", + "decimals": 18, + "name": "KiboShib", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0xf525e73bdeb4ac1b0e741af3ed8a8cbb43ab0756.png", + "aggregators": [ + "CoinGecko", + "Socket", + "Rubic", + "Squid", + "Rango", + "Sonarwatch" + ], + "occurrences": 6 + }, + "0x330bd769382cfc6d50175903434ccc8d206dcae5": { + "address": "0x330bd769382cfc6d50175903434ccc8d206dcae5", + "symbol": "PNK", + "decimals": 18, + "name": "Kleros", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0x330bd769382cfc6d50175903434ccc8d206dcae5.png", + "aggregators": [ + "CoinGecko", + "LiFi", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 6 + }, + "0x24404dc041d74cd03cfe28855f555559390c931b": { + "address": "0x24404dc041d74cd03cfe28855f555559390c931b", + "symbol": "MOON", + "decimals": 18, + "name": "r/CryptoCurrency Moons", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0x24404dc041d74cd03cfe28855f555559390c931b.png", + "aggregators": [ + "TraderJoe", + "LiFi", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 6 + }, + "0xa71e2738704e367798baa2755af5a10499634953": { + "address": "0xa71e2738704e367798baa2755af5a10499634953", + "symbol": "AVRK", + "decimals": 18, + "name": "Avarik Saga", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0xa71e2738704e367798baa2755af5a10499634953.png", + "aggregators": [ + "CoinGecko", + "LiFi", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 6 + }, + "0x193f4a4a6ea24102f49b931deeeb931f6e32405d": { + "address": "0x193f4a4a6ea24102f49b931deeeb931f6e32405d", + "symbol": "TLOS", + "decimals": 18, + "name": "Telos", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0x193f4a4a6ea24102f49b931deeeb931f6e32405d.png", + "aggregators": [ + "CoinGecko", + "LiFi", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 6 + }, + "0x02f92800f57bcd74066f5709f1daa1a4302df875": { + "address": "0x02f92800f57bcd74066f5709f1daa1a4302df875", + "symbol": "PEAS", + "decimals": 18, + "name": "Peapods Finance", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0x02f92800f57bcd74066f5709f1daa1a4302df875.png", + "aggregators": [ + "TraderJoe", + "LiFi", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 6 + }, + "0x9f07f8a82cb1af1466252e505b7b7ddee103bc91": { + "address": "0x9f07f8a82cb1af1466252e505b7b7ddee103bc91", + "symbol": "DEGEN", + "decimals": 18, + "name": "Degen", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0x9f07f8a82cb1af1466252e505b7b7ddee103bc91.png", + "aggregators": [ + "CoinGecko", + "LiFi", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 6 + }, + "0x7f4638a58c0615037decc86f1dae60e55fe92874": { + "address": "0x7f4638a58c0615037decc86f1dae60e55fe92874", + "symbol": "GRG", + "decimals": 18, + "name": "RigoBlock", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0x7f4638a58c0615037decc86f1dae60e55fe92874.png", + "aggregators": [ + "CoinGecko", + "LiFi", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 6 + }, + "0x9e523234d36973f9e38642886197d023c88e307e": { + "address": "0x9e523234d36973f9e38642886197d023c88e307e", + "symbol": "RING", + "decimals": 18, + "name": "Darwinia Network", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0x9e523234d36973f9e38642886197d023c88e307e.png", + "aggregators": [ + "TraderJoe", + "LiFi", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 6 + }, + "0x6aa395f06986ea4efe0a4630c7865c1eb08d5e7e": { + "address": "0x6aa395f06986ea4efe0a4630c7865c1eb08d5e7e", + "symbol": "JRT", + "decimals": 18, + "name": "Jarvis Reward", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0x6aa395f06986ea4efe0a4630c7865c1eb08d5e7e.png", + "aggregators": [ + "CoinGecko", + "LiFi", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 6 + }, + "0xb0b195aefa3650a6908f15cdac7d92f8a5791b0b": { + "address": "0xb0b195aefa3650a6908f15cdac7d92f8a5791b0b", + "symbol": "BOB", + "decimals": 18, + "name": "BOB", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0xb0b195aefa3650a6908f15cdac7d92f8a5791b0b.png", + "aggregators": [ + "TraderJoe", + "LiFi", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 6 + }, + "0x3509f19581afedeff07c53592bc0ca84e4855475": { + "address": "0x3509f19581afedeff07c53592bc0ca84e4855475", + "symbol": "XUSD", + "decimals": 18, + "name": "xDollar Stablecoin", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0x3509f19581afedeff07c53592bc0ca84e4855475.png", + "aggregators": [ + "TraderJoe", + "LiFi", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 6 + }, + "0xaeaeed23478c3a4b798e4ed40d8b7f41366ae861": { + "address": "0xaeaeed23478c3a4b798e4ed40d8b7f41366ae861", + "symbol": "ANKR", + "decimals": 18, + "name": "Ankr Network", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0xaeaeed23478c3a4b798e4ed40d8b7f41366ae861.png", + "aggregators": [ + "TraderJoe", + "LiFi", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 6 + }, + "0x9cfb13e6c11054ac9fcb92ba89644f30775436e4": { + "address": "0x9cfb13e6c11054ac9fcb92ba89644f30775436e4", + "symbol": "AXL-WSTETH", + "decimals": 18, + "name": "Bridged Wrapped stETH (Axelar)", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0x9cfb13e6c11054ac9fcb92ba89644f30775436e4.png", + "aggregators": [ + "TraderJoe", + "LiFi", + "Rubic", + "Squid", + "Rango", + "Sonarwatch" + ], + "occurrences": 6 + }, + "0x6f5401c53e2769c858665621d22ddbf53d8d27c5": { + "address": "0x6f5401c53e2769c858665621d22ddbf53d8d27c5", + "symbol": "CNFI", + "decimals": 18, + "name": "Connect Financial", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0x6f5401c53e2769c858665621d22ddbf53d8d27c5.png", + "aggregators": [ + "TraderJoe", + "LiFi", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 6 + }, + "0x079504b86d38119f859c4194765029f692b7b7aa": { + "address": "0x079504b86d38119f859c4194765029f692b7b7aa", + "symbol": "LYRA", + "decimals": 18, + "name": "Lyra Finance", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0x079504b86d38119f859c4194765029f692b7b7aa.png", + "aggregators": [ + "TraderJoe", + "LiFi", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 6 + }, + "0x1622bf67e6e5747b81866fe0b85178a93c7f86e3": { + "address": "0x1622bf67e6e5747b81866fe0b85178a93c7f86e3", + "symbol": "UMAMI", + "decimals": 9, + "name": "Umami", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0x1622bf67e6e5747b81866fe0b85178a93c7f86e3.png", + "aggregators": [ + "TraderJoe", + "LiFi", + "Socket", + "Rubic", + "Rango", + "SushiSwap" + ], + "occurrences": 6 + }, + "0xc9cbf102c73fb77ec14f8b4c8bd88e050a6b2646": { + "address": "0xc9cbf102c73fb77ec14f8b4c8bd88e050a6b2646", + "symbol": "ALPHA", + "decimals": 18, + "name": "AlphaToken", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0xc9cbf102c73fb77ec14f8b4c8bd88e050a6b2646.png", + "aggregators": ["UniswapLabs", "LiFi", "Socket", "Rubic", "Rango"], + "occurrences": 5 + }, + "0x74885b4d524d497261259b38900f54e6dbad2210": { + "address": "0x74885b4d524d497261259b38900f54e6dbad2210", + "symbol": "APE", + "decimals": 18, + "name": "ApeCoin", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0x74885b4d524d497261259b38900f54e6dbad2210.png", + "aggregators": ["UniswapLabs", "LiFi", "Socket", "Rubic", "Rango"], + "occurrences": 5 + }, + "0x84f5c2cfba754e76dd5ae4fb369cfc920425e12b": { + "address": "0x84f5c2cfba754e76dd5ae4fb369cfc920425e12b", + "symbol": "CTX", + "decimals": 18, + "name": "Cryptex", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0x84f5c2cfba754e76dd5ae4fb369cfc920425e12b.png", + "aggregators": ["TraderJoe", "LiFi", "Socket", "Rubic", "Rango"], + "occurrences": 5 + }, + "0x589d35656641d6ab57a545f08cf473ecd9b6d5f7": { + "address": "0x589d35656641d6ab57a545f08cf473ecd9b6d5f7", + "symbol": "GYEN", + "decimals": 6, + "name": "GMO JPY", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0x589d35656641d6ab57a545f08cf473ecd9b6d5f7.png", + "aggregators": ["TraderJoe", "LiFi", "Socket", "Rubic", "Rango"], + "occurrences": 5 + }, + "0x561877b6b3dd7651313794e5f2894b2f18be0766": { + "address": "0x561877b6b3dd7651313794e5f2894b2f18be0766", + "symbol": "MATIC", + "decimals": 18, + "name": "Polygon", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0x561877b6b3dd7651313794e5f2894b2f18be0766.png", + "aggregators": ["UniswapLabs", "LiFi", "Socket", "Rubic", "Rango"], + "occurrences": 5 + }, + "0x88266f9eb705f5282a2507a9c418821a2ac9f8bd": { + "address": "0x88266f9eb705f5282a2507a9c418821a2ac9f8bd", + "symbol": "NCASH", + "decimals": 18, + "name": "Nutcash", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0x88266f9eb705f5282a2507a9c418821a2ac9f8bd.png", + "aggregators": [ + "CoinGecko", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0xafe8107123eefd62469474dec9680860b890e5b6": { + "address": "0xafe8107123eefd62469474dec9680860b890e5b6", + "symbol": "OIL", + "decimals": 18, + "name": "Oil Token", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0xafe8107123eefd62469474dec9680860b890e5b6.png", + "aggregators": [ + "CoinGecko", + "Rubic", + "Squid", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x9e64d3b9e8ec387a9a58ced80b71ed815f8d82b5": { + "address": "0x9e64d3b9e8ec387a9a58ced80b71ed815f8d82b5", + "symbol": "SMOL", + "decimals": 18, + "name": "Smolcoin", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0x9e64d3b9e8ec387a9a58ced80b71ed815f8d82b5.png", + "aggregators": [ + "TraderJoe", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x0caadd427a6feb5b5fc1137eb05aa7ddd9c08ce9": { + "address": "0x0caadd427a6feb5b5fc1137eb05aa7ddd9c08ce9", + "symbol": "VEE", + "decimals": 18, + "name": "VEE", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0x0caadd427a6feb5b5fc1137eb05aa7ddd9c08ce9.png", + "aggregators": [ + "CoinGecko", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0xb4bbfe92702730ef7f1d28e4b9e42381182f48a5": { + "address": "0xb4bbfe92702730ef7f1d28e4b9e42381182f48a5", + "symbol": "HOLD", + "decimals": 18, + "name": "Hold VIP", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0xb4bbfe92702730ef7f1d28e4b9e42381182f48a5.png", + "aggregators": [ + "TraderJoe", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0xd4939d69b31fbe981ed6904a3af43ee1dc777aab": { + "address": "0xd4939d69b31fbe981ed6904a3af43ee1dc777aab", + "symbol": "ETH+", + "decimals": 18, + "name": "Ethereum+ (Overnight)", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0xd4939d69b31fbe981ed6904a3af43ee1dc777aab.png", + "aggregators": [ + "CoinGecko", + "LiFi", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x45d9831d8751b2325f3dbf48db748723726e1c8c": { + "address": "0x45d9831d8751b2325f3dbf48db748723726e1c8c", + "symbol": "EVA", + "decimals": 18, + "name": "EverValue Coin", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0x45d9831d8751b2325f3dbf48db748723726e1c8c.png", + "aggregators": [ + "CoinGecko", + "Rubic", + "Squid", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x872bad41cfc8ba731f811fea8b2d0b9fd6369585": { + "address": "0x872bad41cfc8ba731f811fea8b2d0b9fd6369585", + "symbol": "GFLY", + "decimals": 18, + "name": "BattleFly", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0x872bad41cfc8ba731f811fea8b2d0b9fd6369585.png", + "aggregators": [ + "TraderJoe", + "LiFi", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0xdfb8be6f8c87f74295a87de951974362cedcfa30": { + "address": "0xdfb8be6f8c87f74295a87de951974362cedcfa30", + "symbol": "EMC", + "decimals": 18, + "name": "EdgeMatrix Chain", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0xdfb8be6f8c87f74295a87de951974362cedcfa30.png", + "aggregators": [ + "Metamask", + "Rubic", + "Rango", + "Sonarwatch", + "SushiSwap" + ], + "occurrences": 5 + }, + "0x7f90122bf0700f9e7e1f688fe926940e8839f353": { + "address": "0x7f90122bf0700f9e7e1f688fe926940e8839f353", + "symbol": "2CRV", + "decimals": 18, + "name": "Curve.fi USDC/USDT", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0x7f90122bf0700f9e7e1f688fe926940e8839f353.png", + "aggregators": [ + "TraderJoe", + "LiFi", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0xb5b5b428e4de365f809ced8271d202449e5c2f72": { + "address": "0xb5b5b428e4de365f809ced8271d202449e5c2f72", + "symbol": "BRUH", + "decimals": 6, + "name": "BRUH", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0xb5b5b428e4de365f809ced8271d202449e5c2f72.png", + "aggregators": [ + "TraderJoe", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x1d987200df3b744cfa9c14f713f5334cb4bc4d5d": { + "address": "0x1d987200df3b744cfa9c14f713f5334cb4bc4d5d", + "symbol": "REKT", + "decimals": 6, + "name": "REKT", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0x1d987200df3b744cfa9c14f713f5334cb4bc4d5d.png", + "aggregators": [ + "TraderJoe", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0xca4e51f6ad4afd9d1068e5899de9dd7d73f3463d": { + "address": "0xca4e51f6ad4afd9d1068e5899de9dd7d73f3463d", + "symbol": "AARK", + "decimals": 18, + "name": "Aark Digital", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0xca4e51f6ad4afd9d1068e5899de9dd7d73f3463d.png", + "aggregators": [ + "TraderJoe", + "LiFi", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0xc760f9782f8cea5b06d862574464729537159966": { + "address": "0xc760f9782f8cea5b06d862574464729537159966", + "symbol": "TANGO", + "decimals": 18, + "name": "Contango", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0xc760f9782f8cea5b06d862574464729537159966.png", + "aggregators": [ + "CoinGecko", + "LiFi", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x54bdbf3ce36f451ec61493236b8e6213ac87c0f6": { + "address": "0x54bdbf3ce36f451ec61493236b8e6213ac87c0f6", + "symbol": "RDP", + "decimals": 18, + "name": "Radpie", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0x54bdbf3ce36f451ec61493236b8e6213ac87c0f6.png", + "aggregators": [ + "TraderJoe", + "LiFi", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x7e7a7c916c19a45769f6bdaf91087f93c6c12f78": { + "address": "0x7e7a7c916c19a45769f6bdaf91087f93c6c12f78", + "symbol": "EGP", + "decimals": 18, + "name": "Eigenpie", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0x7e7a7c916c19a45769f6bdaf91087f93c6c12f78.png", + "aggregators": [ + "CoinGecko", + "LiFi", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0xb59c8912c83157a955f9d715e556257f432c35d7": { + "address": "0xb59c8912c83157a955f9d715e556257f432c35d7", + "symbol": "TRUF", + "decimals": 15, + "name": "Truflation", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0xb59c8912c83157a955f9d715e556257f432c35d7.png", + "aggregators": [ + "CoinGecko", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x47c337bd5b9344a6f3d6f58c474d9d8cd419d8ca": { + "address": "0x47c337bd5b9344a6f3d6f58c474d9d8cd419d8ca", + "symbol": "DACKIE", + "decimals": 18, + "name": "DackieSwap", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0x47c337bd5b9344a6f3d6f58c474d9d8cd419d8ca.png", + "aggregators": [ + "CoinGecko", + "Rubic", + "Squid", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x4d22e37eb4d71d1acc5f4889a65936d2a44a2f15": { + "address": "0x4d22e37eb4d71d1acc5f4889a65936d2a44a2f15", + "symbol": "HAT", + "decimals": 18, + "name": "Hat", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0x4d22e37eb4d71d1acc5f4889a65936d2a44a2f15.png", + "aggregators": ["TraderJoe", "LiFi", "Socket", "Rubic", "Rango"], + "occurrences": 5 + }, + "0x3419875b4d3bca7f3fdda2db7a476a79fd31b4fe": { + "address": "0x3419875b4d3bca7f3fdda2db7a476a79fd31b4fe", + "symbol": "DZHV", + "decimals": 18, + "name": "DizzyHavoc", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0x3419875b4d3bca7f3fdda2db7a476a79fd31b4fe.png", + "aggregators": [ + "CoinGecko", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x35e050d3c0ec2d29d269a8ecea763a183bdf9a9d": { + "address": "0x35e050d3c0ec2d29d269a8ecea763a183bdf9a9d", + "symbol": "USDY", + "decimals": 18, + "name": "USDY", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0x35e050d3c0ec2d29d269a8ecea763a183bdf9a9d.png", + "aggregators": ["TraderJoe", "LiFi", "Socket", "Rubic", "Rango"], + "occurrences": 5 + }, + "0x8697841b82c71fcbd9e58c15f6de68cd1c63fd02": { + "address": "0x8697841b82c71fcbd9e58c15f6de68cd1c63fd02", + "symbol": "NUT", + "decimals": 18, + "name": "NutCoin", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0x8697841b82c71fcbd9e58c15f6de68cd1c63fd02.png", + "aggregators": [ + "CoinGecko", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x7ce746b45eabd0c4321538dec1b849c79a9a8476": { + "address": "0x7ce746b45eabd0c4321538dec1b849c79a9a8476", + "symbol": "DSLA", + "decimals": 18, + "name": "DSLA Protocol", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0x7ce746b45eabd0c4321538dec1b849c79a9a8476.png", + "aggregators": [ + "TraderJoe", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0xbad58ed9b5f26a002ea250d7a60dc6729a4a2403": { + "address": "0xbad58ed9b5f26a002ea250d7a60dc6729a4a2403", + "symbol": "PBX", + "decimals": 18, + "name": "Paribus", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0xbad58ed9b5f26a002ea250d7a60dc6729a4a2403.png", + "aggregators": [ + "TraderJoe", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0xd3ac016b1b8c80eeadde4d186a9138c9324e4189": { + "address": "0xd3ac016b1b8c80eeadde4d186a9138c9324e4189", + "symbol": "OK", + "decimals": 18, + "name": "Okcash", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0xd3ac016b1b8c80eeadde4d186a9138c9324e4189.png", + "aggregators": [ + "TraderJoe", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0xe10d4a4255d2d35c9e23e2c4790e073046fbaf5c": { + "address": "0xe10d4a4255d2d35c9e23e2c4790e073046fbaf5c", + "symbol": "LNDX", + "decimals": 6, + "name": "LandX Governance Token", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0xe10d4a4255d2d35c9e23e2c4790e073046fbaf5c.png", + "aggregators": [ + "CoinGecko", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x0cbd6fadcf8096cc9a43d90b45f65826102e3ece": { + "address": "0x0cbd6fadcf8096cc9a43d90b45f65826102e3ece", + "symbol": "CDT", + "decimals": 18, + "name": "CheckDot", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0x0cbd6fadcf8096cc9a43d90b45f65826102e3ece.png", + "aggregators": [ + "CoinGecko", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0xfb9fbcb328317123f5275cda30b6589d5841216b": { + "address": "0xfb9fbcb328317123f5275cda30b6589d5841216b", + "symbol": "ATF", + "decimals": 18, + "name": "Antfarm Token", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0xfb9fbcb328317123f5275cda30b6589d5841216b.png", + "aggregators": [ + "TraderJoe", + "LiFi", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0xd8724322f44e5c58d7a815f542036fb17dbbf839": { + "address": "0xd8724322f44e5c58d7a815f542036fb17dbbf839", + "symbol": "WOETH", + "decimals": 18, + "name": "Wrapped OETH", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0xd8724322f44e5c58d7a815f542036fb17dbbf839.png", + "aggregators": ["CoinGecko", "LiFi", "Socket", "Rubic", "Rango"], + "occurrences": 5 + }, + "0x13278cd824d33a7adb9f0a9a84aca7c0d2deebf7": { + "address": "0x13278cd824d33a7adb9f0a9a84aca7c0d2deebf7", + "symbol": "TAROT", + "decimals": 18, + "name": "Tarot", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0x13278cd824d33a7adb9f0a9a84aca7c0d2deebf7.png", + "aggregators": [ + "TraderJoe", + "LiFi", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0xf3c091ed43de9c270593445163a41a876a0bb3dd": { + "address": "0xf3c091ed43de9c270593445163a41a876a0bb3dd", + "symbol": "ORBS", + "decimals": 18, + "name": "Orbs", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0xf3c091ed43de9c270593445163a41a876a0bb3dd.png", + "aggregators": [ + "TraderJoe", + "Rubic", + "Squid", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x8b5e4c9a188b1a187f2d1e80b1c2fb17fa2922e1": { + "address": "0x8b5e4c9a188b1a187f2d1e80b1c2fb17fa2922e1", + "symbol": "GOLD", + "decimals": 18, + "name": "GoldenBoys", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0x8b5e4c9a188b1a187f2d1e80b1c2fb17fa2922e1.png", + "aggregators": [ + "CoinGecko", + "LiFi", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x6b021b3f68491974be6d4009fee61a4e3c708fd6": { + "address": "0x6b021b3f68491974be6d4009fee61a4e3c708fd6", + "symbol": "FUSE", + "decimals": 18, + "name": "Fuse", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0x6b021b3f68491974be6d4009fee61a4e3c708fd6.png", + "aggregators": [ + "TraderJoe", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0xcf934e2402a5e072928a39a956964eb8f2b5b79c": { + "address": "0xcf934e2402a5e072928a39a956964eb8f2b5b79c", + "symbol": "POOL", + "decimals": 18, + "name": "PoolTogether", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0xcf934e2402a5e072928a39a956964eb8f2b5b79c.png", + "aggregators": [ + "CoinGecko", + "LiFi", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x249c48e22e95514ca975de31f473f30c2f3c0916": { + "address": "0x249c48e22e95514ca975de31f473f30c2f3c0916", + "symbol": "USDFI", + "decimals": 18, + "name": "USDFI", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0x249c48e22e95514ca975de31f473f30c2f3c0916.png", + "aggregators": [ + "CoinGecko", + "LiFi", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x0a3bb08b3a15a19b4de82f8acfc862606fb69a2d": { + "address": "0x0a3bb08b3a15a19b4de82f8acfc862606fb69a2d", + "symbol": "IUSD", + "decimals": 18, + "name": "iZUMi Bond USD", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0x0a3bb08b3a15a19b4de82f8acfc862606fb69a2d.png", + "aggregators": [ + "TraderJoe", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x9500ba777560daf9d3ab148ea1cf1ed39df9ebdb": { + "address": "0x9500ba777560daf9d3ab148ea1cf1ed39df9ebdb", + "symbol": "STYLE", + "decimals": 18, + "name": "STYLE Token", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0x9500ba777560daf9d3ab148ea1cf1ed39df9ebdb.png", + "aggregators": ["CoinGecko", "LiFi", "Socket", "Rubic", "Rango"], + "occurrences": 5 + }, + "0x847503fbf003ce8b005546aa3c03b80b7c2f9771": { + "address": "0x847503fbf003ce8b005546aa3c03b80b7c2f9771", + "symbol": "BYTE", + "decimals": 9, + "name": "Byte", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0x847503fbf003ce8b005546aa3c03b80b7c2f9771.png", + "aggregators": [ + "CoinGecko", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x9f41b34f42058a7b74672055a5fae22c4b113fd1": { + "address": "0x9f41b34f42058a7b74672055a5fae22c4b113fd1", + "symbol": "YUM", + "decimals": 18, + "name": "Yum", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0x9f41b34f42058a7b74672055a5fae22c4b113fd1.png", + "aggregators": [ + "CoinGecko", + "Rubic", + "Squid", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x30dcba0405004cf124045793e1933c798af9e66a": { + "address": "0x30dcba0405004cf124045793e1933c798af9e66a", + "symbol": "YDF", + "decimals": 18, + "name": "Yieldification", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0x30dcba0405004cf124045793e1933c798af9e66a.png", + "aggregators": [ + "TraderJoe", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x34229b3f16fbcdfa8d8d9d17c0852f9496f4c7bb": { + "address": "0x34229b3f16fbcdfa8d8d9d17c0852f9496f4c7bb", + "symbol": "IPOR", + "decimals": 18, + "name": "IPOR", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0x34229b3f16fbcdfa8d8d9d17c0852f9496f4c7bb.png", + "aggregators": [ + "TraderJoe", + "LiFi", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x53bcf6698c911b2a7409a740eacddb901fc2a2c6": { + "address": "0x53bcf6698c911b2a7409a740eacddb901fc2a2c6", + "symbol": "KABOSU", + "decimals": 18, + "name": "Kabosu (Arbitrum)", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0x53bcf6698c911b2a7409a740eacddb901fc2a2c6.png", + "aggregators": [ + "TraderJoe", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x643b34980e635719c15a2d4ce69571a258f940e9": { + "address": "0x643b34980e635719c15a2d4ce69571a258f940e9", + "symbol": "EUROS", + "decimals": 18, + "name": "The Standard EURO", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0x643b34980e635719c15a2d4ce69571a258f940e9.png", + "aggregators": [ + "TraderJoe", + "LiFi", + "Socket", + "Rubic", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x65c936f008bc34fe819bce9fa5afd9dc2d49977f": { + "address": "0x65c936f008bc34fe819bce9fa5afd9dc2d49977f", + "symbol": "Y2K", + "decimals": 18, + "name": "Y2K", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0x65c936f008bc34fe819bce9fa5afd9dc2d49977f.png", + "aggregators": [ + "TraderJoe", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x8626264b6a1b4e920905efd381002aba52ea0eea": { + "address": "0x8626264b6a1b4e920905efd381002aba52ea0eea", + "symbol": "BLKC", + "decimals": 8, + "name": "BlackHat Coin", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0x8626264b6a1b4e920905efd381002aba52ea0eea.png", + "aggregators": [ + "TraderJoe", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0xc84fae1141b92fa5bf847276828f69caf651cb7f": { + "address": "0xc84fae1141b92fa5bf847276828f69caf651cb7f", + "symbol": "XNF", + "decimals": 18, + "name": "XNF", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0xc84fae1141b92fa5bf847276828f69caf651cb7f.png", + "aggregators": [ + "TraderJoe", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0xcbe94d75ec713b7ead84f55620dc3174beeb1cfe": { + "address": "0xcbe94d75ec713b7ead84f55620dc3174beeb1cfe", + "symbol": "FORE", + "decimals": 18, + "name": "FORE Protocol", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0xcbe94d75ec713b7ead84f55620dc3174beeb1cfe.png", + "aggregators": [ + "TraderJoe", + "LiFi", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0xf7693c6fd9a7172d537fa75d133d309501cbd657": { + "address": "0xf7693c6fd9a7172d537fa75d133d309501cbd657", + "symbol": "W3N", + "decimals": 18, + "name": "Web3 No Value", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0xf7693c6fd9a7172d537fa75d133d309501cbd657.png", + "aggregators": [ + "TraderJoe", + "Rubic", + "Rango", + "Sonarwatch", + "SushiSwap" + ], + "occurrences": 5 + }, + "0x2172fad929e857ddfd7ddc31e24904438434cb0b": { + "address": "0x2172fad929e857ddfd7ddc31e24904438434cb0b", + "symbol": "MBTC", + "decimals": 8, + "name": "Babypie Wrapped BTC", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0x2172fad929e857ddfd7ddc31e24904438434cb0b.png", + "aggregators": ["LiFi", "Socket", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 5 + }, + "0x0a84edf70f30325151631ce7a61307d1f4d619a3": { + "address": "0x0a84edf70f30325151631ce7a61307d1f4d619a3", + "symbol": "BONZAI", + "decimals": 18, + "name": "BonzAI DePIN", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0x0a84edf70f30325151631ce7a61307d1f4d619a3.png", + "aggregators": ["LiFi", "Socket", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 5 + }, + "0x99c409e5f62e4bd2ac142f17cafb6810b8f0baae": { + "address": "0x99c409e5f62e4bd2ac142f17cafb6810b8f0baae", + "symbol": "BIFI", + "decimals": 18, + "name": "Beefy Finance", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0x99c409e5f62e4bd2ac142f17cafb6810b8f0baae.png", + "aggregators": ["LiFi", "Socket", "Rubic", "Rango", "SushiSwap"], + "occurrences": 5 + }, + "0x23a941036ae778ac51ab04cea08ed6e2fe103614": { + "address": "0x23a941036ae778ac51ab04cea08ed6e2fe103614", + "symbol": "GRT", + "decimals": 18, + "name": "Graph Token", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0x23a941036ae778ac51ab04cea08ed6e2fe103614.png", + "aggregators": ["LiFi", "Socket", "Rubic", "Rango", "SushiSwap"], + "occurrences": 5 + }, + "0x00e1724885473b63bce08a9f0a52f35b0979e35a": { + "address": "0x00e1724885473b63bce08a9f0a52f35b0979e35a", + "symbol": "OATH", + "decimals": 18, + "name": "OATH", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0x00e1724885473b63bce08a9f0a52f35b0979e35a.png", + "aggregators": ["LiFi", "Rubic", "Squid", "Rango", "Sonarwatch"], + "occurrences": 5 + }, + "0xdb96f8efd6865644993505318cc08ff9c42fb9ac": { + "address": "0xdb96f8efd6865644993505318cc08ff9c42fb9ac", + "symbol": "Z2O", + "decimals": 9, + "name": "ZeroTwOhm", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0xdb96f8efd6865644993505318cc08ff9c42fb9ac.png", + "aggregators": ["LiFi", "Socket", "Rubic", "Rango", "SushiSwap"], + "occurrences": 5 + }, + "0x41b94c5867f7f6217c9a30520cb3e793b1ee1b97": { + "address": "0x41b94c5867f7f6217c9a30520cb3e793b1ee1b97", + "symbol": "AXLTIA", + "decimals": 6, + "name": "Axelar Wrapped TIA", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0x41b94c5867f7f6217c9a30520cb3e793b1ee1b97.png", + "aggregators": ["LiFi", "Rubic", "Squid", "Rango", "SushiSwap"], + "occurrences": 5 + }, + "0xd693ec944a85eeca4247ec1c3b130dca9b0c3b22": { + "address": "0xd693ec944a85eeca4247ec1c3b130dca9b0c3b22", + "symbol": "UMA", + "decimals": 18, + "name": "UMA Voting Token v1", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0xd693ec944a85eeca4247ec1c3b130dca9b0c3b22.png", + "aggregators": ["UniswapLabs", "LiFi", "Rubic", "Rango"], + "occurrences": 4 + }, + "0xba9a5dd807c9f072850be15a52df3408ba25fd18": { + "address": "0xba9a5dd807c9f072850be15a52df3408ba25fd18", + "symbol": "BTU", + "decimals": 18, + "name": "BTU Protocol", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0xba9a5dd807c9f072850be15a52df3408ba25fd18.png", + "aggregators": ["ArbitrumWhitelist", "LiFi", "Socket", "Rango"], + "occurrences": 4 + }, + "0x04cb2d263a7489f02d813eaab9ba1bb8466347f2": { + "address": "0x04cb2d263a7489f02d813eaab9ba1bb8466347f2", + "symbol": "KUN", + "decimals": 18, + "name": "QIAN governance token", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0x04cb2d263a7489f02d813eaab9ba1bb8466347f2.png", + "aggregators": ["ArbitrumWhitelist", "LiFi", "Rubic", "Rango"], + "occurrences": 4 + }, + "0xaaa62d9584cbe8e4d68a43ec91bff4ff1fadb202": { + "address": "0xaaa62d9584cbe8e4d68a43ec91bff4ff1fadb202", + "symbol": "MATTER", + "decimals": 18, + "name": "MATTER", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0xaaa62d9584cbe8e4d68a43ec91bff4ff1fadb202.png", + "aggregators": ["ArbitrumWhitelist", "LiFi", "Rubic", "Rango"], + "occurrences": 4 + }, + "0x0f61b24272af65eacf6adfe507028957698e032f": { + "address": "0x0f61b24272af65eacf6adfe507028957698e032f", + "symbol": "ZIPT", + "decimals": 18, + "name": "Zippie", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0x0f61b24272af65eacf6adfe507028957698e032f.png", + "aggregators": ["ArbitrumWhitelist", "LiFi", "Rubic", "Rango"], + "occurrences": 4 + }, + "0x94fcd9c18f99538c0f7c61c5500ca79f0d5c4dab": { + "address": "0x94fcd9c18f99538c0f7c61c5500ca79f0d5c4dab", + "symbol": "KIMA", + "decimals": 18, + "name": "Kima Network", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0x94fcd9c18f99538c0f7c61c5500ca79f0d5c4dab.png", + "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0x7a10f506e4c7658e6ad15fdf0443d450b7fa80d7": { + "address": "0x7a10f506e4c7658e6ad15fdf0443d450b7fa80d7", + "symbol": "EYWA", + "decimals": 18, + "name": "EYWA", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0x7a10f506e4c7658e6ad15fdf0443d450b7fa80d7.png", + "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0x602eb0d99a5e3e76d1510372c4d2020e12eaea8a": { + "address": "0x602eb0d99a5e3e76d1510372c4d2020e12eaea8a", + "symbol": "PSI", + "decimals": 9, + "name": "TridentDAO", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0x602eb0d99a5e3e76d1510372c4d2020e12eaea8a.png", + "aggregators": ["TraderJoe", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0xd3443ee1e91af28e5fb858fbd0d72a63ba8046e0": { + "address": "0xd3443ee1e91af28e5fb858fbd0d72a63ba8046e0", + "symbol": "GUSDC", + "decimals": 6, + "name": "Gains Network USDC", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0xd3443ee1e91af28e5fb858fbd0d72a63ba8046e0.png", + "aggregators": ["TraderJoe", "LiFi", "Rubic", "Rango"], + "occurrences": 4 + }, + "0xaae0c3856e665ff9b3e2872b6d75939d810b7e40": { + "address": "0xaae0c3856e665ff9b3e2872b6d75939d810b7e40", + "symbol": "YFX", + "decimals": 18, + "name": "YieldFarming Index", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0xaae0c3856e665ff9b3e2872b6d75939d810b7e40.png", + "aggregators": ["TraderJoe", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0x7c8a1a80fdd00c9cccd6ebd573e9ecb49bfa2a59": { + "address": "0x7c8a1a80fdd00c9cccd6ebd573e9ecb49bfa2a59", + "symbol": "AICODE", + "decimals": 18, + "name": "AI CODE", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0x7c8a1a80fdd00c9cccd6ebd573e9ecb49bfa2a59.png", + "aggregators": ["TraderJoe", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0x33c88d4cac6ac34f77020915a2a88cd0417dc069": { + "address": "0x33c88d4cac6ac34f77020915a2a88cd0417dc069", + "symbol": "USSD", + "decimals": 6, + "name": "Autonomous Secure Dollar", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0x33c88d4cac6ac34f77020915a2a88cd0417dc069.png", + "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0x93d504070ab0eede5449c89c5ea0f5e34d8103f8": { + "address": "0x93d504070ab0eede5449c89c5ea0f5e34d8103f8", + "symbol": "ARCHI", + "decimals": 18, + "name": "Archi Token", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0x93d504070ab0eede5449c89c5ea0f5e34d8103f8.png", + "aggregators": ["TraderJoe", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0x6fd58f5a2f3468e35feb098b5f59f04157002407": { + "address": "0x6fd58f5a2f3468e35feb098b5f59f04157002407", + "symbol": "POGAI", + "decimals": 18, + "name": "POGAI", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0x6fd58f5a2f3468e35feb098b5f59f04157002407.png", + "aggregators": ["TraderJoe", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0x79ead7a012d97ed8deece279f9bc39e264d7eef9": { + "address": "0x79ead7a012d97ed8deece279f9bc39e264d7eef9", + "symbol": "BONSAI", + "decimals": 18, + "name": "Bonsai", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0x79ead7a012d97ed8deece279f9bc39e264d7eef9.png", + "aggregators": ["TraderJoe", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0xc701f86e6d242b97d3035f6c2cecaf8e7087e898": { + "address": "0xc701f86e6d242b97d3035f6c2cecaf8e7087e898", + "symbol": "RUX", + "decimals": 18, + "name": "RunBlox (Arbitrum)", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0xc701f86e6d242b97d3035f6c2cecaf8e7087e898.png", + "aggregators": ["TraderJoe", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0xdadeca1167fe47499e53eb50f261103630974905": { + "address": "0xdadeca1167fe47499e53eb50f261103630974905", + "symbol": "NRN", + "decimals": 18, + "name": "Neuron", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0xdadeca1167fe47499e53eb50f261103630974905.png", + "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0xf5a27e55c748bcddbfea5477cb9ae924f0f7fd2e": { + "address": "0xf5a27e55c748bcddbfea5477cb9ae924f0f7fd2e", + "symbol": "TST", + "decimals": 18, + "name": "TheStandard Token", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0xf5a27e55c748bcddbfea5477cb9ae924f0f7fd2e.png", + "aggregators": ["TraderJoe", "Socket", "Rubic", "Sonarwatch"], + "occurrences": 4 + }, + "0x5117f4ad0bc70dbb3b05bf39a1ec1ee40dd67654": { + "address": "0x5117f4ad0bc70dbb3b05bf39a1ec1ee40dd67654", + "symbol": "AVIVE", + "decimals": 18, + "name": "Avive", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0x5117f4ad0bc70dbb3b05bf39a1ec1ee40dd67654.png", + "aggregators": ["TraderJoe", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0xbc4c97fb9befaa8b41448e1dfcc5236da543217f": { + "address": "0xbc4c97fb9befaa8b41448e1dfcc5236da543217f", + "symbol": "CATCH", + "decimals": 18, + "name": "SpaceCatch", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0xbc4c97fb9befaa8b41448e1dfcc5236da543217f.png", + "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0x8d7c2588c365b9e98ea464b63dbccdf13ecd9809": { + "address": "0x8d7c2588c365b9e98ea464b63dbccdf13ecd9809", + "symbol": "AI", + "decimals": 18, + "name": "Flourishing AI", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0x8d7c2588c365b9e98ea464b63dbccdf13ecd9809.png", + "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0x6db8b088c4d41d622b44cd81b900ba690f2d496c": { + "address": "0x6db8b088c4d41d622b44cd81b900ba690f2d496c", + "symbol": "IDIA", + "decimals": 18, + "name": "Impossible Finance Launchpad", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0x6db8b088c4d41d622b44cd81b900ba690f2d496c.png", + "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0xe20b9e246db5a0d21bf9209e4858bc9a3ff7a034": { + "address": "0xe20b9e246db5a0d21bf9209e4858bc9a3ff7a034", + "symbol": "WBAN", + "decimals": 18, + "name": "Wrapped Banano", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0xe20b9e246db5a0d21bf9209e4858bc9a3ff7a034.png", + "aggregators": ["TraderJoe", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0x7f4db37d7beb31f445307782bc3da0f18df13696": { + "address": "0x7f4db37d7beb31f445307782bc3da0f18df13696", + "symbol": "YAK", + "decimals": 18, + "name": "Yield Yak", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0x7f4db37d7beb31f445307782bc3da0f18df13696.png", + "aggregators": ["TraderJoe", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0x306fd3e7b169aa4ee19412323e1a5995b8c1a1f4": { + "address": "0x306fd3e7b169aa4ee19412323e1a5995b8c1a1f4", + "symbol": "FTW", + "decimals": 18, + "name": "Black Agnus", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0x306fd3e7b169aa4ee19412323e1a5995b8c1a1f4.png", + "aggregators": ["CoinGecko", "Socket", "Rubic", "Rango"], + "occurrences": 4 + }, + "0xa23e44aea714fbbc08ef28340d78067b9a8cad73": { + "address": "0xa23e44aea714fbbc08ef28340d78067b9a8cad73", + "symbol": "LBR", + "decimals": 18, + "name": "Lybra", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0xa23e44aea714fbbc08ef28340d78067b9a8cad73.png", + "aggregators": ["TraderJoe", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0x3b60ff35d3f7f62d636b067dd0dc0dfdad670e4e": { + "address": "0x3b60ff35d3f7f62d636b067dd0dc0dfdad670e4e", + "symbol": "LADYS", + "decimals": 18, + "name": "Milady Meme Coin", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0x3b60ff35d3f7f62d636b067dd0dc0dfdad670e4e.png", + "aggregators": ["TraderJoe", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0x666966ef3925b1c92fa355fda9722899f3e73451": { + "address": "0x666966ef3925b1c92fa355fda9722899f3e73451", + "symbol": "STABLE", + "decimals": 18, + "name": "Stable", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0x666966ef3925b1c92fa355fda9722899f3e73451.png", + "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0x02150e97271fdc0d6e3a16d9094a0948266f07dd": { + "address": "0x02150e97271fdc0d6e3a16d9094a0948266f07dd", + "symbol": "HAMI", + "decimals": 18, + "name": "Hamachi", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0x02150e97271fdc0d6e3a16d9094a0948266f07dd.png", + "aggregators": ["TraderJoe", "Rubic", "Rango", "SushiSwap"], + "occurrences": 4 + }, + "0x20547341e58fb558637fa15379c92e11f7b7f710": { + "address": "0x20547341e58fb558637fa15379c92e11f7b7f710", + "symbol": "MOZ", + "decimals": 18, + "name": "Mozaic Token", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0x20547341e58fb558637fa15379c92e11f7b7f710.png", + "aggregators": ["TraderJoe", "LiFi", "Rubic", "Rango"], + "occurrences": 4 + }, + "0x352f4bf396a7353a0877f99e99757e5d294df374": { + "address": "0x352f4bf396a7353a0877f99e99757e5d294df374", + "symbol": "SUNDAE", + "decimals": 18, + "name": "Sundae the Dog", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0x352f4bf396a7353a0877f99e99757e5d294df374.png", + "aggregators": ["TraderJoe", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0x43c25f828390de5a3648864eb485cc523e039e67": { + "address": "0x43c25f828390de5a3648864eb485cc523e039e67", + "symbol": "PET", + "decimals": 18, + "name": "Pet Token", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0x43c25f828390de5a3648864eb485cc523e039e67.png", + "aggregators": ["TraderJoe", "LiFi", "Rubic", "Rango"], + "occurrences": 4 + }, + "0x4727a7d2022e99ee5c298513b730307f458f9b40": { + "address": "0x4727a7d2022e99ee5c298513b730307f458f9b40", + "symbol": "GUBERTO", + "decimals": 18, + "name": "Guberto", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0x4727a7d2022e99ee5c298513b730307f458f9b40.png", + "aggregators": ["TraderJoe", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0x560363bda52bc6a44ca6c8c9b4a5fadbda32fa60": { + "address": "0x560363bda52bc6a44ca6c8c9b4a5fadbda32fa60", + "symbol": "SFUND", + "decimals": 18, + "name": "Seedify.fund", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0x560363bda52bc6a44ca6c8c9b4a5fadbda32fa60.png", + "aggregators": ["TraderJoe", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0x6604b5da093f3f35066c6c79e51d581a44c35288": { + "address": "0x6604b5da093f3f35066c6c79e51d581a44c35288", + "symbol": "U", + "decimals": 18, + "name": "Uranium3o8", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0x6604b5da093f3f35066c6c79e51d581a44c35288.png", + "aggregators": ["TraderJoe", "Socket", "Rubic", "Rango"], + "occurrences": 4 + }, + "0x7241bc8035b65865156ddb5edef3eb32874a3af6": { + "address": "0x7241bc8035b65865156ddb5edef3eb32874a3af6", + "symbol": "JGLP", + "decimals": 18, + "name": "Jones GLP", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0x7241bc8035b65865156ddb5edef3eb32874a3af6.png", + "aggregators": ["TraderJoe", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0x7a5d193fe4ed9098f7eadc99797087c96b002907": { + "address": "0x7a5d193fe4ed9098f7eadc99797087c96b002907", + "symbol": "PLSARB", + "decimals": 18, + "name": "Plutus ARB", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0x7a5d193fe4ed9098f7eadc99797087c96b002907.png", + "aggregators": ["TraderJoe", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0x842216e0aa2ae608699f7b1063f26ce6b30c5311": { + "address": "0x842216e0aa2ae608699f7b1063f26ce6b30c5311", + "symbol": "URD", + "decimals": 18, + "name": "UrDEX Finance", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0x842216e0aa2ae608699f7b1063f26ce6b30c5311.png", + "aggregators": ["TraderJoe", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0x89c49a3fa372920ac23ce757a029e6936c0b8e02": { + "address": "0x89c49a3fa372920ac23ce757a029e6936c0b8e02", + "symbol": "CU", + "decimals": 18, + "name": "Crypto Unicorns", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0x89c49a3fa372920ac23ce757a029e6936c0b8e02.png", + "aggregators": ["TraderJoe", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0xafccb724e3aec1657fc9514e3e53a0e71e80622d": { + "address": "0xafccb724e3aec1657fc9514e3e53a0e71e80622d", + "symbol": "VKA", + "decimals": 18, + "name": "Vaultka", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0xafccb724e3aec1657fc9514e3e53a0e71e80622d.png", + "aggregators": ["TraderJoe", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0xb0ecc6ac0073c063dcfc026ccdc9039cae2998e1": { + "address": "0xb0ecc6ac0073c063dcfc026ccdc9039cae2998e1", + "symbol": "AA", + "decimals": 18, + "name": "A3S", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0xb0ecc6ac0073c063dcfc026ccdc9039cae2998e1.png", + "aggregators": ["TraderJoe", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0xc72633f995e98ac3bb8a89e6a9c4af335c3d6e44": { + "address": "0xc72633f995e98ac3bb8a89e6a9c4af335c3d6e44", + "symbol": "OSEA", + "decimals": 18, + "name": "Omnisea", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0xc72633f995e98ac3bb8a89e6a9c4af335c3d6e44.png", + "aggregators": ["TraderJoe", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0xc8ccbd97b96834b976c995a67bf46e5754e2c48e": { + "address": "0xc8ccbd97b96834b976c995a67bf46e5754e2c48e", + "symbol": "PLX", + "decimals": 18, + "name": "Parallax Token", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0xc8ccbd97b96834b976c995a67bf46e5754e2c48e.png", + "aggregators": ["TraderJoe", "Socket", "Rubic", "Rango"], + "occurrences": 4 + }, + "0xf50874f8246776ca4b89eef471e718f70f38458f": { + "address": "0xf50874f8246776ca4b89eef471e718f70f38458f", + "symbol": "ARBS", + "decimals": 18, + "name": "Arbswap", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0xf50874f8246776ca4b89eef471e718f70f38458f.png", + "aggregators": ["TraderJoe", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0xf8388c2b6edf00e2e27eef5200b1befb24ce141d": { + "address": "0xf8388c2b6edf00e2e27eef5200b1befb24ce141d", + "symbol": "NOLA", + "decimals": 18, + "name": "Nola", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0xf8388c2b6edf00e2e27eef5200b1befb24ce141d.png", + "aggregators": ["TraderJoe", "Rubic", "Rango", "SushiSwap"], + "occurrences": 4 + }, + "0xd22a58f79e9481d1a88e00c343885a588b34b68b": { + "address": "0xd22a58f79e9481d1a88e00c343885a588b34b68b", + "symbol": "EURS", + "decimals": 2, + "name": "STASIS EURS Token", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0xd22a58f79e9481d1a88e00c343885a588b34b68b.png", + "aggregators": ["1inch", "LiFi", "Socket", "Rubic"], + "occurrences": 4 + }, + "0x1ddcaa4ed761428ae348befc6718bcb12e63bfaa": { + "address": "0x1ddcaa4ed761428ae348befc6718bcb12e63bfaa", + "symbol": "DEUSDC", + "decimals": 6, + "name": "DEUSDC", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0x1ddcaa4ed761428ae348befc6718bcb12e63bfaa.png", + "aggregators": ["1inch", "LiFi", "Rubic", "Rango"], + "occurrences": 4 + }, + "0xe3b3fe7bca19ca77ad877a5bebab186becfad906": { + "address": "0xe3b3fe7bca19ca77ad877a5bebab186becfad906", + "symbol": "SFRAX", + "decimals": 18, + "name": "Staked FRAX", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0xe3b3fe7bca19ca77ad877a5bebab186becfad906.png", + "aggregators": ["LiFi", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0xca5d8f8a8d49439357d3cf46ca2e720702f132b8": { + "address": "0xca5d8f8a8d49439357d3cf46ca2e720702f132b8", + "symbol": "GYD", + "decimals": 18, + "name": "Gyroscope GYD", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0xca5d8f8a8d49439357d3cf46ca2e720702f132b8.png", + "aggregators": ["LiFi", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0x6cc5b1fb8c2fd7af1d2858f916f274b8faac82e1": { + "address": "0x6cc5b1fb8c2fd7af1d2858f916f274b8faac82e1", + "symbol": "OJA", + "decimals": 18, + "name": "Ojamu Token", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0x6cc5b1fb8c2fd7af1d2858f916f274b8faac82e1.png", + "aggregators": ["LiFi", "Socket", "Rubic", "Rango"], + "occurrences": 4 + }, + "0x130096af9163b185cae4a833f856760199fc6ceb": { + "address": "0x130096af9163b185cae4a833f856760199fc6ceb", + "symbol": "FU", + "decimals": 18, + "name": "FU Money", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0x130096af9163b185cae4a833f856760199fc6ceb.png", + "aggregators": ["LiFi", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0x73700aecfc4621e112304b6edc5ba9e36d7743d3": { + "address": "0x73700aecfc4621e112304b6edc5ba9e36d7743d3", + "symbol": "LQETH", + "decimals": 18, + "name": "liquid ETH", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0x73700aecfc4621e112304b6edc5ba9e36d7743d3.png", + "aggregators": ["LiFi", "Rubic", "Rango", "SushiSwap"], + "occurrences": 4 + }, + "0x5375616bb6c52a90439ff96882a986d8fcdce421": { + "address": "0x5375616bb6c52a90439ff96882a986d8fcdce421", + "symbol": "JGOHM", + "decimals": 18, + "name": "Jones gOHM", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0x5375616bb6c52a90439ff96882a986d8fcdce421.png", + "aggregators": ["LiFi", "Rubic", "Rango", "SushiSwap"], + "occurrences": 4 + }, + "0x68ead55c258d6fa5e46d67fc90f53211eab885be": { + "address": "0x68ead55c258d6fa5e46d67fc90f53211eab885be", + "symbol": "POP", + "decimals": 18, + "name": "Popcorn", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0x68ead55c258d6fa5e46d67fc90f53211eab885be.png", + "aggregators": ["LiFi", "Socket", "Rubic", "Rango"], + "occurrences": 4 + }, + "0x8ffd9f31980f26fbf4ac693678db700f1d8c51f6": { + "address": "0x8ffd9f31980f26fbf4ac693678db700f1d8c51f6", + "symbol": "LSETH", + "decimals": 18, + "name": "Liquid Staked ETH", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0x8ffd9f31980f26fbf4ac693678db700f1d8c51f6.png", + "aggregators": ["LiFi", "Socket", "Rubic", "Rango"], + "occurrences": 4 + }, + "0xdbf31df14b66535af65aac99c32e9ea844e14501": { + "address": "0xdbf31df14b66535af65aac99c32e9ea844e14501", + "symbol": "RENBTC", + "decimals": 8, + "name": "RENBTC", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0xdbf31df14b66535af65aac99c32e9ea844e14501.png", + "aggregators": ["LiFi", "Socket", "Rubic", "Rango"], + "occurrences": 4 + }, + "0x5db7b150c5f38c5f5db11dcbdb885028fcc51d68": { + "address": "0x5db7b150c5f38c5f5db11dcbdb885028fcc51d68", + "symbol": "STR", + "decimals": 18, + "name": "Sterling", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0x5db7b150c5f38c5f5db11dcbdb885028fcc51d68.png", + "aggregators": ["LiFi", "Socket", "Rubic", "Rango"], + "occurrences": 4 + }, + "0x7dd747d63b094971e6638313a6a2685e80c7fb2e": { + "address": "0x7dd747d63b094971e6638313a6a2685e80c7fb2e", + "symbol": "STFX", + "decimals": 18, + "name": "STFX", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0x7dd747d63b094971e6638313a6a2685e80c7fb2e.png", + "aggregators": ["LiFi", "Socket", "Rubic", "Rango"], + "occurrences": 4 + }, + "0x1f6fa7a58701b3773b08a1a16d06b656b0eccb23": { + "address": "0x1f6fa7a58701b3773b08a1a16d06b656b0eccb23", + "symbol": "JRDPX", + "decimals": 18, + "name": "Jones rDPX", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0x1f6fa7a58701b3773b08a1a16d06b656b0eccb23.png", + "aggregators": ["LiFi", "Rubic", "Rango", "SushiSwap"], + "occurrences": 4 + }, + "0x369eb8197062093a20402935d3a707b4ae414e9d": { + "address": "0x369eb8197062093a20402935d3a707b4ae414e9d", + "symbol": "PANA", + "decimals": 18, + "name": "Pana DAO", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0x369eb8197062093a20402935d3a707b4ae414e9d.png", + "aggregators": ["LiFi", "Rubic", "Rango", "SushiSwap"], + "occurrences": 4 + }, + "0x8ec1877698acf262fe8ad8a295ad94d6ea258988": { + "address": "0x8ec1877698acf262fe8ad8a295ad94d6ea258988", + "symbol": "DUSD", + "decimals": 18, + "name": "Davos.xyz USD", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0x8ec1877698acf262fe8ad8a295ad94d6ea258988.png", + "aggregators": ["Socket", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0xcb58418aa51ba525aef0fe474109c0354d844b7c": { + "address": "0xcb58418aa51ba525aef0fe474109c0354d844b7c", + "symbol": "ICE", + "decimals": 18, + "name": "Ice Token", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0xcb58418aa51ba525aef0fe474109c0354d844b7c.png", + "aggregators": ["Socket", "Rubic", "Rango", "SushiSwap"], + "occurrences": 4 + }, + "0x1a7bd9edc36fb2b3c0852bcd7438c2a957fd7ad5": { + "address": "0x1a7bd9edc36fb2b3c0852bcd7438c2a957fd7ad5", + "symbol": "AMOON", + "decimals": 9, + "name": "ArbiMoon", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0x1a7bd9edc36fb2b3c0852bcd7438c2a957fd7ad5.png", + "aggregators": ["Socket", "Rubic", "Rango", "SushiSwap"], + "occurrences": 4 + }, + "0x255f1b39172f65dc6406b8bee8b08155c45fe1b6": { + "address": "0x255f1b39172f65dc6406b8bee8b08155c45fe1b6", + "symbol": "HARAMBE", + "decimals": 18, + "name": "HarambeCoin", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0x255f1b39172f65dc6406b8bee8b08155c45fe1b6.png", + "aggregators": ["Socket", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0x2c650dab03a59332e2e0c0c4a7f726913e5028c1": { + "address": "0x2c650dab03a59332e2e0c0c4a7f726913e5028c1", + "symbol": "TAP", + "decimals": 18, + "name": "TapToken", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0x2c650dab03a59332e2e0c0c4a7f726913e5028c1.png", + "aggregators": ["Socket", "Rubic", "Rango", "SushiSwap"], + "occurrences": 4 + }, + "0xf0b5ceefc89684889e5f7e0a7775bd100fcd3709": { + "address": "0xf0b5ceefc89684889e5f7e0a7775bd100fcd3709", + "symbol": "DUSD", + "decimals": 6, + "name": "DigitalDollar", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0xf0b5ceefc89684889e5f7e0a7775bd100fcd3709.png", + "aggregators": ["Socket", "Rubic", "Rango", "SushiSwap"], + "occurrences": 4 + }, + "0xf7428ffcb2581a2804998efbb036a43255c8a8d3": { + "address": "0xf7428ffcb2581a2804998efbb036a43255c8a8d3", + "symbol": "SSPELL", + "decimals": 18, + "name": "Staked Spell Token", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0xf7428ffcb2581a2804998efbb036a43255c8a8d3.png", + "aggregators": ["Socket", "Rubic", "Rango", "SushiSwap"], + "occurrences": 4 + }, + "0x78055daa07035aa5ebc3e5139c281ce6312e1b22": { + "address": "0x78055daa07035aa5ebc3e5139c281ce6312e1b22", + "symbol": "PPEGG", + "decimals": 18, + "name": "Parrot Egg", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0x78055daa07035aa5ebc3e5139c281ce6312e1b22.png", + "aggregators": ["Socket", "Rubic", "Rango", "SushiSwap"], + "occurrences": 4 + }, + "0x9f20de1fc9b161b34089cbeae888168b44b03461": { + "address": "0x9f20de1fc9b161b34089cbeae888168b44b03461", + "symbol": "ARBIS", + "decimals": 18, + "name": "Arbis", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0x9f20de1fc9b161b34089cbeae888168b44b03461.png", + "aggregators": ["Socket", "Rubic", "Rango", "SushiSwap"], + "occurrences": 4 + }, + "0xa2f9ecf83a48b86265ff5fd36cdbaaa1f349916c": { + "address": "0xa2f9ecf83a48b86265ff5fd36cdbaaa1f349916c", + "symbol": "GOB", + "decimals": 18, + "name": "Goons of Balatroon", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0xa2f9ecf83a48b86265ff5fd36cdbaaa1f349916c.png", + "aggregators": ["Socket", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0xa54b8e178a49f8e5405a4d44bb31f496e5564a05": { + "address": "0xa54b8e178a49f8e5405a4d44bb31f496e5564a05", + "symbol": "PEPE", + "decimals": 18, + "name": "Pepe", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0xa54b8e178a49f8e5405a4d44bb31f496e5564a05.png", + "aggregators": ["Socket", "Rubic", "Rango", "SushiSwap"], + "occurrences": 4 + }, + "0x1a6b3a62391eccaaa992ade44cd4afe6bec8cff1": { + "address": "0x1a6b3a62391eccaaa992ade44cd4afe6bec8cff1", + "symbol": "UXLINK", + "decimals": 18, + "name": "UXLINK", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0x1a6b3a62391eccaaa992ade44cd4afe6bec8cff1.png", + "aggregators": ["Socket", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0x57f12fe6a4e5fe819eec699fadf9db2d06606bb4": { + "address": "0x57f12fe6a4e5fe819eec699fadf9db2d06606bb4", + "symbol": "NPM", + "decimals": 18, + "name": "Neptune Mutual", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0x57f12fe6a4e5fe819eec699fadf9db2d06606bb4.png", + "aggregators": ["Socket", "Rubic", "Rango", "SushiSwap"], + "occurrences": 4 + }, + "0xd1e094cabc5acb9d3b0599c3f76f2d01ff8d3563": { + "address": "0xd1e094cabc5acb9d3b0599c3f76f2d01ff8d3563", + "symbol": "VRSW", + "decimals": 18, + "name": "VirtuSwap", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0xd1e094cabc5acb9d3b0599c3f76f2d01ff8d3563.png", + "aggregators": ["Socket", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0xb52bd62ee0cf462fa9ccbda4bf27fe84d9ab6cf7": { + "address": "0xb52bd62ee0cf462fa9ccbda4bf27fe84d9ab6cf7", + "symbol": "SAIL", + "decimals": 18, + "name": "SAIL Token", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0xb52bd62ee0cf462fa9ccbda4bf27fe84d9ab6cf7.png", + "aggregators": ["Rubic", "Rango", "Sonarwatch", "SushiSwap"], + "occurrences": 4 + }, + "0x662d0f9ff837a51cf89a1fe7e0882a906dac08a3": { + "address": "0x662d0f9ff837a51cf89a1fe7e0882a906dac08a3", + "symbol": "JETH", + "decimals": 18, + "name": "Jones ETH", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0x662d0f9ff837a51cf89a1fe7e0882a906dac08a3.png", + "aggregators": ["Rubic", "Squid", "Rango", "SushiSwap"], + "occurrences": 4 + }, + "0x51707dc661630f8fd624b985fa6ef4f1d4d919db": { + "address": "0x51707dc661630f8fd624b985fa6ef4f1d4d919db", + "symbol": "UNV", + "decimals": 18, + "name": "Unvest", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0x51707dc661630f8fd624b985fa6ef4f1d4d919db.png", + "aggregators": ["Rubic", "Squid", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0x1db06f39c14d813d7b1ccb275a93f5b052de1cac": { + "address": "0x1db06f39c14d813d7b1ccb275a93f5b052de1cac", + "symbol": "XAV", + "decimals": 18, + "name": "Xave", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0x1db06f39c14d813d7b1ccb275a93f5b052de1cac.png", + "aggregators": ["Rubic", "Squid", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0xc7def82ba77baf30bbbc9b6162dc075b49092fb4": { + "address": "0xc7def82ba77baf30bbbc9b6162dc075b49092fb4", + "symbol": "ATH", + "decimals": 18, + "name": "Aethir Token", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0xc7def82ba77baf30bbbc9b6162dc075b49092fb4.png", + "aggregators": ["UniswapLabs", "LiFi", "Rango"], + "occurrences": 3 + }, + "0x37058c4b45fdfc8953fb453da4d6d83670ecdf9d": { + "address": "0x37058c4b45fdfc8953fb453da4d6d83670ecdf9d", + "symbol": "EV", + "decimals": 18, + "name": "Everything", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0x37058c4b45fdfc8953fb453da4d6d83670ecdf9d.png", + "aggregators": ["UniswapLabs", "LiFi", "Rango"], + "occurrences": 3 + }, + "0x68731d6f14b827bbcffbebb62b19daa18de1d79c": { + "address": "0x68731d6f14b827bbcffbebb62b19daa18de1d79c", + "symbol": "IDOS", + "decimals": 18, + "name": "IdOS", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0x68731d6f14b827bbcffbebb62b19daa18de1d79c.png", + "aggregators": ["CoinGecko", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x010700ab046dd8e92b0e3587842080df36364ed3": { + "address": "0x010700ab046dd8e92b0e3587842080df36364ed3", + "symbol": "K", + "decimals": 18, + "name": "Kinto", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0x010700ab046dd8e92b0e3587842080df36364ed3.png", + "aggregators": ["UniswapLabs", "LiFi", "Rubic"], + "occurrences": 3 + }, + "0xe390c0b46bd723995be02640e6f1e1c802f620ac": { + "address": "0xe390c0b46bd723995be02640e6f1e1c802f620ac", + "symbol": "MORPHO", + "decimals": 18, + "name": "Morpho Token", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0xe390c0b46bd723995be02640e6f1e1c802f620ac.png", + "aggregators": ["UniswapLabs", "LiFi", "Rango"], + "occurrences": 3 + }, + "0xe7bef5cc7750820516162f5f5b520e9aa510a466": { + "address": "0xe7bef5cc7750820516162f5f5b520e9aa510a466", + "symbol": "OKB", + "decimals": 18, + "name": "OKB", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0xe7bef5cc7750820516162f5f5b520e9aa510a466.png", + "aggregators": ["UniswapLabs", "LiFi", "Rango"], + "occurrences": 3 + }, + "0xac7ce9f2794e01c0d27b096c52f592e343d77cbf": { + "address": "0xac7ce9f2794e01c0d27b096c52f592e343d77cbf", + "symbol": "PIRATE", + "decimals": 18, + "name": "Pirate Nation", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0xac7ce9f2794e01c0d27b096c52f592e343d77cbf.png", + "aggregators": ["UniswapLabs", "LiFi", "Rango"], + "occurrences": 3 + }, + "0x73efdc761596328461b68e5fc58c3284cb15ba13": { + "address": "0x73efdc761596328461b68e5fc58c3284cb15ba13", + "symbol": "PLUME", + "decimals": 18, + "name": "Plume", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0x73efdc761596328461b68e5fc58c3284cb15ba13.png", + "aggregators": ["UniswapLabs", "LiFi", "Rango"], + "occurrences": 3 + }, + "0x6380f3d0c1412a80eb00f49064da30749db991de": { + "address": "0x6380f3d0c1412a80eb00f49064da30749db991de", + "symbol": "PORTAL", + "decimals": 18, + "name": "Portal", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0x6380f3d0c1412a80eb00f49064da30749db991de.png", + "aggregators": ["UniswapLabs", "LiFi", "Rango"], + "occurrences": 3 + }, + "0x3c45038f4807c5bb72f6bc72c2a2b9c012155e49": { + "address": "0x3c45038f4807c5bb72f6bc72c2a2b9c012155e49", + "symbol": "RAD", + "decimals": 18, + "name": "Radicle", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0x3c45038f4807c5bb72f6bc72c2a2b9c012155e49.png", + "aggregators": ["UniswapLabs", "LiFi", "Rango"], + "occurrences": 3 + }, + "0x7550de0a4b9fb8caba8c32e72ee356afdd217a33": { + "address": "0x7550de0a4b9fb8caba8c32e72ee356afdd217a33", + "symbol": "USD1", + "decimals": 18, + "name": "World Liberty Financial USD", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0x7550de0a4b9fb8caba8c32e72ee356afdd217a33.png", + "aggregators": ["UniswapLabs", "LiFi", "Rango"], + "occurrences": 3 + }, + "0x7639ab8599f1b417cbe4ced492fb30162140abbb": { + "address": "0x7639ab8599f1b417cbe4ced492fb30162140abbb", + "symbol": "USUAL", + "decimals": 18, + "name": "USUAL", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0x7639ab8599f1b417cbe4ced492fb30162140abbb.png", + "aggregators": ["UniswapLabs", "LiFi", "Rango"], + "occurrences": 3 + }, + "0x022cd1aed3f5cbfd7cf4481ac32847d62da746e6": { + "address": "0x022cd1aed3f5cbfd7cf4481ac32847d62da746e6", + "symbol": "VIRTUAL", + "decimals": 18, + "name": "Virtuals Protocol", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0x022cd1aed3f5cbfd7cf4481ac32847d62da746e6.png", + "aggregators": ["UniswapLabs", "LiFi", "Rango"], + "occurrences": 3 + }, + "0x4d1d7134b87490ae5eebdb22a5820d7d0e1980bf": { + "address": "0x4d1d7134b87490ae5eebdb22a5820d7d0e1980bf", + "symbol": "WLFI", + "decimals": 18, + "name": "World Liberty Financial", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0x4d1d7134b87490ae5eebdb22a5820d7d0e1980bf.png", + "aggregators": ["UniswapLabs", "LiFi", "Rango"], + "occurrences": 3 + }, + "0xd44e8f8768d4ed25119921a53802d8758a5b20dd": { + "address": "0xd44e8f8768d4ed25119921a53802d8758a5b20dd", + "symbol": "BOOST", + "decimals": 18, + "name": "Boost", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0xd44e8f8768d4ed25119921a53802d8758a5b20dd.png", + "aggregators": ["ArbitrumWhitelist", "Socket", "Rango"], + "occurrences": 3 + }, + "0xce32aa8d60807182c0003ef9cc1976fa10e5d312": { + "address": "0xce32aa8d60807182c0003ef9cc1976fa10e5d312", + "symbol": "ESS", + "decimals": 18, + "name": "Empty Set Share", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0xce32aa8d60807182c0003ef9cc1976fa10e5d312.png", + "aggregators": ["ArbitrumWhitelist", "Socket", "Rango"], + "occurrences": 3 + }, + "0x590020b1005b8b25f1a2c82c5f743c540dcfa24d": { + "address": "0x590020b1005b8b25f1a2c82c5f743c540dcfa24d", + "symbol": "GMX", + "decimals": 18, + "name": "GMX", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0x590020b1005b8b25f1a2c82c5f743c540dcfa24d.png", + "aggregators": ["ArbitrumWhitelist", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x52f5d9b3a2bb89d3aec5829a3415c21115acd633": { + "address": "0x52f5d9b3a2bb89d3aec5829a3415c21115acd633", + "symbol": "OCTO", + "decimals": 18, + "name": "Octo.fi", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0x52f5d9b3a2bb89d3aec5829a3415c21115acd633.png", + "aggregators": ["ArbitrumWhitelist", "Socket", "Rango"], + "occurrences": 3 + }, + "0x20f9628a485ebcc566622314f6e07e7ee61ff332": { + "address": "0x20f9628a485ebcc566622314f6e07e7ee61ff332", + "symbol": "SUM", + "decimals": 18, + "name": "SUM", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0x20f9628a485ebcc566622314f6e07e7ee61ff332.png", + "aggregators": ["ArbitrumWhitelist", "LiFi", "Rango"], + "occurrences": 3 + }, + "0xd5d3aa404d7562d09a848f96a8a8d5d65977bf90": { + "address": "0xd5d3aa404d7562d09a848f96a8a8d5d65977bf90", + "symbol": "UDT", + "decimals": 18, + "name": "Unlock Discount Token", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0xd5d3aa404d7562d09a848f96a8a8d5d65977bf90.png", + "aggregators": ["ArbitrumWhitelist", "LiFi", "Rango"], + "occurrences": 3 + }, + "0x2ed14d1788dfb780fd216706096aed018514eccd": { + "address": "0x2ed14d1788dfb780fd216706096aed018514eccd", + "symbol": "VOX", + "decimals": 18, + "name": "Vox.Finance", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0x2ed14d1788dfb780fd216706096aed018514eccd.png", + "aggregators": ["ArbitrumWhitelist", "Socket", "Rango"], + "occurrences": 3 + }, + "0x7ce42e8a5a42eb15f0c9a08ee9a079d99b1d83cf": { + "address": "0x7ce42e8a5a42eb15f0c9a08ee9a079d99b1d83cf", + "symbol": "GRANT", + "decimals": 18, + "name": "GrantiX Token", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0x7ce42e8a5a42eb15f0c9a08ee9a079d99b1d83cf.png", + "aggregators": ["CoinGecko", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x3572f8f8c2d8f4ec9469bb1c8573439c7500771e": { + "address": "0x3572f8f8c2d8f4ec9469bb1c8573439c7500771e", + "symbol": "KNOW", + "decimals": 18, + "name": "KNOW", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0x3572f8f8c2d8f4ec9469bb1c8573439c7500771e.png", + "aggregators": ["CoinGecko", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x747952a59292a9b3862f3c59664b95e8b461ef45": { + "address": "0x747952a59292a9b3862f3c59664b95e8b461ef45", + "symbol": "ARW", + "decimals": 18, + "name": "ARW", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0x747952a59292a9b3862f3c59664b95e8b461ef45.png", + "aggregators": ["CoinGecko", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x7629c1df323c8168cf15d4576b340ca74c811207": { + "address": "0x7629c1df323c8168cf15d4576b340ca74c811207", + "symbol": "TRI", + "decimals": 18, + "name": "Triumph", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0x7629c1df323c8168cf15d4576b340ca74c811207.png", + "aggregators": ["CoinGecko", "Rubic", "Squid"], + "occurrences": 3 + }, + "0x45940000009600102a1c002f0097c4a500fa00ab": { + "address": "0x45940000009600102a1c002f0097c4a500fa00ab", + "symbol": "HERMES", + "decimals": 18, + "name": "Hermes Protocol", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0x45940000009600102a1c002f0097c4a500fa00ab.png", + "aggregators": ["CoinGecko", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x15f7ad22caa786b1237b27d4324c7e4a93c5e66b": { + "address": "0x15f7ad22caa786b1237b27d4324c7e4a93c5e66b", + "symbol": "ATVUSDC", + "decimals": 18, + "name": "aarna atv USDC (Arbitrum)", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0x15f7ad22caa786b1237b27d4324c7e4a93c5e66b.png", + "aggregators": ["CoinGecko", "Rubic", "Rango"], + "occurrences": 3 + }, + "0xb1c3960aeeaf4c255a877da04b06487bba698386": { + "address": "0xb1c3960aeeaf4c255a877da04b06487bba698386", + "symbol": "BIC", + "decimals": 18, + "name": "Beincom", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0xb1c3960aeeaf4c255a877da04b06487bba698386.png", + "aggregators": ["CoinGecko", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x463913d3a3d3d291667d53b8325c598eb88d3b0e": { + "address": "0x463913d3a3d3d291667d53b8325c598eb88d3b0e", + "symbol": "SLIZ", + "decimals": 18, + "name": "SolidLizard", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0x463913d3a3d3d291667d53b8325c598eb88d3b0e.png", + "aggregators": ["CoinGecko", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x90a2a4c76b5d8c0bc892a69ea28aa775a8f2dd48": { + "address": "0x90a2a4c76b5d8c0bc892a69ea28aa775a8f2dd48", + "symbol": "SPYX", + "decimals": 18, + "name": "SPYX", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0x90a2a4c76b5d8c0bc892a69ea28aa775a8f2dd48.png", + "aggregators": ["CoinGecko", "Rubic", "Rango"], + "occurrences": 3 + }, + "0xe061aa40be525a13296cb4bf69f513242349d708": { + "address": "0xe061aa40be525a13296cb4bf69f513242349d708", + "symbol": "XVGARB", + "decimals": 18, + "name": "XVGARB", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0xe061aa40be525a13296cb4bf69f513242349d708.png", + "aggregators": ["CoinGecko", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x88b8d272b9f1bab7d7896f5f88f8825ce14b05bd": { + "address": "0x88b8d272b9f1bab7d7896f5f88f8825ce14b05bd", + "symbol": "ROGUE", + "decimals": 18, + "name": "Rogue", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0x88b8d272b9f1bab7d7896f5f88f8825ce14b05bd.png", + "aggregators": ["CoinGecko", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x113a05170273e9087f5d0e0cdee0388478a1546d": { + "address": "0x113a05170273e9087f5d0e0cdee0388478a1546d", + "symbol": "YFLOW", + "decimals": 18, + "name": "Yieldflow", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0x113a05170273e9087f5d0e0cdee0388478a1546d.png", + "aggregators": ["CoinGecko", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x4debfb9ed639144cf1e401674af361ffffcefb58": { + "address": "0x4debfb9ed639144cf1e401674af361ffffcefb58", + "symbol": "CADAI", + "decimals": 18, + "name": "CADAICO", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0x4debfb9ed639144cf1e401674af361ffffcefb58.png", + "aggregators": ["CoinGecko", "Rubic", "Rango"], + "occurrences": 3 + }, + "0xe1a6bda42fbafae38607598386a1050613c1a64b": { + "address": "0xe1a6bda42fbafae38607598386a1050613c1a64b", + "symbol": "ATV111", + "decimals": 18, + "name": "aarna atv111 (Arbitrum)", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0xe1a6bda42fbafae38607598386a1050613c1a64b.png", + "aggregators": ["CoinGecko", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x87ca1ac7697c1240518b464b02e92a856d81aee1": { + "address": "0x87ca1ac7697c1240518b464b02e92a856d81aee1", + "symbol": "AHTR", + "decimals": 18, + "name": "a-Hathor", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0x87ca1ac7697c1240518b464b02e92a856d81aee1.png", + "aggregators": ["CoinGecko", "Rubic", "Rango"], + "occurrences": 3 + }, + "0xcec3ba7029d54d005275d3510960cfe433811c59": { + "address": "0xcec3ba7029d54d005275d3510960cfe433811c59", + "symbol": "NERI", + "decimals": 18, + "name": "Nerite", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0xcec3ba7029d54d005275d3510960cfe433811c59.png", + "aggregators": ["CoinGecko", "Rubic", "Rango"], + "occurrences": 3 + }, + "0xb14448b48452d7ba076abeb3c505fc044deaf4e9": { + "address": "0xb14448b48452d7ba076abeb3c505fc044deaf4e9", + "symbol": "UNITE", + "decimals": 4, + "name": "Unbound Science", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0xb14448b48452d7ba076abeb3c505fc044deaf4e9.png", + "aggregators": ["CoinGecko", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x8c1ea32448e09a59f36595abec6207c9ebd590a2": { + "address": "0x8c1ea32448e09a59f36595abec6207c9ebd590a2", + "symbol": "PLUTUS", + "decimals": 18, + "name": "Plutus", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0x8c1ea32448e09a59f36595abec6207c9ebd590a2.png", + "aggregators": ["CoinGecko", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x3e76bb02286bfeaa89dd35f11253f2cbce634f91": { + "address": "0x3e76bb02286bfeaa89dd35f11253f2cbce634f91", + "symbol": "PGOLD", + "decimals": 18, + "name": "Pleasing Gold", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0x3e76bb02286bfeaa89dd35f11253f2cbce634f91.png", + "aggregators": ["CoinGecko", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x2380f2673c640fb67e2d6b55b44c62f0e0e69da9": { + "address": "0x2380f2673c640fb67e2d6b55b44c62f0e0e69da9", + "symbol": "GLDX", + "decimals": 18, + "name": "GLDX", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0x2380f2673c640fb67e2d6b55b44c62f0e0e69da9.png", + "aggregators": ["CoinGecko", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x894341be568eae3697408c420f1d0acfce6e55f9": { + "address": "0x894341be568eae3697408c420f1d0acfce6e55f9", + "symbol": "FUSD", + "decimals": 18, + "name": "FUSD", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0x894341be568eae3697408c420f1d0acfce6e55f9.png", + "aggregators": ["CoinGecko", "Rubic", "Rango"], + "occurrences": 3 + }, + "0xa753a7395cae905cd615da0b82a53e0560f250af": { + "address": "0xa753a7395cae905cd615da0b82a53e0560f250af", + "symbol": "QQQX", + "decimals": 18, + "name": "QQQX", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0xa753a7395cae905cd615da0b82a53e0560f250af.png", + "aggregators": ["CoinGecko", "Rubic", "Rango"], + "occurrences": 3 + }, + "0xd0e4fc5b430b0cac0f59b7b8b66d40d0b3f64a6b": { + "address": "0xd0e4fc5b430b0cac0f59b7b8b66d40d0b3f64a6b", + "symbol": "TRCR", + "decimals": 18, + "name": "TRCR", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0xd0e4fc5b430b0cac0f59b7b8b66d40d0b3f64a6b.png", + "aggregators": ["CoinGecko", "Rubic", "Rango"], + "occurrences": 3 + }, + "0xfdddb57878ef9d6f681ec4381dcb626b9e69ac86": { + "address": "0xfdddb57878ef9d6f681ec4381dcb626b9e69ac86", + "symbol": "TQQQX", + "decimals": 18, + "name": "TQQQX", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0xfdddb57878ef9d6f681ec4381dcb626b9e69ac86.png", + "aggregators": ["CoinGecko", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x0290a3256c939f3acb6ca5465154d94133dc5e02": { + "address": "0x0290a3256c939f3acb6ca5465154d94133dc5e02", + "symbol": "WC", + "decimals": 18, + "name": "Wildcard", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0x0290a3256c939f3acb6ca5465154d94133dc5e02.png", + "aggregators": ["CoinGecko", "Rubic", "Rango"], + "occurrences": 3 + }, + "0xc8fb643d18f1e53698cfda5c8fdf0cdc03c1dbec": { + "address": "0xc8fb643d18f1e53698cfda5c8fdf0cdc03c1dbec", + "symbol": "PUSD", + "decimals": 18, + "name": "Pleasing USD", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0xc8fb643d18f1e53698cfda5c8fdf0cdc03c1dbec.png", + "aggregators": ["CoinGecko", "Rubic", "Rango"], + "occurrences": 3 + }, + "0xe22865a7820823e27d6c630b15711b070cbd0d57": { + "address": "0xe22865a7820823e27d6c630b15711b070cbd0d57", + "symbol": "DESK", + "decimals": 18, + "name": "DESK", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0xe22865a7820823e27d6c630b15711b070cbd0d57.png", + "aggregators": ["CoinGecko", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x8a23fa9ca68226a1ea9fb2df42b9e87a1728381e": { + "address": "0x8a23fa9ca68226a1ea9fb2df42b9e87a1728381e", + "symbol": "AZEN", + "decimals": 18, + "name": "AZEN", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0x8a23fa9ca68226a1ea9fb2df42b9e87a1728381e.png", + "aggregators": ["CoinGecko", "Rubic", "Rango"], + "occurrences": 3 + }, + "0xe16e2548a576ad448fb014bbe85284d7f3542df5": { + "address": "0xe16e2548a576ad448fb014bbe85284d7f3542df5", + "symbol": "MOZ", + "decimals": 18, + "name": "Lumoz token", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0xe16e2548a576ad448fb014bbe85284d7f3542df5.png", + "aggregators": ["CoinGecko", "Rubic", "Rango"], + "occurrences": 3 + }, + "0xbd730e618bcd88c82ddee52e10275cf2f88a4777": { + "address": "0xbd730e618bcd88c82ddee52e10275cf2f88a4777", + "symbol": "VTIX", + "decimals": 18, + "name": "VTIX", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0xbd730e618bcd88c82ddee52e10275cf2f88a4777.png", + "aggregators": ["CoinGecko", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x077574441c4f8763a37a2cfee2ecb444aa60a15e": { + "address": "0x077574441c4f8763a37a2cfee2ecb444aa60a15e", + "symbol": "RCADE", + "decimals": 18, + "name": "RCADE", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0x077574441c4f8763a37a2cfee2ecb444aa60a15e.png", + "aggregators": ["CoinGecko", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x0b3547cd0e14e7d42f8921b0c370fdfd708bff6c": { + "address": "0x0b3547cd0e14e7d42f8921b0c370fdfd708bff6c", + "symbol": "MRLN", + "decimals": 18, + "name": "Merlin Token", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0x0b3547cd0e14e7d42f8921b0c370fdfd708bff6c.png", + "aggregators": ["CoinGecko", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x44f49ff0da2498bcb1d3dc7c0f999578f67fd8c6": { + "address": "0x44f49ff0da2498bcb1d3dc7c0f999578f67fd8c6", + "symbol": "CORN", + "decimals": 18, + "name": "Corn", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0x44f49ff0da2498bcb1d3dc7c0f999578f67fd8c6.png", + "aggregators": ["CoinGecko", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x1f53b7aa6f4b36b7dfdedb4bc4a14747a19cf7b1": { + "address": "0x1f53b7aa6f4b36b7dfdedb4bc4a14747a19cf7b1", + "symbol": "APU", + "decimals": 18, + "name": "APU", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0x1f53b7aa6f4b36b7dfdedb4bc4a14747a19cf7b1.png", + "aggregators": ["CoinGecko", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x4933a85b5b5466fbaf179f72d3de273c287ec2c2": { + "address": "0x4933a85b5b5466fbaf179f72d3de273c287ec2c2", + "symbol": "EURAU", + "decimals": 6, + "name": "EURAU", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0x4933a85b5b5466fbaf179f72d3de273c287ec2c2.png", + "aggregators": ["CoinGecko", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x86856814e74456893cfc8946bedcbb472b5fa856": { + "address": "0x86856814e74456893cfc8946bedcbb472b5fa856", + "symbol": "GLDT", + "decimals": 8, + "name": "GLDT", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0x86856814e74456893cfc8946bedcbb472b5fa856.png", + "aggregators": ["CoinGecko", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x00312400303d02c323295f6e8b7309bc30fb6bce": { + "address": "0x00312400303d02c323295f6e8b7309bc30fb6bce", + "symbol": "ERA", + "decimals": 18, + "name": "ERA", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0x00312400303d02c323295f6e8b7309bc30fb6bce.png", + "aggregators": ["CoinGecko", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x99f70a0e1786402a6796c6b0aa997ef340a5c6da": { + "address": "0x99f70a0e1786402a6796c6b0aa997ef340a5c6da", + "symbol": "SPKCC", + "decimals": 5, + "name": "SPKCC", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0x99f70a0e1786402a6796c6b0aa997ef340a5c6da.png", + "aggregators": ["CoinGecko", "Rubic", "Rango"], + "occurrences": 3 + }, + "0xdefa1d21c5f1cbeac00eeb54b44c7d86467cc3a3": { + "address": "0xdefa1d21c5f1cbeac00eeb54b44c7d86467cc3a3", + "symbol": "ALMANAK", + "decimals": 18, + "name": "ALMANAK", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0xdefa1d21c5f1cbeac00eeb54b44c7d86467cc3a3.png", + "aggregators": ["CoinGecko", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x76ce01f0ef25aa66cc5f1e546a005e4a63b25609": { + "address": "0x76ce01f0ef25aa66cc5f1e546a005e4a63b25609", + "symbol": "REUSD", + "decimals": 18, + "name": "REUSD", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0x76ce01f0ef25aa66cc5f1e546a005e4a63b25609.png", + "aggregators": ["CoinGecko", "Rubic", "Rango"], + "occurrences": 3 + }, + "0xb638f8eb4f242eb1883de8553998aa89624e9e81": { + "address": "0xb638f8eb4f242eb1883de8553998aa89624e9e81", + "symbol": "VNX", + "decimals": 9, + "name": "VNX", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0xb638f8eb4f242eb1883de8553998aa89624e9e81.png", + "aggregators": ["CoinGecko", "Rubic", "Rango"], + "occurrences": 3 + }, + "0xaaa0008c8cf3a7dca931adaf04336a5d808c82cc": { + "address": "0xaaa0008c8cf3a7dca931adaf04336a5d808c82cc", + "symbol": "DEJAAA", + "decimals": 18, + "name": "DeFi Janus Henderson Anemoy AAA CLO Fund", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0xaaa0008c8cf3a7dca931adaf04336a5d808c82cc.png", + "aggregators": ["CoinGecko", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x8d010bf9c26881788b4e6bf5fd1bdc358c8f90b8": { + "address": "0x8d010bf9c26881788b4e6bf5fd1bdc358c8f90b8", + "symbol": "DOT", + "decimals": 18, + "name": "Polkadot", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0x8d010bf9c26881788b4e6bf5fd1bdc358c8f90b8.png", + "aggregators": ["CoinGecko", "Rubic", "Rango"], + "occurrences": 3 + }, + "0xdd73ea766b80417c0607a3f08e34a0c415d89d56": { + "address": "0xdd73ea766b80417c0607a3f08e34a0c415d89d56", + "symbol": "WEUSD", + "decimals": 6, + "name": "WEUSD", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0xdd73ea766b80417c0607a3f08e34a0c415d89d56.png", + "aggregators": ["CoinGecko", "Rubic", "Rango"], + "occurrences": 3 + }, + "0xe7e7e741c23a4767831a56a8c99f522c5ac1e7e7": { + "address": "0xe7e7e741c23a4767831a56a8c99f522c5ac1e7e7", + "symbol": "EV", + "decimals": 18, + "name": "Everything", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0xe7e7e741c23a4767831a56a8c99f522c5ac1e7e7.png", + "aggregators": ["CoinGecko", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x2f9a35ab5ddfbc49927bfdeab98a86c53dc6e763": { + "address": "0x2f9a35ab5ddfbc49927bfdeab98a86c53dc6e763", + "symbol": "AMBRX", + "decimals": 18, + "name": "AMBRX", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0x2f9a35ab5ddfbc49927bfdeab98a86c53dc6e763.png", + "aggregators": ["CoinGecko", "Rubic", "Rango"], + "occurrences": 3 + }, + "0xa0a675d08ca63066f48408136f8a71fc65be4afc": { + "address": "0xa0a675d08ca63066f48408136f8a71fc65be4afc", + "symbol": "BZR", + "decimals": 18, + "name": "Bazaars", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0xa0a675d08ca63066f48408136f8a71fc65be4afc.png", + "aggregators": ["CoinGecko", "Rubic", "Rango"], + "occurrences": 3 + }, + "0xe72fe64840f4ef80e3ec73a1c749491b5c938cb9": { + "address": "0xe72fe64840f4ef80e3ec73a1c749491b5c938cb9", + "symbol": "NTBILL", + "decimals": 6, + "name": "NTBILL", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0xe72fe64840f4ef80e3ec73a1c749491b5c938cb9.png", + "aggregators": ["CoinGecko", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x2e412435928efe43b156caa8f4b1068729fee275": { + "address": "0x2e412435928efe43b156caa8f4b1068729fee275", + "symbol": "KING", + "decimals": 18, + "name": "KING", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0x2e412435928efe43b156caa8f4b1068729fee275.png", + "aggregators": ["CoinGecko", "Rubic", "Rango"], + "occurrences": 3 + }, + "0xa58663faef461761e44066ea26c1fcddf2927b80": { + "address": "0xa58663faef461761e44066ea26c1fcddf2927b80", + "symbol": "KOM", + "decimals": 8, + "name": "Kommunitas", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0xa58663faef461761e44066ea26c1fcddf2927b80.png", + "aggregators": ["TraderJoe", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x93c9932e4afa59201f0b5e63f7d816516f1669fe": { + "address": "0x93c9932e4afa59201f0b5e63f7d816516f1669fe", + "symbol": "FDUSD", + "decimals": 18, + "name": "FDUSD", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0x93c9932e4afa59201f0b5e63f7d816516f1669fe.png", + "aggregators": ["CoinGecko", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x5e817f2abccb9095585d26c2a3ce234a440574fc": { + "address": "0x5e817f2abccb9095585d26c2a3ce234a440574fc", + "symbol": "FRNT", + "decimals": 6, + "name": "Frontier Stable Token", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0x5e817f2abccb9095585d26c2a3ce234a440574fc.png", + "aggregators": ["CoinGecko", "Rubic", "Rango"], + "occurrences": 3 + }, + "0xecc5f868add75f4ff9fd00bbbde12c35ba2c9c89": { + "address": "0xecc5f868add75f4ff9fd00bbbde12c35ba2c9c89", + "symbol": "BOB", + "decimals": 8, + "name": "BOB", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0xecc5f868add75f4ff9fd00bbbde12c35ba2c9c89.png", + "aggregators": ["CoinGecko", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x521860bb5df5468358875266b89bfe90d990c6e7": { + "address": "0x521860bb5df5468358875266b89bfe90d990c6e7", + "symbol": "DFDVX", + "decimals": 18, + "name": "DFDVX", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0x521860bb5df5468358875266b89bfe90d990c6e7.png", + "aggregators": ["CoinGecko", "Rubic", "Rango"], + "occurrences": 3 + }, + "0xfebded1b0986a8ee107f5ab1a1c5a813491deceb": { + "address": "0xfebded1b0986a8ee107f5ab1a1c5a813491deceb", + "symbol": "CRCLX", + "decimals": 18, + "name": "CRCLX", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0xfebded1b0986a8ee107f5ab1a1c5a813491deceb.png", + "aggregators": ["CoinGecko", "Rubic", "Rango"], + "occurrences": 3 + }, + "0xd4423795fd904d9b87554940a95fb7016f172773": { + "address": "0xd4423795fd904d9b87554940a95fb7016f172773", + "symbol": "AIN", + "decimals": 18, + "name": "AIN", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0xd4423795fd904d9b87554940a95fb7016f172773.png", + "aggregators": ["CoinGecko", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x97e66d3c4d5bcd7c64e3e55af28544c9addf9281": { + "address": "0x97e66d3c4d5bcd7c64e3e55af28544c9addf9281", + "symbol": "CAPX", + "decimals": 18, + "name": "Capx", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0x97e66d3c4d5bcd7c64e3e55af28544c9addf9281.png", + "aggregators": ["CoinGecko", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x139450c2dcef827c9a2a0bb1cb5506260940c9fd": { + "address": "0x139450c2dcef827c9a2a0bb1cb5506260940c9fd", + "symbol": "SSUPERUSD", + "decimals": 6, + "name": "SSUPERUSD", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0x139450c2dcef827c9a2a0bb1cb5506260940c9fd.png", + "aggregators": ["CoinGecko", "Rubic", "Rango"], + "occurrences": 3 + }, + "0xa891b374942cde9061e044c1d19c5b5de06a68e1": { + "address": "0xa891b374942cde9061e044c1d19c5b5de06a68e1", + "symbol": "KAI", + "decimals": 18, + "name": "KAI", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0xa891b374942cde9061e044c1d19c5b5de06a68e1.png", + "aggregators": ["CoinGecko", "Rubic", "Rango"], + "occurrences": 3 + }, + "0xd4dd9e2f021bb459d5a5f6c24c12fe09c5d45553": { + "address": "0xd4dd9e2f021bb459d5a5f6c24c12fe09c5d45553", + "symbol": "ZCHF", + "decimals": 18, + "name": "ZCHF", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0xd4dd9e2f021bb459d5a5f6c24c12fe09c5d45553.png", + "aggregators": ["CoinGecko", "Rubic", "Rango"], + "occurrences": 3 + }, + "0xf4f447e6afa04c9d11ef0e2fc0d7f19c24ee55de": { + "address": "0xf4f447e6afa04c9d11ef0e2fc0d7f19c24ee55de", + "symbol": "VYUSD", + "decimals": 18, + "name": "VYUSD", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0xf4f447e6afa04c9d11ef0e2fc0d7f19c24ee55de.png", + "aggregators": ["CoinGecko", "Rubic", "Rango"], + "occurrences": 3 + }, + "0xb4818bb69478730ef4e33cc068dd94278e2766cb": { + "address": "0xb4818bb69478730ef4e33cc068dd94278e2766cb", + "symbol": "SATUSD", + "decimals": 18, + "name": "SATUSD", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0xb4818bb69478730ef4e33cc068dd94278e2766cb.png", + "aggregators": ["CoinGecko", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x9b8df6e244526ab5f6e6400d331db28c8fdddb55": { + "address": "0x9b8df6e244526ab5f6e6400d331db28c8fdddb55", + "symbol": "USOL", + "decimals": 18, + "name": "Wrapped Solana (Universal)", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0x9b8df6e244526ab5f6e6400d331db28c8fdddb55.png", + "aggregators": ["CoinGecko", "Rubic", "Rango"], + "occurrences": 3 + }, + "0xb0505e5a99abd03d94a1169e638b78edfed26ea4": { + "address": "0xb0505e5a99abd03d94a1169e638b78edfed26ea4", + "symbol": "USUI", + "decimals": 18, + "name": "Sui (Universal)", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0xb0505e5a99abd03d94a1169e638b78edfed26ea4.png", + "aggregators": ["CoinGecko", "Rubic", "Rango"], + "occurrences": 3 + }, + "0xe333e7754a2dc1e020a162ecab019254b9dab653": { + "address": "0xe333e7754a2dc1e020a162ecab019254b9dab653", + "symbol": "XSGD", + "decimals": 6, + "name": "XSGD", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0xe333e7754a2dc1e020a162ecab019254b9dab653.png", + "aggregators": ["CoinGecko", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x2615a94df961278dcbc41fb0a54fec5f10a693ae": { + "address": "0x2615a94df961278dcbc41fb0a54fec5f10a693ae", + "symbol": "UXRP", + "decimals": 18, + "name": "Wrapped XRP (Universal)", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0x2615a94df961278dcbc41fb0a54fec5f10a693ae.png", + "aggregators": ["CoinGecko", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x11bf4f05eb28b802ed3ab672594decb20ffe2313": { + "address": "0x11bf4f05eb28b802ed3ab672594decb20ffe2313", + "symbol": "AURY", + "decimals": 9, + "name": "Aury", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0x11bf4f05eb28b802ed3ab672594decb20ffe2313.png", + "aggregators": ["TraderJoe", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x1a5b0aaf478bf1fda7b934c76e7692d722982a6d": { + "address": "0x1a5b0aaf478bf1fda7b934c76e7692d722982a6d", + "symbol": "BFR", + "decimals": 18, + "name": "Buffer Token", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0x1a5b0aaf478bf1fda7b934c76e7692d722982a6d.png", + "aggregators": ["TraderJoe", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x27d8de4c30ffde34e982482ae504fc7f23061f61": { + "address": "0x27d8de4c30ffde34e982482ae504fc7f23061f61", + "symbol": "MMT", + "decimals": 18, + "name": "MyMetaTrader Token", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0x27d8de4c30ffde34e982482ae504fc7f23061f61.png", + "aggregators": ["TraderJoe", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x4aa81d7ab59c775fe6f9f45e6941a0fb8cd692a6": { + "address": "0x4aa81d7ab59c775fe6f9f45e6941a0fb8cd692a6", + "symbol": "MILKTIA", + "decimals": 6, + "name": "milkTIA", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0x4aa81d7ab59c775fe6f9f45e6941a0fb8cd692a6.png", + "aggregators": ["TraderJoe", "Rubic", "Squid"], + "occurrences": 3 + }, + "0xad4b9c1fbf4923061814dd9d5732eb703faa53d4": { + "address": "0xad4b9c1fbf4923061814dd9d5732eb703faa53d4", + "symbol": "WNT", + "decimals": 18, + "name": "Wicrypt Network Token", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0xad4b9c1fbf4923061814dd9d5732eb703faa53d4.png", + "aggregators": ["TraderJoe", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x03569cc076654f82679c4ba2124d64774781b01d": { + "address": "0x03569cc076654f82679c4ba2124d64774781b01d", + "symbol": "BOLD", + "decimals": 18, + "name": "BOLD", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0x03569cc076654f82679c4ba2124d64774781b01d.png", + "aggregators": ["LiFi", "Rubic", "Rango"], + "occurrences": 3 + }, + "0xa6d7d0e650aa40ffa42d845a354c12c2bc0ab15f": { + "address": "0xa6d7d0e650aa40ffa42d845a354c12c2bc0ab15f", + "symbol": "MMY", + "decimals": 18, + "name": "MMY", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0xa6d7d0e650aa40ffa42d845a354c12c2bc0ab15f.png", + "aggregators": ["LiFi", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x9efcfc5b49390fc3fb9b58607d2e89445bb380bf": { + "address": "0x9efcfc5b49390fc3fb9b58607d2e89445bb380bf", + "symbol": "ABCRAM", + "decimals": 18, + "name": "abcRAM", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0x9efcfc5b49390fc3fb9b58607d2e89445bb380bf.png", + "aggregators": ["LiFi", "Rubic", "Rango"], + "occurrences": 3 + }, + "0xa88a1ed0bac18727a615299ce5f557b8220a33d7": { + "address": "0xa88a1ed0bac18727a615299ce5f557b8220a33d7", + "symbol": "WCROTCH", + "decimals": 18, + "name": "WCrotch", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0xa88a1ed0bac18727a615299ce5f557b8220a33d7.png", + "aggregators": ["LiFi", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x4fb21b1dbd1da7616003ff3a8eb57aeab3d241f0": { + "address": "0x4fb21b1dbd1da7616003ff3a8eb57aeab3d241f0", + "symbol": "PACT", + "decimals": 18, + "name": "impactMarket", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0x4fb21b1dbd1da7616003ff3a8eb57aeab3d241f0.png", + "aggregators": ["Socket", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x8ed4191f81f1e1d24a8a1195267d024d9358c9d7": { + "address": "0x8ed4191f81f1e1d24a8a1195267d024d9358c9d7", + "symbol": "MAGNET", + "decimals": 18, + "name": "Magnethereum", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0x8ed4191f81f1e1d24a8a1195267d024d9358c9d7.png", + "aggregators": ["Socket", "Rubic", "SushiSwap"], + "occurrences": 3 + }, + "0xdb40357fbc1eb1038c5df94c1cd7b7fd3f434480": { + "address": "0xdb40357fbc1eb1038c5df94c1cd7b7fd3f434480", + "symbol": "SSDX", + "decimals": 18, + "name": "SpunkySDX", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0xdb40357fbc1eb1038c5df94c1cd7b7fd3f434480.png", + "aggregators": ["Socket", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x188fb5f5ae5bbe4154d5778f2bbb2fb985c94d25": { + "address": "0x188fb5f5ae5bbe4154d5778f2bbb2fb985c94d25", + "symbol": "OBX", + "decimals": 18, + "name": "OpenBlox", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0x188fb5f5ae5bbe4154d5778f2bbb2fb985c94d25.png", + "aggregators": ["Rubic", "Rango", "Sonarwatch"], + "occurrences": 3 + }, + "0x577fd586c9e6ba7f2e85e025d5824dbe19896656": { + "address": "0x577fd586c9e6ba7f2e85e025d5824dbe19896656", + "symbol": "SYNO", + "decimals": 18, + "name": "SYNO Finance", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0x577fd586c9e6ba7f2e85e025d5824dbe19896656.png", + "aggregators": ["Rubic", "Rango", "Sonarwatch"], + "occurrences": 3 + }, + "0xdc8184ba488e949815d4aafb35b3c56ad03b4179": { + "address": "0xdc8184ba488e949815d4aafb35b3c56ad03b4179", + "symbol": "ROSX", + "decimals": 18, + "name": "Roseon", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0xdc8184ba488e949815d4aafb35b3c56ad03b4179.png", + "aggregators": ["Rubic", "Rango", "Sonarwatch"], + "occurrences": 3 + }, + "0x43ab8f7d2a8dd4102ccea6b438f6d747b1b9f034": { + "address": "0x43ab8f7d2a8dd4102ccea6b438f6d747b1b9f034", + "symbol": "SVY", + "decimals": 18, + "name": "Savvy", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0x43ab8f7d2a8dd4102ccea6b438f6d747b1b9f034.png", + "aggregators": ["Rubic", "Rango", "SushiSwap"], + "occurrences": 3 + }, + "0x6b5b5eac259e883b484ed879d43dd4d616a90e65": { + "address": "0x6b5b5eac259e883b484ed879d43dd4d616a90e65", + "symbol": "KNOW", + "decimals": 18, + "name": "The Knowers", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0x6b5b5eac259e883b484ed879d43dd4d616a90e65.png", + "aggregators": ["Rubic", "Rango", "Sonarwatch"], + "occurrences": 3 + }, + "0x3858567501fbf030bd859ee831610fcc710319f4": { + "address": "0x3858567501fbf030bd859ee831610fcc710319f4", + "symbol": "NEXD", + "decimals": 18, + "name": "Nexade", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0x3858567501fbf030bd859ee831610fcc710319f4.png", + "aggregators": ["Rubic", "Rango", "Sonarwatch"], + "occurrences": 3 + }, + "0x7fb7ede54259cb3d4e1eaf230c7e2b1ffc951e9a": { + "address": "0x7fb7ede54259cb3d4e1eaf230c7e2b1ffc951e9a", + "symbol": "NUMA", + "decimals": 18, + "name": "Numa", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0x7fb7ede54259cb3d4e1eaf230c7e2b1ffc951e9a.png", + "aggregators": ["Rubic", "Rango", "Sonarwatch"], + "occurrences": 3 + }, + "0x16a500aec6c37f84447ef04e66c57cfc6254cf92": { + "address": "0x16a500aec6c37f84447ef04e66c57cfc6254cf92", + "symbol": "UMJA", + "decimals": 18, + "name": "Umoja", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0x16a500aec6c37f84447ef04e66c57cfc6254cf92.png", + "aggregators": ["Rubic", "Rango", "Sonarwatch"], + "occurrences": 3 + }, + "0x59debed8d46a0cb823d8be8b957add987ead39aa": { + "address": "0x59debed8d46a0cb823d8be8b957add987ead39aa", + "symbol": "QUACK", + "decimals": 18, + "name": "Quack Token", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0x59debed8d46a0cb823d8be8b957add987ead39aa.png", + "aggregators": ["Rubic", "Squid", "Rango"], + "occurrences": 3 + }, + "0x0bbf664d46becc28593368c97236faa0fb397595": { + "address": "0x0bbf664d46becc28593368c97236faa0fb397595", + "symbol": "KNOX", + "decimals": 18, + "name": "KNOX Dollar", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0x0bbf664d46becc28593368c97236faa0fb397595.png", + "aggregators": ["Rubic", "Rango", "Sonarwatch"], + "occurrences": 3 + }, + "0x8096ad3107715747361acefe685943bfb427c722": { + "address": "0x8096ad3107715747361acefe685943bfb427c722", + "symbol": "CVOL", + "decimals": 18, + "name": "Crypto Volatility Token", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0x8096ad3107715747361acefe685943bfb427c722.png", + "aggregators": ["Rubic", "Rango", "SushiSwap"], + "occurrences": 3 + }, + "0x8c6bd546fb8b53fe371654a0e54d7a5bd484b319": { + "address": "0x8c6bd546fb8b53fe371654a0e54d7a5bd484b319", + "symbol": "GOA", + "decimals": 18, + "name": "Goat Protocol", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0x8c6bd546fb8b53fe371654a0e54d7a5bd484b319.png", + "aggregators": ["Rubic", "Rango", "Sonarwatch"], + "occurrences": 3 + }, + "0xcf1d7d1a7bbf5d11ccfe717fc6a9a45c8dd9c7be": { + "address": "0xcf1d7d1a7bbf5d11ccfe717fc6a9a45c8dd9c7be", + "symbol": "ILOCK", + "decimals": 18, + "name": "Interlock", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0xcf1d7d1a7bbf5d11ccfe717fc6a9a45c8dd9c7be.png", + "aggregators": ["Rubic", "Rango", "Sonarwatch"], + "occurrences": 3 + }, + "0x1310952bc5594852459ee45bfd0df70b34ac5509": { + "address": "0x1310952bc5594852459ee45bfd0df70b34ac5509", + "symbol": "PRF", + "decimals": 18, + "name": "Parifi", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0x1310952bc5594852459ee45bfd0df70b34ac5509.png", + "aggregators": ["Rubic", "Rango", "Sonarwatch"], + "occurrences": 3 + }, + "0x763a716dd74a79d037e57f993fe3047271879bc1": { + "address": "0x763a716dd74a79d037e57f993fe3047271879bc1", + "symbol": "QODA", + "decimals": 18, + "name": "QODA", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0x763a716dd74a79d037e57f993fe3047271879bc1.png", + "aggregators": ["Rubic", "Rango", "Sonarwatch"], + "occurrences": 3 + }, + "0x1f2b426417663ac76eb92149a037753a45969f31": { + "address": "0x1f2b426417663ac76eb92149a037753a45969f31", + "symbol": "RWAS", + "decimals": 18, + "name": "RWA Finance", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0x1f2b426417663ac76eb92149a037753a45969f31.png", + "aggregators": ["Rubic", "Rango", "Sonarwatch"], + "occurrences": 3 + }, + "0x76bc2e765414e6c8b596c0f52c4240f80268f41d": { + "address": "0x76bc2e765414e6c8b596c0f52c4240f80268f41d", + "symbol": "UIBT", + "decimals": 18, + "name": "Unibit", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0x76bc2e765414e6c8b596c0f52c4240f80268f41d.png", + "aggregators": ["Rubic", "Rango", "Sonarwatch"], + "occurrences": 3 + }, + "0x346c574c56e1a4aaa8dc88cda8f7eb12b39947ab": { + "address": "0x346c574c56e1a4aaa8dc88cda8f7eb12b39947ab", + "symbol": "SOLVBTC.BBN", + "decimals": 18, + "name": "SolvBTC Babylon", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0x346c574c56e1a4aaa8dc88cda8f7eb12b39947ab.png", + "aggregators": [ + "CoinGecko", + "LiFi", + "Socket", + "Rubic", + "Squid", + "Rango", + "Sonarwatch", + "SushiSwap" + ], + "occurrences": 8 + }, + "0xe50fa9b3c56ffb159cb0fca61f5c9d750e8128c8": { + "address": "0xe50fa9b3c56ffb159cb0fca61f5c9d750e8128c8", + "symbol": "AWETH", + "decimals": 18, + "name": "Aave v3 WETH", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0xe50fa9b3c56ffb159cb0fca61f5c9d750e8128c8.png", + "aggregators": [ + "CoinGecko", + "1inch", + "LiFi", + "Rubic", + "Squid", + "Rango", + "Sonarwatch" + ], + "occurrences": 7 + }, + "0x8ffdf2de812095b1d19cb146e4c004587c0a0692": { + "address": "0x8ffdf2de812095b1d19cb146e4c004587c0a0692", + "symbol": "ALUSD", + "decimals": 18, + "name": "Aave v3 LUSD", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0x8ffdf2de812095b1d19cb146e4c004587c0a0692.png", + "aggregators": [ + "CoinGecko", + "1inch", + "LiFi", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 6 + }, + "0x513c7e3a9c69ca3e22550ef58ac1c0088e918fff": { + "address": "0x513c7e3a9c69ca3e22550ef58ac1c0088e918fff", + "symbol": "AWSTETH", + "decimals": 18, + "name": "Aave v3 wstETH", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0x513c7e3a9c69ca3e22550ef58ac1c0088e918fff.png", + "aggregators": [ + "CoinGecko", + "1inch", + "LiFi", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 6 + }, + "0x6d80113e533a2c0fe82eabd35f1875dcea89ea97": { + "address": "0x6d80113e533a2c0fe82eabd35f1875dcea89ea97", + "symbol": "AEURS", + "decimals": 2, + "name": "Aave v3 EURS", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0x6d80113e533a2c0fe82eabd35f1875dcea89ea97.png", + "aggregators": [ + "TraderJoe", + "1inch", + "LiFi", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 6 + }, + "0x6533afac2e7bccb20dca161449a13a32d391fb00": { + "address": "0x6533afac2e7bccb20dca161449a13a32d391fb00", + "symbol": "AARB", + "decimals": 18, + "name": "Aave v3 ARB", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0x6533afac2e7bccb20dca161449a13a32d391fb00.png", + "aggregators": [ + "TraderJoe", + "1inch", + "LiFi", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 6 + }, + "0x7f9fbf9bdd3f4105c478b996b648fe6e828a1e98": { + "address": "0x7f9fbf9bdd3f4105c478b996b648fe6e828a1e98", + "symbol": "APE", + "decimals": 18, + "name": "ApeCoin", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0x7f9fbf9bdd3f4105c478b996b648fe6e828a1e98.png", + "aggregators": [ + "TraderJoe", + "LiFi", + "Socket", + "Rubic", + "Squid", + "Rango" + ], + "occurrences": 6 + }, + "0x6e401189c8a68d05562c9bab7f674f910821eacf": { + "address": "0x6e401189c8a68d05562c9bab7f674f910821eacf", + "symbol": "KERNEL", + "decimals": 18, + "name": "KernelDAO", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0x6e401189c8a68d05562c9bab7f674f910821eacf.png", + "aggregators": [ + "CoinGecko", + "LiFi", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 6 + }, + "0x79bbf4508b1391af3a0f4b30bb5fc4aa9ab0e07c": { + "address": "0x79bbf4508b1391af3a0f4b30bb5fc4aa9ab0e07c", + "symbol": "ANON", + "decimals": 18, + "name": "ANON", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0x79bbf4508b1391af3a0f4b30bb5fc4aa9ab0e07c.png", + "aggregators": [ + "CoinGecko", + "LiFi", + "Socket", + "Rubic", + "Squid", + "Rango" + ], + "occurrences": 6 + }, + "0x968be3f7bfef0f8edc3c1ad90232ebb0da0867aa": { + "address": "0x968be3f7bfef0f8edc3c1ad90232ebb0da0867aa", + "symbol": "SWORLD", + "decimals": 18, + "name": "Seedworld", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0x968be3f7bfef0f8edc3c1ad90232ebb0da0867aa.png", + "aggregators": [ + "TraderJoe", + "Socket", + "Rubic", + "Squid", + "Rango", + "Sonarwatch" + ], + "occurrences": 6 + }, + "0x724dc807b04555b71ed48a6896b6f41593b8c637": { + "address": "0x724dc807b04555b71ed48a6896b6f41593b8c637", + "symbol": "AUSDC", + "decimals": 6, + "name": "Aave v3 USDC", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0x724dc807b04555b71ed48a6896b6f41593b8c637.png", + "aggregators": [ + "Metamask", + "1inch", + "LiFi", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 6 + }, + "0x1b01514a2b3cdef16fd3c680a818a0ab97da8a09": { + "address": "0x1b01514a2b3cdef16fd3c680a818a0ab97da8a09", + "symbol": "FPI", + "decimals": 18, + "name": "Frax Price Index", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0x1b01514a2b3cdef16fd3c680a818a0ab97da8a09.png", + "aggregators": [ + "TraderJoe", + "LiFi", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 6 + }, + "0x078f358208685046a11c85e8ad32895ded33a249": { + "address": "0x078f358208685046a11c85e8ad32895ded33a249", + "symbol": "AWBTC", + "decimals": 8, + "name": "Aave v3 WBTC", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0x078f358208685046a11c85e8ad32895ded33a249.png", + "aggregators": [ + "TraderJoe", + "1inch", + "LiFi", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 6 + }, + "0x6ab707aca953edaefbc4fd23ba73294241490620": { + "address": "0x6ab707aca953edaefbc4fd23ba73294241490620", + "symbol": "AUSDT", + "decimals": 6, + "name": "Aave v3 USDT", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0x6ab707aca953edaefbc4fd23ba73294241490620.png", + "aggregators": [ + "Metamask", + "1inch", + "LiFi", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 6 + }, + "0xf763fa322dc58dee588252fafee5f448e863b633": { + "address": "0xf763fa322dc58dee588252fafee5f448e863b633", + "symbol": "SWTH", + "decimals": 8, + "name": "Carbon Protocol", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0xf763fa322dc58dee588252fafee5f448e863b633.png", + "aggregators": [ + "TraderJoe", + "LiFi", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 6 + }, + "0x8eb270e296023e9d92081fdf967ddd7878724424": { + "address": "0x8eb270e296023e9d92081fdf967ddd7878724424", + "symbol": "ARETH", + "decimals": 18, + "name": "Aave v3 rETH", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0x8eb270e296023e9d92081fdf967ddd7878724424.png", + "aggregators": [ + "TraderJoe", + "1inch", + "LiFi", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 6 + }, + "0x82e64f49ed5ec1bc6e43dad4fc8af9bb3a2312ee": { + "address": "0x82e64f49ed5ec1bc6e43dad4fc8af9bb3a2312ee", + "symbol": "ADAI", + "decimals": 18, + "name": "Aave v3 DAI", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0x82e64f49ed5ec1bc6e43dad4fc8af9bb3a2312ee.png", + "aggregators": [ + "Metamask", + "1inch", + "LiFi", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 6 + }, + "0xf329e36c7bf6e5e86ce2150875a84ce77f477375": { + "address": "0xf329e36c7bf6e5e86ce2150875a84ce77f477375", + "symbol": "AAAVE", + "decimals": 18, + "name": "Aave v3 AAVE", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0xf329e36c7bf6e5e86ce2150875a84ce77f477375.png", + "aggregators": [ + "TraderJoe", + "1inch", + "LiFi", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 6 + }, + "0x191c10aa4af7c30e871e70c95db0e4eb77237530": { + "address": "0x191c10aa4af7c30e871e70c95db0e4eb77237530", + "symbol": "ALINK", + "decimals": 18, + "name": "Aave v3 LINK", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0x191c10aa4af7c30e871e70c95db0e4eb77237530.png", + "aggregators": [ + "TraderJoe", + "1inch", + "LiFi", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 6 + }, + "0x6d7187220f769bde541ff51dd37ee07416f861d2": { + "address": "0x6d7187220f769bde541ff51dd37ee07416f861d2", + "symbol": "NSTR", + "decimals": 18, + "name": "Nostra", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0x6d7187220f769bde541ff51dd37ee07416f861d2.png", + "aggregators": [ + "CoinGecko", + "LiFi", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 6 + }, + "0x9fb9a33956351cf4fa040f65a13b835a3c8764e3": { + "address": "0x9fb9a33956351cf4fa040f65a13b835a3c8764e3", + "symbol": "MULTI", + "decimals": 18, + "name": "Multichain", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0x9fb9a33956351cf4fa040f65a13b835a3c8764e3.png", + "aggregators": [ + "TraderJoe", + "LiFi", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 6 + }, + "0x6314c31a7a1652ce482cffe247e9cb7c3f4bb9af": { + "address": "0x6314c31a7a1652ce482cffe247e9cb7c3f4bb9af", + "symbol": "1INCH", + "decimals": 18, + "name": "1INCH Token", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0x6314c31a7a1652ce482cffe247e9cb7c3f4bb9af.png", + "aggregators": ["UniswapLabs", "LiFi", "Socket", "Rubic", "Rango"], + "occurrences": 5 + }, + "0x3a1429d50e0cbbc45c997af600541fe1cc3d2923": { + "address": "0x3a1429d50e0cbbc45c997af600541fe1cc3d2923", + "symbol": "FORT", + "decimals": 18, + "name": "Forta", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0x3a1429d50e0cbbc45c997af600541fe1cc3d2923.png", + "aggregators": ["CoinGecko", "LiFi", "Socket", "Rubic", "Rango"], + "occurrences": 5 + }, + "0x91b468fe3dce581d7a6cfe34189f1314b6862ed6": { + "address": "0x91b468fe3dce581d7a6cfe34189f1314b6862ed6", + "symbol": "MXC", + "decimals": 18, + "name": "MXCToken", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0x91b468fe3dce581d7a6cfe34189f1314b6862ed6.png", + "aggregators": ["UniswapLabs", "LiFi", "Socket", "Rubic", "Rango"], + "occurrences": 5 + }, + "0xa2d52a05b8bead5d824df54dd1aa63188b37a5e7": { + "address": "0xa2d52a05b8bead5d824df54dd1aa63188b37a5e7", + "symbol": "ONDO", + "decimals": 18, + "name": "Ondo Finance", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0xa2d52a05b8bead5d824df54dd1aa63188b37a5e7.png", + "aggregators": ["UniswapLabs", "LiFi", "Socket", "Rubic", "Rango"], + "occurrences": 5 + }, + "0xc7557c73e0eca2e1bf7348bb6874aee63c7eff85": { + "address": "0xc7557c73e0eca2e1bf7348bb6874aee63c7eff85", + "symbol": "QNT", + "decimals": 18, + "name": "Quant", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0xc7557c73e0eca2e1bf7348bb6874aee63c7eff85.png", + "aggregators": ["UniswapLabs", "LiFi", "Socket", "Rubic", "Rango"], + "occurrences": 5 + }, + "0xcf78572a8fe97b2b9a4b9709f6a7d9a863c1b8e0": { + "address": "0xcf78572a8fe97b2b9a4b9709f6a7d9a863c1b8e0", + "symbol": "RARI", + "decimals": 18, + "name": "Rarible", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0xcf78572a8fe97b2b9a4b9709f6a7d9a863c1b8e0.png", + "aggregators": ["UniswapLabs", "LiFi", "Socket", "Rubic", "Rango"], + "occurrences": 5 + }, + "0x707f635951193ddafbb40971a0fcaab8a6415160": { + "address": "0x707f635951193ddafbb40971a0fcaab8a6415160", + "symbol": "SNT", + "decimals": 18, + "name": "Status", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0x707f635951193ddafbb40971a0fcaab8a6415160.png", + "aggregators": ["UniswapLabs", "LiFi", "Socket", "Rubic", "Rango"], + "occurrences": 5 + }, + "0xb2be52744a804cc732d606817c2572c5a3b264e7": { + "address": "0xb2be52744a804cc732d606817c2572c5a3b264e7", + "symbol": "SOCKS", + "decimals": 18, + "name": "Unisocks", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0xb2be52744a804cc732d606817c2572c5a3b264e7.png", + "aggregators": ["UniswapLabs", "LiFi", "Socket", "Rubic", "Rango"], + "occurrences": 5 + }, + "0xb74da9fe2f96b9e0a5f4a3cf0b92dd2bec617124": { + "address": "0xb74da9fe2f96b9e0a5f4a3cf0b92dd2bec617124", + "symbol": "SOL", + "decimals": 9, + "name": "Wrapped SOL (Wormhole)", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0xb74da9fe2f96b9e0a5f4a3cf0b92dd2bec617124.png", + "aggregators": ["UniswapLabs", "LiFi", "Socket", "Rubic", "Rango"], + "occurrences": 5 + }, + "0x32df62dc3aed2cd6224193052ce665dc18165841": { + "address": "0x32df62dc3aed2cd6224193052ce665dc18165841", + "symbol": "DLP", + "decimals": 18, + "name": "Balancer 80 RDNT 20 WETH", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0x32df62dc3aed2cd6224193052ce665dc18165841.png", + "aggregators": [ + "TraderJoe", + "LiFi", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0xac28c9178acc8ba4a11a29e013a3a2627086e422": { + "address": "0xac28c9178acc8ba4a11a29e013a3a2627086e422", + "symbol": "BMSTR", + "decimals": 18, + "name": "Backed MicroStrategy", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0xac28c9178acc8ba4a11a29e013a3a2627086e422.png", + "aggregators": [ + "CoinGecko", + "LiFi", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x14a5f2872396802c3cc8942a39ab3e4118ee5038": { + "address": "0x14a5f2872396802c3cc8942a39ab3e4118ee5038", + "symbol": "BTSLA", + "decimals": 18, + "name": "Backed Tesla", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0x14a5f2872396802c3cc8942a39ab3e4118ee5038.png", + "aggregators": [ + "CoinGecko", + "LiFi", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x09e18590e8f76b6cf471b3cd75fe1a1a9d2b2c2b": { + "address": "0x09e18590e8f76b6cf471b3cd75fe1a1a9d2b2c2b", + "symbol": "AIDOGE", + "decimals": 6, + "name": "ArbDoge AI", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0x09e18590e8f76b6cf471b3cd75fe1a1a9d2b2c2b.png", + "aggregators": [ + "TraderJoe", + "Rubic", + "Squid", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x0b63c61bba4a876a6eb8b5e596800f7649a9b71e": { + "address": "0x0b63c61bba4a876a6eb8b5e596800f7649a9b71e", + "symbol": "SECT", + "decimals": 18, + "name": "Sector", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0x0b63c61bba4a876a6eb8b5e596800f7649a9b71e.png", + "aggregators": [ + "TraderJoe", + "Rubic", + "Squid", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0xaf7e3f16d747e77e927dc94287f86eb95a64d83d": { + "address": "0xaf7e3f16d747e77e927dc94287f86eb95a64d83d", + "symbol": "VEMP", + "decimals": 18, + "name": "VEMP Horizon", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0xaf7e3f16d747e77e927dc94287f86eb95a64d83d.png", + "aggregators": [ + "CoinGecko", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0xa34c5e0abe843e10461e2c9586ea03e55dbcc495": { + "address": "0xa34c5e0abe843e10461e2c9586ea03e55dbcc495", + "symbol": "BNVDA", + "decimals": 18, + "name": "Backed NVIDIA", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0xa34c5e0abe843e10461e2c9586ea03e55dbcc495.png", + "aggregators": [ + "CoinGecko", + "LiFi", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0xe4db3652ac7f88c5712717fd774676bf4aa56769": { + "address": "0xe4db3652ac7f88c5712717fd774676bf4aa56769", + "symbol": "MEED", + "decimals": 18, + "name": "Meeds DAO", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0xe4db3652ac7f88c5712717fd774676bf4aa56769.png", + "aggregators": [ + "CoinGecko", + "LiFi", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x46777c76dbbe40fabb2aab99e33ce20058e76c59": { + "address": "0x46777c76dbbe40fabb2aab99e33ce20058e76c59", + "symbol": "L3", + "decimals": 18, + "name": "Layer3", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0x46777c76dbbe40fabb2aab99e33ce20058e76c59.png", + "aggregators": ["CoinGecko", "LiFi", "Socket", "Rubic", "Rango"], + "occurrences": 5 + }, + "0x9134283afaf6e1b45689ec0b0c82ff2b232bcb30": { + "address": "0x9134283afaf6e1b45689ec0b0c82ff2b232bcb30", + "symbol": "KIT", + "decimals": 18, + "name": "DexKit", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0x9134283afaf6e1b45689ec0b0c82ff2b232bcb30.png", + "aggregators": [ + "CoinGecko", + "LiFi", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0xf197ffc28c23e0309b5559e7a166f2c6164c80aa": { + "address": "0xf197ffc28c23e0309b5559e7a166f2c6164c80aa", + "symbol": "MXNB", + "decimals": 6, + "name": "MXNB", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0xf197ffc28c23e0309b5559e7a166f2c6164c80aa.png", + "aggregators": ["CoinGecko", "LiFi", "Rubic", "Squid", "Rango"], + "occurrences": 5 + }, + "0x7e40b3e0fd0473e0240288d2b7618ac6f0c17e1b": { + "address": "0x7e40b3e0fd0473e0240288d2b7618ac6f0c17e1b", + "symbol": "USDLR", + "decimals": 6, + "name": "Stable USDLR", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0x7e40b3e0fd0473e0240288d2b7618ac6f0c17e1b.png", + "aggregators": [ + "CoinGecko", + "LiFi", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x27bc2757fab0b8ab406016d1f71d8123452095d3": { + "address": "0x27bc2757fab0b8ab406016d1f71d8123452095d3", + "symbol": "LAND", + "decimals": 18, + "name": "Landshare", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0x27bc2757fab0b8ab406016d1f71d8123452095d3.png", + "aggregators": [ + "CoinGecko", + "LiFi", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x8bf591eae535f93a242d5a954d3cde648b48a5a8": { + "address": "0x8bf591eae535f93a242d5a954d3cde648b48a5a8", + "symbol": "SUUSD", + "decimals": 18, + "name": "Sumer.Money suUSD", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0x8bf591eae535f93a242d5a954d3cde648b48a5a8.png", + "aggregators": [ + "TraderJoe", + "LiFi", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x8888888888f004100c0353d657be6300587a6ccd": { + "address": "0x8888888888f004100c0353d657be6300587a6ccd", + "symbol": "ACS", + "decimals": 18, + "name": "ACryptoS", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0x8888888888f004100c0353d657be6300587a6ccd.png", + "aggregators": [ + "CoinGecko", + "LiFi", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x51c601dc278eb2cfea8e52c4caa35b3d6a9a2c26": { + "address": "0x51c601dc278eb2cfea8e52c4caa35b3d6a9a2c26", + "symbol": "XCHNG", + "decimals": 18, + "name": "Chainge", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0x51c601dc278eb2cfea8e52c4caa35b3d6a9a2c26.png", + "aggregators": [ + "CoinGecko", + "LiFi", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0xb829b68f57cc546da7e5806a929e53be32a4625d": { + "address": "0xb829b68f57cc546da7e5806a929e53be32a4625d", + "symbol": "AXLETH", + "decimals": 18, + "name": "Axelar Wrapped Ether", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0xb829b68f57cc546da7e5806a929e53be32a4625d.png", + "aggregators": [ + "CoinGecko", + "Rubic", + "Squid", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x7f5373ae26c3e8ffc4c77b7255df7ec1a9af52a6": { + "address": "0x7f5373ae26c3e8ffc4c77b7255df7ec1a9af52a6", + "symbol": "AXLUSDT", + "decimals": 6, + "name": "Bridged Tether (Axelar)", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0x7f5373ae26c3e8ffc4c77b7255df7ec1a9af52a6.png", + "aggregators": [ + "TraderJoe", + "Rubic", + "Squid", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x7be5dd337cc6ce3e474f64e2a92a566445290864": { + "address": "0x7be5dd337cc6ce3e474f64e2a92a566445290864", + "symbol": "OLE", + "decimals": 18, + "name": "OpenLeverage", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0x7be5dd337cc6ce3e474f64e2a92a566445290864.png", + "aggregators": [ + "TraderJoe", + "LiFi", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x6688b00f0c23a4a546beaae51a7c90c439895d48": { + "address": "0x6688b00f0c23a4a546beaae51a7c90c439895d48", + "symbol": "TAROT", + "decimals": 18, + "name": "Tarot V1", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0x6688b00f0c23a4a546beaae51a7c90c439895d48.png", + "aggregators": [ + "TraderJoe", + "LiFi", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0xdbb5cf12408a3ac17d668037ce289f9ea75439d7": { + "address": "0xdbb5cf12408a3ac17d668037ce289f9ea75439d7", + "symbol": "WMTX", + "decimals": 6, + "name": "World Mobile Token", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0xdbb5cf12408a3ac17d668037ce289f9ea75439d7.png", + "aggregators": ["Metamask", "LiFi", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 5 + }, + "0xb1bc21f748ae2be95674876710bc6d78235480e0": { + "address": "0xb1bc21f748ae2be95674876710bc6d78235480e0", + "symbol": "HORD", + "decimals": 18, + "name": "Hord", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0xb1bc21f748ae2be95674876710bc6d78235480e0.png", + "aggregators": [ + "TraderJoe", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0xf0dfad1817b5ba73726b02ab34dd4b4b00bcd392": { + "address": "0xf0dfad1817b5ba73726b02ab34dd4b4b00bcd392", + "symbol": "MNTO", + "decimals": 18, + "name": "Minato", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0xf0dfad1817b5ba73726b02ab34dd4b4b00bcd392.png", + "aggregators": [ + "TraderJoe", + "LiFi", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x38d693ce1df5aadf7bc62595a37d667ad57922e5": { + "address": "0x38d693ce1df5aadf7bc62595a37d667ad57922e5", + "symbol": "AFRAX", + "decimals": 18, + "name": "Aave v3 FRAX", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0x38d693ce1df5aadf7bc62595a37d667ad57922e5.png", + "aggregators": [ + "TraderJoe", + "1inch", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x848e0ba28b637e8490d88bae51fa99c87116409b": { + "address": "0x848e0ba28b637e8490d88bae51fa99c87116409b", + "symbol": "AGVE", + "decimals": 18, + "name": "Agave", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0x848e0ba28b637e8490d88bae51fa99c87116409b.png", + "aggregators": [ + "TraderJoe", + "LiFi", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0xbbcb0356bb9e6b3faa5cbf9e5f36185d53403ac9": { + "address": "0xbbcb0356bb9e6b3faa5cbf9e5f36185d53403ac9", + "symbol": "BCOIN", + "decimals": 18, + "name": "Backed Coinbase Global", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0xbbcb0356bb9e6b3faa5cbf9e5f36185d53403ac9.png", + "aggregators": [ + "CoinGecko", + "LiFi", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x1e2c4fb7ede391d116e6b41cd0608260e8801d59": { + "address": "0x1e2c4fb7ede391d116e6b41cd0608260e8801d59", + "symbol": "BCSPX", + "decimals": 18, + "name": "Backed CSPX Core S&P 500", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0x1e2c4fb7ede391d116e6b41cd0608260e8801d59.png", + "aggregators": [ + "CoinGecko", + "LiFi", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x80137510979822322193fc997d400d5a6c747bf7": { + "address": "0x80137510979822322193fc997d400d5a6c747bf7", + "symbol": "STONE", + "decimals": 18, + "name": "StakeStone ETH", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0x80137510979822322193fc997d400d5a6c747bf7.png", + "aggregators": [ + "CoinGecko", + "LiFi", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0xc96de26018a54d51c097160568752c4e3bd6c364": { + "address": "0xc96de26018a54d51c097160568752c4e3bd6c364", + "symbol": "FBTC", + "decimals": 8, + "name": "Ignition FBTC", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0xc96de26018a54d51c097160568752c4e3bd6c364.png", + "aggregators": [ + "CoinGecko", + "LiFi", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x16f1967565aad72dd77588a332ce445e7cef752b": { + "address": "0x16f1967565aad72dd77588a332ce445e7cef752b", + "symbol": "CAW", + "decimals": 0, + "name": "crow with knife", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0x16f1967565aad72dd77588a332ce445e7cef752b.png", + "aggregators": [ + "CoinGecko", + "1inch", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x033f193b3fceb22a440e89a2867e8fee181594d9": { + "address": "0x033f193b3fceb22a440e89a2867e8fee181594d9", + "symbol": "RDO", + "decimals": 18, + "name": "Rodeo Finance", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0x033f193b3fceb22a440e89a2867e8fee181594d9.png", + "aggregators": [ + "TraderJoe", + "LiFi", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x965d00aa7abc62ca10132e641d08593435ac811d": { + "address": "0x965d00aa7abc62ca10132e641d08593435ac811d", + "symbol": "KAP", + "decimals": 18, + "name": "KAP Games", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0x965d00aa7abc62ca10132e641d08593435ac811d.png", + "aggregators": [ + "TraderJoe", + "LiFi", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x9b06f3c5de42d4623d7a2bd940ec735103c68a76": { + "address": "0x9b06f3c5de42d4623d7a2bd940ec735103c68a76", + "symbol": "VOLTA", + "decimals": 18, + "name": "Volta Club", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0x9b06f3c5de42d4623d7a2bd940ec735103c68a76.png", + "aggregators": [ + "TraderJoe", + "LiFi", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x0000206329b97db379d5e1bf586bbdb969c63274": { + "address": "0x0000206329b97db379d5e1bf586bbdb969c63274", + "symbol": "USDA", + "decimals": 18, + "name": "USDA", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0x0000206329b97db379d5e1bf586bbdb969c63274.png", + "aggregators": ["LiFi", "Socket", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 5 + }, + "0xecc68d0451e20292406967fe7c04280e5238ac7d": { + "address": "0xecc68d0451e20292406967fe7c04280e5238ac7d", + "symbol": "AXLFRXETH", + "decimals": 18, + "name": "Axelar Bridged Frax Ether", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0xecc68d0451e20292406967fe7c04280e5238ac7d.png", + "aggregators": ["LiFi", "Rubic", "Squid", "Rango", "Sonarwatch"], + "occurrences": 5 + }, + "0x739ca6d71365a08f584c8fc4e1029045fa8abc4b": { + "address": "0x739ca6d71365a08f584c8fc4e1029045fa8abc4b", + "symbol": "WSOHM", + "decimals": 18, + "name": "Wrapped sOHM", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0x739ca6d71365a08f584c8fc4e1029045fa8abc4b.png", + "aggregators": ["LiFi", "Socket", "Rubic", "Rango", "SushiSwap"], + "occurrences": 5 + }, + "0x377c1fc73d4d0f5600cd943776ced07c2b9783cd": { + "address": "0x377c1fc73d4d0f5600cd943776ced07c2b9783cd", + "symbol": "AEVO", + "decimals": 18, + "name": "Aevo", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0x377c1fc73d4d0f5600cd943776ced07c2b9783cd.png", + "aggregators": ["UniswapLabs", "LiFi", "Socket", "Rango"], + "occurrences": 4 + }, + "0xb7910e8b16e63efd51d5d1a093d56280012a3b9c": { + "address": "0xb7910e8b16e63efd51d5d1a093d56280012a3b9c", + "symbol": "AGLD", + "decimals": 18, + "name": "Adventure Gold", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0xb7910e8b16e63efd51d5d1a093d56280012a3b9c.png", + "aggregators": ["UniswapLabs", "LiFi", "Socket", "Rango"], + "occurrences": 4 + }, + "0xec76e8fe6e2242e6c2117caa244b9e2de1569923": { + "address": "0xec76e8fe6e2242e6c2117caa244b9e2de1569923", + "symbol": "AIOZ", + "decimals": 18, + "name": "AIOZ Network", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0xec76e8fe6e2242e6c2117caa244b9e2de1569923.png", + "aggregators": ["UniswapLabs", "LiFi", "Socket", "Rango"], + "occurrences": 4 + }, + "0xef6124368c0b56556667e0de77ea008dfc0a71d1": { + "address": "0xef6124368c0b56556667e0de77ea008dfc0a71d1", + "symbol": "ALI", + "decimals": 18, + "name": "Alethea Artificial Liquid Intelligence", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0xef6124368c0b56556667e0de77ea008dfc0a71d1.png", + "aggregators": ["UniswapLabs", "LiFi", "Socket", "Rango"], + "occurrences": 4 + }, + "0x1bfc5d35bf0f7b9e15dc24c78b8c02dbc1e95447": { + "address": "0x1bfc5d35bf0f7b9e15dc24c78b8c02dbc1e95447", + "symbol": "ANKR", + "decimals": 18, + "name": "Ankr Network", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0x1bfc5d35bf0f7b9e15dc24c78b8c02dbc1e95447.png", + "aggregators": ["UniswapLabs", "LiFi", "Socket", "Rango"], + "occurrences": 4 + }, + "0xf01db12f50d0cdf5fe360ae005b9c52f92ca7811": { + "address": "0xf01db12f50d0cdf5fe360ae005b9c52f92ca7811", + "symbol": "API3", + "decimals": 18, + "name": "API3", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0xf01db12f50d0cdf5fe360ae005b9c52f92ca7811.png", + "aggregators": ["UniswapLabs", "LiFi", "Socket", "Rango"], + "occurrences": 4 + }, + "0xdac5094b7d59647626444a4f905060fcda4e656e": { + "address": "0xdac5094b7d59647626444a4f905060fcda4e656e", + "symbol": "ARKM", + "decimals": 18, + "name": "Arkham", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0xdac5094b7d59647626444a4f905060fcda4e656e.png", + "aggregators": ["UniswapLabs", "LiFi", "Socket", "Rango"], + "occurrences": 4 + }, + "0xac9ac2c17cdfed4abc80a53c5553388575714d03": { + "address": "0xac9ac2c17cdfed4abc80a53c5553388575714d03", + "symbol": "ATA", + "decimals": 18, + "name": "Automata", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0xac9ac2c17cdfed4abc80a53c5553388575714d03.png", + "aggregators": ["UniswapLabs", "LiFi", "Socket", "Rango"], + "occurrences": 4 + }, + "0xe88998fb579266628af6a03e3821d5983e5d0089": { + "address": "0xe88998fb579266628af6a03e3821d5983e5d0089", + "symbol": "AXS", + "decimals": 18, + "name": "Axie Infinity", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0xe88998fb579266628af6a03e3821d5983e5d0089.png", + "aggregators": ["UniswapLabs", "LiFi", "Socket", "Rango"], + "occurrences": 4 + }, + "0x3450687ef141dcd6110b77c2dc44b008616aee75": { + "address": "0x3450687ef141dcd6110b77c2dc44b008616aee75", + "symbol": "BAT", + "decimals": 18, + "name": "Basic Attention Token", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0x3450687ef141dcd6110b77c2dc44b008616aee75.png", + "aggregators": ["UniswapLabs", "LiFi", "Socket", "Rango"], + "occurrences": 4 + }, + "0x406c8db506653d882295875f633bec0beb921c2a": { + "address": "0x406c8db506653d882295875f633bec0beb921c2a", + "symbol": "BIT", + "decimals": 18, + "name": "BitDAO", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0x406c8db506653d882295875f633bec0beb921c2a.png", + "aggregators": ["UniswapLabs", "LiFi", "Socket", "Rango"], + "occurrences": 4 + }, + "0xef171a5ba71348eff16616fd692855c2fe606eb2": { + "address": "0xef171a5ba71348eff16616fd692855c2fe606eb2", + "symbol": "BLUR", + "decimals": 18, + "name": "Blur", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0xef171a5ba71348eff16616fd692855c2fe606eb2.png", + "aggregators": ["UniswapLabs", "LiFi", "Socket", "Rango"], + "occurrences": 4 + }, + "0x7a24159672b83ed1b89467c9d6a99556ba06d073": { + "address": "0x7a24159672b83ed1b89467c9d6a99556ba06d073", + "symbol": "BNT", + "decimals": 18, + "name": "Bancor Network Token", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0x7a24159672b83ed1b89467c9d6a99556ba06d073.png", + "aggregators": ["UniswapLabs", "LiFi", "Socket", "Rango"], + "occurrences": 4 + }, + "0x31190254504622cefdfa55a7d3d272e6462629a2": { + "address": "0x31190254504622cefdfa55a7d3d272e6462629a2", + "symbol": "BUSD", + "decimals": 18, + "name": "Binance USD", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0x31190254504622cefdfa55a7d3d272e6462629a2.png", + "aggregators": ["UniswapLabs", "LiFi", "Socket", "Rango"], + "occurrences": 4 + }, + "0x8ea3156f834a0dfc78f1a5304fac2cda676f354c": { + "address": "0x8ea3156f834a0dfc78f1a5304fac2cda676f354c", + "symbol": "CRO", + "decimals": 8, + "name": "Cronos", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0x8ea3156f834a0dfc78f1a5304fac2cda676f354c.png", + "aggregators": ["UniswapLabs", "LiFi", "Socket", "Rango"], + "occurrences": 4 + }, + "0x9dffb23cad3322440bccff7ab1c58e781ddbf144": { + "address": "0x9dffb23cad3322440bccff7ab1c58e781ddbf144", + "symbol": "CVC", + "decimals": 8, + "name": "Civic", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0x9dffb23cad3322440bccff7ab1c58e781ddbf144.png", + "aggregators": ["UniswapLabs", "LiFi", "Socket", "Rango"], + "occurrences": 4 + }, + "0xaafcfd42c9954c6689ef1901e03db742520829c5": { + "address": "0xaafcfd42c9954c6689ef1901e03db742520829c5", + "symbol": "CVX", + "decimals": 18, + "name": "Convex Finance", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0xaafcfd42c9954c6689ef1901e03db742520829c5.png", + "aggregators": ["UniswapLabs", "LiFi", "Socket", "Rango"], + "occurrences": 4 + }, + "0x3be7cb2e9413ef8f42b4a202a0114eb59b64e227": { + "address": "0x3be7cb2e9413ef8f42b4a202a0114eb59b64e227", + "symbol": "DEXT", + "decimals": 18, + "name": "DexTools", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0x3be7cb2e9413ef8f42b4a202a0114eb59b64e227.png", + "aggregators": ["UniswapLabs", "LiFi", "Socket", "Rango"], + "occurrences": 4 + }, + "0xca642467c6ebe58c13cb4a7091317f34e17ac05e": { + "address": "0xca642467c6ebe58c13cb4a7091317f34e17ac05e", + "symbol": "DIA", + "decimals": 18, + "name": "DIA", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0xca642467c6ebe58c13cb4a7091317f34e17ac05e.png", + "aggregators": ["UniswapLabs", "LiFi", "Socket", "Rango"], + "occurrences": 4 + }, + "0xe3696a02b2c9557639e29d829e9c45efa49ad47a": { + "address": "0xe3696a02b2c9557639e29d829e9c45efa49ad47a", + "symbol": "DNT", + "decimals": 18, + "name": "district0x", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0xe3696a02b2c9557639e29d829e9c45efa49ad47a.png", + "aggregators": ["UniswapLabs", "LiFi", "Socket", "Rango"], + "occurrences": 4 + }, + "0x4667cf53c4edf659e402b733bea42b18b68dd74c": { + "address": "0x4667cf53c4edf659e402b733bea42b18b68dd74c", + "symbol": "DPI", + "decimals": 18, + "name": "DeFi Pulse Index", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0x4667cf53c4edf659e402b733bea42b18b68dd74c.png", + "aggregators": ["UniswapLabs", "LiFi", "Socket", "Rango"], + "occurrences": 4 + }, + "0x606c3e5075e5555e79aa15f1e9facb776f96c248": { + "address": "0x606c3e5075e5555e79aa15f1e9facb776f96c248", + "symbol": "EIGEN", + "decimals": 18, + "name": "EigenLayer", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0x606c3e5075e5555e79aa15f1e9facb776f96c248.png", + "aggregators": ["TraderJoe", "LiFi", "Socket", "Rango"], + "occurrences": 4 + }, + "0xdf8f0c63d9335a0abd89f9f752d293a98ea977d8": { + "address": "0xdf8f0c63d9335a0abd89f9f752d293a98ea977d8", + "symbol": "ENA", + "decimals": 18, + "name": "Ethena", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0xdf8f0c63d9335a0abd89f9f752d293a98ea977d8.png", + "aggregators": ["UniswapLabs", "LiFi", "Socket", "Rango"], + "occurrences": 4 + }, + "0x7fa9549791efc9030e1ed3f25d18014163806758": { + "address": "0x7fa9549791efc9030e1ed3f25d18014163806758", + "symbol": "ENJ", + "decimals": 18, + "name": "Enjin Coin", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0x7fa9549791efc9030e1ed3f25d18014163806758.png", + "aggregators": ["UniswapLabs", "LiFi", "Socket", "Rango"], + "occurrences": 4 + }, + "0xfea31d704deb0975da8e77bf13e04239e70d7c28": { + "address": "0xfea31d704deb0975da8e77bf13e04239e70d7c28", + "symbol": "ENS", + "decimals": 18, + "name": "Ethereum Name Service", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0xfea31d704deb0975da8e77bf13e04239e70d7c28.png", + "aggregators": ["UniswapLabs", "LiFi", "Socket", "Rango"], + "occurrences": 4 + }, + "0x2354c8e9ea898c751f1a15addeb048714d667f96": { + "address": "0x2354c8e9ea898c751f1a15addeb048714d667f96", + "symbol": "ERN", + "decimals": 18, + "name": "@EthernityChain $ERN Token", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0x2354c8e9ea898c751f1a15addeb048714d667f96.png", + "aggregators": ["UniswapLabs", "LiFi", "Socket", "Rango"], + "occurrences": 4 + }, + "0x8553d254cb6934b16f87d2e486b64bbd24c83c70": { + "address": "0x8553d254cb6934b16f87d2e486b64bbd24c83c70", + "symbol": "FARM", + "decimals": 18, + "name": "Harvest Finance", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0x8553d254cb6934b16f87d2e486b64bbd24c83c70.png", + "aggregators": ["UniswapLabs", "LiFi", "Socket", "Rango"], + "occurrences": 4 + }, + "0x849b40ab2469309117ed1038c5a99894767c7282": { + "address": "0x849b40ab2469309117ed1038c5a99894767c7282", + "symbol": "FIS", + "decimals": 18, + "name": "Stafi", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0x849b40ab2469309117ed1038c5a99894767c7282.png", + "aggregators": ["UniswapLabs", "LiFi", "Socket", "Rango"], + "occurrences": 4 + }, + "0x7468a5d8e02245b00e8c0217fce021c70bc51305": { + "address": "0x7468a5d8e02245b00e8c0217fce021c70bc51305", + "symbol": "FRAX", + "decimals": 18, + "name": "Frax", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0x7468a5d8e02245b00e8c0217fce021c70bc51305.png", + "aggregators": ["UniswapLabs", "LiFi", "Socket", "Rango"], + "occurrences": 4 + }, + "0xd42785d323e608b9e99fa542bd8b1000d4c2df37": { + "address": "0xd42785d323e608b9e99fa542bd8b1000d4c2df37", + "symbol": "FTM", + "decimals": 18, + "name": "Fantom", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0xd42785d323e608b9e99fa542bd8b1000d4c2df37.png", + "aggregators": ["UniswapLabs", "LiFi", "Socket", "Rango"], + "occurrences": 4 + }, + "0xd9f9d2ee2d3efe420699079f16d9e924afffdea4": { + "address": "0xd9f9d2ee2d3efe420699079f16d9e924afffdea4", + "symbol": "FXS", + "decimals": 18, + "name": "Frax Share", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0xd9f9d2ee2d3efe420699079f16d9e924afffdea4.png", + "aggregators": ["UniswapLabs", "LiFi", "Socket", "Rango"], + "occurrences": 4 + }, + "0x2a676eead159c4c8e8593471c6d666f02827ff8c": { + "address": "0x2a676eead159c4c8e8593471c6d666f02827ff8c", + "symbol": "GALA", + "decimals": 8, + "name": "GALA", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0x2a676eead159c4c8e8593471c6d666f02827ff8c.png", + "aggregators": ["UniswapLabs", "LiFi", "Socket", "Rango"], + "occurrences": 4 + }, + "0x7f9a7db853ca816b9a138aee3380ef34c437dee0": { + "address": "0x7f9a7db853ca816b9a138aee3380ef34c437dee0", + "symbol": "GTC", + "decimals": 18, + "name": "Gitcoin", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0x7f9a7db853ca816b9a138aee3380ef34c437dee0.png", + "aggregators": ["UniswapLabs", "LiFi", "Socket", "Rango"], + "occurrences": 4 + }, + "0xd12eeb0142d4efe7af82e4f29e5af382615bceea": { + "address": "0xd12eeb0142d4efe7af82e4f29e5af382615bceea", + "symbol": "HIGH", + "decimals": 18, + "name": "Highstreet", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0xd12eeb0142d4efe7af82e4f29e5af382615bceea.png", + "aggregators": ["UniswapLabs", "LiFi", "Socket", "Rango"], + "occurrences": 4 + }, + "0x177f394a3ed18faa85c1462ae626438a70294ef7": { + "address": "0x177f394a3ed18faa85c1462ae626438a70294ef7", + "symbol": "HOPR", + "decimals": 18, + "name": "HOPR", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0x177f394a3ed18faa85c1462ae626438a70294ef7.png", + "aggregators": ["UniswapLabs", "LiFi", "Socket", "Rango"], + "occurrences": 4 + }, + "0x61ca9d186f6b9a793bc08f6c79fd35f205488673": { + "address": "0x61ca9d186f6b9a793bc08f6c79fd35f205488673", + "symbol": "ILV", + "decimals": 18, + "name": "Illuvium", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0x61ca9d186f6b9a793bc08f6c79fd35f205488673.png", + "aggregators": ["UniswapLabs", "LiFi", "Socket", "Rango"], + "occurrences": 4 + }, + "0x3cfd99593a7f035f717142095a3898e3fca7783e": { + "address": "0x3cfd99593a7f035f717142095a3898e3fca7783e", + "symbol": "IMX", + "decimals": 18, + "name": "Immutable X", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0x3cfd99593a7f035f717142095a3898e3fca7783e.png", + "aggregators": ["UniswapLabs", "LiFi", "Socket", "Rango"], + "occurrences": 4 + }, + "0x2a2053cb633cad465b4a8975ed3d7f09df608f80": { + "address": "0x2a2053cb633cad465b4a8975ed3d7f09df608f80", + "symbol": "INJ", + "decimals": 18, + "name": "Injective", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0x2a2053cb633cad465b4a8975ed3d7f09df608f80.png", + "aggregators": ["UniswapLabs", "LiFi", "Socket", "Rango"], + "occurrences": 4 + }, + "0x25f05699548d3a0820b99f93c10c8bb573e27083": { + "address": "0x25f05699548d3a0820b99f93c10c8bb573e27083", + "symbol": "JASMY", + "decimals": 18, + "name": "JasmyCoin", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0x25f05699548d3a0820b99f93c10c8bb573e27083.png", + "aggregators": ["UniswapLabs", "LiFi", "Socket", "Rango"], + "occurrences": 4 + }, + "0x349fc93da004a63f3b1343361465981330a40b25": { + "address": "0x349fc93da004a63f3b1343361465981330a40b25", + "symbol": "LIT", + "decimals": 18, + "name": "Litentry", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0x349fc93da004a63f3b1343361465981330a40b25.png", + "aggregators": ["UniswapLabs", "LiFi", "Socket", "Rango"], + "occurrences": 4 + }, + "0x442d24578a564ef628a65e6a7e3e7be2a165e231": { + "address": "0x442d24578a564ef628a65e6a7e3e7be2a165e231", + "symbol": "MANA", + "decimals": 18, + "name": "Decentraland", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0x442d24578a564ef628a65e6a7e3e7be2a165e231.png", + "aggregators": ["UniswapLabs", "LiFi", "Socket", "Rango"], + "occurrences": 4 + }, + "0x533a7b414cd1236815a5e09f1e97fc7d5c313739": { + "address": "0x533a7b414cd1236815a5e09f1e97fc7d5c313739", + "symbol": "MASK", + "decimals": 18, + "name": "Mask Network", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0x533a7b414cd1236815a5e09f1e97fc7d5c313739.png", + "aggregators": ["UniswapLabs", "LiFi", "Socket", "Rango"], + "occurrences": 4 + }, + "0x7f728f3595db17b0b359f4fc47ae80fad2e33769": { + "address": "0x7f728f3595db17b0b359f4fc47ae80fad2e33769", + "symbol": "METIS", + "decimals": 18, + "name": "Metis", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0x7f728f3595db17b0b359f4fc47ae80fad2e33769.png", + "aggregators": ["UniswapLabs", "LiFi", "Socket", "Rango"], + "occurrences": 4 + }, + "0xb20a02dffb172c474bc4bda3fd6f4ee70c04daf2": { + "address": "0xb20a02dffb172c474bc4bda3fd6f4ee70c04daf2", + "symbol": "MIM", + "decimals": 18, + "name": "Magic Internet Money", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0xb20a02dffb172c474bc4bda3fd6f4ee70c04daf2.png", + "aggregators": ["UniswapLabs", "LiFi", "Socket", "Rango"], + "occurrences": 4 + }, + "0x29024832ec3babf5074d4f46102aa988097f0ca0": { + "address": "0x29024832ec3babf5074d4f46102aa988097f0ca0", + "symbol": "MPL", + "decimals": 18, + "name": "Maple", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0x29024832ec3babf5074d4f46102aa988097f0ca0.png", + "aggregators": ["UniswapLabs", "LiFi", "Socket", "Rango"], + "occurrences": 4 + }, + "0x7b9b94aebe5e2039531af8e31045f377ecd9a39a": { + "address": "0x7b9b94aebe5e2039531af8e31045f377ecd9a39a", + "symbol": "MULTI", + "decimals": 18, + "name": "Multichain", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0x7b9b94aebe5e2039531af8e31045f377ecd9a39a.png", + "aggregators": ["UniswapLabs", "LiFi", "Socket", "Rango"], + "occurrences": 4 + }, + "0x53236015a675fcb937485f1ae58040e4fb920d5b": { + "address": "0x53236015a675fcb937485f1ae58040e4fb920d5b", + "symbol": "NCT", + "decimals": 18, + "name": "PolySwarm", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0x53236015a675fcb937485f1ae58040e4fb920d5b.png", + "aggregators": ["UniswapLabs", "LiFi", "Socket", "Rango"], + "occurrences": 4 + }, + "0xbe06ca305a5cb49abf6b1840da7c42690406177b": { + "address": "0xbe06ca305a5cb49abf6b1840da7c42690406177b", + "symbol": "NKN", + "decimals": 18, + "name": "NKN", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0xbe06ca305a5cb49abf6b1840da7c42690406177b.png", + "aggregators": ["UniswapLabs", "LiFi", "Socket", "Rango"], + "occurrences": 4 + }, + "0x597701b32553b9fa473e21362d480b3a6b569711": { + "address": "0x597701b32553b9fa473e21362d480b3a6b569711", + "symbol": "NMR", + "decimals": 18, + "name": "Numeraire", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0x597701b32553b9fa473e21362d480b3a6b569711.png", + "aggregators": ["UniswapLabs", "LiFi", "Socket", "Rango"], + "occurrences": 4 + }, + "0x933d31561e470478079feb9a6dd2691fad8234df": { + "address": "0x933d31561e470478079feb9a6dd2691fad8234df", + "symbol": "OCEAN", + "decimals": 18, + "name": "Ocean Protocol", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0x933d31561e470478079feb9a6dd2691fad8234df.png", + "aggregators": ["UniswapLabs", "LiFi", "Socket", "Rango"], + "occurrences": 4 + }, + "0x6feb262feb0f775b5312d2e009923f7f58ae423e": { + "address": "0x6feb262feb0f775b5312d2e009923f7f58ae423e", + "symbol": "OGN", + "decimals": 18, + "name": "Origin Protocol", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0x6feb262feb0f775b5312d2e009923f7f58ae423e.png", + "aggregators": ["UniswapLabs", "LiFi", "Socket", "Rango"], + "occurrences": 4 + }, + "0xd962c1895c46ac0378c502c207748b7061421e8e": { + "address": "0xd962c1895c46ac0378c502c207748b7061421e8e", + "symbol": "OMG", + "decimals": 18, + "name": "OMG Network", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0xd962c1895c46ac0378c502c207748b7061421e8e.png", + "aggregators": ["UniswapLabs", "LiFi", "Socket", "Rango"], + "occurrences": 4 + }, + "0x1bdcc2075d5370293e248cab0173ec3e551e6218": { + "address": "0x1bdcc2075d5370293e248cab0173ec3e551e6218", + "symbol": "ORN", + "decimals": 8, + "name": "Orion Protocol", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0x1bdcc2075d5370293e248cab0173ec3e551e6218.png", + "aggregators": ["UniswapLabs", "LiFi", "Socket", "Rango"], + "occurrences": 4 + }, + "0xeeeb5eac2db7a7fc28134aa3248580d48b016b64": { + "address": "0xeeeb5eac2db7a7fc28134aa3248580d48b016b64", + "symbol": "POLS", + "decimals": 18, + "name": "Polkastarter", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0xeeeb5eac2db7a7fc28134aa3248580d48b016b64.png", + "aggregators": ["UniswapLabs", "LiFi", "Socket", "Rango"], + "occurrences": 4 + }, + "0xe12f29704f635f4a6e7ae154838d21f9b33809e9": { + "address": "0xe12f29704f635f4a6e7ae154838d21f9b33809e9", + "symbol": "POLY", + "decimals": 18, + "name": "Polymath", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0xe12f29704f635f4a6e7ae154838d21f9b33809e9.png", + "aggregators": ["UniswapLabs", "LiFi", "Socket", "Rango"], + "occurrences": 4 + }, + "0x4e91f2af1ee0f84b529478f19794f5afd423e4a6": { + "address": "0x4e91f2af1ee0f84b529478f19794f5afd423e4a6", + "symbol": "POWR", + "decimals": 6, + "name": "Power Ledger", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0x4e91f2af1ee0f84b529478f19794f5afd423e4a6.png", + "aggregators": ["UniswapLabs", "LiFi", "Socket", "Rango"], + "occurrences": 4 + }, + "0x8d8e1b6ffc6832e8d2ef0de8a3d957cae7ac5067": { + "address": "0x8d8e1b6ffc6832e8d2ef0de8a3d957cae7ac5067", + "symbol": "PRIME", + "decimals": 18, + "name": "Prime", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0x8d8e1b6ffc6832e8d2ef0de8a3d957cae7ac5067.png", + "aggregators": ["UniswapLabs", "LiFi", "Socket", "Rango"], + "occurrences": 4 + }, + "0x82164a8b646401a8776f9dc5c8cba35dcaf60cd2": { + "address": "0x82164a8b646401a8776f9dc5c8cba35dcaf60cd2", + "symbol": "PRQ", + "decimals": 18, + "name": "PARSIQ", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0x82164a8b646401a8776f9dc5c8cba35dcaf60cd2.png", + "aggregators": ["UniswapLabs", "LiFi", "Socket", "Rango"], + "occurrences": 4 + }, + "0x9fa891e1db0a6d1eeac4b929b5aae1011c79a204": { + "address": "0x9fa891e1db0a6d1eeac4b929b5aae1011c79a204", + "symbol": "REN", + "decimals": 18, + "name": "Republic Token", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0x9fa891e1db0a6d1eeac4b929b5aae1011c79a204.png", + "aggregators": ["UniswapLabs", "LiFi", "Socket", "Rango"], + "occurrences": 4 + }, + "0x1cb5bbc64e148c5b889e3c667b49edf78bb92171": { + "address": "0x1cb5bbc64e148c5b889e3c667b49edf78bb92171", + "symbol": "REQ", + "decimals": 18, + "name": "Request", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0x1cb5bbc64e148c5b889e3c667b49edf78bb92171.png", + "aggregators": ["UniswapLabs", "LiFi", "Socket", "Rango"], + "occurrences": 4 + }, + "0xc8a4eea31e9b6b61c406df013dd4fec76f21e279": { + "address": "0xc8a4eea31e9b6b61c406df013dd4fec76f21e279", + "symbol": "RNDR", + "decimals": 18, + "name": "Render Token", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0xc8a4eea31e9b6b61c406df013dd4fec76f21e279.png", + "aggregators": ["UniswapLabs", "LiFi", "Socket", "Rango"], + "occurrences": 4 + }, + "0xd1318eb19dbf2647743c720ed35174efd64e3dac": { + "address": "0xd1318eb19dbf2647743c720ed35174efd64e3dac", + "symbol": "SAND", + "decimals": 18, + "name": "The Sandbox", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0xd1318eb19dbf2647743c720ed35174efd64e3dac.png", + "aggregators": ["UniswapLabs", "LiFi", "Socket", "Rango"], + "occurrences": 4 + }, + "0x1629c4112952a7a377cb9b8d7d8c903092f34b63": { + "address": "0x1629c4112952a7a377cb9b8d7d8c903092f34b63", + "symbol": "SD", + "decimals": 18, + "name": "Stader", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0x1629c4112952a7a377cb9b8d7d8c903092f34b63.png", + "aggregators": ["UniswapLabs", "LiFi", "Socket", "Rango"], + "occurrences": 4 + }, + "0x4f9b7dedd8865871df65c5d26b1c2dd537267878": { + "address": "0x4f9b7dedd8865871df65c5d26b1c2dd537267878", + "symbol": "SKL", + "decimals": 18, + "name": "SKALE", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0x4f9b7dedd8865871df65c5d26b1c2dd537267878.png", + "aggregators": ["UniswapLabs", "LiFi", "Socket", "Rango"], + "occurrences": 4 + }, + "0xcba56cd8216fcbbf3fa6df6137f3147cbca37d60": { + "address": "0xcba56cd8216fcbbf3fa6df6137f3147cbca37d60", + "symbol": "SNX", + "decimals": 18, + "name": "Synthetix Network Token", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0xcba56cd8216fcbbf3fa6df6137f3147cbca37d60.png", + "aggregators": ["UniswapLabs", "LiFi", "Socket", "Rango"], + "occurrences": 4 + }, + "0xe018c7a3d175fb0fe15d70da2c874d3ca16313ec": { + "address": "0xe018c7a3d175fb0fe15d70da2c874d3ca16313ec", + "symbol": "STG", + "decimals": 18, + "name": "StargateToken", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0xe018c7a3d175fb0fe15d70da2c874d3ca16313ec.png", + "aggregators": ["UniswapLabs", "LiFi", "Socket", "Rango"], + "occurrences": 4 + }, + "0xe6320ebf209971b4f4696f7f0954b8457aa2fcc2": { + "address": "0xe6320ebf209971b4f4696f7f0954b8457aa2fcc2", + "symbol": "STORJ", + "decimals": 8, + "name": "Storj Token", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0xe6320ebf209971b4f4696f7f0954b8457aa2fcc2.png", + "aggregators": ["UniswapLabs", "LiFi", "Socket", "Rango"], + "occurrences": 4 + }, + "0x7f9cf5a2630a0d58567122217df7609c26498956": { + "address": "0x7f9cf5a2630a0d58567122217df7609c26498956", + "symbol": "SUPER", + "decimals": 18, + "name": "SuperFarm", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0x7f9cf5a2630a0d58567122217df7609c26498956.png", + "aggregators": ["UniswapLabs", "LiFi", "Socket", "Rango"], + "occurrences": 4 + }, + "0x1bcfc0b4ee1471674cd6a9f6b363a034375ead84": { + "address": "0x1bcfc0b4ee1471674cd6a9f6b363a034375ead84", + "symbol": "SYN", + "decimals": 18, + "name": "Synapse", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0x1bcfc0b4ee1471674cd6a9f6b363a034375ead84.png", + "aggregators": ["UniswapLabs", "LiFi", "Socket", "Rango"], + "occurrences": 4 + }, + "0x0945cae3ae47cb384b2d47bc448dc6a9dec21f55": { + "address": "0x0945cae3ae47cb384b2d47bc448dc6a9dec21f55", + "symbol": "T", + "decimals": 18, + "name": "Threshold Network", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0x0945cae3ae47cb384b2d47bc448dc6a9dec21f55.png", + "aggregators": ["UniswapLabs", "LiFi", "Socket", "Rango"], + "occurrences": 4 + }, + "0x7e2a1edee171c5b19e6c54d73752396c0a572594": { + "address": "0x7e2a1edee171c5b19e6c54d73752396c0a572594", + "symbol": "TBTC", + "decimals": 18, + "name": "tBTC v2", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0x7e2a1edee171c5b19e6c54d73752396c0a572594.png", + "aggregators": ["UniswapLabs", "LiFi", "Socket", "Rango"], + "occurrences": 4 + }, + "0xbfae6fecd8124ba33cbb2180aab0fe4c03914a5a": { + "address": "0xbfae6fecd8124ba33cbb2180aab0fe4c03914a5a", + "symbol": "TRIBE", + "decimals": 18, + "name": "Tribe", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0xbfae6fecd8124ba33cbb2180aab0fe4c03914a5a.png", + "aggregators": ["UniswapLabs", "LiFi", "Socket", "Rango"], + "occurrences": 4 + }, + "0x78df3a6044ce3cb1905500345b967788b699df8f": { + "address": "0x78df3a6044ce3cb1905500345b967788b699df8f", + "symbol": "USDP", + "decimals": 18, + "name": "Pax Dollar", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0x78df3a6044ce3cb1905500345b967788b699df8f.png", + "aggregators": ["UniswapLabs", "LiFi", "Socket", "Rango"], + "occurrences": 4 + }, + "0x1c8ec4de3c2bfd3050695d89853ec6d78ae650bb": { + "address": "0x1c8ec4de3c2bfd3050695d89853ec6d78ae650bb", + "symbol": "WAMPL", + "decimals": 18, + "name": "Wrapped Ampleforth", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0x1c8ec4de3c2bfd3050695d89853ec6d78ae650bb.png", + "aggregators": ["UniswapLabs", "LiFi", "Socket", "Rango"], + "occurrences": 4 + }, + "0x58bbc087e36db40a84b22c1b93a042294deeafed": { + "address": "0x58bbc087e36db40a84b22c1b93a042294deeafed", + "symbol": "XCN", + "decimals": 18, + "name": "Chain", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0x58bbc087e36db40a84b22c1b93a042294deeafed.png", + "aggregators": ["UniswapLabs", "LiFi", "Socket", "Rango"], + "occurrences": 4 + }, + "0xa05245ade25cc1063ee50cf7c083b4524c1c4302": { + "address": "0xa05245ade25cc1063ee50cf7c083b4524c1c4302", + "symbol": "XSGD", + "decimals": 6, + "name": "XSGD", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0xa05245ade25cc1063ee50cf7c083b4524c1c4302.png", + "aggregators": ["UniswapLabs", "LiFi", "Socket", "Rango"], + "occurrences": 4 + }, + "0x6ddbbce7858d276678fc2b36123fd60547b88954": { + "address": "0x6ddbbce7858d276678fc2b36123fd60547b88954", + "symbol": "ZETA", + "decimals": 18, + "name": "Zetachain", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0x6ddbbce7858d276678fc2b36123fd60547b88954.png", + "aggregators": ["UniswapLabs", "LiFi", "Socket", "Rango"], + "occurrences": 4 + }, + "0xbd591bd4ddb64b77b5f76eab8f03d02519235ae2": { + "address": "0xbd591bd4ddb64b77b5f76eab8f03d02519235ae2", + "symbol": "ZRX", + "decimals": 18, + "name": "0x Protocol Token", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0xbd591bd4ddb64b77b5f76eab8f03d02519235ae2.png", + "aggregators": ["UniswapLabs", "LiFi", "Socket", "Rango"], + "occurrences": 4 + }, + "0x4810e5a7741ea5fdbb658eda632ddfac3b19e3c6": { + "address": "0x4810e5a7741ea5fdbb658eda632ddfac3b19e3c6", + "symbol": "ARBI", + "decimals": 18, + "name": "Arbitrum Ecosystem Index", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0x4810e5a7741ea5fdbb658eda632ddfac3b19e3c6.png", + "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0x7e325091e5525d3ea4d54a1488ecca8d1df732f3": { + "address": "0x7e325091e5525d3ea4d54a1488ecca8d1df732f3", + "symbol": "PAC", + "decimals": 18, + "name": "Pacman Native Token", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0x7e325091e5525d3ea4d54a1488ecca8d1df732f3.png", + "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0x292975973200064b1c6453505aeac5be697f5233": { + "address": "0x292975973200064b1c6453505aeac5be697f5233", + "symbol": "LUDAMOON", + "decimals": 18, + "name": "Lumi to da moon", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0x292975973200064b1c6453505aeac5be697f5233.png", + "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0xe8876189a80b2079d8c0a7867e46c50361d972c1": { + "address": "0xe8876189a80b2079d8c0a7867e46c50361d972c1", + "symbol": "ARC", + "decimals": 18, + "name": "Archly Finance", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0xe8876189a80b2079d8c0a7867e46c50361d972c1.png", + "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0x03183ce31b1656b72a55fa6056e287f50c35bbeb": { + "address": "0x03183ce31b1656b72a55fa6056e287f50c35bbeb", + "symbol": "ACNX", + "decimals": 18, + "name": "Accenture xStock", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0x03183ce31b1656b72a55fa6056e287f50c35bbeb.png", + "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0x0f76d32cdccdcbd602a55af23eaf58fd1ee17245": { + "address": "0x0f76d32cdccdcbd602a55af23eaf58fd1ee17245", + "symbol": "BERNA", + "decimals": 18, + "name": "Backed ERNA $ Bond", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0x0f76d32cdccdcbd602a55af23eaf58fd1ee17245.png", + "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0x5326e71ff593ecc2cf7acae5fe57582d6e74cff1": { + "address": "0x5326e71ff593ecc2cf7acae5fe57582d6e74cff1", + "symbol": "PLVGLP", + "decimals": 18, + "name": "plvGLP", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0x5326e71ff593ecc2cf7acae5fe57582d6e74cff1.png", + "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0x0a1694716de67c98f61942b2cab7df7fe659c87a": { + "address": "0x0a1694716de67c98f61942b2cab7df7fe659c87a", + "symbol": "MNLT", + "decimals": 18, + "name": "Crescentswap Moonlight", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0x0a1694716de67c98f61942b2cab7df7fe659c87a.png", + "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0x374a457967ba24fd3ae66294cab08244185574b0": { + "address": "0x374a457967ba24fd3ae66294cab08244185574b0", + "symbol": "BMSFT", + "decimals": 18, + "name": "Backed Microsoft", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0x374a457967ba24fd3ae66294cab08244185574b0.png", + "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0xacc51ffdef63fb0c014c882267c3a17261a5ed50": { + "address": "0xacc51ffdef63fb0c014c882267c3a17261a5ed50", + "symbol": "SYK", + "decimals": 18, + "name": "Stryke", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0xacc51ffdef63fb0c014c882267c3a17261a5ed50.png", + "aggregators": ["TraderJoe", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0xd41f1f0cf89fd239ca4c1f8e8ada46345c86b0a4": { + "address": "0xd41f1f0cf89fd239ca4c1f8e8ada46345c86b0a4", + "symbol": "CHF24", + "decimals": 2, + "name": "Fiat24 CHF", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0xd41f1f0cf89fd239ca4c1f8e8ada46345c86b0a4.png", + "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0xd8b95b1987741849ca7e71e976aeb535fd2e55a2": { + "address": "0xd8b95b1987741849ca7e71e976aeb535fd2e55a2", + "symbol": "BCSBGC3", + "decimals": 18, + "name": "Backed Swiss Domestic Government Bond 0-3", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0xd8b95b1987741849ca7e71e976aeb535fd2e55a2.png", + "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0x00000000ea00f3f4000e7ed5ed91965b19f1009b": { + "address": "0x00000000ea00f3f4000e7ed5ed91965b19f1009b", + "symbol": "MAIA", + "decimals": 18, + "name": "Maia", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0x00000000ea00f3f4000e7ed5ed91965b19f1009b.png", + "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0x05eaea39f69b24f8f2da13af2d8ee0853889f2a8": { + "address": "0x05eaea39f69b24f8f2da13af2d8ee0853889f2a8", + "symbol": "CYG", + "decimals": 18, + "name": "CygnusDAO", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0x05eaea39f69b24f8f2da13af2d8ee0853889f2a8.png", + "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0x4a7779abed707a9c7deadbbef5c15f3e52370a99": { + "address": "0x4a7779abed707a9c7deadbbef5c15f3e52370a99", + "symbol": "FLAME", + "decimals": 18, + "name": "Flame", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0x4a7779abed707a9c7deadbbef5c15f3e52370a99.png", + "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0xcb55d61e6299597c39feec3d4036e727afbe11be": { + "address": "0xcb55d61e6299597c39feec3d4036e727afbe11be", + "symbol": "LUAG", + "decimals": 18, + "name": "Lumi Finance Governance Token", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0xcb55d61e6299597c39feec3d4036e727afbe11be.png", + "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0x299142a6370e1912156e53fbd4f25d7ba49ddcc5": { + "address": "0x299142a6370e1912156e53fbd4f25d7ba49ddcc5", + "symbol": "AMC", + "decimals": 18, + "name": "AI Meta Club", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0x299142a6370e1912156e53fbd4f25d7ba49ddcc5.png", + "aggregators": ["TraderJoe", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0xd6cf874e24a9f5f43075142101a6b13735cdd424": { + "address": "0xd6cf874e24a9f5f43075142101a6b13735cdd424", + "symbol": "CBPAY", + "decimals": 18, + "name": "CoinbarPay", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0xd6cf874e24a9f5f43075142101a6b13735cdd424.png", + "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0xebee37aaf2905b7bda7e3b928043862e982e8f32": { + "address": "0xebee37aaf2905b7bda7e3b928043862e982e8f32", + "symbol": "BGOOGL", + "decimals": 18, + "name": "Backed Alphabet Class A", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0xebee37aaf2905b7bda7e3b928043862e982e8f32.png", + "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0xf65247b6ed3e7fdbac313959b3f62475fbb5f8e4": { + "address": "0xf65247b6ed3e7fdbac313959b3f62475fbb5f8e4", + "symbol": "BRIX", + "decimals": 9, + "name": "Brightpool Finance BRIX", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0xf65247b6ed3e7fdbac313959b3f62475fbb5f8e4.png", + "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0x2c7941a0fe9c52223b229747322af16160161c98": { + "address": "0x2c7941a0fe9c52223b229747322af16160161c98", + "symbol": "JARVIS", + "decimals": 18, + "name": "Jarvis", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0x2c7941a0fe9c52223b229747322af16160161c98.png", + "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0xb4b07b60455a2f38cba98a8f3dd161f7ca396a9c": { + "address": "0xb4b07b60455a2f38cba98a8f3dd161f7ca396a9c", + "symbol": "OT", + "decimals": 18, + "name": "Onchain Trade Protocol", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0xb4b07b60455a2f38cba98a8f3dd161f7ca396a9c.png", + "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0x344c796cc2474e4b779d0e81765afb91d7741a42": { + "address": "0x344c796cc2474e4b779d0e81765afb91d7741a42", + "symbol": "LASAGNA", + "decimals": 18, + "name": "Garffeldo", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0x344c796cc2474e4b779d0e81765afb91d7741a42.png", + "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0x939727d85d99d0ac339bf1b76dfe30ca27c19067": { + "address": "0x939727d85d99d0ac339bf1b76dfe30ca27c19067", + "symbol": "SIZE", + "decimals": 18, + "name": "SIZE", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0x939727d85d99d0ac339bf1b76dfe30ca27c19067.png", + "aggregators": ["TraderJoe", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0xfa296fca3c7dba4a92a42ec0b5e2138da3b29050": { + "address": "0xfa296fca3c7dba4a92a42ec0b5e2138da3b29050", + "symbol": "SHIBAI", + "decimals": 6, + "name": "AiShiba", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0xfa296fca3c7dba4a92a42ec0b5e2138da3b29050.png", + "aggregators": ["TraderJoe", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0xc3abc47863524ced8daf3ef98d74dd881e131c38": { + "address": "0xc3abc47863524ced8daf3ef98d74dd881e131c38", + "symbol": "LUA", + "decimals": 18, + "name": "Lumi Finance", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0xc3abc47863524ced8daf3ef98d74dd881e131c38.png", + "aggregators": ["TraderJoe", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0xe018c227bc84e44c96391d3067fab5a9a46b7e62": { + "address": "0xe018c227bc84e44c96391d3067fab5a9a46b7e62", + "symbol": "CR", + "decimals": 18, + "name": "Chromium Dollar", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0xe018c227bc84e44c96391d3067fab5a9a46b7e62.png", + "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0x4117ec0a779448872d3820f37ba2060ae0b7c34b": { + "address": "0x4117ec0a779448872d3820f37ba2060ae0b7c34b", + "symbol": "USDEX+", + "decimals": 18, + "name": "USDEX+", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0x4117ec0a779448872d3820f37ba2060ae0b7c34b.png", + "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0x2c852d3334188be136bfc540ef2bb8c37b590bad": { + "address": "0x2c852d3334188be136bfc540ef2bb8c37b590bad", + "symbol": "MAGIC", + "decimals": 18, + "name": "MagicLand", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0x2c852d3334188be136bfc540ef2bb8c37b590bad.png", + "aggregators": ["TraderJoe", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0xe5f6d3b2405abdfe6f660e63202b25d23763160d": { + "address": "0xe5f6d3b2405abdfe6f660e63202b25d23763160d", + "symbol": "GMEX", + "decimals": 18, + "name": "Gamestop xStock", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0xe5f6d3b2405abdfe6f660e63202b25d23763160d.png", + "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0x635d0e13f98e107cf6c5cdfbf52c19843f87e76a": { + "address": "0x635d0e13f98e107cf6c5cdfbf52c19843f87e76a", + "symbol": "DOMDOM", + "decimals": 18, + "name": "Dominator Domains", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0x635d0e13f98e107cf6c5cdfbf52c19843f87e76a.png", + "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0x3ee7e9b3a992fd23cd1c363b0e296856b04ab149": { + "address": "0x3ee7e9b3a992fd23cd1c363b0e296856b04ab149", + "symbol": "GSX", + "decimals": 18, + "name": "Goldman Sachs xStock", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0x3ee7e9b3a992fd23cd1c363b0e296856b04ab149.png", + "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0xfc90518d5136585ba45e34ed5e1d108bd3950cfa": { + "address": "0xfc90518d5136585ba45e34ed5e1d108bd3950cfa", + "symbol": "USD+", + "decimals": 6, + "name": "USD+", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0xfc90518d5136585ba45e34ed5e1d108bd3950cfa.png", + "aggregators": ["CoinGecko", "LiFi", "Rubic", "Rango"], + "occurrences": 4 + }, + "0x2389f6a46562ae5f1557db8562c39ef553f3832b": { + "address": "0x2389f6a46562ae5f1557db8562c39ef553f3832b", + "symbol": "KERC", + "decimals": 18, + "name": "KERC", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0x2389f6a46562ae5f1557db8562c39ef553f3832b.png", + "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0x319e222de462ac959baf2aec848697aec2bbd770": { + "address": "0x319e222de462ac959baf2aec848697aec2bbd770", + "symbol": "OREO", + "decimals": 18, + "name": "OreoSwap", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0x319e222de462ac959baf2aec848697aec2bbd770.png", + "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0x4ac623237de0aa622b4fdf4da63cf97216371acf": { + "address": "0x4ac623237de0aa622b4fdf4da63cf97216371acf", + "symbol": "ALXAI", + "decimals": 18, + "name": "alXAI", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0x4ac623237de0aa622b4fdf4da63cf97216371acf.png", + "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0xbbea044f9e7c0520195e49ad1e561572e7e1b948": { + "address": "0xbbea044f9e7c0520195e49ad1e561572e7e1b948", + "symbol": "MZR", + "decimals": 18, + "name": "Mizar", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0xbbea044f9e7c0520195e49ad1e561572e7e1b948.png", + "aggregators": ["TraderJoe", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0x92a212d9f5eef0b262ac7d84aea64a0d0758b94f": { + "address": "0x92a212d9f5eef0b262ac7d84aea64a0d0758b94f", + "symbol": "GDEX", + "decimals": 18, + "name": "DexFi Governance", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0x92a212d9f5eef0b262ac7d84aea64a0d0758b94f.png", + "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0x89233399708c18ac6887f90a2b4cd8ba5fedd06e": { + "address": "0x89233399708c18ac6887f90a2b4cd8ba5fedd06e", + "symbol": "ABTX", + "decimals": 18, + "name": "Abbott xStock", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0x89233399708c18ac6887f90a2b4cd8ba5fedd06e.png", + "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0x6612ce012ba5574a2ecea3a825c1ddf641f78623": { + "address": "0x6612ce012ba5574a2ecea3a825c1ddf641f78623", + "symbol": "$DORAB", + "decimals": 18, + "name": "Dorado Finance", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0x6612ce012ba5574a2ecea3a825c1ddf641f78623.png", + "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0xe11508d3e0cf09e6fd6e94fdf41e83836d83ce50": { + "address": "0xe11508d3e0cf09e6fd6e94fdf41e83836d83ce50", + "symbol": "PFUSDC", + "decimals": 6, + "name": "Parifi USDC", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0xe11508d3e0cf09e6fd6e94fdf41e83836d83ce50.png", + "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0x0b5c6ac0e1082f2d81e829b8c2957886e6bb3994": { + "address": "0x0b5c6ac0e1082f2d81e829b8c2957886e6bb3994", + "symbol": "PRISM", + "decimals": 18, + "name": "Prism", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0x0b5c6ac0e1082f2d81e829b8c2957886e6bb3994.png", + "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0x1dd6b5f9281c6b4f043c02a83a46c2772024636c": { + "address": "0x1dd6b5f9281c6b4f043c02a83a46c2772024636c", + "symbol": "LUAUSD", + "decimals": 18, + "name": "Lumi Finance LUAUSD", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0x1dd6b5f9281c6b4f043c02a83a46c2772024636c.png", + "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0xa6ef0ad746d1c35d6ff4d66ceeae0e596d742924": { + "address": "0xa6ef0ad746d1c35d6ff4d66ceeae0e596d742924", + "symbol": "LTM04", + "decimals": 18, + "name": "LumiTerra Totem 404", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0xa6ef0ad746d1c35d6ff4d66ceeae0e596d742924.png", + "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0xee0b14e8fc86691cf6ee42b9954985b4cf968534": { + "address": "0xee0b14e8fc86691cf6ee42b9954985b4cf968534", + "symbol": "$ZPC", + "decimals": 18, + "name": "ZenPandaCoin", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0xee0b14e8fc86691cf6ee42b9954985b4cf968534.png", + "aggregators": ["TraderJoe", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0x836975c507bff631fcd7fba875e9127c8a50dba6": { + "address": "0x836975c507bff631fcd7fba875e9127c8a50dba6", + "symbol": "ARBINAUTS", + "decimals": 18, + "name": "Arbinauts", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0x836975c507bff631fcd7fba875e9127c8a50dba6.png", + "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0x2c5d06f591d0d8cd43ac232c2b654475a142c7da": { + "address": "0x2c5d06f591d0d8cd43ac232c2b654475a142c7da", + "symbol": "EUR24", + "decimals": 2, + "name": "Fiat24 EUR", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0x2c5d06f591d0d8cd43ac232c2b654475a142c7da.png", + "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0x0ae1bb2bc04308765a6b1215236cea8cfee8cab9": { + "address": "0x0ae1bb2bc04308765a6b1215236cea8cfee8cab9", + "symbol": "TT", + "decimals": 18, + "name": "TDEX Token", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0x0ae1bb2bc04308765a6b1215236cea8cfee8cab9.png", + "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0x3ed03e95dd894235090b3d4a49e0c3239edce59e": { + "address": "0x3ed03e95dd894235090b3d4a49e0c3239edce59e", + "symbol": "MYRC", + "decimals": 18, + "name": "Blox MYRC", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0x3ed03e95dd894235090b3d4a49e0c3239edce59e.png", + "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0x5f320aae9b786a9f329a39e41a74e88e14783067": { + "address": "0x5f320aae9b786a9f329a39e41a74e88e14783067", + "symbol": "PEPEX", + "decimals": 18, + "name": "PEPEX", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0x5f320aae9b786a9f329a39e41a74e88e14783067.png", + "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0x4c4b907bd5c38d14a084aac4f511a9b46f7ec429": { + "address": "0x4c4b907bd5c38d14a084aac4f511a9b46f7ec429", + "symbol": "RBX", + "decimals": 18, + "name": "RB Share", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0x4c4b907bd5c38d14a084aac4f511a9b46f7ec429.png", + "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0x6a9896837021ea3ed83f623f655c119c54abe02c": { + "address": "0x6a9896837021ea3ed83f623f655c119c54abe02c", + "symbol": "BOUNTY", + "decimals": 18, + "name": "ChainBounty", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0x6a9896837021ea3ed83f623f655c119c54abe02c.png", + "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0x6dbf2155b0636cb3fd5359fccefb8a2c02b6cb51": { + "address": "0x6dbf2155b0636cb3fd5359fccefb8a2c02b6cb51", + "symbol": "PLSRDNT", + "decimals": 18, + "name": "Plutus RDNT", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0x6dbf2155b0636cb3fd5359fccefb8a2c02b6cb51.png", + "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0xbea0005b8599265d41256905a9b3073d397812e4": { + "address": "0xbea0005b8599265d41256905a9b3073d397812e4", + "symbol": "BEAN", + "decimals": 6, + "name": "Bean", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0xbea0005b8599265d41256905a9b3073d397812e4.png", + "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0xbe00f3db78688d9704bcb4e0a827aea3a9cc0d62": { + "address": "0xbe00f3db78688d9704bcb4e0a827aea3a9cc0d62", + "symbol": "USD24", + "decimals": 2, + "name": "Fiat24 USD", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0xbe00f3db78688d9704bcb4e0a827aea3a9cc0d62.png", + "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0xb9e4765bce2609bc1949592059b17ea72fee6c6a": { + "address": "0xb9e4765bce2609bc1949592059b17ea72fee6c6a", + "symbol": "BENJI", + "decimals": 18, + "name": "Franklin OnChain U.S. Government Money Fund", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0xb9e4765bce2609bc1949592059b17ea72fee6c6a.png", + "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0x2b28e826b55e399f4d4699b85f68666ac51e6f70": { + "address": "0x2b28e826b55e399f4d4699b85f68666ac51e6f70", + "symbol": "CADC", + "decimals": 18, + "name": "CAD Coin", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0x2b28e826b55e399f4d4699b85f68666ac51e6f70.png", + "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0x000000000000012def132e61759048be5b5c6033": { + "address": "0x000000000000012def132e61759048be5b5c6033", + "symbol": "CX", + "decimals": 18, + "name": "Cortex", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0x000000000000012def132e61759048be5b5c6033.png", + "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0xfd28f108e95f4d41daae9dbfff707d677985998e": { + "address": "0xfd28f108e95f4d41daae9dbfff707d677985998e", + "symbol": "PRL", + "decimals": 18, + "name": "Parallel Governance", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0xfd28f108e95f4d41daae9dbfff707d677985998e.png", + "aggregators": ["CoinGecko", "LiFi", "Rubic", "Rango"], + "occurrences": 4 + }, + "0xac7952d30850c9d214b0f44cbe213781b4dacf05": { + "address": "0xac7952d30850c9d214b0f44cbe213781b4dacf05", + "symbol": "BALN", + "decimals": 18, + "name": "Balanced", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0xac7952d30850c9d214b0f44cbe213781b4dacf05.png", + "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0x812f2d5ff6088ed7a655567dbcdf0d42cf07ca38": { + "address": "0x812f2d5ff6088ed7a655567dbcdf0d42cf07ca38", + "symbol": "GRIX", + "decimals": 18, + "name": "GRIX", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0x812f2d5ff6088ed7a655567dbcdf0d42cf07ca38.png", + "aggregators": ["CoinGecko", "LiFi", "Rubic", "Rango"], + "occurrences": 4 + }, + "0x1b2c29e3897b8f9170c98440a483e90e715c879d": { + "address": "0x1b2c29e3897b8f9170c98440a483e90e715c879d", + "symbol": "SUSDZ", + "decimals": 18, + "name": "Anzen Staked USDz", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0x1b2c29e3897b8f9170c98440a483e90e715c879d.png", + "aggregators": ["CoinGecko", "LiFi", "Rubic", "Rango"], + "occurrences": 4 + }, + "0x9d0c0675a995d5f12b03e880763f639d0628b5c6": { + "address": "0x9d0c0675a995d5f12b03e880763f639d0628b5c6", + "symbol": "WALK", + "decimals": 18, + "name": "SuperWalk WALK", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0x9d0c0675a995d5f12b03e880763f639d0628b5c6.png", + "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0xda661fa59320b808c5a6d23579fcfedf1fd3cf36": { + "address": "0xda661fa59320b808c5a6d23579fcfedf1fd3cf36", + "symbol": "MBOX", + "decimals": 18, + "name": "Mobox", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0xda661fa59320b808c5a6d23579fcfedf1fd3cf36.png", + "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0xcbeb19549054cc0a6257a77736fc78c367216ce7": { + "address": "0xcbeb19549054cc0a6257a77736fc78c367216ce7", + "symbol": "EUTBL", + "decimals": 5, + "name": "Spiko EU T-Bills Money Market Fund", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0xcbeb19549054cc0a6257a77736fc78c367216ce7.png", + "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0x2b65f9d2e4b84a2df6ff0525741b75d1276a9c2f": { + "address": "0x2b65f9d2e4b84a2df6ff0525741b75d1276a9c2f", + "symbol": "USD0++", + "decimals": 18, + "name": "USD0 Liquid Bond", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0x2b65f9d2e4b84a2df6ff0525741b75d1276a9c2f.png", + "aggregators": ["CoinGecko", "LiFi", "Rubic", "Rango"], + "occurrences": 4 + }, + "0x1bc8bf18256d8b45d8367aac50fe2e24fc6aa8ca": { + "address": "0x1bc8bf18256d8b45d8367aac50fe2e24fc6aa8ca", + "symbol": "VES", + "decimals": 18, + "name": "Vestate", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0x1bc8bf18256d8b45d8367aac50fe2e24fc6aa8ca.png", + "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0xeb4d25db65dcef52380c99ba7e1344c820ecb1fc": { + "address": "0xeb4d25db65dcef52380c99ba7e1344c820ecb1fc", + "symbol": "XWG", + "decimals": 18, + "name": "X World Games", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0xeb4d25db65dcef52380c99ba7e1344c820ecb1fc.png", + "aggregators": ["TraderJoe", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0xf84d28a8d28292842dd73d1c5f99476a80b6666a": { + "address": "0xf84d28a8d28292842dd73d1c5f99476a80b6666a", + "symbol": "TBILL", + "decimals": 6, + "name": "OpenEden TBILL", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0xf84d28a8d28292842dd73d1c5f99476a80b6666a.png", + "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0xe5cca68b9e1d5575b7e3062fa34b0c725b003a69": { + "address": "0xe5cca68b9e1d5575b7e3062fa34b0c725b003a69", + "symbol": "COLX", + "decimals": 8, + "name": "ColossusXT", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0xe5cca68b9e1d5575b7e3062fa34b0c725b003a69.png", + "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0xdc8b6b6beab4d5034ae91b7a1cf7d05a41f0d239": { + "address": "0xdc8b6b6beab4d5034ae91b7a1cf7d05a41f0d239", + "symbol": "GMAC", + "decimals": 18, + "name": "Gemach", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0xdc8b6b6beab4d5034ae91b7a1cf7d05a41f0d239.png", + "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0x021289588cd81dc1ac87ea91e91607eef68303f5": { + "address": "0x021289588cd81dc1ac87ea91e91607eef68303f5", + "symbol": "USTBL", + "decimals": 5, + "name": "Spiko US T-Bills Money Market Fund", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0x021289588cd81dc1ac87ea91e91607eef68303f5.png", + "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0x02cea97794d2cfb5f560e1ff4e9c59d1bec75969": { + "address": "0x02cea97794d2cfb5f560e1ff4e9c59d1bec75969", + "symbol": "VCHF", + "decimals": 18, + "name": "VNX Swiss Franc", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0x02cea97794d2cfb5f560e1ff4e9c59d1bec75969.png", + "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0x4883c8f0529f37e40ebea870f3c13cdfad5d01f8": { + "address": "0x4883c8f0529f37e40ebea870f3c13cdfad5d01f8", + "symbol": "VEUR", + "decimals": 18, + "name": "VNX EURO", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0x4883c8f0529f37e40ebea870f3c13cdfad5d01f8.png", + "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0x64fcc3a02eeeba05ef701b7eed066c6ebd5d4e51": { + "address": "0x64fcc3a02eeeba05ef701b7eed066c6ebd5d4e51", + "symbol": "SPECTRA", + "decimals": 18, + "name": "Spectra", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0x64fcc3a02eeeba05ef701b7eed066c6ebd5d4e51.png", + "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0x69420f9e38a4e60a62224c489be4bf7a94402496": { + "address": "0x69420f9e38a4e60a62224c489be4bf7a94402496", + "symbol": "MONEY", + "decimals": 18, + "name": "Defi.money", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0x69420f9e38a4e60a62224c489be4bf7a94402496.png", + "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0xa3210cd727fe6daf8386af5623ba51a367e46263": { + "address": "0xa3210cd727fe6daf8386af5623ba51a367e46263", + "symbol": "BSKT", + "decimals": 5, + "name": "Basket", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0xa3210cd727fe6daf8386af5623ba51a367e46263.png", + "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0x039d2e8f097331278bd6c1415d839310e0d5ece4": { + "address": "0x039d2e8f097331278bd6c1415d839310e0d5ece4", + "symbol": "LINDA", + "decimals": 18, + "name": "Linda", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0x039d2e8f097331278bd6c1415d839310e0d5ece4.png", + "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0x2b089381f53525451fe5115f23e9d2cc92d7ff1d": { + "address": "0x2b089381f53525451fe5115f23e9d2cc92d7ff1d", + "symbol": "DRC", + "decimals": 0, + "name": "Digital Reserve Currency", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0x2b089381f53525451fe5115f23e9d2cc92d7ff1d.png", + "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0x9dce8e754913d928eb39bc4fc3cf047e364f7f2c": { + "address": "0x9dce8e754913d928eb39bc4fc3cf047e364f7f2c", + "symbol": "BLOK", + "decimals": 18, + "name": "Bloktopia", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0x9dce8e754913d928eb39bc4fc3cf047e364f7f2c.png", + "aggregators": ["TraderJoe", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0x2fac624899a844e0628bfdcc70efcd25f6e90b95": { + "address": "0x2fac624899a844e0628bfdcc70efcd25f6e90b95", + "symbol": "YOU", + "decimals": 18, + "name": "Youwho", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0x2fac624899a844e0628bfdcc70efcd25f6e90b95.png", + "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0xbcf339df10d78f2b44aa760ead0f715a7a7d7269": { + "address": "0xbcf339df10d78f2b44aa760ead0f715a7a7d7269", + "symbol": "GUARD", + "decimals": 18, + "name": "Guardian GUARD", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0xbcf339df10d78f2b44aa760ead0f715a7a7d7269.png", + "aggregators": ["TraderJoe", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0xa4f63404b58c3efd9db6d53352bd386ffa174e5a": { + "address": "0xa4f63404b58c3efd9db6d53352bd386ffa174e5a", + "symbol": "MPT", + "decimals": 18, + "name": "Miracle Play", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0xa4f63404b58c3efd9db6d53352bd386ffa174e5a.png", + "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0xd45e486a90ebb84e9336d371a35dcb021424b96c": { + "address": "0xd45e486a90ebb84e9336d371a35dcb021424b96c", + "symbol": "SQUAD", + "decimals": 18, + "name": "Superpower Squad", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0xd45e486a90ebb84e9336d371a35dcb021424b96c.png", + "aggregators": ["TraderJoe", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0x3405e88af759992937b84e58f2fe691ef0eea320": { + "address": "0x3405e88af759992937b84e58f2fe691ef0eea320", + "symbol": "FPIS", + "decimals": 18, + "name": "Frax Price Index Share", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0x3405e88af759992937b84e58f2fe691ef0eea320.png", + "aggregators": ["TraderJoe", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0xcaa38bcc8fb3077975bbe217acfaa449e6596a84": { + "address": "0xcaa38bcc8fb3077975bbe217acfaa449e6596a84", + "symbol": "DAO", + "decimals": 18, + "name": "DAO Maker", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0xcaa38bcc8fb3077975bbe217acfaa449e6596a84.png", + "aggregators": ["TraderJoe", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0x9cf7eebb75b751dc8fdd2268ae8c9b570b4c97b9": { + "address": "0x9cf7eebb75b751dc8fdd2268ae8c9b570b4c97b9", + "symbol": "NULL", + "decimals": 18, + "name": "NULL MATRIX", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0x9cf7eebb75b751dc8fdd2268ae8c9b570b4c97b9.png", + "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0x2f11eeee0bf21e7661a22dbbbb9068f4ad191b86": { + "address": "0x2f11eeee0bf21e7661a22dbbbb9068f4ad191b86", + "symbol": "BNIU", + "decimals": 18, + "name": "Backed NIU Technologies", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0x2f11eeee0bf21e7661a22dbbbb9068f4ad191b86.png", + "aggregators": ["TraderJoe", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0xf061956612b3dc79fd285d3d51bc128f2ea87740": { + "address": "0xf061956612b3dc79fd285d3d51bc128f2ea87740", + "symbol": "YF-DAI", + "decimals": 18, + "name": "YfDAI.finance", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0xf061956612b3dc79fd285d3d51bc128f2ea87740.png", + "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0xffa188493c15dfaf2c206c97d8633377847b6a52": { + "address": "0xffa188493c15dfaf2c206c97d8633377847b6a52", + "symbol": "WEFI", + "decimals": 18, + "name": "Wefi", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0xffa188493c15dfaf2c206c97d8633377847b6a52.png", + "aggregators": ["TraderJoe", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0x3bd2dfd03bc7c3011ed7fb8c4d0949b382726cee": { + "address": "0x3bd2dfd03bc7c3011ed7fb8c4d0949b382726cee", + "symbol": "ROOBEE", + "decimals": 18, + "name": "Roobee", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0x3bd2dfd03bc7c3011ed7fb8c4d0949b382726cee.png", + "aggregators": ["TraderJoe", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0x5441695f4445e40900b4c4b0fb3ed2b9e51601a6": { + "address": "0x5441695f4445e40900b4c4b0fb3ed2b9e51601a6", + "symbol": "ARTH", + "decimals": 18, + "name": "ARTH", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0x5441695f4445e40900b4c4b0fb3ed2b9e51601a6.png", + "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0x11bbf12363dc8375b78d2719395d505f52a02f68": { + "address": "0x11bbf12363dc8375b78d2719395d505f52a02f68", + "symbol": "ROUTE", + "decimals": 18, + "name": "Router Protocol [OLD]", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0x11bbf12363dc8375b78d2719395d505f52a02f68.png", + "aggregators": ["TraderJoe", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0xd978f8489e1245568704407a479a71fcce2afe8f": { + "address": "0xd978f8489e1245568704407a479a71fcce2afe8f", + "symbol": "BANANA", + "decimals": 18, + "name": "ApeSwap", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0xd978f8489e1245568704407a479a71fcce2afe8f.png", + "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0xca30c93b02514f86d5c86a6e375e3a330b435fb5": { + "address": "0xca30c93b02514f86d5c86a6e375e3a330b435fb5", + "symbol": "BIB01", + "decimals": 18, + "name": "Backed IB01 $ Treasury Bond 0-1yr", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0xca30c93b02514f86d5c86a6e375e3a330b435fb5.png", + "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0xc9bd1c1e65ebfb36cf4b3d9fc8e2b844248deee8": { + "address": "0xc9bd1c1e65ebfb36cf4b3d9fc8e2b844248deee8", + "symbol": "KUDAI", + "decimals": 18, + "name": "Kudai", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0xc9bd1c1e65ebfb36cf4b3d9fc8e2b844248deee8.png", + "aggregators": ["TraderJoe", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0x9d5a383581882750ce27f84c72f017b378edb736": { + "address": "0x9d5a383581882750ce27f84c72f017b378edb736", + "symbol": "ALOT", + "decimals": 18, + "name": "Dexalot", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0x9d5a383581882750ce27f84c72f017b378edb736.png", + "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0xee0a242f28034fce0bdfac33c0ad2a58ec35fd38": { + "address": "0xee0a242f28034fce0bdfac33c0ad2a58ec35fd38", + "symbol": "ROSA", + "decimals": 18, + "name": "Rosa Inu", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0xee0a242f28034fce0bdfac33c0ad2a58ec35fd38.png", + "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0xa5312c3e42a82d459162b2a3bd7ffc4f9099b911": { + "address": "0xa5312c3e42a82d459162b2a3bd7ffc4f9099b911", + "symbol": "GALAXIS", + "decimals": 18, + "name": "GALAXIS Token", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0xa5312c3e42a82d459162b2a3bd7ffc4f9099b911.png", + "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0xea50f402653c41cadbafd1f788341db7b7f37816": { + "address": "0xea50f402653c41cadbafd1f788341db7b7f37816", + "symbol": "SGYD", + "decimals": 18, + "name": "sGYD", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0xea50f402653c41cadbafd1f788341db7b7f37816.png", + "aggregators": ["CoinGecko", "LiFi", "Rubic", "Sonarwatch"], + "occurrences": 4 + }, + "0x3088e120b220e67a2e092f5da8cdf02ea0170f6a": { + "address": "0x3088e120b220e67a2e092f5da8cdf02ea0170f6a", + "symbol": "FNXAI", + "decimals": 18, + "name": "Finanx AI", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0x3088e120b220e67a2e092f5da8cdf02ea0170f6a.png", + "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0x3b58a4c865b568a2f6a957c264f6b50cba35d8ce": { + "address": "0x3b58a4c865b568a2f6a957c264f6b50cba35d8ce", + "symbol": "GRND", + "decimals": 18, + "name": "SuperWalk GRND", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0x3b58a4c865b568a2f6a957c264f6b50cba35d8ce.png", + "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0x259b0f9494b3f02c652fa11417b94cb700f1f7d8": { + "address": "0x259b0f9494b3f02c652fa11417b94cb700f1f7d8", + "symbol": "CVPAD", + "decimals": 18, + "name": "CV Pad", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0x259b0f9494b3f02c652fa11417b94cb700f1f7d8.png", + "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0xb3f13b0c61d65d67d7d6215d70c89533ee567a91": { + "address": "0xb3f13b0c61d65d67d7d6215d70c89533ee567a91", + "symbol": "A51", + "decimals": 18, + "name": "A51 Finance", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0xb3f13b0c61d65d67d7d6215d70c89533ee567a91.png", + "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0x949185d3be66775ea648f4a306740ea9eff9c567": { + "address": "0x949185d3be66775ea648f4a306740ea9eff9c567", + "symbol": "YEL", + "decimals": 18, + "name": "Yel.Finance", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0x949185d3be66775ea648f4a306740ea9eff9c567.png", + "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0x2680e82fb8beb5a153a67fe687ffa67abb6b9013": { + "address": "0x2680e82fb8beb5a153a67fe687ffa67abb6b9013", + "symbol": "SMT", + "decimals": 18, + "name": "Swarm Markets", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0x2680e82fb8beb5a153a67fe687ffa67abb6b9013.png", + "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0xb00eaedb98f1e30ad545703d8ff14b24d109514f": { + "address": "0xb00eaedb98f1e30ad545703d8ff14b24d109514f", + "symbol": "YAKU", + "decimals": 9, + "name": "Yaku", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0xb00eaedb98f1e30ad545703d8ff14b24d109514f.png", + "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0x5a691001bf7065a17e150681f5bfbd7bc45a668e": { + "address": "0x5a691001bf7065a17e150681f5bfbd7bc45a668e", + "symbol": "SDUSD", + "decimals": 18, + "name": "Davos Protocol Staked DUSD", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0x5a691001bf7065a17e150681f5bfbd7bc45a668e.png", + "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0x28514bd097d5f9ecea778cc7a4ca4bac5fedb0b6": { + "address": "0x28514bd097d5f9ecea778cc7a4ca4bac5fedb0b6", + "symbol": "$BOO", + "decimals": 18, + "name": "BOO", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0x28514bd097d5f9ecea778cc7a4ca4bac5fedb0b6.png", + "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0x2ad62eb9744c720364f6ac856360a43e8a2229b5": { + "address": "0x2ad62eb9744c720364f6ac856360a43e8a2229b5", + "symbol": "DOC", + "decimals": 18, + "name": "Dollar On Chain", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0x2ad62eb9744c720364f6ac856360a43e8a2229b5.png", + "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0x565f12c7f08d906ea9f32c0826412ec13d4f8030": { + "address": "0x565f12c7f08d906ea9f32c0826412ec13d4f8030", + "symbol": "RUBI", + "decimals": 18, + "name": "Rubicon", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0x565f12c7f08d906ea9f32c0826412ec13d4f8030.png", + "aggregators": ["CoinGecko", "LiFi", "Rubic", "Rango"], + "occurrences": 4 + }, + "0x764a726d9ced0433a8d7643335919deb03a9a935": { + "address": "0x764a726d9ced0433a8d7643335919deb03a9a935", + "symbol": "POKT", + "decimals": 6, + "name": "Pocket Network", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0x764a726d9ced0433a8d7643335919deb03a9a935.png", + "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0x1c22531aa9747d76fff8f0a43b37954ca67d28e0": { + "address": "0x1c22531aa9747d76fff8f0a43b37954ca67d28e0", + "symbol": "SUETH", + "decimals": 18, + "name": "Sumer.Money suETH", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0x1c22531aa9747d76fff8f0a43b37954ca67d28e0.png", + "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0x07dd5beaffb65b8ff2e575d500bdf324a05295dc": { + "address": "0x07dd5beaffb65b8ff2e575d500bdf324a05295dc", + "symbol": "ARBI", + "decimals": 18, + "name": "ArbiPad", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0x07dd5beaffb65b8ff2e575d500bdf324a05295dc.png", + "aggregators": ["TraderJoe", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0x1426cf37caa89628c4da2864e40cf75e6d66ac6b": { + "address": "0x1426cf37caa89628c4da2864e40cf75e6d66ac6b", + "symbol": "RELAY", + "decimals": 18, + "name": "Relay Token", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0x1426cf37caa89628c4da2864e40cf75e6d66ac6b.png", + "aggregators": ["TraderJoe", "LiFi", "Rubic", "Rango"], + "occurrences": 4 + }, + "0x1824a51c106efc27d35a74efb56d9bf54ddb22d4": { + "address": "0x1824a51c106efc27d35a74efb56d9bf54ddb22d4", + "symbol": "PRY", + "decimals": 18, + "name": "Perpy Finance", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0x1824a51c106efc27d35a74efb56d9bf54ddb22d4.png", + "aggregators": ["TraderJoe", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0x1aae7de64d9ae1487e95858bbf98185f21e926fd": { + "address": "0x1aae7de64d9ae1487e95858bbf98185f21e926fd", + "symbol": "AICORE", + "decimals": 18, + "name": "AICORE", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0x1aae7de64d9ae1487e95858bbf98185f21e926fd.png", + "aggregators": ["TraderJoe", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0x1b7ad346b6ff2d196daa8e78aed86baa6d7e3b02": { + "address": "0x1b7ad346b6ff2d196daa8e78aed86baa6d7e3b02", + "symbol": "VITAI", + "decimals": 18, + "name": "VitAI", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0x1b7ad346b6ff2d196daa8e78aed86baa6d7e3b02.png", + "aggregators": ["TraderJoe", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0x24ef78c7092d255ed14a0281ac1800c359af3afe": { + "address": "0x24ef78c7092d255ed14a0281ac1800c359af3afe", + "symbol": "RAB", + "decimals": 18, + "name": "Rabbit Wallet", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0x24ef78c7092d255ed14a0281ac1800c359af3afe.png", + "aggregators": ["TraderJoe", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0x31c91d8fb96bff40955dd2dbc909b36e8b104dde": { + "address": "0x31c91d8fb96bff40955dd2dbc909b36e8b104dde", + "symbol": "POI$ON", + "decimals": 18, + "name": "Poison Finance", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0x31c91d8fb96bff40955dd2dbc909b36e8b104dde.png", + "aggregators": ["TraderJoe", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0x3b6564b5da73a41d3a66e6558a98fd0e9e1e77ad": { + "address": "0x3b6564b5da73a41d3a66e6558a98fd0e9e1e77ad", + "symbol": "UTS", + "decimals": 18, + "name": "Unitus", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0x3b6564b5da73a41d3a66e6558a98fd0e9e1e77ad.png", + "aggregators": ["TraderJoe", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0x4e0da40b9063dc48364c1c0ffb4ae9d091fc2270": { + "address": "0x4e0da40b9063dc48364c1c0ffb4ae9d091fc2270", + "symbol": "EDG", + "decimals": 18, + "name": "Edgeware", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0x4e0da40b9063dc48364c1c0ffb4ae9d091fc2270.png", + "aggregators": ["TraderJoe", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0x500756c7d239aee30f52c7e52af4f4f008d1a98f": { + "address": "0x500756c7d239aee30f52c7e52af4f4f008d1a98f", + "symbol": "OIL", + "decimals": 18, + "name": "Petroleum OIL", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0x500756c7d239aee30f52c7e52af4f4f008d1a98f.png", + "aggregators": ["TraderJoe", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0x50e401255275dc405a99d3281f396cca681eea9d": { + "address": "0x50e401255275dc405a99d3281f396cca681eea9d", + "symbol": "KORA", + "decimals": 18, + "name": "Kortana", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0x50e401255275dc405a99d3281f396cca681eea9d.png", + "aggregators": ["TraderJoe", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0x59a729658e9245b0cf1f8cb9fb37945d2b06ea27": { + "address": "0x59a729658e9245b0cf1f8cb9fb37945d2b06ea27", + "symbol": "$GENE", + "decimals": 18, + "name": "GenomesDAO GENE", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0x59a729658e9245b0cf1f8cb9fb37945d2b06ea27.png", + "aggregators": ["TraderJoe", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0x67c31056358b8977ea95a3a899dd380d4bced706": { + "address": "0x67c31056358b8977ea95a3a899dd380d4bced706", + "symbol": "ETHFAI", + "decimals": 18, + "name": "ETHforestAI", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0x67c31056358b8977ea95a3a899dd380d4bced706.png", + "aggregators": ["TraderJoe", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0x7a2c1b8e26c48a5b73816b7ec826fd4053f5f34b": { + "address": "0x7a2c1b8e26c48a5b73816b7ec826fd4053f5f34b", + "symbol": "ZZZ", + "decimals": 18, + "name": "GoSleep ZZZ", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0x7a2c1b8e26c48a5b73816b7ec826fd4053f5f34b.png", + "aggregators": ["TraderJoe", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0x93ca0d85837ff83158cd14d65b169cdb223b1921": { + "address": "0x93ca0d85837ff83158cd14d65b169cdb223b1921", + "symbol": "ECLIP", + "decimals": 6, + "name": "Eclipse Fi", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0x93ca0d85837ff83158cd14d65b169cdb223b1921.png", + "aggregators": ["TraderJoe", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0xa0c8d91b6dce36f6deeadf716ab02bc539d9bebf": { + "address": "0xa0c8d91b6dce36f6deeadf716ab02bc539d9bebf", + "symbol": "GMB", + "decimals": 18, + "name": "Gameboi", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0xa0c8d91b6dce36f6deeadf716ab02bc539d9bebf.png", + "aggregators": ["TraderJoe", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0xb98058640970d8aa7bbce3b067b2d63c14143786": { + "address": "0xb98058640970d8aa7bbce3b067b2d63c14143786", + "symbol": "BARB", + "decimals": 18, + "name": "Baby Arbitrum", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0xb98058640970d8aa7bbce3b067b2d63c14143786.png", + "aggregators": ["TraderJoe", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0xd26b0c6ef8581e921ae41c66e508c62a581b709d": { + "address": "0xd26b0c6ef8581e921ae41c66e508c62a581b709d", + "symbol": "SEX", + "decimals": 18, + "name": "Sexone", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0xd26b0c6ef8581e921ae41c66e508c62a581b709d.png", + "aggregators": ["TraderJoe", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0xed7f000ee335b8199b004cca1c6f36d188cf6cb8": { + "address": "0xed7f000ee335b8199b004cca1c6f36d188cf6cb8", + "symbol": "D2", + "decimals": 18, + "name": "D2 Finance", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0xed7f000ee335b8199b004cca1c6f36d188cf6cb8.png", + "aggregators": ["TraderJoe", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0xf29fdf6b7bdffb025d7e6dfdf344992d2d16e249": { + "address": "0xf29fdf6b7bdffb025d7e6dfdf344992d2d16e249", + "symbol": "GENSX", + "decimals": 6, + "name": "Genius X", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0xf29fdf6b7bdffb025d7e6dfdf344992d2d16e249.png", + "aggregators": ["TraderJoe", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0xf6eb7a9799f6680c320e79d0fb35e842d54d38ce": { + "address": "0xf6eb7a9799f6680c320e79d0fb35e842d54d38ce", + "symbol": "OVER", + "decimals": 18, + "name": "Overlord", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0xf6eb7a9799f6680c320e79d0fb35e842d54d38ce.png", + "aggregators": ["TraderJoe", "Socket", "Rubic", "Rango"], + "occurrences": 4 + }, + "0xfbbb21d8e7a461f06e5e27efd69703acb5c732a8": { + "address": "0xfbbb21d8e7a461f06e5e27efd69703acb5c732a8", + "symbol": "KNJ", + "decimals": 18, + "name": "Kunji Finance", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0xfbbb21d8e7a461f06e5e27efd69703acb5c732a8.png", + "aggregators": ["TraderJoe", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0x65c101e95d7dd475c7966330fa1a803205ff92ab": { + "address": "0x65c101e95d7dd475c7966330fa1a803205ff92ab", + "symbol": "HOL", + "decimals": 18, + "name": "Hall of Legends", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0x65c101e95d7dd475c7966330fa1a803205ff92ab.png", + "aggregators": ["1inch", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0x8616e8ea83f048ab9a5ec513c9412dd2993bce3f": { + "address": "0x8616e8ea83f048ab9a5ec513c9412dd2993bce3f", + "symbol": "FXUSD", + "decimals": 18, + "name": "handleUSD", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0x8616e8ea83f048ab9a5ec513c9412dd2993bce3f.png", + "aggregators": ["LiFi", "Socket", "Rubic", "Rango"], + "occurrences": 4 + }, + "0x8933fedd98cbb482e27c41e1bd7216a4e42ebd39": { + "address": "0x8933fedd98cbb482e27c41e1bd7216a4e42ebd39", + "symbol": "PGS", + "decimals": 18, + "name": "PegasusBot", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0x8933fedd98cbb482e27c41e1bd7216a4e42ebd39.png", + "aggregators": ["LiFi", "Rubic", "Rango", "SushiSwap"], + "occurrences": 4 + }, + "0xb448ec505c924944ca8b2c55ef05c299ee0781df": { + "address": "0xb448ec505c924944ca8b2c55ef05c299ee0781df", + "symbol": "AXLKNC", + "decimals": 18, + "name": "Axelar Wrapped KNC", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0xb448ec505c924944ca8b2c55ef05c299ee0781df.png", + "aggregators": ["LiFi", "Rubic", "Squid", "Rango"], + "occurrences": 4 + }, + "0x346e74dc9935a9b02eb34fb84658a66010fa056d": { + "address": "0x346e74dc9935a9b02eb34fb84658a66010fa056d", + "symbol": "ZUN", + "decimals": 18, + "name": "Zunami Governance Token", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0x346e74dc9935a9b02eb34fb84658a66010fa056d.png", + "aggregators": ["LiFi", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0xaeeba475edc438f8eeb6bfbc3164c1c7716fb304": { + "address": "0xaeeba475edc438f8eeb6bfbc3164c1c7716fb304", + "symbol": "DICE", + "decimals": 18, + "name": "Party Dice", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0xaeeba475edc438f8eeb6bfbc3164c1c7716fb304.png", + "aggregators": ["LiFi", "Rubic", "Rango", "SushiSwap"], + "occurrences": 4 + }, + "0x06d65ec13465ac5a4376dc101e1141252c4addf8": { + "address": "0x06d65ec13465ac5a4376dc101e1141252c4addf8", + "symbol": "ZUNETH", + "decimals": 18, + "name": "Zunami ETH", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0x06d65ec13465ac5a4376dc101e1141252c4addf8.png", + "aggregators": ["LiFi", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0xafafd68afe3fe65d376eec9eab1802616cfaccb8": { + "address": "0xafafd68afe3fe65d376eec9eab1802616cfaccb8", + "symbol": "SOLVBTC.ENA", + "decimals": 18, + "name": "SolvBTC Ethena", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0xafafd68afe3fe65d376eec9eab1802616cfaccb8.png", + "aggregators": ["LiFi", "Rubic", "Rango", "SushiSwap"], + "occurrences": 4 + }, + "0x88dfaaabaf06f3a41d2606ea98bc8eda109abebb": { + "address": "0x88dfaaabaf06f3a41d2606ea98bc8eda109abebb", + "symbol": "AXLWMAI", + "decimals": 18, + "name": "Axelar Wrapped WMAI", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0x88dfaaabaf06f3a41d2606ea98bc8eda109abebb.png", + "aggregators": ["LiFi", "Rubic", "Squid", "Rango"], + "occurrences": 4 + }, + "0xb827710314a05bcbee9180e11c2abe5823289422": { + "address": "0xb827710314a05bcbee9180e11c2abe5823289422", + "symbol": "ABI", + "decimals": 18, + "name": "Abachi", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0xb827710314a05bcbee9180e11c2abe5823289422.png", + "aggregators": ["LiFi", "Socket", "Rubic", "Rango"], + "occurrences": 4 + }, + "0x32e4d98d3010ac12d75019c484caa78665b03986": { + "address": "0x32e4d98d3010ac12d75019c484caa78665b03986", + "symbol": "GBOT", + "decimals": 18, + "name": "GBOT", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0x32e4d98d3010ac12d75019c484caa78665b03986.png", + "aggregators": ["LiFi", "Rubic", "Rango", "SushiSwap"], + "occurrences": 4 + }, + "0xa8c25fdc09763a176353cc6a76882e05b4905fae": { + "address": "0xa8c25fdc09763a176353cc6a76882e05b4905fae", + "symbol": "FLOKI", + "decimals": 9, + "name": "FLOKI", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0xa8c25fdc09763a176353cc6a76882e05b4905fae.png", + "aggregators": ["UniswapLabs", "Socket", "Rango"], + "occurrences": 3 + }, + "0x631a64e240180d4b604f736cb6e19c1a7ec77254": { + "address": "0x631a64e240180d4b604f736cb6e19c1a7ec77254", + "symbol": "PRO", + "decimals": 8, + "name": "Propy", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0x631a64e240180d4b604f736cb6e19c1a7ec77254.png", + "aggregators": ["UniswapLabs", "LiFi", "Rango"], + "occurrences": 3 + }, + "0xe575586566b02a16338c199c23ca6d295d794e66": { + "address": "0xe575586566b02a16338c199c23ca6d295d794e66", + "symbol": "RLC", + "decimals": 9, + "name": "iExec RLC", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0xe575586566b02a16338c199c23ca6d295d794e66.png", + "aggregators": ["UniswapLabs", "Socket", "Rango"], + "occurrences": 3 + }, + "0xfa51b42d4c9ea35f1758828226aaedbec50dd54e": { + "address": "0xfa51b42d4c9ea35f1758828226aaedbec50dd54e", + "symbol": "TAC", + "decimals": 18, + "name": "Taekwondo Access Credit", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0xfa51b42d4c9ea35f1758828226aaedbec50dd54e.png", + "aggregators": ["ArbitrumWhitelist", "LiFi", "Rango"], + "occurrences": 3 + }, + "0x250f471385894fc81183a99d6fde8ce9c5b142d6": { + "address": "0x250f471385894fc81183a99d6fde8ce9c5b142d6", + "symbol": "UNT", + "decimals": 18, + "name": "Unity Network", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0x250f471385894fc81183a99d6fde8ce9c5b142d6.png", + "aggregators": ["ArbitrumWhitelist", "LiFi", "Rango"], + "occurrences": 3 + }, + "0xa150245f155778e749185c9446e9e59e406674ef": { + "address": "0xa150245f155778e749185c9446e9e59e406674ef", + "symbol": "WBRK.BX", + "decimals": 18, + "name": "Wrapped Berkshire Hathaway xStock", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0xa150245f155778e749185c9446e9e59e406674ef.png", + "aggregators": ["CoinGecko", "Rubic", "Sonarwatch"], + "occurrences": 3 + }, + "0xad5cdc3340904285b8159089974a99a1a09eb4c0": { + "address": "0xad5cdc3340904285b8159089974a99a1a09eb4c0", + "symbol": "CVXX", + "decimals": 18, + "name": "CVXX", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0xad5cdc3340904285b8159089974a99a1a09eb4c0.png", + "aggregators": ["CoinGecko", "Rubic", "Rango"], + "occurrences": 3 + }, + "0xcfa485bc42c2492917351f89f5cf5c7b2c5a66aa": { + "address": "0xcfa485bc42c2492917351f89f5cf5c7b2c5a66aa", + "symbol": "WCSCOX", + "decimals": 18, + "name": "Wrapped Cisco xStock", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0xcfa485bc42c2492917351f89f5cf5c7b2c5a66aa.png", + "aggregators": ["CoinGecko", "Rubic", "Sonarwatch"], + "occurrences": 3 + }, + "0x13a78809528b02ad5e7c42f39232d332761dfb1d": { + "address": "0x13a78809528b02ad5e7c42f39232d332761dfb1d", + "symbol": "PFWETH", + "decimals": 18, + "name": "Parifi WETH", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0x13a78809528b02ad5e7c42f39232d332761dfb1d.png", + "aggregators": ["CoinGecko", "Rubic", "Rango"], + "occurrences": 3 + }, + "0xd9913208647671fe0f48f7f260076b2c6f310aac": { + "address": "0xd9913208647671fe0f48f7f260076b2c6f310aac", + "symbol": "IBMX", + "decimals": 18, + "name": "IBMX", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0xd9913208647671fe0f48f7f260076b2c6f310aac.png", + "aggregators": ["CoinGecko", "Rubic", "Rango"], + "occurrences": 3 + }, + "0xaedf7656fbb47c5b97dd529ac1d0e807e051f2dd": { + "address": "0xaedf7656fbb47c5b97dd529ac1d0e807e051f2dd", + "symbol": "MXC", + "decimals": 18, + "name": "MXC Token", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0xaedf7656fbb47c5b97dd529ac1d0e807e051f2dd.png", + "aggregators": ["CoinGecko", "Rubic", "Rango"], + "occurrences": 3 + }, + "0xbc7170a1280be28513b4e940c681537eb25e39f4": { + "address": "0xbc7170a1280be28513b4e940c681537eb25e39f4", + "symbol": "CMCSAX", + "decimals": 18, + "name": "CMCSAX", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0xbc7170a1280be28513b4e940c681537eb25e39f4.png", + "aggregators": ["CoinGecko", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x314938c596f5ce31c3f75307d2979338c346d7f2": { + "address": "0x314938c596f5ce31c3f75307d2979338c346d7f2", + "symbol": "BACX", + "decimals": 18, + "name": "BACX", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0x314938c596f5ce31c3f75307d2979338c346d7f2.png", + "aggregators": ["CoinGecko", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x214151022c2a5e380ab80cdac31f23ae554a7345": { + "address": "0x214151022c2a5e380ab80cdac31f23ae554a7345", + "symbol": "CRWDX", + "decimals": 18, + "name": "CRWDX", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0x214151022c2a5e380ab80cdac31f23ae554a7345.png", + "aggregators": ["CoinGecko", "Rubic", "Rango"], + "occurrences": 3 + }, + "0xbe023308ac2ef7e1c3799f4e6a3003ee6d342635": { + "address": "0xbe023308ac2ef7e1c3799f4e6a3003ee6d342635", + "symbol": "GBPSAFO", + "decimals": 5, + "name": "Spiko Amundi Overnight Swap Fund (GBP)", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0xbe023308ac2ef7e1c3799f4e6a3003ee6d342635.png", + "aggregators": ["CoinGecko", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x51f6ee60108cbcb3b613093bd3f224cb49aa1610": { + "address": "0x51f6ee60108cbcb3b613093bd3f224cb49aa1610", + "symbol": "BRI", + "decimals": 9, + "name": "BrightPool Token", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0x51f6ee60108cbcb3b613093bd3f224cb49aa1610.png", + "aggregators": ["CoinGecko", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x9d275685dc284c8eb1c79f6aba7a63dc75ec890a": { + "address": "0x9d275685dc284c8eb1c79f6aba7a63dc75ec890a", + "symbol": "AAPLX", + "decimals": 18, + "name": "AAPLX", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0x9d275685dc284c8eb1c79f6aba7a63dc75ec890a.png", + "aggregators": ["CoinGecko", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x1412632f2b89e87bfa20c1318a43ced25f1d7b76": { + "address": "0x1412632f2b89e87bfa20c1318a43ced25f1d7b76", + "symbol": "EURSAFO", + "decimals": 5, + "name": "Spiko Amundi Overnight Swap Fund (EUR)", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0x1412632f2b89e87bfa20c1318a43ced25f1d7b76.png", + "aggregators": ["CoinGecko", "Rubic", "Rango"], + "occurrences": 3 + }, + "0xab5c23bdbe99d75a7ae4756e7ccefd0a97b37e78": { + "address": "0xab5c23bdbe99d75a7ae4756e7ccefd0a97b37e78", + "symbol": "STXAI", + "decimals": 18, + "name": "stXAI", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0xab5c23bdbe99d75a7ae4756e7ccefd0a97b37e78.png", + "aggregators": ["CoinGecko", "Rubic", "Sonarwatch"], + "occurrences": 3 + }, + "0x12992613fdd35abe95dec5a4964331b1ee23b50d": { + "address": "0x12992613fdd35abe95dec5a4964331b1ee23b50d", + "symbol": "BRK.BX", + "decimals": 18, + "name": "BRK.BX", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0x12992613fdd35abe95dec5a4964331b1ee23b50d.png", + "aggregators": ["CoinGecko", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x0c709396739b9cfb72bcea6ac691ce0ddf66479c": { + "address": "0x0c709396739b9cfb72bcea6ac691ce0ddf66479c", + "symbol": "SAFO", + "decimals": 5, + "name": "Spiko Amundi Overnight Swap Fund", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0x0c709396739b9cfb72bcea6ac691ce0ddf66479c.png", + "aggregators": ["CoinGecko", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x3557ba345b01efa20a1bddc61f573bfd87195081": { + "address": "0x3557ba345b01efa20a1bddc61f573bfd87195081", + "symbol": "AMZNX", + "decimals": 18, + "name": "AMZNX", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0x3557ba345b01efa20a1bddc61f573bfd87195081.png", + "aggregators": ["CoinGecko", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x17176a9868f321411b15ccb9b934cf95597e89c4": { + "address": "0x17176a9868f321411b15ccb9b934cf95597e89c4", + "symbol": "GOOD", + "decimals": 18, + "name": "Good Entry", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0x17176a9868f321411b15ccb9b934cf95597e89c4.png", + "aggregators": ["TraderJoe", "Rubic", "Sonarwatch"], + "occurrences": 3 + }, + "0xe1385fdd5ffb10081cd52c56584f25efa9084015": { + "address": "0xe1385fdd5ffb10081cd52c56584f25efa9084015", + "symbol": "HOODX", + "decimals": 18, + "name": "HOODX", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0xe1385fdd5ffb10081cd52c56584f25efa9084015.png", + "aggregators": ["CoinGecko", "Rubic", "Rango"], + "occurrences": 3 + }, + "0xfc675adfdd721064ba923d07a8a238a9e52d8ace": { + "address": "0xfc675adfdd721064ba923d07a8a238a9e52d8ace", + "symbol": "ESPRF", + "decimals": 18, + "name": "escrowed PRF", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0xfc675adfdd721064ba923d07a8a238a9e52d8ace.png", + "aggregators": ["CoinGecko", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x50a1291f69d9d3853def8209cfb1af0b46927be1": { + "address": "0x50a1291f69d9d3853def8209cfb1af0b46927be1", + "symbol": "APPX", + "decimals": 18, + "name": "APPX", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0x50a1291f69d9d3853def8209cfb1af0b46927be1.png", + "aggregators": ["CoinGecko", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x8deb752aaa807e0258afd5ccffe2b5a804026f28": { + "address": "0x8deb752aaa807e0258afd5ccffe2b5a804026f28", + "symbol": "WAVGOX", + "decimals": 18, + "name": "Wrapped Broadcom xStock", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0x8deb752aaa807e0258afd5ccffe2b5a804026f28.png", + "aggregators": ["CoinGecko", "Rubic", "Sonarwatch"], + "occurrences": 3 + }, + "0xe92f673ca36c5e2efd2de7628f815f84807e803f": { + "address": "0xe92f673ca36c5e2efd2de7628f815f84807e803f", + "symbol": "GOOGLX", + "decimals": 18, + "name": "GOOGLX", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0xe92f673ca36c5e2efd2de7628f815f84807e803f.png", + "aggregators": ["CoinGecko", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x68d6d2545f14751baf36c417c2cc7cdf8da8a15b": { + "address": "0x68d6d2545f14751baf36c417c2cc7cdf8da8a15b", + "symbol": "PLSSYK", + "decimals": 18, + "name": "Plutus SYK", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0x68d6d2545f14751baf36c417c2cc7cdf8da8a15b.png", + "aggregators": ["CoinGecko", "Rubic", "Rango"], + "occurrences": 3 + }, + "0xd7a892f28dedc74e6b7b33f93be08abfc394a360": { + "address": "0xd7a892f28dedc74e6b7b33f93be08abfc394a360", + "symbol": "CIP", + "decimals": 18, + "name": "Crypto Index Pool", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0xd7a892f28dedc74e6b7b33f93be08abfc394a360.png", + "aggregators": ["TraderJoe", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x38bac69cbbd28156796e4163b2b6dcb81e336565": { + "address": "0x38bac69cbbd28156796e4163b2b6dcb81e336565", + "symbol": "AVGOX", + "decimals": 18, + "name": "AVGOX", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0x38bac69cbbd28156796e4163b2b6dcb81e336565.png", + "aggregators": ["CoinGecko", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x364f210f430ec2448fc68a49203040f6124096f0": { + "address": "0x364f210f430ec2448fc68a49203040f6124096f0", + "symbol": "COINX", + "decimals": 18, + "name": "COINX", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0x364f210f430ec2448fc68a49203040f6124096f0.png", + "aggregators": ["CoinGecko", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x723ce01b57dfd7148785b90d66275005aa2edd17": { + "address": "0x723ce01b57dfd7148785b90d66275005aa2edd17", + "symbol": "LZM", + "decimals": 8, + "name": "LZM", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0x723ce01b57dfd7148785b90d66275005aa2edd17.png", + "aggregators": ["CoinGecko", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x053c784cd87b74f42e0c089f98643e79c1a3ff16": { + "address": "0x053c784cd87b74f42e0c089f98643e79c1a3ff16", + "symbol": "CSCOX", + "decimals": 18, + "name": "CSCOX", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0x053c784cd87b74f42e0c089f98643e79c1a3ff16.png", + "aggregators": ["CoinGecko", "Rubic", "Rango"], + "occurrences": 3 + }, + "0xf8a80d1cb9cfd70d03d655d9df42339846f3b3c8": { + "address": "0xf8a80d1cb9cfd70d03d655d9df42339846f3b3c8", + "symbol": "INTCX", + "decimals": 18, + "name": "INTCX", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0xf8a80d1cb9cfd70d03d655d9df42339846f3b3c8.png", + "aggregators": ["CoinGecko", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x6c511dc18572d31c2c3f7b1505cb2bbc08282fcc": { + "address": "0x6c511dc18572d31c2c3f7b1505cb2bbc08282fcc", + "symbol": "AIPO", + "decimals": 18, + "name": "Aipocalypto", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0x6c511dc18572d31c2c3f7b1505cb2bbc08282fcc.png", + "aggregators": ["CoinGecko", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x52d134c6db5889fad3542a09eaf7aa90c0fdf9e4": { + "address": "0x52d134c6db5889fad3542a09eaf7aa90c0fdf9e4", + "symbol": "BIBTA", + "decimals": 18, + "name": "Backed IBTA $ Treasury Bond 1-3yr", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0x52d134c6db5889fad3542a09eaf7aa90c0fdf9e4.png", + "aggregators": ["CoinGecko", "Rubic", "Sonarwatch"], + "occurrences": 3 + }, + "0x20c64dee8fda5269a78f2d5bdba861ca1d83df7a": { + "address": "0x20c64dee8fda5269a78f2d5bdba861ca1d83df7a", + "symbol": "BHIGH", + "decimals": 18, + "name": "Backed HIGH € High Yield Corp Bond", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0x20c64dee8fda5269a78f2d5bdba861ca1d83df7a.png", + "aggregators": ["CoinGecko", "Rubic", "Sonarwatch"], + "occurrences": 3 + }, + "0xed6c7a7b116876a4bf225cbf044681f070684fa5": { + "address": "0xed6c7a7b116876a4bf225cbf044681f070684fa5", + "symbol": "BTC.ℏ[ARB]", + "decimals": 8, + "name": "BTC.ℏ[ARB]", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0xed6c7a7b116876a4bf225cbf044681f070684fa5.png", + "aggregators": ["CoinGecko", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x0e389c83bc1d16d86412476f6103027555c03265": { + "address": "0x0e389c83bc1d16d86412476f6103027555c03265", + "symbol": "EURSPKCC", + "decimals": 5, + "name": "Spiko Digital Assets Cash & Carry Fund - Euro Share Class", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0x0e389c83bc1d16d86412476f6103027555c03265.png", + "aggregators": ["CoinGecko", "Rubic", "Rango"], + "occurrences": 3 + }, + "0xcded6b899edba762d793f44ed295248049440e1e": { + "address": "0xcded6b899edba762d793f44ed295248049440e1e", + "symbol": "FIUSD", + "decimals": 2, + "name": "FIUSD", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0xcded6b899edba762d793f44ed295248049440e1e.png", + "aggregators": ["CoinGecko", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x7712da72127d5dd213b621497d6e4899d5989e5c": { + "address": "0x7712da72127d5dd213b621497d6e4899d5989e5c", + "symbol": "RYZE", + "decimals": 18, + "name": "Ryze", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0x7712da72127d5dd213b621497d6e4899d5989e5c.png", + "aggregators": ["CoinGecko", "Rubic", "Rango"], + "occurrences": 3 + }, + "0xade6057fcafa57d6d51ffa341c64ce4814995995": { + "address": "0xade6057fcafa57d6d51ffa341c64ce4814995995", + "symbol": "BZPR1", + "decimals": 18, + "name": "Backed ZPR1 $ 1-3 Month T-Bill", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0xade6057fcafa57d6d51ffa341c64ce4814995995.png", + "aggregators": ["CoinGecko", "Rubic", "Sonarwatch"], + "occurrences": 3 + }, + "0xecf2adaff1de8a512f6e8bfe67a2c836edb25da3": { + "address": "0xecf2adaff1de8a512f6e8bfe67a2c836edb25da3", + "symbol": "WMEMO", + "decimals": 18, + "name": "Wrapped MEMO", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0xecf2adaff1de8a512f6e8bfe67a2c836edb25da3.png", + "aggregators": ["CoinGecko", "Rubic", "Rango"], + "occurrences": 3 + }, + "0xd7b675cd5c84a13d1d0f84509345530f6421b57c": { + "address": "0xd7b675cd5c84a13d1d0f84509345530f6421b57c", + "symbol": "OOOI", + "decimals": 18, + "name": "Corridor Finance", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0xd7b675cd5c84a13d1d0f84509345530f6421b57c.png", + "aggregators": ["CoinGecko", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x89d59a38eb2a91df58a709bb249bf1d13ad11037": { + "address": "0x89d59a38eb2a91df58a709bb249bf1d13ad11037", + "symbol": "ELG", + "decimals": 18, + "name": "ELG", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0x89d59a38eb2a91df58a709bb249bf1d13ad11037.png", + "aggregators": ["CoinGecko", "Rubic", "Rango"], + "occurrences": 3 + }, + "0xdbae615958708c0bc61234d2624b95077b017eb7": { + "address": "0xdbae615958708c0bc61234d2624b95077b017eb7", + "symbol": "BITPRO", + "decimals": 18, + "name": "BitPRO", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0xdbae615958708c0bc61234d2624b95077b017eb7.png", + "aggregators": ["CoinGecko", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x6a4db980360fc55762e32f6921610601e1882846": { + "address": "0x6a4db980360fc55762e32f6921610601e1882846", + "symbol": "MOC", + "decimals": 18, + "name": "Money On Chain", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0x6a4db980360fc55762e32f6921610601e1882846.png", + "aggregators": ["CoinGecko", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x1d1498166ddceee616a6d99868e1e0677300056f": { + "address": "0x1d1498166ddceee616a6d99868e1e0677300056f", + "symbol": "XSPACE", + "decimals": 18, + "name": "xSpace Token", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0x1d1498166ddceee616a6d99868e1e0677300056f.png", + "aggregators": ["CoinGecko", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x000d636bd52bfc1b3a699165ef5aa340bea8939c": { + "address": "0x000d636bd52bfc1b3a699165ef5aa340bea8939c", + "symbol": "ODG", + "decimals": 18, + "name": "Open Dollar Governance", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0x000d636bd52bfc1b3a699165ef5aa340bea8939c.png", + "aggregators": ["TraderJoe", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x1922c36f3bc762ca300b4a46bb2102f84b1684ab": { + "address": "0x1922c36f3bc762ca300b4a46bb2102f84b1684ab", + "symbol": "CMUMAMI", + "decimals": 9, + "name": "Compounded Marinated UMAMI", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0x1922c36f3bc762ca300b4a46bb2102f84b1684ab.png", + "aggregators": ["TraderJoe", "Socket", "Rubic"], + "occurrences": 3 + }, + "0x221a0f68770658c15b525d0f89f5da2baab5f321": { + "address": "0x221a0f68770658c15b525d0f89f5da2baab5f321", + "symbol": "OD", + "decimals": 18, + "name": "Open Dollar", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0x221a0f68770658c15b525d0f89f5da2baab5f321.png", + "aggregators": ["TraderJoe", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x2e516ba5bf3b7ee47fb99b09eadb60bde80a82e0": { + "address": "0x2e516ba5bf3b7ee47fb99b09eadb60bde80a82e0", + "symbol": "AEGGS", + "decimals": 18, + "name": "Arbitrum Eggs", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0x2e516ba5bf3b7ee47fb99b09eadb60bde80a82e0.png", + "aggregators": ["TraderJoe", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x3404149e9ee6f17fb41db1ce593ee48fbdcd9506": { + "address": "0x3404149e9ee6f17fb41db1ce593ee48fbdcd9506", + "symbol": "HDN", + "decimals": 18, + "name": "Hydranet", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0x3404149e9ee6f17fb41db1ce593ee48fbdcd9506.png", + "aggregators": ["TraderJoe", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x39a49bc5017fc668299cd32e734c9269acc35295": { + "address": "0x39a49bc5017fc668299cd32e734c9269acc35295", + "symbol": "PHONON", + "decimals": 18, + "name": "Phonon DAO", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0x39a49bc5017fc668299cd32e734c9269acc35295.png", + "aggregators": ["TraderJoe", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x3a33473d7990a605a88ac72a78ad4efc40a54adb": { + "address": "0x3a33473d7990a605a88ac72a78ad4efc40a54adb", + "symbol": "TIG", + "decimals": 18, + "name": "Tigris", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0x3a33473d7990a605a88ac72a78ad4efc40a54adb.png", + "aggregators": ["TraderJoe", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x4d010dbe0c6cdc0571bba026d6dfabbf40c9af28": { + "address": "0x4d010dbe0c6cdc0571bba026d6dfabbf40c9af28", + "symbol": "GEM", + "decimals": 18, + "name": "Gemdrop", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0x4d010dbe0c6cdc0571bba026d6dfabbf40c9af28.png", + "aggregators": ["TraderJoe", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x5f006745a9a192a7cd1236089f704f9b35d3b9cd": { + "address": "0x5f006745a9a192a7cd1236089f704f9b35d3b9cd", + "symbol": "ACRE", + "decimals": 18, + "name": "Arable Protocol", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0x5f006745a9a192a7cd1236089f704f9b35d3b9cd.png", + "aggregators": ["TraderJoe", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x76ce14237110c865f431e18f91fc1b225fb6fe99": { + "address": "0x76ce14237110c865f431e18f91fc1b225fb6fe99", + "symbol": "POT", + "decimals": 6, + "name": "POT Token", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0x76ce14237110c865f431e18f91fc1b225fb6fe99.png", + "aggregators": ["TraderJoe", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x802124eb78e43fd8d3d4e6daaaa4be28dc7993dc": { + "address": "0x802124eb78e43fd8d3d4e6daaaa4be28dc7993dc", + "symbol": "SPINAQ", + "decimals": 18, + "name": "Spinaq", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0x802124eb78e43fd8d3d4e6daaaa4be28dc7993dc.png", + "aggregators": ["TraderJoe", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x894a3abb764a0ef5da69c62336ac3c15b88bf106": { + "address": "0x894a3abb764a0ef5da69c62336ac3c15b88bf106", + "symbol": "CHUNKS", + "decimals": 18, + "name": "CHUNKS", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0x894a3abb764a0ef5da69c62336ac3c15b88bf106.png", + "aggregators": ["TraderJoe", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x8a66794e1aaebc7018a7b75f61f384e30ae3b159": { + "address": "0x8a66794e1aaebc7018a7b75f61f384e30ae3b159", + "symbol": "BLS", + "decimals": 18, + "name": "BLS Token", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0x8a66794e1aaebc7018a7b75f61f384e30ae3b159.png", + "aggregators": ["TraderJoe", "Rubic", "Rango"], + "occurrences": 3 + }, + "0xc9c4fd7579133701fa2769b6955e7e56bb386db1": { + "address": "0xc9c4fd7579133701fa2769b6955e7e56bb386db1", + "symbol": "BRG", + "decimals": 18, + "name": "Bridge", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0xc9c4fd7579133701fa2769b6955e7e56bb386db1.png", + "aggregators": ["TraderJoe", "Rubic", "Rango"], + "occurrences": 3 + }, + "0xe9a5af50874c0ef2748b5db70104b5ccb5557f6d": { + "address": "0xe9a5af50874c0ef2748b5db70104b5ccb5557f6d", + "symbol": "GMBL", + "decimals": 18, + "name": "GMBL COMPUTER CHiP", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0xe9a5af50874c0ef2748b5db70104b5ccb5557f6d.png", + "aggregators": ["TraderJoe", "Rubic", "Rango"], + "occurrences": 3 + }, + "0xee9857de0e55d4a54d36a5a5a73a15e57435fdca": { + "address": "0xee9857de0e55d4a54d36a5a5a73a15e57435fdca", + "symbol": "ODIN", + "decimals": 18, + "name": "AsgardX", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0xee9857de0e55d4a54d36a5a5a73a15e57435fdca.png", + "aggregators": ["TraderJoe", "Rubic", "Rango"], + "occurrences": 3 + }, + "0xef00278d7eadf3b2c05267a2f185e468ad7eab7d": { + "address": "0xef00278d7eadf3b2c05267a2f185e468ad7eab7d", + "symbol": "PEPE", + "decimals": 18, + "name": "PEPE PAD", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0xef00278d7eadf3b2c05267a2f185e468ad7eab7d.png", + "aggregators": ["TraderJoe", "Rubic", "Rango"], + "occurrences": 3 + }, + "0xf18c263ec50cc211ef3f172228549b6618f10613": { + "address": "0xf18c263ec50cc211ef3f172228549b6618f10613", + "symbol": "COLLAB", + "decimals": 18, + "name": "Collab.Land", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0xf18c263ec50cc211ef3f172228549b6618f10613.png", + "aggregators": ["TraderJoe", "Rubic", "Rango"], + "occurrences": 3 + }, + "0xf9ca0ec182a94f6231df9b14bd147ef7fb9fa17c": { + "address": "0xf9ca0ec182a94f6231df9b14bd147ef7fb9fa17c", + "symbol": "BONER", + "decimals": 18, + "name": "Boner", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0xf9ca0ec182a94f6231df9b14bd147ef7fb9fa17c.png", + "aggregators": ["TraderJoe", "Rubic", "Rango"], + "occurrences": 3 + }, + "0xfdad8edc724277e975f4955d288c6eb5b20a3146": { + "address": "0xfdad8edc724277e975f4955d288c6eb5b20a3146", + "symbol": "NSWAP", + "decimals": 8, + "name": "Nulswap", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0xfdad8edc724277e975f4955d288c6eb5b20a3146.png", + "aggregators": ["TraderJoe", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x8b5d1d8b3466ec21f8ee33ce63f319642c026142": { + "address": "0x8b5d1d8b3466ec21f8ee33ce63f319642c026142", + "symbol": "HYETH", + "decimals": 18, + "name": "High Yield ETH Index", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0x8b5d1d8b3466ec21f8ee33ce63f319642c026142.png", + "aggregators": ["LiFi", "Rubic", "Rango"], + "occurrences": 3 + }, + "0xf202ab403cd7e90197ec0f010ee897e283037706": { + "address": "0xf202ab403cd7e90197ec0f010ee897e283037706", + "symbol": "SVUSD", + "decimals": 18, + "name": "Savvy USD", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0xf202ab403cd7e90197ec0f010ee897e283037706.png", + "aggregators": ["LiFi", "Socket", "Rubic"], + "occurrences": 3 + }, + "0xfeb4dfc8c4cf7ed305bb08065d08ec6ee6728429": { + "address": "0xfeb4dfc8c4cf7ed305bb08065d08ec6ee6728429", + "symbol": "PAXG", + "decimals": 18, + "name": "PAX Gold", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0xfeb4dfc8c4cf7ed305bb08065d08ec6ee6728429.png", + "aggregators": ["LiFi", "Socket", "Rango"], + "occurrences": 3 + }, + "0xe2105bea3819d3131b5b2306d44eb3271bfcfe0e": { + "address": "0xe2105bea3819d3131b5b2306d44eb3271bfcfe0e", + "symbol": "FIEF", + "decimals": 18, + "name": "Fief", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0xe2105bea3819d3131b5b2306d44eb3271bfcfe0e.png", + "aggregators": ["LiFi", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x11f98c7e42a367dab4f200d2fdc460fb445ce9a8": { + "address": "0x11f98c7e42a367dab4f200d2fdc460fb445ce9a8", + "symbol": "SPARTA", + "decimals": 18, + "name": "SPARTA", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0x11f98c7e42a367dab4f200d2fdc460fb445ce9a8.png", + "aggregators": ["LiFi", "Rubic", "Rango"], + "occurrences": 3 + }, + "0xb21be1caf592a5dc1e75e418704d1b6d50b0d083": { + "address": "0xb21be1caf592a5dc1e75e418704d1b6d50b0d083", + "symbol": "CRX", + "decimals": 18, + "name": "CORTEX", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0xb21be1caf592a5dc1e75e418704d1b6d50b0d083.png", + "aggregators": ["LiFi", "Rubic", "Rango"], + "occurrences": 3 + }, + "0xa1150db5105987cec5fd092273d1e3cbb22b378b": { + "address": "0xa1150db5105987cec5fd092273d1e3cbb22b378b", + "symbol": "OATH", + "decimals": 18, + "name": "Oath Token", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0xa1150db5105987cec5fd092273d1e3cbb22b378b.png", + "aggregators": ["LiFi", "Socket", "Rubic"], + "occurrences": 3 + }, + "0x75c9bc761d88f70156daf83aa010e84680baf131": { + "address": "0x75c9bc761d88f70156daf83aa010e84680baf131", + "symbol": "SDL", + "decimals": 18, + "name": "Saddle DAO", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0x75c9bc761d88f70156daf83aa010e84680baf131.png", + "aggregators": ["LiFi", "Socket", "Rubic"], + "occurrences": 3 + }, + "0xda51015b73ce11f77a115bb1b8a7049e02ddecf0": { + "address": "0xda51015b73ce11f77a115bb1b8a7049e02ddecf0", + "symbol": "NEU", + "decimals": 18, + "name": "Neutra Token", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0xda51015b73ce11f77a115bb1b8a7049e02ddecf0.png", + "aggregators": ["LiFi", "Socket", "Rubic"], + "occurrences": 3 + }, + "0x4945970efeec98d393b4b979b9be265a3ae28a8b": { + "address": "0x4945970efeec98d393b4b979b9be265a3ae28a8b", + "symbol": "GMD", + "decimals": 18, + "name": "GMD", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0x4945970efeec98d393b4b979b9be265a3ae28a8b.png", + "aggregators": ["LiFi", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x8dcd3393a6e48e898a60e05baec0d568df128f89": { + "address": "0x8dcd3393a6e48e898a60e05baec0d568df128f89", + "symbol": "PTSLA", + "decimals": 18, + "name": "Poison.Finance Tesla Potion", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0x8dcd3393a6e48e898a60e05baec0d568df128f89.png", + "aggregators": ["LiFi", "Rango", "SushiSwap"], + "occurrences": 3 + }, + "0x96a993f06951b01430523d0d5590192d650ebf3e": { + "address": "0x96a993f06951b01430523d0d5590192d650ebf3e", + "symbol": "RGUSD", + "decimals": 18, + "name": "Revenue Generating USD", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0x96a993f06951b01430523d0d5590192d650ebf3e.png", + "aggregators": ["LiFi", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x370f01c998b583e7cc9a7ee79be8ed0bb27345e7": { + "address": "0x370f01c998b583e7cc9a7ee79be8ed0bb27345e7", + "symbol": "EKO", + "decimals": 18, + "name": "EchoLinkV8", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0x370f01c998b583e7cc9a7ee79be8ed0bb27345e7.png", + "aggregators": ["LiFi", "Rubic", "Rango"], + "occurrences": 3 + }, + "0xcf8600347dc375c5f2fdd6dab9bb66e0b6773cd7": { + "address": "0xcf8600347dc375c5f2fdd6dab9bb66e0b6773cd7", + "symbol": "RARI", + "decimals": 18, + "name": "Rarible", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0xcf8600347dc375c5f2fdd6dab9bb66e0b6773cd7.png", + "aggregators": ["LiFi", "Socket", "Rubic"], + "occurrences": 3 + }, + "0x11c1879227d463b60db18c17c20ae739ae8e961a": { + "address": "0x11c1879227d463b60db18c17c20ae739ae8e961a", + "symbol": "BAL.AXL", + "decimals": 18, + "name": " BAL (Axelar)", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0x11c1879227d463b60db18c17c20ae739ae8e961a.png", + "aggregators": ["LiFi", "Rubic", "Squid"], + "occurrences": 3 + }, + "0xbfeb8b6813491bb4fb823b8f451b62ef535420d1": { + "address": "0xbfeb8b6813491bb4fb823b8f451b62ef535420d1", + "symbol": "ZUNUSD", + "decimals": 18, + "name": "Zunami USD", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0xbfeb8b6813491bb4fb823b8f451b62ef535420d1.png", + "aggregators": ["LiFi", "Rubic", "Sonarwatch"], + "occurrences": 3 + }, + "0x296a0b8847bd4ed9af71a9ef238fa5be0778b611": { + "address": "0x296a0b8847bd4ed9af71a9ef238fa5be0778b611", + "symbol": "ATA", + "decimals": 18, + "name": "ATLAS", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0x296a0b8847bd4ed9af71a9ef238fa5be0778b611.png", + "aggregators": ["Socket", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x17eb7c08c4057b6c270dc0549745adbc874eb15b": { + "address": "0x17eb7c08c4057b6c270dc0549745adbc874eb15b", + "symbol": "SAT", + "decimals": 8, + "name": "Satoshi Airline Token", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0x17eb7c08c4057b6c270dc0549745adbc874eb15b.png", + "aggregators": ["Socket", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x9aee3c99934c88832399d6c6e08ad802112ebeab": { + "address": "0x9aee3c99934c88832399d6c6e08ad802112ebeab", + "symbol": "FU", + "decimals": 18, + "name": "FU Money", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0x9aee3c99934c88832399d6c6e08ad802112ebeab.png", + "aggregators": ["Socket", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x71eeba415a523f5c952cc2f06361d5443545ad28": { + "address": "0x71eeba415a523f5c952cc2f06361d5443545ad28", + "symbol": "XDAO", + "decimals": 18, + "name": "XDAO", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0x71eeba415a523f5c952cc2f06361d5443545ad28.png", + "aggregators": ["Socket", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x406d59819bc2aef682f4ff2769085c98a264f97b": { + "address": "0x406d59819bc2aef682f4ff2769085c98a264f97b", + "symbol": "BEBE", + "decimals": 6, + "name": "BEBE", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0x406d59819bc2aef682f4ff2769085c98a264f97b.png", + "aggregators": ["Socket", "Rubic", "Rango"], + "occurrences": 3 + }, + "0xd4848211b699503c772aa1bc7d33b433c4242ac3": { + "address": "0xd4848211b699503c772aa1bc7d33b433c4242ac3", + "symbol": "EPENDLE", + "decimals": 18, + "name": "Equilibria Finance ePENDLE", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0xd4848211b699503c772aa1bc7d33b433c4242ac3.png", + "aggregators": ["Rubic", "Rango", "Sonarwatch"], + "occurrences": 3 + }, + "0x1c7f32699ff9163f928089c0a4d6ee5ad5885c6f": { + "address": "0x1c7f32699ff9163f928089c0a4d6ee5ad5885c6f", + "symbol": "AGS", + "decimals": 18, + "name": "Gambler Shiba", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0x1c7f32699ff9163f928089c0a4d6ee5ad5885c6f.png", + "aggregators": ["Rubic", "Rango", "SushiSwap"], + "occurrences": 3 + }, + "0x26d3c0d9f4cc4c130097b6afdebe4f5e497e6bdf": { + "address": "0x26d3c0d9f4cc4c130097b6afdebe4f5e497e6bdf", + "symbol": "MNT", + "decimals": 6, + "name": "Mynth", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0x26d3c0d9f4cc4c130097b6afdebe4f5e497e6bdf.png", + "aggregators": ["Rubic", "Rango", "Sonarwatch"], + "occurrences": 3 + }, + "0xfb930d1a28990820c98144201637c99bea8cb91c": { + "address": "0xfb930d1a28990820c98144201637c99bea8cb91c", + "symbol": "BUMP", + "decimals": 18, + "name": "Bumper", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0xfb930d1a28990820c98144201637c99bea8cb91c.png", + "aggregators": ["Rubic", "Rango", "Sonarwatch"], + "occurrences": 3 + }, + "0x0721b3c9f19cfef1d622c918dcd431960f35e060": { + "address": "0x0721b3c9f19cfef1d622c918dcd431960f35e060", + "symbol": "SYNTH", + "decimals": 18, + "name": "SYNTHR", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0x0721b3c9f19cfef1d622c918dcd431960f35e060.png", + "aggregators": ["Rubic", "Rango", "Sonarwatch"], + "occurrences": 3 + }, + "0xbe5acfd64358805616b5cbd5277b9a85011d7cf1": { + "address": "0xbe5acfd64358805616b5cbd5277b9a85011d7cf1", + "symbol": "PCH", + "decimals": 18, + "name": "Pichi Finance", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0xbe5acfd64358805616b5cbd5277b9a85011d7cf1.png", + "aggregators": ["Rubic", "Rango", "Sonarwatch"], + "occurrences": 3 + }, + "0x6b43732a9ae9f8654d496c0a075aa4aa43057a0b": { + "address": "0x6b43732a9ae9f8654d496c0a075aa4aa43057a0b", + "symbol": "CNDY", + "decimals": 18, + "name": "Sugarverse", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0x6b43732a9ae9f8654d496c0a075aa4aa43057a0b.png", + "aggregators": ["Rubic", "Rango", "Sonarwatch"], + "occurrences": 3 + }, + "0xd6b3d81868770083307840f513a3491960b95cb6": { + "address": "0xd6b3d81868770083307840f513a3491960b95cb6", + "symbol": "$CBL", + "decimals": 18, + "name": "Credbull", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0xd6b3d81868770083307840f513a3491960b95cb6.png", + "aggregators": ["Rubic", "Rango", "Sonarwatch"], + "occurrences": 3 + }, + "0xe8b201be5357c07f0aa58693f98fb048323777f9": { + "address": "0xe8b201be5357c07f0aa58693f98fb048323777f9", + "symbol": "BLADE", + "decimals": 18, + "name": "Blade", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0xe8b201be5357c07f0aa58693f98fb048323777f9.png", + "aggregators": ["Rubic", "Rango", "Sonarwatch"], + "occurrences": 3 + }, + "0xc4cbd54ffa7a6a142fd73554cc6c23dd95cd8e01": { + "address": "0xc4cbd54ffa7a6a142fd73554cc6c23dd95cd8e01", + "symbol": "GAME", + "decimals": 18, + "name": "$GAME Token", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0xc4cbd54ffa7a6a142fd73554cc6c23dd95cd8e01.png", + "aggregators": ["Rubic", "Rango", "Sonarwatch"], + "occurrences": 3 + }, + "0x4568ca00299819998501914690d6010ae48a59ba": { + "address": "0x4568ca00299819998501914690d6010ae48a59ba", + "symbol": "AFC", + "decimals": 0, + "name": "Army of Fortune Metaverse", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0x4568ca00299819998501914690d6010ae48a59ba.png", + "aggregators": ["Rubic", "Rango", "Sonarwatch"], + "occurrences": 3 + }, + "0x619c82392cb6e41778b7d088860fea8447941f4c": { + "address": "0x619c82392cb6e41778b7d088860fea8447941f4c", + "symbol": "AFG", + "decimals": 18, + "name": "Army of Fortune Gem", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0x619c82392cb6e41778b7d088860fea8447941f4c.png", + "aggregators": ["Rubic", "Rango", "Sonarwatch"], + "occurrences": 3 + }, + "0xb9af4762c039d63e30039f1712dfab77026408c7": { + "address": "0xb9af4762c039d63e30039f1712dfab77026408c7", + "symbol": "AIBB", + "decimals": 18, + "name": "BullBear AI", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0xb9af4762c039d63e30039f1712dfab77026408c7.png", + "aggregators": ["Rubic", "Rango", "Sonarwatch"], + "occurrences": 3 + }, + "0x284592a004d945f98de5b040808578c61a4bb39a": { + "address": "0x284592a004d945f98de5b040808578c61a4bb39a", + "symbol": "AIR", + "decimals": 18, + "name": "AIR", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0x284592a004d945f98de5b040808578c61a4bb39a.png", + "aggregators": ["Rubic", "Rango", "Sonarwatch"], + "occurrences": 3 + }, + "0x493070ef5280e7a275a106a30b0414dbdb21febd": { + "address": "0x493070ef5280e7a275a106a30b0414dbdb21febd", + "symbol": "AISP", + "decimals": 9, + "name": "AI Supreme", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0x493070ef5280e7a275a106a30b0414dbdb21febd.png", + "aggregators": ["Rubic", "Rango", "Sonarwatch"], + "occurrences": 3 + }, + "0xfd2fb8de10ec41ddd898a8c7fa70d8fc100834c4": { + "address": "0xfd2fb8de10ec41ddd898a8c7fa70d8fc100834c4", + "symbol": "BOGE", + "decimals": 18, + "name": "Bitci DOGE", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0xfd2fb8de10ec41ddd898a8c7fa70d8fc100834c4.png", + "aggregators": ["Rubic", "Rango", "Sonarwatch"], + "occurrences": 3 + }, + "0x65cd2e7d7bacdac3aa9dae68fb5d548dfe1fefb5": { + "address": "0x65cd2e7d7bacdac3aa9dae68fb5d548dfe1fefb5", + "symbol": "SLUSDT", + "decimals": 18, + "name": "Shared-liquidity USDT", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0x65cd2e7d7bacdac3aa9dae68fb5d548dfe1fefb5.png", + "aggregators": ["Rubic", "Rango", "SushiSwap"], + "occurrences": 3 + }, + "0x221c5799209132766a01c4cbed0d28600d282b41": { + "address": "0x221c5799209132766a01c4cbed0d28600d282b41", + "symbol": "BTRM", + "decimals": 18, + "name": "Bitrium", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0x221c5799209132766a01c4cbed0d28600d282b41.png", + "aggregators": ["Rubic", "Rango", "Sonarwatch"], + "occurrences": 3 + }, + "0xd07d35368e04a839dee335e213302b21ef14bb4a": { + "address": "0xd07d35368e04a839dee335e213302b21ef14bb4a", + "symbol": "CRYSTAL", + "decimals": 18, + "name": "Crystal", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0xd07d35368e04a839dee335e213302b21ef14bb4a.png", + "aggregators": ["Rubic", "Rango", "Sonarwatch"], + "occurrences": 3 + }, + "0x9cce9ae579142e372a8959285e3a5a2e211904f7": { + "address": "0x9cce9ae579142e372a8959285e3a5a2e211904f7", + "symbol": "DGW", + "decimals": 18, + "name": "DGWToken", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0x9cce9ae579142e372a8959285e3a5a2e211904f7.png", + "aggregators": ["Rubic", "Rango", "Sonarwatch"], + "occurrences": 3 + }, + "0x903ca00944d0b51e50d9f4fc96167c89f211542a": { + "address": "0x903ca00944d0b51e50d9f4fc96167c89f211542a", + "symbol": "FIN", + "decimals": 18, + "name": "Poolshark", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0x903ca00944d0b51e50d9f4fc96167c89f211542a.png", + "aggregators": ["Rubic", "Rango", "Sonarwatch"], + "occurrences": 3 + }, + "0xd08c3f25862077056cb1b710937576af899a4959": { + "address": "0xd08c3f25862077056cb1b710937576af899a4959", + "symbol": "INSTETH", + "decimals": 18, + "name": "Inception stETH", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0xd08c3f25862077056cb1b710937576af899a4959.png", + "aggregators": ["Rubic", "Rango", "Sonarwatch"], + "occurrences": 3 + }, + "0xf6dae0d2be4993b00a2673360820af6bafd53887": { + "address": "0xf6dae0d2be4993b00a2673360820af6bafd53887", + "symbol": "LPOOL", + "decimals": 18, + "name": "Launchpool", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0xf6dae0d2be4993b00a2673360820af6bafd53887.png", + "aggregators": ["Rubic", "Rango", "Sonarwatch"], + "occurrences": 3 + }, + "0xfa58c669b855b29f99374d0f160db286849d139b": { + "address": "0xfa58c669b855b29f99374d0f160db286849d139b", + "symbol": "MKC", + "decimals": 18, + "name": "MonkeyCoin", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0xfa58c669b855b29f99374d0f160db286849d139b.png", + "aggregators": ["Rubic", "Rango", "SushiSwap"], + "occurrences": 3 + }, + "0xa170eaa9a74ab4b3218c736210b0421af35c3c00": { + "address": "0xa170eaa9a74ab4b3218c736210b0421af35c3c00", + "symbol": "MOLANDAK", + "decimals": 18, + "name": "Molandak", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0xa170eaa9a74ab4b3218c736210b0421af35c3c00.png", + "aggregators": ["Rubic", "Rango", "Sonarwatch"], + "occurrences": 3 + }, + "0x4dd40ec670722067241b4396dbd253c38dd820b5": { + "address": "0x4dd40ec670722067241b4396dbd253c38dd820b5", + "symbol": "MTMS", + "decimals": 18, + "name": "MTMS Network", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0x4dd40ec670722067241b4396dbd253c38dd820b5.png", + "aggregators": ["Rubic", "Rango", "Sonarwatch"], + "occurrences": 3 + }, + "0x0534d7272a8e4f24d269b56605f2bf6cf3271891": { + "address": "0x0534d7272a8e4f24d269b56605f2bf6cf3271891", + "symbol": "U", + "decimals": 18, + "name": "U Coin", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0x0534d7272a8e4f24d269b56605f2bf6cf3271891.png", + "aggregators": ["Rubic", "Rango", "Sonarwatch"], + "occurrences": 3 + }, + "0xe4421566a501045ae4285996577a36f6cf074190": { + "address": "0xe4421566a501045ae4285996577a36f6cf074190", + "symbol": "ICE", + "decimals": 18, + "name": "Ice", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0xe4421566a501045ae4285996577a36f6cf074190.png", + "aggregators": ["Rubic", "Rango", "Sonarwatch"], + "occurrences": 3 + }, + "0x51b902f19a56f0c8e409a34a215ad2673edf3284": { + "address": "0x51b902f19a56f0c8e409a34a215ad2673edf3284", + "symbol": "NFTE", + "decimals": 18, + "name": "NFTEarthOFT", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0x51b902f19a56f0c8e409a34a215ad2673edf3284.png", + "aggregators": ["Rubic", "Rango", "SushiSwap"], + "occurrences": 3 + }, + "0xef04804e1e474d3f9b73184d7ef5d786f3fce930": { + "address": "0xef04804e1e474d3f9b73184d7ef5d786f3fce930", + "symbol": "WSG", + "decimals": 18, + "name": "Wall Street Games", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0xef04804e1e474d3f9b73184d7ef5d786f3fce930.png", + "aggregators": ["Rubic", "Rango", "Sonarwatch"], + "occurrences": 3 + }, + "0xed5740209fcf6974d6f3a5f11e295b5e468ac27c": { + "address": "0xed5740209fcf6974d6f3a5f11e295b5e468ac27c", + "symbol": "KWL", + "decimals": 18, + "name": "KEWL EXCHANGE", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0xed5740209fcf6974d6f3a5f11e295b5e468ac27c.png", + "aggregators": ["Rubic", "Rango", "Sonarwatch"], + "occurrences": 3 + }, + "0xd4d026322c88c2d49942a75dff920fcfbc5614c1": { + "address": "0xd4d026322c88c2d49942a75dff920fcfbc5614c1", + "symbol": "OLE", + "decimals": 18, + "name": "OpenLeverage", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0xd4d026322c88c2d49942a75dff920fcfbc5614c1.png", + "aggregators": ["Rubic", "Rango", "SushiSwap"], + "occurrences": 3 + }, + "0xb261104a83887ae92392fb5ce5899fcfe5481456": { + "address": "0xb261104a83887ae92392fb5ce5899fcfe5481456", + "symbol": "NFTE", + "decimals": 18, + "name": "NFTEarth", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0xb261104a83887ae92392fb5ce5899fcfe5481456.png", + "aggregators": ["Rubic", "Rango", "SushiSwap"], + "occurrences": 3 + }, + "0x1fae2a29940015632f2a6ce006dfa7e3225515a7": { + "address": "0x1fae2a29940015632f2a6ce006dfa7e3225515a7", + "symbol": "NIFLOKI", + "decimals": 9, + "name": "Nitro Floki", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0x1fae2a29940015632f2a6ce006dfa7e3225515a7.png", + "aggregators": ["Rubic", "Rango", "SushiSwap"], + "occurrences": 3 + }, + "0x910d3c72c5177c3f1bfb0863b793ec23fa7f6990": { + "address": "0x910d3c72c5177c3f1bfb0863b793ec23fa7f6990", + "symbol": "NISHIB", + "decimals": 18, + "name": "NitroShiba", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0x910d3c72c5177c3f1bfb0863b793ec23fa7f6990.png", + "aggregators": ["Rubic", "Rango", "SushiSwap"], + "occurrences": 3 + }, + "0xf018865b26ffab9cd1735dcca549d95b0cb9ea19": { + "address": "0xf018865b26ffab9cd1735dcca549d95b0cb9ea19", + "symbol": "JDPX", + "decimals": 18, + "name": "Jones DPX", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0xf018865b26ffab9cd1735dcca549d95b0cb9ea19.png", + "aggregators": ["Rubic", "Rango", "SushiSwap"], + "occurrences": 3 + }, + "0x5d4974f8543bc78d43fd1044ecfdb9d85482aa21": { + "address": "0x5d4974f8543bc78d43fd1044ecfdb9d85482aa21", + "symbol": "BAMA", + "decimals": 18, + "name": "Bitbama", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0x5d4974f8543bc78d43fd1044ecfdb9d85482aa21.png", + "aggregators": ["Rubic", "Rango", "Sonarwatch"], + "occurrences": 3 + }, + "0x5a7a183b6b44dc4ec2e3d2ef43f98c5152b1d76d": { + "address": "0x5a7a183b6b44dc4ec2e3d2ef43f98c5152b1d76d", + "symbol": "INETH", + "decimals": 18, + "name": "Inception Restaked ETH", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0x5a7a183b6b44dc4ec2e3d2ef43f98c5152b1d76d.png", + "aggregators": ["Rubic", "Rango", "Sonarwatch"], + "occurrences": 3 + }, + "0xa992b7dde2ed1632d0b66c56744e914ed673a37f": { + "address": "0xa992b7dde2ed1632d0b66c56744e914ed673a37f", + "symbol": "AGIO", + "decimals": 18, + "name": "Agio", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0xa992b7dde2ed1632d0b66c56744e914ed673a37f.png", + "aggregators": ["Rubic", "Rango", "Sonarwatch"], + "occurrences": 3 + }, + "0x9483ab65847a447e36d21af1cab8c87e9712ff93": { + "address": "0x9483ab65847a447e36d21af1cab8c87e9712ff93", + "symbol": "WUSDR", + "decimals": 9, + "name": "Wrapped USDR", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0x9483ab65847a447e36d21af1cab8c87e9712ff93.png", + "aggregators": ["Rubic", "Rango", "Sonarwatch"], + "occurrences": 3 + }, + "0x2c110867ca90e43d372c1c2e92990b00ea32818b": { + "address": "0x2c110867ca90e43d372c1c2e92990b00ea32818b", + "symbol": "STBZ", + "decimals": 18, + "name": "Stabilize", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0x2c110867ca90e43d372c1c2e92990b00ea32818b.png", + "aggregators": ["Rubic", "Rango", "Sonarwatch"], + "occurrences": 3 + }, + "0x4b019aaa21e98e212d31e54c843e73ff34d25717": { + "address": "0x4b019aaa21e98e212d31e54c843e73ff34d25717", + "symbol": "TUXC", + "decimals": 18, + "name": "TUX Project", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0x4b019aaa21e98e212d31e54c843e73ff34d25717.png", + "aggregators": ["Rubic", "Rango", "Sonarwatch"], + "occurrences": 3 + }, + "0xdf4ef6ee483953fe3b84abd08c6a060445c01170": { + "address": "0xdf4ef6ee483953fe3b84abd08c6a060445c01170", + "symbol": "WACME", + "decimals": 8, + "name": "Wrapped Accumulate", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0xdf4ef6ee483953fe3b84abd08c6a060445c01170.png", + "aggregators": ["Rubic", "Rango", "Sonarwatch"], + "occurrences": 3 + }, + "0x36295e7de7024362ad95bb8be93d6d6d21d7f6c1": { + "address": "0x36295e7de7024362ad95bb8be93d6d6d21d7f6c1", + "symbol": "XGPU", + "decimals": 18, + "name": "XGPU AI", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0x36295e7de7024362ad95bb8be93d6d6d21d7f6c1.png", + "aggregators": ["Rubic", "Rango", "Sonarwatch"], + "occurrences": 3 + }, + "0x625e7708f30ca75bfd92586e17077590c60eb4cd": { + "address": "0x625e7708f30ca75bfd92586e17077590c60eb4cd", + "symbol": "AUSDC.E", + "decimals": 6, + "name": "Aave v3 USDC.e", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0x625e7708f30ca75bfd92586e17077590c60eb4cd.png", + "aggregators": [ + "TraderJoe", + "1inch", + "LiFi", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 6 + }, + "0x0c06ccf38114ddfc35e07427b9424adcca9f44f8": { + "address": "0x0c06ccf38114ddfc35e07427b9424adcca9f44f8", + "symbol": "EURE", + "decimals": 18, + "name": "EURE", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0x0c06ccf38114ddfc35e07427b9424adcca9f44f8.png", + "aggregators": [ + "CoinGecko", + "1inch", + "LiFi", + "Socket", + "Rubic", + "Rango" + ], + "occurrences": 6 + }, + "0xef4a1d459d62dfd2ebb9c45b04f90f0a7ba1d56e": { + "address": "0xef4a1d459d62dfd2ebb9c45b04f90f0a7ba1d56e", + "symbol": "PEPE", + "decimals": 18, + "name": "Pepe Community", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0xef4a1d459d62dfd2ebb9c45b04f90f0a7ba1d56e.png", + "aggregators": [ + "Metamask", + "LiFi", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 6 + }, + "0x74ccbe53f77b08632ce0cb91d3a545bf6b8e0979": { + "address": "0x74ccbe53f77b08632ce0cb91d3a545bf6b8e0979", + "symbol": "BOMB", + "decimals": 18, + "name": "Fantom Bomb", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0x74ccbe53f77b08632ce0cb91d3a545bf6b8e0979.png", + "aggregators": [ + "TraderJoe", + "LiFi", + "Rubic", + "Squid", + "Rango", + "Sonarwatch" + ], + "occurrences": 6 + }, + "0xf75ee6d319741057a82a88eeff1dbafab7307b69": { + "address": "0xf75ee6d319741057a82a88eeff1dbafab7307b69", + "symbol": "KRL", + "decimals": 18, + "name": "KRYLL", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0xf75ee6d319741057a82a88eeff1dbafab7307b69.png", + "aggregators": [ + "CoinGecko", + "LiFi", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x0419e8bfbbb2623728c3a6129090da4ff4e48113": { + "address": "0x0419e8bfbbb2623728c3a6129090da4ff4e48113", + "symbol": "TEL", + "decimals": 2, + "name": "Telcoin", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0x0419e8bfbbb2623728c3a6129090da4ff4e48113.png", + "aggregators": [ + "CoinGecko", + "LiFi", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0xd089b4cb88dacf4e27be869a00e9f7e2e3c18193": { + "address": "0xd089b4cb88dacf4e27be869a00e9f7e2e3c18193", + "symbol": "WAARBGHO", + "decimals": 18, + "name": "Wrapped Aave Arbitrum GHO", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0xd089b4cb88dacf4e27be869a00e9f7e2e3c18193.png", + "aggregators": ["CoinGecko", "1inch", "LiFi", "Rubic", "Rango"], + "occurrences": 5 + }, + "0x4ff50c17df0d1b788d021acd85039810a1aa68a1": { + "address": "0x4ff50c17df0d1b788d021acd85039810a1aa68a1", + "symbol": "WAARBEZETH", + "decimals": 18, + "name": "Wrapped Aave Arbitrum ezETH", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0x4ff50c17df0d1b788d021acd85039810a1aa68a1.png", + "aggregators": ["CoinGecko", "1inch", "LiFi", "Rubic", "Rango"], + "occurrences": 5 + }, + "0x0a1a1a107e45b7ced86833863f482bc5f4ed82ef": { + "address": "0x0a1a1a107e45b7ced86833863f482bc5f4ed82ef", + "symbol": "USDAI", + "decimals": 18, + "name": "USDai", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0x0a1a1a107e45b7ced86833863f482bc5f4ed82ef.png", + "aggregators": ["CoinGecko", "LiFi", "Socket", "Rubic", "Rango"], + "occurrences": 5 + }, + "0x0b2b2b2076d95dda7817e785989fe353fe955ef9": { + "address": "0x0b2b2b2076d95dda7817e785989fe353fe955ef9", + "symbol": "SUSDAI", + "decimals": 18, + "name": "Staked USDai", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0x0b2b2b2076d95dda7817e785989fe353fe955ef9.png", + "aggregators": ["CoinGecko", "LiFi", "Socket", "Rubic", "Rango"], + "occurrences": 5 + }, + "0x4ce13a79f45c1be00bdabd38b764ac28c082704e": { + "address": "0x4ce13a79f45c1be00bdabd38b764ac28c082704e", + "symbol": "WAARBWETH", + "decimals": 18, + "name": "Wrapped Aave Arbitrum WETH", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0x4ce13a79f45c1be00bdabd38b764ac28c082704e.png", + "aggregators": ["CoinGecko", "1inch", "LiFi", "Rubic", "Rango"], + "occurrences": 5 + }, + "0x17573150d67d820542efb24210371545a4868b03": { + "address": "0x17573150d67d820542efb24210371545a4868b03", + "symbol": "ALETH", + "decimals": 18, + "name": "Alchemix ETH", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0x17573150d67d820542efb24210371545a4868b03.png", + "aggregators": ["CoinGecko", "LiFi", "Rubic", "Squid", "Rango"], + "occurrences": 5 + }, + "0x211cc4dd073734da055fbf44a2b4667d5e5fe5d2": { + "address": "0x211cc4dd073734da055fbf44a2b4667d5e5fe5d2", + "symbol": "SUSDE", + "decimals": 18, + "name": "Staked USDe", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0x211cc4dd073734da055fbf44a2b4667d5e5fe5d2.png", + "aggregators": ["CoinGecko", "LiFi", "Socket", "Rubic", "Rango"], + "occurrences": 5 + }, + "0x58538e6a46e07434d7e7375bc268d3cb839c0133": { + "address": "0x58538e6a46e07434d7e7375bc268d3cb839c0133", + "symbol": "ENA", + "decimals": 18, + "name": "ENA", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0x58538e6a46e07434d7e7375bc268d3cb839c0133.png", + "aggregators": ["CoinGecko", "LiFi", "Socket", "Rubic", "Rango"], + "occurrences": 5 + }, + "0x064f8b858c2a603e1b106a2039f5446d32dc81c1": { + "address": "0x064f8b858c2a603e1b106a2039f5446d32dc81c1", + "symbol": "OLAS", + "decimals": 18, + "name": "Autonolas", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0x064f8b858c2a603e1b106a2039f5446d32dc81c1.png", + "aggregators": [ + "CoinGecko", + "LiFi", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0xe231db5f348d709239ef1741ea30961b3b635a61": { + "address": "0xe231db5f348d709239ef1741ea30961b3b635a61", + "symbol": "YNETHX", + "decimals": 18, + "name": "ynETH MAX", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0xe231db5f348d709239ef1741ea30961b3b635a61.png", + "aggregators": [ + "CoinGecko", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x5829d6fe7528bc8e92c4e81cc8f20a528820b51a": { + "address": "0x5829d6fe7528bc8e92c4e81cc8f20a528820b51a", + "symbol": "OVER", + "decimals": 18, + "name": "Overtime", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0x5829d6fe7528bc8e92c4e81cc8f20a528820b51a.png", + "aggregators": [ + "CoinGecko", + "LiFi", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x5bff88ca1442c2496f7e475e9e7786383bc070c0": { + "address": "0x5bff88ca1442c2496f7e475e9e7786383bc070c0", + "symbol": "SFRXUSD", + "decimals": 18, + "name": "Staked Frax USD", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0x5bff88ca1442c2496f7e475e9e7786383bc070c0.png", + "aggregators": [ + "CoinGecko", + "LiFi", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x7bbcf1b600565ae023a1806ef637af4739de3255": { + "address": "0x7bbcf1b600565ae023a1806ef637af4739de3255", + "symbol": "PRFI", + "decimals": 18, + "name": "PrimeFi", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0x7bbcf1b600565ae023a1806ef637af4739de3255.png", + "aggregators": [ + "CoinGecko", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x09f569af991c730cae05a392bae6490558ef2214": { + "address": "0x09f569af991c730cae05a392bae6490558ef2214", + "symbol": "SILO", + "decimals": 18, + "name": "Silo Finance", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0x09f569af991c730cae05a392bae6490558ef2214.png", + "aggregators": [ + "CoinGecko", + "LiFi", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0xc11158c5da9db1d553ed28f0c2ba1cbedd42cfcb": { + "address": "0xc11158c5da9db1d553ed28f0c2ba1cbedd42cfcb", + "symbol": "PAW", + "decimals": 18, + "name": "PAW", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0xc11158c5da9db1d553ed28f0c2ba1cbedd42cfcb.png", + "aggregators": [ + "CoinGecko", + "LiFi", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x06e90a57d1ece8752d6ce92d1ad348ead5eae4f4": { + "address": "0x06e90a57d1ece8752d6ce92d1ad348ead5eae4f4", + "symbol": "SMURFCAT", + "decimals": 18, + "name": "Real Smurf Cat", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0x06e90a57d1ece8752d6ce92d1ad348ead5eae4f4.png", + "aggregators": [ + "CoinGecko", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x7ff7fa94b8b66ef313f7970d4eebd2cb3103a2c0": { + "address": "0x7ff7fa94b8b66ef313f7970d4eebd2cb3103a2c0", + "symbol": "VANA", + "decimals": 18, + "name": "VANA", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0x7ff7fa94b8b66ef313f7970d4eebd2cb3103a2c0.png", + "aggregators": ["CoinGecko", "LiFi", "Socket", "Rubic", "Rango"], + "occurrences": 5 + }, + "0x17e1e5c6bc9ebb11647c94e1c5e3ba619f2781ea": { + "address": "0x17e1e5c6bc9ebb11647c94e1c5e3ba619f2781ea", + "symbol": "HOT", + "decimals": 18, + "name": "HOT", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0x17e1e5c6bc9ebb11647c94e1c5e3ba619f2781ea.png", + "aggregators": ["CoinGecko", "LiFi", "Socket", "Rubic", "Rango"], + "occurrences": 5 + }, + "0x6e4cc0ab2b4d2edafa6723cfa1582229f1dd1be1": { + "address": "0x6e4cc0ab2b4d2edafa6723cfa1582229f1dd1be1", + "symbol": "ZUSD", + "decimals": 6, + "name": "ZUSD", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0x6e4cc0ab2b4d2edafa6723cfa1582229f1dd1be1.png", + "aggregators": [ + "TraderJoe", + "LiFi", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0xe7dcd50836d0a28c959c72d72122fedb8e245a6c": { + "address": "0xe7dcd50836d0a28c959c72d72122fedb8e245a6c", + "symbol": "ALEPH", + "decimals": 18, + "name": "Aleph im", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0xe7dcd50836d0a28c959c72d72122fedb8e245a6c.png", + "aggregators": ["UniswapLabs", "LiFi", "Socket", "Rango"], + "occurrences": 4 + }, + "0x07d65c18cecba423298c0aeb5d2beded4dfd5736": { + "address": "0x07d65c18cecba423298c0aeb5d2beded4dfd5736", + "symbol": "ETHFI", + "decimals": 18, + "name": "ether.fi governance token", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0x07d65c18cecba423298c0aeb5d2beded4dfd5736.png", + "aggregators": ["UniswapLabs", "LiFi", "Socket", "Rango"], + "occurrences": 4 + }, + "0x863708032b5c328e11abcbc0df9d79c71fc52a48": { + "address": "0x863708032b5c328e11abcbc0df9d79c71fc52a48", + "symbol": "EURC", + "decimals": 6, + "name": "Euro Coin", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0x863708032b5c328e11abcbc0df9d79c71fc52a48.png", + "aggregators": ["UniswapLabs", "LiFi", "Socket", "Rango"], + "occurrences": 4 + }, + "0x4be87c766a7ce11d5cc864b6c3abb7457dcc4cc9": { + "address": "0x4be87c766a7ce11d5cc864b6c3abb7457dcc4cc9", + "symbol": "FET", + "decimals": 18, + "name": "Fetch ai", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0x4be87c766a7ce11d5cc864b6c3abb7457dcc4cc9.png", + "aggregators": ["UniswapLabs", "LiFi", "Socket", "Rango"], + "occurrences": 4 + }, + "0xc27e7325a6bea1fcc06de7941473f5279bfd1182": { + "address": "0xc27e7325a6bea1fcc06de7941473f5279bfd1182", + "symbol": "GAL", + "decimals": 18, + "name": "Galxe", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0xc27e7325a6bea1fcc06de7941473f5279bfd1182.png", + "aggregators": ["UniswapLabs", "LiFi", "Socket", "Rango"], + "occurrences": 4 + }, + "0x5445972e76c5e4cedd12b6e2bcef69133e15992f": { + "address": "0x5445972e76c5e4cedd12b6e2bcef69133e15992f", + "symbol": "MV", + "decimals": 18, + "name": "GensoKishi Metaverse", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0x5445972e76c5e4cedd12b6e2bcef69133e15992f.png", + "aggregators": ["UniswapLabs", "LiFi", "Socket", "Rango"], + "occurrences": 4 + }, + "0x3ad63b3c0ea6d7a093ff98fde040baddc389ecdc": { + "address": "0x3ad63b3c0ea6d7a093ff98fde040baddc389ecdc", + "symbol": "NFLX.D", + "decimals": 18, + "name": "Dinari NFLX", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0x3ad63b3c0ea6d7a093ff98fde040baddc389ecdc.png", + "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0xc9d23ed2adb0f551369946bd377f8644ce1ca5c4": { + "address": "0xc9d23ed2adb0f551369946bd377f8644ce1ca5c4", + "symbol": "HYPER", + "decimals": 18, + "name": "Hyperlane", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0xc9d23ed2adb0f551369946bd377f8644ce1ca5c4.png", + "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0xc845b2894dbddd03858fd2d643b4ef725fe0849d": { + "address": "0xc845b2894dbddd03858fd2d643b4ef725fe0849d", + "symbol": "NVDAX", + "decimals": 18, + "name": "NVIDIA xStock", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0xc845b2894dbddd03858fd2d643b4ef725fe0849d.png", + "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0xce38e140fc3982a6bcebc37b040913ef2cd6c5a7": { + "address": "0xce38e140fc3982a6bcebc37b040913ef2cd6c5a7", + "symbol": "AAPL.D", + "decimals": 18, + "name": "Dinari AAPL", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0xce38e140fc3982a6bcebc37b040913ef2cd6c5a7.png", + "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0x9c46e1b70d447b770dbfc8d450543a431af6df3a": { + "address": "0x9c46e1b70d447b770dbfc8d450543a431af6df3a", + "symbol": "USFR.D", + "decimals": 18, + "name": "Dinari USFR", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0x9c46e1b70d447b770dbfc8d450543a431af6df3a.png", + "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0x7f6501d3b98ee91f9b9535e4b0ac710fb0f9e0bc": { + "address": "0x7f6501d3b98ee91f9b9535e4b0ac710fb0f9e0bc", + "symbol": "WAARBUSDCN", + "decimals": 6, + "name": "Wrapped Aave Arbitrum USDCn", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0x7f6501d3b98ee91f9b9535e4b0ac710fb0f9e0bc.png", + "aggregators": ["CoinGecko", "1inch", "Rubic", "Rango"], + "occurrences": 4 + }, + "0xe98fc055c99decd8da0c111b090885d5d15c774e": { + "address": "0xe98fc055c99decd8da0c111b090885d5d15c774e", + "symbol": "WAARBWSTETH", + "decimals": 18, + "name": "Wrapped Aave Arbitrum wstETH", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0xe98fc055c99decd8da0c111b090885d5d15c774e.png", + "aggregators": ["CoinGecko", "1inch", "Rubic", "Rango"], + "occurrences": 4 + }, + "0x67bad479f77488f0f427584e267e66086a7da43a": { + "address": "0x67bad479f77488f0f427584e267e66086a7da43a", + "symbol": "ARM.D", + "decimals": 18, + "name": "Dinari ARM", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0x67bad479f77488f0f427584e267e66086a7da43a.png", + "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0x77308f8b63a99b24b262d930e0218ed2f49f8475": { + "address": "0x77308f8b63a99b24b262d930e0218ed2f49f8475", + "symbol": "MSFT.D", + "decimals": 18, + "name": "Dinari MSFT", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0x77308f8b63a99b24b262d930e0218ed2f49f8475.png", + "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0x9da913f4dca9b210a232d588113047685a4ed4b1": { + "address": "0x9da913f4dca9b210a232d588113047685a4ed4b1", + "symbol": "BRK.A.D", + "decimals": 18, + "name": "Dinari BRK.A", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0x9da913f4dca9b210a232d588113047685a4ed4b1.png", + "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0x8ad3c73f833d3f9a523ab01476625f269aeb7cf0": { + "address": "0x8ad3c73f833d3f9a523ab01476625f269aeb7cf0", + "symbol": "TSLAX", + "decimals": 18, + "name": "Tesla xStock", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0x8ad3c73f833d3f9a523ab01476625f269aeb7cf0.png", + "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0x2363fd1235c1b6d3a5088ddf8df3a0b3a30c5293": { + "address": "0x2363fd1235c1b6d3a5088ddf8df3a0b3a30c5293", + "symbol": "VX", + "decimals": 18, + "name": "Visa xStock", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0x2363fd1235c1b6d3a5088ddf8df3a0b3a30c5293.png", + "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0x28bf1c9ee2eb746a2d61a0bec97a344028171d6c": { + "address": "0x28bf1c9ee2eb746a2d61a0bec97a344028171d6c", + "symbol": "AMC.D", + "decimals": 18, + "name": "Dinari AMC", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0x28bf1c9ee2eb746a2d61a0bec97a344028171d6c.png", + "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0xb365cd2588065f522d379ad19e903304f6b622c6": { + "address": "0xb365cd2588065f522d379ad19e903304f6b622c6", + "symbol": "MAX", + "decimals": 18, + "name": "Mastercard xStock", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0xb365cd2588065f522d379ad19e903304f6b622c6.png", + "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0x36d37b6cbca364cf1d843eff8c2f6824491bcf81": { + "address": "0x36d37b6cbca364cf1d843eff8c2f6824491bcf81", + "symbol": "TSLA.D", + "decimals": 18, + "name": "Dinari TSLA", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0x36d37b6cbca364cf1d843eff8c2f6824491bcf81.png", + "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0xdb0482cfad4789798623e64b15eeba01b16e917c": { + "address": "0xdb0482cfad4789798623e64b15eeba01b16e917c", + "symbol": "JNJX", + "decimals": 18, + "name": "Johnson & Johnson xStock", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0xdb0482cfad4789798623e64b15eeba01b16e917c.png", + "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0x85667409a723684fe1e57dd1abde8d88c2f54214": { + "address": "0x85667409a723684fe1e57dd1abde8d88c2f54214", + "symbol": "MAGICGLP", + "decimals": 18, + "name": "MagicGLP", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0x85667409a723684fe1e57dd1abde8d88c2f54214.png", + "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0x519062155b0591627c8a0c0958110a8c5639dca6": { + "address": "0x519062155b0591627c8a0c0958110a8c5639dca6", + "symbol": "META.D", + "decimals": 18, + "name": "Dinari META", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0x519062155b0591627c8a0c0958110a8c5639dca6.png", + "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0x63db244bc895b3accec6698ce11b0dbd1d3e1c44": { + "address": "0x63db244bc895b3accec6698ce11b0dbd1d3e1c44", + "symbol": "TRT", + "decimals": 18, + "name": "TRUST AI", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0x63db244bc895b3accec6698ce11b0dbd1d3e1c44.png", + "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0x5837e4189819637853a357af36650902347f5e73": { + "address": "0x5837e4189819637853a357af36650902347f5e73", + "symbol": "KPK_USDC_YIELDV2", + "decimals": 18, + "name": "kpk USDC Yield V2 Morpho Vault (Arbitrum)", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0x5837e4189819637853a357af36650902347f5e73.png", + "aggregators": ["CoinGecko", "LiFi", "Rubic", "Rango"], + "occurrences": 4 + }, + "0x3c9f23db4ddc5655f7be636358d319a3de1ff0c4": { + "address": "0x3c9f23db4ddc5655f7be636358d319a3de1ff0c4", + "symbol": "DIS.D", + "decimals": 18, + "name": "Dinari DIS", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0x3c9f23db4ddc5655f7be636358d319a3de1ff0c4.png", + "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0xf4bd09b048248876e39fcf2e0cdf1aee1240a9d2": { + "address": "0xf4bd09b048248876e39fcf2e0cdf1aee1240a9d2", + "symbol": "SPY.D", + "decimals": 18, + "name": "Dinari SPY", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0xf4bd09b048248876e39fcf2e0cdf1aee1240a9d2.png", + "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0x118346c2bb9d24412ed58c53bf9bb6f61a20d7ec": { + "address": "0x118346c2bb9d24412ed58c53bf9bb6f61a20d7ec", + "symbol": "PLD.D", + "decimals": 18, + "name": "Dinari PLD", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0x118346c2bb9d24412ed58c53bf9bb6f61a20d7ec.png", + "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0x97ec5dada8262bd922bffd54a93f5a11efe0b136": { + "address": "0x97ec5dada8262bd922bffd54a93f5a11efe0b136", + "symbol": "RDDT.D", + "decimals": 18, + "name": "Dinari RDDT", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0x97ec5dada8262bd922bffd54a93f5a11efe0b136.png", + "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0xf1f18f765f118c3598cc54dcac1d0e12066263fe": { + "address": "0xf1f18f765f118c3598cc54dcac1d0e12066263fe", + "symbol": "PFE.D", + "decimals": 18, + "name": "Dinari PFE", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0xf1f18f765f118c3598cc54dcac1d0e12066263fe.png", + "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0x96702be57cd9777f835117a809c7124fe4ec989a": { + "address": "0x96702be57cd9777f835117a809c7124fe4ec989a", + "symbol": "METAX", + "decimals": 18, + "name": "Meta xStock", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0x96702be57cd9777f835117a809c7124fe4ec989a.png", + "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0xfbf2398df672cee4afcc2a4a733222331c742a6a": { + "address": "0xfbf2398df672cee4afcc2a4a733222331c742a6a", + "symbol": "ABBVX", + "decimals": 18, + "name": "AbbVie xStock", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0xfbf2398df672cee4afcc2a4a733222331c742a6a.png", + "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0x36c424a6ec0e264b1616102ad63ed2ad7857413e": { + "address": "0x36c424a6ec0e264b1616102ad63ed2ad7857413e", + "symbol": "PEPX", + "decimals": 18, + "name": "PepsiCo xStock", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0x36c424a6ec0e264b1616102ad63ed2ad7857413e.png", + "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0xd9fc3e075d45254a1d834fea18af8041207dea0a": { + "address": "0xd9fc3e075d45254a1d834fea18af8041207dea0a", + "symbol": "JPMX", + "decimals": 18, + "name": "JPMorgan Chase xStock", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0xd9fc3e075d45254a1d834fea18af8041207dea0a.png", + "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0x17d8186ed8f68059124190d147174d0f6697dc40": { + "address": "0x17d8186ed8f68059124190d147174d0f6697dc40", + "symbol": "MRKX", + "decimals": 18, + "name": "Merck xStock", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0x17d8186ed8f68059124190d147174d0f6697dc40.png", + "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0xf9523e369c5f55ad72dbaa75b0a9b92b3d8b147e": { + "address": "0xf9523e369c5f55ad72dbaa75b0a9b92b3d8b147e", + "symbol": "NVOX", + "decimals": 18, + "name": "Novo Nordisk xStock", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0xf9523e369c5f55ad72dbaa75b0a9b92b3d8b147e.png", + "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0xb0f66bdb39acbb043308eb9dbe78f5bb47ea5430": { + "address": "0xb0f66bdb39acbb043308eb9dbe78f5bb47ea5430", + "symbol": "HDN", + "decimals": 18, + "name": "Hydranet", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0xb0f66bdb39acbb043308eb9dbe78f5bb47ea5430.png", + "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0xd8f728adb72a46ae2c92234ae8870d04907786c5": { + "address": "0xd8f728adb72a46ae2c92234ae8870d04907786c5", + "symbol": "AMD.D", + "decimals": 18, + "name": "Dinari AMD", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0xd8f728adb72a46ae2c92234ae8870d04907786c5.png", + "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0x8240affe697cde618ad05c3c8963f5bfe152650b": { + "address": "0x8240affe697cde618ad05c3c8963f5bfe152650b", + "symbol": "AMZN.D", + "decimals": 18, + "name": "Dinari AMZN", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0x8240affe697cde618ad05c3c8963f5bfe152650b.png", + "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0x8e50d11a54cff859b202b7fe5225353be0646410": { + "address": "0x8e50d11a54cff859b202b7fe5225353be0646410", + "symbol": "GOOGL.D", + "decimals": 18, + "name": "Dinari GOOGL", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0x8e50d11a54cff859b202b7fe5225353be0646410.png", + "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0xb415998a7bb6f11dc589e0eb20adf586ba32f12a": { + "address": "0xb415998a7bb6f11dc589e0eb20adf586ba32f12a", + "symbol": "GME.D", + "decimals": 18, + "name": "Dinari GME", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0xb415998a7bb6f11dc589e0eb20adf586ba32f12a.png", + "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0xf34450d1f23902657cffb2636153677be7d38750": { + "address": "0xf34450d1f23902657cffb2636153677be7d38750", + "symbol": "NOX", + "decimals": 9, + "name": "Equinox Ecosystem", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0xf34450d1f23902657cffb2636153677be7d38750.png", + "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0x1ac765b5bea23184802c7d2d497f7c33f1444a9e": { + "address": "0x1ac765b5bea23184802c7d2d497f7c33f1444a9e", + "symbol": "PFEX", + "decimals": 18, + "name": "Pfizer xStock", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0x1ac765b5bea23184802c7d2d497f7c33f1444a9e.png", + "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0xa6d12574efb239fc1d2099732bd8b5dc6306897f": { + "address": "0xa6d12574efb239fc1d2099732bd8b5dc6306897f", + "symbol": "WAARBUSDT", + "decimals": 6, + "name": "Wrapped Aave Arbitrum USDT", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0xa6d12574efb239fc1d2099732bd8b5dc6306897f.png", + "aggregators": ["CoinGecko", "1inch", "Rubic", "Rango"], + "occurrences": 4 + }, + "0x80a77a372c1e12accda84299492f404902e2da67": { + "address": "0x80a77a372c1e12accda84299492f404902e2da67", + "symbol": "MCDX", + "decimals": 18, + "name": "McDonald's xStock", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0x80a77a372c1e12accda84299492f404902e2da67.png", + "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0x80eede496655fb9047dd39d9f418d5483ed600df": { + "address": "0x80eede496655fb9047dd39d9f418d5483ed600df", + "symbol": "FRXUSD", + "decimals": 18, + "name": "FRXUSD", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0x80eede496655fb9047dd39d9f418d5483ed600df.png", + "aggregators": ["CoinGecko", "LiFi", "Rubic", "Rango"], + "occurrences": 4 + }, + "0xc53ac24320e3a54c7211e4993c8095078a0cb3cf": { + "address": "0xc53ac24320e3a54c7211e4993c8095078a0cb3cf", + "symbol": "WGC", + "decimals": 6, + "name": "Wild Goat Coin", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0xc53ac24320e3a54c7211e4993c8095078a0cb3cf.png", + "aggregators": ["CoinGecko", "Socket", "Rubic", "Rango"], + "occurrences": 4 + }, + "0x083fb956333f9c1568f66fc0d0be451f31f8c46c": { + "address": "0x083fb956333f9c1568f66fc0d0be451f31f8c46c", + "symbol": "RIZ", + "decimals": 8, + "name": "Rivalz Network", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0x083fb956333f9c1568f66fc0d0be451f31f8c46c.png", + "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0x1792865d493fe4dfdd504010d3c0f6da11e8046d": { + "address": "0x1792865d493fe4dfdd504010d3c0f6da11e8046d", + "symbol": "CLBTC", + "decimals": 18, + "name": "clBTC", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0x1792865d493fe4dfdd504010d3c0f6da11e8046d.png", + "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0xc65d8d96cdddb31328186efa113a460b0af9ec63": { + "address": "0xc65d8d96cdddb31328186efa113a460b0af9ec63", + "symbol": "PELL", + "decimals": 18, + "name": "Pell Network Token", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0xc65d8d96cdddb31328186efa113a460b0af9ec63.png", + "aggregators": ["CoinGecko", "Rubic", "Squid", "Rango"], + "occurrences": 4 + }, + "0xd09acb80c1e8f2291862c4978a008791c9167003": { + "address": "0xd09acb80c1e8f2291862c4978a008791c9167003", + "symbol": "TETH", + "decimals": 18, + "name": "TETH", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0xd09acb80c1e8f2291862c4978a008791c9167003.png", + "aggregators": ["CoinGecko", "LiFi", "Rubic", "Rango"], + "occurrences": 4 + }, + "0x1cb9bd2c6e7f4a7de3778547d46c8d4c22abc093": { + "address": "0x1cb9bd2c6e7f4a7de3778547d46c8d4c22abc093", + "symbol": "STBU", + "decimals": 18, + "name": "Stobox Token", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0x1cb9bd2c6e7f4a7de3778547d46c8d4c22abc093.png", + "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0x0002bcdaf53f4889bf2f43a3252d7c03fe1b80bc": { + "address": "0x0002bcdaf53f4889bf2f43a3252d7c03fe1b80bc", + "symbol": "GORPLES", + "decimals": 18, + "name": "GorplesCoin", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0x0002bcdaf53f4889bf2f43a3252d7c03fe1b80bc.png", + "aggregators": ["TraderJoe", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0x10663b695b8f75647bd3ff0ff609e16d35bbd1ec": { + "address": "0x10663b695b8f75647bd3ff0ff609e16d35bbd1ec", + "symbol": "AGG", + "decimals": 18, + "name": "AmpliFi DAO", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0x10663b695b8f75647bd3ff0ff609e16d35bbd1ec.png", + "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0xadd5620057336f868eae78a451c503ae7b576bad": { + "address": "0xadd5620057336f868eae78a451c503ae7b576bad", + "symbol": "ENQAI", + "decimals": 18, + "name": "enqAI", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0xadd5620057336f868eae78a451c503ae7b576bad.png", + "aggregators": ["TraderJoe", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0xf7d4e7273e5015c96728a6b02f31c505ee184603": { + "address": "0xf7d4e7273e5015c96728a6b02f31c505ee184603", + "symbol": "OSETH", + "decimals": 18, + "name": "OSETH", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0xf7d4e7273e5015c96728a6b02f31c505ee184603.png", + "aggregators": ["CoinGecko", "LiFi", "Rubic", "Rango"], + "occurrences": 4 + }, + "0x13ad3f1150db0e1e05fd32bdeeb7c110ee023de6": { + "address": "0x13ad3f1150db0e1e05fd32bdeeb7c110ee023de6", + "symbol": "DEFAI", + "decimals": 18, + "name": "AISweatShop", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0x13ad3f1150db0e1e05fd32bdeeb7c110ee023de6.png", + "aggregators": ["TraderJoe", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0x1bd013bd089c2b6b2d30a0e0b545810a5844e761": { + "address": "0x1bd013bd089c2b6b2d30a0e0b545810a5844e761", + "symbol": "HOME", + "decimals": 18, + "name": "OtterHome", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0x1bd013bd089c2b6b2d30a0e0b545810a5844e761.png", + "aggregators": ["TraderJoe", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0x5018609ab477cc502e170a5accf5312b86a4b94f": { + "address": "0x5018609ab477cc502e170a5accf5312b86a4b94f", + "symbol": "USDZ", + "decimals": 18, + "name": "USDz", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0x5018609ab477cc502e170a5accf5312b86a4b94f.png", + "aggregators": ["TraderJoe", "LiFi", "Socket", "Rubic"], + "occurrences": 4 + }, + "0xeca14f81085e5b8d1c9d32dcb596681574723561": { + "address": "0xeca14f81085e5b8d1c9d32dcb596681574723561", + "symbol": "SPOOL", + "decimals": 18, + "name": "Spool DAO Token", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0xeca14f81085e5b8d1c9d32dcb596681574723561.png", + "aggregators": ["TraderJoe", "LiFi", "Rubic", "Rango"], + "occurrences": 4 + }, + "0x569deb225441fd18bde18aed53e2ec7eb4e10d93": { + "address": "0x569deb225441fd18bde18aed53e2ec7eb4e10d93", + "symbol": "YFX", + "decimals": 17, + "name": "Your Futures Exchange", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0x569deb225441fd18bde18aed53e2ec7eb4e10d93.png", + "aggregators": ["LiFi", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0xb9c8f0d3254007ee4b98970b94544e473cd610ec": { + "address": "0xb9c8f0d3254007ee4b98970b94544e473cd610ec", + "symbol": "QI", + "decimals": 18, + "name": "QiDao", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0xb9c8f0d3254007ee4b98970b94544e473cd610ec.png", + "aggregators": ["LiFi", "Socket", "Rubic", "Rango"], + "occurrences": 4 + }, + "0x0de59c86c306b9fead9fb67e65551e2b6897c3f6": { + "address": "0x0de59c86c306b9fead9fb67e65551e2b6897c3f6", + "symbol": "KUMA", + "decimals": 18, + "name": "Kuma World", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0x0de59c86c306b9fead9fb67e65551e2b6897c3f6.png", + "aggregators": ["Socket", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0xf7e17ba61973bcdb61f471efb989e47d13bd565d": { + "address": "0xf7e17ba61973bcdb61f471efb989e47d13bd565d", + "symbol": "BITCOIN", + "decimals": 8, + "name": "HarryPotterObamaSonic10Inu", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0xf7e17ba61973bcdb61f471efb989e47d13bd565d.png", + "aggregators": ["UniswapLabs", "LiFi", "Rango"], + "occurrences": 3 + }, + "0xcdc343ebf71e38f003ed6c80171f5b8d7cf58860": { + "address": "0xcdc343ebf71e38f003ed6c80171f5b8d7cf58860", + "symbol": "CAKE", + "decimals": 18, + "name": "PancakeSwap", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0xcdc343ebf71e38f003ed6c80171f5b8d7cf58860.png", + "aggregators": ["UniswapLabs", "LiFi", "Rango"], + "occurrences": 3 + }, + "0x69b937db799a9becc9e8a6f0a5d36ea3657273bf": { + "address": "0x69b937db799a9becc9e8a6f0a5d36ea3657273bf", + "symbol": "CQT", + "decimals": 18, + "name": "Covalent", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0x69b937db799a9becc9e8a6f0a5d36ea3657273bf.png", + "aggregators": ["UniswapLabs", "Socket", "Rango"], + "occurrences": 3 + }, + "0x51863cb90ce5d6da9663106f292fa27c8cc90c5a": { + "address": "0x51863cb90ce5d6da9663106f292fa27c8cc90c5a", + "symbol": "DYDX", + "decimals": 18, + "name": "dYdX", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0x51863cb90ce5d6da9663106f292fa27c8cc90c5a.png", + "aggregators": ["UniswapLabs", "LiFi", "Rango"], + "occurrences": 3 + }, + "0x3e4cff6e50f37f731284a92d44ae943e17077fd4": { + "address": "0x3e4cff6e50f37f731284a92d44ae943e17077fd4", + "symbol": "ELON", + "decimals": 18, + "name": "Dogelon Mars", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0x3e4cff6e50f37f731284a92d44ae943e17077fd4.png", + "aggregators": ["UniswapLabs", "Socket", "Rango"], + "occurrences": 3 + }, + "0x63806c056fa458c548fb416b15e358a9d685710a": { + "address": "0x63806c056fa458c548fb416b15e358a9d685710a", + "symbol": "FLUX", + "decimals": 18, + "name": "Flux", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0x63806c056fa458c548fb416b15e358a9d685710a.png", + "aggregators": ["UniswapLabs", "LiFi", "Rango"], + "occurrences": 3 + }, + "0xf03a553fbcb2f52daae15170347830e5d3d16096": { + "address": "0xf03a553fbcb2f52daae15170347830e5d3d16096", + "symbol": "L3", + "decimals": 18, + "name": "Layer3", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0xf03a553fbcb2f52daae15170347830e5d3d16096.png", + "aggregators": ["UniswapLabs", "LiFi", "Rango"], + "occurrences": 3 + }, + "0x9c1a1c7ba9c2602123fd7ef3eb41a769edf6c53a": { + "address": "0x9c1a1c7ba9c2602123fd7ef3eb41a769edf6c53a", + "symbol": "MNT", + "decimals": 18, + "name": "Mantle", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0x9c1a1c7ba9c2602123fd7ef3eb41a769edf6c53a.png", + "aggregators": ["UniswapLabs", "LiFi", "Rango"], + "occurrences": 3 + }, + "0x96c42662820f6ea32f0a61a06a38a72b206aabac": { + "address": "0x96c42662820f6ea32f0a61a06a38a72b206aabac", + "symbol": "MOG", + "decimals": 18, + "name": "Mog Coin", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0x96c42662820f6ea32f0a61a06a38a72b206aabac.png", + "aggregators": ["UniswapLabs", "Socket", "Rango"], + "occurrences": 3 + }, + "0x35e6a59f786d9266c7961ea28c7b768b33959cbb": { + "address": "0x35e6a59f786d9266c7961ea28c7b768b33959cbb", + "symbol": "PEPE", + "decimals": 18, + "name": "Pepe", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0x35e6a59f786d9266c7961ea28c7b768b33959cbb.png", + "aggregators": ["UniswapLabs", "Socket", "Rango"], + "occurrences": 3 + }, + "0x6d78bc9ebc2431861b2928bb2af52bdd10baddd7": { + "address": "0x6d78bc9ebc2431861b2928bb2af52bdd10baddd7", + "symbol": "PEPECOIN", + "decimals": 18, + "name": "PepeCoin", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0x6d78bc9ebc2431861b2928bb2af52bdd10baddd7.png", + "aggregators": ["UniswapLabs", "LiFi", "Rango"], + "occurrences": 3 + }, + "0x044d8e7f3a17751d521efea8ccf9282268fe08cc": { + "address": "0x044d8e7f3a17751d521efea8ccf9282268fe08cc", + "symbol": "POL", + "decimals": 18, + "name": "Polygon Ecosystem Token", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0x044d8e7f3a17751d521efea8ccf9282268fe08cc.png", + "aggregators": ["UniswapLabs", "LiFi", "Rango"], + "occurrences": 3 + }, + "0x2e9ae8f178d5ea81970c7799a377b3985cbc335f": { + "address": "0x2e9ae8f178d5ea81970c7799a377b3985cbc335f", + "symbol": "RBC", + "decimals": 18, + "name": "Rubic", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0x2e9ae8f178d5ea81970c7799a377b3985cbc335f.png", + "aggregators": ["UniswapLabs", "Socket", "Rango"], + "occurrences": 3 + }, + "0x5033833c9fe8b9d3e09eed2f73d2aaf7e3872fd1": { + "address": "0x5033833c9fe8b9d3e09eed2f73d2aaf7e3872fd1", + "symbol": "SHIB", + "decimals": 18, + "name": "Shiba Inu", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0x5033833c9fe8b9d3e09eed2f73d2aaf7e3872fd1.png", + "aggregators": ["UniswapLabs", "Socket", "Rango"], + "occurrences": 3 + }, + "0xd43f10ce4bc089782ff8635c17f015edbc16d71b": { + "address": "0xd43f10ce4bc089782ff8635c17f015edbc16d71b", + "symbol": "SKY", + "decimals": 18, + "name": "SKY Governance Token", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0xd43f10ce4bc089782ff8635c17f015edbc16d71b.png", + "aggregators": ["UniswapLabs", "LiFi", "Rango"], + "occurrences": 3 + }, + "0x53e70cc1d527b524a1c46eaa892e4cb35d2ba901": { + "address": "0x53e70cc1d527b524a1c46eaa892e4cb35d2ba901", + "symbol": "SPX", + "decimals": 8, + "name": "SPX6900", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0x53e70cc1d527b524a1c46eaa892e4cb35d2ba901.png", + "aggregators": ["UniswapLabs", "LiFi", "Rango"], + "occurrences": 3 + }, + "0x2c96be2612bec20fe2975c3acfcbbe61a58f2571": { + "address": "0x2c96be2612bec20fe2975c3acfcbbe61a58f2571", + "symbol": "SWELL", + "decimals": 18, + "name": "Swell", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0x2c96be2612bec20fe2975c3acfcbbe61a58f2571.png", + "aggregators": ["UniswapLabs", "LiFi", "Rango"], + "occurrences": 3 + }, + "0x9b86f3c7d145979ec6b2f42ed7f92d06cfc6c9d3": { + "address": "0x9b86f3c7d145979ec6b2f42ed7f92d06cfc6c9d3", + "symbol": "XAUT", + "decimals": 6, + "name": "Tether Gold", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0x9b86f3c7d145979ec6b2f42ed7f92d06cfc6c9d3.png", + "aggregators": ["UniswapLabs", "LiFi", "Rango"], + "occurrences": 3 + }, + "0x5621737f42dae558b81269fcb9e9e70c19aa6b35": { + "address": "0x5621737f42dae558b81269fcb9e9e70c19aa6b35", + "symbol": "MSFTX", + "decimals": 18, + "name": "MSFTX", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0x5621737f42dae558b81269fcb9e9e70c19aa6b35.png", + "aggregators": ["CoinGecko", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x116998824ff90532906bab91becea4a8e4ce06db": { + "address": "0x116998824ff90532906bab91becea4a8e4ce06db", + "symbol": "EXOD", + "decimals": 8, + "name": "EXOD", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0x116998824ff90532906bab91becea4a8e4ce06db.png", + "aggregators": ["CoinGecko", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x0afc19943fa98e9e9e90fc4ab4d4d3c13e162232": { + "address": "0x0afc19943fa98e9e9e90fc4ab4d4d3c13e162232", + "symbol": "WPGX", + "decimals": 18, + "name": "Wrapped Procter & Gamble xStock", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0x0afc19943fa98e9e9e90fc4ab4d4d3c13e162232.png", + "aggregators": ["CoinGecko", "Rubic", "Sonarwatch"], + "occurrences": 3 + }, + "0x4a4073f2eaf299a1be22254dcd2c41727f6f54a2": { + "address": "0x4a4073f2eaf299a1be22254dcd2c41727f6f54a2", + "symbol": "CRMX", + "decimals": 18, + "name": "CRMX", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0x4a4073f2eaf299a1be22254dcd2c41727f6f54a2.png", + "aggregators": ["CoinGecko", "Rubic", "Rango"], + "occurrences": 3 + }, + "0xdcc1a2699441079da889b1f49e12b69cc791129b": { + "address": "0xdcc1a2699441079da889b1f49e12b69cc791129b", + "symbol": "KOX", + "decimals": 18, + "name": "KOX", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0xdcc1a2699441079da889b1f49e12b69cc791129b.png", + "aggregators": ["CoinGecko", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x7c2e00e6b0d519a8c492d20c2524342a4398ff34": { + "address": "0x7c2e00e6b0d519a8c492d20c2524342a4398ff34", + "symbol": "WPMX", + "decimals": 18, + "name": "Wrapped Philip Morris xStock", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0x7c2e00e6b0d519a8c492d20c2524342a4398ff34.png", + "aggregators": ["CoinGecko", "Rubic", "Sonarwatch"], + "occurrences": 3 + }, + "0x44966bf47a494b36dfb407afb334a9226cdf90bc": { + "address": "0x44966bf47a494b36dfb407afb334a9226cdf90bc", + "symbol": "AZN.D", + "decimals": 18, + "name": "Dinari AZN", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0x44966bf47a494b36dfb407afb334a9226cdf90bc.png", + "aggregators": ["CoinGecko", "Rubic", "Sonarwatch"], + "occurrences": 3 + }, + "0xc52915fe75dc8db9fb6306f43aaef1344e0837ab": { + "address": "0xc52915fe75dc8db9fb6306f43aaef1344e0837ab", + "symbol": "BTCW.D", + "decimals": 18, + "name": "Dinari BTCW", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0xc52915fe75dc8db9fb6306f43aaef1344e0837ab.png", + "aggregators": ["CoinGecko", "Rubic", "Sonarwatch"], + "occurrences": 3 + }, + "0xae2f842ef90c0d5213259ab82639d5bbf649b08e": { + "address": "0xae2f842ef90c0d5213259ab82639d5bbf649b08e", + "symbol": "MSTRX", + "decimals": 18, + "name": "MSTRX", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0xae2f842ef90c0d5213259ab82639d5bbf649b08e.png", + "aggregators": ["CoinGecko", "Rubic", "Rango"], + "occurrences": 3 + }, + "0xe649980d1b911756f217e4b61de76a7d2a3b108a": { + "address": "0xe649980d1b911756f217e4b61de76a7d2a3b108a", + "symbol": "CAT.D", + "decimals": 18, + "name": "Dinari CAT", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0xe649980d1b911756f217e4b61de76a7d2a3b108a.png", + "aggregators": ["CoinGecko", "Rubic", "Sonarwatch"], + "occurrences": 3 + }, + "0xdd92f0723a7318e684a88532cac2421e3cc9968e": { + "address": "0xdd92f0723a7318e684a88532cac2421e3cc9968e", + "symbol": "DEFI.D", + "decimals": 18, + "name": "Dinari DEFI", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0xdd92f0723a7318e684a88532cac2421e3cc9968e.png", + "aggregators": ["CoinGecko", "Rubic", "Sonarwatch"], + "occurrences": 3 + }, + "0x0753d920a5e37b0bf2114a7b4a71d46f66ce4b30": { + "address": "0x0753d920a5e37b0bf2114a7b4a71d46f66ce4b30", + "symbol": "HOOD.D", + "decimals": 18, + "name": "Dinari HOOD", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0x0753d920a5e37b0bf2114a7b4a71d46f66ce4b30.png", + "aggregators": ["CoinGecko", "Rubic", "Sonarwatch"], + "occurrences": 3 + }, + "0x0588e851ec0418d660bee81230d6c678daf21d46": { + "address": "0x0588e851ec0418d660bee81230d6c678daf21d46", + "symbol": "MDTX", + "decimals": 18, + "name": "Medtronic xStock", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0x0588e851ec0418d660bee81230d6c678daf21d46.png", + "aggregators": ["CoinGecko", "Rubic", "Sonarwatch"], + "occurrences": 3 + }, + "0xcdb53a7cba9ec6d55dfe8f58bd6772826722d7bd": { + "address": "0xcdb53a7cba9ec6d55dfe8f58bd6772826722d7bd", + "symbol": "WJNJX", + "decimals": 18, + "name": "Wrapped Johnson & Johnson xStock", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0xcdb53a7cba9ec6d55dfe8f58bd6772826722d7bd.png", + "aggregators": ["CoinGecko", "Rubic", "Sonarwatch"], + "occurrences": 3 + }, + "0x4e6894c3481b3a45393ce8ac9552945ad50a3758": { + "address": "0x4e6894c3481b3a45393ce8ac9552945ad50a3758", + "symbol": "WPFEX", + "decimals": 18, + "name": "Wrapped Pfizer xStock", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0x4e6894c3481b3a45393ce8ac9552945ad50a3758.png", + "aggregators": ["CoinGecko", "Rubic", "Sonarwatch"], + "occurrences": 3 + }, + "0x46b979440ac257151ee5a5bc9597b76386907fa1": { + "address": "0x46b979440ac257151ee5a5bc9597b76386907fa1", + "symbol": "COIN.D", + "decimals": 18, + "name": "Dinari COIN", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0x46b979440ac257151ee5a5bc9597b76386907fa1.png", + "aggregators": ["CoinGecko", "Rubic", "Sonarwatch"], + "occurrences": 3 + }, + "0x15059c599c16fd8f70b633ade165502d6402cd49": { + "address": "0x15059c599c16fd8f70b633ade165502d6402cd49", + "symbol": "LINX", + "decimals": 18, + "name": "LINX", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0x15059c599c16fd8f70b633ade165502d6402cd49.png", + "aggregators": ["CoinGecko", "Rubic", "Rango"], + "occurrences": 3 + }, + "0xcf6c2bb97a8978321c9e207afe8a2037fa9be45c": { + "address": "0xcf6c2bb97a8978321c9e207afe8a2037fa9be45c", + "symbol": "ORBETH", + "decimals": 18, + "name": "Orbit Ether", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0xcf6c2bb97a8978321c9e207afe8a2037fa9be45c.png", + "aggregators": ["CoinGecko", "Rubic", "Sonarwatch"], + "occurrences": 3 + }, + "0x316ffea434348c2cb72024e62ae845770315351e": { + "address": "0x316ffea434348c2cb72024e62ae845770315351e", + "symbol": "WLINX", + "decimals": 18, + "name": "Wrapped Linde xStock", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0x316ffea434348c2cb72024e62ae845770315351e.png", + "aggregators": ["CoinGecko", "Rubic", "Sonarwatch"], + "occurrences": 3 + }, + "0x0d6fce45796d5c00689c0916b976645a0ff1f0ce": { + "address": "0x0d6fce45796d5c00689c0916b976645a0ff1f0ce", + "symbol": "WMRVLX", + "decimals": 18, + "name": "Wrapped Marvell xStock", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0x0d6fce45796d5c00689c0916b976645a0ff1f0ce.png", + "aggregators": ["CoinGecko", "Rubic", "Sonarwatch"], + "occurrences": 3 + }, + "0x5b32624f352d2fc6cc70889967a143ba1814f82b": { + "address": "0x5b32624f352d2fc6cc70889967a143ba1814f82b", + "symbol": "WMAX", + "decimals": 18, + "name": "Wrapped Mastercard xStock", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0x5b32624f352d2fc6cc70889967a143ba1814f82b.png", + "aggregators": ["CoinGecko", "Rubic", "Sonarwatch"], + "occurrences": 3 + }, + "0x315a2dca4b1b633d3a707c71d96243534c02f7c4": { + "address": "0x315a2dca4b1b633d3a707c71d96243534c02f7c4", + "symbol": "XOM.D", + "decimals": 18, + "name": "Dinari XOM", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0x315a2dca4b1b633d3a707c71d96243534c02f7c4.png", + "aggregators": ["CoinGecko", "Rubic", "Sonarwatch"], + "occurrences": 3 + }, + "0xa90424d5d3e770e8644103ab503ed775dd1318fd": { + "address": "0xa90424d5d3e770e8644103ab503ed775dd1318fd", + "symbol": "PGX", + "decimals": 18, + "name": "PGX", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0xa90424d5d3e770e8644103ab503ed775dd1318fd.png", + "aggregators": ["CoinGecko", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x7f88888b7a81546a036554aa67a289ea428b20d4": { + "address": "0x7f88888b7a81546a036554aa67a289ea428b20d4", + "symbol": "WCVXX", + "decimals": 18, + "name": "Wrapped Chevron xStock", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0x7f88888b7a81546a036554aa67a289ea428b20d4.png", + "aggregators": ["CoinGecko", "Rubic", "Sonarwatch"], + "occurrences": 3 + }, + "0xdba228936f4079daf9aa906fd48a87f2300405f4": { + "address": "0xdba228936f4079daf9aa906fd48a87f2300405f4", + "symbol": "DHRX", + "decimals": 18, + "name": "DHRX", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0xdba228936f4079daf9aa906fd48a87f2300405f4.png", + "aggregators": ["CoinGecko", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x1a4fd0e749c86eeb6f80d1047d6c25432c703d48": { + "address": "0x1a4fd0e749c86eeb6f80d1047d6c25432c703d48", + "symbol": "ARKK.D", + "decimals": 18, + "name": "Dinari ARKK", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0x1a4fd0e749c86eeb6f80d1047d6c25432c703d48.png", + "aggregators": ["CoinGecko", "Rubic", "Sonarwatch"], + "occurrences": 3 + }, + "0x42ba3ac0c2d9b611623e1e48f51757606a105d9e": { + "address": "0x42ba3ac0c2d9b611623e1e48f51757606a105d9e", + "symbol": "KO.D", + "decimals": 18, + "name": "Dinari KO", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0x42ba3ac0c2d9b611623e1e48f51757606a105d9e.png", + "aggregators": ["CoinGecko", "Rubic", "Sonarwatch"], + "occurrences": 3 + }, + "0x19c41ea77b34bbdee61c3a87a75d1abda2ed0be4": { + "address": "0x19c41ea77b34bbdee61c3a87a75d1abda2ed0be4", + "symbol": "LLYX", + "decimals": 18, + "name": "LLYX", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0x19c41ea77b34bbdee61c3a87a75d1abda2ed0be4.png", + "aggregators": ["CoinGecko", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x700e4edb5c7d8f53ccb0cf212b81a121728e1d5b": { + "address": "0x700e4edb5c7d8f53ccb0cf212b81a121728e1d5b", + "symbol": "LOPO", + "decimals": 18, + "name": "LOPO", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0x700e4edb5c7d8f53ccb0cf212b81a121728e1d5b.png", + "aggregators": ["CoinGecko", "Rubic", "Rango"], + "occurrences": 3 + }, + "0xa213072a726062aca3c07839b7e531f101740c5c": { + "address": "0xa213072a726062aca3c07839b7e531f101740c5c", + "symbol": "SPSK.D", + "decimals": 18, + "name": "Dinari SPSK", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0xa213072a726062aca3c07839b7e531f101740c5c.png", + "aggregators": ["CoinGecko", "Rubic", "Sonarwatch"], + "occurrences": 3 + }, + "0x2824efe5cedb3bc8730e412981997dac7c7640c2": { + "address": "0x2824efe5cedb3bc8730e412981997dac7c7640c2", + "symbol": "BTCO.D", + "decimals": 18, + "name": "Dinari BTCO", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0x2824efe5cedb3bc8730e412981997dac7c7640c2.png", + "aggregators": ["CoinGecko", "Rubic", "Sonarwatch"], + "occurrences": 3 + }, + "0x167a6375da1efc4a5be0f470e73ecefd66245048": { + "address": "0x167a6375da1efc4a5be0f470e73ecefd66245048", + "symbol": "UNHX", + "decimals": 18, + "name": "UNHX", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0x167a6375da1efc4a5be0f470e73ecefd66245048.png", + "aggregators": ["CoinGecko", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x2594a6392832b341b76b60e8b00f42094e30b1b3": { + "address": "0x2594a6392832b341b76b60e8b00f42094e30b1b3", + "symbol": "SPUS.D", + "decimals": 18, + "name": "Dinari SPUS", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0x2594a6392832b341b76b60e8b00f42094e30b1b3.png", + "aggregators": ["CoinGecko", "Rubic", "Sonarwatch"], + "occurrences": 3 + }, + "0x5b041a4e76b08c5afc1e0b9a789cbfab5ebec993": { + "address": "0x5b041a4e76b08c5afc1e0b9a789cbfab5ebec993", + "symbol": "EEM.D", + "decimals": 18, + "name": "Dinari EEM", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0x5b041a4e76b08c5afc1e0b9a789cbfab5ebec993.png", + "aggregators": ["CoinGecko", "Rubic", "Sonarwatch"], + "occurrences": 3 + }, + "0xb1284f6b3e487e3f773e9ad40f337c3b3cda5c69": { + "address": "0xb1284f6b3e487e3f773e9ad40f337c3b3cda5c69", + "symbol": "GBTC.D", + "decimals": 18, + "name": "Dinari GBTC", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0xb1284f6b3e487e3f773e9ad40f337c3b3cda5c69.png", + "aggregators": ["CoinGecko", "Rubic", "Sonarwatch"], + "occurrences": 3 + }, + "0xbe8e3f4d5bd6ee0175359982cc91dafa3cf72502": { + "address": "0xbe8e3f4d5bd6ee0175359982cc91dafa3cf72502", + "symbol": "GLD.D", + "decimals": 18, + "name": "Dinari GLD", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0xbe8e3f4d5bd6ee0175359982cc91dafa3cf72502.png", + "aggregators": ["CoinGecko", "Rubic", "Sonarwatch"], + "occurrences": 3 + }, + "0x0c59f6b96d3cac58240429c7659ec107f8b1efa7": { + "address": "0x0c59f6b96d3cac58240429c7659ec107f8b1efa7", + "symbol": "HODL.D", + "decimals": 18, + "name": "Dinari HODL", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0x0c59f6b96d3cac58240429c7659ec107f8b1efa7.png", + "aggregators": ["CoinGecko", "Rubic", "Sonarwatch"], + "occurrences": 3 + }, + "0x808167ea744e02c6fec3f56636d19f3448b72981": { + "address": "0x808167ea744e02c6fec3f56636d19f3448b72981", + "symbol": "HUT.D", + "decimals": 18, + "name": "Dinari HUT", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0x808167ea744e02c6fec3f56636d19f3448b72981.png", + "aggregators": ["CoinGecko", "Rubic", "Sonarwatch"], + "occurrences": 3 + }, + "0x39bce681d72720f80424914800a78c63fdfaf645": { + "address": "0x39bce681d72720f80424914800a78c63fdfaf645", + "symbol": "IAU.D", + "decimals": 18, + "name": "Dinari IAU", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0x39bce681d72720f80424914800a78c63fdfaf645.png", + "aggregators": ["CoinGecko", "Rubic", "Sonarwatch"], + "occurrences": 3 + }, + "0xc1ba16afdcb3a41242944c9faaccd9fb6f2b428c": { + "address": "0xc1ba16afdcb3a41242944c9faaccd9fb6f2b428c", + "symbol": "IBIT.D", + "decimals": 18, + "name": "Dinari IBIT", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0xc1ba16afdcb3a41242944c9faaccd9fb6f2b428c.png", + "aggregators": ["CoinGecko", "Rubic", "Sonarwatch"], + "occurrences": 3 + }, + "0xc0ce7221db1508529752339c3bd5dcf01fa1b0ca": { + "address": "0xc0ce7221db1508529752339c3bd5dcf01fa1b0ca", + "symbol": "MARA.D", + "decimals": 18, + "name": "Dinari MARA", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0xc0ce7221db1508529752339c3bd5dcf01fa1b0ca.png", + "aggregators": ["CoinGecko", "Rubic", "Sonarwatch"], + "occurrences": 3 + }, + "0x7aefc9965699fbea943e03264d96e50cd4a97b21": { + "address": "0x7aefc9965699fbea943e03264d96e50cd4a97b21", + "symbol": "WMTX", + "decimals": 18, + "name": "WMTX", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0x7aefc9965699fbea943e03264d96e50cd4a97b21.png", + "aggregators": ["CoinGecko", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x548308e91ec9f285c7bff05295badbd56a6e4971": { + "address": "0x548308e91ec9f285c7bff05295badbd56a6e4971", + "symbol": "ORCLX", + "decimals": 18, + "name": "ORCLX", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0x548308e91ec9f285c7bff05295badbd56a6e4971.png", + "aggregators": ["CoinGecko", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x1ae31840d492993a58baf558180b5ee83ce2f8ce": { + "address": "0x1ae31840d492993a58baf558180b5ee83ce2f8ce", + "symbol": "SNOW.D", + "decimals": 18, + "name": "Dinari SNOW", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0x1ae31840d492993a58baf558180b5ee83ce2f8ce.png", + "aggregators": ["CoinGecko", "Rubic", "Sonarwatch"], + "occurrences": 3 + }, + "0xab635f839f81a12dc8db8ab31006af14e26292fe": { + "address": "0xab635f839f81a12dc8db8ab31006af14e26292fe", + "symbol": "WJPMX", + "decimals": 18, + "name": "Wrapped JPMorgan Chase xStock", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0xab635f839f81a12dc8db8ab31006af14e26292fe.png", + "aggregators": ["CoinGecko", "Rubic", "Sonarwatch"], + "occurrences": 3 + }, + "0xccf43c38fe53c633425e14f6aba50a98e5ab1408": { + "address": "0xccf43c38fe53c633425e14f6aba50a98e5ab1408", + "symbol": "SPWO.D", + "decimals": 18, + "name": "Dinari SPWO", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0xccf43c38fe53c633425e14f6aba50a98e5ab1408.png", + "aggregators": ["CoinGecko", "Rubic", "Sonarwatch"], + "occurrences": 3 + }, + "0xd883bcf80b2b085fa40cc3e2416b4ab1cbca649e": { + "address": "0xd883bcf80b2b085fa40cc3e2416b4ab1cbca649e", + "symbol": "SQ.D", + "decimals": 18, + "name": "Dinari SQ", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0xd883bcf80b2b085fa40cc3e2416b4ab1cbca649e.png", + "aggregators": ["CoinGecko", "Rubic", "Sonarwatch"], + "occurrences": 3 + }, + "0x3f29fda039ee80f7d30fa5eb4e3b40691329f020": { + "address": "0x3f29fda039ee80f7d30fa5eb4e3b40691329f020", + "symbol": "UFO.D", + "decimals": 18, + "name": "Dinari UFO", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0x3f29fda039ee80f7d30fa5eb4e3b40691329f020.png", + "aggregators": ["CoinGecko", "Rubic", "Sonarwatch"], + "occurrences": 3 + }, + "0x40914f6007da3fcee3c8a6db211b5797848f8882": { + "address": "0x40914f6007da3fcee3c8a6db211b5797848f8882", + "symbol": "VXX.D", + "decimals": 18, + "name": "Dinari VXX", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0x40914f6007da3fcee3c8a6db211b5797848f8882.png", + "aggregators": ["CoinGecko", "Rubic", "Sonarwatch"], + "occurrences": 3 + }, + "0xc20770116f2821d550574c2b9ce1b4baa7012377": { + "address": "0xc20770116f2821d550574c2b9ce1b4baa7012377", + "symbol": "WEAT.D", + "decimals": 18, + "name": "Dinari WEAT", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0xc20770116f2821d550574c2b9ce1b4baa7012377.png", + "aggregators": ["CoinGecko", "Rubic", "Sonarwatch"], + "occurrences": 3 + }, + "0x13f950ee286a5be0254065d4b66420fc0e57adfc": { + "address": "0x13f950ee286a5be0254065d4b66420fc0e57adfc", + "symbol": "WOOD.D", + "decimals": 18, + "name": "Dinari WOOD", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0x13f950ee286a5be0254065d4b66420fc0e57adfc.png", + "aggregators": ["CoinGecko", "Rubic", "Sonarwatch"], + "occurrences": 3 + }, + "0xa8f31436ffe4e71f51b2d65b7d5a5c457ae2000f": { + "address": "0xa8f31436ffe4e71f51b2d65b7d5a5c457ae2000f", + "symbol": "WIBMX", + "decimals": 18, + "name": "Wrapped International Business Machines xStock", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0xa8f31436ffe4e71f51b2d65b7d5a5c457ae2000f.png", + "aggregators": ["CoinGecko", "Rubic", "Sonarwatch"], + "occurrences": 3 + }, + "0xa6a65ac27e76cd53cb790473e4345c46e5ebf961": { + "address": "0xa6a65ac27e76cd53cb790473e4345c46e5ebf961", + "symbol": "NFLXX", + "decimals": 18, + "name": "NFLXX", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0xa6a65ac27e76cd53cb790473e4345c46e5ebf961.png", + "aggregators": ["CoinGecko", "Rubic", "Rango"], + "occurrences": 3 + }, + "0xeedb0273c5af792745180e9ff568cd01550ffa13": { + "address": "0xeedb0273c5af792745180e9ff568cd01550ffa13", + "symbol": "XOMX", + "decimals": 18, + "name": "XOMX", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0xeedb0273c5af792745180e9ff568cd01550ffa13.png", + "aggregators": ["CoinGecko", "Rubic", "Rango"], + "occurrences": 3 + }, + "0xa3b6fe1a923585bb828fcfaa460b78eefd5ae2ec": { + "address": "0xa3b6fe1a923585bb828fcfaa460b78eefd5ae2ec", + "symbol": "WPLTRX", + "decimals": 18, + "name": "Wrapped Palantir xStock", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0xa3b6fe1a923585bb828fcfaa460b78eefd5ae2ec.png", + "aggregators": ["CoinGecko", "Rubic", "Sonarwatch"], + "occurrences": 3 + }, + "0xeaad46f4146ded5a47b55aa7f6c48c191deaec88": { + "address": "0xeaad46f4146ded5a47b55aa7f6c48c191deaec88", + "symbol": "MRVLX", + "decimals": 18, + "name": "MRVLX", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0xeaad46f4146ded5a47b55aa7f6c48c191deaec88.png", + "aggregators": ["CoinGecko", "Rubic", "Rango"], + "occurrences": 3 + }, + "0xd3188e0df68559c0b63361f6160c57ad88b239d8": { + "address": "0xd3188e0df68559c0b63361f6160c57ad88b239d8", + "symbol": "ASTRADAO", + "decimals": 17, + "name": "Astra DAO", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0xd3188e0df68559c0b63361f6160c57ad88b239d8.png", + "aggregators": ["TraderJoe", "Rubic", "Rango"], + "occurrences": 3 + }, + "0xa00a5538708b5aca7045f2ca15104707965bac94": { + "address": "0xa00a5538708b5aca7045f2ca15104707965bac94", + "symbol": "WPEPX", + "decimals": 18, + "name": "Wrapped PepsiCo xStock", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0xa00a5538708b5aca7045f2ca15104707965bac94.png", + "aggregators": ["CoinGecko", "Rubic", "Sonarwatch"], + "occurrences": 3 + }, + "0x903d5990119bc799423e9c25c56518ba7dd19474": { + "address": "0x903d5990119bc799423e9c25c56518ba7dd19474", + "symbol": "UKTBL", + "decimals": 5, + "name": "Spiko UK T-Bills Money Market Fund", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0x903d5990119bc799423e9c25c56518ba7dd19474.png", + "aggregators": ["CoinGecko", "Rubic", "Rango"], + "occurrences": 3 + }, + "0xaf072f109a2c173d822a4fe9af311a1b18f83d19": { + "address": "0xaf072f109a2c173d822a4fe9af311a1b18f83d19", + "symbol": "TMOX", + "decimals": 18, + "name": "TMOX", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0xaf072f109a2c173d822a4fe9af311a1b18f83d19.png", + "aggregators": ["CoinGecko", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x289594b223ab31832726eb99871fa99adac583e5": { + "address": "0x289594b223ab31832726eb99871fa99adac583e5", + "symbol": "ADBE.D", + "decimals": 18, + "name": "Dinari ADBE", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0x289594b223ab31832726eb99871fa99adac583e5.png", + "aggregators": ["CoinGecko", "Rubic", "Sonarwatch"], + "occurrences": 3 + }, + "0x3619ca1e96c629f7d71c1b03dc0ee56479356228": { + "address": "0x3619ca1e96c629f7d71c1b03dc0ee56479356228", + "symbol": "ARKB.D", + "decimals": 18, + "name": "Dinari ARKB", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0x3619ca1e96c629f7d71c1b03dc0ee56479356228.png", + "aggregators": ["CoinGecko", "Rubic", "Sonarwatch"], + "occurrences": 3 + }, + "0x071e1fd14fbacb2b856867043eb12ace1ee3cb52": { + "address": "0x071e1fd14fbacb2b856867043eb12ace1ee3cb52", + "symbol": "ERO.D", + "decimals": 18, + "name": "Dinari ERO", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0x071e1fd14fbacb2b856867043eb12ace1ee3cb52.png", + "aggregators": ["CoinGecko", "Rubic", "Sonarwatch"], + "occurrences": 3 + }, + "0x4cb894d1a5fc353ec18ba50cb087b88f6f73121f": { + "address": "0x4cb894d1a5fc353ec18ba50cb087b88f6f73121f", + "symbol": "ETHE.D", + "decimals": 18, + "name": "Dinari ETHE", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0x4cb894d1a5fc353ec18ba50cb087b88f6f73121f.png", + "aggregators": ["CoinGecko", "Rubic", "Sonarwatch"], + "occurrences": 3 + }, + "0xa6f344abc6e2501b2b303fcbba99cd89f136b5fb": { + "address": "0xa6f344abc6e2501b2b303fcbba99cd89f136b5fb", + "symbol": "EZBC.D", + "decimals": 18, + "name": "Dinari EZBC", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0xa6f344abc6e2501b2b303fcbba99cd89f136b5fb.png", + "aggregators": ["CoinGecko", "Rubic", "Sonarwatch"], + "occurrences": 3 + }, + "0x7af89514dadd0a39b5e87f013b0f3fd2ed591c88": { + "address": "0x7af89514dadd0a39b5e87f013b0f3fd2ed591c88", + "symbol": "F.D", + "decimals": 18, + "name": "Dinari F", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0x7af89514dadd0a39b5e87f013b0f3fd2ed591c88.png", + "aggregators": ["CoinGecko", "Rubic", "Sonarwatch"], + "occurrences": 3 + }, + "0x026fdf3024953cb2e8982bc11c67d336f37a5044": { + "address": "0x026fdf3024953cb2e8982bc11c67d336f37a5044", + "symbol": "FBTC.D", + "decimals": 18, + "name": "Dinari FBTC", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0x026fdf3024953cb2e8982bc11c67d336f37a5044.png", + "aggregators": ["CoinGecko", "Rubic", "Sonarwatch"], + "occurrences": 3 + }, + "0xef5713f65e32332b604e1096e68a6d78a0e927cf": { + "address": "0xef5713f65e32332b604e1096e68a6d78a0e927cf", + "symbol": "HYMB.D", + "decimals": 18, + "name": "Dinari HYMB", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0xef5713f65e32332b604e1096e68a6d78a0e927cf.png", + "aggregators": ["CoinGecko", "Rubic", "Sonarwatch"], + "occurrences": 3 + }, + "0xf1f313acc8c65dc2e7eebeb166c7c30be634eb38": { + "address": "0xf1f313acc8c65dc2e7eebeb166c7c30be634eb38", + "symbol": "ITA.D", + "decimals": 18, + "name": "Dinari ITA", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0xf1f313acc8c65dc2e7eebeb166c7c30be634eb38.png", + "aggregators": ["CoinGecko", "Rubic", "Sonarwatch"], + "occurrences": 3 + }, + "0x50e2b96f958133cbda56d1a62d156e812fe97828": { + "address": "0x50e2b96f958133cbda56d1a62d156e812fe97828", + "symbol": "JNJ.D", + "decimals": 18, + "name": "Dinari JNJ", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0x50e2b96f958133cbda56d1a62d156e812fe97828.png", + "aggregators": ["CoinGecko", "Rubic", "Sonarwatch"], + "occurrences": 3 + }, + "0x893ff58cd1e34eac0c8ce4fa92b30adee4e14986": { + "address": "0x893ff58cd1e34eac0c8ce4fa92b30adee4e14986", + "symbol": "LMT.D", + "decimals": 18, + "name": "Dinari LMT", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0x893ff58cd1e34eac0c8ce4fa92b30adee4e14986.png", + "aggregators": ["CoinGecko", "Rubic", "Sonarwatch"], + "occurrences": 3 + }, + "0xe15602ceeb794feb4163b049fe82a1f8432781b2": { + "address": "0xe15602ceeb794feb4163b049fe82a1f8432781b2", + "symbol": "JPM.D", + "decimals": 18, + "name": "Dinari JPM", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0xe15602ceeb794feb4163b049fe82a1f8432781b2.png", + "aggregators": ["CoinGecko", "Rubic", "Sonarwatch"], + "occurrences": 3 + }, + "0x0c29891dc5060618c779e2a45fbe4808aa5ae6ad": { + "address": "0x0c29891dc5060618c779e2a45fbe4808aa5ae6ad", + "symbol": "MCD.D", + "decimals": 18, + "name": "Dinari MCD", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0x0c29891dc5060618c779e2a45fbe4808aa5ae6ad.png", + "aggregators": ["CoinGecko", "Rubic", "Sonarwatch"], + "occurrences": 3 + }, + "0x41c9954ff544c2376385afc15d11d9bcfac777ab": { + "address": "0x41c9954ff544c2376385afc15d11d9bcfac777ab", + "symbol": "MELI.D", + "decimals": 18, + "name": "Dinari MELI", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0x41c9954ff544c2376385afc15d11d9bcfac777ab.png", + "aggregators": ["CoinGecko", "Rubic", "Sonarwatch"], + "occurrences": 3 + }, + "0x5b6424769823e82a1829b0a8bcaf501bffd90d25": { + "address": "0x5b6424769823e82a1829b0a8bcaf501bffd90d25", + "symbol": "PYPL.D", + "decimals": 18, + "name": "PayPal Holdings, Inc. - Dinari", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0x5b6424769823e82a1829b0a8bcaf501bffd90d25.png", + "aggregators": ["CoinGecko", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x6468cd2aa21a87b4e52d89b8dd123fbb5db101ed": { + "address": "0x6468cd2aa21a87b4e52d89b8dd123fbb5db101ed", + "symbol": "RBLX.D", + "decimals": 18, + "name": "Dinari RBLX", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0x6468cd2aa21a87b4e52d89b8dd123fbb5db101ed.png", + "aggregators": ["CoinGecko", "Rubic", "Sonarwatch"], + "occurrences": 3 + }, + "0x0b5ac0d7dcf6964609a12af4f6c6f3c257070193": { + "address": "0x0b5ac0d7dcf6964609a12af4f6c6f3c257070193", + "symbol": "RIOT.D", + "decimals": 18, + "name": "Dinari RIOT", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0x0b5ac0d7dcf6964609a12af4f6c6f3c257070193.png", + "aggregators": ["CoinGecko", "Rubic", "Sonarwatch"], + "occurrences": 3 + }, + "0xe3b82cfbfeda73dc6870d76090061bc3c97d25ac": { + "address": "0xe3b82cfbfeda73dc6870d76090061bc3c97d25ac", + "symbol": "RKLB.D", + "decimals": 18, + "name": "Dinari RKLB", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0xe3b82cfbfeda73dc6870d76090061bc3c97d25ac.png", + "aggregators": ["CoinGecko", "Rubic", "Sonarwatch"], + "occurrences": 3 + }, + "0x4b72de2da8be112cad87773b47537cf550676ffa": { + "address": "0x4b72de2da8be112cad87773b47537cf550676ffa", + "symbol": "SBUX.D", + "decimals": 18, + "name": "Dinari SBUX", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0x4b72de2da8be112cad87773b47537cf550676ffa.png", + "aggregators": ["CoinGecko", "Rubic", "Sonarwatch"], + "occurrences": 3 + }, + "0x0a2919147b871a0fc90f04944e31fad56d9af666": { + "address": "0x0a2919147b871a0fc90f04944e31fad56d9af666", + "symbol": "SLX.D", + "decimals": 18, + "name": "Dinari SLX", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0x0a2919147b871a0fc90f04944e31fad56d9af666.png", + "aggregators": ["CoinGecko", "Rubic", "Sonarwatch"], + "occurrences": 3 + }, + "0x5644fe2f365397a0313ee323da3ead314405c09a": { + "address": "0x5644fe2f365397a0313ee323da3ead314405c09a", + "symbol": "SONY.D", + "decimals": 18, + "name": "Dinari SONY", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0x5644fe2f365397a0313ee323da3ead314405c09a.png", + "aggregators": ["CoinGecko", "Rubic", "Sonarwatch"], + "occurrences": 3 + }, + "0x9fe6002c876972d8d84124ec25000a6fa14c88ec": { + "address": "0x9fe6002c876972d8d84124ec25000a6fa14c88ec", + "symbol": "SOXL.D", + "decimals": 18, + "name": "Dinari SOXL", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0x9fe6002c876972d8d84124ec25000a6fa14c88ec.png", + "aggregators": ["CoinGecko", "Rubic", "Sonarwatch"], + "occurrences": 3 + }, + "0x1795eeacbf98f08e7ee5af0a8913d5a54c24bb40": { + "address": "0x1795eeacbf98f08e7ee5af0a8913d5a54c24bb40", + "symbol": "SPTE.D", + "decimals": 18, + "name": "Dinari SPTE", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0x1795eeacbf98f08e7ee5af0a8913d5a54c24bb40.png", + "aggregators": ["CoinGecko", "Rubic", "Sonarwatch"], + "occurrences": 3 + }, + "0x50f7b76a0b888e5d7196f1a472d2e567d425c761": { + "address": "0x50f7b76a0b888e5d7196f1a472d2e567d425c761", + "symbol": "TJX.D", + "decimals": 18, + "name": "Dinari TJX", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0x50f7b76a0b888e5d7196f1a472d2e567d425c761.png", + "aggregators": ["CoinGecko", "Rubic", "Sonarwatch"], + "occurrences": 3 + }, + "0x63ad78a6e2db3322d16943fc65e71a0010571521": { + "address": "0x63ad78a6e2db3322d16943fc65e71a0010571521", + "symbol": "TQQQ.D", + "decimals": 18, + "name": "Dinari TQQQ", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0x63ad78a6e2db3322d16943fc65e71a0010571521.png", + "aggregators": ["CoinGecko", "Rubic", "Sonarwatch"], + "occurrences": 3 + }, + "0x1bed98b79f8a5e32031b0d735022fc006db47d37": { + "address": "0x1bed98b79f8a5e32031b0d735022fc006db47d37", + "symbol": "VWO.D", + "decimals": 18, + "name": "Dinari VWO", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0x1bed98b79f8a5e32031b0d735022fc006db47d37.png", + "aggregators": ["CoinGecko", "Rubic", "Sonarwatch"], + "occurrences": 3 + }, + "0x92b81204dd07b14ff8664092897ab660ce3ab323": { + "address": "0x92b81204dd07b14ff8664092897ab660ce3ab323", + "symbol": "WALRF.D", + "decimals": 18, + "name": "Dinari WALRF", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0x92b81204dd07b14ff8664092897ab660ce3ab323.png", + "aggregators": ["CoinGecko", "Rubic", "Sonarwatch"], + "occurrences": 3 + }, + "0xeb0d1360a14c3b162f2974daa5d218e0c1090146": { + "address": "0xeb0d1360a14c3b162f2974daa5d218e0c1090146", + "symbol": "YUM.D", + "decimals": 18, + "name": "Dinari YUM", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0xeb0d1360a14c3b162f2974daa5d218e0c1090146.png", + "aggregators": ["CoinGecko", "Rubic", "Sonarwatch"], + "occurrences": 3 + }, + "0x6d482cec5f9dd1f05ccee9fd3ff79b246170f8e2": { + "address": "0x6d482cec5f9dd1f05ccee9fd3ff79b246170f8e2", + "symbol": "PLTRX", + "decimals": 18, + "name": "PLTRX", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0x6d482cec5f9dd1f05ccee9fd3ff79b246170f8e2.png", + "aggregators": ["CoinGecko", "Rubic", "Rango"], + "occurrences": 3 + }, + "0xa81323f79c4f3887e18cc2702b31635a56ec606e": { + "address": "0xa81323f79c4f3887e18cc2702b31635a56ec606e", + "symbol": "CCL.D", + "decimals": 18, + "name": "Dinari CCL", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0xa81323f79c4f3887e18cc2702b31635a56ec606e.png", + "aggregators": ["CoinGecko", "Rubic", "Sonarwatch"], + "occurrences": 3 + }, + "0x62a48560861b0b451654bfffdb5be6e47aa8ff1b": { + "address": "0x62a48560861b0b451654bfffdb5be6e47aa8ff1b", + "symbol": "HONX", + "decimals": 18, + "name": "HONX", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0x62a48560861b0b451654bfffdb5be6e47aa8ff1b.png", + "aggregators": ["CoinGecko", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x4dafffddea93ddf1e0e7b61e844331455053ce5c": { + "address": "0x4dafffddea93ddf1e0e7b61e844331455053ce5c", + "symbol": "NVDA.D", + "decimals": 18, + "name": "Dinari NVDA", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0x4dafffddea93ddf1e0e7b61e844331455053ce5c.png", + "aggregators": ["CoinGecko", "Rubic", "Sonarwatch"], + "occurrences": 3 + }, + "0x08ebf126f903e76d22869b5cb8c54d1db55e2e84": { + "address": "0x08ebf126f903e76d22869b5cb8c54d1db55e2e84", + "symbol": "USDW", + "decimals": 18, + "name": "USD DWIN", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0x08ebf126f903e76d22869b5cb8c54d1db55e2e84.png", + "aggregators": ["CoinGecko", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x8eef5ed361c6823156d936209e23a8e0349e5c61": { + "address": "0x8eef5ed361c6823156d936209e23a8e0349e5c61", + "symbol": "USDRIF", + "decimals": 18, + "name": "USDRIF", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0x8eef5ed361c6823156d936209e23a8e0349e5c61.png", + "aggregators": ["CoinGecko", "Rubic", "Rango"], + "occurrences": 3 + }, + "0xa6525ae43edcd03dc08e775774dcabd3bb925872": { + "address": "0xa6525ae43edcd03dc08e775774dcabd3bb925872", + "symbol": "BUIDL", + "decimals": 6, + "name": "BUIDL", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0xa6525ae43edcd03dc08e775774dcabd3bb925872.png", + "aggregators": ["CoinGecko", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x5019fe1867d8ccfd76d8d5abd85db5efce548fba": { + "address": "0x5019fe1867d8ccfd76d8d5abd85db5efce548fba", + "symbol": "INT", + "decimals": 18, + "name": "InteNet", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0x5019fe1867d8ccfd76d8d5abd85db5efce548fba.png", + "aggregators": ["CoinGecko", "Rubic", "Sonarwatch"], + "occurrences": 3 + }, + "0x000000001dc8bd45d7e7829fb1c969cbe4d0d1ec": { + "address": "0x000000001dc8bd45d7e7829fb1c969cbe4d0d1ec", + "symbol": "GTUSDA", + "decimals": 18, + "name": "Gauntlet USD Alpha", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0x000000001dc8bd45d7e7829fb1c969cbe4d0d1ec.png", + "aggregators": ["CoinGecko", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x154388a4650d63acc823e06ef9e47c1eddd3cbb2": { + "address": "0x154388a4650d63acc823e06ef9e47c1eddd3cbb2", + "symbol": "SEN", + "decimals": 18, + "name": "Seneca", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0x154388a4650d63acc823e06ef9e47c1eddd3cbb2.png", + "aggregators": ["TraderJoe", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x1689a6e1f09658ff37d0bb131514e701045876da": { + "address": "0x1689a6e1f09658ff37d0bb131514e701045876da", + "symbol": "ZOO", + "decimals": 18, + "name": "ZooDAO", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0x1689a6e1f09658ff37d0bb131514e701045876da.png", + "aggregators": ["TraderJoe", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x244ae62439c1ef3187f244d8604ac2c391ef2b53": { + "address": "0x244ae62439c1ef3187f244d8604ac2c391ef2b53", + "symbol": "MOD", + "decimals": 18, + "name": "Modular", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0x244ae62439c1ef3187f244d8604ac2c391ef2b53.png", + "aggregators": ["TraderJoe", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x2ef354c71caab6dc7469bb3c99642878ccd1143f": { + "address": "0x2ef354c71caab6dc7469bb3c99642878ccd1143f", + "symbol": "IGRAIL", + "decimals": 18, + "name": "Grail Inu", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0x2ef354c71caab6dc7469bb3c99642878ccd1143f.png", + "aggregators": ["TraderJoe", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x300d2c875c6fb8ce4bf5480b4d34b7c9ea8a33a4": { + "address": "0x300d2c875c6fb8ce4bf5480b4d34b7c9ea8a33a4", + "symbol": "PXETH", + "decimals": 18, + "name": "Redacted Finance", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0x300d2c875c6fb8ce4bf5480b4d34b7c9ea8a33a4.png", + "aggregators": ["TraderJoe", "LiFi", "Socket"], + "occurrences": 3 + }, + "0x3eabe18eae267d1b57f917aba085bb5906114600": { + "address": "0x3eabe18eae267d1b57f917aba085bb5906114600", + "symbol": "EPENDLE", + "decimals": 18, + "name": "Equilibria Pendle", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0x3eabe18eae267d1b57f917aba085bb5906114600.png", + "aggregators": ["TraderJoe", "LiFi", "Squid"], + "occurrences": 3 + }, + "0x43df266501dff4773f8f33179e3b96ab94dbc28d": { + "address": "0x43df266501dff4773f8f33179e3b96ab94dbc28d", + "symbol": "GLEND", + "decimals": 18, + "name": "Glend", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0x43df266501dff4773f8f33179e3b96ab94dbc28d.png", + "aggregators": ["TraderJoe", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x5190f06eacefa2c552dc6bd5e763b81c73293293": { + "address": "0x5190f06eacefa2c552dc6bd5e763b81c73293293", + "symbol": "WMX", + "decimals": 18, + "name": "Wombex Token", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0x5190f06eacefa2c552dc6bd5e763b81c73293293.png", + "aggregators": ["TraderJoe", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x6bb7a17acc227fd1f6781d1eedeae01b42047ee0": { + "address": "0x6bb7a17acc227fd1f6781d1eedeae01b42047ee0", + "symbol": "LEX", + "decimals": 18, + "name": "LEX", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0x6bb7a17acc227fd1f6781d1eedeae01b42047ee0.png", + "aggregators": ["TraderJoe", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x7698ac5d15bb3ba7185adcbff32a80ebd9d0709b": { + "address": "0x7698ac5d15bb3ba7185adcbff32a80ebd9d0709b", + "symbol": "GNOME", + "decimals": 18, + "name": "GenomesDAO Governance", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0x7698ac5d15bb3ba7185adcbff32a80ebd9d0709b.png", + "aggregators": ["TraderJoe", "Rubic", "Rango"], + "occurrences": 3 + }, + "0xa14a26bb46e236da394da6b09a5b4cf737ce707b": { + "address": "0xa14a26bb46e236da394da6b09a5b4cf737ce707b", + "symbol": "WTAO", + "decimals": 18, + "name": "Wrapped TAO", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0xa14a26bb46e236da394da6b09a5b4cf737ce707b.png", + "aggregators": ["TraderJoe", "Socket", "Squid"], + "occurrences": 3 + }, + "0xccd3891c1452b7cb0e4632774b9365dc4ee24f20": { + "address": "0xccd3891c1452b7cb0e4632774b9365dc4ee24f20", + "symbol": "EDE", + "decimals": 18, + "name": "EDE", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0xccd3891c1452b7cb0e4632774b9365dc4ee24f20.png", + "aggregators": ["TraderJoe", "Rubic", "Rango"], + "occurrences": 3 + }, + "0xe4177c1400a8eee1799835dcde2489c6f0d5d616": { + "address": "0xe4177c1400a8eee1799835dcde2489c6f0d5d616", + "symbol": "CRAZYRABBIT", + "decimals": 18, + "name": "CRAZYRABBIT", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0xe4177c1400a8eee1799835dcde2489c6f0d5d616.png", + "aggregators": ["TraderJoe", "Rubic", "Rango"], + "occurrences": 3 + }, + "0xe66998533a1992ece9ea99cdf47686f4fc8458e0": { + "address": "0xe66998533a1992ece9ea99cdf47686f4fc8458e0", + "symbol": "JUSDC", + "decimals": 18, + "name": "Jones USDC", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0xe66998533a1992ece9ea99cdf47686f4fc8458e0.png", + "aggregators": ["TraderJoe", "Rubic", "Rango"], + "occurrences": 3 + }, + "0xf1a88250532a4a66a2420a8cbb434da82e1e2ca1": { + "address": "0xf1a88250532a4a66a2420a8cbb434da82e1e2ca1", + "symbol": "AGETH", + "decimals": 18, + "name": "agETHWrapper", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0xf1a88250532a4a66a2420a8cbb434da82e1e2ca1.png", + "aggregators": ["TraderJoe", "Socket", "Rubic"], + "occurrences": 3 + }, + "0xf36a65fd3b7df848860d174115f1864e6aa2db5e": { + "address": "0xf36a65fd3b7df848860d174115f1864e6aa2db5e", + "symbol": "SENUSD", + "decimals": 18, + "name": "Seneca USD", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0xf36a65fd3b7df848860d174115f1864e6aa2db5e.png", + "aggregators": ["TraderJoe", "Rubic", "Rango"], + "occurrences": 3 + }, + "0xf4acde4d938844751f34659c67056f7e69dbe85a": { + "address": "0xf4acde4d938844751f34659c67056f7e69dbe85a", + "symbol": "CLUTCH", + "decimals": 18, + "name": "Clutch", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0xf4acde4d938844751f34659c67056f7e69dbe85a.png", + "aggregators": ["TraderJoe", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x656b80b667a46869144047e6e6c0000c81610253": { + "address": "0x656b80b667a46869144047e6e6c0000c81610253", + "symbol": "ANGLE", + "decimals": 18, + "name": "ANGLE_arbitrum", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0x656b80b667a46869144047e6e6c0000c81610253.png", + "aggregators": ["LiFi", "Socket", "Rango"], + "occurrences": 3 + }, + "0x4e47951508fd4a4126f8ff9cf5e6fa3b7cc8e073": { + "address": "0x4e47951508fd4a4126f8ff9cf5e6fa3b7cc8e073", + "symbol": "FLUID", + "decimals": 18, + "name": "Fluid", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0x4e47951508fd4a4126f8ff9cf5e6fa3b7cc8e073.png", + "aggregators": ["LiFi", "Rubic", "Rango"], + "occurrences": 3 + }, + "0xfac38532829fdd744373fdcd4708ab90fa0c4078": { + "address": "0xfac38532829fdd744373fdcd4708ab90fa0c4078", + "symbol": "TLPT", + "decimals": 18, + "name": "TLPT", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0xfac38532829fdd744373fdcd4708ab90fa0c4078.png", + "aggregators": ["LiFi", "Rubic", "Rango"], + "occurrences": 3 + }, + "0xa6099b214e8d069911702bc92ef274f63c476c5a": { + "address": "0xa6099b214e8d069911702bc92ef274f63c476c5a", + "symbol": "ZENF", + "decimals": 18, + "name": "ZENF Token", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0xa6099b214e8d069911702bc92ef274f63c476c5a.png", + "aggregators": ["LiFi", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x3d48ae69a2f35d02d6f0c5e84cfe66be885f3963": { + "address": "0x3d48ae69a2f35d02d6f0c5e84cfe66be885f3963", + "symbol": "VIDYA", + "decimals": 18, + "name": "Vidya", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0x3d48ae69a2f35d02d6f0c5e84cfe66be885f3963.png", + "aggregators": ["LiFi", "Socket", "Rubic"], + "occurrences": 3 + }, + "0x0fc0c323cf76e188654d63d62e668cabec7a525b": { + "address": "0x0fc0c323cf76e188654d63d62e668cabec7a525b", + "symbol": "LMR", + "decimals": 8, + "name": "Lumerin", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0x0fc0c323cf76e188654d63d62e668cabec7a525b.png", + "aggregators": ["LiFi", "Socket", "Rubic"], + "occurrences": 3 + }, + "0xcab86f6fb6d1c2cbeeb97854a0c023446a075fe3": { + "address": "0xcab86f6fb6d1c2cbeeb97854a0c023446a075fe3", + "symbol": "DEETH", + "decimals": 18, + "name": "DEETH", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0xcab86f6fb6d1c2cbeeb97854a0c023446a075fe3.png", + "aggregators": ["LiFi", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x56b251d4b493ee3956e3f899d36b7290902d2326": { + "address": "0x56b251d4b493ee3956e3f899d36b7290902d2326", + "symbol": "MMF", + "decimals": 18, + "name": "Mad Meerkat Finance", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0x56b251d4b493ee3956e3f899d36b7290902d2326.png", + "aggregators": ["LiFi", "Rubic", "Rango"], + "occurrences": 3 + }, + "0xec13336bbd50790a00cdc0feddf11287eaf92529": { + "address": "0xec13336bbd50790a00cdc0feddf11287eaf92529", + "symbol": "GMUSD", + "decimals": 18, + "name": "gmUSD", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0xec13336bbd50790a00cdc0feddf11287eaf92529.png", + "aggregators": ["LiFi", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x9ef758ac000a354479e538b8b2f01b917b8e89e7": { + "address": "0x9ef758ac000a354479e538b8b2f01b917b8e89e7", + "symbol": "XDO", + "decimals": 18, + "name": "XDO", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0x9ef758ac000a354479e538b8b2f01b917b8e89e7.png", + "aggregators": ["LiFi", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x7e50c0c6dbd5e63cc81001f6c8cf1bf7010ef7c9": { + "address": "0x7e50c0c6dbd5e63cc81001f6c8cf1bf7010ef7c9", + "symbol": "MFG", + "decimals": 18, + "name": "SyncFab Smart Manufacturing Blockchain", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0x7e50c0c6dbd5e63cc81001f6c8cf1bf7010ef7c9.png", + "aggregators": ["LiFi", "Socket", "Rubic"], + "occurrences": 3 + }, + "0xce4db2ce8cca463f8aa1e2174c244ba4a8d672cb": { + "address": "0xce4db2ce8cca463f8aa1e2174c244ba4a8d672cb", + "symbol": "IQ", + "decimals": 18, + "name": "Everipedia IQ", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0xce4db2ce8cca463f8aa1e2174c244ba4a8d672cb.png", + "aggregators": ["LiFi", "Socket", "Rubic"], + "occurrences": 3 + }, + "0xc4be0798e5b5b1c15eda36d9b2d8c1a60717fa92": { + "address": "0xc4be0798e5b5b1c15eda36d9b2d8c1a60717fa92", + "symbol": "GOLD", + "decimals": 18, + "name": "Adventurer Gold", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0xc4be0798e5b5b1c15eda36d9b2d8c1a60717fa92.png", + "aggregators": ["LiFi", "Rubic", "Rango"], + "occurrences": 3 + }, + "0xd67a097dce9d4474737e6871684ae3c05460f571": { + "address": "0xd67a097dce9d4474737e6871684ae3c05460f571", + "symbol": "GND", + "decimals": 18, + "name": "GND", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0xd67a097dce9d4474737e6871684ae3c05460f571.png", + "aggregators": ["LiFi", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x250caff618cf205997309940c14c52b5dceb351e": { + "address": "0x250caff618cf205997309940c14c52b5dceb351e", + "symbol": "CROWD", + "decimals": 18, + "name": "CROWD", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0x250caff618cf205997309940c14c52b5dceb351e.png", + "aggregators": ["LiFi", "Rubic", "Rango"], + "occurrences": 3 + }, + "0xdaf69e281a30b15e387e27fb334c4116c0a87709": { + "address": "0xdaf69e281a30b15e387e27fb334c4116c0a87709", + "symbol": "DAO", + "decimals": 18, + "name": "DAO Maker", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0xdaf69e281a30b15e387e27fb334c4116c0a87709.png", + "aggregators": ["LiFi", "Socket", "Rubic"], + "occurrences": 3 + }, + "0xd6c0156e85decdf2983c7a2c4a3015ed268d6f8a": { + "address": "0xd6c0156e85decdf2983c7a2c4a3015ed268d6f8a", + "symbol": "ROSX", + "decimals": 18, + "name": "Roseon", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0xd6c0156e85decdf2983c7a2c4a3015ed268d6f8a.png", + "aggregators": ["LiFi", "Rubic", "Rango"], + "occurrences": 3 + }, + "0xe85411c030fb32a9d8b14bbbc6cb19417391f711": { + "address": "0xe85411c030fb32a9d8b14bbbc6cb19417391f711", + "symbol": "SUBTC", + "decimals": 18, + "name": "Sumerian BTC", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0xe85411c030fb32a9d8b14bbbc6cb19417391f711.png", + "aggregators": ["LiFi", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x867b1cd06039eb70385788a048b57f6d4fdc5dbb": { + "address": "0x867b1cd06039eb70385788a048b57f6d4fdc5dbb", + "symbol": "PSLVR", + "decimals": 18, + "name": "Poison.Finance Silver Potion", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0x867b1cd06039eb70385788a048b57f6d4fdc5dbb.png", + "aggregators": ["LiFi", "Rango", "SushiSwap"], + "occurrences": 3 + }, + "0xe656165d39419c03d588515c835d109e19221e1e": { + "address": "0xe656165d39419c03d588515c835d109e19221e1e", + "symbol": "PAMZN", + "decimals": 18, + "name": "Poison.Finance Amazon Potion", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0xe656165d39419c03d588515c835d109e19221e1e.png", + "aggregators": ["LiFi", "Rango", "SushiSwap"], + "occurrences": 3 + }, + "0xf8f636bb3be1feeb979e1ea281389b49cf3a6853": { + "address": "0xf8f636bb3be1feeb979e1ea281389b49cf3a6853", + "symbol": "PAAPL", + "decimals": 18, + "name": "Poison.Finance Apple Potion", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0xf8f636bb3be1feeb979e1ea281389b49cf3a6853.png", + "aggregators": ["LiFi", "Rango", "SushiSwap"], + "occurrences": 3 + }, + "0x870908873b6f940e025a7c6879678cb82ec6c9b6": { + "address": "0x870908873b6f940e025a7c6879678cb82ec6c9b6", + "symbol": "ZUNUSD", + "decimals": 18, + "name": "Zunami USD", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0x870908873b6f940e025a7c6879678cb82ec6c9b6.png", + "aggregators": ["LiFi", "Rubic", "Rango"], + "occurrences": 3 + }, + "0xdee46be9d0b207e5d88d2efd84a045e725a242f7": { + "address": "0xdee46be9d0b207e5d88d2efd84a045e725a242f7", + "symbol": "PEPE", + "decimals": 18, + "name": "Pepe", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0xdee46be9d0b207e5d88d2efd84a045e725a242f7.png", + "aggregators": ["Socket", "Rango", "SushiSwap"], + "occurrences": 3 + }, + "0x0ce45dd53affbb011884ef1866e0738f58ab7969": { + "address": "0x0ce45dd53affbb011884ef1866e0738f58ab7969", + "symbol": "CGETH.HASHKEY", + "decimals": 18, + "name": "cgETH Hashkey Cloud", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0x0ce45dd53affbb011884ef1866e0738f58ab7969.png", + "aggregators": ["Rubic", "Rango", "Sonarwatch"], + "occurrences": 3 + }, + "0x1045971c168b5294acbc8727a4f1c9e1af99f6d0": { + "address": "0x1045971c168b5294acbc8727a4f1c9e1af99f6d0", + "symbol": "FTN", + "decimals": 18, + "name": "Fasttoken", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0x1045971c168b5294acbc8727a4f1c9e1af99f6d0.png", + "aggregators": ["Rubic", "Rango", "Sonarwatch"], + "occurrences": 3 + }, + "0x98a5f77d1fec5d68c9a6decb715f11beaba84f38": { + "address": "0x98a5f77d1fec5d68c9a6decb715f11beaba84f38", + "symbol": "NSFW", + "decimals": 18, + "name": "Pleasure Coin", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0x98a5f77d1fec5d68c9a6decb715f11beaba84f38.png", + "aggregators": ["Rubic", "Rango", "SushiSwap"], + "occurrences": 3 + }, + "0x2e80259c9071b6176205ff5f5eb6f7ec8361b93f": { + "address": "0x2e80259c9071b6176205ff5f5eb6f7ec8361b93f", + "symbol": "HASH", + "decimals": 18, + "name": "HashDAO Token", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0x2e80259c9071b6176205ff5f5eb6f7ec8361b93f.png", + "aggregators": ["Rubic", "Squid", "Rango"], + "occurrences": 3 + }, + "0x53ce5f2a18a623317357d6366ec59b47cbb0060d": { + "address": "0x53ce5f2a18a623317357d6366ec59b47cbb0060d", + "symbol": "RBOT", + "decimals": 18, + "name": "Runbot", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0x53ce5f2a18a623317357d6366ec59b47cbb0060d.png", + "aggregators": ["Rubic", "Rango", "Sonarwatch"], + "occurrences": 3 + }, + "0x58cb98a966f62aa6f2190eb3aa03132a0c3de3d5": { + "address": "0x58cb98a966f62aa6f2190eb3aa03132a0c3de3d5", + "symbol": "OPEN", + "decimals": 18, + "name": "OpenWorld", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0x58cb98a966f62aa6f2190eb3aa03132a0c3de3d5.png", + "aggregators": ["Rubic", "Rango", "SushiSwap"], + "occurrences": 3 + }, + "0xa06a65032b78106ea47d122387e40e1fbcba942d": { + "address": "0xa06a65032b78106ea47d122387e40e1fbcba942d", + "symbol": "XBTC", + "decimals": 18, + "name": "xBTC", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0xa06a65032b78106ea47d122387e40e1fbcba942d.png", + "aggregators": ["Metamask"], + "occurrences": 1 + } + }, + "timestamp": 1779126362482 + }, + "0xa86a": { + "data": { + "0xb31f66aa3c1e785363f0875a1b74e27b85fd66c7": { + "address": "0xb31f66aa3c1e785363f0875a1b74e27b85fd66c7", + "symbol": "WAVAX", + "decimals": 18, + "name": "Wrapped AVAX", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/43114/0xb31f66aa3c1e785363f0875a1b74e27b85fd66c7.png", + "aggregators": [ + "TraderJoe", + "1inch", + "LiFi", + "TrustWallet", + "Socket", + "Rubic", + "Squid", + "Rango", + "Sonarwatch", + "SushiSwap" + ], + "occurrences": 10 + }, + "0xb97ef9ef8734c71904d8002f8b6bc66dd9c48a6e": { + "address": "0xb97ef9ef8734c71904d8002f8b6bc66dd9c48a6e", + "symbol": "USDC", + "decimals": 6, + "name": "USD Coin", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/43114/0xb97ef9ef8734c71904d8002f8b6bc66dd9c48a6e.png", + "aggregators": [ + "TraderJoe", + "1inch", + "LiFi", + "TrustWallet", + "Socket", + "Rubic", + "Squid", + "Rango", + "Sonarwatch", + "SushiSwap" + ], + "occurrences": 10 + }, + "0x9702230a8ea53601f5cd2dc00fdbc13d4df4a8c7": { + "address": "0x9702230a8ea53601f5cd2dc00fdbc13d4df4a8c7", + "symbol": "USDT", + "decimals": 6, + "name": "TetherToken", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/43114/0x9702230a8ea53601f5cd2dc00fdbc13d4df4a8c7.png", + "aggregators": [ + "TraderJoe", + "1inch", + "LiFi", + "TrustWallet", + "Socket", + "Rubic", + "Squid", + "Rango", + "Sonarwatch", + "SushiSwap" + ], + "occurrences": 10 + }, + "0x130966628846bfd36ff31a822705796e8cb8c18d": { + "address": "0x130966628846bfd36ff31a822705796e8cb8c18d", + "symbol": "MIM", + "decimals": 18, + "name": "Magic Internet Money", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/43114/0x130966628846bfd36ff31a822705796e8cb8c18d.png", + "aggregators": [ + "PangolinDex", + "1inch", + "LiFi", + "Socket", + "Rubic", + "Squid", + "Rango", + "Sonarwatch", + "SushiSwap" + ], + "occurrences": 9 + }, + "0x6e84a6216ea6dacc71ee8e6b0a5b7322eebc0fdd": { + "address": "0x6e84a6216ea6dacc71ee8e6b0a5b7322eebc0fdd", + "symbol": "JOE", + "decimals": 18, + "name": "JoeToken", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/43114/0x6e84a6216ea6dacc71ee8e6b0a5b7322eebc0fdd.png", + "aggregators": [ + "TraderJoe", + "1inch", + "LiFi", + "Socket", + "Rubic", + "Squid", + "Rango", + "Sonarwatch", + "SushiSwap" + ], + "occurrences": 9 + }, + "0xc7198437980c041c805a1edcba50c1ce5db95118": { + "address": "0xc7198437980c041c805a1edcba50c1ce5db95118", + "symbol": "USDT.E", + "decimals": 6, + "name": "Tether USD", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/43114/0xc7198437980c041c805a1edcba50c1ce5db95118.png", + "aggregators": [ + "TraderJoe", + "1inch", + "LiFi", + "TrustWallet", + "Socket", + "Rubic", + "Squid", + "Rango", + "Sonarwatch", + "SushiSwap" + ], + "occurrences": 10 + }, + "0xa7d7079b0fead91f3e65f86e8915cb59c1a4c664": { + "address": "0xa7d7079b0fead91f3e65f86e8915cb59c1a4c664", + "symbol": "USDC.E", + "decimals": 6, + "name": "USD Coin", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/43114/0xa7d7079b0fead91f3e65f86e8915cb59c1a4c664.png", + "aggregators": [ + "TraderJoe", + "1inch", + "LiFi", + "TrustWallet", + "Socket", + "Rubic", + "Squid", + "Rango", + "Sonarwatch", + "SushiSwap" + ], + "occurrences": 10 + }, + "0xd24c2ad096400b6fbcd2ad8b24e7acbc21a1da64": { + "address": "0xd24c2ad096400b6fbcd2ad8b24e7acbc21a1da64", + "symbol": "FRAX", + "decimals": 18, + "name": "Frax", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/43114/0xd24c2ad096400b6fbcd2ad8b24e7acbc21a1da64.png", + "aggregators": [ + "TraderJoe", + "1inch", + "LiFi", + "TrustWallet", + "Socket", + "Rubic", + "Squid", + "Rango", + "Sonarwatch", + "SushiSwap" + ], + "occurrences": 10 + }, + "0x60781c2586d68229fde47564546784ab3faca982": { + "address": "0x60781c2586d68229fde47564546784ab3faca982", + "symbol": "PNG", + "decimals": 18, + "name": "Pangolin", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/43114/0x60781c2586d68229fde47564546784ab3faca982.png", + "aggregators": [ + "TraderJoe", + "1inch", + "LiFi", + "TrustWallet", + "Socket", + "Rubic", + "Squid", + "Rango", + "Sonarwatch" + ], + "occurrences": 9 + }, + "0x214db107654ff987ad859f34125307783fc8e387": { + "address": "0x214db107654ff987ad859f34125307783fc8e387", + "symbol": "FXS", + "decimals": 18, + "name": "Frax Share", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/43114/0x214db107654ff987ad859f34125307783fc8e387.png", + "aggregators": [ + "TraderJoe", + "1inch", + "LiFi", + "TrustWallet", + "Socket", + "Rubic", + "Rango", + "Sonarwatch", + "SushiSwap" + ], + "occurrences": 9 + }, + "0x62edc0692bd897d2295872a9ffcac5425011c661": { + "address": "0x62edc0692bd897d2295872a9ffcac5425011c661", + "symbol": "GMX", + "decimals": 18, + "name": "GMX", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/43114/0x62edc0692bd897d2295872a9ffcac5425011c661.png", + "aggregators": [ + "TraderJoe", + "1inch", + "LiFi", + "TrustWallet", + "Socket", + "Rubic", + "Squid", + "Rango", + "SushiSwap" + ], + "occurrences": 9 + }, + "0x59414b3089ce2af0010e7523dea7e2b35d776ec7": { + "address": "0x59414b3089ce2af0010e7523dea7e2b35d776ec7", + "symbol": "YAK", + "decimals": 18, + "name": "Yield Yak", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/43114/0x59414b3089ce2af0010e7523dea7e2b35d776ec7.png", + "aggregators": [ + "TraderJoe", + "1inch", + "LiFi", + "Socket", + "Rubic", + "Squid", + "Rango", + "Sonarwatch" + ], + "occurrences": 8 + }, + "0xd1c3f94de7e5b45fa4edbba472491a9f4b166fc4": { + "address": "0xd1c3f94de7e5b45fa4edbba472491a9f4b166fc4", + "symbol": "XAVA", + "decimals": 18, + "name": "Avalaunch", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/43114/0xd1c3f94de7e5b45fa4edbba472491a9f4b166fc4.png", + "aggregators": [ + "TraderJoe", + "1inch", + "LiFi", + "Socket", + "Rubic", + "Squid", + "Rango", + "Sonarwatch" + ], + "occurrences": 8 + }, + "0xa32608e873f9ddef944b24798db69d80bbb4d1ed": { + "address": "0xa32608e873f9ddef944b24798db69d80bbb4d1ed", + "symbol": "CRA", + "decimals": 18, + "name": "Crabada", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/43114/0xa32608e873f9ddef944b24798db69d80bbb4d1ed.png", + "aggregators": [ + "PangolinDex", + "1inch", + "Socket", + "Rubic", + "Squid", + "Rango", + "Sonarwatch" + ], + "occurrences": 7 + }, + "0x22d4002028f537599be9f666d1c4fa138522f9c8": { + "address": "0x22d4002028f537599be9f666d1c4fa138522f9c8", + "symbol": "PTP", + "decimals": 18, + "name": "Platypus Finance", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/43114/0x22d4002028f537599be9f666d1c4fa138522f9c8.png", + "aggregators": [ + "PangolinDex", + "1inch", + "Socket", + "Rubic", + "Squid", + "Rango", + "Sonarwatch" + ], + "occurrences": 7 + }, + "0xec3492a2508ddf4fdc0cd76f31f340b30d1793e6": { + "address": "0xec3492a2508ddf4fdc0cd76f31f340b30d1793e6", + "symbol": "CLY", + "decimals": 18, + "name": "Colony Token", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/43114/0xec3492a2508ddf4fdc0cd76f31f340b30d1793e6.png", + "aggregators": [ + "TraderJoe", + "1inch", + "Socket", + "Rubic", + "Squid", + "Rango" + ], + "occurrences": 6 + }, + "0xd586e7f844cea2f87f50152665bcbc2c279d8d70": { + "address": "0xd586e7f844cea2f87f50152665bcbc2c279d8d70", + "symbol": "DAI.E", + "decimals": 18, + "name": "Dai Stablecoin", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/43114/0xd586e7f844cea2f87f50152665bcbc2c279d8d70.png", + "aggregators": [ + "TraderJoe", + "1inch", + "LiFi", + "TrustWallet", + "Socket", + "Rubic", + "Squid", + "Rango", + "Sonarwatch", + "SushiSwap" + ], + "occurrences": 10 + }, + "0x5947bb275c521040051d82396192181b413227a3": { + "address": "0x5947bb275c521040051d82396192181b413227a3", + "symbol": "LINK.E", + "decimals": 18, + "name": "Chainlink Token", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/43114/0x5947bb275c521040051d82396192181b413227a3.png", + "aggregators": [ + "TraderJoe", + "1inch", + "LiFi", + "TrustWallet", + "Socket", + "Rubic", + "Squid", + "Rango", + "Sonarwatch", + "SushiSwap" + ], + "occurrences": 10 + }, + "0xce1bffbd5374dac86a2893119683f4911a2f7814": { + "address": "0xce1bffbd5374dac86a2893119683f4911a2f7814", + "symbol": "SPELL", + "decimals": 18, + "name": "Spell Token", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/43114/0xce1bffbd5374dac86a2893119683f4911a2f7814.png", + "aggregators": [ + "PangolinDex", + "1inch", + "LiFi", + "TrustWallet", + "Socket", + "Rubic", + "Squid", + "Rango", + "Sonarwatch", + "SushiSwap" + ], + "occurrences": 10 + }, + "0x49d5c2bdffac6ce2bfdb6640f4f80f226bc10bab": { + "address": "0x49d5c2bdffac6ce2bfdb6640f4f80f226bc10bab", + "symbol": "WETH", + "decimals": 18, + "name": "Wrapped Ether", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/43114/0x49d5c2bdffac6ce2bfdb6640f4f80f226bc10bab.png", + "aggregators": [ + "TraderJoe", + "1inch", + "LiFi", + "Socket", + "Rubic", + "Squid", + "Rango", + "Sonarwatch", + "SushiSwap" + ], + "occurrences": 9 + }, + "0x8729438eb15e2c8b576fcc6aecda6a148776c0f5": { + "address": "0x8729438eb15e2c8b576fcc6aecda6a148776c0f5", + "symbol": "QI", + "decimals": 18, + "name": "BENQI", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/43114/0x8729438eb15e2c8b576fcc6aecda6a148776c0f5.png", + "aggregators": [ + "TraderJoe", + "1inch", + "LiFi", + "Socket", + "Rubic", + "Squid", + "Rango", + "Sonarwatch" + ], + "occurrences": 8 + }, + "0x2f6f07cdcf3588944bf4c42ac74ff24bf56e7590": { + "address": "0x2f6f07cdcf3588944bf4c42ac74ff24bf56e7590", + "symbol": "STG", + "decimals": 18, + "name": "StargateToken", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/43114/0x2f6f07cdcf3588944bf4c42ac74ff24bf56e7590.png", + "aggregators": [ + "TraderJoe", + "1inch", + "LiFi", + "Socket", + "Rubic", + "Rango", + "Sonarwatch", + "SushiSwap" + ], + "occurrences": 8 + }, + "0x321e7092a180bb43555132ec53aaa65a5bf84251": { + "address": "0x321e7092a180bb43555132ec53aaa65a5bf84251", + "symbol": "GOHM", + "decimals": 18, + "name": "Governance OHM", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/43114/0x321e7092a180bb43555132ec53aaa65a5bf84251.png", + "aggregators": [ + "TraderJoe", + "1inch", + "LiFi", + "Socket", + "Rubic", + "Squid", + "Rango", + "Sonarwatch" + ], + "occurrences": 8 + }, + "0x7761e2338b35bceb6bda6ce477ef012bde7ae611": { + "address": "0x7761e2338b35bceb6bda6ce477ef012bde7ae611", + "symbol": "EGG", + "decimals": 18, + "name": "Chikn Egg", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/43114/0x7761e2338b35bceb6bda6ce477ef012bde7ae611.png", + "aggregators": [ + "TraderJoe", + "1inch", + "Socket", + "Rubic", + "Squid", + "Rango", + "Sonarwatch" + ], + "occurrences": 7 + }, + "0x2b2c81e08f1af8835a78bb2a90ae924ace0ea4be": { + "address": "0x2b2c81e08f1af8835a78bb2a90ae924ace0ea4be", + "symbol": "SAVAX", + "decimals": 18, + "name": "BENQI Liquid Staked AVAX", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/43114/0x2b2c81e08f1af8835a78bb2a90ae924ace0ea4be.png", + "aggregators": [ + "TraderJoe", + "1inch", + "LiFi", + "Rubic", + "Squid", + "Rango", + "Sonarwatch" + ], + "occurrences": 7 + }, + "0xc38f41a296a4493ff429f1238e030924a1542e50": { + "address": "0xc38f41a296a4493ff429f1238e030924a1542e50", + "symbol": "SNOB", + "decimals": 18, + "name": "Snowball", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/43114/0xc38f41a296a4493ff429f1238e030924a1542e50.png", + "aggregators": [ + "PangolinDex", + "1inch", + "LiFi", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 7 + }, + "0xe896cdeaac9615145c0ca09c8cd5c25bced6384c": { + "address": "0xe896cdeaac9615145c0ca09c8cd5c25bced6384c", + "symbol": "PEFI", + "decimals": 18, + "name": "Penguin Finance", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/43114/0xe896cdeaac9615145c0ca09c8cd5c25bced6384c.png", + "aggregators": [ + "PangolinDex", + "1inch", + "LiFi", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 7 + }, + "0x50b7545627a5162f82a992c33b87adc75187b218": { + "address": "0x50b7545627a5162f82a992c33b87adc75187b218", + "symbol": "WBTC.E", + "decimals": 8, + "name": "Wrapped BTC", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/43114/0x50b7545627a5162f82a992c33b87adc75187b218.png", + "aggregators": [ + "TraderJoe", + "1inch", + "LiFi", + "TrustWallet", + "Socket", + "Rubic", + "Squid", + "Rango", + "Sonarwatch", + "SushiSwap" + ], + "occurrences": 10 + }, + "0x63a72806098bd3d9520cc43356dd78afe5d386d9": { + "address": "0x63a72806098bd3d9520cc43356dd78afe5d386d9", + "symbol": "AAVE.E", + "decimals": 18, + "name": "Aave Token", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/43114/0x63a72806098bd3d9520cc43356dd78afe5d386d9.png", + "aggregators": [ + "TraderJoe", + "1inch", + "LiFi", + "TrustWallet", + "Socket", + "Rubic", + "Squid", + "Rango", + "Sonarwatch", + "SushiSwap" + ], + "occurrences": 10 + }, + "0x152b9d0fdc40c096757f570a51e494bd4b943e50": { + "address": "0x152b9d0fdc40c096757f570a51e494bd4b943e50", + "symbol": "BTC.B", + "decimals": 8, + "name": "Bitcoin", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/43114/0x152b9d0fdc40c096757f570a51e494bd4b943e50.png", + "aggregators": [ + "TraderJoe", + "1inch", + "LiFi", + "Rubic", + "Squid", + "Rango", + "Sonarwatch", + "SushiSwap" + ], + "occurrences": 8 + }, + "0x264c1383ea520f73dd837f915ef3a732e204a493": { + "address": "0x264c1383ea520f73dd837f915ef3a732e204a493", + "symbol": "WBNB", + "decimals": 18, + "name": "Wrapped BNB", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/43114/0x264c1383ea520f73dd837f915ef3a732e204a493.png", + "aggregators": [ + "PangolinDex", + "1inch", + "LiFi", + "Socket", + "Rubic", + "Squid", + "Rango", + "Sonarwatch" + ], + "occurrences": 8 + }, + "0x1c20e891bab6b1727d14da358fae2984ed9b59eb": { + "address": "0x1c20e891bab6b1727d14da358fae2984ed9b59eb", + "symbol": "TUSD", + "decimals": 18, + "name": "TrueUSD", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/43114/0x1c20e891bab6b1727d14da358fae2984ed9b59eb.png", + "aggregators": [ + "PangolinDex", + "1inch", + "LiFi", + "TrustWallet", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 8 + }, + "0x8f47416cae600bccf9530e9f3aeaa06bdd1caa79": { + "address": "0x8f47416cae600bccf9530e9f3aeaa06bdd1caa79", + "symbol": "THOR", + "decimals": 18, + "name": "ThorFi", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/43114/0x8f47416cae600bccf9530e9f3aeaa06bdd1caa79.png", + "aggregators": [ + "TraderJoe", + "1inch", + "LiFi", + "Socket", + "Rubic", + "Squid", + "Rango", + "Sonarwatch" + ], + "occurrences": 8 + }, + "0xb54f16fb19478766a268f172c9480f8da1a7c9c3": { + "address": "0xb54f16fb19478766a268f172c9480f8da1a7c9c3", + "symbol": "TIME", + "decimals": 9, + "name": "Time", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/43114/0xb54f16fb19478766a268f172c9480f8da1a7c9c3.png", + "aggregators": [ + "PangolinDex", + "LiFi", + "Socket", + "Rubic", + "Rango", + "Sonarwatch", + "SushiSwap" + ], + "occurrences": 7 + }, + "0xed2b42d3c9c6e97e11755bb37df29b6375ede3eb": { + "address": "0xed2b42d3c9c6e97e11755bb37df29b6375ede3eb", + "symbol": "HON", + "decimals": 18, + "name": "Heroes of NFT", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/43114/0xed2b42d3c9c6e97e11755bb37df29b6375ede3eb.png", + "aggregators": [ + "TraderJoe", + "1inch", + "LiFi", + "Rubic", + "Squid", + "Rango", + "Sonarwatch" + ], + "occurrences": 7 + }, + "0x544c42fbb96b39b21df61cf322b5edc285ee7429": { + "address": "0x544c42fbb96b39b21df61cf322b5edc285ee7429", + "symbol": "INSUR", + "decimals": 18, + "name": "InsurAce", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/43114/0x544c42fbb96b39b21df61cf322b5edc285ee7429.png", + "aggregators": [ + "PangolinDex", + "1inch", + "LiFi", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 7 + }, + "0x100cc3a819dd3e8573fd2e46d1e66ee866068f30": { + "address": "0x100cc3a819dd3e8573fd2e46d1e66ee866068f30", + "symbol": "DCAU", + "decimals": 18, + "name": "Dragon Crypto Aurum", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/43114/0x100cc3a819dd3e8573fd2e46d1e66ee866068f30.png", + "aggregators": [ + "TraderJoe", + "1inch", + "LiFi", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 7 + }, + "0xfcc6ce74f4cd7edef0c5429bb99d38a3608043a5": { + "address": "0xfcc6ce74f4cd7edef0c5429bb99d38a3608043a5", + "symbol": "FIRE", + "decimals": 18, + "name": "The Phoenix", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/43114/0xfcc6ce74f4cd7edef0c5429bb99d38a3608043a5.png", + "aggregators": [ + "PangolinDex", + "LiFi", + "Socket", + "Rubic", + "Squid", + "Rango", + "Sonarwatch" + ], + "occurrences": 7 + }, + "0x346a59146b9b4a77100d369a3d18e8007a9f46a6": { + "address": "0x346a59146b9b4a77100d369a3d18e8007a9f46a6", + "symbol": "AVAI", + "decimals": 18, + "name": "Orca AVAI", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/43114/0x346a59146b9b4a77100d369a3d18e8007a9f46a6.png", + "aggregators": [ + "PangolinDex", + "1inch", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 6 + }, + "0x26debd39d5ed069770406fca10a0e4f8d2c743eb": { + "address": "0x26debd39d5ed069770406fca10a0e4f8d2c743eb", + "symbol": "WGUN", + "decimals": 18, + "name": "Wrapped GUN", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/43114/0x26debd39d5ed069770406fca10a0e4f8d2c743eb.png", + "aggregators": [ + "TraderJoe", + "LiFi", + "Rubic", + "Squid", + "Rango", + "Sonarwatch" + ], + "occurrences": 6 + }, + "0x9c9e5fd8bbc25984b178fdce6117defa39d2db39": { + "address": "0x9c9e5fd8bbc25984b178fdce6117defa39d2db39", + "symbol": "BUSD", + "decimals": 18, + "name": "BUSD Token", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/43114/0x9c9e5fd8bbc25984b178fdce6117defa39d2db39.png", + "aggregators": [ + "PangolinDex", + "LiFi", + "Socket", + "Rubic", + "Rango", + "SushiSwap" + ], + "occurrences": 6 + }, + "0x01c2086facfd7aa38f69a6bd8c91bef3bb5adfca": { + "address": "0x01c2086facfd7aa38f69a6bd8c91bef3bb5adfca", + "symbol": "YAY", + "decimals": 18, + "name": "YAY Network", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/43114/0x01c2086facfd7aa38f69a6bd8c91bef3bb5adfca.png", + "aggregators": [ + "PangolinDex", + "1inch", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 6 + }, + "0x027dbca046ca156de9622cd1e2d907d375e53aa7": { + "address": "0x027dbca046ca156de9622cd1e2d907d375e53aa7", + "symbol": "AMPL", + "decimals": 9, + "name": "Ampleforth", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/43114/0x027dbca046ca156de9622cd1e2d907d375e53aa7.png", + "aggregators": [ + "PangolinDex", + "1inch", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 6 + }, + "0x637afeff75ca669ff92e4570b14d6399a658902f": { + "address": "0x637afeff75ca669ff92e4570b14d6399a658902f", + "symbol": "COOK", + "decimals": 18, + "name": "Cook", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/43114/0x637afeff75ca669ff92e4570b14d6399a658902f.png", + "aggregators": [ + "PangolinDex", + "1inch", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 6 + }, + "0x44754455564474a89358b2c2265883df993b12f0": { + "address": "0x44754455564474a89358b2c2265883df993b12f0", + "symbol": "ZEE", + "decimals": 18, + "name": "ZeroSwap", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/43114/0x44754455564474a89358b2c2265883df993b12f0.png", + "aggregators": [ + "PangolinDex", + "LiFi", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 6 + }, + "0x564a341df6c126f90cf3ecb92120fd7190acb401": { + "address": "0x564a341df6c126f90cf3ecb92120fd7190acb401", + "symbol": "TRYB", + "decimals": 6, + "name": "BiLira", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/43114/0x564a341df6c126f90cf3ecb92120fd7190acb401.png", + "aggregators": [ + "PangolinDex", + "LiFi", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 6 + }, + "0xb1466d4cf0dcfc0bcddcf3500f473cdacb88b56d": { + "address": "0xb1466d4cf0dcfc0bcddcf3500f473cdacb88b56d", + "symbol": "WET", + "decimals": 18, + "name": "Weble Ecosystem", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/43114/0xb1466d4cf0dcfc0bcddcf3500f473cdacb88b56d.png", + "aggregators": [ + "PangolinDex", + "LiFi", + "Rubic", + "Squid", + "Rango", + "Sonarwatch" + ], + "occurrences": 6 + }, + "0x8ae8be25c23833e0a01aa200403e826f611f9cd2": { + "address": "0x8ae8be25c23833e0a01aa200403e826f611f9cd2", + "symbol": "CRAFT", + "decimals": 18, + "name": "TaleCraft", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/43114/0x8ae8be25c23833e0a01aa200403e826f611f9cd2.png", + "aggregators": [ + "PangolinDex", + "LiFi", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 6 + }, + "0x9e3ca00f2d4a9e5d4f0add0900de5f15050812cf": { + "address": "0x9e3ca00f2d4a9e5d4f0add0900de5f15050812cf", + "symbol": "NFTD", + "decimals": 18, + "name": "NFTrade", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/43114/0x9e3ca00f2d4a9e5d4f0add0900de5f15050812cf.png", + "aggregators": [ + "PangolinDex", + "1inch", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 6 + }, + "0xc7f4debc8072e23fe9259a5c0398326d8efb7f5c": { + "address": "0xc7f4debc8072e23fe9259a5c0398326d8efb7f5c", + "symbol": "HEC", + "decimals": 18, + "name": "HeroesChained", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/43114/0xc7f4debc8072e23fe9259a5c0398326d8efb7f5c.png", + "aggregators": [ + "PangolinDex", + "LiFi", + "Rubic", + "Squid", + "Rango", + "Sonarwatch" + ], + "occurrences": 6 + }, + "0xf891214fdcf9cdaa5fdc42369ee4f27f226adad6": { + "address": "0xf891214fdcf9cdaa5fdc42369ee4f27f226adad6", + "symbol": "IME", + "decimals": 18, + "name": "Imperium Empires", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/43114/0xf891214fdcf9cdaa5fdc42369ee4f27f226adad6.png", + "aggregators": [ + "PangolinDex", + "Rubic", + "Squid", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x1db749847c4abb991d8b6032102383e6bfd9b1c7": { + "address": "0x1db749847c4abb991d8b6032102383e6bfd9b1c7", + "symbol": "DON", + "decimals": 18, + "name": "Dogeon", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/43114/0x1db749847c4abb991d8b6032102383e6bfd9b1c7.png", + "aggregators": [ + "PangolinDex", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x6985884c4392d348587b19cb9eaaf157f13271cd": { + "address": "0x6985884c4392d348587b19cb9eaaf157f13271cd", + "symbol": "ZRO", + "decimals": 18, + "name": "LayerZero", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/43114/0x6985884c4392d348587b19cb9eaaf157f13271cd.png", + "aggregators": [ + "TraderJoe", + "1inch", + "LiFi", + "Socket", + "Rubic", + "Squid", + "Rango", + "Sonarwatch", + "SushiSwap" + ], + "occurrences": 9 + }, + "0xb599c3590f42f8f995ecfa0f85d2980b76862fc1": { + "address": "0xb599c3590f42f8f995ecfa0f85d2980b76862fc1", + "symbol": "UST", + "decimals": 6, + "name": "UST (Portal)", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/43114/0xb599c3590f42f8f995ecfa0f85d2980b76862fc1.png", + "aggregators": [ + "PangolinDex", + "LiFi", + "TrustWallet", + "Socket", + "Rubic", + "Squid", + "Rango", + "Sonarwatch" + ], + "occurrences": 8 + }, + "0x1f1e7c893855525b303f99bdf5c3c05be09ca251": { + "address": "0x1f1e7c893855525b303f99bdf5c3c05be09ca251", + "symbol": "SYN", + "decimals": 18, + "name": "Synapse", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/43114/0x1f1e7c893855525b303f99bdf5c3c05be09ca251.png", + "aggregators": [ + "TraderJoe", + "1inch", + "LiFi", + "Socket", + "Rubic", + "Squid", + "Rango", + "Sonarwatch" + ], + "occurrences": 8 + }, + "0xa25eaf2906fa1a3a13edac9b9657108af7b703e3": { + "address": "0xa25eaf2906fa1a3a13edac9b9657108af7b703e3", + "symbol": "GGAVAX", + "decimals": 18, + "name": "GoGoPool ggAVAX", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/43114/0xa25eaf2906fa1a3a13edac9b9657108af7b703e3.png", + "aggregators": [ + "TraderJoe", + "1inch", + "LiFi", + "Rubic", + "Squid", + "Rango", + "Sonarwatch" + ], + "occurrences": 7 + }, + "0x0da67235dd5787d67955420c84ca1cecd4e5bb3b": { + "address": "0x0da67235dd5787d67955420c84ca1cecd4e5bb3b", + "symbol": "WMEMO", + "decimals": 18, + "name": "Wrapped Memo", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/43114/0x0da67235dd5787d67955420c84ca1cecd4e5bb3b.png", + "aggregators": [ + "CoinGecko", + "LiFi", + "Socket", + "Rubic", + "Rango", + "Sonarwatch", + "SushiSwap" + ], + "occurrences": 7 + }, + "0xeeeeeb57642040be42185f49c52f7e9b38f8eeee": { + "address": "0xeeeeeb57642040be42185f49c52f7e9b38f8eeee", + "symbol": "ELK", + "decimals": 18, + "name": "Elk Finance", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/43114/0xeeeeeb57642040be42185f49c52f7e9b38f8eeee.png", + "aggregators": [ + "CoinGecko", + "1inch", + "LiFi", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 7 + }, + "0xf14f4ce569cb3679e99d5059909e23b07bd2f387": { + "address": "0xf14f4ce569cb3679e99d5059909e23b07bd2f387", + "symbol": "NXUSD", + "decimals": 18, + "name": "NXUSD", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/43114/0xf14f4ce569cb3679e99d5059909e23b07bd2f387.png", + "aggregators": [ + "CoinGecko", + "1inch", + "LiFi", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 7 + }, + "0x5c49b268c9841aff1cc3b0a418ff5c3442ee3f3b": { + "address": "0x5c49b268c9841aff1cc3b0a418ff5c3442ee3f3b", + "symbol": "MIMATIC", + "decimals": 18, + "name": "MAI (Avalanche)", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/43114/0x5c49b268c9841aff1cc3b0a418ff5c3442ee3f3b.png", + "aggregators": [ + "PangolinDex", + "LiFi", + "Socket", + "Rubic", + "Squid", + "Rango", + "Sonarwatch" + ], + "occurrences": 7 + }, + "0xfcde4a87b8b6fa58326bb462882f1778158b02f1": { + "address": "0xfcde4a87b8b6fa58326bb462882f1778158b02f1", + "symbol": "WXT", + "decimals": 18, + "name": "WXT Token", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/43114/0xfcde4a87b8b6fa58326bb462882f1778158b02f1.png", + "aggregators": [ + "CoinGecko", + "1inch", + "LiFi", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 7 + }, + "0x323665443cef804a3b5206103304bd4872ea4253": { + "address": "0x323665443cef804a3b5206103304bd4872ea4253", + "symbol": "USDV", + "decimals": 6, + "name": "USDV", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/43114/0x323665443cef804a3b5206103304bd4872ea4253.png", + "aggregators": [ + "TraderJoe", + "LiFi", + "Socket", + "Rubic", + "Rango", + "Sonarwatch", + "SushiSwap" + ], + "occurrences": 7 + }, + "0xb2a85c5ecea99187a977ac34303b80acbddfa208": { + "address": "0xb2a85c5ecea99187a977ac34303b80acbddfa208", + "symbol": "ROCO", + "decimals": 18, + "name": "Roco Finance", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/43114/0xb2a85c5ecea99187a977ac34303b80acbddfa208.png", + "aggregators": [ + "PangolinDex", + "1inch", + "LiFi", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 6 + }, + "0xb279f8dd152b99ec1d84a489d32c35bc0c7f5674": { + "address": "0xb279f8dd152b99ec1d84a489d32c35bc0c7f5674", + "symbol": "STEAK", + "decimals": 18, + "name": "SteakHut Finance", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/43114/0xb279f8dd152b99ec1d84a489d32c35bc0c7f5674.png", + "aggregators": [ + "TraderJoe", + "Socket", + "Rubic", + "Squid", + "Rango", + "Sonarwatch" + ], + "occurrences": 6 + }, + "0xab592d197acc575d16c3346f4eb70c703f308d1e": { + "address": "0xab592d197acc575d16c3346f4eb70c703f308d1e", + "symbol": "FEED", + "decimals": 18, + "name": "chikn feed", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/43114/0xab592d197acc575d16c3346f4eb70c703f308d1e.png", + "aggregators": [ + "TraderJoe", + "1inch", + "Rubic", + "Squid", + "Rango", + "Sonarwatch" + ], + "occurrences": 6 + }, + "0xe8385cecb013561b69beb63ff59f4d10734881f3": { + "address": "0xe8385cecb013561b69beb63ff59f4d10734881f3", + "symbol": "GEC", + "decimals": 18, + "name": "Gecko Inu", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/43114/0xe8385cecb013561b69beb63ff59f4d10734881f3.png", + "aggregators": [ + "TraderJoe", + "Socket", + "Rubic", + "Squid", + "Rango", + "Sonarwatch" + ], + "occurrences": 6 + }, + "0xacfb898cff266e53278cc0124fc2c7c94c8cb9a5": { + "address": "0xacfb898cff266e53278cc0124fc2c7c94c8cb9a5", + "symbol": "NOCHILL", + "decimals": 18, + "name": "AVAX HAS NO CHILL", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/43114/0xacfb898cff266e53278cc0124fc2c7c94c8cb9a5.png", + "aggregators": [ + "TraderJoe", + "LiFi", + "Rubic", + "Squid", + "Rango", + "Sonarwatch" + ], + "occurrences": 6 + }, + "0x65378b697853568da9ff8eab60c13e1ee9f4a654": { + "address": "0x65378b697853568da9ff8eab60c13e1ee9f4a654", + "symbol": "HUSKY", + "decimals": 18, + "name": "Husky Avax", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/43114/0x65378b697853568da9ff8eab60c13e1ee9f4a654.png", + "aggregators": [ + "TraderJoe", + "1inch", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 6 + }, + "0xd18555a6c2fda350069735419900478eec4abd96": { + "address": "0xd18555a6c2fda350069735419900478eec4abd96", + "symbol": "ALVA", + "decimals": 18, + "name": "Alvara Protocol", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/43114/0xd18555a6c2fda350069735419900478eec4abd96.png", + "aggregators": [ + "CoinGecko", + "Socket", + "Rubic", + "Squid", + "Rango", + "Sonarwatch" + ], + "occurrences": 6 + }, + "0x431d5dff03120afa4bdf332c61a6e1766ef37bdb": { + "address": "0x431d5dff03120afa4bdf332c61a6e1766ef37bdb", + "symbol": "JPYC", + "decimals": 18, + "name": "JPY Coin", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/43114/0x431d5dff03120afa4bdf332c61a6e1766ef37bdb.png", + "aggregators": [ + "PangolinDex", + "LiFi", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 6 + }, + "0x1b88d7ad51626044ec62ef9803ea264da4442f32": { + "address": "0x1b88d7ad51626044ec62ef9803ea264da4442f32", + "symbol": "ZOO", + "decimals": 18, + "name": "ZooKeeper", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/43114/0x1b88d7ad51626044ec62ef9803ea264da4442f32.png", + "aggregators": [ + "TraderJoe", + "Socket", + "Rubic", + "Squid", + "Rango", + "Sonarwatch" + ], + "occurrences": 6 + }, + "0xb0a6e056b587d0a85640b39b1cb44086f7a26a1e": { + "address": "0xb0a6e056b587d0a85640b39b1cb44086f7a26a1e", + "symbol": "ODDZ", + "decimals": 18, + "name": "Oddz", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/43114/0xb0a6e056b587d0a85640b39b1cb44086f7a26a1e.png", + "aggregators": [ + "PangolinDex", + "TrustWallet", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 6 + }, + "0xfc6da929c031162841370af240dec19099861d3b": { + "address": "0xfc6da929c031162841370af240dec19099861d3b", + "symbol": "DOMI", + "decimals": 18, + "name": "DOMI", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/43114/0xfc6da929c031162841370af240dec19099861d3b.png", + "aggregators": [ + "TraderJoe", + "1inch", + "LiFi", + "Socket", + "Rubic", + "Rango" + ], + "occurrences": 6 + }, + "0xc1d02e488a9ce2481bfdcd797d5373dd2e70a9c2": { + "address": "0xc1d02e488a9ce2481bfdcd797d5373dd2e70a9c2", + "symbol": "SHAKE", + "decimals": 18, + "name": "Spaceswap SHAKE", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/43114/0xc1d02e488a9ce2481bfdcd797d5373dd2e70a9c2.png", + "aggregators": [ + "PangolinDex", + "LiFi", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 6 + }, + "0xcf8419a615c57511807236751c0af38db4ba3351": { + "address": "0xcf8419a615c57511807236751c0af38db4ba3351", + "symbol": "AXIAL", + "decimals": 18, + "name": "Axial Token", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/43114/0xcf8419a615c57511807236751c0af38db4ba3351.png", + "aggregators": [ + "PangolinDex", + "1inch", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 6 + }, + "0x35a7341ae0adb31cb210524d4d02563c061feac5": { + "address": "0x35a7341ae0adb31cb210524d4d02563c061feac5", + "symbol": "WOOF", + "decimals": 18, + "name": "Woof", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/43114/0x35a7341ae0adb31cb210524d4d02563c061feac5.png", + "aggregators": [ + "TraderJoe", + "Rubic", + "Squid", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x5817d4f0b62a59b17f75207da1848c2ce75e7af4": { + "address": "0x5817d4f0b62a59b17f75207da1848c2ce75e7af4", + "symbol": "VTX", + "decimals": 18, + "name": "VTX", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/43114/0x5817d4f0b62a59b17f75207da1848c2ce75e7af4.png", + "aggregators": ["TraderJoe", "LiFi", "Socket", "Rubic", "Rango"], + "occurrences": 5 + }, + "0x99f2bdf00acd067c65a79a0b6a3914c555196ea4": { + "address": "0x99f2bdf00acd067c65a79a0b6a3914c555196ea4", + "symbol": "KULA", + "decimals": 18, + "name": "Kula", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/43114/0x99f2bdf00acd067c65a79a0b6a3914c555196ea4.png", + "aggregators": [ + "CoinGecko", + "Rubic", + "Squid", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x0f669808d88b2b0b3d23214dcd2a1cc6a8b1b5cd": { + "address": "0x0f669808d88b2b0b3d23214dcd2a1cc6a8b1b5cd", + "symbol": "BLUB", + "decimals": 18, + "name": "Blub", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/43114/0x0f669808d88b2b0b3d23214dcd2a1cc6a8b1b5cd.png", + "aggregators": [ + "TraderJoe", + "Rubic", + "Squid", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x5a15bdcf9a3a8e799fa4381e666466a516f2d9c8": { + "address": "0x5a15bdcf9a3a8e799fa4381e666466a516f2d9c8", + "symbol": "SLIME", + "decimals": 18, + "name": "Snail Trail", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/43114/0x5a15bdcf9a3a8e799fa4381e666466a516f2d9c8.png", + "aggregators": [ + "TraderJoe", + "Rubic", + "Squid", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0xad4cb79293322c07973ee83aed5df66a53214dc6": { + "address": "0xad4cb79293322c07973ee83aed5df66a53214dc6", + "symbol": "SHELL", + "decimals": 18, + "name": "Stargate Bridged Shell (Avalanche)", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/43114/0xad4cb79293322c07973ee83aed5df66a53214dc6.png", + "aggregators": [ + "CoinGecko", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x5ac04b69bde6f67c0bd5d6ba6fd5d816548b066a": { + "address": "0x5ac04b69bde6f67c0bd5d6ba6fd5d816548b066a", + "symbol": "TECH", + "decimals": 18, + "name": "NumberGoUpTech", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/43114/0x5ac04b69bde6f67c0bd5d6ba6fd5d816548b066a.png", + "aggregators": [ + "TraderJoe", + "Rubic", + "Squid", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x4fbf0429599460d327bd5f55625e30e4fc066095": { + "address": "0x4fbf0429599460d327bd5f55625e30e4fc066095", + "symbol": "TSD", + "decimals": 18, + "name": "Teddy Dollar", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/43114/0x4fbf0429599460d327bd5f55625e30e4fc066095.png", + "aggregators": [ + "PangolinDex", + "LiFi", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x4c9b4e1ac6f24cde3660d5e4ef1ebf77c710c084": { + "address": "0x4c9b4e1ac6f24cde3660d5e4ef1ebf77c710c084", + "symbol": "LYD", + "decimals": 18, + "name": "Lydia Finance", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/43114/0x4c9b4e1ac6f24cde3660d5e4ef1ebf77c710c084.png", + "aggregators": [ + "PangolinDex", + "1inch", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x6e6080e15f8c0010d333d8caeead29292adb78f7": { + "address": "0x6e6080e15f8c0010d333d8caeead29292adb78f7", + "symbol": "SIERRA", + "decimals": 6, + "name": "SIERRA", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/43114/0x6e6080e15f8c0010d333d8caeead29292adb78f7.png", + "aggregators": ["TraderJoe", "LiFi", "Rubic", "Squid", "Rango"], + "occurrences": 5 + }, + "0xcd94a87696fac69edae3a70fe5725307ae1c43f6": { + "address": "0xcd94a87696fac69edae3a70fe5725307ae1c43f6", + "symbol": "BLACK", + "decimals": 18, + "name": "BLACK", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/43114/0xcd94a87696fac69edae3a70fe5725307ae1c43f6.png", + "aggregators": ["PangolinDex", "1inch", "LiFi", "Rubic", "Rango"], + "occurrences": 5 + }, + "0x420fca0121dc28039145009570975747295f2329": { + "address": "0x420fca0121dc28039145009570975747295f2329", + "symbol": "COQ", + "decimals": 18, + "name": "Coq Inu", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/43114/0x420fca0121dc28039145009570975747295f2329.png", + "aggregators": [ + "TraderJoe", + "Rubic", + "Squid", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0xb27c8941a7df8958a1778c0259f76d1f8b711c35": { + "address": "0xb27c8941a7df8958a1778c0259f76d1f8b711c35", + "symbol": "KLO", + "decimals": 18, + "name": "Kalao", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/43114/0xb27c8941a7df8958a1778c0259f76d1f8b711c35.png", + "aggregators": [ + "PangolinDex", + "LiFi", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0xff7f8f301f7a706e3cfd3d2275f5dc0b9ee8009b": { + "address": "0xff7f8f301f7a706e3cfd3d2275f5dc0b9ee8009b", + "symbol": "FOLKS", + "decimals": 6, + "name": "FOLKS", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/43114/0xff7f8f301f7a706e3cfd3d2275f5dc0b9ee8009b.png", + "aggregators": ["TraderJoe", "LiFi", "Rubic", "Squid", "Rango"], + "occurrences": 5 + }, + "0x4e200fe2f3efb977d5fd9c430a41531fb04d97b8": { + "address": "0x4e200fe2f3efb977d5fd9c430a41531fb04d97b8", + "symbol": "ORDER", + "decimals": 18, + "name": "ORDER", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/43114/0x4e200fe2f3efb977d5fd9c430a41531fb04d97b8.png", + "aggregators": ["CoinGecko", "LiFi", "Socket", "Rubic", "Rango"], + "occurrences": 5 + }, + "0x2775d5105276781b4b85ba6ea6a6653beed1dd32": { + "address": "0x2775d5105276781b4b85ba6ea6a6653beed1dd32", + "symbol": "XAUT0", + "decimals": 6, + "name": "Tether Gold", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/43114/0x2775d5105276781b4b85ba6ea6a6653beed1dd32.png", + "aggregators": ["TraderJoe", "LiFi", "Rubic", "Squid", "Rango"], + "occurrences": 5 + }, + "0xc430c78da6e4af49bd115f0329d154bb135f1363": { + "address": "0xc430c78da6e4af49bd115f0329d154bb135f1363", + "symbol": "RSETH", + "decimals": 18, + "name": "RSETH", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/43114/0xc430c78da6e4af49bd115f0329d154bb135f1363.png", + "aggregators": ["CoinGecko", "LiFi", "Socket", "Rubic", "Rango"], + "occurrences": 5 + }, + "0x5d3a1ff2b6bab83b63cd9ad0787074081a52ef34": { + "address": "0x5d3a1ff2b6bab83b63cd9ad0787074081a52ef34", + "symbol": "USDE", + "decimals": 18, + "name": "USDe", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/43114/0x5d3a1ff2b6bab83b63cd9ad0787074081a52ef34.png", + "aggregators": ["TraderJoe", "LiFi", "Socket", "Rubic", "Rango"], + "occurrences": 5 + }, + "0xa3d68b74bf0528fdd07263c60d6488749044914b": { + "address": "0xa3d68b74bf0528fdd07263c60d6488749044914b", + "symbol": "WEETH", + "decimals": 18, + "name": "WEETH", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/43114/0xa3d68b74bf0528fdd07263c60d6488749044914b.png", + "aggregators": ["TraderJoe", "LiFi", "Socket", "Rubic", "Rango"], + "occurrences": 5 + }, + "0x4809010926aec940b550d34a46a52739f996d75d": { + "address": "0x4809010926aec940b550d34a46a52739f996d75d", + "symbol": "WSRUSD", + "decimals": 18, + "name": "WSRUSD", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/43114/0x4809010926aec940b550d34a46a52739f996d75d.png", + "aggregators": ["CoinGecko", "LiFi", "Socket", "Rubic", "Rango"], + "occurrences": 5 + }, + "0x58538e6a46e07434d7e7375bc268d3cb839c0133": { + "address": "0x58538e6a46e07434d7e7375bc268d3cb839c0133", + "symbol": "ENA", + "decimals": 18, + "name": "ENA", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/43114/0x58538e6a46e07434d7e7375bc268d3cb839c0133.png", + "aggregators": ["CoinGecko", "LiFi", "Socket", "Rubic", "Rango"], + "occurrences": 5 + }, + "0x09d4214c03d01f49544c0448dbe3a27f768f2b34": { + "address": "0x09d4214c03d01f49544c0448dbe3a27f768f2b34", + "symbol": "RUSD", + "decimals": 18, + "name": "RUSD", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/43114/0x09d4214c03d01f49544c0448dbe3a27f768f2b34.png", + "aggregators": ["CoinGecko", "LiFi", "Socket", "Rubic", "Rango"], + "occurrences": 5 + }, + "0xca2671dcd031a72359f456c212f62a9bda737cd7": { + "address": "0xca2671dcd031a72359f456c212f62a9bda737cd7", + "symbol": "YUSD", + "decimals": 18, + "name": "YUSD", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/43114/0xca2671dcd031a72359f456c212f62a9bda737cd7.png", + "aggregators": ["TraderJoe", "LiFi", "Socket", "Rubic", "Rango"], + "occurrences": 5 + }, + "0x211cc4dd073734da055fbf44a2b4667d5e5fe5d2": { + "address": "0x211cc4dd073734da055fbf44a2b4667d5e5fe5d2", + "symbol": "SUSDE", + "decimals": 18, + "name": "SUSDE", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/43114/0x211cc4dd073734da055fbf44a2b4667d5e5fe5d2.png", + "aggregators": ["TraderJoe", "LiFi", "Socket", "Rubic", "Rango"], + "occurrences": 5 + }, + "0x9ceed3a7f753608372eeab300486cc7c2f38ac68": { + "address": "0x9ceed3a7f753608372eeab300486cc7c2f38ac68", + "symbol": "EUL", + "decimals": 18, + "name": "EUL", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/43114/0x9ceed3a7f753608372eeab300486cc7c2f38ac68.png", + "aggregators": ["CoinGecko", "LiFi", "Socket", "Rubic", "Rango"], + "occurrences": 5 + }, + "0x79bbf4508b1391af3a0f4b30bb5fc4aa9ab0e07c": { + "address": "0x79bbf4508b1391af3a0f4b30bb5fc4aa9ab0e07c", + "symbol": "ANON", + "decimals": 18, + "name": "ANON", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/43114/0x79bbf4508b1391af3a0f4b30bb5fc4aa9ab0e07c.png", + "aggregators": ["TraderJoe", "LiFi", "Socket", "Rubic", "Rango"], + "occurrences": 5 + }, + "0x721c299e6bf7d6a430d9bea3364ea197314bce09": { + "address": "0x721c299e6bf7d6a430d9bea3364ea197314bce09", + "symbol": "MILK2", + "decimals": 18, + "name": "Spaceswap MILK2", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/43114/0x721c299e6bf7d6a430d9bea3364ea197314bce09.png", + "aggregators": [ + "PangolinDex", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x4bfc90322dd638f81f034517359bd447f8e0235a": { + "address": "0x4bfc90322dd638f81f034517359bd447f8e0235a", + "symbol": "NEWO", + "decimals": 18, + "name": "New Order", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/43114/0x4bfc90322dd638f81f034517359bd447f8e0235a.png", + "aggregators": [ + "CoinGecko", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x904567252d8f48555b7447c67dca23f0372e16be": { + "address": "0x904567252d8f48555b7447c67dca23f0372e16be", + "symbol": "KITE", + "decimals": 18, + "name": "KITE", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/43114/0x904567252d8f48555b7447c67dca23f0372e16be.png", + "aggregators": ["CoinGecko", "LiFi", "Socket", "Rubic", "Rango"], + "occurrences": 5 + }, + "0x938fe3788222a74924e062120e7bfac829c719fb": { + "address": "0x938fe3788222a74924e062120e7bfac829c719fb", + "symbol": "APEIN", + "decimals": 18, + "name": "Ape In", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/43114/0x938fe3788222a74924e062120e7bfac829c719fb.png", + "aggregators": ["PangolinDex", "1inch", "LiFi", "Rubic", "Rango"], + "occurrences": 5 + }, + "0x885d748c00a279b67a7749ec6b03301700dd0455": { + "address": "0x885d748c00a279b67a7749ec6b03301700dd0455", + "symbol": "MAXI", + "decimals": 18, + "name": "Maximus", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/43114/0x885d748c00a279b67a7749ec6b03301700dd0455.png", + "aggregators": [ + "PangolinDex", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x47eb6f7525c1aa999fbc9ee92715f5231eb1241d": { + "address": "0x47eb6f7525c1aa999fbc9ee92715f5231eb1241d", + "symbol": "MELT", + "decimals": 18, + "name": "MELT", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/43114/0x47eb6f7525c1aa999fbc9ee92715f5231eb1241d.png", + "aggregators": ["PangolinDex", "LiFi", "Socket", "Rubic", "Rango"], + "occurrences": 5 + }, + "0xe19a1684873fab5fb694cfd06607100a632ff21c": { + "address": "0xe19a1684873fab5fb694cfd06607100a632ff21c", + "symbol": "BAVA", + "decimals": 18, + "name": "Baklava", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/43114/0xe19a1684873fab5fb694cfd06607100a632ff21c.png", + "aggregators": [ + "PangolinDex", + "Rubic", + "Squid", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0xdbc5192a6b6ffee7451301bb4ec312f844f02b4a": { + "address": "0xdbc5192a6b6ffee7451301bb4ec312f844f02b4a", + "symbol": "UTY", + "decimals": 18, + "name": "UTY", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/43114/0xdbc5192a6b6ffee7451301bb4ec312f844f02b4a.png", + "aggregators": ["TraderJoe", "LiFi", "Rubic", "Squid", "Rango"], + "occurrences": 5 + }, + "0x488f73cddda1de3664775ffd91623637383d6404": { + "address": "0x488f73cddda1de3664775ffd91623637383d6404", + "symbol": "YTS", + "decimals": 18, + "name": "YetiSwap", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/43114/0x488f73cddda1de3664775ffd91623637383d6404.png", + "aggregators": ["PangolinDex", "1inch", "Socket", "Rubic"], + "occurrences": 4 + }, + "0xf693248f96fe03422fea95ac0afbbbc4a8fdd172": { + "address": "0xf693248f96fe03422fea95ac0afbbbc4a8fdd172", + "symbol": "TUS", + "decimals": 18, + "name": "TUS", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/43114/0xf693248f96fe03422fea95ac0afbbbc4a8fdd172.png", + "aggregators": ["PangolinDex", "1inch", "Rubic", "Rango"], + "occurrences": 4 + }, + "0x7b2b702706d9b361dfe3f00bd138c0cfda7fb2cf": { + "address": "0x7b2b702706d9b361dfe3f00bd138c0cfda7fb2cf", + "symbol": "PLN", + "decimals": 18, + "name": "Pollen", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/43114/0x7b2b702706d9b361dfe3f00bd138c0cfda7fb2cf.png", + "aggregators": ["PangolinDex", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0x0256b279d973c8d687264ac3eb36be09232d4474": { + "address": "0x0256b279d973c8d687264ac3eb36be09232d4474", + "symbol": "MYST", + "decimals": 18, + "name": "MyStandard", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/43114/0x0256b279d973c8d687264ac3eb36be09232d4474.png", + "aggregators": [ + "TraderJoe", + "LiFi", + "Socket", + "Rubic", + "Squid", + "Rango", + "Sonarwatch" + ], + "occurrences": 7 + }, + "0x111111111111ed1d73f860f57b2798b683f2d325": { + "address": "0x111111111111ed1d73f860f57b2798b683f2d325", + "symbol": "YUSD", + "decimals": 18, + "name": "YUSD Stablecoin", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/43114/0x111111111111ed1d73f860f57b2798b683f2d325.png", + "aggregators": [ + "CoinGecko", + "LiFi", + "Socket", + "Rubic", + "Squid", + "Rango", + "Sonarwatch" + ], + "occurrences": 7 + }, + "0x69260b9483f9871ca57f81a90d91e2f96c2cd11d": { + "address": "0x69260b9483f9871ca57f81a90d91e2f96c2cd11d", + "symbol": "GGP", + "decimals": 18, + "name": "GoGoPool", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/43114/0x69260b9483f9871ca57f81a90d91e2f96c2cd11d.png", + "aggregators": [ + "TraderJoe", + "1inch", + "LiFi", + "Rubic", + "Squid", + "Rango", + "Sonarwatch" + ], + "occurrences": 7 + }, + "0xd402298a793948698b9a63311404fbbee944eafd": { + "address": "0xd402298a793948698b9a63311404fbbee944eafd", + "symbol": "SHRAP", + "decimals": 18, + "name": "Shrapnel", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/43114/0xd402298a793948698b9a63311404fbbee944eafd.png", + "aggregators": [ + "TraderJoe", + "LiFi", + "Socket", + "Rubic", + "Squid", + "Rango", + "Sonarwatch" + ], + "occurrences": 7 + }, + "0x37b608519f91f70f2eeb0e5ed9af4061722e4f76": { + "address": "0x37b608519f91f70f2eeb0e5ed9af4061722e4f76", + "symbol": "SUSHI.E", + "decimals": 18, + "name": "SushiToken", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/43114/0x37b608519f91f70f2eeb0e5ed9af4061722e4f76.png", + "aggregators": [ + "PangolinDex", + "LiFi", + "TrustWallet", + "Rubic", + "Rango", + "Sonarwatch", + "SushiSwap" + ], + "occurrences": 7 + }, + "0xfab550568c688d5d8a52c7d794cb93edc26ec0ec": { + "address": "0xfab550568c688d5d8a52c7d794cb93edc26ec0ec", + "symbol": "AXLUSDC", + "decimals": 6, + "name": "Axelar Wrapped USDC", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/43114/0xfab550568c688d5d8a52c7d794cb93edc26ec0ec.png", + "aggregators": [ + "TraderJoe", + "LiFi", + "Rubic", + "Squid", + "Rango", + "Sonarwatch", + "SushiSwap" + ], + "occurrences": 7 + }, + "0x44c784266cf024a60e8acf2427b9857ace194c5d": { + "address": "0x44c784266cf024a60e8acf2427b9857ace194c5d", + "symbol": "AXL", + "decimals": 6, + "name": "Axelar", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/43114/0x44c784266cf024a60e8acf2427b9857ace194c5d.png", + "aggregators": [ + "CoinGecko", + "LiFi", + "Socket", + "Rubic", + "Squid", + "Rango", + "Sonarwatch" + ], + "occurrences": 7 + }, + "0xc7b5d72c836e718cda8888eaf03707faef675079": { + "address": "0xc7b5d72c836e718cda8888eaf03707faef675079", + "symbol": "SWAP", + "decimals": 18, + "name": "TrustSwap", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/43114/0xc7b5d72c836e718cda8888eaf03707faef675079.png", + "aggregators": [ + "CoinGecko", + "1inch", + "LiFi", + "Rubic", + "Squid", + "Rango", + "Sonarwatch" + ], + "occurrences": 7 + }, + "0x968be3f7bfef0f8edc3c1ad90232ebb0da0867aa": { + "address": "0x968be3f7bfef0f8edc3c1ad90232ebb0da0867aa", + "symbol": "SWORLD", + "decimals": 18, + "name": "Seedworld", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/43114/0x968be3f7bfef0f8edc3c1ad90232ebb0da0867aa.png", + "aggregators": [ + "TraderJoe", + "Socket", + "Rubic", + "Squid", + "Rango", + "Sonarwatch" + ], + "occurrences": 6 + }, + "0xf7d9281e8e363584973f946201b82ba72c965d27": { + "address": "0xf7d9281e8e363584973f946201b82ba72c965d27", + "symbol": "YYAVAX", + "decimals": 18, + "name": "Yield Yak AVAX", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/43114/0xf7d9281e8e363584973f946201b82ba72c965d27.png", + "aggregators": [ + "TraderJoe", + "LiFi", + "Rubic", + "Squid", + "Rango", + "Sonarwatch" + ], + "occurrences": 6 + }, + "0xd036414fa2bcbb802691491e323bff1348c5f4ba": { + "address": "0xd036414fa2bcbb802691491e323bff1348c5f4ba", + "symbol": "MU", + "decimals": 18, + "name": "Mu Coin", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/43114/0xd036414fa2bcbb802691491e323bff1348c5f4ba.png", + "aggregators": [ + "TraderJoe", + "LiFi", + "Rubic", + "Rango", + "Sonarwatch", + "SushiSwap" + ], + "occurrences": 6 + }, + "0xbc78d84ba0c46dfe32cf2895a19939c86b81a777": { + "address": "0xbc78d84ba0c46dfe32cf2895a19939c86b81a777", + "symbol": "SOLVBTC", + "decimals": 18, + "name": "Solv Protocol SolvBTC", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/43114/0xbc78d84ba0c46dfe32cf2895a19939c86b81a777.png", + "aggregators": [ + "TraderJoe", + "LiFi", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 6 + }, + "0x3ab1c9adb065f3fca0059652cd7a52b05c98f9a9": { + "address": "0x3ab1c9adb065f3fca0059652cd7a52b05c98f9a9", + "symbol": "ORBS", + "decimals": 18, + "name": "Orbs", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/43114/0x3ab1c9adb065f3fca0059652cd7a52b05c98f9a9.png", + "aggregators": [ + "PangolinDex", + "LiFi", + "Rubic", + "Squid", + "Rango", + "Sonarwatch" + ], + "occurrences": 6 + }, + "0x62d0a8458ed7719fdaf978fe5929c6d342b0bfce": { + "address": "0x62d0a8458ed7719fdaf978fe5929c6d342b0bfce", + "symbol": "BEAM", + "decimals": 18, + "name": "Beam", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/43114/0x62d0a8458ed7719fdaf978fe5929c6d342b0bfce.png", + "aggregators": [ + "TraderJoe", + "Socket", + "Rubic", + "Squid", + "Rango", + "Sonarwatch" + ], + "occurrences": 6 + }, + "0x491a4eb4f1fc3bff8e1d2fc856a6a46663ad556f": { + "address": "0x491a4eb4f1fc3bff8e1d2fc856a6a46663ad556f", + "symbol": "BRZ", + "decimals": 4, + "name": "Brazilian Digital", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/43114/0x491a4eb4f1fc3bff8e1d2fc856a6a46663ad556f.png", + "aggregators": [ + "PangolinDex", + "LiFi", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 6 + }, + "0x0cbd6fadcf8096cc9a43d90b45f65826102e3ece": { + "address": "0x0cbd6fadcf8096cc9a43d90b45f65826102e3ece", + "symbol": "CDT", + "decimals": 18, + "name": "CheckDot", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/43114/0x0cbd6fadcf8096cc9a43d90b45f65826102e3ece.png", + "aggregators": [ + "CoinGecko", + "LiFi", + "Rubic", + "Rango", + "Sonarwatch", + "SushiSwap" + ], + "occurrences": 6 + }, + "0x089d3daf549f99553c2182db24bc4336a4f0c824": { + "address": "0x089d3daf549f99553c2182db24bc4336a4f0c824", + "symbol": "IBEX", + "decimals": 18, + "name": "Impermax", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/43114/0x089d3daf549f99553c2182db24bc4336a4f0c824.png", + "aggregators": [ + "CoinGecko", + "LiFi", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 6 + }, + "0x12d8ce035c5de3ce39b1fdd4c1d5a745eaba3b8c": { + "address": "0x12d8ce035c5de3ce39b1fdd4c1d5a745eaba3b8c", + "symbol": "ANKRETH", + "decimals": 18, + "name": "Ankr Staked ETH", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/43114/0x12d8ce035c5de3ce39b1fdd4c1d5a745eaba3b8c.png", + "aggregators": [ + "CoinGecko", + "LiFi", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 6 + }, + "0x9fda7ceec4c18008096c2fe2b85f05dc300f94d0": { + "address": "0x9fda7ceec4c18008096c2fe2b85f05dc300f94d0", + "symbol": "MFI", + "decimals": 18, + "name": "Marginswap", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/43114/0x9fda7ceec4c18008096c2fe2b85f05dc300f94d0.png", + "aggregators": [ + "PangolinDex", + "LiFi", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 6 + }, + "0x961c8c0b1aad0c0b10a51fef6a867e3091bcef17": { + "address": "0x961c8c0b1aad0c0b10a51fef6a867e3091bcef17", + "symbol": "DYP", + "decimals": 18, + "name": "Dypius [OLD]", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/43114/0x961c8c0b1aad0c0b10a51fef6a867e3091bcef17.png", + "aggregators": [ + "PangolinDex", + "LiFi", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 6 + }, + "0xc17c30e98541188614df99239cabd40280810ca3": { + "address": "0xc17c30e98541188614df99239cabd40280810ca3", + "symbol": "RISE", + "decimals": 18, + "name": "EverRise", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/43114/0xc17c30e98541188614df99239cabd40280810ca3.png", + "aggregators": [ + "CoinGecko", + "TrustWallet", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 6 + }, + "0xa384bc7cdc0a93e686da9e7b8c0807cd040f4e0b": { + "address": "0xa384bc7cdc0a93e686da9e7b8c0807cd040f4e0b", + "symbol": "WOW", + "decimals": 18, + "name": "WOWSwap", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/43114/0xa384bc7cdc0a93e686da9e7b8c0807cd040f4e0b.png", + "aggregators": [ + "PangolinDex", + "LiFi", + "Rubic", + "Rango", + "Sonarwatch", + "SushiSwap" + ], + "occurrences": 6 + }, + "0xfb98b335551a418cd0737375a2ea0ded62ea213b": { + "address": "0xfb98b335551a418cd0737375a2ea0ded62ea213b", + "symbol": "PENDLE", + "decimals": 18, + "name": "PENDLE", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/43114/0xfb98b335551a418cd0737375a2ea0ded62ea213b.png", + "aggregators": [ + "1inch", + "LiFi", + "Socket", + "Rubic", + "Squid", + "Rango" + ], + "occurrences": 6 + }, + "0x237917e8a998b37759c8ee2faa529d60c66c2927": { + "address": "0x237917e8a998b37759c8ee2faa529d60c66c2927", + "symbol": "SIFU", + "decimals": 18, + "name": "Sifu", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/43114/0x237917e8a998b37759c8ee2faa529d60c66c2927.png", + "aggregators": [ + "LiFi", + "Socket", + "Rubic", + "Squid", + "Rango", + "SushiSwap" + ], + "occurrences": 6 + }, + "0x0ef27ddc8f89d4886e89d630de089962ffc12e43": { + "address": "0x0ef27ddc8f89d4886e89d630de089962ffc12e43", + "symbol": "PGX", + "decimals": 18, + "name": "Pegaxy", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/43114/0x0ef27ddc8f89d4886e89d630de089962ffc12e43.png", + "aggregators": [ + "LiFi", + "Socket", + "Rubic", + "Squid", + "Rango", + "Sonarwatch" + ], + "occurrences": 6 + }, + "0x82fe038ea4b50f9c957da326c412ebd73462077c": { + "address": "0x82fe038ea4b50f9c957da326c412ebd73462077c", + "symbol": "HAT", + "decimals": 18, + "name": "Joe Hat", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/43114/0x82fe038ea4b50f9c957da326c412ebd73462077c.png", + "aggregators": [ + "TraderJoe", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x31c994ac062c1970c086260bc61babb708643fac": { + "address": "0x31c994ac062c1970c086260bc61babb708643fac", + "symbol": "XETA", + "decimals": 18, + "name": "XANA", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/43114/0x31c994ac062c1970c086260bc61babb708643fac.png", + "aggregators": [ + "CoinGecko", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x8ad25b0083c9879942a64f00f20a70d3278f6187": { + "address": "0x8ad25b0083c9879942a64f00f20a70d3278f6187", + "symbol": "MEOW", + "decimals": 18, + "name": "MeowCat", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/43114/0x8ad25b0083c9879942a64f00f20a70d3278f6187.png", + "aggregators": [ + "TraderJoe", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x1c7c53aa86b49a28c627b6450091998e447a42f9": { + "address": "0x1c7c53aa86b49a28c627b6450091998e447a42f9", + "symbol": "VELAI", + "decimals": 18, + "name": "Velvet AI", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/43114/0x1c7c53aa86b49a28c627b6450091998e447a42f9.png", + "aggregators": [ + "TraderJoe", + "Rubic", + "Squid", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x714f020c54cc9d104b6f4f6998c63ce2a31d1888": { + "address": "0x714f020c54cc9d104b6f4f6998c63ce2a31d1888", + "symbol": "FITFI", + "decimals": 18, + "name": "Step App", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/43114/0x714f020c54cc9d104b6f4f6998c63ce2a31d1888.png", + "aggregators": [ + "PangolinDex", + "Rubic", + "Squid", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x440abbf18c54b2782a4917b80a1746d3a2c2cce1": { + "address": "0x440abbf18c54b2782a4917b80a1746d3a2c2cce1", + "symbol": "SHIBX", + "decimals": 18, + "name": "Shibavax", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/43114/0x440abbf18c54b2782a4917b80a1746d3a2c2cce1.png", + "aggregators": [ + "PangolinDex", + "1inch", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x8d88e48465f30acfb8dac0b3e35c9d6d7d36abaf": { + "address": "0x8d88e48465f30acfb8dac0b3e35c9d6d7d36abaf", + "symbol": "CNR", + "decimals": 18, + "name": "Canary", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/43114/0x8d88e48465f30acfb8dac0b3e35c9d6d7d36abaf.png", + "aggregators": [ + "PangolinDex", + "LiFi", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x83a283641c6b4df383bcddf807193284c84c5342": { + "address": "0x83a283641c6b4df383bcddf807193284c84c5342", + "symbol": "VPND", + "decimals": 18, + "name": "VaporNodes", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/43114/0x83a283641c6b4df383bcddf807193284c84c5342.png", + "aggregators": [ + "CoinGecko", + "Rubic", + "Squid", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x4f94b8aef08c92fefe416af073f1df1e284438ec": { + "address": "0x4f94b8aef08c92fefe416af073f1df1e284438ec", + "symbol": "WOLF", + "decimals": 18, + "name": "Landwolf on AVAX", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/43114/0x4f94b8aef08c92fefe416af073f1df1e284438ec.png", + "aggregators": [ + "TraderJoe", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0xc69eba65e87889f0805db717af06797055a0ba07": { + "address": "0xc69eba65e87889f0805db717af06797055a0ba07", + "symbol": "NCASH", + "decimals": 18, + "name": "Nitro Network", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/43114/0xc69eba65e87889f0805db717af06797055a0ba07.png", + "aggregators": [ + "PangolinDex", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x184ff13b3ebcb25be44e860163a5d8391dd568c1": { + "address": "0x184ff13b3ebcb25be44e860163a5d8391dd568c1", + "symbol": "KIMBO", + "decimals": 18, + "name": "Kimbo", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/43114/0x184ff13b3ebcb25be44e860163a5d8391dd568c1.png", + "aggregators": [ + "TraderJoe", + "Rubic", + "Squid", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x6e7f5c0b9f4432716bdd0a77a3601291b9d9e985": { + "address": "0x6e7f5c0b9f4432716bdd0a77a3601291b9d9e985", + "symbol": "SPORE", + "decimals": 9, + "name": "Spore", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/43114/0x6e7f5c0b9f4432716bdd0a77a3601291b9d9e985.png", + "aggregators": [ + "PangolinDex", + "1inch", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x0f577433bf59560ef2a79c124e9ff99fca258948": { + "address": "0x0f577433bf59560ef2a79c124e9ff99fca258948", + "symbol": "MONEY", + "decimals": 18, + "name": "Moremoney USD", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/43114/0x0f577433bf59560ef2a79c124e9ff99fca258948.png", + "aggregators": [ + "PangolinDex", + "LiFi", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x89a8633bcad3af0951acc5137811ea21a17c37dc": { + "address": "0x89a8633bcad3af0951acc5137811ea21a17c37dc", + "symbol": "LAMA", + "decimals": 18, + "name": "Lama", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/43114/0x89a8633bcad3af0951acc5137811ea21a17c37dc.png", + "aggregators": [ + "TraderJoe", + "Rubic", + "Squid", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x3419875b4d3bca7f3fdda2db7a476a79fd31b4fe": { + "address": "0x3419875b4d3bca7f3fdda2db7a476a79fd31b4fe", + "symbol": "DZHV", + "decimals": 18, + "name": "DizzyHavoc", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/43114/0x3419875b4d3bca7f3fdda2db7a476a79fd31b4fe.png", + "aggregators": [ + "CoinGecko", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0xe397784960f814ba35c9ee0bc4c9dffdf86925f9": { + "address": "0xe397784960f814ba35c9ee0bc4c9dffdf86925f9", + "symbol": "MSTR", + "decimals": 18, + "name": "Monsterra", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/43114/0xe397784960f814ba35c9ee0bc4c9dffdf86925f9.png", + "aggregators": [ + "PangolinDex", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x68ee0d0aad9e1984af85ca224117e4d20eaf68be": { + "address": "0x68ee0d0aad9e1984af85ca224117e4d20eaf68be", + "symbol": "ROY", + "decimals": 18, + "name": "Royale", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/43114/0x68ee0d0aad9e1984af85ca224117e4d20eaf68be.png", + "aggregators": [ + "TraderJoe", + "Rubic", + "Rango", + "Sonarwatch", + "SushiSwap" + ], + "occurrences": 5 + }, + "0xba0dda8762c24da9487f5fa026a9b64b695a07ea": { + "address": "0xba0dda8762c24da9487f5fa026a9b64b695a07ea", + "symbol": "OX", + "decimals": 18, + "name": "OX Coin", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/43114/0xba0dda8762c24da9487f5fa026a9b64b695a07ea.png", + "aggregators": [ + "CoinGecko", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x6f97d3f120fbbdaacf1c9da61a8ad126b7426861": { + "address": "0x6f97d3f120fbbdaacf1c9da61a8ad126b7426861", + "symbol": "UNIX", + "decimals": 18, + "name": "UniX", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/43114/0x6f97d3f120fbbdaacf1c9da61a8ad126b7426861.png", + "aggregators": [ + "CoinGecko", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0xb00f1ad977a949a3ccc389ca1d1282a2946963b0": { + "address": "0xb00f1ad977a949a3ccc389ca1d1282a2946963b0", + "symbol": "BOOFI", + "decimals": 18, + "name": "BOOFI", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/43114/0xb00f1ad977a949a3ccc389ca1d1282a2946963b0.png", + "aggregators": ["PangolinDex", "LiFi", "Socket", "Rubic", "Rango"], + "occurrences": 5 + }, + "0xbd100d061e120b2c67a24453cf6368e63f1be056": { + "address": "0xbd100d061e120b2c67a24453cf6368e63f1be056", + "symbol": "IDYP", + "decimals": 18, + "name": "iDypius", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/43114/0xbd100d061e120b2c67a24453cf6368e63f1be056.png", + "aggregators": [ + "PangolinDex", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0xb84527d59b6ecb96f433029ecc890d4492c5dce1": { + "address": "0xb84527d59b6ecb96f433029ecc890d4492c5dce1", + "symbol": "TOMB", + "decimals": 18, + "name": "Tomb", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/43114/0xb84527d59b6ecb96f433029ecc890d4492c5dce1.png", + "aggregators": [ + "PangolinDex", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x5541d83efad1f281571b343977648b75d95cdac2": { + "address": "0x5541d83efad1f281571b343977648b75d95cdac2", + "symbol": "GRAPE", + "decimals": 18, + "name": "Grape Finance", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/43114/0x5541d83efad1f281571b343977648b75d95cdac2.png", + "aggregators": [ + "LiFi", + "Rubic", + "Rango", + "Sonarwatch", + "SushiSwap" + ], + "occurrences": 5 + }, + "0xff24003428fb2e969c39edee4e9f464b0b78313d": { + "address": "0xff24003428fb2e969c39edee4e9f464b0b78313d", + "symbol": "WAIFU", + "decimals": 18, + "name": "Waifu", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/43114/0xff24003428fb2e969c39edee4e9f464b0b78313d.png", + "aggregators": ["TraderJoe", "Rubic", "Squid", "Rango"], + "occurrences": 4 + }, + "0x2cd3cdb3bd68eea0d3be81da707bc0c8743d7335": { + "address": "0x2cd3cdb3bd68eea0d3be81da707bc0c8743d7335", + "symbol": "YBTC.B", + "decimals": 8, + "name": "YBTC.B", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/43114/0x2cd3cdb3bd68eea0d3be81da707bc0c8743d7335.png", + "aggregators": ["TraderJoe", "LiFi", "Rubic", "Rango"], + "occurrences": 4 + }, + "0x5e0e90e268bc247cc850c789a0db0d5c7621fb59": { + "address": "0x5e0e90e268bc247cc850c789a0db0d5c7621fb59", + "symbol": "NXPC", + "decimals": 18, + "name": "NXPC", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/43114/0x5e0e90e268bc247cc850c789a0db0d5c7621fb59.png", + "aggregators": ["TraderJoe", "LiFi", "Rubic", "Rango"], + "occurrences": 4 + }, + "0x13a466998ce03db73abc2d4df3bbd845ed1f28e7": { + "address": "0x13a466998ce03db73abc2d4df3bbd845ed1f28e7", + "symbol": "PHAR", + "decimals": 18, + "name": "Pharaoh", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/43114/0x13a466998ce03db73abc2d4df3bbd845ed1f28e7.png", + "aggregators": ["CoinGecko", "LiFi", "Rubic", "Rango"], + "occurrences": 4 + }, + "0x08c4b51e6ca9eb89c255f0a5ab8afd721420e447": { + "address": "0x08c4b51e6ca9eb89c255f0a5ab8afd721420e447", + "symbol": "PEARL", + "decimals": 18, + "name": "Stargate Bridged Pearl (Avalanche)", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/43114/0x08c4b51e6ca9eb89c255f0a5ab8afd721420e447.png", + "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0x451532f1c9eb7e4dc2d493db52b682c0acf6f5ef": { + "address": "0x451532f1c9eb7e4dc2d493db52b682c0acf6f5ef", + "symbol": "SUZ", + "decimals": 18, + "name": "SUZ", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/43114/0x451532f1c9eb7e4dc2d493db52b682c0acf6f5ef.png", + "aggregators": ["PangolinDex", "LiFi", "Rubic", "Rango"], + "occurrences": 4 + }, + "0x4d6ec47118f807ace03d3b3a4ee6aa96cb2ab677": { + "address": "0x4d6ec47118f807ace03d3b3a4ee6aa96cb2ab677", + "symbol": "BNZ", + "decimals": 18, + "name": "MadSkullz BNZ", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/43114/0x4d6ec47118f807ace03d3b3a4ee6aa96cb2ab677.png", + "aggregators": ["TraderJoe", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0x8c8d2a7d8d9cf26f5ee1bbfc0ba56e93f4a4a7ac": { + "address": "0x8c8d2a7d8d9cf26f5ee1bbfc0ba56e93f4a4a7ac", + "symbol": "AVAXAI", + "decimals": 18, + "name": "AIvalanche DeFAI Agents", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/43114/0x8c8d2a7d8d9cf26f5ee1bbfc0ba56e93f4a4a7ac.png", + "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0xa813d175675c7f19bb7fd541f5ad1bcaf2117fe7": { + "address": "0xa813d175675c7f19bb7fd541f5ad1bcaf2117fe7", + "symbol": "PEON", + "decimals": 18, + "name": "PEON", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/43114/0xa813d175675c7f19bb7fd541f5ad1bcaf2117fe7.png", + "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0x97f2624d5f99a953ae5574ea57d3268785941de4": { + "address": "0x97f2624d5f99a953ae5574ea57d3268785941de4", + "symbol": "COLS", + "decimals": 18, + "name": "Cointel", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/43114/0x97f2624d5f99a953ae5574ea57d3268785941de4.png", + "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0x26e9dbe75aed331e41272bece932ff1b48926ca9": { + "address": "0x26e9dbe75aed331e41272bece932ff1b48926ca9", + "symbol": "P33", + "decimals": 18, + "name": "P33", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/43114/0x26e9dbe75aed331e41272bece932ff1b48926ca9.png", + "aggregators": ["CoinGecko", "LiFi", "Rubic", "Rango"], + "occurrences": 4 + }, + "0x14a84f1a61ccd7d1be596a6cc11fe33a36bc1646": { + "address": "0x14a84f1a61ccd7d1be596a6cc11fe33a36bc1646", + "symbol": "TAVAX", + "decimals": 18, + "name": "TAVAX", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/43114/0x14a84f1a61ccd7d1be596a6cc11fe33a36bc1646.png", + "aggregators": ["CoinGecko", "LiFi", "Rubic", "Rango"], + "occurrences": 4 + }, + "0x0f875ae3eb1fc8a3289657676fc2a288585982a5": { + "address": "0x0f875ae3eb1fc8a3289657676fc2a288585982a5", + "symbol": "REKT", + "decimals": 18, + "name": "REKT", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/43114/0x0f875ae3eb1fc8a3289657676fc2a288585982a5.png", + "aggregators": ["CoinGecko", "Socket", "Rubic", "Rango"], + "occurrences": 4 + }, + "0x1e4c0e060fba7d62fa9fbb1aa624e58f796b4efe": { + "address": "0x1e4c0e060fba7d62fa9fbb1aa624e58f796b4efe", + "symbol": "SWEAT", + "decimals": 18, + "name": "SWEAT", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/43114/0x1e4c0e060fba7d62fa9fbb1aa624e58f796b4efe.png", + "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0xfc87d55bc8bf441abfc24d04b2068a8f77bcfcc0": { + "address": "0xfc87d55bc8bf441abfc24d04b2068a8f77bcfcc0", + "symbol": "MON", + "decimals": 18, + "name": "MON Protocol", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/43114/0xfc87d55bc8bf441abfc24d04b2068a8f77bcfcc0.png", + "aggregators": ["CoinGecko", "Rubic", "Squid", "Rango"], + "occurrences": 4 + }, + "0x9ee1963f05553ef838604dd39403be21cef26aa4": { + "address": "0x9ee1963f05553ef838604dd39403be21cef26aa4", + "symbol": "USDP", + "decimals": 18, + "name": "USDP", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/43114/0x9ee1963f05553ef838604dd39403be21cef26aa4.png", + "aggregators": ["CoinGecko", "LiFi", "Rubic", "Rango"], + "occurrences": 4 + }, + "0x64445f0aecc51e94ad52d8ac56b7190e764e561a": { + "address": "0x64445f0aecc51e94ad52d8ac56b7190e764e561a", + "symbol": "WFRAX", + "decimals": 18, + "name": "WFRAX", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/43114/0x64445f0aecc51e94ad52d8ac56b7190e764e561a.png", + "aggregators": ["CoinGecko", "Socket", "Rubic", "Rango"], + "occurrences": 4 + }, + "0xfec5906e8470ea7e2a2242b314a35f4ff42b19e1": { + "address": "0xfec5906e8470ea7e2a2242b314a35f4ff42b19e1", + "symbol": "L1", + "decimals": 18, + "name": "Lamina1", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/43114/0xfec5906e8470ea7e2a2242b314a35f4ff42b19e1.png", + "aggregators": ["TraderJoe", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0x09fa58228bb791ea355c90da1e4783452b9bd8c3": { + "address": "0x09fa58228bb791ea355c90da1e4783452b9bd8c3", + "symbol": "SUPER", + "decimals": 18, + "name": "SUPER", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/43114/0x09fa58228bb791ea355c90da1e4783452b9bd8c3.png", + "aggregators": ["PangolinDex", "Socket", "Rubic", "Rango"], + "occurrences": 4 + }, + "0x153374c6d6786b6ca2c4bc96f9c3a471428f2bc7": { + "address": "0x153374c6d6786b6ca2c4bc96f9c3a471428f2bc7", + "symbol": "WILD", + "decimals": 18, + "name": "WILD", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/43114/0x153374c6d6786b6ca2c4bc96f9c3a471428f2bc7.png", + "aggregators": ["PangolinDex", "Socket", "Rubic", "Rango"], + "occurrences": 4 + }, + "0xc53ac24320e3a54c7211e4993c8095078a0cb3cf": { + "address": "0xc53ac24320e3a54c7211e4993c8095078a0cb3cf", + "symbol": "WGC", + "decimals": 6, + "name": "Wild Goat Coin", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/43114/0xc53ac24320e3a54c7211e4993c8095078a0cb3cf.png", + "aggregators": ["CoinGecko", "Socket", "Rubic", "Rango"], + "occurrences": 4 + }, + "0x056d114ff1e01de3bca30f0efa3655df42880e5b": { + "address": "0x056d114ff1e01de3bca30f0efa3655df42880e5b", + "symbol": "KTE", + "decimals": 18, + "name": "Kyte.One", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/43114/0x056d114ff1e01de3bca30f0efa3655df42880e5b.png", + "aggregators": ["PangolinDex", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0xe7c3d8c9a439fede00d2600032d5db0be71c3c29": { + "address": "0xe7c3d8c9a439fede00d2600032d5db0be71c3c29", + "symbol": "JPYC", + "decimals": 18, + "name": "JPYC", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/43114/0xe7c3d8c9a439fede00d2600032d5db0be71c3c29.png", + "aggregators": ["TraderJoe", "1inch", "Rubic", "Rango"], + "occurrences": 4 + }, + "0xfc421ad3c883bf9e7c4f42de845c4e4405799e73": { + "address": "0xfc421ad3c883bf9e7c4f42de845c4e4405799e73", + "symbol": "GHO", + "decimals": 18, + "name": "GHO", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/43114/0xfc421ad3c883bf9e7c4f42de845c4e4405799e73.png", + "aggregators": ["PangolinDex", "LiFi", "Rubic", "Rango"], + "occurrences": 4 + }, + "0x8835a2f66a7aaccb297cb985831a616b75e2e16c": { + "address": "0x8835a2f66a7aaccb297cb985831a616b75e2e16c", + "symbol": "EUROP", + "decimals": 6, + "name": "EURØP", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/43114/0x8835a2f66a7aaccb297cb985831a616b75e2e16c.png", + "aggregators": ["CoinGecko", "Rubic", "Squid", "Rango"], + "occurrences": 4 + }, + "0xf9fb20b8e097904f0ab7d12e9dbee88f2dcd0f16": { + "address": "0xf9fb20b8e097904f0ab7d12e9dbee88f2dcd0f16", + "symbol": "SBC", + "decimals": 18, + "name": "SBC", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/43114/0xf9fb20b8e097904f0ab7d12e9dbee88f2dcd0f16.png", + "aggregators": ["CoinGecko", "Socket", "Rubic", "Rango"], + "occurrences": 4 + }, + "0x397bbd6a0e41bdf4c3f971731e180db8ad06ebc1": { + "address": "0x397bbd6a0e41bdf4c3f971731e180db8ad06ebc1", + "symbol": "AVXT", + "decimals": 6, + "name": "Avaxtars", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/43114/0x397bbd6a0e41bdf4c3f971731e180db8ad06ebc1.png", + "aggregators": ["PangolinDex", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0x7086e045b78e1e72f741f25231c08d238812cf8a": { + "address": "0x7086e045b78e1e72f741f25231c08d238812cf8a", + "symbol": "RACEX", + "decimals": 18, + "name": "RaceX", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/43114/0x7086e045b78e1e72f741f25231c08d238812cf8a.png", + "aggregators": ["PangolinDex", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0xe0ce60af0850bf54072635e66e79df17082a1109": { + "address": "0xe0ce60af0850bf54072635e66e79df17082a1109", + "symbol": "ICE", + "decimals": 18, + "name": "Ice Token", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/43114/0xe0ce60af0850bf54072635e66e79df17082a1109.png", + "aggregators": ["PangolinDex", "Socket", "Rubic", "SushiSwap"], + "occurrences": 4 + }, + "0x3eefb18003d033661f84e48360ebecd181a84709": { + "address": "0x3eefb18003d033661f84e48360ebecd181a84709", + "symbol": "ISA", + "decimals": 18, + "name": "Islander", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/43114/0x3eefb18003d033661f84e48360ebecd181a84709.png", + "aggregators": ["PangolinDex", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0xf32398dae246c5f672b52a54e9b413dffcae1a44": { + "address": "0xf32398dae246c5f672b52a54e9b413dffcae1a44", + "symbol": "KACY", + "decimals": 18, + "name": "Kassandra", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/43114/0xf32398dae246c5f672b52a54e9b413dffcae1a44.png", + "aggregators": ["PangolinDex", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0xf03dccaec9a28200a6708c686cf0b8bf26ddc356": { + "address": "0xf03dccaec9a28200a6708c686cf0b8bf26ddc356", + "symbol": "YDR", + "decimals": 18, + "name": "YDragon", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/43114/0xf03dccaec9a28200a6708c686cf0b8bf26ddc356.png", + "aggregators": ["PangolinDex", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0x51e48670098173025c477d9aa3f0eff7bf9f7812": { + "address": "0x51e48670098173025c477d9aa3f0eff7bf9f7812", + "symbol": "DGNX", + "decimals": 18, + "name": "DegenX", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/43114/0x51e48670098173025c477d9aa3f0eff7bf9f7812.png", + "aggregators": ["PangolinDex", "Socket", "Rubic", "Sonarwatch"], + "occurrences": 4 + }, + "0x7698a5311da174a95253ce86c21ca7272b9b05f8": { + "address": "0x7698a5311da174a95253ce86c21ca7272b9b05f8", + "symbol": "WINK", + "decimals": 18, + "name": "Wink", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/43114/0x7698a5311da174a95253ce86c21ca7272b9b05f8.png", + "aggregators": ["TraderJoe", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0x73831e7c5577859fb0583af97c9c68f96a43fcb6": { + "address": "0x73831e7c5577859fb0583af97c9c68f96a43fcb6", + "symbol": "$AIGG", + "decimals": 18, + "name": "AIGG", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/43114/0x73831e7c5577859fb0583af97c9c68f96a43fcb6.png", + "aggregators": ["TraderJoe", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0x885c3a3a4998f0b5ac367a46217e68a200737a32": { + "address": "0x885c3a3a4998f0b5ac367a46217e68a200737a32", + "symbol": "ALBERT", + "decimals": 18, + "name": "ALBERT", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/43114/0x885c3a3a4998f0b5ac367a46217e68a200737a32.png", + "aggregators": ["TraderJoe", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0xb57b25851fe2311cc3fe511c8f10e868932e0680": { + "address": "0xb57b25851fe2311cc3fe511c8f10e868932e0680", + "symbol": "DEUSD", + "decimals": 18, + "name": "Elixir deUSD", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/43114/0xb57b25851fe2311cc3fe511c8f10e868932e0680.png", + "aggregators": ["TraderJoe", "LiFi", "Rubic", "Rango"], + "occurrences": 4 + }, + "0x47afa96cdc9fab46904a55a6ad4bf6660b53c38a": { + "address": "0x47afa96cdc9fab46904a55a6ad4bf6660b53c38a", + "symbol": "AVDAI", + "decimals": 18, + "name": "Aave Avalanche Market DAI", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/43114/0x47afa96cdc9fab46904a55a6ad4bf6660b53c38a.png", + "aggregators": ["1inch", "LiFi", "Socket", "Rubic"], + "occurrences": 4 + }, + "0x532e6537fea298397212f09a61e03311686f548e": { + "address": "0x532e6537fea298397212f09a61e03311686f548e", + "symbol": "AVUSDT", + "decimals": 6, + "name": "Aave Avalanche Market USDT", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/43114/0x532e6537fea298397212f09a61e03311686f548e.png", + "aggregators": ["1inch", "LiFi", "Socket", "Rubic"], + "occurrences": 4 + }, + "0x46a51127c3ce23fb7ab1de06226147f446e4a857": { + "address": "0x46a51127c3ce23fb7ab1de06226147f446e4a857", + "symbol": "AVUSDC", + "decimals": 6, + "name": "Aave Avalanche Market USDC", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/43114/0x46a51127c3ce23fb7ab1de06226147f446e4a857.png", + "aggregators": ["1inch", "LiFi", "Socket", "Rubic"], + "occurrences": 4 + }, + "0x686bef2417b6dc32c50a3cbfbcc3bb60e1e9a15d": { + "address": "0x686bef2417b6dc32c50a3cbfbcc3bb60e1e9a15d", + "symbol": "AVWBTC", + "decimals": 8, + "name": "Aave Avalanche Market WBTC", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/43114/0x686bef2417b6dc32c50a3cbfbcc3bb60e1e9a15d.png", + "aggregators": ["1inch", "LiFi", "Socket", "Rubic"], + "occurrences": 4 + }, + "0xdfe521292ece2a4f44242efbcd66bc594ca9714b": { + "address": "0xdfe521292ece2a4f44242efbcd66bc594ca9714b", + "symbol": "AVWAVAX", + "decimals": 18, + "name": "Aave Avalanche Market WAVAX", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/43114/0xdfe521292ece2a4f44242efbcd66bc594ca9714b.png", + "aggregators": ["1inch", "LiFi", "Socket", "Rubic"], + "occurrences": 4 + }, + "0xccf719c44e2c36e919335692e89d22cf13d6aaeb": { + "address": "0xccf719c44e2c36e919335692e89d22cf13d6aaeb", + "symbol": "OBX", + "decimals": 18, + "name": "OpenBlox", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/43114/0xccf719c44e2c36e919335692e89d22cf13d6aaeb.png", + "aggregators": ["Socket", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0xf99516bc189af00ff8effd5a1f2295b67d70a90e": { + "address": "0xf99516bc189af00ff8effd5a1f2295b67d70a90e", + "symbol": "ART", + "decimals": 18, + "name": "ART", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/43114/0xf99516bc189af00ff8effd5a1f2295b67d70a90e.png", + "aggregators": ["CoinGecko", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x595c8481c48894771ce8fade54ac6bf59093f9e8": { + "address": "0x595c8481c48894771ce8fade54ac6bf59093f9e8", + "symbol": "GAJ", + "decimals": 18, + "name": "Gaj Finance", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/43114/0x595c8481c48894771ce8fade54ac6bf59093f9e8.png", + "aggregators": ["PangolinDex", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x00ee200df31b869a321b10400da10b561f3ee60d": { + "address": "0x00ee200df31b869a321b10400da10b561f3ee60d", + "symbol": "ACRE", + "decimals": 18, + "name": "Arable Protocol", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/43114/0x00ee200df31b869a321b10400da10b561f3ee60d.png", + "aggregators": ["PangolinDex", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x449674b82f05d498e126dd6615a1057a9c088f2c": { + "address": "0x449674b82f05d498e126dd6615a1057a9c088f2c", + "symbol": "LOST", + "decimals": 18, + "name": "LOST", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/43114/0x449674b82f05d498e126dd6615a1057a9c088f2c.png", + "aggregators": ["PangolinDex", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x1111111111182587795ef1098ac7da81a108c97a": { + "address": "0x1111111111182587795ef1098ac7da81a108c97a", + "symbol": "BPT", + "decimals": 18, + "name": "Bold Point Token", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/43114/0x1111111111182587795ef1098ac7da81a108c97a.png", + "aggregators": ["PangolinDex", "Socket", "Rubic"], + "occurrences": 3 + }, + "0x0f34919404a290e71fc6a510cb4a6acb8d764b24": { + "address": "0x0f34919404a290e71fc6a510cb4a6acb8d764b24", + "symbol": "BLZZ", + "decimals": 18, + "name": "BLZZ", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/43114/0x0f34919404a290e71fc6a510cb4a6acb8d764b24.png", + "aggregators": ["Socket", "Rubic", "Rango"], + "occurrences": 3 + }, + "0xc55036b5348cfb45a932481744645985010d3a44": { + "address": "0xc55036b5348cfb45a932481744645985010d3a44", + "symbol": "WINE", + "decimals": 18, + "name": "Wine Shares", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/43114/0xc55036b5348cfb45a932481744645985010d3a44.png", + "aggregators": ["Rubic", "Rango", "SushiSwap"], + "occurrences": 3 + }, + "0xffff003a6bad9b743d658048742935fffe2b6ed7": { + "address": "0xffff003a6bad9b743d658048742935fffe2b6ed7", + "symbol": "KET", + "decimals": 18, + "name": "Ket", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/43114/0xffff003a6bad9b743d658048742935fffe2b6ed7.png", + "aggregators": [ + "TraderJoe", + "1inch", + "LiFi", + "Rubic", + "Squid", + "Rango", + "Sonarwatch" + ], + "occurrences": 7 + }, + "0xb2f85b7ab3c2b6f62df06de6ae7d09c010a5096e": { + "address": "0xb2f85b7ab3c2b6f62df06de6ae7d09c010a5096e", + "symbol": "XSGD", + "decimals": 6, + "name": "XSGD", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/43114/0xb2f85b7ab3c2b6f62df06de6ae7d09c010a5096e.png", + "aggregators": [ + "TraderJoe", + "LiFi", + "Socket", + "Rubic", + "Squid", + "Rango", + "Sonarwatch" + ], + "occurrences": 7 + }, + "0x00000000efe302beaa2b3e6e1b18d08d69a9012a": { + "address": "0x00000000efe302beaa2b3e6e1b18d08d69a9012a", + "symbol": "AUSD", + "decimals": 6, + "name": "AUSD", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/43114/0x00000000efe302beaa2b3e6e1b18d08d69a9012a.png", + "aggregators": [ + "TraderJoe", + "LiFi", + "Socket", + "Rubic", + "Squid", + "Rango", + "Sonarwatch" + ], + "occurrences": 7 + }, + "0x2147efff675e4a4ee1c2f918d181cdbd7a8e208f": { + "address": "0x2147efff675e4a4ee1c2f918d181cdbd7a8e208f", + "symbol": "ALPHA.E", + "decimals": 18, + "name": "AlphaToken", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/43114/0x2147efff675e4a4ee1c2f918d181cdbd7a8e208f.png", + "aggregators": [ + "CoinGecko", + "LiFi", + "TrustWallet", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 7 + }, + "0xb8d7710f7d8349a506b75dd184f05777c82dad0c": { + "address": "0xb8d7710f7d8349a506b75dd184f05777c82dad0c", + "symbol": "ARENA", + "decimals": 18, + "name": "The Arena", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/43114/0xb8d7710f7d8349a506b75dd184f05777c82dad0c.png", + "aggregators": [ + "TraderJoe", + "LiFi", + "Rubic", + "Squid", + "Rango", + "Sonarwatch" + ], + "occurrences": 6 + }, + "0xaaab9d12a30504559b0c5a9a5977fee4a6081c6b": { + "address": "0xaaab9d12a30504559b0c5a9a5977fee4a6081c6b", + "symbol": "PHAR", + "decimals": 18, + "name": "Pharaoh", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/43114/0xaaab9d12a30504559b0c5a9a5977fee4a6081c6b.png", + "aggregators": [ + "TraderJoe", + "LiFi", + "Rubic", + "Squid", + "Rango", + "Sonarwatch" + ], + "occurrences": 6 + }, + "0x7d1232b90d3f809a54eeaeebc639c62df8a8942f": { + "address": "0x7d1232b90d3f809a54eeaeebc639c62df8a8942f", + "symbol": "SB", + "decimals": 9, + "name": "Snowbank", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/43114/0x7d1232b90d3f809a54eeaeebc639c62df8a8942f.png", + "aggregators": [ + "CoinGecko", + "LiFi", + "Rubic", + "Squid", + "Rango", + "Sonarwatch" + ], + "occurrences": 6 + }, + "0x48f88a3fe843ccb0b5003e70b4192c1d7448bef0": { + "address": "0x48f88a3fe843ccb0b5003e70b4192c1d7448bef0", + "symbol": "CAI", + "decimals": 18, + "name": "Colony Avalanche Index", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/43114/0x48f88a3fe843ccb0b5003e70b4192c1d7448bef0.png", + "aggregators": [ + "TraderJoe", + "Socket", + "Rubic", + "Squid", + "Rango", + "Sonarwatch" + ], + "occurrences": 6 + }, + "0x093783055f9047c2bff99c4e414501f8a147bc69": { + "address": "0x093783055f9047c2bff99c4e414501f8a147bc69", + "symbol": "ALOT", + "decimals": 18, + "name": "Dexalot", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/43114/0x093783055f9047c2bff99c4e414501f8a147bc69.png", + "aggregators": [ + "TraderJoe", + "LiFi", + "Rubic", + "Squid", + "Rango", + "Sonarwatch" + ], + "occurrences": 6 + }, + "0x6afd5a1ea4b793cc1526d6dc7e99a608b356ef7b": { + "address": "0x6afd5a1ea4b793cc1526d6dc7e99a608b356ef7b", + "symbol": "STORM", + "decimals": 18, + "name": "Storm", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/43114/0x6afd5a1ea4b793cc1526d6dc7e99a608b356ef7b.png", + "aggregators": [ + "CoinGecko", + "LiFi", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 6 + }, + "0x38f9bf9dce51833ec7f03c9dc218197999999999": { + "address": "0x38f9bf9dce51833ec7f03c9dc218197999999999", + "symbol": "NYA", + "decimals": 18, + "name": "Nya", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/43114/0x38f9bf9dce51833ec7f03c9dc218197999999999.png", + "aggregators": [ + "CoinGecko", + "Socket", + "Rubic", + "Squid", + "Rango", + "Sonarwatch" + ], + "occurrences": 6 + }, + "0xdf474b7109b73b7d57926d43598d5934131136b2": { + "address": "0xdf474b7109b73b7d57926d43598d5934131136b2", + "symbol": "ANKR", + "decimals": 18, + "name": "Ankr Network", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/43114/0xdf474b7109b73b7d57926d43598d5934131136b2.png", + "aggregators": [ + "CoinGecko", + "LiFi", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 6 + }, + "0x228a48df6819ccc2eca01e2192ebafffdad56c19": { + "address": "0x228a48df6819ccc2eca01e2192ebafffdad56c19", + "symbol": "VCHF", + "decimals": 18, + "name": "VNX Swiss Franc", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/43114/0x228a48df6819ccc2eca01e2192ebafffdad56c19.png", + "aggregators": [ + "CoinGecko", + "LiFi", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 6 + }, + "0xe15bcb9e0ea69e6ab9fa080c4c4a5632896298c3": { + "address": "0xe15bcb9e0ea69e6ab9fa080c4c4a5632896298c3", + "symbol": "BAL", + "decimals": 18, + "name": "Balancer", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/43114/0xe15bcb9e0ea69e6ab9fa080c4c4a5632896298c3.png", + "aggregators": [ + "CoinGecko", + "LiFi", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 6 + }, + "0x5fc17416925789e0852fbfcd81c490ca4abc51f9": { + "address": "0x5fc17416925789e0852fbfcd81c490ca4abc51f9", + "symbol": "SURE", + "decimals": 18, + "name": "inSure", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/43114/0x5fc17416925789e0852fbfcd81c490ca4abc51f9.png", + "aggregators": [ + "PangolinDex", + "TrustWallet", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 6 + }, + "0xfe6b19286885a4f7f55adad09c3cd1f906d2478f": { + "address": "0xfe6b19286885a4f7f55adad09c3cd1f906d2478f", + "symbol": "SOL", + "decimals": 9, + "name": "SOL (Portal)", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/43114/0xfe6b19286885a4f7f55adad09c3cd1f906d2478f.png", + "aggregators": [ + "TraderJoe", + "LiFi", + "TrustWallet", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 6 + }, + "0x8ebaf22b6f053dffeaf46f4dd9efa95d89ba8580": { + "address": "0x8ebaf22b6f053dffeaf46f4dd9efa95d89ba8580", + "symbol": "UNI.E", + "decimals": 18, + "name": "Uniswap", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/43114/0x8ebaf22b6f053dffeaf46f4dd9efa95d89ba8580.png", + "aggregators": [ + "PangolinDex", + "LiFi", + "TrustWallet", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 6 + }, + "0x6b289cceaa8639e3831095d75a3e43520fabf552": { + "address": "0x6b289cceaa8639e3831095d75a3e43520fabf552", + "symbol": "CTSI", + "decimals": 18, + "name": "Cartesi", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/43114/0x6b289cceaa8639e3831095d75a3e43520fabf552.png", + "aggregators": [ + "CoinGecko", + "LiFi", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 6 + }, + "0x2598c30330d5771ae9f983979209486ae26de875": { + "address": "0x2598c30330d5771ae9f983979209486ae26de875", + "symbol": "AI", + "decimals": 18, + "name": "Any Inu", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/43114/0x2598c30330d5771ae9f983979209486ae26de875.png", + "aggregators": [ + "TraderJoe", + "Socket", + "Rubic", + "Squid", + "Rango", + "Sonarwatch" + ], + "occurrences": 6 + }, + "0x96e1056a8814de39c8c3cd0176042d6cecd807d7": { + "address": "0x96e1056a8814de39c8c3cd0176042d6cecd807d7", + "symbol": "OSAK", + "decimals": 18, + "name": "Osaka Protocol", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/43114/0x96e1056a8814de39c8c3cd0176042d6cecd807d7.png", + "aggregators": [ + "TraderJoe", + "Socket", + "Rubic", + "Rango", + "Sonarwatch", + "SushiSwap" + ], + "occurrences": 6 + }, + "0x39fc9e94caeacb435842fadedecb783589f50f5f": { + "address": "0x39fc9e94caeacb435842fadedecb783589f50f5f", + "symbol": "KNC", + "decimals": 18, + "name": "Kyber Network Crystal v2", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/43114/0x39fc9e94caeacb435842fadedecb783589f50f5f.png", + "aggregators": [ + "CoinGecko", + "LiFi", + "TrustWallet", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 6 + }, + "0xe7d69acbc00d0ec5d9c02162310ee21daa77f69c": { + "address": "0xe7d69acbc00d0ec5d9c02162310ee21daa77f69c", + "symbol": "COQAI", + "decimals": 18, + "name": "COQ AI", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/43114/0xe7d69acbc00d0ec5d9c02162310ee21daa77f69c.png", + "aggregators": [ + "TraderJoe", + "Rubic", + "Squid", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x107d2b7c619202d994a4d044c762dd6f8e0c5326": { + "address": "0x107d2b7c619202d994a4d044c762dd6f8e0c5326", + "symbol": "FLDX", + "decimals": 18, + "name": "Flair Dex", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/43114/0x107d2b7c619202d994a4d044c762dd6f8e0c5326.png", + "aggregators": [ + "CoinGecko", + "LiFi", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x79ea4e536f598dcd67c76ee3829f84ab9e72a558": { + "address": "0x79ea4e536f598dcd67c76ee3829f84ab9e72a558", + "symbol": "AI9000", + "decimals": 18, + "name": "ai9000", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/43114/0x79ea4e536f598dcd67c76ee3829f84ab9e72a558.png", + "aggregators": [ + "TraderJoe", + "Rubic", + "Squid", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x19c79f282d151995d91f6dbdda2739701f9c47aa": { + "address": "0x19c79f282d151995d91f6dbdda2739701f9c47aa", + "symbol": "BEAR", + "decimals": 18, + "name": "Bear", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/43114/0x19c79f282d151995d91f6dbdda2739701f9c47aa.png", + "aggregators": [ + "CoinGecko", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x2d0afed89a6d6a100273db377dba7a32c739e314": { + "address": "0x2d0afed89a6d6a100273db377dba7a32c739e314", + "symbol": "BIG", + "decimals": 18, + "name": "BIG", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/43114/0x2d0afed89a6d6a100273db377dba7a32c739e314.png", + "aggregators": [ + "TraderJoe", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x6c14c1898c843ff66ca51e87244690bbc28df215": { + "address": "0x6c14c1898c843ff66ca51e87244690bbc28df215", + "symbol": "ORNG", + "decimals": 18, + "name": "ORANGE", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/43114/0x6c14c1898c843ff66ca51e87244690bbc28df215.png", + "aggregators": [ + "CoinGecko", + "LiFi", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x6d923f688c7ff287dc3a5943caeefc994f97b290": { + "address": "0x6d923f688c7ff287dc3a5943caeefc994f97b290", + "symbol": "SMRTR", + "decimals": 18, + "name": "SmarterCoin", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/43114/0x6d923f688c7ff287dc3a5943caeefc994f97b290.png", + "aggregators": [ + "TraderJoe", + "1inch", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x46b9144771cb3195d66e4eda643a7493fadcaf9d": { + "address": "0x46b9144771cb3195d66e4eda643a7493fadcaf9d", + "symbol": "$BLS", + "decimals": 18, + "name": "BloodLoop", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/43114/0x46b9144771cb3195d66e4eda643a7493fadcaf9d.png", + "aggregators": [ + "TraderJoe", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x5ecfec22aa950cb5a3b4fd7249dc30b2bd160f18": { + "address": "0x5ecfec22aa950cb5a3b4fd7249dc30b2bd160f18", + "symbol": "TAROT", + "decimals": 18, + "name": "Tarot", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/43114/0x5ecfec22aa950cb5a3b4fd7249dc30b2bd160f18.png", + "aggregators": [ + "CoinGecko", + "LiFi", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0xd3ac016b1b8c80eeadde4d186a9138c9324e4189": { + "address": "0xd3ac016b1b8c80eeadde4d186a9138c9324e4189", + "symbol": "OK", + "decimals": 18, + "name": "Okcash", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/43114/0xd3ac016b1b8c80eeadde4d186a9138c9324e4189.png", + "aggregators": [ + "CoinGecko", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x33333ee26a7d02e41c33828b42fb1e0889143477": { + "address": "0x33333ee26a7d02e41c33828b42fb1e0889143477", + "symbol": "LIQR", + "decimals": 18, + "name": "Topshelf Finance", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/43114/0x33333ee26a7d02e41c33828b42fb1e0889143477.png", + "aggregators": [ + "CoinGecko", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x3d8f74620857dd8ed6d0da02ceb13fd0ed8ba678": { + "address": "0x3d8f74620857dd8ed6d0da02ceb13fd0ed8ba678", + "symbol": "ONX", + "decimals": 18, + "name": "OnX Finance", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/43114/0x3d8f74620857dd8ed6d0da02ceb13fd0ed8ba678.png", + "aggregators": [ + "CoinGecko", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x644192291cc835a93d6330b24ea5f5fedd0eef9e": { + "address": "0x644192291cc835a93d6330b24ea5f5fedd0eef9e", + "symbol": "NXRA", + "decimals": 18, + "name": "Nexera", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/43114/0x644192291cc835a93d6330b24ea5f5fedd0eef9e.png", + "aggregators": [ + "CoinGecko", + "LiFi", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x7678e162f38ec9ef2bfd1d0aaf9fd93355e5fa0b": { + "address": "0x7678e162f38ec9ef2bfd1d0aaf9fd93355e5fa0b", + "symbol": "VEUR", + "decimals": 18, + "name": "VNX EURO", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/43114/0x7678e162f38ec9ef2bfd1d0aaf9fd93355e5fa0b.png", + "aggregators": [ + "CoinGecko", + "LiFi", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0xc685e8eddc9f078666794cbfcd8d8351bac404ef": { + "address": "0xc685e8eddc9f078666794cbfcd8d8351bac404ef", + "symbol": "ULX", + "decimals": 18, + "name": "ULTRON", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/43114/0xc685e8eddc9f078666794cbfcd8d8351bac404ef.png", + "aggregators": [ + "CoinGecko", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x444444444444c1a66f394025ac839a535246fcc8": { + "address": "0x444444444444c1a66f394025ac839a535246fcc8", + "symbol": "GENI", + "decimals": 9, + "name": "Genius", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/43114/0x444444444444c1a66f394025ac839a535246fcc8.png", + "aggregators": [ + "CoinGecko", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0xe5caef4af8780e59df925470b050fb23c43ca68c": { + "address": "0xe5caef4af8780e59df925470b050fb23c43ca68c", + "symbol": "FRM", + "decimals": 18, + "name": "Ferrum Network", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/43114/0xe5caef4af8780e59df925470b050fb23c43ca68c.png", + "aggregators": [ + "CoinGecko", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x03e8d118a1864c7dc53bf91e007ab7d91f5a06fa": { + "address": "0x03e8d118a1864c7dc53bf91e007ab7d91f5a06fa", + "symbol": "DEXTF", + "decimals": 18, + "name": "Memento", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/43114/0x03e8d118a1864c7dc53bf91e007ab7d91f5a06fa.png", + "aggregators": [ + "CoinGecko", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0xcaf5191fc480f43e4df80106c7695eca56e48b18": { + "address": "0xcaf5191fc480f43e4df80106c7695eca56e48b18", + "symbol": "AKITA", + "decimals": 18, + "name": "Akita Inu", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/43114/0xcaf5191fc480f43e4df80106c7695eca56e48b18.png", + "aggregators": [ + "CoinGecko", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0xb09fe1613fe03e7361319d2a43edc17422f36b09": { + "address": "0xb09fe1613fe03e7361319d2a43edc17422f36b09", + "symbol": "BOG", + "decimals": 18, + "name": "Bogged Finance", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/43114/0xb09fe1613fe03e7361319d2a43edc17422f36b09.png", + "aggregators": [ + "CoinGecko", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x511d35c52a3c244e7b8bd92c0c297755fbd89212": { + "address": "0x511d35c52a3c244e7b8bd92c0c297755fbd89212", + "symbol": "BETA", + "decimals": 18, + "name": "Beta Finance", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/43114/0x511d35c52a3c244e7b8bd92c0c297755fbd89212.png", + "aggregators": [ + "CoinGecko", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x97cd1cfe2ed5712660bb6c14053c0ecb031bff7d": { + "address": "0x97cd1cfe2ed5712660bb6c14053c0ecb031bff7d", + "symbol": "RAI", + "decimals": 18, + "name": "Rai Reflex Index", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/43114/0x97cd1cfe2ed5712660bb6c14053c0ecb031bff7d.png", + "aggregators": [ + "CoinGecko", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0xbd83010eb60f12112908774998f65761cf9f6f9a": { + "address": "0xbd83010eb60f12112908774998f65761cf9f6f9a", + "symbol": "BOO", + "decimals": 18, + "name": "Spookyswap", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/43114/0xbd83010eb60f12112908774998f65761cf9f6f9a.png", + "aggregators": [ + "CoinGecko", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x2cf51e73c3516f3d86e9c0b4de0971dbf0766fd4": { + "address": "0x2cf51e73c3516f3d86e9c0b4de0971dbf0766fd4", + "symbol": "XIO", + "decimals": 18, + "name": "Blockzero Labs", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/43114/0x2cf51e73c3516f3d86e9c0b4de0971dbf0766fd4.png", + "aggregators": [ + "CoinGecko", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x23675ba5d0a8075da5ba18756554e7633cea2c85": { + "address": "0x23675ba5d0a8075da5ba18756554e7633cea2c85", + "symbol": "RST", + "decimals": 18, + "name": "Raini Studios Token", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/43114/0x23675ba5d0a8075da5ba18756554e7633cea2c85.png", + "aggregators": [ + "TraderJoe", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0xc0fbc4967259786c743361a5885ef49380473dcf": { + "address": "0xc0fbc4967259786c743361a5885ef49380473dcf", + "symbol": "ALEPH", + "decimals": 18, + "name": "Aleph.im", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/43114/0xc0fbc4967259786c743361a5885ef49380473dcf.png", + "aggregators": [ + "TraderJoe", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x9fb9a33956351cf4fa040f65a13b835a3c8764e3": { + "address": "0x9fb9a33956351cf4fa040f65a13b835a3c8764e3", + "symbol": "MULTI", + "decimals": 18, + "name": "Multichain", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/43114/0x9fb9a33956351cf4fa040f65a13b835a3c8764e3.png", + "aggregators": [ + "CoinGecko", + "LiFi", + "Socket", + "Rubic", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x4e3642603a75528489c2d94f86e9507260d3c5a1": { + "address": "0x4e3642603a75528489c2d94f86e9507260d3c5a1", + "symbol": "JGN", + "decimals": 18, + "name": "Juggernaut", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/43114/0x4e3642603a75528489c2d94f86e9507260d3c5a1.png", + "aggregators": [ + "CoinGecko", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0xd7c295e399ca928a3a14b01d760e794f1adf8990": { + "address": "0xd7c295e399ca928a3a14b01d760e794f1adf8990", + "symbol": "DSLA", + "decimals": 18, + "name": "DSLA Protocol", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/43114/0xd7c295e399ca928a3a14b01d760e794f1adf8990.png", + "aggregators": [ + "CoinGecko", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x806cc7a21bd85e960857ac1e097802fabad6f594": { + "address": "0x806cc7a21bd85e960857ac1e097802fabad6f594", + "symbol": "EARN", + "decimals": 18, + "name": "HOLD", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/43114/0x806cc7a21bd85e960857ac1e097802fabad6f594.png", + "aggregators": [ + "CoinGecko", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0xafe3d2a31231230875dee1fa1eef14a412443d22": { + "address": "0xafe3d2a31231230875dee1fa1eef14a412443d22", + "symbol": "DFIAT", + "decimals": 18, + "name": "DeFiato", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/43114/0xafe3d2a31231230875dee1fa1eef14a412443d22.png", + "aggregators": [ + "CoinGecko", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x120ad3e5a7c796349e591f1570d9f7980f4ea9cb": { + "address": "0x120ad3e5a7c796349e591f1570d9f7980f4ea9cb", + "symbol": "LUNA", + "decimals": 6, + "name": "LUNA", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/43114/0x120ad3e5a7c796349e591f1570d9f7980f4ea9cb.png", + "aggregators": ["PangolinDex", "Socket", "Rubic", "Squid", "Rango"], + "occurrences": 5 + }, + "0xd9d90f882cddd6063959a9d837b05cb748718a05": { + "address": "0xd9d90f882cddd6063959a9d837b05cb748718a05", + "symbol": "MORE", + "decimals": 18, + "name": "Moremoney Finance", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/43114/0xd9d90f882cddd6063959a9d837b05cb748718a05.png", + "aggregators": [ + "PangolinDex", + "LiFi", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x80d18b1c9ab0c9b5d6a6d5173575417457d00a12": { + "address": "0x80d18b1c9ab0c9b5d6a6d5173575417457d00a12", + "symbol": "AXLATOM", + "decimals": 6, + "name": "Axelar Wrapped ATOM", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/43114/0x80d18b1c9ab0c9b5d6a6d5173575417457d00a12.png", + "aggregators": ["PangolinDex", "LiFi", "Rubic", "Squid", "Rango"], + "occurrences": 5 + }, + "0x19860ccb0a68fd4213ab9d8266f7bbf05a8dde98": { + "address": "0x19860ccb0a68fd4213ab9d8266f7bbf05a8dde98", + "symbol": "BUSD.E", + "decimals": 18, + "name": "Binance USD", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/43114/0x19860ccb0a68fd4213ab9d8266f7bbf05a8dde98.png", + "aggregators": [ + "PangolinDex", + "LiFi", + "TrustWallet", + "Rubic", + "Rango" + ], + "occurrences": 5 + }, + "0x783c08b5f26e3daf8c4681f3bf49844e425b6393": { + "address": "0x783c08b5f26e3daf8c4681f3bf49844e425b6393", + "symbol": "AUSD", + "decimals": 18, + "name": "AUSD", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/43114/0x783c08b5f26e3daf8c4681f3bf49844e425b6393.png", + "aggregators": ["PangolinDex", "LiFi", "Socket", "Rubic", "Rango"], + "occurrences": 5 + }, + "0x096d19b58cab84a2f0ff0e81c08291bffaa62848": { + "address": "0x096d19b58cab84a2f0ff0e81c08291bffaa62848", + "symbol": "SHOE", + "decimals": 18, + "name": "Shoe404", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/43114/0x096d19b58cab84a2f0ff0e81c08291bffaa62848.png", + "aggregators": [ + "TraderJoe", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0xf20d962a6c8f70c731bd838a3a388d7d48fa6e15": { + "address": "0xf20d962a6c8f70c731bd838a3a388d7d48fa6e15", + "symbol": "OLDWETH", + "decimals": 18, + "name": "Old Wrapped Ether", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/43114/0xf20d962a6c8f70c731bd838a3a388d7d48fa6e15.png", + "aggregators": ["Socket", "Rubic", "Squid", "Rango", "SushiSwap"], + "occurrences": 5 + }, + "0x694200a68b18232916353250955be220e88c5cbb": { + "address": "0x694200a68b18232916353250955be220e88c5cbb", + "symbol": "KOVIN", + "decimals": 18, + "name": "Kovin Segnocchi", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/43114/0x694200a68b18232916353250955be220e88c5cbb.png", + "aggregators": ["TraderJoe", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0x7bddaf6dbab30224aa2116c4291521c7a60d5f55": { + "address": "0x7bddaf6dbab30224aa2116c4291521c7a60d5f55", + "symbol": "VAPE", + "decimals": 18, + "name": "VAPE", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/43114/0x7bddaf6dbab30224aa2116c4291521c7a60d5f55.png", + "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0xc654721fbf1f374fd9ffa3385bba2f4932a6af55": { + "address": "0xc654721fbf1f374fd9ffa3385bba2f4932a6af55", + "symbol": "JUICY", + "decimals": 18, + "name": "JUICY", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/43114/0xc654721fbf1f374fd9ffa3385bba2f4932a6af55.png", + "aggregators": ["TraderJoe", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0xca8ebfb8e1460aaac7c272cb9053b3d42412aac2": { + "address": "0xca8ebfb8e1460aaac7c272cb9053b3d42412aac2", + "symbol": "GAU", + "decimals": 18, + "name": "Gamer Arena", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/43114/0xca8ebfb8e1460aaac7c272cb9053b3d42412aac2.png", + "aggregators": ["TraderJoe", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0x997ddaa07d716995de90577c123db411584e5e46": { + "address": "0x997ddaa07d716995de90577c123db411584e5e46", + "symbol": "JEWEL", + "decimals": 18, + "name": "DeFi Kingdoms", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/43114/0x997ddaa07d716995de90577c123db411584e5e46.png", + "aggregators": ["TraderJoe", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0x13b1f0579bc895b2ffb835f295fd9b63fef36da0": { + "address": "0x13b1f0579bc895b2ffb835f295fd9b63fef36da0", + "symbol": "B4FWX", + "decimals": 18, + "name": "Be For FWX", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/43114/0x13b1f0579bc895b2ffb835f295fd9b63fef36da0.png", + "aggregators": ["PangolinDex", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0x88f89be3e9b1dc1c5f208696fb9cabfcc684bd5f": { + "address": "0x88f89be3e9b1dc1c5f208696fb9cabfcc684bd5f", + "symbol": "FLD", + "decimals": 18, + "name": "Fold", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/43114/0x88f89be3e9b1dc1c5f208696fb9cabfcc684bd5f.png", + "aggregators": ["TraderJoe", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0xbbaaa0420d474b34be197f95a323c2ff3829e811": { + "address": "0xbbaaa0420d474b34be197f95a323c2ff3829e811", + "symbol": "LOD3", + "decimals": 17, + "name": "LOD3 Token", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/43114/0xbbaaa0420d474b34be197f95a323c2ff3829e811.png", + "aggregators": ["PangolinDex", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0x9913ba363073ca3e9ea0cd296e36b75af9e40bef": { + "address": "0x9913ba363073ca3e9ea0cd296e36b75af9e40bef", + "symbol": "TRESR", + "decimals": 18, + "name": "NFTREASURE", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/43114/0x9913ba363073ca3e9ea0cd296e36b75af9e40bef.png", + "aggregators": ["TraderJoe", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0xc6bdfc4f2e90196738873e824a9efa03f7c64176": { + "address": "0xc6bdfc4f2e90196738873e824a9efa03f7c64176", + "symbol": "VCNT", + "decimals": 18, + "name": "ViciCoin", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/43114/0xc6bdfc4f2e90196738873e824a9efa03f7c64176.png", + "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0x08d58f06ddfa9b99ae651f68232014be3914c5cd": { + "address": "0x08d58f06ddfa9b99ae651f68232014be3914c5cd", + "symbol": "ERN", + "decimals": 18, + "name": "Ethos Reserve Note", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/43114/0x08d58f06ddfa9b99ae651f68232014be3914c5cd.png", + "aggregators": ["CoinGecko", "Rubic", "Squid", "Rango"], + "occurrences": 4 + }, + "0xee9801669c6138e84bd50deb500827b776777d28": { + "address": "0xee9801669c6138e84bd50deb500827b776777d28", + "symbol": "O3", + "decimals": 18, + "name": "O3 Swap", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/43114/0xee9801669c6138e84bd50deb500827b776777d28.png", + "aggregators": ["CoinGecko", "Socket", "Rubic", "Rango"], + "occurrences": 4 + }, + "0xd4d026322c88c2d49942a75dff920fcfbc5614c1": { + "address": "0xd4d026322c88c2d49942a75dff920fcfbc5614c1", + "symbol": "DEP", + "decimals": 18, + "name": "DEP", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/43114/0xd4d026322c88c2d49942a75dff920fcfbc5614c1.png", + "aggregators": ["PangolinDex", "LiFi", "Rubic", "Rango"], + "occurrences": 4 + }, + "0xb0a8e082e5f8d2a04e74372c1be47737d85a0e73": { + "address": "0xb0a8e082e5f8d2a04e74372c1be47737d85a0e73", + "symbol": "USV", + "decimals": 9, + "name": "Atlas USV", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/43114/0xb0a8e082e5f8d2a04e74372c1be47737d85a0e73.png", + "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0x94025780a1ab58868d9b2dbbb775f44b32e8e6e5": { + "address": "0x94025780a1ab58868d9b2dbbb775f44b32e8e6e5", + "symbol": "BETS", + "decimals": 18, + "name": "BetSwirl", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/43114/0x94025780a1ab58868d9b2dbbb775f44b32e8e6e5.png", + "aggregators": ["TraderJoe", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0xbd3936ec8d83a5d4e73eca625ecfa006da8c8f52": { + "address": "0xbd3936ec8d83a5d4e73eca625ecfa006da8c8f52", + "symbol": "URQA", + "decimals": 18, + "name": "UREEQA", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/43114/0xbd3936ec8d83a5d4e73eca625ecfa006da8c8f52.png", + "aggregators": ["CoinGecko", "Socket", "Rubic", "Rango"], + "occurrences": 4 + }, + "0x81440c939f2c1e34fc7048e518a637205a632a74": { + "address": "0x81440c939f2c1e34fc7048e518a637205a632a74", + "symbol": "CYCLE", + "decimals": 18, + "name": "CYCLE", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/43114/0x81440c939f2c1e34fc7048e518a637205a632a74.png", + "aggregators": ["PangolinDex", "LiFi", "Rubic", "Rango"], + "occurrences": 4 + }, + "0x45c13620b55c35a5f539d26e88247011eb10fdbd": { + "address": "0x45c13620b55c35a5f539d26e88247011eb10fdbd", + "symbol": "HCT", + "decimals": 18, + "name": "HurricaneSwap", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/43114/0x45c13620b55c35a5f539d26e88247011eb10fdbd.png", + "aggregators": ["PangolinDex", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0xf69c2fcd9128d49dfa22348c69177f9380438eb8": { + "address": "0xf69c2fcd9128d49dfa22348c69177f9380438eb8", + "symbol": "NFSG", + "decimals": 6, + "name": "NFT Soccer Games", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/43114/0xf69c2fcd9128d49dfa22348c69177f9380438eb8.png", + "aggregators": ["PangolinDex", "LiFi", "Rubic", "Rango"], + "occurrences": 4 + }, + "0x026187bdbc6b751003517bcb30ac7817d5b766f8": { + "address": "0x026187bdbc6b751003517bcb30ac7817d5b766f8", + "symbol": "H2O", + "decimals": 18, + "name": "Defrost Finance H2O", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/43114/0x026187bdbc6b751003517bcb30ac7817d5b766f8.png", + "aggregators": ["PangolinDex", "LiFi", "Socket", "Rubic"], + "occurrences": 4 + }, + "0x61ecd63e42c27415696e10864d70ecea4aa11289": { + "address": "0x61ecd63e42c27415696e10864d70ecea4aa11289", + "symbol": "RUGPULL", + "decimals": 18, + "name": "Rugpull Prevention", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/43114/0x61ecd63e42c27415696e10864d70ecea4aa11289.png", + "aggregators": ["PangolinDex", "LiFi", "Rubic", "Rango"], + "occurrences": 4 + }, + "0xcf799767d366d789e8b446981c2d578e241fa25c": { + "address": "0xcf799767d366d789e8b446981c2d578e241fa25c", + "symbol": "USDD", + "decimals": 18, + "name": "Decentralized USD", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/43114/0xcf799767d366d789e8b446981c2d578e241fa25c.png", + "aggregators": ["PangolinDex", "TrustWallet", "Socket", "Rubic"], + "occurrences": 4 + }, + "0x333000333b26ee30214b4af6419d9ab07a450400": { + "address": "0x333000333b26ee30214b4af6419d9ab07a450400", + "symbol": "MELD", + "decimals": 18, + "name": "MELD", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/43114/0x333000333b26ee30214b4af6419d9ab07a450400.png", + "aggregators": ["PangolinDex", "Socket", "Rubic", "Rango"], + "occurrences": 4 + }, + "0x769bfeb9faacd6eb2746979a8dd0b7e9920ac2a4": { + "address": "0x769bfeb9faacd6eb2746979a8dd0b7e9920ac2a4", + "symbol": "ZJOE", + "decimals": 18, + "name": "zJOE", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/43114/0x769bfeb9faacd6eb2746979a8dd0b7e9920ac2a4.png", + "aggregators": ["TraderJoe", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0xb44b645b5058f7e393f3ae6af58a4cef67006196": { + "address": "0xb44b645b5058f7e393f3ae6af58a4cef67006196", + "symbol": "STICK", + "decimals": 18, + "name": "Stick", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/43114/0xb44b645b5058f7e393f3ae6af58a4cef67006196.png", + "aggregators": ["TraderJoe", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0xe3b3f75f99da4ff26aa867ef70b48f8f6b2d4958": { + "address": "0xe3b3f75f99da4ff26aa867ef70b48f8f6b2d4958", + "symbol": "$WEAPON", + "decimals": 9, + "name": "Megaweapon", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/43114/0xe3b3f75f99da4ff26aa867ef70b48f8f6b2d4958.png", + "aggregators": ["TraderJoe", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0xbf1230bb63bfd7f5d628ab7b543bcefa8a24b81b": { + "address": "0xbf1230bb63bfd7f5d628ab7b543bcefa8a24b81b", + "symbol": "CHRO", + "decimals": 18, + "name": "Chronicum", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/43114/0xbf1230bb63bfd7f5d628ab7b543bcefa8a24b81b.png", + "aggregators": ["1inch", "Socket", "Rubic", "Rango"], + "occurrences": 4 + }, + "0xb262a485d98d8e19175818d47453e7812ca255a8": { + "address": "0xb262a485d98d8e19175818d47453e7812ca255a8", + "symbol": "BINGO", + "decimals": 18, + "name": "Bingo", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/43114/0xb262a485d98d8e19175818d47453e7812ca255a8.png", + "aggregators": ["1inch", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0xca5d8f8a8d49439357d3cf46ca2e720702f132b8": { + "address": "0xca5d8f8a8d49439357d3cf46ca2e720702f132b8", + "symbol": "GYD", + "decimals": 18, + "name": "Gyroscope GYD", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/43114/0xca5d8f8a8d49439357d3cf46ca2e720702f132b8.png", + "aggregators": ["LiFi", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0x9b06f3c5de42d4623d7a2bd940ec735103c68a76": { + "address": "0x9b06f3c5de42d4623d7a2bd940ec735103c68a76", + "symbol": "VOLTA", + "decimals": 18, + "name": "Volta Club", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/43114/0x9b06f3c5de42d4623d7a2bd940ec735103c68a76.png", + "aggregators": ["LiFi", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0x924157b5dbb387a823719916b25256410a4ad470": { + "address": "0x924157b5dbb387a823719916b25256410a4ad470", + "symbol": "SLOT", + "decimals": 18, + "name": "Snowtomb LOT", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/43114/0x924157b5dbb387a823719916b25256410a4ad470.png", + "aggregators": ["LiFi", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0xf976ba91b6bb3468c91e4f02e68b37bc64a57e66": { + "address": "0xf976ba91b6bb3468c91e4f02e68b37bc64a57e66", + "symbol": "AXLUSDT", + "decimals": 6, + "name": "Axelar Wrapped USDT", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/43114/0xf976ba91b6bb3468c91e4f02e68b37bc64a57e66.png", + "aggregators": ["LiFi", "Rubic", "Squid", "SushiSwap"], + "occurrences": 4 + }, + "0x04f388e30bfd03f357ae061ec5680c7e4ac4cf09": { + "address": "0x04f388e30bfd03f357ae061ec5680c7e4ac4cf09", + "symbol": "LEO", + "decimals": 18, + "name": "LeoAVAX", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/43114/0x04f388e30bfd03f357ae061ec5680c7e4ac4cf09.png", + "aggregators": ["Socket", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0x78ea3fef1c1f07348199bf44f45b803b9b0dbe28": { + "address": "0x78ea3fef1c1f07348199bf44f45b803b9b0dbe28", + "symbol": "FLY", + "decimals": 18, + "name": "Hoppers Game", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/43114/0x78ea3fef1c1f07348199bf44f45b803b9b0dbe28.png", + "aggregators": ["Socket", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0x5478b121ceb140f8114e16b16d1752f3b29d514f": { + "address": "0x5478b121ceb140f8114e16b16d1752f3b29d514f", + "symbol": "FINE", + "decimals": 18, + "name": "FINE", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/43114/0x5478b121ceb140f8114e16b16d1752f3b29d514f.png", + "aggregators": ["Socket", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0x6121191018baf067c6dc6b18d42329447a164f05": { + "address": "0x6121191018baf067c6dc6b18d42329447a164f05", + "symbol": "PIZZA", + "decimals": 18, + "name": "Pizza Game", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/43114/0x6121191018baf067c6dc6b18d42329447a164f05.png", + "aggregators": ["Socket", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0x51707dc661630f8fd624b985fa6ef4f1d4d919db": { + "address": "0x51707dc661630f8fd624b985fa6ef4f1d4d919db", + "symbol": "UNV", + "decimals": 18, + "name": "Unvest", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/43114/0x51707dc661630f8fd624b985fa6ef4f1d4d919db.png", + "aggregators": ["Rubic", "Squid", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0xad090976ce846935dcff1ded852668beed912916": { + "address": "0xad090976ce846935dcff1ded852668beed912916", + "symbol": "OATH", + "decimals": 18, + "name": "OATH", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/43114/0xad090976ce846935dcff1ded852668beed912916.png", + "aggregators": ["Rubic", "Squid", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0x913c61ec3573e5e4ee6488552535fb1be84ff2ac": { + "address": "0x913c61ec3573e5e4ee6488552535fb1be84ff2ac", + "symbol": "XAV", + "decimals": 18, + "name": "Xave", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/43114/0x913c61ec3573e5e4ee6488552535fb1be84ff2ac.png", + "aggregators": ["Rubic", "Squid", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0x9df4ac62f9e435dbcd85e06c990a7f0ea32739a9": { + "address": "0x9df4ac62f9e435dbcd85e06c990a7f0ea32739a9", + "symbol": "GRAIN", + "decimals": 18, + "name": "Granary", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/43114/0x9df4ac62f9e435dbcd85e06c990a7f0ea32739a9.png", + "aggregators": ["Rubic", "Squid", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0xe088d859d8bce513b76dc11c05d559254e28a336": { + "address": "0xe088d859d8bce513b76dc11c05d559254e28a336", + "symbol": "WIFE", + "decimals": 18, + "name": "WIFE", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/43114/0xe088d859d8bce513b76dc11c05d559254e28a336.png", + "aggregators": ["TraderJoe", "Rubic", "Rango"], + "occurrences": 3 + }, + "0xac6e53f1e1ebafda8553c0add8c5b32bcb5890c4": { + "address": "0xac6e53f1e1ebafda8553c0add8c5b32bcb5890c4", + "symbol": "FINANCE", + "decimals": 18, + "name": "FINANCE", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/43114/0xac6e53f1e1ebafda8553c0add8c5b32bcb5890c4.png", + "aggregators": ["PangolinDex", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x3709e8615e02c15b096f8a9b460ccb8ca8194e86": { + "address": "0x3709e8615e02c15b096f8a9b460ccb8ca8194e86", + "symbol": "VEE", + "decimals": 18, + "name": "Vee", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/43114/0x3709e8615e02c15b096f8a9b460ccb8ca8194e86.png", + "aggregators": ["PangolinDex", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x4cb85e39d5622af604405077a589c3078f3a59b2": { + "address": "0x4cb85e39d5622af604405077a589c3078f3a59b2", + "symbol": "CROC", + "decimals": 18, + "name": "CROC", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/43114/0x4cb85e39d5622af604405077a589c3078f3a59b2.png", + "aggregators": ["PangolinDex", "Rubic", "Rango"], + "occurrences": 3 + }, + "0xb9c188bc558a82a1ee9e75ae0857df443f407632": { + "address": "0xb9c188bc558a82a1ee9e75ae0857df443f407632", + "symbol": "GOAT", + "decimals": 18, + "name": "GreatestOfAVAXTrenches", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/43114/0xb9c188bc558a82a1ee9e75ae0857df443f407632.png", + "aggregators": ["PangolinDex", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x5ddc8d968a94cf95cfeb7379f8372d858b9c797d": { + "address": "0x5ddc8d968a94cf95cfeb7379f8372d858b9c797d", + "symbol": "WOLFI", + "decimals": 18, + "name": "WOLFI", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/43114/0x5ddc8d968a94cf95cfeb7379f8372d858b9c797d.png", + "aggregators": ["PangolinDex", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x870982d17cf51d3c304833924eac0ceec4183099": { + "address": "0x870982d17cf51d3c304833924eac0ceec4183099", + "symbol": "BEATR", + "decimals": 18, + "name": "BEATER", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/43114/0x870982d17cf51d3c304833924eac0ceec4183099.png", + "aggregators": ["CoinGecko", "Rubic", "Rango"], + "occurrences": 3 + }, + "0xce8e89bb70aae88fb3fe4784045a718d00eb8e21": { + "address": "0xce8e89bb70aae88fb3fe4784045a718d00eb8e21", + "symbol": "IT", + "decimals": 18, + "name": "Index Token", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/43114/0xce8e89bb70aae88fb3fe4784045a718d00eb8e21.png", + "aggregators": ["CoinGecko", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x34a528da3b2ea5c6ad1796eba756445d1299a577": { + "address": "0x34a528da3b2ea5c6ad1796eba756445d1299a577", + "symbol": "ID", + "decimals": 18, + "name": "Integrity DAO", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/43114/0x34a528da3b2ea5c6ad1796eba756445d1299a577.png", + "aggregators": ["PangolinDex", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x694207a9f708355ee3119f11e55bc5c0b1845ba2": { + "address": "0x694207a9f708355ee3119f11e55bc5c0b1845ba2", + "symbol": "RPEPE", + "decimals": 18, + "name": "Red Pepe", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/43114/0x694207a9f708355ee3119f11e55bc5c0b1845ba2.png", + "aggregators": ["CoinGecko", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x4bf8cf8e8a20d965d585097256ecf2be98a5fbd8": { + "address": "0x4bf8cf8e8a20d965d585097256ecf2be98a5fbd8", + "symbol": "BENIS", + "decimals": 18, + "name": "BENIS", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/43114/0x4bf8cf8e8a20d965d585097256ecf2be98a5fbd8.png", + "aggregators": ["PangolinDex", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x7979871595b80433183950ab6c6457752b585805": { + "address": "0x7979871595b80433183950ab6c6457752b585805", + "symbol": "SECOND", + "decimals": 18, + "name": "MetaDOS", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/43114/0x7979871595b80433183950ab6c6457752b585805.png", + "aggregators": ["TraderJoe", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x66db035009efbcfe9a3decaeafe9fb4ebc5df812": { + "address": "0x66db035009efbcfe9a3decaeafe9fb4ebc5df812", + "symbol": "BTF", + "decimals": 18, + "name": "Bee Trade Finance", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/43114/0x66db035009efbcfe9a3decaeafe9fb4ebc5df812.png", + "aggregators": ["CoinGecko", "Rubic", "Sonarwatch"], + "occurrences": 3 + }, + "0x6f43ff77a9c0cf552b5b653268fbfe26a052429b": { + "address": "0x6f43ff77a9c0cf552b5b653268fbfe26a052429b", + "symbol": "LAMBO", + "decimals": 18, + "name": "LAMBO", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/43114/0x6f43ff77a9c0cf552b5b653268fbfe26a052429b.png", + "aggregators": ["PangolinDex", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x133879524ddb38582cf0b93d10adb789601ff397": { + "address": "0x133879524ddb38582cf0b93d10adb789601ff397", + "symbol": "BORNE", + "decimals": 18, + "name": "BORNE", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/43114/0x133879524ddb38582cf0b93d10adb789601ff397.png", + "aggregators": ["PangolinDex", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x39e58c9b8a539e007b4457a5dd1107b1434d278b": { + "address": "0x39e58c9b8a539e007b4457a5dd1107b1434d278b", + "symbol": "BJUB", + "decimals": 18, + "name": "BABY JUBJUB", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/43114/0x39e58c9b8a539e007b4457a5dd1107b1434d278b.png", + "aggregators": ["CoinGecko", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x1edf79e77693561e80072becbcce1e16dc356aca": { + "address": "0x1edf79e77693561e80072becbcce1e16dc356aca", + "symbol": "APIX", + "decimals": 18, + "name": "APIX", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/43114/0x1edf79e77693561e80072becbcce1e16dc356aca.png", + "aggregators": ["CoinGecko", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x33c8036e99082b0c395374832fecf70c42c7f298": { + "address": "0x33c8036e99082b0c395374832fecf70c42c7f298", + "symbol": "PRIME", + "decimals": 18, + "name": "DeltaPrime", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/43114/0x33c8036e99082b0c395374832fecf70c42c7f298.png", + "aggregators": ["TraderJoe", "Rubic", "Rango"], + "occurrences": 3 + }, + "0xcac4904e1db1589aa17a2ec742f5a6bcf4c4d037": { + "address": "0xcac4904e1db1589aa17a2ec742f5a6bcf4c4d037", + "symbol": "EROL", + "decimals": 18, + "name": "Erol Musk", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/43114/0xcac4904e1db1589aa17a2ec742f5a6bcf4c4d037.png", + "aggregators": ["TraderJoe", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x67ea3abd5cee0b99d743155051c191b09135f93c": { + "address": "0x67ea3abd5cee0b99d743155051c191b09135f93c", + "symbol": "AXD", + "decimals": 18, + "name": "Aesyx Dollar", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/43114/0x67ea3abd5cee0b99d743155051c191b09135f93c.png", + "aggregators": ["PangolinDex", "Rubic", "Rango"], + "occurrences": 3 + }, + "0xf3dd4e0a1db7c5dcbf3b225698cb6a916aeb24d9": { + "address": "0xf3dd4e0a1db7c5dcbf3b225698cb6a916aeb24d9", + "symbol": "APOW", + "decimals": 18, + "name": "APOW", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/43114/0xf3dd4e0a1db7c5dcbf3b225698cb6a916aeb24d9.png", + "aggregators": ["CoinGecko", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x9209e7ebd056d72c5996220e99df6049253debcf": { + "address": "0x9209e7ebd056d72c5996220e99df6049253debcf", + "symbol": "MEOW", + "decimals": 18, + "name": "MEOW", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/43114/0x9209e7ebd056d72c5996220e99df6049253debcf.png", + "aggregators": ["PangolinDex", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x2f0ec0ed7d746936f1aeac5702816d38329ee9e6": { + "address": "0x2f0ec0ed7d746936f1aeac5702816d38329ee9e6", + "symbol": "SLEEP", + "decimals": 18, + "name": "Degen Hours", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/43114/0x2f0ec0ed7d746936f1aeac5702816d38329ee9e6.png", + "aggregators": ["PangolinDex", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x6b1ecf0c181afff3d7096b26c3d2bc31f55ceab9": { + "address": "0x6b1ecf0c181afff3d7096b26c3d2bc31f55ceab9", + "symbol": "MUON", + "decimals": 18, + "name": "Muon", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/43114/0x6b1ecf0c181afff3d7096b26c3d2bc31f55ceab9.png", + "aggregators": ["TraderJoe", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x8e48d9f6d73e9805df87dcf63f7b35ae04079713": { + "address": "0x8e48d9f6d73e9805df87dcf63f7b35ae04079713", + "symbol": "KIGU", + "decimals": 18, + "name": "KIGU", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/43114/0x8e48d9f6d73e9805df87dcf63f7b35ae04079713.png", + "aggregators": ["PangolinDex", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x822b906e74d493d07223cf6858620ccda66b2154": { + "address": "0x822b906e74d493d07223cf6858620ccda66b2154", + "symbol": "RLOOP", + "decimals": 18, + "name": "rLoop", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/43114/0x822b906e74d493d07223cf6858620ccda66b2154.png", + "aggregators": ["CoinGecko", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x34a1d2105dd1b658a48ead516a9ce3032082799c": { + "address": "0x34a1d2105dd1b658a48ead516a9ce3032082799c", + "symbol": "GLADIUS", + "decimals": 18, + "name": "GLADIUS", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/43114/0x34a1d2105dd1b658a48ead516a9ce3032082799c.png", + "aggregators": ["CoinGecko", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x7cc9c624efa62c2decf0a2a028f7885ecea95a17": { + "address": "0x7cc9c624efa62c2decf0a2a028f7885ecea95a17", + "symbol": "SPCM", + "decimals": 18, + "name": "SPCM", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/43114/0x7cc9c624efa62c2decf0a2a028f7885ecea95a17.png", + "aggregators": ["CoinGecko", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x42006ab57701251b580bdfc24778c43c9ff589a1": { + "address": "0x42006ab57701251b580bdfc24778c43c9ff589a1", + "symbol": "EVO", + "decimals": 18, + "name": "EvoVerses", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/43114/0x42006ab57701251b580bdfc24778c43c9ff589a1.png", + "aggregators": ["TraderJoe", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x53c44c368a11f54b8dc496915dd71bd42bd64a91": { + "address": "0x53c44c368a11f54b8dc496915dd71bd42bd64a91", + "symbol": "ƎԀƎԀ", + "decimals": 9, + "name": "Pepe Inverted", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/43114/0x53c44c368a11f54b8dc496915dd71bd42bd64a91.png", + "aggregators": ["CoinGecko", "Rubic", "Rango"], + "occurrences": 3 + }, + "0xeb2729257280580694a06c499cb8c622e74215c8": { + "address": "0xeb2729257280580694a06c499cb8c622e74215c8", + "symbol": "MOG", + "decimals": 18, + "name": "MOG", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/43114/0xeb2729257280580694a06c499cb8c622e74215c8.png", + "aggregators": ["PangolinDex", "Rubic", "Rango"], + "occurrences": 3 + }, + "0xa659d083b677d6bffe1cb704e1473b896727be6d": { + "address": "0xa659d083b677d6bffe1cb704e1473b896727be6d", + "symbol": "PEPE", + "decimals": 18, + "name": "PEPE", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/43114/0xa659d083b677d6bffe1cb704e1473b896727be6d.png", + "aggregators": ["CoinGecko", "Rubic", "Rango"], + "occurrences": 3 + }, + "0xaaa0008c8cf3a7dca931adaf04336a5d808c82cc": { + "address": "0xaaa0008c8cf3a7dca931adaf04336a5d808c82cc", + "symbol": "DEJAAA", + "decimals": 18, + "name": "DeFi Janus Henderson Anemoy AAA CLO Fund", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/43114/0xaaa0008c8cf3a7dca931adaf04336a5d808c82cc.png", + "aggregators": ["CoinGecko", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x846e52d0dd71c2fdc891538b2d37ff84345c7b9f": { + "address": "0x846e52d0dd71c2fdc891538b2d37ff84345c7b9f", + "symbol": "DOGE", + "decimals": 18, + "name": "DOGE", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/43114/0x846e52d0dd71c2fdc891538b2d37ff84345c7b9f.png", + "aggregators": ["CoinGecko", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x94f9bb5c972285728dcee7eaece48bec2ff341ce": { + "address": "0x94f9bb5c972285728dcee7eaece48bec2ff341ce", + "symbol": "XUSD", + "decimals": 6, + "name": "XUSD", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/43114/0x94f9bb5c972285728dcee7eaece48bec2ff341ce.png", + "aggregators": ["CoinGecko", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x9b3a8159e119eb09822115ae08ee1526849e1116": { + "address": "0x9b3a8159e119eb09822115ae08ee1526849e1116", + "symbol": "MMA", + "decimals": 18, + "name": "Meme Alliance", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/43114/0x9b3a8159e119eb09822115ae08ee1526849e1116.png", + "aggregators": ["CoinGecko", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x3e5b9c8930ecab017e16c3b7a2d0cb746d8bcdcf": { + "address": "0x3e5b9c8930ecab017e16c3b7a2d0cb746d8bcdcf", + "symbol": "LIMBO", + "decimals": 18, + "name": "LIMBO", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/43114/0x3e5b9c8930ecab017e16c3b7a2d0cb746d8bcdcf.png", + "aggregators": ["TraderJoe", "Rubic", "Rango"], + "occurrences": 3 + }, + "0xa5d465251fbcc907f5dd6bb2145488dfc6a2627b": { + "address": "0xa5d465251fbcc907f5dd6bb2145488dfc6a2627b", + "symbol": "JTRSY", + "decimals": 6, + "name": "JTRSY", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/43114/0xa5d465251fbcc907f5dd6bb2145488dfc6a2627b.png", + "aggregators": ["CoinGecko", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x6f911b6b39bcc665a463129c94b5380a4387b7eb": { + "address": "0x6f911b6b39bcc665a463129c94b5380a4387b7eb", + "symbol": "SPX", + "decimals": 18, + "name": "SPX", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/43114/0x6f911b6b39bcc665a463129c94b5380a4387b7eb.png", + "aggregators": ["CoinGecko", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x5dd1a7a369e8273371d2dbf9d83356057088082c": { + "address": "0x5dd1a7a369e8273371d2dbf9d83356057088082c", + "symbol": "FT", + "decimals": 18, + "name": "FT", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/43114/0x5dd1a7a369e8273371d2dbf9d83356057088082c.png", + "aggregators": ["CoinGecko", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x9b9fd410d5f01a6a60acf4678a5a99d8027fa5a7": { + "address": "0x9b9fd410d5f01a6a60acf4678a5a99d8027fa5a7", + "symbol": "MYTH", + "decimals": 18, + "name": "MYTH", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/43114/0x9b9fd410d5f01a6a60acf4678a5a99d8027fa5a7.png", + "aggregators": ["CoinGecko", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x6edac263561da41ade155a992759260fafb87b43": { + "address": "0x6edac263561da41ade155a992759260fafb87b43", + "symbol": "VERTAI", + "decimals": 18, + "name": "VERTAI", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/43114/0x6edac263561da41ade155a992759260fafb87b43.png", + "aggregators": ["PangolinDex", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x6aa38edd7f32a28b7b2c2dc86fc5b0bf2ae61579": { + "address": "0x6aa38edd7f32a28b7b2c2dc86fc5b0bf2ae61579", + "symbol": "CHAMP", + "decimals": 18, + "name": "CHAMP", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/43114/0x6aa38edd7f32a28b7b2c2dc86fc5b0bf2ae61579.png", + "aggregators": ["PangolinDex", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x180af87b47bf272b2df59dccf2d76a6eafa625bf": { + "address": "0x180af87b47bf272b2df59dccf2d76a6eafa625bf", + "symbol": "REUSD", + "decimals": 18, + "name": "REUSD", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/43114/0x180af87b47bf272b2df59dccf2d76a6eafa625bf.png", + "aggregators": ["PangolinDex", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x840b20fa3d48ac709fd841fcd878c3e8aabd7087": { + "address": "0x840b20fa3d48ac709fd841fcd878c3e8aabd7087", + "symbol": "GLUE", + "decimals": 18, + "name": "GLUE", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/43114/0x840b20fa3d48ac709fd841fcd878c3e8aabd7087.png", + "aggregators": ["CoinGecko", "Rubic", "Rango"], + "occurrences": 3 + }, + "0xd4dd9e2f021bb459d5a5f6c24c12fe09c5d45553": { + "address": "0xd4dd9e2f021bb459d5a5f6c24c12fe09c5d45553", + "symbol": "ZCHF", + "decimals": 18, + "name": "ZCHF", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/43114/0xd4dd9e2f021bb459d5a5f6c24c12fe09c5d45553.png", + "aggregators": ["CoinGecko", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x3fe4902b275caf603c46c81f3d921bb8515b5bc0": { + "address": "0x3fe4902b275caf603c46c81f3d921bb8515b5bc0", + "symbol": "JACK", + "decimals": 18, + "name": "JACK", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/43114/0x3fe4902b275caf603c46c81f3d921bb8515b5bc0.png", + "aggregators": ["TraderJoe", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x27f6c8289550fce67f6b50bed1f519966afe5287": { + "address": "0x27f6c8289550fce67f6b50bed1f519966afe5287", + "symbol": "TGBP", + "decimals": 18, + "name": "TGBP", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/43114/0x27f6c8289550fce67f6b50bed1f519966afe5287.png", + "aggregators": ["CoinGecko", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x9d92c21205383651610f90722131655a5b8ed3e0": { + "address": "0x9d92c21205383651610f90722131655a5b8ed3e0", + "symbol": "SUSDP", + "decimals": 18, + "name": "Staked USDp", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/43114/0x9d92c21205383651610f90722131655a5b8ed3e0.png", + "aggregators": ["CoinGecko", "LiFi", "Rubic"], + "occurrences": 3 + }, + "0xd4423795fd904d9b87554940a95fb7016f172773": { + "address": "0xd4423795fd904d9b87554940a95fb7016f172773", + "symbol": "AIN", + "decimals": 18, + "name": "AIN", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/43114/0xd4423795fd904d9b87554940a95fb7016f172773.png", + "aggregators": ["CoinGecko", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x02bfd11499847003de5f0f5aa081c43854d48815": { + "address": "0x02bfd11499847003de5f0f5aa081c43854d48815", + "symbol": "RADIO", + "decimals": 18, + "name": "RadioShack Token", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/43114/0x02bfd11499847003de5f0f5aa081c43854d48815.png", + "aggregators": ["CoinGecko", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x846d50248baf8b7ceaa9d9b53bfd12d7d7fbb25a": { + "address": "0x846d50248baf8b7ceaa9d9b53bfd12d7d7fbb25a", + "symbol": "VSO", + "decimals": 18, + "name": "VSO", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/43114/0x846d50248baf8b7ceaa9d9b53bfd12d7d7fbb25a.png", + "aggregators": ["PangolinDex", "Rubic", "Rango"], + "occurrences": 3 + }, + "0xe06fba763c2104db5027f57f6a5be0a0d86308af": { + "address": "0xe06fba763c2104db5027f57f6a5be0a0d86308af", + "symbol": "AKITAX", + "decimals": 18, + "name": "AKITAVAX", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/43114/0xe06fba763c2104db5027f57f6a5be0a0d86308af.png", + "aggregators": ["PangolinDex", "Rubic", "Rango"], + "occurrences": 3 + }, + "0xce2fbed816e320258161ced52c2d0cebcdfd8136": { + "address": "0xce2fbed816e320258161ced52c2d0cebcdfd8136", + "symbol": "BRIBE", + "decimals": 18, + "name": "Police & Thief Game - BRIBE", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/43114/0xce2fbed816e320258161ced52c2d0cebcdfd8136.png", + "aggregators": ["PangolinDex", "Socket", "Rubic"], + "occurrences": 3 + }, + "0xd13eb71515dc48a8a367d12f844e5737bab415df": { + "address": "0xd13eb71515dc48a8a367d12f844e5737bab415df", + "symbol": "SFI", + "decimals": 18, + "name": "Spice", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/43114/0xd13eb71515dc48a8a367d12f844e5737bab415df.png", + "aggregators": ["PangolinDex", "LiFi", "Rango"], + "occurrences": 3 + }, + "0x827eb4bada6cb76c90f887969b3fe5fad585ffe3": { + "address": "0x827eb4bada6cb76c90f887969b3fe5fad585ffe3", + "symbol": "XETA", + "decimals": 18, + "name": "XETA", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/43114/0x827eb4bada6cb76c90f887969b3fe5fad585ffe3.png", + "aggregators": ["PangolinDex", "LiFi", "Rubic"], + "occurrences": 3 + }, + "0xa2cde628d7617956eaf4780e32f68df19cc13d62": { + "address": "0xa2cde628d7617956eaf4780e32f68df19cc13d62", + "symbol": "SUBAVA", + "decimals": 18, + "name": "Subava Token", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/43114/0xa2cde628d7617956eaf4780e32f68df19cc13d62.png", + "aggregators": ["PangolinDex", "Rubic", "Rango"], + "occurrences": 3 + }, + "0xc55fa890fd62c25c85d46f57ac972f3f30839e2f": { + "address": "0xc55fa890fd62c25c85d46f57ac972f3f30839e2f", + "symbol": "CRIME", + "decimals": 18, + "name": "CRIME", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/43114/0xc55fa890fd62c25c85d46f57ac972f3f30839e2f.png", + "aggregators": ["PangolinDex", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x9261330c6a2b472c58dbc149ca9dfc20e6861d66": { + "address": "0x9261330c6a2b472c58dbc149ca9dfc20e6861d66", + "symbol": "SUMMIT", + "decimals": 18, + "name": "SUMMIT", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/43114/0x9261330c6a2b472c58dbc149ca9dfc20e6861d66.png", + "aggregators": ["PangolinDex", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x803f5e3d74e17e3be3f2a2bfbd5d9f9b44e9488b": { + "address": "0x803f5e3d74e17e3be3f2a2bfbd5d9f9b44e9488b", + "symbol": "WOOT", + "decimals": 18, + "name": "Just Woot", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/43114/0x803f5e3d74e17e3be3f2a2bfbd5d9f9b44e9488b.png", + "aggregators": ["PangolinDex", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x5b08fee76c6b1d4f5fab98fc41a242b51cb090df": { + "address": "0x5b08fee76c6b1d4f5fab98fc41a242b51cb090df", + "symbol": "CDN", + "decimals": 18, + "name": "CEDEN Network Token", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/43114/0x5b08fee76c6b1d4f5fab98fc41a242b51cb090df.png", + "aggregators": ["TraderJoe", "Socket", "Rubic"], + "occurrences": 3 + }, + "0x53f7c5869a859f0aec3d334ee8b4cf01e3492f21": { + "address": "0x53f7c5869a859f0aec3d334ee8b4cf01e3492f21", + "symbol": "AVWETH", + "decimals": 18, + "name": "Aave Avalanche Market WETH", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/43114/0x53f7c5869a859f0aec3d334ee8b4cf01e3492f21.png", + "aggregators": ["1inch", "LiFi", "Rubic"], + "occurrences": 3 + }, + "0xd45b7c061016102f9fa220502908f2c0f1add1d7": { + "address": "0xd45b7c061016102f9fa220502908f2c0f1add1d7", + "symbol": "AVAAVE", + "decimals": 18, + "name": "Aave Avalanche Market AAVE", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/43114/0xd45b7c061016102f9fa220502908f2c0f1add1d7.png", + "aggregators": ["1inch", "LiFi", "Socket"], + "occurrences": 3 + }, + "0x75739a693459f33b1fbcc02099eea3ebcf150cbe": { + "address": "0x75739a693459f33b1fbcc02099eea3ebcf150cbe", + "symbol": "TIC", + "decimals": 18, + "name": "ElasticSwap Tic Token", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/43114/0x75739a693459f33b1fbcc02099eea3ebcf150cbe.png", + "aggregators": ["1inch", "Socket", "Rubic"], + "occurrences": 3 + }, + "0x57319d41f71e81f3c65f2a47ca4e001ebafd4f33": { + "address": "0x57319d41f71e81f3c65f2a47ca4e001ebafd4f33", + "symbol": "XJOE", + "decimals": 18, + "name": "JoeBar", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/43114/0x57319d41f71e81f3c65f2a47ca4e001ebafd4f33.png", + "aggregators": ["LiFi", "Rubic", "SushiSwap"], + "occurrences": 3 + }, + "0xb418417374fca27bb54169d3c777492e6fe17ee7": { + "address": "0xb418417374fca27bb54169d3c777492e6fe17ee7", + "symbol": "DUA", + "decimals": 18, + "name": "DUA", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/43114/0xb418417374fca27bb54169d3c777492e6fe17ee7.png", + "aggregators": ["LiFi", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x78c42324016cd91d1827924711563fb66e33a83a": { + "address": "0x78c42324016cd91d1827924711563fb66e33a83a", + "symbol": "RELAY", + "decimals": 18, + "name": "Relay Chain", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/43114/0x78c42324016cd91d1827924711563fb66e33a83a.png", + "aggregators": ["LiFi", "Rubic", "Rango"], + "occurrences": 3 + }, + "0xcc2f1d827b18321254223df4e84de399d9ff116c": { + "address": "0xcc2f1d827b18321254223df4e84de399d9ff116c", + "symbol": "SMRT", + "decimals": 18, + "name": "SMRT", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/43114/0xcc2f1d827b18321254223df4e84de399d9ff116c.png", + "aggregators": ["Socket", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x00da149c4e01e4a391ab86deddaae66e906b6fb7": { + "address": "0x00da149c4e01e4a391ab86deddaae66e906b6fb7", + "symbol": "KIB", + "decimals": 18, + "name": "Kibble", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/43114/0x00da149c4e01e4a391ab86deddaae66e906b6fb7.png", + "aggregators": ["Rubic", "Rango", "Sonarwatch"], + "occurrences": 3 + }, + "0xa77d05fd853af120cd4db48e73498e0cabd3f628": { + "address": "0xa77d05fd853af120cd4db48e73498e0cabd3f628", + "symbol": "$ERROR", + "decimals": 18, + "name": "AI404", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/43114/0xa77d05fd853af120cd4db48e73498e0cabd3f628.png", + "aggregators": ["Rubic", "Rango", "Sonarwatch"], + "occurrences": 3 + }, + "0x0a2f2efdb1233c0da050fb47f19f98851753718f": { + "address": "0x0a2f2efdb1233c0da050fb47f19f98851753718f", + "symbol": "ALAI", + "decimals": 6, + "name": "AlaunchAI", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/43114/0x0a2f2efdb1233c0da050fb47f19f98851753718f.png", + "aggregators": ["Rubic", "Rango", "Sonarwatch"], + "occurrences": 3 + }, + "0xf2536e4301a428af9686ed73e42b50c1f9aed517": { + "address": "0xf2536e4301a428af9686ed73e42b50c1f9aed517", + "symbol": "AKITAX", + "decimals": 18, + "name": "Akitavax", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/43114/0xf2536e4301a428af9686ed73e42b50c1f9aed517.png", + "aggregators": ["Rubic", "Rango", "Sonarwatch"], + "occurrences": 3 + }, + "0x68327a91e79f87f501bc8522fc333fb7a72393cb": { + "address": "0x68327a91e79f87f501bc8522fc333fb7a72393cb", + "symbol": "AUX", + "decimals": 18, + "name": "AUX Coin", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/43114/0x68327a91e79f87f501bc8522fc333fb7a72393cb.png", + "aggregators": ["Rubic", "Rango", "Sonarwatch"], + "occurrences": 3 + }, + "0x916aba115f5162960e48a2675ad4d8cbd09ce8e4": { + "address": "0x916aba115f5162960e48a2675ad4d8cbd09ce8e4", + "symbol": "MCV", + "decimals": 18, + "name": "MCVERSE", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/43114/0x916aba115f5162960e48a2675ad4d8cbd09ce8e4.png", + "aggregators": ["Rubic", "Rango", "Sonarwatch"], + "occurrences": 3 + }, + "0xa1afcc973d44ce1c65a21d9e644cb82489d26503": { + "address": "0xa1afcc973d44ce1c65a21d9e644cb82489d26503", + "symbol": "RUX", + "decimals": 18, + "name": "RunBlox", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/43114/0xa1afcc973d44ce1c65a21d9e644cb82489d26503.png", + "aggregators": ["Rubic", "Rango", "Sonarwatch"], + "occurrences": 3 + }, + "0x22bc1c924a6174eb9b2c98035f8d2f20e8bc4a1e": { + "address": "0x22bc1c924a6174eb9b2c98035f8d2f20e8bc4a1e", + "symbol": "SUP", + "decimals": 18, + "name": "Supcoin", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/43114/0x22bc1c924a6174eb9b2c98035f8d2f20e8bc4a1e.png", + "aggregators": ["Rubic", "Rango", "Sonarwatch"], + "occurrences": 3 + }, + "0x66584240143bb36b59065342b3eecac06876ec11": { + "address": "0x66584240143bb36b59065342b3eecac06876ec11", + "symbol": "GOTS", + "decimals": 18, + "name": "Guardians Of The Spark", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/43114/0x66584240143bb36b59065342b3eecac06876ec11.png", + "aggregators": ["Rubic", "Rango", "Sonarwatch"], + "occurrences": 3 + }, + "0x7a842193d291840fc38b45f991c5b8cc908f8a7c": { + "address": "0x7a842193d291840fc38b45f991c5b8cc908f8a7c", + "symbol": "PLSR", + "decimals": 18, + "name": "PULSAR", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/43114/0x7a842193d291840fc38b45f991c5b8cc908f8a7c.png", + "aggregators": ["Rubic", "Rango", "Sonarwatch"], + "occurrences": 3 + }, + "0xc891eb4cbdeff6e073e859e987815ed1505c2acd": { + "address": "0xc891eb4cbdeff6e073e859e987815ed1505c2acd", + "symbol": "EURC", + "decimals": 6, + "name": "EURC", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/43114/0xc891eb4cbdeff6e073e859e987815ed1505c2acd.png", + "aggregators": [ + "TraderJoe", + "1inch", + "LiFi", + "Rubic", + "Squid", + "Rango", + "Sonarwatch" + ], + "occurrences": 7 + }, + "0x442f7f22b1ee2c842beaff52880d4573e9201158": { + "address": "0x442f7f22b1ee2c842beaff52880d4573e9201158", + "symbol": "BNB", + "decimals": 18, + "name": "Binance Coin (Portal)", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/43114/0x442f7f22b1ee2c842beaff52880d4573e9201158.png", + "aggregators": [ + "CoinGecko", + "LiFi", + "TrustWallet", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 7 + }, + "0x06d47f3fb376649c3a9dafe069b3d6e35572219e": { + "address": "0x06d47f3fb376649c3a9dafe069b3d6e35572219e", + "symbol": "SAVUSD", + "decimals": 18, + "name": "Avant Staked USD", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/43114/0x06d47f3fb376649c3a9dafe069b3d6e35572219e.png", + "aggregators": [ + "TraderJoe", + "LiFi", + "Rubic", + "Squid", + "Rango", + "Sonarwatch" + ], + "occurrences": 6 + }, + "0x24de8771bc5ddb3362db529fc3358f2df3a0e346": { + "address": "0x24de8771bc5ddb3362db529fc3358f2df3a0e346", + "symbol": "AVUSD", + "decimals": 18, + "name": "Avant USD", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/43114/0x24de8771bc5ddb3362db529fc3358f2df3a0e346.png", + "aggregators": [ + "TraderJoe", + "LiFi", + "Rubic", + "Squid", + "Rango", + "Sonarwatch" + ], + "occurrences": 6 + }, + "0x57f5e098cad7a3d1eed53991d4d66c45c9af7812": { + "address": "0x57f5e098cad7a3d1eed53991d4d66c45c9af7812", + "symbol": "WUSDM", + "decimals": 18, + "name": "Wrapped USDM", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/43114/0x57f5e098cad7a3d1eed53991d4d66c45c9af7812.png", + "aggregators": [ + "CoinGecko", + "LiFi", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 6 + }, + "0x078f358208685046a11c85e8ad32895ded33a249": { + "address": "0x078f358208685046a11c85e8ad32895ded33a249", + "symbol": "AWBTC", + "decimals": 8, + "name": "Aave v3 WBTC", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/43114/0x078f358208685046a11c85e8ad32895ded33a249.png", + "aggregators": [ + "CoinGecko", + "LiFi", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 6 + }, + "0x6ab707aca953edaefbc4fd23ba73294241490620": { + "address": "0x6ab707aca953edaefbc4fd23ba73294241490620", + "symbol": "AUSDT", + "decimals": 6, + "name": "Aave v3 USDT", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/43114/0x6ab707aca953edaefbc4fd23ba73294241490620.png", + "aggregators": [ + "CoinGecko", + "LiFi", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 6 + }, + "0xc3048e19e76cb9a3aa9d77d8c03c29fc906e2437": { + "address": "0xc3048e19e76cb9a3aa9d77d8c03c29fc906e2437", + "symbol": "COMP.E", + "decimals": 18, + "name": "Compound", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/43114/0xc3048e19e76cb9a3aa9d77d8c03c29fc906e2437.png", + "aggregators": [ + "CoinGecko", + "LiFi", + "TrustWallet", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 6 + }, + "0x82e64f49ed5ec1bc6e43dad4fc8af9bb3a2312ee": { + "address": "0x82e64f49ed5ec1bc6e43dad4fc8af9bb3a2312ee", + "symbol": "ADAI", + "decimals": 18, + "name": "Aave v3 DAI", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/43114/0x82e64f49ed5ec1bc6e43dad4fc8af9bb3a2312ee.png", + "aggregators": [ + "CoinGecko", + "LiFi", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 6 + }, + "0xf329e36c7bf6e5e86ce2150875a84ce77f477375": { + "address": "0xf329e36c7bf6e5e86ce2150875a84ce77f477375", + "symbol": "AAAVE", + "decimals": 18, + "name": "Aave v3 AAVE", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/43114/0xf329e36c7bf6e5e86ce2150875a84ce77f477375.png", + "aggregators": [ + "CoinGecko", + "LiFi", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 6 + }, + "0x191c10aa4af7c30e871e70c95db0e4eb77237530": { + "address": "0x191c10aa4af7c30e871e70c95db0e4eb77237530", + "symbol": "ALINK", + "decimals": 18, + "name": "Aave v3 LINK", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/43114/0x191c10aa4af7c30e871e70c95db0e4eb77237530.png", + "aggregators": [ + "CoinGecko", + "LiFi", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 6 + }, + "0x9eaac1b23d935365bd7b542fe22ceee2922f52dc": { + "address": "0x9eaac1b23d935365bd7b542fe22ceee2922f52dc", + "symbol": "YFI.E", + "decimals": 18, + "name": "yearn.finance", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/43114/0x9eaac1b23d935365bd7b542fe22ceee2922f52dc.png", + "aggregators": [ + "CoinGecko", + "LiFi", + "TrustWallet", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 6 + }, + "0xbec243c995409e6520d7c41e404da5deba4b209b": { + "address": "0xbec243c995409e6520d7c41e404da5deba4b209b", + "symbol": "SNX.E", + "decimals": 18, + "name": "Synthetix Network Token", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/43114/0xbec243c995409e6520d7c41e404da5deba4b209b.png", + "aggregators": [ + "CoinGecko", + "LiFi", + "TrustWallet", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 6 + }, + "0x70928e5b188def72817b7775f0bf6325968e563b": { + "address": "0x70928e5b188def72817b7775f0bf6325968e563b", + "symbol": "LUNA", + "decimals": 6, + "name": "LUNA (Portal)", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/43114/0x70928e5b188def72817b7775f0bf6325968e563b.png", + "aggregators": [ + "CoinGecko", + "TrustWallet", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 6 + }, + "0x98443b96ea4b0858fdf3219cd13e98c7a4690588": { + "address": "0x98443b96ea4b0858fdf3219cd13e98c7a4690588", + "symbol": "BAT.E", + "decimals": 18, + "name": "Basic Attention Token", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/43114/0x98443b96ea4b0858fdf3219cd13e98c7a4690588.png", + "aggregators": [ + "PangolinDex", + "LiFi", + "TrustWallet", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 6 + }, + "0x1337bedc9d22ecbe766df105c9623922a27963ec": { + "address": "0x1337bedc9d22ecbe766df105c9623922a27963ec", + "symbol": "3CRV", + "decimals": 18, + "name": "LP 3pool Curve", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/43114/0x1337bedc9d22ecbe766df105c9623922a27963ec.png", + "aggregators": [ + "CoinGecko", + "LiFi", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 6 + }, + "0x625e7708f30ca75bfd92586e17077590c60eb4cd": { + "address": "0x625e7708f30ca75bfd92586e17077590c60eb4cd", + "symbol": "AUSDC", + "decimals": 6, + "name": "Aave v3 USDC", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/43114/0x625e7708f30ca75bfd92586e17077590c60eb4cd.png", + "aggregators": [ + "CoinGecko", + "LiFi", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 6 + }, + "0x8a0cac13c7da965a312f08ea4229c37869e85cb9": { + "address": "0x8a0cac13c7da965a312f08ea4229c37869e85cb9", + "symbol": "GRT.E", + "decimals": 18, + "name": "Graph Token", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/43114/0x8a0cac13c7da965a312f08ea4229c37869e85cb9.png", + "aggregators": [ + "PangolinDex", + "LiFi", + "TrustWallet", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 6 + }, + "0x3bd2b1c7ed8d396dbb98ded3aebb41350a5b2339": { + "address": "0x3bd2b1c7ed8d396dbb98ded3aebb41350a5b2339", + "symbol": "UMA.E", + "decimals": 18, + "name": "UMA Voting Token v1", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/43114/0x3bd2b1c7ed8d396dbb98ded3aebb41350a5b2339.png", + "aggregators": [ + "CoinGecko", + "LiFi", + "TrustWallet", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 6 + }, + "0x8b82a291f83ca07af22120aba21632088fc92931": { + "address": "0x8b82a291f83ca07af22120aba21632088fc92931", + "symbol": "ETH", + "decimals": 18, + "name": "Ether (Portal)", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/43114/0x8b82a291f83ca07af22120aba21632088fc92931.png", + "aggregators": [ + "TraderJoe", + "TrustWallet", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 6 + }, + "0xb5cc2ce99b3f98a969dbe458b96a117680ae0fa1": { + "address": "0xb5cc2ce99b3f98a969dbe458b96a117680ae0fa1", + "symbol": "LUCKY", + "decimals": 18, + "name": "Lucky Coin", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/43114/0xb5cc2ce99b3f98a969dbe458b96a117680ae0fa1.png", + "aggregators": [ + "TraderJoe", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0xebb5d4959b2fba6318fbda7d03cd44ae771fc999": { + "address": "0xebb5d4959b2fba6318fbda7d03cd44ae771fc999", + "symbol": "KONG", + "decimals": 18, + "name": "KONG", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/43114/0xebb5d4959b2fba6318fbda7d03cd44ae771fc999.png", + "aggregators": [ + "TraderJoe", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x513c7e3a9c69ca3e22550ef58ac1c0088e918fff": { + "address": "0x513c7e3a9c69ca3e22550ef58ac1c0088e918fff", + "symbol": "ASAVAX", + "decimals": 18, + "name": "Aave v3 sAVAX", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/43114/0x513c7e3a9c69ca3e22550ef58ac1c0088e918fff.png", + "aggregators": [ + "CoinGecko", + "LiFi", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x4586af10ecceed4e383e3f2ec93b6c61e26500b5": { + "address": "0x4586af10ecceed4e383e3f2ec93b6c61e26500b5", + "symbol": "HUNDRED", + "decimals": 18, + "name": "HUNDRED", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/43114/0x4586af10ecceed4e383e3f2ec93b6c61e26500b5.png", + "aggregators": [ + "CoinGecko", + "Rubic", + "Squid", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0xa77e70d0af1ac7ff86726740db1bd065c3566937": { + "address": "0xa77e70d0af1ac7ff86726740db1bd065c3566937", + "symbol": "3ULL", + "decimals": 18, + "name": "PLAYA3ULL GAMES", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/43114/0xa77e70d0af1ac7ff86726740db1bd065c3566937.png", + "aggregators": [ + "TraderJoe", + "Rubic", + "Squid", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x42069000770c482fed048e1da03a5f82773abd69": { + "address": "0x42069000770c482fed048e1da03a5f82773abd69", + "symbol": "BRO", + "decimals": 18, + "name": "My Bro", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/43114/0x42069000770c482fed048e1da03a5f82773abd69.png", + "aggregators": [ + "TraderJoe", + "Rubic", + "Squid", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0xd5d053d5b769383e860d1520da7a908e00919f36": { + "address": "0xd5d053d5b769383e860d1520da7a908e00919f36", + "symbol": "JUC", + "decimals": 18, + "name": "Juice", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/43114/0xd5d053d5b769383e860d1520da7a908e00919f36.png", + "aggregators": [ + "CoinGecko", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0xf197ffc28c23e0309b5559e7a166f2c6164c80aa": { + "address": "0xf197ffc28c23e0309b5559e7a166f2c6164c80aa", + "symbol": "MXNB", + "decimals": 6, + "name": "MXNB", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/43114/0xf197ffc28c23e0309b5559e7a166f2c6164c80aa.png", + "aggregators": ["TraderJoe", "LiFi", "Rubic", "Squid", "Rango"], + "occurrences": 5 + }, + "0x6c44e09737ac84bcf27633883daf7487898e4e5e": { + "address": "0x6c44e09737ac84bcf27633883daf7487898e4e5e", + "symbol": "OPUL", + "decimals": 18, + "name": "Opulous", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/43114/0x6c44e09737ac84bcf27633883daf7487898e4e5e.png", + "aggregators": [ + "CoinGecko", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x61f23250451305f6c4426e81c50ae535edf94a02": { + "address": "0x61f23250451305f6c4426e81c50ae535edf94a02", + "symbol": "FTR", + "decimals": 18, + "name": "Fautor", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/43114/0x61f23250451305f6c4426e81c50ae535edf94a02.png", + "aggregators": [ + "TraderJoe", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x1e2c4fb7ede391d116e6b41cd0608260e8801d59": { + "address": "0x1e2c4fb7ede391d116e6b41cd0608260e8801d59", + "symbol": "BCSPX", + "decimals": 18, + "name": "Backed CSPX Core S&P 500", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/43114/0x1e2c4fb7ede391d116e6b41cd0608260e8801d59.png", + "aggregators": [ + "CoinGecko", + "LiFi", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0xbbcb0356bb9e6b3faa5cbf9e5f36185d53403ac9": { + "address": "0xbbcb0356bb9e6b3faa5cbf9e5f36185d53403ac9", + "symbol": "BCOIN", + "decimals": 18, + "name": "Backed Coinbase Global", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/43114/0xbbcb0356bb9e6b3faa5cbf9e5f36185d53403ac9.png", + "aggregators": [ + "CoinGecko", + "LiFi", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0xabc9547b534519ff73921b1fba6e672b5f58d083": { + "address": "0xabc9547b534519ff73921b1fba6e672b5f58d083", + "symbol": "WOO", + "decimals": 18, + "name": "WOO", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/43114/0xabc9547b534519ff73921b1fba6e672b5f58d083.png", + "aggregators": [ + "CoinGecko", + "LiFi", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x88128fd4b259552a9a1d457f435a6527aab72d42": { + "address": "0x88128fd4b259552a9a1d457f435a6527aab72d42", + "symbol": "MKR.E", + "decimals": 18, + "name": "Maker", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/43114/0x88128fd4b259552a9a1d457f435a6527aab72d42.png", + "aggregators": [ + "PangolinDex", + "LiFi", + "TrustWallet", + "Rubic", + "Rango" + ], + "occurrences": 5 + }, + "0xb44a9b6905af7c801311e8f4e76932ee959c663c": { + "address": "0xb44a9b6905af7c801311e8f4e76932ee959c663c", + "symbol": "ANY", + "decimals": 18, + "name": "Anyswap", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/43114/0xb44a9b6905af7c801311e8f4e76932ee959c663c.png", + "aggregators": [ + "CoinGecko", + "TrustWallet", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x8888888888f004100c0353d657be6300587a6ccd": { + "address": "0x8888888888f004100c0353d657be6300587a6ccd", + "symbol": "ACS", + "decimals": 18, + "name": "ACryptoS", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/43114/0x8888888888f004100c0353d657be6300587a6ccd.png", + "aggregators": [ + "CoinGecko", + "LiFi", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0xe50fa9b3c56ffb159cb0fca61f5c9d750e8128c8": { + "address": "0xe50fa9b3c56ffb159cb0fca61f5c9d750e8128c8", + "symbol": "AWETH", + "decimals": 18, + "name": "Aave v3 WETH", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/43114/0xe50fa9b3c56ffb159cb0fca61f5c9d750e8128c8.png", + "aggregators": [ + "CoinGecko", + "LiFi", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0xb24ca28d4e2742907115fecda335b40dbda07a4c": { + "address": "0xb24ca28d4e2742907115fecda335b40dbda07a4c", + "symbol": "USDCET", + "decimals": 6, + "name": "USD Coin (Portal from Ethereum)", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/43114/0xb24ca28d4e2742907115fecda335b40dbda07a4c.png", + "aggregators": [ + "CoinGecko", + "TrustWallet", + "Socket", + "Rubic", + "Rango" + ], + "occurrences": 5 + }, + "0x9a8e0217cd870783c3f2317985c57bf570969153": { + "address": "0x9a8e0217cd870783c3f2317985c57bf570969153", + "symbol": "MAGICK", + "decimals": 18, + "name": "Cosmic Universe Magick", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/43114/0x9a8e0217cd870783c3f2317985c57bf570969153.png", + "aggregators": [ + "TraderJoe", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0xd501281565bf7789224523144fe5d98e8b28f267": { + "address": "0xd501281565bf7789224523144fe5d98e8b28f267", + "symbol": "1INCH.E", + "decimals": 18, + "name": "1INCH Token", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/43114/0xd501281565bf7789224523144fe5d98e8b28f267.png", + "aggregators": [ + "LiFi", + "TrustWallet", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0xf2f7ce610a091b94d41d69f4ff1129434a82e2f0": { + "address": "0xf2f7ce610a091b94d41d69f4ff1129434a82e2f0", + "symbol": "GG", + "decimals": 9, + "name": "Galaxy Goggle", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/43114/0xf2f7ce610a091b94d41d69f4ff1129434a82e2f0.png", + "aggregators": ["LiFi", "TrustWallet", "Socket", "Rubic", "Rango"], + "occurrences": 5 + }, + "0x596fa47043f99a4e0f122243b841e55375cde0d2": { + "address": "0x596fa47043f99a4e0f122243b841e55375cde0d2", + "symbol": "ZRX.E", + "decimals": 18, + "name": "ZRX", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/43114/0x596fa47043f99a4e0f122243b841e55375cde0d2.png", + "aggregators": [ + "LiFi", + "TrustWallet", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0xc8e7fb72b53d08c4f95b93b390ed3f132d03f2d5": { + "address": "0xc8e7fb72b53d08c4f95b93b390ed3f132d03f2d5", + "symbol": "SQRCAT", + "decimals": 18, + "name": "SQRCAT", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/43114/0xc8e7fb72b53d08c4f95b93b390ed3f132d03f2d5.png", + "aggregators": ["TraderJoe", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0x18e3605b13f10016901eac609b9e188cf7c18973": { + "address": "0x18e3605b13f10016901eac609b9e188cf7c18973", + "symbol": "HEFE", + "decimals": 18, + "name": "HEFE", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/43114/0x18e3605b13f10016901eac609b9e188cf7c18973.png", + "aggregators": ["TraderJoe", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0x73f49d00ac1b520f94d11248808c40774aeb0802": { + "address": "0x73f49d00ac1b520f94d11248808c40774aeb0802", + "symbol": "MAJIN", + "decimals": 18, + "name": "Majin", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/43114/0x73f49d00ac1b520f94d11248808c40774aeb0802.png", + "aggregators": ["TraderJoe", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0x4f3c5c53279536ffcfe8bcafb78e612e933d53c6": { + "address": "0x4f3c5c53279536ffcfe8bcafb78e612e933d53c6", + "symbol": "PNIC", + "decimals": 18, + "name": "Phoenic Token", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/43114/0x4f3c5c53279536ffcfe8bcafb78e612e933d53c6.png", + "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0x15fa5d3dbd11a831b72b92c1705bc9f801e233cb": { + "address": "0x15fa5d3dbd11a831b72b92c1705bc9f801e233cb", + "symbol": "PXP", + "decimals": 18, + "name": "PointPay", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/43114/0x15fa5d3dbd11a831b72b92c1705bc9f801e233cb.png", + "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0x3377aca4c0bfd021be6bd762b5f594975e77f9cf": { + "address": "0x3377aca4c0bfd021be6bd762b5f594975e77f9cf", + "symbol": "CATWIF", + "decimals": 18, + "name": "Cat Wif Hands", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/43114/0x3377aca4c0bfd021be6bd762b5f594975e77f9cf.png", + "aggregators": ["TraderJoe", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0x5ac34c53a04b9aaa0bf047e7291fb4e8a48f2a18": { + "address": "0x5ac34c53a04b9aaa0bf047e7291fb4e8a48f2a18", + "symbol": "NAI", + "decimals": 18, + "name": "Nuklai", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/43114/0x5ac34c53a04b9aaa0bf047e7291fb4e8a48f2a18.png", + "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0x7f9c841feadddb4bdbb2a161ca40bebc4f215a9a": { + "address": "0x7f9c841feadddb4bdbb2a161ca40bebc4f215a9a", + "symbol": "APOW", + "decimals": 18, + "name": "XPowermine.com APOW", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/43114/0x7f9c841feadddb4bdbb2a161ca40bebc4f215a9a.png", + "aggregators": ["TraderJoe", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0x37f44b98316ad2815357113aebe0459029543e1e": { + "address": "0x37f44b98316ad2815357113aebe0459029543e1e", + "symbol": "AVEX", + "decimals": 18, + "name": "AvaDex Token", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/43114/0x37f44b98316ad2815357113aebe0459029543e1e.png", + "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0xf3e5914ca1f678e0a3a38031b5514682e3450919": { + "address": "0xf3e5914ca1f678e0a3a38031b5514682e3450919", + "symbol": "QUILL", + "decimals": 18, + "name": "Ink Finance", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/43114/0xf3e5914ca1f678e0a3a38031b5514682e3450919.png", + "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0xdf788ad40181894da035b827cdf55c523bf52f67": { + "address": "0xdf788ad40181894da035b827cdf55c523bf52f67", + "symbol": "RSAVAX", + "decimals": 18, + "name": "RSAVAX", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/43114/0xdf788ad40181894da035b827cdf55c523bf52f67.png", + "aggregators": ["TraderJoe", "LiFi", "Rubic", "Rango"], + "occurrences": 4 + }, + "0x47c3118ad183712acd42648e9e522e13690f29a0": { + "address": "0x47c3118ad183712acd42648e9e522e13690f29a0", + "symbol": "MEAT", + "decimals": 6, + "name": "Meat", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/43114/0x47c3118ad183712acd42648e9e522e13690f29a0.png", + "aggregators": ["TraderJoe", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0x9e6832d13b29d0b1c1c3465242681039b31c7a05": { + "address": "0x9e6832d13b29d0b1c1c3465242681039b31c7a05", + "symbol": "STOMB", + "decimals": 18, + "name": "Snowtomb", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/43114/0x9e6832d13b29d0b1c1c3465242681039b31c7a05.png", + "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0x71f99bdbe8e6b958016ea399e3dba0790f82ca88": { + "address": "0x71f99bdbe8e6b958016ea399e3dba0790f82ca88", + "symbol": "ABG", + "decimals": 18, + "name": "AB Group", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/43114/0x71f99bdbe8e6b958016ea399e3dba0790f82ca88.png", + "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0x77776ab9495729e0939e9badaf7e7c3312777777": { + "address": "0x77776ab9495729e0939e9badaf7e7c3312777777", + "symbol": "WABBIT", + "decimals": 18, + "name": "WABBIT", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/43114/0x77776ab9495729e0939e9badaf7e7c3312777777.png", + "aggregators": ["TraderJoe", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0x223a368ad0e7396165fc629976d77596a51f155c": { + "address": "0x223a368ad0e7396165fc629976d77596a51f155c", + "symbol": "GURS", + "decimals": 18, + "name": "GursOnAVAX", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/43114/0x223a368ad0e7396165fc629976d77596a51f155c.png", + "aggregators": ["TraderJoe", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0x502580fc390606b47fc3b741d6d49909383c28a9": { + "address": "0x502580fc390606b47fc3b741d6d49909383c28a9", + "symbol": "HATCHY", + "decimals": 18, + "name": "HatchyPocket", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/43114/0x502580fc390606b47fc3b741d6d49909383c28a9.png", + "aggregators": ["TraderJoe", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0x0a10d108e2d81ccc793e37b56206c84bf96ddc57": { + "address": "0x0a10d108e2d81ccc793e37b56206c84bf96ddc57", + "symbol": "XSEED", + "decimals": 18, + "name": "MXS Games", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/43114/0x0a10d108e2d81ccc793e37b56206c84bf96ddc57.png", + "aggregators": ["TraderJoe", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0x4a5bb433132b7e7f75d6a9a3e4136bb85ce6e4d5": { + "address": "0x4a5bb433132b7e7f75d6a9a3e4136bb85ce6e4d5", + "symbol": "$BOOTY", + "decimals": 18, + "name": "Booty", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/43114/0x4a5bb433132b7e7f75d6a9a3e4136bb85ce6e4d5.png", + "aggregators": ["TraderJoe", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0x8eb270e296023e9d92081fdf967ddd7878724424": { + "address": "0x8eb270e296023e9d92081fdf967ddd7878724424", + "symbol": "AMAI", + "decimals": 18, + "name": "Aave v3 MAI", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/43114/0x8eb270e296023e9d92081fdf967ddd7878724424.png", + "aggregators": ["CoinGecko", "LiFi", "Rubic", "Sonarwatch"], + "occurrences": 4 + }, + "0x000000000000012def132e61759048be5b5c6033": { + "address": "0x000000000000012def132e61759048be5b5c6033", + "symbol": "CX", + "decimals": 18, + "name": "Cortex", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/43114/0x000000000000012def132e61759048be5b5c6033.png", + "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0x7c64925002bfa705834b118a923e9911bee32875": { + "address": "0x7c64925002bfa705834b118a923e9911bee32875", + "symbol": "ACRED", + "decimals": 6, + "name": "Apollo Diversified Credit Securitize Fund", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/43114/0x7c64925002bfa705834b118a923e9911bee32875.png", + "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0xca30c93b02514f86d5c86a6e375e3a330b435fb5": { + "address": "0xca30c93b02514f86d5c86a6e375e3a330b435fb5", + "symbol": "BIB01", + "decimals": 18, + "name": "Backed IB01 $ Treasury Bond 0-1yr", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/43114/0xca30c93b02514f86d5c86a6e375e3a330b435fb5.png", + "aggregators": ["TraderJoe", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0xa34c5e0abe843e10461e2c9586ea03e55dbcc495": { + "address": "0xa34c5e0abe843e10461e2c9586ea03e55dbcc495", + "symbol": "BNVDA", + "decimals": 18, + "name": "Backed NVIDIA", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/43114/0xa34c5e0abe843e10461e2c9586ea03e55dbcc495.png", + "aggregators": ["CoinGecko", "LiFi", "Rubic", "Sonarwatch"], + "occurrences": 4 + }, + "0xbd3d46b98b2f6ada480d6bd53d11cf4553c18f41": { + "address": "0xbd3d46b98b2f6ada480d6bd53d11cf4553c18f41", + "symbol": "GMAC", + "decimals": 18, + "name": "Gemach", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/43114/0xbd3d46b98b2f6ada480d6bd53d11cf4553c18f41.png", + "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0xb1f19e492401545c1b060c4b18688f9178325b4d": { + "address": "0xb1f19e492401545c1b060c4b18688f9178325b4d", + "symbol": "SHARDS", + "decimals": 6, + "name": "Flux Point Studios SHARDS", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/43114/0xb1f19e492401545c1b060c4b18688f9178325b4d.png", + "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0xaf20f5f19698f1d19351028cd7103b63d30de7d7": { + "address": "0xaf20f5f19698f1d19351028cd7103b63d30de7d7", + "symbol": "WAGMI", + "decimals": 18, + "name": "Wagmi", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/43114/0xaf20f5f19698f1d19351028cd7103b63d30de7d7.png", + "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0x52d134c6db5889fad3542a09eaf7aa90c0fdf9e4": { + "address": "0x52d134c6db5889fad3542a09eaf7aa90c0fdf9e4", + "symbol": "BIBTA", + "decimals": 18, + "name": "Backed IBTA $ Treasury Bond 1-3yr", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/43114/0x52d134c6db5889fad3542a09eaf7aa90c0fdf9e4.png", + "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0x20c64dee8fda5269a78f2d5bdba861ca1d83df7a": { + "address": "0x20c64dee8fda5269a78f2d5bdba861ca1d83df7a", + "symbol": "BHIGH", + "decimals": 18, + "name": "Backed HIGH € High Yield Corp Bond", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/43114/0x20c64dee8fda5269a78f2d5bdba861ca1d83df7a.png", + "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0x2f123cf3f37ce3328cc9b5b8415f9ec5109b45e7": { + "address": "0x2f123cf3f37ce3328cc9b5b8415f9ec5109b45e7", + "symbol": "BC3M", + "decimals": 18, + "name": "Backed GOVIES 0-6 months EURO", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/43114/0x2f123cf3f37ce3328cc9b5b8415f9ec5109b45e7.png", + "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0x945ca41d03ec19b6a6ebf2ef0f4d0a50b23e4f2c": { + "address": "0x945ca41d03ec19b6a6ebf2ef0f4d0a50b23e4f2c", + "symbol": "GRELF", + "decimals": 8, + "name": "GRELF", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/43114/0x945ca41d03ec19b6a6ebf2ef0f4d0a50b23e4f2c.png", + "aggregators": ["PangolinDex", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0xa4fb4f0ff2431262d236778495145ecbc975c38b": { + "address": "0xa4fb4f0ff2431262d236778495145ecbc975c38b", + "symbol": "INFRA", + "decimals": 18, + "name": "Bware", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/43114/0xa4fb4f0ff2431262d236778495145ecbc975c38b.png", + "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0x008e26068b3eb40b443d3ea88c1ff99b789c10f7": { + "address": "0x008e26068b3eb40b443d3ea88c1ff99b789c10f7", + "symbol": "ZERO", + "decimals": 18, + "name": "0.exchange", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/43114/0x008e26068b3eb40b443d3ea88c1ff99b789c10f7.png", + "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0xa5acfeca5270bc9768633fbc86caa959b85ec8b7": { + "address": "0xa5acfeca5270bc9768633fbc86caa959b85ec8b7", + "symbol": "KRW", + "decimals": 18, + "name": "KROWN", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/43114/0xa5acfeca5270bc9768633fbc86caa959b85ec8b7.png", + "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0xafc43610c7840b20b90caaf93759be5b54b291c9": { + "address": "0xafc43610c7840b20b90caaf93759be5b54b291c9", + "symbol": "ABR", + "decimals": 18, + "name": "Allbridge", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/43114/0xafc43610c7840b20b90caaf93759be5b54b291c9.png", + "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0x2f86508f41310d8d974b76deb3d246c0caa71cf5": { + "address": "0x2f86508f41310d8d974b76deb3d246c0caa71cf5", + "symbol": "HOTCROSS", + "decimals": 18, + "name": "Hot Cross", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/43114/0x2f86508f41310d8d974b76deb3d246c0caa71cf5.png", + "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0x4036f3d9c45a20f44f0b8b85dd6ca33005ff9654": { + "address": "0x4036f3d9c45a20f44f0b8b85dd6ca33005ff9654", + "symbol": "ROOBEE", + "decimals": 18, + "name": "Roobee", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/43114/0x4036f3d9c45a20f44f0b8b85dd6ca33005ff9654.png", + "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0xf2f13f0b7008ab2fa4a2418f4ccc3684e49d20eb": { + "address": "0xf2f13f0b7008ab2fa4a2418f4ccc3684e49d20eb", + "symbol": "MATICPO", + "decimals": 18, + "name": "MATIC (Portal from Polygon)", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/43114/0xf2f13f0b7008ab2fa4a2418f4ccc3684e49d20eb.png", + "aggregators": ["TraderJoe", "TrustWallet", "Rubic", "Rango"], + "occurrences": 4 + }, + "0xfcaf13227dcbfa2dc2b1928acfca03b85e2d25dd": { + "address": "0xfcaf13227dcbfa2dc2b1928acfca03b85e2d25dd", + "symbol": "IDIA", + "decimals": 18, + "name": "Impossible Finance Launchpad", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/43114/0xfcaf13227dcbfa2dc2b1928acfca03b85e2d25dd.png", + "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0x6ac048ae05e7e015acca2aa7abd0ec013e8e3a59": { + "address": "0x6ac048ae05e7e015acca2aa7abd0ec013e8e3a59", + "symbol": "BSKT", + "decimals": 5, + "name": "Basket", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/43114/0x6ac048ae05e7e015acca2aa7abd0ec013e8e3a59.png", + "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0x872952d3c1caf944852c5adda65633f1ef218a26": { + "address": "0x872952d3c1caf944852c5adda65633f1ef218a26", + "symbol": "LQDX", + "decimals": 18, + "name": "Reddex", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/43114/0x872952d3c1caf944852c5adda65633f1ef218a26.png", + "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0x8af94528fbe3c4c148523e7aad48bcebcc0a71d7": { + "address": "0x8af94528fbe3c4c148523e7aad48bcebcc0a71d7", + "symbol": "ATF", + "decimals": 18, + "name": "Antfarm Token", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/43114/0x8af94528fbe3c4c148523e7aad48bcebcc0a71d7.png", + "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0x5f880678320a9445824bb15d18ef67b5ecbaa42a": { + "address": "0x5f880678320a9445824bb15d18ef67b5ecbaa42a", + "symbol": "WBRGE", + "decimals": 18, + "name": "Wrapped OrdBridge", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/43114/0x5f880678320a9445824bb15d18ef67b5ecbaa42a.png", + "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0xc45a479877e1e9dfe9fcd4056c699575a1045daa": { + "address": "0xc45a479877e1e9dfe9fcd4056c699575a1045daa", + "symbol": "AFRAX", + "decimals": 18, + "name": "Aave v3 FRAX", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/43114/0xc45a479877e1e9dfe9fcd4056c699575a1045daa.png", + "aggregators": ["CoinGecko", "LiFi", "Rubic", "Sonarwatch"], + "occurrences": 4 + }, + "0xe8876189a80b2079d8c0a7867e46c50361d972c1": { + "address": "0xe8876189a80b2079d8c0a7867e46c50361d972c1", + "symbol": "ARC", + "decimals": 18, + "name": "Archly Finance", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/43114/0xe8876189a80b2079d8c0a7867e46c50361d972c1.png", + "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0x617724974218a18769020a70162165a539c07e8a": { + "address": "0x617724974218a18769020a70162165a539c07e8a", + "symbol": "OLIVE", + "decimals": 18, + "name": "Olive Cash", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/43114/0x617724974218a18769020a70162165a539c07e8a.png", + "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0xab236ed82a0184ab754534f3952b48408468c09b": { + "address": "0xab236ed82a0184ab754534f3952b48408468c09b", + "symbol": "NULL", + "decimals": 18, + "name": "NULL MATRIX", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/43114/0xab236ed82a0184ab754534f3952b48408468c09b.png", + "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0x873801ae2ff12d816db9a7b082f5796bec64c82c": { + "address": "0x873801ae2ff12d816db9a7b082f5796bec64c82c", + "symbol": "WTF", + "decimals": 18, + "name": "Waterfall Governance", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/43114/0x873801ae2ff12d816db9a7b082f5796bec64c82c.png", + "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0xfc8a21dbcab432fb5e469d80f976e022c2f56ea0": { + "address": "0xfc8a21dbcab432fb5e469d80f976e022c2f56ea0", + "symbol": "MMUI", + "decimals": 6, + "name": "MetaMUI", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/43114/0xfc8a21dbcab432fb5e469d80f976e022c2f56ea0.png", + "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0x62aceea3e666c5706ce1c61055fac1a669d31d93": { + "address": "0x62aceea3e666c5706ce1c61055fac1a669d31d93", + "symbol": "KALM", + "decimals": 18, + "name": "KALM", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/43114/0x62aceea3e666c5706ce1c61055fac1a669d31d93.png", + "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0x039d2e8f097331278bd6c1415d839310e0d5ece4": { + "address": "0x039d2e8f097331278bd6c1415d839310e0d5ece4", + "symbol": "LINDA", + "decimals": 18, + "name": "Linda", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/43114/0x039d2e8f097331278bd6c1415d839310e0d5ece4.png", + "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0x21c5402c3b7d40c89cc472c9df5dd7e51bbab1b1": { + "address": "0x21c5402c3b7d40c89cc472c9df5dd7e51bbab1b1", + "symbol": "TUNDRA", + "decimals": 18, + "name": "TundraToken", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/43114/0x21c5402c3b7d40c89cc472c9df5dd7e51bbab1b1.png", + "aggregators": ["PangolinDex", "LiFi", "Rubic", "Rango"], + "occurrences": 4 + }, + "0x094bd7b2d99711a1486fb94d4395801c6d0fddcc": { + "address": "0x094bd7b2d99711a1486fb94d4395801c6d0fddcc", + "symbol": "TEDDY", + "decimals": 18, + "name": "TEDDY", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/43114/0x094bd7b2d99711a1486fb94d4395801c6d0fddcc.png", + "aggregators": ["PangolinDex", "Socket", "Rubic", "Rango"], + "occurrences": 4 + }, + "0xd67de0e0a0fd7b15dc8348bb9be742f3c5850454": { + "address": "0xd67de0e0a0fd7b15dc8348bb9be742f3c5850454", + "symbol": "FXS", + "decimals": 18, + "name": "FXS", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/43114/0xd67de0e0a0fd7b15dc8348bb9be742f3c5850454.png", + "aggregators": ["PangolinDex", "LiFi", "Rubic", "Rango"], + "occurrences": 4 + }, + "0x90842eb834cfd2a1db0b1512b254a18e4d396215": { + "address": "0x90842eb834cfd2a1db0b1512b254a18e4d396215", + "symbol": "GB", + "decimals": 9, + "name": "GB", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/43114/0x90842eb834cfd2a1db0b1512b254a18e4d396215.png", + "aggregators": ["PangolinDex", "LiFi", "Rubic", "Rango"], + "occurrences": 4 + }, + "0xc3344870d52688874b06d844e0c36cc39fc727f6": { + "address": "0xc3344870d52688874b06d844e0c36cc39fc727f6", + "symbol": "ANKRAVAX", + "decimals": 18, + "name": "ANKRAVAX", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/43114/0xc3344870d52688874b06d844e0c36cc39fc727f6.png", + "aggregators": ["PangolinDex", "LiFi", "Rubic", "Rango"], + "occurrences": 4 + }, + "0x7c08413cbf02202a1c13643db173f2694e0f73f0": { + "address": "0x7c08413cbf02202a1c13643db173f2694e0f73f0", + "symbol": "MAXI", + "decimals": 9, + "name": "MAXI", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/43114/0x7c08413cbf02202a1c13643db173f2694e0f73f0.png", + "aggregators": ["PangolinDex", "LiFi", "Socket", "Rango"], + "occurrences": 4 + }, + "0x260bbf5698121eb85e7a74f2e45e16ce762ebe11": { + "address": "0x260bbf5698121eb85e7a74f2e45e16ce762ebe11", + "symbol": "UST", + "decimals": 6, + "name": "Axelar Wrapped UST", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/43114/0x260bbf5698121eb85e7a74f2e45e16ce762ebe11.png", + "aggregators": ["PangolinDex", "LiFi", "Squid", "Rango"], + "occurrences": 4 + }, + "0x3c780f5cbf94de3efcec964af928d08c4508eebe": { + "address": "0x3c780f5cbf94de3efcec964af928d08c4508eebe", + "symbol": "SPACEM", + "decimals": 18, + "name": "SpaceM Token", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/43114/0x3c780f5cbf94de3efcec964af928d08c4508eebe.png", + "aggregators": ["TraderJoe", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0x214dd1b5cbe543d4189ab39832f1bc1eedebb1d3": { + "address": "0x214dd1b5cbe543d4189ab39832f1bc1eedebb1d3", + "symbol": "JUNIOR", + "decimals": 9, + "name": "Junior", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/43114/0x214dd1b5cbe543d4189ab39832f1bc1eedebb1d3.png", + "aggregators": ["TraderJoe", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0x2dc45b5377739aa47e1162f42ca591c1688bc647": { + "address": "0x2dc45b5377739aa47e1162f42ca591c1688bc647", + "symbol": "YEET", + "decimals": 18, + "name": "Yeet The Yeti", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/43114/0x2dc45b5377739aa47e1162f42ca591c1688bc647.png", + "aggregators": ["TraderJoe", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0x3cc96f3cb4f45b5b5cdbce61faee8ae80d805c65": { + "address": "0x3cc96f3cb4f45b5b5cdbce61faee8ae80d805c65", + "symbol": "AVAXMINERAI", + "decimals": 18, + "name": "AvaxMinerAI", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/43114/0x3cc96f3cb4f45b5b5cdbce61faee8ae80d805c65.png", + "aggregators": ["TraderJoe", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0x5c5e384bd4e36724b2562ccaa582afd125277c9b": { + "address": "0x5c5e384bd4e36724b2562ccaa582afd125277c9b", + "symbol": "ARROW", + "decimals": 18, + "name": "Arrow Token", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/43114/0x5c5e384bd4e36724b2562ccaa582afd125277c9b.png", + "aggregators": ["TraderJoe", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0x735d8f3b6a5d2c96d0405230c50eaf96794fbb88": { + "address": "0x735d8f3b6a5d2c96d0405230c50eaf96794fbb88", + "symbol": "XPOW", + "decimals": 18, + "name": "XPowermine.com XPOW", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/43114/0x735d8f3b6a5d2c96d0405230c50eaf96794fbb88.png", + "aggregators": ["TraderJoe", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0x9c846d808a41328a209e235b5e3c4e626dab169e": { + "address": "0x9c846d808a41328a209e235b5e3c4e626dab169e", + "symbol": "FERT", + "decimals": 18, + "name": "Chikn Fert", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/43114/0x9c846d808a41328a209e235b5e3c4e626dab169e.png", + "aggregators": ["TraderJoe", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0xb36faf341c7817d681f23bcedbd3d85467e5ad9f": { + "address": "0xb36faf341c7817d681f23bcedbd3d85467e5ad9f", + "symbol": "RPEPE", + "decimals": 18, + "name": "Red Pepe", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/43114/0xb36faf341c7817d681f23bcedbd3d85467e5ad9f.png", + "aggregators": ["TraderJoe", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0x8ffdf2de812095b1d19cb146e4c004587c0a0692": { + "address": "0x8ffdf2de812095b1d19cb146e4c004587c0a0692", + "symbol": "ABTC.B", + "decimals": 8, + "name": "Aave v3 BTC.b", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/43114/0x8ffdf2de812095b1d19cb146e4c004587c0a0692.png", + "aggregators": ["LiFi", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0x6d80113e533a2c0fe82eabd35f1875dcea89ea97": { + "address": "0x6d80113e533a2c0fe82eabd35f1875dcea89ea97", + "symbol": "AWAVAX", + "decimals": 18, + "name": "Aave v3 WAVAX", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/43114/0x6d80113e533a2c0fe82eabd35f1875dcea89ea97.png", + "aggregators": ["LiFi", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0x820802fa8a99901f52e39acd21177b0be6ee2974": { + "address": "0x820802fa8a99901f52e39acd21177b0be6ee2974", + "symbol": "EUROE", + "decimals": 6, + "name": "EUROe Stablecoin", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/43114/0x820802fa8a99901f52e39acd21177b0be6ee2974.png", + "aggregators": ["LiFi", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0xd889657e1570c5bedd3fa846ab7865a86aaa338a": { + "address": "0xd889657e1570c5bedd3fa846ab7865a86aaa338a", + "symbol": "AXLWMAI", + "decimals": 18, + "name": "Axelar Wrapped WMAI", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/43114/0xd889657e1570c5bedd3fa846ab7865a86aaa338a.png", + "aggregators": ["LiFi", "Rubic", "Squid", "Rango"], + "occurrences": 4 + }, + "0xd6070ae98b8069de6b494332d1a1a81b6179d960": { + "address": "0xd6070ae98b8069de6b494332d1a1a81b6179d960", + "symbol": "BIFI", + "decimals": 18, + "name": "beefy.finance", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/43114/0xd6070ae98b8069de6b494332d1a1a81b6179d960.png", + "aggregators": ["LiFi", "TrustWallet", "Socket", "Rubic"], + "occurrences": 4 + }, + "0x0802d66f029c46e042b74d543fc43b6705ccb4ba": { + "address": "0x0802d66f029c46e042b74d543fc43b6705ccb4ba", + "symbol": "APE", + "decimals": 18, + "name": "APE", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/43114/0x0802d66f029c46e042b74d543fc43b6705ccb4ba.png", + "aggregators": ["LiFi", "Socket", "Rubic", "Rango"], + "occurrences": 4 + }, + "0x249848beca43ac405b8102ec90dd5f22ca513c06": { + "address": "0x249848beca43ac405b8102ec90dd5f22ca513c06", + "symbol": "CRV.E", + "decimals": 18, + "name": "Curve DAO Token", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/43114/0x249848beca43ac405b8102ec90dd5f22ca513c06.png", + "aggregators": ["LiFi", "TrustWallet", "Rubic", "Rango"], + "occurrences": 4 + }, + "0xd5d0a9b3f2c264b955ae7161cfa6d38a7aea60a7": { + "address": "0xd5d0a9b3f2c264b955ae7161cfa6d38a7aea60a7", + "symbol": "ABCPHAR", + "decimals": 18, + "name": "abcPHAR", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/43114/0xd5d0a9b3f2c264b955ae7161cfa6d38a7aea60a7.png", + "aggregators": ["LiFi", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0xedf647326007e64d94b0ee69743350f3736e392c": { + "address": "0xedf647326007e64d94b0ee69743350f3736e392c", + "symbol": "TICO", + "decimals": 18, + "name": "TICO", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/43114/0xedf647326007e64d94b0ee69743350f3736e392c.png", + "aggregators": ["PangolinDex", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x0cd741f007b417088ca7f4392e8d6b49b4f7a975": { + "address": "0x0cd741f007b417088ca7f4392e8d6b49b4f7a975", + "symbol": "KINGSHIT", + "decimals": 18, + "name": "Kingshit", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/43114/0x0cd741f007b417088ca7f4392e8d6b49b4f7a975.png", + "aggregators": ["TraderJoe", "Rubic", "Sonarwatch"], + "occurrences": 3 + }, + "0x95e376390f472fcaa21995169e11d523954b3bbb": { + "address": "0x95e376390f472fcaa21995169e11d523954b3bbb", + "symbol": "TRYT", + "decimals": 18, + "name": "LiraT", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/43114/0x95e376390f472fcaa21995169e11d523954b3bbb.png", + "aggregators": ["CoinGecko", "Rubic", "Sonarwatch"], + "occurrences": 3 + }, + "0x7c6a937943f135283a2561938de2200994a8f7a7": { + "address": "0x7c6a937943f135283a2561938de2200994a8f7a7", + "symbol": "NOTE", + "decimals": 8, + "name": "Republic Note", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/43114/0x7c6a937943f135283a2561938de2200994a8f7a7.png", + "aggregators": ["CoinGecko", "Rubic", "Sonarwatch"], + "occurrences": 3 + }, + "0x14eb40fb7900185c01adc6a5b8ac506d8a600e3c": { + "address": "0x14eb40fb7900185c01adc6a5b8ac506d8a600e3c", + "symbol": "EUROT", + "decimals": 18, + "name": "Token Teknoloji A.Ş. EURO", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/43114/0x14eb40fb7900185c01adc6a5b8ac506d8a600e3c.png", + "aggregators": ["CoinGecko", "Rubic", "Rango"], + "occurrences": 3 + }, + "0xae55ab6a966863cb4c774ba8e6c0a37cfbea01f9": { + "address": "0xae55ab6a966863cb4c774ba8e6c0a37cfbea01f9", + "symbol": "GRAMG", + "decimals": 18, + "name": "Gram Gold", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/43114/0xae55ab6a966863cb4c774ba8e6c0a37cfbea01f9.png", + "aggregators": ["CoinGecko", "Rubic", "Sonarwatch"], + "occurrences": 3 + }, + "0xe229b734251dd48dda27bb908d90329f229c3531": { + "address": "0xe229b734251dd48dda27bb908d90329f229c3531", + "symbol": "GRAMP", + "decimals": 18, + "name": "Gram Platinum", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/43114/0xe229b734251dd48dda27bb908d90329f229c3531.png", + "aggregators": ["CoinGecko", "Rubic", "Sonarwatch"], + "occurrences": 3 + }, + "0xe08b4c1005603427420e64252a8b120cace4d122": { + "address": "0xe08b4c1005603427420e64252a8b120cace4d122", + "symbol": "BENJI", + "decimals": 18, + "name": "Franklin OnChain U.S. Government Money Fund", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/43114/0xe08b4c1005603427420e64252a8b120cace4d122.png", + "aggregators": ["CoinGecko", "Rubic", "Sonarwatch"], + "occurrences": 3 + }, + "0x14a5f2872396802c3cc8942a39ab3e4118ee5038": { + "address": "0x14a5f2872396802c3cc8942a39ab3e4118ee5038", + "symbol": "BTSLA", + "decimals": 18, + "name": "Backed Tesla Inc", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/43114/0x14a5f2872396802c3cc8942a39ab3e4118ee5038.png", + "aggregators": ["CoinGecko", "LiFi", "Rubic"], + "occurrences": 3 + }, + "0xac28c9178acc8ba4a11a29e013a3a2627086e422": { + "address": "0xac28c9178acc8ba4a11a29e013a3a2627086e422", + "symbol": "BMSTR", + "decimals": 18, + "name": "Backed MicroStrategy Inc", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/43114/0xac28c9178acc8ba4a11a29e013a3a2627086e422.png", + "aggregators": ["CoinGecko", "LiFi", "Rubic"], + "occurrences": 3 + }, + "0x542245f2b93b30994a4670121541b38226f1208c": { + "address": "0x542245f2b93b30994a4670121541b38226f1208c", + "symbol": "BALN", + "decimals": 18, + "name": "BALN", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/43114/0x542245f2b93b30994a4670121541b38226f1208c.png", + "aggregators": ["CoinGecko", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x7212088a11b4d8f6fc90fbb3dfe793b45dd72323": { + "address": "0x7212088a11b4d8f6fc90fbb3dfe793b45dd72323", + "symbol": "BGME", + "decimals": 18, + "name": "Backed GameStop Corp", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/43114/0x7212088a11b4d8f6fc90fbb3dfe793b45dd72323.png", + "aggregators": ["CoinGecko", "Rubic", "Sonarwatch"], + "occurrences": 3 + }, + "0x30c74769ea97c6454e2a4d4e9d2da947c64ca1e0": { + "address": "0x30c74769ea97c6454e2a4d4e9d2da947c64ca1e0", + "symbol": "BTC.ℏ[AVA]", + "decimals": 8, + "name": "BTC.ℏ[AVA]", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/43114/0x30c74769ea97c6454e2a4d4e9d2da947c64ca1e0.png", + "aggregators": ["CoinGecko", "Rubic", "Rango"], + "occurrences": 3 + }, + "0xebee37aaf2905b7bda7e3b928043862e982e8f32": { + "address": "0xebee37aaf2905b7bda7e3b928043862e982e8f32", + "symbol": "BGOOGL", + "decimals": 18, + "name": "Backed Alphabet Class A", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/43114/0xebee37aaf2905b7bda7e3b928043862e982e8f32.png", + "aggregators": ["CoinGecko", "Rubic", "Sonarwatch"], + "occurrences": 3 + }, + "0xade6057fcafa57d6d51ffa341c64ce4814995995": { + "address": "0xade6057fcafa57d6d51ffa341c64ce4814995995", + "symbol": "BZPR1", + "decimals": 18, + "name": "Backed ZPR1 $ 1-3 Month T-Bill", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/43114/0xade6057fcafa57d6d51ffa341c64ce4814995995.png", + "aggregators": ["CoinGecko", "Rubic", "Sonarwatch"], + "occurrences": 3 + }, + "0xf44ff799ea2bbfec96f9a50498209aac3c2b3b8b": { + "address": "0xf44ff799ea2bbfec96f9a50498209aac3c2b3b8b", + "symbol": "ROUTE", + "decimals": 18, + "name": "Router Protocol [OLD]", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/43114/0xf44ff799ea2bbfec96f9a50498209aac3c2b3b8b.png", + "aggregators": ["CoinGecko", "Rubic", "Sonarwatch"], + "occurrences": 3 + }, + "0x422812fc000e831b5ff13c181d85f34dd71380b3": { + "address": "0x422812fc000e831b5ff13c181d85f34dd71380b3", + "symbol": "MPT", + "decimals": 18, + "name": "MPT", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/43114/0x422812fc000e831b5ff13c181d85f34dd71380b3.png", + "aggregators": ["CoinGecko", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x2f11eeee0bf21e7661a22dbbbb9068f4ad191b86": { + "address": "0x2f11eeee0bf21e7661a22dbbbb9068f4ad191b86", + "symbol": "BNIU", + "decimals": 18, + "name": "Backed NIU Technologies", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/43114/0x2f11eeee0bf21e7661a22dbbbb9068f4ad191b86.png", + "aggregators": ["CoinGecko", "Rubic", "Rango"], + "occurrences": 3 + }, + "0xd2a530170d71a9cfe1651fb468e2b98f7ed7456b": { + "address": "0xd2a530170d71a9cfe1651fb468e2b98f7ed7456b", + "symbol": "AUDF", + "decimals": 6, + "name": "Forte AUD", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/43114/0xd2a530170d71a9cfe1651fb468e2b98f7ed7456b.png", + "aggregators": ["CoinGecko", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x374a457967ba24fd3ae66294cab08244185574b0": { + "address": "0x374a457967ba24fd3ae66294cab08244185574b0", + "symbol": "BMSFT", + "decimals": 18, + "name": "Backed Microsoft", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/43114/0x374a457967ba24fd3ae66294cab08244185574b0.png", + "aggregators": ["CoinGecko", "Rubic", "Sonarwatch"], + "occurrences": 3 + }, + "0xea50f402653c41cadbafd1f788341db7b7f37816": { + "address": "0xea50f402653c41cadbafd1f788341db7b7f37816", + "symbol": "SGYD", + "decimals": 18, + "name": "sGYD", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/43114/0xea50f402653c41cadbafd1f788341db7b7f37816.png", + "aggregators": ["CoinGecko", "Rubic", "Sonarwatch"], + "occurrences": 3 + }, + "0x949185d3be66775ea648f4a306740ea9eff9c567": { + "address": "0x949185d3be66775ea648f4a306740ea9eff9c567", + "symbol": "YEL", + "decimals": 18, + "name": "YELToken", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/43114/0x949185d3be66775ea648f4a306740ea9eff9c567.png", + "aggregators": ["CoinGecko", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x0f76d32cdccdcbd602a55af23eaf58fd1ee17245": { + "address": "0x0f76d32cdccdcbd602a55af23eaf58fd1ee17245", + "symbol": "BERNA", + "decimals": 18, + "name": "Backed ERNA $ Bond", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/43114/0x0f76d32cdccdcbd602a55af23eaf58fd1ee17245.png", + "aggregators": ["CoinGecko", "Rubic", "Sonarwatch"], + "occurrences": 3 + }, + "0x3f95aa88ddbb7d9d484aa3d482bf0a80009c52c9": { + "address": "0x3f95aa88ddbb7d9d484aa3d482bf0a80009c52c9", + "symbol": "BERNX", + "decimals": 18, + "name": "Backed ERNX € Bond", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/43114/0x3f95aa88ddbb7d9d484aa3d482bf0a80009c52c9.png", + "aggregators": ["CoinGecko", "Rubic", "Sonarwatch"], + "occurrences": 3 + }, + "0x78ea17559b3d2cf85a7f9c2c704eda119db5e6de": { + "address": "0x78ea17559b3d2cf85a7f9c2c704eda119db5e6de", + "symbol": "AVE", + "decimals": 18, + "name": "Avaware", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/43114/0x78ea17559b3d2cf85a7f9c2c704eda119db5e6de.png", + "aggregators": ["PangolinDex", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x1ecd47ff4d9598f89721a2866bfeb99505a413ed": { + "address": "0x1ecd47ff4d9598f89721a2866bfeb99505a413ed", + "symbol": "AVME", + "decimals": 18, + "name": "AVME", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/43114/0x1ecd47ff4d9598f89721a2866bfeb99505a413ed.png", + "aggregators": ["PangolinDex", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x0ebd9537a25f56713e34c45b38f421a1e7191469": { + "address": "0x0ebd9537a25f56713e34c45b38f421a1e7191469", + "symbol": "OOE", + "decimals": 18, + "name": "OpenOcean", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/43114/0x0ebd9537a25f56713e34c45b38f421a1e7191469.png", + "aggregators": ["PangolinDex", "Socket", "Rubic"], + "occurrences": 3 + }, + "0xea6887e4a9cda1b77e70129e5fba830cdb5cddef": { + "address": "0xea6887e4a9cda1b77e70129e5fba830cdb5cddef", + "symbol": "IMX.A", + "decimals": 18, + "name": "IMX@avalanche", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/43114/0xea6887e4a9cda1b77e70129e5fba830cdb5cddef.png", + "aggregators": ["PangolinDex", "LiFi", "Rubic", "Rango"], + "occurrences": 4 + }, + "0x4f60a160d8c2dddaafe16fcc57566db84d674bd6": { + "address": "0x4f60a160d8c2dddaafe16fcc57566db84d674bd6", + "symbol": "JEWEL", + "decimals": 18, + "name": "Jewels", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/43114/0x4f60a160d8c2dddaafe16fcc57566db84d674bd6.png", + "aggregators": ["PangolinDex", "LiFi", "Rango"], + "occurrences": 3 + }, + "0xca220f1e486a8e35d6f1dcd62073ad8dd04659ed": { + "address": "0xca220f1e486a8e35d6f1dcd62073ad8dd04659ed", + "symbol": "GLDB", + "decimals": 6, + "name": "BiAltin", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/43114/0xca220f1e486a8e35d6f1dcd62073ad8dd04659ed.png", + "aggregators": ["PangolinDex", "LiFi", "Rubic"], + "occurrences": 3 + }, + "0xfa4b6db72a650601e7bd50a0a9f537c9e98311b2": { + "address": "0xfa4b6db72a650601e7bd50a0a9f537c9e98311b2", + "symbol": "HSHARES", + "decimals": 18, + "name": "HERMES Shares", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/43114/0xfa4b6db72a650601e7bd50a0a9f537c9e98311b2.png", + "aggregators": ["PangolinDex", "LiFi", "Rubic"], + "occurrences": 3 + }, + "0xe6b9d092223f39013656702a40dbe6b7decc5746": { + "address": "0xe6b9d092223f39013656702a40dbe6b7decc5746", + "symbol": "ANGLE", + "decimals": 18, + "name": "ANGLE", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/43114/0xe6b9d092223f39013656702a40dbe6b7decc5746.png", + "aggregators": ["PangolinDex", "LiFi", "Rubic"], + "occurrences": 3 + }, + "0x9c8e99eb130aed653ef90fed709d9c3e9cc8b269": { + "address": "0x9c8e99eb130aed653ef90fed709d9c3e9cc8b269", + "symbol": "HTZ", + "decimals": 18, + "name": "Hertz Token", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/43114/0x9c8e99eb130aed653ef90fed709d9c3e9cc8b269.png", + "aggregators": ["PangolinDex", "LiFi", "Rubic"], + "occurrences": 3 + }, + "0x0fec6d8a84a85b79a1ffe0e28c1902e08b653efe": { + "address": "0x0fec6d8a84a85b79a1ffe0e28c1902e08b653efe", + "symbol": "HOOP", + "decimals": 18, + "name": "Hoopoe Ventures", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/43114/0x0fec6d8a84a85b79a1ffe0e28c1902e08b653efe.png", + "aggregators": ["PangolinDex", "LiFi", "Rubic"], + "occurrences": 3 + }, + "0x402fd175049e95cef2cc9ca1fecdb6d9736e690d": { + "address": "0x402fd175049e95cef2cc9ca1fecdb6d9736e690d", + "symbol": "CATS", + "decimals": 18, + "name": "CATOSHI", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/43114/0x402fd175049e95cef2cc9ca1fecdb6d9736e690d.png", + "aggregators": ["PangolinDex", "LiFi", "Rubic"], + "occurrences": 3 + }, + "0x1fe4751d9bdabac8d90067056cb45ab6823d2c12": { + "address": "0x1fe4751d9bdabac8d90067056cb45ab6823d2c12", + "symbol": "ARGON", + "decimals": 18, + "name": "ArgonToken", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/43114/0x1fe4751d9bdabac8d90067056cb45ab6823d2c12.png", + "aggregators": ["PangolinDex", "LiFi", "Rubic"], + "occurrences": 3 + }, + "0x312ee43df66d1fd1ea28e5b28f355da84dca13c2": { + "address": "0x312ee43df66d1fd1ea28e5b28f355da84dca13c2", + "symbol": "SWAPXI", + "decimals": 12, + "name": "SwapXI Token", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/43114/0x312ee43df66d1fd1ea28e5b28f355da84dca13c2.png", + "aggregators": ["PangolinDex", "LiFi", "Rubic"], + "occurrences": 3 + }, + "0x0659133127749cc0616ed6632912ddf7cc8d7545": { + "address": "0x0659133127749cc0616ed6632912ddf7cc8d7545", + "symbol": "DLAUNCH", + "decimals": 18, + "name": "DefiLaunch Token", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/43114/0x0659133127749cc0616ed6632912ddf7cc8d7545.png", + "aggregators": ["PangolinDex", "LiFi", "Rubic"], + "occurrences": 3 + }, + "0xf3ec49acb3084618121741e4bbb20996d383e9b2": { + "address": "0xf3ec49acb3084618121741e4bbb20996d383e9b2", + "symbol": "KING", + "decimals": 18, + "name": "KING", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/43114/0xf3ec49acb3084618121741e4bbb20996d383e9b2.png", + "aggregators": ["PangolinDex", "LiFi", "Rubic"], + "occurrences": 3 + }, + "0x15c841043e13ffaa9a99fabea236d40f45615623": { + "address": "0x15c841043e13ffaa9a99fabea236d40f45615623", + "symbol": "BUSINESSES", + "decimals": 18, + "name": "$BUSINESSES", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/43114/0x15c841043e13ffaa9a99fabea236d40f45615623.png", + "aggregators": ["PangolinDex", "LiFi", "Rubic"], + "occurrences": 3 + }, + "0x979ffd8eed7a43629ea29581df4bfe2b3f224e47": { + "address": "0x979ffd8eed7a43629ea29581df4bfe2b3f224e47", + "symbol": "OML", + "decimals": 18, + "name": "Omlira", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/43114/0x979ffd8eed7a43629ea29581df4bfe2b3f224e47.png", + "aggregators": ["PangolinDex", "LiFi", "Rubic"], + "occurrences": 3 + }, + "0x6fefd97f328342a8a840546a55fdcfee7542f9a8": { + "address": "0x6fefd97f328342a8a840546a55fdcfee7542f9a8", + "symbol": "AGEUR", + "decimals": 18, + "name": "agEUR (Multichain)", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/43114/0x6fefd97f328342a8a840546a55fdcfee7542f9a8.png", + "aggregators": ["PangolinDex", "LiFi", "Rubic"], + "occurrences": 3 + }, + "0x6b56ec4a92765203508fb40fec9fa23e549b705a": { + "address": "0x6b56ec4a92765203508fb40fec9fa23e549b705a", + "symbol": "UND", + "decimals": 18, + "name": "Unbound Dollar", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/43114/0x6b56ec4a92765203508fb40fec9fa23e549b705a.png", + "aggregators": ["PangolinDex", "LiFi", "Rubic"], + "occurrences": 3 + }, + "0x25f11e22d5079c2970496d592579bf4902d09d76": { + "address": "0x25f11e22d5079c2970496d592579bf4902d09d76", + "symbol": "JIGEN", + "decimals": 18, + "name": "Jigen", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/43114/0x25f11e22d5079c2970496d592579bf4902d09d76.png", + "aggregators": ["TraderJoe", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x79ba10485ae46a9436d560d9664369176ec2eb2b": { + "address": "0x79ba10485ae46a9436d560d9664369176ec2eb2b", + "symbol": "WORM", + "decimals": 18, + "name": "Chikn Worm", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/43114/0x79ba10485ae46a9436d560d9664369176ec2eb2b.png", + "aggregators": ["TraderJoe", "Rubic", "Rango"], + "occurrences": 3 + }, + "0xc06e17bdc3f008f4ce08d27d364416079289e729": { + "address": "0xc06e17bdc3f008f4ce08d27d364416079289e729", + "symbol": "DWC", + "decimals": 18, + "name": "DOGwifCROCS", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/43114/0xc06e17bdc3f008f4ce08d27d364416079289e729.png", + "aggregators": ["TraderJoe", "Rubic", "Rango"], + "occurrences": 3 + }, + "0xe46b44179db3af934da552b35ff8869e98dc6af5": { + "address": "0xe46b44179db3af934da552b35ff8869e98dc6af5", + "symbol": "PREDICT", + "decimals": 18, + "name": "predict", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/43114/0xe46b44179db3af934da552b35ff8869e98dc6af5.png", + "aggregators": ["TraderJoe", "Rubic", "Rango"], + "occurrences": 3 + }, + "0xdef1fac7bf08f173d286bbbdcbeeade695129840": { + "address": "0xdef1fac7bf08f173d286bbbdcbeeade695129840", + "symbol": "CERBY", + "decimals": 18, + "name": "Cerby Token", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/43114/0xdef1fac7bf08f173d286bbbdcbeeade695129840.png", + "aggregators": ["LiFi", "Rubic", "SushiSwap"], + "occurrences": 3 + }, + "0x853ea32391aaa14c112c645fd20ba389ab25c5e0": { + "address": "0x853ea32391aaa14c112c645fd20ba389ab25c5e0", + "symbol": "USX", + "decimals": 18, + "name": "dForce USD", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/43114/0x853ea32391aaa14c112c645fd20ba389ab25c5e0.png", + "aggregators": ["LiFi", "Socket", "Rubic"], + "occurrences": 3 + }, + "0xf873633df9d5cdd62bb1f402499cc470a72a02d7": { + "address": "0xf873633df9d5cdd62bb1f402499cc470a72a02d7", + "symbol": "MOVR", + "decimals": 18, + "name": "MoonRiver", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/43114/0xf873633df9d5cdd62bb1f402499cc470a72a02d7.png", + "aggregators": ["LiFi", "Rubic", "SushiSwap"], + "occurrences": 3 + }, + "0xdbf31df14b66535af65aac99c32e9ea844e14501": { + "address": "0xdbf31df14b66535af65aac99c32e9ea844e14501", + "symbol": "RENBTC", + "decimals": 8, + "name": "renBTC", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/43114/0xdbf31df14b66535af65aac99c32e9ea844e14501.png", + "aggregators": ["LiFi", "Socket", "Rubic"], + "occurrences": 3 + }, + "0x320ada89dbfa3a154613d2731c9bc3a4030dba19": { + "address": "0x320ada89dbfa3a154613d2731c9bc3a4030dba19", + "symbol": "FROST", + "decimals": 18, + "name": "FROST", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/43114/0x320ada89dbfa3a154613d2731c9bc3a4030dba19.png", + "aggregators": ["LiFi", "Rubic", "Rango"], + "occurrences": 3 + }, + "0xaec8318a9a59baeb39861d10ff6c7f7bf1f96c57": { + "address": "0xaec8318a9a59baeb39861d10ff6c7f7bf1f96c57", + "symbol": "AGEUR", + "decimals": 18, + "name": "agEUR", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/43114/0xaec8318a9a59baeb39861d10ff6c7f7bf1f96c57.png", + "aggregators": ["LiFi", "Rubic", "SushiSwap"], + "occurrences": 3 + }, + "0xe1c110e1b1b4a1ded0caf3e42bfbdbb7b5d7ce1c": { + "address": "0xe1c110e1b1b4a1ded0caf3e42bfbdbb7b5d7ce1c", + "symbol": "ELK", + "decimals": 18, + "name": "Elk", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/43114/0xe1c110e1b1b4a1ded0caf3e42bfbdbb7b5d7ce1c.png", + "aggregators": ["LiFi", "Socket", "Rubic"], + "occurrences": 3 + }, + "0xa6220b4209353dfef03b6ce410c8f01105515f94": { + "address": "0xa6220b4209353dfef03b6ce410c8f01105515f94", + "symbol": "AXLWBTC", + "decimals": 8, + "name": "Axelar Wrapped WBTC", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/43114/0xa6220b4209353dfef03b6ce410c8f01105515f94.png", + "aggregators": ["LiFi", "Squid", "SushiSwap"], + "occurrences": 3 + }, + "0x939b1a17c0d0aa3fea634ad9157c88245a53c713": { + "address": "0x939b1a17c0d0aa3fea634ad9157c88245a53c713", + "symbol": "FRXETH.AXL", + "decimals": 18, + "name": "Frax Ether", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/43114/0x939b1a17c0d0aa3fea634ad9157c88245a53c713.png", + "aggregators": ["LiFi", "Rubic", "Squid"], + "occurrences": 3 + }, + "0xc5fa5669e326da8b2c35540257cd48811f40a36b": { + "address": "0xc5fa5669e326da8b2c35540257cd48811f40a36b", + "symbol": "AXLDAI", + "decimals": 18, + "name": "Axelar Wrapped DAI", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/43114/0xc5fa5669e326da8b2c35540257cd48811f40a36b.png", + "aggregators": ["LiFi", "Squid", "SushiSwap"], + "occurrences": 3 + }, + "0x937e077abaea52d3abf879c9b9d3f2ebd15baa21": { + "address": "0x937e077abaea52d3abf879c9b9d3f2ebd15baa21", + "symbol": "OH", + "decimals": 18, + "name": "Oh! Finance", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/43114/0x937e077abaea52d3abf879c9b9d3f2ebd15baa21.png", + "aggregators": ["Socket", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x49f519002eeced6902f24c0be72b6d898e4d27fc": { + "address": "0x49f519002eeced6902f24c0be72b6d898e4d27fc", + "symbol": "BSGG", + "decimals": 18, + "name": "Betswap.gg", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/43114/0x49f519002eeced6902f24c0be72b6d898e4d27fc.png", + "aggregators": ["Socket", "Rubic", "Rango"], + "occurrences": 3 + }, + "0xb168085d608d7ba4931a503d3424bc44ddb6b30d": { + "address": "0xb168085d608d7ba4931a503d3424bc44ddb6b30d", + "symbol": "SIFU", + "decimals": 18, + "name": "Sifu Vision", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/43114/0xb168085d608d7ba4931a503d3424bc44ddb6b30d.png", + "aggregators": ["Socket", "Rubic", "Squid"], + "occurrences": 3 + }, + "0xa1144a6a1304bd9cbb16c800f7a867508726566e": { + "address": "0xa1144a6a1304bd9cbb16c800f7a867508726566e", + "symbol": "BAG", + "decimals": 18, + "name": "BAG", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/43114/0xa1144a6a1304bd9cbb16c800f7a867508726566e.png", + "aggregators": ["Socket", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x3405e88af759992937b84e58f2fe691ef0eea320": { + "address": "0x3405e88af759992937b84e58f2fe691ef0eea320", + "symbol": "SFRAX", + "decimals": 18, + "name": "Staked FRAX", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/43114/0x3405e88af759992937b84e58f2fe691ef0eea320.png", + "aggregators": ["Rubic", "Rango", "Sonarwatch"], + "occurrences": 3 + }, + "0x63682bdc5f875e9bf69e201550658492c9763f89": { + "address": "0x63682bdc5f875e9bf69e201550658492c9763f89", + "symbol": "BSGG", + "decimals": 18, + "name": "Betswap.gg", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/43114/0x63682bdc5f875e9bf69e201550658492c9763f89.png", + "aggregators": ["Rubic", "Rango", "SushiSwap"], + "occurrences": 3 + }, + "0xb9a98894ffbfa98c73a818b5b044e5b1c8666f56": { + "address": "0xb9a98894ffbfa98c73a818b5b044e5b1c8666f56", + "symbol": "AVIA", + "decimals": 18, + "name": "Kepler", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/43114/0xb9a98894ffbfa98c73a818b5b044e5b1c8666f56.png", + "aggregators": ["Rubic", "Rango", "Sonarwatch"], + "occurrences": 3 + }, + "0x087c440f251ff6cfe62b86dde1be558b95b4bb9b": { + "address": "0x087c440f251ff6cfe62b86dde1be558b95b4bb9b", + "symbol": "BOLD", + "decimals": 18, + "name": "Legacy BOLD", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/43114/0x087c440f251ff6cfe62b86dde1be558b95b4bb9b.png", + "aggregators": ["Rubic", "Rango", "Sonarwatch"], + "occurrences": 3 + }, + "0xf44fb887334fa17d2c5c0f970b5d320ab53ed557": { + "address": "0xf44fb887334fa17d2c5c0f970b5d320ab53ed557", + "symbol": "START", + "decimals": 18, + "name": "Starter.xyz", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/43114/0xf44fb887334fa17d2c5c0f970b5d320ab53ed557.png", + "aggregators": ["Rubic", "Rango", "Sonarwatch"], + "occurrences": 3 + }, + "0xc0367f9b1f84ca8de127226ac2a994ea4bf1e41b": { + "address": "0xc0367f9b1f84ca8de127226ac2a994ea4bf1e41b", + "symbol": "BRIDGE", + "decimals": 18, + "name": "Cross-Chain Bridge", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/43114/0xc0367f9b1f84ca8de127226ac2a994ea4bf1e41b.png", + "aggregators": ["Rubic", "Rango", "Sonarwatch"], + "occurrences": 3 + }, + "0xc92f165f5e20979576a7ba48f16eb45361c078a2": { + "address": "0xc92f165f5e20979576a7ba48f16eb45361c078a2", + "symbol": "EGS", + "decimals": 18, + "name": "EminGunSirer", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/43114/0xc92f165f5e20979576a7ba48f16eb45361c078a2.png", + "aggregators": ["Rubic", "Rango", "Sonarwatch"], + "occurrences": 3 + }, + "0xfda866cfece71f4c17b4a5e5f9a00ac08c72eadc": { + "address": "0xfda866cfece71f4c17b4a5e5f9a00ac08c72eadc", + "symbol": "PERA", + "decimals": 18, + "name": "Pera Finance", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/43114/0xfda866cfece71f4c17b4a5e5f9a00ac08c72eadc.png", + "aggregators": ["Rubic", "Rango", "Sonarwatch"], + "occurrences": 3 + }, + "0xdebb1d6a2196f2335ad51fbde7ca587205889360": { + "address": "0xdebb1d6a2196f2335ad51fbde7ca587205889360", + "symbol": "GEM", + "decimals": 18, + "name": "NFTmall", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/43114/0xdebb1d6a2196f2335ad51fbde7ca587205889360.png", + "aggregators": ["Rubic", "Rango", "Sonarwatch"], + "occurrences": 3 + }, + "0x99083d1b9c6744c71d0cf70b8965faca37684527": { + "address": "0x99083d1b9c6744c71d0cf70b8965faca37684527", + "symbol": "FRF", + "decimals": 18, + "name": "FRANCE REV FINANCE", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/43114/0x99083d1b9c6744c71d0cf70b8965faca37684527.png", + "aggregators": ["Rubic", "Rango", "Sonarwatch"], + "occurrences": 3 + }, + "0x8929e9dbd2785e3ba16175e596cdd61520fee0d1": { + "address": "0x8929e9dbd2785e3ba16175e596cdd61520fee0d1", + "symbol": "ALTD", + "decimals": 18, + "name": "Altitude", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/43114/0x8929e9dbd2785e3ba16175e596cdd61520fee0d1.png", + "aggregators": ["Rubic", "Rango", "Sonarwatch"], + "occurrences": 3 + }, + "0x1209810df5370f68b28e6832dc4ac80072e2d0b8": { + "address": "0x1209810df5370f68b28e6832dc4ac80072e2d0b8", + "symbol": "AVALOX", + "decimals": 18, + "name": "Avalox", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/43114/0x1209810df5370f68b28e6832dc4ac80072e2d0b8.png", + "aggregators": ["Rubic", "Rango", "Sonarwatch"], + "occurrences": 3 + }, + "0x2da8312e2c08b79104c6b18ba26bc7065abec704": { + "address": "0x2da8312e2c08b79104c6b18ba26bc7065abec704", + "symbol": "$BAWLS", + "decimals": 18, + "name": "Bawls onu", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/43114/0x2da8312e2c08b79104c6b18ba26bc7065abec704.png", + "aggregators": ["Rubic", "Rango", "Sonarwatch"], + "occurrences": 3 + }, + "0xde8232cf3cca014554e3b607e0fd554fbfdb20c6": { + "address": "0xde8232cf3cca014554e3b607e0fd554fbfdb20c6", + "symbol": "BEES", + "decimals": 18, + "name": "BEE Launchpad", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/43114/0xde8232cf3cca014554e3b607e0fd554fbfdb20c6.png", + "aggregators": ["Rubic", "Rango", "Sonarwatch"], + "occurrences": 3 + }, + "0x334efd1aa0caf4b9b206dd8b9002b7172fc805e6": { + "address": "0x334efd1aa0caf4b9b206dd8b9002b7172fc805e6", + "symbol": "BLOB", + "decimals": 18, + "name": "BLOB", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/43114/0x334efd1aa0caf4b9b206dd8b9002b7172fc805e6.png", + "aggregators": ["Rubic", "Rango", "Sonarwatch"], + "occurrences": 3 + }, + "0xf5f3216e9fed36f8ccf08d310fec6fbf7f06200f": { + "address": "0xf5f3216e9fed36f8ccf08d310fec6fbf7f06200f", + "symbol": "BOBS", + "decimals": 18, + "name": "BOBS", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/43114/0xf5f3216e9fed36f8ccf08d310fec6fbf7f06200f.png", + "aggregators": ["Rubic", "Rango", "Sonarwatch"], + "occurrences": 3 + }, + "0xb723783e0f9015c8e20b87f6cf7ae24df6479e62": { + "address": "0xb723783e0f9015c8e20b87f6cf7ae24df6479e62", + "symbol": "CCY", + "decimals": 18, + "name": "ChoccySwap", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/43114/0xb723783e0f9015c8e20b87f6cf7ae24df6479e62.png", + "aggregators": ["Rubic", "Rango", "Sonarwatch"], + "occurrences": 3 + }, + "0x5085434227ab73151fad2de546210cbc8663df96": { + "address": "0x5085434227ab73151fad2de546210cbc8663df96", + "symbol": "DBY", + "decimals": 18, + "name": "Metaderby", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/43114/0x5085434227ab73151fad2de546210cbc8663df96.png", + "aggregators": ["Rubic", "Rango", "Sonarwatch"], + "occurrences": 3 + }, + "0xe533b81297b820d2eb2cd837263926596328e8d2": { + "address": "0xe533b81297b820d2eb2cd837263926596328e8d2", + "symbol": "EMDX", + "decimals": 18, + "name": "EMDX", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/43114/0xe533b81297b820d2eb2cd837263926596328e8d2.png", + "aggregators": ["Rubic", "Rango", "Sonarwatch"], + "occurrences": 3 + }, + "0x5477e4e18b54cf1380242cb3d0edb03c79c242b9": { + "address": "0x5477e4e18b54cf1380242cb3d0edb03c79c242b9", + "symbol": "YETI", + "decimals": 18, + "name": "Yeti", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/43114/0x5477e4e18b54cf1380242cb3d0edb03c79c242b9.png", + "aggregators": ["Rubic", "Rango", "Sonarwatch"], + "occurrences": 3 + }, + "0x921f10d157d6dfff4ddcf72a12b53c2effefbb90": { + "address": "0x921f10d157d6dfff4ddcf72a12b53c2effefbb90", + "symbol": "LFG", + "decimals": 18, + "name": "Lotofomogrow", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/43114/0x921f10d157d6dfff4ddcf72a12b53c2effefbb90.png", + "aggregators": ["Rubic", "Rango", "Sonarwatch"], + "occurrences": 3 + }, + "0xed0d09ee0f32f7b5afae6f2d728189c5e355b52a": { + "address": "0xed0d09ee0f32f7b5afae6f2d728189c5e355b52a", + "symbol": "LIZARD", + "decimals": 18, + "name": "Lizard", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/43114/0xed0d09ee0f32f7b5afae6f2d728189c5e355b52a.png", + "aggregators": ["Rubic", "Rango", "Sonarwatch"], + "occurrences": 3 + }, + "0x53b22d356f34e977e48921e07381de0f8200b8e6": { + "address": "0x53b22d356f34e977e48921e07381de0f8200b8e6", + "symbol": "MAG", + "decimals": 18, + "name": "Monsterra MAG", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/43114/0x53b22d356f34e977e48921e07381de0f8200b8e6.png", + "aggregators": ["Rubic", "Rango", "Sonarwatch"], + "occurrences": 3 + }, + "0x771c01e1917b5ab5b791f7b96f0cd69e22f6dbcf": { + "address": "0x771c01e1917b5ab5b791f7b96f0cd69e22f6dbcf", + "symbol": "NNT", + "decimals": 18, + "name": "Nunu Spirits", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/43114/0x771c01e1917b5ab5b791f7b96f0cd69e22f6dbcf.png", + "aggregators": ["Rubic", "Rango", "Sonarwatch"], + "occurrences": 3 + }, + "0x94960952876e3ed6a7760b198354fcc5319a406a": { + "address": "0x94960952876e3ed6a7760b198354fcc5319a406a", + "symbol": "RBX", + "decimals": 18, + "name": "RBX", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/43114/0x94960952876e3ed6a7760b198354fcc5319a406a.png", + "aggregators": ["Rubic", "Rango", "Sonarwatch"], + "occurrences": 3 + }, + "0x5f018e73c185ab23647c82bd039e762813877f0e": { + "address": "0x5f018e73c185ab23647c82bd039e762813877f0e", + "symbol": "BUILD", + "decimals": 18, + "name": "BUILD", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/43114/0x5f018e73c185ab23647c82bd039e762813877f0e.png", + "aggregators": ["Rubic", "Rango", "Sonarwatch"], + "occurrences": 3 + }, + "0x2b1d36f5b61addaf7da7ebbd11b35fd8cfb0de31": { + "address": "0x2b1d36f5b61addaf7da7ebbd11b35fd8cfb0de31", + "symbol": "ITP", + "decimals": 18, + "name": "Interport Token", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/43114/0x2b1d36f5b61addaf7da7ebbd11b35fd8cfb0de31.png", + "aggregators": ["Rubic", "Rango", "Sonarwatch"], + "occurrences": 3 + }, + "0x65fda84473084ba2cca8452883e6ea3561092234": { + "address": "0x65fda84473084ba2cca8452883e6ea3561092234", + "symbol": "RKFI", + "decimals": 18, + "name": "Arkefi", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/43114/0x65fda84473084ba2cca8452883e6ea3561092234.png", + "aggregators": ["Rubic", "Rango", "Sonarwatch"], + "occurrences": 3 + }, + "0x1a3264f2e7b1cfc6220ec9348d33ccf02af7aaa4": { + "address": "0x1a3264f2e7b1cfc6220ec9348d33ccf02af7aaa4", + "symbol": "DYP", + "decimals": 18, + "name": "Dypius", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/43114/0x1a3264f2e7b1cfc6220ec9348d33ccf02af7aaa4.png", + "aggregators": ["Rubic", "Rango", "Sonarwatch"], + "occurrences": 3 + }, + "0xcc0966d8418d412c599a6421b760a847eb169a8c": { + "address": "0xcc0966d8418d412c599a6421b760a847eb169a8c", + "symbol": "SOLVBTC.BBN", + "decimals": 18, + "name": "Solv Protocol SolvBTC.BBN", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/43114/0xcc0966d8418d412c599a6421b760a847eb169a8c.png", + "aggregators": [ + "TraderJoe", + "LiFi", + "Socket", + "Rubic", + "Squid", + "Rango", + "Sonarwatch" + ], + "occurrences": 7 + }, + "0xdec933e2392ad908263e70a386fbf34e703ffe8f": { + "address": "0xdec933e2392ad908263e70a386fbf34e703ffe8f", + "symbol": "WBCOIN", + "decimals": 18, + "name": "Wrapped Backed Coinbase Global", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/43114/0xdec933e2392ad908263e70a386fbf34e703ffe8f.png", + "aggregators": [ + "CoinGecko", + "LiFi", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 6 + }, + "0x0555e30da8f98308edb960aa94c0db47230d2b9c": { + "address": "0x0555e30da8f98308edb960aa94c0db47230d2b9c", + "symbol": "WBTC", + "decimals": 8, + "name": "WBTC", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/43114/0x0555e30da8f98308edb960aa94c0db47230d2b9c.png", + "aggregators": ["TraderJoe", "Socket", "Rubic", "Squid", "Rango"], + "occurrences": 5 + }, + "0x59d9356e565ab3a36dd77763fc0d87feaf85508c": { + "address": "0x59d9356e565ab3a36dd77763fc0d87feaf85508c", + "symbol": "USDM", + "decimals": 18, + "name": "USDM", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/43114/0x59d9356e565ab3a36dd77763fc0d87feaf85508c.png", + "aggregators": ["CoinGecko", "1inch", "LiFi", "Rubic", "Rango"], + "occurrences": 5 + }, + "0x580d5e1399157fd0d58218b7a514b60974f2ab01": { + "address": "0x580d5e1399157fd0d58218b7a514b60974f2ab01", + "symbol": "YUTY", + "decimals": 18, + "name": "YUTY", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/43114/0x580d5e1399157fd0d58218b7a514b60974f2ab01.png", + "aggregators": ["TraderJoe", "LiFi", "Rubic", "Squid", "Rango"], + "occurrences": 5 + }, + "0x59933c571d200dc6a7fd1cda22495db442082e34": { + "address": "0x59933c571d200dc6a7fd1cda22495db442082e34", + "symbol": "WAAVAUSDT", + "decimals": 6, + "name": "Wrapped Aave Avalanche USDT", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/43114/0x59933c571d200dc6a7fd1cda22495db442082e34.png", + "aggregators": ["CoinGecko", "LiFi", "Rubic", "Rango"], + "occurrences": 4 + }, + "0x634608ed64c61ca9e741f8095193c0bfa0fa19cc": { + "address": "0x634608ed64c61ca9e741f8095193c0bfa0fa19cc", + "symbol": "SOL", + "decimals": 18, + "name": "SOL", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/43114/0x634608ed64c61ca9e741f8095193c0bfa0fa19cc.png", + "aggregators": ["TraderJoe", "Rubic", "Squid", "Rango"], + "occurrences": 4 + }, + "0xe1bfc96d95badcb10ff013cb0c9c6c737ca07009": { + "address": "0xe1bfc96d95badcb10ff013cb0c9c6c737ca07009", + "symbol": "WAAVAUSDC", + "decimals": 6, + "name": "Wrapped Aave Avalanche USDC", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/43114/0xe1bfc96d95badcb10ff013cb0c9c6c737ca07009.png", + "aggregators": ["CoinGecko", "LiFi", "Rubic", "Rango"], + "occurrences": 4 + }, + "0xc139aa91399600f6b72975ac3317b6d49cb30a69": { + "address": "0xc139aa91399600f6b72975ac3317b6d49cb30a69", + "symbol": "AMI", + "decimals": 18, + "name": "AVAX Meme Index", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/43114/0xc139aa91399600f6b72975ac3317b6d49cb30a69.png", + "aggregators": ["TraderJoe", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0x7d0394f8898fba73836bf12bd606228887705895": { + "address": "0x7d0394f8898fba73836bf12bd606228887705895", + "symbol": "WAAVASAVAX", + "decimals": 18, + "name": "Wrapped Aave Avalanche SAVAX", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/43114/0x7d0394f8898fba73836bf12bd606228887705895.png", + "aggregators": ["CoinGecko", "LiFi", "Rubic", "Rango"], + "occurrences": 4 + }, + "0xccf580e697b8bba73748ba881c1872dd4fb01cda": { + "address": "0xccf580e697b8bba73748ba881c1872dd4fb01cda", + "symbol": "LUEYGI", + "decimals": 8, + "name": "Lueygi", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/43114/0xccf580e697b8bba73748ba881c1872dd4fb01cda.png", + "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0xd7da0de6ef4f51d6206bf2a35fcd2030f54c3f7b": { + "address": "0xd7da0de6ef4f51d6206bf2a35fcd2030f54c3f7b", + "symbol": "WAAVAWAVAX", + "decimals": 18, + "name": "Wrapped Aave Avalanche WAVAX", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/43114/0xd7da0de6ef4f51d6206bf2a35fcd2030f54c3f7b.png", + "aggregators": ["CoinGecko", "LiFi", "Rubic", "Rango"], + "occurrences": 4 + }, + "0x87bbfc9dcb66caa8ce7582a3f17b60a25cd8a248": { + "address": "0x87bbfc9dcb66caa8ce7582a3f17b60a25cd8a248", + "symbol": "$TD", + "decimals": 9, + "name": "The Big Red", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/43114/0x87bbfc9dcb66caa8ce7582a3f17b60a25cd8a248.png", + "aggregators": ["TraderJoe", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0x45cf39eeb437fa95bb9b52c0105254a6bd25d01e": { + "address": "0x45cf39eeb437fa95bb9b52c0105254a6bd25d01e", + "symbol": "WAAVAAUSD", + "decimals": 6, + "name": "Wrapped Aave Avalanche AUSD", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/43114/0x45cf39eeb437fa95bb9b52c0105254a6bd25d01e.png", + "aggregators": ["CoinGecko", "LiFi", "Rubic", "Rango"], + "occurrences": 4 + }, + "0x2d324fd1ca86d90f61b0965d2db2f86d22ea4b74": { + "address": "0x2d324fd1ca86d90f61b0965d2db2f86d22ea4b74", + "symbol": "WAAVABTC.B", + "decimals": 8, + "name": "Wrapped Aave Avalanche BTC.b", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/43114/0x2d324fd1ca86d90f61b0965d2db2f86d22ea4b74.png", + "aggregators": ["CoinGecko", "LiFi", "Rubic", "Rango"], + "occurrences": 4 + }, + "0x25be3edd820a8fce6b8e211f40c5b82ba176994c": { + "address": "0x25be3edd820a8fce6b8e211f40c5b82ba176994c", + "symbol": "IBTC", + "decimals": 8, + "name": "iBTC Network", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/43114/0x25be3edd820a8fce6b8e211f40c5b82ba176994c.png", + "aggregators": ["TraderJoe", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0x53fc82f14f009009b440a706e31c9021e1196a2f": { + "address": "0x53fc82f14f009009b440a706e31c9021e1196a2f", + "symbol": "BUIDL", + "decimals": 6, + "name": "BlackRock USD Institutional Digital Liquidity Fund", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/43114/0x53fc82f14f009009b440a706e31c9021e1196a2f.png", + "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0x7e8101a1c322d394b3961498c7d40d2dfa94c392": { + "address": "0x7e8101a1c322d394b3961498c7d40d2dfa94c392", + "symbol": "WBNVDA", + "decimals": 18, + "name": "Wrapped bNVDA", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/43114/0x7e8101a1c322d394b3961498c7d40d2dfa94c392.png", + "aggregators": ["CoinGecko", "LiFi", "Rubic", "Sonarwatch"], + "occurrences": 4 + }, + "0x1a4f71b0ff3c22540887bcf83b50054a213c673d": { + "address": "0x1a4f71b0ff3c22540887bcf83b50054a213c673d", + "symbol": "WBMSTR", + "decimals": 18, + "name": "Wrapped bMSTR", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/43114/0x1a4f71b0ff3c22540887bcf83b50054a213c673d.png", + "aggregators": ["CoinGecko", "LiFi", "Rubic", "Sonarwatch"], + "occurrences": 4 + }, + "0x80eede496655fb9047dd39d9f418d5483ed600df": { + "address": "0x80eede496655fb9047dd39d9f418d5483ed600df", + "symbol": "FRXUSD", + "decimals": 18, + "name": "FRXUSD", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/43114/0x80eede496655fb9047dd39d9f418d5483ed600df.png", + "aggregators": ["CoinGecko", "LiFi", "Rubic", "Rango"], + "occurrences": 4 + }, + "0x1f82284c1658ad71c576f7230e6c2dee7901c1fa": { + "address": "0x1f82284c1658ad71c576f7230e6c2dee7901c1fa", + "symbol": "WBTSLA", + "decimals": 18, + "name": "Wrapped bTSLA", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/43114/0x1f82284c1658ad71c576f7230e6c2dee7901c1fa.png", + "aggregators": ["CoinGecko", "LiFi", "Rubic", "Sonarwatch"], + "occurrences": 4 + }, + "0xf0ff231e3f1a50f83136717f287adab862f89431": { + "address": "0xf0ff231e3f1a50f83136717f287adab862f89431", + "symbol": "USDTSO", + "decimals": 6, + "name": "Tether USD (Portal from Solana)", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/43114/0xf0ff231e3f1a50f83136717f287adab862f89431.png", + "aggregators": ["CoinGecko", "TrustWallet", "Rubic", "Rango"], + "occurrences": 4 + }, + "0xc0c5aa69dbe4d6dddfbc89c0957686ec60f24389": { + "address": "0xc0c5aa69dbe4d6dddfbc89c0957686ec60f24389", + "symbol": "XEN", + "decimals": 18, + "name": "XEN Crypto", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/43114/0xc0c5aa69dbe4d6dddfbc89c0957686ec60f24389.png", + "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0x59234b44214d88c57b7c54a6d2633334d95c5161": { + "address": "0x59234b44214d88c57b7c54a6d2633334d95c5161", + "symbol": "NUMI", + "decimals": 18, + "name": "NUMINE Token", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/43114/0x59234b44214d88c57b7c54a6d2633334d95c5161.png", + "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0x88a0f8318bf0ce19e999f1802bf5b12dc8d7cdfe": { + "address": "0x88a0f8318bf0ce19e999f1802bf5b12dc8d7cdfe", + "symbol": "NSFW", + "decimals": 18, + "name": "Pleasure Coin", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/43114/0x88a0f8318bf0ce19e999f1802bf5b12dc8d7cdfe.png", + "aggregators": ["LiFi", "Socket", "Rubic", "SushiSwap"], + "occurrences": 4 + }, + "0x39cf1bd5f15fb22ec3d9ff86b0727afc203427cc": { + "address": "0x39cf1bd5f15fb22ec3d9ff86b0727afc203427cc", + "symbol": "OLDSUSHI", + "decimals": 18, + "name": "Old SushiToken", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/43114/0x39cf1bd5f15fb22ec3d9ff86b0727afc203427cc.png", + "aggregators": ["LiFi", "Rubic", "Rango", "SushiSwap"], + "occurrences": 4 + }, + "0x22fa75d747320ae5d14cc625f696487c83243cd3": { + "address": "0x22fa75d747320ae5d14cc625f696487c83243cd3", + "symbol": "AXLKNC", + "decimals": 18, + "name": "Axelar Wrapped KNC", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/43114/0x22fa75d747320ae5d14cc625f696487c83243cd3.png", + "aggregators": ["LiFi", "Rubic", "Squid", "Rango"], + "occurrences": 4 + }, + "0xa9ef87eb3fdc2f08ef5ee401326f7331d4d312cf": { + "address": "0xa9ef87eb3fdc2f08ef5ee401326f7331d4d312cf", + "symbol": "IXAD", + "decimals": 17, + "name": "Index Avalanche DeFi", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/43114/0xa9ef87eb3fdc2f08ef5ee401326f7331d4d312cf.png", + "aggregators": ["CoinGecko", "Rubic", "Sonarwatch"], + "occurrences": 3 + }, + "0xcc18b41a0f63c67f17f23388c848aec67b583422": { + "address": "0xcc18b41a0f63c67f17f23388c848aec67b583422", + "symbol": "XPUSD", + "decimals": 6, + "name": "Gaming XP USD", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/43114/0xcc18b41a0f63c67f17f23388c848aec67b583422.png", + "aggregators": ["CoinGecko", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x7f4546ef315efc65336187fe3765ea779ac90183": { + "address": "0x7f4546ef315efc65336187fe3765ea779ac90183", + "symbol": "VBILL", + "decimals": 6, + "name": "VBILL", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/43114/0x7f4546ef315efc65336187fe3765ea779ac90183.png", + "aggregators": ["CoinGecko", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x58f93d6b1ef2f44ec379cb975657c132cbed3b6b": { + "address": "0x58f93d6b1ef2f44ec379cb975657c132cbed3b6b", + "symbol": "JAAA", + "decimals": 6, + "name": "JAAA", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/43114/0x58f93d6b1ef2f44ec379cb975657c132cbed3b6b.png", + "aggregators": ["CoinGecko", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x5c09a9ce08c4b332ef1cc5f7cadb1158c32767ce": { + "address": "0x5c09a9ce08c4b332ef1cc5f7cadb1158c32767ce", + "symbol": "FBOMB", + "decimals": 18, + "name": "FBOMB", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/43114/0x5c09a9ce08c4b332ef1cc5f7cadb1158c32767ce.png", + "aggregators": ["PangolinDex", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x1263fea931b86f3e8ce8afbf29f66631b7be9347": { + "address": "0x1263fea931b86f3e8ce8afbf29f66631b7be9347", + "symbol": "BNPL", + "decimals": 18, + "name": "BNPL Pay [OLD]", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/43114/0x1263fea931b86f3e8ce8afbf29f66631b7be9347.png", + "aggregators": ["CoinGecko", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x193f4a4a6ea24102f49b931deeeb931f6e32405d": { + "address": "0x193f4a4a6ea24102f49b931deeeb931f6e32405d", + "symbol": "TLOS", + "decimals": 18, + "name": "Telos", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/43114/0x193f4a4a6ea24102f49b931deeeb931f6e32405d.png", + "aggregators": ["CoinGecko", "LiFi", "Sonarwatch"], + "occurrences": 3 + }, + "0x841aef70237a88027ccb2d15c1bbaf88a669674a": { + "address": "0x841aef70237a88027ccb2d15c1bbaf88a669674a", + "symbol": "XSPACE", + "decimals": 18, + "name": "xSpace Token", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/43114/0x841aef70237a88027ccb2d15c1bbaf88a669674a.png", + "aggregators": ["CoinGecko", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x4156f18bf7c1ef04248632c66aa119de152d8f2e": { + "address": "0x4156f18bf7c1ef04248632c66aa119de152d8f2e", + "symbol": "ZEUS", + "decimals": 18, + "name": "Zeus Node Finance", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/43114/0x4156f18bf7c1ef04248632c66aa119de152d8f2e.png", + "aggregators": ["PangolinDex", "LiFi", "Rango"], + "occurrences": 3 + }, + "0x250bdca7d1845cd543bb55e7d82dca24d48e9f0f": { + "address": "0x250bdca7d1845cd543bb55e7d82dca24d48e9f0f", + "symbol": "DCAR", + "decimals": 18, + "name": "Dragon Crypto Argenti", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/43114/0x250bdca7d1845cd543bb55e7d82dca24d48e9f0f.png", + "aggregators": ["TraderJoe", "Rubic", "Rango"], + "occurrences": 3 + }, + "0xa56f9a54880afbc30cf29bb66d2d9adcdcaeadd6": { + "address": "0xa56f9a54880afbc30cf29bb66d2d9adcdcaeadd6", + "symbol": "QI", + "decimals": 18, + "name": "Qi Dao Protocol", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/43114/0xa56f9a54880afbc30cf29bb66d2d9adcdcaeadd6.png", + "aggregators": ["TraderJoe", "Socket", "Rubic"], + "occurrences": 3 + }, + "0x3b55e45fd6bd7d4724f5c47e0d1bcaedd059263e": { + "address": "0x3b55e45fd6bd7d4724f5c47e0d1bcaedd059263e", + "symbol": "MAI", + "decimals": 18, + "name": "Mai Stablecoin", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/43114/0x3b55e45fd6bd7d4724f5c47e0d1bcaedd059263e.png", + "aggregators": ["LiFi", "Rubic", "SushiSwap"], + "occurrences": 3 + }, + "0x5684a087c739a2e845f4aaaabf4fbd261edc2be8": { + "address": "0x5684a087c739a2e845f4aaaabf4fbd261edc2be8", + "symbol": "LF", + "decimals": 9, + "name": "LF", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/43114/0x5684a087c739a2e845f4aaaabf4fbd261edc2be8.png", + "aggregators": ["LiFi", "Rubic", "Rango"], + "occurrences": 3 + }, + "0xc4b06f17eccb2215a5dbf042c672101fc20daf55": { + "address": "0xc4b06f17eccb2215a5dbf042c672101fc20daf55", + "symbol": "FLUX", + "decimals": 8, + "name": "Flux", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/43114/0xc4b06f17eccb2215a5dbf042c672101fc20daf55.png", + "aggregators": ["LiFi", "Socket", "Rubic"], + "occurrences": 3 + }, + "0xe684f692bdf5b3b0db7e8e31a276de8a2e9f0025": { + "address": "0xe684f692bdf5b3b0db7e8e31a276de8a2e9f0025", + "symbol": "RBTC.B", + "decimals": 18, + "name": "RBTC.B", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/43114/0xe684f692bdf5b3b0db7e8e31a276de8a2e9f0025.png", + "aggregators": ["LiFi", "Rubic", "Rango"], + "occurrences": 3 + }, + "0xa5e2cfe48fe8c4abd682ca2b10fcaafe34b8774c": { + "address": "0xa5e2cfe48fe8c4abd682ca2b10fcaafe34b8774c", + "symbol": "PSHARE", + "decimals": 18, + "name": "PSHARE", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/43114/0xa5e2cfe48fe8c4abd682ca2b10fcaafe34b8774c.png", + "aggregators": ["LiFi", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x8cd309e14575203535ef120b5b0ab4dded0c2073": { + "address": "0x8cd309e14575203535ef120b5b0ab4dded0c2073", + "symbol": "WSOHM", + "decimals": 18, + "name": "WSOHM", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/43114/0x8cd309e14575203535ef120b5b0ab4dded0c2073.png", + "aggregators": ["LiFi", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x77fbb8760c9be73205296ed1ef8aa5f719a0407d": { + "address": "0x77fbb8760c9be73205296ed1ef8aa5f719a0407d", + "symbol": "PENGUIN", + "decimals": 18, + "name": "Penguin404", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/43114/0x77fbb8760c9be73205296ed1ef8aa5f719a0407d.png", + "aggregators": ["LiFi", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x42a62eb3fd2a05ed499117f128de8a3192b49ebb": { + "address": "0x42a62eb3fd2a05ed499117f128de8a3192b49ebb", + "symbol": "AXLETH", + "decimals": 18, + "name": "Axelar Wrapped ETH", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/43114/0x42a62eb3fd2a05ed499117f128de8a3192b49ebb.png", + "aggregators": ["LiFi", "Squid", "SushiSwap"], + "occurrences": 3 + }, + "0xa56b1b9f4e5a1a1e0868f5fd4352ce7cdf0c2a4f": { + "address": "0xa56b1b9f4e5a1a1e0868f5fd4352ce7cdf0c2a4f", + "symbol": "MATIC", + "decimals": 19, + "name": "Matic", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/43114/0xa56b1b9f4e5a1a1e0868f5fd4352ce7cdf0c2a4f.png", + "aggregators": ["LiFi", "Rubic", "SushiSwap"], + "occurrences": 3 + }, + "0x6145e8a910ae937913426bf32de2b26039728acf": { + "address": "0x6145e8a910ae937913426bf32de2b26039728acf", + "symbol": "USDCBS", + "decimals": 18, + "name": "USD Coin (Portal from BSC)", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/43114/0x6145e8a910ae937913426bf32de2b26039728acf.png", + "aggregators": ["TrustWallet", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x543672e9cbec728cbba9c3ccd99ed80ac3607fa8": { + "address": "0x543672e9cbec728cbba9c3ccd99ed80ac3607fa8", + "symbol": "USDCPO", + "decimals": 6, + "name": "USD Coin (PoS) (Portal from Polygon)", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/43114/0x543672e9cbec728cbba9c3ccd99ed80ac3607fa8.png", + "aggregators": ["TrustWallet", "Rubic", "Rango"], + "occurrences": 3 + }, + "0xa41a6c7e25ddd361343e8cb8cfa579bbe5eedb7a": { + "address": "0xa41a6c7e25ddd361343e8cb8cfa579bbe5eedb7a", + "symbol": "BUSDBS", + "decimals": 18, + "name": "Binance USD (Portal from BSC)", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/43114/0xa41a6c7e25ddd361343e8cb8cfa579bbe5eedb7a.png", + "aggregators": ["TrustWallet", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x8ce2dee54bb9921a2ae0a63dbb2df8ed88b91dd9": { + "address": "0x8ce2dee54bb9921a2ae0a63dbb2df8ed88b91dd9", + "symbol": "AAVE", + "decimals": 18, + "name": "AAVE", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/43114/0x8ce2dee54bb9921a2ae0a63dbb2df8ed88b91dd9.png", + "aggregators": ["Socket", "Rubic", "Rango"], + "occurrences": 3 + }, + "0xefd6aa06eb95e0ab23de9ac0977d870888b89a71": { + "address": "0xefd6aa06eb95e0ab23de9ac0977d870888b89a71", + "symbol": "MICRO", + "decimals": 18, + "name": "Micro Coq", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/43114/0xefd6aa06eb95e0ab23de9ac0977d870888b89a71.png", + "aggregators": ["Socket", "Rubic", "Rango"], + "occurrences": 3 + }, + "0xfa7664f2385743b73369bdc9427cdb2a942af809": { + "address": "0xfa7664f2385743b73369bdc9427cdb2a942af809", + "symbol": "ARC", + "decimals": 18, + "name": "Arcade", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/43114/0xfa7664f2385743b73369bdc9427cdb2a942af809.png", + "aggregators": ["Rubic", "Rango", "Sonarwatch"], + "occurrences": 3 + }, + "0x22897cf0da31e1f118649d9f6ad1809cabd84948": { + "address": "0x22897cf0da31e1f118649d9f6ad1809cabd84948", + "symbol": "BCOQ", + "decimals": 9, + "name": "Baby Coq Inu", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/43114/0x22897cf0da31e1f118649d9f6ad1809cabd84948.png", + "aggregators": ["Rubic", "Rango", "Sonarwatch"], + "occurrences": 3 + }, + "0xc09a033927f9fd558c92cf7aeabe34b71ce4b31e": { + "address": "0xc09a033927f9fd558c92cf7aeabe34b71ce4b31e", + "symbol": "PLYR", + "decimals": 18, + "name": "PLYR L1", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/43114/0xc09a033927f9fd558c92cf7aeabe34b71ce4b31e.png", + "aggregators": ["Rubic", "Rango", "Sonarwatch"], + "occurrences": 3 + } + }, + "timestamp": 1779126362354 + }, + "0xaa36a7": { + "data": {}, + "timestamp": 1771890334759 + }, + "0xe708": { + "data": { + "0xe5d7c2a44ffddf6b295a15c148167daaaf5cf34f": { + "address": "0xe5d7c2a44ffddf6b295a15c148167daaaf5cf34f", + "symbol": "WETH", + "decimals": 18, + "name": "Wrapped Ether", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/59144/0xe5d7c2a44ffddf6b295a15c148167daaaf5cf34f.png", + "aggregators": [ + "CoinGecko", + "1inch", + "LiFi", + "Socket", + "Rubic", + "Squid", + "Rango", + "Sonarwatch", + "SushiSwap" + ], + "occurrences": 9 + }, + "0x176211869ca2b568f2a7d4ee941e073a821ee1ff": { + "address": "0x176211869ca2b568f2a7d4ee941e073a821ee1ff", + "symbol": "USDC", + "decimals": 6, + "name": "USDC", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/59144/0x176211869ca2b568f2a7d4ee941e073a821ee1ff.png", + "aggregators": [ + "Metamask", + "1inch", + "LiFi", + "Socket", + "Rubic", + "Squid", + "Rango", + "Sonarwatch", + "SushiSwap" + ], + "occurrences": 9 + }, + "0x93f4d0ab6a8b4271f4a28db399b5e30612d21116": { + "address": "0x93f4d0ab6a8b4271f4a28db399b5e30612d21116", + "symbol": "STONE", + "decimals": 18, + "name": "StakeStone ETH", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/59144/0x93f4d0ab6a8b4271f4a28db399b5e30612d21116.png", + "aggregators": [ + "CoinGecko", + "1inch", + "LiFi", + "Socket", + "Rubic", + "Squid", + "Rango", + "Sonarwatch" + ], + "occurrences": 8 + }, + "0xa219439258ca9da29e9cc4ce5596924745e12b93": { + "address": "0xa219439258ca9da29e9cc4ce5596924745e12b93", + "symbol": "USDT", + "decimals": 6, + "name": "Bridged Tether (Linea)", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/59144/0xa219439258ca9da29e9cc4ce5596924745e12b93.png", + "aggregators": [ + "CoinGecko", + "1inch", + "LiFi", + "Socket", + "Rubic", + "Squid", + "Rango", + "Sonarwatch" + ], + "occurrences": 8 + }, + "0xb5bedd42000b71fdde22d3ee8a79bd49a568fc8f": { + "address": "0xb5bedd42000b71fdde22d3ee8a79bd49a568fc8f", + "symbol": "WSTETH", + "decimals": 18, + "name": "Wrapped stETH", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/59144/0xb5bedd42000b71fdde22d3ee8a79bd49a568fc8f.png", + "aggregators": [ + "CoinGecko", + "1inch", + "LiFi", + "Socket", + "Rubic", + "Squid", + "Rango", + "Sonarwatch" + ], + "occurrences": 8 + }, + "0x1789e0043623282d5dcc7f213d703c6d8bafbb04": { + "address": "0x1789e0043623282d5dcc7f213d703c6d8bafbb04", + "symbol": "LINEA", + "decimals": 18, + "name": "Linea", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/59144/0x1789e0043623282d5dcc7f213d703c6d8bafbb04.png", + "aggregators": [ + "Metamask", + "1inch", + "LiFi", + "Socket", + "Rubic", + "Squid", + "Rango" + ], + "occurrences": 7 + }, + "0x3ff47c5bf409c86533fe1f4907524d304062428d": { + "address": "0x3ff47c5bf409c86533fe1f4907524d304062428d", + "symbol": "EURE", + "decimals": 18, + "name": "Monerium EUR emoney", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/59144/0x3ff47c5bf409c86533fe1f4907524d304062428d.png", + "aggregators": [ + "CoinGecko", + "1inch", + "LiFi", + "Rubic", + "Squid", + "Rango", + "Sonarwatch" + ], + "occurrences": 7 + }, + "0x4af15ec2a0bd43db75dd04e62faa3b8ef36b00d5": { + "address": "0x4af15ec2a0bd43db75dd04e62faa3b8ef36b00d5", + "symbol": "DAI", + "decimals": 18, + "name": "Bridged Dai Stablecoin (Linea)", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/59144/0x4af15ec2a0bd43db75dd04e62faa3b8ef36b00d5.png", + "aggregators": [ + "CoinGecko", + "1inch", + "LiFi", + "Socket", + "Rubic", + "Squid", + "Rango", + "Sonarwatch" + ], + "occurrences": 8 + }, + "0x3aab2285ddcddad8edf438c1bab47e1a9d05a9b4": { + "address": "0x3aab2285ddcddad8edf438c1bab47e1a9d05a9b4", + "symbol": "WBTC", + "decimals": 8, + "name": "Linea Bridged WBTC (Linea)", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/59144/0x3aab2285ddcddad8edf438c1bab47e1a9d05a9b4.png", + "aggregators": [ + "CoinGecko", + "1inch", + "LiFi", + "Socket", + "Rubic", + "Squid", + "Rango", + "Sonarwatch" + ], + "occurrences": 8 + }, + "0x2416092f143378750bb29b79ed961ab195cceea5": { + "address": "0x2416092f143378750bb29b79ed961ab195cceea5", + "symbol": "EZETH", + "decimals": 18, + "name": "Everclear Bridged ezETH (Linea)", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/59144/0x2416092f143378750bb29b79ed961ab195cceea5.png", + "aggregators": [ + "CoinGecko", + "1inch", + "LiFi", + "Socket", + "Rubic", + "Squid", + "Rango", + "Sonarwatch" + ], + "occurrences": 8 + }, + "0x1bf74c010e6320bab11e2e5a532b5ac15e0b8aa6": { + "address": "0x1bf74c010e6320bab11e2e5a532b5ac15e0b8aa6", + "symbol": "WEETH", + "decimals": 18, + "name": "ether.fi Bridged weETH (Linea)", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/59144/0x1bf74c010e6320bab11e2e5a532b5ac15e0b8aa6.png", + "aggregators": [ + "CoinGecko", + "1inch", + "LiFi", + "Socket", + "Rubic", + "Squid", + "Rango", + "Sonarwatch" + ], + "occurrences": 8 + }, + "0x5fbdf89403270a1846f5ae7d113a989f850d1566": { + "address": "0x5fbdf89403270a1846f5ae7d113a989f850d1566", + "symbol": "FOXY", + "decimals": 18, + "name": "Foxy", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/59144/0x5fbdf89403270a1846f5ae7d113a989f850d1566.png", + "aggregators": [ + "CoinGecko", + "1inch", + "LiFi", + "Rubic", + "Squid", + "Rango", + "Sonarwatch" + ], + "occurrences": 7 + }, + "0x1a51b19ce03dbe0cb44c1528e34a7edd7771e9af": { + "address": "0x1a51b19ce03dbe0cb44c1528e34a7edd7771e9af", + "symbol": "LYNX", + "decimals": 18, + "name": "Lynex", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/59144/0x1a51b19ce03dbe0cb44c1528e34a7edd7771e9af.png", + "aggregators": [ + "CoinGecko", + "1inch", + "LiFi", + "Rubic", + "Squid", + "Rango", + "Sonarwatch" + ], + "occurrences": 7 + }, + "0x78354f8dccb269a615a7e0a24f9b0718fdc3c7a7": { + "address": "0x78354f8dccb269a615a7e0a24f9b0718fdc3c7a7", + "symbol": "ZERO", + "decimals": 18, + "name": "ZeroLend", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/59144/0x78354f8dccb269a615a7e0a24f9b0718fdc3c7a7.png", + "aggregators": [ + "CoinGecko", + "1inch", + "Socket", + "Rubic", + "Squid", + "Rango", + "Sonarwatch" + ], + "occurrences": 7 + }, + "0xd2671165570f41bbb3b0097893300b6eb6101e6c": { + "address": "0xd2671165570f41bbb3b0097893300b6eb6101e6c", + "symbol": "WRSETH", + "decimals": 18, + "name": "Wrapped rsETH", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/59144/0xd2671165570f41bbb3b0097893300b6eb6101e6c.png", + "aggregators": [ + "CoinGecko", + "1inch", + "LiFi", + "Rubic", + "Squid", + "Rango", + "Sonarwatch" + ], + "occurrences": 7 + }, + "0xaca92e438df0b2401ff60da7e4337b687a2435da": { + "address": "0xaca92e438df0b2401ff60da7e4337b687a2435da", + "symbol": "MUSD", + "decimals": 6, + "name": "MetaMask USD", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/59144/0xaca92e438df0b2401ff60da7e4337b687a2435da.png", + "aggregators": [ + "Metamask", + "LiFi", + "Socket", + "Rubic", + "Squid", + "Rango" + ], + "occurrences": 6 + }, + "0xb79dd08ea68a908a97220c76d19a6aa9cbde4376": { + "address": "0xb79dd08ea68a908a97220c76d19a6aa9cbde4376", + "symbol": "USD+", + "decimals": 6, + "name": "USD+", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/59144/0xb79dd08ea68a908a97220c76d19a6aa9cbde4376.png", + "aggregators": ["LineaTeam", "LiFi", "Rubic", "Squid", "Rango"], + "occurrences": 5 + }, + "0x1e1f509963a6d33e169d9497b11c7dbfe73b7f13": { + "address": "0x1e1f509963a6d33e169d9497b11c7dbfe73b7f13", + "symbol": "USDT+", + "decimals": 6, + "name": "Overnight.fi USDT+", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/59144/0x1e1f509963a6d33e169d9497b11c7dbfe73b7f13.png", + "aggregators": [ + "CoinGecko", + "Rubic", + "Squid", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0xaaaac83751090c6ea42379626435f805ddf54dc8": { + "address": "0xaaaac83751090c6ea42379626435f805ddf54dc8", + "symbol": "NILE", + "decimals": 18, + "name": "Nile", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/59144/0xaaaac83751090c6ea42379626435f805ddf54dc8.png", + "aggregators": [ + "CoinGecko", + "1inch", + "LiFi", + "Rubic", + "Squid", + "Rango", + "Sonarwatch" + ], + "occurrences": 7 + }, + "0x43e8809ea748eff3204ee01f08872f063e44065f": { + "address": "0x43e8809ea748eff3204ee01f08872f063e44065f", + "symbol": "MENDI", + "decimals": 18, + "name": "Mendi Finance", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/59144/0x43e8809ea748eff3204ee01f08872f063e44065f.png", + "aggregators": [ + "CoinGecko", + "1inch", + "LiFi", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 6 + }, + "0x8c56017b172226fe024dea197748fc1eaccc82b1": { + "address": "0x8c56017b172226fe024dea197748fc1eaccc82b1", + "symbol": "XFIT", + "decimals": 18, + "name": "XFai", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/59144/0x8c56017b172226fe024dea197748fc1eaccc82b1.png", + "aggregators": [ + "CoinGecko", + "LiFi", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 6 + }, + "0xefd81eec32b9a8222d1842ec3d99c7532c31e348": { + "address": "0xefd81eec32b9a8222d1842ec3d99c7532c31e348", + "symbol": "REX", + "decimals": 18, + "name": "REX", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/59144/0xefd81eec32b9a8222d1842ec3d99c7532c31e348.png", + "aggregators": ["CoinGecko", "LiFi", "Rubic", "Squid", "Rango"], + "occurrences": 5 + }, + "0xe4eeb461ad1e4ef8b8ef71a33694ccd84af051c4": { + "address": "0xe4eeb461ad1e4ef8b8ef71a33694ccd84af051c4", + "symbol": "REX33", + "decimals": 18, + "name": "REX33", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/59144/0xe4eeb461ad1e4ef8b8ef71a33694ccd84af051c4.png", + "aggregators": ["CoinGecko", "LiFi", "Rubic", "Squid", "Rango"], + "occurrences": 5 + }, + "0x0d1e753a25ebda689453309112904807625befbe": { + "address": "0x0d1e753a25ebda689453309112904807625befbe", + "symbol": "CAKE", + "decimals": 18, + "name": "PancakeSwap", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/59144/0x0d1e753a25ebda689453309112904807625befbe.png", + "aggregators": [ + "CoinGecko", + "1inch", + "LiFi", + "Socket", + "Rubic", + "Squid", + "Rango", + "Sonarwatch" + ], + "occurrences": 8 + }, + "0xf3b001d64c656e30a62fbaaca003b1336b4ce12a": { + "address": "0xf3b001d64c656e30a62fbaaca003b1336b4ce12a", + "symbol": "MIMATIC", + "decimals": 18, + "name": "MAI (Linea)", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/59144/0xf3b001d64c656e30a62fbaaca003b1336b4ce12a.png", + "aggregators": [ + "LineaTeam", + "LiFi", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 6 + }, + "0x0018d96c579121a94307249d47f053e2d687b5e7": { + "address": "0x0018d96c579121a94307249d47f053e2d687b5e7", + "symbol": "MVX", + "decimals": 18, + "name": "Metavault Trade", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/59144/0x0018d96c579121a94307249d47f053e2d687b5e7.png", + "aggregators": [ + "CoinGecko", + "LiFi", + "Rubic", + "Squid", + "Rango", + "Sonarwatch" + ], + "occurrences": 6 + }, + "0x60d01ec2d5e98ac51c8b4cf84dfcce98d527c747": { + "address": "0x60d01ec2d5e98ac51c8b4cf84dfcce98d527c747", + "symbol": "IZI", + "decimals": 18, + "name": "iZUMi Finance", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/59144/0x60d01ec2d5e98ac51c8b4cf84dfcce98d527c747.png", + "aggregators": [ + "CoinGecko", + "LiFi", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 6 + }, + "0x3d4b2132ed4ea0aa93903713a4de9f98e625a5c7": { + "address": "0x3d4b2132ed4ea0aa93903713a4de9f98e625a5c7", + "symbol": "A3A", + "decimals": 18, + "name": "3A", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/59144/0x3d4b2132ed4ea0aa93903713a4de9f98e625a5c7.png", + "aggregators": [ + "CoinGecko", + "Rubic", + "Squid", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x894134a25a5fac1c2c26f1d8fbf05111a3cb9487": { + "address": "0x894134a25a5fac1c2c26f1d8fbf05111a3cb9487", + "symbol": "GRAI", + "decimals": 18, + "name": "Gravita Debt Token", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/59144/0x894134a25a5fac1c2c26f1d8fbf05111a3cb9487.png", + "aggregators": ["LineaTeam", "LiFi", "Socket", "Rubic", "Rango"], + "occurrences": 5 + }, + "0x6ef95b6f3b0f39508e3e04054be96d5ee39ede0d": { + "address": "0x6ef95b6f3b0f39508e3e04054be96d5ee39ede0d", + "symbol": "SIS", + "decimals": 18, + "name": "Symbiosis", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/59144/0x6ef95b6f3b0f39508e3e04054be96d5ee39ede0d.png", + "aggregators": [ + "CoinGecko", + "LiFi", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0xec859566fc5d7ed84ac823509f3f7db06c461b20": { + "address": "0xec859566fc5d7ed84ac823509f3f7db06c461b20", + "symbol": "SOULS", + "decimals": 18, + "name": "Unfettered Ecosystem", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/59144/0xec859566fc5d7ed84ac823509f3f7db06c461b20.png", + "aggregators": [ + "CoinGecko", + "Rubic", + "Squid", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x7d43aabc515c356145049227cee54b608342c0ad": { + "address": "0x7d43aabc515c356145049227cee54b608342c0ad", + "symbol": "BUSD", + "decimals": 18, + "name": "Binance USD (Linea)", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/59144/0x7d43aabc515c356145049227cee54b608342c0ad.png", + "aggregators": [ + "CoinGecko", + "LiFi", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0xe4d584ae9b753e549cae66200a6475d2f00705f7": { + "address": "0xe4d584ae9b753e549cae66200a6475d2f00705f7", + "symbol": "M-BTC", + "decimals": 18, + "name": "Merlin's Seal BTC", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/59144/0xe4d584ae9b753e549cae66200a6475d2f00705f7.png", + "aggregators": [ + "CoinGecko", + "LiFi", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x81be2acb2e9291db6400f9f6a4d0f35f24de2e77": { + "address": "0x81be2acb2e9291db6400f9f6a4d0f35f24de2e77", + "symbol": "LPUSS", + "decimals": 18, + "name": "Linpuss", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/59144/0x81be2acb2e9291db6400f9f6a4d0f35f24de2e77.png", + "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0x636b22bc471c955a8db60f28d4795066a8201fa3": { + "address": "0x636b22bc471c955a8db60f28d4795066a8201fa3", + "symbol": "UNI", + "decimals": 18, + "name": "Linea Bridged UNI (Linea)", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/59144/0x636b22bc471c955a8db60f28d4795066a8201fa3.png", + "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0x15eefe5b297136b8712291b632404b66a8ef4d25": { + "address": "0x15eefe5b297136b8712291b632404b66a8ef4d25", + "symbol": "UNIETH", + "decimals": 18, + "name": "Universal ETH", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/59144/0x15eefe5b297136b8712291b632404b66a8ef4d25.png", + "aggregators": ["LineaTeam", "LiFi", "Rubic", "Squid"], + "occurrences": 4 + }, + "0xb1afd04774c02ae84692619448b08ba79f19b1ff": { + "address": "0xb1afd04774c02ae84692619448b08ba79f19b1ff", + "symbol": "FRXETH", + "decimals": 18, + "name": "FRXETH", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/59144/0xb1afd04774c02ae84692619448b08ba79f19b1ff.png", + "aggregators": ["CoinGecko", "LiFi", "Rubic", "Rango"], + "occurrences": 4 + }, + "0x56aa6d651bfefa9207b35e508716466359bae8ef": { + "address": "0x56aa6d651bfefa9207b35e508716466359bae8ef", + "symbol": "TURTLE", + "decimals": 18, + "name": "TURTLE", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/59144/0x56aa6d651bfefa9207b35e508716466359bae8ef.png", + "aggregators": ["CoinGecko", "LiFi", "Rubic", "Rango"], + "occurrences": 4 + }, + "0xc7346783f5e645aa998b106ef9e7f499528673d8": { + "address": "0xc7346783f5e645aa998b106ef9e7f499528673d8", + "symbol": "FRXUSD", + "decimals": 18, + "name": "FRXUSD", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/59144/0xc7346783f5e645aa998b106ef9e7f499528673d8.png", + "aggregators": ["CoinGecko", "LiFi", "Rubic", "Rango"], + "occurrences": 4 + }, + "0xa500000000e482752f032ea387390b6025a2377b": { + "address": "0xa500000000e482752f032ea387390b6025a2377b", + "symbol": "ASUSD", + "decimals": 18, + "name": "Astera USD", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/59144/0xa500000000e482752f032ea387390b6025a2377b.png", + "aggregators": ["LiFi", "Socket", "Rubic", "Rango"], + "occurrences": 4 + }, + "0x0b1a02a7309dfbfad1cd4adc096582c87e8a3ac1": { + "address": "0x0b1a02a7309dfbfad1cd4adc096582c87e8a3ac1", + "symbol": "HZN", + "decimals": 18, + "name": "Horizon", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/59144/0x0b1a02a7309dfbfad1cd4adc096582c87e8a3ac1.png", + "aggregators": ["Rubic", "Squid", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0xeb466342c4d449bc9f53a865d5cb90586f405215": { + "address": "0xeb466342c4d449bc9f53a865d5cb90586f405215", + "symbol": "AXLUSDC", + "decimals": 6, + "name": "Axelar Wrapped USDC", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/59144/0xeb466342c4d449bc9f53a865d5cb90586f405215.png", + "aggregators": [ + "CoinGecko", + "LiFi", + "TrustWallet", + "Rubic", + "Squid", + "Rango", + "Sonarwatch", + "SushiSwap" + ], + "occurrences": 8 + }, + "0x3b2f62d42db19b30588648bf1c184865d4c3b1d6": { + "address": "0x3b2f62d42db19b30588648bf1c184865d4c3b1d6", + "symbol": "KNC", + "decimals": 18, + "name": "Kyber Network Crystal", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/59144/0x3b2f62d42db19b30588648bf1c184865d4c3b1d6.png", + "aggregators": [ + "CoinGecko", + "LiFi", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 6 + }, + "0x60892e742d91d16be2cb0ffe847e85445989e30b": { + "address": "0x60892e742d91d16be2cb0ffe847e85445989e30b", + "symbol": "WEFI", + "decimals": 18, + "name": "Wefi", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/59144/0x60892e742d91d16be2cb0ffe847e85445989e30b.png", + "aggregators": [ + "CoinGecko", + "LiFi", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 6 + }, + "0xba2f9e7ae9f5f03fce7d560f986743659e768bbf": { + "address": "0xba2f9e7ae9f5f03fce7d560f986743659e768bbf", + "symbol": "EUSD", + "decimals": 18, + "name": "ARYZE eUSD", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/59144/0xba2f9e7ae9f5f03fce7d560f986743659e768bbf.png", + "aggregators": [ + "CoinGecko", + "LiFi", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 6 + }, + "0xecc68d0451e20292406967fe7c04280e5238ac7d": { + "address": "0xecc68d0451e20292406967fe7c04280e5238ac7d", + "symbol": "AXLFRXETH", + "decimals": 18, + "name": "Axelar Bridged Frax Ether", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/59144/0xecc68d0451e20292406967fe7c04280e5238ac7d.png", + "aggregators": [ + "1inch", + "LiFi", + "Rubic", + "Squid", + "Rango", + "Sonarwatch" + ], + "occurrences": 6 + }, + "0xacb54d07ca167934f57f829bee2cc665e1a5ebef": { + "address": "0xacb54d07ca167934f57f829bee2cc665e1a5ebef", + "symbol": "CROAK", + "decimals": 18, + "name": "CROAK", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/59144/0xacb54d07ca167934f57f829bee2cc665e1a5ebef.png", + "aggregators": [ + "Metamask", + "Rubic", + "Squid", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0xeb1fd1dbb8adda4fa2b5a5c4bce34f6f20d125d2": { + "address": "0xeb1fd1dbb8adda4fa2b5a5c4bce34f6f20d125d2", + "symbol": "DTC", + "decimals": 18, + "name": "Donald Toad Coin", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/59144/0xeb1fd1dbb8adda4fa2b5a5c4bce34f6f20d125d2.png", + "aggregators": [ + "CoinGecko", + "LiFi", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0xe2a6e74118e708f7652fc4c74d2f9ee5fa210563": { + "address": "0xe2a6e74118e708f7652fc4c74d2f9ee5fa210563", + "symbol": "NWG", + "decimals": 18, + "name": "NotWifGary", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/59144/0xe2a6e74118e708f7652fc4c74d2f9ee5fa210563.png", + "aggregators": [ + "CoinGecko", + "Rubic", + "Squid", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x9201f3b9dfab7c13cd659ac5695d12d605b5f1e6": { + "address": "0x9201f3b9dfab7c13cd659ac5695d12d605b5f1e6", + "symbol": "ECP", + "decimals": 18, + "name": "EchoDEX Community Portion", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/59144/0x9201f3b9dfab7c13cd659ac5695d12d605b5f1e6.png", + "aggregators": [ + "CoinGecko", + "LiFi", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x808d7c71ad2ba3fa531b068a2417c63106bc0949": { + "address": "0x808d7c71ad2ba3fa531b068a2417c63106bc0949", + "symbol": "STG", + "decimals": 18, + "name": "Stargate Finance", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/59144/0x808d7c71ad2ba3fa531b068a2417c63106bc0949.png", + "aggregators": [ + "CoinGecko", + "LiFi", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0xa334884bf6b0a066d553d19e507315e839409e62": { + "address": "0xa334884bf6b0a066d553d19e507315e839409e62", + "symbol": "ERN", + "decimals": 18, + "name": "Ethos Reserve Note", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/59144/0xa334884bf6b0a066d553d19e507315e839409e62.png", + "aggregators": [ + "CoinGecko", + "Rubic", + "Squid", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x5b16228b94b68c7ce33af2acc5663ebde4dcfa2d": { + "address": "0x5b16228b94b68c7ce33af2acc5663ebde4dcfa2d", + "symbol": "LINK", + "decimals": 18, + "name": "Linea Bridged LINK (Linea)", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/59144/0x5b16228b94b68c7ce33af2acc5663ebde4dcfa2d.png", + "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0xa88b54e6b76fb97cdb8ecae868f1458e18a953f4": { + "address": "0xa88b54e6b76fb97cdb8ecae868f1458e18a953f4", + "symbol": "DUSD", + "decimals": 18, + "name": "Davos.xyz USD", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/59144/0xa88b54e6b76fb97cdb8ecae868f1458e18a953f4.png", + "aggregators": ["LineaTeam", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0xe516a5cff996cc399efbb48355fd5ab83438e7a9": { + "address": "0xe516a5cff996cc399efbb48355fd5ab83438e7a9", + "symbol": "GNO", + "decimals": 18, + "name": "Linea Bridged GNO (Linea)", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/59144/0xe516a5cff996cc399efbb48355fd5ab83438e7a9.png", + "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0x0e076aafd86a71dceac65508daf975425c9d0cb6": { + "address": "0x0e076aafd86a71dceac65508daf975425c9d0cb6", + "symbol": "LDO", + "decimals": 18, + "name": "Linea Bridged LDO (Linea)", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/59144/0x0e076aafd86a71dceac65508daf975425c9d0cb6.png", + "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0x1be3735dd0c0eb229fb11094b6c277192349ebbf": { + "address": "0x1be3735dd0c0eb229fb11094b6c277192349ebbf", + "symbol": "LUBE", + "decimals": 18, + "name": "LUBE", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/59144/0x1be3735dd0c0eb229fb11094b6c277192349ebbf.png", + "aggregators": ["LineaTeam", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0x3e5d9d8a63cc8a88748f229999cf59487e90721e": { + "address": "0x3e5d9d8a63cc8a88748f229999cf59487e90721e", + "symbol": "XMT", + "decimals": 18, + "name": "MetalSwap", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/59144/0x3e5d9d8a63cc8a88748f229999cf59487e90721e.png", + "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0x7da14988e4f390c2e34ed41df1814467d3ade0c3": { + "address": "0x7da14988e4f390c2e34ed41df1814467d3ade0c3", + "symbol": "PEPE", + "decimals": 18, + "name": "Linea Bridged PEPE (Linea)", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/59144/0x7da14988e4f390c2e34ed41df1814467d3ade0c3.png", + "aggregators": ["LineaTeam", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0x13a7f090d46c74acba98c51786a5c46ed9a474f0": { + "address": "0x13a7f090d46c74acba98c51786a5c46ed9a474f0", + "symbol": "SCM", + "decimals": 18, + "name": "ScamFari", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/59144/0x13a7f090d46c74acba98c51786a5c46ed9a474f0.png", + "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0x68592c5c98c4f4a8a4bc6da2121e65da3d1c0917": { + "address": "0x68592c5c98c4f4a8a4bc6da2121e65da3d1c0917", + "symbol": "USDLR", + "decimals": 6, + "name": "Stable USDLR", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/59144/0x68592c5c98c4f4a8a4bc6da2121e65da3d1c0917.png", + "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0x796000fad0d00b003b9dd8e531ba90cff39e01e0": { + "address": "0x796000fad0d00b003b9dd8e531ba90cff39e01e0", + "symbol": "DUCKIES", + "decimals": 8, + "name": "Yellow Duckies", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/59144/0x796000fad0d00b003b9dd8e531ba90cff39e01e0.png", + "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0x5a7a183b6b44dc4ec2e3d2ef43f98c5152b1d76d": { + "address": "0x5a7a183b6b44dc4ec2e3d2ef43f98c5152b1d76d", + "symbol": "INETH", + "decimals": 18, + "name": "Inception Restaked ETH", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/59144/0x5a7a183b6b44dc4ec2e3d2ef43f98c5152b1d76d.png", + "aggregators": ["LiFi", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0x6baa318cf7c51c76e17ae1ebe9bbff96ae017acb": { + "address": "0x6baa318cf7c51c76e17ae1ebe9bbff96ae017acb", + "symbol": "APE", + "decimals": 18, + "name": "ApeCoin", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/59144/0x6baa318cf7c51c76e17ae1ebe9bbff96ae017acb.png", + "aggregators": ["LineaTeam", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x0a79e44c99505c7f388ca30c787ff97217e73ecc": { + "address": "0x0a79e44c99505c7f388ca30c787ff97217e73ecc", + "symbol": "FXS", + "decimals": 18, + "name": "Linea Bridged FXS (LInea)", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/59144/0x0a79e44c99505c7f388ca30c787ff97217e73ecc.png", + "aggregators": ["LineaTeam", "Rubic", "Rango"], + "occurrences": 3 + }, + "0xd83af4fbd77f3ab65c3b1dc4b38d7e67aecf599a": { + "address": "0xd83af4fbd77f3ab65c3b1dc4b38d7e67aecf599a", + "symbol": "LXP", + "decimals": 18, + "name": "Linea Voyage XP", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/59144/0xd83af4fbd77f3ab65c3b1dc4b38d7e67aecf599a.png", + "aggregators": ["CoinGecko", "Rubic", "Sonarwatch"], + "occurrences": 3 + }, + "0x2442bd7ae83b51f6664de408a385375fe4a84f52": { + "address": "0x2442bd7ae83b51f6664de408a385375fe4a84f52", + "symbol": "MKR", + "decimals": 18, + "name": "Linea Bridged MKR (LInea)", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/59144/0x2442bd7ae83b51f6664de408a385375fe4a84f52.png", + "aggregators": ["LineaTeam", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x12bbdc004a0e9085ff94df1717336ecbc9f9e5fe": { + "address": "0x12bbdc004a0e9085ff94df1717336ecbc9f9e5fe", + "symbol": "RUSTY", + "decimals": 18, + "name": "RustyAI", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/59144/0x12bbdc004a0e9085ff94df1717336ecbc9f9e5fe.png", + "aggregators": ["CoinGecko", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x67454b41baf8d29751cc64f60e3c62b5634567a4": { + "address": "0x67454b41baf8d29751cc64f60e3c62b5634567a4", + "symbol": "$TBAG", + "decimals": 18, + "name": "TBAG", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/59144/0x67454b41baf8d29751cc64f60e3c62b5634567a4.png", + "aggregators": ["CoinGecko", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x539ae81a166e5e80aed211731563e549c411b140": { + "address": "0x539ae81a166e5e80aed211731563e549c411b140", + "symbol": "TA", + "decimals": 18, + "name": "TA", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/59144/0x539ae81a166e5e80aed211731563e549c411b140.png", + "aggregators": ["CoinGecko", "Rubic", "Rango"], + "occurrences": 3 + }, + "0xa18152629128738a5c081eb226335fed4b9c95e9": { + "address": "0xa18152629128738a5c081eb226335fed4b9c95e9", + "symbol": "LINK", + "decimals": 18, + "name": "LINK", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/59144/0xa18152629128738a5c081eb226335fed4b9c95e9.png", + "aggregators": ["CoinGecko", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x5217ab28ece654aab2c68efedb6a22739df6c3d5": { + "address": "0x5217ab28ece654aab2c68efedb6a22739df6c3d5", + "symbol": "WFRAX", + "decimals": 18, + "name": "WFRAX", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/59144/0x5217ab28ece654aab2c68efedb6a22739df6c3d5.png", + "aggregators": ["CoinGecko", "Rubic", "Rango"], + "occurrences": 3 + }, + "0xa0b18e70387ba72d1c7038bc0bd3a05e5a2287f6": { + "address": "0xa0b18e70387ba72d1c7038bc0bd3a05e5a2287f6", + "symbol": "CADC", + "decimals": 18, + "name": "CADC", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/59144/0xa0b18e70387ba72d1c7038bc0bd3a05e5a2287f6.png", + "aggregators": ["CoinGecko", "Rubic", "Rango"], + "occurrences": 3 + }, + "0xdbecd077c1c2fefdcb75f547d1b5a73bf8207e4c": { + "address": "0xdbecd077c1c2fefdcb75f547d1b5a73bf8207e4c", + "symbol": "EVAETH", + "decimals": 18, + "name": "evaETH", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/59144/0xdbecd077c1c2fefdcb75f547d1b5a73bf8207e4c.png", + "aggregators": ["CoinGecko", "Rubic", "Rango"], + "occurrences": 3 + }, + "0xa0a675d08ca63066f48408136f8a71fc65be4afc": { + "address": "0xa0a675d08ca63066f48408136f8a71fc65be4afc", + "symbol": "BZR", + "decimals": 18, + "name": "Bazaars", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/59144/0xa0a675d08ca63066f48408136f8a71fc65be4afc.png", + "aggregators": ["CoinGecko", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x501ebf66d76a96d4fb26ccead42957653e16b8b8": { + "address": "0x501ebf66d76a96d4fb26ccead42957653e16b8b8", + "symbol": "EVAUSDT", + "decimals": 6, + "name": "evaUSDT", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/59144/0x501ebf66d76a96d4fb26ccead42957653e16b8b8.png", + "aggregators": ["CoinGecko", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x741bd193b6b40f8703d2e116fd1965421f290f58": { + "address": "0x741bd193b6b40f8703d2e116fd1965421f290f58", + "symbol": "EVAUSDC", + "decimals": 6, + "name": "evaUSDC", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/59144/0x741bd193b6b40f8703d2e116fd1965421f290f58.png", + "aggregators": ["CoinGecko", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x5ffce65a40f6d3de5332766fff6a28bf491c868c": { + "address": "0x5ffce65a40f6d3de5332766fff6a28bf491c868c", + "symbol": "SOLVBTC.M", + "decimals": 18, + "name": "SOLVBTC.M", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/59144/0x5ffce65a40f6d3de5332766fff6a28bf491c868c.png", + "aggregators": ["LiFi", "Rubic", "Rango"], + "occurrences": 3 + }, + "0xa1d241276b76638ee74fc04c7152208596954a44": { + "address": "0xa1d241276b76638ee74fc04c7152208596954a44", + "symbol": "WCROTCH", + "decimals": 18, + "name": "CROTCH", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/59144/0xa1d241276b76638ee74fc04c7152208596954a44.png", + "aggregators": ["LiFi", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x2b1d36f5b61addaf7da7ebbd11b35fd8cfb0de31": { + "address": "0x2b1d36f5b61addaf7da7ebbd11b35fd8cfb0de31", + "symbol": "ITP", + "decimals": 18, + "name": "Interport Token", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/59144/0x2b1d36f5b61addaf7da7ebbd11b35fd8cfb0de31.png", + "aggregators": ["Rubic", "Rango", "Sonarwatch"], + "occurrences": 3 + }, + "0xf5c6825015280cdfd0b56903f9f8b5a2233476f5": { + "address": "0xf5c6825015280cdfd0b56903f9f8b5a2233476f5", + "symbol": "WBNB", + "decimals": 18, + "name": "Wrapped BNB", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/59144/0xf5c6825015280cdfd0b56903f9f8b5a2233476f5.png", + "aggregators": [ + "CoinGecko", + "LiFi", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 6 + }, + "0x5471ea8f739dd37e9b81be9c5c77754d8aa953e4": { + "address": "0x5471ea8f739dd37e9b81be9c5c77754d8aa953e4", + "symbol": "WAVAX", + "decimals": 18, + "name": "Celer Bridged WAVAX (Linea)", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/59144/0x5471ea8f739dd37e9b81be9c5c77754d8aa953e4.png", + "aggregators": [ + "CoinGecko", + "LiFi", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 6 + }, + "0x265b25e22bcd7f10a5bd6e6410f10537cc7567e8": { + "address": "0x265b25e22bcd7f10a5bd6e6410f10537cc7567e8", + "symbol": "WPOL", + "decimals": 18, + "name": "Wrapped POL", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/59144/0x265b25e22bcd7f10a5bd6e6410f10537cc7567e8.png", + "aggregators": [ + "CoinGecko", + "LiFi", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 6 + }, + "0xcf0f95e34f25d1bb3d9cad3cbb2eb40dab7c3841": { + "address": "0xcf0f95e34f25d1bb3d9cad3cbb2eb40dab7c3841", + "symbol": "IBEX", + "decimals": 18, + "name": "Impermax", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/59144/0xcf0f95e34f25d1bb3d9cad3cbb2eb40dab7c3841.png", + "aggregators": [ + "CoinGecko", + "LiFi", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0xdd3b8084af79b9bae3d1b668c0de08ccc2c9429a": { + "address": "0xdd3b8084af79b9bae3d1b668c0de08ccc2c9429a", + "symbol": "MIM", + "decimals": 18, + "name": "Magic Internet Money (Linea)", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/59144/0xdd3b8084af79b9bae3d1b668c0de08ccc2c9429a.png", + "aggregators": [ + "CoinGecko", + "LiFi", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x41b94c5867f7f6217c9a30520cb3e793b1ee1b97": { + "address": "0x41b94c5867f7f6217c9a30520cb3e793b1ee1b97", + "symbol": "TIA", + "decimals": 6, + "name": "Axelar Wrapped TIA", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/59144/0x41b94c5867f7f6217c9a30520cb3e793b1ee1b97.png", + "aggregators": ["LiFi", "Socket", "Rubic", "Squid", "Rango"], + "occurrences": 5 + }, + "0x82cc61354d78b846016b559e3ccd766fa7e793d5": { + "address": "0x82cc61354d78b846016b559e3ccd766fa7e793d5", + "symbol": "LINDA", + "decimals": 18, + "name": "Linda", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/59144/0x82cc61354d78b846016b559e3ccd766fa7e793d5.png", + "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0x11f98c7e42a367dab4f200d2fdc460fb445ce9a8": { + "address": "0x11f98c7e42a367dab4f200d2fdc460fb445ce9a8", + "symbol": "SPARTA", + "decimals": 18, + "name": "SpartaDEX", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/59144/0x11f98c7e42a367dab4f200d2fdc460fb445ce9a8.png", + "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0x7a087e75807f2e5143c161a817e64df6dc5eafe0": { + "address": "0x7a087e75807f2e5143c161a817e64df6dc5eafe0", + "symbol": "ABTC", + "decimals": 18, + "name": "XLink Bridged BTC", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/59144/0x7a087e75807f2e5143c161a817e64df6dc5eafe0.png", + "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0x34b5c2936dae6698e54781edb8b1e69a2c2873f8": { + "address": "0x34b5c2936dae6698e54781edb8b1e69a2c2873f8", + "symbol": "RYZE", + "decimals": 18, + "name": "Ryze", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/59144/0x34b5c2936dae6698e54781edb8b1e69a2c2873f8.png", + "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0x11d8680c7f8f82f623e840130eb06c33d9f90c89": { + "address": "0x11d8680c7f8f82f623e840130eb06c33d9f90c89", + "symbol": "ANKRETH", + "decimals": 18, + "name": "Ankr Staked ETH", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/59144/0x11d8680c7f8f82f623e840130eb06c33d9f90c89.png", + "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0x757cd583004400ee67e5cc3c7a60c6a62e3f6d30": { + "address": "0x757cd583004400ee67e5cc3c7a60c6a62e3f6d30", + "symbol": "DACKIE", + "decimals": 18, + "name": "DackieSwap", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/59144/0x757cd583004400ee67e5cc3c7a60c6a62e3f6d30.png", + "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0xa8ae6365383eb907e6b4b1b7e82a35752cc5ef8c": { + "address": "0xa8ae6365383eb907e6b4b1b7e82a35752cc5ef8c", + "symbol": "ANKR", + "decimals": 18, + "name": "Ankr Network", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/59144/0xa8ae6365383eb907e6b4b1b7e82a35752cc5ef8c.png", + "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0x5e15e8afc627397075ebe0a7c9dc14177429bbff": { + "address": "0x5e15e8afc627397075ebe0a7c9dc14177429bbff", + "symbol": "SLN", + "decimals": 18, + "name": "Smart Layer Network", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/59144/0x5e15e8afc627397075ebe0a7c9dc14177429bbff.png", + "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0xf3df0a31ec5ea438150987805e841f960b9471b6": { + "address": "0xf3df0a31ec5ea438150987805e841f960b9471b6", + "symbol": "WOO", + "decimals": 18, + "name": "WOO", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/59144/0xf3df0a31ec5ea438150987805e841f960b9471b6.png", + "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0x4186bfc76e2e237523cbc30fd220fe055156b41f": { + "address": "0x4186bfc76e2e237523cbc30fd220fe055156b41f", + "symbol": "RSETH", + "decimals": 18, + "name": "KelpDAO Bridged rsETH (Linea)", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/59144/0x4186bfc76e2e237523cbc30fd220fe055156b41f.png", + "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0x0a3bb08b3a15a19b4de82f8acfc862606fb69a2d": { + "address": "0x0a3bb08b3a15a19b4de82f8acfc862606fb69a2d", + "symbol": "IUSD", + "decimals": 18, + "name": "IUSD", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/59144/0x0a3bb08b3a15a19b4de82f8acfc862606fb69a2d.png", + "aggregators": ["LiFi", "Socket", "Rubic", "Rango"], + "occurrences": 4 + }, + "0x23ee2343b892b1bb63503a4fabc840e0e2c6810f": { + "address": "0x23ee2343b892b1bb63503a4fabc840e0e2c6810f", + "symbol": "WAXL", + "decimals": 6, + "name": "Axelar", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/59144/0x23ee2343b892b1bb63503a4fabc840e0e2c6810f.png", + "aggregators": ["LiFi", "Socket", "Rubic", "Squid"], + "occurrences": 4 + }, + "0x092b9e25a7d143c83d44c27194f5cee7c1150f22": { + "address": "0x092b9e25a7d143c83d44c27194f5cee7c1150f22", + "symbol": "CWC", + "decimals": 18, + "name": "CatWifCap", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/59144/0x092b9e25a7d143c83d44c27194f5cee7c1150f22.png", + "aggregators": ["Rubic", "Squid", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0x139c3d0d52c58fd1ea10b44981aaf21976f7ff51": { + "address": "0x139c3d0d52c58fd1ea10b44981aaf21976f7ff51", + "symbol": "SBET", + "decimals": 6, + "name": "SharpLink Gaming, Inc.", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/59144/0x139c3d0d52c58fd1ea10b44981aaf21976f7ff51.png", + "aggregators": ["CoinGecko", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x43b3c64dbc95f9ed83795e051fc00014059e698f": { + "address": "0x43b3c64dbc95f9ed83795e051fc00014059e698f", + "symbol": "LYUSD", + "decimals": 18, + "name": "Ledgity Yield USD", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/59144/0x43b3c64dbc95f9ed83795e051fc00014059e698f.png", + "aggregators": ["CoinGecko", "Rubic", "Rango"], + "occurrences": 3 + }, + "0xc53ac24320e3a54c7211e4993c8095078a0cb3cf": { + "address": "0xc53ac24320e3a54c7211e4993c8095078a0cb3cf", + "symbol": "WGC", + "decimals": 6, + "name": "Wild Goat Coin", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/59144/0xc53ac24320e3a54c7211e4993c8095078a0cb3cf.png", + "aggregators": ["CoinGecko", "Rubic", "Rango"], + "occurrences": 3 + }, + "0xb20116ee399f15647bb1eef9a74f6ef3b58bc951": { + "address": "0xb20116ee399f15647bb1eef9a74f6ef3b58bc951", + "symbol": "LYU", + "decimals": 18, + "name": "LYU", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/59144/0xb20116ee399f15647bb1eef9a74f6ef3b58bc951.png", + "aggregators": ["LiFi", "Rubic", "Rango"], + "occurrences": 3 + }, + "0xb97f21d1f2508ff5c73e7b5af02847640b1ff75d": { + "address": "0xb97f21d1f2508ff5c73e7b5af02847640b1ff75d", + "symbol": "LAB", + "decimals": 18, + "name": "LAB", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/59144/0xb97f21d1f2508ff5c73e7b5af02847640b1ff75d.png", + "aggregators": ["LiFi", "Rubic", "Rango"], + "occurrences": 3 + }, + "0xd08c3f25862077056cb1b710937576af899a4959": { + "address": "0xd08c3f25862077056cb1b710937576af899a4959", + "symbol": "INSTETH", + "decimals": 18, + "name": "Inception stETH", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/59144/0xd08c3f25862077056cb1b710937576af899a4959.png", + "aggregators": ["Rubic", "Rango", "Sonarwatch"], + "occurrences": 3 + }, + "0x1f63d0ec7193964142ef6b13d901462d0e5cbb50": { + "address": "0x1f63d0ec7193964142ef6b13d901462d0e5cbb50", + "symbol": "ONEPUNCH", + "decimals": 18, + "name": "ONEPUNCH", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/59144/0x1f63d0ec7193964142ef6b13d901462d0e5cbb50.png", + "aggregators": ["Rubic", "Rango", "Sonarwatch"], + "occurrences": 3 + }, + "0x5cc5e64ab764a0f1e97f23984e20fd4528356a6a": { + "address": "0x5cc5e64ab764a0f1e97f23984e20fd4528356a6a", + "symbol": "XRGB", + "decimals": 18, + "name": "XRGB", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/59144/0x5cc5e64ab764a0f1e97f23984e20fd4528356a6a.png", + "aggregators": ["Rubic", "Rango", "Sonarwatch"], + "occurrences": 3 + }, + "0x3c56229dbc7dbe69908e3ad3e2ba9016b30e83c5": { + "address": "0x3c56229dbc7dbe69908e3ad3e2ba9016b30e83c5", + "symbol": "PUPI", + "decimals": 18, + "name": "PUPI", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/59144/0x3c56229dbc7dbe69908e3ad3e2ba9016b30e83c5.png", + "aggregators": ["LineaTeam", "LiFi"], + "occurrences": 2 + }, + "0x023617babed6cef5da825bea8363a5a9862e120f": { + "address": "0x023617babed6cef5da825bea8363a5a9862e120f", + "symbol": "WDAI", + "decimals": 18, + "name": "WrappedDAI", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/59144/0x023617babed6cef5da825bea8363a5a9862e120f.png", + "aggregators": ["LineaTeam", "Rubic"], + "occurrences": 2 + }, + "0x374d7860c4f2f604de0191298dd393703cce84f3": { + "address": "0x374d7860c4f2f604de0191298dd393703cce84f3", + "symbol": "AUSDC", + "decimals": 6, + "name": "Aave v3 USDC", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/59144/0x374d7860c4f2f604de0191298dd393703cce84f3.png", + "aggregators": ["Metamask", "1inch", "LiFi", "Rubic", "Rango"], + "occurrences": 5 + }, + "0x0e5f2ee8c29e7ebc14e45da7ff90566d8c407db7": { + "address": "0x0e5f2ee8c29e7ebc14e45da7ff90566d8c407db7", + "symbol": "HAPI", + "decimals": 18, + "name": "HAPI", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/59144/0x0e5f2ee8c29e7ebc14e45da7ff90566d8c407db7.png", + "aggregators": ["LineaTeam", "LiFi", "Socket", "Rubic", "Rango"], + "occurrences": 5 + }, + "0x211cc4dd073734da055fbf44a2b4667d5e5fe5d2": { + "address": "0x211cc4dd073734da055fbf44a2b4667d5e5fe5d2", + "symbol": "SUSDE", + "decimals": 18, + "name": "SUSDE", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/59144/0x211cc4dd073734da055fbf44a2b4667d5e5fe5d2.png", + "aggregators": ["CoinGecko", "LiFi", "Socket", "Rubic", "Rango"], + "occurrences": 5 + }, + "0xcc0966d8418d412c599a6421b760a847eb169a8c": { + "address": "0xcc0966d8418d412c599a6421b760a847eb169a8c", + "symbol": "XSOLVBTC", + "decimals": 18, + "name": "Solv Protocol Staked BTC", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/59144/0xcc0966d8418d412c599a6421b760a847eb169a8c.png", + "aggregators": [ + "CoinGecko", + "LiFi", + "Rubic", + "Rango", + "Sonarwatch" + ], + "occurrences": 5 + }, + "0x88231dfec71d4ff5c1e466d08c321944a7adc673": { + "address": "0x88231dfec71d4ff5c1e466d08c321944a7adc673", + "symbol": "AUSDT", + "decimals": 6, + "name": "Aave v3 USDT", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/59144/0x88231dfec71d4ff5c1e466d08c321944a7adc673.png", + "aggregators": ["Metamask", "1inch", "LiFi", "Rango"], + "occurrences": 4 + }, + "0x5d3a1ff2b6bab83b63cd9ad0787074081a52ef34": { + "address": "0x5d3a1ff2b6bab83b63cd9ad0787074081a52ef34", + "symbol": "USDE", + "decimals": 18, + "name": "USDE", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/59144/0x5d3a1ff2b6bab83b63cd9ad0787074081a52ef34.png", + "aggregators": ["CoinGecko", "LiFi", "Rubic", "Rango"], + "occurrences": 4 + }, + "0xd96536b77ae5500fe850add2253bcf640e7824c1": { + "address": "0xd96536b77ae5500fe850add2253bcf640e7824c1", + "symbol": "SIDUS", + "decimals": 18, + "name": "Sidus", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/59144/0xd96536b77ae5500fe850add2253bcf640e7824c1.png", + "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0x406cde76a3fd20e48bc1e0f60651e60ae204b040": { + "address": "0x406cde76a3fd20e48bc1e0f60651e60ae204b040", + "symbol": "FRAX", + "decimals": 18, + "name": "Bridged FRAX", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/59144/0x406cde76a3fd20e48bc1e0f60651e60ae204b040.png", + "aggregators": ["Rubic", "Squid", "Rango", "Sonarwatch"], + "occurrences": 4 + }, + "0x880a3ae90f989030708a529abd841589053c1dc2": { + "address": "0x880a3ae90f989030708a529abd841589053c1dc2", + "symbol": "BEAVER", + "decimals": 18, + "name": "Beaver Coin", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/59144/0x880a3ae90f989030708a529abd841589053c1dc2.png", + "aggregators": ["CoinGecko", "Rubic", "Rango"], + "occurrences": 3 + }, + "0xcc22f6aa610d1b2a0e89ef228079cb3e1831b1d1": { + "address": "0xcc22f6aa610d1b2a0e89ef228079cb3e1831b1d1", + "symbol": "LVC", + "decimals": 18, + "name": "Linea Velocore", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/59144/0xcc22f6aa610d1b2a0e89ef228079cb3e1831b1d1.png", + "aggregators": ["LineaTeam", "LiFi", "Rubic"], + "occurrences": 3 + }, + "0x8cf881799e3b5ab24271a9b66b6ca2b0e575b1ef": { + "address": "0x8cf881799e3b5ab24271a9b66b6ca2b0e575b1ef", + "symbol": "FBOMB", + "decimals": 18, + "name": "FBOMB", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/59144/0x8cf881799e3b5ab24271a9b66b6ca2b0e575b1ef.png", + "aggregators": ["CoinGecko", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x303241e2b3b4aed0bb0f8623e7442368fed8faf3": { + "address": "0x303241e2b3b4aed0bb0f8623e7442368fed8faf3", + "symbol": "ALETH", + "decimals": 18, + "name": "Alchemix ETH", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/59144/0x303241e2b3b4aed0bb0f8623e7442368fed8faf3.png", + "aggregators": ["CoinGecko", "Rubic", "Rango"], + "occurrences": 3 + }, + "0x787897df92703bb3fc4d9ee98e15c0b8130bf163": { + "address": "0x787897df92703bb3fc4d9ee98e15c0b8130bf163", + "symbol": "ALINWETH", + "decimals": 18, + "name": "Aave Linea WETH", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/59144/0x787897df92703bb3fc4d9ee98e15c0b8130bf163.png", + "aggregators": ["1inch", "LiFi", "Rango"], + "occurrences": 3 + }, + "0x37f7e06359f98162615e016d0008023d910bb576": { + "address": "0x37f7e06359f98162615e016d0008023d910bb576", + "symbol": "ALINWBTC", + "decimals": 8, + "name": "Aave Linea WBTC", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/59144/0x37f7e06359f98162615e016d0008023d910bb576.png", + "aggregators": ["1inch", "LiFi", "Rango"], + "occurrences": 3 + }, + "0x0c7921ab4888fd06731898b3ffffeb06781d5f4f": { + "address": "0x0c7921ab4888fd06731898b3ffffeb06781d5f4f", + "symbol": "ALINWEETH", + "decimals": 18, + "name": "Aave Linea weETH", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/59144/0x0c7921ab4888fd06731898b3ffffeb06781d5f4f.png", + "aggregators": ["1inch", "LiFi", "Rango"], + "occurrences": 3 + }, + "0x935efcbefc1df0541afc3fe145134f8c9a0beb89": { + "address": "0x935efcbefc1df0541afc3fe145134f8c9a0beb89", + "symbol": "ALINEZETH", + "decimals": 18, + "name": "Aave Linea ezETH", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/59144/0x935efcbefc1df0541afc3fe145134f8c9a0beb89.png", + "aggregators": ["1inch", "LiFi", "Rango"], + "occurrences": 3 + }, + "0x5860a0bf37133f8461b2dede7c80e55d6bff3721": { + "address": "0x5860a0bf37133f8461b2dede7c80e55d6bff3721", + "symbol": "FXS.AXL", + "decimals": 18, + "name": "Frax Share", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/59144/0x5860a0bf37133f8461b2dede7c80e55d6bff3721.png", + "aggregators": ["LiFi", "Rubic", "Squid"], + "occurrences": 3 + }, + "0xb448ec505c924944ca8b2c55ef05c299ee0781df": { + "address": "0xb448ec505c924944ca8b2c55ef05c299ee0781df", + "symbol": "AXLKNC", + "decimals": 18, + "name": "Axelar Wrapped KNC", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/59144/0xb448ec505c924944ca8b2c55ef05c299ee0781df.png", + "aggregators": ["LiFi", "Squid", "Rango"], + "occurrences": 3 + }, + "0x332c72dd7e77070740f01d2d35851c461585d5d0": { + "address": "0x332c72dd7e77070740f01d2d35851c461585d5d0", + "symbol": "LQDR.AXL", + "decimals": 18, + "name": " Lqdr (Axelar)", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/59144/0x332c72dd7e77070740f01d2d35851c461585d5d0.png", + "aggregators": ["LiFi", "Rubic", "Squid"], + "occurrences": 3 + }, + "0xb7f8f05825f3e37dfa68e1f3df8b6d4b5829bc78": { + "address": "0xb7f8f05825f3e37dfa68e1f3df8b6d4b5829bc78", + "symbol": "USDZ", + "decimals": 18, + "name": "ZAI Stablecoin", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/59144/0xb7f8f05825f3e37dfa68e1f3df8b6d4b5829bc78.png", + "aggregators": ["Rubic", "Rango", "Sonarwatch"], + "occurrences": 3 + }, + "0x5c7e299cf531eb66f2a1df637d37abb78e6200c7": { + "address": "0x5c7e299cf531eb66f2a1df637d37abb78e6200c7", + "symbol": "AXLDAI", + "decimals": 18, + "name": "Axelar Wrapped DAI", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/59144/0x5c7e299cf531eb66f2a1df637d37abb78e6200c7.png", + "aggregators": ["Rubic", "Squid", "SushiSwap"], + "occurrences": 3 + }, + "0x63ba74893621d3d12f13cec1e86517ec3d329837": { + "address": "0x63ba74893621d3d12f13cec1e86517ec3d329837", + "symbol": "LUSD", + "decimals": 18, + "name": "LUSD Stablecoin", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/59144/0x63ba74893621d3d12f13cec1e86517ec3d329837.png", + "aggregators": ["LineaTeam", "LiFi"], + "occurrences": 2 + }, + "0x45dc7323e7357713d92edee756733dada5865fd5": { + "address": "0x45dc7323e7357713d92edee756733dada5865fd5", + "symbol": "NEMS", + "decimals": 18, + "name": "The Nemesis", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/59144/0x45dc7323e7357713d92edee756733dada5865fd5.png", + "aggregators": ["LineaTeam", "Rubic"], + "occurrences": 2 + }, + "0x8717d1bd821fd8faf023fd6fb6087512182b477f": { + "address": "0x8717d1bd821fd8faf023fd6fb6087512182b477f", + "symbol": "1CHOOSE", + "decimals": 18, + "name": "1CHOOSE", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/59144/0x8717d1bd821fd8faf023fd6fb6087512182b477f.png", + "aggregators": ["LineaTeam"], + "occurrences": 1 + }, + "0x29380ed69d0012e2fa825b7ecc8751ebb21aa79d": { + "address": "0x29380ed69d0012e2fa825b7ecc8751ebb21aa79d", + "symbol": "ABT", + "decimals": 18, + "name": "ABT", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/59144/0x29380ed69d0012e2fa825b7ecc8751ebb21aa79d.png", + "aggregators": ["LineaTeam"], + "occurrences": 1 + }, + "0x7324a70d1a70cf0e9dab2ea8335ced1ec100bcf3": { + "address": "0x7324a70d1a70cf0e9dab2ea8335ced1ec100bcf3", + "symbol": "AJP", + "decimals": 18, + "name": "Ajira Pay Finance", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/59144/0x7324a70d1a70cf0e9dab2ea8335ced1ec100bcf3.png", + "aggregators": ["LineaTeam"], + "occurrences": 1 + }, + "0x1578f35532fa091eced8638730f9db829930ce16": { + "address": "0x1578f35532fa091eced8638730f9db829930ce16", + "symbol": "AGEUR", + "decimals": 18, + "name": "Angle Protocol", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/59144/0x1578f35532fa091eced8638730f9db829930ce16.png", + "aggregators": ["LineaTeam"], + "occurrences": 1 + }, + "0x4acde18acde7f195e6fb928e15dc8d83d67c1f3a": { + "address": "0x4acde18acde7f195e6fb928e15dc8d83d67c1f3a", + "symbol": "DERI", + "decimals": 18, + "name": "Deri Protocol", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/59144/0x4acde18acde7f195e6fb928e15dc8d83d67c1f3a.png", + "aggregators": ["LineaTeam"], + "occurrences": 1 + }, + "0x1f031f8c523b339c7a831355879e3568fa3eb263": { + "address": "0x1f031f8c523b339c7a831355879e3568fa3eb263", + "symbol": "DVF", + "decimals": 18, + "name": "DeversiFi Token", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/59144/0x1f031f8c523b339c7a831355879e3568fa3eb263.png", + "aggregators": ["LineaTeam"], + "occurrences": 1 + }, + "0x70359c1eeb98eb3d12ee7178359a4541ff11cc8e": { + "address": "0x70359c1eeb98eb3d12ee7178359a4541ff11cc8e", + "symbol": "DSLA", + "decimals": 18, + "name": "DSLA Protocol", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/59144/0x70359c1eeb98eb3d12ee7178359a4541ff11cc8e.png", + "aggregators": ["LineaTeam"], + "occurrences": 1 + }, + "0xf312ec9f8087c87fbf3439b0369ea233a1ee4a7d": { + "address": "0xf312ec9f8087c87fbf3439b0369ea233a1ee4a7d", + "symbol": "DUST", + "decimals": 18, + "name": "Dust", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/59144/0xf312ec9f8087c87fbf3439b0369ea233a1ee4a7d.png", + "aggregators": ["LineaTeam"], + "occurrences": 1 + }, + "0x65e413f21bf468fed23996a8e701dd67fdf22b83": { + "address": "0x65e413f21bf468fed23996a8e701dd67fdf22b83", + "symbol": "DYSN", + "decimals": 18, + "name": "Dyson Sphere", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/59144/0x65e413f21bf468fed23996a8e701dd67fdf22b83.png", + "aggregators": ["LineaTeam"], + "occurrences": 1 + }, + "0x42d4eb291c00a243c7cbc2759b47892ed1852a9d": { + "address": "0x42d4eb291c00a243c7cbc2759b47892ed1852a9d", + "symbol": "GENESIS", + "decimals": 18, + "name": "Genesis", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/59144/0x42d4eb291c00a243c7cbc2759b47892ed1852a9d.png", + "aggregators": ["LineaTeam"], + "occurrences": 1 + }, + "0xaec06345b26451bda999d83b361beaad6ea93f87": { + "address": "0xaec06345b26451bda999d83b361beaad6ea93f87", + "symbol": "VELVC", + "decimals": 18, + "name": "Locked LVC", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/59144/0xaec06345b26451bda999d83b361beaad6ea93f87.png", + "aggregators": ["LineaTeam"], + "occurrences": 1 + }, + "0x9d36f49d3d42b3a9bcc0f5ac76ff8ef78fb2bc01": { + "address": "0x9d36f49d3d42b3a9bcc0f5ac76ff8ef78fb2bc01", + "symbol": "LBR", + "decimals": 18, + "name": "Lybra Finance", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/59144/0x9d36f49d3d42b3a9bcc0f5ac76ff8ef78fb2bc01.png", + "aggregators": ["LineaTeam"], + "occurrences": 1 + }, + "0xa6eb75b11b36fb9175fb94c5b96959879a26c2a8": { + "address": "0xa6eb75b11b36fb9175fb94c5b96959879a26c2a8", + "symbol": "PEEL", + "decimals": 18, + "name": "Meta Apes Peel", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/59144/0xa6eb75b11b36fb9175fb94c5b96959879a26c2a8.png", + "aggregators": ["LineaTeam"], + "occurrences": 1 + }, + "0xd2bc272ea0154a93bf00191c8a1db23e67643ec5": { + "address": "0xd2bc272ea0154a93bf00191c8a1db23e67643ec5", + "symbol": "USDP", + "decimals": 18, + "name": "Pax Dollar", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/59144/0xd2bc272ea0154a93bf00191c8a1db23e67643ec5.png", + "aggregators": ["LineaTeam"], + "occurrences": 1 + }, + "0x99ad925c1dc14ac7cc6ca1244eef8043c74e99d5": { + "address": "0x99ad925c1dc14ac7cc6ca1244eef8043c74e99d5", + "symbol": "SHIB", + "decimals": 18, + "name": "SHIBA INU", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/59144/0x99ad925c1dc14ac7cc6ca1244eef8043c74e99d5.png", + "aggregators": ["LineaTeam"], + "occurrences": 1 + }, + "0x60c2d7af58da5915af06f5e7a0e49fc98271a4b3": { + "address": "0x60c2d7af58da5915af06f5e7a0e49fc98271a4b3", + "symbol": "SHRT", + "decimals": 18, + "name": "Shortia Token", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/59144/0x60c2d7af58da5915af06f5e7a0e49fc98271a4b3.png", + "aggregators": ["LineaTeam"], + "occurrences": 1 + }, + "0x150b1e51738cdf0ccfe472594c62d7d6074921ca": { + "address": "0x150b1e51738cdf0ccfe472594c62d7d6074921ca", + "symbol": "SMENDI", + "decimals": 18, + "name": "Staked Mendi", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/59144/0x150b1e51738cdf0ccfe472594c62d7d6074921ca.png", + "aggregators": ["LineaTeam"], + "occurrences": 1 + }, + "0xcf8dedcdc62317beaedfbee3c77c08425f284486": { + "address": "0xcf8dedcdc62317beaedfbee3c77c08425f284486", + "symbol": "UMENDI", + "decimals": 18, + "name": "Staked Mendi", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/59144/0xcf8dedcdc62317beaedfbee3c77c08425f284486.png", + "aggregators": ["LineaTeam"], + "occurrences": 1 + }, + "0xa3c26a308ac52520320ebcafdba0bb0aaa105ee8": { + "address": "0xa3c26a308ac52520320ebcafdba0bb0aaa105ee8", + "symbol": "SNT", + "decimals": 18, + "name": "Status", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/59144/0xa3c26a308ac52520320ebcafdba0bb0aaa105ee8.png", + "aggregators": ["LineaTeam"], + "occurrences": 1 + }, + "0xd221cf22b2b9643b44ba0873e08ec1952d52508a": { + "address": "0xd221cf22b2b9643b44ba0873e08ec1952d52508a", + "symbol": "TATERZ", + "decimals": 18, + "name": "TATERZ", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/59144/0xd221cf22b2b9643b44ba0873e08ec1952d52508a.png", + "aggregators": ["LineaTeam"], + "occurrences": 1 + }, + "0xc84f2ce21272f17d92d2a450f1c8567bf0ff448e": { + "address": "0xc84f2ce21272f17d92d2a450f1c8567bf0ff448e", + "symbol": "USK", + "decimals": 18, + "name": "US KUMA Interest Bearing Token", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/59144/0xc84f2ce21272f17d92d2a450f1c8567bf0ff448e.png", + "aggregators": ["LineaTeam"], + "occurrences": 1 + }, + "0x2c2dc9770c1185e76920c8e763c4833b7a02dd1a": { + "address": "0x2c2dc9770c1185e76920c8e763c4833b7a02dd1a", + "symbol": "WRMY", + "decimals": 18, + "name": "Wormy", + "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/59144/0x2c2dc9770c1185e76920c8e763c4833b7a02dd1a.png", + "aggregators": ["LineaTeam"], + "occurrences": 1 + } + }, + "timestamp": 1779126362429 + } + }, + "allTokens": { + "0x1": { + "0x141d32a89a1e0a5ef360034a2f60a4b917c18838": [ + { + "address": "0x6B175474E89094C44Da98b954EedeAC495271d0F", + "aggregators": [ + "Metamask", + "1inch", + "LiFi", + "Socket", + "Rubic", + "Squid", + "Rango", + "Sonarwatch", + "SushiSwap", + "PMM", + "Bancor" + ], + "decimals": 18, + "image": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x6b175474e89094c44da98b954eedeac495271d0f.png", + "name": "Dai Stablecoin", + "symbol": "DAI" + }, + { + "address": "0x14c3abF95Cb9C93a8b82C1CdCB76D72Cb87b2d4c", + "aggregators": ["CoinGecko", "Rubic", "Rango", "Ondo"], + "decimals": 18, + "image": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x14c3abf95cb9c93a8b82c1cdcb76d72cb87b2d4c.png", + "name": "Apple (Ondo Tokenized)", + "rwaData": { + "market": { + "nextOpen": "2026-05-15T20:01:00.000Z", + "nextClose": "2026-05-15T19:59:00.000Z" + }, + "nextPause": { + "start": null, + "end": null + }, + "ticker": "AAPL", + "instrumentType": "stock" + }, + "symbol": "AAPLON" + }, + { + "address": "0xD4419C2d3DAA986Dc30444Fa333a846be44Fd1eb", + "aggregators": [ + "CoinMarketCap", + "Socket", + "Rubic", + "Rango", + "Sonarwatch" + ], + "decimals": 18, + "image": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xd4419c2d3daa986dc30444fa333a846be44fd1eb.png", + "name": "ZIK coin", + "symbol": "ZIK" + }, + { + "address": "0xacA92E438df0B2401fF60dA7E4337B687a2435DA", + "aggregators": ["Metamask", "LiFi", "Socket", "Rubic", "Rango"], + "decimals": 6, + "image": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xaca92e438df0b2401ff60da7e4337b687a2435da.png", + "name": "MetaMask USD", + "symbol": "MUSD" + } + ], + "0x30e8ccad5a980bdf30447f8c2c48e70989d9d294": [ + { + "address": "0xacA92E438df0B2401fF60dA7E4337B687a2435DA", + "aggregators": ["Metamask", "LiFi", "Socket", "Rango"], + "decimals": 6, + "image": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xaca92e438df0b2401ff60da7e4337b687a2435da.png", + "name": "MetaMask USD", + "symbol": "MUSD" + }, + { + "address": "0x14c3abF95Cb9C93a8b82C1CdCB76D72Cb87b2d4c", + "aggregators": ["CoinGecko", "Rango", "Ondo"], + "decimals": 18, + "image": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x14c3abf95cb9c93a8b82c1cdcb76d72cb87b2d4c.png", + "name": "Apple (Ondo Tokenized)", + "rwaData": { + "instrumentType": "stock", + "market": { + "nextClose": "2026-05-11T13:29:00.000Z", + "nextOpen": "2026-05-11T13:31:00.000Z" + }, + "nextPause": { + "end": null, + "start": null + }, + "ticker": "AAPL" + }, + "symbol": "AAPLON" + }, + { + "address": "0xD4419C2d3DAA986Dc30444Fa333a846be44Fd1eb", + "aggregators": ["CoinMarketCap", "Socket", "Rango", "Sonarwatch"], + "decimals": 18, + "image": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xd4419c2d3daa986dc30444fa333a846be44fd1eb.png", + "name": "ZIK coin", + "symbol": "ZIK" + }, + { + "address": "0xdAC17F958D2ee523a2206206994597C13D831ec7", + "aggregators": [ + "Metamask", + "1inch", + "LiFi", + "TrustWallet", + "Socket", + "Rubic", + "Squid", + "Rango", + "Sonarwatch", + "SushiSwap", + "Bancor" + ], + "decimals": 6, + "image": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xdac17f958d2ee523a2206206994597c13d831ec7.png", + "name": "Tether USD", + "symbol": "USDT" + } + ], + "0xb3864b298f4fddbbbd2fa5cf1a2a2748932b3b81": [ + { + "address": "0x14c3abF95Cb9C93a8b82C1CdCB76D72Cb87b2d4c", + "aggregators": ["CoinGecko", "Rubic", "Rango", "Ondo"], + "decimals": 18, + "image": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x14c3abf95cb9c93a8b82c1cdcb76d72cb87b2d4c.png", + "name": "Apple (Ondo Tokenized)", + "rwaData": { + "instrumentType": "stock", + "market": { + "nextClose": "2026-04-13T19:59:00.000Z", + "nextOpen": "2026-04-13T20:01:00.000Z" + }, + "nextPause": { + "end": "2026-04-30T23:30:00.000Z", + "start": "2026-04-30T20:00:00.000Z" + }, + "ticker": "AAPL" + }, + "symbol": "AAPLON" + } + ], + "0xe2f39519240814a77047490357ced4d094b6c9c7": [ + { + "address": "0xdAC17F958D2ee523a2206206994597C13D831ec7", + "aggregators": [ + "Metamask", + "1inch", + "LiFi", + "Socket", + "Rubic", + "Squid", + "Rango", + "Sonarwatch", + "SushiSwap", + "PMM", + "Bancor" + ], + "decimals": 6, + "image": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xdac17f958d2ee523a2206206994597c13d831ec7.png", + "name": "Tether USD", + "symbol": "USDT" + }, + { + "address": "0xacA92E438df0B2401fF60dA7E4337B687a2435DA", + "aggregators": ["metamask", "liFi", "socket", "rubic", "rango"], + "decimals": 6, + "image": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xaca92e438df0b2401ff60da7e4337b687a2435da.png", + "name": "MetaMask USD", + "symbol": "MUSD" + } + ], + "0xeeeab71a5989b7951389e3df313ea9876508856f": [ + { + "address": "0x14c3abF95Cb9C93a8b82C1CdCB76D72Cb87b2d4c", + "aggregators": ["CoinGecko", "Rubic", "Rango", "Ondo"], + "decimals": 18, + "image": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x14c3abf95cb9c93a8b82c1cdcb76d72cb87b2d4c.png", + "name": "Apple (Ondo Tokenized)", + "rwaData": { + "instrumentType": "stock", + "market": { + "nextClose": "2026-03-19T19:59:00.000Z", + "nextOpen": "2026-03-19T20:01:00.000Z" + }, + "nextPause": { + "end": null, + "start": null + }, + "ticker": "AAPL" + }, + "symbol": "AAPLON" + } + ], + "0xf25bd11c334507fd007d584e2d0b7b2c6543f714": [ + { + "address": "0xacA92E438df0B2401fF60dA7E4337B687a2435DA", + "aggregators": ["Metamask", "LiFi", "Socket", "Rango"], + "decimals": 6, + "image": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xaca92e438df0b2401ff60da7e4337b687a2435da.png", + "name": "MetaMask USD", + "symbol": "MUSD" + }, + { + "address": "0xD4419C2d3DAA986Dc30444Fa333a846be44Fd1eb", + "aggregators": ["CoinMarketCap", "Socket", "Rango", "Sonarwatch"], + "decimals": 18, + "image": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xd4419c2d3daa986dc30444fa333a846be44fd1eb.png", + "name": "ZIK coin", + "symbol": "ZIK" + } + ] + }, + "0x10e6": { + "0x141d32a89a1e0a5ef360034a2f60a4b917c18838": [ + { + "address": "0xB8CE59FC3717ada4C02eaDF9682A9e934F625ebb", + "aggregators": [], + "decimals": 6, + "image": "https://static.cx.metamask.io/api/v2/tokenIcons/assets/eip155/4326/erc20/0xb8ce59fc3717ada4c02eadf9682a9e934f625ebb.png", + "name": "USDT0", + "symbol": "USDT0" + }, + { + "address": "0xFAfDdbb3FC7688494971a79cc65DCa3EF82079E7", + "aggregators": [], + "decimals": 18, + "image": "https://static.cx.metamask.io/api/v2/tokenIcons/assets/eip155/4326/erc20/0xfafddbb3fc7688494971a79cc65dca3ef82079e7.png", + "name": "MegaUSD", + "symbol": "USDm" + }, + { + "address": "0xB0F70C0bD6FD87dbEb7C10dC692a2a6106817072", + "aggregators": [], + "decimals": 8, + "image": "https://static.cx.metamask.io/api/v2/tokenIcons/assets/eip155/4326/erc20/0xb0f70c0bd6fd87dbeb7c10dc692a2a6106817072.png", + "name": "Bitcoin", + "symbol": "BTC.b" + }, + { + "address": "0xf7d2F0d0b0517CBDbf87C86910ce10FaAab3589D", + "aggregators": [], + "decimals": 18, + "image": "https://static.cx.metamask.io/api/v2/tokenIcons/assets/eip155/4326/erc20/0xf7d2f0d0b0517cbdbf87c86910ce10faaab3589d.png", + "name": "Crown Credits", + "symbol": "CROWN" + }, + { + "address": "0x2eA493384F42d7Ea78564F3EF4C86986eAB4a890", + "aggregators": [], + "decimals": 18, + "image": "https://static.cx.metamask.io/api/v2/tokenIcons/assets/eip155/4326/erc20/0x2ea493384f42d7ea78564f3ef4c86986eab4a890.png", + "name": "USDm Yield", + "symbol": "USDmY" + }, + { + "address": "0x601aC63637933D88285A025C685AC4e9a92a98dA", + "aggregators": [], + "decimals": 18, + "image": "https://static.cx.metamask.io/api/v2/tokenIcons/assets/eip155/4326/erc20/0x601ac63637933d88285a025c685ac4e9a92a98da.png", + "name": "Wrapped liquid staked Ether 2.0", + "symbol": "wstETH" + }, + { + "address": "0x551DFe38994eC53c9E7E18084D73893225Eea3bf", + "aggregators": [], + "decimals": 18, + "image": "https://static.cx.metamask.io/api/v2/tokenIcons/assets/eip155/4326/erc20/0x551dfe38994ec53c9e7e18084d73893225eea3bf.png", + "name": "Gains Network", + "symbol": "GNS" + }, + { + "address": "0x3F927036A6c29F50e1c2dfceba572FC40Cf39069", + "aggregators": [], + "decimals": 18, + "image": "https://static.cx.metamask.io/api/v2/tokenIcons/assets/eip155/4326/erc20/0x3f927036a6c29f50e1c2dfceba572fc40cf39069.png", + "name": "Kumbaya Pump Initiative", + "symbol": "KPI" + }, + { + "address": "0x1C4784308adB589c1ED3fa88A48B7FcEFba5FA3C", + "aggregators": [], + "decimals": 18, + "image": "https://static.cx.metamask.io/api/v2/tokenIcons/assets/eip155/4326/erc20/0x1c4784308adb589c1ed3fa88a48b7fcefba5fa3c.png", + "name": "Etch", + "symbol": "ECT" + }, + { + "address": "0x5d3a1Ff2b6BAb83b63cd9AD0787074081a52ef34", + "aggregators": [], + "decimals": 18, + "image": "https://static.cx.metamask.io/api/v2/tokenIcons/assets/eip155/4326/erc20/0x5d3a1ff2b6bab83b63cd9ad0787074081a52ef34.png", + "name": "USDe", + "symbol": "USDe" + }, + { + "address": "0x28B7E77f82B25B95953825F1E3eA0E36c1c29861", + "aggregators": [], + "decimals": 18, + "image": "https://static.cx.metamask.io/api/v2/tokenIcons/assets/eip155/4326/erc20/0x28b7e77f82b25b95953825f1e3ea0e36c1c29861.png", + "name": "MEGA", + "symbol": "MEGA" + }, + { + "address": "0x88887bE419578051FF9F4eb6C858A951921D8888", + "aggregators": [], + "decimals": 18, + "image": "https://static.cx.metamask.io/api/v2/tokenIcons/assets/eip155/4326/erc20/0x88887be419578051ff9f4eb6c858a951921d8888.png", + "name": "Staked Cap USD", + "symbol": "stcUSD" + } + ], + "0x30e8ccad5a980bdf30447f8c2c48e70989d9d294": [ + { + "address": "0xB8CE59FC3717ada4C02eaDF9682A9e934F625ebb", + "aggregators": [], + "decimals": 6, + "image": "https://static.cx.metamask.io/api/v2/tokenIcons/assets/eip155/4326/erc20/0xb8ce59fc3717ada4c02eadf9682a9e934f625ebb.png", + "name": "USDT0", + "symbol": "USDT0" + }, + { + "address": "0xFAfDdbb3FC7688494971a79cc65DCa3EF82079E7", + "aggregators": [], + "decimals": 18, + "image": "https://static.cx.metamask.io/api/v2/tokenIcons/assets/eip155/4326/erc20/0xfafddbb3fc7688494971a79cc65dca3ef82079e7.png", + "name": "MegaUSD", + "symbol": "USDm" + }, + { + "address": "0x3F927036A6c29F50e1c2dfceba572FC40Cf39069", + "aggregators": [], + "decimals": 18, + "image": "https://static.cx.metamask.io/api/v2/tokenIcons/assets/eip155/4326/erc20/0x3f927036a6c29f50e1c2dfceba572fc40cf39069.png", + "name": "Kumbaya Pump Initiative", + "symbol": "KPI" + }, + { + "address": "0xB0F70C0bD6FD87dbEb7C10dC692a2a6106817072", + "aggregators": [], + "decimals": 8, + "image": "https://static.cx.metamask.io/api/v2/tokenIcons/assets/eip155/4326/erc20/0xb0f70c0bd6fd87dbeb7c10dc692a2a6106817072.png", + "name": "Bitcoin", + "symbol": "BTC.b" + }, + { + "address": "0xf7d2F0d0b0517CBDbf87C86910ce10FaAab3589D", + "aggregators": [], + "decimals": 18, + "image": "https://static.cx.metamask.io/api/v2/tokenIcons/assets/eip155/4326/erc20/0xf7d2f0d0b0517cbdbf87c86910ce10faaab3589d.png", + "name": "Crown Credits", + "symbol": "CROWN" + }, + { + "address": "0x601aC63637933D88285A025C685AC4e9a92a98dA", + "aggregators": [], + "decimals": 18, + "image": "https://static.cx.metamask.io/api/v2/tokenIcons/assets/eip155/4326/erc20/0x601ac63637933d88285a025c685ac4e9a92a98da.png", + "name": "Wrapped liquid staked Ether 2.0", + "symbol": "wstETH" + }, + { + "address": "0x021ee124cF23D302A7f725AE7a01B77A8ce9782B", + "aggregators": [], + "decimals": 18, + "image": "https://static.cx.metamask.io/api/v2/tokenIcons/assets/eip155/4326/erc20/0x021ee124cf23d302a7f725ae7a01b77a8ce9782b.png", + "name": "Duck Token", + "symbol": "DUCK" + }, + { + "address": "0xcCcc62962d17b8914c62D74FfB843d73B2a3cccC", + "aggregators": [], + "decimals": 18, + "image": "https://static.cx.metamask.io/api/v2/tokenIcons/assets/eip155/4326/erc20/0xcccc62962d17b8914c62d74ffb843d73b2a3cccc.png", + "name": "Cap USD", + "symbol": "cUSD" + }, + { + "address": "0x551DFe38994eC53c9E7E18084D73893225Eea3bf", + "aggregators": [], + "decimals": 18, + "image": "https://static.cx.metamask.io/api/v2/tokenIcons/assets/eip155/4326/erc20/0x551dfe38994ec53c9e7e18084d73893225eea3bf.png", + "name": "Gains Network", + "symbol": "GNS" + }, + { + "address": "0x273D38762CEe7Db9474ec0FD37a94bBda198E6c0", + "aggregators": [], + "decimals": 18, + "image": "https://static.cx.metamask.io/api/v2/tokenIcons/assets/eip155/4326/erc20/0x273d38762cee7db9474ec0fd37a94bbda198e6c0.png", + "name": "KUMA", + "symbol": "KUMA" + }, + { + "address": "0x2eA493384F42d7Ea78564F3EF4C86986eAB4a890", + "aggregators": [], + "decimals": 18, + "image": "https://static.cx.metamask.io/api/v2/tokenIcons/assets/eip155/4326/erc20/0x2ea493384f42d7ea78564f3ef4c86986eab4a890.png", + "name": "USDm Yield", + "symbol": "USDmY" + }, + { + "address": "0x118b949f2CaF55F9D75cdE8D2F6C8fEC98376420", + "aggregators": [], + "decimals": 18, + "image": "https://static.cx.metamask.io/api/v2/tokenIcons/assets/eip155/4326/erc20/0x118b949f2caf55f9d75cde8d2f6c8fec98376420.png", + "name": "BUN", + "symbol": "BUN" + }, + { + "address": "0x141cF6BFe9D5057883B9BECB39fEE8A62982dC93", + "aggregators": [], + "decimals": 18, + "image": "https://static.cx.metamask.io/api/v2/tokenIcons/assets/eip155/4326/erc20/0x141cf6bfe9d5057883b9becb39fee8a62982dc93.png", + "name": "Sigma Bunny", + "symbol": "Σ:" + }, + { + "address": "0x1f2C6BF8d3Cbd7EF80d9dd42A21b297a0a7af136", + "aggregators": [], + "decimals": 18, + "image": "https://static.cx.metamask.io/api/v2/tokenIcons/assets/eip155/4326/erc20/0x1f2c6bf8d3cbd7ef80d9dd42a21b297a0a7af136.png", + "name": "The World Computer", + "symbol": "WORLDCOMP" + }, + { + "address": "0x0C833bcDd2dC74d7a8Dca82ed011E32d04Fe5843", + "aggregators": [], + "decimals": 18, + "image": "https://static.cx.metamask.io/api/v2/tokenIcons/assets/eip155/4326/erc20/0x0c833bcdd2dc74d7a8dca82ed011e32d04fe5843.png", + "name": "Make Ethereum Great Again", + "symbol": "MEGA" + }, + { + "address": "0x16513005E80A20683b3527f977Ff74166F6Bcf73", + "aggregators": [], + "image": "https://static.cx.metamask.io/api/v2/tokenIcons/assets/eip155/4326/erc20/0x16513005e80a20683b3527f977ff74166f6bcf73.png" + }, + { + "address": "0x5d3a1Ff2b6BAb83b63cd9AD0787074081a52ef34", + "aggregators": [], + "decimals": 18, + "image": "https://static.cx.metamask.io/api/v2/tokenIcons/assets/eip155/4326/erc20/0x5d3a1ff2b6bab83b63cd9ad0787074081a52ef34.png", + "name": "USDe", + "symbol": "USDe" + }, + { + "address": "0x28B7E77f82B25B95953825F1E3eA0E36c1c29861", + "aggregators": [], + "decimals": 18, + "image": "https://static.cx.metamask.io/api/v2/tokenIcons/assets/eip155/4326/erc20/0x28b7e77f82b25b95953825f1e3ea0e36c1c29861.png", + "name": "MEGA", + "symbol": "MEGA" + }, + { + "address": "0x2A3a4c92ce37ABd7239fB010BC390710f4062407", + "aggregators": [], + "decimals": 18, + "image": "https://static.cx.metamask.io/api/v2/tokenIcons/assets/eip155/4326/erc20/0x2a3a4c92ce37abd7239fb010bc390710f4062407.png", + "name": "Fluffey", + "symbol": "FLUFFEY" + }, + { + "address": "0x39894d0B1aa402ae565678fc47F31717Ac2ae888", + "aggregators": [], + "decimals": 18, + "image": "https://static.cx.metamask.io/api/v2/tokenIcons/assets/eip155/4326/erc20/0x39894d0b1aa402ae565678fc47f31717ac2ae888.png", + "name": "Ronnie Red", + "symbol": "RONNIE" + }, + { + "address": "0x88887bE419578051FF9F4eb6C858A951921D8888", + "aggregators": [], + "decimals": 18, + "image": "https://static.cx.metamask.io/api/v2/tokenIcons/assets/eip155/4326/erc20/0x88887be419578051ff9f4eb6c858a951921d8888.png", + "name": "Staked Cap USD", + "symbol": "stcUSD" + } + ], + "0x422b8d8914cdad779f587414d647e953bb3a87db": [ + { + "address": "0xB8CE59FC3717ada4C02eaDF9682A9e934F625ebb", + "aggregators": [], + "decimals": 6, + "image": "https://static.cx.metamask.io/api/v2/tokenIcons/assets/eip155/4326/erc20/0xb8ce59fc3717ada4c02eadf9682a9e934f625ebb.png", + "name": "USDT0", + "symbol": "USDT0" + }, + { + "address": "0xFAfDdbb3FC7688494971a79cc65DCa3EF82079E7", + "aggregators": [], + "decimals": 18, + "image": "https://static.cx.metamask.io/api/v2/tokenIcons/assets/eip155/4326/erc20/0xfafddbb3fc7688494971a79cc65dca3ef82079e7.png", + "name": "MegaUSD", + "symbol": "USDm" + }, + { + "address": "0x3F927036A6c29F50e1c2dfceba572FC40Cf39069", + "aggregators": [], + "decimals": 18, + "image": "https://static.cx.metamask.io/api/v2/tokenIcons/assets/eip155/4326/erc20/0x3f927036a6c29f50e1c2dfceba572fc40cf39069.png", + "name": "Kumbaya Pump Initiative", + "symbol": "KPI" + }, + { + "address": "0xB0F70C0bD6FD87dbEb7C10dC692a2a6106817072", + "aggregators": [], + "decimals": 8, + "image": "https://static.cx.metamask.io/api/v2/tokenIcons/assets/eip155/4326/erc20/0xb0f70c0bd6fd87dbeb7c10dc692a2a6106817072.png", + "name": "Bitcoin", + "symbol": "BTC.b" + }, + { + "address": "0x601aC63637933D88285A025C685AC4e9a92a98dA", + "aggregators": [], + "decimals": 18, + "image": "https://static.cx.metamask.io/api/v2/tokenIcons/assets/eip155/4326/erc20/0x601ac63637933d88285a025c685ac4e9a92a98da.png", + "name": "Wrapped liquid staked Ether 2.0", + "symbol": "wstETH" + } + ], + "0x452ca3dad6db7f3a47bbf15b758b6749db579bbc": [ + { + "address": "0xB8CE59FC3717ada4C02eaDF9682A9e934F625ebb", + "aggregators": [], + "decimals": 6, + "image": "https://static.cx.metamask.io/api/v2/tokenIcons/assets/eip155/4326/erc20/0xb8ce59fc3717ada4c02eadf9682a9e934f625ebb.png", + "name": "USDT0", + "symbol": "USDT0" + }, + { + "address": "0x5d3a1Ff2b6BAb83b63cd9AD0787074081a52ef34", + "aggregators": [], + "decimals": 18, + "image": "https://static.cx.metamask.io/api/v2/tokenIcons/assets/eip155/4326/erc20/0x5d3a1ff2b6bab83b63cd9ad0787074081a52ef34.png", + "name": "USDe", + "symbol": "USDe" + }, + { + "address": "0xFAfDdbb3FC7688494971a79cc65DCa3EF82079E7", + "aggregators": [], + "decimals": 18, + "image": "https://static.cx.metamask.io/api/v2/tokenIcons/assets/eip155/4326/erc20/0xfafddbb3fc7688494971a79cc65dca3ef82079e7.png", + "name": "MegaUSD", + "symbol": "USDm" + }, + { + "address": "0xB0F70C0bD6FD87dbEb7C10dC692a2a6106817072", + "aggregators": [], + "decimals": 8, + "image": "https://static.cx.metamask.io/api/v2/tokenIcons/assets/eip155/4326/erc20/0xb0f70c0bd6fd87dbeb7c10dc692a2a6106817072.png", + "name": "Bitcoin", + "symbol": "BTC.b" + }, + { + "address": "0x601aC63637933D88285A025C685AC4e9a92a98dA", + "aggregators": [], + "decimals": 18, + "image": "https://static.cx.metamask.io/api/v2/tokenIcons/assets/eip155/4326/erc20/0x601ac63637933d88285a025c685ac4e9a92a98da.png", + "name": "Wrapped liquid staked Ether 2.0", + "symbol": "wstETH" + } + ], + "0xb3864b298f4fddbbbd2fa5cf1a2a2748932b3b81": [ + { + "address": "0xB8CE59FC3717ada4C02eaDF9682A9e934F625ebb", + "aggregators": [], + "decimals": 6, + "image": "https://static.cx.metamask.io/api/v2/tokenIcons/assets/eip155/4326/erc20/0xb8ce59fc3717ada4c02eadf9682a9e934f625ebb.png", + "name": "USDT0", + "symbol": "USDT0" + }, + { + "address": "0xFAfDdbb3FC7688494971a79cc65DCa3EF82079E7", + "aggregators": [], + "decimals": 18, + "image": "https://static.cx.metamask.io/api/v2/tokenIcons/assets/eip155/4326/erc20/0xfafddbb3fc7688494971a79cc65dca3ef82079e7.png", + "name": "MegaUSD", + "symbol": "USDm" + }, + { + "address": "0x3F927036A6c29F50e1c2dfceba572FC40Cf39069", + "aggregators": [], + "decimals": 18, + "image": "https://static.cx.metamask.io/api/v2/tokenIcons/assets/eip155/4326/erc20/0x3f927036a6c29f50e1c2dfceba572fc40cf39069.png", + "name": "Kumbaya Pump Initiative", + "symbol": "KPI" + }, + { + "address": "0xB0F70C0bD6FD87dbEb7C10dC692a2a6106817072", + "aggregators": [], + "decimals": 8, + "image": "https://static.cx.metamask.io/api/v2/tokenIcons/assets/eip155/4326/erc20/0xb0f70c0bd6fd87dbeb7c10dc692a2a6106817072.png", + "name": "Bitcoin", + "symbol": "BTC.b" + }, + { + "address": "0x601aC63637933D88285A025C685AC4e9a92a98dA", + "aggregators": [], + "decimals": 18, + "image": "https://static.cx.metamask.io/api/v2/tokenIcons/assets/eip155/4326/erc20/0x601ac63637933d88285a025c685ac4e9a92a98da.png", + "name": "Wrapped liquid staked Ether 2.0", + "symbol": "wstETH" + }, + { + "address": "0x5d3a1Ff2b6BAb83b63cd9AD0787074081a52ef34", + "aggregators": [], + "decimals": 18, + "image": "https://static.cx.metamask.io/api/v2/tokenIcons/assets/eip155/4326/erc20/0x5d3a1ff2b6bab83b63cd9ad0787074081a52ef34.png", + "name": "USDe", + "symbol": "USDe" + } + ], + "0xe2f39519240814a77047490357ced4d094b6c9c7": [ + { + "address": "0xB8CE59FC3717ada4C02eaDF9682A9e934F625ebb", + "aggregators": [], + "decimals": 6, + "image": "https://static.cx.metamask.io/api/v2/tokenIcons/assets/eip155/4326/erc20/0xb8ce59fc3717ada4c02eadf9682a9e934f625ebb.png", + "name": "USDT0", + "symbol": "USDT0" + }, + { + "address": "0xFAfDdbb3FC7688494971a79cc65DCa3EF82079E7", + "aggregators": [], + "decimals": 18, + "image": "https://static.cx.metamask.io/api/v2/tokenIcons/assets/eip155/4326/erc20/0xfafddbb3fc7688494971a79cc65dca3ef82079e7.png", + "name": "MegaUSD", + "symbol": "USDm" + }, + { + "address": "0xB0F70C0bD6FD87dbEb7C10dC692a2a6106817072", + "aggregators": [], + "decimals": 8, + "image": "https://static.cx.metamask.io/api/v2/tokenIcons/assets/eip155/4326/erc20/0xb0f70c0bd6fd87dbeb7c10dc692a2a6106817072.png", + "name": "Bitcoin", + "symbol": "BTC.b" + }, + { + "address": "0xf7d2F0d0b0517CBDbf87C86910ce10FaAab3589D", + "aggregators": [], + "decimals": 18, + "image": "https://static.cx.metamask.io/api/v2/tokenIcons/assets/eip155/4326/erc20/0xf7d2f0d0b0517cbdbf87c86910ce10faaab3589d.png", + "name": "Crown Credits", + "symbol": "CROWN" + }, + { + "address": "0x601aC63637933D88285A025C685AC4e9a92a98dA", + "aggregators": [], + "decimals": 18, + "image": "https://static.cx.metamask.io/api/v2/tokenIcons/assets/eip155/4326/erc20/0x601ac63637933d88285a025c685ac4e9a92a98da.png", + "name": "Wrapped liquid staked Ether 2.0", + "symbol": "wstETH" + }, + { + "address": "0x5d3a1Ff2b6BAb83b63cd9AD0787074081a52ef34", + "aggregators": [], + "decimals": 18, + "image": "https://static.cx.metamask.io/api/v2/tokenIcons/assets/eip155/4326/erc20/0x5d3a1ff2b6bab83b63cd9ad0787074081a52ef34.png", + "name": "USDe", + "symbol": "USDe" + }, + { + "address": "0x28B7E77f82B25B95953825F1E3eA0E36c1c29861", + "aggregators": [], + "decimals": 18, + "image": "https://static.cx.metamask.io/api/v2/tokenIcons/assets/eip155/4326/erc20/0x28b7e77f82b25b95953825f1e3ea0e36c1c29861.png", + "name": "MEGA", + "symbol": "MEGA" + } + ], + "0xf25bd11c334507fd007d584e2d0b7b2c6543f714": [ + { + "address": "0xB8CE59FC3717ada4C02eaDF9682A9e934F625ebb", + "aggregators": [], + "decimals": 6, + "image": "https://static.cx.metamask.io/api/v2/tokenIcons/assets/eip155/4326/erc20/0xb8ce59fc3717ada4c02eadf9682a9e934f625ebb.png", + "name": "USDT0", + "symbol": "USDT0" + }, + { + "address": "0xFAfDdbb3FC7688494971a79cc65DCa3EF82079E7", + "aggregators": [], + "decimals": 18, + "image": "https://static.cx.metamask.io/api/v2/tokenIcons/assets/eip155/4326/erc20/0xfafddbb3fc7688494971a79cc65dca3ef82079e7.png", + "name": "MegaUSD", + "symbol": "USDm" + }, + { + "address": "0x3F927036A6c29F50e1c2dfceba572FC40Cf39069", + "aggregators": [], + "decimals": 18, + "image": "https://static.cx.metamask.io/api/v2/tokenIcons/assets/eip155/4326/erc20/0x3f927036a6c29f50e1c2dfceba572fc40cf39069.png", + "name": "Kumbaya Pump Initiative", + "symbol": "KPI" + }, + { + "address": "0xB0F70C0bD6FD87dbEb7C10dC692a2a6106817072", + "aggregators": [], + "decimals": 8, + "image": "https://static.cx.metamask.io/api/v2/tokenIcons/assets/eip155/4326/erc20/0xb0f70c0bd6fd87dbeb7c10dc692a2a6106817072.png", + "name": "Bitcoin", + "symbol": "BTC.b" + }, + { + "address": "0xf7d2F0d0b0517CBDbf87C86910ce10FaAab3589D", + "aggregators": [], + "decimals": 18, + "image": "https://static.cx.metamask.io/api/v2/tokenIcons/assets/eip155/4326/erc20/0xf7d2f0d0b0517cbdbf87c86910ce10faaab3589d.png", + "name": "Crown Credits", + "symbol": "CROWN" + }, + { + "address": "0x2eA493384F42d7Ea78564F3EF4C86986eAB4a890", + "aggregators": [], + "decimals": 18, + "image": "https://static.cx.metamask.io/api/v2/tokenIcons/assets/eip155/4326/erc20/0x2ea493384f42d7ea78564f3ef4c86986eab4a890.png", + "name": "USDm Yield", + "symbol": "USDmY" + }, + { + "address": "0x551DFe38994eC53c9E7E18084D73893225Eea3bf", + "aggregators": [], + "decimals": 18, + "image": "https://static.cx.metamask.io/api/v2/tokenIcons/assets/eip155/4326/erc20/0x551dfe38994ec53c9e7e18084d73893225eea3bf.png", + "name": "Gains Network", + "symbol": "GNS" + }, + { + "address": "0x601aC63637933D88285A025C685AC4e9a92a98dA", + "aggregators": [], + "decimals": 18, + "image": "https://static.cx.metamask.io/api/v2/tokenIcons/assets/eip155/4326/erc20/0x601ac63637933d88285a025c685ac4e9a92a98da.png", + "name": "Wrapped liquid staked Ether 2.0", + "symbol": "wstETH" + }, + { + "address": "0xcCcc62962d17b8914c62D74FfB843d73B2a3cccC", + "aggregators": [], + "decimals": 18, + "image": "https://static.cx.metamask.io/api/v2/tokenIcons/assets/eip155/4326/erc20/0xcccc62962d17b8914c62d74ffb843d73b2a3cccc.png", + "name": "Cap USD", + "symbol": "cUSD" + }, + { + "address": "0x1f2C6BF8d3Cbd7EF80d9dd42A21b297a0a7af136", + "aggregators": [], + "decimals": 18, + "image": "https://static.cx.metamask.io/api/v2/tokenIcons/assets/eip155/4326/erc20/0x1f2c6bf8d3cbd7ef80d9dd42a21b297a0a7af136.png", + "name": "The World Computer", + "symbol": "WORLDCOMP" + }, + { + "address": "0x27a4A176007047A9470dbaEd609290F68815B069", + "aggregators": [], + "image": "https://static.cx.metamask.io/api/v2/tokenIcons/assets/eip155/4326/erc20/0x27a4a176007047a9470dbaed609290f68815b069.png" + }, + { + "address": "0x16513005E80A20683b3527f977Ff74166F6Bcf73", + "aggregators": [], + "image": "https://static.cx.metamask.io/api/v2/tokenIcons/assets/eip155/4326/erc20/0x16513005e80a20683b3527f977ff74166f6bcf73.png" + }, + { + "address": "0x021ee124cF23D302A7f725AE7a01B77A8ce9782B", + "aggregators": [], + "decimals": 18, + "image": "https://static.cx.metamask.io/api/v2/tokenIcons/assets/eip155/4326/erc20/0x021ee124cf23d302a7f725ae7a01b77a8ce9782b.png", + "name": "Duck Token", + "symbol": "DUCK" + }, + { + "address": "0x0C833bcDd2dC74d7a8Dca82ed011E32d04Fe5843", + "aggregators": [], + "decimals": 18, + "image": "https://static.cx.metamask.io/api/v2/tokenIcons/assets/eip155/4326/erc20/0x0c833bcdd2dc74d7a8dca82ed011e32d04fe5843.png", + "name": "Make Ethereum Great Again", + "symbol": "MEGA" + }, + { + "address": "0x5d3a1Ff2b6BAb83b63cd9AD0787074081a52ef34", + "aggregators": [], + "decimals": 18, + "image": "https://static.cx.metamask.io/api/v2/tokenIcons/assets/eip155/4326/erc20/0x5d3a1ff2b6bab83b63cd9ad0787074081a52ef34.png", + "name": "USDe", + "symbol": "USDe" + }, + { + "address": "0x28B7E77f82B25B95953825F1E3eA0E36c1c29861", + "aggregators": [], + "decimals": 18, + "image": "https://static.cx.metamask.io/api/v2/tokenIcons/assets/eip155/4326/erc20/0x28b7e77f82b25b95953825f1e3ea0e36c1c29861.png", + "name": "MEGA", + "symbol": "MEGA" + }, + { + "address": "0x88887bE419578051FF9F4eb6C858A951921D8888", + "aggregators": [], + "decimals": 18, + "image": "https://static.cx.metamask.io/api/v2/tokenIcons/assets/eip155/4326/erc20/0x88887be419578051ff9f4eb6c858a951921d8888.png", + "name": "Staked Cap USD", + "symbol": "stcUSD" + } + ] + }, + "0x2105": { + "0x141d32a89a1e0a5ef360034a2f60a4b917c18838": [ + { + "address": "0x07d15798a67253D76cea61F0eA6F57AeDC59DffB", + "aggregators": ["CoinGecko", "Rubic", "Rango"], + "decimals": 18, + "image": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x07d15798a67253d76cea61f0ea6f57aedc59dffb.png", + "name": "Based Coin", + "symbol": "BASED" + }, + { + "address": "0x3d63825B0d8669307366E6c8202f656b9E91D368", + "aggregators": ["CoinGecko", "Socket", "Rubic"], + "decimals": 6, + "image": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x3d63825b0d8669307366e6c8202f656b9e91d368.png", + "name": "Wild Goat Coin", + "symbol": "WGC" + }, + { + "address": "0x623cD3a3EdF080057892aaF8D773Bbb7A5C9b6e9", + "aggregators": [ + "CoinGecko", + "LiFi", + "Rubic", + "Rango", + "Sonarwatch" + ], + "decimals": 18, + "image": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x623cd3a3edf080057892aaf8d773bbb7a5c9b6e9.png", + "name": "Sekuya Multiverse", + "symbol": "SKYA" + }, + { + "address": "0x88Fb150BDc53A65fe94Dea0c9BA0a6dAf8C6e196", + "aggregators": ["CoinGecko", "LiFi", "Rubic", "Rango"], + "decimals": 18, + "image": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x88fb150bdc53a65fe94dea0c9ba0a6daf8c6e196.png", + "name": "ChainLink Token", + "symbol": "LINK" + }, + { + "address": "0xC438B0c0E80A8Fa1B36898d1b36A3fc2eC371C54", + "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], + "decimals": 18, + "image": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xc438b0c0e80a8fa1b36898d1b36a3fc2ec371c54.png", + "name": "Blep Super Meme", + "symbol": "BLEP" + }, + { + "address": "0xCa72827a3D211CfD8F6b00Ac98824872b72CAb49", + "aggregators": [ + "CoinGecko", + "LiFi", + "Rubic", + "Rango", + "Sonarwatch" + ], + "decimals": 6, + "image": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xca72827a3d211cfd8f6b00ac98824872b72cab49.png", + "name": "Cygnus Finance Global USD", + "symbol": "CGUSD" + }, + { + "address": "0xD968196FA6977c4e58F2af5aC01C655ea8332d22", + "aggregators": ["Metamask", "Rubic", "Rango", "Sonarwatch"], + "decimals": 18, + "image": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xd968196fa6977c4e58f2af5ac01c655ea8332d22.png", + "name": "The Nation Token", + "symbol": "NATO" + } + ] + }, + "0x38": { + "0x141d32a89a1e0a5ef360034a2f60a4b917c18838": [ + { + "address": "0x000Ae314E2A2172a039B26378814C252734f556A", + "aggregators": [ + "PancakeExtended", + "1inch", + "LiFi", + "Rubic", + "Squid", + "Rango" + ], + "decimals": 18, + "image": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x000ae314e2a2172a039b26378814c252734f556a.png", + "name": "Aster", + "symbol": "ASTER" + }, + { + "address": "0x5CA42204cDaa70d5c773946e69dE942b85CA6706", + "aggregators": [ + "PancakeCoinMarketCap", + "Rubic", + "Rango", + "Sonarwatch" + ], + "decimals": 18, + "image": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x5ca42204cdaa70d5c773946e69de942b85ca6706.png", + "name": "Position", + "symbol": "POSI" + }, + { + "address": "0x683e9dCf085E5efCc7925858aAcE94D4b8882024", + "aggregators": ["PancakeCoinMarketCap", "Rubic", "Sonarwatch"], + "decimals": 9, + "image": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x683e9dcf085e5efcc7925858aace94d4b8882024.png", + "name": "TangYuan", + "symbol": "TANGYUAN" + }, + { + "address": "0x55d398326f99059fF775485246999027B3197955", + "aggregators": [ + "PancakeExtended", + "1inch", + "LiFi", + "TrustWallet", + "Socket", + "Rubic", + "Squid", + "Rango", + "Sonarwatch", + "SushiSwap" + ], + "decimals": 18, + "image": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x55d398326f99059ff775485246999027b3197955.png", + "name": "Tether USD", + "symbol": "USDT" + }, + { + "address": "0x1AF3F329e8BE154074D8769D1FFa4eE058B1DBc3", + "aggregators": [ + "PancakeExtended", + "1inch", + "LiFi", + "TrustWallet", + "Socket", + "Rubic", + "Rango", + "Sonarwatch", + "SushiSwap", + "BinanceDex" + ], + "decimals": 18, + "image": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x1af3f329e8be154074d8769d1ffa4ee058b1dbc3.png", + "name": "BNB pegged Dai Token", + "symbol": "DAI" + }, + { + "address": "0xF8A0BF9cF54Bb92F17374d9e9A321E6a111a51bD", + "aggregators": [ + "PancakeTop100", + "1inch", + "LiFi", + "TrustWallet", + "Socket", + "Rubic", + "Squid", + "Rango", + "Sonarwatch", + "SushiSwap" + ], + "decimals": 18, + "image": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xf8a0bf9cf54bb92f17374d9e9a321e6a111a51bd.png", + "name": "BNB pegged ChainLink", + "symbol": "LINK" + } + ], + "0x30e8ccad5a980bdf30447f8c2c48e70989d9d294": [ + { + "address": "0x55d398326f99059fF775485246999027B3197955", + "aggregators": [ + "PancakeExtended", + "1inch", + "LiFi", + "TrustWallet", + "Socket", + "Squid", + "Rango", + "Sonarwatch", + "SushiSwap" + ], + "decimals": 18, + "image": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x55d398326f99059ff775485246999027b3197955.png", + "name": "Tether USD", + "symbol": "USDT" + } + ], + "0xf25bd11c334507fd007d584e2d0b7b2c6543f714": [ + { + "address": "0x55d398326f99059fF775485246999027B3197955", + "aggregators": [ + "PancakeExtended", + "1inch", + "LiFi", + "TrustWallet", + "Socket", + "Squid", + "Rango", + "Sonarwatch", + "SushiSwap" + ], + "decimals": 18, + "image": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x55d398326f99059ff775485246999027b3197955.png", + "name": "Tether USD", + "symbol": "USDT" + } + ] + }, + "0x89": { + "0x141d32a89a1e0a5ef360034a2f60a4b917c18838": [ + { + "address": "0x53E0bca35eC356BD5ddDFebbD1Fc0fD03FaBad39", + "aggregators": [ + "QuickSwap", + "1inch", + "LiFi", + "TrustWallet", + "Socket", + "Rubic", + "Squid", + "Rango", + "Sonarwatch", + "SushiSwap" + ], + "decimals": 18, + "image": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x53e0bca35ec356bd5dddfebbd1fc0fd03fabad39.png", + "name": "ChainLink Token", + "symbol": "LINK" + }, + { + "address": "0xA649325Aa7C5093d12D6F98EB4378deAe68CE23F", + "aggregators": ["Socket", "Rubic", "Rango", "Sonarwatch"], + "decimals": 18, + "image": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0xa649325aa7c5093d12d6f98eb4378deae68ce23f.png", + "name": "Wrapped BNB", + "symbol": "WBNB" + }, + { + "address": "0xb33EaAd8d922B1083446DC23f610c2567fB5180f", + "aggregators": [ + "QuickSwap", + "1inch", + "LiFi", + "Socket", + "Rubic", + "Squid", + "Rango", + "Sonarwatch", + "SushiSwap" + ], + "decimals": 18, + "image": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0xb33eaad8d922b1083446dc23f610c2567fb5180f.png", + "name": "Uniswap", + "symbol": "UNI" + }, + { + "address": "0xc2132D05D31c914a87C6611C10748AEb04B58e8F", + "aggregators": [ + "QuickSwap", + "1inch", + "LiFi", + "TrustWallet", + "Socket", + "Rubic", + "Squid", + "Rango", + "Sonarwatch", + "SushiSwap" + ], + "decimals": 6, + "image": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0xc2132d05d31c914a87c6611c10748aeb04b58e8f.png", + "name": "(PoS) Tether USD", + "symbol": "USDT" + }, + { + "address": "0x2791Bca1f2de4661ED88A30C99A7a9449Aa84174", + "aggregators": [ + "Metamask", + "1inch", + "LiFi", + "TrustWallet", + "Socket", + "Rubic", + "Squid", + "Rango", + "Sonarwatch", + "SushiSwap" + ], + "decimals": 6, + "image": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x2791bca1f2de4661ed88a30c99a7a9449aa84174.png", + "name": "USD Coin (PoS)", + "symbol": "USDC.E" + } + ], + "0x30e8ccad5a980bdf30447f8c2c48e70989d9d294": [ + { + "address": "0xc2132D05D31c914a87C6611C10748AEb04B58e8F", + "aggregators": [ + "QuickSwap", + "1inch", + "LiFi", + "Socket", + "Squid", + "Rango", + "Sonarwatch", + "SushiSwap" + ], + "decimals": 6, + "image": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0xc2132d05d31c914a87c6611c10748aeb04b58e8f.png", + "name": "Tether USD", + "symbol": "USDT" + }, + { + "address": "0xb33EaAd8d922B1083446DC23f610c2567fB5180f", + "aggregators": [ + "QuickSwap", + "1inch", + "LiFi", + "Socket", + "Squid", + "Rango", + "Sonarwatch", + "SushiSwap" + ], + "decimals": 18, + "image": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0xb33eaad8d922b1083446dc23f610c2567fb5180f.png", + "name": "Uniswap", + "symbol": "UNI" + } + ], + "0xf25bd11c334507fd007d584e2d0b7b2c6543f714": [ + { + "address": "0xc2132D05D31c914a87C6611C10748AEb04B58e8F", + "aggregators": [ + "QuickSwap", + "1inch", + "LiFi", + "Socket", + "Squid", + "Rango", + "Sonarwatch", + "SushiSwap" + ], + "decimals": 6, + "image": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0xc2132d05d31c914a87c6611c10748aeb04b58e8f.png", + "name": "Tether USD", + "symbol": "USDT" + } + ] + }, + "0x8f": { + "0x141d32a89a1e0a5ef360034a2f60a4b917c18838": [ + { + "address": "0xacA92E438df0B2401fF60dA7E4337B687a2435DA", + "aggregators": ["dynamic"], + "decimals": 6, + "image": "https://static.cx.metamask.io/api/v1/tokenIcons/143/0xaca92e438df0b2401ff60da7e4337b687a2435da.png", + "name": "MetaMask USD", + "symbol": "mUSD" + } + ], + "0x30e8ccad5a980bdf30447f8c2c48e70989d9d294": [ + { + "address": "0xacA92E438df0B2401fF60dA7E4337B687a2435DA", + "aggregators": ["dynamic"], + "decimals": 6, + "image": "https://static.cx.metamask.io/api/v1/tokenIcons/143/0xaca92e438df0b2401ff60da7e4337b687a2435da.png", + "name": "MetaMask USD", + "symbol": "mUSD" + } + ], + "0xe2f39519240814a77047490357ced4d094b6c9c7": [ + { + "address": "0xacA92E438df0B2401fF60dA7E4337B687a2435DA", + "aggregators": ["dynamic"], + "decimals": 6, + "image": "https://static.cx.metamask.io/api/v1/tokenIcons/143/0xaca92e438df0b2401ff60da7e4337b687a2435da.png", + "name": "MetaMask USD", + "symbol": "mUSD" + } + ], + "0xf25bd11c334507fd007d584e2d0b7b2c6543f714": [ + { + "address": "0xacA92E438df0B2401fF60dA7E4337B687a2435DA", + "aggregators": ["dynamic"], + "decimals": 6, + "image": "https://static.cx.metamask.io/api/v1/tokenIcons/143/0xaca92e438df0b2401ff60da7e4337b687a2435da.png", + "name": "MetaMask USD", + "symbol": "mUSD" + } + ] + }, + "0xa": { + "0x141d32a89a1e0a5ef360034a2f60a4b917c18838": [ + { + "address": "0x0994206dfE8De6Ec6920FF4D779B0d950605Fb53", + "aggregators": [ + "Uniswap", + "1inch", + "LiFi", + "Socket", + "Rubic", + "Squid", + "Rango", + "Sonarwatch", + "SushiSwap" + ], + "decimals": 18, + "image": "https://static.cx.metamask.io/api/v1/tokenIcons/10/0x0994206dfe8de6ec6920ff4d779b0d950605fb53.png", + "name": "Curve DAO Token", + "symbol": "CRV" + }, + { + "address": "0xDA10009cBd5D07dd0CeCc66161FC93D7c9000da1", + "aggregators": [ + "Uniswap", + "1inch", + "LiFi", + "Socket", + "Rubic", + "Squid", + "Rango", + "Sonarwatch", + "SushiSwap" + ], + "decimals": 18, + "image": "https://static.cx.metamask.io/api/v1/tokenIcons/10/0xda10009cbd5d07dd0cecc66161fc93d7c9000da1.png", + "name": "Dai Stablecoin", + "symbol": "DAI" + }, + { + "address": "0x4200000000000000000000000000000000000042", + "aggregators": [ + "Uniswap", + "1inch", + "LiFi", + "Socket", + "Rubic", + "Squid", + "Rango", + "Sonarwatch", + "SushiSwap" + ], + "decimals": 18, + "image": "https://static.cx.metamask.io/api/v1/tokenIcons/10/0x4200000000000000000000000000000000000042.png", + "name": "Optimism", + "symbol": "OP" + }, + { + "address": "0x0b2C639c533813f4Aa9D7837CAf62653d097Ff85", + "aggregators": [ + "Uniswap", + "1inch", + "LiFi", + "Socket", + "Rubic", + "Squid", + "Rango", + "SushiSwap" + ], + "decimals": 6, + "image": "https://static.cx.metamask.io/api/v1/tokenIcons/10/0x0b2c639c533813f4aa9d7837caf62653d097ff85.png", + "name": "USD Coin", + "symbol": "USDC" + } + ] + }, + "0xa4b1": { + "0x04400bb51b1f886cff338eb2b4118f9ceb4e6fd5": [ + { + "address": "0xaf88d065e77c8cC2239327C5EDb3A432268e5831", + "aggregators": [ + "TraderJoe", + "1inch", + "LiFi", + "Socket", + "Rubic", + "Squid", + "Rango", + "Sonarwatch", + "SushiSwap" + ], + "decimals": 6, + "image": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0xaf88d065e77c8cc2239327c5edb3a432268e5831.png", + "name": "USD Coin (Native)", + "symbol": "USDC" + } + ], + "0x141d32a89a1e0a5ef360034a2f60a4b917c18838": [ + { + "address": "0xaf88d065e77c8cC2239327C5EDb3A432268e5831", + "aggregators": [ + "TraderJoe", + "1inch", + "LiFi", + "Socket", + "Rubic", + "Squid", + "Rango", + "Sonarwatch", + "SushiSwap" + ], + "decimals": 6, + "image": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0xaf88d065e77c8cc2239327c5edb3a432268e5831.png", + "name": "USD Coin (Native)", + "symbol": "USDC" + }, + { + "address": "0x306fD3e7b169Aa4ee19412323e1a5995B8c1a1f4", + "aggregators": ["CoinGecko", "Socket", "Rubic", "Rango"], + "decimals": 18, + "image": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0x306fd3e7b169aa4ee19412323e1a5995b8c1a1f4.png", + "name": "Black Agnus", + "symbol": "FTW" + } + ], + "0x30e8ccad5a980bdf30447f8c2c48e70989d9d294": [ + { + "address": "0xaf88d065e77c8cC2239327C5EDb3A432268e5831", + "aggregators": [ + "TraderJoe", + "1inch", + "LiFi", + "Socket", + "Rubic", + "Squid", + "Rango", + "Sonarwatch", + "SushiSwap" + ], + "decimals": 6, + "image": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0xaf88d065e77c8cc2239327c5edb3a432268e5831.png", + "name": "USD Coin (Native)", + "symbol": "USDC" + } + ] + }, + "0xa86a": { + "0x141d32a89a1e0a5ef360034a2f60a4b917c18838": [ + { + "address": "0xB97EF9Ef8734C71904D8002F8b6Bc66Dd9c48a6E", + "aggregators": [ + "TraderJoe", + "1inch", + "LiFi", + "TrustWallet", + "Socket", + "Rubic", + "Squid", + "Rango", + "Sonarwatch", + "SushiSwap" + ], + "decimals": 6, + "image": "https://static.cx.metamask.io/api/v1/tokenIcons/43114/0xb97ef9ef8734c71904d8002f8b6bc66dd9c48a6e.png", + "name": "USD Coin", + "symbol": "USDC" + } + ], + "0x30e8ccad5a980bdf30447f8c2c48e70989d9d294": [ + { + "address": "0xB97EF9Ef8734C71904D8002F8b6Bc66Dd9c48a6E", + "aggregators": [ + "TraderJoe", + "1inch", + "LiFi", + "TrustWallet", + "Socket", + "Rubic", + "Squid", + "Rango", + "Sonarwatch", + "SushiSwap" + ], + "decimals": 6, + "image": "https://static.cx.metamask.io/api/v1/tokenIcons/43114/0xb97ef9ef8734c71904d8002f8b6bc66dd9c48a6e.png", + "name": "USD Coin", + "symbol": "USDC" + } + ], + "0xf25bd11c334507fd007d584e2d0b7b2c6543f714": [ + { + "address": "0xB97EF9Ef8734C71904D8002F8b6Bc66Dd9c48a6E", + "aggregators": [ + "TraderJoe", + "1inch", + "LiFi", + "TrustWallet", + "Socket", + "Rubic", + "Squid", + "Rango", + "Sonarwatch", + "SushiSwap" + ], + "decimals": 6, + "image": "https://static.cx.metamask.io/api/v1/tokenIcons/43114/0xb97ef9ef8734c71904d8002f8b6bc66dd9c48a6e.png", + "name": "USD Coin", + "symbol": "USDC" + } + ] + }, + "0xe708": { + "0x141d32a89a1e0a5ef360034a2f60a4b917c18838": [ + { + "address": "0x176211869cA2b568f2A7D4EE941E073a821EE1ff", + "aggregators": [ + "Metamask", + "1inch", + "LiFi", + "Socket", + "Rubic", + "Squid", + "Rango", + "Sonarwatch", + "SushiSwap" + ], + "decimals": 6, + "image": "https://static.cx.metamask.io/api/v1/tokenIcons/59144/0x176211869ca2b568f2a7d4ee941e073a821ee1ff.png", + "name": "USDC", + "symbol": "USDC" + }, + { + "address": "0xacA92E438df0B2401fF60dA7E4337B687a2435DA", + "aggregators": [ + "Metamask", + "LiFi", + "Socket", + "Rubic", + "Squid", + "Rango" + ], + "decimals": 6, + "image": "https://static.cx.metamask.io/api/v1/tokenIcons/59144/0xaca92e438df0b2401ff60da7e4337b687a2435da.png", + "name": "MetaMask USD", + "symbol": "MUSD" + } + ], + "0x30e8ccad5a980bdf30447f8c2c48e70989d9d294": [ + { + "address": "0x176211869cA2b568f2A7D4EE941E073a821EE1ff", + "aggregators": [ + "Metamask", + "1inch", + "LiFi", + "Socket", + "Rubic", + "Squid", + "Rango", + "Sonarwatch", + "SushiSwap" + ], + "decimals": 6, + "image": "https://static.cx.metamask.io/api/v1/tokenIcons/59144/0x176211869ca2b568f2a7d4ee941e073a821ee1ff.png", + "name": "USDC", + "symbol": "USDC" + }, + { + "address": "0xacA92E438df0B2401fF60dA7E4337B687a2435DA", + "aggregators": [ + "Metamask", + "LiFi", + "Socket", + "Rubic", + "Squid", + "Rango" + ], + "decimals": 6, + "image": "https://static.cx.metamask.io/api/v1/tokenIcons/59144/0xaca92e438df0b2401ff60da7e4337b687a2435da.png", + "name": "MetaMask USD", + "symbol": "MUSD" + } + ], + "0xe2f39519240814a77047490357ced4d094b6c9c7": [ + { + "address": "0xacA92E438df0B2401fF60dA7E4337B687a2435DA", + "aggregators": [ + "metamask", + "liFi", + "socket", + "rubic", + "squid", + "rango" + ], + "decimals": 6, + "image": "https://static.cx.metamask.io/api/v1/tokenIcons/59144/0xaca92e438df0b2401ff60da7e4337b687a2435da.png", + "name": "MetaMask USD", + "symbol": "MUSD" + } + ], + "0xf25bd11c334507fd007d584e2d0b7b2c6543f714": [ + { + "address": "0xacA92E438df0B2401fF60dA7E4337B687a2435DA", + "aggregators": [ + "metamask", + "liFi", + "socket", + "rubic", + "squid", + "rango" + ], + "decimals": 6, + "image": "https://static.cx.metamask.io/api/v1/tokenIcons/59144/0xaca92e438df0b2401ff60da7e4337b687a2435da.png", + "name": "MetaMask USD", + "symbol": "MUSD" + } + ] + } + }, + "allIgnoredTokens": {}, + "allDetectedTokens": {}, + "tokenBalances": { + "0x04400bb51b1f886cff338eb2b4118f9ceb4e6fd5": { + "0x1": { + "0x0000000000000000000000000000000000000000": "0x0", + "0x4FEF9D741011476750A243aC70b9789a63dd47Df": "0x0" + }, + "0x10e6": { + "0x0000000000000000000000000000000000000000": "0x0" + }, + "0x89": { + "0x0000000000000000000000000000000000000000": "0x0" + }, + "0xa4b1": { + "0x0000000000000000000000000000000000000000": "0x0", + "0xaf88d065e77c8cC2239327C5EDb3A432268e5831": "0x0" + }, + "0xe708": { + "0x0000000000000000000000000000000000000000": "0x0" + } + }, + "0x141d32a89a1e0a5ef360034a2f60a4b917c18838": { + "0x1": { + "0x0000000000000000000000000000000000000000": "0x1f4cd90b253e", + "0x00e2B6D170740c15bF9Fb01D0B6e77C0d4510E32": "0xde0b6b3a7640000", + "0x14c3abF95Cb9C93a8b82C1CdCB76D72Cb87b2d4c": "0x30f7b2f4b3583b", + "0x4FEF9D741011476750A243aC70b9789a63dd47Df": "0x0", + "0x6B175474E89094C44Da98b954EedeAC495271d0F": "0x8ac7230489e80000", + "0xD4419C2d3DAA986Dc30444Fa333a846be44Fd1eb": "0xc08de6fcb28b80000", + "0xacA92E438df0B2401fF60dA7E4337B687a2435DA": "0x0" + }, + "0x10e6": { + "0x0000000000000000000000000000000000000000": "0x0", + "0x1C4784308adB589c1ED3fa88A48B7FcEFba5FA3C": "0x0", + "0x28B7E77f82B25B95953825F1E3eA0E36c1c29861": "0x0", + "0x2eA493384F42d7Ea78564F3EF4C86986eAB4a890": "0x0", + "0x3F927036A6c29F50e1c2dfceba572FC40Cf39069": "0x0", + "0x551DFe38994eC53c9E7E18084D73893225Eea3bf": "0x0", + "0x5d3a1Ff2b6BAb83b63cd9AD0787074081a52ef34": "0x0", + "0x601aC63637933D88285A025C685AC4e9a92a98dA": "0x0", + "0x88887bE419578051FF9F4eb6C858A951921D8888": "0x0", + "0xB0F70C0bD6FD87dbEb7C10dC692a2a6106817072": "0x0", + "0xB8CE59FC3717ada4C02eaDF9682A9e934F625ebb": "0x0", + "0xFAfDdbb3FC7688494971a79cc65DCa3EF82079E7": "0x0", + "0xf7d2F0d0b0517CBDbf87C86910ce10FaAab3589D": "0x0" + }, + "0x144": { + "0x0000000000000000000000000000000000000000": "0x0" + }, + "0x2105": { + "0x0000000000000000000000000000000000000000": "0x1dc7b15de86", + "0x02F66E8497D3BEBc362FE5DB32f7f38aE0519A16": "0x2086ac351052600000", + "0x07d15798a67253D76cea61F0eA6F57AeDC59DffB": "0x1271ead4473aa900000", + "0x0e54F282760e88755F1974f2Be6015863EE53498": "0x4b91a2de457e880000", + "0x2A1985ae2479f5A7ADbB0888715849e3D016Ba39": "0x2c0bb3dd30c4e200000", + "0x3d63825B0d8669307366E6c8202f656b9E91D368": "0x2710", + "0x5B1A31fa5fA14b776B88da8024F89Ad149c13938": "0x218711a00", + "0x623cD3a3EdF080057892aaF8D773Bbb7A5C9b6e9": "0x1a81aee160ff0000", + "0x866755664b6a10281dD24bdCFd61f25685CEBD02": "0x3635c9adc5dea00000", + "0x88Fb150BDc53A65fe94Dea0c9BA0a6dAf8C6e196": "0x1043797f1c7874", + "0x8C6F889888d22Ee1d8Aa2954B61b9F10E7402b95": "0x8ac7230489e800000", + "0x904EfBBaAB6CF3e4499968af1B68aa54D5b586DF": "0xa55740b8684d680000", + "0x97De3d1e109B822D52595BcbEA139cc551D380D1": "0xde0b6b3a7640000", + "0xAfB5d4d474693e68Df500c9c682E6A2841f9661A": "0xde0b6b3a7640000", + "0xC438B0c0E80A8Fa1B36898d1b36A3fc2eC371C54": "0x56bc75e2d63100000", + "0xCa72827a3D211CfD8F6b00Ac98824872b72CAb49": "0x4", + "0xD0349c25484009902AA8f1a7285eca916F35fB6c": "0x84231b97924ea600000", + "0xD968196FA6977c4e58F2af5aC01C655ea8332d22": "0x9cb37afa4ff786800000", + "0xa1Ca6299ba48366Af1845A9A8AE59B87ff0d5C01": "0x8ffb6787e8ad80000", + "0xc033b19Be126C9b49c0bD20A8b28ad7752856681": "0x1bc16d674ec80000", + "0xd0B293a81D4D4d998AAf8e2A4BBF74D3ed8a6eB3": "0xd3c21bcecceda1000000", + "0xe932099eC1e79246f4655E2c17266f745F20E767": "0x4a2cb71", + "0xf389724B320Ea4dBc03b8122D61052E1284A65DC": "0x4563918244f400000", + "0xfAf87e196A29969094bE35DfB0Ab9d0b8518dB84": "0x64" + }, + "0x38": { + "0x0000000000000000000000000000000000000000": "0x105e7a033200", + "0x000Ae314E2A2172a039B26378814C252734f556A": "0x1af6aaa3c79f6657", + "0x040AA55E6530d093E67063Cc4241BBd9F1E21B23": "0x1bc16d674ec80000", + "0x1AF3F329e8BE154074D8769D1FFa4eE058B1DBc3": "0x12c222a7a71ad747", + "0x1a089bD2BF13996f242b1095Fd5613a27b73462e": "0x8ac7230489e80000", + "0x238192cA437127fa2507b7AFC0F856Bcae50B257": "0x8ac7230489e80000", + "0x263b1302FCD7824B04fA516C5dd9650617A7B917": "0x1bc16d674ec80000", + "0x30F1452C1e5EA4935D6E95E198780E48F13cea78": "0x1bc16d674ec80000", + "0x32A6576DcF059bD56d567DE199032E3e8fd071C4": "0x8ac7230489e80000", + "0x3905dCadc3ea357dcBFb538D74Ed4995B5FBF290": "0x8ac7230489e80000", + "0x3Ae45a25f4f73d0157A0C0e3E47F8E7FFa16e99E": "0xcb49b44ba602d800000", + "0x539c26b6aeB813e79d59623CDccDD39f1988fEc7": "0x79a5c17ec748900000", + "0x55d398326f99059fF775485246999027B3197955": "0x82ef7bbbf675dccc", + "0x5B2571c1bF830b7b8ed29d3797702B7C998A1F43": "0x8ac7230489e80000", + "0x5CA42204cDaa70d5c773946e69dE942b85CA6706": "0x5af3107a4000", + "0x61F11808ac03130D0B32588aB0FB0233e6B36198": "0x8ac7230489e80000", + "0x64e0a598d63cb2eD989AeB56008833Bf9B94885B": "0x8ac7230489e80000", + "0x683e9dCf085E5efCc7925858aAcE94D4b8882024": "0x1", + "0x71b7491F27efA0735F366A7ABA437119B009730e": "0x8ac7230489e80000", + "0x7558405103757592b1d92EBdD00d1B8E3b55AdFe": "0x1ddb2e533b900", + "0x874f0520e98e77e02F53070514b48c331d0a46CD": "0x8ac7230489e80000", + "0x977d2191B32Da8Fa883ee4320373ef022FC655F3": "0xba43b7400", + "0xA2fcCEC4D19b0572A8cB9d8a912cAF2b250d352D": "0x321101208193b440000", + "0xCb0e23135c14307Dc436c3D2E03462D25A648744": "0x1bc16d674ec80000", + "0xD2F58f8a18fC9636F9122dBDc7e0a5B0d3F9FD09": "0x1bc16d674ec80000", + "0xF745742F3C8ff7bF7DdB9E9762e877E279aE4944": "0x8ac7230489e80000", + "0xF8A0BF9cF54Bb92F17374d9e9A321E6a111a51bD": "0x0", + "0xa18b59607B7286A6533FD8C7E8C9716eac9A5C73": "0x48d88e0f66c2a900000", + "0xa762C061C27Eb2C528F865F6e061d22439825797": "0x1bc16d674ec80000", + "0xaB6Ea9C404A3BA5A6dafc6C52010001535CA161c": "0x8ac7230489e80000", + "0xbF682D357E812B737A2a84bFD35B3EDc1eb8a96A": "0x1bc16d674ec80000", + "0xcd6A51559254030cA30C2FB2cbdf5c492e8Caf9c": "0x38637ff9e000", + "0xd2d87DBd59643E9d5DC56b0863e7bb24D163F446": "0x1bc16d674ec80000", + "0xd5da8318cE7ca005E8F5285Db0e750CA9256586e": "0xdf8475800" + }, + "0x89": { + "0x0000000000000000000000000000000000000000": "0xe3485cfd14b41c", + "0x035aB0CdD4387c53c4B54F6C647258F2Bd6C15aa": "0x378", + "0x07b1D6C3F66f800a8E6274a3c5331F76e7B58C39": "0x41cdb40", + "0x11a837101DF4e121b0c53693a26B7932967B10F4": "0x3120bec57b51c100000", + "0x191bbE4FA88617700FC9d2f29C34151f32deeaB7": "0x41cdb40", + "0x2791Bca1f2de4661ED88A30C99A7a9449Aa84174": "0x32a948", + "0x38c142510C4b079eAa9478900732F1b3DE23ee3f": "0x787471cb56e5f80000", + "0x53E0bca35eC356BD5ddDFebbD1Fc0fD03FaBad39": "0x0", + "0x6416668e4391354811EF715112e986F7B9685b3e": "0x365f6bd1e0d4cc0000", + "0x66bBB2b243Bda6997dd934b4C814A23D6AbE64f9": "0x8ac7230489e80000", + "0x825F8430D24Ddd2024E7334197b7dc593193608d": "0x41cdb40", + "0x87DF04A40F7f1A236Caba855fB59557b6B35A4FA": "0x3a3faed90e153a00000", + "0x8Ba59e1eA1706F935FA6E85957dBb8ea3C7C4ac6": "0xde0b6b3a7640000", + "0x9139D41DE4E6c41621831d36050149771812442b": "0xde0b6b3a7640000", + "0x950Ddb91842C58814ed4Ee7077Ce35632225797e": "0x41cdb40", + "0x97f9f6A663cC5973A8F467735963038eBb7403E9": "0xf4240", + "0x9837Aae738AdB82eD748f7d5CA29EEe780B05733": "0x3120bec57b51c100000", + "0xA649325Aa7C5093d12D6F98EB4378deAe68CE23F": "0x25eacbbf3918473", + "0xAB235FE45EBe2c2f48e4BfEbD462e4Dc830311eD": "0x3120bec57b51c100000", + "0xAf58754Ab375C22DA329B9125581439b228d130d": "0x3120bec57b51c100000", + "0xB4E073B6030691abc0AbbA383afF2098d90279Aa": "0x41cdb40", + "0xBeC3B73584401a6640cE3785dCa7dAd40903bBd1": "0x9502f900", + "0xC45c40db5e8c1b80E607EAD90675Ff9A3Bb1CF25": "0x124bc0ddd92e5600000", + "0xC9f29593Ac5F7d784b9C0bF72e203c26807A505d": "0xde0b6b3a76400000", + "0xF67e10ef8c10BAF3f921225E5e7C2d3fd33BdBE3": "0xfd217f5c3f20000", + "0xFF88eBd67802377FC12ba0B4Dfb8fBb83f1A6eE6": "0x1faa3b500", + "0xa1Ca6299ba48366Af1845A9A8AE59B87ff0d5C01": "0x821ab0d4414980000", + "0xa5A555a620d52c344c366680AB2763381BE5D2A1": "0xf9a113a83d66000", + "0xaDb4dC7aC8276b2af5A7ddA31B16fE854C97E18e": "0x9502f900", + "0xb33EaAd8d922B1083446DC23f610c2567fB5180f": "0x0", + "0xc2132D05D31c914a87C6611C10748AEb04B58e8F": "0x0", + "0xd9Ba5FF58d6eD0F8d32F85Ee96EbEB1cAC8F2e85": "0xde0b6b3a7640000", + "0xeb6a7b4772f1B0e94d35FB5c52117E00c3bd4a6E": "0x1bc16d674ec80000" + }, + "0x8f": { + "0x0000000000000000000000000000000000000000": "0xde0b6b3a7640000", + "0xacA92E438df0B2401fF60dA7E4337B687a2435DA": "0x0" + }, + "0xa": { + "0x0000000000000000000000000000000000000000": "0x7edb0185cd28", + "0x0994206dfE8De6Ec6920FF4D779B0d950605Fb53": "0x837371da297db4d2", + "0x0b2C639c533813f4Aa9D7837CAf62653d097Ff85": "0x1", + "0x4200000000000000000000000000000000000042": "0x44673379128b9c80", + "0x4F2626d297cafC35CCDba7eaa52d308E9E88866e": "0x29d8c8ea598f19c0000", + "0x7Ab067082Fa92BCAfF5d4820Bd42821DAbfD8Dc2": "0x6659436cf281800000", + "0x81A24fB968137791FD68E1a691225c5199a181Cb": "0x4136fa8e3b9aec0000", + "0xC3D354b2f89c7A1e7d0Bcee2a5fE815D6a529E08": "0xa1d13254cacd040000", + "0xDA10009cBd5D07dd0CeCc66161FC93D7c9000da1": "0x106ebb99ff1b9e", + "0xEF96f73742C190C03b089D09903fB55a0ca4b55F": "0xde0b6b3a7640000", + "0xfAf87e196A29969094bE35DfB0Ab9d0b8518dB84": "0x64" + }, + "0xa4b1": { + "0x0000000000000000000000000000000000000000": "0x2a742850646bc6", + "0x306fD3e7b169Aa4ee19412323e1a5995B8c1a1f4": "0x32d26d12e980b600000", + "0x77f5C25d6eE57d814084ddE8Cbbd6f28E477F08e": "0x6cf65a7e9047280000", + "0xaf01896CeB93C109ff82E5654B107Bec21478c15": "0x60022f5069000", + "0xaf88d065e77c8cC2239327C5EDb3A432268e5831": "0x0", + "0xfAf87e196A29969094bE35DfB0Ab9d0b8518dB84": "0x64" + }, + "0xa86a": { + "0x0000000000000000000000000000000000000000": "0x14e2a15f4e83457e", + "0xB97EF9Ef8734C71904D8002F8b6Bc66Dd9c48a6E": "0x0" + }, + "0xe708": { + "0x0000000000000000000000000000000000000000": "0x7a117a1ec8643", + "0x176211869cA2b568f2A7D4EE941E073a821EE1ff": "0x0", + "0xacA92E438df0B2401fF60dA7E4337B687a2435DA": "0x565e1c" + } + }, + "0x30e8ccad5a980bdf30447f8c2c48e70989d9d294": { + "0x1": { + "0x0000000000000000000000000000000000000000": "0x9704e71c9a6a", + "0x14c3abF95Cb9C93a8b82C1CdCB76D72Cb87b2d4c": "0x0", + "0x4FEF9D741011476750A243aC70b9789a63dd47Df": "0x0", + "0xD4419C2d3DAA986Dc30444Fa333a846be44Fd1eb": "0xc08de6fcb28b80000", + "0xacA92E438df0B2401fF60dA7E4337B687a2435DA": "0x24c902", + "0xdAC17F958D2ee523a2206206994597C13D831ec7": "0x0" + }, + "0x10e6": { + "0x0000000000000000000000000000000000000000": "0x0", + "0x021ee124cF23D302A7f725AE7a01B77A8ce9782B": "0x0", + "0x0C833bcDd2dC74d7a8Dca82ed011E32d04Fe5843": "0x0", + "0x118b949f2CaF55F9D75cdE8D2F6C8fEC98376420": "0x0", + "0x141cF6BFe9D5057883B9BECB39fEE8A62982dC93": "0x0", + "0x16513005E80A20683b3527f977Ff74166F6Bcf73": "0x0", + "0x1f2C6BF8d3Cbd7EF80d9dd42A21b297a0a7af136": "0x0", + "0x273D38762CEe7Db9474ec0FD37a94bBda198E6c0": "0x0", + "0x28B7E77f82B25B95953825F1E3eA0E36c1c29861": "0x0", + "0x2A3a4c92ce37ABd7239fB010BC390710f4062407": "0x0", + "0x2eA493384F42d7Ea78564F3EF4C86986eAB4a890": "0x0", + "0x39894d0B1aa402ae565678fc47F31717Ac2ae888": "0x0", + "0x3F927036A6c29F50e1c2dfceba572FC40Cf39069": "0x0", + "0x551DFe38994eC53c9E7E18084D73893225Eea3bf": "0x0", + "0x5d3a1Ff2b6BAb83b63cd9AD0787074081a52ef34": "0x0", + "0x601aC63637933D88285A025C685AC4e9a92a98dA": "0x0", + "0x88887bE419578051FF9F4eb6C858A951921D8888": "0x0", + "0xB0F70C0bD6FD87dbEb7C10dC692a2a6106817072": "0x0", + "0xB8CE59FC3717ada4C02eaDF9682A9e934F625ebb": "0x0", + "0xFAfDdbb3FC7688494971a79cc65DCa3EF82079E7": "0x0", + "0xcCcc62962d17b8914c62D74FfB843d73B2a3cccC": "0x0", + "0xf7d2F0d0b0517CBDbf87C86910ce10FaAab3589D": "0x0" + }, + "0x144": { + "0x0000000000000000000000000000000000000000": "0x0" + }, + "0x38": { + "0x0000000000000000000000000000000000000000": "0xd7eb132a37e", + "0x05cca08F1B0Fa640c2Ff8A8A812fFeA291fe7F1d": "0x29a2241af62c0000", + "0x2165e95Ca6B755A30cF898A3dE093329F16A1b3b": "0x6124fee993bc0000", + "0x238192cA437127fa2507b7AFC0F856Bcae50B257": "0x8ac7230489e80000", + "0x36B296E9213E4f3127920Cd48706fe829cE1487e": "0x6", + "0x3905dCadc3ea357dcBFb538D74Ed4995B5FBF290": "0x8ac7230489e80000", + "0x3b88c6C5ED2Cb655483144F34070cEDeC8a16683": "0x1a13b8600", + "0x3d93e4838109d8dfB5C7D8Cd5053FD888AEe0D09": "0x53444835ec580000", + "0x4A3e46FFa087Be7C90a9082357dA774d638BFBcB": "0x53444835ec580000", + "0x51265D0DF770626A85652BeA37C5937AeCb87Be0": "0xde0b6b3a7640000", + "0x543C4aFb301dd7b8A13a9Ebed82e081876d40fDb": "0x12a05f200", + "0x55d398326f99059fF775485246999027B3197955": "0x0", + "0x6430dCc0EB8752a4A0417afA5e57009148c7258F": "0x1bc16d674ec80000", + "0x64e0a598d63cb2eD989AeB56008833Bf9B94885B": "0x8ac7230489e80000", + "0x6c9B153fc404732f5d0Ff56a525dd7c287ef4444": "0x102f5a32294ca0000", + "0x82Dd30C377C7365A7b2bA1bbf8D11eA1ba163bCC": "0x4563918244f40000", + "0x874f0520e98e77e02F53070514b48c331d0a46CD": "0x8ac7230489e80000", + "0x92456A7E2daDDA3723Bf3B232AC9f705778C9D16": "0xde0b6b3a7640000", + "0x99A9D13fa0f80CBda958270Ea5B0fF5368C7b901": "0x4563918244f40000", + "0xB6C372c053972a78fa97eebE1a92AeF983691039": "0xde0b6b3a7640000", + "0xC26Cdfca6999D2Aa45Ab09ae2E4e9458B2fa18a2": "0x1bc16d674ec80000", + "0xC62D8d9073CEf1669e580aC485c02325FA1d4444": "0xde0b6b3a7640000", + "0xCAa3FeB2335e135138cBF4B8CDcA496590Df4444": "0x107ad8f556c6c0000", + "0xFAfC333334A8D712A948B611540D0eE5E9635044": "0x4563918244f40000", + "0xaB6Ea9C404A3BA5A6dafc6C52010001535CA161c": "0x8ac7230489e80000", + "0xc55DFe376a9949BD12725298AC2E06Da8C6e4Fe4": "0x29a2241af62c0000", + "0xd905D10F2f03FB5EF8129e373C57a311cB6Fc201": "0x53444835ec580000" + }, + "0x89": { + "0x0000000000000000000000000000000000000000": "0x6f12537d605987", + "0x0020145e57FdE9490F4a218aea320e8487De0124": "0x1bf08eb00", + "0x035aB0CdD4387c53c4B54F6C647258F2Bd6C15aa": "0x378", + "0x647Ad22E7c231ffaF742691D9de775B0977b7144": "0x12a05f200", + "0x8Ba59e1eA1706F935FA6E85957dBb8ea3C7C4ac6": "0xde0b6b3a7640000", + "0xF67e10ef8c10BAF3f921225E5e7C2d3fd33BdBE3": "0x136dcc951d8c0000", + "0xb33EaAd8d922B1083446DC23f610c2567fB5180f": "0x0", + "0xc2132D05D31c914a87C6611C10748AEb04B58e8F": "0x0" + }, + "0x8f": { + "0x0000000000000000000000000000000000000000": "0x108706bfee2c512c00", + "0xacA92E438df0B2401fF60dA7E4337B687a2435DA": "0x0" + }, + "0xa": { + "0x0000000000000000000000000000000000000000": "0x7f226965c2006", + "0x25dDb9Ffa1F63ADcC0b3aa11ca45d1d344a63848": "0x3e7", + "0xC34ee2618434c5F5cBd1784738Fb30cAF51Ce7a5": "0x3782dace9d900000", + "0xfAf87e196A29969094bE35DfB0Ab9d0b8518dB84": "0x64" + }, + "0xa4b1": { + "0x0000000000000000000000000000000000000000": "0x0", + "0xaf88d065e77c8cC2239327C5EDb3A432268e5831": "0x0" + }, + "0xa86a": { + "0x0000000000000000000000000000000000000000": "0x0", + "0xB97EF9Ef8734C71904D8002F8b6Bc66Dd9c48a6E": "0x30bac0" + }, + "0xaa36a7": {}, + "0xe708": { + "0x0000000000000000000000000000000000000000": "0x3d8529033a0fd", + "0x176211869cA2b568f2A7D4EE941E073a821EE1ff": "0x0", + "0xacA92E438df0B2401fF60dA7E4337B687a2435DA": "0x0" + } + }, + "0x422b8d8914cdad779f587414d647e953bb3a87db": { + "0x1": { + "0x0000000000000000000000000000000000000000": "0x0", + "0x4FEF9D741011476750A243aC70b9789a63dd47Df": "0x0" + }, + "0x10e6": { + "0x0000000000000000000000000000000000000000": "0x0", + "0x3F927036A6c29F50e1c2dfceba572FC40Cf39069": "0x0", + "0x601aC63637933D88285A025C685AC4e9a92a98dA": "0x0", + "0xB0F70C0bD6FD87dbEb7C10dC692a2a6106817072": "0x0", + "0xB8CE59FC3717ada4C02eaDF9682A9e934F625ebb": "0x0", + "0xFAfDdbb3FC7688494971a79cc65DCa3EF82079E7": "0x0" + }, + "0x89": { + "0x0000000000000000000000000000000000000000": "0x0" + }, + "0xa4b1": { + "0x0000000000000000000000000000000000000000": "0x0" + }, + "0xe708": { + "0x0000000000000000000000000000000000000000": "0x0" + } + }, + "0x452ca3dad6db7f3a47bbf15b758b6749db579bbc": { + "0x1": { + "0x0000000000000000000000000000000000000000": "0x0", + "0x4FEF9D741011476750A243aC70b9789a63dd47Df": "0x0" + }, + "0x10e6": { + "0x0000000000000000000000000000000000000000": "0x0", + "0x5d3a1Ff2b6BAb83b63cd9AD0787074081a52ef34": "0x0", + "0x601aC63637933D88285A025C685AC4e9a92a98dA": "0x0", + "0xB0F70C0bD6FD87dbEb7C10dC692a2a6106817072": "0x0", + "0xB8CE59FC3717ada4C02eaDF9682A9e934F625ebb": "0x0", + "0xFAfDdbb3FC7688494971a79cc65DCa3EF82079E7": "0x0" + }, + "0x144": { + "0x0000000000000000000000000000000000000000": "0x0" + }, + "0x38": { + "0x0000000000000000000000000000000000000000": "0x0" + }, + "0x89": { + "0x0000000000000000000000000000000000000000": "0x0" + }, + "0x8f": { + "0x0000000000000000000000000000000000000000": "0x0" + }, + "0xa4b1": { + "0x0000000000000000000000000000000000000000": "0x0" + }, + "0xa86a": { + "0x0000000000000000000000000000000000000000": "0x0" + }, + "0xe708": { + "0x0000000000000000000000000000000000000000": "0x0" + } + }, + "0x6eff00186ba65c5fade98d75aa4d99ef71fa461b": { + "0x1": { + "0x0000000000000000000000000000000000000000": "0x0", + "0x4FEF9D741011476750A243aC70b9789a63dd47Df": "0x0" + }, + "0x10e6": { + "0x0000000000000000000000000000000000000000": "0x0" + }, + "0x89": { + "0x0000000000000000000000000000000000000000": "0x0" + }, + "0xa4b1": { + "0x0000000000000000000000000000000000000000": "0x0" + }, + "0xe708": { + "0x0000000000000000000000000000000000000000": "0x0" + } + }, + "0x83ad6a1294d949d514361326bcebae4f73957327": { + "0x1": { + "0x0000000000000000000000000000000000000000": "0x0", + "0x4FEF9D741011476750A243aC70b9789a63dd47Df": "0x0" + }, + "0x10e6": {}, + "0x89": { + "0x0000000000000000000000000000000000000000": "0x0" + }, + "0xa4b1": {}, + "0xe708": { + "0x0000000000000000000000000000000000000000": "0x0" + } + }, + "0x9dc641ccd7d1e7c66e47a25598ace7219548d887": { + "0x1": { + "0x0000000000000000000000000000000000000000": "0x0", + "0x4FEF9D741011476750A243aC70b9789a63dd47Df": "0x0" + }, + "0x10e6": { + "0x0000000000000000000000000000000000000000": "0x0" + }, + "0x89": { + "0x0000000000000000000000000000000000000000": "0x0" + }, + "0xa4b1": { + "0x0000000000000000000000000000000000000000": "0x0" + }, + "0xe708": { + "0x0000000000000000000000000000000000000000": "0x0" + } + }, + "0xb3864b298f4fddbbbd2fa5cf1a2a2748932b3b81": { + "0x1": { + "0x0000000000000000000000000000000000000000": "0x0", + "0x14c3abF95Cb9C93a8b82C1CdCB76D72Cb87b2d4c": "0xf5286fb451e1ba", + "0x4FEF9D741011476750A243aC70b9789a63dd47Df": "0x0" + }, + "0x10e6": { + "0x0000000000000000000000000000000000000000": "0x0", + "0x3F927036A6c29F50e1c2dfceba572FC40Cf39069": "0x0", + "0x5d3a1Ff2b6BAb83b63cd9AD0787074081a52ef34": "0x0", + "0x601aC63637933D88285A025C685AC4e9a92a98dA": "0x0", + "0xB0F70C0bD6FD87dbEb7C10dC692a2a6106817072": "0x0", + "0xB8CE59FC3717ada4C02eaDF9682A9e934F625ebb": "0x0", + "0xFAfDdbb3FC7688494971a79cc65DCa3EF82079E7": "0x0" + }, + "0x89": { + "0x0000000000000000000000000000000000000000": "0x0" + }, + "0xa4b1": { + "0x0000000000000000000000000000000000000000": "0x0" + }, + "0xe708": { + "0x0000000000000000000000000000000000000000": "0x0" + } + }, + "0xe2f39519240814a77047490357ced4d094b6c9c7": { + "0x1": { + "0x0000000000000000000000000000000000000000": "0x41c73cfb9358", + "0x2e9555C4D34b96B0E76B641457293D5A9FbE4d03": "0x1bc16d674ec80000", + "0x4FEF9D741011476750A243aC70b9789a63dd47Df": "0x0", + "0x73f7D02D546025843F952A22aBd92050650cc3d4": "0x1bc16d674ec80000", + "0xacA92E438df0B2401fF60dA7E4337B687a2435DA": "0x0", + "0xb5fF0B0F9c2972801860D9ed823D648ACE067aEF": "0x1bc16d674ec80000", + "0xdAC17F958D2ee523a2206206994597C13D831ec7": "0x4381a7" + }, + "0x10e6": { + "0x0000000000000000000000000000000000000000": "0x0", + "0x28B7E77f82B25B95953825F1E3eA0E36c1c29861": "0x0", + "0x5d3a1Ff2b6BAb83b63cd9AD0787074081a52ef34": "0x0", + "0x601aC63637933D88285A025C685AC4e9a92a98dA": "0x0", + "0xB0F70C0bD6FD87dbEb7C10dC692a2a6106817072": "0x0", + "0xB8CE59FC3717ada4C02eaDF9682A9e934F625ebb": "0x0", + "0xFAfDdbb3FC7688494971a79cc65DCa3EF82079E7": "0x0", + "0xf7d2F0d0b0517CBDbf87C86910ce10FaAab3589D": "0x0" + }, + "0x144": { + "0x0000000000000000000000000000000000000000": "0x0" + }, + "0x38": { + "0x0000000000000000000000000000000000000000": "0x2b2d9397d85fe" + }, + "0x89": { + "0x0000000000000000000000000000000000000000": "0x0" + }, + "0x8f": { + "0x0000000000000000000000000000000000000000": "0x0", + "0xacA92E438df0B2401fF60dA7E4337B687a2435DA": "0x0" + }, + "0xa": { + "0x0000000000000000000000000000000000000000": "0x0" + }, + "0xa4b1": { + "0x0000000000000000000000000000000000000000": "0x0" + }, + "0xa86a": { + "0x0000000000000000000000000000000000000000": "0x0" + }, + "0xe708": { + "0x0000000000000000000000000000000000000000": "0x0", + "0xacA92E438df0B2401fF60dA7E4337B687a2435DA": "0x0" + } + }, + "0xeeeab71a5989b7951389e3df313ea9876508856f": { + "0x1": { + "0x0000000000000000000000000000000000000000": "0x0", + "0x14c3abF95Cb9C93a8b82C1CdCB76D72Cb87b2d4c": "0x0", + "0x4FEF9D741011476750A243aC70b9789a63dd47Df": "0x0" + }, + "0x10e6": { + "0x0000000000000000000000000000000000000000": "0x0" + }, + "0x89": { + "0x0000000000000000000000000000000000000000": "0x0" + }, + "0xa4b1": { + "0x0000000000000000000000000000000000000000": "0x0" + }, + "0xe708": { + "0x0000000000000000000000000000000000000000": "0x0" + } + }, + "0xf25bd11c334507fd007d584e2d0b7b2c6543f714": { + "0x1": { + "0x0000000000000000000000000000000000000000": "0x115f71506eaec", + "0x00e2B6D170740c15bF9Fb01D0B6e77C0d4510E32": "0xde0b6b3a7640000", + "0x4FEF9D741011476750A243aC70b9789a63dd47Df": "0x0", + "0xD4419C2d3DAA986Dc30444Fa333a846be44Fd1eb": "0x0", + "0xacA92E438df0B2401fF60dA7E4337B687a2435DA": "0x0" + }, + "0x10e6": { + "0x0000000000000000000000000000000000000000": "0x0", + "0x021ee124cF23D302A7f725AE7a01B77A8ce9782B": "0x0", + "0x0C833bcDd2dC74d7a8Dca82ed011E32d04Fe5843": "0x0", + "0x16513005E80A20683b3527f977Ff74166F6Bcf73": "0x0", + "0x1f2C6BF8d3Cbd7EF80d9dd42A21b297a0a7af136": "0x0", + "0x27a4A176007047A9470dbaEd609290F68815B069": "0x0", + "0x28B7E77f82B25B95953825F1E3eA0E36c1c29861": "0x0", + "0x2eA493384F42d7Ea78564F3EF4C86986eAB4a890": "0x0", + "0x3F927036A6c29F50e1c2dfceba572FC40Cf39069": "0x0", + "0x551DFe38994eC53c9E7E18084D73893225Eea3bf": "0x0", + "0x5d3a1Ff2b6BAb83b63cd9AD0787074081a52ef34": "0x0", + "0x601aC63637933D88285A025C685AC4e9a92a98dA": "0x0", + "0x88887bE419578051FF9F4eb6C858A951921D8888": "0x0", + "0xB0F70C0bD6FD87dbEb7C10dC692a2a6106817072": "0x0", + "0xB8CE59FC3717ada4C02eaDF9682A9e934F625ebb": "0x0", + "0xFAfDdbb3FC7688494971a79cc65DCa3EF82079E7": "0x0", + "0xcCcc62962d17b8914c62D74FfB843d73B2a3cccC": "0x0", + "0xf7d2F0d0b0517CBDbf87C86910ce10FaAab3589D": "0x0" + }, + "0x144": { + "0x0000000000000000000000000000000000000000": "0x0" + }, + "0x38": { + "0x0000000000000000000000000000000000000000": "0x77dc3f63900", + "0x195800B5956fF12F02B2ea6BDB34504642d7C7C7": "0x218711a00", + "0x1d4B9220D7EaF69F757fE15eb08eAc19647A6163": "0x56bc75e2d63100000", + "0x55d398326f99059fF775485246999027B3197955": "0xe692b3c06e30ec5", + "0x5EFda9b4ea8bd4dD66603E87B9Fd8D5d7CD8F721": "0x12a05f200" + }, + "0x89": { + "0x0000000000000000000000000000000000000000": "0x0", + "0xc2132D05D31c914a87C6611C10748AEb04B58e8F": "0x0" + }, + "0x8f": { + "0x0000000000000000000000000000000000000000": "0x0", + "0xacA92E438df0B2401fF60dA7E4337B687a2435DA": "0x0" + }, + "0xa": { + "0x0000000000000000000000000000000000000000": "0x421704ef", + "0xfAf87e196A29969094bE35DfB0Ab9d0b8518dB84": "0x64" + }, + "0xa4b1": { + "0x0000000000000000000000000000000000000000": "0x0" + }, + "0xa86a": { + "0x0000000000000000000000000000000000000000": "0x0", + "0xB97EF9Ef8734C71904D8002F8b6Bc66Dd9c48a6E": "0x0" + }, + "0xe708": { + "0x0000000000000000000000000000000000000000": "0x0", + "0xacA92E438df0B2401fF60dA7E4337B687a2435DA": "0x0" + } + } + }, + "smartTransactionsState": { + "smartTransactions": { + "0x1": [], + "0x38": [] + }, + "userOptIn": null, + "userOptInV2": null, + "fees": { + "approvalTxFees": null, + "tradeTxFees": null + }, + "liveness": true, + "livenessByChainId": { + "0x1": true, + "0xaa36a7": true, + "0x38": true + }, + "feesByChainId": { + "0x1": { + "approvalTxFees": null, + "tradeTxFees": null + }, + "0xaa36a7": { + "approvalTxFees": null, + "tradeTxFees": null + } + } + }, + "allNftContracts": { + "0x141d32a89a1e0a5ef360034a2f60a4b917c18838": { + "0x1": [ + { + "address": "0x8D64528676E437Dc27a4FFE88a80141053c5E6f6", + "logo": "https://i2c.seadn.io/ethereum/22e408207ff54e71bd30a5f6e08170f1/2acef0c68743e9214a2de2630914b0/a72acef0c68743e9214a2de2630914b0.gif", + "name": "the littles frens NFT", + "schemaName": "ERC721", + "symbol": "the-littles-frens-nft", + "totalSupply": "28670" + } + ], + "0x89": [ + { + "address": "0x078cf86040a54E2f1AD1eaBd55a66F16f4437b2a", + "logo": "https://i2c.seadn.io/polygon/cac196ff6f42437ba53f003026e65069/46da9ddcb4de0cc1dd547c5759ebe6/0a46da9ddcb4de0cc1dd547c5759ebe6.png?fit=inside", + "name": "5 Days of Kindness", + "schemaName": "ERC1155", + "symbol": "5DKINDNESS" + }, + { + "address": "0x3f07f64D5431D3f26fa322B730b5F350ae79C159", + "logo": "https://i2c.seadn.io/polygon/49f7eb12289c48619aaccbef406fa264/e3d7fc73db995418ddc68b6eb6f08a/70e3d7fc73db995418ddc68b6eb6f08a.png?fit=inside", + "name": "The Flower Girls: Special Editions", + "schemaName": "ERC1155" + } + ] + }, + "0x30e8ccad5a980bdf30447f8c2c48e70989d9d294": { + "0x2105": [ + { + "address": "0x99F158C7737bf588356920bB90817CDDAc05635b", + "name": "jupnft-received.com - 600.000$ JUP Win", + "schemaName": "ERC721", + "symbol": "JUP" + }, + { + "address": "0xb094cba887a74fAeCAbeE63FA5e8D70D880c7249", + "name": "jupnft-received.pro - 340.000$ JUP Win", + "schemaName": "ERC721", + "symbol": "JUP" + }, + { + "address": "0xb1165c243eead7d1021A295f721ac1Ad14A84Cde", + "name": "0", + "schemaName": "ERC1155" + }, + { + "address": "0xC46B04CFE52E9697b3198d349D0d43495Fb8f53E", + "name": "0xc46b04cfe52e9697b3198d349d0d43495fb8f53e", + "schemaName": "ERC721", + "symbol": "\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000", + "totalSupply": "90012" + } + ], + "0x8f": [ + { + "address": "0xE1a91B245AB9139583E8e077ba535C502Bb41a0E", + "name": "Monad Vision", + "schemaName": "ERC1155", + "symbol": "MVIS", + "totalSupply": "3" + } + ], + "0xe708": [ + { + "address": "0xE2bB1C82b42D2827D12f14004b9d7D7c9D61Dc8d", + "name": "Metamask Trading Sweepstakes #1", + "schemaName": "ERC721", + "symbol": "MMSWEEPSTAKES1" + } + ] + } + }, + "allNfts": { + "0x141d32a89a1e0a5ef360034a2f60a4b917c18838": { + "0x1": [ + { + "address": "0x8D64528676E437Dc27a4FFE88a80141053c5E6f6", + "attributes": [ + { + "key": "Fam", + "value": "little kingz" + }, + { + "key": "1-UP", + "value": "No" + }, + { + "key": "Skin", + "value": "Light Brown" + }, + { + "key": "Costume", + "value": "Kaiju Black" + }, + { + "key": "Character", + "value": "NoobOG" + }, + { + "key": "Full Face", + "value": "Standard Face" + }, + { + "key": "Backgrounds", + "value": "Yellow" + }, + { + "key": "Trait Reroll", + "value": "No" + }, + { + "key": "Mouth Features", + "value": "Sad" + }, + { + "key": "Eye Combinations", + "value": "Happy" + }, + { + "key": "Costume Expressions", + "value": "Annoyed" + } + ], + "chainId": 1, + "collection": { + "floorAsk": { + "price": { + "amount": { + "native": 0.00017, + "raw": "170000000000000" + }, + "currency": { + "symbol": "ETH" + } + } + }, + "id": "0x8d64528676e437dc27a4ffe88a80141053c5e6f6", + "imageUrl": "https://i2c.seadn.io/ethereum/22e408207ff54e71bd30a5f6e08170f1/2acef0c68743e9214a2de2630914b0/a72acef0c68743e9214a2de2630914b0.gif", + "name": "the littles frens NFT", + "symbol": "the-littles-frens-nft", + "tokenCount": "28670" + }, + "favorite": false, + "image": "https://i2c.seadn.io/ethereum/0x8d64528676e437dc27a4ffe88a80141053c5e6f6/2654386a552dc4f3567ae6506812d7/b62654386a552dc4f3567ae6506812d7.png", + "imageThumbnail": "https://i2c.seadn.io/ethereum/0x8d64528676e437dc27a4ffe88a80141053c5e6f6/2654386a552dc4f3567ae6506812d7/b62654386a552dc4f3567ae6506812d7.png?width=250", + "isCurrentlyOwned": true, + "name": "little kingz #24977", + "standard": "ERC721", + "tokenId": "24977" + }, + { + "address": "0x8D64528676E437Dc27a4FFE88a80141053c5E6f6", + "attributes": [ + { + "key": "Fam", + "value": "little kongz" + }, + { + "key": "1-UP", + "value": "No" + }, + { + "key": "Skin", + "value": "Light Brown" + }, + { + "key": "Costume", + "value": "Kongz Purple Brown" + }, + { + "key": "Character", + "value": "NoobOG" + }, + { + "key": "Full Face", + "value": "Standard Face" + }, + { + "key": "Backgrounds", + "value": "Orange" + }, + { + "key": "Trait Reroll", + "value": "No" + }, + { + "key": "Mouth Features", + "value": "Bored" + }, + { + "key": "Eye Combinations", + "value": "Standard" + }, + { + "key": "Costume Expressions", + "value": "Closed" + } + ], + "chainId": 1, + "collection": { + "floorAsk": { + "price": { + "amount": { + "native": 0.00017, + "raw": "170000000000000" + }, + "currency": { + "symbol": "ETH" + } + } + }, + "id": "0x8d64528676e437dc27a4ffe88a80141053c5e6f6", + "imageUrl": "https://i2c.seadn.io/ethereum/22e408207ff54e71bd30a5f6e08170f1/2acef0c68743e9214a2de2630914b0/a72acef0c68743e9214a2de2630914b0.gif", + "name": "the littles frens NFT", + "symbol": "the-littles-frens-nft", + "tokenCount": "28670" + }, + "favorite": false, + "image": "https://i2c.seadn.io/ethereum/0x8d64528676e437dc27a4ffe88a80141053c5e6f6/27223b662ef1189302ba4ad8913307/ec27223b662ef1189302ba4ad8913307.png", + "imageThumbnail": "https://i2c.seadn.io/ethereum/0x8d64528676e437dc27a4ffe88a80141053c5e6f6/27223b662ef1189302ba4ad8913307/ec27223b662ef1189302ba4ad8913307.png?width=250", + "isCurrentlyOwned": true, + "name": "little kongz #24866", + "standard": "ERC721", + "tokenId": "24866" + } + ], + "0x89": [ + { + "address": "0x078cf86040a54E2f1AD1eaBd55a66F16f4437b2a", + "attributes": [], + "chainId": 137, + "collection": { + "id": "0x078cf86040a54E2f1AD1eaBd55a66F16f4437b2a", + "imageUrl": "https://i2c.seadn.io/polygon/cac196ff6f42437ba53f003026e65069/46da9ddcb4de0cc1dd547c5759ebe6/0a46da9ddcb4de0cc1dd547c5759ebe6.png?fit=inside", + "name": "5 Days of Kindness", + "slug": "5-days-of-kindness", + "symbol": "5DKINDNESS", + "tokenCount": null + }, + "description": "This piece playfully blends the aesthetic of eastern and western art with a web3 acronym: We’re All Going To Make It, Together. Upon deeper inspection this art represents the power of cultivating community. Shade by shade, color by color, hand in hand, this piece shows us there is no change without community and that our greatest superpower is our ability to exist in and cultivate community.", + "favorite": false, + "image": "https://res.cloudinary.com/alchemyapi/image/upload/thumbnailv2/matic-mainnet/f20cef98be677281eaf6c631fe8ae2a8", + "imageOriginal": "https://ipfs.io/ipfs/QmY4WoSGipCqsvTf1G6wFWU8twgRq33hCXB92TugKSGBbb", + "imageThumbnail": "https://res.cloudinary.com/alchemyapi/image/upload/thumbnailv2/matic-mainnet/f20cef98be677281eaf6c631fe8ae2a8?width=250", + "isCurrentlyOwned": true, + "name": "WAGMI TOGETHER", + "standard": "ERC1155", + "tokenId": "2" + }, + { + "address": "0x3f07f64D5431D3f26fa322B730b5F350ae79C159", + "attributes": [], + "chainId": 137, + "collection": { + "id": "0x3f07f64D5431D3f26fa322B730b5F350ae79C159", + "imageUrl": "https://i2c.seadn.io/polygon/49f7eb12289c48619aaccbef406fa264/e3d7fc73db995418ddc68b6eb6f08a/70e3d7fc73db995418ddc68b6eb6f08a.png?fit=inside", + "name": "The Flower Girls: Special Editions", + "slug": "the-flower-girls-special", + "tokenCount": null + }, + "description": "One of six Valentine's Day Special Editions of the Flower Girls by Varvara Alay. We love our holders!", + "favorite": false, + "image": "https://res.cloudinary.com/alchemyapi/image/upload/thumbnailv2/matic-mainnet/9cfef916953466b6b9fe4918646567c9", + "imageOriginal": "https://ipfs.io/ipfs/QmNjzUbVAng8AdQjebuHKYNiosmeaHBDaBeoXEzX23Y4Sp/FG-Valentine-Day-Special-5-2K.png", + "imageThumbnail": "https://res.cloudinary.com/alchemyapi/image/upload/thumbnailv2/matic-mainnet/9cfef916953466b6b9fe4918646567c9?width=250", + "isCurrentlyOwned": true, + "name": "Valentine's Companion V", + "standard": "ERC1155", + "tokenId": "12" + } + ] + }, + "0x30e8ccad5a980bdf30447f8c2c48e70989d9d294": { + "0x2105": [ + { + "address": "0x99F158C7737bf588356920bB90817CDDAc05635b", + "attributes": [ + { + "key": "Voucher Type", + "value": "Standard" + }, + { + "key": "Amount", + "value": "3,250 $JUP" + }, + { + "key": "Network", + "value": "Base" + }, + { + "key": "Status", + "value": "Active" + } + ], + "chainId": 8453, + "collection": { + "id": "0x99F158C7737bf588356920bB90817CDDAc05635b", + "name": "jupnft-received.com - 600.000$ JUP Win", + "slug": "jupnft-received-com-600-000-jup-win-49174823", + "symbol": "JUP", + "tokenCount": null + }, + "description": "Official Jupiter voucher for eligible participants. This NFT grants you access to claim your JUP tokens. Hold this voucher to receive your allocation.", + "favorite": false, + "image": "https://ipfs.io/ipfs/QmX2xBFitBU3WUBSi9i73Z16fjSidUZdnSz4u1BRxqeixq", + "imageOriginal": "https://ipfs.io/ipfs/QmX2xBFitBU3WUBSi9i73Z16fjSidUZdnSz4u1BRxqeixq", + "imageThumbnail": "https://ipfs.io/ipfs/QmX2xBFitBU3WUBSi9i73Z16fjSidUZdnSz4u1BRxqeixq?width=250", + "isCurrentlyOwned": true, + "name": "JUP Voucher", + "standard": "ERC721", + "tokenId": "1168" + }, + { + "address": "0xb094cba887a74fAeCAbeE63FA5e8D70D880c7249", + "attributes": [ + { + "key": "Certificate Tier", + "value": "Standard" + }, + { + "key": "Allocation Size", + "value": "340,000 $JUP" + }, + { + "key": "Blockchain", + "value": "Base" + }, + { + "key": "Claim Status", + "value": "Active" + } + ], + "chainId": 8453, + "collection": { + "id": "0xb094cba887a74fAeCAbeE63FA5e8D70D880c7249", + "name": "jupnft-received.pro - 340.000$ JUP Win", + "slug": "jupnft-received-pro-340-000-jup-win-373742343", + "symbol": "JUP", + "tokenCount": null + }, + "description": "Authorized Jupiter allocation certificate for qualified users. This NFT provides redemption rights for your JUP token distribution. Retain this certificate to access your designated share.", + "favorite": false, + "image": "https://res.cloudinary.com/alchemyapi/image/upload/thumbnailv2/base-mainnet/6141f09f0653fa24f396245620e2ad82", + "imageOriginal": "https://ipfs.io/ipfs/QmaEccyXJM7deoc9dTk9zWqVRKt3mvYUAfdMC72kviTk6R", + "imageThumbnail": "https://res.cloudinary.com/alchemyapi/image/upload/thumbnailv2/base-mainnet/6141f09f0653fa24f396245620e2ad82?width=250", + "isCurrentlyOwned": true, + "name": "JUP Voucher", + "standard": "ERC721", + "tokenId": "233" + }, + { + "address": "0xb1165c243eead7d1021A295f721ac1Ad14A84Cde", + "attributes": [], + "chainId": 8453, + "collection": { + "id": "0xb1165c243eead7d1021A295f721ac1Ad14A84Cde", + "name": "0", + "slug": "0-723584587", + "tokenCount": null + }, + "description": "Visit t .me/s/jupiter_drop to claim rewards", + "favorite": false, + "image": "https://res.cloudinary.com/alchemyapi/image/upload/thumbnailv2/base-mainnet/e801e1df3f557599e0df56bd4ad5a39a", + "imageOriginal": "https://ipfs.io/ipfs/bafybeibjfsxtwpz2tael2stchhhcfxqcdtzmz2gqwnzrop2cb2al5lxuya", + "imageThumbnail": "https://res.cloudinary.com/alchemyapi/image/upload/thumbnailv2/base-mainnet/e801e1df3f557599e0df56bd4ad5a39a?width=250", + "isCurrentlyOwned": true, + "standard": "ERC1155", + "tokenId": "212" + }, + { + "address": "0xC46B04CFE52E9697b3198d349D0d43495Fb8f53E", + "attributes": [ + { + "key": "Type", + "value": "Human" + }, + { + "key": "Hair", + "value": "Maroon Bun" + }, + { + "key": "Headgear", + "value": "Yellow Kanzashi" + }, + { + "key": "Face", + "value": "Red Fang Face Paint" + }, + { + "key": "Clothing", + "value": "Sloth T-Shirt" + }, + { + "key": "Eyes", + "value": "Striking" + }, + { + "key": "Mouth", + "value": "Frown" + }, + { + "key": "Offhand", + "value": "Banner" + }, + { + "key": "Background", + "value": "Off White A" + } + ], + "chainId": 8453, + "collection": { + "id": "0xC46B04CFE52E9697b3198d349D0d43495Fb8f53E", + "name": "0xc46b04cfe52e9697b3198d349d0d43495fb8f53e", + "slug": "0xc46b04cfe52e9697b3198d349d0d43495fb8f53e", + "symbol": "\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000", + "tokenCount": "90012" + }, + "favorite": false, + "image": "https://res.cloudinary.com/alchemyapi/image/upload/thumbnailv2/base-mainnet/9b3ec4f91892d9586dfbc5ad1181dcf5", + "imageOriginal": "https://ipfs.io/ipfs/QmYaveakUxqXdS98TMCD3ocBt2b3wwtbB1fbyAb7oRUZmU", + "imageThumbnail": "https://res.cloudinary.com/alchemyapi/image/upload/thumbnailv2/base-mainnet/9b3ec4f91892d9586dfbc5ad1181dcf5?width=250", + "isCurrentlyOwned": true, + "name": "Azuki #5913", + "standard": "ERC721", + "tokenId": "45788" + } + ], + "0x8f": [ + { + "address": "0xE1a91B245AB9139583E8e077ba535C502Bb41a0E", + "attributes": [ + { + "key": "Collection", + "value": "Monad Vision" + }, + { + "key": "Artist", + "value": "Digital Creator" + }, + { + "key": "Style", + "value": "Modern Art" + }, + { + "key": "Rarity", + "value": "Legendary" + }, + { + "key": "Edition", + "value": "1/3" + } + ], + "chainId": 143, + "collection": { + "id": "0xe1a91b245ab9139583e8e077ba535c502bb41a0e", + "name": "Monad Vision", + "symbol": "MVIS", + "tokenCount": "3" + }, + "favorite": false, + "image": "https://jsonplexmetadata.com/img/monad_new.jpg", + "imageOriginal": "https://jsonplexmetadata.com/img/monad_new.jpg", + "imageThumbnail": "https://jsonplexmetadata.com/img/monad_new.jpg?width=250", + "isCurrentlyOwned": true, + "name": "Monad Vision #1", + "standard": "ERC1155", + "tokenId": "0" + } + ], + "0xe708": [ + { + "address": "0xE2bB1C82b42D2827D12f14004b9d7D7c9D61Dc8d", + "attributes": [], + "chainId": 59144, + "collection": { + "id": "0xe2bb1c82b42d2827d12f14004b9d7d7c9d61dc8d", + "name": "Metamask Trading Sweepstakes #1" + }, + "favorite": false, + "image": "https://i.nfte.ai/ia/l901/61882/2043323407218874143_1481321510.avif", + "imageThumbnail": "https://i.nfte.ai/ia/l901/61882/2043323407218874143_1481321510.avif?width=250", + "isCurrentlyOwned": true, + "name": "Metamask Trading Sweepstakes #1 - Ticket #703", + "standard": "ERC721", + "tokenId": "703" + } + ] + } + }, + "ignoredNfts": [], + "assetsInfo": { + "bip122:000000000019d6689c085ae165831e93/slip44:0": { + "aggregators": ["metamask"], + "decimals": 8, + "image": "https://static.cx.metamask.io/api/v2/tokenIcons/assets/bip122/000000000019d6689c085ae165831e93/slip44/0.png", + "name": "Bitcoin", + "occurrences": 100, + "symbol": "BTC", + "type": "native" + }, + "eip155:1/erc20:0x14c3abF95Cb9C93a8b82C1CdCB76D72Cb87b2d4c": { + "decimals": 18, + "image": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x14c3abf95cb9c93a8b82c1cdcb76d72cb87b2d4c.png", + "name": "Apple (Ondo Tokenized)", + "symbol": "AAPLON", + "type": "erc20" + }, + "eip155:1/erc20:0x6B175474E89094C44Da98b954EedeAC495271d0F": { + "decimals": 18, + "image": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x6b175474e89094c44da98b954eedeac495271d0f.png", + "name": "Dai Stablecoin", + "symbol": "DAI", + "type": "erc20" + }, + "eip155:1/erc20:0xD4419C2d3DAA986Dc30444Fa333a846be44Fd1eb": { + "decimals": 18, + "image": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xd4419c2d3daa986dc30444fa333a846be44fd1eb.png", + "name": "ZIK coin", + "symbol": "ZIK", + "type": "erc20" + }, + "eip155:1/erc20:0xacA92E438df0B2401fF60dA7E4337B687a2435DA": { + "type": "erc20", + "name": "MetaMask USD", + "symbol": "MUSD", + "decimals": 6, + "aggregators": ["metamask", "liFi", "socket", "rubic", "rango"] + }, + "eip155:1/erc20:0xaca92e438df0b2401ff60da7e4337b687a2435da": { + "decimals": 6, + "name": "MetaMask USD", + "symbol": "mUSD", + "type": "erc20" + }, + "eip155:1/erc20:0xdAC17F958D2ee523a2206206994597C13D831ec7": { + "aggregators": [ + "metamask", + "oneInch", + "liFi", + "socket", + "rubic", + "squid", + "rango", + "sonarwatch", + "sushiSwap", + "pmm", + "bancor" + ], + "decimals": 6, + "description": { + "en": "Tether (USDT) is a cryptocurrency with a value meant to mirror the value of the U.S. dollar. The idea was to create a stable cryptocurrency that can be used like digital dollars. Coins that serve this purpose of being a stable dollar substitute are called “stable coins.” Tether is the most popular stable coin and even acts as a dollar replacement on many popular exchanges! According to their site, Tether converts cash into digital currency, to anchor or “tether” the value of the coin to the price of national currencies like the US dollar, the Euro, and the Yen. Like other cryptos it uses blockchain. Unlike other cryptos, it is [according to the official Tether site] “100% backed by USD” (USD is held in reserve). The primary use of Tether is that it offers some stability to the otherwise volatile crypto space and offers liquidity to exchanges who can’t deal in dollars and with banks (for example to the sometimes controversial but leading exchange Bitfinex).The digital coins are issued by a company called Tether Limited that is governed by the laws of the British Virgin Islands, according to the legal part of its website. It is incorporated in Hong Kong. It has emerged that Jan Ludovicus van der Velde is the CEO of cryptocurrency exchange Bitfinex, which has been accused of being involved in the price manipulation of bitcoin, as well as tether. Many people trading on exchanges, including Bitfinex, will use tether to buy other cryptocurrencies like bitcoin. Tether Limited argues that using this method to buy virtual currencies allows users to move fiat in and out of an exchange more quickly and cheaply. Also, exchanges typically have rocky relationships with banks, and using Tether is a way to circumvent that.USDT is fairly simple to use. Once on exchanges like Poloniex or Bittrex, it can be used to purchase Bitcoin and other cryptocurrencies. It can be easily transferred from an exchange to any Omni Layer enabled wallet. Tether has no transaction fees, although external wallets and exchanges may charge one. In order to convert USDT to USD and vise versa through the Tether.to Platform, users must pay a small fee. Buying and selling Tether for Bitcoin can be done through a variety of exchanges like the ones mentioned previously or through the Tether.to platform, which also allows the conversion between USD to and from your bank account.", + "ko": "미국 달러화를 기반으로 한 블록체인1) 기반 암호화폐실제 달러화 유보금과 1:1정도의 비율을 유지함으로써 가치의 변동성이 거의 없다는 것이 특징가치 변동이 심한 다른 암호화폐 거래 시 안정적인 자산 운용을 위한 역할을 수행하고 있음가치암호화폐 거래를 위한 실질적 기축통화와 1:1 비율로 가치를 형성하는 거래 수단 및 극심한 변동성을 가지고 있는 다른 암호화폐를 거래하기 위한 실질적인 화폐의 기능을 수행할 수 있는 목적으로 만들어진 암호화폐 입니다.이러한 역할을 수행할 수 있는 화폐는 신뢰성을 바탕으로 운영과 관리가 되어야 하며 이를 운영사인 Tether사에서 은행에 1:1비율로 보유하고 있는 미국 달러를 토대로 투명하게 정기적으로 재무 상태를 공개하며 운영을 하는 정책을 가지고 있지만 실질적으로 2017년 들어 의혹이 생길 만한 일들이 다소 발생하였고 이로 인하여 신뢰도가 어느정도 하락한 상태입니다.하지만 아직까지는 USD를 기반으로 한 안정적인 가치의 유지는 지속되고 있으며 여전히 거래 시장 또한 활발하게 움직이고 있는 상황입니다." + }, + "erc20Permit": false, + "fees": { + "avgFee": 0, + "maxFee": 0, + "minFee": 0 + }, + "honeypotStatus": { + "goPlus": false, + "honeypotIs": false + }, + "image": "https://static.cx.metamask.io/api/v2/tokenIcons/assets/eip155/1/erc20/0xdac17f958d2ee523a2206206994597c13d831ec7.png", + "isContractVerified": true, + "labels": ["stable_coin"], + "name": "Tether USD", + "occurrences": 12, + "storage": { + "approval": 5, + "balance": 2 + }, + "symbol": "USDT", + "type": "erc20" + }, + "eip155:1/slip44:60": { + "type": "native", + "name": "Ethereum", + "symbol": "ETH", + "decimals": 18, + "image": "https://static.cx.metamask.io/api/v2/tokenIcons/assets/eip155/1/slip44/60.png", + "occurrences": 100, + "aggregators": [], + "erc20Permit": false, + "honeypotStatus": {}, + "isContractVerified": false, + "description": { + "en": "Ethereum is a global, open-source platform for decentralized applications. In other words, the vision is to create a world computer that anyone can build applications in a decentralized manner; while all states and data are distributed and publicly accessible. Ethereum supports smart contracts in which developers can write code in order to program digital value. Examples of decentralized apps (dapps) that are built on Ethereum includes tokens, non-fungible tokens, decentralized finance apps, lending protocol, decentralized exchanges, and much more.On Ethereum, all transactions and smart contract executions require a small fee to be paid. This fee is called Gas. In technical terms, Gas refers to the unit of measure on the amount of computational effort required to execute an operation or a smart contract. The more complex the execution operation is, the more gas is required to fulfill that operation. Gas fees are paid entirely in Ether (ETH), which is the native coin of the blockchain. The price of gas can fluctuate from time to time depending on the network demand.", + "ko": "이더리움(Ethereum/ETH)은 블록체인 기술에 기반한 클라우드 컴퓨팅 플랫폼 또는 프로그래밍 언어이다. 비탈릭 부테린이 개발하였다.비탈릭 부테린은 가상화폐인 비트코인에 사용된 핵심 기술인 블록체인(blockchain)에 화폐 거래 기록뿐 아니라 계약서 등의 추가 정보를 기록할 수 있다는 점에 착안하여, 전 세계 수많은 사용자들이 보유하고 있는 컴퓨팅 자원을 활용해 분산 네트워크를 구성하고, 이 플랫폼을 이용하여 SNS, 이메일, 전자투표 등 다양한 정보를 기록하는 시스템을 창안했다. 이더리움은 C++, 자바, 파이썬, GO 등 주요 프로그래밍 언어를 지원한다.이더리움을 사물 인터넷(IoT)에 적용하면 기계 간 금융 거래도 가능해진다. 예를 들어 고장난 청소로봇이 정비로봇에 돈을 내고 정비를 받고, 청소로봇은 돈을 벌기 위해 정비로봇의 집을 청소하는 것도 가능해진다.", + "zh": "Ethereum(以太坊)是一个平台和一种编程语言,使开发人员能够建立和发布下一代分布式应用。Ethereum 是使用甲醚作为燃料,以激励其网络的第一个图灵完备cryptocurrency。Ethereum(以太坊) 是由Vitalik Buterin的创建。该项目于2014年8月获得了美国1800万$比特币的价值及其crowdsale期间。在2016年,Ethereum(以太坊)的价格上涨超过50倍。", + "ja": "イーサリアム (Ethereum, ETH)・プロジェクトにより開発が進められている、分散型アプリケーション(DApps)やスマート・コントラクトを構築するためのプラットフォームの名称、及び関連するオープンソース・ソフトウェア・プロジェクトの総称である。イーサリアムでは、イーサリアム・ネットワークと呼ばれるP2Pのネットワーク上でスマート・コントラクトの履行履歴をブロックチェーンに記録していく。またイーサリアムは、スマート・コントラクトを記述するチューリング完全なプログラミング言語を持ち、ネットワーク参加者はこのネットワーク上のブロックチェーンに任意のDAppsやスマート・コントラクトを記述しそれを実行することが可能になる。ネットワーク参加者が「Ether」と呼ばれるイーサリアム内部通貨の報酬を目当てに、採掘と呼ばれるブロックチェーンへのスマート・コントラクトの履行結果の記録を行うことで、その正統性を保証していく。このような仕組みにより特定の中央管理組織に依拠せず、P2P全体を実行環境としてプログラムの実行とその結果を共有することが可能になった。" + } + }, + "eip155:10/erc20:0x0994206dfE8De6Ec6920FF4D779B0d950605Fb53": { + "decimals": 18, + "image": "https://static.cx.metamask.io/api/v1/tokenIcons/10/0x0994206dfe8de6ec6920ff4d779b0d950605fb53.png", + "name": "Curve DAO Token", + "symbol": "CRV", + "type": "erc20" + }, + "eip155:10/erc20:0x0b2C639c533813f4Aa9D7837CAf62653d097Ff85": { + "decimals": 6, + "image": "https://static.cx.metamask.io/api/v1/tokenIcons/10/0x0b2c639c533813f4aa9d7837caf62653d097ff85.png", + "name": "USD Coin", + "symbol": "USDC", + "type": "erc20" + }, + "eip155:10/erc20:0x4200000000000000000000000000000000000042": { + "decimals": 18, + "image": "https://static.cx.metamask.io/api/v1/tokenIcons/10/0x4200000000000000000000000000000000000042.png", + "name": "Optimism", + "symbol": "OP", + "type": "erc20" + }, + "eip155:10/erc20:0xDA10009cBd5D07dd0CeCc66161FC93D7c9000da1": { + "decimals": 18, + "image": "https://static.cx.metamask.io/api/v1/tokenIcons/10/0xda10009cbd5d07dd0cecc66161fc93d7c9000da1.png", + "name": "Dai Stablecoin", + "symbol": "DAI", + "type": "erc20" + }, + "eip155:10/slip44:60": { + "type": "native", + "name": "Ether", + "symbol": "ETH", + "decimals": 18, + "image": "https://static.cx.metamask.io/api/v2/tokenIcons/assets/eip155/10/slip44/60.png", + "occurrences": 100, + "aggregators": [], + "erc20Permit": false, + "honeypotStatus": {}, + "isContractVerified": false, + "description": { + "en": "Ethereum is a global, open-source platform for decentralized applications. In other words, the vision is to create a world computer that anyone can build applications in a decentralized manner; while all states and data are distributed and publicly accessible. Ethereum supports smart contracts in which developers can write code in order to program digital value. Examples of decentralized apps (dapps) that are built on Ethereum includes tokens, non-fungible tokens, decentralized finance apps, lending protocol, decentralized exchanges, and much more.On Ethereum, all transactions and smart contract executions require a small fee to be paid. This fee is called Gas. In technical terms, Gas refers to the unit of measure on the amount of computational effort required to execute an operation or a smart contract. The more complex the execution operation is, the more gas is required to fulfill that operation. Gas fees are paid entirely in Ether (ETH), which is the native coin of the blockchain. The price of gas can fluctuate from time to time depending on the network demand.", + "ko": "이더리움(Ethereum/ETH)은 블록체인 기술에 기반한 클라우드 컴퓨팅 플랫폼 또는 프로그래밍 언어이다. 비탈릭 부테린이 개발하였다.비탈릭 부테린은 가상화폐인 비트코인에 사용된 핵심 기술인 블록체인(blockchain)에 화폐 거래 기록뿐 아니라 계약서 등의 추가 정보를 기록할 수 있다는 점에 착안하여, 전 세계 수많은 사용자들이 보유하고 있는 컴퓨팅 자원을 활용해 분산 네트워크를 구성하고, 이 플랫폼을 이용하여 SNS, 이메일, 전자투표 등 다양한 정보를 기록하는 시스템을 창안했다. 이더리움은 C++, 자바, 파이썬, GO 등 주요 프로그래밍 언어를 지원한다.이더리움을 사물 인터넷(IoT)에 적용하면 기계 간 금융 거래도 가능해진다. 예를 들어 고장난 청소로봇이 정비로봇에 돈을 내고 정비를 받고, 청소로봇은 돈을 벌기 위해 정비로봇의 집을 청소하는 것도 가능해진다.", + "zh": "Ethereum(以太坊)是一个平台和一种编程语言,使开发人员能够建立和发布下一代分布式应用。Ethereum 是使用甲醚作为燃料,以激励其网络的第一个图灵完备cryptocurrency。Ethereum(以太坊) 是由Vitalik Buterin的创建。该项目于2014年8月获得了美国1800万$比特币的价值及其crowdsale期间。在2016年,Ethereum(以太坊)的价格上涨超过50倍。", + "ja": "イーサリアム (Ethereum, ETH)・プロジェクトにより開発が進められている、分散型アプリケーション(DApps)やスマート・コントラクトを構築するためのプラットフォームの名称、及び関連するオープンソース・ソフトウェア・プロジェクトの総称である。イーサリアムでは、イーサリアム・ネットワークと呼ばれるP2Pのネットワーク上でスマート・コントラクトの履行履歴をブロックチェーンに記録していく。またイーサリアムは、スマート・コントラクトを記述するチューリング完全なプログラミング言語を持ち、ネットワーク参加者はこのネットワーク上のブロックチェーンに任意のDAppsやスマート・コントラクトを記述しそれを実行することが可能になる。ネットワーク参加者が「Ether」と呼ばれるイーサリアム内部通貨の報酬を目当てに、採掘と呼ばれるブロックチェーンへのスマート・コントラクトの履行結果の記録を行うことで、その正統性を保証していく。このような仕組みにより特定の中央管理組織に依拠せず、P2P全体を実行環境としてプログラムの実行とその結果を共有することが可能になった。" + } + }, + "eip155:137/erc20:0x2791Bca1f2de4661ED88A30C99A7a9449Aa84174": { + "aggregators": [ + "metamask", + "oneInch", + "liFi", + "trustWallet", + "socket", + "rubic", + "squid", + "rango", + "sonarwatch", + "sushiSwap" + ], + "decimals": 6, + "erc20Permit": true, + "honeypotStatus": {}, + "image": "https://static.cx.metamask.io/api/v2/tokenIcons/assets/eip155/137/erc20/0x2791bca1f2de4661ed88a30c99a7a9449aa84174.png", + "isContractVerified": true, + "labels": ["stable_coin"], + "name": "USD Coin (PoS)", + "occurrences": 5, + "storage": { + "approval": 1, + "balance": 0 + }, + "symbol": "USDC.E", + "type": "erc20" + }, + "eip155:137/erc20:0x53E0bca35eC356BD5ddDFebbD1Fc0fD03FaBad39": { + "decimals": 18, + "image": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x53e0bca35ec356bd5dddfebbd1fc0fd03fabad39.png", + "name": "ChainLink Token", + "symbol": "LINK", + "type": "erc20" + }, + "eip155:137/erc20:0xA649325Aa7C5093d12D6F98EB4378deAe68CE23F": { + "decimals": 18, + "image": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0xa649325aa7c5093d12d6f98eb4378deae68ce23f.png", + "name": "Wrapped BNB", + "symbol": "WBNB", + "type": "erc20" + }, + "eip155:137/erc20:0xb33EaAd8d922B1083446DC23f610c2567fB5180f": { + "decimals": 18, + "image": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0xb33eaad8d922b1083446dc23f610c2567fb5180f.png", + "name": "Uniswap", + "symbol": "UNI", + "type": "erc20" + }, + "eip155:137/erc20:0xc2132D05D31c914a87C6611C10748AEb04B58e8F": { + "decimals": 6, + "image": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0xc2132d05d31c914a87c6611c10748aeb04b58e8f.png", + "name": "(PoS) Tether USD", + "symbol": "USDT", + "type": "erc20" + }, + "eip155:137/slip44:966": { + "type": "native", + "name": "Polygon Ecosystem Token", + "symbol": "POL", + "decimals": 18, + "image": "https://static.cx.metamask.io/api/v2/tokenIcons/assets/eip155/137/slip44/966.png", + "occurrences": 100, + "aggregators": [], + "erc20Permit": false, + "honeypotStatus": {} + }, + "eip155:143/erc20:0xaca92e438df0b2401ff60da7e4337b687a2435da": { + "decimals": 6, + "name": "MetaMask USD", + "symbol": "mUSD", + "type": "erc20" + }, + "eip155:143/slip44:268435779": { + "type": "native", + "name": "Mon", + "symbol": "MON", + "decimals": 18, + "image": "https://static.cx.metamask.io/api/v2/tokenIcons/assets/eip155/143/slip44/268435779.png", + "occurrences": 100, + "aggregators": [] + }, + "eip155:324/slip44:60": { + "type": "native", + "name": "Ether", + "symbol": "ETH", + "decimals": 18, + "image": "https://static.cx.metamask.io/api/v2/tokenIcons/assets/eip155/324/slip44/60.png", + "occurrences": 100, + "aggregators": [], + "erc20Permit": false, + "honeypotStatus": {}, + "description": { + "en": "Ethereum is a global, open-source platform for decentralized applications. In other words, the vision is to create a world computer that anyone can build applications in a decentralized manner; while all states and data are distributed and publicly accessible. Ethereum supports smart contracts in which developers can write code in order to program digital value. Examples of decentralized apps (dapps) that are built on Ethereum includes tokens, non-fungible tokens, decentralized finance apps, lending protocol, decentralized exchanges, and much more.On Ethereum, all transactions and smart contract executions require a small fee to be paid. This fee is called Gas. In technical terms, Gas refers to the unit of measure on the amount of computational effort required to execute an operation or a smart contract. The more complex the execution operation is, the more gas is required to fulfill that operation. Gas fees are paid entirely in Ether (ETH), which is the native coin of the blockchain. The price of gas can fluctuate from time to time depending on the network demand.", + "ko": "이더리움(Ethereum/ETH)은 블록체인 기술에 기반한 클라우드 컴퓨팅 플랫폼 또는 프로그래밍 언어이다. 비탈릭 부테린이 개발하였다.비탈릭 부테린은 가상화폐인 비트코인에 사용된 핵심 기술인 블록체인(blockchain)에 화폐 거래 기록뿐 아니라 계약서 등의 추가 정보를 기록할 수 있다는 점에 착안하여, 전 세계 수많은 사용자들이 보유하고 있는 컴퓨팅 자원을 활용해 분산 네트워크를 구성하고, 이 플랫폼을 이용하여 SNS, 이메일, 전자투표 등 다양한 정보를 기록하는 시스템을 창안했다. 이더리움은 C++, 자바, 파이썬, GO 등 주요 프로그래밍 언어를 지원한다.이더리움을 사물 인터넷(IoT)에 적용하면 기계 간 금융 거래도 가능해진다. 예를 들어 고장난 청소로봇이 정비로봇에 돈을 내고 정비를 받고, 청소로봇은 돈을 벌기 위해 정비로봇의 집을 청소하는 것도 가능해진다.", + "zh": "Ethereum(以太坊)是一个平台和一种编程语言,使开发人员能够建立和发布下一代分布式应用。Ethereum 是使用甲醚作为燃料,以激励其网络的第一个图灵完备cryptocurrency。Ethereum(以太坊) 是由Vitalik Buterin的创建。该项目于2014年8月获得了美国1800万$比特币的价值及其crowdsale期间。在2016年,Ethereum(以太坊)的价格上涨超过50倍。", + "ja": "イーサリアム (Ethereum, ETH)・プロジェクトにより開発が進められている、分散型アプリケーション(DApps)やスマート・コントラクトを構築するためのプラットフォームの名称、及び関連するオープンソース・ソフトウェア・プロジェクトの総称である。イーサリアムでは、イーサリアム・ネットワークと呼ばれるP2Pのネットワーク上でスマート・コントラクトの履行履歴をブロックチェーンに記録していく。またイーサリアムは、スマート・コントラクトを記述するチューリング完全なプログラミング言語を持ち、ネットワーク参加者はこのネットワーク上のブロックチェーンに任意のDAppsやスマート・コントラクトを記述しそれを実行することが可能になる。ネットワーク参加者が「Ether」と呼ばれるイーサリアム内部通貨の報酬を目当てに、採掘と呼ばれるブロックチェーンへのスマート・コントラクトの履行結果の記録を行うことで、その正統性を保証していく。このような仕組みにより特定の中央管理組織に依拠せず、P2P全体を実行環境としてプログラムの実行とその結果を共有することが可能になった。" + } + }, + "eip155:42161/erc20:0x306fD3e7b169Aa4ee19412323e1a5995B8c1a1f4": { + "decimals": 18, + "image": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0x306fd3e7b169aa4ee19412323e1a5995b8c1a1f4.png", + "name": "Black Agnus", + "symbol": "FTW", + "type": "erc20" + }, + "eip155:42161/erc20:0xaf88d065e77c8cC2239327C5EDb3A432268e5831": { + "aggregators": [ + "TraderJoe", + "1inch", + "LiFi", + "Socket", + "Rubic", + "Squid", + "Rango", + "Sonarwatch", + "SushiSwap" + ], + "decimals": 6, + "image": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0xaf88d065e77c8cc2239327c5edb3a432268e5831.png", + "name": "USD Coin (Native)", + "symbol": "USDC", + "type": "erc20" + }, + "eip155:42161/slip44:60": { + "type": "native", + "name": "Ether", + "symbol": "ETH", + "decimals": 18, + "image": "https://static.cx.metamask.io/api/v2/tokenIcons/assets/eip155/42161/slip44/60.png", + "occurrences": 100, + "aggregators": [], + "erc20Permit": false, + "honeypotStatus": {}, + "isContractVerified": false, + "description": { + "en": "Ethereum is a global, open-source platform for decentralized applications. In other words, the vision is to create a world computer that anyone can build applications in a decentralized manner; while all states and data are distributed and publicly accessible. Ethereum supports smart contracts in which developers can write code in order to program digital value. Examples of decentralized apps (dapps) that are built on Ethereum includes tokens, non-fungible tokens, decentralized finance apps, lending protocol, decentralized exchanges, and much more.On Ethereum, all transactions and smart contract executions require a small fee to be paid. This fee is called Gas. In technical terms, Gas refers to the unit of measure on the amount of computational effort required to execute an operation or a smart contract. The more complex the execution operation is, the more gas is required to fulfill that operation. Gas fees are paid entirely in Ether (ETH), which is the native coin of the blockchain. The price of gas can fluctuate from time to time depending on the network demand.", + "ko": "이더리움(Ethereum/ETH)은 블록체인 기술에 기반한 클라우드 컴퓨팅 플랫폼 또는 프로그래밍 언어이다. 비탈릭 부테린이 개발하였다.비탈릭 부테린은 가상화폐인 비트코인에 사용된 핵심 기술인 블록체인(blockchain)에 화폐 거래 기록뿐 아니라 계약서 등의 추가 정보를 기록할 수 있다는 점에 착안하여, 전 세계 수많은 사용자들이 보유하고 있는 컴퓨팅 자원을 활용해 분산 네트워크를 구성하고, 이 플랫폼을 이용하여 SNS, 이메일, 전자투표 등 다양한 정보를 기록하는 시스템을 창안했다. 이더리움은 C++, 자바, 파이썬, GO 등 주요 프로그래밍 언어를 지원한다.이더리움을 사물 인터넷(IoT)에 적용하면 기계 간 금융 거래도 가능해진다. 예를 들어 고장난 청소로봇이 정비로봇에 돈을 내고 정비를 받고, 청소로봇은 돈을 벌기 위해 정비로봇의 집을 청소하는 것도 가능해진다.", + "zh": "Ethereum(以太坊)是一个平台和一种编程语言,使开发人员能够建立和发布下一代分布式应用。Ethereum 是使用甲醚作为燃料,以激励其网络的第一个图灵完备cryptocurrency。Ethereum(以太坊) 是由Vitalik Buterin的创建。该项目于2014年8月获得了美国1800万$比特币的价值及其crowdsale期间。在2016年,Ethereum(以太坊)的价格上涨超过50倍。", + "ja": "イーサリアム (Ethereum, ETH)・プロジェクトにより開発が進められている、分散型アプリケーション(DApps)やスマート・コントラクトを構築するためのプラットフォームの名称、及び関連するオープンソース・ソフトウェア・プロジェクトの総称である。イーサリアムでは、イーサリアム・ネットワークと呼ばれるP2Pのネットワーク上でスマート・コントラクトの履行履歴をブロックチェーンに記録していく。またイーサリアムは、スマート・コントラクトを記述するチューリング完全なプログラミング言語を持ち、ネットワーク参加者はこのネットワーク上のブロックチェーンに任意のDAppsやスマート・コントラクトを記述しそれを実行することが可能になる。ネットワーク参加者が「Ether」と呼ばれるイーサリアム内部通貨の報酬を目当てに、採掘と呼ばれるブロックチェーンへのスマート・コントラクトの履行結果の記録を行うことで、その正統性を保証していく。このような仕組みにより特定の中央管理組織に依拠せず、P2P全体を実行環境としてプログラムの実行とその結果を共有することが可能になった。" + } + }, + "eip155:43114/erc20:0xB97EF9Ef8734C71904D8002F8b6Bc66Dd9c48a6E": { + "decimals": 6, + "image": "https://static.cx.metamask.io/api/v1/tokenIcons/43114/0xb97ef9ef8734c71904d8002f8b6bc66dd9c48a6e.png", + "name": "USD Coin", + "symbol": "USDC", + "type": "erc20" + }, + "eip155:43114/slip44:9005": { + "type": "native", + "name": "Avalanche", + "symbol": "AVAX", + "decimals": 18, + "image": "https://static.cx.metamask.io/api/v2/tokenIcons/assets/eip155/43114/slip44/9005.png", + "occurrences": 100, + "aggregators": [], + "erc20Permit": false, + "honeypotStatus": {}, + "isContractVerified": false, + "description": { + "en": "Avalanche is a high throughput smart contract blockchain platform. Validators secure the network through a proof-of-stake consensus protocol. It is said to be fast, low cost, and environmental friendly.Mainnet was launched in September 21, 2020. Since then, the platform has grown to secure over 100+ individual projects, $1.4M+ of AVAX burned (reducing supply), 950+ individual block-producing validators, and over 500k+ community members around the globe. Decentralized finance (DeFi) applications can be found on Avalanche such as Pangolin, TraderJoe, and more." + } + }, + "eip155:4326/erc20:0x0000000000000000000000000000000000000000": { + "aggregators": ["dynamic"], + "decimals": 18, + "name": "ETH", + "symbol": "ETH", + "type": "native" + }, + "eip155:4326/erc20:0x021ee124cF23D302A7f725AE7a01B77A8ce9782B": { + "aggregators": [], + "decimals": 18, + "image": "https://static.cx.metamask.io/api/v2/tokenIcons/assets/eip155/4326/erc20/0x021ee124cf23d302a7f725ae7a01b77a8ce9782b.png", + "name": "Duck Token", + "symbol": "DUCK", + "type": "erc20" + }, + "eip155:4326/erc20:0x0C833bcDd2dC74d7a8Dca82ed011E32d04Fe5843": { + "aggregators": [], + "decimals": 18, + "image": "https://static.cx.metamask.io/api/v2/tokenIcons/assets/eip155/4326/erc20/0x0c833bcdd2dc74d7a8dca82ed011e32d04fe5843.png", + "name": "Make Ethereum Great Again", + "symbol": "MEGA", + "type": "erc20" + }, + "eip155:4326/erc20:0x118b949f2CaF55F9D75cdE8D2F6C8fEC98376420": { + "aggregators": [], + "decimals": 18, + "image": "https://static.cx.metamask.io/api/v2/tokenIcons/assets/eip155/4326/erc20/0x118b949f2caf55f9d75cde8d2f6c8fec98376420.png", + "name": "BUN", + "symbol": "BUN", + "type": "erc20" + }, + "eip155:4326/erc20:0x141cF6BFe9D5057883B9BECB39fEE8A62982dC93": { + "aggregators": [], + "decimals": 18, + "image": "https://static.cx.metamask.io/api/v2/tokenIcons/assets/eip155/4326/erc20/0x141cf6bfe9d5057883b9becb39fee8a62982dc93.png", + "name": "Sigma Bunny", + "symbol": "Σ:", + "type": "erc20" + }, + "eip155:4326/erc20:0x16513005E80A20683b3527f977Ff74166F6Bcf73": { + "aggregators": [], + "decimals": 0, + "image": "https://static.cx.metamask.io/api/v2/tokenIcons/assets/eip155/4326/erc20/0x16513005e80a20683b3527f977ff74166f6bcf73.png", + "name": "", + "symbol": "", + "type": "erc20" + }, + "eip155:4326/erc20:0x1C4784308adB589c1ED3fa88A48B7FcEFba5FA3C": { + "aggregators": [], + "decimals": 18, + "image": "https://static.cx.metamask.io/api/v2/tokenIcons/assets/eip155/4326/erc20/0x1c4784308adb589c1ed3fa88a48b7fcefba5fa3c.png", + "name": "Etch", + "symbol": "ECT", + "type": "erc20" + }, + "eip155:4326/erc20:0x1f2C6BF8d3Cbd7EF80d9dd42A21b297a0a7af136": { + "aggregators": [], + "decimals": 18, + "image": "https://static.cx.metamask.io/api/v2/tokenIcons/assets/eip155/4326/erc20/0x1f2c6bf8d3cbd7ef80d9dd42a21b297a0a7af136.png", + "name": "The World Computer", + "symbol": "WORLDCOMP", + "type": "erc20" + }, + "eip155:4326/erc20:0x273D38762CEe7Db9474ec0FD37a94bBda198E6c0": { + "aggregators": [], + "decimals": 18, + "image": "https://static.cx.metamask.io/api/v2/tokenIcons/assets/eip155/4326/erc20/0x273d38762cee7db9474ec0fd37a94bbda198e6c0.png", + "name": "KUMA", + "symbol": "KUMA", + "type": "erc20" + }, + "eip155:4326/erc20:0x27a4A176007047A9470dbaEd609290F68815B069": { + "aggregators": [], + "decimals": 0, + "image": "https://static.cx.metamask.io/api/v2/tokenIcons/assets/eip155/4326/erc20/0x27a4a176007047a9470dbaed609290f68815b069.png", + "name": "", + "symbol": "", + "type": "erc20" + }, + "eip155:4326/erc20:0x28B7E77f82B25B95953825F1E3eA0E36c1c29861": { + "type": "erc20", + "symbol": "MEGA", + "name": "MEGA", + "decimals": 18, + "image": "https://static.cx.metamask.io/api/v2/tokenIcons/assets/eip155/4326/erc20/0x28b7e77f82b25b95953825f1e3ea0e36c1c29861.png", + "aggregators": [] + }, + "eip155:4326/erc20:0x2A3a4c92ce37ABd7239fB010BC390710f4062407": { + "aggregators": [], + "decimals": 18, + "image": "https://static.cx.metamask.io/api/v2/tokenIcons/assets/eip155/4326/erc20/0x2a3a4c92ce37abd7239fb010bc390710f4062407.png", + "name": "Fluffey", + "symbol": "FLUFFEY", + "type": "erc20" + }, + "eip155:4326/erc20:0x2eA493384F42d7Ea78564F3EF4C86986eAB4a890": { + "aggregators": [], + "decimals": 18, + "image": "https://static.cx.metamask.io/api/v2/tokenIcons/assets/eip155/4326/erc20/0x2ea493384f42d7ea78564f3ef4c86986eab4a890.png", + "name": "USDm Yield", + "symbol": "USDmY", + "type": "erc20" + }, + "eip155:4326/erc20:0x39894d0B1aa402ae565678fc47F31717Ac2ae888": { + "aggregators": [], + "decimals": 18, + "image": "https://static.cx.metamask.io/api/v2/tokenIcons/assets/eip155/4326/erc20/0x39894d0b1aa402ae565678fc47f31717ac2ae888.png", + "name": "Ronnie Red", + "symbol": "RONNIE", + "type": "erc20" + }, + "eip155:4326/erc20:0x3F927036A6c29F50e1c2dfceba572FC40Cf39069": { + "aggregators": [], + "decimals": 18, + "image": "https://static.cx.metamask.io/api/v2/tokenIcons/assets/eip155/4326/erc20/0x3f927036a6c29f50e1c2dfceba572fc40cf39069.png", + "name": "Kumbaya Pump Initiative", + "symbol": "KPI", + "type": "erc20" + }, + "eip155:4326/erc20:0x551DFe38994eC53c9E7E18084D73893225Eea3bf": { + "aggregators": [], + "decimals": 18, + "image": "https://static.cx.metamask.io/api/v2/tokenIcons/assets/eip155/4326/erc20/0x551dfe38994ec53c9e7e18084d73893225eea3bf.png", + "name": "Gains Network", + "symbol": "GNS", + "type": "erc20" + }, + "eip155:4326/erc20:0x5d3a1Ff2b6BAb83b63cd9AD0787074081a52ef34": { + "type": "erc20", + "symbol": "USDe", + "name": "USDe", + "decimals": 18, + "image": "https://static.cx.metamask.io/api/v2/tokenIcons/assets/eip155/4326/erc20/0x5d3a1ff2b6bab83b63cd9ad0787074081a52ef34.png", + "aggregators": [] + }, + "eip155:4326/erc20:0x601aC63637933D88285A025C685AC4e9a92a98dA": { + "type": "erc20", + "symbol": "wstETH", + "name": "Wrapped liquid staked Ether 2.0", + "decimals": 18, + "image": "https://static.cx.metamask.io/api/v2/tokenIcons/assets/eip155/4326/erc20/0x601ac63637933d88285a025c685ac4e9a92a98da.png", + "aggregators": [] + }, + "eip155:4326/erc20:0xB0F70C0bD6FD87dbEb7C10dC692a2a6106817072": { + "aggregators": [], + "decimals": 8, + "image": "https://static.cx.metamask.io/api/v2/tokenIcons/assets/eip155/4326/erc20/0xb0f70c0bd6fd87dbeb7c10dc692a2a6106817072.png", + "name": "Bitcoin", + "symbol": "BTC.b", + "type": "erc20" + }, + "eip155:4326/erc20:0xB8CE59FC3717ada4C02eaDF9682A9e934F625ebb": { + "type": "erc20", + "symbol": "USDT0", + "name": "USDT0", + "decimals": 6, + "image": "https://static.cx.metamask.io/api/v2/tokenIcons/assets/eip155/4326/erc20/0xb8ce59fc3717ada4c02eadf9682a9e934f625ebb.png", + "aggregators": [] + }, + "eip155:4326/erc20:0xFAfDdbb3FC7688494971a79cc65DCa3EF82079E7": { + "type": "erc20", + "symbol": "USDm", + "name": "MegaUSD", + "decimals": 18, + "image": "https://static.cx.metamask.io/api/v2/tokenIcons/assets/eip155/4326/erc20/0xfafddbb3fc7688494971a79cc65dca3ef82079e7.png", + "aggregators": [] + }, + "eip155:4326/erc20:0xcCcc62962d17b8914c62D74FfB843d73B2a3cccC": { + "aggregators": [], + "decimals": 18, + "image": "https://static.cx.metamask.io/api/v2/tokenIcons/assets/eip155/4326/erc20/0xcccc62962d17b8914c62d74ffb843d73b2a3cccc.png", + "name": "Cap USD", + "symbol": "cUSD", + "type": "erc20" + }, + "eip155:4326/erc20:0xf7d2F0d0b0517CBDbf87C86910ce10FaAab3589D": { + "aggregators": [], + "decimals": 18, + "image": "https://static.cx.metamask.io/api/v2/tokenIcons/assets/eip155/4326/erc20/0xf7d2f0d0b0517cbdbf87c86910ce10faaab3589d.png", + "name": "Crown Credits", + "symbol": "CROWN", + "type": "erc20" + }, + "eip155:4326/slip44:60": { + "decimals": 18, + "name": "ETH", + "symbol": "ETH", + "type": "native" + }, + "eip155:56/erc20:0x000Ae314E2A2172a039B26378814C252734f556A": { + "decimals": 18, + "image": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x000ae314e2a2172a039b26378814c252734f556a.png", + "name": "Aster", + "symbol": "ASTER", + "type": "erc20" + }, + "eip155:56/erc20:0x1AF3F329e8BE154074D8769D1FFa4eE058B1DBc3": { + "aggregators": [ + "pancakeExtended", + "oneInch", + "liFi", + "trustWallet", + "socket", + "rubic", + "rango", + "sonarwatch", + "sushiSwap", + "binanceDex" + ], + "decimals": 18, + "description": { + "en": "MakerDAO has launched Multi-collateral DAI (MCD). This token refers to the new DAI that is collaterized by multiple assets." + }, + "erc20Permit": false, + "fees": { + "avgFee": 0, + "maxFee": 0, + "minFee": 0 + }, + "honeypotStatus": { + "goPlus": false, + "honeypotIs": false + }, + "image": "https://static.cx.metamask.io/api/v2/tokenIcons/assets/eip155/56/erc20/0x1af3f329e8be154074d8769d1ffa4ee058b1dbc3.png", + "isContractVerified": true, + "name": "BNB pegged Dai Token", + "occurrences": 12, + "storage": { + "approval": 2, + "balance": 1 + }, + "symbol": "DAI", + "type": "erc20" + }, + "eip155:56/erc20:0x55d398326f99059fF775485246999027B3197955": { + "aggregators": [ + "pancakeExtended", + "oneInch", + "liFi", + "trustWallet", + "socket", + "rubic", + "squid", + "rango", + "sonarwatch", + "sushiSwap" + ], + "decimals": 18, + "description": { + "en": "Tether (USDT) is a cryptocurrency with a value meant to mirror the value of the U.S. dollar. The idea was to create a stable cryptocurrency that can be used like digital dollars. Coins that serve this purpose of being a stable dollar substitute are called “stable coins.” Tether is the most popular stable coin and even acts as a dollar replacement on many popular exchanges! According to their site, Tether converts cash into digital currency, to anchor or “tether” the value of the coin to the price of national currencies like the US dollar, the Euro, and the Yen. Like other cryptos it uses blockchain. Unlike other cryptos, it is [according to the official Tether site] “100% backed by USD” (USD is held in reserve). The primary use of Tether is that it offers some stability to the otherwise volatile crypto space and offers liquidity to exchanges who can’t deal in dollars and with banks (for example to the sometimes controversial but leading exchange Bitfinex).The digital coins are issued by a company called Tether Limited that is governed by the laws of the British Virgin Islands, according to the legal part of its website. It is incorporated in Hong Kong. It has emerged that Jan Ludovicus van der Velde is the CEO of cryptocurrency exchange Bitfinex, which has been accused of being involved in the price manipulation of bitcoin, as well as tether. Many people trading on exchanges, including Bitfinex, will use tether to buy other cryptocurrencies like bitcoin. Tether Limited argues that using this method to buy virtual currencies allows users to move fiat in and out of an exchange more quickly and cheaply. Also, exchanges typically have rocky relationships with banks, and using Tether is a way to circumvent that.USDT is fairly simple to use. Once on exchanges like Poloniex or Bittrex, it can be used to purchase Bitcoin and other cryptocurrencies. It can be easily transferred from an exchange to any Omni Layer enabled wallet. Tether has no transaction fees, although external wallets and exchanges may charge one. In order to convert USDT to USD and vise versa through the Tether.to Platform, users must pay a small fee. Buying and selling Tether for Bitcoin can be done through a variety of exchanges like the ones mentioned previously or through the Tether.to platform, which also allows the conversion between USD to and from your bank account.", + "ko": "미국 달러화를 기반으로 한 블록체인1) 기반 암호화폐실제 달러화 유보금과 1:1정도의 비율을 유지함으로써 가치의 변동성이 거의 없다는 것이 특징가치 변동이 심한 다른 암호화폐 거래 시 안정적인 자산 운용을 위한 역할을 수행하고 있음가치암호화폐 거래를 위한 실질적 기축통화와 1:1 비율로 가치를 형성하는 거래 수단 및 극심한 변동성을 가지고 있는 다른 암호화폐를 거래하기 위한 실질적인 화폐의 기능을 수행할 수 있는 목적으로 만들어진 암호화폐 입니다.이러한 역할을 수행할 수 있는 화폐는 신뢰성을 바탕으로 운영과 관리가 되어야 하며 이를 운영사인 Tether사에서 은행에 1:1비율로 보유하고 있는 미국 달러를 토대로 투명하게 정기적으로 재무 상태를 공개하며 운영을 하는 정책을 가지고 있지만 실질적으로 2017년 들어 의혹이 생길 만한 일들이 다소 발생하였고 이로 인하여 신뢰도가 어느정도 하락한 상태입니다.하지만 아직까지는 USD를 기반으로 한 안정적인 가치의 유지는 지속되고 있으며 여전히 거래 시장 또한 활발하게 움직이고 있는 상황입니다." + }, + "erc20Permit": false, + "fees": { + "avgFee": 0, + "maxFee": 0, + "minFee": 0 + }, + "honeypotStatus": { + "goPlus": false, + "honeypotIs": false + }, + "image": "https://static.cx.metamask.io/api/v2/tokenIcons/assets/eip155/56/erc20/0x55d398326f99059ff775485246999027b3197955.png", + "isContractVerified": true, + "name": "Tether USD", + "occurrences": 11, + "storage": { + "approval": 2, + "balance": 1 + }, + "symbol": "USDT", + "type": "erc20" + }, + "eip155:56/erc20:0x5CA42204cDaa70d5c773946e69dE942b85CA6706": { + "decimals": 18, + "image": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x5ca42204cdaa70d5c773946e69de942b85ca6706.png", + "name": "Position", + "symbol": "POSI", + "type": "erc20" + }, + "eip155:56/erc20:0x683e9dCf085E5efCc7925858aAcE94D4b8882024": { + "decimals": 9, + "image": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x683e9dcf085e5efcc7925858aace94d4b8882024.png", + "name": "TangYuan", + "symbol": "TANGYUAN", + "type": "erc20" + }, + "eip155:56/erc20:0xF8A0BF9cF54Bb92F17374d9e9A321E6a111a51bD": { + "aggregators": [ + "pancakeTop100", + "oneInch", + "liFi", + "trustWallet", + "socket", + "rubic", + "squid", + "rango", + "sonarwatch", + "sushiSwap" + ], + "decimals": 18, + "description": { + "en": "Chainlink is a framework for building Decentralized Oracle Networks (DONs) that bring real-world data onto blockchain networks, enabling the creation of hybrid smart contracts. These DONs provide decentralized services such as Price Feeds, Proof of Reserve, Verifiable Randomness, Keepers, and the ability to connect to any web API. It aims to ensure that the external information (pricing, weather data, event outcomes, etc.) and off-chain computations (randomness, transaction automation, fair ordering, etc.) fed to on-chain smart contracts are reliable and tamper-proof.", + "ko": "블록체인기반의 완벽히 탈중앙화된 신탁 네트워크를 지향기존 블록체인들을 연결시켜주는 중계자 역할의 미들웨어ERC202) 토큰 기반이더리움의 창시자 비탈릭 부테린이 언급했던 플랫폼으로써 기존 블록체인들 간의 연결고리 역할을 수행하는 플랫폼입니다. 예를 들어 증권사와 은행간의 연결 및 API연동 기능을 수행할 수 있으며 서로 다른 플랫폼 간의 외부링크 및 API의 연동문제를 한번에 해결할 수 있는 플랫폼으로써 그 가치를 인정받고 있습니다.네트워크는 오라클 네트워크를 사용하며 당장 상용화를 할 수 있는 부분이 장점으로 인정받아 꾸준한 상승세를 이어 나가고 있는 추세입니다." + }, + "erc20Permit": false, + "fees": { + "avgFee": 0, + "maxFee": 0, + "minFee": 0 + }, + "honeypotStatus": { + "goPlus": false, + "honeypotIs": false + }, + "image": "https://static.cx.metamask.io/api/v2/tokenIcons/assets/eip155/56/erc20/0xf8a0bf9cf54bb92f17374d9e9a321e6a111a51bd.png", + "isContractVerified": true, + "name": "BNB pegged ChainLink", + "occurrences": 13, + "storage": { + "approval": 2, + "balance": 1 + }, + "symbol": "LINK", + "type": "erc20" + }, + "eip155:56/slip44:714": { + "type": "native", + "name": "Binance Coin", + "symbol": "BNB", + "decimals": 18, + "image": "https://static.cx.metamask.io/api/v2/tokenIcons/assets/eip155/56/slip44/714.png", + "occurrences": 100, + "aggregators": [], + "erc20Permit": false, + "honeypotStatus": {}, + "isContractVerified": false, + "description": { + "en": "Binance Coin is the cryptocurrency of the Binance platform. It is a trading platform exclusively for cryptocurrencies. The name \"Binance\" is a combination of binary and finance.Thus, the startup name shows that only cryptocurrencies can be traded against each other. It is not possible to trade crypto currencies against Fiat. The platform achieved an enormous success within a very short time and is focused on worldwide market with Malta headquarters. The cryptocurrency currently has a daily trading volume of 1.5 billion - 2 billion US dollars and is still increasing.In total, there will only be 200 million BNBs. Binance uses the ERC20 token standard from Ethereum and has distributed it as follow: 50% sold on ICO, 40% to the team and 10% to Angel investors. The coin can be used to pay fees on Binance. These include trading fees, transaction fees, listing fees and others. Binance gives you a huge discount when fees are paid in BNB. The schedule of BNB fees discount is as follow: In the first year, 50% discount on all fees, second year 25% discount, third year 12.5% discount, fourth year 6.75 % discount, and from the fifth year onwards there is no discount. This structure is used to incentivize users to buy BNB and do trades within Binance.Binance announced in a buyback plan that it would buy back up to 100 million BNB in Q1 2018. The coins are then burned. This means that they are devaluated to increase the value of the remaining coins. This benefits investors. In the future, the cryptocurrency will remain an asset on the trading platform and will be used as gas.Other tokens that are issued by exchanges include Bibox Token, OKB, Huobi Token, and more." + } + }, + "eip155:59144/erc20:0x176211869cA2b568f2A7D4EE941E073a821EE1ff": { + "aggregators": [ + "Metamask", + "1inch", + "LiFi", + "Socket", + "Rubic", + "Squid", + "Rango", + "Sonarwatch", + "SushiSwap" + ], + "decimals": 6, + "image": "https://static.cx.metamask.io/api/v1/tokenIcons/59144/0x176211869ca2b568f2a7d4ee941e073a821ee1ff.png", + "name": "USDC", + "symbol": "USDC", + "type": "erc20" + }, + "eip155:59144/erc20:0xacA92E438df0B2401fF60dA7E4337B687a2435DA": { + "decimals": 6, + "image": "https://static.cx.metamask.io/api/v1/tokenIcons/59144/0xaca92e438df0b2401ff60da7e4337b687a2435da.png", + "name": "MetaMask USD", + "symbol": "MUSD", + "type": "erc20" + }, + "eip155:59144/erc20:0xaca92e438df0b2401ff60da7e4337b687a2435da": { + "decimals": 6, + "name": "MetaMask USD", + "symbol": "mUSD", + "type": "erc20" + }, + "eip155:59144/slip44:60": { + "type": "native", + "name": "Ether", + "symbol": "ETH", + "decimals": 18, + "image": "https://static.cx.metamask.io/api/v2/tokenIcons/assets/eip155/59144/slip44/60.png", + "occurrences": 100, + "aggregators": [], + "erc20Permit": false, + "honeypotStatus": {}, + "description": { + "en": "Ethereum is a global, open-source platform for decentralized applications. In other words, the vision is to create a world computer that anyone can build applications in a decentralized manner; while all states and data are distributed and publicly accessible. Ethereum supports smart contracts in which developers can write code in order to program digital value. Examples of decentralized apps (dapps) that are built on Ethereum includes tokens, non-fungible tokens, decentralized finance apps, lending protocol, decentralized exchanges, and much more.On Ethereum, all transactions and smart contract executions require a small fee to be paid. This fee is called Gas. In technical terms, Gas refers to the unit of measure on the amount of computational effort required to execute an operation or a smart contract. The more complex the execution operation is, the more gas is required to fulfill that operation. Gas fees are paid entirely in Ether (ETH), which is the native coin of the blockchain. The price of gas can fluctuate from time to time depending on the network demand.", + "ko": "이더리움(Ethereum/ETH)은 블록체인 기술에 기반한 클라우드 컴퓨팅 플랫폼 또는 프로그래밍 언어이다. 비탈릭 부테린이 개발하였다.비탈릭 부테린은 가상화폐인 비트코인에 사용된 핵심 기술인 블록체인(blockchain)에 화폐 거래 기록뿐 아니라 계약서 등의 추가 정보를 기록할 수 있다는 점에 착안하여, 전 세계 수많은 사용자들이 보유하고 있는 컴퓨팅 자원을 활용해 분산 네트워크를 구성하고, 이 플랫폼을 이용하여 SNS, 이메일, 전자투표 등 다양한 정보를 기록하는 시스템을 창안했다. 이더리움은 C++, 자바, 파이썬, GO 등 주요 프로그래밍 언어를 지원한다.이더리움을 사물 인터넷(IoT)에 적용하면 기계 간 금융 거래도 가능해진다. 예를 들어 고장난 청소로봇이 정비로봇에 돈을 내고 정비를 받고, 청소로봇은 돈을 벌기 위해 정비로봇의 집을 청소하는 것도 가능해진다.", + "zh": "Ethereum(以太坊)是一个平台和一种编程语言,使开发人员能够建立和发布下一代分布式应用。Ethereum 是使用甲醚作为燃料,以激励其网络的第一个图灵完备cryptocurrency。Ethereum(以太坊) 是由Vitalik Buterin的创建。该项目于2014年8月获得了美国1800万$比特币的价值及其crowdsale期间。在2016年,Ethereum(以太坊)的价格上涨超过50倍。", + "ja": "イーサリアム (Ethereum, ETH)・プロジェクトにより開発が進められている、分散型アプリケーション(DApps)やスマート・コントラクトを構築するためのプラットフォームの名称、及び関連するオープンソース・ソフトウェア・プロジェクトの総称である。イーサリアムでは、イーサリアム・ネットワークと呼ばれるP2Pのネットワーク上でスマート・コントラクトの履行履歴をブロックチェーンに記録していく。またイーサリアムは、スマート・コントラクトを記述するチューリング完全なプログラミング言語を持ち、ネットワーク参加者はこのネットワーク上のブロックチェーンに任意のDAppsやスマート・コントラクトを記述しそれを実行することが可能になる。ネットワーク参加者が「Ether」と呼ばれるイーサリアム内部通貨の報酬を目当てに、採掘と呼ばれるブロックチェーンへのスマート・コントラクトの履行結果の記録を行うことで、その正統性を保証していく。このような仕組みにより特定の中央管理組織に依拠せず、P2P全体を実行環境としてプログラムの実行とその結果を共有することが可能になった。" + } + }, + "eip155:8453/erc20:0x623cD3a3EdF080057892aaF8D773Bbb7A5C9b6e9": { + "type": "erc20", + "name": "Sekuya Multiverse", + "symbol": "SKYA", + "decimals": 18, + "occurrences": 3, + "aggregators": ["coinGecko", "liFi", "rubic", "rango", "sonarwatch"], + "erc20Permit": false, + "honeypotStatus": { + "goPlus": false + }, + "storage": { + "balance": 1, + "approval": 2 + }, + "isContractVerified": true, + "description": { + "en": "Sekuya is a video game company headquartered in Singapore. Born from a community, Sekuya aims to revolutionize the gaming landscape with a community-driven approach in all new anime epic fantasy universe. Sekuya’s flagship project, Sekuya Multiverse, an award-winning start-up project, combines 2 of the world’s most popular gaming genres: MOBA + RPG, promising a new gaming experience for global players of both genres. Problem: The current fast-growing MOBA gaming genres have not received a significant gameplay update since around 2003. Additionally, despite the total gaming revenue reaching $180 billion in 2023, game item ownership remains centralized. Approach: An entirely new genre of Epic Fantasy MOBA MMORPG powered by a unique Web3 ownership (heroes, items, skills, pets) and AI co-creation tools (user generated skin & personalized superpower). Positioning: We are among the pioneers in introducing a completely unique gameplay experience, along with Web3 ownership and AI co-creation tools that have the potential to appeal to millions of gamers and creators. Sekuya Multiverse, an award-winning start up project with GAMEFI AI RWA narrative, combines 2 of the world’s most favorite gaming genres: MOBA MMORPG, promising a new experience for 250 million global players Supported by over 100 communities in Southeast Asia, Sekuya Multiverse offers an immersive MMORPG experience set in the Novae Terrae, a 10-world universe. Players, known as \"Jumpers,\" can utilize an AI character creator to customize their own character, interact with AI NPCs, embark on engaging storylines, and participate in battles to collect 400+ sekumon souls and win the grand rewards. Anticipate an exhilarating 5v5 MOBA featuring unique superpowers bestowed by Sekuya heroes and special abilities tailored to each player's personality." + } + }, + "eip155:8453/erc20:0xC438B0c0E80A8Fa1B36898d1b36A3fc2eC371C54": { + "type": "erc20", + "name": "Blep Super Meme", + "symbol": "BLEP", + "decimals": 18, + "occurrences": 3, + "aggregators": ["coinGecko", "rubic", "rango", "sonarwatch"], + "fees": { + "maxFee": 0, + "avgFee": 0, + "minFee": 0 + }, + "honeypotStatus": { + "goPlus": false + }, + "isContractVerified": true + }, + "eip155:8453/slip44:60": { + "type": "native", + "name": "Ether", + "symbol": "ETH", + "decimals": 18, + "image": "https://static.cx.metamask.io/api/v2/tokenIcons/assets/eip155/8453/slip44/60.png", + "occurrences": 100, + "aggregators": [], + "erc20Permit": false, + "honeypotStatus": {} + }, + "solana:5eykt4UsFv8P8NJdTREpY1vzqKqZKvdp/slip44:501": { + "aggregators": [], + "decimals": 9, + "image": "https://static.cx.metamask.io/api/v2/tokenIcons/assets/solana/5eykt4UsFv8P8NJdTREpY1vzqKqZKvdp/slip44/501.png", + "name": "SOL", + "occurrences": 100, + "symbol": "SOL", + "type": "native" + }, + "solana:5eykt4UsFv8P8NJdTREpY1vzqKqZKvdp/token:27G8MtK7VtTcCHkpASjSDdkWWYfoqT6ggEuKidVJidD4": { + "aggregators": ["trustWallet", "coinGecko", "jupiter", "orca", "lifi"], + "decimals": 6, + "image": "https://static.cx.metamask.io/api/v2/tokenIcons/assets/solana/5eykt4UsFv8P8NJdTREpY1vzqKqZKvdp/token/27G8MtK7VtTcCHkpASjSDdkWWYfoqT6ggEuKidVJidD4.png", + "name": "Jupiter Perps LP", + "occurrences": 5, + "symbol": "JLP", + "type": "erc20" + }, + "solana:5eykt4UsFv8P8NJdTREpY1vzqKqZKvdp/token:7atgF8KQo4wJrD5ATGX7t1V2zVvykPJbFfNeVf1icFv1": { + "aggregators": ["coinGecko", "jupiter", "orca"], + "decimals": 2, + "image": "https://static.cx.metamask.io/api/v2/tokenIcons/assets/solana/5eykt4UsFv8P8NJdTREpY1vzqKqZKvdp/token/7atgF8KQo4wJrD5ATGX7t1V2zVvykPJbFfNeVf1icFv1.png", + "name": "catwifhat", + "occurrences": 3, + "symbol": "$CWIF", + "type": "erc20" + }, + "solana:5eykt4UsFv8P8NJdTREpY1vzqKqZKvdp/token:7vfCXTUXx5WJV5JADk17DUJ4ksgau7utNKj4b963voxs": { + "aggregators": ["trustWallet", "coinGecko", "jupiter", "orca", "lifi"], + "decimals": 8, + "image": "https://static.cx.metamask.io/api/v2/tokenIcons/assets/solana/5eykt4UsFv8P8NJdTREpY1vzqKqZKvdp/token/7vfCXTUXx5WJV5JADk17DUJ4ksgau7utNKj4b963voxs.png", + "name": "Ether (Portal)", + "occurrences": 5, + "symbol": "ETH", + "type": "erc20" + }, + "solana:5eykt4UsFv8P8NJdTREpY1vzqKqZKvdp/token:8crhketCxuYMFfkvGfikwp6LGuN9sXx5i3oTC4PXpump": { + "decimals": 6, + "image": "https://static.cx.metamask.io/api/v2/tokenIcons/assets/solana/5eykt4UsFv8P8NJdTREpY1vzqKqZKvdp/token/8crhketCxuYMFfkvGfikwp6LGuN9sXx5i3oTC4PXpump.png", + "name": "SLMN", + "symbol": "SLMN", + "type": "erc20" + }, + "solana:5eykt4UsFv8P8NJdTREpY1vzqKqZKvdp/token:9zNQRsGLjNKwCUU5Gq5LR8beUCPzQMVMqKAi3SSZh54u": { + "aggregators": ["coinGecko", "jupiter", "orca", "lifi"], + "decimals": 6, + "image": "https://static.cx.metamask.io/api/v2/tokenIcons/assets/solana/5eykt4UsFv8P8NJdTREpY1vzqKqZKvdp/token/9zNQRsGLjNKwCUU5Gq5LR8beUCPzQMVMqKAi3SSZh54u.png", + "name": "First Digital USD", + "occurrences": 4, + "symbol": "FDUSD", + "type": "erc20" + }, + "solana:5eykt4UsFv8P8NJdTREpY1vzqKqZKvdp/token:CKfatsPMUf8SkiURsDXs7eK6GWb4Jsd6UDbs7twMCWxo": { + "aggregators": ["coinGecko", "jupiter", "lifi"], + "decimals": 5, + "image": "https://static.cx.metamask.io/api/v2/tokenIcons/assets/solana/5eykt4UsFv8P8NJdTREpY1vzqKqZKvdp/token/CKfatsPMUf8SkiURsDXs7eK6GWb4Jsd6UDbs7twMCWxo.png", + "name": "BonkEarn", + "occurrences": 3, + "symbol": "BERN", + "type": "erc20" + }, + "solana:5eykt4UsFv8P8NJdTREpY1vzqKqZKvdp/token:EPjFWdd5AufqSSqeM2qN1xzybapC8G4wEGGkZwyTDt1v": { + "aggregators": ["trustWallet", "coinGecko", "jupiter", "orca", "lifi"], + "decimals": 6, + "image": "https://static.cx.metamask.io/api/v2/tokenIcons/assets/solana/5eykt4UsFv8P8NJdTREpY1vzqKqZKvdp/token/EPjFWdd5AufqSSqeM2qN1xzybapC8G4wEGGkZwyTDt1v.png", + "labels": [], + "name": "USD Coin", + "occurrences": 5, + "symbol": "USDC", + "type": "erc20" + }, + "solana:5eykt4UsFv8P8NJdTREpY1vzqKqZKvdp/token:Es9vMFrzaCERmJfrF4H2FYD4KCoNkY11McCe8BenwNYB": { + "aggregators": ["trustWallet", "coinGecko", "jupiter", "orca", "lifi"], + "decimals": 6, + "image": "https://static.cx.metamask.io/api/v2/tokenIcons/assets/solana/5eykt4UsFv8P8NJdTREpY1vzqKqZKvdp/token/Es9vMFrzaCERmJfrF4H2FYD4KCoNkY11McCe8BenwNYB.png", + "name": "Tether USDT", + "occurrences": 5, + "symbol": "USDT", + "type": "erc20" + }, + "solana:5eykt4UsFv8P8NJdTREpY1vzqKqZKvdp/token:HeLp6NuQkmYB4pYWo2zYs22mESHXPQYzXbB8n4V98jwC": { + "aggregators": ["coinGecko", "jupiter", "orca", "lifi"], + "decimals": 9, + "image": "https://static.cx.metamask.io/api/v2/tokenIcons/assets/solana/5eykt4UsFv8P8NJdTREpY1vzqKqZKvdp/token/HeLp6NuQkmYB4pYWo2zYs22mESHXPQYzXbB8n4V98jwC.png", + "name": "ai16z", + "occurrences": 4, + "symbol": "AI16Z", + "type": "erc20" + }, + "solana:5eykt4UsFv8P8NJdTREpY1vzqKqZKvdp/token:JUPyiwrYJFskUPiHa7hkeR8VUtAeFoSYbKedZNsDvCN": { + "aggregators": ["coinGecko", "jupiter", "orca", "lifi"], + "decimals": 6, + "image": "https://static.cx.metamask.io/api/v2/tokenIcons/assets/solana/5eykt4UsFv8P8NJdTREpY1vzqKqZKvdp/token/JUPyiwrYJFskUPiHa7hkeR8VUtAeFoSYbKedZNsDvCN.png", + "name": "Jupiter", + "occurrences": 4, + "symbol": "JUP", + "type": "erc20" + }, + "tron:728126428/slip44:195": { + "aggregators": [], + "decimals": 6, + "image": "https://static.cx.metamask.io/api/v2/tokenIcons/assets/tron/728126428/slip44/195.png", + "name": "TRON", + "occurrences": 100, + "symbol": "TRX", + "type": "native" + }, + "tron:728126428/trc20:TR7NHqjeKQxGTCi8q8ZY4pL8otSzgjLj6t": { + "aggregators": ["coinGecko"], + "decimals": 6, + "image": "https://static.cx.metamask.io/api/v2/tokenIcons/assets/tron/728126428/trc20/TR7NHqjeKQxGTCi8q8ZY4pL8otSzgjLj6t.png", + "name": "Tether", + "occurrences": 1, + "symbol": "USDT", + "type": "erc20" + }, + "eip155:4326/erc20:0x88887bE419578051FF9F4eb6C858A951921D8888": { + "type": "erc20", + "symbol": "stcUSD", + "name": "Staked Cap USD", + "decimals": 18, + "image": "https://static.cx.metamask.io/api/v2/tokenIcons/assets/eip155/4326/erc20/0x88887be419578051ff9f4eb6c858a951921d8888.png", + "aggregators": [] + }, + "eip155:4326/erc20:0x8F77A685bDe702E6d32A103e9AeB41906317D7e5": { + "type": "erc20", + "symbol": "RBT", + "name": "Reserve Backed Token", + "decimals": 18, + "image": "https://static.cx.metamask.io/api/v2/tokenIcons/assets/eip155/4326/erc20/0x8f77a685bde702e6d32a103e9aeb41906317d7e5.png", + "aggregators": [] + } + }, + "assetsBalance": { + "02c4222b-f0d3-448e-848f-7bf6b3ce3379": { + "eip155:1/erc20:0xaca92e438df0b2401ff60da7e4337b687a2435da": { + "amount": "0" + }, + "eip155:1/erc20:0xdAC17F958D2ee523a2206206994597C13D831ec7": { + "amount": "4.424103" + }, + "eip155:1/slip44:60": { + "amount": "0.00007232397741756" + }, + "eip155:10/slip44:60": { + "amount": "0" + }, + "eip155:137/slip44:966": { + "amount": "0" + }, + "eip155:143/erc20:0xaca92e438df0b2401ff60da7e4337b687a2435da": { + "amount": "0" + }, + "eip155:143/slip44:268435779": { + "amount": "0" + }, + "eip155:324/slip44:60": { + "amount": "0" + }, + "eip155:42161/slip44:60": { + "amount": "0" + }, + "eip155:43114/slip44:9005": { + "amount": "0" + }, + "eip155:4326/erc20:0x0000000000000000000000000000000000000000": { + "amount": "0" + }, + "eip155:4326/erc20:0x5d3a1Ff2b6BAb83b63cd9AD0787074081a52ef34": { + "amount": "0" + }, + "eip155:4326/erc20:0x601aC63637933D88285A025C685AC4e9a92a98dA": { + "amount": "0" + }, + "eip155:4326/erc20:0xB0F70C0bD6FD87dbEb7C10dC692a2a6106817072": { + "amount": "0" + }, + "eip155:4326/erc20:0xB8CE59FC3717ada4C02eaDF9682A9e934F625ebb": { + "amount": "0" + }, + "eip155:4326/erc20:0xFAfDdbb3FC7688494971a79cc65DCa3EF82079E7": { + "amount": "0" + }, + "eip155:4326/erc20:0xf7d2F0d0b0517CBDbf87C86910ce10FaAab3589D": { + "amount": "0" + }, + "eip155:4326/slip44:60": { + "amount": "0" + }, + "eip155:56/slip44:714": { + "amount": "0.000759595995596286" + }, + "eip155:59144/erc20:0xaca92e438df0b2401ff60da7e4337b687a2435da": { + "amount": "0" + }, + "eip155:59144/slip44:60": { + "amount": "0" + } + }, + "076cbb47-1752-40b0-9314-1f07e7b88ffa": { + "solana:5eykt4UsFv8P8NJdTREpY1vzqKqZKvdp/slip44:501": { + "amount": "0.015372701" + }, + "solana:5eykt4UsFv8P8NJdTREpY1vzqKqZKvdp/token:CKfatsPMUf8SkiURsDXs7eK6GWb4Jsd6UDbs7twMCWxo": { + "amount": "0.00005" + }, + "solana:5eykt4UsFv8P8NJdTREpY1vzqKqZKvdp/token:HeLp6NuQkmYB4pYWo2zYs22mESHXPQYzXbB8n4V98jwC": { + "amount": "16.403260987" + }, + "solana:5eykt4UsFv8P8NJdTREpY1vzqKqZKvdp/token:7vfCXTUXx5WJV5JADk17DUJ4ksgau7utNKj4b963voxs": { + "amount": "0" + }, + "solana:5eykt4UsFv8P8NJdTREpY1vzqKqZKvdp/token:EPjFWdd5AufqSSqeM2qN1xzybapC8G4wEGGkZwyTDt1v": { + "amount": "0" + }, + "solana:5eykt4UsFv8P8NJdTREpY1vzqKqZKvdp/token:JUPyiwrYJFskUPiHa7hkeR8VUtAeFoSYbKedZNsDvCN": { + "amount": "0" + } + }, + "1c2440b0-d05e-4b07-881c-ebb9bce2bbb7": { + "tron:2494104990/slip44:195": { + "amount": "0" + }, + "tron:2494104990/slip44:195-in-lock-period": { + "amount": "0" + }, + "tron:2494104990/slip44:195-ready-for-withdrawal": { + "amount": "0" + }, + "tron:2494104990/slip44:195-staked-for-bandwidth": { + "amount": "0" + }, + "tron:2494104990/slip44:195-staked-for-energy": { + "amount": "0" + }, + "tron:2494104990/slip44:195-staking-rewards": { + "amount": "0" + }, + "tron:2494104990/slip44:bandwidth": { + "amount": "0" + }, + "tron:2494104990/slip44:energy": { + "amount": "0" + }, + "tron:2494104990/slip44:maximum-bandwidth": { + "amount": "0" + }, + "tron:2494104990/slip44:maximum-energy": { + "amount": "0" + }, + "tron:3448148188/slip44:195": { + "amount": "0" + }, + "tron:3448148188/slip44:195-in-lock-period": { + "amount": "0" + }, + "tron:3448148188/slip44:195-ready-for-withdrawal": { + "amount": "0" + }, + "tron:3448148188/slip44:195-staked-for-bandwidth": { + "amount": "0" + }, + "tron:3448148188/slip44:195-staked-for-energy": { + "amount": "0" + }, + "tron:3448148188/slip44:195-staking-rewards": { + "amount": "0" + }, + "tron:3448148188/slip44:bandwidth": { + "amount": "0" + }, + "tron:3448148188/slip44:energy": { + "amount": "0" + }, + "tron:3448148188/slip44:maximum-bandwidth": { + "amount": "0" + }, + "tron:3448148188/slip44:maximum-energy": { + "amount": "0" + }, + "tron:728126428/slip44:195": { + "amount": "0" + }, + "tron:728126428/slip44:195-in-lock-period": { + "amount": "0" + }, + "tron:728126428/slip44:195-ready-for-withdrawal": { + "amount": "0" + }, + "tron:728126428/slip44:195-staked-for-bandwidth": { + "amount": "0" + }, + "tron:728126428/slip44:195-staked-for-energy": { + "amount": "0" + }, + "tron:728126428/slip44:195-staking-rewards": { + "amount": "0" + }, + "tron:728126428/slip44:bandwidth": { + "amount": "0" + }, + "tron:728126428/slip44:energy": { + "amount": "0" + }, + "tron:728126428/slip44:maximum-bandwidth": { + "amount": "0" + }, + "tron:728126428/slip44:maximum-energy": { + "amount": "0" + } + }, + "23ce192d-62e7-4d4f-a168-93ae18dc915d": { + "bip122:000000000019d6689c085ae165831e93/slip44:0": { + "amount": "0" + } + }, + "2727ea45-0879-4ce8-bbac-e7b83a7ca3de": { + "eip155:1/slip44:60": { + "amount": "0.000034414919361854" + }, + "eip155:1/erc20:0x6B175474E89094C44Da98b954EedeAC495271d0F": { + "amount": "10.000000000000000000" + }, + "eip155:1/erc20:0x14c3abF95Cb9C93a8b82C1CdCB76D72Cb87b2d4c": { + "amount": "0.013783146863745083" + }, + "eip155:1/erc20:0xD4419C2d3DAA986Dc30444Fa333a846be44Fd1eb": { + "amount": "222.000000000000000000" + }, + "eip155:8453/slip44:60": { + "amount": "0.000002046469463686" + }, + "eip155:8453/erc20:0x07d15798a67253D76cea61F0eA6F57AeDC59DffB": { + "amount": "5444.000000000000000000" + }, + "eip155:8453/erc20:0x3d63825B0d8669307366E6c8202f656b9E91D368": { + "amount": "0.010000" + }, + "eip155:8453/erc20:0x623cD3a3EdF080057892aaF8D773Bbb7A5C9b6e9": { + "amount": "1.910000000000000000" + }, + "eip155:8453/erc20:0x88Fb150BDc53A65fe94Dea0c9BA0a6dAf8C6e196": { + "amount": "0.004577788730046580" + }, + "eip155:8453/erc20:0x8C6F889888d22Ee1d8Aa2954B61b9F10E7402b95": { + "amount": "160.000000000000000000" + }, + "eip155:8453/erc20:0xa1Ca6299ba48366Af1845A9A8AE59B87ff0d5C01": { + "amount": "166.000000000000000000" + }, + "eip155:8453/erc20:0xAfB5d4d474693e68Df500c9c682E6A2841f9661A": { + "amount": "1.000000000000000000" + }, + "eip155:8453/erc20:0xC438B0c0E80A8Fa1B36898d1b36A3fc2eC371C54": { + "amount": "100.000000000000000000" + }, + "eip155:8453/erc20:0xCa72827a3D211CfD8F6b00Ac98824872b72CAb49": { + "amount": "0.000004" + }, + "eip155:8453/erc20:0xD968196FA6977c4e58F2af5aC01C655ea8332d22": { + "amount": "740000.000000000000000000" + }, + "eip155:8453/erc20:0xfAf87e196A29969094bE35DfB0Ab9d0b8518dB84": { + "amount": "0.000100" + }, + "eip155:56/slip44:714": { + "amount": "0.00003121948" + }, + "eip155:56/erc20:0x1AF3F329e8BE154074D8769D1FFa4eE058B1DBc3": { + "amount": "4.326704419849461523" + }, + "eip155:56/erc20:0x55d398326f99059fF775485246999027B3197955": { + "amount": "1.434895791588498636" + }, + "eip155:56/erc20:0xF8A0BF9cF54Bb92F17374d9e9A321E6a111a51bD": { + "amount": "0.487747159749581541" + }, + "eip155:56/erc20:0x000Ae314E2A2172a039B26378814C252734f556A": { + "amount": "1.942927909662451287" + }, + "eip155:56/erc20:0xa18b59607B7286A6533FD8C7E8C9716eac9A5C73": { + "amount": "21500.320000000000000000" + }, + "eip155:56/erc20:0xd5da8318cE7ca005E8F5285Db0e750CA9256586e": { + "amount": "60000.000000" + }, + "eip155:137/slip44:966": { + "amount": "0.063974383933502492" + }, + "eip155:137/erc20:0x2791Bca1f2de4661ED88A30C99A7a9449Aa84174": { + "amount": "3.320136" + }, + "eip155:137/erc20:0x950Ddb91842C58814ed4Ee7077Ce35632225797e": { + "amount": "69.000000" + }, + "eip155:137/erc20:0xa1Ca6299ba48366Af1845A9A8AE59B87ff0d5C01": { + "amount": "150.000000000000000000" + }, + "eip155:137/erc20:0xA649325Aa7C5093d12D6F98EB4378deAe68CE23F": { + "amount": "0.170763759131919475" + }, + "eip155:143/slip44:268435779": { + "amount": "1" + }, + "eip155:10/slip44:60": { + "amount": "0.000139479088483624" + }, + "eip155:10/erc20:0x0b2C639c533813f4Aa9D7837CAf62653d097Ff85": { + "amount": "0.000001" + }, + "eip155:10/erc20:0xDA10009cBd5D07dd0CeCc66161FC93D7c9000da1": { + "amount": "0.004625351648943006" + }, + "eip155:10/erc20:0x0994206dfE8De6Ec6920FF4D779B0d950605Fb53": { + "amount": "9.472039623103198418" + }, + "eip155:10/erc20:0x4200000000000000000000000000000000000042": { + "amount": "4.928964912275496064" + }, + "eip155:42161/slip44:60": { + "amount": "0.011949665518119878" + }, + "eip155:42161/erc20:0x306fD3e7b169Aa4ee19412323e1a5995B8c1a1f4": { + "amount": "15000.000000000000000000" + }, + "eip155:59144/slip44:60": { + "amount": "0.002147447709926979" + }, + "eip155:59144/erc20:0xacA92E438df0B2401fF60dA7E4337B687a2435DA": { + "amount": "5.660188" + }, + "eip155:1/erc20:0xacA92E438df0B2401fF60dA7E4337B687a2435DA": { + "amount": "0" + }, + "eip155:4326/erc20:0xB8CE59FC3717ada4C02eaDF9682A9e934F625ebb": { + "amount": "0" + }, + "eip155:4326/erc20:0xFAfDdbb3FC7688494971a79cc65DCa3EF82079E7": { + "amount": "0" + }, + "eip155:4326/erc20:0xB0F70C0bD6FD87dbEb7C10dC692a2a6106817072": { + "amount": "0" + }, + "eip155:4326/erc20:0xf7d2F0d0b0517CBDbf87C86910ce10FaAab3589D": { + "amount": "0" + }, + "eip155:4326/erc20:0x2eA493384F42d7Ea78564F3EF4C86986eAB4a890": { + "amount": "0" + }, + "eip155:4326/erc20:0x601aC63637933D88285A025C685AC4e9a92a98dA": { + "amount": "0" + }, + "eip155:4326/erc20:0x551DFe38994eC53c9E7E18084D73893225Eea3bf": { + "amount": "0" + }, + "eip155:4326/erc20:0x3F927036A6c29F50e1c2dfceba572FC40Cf39069": { + "amount": "0" + }, + "eip155:4326/erc20:0x1C4784308adB589c1ED3fa88A48B7FcEFba5FA3C": { + "amount": "0" + }, + "eip155:4326/erc20:0x5d3a1Ff2b6BAb83b63cd9AD0787074081a52ef34": { + "amount": "0" + }, + "eip155:42161/erc20:0xaf88d065e77c8cC2239327C5EDb3A432268e5831": { + "amount": "0" + }, + "eip155:59144/erc20:0x176211869cA2b568f2A7D4EE941E073a821EE1ff": { + "amount": "0" + }, + "eip155:4326/erc20:0x28B7E77f82B25B95953825F1E3eA0E36c1c29861": { + "amount": "0" + }, + "eip155:4326/erc20:0x88887bE419578051FF9F4eb6C858A951921D8888": { + "amount": "0" + }, + "eip155:4326/erc20:0x8F77A685bDe702E6d32A103e9AeB41906317D7e5": { + "amount": "0" + }, + "eip155:4326/erc20:0x0000000000000000000000000000000000000000": { + "amount": "0" + }, + "eip155:324/slip44:60": { + "amount": "0" + }, + "eip155:43114/slip44:9005": { + "amount": "1.504942656206357886" + }, + "eip155:1/erc20:0xaca92e438df0b2401ff60da7e4337b687a2435da": { + "amount": "0" + }, + "eip155:143/erc20:0xaca92e438df0b2401ff60da7e4337b687a2435da": { + "amount": "0" + }, + "eip155:59144/erc20:0xaca92e438df0b2401ff60da7e4337b687a2435da": { + "amount": "0" + } + }, + "2ddfe00a-fef1-4085-82f5-e5cdc9d8871f": { + "eip155:1/slip44:60": { + "amount": "0" + }, + "eip155:10/slip44:60": { + "amount": "0" + }, + "eip155:137/slip44:966": { + "amount": "0" + }, + "eip155:143/slip44:268435779": { + "amount": "0" + }, + "eip155:324/slip44:60": { + "amount": "0" + }, + "eip155:42161/slip44:60": { + "amount": "0" + }, + "eip155:43114/slip44:9005": { + "amount": "0" + }, + "eip155:4326/slip44:60": { + "amount": "0" + }, + "eip155:56/slip44:714": { + "amount": "0" + }, + "eip155:59144/slip44:60": { + "amount": "0" + }, + "eip155:8453/slip44:60": { + "amount": "0" + } + }, + "3d26ef67-6870-4750-af80-bce53fa4a0af": { + "tron:2494104990/slip44:195": { + "amount": "0" + }, + "tron:2494104990/slip44:195-in-lock-period": { + "amount": "0" + }, + "tron:2494104990/slip44:195-ready-for-withdrawal": { + "amount": "0" + }, + "tron:2494104990/slip44:195-staked-for-bandwidth": { + "amount": "0" + }, + "tron:2494104990/slip44:195-staked-for-energy": { + "amount": "0" + }, + "tron:2494104990/slip44:195-staking-rewards": { + "amount": "0" + }, + "tron:2494104990/slip44:bandwidth": { + "amount": "0" + }, + "tron:2494104990/slip44:energy": { + "amount": "0" + }, + "tron:2494104990/slip44:maximum-bandwidth": { + "amount": "0" + }, + "tron:2494104990/slip44:maximum-energy": { + "amount": "0" + }, + "tron:3448148188/slip44:195": { + "amount": "0" + }, + "tron:3448148188/slip44:195-in-lock-period": { + "amount": "0" + }, + "tron:3448148188/slip44:195-ready-for-withdrawal": { + "amount": "0" + }, + "tron:3448148188/slip44:195-staked-for-bandwidth": { + "amount": "0" + }, + "tron:3448148188/slip44:195-staked-for-energy": { + "amount": "0" + }, + "tron:3448148188/slip44:195-staking-rewards": { + "amount": "0" + }, + "tron:3448148188/slip44:bandwidth": { + "amount": "0" + }, + "tron:3448148188/slip44:energy": { + "amount": "0" + }, + "tron:3448148188/slip44:maximum-bandwidth": { + "amount": "0" + }, + "tron:3448148188/slip44:maximum-energy": { + "amount": "0" + }, + "tron:728126428/slip44:195": { + "amount": "53.676935" + }, + "tron:728126428/slip44:195-in-lock-period": { + "amount": "0" + }, + "tron:728126428/slip44:195-ready-for-withdrawal": { + "amount": "0" + }, + "tron:728126428/slip44:195-staked-for-bandwidth": { + "amount": "0" + }, + "tron:728126428/slip44:195-staked-for-energy": { + "amount": "0" + }, + "tron:728126428/slip44:195-staking-rewards": { + "amount": "0" + }, + "tron:728126428/slip44:bandwidth": { + "amount": "600" + }, + "tron:728126428/slip44:energy": { + "amount": "0" + }, + "tron:728126428/slip44:maximum-bandwidth": { + "amount": "600" + }, + "tron:728126428/slip44:maximum-energy": { + "amount": "0" + }, + "tron:728126428/trc20:TR7NHqjeKQxGTCi8q8ZY4pL8otSzgjLj6t": { + "amount": "10.349701" + } + }, + "55fe5095-3194-42c2-81d3-5701dcad1924": { + "eip155:1/slip44:60": { + "amount": "0" + }, + "eip155:10/slip44:60": { + "amount": "0" + }, + "eip155:137/slip44:966": { + "amount": "0" + }, + "eip155:143/slip44:268435779": { + "amount": "0" + }, + "eip155:324/slip44:60": { + "amount": "0" + }, + "eip155:42161/slip44:60": { + "amount": "0" + }, + "eip155:43114/slip44:9005": { + "amount": "0" + }, + "eip155:4326/erc20:0x0000000000000000000000000000000000000000": { + "amount": "0" + }, + "eip155:56/slip44:714": { + "amount": "0" + }, + "eip155:59144/slip44:60": { + "amount": "0" + }, + "solana:5eykt4UsFv8P8NJdTREpY1vzqKqZKvdp/slip44:501": { + "amount": "0.002413557" + }, + "solana:5eykt4UsFv8P8NJdTREpY1vzqKqZKvdp/token:27G8MtK7VtTcCHkpASjSDdkWWYfoqT6ggEuKidVJidD4": { + "amount": "0" + }, + "solana:5eykt4UsFv8P8NJdTREpY1vzqKqZKvdp/token:7atgF8KQo4wJrD5ATGX7t1V2zVvykPJbFfNeVf1icFv1": { + "amount": "0" + }, + "solana:5eykt4UsFv8P8NJdTREpY1vzqKqZKvdp/token:8crhketCxuYMFfkvGfikwp6LGuN9sXx5i3oTC4PXpump": { + "amount": "0" + }, + "solana:5eykt4UsFv8P8NJdTREpY1vzqKqZKvdp/token:9zNQRsGLjNKwCUU5Gq5LR8beUCPzQMVMqKAi3SSZh54u": { + "amount": "0" + }, + "solana:5eykt4UsFv8P8NJdTREpY1vzqKqZKvdp/token:CKfatsPMUf8SkiURsDXs7eK6GWb4Jsd6UDbs7twMCWxo": { + "amount": "13.43184" + }, + "solana:5eykt4UsFv8P8NJdTREpY1vzqKqZKvdp/token:EPjFWdd5AufqSSqeM2qN1xzybapC8G4wEGGkZwyTDt1v": { + "amount": "0" + }, + "solana:5eykt4UsFv8P8NJdTREpY1vzqKqZKvdp/token:Es9vMFrzaCERmJfrF4H2FYD4KCoNkY11McCe8BenwNYB": { + "amount": "0" + } + }, + "574cb22f-c2d5-40d2-86a5-e3393d33050f": { + "bip122:000000000019d6689c085ae165831e93/slip44:0": { + "amount": "0.00015445" + } + }, + "5a747531-d39f-49d5-afbd-59c018cc4757": { + "solana:5eykt4UsFv8P8NJdTREpY1vzqKqZKvdp/slip44:501": { + "amount": "0" + } + }, + "7020eb89-94df-4e67-ba9f-a9ebe6c40524": { + "eip155:1/erc20:0xD4419C2d3DAA986Dc30444Fa333a846be44Fd1eb": { + "amount": "0" + }, + "eip155:1/erc20:0xacA92E438df0B2401fF60dA7E4337B687a2435DA": { + "amount": "0" + }, + "eip155:1/erc20:0xaca92e438df0b2401ff60da7e4337b687a2435da": { + "amount": "0" + }, + "eip155:1/slip44:60": { + "amount": "0.000305625930590956" + }, + "eip155:10/slip44:60": { + "amount": "0.000000001108804847" + }, + "eip155:137/erc20:0xc2132D05D31c914a87C6611C10748AEb04B58e8F": { + "amount": "0" + }, + "eip155:137/slip44:966": { + "amount": "0" + }, + "eip155:143/erc20:0xaca92e438df0b2401ff60da7e4337b687a2435da": { + "amount": "0" + }, + "eip155:143/slip44:268435779": { + "amount": "0" + }, + "eip155:324/slip44:60": { + "amount": "0" + }, + "eip155:42161/slip44:60": { + "amount": "0" + }, + "eip155:43114/erc20:0xB97EF9Ef8734C71904D8002F8b6Bc66Dd9c48a6E": { + "amount": "0" + }, + "eip155:43114/slip44:9005": { + "amount": "0" + }, + "eip155:4326/erc20:0x0000000000000000000000000000000000000000": { + "amount": "0" + }, + "eip155:4326/erc20:0x021ee124cF23D302A7f725AE7a01B77A8ce9782B": { + "amount": "0" + }, + "eip155:4326/erc20:0x0C833bcDd2dC74d7a8Dca82ed011E32d04Fe5843": { + "amount": "0" + }, + "eip155:4326/erc20:0x16513005E80A20683b3527f977Ff74166F6Bcf73": { + "amount": "0" + }, + "eip155:4326/erc20:0x1f2C6BF8d3Cbd7EF80d9dd42A21b297a0a7af136": { + "amount": "0" + }, + "eip155:4326/erc20:0x27a4A176007047A9470dbaEd609290F68815B069": { + "amount": "0" + }, + "eip155:4326/erc20:0x2eA493384F42d7Ea78564F3EF4C86986eAB4a890": { + "amount": "0" + }, + "eip155:4326/erc20:0x3F927036A6c29F50e1c2dfceba572FC40Cf39069": { + "amount": "0" + }, + "eip155:4326/erc20:0x551DFe38994eC53c9E7E18084D73893225Eea3bf": { + "amount": "0" + }, + "eip155:4326/erc20:0x5d3a1Ff2b6BAb83b63cd9AD0787074081a52ef34": { + "amount": "0" + }, + "eip155:4326/erc20:0x601aC63637933D88285A025C685AC4e9a92a98dA": { + "amount": "0" + }, + "eip155:4326/erc20:0xB0F70C0bD6FD87dbEb7C10dC692a2a6106817072": { + "amount": "0" + }, + "eip155:4326/erc20:0xB8CE59FC3717ada4C02eaDF9682A9e934F625ebb": { + "amount": "0" + }, + "eip155:4326/erc20:0xFAfDdbb3FC7688494971a79cc65DCa3EF82079E7": { + "amount": "0" + }, + "eip155:4326/erc20:0xcCcc62962d17b8914c62D74FfB843d73B2a3cccC": { + "amount": "0" + }, + "eip155:4326/erc20:0xf7d2F0d0b0517CBDbf87C86910ce10FaAab3589D": { + "amount": "0" + }, + "eip155:4326/slip44:60": { + "amount": "0" + }, + "eip155:56/erc20:0x55d398326f99059fF775485246999027B3197955": { + "amount": "1.038408725899185861" + }, + "eip155:56/slip44:714": { + "amount": "0.00000823674" + }, + "eip155:59144/erc20:0xaca92e438df0b2401ff60da7e4337b687a2435da": { + "amount": "0" + }, + "eip155:59144/slip44:60": { + "amount": "0" + } + }, + "8b0e3ad2-d40d-47b1-a9c3-702eb67ab1ba": { + "tron:2494104990/slip44:195": { + "amount": "0" + }, + "tron:2494104990/slip44:195-in-lock-period": { + "amount": "0" + }, + "tron:2494104990/slip44:195-ready-for-withdrawal": { + "amount": "0" + }, + "tron:2494104990/slip44:195-staked-for-bandwidth": { + "amount": "0" + }, + "tron:2494104990/slip44:195-staked-for-energy": { + "amount": "0" + }, + "tron:2494104990/slip44:195-staking-rewards": { + "amount": "0" + }, + "tron:2494104990/slip44:bandwidth": { + "amount": "0" + }, + "tron:2494104990/slip44:energy": { + "amount": "0" + }, + "tron:2494104990/slip44:maximum-bandwidth": { + "amount": "0" + }, + "tron:2494104990/slip44:maximum-energy": { + "amount": "0" + }, + "tron:3448148188/slip44:195": { + "amount": "0" + }, + "tron:3448148188/slip44:195-in-lock-period": { + "amount": "0" + }, + "tron:3448148188/slip44:195-ready-for-withdrawal": { + "amount": "0" + }, + "tron:3448148188/slip44:195-staked-for-bandwidth": { + "amount": "0" + }, + "tron:3448148188/slip44:195-staked-for-energy": { + "amount": "0" + }, + "tron:3448148188/slip44:195-staking-rewards": { + "amount": "0" + }, + "tron:3448148188/slip44:bandwidth": { + "amount": "0" + }, + "tron:3448148188/slip44:energy": { + "amount": "0" + }, + "tron:3448148188/slip44:maximum-bandwidth": { + "amount": "0" + }, + "tron:3448148188/slip44:maximum-energy": { + "amount": "0" + }, + "tron:728126428/slip44:195": { + "amount": "0" + }, + "tron:728126428/slip44:195-in-lock-period": { + "amount": "0" + }, + "tron:728126428/slip44:195-ready-for-withdrawal": { + "amount": "0" + }, + "tron:728126428/slip44:195-staked-for-bandwidth": { + "amount": "0" + }, + "tron:728126428/slip44:195-staked-for-energy": { + "amount": "0" + }, + "tron:728126428/slip44:195-staking-rewards": { + "amount": "0" + }, + "tron:728126428/slip44:bandwidth": { + "amount": "0" + }, + "tron:728126428/slip44:energy": { + "amount": "0" + }, + "tron:728126428/slip44:maximum-bandwidth": { + "amount": "0" + }, + "tron:728126428/slip44:maximum-energy": { + "amount": "0" + } + }, + "c5bf70b0-2c4b-4016-9107-cab94be5fbb0": { + "tron:728126428/slip44:195": { + "amount": "49.889968" + }, + "tron:728126428/slip44:bandwidth": { + "amount": "600" + }, + "tron:728126428/slip44:maximum-bandwidth": { + "amount": "600" + }, + "tron:728126428/slip44:energy": { + "amount": "0" + }, + "tron:728126428/slip44:maximum-energy": { + "amount": "0" + }, + "tron:728126428/slip44:195-staked-for-bandwidth": { + "amount": "0" + }, + "tron:728126428/slip44:195-staked-for-energy": { + "amount": "0" + }, + "tron:728126428/slip44:195-ready-for-withdrawal": { + "amount": "0" + }, + "tron:728126428/slip44:195-in-lock-period": { + "amount": "0" + }, + "tron:728126428/slip44:195-staking-rewards": { + "amount": "0" + }, + "tron:3448148188/slip44:195": { + "amount": "0" + }, + "tron:2494104990/slip44:195": { + "amount": "0" + }, + "tron:3448148188/slip44:195-staked-for-bandwidth": { + "amount": "0" + }, + "tron:2494104990/slip44:195-staked-for-bandwidth": { + "amount": "0" + }, + "tron:3448148188/slip44:195-staked-for-energy": { + "amount": "0" + }, + "tron:2494104990/slip44:195-staked-for-energy": { + "amount": "0" + }, + "tron:3448148188/slip44:195-ready-for-withdrawal": { + "amount": "0" + }, + "tron:2494104990/slip44:195-ready-for-withdrawal": { + "amount": "0" + }, + "tron:3448148188/slip44:195-staking-rewards": { + "amount": "0" + }, + "tron:2494104990/slip44:195-staking-rewards": { + "amount": "0" + }, + "tron:3448148188/slip44:195-in-lock-period": { + "amount": "0" + }, + "tron:2494104990/slip44:195-in-lock-period": { + "amount": "0" + }, + "tron:3448148188/slip44:bandwidth": { + "amount": "0" + }, + "tron:2494104990/slip44:bandwidth": { + "amount": "0" + }, + "tron:3448148188/slip44:maximum-bandwidth": { + "amount": "0" + }, + "tron:2494104990/slip44:maximum-bandwidth": { + "amount": "0" + }, + "tron:3448148188/slip44:energy": { + "amount": "0" + }, + "tron:2494104990/slip44:energy": { + "amount": "0" + }, + "tron:3448148188/slip44:maximum-energy": { + "amount": "0" + }, + "tron:2494104990/slip44:maximum-energy": { + "amount": "0" + } + }, + "c6d62ae8-d02c-4a7a-8222-17ed6cdf0e52": { + "bip122:000000000019d6689c085ae165831e93/slip44:0": { + "amount": "0" + } + }, + "c86652a6-e1f3-4e4c-b411-c58efe220dcf": { + "solana:5eykt4UsFv8P8NJdTREpY1vzqKqZKvdp/slip44:501": { + "amount": "0" + } + }, + "cf6fe6ed-1d1c-4649-9662-a232e0aadb82": { + "eip155:1/erc20:0x14c3abF95Cb9C93a8b82C1CdCB76D72Cb87b2d4c": { + "amount": "0" + }, + "eip155:1/erc20:0xD4419C2d3DAA986Dc30444Fa333a846be44Fd1eb": { + "amount": "222.000000000000000000" + }, + "eip155:1/erc20:0xacA92E438df0B2401fF60dA7E4337B687a2435DA": { + "amount": "2.410754" + }, + "eip155:1/erc20:0xaca92e438df0b2401ff60da7e4337b687a2435da": { + "amount": "0" + }, + "eip155:1/slip44:60": { + "amount": "0.000166047313074794" + }, + "eip155:10/slip44:60": { + "amount": "0.002236572382273542" + }, + "eip155:137/erc20:0xb33EaAd8d922B1083446DC23f610c2567fB5180f": { + "amount": "0" + }, + "eip155:137/erc20:0xc2132D05D31c914a87C6611C10748AEb04B58e8F": { + "amount": "0" + }, + "eip155:137/slip44:966": { + "amount": "0.031263872209934727" + }, + "eip155:143/erc20:0xaca92e438df0b2401ff60da7e4337b687a2435da": { + "amount": "0" + }, + "eip155:143/slip44:268435779": { + "amount": "304.877580254" + }, + "eip155:324/slip44:60": { + "amount": "0" + }, + "eip155:42161/erc20:0xaf88d065e77c8cC2239327C5EDb3A432268e5831": { + "amount": "0" + }, + "eip155:42161/slip44:60": { + "amount": "0" + }, + "eip155:43114/erc20:0xB97EF9Ef8734C71904D8002F8b6Bc66Dd9c48a6E": { + "amount": "3.193536" + }, + "eip155:43114/slip44:9005": { + "amount": "0" + }, + "eip155:4326/erc20:0x0000000000000000000000000000000000000000": { + "amount": "0" + }, + "eip155:4326/erc20:0x021ee124cF23D302A7f725AE7a01B77A8ce9782B": { + "amount": "0" + }, + "eip155:4326/erc20:0x0C833bcDd2dC74d7a8Dca82ed011E32d04Fe5843": { + "amount": "0" + }, + "eip155:4326/erc20:0x118b949f2CaF55F9D75cdE8D2F6C8fEC98376420": { + "amount": "0" + }, + "eip155:4326/erc20:0x141cF6BFe9D5057883B9BECB39fEE8A62982dC93": { + "amount": "0" + }, + "eip155:4326/erc20:0x16513005E80A20683b3527f977Ff74166F6Bcf73": { + "amount": "0" + }, + "eip155:4326/erc20:0x1f2C6BF8d3Cbd7EF80d9dd42A21b297a0a7af136": { + "amount": "0" + }, + "eip155:4326/erc20:0x273D38762CEe7Db9474ec0FD37a94bBda198E6c0": { + "amount": "0" + }, + "eip155:4326/erc20:0x28B7E77f82B25B95953825F1E3eA0E36c1c29861": { + "amount": "0" + }, + "eip155:4326/erc20:0x2A3a4c92ce37ABd7239fB010BC390710f4062407": { + "amount": "0" + }, + "eip155:4326/erc20:0x2eA493384F42d7Ea78564F3EF4C86986eAB4a890": { + "amount": "0" + }, + "eip155:4326/erc20:0x39894d0B1aa402ae565678fc47F31717Ac2ae888": { + "amount": "0" + }, + "eip155:4326/erc20:0x3F927036A6c29F50e1c2dfceba572FC40Cf39069": { + "amount": "0" + }, + "eip155:4326/erc20:0x551DFe38994eC53c9E7E18084D73893225Eea3bf": { + "amount": "0" + }, + "eip155:4326/erc20:0x5d3a1Ff2b6BAb83b63cd9AD0787074081a52ef34": { + "amount": "0" + }, + "eip155:4326/erc20:0x601aC63637933D88285A025C685AC4e9a92a98dA": { + "amount": "0" + }, + "eip155:4326/erc20:0xB0F70C0bD6FD87dbEb7C10dC692a2a6106817072": { + "amount": "0" + }, + "eip155:4326/erc20:0xB8CE59FC3717ada4C02eaDF9682A9e934F625ebb": { + "amount": "0" + }, + "eip155:4326/erc20:0xFAfDdbb3FC7688494971a79cc65DCa3EF82079E7": { + "amount": "0" + }, + "eip155:4326/erc20:0xcCcc62962d17b8914c62D74FfB843d73B2a3cccC": { + "amount": "0" + }, + "eip155:4326/erc20:0xf7d2F0d0b0517CBDbf87C86910ce10FaAab3589D": { + "amount": "0" + }, + "eip155:56/erc20:0x55d398326f99059fF775485246999027B3197955": { + "amount": "0" + }, + "eip155:56/slip44:714": { + "amount": "0.00001483778992627" + }, + "eip155:59144/erc20:0x176211869cA2b568f2A7D4EE941E073a821EE1ff": { + "amount": "0" + }, + "eip155:59144/erc20:0xacA92E438df0B2401fF60dA7E4337B687a2435DA": { + "amount": "0" + }, + "eip155:59144/erc20:0xaca92e438df0b2401ff60da7e4337b687a2435da": { + "amount": "0" + }, + "eip155:59144/slip44:60": { + "amount": "0.001082274048352509" + } + }, + "d05ca007-7a11-470f-8433-a89767f95995": { + "bip122:000000000019d6689c085ae165831e93/slip44:0": { + "amount": "0" + } + }, + "e4cb2ec8-15e3-494a-bde2-6ea14e6d0d6c": { + "eip155:1/slip44:60": { + "amount": "0" + }, + "eip155:10/slip44:60": { + "amount": "0" + }, + "eip155:137/slip44:966": { + "amount": "0" + }, + "eip155:143/slip44:268435779": { + "amount": "0" + }, + "eip155:324/slip44:60": { + "amount": "0" + }, + "eip155:42161/slip44:60": { + "amount": "0" + }, + "eip155:43114/slip44:9005": { + "amount": "0" + }, + "eip155:4326/erc20:0x0000000000000000000000000000000000000000": { + "amount": "0" + }, + "eip155:56/slip44:714": { + "amount": "0" + }, + "eip155:59144/slip44:60": { + "amount": "0" + }, + "solana:5eykt4UsFv8P8NJdTREpY1vzqKqZKvdp/slip44:501": { + "amount": "0" + } + }, + "fedf900d-3caf-4540-9e24-c63400ef2b18": { + "tron:2494104990/slip44:195": { + "amount": "0" + }, + "tron:2494104990/slip44:195-in-lock-period": { + "amount": "0" + }, + "tron:2494104990/slip44:195-ready-for-withdrawal": { + "amount": "0" + }, + "tron:2494104990/slip44:195-staked-for-bandwidth": { + "amount": "0" + }, + "tron:2494104990/slip44:195-staked-for-energy": { + "amount": "0" + }, + "tron:2494104990/slip44:195-staking-rewards": { + "amount": "0" + }, + "tron:2494104990/slip44:bandwidth": { + "amount": "0" + }, + "tron:2494104990/slip44:energy": { + "amount": "0" + }, + "tron:2494104990/slip44:maximum-bandwidth": { + "amount": "0" + }, + "tron:2494104990/slip44:maximum-energy": { + "amount": "0" + }, + "tron:3448148188/slip44:195": { + "amount": "0" + }, + "tron:3448148188/slip44:195-in-lock-period": { + "amount": "0" + }, + "tron:3448148188/slip44:195-ready-for-withdrawal": { + "amount": "0" + }, + "tron:3448148188/slip44:195-staked-for-bandwidth": { + "amount": "0" + }, + "tron:3448148188/slip44:195-staked-for-energy": { + "amount": "0" + }, + "tron:3448148188/slip44:195-staking-rewards": { + "amount": "0" + }, + "tron:3448148188/slip44:bandwidth": { + "amount": "0" + }, + "tron:3448148188/slip44:energy": { + "amount": "0" + }, + "tron:3448148188/slip44:maximum-bandwidth": { + "amount": "0" + }, + "tron:3448148188/slip44:maximum-energy": { + "amount": "0" + }, + "tron:728126428/slip44:195": { + "amount": "0" + }, + "tron:728126428/slip44:195-in-lock-period": { + "amount": "0" + }, + "tron:728126428/slip44:195-ready-for-withdrawal": { + "amount": "0" + }, + "tron:728126428/slip44:195-staked-for-bandwidth": { + "amount": "0" + }, + "tron:728126428/slip44:195-staked-for-energy": { + "amount": "0" + }, + "tron:728126428/slip44:195-staking-rewards": { + "amount": "0" + }, + "tron:728126428/slip44:bandwidth": { + "amount": "0" + }, + "tron:728126428/slip44:energy": { + "amount": "0" + }, + "tron:728126428/slip44:maximum-bandwidth": { + "amount": "0" + }, + "tron:728126428/slip44:maximum-energy": { + "amount": "0" + } + }, + "ffb79cf7-3a88-4cfe-864c-a9f656ce1840": { + "bip122:000000000019d6689c085ae165831e93/slip44:0": { + "amount": "0" + } + } + }, + "assetsPrice": { + "eip155:1/slip44:60": { + "id": "eip155:1/slip44:60", + "price": 2104.15, + "marketCap": 253940707670, + "allTimeHigh": 4946.05, + "allTimeLow": 0.432979, + "totalVolume": 17599498817, + "high1d": 2192.13, + "low1d": 2093.23, + "circulatingSupply": 120685747.4287429, + "dilutedMarketCap": 253940707670, + "marketCapPercentChange1d": -3.40721, + "priceChange1d": -75.83300825204878, + "pricePercentChange1h": 0.38530249074169703, + "pricePercentChange1d": -3.4786082210530314, + "pricePercentChange7d": -9.777646316930449, + "pricePercentChange14d": -10.566381250000676, + "pricePercentChange30d": -10.986504895952764, + "pricePercentChange200d": -44.18281615879957, + "pricePercentChange1y": -18.316903800941922, + "liquidity": 218452808.4449664, + "assetPriceType": "fungible", + "usdPrice": 2104.15, + "lastUpdated": 1779126364403 + }, + "eip155:1/erc20:0x6B175474E89094C44Da98b954EedeAC495271d0F": { + "id": "eip155:1/erc20:0x6b175474e89094c44da98b954eedeac495271d0f", + "price": 0.999692, + "marketCap": 4385695595, + "allTimeHigh": 1.22, + "allTimeLow": 0.88196, + "totalVolume": 268846167, + "high1d": 0.999904, + "low1d": 0.999414, + "circulatingSupply": 4386796969.400237, + "dilutedMarketCap": 4385695595, + "marketCapPercentChange1d": 0.15559, + "priceChange1d": 0.00016728, + "pricePercentChange1h": 0.010920894179145131, + "pricePercentChange1d": 0.016736213943889196, + "pricePercentChange7d": 0.00946555696725301, + "pricePercentChange14d": -0.006235277535892024, + "pricePercentChange30d": 0.026763823094852635, + "pricePercentChange200d": -0.037938211647420374, + "pricePercentChange1y": -0.01736919481063436, + "liquidity": 52885514.197185196, + "assetPriceType": "fungible", + "usdPrice": 0.999692, + "lastUpdated": 1779126362449 + }, + "eip155:1/erc20:0x14c3abF95Cb9C93a8b82C1CdCB76D72Cb87b2d4c": { + "id": "eip155:1/erc20:0x14c3abf95cb9c93a8b82c1cdcb76d72cb87b2d4c", + "price": 296.926549109769, + "marketCap": 4409584891880, + "allTimeHigh": null, + "allTimeLow": null, + "totalVolume": 17678487.371798, + "high1d": null, + "low1d": null, + "circulatingSupply": null, + "dilutedMarketCap": 4361065932626.67, + "marketCapPercentChange1d": null, + "priceChange1d": null, + "pricePercentChange1h": 0.2636006906825598, + "pricePercentChange1d": -1.23350719764039, + "pricePercentChange7d": null, + "pricePercentChange14d": null, + "pricePercentChange30d": null, + "pricePercentChange200d": null, + "pricePercentChange1y": null, + "totalSupply": 14687356000, + "holderCount": 4099, + "assetPriceType": "fungible", + "usdPrice": 296.926549109769, + "lastUpdated": 1779126362449 + }, + "eip155:1/erc20:0xD4419C2d3DAA986Dc30444Fa333a846be44Fd1eb": { + "id": "eip155:1/erc20:0xd4419c2d3daa986dc30444fa333a846be44fd1eb", + "price": 0.0001134733180127, + "marketCap": 0, + "allTimeHigh": 0.00021605221408971, + "allTimeLow": 0.000077143637782163, + "totalVolume": 21653802.997447472, + "high1d": 0.00012159720315792, + "low1d": 0.000110913346273088, + "circulatingSupply": 0, + "dilutedMarketCap": null, + "marketCapPercentChange1d": null, + "priceChange1d": null, + "pricePercentChange1h": -0.11, + "pricePercentChange1d": 0, + "pricePercentChange7d": null, + "pricePercentChange14d": null, + "pricePercentChange30d": null, + "pricePercentChange200d": null, + "pricePercentChange1y": null, + "assetPriceType": "fungible", + "usdPrice": 0.0001134733180127, + "lastUpdated": 1779126362449 + }, + "eip155:8453/slip44:60": { + "id": "eip155:8453/slip44:60", + "price": 2104.15, + "marketCap": 253940707670, + "allTimeHigh": 4946.05, + "allTimeLow": 0.432979, + "totalVolume": 17599498817, + "high1d": 2192.13, + "low1d": 2093.23, + "circulatingSupply": 120685747.4287429, + "dilutedMarketCap": 253940707670, + "marketCapPercentChange1d": -3.40721, + "priceChange1d": -75.83300825204878, + "pricePercentChange1h": 0.38530249074169703, + "pricePercentChange1d": -3.4786082210530314, + "pricePercentChange7d": -9.777646316930449, + "pricePercentChange14d": -10.566381250000676, + "pricePercentChange30d": -10.986504895952764, + "pricePercentChange200d": -44.18281615879957, + "pricePercentChange1y": -18.316903800941922, + "liquidity": 218452808.4449664, + "assetPriceType": "fungible", + "usdPrice": 2104.15, + "lastUpdated": 1779126364403 + }, + "eip155:8453/erc20:0x07d15798a67253D76cea61F0eA6F57AeDC59DffB": { + "id": "eip155:8453/erc20:0x07d15798a67253d76cea61f0ea6f57aedc59dffb", + "price": 0.00000451859990347, + "marketCap": 258825.6545156292, + "allTimeHigh": 0.0000262, + "allTimeLow": 0.000003849999999983, + "totalVolume": 109363314.6226106, + "high1d": 0.0000052182079639, + "low1d": 0.00000414331148121, + "circulatingSupply": 57280055779.41685, + "dilutedMarketCap": null, + "marketCapPercentChange1d": null, + "priceChange1d": null, + "pricePercentChange1h": 0.4, + "pricePercentChange1d": -5.96, + "pricePercentChange7d": null, + "pricePercentChange14d": null, + "pricePercentChange30d": null, + "pricePercentChange200d": null, + "pricePercentChange1y": null, + "assetPriceType": "fungible", + "usdPrice": 0.00000451859990347, + "lastUpdated": 1779126362449 + }, + "eip155:8453/erc20:0x3d63825B0d8669307366E6c8202f656b9E91D368": { + "id": "eip155:8453/erc20:0x3d63825b0d8669307366e6c8202f656b9e91d368", + "price": 0.000007278608383846, + "marketCap": 29114.433535384, + "allTimeHigh": 0.00135352000000001, + "allTimeLow": 0.000003120000000009, + "totalVolume": 3663358.195072, + "high1d": 0.000009606035351168, + "low1d": 0.00000682667889117, + "circulatingSupply": 4000000000, + "dilutedMarketCap": null, + "marketCapPercentChange1d": null, + "priceChange1d": null, + "pricePercentChange1h": 0, + "pricePercentChange1d": 0, + "pricePercentChange7d": null, + "pricePercentChange14d": null, + "pricePercentChange30d": null, + "pricePercentChange200d": null, + "pricePercentChange1y": null, + "assetPriceType": "fungible", + "usdPrice": 0.000007278608383846, + "lastUpdated": 1779126362449 + }, + "eip155:8453/erc20:0x623cD3a3EdF080057892aaF8D773Bbb7A5C9b6e9": { + "id": "eip155:8453/erc20:0x623cd3a3edf080057892aaf8d773bbb7a5c9b6e9", + "price": 0.000651853033138812, + "marketCap": 353173.849416803, + "allTimeHigh": 0.0629624183040723, + "allTimeLow": 0.000623127441780115, + "totalVolume": 98541.5719436287, + "high1d": 0.000669404229529376, + "low1d": 0.000645686126434403, + "circulatingSupply": 541808362.7489184, + "dilutedMarketCap": 385766.501073769, + "marketCapPercentChange1d": -1.95471, + "priceChange1d": -0.000014520079925607, + "pricePercentChange1h": -0.7143558734121473, + "pricePercentChange1d": -2.1779073115304413, + "pricePercentChange7d": -0.7069414908059729, + "pricePercentChange14d": -3.1355357723833897, + "pricePercentChange30d": -0.4709233762962848, + "pricePercentChange200d": -75.602079291652, + "pricePercentChange1y": -88.59893243878955, + "assetPriceType": "fungible", + "usdPrice": 0.000651853033138812, + "lastUpdated": 1779126362449 + }, + "eip155:8453/erc20:0x88Fb150BDc53A65fe94Dea0c9BA0a6dAf8C6e196": { + "id": "eip155:8453/erc20:0x88fb150bdc53a65fe94dea0c9ba0a6daf8c6e196", + "price": 9.44, + "marketCap": 6863718223, + "allTimeHigh": 52.7, + "allTimeLow": 0.148183, + "totalVolume": 367659763, + "high1d": 9.76, + "low1d": 9.37, + "circulatingSupply": 727099970.4255477, + "dilutedMarketCap": 9439854907, + "marketCapPercentChange1d": -2.30906, + "priceChange1d": -0.23191403733159355, + "pricePercentChange1h": 0.3175239802736925, + "pricePercentChange1d": -2.398969728273755, + "pricePercentChange7d": -10.722444214749787, + "pricePercentChange14d": 0.3873611277134814, + "pricePercentChange30d": 0.706551954963502, + "pricePercentChange200d": -44.163403028008304, + "pricePercentChange1y": -42.08712495811131, + "liquidity": 26476380.399498962, + "assetPriceType": "fungible", + "usdPrice": 9.44, + "lastUpdated": 1779126362449 + }, + "eip155:8453/erc20:0xC438B0c0E80A8Fa1B36898d1b36A3fc2eC371C54": { + "id": "eip155:8453/erc20:0xc438b0c0e80a8fa1b36898d1b36a3fc2ec371c54", + "price": 0.0000207115335042388, + "marketCap": 20714.5380788622, + "allTimeHigh": 0.0039293825218107, + "allTimeLow": 0.0000203009083236393, + "totalVolume": 6.37971317325168, + "high1d": 0.0000214025856377552, + "low1d": 0.0000203009083236393, + "circulatingSupply": 999999999.999993, + "dilutedMarketCap": 20714.5380788622, + "marketCapPercentChange1d": -1.15655, + "priceChange1d": -2.42010850873e-7, + "pricePercentChange1h": 1.9864947022361155, + "pricePercentChange1d": -1.1565533852554568, + "pricePercentChange7d": -7.954893796462903, + "pricePercentChange14d": -10.07398882021542, + "pricePercentChange30d": -19.061954404063318, + "pricePercentChange200d": -45.04592772847019, + "pricePercentChange1y": -91.56545962718117, + "assetPriceType": "fungible", + "usdPrice": 0.0000207115335042388, + "lastUpdated": 1779126362449 + }, + "eip155:8453/erc20:0xCa72827a3D211CfD8F6b00Ac98824872b72CAb49": { + "id": "eip155:8453/erc20:0xca72827a3d211cfd8f6b00ac98824872b72cab49", + "price": 0.99313, + "marketCap": 75136364, + "allTimeHigh": 1.089, + "allTimeLow": 0.724325, + "totalVolume": 9.22, + "high1d": 0.993172, + "low1d": 0.992936, + "circulatingSupply": 75655687.755582, + "dilutedMarketCap": 75136364, + "marketCapPercentChange1d": 0.00637, + "priceChange1d": -0.000039129750457945, + "pricePercentChange1h": 0.009510712405161973, + "pricePercentChange1d": -0.003939888454275518, + "pricePercentChange7d": -0.04417648696226419, + "pricePercentChange14d": -0.07500760757873508, + "pricePercentChange30d": -0.18996534026063625, + "pricePercentChange200d": -0.37229104893580606, + "pricePercentChange1y": 1.950385101582745, + "liquidity": 23095.837199222507, + "assetPriceType": "fungible", + "usdPrice": 0.99313, + "lastUpdated": 1779126362449 + }, + "eip155:8453/erc20:0xD968196FA6977c4e58F2af5aC01C655ea8332d22": { + "id": "eip155:8453/erc20:0xd968196fa6977c4e58f2af5ac01c655ea8332d22", + "price": 4.07154008943e-7, + "marketCap": 407154.008943, + "allTimeHigh": 0.000002763827674905, + "allTimeLow": 3.78393532024e-7, + "totalVolume": 79889364.8826172, + "high1d": 4.27248923823e-7, + "low1d": 3.78393532024e-7, + "circulatingSupply": 1000000000000, + "dilutedMarketCap": null, + "marketCapPercentChange1d": null, + "priceChange1d": null, + "pricePercentChange1h": 0, + "pricePercentChange1d": -3.54, + "pricePercentChange7d": null, + "pricePercentChange14d": null, + "pricePercentChange30d": null, + "pricePercentChange200d": null, + "pricePercentChange1y": null, + "assetPriceType": "fungible", + "usdPrice": 4.07154008943e-7, + "lastUpdated": 1779126362449 + }, + "eip155:56/slip44:714": { + "id": "eip155:56/slip44:714", + "price": 639.86, + "marketCap": 86230819089, + "allTimeHigh": 1369.99, + "allTimeLow": 0.0398177, + "totalVolume": 877644458, + "high1d": 656.83, + "low1d": 635.04, + "circulatingSupply": 134785291.29, + "dilutedMarketCap": 86230819089, + "marketCapPercentChange1d": -1.61475, + "priceChange1d": -10.68487312350112, + "pricePercentChange1h": 0.1421804709021826, + "pricePercentChange1d": -1.6424387080073912, + "pricePercentChange7d": -3.239796707265997, + "pricePercentChange14d": 2.254378169634202, + "pricePercentChange30d": 0.9991483224906604, + "pricePercentChange200d": -40.55143954558362, + "pricePercentChange1y": -2.0421416623967117, + "liquidity": 22854353.787967276, + "assetPriceType": "fungible", + "usdPrice": 639.86, + "lastUpdated": 1779126364403 + }, + "eip155:56/erc20:0x1AF3F329e8BE154074D8769D1FFa4eE058B1DBc3": { + "id": "eip155:56/erc20:0x1af3f329e8be154074d8769d1ffa4ee058b1dbc3", + "price": 0.9990552822548269, + "marketCap": 31073574.43539065, + "allTimeHigh": 1.058, + "allTimeLow": 0.826447999999987, + "totalVolume": 343815.9510192342, + "high1d": 1.0101247691494344, + "low1d": 0.9916252199163054, + "circulatingSupply": 31102957.95169499, + "dilutedMarketCap": null, + "marketCapPercentChange1d": null, + "priceChange1d": null, + "pricePercentChange1h": -0.08, + "pricePercentChange1d": -0.08, + "pricePercentChange7d": null, + "pricePercentChange14d": null, + "pricePercentChange30d": null, + "pricePercentChange200d": null, + "pricePercentChange1y": null, + "assetPriceType": "fungible", + "usdPrice": 0.9990552822548269, + "lastUpdated": 1779126362449 + }, + "eip155:56/erc20:0x55d398326f99059fF775485246999027B3197955": { + "id": "eip155:56/erc20:0x55d398326f99059ff775485246999027b3197955", + "price": 0.99928, + "marketCap": 9178395869, + "allTimeHigh": 1.05, + "allTimeLow": 0.942186, + "totalVolume": 803178599, + "high1d": 1, + "low1d": 0.9986, + "circulatingSupply": 9184992539.51384, + "dilutedMarketCap": 9178395869, + "marketCapPercentChange1d": -0.02732, + "priceChange1d": -0.000168207864876369, + "pricePercentChange1h": -0.029196233333950123, + "pricePercentChange1d": -0.01683007754798247, + "pricePercentChange7d": -0.0006643009266779973, + "pricePercentChange14d": -0.04363303709493185, + "pricePercentChange30d": -0.06359181479007367, + "pricePercentChange200d": -0.07014885197949143, + "pricePercentChange1y": -0.1606387192769309, + "liquidity": 9505227091.471348, + "assetPriceType": "fungible", + "usdPrice": 0.99928, + "lastUpdated": 1779126362449 + }, + "eip155:56/erc20:0xF8A0BF9cF54Bb92F17374d9e9A321E6a111a51bD": { + "id": "eip155:56/erc20:0xf8a0bf9cf54bb92f17374d9e9a321e6a111a51bd", + "price": 9.44, + "marketCap": 6863718223, + "allTimeHigh": 52.7, + "allTimeLow": 0.148183, + "totalVolume": 367659763, + "high1d": 9.76, + "low1d": 9.37, + "circulatingSupply": 727099970.4255477, + "dilutedMarketCap": 9439854907, + "marketCapPercentChange1d": -2.30906, + "priceChange1d": -0.23191403733159355, + "pricePercentChange1h": 0.3175239802736925, + "pricePercentChange1d": -2.398969728273755, + "pricePercentChange7d": -10.722444214749787, + "pricePercentChange14d": 0.3873611277134814, + "pricePercentChange30d": 0.706551954963502, + "pricePercentChange200d": -44.163403028008304, + "pricePercentChange1y": -42.08712495811131, + "liquidity": 26476380.399498962, + "assetPriceType": "fungible", + "usdPrice": 9.44, + "lastUpdated": 1779126362449 + }, + "eip155:56/erc20:0x000Ae314E2A2172a039B26378814C252734f556A": { + "id": "eip155:56/erc20:0x000ae314e2a2172a039b26378814c252734f556a", + "price": 0.64954, + "marketCap": 1676408463, + "allTimeHigh": 2.41, + "allTimeLow": 0.099713, + "totalVolume": 103349712, + "high1d": 0.664935, + "low1d": 0.642641, + "circulatingSupply": 2579922243.4698935, + "dilutedMarketCap": 5082801959, + "marketCapPercentChange1d": -1.40399, + "priceChange1d": -0.009958712236775469, + "pricePercentChange1h": 0.06047281636979331, + "pricePercentChange1d": -1.5100426296859535, + "pricePercentChange7d": -5.000935718020159, + "pricePercentChange14d": -3.2254210624941297, + "pricePercentChange30d": -2.8682252283069047, + "pricePercentChange200d": -26.575222920845317, + "pricePercentChange1y": null, + "liquidity": 4785602.45234296, + "assetPriceType": "fungible", + "usdPrice": 0.64954, + "lastUpdated": 1779126362449 + }, + "eip155:137/slip44:966": { + "id": "eip155:137/slip44:966", + "price": 0.08991, + "marketCap": 957100972, + "allTimeHigh": 1.29, + "allTimeLow": 0.081453, + "totalVolume": 46683814, + "high1d": 0.09241, + "low1d": 0.088918, + "circulatingSupply": 10645154481.43636, + "dilutedMarketCap": 957100972, + "marketCapPercentChange1d": -1.83783, + "priceChange1d": -0.001711822411120292, + "pricePercentChange1h": 0.20987274171292572, + "pricePercentChange1d": -1.8683595815177496, + "pricePercentChange7d": -12.320278582912849, + "pricePercentChange14d": -7.015886310645815, + "pricePercentChange30d": 0.2180958916979836, + "pricePercentChange200d": -51.27058699164607, + "pricePercentChange1y": -63.12162332192103, + "liquidity": 54559.339025580324, + "assetPriceType": "fungible", + "usdPrice": 0.08991, + "lastUpdated": 1779126364403 + }, + "eip155:137/erc20:0x2791Bca1f2de4661ED88A30C99A7a9449Aa84174": { + "id": "eip155:137/erc20:0x2791bca1f2de4661ed88a30c99a7a9449aa84174", + "price": 1.0001312473645765, + "marketCap": 1068770313.0010698, + "allTimeHigh": 1.028, + "allTimeLow": 0.975633000000001, + "totalVolume": 29470810.467576, + "high1d": 1.0094546136784308, + "low1d": 0.9926056010759271, + "circulatingSupply": 1068630058.122234, + "dilutedMarketCap": null, + "marketCapPercentChange1d": null, + "priceChange1d": null, + "pricePercentChange1h": -0.04, + "pricePercentChange1d": 0.07, + "pricePercentChange7d": null, + "pricePercentChange14d": null, + "pricePercentChange30d": null, + "pricePercentChange200d": null, + "pricePercentChange1y": null, + "assetPriceType": "fungible", + "usdPrice": 1.0001312473645765, + "lastUpdated": 1779126362449 + }, + "eip155:143/slip44:268435779": { + "id": "eip155:143/slip44:268435779", + "price": 0.02632189, + "marketCap": 311258020, + "allTimeHigh": 0.04882901, + "allTimeLow": 0.01636691, + "totalVolume": 66041203, + "high1d": 0.02904069, + "low1d": 0.02608834, + "circulatingSupply": 11825165000, + "dilutedMarketCap": 2650142125, + "marketCapPercentChange1d": -5.09509, + "priceChange1d": -0.001457544850105668, + "pricePercentChange1h": 0.8952105552902903, + "pricePercentChange1d": -5.246848566812334, + "pricePercentChange7d": -21.88083546501118, + "pricePercentChange14d": -11.55846405368266, + "pricePercentChange30d": -21.95842431161472, + "pricePercentChange200d": null, + "pricePercentChange1y": null, + "liquidity": 48603526.40424816, + "assetPriceType": "fungible", + "usdPrice": 0.02632189, + "lastUpdated": 1779126364403 + }, + "eip155:10/slip44:60": { + "id": "eip155:10/slip44:60", + "price": 2104.15, + "marketCap": 253940707670, + "allTimeHigh": 4946.05, + "allTimeLow": 0.432979, + "totalVolume": 17599498817, + "high1d": 2192.13, + "low1d": 2093.23, + "circulatingSupply": 120685747.4287429, + "dilutedMarketCap": 253940707670, + "marketCapPercentChange1d": -3.40721, + "priceChange1d": -75.83300825204878, + "pricePercentChange1h": 0.38530249074169703, + "pricePercentChange1d": -3.4786082210530314, + "pricePercentChange7d": -9.777646316930449, + "pricePercentChange14d": -10.566381250000676, + "pricePercentChange30d": -10.986504895952764, + "pricePercentChange200d": -44.18281615879957, + "pricePercentChange1y": -18.316903800941922, + "liquidity": 218452808.4449664, + "assetPriceType": "fungible", + "usdPrice": 2104.15, + "lastUpdated": 1779126364403 + }, + "eip155:10/erc20:0x0b2C639c533813f4Aa9D7837CAf62653d097Ff85": { + "id": "eip155:10/erc20:0x0b2c639c533813f4aa9d7837caf62653d097ff85", + "price": 0.999687, + "marketCap": 76897548180, + "allTimeHigh": 1.043, + "allTimeLow": 0.877647, + "totalVolume": 14969698693, + "high1d": 1, + "low1d": 0.999072, + "circulatingSupply": 76921805532.86145, + "dilutedMarketCap": 76899845518, + "marketCapPercentChange1d": -0.06217, + "priceChange1d": -0.000109168334079701, + "pricePercentChange1h": -0.03655911530680087, + "pricePercentChange1d": -0.010919053936290748, + "pricePercentChange7d": -0.0033485270413815276, + "pricePercentChange14d": -0.012576026383498798, + "pricePercentChange30d": -0.01837774342443481, + "pricePercentChange200d": -0.013487204381956618, + "pricePercentChange1y": -0.021211137521695622, + "liquidity": 5288475754.205398, + "assetPriceType": "fungible", + "usdPrice": 0.999687, + "lastUpdated": 1779126362449 + }, + "eip155:10/erc20:0xDA10009cBd5D07dd0CeCc66161FC93D7c9000da1": { + "id": "eip155:10/erc20:0xda10009cbd5d07dd0cecc66161fc93d7c9000da1", + "price": 0.9997676922834058, + "marketCap": 14631886.926498424, + "allTimeHigh": 1.061, + "allTimeLow": 0.955882, + "totalVolume": 170272.87280318033, + "high1d": 1.0078675034674114, + "low1d": 0.9901916679383712, + "circulatingSupply": 14635286.81656048, + "dilutedMarketCap": null, + "marketCapPercentChange1d": null, + "priceChange1d": null, + "pricePercentChange1h": -0.01, + "pricePercentChange1d": 0.03, + "pricePercentChange7d": null, + "pricePercentChange14d": null, + "pricePercentChange30d": null, + "pricePercentChange200d": null, + "pricePercentChange1y": null, + "assetPriceType": "fungible", + "usdPrice": 0.9997676922834058, + "lastUpdated": 1779126362449 + }, + "eip155:10/erc20:0x0994206dfE8De6Ec6920FF4D779B0d950605Fb53": { + "id": "eip155:10/erc20:0x0994206dfe8de6ec6920ff4d779b0d950605fb53", + "price": 0.232238, + "marketCap": 352046735, + "allTimeHigh": 15.37, + "allTimeLow": 0.180354, + "totalVolume": 35426021, + "high1d": 0.238014, + "low1d": 0.227636, + "circulatingSupply": 1514650623, + "dilutedMarketCap": 553575135, + "marketCapPercentChange1d": -0.2499, + "priceChange1d": -0.000859718599230147, + "pricePercentChange1h": 0.060722716903962505, + "pricePercentChange1d": -0.3688235282969646, + "pricePercentChange7d": -13.64779028448162, + "pricePercentChange14d": -1.653543650618483, + "pricePercentChange30d": 0.38501290943954364, + "pricePercentChange200d": -53.21436106118958, + "pricePercentChange1y": -67.44206819417855, + "liquidity": 357520861.58687055, + "assetPriceType": "fungible", + "usdPrice": 0.232238, + "lastUpdated": 1779126362449 + }, + "eip155:10/erc20:0x4200000000000000000000000000000000000042": { + "id": "eip155:10/erc20:0x4200000000000000000000000000000000000042", + "price": 0.126222, + "marketCap": 271483682, + "allTimeHigh": 4.84, + "allTimeLow": 0.100074, + "totalVolume": 53807256, + "high1d": 0.131407, + "low1d": 0.124317, + "circulatingSupply": 2150875957, + "dilutedMarketCap": 542111009, + "marketCapPercentChange1d": -3.47396, + "priceChange1d": -0.004580528619887447, + "pricePercentChange1h": 0.4591230802621258, + "pricePercentChange1d": -3.5018613134466263, + "pricePercentChange7d": -19.636385367397192, + "pricePercentChange14d": 2.1662444616534695, + "pricePercentChange30d": -1.1552618625451123, + "pricePercentChange200d": -68.37564360061153, + "pricePercentChange1y": -83.08169778450599, + "liquidity": 1075495.6689833852, + "assetPriceType": "fungible", + "usdPrice": 0.126222, + "lastUpdated": 1779126362449 + }, + "eip155:42161/slip44:60": { + "id": "eip155:42161/slip44:60", + "price": 2104.15, + "marketCap": 253940707670, + "allTimeHigh": 4946.05, + "allTimeLow": 0.432979, + "totalVolume": 17599498817, + "high1d": 2192.13, + "low1d": 2093.23, + "circulatingSupply": 120685747.4287429, + "dilutedMarketCap": 253940707670, + "marketCapPercentChange1d": -3.40721, + "priceChange1d": -75.83300825204878, + "pricePercentChange1h": 0.38530249074169703, + "pricePercentChange1d": -3.4786082210530314, + "pricePercentChange7d": -9.777646316930449, + "pricePercentChange14d": -10.566381250000676, + "pricePercentChange30d": -10.986504895952764, + "pricePercentChange200d": -44.18281615879957, + "pricePercentChange1y": -18.316903800941922, + "liquidity": 218452808.4449664, + "assetPriceType": "fungible", + "usdPrice": 2104.15, + "lastUpdated": 1779126364403 + }, + "eip155:42161/erc20:0x306fD3e7b169Aa4ee19412323e1a5995B8c1a1f4": { + "id": "eip155:42161/erc20:0x306fd3e7b169aa4ee19412323e1a5995b8c1a1f4", + "price": 1.34629756002e-9, + "marketCap": 80800.3435697797, + "allTimeHigh": 0.00283637011674895, + "allTimeLow": 3.2941937799e-10, + "totalVolume": 3.89771478312559, + "high1d": 1.3514120672e-9, + "low1d": 1.31458282663e-9, + "circulatingSupply": 59996494221475.84, + "dilutedMarketCap": 80800.3435697797, + "marketCapPercentChange1d": 1.63993, + "priceChange1d": 2.2621e-11, + "pricePercentChange1h": null, + "pricePercentChange1d": 1.748403301650532, + "pricePercentChange7d": 16.337858584806682, + "pricePercentChange14d": 16.337858584806682, + "pricePercentChange30d": -24.73610551316709, + "pricePercentChange200d": -52.30050908702219, + "pricePercentChange1y": -74.44657673737993, + "bondingCurveProgressPercent": null, + "liquidity": 1914495.8632, + "assetPriceType": "fungible", + "usdPrice": 1.34629756002e-9, + "lastUpdated": 1779126362449 + }, + "eip155:59144/slip44:60": { + "id": "eip155:59144/slip44:60", + "price": 2104.15, + "marketCap": 253940707670, + "allTimeHigh": 4946.05, + "allTimeLow": 0.432979, + "totalVolume": 17599498817, + "high1d": 2192.13, + "low1d": 2093.23, + "circulatingSupply": 120685747.4287429, + "dilutedMarketCap": 253940707670, + "marketCapPercentChange1d": -3.40721, + "priceChange1d": -75.83300825204878, + "pricePercentChange1h": 0.38530249074169703, + "pricePercentChange1d": -3.4786082210530314, + "pricePercentChange7d": -9.777646316930449, + "pricePercentChange14d": -10.566381250000676, + "pricePercentChange30d": -10.986504895952764, + "pricePercentChange200d": -44.18281615879957, + "pricePercentChange1y": -18.316903800941922, + "liquidity": 218452808.4449664, + "assetPriceType": "fungible", + "usdPrice": 2104.15, + "lastUpdated": 1779126364403 + }, + "eip155:59144/erc20:0xacA92E438df0B2401fF60dA7E4337B687a2435DA": { + "id": "eip155:59144/erc20:0xaca92e438df0b2401ff60da7e4337b687a2435da", + "price": 0.999875, + "marketCap": 33817148, + "allTimeHigh": 1.26, + "allTimeLow": 0.979806, + "totalVolume": 523065, + "high1d": 1.004, + "low1d": 0.996874, + "circulatingSupply": 33826611.284955, + "dilutedMarketCap": 33817148, + "marketCapPercentChange1d": 0.01454, + "priceChange1d": 0.00009895, + "pricePercentChange1h": 0.024872832470449347, + "pricePercentChange1d": 0.009897401578188997, + "pricePercentChange7d": 0.016019505645414416, + "pricePercentChange14d": 0.07736206582621177, + "pricePercentChange30d": 0.0072860037643663975, + "pricePercentChange200d": 0.10497418385850388, + "pricePercentChange1y": null, + "liquidity": 42994997.53650001, + "assetPriceType": "fungible", + "usdPrice": 0.999875, + "lastUpdated": 1779126362449 + }, + "eip155:1/erc20:0xacA92E438df0B2401fF60dA7E4337B687a2435DA": { + "id": "eip155:1/erc20:0xaca92e438df0b2401ff60da7e4337b687a2435da", + "price": 0.999875, + "marketCap": 33817148, + "allTimeHigh": 1.26, + "allTimeLow": 0.979806, + "totalVolume": 523065, + "high1d": 1.004, + "low1d": 0.996874, + "circulatingSupply": 33826611.284955, + "dilutedMarketCap": 33817148, + "marketCapPercentChange1d": 0.01454, + "priceChange1d": 0.00009895, + "pricePercentChange1h": 0.024872832470449347, + "pricePercentChange1d": 0.009897401578188997, + "pricePercentChange7d": 0.016019505645414416, + "pricePercentChange14d": 0.07736206582621177, + "pricePercentChange30d": 0.0072860037643663975, + "pricePercentChange200d": 0.10497418385850388, + "pricePercentChange1y": null, + "liquidity": 42994997.53650001, + "assetPriceType": "fungible", + "usdPrice": 0.999875, + "lastUpdated": 1779126364403 + }, + "eip155:4326/erc20:0xB8CE59FC3717ada4C02eaDF9682A9e934F625ebb": { + "id": "eip155:4326/erc20:0xb8ce59fc3717ada4c02eadf9682a9e934f625ebb", + "price": 0.99932, + "marketCap": 4060885458, + "allTimeHigh": 1.052, + "allTimeLow": 0.975737, + "totalVolume": 128398717, + "high1d": 1, + "low1d": 0.998648, + "circulatingSupply": 4064676256.80415, + "dilutedMarketCap": 4060885458, + "marketCapPercentChange1d": -0.04865, + "priceChange1d": -0.000201861488756783, + "pricePercentChange1h": 0.0015754981440812875, + "pricePercentChange1d": -0.02019580747306237, + "pricePercentChange7d": -0.015201176785293783, + "pricePercentChange14d": -0.052961993292802774, + "pricePercentChange30d": -0.06698679493421765, + "pricePercentChange200d": -0.08635698528722503, + "pricePercentChange1y": -0.15407109377726227, + "liquidity": 159318136.03774107, + "assetPriceType": "fungible", + "usdPrice": 0.99932, + "lastUpdated": 1779126364403 + }, + "eip155:4326/erc20:0xFAfDdbb3FC7688494971a79cc65DCa3EF82079E7": { + "id": "eip155:4326/erc20:0xfafddbb3fc7688494971a79cc65dca3ef82079e7", + "price": 1.001, + "marketCap": 277950610, + "allTimeHigh": 1.017, + "allTimeLow": 0.977115, + "totalVolume": 3112118, + "high1d": 1.001, + "low1d": 0.997356, + "circulatingSupply": 277944515.8847235, + "dilutedMarketCap": 277950610, + "marketCapPercentChange1d": -1.16152, + "priceChange1d": 0.00052958, + "pricePercentChange1h": 0.17006517189476086, + "pricePercentChange1d": 0.05295327048835007, + "pricePercentChange7d": -0.0804116480601849, + "pricePercentChange14d": 0.07411384155251871, + "pricePercentChange30d": -0.16671517559855548, + "pricePercentChange200d": null, + "pricePercentChange1y": null, + "liquidity": 12334188.500187475, + "assetPriceType": "fungible", + "usdPrice": 1.001, + "lastUpdated": 1779126364403 + }, + "eip155:4326/erc20:0xB0F70C0bD6FD87dbEb7C10dC692a2a6106817072": { + "id": "eip155:4326/erc20:0xb0f70c0bd6fd87dbeb7c10dc692a2a6106817072", + "price": 79883.6472887336, + "marketCap": 214241517.457576, + "allTimeHigh": 126305.737410078, + "allTimeLow": 7833.63111864005, + "totalVolume": 8724531.0288626, + "high1d": 81718.0920614708, + "low1d": 79078.8197681046, + "circulatingSupply": 2683.21139279, + "dilutedMarketCap": 214241517.457576, + "marketCapPercentChange1d": -1.48625, + "priceChange1d": -1140.6284209429577, + "pricePercentChange1h": -0.2090915274563225, + "pricePercentChange1d": -1.412647133548963, + "pricePercentChange7d": -2.3539126387487546, + "pricePercentChange14d": 4.842534662084739, + "pricePercentChange30d": 10.332383149092921, + "pricePercentChange200d": -28.47365733529833, + "pricePercentChange1y": -23.52439534278479, + "bondingCurveProgressPercent": null, + "liquidity": 2240904.615, + "assetPriceType": "fungible", + "usdPrice": 79883.6472887336, + "lastUpdated": 1779126364403 + }, + "eip155:4326/erc20:0x601aC63637933D88285A025C685AC4e9a92a98dA": { + "id": "eip155:4326/erc20:0x601ac63637933d88285a025c685ac4e9a92a98da", + "price": 2797.89089958356, + "marketCap": 9461516791.23555, + "allTimeHigh": 7291.72661535108, + "allTimeLow": 561.288555397833, + "totalVolume": 3245103.84187654, + "high1d": 2879.91254868896, + "low1d": 2774.7576189849, + "circulatingSupply": 3380818.245608431, + "dilutedMarketCap": 9461516791.23555, + "marketCapPercentChange1d": -1.12805, + "priceChange1d": -37.235236253446146, + "pricePercentChange1h": 0.13357444173607796, + "pricePercentChange1d": -1.3197330751332634, + "pricePercentChange7d": -3.7223883402848177, + "pricePercentChange14d": 1.2063039653358774, + "pricePercentChange30d": 1.201128478278992, + "pricePercentChange200d": -42.028607111084625, + "pricePercentChange1y": -12.151001581806655, + "bondingCurveProgressPercent": null, + "liquidity": 8077159.6306, + "assetPriceType": "fungible", + "usdPrice": 2797.89089958356, + "lastUpdated": 1779126364403 + }, + "eip155:4326/erc20:0x551DFe38994eC53c9E7E18084D73893225Eea3bf": { + "id": "eip155:4326/erc20:0x551dfe38994ec53c9e7e18084d73893225eea3bf", + "price": 0.480219, + "marketCap": 11653643, + "allTimeHigh": 12.48, + "allTimeLow": 0.265841, + "totalVolume": 1980832, + "high1d": 0.494023, + "low1d": 0.465669, + "circulatingSupply": 24282416, + "dilutedMarketCap": 11653539, + "marketCapPercentChange1d": -1.35831, + "priceChange1d": -0.002033543709995034, + "pricePercentChange1h": -0.8485407782670725, + "pricePercentChange1d": -0.4216757072893481, + "pricePercentChange7d": -18.881279488692574, + "pricePercentChange14d": -13.638250690028537, + "pricePercentChange30d": -34.300406935857055, + "pricePercentChange200d": -66.74467775018987, + "pricePercentChange1y": -66.5231866227031, + "liquidity": 404072.6830274942, + "assetPriceType": "fungible", + "usdPrice": 0.480219, + "lastUpdated": 1779126364403 + }, + "eip155:4326/erc20:0x5d3a1Ff2b6BAb83b63cd9AD0787074081a52ef34": { + "id": "eip155:4326/erc20:0x5d3a1ff2b6bab83b63cd9ad0787074081a52ef34", + "price": 0.99965, + "marketCap": 4348149238, + "allTimeHigh": 1.034, + "allTimeLow": 0.929486, + "totalVolume": 66032732, + "high1d": 0.999992, + "low1d": 0.999483, + "circulatingSupply": 4349553220.719031, + "dilutedMarketCap": 4348149238, + "marketCapPercentChange1d": -0.00367, + "priceChange1d": -0.00007279162914775, + "pricePercentChange1h": 0.016689230218521693, + "pricePercentChange1d": -0.007281182001141166, + "pricePercentChange7d": 0.040942636266623256, + "pricePercentChange14d": 0.047264284461432736, + "pricePercentChange30d": -0.025114217417671298, + "pricePercentChange200d": 0.07001379890376709, + "pricePercentChange1y": -0.11578946462592614, + "liquidity": 521485645.86109847, + "assetPriceType": "fungible", + "usdPrice": 0.99965, + "lastUpdated": 1779126364403 + }, + "eip155:42161/erc20:0xaf88d065e77c8cC2239327C5EDb3A432268e5831": { + "id": "eip155:42161/erc20:0xaf88d065e77c8cc2239327c5edb3a432268e5831", + "price": 0.999687, + "marketCap": 76897548180, + "allTimeHigh": 1.043, + "allTimeLow": 0.877647, + "totalVolume": 14969698693, + "high1d": 1, + "low1d": 0.999072, + "circulatingSupply": 76921805532.86145, + "dilutedMarketCap": 76899845518, + "marketCapPercentChange1d": -0.06217, + "priceChange1d": -0.000109168334079701, + "pricePercentChange1h": -0.03655911530680087, + "pricePercentChange1d": -0.010919053936290748, + "pricePercentChange7d": -0.0033485270413815276, + "pricePercentChange14d": -0.012576026383498798, + "pricePercentChange30d": -0.01837774342443481, + "pricePercentChange200d": -0.013487204381956618, + "pricePercentChange1y": -0.021211137521695622, + "liquidity": 5288475754.205398, + "assetPriceType": "fungible", + "usdPrice": 0.999687, + "lastUpdated": 1779126364403 + }, + "eip155:59144/erc20:0x176211869cA2b568f2A7D4EE941E073a821EE1ff": { + "id": "eip155:59144/erc20:0x176211869ca2b568f2a7d4ee941e073a821ee1ff", + "price": 0.999175, + "marketCap": 89095398, + "allTimeHigh": 1.13, + "allTimeLow": 0.920892, + "totalVolume": 466562, + "high1d": 1.002, + "low1d": 0.986534, + "circulatingSupply": 89149161.205714, + "dilutedMarketCap": 89095398, + "marketCapPercentChange1d": -0.08758, + "priceChange1d": -0.001136626370919713, + "pricePercentChange1h": -0.04712183052961146, + "pricePercentChange1d": -0.11362722257755346, + "pricePercentChange7d": 0.009712533925177265, + "pricePercentChange14d": 0.1629669566513597, + "pricePercentChange30d": 0.014611793630647468, + "pricePercentChange200d": -0.06369062609130348, + "pricePercentChange1y": -0.027576110640297077, + "liquidity": 1469846.8584685798, + "assetPriceType": "fungible", + "usdPrice": 0.999175, + "lastUpdated": 1779126364403 + }, + "eip155:4326/erc20:0x28B7E77f82B25B95953825F1E3eA0E36c1c29861": { + "id": "eip155:4326/erc20:0x28b7e77f82b25b95953825f1e3ea0e36c1c29861", + "price": 0.08679, + "marketCap": 98089584, + "allTimeHigh": 0.2249, + "allTimeLow": 0.085249, + "totalVolume": 24532028, + "high1d": 0.093066, + "low1d": 0.085249, + "circulatingSupply": 1129792788, + "dilutedMarketCap": 868208618, + "marketCapPercentChange1d": -5.13743, + "priceChange1d": -0.004725693994780455, + "pricePercentChange1h": -0.2005079993186175, + "pricePercentChange1d": -5.163812505554921, + "pricePercentChange7d": -28.70787549881209, + "pricePercentChange14d": -34.59127698903131, + "pricePercentChange30d": null, + "pricePercentChange200d": null, + "pricePercentChange1y": null, + "liquidity": 2210297.7410900886, + "assetPriceType": "fungible", + "usdPrice": 0.08679, + "lastUpdated": 1779126364403 + }, + "solana:5eykt4UsFv8P8NJdTREpY1vzqKqZKvdp/slip44:501": { + "id": "solana:5eykt4UsFv8P8NJdTREpY1vzqKqZKvdp/slip44:501", + "price": 84.28, + "marketCap": 48741411502, + "allTimeHigh": 293.31, + "allTimeLow": 0.500801, + "totalVolume": 3142289530, + "high1d": 86.86, + "low1d": 83.71, + "circulatingSupply": 578281108.8790019, + "dilutedMarketCap": 52815445703, + "marketCapPercentChange1d": -2.08098, + "priceChange1d": -1.8759390048115847, + "pricePercentChange1h": 0.06032293405378755, + "pricePercentChange1d": -2.1774497308944447, + "pricePercentChange7d": -13.457089958579335, + "pricePercentChange14d": -0.25304929585092084, + "pricePercentChange30d": -2.8412296036875127, + "pricePercentChange200d": -54.412752726816784, + "pricePercentChange1y": -52.08684976894323, + "assetPriceType": "fungible", + "usdPrice": 84.28, + "lastUpdated": 1779126365152 + }, + "bip122:000000000019d6689c085ae165831e93/slip44:0": { + "id": "bip122:000000000019d6689c085ae165831e93/slip44:0", + "price": 76564, + "marketCap": 1533668657947, + "allTimeHigh": 126080, + "allTimeLow": 67.81, + "totalVolume": 43175601932, + "high1d": 78419, + "low1d": 76055, + "circulatingSupply": 20031106, + "dilutedMarketCap": 1533670572056, + "marketCapPercentChange1d": -1.77846, + "priceChange1d": -1422.0044384231733, + "pricePercentChange1h": 0.2293567015353519, + "pricePercentChange1d": -1.8234015497053078, + "pricePercentChange7d": -5.9219286793981665, + "pricePercentChange14d": -4.291878191908877, + "pricePercentChange30d": 0.5019111024105839, + "pricePercentChange200d": -28.86550874880614, + "pricePercentChange1y": -27.419625900114852, + "assetPriceType": "fungible", + "usdPrice": 76564, + "lastUpdated": 1779126373811 + }, + "solana:5eykt4UsFv8P8NJdTREpY1vzqKqZKvdp/token:CKfatsPMUf8SkiURsDXs7eK6GWb4Jsd6UDbs7twMCWxo": { + "id": "solana:5eykt4UsFv8P8NJdTREpY1vzqKqZKvdp/token:CKfatsPMUf8SkiURsDXs7eK6GWb4Jsd6UDbs7twMCWxo", + "price": 0.00068112, + "marketCap": 646470, + "allTimeHigh": 0.0400155, + "allTimeLow": 1.26334e-7, + "totalVolume": 16.12, + "high1d": 0.00076551, + "low1d": 0.00068105, + "circulatingSupply": 949129850.20681, + "dilutedMarketCap": 646470, + "marketCapPercentChange1d": -2.97428, + "priceChange1d": -0.000020056228930052, + "pricePercentChange1h": 0.00949334640036451, + "pricePercentChange1d": -2.8603774706054805, + "pricePercentChange7d": -13.863510743234519, + "pricePercentChange14d": -8.433744260039344, + "pricePercentChange30d": -16.695498251846438, + "pricePercentChange200d": -61.19417543148784, + "pricePercentChange1y": -67.16419992521648, + "assetPriceType": "fungible", + "usdPrice": 0.00068112, + "lastUpdated": 1779126365152 + }, + "solana:5eykt4UsFv8P8NJdTREpY1vzqKqZKvdp/token:HeLp6NuQkmYB4pYWo2zYs22mESHXPQYzXbB8n4V98jwC": { + "id": "solana:5eykt4UsFv8P8NJdTREpY1vzqKqZKvdp/token:HeLp6NuQkmYB4pYWo2zYs22mESHXPQYzXbB8n4V98jwC", + "price": 0.0006116520966465, + "marketCap": 0, + "allTimeHigh": 0.000889407667438147, + "allTimeLow": 0.000463525853260071, + "totalVolume": 18681641.652230017, + "high1d": 0.000636932318797122, + "low1d": 0.000578877921003052, + "circulatingSupply": 0, + "dilutedMarketCap": null, + "marketCapPercentChange1d": null, + "priceChange1d": null, + "pricePercentChange1h": 0, + "pricePercentChange1d": 0, + "pricePercentChange7d": null, + "pricePercentChange14d": null, + "pricePercentChange30d": null, + "pricePercentChange200d": null, + "pricePercentChange1y": null, + "assetPriceType": "fungible", + "usdPrice": 0.0006116520966465, + "lastUpdated": 1779126365152 + }, + "eip155:143/erc20:0xacA92E438df0B2401fF60dA7E4337B687a2435DA": { + "id": "eip155:143/erc20:0xaca92e438df0b2401ff60da7e4337b687a2435da", + "price": 0.999785, + "marketCap": 32309179, + "allTimeHigh": 1.066, + "allTimeLow": 0.979806, + "totalVolume": 4339796, + "high1d": 1, + "low1d": 0.999551, + "circulatingSupply": 32316361.588697, + "dilutedMarketCap": 32309179, + "marketCapPercentChange1d": 3.20142, + "priceChange1d": 0.00006075, + "pricePercentChange1h": -0.015593179809223617, + "pricePercentChange1d": 0.006077081494096176, + "pricePercentChange7d": -0.0020597576431088172, + "pricePercentChange14d": -0.02538896271501371, + "pricePercentChange30d": 0.005398677457616838, + "pricePercentChange200d": 0.0321504011308796, + "pricePercentChange1y": null, + "liquidity": 85731366.0504693, + "assetPriceType": "fungible", + "usdPrice": 0.999785, + "lastUpdated": 1778887724646 + }, + "eip155:324/slip44:60": { + "id": "eip155:324/slip44:60", + "price": 2104.15, + "marketCap": 253940707670, + "allTimeHigh": 4946.05, + "allTimeLow": 0.432979, + "totalVolume": 17599498817, + "high1d": 2192.13, + "low1d": 2093.23, + "circulatingSupply": 120685747.4287429, + "dilutedMarketCap": 253940707670, + "marketCapPercentChange1d": -3.40721, + "priceChange1d": -75.83300825204878, + "pricePercentChange1h": 0.38530249074169703, + "pricePercentChange1d": -3.4786082210530314, + "pricePercentChange7d": -9.777646316930449, + "pricePercentChange14d": -10.566381250000676, + "pricePercentChange30d": -10.986504895952764, + "pricePercentChange200d": -44.18281615879957, + "pricePercentChange1y": -18.316903800941922, + "liquidity": 218452808.4449664, + "assetPriceType": "fungible", + "usdPrice": 2104.15, + "lastUpdated": 1779126363532 + }, + "eip155:43114/slip44:9005": { + "id": "eip155:43114/slip44:9005", + "price": 9.12, + "marketCap": 3940938730, + "allTimeHigh": 144.96, + "allTimeLow": 2.8, + "totalVolume": 210878994, + "high1d": 9.33, + "low1d": 9.03, + "circulatingSupply": 431771961.1772119, + "dilutedMarketCap": 4229994051, + "marketCapPercentChange1d": -1.2095, + "priceChange1d": -0.12438414739967385, + "pricePercentChange1h": 0.42962263165251796, + "pricePercentChange1d": -1.3452624019789676, + "pricePercentChange7d": -10.362538211433877, + "pricePercentChange14d": -0.7992958701567113, + "pricePercentChange30d": -2.818837586173472, + "pricePercentChange200d": -49.99504373710831, + "pricePercentChange1y": -61.58982655412956, + "liquidity": 117236.33381849254, + "assetPriceType": "fungible", + "usdPrice": 9.12, + "lastUpdated": 1779126364403 + }, + "eip155:4326/erc20:0x0000000000000000000000000000000000000000": { + "id": "eip155:4326/erc20:0x0000000000000000000000000000000000000000", + "price": 2104.15, + "marketCap": 253940707670, + "allTimeHigh": 4946.05, + "allTimeLow": 0.432979, + "totalVolume": 17599498817, + "high1d": 2192.13, + "low1d": 2093.23, + "circulatingSupply": 120685747.4287429, + "dilutedMarketCap": 253940707670, + "marketCapPercentChange1d": -3.40721, + "priceChange1d": -75.83300825204878, + "pricePercentChange1h": 0.38530249074169703, + "pricePercentChange1d": -3.4786082210530314, + "pricePercentChange7d": -9.777646316930449, + "pricePercentChange14d": -10.566381250000676, + "pricePercentChange30d": -10.986504895952764, + "pricePercentChange200d": -44.18281615879957, + "pricePercentChange1y": -18.316903800941922, + "liquidity": 218452808.4449664, + "assetPriceType": "fungible", + "usdPrice": 2104.15, + "lastUpdated": 1779126364403 + }, + "tron:728126428/slip44:195": { + "id": "tron:728126428/slip44:195", + "price": 0.35516, + "marketCap": 33667336913, + "allTimeHigh": 0.431288, + "allTimeLow": 0.00180434, + "totalVolume": 582070730, + "high1d": 0.357892, + "low1d": 0.353999, + "circulatingSupply": 94802132926.8866, + "dilutedMarketCap": 33667332301, + "marketCapPercentChange1d": -0.52071, + "priceChange1d": -0.001562654212082071, + "pricePercentChange1h": -0.0008691001693975259, + "pricePercentChange1d": -0.43805802663419374, + "pricePercentChange7d": 1.217616448071256, + "pricePercentChange14d": 4.32513181006943, + "pricePercentChange30d": 7.799323857395696, + "pricePercentChange200d": 21.79874410256151, + "pricePercentChange1y": 30.118613646103125, + "assetPriceType": "fungible", + "usdPrice": 0.35516, + "lastUpdated": 1779126373939 + }, + "solana:5eykt4UsFv8P8NJdTREpY1vzqKqZKvdp/token:EPjFWdd5AufqSSqeM2qN1xzybapC8G4wEGGkZwyTDt1v": { + "id": "solana:5eykt4UsFv8P8NJdTREpY1vzqKqZKvdp/token:EPjFWdd5AufqSSqeM2qN1xzybapC8G4wEGGkZwyTDt1v", + "price": 0.999687, + "marketCap": 76897548180, + "allTimeHigh": 1.043, + "allTimeLow": 0.877647, + "totalVolume": 14969698693, + "high1d": 1, + "low1d": 0.999072, + "circulatingSupply": 76921805532.86145, + "dilutedMarketCap": 76899845518, + "marketCapPercentChange1d": -0.06217, + "priceChange1d": -0.000109168334079701, + "pricePercentChange1h": -0.03655911530680087, + "pricePercentChange1d": -0.010919053936290748, + "pricePercentChange7d": -0.0033485270413815276, + "pricePercentChange14d": -0.012576026383498798, + "pricePercentChange30d": -0.01837774342443481, + "pricePercentChange200d": -0.013487204381956618, + "pricePercentChange1y": -0.021211137521695622, + "liquidity": 5288475754.205398, + "assetPriceType": "fungible", + "usdPrice": 0.999687, + "lastUpdated": 1779126365152 + }, + "solana:5eykt4UsFv8P8NJdTREpY1vzqKqZKvdp/token:JUPyiwrYJFskUPiHa7hkeR8VUtAeFoSYbKedZNsDvCN": { + "id": "solana:5eykt4UsFv8P8NJdTREpY1vzqKqZKvdp/token:JUPyiwrYJFskUPiHa7hkeR8VUtAeFoSYbKedZNsDvCN", + "price": 0.19428, + "marketCap": 645050460, + "allTimeHigh": 2, + "allTimeLow": 0.135801, + "totalVolume": 20629724, + "high1d": 0.200273, + "low1d": 0.191732, + "circulatingSupply": 3320312968.08, + "dilutedMarketCap": 1333192706, + "marketCapPercentChange1d": -0.83539, + "priceChange1d": -0.001630945057309902, + "pricePercentChange1h": 0.5334502483214983, + "pricePercentChange1d": -0.8324945111023817, + "pricePercentChange7d": -18.692532215994046, + "pricePercentChange14d": 8.054062470941327, + "pricePercentChange30d": 8.578114087943401, + "pricePercentChange200d": -50.355343740419215, + "pricePercentChange1y": -63.3214823561012, + "liquidity": 2781131.6343463943, + "assetPriceType": "fungible", + "usdPrice": 0.19428, + "lastUpdated": 1779126365152 + }, + "solana:5eykt4UsFv8P8NJdTREpY1vzqKqZKvdp/token:7vfCXTUXx5WJV5JADk17DUJ4ksgau7utNKj4b963voxs": { + "id": "solana:5eykt4UsFv8P8NJdTREpY1vzqKqZKvdp/token:7vfCXTUXx5WJV5JADk17DUJ4ksgau7utNKj4b963voxs", + "price": 2316.71702969389, + "marketCap": 0, + "allTimeHigh": 4899.17524683593, + "allTimeLow": 144.891276626096, + "totalVolume": 28015214.6044288, + "high1d": 2327.21410340496, + "low1d": 2275.5202201433, + "circulatingSupply": 0, + "dilutedMarketCap": 188690688.684073, + "marketCapPercentChange1d": 0, + "priceChange1d": 31.17, + "pricePercentChange1h": 0.3136385286359188, + "pricePercentChange1d": 1.3489826617103648, + "pricePercentChange7d": 14.987514549308282, + "pricePercentChange14d": 17.854635099145625, + "pricePercentChange30d": 19.805208186664363, + "pricePercentChange200d": -45.70596725527689, + "pricePercentChange1y": 22.794240038790328, + "bondingCurveProgressPercent": null, + "liquidity": 90942.0315, + "assetPriceType": "fungible", + "usdPrice": 2316.71702969389, + "lastUpdated": 1779126365152 + }, + "eip155:8453/erc20:0xa1Ca6299ba48366Af1845A9A8AE59B87ff0d5C01": { + "id": "eip155:8453/erc20:0xa1ca6299ba48366af1845a9a8ae59b87ff0d5c01", + "price": 4.4301235144e-8, + "marketCap": null, + "allTimeHigh": 8.1797523317e-8, + "allTimeLow": 5.01632304e-10, + "totalVolume": 165185179.15945327, + "high1d": 4.9083403152e-8, + "low1d": 5.01632304e-10, + "circulatingSupply": null, + "dilutedMarketCap": null, + "marketCapPercentChange1d": null, + "priceChange1d": null, + "pricePercentChange1h": null, + "pricePercentChange1d": 16.22, + "pricePercentChange7d": null, + "pricePercentChange14d": null, + "pricePercentChange30d": null, + "pricePercentChange200d": null, + "pricePercentChange1y": null, + "assetPriceType": "fungible", + "usdPrice": 4.4301235144e-8, + "lastUpdated": 1779049723923 + }, + "eip155:4326/erc20:0x88887bE419578051FF9F4eb6C858A951921D8888": { + "id": "eip155:4326/erc20:0x88887be419578051ff9f4eb6c858a951921d8888", + "price": 1.0620599825, + "marketCap": null, + "allTimeHigh": null, + "allTimeLow": null, + "totalVolume": 14759.6575612737, + "high1d": null, + "low1d": null, + "circulatingSupply": null, + "dilutedMarketCap": 3042.637378238, + "marketCapPercentChange1d": null, + "priceChange1d": null, + "pricePercentChange1h": -0.606, + "pricePercentChange1d": 0.18, + "pricePercentChange7d": null, + "pricePercentChange14d": null, + "pricePercentChange30d": null, + "pricePercentChange200d": null, + "pricePercentChange1y": null, + "bondingCurveProgressPercent": null, + "liquidity": 482251.69290685904, + "totalSupply": 2864.845139, + "assetPriceType": "fungible", + "usdPrice": 1.0620599825, + "lastUpdated": 1779126364403 + }, + "eip155:4326/erc20:0x8F77A685bDe702E6d32A103e9AeB41906317D7e5": { + "id": "eip155:4326/erc20:0x8f77a685bde702e6d32a103e9aeb41906317d7e5", + "price": 4.5894623026, + "marketCap": null, + "allTimeHigh": null, + "allTimeLow": null, + "totalVolume": 94166.3735830086, + "high1d": null, + "low1d": null, + "circulatingSupply": null, + "dilutedMarketCap": 114741.147027628, + "marketCapPercentChange1d": null, + "priceChange1d": null, + "pricePercentChange1h": 3.044, + "pricePercentChange1d": 7.628, + "pricePercentChange7d": null, + "pricePercentChange14d": null, + "pricePercentChange30d": null, + "pricePercentChange200d": null, + "pricePercentChange1y": null, + "bondingCurveProgressPercent": null, + "liquidity": 81109.04123334326, + "totalSupply": 25001, + "assetPriceType": "fungible", + "usdPrice": 4.5894623026, + "lastUpdated": 1779126364403 + } + }, + "customAssets": { + "02c4222b-f0d3-448e-848f-7bf6b3ce3379": [ + "eip155:4326/erc20:0xB8CE59FC3717ada4C02eaDF9682A9e934F625ebb", + "eip155:4326/erc20:0xFAfDdbb3FC7688494971a79cc65DCa3EF82079E7", + "eip155:4326/erc20:0xB0F70C0bD6FD87dbEb7C10dC692a2a6106817072", + "eip155:4326/erc20:0xf7d2F0d0b0517CBDbf87C86910ce10FaAab3589D", + "eip155:4326/erc20:0x601aC63637933D88285A025C685AC4e9a92a98dA", + "eip155:4326/erc20:0x5d3a1Ff2b6BAb83b63cd9AD0787074081a52ef34" + ], + "2727ea45-0879-4ce8-bbac-e7b83a7ca3de": [ + "eip155:1/erc20:0xacA92E438df0B2401fF60dA7E4337B687a2435DA", + "eip155:4326/erc20:0xB8CE59FC3717ada4C02eaDF9682A9e934F625ebb", + "eip155:4326/erc20:0xFAfDdbb3FC7688494971a79cc65DCa3EF82079E7", + "eip155:4326/erc20:0xB0F70C0bD6FD87dbEb7C10dC692a2a6106817072", + "eip155:4326/erc20:0xf7d2F0d0b0517CBDbf87C86910ce10FaAab3589D", + "eip155:4326/erc20:0x2eA493384F42d7Ea78564F3EF4C86986eAB4a890", + "eip155:4326/erc20:0x601aC63637933D88285A025C685AC4e9a92a98dA", + "eip155:4326/erc20:0x551DFe38994eC53c9E7E18084D73893225Eea3bf", + "eip155:4326/erc20:0x3F927036A6c29F50e1c2dfceba572FC40Cf39069", + "eip155:4326/erc20:0x1C4784308adB589c1ED3fa88A48B7FcEFba5FA3C", + "eip155:4326/erc20:0x5d3a1Ff2b6BAb83b63cd9AD0787074081a52ef34", + "eip155:42161/erc20:0xaf88d065e77c8cC2239327C5EDb3A432268e5831", + "eip155:59144/erc20:0x176211869cA2b568f2A7D4EE941E073a821EE1ff", + "eip155:4326/erc20:0x28B7E77f82B25B95953825F1E3eA0E36c1c29861", + "eip155:4326/erc20:0x88887bE419578051FF9F4eb6C858A951921D8888", + "eip155:4326/erc20:0x8F77A685bDe702E6d32A103e9AeB41906317D7e5" + ], + "2ddfe00a-fef1-4085-82f5-e5cdc9d8871f": [ + "eip155:4326/erc20:0xB8CE59FC3717ada4C02eaDF9682A9e934F625ebb", + "eip155:4326/erc20:0x5d3a1Ff2b6BAb83b63cd9AD0787074081a52ef34", + "eip155:4326/erc20:0xFAfDdbb3FC7688494971a79cc65DCa3EF82079E7", + "eip155:4326/erc20:0xB0F70C0bD6FD87dbEb7C10dC692a2a6106817072", + "eip155:4326/erc20:0x601aC63637933D88285A025C685AC4e9a92a98dA" + ], + "7020eb89-94df-4e67-ba9f-a9ebe6c40524": [ + "eip155:1/erc20:0xacA92E438df0B2401fF60dA7E4337B687a2435DA", + "eip155:1/erc20:0xD4419C2d3DAA986Dc30444Fa333a846be44Fd1eb", + "eip155:4326/erc20:0xB8CE59FC3717ada4C02eaDF9682A9e934F625ebb", + "eip155:4326/erc20:0xFAfDdbb3FC7688494971a79cc65DCa3EF82079E7", + "eip155:4326/erc20:0x3F927036A6c29F50e1c2dfceba572FC40Cf39069", + "eip155:4326/erc20:0xB0F70C0bD6FD87dbEb7C10dC692a2a6106817072", + "eip155:4326/erc20:0xf7d2F0d0b0517CBDbf87C86910ce10FaAab3589D", + "eip155:4326/erc20:0x2eA493384F42d7Ea78564F3EF4C86986eAB4a890", + "eip155:4326/erc20:0x551DFe38994eC53c9E7E18084D73893225Eea3bf", + "eip155:4326/erc20:0x601aC63637933D88285A025C685AC4e9a92a98dA", + "eip155:4326/erc20:0xcCcc62962d17b8914c62D74FfB843d73B2a3cccC", + "eip155:4326/erc20:0x1f2C6BF8d3Cbd7EF80d9dd42A21b297a0a7af136", + "eip155:4326/erc20:0x27a4A176007047A9470dbaEd609290F68815B069", + "eip155:4326/erc20:0x16513005E80A20683b3527f977Ff74166F6Bcf73", + "eip155:4326/erc20:0x021ee124cF23D302A7f725AE7a01B77A8ce9782B", + "eip155:4326/erc20:0x0C833bcDd2dC74d7a8Dca82ed011E32d04Fe5843", + "eip155:4326/erc20:0x5d3a1Ff2b6BAb83b63cd9AD0787074081a52ef34", + "eip155:137/erc20:0xc2132D05D31c914a87C6611C10748AEb04B58e8F", + "eip155:43114/erc20:0xB97EF9Ef8734C71904D8002F8b6Bc66Dd9c48a6E" + ], + "7a1e85fa-7c26-48a7-890c-5b2ea56f650c": [ + "eip155:1/erc20:0x14c3abF95Cb9C93a8b82C1CdCB76D72Cb87b2d4c" + ], + "88caeea6-0032-4313-b351-096e9f8e60a9": [ + "eip155:4326/erc20:0xB8CE59FC3717ada4C02eaDF9682A9e934F625ebb", + "eip155:4326/erc20:0xFAfDdbb3FC7688494971a79cc65DCa3EF82079E7", + "eip155:4326/erc20:0x3F927036A6c29F50e1c2dfceba572FC40Cf39069", + "eip155:4326/erc20:0xB0F70C0bD6FD87dbEb7C10dC692a2a6106817072", + "eip155:4326/erc20:0x601aC63637933D88285A025C685AC4e9a92a98dA" + ], + "bf588376-0492-4a35-b653-0f1304a6c5f1": [ + "eip155:1/erc20:0x14c3abF95Cb9C93a8b82C1CdCB76D72Cb87b2d4c", + "eip155:4326/erc20:0xB8CE59FC3717ada4C02eaDF9682A9e934F625ebb", + "eip155:4326/erc20:0xFAfDdbb3FC7688494971a79cc65DCa3EF82079E7", + "eip155:4326/erc20:0x3F927036A6c29F50e1c2dfceba572FC40Cf39069", + "eip155:4326/erc20:0xB0F70C0bD6FD87dbEb7C10dC692a2a6106817072", + "eip155:4326/erc20:0x601aC63637933D88285A025C685AC4e9a92a98dA", + "eip155:4326/erc20:0x5d3a1Ff2b6BAb83b63cd9AD0787074081a52ef34" + ], + "cf6fe6ed-1d1c-4649-9662-a232e0aadb82": [ + "eip155:1/erc20:0x14c3abF95Cb9C93a8b82C1CdCB76D72Cb87b2d4c", + "eip155:4326/erc20:0xB8CE59FC3717ada4C02eaDF9682A9e934F625ebb", + "eip155:4326/erc20:0xFAfDdbb3FC7688494971a79cc65DCa3EF82079E7", + "eip155:4326/erc20:0x3F927036A6c29F50e1c2dfceba572FC40Cf39069", + "eip155:4326/erc20:0xB0F70C0bD6FD87dbEb7C10dC692a2a6106817072", + "eip155:4326/erc20:0xf7d2F0d0b0517CBDbf87C86910ce10FaAab3589D", + "eip155:4326/erc20:0x601aC63637933D88285A025C685AC4e9a92a98dA", + "eip155:4326/erc20:0x021ee124cF23D302A7f725AE7a01B77A8ce9782B", + "eip155:4326/erc20:0xcCcc62962d17b8914c62D74FfB843d73B2a3cccC", + "eip155:4326/erc20:0x551DFe38994eC53c9E7E18084D73893225Eea3bf", + "eip155:4326/erc20:0x273D38762CEe7Db9474ec0FD37a94bBda198E6c0", + "eip155:4326/erc20:0x2eA493384F42d7Ea78564F3EF4C86986eAB4a890", + "eip155:4326/erc20:0x118b949f2CaF55F9D75cdE8D2F6C8fEC98376420", + "eip155:4326/erc20:0x141cF6BFe9D5057883B9BECB39fEE8A62982dC93", + "eip155:4326/erc20:0x1f2C6BF8d3Cbd7EF80d9dd42A21b297a0a7af136", + "eip155:4326/erc20:0x0C833bcDd2dC74d7a8Dca82ed011E32d04Fe5843", + "eip155:4326/erc20:0x16513005E80A20683b3527f977Ff74166F6Bcf73", + "eip155:4326/erc20:0x5d3a1Ff2b6BAb83b63cd9AD0787074081a52ef34", + "eip155:4326/erc20:0x28B7E77f82B25B95953825F1E3eA0E36c1c29861", + "eip155:4326/erc20:0x2A3a4c92ce37ABd7239fB010BC390710f4062407", + "eip155:4326/erc20:0x39894d0B1aa402ae565678fc47F31717Ac2ae888", + "eip155:56/erc20:0x55d398326f99059fF775485246999027B3197955", + "eip155:137/erc20:0xc2132D05D31c914a87C6611C10748AEb04B58e8F", + "eip155:137/erc20:0xb33EaAd8d922B1083446DC23f610c2567fB5180f", + "eip155:42161/erc20:0xaf88d065e77c8cC2239327C5EDb3A432268e5831", + "eip155:59144/erc20:0x176211869cA2b568f2A7D4EE941E073a821EE1ff", + "eip155:59144/erc20:0xacA92E438df0B2401fF60dA7E4337B687a2435DA" + ], + "ea035e3a-ea43-4df0-96aa-b4e50c16396c": [ + "eip155:42161/erc20:0xaf88d065e77c8cC2239327C5EDb3A432268e5831" + ] + }, + "assetPreferences": {}, + "selectedCurrency": "usd", + "domains": { + "http://localhost:3000": "sepolia", + "http://localhost:8000": "sepolia", + "https://alpha.mycactus.io": "sepolia", + "https://app-beta.signer.cubist.dev": "linea-mainnet", + "https://app-gamma.signer.cubist.dev": "linea-mainnet", + "https://app.bitgo-test.com": "sepolia", + "https://app.bitgo.com": "sepolia", + "https://app.metamask.io": "sepolia", + "https://app.safe.global": "d108790b-593d-4fec-88e8-69229f9c58e0", + "https://app.signer.cubist.dev": "linea-mainnet", + "https://apps-portal.safe.global": "sepolia", + "https://console.dev.mpcvault.com": "sepolia", + "https://console.fireblocks.io": "sepolia", + "https://console.mpcvault.com": "sepolia", + "https://debug.mycactus.dev:1443": "sepolia", + "https://dev10-console.waterballoons.xyz": "sepolia", + "https://dev4-console.waterballoons.xyz": "sepolia", + "https://developer.metamask.io": "sepolia", + "https://docs.metamask.io": "sepolia", + "https://eu-console.fireblocks.io": "sepolia", + "https://eu2-console.fireblocks.io": "sepolia", + "https://local.waterballoons.xyz:4200": "sepolia", + "https://localhost:3000": "sepolia", + "https://neptune-custody-ui.metamask-institutional.io": "sepolia", + "https://portfolio-builds.metafi-dev.codefi.network": "sepolia", + "https://portfolio.metamask.io": "sepolia", + "https://pre.mycactus.com": "sepolia", + "https://sandbox.fireblocks.io": "sepolia", + "https://saturn-custody-ui.metamask-institutional.io": "sepolia", + "https://ui-preprod-v2.qa.zodia.io": "sepolia", + "https://ui-preprod-v2.uat.zodia.io": "sepolia", + "https://ui-v2.qa.zodia.io": "sepolia", + "https://ui-v2.sit.zodia.io": "sepolia", + "https://v2.custody.zodia.io": "sepolia", + "https://www.mycactus.com": "sepolia", + "https://www.mycactus.dev": "sepolia", + "localhost:8000": "sepolia", + "npm:@metamask/bitcoin-wallet-snap": "arbitrum-mainnet", + "npm:@metamask/ens-resolver-snap": "mainnet", + "npm:@metamask/gator-permissions-snap": "sepolia", + "npm:@metamask/institutional-wallet-snap": "linea-mainnet", + "npm:@metamask/message-signing-snap": "sepolia", + "npm:@metamask/permissions-kernel-snap": "sepolia", + "npm:@metamask/solana-wallet-snap": "sepolia", + "npm:@metamask/tron-wallet-snap": "sepolia" + }, + "logs": { + "0bfc3b70-1e2c-11f1-a9ab-a1628dd5d3f8": { + "id": "0bfc3b70-1e2c-11f1-a9ab-a1628dd5d3f8", + "log": { + "data": { + "signingData": { + "data": "{\"domain\":{\"verifyingContract\":\"0x4040ae3e14c17f581b237c59bf07d41c1aa2bc70\",\"chainId\":143},\"message\":{\"to\":\"0x4040ae3e14c17f581b237c59bf07d41c1aa2bc70\",\"value\":\"0\",\"data\":\"0x0d582f13000000000000000000000000f052a7d1d73d47356c02dbbe43d4f0f6478dee760000000000000000000000000000000000000000000000000000000000000005\",\"operation\":0,\"baseGas\":\"0\",\"gasPrice\":\"0\",\"gasToken\":\"0x0000000000000000000000000000000000000000\",\"refundReceiver\":\"0x0000000000000000000000000000000000000000\",\"nonce\":4,\"safeTxGas\":\"0\"},\"primaryType\":\"SafeTx\",\"types\":{\"EIP712Domain\":[{\"name\":\"chainId\",\"type\":\"uint256\"},{\"name\":\"verifyingContract\",\"type\":\"address\"}],\"SafeTx\":[{\"type\":\"address\",\"name\":\"to\"},{\"type\":\"uint256\",\"name\":\"value\"},{\"type\":\"bytes\",\"name\":\"data\"},{\"type\":\"uint8\",\"name\":\"operation\"},{\"type\":\"uint256\",\"name\":\"safeTxGas\"},{\"type\":\"uint256\",\"name\":\"baseGas\"},{\"type\":\"uint256\",\"name\":\"gasPrice\"},{\"type\":\"address\",\"name\":\"gasToken\"},{\"type\":\"address\",\"name\":\"refundReceiver\"},{\"type\":\"uint256\",\"name\":\"nonce\"}]}}", + "from": "0x9f66e62fd52eeb9286385f620d2bcbe02c94443e", + "metamaskId": "f696eff1-1e2b-11f1-a9ab-a1628dd5d3f8", + "origin": "https://app.safe.global", + "requestId": 627910418, + "signatureMethod": "eth_signTypedData_v4", + "version": "V4" + }, + "signingMethod": "eth_signTypedData_v4", + "stage": "signed" + }, + "type": "EthSignLog" + }, + "timestamp": 1773330995367 + }, + "46dd5260-1e2c-11f1-a9ab-a1628dd5d3f8": { + "id": "46dd5260-1e2c-11f1-a9ab-a1628dd5d3f8", + "log": { + "data": { + "signingData": { + "data": "{\"domain\":{\"verifyingContract\":\"0x4040ae3e14c17f581b237c59bf07d41c1aa2bc70\",\"chainId\":143},\"message\":{\"to\":\"0x4040ae3e14c17f581b237c59bf07d41c1aa2bc70\",\"value\":\"0\",\"data\":\"0x0d582f130000000000000000000000002a449ec2a0dcc20f970d0a33cdebc296e268d1460000000000000000000000000000000000000000000000000000000000000005\",\"operation\":0,\"baseGas\":\"0\",\"gasPrice\":\"0\",\"gasToken\":\"0x0000000000000000000000000000000000000000\",\"refundReceiver\":\"0x0000000000000000000000000000000000000000\",\"nonce\":5,\"safeTxGas\":\"0\"},\"primaryType\":\"SafeTx\",\"types\":{\"EIP712Domain\":[{\"name\":\"chainId\",\"type\":\"uint256\"},{\"name\":\"verifyingContract\",\"type\":\"address\"}],\"SafeTx\":[{\"type\":\"address\",\"name\":\"to\"},{\"type\":\"uint256\",\"name\":\"value\"},{\"type\":\"bytes\",\"name\":\"data\"},{\"type\":\"uint8\",\"name\":\"operation\"},{\"type\":\"uint256\",\"name\":\"safeTxGas\"},{\"type\":\"uint256\",\"name\":\"baseGas\"},{\"type\":\"uint256\",\"name\":\"gasPrice\"},{\"type\":\"address\",\"name\":\"gasToken\"},{\"type\":\"address\",\"name\":\"refundReceiver\"},{\"type\":\"uint256\",\"name\":\"nonce\"}]}}", + "from": "0x9f66e62fd52eeb9286385f620d2bcbe02c94443e", + "signatureMethod": "eth_signTypedData_v4", + "version": "V4" + }, + "signingMethod": "eth_signTypedData_v4", + "stage": "proposed" + }, + "type": "EthSignLog" + }, + "timestamp": 1773331094150 + }, + "4b35d710-1e2c-11f1-a9ab-a1628dd5d3f8": { + "id": "4b35d710-1e2c-11f1-a9ab-a1628dd5d3f8", + "log": { + "data": { + "signingData": { + "data": "{\"domain\":{\"verifyingContract\":\"0x4040ae3e14c17f581b237c59bf07d41c1aa2bc70\",\"chainId\":143},\"message\":{\"to\":\"0x4040ae3e14c17f581b237c59bf07d41c1aa2bc70\",\"value\":\"0\",\"data\":\"0x0d582f130000000000000000000000002a449ec2a0dcc20f970d0a33cdebc296e268d1460000000000000000000000000000000000000000000000000000000000000005\",\"operation\":0,\"baseGas\":\"0\",\"gasPrice\":\"0\",\"gasToken\":\"0x0000000000000000000000000000000000000000\",\"refundReceiver\":\"0x0000000000000000000000000000000000000000\",\"nonce\":5,\"safeTxGas\":\"0\"},\"primaryType\":\"SafeTx\",\"types\":{\"EIP712Domain\":[{\"name\":\"chainId\",\"type\":\"uint256\"},{\"name\":\"verifyingContract\",\"type\":\"address\"}],\"SafeTx\":[{\"type\":\"address\",\"name\":\"to\"},{\"type\":\"uint256\",\"name\":\"value\"},{\"type\":\"bytes\",\"name\":\"data\"},{\"type\":\"uint8\",\"name\":\"operation\"},{\"type\":\"uint256\",\"name\":\"safeTxGas\"},{\"type\":\"uint256\",\"name\":\"baseGas\"},{\"type\":\"uint256\",\"name\":\"gasPrice\"},{\"type\":\"address\",\"name\":\"gasToken\"},{\"type\":\"address\",\"name\":\"refundReceiver\"},{\"type\":\"uint256\",\"name\":\"nonce\"}]}}", + "from": "0x9f66e62fd52eeb9286385f620d2bcbe02c94443e", + "metamaskId": "46dd5261-1e2c-11f1-a9ab-a1628dd5d3f8", + "origin": "https://app.safe.global", + "requestId": 1118005244, + "signatureMethod": "eth_signTypedData_v4", + "version": "V4" + }, + "signingMethod": "eth_signTypedData_v4", + "stage": "signed" + }, + "type": "EthSignLog" + }, + "timestamp": 1773331101441 + }, + "7251e500-1e2c-11f1-a9ab-a1628dd5d3f8": { + "id": "7251e500-1e2c-11f1-a9ab-a1628dd5d3f8", + "log": { + "data": { + "signingData": { + "data": "{\"domain\":{\"verifyingContract\":\"0xa10bdf04f5d2e65265ab2ff351dc29f1d4a12f63\",\"chainId\":42161},\"message\":{\"to\":\"0xa10bdf04f5d2e65265ab2ff351dc29f1d4a12f63\",\"value\":\"0\",\"data\":\"0x0d582f13000000000000000000000000f052a7d1d73d47356c02dbbe43d4f0f6478dee760000000000000000000000000000000000000000000000000000000000000005\",\"operation\":0,\"baseGas\":\"0\",\"gasPrice\":\"0\",\"gasToken\":\"0x0000000000000000000000000000000000000000\",\"refundReceiver\":\"0x0000000000000000000000000000000000000000\",\"nonce\":42,\"safeTxGas\":\"0\"},\"primaryType\":\"SafeTx\",\"types\":{\"EIP712Domain\":[{\"name\":\"chainId\",\"type\":\"uint256\"},{\"name\":\"verifyingContract\",\"type\":\"address\"}],\"SafeTx\":[{\"type\":\"address\",\"name\":\"to\"},{\"type\":\"uint256\",\"name\":\"value\"},{\"type\":\"bytes\",\"name\":\"data\"},{\"type\":\"uint8\",\"name\":\"operation\"},{\"type\":\"uint256\",\"name\":\"safeTxGas\"},{\"type\":\"uint256\",\"name\":\"baseGas\"},{\"type\":\"uint256\",\"name\":\"gasPrice\"},{\"type\":\"address\",\"name\":\"gasToken\"},{\"type\":\"address\",\"name\":\"refundReceiver\"},{\"type\":\"uint256\",\"name\":\"nonce\"}]}}", + "from": "0x9f66e62fd52eeb9286385f620d2bcbe02c94443e", + "signatureMethod": "eth_signTypedData_v4", + "version": "V4" + }, + "signingMethod": "eth_signTypedData_v4", + "stage": "proposed" + }, + "type": "EthSignLog" + }, + "timestamp": 1773331167056 + }, + "7b116d50-1e2c-11f1-a9ab-a1628dd5d3f8": { + "id": "7b116d50-1e2c-11f1-a9ab-a1628dd5d3f8", + "log": { + "data": { + "signingData": { + "data": "{\"domain\":{\"verifyingContract\":\"0xa10bdf04f5d2e65265ab2ff351dc29f1d4a12f63\",\"chainId\":42161},\"message\":{\"to\":\"0xa10bdf04f5d2e65265ab2ff351dc29f1d4a12f63\",\"value\":\"0\",\"data\":\"0x0d582f13000000000000000000000000f052a7d1d73d47356c02dbbe43d4f0f6478dee760000000000000000000000000000000000000000000000000000000000000005\",\"operation\":0,\"baseGas\":\"0\",\"gasPrice\":\"0\",\"gasToken\":\"0x0000000000000000000000000000000000000000\",\"refundReceiver\":\"0x0000000000000000000000000000000000000000\",\"nonce\":42,\"safeTxGas\":\"0\"},\"primaryType\":\"SafeTx\",\"types\":{\"EIP712Domain\":[{\"name\":\"chainId\",\"type\":\"uint256\"},{\"name\":\"verifyingContract\",\"type\":\"address\"}],\"SafeTx\":[{\"type\":\"address\",\"name\":\"to\"},{\"type\":\"uint256\",\"name\":\"value\"},{\"type\":\"bytes\",\"name\":\"data\"},{\"type\":\"uint8\",\"name\":\"operation\"},{\"type\":\"uint256\",\"name\":\"safeTxGas\"},{\"type\":\"uint256\",\"name\":\"baseGas\"},{\"type\":\"uint256\",\"name\":\"gasPrice\"},{\"type\":\"address\",\"name\":\"gasToken\"},{\"type\":\"address\",\"name\":\"refundReceiver\"},{\"type\":\"uint256\",\"name\":\"nonce\"}]}}", + "from": "0x9f66e62fd52eeb9286385f620d2bcbe02c94443e", + "metamaskId": "7251e501-1e2c-11f1-a9ab-a1628dd5d3f8", + "origin": "https://app.safe.global", + "requestId": 2568699685, + "signatureMethod": "eth_signTypedData_v4", + "version": "V4" + }, + "signingMethod": "eth_signTypedData_v4", + "stage": "signed" + }, + "type": "EthSignLog" + }, + "timestamp": 1773331181733 + }, + "8b49c320-1747-11f1-b7b3-03d70bc40886": { + "id": "8b49c320-1747-11f1-b7b3-03d70bc40886", + "log": { + "data": { + "signingData": { + "data": "{\"domain\":{\"verifyingContract\":\"0x7e4c2852fc93613a7b01e50aea48431b125079c5\",\"chainId\":143},\"message\":{\"to\":\"0x9641d764fc13c8b624c04430c7356c1c7c8102e2\",\"value\":\"0\",\"data\":\"0x8d80ff0a000000000000000000000000000000000000000000000000000000000000002000000000000000000000000000000000000000000000000000000000000000d900fb00d4ea6f3f0d0b4a57b32378075df408f2aaba00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000084391224610000000000000000000000000000000000000000000000000000000000000040000000000000000000000000c37d63122911c274493407d4ea37270bc087dbbb0000000000000000000000000000000000000000000000000000000000000013636972636c65436374704164617074657256320000000000000000000000000000000000000000\",\"operation\":1,\"baseGas\":\"0\",\"gasPrice\":\"0\",\"gasToken\":\"0x0000000000000000000000000000000000000000\",\"refundReceiver\":\"0x0000000000000000000000000000000000000000\",\"nonce\":2,\"safeTxGas\":\"0\"},\"primaryType\":\"SafeTx\",\"types\":{\"EIP712Domain\":[{\"name\":\"chainId\",\"type\":\"uint256\"},{\"name\":\"verifyingContract\",\"type\":\"address\"}],\"SafeTx\":[{\"type\":\"address\",\"name\":\"to\"},{\"type\":\"uint256\",\"name\":\"value\"},{\"type\":\"bytes\",\"name\":\"data\"},{\"type\":\"uint8\",\"name\":\"operation\"},{\"type\":\"uint256\",\"name\":\"safeTxGas\"},{\"type\":\"uint256\",\"name\":\"baseGas\"},{\"type\":\"uint256\",\"name\":\"gasPrice\"},{\"type\":\"address\",\"name\":\"gasToken\"},{\"type\":\"address\",\"name\":\"refundReceiver\"},{\"type\":\"uint256\",\"name\":\"nonce\"}]}}", + "from": "0x9f66e62fd52eeb9286385f620d2bcbe02c94443e", + "signatureMethod": "eth_signTypedData_v4", + "version": "V4" + }, + "signingMethod": "eth_signTypedData_v4", + "stage": "proposed" + }, + "type": "EthSignLog" + }, + "timestamp": 1772573147218 + }, + "8f0ce5a0-1747-11f1-b7c4-03d70bc40886": { + "id": "8f0ce5a0-1747-11f1-b7c4-03d70bc40886", + "log": { + "data": { + "signingData": { + "data": "{\"domain\":{\"verifyingContract\":\"0x7e4c2852fc93613a7b01e50aea48431b125079c5\",\"chainId\":143},\"message\":{\"to\":\"0x9641d764fc13c8b624c04430c7356c1c7c8102e2\",\"value\":\"0\",\"data\":\"0x8d80ff0a000000000000000000000000000000000000000000000000000000000000002000000000000000000000000000000000000000000000000000000000000000d900fb00d4ea6f3f0d0b4a57b32378075df408f2aaba00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000084391224610000000000000000000000000000000000000000000000000000000000000040000000000000000000000000c37d63122911c274493407d4ea37270bc087dbbb0000000000000000000000000000000000000000000000000000000000000013636972636c65436374704164617074657256320000000000000000000000000000000000000000\",\"operation\":1,\"baseGas\":\"0\",\"gasPrice\":\"0\",\"gasToken\":\"0x0000000000000000000000000000000000000000\",\"refundReceiver\":\"0x0000000000000000000000000000000000000000\",\"nonce\":2,\"safeTxGas\":\"0\"},\"primaryType\":\"SafeTx\",\"types\":{\"EIP712Domain\":[{\"name\":\"chainId\",\"type\":\"uint256\"},{\"name\":\"verifyingContract\",\"type\":\"address\"}],\"SafeTx\":[{\"type\":\"address\",\"name\":\"to\"},{\"type\":\"uint256\",\"name\":\"value\"},{\"type\":\"bytes\",\"name\":\"data\"},{\"type\":\"uint8\",\"name\":\"operation\"},{\"type\":\"uint256\",\"name\":\"safeTxGas\"},{\"type\":\"uint256\",\"name\":\"baseGas\"},{\"type\":\"uint256\",\"name\":\"gasPrice\"},{\"type\":\"address\",\"name\":\"gasToken\"},{\"type\":\"address\",\"name\":\"refundReceiver\"},{\"type\":\"uint256\",\"name\":\"nonce\"}]}}", + "from": "0x9f66e62fd52eeb9286385f620d2bcbe02c94443e", + "signatureMethod": "eth_signTypedData_v4", + "version": "V4" + }, + "signingMethod": "eth_signTypedData_v4", + "stage": "proposed" + }, + "type": "EthSignLog" + }, + "timestamp": 1772573153530 + }, + "98e9c4d0-1747-11f1-b7cd-03d70bc40886": { + "id": "98e9c4d0-1747-11f1-b7cd-03d70bc40886", + "log": { + "data": { + "signingData": { + "data": "{\"domain\":{\"verifyingContract\":\"0x7e4c2852fc93613a7b01e50aea48431b125079c5\",\"chainId\":143},\"message\":{\"to\":\"0x9641d764fc13c8b624c04430c7356c1c7c8102e2\",\"value\":\"0\",\"data\":\"0x8d80ff0a000000000000000000000000000000000000000000000000000000000000002000000000000000000000000000000000000000000000000000000000000000d900fb00d4ea6f3f0d0b4a57b32378075df408f2aaba00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000084391224610000000000000000000000000000000000000000000000000000000000000040000000000000000000000000c37d63122911c274493407d4ea37270bc087dbbb0000000000000000000000000000000000000000000000000000000000000013636972636c65436374704164617074657256320000000000000000000000000000000000000000\",\"operation\":1,\"baseGas\":\"0\",\"gasPrice\":\"0\",\"gasToken\":\"0x0000000000000000000000000000000000000000\",\"refundReceiver\":\"0x0000000000000000000000000000000000000000\",\"nonce\":2,\"safeTxGas\":\"0\"},\"primaryType\":\"SafeTx\",\"types\":{\"EIP712Domain\":[{\"name\":\"chainId\",\"type\":\"uint256\"},{\"name\":\"verifyingContract\",\"type\":\"address\"}],\"SafeTx\":[{\"type\":\"address\",\"name\":\"to\"},{\"type\":\"uint256\",\"name\":\"value\"},{\"type\":\"bytes\",\"name\":\"data\"},{\"type\":\"uint8\",\"name\":\"operation\"},{\"type\":\"uint256\",\"name\":\"safeTxGas\"},{\"type\":\"uint256\",\"name\":\"baseGas\"},{\"type\":\"uint256\",\"name\":\"gasPrice\"},{\"type\":\"address\",\"name\":\"gasToken\"},{\"type\":\"address\",\"name\":\"refundReceiver\"},{\"type\":\"uint256\",\"name\":\"nonce\"}]}}", + "from": "0x9f66e62fd52eeb9286385f620d2bcbe02c94443e", + "signatureMethod": "eth_signTypedData_v4", + "version": "V4" + }, + "signingMethod": "eth_signTypedData_v4", + "stage": "proposed" + }, + "type": "EthSignLog" + }, + "timestamp": 1772573170077 + }, + "9f60e3c0-1747-11f1-b7d6-03d70bc40886": { + "id": "9f60e3c0-1747-11f1-b7d6-03d70bc40886", + "log": { + "data": { + "signingData": { + "data": "{\"domain\":{\"verifyingContract\":\"0x7e4c2852fc93613a7b01e50aea48431b125079c5\",\"chainId\":143},\"message\":{\"to\":\"0x9641d764fc13c8b624c04430c7356c1c7c8102e2\",\"value\":\"0\",\"data\":\"0x8d80ff0a000000000000000000000000000000000000000000000000000000000000002000000000000000000000000000000000000000000000000000000000000000d900fb00d4ea6f3f0d0b4a57b32378075df408f2aaba00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000084391224610000000000000000000000000000000000000000000000000000000000000040000000000000000000000000c37d63122911c274493407d4ea37270bc087dbbb0000000000000000000000000000000000000000000000000000000000000013636972636c65436374704164617074657256320000000000000000000000000000000000000000\",\"operation\":1,\"baseGas\":\"0\",\"gasPrice\":\"0\",\"gasToken\":\"0x0000000000000000000000000000000000000000\",\"refundReceiver\":\"0x0000000000000000000000000000000000000000\",\"nonce\":2,\"safeTxGas\":\"0\"},\"primaryType\":\"SafeTx\",\"types\":{\"EIP712Domain\":[{\"name\":\"chainId\",\"type\":\"uint256\"},{\"name\":\"verifyingContract\",\"type\":\"address\"}],\"SafeTx\":[{\"type\":\"address\",\"name\":\"to\"},{\"type\":\"uint256\",\"name\":\"value\"},{\"type\":\"bytes\",\"name\":\"data\"},{\"type\":\"uint8\",\"name\":\"operation\"},{\"type\":\"uint256\",\"name\":\"safeTxGas\"},{\"type\":\"uint256\",\"name\":\"baseGas\"},{\"type\":\"uint256\",\"name\":\"gasPrice\"},{\"type\":\"address\",\"name\":\"gasToken\"},{\"type\":\"address\",\"name\":\"refundReceiver\"},{\"type\":\"uint256\",\"name\":\"nonce\"}]}}", + "from": "0x9f66e62fd52eeb9286385f620d2bcbe02c94443e", + "metamaskId": "98e9c4d1-1747-11f1-b7cd-03d70bc40886", + "origin": "https://app.safe.global", + "requestId": 1878310115, + "signatureMethod": "eth_signTypedData_v4", + "version": "V4" + }, + "signingMethod": "eth_signTypedData_v4", + "stage": "signed" + }, + "type": "EthSignLog" + }, + "timestamp": 1772573180924 + }, + "f696eff0-1e2b-11f1-a9ab-a1628dd5d3f8": { + "id": "f696eff0-1e2b-11f1-a9ab-a1628dd5d3f8", + "log": { + "data": { + "signingData": { + "data": "{\"domain\":{\"verifyingContract\":\"0x4040ae3e14c17f581b237c59bf07d41c1aa2bc70\",\"chainId\":143},\"message\":{\"to\":\"0x4040ae3e14c17f581b237c59bf07d41c1aa2bc70\",\"value\":\"0\",\"data\":\"0x0d582f13000000000000000000000000f052a7d1d73d47356c02dbbe43d4f0f6478dee760000000000000000000000000000000000000000000000000000000000000005\",\"operation\":0,\"baseGas\":\"0\",\"gasPrice\":\"0\",\"gasToken\":\"0x0000000000000000000000000000000000000000\",\"refundReceiver\":\"0x0000000000000000000000000000000000000000\",\"nonce\":4,\"safeTxGas\":\"0\"},\"primaryType\":\"SafeTx\",\"types\":{\"EIP712Domain\":[{\"name\":\"chainId\",\"type\":\"uint256\"},{\"name\":\"verifyingContract\",\"type\":\"address\"}],\"SafeTx\":[{\"type\":\"address\",\"name\":\"to\"},{\"type\":\"uint256\",\"name\":\"value\"},{\"type\":\"bytes\",\"name\":\"data\"},{\"type\":\"uint8\",\"name\":\"operation\"},{\"type\":\"uint256\",\"name\":\"safeTxGas\"},{\"type\":\"uint256\",\"name\":\"baseGas\"},{\"type\":\"uint256\",\"name\":\"gasPrice\"},{\"type\":\"address\",\"name\":\"gasToken\"},{\"type\":\"address\",\"name\":\"refundReceiver\"},{\"type\":\"uint256\",\"name\":\"nonce\"}]}}", + "from": "0x9f66e62fd52eeb9286385f620d2bcbe02c94443e", + "signatureMethod": "eth_signTypedData_v4", + "version": "V4" + }, + "signingMethod": "eth_signTypedData_v4", + "stage": "proposed" + }, + "type": "EthSignLog" + }, + "timestamp": 1773330959471 + } + }, + "fiatCurrency": "usd", + "rates": { + "btc": { + "conversionDate": 1778777373658, + "conversionRate": 81447.15, + "usdConversionRate": 81447.15 + }, + "sol": { + "conversionDate": 1778777373658, + "conversionRate": 93, + "usdConversionRate": 93 + } + }, + "cryptocurrencies": ["btc", "sol"], + "snaps": { + "npm:@metamask/bitcoin-wallet-snap": { + "blocked": false, + "enabled": true, + "hideSnapBranding": true, + "id": "npm:@metamask/bitcoin-wallet-snap", + "initialPermissions": { + "endowment:assets": { + "scopes": [ + "bip122:000000000019d6689c085ae165831e93", + "bip122:000000000933ea01ad0ee984209779ba", + "bip122:00000000da84f2bafbbc53dee25a72ae", + "bip122:00000008819873e925422c1ff0f99f7c", + "bip122:regtest" + ] + }, + "endowment:cronjob": { + "jobs": [ + { + "duration": "PT30S", + "request": { + "method": "synchronizeAccounts" + } + } + ] + }, + "endowment:keyring": {}, + "endowment:lifecycle-hooks": {}, + "endowment:network-access": {}, + "endowment:webassembly": {}, + "snap_dialog": {}, + "snap_getBip32Entropy": [ + { + "curve": "secp256k1", + "path": ["m", "44'", "0'"] + }, + { + "curve": "secp256k1", + "path": ["m", "44'", "1'"] + }, + { + "curve": "secp256k1", + "path": ["m", "49'", "0'"] + }, + { + "curve": "secp256k1", + "path": ["m", "49'", "1'"] + }, + { + "curve": "secp256k1", + "path": ["m", "84'", "0'"] + }, + { + "curve": "secp256k1", + "path": ["m", "84'", "1'"] + }, + { + "curve": "secp256k1", + "path": ["m", "86'", "0'"] + }, + { + "curve": "secp256k1", + "path": ["m", "86'", "1'"] + } + ], + "snap_getPreferences": {}, + "snap_manageAccounts": {}, + "snap_manageState": {} + }, + "localizationFiles": [ + { + "locale": "de", + "messages": { + "MmssingNonWitnessUtxo": { + "message": "Transaktion konnte nicht erstellt werden: fehlender Non-Witness UTXO" + }, + "amount": { + "message": "Betrag" + }, + "asset": { + "message": "Asset" + }, + "balance": { + "message": "Guthaben" + }, + "base58": { + "message": "Ungültige Bitcoin-Adresse" + }, + "bech32": { + "message": "Ungültige Bitcoin-Adresse" + }, + "cancel": { + "message": "Abbrechen" + }, + "clear": { + "message": "Löschen" + }, + "confirmation.account": { + "message": "Konto" + }, + "confirmation.confirmButton": { + "message": "Bestätigen" + }, + "confirmation.estimatedChanges": { + "message": "Geschätzte Änderungen" + }, + "confirmation.estimatedChanges.send": { + "message": "Sie senden" + }, + "confirmation.origin": { + "message": "Ursprung" + }, + "confirmation.origin.tooltip": { + "message": "Die dApp, die die Signatur anfordert" + }, + "confirmation.requestOrigin": { + "message": "Anfrage von" + }, + "confirmation.signAndSendTransaction.title": { + "message": "Transaktionsanfrage" + }, + "confirmation.signMessage.confirmButton": { + "message": "Signieren" + }, + "confirmation.signMessage.message": { + "message": "Nachricht" + }, + "confirmation.signMessage.title": { + "message": "Nachricht signieren" + }, + "continue": { + "message": "Fortfahren" + }, + "error": { + "message": "Fehler" + }, + "error.0": { + "message": "Ungültiges Format" + }, + "error.1000": { + "message": "Validierung fehlgeschlagen" + }, + "error.2000": { + "message": "Ressource nicht gefunden" + }, + "error.3000": { + "message": "Verbindungsfehler" + }, + "error.4000": { + "message": "Wallet-Zustand beschädigt" + }, + "error.5000": { + "message": "Speicherfehler" + }, + "error.6000": { + "message": "Methode nicht implementiert oder nicht unterstützt" + }, + "error.7000": { + "message": "Zugriff verweigert oder unzureichende Berechtigung" + }, + "error.8000": { + "message": "Benutzeraktionsfehler" + }, + "error.9000": { + "message": "Beschädigter Zustand, Invariante nicht eingehalten oder fehlgeschlagene Assertion" + }, + "error.internal": { + "message": "Interner Fehler. Bitte versuchen Sie es später erneut oder kontaktieren Sie den Support" + }, + "feeRate": { + "message": "Gebührenrate" + }, + "feeRateTooLow": { + "message": "Gebührenrate zu niedrig" + }, + "feeTooLow": { + "message": "Gebühr zu niedrig" + }, + "from": { + "message": "Von" + }, + "inputTooLarge": { + "message": "Ungültiger Betrag: zu groß" + }, + "insufficientFunds": { + "message": "Unzureichende Mittel, um Betrag plus Gebühr zu decken" + }, + "invalidBase58PayloadLength": { + "message": "Ungültige Bitcoin-Adresse: ungültige Länge" + }, + "invalidCharacter": { + "message": "Ungültiger Betrag: ungültiges Zeichen" + }, + "invalidLegacyPrefix": { + "message": "Ungültige Bitcoin-Adresse: ungültiges Legacy-Prefix" + }, + "legacyAddressTooLong": { + "message": "Ungültige Bitcoin-Adresse" + }, + "max": { + "message": "Max" + }, + "minutes": { + "message": "min" + }, + "missingDigits": { + "message": "Ungültiger Betrag: fehlende Ziffern" + }, + "network": { + "message": "Netzwerk" + }, + "networkFee": { + "message": "Netzwerkgebühr" + }, + "networkFeeTooltip": { + "message": "Die gesamte Netzwerkgebühr" + }, + "networkValidation": { + "message": "Ungültige Bitcoin-Adresse: falsches Netzwerk" + }, + "noRecipients": { + "message": "Fehlende Empfänger" + }, + "noUtxosSelected": { + "message": "Transaktion konnte nicht erstellt werden: fehlende UTXOs" + }, + "outOfRange": { + "message": "Ungültiger Betrag: außerhalb des Bereichs" + }, + "outputBelowDustLimit": { + "message": "Betrag unter Dust-Limit" + }, + "psbt": { + "message": "Ungültiges PSBT" + }, + "recipient": { + "message": "Empfänger" + }, + "recipientPlaceholder": { + "message": "Empfängeradresse eingeben" + }, + "review": { + "message": "Überprüfen" + }, + "reviewTransactionWarning": { + "message": "Überprüfen Sie die Transaktion, bevor Sie fortfahren" + }, + "send": { + "message": "Senden" + }, + "sending": { + "message": "Wird gesendet" + }, + "toAddress": { + "message": "An" + }, + "tooPrecise": { + "message": "Ungültiger Betrag: zu präzise" + }, + "total": { + "message": "Gesamt" + }, + "transactionSpeed": { + "message": "Transaktionsgeschwindigkeit" + }, + "transactionSpeedTooltip": { + "message": "Die geschätzte Zeit der Transaktion" + }, + "unexpected": { + "message": "Ein unerwarteter Fehler ist aufgetreten" + }, + "unknownError": { + "message": "Ein unbekannter Fehler ist aufgetreten" + }, + "unknownUtxo": { + "message": "Transaktion konnte nicht erstellt werden: unbekannter UTXO" + }, + "witnessProgram": { + "message": "Ungültige Bitcoin-Adresse: Witness-Programm" + }, + "witnessVersion": { + "message": "Ungültige Bitcoin-Adresse: Witness-Version" + } + } + }, + { + "locale": "en", + "messages": { + "MmssingNonWitnessUtxo": { + "message": "Failed to build transaction: missing non-witness UTXO" + }, + "amount": { + "message": "Amount" + }, + "asset": { + "message": "Asset" + }, + "balance": { + "message": "Balance" + }, + "base58": { + "message": "Invalid Bitcoin address" + }, + "bech32": { + "message": "Invalid Bitcoin address" + }, + "cancel": { + "message": "Cancel" + }, + "clear": { + "message": "Clear" + }, + "confirmation.account": { + "message": "Account" + }, + "confirmation.confirmButton": { + "message": "Confirm" + }, + "confirmation.estimatedChanges": { + "message": "Estimated changes" + }, + "confirmation.estimatedChanges.send": { + "message": "You send" + }, + "confirmation.origin": { + "message": "Origin" + }, + "confirmation.origin.tooltip": { + "message": "The dApp requesting the signature" + }, + "confirmation.requestOrigin": { + "message": "Request from" + }, + "confirmation.signAndSendTransaction.title": { + "message": "Transaction request" + }, + "confirmation.signMessage.confirmButton": { + "message": "Sign" + }, + "confirmation.signMessage.message": { + "message": "Message" + }, + "confirmation.signMessage.title": { + "message": "Sign Message" + }, + "continue": { + "message": "Continue" + }, + "error": { + "message": "Error" + }, + "error.0": { + "message": "Invalid format" + }, + "error.1000": { + "message": "Validation failed" + }, + "error.2000": { + "message": "Resource not found" + }, + "error.3000": { + "message": "Connection error" + }, + "error.3100": { + "message": "One or more accounts failed to synchronize" + }, + "error.4000": { + "message": "Wallet state corrupted" + }, + "error.5000": { + "message": "Storage error" + }, + "error.6000": { + "message": "Method not implemented or not supported" + }, + "error.7000": { + "message": "Permission denied or insufficient authorization" + }, + "error.8000": { + "message": "User action error" + }, + "error.9000": { + "message": "Corrupted state, invariant not respected or failed assertion." + }, + "error.internal": { + "message": "Internal error. Please try again later or contact support" + }, + "feeRate": { + "message": "Fee rate" + }, + "feeRateTooLow": { + "message": "Fee rate too low" + }, + "feeTooLow": { + "message": "Fee too low" + }, + "from": { + "message": "From" + }, + "inputTooLarge": { + "message": "Invalid amount: too large" + }, + "insufficientFunds": { + "message": "Funds are insufficient to cover amount plus fee" + }, + "invalidBase58PayloadLength": { + "message": "Invalid Bitcoin address: invalid length" + }, + "invalidCharacter": { + "message": "Invalid amount: invalid character" + }, + "invalidLegacyPrefix": { + "message": "Invalid Bitcoin address: invalid legacy prefix" + }, + "legacyAddressTooLong": { + "message": "Invalid Bitcoin address" + }, + "max": { + "message": "Max" + }, + "minutes": { + "message": "min" + }, + "missingDigits": { + "message": "Invalid amount: missing digits" + }, + "network": { + "message": "Network" + }, + "networkFee": { + "message": "Network fee" + }, + "networkFeeTooltip": { + "message": "The total network fee" + }, + "networkValidation": { + "message": "Invalid Bitcoin address: wrong network" + }, + "noRecipients": { + "message": "Missing recipients" + }, + "noUtxosSelected": { + "message": "Failed to build transaction: missing UTXOs" + }, + "outOfRange": { + "message": "Invalid amount: out of range" + }, + "outputBelowDustLimit": { + "message": "Amount below dust limit" + }, + "psbt": { + "message": "Invalid PSBT" + }, + "recipient": { + "message": "Recipient" + }, + "recipientPlaceholder": { + "message": "Enter receiving address" + }, + "review": { + "message": "Review" + }, + "reviewTransactionWarning": { + "message": "Review the transaction before proceeding" + }, + "send": { + "message": "Send" + }, + "sending": { + "message": "Sending" + }, + "toAddress": { + "message": "To" + }, + "tooPrecise": { + "message": "Invalid amount: too precise" + }, + "total": { + "message": "Total" + }, + "transactionSpeed": { + "message": "Transaction speed" + }, + "transactionSpeedTooltip": { + "message": "The estimated time of the transaction" + }, + "unexpected": { + "message": "An unexpected error occurred" + }, + "unknownError": { + "message": "An unknown error occurred" + }, + "unknownUtxo": { + "message": "Failed to build transaction: unknown UTXO" + }, + "witnessProgram": { + "message": "Invalid Bitcoin address: witness program" + }, + "witnessVersion": { + "message": "Invalid Bitcoin address: witness version" + } + } + }, + { + "locale": "es", + "messages": { + "MmssingNonWitnessUtxo": { + "message": "No se pudo construir la transacción: falta UTXO non-witness" + }, + "amount": { + "message": "Monto" + }, + "asset": { + "message": "Activo" + }, + "balance": { + "message": "Saldo" + }, + "base58": { + "message": "Dirección de Bitcoin inválida" + }, + "bech32": { + "message": "Dirección de Bitcoin inválida" + }, + "cancel": { + "message": "Cancelar" + }, + "clear": { + "message": "Borrar" + }, + "confirmation.account": { + "message": "Cuenta" + }, + "confirmation.confirmButton": { + "message": "Confirmar" + }, + "confirmation.estimatedChanges": { + "message": "Cambios estimados" + }, + "confirmation.estimatedChanges.send": { + "message": "Usted envía" + }, + "confirmation.origin": { + "message": "Origen" + }, + "confirmation.origin.tooltip": { + "message": "La dApp solicitando la firma" + }, + "confirmation.requestOrigin": { + "message": "Solicitud de" + }, + "confirmation.signAndSendTransaction.title": { + "message": "Solicitud de transacción" + }, + "confirmation.signMessage.confirmButton": { + "message": "Firmar" + }, + "confirmation.signMessage.message": { + "message": "Mensaje" + }, + "confirmation.signMessage.title": { + "message": "Firmar mensaje" + }, + "continue": { + "message": "Continuar" + }, + "error": { + "message": "Error" + }, + "error.0": { + "message": "Formato inválido" + }, + "error.1000": { + "message": "Validación fallida" + }, + "error.2000": { + "message": "Recurso no encontrado" + }, + "error.3000": { + "message": "Error de conexión" + }, + "error.4000": { + "message": "Estado de la billetera corrompido" + }, + "error.5000": { + "message": "Error de almacenamiento" + }, + "error.6000": { + "message": "Método no implementado o no soportado" + }, + "error.7000": { + "message": "Permiso denegado o autorización insuficiente" + }, + "error.8000": { + "message": "Error de acción del usuario" + }, + "error.9000": { + "message": "Estado corrompido, invariante no respetada o aserción fallida." + }, + "error.internal": { + "message": "Error interno. Por favor intente de nuevo más tarde o contacte al soporte" + }, + "feeRate": { + "message": "Tasa de tarifa" + }, + "feeRateTooLow": { + "message": "Tasa de tarifa demasiado baja" + }, + "feeTooLow": { + "message": "Tarifa demasiado baja" + }, + "from": { + "message": "De" + }, + "inputTooLarge": { + "message": "Monto inválido: demasiado grande" + }, + "insufficientFunds": { + "message": "Fondos insuficientes para cubrir el monto más la tarifa" + }, + "invalidBase58PayloadLength": { + "message": "Dirección de Bitcoin inválida: longitud inválida" + }, + "invalidCharacter": { + "message": "Monto inválido: carácter inválido" + }, + "invalidLegacyPrefix": { + "message": "Dirección de Bitcoin inválida: prefijo legacy inválido" + }, + "legacyAddressTooLong": { + "message": "Dirección de Bitcoin inválida" + }, + "max": { + "message": "Máx" + }, + "minutes": { + "message": "min" + }, + "missingDigits": { + "message": "Monto inválido: faltan dígitos" + }, + "network": { + "message": "Red" + }, + "networkFee": { + "message": "Tarifa de red" + }, + "networkFeeTooltip": { + "message": "La tarifa total de red" + }, + "networkValidation": { + "message": "Dirección de Bitcoin inválida: red incorrecta" + }, + "noRecipients": { + "message": "Faltan destinatarios" + }, + "noUtxosSelected": { + "message": "No se pudo construir la transacción: faltan UTXOs" + }, + "outOfRange": { + "message": "Monto inválido: fuera de rango" + }, + "outputBelowDustLimit": { + "message": "Monto por debajo del límite de dust" + }, + "psbt": { + "message": "PSBT inválido" + }, + "recipient": { + "message": "Destinatario" + }, + "recipientPlaceholder": { + "message": "Ingrese la dirección de recepción" + }, + "review": { + "message": "Revisar" + }, + "reviewTransactionWarning": { + "message": "Revise la transacción antes de continuar" + }, + "send": { + "message": "Enviar" + }, + "sending": { + "message": "Enviando" + }, + "toAddress": { + "message": "A" + }, + "tooPrecise": { + "message": "Monto inválido: demasiado preciso" + }, + "total": { + "message": "Total" + }, + "transactionSpeed": { + "message": "Velocidad de la transacción" + }, + "transactionSpeedTooltip": { + "message": "El tiempo estimado de la transacción" + }, + "unexpected": { + "message": "Se produjo un error inesperado" + }, + "unknownError": { + "message": "Se produjo un error desconocido" + }, + "unknownUtxo": { + "message": "No se pudo construir la transacción: UTXO desconocido" + }, + "witnessProgram": { + "message": "Dirección de Bitcoin inválida: programa witness" + }, + "witnessVersion": { + "message": "Dirección de Bitcoin inválida: versión witness" + } + } + }, + { + "locale": "fr", + "messages": { + "MmssingNonWitnessUtxo": { + "message": "Échec de la construction de la transaction : UTXO non-witness manquant" + }, + "amount": { + "message": "Montant" + }, + "asset": { + "message": "Actif" + }, + "balance": { + "message": "Solde" + }, + "base58": { + "message": "Adresse Bitcoin invalide" + }, + "bech32": { + "message": "Adresse Bitcoin invalide" + }, + "cancel": { + "message": "Annuler" + }, + "clear": { + "message": "Effacer" + }, + "confirmation.account": { + "message": "Compte" + }, + "confirmation.confirmButton": { + "message": "Confirmer" + }, + "confirmation.estimatedChanges": { + "message": "Changements estimés" + }, + "confirmation.estimatedChanges.send": { + "message": "Vous envoyez" + }, + "confirmation.origin": { + "message": "Origine" + }, + "confirmation.origin.tooltip": { + "message": "Le dApp demandant la signature" + }, + "confirmation.requestOrigin": { + "message": "Demande de la part de" + }, + "confirmation.signAndSendTransaction.title": { + "message": "Demande de transaction" + }, + "confirmation.signMessage.confirmButton": { + "message": "Signer" + }, + "confirmation.signMessage.message": { + "message": "Message" + }, + "confirmation.signMessage.title": { + "message": "Signer le message" + }, + "continue": { + "message": "Continuer" + }, + "error": { + "message": "Erreur" + }, + "error.0": { + "message": "Format invalide" + }, + "error.1000": { + "message": "Validation échouée" + }, + "error.2000": { + "message": "Ressource non trouvée" + }, + "error.3000": { + "message": "Erreur de connexion" + }, + "error.4000": { + "message": "État du portefeuille corrompu" + }, + "error.5000": { + "message": "Erreur de stockage" + }, + "error.6000": { + "message": "Méthode non implémentée ou non supportée" + }, + "error.7000": { + "message": "Permission refusée ou autorisation insuffisante" + }, + "error.8000": { + "message": "Erreur d'action de l'utilisateur" + }, + "error.9000": { + "message": "État corrompu, invariante non respectée ou assertion échouée." + }, + "error.internal": { + "message": "Erreur interne. Veuillez réessayer plus tard ou contacter le support" + }, + "feeRate": { + "message": "Taux de frais" + }, + "feeRateTooLow": { + "message": "Taux de frais trop bas" + }, + "feeTooLow": { + "message": "Frais trop bas" + }, + "from": { + "message": "De" + }, + "inputTooLarge": { + "message": "Montant invalide : trop grand" + }, + "insufficientFunds": { + "message": "Fonds insuffisants pour couvrir le montant plus les frais" + }, + "invalidBase58PayloadLength": { + "message": "Adresse Bitcoin invalide : longueur invalide" + }, + "invalidCharacter": { + "message": "Montant invalide : caractère invalide" + }, + "invalidLegacyPrefix": { + "message": "Adresse Bitcoin invalide : préfixe legacy invalide" + }, + "legacyAddressTooLong": { + "message": "Adresse Bitcoin invalide" + }, + "max": { + "message": "Max" + }, + "minutes": { + "message": "min" + }, + "missingDigits": { + "message": "Montant invalide : chiffres manquants" + }, + "network": { + "message": "Réseau" + }, + "networkFee": { + "message": "Frais de réseau" + }, + "networkFeeTooltip": { + "message": "Les frais de réseau totaux" + }, + "networkValidation": { + "message": "Adresse Bitcoin invalide : réseau incorrect" + }, + "noRecipients": { + "message": "Destinataires manquants" + }, + "noUtxosSelected": { + "message": "Échec de la construction de la transaction : UTXOs manquants" + }, + "outOfRange": { + "message": "Montant invalide : hors plage" + }, + "outputBelowDustLimit": { + "message": "Montant en dessous de la limite dust" + }, + "psbt": { + "message": "PSBT invalide" + }, + "recipient": { + "message": "Destinataire" + }, + "recipientPlaceholder": { + "message": "Entrez l'adresse de réception" + }, + "review": { + "message": "Vérifier" + }, + "reviewTransactionWarning": { + "message": "Vérifiez la transaction avant de continuer" + }, + "send": { + "message": "Envoyer" + }, + "sending": { + "message": "Envoi" + }, + "toAddress": { + "message": "À" + }, + "tooPrecise": { + "message": "Montant invalide : trop précis" + }, + "total": { + "message": "Total" + }, + "transactionSpeed": { + "message": "Vitesse de transaction" + }, + "transactionSpeedTooltip": { + "message": "Le temps estimé de la transaction" + }, + "unexpected": { + "message": "Une erreur inattendue s'est produite" + }, + "unknownError": { + "message": "Une erreur inconnue s'est produite" + }, + "unknownUtxo": { + "message": "Échec de la construction de la transaction : UTXO inconnu" + }, + "witnessProgram": { + "message": "Adresse Bitcoin invalide : programme witness" + }, + "witnessVersion": { + "message": "Adresse Bitcoin invalide : version witness" + } + } + }, + { + "locale": "ja", + "messages": { + "MmssingNonWitnessUtxo": { + "message": "トランザクションの構築に失敗: non-witness UTXO が不足しています" + }, + "amount": { + "message": "金額" + }, + "asset": { + "message": "資産" + }, + "balance": { + "message": "残高" + }, + "base58": { + "message": "無効な Bitcoin アドレス" + }, + "bech32": { + "message": "無効な Bitcoin アドレス" + }, + "cancel": { + "message": "キャンセル" + }, + "clear": { + "message": "クリア" + }, + "confirmation.account": { + "message": "アカウント" + }, + "confirmation.confirmButton": { + "message": "確定" + }, + "confirmation.estimatedChanges": { + "message": "予測される増減額" + }, + "confirmation.estimatedChanges.send": { + "message": "送金額" + }, + "confirmation.origin": { + "message": "オリジン" + }, + "confirmation.origin.tooltip": { + "message": "署名をリクエストしている dApp" + }, + "confirmation.requestOrigin": { + "message": "要求元" + }, + "confirmation.signAndSendTransaction.title": { + "message": "トランザクションリクエスト" + }, + "confirmation.signMessage.confirmButton": { + "message": "署名" + }, + "confirmation.signMessage.message": { + "message": "メッセージ" + }, + "confirmation.signMessage.title": { + "message": "メッセージに署名" + }, + "continue": { + "message": "続ける" + }, + "error": { + "message": "エラー" + }, + "error.0": { + "message": "無効な形式" + }, + "error.1000": { + "message": "検証に失敗しました" + }, + "error.2000": { + "message": "リソースが見つかりません" + }, + "error.3000": { + "message": "接続エラー" + }, + "error.4000": { + "message": "ウォレット状態が破損しています" + }, + "error.5000": { + "message": "ストレージエラー" + }, + "error.6000": { + "message": "メソッドが実装されていないかサポートされていません" + }, + "error.7000": { + "message": "権限が拒否されたか十分な認証がありません" + }, + "error.8000": { + "message": "ユーザーアクションエラー" + }, + "error.9000": { + "message": "破損した状態、不変条件が守られていないかアサーションに失敗しました。" + }, + "error.internal": { + "message": "内部エラー。後ほどお試しくださいまたはサポートにご連絡ください" + }, + "feeRate": { + "message": "手数料率" + }, + "feeRateTooLow": { + "message": "手数料率が低すぎます" + }, + "feeTooLow": { + "message": "手数料が低すぎます" + }, + "from": { + "message": "送金元" + }, + "inputTooLarge": { + "message": "無効な金額: 大きすぎる" + }, + "insufficientFunds": { + "message": "金額プラス手数料をカバーするのに資金が不足しています" + }, + "invalidBase58PayloadLength": { + "message": "無効な Bitcoin アドレス: 無効な長さ" + }, + "invalidCharacter": { + "message": "無効な金額: 無効な文字" + }, + "invalidLegacyPrefix": { + "message": "無効な Bitcoin アドレス: 無効な legacy プレフィックス" + }, + "legacyAddressTooLong": { + "message": "無効な Bitcoin アドレス" + }, + "max": { + "message": "最大" + }, + "minutes": { + "message": "分" + }, + "missingDigits": { + "message": "無効な金額: 桁が不足" + }, + "network": { + "message": "ネットワーク" + }, + "networkFee": { + "message": "ネットワーク手数料" + }, + "networkFeeTooltip": { + "message": "総ネットワーク手数料" + }, + "networkValidation": { + "message": "無効な Bitcoin アドレス: 間違ったネットワーク" + }, + "noRecipients": { + "message": "受取人が不足しています" + }, + "noUtxosSelected": { + "message": "トランザクションの構築に失敗: UTXO が不足しています" + }, + "outOfRange": { + "message": "無効な金額: 範囲外" + }, + "outputBelowDustLimit": { + "message": "金額がダスト制限以下です" + }, + "psbt": { + "message": "無効な PSBT" + }, + "recipient": { + "message": "受取人" + }, + "recipientPlaceholder": { + "message": "受信アドレスを入力" + }, + "review": { + "message": "レビュー" + }, + "reviewTransactionWarning": { + "message": "進める前にトランザクションを確認してください" + }, + "send": { + "message": "送信" + }, + "sending": { + "message": "送信中" + }, + "toAddress": { + "message": "宛先" + }, + "tooPrecise": { + "message": "無効な金額: 精度が高すぎる" + }, + "total": { + "message": "合計" + }, + "transactionSpeed": { + "message": "トランザクション速度" + }, + "transactionSpeedTooltip": { + "message": "トランザクションの予想時間" + }, + "unexpected": { + "message": "予期せぬエラーが発生しました" + }, + "unknownError": { + "message": "不明なエラーが発生しました" + }, + "unknownUtxo": { + "message": "トランザクションの構築に失敗: 不明な UTXO" + }, + "witnessProgram": { + "message": "無効な Bitcoin アドレス: witness プログラム" + }, + "witnessVersion": { + "message": "無効な Bitcoin アドレス: witness バージョン" + } + } + }, + { + "locale": "ru", + "messages": { + "MmssingNonWitnessUtxo": { + "message": "Failed to build transaction: missing non-witness UTXO" + }, + "amount": { + "message": "Сумма" + }, + "asset": { + "message": "Asset" + }, + "balance": { + "message": "Баланс" + }, + "base58": { + "message": "Invalid Bitcoin address" + }, + "bech32": { + "message": "Invalid Bitcoin address" + }, + "cancel": { + "message": "Отмена" + }, + "clear": { + "message": "Clear" + }, + "confirmation.account": { + "message": "Аккаунт" + }, + "confirmation.confirmButton": { + "message": "Подтвердить" + }, + "confirmation.estimatedChanges": { + "message": "Прогнозируемые изменения" + }, + "confirmation.estimatedChanges.send": { + "message": "Вы отправляете" + }, + "confirmation.origin": { + "message": "Источник" + }, + "confirmation.origin.tooltip": { + "message": "dApp, запрашивающий подпись" + }, + "confirmation.requestOrigin": { + "message": "Запрос от" + }, + "confirmation.signAndSendTransaction.title": { + "message": "Запрос транзакции" + }, + "confirmation.signMessage.confirmButton": { + "message": "Подписать" + }, + "confirmation.signMessage.message": { + "message": "Сообщение" + }, + "confirmation.signMessage.title": { + "message": "Подписать сообщение" + }, + "continue": { + "message": "Continue" + }, + "error": { + "message": "Ошибка" + }, + "error.internal": { + "message": "Внутренняя ошибка. Пожалуйста, попробуйте позже или обратитесь в поддержку" + }, + "feeRate": { + "message": "Fee rate" + }, + "feeRateTooLow": { + "message": "Fee rate too low" + }, + "feeTooLow": { + "message": "Fee too low" + }, + "from": { + "message": "От" + }, + "inputTooLarge": { + "message": "Invalid amount: too large" + }, + "insufficientFunds": { + "message": "Funds are insufficient to cover amount plus fee" + }, + "invalidBase58PayloadLength": { + "message": "Invalid Bitcoin address: invalid length" + }, + "invalidCharacter": { + "message": "Invalid amount: invalid character" + }, + "invalidLegacyPrefix": { + "message": "Invalid Bitcoin address: invalid legacy prefix" + }, + "legacyAddressTooLong": { + "message": "Invalid Bitcoin address" + }, + "max": { + "message": "Макс." + }, + "minutes": { + "message": "min" + }, + "missingDigits": { + "message": "Invalid amount: missing digits" + }, + "network": { + "message": "Сеть" + }, + "networkFee": { + "message": "Network Fee" + }, + "networkFeeTooltip": { + "message": "The total network fee" + }, + "networkValidation": { + "message": "Invalid Bitcoin address: wrong network" + }, + "noRecipients": { + "message": "Missing recipients" + }, + "noUtxosSelected": { + "message": "Failed to build transaction: missing UTXOs" + }, + "outOfRange": { + "message": "Invalid amount: out of range" + }, + "outputBelowDustLimit": { + "message": "Amount below dust limit" + }, + "psbt": { + "message": "Invalid PSBT" + }, + "recipient": { + "message": "Получатель" + }, + "recipientPlaceholder": { + "message": "Enter receiving address" + }, + "review": { + "message": "Просмотр" + }, + "reviewTransactionWarning": { + "message": "Проверьте транзакцию, прежде чем продолжить" + }, + "send": { + "message": "Отправить" + }, + "sending": { + "message": "Отправка..." + }, + "toAddress": { + "message": "To Address" + }, + "tooPrecise": { + "message": "Invalid amount: too precise" + }, + "total": { + "message": "Итого" + }, + "transactionSpeed": { + "message": "Скорость транзакции" + }, + "transactionSpeedTooltip": { + "message": "Примерное время транзакции" + }, + "unexpected": { + "message": "An unexpected error occurred" + }, + "unknownError": { + "message": "An unknown error occurred" + }, + "unknownUtxo": { + "message": "Failed to build transaction: unknown UTXO" + }, + "witnessProgram": { + "message": "Invalid Bitcoin address: witness program" + }, + "witnessVersion": { + "message": "Invalid Bitcoin address: witness version" + } + } + }, + { + "locale": "tl", + "messages": { + "MmssingNonWitnessUtxo": { + "message": "Failed to build transaction: missing non-witness UTXO" + }, + "amount": { + "message": "Halaga" + }, + "asset": { + "message": "Asset" + }, + "balance": { + "message": "Balanse" + }, + "base58": { + "message": "Invalid Bitcoin address" + }, + "bech32": { + "message": "Invalid Bitcoin address" + }, + "cancel": { + "message": "Kanselahin" + }, + "clear": { + "message": "Clear" + }, + "confirmation.account": { + "message": "Account" + }, + "confirmation.confirmButton": { + "message": "Kumpirmahin" + }, + "confirmation.estimatedChanges": { + "message": "Tinatayang mga pagbabago" + }, + "confirmation.estimatedChanges.send": { + "message": "Nagpadala ka ng" + }, + "confirmation.origin": { + "message": "Pinagmulan" + }, + "confirmation.origin.tooltip": { + "message": "Ang dApp na humihingi ng lagda" + }, + "confirmation.requestOrigin": { + "message": "Kahilingan mula sa/kay" + }, + "confirmation.signAndSendTransaction.title": { + "message": "Hiling na transaksyon" + }, + "confirmation.signMessage.confirmButton": { + "message": "Lagdaan" + }, + "confirmation.signMessage.message": { + "message": "Mensahe" + }, + "confirmation.signMessage.title": { + "message": "Lagdaan ang Mensahe" + }, + "continue": { + "message": "Continue" + }, + "error": { + "message": "Error" + }, + "error.internal": { + "message": "Panloob na error. Subukang muli mamaya o makipag-ugnayan sa suporta" + }, + "feeRate": { + "message": "Fee rate" + }, + "feeRateTooLow": { + "message": "Fee rate too low" + }, + "feeTooLow": { + "message": "Fee too low" + }, + "from": { + "message": "Mula sa" + }, + "inputTooLarge": { + "message": "Invalid amount: too large" + }, + "insufficientFunds": { + "message": "Funds are insufficient to cover amount plus fee" + }, + "invalidBase58PayloadLength": { + "message": "Invalid Bitcoin address: invalid length" + }, + "invalidCharacter": { + "message": "Invalid amount: invalid character" + }, + "invalidLegacyPrefix": { + "message": "Invalid Bitcoin address: invalid legacy prefix" + }, + "legacyAddressTooLong": { + "message": "Invalid Bitcoin address" + }, + "max": { + "message": "Max" + }, + "minutes": { + "message": "min" + }, + "missingDigits": { + "message": "Invalid amount: missing digits" + }, + "network": { + "message": "Network" + }, + "networkFee": { + "message": "Network Fee" + }, + "networkFeeTooltip": { + "message": "The total network fee" + }, + "networkValidation": { + "message": "Invalid Bitcoin address: wrong network" + }, + "noRecipients": { + "message": "Missing recipients" + }, + "noUtxosSelected": { + "message": "Failed to build transaction: missing UTXOs" + }, + "outOfRange": { + "message": "Invalid amount: out of range" + }, + "outputBelowDustLimit": { + "message": "Amount below dust limit" + }, + "psbt": { + "message": "Invalid PSBT" + }, + "recipient": { + "message": "Tatanggap" + }, + "recipientPlaceholder": { + "message": "Enter receiving address" + }, + "review": { + "message": "Suriin" + }, + "reviewTransactionWarning": { + "message": "Suriin ang transaksyon bago magpatuloy" + }, + "send": { + "message": "Ipadala" + }, + "sending": { + "message": "Ipinapadala" + }, + "toAddress": { + "message": "To Address" + }, + "tooPrecise": { + "message": "Invalid amount: too precise" + }, + "total": { + "message": "Kabuuan" + }, + "transactionSpeed": { + "message": "Bilis ng Transaksyon" + }, + "transactionSpeedTooltip": { + "message": "Ang tinatayang tagal ng transaksyon" + }, + "unexpected": { + "message": "An unexpected error occurred" + }, + "unknownError": { + "message": "An unknown error occurred" + }, + "unknownUtxo": { + "message": "Failed to build transaction: unknown UTXO" + }, + "witnessProgram": { + "message": "Invalid Bitcoin address: witness program" + }, + "witnessVersion": { + "message": "Invalid Bitcoin address: witness version" + } + } + }, + { + "locale": "tr", + "messages": { + "MmssingNonWitnessUtxo": { + "message": "Failed to build transaction: missing non-witness UTXO" + }, + "amount": { + "message": "Miktar" + }, + "asset": { + "message": "Asset" + }, + "balance": { + "message": "Bakiye" + }, + "base58": { + "message": "Invalid Bitcoin address" + }, + "bech32": { + "message": "Invalid Bitcoin address" + }, + "cancel": { + "message": "İptal" + }, + "clear": { + "message": "Clear" + }, + "confirmation.account": { + "message": "Hesap" + }, + "confirmation.confirmButton": { + "message": "Onayla" + }, + "confirmation.estimatedChanges": { + "message": "Tahmini değişiklikler" + }, + "confirmation.estimatedChanges.send": { + "message": "Gönderdiğiniz" + }, + "confirmation.origin": { + "message": "Kaynak" + }, + "confirmation.origin.tooltip": { + "message": "İmzayı isteyen dApp" + }, + "confirmation.requestOrigin": { + "message": "Talebi gönderen" + }, + "confirmation.signAndSendTransaction.title": { + "message": "İşlem talebi" + }, + "confirmation.signMessage.confirmButton": { + "message": "İmzala" + }, + "confirmation.signMessage.message": { + "message": "Mesaj" + }, + "confirmation.signMessage.title": { + "message": "Mesajı İmzala" + }, + "continue": { + "message": "Continue" + }, + "error": { + "message": "Hata" + }, + "error.internal": { + "message": "İç hata. Lütfen daha sonra tekrar deneyin veya destekle iletişime geçin" + }, + "feeRate": { + "message": "Fee rate" + }, + "feeRateTooLow": { + "message": "Fee rate too low" + }, + "feeTooLow": { + "message": "Fee too low" + }, + "from": { + "message": "Gönderen" + }, + "inputTooLarge": { + "message": "Invalid amount: too large" + }, + "insufficientFunds": { + "message": "Funds are insufficient to cover amount plus fee" + }, + "invalidBase58PayloadLength": { + "message": "Invalid Bitcoin address: invalid length" + }, + "invalidCharacter": { + "message": "Invalid amount: invalid character" + }, + "invalidLegacyPrefix": { + "message": "Invalid Bitcoin address: invalid legacy prefix" + }, + "legacyAddressTooLong": { + "message": "Invalid Bitcoin address" + }, + "max": { + "message": "Maksimum" + }, + "minutes": { + "message": "min" + }, + "missingDigits": { + "message": "Invalid amount: missing digits" + }, + "network": { + "message": "Ağ" + }, + "networkFee": { + "message": "Network Fee" + }, + "networkFeeTooltip": { + "message": "The total network fee" + }, + "networkValidation": { + "message": "Invalid Bitcoin address: wrong network" + }, + "noRecipients": { + "message": "Missing recipients" + }, + "noUtxosSelected": { + "message": "Failed to build transaction: missing UTXOs" + }, + "outOfRange": { + "message": "Invalid amount: out of range" + }, + "outputBelowDustLimit": { + "message": "Amount below dust limit" + }, + "psbt": { + "message": "Invalid PSBT" + }, + "recipient": { + "message": "Alıcı" + }, + "recipientPlaceholder": { + "message": "Enter receiving address" + }, + "review": { + "message": "İncele" + }, + "reviewTransactionWarning": { + "message": "Devam etmeden önce işlemi inceleyin" + }, + "send": { + "message": "Gönder" + }, + "sending": { + "message": "Gönderiliyor" + }, + "toAddress": { + "message": "To Address" + }, + "tooPrecise": { + "message": "Invalid amount: too precise" + }, + "total": { + "message": "Toplam" + }, + "transactionSpeed": { + "message": "İşlem Hızı" + }, + "transactionSpeedTooltip": { + "message": "Tahmini işlem süresi" + }, + "unexpected": { + "message": "An unexpected error occurred" + }, + "unknownError": { + "message": "An unknown error occurred" + }, + "unknownUtxo": { + "message": "Failed to build transaction: unknown UTXO" + }, + "witnessProgram": { + "message": "Invalid Bitcoin address: witness program" + }, + "witnessVersion": { + "message": "Invalid Bitcoin address: witness version" + } + } + }, + { + "locale": "vi", + "messages": { + "MmssingNonWitnessUtxo": { + "message": "Failed to build transaction: missing non-witness UTXO" + }, + "amount": { + "message": "Số tiền" + }, + "asset": { + "message": "Asset" + }, + "balance": { + "message": "Số dư" + }, + "base58": { + "message": "Invalid Bitcoin address" + }, + "bech32": { + "message": "Invalid Bitcoin address" + }, + "cancel": { + "message": "Hủy" + }, + "clear": { + "message": "Clear" + }, + "confirmation.account": { + "message": "Tài khoản" + }, + "confirmation.confirmButton": { + "message": "Xác nhận" + }, + "confirmation.estimatedChanges": { + "message": "Thay đổi ước tính" + }, + "confirmation.estimatedChanges.send": { + "message": "Bạn gửi" + }, + "confirmation.origin": { + "message": "Nguồn gốc" + }, + "confirmation.origin.tooltip": { + "message": "DApp yêu cầu chữ ký" + }, + "confirmation.requestOrigin": { + "message": "Yêu cầu từ" + }, + "confirmation.signAndSendTransaction.title": { + "message": "Yêu cầu giao dịch" + }, + "confirmation.signMessage.confirmButton": { + "message": "Ký" + }, + "confirmation.signMessage.message": { + "message": "Tin nhắn" + }, + "confirmation.signMessage.title": { + "message": "Ký Tin nhắn" + }, + "continue": { + "message": "Continue" + }, + "error": { + "message": "Lỗi" + }, + "error.internal": { + "message": "Lỗi nội bộ. Vui lòng thử lại sau hoặc liên hệ hỗ trợ" + }, + "feeRate": { + "message": "Fee rate" + }, + "feeRateTooLow": { + "message": "Fee rate too low" + }, + "feeTooLow": { + "message": "Fee too low" + }, + "from": { + "message": "Từ" + }, + "inputTooLarge": { + "message": "Invalid amount: too large" + }, + "insufficientFunds": { + "message": "Funds are insufficient to cover amount plus fee" + }, + "invalidBase58PayloadLength": { + "message": "Invalid Bitcoin address: invalid length" + }, + "invalidCharacter": { + "message": "Invalid amount: invalid character" + }, + "invalidLegacyPrefix": { + "message": "Invalid Bitcoin address: invalid legacy prefix" + }, + "legacyAddressTooLong": { + "message": "Invalid Bitcoin address" + }, + "max": { + "message": "Tối đa" + }, + "minutes": { + "message": "min" + }, + "missingDigits": { + "message": "Invalid amount: missing digits" + }, + "network": { + "message": "Mạng" + }, + "networkFee": { + "message": "Network Fee" + }, + "networkFeeTooltip": { + "message": "The total network fee" + }, + "networkValidation": { + "message": "Invalid Bitcoin address: wrong network" + }, + "noRecipients": { + "message": "Missing recipients" + }, + "noUtxosSelected": { + "message": "Failed to build transaction: missing UTXOs" + }, + "outOfRange": { + "message": "Invalid amount: out of range" + }, + "outputBelowDustLimit": { + "message": "Amount below dust limit" + }, + "psbt": { + "message": "Invalid PSBT" + }, + "recipient": { + "message": "Người nhận" + }, + "recipientPlaceholder": { + "message": "Enter receiving address" + }, + "review": { + "message": "Xem lại" + }, + "reviewTransactionWarning": { + "message": "Xem lại giao dịch trước khi tiếp tục" + }, + "send": { + "message": "Gửi" + }, + "sending": { + "message": "Đang gửi" + }, + "toAddress": { + "message": "To Address" + }, + "tooPrecise": { + "message": "Invalid amount: too precise" + }, + "total": { + "message": "Tổng" + }, + "transactionSpeed": { + "message": "Tốc độ giao dịch" + }, + "transactionSpeedTooltip": { + "message": "Thời gian giao dịch ước tính" + }, + "unexpected": { + "message": "An unexpected error occurred" + }, + "unknownError": { + "message": "An unknown error occurred" + }, + "unknownUtxo": { + "message": "Failed to build transaction: unknown UTXO" + }, + "witnessProgram": { + "message": "Invalid Bitcoin address: witness program" + }, + "witnessVersion": { + "message": "Invalid Bitcoin address: witness version" + } + } + }, + { + "locale": "中文", + "messages": { + "MmssingNonWitnessUtxo": { + "message": "Failed to build transaction: missing non-witness UTXO" + }, + "amount": { + "message": "金额" + }, + "asset": { + "message": "Asset" + }, + "balance": { + "message": "余额" + }, + "base58": { + "message": "Invalid Bitcoin address" + }, + "bech32": { + "message": "Invalid Bitcoin address" + }, + "cancel": { + "message": "取消" + }, + "clear": { + "message": "Clear" + }, + "confirmation.account": { + "message": "账户" + }, + "confirmation.confirmButton": { + "message": "确认" + }, + "confirmation.estimatedChanges": { + "message": "预计变化" + }, + "confirmation.estimatedChanges.send": { + "message": "您发送" + }, + "confirmation.origin": { + "message": "来源" + }, + "confirmation.origin.tooltip": { + "message": "请求签名的 dApp" + }, + "confirmation.requestOrigin": { + "message": "请求来自" + }, + "confirmation.signAndSendTransaction.title": { + "message": "交易请求" + }, + "confirmation.signMessage.confirmButton": { + "message": "签名" + }, + "confirmation.signMessage.message": { + "message": "消息" + }, + "confirmation.signMessage.title": { + "message": "签名消息" + }, + "continue": { + "message": "Continue" + }, + "error": { + "message": "错误" + }, + "error.internal": { + "message": "内部错误。请稍后重试或联系支持" + }, + "feeRate": { + "message": "Fee rate" + }, + "feeRateTooLow": { + "message": "Fee rate too low" + }, + "feeTooLow": { + "message": "Fee too low" + }, + "from": { + "message": "从" + }, + "inputTooLarge": { + "message": "Invalid amount: too large" + }, + "insufficientFunds": { + "message": "Funds are insufficient to cover amount plus fee" + }, + "invalidBase58PayloadLength": { + "message": "Invalid Bitcoin address: invalid length" + }, + "invalidCharacter": { + "message": "Invalid amount: invalid character" + }, + "invalidLegacyPrefix": { + "message": "Invalid Bitcoin address: invalid legacy prefix" + }, + "legacyAddressTooLong": { + "message": "Invalid Bitcoin address" + }, + "max": { + "message": "最多" + }, + "minutes": { + "message": "min" + }, + "missingDigits": { + "message": "Invalid amount: missing digits" + }, + "network": { + "message": "网络" + }, + "networkFee": { + "message": "Network Fee" + }, + "networkFeeTooltip": { + "message": "The total network fee" + }, + "networkValidation": { + "message": "Invalid Bitcoin address: wrong network" + }, + "noRecipients": { + "message": "Missing recipients" + }, + "noUtxosSelected": { + "message": "Failed to build transaction: missing UTXOs" + }, + "outOfRange": { + "message": "Invalid amount: out of range" + }, + "outputBelowDustLimit": { + "message": "Amount below dust limit" + }, + "psbt": { + "message": "Invalid PSBT" + }, + "recipient": { + "message": "收款人" + }, + "recipientPlaceholder": { + "message": "Enter receiving address" + }, + "review": { + "message": "审查" + }, + "reviewTransactionWarning": { + "message": "继续之前,请先审查交易" + }, + "send": { + "message": "发送" + }, + "sending": { + "message": "发送中" + }, + "toAddress": { + "message": "To Address" + }, + "tooPrecise": { + "message": "Invalid amount: too precise" + }, + "total": { + "message": "总额" + }, + "transactionSpeed": { + "message": "交易速度" + }, + "transactionSpeedTooltip": { + "message": "交易预计时间" + }, + "unexpected": { + "message": "An unexpected error occurred" + }, + "unknownError": { + "message": "An unknown error occurred" + }, + "unknownUtxo": { + "message": "Failed to build transaction: unknown UTXO" + }, + "witnessProgram": { + "message": "Invalid Bitcoin address: witness program" + }, + "witnessVersion": { + "message": "Invalid Bitcoin address: witness version" + } + } + } + ], + "manifest": { + "description": "Manage Bitcoin using MetaMask", + "initialPermissions": { + "endowment:assets": { + "scopes": [ + "bip122:000000000019d6689c085ae165831e93", + "bip122:000000000933ea01ad0ee984209779ba", + "bip122:00000000da84f2bafbbc53dee25a72ae", + "bip122:00000008819873e925422c1ff0f99f7c", + "bip122:regtest" + ] + }, + "endowment:cronjob": { + "jobs": [ + { + "duration": "PT30S", + "request": { + "method": "synchronizeAccounts" + } + } + ] + }, + "endowment:keyring": {}, + "endowment:lifecycle-hooks": {}, + "endowment:network-access": {}, + "endowment:webassembly": {}, + "snap_dialog": {}, + "snap_getBip32Entropy": [ + { + "curve": "secp256k1", + "path": ["m", "44'", "0'"] + }, + { + "curve": "secp256k1", + "path": ["m", "44'", "1'"] + }, + { + "curve": "secp256k1", + "path": ["m", "49'", "0'"] + }, + { + "curve": "secp256k1", + "path": ["m", "49'", "1'"] + }, + { + "curve": "secp256k1", + "path": ["m", "84'", "0'"] + }, + { + "curve": "secp256k1", + "path": ["m", "84'", "1'"] + }, + { + "curve": "secp256k1", + "path": ["m", "86'", "0'"] + }, + { + "curve": "secp256k1", + "path": ["m", "86'", "1'"] + } + ], + "snap_getPreferences": {}, + "snap_manageAccounts": {}, + "snap_manageState": {} + }, + "manifestVersion": "0.1", + "platformVersion": "10.3.0", + "proposedName": "Bitcoin", + "repository": { + "type": "git", + "url": "https://github.com/MetaMask/snap-bitcoin-wallet.git" + }, + "source": { + "locales": [ + "locales/de.json", + "locales/en.json", + "locales/es.json", + "locales/fr.json", + "locales/ja.json", + "locales/ru.json", + "locales/tl.json", + "locales/tr.json", + "locales/vi.json", + "locales/zh_CN.json" + ], + "location": { + "npm": { + "filePath": "dist/bundle.js", + "iconPath": "images/icon.svg", + "packageName": "@metamask/bitcoin-wallet-snap", + "registry": "https://registry.npmjs.org/" + } + }, + "shasum": "fXjFb2OqFUgWxxREGh1F1xYPCTrNttNvDgc0ZOUuLhk=" + }, + "version": "1.10.1" + }, + "preinstalled": true, + "removable": false, + "status": "running", + "version": "1.10.1", + "versionHistory": [ + { + "date": 1771890332059, + "origin": "metamask", + "version": "1.10.0" + }, + { + "date": 1775606918464, + "origin": "metamask", + "version": "1.10.1" + } + ] + }, + "npm:@metamask/ens-resolver-snap": { + "blocked": false, + "enabled": true, + "id": "npm:@metamask/ens-resolver-snap", + "initialPermissions": { + "endowment:ethereum-provider": {}, + "endowment:name-lookup": {}, + "endowment:network-access": {} + }, + "localizationFiles": [], + "manifest": { + "description": "A Snap used for ENS name resolution", + "initialPermissions": { + "endowment:ethereum-provider": {}, + "endowment:name-lookup": {}, + "endowment:network-access": {} + }, + "manifestVersion": "0.1", + "platformVersion": "10.0.0", + "proposedName": "Ethereum Name Service resolver", + "repository": { + "type": "git", + "url": "https://github.com/MetaMask/ens-resolver-snap.git" + }, + "source": { + "location": { + "npm": { + "filePath": "dist/bundle.js", + "iconPath": "images/icon.svg", + "packageName": "@metamask/ens-resolver-snap", + "registry": "https://registry.npmjs.org/" + } + }, + "shasum": "SZ90B7Jf3BDtVGwZDHCkEqr/18m+g3QKYOBAHEf0fc4=" + }, + "version": "1.2.0" + }, + "preinstalled": true, + "removable": false, + "status": "stopped", + "version": "1.2.0", + "versionHistory": [ + { + "date": 1771890332038, + "origin": "metamask", + "version": "1.1.0" + }, + { + "date": 1777322895682, + "origin": "metamask", + "version": "1.2.0" + } + ] + }, + "npm:@metamask/gator-permissions-snap": { + "blocked": false, + "enabled": true, + "hideSnapBranding": true, + "id": "npm:@metamask/gator-permissions-snap", + "initialConnections": { + "npm:@metamask/permissions-kernel-snap": {} + }, + "initialPermissions": { + "endowment:ethereum-provider": {}, + "endowment:network-access": {}, + "endowment:rpc": { + "dapps": false, + "snaps": true + }, + "snap_dialog": {}, + "snap_getPreferences": {}, + "snap_manageState": {} + }, + "localizationFiles": [], + "manifest": { + "description": "Grants 7715 permissions from a DeleGator smart account", + "initialConnections": { + "npm:@metamask/permissions-kernel-snap": {} + }, + "initialPermissions": { + "endowment:ethereum-provider": {}, + "endowment:network-access": {}, + "endowment:rpc": { + "dapps": false, + "snaps": true + }, + "snap_dialog": {}, + "snap_getPreferences": {}, + "snap_manageState": {} + }, + "manifestVersion": "0.1", + "platformVersion": "11.1.0", + "proposedName": "Gator Permissions", + "repository": { + "type": "git", + "url": "https://github.com/MetaMask/snap-7715-permissions.git" + }, + "source": { + "location": { + "npm": { + "filePath": "dist/bundle.js", + "iconPath": "images/icon.svg", + "packageName": "@metamask/gator-permissions-snap", + "registry": "https://registry.npmjs.org/" + } + }, + "shasum": "Uj9l8gKTSJhNVxsqHo/Dn93JHgLEEdCMzBy0RXZaLMU=" + }, + "version": "2.1.0" + }, + "preinstalled": true, + "removable": false, + "status": "stopped", + "version": "2.1.0", + "versionHistory": [ + { + "date": 1771890332023, + "origin": "metamask", + "version": "1.1.1" + }, + { + "date": 1773763012195, + "origin": "metamask", + "version": "1.3.0" + }, + { + "date": 1774392818819, + "origin": "metamask", + "version": "1.3.1" + }, + { + "date": 1778517176266, + "origin": "metamask", + "version": "2.0.0" + }, + { + "date": 1778690165280, + "origin": "metamask", + "version": "2.1.0" + } + ] + }, + "npm:@metamask/institutional-wallet-snap": { + "blocked": false, + "enabled": true, + "hideSnapBranding": true, + "id": "npm:@metamask/institutional-wallet-snap", + "initialConnections": { + "http://localhost:3000": {}, + "http://localhost:8000": {}, + "https://alpha.mycactus.io": {}, + "https://app-beta.signer.cubist.dev": {}, + "https://app-gamma.signer.cubist.dev": {}, + "https://app.bitgo-test.com": {}, + "https://app.bitgo.com": {}, + "https://app.signer.cubist.dev": {}, + "https://apps-portal.safe.global": {}, + "https://console.dev.mpcvault.com": {}, + "https://console.fireblocks.io": {}, + "https://console.mpcvault.com": {}, + "https://debug.mycactus.dev:1443": {}, + "https://dev10-console.waterballoons.xyz": {}, + "https://dev4-console.waterballoons.xyz": {}, + "https://eu-console.fireblocks.io": {}, + "https://eu2-console.fireblocks.io": {}, + "https://local.waterballoons.xyz:4200": {}, + "https://localhost:3000": {}, + "https://neptune-custody-ui.metamask-institutional.io": {}, + "https://pre.mycactus.com": {}, + "https://sandbox.fireblocks.io": {}, + "https://saturn-custody-ui.metamask-institutional.io": {}, + "https://ui-preprod-v2.qa.zodia.io": {}, + "https://ui-preprod-v2.uat.zodia.io": {}, + "https://ui-v2.qa.zodia.io": {}, + "https://ui-v2.sit.zodia.io": {}, + "https://v2.custody.zodia.io": {}, + "https://www.mycactus.com": {}, + "https://www.mycactus.dev": {}, + "localhost:8000": {} + }, + "initialPermissions": { + "endowment:cronjob": { + "jobs": [ + { + "expression": "5/15 * * * * *", + "request": { + "method": "execute" + } + }, + { + "expression": "* * * * *", + "request": { + "method": "manageSleepState" + } + } + ] + }, + "endowment:ethereum-provider": {}, + "endowment:keyring": { + "allowedOrigins": ["localhost:8000", "http://localhost:8000"] + }, + "endowment:network-access": {}, + "endowment:page-home": {}, + "endowment:rpc": { + "allowedOrigins": [ + "localhost:8000", + "http://localhost:8000", + "localhost:3000", + "https://localhost:3000", + "http://localhost:3000", + "https://neptune-custody-ui.metamask-institutional.io", + "https://zodia.io", + "https://ui-v2.sit.zodia.io", + "https://ui-v2.qa.zodia.io", + "https://ui-preprod-v2.qa.zodia.io", + "https://ui-preprod-v2.uat.zodia.io", + "https://v2.custody.zodia.io", + "https://console.fireblocks.io", + "https://eu-console.fireblocks.io", + "https://eu2-console.fireblocks.io", + "https://sandbox.fireblocks.io", + "https://local.waterballoons.xyz:4200", + "https://dev4-console.waterballoons.xyz", + "https://dev10-console.waterballoons.xyz", + "https://console.dev.mpcvault.com", + "https://saturn-custody-ui.metamask-institutional.io", + "https://console.mpcvault.com", + "https://app.bitgo.com", + "https://app.bitgo-test.com", + "https://apps-portal.safe.global", + "https://alpha.mycactus.io", + "https://pre.mycactus.com", + "https://www.mycactus.dev", + "https://debug.mycactus.dev:1443", + "https://www.mycactus.com", + "https://app-gamma.signer.cubist.dev", + "https://app-beta.signer.cubist.dev", + "https://app.signer.cubist.dev" + ] + }, + "snap_dialog": {}, + "snap_manageAccounts": {}, + "snap_manageState": {}, + "snap_notify": {} + }, + "localizationFiles": [], + "manifest": { + "description": "Institutional accounts in MetaMask.", + "initialConnections": { + "http://localhost:3000": {}, + "http://localhost:8000": {}, + "https://alpha.mycactus.io": {}, + "https://app-beta.signer.cubist.dev": {}, + "https://app-gamma.signer.cubist.dev": {}, + "https://app.bitgo-test.com": {}, + "https://app.bitgo.com": {}, + "https://app.signer.cubist.dev": {}, + "https://apps-portal.safe.global": {}, + "https://console.dev.mpcvault.com": {}, + "https://console.fireblocks.io": {}, + "https://console.mpcvault.com": {}, + "https://debug.mycactus.dev:1443": {}, + "https://dev10-console.waterballoons.xyz": {}, + "https://dev4-console.waterballoons.xyz": {}, + "https://eu-console.fireblocks.io": {}, + "https://eu2-console.fireblocks.io": {}, + "https://local.waterballoons.xyz:4200": {}, + "https://localhost:3000": {}, + "https://neptune-custody-ui.metamask-institutional.io": {}, + "https://pre.mycactus.com": {}, + "https://sandbox.fireblocks.io": {}, + "https://saturn-custody-ui.metamask-institutional.io": {}, + "https://ui-preprod-v2.qa.zodia.io": {}, + "https://ui-preprod-v2.uat.zodia.io": {}, + "https://ui-v2.qa.zodia.io": {}, + "https://ui-v2.sit.zodia.io": {}, + "https://v2.custody.zodia.io": {}, + "https://www.mycactus.com": {}, + "https://www.mycactus.dev": {}, + "localhost:8000": {} + }, + "initialPermissions": { + "endowment:cronjob": { + "jobs": [ + { + "expression": "5/15 * * * * *", + "request": { + "method": "execute" + } + }, + { + "expression": "* * * * *", + "request": { + "method": "manageSleepState" + } + } + ] + }, + "endowment:ethereum-provider": {}, + "endowment:keyring": { + "allowedOrigins": ["localhost:8000", "http://localhost:8000"] + }, + "endowment:network-access": {}, + "endowment:page-home": {}, + "endowment:rpc": { + "allowedOrigins": [ + "localhost:8000", + "http://localhost:8000", + "localhost:3000", + "https://localhost:3000", + "http://localhost:3000", + "https://neptune-custody-ui.metamask-institutional.io", + "https://zodia.io", + "https://ui-v2.sit.zodia.io", + "https://ui-v2.qa.zodia.io", + "https://ui-preprod-v2.qa.zodia.io", + "https://ui-preprod-v2.uat.zodia.io", + "https://v2.custody.zodia.io", + "https://console.fireblocks.io", + "https://eu-console.fireblocks.io", + "https://eu2-console.fireblocks.io", + "https://sandbox.fireblocks.io", + "https://local.waterballoons.xyz:4200", + "https://dev4-console.waterballoons.xyz", + "https://dev10-console.waterballoons.xyz", + "https://console.dev.mpcvault.com", + "https://saturn-custody-ui.metamask-institutional.io", + "https://console.mpcvault.com", + "https://app.bitgo.com", + "https://app.bitgo-test.com", + "https://apps-portal.safe.global", + "https://alpha.mycactus.io", + "https://pre.mycactus.com", + "https://www.mycactus.dev", + "https://debug.mycactus.dev:1443", + "https://www.mycactus.com", + "https://app-gamma.signer.cubist.dev", + "https://app-beta.signer.cubist.dev", + "https://app.signer.cubist.dev" + ] + }, + "snap_dialog": {}, + "snap_manageAccounts": {}, + "snap_manageState": {}, + "snap_notify": {} + }, + "manifestVersion": "0.1", + "proposedName": "Institutional Wallet", + "repository": { + "type": "git", + "url": "git+https://github.com/MetaMask/snap-institutional-wallet.git" + }, + "source": { + "location": { + "npm": { + "filePath": "dist/bundle.js", + "iconPath": "images/icon.svg", + "packageName": "@metamask/institutional-wallet-snap", + "registry": "https://registry.npmjs.org/" + } + }, + "shasum": "9KSYI8gbTMuwmAeXT1KFr5Cp0sSpZ8f6h0cefgt0SKE=" + }, + "version": "1.5.0" + }, + "preinstalled": true, + "removable": false, + "status": "running", + "version": "1.5.0", + "versionHistory": [ + { + "date": 1771890332042, + "origin": "metamask", + "version": "1.3.4" + }, + { + "date": 1775785213610, + "origin": "metamask", + "version": "1.5.0" + } + ] + }, + "npm:@metamask/message-signing-snap": { + "blocked": false, + "enabled": true, + "id": "npm:@metamask/message-signing-snap", + "initialConnections": { + "https://app.metamask.io": {}, + "https://developer.metamask.io": {}, + "https://docs.metamask.io": {}, + "https://portfolio-builds.metafi-dev.codefi.network": {}, + "https://portfolio.metamask.io": {}, + "npm:@metamask/gator-permissions-snap": {} + }, + "initialPermissions": { + "endowment:rpc": { + "dapps": true, + "snaps": true + }, + "snap_getEntropy": {} + }, + "localizationFiles": [], + "manifest": { + "description": "Provides public key and message signing used for signing in with MetaMask", + "initialConnections": { + "https://app.metamask.io": {}, + "https://developer.metamask.io": {}, + "https://docs.metamask.io": {}, + "https://portfolio-builds.metafi-dev.codefi.network": {}, + "https://portfolio.metamask.io": {}, + "npm:@metamask/gator-permissions-snap": {} + }, + "initialPermissions": { + "endowment:rpc": { + "dapps": true, + "snaps": true + }, + "snap_getEntropy": {} + }, + "manifestVersion": "0.1", + "platformVersion": "8.1.0", + "proposedName": "Sign in with MetaMask", + "repository": { + "type": "git", + "url": "https://github.com/MetaMask/message-signing-snap.git" + }, + "source": { + "location": { + "npm": { + "filePath": "dist/bundle.js", + "iconPath": "images/icon.svg", + "packageName": "@metamask/message-signing-snap", + "registry": "https://registry.npmjs.org/" + } + }, + "shasum": "9XT0QAdCcds4xq1qG+zB7DchjMLCv4g7crpYi9G0Tos=" + }, + "version": "1.1.4" + }, + "preinstalled": true, + "removable": false, + "status": "running", + "version": "1.1.4", + "versionHistory": [ + { + "date": 1771890332035, + "origin": "metamask", + "version": "1.1.4" + } + ] + }, + "npm:@metamask/permissions-kernel-snap": { + "blocked": false, + "enabled": true, + "hideSnapBranding": true, + "id": "npm:@metamask/permissions-kernel-snap", + "initialPermissions": { + "endowment:rpc": { + "dapps": true, + "snaps": false + } + }, + "localizationFiles": [], + "manifest": { + "description": "Manage onchain 7715 permissions", + "initialPermissions": { + "endowment:rpc": { + "dapps": true, + "snaps": false + } + }, + "manifestVersion": "0.1", + "platformVersion": "11.1.0", + "proposedName": "MetaMask Permissions Kernel", + "repository": { + "type": "git", + "url": "https://github.com/MetaMask/snap-7715-permissions.git" + }, + "source": { + "location": { + "npm": { + "filePath": "dist/bundle.js", + "iconPath": "images/icon.svg", + "packageName": "@metamask/permissions-kernel-snap", + "registry": "https://registry.npmjs.org/" + } + }, + "shasum": "RjVHlC9iqBsU/krj87qEwD0PqVy92NrSWJSIBPyAft0=" + }, + "version": "1.3.0" + }, + "preinstalled": true, + "removable": false, + "status": "stopped", + "version": "1.3.0", + "versionHistory": [ + { + "date": 1771890332021, + "origin": "metamask", + "version": "1.0.0" + }, + { + "date": 1773763012110, + "origin": "metamask", + "version": "1.1.0" + }, + { + "date": 1778517176165, + "origin": "metamask", + "version": "1.2.0" + }, + { + "date": 1778690165145, + "origin": "metamask", + "version": "1.3.0" + } + ] + }, + "npm:@metamask/solana-wallet-snap": { + "blocked": false, + "enabled": true, + "hideSnapBranding": true, + "id": "npm:@metamask/solana-wallet-snap", + "initialConnections": { + "https://portfolio.metamask.io": {} + }, + "initialPermissions": { + "endowment:assets": { + "scopes": [ + "solana:5eykt4UsFv8P8NJdTREpY1vzqKqZKvdp", + "solana:EtWTRABZaYq6iMfeYKouRu166VU2xqa1" + ] + }, + "endowment:cronjob": { + "jobs": [] + }, + "endowment:keyring": { + "allowedOrigins": ["https://portfolio.metamask.io"] + }, + "endowment:lifecycle-hooks": {}, + "endowment:name-lookup": { + "chains": [ + "solana:5eykt4UsFv8P8NJdTREpY1vzqKqZKvdp", + "solana:EtWTRABZaYq6iMfeYKouRu166VU2xqa1" + ] + }, + "endowment:network-access": {}, + "endowment:protocol": { + "scopes": { + "solana:5eykt4UsFv8P8NJdTREpY1vzqKqZKvdp": { + "methods": [ + "getGenesisHash", + "getLatestBlockhash", + "getMinimumBalanceForRentExemption" + ] + }, + "solana:EtWTRABZaYq6iMfeYKouRu166VU2xqa1": { + "methods": [ + "getGenesisHash", + "getLatestBlockhash", + "getMinimumBalanceForRentExemption" + ] + } + } + }, + "endowment:rpc": { + "dapps": true, + "snaps": false + }, + "snap_dialog": {}, + "snap_getBip32Entropy": [ + { + "curve": "ed25519", + "path": ["m", "44'", "501'"] + } + ], + "snap_getPreferences": {}, + "snap_manageAccounts": {}, + "snap_manageState": {} + }, + "localizationFiles": [ + { + "locale": "en", + "messages": { + "confirmation.account": { + "message": "Account" + }, + "confirmation.advanced.data": { + "message": "Data" + }, + "confirmation.advanced.hide": { + "message": "Hide advanced" + }, + "confirmation.advanced.programId": { + "message": "Program ID" + }, + "confirmation.advanced.show": { + "message": "Show advanced" + }, + "confirmation.advanced.unknownInstruction": { + "message": "Unknown" + }, + "confirmation.cancelButton": { + "message": "Cancel" + }, + "confirmation.confirmButton": { + "message": "Confirm" + }, + "confirmation.estimatedChanges": { + "message": "Estimated changes" + }, + "confirmation.estimatedChanges.noChanges": { + "message": "No changes" + }, + "confirmation.estimatedChanges.notAvailable": { + "message": "Not available" + }, + "confirmation.estimatedChanges.receive": { + "message": "You receive" + }, + "confirmation.estimatedChanges.send": { + "message": "You send" + }, + "confirmation.estimatedChanges.tooltip": { + "message": "Estimated changes are what might happen if you go through with this transaction. This is just a prediction, not a guarantee." + }, + "confirmation.fee": { + "message": "Network fee" + }, + "confirmation.feeError": { + "message": "Unable to estimate fee" + }, + "confirmation.network": { + "message": "Network" + }, + "confirmation.origin": { + "message": "Request from" + }, + "confirmation.origin.tooltip": { + "message": "This is the site asking for your confirmation." + }, + "confirmation.recipient": { + "message": "Recipient" + }, + "confirmation.sendAndConfirmTransaction.title": { + "message": "Sending and confirming transaction" + }, + "confirmation.signAndSendTransaction.title": { + "message": "Transaction request" + }, + "confirmation.signIn.badAccount": { + "message": "This site is asking you to sign in using the wrong account." + }, + "confirmation.signIn.badDomain": { + "message": "This site is asking you to sign in using the wrong domain." + }, + "confirmation.signIn.chainId": { + "message": "Chain ID" + }, + "confirmation.signIn.description": { + "message": "A site wants you to sign in to prove you own this account." + }, + "confirmation.signIn.domain": { + "message": "Domain" + }, + "confirmation.signIn.expirationTime": { + "message": "Expiration time" + }, + "confirmation.signIn.issuedAt": { + "message": "Issued at" + }, + "confirmation.signIn.message": { + "message": "Message" + }, + "confirmation.signIn.nonce": { + "message": "Nonce" + }, + "confirmation.signIn.notBefore": { + "message": "Not before" + }, + "confirmation.signIn.requestId": { + "message": "Request ID" + }, + "confirmation.signIn.resources": { + "message": "Resources" + }, + "confirmation.signIn.signingInWith": { + "message": "Signing in with" + }, + "confirmation.signIn.statement": { + "message": "Statement" + }, + "confirmation.signIn.title": { + "message": "Sign-in request" + }, + "confirmation.signIn.unknownDomain": { + "message": "Unknown domain" + }, + "confirmation.signIn.version": { + "message": "Version" + }, + "confirmation.signMessage.message": { + "message": "Message" + }, + "confirmation.signMessage.title": { + "message": "Sign message" + }, + "confirmation.signTransaction.title": { + "message": "Signing request" + }, + "confirmation.simulationErrorSubtitle": { + "message": "{reason}" + }, + "confirmation.simulationErrorTitle": { + "message": "This transaction was reverted during simulation." + }, + "confirmation.validationErrorLearnMore": { + "message": "Learn more" + }, + "confirmation.validationErrorSecurityAdviced": { + "message": "Security advice by" + }, + "confirmation.validationErrorSubtitle": { + "message": "If you approve this request, a third party known for scams will take all your assets." + }, + "confirmation.validationErrorTitle": { + "message": "This is a deceptive request" + }, + "send.amountField": { + "message": "Amount" + }, + "send.amountGreatherThanMinimumBalanceForRentExemptionError": { + "message": "Amount must be greater than {minimumValue}" + }, + "send.amountRequiredError": { + "message": "Amount is required" + }, + "send.assetField": { + "message": "Token" + }, + "send.balance": { + "message": "Balance" + }, + "send.cancelButton": { + "message": "Cancel" + }, + "send.confirmation.cancelButton": { + "message": "Cancel" + }, + "send.confirmation.fee": { + "message": "Network fee" + }, + "send.confirmation.from": { + "message": "From" + }, + "send.confirmation.network": { + "message": "Network" + }, + "send.confirmation.recipient": { + "message": "Recipient" + }, + "send.confirmation.sendButton": { + "message": "Send" + }, + "send.confirmation.title": { + "message": "Review" + }, + "send.confirmation.transactionSpeed": { + "message": "Transaction speed" + }, + "send.confirmation.viewTransaction": { + "message": "View transaction" + }, + "send.continueButton": { + "message": "Continue" + }, + "send.fromField": { + "message": "From" + }, + "send.fromRequiredError": { + "message": "Account is required" + }, + "send.insufficientBalance": { + "message": "Insufficient balance" + }, + "send.insuffientSolToCoverFee": { + "message": "Insufficient SOL balance to cover the transaction fee" + }, + "send.maxButton": { + "message": "Max" + }, + "send.selectedTokenPriceNotAvailable": { + "message": "Prices for tokens in {currency} are currently not available. You are still able to send tokens." + }, + "send.send-pending.subtitle": { + "message": "Your transaction was submitted." + }, + "send.send-pending.title": { + "message": "Sending..." + }, + "send.simulationMessageAPIError": { + "message": "Only continue if you trust every address involved." + }, + "send.simulationMessageError": { + "message": "This transaction was reverted during simulation." + }, + "send.simulationTitleAPIError": { + "message": "Because of an error, we couldn't check for security alerts." + }, + "send.simulationTitleError": { + "message": "Transaction simulation failed" + }, + "send.title": { + "message": "Send" + }, + "send.toDomainResolutionStatus.error": { + "message": "Unable to resolve domain name." + }, + "send.toDomainResolutionStatus.fetched": { + "message": "Domain name resolved." + }, + "send.toDomainResolutionStatus.fetching": { + "message": "Resolving domain name..." + }, + "send.toDomainResolutionStatus.initial": { + "message": "Domain" + }, + "send.toField": { + "message": "To" + }, + "send.toInvalidError": { + "message": "Invalid Solana address or domain name" + }, + "send.toInvalidErrorDomain": { + "message": "Unable to resolve domain name" + }, + "send.toPlaceholder": { + "message": "Enter public address or domain name" + }, + "send.toRequiredError": { + "message": "To address is required" + }, + "send.transaction-failure.subtitle": { + "message": "Unable to send {amount} {tokenSymbol}" + }, + "send.transaction-failure.title": { + "message": "Transaction failed" + }, + "send.transaction-success.subtitle": { + "message": "{amount} {tokenSymbol} was successfully sent" + }, + "send.transaction-success.title": { + "message": "Sent" + }, + "transactionScan.errors.accountAlreadyInUse": { + "message": "An account with the same address already exists." + }, + "transactionScan.errors.insufficientSol": { + "message": "Account does not have enough SOL to perform the operation." + }, + "transactionScan.errors.slippageToleranceExceeded": { + "message": "The transaction was reverted because the slippage tolerance was exceeded." + }, + "transactionScan.errors.unknownError": { + "message": "An unknown error occurred." + } + } + } + ], + "manifest": { + "description": "Manage Solana using MetaMask", + "initialConnections": { + "https://portfolio.metamask.io": {} + }, + "initialPermissions": { + "endowment:assets": { + "scopes": [ + "solana:5eykt4UsFv8P8NJdTREpY1vzqKqZKvdp", + "solana:EtWTRABZaYq6iMfeYKouRu166VU2xqa1" + ] + }, + "endowment:cronjob": { + "jobs": [] + }, + "endowment:keyring": { + "allowedOrigins": ["https://portfolio.metamask.io"] + }, + "endowment:lifecycle-hooks": {}, + "endowment:name-lookup": { + "chains": [ + "solana:5eykt4UsFv8P8NJdTREpY1vzqKqZKvdp", + "solana:EtWTRABZaYq6iMfeYKouRu166VU2xqa1" + ] + }, + "endowment:network-access": {}, + "endowment:protocol": { + "scopes": { + "solana:5eykt4UsFv8P8NJdTREpY1vzqKqZKvdp": { + "methods": [ + "getGenesisHash", + "getLatestBlockhash", + "getMinimumBalanceForRentExemption" + ] + }, + "solana:EtWTRABZaYq6iMfeYKouRu166VU2xqa1": { + "methods": [ + "getGenesisHash", + "getLatestBlockhash", + "getMinimumBalanceForRentExemption" + ] + } + } + }, + "endowment:rpc": { + "dapps": true, + "snaps": false + }, + "snap_dialog": {}, + "snap_getBip32Entropy": [ + { + "curve": "ed25519", + "path": ["m", "44'", "501'"] + } + ], + "snap_getPreferences": {}, + "snap_manageAccounts": {}, + "snap_manageState": {} + }, + "manifestVersion": "0.1", + "platformVersion": "10.3.0", + "proposedName": "Solana", + "repository": { + "type": "git", + "url": "https://github.com/MetaMask/snap-solana-wallet.git" + }, + "source": { + "locales": ["locales/en.json"], + "location": { + "npm": { + "filePath": "dist/bundle.js", + "iconPath": "images/icon.svg", + "packageName": "@metamask/solana-wallet-snap", + "registry": "https://registry.npmjs.org/" + } + }, + "shasum": "hFc9PK6QCElAWB+pnkHVzW3JQVj8UNub9NozdKIxAOQ=" + }, + "version": "2.8.0" + }, + "preinstalled": true, + "removable": false, + "status": "running", + "version": "2.8.0", + "versionHistory": [ + { + "date": 1771890332093, + "origin": "metamask", + "version": "2.7.3" + }, + { + "date": 1775750871394, + "origin": "metamask", + "version": "2.8.0" + } + ] + }, + "npm:@metamask/tron-wallet-snap": { + "blocked": false, + "enabled": true, + "hideSnapBranding": true, + "id": "npm:@metamask/tron-wallet-snap", + "initialConnections": { + "https://portfolio.metamask.io": {} + }, + "initialPermissions": { + "endowment:assets": { + "scopes": ["tron:728126428"] + }, + "endowment:cronjob": { + "jobs": [ + { + "duration": "PT30S", + "request": { + "method": "onSynchronizeSelectedAccountsCronjob" + } + } + ] + }, + "endowment:keyring": { + "allowedOrigins": ["https://portfolio.metamask.io"] + }, + "endowment:network-access": {}, + "snap_dialog": {}, + "snap_getBip32Entropy": [ + { + "curve": "secp256k1", + "path": ["m", "44'", "195'"] + } + ], + "snap_getPreferences": {}, + "snap_manageAccounts": {}, + "snap_manageState": {} + }, + "localizationFiles": [ + { + "locale": "en", + "messages": { + "confirmation.account": { + "message": "Account" + }, + "confirmation.bandwidthConsumed": { + "message": "Bandwidth consumed" + }, + "confirmation.cancelButton": { + "message": "Cancel" + }, + "confirmation.confirmButton": { + "message": "Confirm" + }, + "confirmation.estimatedChanges.noChanges": { + "message": "No estimated changes" + }, + "confirmation.estimatedChanges.notAvailable": { + "message": "Estimated changes are not available" + }, + "confirmation.estimatedChanges.receive": { + "message": "You receive" + }, + "confirmation.estimatedChanges.send": { + "message": "You send" + }, + "confirmation.estimatedChanges.title": { + "message": "Estimated changes" + }, + "confirmation.estimatedChanges.tooltip": { + "message": "Estimated changes are what might happen if you go through with this transaction. This is just a prediction, not a guarantee." + }, + "confirmation.estimatedChanges.unsupportedContract": { + "message": "Unsupported contract for simulation" + }, + "confirmation.from": { + "message": "From" + }, + "confirmation.network": { + "message": "Network" + }, + "confirmation.origin": { + "message": "Request from" + }, + "confirmation.origin.tooltip": { + "message": "This is the site asking for your confirmation." + }, + "confirmation.signMessage.message": { + "message": "Message" + }, + "confirmation.signMessage.title": { + "message": "Sign message" + }, + "confirmation.signTransaction.title": { + "message": "Sign transaction" + }, + "confirmation.simulationErrorSubtitle": { + "message": "{reason}" + }, + "confirmation.simulationErrorTitle": { + "message": "This transaction was reverted during simulation." + }, + "confirmation.simulationMessageAPIError": { + "message": "Only continue if you trust every address involved." + }, + "confirmation.simulationTitleAPIError": { + "message": "Because of an error, we couldn't check for security alerts." + }, + "confirmation.to": { + "message": "To" + }, + "confirmation.transaction.title": { + "message": "Transaction request" + }, + "confirmation.transactionFee": { + "message": "Network fee" + }, + "confirmation.validationErrorLearnMore": { + "message": "Learn more" + }, + "confirmation.validationErrorSecurityAdviced": { + "message": "Security advice by" + }, + "confirmation.validationErrorSubtitle": { + "message": "If you approve this request, a third party known for scams will take all your assets." + }, + "confirmation.validationErrorTitle": { + "message": "This is a deceptive request" + }, + "transactionScan.errors.insufficientBalance": { + "message": "Insufficient balance" + }, + "transactionScan.errors.insufficientFunds": { + "message": "Insufficient funds" + }, + "transactionScan.errors.invalidAddress": { + "message": "Invalid address" + }, + "transactionScan.errors.invalidTransaction": { + "message": "Invalid transaction" + }, + "transactionScan.errors.unknownError": { + "message": "An unknown error occurred" + }, + "transactionScan.errors.unsupportedEIP712Message": { + "message": "Unsupported method" + } + } + } + ], + "manifest": { + "description": "Manage Tron using MetaMask", + "initialConnections": { + "https://portfolio.metamask.io": {} + }, + "initialPermissions": { + "endowment:assets": { + "scopes": ["tron:728126428"] + }, + "endowment:cronjob": { + "jobs": [ + { + "duration": "PT30S", + "request": { + "method": "onSynchronizeSelectedAccountsCronjob" + } + } + ] + }, + "endowment:keyring": { + "allowedOrigins": ["https://portfolio.metamask.io"] + }, + "endowment:network-access": {}, + "snap_dialog": {}, + "snap_getBip32Entropy": [ + { + "curve": "secp256k1", + "path": ["m", "44'", "195'"] + } + ], + "snap_getPreferences": {}, + "snap_manageAccounts": {}, + "snap_manageState": {} + }, + "manifestVersion": "0.1", + "platformVersion": "10.3.0", + "proposedName": "Tron", + "repository": { + "type": "git", + "url": "https://github.com/MetaMask/snap-tron-wallet.git" + }, + "source": { + "locales": ["locales/en.json"], + "location": { + "npm": { + "filePath": "dist/bundle.js", + "iconPath": "images/icon.svg", + "packageName": "@metamask/tron-wallet-snap", + "registry": "https://registry.npmjs.org/" + } + }, + "shasum": "rjbm46pYTWfZhZOTVdx1FjN+Ynww7vbZRRU1W4cTB6s=" + }, + "version": "1.25.3" + }, + "preinstalled": true, + "removable": false, + "status": "running", + "version": "1.25.3", + "versionHistory": [ + { + "date": 1772733142944, + "origin": "metamask", + "version": "1.22.1" + }, + { + "date": 1775606918507, + "origin": "metamask", + "version": "1.25.0" + }, + { + "date": 1775750871424, + "origin": "metamask", + "version": "1.25.1" + }, + { + "date": 1776364729632, + "origin": "metamask", + "version": "1.25.2" + }, + { + "date": 1777322895814, + "origin": "metamask", + "version": "1.25.3" + } + ] + } + }, + "isReady": true, + "events": { + "cronjob-npm:@metamask/bitcoin-wallet-snap-0": { + "date": "2026-05-18T17:46:43.491Z", + "id": "cronjob-npm:@metamask/bitcoin-wallet-snap-0", + "recurring": true, + "request": { + "method": "synchronizeAccounts" + }, + "schedule": "PT30S", + "scheduledAt": "2026-04-08T00:08:38.502Z", + "snapId": "npm:@metamask/bitcoin-wallet-snap" + }, + "cronjob-npm:@metamask/institutional-wallet-snap-0": { + "date": "2026-05-18T17:46:35.000Z", + "id": "cronjob-npm:@metamask/institutional-wallet-snap-0", + "recurring": true, + "request": { + "method": "execute" + }, + "schedule": "5/15 * * * * *", + "scheduledAt": "2026-04-10T01:40:13.705Z", + "snapId": "npm:@metamask/institutional-wallet-snap" + }, + "cronjob-npm:@metamask/institutional-wallet-snap-1": { + "date": "2026-05-18T17:47:00.000Z", + "id": "cronjob-npm:@metamask/institutional-wallet-snap-1", + "recurring": true, + "request": { + "method": "manageSleepState" + }, + "schedule": "* * * * *", + "scheduledAt": "2026-04-10T01:40:13.707Z", + "snapId": "npm:@metamask/institutional-wallet-snap" + }, + "cronjob-npm:@metamask/tron-wallet-snap-0": { + "date": "2026-05-18T17:46:43.496Z", + "id": "cronjob-npm:@metamask/tron-wallet-snap-0", + "recurring": true, + "request": { + "method": "onSynchronizeSelectedAccountsCronjob" + }, + "schedule": "PT30S", + "scheduledAt": "2026-04-27T20:48:15.828Z", + "snapId": "npm:@metamask/tron-wallet-snap" + } + }, + "database": { + "blockedSnaps": [ + { + "id": "npm:@consensys/starknet-snap", + "versionRange": "<0.1.11" + }, + { + "checksum": "A83r5/ZIcKuKwuAnQHHByVFCuofj7jGK5hOStmHY6A0=" + }, + { + "id": "npm:onthis-snap", + "versionRange": "<1.4.1" + }, + { + "id": "npm:wallet-guard-snap", + "versionRange": "<1.1.3" + }, + { + "id": "npm:@forta-network/metamask-snap", + "versionRange": "<=0.1.3" + } + ], + "verifiedSnaps": { + "npm:0xname-resolver-snap": { + "id": "npm:0xname-resolver-snap", + "metadata": { + "author": { + "name": "beast dao", + "website": "https://beastdao.org/" + }, + "category": "name resolution", + "description": "The 0xname Resolver Snap enables resolving of web3 names issued via app.0xname.foo. 0xNAME is a public good platform built by BEAST DAO to provide web3 users with free personal names.\n\nThis Snap empowered by the official Snap SDK enhances a MetaMask wallet with a single functionality: to seamlessly resolve any 0xNAME web3 names with any custom suffix like alice@eth, yulia@beast or bob@yourdao etc. to their respective Ethereum addresses.\n\nAnyone can get their 100% free web3 personal names associated with various communities, projects, DAOs, initiatives or even events with 0xNAME. And after installing the Snap, simply type any 0xname like yulia@beast in the MetaMask send flow instead of long, complex wallet addresses.", + "name": "0xNAME resolver", + "screenshots": [ + "./images/0xname-resolver-snap/1.png", + "./images/0xname-resolver-snap/2.png", + "./images/0xname-resolver-snap/3.png" + ], + "sourceCode": "https://github.com/beastdao/0xname-resolver-snap", + "summary": "Use free 0xNAME instead of Ethereum address in MetaMask.", + "support": { + "contact": "https://discord.gg/McqF7vyCWx", + "faq": "https://github.com/beastdao/0xname-resolver-snap/blob/main/README.md#faq-and-knowledge-base", + "knowledgeBase": "https://github.com/beastdao/0xname-resolver-snap/blob/main/README.md#faq-and-knowledge-base" + } + }, + "versions": { + "0.1.2": { + "checksum": "StUwQKPnkP/IHWVjSLk8zcyjvRI2Kz3Mfgpb7hdOumQ=" + } + } + }, + "npm:@0sum/pepu-snap": { + "id": "npm:@0sum/pepu-snap", + "metadata": { + "author": { + "name": "PEPE Unchained", + "website": "https://pepeunchained.com/" + }, + "category": "notifications", + "description": "Stay up to date with PEPU ecosystem. Read important notifications directly into your MetaMask wallet. Get news directly from the PEPU team, when tokens are bonded on pumppad and community notifications on HolderRadar.\n\n- News\n- Pumppad\n- HolderRadar", + "name": "PEPE Unchained", + "screenshots": [ + "./images/@0sum/pepu-snap/1.png", + "./images/@0sum/pepu-snap/2.png", + "./images/@0sum/pepu-snap/3.png" + ], + "sourceCode": "https://github.com/0sum-io/pepu-snap", + "summary": "Bring PEPU Notifications to MetaMask", + "support": { + "contact": "mailto:leon@0sum.io" + } + }, + "versions": { + "0.1.5": { + "checksum": "MSS3MNr8B2gklT23eJffSuBCMamaRbKtxwpvuqGZ4K0=" + } + } + }, + "npm:@aeternity-snap/plugin": { + "id": "npm:@aeternity-snap/plugin", + "metadata": { + "audits": [ + { + "auditor": "OtterSec", + "report": "https://file.notion.so/f/f/97ab6450-64d1-4350-a5cf-a0c0c607f5c4/e9815101-cd01-43f3-89f8-7367e5244fc4/aeternity_snap_audit_final.pdf?table=block&id=141e1dd2-cb7b-473b-8e07-39771b4007d4&spaceId=97ab6450-64d1-4350-a5cf-a0c0c607f5c4&expirationTimestamp=1725408000000&signature=YlFtdd2awQRHogD2fRNq0I0PhMDvdiLZzR5i1IN7wZU&downloadName=aeternity_snap_audit_final.pdf" + } + ], + "author": { + "name": "Aeternity", + "website": "https://aeternity.com/" + }, + "category": "interoperability", + "description": "Aeternity Snap enhances MetaMask by adding support for Aeternity blockchain features. Users can:\n\nManage AE tokens and track balances\nInteract with Aeternity smart contracts seamlessly\nPerform secure blockchain transactions within MetaMask\nExplore Aeternity’s decentralized applications\nTo use the Snap, install the Aeternity Snap package in MetaMask, connect your MetaMask wallet, and start interacting with the Aeternity blockchain.", + "name": "Aeternity Wallet", + "sourceCode": "https://github.com/4-point-0/aeternity-snap", + "summary": "Interact with Aeternity smart contracts, manage AE tokens, and perform blockchain transactions.", + "support": { + "contact": "mailto:donna@aeternity.com" + }, + "website": "https://aeternity-snap.vercel.app/" + }, + "versions": { + "0.0.9": { + "checksum": "pl+Yu5DlFCrrKwuZakPfMzslJm5ovJk8kIzTeASvVkY=" + } + } + }, + "npm:@algorandfoundation/algorand-metamask-snap": { + "id": "npm:@algorandfoundation/algorand-metamask-snap", + "metadata": { + "audits": [ + { + "auditor": "OtterSec", + "report": "https://ottersec.notion.site/Sampled-Public-Audit-Reports-a296e98838aa4fdb8f3b192663400772?p=b25b9f3a52ab4821914f379ff0d3ec62&pm=s" + } + ], + "author": { + "name": "Algorand Foundation", + "website": "https://www.algorand.foundation/" + }, + "category": "interoperability", + "description": "Manage Algorand accounts with MetaMask, transfer, swap, and interact with Algorand dapps.\n\nAlgorand is a scalable layer-1 blockchain powered by the Pure Proof-of-Stake consensus mechanism with quick block times and instant finality.\n\nWebsite coming soon.", + "name": "Algorand Wallet", + "sourceCode": "https://github.com/algorandfoundation/algo-metamask", + "summary": "Manage Algorand accounts, transfer, swap, and interact with Algorand dapps.", + "support": { + "contact": "mailto:snap-algo@algorand.foundation" + } + }, + "versions": { + "10.0.2": { + "checksum": "Ac+HbVc2OlKU9zIGvp7JzHfuyNh4u1hiE3EC/tHIER0=" + } + } + }, + "npm:@amax/amaxsnap": { + "id": "npm:@amax/amaxsnap", + "metadata": { + "audits": [ + { + "auditor": "Sayfer", + "report": "https://sayfer.io/audits/metamask-snap-audit-report-for-amax/" + } + ], + "author": { + "name": "AMAX DAO", + "website": "https://amaxup.xyz/about" + }, + "category": "interoperability", + "description": "AMAX UP is Armonia Meta Chain's Snap wallet that manages tokens and NFTs assets, enabling bridge, swap, stake, and other operations; it supports the use of MetaMask to connect to the AMC chain and use almost all functions of AMC.\n\nAfter installing the Snap, visit the website to connect with MetaMask and manage your AMC account(s).", + "name": "AMAX UP", + "sourceCode": "https://github.com/armoniax/amaxup.evmsnap", + "summary": "Manage assets and use dapps on AMC (Armonia Meta Chain).", + "support": { + "contact": "mailto:armoniax000@gmail.com" + }, + "website": "https://amaxup.xyz/" + }, + "versions": { + "0.0.5": { + "checksum": "uBmE8MJYdM5373rBxbQpzGkIC1mForIVWCUbBUv7eX0=" + } + } + }, + "npm:@ans-abstract-name-service/ans-snap": { + "id": "npm:@ans-abstract-name-service/ans-snap", + "metadata": { + "author": { + "name": "ANS | Abstract Name Service", + "website": "https://absnameservice.xyz/" + }, + "category": "name resolution", + "description": "ANS | Abstract Name Service enables native .abs name resolution inside MetaMask on Abstract (chain ID 2741). Features:\n\n- Forward lookup: resolves name.abs -> address using ANS V2 records.\n- Reverse lookup: resolves address -> primary .abs name when available.\n- Owner fallback: if no resolver record exists, falls back to ANS ownership data.\n\nHow to use:\n1. Connect wallet on the companion site.\n2. Install the Snap.\n3. In MetaMask, send assets using a .abs name (for example: shroomy.abs).\n\nNetwork scope:\n- Abstract mainnet only (eip155:2741).", + "name": "ANS | Abstract Name Service", + "screenshots": [ + "./images/@ans-abstract-name-service/ans-snap/1.png", + "./images/@ans-abstract-name-service/ans-snap/2.png", + "./images/@ans-abstract-name-service/ans-snap/3.png" + ], + "sourceCode": "https://github.com/0xShroomy/ans-snap", + "summary": "Resolve .abs names on Abstract mainnet.", + "support": { + "contact": "https://discord.gg/5jXUqCSR7Q", + "knowledgeBase": "https://absnameservice.xyz/docs/metamask-snap" + } + }, + "versions": { + "0.1.3": { + "checksum": "nPqrzsM7u3H68Gt60vAEkUmSFouWWktgPAeO2LDEBOU=" + } + } + }, + "npm:@ardata-tech/qubic-wallet": { + "id": "npm:@ardata-tech/qubic-wallet", + "metadata": { + "audits": [ + { + "auditor": "OtterSec", + "report": "https://github.com/ardata-tech/qubic-audit/blob/master/ardata_tech_snap_audit.pdf" + } + ], + "author": { + "name": "AR Data Technologies", + "website": "https://www.ardata.tech" + }, + "category": "interoperability", + "description": "Qubic Wallet is a powerful and secure interface designed to enable seamless interactions with the Qubic blockchain ecosystem. Whether you're a developer, enterprise, or individual user, Qubic Wallet provides a streamlined gateway for integrating decentralized features into your applications with confidence.", + "name": "Qubic Wallet", + "screenshots": [ + "./images/@ardata-tech/qubic-wallet/1.png", + "./images/@ardata-tech/qubic-wallet/2.png", + "./images/@ardata-tech/qubic-wallet/3.png" + ], + "sourceCode": "https://github.com/ardata-tech/qubic-wallet", + "summary": "Secure and streamlined gateway to interacting with the Qubic blockchain.", + "support": { + "contact": "https://ardata-tech.notion.site/1aefbc8879c7816ca0bcf2127836a712", + "faq": "https://ardata-tech.notion.site/Qubic-Connect-FAQs-1affbc8879c78044b387dcea34754e9f", + "knowledgeBase": "https://ardata-tech.notion.site/Qubic-Connect-Knowledge-Base-1affbc8879c7802ba998d2388c225b7f" + }, + "website": "https://connect.qubic.org" + }, + "versions": { + "1.0.7": { + "checksum": "CUiQNRISBu/m0w9wZ3lpwkW9jsRaDM1JoH9ptrB1dN0=" + } + } + }, + "npm:@astar-network/snap": { + "id": "npm:@astar-network/snap", + "metadata": { + "audits": [ + { + "auditor": "Sayfer", + "report": "https://sayfer.io/audits/metamask-snap-audit-report-for-astar/" + } + ], + "author": { + "name": "Astar Network", + "website": "https://astar.network/" + }, + "category": "interoperability", + "description": "Adds support for Astar, an interoperable blockchain platform for Polkadot and Ethereum ecosystems supporting both Wasm and EVM smart contracts.\n\nAfter installing the Snap, visit the Astar Portal at https://portal.astar.network/ to connect. Make sure to select 'Astar Snap' under the Native Accounts options.", + "name": "Astar Wallet", + "screenshots": [ + "./images/@astar-network/snap/1.png", + "./images/@astar-network/snap/2.png", + "./images/@astar-network/snap/3.png" + ], + "sourceCode": "https://github.com/AstarNetwork/metamask-snap-astar", + "summary": "Adds support for Astar.", + "support": { + "knowledgeBase": "https://docs.astar.network/docs/use/manage-wallets/wallet-providers/metamask-astar-snap/" + }, + "website": "https://portal.astar.network/" + }, + "versions": { + "0.9.1": { + "checksum": "7668ZwlcG4/X7WBaTRZYmUJFOoewItCkShKhoaeo38o=" + } + } + }, + "npm:@avail-project/avail-snap": { + "id": "npm:@avail-project/avail-snap", + "metadata": { + "author": { + "name": "Avail", + "website": "https://www.availproject.org/" + }, + "category": "interoperability", + "description": "View and sign transactions on the Avail blockchain, as well as swap and stake the AVAIL token, with MetaMask.\n\nFeatures:\n\n- Create a wallet account on Avail\n- Sign transactions on Avail", + "name": "Avail Wallet", + "screenshots": [ + "./images/@availproject/avail-snap/1.jpg", + "./images/@availproject/avail-snap/2.jpg", + "./images/@availproject/avail-snap/3.jpg" + ], + "sourceCode": "https://github.com/availproject/metamask-snap-avail", + "summary": "View and sign transactions, swap, and stake AVAIL tokens.", + "support": { + "contact": "https://discord.gg/y6fHnxZQX8", + "knowledgeBase": "https://docs.availproject.org/docs/end-user-guide/avail-snap" + }, + "website": "https://snap.availproject.org/" + }, + "versions": { + "1.0.8": { + "checksum": "KZV4C5Gao8Ij61Thb/Q2zp34iPvugBNoYK7US5oLju8=" + }, + "1.1.0": { + "checksum": "gjufYGFpX3NZV1Iudo+iClSubn5t8sj+fBnSpX5WXEI=" + } + } + }, + "npm:@bitfinding/unblind-second-factor-snap": { + "id": "npm:@bitfinding/unblind-second-factor-snap", + "metadata": { + "audits": [], + "author": { + "name": "Bitfinding", + "website": "https://bitfinding.com/" + }, + "category": "transaction insights", + "description": "This Snap sends human-readable transaction summaries to your Telegram before you sign.\nIt simulates each transaction and delivers a plain-English summary to your account. This lets you clearly see asset movements and contract interactions, helping you spot potential risks like wallet drainers or unexpected token transfers.\n\nHow to Use:\n\n1. Install the Snap and connect it to your Telegram account.\n2. When you start a transaction, a summary will appear in your Telegram chat.\n3. Review the details, then confirm the transaction in MetaMask.\n\nSecurity & Privacy:\n\nThe Snap has read-only access to transaction data to generate explanations. It cannot access your private keys, sign transactions, or modify your assets.", + "name": "Unblind Second Factor", + "screenshots": [ + "./images/@bitfinding/unblind-second-factor-snap/1.png", + "./images/@bitfinding/unblind-second-factor-snap/2.png", + "./images/@bitfinding/unblind-second-factor-snap/3.png" + ], + "sourceCode": "https://github.com/BitFinding/unblind-second-factor-snap", + "summary": "Get Telegram notifications with human-readable information of what you are about to sign.", + "support": { + "contact": "mailto:hello@bitfinding.com" + }, + "website": "https://unblind.app/" + }, + "versions": { + "0.3.0": { + "checksum": "TFShtGXesoy/yC1unUADT5KCt6jSwXG8wwXskWC0tZ4=" + } + } + }, + "npm:@bitpandacustody/trust-vault-snap": { + "id": "npm:@bitpandacustody/trust-vault-snap", + "metadata": { + "audits": [ + { + "auditor": "Kudelski Security", + "report": "https://cdn.bitpanda.com/media/white-label/Kudelski_Security_Bitpanda_Snap_Code_Review_v2.0.pdf" + } + ], + "author": { + "name": "bitpanda", + "website": "https://www.bitpanda.com" + }, + "category": "account management", + "description": "1. Sign in to your Trust Vault account at https://app.bitpandacustody.com/\n2. Visit the Snap management page at https://app.bitpandacustody.com/metamask-snap\n3. Connect the Snap to Trust Vault\n4. Add Subwallets to MetaMask", + "name": "TrustVault", + "sourceCode": "https://github.com/bitpanda-labs/trust-vault-snap", + "summary": "Connect Trust Vault wallets to MetaMask.", + "support": { + "contact": "https://www.bitpanda.com/en/bts-contact-us", + "faq": "https://custodysupport.bitpanda.com/hc/en-us/sections/16398205255196-MetaMask", + "knowledgeBase": "https://custodysupport.bitpanda.com/hc/en-us/articles/18830192748188-TrustVault-MetaMask-Snap-User-Guide" + }, + "website": "https://app.bitpandacustody.com" + }, + "versions": { + "0.1.11": { + "checksum": "VqDQKQSUmSWoh4zVTKver6aGjqrGbVik4Z1QpoS/Liw=" + }, + "1.0.0": { + "checksum": "RYAYosxly2V4GWk1KBOvZWOcl8t5iFw0Mkyi+vVqwVU=" + } + } + }, + "npm:@blockchain-lab-um/masca": { + "id": "npm:@blockchain-lab-um/masca", + "metadata": { + "audits": [ + { + "auditor": "Least Authority", + "report": "https://leastauthority.com/blog/audits/audit-of-masca-metamask-snap/" + } + ], + "author": { + "name": "Blockchain Lab:UM", + "website": "https://blockchain-lab.um.si/?lang=en" + }, + "category": "interoperability", + "description": "Masca enables everyone to build their decentralized identity by expanding MetaMask with functionalities to manage your identifiers and credentials (based on DIDs, VCs, and VPs). Store your credentials locally or on Ceramic Network and receive/share data over popular identity protocols, such as OID4VC and Polygon ID. This makes Masca a truly universal identity solution, perfect for Web3 explorers and non-Web3 native users. Any website can connect to Masca to access identity data, and dapp developers can already start with the integration!\n\nAfter installing the Snap, visit the website to manage your decentralized identity.", + "name": "Masca", + "screenshots": [ + "./images/@blockchain-lab-um/masca/1.png", + "./images/@blockchain-lab-um/masca/2.png", + "./images/@blockchain-lab-um/masca/3.png" + ], + "sourceCode": "https://github.com/blockchain-lab-um/masca", + "summary": "Manage decentralized identities, including DIDs and VCs.", + "support": { + "contact": "https://discord.gg/M5xgNz7TTF", + "knowledgeBase": "https://docs.masca.io/" + }, + "website": "https://masca.io/app" + }, + "versions": { + "1.2.2": { + "checksum": "0+ZdkgoSljBRrV6JARt/+Z2Amq30jiWb2EItGfihB30=" + }, + "1.3.0": { + "checksum": "8URAjwPCrIRShFA7aIRxryil+i8RCtc48pLcpIyD+PU=" + } + } + }, + "npm:@bobanetwork/snap-account-abstraction-keyring-hc": { + "id": "npm:@bobanetwork/snap-account-abstraction-keyring-hc", + "metadata": { + "audits": [ + { + "auditor": "Sayfer", + "report": "https://sayfer.io/audits/metamask-snap-audit-report-for-enya-labs/" + } + ], + "author": { + "name": "Enya Labs", + "website": "https://enya.ai/" + }, + "category": "account management", + "description": "Hybrid Compute enables you to seamlessly work with off-chain APIs in your smart contracts such as GenAI or Social Media. Hybrid Compute is fueled by Account Abstraction and allows for NextGen and Web2-like UX.\n\nHybridCompute™ propels the next-gen blockchain applications by seamlessly blending Web2 and Web3 data, bridging legacy systems with future innovations, and offering streamlined development, enduring security, and limitless potential, shaping decentralized applications across sectors.\n\nBy enabling the integration of dynamic external data such as market prices, weather conditions, or IoT sensor readings, this advancement empowers smart contracts to become potent tools automating processes across a multitude of industries, spanning finance, supply chain management, healthcare, and beyond.\n\nIntegrating HybridCompute™ into your projects is remarkably straightforward, requiring just a single line of code. Complexity is reduced, efficiency is amplified, and innovation knows no bounds.\n\nEnduring security is paramount with HybridCompute™, guaranteeing the confidentiality and integrity of your transaction data through robust encryption and L1 transaction security standards, instilling trust and confidence in your blockchain applications.\n\nFrom enhancing DeFi protocols with real estate assets to enabling NFT lending through advanced ML-based valuation models, its versatility empowers developers to drive innovation and expand decentralized ecosystems.\n\nMore documentation about Hybrid Compute: \nhttps://boba.network/hybridcompute/", + "name": "Boba Network Account Abstraction Keyring", + "screenshots": [ + "./images/@bobanetwork/snap-account-abstraction-keyring-hc/1.jpg", + "./images/@bobanetwork/snap-account-abstraction-keyring-hc/2.jpg", + "./images/@bobanetwork/snap-account-abstraction-keyring-hc/3.jpg" + ], + "sourceCode": "https://github.com/bobanetwork/snap-account-abstraction-keyring-hc", + "summary": "Seamlessly integrate off-chain APIs into your smart contracts with Hybrid Compute.", + "support": { + "contact": "mailto:kevin@enya.ai", + "faq": "https://snap.boba.network", + "knowledgeBase": "https://snap.boba.network" + }, + "website": "https://snap.boba.network/" + }, + "versions": { + "1.1.19": { + "checksum": "tGF4m1uHjh48/OZrQgxShsjdv5c7YoawcMsy2G1ktKM=" + }, + "1.1.22": { + "checksum": "9qgo0z8k1RKwxB3+B3a24qN3WnpZPFfRq7qpNmvAfAw=" + }, + "1.1.26": { + "checksum": "RtZsNLxOwozfqKyiaiWPeKxZX47G0a6VHiHUUxd2y/0=" + } + } + }, + "npm:@celestials-id/celestials-snap": { + "id": "npm:@celestials-id/celestials-snap", + "metadata": { + "author": { + "name": "Celestials", + "website": "https://celestials.id/" + }, + "category": "name resolution", + "description": "Adds support for verified Celestials \".i\" names to MetaMask.\n\nWhen sending in MetaMask, simply type a Celestials ID like ‘celestials.i’ to automatically resolve it to the linked address on your selected network.\nUse your Celestials ID across different protocols, verify your accounts for airdrops, and easily manage your tokens across all supported networks.", + "name": "Celestials", + "screenshots": [ + "./images/@celestials/celestials-snap/1.png", + "./images/@celestials/celestials-snap/2.png", + "./images/@celestials/celestials-snap/3.png" + ], + "sourceCode": "https://github.com/celestials-id/celestials-snap", + "summary": "Celestials.id resolver for Metamask", + "support": { + "contact": "https://discord.gg/celestials", + "faq": "https://celestials.id/snap#faq" + }, + "website": "https://celestials.id/snap" + }, + "versions": { + "1.0.2": { + "checksum": "eqJzfrja04/LPK8lI+7dAlEzAEB/d8DpxGPf2aOwUi0=" + }, + "1.1.0": { + "checksum": "QXtzKPW4okQlE1ZX6OgBk+CorzxCXvs5sCRn+UQeDOg=" + } + } + }, + "npm:@chainsafe/aleo-snap": { + "id": "npm:@chainsafe/aleo-snap", + "metadata": { + "audits": [ + { + "auditor": "Sayfer", + "report": "https://sayfer.io/audits/metamask-snap-audit-report-for-aleo/" + } + ], + "author": { + "name": "Provable", + "website": "https://provable.com/" + }, + "category": "interoperability", + "description": "Enables MetaMask users to interact with Aleo blockchain.", + "name": "Aleo", + "sourceCode": "https://github.com/ChainSafe/aleo-snap", + "summary": "Enables users to interact with the Aleo blockchain.", + "support": { + "contact": "https://discord.gg/xSAwrnCWcg" + } + }, + "versions": { + "1.2.0": { + "checksum": "DB8uCN9I0YY19mPwwsYrRyHoJbRXDNrs5cf/ZJX+Wmc=" + }, + "1.2.2": { + "checksum": "CaO1hCMftzS8NR608xuMe/kjXG7k+YtG6eq1Q6jAx7Q=" + } + } + }, + "npm:@chainsafe/polkadot-snap": { + "id": "npm:@chainsafe/polkadot-snap", + "metadata": { + "audits": [ + { + "auditor": "Sayfer", + "report": "https://sayfer.io/audits/metamask-snap-audit-report-for-polkadot/" + } + ], + "author": { + "name": "ChainSafe", + "website": "https://chainsafe.io/" + }, + "description": "Adds support for Polkadot to MetaMask. After installing the Snap, visit the website to manage your Polkadot account and assets.", + "name": "Polkadot Wallet", + "screenshots": [ + "./images/@chainsafe/polkadot-snap/1.png", + "./images/@chainsafe/polkadot-snap/2.png", + "./images/@chainsafe/polkadot-snap/3.png" + ], + "sourceCode": "https://github.com/ChainSafe/metamask-snap-polkadot", + "summary": "Add support for Polkadot.", + "support": { + "contact": "https://discord.gg/xSAwrnCWcg", + "faq": "https://github.com/ChainSafe/metamask-snap-polkadot/wiki/Example-dApp-Usage" + }, + "website": "https://polkadot.snap.chainsafe.io/" + }, + "versions": { + "0.11.3": { + "checksum": "Gbn0vViRFgsc8GeIcq27qoPjFh/5yneWntEQ2bpuvPU=" + } + } + }, + "npm:@chainsafe/webzjs-zcash-snap": { + "id": "npm:@chainsafe/webzjs-zcash-snap", + "metadata": { + "audits": [ + { + "auditor": "Hacken", + "report": "https://audits.hacken.io/zcash/dapp-zcash-snap-may2025/" + } + ], + "author": { + "name": "ChainSafe", + "website": "https://webzjs.chainsafe.dev/" + }, + "category": "interoperability", + "description": "WebZjs Zcash Snap is a MetaMask Snap that integrates full Zcash functionality directly into the MetaMask browser extension. It leverages the WebZjs JavaScript SDK to provide native support for Zcash’s privacy-preserving features in a web environment.\n\nKey features:\n\n- Native support for Zcash’s PCZT transactions\n\n- Secure in-browser syncing with the Zcash blockchain using a gRPC-web lightwallet proxy\n\n- Utilizes WebZjs, the first JavaScript SDK for Zcash, optimized for browser environments\n\nWebZjs uses the Zcash Snap for secure key handling", + "name": "Zcash Shielded Wallet", + "screenshots": [ + "./images/@chainsafe/webzjs-zcash-snap/1.png", + "./images/@chainsafe/webzjs-zcash-snap/2.png", + "./images/@chainsafe/webzjs-zcash-snap/3.png" + ], + "sourceCode": "https://github.com/ChainSafe/WebZjs/tree/main/packages/snap", + "summary": "WebZjs Zcash Snap is a MetaMask Snap that brings Zcash functionality directly into the MetaMask browser extension. WebZjs is the first JavaScript SDK for Zcash, enabling seamless integration of Zcash privacy features for web users.", + "support": { + "contact": "mailto:colin@chainsafe.io", + "faq": "mailto:info@chainsafe.io", + "knowledgeBase": "https://github.com/ChainSafe/WebZjs/tree/main/packages/snap" + }, + "website": "https://webzjs.chainsafe.dev/" + }, + "versions": { + "0.2.4": { + "checksum": "xO5sXGTa5PxZf1GG33xhD0ep5PLontAmeamjM3h+YFA=" + }, + "0.2.6": { + "checksum": "8Nspw4PiDnqHYCS32Dwpz7Ubo0J0ocBhXYPAvXM4Kew=" + }, + "0.3.0": { + "checksum": "WOy/9JeJPJ346afb8ZQnvY0N6fX58ci737rwSSfjtLs=" + } + } + }, + "npm:@clustersxyz/metamask-snap": { + "id": "npm:@clustersxyz/metamask-snap", + "metadata": { + "author": { + "name": "Clusters", + "website": "https://clusters.xyz" + }, + "category": "name resolution", + "description": "After installing the Snap, configure your cluster at https://clusters.xyz then use cluster names for sending and receiving native tokens, ERC20s, or NFTs", + "name": "Clusters", + "screenshots": [ + "./images/@clustersxyz/metamask-snap/1.png", + "./images/@clustersxyz/metamask-snap/2.png", + "./images/@clustersxyz/metamask-snap/3.png" + ], + "sourceCode": "https://github.com/clustersxyz/metamask-snap", + "summary": "View clusters names natively within your wallet.", + "support": { + "contact": "mailto:rye@clusters.xyz", + "faq": "https://github.com/clustersxyz/metamask-snap/wiki/FAQ", + "knowledgeBase": "https://github.com/clustersxyz/metamask-snap/wiki" + }, + "website": "https://clusters.xyz" + }, + "versions": { + "0.1.0": { + "checksum": "N96QmstXczcmjpAHYmAePDFt4Zpc2CUrHBumJs+ahIM=" + } + } + }, + "npm:@colabs-dev/name-resolver": { + "id": "npm:@colabs-dev/name-resolver", + "metadata": { + "author": { + "name": "CoLabs", + "website": "https://conft.app" + }, + "category": "name resolution", + "description": "coNFT Domain Names Snap integrates coNFT’s domain resolution into MetaMask, enabling users to send tokens to readable domain names rather than cumbersome addresses.\n\n- No more copy-pasting 0x… addresses—simply enter a registered domain like alice.linea or bob.sony.\n- Reduces errors, enhances convenience, and brings user-friendly domain-based transactions right into your MetaMask.\n\nLearn more at conft.app and explore how domain-based transfers can simplify your daily crypto interactions.", + "name": "Conft Domains", + "screenshots": [ + "./images/@colabs-dev/snap/1.png", + "./images/@colabs-dev/snap/2.png", + "./images/@colabs-dev/snap/3.png" + ], + "sourceCode": "https://github.com/Conft-dev/conft-snap", + "summary": "Replace cryptic addresses with domain names for easy token transfers in MetaMask.", + "support": { + "contact": "mailto:cnftspprt@gmail.com", + "faq": "https://docs.google.com/document/d/1ZfXigMXPUPOesCYQpzVfCXhPoBF6uyNLe1A9SaeiFoA/edit?usp=sharing", + "knowledgeBase": "https://docs.google.com/document/d/1kBpOoioniHHNKcjZ_JluGqWC5MyHWKtwvSj7_3uj5ps/edit?usp=sharing" + } + }, + "versions": { + "0.3.6": { + "checksum": "cK4lFDwnXVXWPx/Up70KRwOVSXMLfe86aBLSEX9EIJk=" + }, + "0.3.7": { + "checksum": "PAe6xX5jfqaxtRw8/tTxEDkB6lj9FcW2Z/DCttgix7U=" + }, + "0.3.8": { + "checksum": "6IkxDk97x3m3oqwFfD6xhjv+oWm3eew1To2qNKF9qsk=" + } + } + }, + "npm:@consensys/starknet-snap": { + "id": "npm:@consensys/starknet-snap", + "metadata": { + "audits": [ + { + "auditor": "Cobalt", + "report": "https://drive.google.com/file/d/1Q-Ee7QewVUoAx--x7w_T7WQcvc5MHqVr/view" + }, + { + "auditor": "Consensys Diligence", + "report": "https://consensys.io/diligence/audits/2023/06/metamask/partner-snaps-starknetsnap/" + } + ], + "author": { + "name": "Consensys", + "website": "https://consensys.io/" + }, + "category": "interoperability", + "description": "The Starknet Snap is your gateway to the Starknet ecosystem, enabling you to deploy accounts, execute transactions, and interact with Starknet smart contracts. This Snap allows you to seamlessly bridge tokens, swap assets, lend/borrow, provide liquidity, and even claim your Starknet ID—all from the convenience of MetaMask.\n\nWhether you’re exploring or building on Starknet, the Snap simplifies your connection to Starknet activities. Developers can refer to our Knowledge Base to learn how to create MetaMask-compatible Starknet dapps.\n\nGet started with these resources:\n\n- Companion dapp: Set up your account, check balances, and send tokens: https://snaps.consensys.io/starknet/\n- StarkGate: https://starkgate.starknet.io/\n- AVNU: https://www.avnu.fi/\n- Fibrous: https://app.fibrous.finance/\n- Starknet ID: https://app.starknet.id/\n- Nostra: https://app.nostra.finance/\n\nThe compatibility list is continuously growing, expanding your access to Starknet’s vibrant and evolving ecosystem. Simplify your journey with the Starknet Snap today!", + "name": "Starknet", + "screenshots": [ + "./images/@consensys/starknet-snap/1.png", + "./images/@consensys/starknet-snap/2.png", + "./images/@consensys/starknet-snap/3.png" + ], + "sourceCode": "https://github.com/Consensys/starknet-snap", + "summary": "Deploy Starknet accounts, make transactions, and interact with Starknet dapps.", + "support": { + "contact": "https://discord.gg/hYpHRjK", + "knowledgeBase": "https://docs.metamask.io/wallet/how-to/use-non-evm-networks/starknet/" + }, + "website": "https://snaps.consensys.io/starknet" + }, + "versions": { + "3.1.0-staging": { + "checksum": "FqZpSPhTq0xZ1ak13RTeavyaiDXLeS1pe7F/65wUPTo=" + }, + "4.2.0": { + "checksum": "TV3uoZzP0GFvDHXpFlfoMlOmyI4CESVZtN+znkRjxxA=" + } + } + }, + "npm:@cosmsnap/snap": { + "id": "npm:@cosmsnap/snap", + "metadata": { + "audits": [ + { + "auditor": "OtterSec", + "report": "https://ottersec.notion.site/Cosmos-Snap-ef7a8ccde39948e7bece99e86239ae6b" + } + ], + "author": { + "name": "Mystic Labs", + "website": "https://www.mysticlabs.xyz/" + }, + "category": "interoperability", + "description": "Cosmos Extension aims to add full support of MetaMask, a highly popular Ethereum wallet, to all Cosmos SDK blockchains, potentially opening the door to over 30 million Ethereum users and stimulating growth for every project in the Cosmos ecosystem.\n\nAfter installing the Snap, visit the website to manage your Cosmos account.", + "name": "Cosmos Extension", + "sourceCode": "https://github.com/cosmos/snap", + "summary": "Adds Cosmos support and capabilities.", + "support": { + "contact": "mailto:help@mysticlabs.xyz", + "faq": "https://metamask.mysticlabs.xyz/faq", + "knowledgeBase": "https://metamask.mysticlabs.xyz/general" + }, + "website": "http://metamask.mysticlabs.xyz/" + }, + "versions": { + "0.1.20": { + "checksum": "Ka5d45bzE3iPt6FchypG0ffAWNOJjFaIxzNNl3RcpPA=" + }, + "0.1.22": { + "checksum": "iy7sFNnki+rvhkmOaWGfKE5ZiaEqOYkuE1AVb5dEiN0=" + } + } + }, + "npm:@coti-io/coti-snap": { + "id": "npm:@coti-io/coti-snap", + "metadata": { + "author": { + "name": "COTI", + "website": "https://coti.io" + }, + "category": "interoperability", + "description": "1. AES Key Management: Securely store and manage AES keys in MetaMask\n2. Confidential Tokens: View and manage confidential ERC-20 tokens\n3. NFT Support: Handle confidential NFTs with metadata\n4. Token Operations: Transfer and deposit tokens\n5. Secure Storage: Encrypted storage within MetaMask's secure environment\n6. COTI Network: Native support for COTI's confidential blockchain", + "name": "COTI", + "sourceCode": "https://github.com/coti-io/coti-snap", + "summary": "Onboard your network AES and use it to encrypt and decrypt network data", + "support": { + "contact": "mailto:dev@coti.io", + "knowledgeBase": "https://docs.coti.io/coti-documentation/build-on-coti/tools/coti-metamask-snap" + }, + "website": "https://metamask.coti.io/" + }, + "versions": { + "1.0.52-eeccdb": { + "checksum": "frm3bxp1Wf6YRW+fNZo8MaF/DkpV2bAjyB3qwHZN6/Y=" + } + } + }, + "npm:@cubist-labs/cubesigner-snap": { + "id": "npm:@cubist-labs/cubesigner-snap", + "metadata": { + "audits": [ + { + "auditor": "Veridise", + "report": "https://f8t2x8b2.rocketcdn.me/wp-content/uploads/2023/09/VAR-Cubist-Snap4.pdf" + } + ], + "author": { + "name": "Cubist", + "website": "https://cubist.dev/" + }, + "category": "interoperability", + "description": "A Snap for Snap- and dapp-developers to safely manage EVM, Bitcoin, Solana, and other keys on behalf of MetaMask end users. Use the CubeSigner API to generate keys and sign transactions completely within server-side secure hardware. Your users' keys are never exposed in memory to attackers, and there's no risk of accidentally leaking keys. Visit https://cubist.dev/cubesigner-snap to get started.", + "name": "CubeSigner", + "sourceCode": "https://github.com/cubist-labs/CubeSigner-Snap", + "summary": "Manage EVM/non-EVM keys in secure hardware.", + "support": { + "contact": "https://discord.gg/Aw46GsGSy7", + "faq": "https://github.com/cubist-labs/CubeSigner-Snap/discussions/2" + }, + "website": "https://cubist.dev/cubesigner-snap" + }, + "versions": { + "0.2.13": { + "checksum": "AvyU4UjF8b56fVe5TuVg2OowAV7j3YwwRJ5tuz/Qpr8=" + } + } + }, + "npm:@cypher-laboratory/alicesring-snap": { + "id": "npm:@cypher-laboratory/alicesring-snap", + "metadata": { + "author": { + "name": "Cypher Lab", + "website": "https://www.cypherlab.org/" + }, + "category": "interoperability", + "description": "This Snap utilizes the ring signature implementation from Cypher Lab to privately sign messages. The signature can then be verified by any third party without revealing the actual signer.\n\nIt supports two types of ring signatures: Spontaneous Anonymous Group signatures (SAG) and Linkable Spontaneous Anonymous Group signatures (LSAG). If you are using the SAG scheme, no one will ever know that you signed the message. Use the LSAG scheme if you want third parties to know you signed multiple messages without revealing your identity.\n\nFeatures:\n- Create an Ethereum account\n- Import an Ethereum account using a mnemonic\n- Export the snap addresses\n- Sign a message using SAG and LSAG with the snap\n- Verify a SAG or LSAG signature\n\nWhat are Ring Signatures?\nRing signatures are a type of digital signature that allows a group of users to sign a message anonymously. Unlike traditional digital signatures uniquely linked to one user, ring signatures obscure the actual author by linking multiple possible signers together in a “ring.”\n\nRing signatures preserve privacy and anonymity by obscuring the specific originator of a message. By grouping possible signers in a “ring,” there is no way to definitively pinpoint the actual individual who authored the content. This prevents transactions from being easily traced back to a single user. The larger the ring of possible signers, the more anonymity is provided to the real originator.\n\nRing signatures have been known to cryptographers for several years, but their use within the blockchain ecosystem has been limited. The Monero blockchain is noted as one of the first to employ this cryptographic solution at the protocol level. However, there is currently no complete, robust, and audited implementation of ring signatures adapted for the browser environment. This is where we come in!\n\nUseful links:\n- More about ring signatures: https://people.csail.mit.edu/rivest/pubs/RST01.pdf\n- SAG repository: https://github.com/Cypher-Laboratory/Alice-s-Ring-SAG-TS\n- LSAG repository: https://github.com/Cypher-Laboratory/Alice-s-Ring-LSAG-TS\n- Toolkit for integrating with dapps: https://github.com/Cypher-Laboratory/Alice-s-Ring-snap-toolkit", + "name": "Ring Signatures", + "screenshots": [ + "./images/@cypher-laboratory/alicesring-snap/1.jpg", + "./images/@cypher-laboratory/alicesring-snap/2.jpg", + "./images/@cypher-laboratory/alicesring-snap/3.jpg" + ], + "sourceCode": "https://github.com/Cypher-Laboratory/Alice-s-Ring-snap", + "summary": "Use SAG and LSAG signatures for privacy-enhanced dapps.", + "support": { + "contact": "https://discord.gg/jUEkpw5zyH", + "faq": "https://github.com/Cypher-Laboratory/Alice-s-Ring-snap/blob/main/README.md#faq" + } + }, + "versions": { + "0.3.10": { + "checksum": "LJdsAPDrD79oY8rvLZ22Ju44HWj6UJgk8Y7QlsV43c4=" + } + } + }, + "npm:@d3-inc/d3connect-snap": { + "id": "npm:@d3-inc/d3connect-snap", + "metadata": { + "author": { + "name": "D3", + "website": "https://d3.inc/" + }, + "category": "name resolution", + "description": "The D3 Connect Snap is a MetaMask extension that enables custom name resolution using D3 Connect. Once installed, you can use any D3 name (e.g. d3connect.core) instead of a wallet address to send/receive crypto in MetaMask.", + "name": "D3 Connect", + "screenshots": [ + "./images/@d3-inc/d3connect-snap/1.png", + "./images/@d3-inc/d3connect-snap/2.png", + "./images/@d3-inc/d3connect-snap/3.png" + ], + "sourceCode": "https://github.com/d3-inc/d3-connect-snap", + "summary": "The D3 Connect Snap is a MetaMask extension that enables custom name resolution using D3 Connect", + "support": { + "contact": "https://discord.com/invite/D3inc", + "knowledgeBase": "https://docs.d3.app/integrating-d3-infrastructure" + } + }, + "versions": { + "0.3.3": { + "checksum": "hCYbcjeRdHViQAQubfoEZIFopHjoiF5bX03h8BolP8s=" + } + } + }, + "npm:@doggyfi-official/kobosu": { + "id": "npm:@doggyfi-official/kobosu", + "metadata": { + "audits": [ + { + "auditor": "Sayfer", + "report": "https://sayfer.io/audits/metamask-snap-audit-report-for-doggyfi/" + } + ], + "author": { + "name": "The Epiphyte Corporation", + "website": "https://theepiphytecorporation.xyz" + }, + "category": "interoperability", + "description": "DoggyFi brings Dogecoin functionality directly into your MetaMask wallet. With this Snap, you can interact with the Dogecoin blockchain seamlessly.\n\nFeatures:\n\n- Generate a single Dogecoin address derived from your MetaMask secret recovery phrase.\n- Check the balance of your Dogecoin address.\n- View the list of transactions associated with your address.\n- Send DOGE from your address to another address.\n- Send DRC-20 tokens from your address to another address.\n- Send Dunes from your address to another address.\n- Mint DRC-20 tokens.\n- Mint transfer inscriptions for DRC-20 tokens.\n- Deploy DRC-20 tokens to the network.\n- Send Doginals to specified addresses.\n- Inscribe Doginals onto the Dogecoin blockchain.\n- Open Dunes by deploying open dune transactions.\n\nHow to Use:\n\n1. Head to https://doggyfi.xyz/snap and connect your MetaMask wallet. You will be prompted to install the Snap.\n2. Grant Permissions: When prompted, grant the required permissions to enable full functionality.\n3. Interact with Dogecoin: Use your MetaMask wallet to interact with the Dogecoin network using the features listed above.\n\nFor more detailed information and tutorials, please visit the DoggyFi Snap README: https://github.com/DoggyFiOfficial/dogecoin-snap-public/blob/main/README.md.\n\nFor Developers:\n\n- Utilize the exposed RPC API methods to build DApps or integrations that leverage Dogecoin within MetaMask: https://github.com/DoggyFiOfficial/dogecoin-snap-public/tree/main?tab=readme-ov-file#methods.", + "name": "kobosu", + "sourceCode": "https://github.com/DoggyFiOfficial/dogecoin-snap-public", + "summary": "Trade and manage dogecoin, DRC-20, Dunes, Doginals and more", + "support": { + "contact": "https://discord.gg/kyc4rvSe7A", + "knowledgeBase": "https://github.com/DoggyFiOfficial/dogecoin-snap-public/blob/main/README.md" + }, + "website": "https://doggyfi.xyz/snap" + }, + "versions": { + "0.1.10": { + "checksum": "lljEc08Brhupw9DmWa8TaiSfGiBlBFwqt8WSMvOY2fQ=" + }, + "0.1.9": { + "checksum": "beuDKypWeXHUJN1Znnmv7zfDVSqjKWdkJfrxhalpT9M=" + } + } + }, + "npm:@dotmundo-io/dotmundo-resolution-snap": { + "id": "npm:@dotmundo-io/dotmundo-resolution-snap", + "metadata": { + "author": { + "name": "Dotmundo", + "website": "https://dotmundo.io/" + }, + "category": "name resolution", + "description": "You no longer have to share your long and complex MetaMask wallet address to send and receive crypto assets anymore. With the Dotmundo Snap you can replace your MetaMask wallet addresses with your own easy-to-share Web3 domain.\n\nThe Dotmundo Snap makes it easy for both new and experienced Web3 users to seamlessly resolve their Web3 domain to their MetaMask wallet addresses in a user-friendly way.\n\nAfter installing the Dotmundo Snap, you can immediately send and receive cryptocurrencies with your Web3 domains!\n\nPlease note: the Dotmundo Snap is compatible from MetaMask version 12.0.0 and higher, and with Web3 domains that are registered and minted via official Dotmundo partner registrars. Please check here for more info about our MetaMask Snap and official partners.", + "name": "Dotmundo", + "screenshots": [ + "./images/@dotmundo-io/dotmundo-resolution-snap/1.jpg", + "./images/@dotmundo-io/dotmundo-resolution-snap/2.jpg", + "./images/@dotmundo-io/dotmundo-resolution-snap/3.jpg" + ], + "sourceCode": "https://gitlab.com/dotmundo/dotmundo-resolution-snap", + "summary": "Replace your wallet address with your domain.", + "support": { + "contact": "https://dotmundo.io/dotmundo-snap.php#contact", + "faq": "https://dotmundo.io/dotmundo-snap.php#faq", + "knowledgeBase": "https://dotmundo.io/dotmundo-snap.php" + }, + "website": "https://dotmundo.io/dotmundo-snap.php" + }, + "versions": { + "1.0.4": { + "checksum": "XzTlsW99C8qaMNNRqAYTysvlzhjZK6kb+6C9fyAHx7E=" + } + } + }, + "npm:@drift-labs/snap-solana": { + "id": "npm:@drift-labs/snap-solana", + "metadata": { + "audits": [ + { + "auditor": "OtterSec", + "report": "https://ottersec.notion.site/Drift-Snap-8575cd9031ae466d87d3b6a1c0afa028" + } + ], + "author": { + "name": "Drift Protocol", + "website": "https://www.drift.trade/" + }, + "description": "Connect by Drift allows MetaMask to seamlessly connect to Drift and function as a Solana wallet. Users of the Snap can connect to Drift, bridge their Ethereum assets to Solana, and trade on Drift all from within MetaMask.\n\nAfter installing the Snap, visit the website and click Launch App to try it. Please note: Drift may not be available in your region.", + "name": "Connect by Drift", + "screenshots": [ + "./images/@drift-labs/snap-solana/1.png", + "./images/@drift-labs/snap-solana/2.png", + "./images/@drift-labs/snap-solana/3.png" + ], + "sourceCode": "https://github.com/drift-labs/snap-solana", + "summary": "Interact natively with Solana applications.", + "support": { + "contact": "https://discord.com/invite/fMcZBH8ErM" + }, + "website": "https://app.drift.trade/" + }, + "versions": { + "0.2.1": { + "checksum": "YUVSrvkkDIlTTdFwuWB+5SrY4OETUQefAt9oyt5pYag=" + }, + "0.2.3": { + "checksum": "rAMiFZ+6Cid0YmQp01E7jWBz04ELul5WmSvaNBpXE40=" + }, + "0.3.0": { + "checksum": "aBFo5H+O8XP+U6Q39mxbm6oLXV1IhsezUmbwMltHLBQ=" + } + } + }, + "npm:@enjin-io/snap": { + "id": "npm:@enjin-io/snap", + "metadata": { + "audits": [ + { + "auditor": "Sayfer", + "report": "https://sayfer.io/audits/metamask-snap-audit-report-for-enjin/" + } + ], + "author": { + "name": "Enjin", + "website": "http://enjin.io" + }, + "category": "interoperability", + "description": "Enjin Snap enhances the MetaMask experience by integrating features specifically designed for the Enjin blockchain. Users can easily manage their NFTs and digital assets with the following capabilities:\n- NFT Management: View, send, and receive NFTs within the Enjin ecosystem.\n- Blockchain Interactions: Execute transactions on the Enjin blockchain without leaving MetaMask.\n- User-Friendly Interface: A streamlined interface that simplifies asset management.\n\nTo get started with Enjin Snap, follow these steps:\n1. Install MetaMask if you haven't already.\n2. Access Enjin Snap through the MetaMask Snaps interface.\n3. Connect your wallet to the Enjin network.\n4. Begin managing your NFTs and assets seamlessly.\n\nFor more information, visit:\nEnjin Snap Support (https://support.enjin.io/hc/en-gb/articles/23053873072274-Enjin-Snap)\nConnecting via MetaMask (https://support.nft.io/hc/en-gb/articles/23654979839378-How-to-Connect-via-MetaMask-Enjin-Snap)\nGitHub Repository (https://github.com/enjin/metamask-snap-enjin)", + "name": "Enjin Connect", + "screenshots": [ + "./images/@enjin-io/snap/1.jpg", + "./images/@enjin-io/snap/2.jpg", + "./images/@enjin-io/snap/3.jpg" + ], + "sourceCode": "https://github.com/enjin/metamask-snap-enjin", + "summary": "Seamlessly manage NFTs and blockchain assets within the Enjin ecosystem", + "support": { + "contact": "mailto:support@enjin.io", + "faq": "https://support.enjin.io/hc/en-gb/articles/23053873072274-Enjin-Snap", + "knowledgeBase": "https://support.nft.io/hc/en-gb/articles/23654979839378-How-to-Connect-via-MetaMask-Enjin-Snap" + }, + "website": "https://nft.io/" + }, + "versions": { + "0.1.2": { + "checksum": "PR5M+x5x7vlXA5Jh53a7JSu1Z1EbzyXsyT0Ev3iwRCI=" + } + } + }, + "npm:@ethereum-attestation-service/eas-metamask-snap": { + "id": "npm:@ethereum-attestation-service/eas-metamask-snap", + "metadata": { + "audits": [ + { + "auditor": "SlowMist", + "report": "https://github.com/slowmist/Knowledge-Base/blob/master/open-report-V2/blockchain-application/SlowMist%20Audit%20Report%20-%20EAS%20Snap_en-us.pdf" + } + ], + "author": { + "name": "EAS", + "website": "https://attest.sh/" + }, + "category": "transaction insights", + "description": "The EAS Snap enhances the transparency and security of EAS attestations signed with your MetaMask. It decodes attestation data, allowing users to clearly understand and verify the details before confirming a transaction.\n\nWhy It Matters\nWhen signing attestations with MetaMask, the data often appears in a hexadecimal format, which is not human-readable. The EAS Snap converts this data into a clear, readable format. This ensures you're fully aware of the attestation's details, mitigating the risk of unintentional or malicious signings.\n\nKey Features\n- Attestation Decoding: Utilizes SchemaEncoder from the EAS SDK to decode attestation data, presenting it in a readable format.\n- Transaction Data Parsing: The snap parses Ethereum transaction data to identify if it is related to an EAS attestation, using ethers library.\n- Dynamic Content Rendering: It dynamically renders transaction details in the MetaMask UI, including schema, recipient, reference UID, expiration time, and revocability status, offering users a complete overview of the attestation they are about to sign.\n- Time Formatting: Utilizes dayjs with extended formats to display expiration times in a user-friendly manner.\n- GraphQL Integration: Communicates with EAS's GraphQL endpoint to fetch and display the schema associated with the attestation.\n- Data Decoding and Display: Decodes and displays each piece of attestation data using the fetched schema, allowing users to understand the specifics of what they are attesting.\n\nAfter installing the Snap, you can view insights in the transaction flow while interacting with an EAS contract. To explore EAS, try EAS Scan: https://sepolia.easscan.org/", + "name": "EAS", + "sourceCode": "https://github.com/ethereum-attestation-service/eas-metamask-snap", + "summary": "Decode attestation transaction data.", + "support": { + "contact": "https://t.me/+EcynOr0iFu03MTYx", + "faq": "https://docs.attest.sh/docs/developer-tools/metamask-snap/eas-snap-faq", + "knowledgeBase": "https://docs.attest.sh/docs/developer-tools/metamask-snap/" + } + }, + "versions": { + "0.1.6": { + "checksum": "5NJCG0Enpqd9CMBLk0999tDaT4PViEAE+KwN9hkE51s=" + } + } + }, + "npm:@fioprotocol/fio-wallet-snap": { + "id": "npm:@fioprotocol/fio-wallet-snap", + "metadata": { + "audits": [ + { + "auditor": "Sayfer", + "report": "https://sayfer.io/audits/metamask-snap-audit-report-for-fio/" + } + ], + "author": { + "name": "FIO Protocol", + "website": "https://fio.net/" + }, + "category": "name resolution", + "description": "Connect with MetaMask to FIO Protocol App to register your FREE custom FIO Handle and map it to all your crypto public addresses.\n\nFIO Protocol makes crypto easier. You can replace all your public wallet addresses with a single, secure, customizable handle and make any transaction, on any chain, as easy as sending an email. FIO Handles work across many leading wallets and exchanges.\n\nWith the FIO Protocol App you can also send and receive crypto payment requests and even sign NFTs to assert your ownership. FIO Handles are now supported inside MetaMask.\n\nHead over to FIO App to register your FREE FIO Handle: https://app.fio.net/\n\nPlease note: FIO handles are only compatible with MetaMask Extension version 12.4.2 and up. Please make sure you are on the latest version of the MetaMask Extension before adding this Snap to MetaMask.", + "name": "FIO Wallet", + "sourceCode": "https://github.com/fioprotocol/fio-wallet-snap", + "summary": "Register a custom FIO Handle and map it to crypto public addresses.", + "support": { + "contact": "https://help.fio.net", + "faq": "https://app.fio.net/metamask" + }, + "website": "https://fio.net/" + }, + "versions": { + "1.0.2": { + "checksum": "b6Z0SYw5x5yYEYu1TiguPRbRV/izLsjK0FFJ/+strwg=" + }, + "1.1.1": { + "checksum": "Zif5f5FHoyFlCBY7PPD5+dDfa9VKFjRraKH85m71HJk=" + } + } + }, + "npm:@fort-major/msq": { + "id": "npm:@fort-major/msq", + "metadata": { + "audits": [ + { + "auditor": "Consensys Diligence", + "report": "https://consensys.io/diligence/audits/2024/03/msq-snap/" + } + ], + "author": { + "name": "Fort Major", + "website": "https://github.com/fort-major" + }, + "category": "interoperability", + "description": "Seamless integration with MetaMask: Enables users to interact with the Internet Computer (ICP) blockchain directly from their MetaMask wallet.\n\nEnhanced security: Implements robust security measures to protect users from scams and malicious activities.\n\nImproved privacy: Utilizes a 'scoped identity model' to protect user identities and transaction details.\n\nUser-friendly interface: Offers a straightforward and intuitive experience for managing ICRC-1 assets, making blockchain interactions simpler.\n\nAutomatic installation: MSQ is installed automatically within MetaMask during the Snap installation, requiring no additional setup from the user.\n\nCommunity engagement: Active Discord community for user support, feedback, and ongoing development discussions.", + "name": "MSQ - Safe ICP Wallet", + "screenshots": [ + "./images/@fort-major/msq/1.png", + "./images/@fort-major/msq/2.png", + "./images/@fort-major/msq/3.png" + ], + "sourceCode": "https://github.com/fort-major/msq", + "summary": "Use your wallet to interact with the Internet Computer blockchain.", + "support": { + "contact": "https://discord.gg/RMxyF5Huhs", + "faq": "https://icp.msq.tech", + "knowledgeBase": "https://discord.gg/RMxyF5Huhs" + }, + "website": "https://icp.msq.tech/" + }, + "versions": { + "0.3.4": { + "checksum": "+KJdgDUrocpPB1lluac9CYuOYAzi0K37d2uB2ZGLowk=" + } + } + }, + "npm:@galactica-net/snap": { + "id": "npm:@galactica-net/snap", + "metadata": { + "audits": [ + { + "auditor": "Sayfer", + "report": "https://sayfer.io/audits/metamask-snap-audit-report-for-galactica/" + } + ], + "author": { + "name": "Galactica Network", + "website": "https://galactica.com/" + }, + "category": "interoperability", + "description": "The Galactica.com ZK Vault Snap holds zero-knowledge certificates issued on Galactica Network in the user's wallet, allowing self custody of your data. It generates zero-knowledge proofs inside MetaMask to selectively disclose statements on-chain while keeping personal data private. For example, you can import a KYC certificate and privately prove your authenticity and compliance to a smart contract.\n\n\n\nAfter installing the Snap, visit https://app.galactica.com/ to get started.", + "name": "Galactica ZK Vault", + "screenshots": [ + "./images/@galactica-net/snap/1.jpg", + "./images/@galactica-net/snap/2.jpg", + "./images/@galactica-net/snap/3.jpg" + ], + "sourceCode": "https://github.com/Galactica-corp/galactica-monorepo/tree/main/packages/snap", + "summary": "Manages zero-knowledge certificates on Galactica.com - own your identity, not just your assets", + "support": { + "contact": "https://discord.gg/galactica", + "knowledgeBase": "https://docs.galactica.com/" + }, + "website": "https://app.galactica.com/" + }, + "versions": { + "1.0.3": { + "checksum": "AHgbUp1j76tTsoLLDTm3l3A+y0+qrYtGr3gCU+H/zHg=" + } + } + }, + "npm:@gobob/bob-snap": { + "id": "npm:@gobob/bob-snap", + "metadata": { + "audits": [ + { + "auditor": "Cure53", + "report": "https://github.com/bob-collective/bob-snap/blob/master/docs/audit.pdf" + } + ], + "author": { + "name": "BOB", + "website": "https://www.gobob.xyz/" + }, + "category": "interoperability", + "description": "The BOB Bitcoin Snap unlocks Bitcoin, ordinals, BRC20, and more to MetaMask users.\n\nThe BOB Bitcoin Snap allows users to:\n\n- Receive and transfer BTC on Bitcoin\n\n- Mint ordinals and BRC20 on Bitcoin\n\n- Transfer ordinals, BRC20, runes, and other inscriptions", + "name": "BOB", + "sourceCode": "https://github.com/bob-collective/bob-snap", + "summary": "Receive and transfer BTC, and manage ordinals including BRC20.", + "support": { + "contact": "mailto:contact@gobob.xyz", + "faq": "https://docs.gobob.xyz/docs/build/how-to/metamask-snap", + "knowledgeBase": "https://docs.gobob.xyz/docs/build/how-to/metamask-snap" + }, + "website": "https://www.gobob.xyz/" + }, + "versions": { + "2.0.11": { + "checksum": "UNNvSkasqOeujfTzwe0FTpswTufzXIgIV9or3UlkSi4=" + }, + "2.2.1": { + "checksum": "HHxMGzE7qqYdjyYNB6L+2droaS0ElKFS1CIyDl4pIo0=" + }, + "2.2.2": { + "checksum": "tUeqZ/Wk3Ot1VfrXoGa8QVw1dtLO3Sm1kQ3/3+UVjIk=" + } + } + }, + "npm:@goplus/riskdetect-snap": { + "id": "npm:@goplus/riskdetect-snap", + "metadata": { + "audits": [ + { + "auditor": "SlowMist", + "report": "https://github.com/MetaMask/snaps-registry/files/12554521/SlowMist.Audit.Report.-.Riskdetect-snap.1.pdf" + } + ], + "author": { + "name": "GoPlus Security", + "website": "https://gopluslabs.io/" + }, + "category": "transaction insights", + "description": "A MetaMask Snap that can detect risks of user assets, supported by GoPlus Security.\n\nAfter installing the Snap, visit the website to connect your account and run the detection.", + "name": "Assets Risk Detection", + "sourceCode": "https://github.com/GoPlusSecurity/riskdetect-snap", + "summary": "Detect risks of user assets with GoPlus Security.", + "support": { + "contact": "mailto:service@gopluslabs.io", + "faq": "https://snaps.gopluslabs.io/faq/" + }, + "website": "https://snaps.gopluslabs.io/" + }, + "versions": { + "0.1.8": { + "checksum": "T71m8iWOll6TqZuk9zqeV+JxvhBZSn4SbMBkifAKPgU=" + } + } + }, + "npm:@greymass/eos-wallet": { + "id": "npm:@greymass/eos-wallet", + "metadata": { + "audits": [ + { + "auditor": "Cure53", + "report": "https://cure53.de/pentest-report_antelope-snap.pdf" + } + ], + "author": { + "name": "Greymass", + "website": "https://www.greymass.com/" + }, + "category": "interoperability", + "description": "The EOS Wallet enables you to create an EOS account, sign transactions and interact with EOS smart contracts. After installing the EOS Wallet, visit the companion dapp, Unicove, to create and manage your EOS account. On Unicove you can stake EOS, participate in the RAM market and more. Dapp compatibility is expected to grow, which will expand access to the EOS Ecosystem.\n\nNeed any additional information or support? Feel free to visit our knowledge base or reach out to our support team (support@greymass.com). If you're a developer and would like to support MetaMask in your EOS application, please check out Wharf and the MetaMask Wallet Plugin.\n\nLinks:\n Unicove: https://unicove.com/en/eos/metamask\n Knowledge Base: https://greymass.freshdesk.com/a/solutions/categories/72000352473/\n Wharf: https://wharfkit.com/\n MetaMask Wallet Plugin: https://github.com/wharfkit/wallet-plugin-metamask", + "name": "EOS Wallet", + "sourceCode": "https://github.com/greymass/antelope-snap/tree/eos", + "summary": "Create and manage EOS accounts, sign transactions, and interact with EOS smart contracts.", + "support": { + "contact": "mailto:support@greymass.com", + "faq": "https://unicove.com/en/eos/metamask", + "knowledgeBase": "https://greymass.freshdesk.com/support/solutions/categories/72000352473" + }, + "website": "https://unicove.com/" + }, + "versions": { + "1.1.0": { + "checksum": "05RXQ66dkZzU6uIeHBWC8PwII1X8voKdZuCDXfrrCew=" + } + } + }, + "npm:@hashgraph/hedera-identify-snap": { + "id": "npm:@hashgraph/hedera-identify-snap", + "metadata": { + "audits": [ + { + "auditor": "Cure53", + "report": "https://cure53.de/pentest-report_hedera-snap_v3.pdf" + } + ], + "author": { + "name": "Tuum Technologies", + "website": "https://www.tuum.tech/" + }, + "category": "interoperability", + "description": "Identify Snap extends MetaMask's features by adding support for Decentralized Identifiers (DIDs) and Verifiable Credentials (VCs), thereby turning MetaMask into a DID wallet.\n\nIdentify Snap supports 3 DID methods - did:pkh, did:key and did:hedera and users can choose between the 3 methods. More methods will be supported in the future.\n\nExamples of use cases for Identify Snap include:\n- Secure access control: Identify Snap can be employed for authentication and authorization purposes, granting users secure access to various online services and resources based on their verifiable credentials.\n- Credential management: Users can create, manage, and verify their credentials, such as educational qualifications or professional certifications, with the added convenience and security provided by the MetaMask extension.\n- Decentralized identity management: Identify Snap empowers users to establish and maintain control over their digital identities through the use of DIDs and VCs, thus ensuring privacy, security, and reduced reliance on centralized authorities.", + "name": "Identify", + "screenshots": [ + "./images/@hashgraph/hedera-identify-snap/1.png", + "./images/@hashgraph/hedera-identify-snap/2.png", + "./images/@hashgraph/hedera-identify-snap/3.png" + ], + "sourceCode": "https://github.com/hashgraph/hedera-metamask-snaps/tree/main/packages/hedera-identify-snap/packages/snap", + "summary": "Turn MetaMask into a DID wallet. Support for Decentralized Identifiers (DIDs) and Verifiable Credentials (VCs)", + "support": { + "contact": "https://discord.gg/BsDqX3fhq4", + "faq": "https://docs.tuum.tech/identify/basics/faqs", + "knowledgeBase": "https://docs.tuum.tech/identify" + }, + "website": "https://docs.tuum.tech/identify/identify-snap/snap-rpc-apis/basic-apis/hello#live-demo-on-codepen" + }, + "versions": { + "0.2.1": { + "checksum": "G0wvMOcnrXDw3J6hZkGXH4p/xSgF9axYIW16wkdFAf0=" + } + } + }, + "npm:@hashgraph/hedera-wallet-snap": { + "id": "npm:@hashgraph/hedera-wallet-snap", + "metadata": { + "audits": [ + { + "auditor": "Cure53", + "report": "https://cure53.de/pentest-report_tuum-hedera-snap.pdf" + } + ], + "author": { + "name": "Tuum Technologies", + "website": "https://www.tuum.tech/" + }, + "category": "interoperability", + "description": "Hedera Wallet unlocks wallet functionality via MetaMask that any other apps can interact with, thereby turning MetaMask into a native Hedera wallet without relying on Hedera JSON-RPC Relay.", + "name": "Hedera Wallet", + "screenshots": [ + "./images/@hashgraph/hedera-wallet-snap/1.png", + "./images/@hashgraph/hedera-wallet-snap/2.png", + "./images/@hashgraph/hedera-wallet-snap/3.png" + ], + "sourceCode": "https://github.com/hashgraph/hedera-metamask-snaps", + "summary": "Add native Hedera support to your wallet.", + "support": { + "contact": "https://discord.gg/BsDqX3fhq4", + "faq": "https://docs.tuum.tech/hedera-wallet-snap/basics/faqs", + "knowledgeBase": "https://docs.tuum.tech/hedera-wallet-snap" + }, + "website": "https://pulse.tuum.tech/" + }, + "versions": { + "0.6.2": { + "checksum": "SXhsFNEi+/LvBBBvccQYhlqtbuQgcADUyWwOcl26WIE=" + } + } + }, + "npm:@hathor/snap": { + "id": "npm:@hathor/snap", + "metadata": { + "audits": [ + { + "auditor": "Sayfer", + "report": "https://sayfer.io/audits/metamask-snap-audit-report-for-hathor/" + } + ], + "author": { + "name": "Hathor Labs", + "website": "https://hathor.network/" + }, + "category": "interoperability", + "description": "Features: \n\n - Send and receive HTR and custom tokens \n - Create Token \n - Create Nano Contract \n - View your balance \n - View addresses and get new address \n\nExpect many new features soon!", + "name": "Hathor Wallet", + "screenshots": [ + "./images/@hathor/snap/1.jpg", + "./images/@hathor/snap/2.jpg", + "./images/@hathor/snap/3.jpg" + ], + "sourceCode": "https://github.com/HathorNetwork/hathor-rpc-lib", + "summary": "View and sign transactions on Hathor Network, and interact with dapps built with Nano Contracts.", + "support": { + "contact": "https://discord.com/invite/35mFEhk", + "knowledgeBase": "https://docs.hathor.network/explanations/features/metamask-snap" + } + }, + "versions": { + "0.4.2": { + "checksum": "P5zK+T8afxLRSILibyFCD8RnkeoD3U1mrtaIQ7UDupw=" + } + } + }, + "npm:@hiveio/metamask-snap": { + "id": "npm:@hiveio/metamask-snap", + "metadata": { + "audits": [ + { + "auditor": "Hacken", + "report": "https://github.com/openhive-network/metamask-snap/wiki/assets/documents/Hacken_Hive_dApp_Hive_Snap_Audit_May2025.pdf" + } + ], + "author": { + "name": "thebeedevs", + "website": "https://blog.openhive.network/@thebeedevs" + }, + "category": "interoperability", + "description": "Features supported by this Snap include:\n- Preparation of Hive account creation request, next encoded into URL link to be shared with existing Hive user who should execute it\n- Seamless process specific to associating generated public keys to the existing Hive account\n- Derive Hive keys from MetaMask wallet\n- Sign Hive transactions securely\n- Encode / decode buffer using derived Hive keys\n- No private key exposure", + "name": "Hive Wallet", + "sourceCode": "https://github.com/openhive-network/metamask-snap", + "summary": "Enables secure Hive blockchain interactions directly through your MetaMask wallet.", + "support": { + "contact": "https://github.com/openhive-network/metamask-snap/issues/new", + "faq": "https://github.com/openhive-network/metamask-snap/wiki/FAQ", + "knowledgeBase": "https://github.com/openhive-network/metamask-snap/wiki/KB" + }, + "website": "https://auth.openhive.network/" + }, + "versions": { + "1.6.0": { + "checksum": "Gi/COgu8L73LLMFQGrpbDZII8igqYpVTUWTyBdKWAtA=" + }, + "1.7.0": { + "checksum": "G+5qsDlLbzhKCGqIYUkovutGZKZvLdlQQdpyPFhMHbc=" + } + } + }, + "npm:@hivemindhq/snap": { + "id": "npm:@hivemindhq/snap", + "metadata": { + "author": { + "name": "Hive Mind", + "website": "https://hivemindhq.io/" + }, + "category": "transaction insights", + "description": "Hive Mind shows you community trust signals from the Intuition knowledge graph before you sign transactions. When you're about to send crypto or interact with a smart contract, you'll see real-time data about the destination address and the dApp you're using. WHAT YOU'LL SEE:\n\n• Trust Signals — How many people have staked that an address is trustworthy (or not)\n• Stake Amounts — The economic weight behind each trust signal in TRUST tokens\n• Your Position — Whether you've already staked on this address\n• Aliases — Community-assigned labels for addresses\n• dApp Trust — Trust data for the dApp origin you're interacting with\n• Trusted Circle — Which of your trusted contacts have staked on this address HOW IT WORKS:\n\nIntuition is a decentralized knowledge graph where users stake cryptocurrency to signal trust or distrust. High stakes on 'trustworthy' mean the community has put real money behind their endorsement. This creates skin-in-the-game reputation that's harder to fake than traditional reviews. The Snap queries Intuition's knowledge graph in real-time and displays the results directly in your MetaMask transaction confirmation screen. No extra steps required — the data appears automatically when you're about to sign. TAKE ACTION:\n\nIf you see an address without trust data, you can click through to create a trust signal yourself.", + "name": "Hive Mind", + "screenshots": [ + "./images/@hivemindhq/snap/1.png", + "./images/@hivemindhq/snap/2.png", + "./images/@hivemindhq/snap/3.png" + ], + "sourceCode": "https://github.com/hivemindhq-io/snap", + "summary": "Real-time trust signals powered by the Intuition knowledge graph", + "support": { + "knowledgeBase": "https://github.com/hivemindhq-io/snap/blob/main/docs/USER-KNOWLEDGE-BASE.md" + } + }, + "versions": { + "1.2.4": { + "checksum": "ffdfxK4L0hmiIj8b93NQUVFhLcSqm8PZKpTTWea+0XU=" + }, + "1.3.1": { + "checksum": "SU005Ag236ZhGi7A98hvfLt2540oJ/vSN8p+06BWrl4=" + } + } + }, + "npm:@idriss-crypto/snap": { + "id": "npm:@idriss-crypto/snap", + "metadata": { + "author": { + "name": "IDriss", + "website": "https://www.idriss.xyz/" + }, + "category": "name resolution", + "description": "Web3 Address Book can be used to resolve several naming services in MetaMask.\n\nIt supports resolution of:\n\n1. IDriss\n2. Farcaster names\n3. Lens handles\n4. Unstoppable Domains\n5. ENS domains on networks other than Ethereum Mainnet\n\nSupported formats:\n\n1. IDriss: Registered Twitter handles @[name]\n2. Farcaster: [name].fc or [name].farcaster\n3. Lens: [name].lens\n4. UD: any registered UD\n5. ENS: Any registered ENS, given it does not resolve to a contract address.", + "name": "Web3 Address Book", + "sourceCode": "https://github.com/idriss-crypto/snap/", + "summary": "Use your favorite name services in MetaMask.", + "support": { + "contact": "hello@idriss.xyz" + } + }, + "versions": { + "0.1.2": { + "checksum": "9a+ZgF4hWDGgYEAjyEbg0hxTU/COftFoCfH7X3APF3A=" + } + } + }, + "npm:@kleros/scout-snap": { + "id": "npm:@kleros/scout-snap", + "metadata": { + "audits": [ + { + "auditor": "Veridise", + "report": "https://f8t2x8b2.rocketcdn.me/wp-content/uploads/2023/06/VAR-Kleros-Scout.pdf" + } + ], + "author": { + "name": "Kleros", + "website": "https://kleros.io/" + }, + "category": "transaction insights", + "description": "This Snap pulls contract metadata from Kleros's decentralized token curated registries to provide insights to the contract you are interacting with. \nAfter installing the Snap, you will see it in the transaction confirmation window.", + "name": "Kleros Scout", + "screenshots": [ + "./images/@kleros/scout-snap/1.png", + "./images/@kleros/scout-snap/2.png", + "./images/@kleros/scout-snap/3.png" + ], + "sourceCode": "https://github.com/kleros/scout-snap", + "summary": "Pull contract metadata from Kleros' community curated registries to provide smart contract insights.", + "support": { + "contact": "mailto:contact@kleros.io", + "faq": "https://docs.kleros.io/products/curate/kleros-scout-metamask-snaps/faqs", + "knowledgeBase": "https://docs.kleros.io/products/curate/kleros-scout-metamask-snaps/knowledge-base" + }, + "website": "https://klerosscout.eth.limo" + }, + "versions": { + "1.3.9": { + "checksum": "ayOxQ97u42HLTny+ivrIjLTsq/hQnctZYM2lO5jG6o8=" + }, + "1.4.1": { + "checksum": "dLpYpqbP53gfOkceWC7tNFpnftJv0qriT5muEMtH8gc=" + } + } + }, + "npm:@kunalabs-io/sui-metamask-snap": { + "id": "npm:@kunalabs-io/sui-metamask-snap", + "metadata": { + "audits": [ + { + "auditor": "Sayfer", + "report": "https://sayfer.io/audits/metamask-snap-audit-report-for-kunalabs/" + } + ], + "author": { + "name": "Kuna Labs", + "website": "https://kunalabs.io/" + }, + "category": "interoperability", + "description": "A Snap for making transactions on the Sui blockchain. After installing the Snap, visit the website to manage your Sui accounts.", + "name": "Sui", + "screenshots": [ + "./images/@kunalabs-io/sui-metamask-snap/1.png", + "./images/@kunalabs-io/sui-metamask-snap/2.png", + "./images/@kunalabs-io/sui-metamask-snap/3.png" + ], + "sourceCode": "https://github.com/kunalabs-io/sui-snap", + "summary": "Make transactions on the Sui blockchain.", + "support": { + "contact": "https://discord.com/invite/nTth43SUxJ" + }, + "website": "https://suisnap.com/" + }, + "versions": { + "1.0.1": { + "checksum": "JeAHhMjDDsJ21FuyOA+AVNTkn0FQrk6ksL8DqbBWx7w=" + } + } + }, + "npm:@kurslog/metamask-snap": { + "id": "npm:@kurslog/metamask-snap", + "metadata": { + "author": { + "name": "Kurslog", + "website": "https://kurslog.com/en" + }, + "category": "transaction insights", + "description": "Kurslog Rate Tracker helps you find the best OTC exchange rates for crypto cash-out directly inside MetaMask.\n\nTransaction Insight: When you swap tokens on Uniswap, SushiSwap, 1inch, or PancakeSwap, Kurslog shows you the best cash-out rates (Card UAH, Cash UAH, Cash USD) right on the transaction confirmation screen. See how much you would get if you sell your crypto directly through an OTC exchanger instead.\n\nHome Page: Browse popular exchange directions with real-time rates from 100+ exchangers. Check rates for any currency pair.\n\nRate Check: Select from 190+ currencies organized by category (Crypto, UAH, USD, EUR, and more). Compare rates from trusted exchangers with trust scores.\n\nMulti-country: Supports 98 countries and 285 cities. Cash rates are shown for your selected city. Card rates work globally.\n\nMulti-language: Ukrainian, Russian, and English. Language is auto-detected from your MetaMask settings.\n\nSupported DEXs: Uniswap V2/V3, Universal Router, SushiSwap, 1inch v5/v6, PancakeSwap, QuickSwap.\n\nSupported networks: Ethereum, Polygon, BSC.", + "name": "Kurslog Rate Tracker", + "sourceCode": "https://github.com/kurslog/kurslog-metamask-snap", + "summary": "Compare OTC exchange rates from 100+ exchangers and find the best cash-out rate in your city. Get real-time rate insights when swapping tokens on Uniswap, SushiSwap, 1inch, and PancakeSwap.", + "support": { + "contact": "mailto:support@kurslog.com", + "knowledgeBase": "https://kurslog.com/en/info/metamask-snap" + } + }, + "versions": { + "1.0.2": { + "checksum": "OkAjkpv19JYsVYR/v+bEZOw46kdk6ILAXRrAEqkdqPg=" + } + } + }, + "npm:@l3mbda/metamask-snap": { + "id": "npm:@l3mbda/metamask-snap", + "metadata": { + "author": { + "name": "L3MBDA", + "website": "https://l3mbda.com/" + }, + "category": "notifications", + "description": "This Snap enhances 🦊 MetaMask with the functionality of L3MBDA. It enables you to create Oracles and receive alerts right in your browser!\n\nAfter installing the Snap, please visit the website to connect with MetaMask.", + "name": "L3MBDA Alerts", + "screenshots": [ + "./images/@l3mbda/metamask-snap/1.jpg", + "./images/@l3mbda/metamask-snap/2.jpg", + "./images/@l3mbda/metamask-snap/3.jpg" + ], + "sourceCode": "https://github.com/l3mbdaorg/metamask-snap", + "summary": "Get browser notifications.", + "support": { + "contact": "mailto:snap@l3mbda.com", + "faq": "https://l3mbda.com/integrations", + "knowledgeBase": "https://l3mbda.com/guides" + }, + "website": "https://l3mbda.com/integrations" + }, + "versions": { + "1.0.4": { + "checksum": "gL54Dj6ndVt6Ky+s2HukMN+ke6QXe789qYGNAyyiKFc=" + } + } + }, + "npm:@leapwallet/metamask-cosmos-snap": { + "id": "npm:@leapwallet/metamask-cosmos-snap", + "metadata": { + "audits": [ + { + "auditor": "Sayfer", + "report": "https://github.com/MetaMask/snaps-registry/files/12544468/Sayfer.-.2023-08.Penetration.Testing.Report.for.LeapWallet.Snap.-.Updated.pdf" + } + ], + "author": { + "name": "Leap", + "website": "https://www.leapwallet.io/" + }, + "category": "interoperability", + "description": "Securely manage keys, connect to Cosmos dapps, and sign transactions.\n\nAfter installing the Snap, visit the website to connect with MetaMask and start using the Snap.", + "name": "Cosmos Wallet", + "screenshots": [ + "./images/@leapwallet/metamask-cosmos-snap/1.png", + "./images/@leapwallet/metamask-cosmos-snap/2.png", + "./images/@leapwallet/metamask-cosmos-snap/3.png" + ], + "sourceCode": "https://github.com/leapwallet/cosmos-metamask-snap", + "summary": "Securely manage keys, connect to Cosmos dapps, and sign transactions.", + "support": { + "contact": "https://leapwallet.notion.site/Leap-Cosmos-Wallet-Support-ba1da3c05d3341eaa44a1850ed3260ee", + "faq": "https://leapwallet.notion.site/Leap-Cosmos-Wallet-Support-ba1da3c05d3341eaa44a1850ed3260ee#b9f076f6aeb947818b449a058cd2967b" + }, + "website": "https://cosmos.leapwallet.io/snaps" + }, + "versions": { + "0.1.17": { + "checksum": "CLwZocaUEbDErtQAsybaudZDJq65a8AwlEFgkGUpmAQ=" + }, + "0.1.18": { + "checksum": "zwTU57HXUX94fMIYhLMfYxAK/pGRwI0Dqao76/BqWZk=" + }, + "0.1.21": { + "checksum": "O8AnRrDyQolfSUSxK7uZyf8GEK3KmF4+UE3Gx1uAr4M=" + } + } + }, + "npm:@liquidlink-lab/iota-metamask-snap": { + "id": "npm:@liquidlink-lab/iota-metamask-snap", + "metadata": { + "audits": [ + { + "auditor": "Sayfer", + "report": "https://sayfer.io/audits/metamask-snap-audit-report-for-liquidlink/" + } + ], + "author": { + "name": "LiquidLink", + "website": "https://www.liquidlink.io/" + }, + "category": "interoperability", + "description": "After installing the Snap, you can visit the IOTA Snap website https://snap.liquidlink.io/ and generate an IOTA address directly using MetaMask. Then, you can receive, send, and manage assets, as well as interact with DeFi protocols on the IOTA network.\n\nDevelopers can use the IOTA Snap SDK to integrate with the frontend, enabling existing web interfaces to support MetaMask-based signing.\n\nDemo video: https://www.youtube.com/watch?v=pi5QiGYrE08", + "name": "Iota", + "sourceCode": "https://github.com/Liquidlink-Lab/iota-metamask-snap", + "summary": "Interact with IOTA on-chain assets and perform digital signatures", + "support": { + "contact": "mailto:liquidlink.io@gmail.com", + "faq": "https://github.com/Liquidlink-Lab/iota-snap-package-main/blob/main/FAQ.md" + }, + "website": "https://snap.liquidlink.io/" + }, + "versions": { + "0.0.14": { + "checksum": "3UCnqaTEozFtbLCeQEI0vdF62N6ShDpYrcev+Gk/arI=" + } + } + }, + "npm:@massalabs/metamask-snap": { + "id": "npm:@massalabs/metamask-snap", + "metadata": { + "audits": [ + { + "auditor": "Sayfer", + "report": "https://sayfer.io/audits/metamask-snap-audit-report-for-massa/" + } + ], + "author": { + "name": "Massa Labs", + "website": "https://massa.net/" + }, + "category": "interoperability", + "description": "Massa Snap is your gateway to the Massa ecosystem, offering a seamless and user-friendly way to interact with the innovative Massa blockchain directly from MetaMask. With this Snap, you can:\n\n- Send and receive MAS tokens effortlessly.\n- View transaction history and account balances.\n- Interact with Massa Smart Contracts.\n\nAs the Massa ecosystem continues to grow, more dApps will integrate with the Massa Snap to enhance its functionality. The first dApp already compatible is Syntra, a cutting-edge application powered by Massa’s autonomous smart contracts. Syntra simplifies token scheduling, enabling automated and seamless transactions for tipping content creators, managing token vesting, and more.\n\nFuture integrations will expand the Snap’s capabilities, allowing users to:\n\n- Engage with MRC20 tokens and NFTs.\n- Deploy and manage smart contracts.\n- Buy and sell rolls directly within MetaMask.\n\nStay tuned as more dApps and features are integrated into the Massa Snap, further connecting you to the ecosystem.\n\nGet started with these resources:\n\n- Massa Documentation: Learn about Massa’s features and developer tools: https://docs.massa.net\n- Massa Ecosystem Apps: Explore decentralized services and apps: https://massa.net\n\nWhy Massa?\nThe Massa blockchain combines the scalability of BlockDAG, autonomous smart contracts, and fully decentralized web capabilities, making it a revolutionary platform for developers and users alike. Start your journey with Massa Snap for MetaMask today and be part of this evolving ecosystem!", + "name": "Massa", + "sourceCode": "https://github.com/massalabs/metamask-massa", + "summary": "Massa smart wallet", + "support": { + "contact": "https://discord.com/invite/massa", + "faq": "https://docs.massa.net/docs/build/wallet/metamask-snap#faqs", + "knowledgeBase": "https://docs.massa.net/docs/build/wallet/metamask-snap" + } + }, + "versions": { + "1.2.1": { + "checksum": "ZP9Nh4+vhw1Lv3ReNrzKUMQfNsK/SRlYXy43C7VyPl4=" + } + } + }, + "npm:@mendi-finance/alert-snap": { + "id": "npm:@mendi-finance/alert-snap", + "metadata": { + "author": { + "name": "Mendi Finance", + "website": "https://mendi.finance/" + }, + "category": "notifications", + "description": "Enables Mendi Finance users to set custom alerts based on their preferred borrow limit to receive notifications when their positions are above the preferred threshold.\n\nLearn more: https://mendi.finance/snap/", + "name": "Mendi Finance Liquidation Alert", + "screenshots": [ + "./images/@mendi-finance/alert-snap/1.png", + "./images/@mendi-finance/alert-snap/2.png", + "./images/@mendi-finance/alert-snap/3.png" + ], + "sourceCode": "https://github.com/mendi-finance/metamask-alert-snap", + "summary": "Receive timely notifications to stay on top of borrowing.", + "support": { + "contact": "https://discord.com/invite/G3vWy8cbnK", + "faq": "https://docs.mendi.finance/mendi-snap/faq" + }, + "website": "https://mendi.finance/snap" + }, + "versions": { + "1.0.1": { + "checksum": "yX7A0MbM0e2ZO9KINXuWo8dibyuzKrLZ8zyYGWyOcXw=" + } + } + }, + "npm:@metamask/background-events-example-snap": { + "id": "npm:@metamask/background-events-example-snap", + "metadata": { + "hidden": true, + "name": "Background Events Example Snap" + }, + "versions": { + "1.0.0": { + "checksum": "hErp73GYyo7PY+AZUPmuL94+EgeKfPJeUVq2UURgfQU=" + } + } + }, + "npm:@metamask/bip32-example-snap": { + "id": "npm:@metamask/bip32-example-snap", + "metadata": { + "hidden": true, + "name": "BIP-32 Example Snap" + }, + "versions": { + "0.35.0-flask.1": { + "checksum": "nSL22rF7OWVCYzaj9B+7tUgRWCw8oMfi2r0utoJH6rg=" + }, + "0.35.2-flask.1": { + "checksum": "cOJYxa17Mn160j/YH8887WOpGFVl0N0c2TK4WBfpdh0=" + }, + "0.37.2-flask.1": { + "checksum": "9zlU1HnaCKIKeIYLWAZMpKKGhniZz3uCfL6lMi6HxmU=" + }, + "0.37.3-flask.1": { + "checksum": "q09kHX1Yh6y5o3ttFwB+ZVM6FOElyy3qqvoyYCWHiSQ=" + }, + "1.0.0": { + "checksum": "J3MpNxvOJdEwGq+zeIHh05yOsAoS8q2AqlTT5PLAkf8=" + }, + "2.0.1": { + "checksum": "4N4ZT8QBuqMJrLYXBTAN7DtUXxerR1HXD+89p/8Vurw=" + }, + "2.1.0": { + "checksum": "3PiDzz7GdMsESG/6ZAJqFjn2Li8oaCvw2i3k+IFooXs=" + }, + "2.1.1": { + "checksum": "lqz9XyQ0fC81A2LIRKSUInXBJEv26N9+8UIT5HcGG8E=" + }, + "2.1.2": { + "checksum": "NVydltk67wE3e1uAxlmal62P2EcP+cMfsNZ66EyJ7O4=" + }, + "2.2.0": { + "checksum": "xw62rD8He0Lm1dDr3RfVoycp0PTWauVCclc8JbpwofU=" + }, + "2.2.1": { + "checksum": "PxNHa0ebJ1qA/LXiY4vTzUsBKNl3rdfbHwg198YtOH4=" + }, + "2.3.0": { + "checksum": "EYj8a1CyBIrzcSGQ6EY9Ny6Q+azLzobzU7agR7CKisA=" + } + } + }, + "npm:@metamask/bip44-example-snap": { + "id": "npm:@metamask/bip44-example-snap", + "metadata": { + "hidden": true, + "name": "BIP-44 Example Snap" + }, + "versions": { + "0.37.2-flask.1": { + "checksum": "1wPZsEPMVO88H3Lt1XBqz9BiKT3QV1ruIcqJQN9bLNY=" + }, + "0.38.0-flask.1": { + "checksum": "greQKnNTgVqeKdtbMiyIdng09Jy/u6bK2ctZkzy0hdY=" + }, + "0.38.1-flask.1": { + "checksum": "w3Sp0Y7HB+uqHgv1L6S+V+Q7TW10/mUD7+jbbMUgz0g=" + }, + "1.0.0": { + "checksum": "JKHoUebJ9c2urnFcUO06lKbtCcAOW3CaRGSImdpDG34=" + }, + "2.0.1": { + "checksum": "6y7H6/XXdUTd0neTWUflYhBSMEHWA9mKF15hemGju5s=" + }, + "2.1.0": { + "checksum": "/o2NevZCcocYbJaDzVkOJFDCozfyUDVYhv+EUJoJBGY=" + }, + "2.1.1": { + "checksum": "G88Poc8uX2NVEqWnuOHZhEpt8TzD6fhOXbXZj2JGeSQ=" + }, + "2.1.2": { + "checksum": "cGgUQlMw+WDBaoWHvG4s/xaZO47vBrEp9sa+4DhBmTA=" + }, + "2.1.3": { + "checksum": "Nb4y6u121k+rnDRGblkG77S7s9IFt1TZTQeSZOXNdyY=" + }, + "2.2.0": { + "checksum": "7ITCfMBWovBJmXIqrHSIsO+DvhSI52fO07JRevLMIkw=" + } + } + }, + "npm:@metamask/bitcoin-wallet-snap": { + "id": "npm:@metamask/bitcoin-wallet-snap", + "metadata": { + "hidden": true, + "name": "Bitcoin" + }, + "versions": { + "1.8.0": { + "checksum": "YA+qmj7Q3fB1UcO5A2d3UekTzVHuY/YuMhrmfynHg20=" + } + } + }, + "npm:@metamask/client-status-example-snap": { + "id": "npm:@metamask/client-status-example-snap", + "metadata": { + "hidden": true, + "name": "Client Status Example Snap" + }, + "versions": { + "1.0.1": { + "checksum": "NTV+uXRXbL4OA/RpOHRUTjfnHywIl/6Z+qLi4ikQSc8=" + }, + "1.0.2": { + "checksum": "6jscZ6A0qMZUnPm6AxpTHXY++XeNFtkT9Pr1OkjSTyI=" + }, + "1.0.3": { + "checksum": "fyBeeuYGaIpBnxm6MVoRe19JR+8QiIeFtJM+nlOWnsU=" + } + } + }, + "npm:@metamask/cronjob-duration-example-snap": { + "id": "npm:@metamask/cronjob-duration-example-snap", + "metadata": { + "hidden": true, + "name": "Cronjob Duration Example Snap" + }, + "versions": { + "1.0.0": { + "checksum": "vzzpBIX/vOKbSw6x8JXHzMMeBe8lpOhaZi0KSZk9uOY=" + } + } + }, + "npm:@metamask/cronjob-example-snap": { + "id": "npm:@metamask/cronjob-example-snap", + "metadata": { + "hidden": true, + "name": "Cronjob Example Snap" + }, + "versions": { + "0.37.2-flask.1": { + "checksum": "M8rlf48QIGa4Dk8X/EM9OgQUwrhvCpQyrJkv8FMVYkM=" + }, + "0.38.0-flask.1": { + "checksum": "2X5dKpZLlpO/b3sL2FLCLAjGvsamMh4jP/HRkwWeknI=" + }, + "0.38.1-flask.1": { + "checksum": "uMXNv7TEb5zPsMIS8kfcX5HbvPdjIiUdj3zP05DuV+w=" + }, + "1.0.0": { + "checksum": "rvezXlgNZfZl22VCm9paR8ZQBkEW6MMhsjHJsZ88mgU=" + }, + "2.0.1": { + "checksum": "kSNWxUiNr5CRJD/TtNRUWLrFuvA8wY2hyRuSMRm6k7Y=" + }, + "2.1.0": { + "checksum": "5QcNsKW2OCV+Oi5jv0adqdorGJlrRXk6b2N8ggNKfJg=" + }, + "2.1.1": { + "checksum": "Lkw2STqcJn6zw3u7uB7QTBjVc539gv/RFdNL6DqAE0Q=" + }, + "2.1.3": { + "checksum": "J8ekYCK9+rqN9d6qBw85RomNqdXMbkB9s1eHnQkaABs=" + }, + "2.1.4": { + "checksum": "52lYQY0bh6ZtKx4ZNtQNO17ustuhQBewko/WzQkS68A=" + }, + "2.2.0": { + "checksum": "B0eoXOpzU2Cts5d42w11AdvgClmS/une3zXQ9vHnJgU=" + }, + "3.0.0": { + "checksum": "p0EjILZJvCZE2KZSlJ8e5q96ODsV/heJHp2nmUx7DG8=" + } + } + }, + "npm:@metamask/dialog-example-snap": { + "id": "npm:@metamask/dialog-example-snap", + "metadata": { + "hidden": true, + "name": "Dialog Example Snap" + }, + "versions": { + "0.37.2-flask.1": { + "checksum": "JTisnR3icqN8BSTKQEhgx3unm8JbSHeyJ2nM29arcrE=" + }, + "0.38.0-flask.1": { + "checksum": "ovAw6BvnbeNMcF3DwmhqKzYSEBOo1sxYRi6kDDv3WdQ=" + }, + "0.38.1-flask.1": { + "checksum": "slwFtkG5J8ldBG0JUL3EvAW5+0NGKERXcXdlIyCImqM=" + }, + "1.0.0": { + "checksum": "Tcm1oNE+DXYHjyz6Eeb1+SycfrpMQnEpJv+0++BoZss=" + }, + "2.0.1": { + "checksum": "yEpBUyy0QVw6DUsxDh33Lz4KuVN6Vy98yNDLVZ2NkXA=" + }, + "2.1.0": { + "checksum": "gBlp/vQeFAxBYBB+ZtKp544lvphaUGnPdlZT3TcRYtM=" + }, + "2.2.0": { + "checksum": "wX4pqJ2RkmZdllC1iVnHP4uE4sWiqTb6GWXNyEUDnCA=" + }, + "2.2.1": { + "checksum": "2omN9u/lT2cXPZ3O6j4wG3W3HBn/6No9JxH4ncqUG6M=" + }, + "2.3.0": { + "checksum": "Os7gpMBdr9ZYsLGc5xNCSgjVZ4lAkm0qXy7Nsfytvxs=" + }, + "2.3.1": { + "checksum": "v2oIs3UY5j/3dXW5eRh3rg7Tv5qcVzHon7qzPQeRsAE=" + } + } + }, + "npm:@metamask/error-example-snap": { + "id": "npm:@metamask/error-example-snap", + "metadata": { + "hidden": true, + "name": "Error Example Snap" + }, + "versions": { + "0.37.2-flask.1": { + "checksum": "bO6Nz4mmWwLZodzNJIzt9Fw9V4IV5luD/vFjMA9bNZQ=" + }, + "0.38.0-flask.1": { + "checksum": "WXWIhv3YhG8JuPwZ1SnTgFv9ZaBNAKOermQ5bWU8a1Q=" + }, + "0.38.1-flask.1": { + "checksum": "fRj3eRk7NIBp3Bd/Ji3rCIcMQy65psytCBFIQFo2G6s=" + }, + "1.0.0": { + "checksum": "Wa5LuPosJ5nAXu55PlzY9nk41VRuVmo3LcOdLaIbjq0=" + }, + "2.0.1": { + "checksum": "8/0lDDnckpXRXdIVPnWY1GKqYFbg5C0RplaiQOEfZqQ=" + }, + "2.1.0": { + "checksum": "ov5mgh9BqfOJ9kcgQ33BokQmf2v6+GjIshAqrBFIncM=" + }, + "2.1.1": { + "checksum": "uH2l5R13JDUJZGxdcOB6mDDSSWCji2MDpYC9tOYBd7g=" + }, + "2.1.2": { + "checksum": "6sJsnsPeGr45rdXrBtKhdNhbqBJhatSFzMWHP8gcWQ0=" + }, + "2.1.3": { + "checksum": "yBkP0yx/0fYCe3r3hglrIJJAXuxTgMpCsR0HMJ/KV7o=" + } + } + }, + "npm:@metamask/ethereum-provider-example-snap": { + "id": "npm:@metamask/ethereum-provider-example-snap", + "metadata": { + "hidden": true, + "name": "Ethereum Provider Example Snap" + }, + "versions": { + "0.37.2-flask.1": { + "checksum": "iqnHsz3ns+0TpnqmZOkVen+ySQxXDhb7LU6SWWpksB8=" + }, + "0.38.0-flask.1": { + "checksum": "02i/AryMkfxh6jeOXWKjyaBCLCzaKXADhRc/dWfsmEg=" + }, + "0.38.1-flask.1": { + "checksum": "+C2UG75icr02O2XPKLPaYAba1KsKg12qQDOMWmJ1li0=" + }, + "1.0.0": { + "checksum": "CwJGR0Jll1DjOt3kpxD6l4utazQFokN95bqWCOToFKI=" + }, + "2.0.1": { + "checksum": "6Qd5Rh+dmhKWgsqGRiUXAqmefdqy5UNKL67TJQ9nkBA=" + }, + "2.1.0": { + "checksum": "h2kl7pefimDcWYtzO1uJypryY/R1DMY1r8srOcf7vEo=" + }, + "2.1.1": { + "checksum": "m2nHsw+2Ofob0EtfxjAWZjoXy0ZSMbUvr7xZmtp5p90=" + }, + "2.1.2": { + "checksum": "t6qrFcAL9Hw/7r7/Q4q1rSrFQ1FdWG+JaTDnLpBv9DM=" + }, + "2.1.3": { + "checksum": "pSiTZjO5nox8zYh+fQtQfZLp5HwbxKByu+WOo+tAAH0=" + }, + "2.2.1": { + "checksum": "8f7Fo6y40+L0x+KHkDCq2wjEMrkTL+L6e2NSNBZYVLA=" + }, + "2.3.0": { + "checksum": "7i20r0cCFwMESzBcTMgRNOt82AjwHneiM6LtD7vXCGw=" + }, + "2.4.0": { + "checksum": "I4+h3lL7U70t4ZHZagAuECK8sYOKcsiqowBM52gLd/8=" + }, + "3.0.0": { + "checksum": "3KRQiL+BkDxdEzEIabxnfGZIdHP/1T7er0hdCh75SfU=" + } + } + }, + "npm:@metamask/ethers-js-example-snap": { + "id": "npm:@metamask/ethers-js-example-snap", + "metadata": { + "hidden": true, + "name": "Ethers.js Example Snap" + }, + "versions": { + "0.37.2-flask.1": { + "checksum": "C3XZa2lDh8LWVZNQmn3Ns/ZByyZTFz7zznClGMen4Yg=" + }, + "0.38.0-flask.1": { + "checksum": "P6Tvtbs6qn77XI7xQVbBNmd1Sp8WRdAfFrGpLQODabA=" + }, + "0.38.1-flask.1": { + "checksum": "ydfyZetMKS1Z6iJEgaC51yZ2kPdCAwnciuM0TC9oDBs=" + }, + "1.0.0": { + "checksum": "QY3seNbkU81kQ25hpBICjcMUK41iI0tYUlwqsiWbVCo=" + }, + "2.0.1": { + "checksum": "mTaBDVniZbs+DC4B0vWa/MkK31FmpQAg7GS+GvRYHk8=" + }, + "2.1.0": { + "checksum": "mwQVVwVq4B6u9x7VMmCQ2w2bREK0sWHcK+siAjs7e+c=" + }, + "2.1.1": { + "checksum": "N9i27+suBYwVHDzqQGtvafY55vHNCkcYAL7Fuw6wOz0=" + }, + "2.1.2": { + "checksum": "dHiE+9mYVkqNRma5GsZprTawv/bDUzcdbeciRzCmkhQ=" + }, + "2.1.3": { + "checksum": "3ec/uMXW2lAaVxSJJRjsAmQ1oSqVJpHUkF4i4YTa9Gk=" + } + } + }, + "npm:@metamask/file-upload-example-snap": { + "id": "npm:@metamask/file-upload-example-snap", + "metadata": { + "hidden": true, + "name": "File Upload Example Snap" + }, + "versions": { + "1.0.1": { + "checksum": "z4vMdrs40TdVE+vk7sPruIvWi0q669V+p3jc6WQIib4=" + } + } + }, + "npm:@metamask/get-entropy-example-snap": { + "id": "npm:@metamask/get-entropy-example-snap", + "metadata": { + "hidden": true, + "name": "Get Entropy Example Snap" + }, + "versions": { + "0.37.2-flask.1": { + "checksum": "3ngy5lgb166/id89vLEsA10MjtHAbyWoCM/y2foLyMs=" + }, + "0.38.0-flask.1": { + "checksum": "mtAscMuF0zF1TIVUBmoSc/Vc1xP2vQR7GCw+fIx08vE=" + }, + "0.38.1-flask.1": { + "checksum": "RftaRiY4VJewuY8jTQPrtxJ4oqBK9h2E4bTMiNQJkgE=" + }, + "1.0.0": { + "checksum": "jz0qC13DGpmyhERi+4iQRk1EpogtRkOd5cE5T8uKb6I=" + }, + "2.0.1": { + "checksum": "8q8+u8jJwUzxaMTpOTi/6l2edNsWnIVOq6cNod3s8Fw=" + }, + "2.1.0": { + "checksum": "adrLao09LcOWwhlW+YfcJOdGyHgb4ap2JwhKCl+HWkM=" + }, + "2.1.1": { + "checksum": "H/SD72HvzJOGI687mfl8QLGrMyDIgYjEm45fmmWuZrU=" + }, + "2.1.2": { + "checksum": "dTL+fLvEFKI0vtcRZ0ZGxU2menzmWl3rPuOwnsqNMIQ=" + }, + "2.1.3": { + "checksum": "OYSzxQ1qHApZ2MHWvQ/XYWRwKJptpyVQ5VgyhgFEmmo=" + }, + "2.2.0": { + "checksum": "vUiybKJcdxY44IuamgNJQadSEl+o9n152JyZ84jGc7w=" + } + } + }, + "npm:@metamask/get-file-example-snap": { + "id": "npm:@metamask/get-file-example-snap", + "metadata": { + "hidden": true, + "name": "Get File Example Snap" + }, + "versions": { + "1.0.1": { + "checksum": "BcmD1BGF05yH9qRi1bj8N6I2diXAyfqjmVjiHMGXIRg=" + }, + "1.1.0": { + "checksum": "0LYVuy8axHCCii9kBjsl6e0o/NNGe3d2hFysfOJzDYc=" + }, + "1.1.1": { + "checksum": "jLIJlUMNJxBPdD7VXu+lauJFMbrlZ7Ctpa3CG48aB+I=" + }, + "1.1.2": { + "checksum": "+jhsvzvvvNA8Gf1d8zGZT0de5KpYoZsLfiz0EowMK0g=" + }, + "1.1.3": { + "checksum": "aTuxZCIXcq/FP7XjSoBY4e4pHQbuoDJ1U6FUe/rAfiQ=" + } + } + }, + "npm:@metamask/get-locale-example-snap": { + "id": "npm:@metamask/get-locale-example-snap", + "metadata": { + "hidden": true, + "name": "Get Locale Example Snap" + }, + "versions": { + "0.38.1-flask.1": { + "checksum": "7u3+H0DxS/50QglAzBGJptTwr1axVoUErCiXeL4eevY=" + }, + "1.0.0": { + "checksum": "XY2MC1SyQ2H5oBn47Tu9HSB/+pNFzYkNXVFSXY1jHco=" + }, + "2.0.1": { + "checksum": "ttZu/V293nj2AVppqkocM+HMGuUmslWpiW18XrMovl8=" + } + } + }, + "npm:@metamask/home-page-example-snap": { + "id": "npm:@metamask/home-page-example-snap", + "metadata": { + "hidden": true, + "name": "Home Page Example Snap" + }, + "versions": { + "1.1.0": { + "checksum": "EhHC32ZDU+SWvnUAcm2ibsZdqfwlr4h+mAvmCqyPPK0=" + }, + "1.1.1": { + "checksum": "6wP6Hm3oTFQcO7CU9pj+LB0WvzU1dO1H3D9FRwieyo8=" + }, + "1.1.2": { + "checksum": "+RC3pwNreHxiMjByPmX0vglQye6wRfdfqC3/Y20tnc8=" + }, + "1.1.3": { + "checksum": "emnlXHvrhsGBMi/y1IPhiQPX9ogHmjmOU/iujBu5GB8=" + } + } + }, + "npm:@metamask/images-example-snap": { + "id": "npm:@metamask/images-example-snap", + "metadata": { + "hidden": true, + "name": "Images Example Snap" + }, + "versions": { + "1.1.0": { + "checksum": "SxUO9T9xJ/R+jHURdjaLvy0Wfq+6+7CkovvO0CB0wxY=" + }, + "1.1.1": { + "checksum": "kbuZtLjZiY9+HOtc7DIpuGUjMes2id67dES3Ze/Z3dY=" + }, + "1.2.0": { + "checksum": "7Wzg0p7PiQ5Q2U8VqAbkwj+Ep0jbETFeu7E/oe9DgUo=" + } + } + }, + "npm:@metamask/insights-example-snap": { + "id": "npm:@metamask/insights-example-snap", + "metadata": { + "hidden": true, + "name": "Insights Example Snap" + }, + "versions": { + "0.37.2-flask.1": { + "checksum": "jGSkiBXrmxd2lWtUtYQUni7gl2bGL4Dsep8pLbmJfzM=" + }, + "0.38.0-flask.1": { + "checksum": "7GvuWK7PaCWGnZx9MCrE2xttCOFsDzzIV2B4SPYCSDQ=" + }, + "0.38.1-flask.1": { + "checksum": "9leaWB2VbcMzyGfUSwOlBRnz0m94AwAE74011uLthfY=" + }, + "1.0.0": { + "checksum": "8V8IDFAjnJro0x76n9qcAEHMQiWJXGEB33R8PzICy3E=" + }, + "2.0.1": { + "checksum": "pwZ8HNdAGVlykuChlpCgDbAFLWIp2x0AiwpTwsvlYa0=" + }, + "2.1.0": { + "checksum": "Kfj87CBq4qcjYQywETQ4ORayuEjZO+QeQWJ3aQnZgUA=" + }, + "2.2.0": { + "checksum": "AVioFJ3NkshQl4HQhihpu+w+uq5I5QFn8uXZjgfFp8I=" + }, + "2.2.1": { + "checksum": "tx2+S+SWVNjrs5O3YbVWBN0TsWwf/uw5u52yBPpIzwU=" + }, + "2.2.2": { + "checksum": "76NEiG+oW2yBCnvjY9TAjkitGYBfZ9hipf+i2l2e8uE=" + }, + "2.2.3": { + "checksum": "oKKYF+AERJAyRBABHRf4nsfQ6IrhKele+Fei+JXxGzA=" + } + } + }, + "npm:@metamask/interactive-ui-example-snap": { + "id": "npm:@metamask/interactive-ui-example-snap", + "metadata": { + "hidden": true, + "name": "Interactive UI Example Snap" + }, + "versions": { + "2.0.0": { + "checksum": "Bzph8qHiipWZxvfPRRIF8uTNn/B6vsru5Y/iM4oncuo=" + }, + "2.1.0": { + "checksum": "Ko9xBAU/AMTQmdJHIKVaXEvIMRKil4LMaFj+3gS3eZo=" + }, + "2.2.0": { + "checksum": "gAlUmrpqDhqJ7Suu3Fpr7Do1y7MFEi7qR22uyjhRDb8=" + }, + "2.2.1": { + "checksum": "uOuMArCEwmOmCl0Bl1WnRRm+DKcq0Y+O+5n8Z1KBMr8=" + }, + "2.3.0": { + "checksum": "1sEjG59gm8iGvsIT9oa2WLRjcr7XQz5k6gkNXjBvuPg=" + }, + "2.4.0": { + "checksum": "I+kz7pvB5o7oyC/2z5LnURYG7TrTHR9+oWueIcsuDyA=" + }, + "2.5.0": { + "checksum": "BkV0BL502gxdAXneGE5PZkAvETCUkHlItX3bka/LznA=" + } + } + }, + "npm:@metamask/json-rpc-example-snap": { + "id": "npm:@metamask/json-rpc-example-snap", + "metadata": { + "hidden": true, + "name": "JSON-RPC Example Snap" + }, + "versions": { + "0.37.2-flask.1": { + "checksum": "wMGE+zthQo8NHhhFulqYOOrdxtCQkveQt8MgZIAQSUA=" + }, + "0.37.3-flask.1": { + "checksum": "Vjp8paYaHuaEZzNA1KmLTSEHNvO5BxO5g8m58+92gDY=" + }, + "1.0.0": { + "checksum": "gKdBa0h+SZKNu6WFHFps5W1ly7WNTU2lrrOsyy7Z7VU=" + }, + "2.0.1": { + "checksum": "qxtyrratXpKUDXIzpfNCXNxQTarE4o984cXSV2sZXq8=" + }, + "2.1.0": { + "checksum": "Jy7ti30LfK+D/PnqwMP0gfSv4wl90uD/7uw4CjwqdzQ=" + }, + "2.1.1": { + "checksum": "V4E+vD5xcCFOe83roTieTbZVXxH8byN7CJqCTCTBgqU=" + }, + "2.1.2": { + "checksum": "lhPQ91mCD7n9r0yiA/KxP/olypotYlAbGauZTTUHh2w=" + }, + "2.1.3": { + "checksum": "loHXuvuW/Zb4kMSSdekMiV20UVtxXYyoDC0iRZbV274=" + } + } + }, + "npm:@metamask/jsx-example-snap": { + "id": "npm:@metamask/jsx-example-snap", + "metadata": { + "hidden": true, + "name": "JSX Example Snap" + }, + "versions": { + "1.1.1": { + "checksum": "RKQvu6SSgoRBULQF/tZU7VbTCDgsy6ud6uFPTEeCs7w=" + }, + "1.2.0": { + "checksum": "dXRb2xwCuTTo6gNaykoZsF44tnzzLKM51Os2gT3uRgE=" + }, + "1.2.1": { + "checksum": "3U9+Lvmmdc9JRmaHLcwGgi9lpnaj25joBF9+zXY4644=" + } + } + }, + "npm:@metamask/lifecycle-hooks-example-snap": { + "id": "npm:@metamask/lifecycle-hooks-example-snap", + "metadata": { + "hidden": true, + "name": "Lifecycle Hooks Example Snap" + }, + "versions": { + "0.38.0-flask.1": { + "checksum": "4DHXPu5lFAka46ohpDpyfwcSjT73s+nnZnO8PrVEr18=" + }, + "1.0.0": { + "checksum": "TszJ60KeknYWFD5tY/w/PMOk+cA5eeeaAkzyYbPqwYw=" + }, + "2.0.1": { + "checksum": "n5crYirSmJZ0adrdl7jvw/0E0qd0YmpwWUq6BXz+MTc=" + }, + "2.1.0": { + "checksum": "UiUa8rv9kqEP4DEs59e7ctxlOmv0fc39HXxU96FAozc=" + }, + "2.1.1": { + "checksum": "HsMiA68gfvszwts1V24kUURGhMk2iq/Vy0ALXqnA7lE=" + }, + "2.1.2": { + "checksum": "BXlcBtRno7GhLlq0cqal08ALFJa9G+DP/a1Ad7cTUKY=" + }, + "2.1.3": { + "checksum": "TSu0FIqVXvJG6WzqtKPx5kN2fjveQ8EypKCk/jAShmM=" + }, + "2.2.0": { + "checksum": "5tlM5E71Fbeid7I3F0oQURWL7/+0620wplybtklBCHQ=" + }, + "2.3.0": { + "checksum": "s2CUQ+L8GuVTLahEgApRNp8gEdH3Fv7TAvu+9+Mmx54=" + } + } + }, + "npm:@metamask/localization-example-snap": { + "id": "npm:@metamask/localization-example-snap", + "metadata": { + "hidden": true, + "name": "Localization Example Snap" + }, + "versions": { + "1.1.1": { + "checksum": "CZ9MGbtCRoCDFdTnXUqvCTQ8EDyLIShPZx+1McdEmRc=" + }, + "1.1.2": { + "checksum": "yh6gQI6x50HN+mte35DVEukn9IdXol9/3oiN1jwtl1Y=" + }, + "1.1.3": { + "checksum": "vO4Ep4ZPZCfGukm9uw9WvvoMoojZ77/3Q2ajMNNCHQA=" + }, + "1.1.4": { + "checksum": "KHrWdamfUEJ10ak4/oE/C4/oTO9BRnLSLjOiS9RFlHw=" + } + } + }, + "npm:@metamask/manage-state-example-snap": { + "id": "npm:@metamask/manage-state-example-snap", + "metadata": { + "hidden": true, + "name": "Manage State Example Snap" + }, + "versions": { + "0.37.2-flask.1": { + "checksum": "RcjOYLrBT5ZBOqHxXr/+g2L6hgqRALFCco+P/z9HvIs=" + }, + "0.38.0-flask.1": { + "checksum": "d4qYxIOdz869tdC5v6C8JzkS2fHRyJ33OeH3sqoUUEw=" + }, + "0.38.1-flask.1": { + "checksum": "mK8k9cUJX4aMrC0wnljGS7H9kDXY5h8atsu+Av3QyYI=" + }, + "1.0.0": { + "checksum": "56wgGzkHUCLNO3MxSciVCRIfy67gmEfBW6MeB0rMe5Q=" + }, + "2.0.1": { + "checksum": "tWayblKplxrTlRen2tNpos5hXOfAFrXLdmt+gyHwGyc=" + }, + "2.2.0": { + "checksum": "7BU7O6zjdNfdXzdxaMrMWkBasBATeJdW2gvzaOKn4ik=" + }, + "2.2.1": { + "checksum": "92szqCrEqmxOcL+MVbmPrOxJmC8jR5U4iKiVViZBupY=" + }, + "2.2.2": { + "checksum": "f9PoXGMUUbGJtHHvKt715/pvWiHR3KogkfWAV07itaM=" + }, + "2.2.3": { + "checksum": "5FNiUEpsrVxG3rTbJvhx/IBZ/jIYYu0ZbnCX9A6dAPE=" + }, + "3.0.0": { + "checksum": "9n3dGpYT/s9CwkwfGTkOgMA8jvrkLg9KVP2Y/KsrWkg=" + } + } + }, + "npm:@metamask/multichain-provider-example-snap": { + "id": "npm:@metamask/multichain-provider-example-snap", + "metadata": { + "hidden": true, + "name": "Multichain Provider Example Snap" + }, + "versions": { + "1.0.0": { + "checksum": "jfHLDvDp6aQQ0dIfa6J0oSMURJ+8qwMMC2VoLrYTEWQ=" + } + } + }, + "npm:@metamask/name-lookup-example-snap": { + "id": "npm:@metamask/name-lookup-example-snap", + "metadata": { + "hidden": true, + "name": "Name Lookup Example Snap" + }, + "versions": { + "3.1.0": { + "checksum": "NiLwtU8hXtIh2Z53Zf8PiuRasUjJolMfEB+dMAUfxqk=" + }, + "3.1.1": { + "checksum": "xk7O5itVsuV3Dfldq3rI3WgggHa3z7HX7e17jzheE8w=" + }, + "3.1.2": { + "checksum": "SRmLTMVKJvWHyVH5H3HhvMz0iQOWn4St4/9xX8Sv1EM=" + } + } + }, + "npm:@metamask/network-example-snap": { + "id": "npm:@metamask/network-example-snap", + "metadata": { + "hidden": true, + "name": "Network Access Test Snap" + }, + "versions": { + "0.37.2-flask.1": { + "checksum": "WA9XsjYi5NlQGz19iXBL0R7QVfUna3GAPZmUpb81gHM=" + }, + "0.38.0-flask.1": { + "checksum": "/xrzK+LNyXfupec9dDNUM6AGROGkJzIzrnnn5++j/Z0=" + }, + "0.38.1-flask.1": { + "checksum": "YXxtxjP6SbPiDHzskryvh0QA6Hvv/FurI+GwNN8WF0U=" + }, + "0.38.2-flask.1": { + "checksum": "gietRn5VTciRfESWtWnTLKykNCZbTuIY7sRFhyTYkJI=" + }, + "1.0.0": { + "checksum": "6yhB3CDYFp1NILq/F8Y25mKCDRNdn1DjPYl8hUqd/Js=" + }, + "2.0.1": { + "checksum": "eCkaGM5/bc1MQd57cU/nBxe+d6SjH4HaI1Gzh00Hyy0=" + }, + "2.1.0": { + "checksum": "oplXlD/xpRmd5pI+oICXVnJFO6W2F2GfQ+5jrjN+1vQ=" + }, + "2.1.1": { + "checksum": "oPeY40NbUed6VM6Ex0gteyIP8dZjtiIr0J4Pca2T3/U=" + }, + "2.1.2": { + "checksum": "t4cfOsg8zpOverDV5ZdNKovQFhg2wDLZM+nYq6qmddA=" + }, + "2.1.3": { + "checksum": "+V4EDf0266FOJDTVrhQ91ZaycBruUesJqSoAzohWnO0=" + }, + "2.2.0": { + "checksum": "scw0xXWz40VXRIgwF/GbGaQRT47ydnDC/SJzT+sRKPU=" + } + } + }, + "npm:@metamask/notification-example-snap": { + "id": "npm:@metamask/notification-example-snap", + "metadata": { + "hidden": true, + "name": "Notifications Example Snap" + }, + "versions": { + "0.37.2-flask.1": { + "checksum": "C3zDF0V9lFhFymAc3UJEryLY8uJw5eR5zSHUvQCAjGY=" + }, + "0.38.0-flask.1": { + "checksum": "ATRtqsBVScH5op0YokHjsg0Sj5WjggEIJ2I1cs6OI3k=" + }, + "0.38.1-flask.1": { + "checksum": "yVIjEtJtZA6UXqh9auF2KfI2kBS3TU1kXTPKNUX+7Ms=" + }, + "1.0.0": { + "checksum": "uq9ZlrcyEVDZ3iAFoxI3j6Ocu4Pp6VVp7P+nMjVhE80=" + }, + "2.0.1": { + "checksum": "tzQoWctgT7pWpcpCLXtMetsEj+9Fvj5/v9DAaIcT9N0=" + }, + "2.1.0": { + "checksum": "7B1tbfkFvZZrfCQ6BOE13svMJpUnCAz01rm8ey5N37Y=" + }, + "2.1.1": { + "checksum": "UG9pic6TiYCm/VVuVrbT6586mxjsEWXwXTGmoESR4w8=" + }, + "2.1.3": { + "checksum": "uLxnaoy3UvlSqkAVwSa1s3YRDmle0CLeeD6obROqNK4=" + }, + "2.1.4": { + "checksum": "S3wZGdkOLX7tdJYssmy+UxBXe+VuwZaNUQNqK+G3hu4=" + }, + "2.2.0": { + "checksum": "ZXgMRkK/FtEZlwVSdOC+dmP99tuBTqHx/2Mj/FNhzAg=" + }, + "2.3.0": { + "checksum": "vgZf2fdTM9fTAFroi78267SHtaEeTJLTNa/hobO22s0=" + } + } + }, + "npm:@metamask/preferences-example-snap": { + "id": "npm:@metamask/preferences-example-snap", + "metadata": { + "hidden": true, + "name": "Preferences Example Snap" + }, + "versions": { + "1.0.0": { + "checksum": "I256k2BDHu9ZRRnDVfP335n69beXXTqN/7Hlih+Jnqc=" + } + } + }, + "npm:@metamask/protocol-example-snap": { + "id": "npm:@metamask/protocol-example-snap", + "metadata": { + "hidden": true, + "name": "Protocol Example Snap" + }, + "versions": { + "1.0.0": { + "checksum": "5mGoGgmZ7RhyLQ+aNzd/H2qhQTkiirztWm399vqxPUw=" + } + } + }, + "npm:@metamask/snap-simple-keyring-snap": { + "id": "npm:@metamask/snap-simple-keyring-snap", + "metadata": { + "hidden": true, + "name": "MetaMask Simple Snap Keyring" + }, + "versions": { + "1.0.1": { + "checksum": "rBefvbSfjNsvzlhzUTNwlqk9lAecu/X7cP1ZOC/Wa2A=" + }, + "1.1.0": { + "checksum": "z53gbieRalN7oU+qY4gZgC+U9EfhbfAAnY4d8Wb5sYg=" + }, + "1.1.1": { + "checksum": "kTIqxcFUYPRiaV7etXM0HpD+fSaJw/+ePbFgjXW3Btk=" + }, + "1.1.2": { + "checksum": "euGuIXw57Wfb1sBktAhCRMd6DY8Xl07GOXOg88NF/Bk=" + }, + "1.1.6": { + "checksum": "P2BbaJn6jb7+ecBF6mJJnheQ4j8dtEZ8O4FLqLv8e8M=" + }, + "2.0.0": { + "checksum": "bFMN5hlkguPBHNaiusJPWZh6yhFnTShcY1mu0Ko5YMM=" + }, + "2.0.1": { + "checksum": "TfeKGNKMSPQqAKQ/IrnOaziMcLqC6tWSjKRWo5YHMLs=" + }, + "2.1.0": { + "checksum": "V1nc4Dr3tA6lrG2DKSmEzecmlFXsny+wcxz2SmVfJyY=" + } + } + }, + "npm:@metamask/tron-wallet-snap": { + "id": "npm:@metamask/tron-wallet-snap", + "metadata": { + "hidden": true, + "name": "Tron" + }, + "versions": { + "1.21.1": { + "checksum": "z4+3fdZhAyzb6R94sNJYeTuW/t7H48Qyuc3t72eraXw=" + }, + "1.25.0": { + "checksum": "RUgbv0GaqjyNwcbChml5Jg7ZvylzNZSGKPDBCN9MWVE=", + "clientVersions": { + "extension": ">=13.23.0", + "mobile": ">=7.70.0" + } + } + } + }, + "npm:@metamask/wasm-example-snap": { + "id": "npm:@metamask/wasm-example-snap", + "metadata": { + "hidden": true, + "name": "WebAssembly Example Snap" + }, + "versions": { + "0.37.2-flask.1": { + "checksum": "I3d7noxypEv9Szc1/MD7AIAmrgcX9YEpx1EtFoTCoWM=" + }, + "0.37.3-flask.1": { + "checksum": "mYgoreKol2M0vXCADK74P5y76F2ik5+/6WNiuYUmTug=" + }, + "1.0.0": { + "checksum": "dbAcz7LgrYbcKyQ/mmLD6xFyfNTPCAeLiOXh9Yq922k=" + }, + "2.0.1": { + "checksum": "mOjpTt807Z2LAfcu1exPS8dxsFH8s9iW+D6C52GVQqU=" + }, + "2.1.0": { + "checksum": "AMnwjxTjpz1sEo8xl3fzvambLqqcnTibH2X2gYqlUao=" + }, + "2.1.1": { + "checksum": "xvDOsWHm2VMzBoLlKkabI0CAr4vh7JJU0ErsfcxKTBo=" + }, + "2.1.2": { + "checksum": "H20Dsk8zqD/lNFMdLY+aTyLg8XuJQCXGpQueiaVwWBI=" + }, + "2.1.3": { + "checksum": "n4JE2r3hx1TX4nWT6BelHRyaNJnW5Q3b3pMMLHvSPb0=" + }, + "2.1.4": { + "checksum": "rNBULIRBi45r+MXpWUNwkSaWog2pNTfG5VYKZ676w6g=" + }, + "2.1.5": { + "checksum": "wdI83+z6Tq2JRwosE5vlj+gBM1oGo0C0kjZPkJcd9mA=" + } + } + }, + "npm:@metamask/webpack-plugin-example-snap": { + "id": "npm:@metamask/webpack-plugin-example-snap", + "metadata": { + "hidden": true, + "name": "Webpack Plugin Example Snap" + }, + "versions": { + "2.0.0": { + "checksum": "CHsW41YUXAecl+03+ViwwQmN1WmK3nVsXOaOjUxJ2QM=" + }, + "2.1.3": { + "checksum": "YvikqvHw0838qOaBrqjfegOyMSFM4ZwdyOH2qXode5M=" + } + } + }, + "npm:@mindsend/kadena-snap": { + "id": "npm:@mindsend/kadena-snap", + "metadata": { + "audits": [ + { + "auditor": "Veridise", + "report": "https://veridise.com/wp-content/uploads/2024/10/VAR_Kadena_240909_kadena_snap_V3.pdf" + } + ], + "author": { + "name": "Mindsend", + "website": "https://snak.mindsend.xyz" + }, + "category": "interoperability", + "description": "The Kadena Snap enables interaction with the Kadena blockchain via MetaMask, allowing users to manage Kadena accounts and sign transactions from the familiarity of their MetaMask wallet.\n Cross-chain transfers allow users to seamlessly move their KDA tokens across Kadena’s multi-chains. Learn more about Kadena’s multi-chain architecture: https://www.kadena.io/chainweb.\nLedger support enables users to use their Ledger hardware wallet for additional security.\nAfter installing the Kadena Snap, visit https://snak.mindsend.xyz/ to start using your MetaMask wallet with Kadena.\nThe snaK browser wallet supports:\n - Creating and managing Kadena accounts\n - Signing and sending KDA transactions\n - Switching between networks (mainnet/testnet/custom)\n - Using hardware wallets like Ledger\nFully documented and packaged as an npm Snap.\nSee https://docs.snak.mindsend.xyz for usage.", + "name": "Kadena", + "screenshots": [ + "./images/@mindsend/kadena-snap/1.jpg", + "./images/@mindsend/kadena-snap/2.png", + "./images/@mindsend/kadena-snap/3.png" + ], + "sourceCode": "https://github.com/mindsend-datatech/kadena-snap", + "summary": "Securely send and receive KDA with your MetaMask wallet", + "support": { + "contact": "https://discord.com/invite/zBAuJcu3eC", + "faq": "https://docs.snak.mindsend.xyz/faqs.html", + "knowledgeBase": "https://docs.snak.mindsend.xyz/" + }, + "website": "https://snak.mindsend.xyz" + }, + "versions": { + "1.0.7": { + "checksum": "cJcquQhDsvEpUc7EvHSwJ4UHMeqpiuJ7JO+G2pNu85w=" + }, + "1.0.8": { + "checksum": "suin9Czu4rPMzho6A3LHgqTkdlUhHmlDg0ZwBOnYDbY=" + } + } + }, + "npm:@multiversx/metamask-snap": { + "id": "npm:@multiversx/metamask-snap", + "metadata": { + "audits": [ + { + "auditor": "Hacken", + "report": "https://wp.hacken.io/wp-content/uploads/2024/06/Final_Report_Hacken_Multiverse-X_dApp_May_2024.pdf" + } + ], + "author": { + "name": "MultiversX", + "website": "https://multiversx.com/" + }, + "category": "interoperability", + "description": "The MultiversX Integration Snap brings the power of the MultiversX blockchain to your MetaMask wallet. With this snap, you can seamlessly interact with the MultiversX network, enabling you to perform secure transactions, manage your assets, and interact with dapps directly from your MetaMask interface.\n\nFeatures:\n\n- Secure Transactions: Execute secure and efficient transactions on the MultiversX blockchain.\n- Asset Management: Easily manage your MultiversX assets within MetaMask.\n- Dapp Interaction: Access and interact with decentralized applications on the MultiversX network.\n- User-friendly Interface: Enjoy a smooth and intuitive user experience integrated into your MetaMask wallet.\n\nHow to Use:\n\n1. Install MetaMask: Ensure you have the MetaMask extension installed in your browser. You can download it from MetaMask.\n2. Add the Snap: Open MetaMask and navigate to the Snap section to add the MultiversX Integration Snap.\n3. Connect to MultiversX: Follow the prompts to connect your MetaMask wallet to the MultiversX blockchain.\n4. Manage Assets: Use the MetaMask interface to view and manage your MultiversX assets.\n5. Perform Transactions: Initiate and confirm transactions securely on the MultiversX network.\n6. Explore dapps: Access and interact with various decentralized applications built on MultiversX.\n\nFor more detailed instructions and support, visit our documentation at MultiversX Snap Documentation: https://help.multiversx.com/en/articles/9453616-metamask-snap-integration.", + "name": "MultiversX", + "screenshots": [ + "./images/@multiversx/metamask-snap/1.png", + "./images/@multiversx/metamask-snap/2.png", + "./images/@multiversx/metamask-snap/3.png" + ], + "sourceCode": "https://github.com/multiversx/mx-metamask-snaps", + "summary": "Seamlessly interact with MultiversX blockchain and perform secure transactions.", + "support": { + "contact": "mailto:contact@multiversx.com", + "faq": "https://help.multiversx.com/en/articles/9453616-metamask-snap-integration" + }, + "website": "https://multiversx.com/metamask" + }, + "versions": { + "1.0.2": { + "checksum": "mlWGyqeOgzYwnAsDYlSptuZX0GJHH+idXVA9rvuDnRI=" + }, + "2.0.0": { + "checksum": "wkW7IjpfJtBGGkFDJNqsZvovlqC20TPFqn+POnbrK0g=" + } + } + }, + "npm:@near-snap/plugin": { + "id": "npm:@near-snap/plugin", + "metadata": { + "audits": [ + { + "auditor": "OtterSec", + "report": "https://github.com/here-wallet/near-snap/blob/main/ottersec.pdf" + } + ], + "author": { + "name": "HERE Wallet", + "website": "https://www.herewallet.app/" + }, + "category": "interoperability", + "description": "View and sign transactions for NEAR Protocol blockchain.\n\nFeatures:\n1. You can create an account on NEAR Protocol with ed25519 key\n2. You can sign transactions on NEAR Protocol\n3. FT token transfers and token additions are visualized\n4. You can export keys to a third-party wallet\n5. Meta-transactions on NEAR Protocol are supported", + "name": "NEAR Protocol", + "sourceCode": "https://github.com/here-wallet/near-snap", + "summary": "View and sign transactions for NEAR Protocol.", + "support": { + "contact": "https://discord.gg/vhDSpqbmFj", + "knowledgeBase": "https://github.com/here-wallet/near-snap#readme" + }, + "website": "https://my.herewallet.app/" + }, + "versions": { + "0.7.0": { + "checksum": "yR6Ldx32rWLhSRLNymGqxe+9wlJ8wPvmvtAqIxCfGa8=" + } + } + }, + "npm:@nightlylabs/metamask-move-snap": { + "id": "npm:@nightlylabs/metamask-move-snap", + "metadata": { + "audits": [ + { + "auditor": "OtterSec", + "report": "https://github.com/nightly-labs/move-snap/blob/main/audit/nightly_labs_audit_final.pdf" + } + ], + "author": { + "name": "Nightly", + "website": "https://nightly.app" + }, + "category": "interoperability", + "description": "Swap, Borrow, Lend, Earn and more with Movement apps using your Metamask.\n\nFull ecosystem support is in progress, and dApp developers can start testing and integrating using the Nightly wallet connector \nA working example is available here: https://movement-web3-template.nightly.app\n\nKey features:\n- Generate and manage Movement addresses securely\n- Interact with Movement based dApp\n- Execute smart contract transactions\n- Change between different Movement networks\n\nUsage:\n- Install the Snap through MetaMask\n-Connect to Movement network automatically\n- Start interacting with Movement dApps", + "name": "Move Wallet", + "screenshots": [ + "./images/@nightlylabs/metamask-move-snap/1.jpg", + "./images/@nightlylabs/metamask-move-snap/2.jpg", + "./images/@nightlylabs/metamask-move-snap/3.jpg" + ], + "sourceCode": "https://github.com/nightly-labs/move-snap", + "summary": "Manage tokens and interact with dApps on Movement network.", + "support": { + "contact": "https://discord.gg/Kkqq8nahcG", + "faq": "https://github.com/nightly-labs/move-snap/blob/main/FAQ.md", + "knowledgeBase": "https://github.com/nightly-labs/move-snap/blob/main/KNOWLEDGE.md" + } + }, + "versions": { + "0.1.6": { + "checksum": "d4wrUM/VAKV5r5GWKrKF+oIJ0Xd+o8czolSiT2+GIVk=" + } + } + }, + "npm:@nocturne-xyz/snap": { + "id": "npm:@nocturne-xyz/snap", + "metadata": { + "audits": [ + { + "auditor": "OtterSec", + "report": "https://ottersec.notion.site/Nocturne-Snap-51f214a222b24df4a938411502ca13cd" + } + ], + "author": { + "name": "Nocturne", + "website": "https://nocturnelabs.xyz" + }, + "description": "During the Nocturne onboarding flow, the user derives an alternative private key called their Nocturne spending key. This key controls the user's funds within Nocturne. The Nocturne MetaMask Snap stores and manages this spending key.\n\nNocturne Spending Key Derivation\nDuring the first user onboarding flow, the user is prompted to sign a fixed message. The produced signature serves as the user's spending key and is stored in the Nocturne Snap. After being stored, the key never leaves the Nocturne Snap and is only accessed by the Snap for producing signatures.\n\nRegistering Your Canonical Address\nA canonical Nocturne address is a public address that can be used to generate more Nocturne stealth addresses that belong to the owner of the corresponding Nocturne spending key. One of the last steps in the user-onboarding flow is for the user to register their canonical Nocturne address against their public Ethereum address to facilitate a convenient mapping. The Nocturne Snap will prompt the user to sign a message proving that they own the canonical Nocturne address. After that, the user generates a ZKP of the signature and then submits it to the canonical address registry contract to link their Nocturne address to their public wallet.\n\nSigning Operations\nAll operations that spend private funds, (transferring ETH to a fresh address, performing a private swap, etc) must be authorized from your Nocturne spending key. When a user wants to perform an operation, the Nocturne Snap will prompt the user to confirm they would like to authorize the operation. If the user hits 'Confirm,' the Snap will sign the operation with the user's spending key, authorizing the operation.", + "name": "Nocturne", + "sourceCode": "https://github.com/nocturne-xyz/snap", + "summary": "Enable private transactions with built-in asset privacy.", + "support": { + "contact": "https://discord.gg/MxZYtzzFmJ", + "knowledgeBase": "https://nocturne-xyz.gitbook.io/nocturne/users/metamask-snap" + }, + "website": "https://app.nocturne.xyz/" + }, + "versions": { + "0.10.2": { + "checksum": "+Cky/t82zETXWfy49UiObmoC68sgW1jz+/3NXIBhCC4=" + }, + "0.11.0": { + "checksum": "5/aWJTM0Rtj1zvba8ARJiQTXOGUeb0s3sRTWTou58TI=" + } + } + }, + "npm:@nodefortress/cc-snap": { + "id": "npm:@nodefortress/cc-snap", + "metadata": { + "author": { + "name": "Node Fortress", + "website": "https://nodefortress.io/" + }, + "category": "interoperability", + "description": "After installing the app, visit the companion app at https://ccsnap.io to deploy your account.", + "name": "CC by Node Fortress", + "sourceCode": "https://github.com/nodefortress/cc-snap", + "summary": "Manage Canton Network accounts and assets.", + "support": { + "contact": "mailto:wallet@nodefortress.io" + } + }, + "versions": { + "0.1.14": { + "checksum": "zmCRkePVLGVlbdBjof52OQqh14qum8XUq/I2y407rHE=" + } + } + }, + "npm:@nufi/cardano-metamask-snap": { + "id": "npm:@nufi/cardano-metamask-snap", + "metadata": { + "audits": [ + { + "auditor": "Sayfer", + "report": "https://sayfer.io/audits/metamask-snap-audit-report-for-nufi/" + } + ], + "author": { + "name": "NuFi", + "website": "https://nu.fi/" + }, + "category": "interoperability", + "description": "1. After installing the Snap, visit wallet.nu.fi to connect your MetaMask to the extended wallet. \n2. In the dapp directory, you'll find a list of Cardano dapps that support MetaMask. \n3. Enjoy!", + "name": "Cardano Wallet", + "screenshots": [ + "./images/@nufi/cardano-wallet/1.png", + "./images/@nufi/cardano-wallet/2.png", + "./images/@nufi/cardano-wallet/3.png" + ], + "sourceCode": "https://github.com/nufi-official/nufi-snap", + "summary": "Store, buy, manage ADA, tokens, and NFTs, and access DeFi applications on Cardano.", + "support": { + "contact": "https://support.nu.fi/support/tickets/new", + "faq": "https://nu.fi/metamask#faq", + "knowledgeBase": "https://support.nu.fi/support/solutions/80000463691" + }, + "website": "https://nu.fi/metamask/" + }, + "versions": { + "0.2.0": { + "checksum": "guxrkpSVtjygNnycQnk+6/0W81xeBOdMGZ9asuDBir0=" + }, + "0.2.1": { + "checksum": "WgxYBu6KhUDuTHS2+FSq9GI45Czosri2NKS1c0xvl1w=" + } + } + }, + "npm:@obsidia/xnap": { + "id": "npm:@obsidia/xnap", + "metadata": { + "audits": [ + { + "auditor": "OtterSec", + "report": "https://github.com/user-attachments/files/22505890/obsidia_xnap_audit_final.pdf" + } + ], + "author": { + "name": "Obsidia", + "website": "https://obsidia.io/" + }, + "category": "interoperability", + "description": "Xnap lets you securely manage and transact with Nano (XNO) in MetaMask using your existing SRP. You can also approve dapp requests for transactions and message signing, which enables features like online micropayments and signing into applications.", + "name": "Xnap: Nano Wallet", + "sourceCode": "https://github.com/ObsidiaHQ/xnap", + "summary": "Manage, send and receive Nano (XNO) in MetaMask", + "support": { + "contact": "mailto:contact@obsidia.io" + }, + "website": "https://xnap.xyz/" + }, + "versions": { + "1.0.0": { + "checksum": "QB+pPN18cdO++DaUNIzbJHVNv28zMbiBmE1J/nXcEgs=" + } + } + }, + "npm:@oneid-xyz/connect-snap": { + "id": "npm:@oneid-xyz/connect-snap", + "metadata": { + "author": { + "name": "OneID", + "website": "https://www.oneid.xyz/" + }, + "category": "name resolution", + "description": "OneID Snap allows users to send & receive their digital assets directly on Metamask using their OneID.\nRegister your OneID today: https://www.oneid.xyz/", + "name": "OneID", + "screenshots": [ + "./images/@oneid-xyz/connect-snap/1.png", + "./images/@oneid-xyz/connect-snap/2.png", + "./images/@oneid-xyz/connect-snap/3.png" + ], + "sourceCode": "https://github.com/coin98/connect-snap", + "summary": "Resolve OneID names to addresses.", + "support": { + "contact": "https://discord.gg/oneid-official", + "faq": "https://docs.oneid.xyz/product/oneid-snap-on-metamask#oneid-snap-faqs", + "knowledgeBase": "https://docs.oneid.xyz/product/oneid-snap-on-metamask#oneid-snap" + } + }, + "versions": { + "1.0.2": { + "checksum": "b6j5wDNI9bb6YNxBeIx7GDhFf8B5DRVILuB/E4xXZFE=" + } + } + }, + "npm:@partisiablockchain/snap": { + "id": "npm:@partisiablockchain/snap", + "metadata": { + "audits": [ + { + "auditor": "Veridise", + "report": "https://f8t2x8b2.rocketcdn.me/wp-content/uploads/2023/09/VAR-Partisia-Blockchain-Snap.pdf" + } + ], + "author": { + "name": "Partisia Blockchain", + "website": "https://partisiablockchain.com/" + }, + "category": "interoperability", + "description": "The Partisia Blockchain Snap allows dapp developers to use MetaMask for signing transactions towards Partisia Blockchain.\n\nAfter installing the Snap, visit the website to Sign in with MetaMask and manage your Partisia account.", + "name": "Partisia Blockchain", + "screenshots": [ + "./images/@partisiablockchain/snap/1.png", + "./images/@partisiablockchain/snap/2.png", + "./images/@partisiablockchain/snap/3.png" + ], + "sourceCode": "https://gitlab.com/partisiablockchain/tools/snap", + "summary": "Sign transactions for Partisia Blockchain.", + "support": { + "contact": "https://partisiablockchain.gitlab.io/documentation/get-support-from-pbc-community.html" + }, + "website": "https://browser.partisiablockchain.com/" + }, + "versions": { + "0.1.2": { + "checksum": "xrF1SkRRiUN/iuuxTO3lzF/gTciYRVVSzRap5soRhnA=" + }, + "0.2.1": { + "checksum": "r10QK64EMA0uFhZryfixi/+bP/eGoPW4T1czAs5tfyQ=" + }, + "0.3.0": { + "checksum": "5ZD5e2lXfNXSfiSqdoOdYaEjkEdqBevpykVL5ZjgsEY=" + } + } + }, + "npm:@pianity/arsnap": { + "id": "npm:@pianity/arsnap", + "metadata": { + "audits": [ + { + "auditor": "Sayfer", + "report": "https://sayfer.io/audits/pianity-snap" + } + ], + "author": { + "name": "Pianity", + "website": "https://pianity.com/" + }, + "category": "interoperability", + "description": "Access Arweave through MetaMask and interact with Arweave dapps.\n\nAfter installing the Snap, visit the website to manage your Arweave account.", + "name": "Arweave Wallet", + "screenshots": [ + "./images/@pianity/arsnap/1.png", + "./images/@pianity/arsnap/2.png", + "./images/@pianity/arsnap/3.png" + ], + "sourceCode": "https://github.com/pianity/arsnap", + "summary": "Access Arweave and interact with Arweave dapps.", + "support": { + "contact": "https://discord.gg/NW5RqQP338", + "faq": "https://github.com/pianity/arsnap/blob/main/packages/arsnap/FAQ.md" + }, + "website": "https://arsnap.org/" + }, + "versions": { + "0.2.1": { + "checksum": "5QhJ/Ojl+ArgAwok95ia+dNCMb9rjmCR0NmwDK8NnPc=" + }, + "0.2.2": { + "checksum": "zyeeE8ml0+Y29G8TiTp9oIpJFraGWetutzkHt7i8b78=" + } + } + }, + "npm:@polkagate/snap": { + "id": "npm:@polkagate/snap", + "metadata": { + "audits": [ + { + "auditor": "Sayfer", + "report": "https://sayfer.io/audits/metamask-snap-audit-report-for-polkagate-snap/" + } + ], + "author": { + "name": "PolkaGate", + "website": "https://polkagate.xyz/" + }, + "category": "interoperability", + "description": "Enables MetaMask to interact with tokens within the Polkadot ecosystem, including Polkadot, Kusama, and more.\n\nAfter installing the Snap, visit https://apps.polkagate.xyz/ to manage transactions such as fund transfers, staking, participating in crowdloans, and more.", + "name": "PolkaGate", + "screenshots": [ + "./images/@polkagate/snap/1.png", + "./images/@polkagate/snap/2.png", + "./images/@polkagate/snap/3.png" + ], + "sourceCode": "https://github.com/PolkaGate/snap", + "summary": "Explore Polkadot dapps and manage your tokens using MetaMask.", + "support": { + "contact": "mailto:polkagate@outlook.com", + "faq": "https://github.com/PolkaGate/snap/wiki/FAQs", + "knowledgeBase": "https://docs.polkagate.xyz/polkagate/metamask-snap-user-guide/installing-polkagate-snap" + }, + "website": "https://apps.polkagate.xyz/" + }, + "versions": { + "2.3.2": { + "checksum": "TwSx2jjvpNOaM04mhoI2HbR43ZmIm0xA6AKGPeukHxw=" + }, + "2.5.1": { + "checksum": "rGhTb7iYMQcVBoNjnBAHe1G6djpL4TR6V2r7Jfl3PSM=" + } + } + }, + "npm:@postfiat/pftl-snap": { + "id": "npm:@postfiat/pftl-snap", + "metadata": { + "audits": [ + { + "auditor": "Sayfer", + "report": "https://sayfer.io/audits/metamask-snap-audit-report-for-thewarp/" + } + ], + "author": { + "name": "Post Fiat", + "website": "https://postfiat.org/" + }, + "category": "interoperability", + "description": "If you have a MetaMask wallet now you have an PFTL one. Securely manage your PFT and interact with PFTL-based dapps directly from MetaMask.", + "name": "PFTL", + "screenshots": [ + "./images/@postfiat/pftl-snap/1.png", + "./images/@postfiat/pftl-snap/2.png", + "./images/@postfiat/pftl-snap/3.png" + ], + "sourceCode": "https://github.com/postfiatorg/pftl-snap", + "summary": "Connect to the Post Fiat blockchain.", + "support": { + "contact": "https://discord.gg/T4G78kveD5" + } + }, + "versions": { + "1.1.5": { + "checksum": "54X1+6twNRyYEgWygzpnfYrb1VyOxk3+5i3SLmxev40=" + } + } + }, + "npm:@pushprotocol/snap": { + "id": "npm:@pushprotocol/snap", + "metadata": { + "audits": [ + { + "auditor": "Consensys Diligence", + "report": "https://consensys.io/diligence/audits/2023/07/push-protocol-snap-for-metamask/" + } + ], + "author": { + "name": "Push Protocol", + "website": "https://push.org/" + }, + "category": "notifications", + "description": "The Push Snap is a MetaMask wallet enhancement that allows you to receive real-time notification alerts of your favourite web3 applications directly in your MetaMask wallet.\n\nAdd to MetaMask now.\n\n--\n\nTerms to know:\n\n- Channels: Channels simply represent any protocol or dapp that's activated itself on Push protocol and has the capability of sending notifications. For instance, Uniswap, ENS, Lens Protocol etc. are channels on Push Protocol that you can opt-in to.\n- Notifications: Notifications are alerts from any of the channels that user opts-in to. For example, loan liquidation alerts, new governance proposals, ENS domain name expiry or web3 news updates.\n\n—-Web3 users often interact with a plethora of decentralized applications (dapps) ranging from DeFi tools, to NFT marketplaces to media channels. With so many dapps, staying updated often demands constant attention and regular logins, resulting in an overwhelming user experience.\n\nThe Push Snap aims to resolve this issue by bringing all essential updates for the user directly into their MetaMask wallet. This eliminates the need to bounce between multiple web3 applications as the user's MetaMask wallet now acts as a unified notification center for all imperative web3 updates.\n\nGet Started in 4-Simple Steps\n\n1. Installation: Click on 'Add to MetaMask' button shown above. This initiates the process of adding the Push Snap to your MetaMask wallet.\n2. Setting-Up Push Snap: Once installed, you should be prompted to visit Push dapp, i.e., https://app.push.org/snap. Visit the dapp to proceed with next steps.\n3. Adding your Address: Once connected to the dapp, the Snap will require confirmation to add your address. Adding of address in the Snap means enabling your wallet to receive notifications.\n4. Opt-In to Channels: Once address is added, simply click on Get Started. This takes you to https://app.push.org/channels wherein you can opt-in to any of your favorite channels to receive real-time notifications.\n\nVideo Walk-through\n\nhttps://www.youtube.com/watch?v=LjPxKoYLiGs\n\nAdditional Features of Push Snap\n\n1. Address Selection: Users can add or remove their preferred addresses to the snap for notification whenever they want.\n2. Customization of Pop-Ups: Push Snap also allows users to toggle popup notifications at their convenience.", + "name": "Push", + "screenshots": [ + "./images/@pushprotocol/snap/1.png", + "./images/@pushprotocol/snap/2.png", + "./images/@pushprotocol/snap/3.png" + ], + "sourceCode": "https://github.com/ethereum-push-notification-service/push-protocol-snaps", + "summary": "Receive web3 notifications directly in your wallet.", + "support": { + "contact": "https://discord.com/invite/pushprotocol", + "faq": "https://app.push.org/snap/faq", + "knowledgeBase": "https://app.push.org/snap/knowledge" + }, + "website": "https://app.push.org/snap" + }, + "versions": { + "1.1.12": { + "checksum": "bLscj+khp9cAMhRM0+0+RMR0ZbT4LESnaSFBWUw7X5c=" + }, + "1.1.13": { + "checksum": "8nCT1jxp2n3KFx7rzJGAmJKO5XmSeAUrk97gE44Tde8=" + } + } + }, + "npm:@qtumproject/qtum-wallet": { + "id": "npm:@qtumproject/qtum-wallet", + "metadata": { + "audits": [ + { + "auditor": "Sayfer", + "report": "https://sayfer.io/audits/metamask-snap-audit-report-for-qtum/" + } + ], + "author": { + "name": "Qtum", + "website": "https://qtum.info/" + }, + "category": "interoperability", + "description": "The Qtum MetaMask Snap is an extension for MetaMask that enables users to manage Qtum tokens, including QRC20 variants, and interact seamlessly with Qtum decentralized applications (dapps) directly within their MetaMask wallet. The Snap supports core wallet functionalities and is designed for easy integration into existing Ethereum Virtual Machine (EVM) dapps, allowing developers to leverage Qtum effectively.", + "name": "Qtum Wallet", + "screenshots": [ + "./images/@qtumproject/qtum-wallet/1.png", + "./images/@qtumproject/qtum-wallet/2.png", + "./images/@qtumproject/qtum-wallet/3.png" + ], + "sourceCode": "https://github.com/qtumproject/qtum-extension-wallet", + "summary": "Seamlessly connect to the Qtum network, enabling dapp interactions through an easy-to-use adapter.", + "support": { + "contact": "mailto:support@qtum.info", + "faq": "https://github.com/qtumproject/qtum-extension-wallet?tab=readme-ov-file#qtum-wallet-faq", + "knowledgeBase": "https://github.com/qtumproject/qtum-extension-wallet?tab=readme-ov-file#qtum-wallet-knowledge-doc" + }, + "website": "https://www.qtum.org/developers/snap/" + }, + "versions": { + "0.2.0": { + "checksum": "SB/fFdS7jmrx1Fp/c98Gx2RQzo0+nbBOXeplPvYc6VU=" + } + } + }, + "npm:@quantumshield-js/snap": { + "id": "npm:@quantumshield-js/snap", + "metadata": { + "author": { + "name": "QuantumShield", + "website": "https://quantumshield.xyz/" + }, + "category": "interoperability", + "description": "QuantumShield PQC Snap brings post-quantum cryptography to MetaMask. It implements ML-DSA-65 (NIST FIPS 204, Security Level 3) — a lattice-based digital signature algorithm standardized by NIST in August 2024 to resist attacks from both classical and quantum computers. Quantum computers running Shor's algorithm will eventually break the ECDSA signatures that secure every Ethereum wallet today. QuantumShield prepares users for this threat by adding a second, quantum-resistant signature layer on top of the existing ECDSA infrastructure.\n\nWhat this Snap does:\nKey Generation — Generates ML-DSA-65 key pairs (1,952-byte public key, 4,032-byte private key) inside the Snap's isolated storage. Private keys never leave the Snap environment. Users can generate multiple labeled key pairs and manage them independently.\nHybrid Signing — Creates dual signatures that combine ECDSA (classical) and ML-DSA-65 (post-quantum) into a single 3,375-byte payload. A transaction is only valid when both signatures verify. This means security is maintained even if either algorithm is compromised individually.\nPQC-Only Signing — For scenarios where ECDSA is considered compromised, the Snap can produce ML-DSA-65-only signatures (3,310 bytes) that bypass ECDSA entirely.\nSignature Verification — Verifies the ML-DSA-65 component of both hybrid and PQC-only signatures locally within the Snap.\nKey Management — List, inspect, export, and delete key pairs. Key import is supported with automatic integrity verification (sign-and-verify check on import). Public key export enables on-chain registration with QuantumShield L2 smart accounts.\n\nThis Snap is designed for use with QuantumShield L2, an OP Stack-based Layer 2 that includes an on-chain ML-DSA-65 verification precompile. However, the key generation and signing functionality works independently — any dApp can integrate post-quantum signatures by calling the Snap's RPC methods.\n\nPermissions used:\nsnap_dialog (user confirmation before key generation, signing, and export), snap_manageState (encrypted key storage), snap_notify (operation notifications), endowment:rpc (dApp communication).\n\nNo network access is required. All cryptographic operations are performed locally using the @noble/post-quantum library, a JavaScript implementation audited and maintained by Paul Miller.", + "name": "QuantumShield PQC", + "sourceCode": "https://github.com/quantumshield-xyz/snap", + "summary": "Generates post-quantum key pairs and creates ECDSA + ML-DSA-65 hybrid signatures for QuantumShield L2", + "support": { + "contact": "mailto:develop@superlabs.studio", + "knowledgeBase": "https://quantumshield.xyz/snap" + } + }, + "versions": { + "0.1.5": { + "checksum": "b9iaMZN7D9Bv2hUqTv7+/Hfn/5K0YRXMKyegKoXPtSM=" + } + } + }, + "npm:@qubic-lib/qubic-mm-snap": { + "id": "npm:@qubic-lib/qubic-mm-snap", + "metadata": { + "audits": [ + { + "auditor": "Sayfer", + "report": "https://sayfer.io/audits/metamask-snap-audit-report-for-qubic/" + } + ], + "author": { + "name": "Qubic", + "website": "https://qubic.org" + }, + "category": "interoperability", + "description": "This Snap enables MetaMask users to interact with Qubic. Currently, it is designed for developers and integrators, with end-user functionality coming soon. To explore and integrate, visit: https://github.com/qubic/qubic-mm-snap/blob/main/FAQ.md", + "name": "Qubic Connect", + "screenshots": [ + "./images/@qubic-lib/qubic-mm-snap/1.png", + "./images/@qubic-lib/qubic-mm-snap/2.png", + "./images/@qubic-lib/qubic-mm-snap/3.png" + ], + "sourceCode": "https://github.com/qubic/qubic-mm-snap", + "summary": "Basic connector for the Qubic network.", + "support": { + "contact": "mailto:joetom@qubic.li", + "faq": "https://github.com/qubic/qubic-mm-snap/blob/main/FAQ.md" + }, + "website": "https://connect.qubic.world/" + }, + "versions": { + "0.0.3": { + "checksum": "p2rH2f3N6LNVyz+bqrAqo0RMqY6FmV+/W7IMoVvqZOk=" + } + } + }, + "npm:@quickintel/quickintel-snap": { + "id": "npm:@quickintel/quickintel-snap", + "metadata": { + "audits": [ + { + "auditor": "Veridise", + "report": "https://github.com/Quick-Intel/quickintel-snap/blob/main/VAR_quickintel_snap.pdf" + } + ], + "author": { + "name": "Quick Intel", + "website": "https://quickintel.io/" + }, + "category": "transaction insights", + "description": "Quick Intel Snap performs scans on any DEX, the Quick Intel window appears with audit results before you swap the token. Real-time data to protect you from potential scams!\n\nAfter installing the Snap, you will see the Quick Intel insights in the transaction confirmation screen.", + "name": "Quick Intel", + "sourceCode": "https://github.com/Quick-Intel/quickintel-snap", + "summary": "Real-time token risk analysis across 28 blockchains.", + "support": { + "contact": "https://discord.gg/quicki", + "faq": "https://docs.quickintel.io/metamask-snap/faq", + "knowledgeBase": "https://docs.quickintel.io/metamask-snap/introduction" + }, + "website": "https://quickintel.io/snap" + }, + "versions": { + "1.0.1": { + "checksum": "fDEVgkJ+8LZnQHX9vVDksf/EZP2nr5WKA5y14QJywyQ=" + } + } + }, + "npm:@rarimo/rarime": { + "id": "npm:@rarimo/rarime", + "metadata": { + "audits": [ + { + "auditor": "Halborn", + "report": "https://github.com/rarimo/rarime/blob/main/audits/halborn_2023-08-28.pdf" + } + ], + "author": { + "name": "Rarimo", + "website": "https://rarimo.com/" + }, + "category": "interoperability", + "description": "RariMe is a MetaMask Snap that safely holds any of your credentials and allows you to prove your identity without revealing any personal data. Powered by Rarimo Protocol and Zero-Knowledge Proof technology.\n\nThis Snap allows you to 1) receive credentials 2) create Zero Knowledge Proofs of your credentials and 3) submit proofs to dapps. For each of these steps, you will be automatically prompted by the identity providers and the dapps that have integrated with RariMe.\n\nRariMe will never access your private keys or compromise your security and control over your assets.", + "name": "RariMe", + "screenshots": [ + "./images/@rarimo/rarime/1.png", + "./images/@rarimo/rarime/2.png", + "./images/@rarimo/rarime/3.png" + ], + "sourceCode": "https://github.com/rarimo/rarime", + "summary": "Hold credentials securely and prove your identity without revealing personal data.", + "support": { + "contact": "https://discord.gg/Bzjm5MDXrU", + "faq": "https://rarimo.notion.site/rariME-FAQ-19ebf31d8eaf4475aa8e64a1cc558800", + "knowledgeBase": "https://rarimo.notion.site/RariMe-Knowledge-Doc-bf401216ae604f0faa490265f2ccd86f" + }, + "website": "https://dashboard.rarime.com/" + }, + "versions": { + "2.0.2": { + "checksum": "i0ljRZ0cephpKn1+G77icrHnm0Gh4soRcJ9b6xpQaXA=" + }, + "2.0.3": { + "checksum": "JYhh0dVzYXZVrMEI1gIfjYaZ4OEwGwGVaZmGrUgieXU=" + }, + "2.1.0": { + "checksum": "CQgk91hCMZDesbgW1yDO4bWYyHY6Lpwp3b1GK/zPxY8=" + }, + "2.1.1": { + "checksum": "8qJxnKDj9B1mL6nCqd3GcwaCpG4lPgfeOGaBKJk0Zpw=" + } + } + }, + "npm:@rss3/social-notifier-snap": { + "id": "npm:@rss3/social-notifier-snap", + "metadata": { + "audits": [ + { + "auditor": "SlowMist", + "report": "https://github.com/NaturalSelectionLabs/RSS3-Social-Notifier-Snap/blob/main/audit/SlowMist%20Audit%20Report%20-%20RSS3-Social-Notifier-Snap.pdf" + } + ], + "author": { + "name": "RSS3", + "website": "https://rss3.io/" + }, + "category": "notifications", + "description": "The RSS3 Social Notifier is a notification Snap allowing MetaMask users to connect all their on-chain social profiles (e.g. Lens, Farcaster) and sync existing social graphs. Users will get notified directly through MetaMask and stay tuned with their friends' latest activities in a human-readable style.\n\nAfter installing the Snap, visit the website at https://snap.rss3.io to connect your social profiles and configure notifications.", + "name": "RSS3 Social Notifier", + "screenshots": [ + "./images/@rss3/social-notifier-snap/1.png", + "./images/@rss3/social-notifier-snap/2.png", + "./images/@rss3/social-notifier-snap/3.png" + ], + "sourceCode": "https://github.com/NaturalSelectionLabs/RSS3-Social-Notifier-Snap", + "summary": "Stay on top of social activities from Lens, Farcaster, and more.", + "support": { + "contact": "https://discord.gg/vfhpMjdbGU", + "faq": "https://snap.rss3.io/" + } + }, + "versions": { + "0.1.13": { + "checksum": "F/41Grd5/wgk5Xpu6kkSAhFC2La75rLsX8f7iz6uzII=" + } + } + }, + "npm:@safeheron/mpcsnap": { + "id": "npm:@safeheron/mpcsnap", + "metadata": { + "additionalSourceCode": [ + { + "name": "MPC Algorithm Library", + "url": "https://github.com/Safeheron/safeheron-crypto-suites-cpp" + }, + { + "name": "Multi Party Sig CPP", + "url": "https://github.com/Safeheron/multi-party-sig-cpp/" + }, + { + "name": "MPC Snap WASM", + "url": "https://github.com/Safeheron/mpc-snap-wasm" + }, + { + "name": "Javascript SDK", + "url": "https://github.com/Safeheron/mpc-wasm-sdk" + }, + { + "name": "Snap App", + "url": "https://github.com/Safeheron/safeheron-snap-app" + } + ], + "audits": [ + { + "auditor": "Cure53", + "report": "https://cure53.de/pentest-report_safeheron-snap.pdf" + }, + { + "auditor": "Least Authority", + "report": "https://leastauthority.com/wp-content/uploads/2024/02/Safeheron_Crypto_Suites__Multiparty_ECDSA_Updated_Final_Audit_Report_Least_Authority.pdf" + } + ], + "author": { + "name": "Safeheron", + "website": "https://www.safeheron.com/" + }, + "category": "account management", + "description": "A fully decentralized MPC wallet with three key shards distributed across the MetaMask Extension and two mobile phones with the Safeheron Snap App installed. Use two devices to sign transactions.\n\n1. Secure and User-Friendly\nDistribute 3 key shards on 3 devices and utilize 2 devices to complete signature for a transaction.\n\n2. 100% Asset Control\nUsers have access to all 3 key shards and securely back them up via recovery phrases.\n\n3. Recovery\nIf one device is lost/stolen, users can use another 2 devices to recover a new key shard.\n\n4. Use MPC wallet in MetaMask\nSupport MetaMask Account Snap feature. After you back up your wallet, it will automatically add the wallet to your MetaMask Account. You can directly use the MPC wallet in MetaMask.\n\n5. Secure and convenient Web3 access\nBenefiting from the support of the MetaMask Account Snap feature, the Safeheron Snap wallet can easily connect to any Web3 application, offering hardware wallet-level security and the convenience of MPC signatures.\n\n6. Fully Decentralized\nUsers possess all 3 MPC key shards, without any cloud servers. MPC signing and communication are both performed on the user's device.", + "name": "Safeheron", + "sourceCode": "https://github.com/Safeheron/multi-mpc-snap-monorepo", + "summary": "MPC wallet with key shards distributed across devices.", + "support": { + "contact": "mailto:mpcsnap@safeheron.com", + "faq": "https://mpcsnap.safeheron.com/#/faq", + "keyRecovery": "https://github.com/Safeheron/snap-offline-recovery-tool" + }, + "website": "https://mpcsnap.safeheron.com" + }, + "versions": { + "2.4.8": { + "checksum": "lsLGMbBoP5VIViV28jKZ+edzfPZxvbIlPGOB3pDOn6w=" + } + } + }, + "npm:@secure-ci/snap": { + "id": "npm:@secure-ci/snap", + "metadata": { + "author": { + "name": "SCI", + "website": "https://www.sci.domains" + }, + "category": "transaction insights", + "description": "We aim to bolster security measures within the web3 ecosystem by establishing an on-chain registry that allows owners to verify which smart contracts should be allowed to interact with their web domains.\n\nSCI's purpose is to verify that websites are interacting with validated and authorized smart contracts minimizing user risks and exploits.\n\nBy installing the MetaMask SCI Snap, when making any interactions through MetaMask, you will be able to easily verify if the underlying transaction is trusted.", + "name": "SCI", + "screenshots": [ + "./images/@secure-ci/snap/1.png", + "./images/@secure-ci/snap/2.png", + "./images/@secure-ci/snap/3.png" + ], + "sourceCode": "https://github.com/sci-domains/snaps", + "summary": "Secure your transactions and interactions across the web3 ecosystem with MetaMask and the SCI protocol.", + "support": { + "contact": "mailto:support@sci.domains", + "faq": "https://discreet-xylocarp-fcc.notion.site/SCI-Metamask-Snap-FAQ-3425386e80a54f69afcbb90af8f5cb6b", + "knowledgeBase": "https://discreet-xylocarp-fcc.notion.site/How-Does-the-SCI-MetaMask-Snap-Work-32997a113f4a453fa75ded3d9098141f" + }, + "website": "https://sci.domains/#snap" + }, + "versions": { + "0.0.14": { + "checksum": "PChbGT2/bzUbrx2tvJ91w102n5CQHlXPZO0h49XxnTE=" + } + } + }, + "npm:@shapeshiftoss/metamask-snaps": { + "id": "npm:@shapeshiftoss/metamask-snaps", + "metadata": { + "audits": [ + { + "auditor": "Consensys Diligence", + "report": "https://consensys.io/diligence/audits/2023/07/metamask/partner-snaps-shapeshift-snap/" + } + ], + "author": { + "name": "ShapeShift", + "website": "https://shapeshift.com/" + }, + "category": "interoperability", + "description": "Support 11 chains including Bitcoin, Dogecoin, Cosmos, Litecoin, Binance Chain, THORChain, Bitcoin Cash and more in one Snap.\n\nAdd the Snap to your MetaMask, visit https://app.shapeshift.com, and connect with MetaMask to start using all the chains supported.\n\nPlease note: you must connect Account 1 to the ShapeShift website to use all the chains supported by the Snap. Hardware wallets or imported private keys are not supported with this feature.", + "name": "ShapeShift Multichain", + "screenshots": [ + "./images/@shapeshiftoss/metamask-snaps/1.jpg", + "./images/@shapeshiftoss/metamask-snaps/2.jpg", + "./images/@shapeshiftoss/metamask-snaps/3.jpg" + ], + "sourceCode": "https://github.com/shapeshift/metamask-snaps", + "summary": "Support 11 chains including Bitcoin, Dogecoin, Cosmos, Litecoin, and more.", + "support": { + "contact": "https://discord.com/invite/shapeshift", + "knowledgeBase": "https://docs.shapeshift.com/faq/protocols/metamask-snaps" + }, + "website": "https://app.shapeshift.com/" + }, + "versions": { + "1.0.0": { + "checksum": "sALq4aMfg09UKOAcC8f/P0EC36vihVjLxkQX2y3BP3c=" + }, + "1.0.9": { + "checksum": "CCfVhqwMAZKSm+PH+fULDXhdbaMgT5pKZsQEKXPZ32Q=" + } + } + }, + "npm:@silencelaboratories/silent-shard-snap": { + "id": "npm:@silencelaboratories/silent-shard-snap", + "metadata": { + "additionalSourceCode": [ + { + "name": "ECDSA TSS Algorithm", + "url": "https://github.com/silence-laboratories/ecdsa-tss-js" + }, + { + "name": "Dapp", + "url": "https://github.com/silence-laboratories/silent-shard-dapp" + }, + { + "name": "Mobile App", + "url": "https://github.com/silence-laboratories/silent-shard-mobile" + }, + { + "name": "Flutter SDK", + "url": "https://github.com/silence-laboratories/silent-shard-flutter-sdk" + } + ], + "audits": [ + { + "auditor": "Cure53", + "report": "https://cure53.de/pentest-report_silencelabs-snap.pdf" + }, + { + "auditor": "Cure53", + "report": "https://cure53.de/audit-report_silencelabs-ecdsa-lib.pdf" + }, + { + "auditor": "Cure53", + "report": "https://cure53.de/pentest-report_silencelabs-apps.pdf" + } + ], + "author": { + "name": "Silence Laboratories", + "website": "https://www.silencelaboratories.com/" + }, + "category": "account management", + "description": "The Silent Shard Snap brings a balanced notion of usability, security and user-empowerment with its “Distributed Self-Custody” design which leverages MPC cryptography. Using this Snap, users of accounts, inside MetaMask, would still have pure self-custody (all key shards are under user control and possession), while the key shards are distributed between their browser wallet and phone. \n\nSilent Shard enables an experience where the user is requested to approve transactions on their paired phone. This brings the user flow of the web3 wallet closer and more conforming to conventional 2FA, which is well accepted in traditional internet banking and fintech applications. \n\nThe Snap supports features like instant backup and recovery, and transaction security insights are to come. You can now bid goodbye to a seed phrase as a single point of failure and enjoy a fully decentralised experience.", + "name": "Silent Shard", + "screenshots": [ + "./images/@silencelaboratories/silent-shard-snap/1.png", + "./images/@silencelaboratories/silent-shard-snap/2.png", + "./images/@silencelaboratories/silent-shard-snap/3.png" + ], + "sourceCode": "https://github.com/silence-laboratories/silent-shard-snap", + "summary": "MPC-powered 2FA-like transaction approvals on phone.", + "support": { + "contact": "mailto:support+snap@silencelaboratories.com", + "faq": "https://www.silencelaboratories.com/silent-shard-snap#faq", + "keyRecovery": "https://github.com/silence-laboratories/silent-shard-offline-recovery-tool" + }, + "website": "https://snap.silencelaboratories.com" + }, + "versions": { + "1.2.10": { + "checksum": "5hFK3JOH2b3qTPG/4M3gii6KFupooUyS2tdt4wMEqh0=" + } + } + }, + "npm:@snowballmoney/metamask-snap": { + "id": "npm:@snowballmoney/metamask-snap", + "metadata": { + "author": { + "name": "Snowball Money", + "website": "https://www.snowball.money/" + }, + "category": "name resolution", + "description": "With MNS Snap, users can replace long wallet addresses with easy-to-remember identity names, enhancing transactions and the overall user experience.\n\nTo start using MNS Snap, claim your MNS identity on modular.name, install the MNS Snap from the MetaMask Snaps Directory, and enjoy the convenience of sending and receiving assets effortlessly in MetaMask.\n\nExperience a more intuitive way to manage your digital identity in the decentralized ecosystem with MNS Snap!", + "name": "Modular Naming Service", + "screenshots": [ + "./images/@snowballmoney/metamask-snap/1.png", + "./images/@snowballmoney/metamask-snap/2.png", + "./images/@snowballmoney/metamask-snap/3.png" + ], + "sourceCode": "https://github.com/snowballmoney/metamask-snap", + "summary": "Easily send and receive assets in MetaMask using MNS names—no more copying long addresses.", + "support": { + "contact": "https://discord.com/invite/jW4GzbdNBm", + "faq": "https://snowball-5.gitbook.io/snowball/modular-naming-service-mns/metamask-snaps/faq", + "knowledgeBase": "https://snowball-5.gitbook.io/snowball/modular-naming-service-mns/metamask-snaps/knowledge-base" + } + }, + "versions": { + "0.2.1": { + "checksum": "l7U8N83P7X1P+7fF7vL3ZwMwc4GXHBT3avwOomAt8wo=" + } + } + }, + "npm:@solflare-wallet/solana-snap": { + "id": "npm:@solflare-wallet/solana-snap", + "metadata": { + "audits": [ + { + "auditor": "Consensys Diligence", + "report": "https://consensys.io/diligence/audits/2023/08/solflare-metamask-snaps-solflare-sui-aptos/" + } + ], + "author": { + "name": "Solflare", + "website": "https://solflare.com/" + }, + "description": "Manage Solana-based tokens and NFTs, swap, stake, bridge from EVM to SOL, and connect to Solana apps with MetaMask.\n\nAfter installing the Snap, visit the website to connect and manage your Solana accounts.", + "name": "Solana Wallet", + "screenshots": [ + "./images/@solflare-wallet/solana-snap/1.png", + "./images/@solflare-wallet/solana-snap/2.png", + "./images/@solflare-wallet/solana-snap/3.png" + ], + "sourceCode": "https://github.com/solflare-wallet/solflare-snap", + "summary": "Manage Solana-based tokens, NFTs, swap, stake, bridge to SOL, and connect to Solana apps.", + "support": { + "contact": "https://academy.solflare.com/guides", + "faq": "https://solflare.com/metamask" + }, + "website": "https://solflare.com/metamask" + }, + "versions": { + "1.0.3": { + "checksum": "hyw8D7jdrDe4FGohp7hjn7miXCk5JVo7yohV5Q3I2io=" + }, + "1.0.4": { + "checksum": "g7+rMyiiRr/hkxpPCgyF/qKefm/5AT9oUr+G4AhHb4E=" + } + } + }, + "npm:@taker007/crypto-guardian-snap": { + "id": "npm:@taker007/crypto-guardian-snap", + "metadata": { + "author": { + "name": "HAJ Solutions, Inc", + "website": "https://github.com/taker007/crypto-guardian" + }, + "category": "transaction insights", + "description": "Crypto Guardian is an advisory-only MetaMask Snap that provides on-chain risk signals for Ethereum tokens before a user proceeds with an interaction. The Snap analyzes publicly available on-chain data related to a token or contract and presents a simple risk summary to the user using a confirmation dialog. It is designed to help users make more informed decisions, not to enforce or automate any action. Crypto Guardian does NOT sign transactions, send transactions, block transactions, read wallet balances, estimate gas, or move funds. It does not have access to private keys, seed phrases, or signing material. All analysis is read-only. How it works: When triggered, the Snap requests a risk assessment for the selected Ethereum token or contract. The result is displayed to the user as an informational dialog showing a risk level and supporting context. The user remains fully in control and may choose to proceed or stop on their own. Backend usage: Risk analysis is performed via a read-only backend service. Only the minimum information required to analyze on-chain risk is sent (such as a token or contract identifier). No personal data, wallet secrets, or transaction signing payloads are transmitted. Graceful degradation: If the backend service is unreachable or unavailable, Crypto Guardian does not fail silently. Instead, it displays a warning dialog and defaults the assessment to a high-risk, unverified state, allowing the user to decide how to proceed. Crypto Guardian is intended as an informational safety tool. It provides signals and context only and should not be considered financial advice or an automated security enforcement mechanism.", + "name": "Crypto Guardian", + "sourceCode": "https://github.com/taker007/crypto-guardian", + "summary": "Shows on-chain risk signals for Ethereum tokens so users can make informed decisions before proceeding. Advisory only.", + "support": { + "knowledgeBase": "https://github.com/taker007/crypto-guardian/blob/main/packages/snap/README.md" + } + }, + "versions": { + "1.1.1": { + "checksum": "cNlMbl70B1usNJxalMQiLdWUUULHHxxPWZPAi6Boyvo=" + } + } + }, + "npm:@taxdao/fintax-snap": { + "id": "npm:@taxdao/fintax-snap", + "metadata": { + "audits": [ + { + "auditor": "SlowMist", + "report": "https://github.com/slowmist/Knowledge-Base/blob/master/open-report-V2/blockchain-application/SlowMist%20Audit%20Report%20-%20fintax-snap.pdf" + } + ], + "author": { + "name": "FinTax", + "website": "https://www.fintax.tech" + }, + "category": "interoperability", + "description": "FinTax is the world's first professional tax and financial management software dedicated to crypto. It covers major compliance regions worldwide and supports one-click transaction imports and tax calculations. After installing the Snap, visit the website to connect and manage your crypto asset taxes and finance.", + "name": "FinTax for Crypto Tax", + "screenshots": [ + "./images/@taxdao/fintax-snap/1.png", + "./images/@taxdao/fintax-snap/2.png", + "./images/@taxdao/fintax-snap/3.png" + ], + "sourceCode": "https://github.com/InTaxDev/fintax-snap", + "summary": "Manage crypto asset taxes and finances.", + "support": { + "contact": "mailto:support@fintax.tech", + "faq": "https://docs.google.com/document/d/1oI8R7ZQdCvj16EGZEMRimGNQMph9tvniz-UJb8gIJHk/edit?usp=sharing", + "knowledgeBase": "https://docs.google.com/document/d/1BwIURbSHepV2CusFuBmrMMg3j24Tt1IpV5SYlu07cC4/edit?usp=sharing" + }, + "website": "https://www.fintax.tech/#/snap" + }, + "versions": { + "0.1.4": { + "checksum": "dMNPliBnqJJ3Rb+O9Xz4/7nXSetXsk4w6lJwf7du5K8=" + }, + "0.1.5": { + "checksum": "oipnBy/oZ5Beu1hJ20uASyk9rdscPn9+KsiadsRaqM4=" + } + } + }, + "npm:@tenderly/metamask-snap": { + "id": "npm:@tenderly/metamask-snap", + "metadata": { + "audits": [ + { + "auditor": "Sayfer", + "report": "https://github.com/Tenderly/tenderly-snap/blob/main/audits/2023-08-Metamask-Snap-PT-for-Tenderly.pdf" + } + ], + "author": { + "name": "Tenderly", + "website": "https://tenderly.co/" + }, + "category": "transaction insights", + "description": "Preview transactions before sending them on-chain to get valuable insights, avoid failed transactions, and save funds. Get human-readable information on transferred assets with corresponding dollar values for ERC-20 tokens and NFTs.\n\nThe Tenderly TX Preview insight will be displayed in the transaction confirmation flow. Before you can see the insight, you must configure the Snap with your Tenderly account. Visit the website to learn more.", + "name": "Tenderly TX Preview", + "screenshots": [ + "./images/@tenderly/metamask-snap/1.png", + "./images/@tenderly/metamask-snap/2.png", + "./images/@tenderly/metamask-snap/3.png" + ], + "sourceCode": "https://github.com/Tenderly/tenderly-snap", + "summary": "Preview transactions, get insights, and avoid failed transactions.", + "support": { + "contact": "mailto:metamask.snap@tenderly.co", + "faq": "https://docs.tenderly.co/how-to-install-tenderly-tx-preview-snap" + }, + "website": "https://docs.tenderly.co/how-to-install-tenderly-tx-preview-snap" + }, + "versions": { + "1.2.3": { + "checksum": "WuDywSqVFK/ELGbAuNHk/XkUn/mP3Y4S/Hyh3xXDkBw=" + } + } + }, + "npm:@tezoroproject/snap": { + "id": "npm:@tezoroproject/snap", + "metadata": { + "audits": [ + { + "auditor": "Consensys Diligence", + "report": "https://consensys.io/diligence/audits/2024/04/tezoro-snap/" + } + ], + "author": { + "name": "Tezoro, Inc.", + "website": "https://tezoro.io/" + }, + "category": "transaction insights", + "description": "Tezoro Snap provides a Digital Will service. Users can create a smart contract that will be able to recover assets and distribute them among beneficiaries. Users can choose under what circumstances their Digital Will will be executed: due to the inactivity of the wallet, on a specific date, through an executor on Etherscan or via Tezoro dashboard.\n\nTezoro Snap uses Snap's capabilities to provide notifications to users when their balance exceeds $2,000 and they should consider creating a Digital Will to ensure they don't lose access to assets.", + "name": "Tezoro", + "screenshots": [ + "./images/@tezoroproject/snap/1.png", + "./images/@tezoroproject/snap/2.png", + "./images/@tezoroproject/snap/3.png" + ], + "sourceCode": "https://github.com/tezoroproject/metamask-snap", + "summary": "Create an on-chain will for your digital assets.", + "support": { + "contact": "mailto:hello@tezoro.io", + "faq": "https://tezoroio.notion.site/FAQ-1fdb392f83eb4dd6b5f86ad9cd9ca357", + "knowledgeBase": "https://tezoroio.notion.site/Knowledge-Base-b689d40be72340c79582942f22bb4912" + }, + "website": "https://tezoro.io/" + }, + "versions": { + "0.9.0": { + "checksum": "RRXI8F6v4FhcElULjnydzjMiMzop95oPfQP3p2hof2c=" + } + } + }, + "npm:@token-kit/tapp-snap": { + "id": "npm:@token-kit/tapp-snap", + "metadata": { + "author": { + "name": "SmartToken Labs", + "website": " https://smarttokenlabs.com/" + }, + "category": "interoperability", + "description": "Tapp Snap is a new way for Tapp users to access their own Tapps -- a new kind of cross-platform mini app linking with a token.\nAfter installation, Tapp users can go to the Tapp sites via installed Tapp to finish any onchain/offchain actions.\nThis Snap makes MetaMask a Tapp Store.", + "name": "Tapp", + "screenshots": [ + "./images/@token-kit/tapp-snap/1.png", + "./images/@token-kit/tapp-snap/2.png", + "./images/@token-kit/tapp-snap/3.png" + ], + "sourceCode": "https://github.com/TokenScript-Framework/token-kit/tree/main/packages/tapp-snap", + "summary": "Access Tapps (cross-platform mini apps).", + "support": { + "contact": "mailto:v@smarttokenlabs.com", + "faq": "https://github.com/TokenScript-Framework/token-kit/blob/main/packages/tapp-snap/FAQ.md", + "knowledgeBase": "https://github.com/TokenScript-Framework/token-kit/blob/main/packages/tapp-snap/README.md" + }, + "website": "https://d3b4oczgnqtk98.cloudfront.net" + }, + "versions": { + "0.0.4": { + "checksum": "2dngDF7smvhq8M1qMs1hnYNO2ZmKvYTOlHc1V8UyfCw=" + } + } + }, + "npm:@tuum-tech/authflow-snap": { + "id": "npm:@tuum-tech/authflow-snap", + "metadata": { + "audits": [ + { + "auditor": "Cure53", + "report": "https://cure53.de/pentest-report_tuum-auth-snap.pdf" + } + ], + "author": { + "name": "Tuum Technologies", + "website": "https://www.tuum.tech/" + }, + "category": "interoperability", + "description": "AuthFlow manages both basic and verifiable credentials, and requires that Identify Snap is installed as a pre-requisite. There are two entry points, the homepage UI and the JSON-RPC API.\n\nVia the Snap homepage: \n- Store basic credentials - 'Store New Passwords'\n- Delete a basic credential - 'Delete Single Password'\n- Delete all basic credentials - 'Delete All Passwords'\n- Display basic credentials - 'Show All Passwords'\n- Display verifiable credentials - 'Get All Verifiable Credentials'\n- Delete all stored verifiable credentials - 'Delete All Verifiable Credentials'\n- Delete a single verifiable credential - 'Delete One Verifiable Credential'\n- Rename a verifiable credential with a friendly name - 'Rename Verifiable Credential'\n- Create a verifiable presentation with a comma separated list of verifiable credential names - 'Create Verifiable Presentation'\n- Create a sample verifiable credential - 'Create Sample Verifiable Credential'\n- Sync AuthFlow and Identify records of verifiable credentials - 'Sync With Identify'\n\nVia the JSON-RPC API\n- Send a basic credential to a dapp given a friendly name as input - 'getBasicCreds'\n- Send a verifiable credential to a dapp given a friendly name as input - 'getVerifiableCreds'\n- Create a verifiable presentation from a comma separated list of verifiable credentials and send to a dapp - 'Create Verifiable Presentation'", + "name": "AuthFlow", + "screenshots": [ + "./images/@tuum-tech/authflow-snap/1.png", + "./images/@tuum-tech/authflow-snap/2.png", + "./images/@tuum-tech/authflow-snap/3.png" + ], + "sourceCode": "https://github.com/tuum-tech/authflow-snap", + "summary": "Credential management for both basic and verifiable credentials.", + "support": { + "contact": "https://discord.gg/BsDqX3fhq4", + "faq": "https://github.com/tuum-tech/authflow-snap/wiki/FAQ", + "knowledgeBase": "https://github.com/tuum-tech/authflow-snap/wiki" + } + }, + "versions": { + "0.1.4": { + "checksum": "Cj1VBk1unamMq7Ns3uzqEU0xhWv3q8MuZapIhOdWEVY=" + } + } + }, + "npm:@tuum-tech/identify": { + "id": "npm:@tuum-tech/identify", + "metadata": { + "audits": [ + { + "auditor": "Cure53", + "report": "https://github.com/tuum-tech/identify/blob/main/SNAP_AUDIT_REPORT_BY_CURE53.pdf" + } + ], + "author": { + "name": "Tuum Technologies", + "website": "https://www.tuum.tech/" + }, + "description": "Extends the functionality of the most popular crypto wallet by adding Decentralized Identity.\n\nVisit the website to learn how to integrate Identify into your dapps.", + "name": "Identify", + "sourceCode": "https://github.com/tuum-tech/identify", + "summary": "Extends MetaMask by adding Decentralized Identity.", + "support": { + "contact": "mailto:developer@tuum.tech", + "faq": "https://docs.tuum.tech/identify/basics/faqs", + "knowledgeBase": "https://docs.tuum.tech/identify" + }, + "website": "https://docs.tuum.tech/identify/identify-snap/snap-rpc-apis/basic-apis/hello#live-demo-on-codepen" + }, + "versions": { + "1.5.0": { + "checksum": "ECg9tSmTGnEohIna/s0ECP3nGSyo1r3sue3QUU8xwlE=" + } + } + }, + "npm:@txfort/snap": { + "id": "npm:@txfort/snap", + "metadata": { + "author": { + "name": "TxFort", + "website": "https://txfort.com/" + }, + "category": "transaction insights", + "description": "TxFort: Security Shield is a professional transaction analysis tool designed to bring clarity and security to your MetaMask experience. Our goal is to empower users with human-readable insights, ensuring you know exactly what a transaction does before you sign it.\n\nBy providing a clear breakdown of smart contract interactions, TxFort helps prevent mistakes and protects your digital assets across multiple blockchain networks.\n\nKey Features:\n\n1. Clear Transaction Descriptions\nTxFort transforms complex blockchain data into plain English. Whether you are swapping tokens, interacting with a DeFi protocol, or minting an NFT, we provide a natural language summary of the transaction's purpose and its expected outcome.\n\n2. Comprehensive Security Insights\nOur analysis engine identifies potential risks within the transaction data. TxFort highlights dangerous contract permissions—such as broad token approvals—and provides warnings for suspicious transaction patterns that could lead to asset loss.\n\n3. Token and Permission Tracking\nSee exactly which assets are involved in a transaction. TxFort explicitly calls out token transfers and permission requests, ensuring you never inadvertently grant control of your wallet to an unverified contract.\n\n4. Seamless Multi-Chain Coverage\nSecurity should be consistent across all your activities. TxFort supports a wide range of EVM-compatible chains, including Ethereum, Polygon, Arbitrum, Optimism, and more, offering the same level of protection regardless of the network.\n\n5. Integrated User Experience\nTxFort insights are displayed directly within your MetaMask wallet. There is no need to visit external websites or use separate tools; your security analysis is available right where you need it most—at the moment of signing.\n\nHow to Use:\n\n1. Install the Snap: Add TxFort: Security Shield to your MetaMask wallet.\n2. Activate your Profile: Visit https://txfort.com/metamask to connect and initialize your account.\n3. Transact Securely: Every time you initiate a transaction, the TxFort tab in MetaMask will automatically provide you with detailed analysis and security indicators.\n\nProtect your assets and gain confidence in your blockchain interactions with TxFort. Visit https://txfort.com for support and more information.", + "name": "TxFort: Security Shield", + "sourceCode": "https://github.com/txfort/txfort-snap", + "summary": "Real-time transaction analysis, safety warnings, and clear descriptions before you sign.", + "support": { + "contact": "https://www.txfort.com/contact" + } + }, + "versions": { + "1.0.4": { + "checksum": "Kw9QHUASDr8/dwY3ciZ+rG7bIPISDYZ0CGnApeNXs4E=" + } + } + }, + "npm:@unipasswallet/unipass-snap": { + "id": "npm:@unipasswallet/unipass-snap", + "metadata": { + "audits": [ + { + "auditor": "SlowMist", + "report": "https://github.com/UniPassID/UniPass-Snap/blob/main/audits/2023-07-SlowMist%20Audit%20Report.pdf" + } + ], + "author": { + "name": "Account Labs", + "website": "https://www.accountlabs.com/" + }, + "category": "interoperability", + "description": "UniPass is a stablecoin payment product designed to enhance your MetaMask experience by harnessing the power of smart contract wallet capabilities.\n\nAfter installing the Snap, visit the website to connect and explore all the available features.", + "name": "UniPass", + "sourceCode": "https://github.com/UniPassID/UniPass-Snap/", + "summary": "Enhance the stablecoin payment experience with smart contract wallet capabilities.", + "support": { + "contact": "mailto:unipass-snap-support@accountlabs.com", + "faq": "https://accountlabs.notion.site/UniPass-FAQ-f14aee595f694f71812588309e62c5be", + "knowledgeBase": "https://accountlabs.notion.site/UniPass-Document-90ee049fb60b4601a2e3b43e3c5a7e1d" + }, + "website": "https://snap.unipass.xyz/" + }, + "versions": { + "0.1.1": { + "checksum": "ShI025dlcw6qUy79VxlSuy+eWmVkNTfZp4K00sZlQRU=" + } + } + }, + "npm:@unstoppabledomains/unstoppable-resolution-snap": { + "id": "npm:@unstoppabledomains/unstoppable-resolution-snap", + "metadata": { + "author": { + "name": "Unstoppable Domains", + "website": "https://unstoppabledomains.com/" + }, + "category": "name resolution", + "description": "Replace long, complex wallet addresses with an easy-to-read Unstoppable Domain to effortlessly send and receive crypto.\n\nAfter installing the Snap, you will be able to use Unstoppable Domains in the send flow.\n\nPlease note: this Snap is only compatible with MetaMask Extension version 12.4.1 and up, and .x names are only compatible with MetaMask Extension version 12.4.2 and up. Please make sure you are on the latest version of the MetaMask Extension before adding this Snap to MetaMask.", + "name": "Unstoppable", + "screenshots": [ + "./images/@unstoppabledomains/unstoppable-resolution-snap/1.png", + "./images/@unstoppabledomains/unstoppable-resolution-snap/2.png", + "./images/@unstoppabledomains/unstoppable-resolution-snap/3.png" + ], + "sourceCode": "https://github.com/unstoppabledomains/unstoppable-resolution-snap/", + "summary": "Simplify transactions with web3 domains.", + "support": { + "contact": "https://support.unstoppabledomains.com/support/tickets/new", + "faq": "https://unstoppabledomains.com/products/metamask#faq", + "knowledgeBase": "https://unstoppabledomains.com/products/metamask" + } + }, + "versions": { + "1.0.1": { + "checksum": "h04dnOTsyrv6eyXM/c9BGUGFOOZ4AlPxuVUOPMfsnW0=" + } + } + }, + "npm:@usecapsule/account-snap": { + "id": "npm:@usecapsule/account-snap", + "metadata": { + "additionalSourceCode": [ + { + "name": "Multi-Party Sig", + "url": "https://github.com/getpara/multi-party-sig" + } + ], + "audits": [ + { + "auditor": "Least Authority", + "report": "https://leastauthority.com/wp-content/uploads/2024/01/Capsule_MetaMask_Snap_Final_Audit_Report_Least_Authority.pdf" + }, + { + "auditor": "Least Authority", + "report": "https://leastauthority.com/wp-content/uploads/2024/02/Capsule_Signing_and_Permissioning_Toolkit_Updated_2.pdf" + } + ], + "author": { + "name": "Para", + "website": "https://getpara.com/" + }, + "category": "account management", + "description": "The Para Account Management Snap makes it easy to create secure, embedded MPC wallets with an email in the Metamask extension using an authenticator app or passkey. You can also connect to a Para wallet created in any other application. A note that Capsule has recently changed our name to Para. However, our npm package remains named @usecapsule/account-snap, and this is still the correct package.", + "name": "Para", + "privateCode": true, + "sourceCode": "https://github.com/getpara/mm-snap-keyring", + "summary": "MPC wallet that can be used anywhere with just an email", + "support": { + "contact": "mailto:support@getpara.com", + "faq": "https://docs.getpara.com/metamask/faq", + "keyRecovery": "https://github.com/getpara/mpc-export" + }, + "website": "http://snap.app.getpara.com/" + }, + "versions": { + "1.0.0": { + "checksum": "1wurDdau/BhAsdkeL42a+S/CVXwD8AvEV/biMm3ACso=" + } + } + }, + "npm:@ututrust/utu-metamask-snap": { + "id": "npm:@ututrust/utu-metamask-snap", + "metadata": { + "author": { + "name": "UTU Technologies", + "website": "https://utu.io/" + }, + "category": "transaction insights", + "description": "The UTU Trust Snap integrates the full review and reputation capabilities of UTU Protocol into your MetaMask wallet. This allows you to view feedback (star ratings, badges, text and video reviews, and UTU Trust Token (UTT) endorsements) about on-chain addresses from social networks (Telegram, X, and GitHub so far) in real-time as you browse the web, directly in your MetaMask, giving you a layer of 'social security' on top of any technical trust tools like smart contract analyzers that you may use.\n\nThe UTU Trust Snap also enables you to leave signals (star ratings, badges, text and video reviews, and UTT endorsements) about on-chain addresses directly from your MetaMask. When your UTT endorsements help future users find things they end up liking, you earn rewards in reputation (UTT) and cash ($UTU).", + "name": "UTU Trust", + "sourceCode": "https://gitlab.com/ututrust/utu-metamask-snap", + "summary": "View and leave signals on any address or asset", + "support": { + "contact": "mailto:support@utu.io", + "knowledgeBase": "https://docs.utu.io/04-faq/faq.html#id2" + }, + "website": "https://app.utu.io/dashboard?source=snap" + }, + "versions": { + "1.10.13": { + "checksum": "wZmm7zb+sGEEet9C4XHHVlRDA1pym4CLBH+V1bege6M=" + }, + "1.10.15": { + "checksum": "TzjIsdUK6/KwJ9oM1dfbUsLGU1fhgGTsZ2Fs4CBWVJg=" + } + } + }, + "npm:@vegaprotocol/snap": { + "id": "npm:@vegaprotocol/snap", + "metadata": { + "audits": [ + { + "auditor": "OtterSec", + "report": "https://ottersec.notion.site/Vega-Snap-7545db216bee4e128cfcac16d41896b6" + } + ], + "author": { + "name": "Vega", + "website": "https://vega.xyz/" + }, + "description": "Vega is an order book based DEX with no gas fees for trading. Deposit ERC20s and trade on the Vega appchain. Vega markets are created and controlled by the Vega community and any trader operating as a market maker can commit to provide liquidity and share fee revenue.", + "name": "Vega Protocol", + "sourceCode": "https://github.com/vegaprotocol/vega-snap", + "summary": "Trade on a gas-free order book-based DEX by depositing ERC20s.", + "support": { + "contact": "https://vega.xyz/discord" + }, + "website": "https://vegaprotocol.eth.limo/" + }, + "versions": { + "0.3.1": { + "checksum": "YL4cKtHZV6p2KJouMeXMvjCzpOA+4lLk3qfSDNNJZRw=" + }, + "1.0.1": { + "checksum": "CmTs/E+H30LSIIFLcbHosdISjn8Gow/sSPi4PrBQWKE=" + }, + "1.0.2": { + "checksum": "yhZUQOgl3oxKSyUwQa4F+Eh13aJ2ltz7KvBM7VTarxU=" + }, + "1.0.3": { + "checksum": "hM0iRQ77F71/Y1S5AwEF/sO/na/wR5M1uoa5xzMqsA4=" + } + } + }, + "npm:@vital-wallet/neo-snap": { + "id": "npm:@vital-wallet/neo-snap", + "metadata": { + "audits": [ + { + "auditor": "Hacken", + "report": "https://audits.hacken.io/vital-wallet/" + } + ], + "author": { + "name": "Neo", + "website": "https://neo.org/" + }, + "category": "interoperability", + "description": "With Vital, users can easily generate a Neo network address directly through the MetaMask wallet. This integration allows users to interact with the Neo blockchain without the hassle of managing Neo network private keys, offering a seamless and user-friendly experience.", + "name": "Vital Wallet", + "screenshots": [ + "./images/@vital-wallet/neo-snap/1.png", + "./images/@vital-wallet/neo-snap/2.png", + "./images/@vital-wallet/neo-snap/3.png" + ], + "sourceCode": " https://github.com/neo-ngd/neo-metamask-snap.git", + "summary": "Manage accounts on the Neo network.", + "support": { + "contact": "https://discord.com/invite/rvZFQ5382k" + }, + "website": "https://vitalwallet.xyz/" + }, + "versions": { + "0.1.2": { + "checksum": "KZ2eYSxf3G11WNH0fTXKobnneukRviupW0I3qw9QDSU=" + } + } + }, + "npm:@web3-antivirus/web3-antivirus-snap": { + "id": "npm:@web3-antivirus/web3-antivirus-snap", + "metadata": { + "audits": [ + { + "auditor": "Veridise", + "report": "https://f8t2x8b2.rocketcdn.me/wp-content/uploads/2023/11/VAR-Web3AntivirusSnap.pdf" + } + ], + "author": { + "name": "Web3 Antivirus", + "website": "https://web3antivirus.io" + }, + "category": "transaction insights", + "description": "Have your Web3 security guard right in your wallet. W3A Snap simulates transactions, runs thorough checks of all contracts, addresses, and assets you interact with, and evaluates their safety. If it detects any risks such as wallet drainers, honeypots, poisoning attacks, phishing, wash trading, malicious contract logic, scam assets or addresses, etc., you will receive a real-time alert.", + "name": "Web3 Antivirus", + "screenshots": [ + "./images/@web3-antivirus/web3-antivirus-snap/1.jpg", + "./images/@web3-antivirus/web3-antivirus-snap/2.jpg", + "./images/@web3-antivirus/web3-antivirus-snap/3.jpg" + ], + "sourceCode": "https://github.com/web3-antivirus/web3-antivirus-snap", + "summary": "Receive alerts about scams and risks like honeypots, phishing, and malicious contracts.", + "support": { + "contact": "https://web3antivirus.io/support", + "faq": "https://web3antivirus.io/snap/#faq", + "knowledgeBase": "https://web3antivirus.notion.site/W3A-Snap-Knowledge-Base-3158f8369eaa4b5cb5a4bee33108f7fc" + }, + "website": "https://web3antivirus.io/snap/" + }, + "versions": { + "0.1.5": { + "checksum": "//46Lf2S2PUtQB/rodthHFQsvXmEgEWuLhgBeHjimcQ=" + } + } + }, + "npm:@web3-name-sdk/snap": { + "id": "npm:@web3-name-sdk/snap", + "metadata": { + "audits": [ + { + "auditor": "SlowMist", + "report": "https://github.com/slowmist/Knowledge-Base/blob/master/open-report-V2/blockchain-application/SlowMist%20Audit%20Report%20-%20web3-name-snap_en-us.pdf" + } + ], + "author": { + "name": "SPACE ID", + "website": "https://space.id/" + }, + "category": "name resolution", + "description": "SPACE ID Web3 Domain Snap allows you to easily transfer assets using domain names instead of complex wallet addresses. It resolves top-level  domain names and Payment IDs issued on the SPACE ID platform, significantly simplifying transactions within MetaMask.\n\n- Top-Level Domains (TLDs) names, such as jerry.bnb\n\nSPACE ID Web3 Domain Snap resolves domain names across all EVM-compatible chains in MetaMask, supporting a wide range of domain name services such as .bnb, eth, .ip, .arb, .g, .mph, .wod, .duck, .zeta, .mode, .taiko, .mint, .manta, .zkf, .floki, .cake, .merlin, .tomo, and more (https://space.id/tld). \n\n- Payment ID, such as jerry@binance\n\nUsers can register a Payment ID on SPACE ID and link it to supported CEX addresses on both EVM-compatible chains (Ethereum, BNB Chain, Arbitrum, etc.) and non-EVM networks such as Bitcoin, Solana, TRON, Aptos, and Sui. Additionally, they can associate their Payment ID with frequently used wallets and on-chain addresses. The SPACE ID Web3 Domain Snap allows seamless resolution of all registered Payment IDs within MetaMask, streamlining transactions effortlessly.\n\nGet Started Easily:\n\n- Upgrade your Metamask to the latest version (https://support.metamask.io/configure/wallet/how-to-update-the-version-of-metamask/) to leverage all the features \n- Enable secure & simple transactions: Download SPACE ID Snaps from https://space.id/metamask\n- Register a domain or Payment ID if you haven’t yet: https://space.id\n\nNote: Make sure your MetaMask extension is up to date before downloading the SPACE ID Snap: https://support.metamask.io/managing-my-wallet/using-metamask/how-to-update-the-version-of-metamask/ \n\nHelpful Tutorials:\n\n- Update MetaMask: https://support.metamask.io/\n- Register a domain and a Payment ID: https://space.id/\n- Download SPACE ID Snaps https://space.id/metamask/\n- SPACE ID Snap Knowledge Base: https://docs.space.id/getting-started/using-domain-on-metamask-snap\n\nJoin Our Community:\n\n- X (formerly Twitter): https://x.com/SpaceIDProtocol/\n- Discord: https://discord.com/invite/spaceid/\n- Telegram: https://t.me/spaceid_news/\n- LinkedIn: https://linkedin.com/\n\nStay updated with the latest news on our blog (https://blog.space.id/) and our Youtube channel (https://www.youtube.com/@SPACEID-web3domains/). Unlock the power of decentralized identities, easier on-chain interactions, and secure and simplified payments with SPACE ID!", + "name": "SPACE ID Web3 Domain", + "screenshots": [ + "./images/@web3-name-sdk/snap/1.png", + "./images/@web3-name-sdk/snap/2.png", + "./images/@web3-name-sdk/snap/3.png" + ], + "sourceCode": "https://github.com/Space-ID/web3-name-snap", + "summary": "Easily transfer assets using domain names and Payment IDs instead of complex wallet addresses.", + "support": { + "contact": "https://discord.gg/spaceid", + "faq": "https://docs.space.id/getting-started/using-domain-on-metamask-snap-releasing/general-faq", + "knowledgeBase": "https://docs.space.id/getting-started/using-domain-on-metamask-snap-releasing/knowledge-base" + }, + "website": "https://space.id/metamask/" + }, + "versions": { + "0.0.7": { + "checksum": "xXoZsokWq7tBx+fuqWXZoWG/CcTT+IYbKYFCieRoaEk=" + } + } + }, + "npm:@web3mq/snap": { + "id": "npm:@web3mq/snap", + "metadata": { + "audits": [ + { + "auditor": "Least Authority", + "report": "https://github.com/MetaMask/snaps-registry/files/12604989/Least_Authority_Generative_Labs_MetaMask_Snap_Updated_Final_Audit.pdf" + } + ], + "author": { + "name": "Web3MQ", + "website": "https://www.web3mq.com/" + }, + "category": "notifications", + "description": "Web3-native decentralized communication protocol. Encrypted, efficient and borderless.\n\nWeb3MQ Snap provides more possibilities for building web3 social dapps. The website shows you an example of how it works. Read the documentation on GitHub to learn how to integrate the Snap with your dapp.", + "name": "Web3MQ", + "sourceCode": "https://github.com/Generative-Labs/Web3MQ-Snap", + "summary": "Web3-native decentralized communication protocol. Encrypted, efficient, and borderless.", + "support": { + "faq": "https://s3labs.notion.site/Web3MQ-Snap-Frequently-Asked-Questions-c705bcf4a0604b85830cca2283d0ab7b" + }, + "website": "https://web3mq-snap-demo.pages.dev/" + }, + "versions": { + "1.0.0": { + "checksum": "YeL3PfCT8hjTTHED2AD0BvsbkjNEjmC3pLxzjgXLFqE=" + } + } + }, + "npm:@xmtp/snap": { + "id": "npm:@xmtp/snap", + "metadata": { + "audits": [ + { + "auditor": "Least Authority", + "report": "https://leastauthority.com/blog/audits/audit-of-xmtp-metamask-snap/" + } + ], + "author": { + "name": "XMTP", + "website": "https://xmtp.org/" + }, + "category": "interoperability", + "description": "Use the “Sign in with XMTP” MetaMask Snap to securely and conveniently sign in to any web app built with XMTP.\n\nWhen you install the Snap, you give it permission to store your XMTP user keys in MetaMask secure storage. From then on, when you use an app you've authorized to work with Sign in with XMTP, the Snap seamlessly and securely allows the app to use those keys without accessing the key material directly, enabling you to start messaging without needing to provide a signature.", + "name": "Sign in with XMTP", + "sourceCode": "https://github.com/xmtp/snap", + "summary": "Securely sign in to any web app built with XMTP.", + "support": { + "contact": "mailto:support@xmtp.com", + "knowledgeBase": "https://xmtp.org/docs/tutorials/other/xmtp-metamask-snap" + }, + "website": "https://xmtp.org/docs/tutorials/other/xmtp-metamask-snap" + }, + "versions": { + "1.2.2": { + "checksum": "pHhTGrqjGkNoK/2wb64Zqxpo3TFnE2a5smfVt45VCRM=" + }, + "1.3.0": { + "checksum": "BIA5ZOGiZZrlYgJx6sdk0ifx+qMoOcaZO8dBBU3w5QA=" + }, + "1.3.6": { + "checksum": "nSaMsID9TJhlwTnR/oAoNTYVm/2IBEDzPVJbaFVwpSI=" + }, + "1.3.7": { + "checksum": "42saDUqoadEmdlwxBhkhDgbZIln1IKzuA6Xs7prmrEM=" + } + } + }, + "npm:@xrpname/snap": { + "id": "npm:@xrpname/snap", + "metadata": { + "author": { + "name": "XRP Web3 Identity", + "website": "https://xrpdomains.xyz" + }, + "category": "name resolution", + "description": "The XRP Name Snap simplifies your transactions with XRPName on MetaMask-transfer assets using xrp names instead of complex wallet addresses.\n\n\n\nCheck out our tutorials:\n\nRegister a xrp name: https://xrpdomains.xyz/app\nLink your EVM wallet to your xrp name: https://xrpdomains.xyz/ens\nDownload XRPName Snap: https://xrpdomains.xyz/snap", + "name": "XRP Name", + "sourceCode": "https://github.com/XRPDomains/XRPNameSnap", + "summary": "Transfer assets using xrp names instead of complex wallet addresses.", + "support": { + "contact": "info@xrpdomains.xyz", + "knowledgeBase": "https://xrpdomains.xyz/snap" + }, + "website": "https://xrpdomains.xyz/snap" + }, + "versions": { + "0.1.3": { + "checksum": "sjrISl4jK3Cx1QeHZsdKX6SE+QEnb3II0BEM7S7UZx8=" + } + } + }, + "npm:@xtreamly/xtreamly_slippage_predictor": { + "id": "npm:@xtreamly/xtreamly_slippage_predictor", + "metadata": { + "audits": [ + { + "auditor": "Sayfer", + "report": "https://sayfer.io/audits/metamask-snap-audit-report-for-xtreamly/" + } + ], + "author": { + "name": "Xtreamly", + "website": "https://info.xtreamly.io" + }, + "category": "transaction insights", + "description": "Xtreamly slippage prediction Snap provides insights and predicts slippage as well as volatility on DeX swaps.\n\nAfter installing the Snap, you will see the insights when swapping with ETH/USDT and ETH/USDC pairs on Uniswap V3.", + "name": "Xtreamly Slippage Predictor", + "screenshots": [ + "./images/@xtreamly/xtreamly_slippage_predictor/1.jpg", + "./images/@xtreamly/xtreamly_slippage_predictor/2.jpg", + "./images/@xtreamly/xtreamly_slippage_predictor/3.jpg" + ], + "sourceCode": "https://github.com/Xtreamly-Team/Slippage-Snap", + "summary": "Predict slippage and volatility in dynamic crypto markets.", + "support": { + "contact": "mailto:info@xtreamly.io", + "faq": "https://info.xtreamly.io/", + "knowledgeBase": "https://info.xtreamly.io/xtreamly-transforming-ethereum-with-ai-driven-liquidity-growth/product/snaps-user-guide" + }, + "website": "https://snap.xtreamly.io/" + }, + "versions": { + "1.0.25": { + "checksum": "1UXosQmu9xauCoCG0V2gF18rxnWL4tbjEnbJloKAUBQ=" + } + } + }, + "npm:@yigitkara/chain-guardian": { + "id": "npm:@yigitkara/chain-guardian", + "metadata": { + "author": { + "name": "YigitKara", + "website": "https://chain-guardian-site.vercel.app/" + }, + "category": "transaction insights", + "description": "Chain Guardian protects your crypto transactions from one of the most common and costly mistakes in web3: sending funds to an address on the wrong blockchain network. HOW IT WORKS\n\nEvery time you send a transaction in MetaMask, Chain Guardian automatically analyzes the destination address and checks if it is compatible with the network you are currently on. The result appears directly in your transaction confirmation screen before you click confirm. WHAT IT DETECTS\n\nChain Guardian currently detects address format mismatches for the following networks:\n- EVM chains (Ethereum, Polygon, BNB Smart Chain, Avalanche, Optimism, Arbitrum, Base, and more)\n- Solana\n- Bitcoin (Legacy, SegWit, and Bech32 formats)\n- Tron\n- XRP / Ripple\n- Litecoin\n- Cardano\n- Cosmos\n- Polkadot\n- Stellar WHAT YOU SEE\n\nGreen checkmark: The destination address format is compatible with your current network. Safe to proceed.\n\nRed warning: The destination address looks like it belongs to a different blockchain. Your funds would be permanently lost if you proceed. Chain Guardian will also suggest bridges you can use to send your funds to the correct network. Yellow warning: The address format is unrecognized. Proceed only if you are certain the address is correct. HOW TO USE IT\n\nInstall Chain Guardian and it works automatically. No configuration needed. Every transaction you initiate in MetaMask will be analyzed instantly. Source code: https://github.com/YigitKara/chain-guardian\nPackage: https://www.npmjs.com/package/@yigitkara/chain-guardian", + "name": "Chain Guardian", + "sourceCode": "https://github.com/YigitKara/chain-guardian", + "summary": "Never send crypto to the wrong chain again.", + "support": { + "contact": "https://github.com/YigitKara/chain-guardian/issues", + "knowledgeBase": "https://github.com/YigitKara/chain-guardian/blob/main/packages/snap/README.md" + } + }, + "versions": { + "0.1.3": { + "checksum": "z1Z5zz7zI8qpGLFErKa+xvx+fHaO60ny8CTY5WI+rvU=" + } + } + }, + "npm:@zenchain-protocol/zazen": { + "id": "npm:@zenchain-protocol/zazen", + "metadata": { + "author": { + "name": "Zenchain", + "website": " https://zenchain.io/" + }, + "category": "interoperability", + "description": "Zazen Snap: Secure Cloud Access Key Management within MetaMask\n\nZazen is a MetaMask Snap that provides a secure, encrypted storage solution for your Zenchain validator node cloud access keys directly within MetaMask. By integrating key management into your wallet, Zazen simplifies the process of deploying and accessing your validator nodes without the need for external password managers or manual key handling.\n\n\nKey Features:\n\n- Secure Storage: Zazen encrypts your cloud access keys, storing them securely within MetaMask's storage. This ensures that your sensitive information remains protected at all times.\n- Easy Access: Quickly deploy or log into your validator nodes without the hassle of managing keys externally. Zazen streamlines your workflow by keeping everything within MetaMask.\n- Future Expansion: Planned features include support for additional types of sensitive data and enhanced key management functionalities, providing greater flexibility and utility.\nTechnical and Security Considerations:\n\n- Encrypted Storage: Your keys are encrypted and stored securely within MetaMask's storage, accessible only when MetaMask is unlocked.\n- Permissions: Zazen requires the snap_manageState permission to manage the encrypted state within MetaMask.\n- Open-Source: Zazen is open-source, allowing transparency and community contributions to enhance security and functionality.\n- MetaMask Integration: Seamlessly integrates with MetaMask, ensuring a smooth and secure user experience without the need for additional software.", + "name": "Zazen", + "screenshots": [ + "./images/@zenchain-protocol/zazen/1.png", + "./images/@zenchain-protocol/zazen/2.png", + "./images/@zenchain-protocol/zazen/3.png" + ], + "sourceCode": "https://github.com/zenchain-protocol/zazen", + "summary": "Manage Zenchain validator node cloud access keys.", + "support": { + "contact": "https://github.com/zenchain-protocol/zazen/issues", + "faq": "https://docs.zenchain.io/docs/become-a-validator/zazen-snap-faq", + "knowledgeBase": "https://docs.zenchain.io/docs/become-a-validator/zazen-snap-knowledge-base" + }, + "website": "https://node.zenchain.io/" + }, + "versions": { + "0.0.6": { + "checksum": "qFquENdgWP6N7pRTHMcLDx0Geyljy8WFMzXycHTs2+o=" + } + } + }, + "npm:aegis-snap": { + "id": "npm:aegis-snap", + "metadata": { + "author": { + "name": "Lossless", + "website": "https://aegis.lossless.io/" + }, + "category": "transaction insights", + "description": "Lossless Aegis Insights is an add-on designed to analyze smart contracts without the need to interact with them. It provides reports and risk scores that help you assess the risks associated with both known and unknown smart contracts, helping you keep your funds safe.\nFeatures:\n- Easy setup\n- Wallet security, through transaction analysis\n- Get a risk score, assessment before committing a transaction\n- Get initial analysis of the address you will be interacting with.", + "name": "Lossless Aegis Insights", + "screenshots": [ + "./images/aegis-snap/1.png", + "./images/aegis-snap/2.png", + "./images/aegis-snap/3.png" + ], + "sourceCode": "https://github.com/Lossless-Cash/aegis-snap/", + "summary": "Enhance web3 safety by scanning smart contracts before interaction.", + "support": { + "contact": "mailto:hello@lossless.io", + "faq": "https://aegis.lossless.io/snap/" + }, + "website": "https://aegis.lossless.io/snap/" + }, + "versions": { + "0.2.1": { + "checksum": "2Y+1OTNbMoH8dBk5xBTNLhpG+GZEfa3KC9H2p2aL8fg=" + } + } + }, + "npm:ans-mmsnap": { + "id": "npm:ans-mmsnap", + "metadata": { + "author": { + "name": "Novalink", + "website": "https://www.novalink.tech/" + }, + "category": "name resolution", + "description": "The AutonomysNameService Snap provides name resolution services for Autonomys Name Service (ANS). It enables users to resolve domain names to Ethereum addresses directly within MetaMask.\n\nEvery user in the Autonomys network can call the `ANS Contract`(0xbdF673bd60232917Ce960AD268a8bF6441CeFDdD) to register their own ans domain name.\n\nFeatures: \n\n- Resolves domain names to Ethereum addresses\n- Integrates seamlessly with MetaMask\n- Directly interacts with ANS smart contracts through MetaMask for maximum security (no additional network calls)\n- Supports reverse resolution (coming soon).", + "name": "AutonomysNameService", + "sourceCode": "https://github.com/AetherLinkLabs/ans-mmsnap", + "summary": "Resolve Autonomys Name Service (ANS) domains to addresses.", + "support": { + "contact": "https://github.com/AetherLinkLabs/ans-mmsnap/issues/new", + "knowledgeBase": "https://github.com/AetherLinkLabs/ans-mmsnap/" + }, + "website": "https://autonomys.site/" + }, + "versions": { + "0.1.3": { + "checksum": "EczXi0rJR5XaXr804YNz3x326bS6PxJwoMz0ps/rhHc=" + } + } + }, + "npm:azero-wallet": { + "id": "npm:azero-wallet", + "metadata": { + "audits": [ + { + "auditor": "Sayfer", + "report": "https://sayfer.io/audits/metamask-snap-audit-report-for-alephzero/" + } + ], + "author": { + "name": "Bide", + "website": "https://bide.dev/" + }, + "category": "interoperability", + "description": "With Aleph Zero Wallet, you can send transaction in native asset of Aleph Zero network, and sign transactions and messages using your MetaMask wallet.", + "name": "Aleph Zero Wallet", + "sourceCode": "https://github.com/bide-dev/azero-wallet/tree/main/packages/snap", + "summary": "Transact and sign messages on the Aleph Zero network.", + "support": { + "contact": "mailto:support@bide.dev", + "faq": "https://bide-dev.github.io/azero-wallet/faq.html", + "knowledgeBase": "https://bide-dev.github.io/azero-wallet/" + }, + "website": "https://azero.dev/" + }, + "versions": { + "0.3.4": { + "checksum": "Yj5GtWV5+Wu6T4cszpsY26qbxA8+S10lbShM2jKYqbo=" + }, + "0.3.6": { + "checksum": "VtlEruX2c9v+92vQLvD4x0OMfGpoLK6/w9+QDqJkLgs=" + } + } + }, + "npm:bch-snap": { + "id": "npm:bch-snap", + "metadata": { + "audits": [ + { + "auditor": "Sayfer", + "report": "https://sayfer.io/audits/metamask-snap-audit-report-for-fexcash/" + } + ], + "author": { + "name": "Fex.Cash", + "website": "https://fex.cash" + }, + "category": "interoperability", + "description": "BCH Wallet is a MetaMask Snap built by the Fex.Cash team. It has the following features:\n\n1.⁠ ⁠Manage multiple BCH accounts\n\n2.⁠ ⁠Manage fungible token(FT) assets, including bch and cashtokens.\n\n3.⁠ ⁠Manage non-fungible token (NFT) assets, currently supporting CRC721 NFTs.\n\n4.⁠ ⁠View wallet transaction history.\n\n5.⁠ ⁠Sign the transactions.", + "name": "Bitcoin Cash Wallet", + "sourceCode": "https://github.com/fex-cash/bch-snap", + "summary": "Manage Bitcoin Cash and cashtoken assets.", + "support": { + "contact": "https://t.me/fexcash_disscusion", + "faq": "https://docs.fex.cash/wallet/snaps", + "knowledgeBase": "https://github.com/fex-cash/bch-snap/tree/main/packages/snap" + }, + "website": "https://fex.cash" + }, + "versions": { + "0.1.1": { + "checksum": "pyRkBzZcJWx8LywORfnkh6PyhgCuqb6sC9xLX35yyK0=" + } + } + }, + "npm:beranames_resolver": { + "id": "npm:beranames_resolver", + "metadata": { + "author": { + "name": "Berakin", + "website": "https://berakin.io/" + }, + "category": "name resolution", + "description": "Replace long, complex wallet addresses with an easy-to-read Beraname to effortlessly send and receive crypto.\n\nAfter installing the Snap, you will be able to use .bera and .🐻⛓️ names in the send flow.", + "name": "Beranames Resolver", + "screenshots": [ + "./images/beranames_resolver/1.jpg", + "./images/beranames_resolver/2.jpg", + "./images/beranames_resolver/3.jpg" + ], + "sourceCode": "https://github.com/Beranames/beranames-resolution-snap", + "summary": "The official name service of Berachain", + "support": { + "contact": "mailto:lethale@berakin.io", + "faq": "https://docs.beranames.com/integrate/how-to-use-beranames-with-metamask", + "knowledgeBase": "https://docs.beranames.com/" + }, + "website": "https://beranames.com/" + }, + "versions": { + "1.0.1": { + "checksum": "IdP6dEHAS46UnQaqAZajBPqJm/pOh1rtMzWHPfeAxkc=" + } + } + }, + "npm:bitbadges-snap": { + "id": "npm:bitbadges-snap", + "metadata": { + "author": { + "name": "BitBadges", + "website": "https://bitbadges.io/" + }, + "category": "transaction insights", + "description": "The BitBadges Snap allows you to gain insights into a user's BitBadges portfolio, allowing you to learn about their digital identity.\n\nIt scans relevant addresses from a transaction and checks / displays custom criteria requirements, such as badge / NFT ownership, credentials, lists, protocols, attestations, and more. Connect BitBadges with any chain or any app (over 7000+ supported).", + "name": "BitBadges", + "screenshots": [ + "./images/bitbadges-snap/1.png", + "./images/bitbadges-snap/2.png", + "./images/bitbadges-snap/3.png" + ], + "sourceCode": "https://github.com/bitbadges/bitbadges-snap", + "summary": "Gain insights into a user's BitBadges portfolio.", + "support": { + "contact": "https://discord.com/invite/TJMaEd9bar", + "knowledgeBase": "https://docs.bitbadges.io/overview/metamask-snap" + }, + "website": "https://bitbadges.io/snap" + }, + "versions": { + "0.1.1": { + "checksum": "8jMPCa9lCgK3ZTVLvXcnBmRBxvi75YRHWt7OXasukmE=" + } + } + }, + "npm:blockfence-insights": { + "id": "npm:blockfence-insights", + "metadata": { + "audits": [ + { + "auditor": "Least Authority", + "report": "https://leastauthority.com/blog/audits/audit-of-blockfence-metamask-snap/" + } + ], + "author": { + "name": "Blockfence", + "website": "https://blockfence.io/" + }, + "category": "transaction insights", + "description": "Blockfence empowers you to evaluate the safety of your transactions before giving them a green light. This ensures you steer clear of scams and fraudulent activities. Moreover, Blockfence Snap consolidates information from industry security leaders, providing clarity on the dapps you engage with, the contracts you transact with, and much more.\n\nAfter installing the Snap, you will see it in the transaction confirmation window.", + "name": "Blockfence", + "sourceCode": "https://github.com/blockfence-io/snap-insights", + "summary": "Blockfence empowers you to evaluate the safety of your transactions before giving them a green light. This ensures you steer clear of scams and fraudulent activities.", + "support": { + "contact": "mailto:support@blockfence.io", + "faq": "https://blockfence.io/snap/" + }, + "website": "https://blockfence.io/snap/" + }, + "versions": { + "0.1.2": { + "checksum": "vcMyFWDfB2eKE1pBjCE8E+2ZkZKsm+uQQDhoLGsZk8Y=" + } + } + }, + "npm:btcsnap": { + "id": "npm:btcsnap", + "metadata": { + "audits": [ + { + "auditor": "SlowMist", + "report": "https://github.com/slowmist/Knowledge-Base/blob/master/open-report-V2/blockchain-application/SlowMist%20Audit%20Report%20-%20BTCSnap_en-us.pdf" + } + ], + "author": { + "name": "Account Labs", + "website": "https://www.accountlabs.com/" + }, + "description": "Zion is the world's first application allowing users to directly manage Bitcoin within the MetaMask interface, without having to wrap tokens.\n\nAfter installing the Snap, visit the website to manage your Bitcoin accounts.", + "name": "Zion", + "sourceCode": "https://github.com/snapdao/btcsnap", + "summary": "Manage Bitcoin directly without wrapping tokens.", + "support": { + "contact": "mailto:snap@accountlabs.com", + "faq": "https://btc.justsnap.io/faq", + "knowledgeBase": "https://btc.justsnap.io/base-knowledge" + }, + "website": "https://btc.justsnap.io/" + }, + "versions": { + "2.0.3": { + "checksum": "Ci79gfFXP8eVY9fnvOFuOHycz7QairyYhbzbcuCKrNY=" + } + } + }, + "npm:casper-manager": { + "id": "npm:casper-manager", + "metadata": { + "audits": [ + { + "auditor": "Halborn", + "report": "https://github.com/casper-ecosystem/casper-manager/blob/main/audits/20_06_2023_Casper_Management_Snap_App_WebApp_Pentest_Report_Halborn_Final.pdf" + } + ], + "author": { + "name": "Div3", + "website": "https://casperholders.io/" + }, + "category": "interoperability", + "description": "Sign deploys and messages for the Casper Blockchain with your Casper account(s).\n\nAfter installing, visit the website to interact with the Casper Blockchain. You can also connect to the block explorer at https://div3.in", + "name": "Casper Manager", + "sourceCode": "https://github.com/casper-ecosystem/casper-manager", + "summary": "Sign deploys and messages for the Casper Blockchain with your Casper account(s).", + "support": { + "contact": "https://discord.com/invite/casperblockchain", + "faq": "https://github.com/casper-ecosystem/casper-manager/blob/main/FAQ.md" + }, + "website": "https://testnet.casperholders.io/" + }, + "versions": { + "1.0.3": { + "checksum": "QrcMLvXc2lTNWdgzWeMp83YUAk3XIUs27Ivm7iizD60=" + }, + "1.0.4": { + "checksum": "tV4HOIewc7A1oy9cZlJQ6Qn5ekmJmy3Ek6e0tSiUQsA=" + }, + "2.0.0": { + "checksum": "wNt6SCJZ2/2EMvv22pNJB8Ti0oWkjDll0PNs6Z+Fnmk=" + } + } + }, + "npm:dedaub-metamask-snap": { + "id": "npm:dedaub-metamask-snap", + "metadata": { + "audits": [ + { + "auditor": "Cure53", + "report": "https://cure53.de/pentest-report_dedaub-metamask-snap.pdf" + } + ], + "author": { + "name": "Dedaub", + "website": "https://dedaub.com/" + }, + "category": "transaction insights", + "description": "The Dedaub Transaction Simulator Snap is a tool that helps users simulate financial transactions. It allows users to verify the authenticity and credibility of the accounts involved and calculate the financial outcomes of their actions. The tool uses the Smart Contract database of Dedaub Watchdog in real-time, providing users with up-to-date and comprehensive information to make informed decisions.\n\nAfter installing the Snap, it will appear in the transaction confirmation screen.", + "name": "Dedaub", + "sourceCode": "https://github.com/Dedaub/metamask-snap", + "summary": "Simulate transactions, verify reputation, and calculate financial impact.", + "support": { + "faq": "https://docs.dedaub.com/docs/snap/faq", + "knowledgeBase": "https://docs.dedaub.com/docs/snap/introduction" + } + }, + "versions": { + "1.0.6": { + "checksum": "8+4DZuIMeHUT5HGvSnVXNWQnEBOX2Sti/iBE349dB2E=" + } + } + }, + "npm:defi-armor-snap": { + "id": "npm:defi-armor-snap", + "metadata": { + "audits": [ + { + "auditor": "Cure53", + "report": "https://github.com/Eulith/eulith-metamask-snap/blob/master/audit-report.pdf" + } + ], + "author": { + "name": "Eulith", + "website": "https://www.eulith.com/" + }, + "category": "transaction insights", + "description": "The DeFi Armor Snap brings the transaction simulation and policy engine of our standalone DeFi Armor product to MetaMask. Every transaction is deep-simulated and checked against our curated, customizable security policy. Any transfer of ETH or ERC-20 assets will be detected, even if it is deep inside the call stack. Warnings are issued when a transaction fails the security policy, along with a detailed explanation of what went wrong.", + "name": "DeFi Armor", + "sourceCode": "https://github.com/Eulith/eulith-metamask-snap", + "summary": "Protect on-chain assets with transaction simulation and a security policy.", + "support": { + "contact": "mailto:snap-support@eulith.com", + "faq": "https://docs.google.com/document/d/1ZA-sUHE0a8e1kViCfG3xM9hm3vpZh_ZNcZ0xP-9JpLs/edit", + "knowledgeBase": "https://docs.google.com/document/d/1ZA-sUHE0a8e1kViCfG3xM9hm3vpZh_ZNcZ0xP-9JpLs/edit" + }, + "website": "https://www.eulith.com/" + }, + "versions": { + "0.2.3": { + "checksum": "fd+wiJngXnDU/6Lt8tH7hQmyDTVLQsrVtQhyXqsFU60=" + }, + "0.2.4": { + "checksum": "M/AEe8l8UV+lIL0lqdlgFyDhoZ+IDysZ3r//tVXC2Ts=" + }, + "0.2.5": { + "checksum": "hp4PBkTppEaWdIlrKnM7801rAimN4Y9t1+AB59yFHB4=" + } + } + }, + "npm:dmail-snap": { + "id": "npm:dmail-snap", + "metadata": { + "author": { + "name": "Dmail", + "website": "https://dmail.ai/" + }, + "category": "notifications", + "description": "Users in Metamask can receive email alerts and notifications from the Dmail network right in their wallet interface after installing the Dmail Snap.\n\nOnce connected successfully, users will be notified of any new emails sent to their wallet address through the Dmail decentralized email system.\n\nThe notifications can be viewed directly within MetaMask, providing a seamless experience for managing both transactions and decentralized communications in one place.\n\nThis integration brings email functionality natively into MetaMask, making it easier to stay updated on Dmail messages without needing to constantly check the Dmail dApp interface.", + "name": "Dmail", + "screenshots": [ + "./images/dmail-snap/1.jpg", + "./images/dmail-snap/2.jpg", + "./images/dmail-snap/3.jpg" + ], + "sourceCode": "https://github.com/dmail-core/snap", + "summary": "You can receive e-mail notifications from the Dmail network in MetaMask.", + "support": { + "contact": "mailto:contact@mail.dmail.ai", + "faq": "https://t.me/dmailofficial", + "knowledgeBase": "https://dmailnetwork.gitbook.io/dmail-network" + }, + "website": "https://dmail.ai/" + }, + "versions": { + "0.1.6": { + "checksum": "pzKVgqs6yZsanDpAUH8zITn1Yk2+XEAfFfmwYsFnKr4=" + } + } + }, + "npm:filsnap": { + "id": "npm:filsnap", + "metadata": { + "audits": [ + { + "auditor": "Consensys Diligence", + "report": "https://consensys.io/diligence/audits/2023/08/metamask/partner-snaps-filsnap/" + } + ], + "author": { + "name": "Filecoin Foundation", + "website": "https://fil.org/" + }, + "category": "interoperability", + "description": "Adds Filecoin support to the MetaMask extension.\n\nFeatures:\n- Enables dapps access to Filecoin accounts using MetaMask.\n- Manage Filecoin accounts, check balance, address, export private key and more.\n- Send and receive FIL from native and FEVM addresses.\n- Sign Filecoin messages and arbitrary data.\n- Send Filecoin messages and estimate gas fees.\n- Transaction and signature insights for FEVM and Filecoin Onchain Cloud operations.\n- UCAN signature insights for EIP191 signers.", + "name": "Filecoin Wallet", + "screenshots": [ + "./images/filsnap/1.png", + "./images/filsnap/2.png", + "./images/filsnap/3.png" + ], + "sourceCode": "https://github.com/filecoin-project/filsnap/", + "summary": "Manage Filecoin native accounts within MetaMask.", + "support": { + "contact": "mailto:filecoin-snap@fil.org" + }, + "website": "https://filsnap.dev/" + }, + "versions": { + "1.10.4": { + "checksum": "mBnXqhB8kWQQ2L7/FX4SoY/jk0qG6cH0JPAQoG/lxa4=" + } + } + }, + "npm:freename-resolution-snap": { + "id": "npm:freename-resolution-snap", + "metadata": { + "author": { + "name": "Freename AG", + "website": "https://freename.io" + }, + "category": "name resolution", + "description": "The Freename Resolution Snap enhances your MetaMask wallet by integrating with the Freename Resolution API. With this Snap, you can resolve domain names across multiple providers, including Freename, ENS, Unstoppable Domains, and more, directly to their on-chain addresses.\n\nThis Snap leverages the official Snap SDK to provide seamless domain resolution, making it easier than ever to manage and interact with decentralized domain names through MetaMask.", + "name": "Freename Web3 Resolver", + "screenshots": [ + "./images/freename-resolution-snap/1.jpg", + "./images/freename-resolution-snap/2.jpg", + "./images/freename-resolution-snap/3.jpg" + ], + "sourceCode": "https://github.com/FreenameDomains/freename-resolution-snap", + "summary": "Adds domain resolution, supporting Freename, ENS, Unstoppable Domains, and more.", + "support": { + "contact": "https://freename.io", + "faq": "https://freename-1.gitbook.io/freename-docs/freename-web3-resolver/faq", + "knowledgeBase": "https://freename-1.gitbook.io/freename-docs/freename-web3-resolver/knowledge-base" + } + }, + "versions": { + "1.0.6": { + "checksum": "U/l83hOSMVwBr4Y9AD76Nlm1fNM5s3wNwiyce75IR1Q=" + } + } + }, + "npm:genius-miners-lite": { + "id": "npm:genius-miners-lite", + "metadata": { + "author": { + "name": "Shades", + "website": "https://github.com/poundbang" + }, + "category": "interoperability", + "description": "Genius Miners Lite is a read-only query of Genius miners for an account. Users install Genius Miners Lite to view their miners. They simply need to click `Vew Miners` button and the snap will query their connected miner's account on chain. It will then calculate miner's earnings and present the user with a table of miners and their parameters, including earnings, shares, principal and other pertinent information Genius users would like to know about their miners.", + "name": "Genius Miners Lite", + "screenshots": [ + "./images/genius-miners-lite/1.png", + "./images/genius-miners-lite/2.png", + "./images/genius-miners-lite/3.png" + ], + "sourceCode": "https://github.com/poundbang/genius-miners-lite", + "summary": "View Genius Financial Contract miners with snapshot earnings and contract state details.", + "support": { + "contact": "mailto:poundbang@gmail.com", + "faq": "https://github.com/poundbang/genius-miners-lite#readme", + "knowledgeBase": "https://github.com/poundbang/genius-miners-lite#readme" + } + }, + "versions": { + "0.1.5": { + "checksum": "y7Kl0chL6jhIXjX2pcKe0A71OdmGHE7zcyQjWdWpckI=" + } + } + }, + "npm:getheminames_resolver": { + "id": "npm:getheminames_resolver", + "metadata": { + "author": { + "name": "getHemiNames Resolver", + "website": "https://unstoppabledomains.com/" + }, + "category": "name resolution", + "description": "Simplify your cryptocurrency experience with HemiNames, the innovative solution that transforms complex blockchain interactions into user-friendly experiences. HemiNames replaces those intimidating, error-prone 42-character wallet addresses with intuitive, memorable .hemi domains that anyone can easily read, type, and share. This revolutionary naming system allows for seamless sending and receiving of digital assets across the cryptocurrency ecosystem, eliminating the anxiety of potential address errors that could result in lost funds.\n\nBy simply installing the MetaMask Snap, you'll instantly enable .hemi name resolution within your existing send flow, creating a frictionless transaction experience without changing your familiar workflow. HemiNames bridges the gap between technical blockchain complexity and everyday usability, making cryptocurrency accessible to everyone from seasoned traders to complete newcomers.", + "name": "getHemiNames Resolver", + "screenshots": [ + "./images/getheminames/1.png", + "./images/getheminames/2.png", + "./images/getheminames/3.png" + ], + "sourceCode": "https://github.com/getHemiNames/getHemiNames-resolution-snap", + "summary": "Simplify crypto transactions by replacing long wallet addresses with easy-to-read HemiNames for seamless sending and receiving.", + "support": { + "contact": "https://discord.com/invite/hemixyz", + "faq": "https://discord.com/invite/hemixyz", + "knowledgeBase": "https://explorer.hemi.xyz/" + } + }, + "versions": { + "0.1.3": { + "checksum": "qGq6KkKi1lDzr00zoIN4GgDc8CHYsjUhMzaYtY0bKcQ=" + } + } + }, + "npm:hapilabs-snap": { + "id": "npm:hapilabs-snap", + "metadata": { + "audits": [ + { + "auditor": "Hacken", + "report": "https://hacken.io/audits/hapi-snap/" + } + ], + "author": { + "name": "HAPI", + "website": "https://hapi.one/" + }, + "category": "transaction insights", + "description": "HAPI Snap, developed by the HAPI Team, is an advanced tool for blockchain threat detection, providing users with the means to protect their digital assets from potential risks.\n\nMain Features:\n\n1. Data Aggregation: Gathers comprehensive threat data from diverse sources.\n\n2. AI Threat Detection: Utilizes AI for real-time risk assessment.\n\n3. Wallet Security Enhancement: Offers transaction analysis, phishing protection, and alerts.\n\n4. Free Access: Enables thorough due diligence without cost.\n\nAdvantages:\n\n- Superior Protection: Shields against a wide range of blockchain threats.\n\n- Informed Transactions: Facilitates educated decision-making with detailed threat data.\n\n- User-Friendly: Simple and automated monitoring for ease of use.\n\n- Cost-Effective: Free, unlimited access to security tools and data.\n\nEase of Use:\n\n- Quick setup, offering automated threat monitoring and intuitive access to security insights, making it accessible for all users without extra fees.", + "name": "HAPI", + "screenshots": [ + "./images/hapilabs-snap/1.png", + "./images/hapilabs-snap/2.png", + "./images/hapilabs-snap/3.png" + ], + "sourceCode": "https://github.com/HAPIprotocol/hapilabs-snap", + "summary": "Receive alerts about blockchain threats and risky activities.", + "support": { + "contact": "mailto:i.am.hapi@hapi.one", + "faq": "https://hapi.one/snap", + "knowledgeBase": "https://hapi.one/snap" + }, + "website": "https://hapi.one/snap" + }, + "versions": { + "1.0.2": { + "checksum": "84epmblZfaiYOhWLvIClfovtKJ3giY/DddsaEsDxP1k=" + } + } + }, + "npm:hashdit-snap-security": { + "id": "npm:hashdit-snap-security", + "metadata": { + "audits": [ + { + "auditor": "SlowMist", + "report": "https://github.com/slowmist/Knowledge-Base/blob/master/open-report-V2/blockchain-application/SlowMist%20Audit%20Report%20-%20HashDit-Snaps_en-us.pdf" + } + ], + "author": { + "name": "HashDit", + "website": "https://www.hashdit.io/" + }, + "category": "transaction insights", + "description": "HashDit protects your funds with real-time risk warnings and detailed insights on smart contracts, transactions, and URLs for Binance Smart Chain and Ethereum.\n\nWhat is HashDit Snap?\n\nHashDit Snap uses our API to provide users with a risk assessment before their transactions are executed. Once installed, it returns a risk level ranging from low to critical for each of our security features.\n\nFeatures\n\n- Transaction Screening: HashDit analyzes transaction data before you engage with potentially vulnerable or malicious smart contracts. This protects users against scams such as rug pulls, honeypots, wallet drainers, high-risk contract calls, and other smart contract risks.\n- Address Poisoning Protection: HashDit checks for similarities between all of your addresses and the addresses you are engaging with. If any resemblance is detected, a warning will be displayed, protecting you from address poisoning attacks.\n- Blacklist/Whitelist Screening: HashDit compares addresses against our database of blacklisted addresses and smart contracts known to be scammers or malicious. It also checks against our database of whitelisted addresses that are highly trusted within the ecosystem.\n- URL Screening: HashDit matches websites against our comprehensive database of spam, malware, social engineering, phishing, and scam websites.\n- Function Call Insights: View which functions are being called and the exact value of each paraHashDit protects your funds with real-time risk warnings and detailed insights on smart contracts, transactions, and URLs for Binance Smart Chain and Ethereum.\n\nWhat is HashDit Snap?\n\nHashDit Snap uses our API to provide users with a risk assessment before their transactions are executed. Once installed, it returns a risk level ranging from low to critical for each of our security features.\n\nFeatures\n\n\nUnverified Checks: Receive instant warnings when interacting with unverified smart contracts or executing unknown and uncommon functions, helping you avoid potential risks.\n\nSignature Screening: HashDit analyzes signature requests in real-time, detecting and alerting users to potentially malicious activity for safer transactions.\n\nAddress Poisoning Protection: Prevent address poisoning attacks by ensuring the addresses you interact with do not closely resemble your own. If any similarities are detected, HashDit immediately issues a warning.\n\nTransaction Risk Analysis: Before executing a transaction, HashDit scans smart contract interactions to identify vulnerabilities and potential threats, including rug pulls, honeypots, wallet drainers, and other high-risk contract calls.\n\nBlacklist & Whitelist Screening: HashDit verifies addresses against a curated database of known malicious actors while also recognizing highly trusted entities within the ecosystem.\n\nURL Security Check: Stay safe from online threats—HashDit screens websites against an extensive database of phishing, malware, scam, and social engineering sites.\n\n\nHow To Install HashDit Snap\n\nThe installation guide can be found here: https://hashdit.gitbook.io/hashdit-snap/usage/installing-hashdit-snap\n\nHow To Use HashDit Snap\n\nOnce the HashDit Snap is installed, the security features are entirely automatic. The HashDit Snap will provide an insight before a transaction is executed by a user. In the transaction screen, a user can switch to the HashDit Security tab to view the risks involved with their transaction.\n\nNetwork Support\n\nHashDit Snap is fully supported on the Binance Smart Chain and Ethereum. The snap can provide URL Screening and Address Poisoning Protection on all other networks supported by MetaMask.\n\nSecurity And Permissions\n\nHashDit Snap does not have access to the user's private keys. It is limited to reading transactions and providing a transaction insight. The only transaction initiated by the Snap is a safe signature request dispatched during installation.\n\nDocumentation\n\nhttps://hashdit.gitbook.io/hashdit-snap\n\nAbout HashDit \n\nHashDit is a Web3 Security Firm focused on providing a safe ecosystem for both protocol users and smart contract developers on the BNB Chain. The central objective is to furnish crucial threat intelligence to empower everyday DeFi investors in making well-informed decisions. Navigating this DeFi intricate landscape poses challenges even for seasoned investors, let alone newcomers. HashDit aims to bridge this knowledge gap by offering timely and comprehensive threat intelligence on DeFi projects. HashDit is empowering PancakeSwap, Trust Wallet, and BscScan with our API.", + "name": "HashDit Security", + "sourceCode": "https://github.com/hashdit/metamask-snap", + "summary": "Receive real-time risk warnings and detailed transaction insights.", + "support": { + "contact": "mailto:support@hashdit.io", + "faq": "https://hashdit.gitbook.io/hashdit-snap/information/faq-and-knowledge-base", + "knowledgeBase": "https://hashdit.gitbook.io/hashdit-snap" + }, + "website": "https://www.hashdit.io/en/snap" + }, + "versions": { + "1.0.2": { + "checksum": "WQpKP4qbE4GvmOc4PuO1yadpIOfEr/IU0E9lxmDUGa8=" + } + } + }, + "npm:hln-resolver-snap": { + "id": "npm:hln-resolver-snap", + "metadata": { + "author": { + "name": "Hyperliquid Names", + "website": "https://hlnames.xyz/" + }, + "category": "name resolution", + "description": "Hyperliquid Names lets users seamlessly use .hl names in place of wallet addresses on HyperEVM. Users can simply type a .hl name in the address field, and the snap will automatically resolve it to the correct wallet address. This snap only runs on HyperEVM (chainId 999) and .hl TLDs.", + "name": "Hyperliquid Names", + "sourceCode": "https://github.com/HLnames/hln-resolver-snap", + "summary": "Resolve your .hl name on HyperEVM.", + "support": { + "contact": "https://discord.gg/9bTeZgE8E3", + "knowledgeBase": "https://hyperliquid-names.gitbook.io/hyperliquid-names/hyperliquid-names-on-metamask" + } + }, + "versions": { + "0.1.3": { + "checksum": "OVipIcwmpfxMZrcAaWvjp8ODPE7u5sURjJXNibFS694=" + } + } + }, + "npm:hns-id": { + "id": "npm:hns-id", + "metadata": { + "author": { + "name": "namebase", + "website": "https://www.namebase.io/" + }, + "category": "name resolution", + "description": "The MetaMask Snap for HNS.ID enhances the MetaMask wallet by enabling domain resolution for HNS.ID domains and improving ENS resolution on EVM-compatible chains. This Snap provides users with broader support for hns.id domains and expanded functionality for interactions across different networks.\n\n\nKey Features:\n\n- Multi-Chain Support: Resolves HNS.ID domains across various EVM chains, ensuring seamless domain interactions within MetaMask.\n\n- ENS Enhancement: Preserves and improves ENS resolution functionality by enabling CCIP-linked ENS domain resolution on networks beyond Ethereum mainnet.\n\n- Effortless Integration: Installs directly within MetaMask, adding domain resolution capabilities without interfering with existing ENS lookups.\n\n- Secure Permissions: Requires internet access for domain resolution and permissions for domain/address look-ups.\n\n\nVisit: https://hns.id for more information about the platform and how to get started.\n\n\nThis Snap helps bridge the gap for users needing enhanced domain resolution capabilities, offering a streamlined experience without disrupting standard MetaMask operations.", + "name": "HNS ID Name Resolution", + "sourceCode": "https://github.com/namebasehq/hns-id-mm-snap", + "summary": "Resolve hns.id domains natively on multiple EVM blockchains.", + "support": { + "contact": "mailto:support@hns.id", + "faq": "https://docs.hns.id/resolving-domains/metamask-snap" + }, + "website": "https://hns.id/" + }, + "versions": { + "0.1.16": { + "checksum": "mXQW3g18buic9nB20A9PYjYH94XkKQpYwckVXvKEKEg=" + } + } + }, + "npm:iotex-snap": { + "id": "npm:iotex-snap", + "metadata": { + "author": { + "name": "IoTeX Network", + "website": "https://iotex.io/" + }, + "category": "name resolution", + "description": "Unleash the power of IoTeX directly in MetaMask with the IoTeX Snap! This Snap enables you to:\n\n- Send tokens to io addresses or INS domains\n- Seamlessly convert addresses between io and 0x formats\n- Get real-time updates and information about DePIN projects\n\nThe IoTeX Snap is designed for a smooth, community-driven experience that keeps you at the forefront of decentralized and physical networks (DePIN). Boost your wallet with the power of IoTeX today!", + "name": "IoTeX", + "screenshots": [ + "./images/iotex-snap/1.png", + "./images/iotex-snap/2.png", + "./images/iotex-snap/3.png" + ], + "sourceCode": "https://github.com/iotexproject/iotex-snap/", + "summary": "Send tokens to io addresses or INS domains, convert addresses, and track DePIN projects.", + "support": { + "contact": "https://discord.com/invite/q5eYde2CU7", + "faq": "https://github.com/iotexproject/iotex-snap/blob/main/packages/snap/README.md#iotex-metamask-snap--faq", + "knowledgeBase": "https://github.com/iotexproject/iotex-snap/blob/main/packages/snap/README.md#iotex-metamask-snap--knowledge-base" + } + }, + "versions": { + "1.5.3": { + "checksum": "MccEmY8k4npuubSTeJFG7/hcoCkK/CXSualiUF9KHUM=" + } + } + }, + "npm:keychain-snap": { + "id": "npm:keychain-snap", + "metadata": { + "audits": [ + { + "auditor": "OtterSec", + "report": "https://ottersec.notion.site/EthSign-keychain-snap-acf38810de8544f9b07beadae5014675" + } + ], + "author": { + "name": "EthSign", + "website": "https://www.ethsign.xyz/" + }, + "category": "interoperability", + "description": "EthSign Keychain is an encrypted password manager. State-keeping outside of MetaMask is optional and delegated to Arweave or AWS to enable decentralized cross-device synchronization.\n\nThis Snap is designed to work with a companion extension or with dapps that have implemented the EthSign Keychain API. After installing the Snap, visit the website to learn more.", + "name": "EthSign Keychain", + "sourceCode": "https://github.com/EthSign/keychain-snap", + "summary": "Manage encrypted passwords and enable decentralized cross-device synchronization.", + "support": { + "contact": "https://discord.gg/Wvhp9dWdSg" + }, + "website": "https://docs.ethsign.xyz/ethsign-keychain/" + }, + "versions": { + "0.3.6": { + "checksum": "REl6dY3tSDpChyXGJZjfDuKVrFNCt86ZPfs+jNRmIPU=" + } + } + }, + "npm:know-your-transaction": { + "id": "npm:know-your-transaction", + "metadata": { + "author": { + "name": "bitsCrunch", + "website": "https://bitscrunch.com/" + }, + "category": "transaction insights", + "description": "Stay Safe with Every Transaction\n\nThe KYT MetaMask Snap by bitsCrunch brings Know Your Transaction (KYT) protection directly to your MetaMask wallet. With real time transaction scores and summaries, our AI-powered Snap helps shield you from phishing, scams, and other malicious on-chain activities.\n\nHow It Protects You\n\nThe bitsCrunch KYT Snap uses advanced AI algorithms to flag:\n\n- Wallets involved in illicit or suspicious activities.\n- Smart contracts with wallet-draining functionality.\n- Duplicate or counterfeit tokens mimicking legitimate assets.\n- Token approvals that could potentially drain your funds.\n\nHow It Works\n\nOur AI analyzes historical address activity such as transaction volume, nature of interactions, and asset holdings to assign a transaction score and generate a concise summary inside your MetaMask wallet. This helps you quickly identify malicious or high-risk addresses before you proceed.\n\nHow to Use\n\n- Install the bitsCrunch Snap for MetaMask.\n- When making a transaction, open the bitsCrunch tab inside your MetaMask wallet.\n- Review the transaction score and summary before confirming to ensure you're not falling victim to phishing or scams.", + "name": "Know your transaction", + "screenshots": [ + "./images/know-your-transaction/1.png", + "./images/know-your-transaction/2.png", + "./images/know-your-transaction/3.png" + ], + "sourceCode": "https://github.com/bitscrunch-protocol/Know-Your-Transaction", + "summary": "Real-time transaction scores and summaries powered by AI", + "support": { + "contact": "mailto:support@bitscrunch.com", + "knowledgeBase": "https://clean-rudbeckia-69f.notion.site/KYT-MetaMask-Snap-by-bitsCrunch-1fb84e5ac1048010b02fcf91c75ff9ff" + } + }, + "versions": { + "0.1.1": { + "checksum": "t/E7x9g6nSoIPjmjhM2TebIlkZ9WM8b/k98+H6r8IVQ=" + } + } + }, + "npm:metamask-aura-connect-snap": { + "id": "npm:metamask-aura-connect-snap", + "metadata": { + "author": { + "name": "Thomas McMillan", + "website": "https://github.com/tomm696" + }, + "category": "interoperability", + "description": "Aura Connect is an unofficial, community-built, and fully open-source MetaMask Snap that integrates AdEx Aura — an AI-driven DeFi recommendation engine.\n\nIt enables MetaMask users to explore personalized DeFi strategies, insights, and wallet-based recommendations powered by Aura’s public APIs.\n\nWhat is AdEx Aura?\nAdEx Aura is a personal AI agent framework that generates secure, high-impact DeFi strategy recommendations.\n\nLearn more about AdEx Aura at https://www.adex.network\n\nWith Aura Connect, users can:\n\nConnect their MetaMask wallet to Aura seamlessly.\n\nView real-time strategy suggestions tailored to their on-chain activity for each of their accounts.\n\nExplore actionable DeFi opportunities directly within MetaMask.\n\nNo private keys or user data leave MetaMask — all data is fetched securely via public Aura endpoints.\n\nThis Snap is developed and maintained by the community, not officially affiliated with AdEx or MetaMask.", + "name": "Aura Connect", + "sourceCode": "https://github.com/tomm696/metamask-aura-snap", + "summary": "Personalized DeFi insights through Aura's AI agent services", + "support": { + "knowledgeBase": "https://github.com/tomm696/metamask-aura-snap/blob/master/FAQ.md" + } + }, + "versions": { + "0.1.3": { + "checksum": "6cTbPF+lwg+I5220cEdchHMz4UA9lQz4KFXv7Ouy1II=" + } + } + }, + "npm:mina-portal": { + "id": "npm:mina-portal", + "metadata": { + "audits": [ + { + "auditor": "Veridise", + "report": "https://f8t2x8b2.rocketcdn.me/wp-content/uploads/2023/08/VAR-Mina-Snap-V101.pdf" + } + ], + "author": { + "name": "SotaTek", + "website": "https://www.sotatek.com/" + }, + "category": "interoperability", + "description": "Interact with Mina protocol using MetaMask. After installing the Snap, visit the website to manage your Mina account.", + "name": "MinaPortal", + "screenshots": [ + "./images/mina-portal/1.png", + "./images/mina-portal/2.png", + "./images/mina-portal/3.png" + ], + "sourceCode": "https://github.com/sotatek-dev/mina-snap", + "summary": "Interact with the Mina protocol using your wallet.", + "support": { + "contact": "https://github.com/sotatek-dev/mina-snap/wiki/FAQ#how-do-i-reach-out-for-mina-snap-support" + }, + "website": "https://minaportal.sotatek.works/" + }, + "versions": { + "0.1.6": { + "checksum": "I30rV0Vx18OeOz79Yu/OKQw1buyPXd7NGNduVTonhIw=" + } + } + }, + "npm:nomis": { + "id": "npm:nomis", + "metadata": { + "author": { + "name": "Nomis Protocol", + "website": "https://nomis.cc" + }, + "category": "transaction insights", + "description": "The Nomis Protocol Snap allows you to view your Nomis Scores within MetaMask.\n\nAfter installing the Nomis Protocol Snap, choose the chain you're interested in, then access Nomis Protocol from the Snaps menu in MetaMask. Connect your desired account to view your Nomis Score. Your minted Score will be displayed on the Snap's homepage. If it hasn't been minted yet, you'll have the option to calculate it.\n\nWhen conducting transactions, switch to the Nomis Protocol Snap tab to view the counterparty's Score, as long as they have a minted Score.\n\nYou can always switch the active account by visiting https://nomis.cc.", + "name": "Nomis Protocol", + "screenshots": [ + "./images/nomis/1.png", + "./images/nomis/2.png", + "./images/nomis/3.png" + ], + "sourceCode": "https://github.com/Nomis-cc/nomis-snaps", + "summary": "Check your Nomis-powered score and view recipient scores in transaction confirmations.", + "support": { + "contact": "https://discord.com/invite/0xnomis", + "faq": "https://nomis.cc/#faq", + "knowledgeBase": "https://nomis.cc/#how-it-works" + }, + "website": "https://nomis.cc/snap/" + }, + "versions": { + "0.1.5": { + "checksum": "zQ9UOPgD92Me7v9ZaUrHZtSvtSgKkgwhHgOwejAmKyw=" + } + } + }, + "npm:noves-foresight": { + "id": "npm:noves-foresight", + "metadata": { + "author": { + "name": "Noves", + "website": "https://noves.fi" + }, + "category": "transaction insights", + "description": "Noves Foresight allows you to experience transaction signing like never before, by providing clear descriptions of exactly what is about to happen. It leverages Noves's industry-leading translation engine for smart contracts, providing extensive coverage across 50+ chains and hundreds of millions of smart contracts.\n\nHow it works:\n\nWhen you initiate a transaction, and before you sign it, Noves Foresight will perform a simulation of the transaction that will calculate all of the asset transfers that would take place. It will then translate the raw simulation into something easy to understand, including:\n\n- An English sentence that describes the real-world meaning of the transaction. For example: 'This transaction will claim 10 CRV in rewards' or 'This transaction will add 1 ETH and 4000 USDC to a liquidity pool.'\n\n- A fully-tagged 'flow' view of all the asset transfers that will take place. You'll be able to easily see why a particular token is coming in or out of your wallet.\n\nHow to use:\n\nIt's super simple! Just check out the 'Noves Foresight' tab in your MetaMask prompt, any time you've initiated a transaction and want to check what's going to happen before you sign.", + "name": "Foresight by Noves", + "screenshots": [ + "./images/noves-foresight/1.png", + "./images/noves-foresight/2.png", + "./images/noves-foresight/3.png" + ], + "sourceCode": "https://github.com/Noves-Inc/foresight-metamask-snap", + "summary": "Understand what is about to happen before you sign a transaction.", + "support": { + "contact": "mailto:support@noves.fi", + "faq": "https://docs.noves.fi/reference/metamask-snapfaq", + "knowledgeBase": "https://docs.noves.fi/reference/metamask-snap" + } + }, + "versions": { + "0.0.5": { + "checksum": "UUAPZJ+pI0Shxeozl8/DZ8yGbuOgKqrYdvlVNQFPw9M=" + } + } + }, + "npm:quai-snap": { + "id": "npm:quai-snap", + "metadata": { + "audits": [ + { + "auditor": "Hacken", + "report": "https://drive.google.com/file/d/1qnQDt0D_zPyRwhAkDvO72_yVSB2reZt1/view?usp=sharing" + } + ], + "author": { + "name": "Dominant Strategies", + "website": "https://dominantstrategies.io/" + }, + "category": "interoperability", + "description": "Quai Wallet is a snap that allows Metamask users to interact with Quai Network mainnet. After installation, the wallet can be accessed as follows: \n- Open the Metamask extension. \n- Click the three dashed lines at the top right of the Metamask window.\n- Click on Snaps in the dropdown list. \n- Click on Quai Wallet in the list. If you do not see Quai Wallet in the list, ensure you have installed the snap from the Snaps Directory (https://snaps.metamask.io) \n- Wait for the snap to generate you a Quai wallet. This will take a few seconds. \n- There is no need to write down a seed phrase because the wallet is generated from your Metamask keys. That means that as long as you have your Metamask keys, you will always generate the same Quai address when you install the Quai Wallet Snap. \n- With the wallet, you can send QUAI tokens and receive QUAI tokens to your address. You will be able to interact with Quai dApps when support for those dApps is added. \n", + "name": "Quai Wallet", + "sourceCode": "https://github.com/dominant-strategies/quai-snap", + "summary": "The Quai Wallet snap allows Metamask users to send and receive QUAI tokens on Quai mainnet. It will also enable Quai dApps to interact with Metamask users who have the snap installed.", + "support": { + "contact": "https://discord.gg/quai", + "faq": "http://docs.qu.ai/guides/wallet/metamask-snap", + "knowledgeBase": "http://docs.qu.ai/guides/wallet/metamask-snap" + }, + "website": "https://dominantstrategies.io/" + }, + "versions": { + "0.1.9": { + "checksum": "FQjjUGvt7d6SgqBNiuTTJUPtMGlKie4VOmxzsviZmbc=" + } + } + }, + "npm:rentality": { + "id": "npm:rentality", + "metadata": { + "author": { + "name": "rentality", + "website": "https://rentality.xyz/" + }, + "category": "interoperability", + "description": "rentality Snap\nrentality Snap is your first step toward a Web 3.0 car rental experience, enabling users to easily access the rentality platform via MetaMask.\n\nWith this Snap, you can:\nView the number of cars available for rent.\nClick a button to rent a car, which redirects you to the rentality app for booking.\n\nMore features are coming soon, including:\nAccess to rental details and contract management via the Snap.\n\nStay tuned for further updates as the rentality Snap evolves to provide a decentralized, cost-efficient car rental service directly from MetaMask.\n\nResources:\n\nrentality App: Discover the app where you can book and manage your rentals.\n- https://app.rentality.xyz/\nrentality Documentation: Learn more about the platform and how it works:\n-https://medium.com/@rentality\n-https://zealy.io/cw/rentality/questboard", + "name": "rentality", + "screenshots": [ + "./images/rentality/1.png", + "./images/rentality/2.png", + "./images/rentality/3.png" + ], + "sourceCode": "https://github.com/Daniloday/rentality-snap/", + "summary": "Transforming the future of car rentals with blockchain.", + "support": { + "contact": "mailto:info@rentality.xyz", + "knowledgeBase": "https://app.rentality.xyz/guest/legal" + }, + "website": "https://app.rentality.xyz/" + }, + "versions": { + "1.0.9": { + "checksum": "XCNUyPlOxUXceJXo4ZpGAY6whq/WNuU+VwuGP+xmBP4=" + } + } + }, + "npm:rubic-snap": { + "id": "npm:rubic-snap", + "metadata": { + "audits": [ + { + "auditor": "Cure53", + "report": "https://cure53.de/pentest-report_rubic-snap.pdf" + } + ], + "author": { + "name": "Rubic", + "website": "https://rubic.exchange/" + }, + "category": "interoperability", + "description": "Rubic's 'Best Rate Finder' makes it easier than ever before to pick the most cost-efficient route for your token swap by actively comparing swap rates across 200+ DEXs simultaneously – all within your MetaMask wallet.\n\nHere's how it works:\n\n1. Watch The Tutorial: https://www.youtube.com/watch?v=mqwcymo20Sw&ab_channel=Rubic\n\n2. Initiate your transaction on a DEX in a browser.\n\n3. Within the MetaMask transaction confirmation window, you'll have access to Rubic's Snap tab.\n\n4. Rubic's innovative 'Best Rate Finder' algorithm searches from over 200 DEXs, analyzing various routes to identify the most cost-efficient option for your intended swap.\n\n5. If Rubic indicates a better rate than the one offered by the current DEX you're on, you'll have the option to seamlessly switch to Rubic's App to complete the transaction using the more optimal route.\n\nStop juggling between multiple DEXs to find the best rate. Leave that heavy lifting to us and have peace of mind knowing you're always getting the best swap rate possible!\n\nSnap's Page - https://rubic.exchange/metamasksnap\n\nAbout Rubic:\n\nRubic aggregates 70+ blockchains and testnets, while it enables swaps of 15,500+ assets with the best rates, highest liquidity, and transaction speeds — in one click, thanks to the integration of 220+ DEXs and bridges.\n\nhttps://rubic.exchange/", + "name": "Rubic", + "screenshots": [ + "./images/rubic-snap/1.png", + "./images/rubic-snap/2.png", + "./images/rubic-snap/3.png" + ], + "sourceCode": "https://github.com/Cryptorubic/rubic-snap-frontend", + "summary": "Compare swaps across 200+ DEXs to find the best rate.", + "support": { + "contact": "https://t.me/RubicSupportBot", + "faq": "https://rubic.exchange/metamasksnap", + "knowledgeBase": "https://rubic.exchange/blog/introducing-rubics-best-rate-finder-metamask-snap-revolutionizing-crypto-trading/" + }, + "website": "https://rubic.exchange/metamasksnap" + }, + "versions": { + "0.4.0": { + "checksum": "I8BnlhKoeV9j789awS0/IKC/G1Mu01PfkpHC9sNBogI=" + } + } + }, + "npm:safe-send": { + "id": "npm:safe-send", + "metadata": { + "author": { + "name": "Blitz Blitz Blitz", + "website": "https://github.com/tyleradams" + }, + "category": "transaction insights", + "description": "This Snap enhances transaction insights by performing blockchain checks before a transaction is submitted.\n\nCurrently, it is built specifically for Polymarket, where it:\n- Verifies whether the Polymarket contract was deployed.\n- Checks who deployed the contract.\n- Ensures that users send the correct token to the Polymarket address.\n\nFuture Enhancements:\n\nThe next steps include expanding support to additional services, starting with:\n- Bridges, since users sometimes send funds manually.\n- Advanced security measures, such as:\n- Blocking transactions with potential errors.\n- Requiring manual overrides for high-risk transactions.\n\nThe goal is to help users avoid accidentally sending funds to incorrect or scam addresses, improving both security and usability.", + "name": "Safe Send", + "sourceCode": "https://github.com/tyleradams/safe-send", + "summary": "Tools to help people safely send funds", + "support": { + "contact": "tyler@blitzblitzblitz.com", + "knowledgeBase": "https://www.npmjs.com/package/safe-send" + } + }, + "versions": { + "1.0.2": { + "checksum": "ipsHDXONQumdJTv/x99x2StYYYagcD0P7awhHYzF2bY=" + } + } + }, + "npm:scorechain-safetransfer": { + "id": "npm:scorechain-safetransfer", + "metadata": { + "author": { + "name": "Scorechain", + "website": "https://www.scorechain.com/" + }, + "category": "transaction insights", + "description": "The Scorechain SafeTransfer Snap for MetaMask is an advanced tool designed to enhance the security of your crypto transactions. By integrating directly with your MetaMask wallet, the Snap evaluates the risk level of transaction addresses in real-time using Scorechain's trusted registry of known fraudulent entities. This ensures you have all the necessary insights to make informed decisions before signing a transaction.\n\nWhen you initiate a transaction in MetaMask, the Snap automatically activates and provides a clear risk assessment. The Scorechain Tab appears during the signing process, offering detailed information about potential threats such as scam addresses, suspicious patterns, and other risks. This transparency empowers you to confidently decide whether to proceed with or cancel the transaction.\n\nSafeTransfer prioritizes your privacy and does not collect personal data, wallet addresses, or transaction IDs. It is designed to be accessible to everyone, from newcomers navigating the complexities of blockchain security to experienced users looking to strengthen their protection against sophisticated scams.\n\nSince its inception, Scorechain has been trusted by over 350 compliance and digital asset teams worldwide. The platform has mapped 500 blockchains, scored more than 270,000 wallets, and identified over 1,000 virtual asset service providers (VASPs). This expertise underpins the reliability and accuracy of the SafeTransfer Snap.\n\nTo use the Snap, simply initiate a transaction in MetaMask as usual. The Scorechain Tab will appear automatically, providing detailed insights into the risk level of the transaction. Review the information and decide whether to proceed or cancel.\n\nFor any questions or feedback, you can reach out to the Scorechain support team at support@scorechain.com. Ensure your transactions are secure and informed with the Scorechain SafeTransfer Snap for MetaMask.\n\nYou can find more information here: https://www.scorechain.com/resources/metamask-safe-transfer", + "name": "SafeTransfer", + "screenshots": [ + "./images/scorechain-safetransfer/1.jpg", + "./images/scorechain-safetransfer/2.jpg", + "./images/scorechain-safetransfer/3.jpg" + ], + "sourceCode": "https://github.com/scorechain/safetransfer", + "summary": "Protect your crypto transactions", + "support": { + "contact": "mailto:support@scorechain.com", + "faq": "https://www.scorechain.com/blog/metamask-snap-faq", + "knowledgeBase": "https://www.scorechain.com/blog/metamask-snaps-knowledge-base" + }, + "website": "https://www.scorechain.com/resources/metamask-safe-transfer/" + }, + "versions": { + "1.0.6": { + "checksum": "QYe6poOqWPfgF5aKTFNKvRQMj1Uju/4mVM61bzsqWYA=" + }, + "1.0.8": { + "checksum": "pmaH2obJBb4R4HpgxF3ktjtJ/39KhIpQBLtJRhdwvu8=" + } + } + }, + "npm:self-name-resolution": { + "id": "npm:self-name-resolution", + "metadata": { + "author": { + "name": "SELF Crypto", + "website": "https://selfcrypto.io/" + }, + "category": "name resolution", + "description": "SELF Name Resolution Snap\n\nThis MetaMask Snap enables resolution of SELF domain names to their corresponding cryptocurrency addresses using either domain.self or $:domain formats. It integrates with the SELF naming service to provide seamless name resolution directly within MetaMask.\n\n## Features\n\n- Resolves SELF domain names in two formats:\n - .self domains (e.g., domain.self)\n - $: scheme (e.g., $:domain)\n- Supports multiple chains including:\n - Ethereum (EIP155:1)\n - BNB Smart Chain (EIP155:56)\n - Avalanche (EIP155:43114)\n - Arbitrum (EIP155:42161)\n- Seamless integration with MetaMask's name resolution system", + "name": "SELF Name Resolution", + "sourceCode": "https://github.com/selfcrypto/self-snap", + "summary": "Resolve SELF crypto names to addresses", + "support": { + "contact": "mailto:enrique.ferrater@selfcrypto.io", + "faq": "https://github.com/selfcrypto/self-snap/blob/main/README.md#faq", + "knowledgeBase": "https://github.com/selfcrypto/self-snap/blob/main/README.md" + } + }, + "versions": { + "0.1.4": { + "checksum": "0iYGbs3NNk8lZRJXRrHm94McRohhaxpTKkg5k4awQ/8=" + } + } + }, + "npm:smartsentinels-alerts": { + "id": "npm:smartsentinels-alerts", + "metadata": { + "author": { + "name": "SmartSentinels", + "website": "https://smartsentinels.net/" + }, + "category": "notifications", + "description": "SmartSentinels Alerts brings real-time campaign notifications, airdrop alerts, and reward tracking directly into your MetaMask wallet.\n\nFeatures:\n- Campaign Notifications: Receive push notifications every 30 minutes about new campaigns, airdrops, and rewards relevant to your connected wallet.\n- Homepage: Browse all active campaigns from within MetaMask. View campaign details including titles, descriptions, and action links without leaving your wallet.\n- One-Click Actions: Each campaign includes an action button that takes you directly to claim rewards, join airdrops, or participate in partner offers.\n- Automatic Wallet Registration: On install, your wallet is registered with SmartSentinels so you receive campaigns targeted to your address.\n- Multi-Wallet Support: Connect multiple wallets and receive consolidated campaign feeds across all your addresses.\n\nHow to use:\n1. Install SmartSentinels Alerts from the MetaMask Snaps Directory.\n2. When prompted, connect your wallet to allow the Snap to fetch campaigns for your address.\n3. Open the Snap homepage from the MetaMask menu to browse active campaigns.\n4. You will automatically receive in-app notifications about new campaigns every 30 minutes.\n5. Click through on any campaign to claim rewards or learn more.\n\nYou can also install the Snap from our benefits hub at https://smartsentinels.net/hub/benefits\n\nFor support, contact us at office@smartsentinels.net\n\nLearn more at https://smartsentinels.net\n\nSource code: https://github.com/C00K1E-dev/SmartSentinelsSnap", + "name": "SmartSentinels Alerts", + "sourceCode": "https://github.com/C00K1E-dev/SmartSentinelsSnap", + "summary": "Real-time campaign alerts, airdrop notifications, and reward tracking directly in MetaMask.", + "support": { + "contact": "mailto:office@smartsentinels.net" + } + }, + "versions": { + "0.1.1": { + "checksum": "AH4tfCMwR4yY5lfltena3XBZqeH+S8E3FTAFnOZk4NY=" + } + } + }, + "npm:social-names-snap": { + "id": "npm:social-names-snap", + "metadata": { + "author": { + "name": "Christian Montoya", + "website": "https://github.com/Montoya" + }, + "category": "name resolution", + "description": "Adds support for Farcaster names to MetaMask.\n\nIn the MetaMask send flow, type a Farcaster username like dwr.fcast.id or v.farcaster to resolve to their Farcaster wallet addresses and verified addresses.\n\nYou will also see suggested Farcaster names when interacting with addresses in MetaMask.", + "name": "Farcaster Names", + "screenshots": [ + "./images/social-names-snap/1.jpg", + "./images/social-names-snap/2.jpg", + "./images/social-names-snap/3.jpg" + ], + "sourceCode": "https://github.com/Montoya/social-names-snap", + "summary": "Use Farcaster names (fnames) in MetaMask", + "support": { + "contact": "https://github.com/Montoya/social-names-snap/issues" + } + }, + "versions": { + "0.3.0": { + "checksum": "8/GfXWzWfCCCuKeEmqnExFPK2rPYd+IsVSn1d0rmHxM=" + } + } + }, + "npm:sonic_resolver": { + "id": "npm:sonic_resolver", + "metadata": { + "author": { + "name": "Krown Labs", + "website": "https://www.krownlabs.app/" + }, + "category": "name resolution", + "description": "The Sonic Name Service (SNS) Resolver brings the convenience of human-readable addresses to your MetaMask wallet.\n\nInstead of dealing with complicated hexadecimal addresses like 0x1234...5678, you can simply type a .s domain name (like yourname.s) directly in MetaMask's address field when sending transactions on the Sonic network.\n\nKey Features:\n\nSeamlessly resolve .s domain names to their corresponding wallet addresses\nPerform reverse lookups to see SNS names associated with addresses\nWorks natively within the MetaMask interface\nSupports the Sonic network\n\nThis Snap simplifies your crypto experience by making addresses more human-friendly and reducing the risk of errors when sending transactions. Perfect for anyone using the Sonic network.\n\nSimply install the Snap, and start using .s domains immediately in your MetaMask transactions!", + "name": "Sonic Name Service Resolver", + "screenshots": [ + "./images/sonic_resolver/1.jpg", + "./images/sonic_resolver/2.jpg", + "./images/sonic_resolver/3.jpg" + ], + "sourceCode": "https://github.com/krownlabs/sns-resolution-snap", + "summary": "Use your .s domain names to easily send transactions on the Sonic network.", + "support": { + "contact": "https://discord.com/invite/KTU4krfhrG", + "faq": "https://docs.krownlabs.app/krown-labs/sonic-name-service-sns-snap-frequently-asked-questions", + "knowledgeBase": "https://docs.krownlabs.app/krown-labs/sonic-name-service/sonic-name-service-sns-snap-knowledge-base" + } + }, + "versions": { + "1.0.1": { + "checksum": "4iJUL7wlEdt3Nwv/YSI5UU3S8RIM156Njn/BWbVukIA=" + } + } + }, + "npm:stellar-snap": { + "id": "npm:stellar-snap", + "metadata": { + "audits": [ + { + "auditor": "Cure53", + "report": "https://cure53.de/pentest-report_kyraview-stellar-snap.pdf" + } + ], + "author": { + "name": "Paul Fears", + "website": "https://github.com/paulfears" + }, + "category": "interoperability", + "description": "Stellar Wallet\n\nThis Snap allows you to manage, send, and receive stellar tokens, as well as interact with soroban smart contracts.\n\n- Full Soroban Support\n- Full Testnet Support\n- Multiple Accounts\n- Documentation https://stellar-wallet-demo.vercel.app/docs\n- Internal Stellar/Soroban Transaction parsing", + "name": "Stellar", + "sourceCode": "https://github.com/paulfears/StellarSnap", + "summary": "Send, receive, and interact with Stellar tokens and contracts.", + "support": { + "contact": "mailto:paulrfears@gmail.com", + "faq": "https://stellar-wallet-demo.vercel.app/faq", + "knowledgeBase": "https://stellar-wallet-demo.vercel.app/docs" + }, + "website": "https://stellar-wallet-demo.vercel.app" + }, + "versions": { + "1.0.9": { + "checksum": "ZBO5amqeB4r5rjui+CDr3mpSE33h9KmOvkav6GM9w+k=" + } + } + }, + "npm:tezos-metamask-snap": { + "id": "npm:tezos-metamask-snap", + "metadata": { + "audits": [ + { + "auditor": "Sayfer", + "report": "https://github.com/MetaMask/snaps-registry/files/12543946/Sayfer.-.2023-06.Penetration.Testing.Report.for.Tezos.Metamask.Snap.Application.pdf" + } + ], + "author": { + "name": "trilitech", + "website": "https://www.trili.tech/" + }, + "category": "interoperability", + "description": "Tezos Wallet allows you to use your MetaMask wallet to interact with Tezos dapps, specifically for signing payloads and operations.", + "name": "Tezos Wallet", + "sourceCode": "https://github.com/airgap-it/tezos-metamask-snap", + "summary": "Interact with Tezos dapps for signing payloads and operations.", + "support": { + "contact": "mailto:metamask-snap@trili.tech", + "faq": "https://github.com/airgap-it/tezos-metamask-snap/wiki/FAQs" + }, + "website": "https://metamask.tezos.com/" + }, + "versions": { + "1.0.7": { + "checksum": "AidXQY04oresSzTw0awcl1fLtn1lIpANF/z99bqnBJw=" + } + } + }, + "npm:themiracle-benefits-tracker": { + "id": "npm:themiracle-benefits-tracker", + "metadata": { + "author": { + "name": "theMiracle", + "website": "https://www.themiracle.io/" + }, + "category": "interoperability", + "description": "theMiracle Benefits Tracker helps you discover everything your NFTs and tokens unlock, including airdrops, whitelists, discounts, giveaways, event tickets, merchandise, and more. \nGetting started is simple: Open your Snap menu, select theMiracle Snap, and connect your accounts. Once connected, you can revisit the Snap anytime to view your personalized benefits and explore new perks tied to your assets. \nStay updated and never miss out—check back regularly for the latest rewards!", + "name": "theMiracle Benefits Tracker", + "sourceCode": "https://github.com/0xAskar/themiraclesnap", + "summary": " Showcases all the benefits, perks, and rewards associated with your fungible and non-fungible holdings.", + "support": { + "contact": "mailto:askar@flipslabs.xyz", + "faq": "https://app.themiracle.io/snap" + }, + "website": "https://app.themiracle.io/snap" + }, + "versions": { + "0.1.5": { + "checksum": "WcJJDtL+Bu5uhIM09M0wwor4SzVq35nujZQ4ncFtjsg=" + } + } + }, + "npm:unleashnfts": { + "id": "npm:unleashnfts", + "metadata": { + "author": { + "name": "Bitscrunch", + "website": "https://www.bistcrunch.com/" + }, + "category": "transaction insights", + "description": "UnleashNFTs Snap helps you determine the fair value of NFTs. This AI-powered snap detects price manipulation and estimates the true market worth of NFTs.\n\nHow it works:\n\n- Our AI-powered price estimation model evaluates supported NFTs based on past transactions, market sentiment, and rarity to provide an accurate valuation.\n- The NFT wash trade detection feature identifies artificial trading practices that inflate values, helping you avoid overpaying for manipulated assets.", + "name": "unleashNFTs", + "screenshots": [ + "./images/unleashnfts/1.jpg", + "./images/unleashnfts/2.jpg", + "./images/unleashnfts/3.jpg" + ], + "sourceCode": "https://github.com/bitsCrunch/unleashnfts-snaps", + "summary": "Evaluate NFTs and stay protected from frauds.", + "support": { + "contact": "mailto:support@bitscrunch.com", + "faq": "https://clean-rudbeckia-69f.notion.site/UnleashNFTs-Metamask-FAQs-18884e5ac104803dbf35e0b0348739ab?pvs=4", + "knowledgeBase": "https://clean-rudbeckia-69f.notion.site/Metamask-Snaps-UnleashNFTs-13484e5ac10480cc99fef2bc720d48d6?pvs=4" + }, + "website": "https://unleashnfts.com/metamask-plugin" + }, + "versions": { + "0.1.9": { + "checksum": "1atGobDPmABseQGCVLV6ffGqRWd5I7dYJrieu9Ncoyc=" + } + } + }, + "npm:vaulta-wallet": { + "id": "npm:vaulta-wallet", + "metadata": { + "audits": [ + { + "auditor": "Cure53", + "report": "https://cure53.de/pentest-report_antelope-snap.pdf" + } + ], + "author": { + "name": "Greymass, Inc.", + "website": "https://greymass.com" + }, + "category": "interoperability", + "description": "The Vaulta Wallet enables you to create a Vaulta account, sign transactions and interact with Vaulta smart contracts. After installing the Vaulta Wallet, visit the companion dapp, Unicove, to create and manage your Vaulta account. On Unicove you can stake Vaulta, participate in the RAM market and more. Dapp compatibility is expected to grow, which will expand access to the Vaulta Ecosystem.\n\nNeed any additional information or support? Feel free to visit our knowledge base or reach out to our support team (support@greymass.com). If you're a developer and would like to support MetaMask in your Vaulta application, please check out Wharf and the MetaMask Wallet Plugin.\n\nLinks:\nUnicove: https://unicove.com\nKnowledge Base: https://greymass.freshdesk.com/support/solutions/categories/72000352473/\nWharf: https://wharfkit.com/\nMetaMask Wallet Plugin: https://github.com/wharfkit/wallet-plugin-metamask", + "name": "Vaulta Wallet", + "sourceCode": "https://github.com/greymass/antelope-snap/tree/vaulta", + "summary": "Create a Vaulta account, sign transactions and interact with Vaulta smart contracts.", + "support": { + "contact": "mailto:support@greymass.com", + "knowledgeBase": "https://greymass.freshdesk.com/support/solutions/categories/72000352473" + }, + "website": "https://unicove.com" + }, + "versions": { + "1.1.1": { + "checksum": "bbqcKS92PhHJ1PwE+e1IP/JL8SQT1ZwVLOFNdzs7G80=" + } + } + }, + "npm:walletchat-metamask-snap": { + "id": "npm:walletchat-metamask-snap", + "metadata": { + "audits": [ + { + "auditor": "Cure53", + "report": "https://drive.google.com/file/d/1pNhN43mMOLiA2jWUF5IbJA-5kmfAod1f/view?usp=drive_link" + }, + { + "auditor": "Cure53", + "report": "https://drive.google.com/file/d/1dixJw4G4ekcO40GpbH7VmizLTINS5gUL/view?usp=drive_link" + } + ], + "author": { + "name": "WalletChat", + "website": "https://www.walletchat.fun/" + }, + "category": "notifications", + "description": "Send and receive DMs from any wallet address or ENS inside MetaMask, with WalletChat.\n\nAfter enabling this Snap, you will need to set up a WalletChat account, in 3 simple steps. Then all set!\nFrom now on, you will get a pop up notification displaying each DM you receive. You can respond to the DM from the same pop up.\nTo initiate new messages, for now, you will need to use https://app.walletchat.fun/. In the near future, this wlll also be possible from within the Snap.\n\nDitch Telegram and turn your MetaMask into a web3-native messenger!\nVideo tutorial: https://docs.walletchat.fun/metamask-integration\n\nWalletChat is the leading web3 messaging ecosystem, available across multiple blockchains and embedded inside dapps ranging from NFTfi, games, and wallets like Ledger Live. Learn more at https://www.walletchat.fun/", + "name": "app.walletchat.fun 💬", + "screenshots": [ + "./images/walletchat-metamask-snap/1.png", + "./images/walletchat-metamask-snap/2.png", + "./images/walletchat-metamask-snap/3.png" + ], + "sourceCode": "https://github.com/Wallet-Chat/walletchat-metamask-snap", + "summary": "Send and receive DMs with WalletChat.", + "support": { + "contact": "mailto:contact@walletchat.fun", + "faq": "https://docs.walletchat.fun/metamask-integration/walletchat-metamask-snap-faq", + "knowledgeBase": "https://docs.walletchat.fun/metamask-integration" + }, + "website": "https://app.walletchat.fun/" + }, + "versions": { + "0.2.1": { + "checksum": "IV0FlbWNvx5HJUxqNWVXizRVwmib/aVmi7jjZhVAuXw=" + }, + "0.2.2": { + "checksum": "3A61a9PBllUtH9B0HVh7aHVoSBwouuM7eNMJga0p/q0=" + } + } + }, + "npm:web3-security-snap": { + "id": "npm:web3-security-snap", + "metadata": { + "audits": [ + { + "auditor": "Sayfer", + "report": "https://github.com/MetaMask/snaps-registry/files/12544383/Sayfer.-.2023-08.Penetration.Testing.Report.for.AnChain.Snap.pdf" + } + ], + "author": { + "name": "AnChain.AI", + "website": "https://www.anchain.ai/" + }, + "category": "transaction insights", + "description": "By seamlessly integrating AnChain.AI's revolutionary AI-powered Blockchain Ecosystem Intelligence (BEI) into your MetaMask wallet, Web3 Security Snap empowers you to make informed decisions and engage fearlessly with the digital economy.\n\nAfter installing the Snap, you will see it in the transaction confirmation window. You can also visit the website to learn more about how to use it.", + "name": "AnChain.AI", + "screenshots": [ + "./images/web3-security-snap/1.png", + "./images/web3-security-snap/2.png", + "./images/web3-security-snap/3.png" + ], + "sourceCode": "https://github.com/AnChainAI/web3-security-snap", + "summary": "Integrate BEI Risk Scores for web3 security.", + "support": { + "contact": "https://discord.gg/RZ84RUNuNF", + "faq": "https://snap.anchainai.com/#faq" + }, + "website": "https://snap.anchainai.com/" + }, + "versions": { + "1.0.3": { + "checksum": "yKSdXrV6vUdxXvBcDfydSW1aNGHiSa3EZXkfZMDGIt4=" + } + } + }, + "npm:wise-signer-snap": { + "id": "npm:wise-signer-snap", + "metadata": { + "author": { + "name": "patrickalphac", + "website": "https://cyfrin.io/" + }, + "category": "transaction insights", + "description": "Use AI to explain what your transactions are doing!\n\nThis Snap can identify address poisoning, malicious tokens, and other types of attacks! Of course, the AI can make mistakes, so be sure to do your own due diligence as well.\n\nFeatures\n\n1. Built-in buttons to quickly send transaction/signature context to your AI of choice\n2. EIP-712 hash calculation directly in MetaMask\n3. Auto-explain mode for seamless transaction analysis\n4. Buttons to bring your hex data to an ABI decoding site for further inspection\n\nThese buttons directly in MetaMask will help give context to AIs quickly.\n\nFor using the 'auto-explain' feature:\n1. Get a Claude API Key: https://console.anthropic.com/settings/workspaces/default/keys\n\n2. Configure the Snap:\n - Click on the Snap in MetaMask (Menu → Snaps → AI Transaction Explainer)\n - Paste your Claude API key and click 'Save API Key'\n - Choose your preferred model:\n -- Claude Opus 4: Most capable, best for complex transactions\n -- Claude Sonnet 4: Balanced performance and speed\n -- Claude Sonnet 3.7: Fastest responses\n- Toggle 'Auto-Explain' based on your preference\n\nAnd boom! Now the next transaction you make, you can have your MetaMask AI try to figure out what your transaction is doing.\n\nWatch this demo video for an in-depth explanation: https://youtu.be/jcFhv8AM2pU", + "name": "Wise Signer", + "sourceCode": "https://github.com/PatrickAlphaC/wise-signer-snap", + "summary": "Debug and describe transactions with Claude AI", + "support": { + "contact": "https://discord.gg/sccXzKDVJp", + "faq": "https://github.com/PatrickAlphaC/wise-signer-snap/blob/main/FAQ.md" + } + }, + "versions": { + "0.0.6": { + "checksum": "NoH023QOfvuux+k46mM8haUg3Mg5uNrAc3mU+RJFl0Y=" + }, + "0.0.8": { + "checksum": "tMZlRlqkvRRu/9t3TKVUVDK0JYZdusbxD7G5LycyNgo=" + } + } + }, + "npm:xdcdomains-snap": { + "id": "npm:xdcdomains-snap", + "metadata": { + "author": { + "name": "XDCDomains", + "website": "https://xdcdomains.xyz/" + }, + "category": "name resolution", + "description": "XDCDomains Snap allows users to send and receive their digital assets directly on MetaMask using their .xdc.\n\nSee more: https://xdcdomains.xyz/metamask", + "name": "XDCWeb3Domains", + "screenshots": [ + "./images/xdcdomains-snap/1.png", + "./images/xdcdomains-snap/2.png", + "./images/xdcdomains-snap/3.png" + ], + "sourceCode": "https://github.com/XDCWeb3Domains/xdcdomains-snap", + "summary": "Easily transfer assets using .xdc domain names instead of complex wallet addresses.", + "support": { + "contact": "mailto:info@xdcdomains.xyz", + "knowledgeBase": "https://xdcdomains.xyz/metamask" + }, + "website": "https://xdcdomains.xyz/metamask/" + }, + "versions": { + "0.1.17": { + "checksum": "byxhQxot1n1f6vU6hzh+o0BX6qMgp0GkmVV4oyL5XdY=" + } + } + }, + "npm:xrpl-snap": { + "id": "npm:xrpl-snap", + "metadata": { + "audits": [ + { + "auditor": "Sayfer", + "report": "https://sayfer.io/audits/metamask-snap-audit-report-for-peersyst/" + } + ], + "author": { + "name": "Peersyst Technology", + "website": "https://peersyst.com" + }, + "category": "interoperability", + "description": "Interact with the XRP Ledger directly within your MetaMask wallet. Seamlessly bridge your assets between XRPL and Ethereum-based dapps, and manage all your XRP, XRPL tokens, and NFTs with the security and ease of MetaMask. Benefit from fast, cost-effective transactions on the XRP Ledger while enjoying the trusted user experience of MetaMask.\n\nKey Features: \n\n- Secure, Fast, and Low-Cost XRPL Transactions: Send and receive XRP and tokens on one of the fastest and most cost-effective blockchains directly through MetaMask.\n- Cross-Chain Asset Management: Seamlessly manage XRP, XRPL tokens, and NFTs alongside your Ethereum assets and dapps within the familiar MetaMask interface.\n- Buy XRP Instantly: Purchase XRP directly from your wallet with our integrated Transak solution.\n- Full support for all transaction types in XRPL: sign any transaction\n- Asset Bridging: Effortlessly move assets between EVM and XRPL networks using our integrated bridge feature. \n\nGetting Started: \n\n- Install XRP Ledger Snap: Add the XRP Ledger Snap to your MetaMask wallet.\n- Connect Your Account: Visit https://snap.xrplevm.org/ to connect your account securely.\n- Manage Your Assets: Start managing your XRP, XRPL tokens, and NFTs within MetaMask.\n- Activate Your Account: Add XRP to activate and begin using your XRPL account.", + "name": "XRP Ledger", + "screenshots": [ + "./images/xrpl-snap/1.png", + "./images/xrpl-snap/2.png", + "./images/xrpl-snap/3.png" + ], + "sourceCode": "https://github.com/Peersyst/xrpl-snap", + "summary": "Access the XRP Ledger for fast, low-cost transactions and asset management.", + "support": { + "contact": "https://discord.gg/xrplevm", + "faq": "https://snap.xrplevm.org/#faq", + "knowledgeBase": "https://docs.xrplsnap.com/" + }, + "website": "https://wallet.xrplevm.org/" + }, + "versions": { + "1.0.3": { + "checksum": "oHKKiLgKAZ64wNLhrekTnDfhjKCEKDqcQ2Cu47u/GoU=" + } + } + }, + "npm:zetalink": { + "id": "npm:zetalink", + "metadata": { + "audits": [ + { + "auditor": "Hacken", + "report": "https://audits.hacken.io/zetachain/dapp-zetachain-snap-audit-jul2024/" + } + ], + "author": { + "name": "Ishaan Parmar", + "website": "https://x.com/ishaanonx/" + }, + "category": "interoperability", + "description": "ZetaLink is an innovative MetaMask Snap that allows users to deposit and transfer native Bitcoin to select ZRC20 tokens across multiple blockchain networks, including ZetaChain, Polygon, Binance Smart Chain, and Ethereum. This Snap enhances the MetaMask experience by providing seamless cross-chain functionality for both developers and users.\n\nZetaLink offers several key features. First, it provides cross-chain compatibility, enabling users to deposit native Bitcoin and convert it into ZRC20 tokens without needing to switch networks or wrap tokens. This makes it easier to interact with various dapps across multiple platforms. ZetaLink also features a user-friendly interface that simplifies asset management and transaction processes, allowing users to easily navigate their assets and conduct transactions with minimal effort.\n\nSecurity is paramount with ZetaLink, as it operates within the secure environment of MetaMask, ensuring that user data and transactions are protected. The Snap utilizes a permissions model that allows users to review the permissions granted during installation.\n\nTo use ZetaLink, follow these steps:\n\n- Depositing Bitcoin: Open your MetaMask wallet, navigate to the ZetaLink Snap within your installed Snaps, select the option to deposit Bitcoin, and follow the prompts to complete the transaction.\n- Transferring to native ZETA or ZRC20 Tokens: After depositing Bitcoin, choose your desired ZRC20 token from the list provided, enter the amount you wish to transfer, and confirm the transaction.\n- Managing Assets: Use the ZetaLink interface to view your balances across different tokens and monitor transaction history efficiently.\n\nThe benefits of using ZetaLink are significant. Users enjoy a seamless experience by interacting with multiple blockchains without needing to switch wallets or networks, making transactions more efficient. Increased liquidity is another advantage, as facilitating cross-chain transactions enhances liquidity across platforms and allows users to capitalize on market opportunities more effectively. For developers, ZetaLink creates innovative development opportunities by enabling them to create versatile dapps that utilize both Bitcoin and ZRC20 tokens.\n\nZetaLink is not just a tool -- it’s a gateway to a more interconnected blockchain experience. By bridging Bitcoin with emerging token standards like ZRC20, it empowers users and developers alike to explore new horizons in decentralized finance.\n\nJoin us in shaping the future of cross-chain interactions with ZetaLink!", + "name": "ZetaLink", + "screenshots": [ + "./images/zetalink/1.png", + "./images/zetalink/2.png", + "./images/zetalink/3.png" + ], + "sourceCode": "https://github.com/1337-ishaan/zetalink", + "summary": "Bridge and cross-chain transfer native Bitcoin to select ZRC20 tokens across ZetaChain, Ethereum, Binance Smart Chain, and Polygon, with seamless cross-chain functionality and enhanced interoperability.", + "support": { + "contact": "mailto:zetalinksnap@gmail.com", + "faq": "https://docs.zetalink.xyz/faqs", + "knowledgeBase": "https://docs.zetalink.xyz/" + }, + "website": "https://zetalink.xyz/" + }, + "versions": { + "0.2.1": { + "checksum": "FZppi2JiT0+eKYRgdfue07PGlqqXOv1QMUCtPucSxjg=" + } + } + }, + "npm:zns-connect": { + "id": "npm:zns-connect", + "metadata": { + "author": { + "name": "ZNS Connect Name Service", + "website": "https://www.znsconnect.io" + }, + "category": "name resolution", + "description": "ZNS Connect is a powerful MetaMask Snap that brings (ZNS) domain resolution directly to your wallet.\n\nKey Features:\n- Resolve ZNS domains across multiple networks (Polygon, BSC, Ethereum)\n- Support for multiple TLDs including .honey, .cz, and .ink\n- Direct wallet integration for seamless domain resolution\n- Real-time domain validation and checking\n\nHow to Use:\n1. Install the Snap through MetaMask\n2. Enter any ZNS domain (example: mydomain.poly)\n3. Get instant resolution to the corresponding wallet address\n\nThis Snap simplifies blockchain domain resolution by eliminating the need for external resolvers or websites. Perfect for developers, crypto enthusiasts, and anyone working with ZNS domains.", + "name": "ZNS Connect Name Service", + "screenshots": [ + "./images/zns-connect/1.png", + "./images/zns-connect/2.png", + "./images/zns-connect/3.png" + ], + "sourceCode": "https://github.com/xinkin/znsConnect", + "summary": "Resolve ZNS domains like .honey, .hvm, .ink, .poly, and more directly in your wallet across multiple networks.", + "support": { + "contact": "mailto:info@znsconnect.io", + "faq": "https://docs.znsconnect.io/user-guide/zns-on-metamask-snap/general-faq", + "knowledgeBase": "https://docs.znsconnect.io/user-guide/zns-on-metamask-snap/knowledge-base" + } + }, + "versions": { + "0.1.7": { + "checksum": "Wr3nvnhYmtLBRj8WUOw9uHVSEPgER0MycY75N9eE+ZM=" + } + } + }, + "npm:zyfi-paymaster-insight-snap": { + "id": "npm:zyfi-paymaster-insight-snap", + "metadata": { + "author": { + "name": "Zyfi", + "website": "https://www.zyfi.org" + }, + "category": "transaction insights", + "description": "The Zyfi Paymaster Insight Snap aims to improve the readability of signing transactions on the ZKsync ecosystem, particularly for paymaster-related transactions using txType 113 (https://docs.zksync.io/zk-stack/concepts/transaction-lifecycle#eip-712-0x71). This transaction is an EIP-712 type, but on MetaMask’s signature popup, critical information like “from” and “to” addresses is displayed in an unintuitive format (e.g., uint256).\n\nThe Snap’s key purpose is to decode these fields into a more readable format, making it easier for users to understand the transaction details they’re signing. Additionally, it provides extra information related to the paymaster, such as the paymaster address, type, gas fee token address, and gas fee token amount. This gives users more clarity on what they’re signing, helping them avoid potential malicious signatures.", + "name": "Zyfi Paymaster Insights", + "screenshots": [ + "./images/zyfi-paymaster-insight-snap/1.jpg", + "./images/zyfi-paymaster-insight-snap/2.jpg", + "./images/zyfi-paymaster-insight-snap/3.jpg" + ], + "sourceCode": "https://github.com/ondefy/zyfi-snaps", + "summary": "Improve readability for ZKsync and Elastic chains EIP-712 type-113 transactions.", + "support": { + "contact": "https://discord.gg/ondefy-877871589444710450" + }, + "website": "https://staging.zyfi.org/paymaster-insight-snap" + }, + "versions": { + "0.1.0": { + "checksum": "F8f2M6/vpFU2WRDKiMVFfXJbkYB4bifhbIXIpGftmkg=" + } + } + } + } + }, + "signature": "0x304402206e345ea9ae4a4b973b0a56bf3fbf0bd9f089052ab77150affab0b0b2ff13aa55022050e977207b5e8dbb36b65f12ad52f5f3dd7edb584bc6634ed6c98f7c311bfdbc", + "lastUpdated": 1778884124470, + "databaseUnavailable": false, + "interfaces": {}, + "insights": {}, + "names": { + "ethereumAddress": { + "0x2b6a82d1fea4d5b137095ca5306ba2589b630a08": { + "*": { + "name": "Account 5", + "origin": "account-identity", + "proposedNames": {}, + "sourceId": null + } + }, + "0x30e8ccad5a980bdf30447f8c2c48e70989d9d294": { + "*": { + "name": "Account 1", + "origin": "account-identity", + "proposedNames": {}, + "sourceId": null + } + }, + "0x3823c59973351f50e8b985e182b81300dae9bb45": { + "*": { + "name": "Account 9", + "origin": "account-identity", + "proposedNames": {}, + "sourceId": null + } + }, + "0x452ca3dad6db7f3a47bbf15b758b6749db579bbc": { + "*": { + "name": "Account 4", + "origin": "account-identity", + "proposedNames": {}, + "sourceId": null + } + }, + "0x83ad6a1294d949d514361326bcebae4f73957327": { + "*": { + "name": "Account 7", + "origin": "account-identity", + "proposedNames": {}, + "sourceId": null + } + }, + "0x94d1362400e999b38c845ca2c305c084031dae84": { + "*": { + "name": "Account 6", + "origin": "account-identity", + "proposedNames": {}, + "sourceId": null + } + }, + "0x9f66e62fd52eeb9286385f620d2bcbe02c94443e": { + "*": { + "name": "Ledger 1", + "origin": "account-identity", + "proposedNames": {}, + "sourceId": null + } + }, + "0xbcc30cc9b8109f87fcede0c57e3a8c3dc979e3d0": { + "*": { + "name": "Account 8", + "origin": "account-identity", + "proposedNames": {}, + "sourceId": null + } + }, + "0xe2f39519240814a77047490357ced4d094b6c9c7": { + "*": { + "name": "Account 3", + "origin": "account-identity", + "proposedNames": {}, + "sourceId": null + } + }, + "0xf25bd11c334507fd007d584e2d0b7b2c6543f714": { + "*": { + "name": "Account 2", + "origin": "account-identity", + "proposedNames": {}, + "sourceId": null + } + } + } + }, + "nameSources": {}, + "userOperations": {}, + "isSignedIn": true, + "needsProfilePairing": true, + "srpSessionData": { + "01KJ6E9MG4VY87VPKWJPR6W39K": { + "profile": { + "identifierId": "12438dcb5c88f13778491fdb251a5b1f13d43bf2f0b7bde7c329643bbe455599", + "metaMetricsId": "0x585932e95120a60224e1b9306442908dee59fd4785240188a2f92eb49c668e92", + "profileId": "dbb2ad9a-010f-4a82-8676-15885d61dd00", + "canonicalProfileId": "dbb2ad9a-010f-4a82-8676-15885d61dd00" + }, + "token": { + "expiresIn": 86399, + "obtainedAt": 1779088870216 + } + }, + "01KMK79H2SG3MB2Q7XWEXMZ013": { + "profile": { + "identifierId": "94dfb28e8aecdbe77a2ff17165f51b2fe73968565334aec4422c1b58a82f0ee4", + "metaMetricsId": "0x585932e95120a60224e1b9306442908dee59fd4785240188a2f92eb49c668e92", + "profileId": "4bfc51e5-cdda-4983-8046-7f332a0ee8e8", + "canonicalProfileId": "4bfc51e5-cdda-4983-8046-7f332a0ee8e8" + }, + "token": { + "expiresIn": 86399, + "obtainedAt": 1779126364326 + } + } + }, + "isBackupAndSyncEnabled": true, + "isBackupAndSyncUpdateLoading": false, + "isAccountSyncingEnabled": true, + "isContactSyncingEnabled": true, + "isContactSyncingInProgress": false, + "subscriptionAccountsSeen": [ + "0x30E8ccaD5A980BDF30447f8c2C48e70989D9d294", + "0xF25bd11C334507Fd007d584E2D0b7b2C6543f714", + "0xE2F39519240814a77047490357cEd4d094B6C9C7", + "0x452cA3DAd6dB7F3a47bbF15b758B6749Db579bBc", + "0x2b6a82d1Fea4D5B137095cA5306BA2589B630A08", + "0x94d1362400E999b38C845cA2c305c084031DAe84", + "0x83AD6A1294d949d514361326bcebAe4F73957327", + "0xbcc30CC9B8109f87fcEDE0C57E3A8c3DC979e3D0", + "0x3823C59973351F50e8B985e182b81300Dae9Bb45", + "0xc9442048Fd0c34b684035a82188B69c4eE5e8f21", + "0x9dc641ccD7D1e7C66e47a25598aCe7219548d887", + "0x6Eff00186BA65C5FAde98d75aA4d99eF71fA461B", + "0x04400BB51B1f886CFf338eb2b4118f9CeB4E6fD5", + "0xb3864B298f4fDdbbBd2Fa5CF1a2a2748932b3B81", + "0xeeEAB71A5989b7951389e3dF313Ea9876508856f", + "0x422B8d8914cDad779f587414d647e953bB3A87db", + "0x141d32a89a1e0a5Ef360034a2f60a4B917c18838", + "0x98931E2B2272891c2E8e47D675007D94aE90cE64", + "0xf1F63D55E8f25C962079BE324c71CDcf792c6047", + "0xDA04e0fE4e79eebcaFfCbfFf8eA0BDcd442d2119", + "0xa30078E306614C2F444550da6bC759173Dfb61Fd", + "0x09b8556833e53f92EE0b668DB146B43CA2CAB130" + ], + "isMetamaskNotificationsFeatureSeen": true, + "isNotificationServicesEnabled": true, + "isFeatureAnnouncementsEnabled": true, + "metamaskNotificationsList": [ + { + "created_at": "2026-03-30T22:55:02.273318Z", + "id": "07ae895c-30e8-52ba-858e-a00a27e09461", + "notification_type": "on-chain", + "payload": { + "address": "0xf25bd11c334507fd007d584e2d0b7b2c6543f714", + "block_number": 89693538, + "block_timestamp": "1774911301", + "chain_id": 56, + "data": { + "to": "0x1a1ec25dc08e98e5e93f1104b5e5cdd298707d31", + "from": "0xf25bd11c334507fd007d584e2d0b7b2c6543f714", + "kind": "eth_sent", + "amount": { + "eth": "0.001715375681294112", + "usd": "1.05" + }, + "network_fee": { + "gas_price": "60000000", + "native_token_price_in_usd": "611.17" + } + }, + "network": { + "block_explorer": { + "name": "BscScan", + "url": "https://bscscan.com" + }, + "name": "BNB Smart Chain", + "native_symbol": "BNB" + }, + "tx_hash": "0x113ff4b548529b6b75024876e21275f9a39e6be2f0c70c480b774d7d0ea1a851" + }, + "unread": true, + "type": "eth_sent", + "createdAt": "2026-03-30T22:55:02.273Z", + "isRead": true + }, + { + "created_at": "2026-03-30T22:55:02.262602Z", + "id": "026c12ae-813a-503b-92ae-cd0b513fc1ab", + "notification_type": "on-chain", + "payload": { + "address": "0xf25bd11c334507fd007d584e2d0b7b2c6543f714", + "block_number": 89693538, + "block_timestamp": "1774911301", + "chain_id": 56, + "data": { + "kind": "metamask_swap_completed", + "rate": "0.0016519272599608813615", + "token_in": { + "usd": "611.17", + "name": "Binance Coin", + "image": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x0000000000000000000000000000000000000000.png", + "amount": "1715375681294112", + "symbol": "BNB", + "address": "0x0000000000000000000000000000000000000000", + "decimals": "18" + }, + "token_out": { + "usd": "0.999147", + "name": "Tether USD", + "image": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x55d398326f99059ff775485246999027b3197955.png", + "amount": "1038408725899185861", + "symbol": "USDT", + "address": "0x55d398326f99059ff775485246999027b3197955", + "decimals": "18" + }, + "network_fee": { + "gas_price": "60000000", + "native_token_price_in_usd": "611.17" + } + }, + "network": { + "block_explorer": { + "name": "BscScan", + "url": "https://bscscan.com" + }, + "name": "BNB Smart Chain", + "native_symbol": "BNB" + }, + "tx_hash": "0x113ff4b548529b6b75024876e21275f9a39e6be2f0c70c480b774d7d0ea1a851" + }, + "unread": true, + "type": "metamask_swap_completed", + "createdAt": "2026-03-30T22:55:02.262Z", + "isRead": true + }, + { + "created_at": "2026-03-26T18:19:19.585406Z", + "id": "d916658e-179f-519a-907e-4216e362f601", + "notification_type": "on-chain", + "payload": { + "address": "0xf25bd11c334507fd007d584e2d0b7b2c6543f714", + "block_number": 88889592, + "block_timestamp": "1774549159", + "chain_id": 56, + "data": { + "kind": "metamask_swap_completed", + "rate": "0", + "token_in": { + "usd": "625.2", + "name": "Binance Coin", + "image": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x0000000000000000000000000000000000000000.png", + "amount": "0", + "symbol": "BNB", + "address": "0x0000000000000000000000000000000000000000", + "decimals": "18" + }, + "token_out": { + "usd": "0.999545", + "name": "Tether USD", + "image": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x55d398326f99059ff775485246999027b3197955.png", + "amount": "1088590308995545055", + "symbol": "USDT", + "address": "0x55d398326f99059ff775485246999027b3197955", + "decimals": "18" + }, + "network_fee": { + "gas_price": "60000000", + "native_token_price_in_usd": "625.2" + } + }, + "network": { + "block_explorer": { + "name": "BscScan", + "url": "https://bscscan.com" + }, + "name": "BNB Smart Chain", + "native_symbol": "BNB" + }, + "tx_hash": "0x2a85a6146bed8e61c13c91d3d3fda74d4283b5fae7513aa1744ed98b63087edd" + }, + "unread": true, + "type": "metamask_swap_completed", + "createdAt": "2026-03-26T18:19:19.585Z", + "isRead": true + }, + { + "created_at": "2026-03-25T21:47:01.524127Z", + "id": "5e5bd91c-0313-5b57-a264-3fb24667f4b0", + "notification_type": "on-chain", + "payload": { + "address": "0xf25bd11c334507fd007d584e2d0b7b2c6543f714", + "block_number": 43842937, + "block_timestamp": "1774475221", + "chain_id": 8453, + "data": { + "to": "0xa5c1ce365ddb5a91ff466774ec4bdf8f97cb9f55", + "from": "0xf25bd11c334507fd007d584e2d0b7b2c6543f714", + "kind": "erc20_sent", + "token": { + "usd": "0.999846", + "name": "USD Coin", + "image": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x833589fcd6edb6e08f4c7c32d4f71b54bda02913.png", + "amount": "1213960", + "symbol": "USDC", + "address": "0x833589fcd6edb6e08f4c7c32d4f71b54bda02913", + "decimals": "6" + }, + "network_fee": { + "gas_price": "6000001", + "native_token_price_in_usd": "2163.23" + } + }, + "network": { + "block_explorer": { + "name": "BaseScan", + "url": "https://basescan.org" + }, + "name": "Base", + "native_symbol": "ETH" + }, + "tx_hash": "0x6ec64d9443bdbe76357c6cecd06a6aaa9782f06d52b9807af4e7fad0464df8f8" + }, + "unread": true, + "type": "erc20_sent", + "createdAt": "2026-03-25T21:47:01.524Z", + "isRead": true + }, + { + "created_at": "2026-03-25T21:46:23.401277Z", + "id": "a428e7e3-b427-57a8-8f24-ad412c119c94", + "notification_type": "on-chain", + "payload": { + "address": "0xf25bd11c334507fd007d584e2d0b7b2c6543f714", + "block_number": 43842918, + "block_timestamp": "1774475183", + "chain_id": 8453, + "data": { + "to": "0xf25bd11c334507fd007d584e2d0b7b2c6543f714", + "from": "0xf70da97812cb96acdf810712aa562db8dfa3dbef", + "kind": "erc20_received", + "token": { + "usd": "0.999846", + "name": "USD Coin", + "image": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x833589fcd6edb6e08f4c7c32d4f71b54bda02913.png", + "amount": "1213960", + "symbol": "USDC", + "address": "0x833589fcd6edb6e08f4c7c32d4f71b54bda02913", + "decimals": "6" + }, + "network_fee": { + "gas_price": "6000000", + "native_token_price_in_usd": "2163.23" + } + }, + "network": { + "block_explorer": { + "name": "BaseScan", + "url": "https://basescan.org" + }, + "name": "Base", + "native_symbol": "ETH" + }, + "tx_hash": "0xcf8c5f42c635a50c325e5f3360528d99218e897e4fcd2f6091677755a860145d" + }, + "unread": true, + "type": "erc20_received", + "createdAt": "2026-03-25T21:46:23.401Z", + "isRead": true + }, + { + "created_at": "2026-03-25T21:46:19.41119Z", + "id": "ba8e192d-35f4-5667-966e-b63170d5dd18", + "notification_type": "on-chain", + "payload": { + "address": "0xf25bd11c334507fd007d584e2d0b7b2c6543f714", + "block_number": 88725343, + "block_timestamp": "1774475178", + "chain_id": 56, + "data": { + "to": "0xaec23140408534b378bf5832defc426df8604b59", + "from": "0xf25bd11c334507fd007d584e2d0b7b2c6543f714", + "kind": "eth_sent", + "amount": { + "eth": "0.001942184844518098", + "usd": "1.26" + }, + "network_fee": { + "gas_price": "60000000", + "native_token_price_in_usd": "646.82" + } + }, + "network": { + "block_explorer": { + "name": "BscScan", + "url": "https://bscscan.com" + }, + "name": "BNB Smart Chain", + "native_symbol": "BNB" + }, + "tx_hash": "0x1cc8541b9f2b287e1031bd05dcb97b01f1c95b6d7462f99cc0bbcea3fd0a51b8" + }, + "unread": true, + "type": "eth_sent", + "createdAt": "2026-03-25T21:46:19.411Z", + "isRead": true + }, + { + "created_at": "2026-03-25T19:03:08.428294Z", + "id": "18768dd8-b355-5138-bee4-7890f86d0ba6", + "notification_type": "on-chain", + "payload": { + "address": "0xf25bd11c334507fd007d584e2d0b7b2c6543f714", + "block_number": 88703611, + "block_timestamp": "1774465387", + "chain_id": 56, + "data": { + "to": "0x1a1ec25dc08e98e5e93f1104b5e5cdd298707d31", + "from": "0xf25bd11c334507fd007d584e2d0b7b2c6543f714", + "kind": "eth_sent", + "amount": { + "eth": "0.002024433351334836", + "usd": "1.31" + }, + "network_fee": { + "gas_price": "60000000", + "native_token_price_in_usd": "644.66" + } + }, + "network": { + "block_explorer": { + "name": "BscScan", + "url": "https://bscscan.com" + }, + "name": "BNB Smart Chain", + "native_symbol": "BNB" + }, + "tx_hash": "0x58e366cf331a28effcdca91502a9bbfd34ddd2a876c59e6939bea52911d919ab" + }, + "unread": true, + "type": "eth_sent", + "createdAt": "2026-03-25T19:03:08.428Z", + "isRead": true + }, + { + "created_at": "2026-03-25T19:03:08.403788Z", + "id": "75f9e614-7eec-5814-b179-6951bfa62c0b", + "notification_type": "on-chain", + "payload": { + "address": "0xf25bd11c334507fd007d584e2d0b7b2c6543f714", + "block_number": 88703611, + "block_timestamp": "1774465387", + "chain_id": 56, + "data": { + "kind": "metamask_swap_completed", + "rate": "0.0015626516989449120791", + "token_in": { + "usd": "644.66", + "name": "Binance Coin", + "image": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x0000000000000000000000000000000000000000.png", + "amount": "2024433351334836", + "symbol": "BNB", + "address": "0x0000000000000000000000000000000000000000", + "decimals": "18" + }, + "token_out": { + "usd": "0.999839", + "name": "Tether USD", + "image": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x55d398326f99059ff775485246999027b3197955.png", + "amount": "1295511567102070542", + "symbol": "USDT", + "address": "0x55d398326f99059ff775485246999027b3197955", + "decimals": "18" + }, + "network_fee": { + "gas_price": "60000000", + "native_token_price_in_usd": "644.66" + } + }, + "network": { + "block_explorer": { + "name": "BscScan", + "url": "https://bscscan.com" + }, + "name": "BNB Smart Chain", + "native_symbol": "BNB" + }, + "tx_hash": "0x58e366cf331a28effcdca91502a9bbfd34ddd2a876c59e6939bea52911d919ab" + }, + "unread": true, + "type": "metamask_swap_completed", + "createdAt": "2026-03-25T19:03:08.403Z", + "isRead": true + }, + { + "created_at": "2026-03-25T19:01:04.372461Z", + "id": "d68a5eb2-c446-5e58-b2e5-7a0abf2c1f25", + "notification_type": "on-chain", + "payload": { + "address": "0xf25bd11c334507fd007d584e2d0b7b2c6543f714", + "block_number": 88703336, + "block_timestamp": "1774465264", + "chain_id": 56, + "data": { + "to": "0x1a1ec25dc08e98e5e93f1104b5e5cdd298707d31", + "from": "0xf25bd11c334507fd007d584e2d0b7b2c6543f714", + "kind": "eth_sent", + "amount": { + "eth": "0.002118032564563131", + "usd": "1.37" + }, + "network_fee": { + "gas_price": "60000000", + "native_token_price_in_usd": "645.44" + } + }, + "network": { + "block_explorer": { + "name": "BscScan", + "url": "https://bscscan.com" + }, + "name": "BNB Smart Chain", + "native_symbol": "BNB" + }, + "tx_hash": "0xe2c4a8d392e591179103675a0726ffe5755e495f6a72f165ea96cab30250c91d" + }, + "unread": true, + "type": "eth_sent", + "createdAt": "2026-03-25T19:01:04.372Z", + "isRead": true + }, + { + "created_at": "2026-03-25T19:01:04.34123Z", + "id": "e881cb42-baa2-50b9-b757-0f0696530603", + "notification_type": "on-chain", + "payload": { + "address": "0xf25bd11c334507fd007d584e2d0b7b2c6543f714", + "block_number": 88703336, + "block_timestamp": "1774465264", + "chain_id": 56, + "data": { + "kind": "metamask_swap_completed", + "rate": "0.0015643971655388769015", + "token_in": { + "usd": "645.44", + "name": "Binance Coin", + "image": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x0000000000000000000000000000000000000000.png", + "amount": "2118032564563131", + "symbol": "BNB", + "address": "0x0000000000000000000000000000000000000000", + "decimals": "18" + }, + "token_out": { + "usd": "0.999885", + "name": "Tether USD", + "image": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x55d398326f99059ff775485246999027b3197955.png", + "amount": "1353896958662378554", + "symbol": "USDT", + "address": "0x55d398326f99059ff775485246999027b3197955", + "decimals": "18" + }, + "network_fee": { + "gas_price": "60000000", + "native_token_price_in_usd": "645.44" + } + }, + "network": { + "block_explorer": { + "name": "BscScan", + "url": "https://bscscan.com" + }, + "name": "BNB Smart Chain", + "native_symbol": "BNB" + }, + "tx_hash": "0xe2c4a8d392e591179103675a0726ffe5755e495f6a72f165ea96cab30250c91d" + }, + "unread": true, + "type": "metamask_swap_completed", + "createdAt": "2026-03-25T19:01:04.341Z", + "isRead": true + }, + { + "created_at": "2026-03-25T18:42:16.05176Z", + "id": "dbd7c52f-6b2c-5d2c-99cd-bb02f3d5cda7", + "notification_type": "on-chain", + "payload": { + "address": "0xf25bd11c334507fd007d584e2d0b7b2c6543f714", + "block_number": 88700828, + "block_timestamp": "1774464135", + "chain_id": 56, + "data": { + "to": "0x1a1ec25dc08e98e5e93f1104b5e5cdd298707d31", + "from": "0xf25bd11c334507fd007d584e2d0b7b2c6543f714", + "kind": "eth_sent", + "amount": { + "eth": "0.002216708230453404", + "usd": "1.43" + }, + "network_fee": { + "gas_price": "60000000", + "native_token_price_in_usd": "645.73" + } + }, + "network": { + "block_explorer": { + "name": "BscScan", + "url": "https://bscscan.com" + }, + "name": "BNB Smart Chain", + "native_symbol": "BNB" + }, + "tx_hash": "0x6ef78ff859c7229730e89421c950472579c8d302e9a0161369b6a8b24742aacc" + }, + "unread": true, + "type": "eth_sent", + "createdAt": "2026-03-25T18:42:16.051Z", + "isRead": true + }, + { + "created_at": "2026-03-25T18:42:16.03523Z", + "id": "6c3e7c09-088e-56c9-b4c8-f1e423584b81", + "notification_type": "on-chain", + "payload": { + "address": "0xf25bd11c334507fd007d584e2d0b7b2c6543f714", + "block_number": 88700828, + "block_timestamp": "1774464135", + "chain_id": 56, + "data": { + "kind": "metamask_swap_completed", + "rate": "0.0015659078046342170305", + "token_in": { + "usd": "645.73", + "name": "Binance Coin", + "image": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x0000000000000000000000000000000000000000.png", + "amount": "2216708230453404", + "symbol": "BNB", + "address": "0x0000000000000000000000000000000000000000", + "decimals": "18" + }, + "token_out": { + "usd": "0.999484", + "name": "Tether USD", + "image": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x55d398326f99059ff775485246999027b3197955.png", + "amount": "1415605838283185840", + "symbol": "USDT", + "address": "0x55d398326f99059ff775485246999027b3197955", + "decimals": "18" + }, + "network_fee": { + "gas_price": "60000000", + "native_token_price_in_usd": "645.73" + } + }, + "network": { + "block_explorer": { + "name": "BscScan", + "url": "https://bscscan.com" + }, + "name": "BNB Smart Chain", + "native_symbol": "BNB" + }, + "tx_hash": "0x6ef78ff859c7229730e89421c950472579c8d302e9a0161369b6a8b24742aacc" + }, + "unread": true, + "type": "metamask_swap_completed", + "createdAt": "2026-03-25T18:42:16.035Z", + "isRead": true + }, + { + "created_at": "2026-03-25T18:41:38.487292Z", + "id": "540d2cfa-547c-5509-82bd-8727f6cdc876", + "notification_type": "on-chain", + "payload": { + "address": "0xf25bd11c334507fd007d584e2d0b7b2c6543f714", + "block_number": 88700745, + "block_timestamp": "1774464098", + "chain_id": 56, + "data": { + "to": "0x1a1ec25dc08e98e5e93f1104b5e5cdd298707d31", + "from": "0xf25bd11c334507fd007d584e2d0b7b2c6543f714", + "kind": "eth_sent", + "amount": { + "eth": "0.002300036775198028", + "usd": "1.49" + }, + "network_fee": { + "gas_price": "60000000", + "native_token_price_in_usd": "645.73" + } + }, + "network": { + "block_explorer": { + "name": "BscScan", + "url": "https://bscscan.com" + }, + "name": "BNB Smart Chain", + "native_symbol": "BNB" + }, + "tx_hash": "0xd8a28bcfd324c25014c9914da4e4eeecfa24efe393a91796eaeef82e1b49a4b1" + }, + "unread": true, + "type": "eth_sent", + "createdAt": "2026-03-25T18:41:38.487Z", + "isRead": true + }, + { + "created_at": "2026-03-25T18:41:38.451112Z", + "id": "2708fdec-87f3-57cb-b4a5-465d3ece7cee", + "notification_type": "on-chain", + "payload": { + "address": "0xf25bd11c334507fd007d584e2d0b7b2c6543f714", + "block_number": 88700745, + "block_timestamp": "1774464098", + "chain_id": 56, + "data": { + "kind": "metamask_swap_completed", + "rate": "0.0015650890302949105024", + "token_in": { + "usd": "645.73", + "name": "Binance Coin", + "image": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x0000000000000000000000000000000000000000.png", + "amount": "2300036775198028", + "symbol": "BNB", + "address": "0x0000000000000000000000000000000000000000", + "decimals": "18" + }, + "token_out": { + "usd": "0.999484", + "name": "Tether USD", + "image": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x55d398326f99059ff775485246999027b3197955.png", + "amount": "1469588458341332141", + "symbol": "USDT", + "address": "0x55d398326f99059ff775485246999027b3197955", + "decimals": "18" + }, + "network_fee": { + "gas_price": "60000000", + "native_token_price_in_usd": "645.73" + } + }, + "network": { + "block_explorer": { + "name": "BscScan", + "url": "https://bscscan.com" + }, + "name": "BNB Smart Chain", + "native_symbol": "BNB" + }, + "tx_hash": "0xd8a28bcfd324c25014c9914da4e4eeecfa24efe393a91796eaeef82e1b49a4b1" + }, + "unread": true, + "type": "metamask_swap_completed", + "createdAt": "2026-03-25T18:41:38.451Z", + "isRead": true + }, + { + "created_at": "2026-03-25T18:30:42.188002Z", + "id": "24ec61b7-289d-5317-8a89-f253b255ef57", + "notification_type": "on-chain", + "payload": { + "address": "0xf25bd11c334507fd007d584e2d0b7b2c6543f714", + "block_number": 88699285, + "block_timestamp": "1774463441", + "chain_id": 56, + "data": { + "to": "0x1a1ec25dc08e98e5e93f1104b5e5cdd298707d31", + "from": "0xf25bd11c334507fd007d584e2d0b7b2c6543f714", + "kind": "eth_sent", + "amount": { + "eth": "0.002435261339369288", + "usd": "1.57" + }, + "network_fee": { + "gas_price": "60000000", + "native_token_price_in_usd": "645.08" + } + }, + "network": { + "block_explorer": { + "name": "BscScan", + "url": "https://bscscan.com" + }, + "name": "BNB Smart Chain", + "native_symbol": "BNB" + }, + "tx_hash": "0x6b505990c88b14267dd67a0d2dc2aff452201ed408f3311fba1c3e5e5ea9ef34" + }, + "unread": true, + "type": "eth_sent", + "createdAt": "2026-03-25T18:30:42.188Z", + "isRead": true + }, + { + "created_at": "2026-03-25T18:30:42.18791Z", + "id": "6c84a2e0-7548-5be1-b088-0bbc6cff1410", + "notification_type": "on-chain", + "payload": { + "address": "0xf25bd11c334507fd007d584e2d0b7b2c6543f714", + "block_number": 88699285, + "block_timestamp": "1774463441", + "chain_id": 56, + "data": { + "kind": "metamask_swap_completed", + "rate": "0.0015621955429501558669", + "token_in": { + "usd": "645.08", + "name": "Binance Coin", + "image": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x0000000000000000000000000000000000000000.png", + "amount": "2435261339369288", + "symbol": "BNB", + "address": "0x0000000000000000000000000000000000000000", + "decimals": "18" + }, + "token_out": { + "usd": "0.999801", + "name": "Tether USD", + "image": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x55d398326f99059ff775485246999027b3197955.png", + "amount": "1558871007127811639", + "symbol": "USDT", + "address": "0x55d398326f99059ff775485246999027b3197955", + "decimals": "18" + }, + "network_fee": { + "gas_price": "60000000", + "native_token_price_in_usd": "645.08" + } + }, + "network": { + "block_explorer": { + "name": "BscScan", + "url": "https://bscscan.com" + }, + "name": "BNB Smart Chain", + "native_symbol": "BNB" + }, + "tx_hash": "0x6b505990c88b14267dd67a0d2dc2aff452201ed408f3311fba1c3e5e5ea9ef34" + }, + "unread": true, + "type": "metamask_swap_completed", + "createdAt": "2026-03-25T18:30:42.187Z", + "isRead": true + }, + { + "created_at": "2026-03-25T18:25:10.410852Z", + "id": "180c60f5-1fdb-5cfd-a9a6-ba9ca1e7922a", + "notification_type": "on-chain", + "payload": { + "address": "0xf25bd11c334507fd007d584e2d0b7b2c6543f714", + "block_number": 88698549, + "block_timestamp": "1774463109", + "chain_id": 56, + "data": { + "to": "0x1a1ec25dc08e98e5e93f1104b5e5cdd298707d31", + "from": "0xf25bd11c334507fd007d584e2d0b7b2c6543f714", + "kind": "eth_sent", + "amount": { + "eth": "0.002546692829074388", + "usd": "1.64" + }, + "network_fee": { + "gas_price": "60000000", + "native_token_price_in_usd": "645.08" + } + }, + "network": { + "block_explorer": { + "name": "BscScan", + "url": "https://bscscan.com" + }, + "name": "BNB Smart Chain", + "native_symbol": "BNB" + }, + "tx_hash": "0x751d896dc840a31c715e68fd6bc4a34cc55a2289d742a6125200cb59c615e7d3" + }, + "unread": true, + "type": "eth_sent", + "createdAt": "2026-03-25T18:25:10.410Z", + "isRead": true + }, + { + "created_at": "2026-03-25T18:25:10.394469Z", + "id": "f504f507-7c62-5939-8f1d-c191aba9efe3", + "notification_type": "on-chain", + "payload": { + "address": "0xf25bd11c334507fd007d584e2d0b7b2c6543f714", + "block_number": 88698549, + "block_timestamp": "1774463109", + "chain_id": 56, + "data": { + "kind": "metamask_swap_completed", + "rate": "0.0015615216338902649602", + "token_in": { + "usd": "645.08", + "name": "Binance Coin", + "image": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x0000000000000000000000000000000000000000.png", + "amount": "2546692829074388", + "symbol": "BNB", + "address": "0x0000000000000000000000000000000000000000", + "decimals": "18" + }, + "token_out": { + "usd": "0.999801", + "name": "Tether USD", + "image": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x55d398326f99059ff775485246999027b3197955.png", + "amount": "1630904608557831471", + "symbol": "USDT", + "address": "0x55d398326f99059ff775485246999027b3197955", + "decimals": "18" + }, + "network_fee": { + "gas_price": "60000000", + "native_token_price_in_usd": "645.08" + } + }, + "network": { + "block_explorer": { + "name": "BscScan", + "url": "https://bscscan.com" + }, + "name": "BNB Smart Chain", + "native_symbol": "BNB" + }, + "tx_hash": "0x751d896dc840a31c715e68fd6bc4a34cc55a2289d742a6125200cb59c615e7d3" + }, + "unread": true, + "type": "metamask_swap_completed", + "createdAt": "2026-03-25T18:25:10.394Z", + "isRead": true + }, + { + "created_at": "2026-03-25T18:23:32.492976Z", + "id": "6cf546c4-345b-5606-886c-c58f2dcecb7c", + "notification_type": "on-chain", + "payload": { + "address": "0xf25bd11c334507fd007d584e2d0b7b2c6543f714", + "block_number": 88698331, + "block_timestamp": "1774463011", + "chain_id": 56, + "data": { + "to": "0x1a1ec25dc08e98e5e93f1104b5e5cdd298707d31", + "from": "0xf25bd11c334507fd007d584e2d0b7b2c6543f714", + "kind": "eth_sent", + "amount": { + "eth": "0.002655420037010217", + "usd": "1.71" + }, + "network_fee": { + "gas_price": "60000000", + "native_token_price_in_usd": "645.08" + } + }, + "network": { + "block_explorer": { + "name": "BscScan", + "url": "https://bscscan.com" + }, + "name": "BNB Smart Chain", + "native_symbol": "BNB" + }, + "tx_hash": "0xaeb7b86ec71bf5485670a5a5cbd2530ae36f2ee746ca47ab7839f9b90dc54ffd" + }, + "unread": true, + "type": "eth_sent", + "createdAt": "2026-03-25T18:23:32.492Z", + "isRead": true + }, + { + "created_at": "2026-03-25T18:23:32.482849Z", + "id": "391b2608-96b4-5f5f-bdb6-dfa54f39bafa", + "notification_type": "on-chain", + "payload": { + "address": "0xf25bd11c334507fd007d584e2d0b7b2c6543f714", + "block_number": 88698331, + "block_timestamp": "1774463011", + "chain_id": 56, + "data": { + "kind": "metamask_swap_completed", + "rate": "0.0015612181318352170781", + "token_in": { + "usd": "645.08", + "name": "Binance Coin", + "image": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x0000000000000000000000000000000000000000.png", + "amount": "2655420037010217", + "symbol": "BNB", + "address": "0x0000000000000000000000000000000000000000", + "decimals": "18" + }, + "token_out": { + "usd": "0.999801", + "name": "Tether USD", + "image": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x55d398326f99059ff775485246999027b3197955.png", + "amount": "1700864205240021113", + "symbol": "USDT", + "address": "0x55d398326f99059ff775485246999027b3197955", + "decimals": "18" + }, + "network_fee": { + "gas_price": "60000000", + "native_token_price_in_usd": "645.08" + } + }, + "network": { + "block_explorer": { + "name": "BscScan", + "url": "https://bscscan.com" + }, + "name": "BNB Smart Chain", + "native_symbol": "BNB" + }, + "tx_hash": "0xaeb7b86ec71bf5485670a5a5cbd2530ae36f2ee746ca47ab7839f9b90dc54ffd" + }, + "unread": true, + "type": "metamask_swap_completed", + "createdAt": "2026-03-25T18:23:32.482Z", + "isRead": true + }, + { + "created_at": "2026-03-25T18:17:57.193721Z", + "id": "b7b57ec9-e493-5533-b594-289065afcf99", + "notification_type": "on-chain", + "payload": { + "address": "0xf25bd11c334507fd007d584e2d0b7b2c6543f714", + "block_number": 88697586, + "block_timestamp": "1774462676", + "chain_id": 56, + "data": { + "to": "0x1a1ec25dc08e98e5e93f1104b5e5cdd298707d31", + "from": "0xf25bd11c334507fd007d584e2d0b7b2c6543f714", + "kind": "eth_sent", + "amount": { + "eth": "0.002759091539282358", + "usd": "1.78" + }, + "network_fee": { + "gas_price": "60000000", + "native_token_price_in_usd": "645.08" + } + }, + "network": { + "block_explorer": { + "name": "BscScan", + "url": "https://bscscan.com" + }, + "name": "BNB Smart Chain", + "native_symbol": "BNB" + }, + "tx_hash": "0x6d7fead23509911fab6a8965b0ddb40b7c51662ea05fba0c9856ab3a1dc79078" + }, + "unread": true, + "type": "eth_sent", + "createdAt": "2026-03-25T18:17:57.193Z", + "isRead": true + }, + { + "created_at": "2026-03-25T18:17:57.193627Z", + "id": "61079144-0d04-5ee8-8de1-fadb5ed1f345", + "notification_type": "on-chain", + "payload": { + "address": "0xf25bd11c334507fd007d584e2d0b7b2c6543f714", + "block_number": 88697586, + "block_timestamp": "1774462676", + "chain_id": 56, + "data": { + "kind": "metamask_swap_completed", + "rate": "0.0015631723454732526157", + "token_in": { + "usd": "645.08", + "name": "Binance Coin", + "image": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x0000000000000000000000000000000000000000.png", + "amount": "2759091539282358", + "symbol": "BNB", + "address": "0x0000000000000000000000000000000000000000", + "decimals": "18" + }, + "token_out": { + "usd": "0.999801", + "name": "Tether USD", + "image": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x55d398326f99059ff775485246999027b3197955.png", + "amount": "1765059078272677076", + "symbol": "USDT", + "address": "0x55d398326f99059ff775485246999027b3197955", + "decimals": "18" + }, + "network_fee": { + "gas_price": "60000000", + "native_token_price_in_usd": "645.08" + } + }, + "network": { + "block_explorer": { + "name": "BscScan", + "url": "https://bscscan.com" + }, + "name": "BNB Smart Chain", + "native_symbol": "BNB" + }, + "tx_hash": "0x6d7fead23509911fab6a8965b0ddb40b7c51662ea05fba0c9856ab3a1dc79078" + }, + "unread": true, + "type": "metamask_swap_completed", + "createdAt": "2026-03-25T18:17:57.193Z", + "isRead": true + }, + { + "created_at": "2026-03-25T18:11:44.603982Z", + "id": "b2a5ec28-e8dc-51e3-94d9-f65116853314", + "notification_type": "on-chain", + "payload": { + "address": "0xf25bd11c334507fd007d584e2d0b7b2c6543f714", + "block_number": 88696759, + "block_timestamp": "1774462304", + "chain_id": 56, + "data": { + "to": "0x1a1ec25dc08e98e5e93f1104b5e5cdd298707d31", + "from": "0xf25bd11c334507fd007d584e2d0b7b2c6543f714", + "kind": "eth_sent", + "amount": { + "eth": "0.002864686371414607", + "usd": "1.85" + }, + "network_fee": { + "gas_price": "60000000", + "native_token_price_in_usd": "645.06" + } + }, + "network": { + "block_explorer": { + "name": "BscScan", + "url": "https://bscscan.com" + }, + "name": "BNB Smart Chain", + "native_symbol": "BNB" + }, + "tx_hash": "0xb4c8ba10f5fa990d7b1c5ac39c05afb13ae448eb1135480bac4e4e7e5c06e9ba" + }, + "unread": true, + "type": "eth_sent", + "createdAt": "2026-03-25T18:11:44.603Z", + "isRead": true + }, + { + "created_at": "2026-03-25T18:11:44.594304Z", + "id": "f98078e8-a4e1-589e-a4a0-6285d3c0bcfa", + "notification_type": "on-chain", + "payload": { + "address": "0xf25bd11c334507fd007d584e2d0b7b2c6543f714", + "block_number": 88696759, + "block_timestamp": "1774462304", + "chain_id": 56, + "data": { + "kind": "metamask_swap_completed", + "rate": "0.0015634558574497592351", + "token_in": { + "usd": "645.06", + "name": "Binance Coin", + "image": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x0000000000000000000000000000000000000000.png", + "amount": "2864686371414607", + "symbol": "BNB", + "address": "0x0000000000000000000000000000000000000000", + "decimals": "18" + }, + "token_out": { + "usd": "0.99988", + "name": "Tether USD", + "image": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x55d398326f99059ff775485246999027b3197955.png", + "amount": "1832278383661792682", + "symbol": "USDT", + "address": "0x55d398326f99059ff775485246999027b3197955", + "decimals": "18" + }, + "network_fee": { + "gas_price": "60000000", + "native_token_price_in_usd": "645.06" + } + }, + "network": { + "block_explorer": { + "name": "BscScan", + "url": "https://bscscan.com" + }, + "name": "BNB Smart Chain", + "native_symbol": "BNB" + }, + "tx_hash": "0xb4c8ba10f5fa990d7b1c5ac39c05afb13ae448eb1135480bac4e4e7e5c06e9ba" + }, + "unread": true, + "type": "metamask_swap_completed", + "createdAt": "2026-03-25T18:11:44.594Z", + "isRead": true + }, + { + "created_at": "2026-03-25T17:29:26.071345Z", + "id": "e2173d50-7240-51e1-b9f8-16edf40afe9a", + "notification_type": "on-chain", + "payload": { + "address": "0xf25bd11c334507fd007d584e2d0b7b2c6543f714", + "block_number": 88691117, + "block_timestamp": "1774459765", + "chain_id": 56, + "data": { + "to": "0x1a1ec25dc08e98e5e93f1104b5e5cdd298707d31", + "from": "0xf25bd11c334507fd007d584e2d0b7b2c6543f714", + "kind": "eth_sent", + "amount": { + "eth": "0.002962069992279377", + "usd": "1.92" + }, + "network_fee": { + "gas_price": "60000000", + "native_token_price_in_usd": "646.85" + } + }, + "network": { + "block_explorer": { + "name": "BscScan", + "url": "https://bscscan.com" + }, + "name": "BNB Smart Chain", + "native_symbol": "BNB" + }, + "tx_hash": "0x0b261d2f943301061504dfecc3d59c026344c4fe1f8f980a99cfc0f0d13648b3" + }, + "unread": true, + "type": "eth_sent", + "createdAt": "2026-03-25T17:29:26.071Z", + "isRead": true + }, + { + "created_at": "2026-03-25T17:29:26.059792Z", + "id": "6308f39d-f0b4-5a6e-aa8a-98de27a4afe2", + "notification_type": "on-chain", + "payload": { + "address": "0xf25bd11c334507fd007d584e2d0b7b2c6543f714", + "block_number": 88691117, + "block_timestamp": "1774459765", + "chain_id": 56, + "data": { + "kind": "metamask_swap_completed", + "rate": "0.0015595891530019940334", + "token_in": { + "usd": "646.85", + "name": "Binance Coin", + "image": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x0000000000000000000000000000000000000000.png", + "amount": "2962069992279377", + "symbol": "BNB", + "address": "0x0000000000000000000000000000000000000000", + "decimals": "18" + }, + "token_out": { + "usd": "0.999819", + "name": "Tether USD", + "image": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x55d398326f99059ff775485246999027b3197955.png", + "amount": "1899263012042498994", + "symbol": "USDT", + "address": "0x55d398326f99059ff775485246999027b3197955", + "decimals": "18" + }, + "network_fee": { + "gas_price": "60000000", + "native_token_price_in_usd": "646.85" + } + }, + "network": { + "block_explorer": { + "name": "BscScan", + "url": "https://bscscan.com" + }, + "name": "BNB Smart Chain", + "native_symbol": "BNB" + }, + "tx_hash": "0x0b261d2f943301061504dfecc3d59c026344c4fe1f8f980a99cfc0f0d13648b3" + }, + "unread": true, + "type": "metamask_swap_completed", + "createdAt": "2026-03-25T17:29:26.059Z", + "isRead": true + }, + { + "created_at": "2026-03-25T17:18:28.259605Z", + "id": "f41310d9-71a1-5304-af17-8f37217619be", + "notification_type": "on-chain", + "payload": { + "address": "0xf25bd11c334507fd007d584e2d0b7b2c6543f714", + "block_number": 88689656, + "block_timestamp": "1774459107", + "chain_id": 56, + "data": { + "to": "0x1a1ec25dc08e98e5e93f1104b5e5cdd298707d31", + "from": "0xf25bd11c334507fd007d584e2d0b7b2c6543f714", + "kind": "eth_sent", + "amount": { + "eth": "0.003085055568328475", + "usd": "2.00" + }, + "network_fee": { + "gas_price": "60000000", + "native_token_price_in_usd": "646.85" + } + }, + "network": { + "block_explorer": { + "name": "BscScan", + "url": "https://bscscan.com" + }, + "name": "BNB Smart Chain", + "native_symbol": "BNB" + }, + "tx_hash": "0x4f4e6bbc9ef22800f4fe801687315a1a3b26962f22aeb3cd8ae8f52015bee654" + }, + "unread": true, + "type": "eth_sent", + "createdAt": "2026-03-25T17:18:28.259Z", + "isRead": true + }, + { + "created_at": "2026-03-25T17:18:28.236424Z", + "id": "2a69f6ba-cb8f-5fb1-bae8-b87427d9b129", + "notification_type": "on-chain", + "payload": { + "address": "0xf25bd11c334507fd007d584e2d0b7b2c6543f714", + "block_number": 88689656, + "block_timestamp": "1774459107", + "chain_id": 56, + "data": { + "kind": "metamask_swap_completed", + "rate": "0.0015622577438715769504", + "token_in": { + "usd": "646.85", + "name": "Binance Coin", + "image": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x0000000000000000000000000000000000000000.png", + "amount": "3085055568328475", + "symbol": "BNB", + "address": "0x0000000000000000000000000000000000000000", + "decimals": "18" + }, + "token_out": { + "usd": "0.999819", + "name": "Tether USD", + "image": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x55d398326f99059ff775485246999027b3197955.png", + "amount": "1974741735434199490", + "symbol": "USDT", + "address": "0x55d398326f99059ff775485246999027b3197955", + "decimals": "18" + }, + "network_fee": { + "gas_price": "60000000", + "native_token_price_in_usd": "646.85" + } + }, + "network": { + "block_explorer": { + "name": "BscScan", + "url": "https://bscscan.com" + }, + "name": "BNB Smart Chain", + "native_symbol": "BNB" + }, + "tx_hash": "0x4f4e6bbc9ef22800f4fe801687315a1a3b26962f22aeb3cd8ae8f52015bee654" + }, + "unread": true, + "type": "metamask_swap_completed", + "createdAt": "2026-03-25T17:18:28.236Z", + "isRead": true + }, + { + "created_at": "2026-03-24T23:15:41.151088Z", + "id": "8897283c-7a38-536d-b1f6-09cb77b68c53", + "notification_type": "on-chain", + "payload": { + "address": "0xf25bd11c334507fd007d584e2d0b7b2c6543f714", + "block_number": 88545320, + "block_timestamp": "1774394140", + "chain_id": 56, + "data": { + "to": "0x1a1ec25dc08e98e5e93f1104b5e5cdd298707d31", + "from": "0xf25bd11c334507fd007d584e2d0b7b2c6543f714", + "kind": "eth_sent", + "amount": { + "eth": "0.003226095629701272", + "usd": "2.05" + }, + "network_fee": { + "gas_price": "60000000", + "native_token_price_in_usd": "635.96" + } + }, + "network": { + "block_explorer": { + "name": "BscScan", + "url": "https://bscscan.com" + }, + "name": "BNB Smart Chain", + "native_symbol": "BNB" + }, + "tx_hash": "0xee4b91aef18e81ceb7946a4d531551324a47eb6c2fda2e193cc6a27837e54c3b" + }, + "unread": true, + "type": "eth_sent", + "createdAt": "2026-03-24T23:15:41.151Z", + "isRead": true + }, + { + "created_at": "2026-03-24T23:15:41.133906Z", + "id": "f3bc78d2-a9a7-5294-9982-a5809eb43d38", + "notification_type": "on-chain", + "payload": { + "address": "0xf25bd11c334507fd007d584e2d0b7b2c6543f714", + "block_number": 88545320, + "block_timestamp": "1774394140", + "chain_id": 56, + "data": { + "kind": "metamask_swap_completed", + "rate": "0.0015819149242905570078", + "token_in": { + "usd": "635.96", + "name": "Binance Coin", + "image": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x0000000000000000000000000000000000000000.png", + "amount": "3226095629701272", + "symbol": "BNB", + "address": "0x0000000000000000000000000000000000000000", + "decimals": "18" + }, + "token_out": { + "usd": "0.999454", + "name": "Tether USD", + "image": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x55d398326f99059ff775485246999027b3197955.png", + "amount": "2039361017564255159", + "symbol": "USDT", + "address": "0x55d398326f99059ff775485246999027b3197955", + "decimals": "18" + }, + "network_fee": { + "gas_price": "60000000", + "native_token_price_in_usd": "635.96" + } + }, + "network": { + "block_explorer": { + "name": "BscScan", + "url": "https://bscscan.com" + }, + "name": "BNB Smart Chain", + "native_symbol": "BNB" + }, + "tx_hash": "0xee4b91aef18e81ceb7946a4d531551324a47eb6c2fda2e193cc6a27837e54c3b" + }, + "unread": true, + "type": "metamask_swap_completed", + "createdAt": "2026-03-24T23:15:41.133Z", + "isRead": true + }, + { + "created_at": "2026-03-19T22:53:31.406623Z", + "id": "f0ae1145-be3c-564b-a682-495cedbf3691", + "notification_type": "on-chain", + "payload": { + "address": "0xf25bd11c334507fd007d584e2d0b7b2c6543f714", + "block_number": 87582792, + "block_timestamp": "1773960811", + "chain_id": 56, + "data": { + "to": "0xf25bd11c334507fd007d584e2d0b7b2c6543f714", + "from": "0xacc0c1f672b03b9a5fed4535f840f09b85f40e98", + "kind": "erc20_received", + "token": { + "usd": "1", + "name": "Tether USD", + "image": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x55d398326f99059ff775485246999027b3197955.png", + "amount": "2098214822452410000", + "symbol": "USDT", + "address": "0x55d398326f99059ff775485246999027b3197955", + "decimals": "18" + }, + "network_fee": { + "gas_price": "50000000", + "native_token_price_in_usd": "639.57" + } + }, + "network": { + "block_explorer": { + "name": "BscScan", + "url": "https://bscscan.com" + }, + "name": "BNB Smart Chain", + "native_symbol": "BNB" + }, + "tx_hash": "0x21a3536558d18d130723d1dd083f28baafa930e7d8e1bba73683c8b03a636920" + }, + "unread": true, + "type": "erc20_received", + "createdAt": "2026-03-19T22:53:31.406Z", + "isRead": true + }, + { + "created_at": "2026-03-19T22:53:27.318899Z", + "id": "19698d81-da96-5b2b-956c-749049220c05", + "notification_type": "on-chain", + "payload": { + "address": "0xf25bd11c334507fd007d584e2d0b7b2c6543f714", + "block_number": 149181015, + "block_timestamp": "1773960807", + "chain_id": 10, + "data": { + "to": "0x1d3960155fc7aeec56fed24b109a21fcdf78a21e", + "from": "0xf25bd11c334507fd007d584e2d0b7b2c6543f714", + "kind": "erc20_sent", + "token": { + "usd": "0.999968", + "name": "USD Coin", + "image": "https://static.cx.metamask.io/api/v1/tokenIcons/10/0x0b2c639c533813f4aa9d7837caf62653d097ff85.png", + "amount": "2120063", + "symbol": "USDC", + "address": "0x0b2c639c533813f4aa9d7837caf62653d097ff85", + "decimals": "6" + }, + "network_fee": { + "gas_price": "100878", + "native_token_price_in_usd": "2136.53" + } + }, + "network": { + "block_explorer": { + "name": "Optimistic Etherscan", + "url": "https://optimistic.etherscan.io" + }, + "name": "Optimism", + "native_symbol": "ETH" + }, + "tx_hash": "0x909efb7bda1c2d53210f5b38754b96a2dbce031df57ce62fd0e68774d2ba2c08" + }, + "unread": true, + "type": "erc20_sent", + "createdAt": "2026-03-19T22:53:27.318Z", + "isRead": true + }, + { + "created_at": "2026-03-19T22:52:57.315718Z", + "id": "203b2c41-24bd-5ecc-a4b4-650a5f19ed65", + "notification_type": "on-chain", + "payload": { + "address": "0xf25bd11c334507fd007d584e2d0b7b2c6543f714", + "block_number": 149181000, + "block_timestamp": "1773960777", + "chain_id": 10, + "data": { + "to": "0x9dda6ef3d919c9bc8885d5560999a3640431e8e6", + "from": "0xf25bd11c334507fd007d584e2d0b7b2c6543f714", + "kind": "eth_sent", + "amount": { + "eth": "0.001000000000000000", + "usd": "2.14" + }, + "network_fee": { + "gas_price": "100879", + "native_token_price_in_usd": "2136.53" + } + }, + "network": { + "block_explorer": { + "name": "Optimistic Etherscan", + "url": "https://optimistic.etherscan.io" + }, + "name": "Optimism", + "native_symbol": "ETH" + }, + "tx_hash": "0x1de5763787c50e0ba564406418aaf567343fe52459c8392f4fb83294d170a9bd" + }, + "unread": true, + "type": "eth_sent", + "createdAt": "2026-03-19T22:52:57.315Z", + "isRead": true + }, + { + "created_at": "2026-03-19T22:52:57.305253Z", + "id": "d21d110f-9669-5274-9f14-e307f63bd016", + "notification_type": "on-chain", + "payload": { + "address": "0xf25bd11c334507fd007d584e2d0b7b2c6543f714", + "block_number": 149181000, + "block_timestamp": "1773960777", + "chain_id": 10, + "data": { + "kind": "metamask_swap_completed", + "rate": "0.00047168409618016068387", + "token_in": { + "usd": "2136.53", + "name": "Optimism", + "image": "https://static.cx.metamask.io/api/v1/tokenIcons/10/0x0000000000000000000000000000000000000000.png", + "amount": "1000000000000000", + "symbol": "OP", + "address": "0x0000000000000000000000000000000000000000", + "decimals": "18" + }, + "token_out": { + "usd": "0.999968", + "name": "USD Coin", + "image": "https://static.cx.metamask.io/api/v1/tokenIcons/10/0x0b2c639c533813f4aa9d7837caf62653d097ff85.png", + "amount": "2120063", + "symbol": "USDC", + "address": "0x0b2c639c533813f4aa9d7837caf62653d097ff85", + "decimals": "6" + }, + "network_fee": { + "gas_price": "100879", + "native_token_price_in_usd": "2136.53" + } + }, + "network": { + "block_explorer": { + "name": "Optimistic Etherscan", + "url": "https://optimistic.etherscan.io" + }, + "name": "Optimism", + "native_symbol": "ETH" + }, + "tx_hash": "0x1de5763787c50e0ba564406418aaf567343fe52459c8392f4fb83294d170a9bd" + }, + "unread": true, + "type": "metamask_swap_completed", + "createdAt": "2026-03-19T22:52:57.305Z", + "isRead": true + }, + { + "created_at": "2026-03-19T22:50:39.377421Z", + "id": "426f0194-a270-5c30-9506-bb0549c9c8d8", + "notification_type": "on-chain", + "payload": { + "address": "0xf25bd11c334507fd007d584e2d0b7b2c6543f714", + "block_number": 149180931, + "block_timestamp": "1773960639", + "chain_id": 10, + "data": { + "to": "0xf25bd11c334507fd007d584e2d0b7b2c6543f714", + "from": "0xacc0c1f672b03b9a5fed4535f840f09b85f40e98", + "kind": "eth_received", + "amount": { + "eth": "0.000921244312951873", + "usd": "1.97" + }, + "network_fee": { + "gas_price": "100865", + "native_token_price_in_usd": "2136.53" + } + }, + "network": { + "block_explorer": { + "name": "Optimistic Etherscan", + "url": "https://optimistic.etherscan.io" + }, + "name": "Optimism", + "native_symbol": "ETH" + }, + "tx_hash": "0x6031af671b4986aa4446bc86c81384cf465c6a6f4714b15e7654d42eb2468aac" + }, + "unread": true, + "type": "eth_received", + "createdAt": "2026-03-19T22:50:39.377Z", + "isRead": true + }, + { + "created_at": "2026-03-19T22:50:33.349945Z", + "id": "f5319390-6402-5f7e-8ae2-8563aa2fb2fc", + "notification_type": "on-chain", + "payload": { + "address": "0xf25bd11c334507fd007d584e2d0b7b2c6543f714", + "block_number": 43585643, + "block_timestamp": "1773960633", + "chain_id": 8453, + "data": { + "to": "0xa5c1ce365ddb5a91ff466774ec4bdf8f97cb9f55", + "from": "0xf25bd11c334507fd007d584e2d0b7b2c6543f714", + "kind": "erc20_sent", + "token": { + "usd": "0.999968", + "name": "USD Coin", + "image": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x833589fcd6edb6e08f4c7c32d4f71b54bda02913.png", + "amount": "2000000", + "symbol": "USDC", + "address": "0x833589fcd6edb6e08f4c7c32d4f71b54bda02913", + "decimals": "6" + }, + "network_fee": { + "gas_price": "6000001", + "native_token_price_in_usd": "2138.25" + } + }, + "network": { + "block_explorer": { + "name": "BaseScan", + "url": "https://basescan.org" + }, + "name": "Base", + "native_symbol": "ETH" + }, + "tx_hash": "0xaf7df1971789b4bed9f1824fa4346a2943938679c2908c1af9e3902a74b75cb2" + }, + "unread": true, + "type": "erc20_sent", + "createdAt": "2026-03-19T22:50:33.349Z", + "isRead": true + }, + { + "created_at": "2026-03-19T22:48:39.152068Z", + "id": "502ad172-e553-5f3d-94a7-f93ee23cbb3d", + "notification_type": "on-chain", + "payload": { + "address": "0x30e8ccad5a980bdf30447f8c2c48e70989d9d294", + "block_number": 29806282, + "block_timestamp": "1773960519", + "chain_id": 59144, + "data": { + "kind": "metamask_swap_completed", + "rate": "2157.675612993209397", + "token_in": { + "usd": "0.999911", + "name": "MetaMask USD", + "image": "https://static.cx.metamask.io/api/v1/tokenIcons/59144/0xaca92e438df0b2401ff60da7e4337b687a2435da.png", + "amount": "2312697", + "symbol": "MUSD", + "address": "0xaca92e438df0b2401ff60da7e4337b687a2435da", + "decimals": "6" + }, + "token_out": { + "usd": "2136.94", + "name": "Ether", + "image": "https://static.cx.metamask.io/api/v1/tokenIcons/59144/0x0000000000000000000000000000000000000000.png", + "amount": "1071846475009160", + "symbol": "ETH", + "address": "0x0000000000000000000000000000000000000000", + "decimals": "18" + }, + "network_fee": { + "gas_price": "39386762", + "native_token_price_in_usd": "2136.94" + } + }, + "network": { + "block_explorer": { + "name": "LineaScan", + "url": "https://lineascan.build" + }, + "name": "Linea", + "native_symbol": "ETH" + }, + "tx_hash": "0x7599337af56b3fc8078b3b51e6b3d2956bf0a3c3c51f17873ea8a851e1a0e410" + }, + "unread": true, + "type": "metamask_swap_completed", + "createdAt": "2026-03-19T22:48:39.152Z", + "isRead": true + }, + { + "created_at": "2026-03-19T17:22:32.106178Z", + "id": "eaab5f66-f53c-5cbc-9023-cfd418c3f502", + "notification_type": "on-chain", + "payload": { + "address": "0x30e8ccad5a980bdf30447f8c2c48e70989d9d294", + "block_number": 84410459, + "block_timestamp": "1773940951", + "chain_id": 137, + "data": { + "to": "0xfb7c744da69aef11dfb54f31d9db12a3b086b025", + "from": "0x30e8ccad5a980bdf30447f8c2c48e70989d9d294", + "kind": "erc20_sent", + "token": { + "usd": "0.999908", + "name": "Tether USD", + "image": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0xc2132d05d31c914a87c6611c10748aeb04b58e8f.png", + "amount": "12425413", + "symbol": "USDT", + "address": "0xc2132d05d31c914a87c6611c10748aeb04b58e8f", + "decimals": "6" + }, + "network_fee": { + "gas_price": "163614606846", + "native_token_price_in_usd": "0.094428" + } + }, + "network": { + "block_explorer": { + "name": "PolygonScan", + "url": "https://polygonscan.com" + }, + "name": "Polygon", + "native_symbol": "POL" + }, + "tx_hash": "0x41ee34e2510ab1a748457924214dd345a4b5daf50fbff0cd89520763859e0758" + }, + "unread": true, + "type": "erc20_sent", + "createdAt": "2026-03-19T17:22:32.106Z", + "isRead": true + }, + { + "created_at": "2026-03-18T05:06:13.7323Z", + "id": "15da431d-75d0-5d30-ae62-d5254c6c242d", + "notification_type": "on-chain", + "payload": { + "address": "0x30e8ccad5a980bdf30447f8c2c48e70989d9d294", + "block_number": 24682166, + "block_timestamp": "1773810371", + "chain_id": 1, + "data": { + "to": "0x881d40237659c251811cec9c364ef91dc08d300c", + "from": "0x30e8ccad5a980bdf30447f8c2c48e70989d9d294", + "kind": "eth_sent", + "amount": { + "eth": "0.000906988746274251", + "usd": "2.11" + }, + "network_fee": { + "gas_price": "2137565772", + "native_token_price_in_usd": "2327.9" + } + }, + "network": { + "block_explorer": { + "name": "Etherscan", + "url": "https://etherscan.io" + }, + "name": "Ethereum", + "native_symbol": "ETH" + }, + "tx_hash": "0xbd7520e80d8f6ad8f74d8446e0da4cd10eb7a969fe20549e93f930f28098d515" + }, + "unread": true, + "type": "eth_sent", + "createdAt": "2026-03-18T05:06:13.732Z", + "isRead": true + }, + { + "created_at": "2026-03-18T05:06:13.191421Z", + "id": "dc61c934-d019-5f77-a55e-8ff86cad835b", + "notification_type": "on-chain", + "payload": { + "address": "0x30e8ccad5a980bdf30447f8c2c48e70989d9d294", + "block_number": 24682166, + "block_timestamp": "1773810371", + "chain_id": 1, + "data": { + "kind": "metamask_swap_completed", + "rate": "0.0044414511839491259", + "token_in": { + "usd": "2327.9", + "name": "Ethereum", + "image": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x0000000000000000000000000000000000000000.png", + "amount": "906988746274251", + "symbol": "ETH", + "address": "0x0000000000000000000000000000000000000000", + "decimals": "18" + }, + "token_out": { + "usd": "0.999925", + "name": "MetaMask USD", + "image": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xaca92e438df0b2401ff60da7e4337b687a2435da.png", + "amount": "204210", + "symbol": "MUSD", + "address": "0xaca92e438df0b2401ff60da7e4337b687a2435da", + "decimals": "6" + }, + "network_fee": { + "gas_price": "2137565772", + "native_token_price_in_usd": "2327.9" + } + }, + "network": { + "block_explorer": { + "name": "Etherscan", + "url": "https://etherscan.io" + }, + "name": "Ethereum", + "native_symbol": "ETH" + }, + "tx_hash": "0xbd7520e80d8f6ad8f74d8446e0da4cd10eb7a969fe20549e93f930f28098d515" + }, + "unread": true, + "type": "metamask_swap_completed", + "createdAt": "2026-03-18T05:06:13.191Z", + "isRead": true + }, + { + "created_at": "2026-03-12T16:43:43.8985Z", + "id": "33ddab81-1112-570e-9e92-612e9d3ab524", + "notification_type": "on-chain", + "payload": { + "address": "0x30e8ccad5a980bdf30447f8c2c48e70989d9d294", + "block_number": 84106895, + "block_timestamp": "1773333823", + "chain_id": 137, + "data": { + "kind": "metamask_swap_completed", + "rate": "18.003997649273214285", + "token_in": { + "usd": "0.097982", + "name": "Polygon Ecosystem Token", + "image": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x0000000000000000000000000000000000000000.png", + "amount": "1260279835449125", + "symbol": "POL", + "address": "0x0000000000000000000000000000000000000000", + "decimals": "18" + }, + "token_out": { + "usd": "1", + "name": "Tether USD", + "image": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0xc2132d05d31c914a87c6611c10748aeb04b58e8f.png", + "amount": "70", + "symbol": "USDT", + "address": "0xc2132d05d31c914a87c6611c10748aeb04b58e8f", + "decimals": "6" + }, + "network_fee": { + "gas_price": "126778290703", + "native_token_price_in_usd": "0.097982" + } + }, + "network": { + "block_explorer": { + "name": "PolygonScan", + "url": "https://polygonscan.com" + }, + "name": "Polygon", + "native_symbol": "POL" + }, + "tx_hash": "0x82db1514ef756ef9e5de877414df89228bfd7fe910e5d70848bdebff11bea3ed" + }, + "unread": true, + "type": "metamask_swap_completed", + "createdAt": "2026-03-12T16:43:43.898Z", + "isRead": true + }, + { + "created_at": "2026-03-12T16:42:15.707696Z", + "id": "d505bb50-d038-559f-bb30-db391eacd910", + "notification_type": "on-chain", + "payload": { + "address": "0x30e8ccad5a980bdf30447f8c2c48e70989d9d294", + "block_number": 84106851, + "block_timestamp": "1773333735", + "chain_id": 137, + "data": { + "to": "0x1a1ec25dc08e98e5e93f1104b5e5cdd298707d31", + "from": "0x30e8ccad5a980bdf30447f8c2c48e70989d9d294", + "kind": "eth_sent", + "amount": { + "eth": "127.520147906999322263", + "usd": "12.49" + }, + "network_fee": { + "gas_price": "174856198387", + "native_token_price_in_usd": "0.097982" + } + }, + "network": { + "block_explorer": { + "name": "PolygonScan", + "url": "https://polygonscan.com" + }, + "name": "Polygon", + "native_symbol": "POL" + }, + "tx_hash": "0x2155058d28ec8b01956f1471a4fda6b4f3b61fde2e36fe73754681a5fb05f66f" + }, + "unread": true, + "type": "eth_sent", + "createdAt": "2026-03-12T16:42:15.707Z", + "isRead": true + }, + { + "created_at": "2026-03-12T16:42:15.659361Z", + "id": "7bcc6c4c-c8d2-5e58-b907-2b6e1ecd6ca2", + "notification_type": "on-chain", + "payload": { + "address": "0x30e8ccad5a980bdf30447f8c2c48e70989d9d294", + "block_number": 84106851, + "block_timestamp": "1773333735", + "chain_id": 137, + "data": { + "kind": "metamask_swap_completed", + "rate": "10.2629076643597945156", + "token_in": { + "usd": "0.097982", + "name": "Polygon Ecosystem Token", + "image": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x0000000000000000000000000000000000000000.png", + "amount": "127520147906999322263", + "symbol": "POL", + "address": "0x0000000000000000000000000000000000000000", + "decimals": "18" + }, + "token_out": { + "usd": "1", + "name": "Tether USD", + "image": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0xc2132d05d31c914a87c6611c10748aeb04b58e8f.png", + "amount": "12425343", + "symbol": "USDT", + "address": "0xc2132d05d31c914a87c6611c10748aeb04b58e8f", + "decimals": "6" + }, + "network_fee": { + "gas_price": "174856198387", + "native_token_price_in_usd": "0.097982" + } + }, + "network": { + "block_explorer": { + "name": "PolygonScan", + "url": "https://polygonscan.com" + }, + "name": "Polygon", + "native_symbol": "POL" + }, + "tx_hash": "0x2155058d28ec8b01956f1471a4fda6b4f3b61fde2e36fe73754681a5fb05f66f" + }, + "unread": true, + "type": "metamask_swap_completed", + "createdAt": "2026-03-12T16:42:15.659Z", + "isRead": true + }, + { + "created_at": "2026-03-12T16:39:16.806426Z", + "id": "55d96864-8973-54b7-9d9d-063f1359c1dc", + "notification_type": "on-chain", + "payload": { + "address": "0x30e8ccad5a980bdf30447f8c2c48e70989d9d294", + "block_number": 84106761, + "block_timestamp": "1773333555", + "chain_id": 137, + "data": { + "to": "0x1a1ec25dc08e98e5e93f1104b5e5cdd298707d31", + "from": "0x30e8ccad5a980bdf30447f8c2c48e70989d9d294", + "kind": "eth_sent", + "amount": { + "eth": "129.909352491371104051", + "usd": "12.73" + }, + "network_fee": { + "gas_price": "185477519508", + "native_token_price_in_usd": "0.097982" + } + }, + "network": { + "block_explorer": { + "name": "PolygonScan", + "url": "https://polygonscan.com" + }, + "name": "Polygon", + "native_symbol": "POL" + }, + "tx_hash": "0x957c2b74ec2970af7f1fa24ca2623108f93febc178378813bc4c9acc6574baee" + }, + "unread": true, + "type": "eth_sent", + "createdAt": "2026-03-12T16:39:16.806Z", + "isRead": true + }, + { + "created_at": "2026-03-12T16:39:16.730446Z", + "id": "71ebd270-2611-580b-a3d6-088e40a635a3", + "notification_type": "on-chain", + "payload": { + "address": "0x30e8ccad5a980bdf30447f8c2c48e70989d9d294", + "block_number": 84106761, + "block_timestamp": "1773333555", + "chain_id": 137, + "data": { + "kind": "metamask_swap_completed", + "rate": "10.2670118018961152826", + "token_in": { + "usd": "0.097982", + "name": "Polygon Ecosystem Token", + "image": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x0000000000000000000000000000000000000000.png", + "amount": "129909352491371104051", + "symbol": "POL", + "address": "0x0000000000000000000000000000000000000000", + "decimals": "18" + }, + "token_out": { + "usd": "1", + "name": "Tether USD", + "image": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0xc2132d05d31c914a87c6611c10748aeb04b58e8f.png", + "amount": "12653083", + "symbol": "USDT", + "address": "0xc2132d05d31c914a87c6611c10748aeb04b58e8f", + "decimals": "6" + }, + "network_fee": { + "gas_price": "185477519508", + "native_token_price_in_usd": "0.097982" + } + }, + "network": { + "block_explorer": { + "name": "PolygonScan", + "url": "https://polygonscan.com" + }, + "name": "Polygon", + "native_symbol": "POL" + }, + "tx_hash": "0x957c2b74ec2970af7f1fa24ca2623108f93febc178378813bc4c9acc6574baee" + }, + "unread": true, + "type": "metamask_swap_completed", + "createdAt": "2026-03-12T16:39:16.730Z", + "isRead": true + }, + { + "created_at": "2026-03-12T00:27:33.545863Z", + "id": "67b59675-d9f7-53de-a5bd-29dfc5e943bf", + "notification_type": "on-chain", + "payload": { + "address": "0x30e8ccad5a980bdf30447f8c2c48e70989d9d294", + "block_number": 29648187, + "block_timestamp": "1773275252", + "chain_id": 59144, + "data": { + "kind": "metamask_swap_completed", + "rate": "1.025473721806185592", + "token_in": { + "usd": "1", + "name": "USDC", + "image": "https://static.cx.metamask.io/api/v1/tokenIcons/59144/0x176211869ca2b568f2a7d4ee941e073a821ee1ff.png", + "amount": "2371610", + "symbol": "USDC", + "address": "0x176211869ca2b568f2a7d4ee941e073a821ee1ff", + "decimals": "6" + }, + "token_out": { + "usd": "1", + "name": "MetaMask USD", + "image": "https://static.cx.metamask.io/api/v1/tokenIcons/59144/0xaca92e438df0b2401ff60da7e4337b687a2435da.png", + "amount": "2312697", + "symbol": "MUSD", + "address": "0xaca92e438df0b2401ff60da7e4337b687a2435da", + "decimals": "6" + }, + "network_fee": { + "gas_price": "50000008", + "native_token_price_in_usd": "2053.63" + } + }, + "network": { + "block_explorer": { + "name": "LineaScan", + "url": "https://lineascan.build" + }, + "name": "Linea", + "native_symbol": "ETH" + }, + "tx_hash": "0x5d319d811f7b4dd6fcd757d6215841e791c1432c986d5af5e89cfef69008e97e" + }, + "unread": true, + "type": "metamask_swap_completed", + "createdAt": "2026-03-12T00:27:33.545Z", + "isRead": true + }, + { + "created_at": "2026-03-12T00:26:28.29725Z", + "id": "5681599a-55ff-5630-a88b-3a03118e242b", + "notification_type": "on-chain", + "payload": { + "address": "0x30e8ccad5a980bdf30447f8c2c48e70989d9d294", + "block_number": 84077577, + "block_timestamp": "1773275187", + "chain_id": 137, + "data": { + "to": "0x1a1ec25dc08e98e5e93f1104b5e5cdd298707d31", + "from": "0x30e8ccad5a980bdf30447f8c2c48e70989d9d294", + "kind": "eth_sent", + "amount": { + "eth": "132.757424264753032225", + "usd": "12.98" + }, + "network_fee": { + "gas_price": "213367080503", + "native_token_price_in_usd": "0.09776" + } + }, + "network": { + "block_explorer": { + "name": "PolygonScan", + "url": "https://polygonscan.com" + }, + "name": "Polygon", + "native_symbol": "POL" + }, + "tx_hash": "0xf1bdb406de6a29b3b42ddde8d266a877e4812a485fc6eff294efe6ab8fb4cc6f" + }, + "unread": true, + "type": "eth_sent", + "createdAt": "2026-03-12T00:26:28.297Z", + "isRead": true + }, + { + "created_at": "2026-03-12T00:26:28.297224Z", + "id": "c98acf20-3b52-5882-ae2c-d69ab86c8951", + "notification_type": "on-chain", + "payload": { + "address": "0x30e8ccad5a980bdf30447f8c2c48e70989d9d294", + "block_number": 84077577, + "block_timestamp": "1773275187", + "chain_id": 137, + "data": { + "kind": "metamask_swap_completed", + "rate": "10.2889123321124015132", + "token_in": { + "usd": "0.09776", + "name": "Polygon Ecosystem Token", + "image": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x0000000000000000000000000000000000000000.png", + "amount": "132757424264753032225", + "symbol": "POL", + "address": "0x0000000000000000000000000000000000000000", + "decimals": "18" + }, + "token_out": { + "usd": "0.99956", + "name": "Tether USD", + "image": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0xc2132d05d31c914a87c6611c10748aeb04b58e8f.png", + "amount": "12902960", + "symbol": "USDT", + "address": "0xc2132d05d31c914a87c6611c10748aeb04b58e8f", + "decimals": "6" + }, + "network_fee": { + "gas_price": "213367080503", + "native_token_price_in_usd": "0.09776" + } + }, + "network": { + "block_explorer": { + "name": "PolygonScan", + "url": "https://polygonscan.com" + }, + "name": "Polygon", + "native_symbol": "POL" + }, + "tx_hash": "0xf1bdb406de6a29b3b42ddde8d266a877e4812a485fc6eff294efe6ab8fb4cc6f" + }, + "unread": true, + "type": "metamask_swap_completed", + "createdAt": "2026-03-12T00:26:28.297Z", + "isRead": true + }, + { + "created_at": "2026-03-12T00:20:01.552827Z", + "id": "9787353e-5758-5395-abff-bc16676fffc2", + "notification_type": "on-chain", + "payload": { + "address": "0x30e8ccad5a980bdf30447f8c2c48e70989d9d294", + "block_number": 29648097, + "block_timestamp": "1773274801", + "chain_id": 59144, + "data": { + "kind": "metamask_swap_completed", + "rate": "0.00049094928144525659783", + "token_in": { + "usd": "2052.4", + "name": "Ether", + "image": "https://static.cx.metamask.io/api/v1/tokenIcons/59144/0x0000000000000000000000000000000000000000.png", + "amount": "1164340225368385", + "symbol": "ETH", + "address": "0x0000000000000000000000000000000000000000", + "decimals": "18" + }, + "token_out": { + "usd": "1", + "name": "USDC", + "image": "https://static.cx.metamask.io/api/v1/tokenIcons/59144/0x176211869ca2b568f2a7d4ee941e073a821ee1ff.png", + "amount": "2371610", + "symbol": "USDC", + "address": "0x176211869ca2b568f2a7d4ee941e073a821ee1ff", + "decimals": "6" + }, + "network_fee": { + "gas_price": "50000008", + "native_token_price_in_usd": "2052.4" + } + }, + "network": { + "block_explorer": { + "name": "LineaScan", + "url": "https://lineascan.build" + }, + "name": "Linea", + "native_symbol": "ETH" + }, + "tx_hash": "0xf628cb1a36a1ab3c5b27b03d660283277960c30b4e4d102297e771aca54155bd" + }, + "unread": true, + "type": "metamask_swap_completed", + "createdAt": "2026-03-12T00:20:01.552Z", + "isRead": true + }, + { + "created_at": "2026-03-12T00:20:01.552794Z", + "id": "f6648e46-444e-5244-8518-8336d26aa616", + "notification_type": "on-chain", + "payload": { + "address": "0x30e8ccad5a980bdf30447f8c2c48e70989d9d294", + "block_number": 29648097, + "block_timestamp": "1773274801", + "chain_id": 59144, + "data": { + "to": "0x9dda6ef3d919c9bc8885d5560999a3640431e8e6", + "from": "0x30e8ccad5a980bdf30447f8c2c48e70989d9d294", + "kind": "eth_sent", + "amount": { + "eth": "0.001164340225368385", + "usd": "2.39" + }, + "network_fee": { + "gas_price": "50000008", + "native_token_price_in_usd": "2052.4" + } + }, + "network": { + "block_explorer": { + "name": "LineaScan", + "url": "https://lineascan.build" + }, + "name": "Linea", + "native_symbol": "ETH" + }, + "tx_hash": "0xf628cb1a36a1ab3c5b27b03d660283277960c30b4e4d102297e771aca54155bd" + }, + "unread": true, + "type": "eth_sent", + "createdAt": "2026-03-12T00:20:01.552Z", + "isRead": true + }, + { + "created_at": "2026-03-12T00:15:43.993301Z", + "id": "0d4a333d-1cf9-5e38-969f-33ec6721eee6", + "notification_type": "on-chain", + "payload": { + "address": "0x30e8ccad5a980bdf30447f8c2c48e70989d9d294", + "block_number": 29648025, + "block_timestamp": "1773274543", + "chain_id": 59144, + "data": { + "to": "0x30e8ccad5a980bdf30447f8c2c48e70989d9d294", + "from": "0xacc0c1f672b03b9a5fed4535f840f09b85f40e98", + "kind": "eth_received", + "amount": { + "eth": "0.000684465871536834", + "usd": "1.40" + }, + "network_fee": { + "gas_price": "47167977", + "native_token_price_in_usd": "2052.4" + } + }, + "network": { + "block_explorer": { + "name": "LineaScan", + "url": "https://lineascan.build" + }, + "name": "Linea", + "native_symbol": "ETH" + }, + "tx_hash": "0x8d4782302c4041d88b852dab15f41e5c91702601cbebcf6f6d5d7c771b553e93" + }, + "unread": true, + "type": "eth_received", + "createdAt": "2026-03-12T00:15:43.993Z", + "isRead": true + }, + { + "created_at": "2026-03-12T00:15:39.255755Z", + "id": "69136390-e7c0-5bc8-bee8-5bdef749918e", + "notification_type": "on-chain", + "payload": { + "address": "0x30e8ccad5a980bdf30447f8c2c48e70989d9d294", + "block_number": 148837881, + "block_timestamp": "1773274539", + "chain_id": 10, + "data": { + "to": "0x1d3960155fc7aeec56fed24b109a21fcdf78a21e", + "from": "0x30e8ccad5a980bdf30447f8c2c48e70989d9d294", + "kind": "erc20_sent", + "token": { + "usd": "0.99998", + "name": "USD Coin", + "image": "https://static.cx.metamask.io/api/v1/tokenIcons/10/0x0b2c639c533813f4aa9d7837caf62653d097ff85.png", + "amount": "1424520", + "symbol": "USDC", + "address": "0x0b2c639c533813f4aa9d7837caf62653d097ff85", + "decimals": "6" + }, + "network_fee": { + "gas_price": "100416", + "native_token_price_in_usd": "2052.4" + } + }, + "network": { + "block_explorer": { + "name": "Optimistic Etherscan", + "url": "https://optimistic.etherscan.io" + }, + "name": "Optimism", + "native_symbol": "ETH" + }, + "tx_hash": "0x61289d45a7deaa73a05f4732b7f8f47594ab991a1935d52086b90a597453557d" + }, + "unread": true, + "type": "erc20_sent", + "createdAt": "2026-03-12T00:15:39.255Z", + "isRead": true + }, + { + "created_at": "2026-03-12T00:12:32.752004Z", + "id": "e5dd53da-7f80-59aa-a743-453a2552066e", + "notification_type": "on-chain", + "payload": { + "address": "0x30e8ccad5a980bdf30447f8c2c48e70989d9d294", + "block_number": 84077159, + "block_timestamp": "1773274351", + "chain_id": 137, + "data": { + "to": "0x1a1ec25dc08e98e5e93f1104b5e5cdd298707d31", + "from": "0x30e8ccad5a980bdf30447f8c2c48e70989d9d294", + "kind": "eth_sent", + "amount": { + "eth": "135.629926823363927219", + "usd": "13.27" + }, + "network_fee": { + "gas_price": "158294312454", + "native_token_price_in_usd": "0.097828" + } + }, + "network": { + "block_explorer": { + "name": "PolygonScan", + "url": "https://polygonscan.com" + }, + "name": "Polygon", + "native_symbol": "POL" + }, + "tx_hash": "0x654f28283ca0424ddfd325b12dcf43a0fb9a2d712073a3ab9d32bc51570c90cc" + }, + "unread": true, + "type": "eth_sent", + "createdAt": "2026-03-12T00:12:32.752Z", + "isRead": true + }, + { + "created_at": "2026-03-12T00:12:32.685147Z", + "id": "b28095f5-2eb0-5100-aada-93b05fa7927b", + "notification_type": "on-chain", + "payload": { + "address": "0x30e8ccad5a980bdf30447f8c2c48e70989d9d294", + "block_number": 84077159, + "block_timestamp": "1773274351", + "chain_id": 137, + "data": { + "kind": "metamask_swap_completed", + "rate": "10.3212744253067411072", + "token_in": { + "usd": "0.097828", + "name": "Polygon Ecosystem Token", + "image": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x0000000000000000000000000000000000000000.png", + "amount": "135629926823363927218", + "symbol": "POL", + "address": "0x0000000000000000000000000000000000000000", + "decimals": "18" + }, + "token_out": { + "usd": "0.999903", + "name": "Tether USD", + "image": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0xc2132d05d31c914a87c6611c10748aeb04b58e8f.png", + "amount": "13140812", + "symbol": "USDT", + "address": "0xc2132d05d31c914a87c6611c10748aeb04b58e8f", + "decimals": "6" + }, + "network_fee": { + "gas_price": "158294312454", + "native_token_price_in_usd": "0.097828" + } + }, + "network": { + "block_explorer": { + "name": "PolygonScan", + "url": "https://polygonscan.com" + }, + "name": "Polygon", + "native_symbol": "POL" + }, + "tx_hash": "0x654f28283ca0424ddfd325b12dcf43a0fb9a2d712073a3ab9d32bc51570c90cc" + }, + "unread": true, + "type": "metamask_swap_completed", + "createdAt": "2026-03-12T00:12:32.685Z", + "isRead": true + }, + { + "created_at": "2026-03-12T00:11:21.289144Z", + "id": "9c92fa47-2167-5a6b-b22b-aa72ccfcf79c", + "notification_type": "on-chain", + "payload": { + "address": "0x30e8ccad5a980bdf30447f8c2c48e70989d9d294", + "block_number": 148837752, + "block_timestamp": "1773274281", + "chain_id": 10, + "data": { + "to": "0x9dda6ef3d919c9bc8885d5560999a3640431e8e6", + "from": "0x30e8ccad5a980bdf30447f8c2c48e70989d9d294", + "kind": "eth_sent", + "amount": { + "eth": "0.000700000000000000", + "usd": "1.44" + }, + "network_fee": { + "gas_price": "100417", + "native_token_price_in_usd": "2052.4" + } + }, + "network": { + "block_explorer": { + "name": "Optimistic Etherscan", + "url": "https://optimistic.etherscan.io" + }, + "name": "Optimism", + "native_symbol": "ETH" + }, + "tx_hash": "0x66fb5bec3eb87cf864b6b44f342b44b18e349d2d39ed322cb43cdd926ed362e0" + }, + "unread": true, + "type": "eth_sent", + "createdAt": "2026-03-12T00:11:21.289Z", + "isRead": true + }, + { + "created_at": "2026-03-12T00:11:21.278428Z", + "id": "d3dd23f1-927d-513f-b32d-d40c01fcd871", + "notification_type": "on-chain", + "payload": { + "address": "0x30e8ccad5a980bdf30447f8c2c48e70989d9d294", + "block_number": 148837752, + "block_timestamp": "1773274281", + "chain_id": 10, + "data": { + "kind": "metamask_swap_completed", + "rate": "0.0004913935922275573526", + "token_in": { + "usd": "2052.4", + "name": "Optimism", + "image": "https://static.cx.metamask.io/api/v1/tokenIcons/10/0x0000000000000000000000000000000000000000.png", + "amount": "700000000000000", + "symbol": "OP", + "address": "0x0000000000000000000000000000000000000000", + "decimals": "18" + }, + "token_out": { + "usd": "0.999988", + "name": "USD Coin", + "image": "https://static.cx.metamask.io/api/v1/tokenIcons/10/0x0b2c639c533813f4aa9d7837caf62653d097ff85.png", + "amount": "1424520", + "symbol": "USDC", + "address": "0x0b2c639c533813f4aa9d7837caf62653d097ff85", + "decimals": "6" + }, + "network_fee": { + "gas_price": "100417", + "native_token_price_in_usd": "2052.4" + } + }, + "network": { + "block_explorer": { + "name": "Optimistic Etherscan", + "url": "https://optimistic.etherscan.io" + }, + "name": "Optimism", + "native_symbol": "ETH" + }, + "tx_hash": "0x66fb5bec3eb87cf864b6b44f342b44b18e349d2d39ed322cb43cdd926ed362e0" + }, + "unread": true, + "type": "metamask_swap_completed", + "createdAt": "2026-03-12T00:11:21.278Z", + "isRead": true + }, + { + "created_at": "2026-03-11T23:57:29.786516Z", + "id": "dd14ea55-b439-5648-a68a-5ae506a6411e", + "notification_type": "on-chain", + "payload": { + "address": "0x30e8ccad5a980bdf30447f8c2c48e70989d9d294", + "block_number": 84076708, + "block_timestamp": "1773273449", + "chain_id": 137, + "data": { + "to": "0x3a0b42ce6166abb05d30ddf12e726c95a83d7a16", + "from": "0x30e8ccad5a980bdf30447f8c2c48e70989d9d294", + "kind": "eth_sent", + "amount": { + "eth": "138.776239712069265167", + "usd": "13.62" + }, + "network_fee": { + "gas_price": "118478746172", + "native_token_price_in_usd": "0.098167" + } + }, + "network": { + "block_explorer": { + "name": "PolygonScan", + "url": "https://polygonscan.com" + }, + "name": "Polygon", + "native_symbol": "POL" + }, + "tx_hash": "0x5680e0d0fea59c82b73cc7b7340a584174f03cc5397a67427503cc87875a0d53" + }, + "unread": true, + "type": "eth_sent", + "createdAt": "2026-03-11T23:57:29.786Z", + "isRead": true + }, + { + "created_at": "2026-03-11T23:55:16.408079Z", + "id": "ce968fb5-32f7-58ab-9e98-2871b586c56f", + "notification_type": "on-chain", + "payload": { + "address": "0x30e8ccad5a980bdf30447f8c2c48e70989d9d294", + "block_number": 84076641, + "block_timestamp": "1773273315", + "chain_id": 137, + "data": { + "to": "0x3a0b42ce6166abb05d30ddf12e726c95a83d7a16", + "from": "0x30e8ccad5a980bdf30447f8c2c48e70989d9d294", + "kind": "eth_sent", + "amount": { + "eth": "143.545717723418569563", + "usd": "14.09" + }, + "network_fee": { + "gas_price": "178537615961", + "native_token_price_in_usd": "0.098167" + } + }, + "network": { + "block_explorer": { + "name": "PolygonScan", + "url": "https://polygonscan.com" + }, + "name": "Polygon", + "native_symbol": "POL" + }, + "tx_hash": "0xa980eeca97c105c5a2f4f2cad1aa36a58cfcd2e376d6c756340a398fc1cdc800" + }, + "unread": true, + "type": "eth_sent", + "createdAt": "2026-03-11T23:55:16.408Z", + "isRead": true + }, + { + "created_at": "2026-03-11T23:45:32.605368Z", + "id": "25e363e3-8988-537e-91e7-71efb0f27875", + "notification_type": "on-chain", + "payload": { + "address": "0x30e8ccad5a980bdf30447f8c2c48e70989d9d294", + "block_number": 84076349, + "block_timestamp": "1773272731", + "chain_id": 137, + "data": { + "to": "0x30e8ccad5a980bdf30447f8c2c48e70989d9d294", + "from": "0xacc0c1f672b03b9a5fed4535f840f09b85f40e98", + "kind": "erc20_received", + "token": { + "usd": "0.999887", + "name": "Tether USD", + "image": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0xc2132d05d31c914a87c6611c10748aeb04b58e8f.png", + "amount": "5191880", + "symbol": "USDT", + "address": "0xc2132d05d31c914a87c6611c10748aeb04b58e8f", + "decimals": "6" + }, + "network_fee": { + "gas_price": "187750473579", + "native_token_price_in_usd": "0.098192" + } + }, + "network": { + "block_explorer": { + "name": "PolygonScan", + "url": "https://polygonscan.com" + }, + "name": "Polygon", + "native_symbol": "POL" + }, + "tx_hash": "0xe8139d5df7d6395945fc56c2a294fcddbe560c589c14dccad632ce085ce7e094" + }, + "unread": true, + "type": "erc20_received", + "createdAt": "2026-03-11T23:45:32.605Z", + "isRead": true + }, + { + "created_at": "2026-03-11T23:45:24.729087Z", + "id": "a7cf61f8-6f81-52fe-a7bf-e557173f0eca", + "notification_type": "on-chain", + "payload": { + "address": "0x30e8ccad5a980bdf30447f8c2c48e70989d9d294", + "block_number": 86058896, + "block_timestamp": "1773272724", + "chain_id": 56, + "data": { + "to": "0xdc9a3a73bb728cd540a0e16accfa20c88e69c28b", + "from": "0x30e8ccad5a980bdf30447f8c2c48e70989d9d294", + "kind": "erc20_sent", + "token": { + "usd": "1", + "name": "Tether USD", + "image": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x55d398326f99059ff775485246999027b3197955.png", + "amount": "5248075136684161675", + "symbol": "USDT", + "address": "0x55d398326f99059ff775485246999027b3197955", + "decimals": "18" + }, + "network_fee": { + "gas_price": "59999999", + "native_token_price_in_usd": "651.34" + } + }, + "network": { + "block_explorer": { + "name": "BscScan", + "url": "https://bscscan.com" + }, + "name": "BNB Smart Chain", + "native_symbol": "BNB" + }, + "tx_hash": "0x8ace2bcccc7eb0cdf3435031029ca48553728446102aef54f55e330f0be40a0c" + }, + "unread": true, + "type": "erc20_sent", + "createdAt": "2026-03-11T23:45:24.729Z", + "isRead": true + }, + { + "created_at": "2026-03-11T23:44:30.796551Z", + "id": "ea29a341-f571-5a8a-9a0e-171a39a3b01f", + "notification_type": "on-chain", + "payload": { + "address": "0x30e8ccad5a980bdf30447f8c2c48e70989d9d294", + "block_number": 86058776, + "block_timestamp": "1773272670", + "chain_id": 56, + "data": { + "to": "0x1a1ec25dc08e98e5e93f1104b5e5cdd298707d31", + "from": "0x30e8ccad5a980bdf30447f8c2c48e70989d9d294", + "kind": "eth_sent", + "amount": { + "eth": "0.004132711639338957", + "usd": "2.69" + }, + "network_fee": { + "gas_price": "60000000", + "native_token_price_in_usd": "651.34" + } + }, + "network": { + "block_explorer": { + "name": "BscScan", + "url": "https://bscscan.com" + }, + "name": "BNB Smart Chain", + "native_symbol": "BNB" + }, + "tx_hash": "0xffff6d0c07ba2a2e9dff1d7e5302a4613c12e7529342ee73fbf4f4e834315e91" + }, + "unread": true, + "type": "eth_sent", + "createdAt": "2026-03-11T23:44:30.796Z", + "isRead": true + }, + { + "created_at": "2026-03-11T23:44:30.772594Z", + "id": "055429e9-ab2a-53e6-b85d-e8d0ab06c922", + "notification_type": "on-chain", + "payload": { + "address": "0x30e8ccad5a980bdf30447f8c2c48e70989d9d294", + "block_number": 86058776, + "block_timestamp": "1773272670", + "chain_id": 56, + "data": { + "kind": "metamask_swap_completed", + "rate": "0.0015492876652903692955", + "token_in": { + "usd": "651.34", + "name": "Binance Coin", + "image": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x0000000000000000000000000000000000000000.png", + "amount": "4132711639338957", + "symbol": "BNB", + "address": "0x0000000000000000000000000000000000000000", + "decimals": "18" + }, + "token_out": { + "usd": "1", + "name": "Tether USD", + "image": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x55d398326f99059ff775485246999027b3197955.png", + "amount": "2667491474905920315", + "symbol": "USDT", + "address": "0x55d398326f99059ff775485246999027b3197955", + "decimals": "18" + }, + "network_fee": { + "gas_price": "60000000", + "native_token_price_in_usd": "651.34" + } + }, + "network": { + "block_explorer": { + "name": "BscScan", + "url": "https://bscscan.com" + }, + "name": "BNB Smart Chain", + "native_symbol": "BNB" + }, + "tx_hash": "0xffff6d0c07ba2a2e9dff1d7e5302a4613c12e7529342ee73fbf4f4e834315e91" + }, + "unread": true, + "type": "metamask_swap_completed", + "createdAt": "2026-03-11T23:44:30.772Z", + "isRead": true + }, + { + "created_at": "2026-03-11T17:21:35.299016Z", + "id": "389ea6f0-0398-505d-878a-a50a537ff7d1", + "notification_type": "on-chain", + "payload": { + "address": "0x30e8ccad5a980bdf30447f8c2c48e70989d9d294", + "block_number": 86007748, + "block_timestamp": "1773249694", + "chain_id": 56, + "data": { + "kind": "metamask_swap_completed", + "rate": "0.0015468905430865550601", + "token_in": { + "usd": "650.92", + "name": "Binance Coin", + "image": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x0000000000000000000000000000000000000000.png", + "amount": "1000000000000000", + "symbol": "BNB", + "address": "0x0000000000000000000000000000000000000000", + "decimals": "18" + }, + "token_out": { + "usd": "1", + "name": "Tether USD", + "image": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x55d398326f99059ff775485246999027b3197955.png", + "amount": "646458150816974628", + "symbol": "USDT", + "address": "0x55d398326f99059ff775485246999027b3197955", + "decimals": "18" + }, + "network_fee": { + "gas_price": "50000000", + "native_token_price_in_usd": "650.92" + } + }, + "network": { + "block_explorer": { + "name": "BscScan", + "url": "https://bscscan.com" + }, + "name": "BNB Smart Chain", + "native_symbol": "BNB" + }, + "tx_hash": "0x2fef9566ec9fcc2b16c4ad30b54e55ebf26730aa814d401c5ff7b3c9627c64cd" + }, + "unread": true, + "type": "metamask_swap_completed", + "createdAt": "2026-03-11T17:21:35.299Z", + "isRead": true + }, + { + "created_at": "2026-03-11T17:21:01.352042Z", + "id": "d58af24b-daeb-5fc7-ae8c-2a55dd610626", + "notification_type": "on-chain", + "payload": { + "address": "0x30e8ccad5a980bdf30447f8c2c48e70989d9d294", + "block_number": 86007672, + "block_timestamp": "1773249660", + "chain_id": 56, + "data": { + "kind": "metamask_swap_completed", + "rate": "0.0015459200670506640359", + "token_in": { + "usd": "650.92", + "name": "Binance Coin", + "image": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x0000000000000000000000000000000000000000.png", + "amount": "1000000000000000", + "symbol": "BNB", + "address": "0x0000000000000000000000000000000000000000", + "decimals": "18" + }, + "token_out": { + "usd": "1", + "name": "Tether USD", + "image": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x55d398326f99059ff775485246999027b3197955.png", + "amount": "646863975255731809", + "symbol": "USDT", + "address": "0x55d398326f99059ff775485246999027b3197955", + "decimals": "18" + }, + "network_fee": { + "gas_price": "50000000", + "native_token_price_in_usd": "650.92" + } + }, + "network": { + "block_explorer": { + "name": "BscScan", + "url": "https://bscscan.com" + }, + "name": "BNB Smart Chain", + "native_symbol": "BNB" + }, + "tx_hash": "0x1ba592107f077ae6999c8d8ea316ec7bb12dd13ba3101dccc31cb50a1bc27b18" + }, + "unread": true, + "type": "metamask_swap_completed", + "createdAt": "2026-03-11T17:21:01.352Z", + "isRead": true + }, + { + "created_at": "2026-03-11T17:05:17.084751Z", + "id": "5e9b387d-5c55-585c-b4d0-1ccb27806044", + "notification_type": "on-chain", + "payload": { + "address": "0x30e8ccad5a980bdf30447f8c2c48e70989d9d294", + "block_number": 86005574, + "block_timestamp": "1773248716", + "chain_id": 56, + "data": { + "kind": "metamask_swap_completed", + "rate": "0.0015501713488723483754", + "token_in": { + "usd": "649.39", + "name": "Binance Coin", + "image": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x0000000000000000000000000000000000000000.png", + "amount": "1000000000000000", + "symbol": "BNB", + "address": "0x0000000000000000000000000000000000000000", + "decimals": "18" + }, + "token_out": { + "usd": "1", + "name": "Tether USD", + "image": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x55d398326f99059ff775485246999027b3197955.png", + "amount": "645089977135390072", + "symbol": "USDT", + "address": "0x55d398326f99059ff775485246999027b3197955", + "decimals": "18" + }, + "network_fee": { + "gas_price": "50000000", + "native_token_price_in_usd": "649.39" + } + }, + "network": { + "block_explorer": { + "name": "BscScan", + "url": "https://bscscan.com" + }, + "name": "BNB Smart Chain", + "native_symbol": "BNB" + }, + "tx_hash": "0x8b80069b22d3ae3e9c65f86cc18c4fb0716d7d511143fc14eb2a0f4c0ca736dc" + }, + "unread": true, + "type": "metamask_swap_completed", + "createdAt": "2026-03-11T17:05:17.084Z", + "isRead": true + }, + { + "created_at": "2026-03-11T16:57:26.45022Z", + "id": "8f642bf2-b943-53ad-8a1f-11286d144b74", + "notification_type": "on-chain", + "payload": { + "address": "0x30e8ccad5a980bdf30447f8c2c48e70989d9d294", + "block_number": 86004528, + "block_timestamp": "1773248245", + "chain_id": 56, + "data": { + "kind": "metamask_swap_completed", + "rate": "0.0015572162713443642749", + "token_in": { + "usd": "649.39", + "name": "Binance Coin", + "image": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x0000000000000000000000000000000000000000.png", + "amount": "1000000000000000", + "symbol": "BNB", + "address": "0x0000000000000000000000000000000000000000", + "decimals": "18" + }, + "token_out": { + "usd": "0.999834", + "name": "Tether USD", + "image": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x55d398326f99059ff775485246999027b3197955.png", + "amount": "642171558570144851", + "symbol": "USDT", + "address": "0x55d398326f99059ff775485246999027b3197955", + "decimals": "18" + }, + "network_fee": { + "gas_price": "50000000", + "native_token_price_in_usd": "649.39" + } + }, + "network": { + "block_explorer": { + "name": "BscScan", + "url": "https://bscscan.com" + }, + "name": "BNB Smart Chain", + "native_symbol": "BNB" + }, + "tx_hash": "0xc4bb8d8400fe8ce1839bb52312d3df25f263b0bafce5012b9783ebdcf4564af2" + }, + "unread": true, + "type": "metamask_swap_completed", + "createdAt": "2026-03-11T16:57:26.450Z", + "isRead": true + }, + { + "created_at": "2026-03-11T16:48:06.718751Z", + "id": "332ccde6-8f1e-5461-a6f8-1059dcb5f8a8", + "notification_type": "on-chain", + "payload": { + "address": "0x30e8ccad5a980bdf30447f8c2c48e70989d9d294", + "block_number": 86003284, + "block_timestamp": "1773247686", + "chain_id": 56, + "data": { + "kind": "metamask_swap_completed", + "rate": "0.0015537804363802702043", + "token_in": { + "usd": "648.42", + "name": "Binance Coin", + "image": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x0000000000000000000000000000000000000000.png", + "amount": "1000000000000000", + "symbol": "BNB", + "address": "0x0000000000000000000000000000000000000000", + "decimals": "18" + }, + "token_out": { + "usd": "0.999834", + "name": "Tether USD", + "image": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x55d398326f99059ff775485246999027b3197955.png", + "amount": "643591576123604442", + "symbol": "USDT", + "address": "0x55d398326f99059ff775485246999027b3197955", + "decimals": "18" + }, + "network_fee": { + "gas_price": "50000000", + "native_token_price_in_usd": "648.42" + } + }, + "network": { + "block_explorer": { + "name": "BscScan", + "url": "https://bscscan.com" + }, + "name": "BNB Smart Chain", + "native_symbol": "BNB" + }, + "tx_hash": "0xd88174ec98bc544754b5cc7d2523d83abdafbd9fcf7712799d40d62ed7b3bc82" + }, + "unread": true, + "type": "metamask_swap_completed", + "createdAt": "2026-03-11T16:48:06.718Z", + "isRead": true + }, + { + "created_at": "2026-03-11T16:45:44.359727Z", + "id": "6b5a113e-7cd4-5994-9864-9e5c07354fed", + "notification_type": "on-chain", + "payload": { + "address": "0x30e8ccad5a980bdf30447f8c2c48e70989d9d294", + "block_number": 86002968, + "block_timestamp": "1773247543", + "chain_id": 56, + "data": { + "kind": "metamask_swap_completed", + "rate": "0.0015558478647003672536", + "token_in": { + "usd": "648.42", + "name": "Binance Coin", + "image": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x0000000000000000000000000000000000000000.png", + "amount": "1399009100582177", + "symbol": "BNB", + "address": "0x0000000000000000000000000000000000000000", + "decimals": "18" + }, + "token_out": { + "usd": "0.999834", + "name": "Tether USD", + "image": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x55d398326f99059ff775485246999027b3197955.png", + "amount": "899194022965481252", + "symbol": "USDT", + "address": "0x55d398326f99059ff775485246999027b3197955", + "decimals": "18" + }, + "network_fee": { + "gas_price": "60000000", + "native_token_price_in_usd": "648.42" + } + }, + "network": { + "block_explorer": { + "name": "BscScan", + "url": "https://bscscan.com" + }, + "name": "BNB Smart Chain", + "native_symbol": "BNB" + }, + "tx_hash": "0x5344efc17565dd9b51eddf2545835e14628294508423299a1e17b2b4a5c13808" + }, + "unread": true, + "type": "metamask_swap_completed", + "createdAt": "2026-03-11T16:45:44.359Z", + "isRead": true + }, + { + "created_at": "2026-03-11T16:45:16.746465Z", + "id": "043ceffb-8d27-5159-b3f9-8cd2078941e5", + "notification_type": "on-chain", + "payload": { + "address": "0x30e8ccad5a980bdf30447f8c2c48e70989d9d294", + "block_number": 86002908, + "block_timestamp": "1773247516", + "chain_id": 56, + "data": { + "kind": "metamask_swap_completed", + "rate": "0.0015545595289367316187", + "token_in": { + "usd": "648.42", + "name": "Binance Coin", + "image": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x0000000000000000000000000000000000000000.png", + "amount": "1000000000000000", + "symbol": "BNB", + "address": "0x0000000000000000000000000000000000000000", + "decimals": "18" + }, + "token_out": { + "usd": "0.999834", + "name": "Tether USD", + "image": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x55d398326f99059ff775485246999027b3197955.png", + "amount": "643269029835073360", + "symbol": "USDT", + "address": "0x55d398326f99059ff775485246999027b3197955", + "decimals": "18" + }, + "network_fee": { + "gas_price": "50000000", + "native_token_price_in_usd": "648.42" + } + }, + "network": { + "block_explorer": { + "name": "BscScan", + "url": "https://bscscan.com" + }, + "name": "BNB Smart Chain", + "native_symbol": "BNB" + }, + "tx_hash": "0x3cd2802baeee8c5f2d5e5d86eb13dc3b6617e3e804dab8c050aa8b58da730465" + }, + "unread": true, + "type": "metamask_swap_completed", + "createdAt": "2026-03-11T16:45:16.746Z", + "isRead": true + }, + { + "created_at": "2026-03-11T16:43:53.822982Z", + "id": "5d1fecdb-8653-5d92-9477-fac4e06487b7", + "notification_type": "on-chain", + "payload": { + "address": "0x30e8ccad5a980bdf30447f8c2c48e70989d9d294", + "block_number": 86002724, + "block_timestamp": "1773247433", + "chain_id": 56, + "data": { + "kind": "metamask_swap_completed", + "rate": "0.0015567999996684552984", + "token_in": { + "usd": "648.42", + "name": "Binance Coin", + "image": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x0000000000000000000000000000000000000000.png", + "amount": "1000000000000000", + "symbol": "BNB", + "address": "0x0000000000000000000000000000000000000000", + "decimals": "18" + }, + "token_out": { + "usd": "0.999834", + "name": "Tether USD", + "image": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x55d398326f99059ff775485246999027b3197955.png", + "amount": "642343268379345778", + "symbol": "USDT", + "address": "0x55d398326f99059ff775485246999027b3197955", + "decimals": "18" + }, + "network_fee": { + "gas_price": "50000000", + "native_token_price_in_usd": "648.42" + } + }, + "network": { + "block_explorer": { + "name": "BscScan", + "url": "https://bscscan.com" + }, + "name": "BNB Smart Chain", + "native_symbol": "BNB" + }, + "tx_hash": "0x06fede25fa8a1f2ae276ace706413e14a98be4dd1da4c72dc9ab1ab6713eb343" + }, + "unread": true, + "type": "metamask_swap_completed", + "createdAt": "2026-03-11T16:43:53.822Z", + "isRead": true + }, + { + "created_at": "2026-03-11T16:42:19.733557Z", + "id": "a3eaf30e-ae92-58b6-b366-56e06de0c77a", + "notification_type": "on-chain", + "payload": { + "address": "0x30e8ccad5a980bdf30447f8c2c48e70989d9d294", + "block_number": 86002515, + "block_timestamp": "1773247339", + "chain_id": 56, + "data": { + "kind": "metamask_swap_completed", + "rate": "0.0015558207846667622881", + "token_in": { + "usd": "648.42", + "name": "Binance Coin", + "image": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x0000000000000000000000000000000000000000.png", + "amount": "1000000000000000", + "symbol": "BNB", + "address": "0x0000000000000000000000000000000000000000", + "decimals": "18" + }, + "token_out": { + "usd": "1", + "name": "Tether USD", + "image": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x55d398326f99059ff775485246999027b3197955.png", + "amount": "642747551553110099", + "symbol": "USDT", + "address": "0x55d398326f99059ff775485246999027b3197955", + "decimals": "18" + }, + "network_fee": { + "gas_price": "50000000", + "native_token_price_in_usd": "648.42" + } + }, + "network": { + "block_explorer": { + "name": "BscScan", + "url": "https://bscscan.com" + }, + "name": "BNB Smart Chain", + "native_symbol": "BNB" + }, + "tx_hash": "0x2b400f44585ffc102ac52d4896121282f4194499b992d8dced37ddde4edf32e8" + }, + "unread": true, + "type": "metamask_swap_completed", + "createdAt": "2026-03-11T16:42:19.733Z", + "isRead": true + }, + { + "created_at": "2026-03-11T16:42:03.373563Z", + "id": "773eaa82-0ee0-59f2-b950-4eea01d18796", + "notification_type": "on-chain", + "payload": { + "address": "0x30e8ccad5a980bdf30447f8c2c48e70989d9d294", + "block_number": 86002478, + "block_timestamp": "1773247322", + "chain_id": 56, + "data": { + "kind": "metamask_swap_completed", + "rate": "0.0015556138164334222835", + "token_in": { + "usd": "648.42", + "name": "Binance Coin", + "image": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x0000000000000000000000000000000000000000.png", + "amount": "1000000000000000", + "symbol": "BNB", + "address": "0x0000000000000000000000000000000000000000", + "decimals": "18" + }, + "token_out": { + "usd": "1", + "name": "Tether USD", + "image": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x55d398326f99059ff775485246999027b3197955.png", + "amount": "642833066559356030", + "symbol": "USDT", + "address": "0x55d398326f99059ff775485246999027b3197955", + "decimals": "18" + }, + "network_fee": { + "gas_price": "50000000", + "native_token_price_in_usd": "648.42" + } + }, + "network": { + "block_explorer": { + "name": "BscScan", + "url": "https://bscscan.com" + }, + "name": "BNB Smart Chain", + "native_symbol": "BNB" + }, + "tx_hash": "0xf1bdb845c03442a7edd9aca67e5d52aefbec02b06043f507f976a29c2252fa0c" + }, + "unread": true, + "type": "metamask_swap_completed", + "createdAt": "2026-03-11T16:42:03.373Z", + "isRead": true + }, + { + "created_at": "2026-03-11T16:31:20.575528Z", + "id": "272265e8-52ea-506c-bc89-8f79284d29ac", + "notification_type": "on-chain", + "payload": { + "address": "0x30e8ccad5a980bdf30447f8c2c48e70989d9d294", + "block_number": 86001050, + "block_timestamp": "1773246680", + "chain_id": 56, + "data": { + "kind": "metamask_swap_completed", + "rate": "0.0015573243317963164436", + "token_in": { + "usd": "646.97", + "name": "Binance Coin", + "image": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x0000000000000000000000000000000000000000.png", + "amount": "1000000000000000", + "symbol": "BNB", + "address": "0x0000000000000000000000000000000000000000", + "decimals": "18" + }, + "token_out": { + "usd": "1", + "name": "Tether USD", + "image": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x55d398326f99059ff775485246999027b3197955.png", + "amount": "642126999227281521", + "symbol": "USDT", + "address": "0x55d398326f99059ff775485246999027b3197955", + "decimals": "18" + }, + "network_fee": { + "gas_price": "50000000", + "native_token_price_in_usd": "646.97" + } + }, + "network": { + "block_explorer": { + "name": "BscScan", + "url": "https://bscscan.com" + }, + "name": "BNB Smart Chain", + "native_symbol": "BNB" + }, + "tx_hash": "0xcc0028446315d88f19fb6ef1100c8a91398d4893ce9c1661a5575417208e35e7" + }, + "unread": true, + "type": "metamask_swap_completed", + "createdAt": "2026-03-11T16:31:20.575Z", + "isRead": true + }, + { + "created_at": "2026-03-11T16:31:00.164737Z", + "id": "f7f0ef78-e38e-55ba-ade1-9d3a3bb22592", + "notification_type": "on-chain", + "payload": { + "address": "0x30e8ccad5a980bdf30447f8c2c48e70989d9d294", + "block_number": 86001004, + "block_timestamp": "1773246659", + "chain_id": 56, + "data": { + "kind": "metamask_swap_completed", + "rate": "0.0015575674404985925276", + "token_in": { + "usd": "646.97", + "name": "Binance Coin", + "image": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x0000000000000000000000000000000000000000.png", + "amount": "1000000000000000", + "symbol": "BNB", + "address": "0x0000000000000000000000000000000000000000", + "decimals": "18" + }, + "token_out": { + "usd": "1", + "name": "Tether USD", + "image": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x55d398326f99059ff775485246999027b3197955.png", + "amount": "642026774570923393", + "symbol": "USDT", + "address": "0x55d398326f99059ff775485246999027b3197955", + "decimals": "18" + }, + "network_fee": { + "gas_price": "50000000", + "native_token_price_in_usd": "646.97" + } + }, + "network": { + "block_explorer": { + "name": "BscScan", + "url": "https://bscscan.com" + }, + "name": "BNB Smart Chain", + "native_symbol": "BNB" + }, + "tx_hash": "0x0b913d25fd94a89b0dec9ff937761096daa841b4d9ce0ffa475d5b491a0008bc" + }, + "unread": true, + "type": "metamask_swap_completed", + "createdAt": "2026-03-11T16:31:00.164Z", + "isRead": true + }, + { + "created_at": "2026-03-11T16:16:09.134112Z", + "id": "c1dde884-0c1b-58e5-94b1-ad5d09443bdd", + "notification_type": "on-chain", + "payload": { + "address": "0x30e8ccad5a980bdf30447f8c2c48e70989d9d294", + "block_number": 85999025, + "block_timestamp": "1773245768", + "chain_id": 56, + "data": { + "kind": "metamask_swap_completed", + "rate": "0.0015578731050394358884", + "token_in": { + "usd": "646.18", + "name": "Binance Coin", + "image": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x0000000000000000000000000000000000000000.png", + "amount": "1000000000000000", + "symbol": "BNB", + "address": "0x0000000000000000000000000000000000000000", + "decimals": "18" + }, + "token_out": { + "usd": "1", + "name": "Tether USD", + "image": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x55d398326f99059ff775485246999027b3197955.png", + "amount": "641900804863491158", + "symbol": "USDT", + "address": "0x55d398326f99059ff775485246999027b3197955", + "decimals": "18" + }, + "network_fee": { + "gas_price": "50000000", + "native_token_price_in_usd": "646.18" + } + }, + "network": { + "block_explorer": { + "name": "BscScan", + "url": "https://bscscan.com" + }, + "name": "BNB Smart Chain", + "native_symbol": "BNB" + }, + "tx_hash": "0xcccf1079c9c3912f185c07a524c45b8789f9a38be010cde31e12d6bef7b5c167" + }, + "unread": true, + "type": "metamask_swap_completed", + "createdAt": "2026-03-11T16:16:09.134Z", + "isRead": true + }, + { + "created_at": "2026-03-11T16:13:47.187081Z", + "id": "d39eef54-729f-5396-9192-58670762ddf4", + "notification_type": "on-chain", + "payload": { + "address": "0xf25bd11c334507fd007d584e2d0b7b2c6543f714", + "block_number": 85998710, + "block_timestamp": "1773245626", + "chain_id": 56, + "data": { + "kind": "metamask_swap_completed", + "rate": "0.0015806002930275604058", + "token_in": { + "usd": "646.18", + "name": "Binance Coin", + "image": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x0000000000000000000000000000000000000000.png", + "amount": "16104189014254", + "symbol": "BNB", + "address": "0x0000000000000000000000000000000000000000", + "decimals": "18" + }, + "token_out": { + "usd": "1", + "name": "Tether USD", + "image": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x55d398326f99059ff775485246999027b3197955.png", + "amount": "10188653693975493", + "symbol": "USDT", + "address": "0x55d398326f99059ff775485246999027b3197955", + "decimals": "18" + }, + "network_fee": { + "gas_price": "60000000", + "native_token_price_in_usd": "646.18" + } + }, + "network": { + "block_explorer": { + "name": "BscScan", + "url": "https://bscscan.com" + }, + "name": "BNB Smart Chain", + "native_symbol": "BNB" + }, + "tx_hash": "0xd6f8a677cd107d2f977e7bd3a1d9a19804a5af7000ce4e92b074b5490c6f537d" + }, + "unread": true, + "type": "metamask_swap_completed", + "createdAt": "2026-03-11T16:13:47.187Z", + "isRead": true + }, + { + "created_at": "2026-03-11T16:10:42.757438Z", + "id": "f68461dc-aa2e-524d-a392-429bf56c48a1", + "notification_type": "on-chain", + "payload": { + "address": "0xf25bd11c334507fd007d584e2d0b7b2c6543f714", + "block_number": 85998293, + "block_timestamp": "1773245439", + "chain_id": 56, + "data": { + "kind": "metamask_swap_completed", + "rate": "0.0015669847481467083391", + "token_in": { + "usd": "646.18", + "name": "Binance Coin", + "image": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x0000000000000000000000000000000000000000.png", + "amount": "47465857955950", + "symbol": "BNB", + "address": "0x0000000000000000000000000000000000000000", + "decimals": "18" + }, + "token_out": { + "usd": "0.999832", + "name": "Tether USD", + "image": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x55d398326f99059ff775485246999027b3197955.png", + "amount": "30291206096350612", + "symbol": "USDT", + "address": "0x55d398326f99059ff775485246999027b3197955", + "decimals": "18" + }, + "network_fee": { + "gas_price": "60000000", + "native_token_price_in_usd": "646.18" + } + }, + "network": { + "block_explorer": { + "name": "BscScan", + "url": "https://bscscan.com" + }, + "name": "BNB Smart Chain", + "native_symbol": "BNB" + }, + "tx_hash": "0xc5f80798a60c0a370167a6d7b79007201fc0e008759754c3222971f9fc33b2a8" + }, + "unread": true, + "type": "metamask_swap_completed", + "createdAt": "2026-03-11T16:10:42.757Z", + "isRead": true + }, + { + "created_at": "2026-03-10T23:03:23.987735Z", + "id": "f5f8d142-becd-519c-88f3-50c9da61b96f", + "notification_type": "on-chain", + "payload": { + "address": "0x30e8ccad5a980bdf30447f8c2c48e70989d9d294", + "block_number": 84031885, + "block_timestamp": "1773183803", + "chain_id": 137, + "data": { + "to": "0x1a1ec25dc08e98e5e93f1104b5e5cdd298707d31", + "from": "0x30e8ccad5a980bdf30447f8c2c48e70989d9d294", + "kind": "eth_sent", + "amount": { + "eth": "61.271876290461501360", + "usd": "5.89" + }, + "network_fee": { + "gas_price": "312853988853", + "native_token_price_in_usd": "0.096166" + } + }, + "network": { + "block_explorer": { + "name": "PolygonScan", + "url": "https://polygonscan.com" + }, + "name": "Polygon", + "native_symbol": "POL" + }, + "tx_hash": "0x6a98e4fc480b8302ac1ef773ef15c95c4c2f15e0501076aee58ac1767f3e144c" + }, + "unread": true, + "type": "eth_sent", + "createdAt": "2026-03-10T23:03:23.987Z", + "isRead": true + }, + { + "created_at": "2026-03-10T23:03:23.94612Z", + "id": "61994766-5032-5a4f-85ba-41cfcc1d7a31", + "notification_type": "on-chain", + "payload": { + "address": "0x30e8ccad5a980bdf30447f8c2c48e70989d9d294", + "block_number": 84031885, + "block_timestamp": "1773183803", + "chain_id": 137, + "data": { + "kind": "metamask_swap_completed", + "rate": "10.482659111090457661", + "token_in": { + "usd": "0.096166", + "name": "Polygon Ecosystem Token", + "image": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x0000000000000000000000000000000000000000.png", + "amount": "61271876290461501360", + "symbol": "POL", + "address": "0x0000000000000000000000000000000000000000", + "decimals": "18" + }, + "token_out": { + "usd": "0.999999999999996", + "name": "Tether USD", + "image": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0xc2132d05d31c914a87c6611c10748aeb04b58e8f.png", + "amount": "5845070", + "symbol": "USDT", + "address": "0xc2132d05d31c914a87c6611c10748aeb04b58e8f", + "decimals": "6" + }, + "network_fee": { + "gas_price": "312853988853", + "native_token_price_in_usd": "0.096166" + } + }, + "network": { + "block_explorer": { + "name": "PolygonScan", + "url": "https://polygonscan.com" + }, + "name": "Polygon", + "native_symbol": "POL" + }, + "tx_hash": "0x6a98e4fc480b8302ac1ef773ef15c95c4c2f15e0501076aee58ac1767f3e144c" + }, + "unread": true, + "type": "metamask_swap_completed", + "createdAt": "2026-03-10T23:03:23.946Z", + "isRead": true + }, + { + "created_at": "2026-03-05T18:22:13.027871Z", + "id": "a46e51b1-42ca-598c-a1b7-26268375a4f0", + "notification_type": "on-chain", + "payload": { + "address": "0x30e8ccad5a980bdf30447f8c2c48e70989d9d294", + "block_number": 24593031, + "block_timestamp": "1772734931", + "chain_id": 1, + "data": { + "to": "0xb3864b298f4fddbbbd2fa5cf1a2a2748932b3b81", + "from": "0x30e8ccad5a980bdf30447f8c2c48e70989d9d294", + "kind": "erc20_sent", + "token": { + "usd": "259.84", + "name": "Apple (Ondo Tokenized)", + "image": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x14c3abf95cb9c93a8b82c1cdcb76d72cb87b2d4c.png", + "amount": "69005829525856698", + "symbol": "AAPLON", + "address": "0x14c3abf95cb9c93a8b82c1cdcb76d72cb87b2d4c", + "decimals": "18" + }, + "network_fee": { + "gas_price": "2138881559", + "native_token_price_in_usd": "2063.08" + } + }, + "network": { + "block_explorer": { + "name": "Etherscan", + "url": "https://etherscan.io" + }, + "name": "Ethereum", + "native_symbol": "ETH" + }, + "tx_hash": "0xa4899b3fe157eb9fef5ca83a984e7f65c1ae47df2292e0e5af182d8c8e7de1cc" + }, + "unread": true, + "type": "erc20_sent", + "createdAt": "2026-03-05T18:22:13.027Z", + "isRead": true + }, + { + "created_at": "2026-03-05T18:21:49.434759Z", + "id": "e176e811-4390-5130-87f6-1489b17391f3", + "notification_type": "on-chain", + "payload": { + "address": "0x30e8ccad5a980bdf30447f8c2c48e70989d9d294", + "block_number": 24593029, + "block_timestamp": "1772734907", + "chain_id": 1, + "data": { + "to": "0x30e8ccad5a980bdf30447f8c2c48e70989d9d294", + "from": "0x56c262027e0de4aea31d2489529cb25d23e58a8b", + "kind": "eth_received", + "amount": { + "eth": "0.001534107384785586", + "usd": "3.16" + }, + "network_fee": { + "gas_price": "154647340", + "native_token_price_in_usd": "2063.08" + } + }, + "network": { + "block_explorer": { + "name": "Etherscan", + "url": "https://etherscan.io" + }, + "name": "Ethereum", + "native_symbol": "ETH" + }, + "tx_hash": "0x8c7c607a6445e69c50983fb9b8da37faaaf2900b57e717cda57c616f22ee54d6" + }, + "unread": true, + "type": "eth_received", + "createdAt": "2026-03-05T18:21:49.434Z", + "isRead": true + }, + { + "created_at": "2026-03-05T17:53:30.364866Z", + "id": "6016e3ca-ce2b-5c0b-b7d2-4ad9efdacc99", + "notification_type": "on-chain", + "payload": { + "address": "0x30e8ccad5a980bdf30447f8c2c48e70989d9d294", + "block_number": 83806589, + "block_timestamp": "1772733209", + "chain_id": 137, + "data": { + "to": "0x1a1ec25dc08e98e5e93f1104b5e5cdd298707d31", + "from": "0x30e8ccad5a980bdf30447f8c2c48e70989d9d294", + "kind": "eth_sent", + "amount": { + "eth": "10.000000000000000000", + "usd": "1.00" + }, + "network_fee": { + "gas_price": "183058301860", + "native_token_price_in_usd": "0.100115" + } + }, + "network": { + "block_explorer": { + "name": "PolygonScan", + "url": "https://polygonscan.com" + }, + "name": "Polygon", + "native_symbol": "POL" + }, + "tx_hash": "0x97dbd5dde86d4651b27a138ae71668928e00aa440d596d89acd39ea40e318d91" + }, + "unread": true, + "type": "eth_sent", + "createdAt": "2026-03-05T17:53:30.364Z", + "isRead": true + }, + { + "created_at": "2026-03-05T17:53:30.290038Z", + "id": "4fbac2fd-bcbd-5f14-b870-2ec7f2bad589", + "notification_type": "on-chain", + "payload": { + "address": "0x30e8ccad5a980bdf30447f8c2c48e70989d9d294", + "block_number": 83806589, + "block_timestamp": "1772733209", + "chain_id": 137, + "data": { + "kind": "metamask_swap_completed", + "rate": "10.0824543113582880795", + "token_in": { + "usd": "0.100115", + "name": "Polygon Ecosystem Token", + "image": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x0000000000000000000000000000000000000000.png", + "amount": "10000000000000000000", + "symbol": "POL", + "address": "0x0000000000000000000000000000000000000000", + "decimals": "18" + }, + "token_out": { + "usd": "1", + "name": "Tether USD", + "image": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0xc2132d05d31c914a87c6611c10748aeb04b58e8f.png", + "amount": "991822", + "symbol": "USDT", + "address": "0xc2132d05d31c914a87c6611c10748aeb04b58e8f", + "decimals": "6" + }, + "network_fee": { + "gas_price": "183058301860", + "native_token_price_in_usd": "0.100115" + } + }, + "network": { + "block_explorer": { + "name": "PolygonScan", + "url": "https://polygonscan.com" + }, + "name": "Polygon", + "native_symbol": "POL" + }, + "tx_hash": "0x97dbd5dde86d4651b27a138ae71668928e00aa440d596d89acd39ea40e318d91" + }, + "unread": true, + "type": "metamask_swap_completed", + "createdAt": "2026-03-05T17:53:30.290Z", + "isRead": true + }, + { + "created_at": "2026-03-05T17:52:46.28602Z", + "id": "3b302450-fd15-56eb-b6af-a1c7286b9a9c", + "notification_type": "on-chain", + "payload": { + "address": "0x30e8ccad5a980bdf30447f8c2c48e70989d9d294", + "block_number": 83806567, + "block_timestamp": "1772733165", + "chain_id": 137, + "data": { + "to": "0x1a1ec25dc08e98e5e93f1104b5e5cdd298707d31", + "from": "0x30e8ccad5a980bdf30447f8c2c48e70989d9d294", + "kind": "eth_sent", + "amount": { + "eth": "10.000000000000000000", + "usd": "1.00" + }, + "network_fee": { + "gas_price": "182379273590", + "native_token_price_in_usd": "0.100115" + } + }, + "network": { + "block_explorer": { + "name": "PolygonScan", + "url": "https://polygonscan.com" + }, + "name": "Polygon", + "native_symbol": "POL" + }, + "tx_hash": "0x075a45124c42750745dc9efc32a64831fd4603aa14dfa04ffbd77610e60b34fb" + }, + "unread": true, + "type": "eth_sent", + "createdAt": "2026-03-05T17:52:46.286Z", + "isRead": true + }, + { + "created_at": "2026-03-05T17:52:46.217482Z", + "id": "ad794c5b-3112-5368-8856-0e924d3c8833", + "notification_type": "on-chain", + "payload": { + "address": "0x30e8ccad5a980bdf30447f8c2c48e70989d9d294", + "block_number": 83806567, + "block_timestamp": "1772733165", + "chain_id": 137, + "data": { + "kind": "metamask_swap_completed", + "rate": "10.0832574568209707554", + "token_in": { + "usd": "0.100115", + "name": "Polygon Ecosystem Token", + "image": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x0000000000000000000000000000000000000000.png", + "amount": "10000000000000000000", + "symbol": "POL", + "address": "0x0000000000000000000000000000000000000000", + "decimals": "18" + }, + "token_out": { + "usd": "1", + "name": "Tether USD", + "image": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0xc2132d05d31c914a87c6611c10748aeb04b58e8f.png", + "amount": "991743", + "symbol": "USDT", + "address": "0xc2132d05d31c914a87c6611c10748aeb04b58e8f", + "decimals": "6" + }, + "network_fee": { + "gas_price": "182379273590", + "native_token_price_in_usd": "0.100115" + } + }, + "network": { + "block_explorer": { + "name": "PolygonScan", + "url": "https://polygonscan.com" + }, + "name": "Polygon", + "native_symbol": "POL" + }, + "tx_hash": "0x075a45124c42750745dc9efc32a64831fd4603aa14dfa04ffbd77610e60b34fb" + }, + "unread": true, + "type": "metamask_swap_completed", + "createdAt": "2026-03-05T17:52:46.217Z", + "isRead": true + }, + { + "created_at": "2026-03-05T00:27:29.911177Z", + "id": "7cce6c62-7ea3-51e7-9156-940c7674a567", + "notification_type": "on-chain", + "payload": { + "address": "0x30e8ccad5a980bdf30447f8c2c48e70989d9d294", + "block_number": 83775209, + "block_timestamp": "1772670449", + "chain_id": 137, + "data": { + "to": "0x1a1ec25dc08e98e5e93f1104b5e5cdd298707d31", + "from": "0x30e8ccad5a980bdf30447f8c2c48e70989d9d294", + "kind": "eth_sent", + "amount": { + "eth": "10.000000000000000000", + "usd": "1.04" + }, + "network_fee": { + "gas_price": "229848191150", + "native_token_price_in_usd": "0.103716" + } + }, + "network": { + "block_explorer": { + "name": "PolygonScan", + "url": "https://polygonscan.com" + }, + "name": "Polygon", + "native_symbol": "POL" + }, + "tx_hash": "0x4d48be211dd7e858ef3afaca946b5961b3dded1b7e872c92f811f3e98b556842" + }, + "unread": true, + "type": "eth_sent", + "createdAt": "2026-03-05T00:27:29.911Z", + "isRead": true + }, + { + "created_at": "2026-03-05T00:27:29.828366Z", + "id": "f6703240-9141-53fd-9fbf-ed4a37b4258b", + "notification_type": "on-chain", + "payload": { + "address": "0x30e8ccad5a980bdf30447f8c2c48e70989d9d294", + "block_number": 83775209, + "block_timestamp": "1772670449", + "chain_id": 137, + "data": { + "kind": "metamask_swap_completed", + "rate": "9.719788225254148162", + "token_in": { + "usd": "0.103716", + "name": "Polygon Ecosystem Token", + "image": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x0000000000000000000000000000000000000000.png", + "amount": "10000000000000000000", + "symbol": "POL", + "address": "0x0000000000000000000000000000000000000000", + "decimals": "18" + }, + "token_out": { + "usd": "1.001", + "name": "Tether USD", + "image": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0xc2132d05d31c914a87c6611c10748aeb04b58e8f.png", + "amount": "1028829", + "symbol": "USDT", + "address": "0xc2132d05d31c914a87c6611c10748aeb04b58e8f", + "decimals": "6" + }, + "network_fee": { + "gas_price": "229848191150", + "native_token_price_in_usd": "0.103716" + } + }, + "network": { + "block_explorer": { + "name": "PolygonScan", + "url": "https://polygonscan.com" + }, + "name": "Polygon", + "native_symbol": "POL" + }, + "tx_hash": "0x4d48be211dd7e858ef3afaca946b5961b3dded1b7e872c92f811f3e98b556842" + }, + "unread": true, + "type": "metamask_swap_completed", + "createdAt": "2026-03-05T00:27:29.828Z", + "isRead": true + }, + { + "created_at": "2026-03-05T00:27:22.745771Z", + "id": "0b90aef3-0491-5bf7-95b4-621bf8bb215a", + "notification_type": "on-chain", + "payload": { + "address": "0x30e8ccad5a980bdf30447f8c2c48e70989d9d294", + "block_number": 83775205, + "block_timestamp": "1772670441", + "chain_id": 137, + "data": { + "to": "0x1a1ec25dc08e98e5e93f1104b5e5cdd298707d31", + "from": "0x30e8ccad5a980bdf30447f8c2c48e70989d9d294", + "kind": "eth_sent", + "amount": { + "eth": "10.000000000000000000", + "usd": "1.04" + }, + "network_fee": { + "gas_price": "227325709881", + "native_token_price_in_usd": "0.103716" + } + }, + "network": { + "block_explorer": { + "name": "PolygonScan", + "url": "https://polygonscan.com" + }, + "name": "Polygon", + "native_symbol": "POL" + }, + "tx_hash": "0xb6fae9523a17e51bac6f432f72c4b882be2292228b50038210a4dea3b52b4846" + }, + "unread": true, + "type": "eth_sent", + "createdAt": "2026-03-05T00:27:22.745Z", + "isRead": true + }, + { + "created_at": "2026-03-05T00:27:22.745635Z", + "id": "c9aa0305-19d0-5b51-abb6-06381eaa819d", + "notification_type": "on-chain", + "payload": { + "address": "0x30e8ccad5a980bdf30447f8c2c48e70989d9d294", + "block_number": 83775205, + "block_timestamp": "1772670441", + "chain_id": 137, + "data": { + "kind": "metamask_swap_completed", + "rate": "9.71642610415037141", + "token_in": { + "usd": "0.103716", + "name": "Polygon Ecosystem Token", + "image": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x0000000000000000000000000000000000000000.png", + "amount": "10000000000000000000", + "symbol": "POL", + "address": "0x0000000000000000000000000000000000000000", + "decimals": "18" + }, + "token_out": { + "usd": "1.001", + "name": "Tether USD", + "image": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0xc2132d05d31c914a87c6611c10748aeb04b58e8f.png", + "amount": "1029185", + "symbol": "USDT", + "address": "0xc2132d05d31c914a87c6611c10748aeb04b58e8f", + "decimals": "6" + }, + "network_fee": { + "gas_price": "227325709881", + "native_token_price_in_usd": "0.103716" + } + }, + "network": { + "block_explorer": { + "name": "PolygonScan", + "url": "https://polygonscan.com" + }, + "name": "Polygon", + "native_symbol": "POL" + }, + "tx_hash": "0xb6fae9523a17e51bac6f432f72c4b882be2292228b50038210a4dea3b52b4846" + }, + "unread": true, + "type": "metamask_swap_completed", + "createdAt": "2026-03-05T00:27:22.745Z", + "isRead": true + }, + { + "created_at": "2026-03-05T00:27:14.523322Z", + "id": "001dbbde-3ab9-51b1-92d7-47bf9aa80960", + "notification_type": "on-chain", + "payload": { + "address": "0x30e8ccad5a980bdf30447f8c2c48e70989d9d294", + "block_number": 83775201, + "block_timestamp": "1772670433", + "chain_id": 137, + "data": { + "kind": "metamask_swap_completed", + "rate": "9.713066308189766119", + "token_in": { + "usd": "0.103716", + "name": "Polygon Ecosystem Token", + "image": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x0000000000000000000000000000000000000000.png", + "amount": "10000000000000000000", + "symbol": "POL", + "address": "0x0000000000000000000000000000000000000000", + "decimals": "18" + }, + "token_out": { + "usd": "1", + "name": "Tether USD", + "image": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0xc2132d05d31c914a87c6611c10748aeb04b58e8f.png", + "amount": "1029541", + "symbol": "USDT", + "address": "0xc2132d05d31c914a87c6611c10748aeb04b58e8f", + "decimals": "6" + }, + "network_fee": { + "gas_price": "226343111780", + "native_token_price_in_usd": "0.103716" + } + }, + "network": { + "block_explorer": { + "name": "PolygonScan", + "url": "https://polygonscan.com" + }, + "name": "Polygon", + "native_symbol": "POL" + }, + "tx_hash": "0xb41d8bbf9c9868dae187ca71e4f480e46f329c528c5418cb68275048bfc702b1" + }, + "unread": true, + "type": "metamask_swap_completed", + "createdAt": "2026-03-05T00:27:14.523Z", + "isRead": true + }, + { + "created_at": "2026-03-05T00:27:14.52327Z", + "id": "79410374-ff70-5220-bba5-a0f2373a073e", + "notification_type": "on-chain", + "payload": { + "address": "0x30e8ccad5a980bdf30447f8c2c48e70989d9d294", + "block_number": 83775201, + "block_timestamp": "1772670433", + "chain_id": 137, + "data": { + "to": "0x1a1ec25dc08e98e5e93f1104b5e5cdd298707d31", + "from": "0x30e8ccad5a980bdf30447f8c2c48e70989d9d294", + "kind": "eth_sent", + "amount": { + "eth": "10.000000000000000000", + "usd": "1.04" + }, + "network_fee": { + "gas_price": "226343111780", + "native_token_price_in_usd": "0.103716" + } + }, + "network": { + "block_explorer": { + "name": "PolygonScan", + "url": "https://polygonscan.com" + }, + "name": "Polygon", + "native_symbol": "POL" + }, + "tx_hash": "0xb41d8bbf9c9868dae187ca71e4f480e46f329c528c5418cb68275048bfc702b1" + }, + "unread": true, + "type": "eth_sent", + "createdAt": "2026-03-05T00:27:14.523Z", + "isRead": true + }, + { + "created_at": "2026-03-05T00:25:49.925134Z", + "id": "96d486fc-0c05-5dba-8532-e4e1cfaa47e1", + "notification_type": "on-chain", + "payload": { + "address": "0x30e8ccad5a980bdf30447f8c2c48e70989d9d294", + "block_number": 83775159, + "block_timestamp": "1772670349", + "chain_id": 137, + "data": { + "to": "0x1a1ec25dc08e98e5e93f1104b5e5cdd298707d31", + "from": "0x30e8ccad5a980bdf30447f8c2c48e70989d9d294", + "kind": "eth_sent", + "amount": { + "eth": "10.000000000000000000", + "usd": "1.04" + }, + "network_fee": { + "gas_price": "206908876726", + "native_token_price_in_usd": "0.103716" + } + }, + "network": { + "block_explorer": { + "name": "PolygonScan", + "url": "https://polygonscan.com" + }, + "name": "Polygon", + "native_symbol": "POL" + }, + "tx_hash": "0x19f5431502801719910455587c980657c3023ffc11201e35ccd7a9c6b7b8eadd" + }, + "unread": true, + "type": "eth_sent", + "createdAt": "2026-03-05T00:25:49.925Z", + "isRead": true + }, + { + "created_at": "2026-03-05T00:25:49.902164Z", + "id": "f9dd73ff-0cd8-528e-bdd9-5ae09fdcf090", + "notification_type": "on-chain", + "payload": { + "address": "0x30e8ccad5a980bdf30447f8c2c48e70989d9d294", + "block_number": 83775159, + "block_timestamp": "1772670349", + "chain_id": 137, + "data": { + "kind": "metamask_swap_completed", + "rate": "9.704893595546618426", + "token_in": { + "usd": "0.103716", + "name": "Polygon Ecosystem Token", + "image": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x0000000000000000000000000000000000000000.png", + "amount": "10000000000000000000", + "symbol": "POL", + "address": "0x0000000000000000000000000000000000000000", + "decimals": "18" + }, + "token_out": { + "usd": "1", + "name": "Tether USD", + "image": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0xc2132d05d31c914a87c6611c10748aeb04b58e8f.png", + "amount": "1030408", + "symbol": "USDT", + "address": "0xc2132d05d31c914a87c6611c10748aeb04b58e8f", + "decimals": "6" + }, + "network_fee": { + "gas_price": "206908876726", + "native_token_price_in_usd": "0.103716" + } + }, + "network": { + "block_explorer": { + "name": "PolygonScan", + "url": "https://polygonscan.com" + }, + "name": "Polygon", + "native_symbol": "POL" + }, + "tx_hash": "0x19f5431502801719910455587c980657c3023ffc11201e35ccd7a9c6b7b8eadd" + }, + "unread": true, + "type": "metamask_swap_completed", + "createdAt": "2026-03-05T00:25:49.902Z", + "isRead": true + } + ], + "metamaskNotificationsReadList": [], + "isUpdatingMetamaskNotifications": false, + "isFetchingMetamaskNotifications": false, + "isUpdatingMetamaskNotificationsAccount": [], + "isCheckingAccountsPresence": false, + "isPushEnabled": false, + "fcmToken": "", + "isUpdatingFCMToken": false, + "remoteFeatureFlags": { + "addBitcoinAccount": false, + "addBitcoinAccountDummyFlag": false, + "addSolanaAccount": true, + "additionalNetworksBlacklist": [], + "assetsAccountApiBalances": [ + "0x1", + "0xe708", + "0x38", + "0x89", + "0x2105", + "0xa", + "0xa4b1" + ], + "assetsDefiPositionsEnabled": true, + "assetsEnableNotificationsByDefault": true, + "assetsEnableNotificationsByDefaultV2": { + "name": "feature is ON", + "value": true + }, + "assetsUnifyState": { + "enabled": true, + "featureVersion": "1", + "minimumVersion": "13.32.0" + }, + "backendWebSocketConnection": { + "name": "feature is ON", + "value": true + }, + "bitcoinAccounts": { + "minimumVersion": "13.9.0", + "enabled": true + }, + "bitcoinTestnetsEnabled": false, + "bridgeConfig": { + "sse": { + "enabled": true, + "minimumVersion": "13.9.0" + }, + "chains": { + "1": { + "isSingleSwapBridgeButtonEnabled": true, + "noFeeAssets": [], + "topAssets": ["0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48"], + "batchSellDestStablecoins": [ + "eip155:1/erc20:0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48" + ], + "isActiveDest": true, + "isActiveSrc": true, + "isGaslessSwapEnabled": true + }, + "10": { + "isActiveDest": true, + "isActiveSrc": true, + "isSingleSwapBridgeButtonEnabled": true + }, + "56": { + "isActiveDest": true, + "isActiveSrc": true, + "isGaslessSwapEnabled": true, + "isSingleSwapBridgeButtonEnabled": true + }, + "137": { + "isActiveSrc": true, + "isSingleSwapBridgeButtonEnabled": true, + "isActiveDest": true + }, + "143": { + "isActiveSrc": true, + "isSingleSwapBridgeButtonEnabled": true, + "isActiveDest": true + }, + "324": { + "isActiveSrc": true, + "isSingleSwapBridgeButtonEnabled": true, + "isActiveDest": true + }, + "999": { + "isActiveDest": true, + "isActiveSrc": true, + "isSingleSwapBridgeButtonEnabled": true + }, + "1329": { + "isActiveDest": true, + "isActiveSrc": true, + "isSingleSwapBridgeButtonEnabled": true + }, + "4326": { + "isActiveDest": true, + "isActiveSrc": true, + "isSingleSwapBridgeButtonEnabled": true + }, + "8453": { + "isActiveSrc": true, + "isGaslessSwapEnabled": true, + "isSingleSwapBridgeButtonEnabled": true, + "isActiveDest": true + }, + "42161": { + "isSingleSwapBridgeButtonEnabled": true, + "isActiveDest": true, + "isActiveSrc": true + }, + "43114": { + "isActiveDest": true, + "isActiveSrc": true, + "isSingleSwapBridgeButtonEnabled": true + }, + "59144": { + "isSingleSwapBridgeButtonEnabled": true, + "noFeeAssets": [], + "topAssets": ["0x176211869ca2b568f2a7d4ee941e073a821ee1ff"], + "isActiveDest": true, + "isActiveSrc": true, + "isGaslessSwapEnabled": true + }, + "728126428": { + "isSingleSwapBridgeButtonEnabled": true, + "isActiveDest": true, + "isActiveSrc": true + }, + "20000000000001": { + "isActiveDest": true, + "isActiveSrc": true, + "isSingleSwapBridgeButtonEnabled": true + }, + "1151111081099710": { + "isSingleSwapBridgeButtonEnabled": true, + "isSnapConfirmationEnabled": true, + "refreshRate": 10000, + "topAssets": [ + "EPjFWdd5AufqSSqeM2qN1xzybapC8G4wEGGkZwyTDt1v", + "6p6xgHyF7AeE6TZkSmFsko444wqoP15icUSqi2jfGiPN", + "JUPyiwrYJFskUPiHa7hkeR8VUtAeFoSYbKedZNsDvCN", + "7vfCXTUXx5WJV5JADk17DUJ4ksgau7utNKj4b963voxsDx8F8k8k3uYw1PDC", + "3iQL8BFS2vE7mww4ehAqQHAsbmRNCrPxizWAT2Zfyr9y", + "9zNQRsGLjNKwCUU5Gq5LR8beUCPzQMVMqKAi3SSZh54u", + "DezXAZ8z7PnrnRJjz3wXBoRgixCa6xjnB7YaB1pPB263", + "rndrizKT3MK1iimdxRdWabcF7Zg7AR5T4nud4EkHBof", + "21AErpiB8uSb94oQKRcwuHqyHF93njAxBSbdUrpupump", + "pumpCmXqMfrsAkQ5r49WcJnRayYRqmXz6ae8H7H9Dfn" + ], + "isActiveDest": true, + "isActiveSrc": true + } + }, + "bridgeQuoteStatusUpdateEnabled": true, + "priceImpactThreshold": { + "error": 0.25, + "gasless": 0.2, + "normal": 0.05, + "warning": 0.05 + }, + "chainRanking": [ + { + "name": "Ethereum", + "chainId": "eip155:1" + }, + { + "chainId": "eip155:56", + "name": "BNB Chain" + }, + { + "chainId": "bip122:000000000019d6689c085ae165831e93", + "name": "BTC" + }, + { + "chainId": "solana:5eykt4UsFv8P8NJdTREpY1vzqKqZKvdp", + "name": "Solana" + }, + { + "chainId": "tron:728126428", + "name": "Tron" + }, + { + "chainId": "eip155:8453", + "name": "Base" + }, + { + "chainId": "eip155:42161", + "name": "Arbitrum" + }, + { + "name": "Linea", + "chainId": "eip155:59144" + }, + { + "chainId": "eip155:137", + "name": "Polygon" + }, + { + "chainId": "eip155:43114", + "name": "Avalanche" + }, + { + "chainId": "eip155:10", + "name": "Optimism" + }, + { + "chainId": "eip155:143", + "name": "Monad" + }, + { + "chainId": "eip155:1329", + "name": "Sei" + }, + { + "name": "MegaETH", + "chainId": "eip155:4326" + }, + { + "chainId": "eip155:999", + "name": "HyperEVM" + }, + { + "name": "zkSync Era", + "chainId": "eip155:324" + } + ], + "minimumVersion": "0.0.0", + "refreshRate": 30000, + "bip44DefaultPairs": { + "solana": { + "other": {}, + "standard": { + "solana:5eykt4UsFv8P8NJdTREpY1vzqKqZKvdp/slip44:501": "solana:5eykt4UsFv8P8NJdTREpY1vzqKqZKvdp/token:EPjFWdd5AufqSSqeM2qN1xzybapC8G4wEGGkZwyTDt1v" + } + }, + "bip122": { + "other": {}, + "standard": { + "bip122:000000000019d6689c085ae165831e93/slip44:0": "eip155:1/slip44:60" + } + }, + "eip155": { + "other": {}, + "standard": { + "eip155:1/slip44:60": "eip155:1/erc20:0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48" + } + } + }, + "maxRefreshCount": 5, + "support": true, + "stablecoins": [ + "eip155:1/erc20:0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "eip155:1/erc20:0xdac17f958d2ee523a2206206994597c13d831ec7", + "eip155:59144/erc20:0x176211869ca2b568f2a7d4ee941e073a821ee1ff", + "eip155:59144/erc20:0xa219439258ca9da29e9cc4ce5596924745e12b93", + "eip155:137/erc20:0x3c499c542cef5e3811e1192ce70d8cc03d5c3359", + "eip155:137/erc20:0x2791bca1f2de4661ed88a30c99a7a9449aa84174", + "eip155:137/erc20:0xc2132d05d31c914a87c6611c10748aeb04b58e8f", + "eip155:42161/erc20:0xaf88d065e77c8cc2239327c5edb3a432268e5831", + "eip155:42161/erc20:0xff970a61a04b1ca14834a43f5de4533ebddb5cc8", + "eip155:42161/erc20:0xfd086bc7cd5c481dcc9c85ebe478a1c0b69fcbb9", + "eip155:8453/erc20:0x833589fcd6edb6e08f4c7c32d4f71b54bda02913", + "eip155:10/erc20:0x0b2c639c533813f4aa9d7837caf62653d097ff85", + "eip155:10/erc20:0x7f5c764cbc14f9669b88837ca1490cca17c31607", + "eip155:10/erc20:0x94b008aa00579c1307b0ef2c499ad98a8ce58e58", + "eip155:56/erc20:0x8ac76a51cc950d9822d68b83fe1ad97b32cd580d", + "eip155:56/erc20:0x55d398326f99059ff775485246999027b3197955", + "eip155:43114/erc20:0xb97ef9ef8734c71904d8002f8b6bc66dd9c48a6e", + "eip155:43114/erc20:0xa7d7079b0fead91f3e65f86e8915cb59c1a4c664", + "eip155:43114/erc20:0x9702230a8ea53601f5cd2dc00fdbc13d4df4a8c7", + "eip155:43114/erc20:0xc7198437980c041c805a1edcba50c1ce5db95118", + "eip155:324/erc20:0x1d17cbcf0d6d143135ae902365d2e5e2a16538d4", + "eip155:324/erc20:0x3355df6d4c9c3035724fd0e3914de96a5a83aaf4", + "eip155:324/erc20:0x493257fd37edb34451f62edf8d2a0c418852ba4c", + "eip155:1329/erc20:0xe15fc38f6d8c56af07bbcbe3baf5708a2bf42392", + "eip155:4326/erc20:0xb8ce59fc3717ada4c02eadf9682a9e934f625ebb", + "eip155:999/erc20:0xb88339cb7199b77e23db6e890353e22632ba630f" + ] + }, + "carouselBanners": true, + "complianceEnabled": { + "enabled": true, + "minimumVersion": "7.70.0" + }, + "configRegistryApiEnabled": true, + "confirmations_eip_7702": { + "supportedChains": [ + "0x1", + "0x1012", + "0x1079", + "0x13882", + "0x138c5", + "0x138de", + "0x13fb", + "0x14a34", + "0x152", + "0x18c6", + "0x19", + "0x2105", + "0x279f", + "0x27d8", + "0x38", + "0x3909", + "0x515", + "0x530", + "0x531", + "0x61", + "0x64", + "0x66eee", + "0x82", + "0x88bb0", + "0x89", + "0x8f", + "0x92", + "0xa", + "0xa4b1", + "0xa4ba", + "0xa4ec", + "0xa5bf", + "0xaa044c", + "0xaa36a7", + "0xaa37dc", + "0xe708" + ], + "contracts": { + "0x3909": [ + { + "name": "Sonic Testnet", + "signature": "0xc092cc0bcf804f95eb659d281c00586bc72018a242d66fefacdc33a990faf99478c368612277cbbf72aee4a10b7ace6d8666f2c8c4fece9daada40cb360190631b", + "address": "0x63c0c19a282a1B52b07dD5a65b58948A07DAE32B" + } + ], + "0xa4ba": [ + { + "name": "Arbitrum Nova", + "signature": "0x818898e7f90f2f1f47dc7bec74dd683dfcc11efc7025d81f57644d366a3d9e442edb789731045ccb5ba89ee0d84bb517194bb9a097b152922bbd39ffd022ff421c", + "address": "0x63c0c19a282a1B52b07dD5a65b58948A07DAE32B" + } + ], + "0x92": [ + { + "address": "0x63c0c19a282a1B52b07dD5a65b58948A07DAE32B", + "name": "Sonic Mainnet", + "signature": "0x9f2a94332f2b71bff8a772053f47dbb65e26e5286341be0a3c55270d5549351f1dddb7566be0619b0150d42d540b0847cb0acbd0ab118ff608a40a18400834711b" + } + ], + "0x1012": [ + { + "name": "Citrea", + "signature": "0x6818c8c50d25e23dd3810758f3fc45d41c5444bec8fe0983660387414fab00366f6d8a0462b2e8985c16cdff5898d6bf9787e255b1a668d083728b448a5c3f641c", + "address": "0x63c0c19a282a1B52b07dD5a65b58948A07DAE32B" + } + ], + "0x61": [ + { + "signature": "0x80aaf42c70b0b9efdf26e38ced69fce70f6b4f5496e7e59888819c14fb16290301ad049299d99e3650fa1a616a87bb80eb52ae9f02ddd8b53dd6b983275d0eb61b", + "address": "0x63c0c19a282a1B52b07dD5a65b58948A07DAE32B", + "name": "BNB Testnet" + } + ], + "0x19": [ + { + "name": "Cronos", + "signature": "0xa1856ef8c948b0a5204da687d53231848de2a585def9faac05c23c47412615dc476db943010164356b1d2ca8a8a66a8b0ae2d30c11b6b2aaf1cca116f0a333761c", + "address": "0x63c0c19a282a1B52b07dD5a65b58948A07DAE32B" + } + ], + "0x279f": [ + { + "signature": "0x85ec60e9dbac6404b66803b5abace8517ce1325bb6391b7d1ff8ec4433bbe62f4363031873a11ed79364290e196a47830fc36346a9aaf2e44518c1101496983c1b", + "address": "0x63c0c19a282a1B52b07dD5a65b58948A07DAE32B", + "name": "Monad Testnet" + } + ], + "0x2105": [ + { + "name": "Base", + "signature": "0xbdddd2e925cf2cc7e148d3c11b02c917995fba8f3a3dc0b73c0059d029feca88014e723b8a32b2310a60c5b1cc17dfb3ae180b5a39f1d3264f985314b9168e0a1c", + "address": "0x63c0c19a282a1B52b07dD5a65b58948A07DAE32B" + } + ], + "0xa4ec": [ + { + "address": "0x63c0c19a282a1B52b07dD5a65b58948A07DAE32B", + "name": "Celo Mainnet", + "signature": "0x1421ea4d014170a4fc5d0559f267974f4aa095a6e6047b107eff1807afa425774775f796a52a90b767810eade3b5919087bb361651a7b8f4f9679f1f46adb60e1b" + } + ], + "0xe708": [ + { + "name": "Linea", + "signature": "0x8bad472a54f1be8adbcce8badc512045a467d64aa2affce55eb6ecb9b6eda8a142eee478bc99a81580ff52d5daea857eb9e482e457b1e121c0574191e01ec9f21c", + "address": "0x63c0c19a282a1B52b07dD5a65b58948A07DAE32B" + } + ], + "0xa": [ + { + "address": "0x63c0c19a282a1B52b07dD5a65b58948A07DAE32B", + "name": "Optimism", + "signature": "0x60e12ffc04e098bd26a897ed2a974e4e255fc6db3b052fe3a2647372bfbac76f096bf5236510ddc217e12b802e08617cc27292d69ca51b0467ba91c6df74cd7b1c" + } + ], + "0x64": [ + { + "address": "0x63c0c19a282a1B52b07dD5a65b58948A07DAE32B", + "name": "Gnosis", + "signature": "0xd0cfc2959c866e5218faf675f852e0c7021a454064e509d40256c5bec395e300381c19dcbec2e921b2f6d7d9a925a39dee8ea2e8dd8f595633b8dc333d91f1af1b" + } + ], + "0x152": [ + { + "address": "0x63c0c19a282a1B52b07dD5a65b58948A07DAE32B", + "name": "Cronos Testnet", + "signature": "0x8fec0190a311f6ba5dc9df8d76fef3673e6c4081c087f779bca7e3247bb40a5070d393d29c6b268deb3fa231a138b7914b25395cd6dec0fdf4b2b7701975e78b1c" + } + ], + "0x88bb0": [ + { + "name": "Hoodi Testnet", + "signature": "0x23de8eb645a65b08721e5d2194063acead5f5f818474b7884ae767c7aaf9bb9b22233ab92684bc41087f8509e945d96083124ae1919a9357f2ae65267df4f0e21b", + "address": "0x63c0c19a282a1B52b07dD5a65b58948A07DAE32B" + } + ], + "0x13882": [ + { + "address": "0x63c0c19a282a1B52b07dD5a65b58948A07DAE32B", + "name": "Polygon Amoy Testnet", + "signature": "0x472bb78ebb6686ddf0bb2e75265e1f4266cd050f8b498e88f97e9380afd8bfbd169c4d3221ec8845cb81ba7e9ddb7de9b819a15617803e20aee2aaa07664b6c81b" + } + ], + "0x13fb": [ + { + "address": "0x63c0c19a282a1B52b07dD5a65b58948A07DAE32B", + "name": "Citrea Testnet", + "signature": "0xf9e4aa35fc098468212352c2b9662022f9565bd713ca66e634c804f9820b5e0c266d710afba58aed00e5b7e24134dd9b52e2e331076de745137531a6d245a7521b" + } + ], + "0x8f": [ + { + "signature": "0x12d31e58c92cdc29dac8af0405883b3b0ee44156d7fdf5c3c2ffa4138f2461cc20e7f8625431dbd24bb784407d1a1d9bdb75b191a6cf127eac68b67d13bd11e41c", + "address": "0x63c0c19a282a1B52b07dD5a65b58948A07DAE32B", + "name": "Monad" + } + ], + "0xaa37dc": [ + { + "address": "0x63c0c19a282a1B52b07dD5a65b58948A07DAE32B", + "name": "Optimism Sepolia", + "signature": "0xa60cab833af6a8aa2dcc80d5e12d9e1566edb6cdf51c38e7cf43d441dac561007f05643e73e6b00107e18dbf15de98aae14192306276e92d654f62bd7c3023241c" + } + ], + "0x89": [ + { + "name": "Polygon", + "signature": "0x302aa2d59940e88f35d2fa140fe6a1e9dc682218a444a7fb2d88f007fbe7792b2b8d615f5ae1e4f184533a02c47d8ac0f6ba3f591679295dff93c65095c0f03d1b", + "address": "0x63c0c19a282a1B52b07dD5a65b58948A07DAE32B" + } + ], + "0x66eee": [ + { + "address": "0x63c0c19a282a1B52b07dD5a65b58948A07DAE32B", + "name": "Arbitrum Sepolia", + "signature": "0x6fdb53ecf8f575b85ff9895277b1f8e11349970fbb42225fe41587a072bbcef43e8d54303c4e1aa38d44cae9ba2c8bf825e9e138176d6b09a729cd82a14356cf1b" + } + ], + "0x531": [ + { + "name": "Sei", + "signature": "0xde089fc9af662bc4b0f873e4dc79760f6c3539f6f1cf32d9bc46baccf86ebae070a9062436f29ee86d04cc55699b27579f657922a2292ec2f1c5170d587917401b", + "address": "0x63c0c19a282a1B52b07dD5a65b58948A07DAE32B" + } + ], + "0x82": [ + { + "signature": "0x54c423b1af4abbd1fb226e260dddba757acbcd8881e6b55b842c6b839874fa3f0e2f77685389ad5c28e096f12ef22557cebf6a77f6064baa071453a445a4c7d51c", + "address": "0x63c0c19a282a1B52b07dD5a65b58948A07DAE32B", + "name": "Unichain Mainnet" + } + ], + "0x1079": [ + { + "address": "0x63c0c19a282a1B52b07dD5a65b58948A07DAE32B", + "name": "Tempo", + "signature": "0x810496170fb570d0d976c58273ad4a423252bac1f2e10c8a63adbbbfc4e79d2c5d894bae20c28e90a577338e68506138ac6dea142a1e80a31c0c2dd2999efa651b" + } + ], + "0x18c6": [ + { + "address": "0x63c0c19a282a1B52b07dD5a65b58948A07DAE32B", + "name": "MegaEth Testnet", + "signature": "0x6743135a8dfc8f58133d827b4997bc5316c8eb92883d2704a30b1d8a7bf494ce226b523e5f85a681eb5de8349c9564e62d389876d0e5fe5cc06fb9412d9d1cb61b" + } + ], + "0x1": [ + { + "signature": "0xffb37facfedf12f1e98b56203de1c855391b791a20ee361234c546f4b50eb11853283cfc311419049f0325ad0a806ec232cc519073e3b5d4ad59ff331964d2e71b", + "address": "0x63c0c19a282a1B52b07dD5a65b58948A07DAE32B", + "name": "Mainnet" + } + ], + "0x38": [ + { + "address": "0x63c0c19a282a1B52b07dD5a65b58948A07DAE32B", + "name": "BNB", + "signature": "0x28ae371904b3ba71344e426c8de0e2cee0b8529a9510c059b412671655881ad646b8cf544342a5f8e0753eda83221e14e3c9dae5435417401f5fee8ee1d63dce1b" + } + ], + "0xa4b1": [ + { + "signature": "0xc3be82057efec197d92b0cbb7cef9d50dba0345646524687a3ae7235a8fcb1706ba79f197d45fcf4c6cfb5808ef70258c5f6bb29b7e3553a4b9660692eb5e81d1b", + "address": "0x63c0c19a282a1B52b07dD5a65b58948A07DAE32B", + "name": "Arbitrum One" + } + ], + "0xaa36a7": [ + { + "signature": "0x1aba1c0dafadab6663efdd6086764a9b9fa5ab5c002e88ebae85edea162fbc425c398b2b93afdc036503f12361c05a7ff0b409ee523d5277e0b4d0a840679e591c", + "address": "0x63c0c19a282a1B52b07dD5a65b58948A07DAE32B", + "name": "Sepolia - Official" + }, + { + "address": "0xCd8D6C5554e209Fbb0deC797C6293cf7eAE13454", + "name": "Sepolia - Testing", + "signature": "0x016cf109489c415ba28e695eb3cb06ac46689c5c49e2aba101d7ec2f68c890282563b324f5c8df5e0536994451825aa235438b7346e8c18b4e64161d990781891c" + } + ], + "0x515": [ + { + "name": "Unichain Sepolia", + "signature": "0x64487330691a05700a2321ee1db4092adce9590e7aded6e489df024838ecec734c935d182f74883818cb7659d5c784163573afdf8221252fa68d960cbe1c312f1b", + "address": "0x63c0c19a282a1B52b07dD5a65b58948A07DAE32B" + } + ], + "0x530": [ + { + "address": "0x63c0c19a282a1B52b07dD5a65b58948A07DAE32B", + "name": "Sei Testnet", + "signature": "0x91135fcd7bfb9e2456c227ff12905128c3854db36775278d47b96c3c669f730c4063e3a62d94884617769bbad2868f35d725cb3b611d9bd1231bceb5967724711c" + } + ], + "0x138c5": [ + { + "address": "0x63c0c19a282a1B52b07dD5a65b58948A07DAE32B", + "name": "Berachain Testnet", + "signature": "0x66940bcb2c4b95ec2c1c1024fee1e3a8e51c8f072a52a9f0252a793604c8a6ba58ac3153d4dd041873d33eec349450c4a9acd51ddaed117bee448ed7a388208c1b" + } + ], + "0x14a34": [ + { + "address": "0x63c0c19a282a1B52b07dD5a65b58948A07DAE32B", + "name": "Base Sepolia", + "signature": "0xaed94ac035e745629423c547200eb2411fd7194d832a6b4cf459d3e3d34a6b62124e88640a0bf623146bdef63b0ce1c8797bd2a6c8357fab86c8be466744f55d1c" + } + ], + "0xa5bf": [ + { + "signature": "0x2413338e5c47c56853195d1870988d721ec502c78e54fe5b98468a401538b942237a2769461ffbfa8269936bf309243d5b0d69f7114938653469c4d8225715ee1c", + "address": "0x63c0c19a282a1B52b07dD5a65b58948A07DAE32B", + "name": "Tempo Testnet" + } + ], + "0xaa044c": [ + { + "name": "Celo Sepolia", + "signature": "0x1590458cdfa10225e4fe734ed44deec95ac1887c877e63deb5ad35b41025c9ef2f33666cdd2c189b1999a78072ab9f8f122d93a52eaf12687fb2ff5b74d8de9f1c", + "address": "0x63c0c19a282a1B52b07dD5a65b58948A07DAE32B" + } + ], + "0x138de": [ + { + "name": "Berachain", + "signature": "0x2c2037ddedcdfb9b7d8ea7c546259eef371a86b0e3610192eb15ece0114c59d86134791cd9e9df4208bbbdc83776d80b30b1fea6bf1a05bb072575217492497a1b", + "address": "0x63c0c19a282a1B52b07dD5a65b58948A07DAE32B" + } + ], + "0x27d8": [ + { + "address": "0x63c0c19a282a1B52b07dD5a65b58948A07DAE32B", + "name": "Chiado", + "signature": "0x0ff531d6afcc191c3b3bdffc1596d9ce8d1d52fa500ea2097c0823820a66f97963b88b646d4d4edbc0f781127d7985b87132d89c62c3cb4ad42848ce289645fa1b" + } + ] + }, + "dev": true + }, + "confirmations_enforced_simulations": { + "enabled": false, + "slippage": 9.5 + }, + "confirmations_gas_buffer": { + "included": 1.5, + "perChainConfig": { + "0xa4b1": { + "base": 1.2, + "name": "arbitrum" + }, + "0x10e6": { + "name": "megaeth", + "base": 1.3 + }, + "0x18c6": { + "base": 1.3, + "name": "megaeth" + }, + "0x18c7": { + "base": 1.3, + "name": "megaeth" + }, + "0x2105": { + "name": "base", + "eip7702": 1.3 + }, + "0x38": { + "name": "bnb", + "eip7702": 1.3 + }, + "0xa": { + "eip7702": 1.3, + "name": "optimism" + } + }, + "default": 1, + "dev": true + }, + "confirmations_incoming_transactions": { + "useBackendWebSocketService": false, + "pollingIntervalMs": 60000 + }, + "confirmations_pay": { + "slippage": 0.005, + "name": "dev", + "relayQuoteUrl": "https://intents.dev-api.cx.metamask.io/relay/quote" + }, + "confirmations_pay_dapps": { + "enabled": true + }, + "confirmations_pay_extended": { + "payStrategies": { + "relay": { + "gaslessEnabled": true + } + } + }, + "confirmations_pay_post_quote": { + "default": { + "tokens": {}, + "enabled": true + }, + "overrides": { + "perpsWithdraw": { + "enabled": true, + "tokens": { + "0x2105": [ + "0x0000000000000000000000000000000000000000", + "0x833589fCD6eDb6E08f4c7C32D4f71b54bdA02913" + ], + "0x38": [ + "0x0000000000000000000000000000000000000000", + "0x55d398326f99059fF775485246999027B3197955", + "0x8AC76a51cc950d9822D68b83fE1Ad97B32Cd580d" + ], + "0x89": [ + "0x0000000000000000000000000000000000001010", + "0x3c499c542cEF5E3811e1192ce70d8cC03d5c3359", + "0xc2132d05d31c914a87c6611c10748aeb04b58e8f" + ], + "0xa4b1": [ + "0x0000000000000000000000000000000000000000", + "0xaf88d065e77c8cC2239327C5EDb3A432268e5831", + "0xFd086bC7CD5C481DCC9C85ebE478A1C0b69FCbb9" + ], + "0xe708": [ + "0x0000000000000000000000000000000000000000", + "0xacA92E438df0B2401fF60dA7E4337B687a2435DA" + ], + "0x1": [ + "0x0000000000000000000000000000000000000000", + "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "0xdAC17F958D2ee523a2206206994597C13D831ec7", + "0xacA92E438df0B2401fF60dA7E4337B687a2435DA", + "0x2260FAC5E5542a773Aa44fBCfeDf7C193bc2C599" + ] + } + } + } + }, + "confirmations_pay_tokens": { + "preferredTokens": { + "overrides": { + "perpsWithdraw": [ + { + "name": "mUSD", + "address": "0xacA92E438df0B2401fF60dA7E4337B687a2435DA", + "chainId": "0x1" + } + ] + }, + "default": {} + } + }, + "confirmations_transactions": { + "gasEstimateFallback": { + "perChainConfig": { + "0x279f": { + "fixed": 1000000 + } + } + }, + "gasFeeRandomisation": { + "randomisedGasFeeDigits": { + "0x2105": 5 + } + }, + "timeoutAttempts": { + "default": 10 + }, + "useWebsockets": true, + "acceleratedPolling": { + "perChainConfig": { + "0x11c3": { + "name": "TRUMPCHAIN", + "blockTime": 250, + "chainId": "4547", + "countMax": 15, + "intervalMs": 500 + }, + "0x27bc86aa": { + "intervalMs": 500, + "name": "DEGEN_CHAIN", + "blockTime": 250, + "chainId": "666666666", + "countMax": 15 + }, + "0x34fb5e38": { + "chainId": "888888888", + "countMax": 10, + "intervalMs": 1300, + "name": "ANXIENT8", + "blockTime": 2000 + }, + "0xb5f": { + "blockTime": 250, + "chainId": "2911", + "countMax": 15, + "intervalMs": 500, + "name": "HYTOPIA" + }, + "0x88b": { + "countMax": 15, + "intervalMs": 500, + "name": "GAME7", + "blockTime": 250, + "chainId": "2187" + }, + "0x88bb0": { + "blockTime": 12000, + "chainId": "560048", + "countMax": 10, + "intervalMs": 3000, + "name": "HOODI" + }, + "0x3e7": { + "intervalMs": 700, + "name": "HYPEREVM", + "blockTime": 1000, + "chainId": "999", + "countMax": 10 + }, + "0x18232": { + "countMax": 10, + "intervalMs": 2000, + "name": "PLUME", + "blockTime": 3000, + "chainId": "98866" + }, + "0x8279": { + "countMax": 15, + "intervalMs": 500, + "name": "SLINGSHOTDAO", + "blockTime": 250, + "chainId": "33401" + }, + "0x9c4401": { + "intervalMs": 500, + "name": "ALIENX_TESTNET", + "blockTime": 250, + "chainId": "10241025", + "countMax": 15 + }, + "0x13f8": { + "chainId": "5112", + "countMax": 10, + "intervalMs": 1300, + "name": "HAM", + "blockTime": 2000 + }, + "0xe35": { + "intervalMs": 3000, + "name": "BOTANIX", + "blockTime": 5667, + "chainId": "3637", + "countMax": 10 + }, + "0xaa36a7": { + "name": "ETHEREUM_SEPOLIA", + "blockTime": 16000, + "chainId": "11155111", + "countMax": 10, + "intervalMs": 3000 + }, + "0x142b6": { + "chainId": "82614", + "countMax": 15, + "intervalMs": 500, + "name": "VEMP", + "blockTime": 250 + }, + "0x15b43": { + "name": "UNITE", + "blockTime": 250, + "chainId": "88899", + "countMax": 15, + "intervalMs": 500 + }, + "0x64": { + "name": "GNOSIS", + "blockTime": 8333, + "chainId": "100", + "countMax": 10, + "intervalMs": 3000 + }, + "0xa3c3": { + "blockTime": 250, + "chainId": "41923", + "countMax": 15, + "intervalMs": 500, + "name": "EDUCHAIN" + }, + "0xbde31": { + "countMax": 15, + "intervalMs": 500, + "name": "WINR", + "blockTime": 250, + "chainId": "777777" + }, + "0x134b3cf": { + "intervalMs": 500, + "name": "DERI", + "blockTime": 250, + "chainId": "20231119", + "countMax": 15 + }, + "0x82750": { + "name": "SCROLL", + "blockTime": 2333, + "chainId": "534352", + "countMax": 10, + "intervalMs": 1600 + }, + "0x7ea": { + "chainId": "2026", + "countMax": 10, + "intervalMs": 1300, + "name": "EDGELESS", + "blockTime": 2000 + }, + "0xa9": { + "intervalMs": 1300, + "name": "MANTA", + "blockTime": 2000, + "chainId": "169", + "countMax": 10 + }, + "0x1388": { + "blockTime": 2000, + "chainId": "5000", + "countMax": 10, + "intervalMs": 1300, + "name": "MANTLE" + }, + "0x813df": { + "blockTime": 250, + "chainId": "529375", + "countMax": 15, + "intervalMs": 500, + "name": "LAYER_K" + }, + "0xa0c71fd": { + "name": "BLAST_SEPOLIA", + "blockTime": 2000, + "chainId": "168587773", + "countMax": 10, + "intervalMs": 1300 + }, + "0x52415249": { + "chainId": "1380012617", + "countMax": 15, + "intervalMs": 500, + "name": "RARIBLE", + "blockTime": 250 + }, + "0x6c1": { + "intervalMs": 500, + "name": "REYA", + "blockTime": 250, + "chainId": "1729", + "countMax": 15 + }, + "0x1": { + "chainId": "1", + "countMax": 10, + "intervalMs": 3000, + "name": "ETHEREUM", + "blockTime": 12000 + }, + "0x13c23": { + "chainId": "80931", + "countMax": 15, + "intervalMs": 500, + "name": "FORTA", + "blockTime": 250 + }, + "0x4268": { + "chainId": "17000", + "countMax": 10, + "intervalMs": 2700, + "name": "ETHEREUM_HOLESKY", + "blockTime": 4000 + }, + "0x13bf8": { + "intervalMs": 500, + "name": "ONYX", + "blockTime": 250, + "chainId": "80888", + "countMax": 15 + }, + "0x128ca": { + "blockTime": 250, + "chainId": "75978", + "countMax": 15, + "intervalMs": 500, + "name": "FUSION" + }, + "0xab5": { + "intervalMs": 500, + "name": "ABSTRACT", + "blockTime": 667, + "chainId": "2741", + "countMax": 15 + }, + "0xb67d2": { + "chainId": "747474", + "countMax": 10, + "intervalMs": 700, + "name": "KATANA", + "blockTime": 1000 + }, + "0xca74": { + "chainId": "51828", + "countMax": 15, + "intervalMs": 500, + "name": "CHAINBOUNTY", + "blockTime": 250 + }, + "0x46f": { + "name": "LISK", + "blockTime": 2000, + "chainId": "1135", + "countMax": 10, + "intervalMs": 1300 + }, + "0xcc": { + "countMax": 10, + "intervalMs": 700, + "name": "OPBNB", + "blockTime": 1000, + "chainId": "204" + }, + "0xe705": { + "blockTime": 2000, + "chainId": "59141", + "countMax": 10, + "intervalMs": 1300, + "name": "LINEA_SEPOLIA" + }, + "0x171": { + "blockTime": 10000, + "chainId": "369", + "countMax": 10, + "intervalMs": 3000, + "name": "PULSECHAIN" + }, + "0x1713c": { + "intervalMs": 500, + "name": "IDEX", + "blockTime": 250, + "chainId": "94524", + "countMax": 15 + }, + "0x28c58": { + "chainId": "167000", + "countMax": 10, + "intervalMs": 3000, + "name": "TAIKO", + "blockTime": 8000 + }, + "0x28c61": { + "chainId": "167009", + "countMax": 10, + "intervalMs": 2700, + "name": "TAIKO_HEKLA", + "blockTime": 4000 + }, + "0x3023": { + "chainId": "12323", + "countMax": 15, + "intervalMs": 500, + "name": "HUDDLE01", + "blockTime": 250 + }, + "0x2105": { + "countMax": 10, + "intervalMs": 1300, + "name": "BASE", + "blockTime": 2000, + "chainId": "8453" + }, + "0x8173": { + "chainId": "33139", + "countMax": 15, + "intervalMs": 500, + "name": "APECHAIN", + "blockTime": 250 + }, + "0x1142d": { + "blockTime": 250, + "chainId": "70701", + "countMax": 15, + "intervalMs": 500, + "name": "PROOF_OF_PLAY_BOSS" + }, + "0x2ba": { + "name": "MATCHAIN", + "blockTime": 2000, + "chainId": "698", + "countMax": 10, + "intervalMs": 1300 + }, + "0x13e31": { + "chainId": "81457", + "countMax": 10, + "intervalMs": 1300, + "name": "BLAST", + "blockTime": 2000 + }, + "0xe49b1": { + "chainId": "936369", + "countMax": 15, + "intervalMs": 500, + "name": "LOGX", + "blockTime": 250 + }, + "0x2eb": { + "blockTime": 667, + "chainId": "747", + "countMax": 15, + "intervalMs": 500, + "name": "FLOW" + }, + "0xb9": { + "blockTime": 2000, + "chainId": "185", + "countMax": 10, + "intervalMs": 1300, + "name": "MINT" + }, + "0x42af": { + "blockTime": 250, + "chainId": "17071", + "countMax": 15, + "intervalMs": 500, + "name": "ONCHAIN_POINTS" + }, + "0x38": { + "chainId": "56", + "countMax": 10, + "intervalMs": 700, + "name": "BNB", + "blockTime": 1000 + }, + "0x99797f": { + "chainId": "10058111", + "countMax": 15, + "intervalMs": 500, + "name": "SPOTLIGHT", + "blockTime": 250 + }, + "0x1b59": { + "blockTime": 3667, + "chainId": "7001", + "countMax": 10, + "intervalMs": 2400, + "name": "ZETACHAIN_TESTNET" + }, + "0x14a34": { + "chainId": "84532", + "countMax": 15, + "intervalMs": 500, + "name": "BASE_SEPOLIA_TESTNET", + "blockTime": 250 + }, + "0x98967f": { + "intervalMs": 500, + "name": "FLUENCE", + "blockTime": 250, + "chainId": "9999999", + "countMax": 15 + }, + "0x2f0": { + "blockTime": 250, + "chainId": "752", + "countMax": 15, + "intervalMs": 500, + "name": "RIVALZ" + }, + "0x2780b": { + "blockTime": 250, + "chainId": "161803", + "countMax": 15, + "intervalMs": 500, + "name": "EVENTUM" + }, + "0xa": { + "countMax": 10, + "intervalMs": 1300, + "name": "OPTIMISM", + "blockTime": 2000, + "chainId": "10" + }, + "0x279f": { + "chainId": "10143", + "countMax": 15, + "intervalMs": 500, + "name": "MONAD_TESTNET", + "blockTime": 500 + }, + "0x515": { + "blockTime": 2000, + "chainId": "1301", + "countMax": 10, + "intervalMs": 1300, + "name": "UNICHAIN_SEPOLIA" + }, + "0x138de": { + "chainId": "80094", + "countMax": 10, + "intervalMs": 1300, + "name": "BERACHAIN", + "blockTime": 2000 + }, + "0x61": { + "chainId": "97", + "countMax": 15, + "intervalMs": 500, + "name": "BNB_TESTNET", + "blockTime": 667 + }, + "0x32": { + "name": "XDC", + "blockTime": 2000, + "chainId": "50", + "countMax": 10, + "intervalMs": 1300 + }, + "0x8f": { + "chainId": "143", + "countMax": 15, + "intervalMs": 500, + "name": "MONAD", + "blockTime": 500 + }, + "0xa33fc": { + "blockTime": 250, + "chainId": "668668", + "countMax": 15, + "intervalMs": 500, + "name": "CONWAI" + }, + "0xa1ef": { + "name": "ALEPH_ZERO", + "blockTime": 250, + "chainId": "41455", + "countMax": 15, + "intervalMs": 500 + }, + "0x15eb": { + "intervalMs": 700, + "name": "OPBNB_TESTNET", + "blockTime": 1000, + "chainId": "5611", + "countMax": 10 + }, + "0xd7cc": { + "chainId": "55244", + "countMax": 15, + "intervalMs": 500, + "name": "SUPERPOSITION", + "blockTime": 250 + }, + "0x2a": { + "countMax": 10, + "intervalMs": 2700, + "name": "LUKSO", + "blockTime": 4000, + "chainId": "42" + }, + "0xe708": { + "blockTime": 2000, + "chainId": "59144", + "countMax": 10, + "intervalMs": 1300, + "name": "LINEA" + }, + "0xb1c9": { + "chainId": "45513", + "countMax": 15, + "intervalMs": 500, + "name": "BLESSNET", + "blockTime": 250 + }, + "0x62ef": { + "intervalMs": 500, + "name": "EVERCLEAR", + "blockTime": 250, + "chainId": "25327", + "countMax": 15 + }, + "0x16fd8": { + "countMax": 15, + "intervalMs": 500, + "name": "LUMITERRA", + "blockTime": 250, + "chainId": "94168" + }, + "0xe34": { + "blockTime": 6000, + "chainId": "3636", + "countMax": 10, + "intervalMs": 3000, + "name": "BOTANIX_TESTNET" + }, + "0x123": { + "blockTime": 2000, + "chainId": "291", + "countMax": 10, + "intervalMs": 1300, + "name": "ORDERLY" + }, + "0x144": { + "chainId": "324", + "countMax": 10, + "intervalMs": 700, + "name": "ZKSYNC", + "blockTime": 1000 + }, + "0x13881": { + "name": "POLYGON_MUMBAI", + "blockTime": 2000, + "chainId": "80001", + "countMax": 10, + "intervalMs": 1300 + }, + "0x1142c": { + "chainId": "70700", + "countMax": 15, + "intervalMs": 500, + "name": "PROOF_OF_PLAY_APEX", + "blockTime": 250 + }, + "0xa86a": { + "chainId": "43114", + "countMax": 10, + "intervalMs": 900, + "name": "AVALANCHE", + "blockTime": 1333 + }, + "0x1331": { + "countMax": 15, + "intervalMs": 500, + "name": "API3", + "blockTime": 250, + "chainId": "4913" + }, + "0x2b2": { + "countMax": 10, + "intervalMs": 1300, + "name": "REDSTONE", + "blockTime": 2000, + "chainId": "690" + }, + "0x9c4400": { + "intervalMs": 500, + "name": "ALIENX", + "blockTime": 250, + "chainId": "10241024", + "countMax": 15 + }, + "0x15a9": { + "countMax": 15, + "intervalMs": 500, + "name": "DUCK", + "blockTime": 250, + "chainId": "5545" + }, + "0x1b58": { + "intervalMs": 2400, + "name": "ZETACHAIN", + "blockTime": 3667, + "chainId": "7000", + "countMax": 10 + }, + "0x82": { + "blockTime": 2000, + "chainId": "130", + "countMax": 10, + "intervalMs": 1300, + "name": "UNICHAIN" + }, + "0x531": { + "countMax": 15, + "intervalMs": 500, + "name": "SEI", + "blockTime": 667, + "chainId": "1329" + }, + "0x868b": { + "countMax": 10, + "intervalMs": 1300, + "name": "MODE", + "blockTime": 2000, + "chainId": "34443" + }, + "0xe8": { + "name": "LENS", + "blockTime": 27333, + "chainId": "232", + "countMax": 10, + "intervalMs": 3000 + }, + "0x725": { + "chainId": "1829", + "countMax": 15, + "intervalMs": 500, + "name": "PLAYBLOCK", + "blockTime": 250 + }, + "0x316b8": { + "intervalMs": 500, + "name": "BLOCKFIT", + "blockTime": 250, + "chainId": "202424", + "countMax": 15 + }, + "0xc350": { + "name": "CITRONUS", + "blockTime": 250, + "chainId": "50000", + "countMax": 15, + "intervalMs": 500 + }, + "0x163e7": { + "name": "HENEZ", + "blockTime": 250, + "chainId": "91111", + "countMax": 15, + "intervalMs": 500 + }, + "0x7cc": { + "chainId": "1996", + "countMax": 15, + "intervalMs": 500, + "name": "SANKO", + "blockTime": 250 + }, + "0x74c": { + "blockTime": 2000, + "chainId": "1868", + "countMax": 10, + "intervalMs": 1300, + "name": "SONEIUM" + }, + "0xa4b1": { + "blockTime": 250, + "chainId": "42161", + "countMax": 15, + "intervalMs": 500, + "name": "ARBITRUM_ONE" + }, + "0xe4": { + "countMax": 15, + "intervalMs": 500, + "name": "MIND", + "blockTime": 250, + "chainId": "228" + }, + "0x9dd": { + "intervalMs": 500, + "name": "INEVM", + "blockTime": 250, + "chainId": "2525", + "countMax": 15 + }, + "0x1042": { + "countMax": 15, + "intervalMs": 500, + "name": "SX_ROLLUP", + "blockTime": 250, + "chainId": "4162" + }, + "0xd0d0": { + "blockTime": 250, + "chainId": "53456", + "countMax": 15, + "intervalMs": 500, + "name": "DODO" + }, + "0x76adf1": { + "intervalMs": 1300, + "name": "ZORA", + "blockTime": 2000, + "chainId": "7777777", + "countMax": 10 + }, + "0x659": { + "blockTime": 250, + "chainId": "1625", + "countMax": 15, + "intervalMs": 500, + "name": "GRAVITY" + }, + "0xfee": { + "countMax": 15, + "intervalMs": 500, + "name": "COMETH", + "blockTime": 250, + "chainId": "4078" + }, + "0x343b": { + "name": "IMMUTABLE", + "blockTime": 2000, + "chainId": "13371", + "countMax": 10, + "intervalMs": 1300 + }, + "0x13882": { + "countMax": 10, + "intervalMs": 1300, + "name": "POLYGON_AMOY", + "blockTime": 2000, + "chainId": "80002" + }, + "0x2272": { + "name": "CLINK", + "blockTime": 250, + "chainId": "8818", + "countMax": 15, + "intervalMs": 500 + }, + "0xa1337": { + "blockTime": 250, + "chainId": "660279", + "countMax": 15, + "intervalMs": 500, + "name": "XAI" + }, + "0x18c6": { + "countMax": 10, + "intervalMs": 2700, + "name": "MEGAETH_TESTNET", + "blockTime": 4000, + "chainId": "6342" + }, + "0x89": { + "intervalMs": 1300, + "name": "POLYGON", + "blockTime": 2000, + "chainId": "137", + "countMax": 10 + }, + "0xf4290": { + "name": "SCOREKOUNT", + "blockTime": 250, + "chainId": "1000080", + "countMax": 15, + "intervalMs": 500 + }, + "0x1ecf": { + "name": "KINTO", + "blockTime": 250, + "chainId": "7887", + "countMax": 15, + "intervalMs": 500 + }, + "0x18c7": { + "blockTime": 4000, + "chainId": "6343", + "countMax": 10, + "intervalMs": 2700, + "name": "MEGAETH_TESTNET" + }, + "0x5d979": { + "intervalMs": 500, + "name": "CHEESE", + "blockTime": 250, + "chainId": "383353", + "countMax": 15 + }, + "0xaa37dc": { + "countMax": 10, + "intervalMs": 1300, + "name": "OPTIMISM_SEPOLIA", + "blockTime": 2000, + "chainId": "11155420" + }, + "0x16876": { + "name": "MIRACLE", + "blockTime": 250, + "chainId": "92278", + "countMax": 15, + "intervalMs": 500 + }, + "0x19": { + "chainId": "25", + "countMax": 15, + "intervalMs": 500, + "name": "CRONOS", + "blockTime": 667 + }, + "0xa867": { + "countMax": 10, + "intervalMs": 800, + "name": "HEMI", + "blockTime": 1200, + "chainId": "43111" + }, + "0x8274f": { + "blockTime": 3333, + "chainId": "534351", + "countMax": 10, + "intervalMs": 2200, + "name": "SCROLL_SEPOLIA" + }, + "0x1406f40": { + "chainId": "21000000", + "countMax": 15, + "intervalMs": 500, + "name": "CORN", + "blockTime": 250 + }, + "0x34a1": { + "name": "IMMUTABLE_TESTNET", + "blockTime": 2000, + "chainId": "13473", + "countMax": 10, + "intervalMs": 1300 + }, + "0x1b254": { + "name": "REAL", + "blockTime": 250, + "chainId": "111188", + "countMax": 15, + "intervalMs": 500 + }, + "0xfc": { + "blockTime": 2000, + "chainId": "252", + "countMax": 10, + "intervalMs": 1300, + "name": "FRAXTAL" + }, + "0xfa": { + "blockTime": 4000, + "chainId": "250", + "countMax": 10, + "intervalMs": 2700, + "name": "FANTOM" + }, + "0x13a43": { + "name": "GEO_GENESIS", + "blockTime": 250, + "chainId": "80451", + "countMax": 15, + "intervalMs": 500 + }, + "0x6f0": { + "blockTime": 667, + "chainId": "1776", + "countMax": 15, + "intervalMs": 500, + "name": "INJECTIVE" + }, + "0x3bd": { + "countMax": 10, + "intervalMs": 1300, + "name": "LYRA", + "blockTime": 2000, + "chainId": "957" + }, + "0x974": { + "blockTime": 250, + "chainId": "2420", + "countMax": 15, + "intervalMs": 500, + "name": "DOGELON" + }, + "0xa6": { + "name": "OMNI", + "blockTime": 1333, + "chainId": "166", + "countMax": 10, + "intervalMs": 900 + }, + "0x7c5": { + "countMax": 15, + "intervalMs": 500, + "name": "LYDIA", + "blockTime": 250, + "chainId": "1989" + }, + "0x2611": { + "intervalMs": 700, + "name": "PLASMA", + "blockTime": 1000, + "chainId": "9745", + "countMax": 10 + }, + "0xa4ba": { + "countMax": 15, + "intervalMs": 500, + "name": "ARBITRUM_NOVA", + "blockTime": 250, + "chainId": "42170" + }, + "0x13a": { + "countMax": 10, + "intervalMs": 3000, + "name": "FILECOIN", + "blockTime": 30000, + "chainId": "314" + } + }, + "defaultCountMax": 10, + "defaultIntervalMs": 3000 + }, + "batchSizeLimit": 10, + "dev": true + }, + "contentfulCarouselEnabled": true, + "coreExtensionUxCeux1024AbtestReferralUi": { + "name": "treatment" + }, + "dappSwapMetrics": { + "bridge_quote_fees": 250, + "enabled": true, + "origins": ["https://app.uniswap.org", "https://metamask.github.io"] + }, + "dappSwapQa": { + "enabled": true + }, + "dappSwapUi": { + "enabled": true, + "threshold": 0.01 + }, + "earnMerklCampaignClaiming": { + "enabled": true, + "minimumVersion": "13.23.0" + }, + "earnMusdConversionAssetOverviewCtaEnabled": { + "enabled": true, + "minimumVersion": "13.23.0" + }, + "earnMusdConversionCtaTokens": { + "0x1": ["USDC", "USDT", "DAI"], + "0xe708": ["USDC", "USDT", "DAI"] + }, + "earnMusdConversionFlowEnabled": { + "enabled": true, + "minimumVersion": "13.23.0" + }, + "earnMusdConversionGeoBlockedCountries": { + "blockedRegions": ["GB"] + }, + "earnMusdConversionMinAssetBalanceRequired": 0.01, + "earnMusdConversionTokenListItemCtaEnabled": { + "minimumVersion": "13.23.0", + "enabled": true + }, + "earnMusdConvertibleTokensAllowlist": { + "0x1": ["USDC", "USDT", "DAI"], + "0xe708": ["USDC", "USDT", "DAI"] + }, + "earnMusdConvertibleTokensBlocklist": {}, + "earnMusdCtaEnabled": { + "enabled": true, + "minimumVersion": "13.23.0" + }, + "enableMultichainAccounts": { + "featureVersion": "1", + "minimumVersion": "13.0.0", + "enabled": true + }, + "enableMultichainAccountsState2": { + "enabled": true, + "featureVersion": "2", + "minimumVersion": "13.5.0" + }, + "enabledAdvancedPermissions": { + "permissions": [ + "native-token-stream", + "native-token-periodic", + "erc20-token-stream", + "erc20-token-periodic", + "erc20-token-revocation", + "native-token-allowance", + "erc20-token-allowance", + "token-approval-revocation" + ] + }, + "extensionPlatformAutoReloadAfterUpdate": true, + "extensionSignedDeepLinkWarningEnabled": { + "name": "Warning enabled", + "value": true + }, + "extensionUpdatePromptMinimumVersion": "12.18.0", + "extensionUxDefaultAddressVersioned": { + "enabled": true, + "minimumVersion": "13.28.0" + }, + "extensionUxDefiReferral": true, + "extensionUxDefiReferralPartners": { + "hyperliquid": true, + "asterdex": true, + "gmx": true + }, + "extensionUxPna25": true, + "extensionUxSidepanel": false, + "extensionUxTokenManagementFilter": { + "minimumVersion": "13.33.0", + "enabled": true + }, + "extensionSkipTransactionStatusPage": { + "minimumVersion": "13.31.0", + "enabled": true + }, + "extensionTransactionLabels": true, + "gasFeesSponsoredNetwork": { + "0x38": false, + "0x531": true, + "0x8f": true + }, + "isSolanaBuyable": false, + "neNetworkDiscoverButton": { + "0x531": true, + "0x8f": false, + "0xe708": true, + "solana:5eykt4UsFv8P8NJdTREpY1vzqKqZKvdp": true, + "tron:728126428": true + }, + "nonZeroUnusedApprovals": [ + "https://aerodrome.finance", + "https://www.aerodrome.finance", + "https://app.bio.xyz", + "https://app.ethena.fi", + "https://app.euler.finance", + "https://app.rocketx.exchange", + "https://app.seer.pm", + "https://app.sky.money", + "https://app.spark.fi", + "https://app.tea-fi.com", + "https://app.uniswap.org", + "https://bridge.gravity.xyz", + "https://dev-relay-sdk.vercel.app", + "https://evm.ekubo.org", + "https://flaunch.gg", + "https://fluid.io", + "https://flyingtulip.com", + "https://jumper.exchange", + "https://jumper.xyz", + "https://linea.build", + "https://pancakeswap.finance", + "https://privacypools.com", + "https://relay.link", + "https://revoke.cash", + "https://staging.relay.link", + "https://superbridge.app", + "https://swap.defillama.com", + "https://toros.finance", + "https://velodrome.finance", + "https://walletstats.io", + "https://www.bungee.exchange", + "https://www.dev.relay.link", + "https://www.fxhash.xyz", + "https://www.hydrex.fi", + "https://www.relay.link", + "https://yearn.fi", + "https://app.teller.org", + "https://kalshi.com", + "https://app.carbondefi.xyz", + "https://celo.carbondefi.xyz", + "https://sei.carbondefi.xyz", + "https://matcha.xyz", + "https://app.trysweep.finance" + ], + "perpsEnabled": true, + "perpsEnabledVersion": { + "enabled": true, + "minimumVersion": "13.30.0" + }, + "perpsHip3AllowlistMarkets": "", + "perpsHip3BlocklistMarkets": "", + "perpsPerpTradingGeoBlockedCountriesV2": { + "blockedRegions": [] + }, + "platformSplitStateGradualRollout": { + "name": "feature is OFF", + "value": { + "enabled": 0, + "maxAccounts": 0, + "maxNetworks": 0 + } + }, + "rewardsBitcoinEnabledExtension": false, + "rewardsEnabled": { + "minimumVersion": "13.32.0", + "enabled": true + }, + "rewardsOnboardingEnabled": { + "enabled": false, + "minimumVersion": "0.0.0" + }, + "rewardsTronEnabledExtension": false, + "rwaTokensEnabled": true, + "sendRedesign": { + "enabled": true + }, + "settingsRedesign": false, + "smartTransactionsNetworks": { + "0x2105": { + "extensionActive": true, + "gaslessBridgeWith7702Enabled": true, + "sentinelUrl": "https://tx-sentinel-base-mainnet.api.cx.metamask.io" + }, + "0x8f": { + "sentinelUrl": "https://tx-sentinel-monad-mainnet.api.cx.metamask.io", + "extensionActive": false + }, + "0x89": { + "extensionActive": true, + "gaslessBridgeWith7702Enabled": true, + "sentinelUrl": "https://tx-sentinel-polygon-mainnet.api.cx.metamask.io" + }, + "default": { + "extensionActive": false, + "extensionReturnTxHashAsapBatch": true, + "variation": "dev", + "extensionReturnTxHashAsap": true, + "expectedDeadline": 45, + "batchStatusPollingInterval": 1000, + "extensionSkipSmartTransactionStatusPage": false, + "gaslessBridgeWith7702Enabled": false, + "maxDeadline": 150 + }, + "0xa4b1": { + "extensionActive": true, + "gaslessBridgeWith7702Enabled": true, + "sentinelUrl": "https://tx-sentinel-arbitrum-mainnet.api.cx.metamask.io" + }, + "0xe708": { + "sentinelUrl": "https://tx-sentinel-linea-mainnet.api.cx.metamask.io", + "extensionActive": true, + "gaslessBridgeWith7702Enabled": true + }, + "0x38": { + "extensionActive": true, + "gaslessBridgeWith7702Enabled": false, + "sentinelUrl": "https://tx-sentinel-bsc-mainnet.api.cx.metamask.io" + }, + "0x1": { + "maxDeadline": 160, + "sentinelUrl": "https://tx-sentinel-ethereum-mainnet.api.cx.metamask.io", + "expectedDeadline": 45, + "extensionActive": true, + "gaslessBridgeWith7702Enabled": false + }, + "0xa": { + "extensionActive": false, + "sentinelUrl": "https://tx-sentinel-optimism-mainnet.api.cx.metamask.io" + }, + "0x144": { + "extensionActive": false, + "sentinelUrl": "https://tx-sentinel-zksync-mainnet.api.cx.metamask.io" + }, + "0x531": { + "sentinelUrl": "https://tx-sentinel-sei-mainnet.api.cx.metamask.io", + "extensionActive": false + }, + "0xa86a": { + "extensionActive": false, + "sentinelUrl": "https://tx-sentinel-avalanche-mainnet.api.cx.metamask.io" + } + }, + "solanaCardEnabled": false, + "solanaTestnetsEnabled": false, + "staticAssetsPollingOptions": { + "cacheExpirationTime": 3600000, + "interval": 10800000, + "occurrenceFloor": {}, + "supportedChains": ["0x10e6"], + "topX": 5 + }, + "stellarAccounts": { + "minimumVersion": "0.0.1", + "enabled": true + }, + "stxMigrationBatchStatus": { + "name": "sentinel on", + "value": true + }, + "stxMigrationCancel": { + "name": "sentinel on", + "value": true + }, + "stxMigrationGetFees": { + "name": "sentinel on", + "value": true + }, + "stxMigrationSubmitTransactions": { + "name": "sentinel on", + "value": true + }, + "tempoConfig": { + "enabled": true, + "perChainConfig": { + "0x1079": { + "enabled": true, + "defaultFeeToken": "0x20c0000000000000000000000000000000000000" + }, + "0x89": { + "defaultFeeToken": "0x20c0000000000000000000000000000000000000", + "enabled": true + }, + "0xa5bf": { + "defaultFeeToken": "0x20c0000000000000000000000000000000000000", + "enabled": true + } + } + }, + "tronAccounts": { + "enabled": true, + "minimumVersion": "13.13.2" + }, + "walletFrameworkRpcFailoverEnabled": true + }, + "localOverrides": {}, + "rawRemoteFeatureFlags": { + "addBitcoinAccount": false, + "addBitcoinAccountDummyFlag": false, + "addSolanaAccount": true, + "additionalNetworksBlacklist": [], + "assetsAccountApiBalances": [ + "0x1", + "0xe708", + "0x38", + "0x89", + "0x2105", + "0xa", + "0xa4b1" + ], + "assetsDefiPositionsEnabled": true, + "assetsEnableNotificationsByDefault": true, + "assetsEnableNotificationsByDefaultV2": [ + { + "scope": { + "value": 1, + "type": "threshold" + }, + "value": true, + "name": "feature is ON" + }, + { + "value": false, + "name": "feature is OFF", + "scope": { + "type": "threshold", + "value": 0 + } + } + ], + "assetsUnifyState": { + "versions": { + "13.32.0": { + "enabled": true, + "featureVersion": "1", + "minimumVersion": "13.32.0" + }, + "13.15.0": { + "minimumVersion": null, + "enabled": false, + "featureVersion": null + } + } + }, + "backendWebSocketConnection": [ + { + "value": true, + "name": "feature is ON", + "scope": { + "type": "threshold", + "value": 1 + } + }, + { + "scope": { + "type": "threshold", + "value": 0 + }, + "value": false, + "name": "feature is OFF" + } + ], + "bitcoinAccounts": { + "minimumVersion": "13.9.0", + "enabled": true + }, + "bitcoinTestnetsEnabled": false, + "bridgeConfig": { + "sse": { + "enabled": true, + "minimumVersion": "13.9.0" + }, + "chains": { + "1": { + "isSingleSwapBridgeButtonEnabled": true, + "noFeeAssets": [], + "topAssets": ["0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48"], + "batchSellDestStablecoins": [ + "eip155:1/erc20:0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48" + ], + "isActiveDest": true, + "isActiveSrc": true, + "isGaslessSwapEnabled": true + }, + "10": { + "isActiveDest": true, + "isActiveSrc": true, + "isSingleSwapBridgeButtonEnabled": true + }, + "56": { + "isActiveDest": true, + "isActiveSrc": true, + "isGaslessSwapEnabled": true, + "isSingleSwapBridgeButtonEnabled": true + }, + "137": { + "isActiveSrc": true, + "isSingleSwapBridgeButtonEnabled": true, + "isActiveDest": true + }, + "143": { + "isActiveSrc": true, + "isSingleSwapBridgeButtonEnabled": true, + "isActiveDest": true + }, + "324": { + "isActiveSrc": true, + "isSingleSwapBridgeButtonEnabled": true, + "isActiveDest": true + }, + "999": { + "isActiveDest": true, + "isActiveSrc": true, + "isSingleSwapBridgeButtonEnabled": true + }, + "1329": { + "isActiveDest": true, + "isActiveSrc": true, + "isSingleSwapBridgeButtonEnabled": true + }, + "4326": { + "isActiveDest": true, + "isActiveSrc": true, + "isSingleSwapBridgeButtonEnabled": true + }, + "8453": { + "isActiveSrc": true, + "isGaslessSwapEnabled": true, + "isSingleSwapBridgeButtonEnabled": true, + "isActiveDest": true + }, + "42161": { + "isSingleSwapBridgeButtonEnabled": true, + "isActiveDest": true, + "isActiveSrc": true + }, + "43114": { + "isActiveDest": true, + "isActiveSrc": true, + "isSingleSwapBridgeButtonEnabled": true + }, + "59144": { + "isSingleSwapBridgeButtonEnabled": true, + "noFeeAssets": [], + "topAssets": ["0x176211869ca2b568f2a7d4ee941e073a821ee1ff"], + "isActiveDest": true, + "isActiveSrc": true, + "isGaslessSwapEnabled": true + }, + "728126428": { + "isSingleSwapBridgeButtonEnabled": true, + "isActiveDest": true, + "isActiveSrc": true + }, + "20000000000001": { + "isActiveDest": true, + "isActiveSrc": true, + "isSingleSwapBridgeButtonEnabled": true + }, + "1151111081099710": { + "isSingleSwapBridgeButtonEnabled": true, + "isSnapConfirmationEnabled": true, + "refreshRate": 10000, + "topAssets": [ + "EPjFWdd5AufqSSqeM2qN1xzybapC8G4wEGGkZwyTDt1v", + "6p6xgHyF7AeE6TZkSmFsko444wqoP15icUSqi2jfGiPN", + "JUPyiwrYJFskUPiHa7hkeR8VUtAeFoSYbKedZNsDvCN", + "7vfCXTUXx5WJV5JADk17DUJ4ksgau7utNKj4b963voxsDx8F8k8k3uYw1PDC", + "3iQL8BFS2vE7mww4ehAqQHAsbmRNCrPxizWAT2Zfyr9y", + "9zNQRsGLjNKwCUU5Gq5LR8beUCPzQMVMqKAi3SSZh54u", + "DezXAZ8z7PnrnRJjz3wXBoRgixCa6xjnB7YaB1pPB263", + "rndrizKT3MK1iimdxRdWabcF7Zg7AR5T4nud4EkHBof", + "21AErpiB8uSb94oQKRcwuHqyHF93njAxBSbdUrpupump", + "pumpCmXqMfrsAkQ5r49WcJnRayYRqmXz6ae8H7H9Dfn" + ], + "isActiveDest": true, + "isActiveSrc": true + } + }, + "bridgeQuoteStatusUpdateEnabled": true, + "priceImpactThreshold": { + "error": 0.25, + "gasless": 0.2, + "normal": 0.05, + "warning": 0.05 + }, + "chainRanking": [ + { + "name": "Ethereum", + "chainId": "eip155:1" + }, + { + "chainId": "eip155:56", + "name": "BNB Chain" + }, + { + "chainId": "bip122:000000000019d6689c085ae165831e93", + "name": "BTC" + }, + { + "chainId": "solana:5eykt4UsFv8P8NJdTREpY1vzqKqZKvdp", + "name": "Solana" + }, + { + "chainId": "tron:728126428", + "name": "Tron" + }, + { + "chainId": "eip155:8453", + "name": "Base" + }, + { + "chainId": "eip155:42161", + "name": "Arbitrum" + }, + { + "name": "Linea", + "chainId": "eip155:59144" + }, + { + "chainId": "eip155:137", + "name": "Polygon" + }, + { + "chainId": "eip155:43114", + "name": "Avalanche" + }, + { + "chainId": "eip155:10", + "name": "Optimism" + }, + { + "chainId": "eip155:143", + "name": "Monad" + }, + { + "chainId": "eip155:1329", + "name": "Sei" + }, + { + "name": "MegaETH", + "chainId": "eip155:4326" + }, + { + "chainId": "eip155:999", + "name": "HyperEVM" + }, + { + "name": "zkSync Era", + "chainId": "eip155:324" + } + ], + "minimumVersion": "0.0.0", + "refreshRate": 30000, + "bip44DefaultPairs": { + "solana": { + "other": {}, + "standard": { + "solana:5eykt4UsFv8P8NJdTREpY1vzqKqZKvdp/slip44:501": "solana:5eykt4UsFv8P8NJdTREpY1vzqKqZKvdp/token:EPjFWdd5AufqSSqeM2qN1xzybapC8G4wEGGkZwyTDt1v" + } + }, + "bip122": { + "other": {}, + "standard": { + "bip122:000000000019d6689c085ae165831e93/slip44:0": "eip155:1/slip44:60" + } + }, + "eip155": { + "other": {}, + "standard": { + "eip155:1/slip44:60": "eip155:1/erc20:0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48" + } + } + }, + "maxRefreshCount": 5, + "support": true, + "stablecoins": [ + "eip155:1/erc20:0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "eip155:1/erc20:0xdac17f958d2ee523a2206206994597c13d831ec7", + "eip155:59144/erc20:0x176211869ca2b568f2a7d4ee941e073a821ee1ff", + "eip155:59144/erc20:0xa219439258ca9da29e9cc4ce5596924745e12b93", + "eip155:137/erc20:0x3c499c542cef5e3811e1192ce70d8cc03d5c3359", + "eip155:137/erc20:0x2791bca1f2de4661ed88a30c99a7a9449aa84174", + "eip155:137/erc20:0xc2132d05d31c914a87c6611c10748aeb04b58e8f", + "eip155:42161/erc20:0xaf88d065e77c8cc2239327c5edb3a432268e5831", + "eip155:42161/erc20:0xff970a61a04b1ca14834a43f5de4533ebddb5cc8", + "eip155:42161/erc20:0xfd086bc7cd5c481dcc9c85ebe478a1c0b69fcbb9", + "eip155:8453/erc20:0x833589fcd6edb6e08f4c7c32d4f71b54bda02913", + "eip155:10/erc20:0x0b2c639c533813f4aa9d7837caf62653d097ff85", + "eip155:10/erc20:0x7f5c764cbc14f9669b88837ca1490cca17c31607", + "eip155:10/erc20:0x94b008aa00579c1307b0ef2c499ad98a8ce58e58", + "eip155:56/erc20:0x8ac76a51cc950d9822d68b83fe1ad97b32cd580d", + "eip155:56/erc20:0x55d398326f99059ff775485246999027b3197955", + "eip155:43114/erc20:0xb97ef9ef8734c71904d8002f8b6bc66dd9c48a6e", + "eip155:43114/erc20:0xa7d7079b0fead91f3e65f86e8915cb59c1a4c664", + "eip155:43114/erc20:0x9702230a8ea53601f5cd2dc00fdbc13d4df4a8c7", + "eip155:43114/erc20:0xc7198437980c041c805a1edcba50c1ce5db95118", + "eip155:324/erc20:0x1d17cbcf0d6d143135ae902365d2e5e2a16538d4", + "eip155:324/erc20:0x3355df6d4c9c3035724fd0e3914de96a5a83aaf4", + "eip155:324/erc20:0x493257fd37edb34451f62edf8d2a0c418852ba4c", + "eip155:1329/erc20:0xe15fc38f6d8c56af07bbcbe3baf5708a2bf42392", + "eip155:4326/erc20:0xb8ce59fc3717ada4c02eadf9682a9e934f625ebb", + "eip155:999/erc20:0xb88339cb7199b77e23db6e890353e22632ba630f" + ] + }, + "carouselBanners": true, + "complianceEnabled": { + "enabled": true, + "minimumVersion": "7.70.0" + }, + "configRegistryApiEnabled": true, + "confirmations_eip_7702": { + "supportedChains": [ + "0x1", + "0x1012", + "0x1079", + "0x13882", + "0x138c5", + "0x138de", + "0x13fb", + "0x14a34", + "0x152", + "0x18c6", + "0x19", + "0x2105", + "0x279f", + "0x27d8", + "0x38", + "0x3909", + "0x515", + "0x530", + "0x531", + "0x61", + "0x64", + "0x66eee", + "0x82", + "0x88bb0", + "0x89", + "0x8f", + "0x92", + "0xa", + "0xa4b1", + "0xa4ba", + "0xa4ec", + "0xa5bf", + "0xaa044c", + "0xaa36a7", + "0xaa37dc", + "0xe708" + ], + "contracts": { + "0x3909": [ + { + "name": "Sonic Testnet", + "signature": "0xc092cc0bcf804f95eb659d281c00586bc72018a242d66fefacdc33a990faf99478c368612277cbbf72aee4a10b7ace6d8666f2c8c4fece9daada40cb360190631b", + "address": "0x63c0c19a282a1B52b07dD5a65b58948A07DAE32B" + } + ], + "0xa4ba": [ + { + "name": "Arbitrum Nova", + "signature": "0x818898e7f90f2f1f47dc7bec74dd683dfcc11efc7025d81f57644d366a3d9e442edb789731045ccb5ba89ee0d84bb517194bb9a097b152922bbd39ffd022ff421c", + "address": "0x63c0c19a282a1B52b07dD5a65b58948A07DAE32B" + } + ], + "0x92": [ + { + "address": "0x63c0c19a282a1B52b07dD5a65b58948A07DAE32B", + "name": "Sonic Mainnet", + "signature": "0x9f2a94332f2b71bff8a772053f47dbb65e26e5286341be0a3c55270d5549351f1dddb7566be0619b0150d42d540b0847cb0acbd0ab118ff608a40a18400834711b" + } + ], + "0x1012": [ + { + "name": "Citrea", + "signature": "0x6818c8c50d25e23dd3810758f3fc45d41c5444bec8fe0983660387414fab00366f6d8a0462b2e8985c16cdff5898d6bf9787e255b1a668d083728b448a5c3f641c", + "address": "0x63c0c19a282a1B52b07dD5a65b58948A07DAE32B" + } + ], + "0x61": [ + { + "signature": "0x80aaf42c70b0b9efdf26e38ced69fce70f6b4f5496e7e59888819c14fb16290301ad049299d99e3650fa1a616a87bb80eb52ae9f02ddd8b53dd6b983275d0eb61b", + "address": "0x63c0c19a282a1B52b07dD5a65b58948A07DAE32B", + "name": "BNB Testnet" + } + ], + "0x19": [ + { + "name": "Cronos", + "signature": "0xa1856ef8c948b0a5204da687d53231848de2a585def9faac05c23c47412615dc476db943010164356b1d2ca8a8a66a8b0ae2d30c11b6b2aaf1cca116f0a333761c", + "address": "0x63c0c19a282a1B52b07dD5a65b58948A07DAE32B" + } + ], + "0x279f": [ + { + "signature": "0x85ec60e9dbac6404b66803b5abace8517ce1325bb6391b7d1ff8ec4433bbe62f4363031873a11ed79364290e196a47830fc36346a9aaf2e44518c1101496983c1b", + "address": "0x63c0c19a282a1B52b07dD5a65b58948A07DAE32B", + "name": "Monad Testnet" + } + ], + "0x2105": [ + { + "name": "Base", + "signature": "0xbdddd2e925cf2cc7e148d3c11b02c917995fba8f3a3dc0b73c0059d029feca88014e723b8a32b2310a60c5b1cc17dfb3ae180b5a39f1d3264f985314b9168e0a1c", + "address": "0x63c0c19a282a1B52b07dD5a65b58948A07DAE32B" + } + ], + "0xa4ec": [ + { + "address": "0x63c0c19a282a1B52b07dD5a65b58948A07DAE32B", + "name": "Celo Mainnet", + "signature": "0x1421ea4d014170a4fc5d0559f267974f4aa095a6e6047b107eff1807afa425774775f796a52a90b767810eade3b5919087bb361651a7b8f4f9679f1f46adb60e1b" + } + ], + "0xe708": [ + { + "name": "Linea", + "signature": "0x8bad472a54f1be8adbcce8badc512045a467d64aa2affce55eb6ecb9b6eda8a142eee478bc99a81580ff52d5daea857eb9e482e457b1e121c0574191e01ec9f21c", + "address": "0x63c0c19a282a1B52b07dD5a65b58948A07DAE32B" + } + ], + "0xa": [ + { + "address": "0x63c0c19a282a1B52b07dD5a65b58948A07DAE32B", + "name": "Optimism", + "signature": "0x60e12ffc04e098bd26a897ed2a974e4e255fc6db3b052fe3a2647372bfbac76f096bf5236510ddc217e12b802e08617cc27292d69ca51b0467ba91c6df74cd7b1c" + } + ], + "0x64": [ + { + "address": "0x63c0c19a282a1B52b07dD5a65b58948A07DAE32B", + "name": "Gnosis", + "signature": "0xd0cfc2959c866e5218faf675f852e0c7021a454064e509d40256c5bec395e300381c19dcbec2e921b2f6d7d9a925a39dee8ea2e8dd8f595633b8dc333d91f1af1b" + } + ], + "0x152": [ + { + "address": "0x63c0c19a282a1B52b07dD5a65b58948A07DAE32B", + "name": "Cronos Testnet", + "signature": "0x8fec0190a311f6ba5dc9df8d76fef3673e6c4081c087f779bca7e3247bb40a5070d393d29c6b268deb3fa231a138b7914b25395cd6dec0fdf4b2b7701975e78b1c" + } + ], + "0x88bb0": [ + { + "name": "Hoodi Testnet", + "signature": "0x23de8eb645a65b08721e5d2194063acead5f5f818474b7884ae767c7aaf9bb9b22233ab92684bc41087f8509e945d96083124ae1919a9357f2ae65267df4f0e21b", + "address": "0x63c0c19a282a1B52b07dD5a65b58948A07DAE32B" + } + ], + "0x13882": [ + { + "address": "0x63c0c19a282a1B52b07dD5a65b58948A07DAE32B", + "name": "Polygon Amoy Testnet", + "signature": "0x472bb78ebb6686ddf0bb2e75265e1f4266cd050f8b498e88f97e9380afd8bfbd169c4d3221ec8845cb81ba7e9ddb7de9b819a15617803e20aee2aaa07664b6c81b" + } + ], + "0x13fb": [ + { + "address": "0x63c0c19a282a1B52b07dD5a65b58948A07DAE32B", + "name": "Citrea Testnet", + "signature": "0xf9e4aa35fc098468212352c2b9662022f9565bd713ca66e634c804f9820b5e0c266d710afba58aed00e5b7e24134dd9b52e2e331076de745137531a6d245a7521b" + } + ], + "0x8f": [ + { + "signature": "0x12d31e58c92cdc29dac8af0405883b3b0ee44156d7fdf5c3c2ffa4138f2461cc20e7f8625431dbd24bb784407d1a1d9bdb75b191a6cf127eac68b67d13bd11e41c", + "address": "0x63c0c19a282a1B52b07dD5a65b58948A07DAE32B", + "name": "Monad" + } + ], + "0xaa37dc": [ + { + "address": "0x63c0c19a282a1B52b07dD5a65b58948A07DAE32B", + "name": "Optimism Sepolia", + "signature": "0xa60cab833af6a8aa2dcc80d5e12d9e1566edb6cdf51c38e7cf43d441dac561007f05643e73e6b00107e18dbf15de98aae14192306276e92d654f62bd7c3023241c" + } + ], + "0x89": [ + { + "name": "Polygon", + "signature": "0x302aa2d59940e88f35d2fa140fe6a1e9dc682218a444a7fb2d88f007fbe7792b2b8d615f5ae1e4f184533a02c47d8ac0f6ba3f591679295dff93c65095c0f03d1b", + "address": "0x63c0c19a282a1B52b07dD5a65b58948A07DAE32B" + } + ], + "0x66eee": [ + { + "address": "0x63c0c19a282a1B52b07dD5a65b58948A07DAE32B", + "name": "Arbitrum Sepolia", + "signature": "0x6fdb53ecf8f575b85ff9895277b1f8e11349970fbb42225fe41587a072bbcef43e8d54303c4e1aa38d44cae9ba2c8bf825e9e138176d6b09a729cd82a14356cf1b" + } + ], + "0x531": [ + { + "name": "Sei", + "signature": "0xde089fc9af662bc4b0f873e4dc79760f6c3539f6f1cf32d9bc46baccf86ebae070a9062436f29ee86d04cc55699b27579f657922a2292ec2f1c5170d587917401b", + "address": "0x63c0c19a282a1B52b07dD5a65b58948A07DAE32B" + } + ], + "0x82": [ + { + "signature": "0x54c423b1af4abbd1fb226e260dddba757acbcd8881e6b55b842c6b839874fa3f0e2f77685389ad5c28e096f12ef22557cebf6a77f6064baa071453a445a4c7d51c", + "address": "0x63c0c19a282a1B52b07dD5a65b58948A07DAE32B", + "name": "Unichain Mainnet" + } + ], + "0x1079": [ + { + "address": "0x63c0c19a282a1B52b07dD5a65b58948A07DAE32B", + "name": "Tempo", + "signature": "0x810496170fb570d0d976c58273ad4a423252bac1f2e10c8a63adbbbfc4e79d2c5d894bae20c28e90a577338e68506138ac6dea142a1e80a31c0c2dd2999efa651b" + } + ], + "0x18c6": [ + { + "address": "0x63c0c19a282a1B52b07dD5a65b58948A07DAE32B", + "name": "MegaEth Testnet", + "signature": "0x6743135a8dfc8f58133d827b4997bc5316c8eb92883d2704a30b1d8a7bf494ce226b523e5f85a681eb5de8349c9564e62d389876d0e5fe5cc06fb9412d9d1cb61b" + } + ], + "0x1": [ + { + "signature": "0xffb37facfedf12f1e98b56203de1c855391b791a20ee361234c546f4b50eb11853283cfc311419049f0325ad0a806ec232cc519073e3b5d4ad59ff331964d2e71b", + "address": "0x63c0c19a282a1B52b07dD5a65b58948A07DAE32B", + "name": "Mainnet" + } + ], + "0x38": [ + { + "address": "0x63c0c19a282a1B52b07dD5a65b58948A07DAE32B", + "name": "BNB", + "signature": "0x28ae371904b3ba71344e426c8de0e2cee0b8529a9510c059b412671655881ad646b8cf544342a5f8e0753eda83221e14e3c9dae5435417401f5fee8ee1d63dce1b" + } + ], + "0xa4b1": [ + { + "signature": "0xc3be82057efec197d92b0cbb7cef9d50dba0345646524687a3ae7235a8fcb1706ba79f197d45fcf4c6cfb5808ef70258c5f6bb29b7e3553a4b9660692eb5e81d1b", + "address": "0x63c0c19a282a1B52b07dD5a65b58948A07DAE32B", + "name": "Arbitrum One" + } + ], + "0xaa36a7": [ + { + "signature": "0x1aba1c0dafadab6663efdd6086764a9b9fa5ab5c002e88ebae85edea162fbc425c398b2b93afdc036503f12361c05a7ff0b409ee523d5277e0b4d0a840679e591c", + "address": "0x63c0c19a282a1B52b07dD5a65b58948A07DAE32B", + "name": "Sepolia - Official" + }, + { + "address": "0xCd8D6C5554e209Fbb0deC797C6293cf7eAE13454", + "name": "Sepolia - Testing", + "signature": "0x016cf109489c415ba28e695eb3cb06ac46689c5c49e2aba101d7ec2f68c890282563b324f5c8df5e0536994451825aa235438b7346e8c18b4e64161d990781891c" + } + ], + "0x515": [ + { + "name": "Unichain Sepolia", + "signature": "0x64487330691a05700a2321ee1db4092adce9590e7aded6e489df024838ecec734c935d182f74883818cb7659d5c784163573afdf8221252fa68d960cbe1c312f1b", + "address": "0x63c0c19a282a1B52b07dD5a65b58948A07DAE32B" + } + ], + "0x530": [ + { + "address": "0x63c0c19a282a1B52b07dD5a65b58948A07DAE32B", + "name": "Sei Testnet", + "signature": "0x91135fcd7bfb9e2456c227ff12905128c3854db36775278d47b96c3c669f730c4063e3a62d94884617769bbad2868f35d725cb3b611d9bd1231bceb5967724711c" + } + ], + "0x138c5": [ + { + "address": "0x63c0c19a282a1B52b07dD5a65b58948A07DAE32B", + "name": "Berachain Testnet", + "signature": "0x66940bcb2c4b95ec2c1c1024fee1e3a8e51c8f072a52a9f0252a793604c8a6ba58ac3153d4dd041873d33eec349450c4a9acd51ddaed117bee448ed7a388208c1b" + } + ], + "0x14a34": [ + { + "address": "0x63c0c19a282a1B52b07dD5a65b58948A07DAE32B", + "name": "Base Sepolia", + "signature": "0xaed94ac035e745629423c547200eb2411fd7194d832a6b4cf459d3e3d34a6b62124e88640a0bf623146bdef63b0ce1c8797bd2a6c8357fab86c8be466744f55d1c" + } + ], + "0xa5bf": [ + { + "signature": "0x2413338e5c47c56853195d1870988d721ec502c78e54fe5b98468a401538b942237a2769461ffbfa8269936bf309243d5b0d69f7114938653469c4d8225715ee1c", + "address": "0x63c0c19a282a1B52b07dD5a65b58948A07DAE32B", + "name": "Tempo Testnet" + } + ], + "0xaa044c": [ + { + "name": "Celo Sepolia", + "signature": "0x1590458cdfa10225e4fe734ed44deec95ac1887c877e63deb5ad35b41025c9ef2f33666cdd2c189b1999a78072ab9f8f122d93a52eaf12687fb2ff5b74d8de9f1c", + "address": "0x63c0c19a282a1B52b07dD5a65b58948A07DAE32B" + } + ], + "0x138de": [ + { + "name": "Berachain", + "signature": "0x2c2037ddedcdfb9b7d8ea7c546259eef371a86b0e3610192eb15ece0114c59d86134791cd9e9df4208bbbdc83776d80b30b1fea6bf1a05bb072575217492497a1b", + "address": "0x63c0c19a282a1B52b07dD5a65b58948A07DAE32B" + } + ], + "0x27d8": [ + { + "address": "0x63c0c19a282a1B52b07dD5a65b58948A07DAE32B", + "name": "Chiado", + "signature": "0x0ff531d6afcc191c3b3bdffc1596d9ce8d1d52fa500ea2097c0823820a66f97963b88b646d4d4edbc0f781127d7985b87132d89c62c3cb4ad42848ce289645fa1b" + } + ] + }, + "dev": true + }, + "confirmations_enforced_simulations": { + "enabled": false, + "slippage": 9.5 + }, + "confirmations_gas_buffer": { + "included": 1.5, + "perChainConfig": { + "0xa4b1": { + "base": 1.2, + "name": "arbitrum" + }, + "0x10e6": { + "name": "megaeth", + "base": 1.3 + }, + "0x18c6": { + "base": 1.3, + "name": "megaeth" + }, + "0x18c7": { + "base": 1.3, + "name": "megaeth" + }, + "0x2105": { + "name": "base", + "eip7702": 1.3 + }, + "0x38": { + "name": "bnb", + "eip7702": 1.3 + }, + "0xa": { + "eip7702": 1.3, + "name": "optimism" + } + }, + "default": 1, + "dev": true + }, + "confirmations_incoming_transactions": { + "useBackendWebSocketService": false, + "pollingIntervalMs": 60000 + }, + "confirmations_pay": { + "slippage": 0.005, + "name": "dev", + "relayQuoteUrl": "https://intents.dev-api.cx.metamask.io/relay/quote" + }, + "confirmations_pay_dapps": { + "enabled": true + }, + "confirmations_pay_extended": { + "payStrategies": { + "relay": { + "gaslessEnabled": true + } + } + }, + "confirmations_pay_post_quote": { + "versions": { + "13.32.0": { + "default": { + "tokens": {}, + "enabled": true + }, + "overrides": { + "perpsWithdraw": { + "enabled": true, + "tokens": { + "0x2105": [ + "0x0000000000000000000000000000000000000000", + "0x833589fCD6eDb6E08f4c7C32D4f71b54bdA02913" + ], + "0x38": [ + "0x0000000000000000000000000000000000000000", + "0x55d398326f99059fF775485246999027B3197955", + "0x8AC76a51cc950d9822D68b83fE1Ad97B32Cd580d" + ], + "0x89": [ + "0x0000000000000000000000000000000000001010", + "0x3c499c542cEF5E3811e1192ce70d8cC03d5c3359", + "0xc2132d05d31c914a87c6611c10748aeb04b58e8f" + ], + "0xa4b1": [ + "0x0000000000000000000000000000000000000000", + "0xaf88d065e77c8cC2239327C5EDb3A432268e5831", + "0xFd086bC7CD5C481DCC9C85ebE478A1C0b69FCbb9" + ], + "0xe708": [ + "0x0000000000000000000000000000000000000000", + "0xacA92E438df0B2401fF60dA7E4337B687a2435DA" + ], + "0x1": [ + "0x0000000000000000000000000000000000000000", + "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "0xdAC17F958D2ee523a2206206994597C13D831ec7", + "0xacA92E438df0B2401fF60dA7E4337B687a2435DA", + "0x2260FAC5E5542a773Aa44fBCfeDf7C193bc2C599" + ] + } + } + } + } + } + }, + "confirmations_pay_tokens": { + "dev": true, + "versions": { + "13.31.0": { + "preferredTokens": { + "overrides": { + "perpsWithdraw": [ + { + "name": "mUSD", + "address": "0xacA92E438df0B2401fF60dA7E4337B687a2435DA", + "chainId": "0x1" + } + ] + }, + "default": {} + } + } + } + }, + "confirmations_transactions": { + "gasEstimateFallback": { + "perChainConfig": { + "0x279f": { + "fixed": 1000000 + } + } + }, + "gasFeeRandomisation": { + "randomisedGasFeeDigits": { + "0x2105": 5 + } + }, + "timeoutAttempts": { + "default": 10 + }, + "useWebsockets": true, + "acceleratedPolling": { + "perChainConfig": { + "0x11c3": { + "name": "TRUMPCHAIN", + "blockTime": 250, + "chainId": "4547", + "countMax": 15, + "intervalMs": 500 + }, + "0x27bc86aa": { + "intervalMs": 500, + "name": "DEGEN_CHAIN", + "blockTime": 250, + "chainId": "666666666", + "countMax": 15 + }, + "0x34fb5e38": { + "chainId": "888888888", + "countMax": 10, + "intervalMs": 1300, + "name": "ANXIENT8", + "blockTime": 2000 + }, + "0xb5f": { + "blockTime": 250, + "chainId": "2911", + "countMax": 15, + "intervalMs": 500, + "name": "HYTOPIA" + }, + "0x88b": { + "countMax": 15, + "intervalMs": 500, + "name": "GAME7", + "blockTime": 250, + "chainId": "2187" + }, + "0x88bb0": { + "blockTime": 12000, + "chainId": "560048", + "countMax": 10, + "intervalMs": 3000, + "name": "HOODI" + }, + "0x3e7": { + "intervalMs": 700, + "name": "HYPEREVM", + "blockTime": 1000, + "chainId": "999", + "countMax": 10 + }, + "0x18232": { + "countMax": 10, + "intervalMs": 2000, + "name": "PLUME", + "blockTime": 3000, + "chainId": "98866" + }, + "0x8279": { + "countMax": 15, + "intervalMs": 500, + "name": "SLINGSHOTDAO", + "blockTime": 250, + "chainId": "33401" + }, + "0x9c4401": { + "intervalMs": 500, + "name": "ALIENX_TESTNET", + "blockTime": 250, + "chainId": "10241025", + "countMax": 15 + }, + "0x13f8": { + "chainId": "5112", + "countMax": 10, + "intervalMs": 1300, + "name": "HAM", + "blockTime": 2000 + }, + "0xe35": { + "intervalMs": 3000, + "name": "BOTANIX", + "blockTime": 5667, + "chainId": "3637", + "countMax": 10 + }, + "0xaa36a7": { + "name": "ETHEREUM_SEPOLIA", + "blockTime": 16000, + "chainId": "11155111", + "countMax": 10, + "intervalMs": 3000 + }, + "0x142b6": { + "chainId": "82614", + "countMax": 15, + "intervalMs": 500, + "name": "VEMP", + "blockTime": 250 + }, + "0x15b43": { + "name": "UNITE", + "blockTime": 250, + "chainId": "88899", + "countMax": 15, + "intervalMs": 500 + }, + "0x64": { + "name": "GNOSIS", + "blockTime": 8333, + "chainId": "100", + "countMax": 10, + "intervalMs": 3000 + }, + "0xa3c3": { + "blockTime": 250, + "chainId": "41923", + "countMax": 15, + "intervalMs": 500, + "name": "EDUCHAIN" + }, + "0xbde31": { + "countMax": 15, + "intervalMs": 500, + "name": "WINR", + "blockTime": 250, + "chainId": "777777" + }, + "0x134b3cf": { + "intervalMs": 500, + "name": "DERI", + "blockTime": 250, + "chainId": "20231119", + "countMax": 15 + }, + "0x82750": { + "name": "SCROLL", + "blockTime": 2333, + "chainId": "534352", + "countMax": 10, + "intervalMs": 1600 + }, + "0x7ea": { + "chainId": "2026", + "countMax": 10, + "intervalMs": 1300, + "name": "EDGELESS", + "blockTime": 2000 + }, + "0xa9": { + "intervalMs": 1300, + "name": "MANTA", + "blockTime": 2000, + "chainId": "169", + "countMax": 10 + }, + "0x1388": { + "blockTime": 2000, + "chainId": "5000", + "countMax": 10, + "intervalMs": 1300, + "name": "MANTLE" + }, + "0x813df": { + "blockTime": 250, + "chainId": "529375", + "countMax": 15, + "intervalMs": 500, + "name": "LAYER_K" + }, + "0xa0c71fd": { + "name": "BLAST_SEPOLIA", + "blockTime": 2000, + "chainId": "168587773", + "countMax": 10, + "intervalMs": 1300 + }, + "0x52415249": { + "chainId": "1380012617", + "countMax": 15, + "intervalMs": 500, + "name": "RARIBLE", + "blockTime": 250 + }, + "0x6c1": { + "intervalMs": 500, + "name": "REYA", + "blockTime": 250, + "chainId": "1729", + "countMax": 15 + }, + "0x1": { + "chainId": "1", + "countMax": 10, + "intervalMs": 3000, + "name": "ETHEREUM", + "blockTime": 12000 + }, + "0x13c23": { + "chainId": "80931", + "countMax": 15, + "intervalMs": 500, + "name": "FORTA", + "blockTime": 250 + }, + "0x4268": { + "chainId": "17000", + "countMax": 10, + "intervalMs": 2700, + "name": "ETHEREUM_HOLESKY", + "blockTime": 4000 + }, + "0x13bf8": { + "intervalMs": 500, + "name": "ONYX", + "blockTime": 250, + "chainId": "80888", + "countMax": 15 + }, + "0x128ca": { + "blockTime": 250, + "chainId": "75978", + "countMax": 15, + "intervalMs": 500, + "name": "FUSION" + }, + "0xab5": { + "intervalMs": 500, + "name": "ABSTRACT", + "blockTime": 667, + "chainId": "2741", + "countMax": 15 + }, + "0xb67d2": { + "chainId": "747474", + "countMax": 10, + "intervalMs": 700, + "name": "KATANA", + "blockTime": 1000 + }, + "0xca74": { + "chainId": "51828", + "countMax": 15, + "intervalMs": 500, + "name": "CHAINBOUNTY", + "blockTime": 250 + }, + "0x46f": { + "name": "LISK", + "blockTime": 2000, + "chainId": "1135", + "countMax": 10, + "intervalMs": 1300 + }, + "0xcc": { + "countMax": 10, + "intervalMs": 700, + "name": "OPBNB", + "blockTime": 1000, + "chainId": "204" + }, + "0xe705": { + "blockTime": 2000, + "chainId": "59141", + "countMax": 10, + "intervalMs": 1300, + "name": "LINEA_SEPOLIA" + }, + "0x171": { + "blockTime": 10000, + "chainId": "369", + "countMax": 10, + "intervalMs": 3000, + "name": "PULSECHAIN" + }, + "0x1713c": { + "intervalMs": 500, + "name": "IDEX", + "blockTime": 250, + "chainId": "94524", + "countMax": 15 + }, + "0x28c58": { + "chainId": "167000", + "countMax": 10, + "intervalMs": 3000, + "name": "TAIKO", + "blockTime": 8000 + }, + "0x28c61": { + "chainId": "167009", + "countMax": 10, + "intervalMs": 2700, + "name": "TAIKO_HEKLA", + "blockTime": 4000 + }, + "0x3023": { + "chainId": "12323", + "countMax": 15, + "intervalMs": 500, + "name": "HUDDLE01", + "blockTime": 250 + }, + "0x2105": { + "countMax": 10, + "intervalMs": 1300, + "name": "BASE", + "blockTime": 2000, + "chainId": "8453" + }, + "0x8173": { + "chainId": "33139", + "countMax": 15, + "intervalMs": 500, + "name": "APECHAIN", + "blockTime": 250 + }, + "0x1142d": { + "blockTime": 250, + "chainId": "70701", + "countMax": 15, + "intervalMs": 500, + "name": "PROOF_OF_PLAY_BOSS" + }, + "0x2ba": { + "name": "MATCHAIN", + "blockTime": 2000, + "chainId": "698", + "countMax": 10, + "intervalMs": 1300 + }, + "0x13e31": { + "chainId": "81457", + "countMax": 10, + "intervalMs": 1300, + "name": "BLAST", + "blockTime": 2000 + }, + "0xe49b1": { + "chainId": "936369", + "countMax": 15, + "intervalMs": 500, + "name": "LOGX", + "blockTime": 250 + }, + "0x2eb": { + "blockTime": 667, + "chainId": "747", + "countMax": 15, + "intervalMs": 500, + "name": "FLOW" + }, + "0xb9": { + "blockTime": 2000, + "chainId": "185", + "countMax": 10, + "intervalMs": 1300, + "name": "MINT" + }, + "0x42af": { + "blockTime": 250, + "chainId": "17071", + "countMax": 15, + "intervalMs": 500, + "name": "ONCHAIN_POINTS" + }, + "0x38": { + "chainId": "56", + "countMax": 10, + "intervalMs": 700, + "name": "BNB", + "blockTime": 1000 + }, + "0x99797f": { + "chainId": "10058111", + "countMax": 15, + "intervalMs": 500, + "name": "SPOTLIGHT", + "blockTime": 250 + }, + "0x1b59": { + "blockTime": 3667, + "chainId": "7001", + "countMax": 10, + "intervalMs": 2400, + "name": "ZETACHAIN_TESTNET" + }, + "0x14a34": { + "chainId": "84532", + "countMax": 15, + "intervalMs": 500, + "name": "BASE_SEPOLIA_TESTNET", + "blockTime": 250 + }, + "0x98967f": { + "intervalMs": 500, + "name": "FLUENCE", + "blockTime": 250, + "chainId": "9999999", + "countMax": 15 + }, + "0x2f0": { + "blockTime": 250, + "chainId": "752", + "countMax": 15, + "intervalMs": 500, + "name": "RIVALZ" + }, + "0x2780b": { + "blockTime": 250, + "chainId": "161803", + "countMax": 15, + "intervalMs": 500, + "name": "EVENTUM" + }, + "0xa": { + "countMax": 10, + "intervalMs": 1300, + "name": "OPTIMISM", + "blockTime": 2000, + "chainId": "10" + }, + "0x279f": { + "chainId": "10143", + "countMax": 15, + "intervalMs": 500, + "name": "MONAD_TESTNET", + "blockTime": 500 + }, + "0x515": { + "blockTime": 2000, + "chainId": "1301", + "countMax": 10, + "intervalMs": 1300, + "name": "UNICHAIN_SEPOLIA" + }, + "0x138de": { + "chainId": "80094", + "countMax": 10, + "intervalMs": 1300, + "name": "BERACHAIN", + "blockTime": 2000 + }, + "0x61": { + "chainId": "97", + "countMax": 15, + "intervalMs": 500, + "name": "BNB_TESTNET", + "blockTime": 667 + }, + "0x32": { + "name": "XDC", + "blockTime": 2000, + "chainId": "50", + "countMax": 10, + "intervalMs": 1300 + }, + "0x8f": { + "chainId": "143", + "countMax": 15, + "intervalMs": 500, + "name": "MONAD", + "blockTime": 500 + }, + "0xa33fc": { + "blockTime": 250, + "chainId": "668668", + "countMax": 15, + "intervalMs": 500, + "name": "CONWAI" + }, + "0xa1ef": { + "name": "ALEPH_ZERO", + "blockTime": 250, + "chainId": "41455", + "countMax": 15, + "intervalMs": 500 + }, + "0x15eb": { + "intervalMs": 700, + "name": "OPBNB_TESTNET", + "blockTime": 1000, + "chainId": "5611", + "countMax": 10 + }, + "0xd7cc": { + "chainId": "55244", + "countMax": 15, + "intervalMs": 500, + "name": "SUPERPOSITION", + "blockTime": 250 + }, + "0x2a": { + "countMax": 10, + "intervalMs": 2700, + "name": "LUKSO", + "blockTime": 4000, + "chainId": "42" + }, + "0xe708": { + "blockTime": 2000, + "chainId": "59144", + "countMax": 10, + "intervalMs": 1300, + "name": "LINEA" + }, + "0xb1c9": { + "chainId": "45513", + "countMax": 15, + "intervalMs": 500, + "name": "BLESSNET", + "blockTime": 250 + }, + "0x62ef": { + "intervalMs": 500, + "name": "EVERCLEAR", + "blockTime": 250, + "chainId": "25327", + "countMax": 15 + }, + "0x16fd8": { + "countMax": 15, + "intervalMs": 500, + "name": "LUMITERRA", + "blockTime": 250, + "chainId": "94168" + }, + "0xe34": { + "blockTime": 6000, + "chainId": "3636", + "countMax": 10, + "intervalMs": 3000, + "name": "BOTANIX_TESTNET" + }, + "0x123": { + "blockTime": 2000, + "chainId": "291", + "countMax": 10, + "intervalMs": 1300, + "name": "ORDERLY" + }, + "0x144": { + "chainId": "324", + "countMax": 10, + "intervalMs": 700, + "name": "ZKSYNC", + "blockTime": 1000 + }, + "0x13881": { + "name": "POLYGON_MUMBAI", + "blockTime": 2000, + "chainId": "80001", + "countMax": 10, + "intervalMs": 1300 + }, + "0x1142c": { + "chainId": "70700", + "countMax": 15, + "intervalMs": 500, + "name": "PROOF_OF_PLAY_APEX", + "blockTime": 250 + }, + "0xa86a": { + "chainId": "43114", + "countMax": 10, + "intervalMs": 900, + "name": "AVALANCHE", + "blockTime": 1333 + }, + "0x1331": { + "countMax": 15, + "intervalMs": 500, + "name": "API3", + "blockTime": 250, + "chainId": "4913" + }, + "0x2b2": { + "countMax": 10, + "intervalMs": 1300, + "name": "REDSTONE", + "blockTime": 2000, + "chainId": "690" + }, + "0x9c4400": { + "intervalMs": 500, + "name": "ALIENX", + "blockTime": 250, + "chainId": "10241024", + "countMax": 15 + }, + "0x15a9": { + "countMax": 15, + "intervalMs": 500, + "name": "DUCK", + "blockTime": 250, + "chainId": "5545" + }, + "0x1b58": { + "intervalMs": 2400, + "name": "ZETACHAIN", + "blockTime": 3667, + "chainId": "7000", + "countMax": 10 + }, + "0x82": { + "blockTime": 2000, + "chainId": "130", + "countMax": 10, + "intervalMs": 1300, + "name": "UNICHAIN" + }, + "0x531": { + "countMax": 15, + "intervalMs": 500, + "name": "SEI", + "blockTime": 667, + "chainId": "1329" + }, + "0x868b": { + "countMax": 10, + "intervalMs": 1300, + "name": "MODE", + "blockTime": 2000, + "chainId": "34443" + }, + "0xe8": { + "name": "LENS", + "blockTime": 27333, + "chainId": "232", + "countMax": 10, + "intervalMs": 3000 + }, + "0x725": { + "chainId": "1829", + "countMax": 15, + "intervalMs": 500, + "name": "PLAYBLOCK", + "blockTime": 250 + }, + "0x316b8": { + "intervalMs": 500, + "name": "BLOCKFIT", + "blockTime": 250, + "chainId": "202424", + "countMax": 15 + }, + "0xc350": { + "name": "CITRONUS", + "blockTime": 250, + "chainId": "50000", + "countMax": 15, + "intervalMs": 500 + }, + "0x163e7": { + "name": "HENEZ", + "blockTime": 250, + "chainId": "91111", + "countMax": 15, + "intervalMs": 500 + }, + "0x7cc": { + "chainId": "1996", + "countMax": 15, + "intervalMs": 500, + "name": "SANKO", + "blockTime": 250 + }, + "0x74c": { + "blockTime": 2000, + "chainId": "1868", + "countMax": 10, + "intervalMs": 1300, + "name": "SONEIUM" + }, + "0xa4b1": { + "blockTime": 250, + "chainId": "42161", + "countMax": 15, + "intervalMs": 500, + "name": "ARBITRUM_ONE" + }, + "0xe4": { + "countMax": 15, + "intervalMs": 500, + "name": "MIND", + "blockTime": 250, + "chainId": "228" + }, + "0x9dd": { + "intervalMs": 500, + "name": "INEVM", + "blockTime": 250, + "chainId": "2525", + "countMax": 15 + }, + "0x1042": { + "countMax": 15, + "intervalMs": 500, + "name": "SX_ROLLUP", + "blockTime": 250, + "chainId": "4162" + }, + "0xd0d0": { + "blockTime": 250, + "chainId": "53456", + "countMax": 15, + "intervalMs": 500, + "name": "DODO" + }, + "0x76adf1": { + "intervalMs": 1300, + "name": "ZORA", + "blockTime": 2000, + "chainId": "7777777", + "countMax": 10 + }, + "0x659": { + "blockTime": 250, + "chainId": "1625", + "countMax": 15, + "intervalMs": 500, + "name": "GRAVITY" + }, + "0xfee": { + "countMax": 15, + "intervalMs": 500, + "name": "COMETH", + "blockTime": 250, + "chainId": "4078" + }, + "0x343b": { + "name": "IMMUTABLE", + "blockTime": 2000, + "chainId": "13371", + "countMax": 10, + "intervalMs": 1300 + }, + "0x13882": { + "countMax": 10, + "intervalMs": 1300, + "name": "POLYGON_AMOY", + "blockTime": 2000, + "chainId": "80002" + }, + "0x2272": { + "name": "CLINK", + "blockTime": 250, + "chainId": "8818", + "countMax": 15, + "intervalMs": 500 + }, + "0xa1337": { + "blockTime": 250, + "chainId": "660279", + "countMax": 15, + "intervalMs": 500, + "name": "XAI" + }, + "0x18c6": { + "countMax": 10, + "intervalMs": 2700, + "name": "MEGAETH_TESTNET", + "blockTime": 4000, + "chainId": "6342" + }, + "0x89": { + "intervalMs": 1300, + "name": "POLYGON", + "blockTime": 2000, + "chainId": "137", + "countMax": 10 + }, + "0xf4290": { + "name": "SCOREKOUNT", + "blockTime": 250, + "chainId": "1000080", + "countMax": 15, + "intervalMs": 500 + }, + "0x1ecf": { + "name": "KINTO", + "blockTime": 250, + "chainId": "7887", + "countMax": 15, + "intervalMs": 500 + }, + "0x18c7": { + "blockTime": 4000, + "chainId": "6343", + "countMax": 10, + "intervalMs": 2700, + "name": "MEGAETH_TESTNET" + }, + "0x5d979": { + "intervalMs": 500, + "name": "CHEESE", + "blockTime": 250, + "chainId": "383353", + "countMax": 15 + }, + "0xaa37dc": { + "countMax": 10, + "intervalMs": 1300, + "name": "OPTIMISM_SEPOLIA", + "blockTime": 2000, + "chainId": "11155420" + }, + "0x16876": { + "name": "MIRACLE", + "blockTime": 250, + "chainId": "92278", + "countMax": 15, + "intervalMs": 500 + }, + "0x19": { + "chainId": "25", + "countMax": 15, + "intervalMs": 500, + "name": "CRONOS", + "blockTime": 667 + }, + "0xa867": { + "countMax": 10, + "intervalMs": 800, + "name": "HEMI", + "blockTime": 1200, + "chainId": "43111" + }, + "0x8274f": { + "blockTime": 3333, + "chainId": "534351", + "countMax": 10, + "intervalMs": 2200, + "name": "SCROLL_SEPOLIA" + }, + "0x1406f40": { + "chainId": "21000000", + "countMax": 15, + "intervalMs": 500, + "name": "CORN", + "blockTime": 250 + }, + "0x34a1": { + "name": "IMMUTABLE_TESTNET", + "blockTime": 2000, + "chainId": "13473", + "countMax": 10, + "intervalMs": 1300 + }, + "0x1b254": { + "name": "REAL", + "blockTime": 250, + "chainId": "111188", + "countMax": 15, + "intervalMs": 500 + }, + "0xfc": { + "blockTime": 2000, + "chainId": "252", + "countMax": 10, + "intervalMs": 1300, + "name": "FRAXTAL" + }, + "0xfa": { + "blockTime": 4000, + "chainId": "250", + "countMax": 10, + "intervalMs": 2700, + "name": "FANTOM" + }, + "0x13a43": { + "name": "GEO_GENESIS", + "blockTime": 250, + "chainId": "80451", + "countMax": 15, + "intervalMs": 500 + }, + "0x6f0": { + "blockTime": 667, + "chainId": "1776", + "countMax": 15, + "intervalMs": 500, + "name": "INJECTIVE" + }, + "0x3bd": { + "countMax": 10, + "intervalMs": 1300, + "name": "LYRA", + "blockTime": 2000, + "chainId": "957" + }, + "0x974": { + "blockTime": 250, + "chainId": "2420", + "countMax": 15, + "intervalMs": 500, + "name": "DOGELON" + }, + "0xa6": { + "name": "OMNI", + "blockTime": 1333, + "chainId": "166", + "countMax": 10, + "intervalMs": 900 + }, + "0x7c5": { + "countMax": 15, + "intervalMs": 500, + "name": "LYDIA", + "blockTime": 250, + "chainId": "1989" + }, + "0x2611": { + "intervalMs": 700, + "name": "PLASMA", + "blockTime": 1000, + "chainId": "9745", + "countMax": 10 + }, + "0xa4ba": { + "countMax": 15, + "intervalMs": 500, + "name": "ARBITRUM_NOVA", + "blockTime": 250, + "chainId": "42170" + }, + "0x13a": { + "countMax": 10, + "intervalMs": 3000, + "name": "FILECOIN", + "blockTime": 30000, + "chainId": "314" + } + }, + "defaultCountMax": 10, + "defaultIntervalMs": 3000 + }, + "batchSizeLimit": 10, + "dev": true + }, + "contentfulCarouselEnabled": true, + "coreExtensionUxCeux1024AbtestReferralUi": [ + { + "scope": { + "value": 0.5, + "type": "threshold" + }, + "name": "control" + }, + { + "scope": { + "type": "threshold", + "value": 1 + }, + "name": "treatment" + } + ], + "dappSwapMetrics": { + "bridge_quote_fees": 250, + "enabled": true, + "origins": ["https://app.uniswap.org", "https://metamask.github.io"] + }, + "dappSwapQa": { + "enabled": true + }, + "dappSwapUi": { + "enabled": true, + "threshold": 0.01 + }, + "earnMerklCampaignClaiming": { + "enabled": true, + "minimumVersion": "13.23.0" + }, + "earnMusdConversionAssetOverviewCtaEnabled": { + "enabled": true, + "minimumVersion": "13.23.0" + }, + "earnMusdConversionCtaTokens": { + "0x1": ["USDC", "USDT", "DAI"], + "0xe708": ["USDC", "USDT", "DAI"] + }, + "earnMusdConversionFlowEnabled": { + "enabled": true, + "minimumVersion": "13.23.0" + }, + "earnMusdConversionGeoBlockedCountries": { + "blockedRegions": ["GB"] + }, + "earnMusdConversionMinAssetBalanceRequired": 0.01, + "earnMusdConversionTokenListItemCtaEnabled": { + "minimumVersion": "13.23.0", + "enabled": true + }, + "earnMusdConvertibleTokensAllowlist": { + "0x1": ["USDC", "USDT", "DAI"], + "0xe708": ["USDC", "USDT", "DAI"] + }, + "earnMusdConvertibleTokensBlocklist": {}, + "earnMusdCtaEnabled": { + "enabled": true, + "minimumVersion": "13.23.0" + }, + "enableMultichainAccounts": { + "featureVersion": "1", + "minimumVersion": "13.0.0", + "enabled": true + }, + "enableMultichainAccountsState2": { + "enabled": true, + "featureVersion": "2", + "minimumVersion": "13.5.0" + }, + "enabledAdvancedPermissions": { + "permissions": [ + "native-token-stream", + "native-token-periodic", + "erc20-token-stream", + "erc20-token-periodic", + "erc20-token-revocation", + "native-token-allowance", + "erc20-token-allowance", + "token-approval-revocation" + ] + }, + "extensionPlatformAutoReloadAfterUpdate": true, + "extensionSignedDeepLinkWarningEnabled": [ + { + "value": true, + "name": "Warning enabled", + "scope": { + "value": 1, + "type": "threshold" + } + } + ], + "extensionUpdatePromptMinimumVersion": "12.18.0", + "extensionUxDefaultAddressVersioned": { + "enabled": true, + "minimumVersion": "13.28.0" + }, + "extensionUxDefiReferral": true, + "extensionUxDefiReferralPartners": { + "hyperliquid": true, + "asterdex": true, + "gmx": true + }, + "extensionUxPna25": true, + "extensionUxSidepanel": false, + "extensionUxTokenManagementFilter": { + "minimumVersion": "13.33.0", + "enabled": true + }, + "extensionSkipTransactionStatusPage": { + "minimumVersion": "13.31.0", + "enabled": true + }, + "extensionTransactionLabels": true, + "gasFeesSponsoredNetwork": { + "0x38": false, + "0x531": true, + "0x8f": true + }, + "isSolanaBuyable": false, + "neNetworkDiscoverButton": { + "0x531": true, + "0x8f": false, + "0xe708": true, + "solana:5eykt4UsFv8P8NJdTREpY1vzqKqZKvdp": true, + "tron:728126428": true + }, + "nonZeroUnusedApprovals": [ + "https://aerodrome.finance", + "https://www.aerodrome.finance", + "https://app.bio.xyz", + "https://app.ethena.fi", + "https://app.euler.finance", + "https://app.rocketx.exchange", + "https://app.seer.pm", + "https://app.sky.money", + "https://app.spark.fi", + "https://app.tea-fi.com", + "https://app.uniswap.org", + "https://bridge.gravity.xyz", + "https://dev-relay-sdk.vercel.app", + "https://evm.ekubo.org", + "https://flaunch.gg", + "https://fluid.io", + "https://flyingtulip.com", + "https://jumper.exchange", + "https://jumper.xyz", + "https://linea.build", + "https://pancakeswap.finance", + "https://privacypools.com", + "https://relay.link", + "https://revoke.cash", + "https://staging.relay.link", + "https://superbridge.app", + "https://swap.defillama.com", + "https://toros.finance", + "https://velodrome.finance", + "https://walletstats.io", + "https://www.bungee.exchange", + "https://www.dev.relay.link", + "https://www.fxhash.xyz", + "https://www.hydrex.fi", + "https://www.relay.link", + "https://yearn.fi", + "https://app.teller.org", + "https://kalshi.com", + "https://app.carbondefi.xyz", + "https://celo.carbondefi.xyz", + "https://sei.carbondefi.xyz", + "https://matcha.xyz", + "https://app.trysweep.finance" + ], + "perpsEnabled": true, + "perpsEnabledVersion": { + "enabled": true, + "minimumVersion": "13.30.0" + }, + "perpsHip3AllowlistMarkets": "", + "perpsHip3BlocklistMarkets": "", + "perpsPerpTradingGeoBlockedCountriesV2": { + "blockedRegions": [] + }, + "platformSplitStateGradualRollout": [ + { + "value": { + "maxNetworks": 5, + "enabled": 1, + "maxAccounts": 1 + }, + "name": "feature is ON", + "scope": { + "type": "threshold", + "value": 0.01 + } + }, + { + "name": "feature is OFF", + "scope": { + "type": "threshold", + "value": 1 + }, + "value": { + "enabled": 0, + "maxAccounts": 0, + "maxNetworks": 0 + } + } + ], + "rewardsBitcoinEnabledExtension": false, + "rewardsEnabled": { + "minimumVersion": "13.32.0", + "enabled": true + }, + "rewardsOnboardingEnabled": { + "enabled": false, + "minimumVersion": "0.0.0" + }, + "rewardsTronEnabledExtension": false, + "rwaTokensEnabled": true, + "sendRedesign": { + "enabled": true + }, + "settingsRedesign": false, + "smartTransactionsNetworks": { + "0x2105": { + "extensionActive": true, + "gaslessBridgeWith7702Enabled": true, + "sentinelUrl": "https://tx-sentinel-base-mainnet.api.cx.metamask.io" + }, + "0x8f": { + "sentinelUrl": "https://tx-sentinel-monad-mainnet.api.cx.metamask.io", + "extensionActive": false + }, + "0x89": { + "extensionActive": true, + "gaslessBridgeWith7702Enabled": true, + "sentinelUrl": "https://tx-sentinel-polygon-mainnet.api.cx.metamask.io" + }, + "default": { + "extensionActive": false, + "extensionReturnTxHashAsapBatch": true, + "variation": "dev", + "extensionReturnTxHashAsap": true, + "expectedDeadline": 45, + "batchStatusPollingInterval": 1000, + "extensionSkipSmartTransactionStatusPage": false, + "gaslessBridgeWith7702Enabled": false, + "maxDeadline": 150 + }, + "0xa4b1": { + "extensionActive": true, + "gaslessBridgeWith7702Enabled": true, + "sentinelUrl": "https://tx-sentinel-arbitrum-mainnet.api.cx.metamask.io" + }, + "0xe708": { + "sentinelUrl": "https://tx-sentinel-linea-mainnet.api.cx.metamask.io", + "extensionActive": true, + "gaslessBridgeWith7702Enabled": true + }, + "0x38": { + "extensionActive": true, + "gaslessBridgeWith7702Enabled": false, + "sentinelUrl": "https://tx-sentinel-bsc-mainnet.api.cx.metamask.io" + }, + "0x1": { + "maxDeadline": 160, + "sentinelUrl": "https://tx-sentinel-ethereum-mainnet.api.cx.metamask.io", + "expectedDeadline": 45, + "extensionActive": true, + "gaslessBridgeWith7702Enabled": false + }, + "0xa": { + "extensionActive": false, + "sentinelUrl": "https://tx-sentinel-optimism-mainnet.api.cx.metamask.io" + }, + "0x144": { + "extensionActive": false, + "sentinelUrl": "https://tx-sentinel-zksync-mainnet.api.cx.metamask.io" + }, + "0x531": { + "sentinelUrl": "https://tx-sentinel-sei-mainnet.api.cx.metamask.io", + "extensionActive": false + }, + "0xa86a": { + "extensionActive": false, + "sentinelUrl": "https://tx-sentinel-avalanche-mainnet.api.cx.metamask.io" + } + }, + "solanaCardEnabled": false, + "solanaTestnetsEnabled": false, + "staticAssetsPollingOptions": { + "cacheExpirationTime": 3600000, + "interval": 10800000, + "occurrenceFloor": {}, + "supportedChains": ["0x10e6"], + "topX": 5 + }, + "stellarAccounts": { + "minimumVersion": "0.0.1", + "enabled": true + }, + "stxMigrationBatchStatus": [ + { + "value": true, + "name": "sentinel on", + "scope": { + "type": "threshold", + "value": 1 + } + }, + { + "scope": { + "type": "threshold", + "value": 0 + }, + "value": false, + "name": "sentinel off" + } + ], + "stxMigrationCancel": [ + { + "value": true, + "name": "sentinel on", + "scope": { + "type": "threshold", + "value": 1 + } + }, + { + "value": false, + "name": "sentinel off", + "scope": { + "value": 0, + "type": "threshold" + } + } + ], + "stxMigrationGetFees": [ + { + "name": "sentinel on", + "scope": { + "type": "threshold", + "value": 1 + }, + "value": true + }, + { + "name": "sentinel off", + "scope": { + "value": 0, + "type": "threshold" + }, + "value": false + } + ], + "stxMigrationSubmitTransactions": [ + { + "value": true, + "name": "sentinel on", + "scope": { + "value": 1, + "type": "threshold" + } + }, + { + "scope": { + "type": "threshold", + "value": 0 + }, + "value": false, + "name": "sentinel off" + } + ], + "tempoConfig": { + "enabled": true, + "perChainConfig": { + "0x1079": { + "enabled": true, + "defaultFeeToken": "0x20c0000000000000000000000000000000000000" + }, + "0x89": { + "defaultFeeToken": "0x20c0000000000000000000000000000000000000", + "enabled": true + }, + "0xa5bf": { + "defaultFeeToken": "0x20c0000000000000000000000000000000000000", + "enabled": true + } + } + }, + "tronAccounts": { + "enabled": true, + "minimumVersion": "13.13.2" + }, + "walletFrameworkRpcFailoverEnabled": true + }, + "cacheTimestamp": 1779126362118, + "thresholdCache": { + "0x585932e95120a60224e1b9306442908dee59fd4785240188a2f92eb49c668e92:assetsEnableNotificationsByDefaultV2": 0.170914, + "0x585932e95120a60224e1b9306442908dee59fd4785240188a2f92eb49c668e92:backendWebSocketConnection": 0.477214, + "0x585932e95120a60224e1b9306442908dee59fd4785240188a2f92eb49c668e92:coreExtensionUxCeux1024AbtestReferralUi": 0.620227, + "0x585932e95120a60224e1b9306442908dee59fd4785240188a2f92eb49c668e92:extensionSignedDeepLinkWarningEnabled": 0.530274, + "0x585932e95120a60224e1b9306442908dee59fd4785240188a2f92eb49c668e92:platformSplitStateGradualRollout": 0.696131, + "0x585932e95120a60224e1b9306442908dee59fd4785240188a2f92eb49c668e92:stxMigrationBatchStatus": 0.934666, + "0x585932e95120a60224e1b9306442908dee59fd4785240188a2f92eb49c668e92:stxMigrationCancel": 0.150381, + "0x585932e95120a60224e1b9306442908dee59fd4785240188a2f92eb49c668e92:stxMigrationGetFees": 0.695454, + "0x585932e95120a60224e1b9306442908dee59fd4785240188a2f92eb49c668e92:stxMigrationSubmitTransactions": 0.410409 + }, + "allDeFiPositions": { + "0x141d32a89a1e0a5ef360034a2f60a4b917c18838": {} + }, + "allDeFiPositionsCount": { + "0x141d32a89a1e0a5ef360034a2f60a4b917c18838": 0 + }, + "urlScanCache": { + "app.safe.global": { + "data": { + "hostname": "app.safe.global", + "recommendedAction": "VERIFIED" + }, + "timestamp": 1773330552 + }, + "i.nfte.ai": { + "data": { + "domainName": "i.nfte.ai", + "recommendedAction": "NONE", + "riskFactors": null, + "status": "COMPLETE", + "verified": false + }, + "timestamp": 1778534283 + }, + "i2c.seadn.io": { + "data": { + "domainName": "i2c.seadn.io", + "recommendedAction": "NONE", + "riskFactors": null, + "status": "COMPLETE", + "verified": false + }, + "timestamp": 1778803081 + }, + "ipfs.io": { + "data": { + "domainName": "ipfs.io", + "recommendedAction": "NONE", + "riskFactors": null, + "status": "COMPLETE", + "verified": false + }, + "timestamp": 1774544144 + }, + "jsonplexmetadata.com": { + "data": { + "domainName": "jsonplexmetadata.com", + "recommendedAction": "NONE", + "riskFactors": null, + "status": "COMPLETE", + "verified": false + }, + "timestamp": 1772651855 + }, + "res.cloudinary.com": { + "data": { + "domainName": "res.cloudinary.com", + "recommendedAction": "NONE", + "riskFactors": null, + "status": "COMPLETE", + "verified": false + }, + "timestamp": 1774544144 + } + }, + "tokenScanCache": { + "solana:27G8MtK7VtTcCHkpASjSDdkWWYfoqT6ggEuKidVJidD4": { + "data": { + "result_type": "Verified" + }, + "timestamp": 1777411014 + }, + "solana:7atgF8KQo4wJrD5ATGX7t1V2zVvykPJbFfNeVf1icFv1": { + "data": { + "result_type": "Benign" + }, + "timestamp": 1777411014 + }, + "solana:7vfCXTUXx5WJV5JADk17DUJ4ksgau7utNKj4b963voxs": { + "data": { + "result_type": "Verified" + }, + "timestamp": 1778617228 + }, + "solana:8crhketCxuYMFfkvGfikwp6LGuN9sXx5i3oTC4PXpump": { + "data": { + "result_type": "Benign" + }, + "timestamp": 1777411014 + }, + "solana:9zNQRsGLjNKwCUU5Gq5LR8beUCPzQMVMqKAi3SSZh54u": { + "data": { + "result_type": "Verified" + }, + "timestamp": 1777411014 + }, + "solana:EPjFWdd5AufqSSqeM2qN1xzybapC8G4wEGGkZwyTDt1v": { + "data": { + "result_type": "Verified" + }, + "timestamp": 1777411014 + }, + "solana:Es9vMFrzaCERmJfrF4H2FYD4KCoNkY11McCe8BenwNYB": { + "data": { + "result_type": "Verified" + }, + "timestamp": 1777411014 + }, + "solana:JUPyiwrYJFskUPiHa7hkeR8VUtAeFoSYbKedZNsDvCN": { + "data": { + "result_type": "Verified" + }, + "timestamp": 1778617228 + }, + "solana:CKfatsPMUf8SkiURsDXs7eK6GWb4Jsd6UDbs7twMCWxo": { + "data": { + "result_type": "Benign" + }, + "timestamp": 1779056924 + }, + "solana:HeLp6NuQkmYB4pYWo2zYs22mESHXPQYzXbB8n4V98jwC": { + "data": { + "result_type": "Verified" + }, + "timestamp": 1779056924 + } + }, + "addressScanCache": {}, + "coverageResults": {}, + "orderedTransactionHistory": [], + "claimsConfigurations": { + "supportedNetworks": ["0x1", "0xe708"], + "validSubmissionWindowDays": 21 + }, + "claims": [], + "drafts": [], + "initialEnqueueCompleted": true, + "syncQueue": {}, + "initialDelayEndTimestamp": 1778884124587, + "accountsByChainId": { + "0x38": { + "0xE2F39519240814a77047490357cEd4d094B6C9C7": { + "balance": "0x0" + }, + "0xbcc30CC9B8109f87fcEDE0C57E3A8c3DC979e3D0": { + "balance": "0x0" + }, + "0x141d32a89a1e0a5Ef360034a2f60a4B917c18838": { + "balance": "0x1c64da03f600" + }, + "0x452cA3DAd6dB7F3a47bbF15b758B6749Db579bBc": { + "balance": "0x0" + }, + "0xa30078E306614C2F444550da6bC759173Dfb61Fd": { + "balance": "0x0" + }, + "0x94d1362400E999b38C845cA2c305c084031DAe84": { + "balance": "0x0" + }, + "0x2b6a82d1Fea4D5B137095cA5306BA2589B630A08": { + "balance": "0x0" + }, + "0xF25bd11C334507Fd007d584E2D0b7b2C6543f714": { + "balance": "0x0" + }, + "0x83AD6A1294d949d514361326bcebAe4F73957327": { + "balance": "0x0" + }, + "0xeeEAB71A5989b7951389e3dF313Ea9876508856f": { + "balance": "0x0" + }, + "0x3823C59973351F50e8B985e182b81300Dae9Bb45": { + "balance": "0x0" + }, + "0xf1F63D55E8f25C962079BE324c71CDcf792c6047": { + "balance": "0x0" + }, + "0x09b8556833e53f92EE0b668DB146B43CA2CAB130": { + "balance": "0x0" + }, + "0x422B8d8914cDad779f587414d647e953bB3A87db": { + "balance": "0x0" + }, + "0x9dc641ccD7D1e7C66e47a25598aCe7219548d887": { + "balance": "0x0" + }, + "0x6Eff00186BA65C5FAde98d75aA4d99eF71fA461B": { + "balance": "0x0" + }, + "0xb3864B298f4fDdbbBd2Fa5CF1a2a2748932b3B81": { + "balance": "0x0" + }, + "0x30E8ccaD5A980BDF30447f8c2C48e70989D9d294": { + "balance": "0x0" + }, + "0x98931E2B2272891c2E8e47D675007D94aE90cE64": { + "balance": "0x0" + }, + "0xDA04e0fE4e79eebcaFfCbfFf8eA0BDcd442d2119": { + "balance": "0x0" + }, + "0xc9442048Fd0c34b684035a82188B69c4eE5e8f21": { + "balance": "0x0" + }, + "0x04400BB51B1f886CFf338eb2b4118f9CeB4E6fD5": { + "balance": "0x0" + } + }, + "0x1": { + "0xE2F39519240814a77047490357cEd4d094B6C9C7": { + "balance": "0x0" + }, + "0xbcc30CC9B8109f87fcEDE0C57E3A8c3DC979e3D0": { + "balance": "0x0" + }, + "0x141d32a89a1e0a5Ef360034a2f60a4B917c18838": { + "balance": "0x1f4cd90b253e", + "stakedBalance": "0x0" + }, + "0x452cA3DAd6dB7F3a47bbF15b758B6749Db579bBc": { + "balance": "0x0" + }, + "0xa30078E306614C2F444550da6bC759173Dfb61Fd": { + "balance": "0x0" + }, + "0x94d1362400E999b38C845cA2c305c084031DAe84": { + "balance": "0x0" + }, + "0x2b6a82d1Fea4D5B137095cA5306BA2589B630A08": { + "balance": "0x0" + }, + "0xF25bd11C334507Fd007d584E2D0b7b2C6543f714": { + "balance": "0x0" + }, + "0x83AD6A1294d949d514361326bcebAe4F73957327": { + "balance": "0x0" + }, + "0xeeEAB71A5989b7951389e3dF313Ea9876508856f": { + "balance": "0x0" + }, + "0x3823C59973351F50e8B985e182b81300Dae9Bb45": { + "balance": "0x0" + }, + "0xf1F63D55E8f25C962079BE324c71CDcf792c6047": { + "balance": "0x0" + }, + "0x09b8556833e53f92EE0b668DB146B43CA2CAB130": { + "balance": "0x0" + }, + "0x422B8d8914cDad779f587414d647e953bB3A87db": { + "balance": "0x0" + }, + "0x9dc641ccD7D1e7C66e47a25598aCe7219548d887": { + "balance": "0x0" + }, + "0x6Eff00186BA65C5FAde98d75aA4d99eF71fA461B": { + "balance": "0x0" + }, + "0xb3864B298f4fDdbbBd2Fa5CF1a2a2748932b3B81": { + "balance": "0x0" + }, + "0x30E8ccaD5A980BDF30447f8c2C48e70989D9d294": { + "balance": "0x0" + }, + "0x98931E2B2272891c2E8e47D675007D94aE90cE64": { + "balance": "0x0" + }, + "0xDA04e0fE4e79eebcaFfCbfFf8eA0BDcd442d2119": { + "balance": "0x0" + }, + "0xc9442048Fd0c34b684035a82188B69c4eE5e8f21": { + "balance": "0x0" + }, + "0x04400BB51B1f886CFf338eb2b4118f9CeB4E6fD5": { + "balance": "0x0" + } + }, + "0x10e6": { + "0xE2F39519240814a77047490357cEd4d094B6C9C7": { + "balance": "0x0" + }, + "0xbcc30CC9B8109f87fcEDE0C57E3A8c3DC979e3D0": { + "balance": "0x0" + }, + "0x141d32a89a1e0a5Ef360034a2f60a4B917c18838": { + "balance": "0x0" + }, + "0x452cA3DAd6dB7F3a47bbF15b758B6749Db579bBc": { + "balance": "0x0" + }, + "0xa30078E306614C2F444550da6bC759173Dfb61Fd": { + "balance": "0x0" + }, + "0x94d1362400E999b38C845cA2c305c084031DAe84": { + "balance": "0x0" + }, + "0x2b6a82d1Fea4D5B137095cA5306BA2589B630A08": { + "balance": "0x0" + }, + "0xF25bd11C334507Fd007d584E2D0b7b2C6543f714": { + "balance": "0x0" + }, + "0x83AD6A1294d949d514361326bcebAe4F73957327": { + "balance": "0x0" + }, + "0xeeEAB71A5989b7951389e3dF313Ea9876508856f": { + "balance": "0x0" + }, + "0x3823C59973351F50e8B985e182b81300Dae9Bb45": { + "balance": "0x0" + }, + "0xf1F63D55E8f25C962079BE324c71CDcf792c6047": { + "balance": "0x0" + }, + "0x09b8556833e53f92EE0b668DB146B43CA2CAB130": { + "balance": "0x0" + }, + "0x422B8d8914cDad779f587414d647e953bB3A87db": { + "balance": "0x0" + }, + "0x9dc641ccD7D1e7C66e47a25598aCe7219548d887": { + "balance": "0x0" + }, + "0x6Eff00186BA65C5FAde98d75aA4d99eF71fA461B": { + "balance": "0x0" + }, + "0xb3864B298f4fDdbbBd2Fa5CF1a2a2748932b3B81": { + "balance": "0x0" + }, + "0x30E8ccaD5A980BDF30447f8c2C48e70989D9d294": { + "balance": "0x0" + }, + "0x98931E2B2272891c2E8e47D675007D94aE90cE64": { + "balance": "0x0" + }, + "0xDA04e0fE4e79eebcaFfCbfFf8eA0BDcd442d2119": { + "balance": "0x0" + }, + "0xc9442048Fd0c34b684035a82188B69c4eE5e8f21": { + "balance": "0x0" + }, + "0x04400BB51B1f886CFf338eb2b4118f9CeB4E6fD5": { + "balance": "0x0" + } + }, + "0x144": { + "0xE2F39519240814a77047490357cEd4d094B6C9C7": { + "balance": "0x0" + }, + "0xbcc30CC9B8109f87fcEDE0C57E3A8c3DC979e3D0": { + "balance": "0x0" + }, + "0x141d32a89a1e0a5Ef360034a2f60a4B917c18838": { + "balance": "0x0" + }, + "0x452cA3DAd6dB7F3a47bbF15b758B6749Db579bBc": { + "balance": "0x0" + }, + "0xa30078E306614C2F444550da6bC759173Dfb61Fd": { + "balance": "0x0" + }, + "0x94d1362400E999b38C845cA2c305c084031DAe84": { + "balance": "0x0" + }, + "0x2b6a82d1Fea4D5B137095cA5306BA2589B630A08": { + "balance": "0x0" + }, + "0xF25bd11C334507Fd007d584E2D0b7b2C6543f714": { + "balance": "0x0" + }, + "0x83AD6A1294d949d514361326bcebAe4F73957327": { + "balance": "0x0" + }, + "0xeeEAB71A5989b7951389e3dF313Ea9876508856f": { + "balance": "0x0" + }, + "0x3823C59973351F50e8B985e182b81300Dae9Bb45": { + "balance": "0x0" + }, + "0xf1F63D55E8f25C962079BE324c71CDcf792c6047": { + "balance": "0x0" + }, + "0x09b8556833e53f92EE0b668DB146B43CA2CAB130": { + "balance": "0x0" + }, + "0x422B8d8914cDad779f587414d647e953bB3A87db": { + "balance": "0x0" + }, + "0x9dc641ccD7D1e7C66e47a25598aCe7219548d887": { + "balance": "0x0" + }, + "0x6Eff00186BA65C5FAde98d75aA4d99eF71fA461B": { + "balance": "0x0" + }, + "0xb3864B298f4fDdbbBd2Fa5CF1a2a2748932b3B81": { + "balance": "0x0" + }, + "0x30E8ccaD5A980BDF30447f8c2C48e70989D9d294": { + "balance": "0x0" + }, + "0x98931E2B2272891c2E8e47D675007D94aE90cE64": { + "balance": "0x0" + }, + "0xDA04e0fE4e79eebcaFfCbfFf8eA0BDcd442d2119": { + "balance": "0x0" + }, + "0xc9442048Fd0c34b684035a82188B69c4eE5e8f21": { + "balance": "0x0" + }, + "0x04400BB51B1f886CFf338eb2b4118f9CeB4E6fD5": { + "balance": "0x0" + } + }, + "0x18c7": { + "0xE2F39519240814a77047490357cEd4d094B6C9C7": { + "balance": "0x0" + }, + "0xbcc30CC9B8109f87fcEDE0C57E3A8c3DC979e3D0": { + "balance": "0x0" + }, + "0x141d32a89a1e0a5Ef360034a2f60a4B917c18838": { + "balance": "0x0" + }, + "0x452cA3DAd6dB7F3a47bbF15b758B6749Db579bBc": { + "balance": "0x0" + }, + "0xa30078E306614C2F444550da6bC759173Dfb61Fd": { + "balance": "0x0" + }, + "0x94d1362400E999b38C845cA2c305c084031DAe84": { + "balance": "0x0" + }, + "0x2b6a82d1Fea4D5B137095cA5306BA2589B630A08": { + "balance": "0x0" + }, + "0xF25bd11C334507Fd007d584E2D0b7b2C6543f714": { + "balance": "0x0" + }, + "0x83AD6A1294d949d514361326bcebAe4F73957327": { + "balance": "0x0" + }, + "0xeeEAB71A5989b7951389e3dF313Ea9876508856f": { + "balance": "0x0" + }, + "0x3823C59973351F50e8B985e182b81300Dae9Bb45": { + "balance": "0x0" + }, + "0xf1F63D55E8f25C962079BE324c71CDcf792c6047": { + "balance": "0x0" + }, + "0x09b8556833e53f92EE0b668DB146B43CA2CAB130": { + "balance": "0x0" + }, + "0x422B8d8914cDad779f587414d647e953bB3A87db": { + "balance": "0x0" + }, + "0x9dc641ccD7D1e7C66e47a25598aCe7219548d887": { + "balance": "0x0" + }, + "0x6Eff00186BA65C5FAde98d75aA4d99eF71fA461B": { + "balance": "0x0" + }, + "0xb3864B298f4fDdbbBd2Fa5CF1a2a2748932b3B81": { + "balance": "0x0" + }, + "0x30E8ccaD5A980BDF30447f8c2C48e70989D9d294": { + "balance": "0x0" + }, + "0x98931E2B2272891c2E8e47D675007D94aE90cE64": { + "balance": "0x0" + }, + "0xDA04e0fE4e79eebcaFfCbfFf8eA0BDcd442d2119": { + "balance": "0x0" + }, + "0xc9442048Fd0c34b684035a82188B69c4eE5e8f21": { + "balance": "0x0" + }, + "0x04400BB51B1f886CFf338eb2b4118f9CeB4E6fD5": { + "balance": "0x0" + } + }, + "0x2105": { + "0xE2F39519240814a77047490357cEd4d094B6C9C7": { + "balance": "0x0" + }, + "0xbcc30CC9B8109f87fcEDE0C57E3A8c3DC979e3D0": { + "balance": "0x0" + }, + "0x141d32a89a1e0a5Ef360034a2f60a4B917c18838": { + "balance": "0x1dc7b15de86" + }, + "0x452cA3DAd6dB7F3a47bbF15b758B6749Db579bBc": { + "balance": "0x0" + }, + "0xa30078E306614C2F444550da6bC759173Dfb61Fd": { + "balance": "0x0" + }, + "0x94d1362400E999b38C845cA2c305c084031DAe84": { + "balance": "0x0" + }, + "0x2b6a82d1Fea4D5B137095cA5306BA2589B630A08": { + "balance": "0x0" + }, + "0xF25bd11C334507Fd007d584E2D0b7b2C6543f714": { + "balance": "0x0" + }, + "0x83AD6A1294d949d514361326bcebAe4F73957327": { + "balance": "0x0" + }, + "0xeeEAB71A5989b7951389e3dF313Ea9876508856f": { + "balance": "0x0" + }, + "0x3823C59973351F50e8B985e182b81300Dae9Bb45": { + "balance": "0x0" + }, + "0xf1F63D55E8f25C962079BE324c71CDcf792c6047": { + "balance": "0x0" + }, + "0x09b8556833e53f92EE0b668DB146B43CA2CAB130": { + "balance": "0x0" + }, + "0x422B8d8914cDad779f587414d647e953bB3A87db": { + "balance": "0x0" + }, + "0x9dc641ccD7D1e7C66e47a25598aCe7219548d887": { + "balance": "0x0" + }, + "0x6Eff00186BA65C5FAde98d75aA4d99eF71fA461B": { + "balance": "0x0" + }, + "0xb3864B298f4fDdbbBd2Fa5CF1a2a2748932b3B81": { + "balance": "0x0" + }, + "0x30E8ccaD5A980BDF30447f8c2C48e70989D9d294": { + "balance": "0x0" + }, + "0x98931E2B2272891c2E8e47D675007D94aE90cE64": { + "balance": "0x0" + }, + "0xDA04e0fE4e79eebcaFfCbfFf8eA0BDcd442d2119": { + "balance": "0x0" + }, + "0xc9442048Fd0c34b684035a82188B69c4eE5e8f21": { + "balance": "0x0" + }, + "0x04400BB51B1f886CFf338eb2b4118f9CeB4E6fD5": { + "balance": "0x0" + } + }, + "0x279f": { + "0xE2F39519240814a77047490357cEd4d094B6C9C7": { + "balance": "0x0" + }, + "0xbcc30CC9B8109f87fcEDE0C57E3A8c3DC979e3D0": { + "balance": "0x0" + }, + "0x141d32a89a1e0a5Ef360034a2f60a4B917c18838": { + "balance": "0x0" + }, + "0x452cA3DAd6dB7F3a47bbF15b758B6749Db579bBc": { + "balance": "0x0" + }, + "0xa30078E306614C2F444550da6bC759173Dfb61Fd": { + "balance": "0x0" + }, + "0x94d1362400E999b38C845cA2c305c084031DAe84": { + "balance": "0x0" + }, + "0x2b6a82d1Fea4D5B137095cA5306BA2589B630A08": { + "balance": "0x0" + }, + "0xF25bd11C334507Fd007d584E2D0b7b2C6543f714": { + "balance": "0x0" + }, + "0x83AD6A1294d949d514361326bcebAe4F73957327": { + "balance": "0x0" + }, + "0xeeEAB71A5989b7951389e3dF313Ea9876508856f": { + "balance": "0x0" + }, + "0x3823C59973351F50e8B985e182b81300Dae9Bb45": { + "balance": "0x0" + }, + "0xf1F63D55E8f25C962079BE324c71CDcf792c6047": { + "balance": "0x0" + }, + "0x09b8556833e53f92EE0b668DB146B43CA2CAB130": { + "balance": "0x0" + }, + "0x422B8d8914cDad779f587414d647e953bB3A87db": { + "balance": "0x0" + }, + "0x9dc641ccD7D1e7C66e47a25598aCe7219548d887": { + "balance": "0x0" + }, + "0x6Eff00186BA65C5FAde98d75aA4d99eF71fA461B": { + "balance": "0x0" + }, + "0xb3864B298f4fDdbbBd2Fa5CF1a2a2748932b3B81": { + "balance": "0x0" + }, + "0x30E8ccaD5A980BDF30447f8c2C48e70989D9d294": { + "balance": "0x0" + }, + "0x98931E2B2272891c2E8e47D675007D94aE90cE64": { + "balance": "0x0" + }, + "0xDA04e0fE4e79eebcaFfCbfFf8eA0BDcd442d2119": { + "balance": "0x0" + }, + "0xc9442048Fd0c34b684035a82188B69c4eE5e8f21": { + "balance": "0x0" + }, + "0x04400BB51B1f886CFf338eb2b4118f9CeB4E6fD5": { + "balance": "0x0" + } + }, + "0x89": { + "0xE2F39519240814a77047490357cEd4d094B6C9C7": { + "balance": "0x0" + }, + "0xbcc30CC9B8109f87fcEDE0C57E3A8c3DC979e3D0": { + "balance": "0x0" + }, + "0x141d32a89a1e0a5Ef360034a2f60a4B917c18838": { + "balance": "0xe3485cfd14b41c" + }, + "0x452cA3DAd6dB7F3a47bbF15b758B6749Db579bBc": { + "balance": "0x0" + }, + "0xa30078E306614C2F444550da6bC759173Dfb61Fd": { + "balance": "0x0" + }, + "0x94d1362400E999b38C845cA2c305c084031DAe84": { + "balance": "0x0" + }, + "0x2b6a82d1Fea4D5B137095cA5306BA2589B630A08": { + "balance": "0x0" + }, + "0xF25bd11C334507Fd007d584E2D0b7b2C6543f714": { + "balance": "0x0" + }, + "0x83AD6A1294d949d514361326bcebAe4F73957327": { + "balance": "0x0" + }, + "0xeeEAB71A5989b7951389e3dF313Ea9876508856f": { + "balance": "0x0" + }, + "0x3823C59973351F50e8B985e182b81300Dae9Bb45": { + "balance": "0x0" + }, + "0xf1F63D55E8f25C962079BE324c71CDcf792c6047": { + "balance": "0x0" + }, + "0x09b8556833e53f92EE0b668DB146B43CA2CAB130": { + "balance": "0x0" + }, + "0x422B8d8914cDad779f587414d647e953bB3A87db": { + "balance": "0x0" + }, + "0x9dc641ccD7D1e7C66e47a25598aCe7219548d887": { + "balance": "0x0" + }, + "0x6Eff00186BA65C5FAde98d75aA4d99eF71fA461B": { + "balance": "0x0" + }, + "0xb3864B298f4fDdbbBd2Fa5CF1a2a2748932b3B81": { + "balance": "0x0" + }, + "0x30E8ccaD5A980BDF30447f8c2C48e70989D9d294": { + "balance": "0x0" + }, + "0x98931E2B2272891c2E8e47D675007D94aE90cE64": { + "balance": "0x0" + }, + "0xDA04e0fE4e79eebcaFfCbfFf8eA0BDcd442d2119": { + "balance": "0x0" + }, + "0xc9442048Fd0c34b684035a82188B69c4eE5e8f21": { + "balance": "0x0" + }, + "0x04400BB51B1f886CFf338eb2b4118f9CeB4E6fD5": { + "balance": "0x0" + } + }, + "0x8f": { + "0xE2F39519240814a77047490357cEd4d094B6C9C7": { + "balance": "0x0" + }, + "0xbcc30CC9B8109f87fcEDE0C57E3A8c3DC979e3D0": { + "balance": "0x0" + }, + "0x141d32a89a1e0a5Ef360034a2f60a4B917c18838": { + "balance": "0xde0b6b3a7640000" + }, + "0x452cA3DAd6dB7F3a47bbF15b758B6749Db579bBc": { + "balance": "0x0" + }, + "0xa30078E306614C2F444550da6bC759173Dfb61Fd": { + "balance": "0x0" + }, + "0x94d1362400E999b38C845cA2c305c084031DAe84": { + "balance": "0x0" + }, + "0x2b6a82d1Fea4D5B137095cA5306BA2589B630A08": { + "balance": "0x0" + }, + "0xF25bd11C334507Fd007d584E2D0b7b2C6543f714": { + "balance": "0x0" + }, + "0x83AD6A1294d949d514361326bcebAe4F73957327": { + "balance": "0x0" + }, + "0xeeEAB71A5989b7951389e3dF313Ea9876508856f": { + "balance": "0x0" + }, + "0x3823C59973351F50e8B985e182b81300Dae9Bb45": { + "balance": "0x0" + }, + "0xf1F63D55E8f25C962079BE324c71CDcf792c6047": { + "balance": "0x0" + }, + "0x09b8556833e53f92EE0b668DB146B43CA2CAB130": { + "balance": "0x0" + }, + "0x422B8d8914cDad779f587414d647e953bB3A87db": { + "balance": "0x0" + }, + "0x9dc641ccD7D1e7C66e47a25598aCe7219548d887": { + "balance": "0x0" + }, + "0x6Eff00186BA65C5FAde98d75aA4d99eF71fA461B": { + "balance": "0x0" + }, + "0xb3864B298f4fDdbbBd2Fa5CF1a2a2748932b3B81": { + "balance": "0x0" + }, + "0x30E8ccaD5A980BDF30447f8c2C48e70989D9d294": { + "balance": "0x0" + }, + "0x98931E2B2272891c2E8e47D675007D94aE90cE64": { + "balance": "0x0" + }, + "0xDA04e0fE4e79eebcaFfCbfFf8eA0BDcd442d2119": { + "balance": "0x0" + }, + "0xc9442048Fd0c34b684035a82188B69c4eE5e8f21": { + "balance": "0x0" + }, + "0x04400BB51B1f886CFf338eb2b4118f9CeB4E6fD5": { + "balance": "0x0" + } + }, + "0xa": { + "0xE2F39519240814a77047490357cEd4d094B6C9C7": { + "balance": "0x0" + }, + "0xbcc30CC9B8109f87fcEDE0C57E3A8c3DC979e3D0": { + "balance": "0x0" + }, + "0x141d32a89a1e0a5Ef360034a2f60a4B917c18838": { + "balance": "0x7edb0185cd28" + }, + "0x452cA3DAd6dB7F3a47bbF15b758B6749Db579bBc": { + "balance": "0x0" + }, + "0xa30078E306614C2F444550da6bC759173Dfb61Fd": { + "balance": "0x0" + }, + "0x94d1362400E999b38C845cA2c305c084031DAe84": { + "balance": "0x0" + }, + "0x2b6a82d1Fea4D5B137095cA5306BA2589B630A08": { + "balance": "0x0" + }, + "0xF25bd11C334507Fd007d584E2D0b7b2C6543f714": { + "balance": "0x0" + }, + "0x83AD6A1294d949d514361326bcebAe4F73957327": { + "balance": "0x0" + }, + "0xeeEAB71A5989b7951389e3dF313Ea9876508856f": { + "balance": "0x0" + }, + "0x3823C59973351F50e8B985e182b81300Dae9Bb45": { + "balance": "0x0" + }, + "0xf1F63D55E8f25C962079BE324c71CDcf792c6047": { + "balance": "0x0" + }, + "0x09b8556833e53f92EE0b668DB146B43CA2CAB130": { + "balance": "0x0" + }, + "0x422B8d8914cDad779f587414d647e953bB3A87db": { + "balance": "0x0" + }, + "0x9dc641ccD7D1e7C66e47a25598aCe7219548d887": { + "balance": "0x0" + }, + "0x6Eff00186BA65C5FAde98d75aA4d99eF71fA461B": { + "balance": "0x0" + }, + "0xb3864B298f4fDdbbBd2Fa5CF1a2a2748932b3B81": { + "balance": "0x0" + }, + "0x30E8ccaD5A980BDF30447f8c2C48e70989D9d294": { + "balance": "0x0" + }, + "0x98931E2B2272891c2E8e47D675007D94aE90cE64": { + "balance": "0x0" + }, + "0xDA04e0fE4e79eebcaFfCbfFf8eA0BDcd442d2119": { + "balance": "0x0" + }, + "0xc9442048Fd0c34b684035a82188B69c4eE5e8f21": { + "balance": "0x0" + }, + "0x04400BB51B1f886CFf338eb2b4118f9CeB4E6fD5": { + "balance": "0x0" + } + }, + "0xa4b1": { + "0xE2F39519240814a77047490357cEd4d094B6C9C7": { + "balance": "0x0" + }, + "0xbcc30CC9B8109f87fcEDE0C57E3A8c3DC979e3D0": { + "balance": "0x0" + }, + "0x141d32a89a1e0a5Ef360034a2f60a4B917c18838": { + "balance": "0x2a742850646bc6" + }, + "0x452cA3DAd6dB7F3a47bbF15b758B6749Db579bBc": { + "balance": "0x0" + }, + "0xa30078E306614C2F444550da6bC759173Dfb61Fd": { + "balance": "0x0" + }, + "0x94d1362400E999b38C845cA2c305c084031DAe84": { + "balance": "0x0" + }, + "0x2b6a82d1Fea4D5B137095cA5306BA2589B630A08": { + "balance": "0x0" + }, + "0xF25bd11C334507Fd007d584E2D0b7b2C6543f714": { + "balance": "0x0" + }, + "0x83AD6A1294d949d514361326bcebAe4F73957327": { + "balance": "0x0" + }, + "0xeeEAB71A5989b7951389e3dF313Ea9876508856f": { + "balance": "0x0" + }, + "0x3823C59973351F50e8B985e182b81300Dae9Bb45": { + "balance": "0x0" + }, + "0xf1F63D55E8f25C962079BE324c71CDcf792c6047": { + "balance": "0x0" + }, + "0x09b8556833e53f92EE0b668DB146B43CA2CAB130": { + "balance": "0x0" + }, + "0x422B8d8914cDad779f587414d647e953bB3A87db": { + "balance": "0x0" + }, + "0x9dc641ccD7D1e7C66e47a25598aCe7219548d887": { + "balance": "0x0" + }, + "0x6Eff00186BA65C5FAde98d75aA4d99eF71fA461B": { + "balance": "0x0" + }, + "0xb3864B298f4fDdbbBd2Fa5CF1a2a2748932b3B81": { + "balance": "0x0" + }, + "0x30E8ccaD5A980BDF30447f8c2C48e70989D9d294": { + "balance": "0x0" + }, + "0x98931E2B2272891c2E8e47D675007D94aE90cE64": { + "balance": "0x0" + }, + "0xDA04e0fE4e79eebcaFfCbfFf8eA0BDcd442d2119": { + "balance": "0x0" + }, + "0xc9442048Fd0c34b684035a82188B69c4eE5e8f21": { + "balance": "0x0" + }, + "0x04400BB51B1f886CFf338eb2b4118f9CeB4E6fD5": { + "balance": "0x0" + } + }, + "0xa86a": { + "0xE2F39519240814a77047490357cEd4d094B6C9C7": { + "balance": "0x0" + }, + "0xbcc30CC9B8109f87fcEDE0C57E3A8c3DC979e3D0": { + "balance": "0x0" + }, + "0x141d32a89a1e0a5Ef360034a2f60a4B917c18838": { + "balance": "0x14e2a15f4e83457e" + }, + "0x452cA3DAd6dB7F3a47bbF15b758B6749Db579bBc": { + "balance": "0x0" + }, + "0xa30078E306614C2F444550da6bC759173Dfb61Fd": { + "balance": "0x0" + }, + "0x94d1362400E999b38C845cA2c305c084031DAe84": { + "balance": "0x0" + }, + "0x2b6a82d1Fea4D5B137095cA5306BA2589B630A08": { + "balance": "0x0" + }, + "0xF25bd11C334507Fd007d584E2D0b7b2C6543f714": { + "balance": "0x0" + }, + "0x83AD6A1294d949d514361326bcebAe4F73957327": { + "balance": "0x0" + }, + "0xeeEAB71A5989b7951389e3dF313Ea9876508856f": { + "balance": "0x0" + }, + "0x3823C59973351F50e8B985e182b81300Dae9Bb45": { + "balance": "0x0" + }, + "0xf1F63D55E8f25C962079BE324c71CDcf792c6047": { + "balance": "0x0" + }, + "0x09b8556833e53f92EE0b668DB146B43CA2CAB130": { + "balance": "0x0" + }, + "0x422B8d8914cDad779f587414d647e953bB3A87db": { + "balance": "0x0" + }, + "0x9dc641ccD7D1e7C66e47a25598aCe7219548d887": { + "balance": "0x0" + }, + "0x6Eff00186BA65C5FAde98d75aA4d99eF71fA461B": { + "balance": "0x0" + }, + "0xb3864B298f4fDdbbBd2Fa5CF1a2a2748932b3B81": { + "balance": "0x0" + }, + "0x30E8ccaD5A980BDF30447f8c2C48e70989D9d294": { + "balance": "0x0" + }, + "0x98931E2B2272891c2E8e47D675007D94aE90cE64": { + "balance": "0x0" + }, + "0xDA04e0fE4e79eebcaFfCbfFf8eA0BDcd442d2119": { + "balance": "0x0" + }, + "0xc9442048Fd0c34b684035a82188B69c4eE5e8f21": { + "balance": "0x0" + }, + "0x04400BB51B1f886CFf338eb2b4118f9CeB4E6fD5": { + "balance": "0x0" + } + }, + "0xaa36a7": { + "0xE2F39519240814a77047490357cEd4d094B6C9C7": { + "balance": "0x0" + }, + "0xbcc30CC9B8109f87fcEDE0C57E3A8c3DC979e3D0": { + "balance": "0x0" + }, + "0x141d32a89a1e0a5Ef360034a2f60a4B917c18838": { + "balance": "0x0" + }, + "0x452cA3DAd6dB7F3a47bbF15b758B6749Db579bBc": { + "balance": "0x0" + }, + "0xa30078E306614C2F444550da6bC759173Dfb61Fd": { + "balance": "0x0" + }, + "0x94d1362400E999b38C845cA2c305c084031DAe84": { + "balance": "0x0" + }, + "0x2b6a82d1Fea4D5B137095cA5306BA2589B630A08": { + "balance": "0x0" + }, + "0xF25bd11C334507Fd007d584E2D0b7b2C6543f714": { + "balance": "0x0" + }, + "0x83AD6A1294d949d514361326bcebAe4F73957327": { + "balance": "0x0" + }, + "0xeeEAB71A5989b7951389e3dF313Ea9876508856f": { + "balance": "0x0" + }, + "0x3823C59973351F50e8B985e182b81300Dae9Bb45": { + "balance": "0x0" + }, + "0xf1F63D55E8f25C962079BE324c71CDcf792c6047": { + "balance": "0x0" + }, + "0x09b8556833e53f92EE0b668DB146B43CA2CAB130": { + "balance": "0x0" + }, + "0x422B8d8914cDad779f587414d647e953bB3A87db": { + "balance": "0x0" + }, + "0x9dc641ccD7D1e7C66e47a25598aCe7219548d887": { + "balance": "0x0" + }, + "0x6Eff00186BA65C5FAde98d75aA4d99eF71fA461B": { + "balance": "0x0" + }, + "0xb3864B298f4fDdbbBd2Fa5CF1a2a2748932b3B81": { + "balance": "0x0" + }, + "0x30E8ccaD5A980BDF30447f8c2C48e70989D9d294": { + "balance": "0x0" + }, + "0x98931E2B2272891c2E8e47D675007D94aE90cE64": { + "balance": "0x0" + }, + "0xDA04e0fE4e79eebcaFfCbfFf8eA0BDcd442d2119": { + "balance": "0x0" + }, + "0xc9442048Fd0c34b684035a82188B69c4eE5e8f21": { + "balance": "0x0" + }, + "0x04400BB51B1f886CFf338eb2b4118f9CeB4E6fD5": { + "balance": "0x0" + } + }, + "0xe705": { + "0xE2F39519240814a77047490357cEd4d094B6C9C7": { + "balance": "0x0" + }, + "0xbcc30CC9B8109f87fcEDE0C57E3A8c3DC979e3D0": { + "balance": "0x0" + }, + "0x141d32a89a1e0a5Ef360034a2f60a4B917c18838": { + "balance": "0x0" + }, + "0x452cA3DAd6dB7F3a47bbF15b758B6749Db579bBc": { + "balance": "0x0" + }, + "0xa30078E306614C2F444550da6bC759173Dfb61Fd": { + "balance": "0x0" + }, + "0x94d1362400E999b38C845cA2c305c084031DAe84": { + "balance": "0x0" + }, + "0x2b6a82d1Fea4D5B137095cA5306BA2589B630A08": { + "balance": "0x0" + }, + "0xF25bd11C334507Fd007d584E2D0b7b2C6543f714": { + "balance": "0x0" + }, + "0x83AD6A1294d949d514361326bcebAe4F73957327": { + "balance": "0x0" + }, + "0xeeEAB71A5989b7951389e3dF313Ea9876508856f": { + "balance": "0x0" + }, + "0x3823C59973351F50e8B985e182b81300Dae9Bb45": { + "balance": "0x0" + }, + "0xf1F63D55E8f25C962079BE324c71CDcf792c6047": { + "balance": "0x0" + }, + "0x09b8556833e53f92EE0b668DB146B43CA2CAB130": { + "balance": "0x0" + }, + "0x422B8d8914cDad779f587414d647e953bB3A87db": { + "balance": "0x0" + }, + "0x9dc641ccD7D1e7C66e47a25598aCe7219548d887": { + "balance": "0x0" + }, + "0x6Eff00186BA65C5FAde98d75aA4d99eF71fA461B": { + "balance": "0x0" + }, + "0xb3864B298f4fDdbbBd2Fa5CF1a2a2748932b3B81": { + "balance": "0x0" + }, + "0x30E8ccaD5A980BDF30447f8c2C48e70989D9d294": { + "balance": "0x0" + }, + "0x98931E2B2272891c2E8e47D675007D94aE90cE64": { + "balance": "0x0" + }, + "0xDA04e0fE4e79eebcaFfCbfFf8eA0BDcd442d2119": { + "balance": "0x0" + }, + "0xc9442048Fd0c34b684035a82188B69c4eE5e8f21": { + "balance": "0x0" + }, + "0x04400BB51B1f886CFf338eb2b4118f9CeB4E6fD5": { + "balance": "0x0" + } + }, + "0xe708": { + "0xE2F39519240814a77047490357cEd4d094B6C9C7": { + "balance": "0x0" + }, + "0xbcc30CC9B8109f87fcEDE0C57E3A8c3DC979e3D0": { + "balance": "0x0" + }, + "0x141d32a89a1e0a5Ef360034a2f60a4B917c18838": { + "balance": "0x7a117a1ec8643" + }, + "0x452cA3DAd6dB7F3a47bbF15b758B6749Db579bBc": { + "balance": "0x0" + }, + "0xa30078E306614C2F444550da6bC759173Dfb61Fd": { + "balance": "0x0" + }, + "0x94d1362400E999b38C845cA2c305c084031DAe84": { + "balance": "0x0" + }, + "0x2b6a82d1Fea4D5B137095cA5306BA2589B630A08": { + "balance": "0x0" + }, + "0xF25bd11C334507Fd007d584E2D0b7b2C6543f714": { + "balance": "0x0" + }, + "0x83AD6A1294d949d514361326bcebAe4F73957327": { + "balance": "0x0" + }, + "0xeeEAB71A5989b7951389e3dF313Ea9876508856f": { + "balance": "0x0" + }, + "0x3823C59973351F50e8B985e182b81300Dae9Bb45": { + "balance": "0x0" + }, + "0xf1F63D55E8f25C962079BE324c71CDcf792c6047": { + "balance": "0x0" + }, + "0x09b8556833e53f92EE0b668DB146B43CA2CAB130": { + "balance": "0x0" + }, + "0x422B8d8914cDad779f587414d647e953bB3A87db": { + "balance": "0x0" + }, + "0x9dc641ccD7D1e7C66e47a25598aCe7219548d887": { + "balance": "0x0" + }, + "0x6Eff00186BA65C5FAde98d75aA4d99eF71fA461B": { + "balance": "0x0" + }, + "0xb3864B298f4fDdbbBd2Fa5CF1a2a2748932b3B81": { + "balance": "0x0" + }, + "0x30E8ccaD5A980BDF30447f8c2C48e70989D9d294": { + "balance": "0x0" + }, + "0x98931E2B2272891c2E8e47D675007D94aE90cE64": { + "balance": "0x0" + }, + "0xDA04e0fE4e79eebcaFfCbfFf8eA0BDcd442d2119": { + "balance": "0x0" + }, + "0xc9442048Fd0c34b684035a82188B69c4eE5e8f21": { + "balance": "0x0" + }, + "0x04400BB51B1f886CFf338eb2b4118f9CeB4E6fD5": { + "balance": "0x0" + } + } + }, + "unapprovedDecryptMsgs": {}, + "unapprovedDecryptMsgCount": 0, + "unapprovedEncryptionPublicKeyMsgs": {}, + "unapprovedEncryptionPublicKeyMsgCount": 0, + "signatureRequests": {}, + "unapprovedPersonalMsgs": {}, + "unapprovedTypedMessages": {}, + "unapprovedPersonalMsgCount": 0, + "unapprovedTypedMessagesCount": 0, + "quoteRequest": [ + { + "srcTokenAddress": "0xf8a0bf9cf54bb92f17374d9e9a321e6a111a51bd", + "destTokenAddress": "0x55d398326f99059fF775485246999027B3197955", + "srcTokenAmount": "487747159749581540", + "srcChainId": "eip155:56", + "destChainId": "eip155:56", + "insufficientBal": false, + "slippage": 2, + "walletAddress": "0x141d32a89a1e0a5ef360034a2f60a4b917c18838", + "destWalletAddress": "0x141d32a89a1e0a5ef360034a2f60a4b917c18838", + "gasIncluded": true, + "gasIncluded7702": false, + "resetApproval": false + }, + { + "srcTokenAddress": "0x1AF3F329e8BE154074D8769D1FFa4eE058B1DBc3", + "destTokenAddress": "0x55d398326f99059ff775485246999027b3197955", + "srcTokenAmount": "1000000000000000000", + "srcChainId": "eip155:56", + "destChainId": "eip155:56", + "insufficientBal": false, + "slippage": 2, + "walletAddress": "0x141d32a89a1e0a5ef360034a2f60a4b917c18838", + "destWalletAddress": "0x141d32a89a1e0a5ef360034a2f60a4b917c18838", + "gasIncluded": true, + "gasIncluded7702": false, + "resetApproval": false + } + ], + "quotesInitialLoadTime": 466, + "quotes": [ + { + "quote": { + "requestId": "0x964569bf63a3b5dd6d483adc043a2253d506417889f574b964aaa95796765b1a", + "bridgeId": "okx", + "srcChainId": 56, + "destChainId": 56, + "aggregator": "okx", + "aggregatorType": "AGG", + "srcAsset": { + "address": "0x1af3f329e8be154074d8769d1ffa4ee058b1dbc3", + "chainId": 56, + "assetId": "eip155:56/erc20:0x1af3f329e8be154074d8769d1ffa4ee058b1dbc3", + "symbol": "DAI", + "decimals": 18, + "name": "BNB pegged Dai Token", + "coingeckoId": "binance-peg-dai", + "aggregators": [ + "pancakeExtended", + "oneInch", + "liFi", + "trustWallet", + "socket", + "rubic", + "rango", + "sonarwatch", + "sushiSwap", + "binanceDex" + ], + "occurrences": 12, + "iconUrl": "https://static.cx.metamask.io/api/v2/tokenIcons/assets/eip155/56/erc20/0x1af3f329e8be154074d8769d1ffa4ee058b1dbc3.png", + "metadata": { + "storage": { + "balance": 1, + "approval": 2 + } + } + }, + "srcTokenAmount": "991250000000000000", + "destAsset": { + "address": "0x55d398326f99059ff775485246999027b3197955", + "chainId": 56, + "assetId": "eip155:56/erc20:0x55d398326f99059ff775485246999027b3197955", + "symbol": "USDT", + "decimals": 18, + "name": "Tether USD", + "coingeckoId": "binance-bridged-usdt-bnb-smart-chain", + "aggregators": [ + "pancakeExtended", + "oneInch", + "liFi", + "trustWallet", + "socket", + "rubic", + "squid", + "rango", + "sonarwatch", + "sushiSwap" + ], + "occurrences": 11, + "iconUrl": "https://static.cx.metamask.io/api/v2/tokenIcons/assets/eip155/56/erc20/0x55d398326f99059ff775485246999027b3197955.png", + "metadata": { + "storage": { + "balance": 1, + "approval": 2 + } + } + }, + "destTokenAmount": "990847005897558151", + "minDestTokenAmount": "971030065779606987", + "walletAddress": "0x141d32a89a1e0a5ef360034a2f60a4b917c18838", + "destWalletAddress": "0x141d32a89a1e0a5ef360034a2f60a4b917c18838", + "feeData": { + "metabridge": { + "amount": "8750000000000000", + "asset": { + "address": "0x1af3f329e8be154074d8769d1ffa4ee058b1dbc3", + "chainId": 56, + "assetId": "eip155:56/erc20:0x1af3f329e8be154074d8769d1ffa4ee058b1dbc3", + "symbol": "DAI", + "decimals": 18, + "name": "BNB pegged Dai Token", + "coingeckoId": "binance-peg-dai", + "aggregators": [ + "pancakeExtended", + "oneInch", + "liFi", + "trustWallet", + "socket", + "rubic", + "rango", + "sonarwatch", + "sushiSwap", + "binanceDex" + ], + "occurrences": 12, + "iconUrl": "https://static.cx.metamask.io/api/v2/tokenIcons/assets/eip155/56/erc20/0x1af3f329e8be154074d8769d1ffa4ee058b1dbc3.png", + "metadata": { + "storage": { + "balance": 1, + "approval": 2 + } + } + }, + "quoteBpsFee": 87.5, + "baseBpsFee": 87.5, + "usd": "0.008742761859012143" + } + }, + "bridges": ["okx"], + "protocols": ["okx"], + "steps": [], + "slippage": 2, + "gasSponsored": false, + "gasIncluded": false, + "gasIncluded7702": false, + "priceData": { + "totalFromAmountUsd": "0.999172783887102", + "totalToAmountUsd": "0.9903694176407155", + "priceImpact": "0.00006118997407835052", + "totalFeeAmountUsd": "0.008742761859012143" + } + }, + "approval": { + "chainId": 56, + "to": "0x1af3f329e8be154074d8769d1ffa4ee058b1dbc3", + "from": "0x141d32a89a1e0a5ef360034a2f60a4b917c18838", + "value": "0x0", + "data": "0x095ea7b30000000000000000000000001a1ec25dc08e98e5e93f1104b5e5cdd298707d310000000000000000000000000000000000000000000000000de0b6b3a7640000", + "gasLimit": 51234, + "feeEstimate": 2771640000000, + "effectiveGas": 46194, + "gasCost": "0", + "gasIncludedFeeData": { + "maxFeePerGas": "0x3938700", + "maxPriorityFeePerGas": "0x3938700", + "gas": "0xb5f0", + "balanceNeeded": "0x28aa8c19000", + "currentBalance": "0x1c64da03f600", + "error": "Not enough funds" + } + }, + "trade": { + "chainId": 56, + "to": "0x1a1ec25DC08e98e5E93F1104B5e5cdD298707d31", + "from": "0x141d32a89a1e0a5ef360034a2f60a4b917c18838", + "value": "0x0", + "data": "0x5f57552900000000000000000000000000000000000000000000000000000000000000800000000000000000000000001af3f329e8be154074d8769d1ffa4ee058b1dbc30000000000000000000000000000000000000000000000000de0b6b3a764000000000000000000000000000000000000000000000000000000000000000000c000000000000000000000000000000000000000000000000000000000000000046f6b78360000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000008400000000000000000000000001af3f329e8be154074d8769d1ffa4ee058b1dbc300000000000000000000000055d398326f99059ff775485246999027b31979550000000000000000000000000000000000000000000000000dc1a09f859b20000000000000000000000000000000000000000000000000000d79cab3390485cb0000000000000000000000000000000000000000000000000000000000000120000000000000000000000000000000000000000000000000001f161421c8e000000000000000000000000000b28da7bc87a9dd1e60849aa7fcb5da24ea913c4200000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000704f2c42696000000000000000000000000000000000000000000000000000000003bbd39960000000000000000000000001af3f329e8be154074d8769d1ffa4ee058b1dbc300000000000000000000000055d398326f99059ff775485246999027b31979550000000000000000000000000000000000000000000000000dc1a09f859b20000000000000000000000000000000000000000000000000000d79cab3390485cb000000000000000000000000000000000000000000000000000000006a07ac4300000000000000000000000000000000000000000000000000000000000000e00000000000000000000000000000000000000000000000000000000000000002000000000000000000000000000000000000000000000000000000000000004000000000000000000000000000000000000000000000000000000000000003e000000000000000000000000000000000000000000000000000000000000000a00000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000000000016000000000000000000000000000000000000000000000000000000000000001c00000000000000000000000001af3f329e8be154074d8769d1ffa4ee058b1dbc3000000000000000000000000000000000000000000000000000000000000000200000000000000000000000072e3ee933eaf568ea35049f30c01990cb6c2544b00000000000000000000000072e3ee933eaf568ea35049f30c01990cb6c2544b000000000000000000000000000000000000000000000000000000000000000200000000000000000000000072e3ee933eaf568ea35049f30c01990cb6c2544b00000000000000000000000072e3ee933eaf568ea35049f30c01990cb6c2544b0000000000000000000000000000000000000000000000000000000000000002800000000000000000011fa4860822cac26fb7e74e2cfad2642bc8a14d51227080000000000000000002076c860822cac26fb7e74e2cfad2642bc8a14d51227000000000000000000000000000000000000000000000000000000000000000020000000000000000000000000000000000000000000000000000000000000040000000000000000000000000000000000000000000000000000000000000010000000000000000000000000000000000000000000000000000000000000000a00000000000000000000000001af3f329e8be154074d8769d1ffa4ee058b1dbc3000000000000000000000000e9e7cea3dedca5984780bafc599bd69add087d5600000000000000000000000000000000000000000000000000000000000000040000000000000000000000000000000000000000000000000000000000000002000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000a00000000000000000000000001af3f329e8be154074d8769d1ffa4ee058b1dbc300000000000000000000000055d398326f99059ff775485246999027b319795500000000000000000000000000000000000000000000000000000000000000040000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000000000000000000000000000000e000000000000000000000000000000000000000000000000000000000000001200000000000000000000000000000000000000000000000000000000000000160000000000000000000000000e9e7cea3dedca5984780bafc599bd69add087d560000000000000000000000000000000000000000000000000000000000000001000000000000000000000000d953ed5afe1e2d2a24e0ef1cfdb3bcfe35cb5a1e0000000000000000000000000000000000000000000000000000000000000001000000000000000000000000d953ed5afe1e2d2a24e0ef1cfdb3bcfe35cb5a1e0000000000000000000000000000000000000000000000000000000000000001000000000000000001022710be60d4c4250438344bec816ec2dec99925deb4c700000000000000000000000000000000000000000000000000000000000000010000000000000000000000000000000000000000000000000000000000000020000000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000000000007777777711118000000000000000000000000000000000000dc0321a25488887777777771111000000000064fa00a9ed787f3793db668bff3e6e6e7db0f92a1b0000000000000000000000000000000000000000000000000000000042", + "gasLimit": 1228766, + "feeEstimate": 38295720000000, + "effectiveGas": 638262, + "gasCost": "0", + "gasIncludedFeeData": { + "maxFeePerGas": "0x3938700", + "maxPriorityFeePerGas": "0x3938700", + "gas": "0xc7fe9", + "balanceNeeded": "0x2cb3c53edf00", + "currentBalance": "0x19da31426600", + "error": "Not enough funds" + } + }, + "estimatedProcessingTimeInSeconds": 0, + "quoteId": "3527de48-d52a-4b2f-98c1-877551ec1ade", + "quoteRequestIndex": 1 + }, + { + "quote": { + "requestId": "0xb535799ef1c62d3ba5175ff8092a4252acd3b93f2d6059526ef81ba3dfd69143", + "bridgeId": "1inch", + "srcChainId": 56, + "destChainId": 56, + "aggregator": "1inch", + "aggregatorType": "AGG", + "srcAsset": { + "address": "0x1af3f329e8be154074d8769d1ffa4ee058b1dbc3", + "chainId": 56, + "assetId": "eip155:56/erc20:0x1af3f329e8be154074d8769d1ffa4ee058b1dbc3", + "symbol": "DAI", + "decimals": 18, + "name": "BNB pegged Dai Token", + "coingeckoId": "binance-peg-dai", + "aggregators": [ + "pancakeExtended", + "oneInch", + "liFi", + "trustWallet", + "socket", + "rubic", + "rango", + "sonarwatch", + "sushiSwap", + "binanceDex" + ], + "occurrences": 12, + "iconUrl": "https://static.cx.metamask.io/api/v2/tokenIcons/assets/eip155/56/erc20/0x1af3f329e8be154074d8769d1ffa4ee058b1dbc3.png", + "metadata": { + "storage": { + "balance": 1, + "approval": 2 + } + } + }, + "srcTokenAmount": "991250000000000000", + "destAsset": { + "address": "0x55d398326f99059ff775485246999027b3197955", + "chainId": 56, + "assetId": "eip155:56/erc20:0x55d398326f99059ff775485246999027b3197955", + "symbol": "USDT", + "decimals": 18, + "name": "Tether USD", + "coingeckoId": "binance-bridged-usdt-bnb-smart-chain", + "aggregators": [ + "pancakeExtended", + "oneInch", + "liFi", + "trustWallet", + "socket", + "rubic", + "squid", + "rango", + "sonarwatch", + "sushiSwap" + ], + "occurrences": 11, + "iconUrl": "https://static.cx.metamask.io/api/v2/tokenIcons/assets/eip155/56/erc20/0x55d398326f99059ff775485246999027b3197955.png", + "metadata": { + "storage": { + "balance": 1, + "approval": 2 + } + } + }, + "destTokenAmount": "990599597874191689", + "minDestTokenAmount": "970787605916707855", + "walletAddress": "0x141d32a89a1e0a5ef360034a2f60a4b917c18838", + "destWalletAddress": "0x141d32a89a1e0a5ef360034a2f60a4b917c18838", + "feeData": { + "metabridge": { + "amount": "8750000000000000", + "asset": { + "address": "0x1af3f329e8be154074d8769d1ffa4ee058b1dbc3", + "chainId": 56, + "assetId": "eip155:56/erc20:0x1af3f329e8be154074d8769d1ffa4ee058b1dbc3", + "symbol": "DAI", + "decimals": 18, + "name": "BNB pegged Dai Token", + "coingeckoId": "binance-peg-dai", + "aggregators": [ + "pancakeExtended", + "oneInch", + "liFi", + "trustWallet", + "socket", + "rubic", + "rango", + "sonarwatch", + "sushiSwap", + "binanceDex" + ], + "occurrences": 12, + "iconUrl": "https://static.cx.metamask.io/api/v2/tokenIcons/assets/eip155/56/erc20/0x1af3f329e8be154074d8769d1ffa4ee058b1dbc3.png", + "metadata": { + "storage": { + "balance": 1, + "approval": 2 + } + } + }, + "quoteBpsFee": 87.5, + "baseBpsFee": 87.5, + "usd": "0.008742761859012143" + } + }, + "bridges": ["1inch"], + "protocols": ["1inch"], + "steps": [], + "slippage": 2, + "gasSponsored": false, + "gasIncluded": false, + "gasIncluded7702": false, + "priceData": { + "totalFromAmountUsd": "0.999172783887102", + "totalToAmountUsd": "0.9901221288680164", + "priceImpact": "0.0003108681615314265", + "totalFeeAmountUsd": "0.008742761859012143" + } + }, + "approval": { + "chainId": 56, + "to": "0x1af3f329e8be154074d8769d1ffa4ee058b1dbc3", + "from": "0x141d32a89a1e0a5ef360034a2f60a4b917c18838", + "value": "0x0", + "data": "0x095ea7b30000000000000000000000001a1ec25dc08e98e5e93f1104b5e5cdd298707d310000000000000000000000000000000000000000000000000de0b6b3a7640000", + "gasLimit": 51234, + "feeEstimate": 2771640000000, + "effectiveGas": 46194, + "gasCost": "0", + "gasIncludedFeeData": { + "maxFeePerGas": "0x39386ff", + "maxPriorityFeePerGas": "0x39386ff", + "gas": "0xb5f0", + "balanceNeeded": "0x28aa8c19000", + "currentBalance": "0x1c64da03f600", + "error": "" + } + }, + "trade": { + "chainId": 56, + "to": "0x1a1ec25DC08e98e5E93F1104B5e5cdD298707d31", + "from": "0x141d32a89a1e0a5ef360034a2f60a4b917c18838", + "value": "0x0", + "data": "0x5f57552900000000000000000000000000000000000000000000000000000000000000800000000000000000000000001af3f329e8be154074d8769d1ffa4ee058b1dbc30000000000000000000000000000000000000000000000000de0b6b3a764000000000000000000000000000000000000000000000000000000000000000000c000000000000000000000000000000000000000000000000000000000000000136f6e65496e6368563646656544796e616d69630000000000000000000000000000000000000000000000000000000000000000000000000000000000000003200000000000000000000000001af3f329e8be154074d8769d1ffa4ee058b1dbc300000000000000000000000055d398326f99059ff775485246999027b31979550000000000000000000000000000000000000000000000000dc1a09f859b20000000000000000000000000000000000000000000000000000d78ee2f23046c0f0000000000000000000000000000000000000000000000000000000000000120000000000000000000000000000000000000000000000000001f161421c8e000000000000000000000000000b28da7bc87a9dd1e60849aa7fcb5da24ea913c42000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001e807ed23790000000000000000000000004c3ccc98c01103be72bcfd29e1d2454c98d1a6e30000000000000000000000001af3f329e8be154074d8769d1ffa4ee058b1dbc300000000000000000000000055d398326f99059ff775485246999027b31979550000000000000000000000004c3ccc98c01103be72bcfd29e1d2454c98d1a6e3000000000000000000000000c590175e458b83680867afd273527ff58f74c02b0000000000000000000000000000000000000000000000000dc1a09f859b20000000000000000000000000000000000000000000000000000d78ee2f23046c0f00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000120000000000000000000000000000000000000000000000000000000000000008100000000000000000000000000000000000000000000000000000000006302a00000000000000000000000000000000000000000000000000d78ee2f23046c0fee63c1e581039df62583ddc1c5fda75db152b87113d863b6d61af3f329e8be154074d8769d1ffa4ee058b1dbc3111111125421ca6dc452d289314280a0f8842a65000000000000000000000000000000000000000000000000000000000000007dcbea7c00000000000000000000000000000000000000000000000088", + "gasLimit": 398637, + "feeEstimate": 12446700000000, + "effectiveGas": 207445, + "gasCost": "0", + "gasIncludedFeeData": { + "maxFeePerGas": "0x39386ff", + "maxPriorityFeePerGas": "0x39386ff", + "gas": "0x40e1e", + "balanceNeeded": "0xe8098abd200", + "currentBalance": "0x19da31426600", + "error": "" + } + }, + "estimatedProcessingTimeInSeconds": 0, + "quoteId": "ab32cd90-666e-4fed-911d-dbb8ef8a790d", + "quoteRequestIndex": 1 + }, + { + "quote": { + "requestId": "0xf524cb3593f91ac707d5914a28e2c7bb83ef4ec7e2c6d28bfbbfe2411611fa50", + "bridgeId": "1inch", + "srcChainId": 56, + "destChainId": 56, + "aggregator": "1inch", + "aggregatorType": "AGG", + "srcAsset": { + "address": "0xf8a0bf9cf54bb92f17374d9e9a321e6a111a51bd", + "chainId": 56, + "assetId": "eip155:56/erc20:0xf8a0bf9cf54bb92f17374d9e9a321e6a111a51bd", + "symbol": "LINK", + "decimals": 18, + "name": "BNB pegged ChainLink", + "coingeckoId": "chainlink", + "aggregators": [ + "pancakeTop100", + "oneInch", + "liFi", + "trustWallet", + "socket", + "rubic", + "squid", + "rango", + "sonarwatch", + "sushiSwap" + ], + "occurrences": 13, + "iconUrl": "https://static.cx.metamask.io/api/v2/tokenIcons/assets/eip155/56/erc20/0xf8a0bf9cf54bb92f17374d9e9a321e6a111a51bd.png", + "metadata": { + "storage": { + "balance": 1, + "approval": 2 + } + } + }, + "srcTokenAmount": "487747159749581540", + "destAsset": { + "address": "0x55d398326f99059ff775485246999027b3197955", + "chainId": 56, + "assetId": "eip155:56/erc20:0x55d398326f99059ff775485246999027b3197955", + "symbol": "USDT", + "decimals": 18, + "name": "Tether USD", + "coingeckoId": "binance-bridged-usdt-bnb-smart-chain", + "aggregators": [ + "pancakeExtended", + "oneInch", + "liFi", + "trustWallet", + "socket", + "rubic", + "squid", + "rango", + "sonarwatch", + "sushiSwap" + ], + "occurrences": 11, + "iconUrl": "https://static.cx.metamask.io/api/v2/tokenIcons/assets/eip155/56/erc20/0x55d398326f99059ff775485246999027b3197955.png", + "metadata": { + "storage": { + "balance": 1, + "approval": 2 + } + } + }, + "destTokenAmount": "4845912262241738849", + "minDestTokenAmount": "4748994016996904072", + "walletAddress": "0x141d32a89a1e0a5ef360034a2f60a4b917c18838", + "destWalletAddress": "0x141d32a89a1e0a5ef360034a2f60a4b917c18838", + "feeData": { + "metabridge": { + "amount": "42776022491415097", + "asset": { + "address": "0x55d398326f99059ff775485246999027b3197955", + "chainId": 56, + "assetId": "eip155:56/erc20:0x55d398326f99059ff775485246999027b3197955", + "symbol": "USDT", + "decimals": 18, + "name": "Tether USD", + "coingeckoId": "binance-bridged-usdt-bnb-smart-chain", + "aggregators": [ + "pancakeExtended", + "oneInch", + "liFi", + "trustWallet", + "socket", + "rubic", + "squid", + "rango", + "sonarwatch", + "sushiSwap" + ], + "occurrences": 11, + "iconUrl": "https://static.cx.metamask.io/api/v2/tokenIcons/assets/eip155/56/erc20/0x55d398326f99059ff775485246999027b3197955.png", + "metadata": { + "storage": { + "balance": 1, + "approval": 2 + } + } + }, + "quoteBpsFee": 87.5, + "baseBpsFee": 87.5, + "usd": "0.04275540444857424" + } + }, + "bridges": ["1inch"], + "protocols": ["1inch"], + "steps": [], + "slippage": 2, + "gasSponsored": false, + "gasIncluded": false, + "gasIncluded7702": false, + "priceData": { + "totalFromAmountUsd": "4.906736427080791", + "totalToAmountUsd": "4.843576532531339", + "priceImpact": "0.004158464674862844", + "totalFeeAmountUsd": "0.04275540444857424" + } + }, + "approval": { + "chainId": 56, + "to": "0xf8a0bf9cf54bb92f17374d9e9a321e6a111a51bd", + "from": "0x141d32a89a1e0a5ef360034a2f60a4b917c18838", + "value": "0x0", + "data": "0x095ea7b30000000000000000000000001a1ec25dc08e98e5e93f1104b5e5cdd298707d3100000000000000000000000000000000000000000000000006c4d37525145ae4", + "gasLimit": 51261, + "feeEstimate": 2773080000000, + "effectiveGas": 46218, + "gasCost": "0", + "gasIncludedFeeData": { + "maxFeePerGas": "0x39386ff", + "maxPriorityFeePerGas": "0x39386ff", + "gas": "0xb608", + "balanceNeeded": "0x28afe963800", + "currentBalance": "0x1c64da03f600", + "error": "" + } + }, + "trade": { + "chainId": 56, + "to": "0x1a1ec25DC08e98e5E93F1104B5e5cdD298707d31", + "from": "0x141d32a89a1e0a5ef360034a2f60a4b917c18838", + "value": "0x0", + "data": "0x5f5755290000000000000000000000000000000000000000000000000000000000000080000000000000000000000000f8a0bf9cf54bb92f17374d9e9a321e6a111a51bd00000000000000000000000000000000000000000000000006c4d37525145ae400000000000000000000000000000000000000000000000000000000000000c000000000000000000000000000000000000000000000000000000000000000136f6e65496e6368563646656544796e616d6963000000000000000000000000000000000000000000000000000000000000000000000000000000000000000320000000000000000000000000f8a0bf9cf54bb92f17374d9e9a321e6a111a51bd00000000000000000000000055d398326f99059ff775485246999027b319795500000000000000000000000000000000000000000000000006c4d37525145ae400000000000000000000000000000000000000000000000041e7d0e5af8e4c8800000000000000000000000000000000000000000000000000000000000001200000000000000000000000000000000000000000000000000097f890d9814239000000000000000000000000b28da7bc87a9dd1e60849aa7fcb5da24ea913c42000000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000000001e807ed23790000000000000000000000004c3ccc98c01103be72bcfd29e1d2454c98d1a6e3000000000000000000000000f8a0bf9cf54bb92f17374d9e9a321e6a111a51bd00000000000000000000000055d398326f99059ff775485246999027b31979550000000000000000000000004c3ccc98c01103be72bcfd29e1d2454c98d1a6e3000000000000000000000000c590175e458b83680867afd273527ff58f74c02b00000000000000000000000000000000000000000000000006c4d37525145ae4000000000000000000000000000000000000000000000000427cbf5f288cf8f300000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000120000000000000000000000000000000000000000000000000000000000000008100000000000000000000000000000000000000000000000000000000006302a0000000000000000000000000000000000000000000000000427cbf5f288cf8f3ee63c1e580c8d19b4ea42939a4b14260f0c8b4a0d6f70c8496f8a0bf9cf54bb92f17374d9e9a321e6a111a51bd111111125421ca6dc452d289314280a0f8842a65000000000000000000000000000000000000000000000000000000000000007dcbea7c00000000000000000000000000000000000000000000000031", + "gasLimit": 412268, + "feeEstimate": 12876060000000, + "effectiveGas": 214601, + "gasCost": "0", + "gasIncludedFeeData": { + "maxFeePerGas": "0x39386ff", + "maxPriorityFeePerGas": "0x39386ff", + "gas": "0x4319d", + "balanceNeeded": "0xeff8a50cb00", + "currentBalance": "0x19d9db6dbe00", + "error": "" + } + }, + "estimatedProcessingTimeInSeconds": 0, + "quoteId": "6c632f67-6d52-4d5b-b551-8dd189fa64df", + "quoteRequestIndex": 0 + }, + { + "quote": { + "requestId": "0xf90d1f9235b4327b1d99731324833fe658a17cbe54712eab067d2b44f37d7cb3", + "bridgeId": "0x", + "srcChainId": 56, + "destChainId": 56, + "aggregator": "0x", + "aggregatorType": "AGG", + "srcAsset": { + "address": "0xf8a0bf9cf54bb92f17374d9e9a321e6a111a51bd", + "chainId": 56, + "assetId": "eip155:56/erc20:0xf8a0bf9cf54bb92f17374d9e9a321e6a111a51bd", + "symbol": "LINK", + "decimals": 18, + "name": "BNB pegged ChainLink", + "coingeckoId": "chainlink", + "aggregators": [ + "pancakeTop100", + "oneInch", + "liFi", + "trustWallet", + "socket", + "rubic", + "squid", + "rango", + "sonarwatch", + "sushiSwap" + ], + "occurrences": 13, + "iconUrl": "https://static.cx.metamask.io/api/v2/tokenIcons/assets/eip155/56/erc20/0xf8a0bf9cf54bb92f17374d9e9a321e6a111a51bd.png", + "metadata": { + "storage": { + "balance": 1, + "approval": 2 + } + } + }, + "srcTokenAmount": "487747159749581540", + "destAsset": { + "address": "0x55d398326f99059ff775485246999027b3197955", + "chainId": 56, + "assetId": "eip155:56/erc20:0x55d398326f99059ff775485246999027b3197955", + "symbol": "USDT", + "decimals": 18, + "name": "Tether USD", + "coingeckoId": "binance-bridged-usdt-bnb-smart-chain", + "aggregators": [ + "pancakeExtended", + "oneInch", + "liFi", + "trustWallet", + "socket", + "rubic", + "squid", + "rango", + "sonarwatch", + "sushiSwap" + ], + "occurrences": 11, + "iconUrl": "https://static.cx.metamask.io/api/v2/tokenIcons/assets/eip155/56/erc20/0x55d398326f99059ff775485246999027b3197955.png", + "metadata": { + "storage": { + "balance": 1, + "approval": 2 + } + } + }, + "destTokenAmount": "4850193215727346824", + "minDestTokenAmount": "4753189351412799887", + "walletAddress": "0x141d32a89a1e0a5ef360034a2f60a4b917c18838", + "destWalletAddress": "0x141d32a89a1e0a5ef360034a2f60a4b917c18838", + "feeData": { + "metabridge": { + "amount": "42813811488135470", + "asset": { + "address": "0x55d398326f99059ff775485246999027b3197955", + "chainId": 56, + "assetId": "eip155:56/erc20:0x55d398326f99059ff775485246999027b3197955", + "symbol": "USDT", + "decimals": 18, + "name": "Tether USD", + "coingeckoId": "binance-bridged-usdt-bnb-smart-chain", + "aggregators": [ + "pancakeExtended", + "oneInch", + "liFi", + "trustWallet", + "socket", + "rubic", + "squid", + "rango", + "sonarwatch", + "sushiSwap" + ], + "occurrences": 11, + "iconUrl": "https://static.cx.metamask.io/api/v2/tokenIcons/assets/eip155/56/erc20/0x55d398326f99059ff775485246999027b3197955.png", + "metadata": { + "storage": { + "balance": 1, + "approval": 2 + } + } + }, + "quoteBpsFee": 87.5, + "baseBpsFee": 87.5, + "usd": "0.04279317523099819" + } + }, + "bridges": ["0x"], + "protocols": ["0x"], + "steps": [], + "slippage": 2, + "gasSponsored": false, + "gasIncluded": false, + "gasIncluded7702": false, + "priceData": { + "totalFromAmountUsd": "4.906736427080791", + "totalToAmountUsd": "4.847855422597367", + "priceImpact": "0.00327872293356457", + "totalFeeAmountUsd": "0.04279317523099819" + } + }, + "approval": { + "chainId": 56, + "to": "0xf8a0bf9cf54bb92f17374d9e9a321e6a111a51bd", + "from": "0x141d32a89a1e0a5ef360034a2f60a4b917c18838", + "value": "0x0", + "data": "0x095ea7b30000000000000000000000001a1ec25dc08e98e5e93f1104b5e5cdd298707d3100000000000000000000000000000000000000000000000006c4d37525145ae4", + "gasLimit": 51261, + "feeEstimate": 2773080000000, + "effectiveGas": 46218, + "gasCost": "0", + "gasIncludedFeeData": { + "maxFeePerGas": "0x39386ff", + "maxPriorityFeePerGas": "0x39386ff", + "gas": "0xb608", + "balanceNeeded": "0x28afe963800", + "currentBalance": "0x1c64da03f600", + "error": "" + } + }, + "trade": { + "chainId": 56, + "to": "0x1a1ec25DC08e98e5E93F1104B5e5cdD298707d31", + "from": "0x141d32a89a1e0a5ef360034a2f60a4b917c18838", + "value": "0x0", + "data": "0x5f5755290000000000000000000000000000000000000000000000000000000000000080000000000000000000000000f8a0bf9cf54bb92f17374d9e9a321e6a111a51bd00000000000000000000000000000000000000000000000006c4d37525145ae400000000000000000000000000000000000000000000000000000000000000c00000000000000000000000000000000000000000000000000000000000000004307856320000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000005a0000000000000000000000000f8a0bf9cf54bb92f17374d9e9a321e6a111a51bd00000000000000000000000055d398326f99059ff775485246999027b319795500000000000000000000000000000000000000000000000006c4d37525145ae400000000000000000000000000000000000000000000000041f6b8881921198f000000000000000000000000000000000000000000000000000000000000012000000000000000000000000000000000000000000000000000981aef493b192e000000000000000000000000b28da7bc87a9dd1e60849aa7fcb5da24ea913c42000000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000000004642213bc0b000000000000000000000000c2eff1f1ce35d395408a34ad881dbcd978f40b89000000000000000000000000f8a0bf9cf54bb92f17374d9e9a321e6a111a51bd00000000000000000000000000000000000000000000000006c4d37525145ae4000000000000000000000000c2eff1f1ce35d395408a34ad881dbcd978f40b8900000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000000000000000000000000000003841fff991f000000000000000000000000c590175e458b83680867afd273527ff58f74c02b00000000000000000000000055d398326f99059ff775485246999027b319795500000000000000000000000000000000000000000000000043399e53cb43181000000000000000000000000000000000000000000000000000000000000000a0bf5c0b5f7c583628abc005dc000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000020000000000000000000000000000000000000000000000000000000000000040000000000000000000000000000000000000000000000000000000000000020000000000000000000000000000000000000000000000000000000000000001843036d6a6000000000000000000000000c2eff1f1ce35d395408a34ad881dbcd978f40b89000000000000000000000000f8a0bf9cf54bb92f17374d9e9a321e6a111a51bd00000000000000000000000000000000000000000000000006c4d37525145ae40000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000006a079f5f0000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000000000016000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000040f8a0bf9cf54bb92f17374d9e9a321e6a111a51bd010009c4fffd8963efd1fc6a506488495d951d5263988d2555d398326f99059ff775485246999027b3197955000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000008434ee90ca000000000000000000000000d0a67cb08be17475f4315a04c5f0be3e200ef66c00000000000000000000000055d398326f99059ff775485246999027b319795500000000000000000000000000000000000000000000000043e891ef40cc385a000000000000000000000000000000000000000000000000000000000000271000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000088", + "gasLimit": 426980, + "feeEstimate": 13339500000000, + "effectiveGas": 222325, + "gasCost": "0", + "gasIncludedFeeData": { + "maxFeePerGas": "0x39386ff", + "maxPriorityFeePerGas": "0x39386ff", + "gas": "0x457ed", + "balanceNeeded": "0xf888e74fb00", + "currentBalance": "0x19d9db6dbe00", + "error": "" + } + }, + "estimatedProcessingTimeInSeconds": 0, + "quoteId": "e2250eb8-7ceb-4b33-a036-2595e8b3eee4", + "quoteRequestIndex": 0 + }, + { + "quote": { + "requestId": "0x8b08a9f97df366fee37fc51b52432b4bd534134ebebfb09f43911dec8296db22", + "bridgeId": "0x", + "srcChainId": 56, + "destChainId": 56, + "aggregator": "0x", + "aggregatorType": "AGG", + "srcAsset": { + "address": "0x1af3f329e8be154074d8769d1ffa4ee058b1dbc3", + "chainId": 56, + "assetId": "eip155:56/erc20:0x1af3f329e8be154074d8769d1ffa4ee058b1dbc3", + "symbol": "DAI", + "decimals": 18, + "name": "BNB pegged Dai Token", + "coingeckoId": "binance-peg-dai", + "aggregators": [ + "pancakeExtended", + "oneInch", + "liFi", + "trustWallet", + "socket", + "rubic", + "rango", + "sonarwatch", + "sushiSwap", + "binanceDex" + ], + "occurrences": 12, + "iconUrl": "https://static.cx.metamask.io/api/v2/tokenIcons/assets/eip155/56/erc20/0x1af3f329e8be154074d8769d1ffa4ee058b1dbc3.png", + "metadata": { + "storage": { + "balance": 1, + "approval": 2 + } + } + }, + "srcTokenAmount": "991250000000000000", + "destAsset": { + "address": "0x55d398326f99059ff775485246999027b3197955", + "chainId": 56, + "assetId": "eip155:56/erc20:0x55d398326f99059ff775485246999027b3197955", + "symbol": "USDT", + "decimals": 18, + "name": "Tether USD", + "coingeckoId": "binance-bridged-usdt-bnb-smart-chain", + "aggregators": [ + "pancakeExtended", + "oneInch", + "liFi", + "trustWallet", + "socket", + "rubic", + "squid", + "rango", + "sonarwatch", + "sushiSwap" + ], + "occurrences": 11, + "iconUrl": "https://static.cx.metamask.io/api/v2/tokenIcons/assets/eip155/56/erc20/0x55d398326f99059ff775485246999027b3197955.png", + "metadata": { + "storage": { + "balance": 1, + "approval": 2 + } + } + }, + "destTokenAmount": "990599597874191689", + "minDestTokenAmount": "970787605916707855", + "walletAddress": "0x141d32a89a1e0a5ef360034a2f60a4b917c18838", + "destWalletAddress": "0x141d32a89a1e0a5ef360034a2f60a4b917c18838", + "feeData": { + "metabridge": { + "amount": "8750000000000000", + "asset": { + "address": "0x1af3f329e8be154074d8769d1ffa4ee058b1dbc3", + "chainId": 56, + "assetId": "eip155:56/erc20:0x1af3f329e8be154074d8769d1ffa4ee058b1dbc3", + "symbol": "DAI", + "decimals": 18, + "name": "BNB pegged Dai Token", + "coingeckoId": "binance-peg-dai", + "aggregators": [ + "pancakeExtended", + "oneInch", + "liFi", + "trustWallet", + "socket", + "rubic", + "rango", + "sonarwatch", + "sushiSwap", + "binanceDex" + ], + "occurrences": 12, + "iconUrl": "https://static.cx.metamask.io/api/v2/tokenIcons/assets/eip155/56/erc20/0x1af3f329e8be154074d8769d1ffa4ee058b1dbc3.png", + "metadata": { + "storage": { + "balance": 1, + "approval": 2 + } + } + }, + "quoteBpsFee": 87.5, + "baseBpsFee": 87.5, + "usd": "0.008742761859012143" + } + }, + "bridges": ["0x"], + "protocols": ["0x"], + "steps": [], + "slippage": 2, + "gasSponsored": false, + "gasIncluded": false, + "gasIncluded7702": false, + "priceData": { + "totalFromAmountUsd": "0.999172783887102", + "totalToAmountUsd": "0.9901221288680164", + "priceImpact": "0.0003108681615314265", + "totalFeeAmountUsd": "0.008742761859012143" + } + }, + "approval": { + "chainId": 56, + "to": "0x1af3f329e8be154074d8769d1ffa4ee058b1dbc3", + "from": "0x141d32a89a1e0a5ef360034a2f60a4b917c18838", + "value": "0x0", + "data": "0x095ea7b30000000000000000000000001a1ec25dc08e98e5e93f1104b5e5cdd298707d310000000000000000000000000000000000000000000000000de0b6b3a7640000", + "gasLimit": 51234, + "feeEstimate": 2771640000000, + "effectiveGas": 46194, + "gasCost": "0", + "gasIncludedFeeData": { + "maxFeePerGas": "0x39386ff", + "maxPriorityFeePerGas": "0x39386ff", + "gas": "0xb5f0", + "balanceNeeded": "0x28aa8c19000", + "currentBalance": "0x1c64da03f600", + "error": "" + } + }, + "trade": { + "chainId": 56, + "to": "0x1a1ec25DC08e98e5E93F1104B5e5cdD298707d31", + "from": "0x141d32a89a1e0a5ef360034a2f60a4b917c18838", + "value": "0x0", + "data": "0x5f57552900000000000000000000000000000000000000000000000000000000000000800000000000000000000000001af3f329e8be154074d8769d1ffa4ee058b1dbc30000000000000000000000000000000000000000000000000de0b6b3a764000000000000000000000000000000000000000000000000000000000000000000c00000000000000000000000000000000000000000000000000000000000000004307856320000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000005a00000000000000000000000001af3f329e8be154074d8769d1ffa4ee058b1dbc300000000000000000000000055d398326f99059ff775485246999027b31979550000000000000000000000000000000000000000000000000dc1a09f859b20000000000000000000000000000000000000000000000000000d78ee2f23046c0f0000000000000000000000000000000000000000000000000000000000000120000000000000000000000000000000000000000000000000001f161421c8e000000000000000000000000000b28da7bc87a9dd1e60849aa7fcb5da24ea913c42000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000004642213bc0b000000000000000000000000c2eff1f1ce35d395408a34ad881dbcd978f40b890000000000000000000000001af3f329e8be154074d8769d1ffa4ee058b1dbc30000000000000000000000000000000000000000000000000dc1a09f859b2000000000000000000000000000c2eff1f1ce35d395408a34ad881dbcd978f40b8900000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000000000000000000000000000003841fff991f000000000000000000000000c590175e458b83680867afd273527ff58f74c02b00000000000000000000000055d398326f99059ff775485246999027b31979550000000000000000000000000000000000000000000000000d9c1fa28e79fe2400000000000000000000000000000000000000000000000000000000000000a095d749b96952913df66364d4000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000020000000000000000000000000000000000000000000000000000000000000040000000000000000000000000000000000000000000000000000000000000020000000000000000000000000000000000000000000000000000000000000001843036d6a6000000000000000000000000c2eff1f1ce35d395408a34ad881dbcd978f40b890000000000000000000000001af3f329e8be154074d8769d1ffa4ee058b1dbc30000000000000000000000000000000000000000000000000dc1a09f859b20000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000006a079f5f00000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000000160000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000401af3f329e8be154074d8769d1ffa4ee058b1dbc30000006400000000000000000000000000000001000276a455d398326f99059ff775485246999027b3197955000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000008434ee90ca000000000000000000000000d0a67cb08be17475f4315a04c5f0be3e200ef66c00000000000000000000000055d398326f99059ff775485246999027b31979550000000000000000000000000000000000000000000000000dbf5115f9ef9d490000000000000000000000000000000000000000000000000000000000002710000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000e5", + "gasLimit": 396177, + "feeEstimate": 12369240000000, + "effectiveGas": 206154, + "gasCost": "0", + "gasIncludedFeeData": { + "maxFeePerGas": "0x39386ff", + "maxPriorityFeePerGas": "0x39386ff", + "gas": "0x407b6", + "balanceNeeded": "0xe69af92fa00", + "currentBalance": "0x19da31426600", + "error": "" + } + }, + "estimatedProcessingTimeInSeconds": 0, + "quoteId": "0ca2ede5-cd60-40f8-98da-608a3fd10e3f", + "quoteRequestIndex": 1 + }, + { + "quote": { + "requestId": "0xaec6a7b9b4292b82c6ccc56017df437b609f3f5bebe60d919ecdf1f3b23381e4", + "bridgeId": "openocean", + "srcChainId": 56, + "destChainId": 56, + "aggregator": "openocean", + "aggregatorType": "AGG", + "srcAsset": { + "address": "0x1af3f329e8be154074d8769d1ffa4ee058b1dbc3", + "chainId": 56, + "assetId": "eip155:56/erc20:0x1af3f329e8be154074d8769d1ffa4ee058b1dbc3", + "symbol": "DAI", + "decimals": 18, + "name": "BNB pegged Dai Token", + "coingeckoId": "binance-peg-dai", + "aggregators": [ + "pancakeExtended", + "oneInch", + "liFi", + "trustWallet", + "socket", + "rubic", + "rango", + "sonarwatch", + "sushiSwap", + "binanceDex" + ], + "occurrences": 12, + "iconUrl": "https://static.cx.metamask.io/api/v2/tokenIcons/assets/eip155/56/erc20/0x1af3f329e8be154074d8769d1ffa4ee058b1dbc3.png", + "metadata": { + "storage": { + "balance": 1, + "approval": 2 + } + } + }, + "srcTokenAmount": "991250000000000000", + "destAsset": { + "address": "0x55d398326f99059ff775485246999027b3197955", + "chainId": 56, + "assetId": "eip155:56/erc20:0x55d398326f99059ff775485246999027b3197955", + "symbol": "USDT", + "decimals": 18, + "name": "Tether USD", + "coingeckoId": "binance-bridged-usdt-bnb-smart-chain", + "aggregators": [ + "pancakeExtended", + "oneInch", + "liFi", + "trustWallet", + "socket", + "rubic", + "squid", + "rango", + "sonarwatch", + "sushiSwap" + ], + "occurrences": 11, + "iconUrl": "https://static.cx.metamask.io/api/v2/tokenIcons/assets/eip155/56/erc20/0x55d398326f99059ff775485246999027b3197955.png", + "metadata": { + "storage": { + "balance": 1, + "approval": 2 + } + } + }, + "destTokenAmount": "990603665402661265", + "minDestTokenAmount": "970791592094608039", + "walletAddress": "0x141d32a89a1e0a5ef360034a2f60a4b917c18838", + "destWalletAddress": "0x141d32a89a1e0a5ef360034a2f60a4b917c18838", + "feeData": { + "metabridge": { + "amount": "8750000000000000", + "asset": { + "address": "0x1af3f329e8be154074d8769d1ffa4ee058b1dbc3", + "chainId": 56, + "assetId": "eip155:56/erc20:0x1af3f329e8be154074d8769d1ffa4ee058b1dbc3", + "symbol": "DAI", + "decimals": 18, + "name": "BNB pegged Dai Token", + "coingeckoId": "binance-peg-dai", + "aggregators": [ + "pancakeExtended", + "oneInch", + "liFi", + "trustWallet", + "socket", + "rubic", + "rango", + "sonarwatch", + "sushiSwap", + "binanceDex" + ], + "occurrences": 12, + "iconUrl": "https://static.cx.metamask.io/api/v2/tokenIcons/assets/eip155/56/erc20/0x1af3f329e8be154074d8769d1ffa4ee058b1dbc3.png", + "metadata": { + "storage": { + "balance": 1, + "approval": 2 + } + } + }, + "quoteBpsFee": 87.5, + "baseBpsFee": 87.5, + "usd": "0.008742761859012143" + } + }, + "bridges": ["openocean"], + "protocols": ["openocean"], + "steps": [], + "slippage": 2, + "gasSponsored": false, + "gasIncluded": false, + "gasIncluded7702": false, + "priceData": { + "totalFromAmountUsd": "0.999172783887102", + "totalToAmountUsd": "0.9901261944359373", + "priceImpact": "0.00030676331027444464", + "totalFeeAmountUsd": "0.008742761859012143" + } + }, + "approval": { + "chainId": 56, + "to": "0x1af3f329e8be154074d8769d1ffa4ee058b1dbc3", + "from": "0x141d32a89a1e0a5ef360034a2f60a4b917c18838", + "value": "0x0", + "data": "0x095ea7b30000000000000000000000001a1ec25dc08e98e5e93f1104b5e5cdd298707d310000000000000000000000000000000000000000000000000de0b6b3a7640000", + "gasLimit": 51234, + "feeEstimate": 2771640000000, + "effectiveGas": 46194, + "gasCost": "0", + "gasIncludedFeeData": { + "maxFeePerGas": "0x39386ff", + "maxPriorityFeePerGas": "0x39386ff", + "gas": "0xb5f0", + "balanceNeeded": "0x28aa8c19000", + "currentBalance": "0x1c64da03f600", + "error": "" + } + }, + "trade": { + "chainId": 56, + "to": "0x1a1ec25DC08e98e5E93F1104B5e5cdD298707d31", + "from": "0x141d32a89a1e0a5ef360034a2f60a4b917c18838", + "value": "0x0", + "data": "0x5f57552900000000000000000000000000000000000000000000000000000000000000800000000000000000000000001af3f329e8be154074d8769d1ffa4ee058b1dbc30000000000000000000000000000000000000000000000000de0b6b3a764000000000000000000000000000000000000000000000000000000000000000000c000000000000000000000000000000000000000000000000000000000000000136f70656e4f6365616e46656544796e616d6963000000000000000000000000000000000000000000000000000000000000000000000000000000000000000f200000000000000000000000001af3f329e8be154074d8769d1ffa4ee058b1dbc300000000000000000000000055d398326f99059ff775485246999027b31979550000000000000000000000000000000000000000000000000dc1a09f859b20000000000000000000000000000000000000000000000000000d78f1cf3dbc2aa70000000000000000000000000000000000000000000000000000000000000120000000000000000000000000000000000000000000000000001f161421c8e000000000000000000000000000b28da7bc87a9dd1e60849aa7fcb5da24ea913c4200000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000de490411a320000000000000000000000001911c4fd8cccc5931ab39e66779ea4b5a851827a000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000001c00000000000000000000000001af3f329e8be154074d8769d1ffa4ee058b1dbc300000000000000000000000055d398326f99059ff775485246999027b31979550000000000000000000000001911c4fd8cccc5931ab39e66779ea4b5a851827a000000000000000000000000c590175e458b83680867afd273527ff58f74c02b0000000000000000000000000000000000000000000000000dc1a09f859b20000000000000000000000000000000000000000000000000000d78f1cf3dbc2aa70000000000000000000000000000000000000000000000000dbf54c9058689910000000000000000000000000000000000000000000000000000000000000002000000000000000000000000ef53a4bd0e16ccc9116770a41c4bd3ad1147bd4f00000000000000000000000000000000000000000000000000000000000001400000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000500000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000000000000000000000000000001c00000000000000000000000000000000000000000000000000000000000000300000000000000000000000000000000000000000000000000000000000000088000000000000000000000000000000000000000000000000000000000000009a000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000800000000000000000000000000000000000000000000000000000000000000064eb5625d90000000000000000000000001af3f329e8be154074d8769d1ffa4ee058b1dbc300000000000000000000000031c2f6fcff4f8759b3bd5bf0e1084a055615c7680000000000000000000000000000000000000000000000000dc1a09f859b20000000000000000000000000000000000000000000000000000000000000000000000000000000000031c2f6fcff4f8759b3bd5bf0e1084a055615c768000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000080000000000000000000000000000000000000000000000000000000000000008487517c450000000000000000000000001af3f329e8be154074d8769d1ffa4ee058b1dbc3000000000000000000000000d9c500dff816a1da21a48a732d3498bf09dc9aeb0000000000000000000000000000000000000000000000000dc1a09f859b2000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000d9c500dff816a1da21a48a732d3498bf09dc9aeb00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000008000000000000000000000000000000000000000000000000000000000000004c424856bc300000000000000000000000000000000000000000000000000000000000000400000000000000000000000000000000000000000000000000000000000000080000000000000000000000000000000000000000000000000000000000000000110000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000002000000000000000000000000000000000000000000000000000000000000003e0000000000000000000000000000000000000000000000000000000000000004000000000000000000000000000000000000000000000000000000000000000800000000000000000000000000000000000000000000000000000000000000003070b0e000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000030000000000000000000000000000000000000000000000000000000000000060000000000000000000000000000000000000000000000000000000000000024000000000000000000000000000000000000000000000000000000000000002c000000000000000000000000000000000000000000000000000000000000001c000000000000000000000000000000000000000000000000000000000000000200000000000000000000000001af3f329e8be154074d8769d1ffa4ee058b1dbc300000000000000000000000000000000000000000000000000000000000000800000000000000000000000000000000000000000000000000dc1a09f859b200000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000002000000000000000000000000055d398326f99059ff775485246999027b319795500000000000000000000000000000000000000000000000000000000000000360000000000000000000000000000000000000000000000000000000000000000000000000000000000000000a0ffb9c1ce1fe56963b0321b32e7a0302114058b00000000000000000000000000000000000000000000000000000000000000c00000000000000000000000000000000000000000000000000000000000010000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000600000000000000000000000001af3f329e8be154074d8769d1ffa4ee058b1dbc300000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000006000000000000000000000000055d398326f99059ff775485246999027b31979550000000000000000000000001911c4fd8cccc5931ab39e66779ea4b5a851827a000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000008000000000000000000000000000000000000000000000000000000000000000648a6a1e8500000000000000000000000055d398326f99059ff775485246999027b3197955000000000000000000000000922164bbbd36acf9e854acbbf32facc949fcaeef0000000000000000000000000000000000000000000000000dbf54c90586899100000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000008000000000000000000000000000000000000000000000000000000000000001a49f86542200000000000000000000000055d398326f99059ff775485246999027b319795500000000000000000000000000000001000000000000000000000000000000010000000000000000000000000000000000000000000000000000000000000080000000000000000000000000000000000000000000000000000000000000004400000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000800000000000000000000000000000000000000000000000000000000000000064d1660f9900000000000000000000000055d398326f99059ff775485246999027b3197955000000000000000000000000c590175e458b83680867afd273527ff58f74c02b0000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000a4", + "gasLimit": 707997, + "feeEstimate": 22191600000000, + "effectiveGas": 369860, + "gasCost": "0", + "gasIncludedFeeData": { + "maxFeePerGas": "0x39386ff", + "maxPriorityFeePerGas": "0x39386ff", + "gas": "0x733be", + "balanceNeeded": "0x19c1bc633200", + "currentBalance": "0x19da31426600", + "error": "" + } + }, + "estimatedProcessingTimeInSeconds": 0, + "quoteId": "398d41f7-9a17-4a22-a6d3-1e5f99df79f3", + "quoteRequestIndex": 1 + }, + { + "quote": { + "requestId": "0x6d6fac548a691b3b652cd18b45957a43104508757aa376a62795daefc4eb1017", + "bridgeId": "kyberswap", + "srcChainId": 56, + "destChainId": 56, + "aggregator": "kyberswap", + "aggregatorType": "AGG", + "srcAsset": { + "address": "0x1af3f329e8be154074d8769d1ffa4ee058b1dbc3", + "chainId": 56, + "assetId": "eip155:56/erc20:0x1af3f329e8be154074d8769d1ffa4ee058b1dbc3", + "symbol": "DAI", + "decimals": 18, + "name": "BNB pegged Dai Token", + "coingeckoId": "binance-peg-dai", + "aggregators": [ + "pancakeExtended", + "oneInch", + "liFi", + "trustWallet", + "socket", + "rubic", + "rango", + "sonarwatch", + "sushiSwap", + "binanceDex" + ], + "occurrences": 12, + "iconUrl": "https://static.cx.metamask.io/api/v2/tokenIcons/assets/eip155/56/erc20/0x1af3f329e8be154074d8769d1ffa4ee058b1dbc3.png", + "metadata": { + "storage": { + "balance": 1, + "approval": 2 + } + } + }, + "srcTokenAmount": "991250000000000000", + "destAsset": { + "address": "0x55d398326f99059ff775485246999027b3197955", + "chainId": 56, + "assetId": "eip155:56/erc20:0x55d398326f99059ff775485246999027b3197955", + "symbol": "USDT", + "decimals": 18, + "name": "Tether USD", + "coingeckoId": "binance-bridged-usdt-bnb-smart-chain", + "aggregators": [ + "pancakeExtended", + "oneInch", + "liFi", + "trustWallet", + "socket", + "rubic", + "squid", + "rango", + "sonarwatch", + "sushiSwap" + ], + "occurrences": 11, + "iconUrl": "https://static.cx.metamask.io/api/v2/tokenIcons/assets/eip155/56/erc20/0x55d398326f99059ff775485246999027b3197955.png", + "metadata": { + "storage": { + "balance": 1, + "approval": 2 + } + } + }, + "destTokenAmount": "989547232510600724", + "minDestTokenAmount": "969756287860388709", + "walletAddress": "0x141d32a89a1e0a5ef360034a2f60a4b917c18838", + "destWalletAddress": "0x141d32a89a1e0a5ef360034a2f60a4b917c18838", + "feeData": { + "metabridge": { + "amount": "8750000000000000", + "asset": { + "address": "0x1af3f329e8be154074d8769d1ffa4ee058b1dbc3", + "chainId": 56, + "assetId": "eip155:56/erc20:0x1af3f329e8be154074d8769d1ffa4ee058b1dbc3", + "symbol": "DAI", + "decimals": 18, + "name": "BNB pegged Dai Token", + "coingeckoId": "binance-peg-dai", + "aggregators": [ + "pancakeExtended", + "oneInch", + "liFi", + "trustWallet", + "socket", + "rubic", + "rango", + "sonarwatch", + "sushiSwap", + "binanceDex" + ], + "occurrences": 12, + "iconUrl": "https://static.cx.metamask.io/api/v2/tokenIcons/assets/eip155/56/erc20/0x1af3f329e8be154074d8769d1ffa4ee058b1dbc3.png", + "metadata": { + "storage": { + "balance": 1, + "approval": 2 + } + } + }, + "quoteBpsFee": 87.5, + "baseBpsFee": 87.5, + "usd": "0.008742761859012143" + } + }, + "bridges": ["kyberswap"], + "protocols": ["kyberswap"], + "steps": [], + "slippage": 2, + "gasSponsored": false, + "gasIncluded": false, + "gasIncluded7702": false, + "priceData": { + "totalFromAmountUsd": "0.999172783887102", + "totalToAmountUsd": "0.9890702707445307", + "priceImpact": "0.0013728898087870933", + "totalFeeAmountUsd": "0.008742761859012143" + } + }, + "approval": { + "chainId": 56, + "to": "0x1af3f329e8be154074d8769d1ffa4ee058b1dbc3", + "from": "0x141d32a89a1e0a5ef360034a2f60a4b917c18838", + "value": "0x0", + "data": "0x095ea7b30000000000000000000000001a1ec25dc08e98e5e93f1104b5e5cdd298707d310000000000000000000000000000000000000000000000000de0b6b3a7640000", + "gasLimit": 51234, + "feeEstimate": 2771640000000, + "effectiveGas": 46194, + "gasCost": "0", + "gasIncludedFeeData": { + "maxFeePerGas": "0x39386ff", + "maxPriorityFeePerGas": "0x39386ff", + "gas": "0xb5f0", + "balanceNeeded": "0x28aa8c19000", + "currentBalance": "0x1c64da03f600", + "error": "" + } + }, + "trade": { + "chainId": 56, + "to": "0x1a1ec25DC08e98e5E93F1104B5e5cdD298707d31", + "from": "0x141d32a89a1e0a5ef360034a2f60a4b917c18838", + "value": "0x0", + "data": "0x5f57552900000000000000000000000000000000000000000000000000000000000000800000000000000000000000001af3f329e8be154074d8769d1ffa4ee058b1dbc30000000000000000000000000000000000000000000000000de0b6b3a764000000000000000000000000000000000000000000000000000000000000000000c000000000000000000000000000000000000000000000000000000000000000136b796265725377617046656544796e616d6963000000000000000000000000000000000000000000000000000000000000000000000000000000000000000a200000000000000000000000001af3f329e8be154074d8769d1ffa4ee058b1dbc300000000000000000000000055d398326f99059ff775485246999027b31979550000000000000000000000000000000000000000000000000dc1a09f859b20000000000000000000000000000000000000000000000000000d754434b09eb3650000000000000000000000000000000000000000000000000000000000000120000000000000000000000000000000000000000000000000001f161421c8e000000000000000000000000000b28da7bc87a9dd1e60849aa7fcb5da24ea913c42000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000008e4e21fd0e900000000000000000000000000000000000000000000000000000000000000200000000000000000000000008f10b468b06c6fd214b65f87778827f7d113f996000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000000000000000000000000000005a000000000000000000000000000000000000000000000000000000000000007e000000000000000000000000000000000000000000000000000000000000004e000000000000000000dc1a09f859b200000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000000e000000000000000000000000000000000000000000000000000000000000000414ec602280a16806da15860e1039db1fa835f6ce1af866fdbbe21015e2e46834037f9315d68e89fc68ecec1a08e85fdc47cc46c3ba92017f68f7ac8240339aa061b0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000003e0000000000000000000000000c590175e458b83680867afd273527ff58f74c02b0000000000000000000000000000000000000000000000000000000000000140000000000000000000000000000000000000000000000000000000000000018000000000000000000d118bcabeecf80000000000000000000e71b5744c49480000000000000000000dc1a09f859b200000000000000000000dbb93f71243e615000000000000000000000000000000000000e6659c7cfe0000000f42400000000000000000000000000000004f82e73edb06d29ff62c91ec8f5ff06571bdeb290000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000006a07a2e400000000000000000000000000000000000000000000000000000000000003c0000000000000000000000000000000000000000000000000000000000000000161f598cd00000000000000003261c1bf28a7663c8ecccf14914a2c02ce17e5660000000000000000000000000000000000000000000000000000000000000002000000000000000000000000000000000000000000000000000000000000004000000000000000000000000000000000000000000000000000000000000001a00000000000000000000000001af3f329e8be154074d8769d1ffa4ee058b1dbc38000000000000000000000e6cb1aa88000000000000000000dc1a09f859b20000000000000000000000000000000000000000000000000000000000000000060000000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000000000200000000000000000000000000000000000000000000000000dc1a09f859b2000567e636a00000000000200015455c918e405a2831fbff8595c0aae35ee3db9d10000000000000000000000000000000000000000000000000000000000000080000000000000000000000000c590175e458b83680867afd273527ff58f74c02b00000000000000000000000000000000000000000000000000000000000000200000000100000000000003e8e0caab61ee7a12d03b268e1f6a56537ac1b61d1300000000000000000000000055d398326f99059ff775485246999027b319795580000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000060000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001af3f329e8be154074d8769d1ffa4ee058b1dbc300000000000000000000000055d398326f99059ff775485246999027b3197955000000000000000000000000000000000000000000000000000000000000016000000000000000000000000000000000000000000000000000000000000001a000000000000000000000000000000000000000000000000000000000000001e00000000000000000000000000000000000000000000000000000000000000200000000000000000000000000c590175e458b83680867afd273527ff58f74c02b0000000000000000000000000000000000000000000000000dc1a09f859b20000000000000000000000000000000000000000000000000000d754434b09eb365000000000000000000000000000000000000000000000000000000000000020000000000000000000000000000000000000000000000000000000000000002200000000000000000000000000000000000000000000000000000000000000001000000000000000000000000e0caab61ee7a12d03b268e1f6a56537ac1b61d1300000000000000000000000000000000000000000000000000000000000000010000000000000000000000000000000000000000000000000dc1a09f859b200000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000ae7b22536f75726365223a226d6574616d61736b222c22416d6f756e74496e555344223a22302e393930323831222c22416d6f756e744f7574555344223a22302e393839313432222c22416d6f756e744f7574223a22393839353437323332353130363030373234222c22526f7574654944223a223833393235323030594f70476c724f6a3a3438393063326238305f704643627075222c2254696d657374616d70223a313737383838343134387d0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000062", + "gasLimit": 471833, + "feeEstimate": 15428460000000, + "effectiveGas": 257141, + "gasCost": "0", + "gasIncludedFeeData": { + "maxFeePerGas": "0x39386ff", + "maxPriorityFeePerGas": "0x39386ff", + "gas": "0x4ccbb", + "balanceNeeded": "0x112a48579d00", + "currentBalance": "0x19da31426600", + "error": "" + } + }, + "estimatedProcessingTimeInSeconds": 0, + "quoteId": "b57d2d2d-45fd-492e-ae3c-1953df384b4b", + "quoteRequestIndex": 1 + }, + { + "quote": { + "requestId": "0xe18182dee96d515410d7bf8de7fd8b9c01808ae0674fc179bf8aaa13d79e7111", + "bridgeId": "openocean", + "srcChainId": 56, + "destChainId": 56, + "aggregator": "openocean", + "aggregatorType": "AGG", + "srcAsset": { + "address": "0xf8a0bf9cf54bb92f17374d9e9a321e6a111a51bd", + "chainId": 56, + "assetId": "eip155:56/erc20:0xf8a0bf9cf54bb92f17374d9e9a321e6a111a51bd", + "symbol": "LINK", + "decimals": 18, + "name": "BNB pegged ChainLink", + "coingeckoId": "chainlink", + "aggregators": [ + "pancakeTop100", + "oneInch", + "liFi", + "trustWallet", + "socket", + "rubic", + "squid", + "rango", + "sonarwatch", + "sushiSwap" + ], + "occurrences": 13, + "iconUrl": "https://static.cx.metamask.io/api/v2/tokenIcons/assets/eip155/56/erc20/0xf8a0bf9cf54bb92f17374d9e9a321e6a111a51bd.png", + "metadata": { + "storage": { + "balance": 1, + "approval": 2 + } + } + }, + "srcTokenAmount": "487747159749581540", + "destAsset": { + "address": "0x55d398326f99059ff775485246999027b3197955", + "chainId": 56, + "assetId": "eip155:56/erc20:0x55d398326f99059ff775485246999027b3197955", + "symbol": "USDT", + "decimals": 18, + "name": "Tether USD", + "coingeckoId": "binance-bridged-usdt-bnb-smart-chain", + "aggregators": [ + "pancakeExtended", + "oneInch", + "liFi", + "trustWallet", + "socket", + "rubic", + "squid", + "rango", + "sonarwatch", + "sushiSwap" + ], + "occurrences": 11, + "iconUrl": "https://static.cx.metamask.io/api/v2/tokenIcons/assets/eip155/56/erc20/0x55d398326f99059ff775485246999027b3197955.png", + "metadata": { + "storage": { + "balance": 1, + "approval": 2 + } + } + }, + "destTokenAmount": "4850193215727346824", + "minDestTokenAmount": "4753189351412799887", + "walletAddress": "0x141d32a89a1e0a5ef360034a2f60a4b917c18838", + "destWalletAddress": "0x141d32a89a1e0a5ef360034a2f60a4b917c18838", + "feeData": { + "metabridge": { + "amount": "42813811488135470", + "asset": { + "address": "0x55d398326f99059ff775485246999027b3197955", + "chainId": 56, + "assetId": "eip155:56/erc20:0x55d398326f99059ff775485246999027b3197955", + "symbol": "USDT", + "decimals": 18, + "name": "Tether USD", + "coingeckoId": "binance-bridged-usdt-bnb-smart-chain", + "aggregators": [ + "pancakeExtended", + "oneInch", + "liFi", + "trustWallet", + "socket", + "rubic", + "squid", + "rango", + "sonarwatch", + "sushiSwap" + ], + "occurrences": 11, + "iconUrl": "https://static.cx.metamask.io/api/v2/tokenIcons/assets/eip155/56/erc20/0x55d398326f99059ff775485246999027b3197955.png", + "metadata": { + "storage": { + "balance": 1, + "approval": 2 + } + } + }, + "quoteBpsFee": 87.5, + "baseBpsFee": 87.5, + "usd": "0.04279317523099819" + } + }, + "bridges": ["openocean"], + "protocols": ["openocean"], + "steps": [], + "slippage": 2, + "gasSponsored": false, + "gasIncluded": false, + "gasIncluded7702": false, + "priceData": { + "totalFromAmountUsd": "4.906736427080791", + "totalToAmountUsd": "4.847855422597367", + "priceImpact": "0.00327872293356457", + "totalFeeAmountUsd": "0.04279317523099819" + } + }, + "approval": { + "chainId": 56, + "to": "0xf8a0bf9cf54bb92f17374d9e9a321e6a111a51bd", + "from": "0x141d32a89a1e0a5ef360034a2f60a4b917c18838", + "value": "0x0", + "data": "0x095ea7b30000000000000000000000001a1ec25dc08e98e5e93f1104b5e5cdd298707d3100000000000000000000000000000000000000000000000006c4d37525145ae4", + "gasLimit": 51261, + "feeEstimate": 2773080000000, + "effectiveGas": 46218, + "gasCost": "0", + "gasIncludedFeeData": { + "maxFeePerGas": "0x39386ff", + "maxPriorityFeePerGas": "0x39386ff", + "gas": "0xb608", + "balanceNeeded": "0x28afe963800", + "currentBalance": "0x1c64da03f600", + "error": "" + } + }, + "trade": { + "chainId": 56, + "to": "0x1a1ec25DC08e98e5E93F1104B5e5cdD298707d31", + "from": "0x141d32a89a1e0a5ef360034a2f60a4b917c18838", + "value": "0x0", + "data": "0x5f5755290000000000000000000000000000000000000000000000000000000000000080000000000000000000000000f8a0bf9cf54bb92f17374d9e9a321e6a111a51bd00000000000000000000000000000000000000000000000006c4d37525145ae400000000000000000000000000000000000000000000000000000000000000c000000000000000000000000000000000000000000000000000000000000000136f70656e4f6365616e46656544796e616d69630000000000000000000000000000000000000000000000000000000000000000000000000000000000000008c0000000000000000000000000f8a0bf9cf54bb92f17374d9e9a321e6a111a51bd00000000000000000000000055d398326f99059ff775485246999027b319795500000000000000000000000000000000000000000000000006c4d37525145ae400000000000000000000000000000000000000000000000041f6b8881921198f000000000000000000000000000000000000000000000000000000000000012000000000000000000000000000000000000000000000000000981aef493b192e000000000000000000000000b28da7bc87a9dd1e60849aa7fcb5da24ea913c420000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000078490411a320000000000000000000000001911c4fd8cccc5931ab39e66779ea4b5a851827a000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000001c0000000000000000000000000f8a0bf9cf54bb92f17374d9e9a321e6a111a51bd00000000000000000000000055d398326f99059ff775485246999027b31979550000000000000000000000001911c4fd8cccc5931ab39e66779ea4b5a851827a000000000000000000000000c590175e458b83680867afd273527ff58f74c02b00000000000000000000000000000000000000000000000006c4d37525145ae4000000000000000000000000000000000000000000000000428bc8b009db042800000000000000000000000000000000000000000000000043e773f78cab3db60000000000000000000000000000000000000000000000000000000000000002000000000000000000000000ef53a4bd0e16ccc9116770a41c4bd3ad1147bd4f00000000000000000000000000000000000000000000000000000000000001400000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000300000000000000000000000000000000000000000000000000000000000000600000000000000000000000000000000000000000000000000000000000000220000000000000000000000000000000000000000000000000000000000000034000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000800000000000000000000000000000000000000000000000000000000000000104e5b07cdb000000000000000000000000c6faf89f23cbe4bd39e9d16e2685d74545ba7659000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000006c4d37525145ae40000000000000000000000001911c4fd8cccc5931ab39e66779ea4b5a851827a00000000000000000000000000000000000000000000000000000000000000a0000000000000000000000000000000000000000000000000000000000000002ef8a0bf9cf54bb92f17374d9e9a321e6a111a51bd0009c455d398326f99059ff775485246999027b319795500000300000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000008000000000000000000000000000000000000000000000000000000000000000648a6a1e8500000000000000000000000055d398326f99059ff775485246999027b3197955000000000000000000000000922164bbbd36acf9e854acbbf32facc949fcaeef00000000000000000000000000000000000000000000000043e773f78cab3db600000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000008000000000000000000000000000000000000000000000000000000000000001a49f86542200000000000000000000000055d398326f99059ff775485246999027b319795500000000000000000000000000000001000000000000000000000000000000010000000000000000000000000000000000000000000000000000000000000080000000000000000000000000000000000000000000000000000000000000004400000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000800000000000000000000000000000000000000000000000000000000000000064d1660f9900000000000000000000000055d398326f99059ff775485246999027b3197955000000000000000000000000c590175e458b83680867afd273527ff58f74c02b000000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000062", + "gasLimit": 560112, + "feeEstimate": 17533200000000, + "effectiveGas": 292220, + "gasCost": "0", + "gasIncludedFeeData": { + "maxFeePerGas": "0x39386ff", + "maxPriorityFeePerGas": "0x39386ff", + "gas": "0x5b2a0", + "balanceNeeded": "0x146073126000", + "currentBalance": "0x19d9db6dbe00", + "error": "" + } + }, + "estimatedProcessingTimeInSeconds": 0, + "quoteId": "9db2ea49-3fad-494c-ad41-06c0985d53dc", + "quoteRequestIndex": 0 + }, + { + "quote": { + "requestId": "0x970b45400c2dc74b60709a936bce72ec569085257c7d656c79d80f71069c359c", + "bridgeId": "okx", + "srcChainId": 56, + "destChainId": 56, + "aggregator": "okx", + "aggregatorType": "AGG", + "srcAsset": { + "address": "0xf8a0bf9cf54bb92f17374d9e9a321e6a111a51bd", + "chainId": 56, + "assetId": "eip155:56/erc20:0xf8a0bf9cf54bb92f17374d9e9a321e6a111a51bd", + "symbol": "LINK", + "decimals": 18, + "name": "BNB pegged ChainLink", + "coingeckoId": "chainlink", + "aggregators": [ + "pancakeTop100", + "oneInch", + "liFi", + "trustWallet", + "socket", + "rubic", + "squid", + "rango", + "sonarwatch", + "sushiSwap" + ], + "occurrences": 13, + "iconUrl": "https://static.cx.metamask.io/api/v2/tokenIcons/assets/eip155/56/erc20/0xf8a0bf9cf54bb92f17374d9e9a321e6a111a51bd.png", + "metadata": { + "storage": { + "balance": 1, + "approval": 2 + } + } + }, + "srcTokenAmount": "487747159749581540", + "destAsset": { + "address": "0x55d398326f99059ff775485246999027b3197955", + "chainId": 56, + "assetId": "eip155:56/erc20:0x55d398326f99059ff775485246999027b3197955", + "symbol": "USDT", + "decimals": 18, + "name": "Tether USD", + "coingeckoId": "binance-bridged-usdt-bnb-smart-chain", + "aggregators": [ + "pancakeExtended", + "oneInch", + "liFi", + "trustWallet", + "socket", + "rubic", + "squid", + "rango", + "sonarwatch", + "sushiSwap" + ], + "occurrences": 11, + "iconUrl": "https://static.cx.metamask.io/api/v2/tokenIcons/assets/eip155/56/erc20/0x55d398326f99059ff775485246999027b3197955.png", + "metadata": { + "storage": { + "balance": 1, + "approval": 2 + } + } + }, + "destTokenAmount": "4854141442836257601", + "minDestTokenAmount": "4757058613979532448", + "walletAddress": "0x141d32a89a1e0a5ef360034a2f60a4b917c18838", + "destWalletAddress": "0x141d32a89a1e0a5ef360034a2f60a4b917c18838", + "feeData": { + "metabridge": { + "amount": "42848663429828251", + "asset": { + "address": "0x55d398326f99059ff775485246999027b3197955", + "chainId": 56, + "assetId": "eip155:56/erc20:0x55d398326f99059ff775485246999027b3197955", + "symbol": "USDT", + "decimals": 18, + "name": "Tether USD", + "coingeckoId": "binance-bridged-usdt-bnb-smart-chain", + "aggregators": [ + "pancakeExtended", + "oneInch", + "liFi", + "trustWallet", + "socket", + "rubic", + "squid", + "rango", + "sonarwatch", + "sushiSwap" + ], + "occurrences": 11, + "iconUrl": "https://static.cx.metamask.io/api/v2/tokenIcons/assets/eip155/56/erc20/0x55d398326f99059ff775485246999027b3197955.png", + "metadata": { + "storage": { + "balance": 1, + "approval": 2 + } + } + }, + "quoteBpsFee": 87.5, + "baseBpsFee": 87.5, + "usd": "0.04282801037405508" + } + }, + "bridges": ["okx"], + "protocols": ["okx"], + "steps": [], + "slippage": 2, + "gasSponsored": false, + "gasIncluded": false, + "gasIncluded7702": false, + "priceData": { + "totalFromAmountUsd": "4.906736427080791", + "totalToAmountUsd": "4.8518017466608105", + "priceImpact": "0.002467356913468514", + "totalFeeAmountUsd": "0.04282801037405508" + } + }, + "approval": { + "chainId": 56, + "to": "0xf8a0bf9cf54bb92f17374d9e9a321e6a111a51bd", + "from": "0x141d32a89a1e0a5ef360034a2f60a4b917c18838", + "value": "0x0", + "data": "0x095ea7b30000000000000000000000001a1ec25dc08e98e5e93f1104b5e5cdd298707d3100000000000000000000000000000000000000000000000006c4d37525145ae4", + "gasLimit": 51261, + "feeEstimate": 2773080000000, + "effectiveGas": 46218, + "gasCost": "0", + "gasIncludedFeeData": { + "maxFeePerGas": "0x3938700", + "maxPriorityFeePerGas": "0x3938700", + "gas": "0xb608", + "balanceNeeded": "0x28afe963800", + "currentBalance": "0x1c64da03f600", + "error": "Not enough funds" + } + }, + "trade": { + "chainId": 56, + "to": "0x1a1ec25DC08e98e5E93F1104B5e5cdD298707d31", + "from": "0x141d32a89a1e0a5ef360034a2f60a4b917c18838", + "value": "0x0", + "data": "0x5f5755290000000000000000000000000000000000000000000000000000000000000080000000000000000000000000f8a0bf9cf54bb92f17374d9e9a321e6a111a51bd00000000000000000000000000000000000000000000000006c4d37525145ae400000000000000000000000000000000000000000000000000000000000000c000000000000000000000000000000000000000000000000000000000000000046f6b7836000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000cc0000000000000000000000000f8a0bf9cf54bb92f17374d9e9a321e6a111a51bd00000000000000000000000055d398326f99059ff775485246999027b319795500000000000000000000000000000000000000000000000006c4d37525145ae40000000000000000000000000000000000000000000000004204779afdf64ca0000000000000000000000000000000000000000000000000000000000000012000000000000000000000000000000000000000000000000000983aa1e2d5ce9b000000000000000000000000b28da7bc87a9dd1e60849aa7fcb5da24ea913c4200000000000000000000000000000000000000000000000000000000000000010000000000000000000000000000000000000000000000000000000000000b84f2c42696000000000000000000000000000000000000000000000000000000003bbd3996000000000000000000000000f8a0bf9cf54bb92f17374d9e9a321e6a111a51bd00000000000000000000000055d398326f99059ff775485246999027b319795500000000000000000000000000000000000000000000000006c4d37525145ae40000000000000000000000000000000000000000000000004299a6d33d8a63e6000000000000000000000000000000000000000000000000000000006a07ac4400000000000000000000000000000000000000000000000000000000000000e0000000000000000000000000000000000000000000000000000000000000000300000000000000000000000000000000000000000000000000000000000000600000000000000000000000000000000000000000000000000000000000000240000000000000000000000000000000000000000000000000000000000000074000000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000000000000000000000000000000e000000000000000000000000000000000000000000000000000000000000001200000000000000000000000000000000000000000000000000000000000000160000000000000000000000000f8a0bf9cf54bb92f17374d9e9a321e6a111a51bd0000000000000000000000000000000000000000000000000000000000000001000000000000000000000000a96a96669295e85af046026bf714a26e84096889000000000000000000000000000000000000000000000000000000000000000100000000000000000000000016fe21c91c426e603977b1c6ecd59fc510a518c2000000000000000000000000000000000000000000000000000000000000000180000000000000000001271016fe21c91c426e603977b1c6ecd59fc510a518c2000000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000000000200000000000000000000000000000000000000000000000000000000000000020000000000000000000000000000000000000000000000000000000000000001400000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000000000000000000000000000000e000000000000000000000000000000000000000000000000000000000000001200000000000000000000000000000000000000000000000000000000000000160000000000000000000000000bb4cdb9cbd36b01bd1cbaebf2de08d9173bc095c000000000000000000000000000000000000000000000000000000000000000100000000000000000000000061e3fca605e2f0e29d5a176e1c9868d4f0ee817f000000000000000000000000000000000000000000000000000000000000000100000000000000000000000061e3fca605e2f0e29d5a176e1c9868d4f0ee817f0000000000000000000000000000000000000000000000000000000000000001000000000000000001022710dd30339c4b2f7bac319ef4fa5c6963cc9f470b2d000000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000000000200000000000000000000000000000000000000000000000000000000000000340000000000000000000000000000000000000000000000000000000000000008000000000000000000000000000000000000000000000000000000000000002c000000000000000000000000000000000000000000000000000000000000000010000000000000000000000000000000000000000000000000000000000000003000000000000000000000000000000000000000000000000000000000000022000000000000000000000000000000000000000000000000000000000000000200000000000000000000000000000000000000000000000003d8074de880c1c80000000000000000000000000000000000000000000000000000000006a079e530000000000000000000000008ac76a51cc950d9822d68b83fe1ad97b32cd580d000000000000000000000000bb4cdb9cbd36b01bd1cbaebf2de08d9173bc095c00000000000000000000000065ec88a7eeee54a6b4cf6604d43edae415043fd200000000000000000000000000000000000000000000000043e3c71f0ff0b4000000000000000000000000000000000000000000000000000019db3183f01f020000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000006a079e3800000000000000000000000000000000000000000000000000000000000000f000000000000000000000000000000000000000000000000000000000000004b000000000000000000000000000000000000000000000000000000000000001c0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001e00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000416c70f2c12ec6a3a679fc1cf8216f7bfcadd67a8908047c64ffe02869b3d98b9c29e546441182fd663dc965bb1b265ef231c6a29d119dde59a25289c3ba99f38c1b0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000000000000000000000000000000e0000000000000000000000000000000000000000000000000000000000000012000000000000000000000000000000000000000000000000000000000000001600000000000000000000000008ac76a51cc950d9822d68b83fe1ad97b32cd580d0000000000000000000000000000000000000000000000000000000000000001000000000000000000000000dd3d3c05a672b8a1112e158cd2fc6f577c2b6e1f0000000000000000000000000000000000000000000000000000000000000001000000000000000000000000dd3d3c05a672b8a1112e158cd2fc6f577c2b6e1f000000000000000000000000000000000000000000000000000000000000000180000000000000000203271000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000002000000000000000000000000000000000000000000000000000000000000001400000000000000000000000000000000000000000000000000000000000000020000000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000000000200000000000000000000000008ac76a51cc950d9822d68b83fe1ad97b32cd580d00000000000000000000000055d398326f99059ff775485246999027b319795500000000000000000000000000000000000000000000000000000000000000010000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000c0000000000000000000000000000000000000000000000000000000000000000077777777111180000000000000000000000000000000000043f59a8e6897a9dc777777771111000000000064fa00a9ed787f3793db668bff3e6e6e7db0f92a1b00000000000000000000000000000000000000000000000000000000b8", + "gasLimit": 995735, + "feeEstimate": 31012200000000, + "effectiveGas": 516870, + "gasCost": "0", + "gasIncludedFeeData": { + "maxFeePerGas": "0x3938700", + "maxPriorityFeePerGas": "0x3938700", + "gas": "0xa210f", + "balanceNeeded": "0x2439800be900", + "currentBalance": "0x19d9db6dbe00", + "error": "Not enough funds" + } + }, + "estimatedProcessingTimeInSeconds": 0, + "quoteId": "b54573d9-6b56-42d4-8233-1c522ed18705", + "quoteRequestIndex": 0 + }, + { + "quote": { + "requestId": "0x82be70427844fa142fef34141edf33ce8249156def80e9d81d1625cceff2f33d", + "bridgeId": "relay", + "srcChainId": 56, + "destChainId": 56, + "aggregator": "relay", + "aggregatorType": "AGG", + "srcAsset": { + "address": "0xf8a0bf9cf54bb92f17374d9e9a321e6a111a51bd", + "chainId": 56, + "assetId": "eip155:56/erc20:0xf8a0bf9cf54bb92f17374d9e9a321e6a111a51bd", + "symbol": "LINK", + "decimals": 18, + "name": "BNB pegged ChainLink", + "coingeckoId": "chainlink", + "aggregators": [ + "pancakeTop100", + "oneInch", + "liFi", + "trustWallet", + "socket", + "rubic", + "squid", + "rango", + "sonarwatch", + "sushiSwap" + ], + "occurrences": 13, + "iconUrl": "https://static.cx.metamask.io/api/v2/tokenIcons/assets/eip155/56/erc20/0xf8a0bf9cf54bb92f17374d9e9a321e6a111a51bd.png", + "metadata": { + "storage": { + "balance": 1, + "approval": 2 + } + } + }, + "srcTokenAmount": "487747159749581540", + "destAsset": { + "address": "0x55d398326f99059ff775485246999027b3197955", + "chainId": 56, + "assetId": "eip155:56/erc20:0x55d398326f99059ff775485246999027b3197955", + "symbol": "USDT", + "decimals": 18, + "name": "Tether USD", + "coingeckoId": "binance-bridged-usdt-bnb-smart-chain", + "aggregators": [ + "pancakeExtended", + "oneInch", + "liFi", + "trustWallet", + "socket", + "rubic", + "squid", + "rango", + "sonarwatch", + "sushiSwap" + ], + "occurrences": 11, + "iconUrl": "https://static.cx.metamask.io/api/v2/tokenIcons/assets/eip155/56/erc20/0x55d398326f99059ff775485246999027b3197955.png", + "metadata": { + "storage": { + "balance": 1, + "approval": 2 + } + } + }, + "destTokenAmount": "4794488746644715999", + "minDestTokenAmount": "4698598971711821679", + "walletAddress": "0x141d32a89a1e0a5ef360034a2f60a4b917c18838", + "destWalletAddress": "0x141d32a89a1e0a5ef360034a2f60a4b917c18838", + "feeData": { + "metabridge": { + "amount": "42322094863194214", + "asset": { + "address": "0x55d398326f99059ff775485246999027b3197955", + "chainId": 56, + "assetId": "eip155:56/erc20:0x55d398326f99059ff775485246999027b3197955", + "symbol": "USDT", + "decimals": 18, + "name": "Tether USD", + "coingeckoId": "binance-bridged-usdt-bnb-smart-chain", + "aggregators": [ + "pancakeExtended", + "oneInch", + "liFi", + "trustWallet", + "socket", + "rubic", + "squid", + "rango", + "sonarwatch", + "sushiSwap" + ], + "occurrences": 11, + "iconUrl": "https://static.cx.metamask.io/api/v2/tokenIcons/assets/eip155/56/erc20/0x55d398326f99059ff775485246999027b3197955.png", + "metadata": { + "storage": { + "balance": 1, + "approval": 2 + } + } + }, + "quoteBpsFee": 87.5, + "baseBpsFee": 87.5, + "usd": "0.04230169561347016" + } + }, + "bridges": ["relay"], + "protocols": ["relay"], + "steps": [], + "slippage": 2, + "gasSponsored": false, + "gasIncluded": false, + "gasIncluded7702": false, + "priceData": { + "totalFromAmountUsd": "4.906736427080791", + "totalToAmountUsd": "4.792177803068833", + "priceImpact": "0.014726066800673001", + "totalFeeAmountUsd": "0.04230169561347016" + } + }, + "approval": { + "chainId": 56, + "to": "0xf8a0bf9cf54bb92f17374d9e9a321e6a111a51bd", + "from": "0x141d32a89a1e0a5ef360034a2f60a4b917c18838", + "value": "0x0", + "data": "0x095ea7b30000000000000000000000001a1ec25dc08e98e5e93f1104b5e5cdd298707d3100000000000000000000000000000000000000000000000006c4d37525145ae4", + "gasLimit": 51261, + "feeEstimate": 2773080000000, + "effectiveGas": 46218, + "gasCost": "0", + "gasIncludedFeeData": { + "maxFeePerGas": "0x3938700", + "maxPriorityFeePerGas": "0x3938700", + "gas": "0xb608", + "balanceNeeded": "0x28afe963800", + "currentBalance": "0x1c64da03f600", + "error": "Not enough funds" + } + }, + "trade": { + "chainId": 56, + "to": "0x1a1ec25DC08e98e5E93F1104B5e5cdD298707d31", + "from": "0x141d32a89a1e0a5ef360034a2f60a4b917c18838", + "value": "0x0", + "data": "0x5f5755290000000000000000000000000000000000000000000000000000000000000080000000000000000000000000f8a0bf9cf54bb92f17374d9e9a321e6a111a51bd00000000000000000000000000000000000000000000000006c4d37525145ae400000000000000000000000000000000000000000000000000000000000000c0000000000000000000000000000000000000000000000000000000000000000e72656c61794164617074657256330000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000e80000000000000000000000000f8a0bf9cf54bb92f17374d9e9a321e6a111a51bd00000000000000000000000055d398326f99059ff775485246999027b319795500000000000000000000000000000000000000000000000006c4d37525145ae40000000000000000000000000000000000000000000000004134c6dedae6176f000000000000000000000000000000000000000000000000000000000000012000000000000000000000000000000000000000000000000000965bb896789866000000000000000000000000b28da7bc87a9dd1e60849aa7fcb5da24ea913c4200000000000000000000000000000000000000000000000000000000000000010000000000000000000000000000000000000000000000000000000000000d44f9e4bab400000000000000000000000000000000000000000000000000000000000000c000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000000140000000000000000000000000c590175e458b83680867afd273527ff58f74c02b000000000000000000000000c590175e458b83680867afd273527ff58f74c02b0000000000000000000000000000000000000000000000000000000000000cc00000000000000000000000000000000000000000000000000000000000000001000000000000000000000000f8a0bf9cf54bb92f17374d9e9a321e6a111a51bd000000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000006c4d37525145ae400000000000000000000000000000000000000000000000000000000000000040000000000000000000000000000000000000000000000000000000000000080000000000000000000000000000000000000000000000000000000000000018000000000000000000000000000000000000000000000000000000000000006a00000000000000000000000000000000000000000000000000000000000000900000000000000000000000000f8a0bf9cf54bb92f17374d9e9a321e6a111a51bd0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000800000000000000000000000000000000000000000000000000000000000000044095ea7b30000000000000000000000000000000000001ff3684f28c67538d4d072c2273400000000000000000000000000000000000000000000000006c4d37525145ae4000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001ff3684f28c67538d4d072c2273400000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000008000000000000000000000000000000000000000000000000000000000000004642213bc0b000000000000000000000000c2eff1f1ce35d395408a34ad881dbcd978f40b89000000000000000000000000f8a0bf9cf54bb92f17374d9e9a321e6a111a51bd00000000000000000000000000000000000000000000000006c4d37525145ae4000000000000000000000000c2eff1f1ce35d395408a34ad881dbcd978f40b8900000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000000000000000000000000000003841fff991f000000000000000000000000b92fe925dc43a0ecde6c8b1a2709c170ec4fff4f00000000000000000000000055d398326f99059ff775485246999027b319795500000000000000000000000000000000000000000000000043399e53cb43181000000000000000000000000000000000000000000000000000000000000000a0afdee7bbf67c8f7e6a721e23000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000020000000000000000000000000000000000000000000000000000000000000040000000000000000000000000000000000000000000000000000000000000020000000000000000000000000000000000000000000000000000000000000001843036d6a6000000000000000000000000c2eff1f1ce35d395408a34ad881dbcd978f40b89000000000000000000000000f8a0bf9cf54bb92f17374d9e9a321e6a111a51bd00000000000000000000000000000000000000000000000006c4d37525145ae40000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000006a079f5f0000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000000000016000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000040f8a0bf9cf54bb92f17374d9e9a321e6a111a51bd010009c4fffd8963efd1fc6a506488495d951d5263988d2555d398326f99059ff775485246999027b3197955000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000008434ee90ca000000000000000000000000f5c4f3dc02c3fb9279495a8fef7b0741da95615700000000000000000000000055d398326f99059ff775485246999027b319795500000000000000000000000000000000000000000000000043e891ef41094ac60000000000000000000000000000000000000000000000000000000000002710000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000b92fe925dc43a0ecde6c8b1a2709c170ec4fff4f00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000008000000000000000000000000000000000000000000000000000000000000001a49bb43718000000000000000000000000000000000000000000000000000000000000008000000000000000000000000000000000000000000000000000000000000000c000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000000140000000000000000000000000000000000000000000000000000000000000000100000000000000000000000055d398326f99059ff775485246999027b31979550000000000000000000000000000000000000000000000000000000000000001000000000000000000000000f70da97812cb96acdf810712aa562db8dfa3dbef00000000000000000000000000000000000000000000000000000000000000010000000000000000000000000000000000000000000000000019d07e556cc5cb00000000000000000000000000000000000000000000000000000000000000214cbe74779600aad4ceb695cb283d8f9aa4b9f1f0d4bcb3896768121a41adc9c4010000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000b92fe925dc43a0ecde6c8b1a2709c170ec4fff4f00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000008000000000000000000000000000000000000000000000000000000000000001a49bb43718000000000000000000000000000000000000000000000000000000000000008000000000000000000000000000000000000000000000000000000000000000c000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000000140000000000000000000000000000000000000000000000000000000000000000100000000000000000000000055d398326f99059ff775485246999027b31979550000000000000000000000000000000000000000000000000000000000000001000000000000000000000000c590175e458b83680867afd273527ff58f74c02b0000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000214cbe74779600aad4ceb695cb283d8f9aa4b9f1f0d4bcb3896768121a41adc9c400000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000214cbe74779600aad4ceb695cb283d8f9aa4b9f1f0d4bcb3896768121a41adc9c400000000000000000000000000000000000000000000000000000000000000004c9cda14a1218676983bcb4d0f1f9b4aa9f8d382bc596bec4daa00697747ebc400000000000000000000000000000000000000000000000000000000b9", + "gasLimit": 775779, + "feeEstimate": 24326640000000, + "effectiveGas": 405444, + "gasCost": "0", + "gasIncludedFeeData": { + "maxFeePerGas": "0x3938700", + "maxPriorityFeePerGas": "0x3938700", + "gas": "0x7e442", + "balanceNeeded": "0x1c390144ce00", + "currentBalance": "0x19d9db6dbe00", + "error": "Not enough funds" + } + }, + "estimatedProcessingTimeInSeconds": 0, + "quoteId": "5626a3e9-e6de-4ee6-813b-8e51781a79b4", + "quoteRequestIndex": 0 + }, + { + "quote": { + "requestId": "0x7b2bcc07f7f645ccf0a87b04d26fae935b357a865a5916421ccd14917e6ce802", + "bridgeId": "mayan", + "srcChainId": 56, + "destChainId": 56, + "aggregator": "mayan", + "aggregatorType": "AGG", + "srcAsset": { + "address": "0xf8a0bf9cf54bb92f17374d9e9a321e6a111a51bd", + "chainId": 56, + "assetId": "eip155:56/erc20:0xf8a0bf9cf54bb92f17374d9e9a321e6a111a51bd", + "symbol": "LINK", + "decimals": 18, + "name": "BNB pegged ChainLink", + "coingeckoId": "chainlink", + "aggregators": [ + "pancakeTop100", + "oneInch", + "liFi", + "trustWallet", + "socket", + "rubic", + "squid", + "rango", + "sonarwatch", + "sushiSwap" + ], + "occurrences": 13, + "iconUrl": "https://static.cx.metamask.io/api/v2/tokenIcons/assets/eip155/56/erc20/0xf8a0bf9cf54bb92f17374d9e9a321e6a111a51bd.png", + "metadata": { + "storage": { + "balance": 1, + "approval": 2 + } + } + }, + "srcTokenAmount": "487747159749581540", + "destAsset": { + "address": "0x55d398326f99059ff775485246999027b3197955", + "chainId": 56, + "assetId": "eip155:56/erc20:0x55d398326f99059ff775485246999027b3197955", + "symbol": "USDT", + "decimals": 18, + "name": "Tether USD", + "coingeckoId": "binance-bridged-usdt-bnb-smart-chain", + "aggregators": [ + "pancakeExtended", + "oneInch", + "liFi", + "trustWallet", + "socket", + "rubic", + "squid", + "rango", + "sonarwatch", + "sushiSwap" + ], + "occurrences": 11, + "iconUrl": "https://static.cx.metamask.io/api/v2/tokenIcons/assets/eip155/56/erc20/0x55d398326f99059ff775485246999027b3197955.png", + "metadata": { + "storage": { + "balance": 1, + "approval": 2 + } + } + }, + "destTokenAmount": "4850193215727344550", + "minDestTokenAmount": "4753189351412797659", + "walletAddress": "0x141d32a89a1e0a5ef360034a2f60a4b917c18838", + "destWalletAddress": "0x141d32a89a1e0a5ef360034a2f60a4b917c18838", + "feeData": { + "metabridge": { + "amount": "42813811488135450", + "asset": { + "address": "0x55d398326f99059ff775485246999027b3197955", + "chainId": 56, + "assetId": "eip155:56/erc20:0x55d398326f99059ff775485246999027b3197955", + "symbol": "USDT", + "decimals": 18, + "name": "Tether USD", + "coingeckoId": "binance-bridged-usdt-bnb-smart-chain", + "aggregators": [ + "pancakeExtended", + "oneInch", + "liFi", + "trustWallet", + "socket", + "rubic", + "squid", + "rango", + "sonarwatch", + "sushiSwap" + ], + "occurrences": 11, + "iconUrl": "https://static.cx.metamask.io/api/v2/tokenIcons/assets/eip155/56/erc20/0x55d398326f99059ff775485246999027b3197955.png", + "metadata": { + "storage": { + "balance": 1, + "approval": 2 + } + } + }, + "quoteBpsFee": 87.5, + "baseBpsFee": 87.5, + "usd": "0.04279317523099817" + } + }, + "bridges": ["mayan"], + "protocols": ["mayan"], + "steps": [], + "slippage": 2, + "gasSponsored": false, + "gasIncluded": false, + "gasIncluded7702": false, + "priceData": { + "totalFromAmountUsd": "4.906736427080791", + "totalToAmountUsd": "4.847855422597364", + "priceImpact": "0.003278722933564932", + "totalFeeAmountUsd": "0.04279317523099817" + } + }, + "approval": { + "chainId": 56, + "to": "0xf8a0bf9cf54bb92f17374d9e9a321e6a111a51bd", + "from": "0x141d32a89a1e0a5ef360034a2f60a4b917c18838", + "value": "0x0", + "data": "0x095ea7b30000000000000000000000001a1ec25dc08e98e5e93f1104b5e5cdd298707d3100000000000000000000000000000000000000000000000006c4d37525145ae4", + "gasLimit": 51261, + "feeEstimate": 2773080000000, + "effectiveGas": 46218, + "gasCost": "0", + "gasIncludedFeeData": { + "maxFeePerGas": "0x39386ff", + "maxPriorityFeePerGas": "0x39386ff", + "gas": "0xb608", + "balanceNeeded": "0x28afe963800", + "currentBalance": "0x1c64da03f600", + "error": "" + } + }, + "trade": { + "chainId": 56, + "to": "0x1a1ec25DC08e98e5E93F1104B5e5cdD298707d31", + "from": "0x141d32a89a1e0a5ef360034a2f60a4b917c18838", + "value": "0x0", + "data": "0x5f5755290000000000000000000000000000000000000000000000000000000000000080000000000000000000000000f8a0bf9cf54bb92f17374d9e9a321e6a111a51bd00000000000000000000000000000000000000000000000006c4d37525145ae400000000000000000000000000000000000000000000000000000000000000c0000000000000000000000000000000000000000000000000000000000000000f6d6179616e46656544796e616d696300000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000860000000000000000000000000f8a0bf9cf54bb92f17374d9e9a321e6a111a51bd00000000000000000000000055d398326f99059ff775485246999027b319795500000000000000000000000000000000000000000000000006c4d37525145ae400000000000000000000000000000000000000000000000041f6b888192110db000000000000000000000000000000000000000000000000000000000000012000000000000000000000000000000000000000000000000000981aef493b191a000000000000000000000000b28da7bc87a9dd1e60849aa7fcb5da24ea913c420000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000072430dedc57000000000000000000000000f8a0bf9cf54bb92f17374d9e9a321e6a111a51bd00000000000000000000000000000000000000000000000006c4d37525145ae4000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001ff3684f28c67538d4d072c2273400000000000000000000000000000000000000000000000000000000000001a000000000000000000000000055d398326f99059ff775485246999027b3197955000000000000000000000000000000000000000000000000428bc8ae7c390000000000000000000000000000238856de6d9d32ea3dd4e9e7dbfe08b23cd5048c000000000000000000000000000000000000000000000000000000000000064000000000000000000000000000000000000000000000000000000000000004642213bc0b000000000000000000000000c2eff1f1ce35d395408a34ad881dbcd978f40b89000000000000000000000000f8a0bf9cf54bb92f17374d9e9a321e6a111a51bd00000000000000000000000000000000000000000000000006c4d37525145ae4000000000000000000000000c2eff1f1ce35d395408a34ad881dbcd978f40b8900000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000000000000000000000000000003841fff991f000000000000000000000000337685fdab40d39bd02028545a4ffa7d287cc3e200000000000000000000000055d398326f99059ff775485246999027b3197955000000000000000000000000000000000000000000000000428bc8b009dafb6000000000000000000000000000000000000000000000000000000000000000a009d484841dbf65bde26b0b73000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000020000000000000000000000000000000000000000000000000000000000000040000000000000000000000000000000000000000000000000000000000000020000000000000000000000000000000000000000000000000000000000000001843036d6a6000000000000000000000000c2eff1f1ce35d395408a34ad881dbcd978f40b89000000000000000000000000f8a0bf9cf54bb92f17374d9e9a321e6a111a51bd00000000000000000000000000000000000000000000000006c4d37525145ae40000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000006a079f600000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000000000016000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000040f8a0bf9cf54bb92f17374d9e9a321e6a111a51bd010009c4fffd8963efd1fc6a506488495d951d5263988d2555d398326f99059ff775485246999027b3197955000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000008434ee90ca000000000000000000000000f5c4f3dc02c3fb9279495a8fef7b0741da95615700000000000000000000000055d398326f99059ff775485246999027b319795500000000000000000000000000000000000000000000000043e891ef41094ac6000000000000000000000000000000000000000000000000000000000000271000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000a429d8eb0a00000000000000000000000055d398326f99059ff775485246999027b319795500000000000000000000000000000000000000000000000043e773f5de97b800000000000000000000000000c590175e458b83680867afd273527ff58f74c02b0000000000000000000000001f3c3f0243d06a0353abcb066be9140747aeb8c900000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000c6", + "gasLimit": 674921, + "feeEstimate": 21149640000000, + "effectiveGas": 352494, + "gasCost": "0", + "gasIncludedFeeData": { + "maxFeePerGas": "0x39386ff", + "maxPriorityFeePerGas": "0x39386ff", + "gas": "0x6dd9b", + "balanceNeeded": "0x188dafddbd00", + "currentBalance": "0x19d9db6dbe00", + "error": "" + } + }, + "estimatedProcessingTimeInSeconds": 0, + "quoteId": "7bfb090e-d42f-4a00-b6c4-e8b1d4fce77f", + "quoteRequestIndex": 0 + }, + { + "quote": { + "requestId": "0xc8c24b9e02af88ed2c1b83498f1f626583b27a041a0246afc30b20c4eb3d86da", + "bridgeId": "relay", + "srcChainId": 56, + "destChainId": 56, + "aggregator": "relay", + "aggregatorType": "AGG", + "srcAsset": { + "address": "0x1af3f329e8be154074d8769d1ffa4ee058b1dbc3", + "chainId": 56, + "assetId": "eip155:56/erc20:0x1af3f329e8be154074d8769d1ffa4ee058b1dbc3", + "symbol": "DAI", + "decimals": 18, + "name": "BNB pegged Dai Token", + "coingeckoId": "binance-peg-dai", + "aggregators": [ + "pancakeExtended", + "oneInch", + "liFi", + "trustWallet", + "socket", + "rubic", + "rango", + "sonarwatch", + "sushiSwap", + "binanceDex" + ], + "occurrences": 12, + "iconUrl": "https://static.cx.metamask.io/api/v2/tokenIcons/assets/eip155/56/erc20/0x1af3f329e8be154074d8769d1ffa4ee058b1dbc3.png", + "metadata": { + "storage": { + "balance": 1, + "approval": 2 + } + } + }, + "srcTokenAmount": "991250000000000000", + "destAsset": { + "address": "0x55d398326f99059ff775485246999027b3197955", + "chainId": 56, + "assetId": "eip155:56/erc20:0x55d398326f99059ff775485246999027b3197955", + "symbol": "USDT", + "decimals": 18, + "name": "Tether USD", + "coingeckoId": "binance-bridged-usdt-bnb-smart-chain", + "aggregators": [ + "pancakeExtended", + "oneInch", + "liFi", + "trustWallet", + "socket", + "rubic", + "squid", + "rango", + "sonarwatch", + "sushiSwap" + ], + "occurrences": 11, + "iconUrl": "https://static.cx.metamask.io/api/v2/tokenIcons/assets/eip155/56/erc20/0x55d398326f99059ff775485246999027b3197955.png", + "metadata": { + "storage": { + "balance": 1, + "approval": 2 + } + } + }, + "destTokenAmount": "980595532535258556", + "minDestTokenAmount": "960983621884553384", + "walletAddress": "0x141d32a89a1e0a5ef360034a2f60a4b917c18838", + "destWalletAddress": "0x141d32a89a1e0a5ef360034a2f60a4b917c18838", + "feeData": { + "metabridge": { + "amount": "8750000000000000", + "asset": { + "address": "0x1af3f329e8be154074d8769d1ffa4ee058b1dbc3", + "chainId": 56, + "assetId": "eip155:56/erc20:0x1af3f329e8be154074d8769d1ffa4ee058b1dbc3", + "symbol": "DAI", + "decimals": 18, + "name": "BNB pegged Dai Token", + "coingeckoId": "binance-peg-dai", + "aggregators": [ + "pancakeExtended", + "oneInch", + "liFi", + "trustWallet", + "socket", + "rubic", + "rango", + "sonarwatch", + "sushiSwap", + "binanceDex" + ], + "occurrences": 12, + "iconUrl": "https://static.cx.metamask.io/api/v2/tokenIcons/assets/eip155/56/erc20/0x1af3f329e8be154074d8769d1ffa4ee058b1dbc3.png", + "metadata": { + "storage": { + "balance": 1, + "approval": 2 + } + } + }, + "quoteBpsFee": 87.5, + "baseBpsFee": 87.5, + "usd": "0.008742761859012143" + } + }, + "bridges": ["relay"], + "protocols": ["relay"], + "steps": [], + "slippage": 2, + "gasSponsored": false, + "gasIncluded": false, + "gasIncluded7702": false, + "priceData": { + "totalFromAmountUsd": "0.999172783887102", + "totalToAmountUsd": "0.9801228854885766", + "priceImpact": "0.010406728703969843", + "totalFeeAmountUsd": "0.008742761859012143" + } + }, + "approval": { + "chainId": 56, + "to": "0x1af3f329e8be154074d8769d1ffa4ee058b1dbc3", + "from": "0x141d32a89a1e0a5ef360034a2f60a4b917c18838", + "value": "0x0", + "data": "0x095ea7b30000000000000000000000001a1ec25dc08e98e5e93f1104b5e5cdd298707d310000000000000000000000000000000000000000000000000de0b6b3a7640000", + "gasLimit": 51234, + "feeEstimate": 2771640000000, + "effectiveGas": 46194, + "gasCost": "0", + "gasIncludedFeeData": { + "maxFeePerGas": "0x3938700", + "maxPriorityFeePerGas": "0x3938700", + "gas": "0xb5f0", + "balanceNeeded": "0x28aa8c19000", + "currentBalance": "0x1c64da03f600", + "error": "Not enough funds" + } + }, + "trade": { + "chainId": 56, + "to": "0x1a1ec25DC08e98e5E93F1104B5e5cdD298707d31", + "from": "0x141d32a89a1e0a5ef360034a2f60a4b917c18838", + "value": "0x0", + "data": "0x5f57552900000000000000000000000000000000000000000000000000000000000000800000000000000000000000001af3f329e8be154074d8769d1ffa4ee058b1dbc30000000000000000000000000000000000000000000000000de0b6b3a764000000000000000000000000000000000000000000000000000000000000000000c0000000000000000000000000000000000000000000000000000000000000000e72656c61794164617074657256330000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000e800000000000000000000000001af3f329e8be154074d8769d1ffa4ee058b1dbc300000000000000000000000055d398326f99059ff775485246999027b31979550000000000000000000000000000000000000000000000000dc1a09f859b20000000000000000000000000000000000000000000000000000d5619833965a8a80000000000000000000000000000000000000000000000000000000000000120000000000000000000000000000000000000000000000000001f161421c8e000000000000000000000000000b28da7bc87a9dd1e60849aa7fcb5da24ea913c4200000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000d44f9e4bab400000000000000000000000000000000000000000000000000000000000000c000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000000140000000000000000000000000c590175e458b83680867afd273527ff58f74c02b000000000000000000000000c590175e458b83680867afd273527ff58f74c02b0000000000000000000000000000000000000000000000000000000000000cc000000000000000000000000000000000000000000000000000000000000000010000000000000000000000001af3f329e8be154074d8769d1ffa4ee058b1dbc300000000000000000000000000000000000000000000000000000000000000010000000000000000000000000000000000000000000000000dc1a09f859b200000000000000000000000000000000000000000000000000000000000000000040000000000000000000000000000000000000000000000000000000000000080000000000000000000000000000000000000000000000000000000000000018000000000000000000000000000000000000000000000000000000000000006a000000000000000000000000000000000000000000000000000000000000009000000000000000000000000001af3f329e8be154074d8769d1ffa4ee058b1dbc30000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000800000000000000000000000000000000000000000000000000000000000000044095ea7b30000000000000000000000000000000000001ff3684f28c67538d4d072c227340000000000000000000000000000000000000000000000000dc1a09f859b2000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001ff3684f28c67538d4d072c2273400000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000008000000000000000000000000000000000000000000000000000000000000004642213bc0b000000000000000000000000c2eff1f1ce35d395408a34ad881dbcd978f40b890000000000000000000000001af3f329e8be154074d8769d1ffa4ee058b1dbc30000000000000000000000000000000000000000000000000dc1a09f859b2000000000000000000000000000c2eff1f1ce35d395408a34ad881dbcd978f40b8900000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000000000000000000000000000003841fff991f000000000000000000000000b92fe925dc43a0ecde6c8b1a2709c170ec4fff4f00000000000000000000000055d398326f99059ff775485246999027b31979550000000000000000000000000000000000000000000000000d9c1fa28e79fe2400000000000000000000000000000000000000000000000000000000000000a066dd850b225d912068b33a38000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000020000000000000000000000000000000000000000000000000000000000000040000000000000000000000000000000000000000000000000000000000000020000000000000000000000000000000000000000000000000000000000000001843036d6a6000000000000000000000000c2eff1f1ce35d395408a34ad881dbcd978f40b890000000000000000000000001af3f329e8be154074d8769d1ffa4ee058b1dbc30000000000000000000000000000000000000000000000000dc1a09f859b20000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000006a079f5f00000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000000160000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000401af3f329e8be154074d8769d1ffa4ee058b1dbc30000006400000000000000000000000000000001000276a455d398326f99059ff775485246999027b3197955000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000008434ee90ca000000000000000000000000f5c4f3dc02c3fb9279495a8fef7b0741da95615700000000000000000000000055d398326f99059ff775485246999027b31979550000000000000000000000000000000000000000000000000dbf5115f9ef9d490000000000000000000000000000000000000000000000000000000000002710000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000b92fe925dc43a0ecde6c8b1a2709c170ec4fff4f00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000008000000000000000000000000000000000000000000000000000000000000001a49bb43718000000000000000000000000000000000000000000000000000000000000008000000000000000000000000000000000000000000000000000000000000000c000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000000140000000000000000000000000000000000000000000000000000000000000000100000000000000000000000055d398326f99059ff775485246999027b31979550000000000000000000000000000000000000000000000000000000000000001000000000000000000000000f70da97812cb96acdf810712aa562db8dfa3dbef0000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000059318d60a068000000000000000000000000000000000000000000000000000000000000002197da7bf6f74e272290566d8406fda8899f75088a495511b4f5dd4ce5641198c8010000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000b92fe925dc43a0ecde6c8b1a2709c170ec4fff4f00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000008000000000000000000000000000000000000000000000000000000000000001a49bb43718000000000000000000000000000000000000000000000000000000000000008000000000000000000000000000000000000000000000000000000000000000c000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000000140000000000000000000000000000000000000000000000000000000000000000100000000000000000000000055d398326f99059ff775485246999027b31979550000000000000000000000000000000000000000000000000000000000000001000000000000000000000000c590175e458b83680867afd273527ff58f74c02b00000000000000000000000000000000000000000000000000000000000000010000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000002197da7bf6f74e272290566d8406fda8899f75088a495511b4f5dd4ce5641198c8000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000002197da7bf6f74e272290566d8406fda8899f75088a495511b4f5dd4ce5641198c800000000000000000000000000000000000000000000000000000000000000008c8911465ec4dd5f4b115594a88057f9988adf6048d665092272e47f6fb7ad790000000000000000000000000000000000000000000000000000000061", + "gasLimit": 744942, + "feeEstimate": 23355360000000, + "effectiveGas": 389256, + "gasCost": "0", + "gasIncludedFeeData": { + "maxFeePerGas": "0x3938700", + "maxPriorityFeePerGas": "0x3938700", + "gas": "0x793f4", + "balanceNeeded": "0x1b19d021ac00", + "currentBalance": "0x19da31426600", + "error": "Not enough funds" + } + }, + "estimatedProcessingTimeInSeconds": 0, + "quoteId": "d99cc3ea-4806-4ab9-8bde-2616a9fd21e7", + "quoteRequestIndex": 1 + }, + { + "quote": { + "requestId": "0x5ef3d167461054aeeebabfc564c9cde5bd956c2caaf5c8b8938ef697f9067fd3", + "bridgeId": "mayan", + "srcChainId": 56, + "destChainId": 56, + "aggregator": "mayan", + "aggregatorType": "AGG", + "srcAsset": { + "address": "0x1af3f329e8be154074d8769d1ffa4ee058b1dbc3", + "chainId": 56, + "assetId": "eip155:56/erc20:0x1af3f329e8be154074d8769d1ffa4ee058b1dbc3", + "symbol": "DAI", + "decimals": 18, + "name": "BNB pegged Dai Token", + "coingeckoId": "binance-peg-dai", + "aggregators": [ + "pancakeExtended", + "oneInch", + "liFi", + "trustWallet", + "socket", + "rubic", + "rango", + "sonarwatch", + "sushiSwap", + "binanceDex" + ], + "occurrences": 12, + "iconUrl": "https://static.cx.metamask.io/api/v2/tokenIcons/assets/eip155/56/erc20/0x1af3f329e8be154074d8769d1ffa4ee058b1dbc3.png", + "metadata": { + "storage": { + "balance": 1, + "approval": 2 + } + } + }, + "srcTokenAmount": "991250000000000000", + "destAsset": { + "address": "0x55d398326f99059ff775485246999027b3197955", + "chainId": 56, + "assetId": "eip155:56/erc20:0x55d398326f99059ff775485246999027b3197955", + "symbol": "USDT", + "decimals": 18, + "name": "Tether USD", + "coingeckoId": "binance-bridged-usdt-bnb-smart-chain", + "aggregators": [ + "pancakeExtended", + "oneInch", + "liFi", + "trustWallet", + "socket", + "rubic", + "squid", + "rango", + "sonarwatch", + "sushiSwap" + ], + "occurrences": 11, + "iconUrl": "https://static.cx.metamask.io/api/v2/tokenIcons/assets/eip155/56/erc20/0x55d398326f99059ff775485246999027b3197955.png", + "metadata": { + "storage": { + "balance": 1, + "approval": 2 + } + } + }, + "destTokenAmount": "990603665402661000", + "minDestTokenAmount": "970791592094607780", + "walletAddress": "0x141d32a89a1e0a5ef360034a2f60a4b917c18838", + "destWalletAddress": "0x141d32a89a1e0a5ef360034a2f60a4b917c18838", + "feeData": { + "metabridge": { + "amount": "8750000000000000", + "asset": { + "address": "0x1af3f329e8be154074d8769d1ffa4ee058b1dbc3", + "chainId": 56, + "assetId": "eip155:56/erc20:0x1af3f329e8be154074d8769d1ffa4ee058b1dbc3", + "symbol": "DAI", + "decimals": 18, + "name": "BNB pegged Dai Token", + "coingeckoId": "binance-peg-dai", + "aggregators": [ + "pancakeExtended", + "oneInch", + "liFi", + "trustWallet", + "socket", + "rubic", + "rango", + "sonarwatch", + "sushiSwap", + "binanceDex" + ], + "occurrences": 12, + "iconUrl": "https://static.cx.metamask.io/api/v2/tokenIcons/assets/eip155/56/erc20/0x1af3f329e8be154074d8769d1ffa4ee058b1dbc3.png", + "metadata": { + "storage": { + "balance": 1, + "approval": 2 + } + } + }, + "quoteBpsFee": 87.5, + "baseBpsFee": 87.5, + "usd": "0.008742761859012143" + } + }, + "bridges": ["mayan"], + "protocols": ["mayan"], + "steps": [], + "slippage": 2, + "gasSponsored": false, + "gasIncluded": false, + "gasIncluded7702": false, + "priceData": { + "totalFromAmountUsd": "0.999172783887102", + "totalToAmountUsd": "0.990126194435937", + "priceImpact": "0.00030676331027478096", + "totalFeeAmountUsd": "0.008742761859012143" + } + }, + "approval": { + "chainId": 56, + "to": "0x1af3f329e8be154074d8769d1ffa4ee058b1dbc3", + "from": "0x141d32a89a1e0a5ef360034a2f60a4b917c18838", + "value": "0x0", + "data": "0x095ea7b30000000000000000000000001a1ec25dc08e98e5e93f1104b5e5cdd298707d310000000000000000000000000000000000000000000000000de0b6b3a7640000", + "gasLimit": 51234, + "feeEstimate": 2771640000000, + "effectiveGas": 46194, + "gasCost": "0", + "gasIncludedFeeData": { + "maxFeePerGas": "0x3938700", + "maxPriorityFeePerGas": "0x3938700", + "gas": "0xb5f0", + "balanceNeeded": "0x28aa8c19000", + "currentBalance": "0x1c64da03f600", + "error": "Not enough funds" + } + }, + "trade": { + "chainId": 56, + "to": "0x1a1ec25DC08e98e5E93F1104B5e5cdD298707d31", + "from": "0x141d32a89a1e0a5ef360034a2f60a4b917c18838", + "value": "0x0", + "data": "0x5f57552900000000000000000000000000000000000000000000000000000000000000800000000000000000000000001af3f329e8be154074d8769d1ffa4ee058b1dbc30000000000000000000000000000000000000000000000000de0b6b3a764000000000000000000000000000000000000000000000000000000000000000000c0000000000000000000000000000000000000000000000000000000000000000f6d6179616e46656544796e616d6963000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000009c00000000000000000000000001af3f329e8be154074d8769d1ffa4ee058b1dbc300000000000000000000000055d398326f99059ff775485246999027b31979550000000000000000000000000000000000000000000000000dc1a09f859b20000000000000000000000000000000000000000000000000000d78f1cf3dbc29a40000000000000000000000000000000000000000000000000000000000000120000000000000000000000000000000000000000000000000001f161421c8e000000000000000000000000000b28da7bc87a9dd1e60849aa7fcb5da24ea913c420000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000088430dedc570000000000000000000000001af3f329e8be154074d8769d1ffa4ee058b1dbc30000000000000000000000000000000000000000000000000dc1a09f859b2000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001ff3684f28c67538d4d072c2273400000000000000000000000000000000000000000000000000000000000001a000000000000000000000000055d398326f99059ff775485246999027b31979550000000000000000000000000000000000000000000000000d78f1cec0e2fc00000000000000000000000000238856de6d9d32ea3dd4e9e7dbfe08b23cd5048c00000000000000000000000000000000000000000000000000000000000007a000000000000000000000000000000000000000000000000000000000000005c42213bc0b000000000000000000000000c2eff1f1ce35d395408a34ad881dbcd978f40b890000000000000000000000001af3f329e8be154074d8769d1ffa4ee058b1dbc30000000000000000000000000000000000000000000000000dc1a09f859b2000000000000000000000000000c2eff1f1ce35d395408a34ad881dbcd978f40b8900000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000000000000000000000000000004e41fff991f000000000000000000000000337685fdab40d39bd02028545a4ffa7d287cc3e200000000000000000000000055d398326f99059ff775485246999027b31979550000000000000000000000000000000000000000000000000d78f1cf3dbc25d000000000000000000000000000000000000000000000000000000000000000a05380ca92bf85ab802f6e39310000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000300000000000000000000000000000000000000000000000000000000000000600000000000000000000000000000000000000000000000000000000000000180000000000000000000000000000000000000000000000000000000000000036000000000000000000000000000000000000000000000000000000000000000e4c1fb425e000000000000000000000000c2eff1f1ce35d395408a34ad881dbcd978f40b890000000000000000000000001af3f329e8be154074d8769d1ffa4ee058b1dbc30000000000000000000000000000000000000000000000000dc1a09f859b20000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000006a079f6000000000000000000000000000000000000000000000000000000000000000c000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001a4df753f1e000000000000000000000000c2eff1f1ce35d395408a34ad881dbcd978f40b890000000000000000000000001af3f329e8be154074d8769d1ffa4ee058b1dbc3000000000000000000000000000000000000000000000000000000000000271000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000002000000000000000000000000000000000000000000000000ffffffffffffffc5000000000000000000000000000000000000000000000000000000000000010000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000066271000000000000000000000000000000001000276a40155d398326f99059ff775485246999027b31979550000000000000000000000000000000000000000000000360000000000000000000000000000000000000000000000000000000000010000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000008434ee90ca000000000000000000000000f5c4f3dc02c3fb9279495a8fef7b0741da95615700000000000000000000000055d398326f99059ff775485246999027b31979550000000000000000000000000000000000000000000000000dc072c0b9e496a1000000000000000000000000000000000000000000000000000000000000271000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000a429d8eb0a00000000000000000000000055d398326f99059ff775485246999027b31979550000000000000000000000000000000000000000000000000dbf54c7c3807800000000000000000000000000c590175e458b83680867afd273527ff58f74c02b0000000000000000000000001f3c3f0243d06a0353abcb066be9140747aeb8c90000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000078", + "gasLimit": 741296, + "feeEstimate": 23240460000000, + "effectiveGas": 387341, + "gasCost": "0", + "gasIncludedFeeData": { + "maxFeePerGas": "0x3938700", + "maxPriorityFeePerGas": "0x3938700", + "gas": "0x78a75", + "balanceNeeded": "0x1af7da32b300", + "currentBalance": "0x19da31426600", + "error": "Not enough funds" + } + }, + "estimatedProcessingTimeInSeconds": 0, + "quoteId": "e0eefc45-8591-4ed9-a8f6-13d4aad7e06a", + "quoteRequestIndex": 1 + }, + { + "quote": { + "requestId": "0xdbd429004b09dac59f7a5fe3d8aa63485e5beea4b3efc0da572a8a0e5d2df714", + "bridgeId": "uniswap", + "srcChainId": 56, + "destChainId": 56, + "aggregator": "uniswap", + "aggregatorType": "AGG", + "srcAsset": { + "address": "0x1af3f329e8be154074d8769d1ffa4ee058b1dbc3", + "chainId": 56, + "assetId": "eip155:56/erc20:0x1af3f329e8be154074d8769d1ffa4ee058b1dbc3", + "symbol": "DAI", + "decimals": 18, + "name": "BNB pegged Dai Token", + "coingeckoId": "binance-peg-dai", + "aggregators": [ + "pancakeExtended", + "oneInch", + "liFi", + "trustWallet", + "socket", + "rubic", + "rango", + "sonarwatch", + "sushiSwap", + "binanceDex" + ], + "occurrences": 12, + "iconUrl": "https://static.cx.metamask.io/api/v2/tokenIcons/assets/eip155/56/erc20/0x1af3f329e8be154074d8769d1ffa4ee058b1dbc3.png", + "metadata": { + "storage": { + "balance": 1, + "approval": 2 + } + } + }, + "srcTokenAmount": "991250000000000000", + "destAsset": { + "address": "0x55d398326f99059ff775485246999027b3197955", + "chainId": 56, + "assetId": "eip155:56/erc20:0x55d398326f99059ff775485246999027b3197955", + "symbol": "USDT", + "decimals": 18, + "name": "Tether USD", + "coingeckoId": "binance-bridged-usdt-bnb-smart-chain", + "aggregators": [ + "pancakeExtended", + "oneInch", + "liFi", + "trustWallet", + "socket", + "rubic", + "squid", + "rango", + "sonarwatch", + "sushiSwap" + ], + "occurrences": 11, + "iconUrl": "https://static.cx.metamask.io/api/v2/tokenIcons/assets/eip155/56/erc20/0x55d398326f99059ff775485246999027b3197955.png", + "metadata": { + "storage": { + "balance": 1, + "approval": 2 + } + } + }, + "destTokenAmount": "990599597874191689", + "minDestTokenAmount": "970787605916707855", + "walletAddress": "0x141d32a89a1e0a5ef360034a2f60a4b917c18838", + "destWalletAddress": "0x141d32a89a1e0a5ef360034a2f60a4b917c18838", + "feeData": { + "metabridge": { + "amount": "8750000000000000", + "asset": { + "address": "0x1af3f329e8be154074d8769d1ffa4ee058b1dbc3", + "chainId": 56, + "assetId": "eip155:56/erc20:0x1af3f329e8be154074d8769d1ffa4ee058b1dbc3", + "symbol": "DAI", + "decimals": 18, + "name": "BNB pegged Dai Token", + "coingeckoId": "binance-peg-dai", + "aggregators": [ + "pancakeExtended", + "oneInch", + "liFi", + "trustWallet", + "socket", + "rubic", + "rango", + "sonarwatch", + "sushiSwap", + "binanceDex" + ], + "occurrences": 12, + "iconUrl": "https://static.cx.metamask.io/api/v2/tokenIcons/assets/eip155/56/erc20/0x1af3f329e8be154074d8769d1ffa4ee058b1dbc3.png", + "metadata": { + "storage": { + "balance": 1, + "approval": 2 + } + } + }, + "quoteBpsFee": 87.5, + "baseBpsFee": 87.5, + "usd": "0.008742761859012143" + } + }, + "bridges": ["uniswap"], + "protocols": ["uniswap"], + "steps": [], + "slippage": 2, + "gasSponsored": false, + "gasIncluded": false, + "gasIncluded7702": false, + "priceData": { + "totalFromAmountUsd": "0.999172783887102", + "totalToAmountUsd": "0.9901221288680164", + "priceImpact": "0.0003108681615314265", + "totalFeeAmountUsd": "0.008742761859012143" + } + }, + "approval": { + "chainId": 56, + "to": "0x1af3f329e8be154074d8769d1ffa4ee058b1dbc3", + "from": "0x141d32a89a1e0a5ef360034a2f60a4b917c18838", + "value": "0x0", + "data": "0x095ea7b30000000000000000000000001a1ec25dc08e98e5e93f1104b5e5cdd298707d310000000000000000000000000000000000000000000000000de0b6b3a7640000", + "gasLimit": 51234, + "feeEstimate": 2771640000000, + "effectiveGas": 46194, + "gasCost": "0", + "gasIncludedFeeData": { + "maxFeePerGas": "0x39386ff", + "maxPriorityFeePerGas": "0x39386ff", + "gas": "0xb5f0", + "balanceNeeded": "0x28aa8c19000", + "currentBalance": "0x1c64da03f600", + "error": "" + } + }, + "trade": { + "chainId": 56, + "to": "0x1a1ec25DC08e98e5E93F1104B5e5cdD298707d31", + "from": "0x141d32a89a1e0a5ef360034a2f60a4b917c18838", + "value": "0x0", + "data": "0x5f57552900000000000000000000000000000000000000000000000000000000000000800000000000000000000000001af3f329e8be154074d8769d1ffa4ee058b1dbc30000000000000000000000000000000000000000000000000de0b6b3a764000000000000000000000000000000000000000000000000000000000000000000c00000000000000000000000000000000000000000000000000000000000000018756e69737761705065726d69743246656544796e616d6963000000000000000000000000000000000000000000000000000000000000000000000000000003400000000000000000000000001af3f329e8be154074d8769d1ffa4ee058b1dbc300000000000000000000000055d398326f99059ff775485246999027b31979550000000000000000000000000000000000000000000000000dc1a09f859b20000000000000000000000000000000000000000000000000000d78ee2f23046c0f0000000000000000000000000000000000000000000000000000000000000120000000000000000000000000000000000000000000000000001f161421c8e000000000000000000000000000b28da7bc87a9dd1e60849aa7fcb5da24ea913c420000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000020e3593564c000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000000a0000000000000000000000000000000000000000000000000000000006a07a53d00000000000000000000000000000000000000000000000000000000000000010000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000000000200000000000000000000000000000000000000000000000000000000000000100000000000000000000000000c590175e458b83680867afd273527ff58f74c02b0000000000000000000000000000000000000000000000000dc1a09f859b20000000000000000000000000000000000000000000000000000d7a4f7ef50908a100000000000000000000000000000000000000000000000000000000000000a00000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000002b1af3f329e8be154074d8769d1ffa4ee058b1dbc300006455d398326f99059ff775485246999027b3197955000000000000000000000000000000000000000000756e69780000b2c5de0b000000000000000000000000000000000000ff", + "gasLimit": 353267, + "feeEstimate": 11172840000000, + "effectiveGas": 186214, + "gasCost": "0", + "gasIncludedFeeData": { + "maxFeePerGas": "0x39386ff", + "maxPriorityFeePerGas": "0x39386ff", + "gas": "0x397f7", + "balanceNeeded": "0xcda0cf84100", + "currentBalance": "0x19da31426600", + "error": "" + } + }, + "estimatedProcessingTimeInSeconds": 0, + "quoteId": "930b9ca8-3bd8-46e7-be85-744ac22d2c0b", + "quoteRequestIndex": 1 + }, + { + "quote": { + "requestId": "0x6aa8429aa2b6109fc06fbcfbf30a88e1854c8c62a7189bd611fb8d1aa25a04fa", + "bridgeId": "kyberswap", + "srcChainId": 56, + "destChainId": 56, + "aggregator": "kyberswap", + "aggregatorType": "AGG", + "srcAsset": { + "address": "0xf8a0bf9cf54bb92f17374d9e9a321e6a111a51bd", + "chainId": 56, + "assetId": "eip155:56/erc20:0xf8a0bf9cf54bb92f17374d9e9a321e6a111a51bd", + "symbol": "LINK", + "decimals": 18, + "name": "BNB pegged ChainLink", + "coingeckoId": "chainlink", + "aggregators": [ + "pancakeTop100", + "oneInch", + "liFi", + "trustWallet", + "socket", + "rubic", + "squid", + "rango", + "sonarwatch", + "sushiSwap" + ], + "occurrences": 13, + "iconUrl": "https://static.cx.metamask.io/api/v2/tokenIcons/assets/eip155/56/erc20/0xf8a0bf9cf54bb92f17374d9e9a321e6a111a51bd.png", + "metadata": { + "storage": { + "balance": 1, + "approval": 2 + } + } + }, + "srcTokenAmount": "487747159749581540", + "destAsset": { + "address": "0x55d398326f99059ff775485246999027b3197955", + "chainId": 56, + "assetId": "eip155:56/erc20:0x55d398326f99059ff775485246999027b3197955", + "symbol": "USDT", + "decimals": 18, + "name": "Tether USD", + "coingeckoId": "binance-bridged-usdt-bnb-smart-chain", + "aggregators": [ + "pancakeExtended", + "oneInch", + "liFi", + "trustWallet", + "socket", + "rubic", + "squid", + "rango", + "sonarwatch", + "sushiSwap" + ], + "occurrences": 11, + "iconUrl": "https://static.cx.metamask.io/api/v2/tokenIcons/assets/eip155/56/erc20/0x55d398326f99059ff775485246999027b3197955.png", + "metadata": { + "storage": { + "balance": 1, + "approval": 2 + } + } + }, + "destTokenAmount": "4845426335187781456", + "minDestTokenAmount": "4748517808484025826", + "walletAddress": "0x141d32a89a1e0a5ef360034a2f60a4b917c18838", + "destWalletAddress": "0x141d32a89a1e0a5ef360034a2f60a4b917c18838", + "feeData": { + "metabridge": { + "amount": "42771733097496179", + "asset": { + "address": "0x55d398326f99059ff775485246999027b3197955", + "chainId": 56, + "assetId": "eip155:56/erc20:0x55d398326f99059ff775485246999027b3197955", + "symbol": "USDT", + "decimals": 18, + "name": "Tether USD", + "coingeckoId": "binance-bridged-usdt-bnb-smart-chain", + "aggregators": [ + "pancakeExtended", + "oneInch", + "liFi", + "trustWallet", + "socket", + "rubic", + "squid", + "rango", + "sonarwatch", + "sushiSwap" + ], + "occurrences": 11, + "iconUrl": "https://static.cx.metamask.io/api/v2/tokenIcons/assets/eip155/56/erc20/0x55d398326f99059ff775485246999027b3197955.png", + "metadata": { + "storage": { + "balance": 1, + "approval": 2 + } + } + }, + "quoteBpsFee": 87.5, + "baseBpsFee": 87.5, + "usd": "0.04275111712214318" + } + }, + "bridges": ["kyberswap"], + "protocols": ["kyberswap"], + "steps": [], + "slippage": 2, + "gasSponsored": false, + "gasIncluded": false, + "gasIncluded7702": false, + "priceData": { + "totalFromAmountUsd": "4.906736427080791", + "totalToAmountUsd": "4.843090839694221", + "priceImpact": "0.0042583233428042004", + "totalFeeAmountUsd": "0.04275111712214318" + } + }, + "approval": { + "chainId": 56, + "to": "0xf8a0bf9cf54bb92f17374d9e9a321e6a111a51bd", + "from": "0x141d32a89a1e0a5ef360034a2f60a4b917c18838", + "value": "0x0", + "data": "0x095ea7b30000000000000000000000001a1ec25dc08e98e5e93f1104b5e5cdd298707d3100000000000000000000000000000000000000000000000006c4d37525145ae4", + "gasLimit": 51261, + "feeEstimate": 2773080000000, + "effectiveGas": 46218, + "gasCost": "0", + "gasIncludedFeeData": { + "maxFeePerGas": "0x39386ff", + "maxPriorityFeePerGas": "0x39386ff", + "gas": "0xb608", + "balanceNeeded": "0x28afe963800", + "currentBalance": "0x1c64da03f600", + "error": "" + } + }, + "trade": { + "chainId": 56, + "to": "0x1a1ec25DC08e98e5E93F1104B5e5cdD298707d31", + "from": "0x141d32a89a1e0a5ef360034a2f60a4b917c18838", + "value": "0x0", + "data": "0x5f5755290000000000000000000000000000000000000000000000000000000000000080000000000000000000000000f8a0bf9cf54bb92f17374d9e9a321e6a111a51bd00000000000000000000000000000000000000000000000006c4d37525145ae400000000000000000000000000000000000000000000000000000000000000c000000000000000000000000000000000000000000000000000000000000000136b796265725377617046656544796e616d6963000000000000000000000000000000000000000000000000000000000000000000000000000000000000000ba0000000000000000000000000f8a0bf9cf54bb92f17374d9e9a321e6a111a51bd00000000000000000000000055d398326f99059ff775485246999027b319795500000000000000000000000000000000000000000000000006c4d37525145ae400000000000000000000000000000000000000000000000041e61fc9c04e85e200000000000000000000000000000000000000000000000000000000000001200000000000000000000000000000000000000000000000000097f4aa25b43e73000000000000000000000000b28da7bc87a9dd1e60849aa7fcb5da24ea913c4200000000000000000000000000000000000000000000000000000000000000010000000000000000000000000000000000000000000000000000000000000a64e21fd0e900000000000000000000000000000000000000000000000000000000000000200000000000000000000000008f10b468b06c6fd214b65f87778827f7d113f996000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000a0000000000000000000000000000000000000000000000000000000000000072000000000000000000000000000000000000000000000000000000000000009600000000000000000000000000000000000000000000000000000000000000660000000000000000006c4d37525145ae400000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000000e000000000000000000000000000000000000000000000000000000000000000418c43a21043d87f0d30c0cee887503de2c2f290dd0928826a4774994c7637fe331b7c4e296a938602d918ad01088549a7fbe74cac3ccf2d6dc9e5acea440f0b9b1c000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000560000000000000000000000000c590175e458b83680867afd273527ff58f74c02b000000000000000000000000000000000000000000000000000000000000014000000000000000000000000000000000000000000000000000000000000001800000000000000000066e2f48e339bcc00000000000000000071b77a166eef940000000000000000006c4d37525145ae4000000000000000043d65e3e8be505c4000000000000000000000000000000000004721f4f383d0000000f42400000000000000000000000000000004f82e73edb06d29ff62c91ec8f5ff06571bdeb290000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000006a07a2e50000000000000000000000000000000000000000000000000000000000000540000000000000000000000000000000000000000000000000000000000000000161f598cd00000000000000003261c1bf28a7663c8ecccf14914a2c02ce17e5660000000000000000000000000000000000000000000000000000000000000003000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000001c00000000000000000000000000000000000000000000000000000000000000320000000000000000000000000f8a0bf9cf54bb92f17374d9e9a321e6a111a51bd8000000000000000000000718fff06c5000000000000000006c4d37525145ae400000000000000000000000000000000000000000000000000000000000000600000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000002000000000000000000000000000000000000000000000000006c4d37525145ae4b372966800000000000000015455c918e405a2831fbff8595c0aae35ee3db9d100000000000000000000000000000000000000000000000000000000000000800000000000000000000000001e40450f8e21bb68490d7d91ab422888fb3d60f100000000000000000000000000000000000000000000000000000000000000200000000100000000000003e8e7b2d08e7cd3270df7ff804786f444434ff7e1f60000000000000000000000008ac76a51cc950d9822d68b83fe1ad97b32cd580d800000000000000000000471e4567128000000000000000043d2da68002a754700000000000000000000000000000000000000000000000000000000000000600000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000002000000000000000000000000000000000000000000000000043d2da68002a7547f7f995d600000000000200025455c918e405a2831fbff8595c0aae35ee3db9d10000000000000000000000000000000000000000000000000000000000000080000000000000000000000000c590175e458b83680867afd273527ff58f74c02b00000000000000000000000000000000000000000000000000000000000000200000000000000000000000001e40450f8e21bb68490d7d91ab422888fb3d60f100000000000000000000000055d398326f99059ff775485246999027b31979558000000000000000000000000000000100000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000f8a0bf9cf54bb92f17374d9e9a321e6a111a51bd00000000000000000000000055d398326f99059ff775485246999027b3197955000000000000000000000000000000000000000000000000000000000000016000000000000000000000000000000000000000000000000000000000000001a000000000000000000000000000000000000000000000000000000000000001e00000000000000000000000000000000000000000000000000000000000000200000000000000000000000000c590175e458b83680867afd273527ff58f74c02b00000000000000000000000000000000000000000000000006c4d37525145ae4000000000000000000000000000000000000000000000000427b0a707edb5272000000000000000000000000000000000000000000000000000000000000020000000000000000000000000000000000000000000000000000000000000002200000000000000000000000000000000000000000000000000000000000000001000000000000000000000000e7b2d08e7cd3270df7ff804786f444434ff7e1f6000000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000006c4d37525145ae400000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000af7b22536f75726365223a226d6574616d61736b222c22416d6f756e74496e555344223a22342e393030383236222c22416d6f756e744f7574555344223a22342e383836313934222c22416d6f756e744f7574223a2234383838313938303638323835323737363335222c22526f7574654944223a2232303061323137376e623944544a306b3a623462323465336463794e4b37354a70222c2254696d657374616d70223a313737383838343134397d00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000065", + "gasLimit": 632463, + "feeEstimate": 21585240000000, + "effectiveGas": 359754, + "gasCost": "0", + "gasIncludedFeeData": { + "maxFeePerGas": "0x39386ff", + "maxPriorityFeePerGas": "0x39386ff", + "gas": "0x66f0a", + "balanceNeeded": "0x1702454c4600", + "currentBalance": "0x19d9db6dbe00", + "error": "" + } + }, + "estimatedProcessingTimeInSeconds": 0, + "quoteId": "2f7c1d74-173c-4b82-8704-98c7ee44404f", + "quoteRequestIndex": 0 + }, + { + "quote": { + "requestId": "0xfe96f45df0c6f71142798002b5319f4e28f33e9b607299e3c91a85d56dcc8097", + "bridgeId": "pancakeswap", + "srcChainId": 56, + "destChainId": 56, + "aggregator": "pancakeswap", + "aggregatorType": "AGG", + "srcAsset": { + "address": "0xf8a0bf9cf54bb92f17374d9e9a321e6a111a51bd", + "chainId": 56, + "assetId": "eip155:56/erc20:0xf8a0bf9cf54bb92f17374d9e9a321e6a111a51bd", + "symbol": "LINK", + "decimals": 18, + "name": "BNB pegged ChainLink", + "coingeckoId": "chainlink", + "aggregators": [ + "pancakeTop100", + "oneInch", + "liFi", + "trustWallet", + "socket", + "rubic", + "squid", + "rango", + "sonarwatch", + "sushiSwap" + ], + "occurrences": 13, + "iconUrl": "https://static.cx.metamask.io/api/v2/tokenIcons/assets/eip155/56/erc20/0xf8a0bf9cf54bb92f17374d9e9a321e6a111a51bd.png", + "metadata": { + "storage": { + "balance": 1, + "approval": 2 + } + } + }, + "srcTokenAmount": "487747159749581540", + "destAsset": { + "address": "0x55d398326f99059ff775485246999027b3197955", + "chainId": 56, + "assetId": "eip155:56/erc20:0x55d398326f99059ff775485246999027b3197955", + "symbol": "USDT", + "decimals": 18, + "name": "Tether USD", + "coingeckoId": "binance-bridged-usdt-bnb-smart-chain", + "aggregators": [ + "pancakeExtended", + "oneInch", + "liFi", + "trustWallet", + "socket", + "rubic", + "squid", + "rango", + "sonarwatch", + "sushiSwap" + ], + "occurrences": 11, + "iconUrl": "https://static.cx.metamask.io/api/v2/tokenIcons/assets/eip155/56/erc20/0x55d398326f99059ff775485246999027b3197955.png", + "metadata": { + "storage": { + "balance": 1, + "approval": 2 + } + } + }, + "destTokenAmount": "4850193215727346824", + "minDestTokenAmount": "4753189351412799887", + "walletAddress": "0x141d32a89a1e0a5ef360034a2f60a4b917c18838", + "destWalletAddress": "0x141d32a89a1e0a5ef360034a2f60a4b917c18838", + "feeData": { + "metabridge": { + "amount": "42813811488135470", + "asset": { + "address": "0x55d398326f99059ff775485246999027b3197955", + "chainId": 56, + "assetId": "eip155:56/erc20:0x55d398326f99059ff775485246999027b3197955", + "symbol": "USDT", + "decimals": 18, + "name": "Tether USD", + "coingeckoId": "binance-bridged-usdt-bnb-smart-chain", + "aggregators": [ + "pancakeExtended", + "oneInch", + "liFi", + "trustWallet", + "socket", + "rubic", + "squid", + "rango", + "sonarwatch", + "sushiSwap" + ], + "occurrences": 11, + "iconUrl": "https://static.cx.metamask.io/api/v2/tokenIcons/assets/eip155/56/erc20/0x55d398326f99059ff775485246999027b3197955.png", + "metadata": { + "storage": { + "balance": 1, + "approval": 2 + } + } + }, + "quoteBpsFee": 87.5, + "baseBpsFee": 87.5, + "usd": "0.04279317523099819" + } + }, + "bridges": ["pancakeswap"], + "protocols": ["pancakeswap"], + "steps": [], + "slippage": 2, + "gasSponsored": false, + "gasIncluded": false, + "gasIncluded7702": false, + "priceData": { + "totalFromAmountUsd": "4.906736427080791", + "totalToAmountUsd": "4.847855422597367", + "priceImpact": "0.00327872293356457", + "totalFeeAmountUsd": "0.04279317523099819" + } + }, + "approval": { + "chainId": 56, + "to": "0xf8a0bf9cf54bb92f17374d9e9a321e6a111a51bd", + "from": "0x141d32a89a1e0a5ef360034a2f60a4b917c18838", + "value": "0x0", + "data": "0x095ea7b30000000000000000000000001a1ec25dc08e98e5e93f1104b5e5cdd298707d3100000000000000000000000000000000000000000000000006c4d37525145ae4", + "gasLimit": 51261, + "feeEstimate": 2773080000000, + "effectiveGas": 46218, + "gasCost": "0", + "gasIncludedFeeData": { + "maxFeePerGas": "0x39386ff", + "maxPriorityFeePerGas": "0x39386ff", + "gas": "0xb608", + "balanceNeeded": "0x28afe963800", + "currentBalance": "0x1c64da03f600", + "error": "" + } + }, + "trade": { + "chainId": 56, + "to": "0x1a1ec25DC08e98e5E93F1104B5e5cdD298707d31", + "from": "0x141d32a89a1e0a5ef360034a2f60a4b917c18838", + "value": "0x0", + "data": "0x5f5755290000000000000000000000000000000000000000000000000000000000000080000000000000000000000000f8a0bf9cf54bb92f17374d9e9a321e6a111a51bd00000000000000000000000000000000000000000000000006c4d37525145ae400000000000000000000000000000000000000000000000000000000000000c0000000000000000000000000000000000000000000000000000000000000001b70616e63616b6553776170526f7574657246656544796e616d696300000000000000000000000000000000000000000000000000000000000000000000000220000000000000000000000000f8a0bf9cf54bb92f17374d9e9a321e6a111a51bd00000000000000000000000055d398326f99059ff775485246999027b319795500000000000000000000000000000000000000000000000006c4d37525145ae400000000000000000000000000000000000000000000000041f6b8881921198f000000000000000000000000000000000000000000000000000000000000012000000000000000000000000000000000000000000000000000981aef493b192e000000000000000000000000b28da7bc87a9dd1e60849aa7fcb5da24ea913c42000000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000000000e404e45aaf000000000000000000000000f8a0bf9cf54bb92f17374d9e9a321e6a111a51bd00000000000000000000000055d398326f99059ff775485246999027b319795500000000000000000000000000000000000000000000000000000000000009c4000000000000000000000000c590175e458b83680867afd273527ff58f74c02b00000000000000000000000000000000000000000000000006c4d37525145ae4000000000000000000000000000000000000000000000000429299d998f83276000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000ad", + "gasLimit": 384447, + "feeEstimate": 11999760000000, + "effectiveGas": 199996, + "gasCost": "0", + "gasIncludedFeeData": { + "maxFeePerGas": "0x39386ff", + "maxPriorityFeePerGas": "0x39386ff", + "gas": "0x3e92a", + "balanceNeeded": "0xdfc71132600", + "currentBalance": "0x19d9db6dbe00", + "error": "" + } + }, + "estimatedProcessingTimeInSeconds": 0, + "quoteId": "a669e380-c970-437e-b83d-0d95a36444dc", + "quoteRequestIndex": 0 + }, + { + "quote": { + "requestId": "0x3f64cb4f8ff9895a676d5fbbacb159a5cf3f0f22dcdd300f5bb364616fc987ec", + "bridgeId": "pancakeswap", + "srcChainId": 56, + "destChainId": 56, + "aggregator": "pancakeswap", + "aggregatorType": "AGG", + "srcAsset": { + "address": "0x1af3f329e8be154074d8769d1ffa4ee058b1dbc3", + "chainId": 56, + "assetId": "eip155:56/erc20:0x1af3f329e8be154074d8769d1ffa4ee058b1dbc3", + "symbol": "DAI", + "decimals": 18, + "name": "BNB pegged Dai Token", + "coingeckoId": "binance-peg-dai", + "aggregators": [ + "pancakeExtended", + "oneInch", + "liFi", + "trustWallet", + "socket", + "rubic", + "rango", + "sonarwatch", + "sushiSwap", + "binanceDex" + ], + "occurrences": 12, + "iconUrl": "https://static.cx.metamask.io/api/v2/tokenIcons/assets/eip155/56/erc20/0x1af3f329e8be154074d8769d1ffa4ee058b1dbc3.png", + "metadata": { + "storage": { + "balance": 1, + "approval": 2 + } + } + }, + "srcTokenAmount": "991250000000000000", + "destAsset": { + "address": "0x55d398326f99059ff775485246999027b3197955", + "chainId": 56, + "assetId": "eip155:56/erc20:0x55d398326f99059ff775485246999027b3197955", + "symbol": "USDT", + "decimals": 18, + "name": "Tether USD", + "coingeckoId": "binance-bridged-usdt-bnb-smart-chain", + "aggregators": [ + "pancakeExtended", + "oneInch", + "liFi", + "trustWallet", + "socket", + "rubic", + "squid", + "rango", + "sonarwatch", + "sushiSwap" + ], + "occurrences": 11, + "iconUrl": "https://static.cx.metamask.io/api/v2/tokenIcons/assets/eip155/56/erc20/0x55d398326f99059ff775485246999027b3197955.png", + "metadata": { + "storage": { + "balance": 1, + "approval": 2 + } + } + }, + "destTokenAmount": "990588537053038367", + "minDestTokenAmount": "970776766311977599", + "walletAddress": "0x141d32a89a1e0a5ef360034a2f60a4b917c18838", + "destWalletAddress": "0x141d32a89a1e0a5ef360034a2f60a4b917c18838", + "feeData": { + "metabridge": { + "amount": "8750000000000000", + "asset": { + "address": "0x1af3f329e8be154074d8769d1ffa4ee058b1dbc3", + "chainId": 56, + "assetId": "eip155:56/erc20:0x1af3f329e8be154074d8769d1ffa4ee058b1dbc3", + "symbol": "DAI", + "decimals": 18, + "name": "BNB pegged Dai Token", + "coingeckoId": "binance-peg-dai", + "aggregators": [ + "pancakeExtended", + "oneInch", + "liFi", + "trustWallet", + "socket", + "rubic", + "rango", + "sonarwatch", + "sushiSwap", + "binanceDex" + ], + "occurrences": 12, + "iconUrl": "https://static.cx.metamask.io/api/v2/tokenIcons/assets/eip155/56/erc20/0x1af3f329e8be154074d8769d1ffa4ee058b1dbc3.png", + "metadata": { + "storage": { + "balance": 1, + "approval": 2 + } + } + }, + "quoteBpsFee": 87.5, + "baseBpsFee": 87.5, + "usd": "0.008742761859012143" + } + }, + "bridges": ["pancakeswap"], + "protocols": ["pancakeswap"], + "steps": [], + "slippage": 2, + "gasSponsored": false, + "gasIncluded": false, + "gasIncluded7702": false, + "priceData": { + "totalFromAmountUsd": "0.999172783887102", + "totalToAmountUsd": "0.9901110733781788", + "priceImpact": "0.0003220304744578448", + "totalFeeAmountUsd": "0.008742761859012143" + } + }, + "approval": { + "chainId": 56, + "to": "0x1af3f329e8be154074d8769d1ffa4ee058b1dbc3", + "from": "0x141d32a89a1e0a5ef360034a2f60a4b917c18838", + "value": "0x0", + "data": "0x095ea7b30000000000000000000000001a1ec25dc08e98e5e93f1104b5e5cdd298707d310000000000000000000000000000000000000000000000000de0b6b3a7640000", + "gasLimit": 51234, + "feeEstimate": 2771640000000, + "effectiveGas": 46194, + "gasCost": "0", + "gasIncludedFeeData": { + "maxFeePerGas": "0x39386ff", + "maxPriorityFeePerGas": "0x39386ff", + "gas": "0xb5f0", + "balanceNeeded": "0x28aa8c19000", + "currentBalance": "0x1c64da03f600", + "error": "" + } + }, + "trade": { + "chainId": 56, + "to": "0x1a1ec25DC08e98e5E93F1104B5e5cdD298707d31", + "from": "0x141d32a89a1e0a5ef360034a2f60a4b917c18838", + "value": "0x0", + "data": "0x5f57552900000000000000000000000000000000000000000000000000000000000000800000000000000000000000001af3f329e8be154074d8769d1ffa4ee058b1dbc30000000000000000000000000000000000000000000000000de0b6b3a764000000000000000000000000000000000000000000000000000000000000000000c0000000000000000000000000000000000000000000000000000000000000001b70616e63616b6553776170526f7574657246656544796e616d6963000000000000000000000000000000000000000000000000000000000000000000000002200000000000000000000000001af3f329e8be154074d8769d1ffa4ee058b1dbc300000000000000000000000055d398326f99059ff775485246999027b31979550000000000000000000000000000000000000000000000000dc1a09f859b20000000000000000000000000000000000000000000000000000d78e453583a527f0000000000000000000000000000000000000000000000000000000000000120000000000000000000000000000000000000000000000000001f161421c8e000000000000000000000000000b28da7bc87a9dd1e60849aa7fcb5da24ea913c42000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000e404e45aaf0000000000000000000000001af3f329e8be154074d8769d1ffa4ee058b1dbc300000000000000000000000055d398326f99059ff775485246999027b31979550000000000000000000000000000000000000000000000000000000000000064000000000000000000000000c590175e458b83680867afd273527ff58f74c02b0000000000000000000000000000000000000000000000000dc1a09f859b20000000000000000000000000000000000000000000000000000d7a45a227b4c337000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000ad", + "gasLimit": 373703, + "feeEstimate": 11661300000000, + "effectiveGas": 194355, + "gasCost": "0", + "gasIncludedFeeData": { + "maxFeePerGas": "0x39386ff", + "maxPriorityFeePerGas": "0x39386ff", + "gas": "0x3cd2f", + "balanceNeeded": "0xd986030c900", + "currentBalance": "0x19da31426600", + "error": "" + } + }, + "estimatedProcessingTimeInSeconds": 0, + "quoteId": "f0e7f4d6-8d63-4c9e-a0ea-ef49138efc1b", + "quoteRequestIndex": 1 + } + ], + "quotesLastFetched": 1778884147493, + "quotesLoadingStatus": 1, + "quoteFetchError": null, + "quotesRefreshCount": 1, + "assetExchangeRates": {}, + "minimumBalanceForRentExemptionInLamports": "0", + "tokenWarnings": [], + "tokenSecurityTypeDestination": null, + "quoteStreamComplete": { + "quoteCount": 17, + "hasQuotes": true + }, + "batchSellTrades": { + "transactions": [ + { + "type": "approval", + "chainId": 56, + "from": "0x141d32a89a1e0a5ef360034a2f60a4b917c18838", + "to": "0xf8a0bf9cf54bb92f17374d9e9a321e6a111a51bd", + "value": "0x0", + "data": "0x095ea7b30000000000000000000000001a1ec25dc08e98e5e93f1104b5e5cdd298707d3100000000000000000000000000000000000000000000000006c4d37525145ae4", + "gasLimit": 69900, + "maxFeePerGas": "0x3938700", + "maxPriorityFeePerGas": "0x3938700" + }, + { + "type": "trade", + "chainId": 56, + "from": "0x141d32a89a1e0a5ef360034a2f60a4b917c18838", + "to": "0x1a1ec25DC08e98e5E93F1104B5e5cdD298707d31", + "value": "0x0", + "data": "0x5f5755290000000000000000000000000000000000000000000000000000000000000080000000000000000000000000f8a0bf9cf54bb92f17374d9e9a321e6a111a51bd00000000000000000000000000000000000000000000000006c4d37525145ae400000000000000000000000000000000000000000000000000000000000000c0000000000000000000000000000000000000000000000000000000000000001b70616e63616b6553776170526f7574657246656544796e616d696300000000000000000000000000000000000000000000000000000000000000000000000220000000000000000000000000f8a0bf9cf54bb92f17374d9e9a321e6a111a51bd00000000000000000000000055d398326f99059ff775485246999027b319795500000000000000000000000000000000000000000000000006c4d37525145ae400000000000000000000000000000000000000000000000041f6b8881921198f000000000000000000000000000000000000000000000000000000000000012000000000000000000000000000000000000000000000000000981aef493b192e000000000000000000000000b28da7bc87a9dd1e60849aa7fcb5da24ea913c42000000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000000000e404e45aaf000000000000000000000000f8a0bf9cf54bb92f17374d9e9a321e6a111a51bd00000000000000000000000055d398326f99059ff775485246999027b319795500000000000000000000000000000000000000000000000000000000000009c4000000000000000000000000c590175e458b83680867afd273527ff58f74c02b00000000000000000000000000000000000000000000000006c4d37525145ae4000000000000000000000000000000000000000000000000429299d998f83276000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000ad", + "gasLimit": 384471, + "maxFeePerGas": "0x3938700", + "maxPriorityFeePerGas": "0x3938700" + }, + { + "type": "approval", + "chainId": 56, + "from": "0x141d32a89a1e0a5ef360034a2f60a4b917c18838", + "to": "0x1af3f329e8be154074d8769d1ffa4ee058b1dbc3", + "value": "0x0", + "data": "0x095ea7b30000000000000000000000001a1ec25dc08e98e5e93f1104b5e5cdd298707d310000000000000000000000000000000000000000000000000de0b6b3a7640000", + "gasLimit": 69864, + "maxFeePerGas": "0x3938700", + "maxPriorityFeePerGas": "0x3938700" + }, + { + "type": "trade", + "chainId": 56, + "from": "0x141d32a89a1e0a5ef360034a2f60a4b917c18838", + "to": "0x1a1ec25DC08e98e5E93F1104B5e5cdD298707d31", + "value": "0x0", + "data": "0x5f57552900000000000000000000000000000000000000000000000000000000000000800000000000000000000000001af3f329e8be154074d8769d1ffa4ee058b1dbc30000000000000000000000000000000000000000000000000de0b6b3a764000000000000000000000000000000000000000000000000000000000000000000c00000000000000000000000000000000000000000000000000000000000000018756e69737761705065726d69743246656544796e616d6963000000000000000000000000000000000000000000000000000000000000000000000000000003400000000000000000000000001af3f329e8be154074d8769d1ffa4ee058b1dbc300000000000000000000000055d398326f99059ff775485246999027b31979550000000000000000000000000000000000000000000000000dc1a09f859b20000000000000000000000000000000000000000000000000000d78ee2f23046c0f0000000000000000000000000000000000000000000000000000000000000120000000000000000000000000000000000000000000000000001f161421c8e000000000000000000000000000b28da7bc87a9dd1e60849aa7fcb5da24ea913c420000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000020e3593564c000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000000a0000000000000000000000000000000000000000000000000000000006a07a53d00000000000000000000000000000000000000000000000000000000000000010000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000000000200000000000000000000000000000000000000000000000000000000000000100000000000000000000000000c590175e458b83680867afd273527ff58f74c02b0000000000000000000000000000000000000000000000000dc1a09f859b20000000000000000000000000000000000000000000000000000d7a4f7ef50908a100000000000000000000000000000000000000000000000000000000000000a00000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000002b1af3f329e8be154074d8769d1ffa4ee058b1dbc300006455d398326f99059ff775485246999027b3197955000000000000000000000000000000000000000000756e69780000b2c5de0b000000000000000000000000000000000000ff", + "gasLimit": 353291, + "maxFeePerGas": "0x3938700", + "maxPriorityFeePerGas": "0x3938700" + }, + { + "type": "transfer", + "chainId": 56, + "from": "0x141d32a89a1e0a5ef360034a2f60a4b917c18838", + "to": "0x55d398326f99059ff775485246999027b3197955", + "value": "0x0", + "data": "0xa9059cbb000000000000000000000000e3478b0bb1a5084567c319096437924948be196400000000000000000000000000000000000000000000000000aa3e72161ce670", + "gasLimit": 52311, + "maxFeePerGas": "0x3938700", + "maxPriorityFeePerGas": "0x3938700" + } + ], + "fee": { + "asset": { + "address": "0x55d398326f99059ff775485246999027b3197955", + "chainId": 56, + "assetId": "eip155:56/erc20:0x55d398326f99059ff775485246999027b3197955", + "symbol": "USDT", + "decimals": 18, + "name": "Tether USD", + "coingeckoId": "binance-bridged-usdt-bnb-smart-chain", + "aggregators": [ + "pancakeExtended", + "oneInch", + "liFi", + "trustWallet", + "socket", + "rubic", + "squid", + "rango", + "sonarwatch", + "sushiSwap" + ], + "occurrences": 11, + "iconUrl": "https://static.cx.metamask.io/api/v2/tokenIcons/assets/eip155/56/erc20/0x55d398326f99059ff775485246999027b3197955.png", + "metadata": { + "storage": { + "balance": 1, + "approval": 2 + } + } + }, + "amount": "47919405758998128" + } + }, + "batchSellTradesLoadingStatus": 1, + "txHistory": { + "0248b3c0-2880-11f1-927e-9d8a4fbc2cec": { + "account": "0xf25bd11c334507fd007d584e2d0b7b2c6543f714", + "batchId": "0x4833455d75f9412495503e879918b757", + "estimatedProcessingTimeInSeconds": 0, + "hasApprovalTx": false, + "isStxEnabled": true, + "location": "Main View", + "originalTransactionId": "0248b3c0-2880-11f1-927e-9d8a4fbc2cec", + "pricingData": { + "amountSent": "0.001950721614518098", + "amountSentInUsd": "1.26047761242164057491098084", + "quotedGasAmount": "0.0000125086", + "quotedGasInUsd": "0.008082552705313788", + "quotedReturnInUsd": "1.2499799131534746656849401666611780917188608" + }, + "quote": { + "aggregator": "1inch", + "aggregatorType": "AGG", + "bridgeId": "1inch", + "bridges": ["1inch"], + "destAsset": { + "address": "0x55d398326f99059ff775485246999027b3197955", + "aggregators": [ + "pancakeExtended", + "oneInch", + "liFi", + "trustWallet", + "socket", + "rubic", + "squid", + "rango", + "sonarwatch", + "sushiSwap" + ], + "assetId": "eip155:56/erc20:0x55d398326f99059ff775485246999027b3197955", + "chainId": 56, + "coingeckoId": "binance-bridged-usdt-bnb-smart-chain", + "decimals": 18, + "iconUrl": "https://static.cx.metamask.io/api/v2/tokenIcons/assets/eip155/56/erc20/0x55d398326f99059ff775485246999027b3197955.png", + "metadata": { + "storage": { + "approval": 2, + "balance": 1 + } + }, + "name": "Tether USD", + "occurrences": 11, + "symbol": "USDT" + }, + "destChainId": 56, + "destTokenAmount": "1250460089827013632", + "destWalletAddress": "0xF25bd11C334507Fd007d584E2D0b7b2C6543f714", + "feeData": { + "metabridge": { + "amount": "17068814127033", + "asset": { + "address": "0x0000000000000000000000000000000000000000", + "aggregators": [], + "assetId": "eip155:56/slip44:714", + "chainId": 56, + "coingeckoId": "binancecoin", + "decimals": 18, + "iconUrl": "https://static.cx.metamask.io/api/v2/tokenIcons/assets/eip155/56/slip44/714.png", + "metadata": {}, + "name": "Binance Coin", + "occurrences": 100, + "symbol": "BNB" + }, + "baseBpsFee": 87.5, + "quoteBpsFee": 87.5 + }, + "txFee": { + "amount": "0", + "asset": { + "address": "0x0000000000000000000000000000000000000000", + "aggregators": [], + "assetId": "eip155:56/slip44:714", + "chainId": 56, + "coingeckoId": "binancecoin", + "decimals": 18, + "iconUrl": "https://static.cx.metamask.io/api/v2/tokenIcons/assets/eip155/56/slip44/714.png", + "metadata": {}, + "name": "Binance Coin", + "occurrences": 100, + "symbol": "BNB" + }, + "maxFeePerGas": "59999999", + "maxPriorityFeePerGas": "59999999" + } + }, + "gasIncluded": true, + "gasIncluded7702": false, + "gasSponsored": false, + "minDestTokenAmount": "1225450888030473359", + "priceData": { + "priceImpact": "0.008513005960701052", + "totalFeeAmountUsd": "0.011031233194018887", + "totalFromAmountUsd": "1.2607123650307563", + "totalToAmountUsd": "1.24997991315252" + }, + "protocols": ["1inch"], + "requestId": "0x66225b1e3a6ee14ef469886821b04cfa61594bebedb0b60ad8707a108407cc67", + "slippage": 2, + "srcAsset": { + "address": "0x0000000000000000000000000000000000000000", + "aggregators": [], + "assetId": "eip155:56/slip44:714", + "chainId": 56, + "coingeckoId": "binancecoin", + "decimals": 18, + "iconUrl": "https://static.cx.metamask.io/api/v2/tokenIcons/assets/eip155/56/slip44/714.png", + "metadata": {}, + "name": "Binance Coin", + "occurrences": 100, + "symbol": "BNB" + }, + "srcChainId": 56, + "srcTokenAmount": "1933652800391065", + "steps": [], + "walletAddress": "0xF25bd11C334507Fd007d584E2D0b7b2C6543f714" + }, + "slippagePercentage": 0, + "startTime": 1774466568316, + "status": { + "srcChain": { + "chainId": 56, + "txHash": "0x0f5ee2bcf3219aa12b8ffd56b455ecf65deecfb80fba5383be67e0a3b5a2cbba" + }, + "status": "FAILED" + }, + "txMetaId": "0248b3c0-2880-11f1-927e-9d8a4fbc2cec" + }, + "0b840310-182a-11f1-b7d6-03d70bc40886": { + "account": "0x30e8ccad5a980bdf30447f8c2c48e70989d9d294", + "batchId": "0x6b5e01ae62fb4795bc40a9528a01f082", + "estimatedProcessingTimeInSeconds": 0, + "hasApprovalTx": false, + "isStxEnabled": true, + "pricingData": { + "amountSent": "10", + "amountSentInUsd": "1.03943129", + "quotedGasAmount": "0.048220070153767674", + "quotedGasInUsd": "0.005012144972382123174611946", + "quotedReturnInUsd": "1.03023162744013789578985517895" + }, + "quote": { + "aggregator": "uniswap", + "aggregatorType": "AGG", + "bridgeId": "uniswap", + "bridges": ["uniswap"], + "destAsset": { + "address": "0xc2132d05d31c914a87c6611c10748aeb04b58e8f", + "aggregators": [ + "quickswap", + "oneInch", + "liFi", + "socket", + "squid", + "rango", + "sonarwatch", + "sushiSwap" + ], + "assetId": "eip155:137/erc20:0xc2132d05d31c914a87c6611c10748aeb04b58e8f", + "chainId": 137, + "coingeckoId": "polygon-bridged-usdt-polygon", + "decimals": 6, + "iconUrl": "https://static.cx.metamask.io/api/v2/tokenIcons/assets/eip155/137/erc20/0xc2132d05d31c914a87c6611c10748aeb04b58e8f.png", + "metadata": { + "storage": { + "approval": 1, + "balance": 0 + } + }, + "name": "Tether USD", + "occurrences": 8, + "symbol": "USDT" + }, + "destChainId": 137, + "destTokenAmount": "1029541", + "destWalletAddress": "0x30E8ccaD5A980BDF30447f8c2C48e70989D9d294", + "feeData": { + "metabridge": { + "amount": "87500000000000000", + "asset": { + "address": "0x0000000000000000000000000000000000000000", + "aggregators": [], + "assetId": "eip155:137/slip44:966", + "chainId": 137, + "coingeckoId": "matic-network", + "decimals": 18, + "iconUrl": "https://static.cx.metamask.io/api/v2/tokenIcons/assets/eip155/137/slip44/966.png", + "metadata": {}, + "name": "Polygon Ecosystem Token", + "occurrences": 100, + "symbol": "POL" + }, + "baseBpsFee": 87.5, + "quoteBpsFee": 87.5 + } + }, + "gasIncluded7702": false, + "gasSponsored": false, + "minDestTokenAmount": "1008950", + "priceData": { + "priceImpact": "0.00025566483421602553", + "totalFeeAmountUsd": "0.009084687499999999", + "totalFromAmountUsd": "1.0382500000000001", + "totalToAmountUsd": "1.0289021911209988" + }, + "protocols": ["uniswap"], + "requestId": "0xb0d6fc377c20604e6352de7ad7412073547d3b5daa227e969cfdf2b91af0cef5", + "slippage": 2, + "srcAsset": { + "address": "0x0000000000000000000000000000000000000000", + "aggregators": [], + "assetId": "eip155:137/slip44:966", + "chainId": 137, + "coingeckoId": "matic-network", + "decimals": 18, + "iconUrl": "https://static.cx.metamask.io/api/v2/tokenIcons/assets/eip155/137/slip44/966.png", + "metadata": {}, + "name": "Polygon Ecosystem Token", + "occurrences": 100, + "symbol": "POL" + }, + "srcChainId": 137, + "srcTokenAmount": "9912500000000000000", + "steps": [], + "walletAddress": "0x30E8ccaD5A980BDF30447f8c2C48e70989D9d294" + }, + "slippagePercentage": 0, + "startTime": 1772670428575, + "status": { + "srcChain": { + "chainId": 137 + }, + "status": "PENDING" + }, + "txMetaId": "0b840310-182a-11f1-b7d6-03d70bc40886" + }, + "0bad35f0-182a-11f1-b7d6-03d70bc40886": { + "account": "0x30e8ccad5a980bdf30447f8c2c48e70989d9d294", + "batchId": "0x7c4e097ffb484161b47562a27a8e1972", + "estimatedProcessingTimeInSeconds": 0, + "hasApprovalTx": false, + "isStxEnabled": true, + "pricingData": { + "amountSent": "10", + "amountSentInUsd": "1.03943129", + "quotedGasAmount": "0.048220070153767674", + "quotedGasInUsd": "0.005012144972382123174611946", + "quotedReturnInUsd": "1.03023162744013789578985517895" + }, + "quote": { + "aggregator": "uniswap", + "aggregatorType": "AGG", + "bridgeId": "uniswap", + "bridges": ["uniswap"], + "destAsset": { + "address": "0xc2132d05d31c914a87c6611c10748aeb04b58e8f", + "aggregators": [ + "quickswap", + "oneInch", + "liFi", + "socket", + "squid", + "rango", + "sonarwatch", + "sushiSwap" + ], + "assetId": "eip155:137/erc20:0xc2132d05d31c914a87c6611c10748aeb04b58e8f", + "chainId": 137, + "coingeckoId": "polygon-bridged-usdt-polygon", + "decimals": 6, + "iconUrl": "https://static.cx.metamask.io/api/v2/tokenIcons/assets/eip155/137/erc20/0xc2132d05d31c914a87c6611c10748aeb04b58e8f.png", + "metadata": { + "storage": { + "approval": 1, + "balance": 0 + } + }, + "name": "Tether USD", + "occurrences": 8, + "symbol": "USDT" + }, + "destChainId": 137, + "destTokenAmount": "1029541", + "destWalletAddress": "0x30E8ccaD5A980BDF30447f8c2C48e70989D9d294", + "feeData": { + "metabridge": { + "amount": "87500000000000000", + "asset": { + "address": "0x0000000000000000000000000000000000000000", + "aggregators": [], + "assetId": "eip155:137/slip44:966", + "chainId": 137, + "coingeckoId": "matic-network", + "decimals": 18, + "iconUrl": "https://static.cx.metamask.io/api/v2/tokenIcons/assets/eip155/137/slip44/966.png", + "metadata": {}, + "name": "Polygon Ecosystem Token", + "occurrences": 100, + "symbol": "POL" + }, + "baseBpsFee": 87.5, + "quoteBpsFee": 87.5 + } + }, + "gasIncluded7702": false, + "gasSponsored": false, + "minDestTokenAmount": "1008950", + "priceData": { + "priceImpact": "0.00025566483421602553", + "totalFeeAmountUsd": "0.009084687499999999", + "totalFromAmountUsd": "1.0382500000000001", + "totalToAmountUsd": "1.0289021911209988" + }, + "protocols": ["uniswap"], + "requestId": "0xb0d6fc377c20604e6352de7ad7412073547d3b5daa227e969cfdf2b91af0cef5", + "slippage": 2, + "srcAsset": { + "address": "0x0000000000000000000000000000000000000000", + "aggregators": [], + "assetId": "eip155:137/slip44:966", + "chainId": 137, + "coingeckoId": "matic-network", + "decimals": 18, + "iconUrl": "https://static.cx.metamask.io/api/v2/tokenIcons/assets/eip155/137/slip44/966.png", + "metadata": {}, + "name": "Polygon Ecosystem Token", + "occurrences": 100, + "symbol": "POL" + }, + "srcChainId": 137, + "srcTokenAmount": "9912500000000000000", + "steps": [], + "walletAddress": "0x30E8ccaD5A980BDF30447f8c2C48e70989D9d294" + }, + "slippagePercentage": 0, + "startTime": 1772670428848, + "status": { + "srcChain": { + "chainId": 137 + }, + "status": "PENDING" + }, + "txMetaId": "0bad35f0-182a-11f1-b7d6-03d70bc40886" + }, + "0bc810f0-182a-11f1-b7d6-03d70bc40886": { + "account": "0x30e8ccad5a980bdf30447f8c2c48e70989d9d294", + "batchId": "0x5f4d75c45e8f4ca899585aa811134606", + "estimatedProcessingTimeInSeconds": 0, + "hasApprovalTx": false, + "isStxEnabled": true, + "pricingData": { + "amountSent": "10", + "amountSentInUsd": "1.03943129", + "quotedGasAmount": "0.048220070153767674", + "quotedGasInUsd": "0.005012144972382123174611946", + "quotedReturnInUsd": "1.03023162744013789578985517895" + }, + "quote": { + "aggregator": "uniswap", + "aggregatorType": "AGG", + "bridgeId": "uniswap", + "bridges": ["uniswap"], + "destAsset": { + "address": "0xc2132d05d31c914a87c6611c10748aeb04b58e8f", + "aggregators": [ + "quickswap", + "oneInch", + "liFi", + "socket", + "squid", + "rango", + "sonarwatch", + "sushiSwap" + ], + "assetId": "eip155:137/erc20:0xc2132d05d31c914a87c6611c10748aeb04b58e8f", + "chainId": 137, + "coingeckoId": "polygon-bridged-usdt-polygon", + "decimals": 6, + "iconUrl": "https://static.cx.metamask.io/api/v2/tokenIcons/assets/eip155/137/erc20/0xc2132d05d31c914a87c6611c10748aeb04b58e8f.png", + "metadata": { + "storage": { + "approval": 1, + "balance": 0 + } + }, + "name": "Tether USD", + "occurrences": 8, + "symbol": "USDT" + }, + "destChainId": 137, + "destTokenAmount": "1029541", + "destWalletAddress": "0x30E8ccaD5A980BDF30447f8c2C48e70989D9d294", + "feeData": { + "metabridge": { + "amount": "87500000000000000", + "asset": { + "address": "0x0000000000000000000000000000000000000000", + "aggregators": [], + "assetId": "eip155:137/slip44:966", + "chainId": 137, + "coingeckoId": "matic-network", + "decimals": 18, + "iconUrl": "https://static.cx.metamask.io/api/v2/tokenIcons/assets/eip155/137/slip44/966.png", + "metadata": {}, + "name": "Polygon Ecosystem Token", + "occurrences": 100, + "symbol": "POL" + }, + "baseBpsFee": 87.5, + "quoteBpsFee": 87.5 + } + }, + "gasIncluded7702": false, + "gasSponsored": false, + "minDestTokenAmount": "1008950", + "priceData": { + "priceImpact": "0.00025566483421602553", + "totalFeeAmountUsd": "0.009084687499999999", + "totalFromAmountUsd": "1.0382500000000001", + "totalToAmountUsd": "1.0289021911209988" + }, + "protocols": ["uniswap"], + "requestId": "0xb0d6fc377c20604e6352de7ad7412073547d3b5daa227e969cfdf2b91af0cef5", + "slippage": 2, + "srcAsset": { + "address": "0x0000000000000000000000000000000000000000", + "aggregators": [], + "assetId": "eip155:137/slip44:966", + "chainId": 137, + "coingeckoId": "matic-network", + "decimals": 18, + "iconUrl": "https://static.cx.metamask.io/api/v2/tokenIcons/assets/eip155/137/slip44/966.png", + "metadata": {}, + "name": "Polygon Ecosystem Token", + "occurrences": 100, + "symbol": "POL" + }, + "srcChainId": 137, + "srcTokenAmount": "9912500000000000000", + "steps": [], + "walletAddress": "0x30E8ccaD5A980BDF30447f8c2C48e70989D9d294" + }, + "slippagePercentage": 0, + "startTime": 1772670429031, + "status": { + "srcChain": { + "chainId": 137 + }, + "status": "PENDING" + }, + "txMetaId": "0bc810f0-182a-11f1-b7d6-03d70bc40886" + }, + "0eb6d2c0-1414-11f1-b5d8-f92a9c5664e8": { + "account": "0x30e8ccad5a980bdf30447f8c2c48e70989d9d294", + "approvalTxId": "0eae2030-1414-11f1-b5d8-f92a9c5664e8", + "batchId": "0x8a475ad2ca7d4712800421dd436c9d65", + "estimatedProcessingTimeInSeconds": 0, + "hasApprovalTx": true, + "isStxEnabled": true, + "pricingData": { + "amountSent": "3", + "amountSentInUsd": "3", + "quotedGasAmount": "0.00001191705", + "quotedGasInUsd": "0.007268923818", + "quotedReturnInUsd": "2.95945685110773945936" + }, + "quote": { + "aggregator": "uniswap", + "aggregatorType": "AGG", + "bridgeId": "uniswap", + "bridges": ["uniswap"], + "destAsset": { + "address": "0x0000000000000000000000000000000000000000", + "aggregators": [], + "assetId": "eip155:56/slip44:714", + "chainId": 56, + "coingeckoId": "binancecoin", + "decimals": 18, + "iconUrl": "https://static.cx.metamask.io/api/v2/tokenIcons/assets/eip155/56/slip44/714.png", + "metadata": {}, + "name": "Binance Coin", + "occurrences": 100, + "symbol": "BNB" + }, + "destChainId": 56, + "destTokenAmount": "4851886764882516", + "destWalletAddress": "0x30E8ccaD5A980BDF30447f8c2C48e70989D9d294", + "feeData": { + "metabridge": { + "amount": "43056567769706", + "asset": { + "address": "0x0000000000000000000000000000000000000000", + "aggregators": [], + "assetId": "eip155:56/slip44:714", + "chainId": 56, + "coingeckoId": "binancecoin", + "decimals": 18, + "iconUrl": "https://static.cx.metamask.io/api/v2/tokenIcons/assets/eip155/56/slip44/714.png", + "metadata": {}, + "name": "Binance Coin", + "occurrences": 100, + "symbol": "BNB" + }, + "baseBpsFee": 87.5, + "quoteBpsFee": 87.5 + }, + "txFee": { + "amount": "25807269600000", + "asset": { + "address": "0x0000000000000000000000000000000000000000", + "aggregators": [], + "assetId": "eip155:56/slip44:714", + "chainId": 56, + "coingeckoId": "binancecoin", + "decimals": 18, + "iconUrl": "https://static.cx.metamask.io/api/v2/tokenIcons/assets/eip155/56/slip44/714.png", + "metadata": {}, + "name": "Binance Coin", + "occurrences": 100, + "symbol": "BNB" + }, + "maxFeePerGas": "60000000", + "maxPriorityFeePerGas": "60000000" + } + }, + "gasIncluded": true, + "gasIncluded7702": false, + "minDestTokenAmount": "4754849029584865", + "priceData": { + "priceImpact": "-0.0005326429717786997", + "totalFeeAmountUsd": "0.026262353511132177", + "totalFromAmountUsd": "2.9998139999999998", + "totalToAmountUsd": "2.9594083322400913" + }, + "protocols": ["uniswap"], + "requestId": "0x11fb8e79bab01ebbcc0e4ac96e1ed33e2347bc2e5d7d809f950c9aa61a0ecd7f", + "srcAsset": { + "address": "0x55d398326f99059ff775485246999027b3197955", + "aggregators": [ + "pancakeExtended", + "oneInch", + "liFi", + "socket", + "squid", + "rango", + "sonarwatch", + "sushiSwap" + ], + "assetId": "eip155:56/erc20:0x55d398326f99059ff775485246999027b3197955", + "chainId": 56, + "coingeckoId": "binance-bridged-usdt-bnb-smart-chain", + "decimals": 18, + "iconUrl": "https://static.cx.metamask.io/api/v2/tokenIcons/assets/eip155/56/erc20/0x55d398326f99059ff775485246999027b3197955.png", + "metadata": { + "storage": { + "approval": 2, + "balance": 1 + } + }, + "name": "Tether USD", + "occurrences": 8, + "symbol": "USDT" + }, + "srcChainId": 56, + "srcTokenAmount": "3000000000000000000", + "steps": [], + "walletAddress": "0x30E8ccaD5A980BDF30447f8c2C48e70989D9d294" + }, + "slippagePercentage": 0, + "startTime": 1772221180338, + "status": { + "srcChain": { + "chainId": 56 + }, + "status": "PENDING" + }, + "txMetaId": "0eb6d2c0-1414-11f1-b5d8-f92a9c5664e8" + }, + "108f1b10-4ff2-11f1-9f48-c9082a6dd9ea": { + "account": "0x141d32a89a1e0a5ef360034a2f60a4b917c18838", + "batchId": "0x19e28f7e5fc", + "estimatedProcessingTimeInSeconds": 0, + "hasApprovalTx": true, + "isStxEnabled": false, + "location": "Main View", + "originalTransactionId": "108f1b10-4ff2-11f1-9f48-c9082a6dd9ea", + "pricingData": { + "amountSent": "3.603763007320799794", + "amountSentInUsd": "37.731398686634464384476199498749177234147328", + "quotedGasAmount": "0.0000124996", + "quotedGasInUsd": "0.008485751471263232", + "quotedReturnInUsd": "3.570934458887845161318442216972540636454784" + }, + "quote": { + "aggregator": "uniswap", + "aggregatorType": "AGG", + "bridgeId": "uniswap", + "bridges": ["uniswap"], + "destAsset": { + "address": "0x55d398326f99059ff775485246999027b3197955", + "aggregators": [ + "pancakeExtended", + "oneInch", + "liFi", + "trustWallet", + "socket", + "rubic", + "squid", + "rango", + "sonarwatch", + "sushiSwap" + ], + "assetId": "eip155:56/erc20:0x55d398326f99059ff775485246999027b3197955", + "chainId": 56, + "coingeckoId": "binance-bridged-usdt-bnb-smart-chain", + "decimals": 18, + "iconUrl": "https://static.cx.metamask.io/api/v2/tokenIcons/assets/eip155/56/erc20/0x55d398326f99059ff775485246999027b3197955.png", + "metadata": { + "storage": { + "approval": 2, + "balance": 1 + } + }, + "name": "Tether USD", + "occurrences": 10, + "symbol": "USDT" + }, + "destChainId": 56, + "destTokenAmount": "3571920308894442306", + "destWalletAddress": "0x141d32a89a1e0a5ef360034a2f60a4b917c18838", + "feeData": { + "metabridge": { + "amount": "31532926314056998", + "asset": { + "address": "0x1af3f329e8be154074d8769d1ffa4ee058b1dbc3", + "aggregators": [ + "pancakeExtended", + "oneInch", + "liFi", + "trustWallet", + "socket", + "rubic", + "rango", + "sonarwatch", + "sushiSwap" + ], + "assetId": "eip155:56/erc20:0x1af3f329e8be154074d8769d1ffa4ee058b1dbc3", + "chainId": 56, + "coingeckoId": "binance-peg-dai", + "decimals": 18, + "iconUrl": "https://static.cx.metamask.io/api/v2/tokenIcons/assets/eip155/56/erc20/0x1af3f329e8be154074d8769d1ffa4ee058b1dbc3.png", + "metadata": { + "storage": { + "approval": 2, + "balance": 1 + } + }, + "name": "BNB pegged Dai Token", + "occurrences": 9, + "symbol": "DAI" + }, + "baseBpsFee": 87.5, + "quoteBpsFee": 87.5, + "usd": "0.03153476037471023" + } + }, + "gasIncluded": false, + "gasIncluded7702": false, + "gasSponsored": false, + "minDestTokenAmount": "3500481902716553459", + "priceData": { + "priceImpact": "0.00042083167019072544", + "totalFeeAmountUsd": "0.03153476037471023", + "totalFromAmountUsd": "3.6039726142525974", + "totalToAmountUsd": "3.5709344588891874" + }, + "protocols": ["uniswap"], + "requestId": "0x032dc4ad0e368aa4e85eb3a05270f1e4c6bc4dcd69ba7c833ada800ca84926e8", + "slippage": 2, + "srcAsset": { + "address": "0x1af3f329e8be154074d8769d1ffa4ee058b1dbc3", + "aggregators": [ + "pancakeExtended", + "oneInch", + "liFi", + "trustWallet", + "socket", + "rubic", + "rango", + "sonarwatch", + "sushiSwap" + ], + "assetId": "eip155:56/erc20:0x1af3f329e8be154074d8769d1ffa4ee058b1dbc3", + "chainId": 56, + "coingeckoId": "binance-peg-dai", + "decimals": 18, + "iconUrl": "https://static.cx.metamask.io/api/v2/tokenIcons/assets/eip155/56/erc20/0x1af3f329e8be154074d8769d1ffa4ee058b1dbc3.png", + "metadata": { + "storage": { + "approval": 2, + "balance": 1 + } + }, + "name": "BNB pegged Dai Token", + "occurrences": 9, + "symbol": "DAI" + }, + "srcChainId": 56, + "srcTokenAmount": "3572230081006742796", + "steps": [], + "walletAddress": "0x141d32a89a1e0a5ef360034a2f60a4b917c18838" + }, + "slippagePercentage": 0, + "startTime": 1778803650233, + "status": { + "srcChain": { + "chainId": 56, + "txHash": "0x1af8fb2bebcc7b224ced25e09d3952f2b3a98f4bb8924502510d53301a0df3d5" + }, + "status": "COMPLETE" + }, + "tokenSecurityTypeDestination": null, + "txMetaId": "108f1b10-4ff2-11f1-9f48-c9082a6dd9ea" + }, + "110d0b00-12a4-11f1-ac17-173d9aac5876": { + "account": "0x30e8ccad5a980bdf30447f8c2c48e70989d9d294", + "batchId": "0x57f4c26e64ab4702bb7191d2b093c545", + "completionTime": 1772063177500, + "estimatedProcessingTimeInSeconds": 10, + "hasApprovalTx": false, + "isStxEnabled": true, + "location": "Main View", + "originalTransactionId": "110d0b00-12a4-11f1-ac17-173d9aac5876", + "pricingData": { + "amountSent": "10", + "amountSentInUsd": "1.14407905", + "quotedGasAmount": "0.10028672661493401", + "quotedGasInUsd": "0.01147359429132234179734905", + "quotedReturnInUsd": "1.08725327706307583850375717" + }, + "quote": { + "aggregator": "mayan", + "bridgeId": "mayan", + "bridges": ["mayan"], + "destAsset": { + "address": "0x0000000000000000000000000000000000000000", + "aggregators": [], + "assetId": "eip155:56/slip44:714", + "chainId": 56, + "coingeckoId": "binancecoin", + "decimals": 18, + "iconUrl": "https://static.cx.metamask.io/api/v2/tokenIcons/assets/eip155/56/slip44/714.png", + "metadata": {}, + "name": "Binance Coin", + "occurrences": 100, + "symbol": "BNB" + }, + "destChainId": 56, + "destTokenAmount": "1731935135059970", + "feeData": { + "metabridge": { + "amount": "87500000000000000", + "asset": { + "address": "0x0000000000000000000000000000000000000000", + "aggregators": [], + "assetId": "eip155:137/slip44:966", + "chainId": 137, + "coingeckoId": "matic-network", + "decimals": 18, + "iconUrl": "https://static.cx.metamask.io/api/v2/tokenIcons/assets/eip155/137/slip44/966.png", + "metadata": {}, + "name": "Polygon Ecosystem Token", + "occurrences": 100, + "symbol": "POL" + }, + "baseBpsFee": 87.5, + "quoteBpsFee": 87.5 + } + }, + "minDestTokenAmount": "1697296432358770", + "priceData": { + "priceImpact": "0.04165370030356173", + "totalFeeAmountUsd": "0.0100144625", + "totalFromAmountUsd": "1.14451", + "totalToAmountUsd": "1.0872396003852467" + }, + "protocols": ["mayan"], + "requestId": "0xcefe58fc1ccd2095123aaf5b1fc130cafe070ac32b713e02bf076cf056debd21", + "slippage": 2, + "srcAsset": { + "address": "0x0000000000000000000000000000000000000000", + "aggregators": [], + "assetId": "eip155:137/slip44:966", + "chainId": 137, + "coingeckoId": "matic-network", + "decimals": 18, + "iconUrl": "https://static.cx.metamask.io/api/v2/tokenIcons/assets/eip155/137/slip44/966.png", + "metadata": {}, + "name": "Polygon Ecosystem Token", + "occurrences": 100, + "symbol": "POL" + }, + "srcChainId": 137, + "srcTokenAmount": "9912500000000000000", + "steps": [ + { + "action": "bridge", + "destAmount": "1731935135059970", + "destAsset": { + "address": "0x0000000000000000000000000000000000000000", + "aggregators": [], + "assetId": "eip155:56/slip44:714", + "chainId": 56, + "coingeckoId": "binancecoin", + "decimals": 18, + "iconUrl": "https://static.cx.metamask.io/api/v2/tokenIcons/assets/eip155/56/slip44/714.png", + "metadata": {}, + "name": "Binance Coin", + "occurrences": 100, + "symbol": "BNB" + }, + "destChainId": 56, + "protocol": { + "displayName": "Mayan", + "name": "Mayan" + }, + "srcAmount": "9912500000000000000", + "srcAsset": { + "address": "0x0000000000000000000000000000000000000000", + "aggregators": [], + "assetId": "eip155:137/slip44:966", + "chainId": 137, + "coingeckoId": "matic-network", + "decimals": 18, + "iconUrl": "https://static.cx.metamask.io/api/v2/tokenIcons/assets/eip155/137/slip44/966.png", + "metadata": {}, + "name": "Polygon Ecosystem Token", + "occurrences": 100, + "symbol": "POL" + }, + "srcChainId": 137 + } + ] + }, + "slippagePercentage": 0, + "startTime": 1772063129461, + "status": { + "destChain": { + "amount": "1724840669924144", + "chainId": 56, + "token": { + "address": "0x0000000000000000000000000000000000000000", + "aggregators": [], + "assetId": "eip155:56/slip44:714", + "chainId": 56, + "coingeckoId": "binancecoin", + "decimals": 18, + "iconUrl": "https://static.cx.metamask.io/api/v2/tokenIcons/assets/eip155/56/slip44/714.png", + "metadata": {}, + "name": "Binance Coin", + "occurrences": 100, + "symbol": "BNB" + }, + "txHash": "0x00d9ce902b8b8561456e826a76219e1a63925bff9baa88455529431da9b30ad1" + }, + "srcChain": { + "amount": "1112478", + "chainId": 137, + "token": { + "address": "0x0000000000000000000000000000000000000000", + "aggregators": [], + "assetId": "eip155:137/slip44:966", + "chainId": 137, + "coingeckoId": "matic-network", + "decimals": 18, + "iconUrl": "https://static.cx.metamask.io/api/v2/tokenIcons/assets/eip155/137/slip44/966.png", + "metadata": {}, + "name": "Polygon Ecosystem Token", + "occurrences": 100, + "symbol": "POL" + }, + "txHash": "0x56a4fbc7956e65fe2ab423e82c135ec71fe60b51cf66c1372ccb375c9f63d20f" + }, + "status": "COMPLETE" + }, + "txMetaId": "110d0b00-12a4-11f1-ac17-173d9aac5876" + }, + "12ca1b10-1d6a-11f1-9ec6-3b0a0edc0d9a": { + "account": "0x30e8ccad5a980bdf30447f8c2c48e70989d9d294", + "batchId": "0x3278dd322b6246d09048d55a1fa1fea9", + "estimatedProcessingTimeInSeconds": 0, + "hasApprovalTx": false, + "isStxEnabled": true, + "location": "Main View", + "originalTransactionId": "12ca1b10-1d6a-11f1-9ec6-3b0a0edc0d9a", + "pricingData": { + "amountSent": "0.001", + "amountSentInUsd": "0.648324392824", + "quotedGasAmount": "0.0000097123", + "quotedGasInUsd": "0.0062967210004245352", + "quotedReturnInUsd": "0.64317932128292752718456466277623113745342768" + }, + "quote": { + "aggregator": "uniswap", + "aggregatorType": "AGG", + "bridgeId": "uniswap", + "bridges": ["uniswap"], + "destAsset": { + "address": "0x55d398326f99059ff775485246999027b3197955", + "aggregators": [ + "pancakeExtended", + "oneInch", + "liFi", + "socket", + "rubic", + "squid", + "rango", + "sonarwatch", + "sushiSwap" + ], + "assetId": "eip155:56/erc20:0x55d398326f99059ff775485246999027b3197955", + "chainId": 56, + "coingeckoId": "binance-bridged-usdt-bnb-smart-chain", + "decimals": 18, + "iconUrl": "https://static.cx.metamask.io/api/v2/tokenIcons/assets/eip155/56/erc20/0x55d398326f99059ff775485246999027b3197955.png", + "metadata": { + "storage": { + "approval": 2, + "balance": 1 + } + }, + "name": "Tether USD", + "occurrences": 11, + "symbol": "USDT" + }, + "destChainId": 56, + "destTokenAmount": "643757682034398594", + "destWalletAddress": "0x30E8ccaD5A980BDF30447f8c2C48e70989D9d294", + "feeData": { + "metabridge": { + "amount": "8750000000000", + "asset": { + "address": "0x0000000000000000000000000000000000000000", + "aggregators": [], + "assetId": "eip155:56/slip44:714", + "chainId": 56, + "coingeckoId": "binancecoin", + "decimals": 18, + "iconUrl": "https://static.cx.metamask.io/api/v2/tokenIcons/assets/eip155/56/slip44/714.png", + "metadata": {}, + "name": "Binance Coin", + "occurrences": 100, + "symbol": "BNB" + }, + "baseBpsFee": 87.5, + "quoteBpsFee": 87.5 + } + }, + "gasIncluded": false, + "gasIncluded7702": false, + "gasSponsored": false, + "minDestTokenAmount": "630882528393710622", + "priceData": { + "priceImpact": "-0.001480823655291638", + "totalFeeAmountUsd": "0.0056742", + "totalFromAmountUsd": "0.6484800000000001", + "totalToAmountUsd": "0.6437576820343986" + }, + "protocols": ["uniswap"], + "requestId": "0x0e4ccd15f2b1931d29d04332be4cedc3f3a3b952470264d9a8006a3a7c30cdb7", + "slippage": 2, + "srcAsset": { + "address": "0x0000000000000000000000000000000000000000", + "aggregators": [], + "assetId": "eip155:56/slip44:714", + "chainId": 56, + "coingeckoId": "binancecoin", + "decimals": 18, + "iconUrl": "https://static.cx.metamask.io/api/v2/tokenIcons/assets/eip155/56/slip44/714.png", + "metadata": {}, + "name": "Binance Coin", + "occurrences": 100, + "symbol": "BNB" + }, + "srcChainId": 56, + "srcTokenAmount": "991250000000000", + "steps": [], + "walletAddress": "0x30E8ccaD5A980BDF30447f8c2C48e70989D9d294" + }, + "slippagePercentage": 0, + "startTime": 1773247684414, + "status": { + "srcChain": { + "chainId": 56 + }, + "status": "PENDING" + }, + "txMetaId": "12ca1b10-1d6a-11f1-9ec6-3b0a0edc0d9a" + }, + "13e54300-2876-11f1-8041-cdbe50267c7d": { + "account": "0xf25bd11c334507fd007d584e2d0b7b2c6543f714", + "batchId": "0x3301cb46a9d04962a2f571b148c09e6e", + "estimatedProcessingTimeInSeconds": 0, + "hasApprovalTx": false, + "isStxEnabled": false, + "location": "Main View", + "originalTransactionId": "13e54300-2876-11f1-8041-cdbe50267c7d", + "pricingData": { + "amountSent": "0.002886713511414607", + "amountSentInUsd": "1.861972563884929144983022668", + "quotedGasAmount": "0.0000098011", + "quotedGasInUsd": "0.0063218532853125564", + "quotedReturnInUsd": "1.82971927135451688778651758158487458631242232" + }, + "quote": { + "aggregator": "uniswap", + "aggregatorType": "AGG", + "bridgeId": "uniswap", + "bridges": ["uniswap"], + "destAsset": { + "address": "0x55d398326f99059ff775485246999027b3197955", + "aggregators": [ + "pancakeExtended", + "oneInch", + "liFi", + "trustWallet", + "socket", + "rubic", + "squid", + "rango", + "sonarwatch", + "sushiSwap" + ], + "assetId": "eip155:56/erc20:0x55d398326f99059ff775485246999027b3197955", + "chainId": 56, + "coingeckoId": "binance-bridged-usdt-bnb-smart-chain", + "decimals": 18, + "iconUrl": "https://static.cx.metamask.io/api/v2/tokenIcons/assets/eip155/56/erc20/0x55d398326f99059ff775485246999027b3197955.png", + "metadata": { + "storage": { + "approval": 2, + "balance": 1 + } + }, + "name": "Tether USD", + "occurrences": 11, + "symbol": "USDT" + }, + "destChainId": 56, + "destTokenAmount": "1832104085786407962", + "destWalletAddress": "0xF25bd11C334507Fd007d584E2D0b7b2C6543f714", + "feeData": { + "metabridge": { + "amount": "25258743224877", + "asset": { + "address": "0x0000000000000000000000000000000000000000", + "aggregators": [], + "assetId": "eip155:56/slip44:714", + "chainId": 56, + "coingeckoId": "binancecoin", + "decimals": 18, + "iconUrl": "https://static.cx.metamask.io/api/v2/tokenIcons/assets/eip155/56/slip44/714.png", + "metadata": {}, + "name": "Binance Coin", + "occurrences": 100, + "symbol": "BNB" + }, + "baseBpsFee": 87.5, + "quoteBpsFee": 87.5 + }, + "txFee": { + "amount": "22027140000000", + "asset": { + "address": "0x0000000000000000000000000000000000000000", + "aggregators": [], + "assetId": "eip155:56/slip44:714", + "chainId": 56, + "coingeckoId": "binancecoin", + "decimals": 18, + "iconUrl": "https://static.cx.metamask.io/api/v2/tokenIcons/assets/eip155/56/slip44/714.png", + "metadata": {}, + "name": "Binance Coin", + "occurrences": 100, + "symbol": "BNB" + }, + "maxFeePerGas": "60000000", + "maxPriorityFeePerGas": "60000000" + } + }, + "gasIncluded": true, + "gasIncluded7702": false, + "gasSponsored": false, + "minDestTokenAmount": "1795462004070679802", + "priceData": { + "priceImpact": "0.00933599882304792", + "totalFeeAmountUsd": "0.016301487702471116", + "totalFromAmountUsd": "1.863027165996759", + "totalToAmountUsd": "1.8315507903525003" + }, + "protocols": ["uniswap"], + "requestId": "0xe8c2bcde57fc8434171dc26bacf4e282afe082435e7818ff149e6373f6aff6af", + "slippage": 2, + "srcAsset": { + "address": "0x0000000000000000000000000000000000000000", + "aggregators": [], + "assetId": "eip155:56/slip44:714", + "chainId": 56, + "coingeckoId": "binancecoin", + "decimals": 18, + "iconUrl": "https://static.cx.metamask.io/api/v2/tokenIcons/assets/eip155/56/slip44/714.png", + "metadata": {}, + "name": "Binance Coin", + "occurrences": 100, + "symbol": "BNB" + }, + "srcChainId": 56, + "srcTokenAmount": "2839427628189730", + "steps": [], + "walletAddress": "0xF25bd11C334507Fd007d584E2D0b7b2C6543f714" + }, + "slippagePercentage": 0, + "startTime": 1774462286273, + "status": { + "srcChain": { + "chainId": 56 + }, + "status": "PENDING" + }, + "txMetaId": "13e54300-2876-11f1-8041-cdbe50267c7d" + }, + "14962b30-2870-11f1-b293-91d48c70505b": { + "account": "0xf25bd11c334507fd007d584e2d0b7b2c6543f714", + "batchId": "0x80592d2a3faf4e6a8a5b39d64baaa8cd", + "estimatedProcessingTimeInSeconds": 0, + "hasApprovalTx": false, + "isStxEnabled": false, + "location": "Main View", + "originalTransactionId": "14962b30-2870-11f1-b293-91d48c70505b", + "pricingData": { + "amountSent": "0.002993514252279377", + "amountSentInUsd": "1.934556896989950131526374364", + "quotedGasAmount": "0.0000098025", + "quotedGasInUsd": "0.00633486009572343", + "quotedReturnInUsd": "1.90535756008891037947137150834293594778932016" + }, + "quote": { + "aggregator": "uniswap", + "aggregatorType": "AGG", + "bridgeId": "uniswap", + "bridges": ["uniswap"], + "destAsset": { + "address": "0x55d398326f99059ff775485246999027b3197955", + "aggregators": [ + "pancakeExtended", + "oneInch", + "liFi", + "trustWallet", + "socket", + "squid", + "rango", + "sonarwatch", + "sushiSwap" + ], + "assetId": "eip155:56/erc20:0x55d398326f99059ff775485246999027b3197955", + "chainId": 56, + "coingeckoId": "binance-bridged-usdt-bnb-smart-chain", + "decimals": 18, + "iconUrl": "https://static.cx.metamask.io/api/v2/tokenIcons/assets/eip155/56/erc20/0x55d398326f99059ff775485246999027b3197955.png", + "metadata": { + "storage": { + "approval": 2, + "balance": 1 + } + }, + "name": "Tether USD", + "occurrences": 9, + "symbol": "USDT" + }, + "destChainId": 56, + "destTokenAmount": "1906762637169830969", + "destWalletAddress": "0xF25bd11C334507Fd007d584E2D0b7b2C6543f714", + "feeData": { + "metabridge": { + "amount": "26193249707444", + "asset": { + "address": "0x0000000000000000000000000000000000000000", + "aggregators": [], + "assetId": "eip155:56/slip44:714", + "chainId": 56, + "coingeckoId": "binancecoin", + "decimals": 18, + "iconUrl": "https://static.cx.metamask.io/api/v2/tokenIcons/assets/eip155/56/slip44/714.png", + "metadata": {}, + "name": "Binance Coin", + "occurrences": 100, + "symbol": "BNB" + }, + "baseBpsFee": 87.5, + "quoteBpsFee": 87.5 + }, + "txFee": { + "amount": "22029660000000", + "asset": { + "address": "0x0000000000000000000000000000000000000000", + "aggregators": [], + "assetId": "eip155:56/slip44:714", + "chainId": 56, + "coingeckoId": "binancecoin", + "decimals": 18, + "iconUrl": "https://static.cx.metamask.io/api/v2/tokenIcons/assets/eip155/56/slip44/714.png", + "metadata": {}, + "name": "Binance Coin", + "occurrences": 100, + "symbol": "BNB" + }, + "maxFeePerGas": "60000000", + "maxPriorityFeePerGas": "60000000" + } + }, + "gasIncluded": true, + "gasIncluded7702": false, + "gasSponsored": false, + "minDestTokenAmount": "1868627384426434349", + "priceData": { + "priceImpact": "0.007584532658291934", + "totalFeeAmountUsd": "0.016932626273377174", + "totalFromAmountUsd": "1.9351572883860035", + "totalToAmountUsd": "1.906346962914928" + }, + "protocols": ["uniswap"], + "requestId": "0xe28f0656b343b61006bf3ac53e858656642fcd9aa047c99416fe40ac12406f02", + "slippage": 2, + "srcAsset": { + "address": "0x0000000000000000000000000000000000000000", + "aggregators": [], + "assetId": "eip155:56/slip44:714", + "chainId": 56, + "coingeckoId": "binancecoin", + "decimals": 18, + "iconUrl": "https://static.cx.metamask.io/api/v2/tokenIcons/assets/eip155/56/slip44/714.png", + "metadata": {}, + "name": "Binance Coin", + "occurrences": 100, + "symbol": "BNB" + }, + "srcChainId": 56, + "srcTokenAmount": "2945291342571933", + "steps": [], + "walletAddress": "0xF25bd11C334507Fd007d584E2D0b7b2C6543f714" + }, + "slippagePercentage": 0, + "startTime": 1774459727017, + "status": { + "srcChain": { + "chainId": 56, + "txHash": "0xf6d27b065d8bcce56694369865018eff37e3a316e97160045576f2289d47fd98" + }, + "status": "FAILED" + }, + "txMetaId": "14962b30-2870-11f1-b293-91d48c70505b" + }, + "14ce7f50-2288-11f1-8fe3-5f35f53fd12f": { + "account": "0x30e8ccad5a980bdf30447f8c2c48e70989d9d294", + "batchId": "0xfae27daf048c4cfe8e8fade899d8cb6a", + "estimatedProcessingTimeInSeconds": 0, + "hasApprovalTx": false, + "isStxEnabled": true, + "location": "Main View", + "originalTransactionId": "14ce7f50-2288-11f1-8fe3-5f35f53fd12f", + "pricingData": { + "amountSent": "0.001475272498495145", + "amountSentInUsd": "3.43413843040426188547115809", + "quotedGasAmount": "0.000386190024590864", + "quotedGasInUsd": "0.898972905845582337514614688", + "quotedReturnInUsd": "0.20417038325999047119363532673796" + }, + "quote": { + "aggregator": "pancakeswap", + "aggregatorType": "AGG", + "bridgeId": "pancakeswap", + "bridges": ["pancakeswap"], + "destAsset": { + "address": "0xaca92e438df0b2401ff60da7e4337b687a2435da", + "aggregators": ["metamask", "liFi", "socket", "rubic", "rango"], + "assetId": "eip155:1/erc20:0xaca92e438df0b2401ff60da7e4337b687a2435da", + "chainId": 1, + "decimals": 6, + "iconUrl": "https://static.cx.metamask.io/api/v2/tokenIcons/assets/eip155/1/erc20/0xaca92e438df0b2401ff60da7e4337b687a2435da.png", + "metadata": {}, + "name": "MetaMask USD", + "occurrences": 5, + "symbol": "MUSD" + }, + "destChainId": 1, + "destTokenAmount": "204210", + "destWalletAddress": "0x30E8ccaD5A980BDF30447f8c2C48e70989D9d294", + "feeData": { + "metabridge": { + "amount": "0", + "asset": { + "address": "0x0000000000000000000000000000000000000000", + "aggregators": [], + "assetId": "eip155:1/slip44:60", + "chainId": 1, + "coingeckoId": "ethereum", + "decimals": 18, + "iconUrl": "https://static.cx.metamask.io/api/v2/tokenIcons/assets/eip155/1/slip44/60.png", + "metadata": {}, + "name": "Ether", + "occurrences": 100, + "symbol": "ETH" + }, + "baseBpsFee": 87.5, + "quoteBpsFee": 0 + }, + "txFee": { + "amount": "568283752220894", + "asset": { + "address": "0x0000000000000000000000000000000000000000", + "aggregators": [], + "assetId": "eip155:1/slip44:60", + "chainId": 1, + "coingeckoId": "ethereum", + "decimals": 18, + "iconUrl": "https://static.cx.metamask.io/api/v2/tokenIcons/assets/eip155/1/slip44/60.png", + "metadata": {}, + "name": "Ether", + "occurrences": 100, + "symbol": "ETH" + }, + "maxFeePerGas": "2141250266", + "maxPriorityFeePerGas": "2100000001" + } + }, + "gasIncluded": true, + "gasIncluded7702": false, + "gasSponsored": false, + "minDestTokenAmount": "200125", + "priceData": { + "priceImpact": "0.9035518118891557", + "totalFeeAmountUsd": "0", + "totalFromAmountUsd": "3.437857110963734", + "totalToAmountUsd": "0.20385039027013002" + }, + "protocols": ["pancakeswap"], + "requestId": "0xf185079496fa39b0a77a50b296bf1dbc3b53d25eaec41a5981580631171a4ba0", + "slippage": 2, + "srcAsset": { + "address": "0x0000000000000000000000000000000000000000", + "aggregators": [], + "assetId": "eip155:1/slip44:60", + "chainId": 1, + "coingeckoId": "ethereum", + "decimals": 18, + "iconUrl": "https://static.cx.metamask.io/api/v2/tokenIcons/assets/eip155/1/slip44/60.png", + "metadata": {}, + "name": "Ether", + "occurrences": 100, + "symbol": "ETH" + }, + "srcChainId": 1, + "srcTokenAmount": "906988746274251", + "steps": [], + "walletAddress": "0x30E8ccaD5A980BDF30447f8c2C48e70989D9d294" + }, + "slippagePercentage": 0, + "startTime": 1773810328512, + "status": { + "srcChain": { + "chainId": 1 + }, + "status": "PENDING" + }, + "txMetaId": "14ce7f50-2288-11f1-8fe3-5f35f53fd12f" + }, + "16608280-182b-11f1-b7d6-03d70bc40886": { + "account": "0x30e8ccad5a980bdf30447f8c2c48e70989d9d294", + "approvalTxId": "165ba080-182b-11f1-b7d6-03d70bc40886", + "batchId": "0x549a4071524148eda943e04cc2029194", + "estimatedProcessingTimeInSeconds": 0, + "hasApprovalTx": true, + "isStxEnabled": true, + "pricingData": { + "amountSent": "1", + "amountSentInUsd": "0.99534762344306532453024", + "quotedGasAmount": "0.070147564141661708", + "quotedGasInUsd": "0.007285973833802465361223872", + "quotedReturnInUsd": "0.99100623948687191431977096" + }, + "quote": { + "aggregator": "uniswap", + "aggregatorType": "AGG", + "bridgeId": "uniswap", + "bridges": ["uniswap"], + "destAsset": { + "address": "0x0000000000000000000000000000000000000000", + "aggregators": [], + "assetId": "eip155:137/slip44:966", + "chainId": 137, + "coingeckoId": "matic-network", + "decimals": 18, + "iconUrl": "https://static.cx.metamask.io/api/v2/tokenIcons/assets/eip155/137/slip44/966.png", + "metadata": {}, + "name": "Polygon Ecosystem Token", + "occurrences": 100, + "symbol": "POL" + }, + "destChainId": 137, + "destTokenAmount": "9541164343286196565", + "destWalletAddress": "0x30E8ccaD5A980BDF30447f8c2C48e70989D9d294", + "feeData": { + "metabridge": { + "amount": "84222131655741962", + "asset": { + "address": "0x0000000000000000000000000000000000000000", + "aggregators": [], + "assetId": "eip155:137/slip44:966", + "chainId": 137, + "coingeckoId": "matic-network", + "decimals": 18, + "iconUrl": "https://static.cx.metamask.io/api/v2/tokenIcons/assets/eip155/137/slip44/966.png", + "metadata": {}, + "name": "Polygon Ecosystem Token", + "occurrences": 100, + "symbol": "POL" + }, + "baseBpsFee": 87.5, + "quoteBpsFee": 87.5 + } + }, + "gasIncluded7702": false, + "gasSponsored": false, + "minDestTokenAmount": "9350341056420472633", + "priceData": { + "priceImpact": "-0.0036725275730579536", + "totalFeeAmountUsd": "0.008751016367558213", + "totalFromAmountUsd": "0.9964566418", + "totalToAmountUsd": "0.9913651399248089" + }, + "protocols": ["uniswap"], + "requestId": "0xc7866031b328f47445a38bf78b00506bfd0120178192593b597ca2d2a0122adb", + "slippage": 2, + "srcAsset": { + "address": "0xc2132d05d31c914a87c6611c10748aeb04b58e8f", + "aggregators": [ + "quickswap", + "oneInch", + "liFi", + "socket", + "squid", + "rango", + "sonarwatch", + "sushiSwap" + ], + "assetId": "eip155:137/erc20:0xc2132d05d31c914a87c6611c10748aeb04b58e8f", + "chainId": 137, + "coingeckoId": "polygon-bridged-usdt-polygon", + "decimals": 6, + "iconUrl": "https://static.cx.metamask.io/api/v2/tokenIcons/assets/eip155/137/erc20/0xc2132d05d31c914a87c6611c10748aeb04b58e8f.png", + "metadata": { + "storage": { + "approval": 1, + "balance": 0 + } + }, + "name": "Tether USD", + "occurrences": 8, + "symbol": "USDT" + }, + "srcChainId": 137, + "srcTokenAmount": "1000000", + "steps": [], + "walletAddress": "0x30E8ccaD5A980BDF30447f8c2C48e70989D9d294" + }, + "slippagePercentage": 0, + "startTime": 1772670876234, + "status": { + "srcChain": { + "chainId": 137 + }, + "status": "PENDING" + }, + "txMetaId": "16608280-182b-11f1-b7d6-03d70bc40886" + }, + "1774391914102.0298": { + "account": "0x30e8ccad5a980bdf30447f8c2c48e70989d9d294", + "actionId": "1774391914102.0298", + "estimatedProcessingTimeInSeconds": 0, + "hasApprovalTx": false, + "isStxEnabled": false, + "location": "Main View", + "pricingData": { + "amountSent": "0.00001483778992627", + "amountSentInUsd": "0.00943211713729465924900544", + "quotedGasAmount": "0.0000185041", + "quotedGasInUsd": "0.0117627247445529152", + "quotedReturnInUsd": "0.0093517564337073897932347202923282154748384" + }, + "quote": { + "aggregator": "kyberswap", + "aggregatorType": "AGG", + "bridgeId": "kyberswap", + "bridges": ["kyberswap"], + "destAsset": { + "address": "0x55d398326f99059ff775485246999027b3197955", + "aggregators": [ + "pancakeExtended", + "oneInch", + "liFi", + "trustWallet", + "socket", + "squid", + "rango", + "sonarwatch", + "sushiSwap" + ], + "assetId": "eip155:56/erc20:0x55d398326f99059ff775485246999027b3197955", + "chainId": 56, + "coingeckoId": "binance-bridged-usdt-bnb-smart-chain", + "decimals": 18, + "iconUrl": "https://static.cx.metamask.io/api/v2/tokenIcons/assets/eip155/56/erc20/0x55d398326f99059ff775485246999027b3197955.png", + "metadata": { + "storage": { + "approval": 2, + "balance": 1 + } + }, + "name": "Tether USD", + "occurrences": 9, + "symbol": "USDT" + }, + "destChainId": 56, + "destTokenAmount": "9356172547150989", + "destWalletAddress": "0x30E8ccaD5A980BDF30447f8c2C48e70989D9d294", + "feeData": { + "metabridge": { + "amount": "129830661854", + "asset": { + "address": "0x0000000000000000000000000000000000000000", + "aggregators": [], + "assetId": "eip155:56/slip44:714", + "chainId": 56, + "coingeckoId": "binancecoin", + "decimals": 18, + "iconUrl": "https://static.cx.metamask.io/api/v2/tokenIcons/assets/eip155/56/slip44/714.png", + "metadata": {}, + "name": "Binance Coin", + "occurrences": 100, + "symbol": "BNB" + }, + "baseBpsFee": 87.5, + "quoteBpsFee": 87.5 + }, + "txFee": { + "amount": "0", + "asset": { + "address": "0x0000000000000000000000000000000000000000", + "aggregators": [], + "assetId": "eip155:56/slip44:714", + "chainId": 56, + "coingeckoId": "binancecoin", + "decimals": 18, + "iconUrl": "https://static.cx.metamask.io/api/v2/tokenIcons/assets/eip155/56/slip44/714.png", + "metadata": {}, + "name": "Binance Coin", + "occurrences": 100, + "symbol": "BNB" + }, + "maxFeePerGas": "59999999", + "maxPriorityFeePerGas": "59999999" + } + }, + "gasIncluded": true, + "gasIncluded7702": false, + "gasSponsored": false, + "minDestTokenAmount": "9169049096207969", + "priceData": { + "priceImpact": "0.009264760530268371", + "totalFeeAmountUsd": "0.00008259307384504064", + "totalFromAmountUsd": "0.009439208439495923", + "totalToAmountUsd": "0.009351756433708705" + }, + "protocols": ["kyberswap"], + "requestId": "0xfc7a1e9854c7cb1d55ec8245a744a46f588cdfc0ce06b3d034dc7ec6f515ba8a", + "slippage": 2, + "srcAsset": { + "address": "0x0000000000000000000000000000000000000000", + "aggregators": [], + "assetId": "eip155:56/slip44:714", + "chainId": 56, + "coingeckoId": "binancecoin", + "decimals": 18, + "iconUrl": "https://static.cx.metamask.io/api/v2/tokenIcons/assets/eip155/56/slip44/714.png", + "metadata": {}, + "name": "Binance Coin", + "occurrences": 100, + "symbol": "BNB" + }, + "srcChainId": 56, + "srcTokenAmount": "14707959264416", + "steps": [], + "walletAddress": "0x30E8ccaD5A980BDF30447f8c2C48e70989D9d294" + }, + "slippagePercentage": 0, + "startTime": 1774391913921, + "status": { + "srcChain": { + "chainId": 56, + "txHash": "" + }, + "status": "FAILED" + } + }, + "1778785382907.707": { + "account": "0x141d32a89a1e0a5ef360034a2f60a4b917c18838", + "actionId": "1778785382907.707", + "approvalTxId": "8821aab0-4fc7-11f1-8307-b914f900c1b6", + "estimatedProcessingTimeInSeconds": 0, + "hasApprovalTx": true, + "isStxEnabled": false, + "location": "Main View", + "pricingData": { + "amountSent": "0.41535", + "amountSentInUsd": "0.41533917028517996250759045", + "quotedGasAmount": "0.125439923253426042", + "quotedGasInUsd": "0.011914146052134749953939842", + "quotedReturnInUsd": "0.4110480203554907665288" + }, + "quote": { + "aggregator": "1inch", + "aggregatorType": "AGG", + "bridgeId": "1inch", + "bridges": ["1inch"], + "destAsset": { + "address": "0x2791bca1f2de4661ed88a30c99a7a9449aa84174", + "aggregators": [ + "metamask", + "oneInch", + "liFi", + "trustWallet", + "socket", + "rubic", + "squid", + "rango", + "sonarwatch", + "sushiSwap" + ], + "assetId": "eip155:137/erc20:0x2791bca1f2de4661ed88a30c99a7a9449aa84174", + "chainId": 137, + "coingeckoId": "bridged-usdc-polygon-pos-bridge", + "decimals": 6, + "iconUrl": "https://static.cx.metamask.io/api/v2/tokenIcons/assets/eip155/137/erc20/0x2791bca1f2de4661ed88a30c99a7a9449aa84174.png", + "metadata": { + "storage": { + "approval": 1, + "balance": 0 + } + }, + "name": "USD Coin (PoS)", + "occurrences": 10, + "symbol": "USDC.E" + }, + "destChainId": 137, + "destTokenAmount": "411034", + "destWalletAddress": "0x141d32a89a1e0a5ef360034a2f60a4b917c18838", + "feeData": { + "metabridge": { + "amount": "3628", + "asset": { + "address": "0x2791bca1f2de4661ed88a30c99a7a9449aa84174", + "aggregators": [ + "metamask", + "oneInch", + "liFi", + "trustWallet", + "socket", + "rubic", + "squid", + "rango", + "sonarwatch", + "sushiSwap" + ], + "assetId": "eip155:137/erc20:0x2791bca1f2de4661ed88a30c99a7a9449aa84174", + "chainId": 137, + "coingeckoId": "bridged-usdc-polygon-pos-bridge", + "decimals": 6, + "iconUrl": "https://static.cx.metamask.io/api/v2/tokenIcons/assets/eip155/137/erc20/0x2791bca1f2de4661ed88a30c99a7a9449aa84174.png", + "metadata": { + "storage": { + "approval": 1, + "balance": 0 + } + }, + "name": "USD Coin (PoS)", + "occurrences": 10, + "symbol": "USDC.E" + }, + "baseBpsFee": 87.5, + "quoteBpsFee": 87.5, + "usd": "0.003627897130266999" + } + }, + "gasIncluded": false, + "gasIncluded7702": false, + "gasSponsored": false, + "minDestTokenAmount": "408978", + "priceData": { + "priceImpact": "0.0017099949226371711", + "totalFeeAmountUsd": "0.003627897130266999", + "totalFromAmountUsd": "0.41536050686904885", + "totalToAmountUsd": "0.4110223453809718" + }, + "protocols": ["1inch"], + "requestId": "0x02c9a259172a216b0ba86ddfdbdc293a89caceaadde0e4cc9438e22836e06439", + "slippage": 0.5, + "srcAsset": { + "address": "0xc2132d05d31c914a87c6611c10748aeb04b58e8f", + "aggregators": [ + "sonarwatch", + "oneInch", + "liFi", + "trustWallet", + "socket", + "rubic", + "squid", + "rango", + "sushiSwap" + ], + "assetId": "eip155:137/erc20:0xc2132d05d31c914a87c6611c10748aeb04b58e8f", + "chainId": 137, + "coingeckoId": "polygon-bridged-usdt-polygon", + "decimals": 6, + "iconUrl": "https://static.cx.metamask.io/api/v2/tokenIcons/assets/eip155/137/erc20/0xc2132d05d31c914a87c6611c10748aeb04b58e8f.png", + "metadata": { + "storage": { + "approval": 1, + "balance": 0 + } + }, + "name": "(PoS) Tether USD", + "occurrences": 9, + "symbol": "USDT" + }, + "srcChainId": 137, + "srcTokenAmount": "415350", + "steps": [], + "walletAddress": "0x141d32a89a1e0a5ef360034a2f60a4b917c18838" + }, + "slippagePercentage": 0, + "startTime": 1778785382453, + "status": { + "srcChain": { + "chainId": 137 + }, + "status": "FAILED" + }, + "tokenSecurityTypeDestination": "Verified" + }, + "1778785542034.9695": { + "account": "0x141d32a89a1e0a5ef360034a2f60a4b917c18838", + "actionId": "1778785542034.9695", + "estimatedProcessingTimeInSeconds": 0, + "hasApprovalTx": false, + "isStxEnabled": false, + "location": "Main View", + "pricingData": { + "amountSent": "0.41535", + "amountSentInUsd": "0.41533917028517996250759045", + "quotedGasAmount": "0.091050033130089501", + "quotedGasInUsd": "0.008647832082709490836618401", + "quotedReturnInUsd": "0.410842333326406036939" + }, + "quote": { + "aggregator": "1inch", + "aggregatorType": "AGG", + "bridgeId": "1inch", + "bridges": ["1inch"], + "destAsset": { + "address": "0x2791bca1f2de4661ed88a30c99a7a9449aa84174", + "aggregators": [ + "metamask", + "oneInch", + "liFi", + "trustWallet", + "socket", + "rubic", + "squid", + "rango", + "sonarwatch", + "sushiSwap" + ], + "assetId": "eip155:137/erc20:0x2791bca1f2de4661ed88a30c99a7a9449aa84174", + "chainId": 137, + "coingeckoId": "bridged-usdc-polygon-pos-bridge", + "decimals": 6, + "iconUrl": "https://static.cx.metamask.io/api/v2/tokenIcons/assets/eip155/137/erc20/0x2791bca1f2de4661ed88a30c99a7a9449aa84174.png", + "metadata": { + "storage": { + "approval": 1, + "balance": 0 + } + }, + "name": "USD Coin (PoS)", + "occurrences": 10, + "symbol": "USDC.E" + }, + "destChainId": 137, + "destTokenAmount": "411034", + "destWalletAddress": "0x141d32a89a1e0a5ef360034a2f60a4b917c18838", + "feeData": { + "metabridge": { + "amount": "3628", + "asset": { + "address": "0x2791bca1f2de4661ed88a30c99a7a9449aa84174", + "aggregators": [ + "metamask", + "oneInch", + "liFi", + "trustWallet", + "socket", + "rubic", + "squid", + "rango", + "sonarwatch", + "sushiSwap" + ], + "assetId": "eip155:137/erc20:0x2791bca1f2de4661ed88a30c99a7a9449aa84174", + "chainId": 137, + "coingeckoId": "bridged-usdc-polygon-pos-bridge", + "decimals": 6, + "iconUrl": "https://static.cx.metamask.io/api/v2/tokenIcons/assets/eip155/137/erc20/0x2791bca1f2de4661ed88a30c99a7a9449aa84174.png", + "metadata": { + "storage": { + "approval": 1, + "balance": 0 + } + }, + "name": "USD Coin (PoS)", + "occurrences": 10, + "symbol": "USDC.E" + }, + "baseBpsFee": 87.5, + "quoteBpsFee": 87.5, + "usd": "0.0036263082501890383" + } + }, + "gasIncluded": false, + "gasIncluded7702": false, + "gasSponsored": false, + "minDestTokenAmount": "408978", + "priceData": { + "priceImpact": "0.0020956435200364565", + "totalFeeAmountUsd": "0.0036263082501890383", + "totalFromAmountUsd": "0.41533904415309264", + "totalToAmountUsd": "0.4108423333264061" + }, + "protocols": ["1inch"], + "requestId": "0x4624845ba69a435f000ea77348ff8bab30b982fa3a3b596da474f1e7b1206766", + "slippage": 0.5, + "srcAsset": { + "address": "0xc2132d05d31c914a87c6611c10748aeb04b58e8f", + "aggregators": [ + "sonarwatch", + "oneInch", + "liFi", + "trustWallet", + "socket", + "rubic", + "squid", + "rango", + "sushiSwap" + ], + "assetId": "eip155:137/erc20:0xc2132d05d31c914a87c6611c10748aeb04b58e8f", + "chainId": 137, + "coingeckoId": "polygon-bridged-usdt-polygon", + "decimals": 6, + "iconUrl": "https://static.cx.metamask.io/api/v2/tokenIcons/assets/eip155/137/erc20/0xc2132d05d31c914a87c6611c10748aeb04b58e8f.png", + "metadata": { + "storage": { + "approval": 1, + "balance": 0 + } + }, + "name": "(PoS) Tether USD", + "occurrences": 9, + "symbol": "USDT" + }, + "srcChainId": 137, + "srcTokenAmount": "415350", + "steps": [], + "walletAddress": "0x141d32a89a1e0a5ef360034a2f60a4b917c18838" + }, + "slippagePercentage": 0, + "startTime": 1778785541906, + "status": { + "srcChain": { + "chainId": 137 + }, + "status": "FAILED" + }, + "tokenSecurityTypeDestination": "Verified" + }, + "1778785601332.0654": { + "account": "0x141d32a89a1e0a5ef360034a2f60a4b917c18838", + "actionId": "1778785601332.0654", + "estimatedProcessingTimeInSeconds": 0, + "hasApprovalTx": false, + "isStxEnabled": false, + "location": "Main View", + "pricingData": { + "amountSent": "0.41535", + "amountSentInUsd": "0.4156195077907641978090336", + "quotedGasAmount": "0.102880619204181354", + "quotedGasInUsd": "0.009778083514067962061672832", + "quotedReturnInUsd": "0.410842333326406036939" + }, + "quote": { + "aggregator": "1inch", + "aggregatorType": "AGG", + "bridgeId": "1inch", + "bridges": ["1inch"], + "destAsset": { + "address": "0x2791bca1f2de4661ed88a30c99a7a9449aa84174", + "aggregators": [ + "metamask", + "oneInch", + "liFi", + "trustWallet", + "socket", + "rubic", + "squid", + "rango", + "sonarwatch", + "sushiSwap" + ], + "assetId": "eip155:137/erc20:0x2791bca1f2de4661ed88a30c99a7a9449aa84174", + "chainId": 137, + "coingeckoId": "bridged-usdc-polygon-pos-bridge", + "decimals": 6, + "iconUrl": "https://static.cx.metamask.io/api/v2/tokenIcons/assets/eip155/137/erc20/0x2791bca1f2de4661ed88a30c99a7a9449aa84174.png", + "metadata": { + "storage": { + "approval": 1, + "balance": 0 + } + }, + "name": "USD Coin (PoS)", + "occurrences": 10, + "symbol": "USDC.E" + }, + "destChainId": 137, + "destTokenAmount": "411034", + "destWalletAddress": "0x141d32a89a1e0a5ef360034a2f60a4b917c18838", + "feeData": { + "metabridge": { + "amount": "3628", + "asset": { + "address": "0x2791bca1f2de4661ed88a30c99a7a9449aa84174", + "aggregators": [ + "metamask", + "oneInch", + "liFi", + "trustWallet", + "socket", + "rubic", + "squid", + "rango", + "sonarwatch", + "sushiSwap" + ], + "assetId": "eip155:137/erc20:0x2791bca1f2de4661ed88a30c99a7a9449aa84174", + "chainId": 137, + "coingeckoId": "bridged-usdc-polygon-pos-bridge", + "decimals": 6, + "iconUrl": "https://static.cx.metamask.io/api/v2/tokenIcons/assets/eip155/137/erc20/0x2791bca1f2de4661ed88a30c99a7a9449aa84174.png", + "metadata": { + "storage": { + "approval": 1, + "balance": 0 + } + }, + "name": "USD Coin (PoS)", + "occurrences": 10, + "symbol": "USDC.E" + }, + "baseBpsFee": 87.5, + "quoteBpsFee": 87.5, + "usd": "0.0036263082501890383" + } + }, + "gasIncluded": false, + "gasIncluded7702": false, + "gasSponsored": false, + "minDestTokenAmount": "408978", + "priceData": { + "priceImpact": "0.0020956435200364565", + "totalFeeAmountUsd": "0.0036263082501890383", + "totalFromAmountUsd": "0.41533904415309264", + "totalToAmountUsd": "0.4108423333264061" + }, + "protocols": ["1inch"], + "requestId": "0xb7c3ca3292eb47fc47b9117e14664e151f6057ee133006f407b8db583df328f0", + "slippage": 0.5, + "srcAsset": { + "address": "0xc2132d05d31c914a87c6611c10748aeb04b58e8f", + "aggregators": [ + "sonarwatch", + "oneInch", + "liFi", + "trustWallet", + "socket", + "rubic", + "squid", + "rango", + "sushiSwap" + ], + "assetId": "eip155:137/erc20:0xc2132d05d31c914a87c6611c10748aeb04b58e8f", + "chainId": 137, + "coingeckoId": "polygon-bridged-usdt-polygon", + "decimals": 6, + "iconUrl": "https://static.cx.metamask.io/api/v2/tokenIcons/assets/eip155/137/erc20/0xc2132d05d31c914a87c6611c10748aeb04b58e8f.png", + "metadata": { + "storage": { + "approval": 1, + "balance": 0 + } + }, + "name": "(PoS) Tether USD", + "occurrences": 9, + "symbol": "USDT" + }, + "srcChainId": 137, + "srcTokenAmount": "415350", + "steps": [], + "walletAddress": "0x141d32a89a1e0a5ef360034a2f60a4b917c18838" + }, + "slippagePercentage": 0, + "startTime": 1778785601200, + "status": { + "srcChain": { + "chainId": 137 + }, + "status": "FAILED" + }, + "tokenSecurityTypeDestination": "Verified" + }, + "1778785716284.8086": { + "account": "0x141d32a89a1e0a5ef360034a2f60a4b917c18838", + "actionId": "1778785716284.8086", + "estimatedProcessingTimeInSeconds": 0, + "hasApprovalTx": false, + "isStxEnabled": false, + "location": "Main View", + "pricingData": { + "amountSent": "0.41535", + "amountSentInUsd": "0.41534909513382383756633664", + "quotedGasAmount": "0.105788986156199909", + "quotedGasInUsd": "0.010054503457555597200686272", + "quotedReturnInUsd": "0.410842333326406036939" + }, + "quote": { + "aggregator": "1inch", + "aggregatorType": "AGG", + "bridgeId": "1inch", + "bridges": ["1inch"], + "destAsset": { + "address": "0x2791bca1f2de4661ed88a30c99a7a9449aa84174", + "aggregators": [ + "metamask", + "oneInch", + "liFi", + "trustWallet", + "socket", + "rubic", + "squid", + "rango", + "sonarwatch", + "sushiSwap" + ], + "assetId": "eip155:137/erc20:0x2791bca1f2de4661ed88a30c99a7a9449aa84174", + "chainId": 137, + "coingeckoId": "bridged-usdc-polygon-pos-bridge", + "decimals": 6, + "iconUrl": "https://static.cx.metamask.io/api/v2/tokenIcons/assets/eip155/137/erc20/0x2791bca1f2de4661ed88a30c99a7a9449aa84174.png", + "metadata": { + "storage": { + "approval": 1, + "balance": 0 + } + }, + "name": "USD Coin (PoS)", + "occurrences": 10, + "symbol": "USDC.E" + }, + "destChainId": 137, + "destTokenAmount": "411034", + "destWalletAddress": "0x141d32a89a1e0a5ef360034a2f60a4b917c18838", + "feeData": { + "metabridge": { + "amount": "3628", + "asset": { + "address": "0x2791bca1f2de4661ed88a30c99a7a9449aa84174", + "aggregators": [ + "metamask", + "oneInch", + "liFi", + "trustWallet", + "socket", + "rubic", + "squid", + "rango", + "sonarwatch", + "sushiSwap" + ], + "assetId": "eip155:137/erc20:0x2791bca1f2de4661ed88a30c99a7a9449aa84174", + "chainId": 137, + "coingeckoId": "bridged-usdc-polygon-pos-bridge", + "decimals": 6, + "iconUrl": "https://static.cx.metamask.io/api/v2/tokenIcons/assets/eip155/137/erc20/0x2791bca1f2de4661ed88a30c99a7a9449aa84174.png", + "metadata": { + "storage": { + "approval": 1, + "balance": 0 + } + }, + "name": "USD Coin (PoS)", + "occurrences": 10, + "symbol": "USDC.E" + }, + "baseBpsFee": 87.5, + "quoteBpsFee": 87.5, + "usd": "0.0036263082501890383" + } + }, + "gasIncluded": false, + "gasIncluded7702": false, + "gasSponsored": false, + "minDestTokenAmount": "408978", + "priceData": { + "priceImpact": "0.0020956435200364565", + "totalFeeAmountUsd": "0.0036263082501890383", + "totalFromAmountUsd": "0.41533904415309264", + "totalToAmountUsd": "0.4108423333264061" + }, + "protocols": ["1inch"], + "requestId": "0xdaae1cda8078ef2c3bc321f49b321b448b5bd466ea7d434a18f693bd7982c2ac", + "slippage": 0.5, + "srcAsset": { + "address": "0xc2132d05d31c914a87c6611c10748aeb04b58e8f", + "aggregators": [ + "sonarwatch", + "oneInch", + "liFi", + "trustWallet", + "socket", + "rubic", + "squid", + "rango", + "sushiSwap" + ], + "assetId": "eip155:137/erc20:0xc2132d05d31c914a87c6611c10748aeb04b58e8f", + "chainId": 137, + "coingeckoId": "polygon-bridged-usdt-polygon", + "decimals": 6, + "iconUrl": "https://static.cx.metamask.io/api/v2/tokenIcons/assets/eip155/137/erc20/0xc2132d05d31c914a87c6611c10748aeb04b58e8f.png", + "metadata": { + "storage": { + "approval": 1, + "balance": 0 + } + }, + "name": "(PoS) Tether USD", + "occurrences": 9, + "symbol": "USDT" + }, + "srcChainId": 137, + "srcTokenAmount": "415350", + "steps": [], + "walletAddress": "0x141d32a89a1e0a5ef360034a2f60a4b917c18838" + }, + "slippagePercentage": 0, + "startTime": 1778785716167, + "status": { + "srcChain": { + "chainId": 137 + }, + "status": "FAILED" + }, + "tokenSecurityTypeDestination": "Verified" + }, + "1778786350483.7222": { + "account": "0x141d32a89a1e0a5ef360034a2f60a4b917c18838", + "actionId": "1778786350483.7222", + "estimatedProcessingTimeInSeconds": 0, + "hasApprovalTx": false, + "isStxEnabled": false, + "location": "Main View", + "pricingData": { + "amountSent": "0.41535", + "amountSentInUsd": "0.4153164421115617070309523", + "quotedGasAmount": "0.102252937709888206", + "quotedGasInUsd": "0.00973195709000805426915798", + "quotedReturnInUsd": "0.4110097680381907151184" + }, + "quote": { + "aggregator": "1inch", + "aggregatorType": "AGG", + "bridgeId": "1inch", + "bridges": ["1inch"], + "destAsset": { + "address": "0x2791bca1f2de4661ed88a30c99a7a9449aa84174", + "aggregators": [ + "metamask", + "oneInch", + "liFi", + "trustWallet", + "socket", + "rubic", + "squid", + "rango", + "sonarwatch", + "sushiSwap" + ], + "assetId": "eip155:137/erc20:0x2791bca1f2de4661ed88a30c99a7a9449aa84174", + "chainId": 137, + "coingeckoId": "bridged-usdc-polygon-pos-bridge", + "decimals": 6, + "iconUrl": "https://static.cx.metamask.io/api/v2/tokenIcons/assets/eip155/137/erc20/0x2791bca1f2de4661ed88a30c99a7a9449aa84174.png", + "metadata": { + "storage": { + "approval": 1, + "balance": 0 + } + }, + "name": "USD Coin (PoS)", + "occurrences": 10, + "symbol": "USDC.E" + }, + "destChainId": 137, + "destTokenAmount": "411034", + "destWalletAddress": "0x141d32a89a1e0a5ef360034a2f60a4b917c18838", + "feeData": { + "metabridge": { + "amount": "3628", + "asset": { + "address": "0x2791bca1f2de4661ed88a30c99a7a9449aa84174", + "aggregators": [ + "metamask", + "oneInch", + "liFi", + "trustWallet", + "socket", + "rubic", + "squid", + "rango", + "sonarwatch", + "sushiSwap" + ], + "assetId": "eip155:137/erc20:0x2791bca1f2de4661ed88a30c99a7a9449aa84174", + "chainId": 137, + "coingeckoId": "bridged-usdc-polygon-pos-bridge", + "decimals": 6, + "iconUrl": "https://static.cx.metamask.io/api/v2/tokenIcons/assets/eip155/137/erc20/0x2791bca1f2de4661ed88a30c99a7a9449aa84174.png", + "metadata": { + "storage": { + "approval": 1, + "balance": 0 + } + }, + "name": "USD Coin (PoS)", + "occurrences": 10, + "symbol": "USDC.E" + }, + "baseBpsFee": 87.5, + "quoteBpsFee": 87.5, + "usd": "0.0036277861160939383" + } + }, + "gasIncluded": false, + "gasIncluded7702": false, + "gasSponsored": false, + "minDestTokenAmount": "408978", + "priceData": { + "priceImpact": "0.0017443549458473428", + "totalFeeAmountUsd": "0.0036277861160939383", + "totalFromAmountUsd": "0.41536209307565863", + "totalToAmountUsd": "0.4110097680381907" + }, + "protocols": ["1inch"], + "requestId": "0x6a87cfe819874860a2e9b557a4e4e5596ffec94dfd412c349333e0a607d8e7ba", + "slippage": 0.5, + "srcAsset": { + "address": "0xc2132d05d31c914a87c6611c10748aeb04b58e8f", + "aggregators": [ + "sonarwatch", + "oneInch", + "liFi", + "trustWallet", + "socket", + "rubic", + "squid", + "rango", + "sushiSwap" + ], + "assetId": "eip155:137/erc20:0xc2132d05d31c914a87c6611c10748aeb04b58e8f", + "chainId": 137, + "coingeckoId": "polygon-bridged-usdt-polygon", + "decimals": 6, + "iconUrl": "https://static.cx.metamask.io/api/v2/tokenIcons/assets/eip155/137/erc20/0xc2132d05d31c914a87c6611c10748aeb04b58e8f.png", + "metadata": { + "storage": { + "approval": 1, + "balance": 0 + } + }, + "name": "(PoS) Tether USD", + "occurrences": 9, + "symbol": "USDT" + }, + "srcChainId": 137, + "srcTokenAmount": "415350", + "steps": [], + "walletAddress": "0x141d32a89a1e0a5ef360034a2f60a4b917c18838" + }, + "slippagePercentage": 0, + "startTime": 1778786350350, + "status": { + "srcChain": { + "chainId": 137 + }, + "status": "FAILED" + }, + "tokenSecurityTypeDestination": "Verified" + }, + "1778786574185.9194": { + "account": "0x141d32a89a1e0a5ef360034a2f60a4b917c18838", + "actionId": "1778786574185.9194", + "estimatedProcessingTimeInSeconds": 0, + "hasApprovalTx": false, + "isStxEnabled": false, + "location": "Main View", + "pricingData": { + "amountSent": "0.41535", + "amountSentInUsd": "0.4149998438417582697233586", + "quotedGasAmount": "0.091211039639609324", + "quotedGasInUsd": "0.00868335299719776257914032", + "quotedReturnInUsd": "0.4110097680381907151184" + }, + "quote": { + "aggregator": "1inch", + "aggregatorType": "AGG", + "bridgeId": "1inch", + "bridges": ["1inch"], + "destAsset": { + "address": "0x2791bca1f2de4661ed88a30c99a7a9449aa84174", + "aggregators": [ + "metamask", + "oneInch", + "liFi", + "trustWallet", + "socket", + "rubic", + "squid", + "rango", + "sonarwatch", + "sushiSwap" + ], + "assetId": "eip155:137/erc20:0x2791bca1f2de4661ed88a30c99a7a9449aa84174", + "chainId": 137, + "coingeckoId": "bridged-usdc-polygon-pos-bridge", + "decimals": 6, + "iconUrl": "https://static.cx.metamask.io/api/v2/tokenIcons/assets/eip155/137/erc20/0x2791bca1f2de4661ed88a30c99a7a9449aa84174.png", + "metadata": { + "storage": { + "approval": 1, + "balance": 0 + } + }, + "name": "USD Coin (PoS)", + "occurrences": 10, + "symbol": "USDC.E" + }, + "destChainId": 137, + "destTokenAmount": "411034", + "destWalletAddress": "0x141d32a89a1e0a5ef360034a2f60a4b917c18838", + "feeData": { + "metabridge": { + "amount": "3628", + "asset": { + "address": "0x2791bca1f2de4661ed88a30c99a7a9449aa84174", + "aggregators": [ + "metamask", + "oneInch", + "liFi", + "trustWallet", + "socket", + "rubic", + "squid", + "rango", + "sonarwatch", + "sushiSwap" + ], + "assetId": "eip155:137/erc20:0x2791bca1f2de4661ed88a30c99a7a9449aa84174", + "chainId": 137, + "coingeckoId": "bridged-usdc-polygon-pos-bridge", + "decimals": 6, + "iconUrl": "https://static.cx.metamask.io/api/v2/tokenIcons/assets/eip155/137/erc20/0x2791bca1f2de4661ed88a30c99a7a9449aa84174.png", + "metadata": { + "storage": { + "approval": 1, + "balance": 0 + } + }, + "name": "USD Coin (PoS)", + "occurrences": 10, + "symbol": "USDC.E" + }, + "baseBpsFee": 87.5, + "quoteBpsFee": 87.5, + "usd": "0.0036277861160939383" + } + }, + "gasIncluded": false, + "gasIncluded7702": false, + "gasSponsored": false, + "minDestTokenAmount": "408978", + "priceData": { + "priceImpact": "0.0017443549458473428", + "totalFeeAmountUsd": "0.0036277861160939383", + "totalFromAmountUsd": "0.41536209307565863", + "totalToAmountUsd": "0.4110097680381907" + }, + "protocols": ["1inch"], + "requestId": "0x2de1e1bf63864860114bc9333eba455e06fe6adb37df7dd8fd5413d48edfef2a", + "slippage": 0.5, + "srcAsset": { + "address": "0xc2132d05d31c914a87c6611c10748aeb04b58e8f", + "aggregators": [ + "sonarwatch", + "oneInch", + "liFi", + "trustWallet", + "socket", + "rubic", + "squid", + "rango", + "sushiSwap" + ], + "assetId": "eip155:137/erc20:0xc2132d05d31c914a87c6611c10748aeb04b58e8f", + "chainId": 137, + "coingeckoId": "polygon-bridged-usdt-polygon", + "decimals": 6, + "iconUrl": "https://static.cx.metamask.io/api/v2/tokenIcons/assets/eip155/137/erc20/0xc2132d05d31c914a87c6611c10748aeb04b58e8f.png", + "metadata": { + "storage": { + "approval": 1, + "balance": 0 + } + }, + "name": "(PoS) Tether USD", + "occurrences": 9, + "symbol": "USDT" + }, + "srcChainId": 137, + "srcTokenAmount": "415350", + "steps": [], + "walletAddress": "0x141d32a89a1e0a5ef360034a2f60a4b917c18838" + }, + "slippagePercentage": 0, + "startTime": 1778786574058, + "status": { + "srcChain": { + "chainId": 137 + }, + "status": "FAILED" + }, + "tokenSecurityTypeDestination": "Verified" + }, + "1778791682371.7283": { + "account": "0x141d32a89a1e0a5ef360034a2f60a4b917c18838", + "actionId": "1778791682371.7283", + "estimatedProcessingTimeInSeconds": 0, + "hasApprovalTx": false, + "isStxEnabled": false, + "location": "Main View", + "pricingData": { + "amountSent": "0.41535", + "amountSentInUsd": "0.41534999890412352381541575", + "quotedGasAmount": "0.101466284928739119", + "quotedGasInUsd": "0.009621675722925496968420627", + "quotedReturnInUsd": "0.411000765988102766105" + }, + "quote": { + "aggregator": "1inch", + "aggregatorType": "AGG", + "bridgeId": "1inch", + "bridges": ["1inch"], + "destAsset": { + "address": "0x2791bca1f2de4661ed88a30c99a7a9449aa84174", + "aggregators": [ + "metamask", + "oneInch", + "liFi", + "trustWallet", + "socket", + "rubic", + "squid", + "rango", + "sonarwatch", + "sushiSwap" + ], + "assetId": "eip155:137/erc20:0x2791bca1f2de4661ed88a30c99a7a9449aa84174", + "chainId": 137, + "coingeckoId": "bridged-usdc-polygon-pos-bridge", + "decimals": 6, + "iconUrl": "https://static.cx.metamask.io/api/v2/tokenIcons/assets/eip155/137/erc20/0x2791bca1f2de4661ed88a30c99a7a9449aa84174.png", + "metadata": { + "storage": { + "approval": 1, + "balance": 0 + } + }, + "name": "USD Coin (PoS)", + "occurrences": 10, + "symbol": "USDC.E" + }, + "destChainId": 137, + "destTokenAmount": "411089", + "destWalletAddress": "0x141d32a89a1e0a5ef360034a2f60a4b917c18838", + "feeData": { + "metabridge": { + "amount": "3628", + "asset": { + "address": "0x2791bca1f2de4661ed88a30c99a7a9449aa84174", + "aggregators": [ + "metamask", + "oneInch", + "liFi", + "trustWallet", + "socket", + "rubic", + "squid", + "rango", + "sonarwatch", + "sushiSwap" + ], + "assetId": "eip155:137/erc20:0x2791bca1f2de4661ed88a30c99a7a9449aa84174", + "chainId": 137, + "coingeckoId": "bridged-usdc-polygon-pos-bridge", + "decimals": 6, + "iconUrl": "https://static.cx.metamask.io/api/v2/tokenIcons/assets/eip155/137/erc20/0x2791bca1f2de4661ed88a30c99a7a9449aa84174.png", + "metadata": { + "storage": { + "approval": 1, + "balance": 0 + } + }, + "name": "USD Coin (PoS)", + "occurrences": 10, + "symbol": "USDC.E" + }, + "baseBpsFee": 87.5, + "quoteBpsFee": 87.5, + "usd": "0.0036272213048873527" + } + }, + "gasIncluded": false, + "gasIncluded7702": false, + "gasSponsored": false, + "minDestTokenAmount": "409033", + "priceData": { + "priceImpact": "0.0017383235993978312", + "totalFeeAmountUsd": "0.0036272213048873527", + "totalFromAmountUsd": "0.41535", + "totalToAmountUsd": "0.41100076598810276" + }, + "protocols": ["1inch"], + "requestId": "0xe3d5fb9fd3b52c63ae501b0bf4245b234e308c751795cc30309eab7eaa6f5f47", + "slippage": 0.5, + "srcAsset": { + "address": "0xc2132d05d31c914a87c6611c10748aeb04b58e8f", + "aggregators": [ + "sonarwatch", + "oneInch", + "liFi", + "trustWallet", + "socket", + "rubic", + "squid", + "rango", + "sushiSwap" + ], + "assetId": "eip155:137/erc20:0xc2132d05d31c914a87c6611c10748aeb04b58e8f", + "chainId": 137, + "coingeckoId": "polygon-bridged-usdt-polygon", + "decimals": 6, + "iconUrl": "https://static.cx.metamask.io/api/v2/tokenIcons/assets/eip155/137/erc20/0xc2132d05d31c914a87c6611c10748aeb04b58e8f.png", + "metadata": { + "storage": { + "approval": 1, + "balance": 0 + } + }, + "name": "(PoS) Tether USD", + "occurrences": 9, + "symbol": "USDT" + }, + "srcChainId": 137, + "srcTokenAmount": "415350", + "steps": [], + "walletAddress": "0x141d32a89a1e0a5ef360034a2f60a4b917c18838" + }, + "slippagePercentage": 0, + "startTime": 1778791682244, + "status": { + "srcChain": { + "chainId": 137 + }, + "status": "FAILED" + }, + "tokenSecurityTypeDestination": "Verified" + }, + "18e4dc30-2c9f-11f1-8ebe-f533125480a0": { + "account": "0x141d32a89a1e0a5ef360034a2f60a4b917c18838", + "approvalTxId": "18dfd320-2c9f-11f1-8ebe-f533125480a0", + "batchId": "0x970f55d7092848488fd23a59861dc300", + "estimatedProcessingTimeInSeconds": 0, + "hasApprovalTx": true, + "isStxEnabled": true, + "location": "Main View", + "originalTransactionId": "18e4dc30-2c9f-11f1-8ebe-f533125480a0", + "pricingData": { + "amountSent": "15.920861", + "amountSentInUsd": "15.898075408447756551870178883028064", + "quotedGasAmount": "0.000892593637078568", + "quotedGasInUsd": "1.813990780877443622385710528", + "quotedReturnInUsd": "13.154940453191463332302601304" + }, + "quote": { + "aggregator": "openocean", + "aggregatorType": "AGG", + "bridgeId": "openocean", + "bridges": ["openocean"], + "destAsset": { + "address": "0x0000000000000000000000000000000000000000", + "aggregators": [], + "assetId": "eip155:1/slip44:60", + "chainId": 1, + "coingeckoId": "ethereum", + "decimals": 18, + "iconUrl": "https://static.cx.metamask.io/api/v2/tokenIcons/assets/eip155/1/slip44/60.png", + "metadata": {}, + "name": "Ether", + "occurrences": 100, + "symbol": "ETH" + }, + "destChainId": 1, + "destTokenAmount": "6473029669415649", + "destWalletAddress": "0x141d32a89a1e0a5Ef360034a2f60a4B917c18838", + "feeData": { + "metabridge": { + "amount": "68320456535973", + "asset": { + "address": "0x0000000000000000000000000000000000000000", + "aggregators": [], + "assetId": "eip155:1/slip44:60", + "chainId": 1, + "coingeckoId": "ethereum", + "decimals": 18, + "iconUrl": "https://static.cx.metamask.io/api/v2/tokenIcons/assets/eip155/1/slip44/60.png", + "metadata": {}, + "name": "Ether", + "occurrences": 100, + "symbol": "ETH" + }, + "baseBpsFee": 87.5, + "quoteBpsFee": 87.5 + }, + "txFee": { + "amount": "1266702049588182", + "asset": { + "address": "0x0000000000000000000000000000000000000000", + "aggregators": [], + "assetId": "eip155:1/slip44:60", + "chainId": 1, + "coingeckoId": "ethereum", + "decimals": 18, + "iconUrl": "https://static.cx.metamask.io/api/v2/tokenIcons/assets/eip155/1/slip44/60.png", + "metadata": {}, + "name": "Ether", + "occurrences": 100, + "symbol": "ETH" + }, + "maxFeePerGas": "2210294520", + "maxPriorityFeePerGas": "2100000001" + } + }, + "gasIncluded": true, + "gasIncluded7702": false, + "gasSponsored": false, + "minDestTokenAmount": "6343569076027336", + "priceData": { + "priceImpact": "0.004345810244005002", + "totalFeeAmountUsd": "0.13884083177240433", + "totalFromAmountUsd": "15.936781860999998", + "totalToAmountUsd": "13.154490894186482" + }, + "protocols": ["openocean"], + "requestId": "0x56f130b4b6064f9baedc8fb78981404ff433fc9678784fd53c46c254d25f7910", + "slippage": 2, + "srcAsset": { + "address": "0xaca92e438df0b2401ff60da7e4337b687a2435da", + "aggregators": ["metamask", "liFi", "socket", "rubic", "rango"], + "assetId": "eip155:1/erc20:0xaca92e438df0b2401ff60da7e4337b687a2435da", + "chainId": 1, + "decimals": 6, + "iconUrl": "https://static.cx.metamask.io/api/v2/tokenIcons/assets/eip155/1/erc20/0xaca92e438df0b2401ff60da7e4337b687a2435da.png", + "metadata": {}, + "name": "MetaMask USD", + "occurrences": 5, + "symbol": "MUSD" + }, + "srcChainId": 1, + "srcTokenAmount": "15920861", + "steps": [], + "walletAddress": "0x141d32a89a1e0a5Ef360034a2f60a4B917c18838" + }, + "slippagePercentage": 0, + "startTime": 1774919725308, + "status": { + "srcChain": { + "chainId": 1 + }, + "status": "PENDING" + }, + "txMetaId": "18e4dc30-2c9f-11f1-8ebe-f533125480a0" + }, + "1a416310-287a-11f1-9dfe-552793792a79": { + "account": "0xf25bd11c334507fd007d584e2d0b7b2c6543f714", + "batchId": "0xa5cc733477e94a58ab5762100ae32e45", + "estimatedProcessingTimeInSeconds": 0, + "hasApprovalTx": true, + "isStxEnabled": false, + "location": "Main View", + "originalTransactionId": "1a416310-287a-11f1-9dfe-552793792a79", + "pricingData": { + "amountSent": "1.558871007127811639", + "amountSentInUsd": "1.55878266365077094718364467862200066104510895", + "quotedGasAmount": "0.00002473145", + "quotedGasInUsd": "0.01595953655565980085", + "quotedReturnInUsd": "1.497371644626166090297385244" + }, + "quote": { + "aggregator": "okx", + "aggregatorType": "AGG", + "bridgeId": "okx", + "bridges": ["okx"], + "destAsset": { + "address": "0x0000000000000000000000000000000000000000", + "aggregators": [], + "assetId": "eip155:56/slip44:714", + "chainId": 56, + "coingeckoId": "binancecoin", + "decimals": 18, + "iconUrl": "https://static.cx.metamask.io/api/v2/tokenIcons/assets/eip155/56/slip44/714.png", + "metadata": {}, + "name": "Binance Coin", + "occurrences": 100, + "symbol": "BNB" + }, + "destChainId": 56, + "destTokenAmount": "2320378905198028", + "destWalletAddress": "0xF25bd11C334507Fd007d584E2D0b7b2C6543f714", + "feeData": { + "metabridge": { + "amount": "21154536376880", + "asset": { + "address": "0x0000000000000000000000000000000000000000", + "aggregators": [], + "assetId": "eip155:56/slip44:714", + "chainId": 56, + "coingeckoId": "binancecoin", + "decimals": 18, + "iconUrl": "https://static.cx.metamask.io/api/v2/tokenIcons/assets/eip155/56/slip44/714.png", + "metadata": {}, + "name": "Binance Coin", + "occurrences": 100, + "symbol": "BNB" + }, + "baseBpsFee": 87.5, + "quoteBpsFee": 87.5 + }, + "txFee": { + "amount": "76127858640000", + "asset": { + "address": "0x0000000000000000000000000000000000000000", + "aggregators": [], + "assetId": "eip155:56/slip44:714", + "chainId": 56, + "coingeckoId": "binancecoin", + "decimals": 18, + "iconUrl": "https://static.cx.metamask.io/api/v2/tokenIcons/assets/eip155/56/slip44/714.png", + "metadata": {}, + "name": "Binance Coin", + "occurrences": 100, + "symbol": "BNB" + }, + "maxFeePerGas": "60000000", + "maxPriorityFeePerGas": "60000000" + } + }, + "gasIncluded": true, + "gasIncluded7702": true, + "gasSponsored": false, + "minDestTokenAmount": "2273971327094067", + "priceData": { + "priceImpact": "-0.0012321096886118048", + "totalFeeAmountUsd": "0.01365334932300212", + "totalFromAmountUsd": "1.558462582923944", + "totalToAmountUsd": "1.4975957492038594" + }, + "protocols": ["okx"], + "requestId": "0xc2c93a15491884dcf2cf871fecff123275c6f03118accdab28e49a459b20ba40", + "slippage": 2, + "srcAsset": { + "address": "0x55d398326f99059ff775485246999027b3197955", + "aggregators": [ + "pancakeExtended", + "oneInch", + "liFi", + "trustWallet", + "socket", + "rubic", + "squid", + "rango", + "sonarwatch", + "sushiSwap" + ], + "assetId": "eip155:56/erc20:0x55d398326f99059ff775485246999027b3197955", + "chainId": 56, + "coingeckoId": "binance-bridged-usdt-bnb-smart-chain", + "decimals": 18, + "iconUrl": "https://static.cx.metamask.io/api/v2/tokenIcons/assets/eip155/56/erc20/0x55d398326f99059ff775485246999027b3197955.png", + "metadata": { + "storage": { + "approval": 2, + "balance": 1 + } + }, + "name": "Tether USD", + "occurrences": 11, + "symbol": "USDT" + }, + "srcChainId": 56, + "srcTokenAmount": "1558871007127811639", + "steps": [], + "walletAddress": "0xF25bd11C334507Fd007d584E2D0b7b2C6543f714" + }, + "slippagePercentage": 0, + "startTime": 1774464031302, + "status": { + "srcChain": { + "chainId": 56, + "txHash": "0xd2a2fbc4c49ea2bfa24d0f5f104a4cbfb60322c6268e6b905f191d20d2832460" + }, + "status": "PENDING" + }, + "txMetaId": "1a416310-287a-11f1-9dfe-552793792a79" + }, + "1d7e2060-1d6a-11f1-9ef0-3b0a0edc0d9a": { + "account": "0x30e8ccad5a980bdf30447f8c2c48e70989d9d294", + "approvalTxId": "1d6d7e90-1d6a-11f1-9ef0-3b0a0edc0d9a", + "batchId": "0x792cefdac527491eb5b5c3d0795c0f9e", + "estimatedProcessingTimeInSeconds": 0, + "hasApprovalTx": true, + "isStxEnabled": true, + "location": "Main View", + "originalTransactionId": "1d7e2060-1d6a-11f1-9ef0-3b0a0edc0d9a", + "pricingData": { + "amountSent": "0.643591576123604442", + "amountSentInUsd": "0.64301336460396714079448602036040746958611824", + "quotedGasAmount": "0.0000120041", + "quotedGasInUsd": "0.0077825508438985784", + "quotedReturnInUsd": "0.637290596189176547845516" + }, + "quote": { + "aggregator": "uniswap", + "aggregatorType": "AGG", + "bridgeId": "uniswap", + "bridges": ["uniswap"], + "destAsset": { + "address": "0x0000000000000000000000000000000000000000", + "aggregators": [], + "assetId": "eip155:56/slip44:714", + "chainId": 56, + "coingeckoId": "binancecoin", + "decimals": 18, + "iconUrl": "https://static.cx.metamask.io/api/v2/tokenIcons/assets/eip155/56/slip44/714.png", + "metadata": {}, + "name": "Binance Coin", + "occurrences": 100, + "symbol": "BNB" + }, + "destChainId": 56, + "destTokenAmount": "982981055846500", + "destWalletAddress": "0x30E8ccaD5A980BDF30447f8c2C48e70989D9d294", + "feeData": { + "metabridge": { + "amount": "8677008059174", + "asset": { + "address": "0x0000000000000000000000000000000000000000", + "aggregators": [], + "assetId": "eip155:56/slip44:714", + "chainId": 56, + "coingeckoId": "binancecoin", + "decimals": 18, + "iconUrl": "https://static.cx.metamask.io/api/v2/tokenIcons/assets/eip155/56/slip44/714.png", + "metadata": {}, + "name": "Binance Coin", + "occurrences": 100, + "symbol": "BNB" + }, + "baseBpsFee": 87.5, + "quoteBpsFee": 87.5 + } + }, + "gasIncluded": false, + "gasIncluded7702": false, + "gasSponsored": false, + "minDestTokenAmount": "963321434729570", + "priceData": { + "priceImpact": "0.0008097601979067252", + "totalFeeAmountUsd": "0.0056268661862131555", + "totalFromAmountUsd": "0.6435915761236044", + "totalToAmountUsd": "0.6374435550953382" + }, + "protocols": ["uniswap"], + "requestId": "0x30c1955aac9d5e4c292d94afdb65b64da0d10c7e20195127669fca582b5fb1df", + "slippage": 2, + "srcAsset": { + "address": "0x55d398326f99059ff775485246999027b3197955", + "aggregators": [ + "pancakeExtended", + "oneInch", + "liFi", + "socket", + "rubic", + "squid", + "rango", + "sonarwatch", + "sushiSwap" + ], + "assetId": "eip155:56/erc20:0x55d398326f99059ff775485246999027b3197955", + "chainId": 56, + "coingeckoId": "binance-bridged-usdt-bnb-smart-chain", + "decimals": 18, + "iconUrl": "https://static.cx.metamask.io/api/v2/tokenIcons/assets/eip155/56/erc20/0x55d398326f99059ff775485246999027b3197955.png", + "metadata": { + "storage": { + "approval": 2, + "balance": 1 + } + }, + "name": "Tether USD", + "occurrences": 11, + "symbol": "USDT" + }, + "srcChainId": 56, + "srcTokenAmount": "643591576123604442", + "steps": [], + "walletAddress": "0x30E8ccaD5A980BDF30447f8c2C48e70989D9d294" + }, + "slippagePercentage": 0, + "startTime": 1773247702151, + "status": { + "srcChain": { + "chainId": 56 + }, + "status": "PENDING" + }, + "txMetaId": "1d7e2060-1d6a-11f1-9ef0-3b0a0edc0d9a" + }, + "20d894c0-27d8-11f1-beee-7be08aed0cd0": { + "account": "0xf25bd11c334507fd007d584e2d0b7b2c6543f714", + "batchId": "0x18e887cb1f754d8aaf7d5ba2201169da", + "estimatedProcessingTimeInSeconds": 0, + "hasApprovalTx": false, + "isStxEnabled": false, + "location": "Main View", + "originalTransactionId": "20d894c0-27d8-11f1-beee-7be08aed0cd0", + "pricingData": { + "amountSent": "0.003128759898328475", + "amountSentInUsd": "1.9888965945835364069163952", + "quotedGasAmount": "0.0000097097", + "quotedGasInUsd": "0.0061722822753976384", + "quotedReturnInUsd": "1.96573398766324672503088889630227501519456448" + }, + "quote": { + "aggregator": "uniswap", + "aggregatorType": "AGG", + "bridgeId": "uniswap", + "bridges": ["uniswap"], + "destAsset": { + "address": "0x55d398326f99059ff775485246999027b3197955", + "aggregators": [ + "pancakeExtended", + "oneInch", + "liFi", + "trustWallet", + "socket", + "squid", + "rango", + "sonarwatch", + "sushiSwap" + ], + "assetId": "eip155:56/erc20:0x55d398326f99059ff775485246999027b3197955", + "chainId": 56, + "coingeckoId": "binance-bridged-usdt-bnb-smart-chain", + "decimals": 18, + "iconUrl": "https://static.cx.metamask.io/api/v2/tokenIcons/assets/eip155/56/erc20/0x55d398326f99059ff775485246999027b3197955.png", + "metadata": { + "storage": { + "approval": 2, + "balance": 1 + } + }, + "name": "Tether USD", + "occurrences": 9, + "symbol": "USDT" + }, + "destChainId": 56, + "destTokenAmount": "1966436005317427007", + "destWalletAddress": "0xF25bd11C334507Fd007d584E2D0b7b2C6543f714", + "feeData": { + "metabridge": { + "amount": "27376649110374", + "asset": { + "address": "0x0000000000000000000000000000000000000000", + "aggregators": [], + "assetId": "eip155:56/slip44:714", + "chainId": 56, + "coingeckoId": "binancecoin", + "decimals": 18, + "iconUrl": "https://static.cx.metamask.io/api/v2/tokenIcons/assets/eip155/56/slip44/714.png", + "metadata": {}, + "name": "Binance Coin", + "occurrences": 100, + "symbol": "BNB" + }, + "baseBpsFee": 87.5, + "quoteBpsFee": 87.5 + }, + "txFee": { + "amount": "19880370000000", + "asset": { + "address": "0x0000000000000000000000000000000000000000", + "aggregators": [], + "assetId": "eip155:56/slip44:714", + "chainId": 56, + "coingeckoId": "binancecoin", + "decimals": 18, + "iconUrl": "https://static.cx.metamask.io/api/v2/tokenIcons/assets/eip155/56/slip44/714.png", + "metadata": {}, + "name": "Binance Coin", + "occurrences": 100, + "symbol": "BNB" + }, + "maxFeePerGas": "60000000", + "maxPriorityFeePerGas": "60000000" + } + }, + "gasIncluded": true, + "gasIncluded7702": false, + "gasSponsored": false, + "minDestTokenAmount": "1927107285211078466", + "priceData": { + "priceImpact": "0.008267744185004297", + "totalFeeAmountUsd": "0.017453982640318944", + "totalFromAmountUsd": "1.994740873179319", + "totalToAmountUsd": "1.9656789274553739" + }, + "protocols": ["uniswap"], + "requestId": "0x6e4fbf72b6726e8b8e01ebdfc266b5825da48ac4e0bc57c2667afc181106c1c8", + "slippage": 2, + "srcAsset": { + "address": "0x0000000000000000000000000000000000000000", + "aggregators": [], + "assetId": "eip155:56/slip44:714", + "chainId": 56, + "coingeckoId": "binancecoin", + "decimals": 18, + "iconUrl": "https://static.cx.metamask.io/api/v2/tokenIcons/assets/eip155/56/slip44/714.png", + "metadata": {}, + "name": "Binance Coin", + "occurrences": 100, + "symbol": "BNB" + }, + "srcChainId": 56, + "srcTokenAmount": "3081502879218101", + "steps": [], + "walletAddress": "0xF25bd11C334507Fd007d584E2D0b7b2C6543f714" + }, + "slippagePercentage": 0, + "startTime": 1774394464098, + "status": { + "srcChain": { + "chainId": 56, + "txHash": "0xb11d5a22adb3b536ccdb1b49ec771537a8e2164e1077ab186bed124b62d395fa" + }, + "status": "FAILED" + }, + "txMetaId": "20d894c0-27d8-11f1-beee-7be08aed0cd0" + }, + "25d432c0-182b-11f1-b7d6-03d70bc40886": { + "account": "0x30e8ccad5a980bdf30447f8c2c48e70989d9d294", + "approvalTxId": "25456040-182b-11f1-b7d6-03d70bc40886", + "batchId": "0xec472db751954c829779c1ca2f5bcb9f", + "estimatedProcessingTimeInSeconds": 0, + "hasApprovalTx": true, + "isStxEnabled": true, + "pricingData": { + "amountSent": "1", + "amountSentInUsd": "0.99534762344306532453024", + "quotedGasAmount": "0.069617092116074084", + "quotedGasInUsd": "0.007230875622691523381192256", + "quotedReturnInUsd": "0.991003576754535701605215216" + }, + "quote": { + "aggregator": "uniswap", + "aggregatorType": "AGG", + "bridgeId": "uniswap", + "bridges": ["uniswap"], + "destAsset": { + "address": "0x0000000000000000000000000000000000000000", + "aggregators": [], + "assetId": "eip155:137/slip44:966", + "chainId": 137, + "coingeckoId": "matic-network", + "decimals": 18, + "iconUrl": "https://static.cx.metamask.io/api/v2/tokenIcons/assets/eip155/137/slip44/966.png", + "metadata": {}, + "name": "Polygon Ecosystem Token", + "occurrences": 100, + "symbol": "POL" + }, + "destChainId": 137, + "destTokenAmount": "9541138707154142399", + "destWalletAddress": "0x30E8ccaD5A980BDF30447f8c2C48e70989D9d294", + "feeData": { + "metabridge": { + "amount": "84221905359494321", + "asset": { + "address": "0x0000000000000000000000000000000000000000", + "aggregators": [], + "assetId": "eip155:137/slip44:966", + "chainId": 137, + "coingeckoId": "matic-network", + "decimals": 18, + "iconUrl": "https://static.cx.metamask.io/api/v2/tokenIcons/assets/eip155/137/slip44/966.png", + "metadata": {}, + "name": "Polygon Ecosystem Token", + "occurrences": 100, + "symbol": "POL" + }, + "baseBpsFee": 87.5, + "quoteBpsFee": 87.5 + } + }, + "gasIncluded7702": false, + "gasSponsored": false, + "minDestTokenAmount": "9350315933011059551", + "priceData": { + "priceImpact": "-0.0036698308077018197", + "totalFeeAmountUsd": "0.008750992854472898", + "totalFromAmountUsd": "0.9964566418", + "totalToAmountUsd": "0.9913624762281439" + }, + "protocols": ["uniswap"], + "requestId": "0x0fbae219631485604e374fafe45f37636d9ef7c436f7841b92a284e1257fae38", + "slippage": 2, + "srcAsset": { + "address": "0xc2132d05d31c914a87c6611c10748aeb04b58e8f", + "aggregators": [ + "quickswap", + "oneInch", + "liFi", + "socket", + "squid", + "rango", + "sonarwatch", + "sushiSwap" + ], + "assetId": "eip155:137/erc20:0xc2132d05d31c914a87c6611c10748aeb04b58e8f", + "chainId": 137, + "coingeckoId": "polygon-bridged-usdt-polygon", + "decimals": 6, + "iconUrl": "https://static.cx.metamask.io/api/v2/tokenIcons/assets/eip155/137/erc20/0xc2132d05d31c914a87c6611c10748aeb04b58e8f.png", + "metadata": { + "storage": { + "approval": 1, + "balance": 0 + } + }, + "name": "Tether USD", + "occurrences": 8, + "symbol": "USDT" + }, + "srcChainId": 137, + "srcTokenAmount": "1000000", + "steps": [], + "walletAddress": "0x30E8ccaD5A980BDF30447f8c2C48e70989D9d294" + }, + "slippagePercentage": 0, + "startTime": 1772670901235, + "status": { + "srcChain": { + "chainId": 137 + }, + "status": "PENDING" + }, + "txMetaId": "25d432c0-182b-11f1-b7d6-03d70bc40886" + }, + "26540ce0-1414-11f1-b6bb-f92a9c5664e8": { + "account": "0x30e8ccad5a980bdf30447f8c2c48e70989d9d294", + "approvalTxId": "264fa010-1414-11f1-b6bb-f92a9c5664e8", + "batchId": "0xf26743986b894310a6353002a642a0c5", + "estimatedProcessingTimeInSeconds": 0, + "hasApprovalTx": true, + "isStxEnabled": true, + "pricingData": { + "amountSent": "3", + "amountSentInUsd": "3", + "quotedGasAmount": "0.0000134238", + "quotedGasInUsd": "0.008187981048", + "quotedReturnInUsd": "2.97491629135328818008" + }, + "quote": { + "aggregator": "1inch", + "aggregatorType": "AGG", + "bridgeId": "1inch", + "bridges": ["1inch"], + "destAsset": { + "address": "0x0000000000000000000000000000000000000000", + "aggregators": [], + "assetId": "eip155:56/slip44:714", + "chainId": 56, + "coingeckoId": "binancecoin", + "decimals": 18, + "iconUrl": "https://static.cx.metamask.io/api/v2/tokenIcons/assets/eip155/56/slip44/714.png", + "metadata": {}, + "name": "Binance Coin", + "occurrences": 100, + "symbol": "BNB" + }, + "destChainId": 56, + "destTokenAmount": "4877231771514998", + "destWalletAddress": "0x30E8ccaD5A980BDF30447f8c2C48e70989D9d294", + "feeData": { + "metabridge": { + "amount": "43052487264319", + "asset": { + "address": "0x0000000000000000000000000000000000000000", + "aggregators": [], + "assetId": "eip155:56/slip44:714", + "chainId": 56, + "coingeckoId": "binancecoin", + "decimals": 18, + "iconUrl": "https://static.cx.metamask.io/api/v2/tokenIcons/assets/eip155/56/slip44/714.png", + "metadata": {}, + "name": "Binance Coin", + "occurrences": 100, + "symbol": "BNB" + }, + "baseBpsFee": 87.5, + "quoteBpsFee": 87.5 + } + }, + "gasIncluded7702": false, + "gasSponsored": false, + "minDestTokenAmount": "4779687136084698", + "priceData": { + "priceImpact": "-0.00043782169242661146", + "totalFeeAmountUsd": "0.026259864606871377", + "totalFromAmountUsd": "2.9998139999999998", + "totalToAmountUsd": "2.9748675190355733" + }, + "protocols": ["1inch"], + "requestId": "0x71ab39be45256634bbb6d97e3697f585459efb9e7a4be9d2a9606cbb0df4d736", + "slippage": 2, + "srcAsset": { + "address": "0x55d398326f99059ff775485246999027b3197955", + "aggregators": [ + "pancakeExtended", + "oneInch", + "liFi", + "socket", + "squid", + "rango", + "sonarwatch", + "sushiSwap" + ], + "assetId": "eip155:56/erc20:0x55d398326f99059ff775485246999027b3197955", + "chainId": 56, + "coingeckoId": "binance-bridged-usdt-bnb-smart-chain", + "decimals": 18, + "iconUrl": "https://static.cx.metamask.io/api/v2/tokenIcons/assets/eip155/56/erc20/0x55d398326f99059ff775485246999027b3197955.png", + "metadata": { + "storage": { + "approval": 2, + "balance": 1 + } + }, + "name": "Tether USD", + "occurrences": 8, + "symbol": "USDT" + }, + "srcChainId": 56, + "srcTokenAmount": "3000000000000000000", + "steps": [], + "walletAddress": "0x30E8ccaD5A980BDF30447f8c2C48e70989D9d294" + }, + "slippagePercentage": 0, + "startTime": 1772221219926, + "status": { + "srcChain": { + "chainId": 56 + }, + "status": "PENDING" + }, + "txMetaId": "26540ce0-1414-11f1-b6bb-f92a9c5664e8" + }, + "291f2100-4fef-11f1-97dc-cb72b8adab55": { + "account": "0x141d32a89a1e0a5ef360034a2f60a4b917c18838", + "batchId": "0x19e28ec4d87", + "estimatedProcessingTimeInSeconds": 0, + "hasApprovalTx": true, + "isStxEnabled": false, + "location": "Main View", + "originalTransactionId": "291f2100-4fef-11f1-97dc-cb72b8adab55", + "pricingData": { + "amountSent": "1.315", + "amountSentInUsd": "13.846950000000051735816332283", + "quotedGasAmount": "0.0000124966", + "quotedGasInUsd": "0.0084822821380720418", + "quotedReturnInUsd": "1.30306426725057752300979507704856396526799195" + }, + "quote": { + "aggregator": "uniswap", + "aggregatorType": "AGG", + "bridgeId": "uniswap", + "bridges": ["uniswap"], + "destAsset": { + "address": "0x55d398326f99059ff775485246999027b3197955", + "aggregators": [ + "pancakeExtended", + "oneInch", + "liFi", + "trustWallet", + "socket", + "rubic", + "squid", + "rango", + "sonarwatch", + "sushiSwap" + ], + "assetId": "eip155:56/erc20:0x55d398326f99059ff775485246999027b3197955", + "chainId": 56, + "coingeckoId": "binance-bridged-usdt-bnb-smart-chain", + "decimals": 18, + "iconUrl": "https://static.cx.metamask.io/api/v2/tokenIcons/assets/eip155/56/erc20/0x55d398326f99059ff775485246999027b3197955.png", + "metadata": { + "storage": { + "approval": 2, + "balance": 1 + } + }, + "name": "Tether USD", + "occurrences": 11, + "symbol": "USDT" + }, + "destChainId": 56, + "destTokenAmount": "1303383596231645435", + "destWalletAddress": "0x141d32a89a1e0a5ef360034a2f60a4b917c18838", + "feeData": { + "metabridge": { + "amount": "11506250000000000", + "asset": { + "address": "0x1af3f329e8be154074d8769d1ffa4ee058b1dbc3", + "aggregators": [ + "pancakeExtended", + "oneInch", + "liFi", + "trustWallet", + "socket", + "rubic", + "rango", + "sonarwatch", + "sushiSwap" + ], + "assetId": "eip155:56/erc20:0x1af3f329e8be154074d8769d1ffa4ee058b1dbc3", + "chainId": 56, + "coingeckoId": "binance-peg-dai", + "decimals": 18, + "iconUrl": "https://static.cx.metamask.io/api/v2/tokenIcons/assets/eip155/56/erc20/0x1af3f329e8be154074d8769d1ffa4ee058b1dbc3.png", + "metadata": { + "storage": { + "approval": 2, + "balance": 1 + } + }, + "name": "BNB pegged Dai Token", + "occurrences": 12, + "symbol": "DAI" + }, + "baseBpsFee": 87.5, + "quoteBpsFee": 87.5, + "usd": "0.011504996584542227" + } + }, + "gasIncluded": false, + "gasIncluded7702": false, + "gasSponsored": false, + "minDestTokenAmount": "1277315924307012526", + "priceData": { + "priceImpact": "0.0001745753113370159", + "totalFeeAmountUsd": "0.011504996584542227", + "totalFromAmountUsd": "1.3148567525191115", + "totalToAmountUsd": "1.3031242228959954" + }, + "protocols": ["uniswap"], + "requestId": "0xb8e6d170201a3b869e71cd6c14ff338b62caaac110058d1145f491790371ef28", + "slippage": 2, + "srcAsset": { + "address": "0x1af3f329e8be154074d8769d1ffa4ee058b1dbc3", + "aggregators": [ + "pancakeExtended", + "oneInch", + "liFi", + "trustWallet", + "socket", + "rubic", + "rango", + "sonarwatch", + "sushiSwap" + ], + "assetId": "eip155:56/erc20:0x1af3f329e8be154074d8769d1ffa4ee058b1dbc3", + "chainId": 56, + "coingeckoId": "binance-peg-dai", + "decimals": 18, + "iconUrl": "https://static.cx.metamask.io/api/v2/tokenIcons/assets/eip155/56/erc20/0x1af3f329e8be154074d8769d1ffa4ee058b1dbc3.png", + "metadata": { + "storage": { + "approval": 2, + "balance": 1 + } + }, + "name": "BNB pegged Dai Token", + "occurrences": 12, + "symbol": "DAI" + }, + "srcChainId": 56, + "srcTokenAmount": "1303493750000000000", + "steps": [], + "walletAddress": "0x141d32a89a1e0a5ef360034a2f60a4b917c18838" + }, + "slippagePercentage": 0, + "startTime": 1778802402949, + "status": { + "srcChain": { + "chainId": 56, + "txHash": "0x85c243aeeb7065fbc8f33c0f1a5dd352b911420280c4ff947264d8fb9fdbc6b1" + }, + "status": "COMPLETE" + }, + "tokenSecurityTypeDestination": null, + "txMetaId": "291f2100-4fef-11f1-97dc-cb72b8adab55" + }, + "2U8HzdTkKqtGYLSkPzx86kSSuW3DsEKQWe2nnBXFHw1ZfL5q6dDwKNBZCuesPXShvTG6SADEFSHWiZzfhHpNBgUo": { + "account": "8jKM7u4xsyvDpnqL5DQMVrh8AXxZKJPKJw5QsM7KEF8J", + "completionTime": 1772221203903, + "estimatedProcessingTimeInSeconds": 3, + "hasApprovalTx": false, + "isStxEnabled": false, + "pricingData": { + "amountSent": "0.001", + "amountSentInUsd": "0.08154", + "quotedGasAmount": "0.000005", + "quotedGasInUsd": "0.0004077", + "quotedReturnInUsd": "0.028805433409474664" + }, + "quote": { + "aggregator": "relay", + "bridgeId": "relay", + "bridges": ["Relay"], + "destAsset": { + "address": "0x55d398326f99059ff775485246999027b3197955", + "aggregators": [ + "pancakeExtended", + "oneInch", + "liFi", + "socket", + "squid", + "rango", + "sonarwatch", + "sushiSwap" + ], + "assetId": "eip155:56/erc20:0x55d398326f99059ff775485246999027b3197955", + "chainId": 56, + "coingeckoId": "binance-bridged-usdt-bnb-smart-chain", + "decimals": 18, + "iconUrl": "https://static.cx.metamask.io/api/v2/tokenIcons/assets/eip155/56/erc20/0x55d398326f99059ff775485246999027b3197955.png", + "metadata": { + "storage": { + "approval": 2, + "balance": 1 + } + }, + "name": "Tether USD", + "occurrences": 8, + "symbol": "USDT" + }, + "destChainId": 56, + "destTokenAmount": "28805433409474664", + "feeData": { + "metabridge": { + "amount": "8750", + "asset": { + "address": "0x0000000000000000000000000000000000000000", + "aggregators": [], + "assetId": "solana:5eykt4UsFv8P8NJdTREpY1vzqKqZKvdp/slip44:501", + "chainId": 1151111081099710, + "decimals": 9, + "iconUrl": "https://static.cx.metamask.io/api/v2/tokenIcons/assets/solana/5eykt4UsFv8P8NJdTREpY1vzqKqZKvdp/slip44/501.png", + "metadata": {}, + "name": "SOL", + "occurrences": 100, + "symbol": "SOL" + }, + "baseBpsFee": 87.5, + "quoteBpsFee": 87.5 + } + }, + "minDestTokenAmount": "27388206085728511", + "priceData": { + "priceImpact": "0.6436362014499166", + "totalFeeAmountUsd": "0.000713475", + "totalFromAmountUsd": "0.08154", + "totalToAmountUsd": "0.028803647472603278" + }, + "protocols": ["Relay"], + "requestId": "0x29af14cd1dcc0cb23b00ea3456e8b04d9f42627eec086a2a27d1e9d986152f6e", + "slippage": 2, + "srcAsset": { + "address": "0x0000000000000000000000000000000000000000", + "aggregators": [], + "assetId": "solana:5eykt4UsFv8P8NJdTREpY1vzqKqZKvdp/slip44:501", + "chainId": 1151111081099710, + "decimals": 9, + "iconUrl": "https://static.cx.metamask.io/api/v2/tokenIcons/assets/solana/5eykt4UsFv8P8NJdTREpY1vzqKqZKvdp/slip44/501.png", + "metadata": {}, + "name": "SOL", + "occurrences": 100, + "symbol": "SOL" + }, + "srcChainId": 1151111081099710, + "srcTokenAmount": "991250", + "steps": [ + { + "action": "bridge", + "destAmount": "28805433409474664", + "destAsset": { + "address": "0x55d398326f99059ff775485246999027b3197955", + "aggregators": [ + "pancakeExtended", + "oneInch", + "liFi", + "socket", + "squid", + "rango", + "sonarwatch", + "sushiSwap" + ], + "assetId": "eip155:56/erc20:0x55d398326f99059ff775485246999027b3197955", + "chainId": 56, + "coingeckoId": "binance-bridged-usdt-bnb-smart-chain", + "decimals": 18, + "iconUrl": "https://static.cx.metamask.io/api/v2/tokenIcons/assets/eip155/56/erc20/0x55d398326f99059ff775485246999027b3197955.png", + "metadata": { + "storage": { + "approval": 2, + "balance": 1 + } + }, + "name": "Tether USD", + "occurrences": 8, + "symbol": "USDT" + }, + "destChainId": 56, + "protocol": { + "name": "relay" + }, + "srcAmount": "991250", + "srcAsset": { + "address": "0x0000000000000000000000000000000000000000", + "aggregators": [], + "assetId": "solana:5eykt4UsFv8P8NJdTREpY1vzqKqZKvdp/slip44:501", + "chainId": 1151111081099710, + "decimals": 9, + "iconUrl": "https://static.cx.metamask.io/api/v2/tokenIcons/assets/solana/5eykt4UsFv8P8NJdTREpY1vzqKqZKvdp/slip44/501.png", + "metadata": {}, + "name": "SOL", + "occurrences": 100, + "symbol": "SOL" + }, + "srcChainId": 1151111081099710 + } + ] + }, + "slippagePercentage": 0, + "startTime": 1772221193255, + "status": { + "bridge": "relay", + "destChain": { + "chainId": 56, + "txHash": "0x38017d291b8c3156078457690dfc60e81f5da9a36b061738775d9475a9408956" + }, + "isExpectedToken": true, + "isUnrecognizedRouterAddress": false, + "srcChain": { + "chainId": 1151111081099710, + "txHash": "2U8HzdTkKqtGYLSkPzx86kSSuW3DsEKQWe2nnBXFHw1ZfL5q6dDwKNBZCuesPXShvTG6SADEFSHWiZzfhHpNBgUo" + }, + "status": "COMPLETE" + }, + "txMetaId": "2U8HzdTkKqtGYLSkPzx86kSSuW3DsEKQWe2nnBXFHw1ZfL5q6dDwKNBZCuesPXShvTG6SADEFSHWiZzfhHpNBgUo" + }, + "2ae59880-176d-11f1-b7d6-03d70bc40886": { + "account": "0x30e8ccad5a980bdf30447f8c2c48e70989d9d294", + "approvalTxId": "2adff330-176d-11f1-b7d6-03d70bc40886", + "batchId": "0x5a75b1c299254b11b78da95e11b9baf4", + "estimatedProcessingTimeInSeconds": 0, + "hasApprovalTx": true, + "isStxEnabled": true, + "pricingData": { + "amountSent": "4.32976", + "amountSentInUsd": "4.32794503896761020279883728724544", + "quotedGasAmount": "0.000616846771445724", + "quotedGasInUsd": "1.223710516755164288596106664", + "quotedReturnInUsd": "2.616058666160591661870509934" + }, + "quote": { + "aggregator": "uniswap", + "aggregatorType": "AGG", + "bridgeId": "uniswap", + "bridges": ["uniswap"], + "destAsset": { + "address": "0x0000000000000000000000000000000000000000", + "aggregators": [], + "assetId": "eip155:1/slip44:60", + "chainId": 1, + "coingeckoId": "ethereum", + "decimals": 18, + "iconUrl": "https://static.cx.metamask.io/api/v2/tokenIcons/assets/eip155/1/slip44/60.png", + "metadata": {}, + "name": "Ether", + "occurrences": 100, + "symbol": "ETH" + }, + "destChainId": 1, + "destTokenAmount": "1318700231826669", + "destWalletAddress": "0x30E8ccaD5A980BDF30447f8c2C48e70989D9d294", + "feeData": { + "metabridge": { + "amount": "19101080070552", + "asset": { + "address": "0x0000000000000000000000000000000000000000", + "aggregators": [], + "assetId": "eip155:1/slip44:60", + "chainId": 1, + "coingeckoId": "ethereum", + "decimals": 18, + "iconUrl": "https://static.cx.metamask.io/api/v2/tokenIcons/assets/eip155/1/slip44/60.png", + "metadata": {}, + "name": "Ether", + "occurrences": 100, + "symbol": "ETH" + }, + "baseBpsFee": 87.5, + "quoteBpsFee": 87.5 + }, + "txFee": { + "amount": "845179267594512", + "asset": { + "address": "0x0000000000000000000000000000000000000000", + "aggregators": [], + "assetId": "eip155:1/slip44:60", + "chainId": 1, + "coingeckoId": "ethereum", + "decimals": 18, + "iconUrl": "https://static.cx.metamask.io/api/v2/tokenIcons/assets/eip155/1/slip44/60.png", + "metadata": {}, + "name": "Ether", + "occurrences": 100, + "symbol": "ETH" + }, + "maxFeePerGas": "2218198470", + "maxPriorityFeePerGas": "2100000001" + } + }, + "gasIncluded": true, + "gasIncluded7702": false, + "minDestTokenAmount": "1292326227190135", + "priceData": { + "priceImpact": "-0.0008327497105783305", + "totalFeeAmountUsd": "0.03790762148641609", + "totalFromAmountUsd": "4.32869487904", + "totalToAmountUsd": "2.6170661060785707" + }, + "protocols": ["uniswap"], + "requestId": "0x29e9f4ff93930a9b467398113a2c9187117727182108bc49cbf8da1ccc2c694a", + "srcAsset": { + "address": "0xaca92e438df0b2401ff60da7e4337b687a2435da", + "aggregators": ["metamask", "liFi", "socket", "rango"], + "assetId": "eip155:1/erc20:0xaca92e438df0b2401ff60da7e4337b687a2435da", + "chainId": 1, + "decimals": 6, + "iconUrl": "https://static.cx.metamask.io/api/v2/tokenIcons/assets/eip155/1/erc20/0xaca92e438df0b2401ff60da7e4337b687a2435da.png", + "metadata": {}, + "name": "MetaMask USD", + "occurrences": 4, + "symbol": "MUSD" + }, + "srcChainId": 1, + "srcTokenAmount": "4329760", + "steps": [], + "walletAddress": "0x30E8ccaD5A980BDF30447f8c2C48e70989D9d294" + }, + "slippagePercentage": 0, + "startTime": 1772589306337, + "status": { + "srcChain": { + "chainId": 1 + }, + "status": "PENDING" + }, + "txMetaId": "2ae59880-176d-11f1-b7d6-03d70bc40886" + }, + "2cba9e10-286d-11f1-9e22-5fbe36423c6b": { + "account": "0xf25bd11c334507fd007d584e2d0b7b2c6543f714", + "batchId": "0xbc150d5f82e64b6aa5a5c14754345c86", + "estimatedProcessingTimeInSeconds": 0, + "hasApprovalTx": false, + "isStxEnabled": false, + "location": "Main View", + "originalTransactionId": "2cba9e10-286d-11f1-9e22-5fbe36423c6b", + "pricingData": { + "amountSent": "0.003115915098328475", + "amountSentInUsd": "2.017870521978341002447416025", + "quotedGasAmount": "0.0000097131", + "quotedGasInUsd": "0.0062902157306988489", + "quotedReturnInUsd": "1.98597973339818206456170127434490429010262415" + }, + "quote": { + "aggregator": "uniswap", + "aggregatorType": "AGG", + "bridgeId": "uniswap", + "bridges": ["uniswap"], + "destAsset": { + "address": "0x55d398326f99059ff775485246999027b3197955", + "aggregators": [ + "pancakeExtended", + "oneInch", + "liFi", + "trustWallet", + "socket", + "squid", + "rango", + "sonarwatch", + "sushiSwap" + ], + "assetId": "eip155:56/erc20:0x55d398326f99059ff775485246999027b3197955", + "chainId": 56, + "coingeckoId": "binance-bridged-usdt-bnb-smart-chain", + "decimals": 18, + "iconUrl": "https://static.cx.metamask.io/api/v2/tokenIcons/assets/eip155/56/erc20/0x55d398326f99059ff775485246999027b3197955.png", + "metadata": { + "storage": { + "approval": 2, + "balance": 1 + } + }, + "name": "Tether USD", + "occurrences": 9, + "symbol": "USDT" + }, + "destChainId": 56, + "destTokenAmount": "1985984799263957533", + "destWalletAddress": "0xF25bd11C334507Fd007d584E2D0b7b2C6543f714", + "feeData": { + "metabridge": { + "amount": "27264257110374", + "asset": { + "address": "0x0000000000000000000000000000000000000000", + "aggregators": [], + "assetId": "eip155:56/slip44:714", + "chainId": 56, + "coingeckoId": "binancecoin", + "decimals": 18, + "iconUrl": "https://static.cx.metamask.io/api/v2/tokenIcons/assets/eip155/56/slip44/714.png", + "metadata": {}, + "name": "Binance Coin", + "occurrences": 100, + "symbol": "BNB" + }, + "baseBpsFee": 87.5, + "quoteBpsFee": 87.5 + }, + "txFee": { + "amount": "19886490000000", + "asset": { + "address": "0x0000000000000000000000000000000000000000", + "aggregators": [], + "assetId": "eip155:56/slip44:714", + "chainId": 56, + "coingeckoId": "binancecoin", + "decimals": 18, + "iconUrl": "https://static.cx.metamask.io/api/v2/tokenIcons/assets/eip155/56/slip44/714.png", + "metadata": {}, + "name": "Binance Coin", + "occurrences": 100, + "symbol": "BNB" + }, + "maxFeePerGas": "60000000", + "maxPriorityFeePerGas": "60000000" + } + }, + "gasIncluded": true, + "gasIncluded7702": false, + "gasSponsored": false, + "minDestTokenAmount": "1946265103278678382", + "priceData": { + "priceImpact": "0.010015481690246082", + "totalFeeAmountUsd": "0.017657968760104822", + "totalFromAmountUsd": "2.01805357258342", + "totalToAmountUsd": "1.9850911061042888" + }, + "protocols": ["uniswap"], + "requestId": "0x5dbecafcfb715518926cdde04e62bdfc9ae2b192cfa7c0529497a8c1c2cbad94", + "slippage": 2, + "srcAsset": { + "address": "0x0000000000000000000000000000000000000000", + "aggregators": [], + "assetId": "eip155:56/slip44:714", + "chainId": 56, + "coingeckoId": "binancecoin", + "decimals": 18, + "iconUrl": "https://static.cx.metamask.io/api/v2/tokenIcons/assets/eip155/56/slip44/714.png", + "metadata": {}, + "name": "Binance Coin", + "occurrences": 100, + "symbol": "BNB" + }, + "srcChainId": 56, + "srcTokenAmount": "3068764351218101", + "steps": [], + "walletAddress": "0xF25bd11C334507Fd007d584E2D0b7b2C6543f714" + }, + "slippagePercentage": 0, + "startTime": 1774458478965, + "status": { + "srcChain": { + "chainId": 56, + "txHash": "0x02b9e0af7542d82ea0709ba9e13e3067a9ce5c276e78083d6b43640ae937bec8" + }, + "status": "FAILED" + }, + "txMetaId": "2cba9e10-286d-11f1-9e22-5fbe36423c6b" + }, + "313fcfe0-28a0-11f1-a662-213b64721d37": { + "account": "0x141d32a89a1e0a5ef360034a2f60a4b917c18838", + "batchId": "0xeddfc9d2b0794bbb98b874c5ee113c7f", + "estimatedProcessingTimeInSeconds": 0, + "hasApprovalTx": true, + "isStxEnabled": true, + "location": "Main View", + "originalTransactionId": "313fcfe0-28a0-11f1-a662-213b64721d37", + "pricingData": { + "amountSent": "7.823303", + "amountSentInUsd": "7.82325587831063387451192892236524", + "quotedGasAmount": "0.000007278581254483", + "quotedGasInUsd": "0.015829524124620024968006935", + "quotedReturnInUsd": "7.74371321489885963609069801" + }, + "quote": { + "aggregator": "pancakeswap", + "aggregatorType": "AGG", + "bridgeId": "pancakeswap", + "bridges": ["pancakeswap"], + "destAsset": { + "address": "0x0000000000000000000000000000000000000000", + "aggregators": [], + "assetId": "eip155:8453/slip44:60", + "chainId": 8453, + "coingeckoId": "ethereum", + "decimals": 18, + "iconUrl": "https://static.cx.metamask.io/api/v2/tokenIcons/assets/eip155/8453/slip44/60.png", + "metadata": {}, + "name": "Ether", + "occurrences": 100, + "symbol": "ETH" + }, + "destChainId": 8453, + "destTokenAmount": "3560640572788418", + "destWalletAddress": "0x141d32a89a1e0a5Ef360034a2f60a4B917c18838", + "feeData": { + "metabridge": { + "amount": "31477637800765", + "asset": { + "address": "0x0000000000000000000000000000000000000000", + "aggregators": [], + "assetId": "eip155:8453/slip44:60", + "chainId": 8453, + "coingeckoId": "ethereum", + "decimals": 18, + "iconUrl": "https://static.cx.metamask.io/api/v2/tokenIcons/assets/eip155/8453/slip44/60.png", + "metadata": {}, + "name": "Ether", + "occurrences": 100, + "symbol": "ETH" + }, + "baseBpsFee": 87.5, + "quoteBpsFee": 87.5 + }, + "txFee": { + "amount": "5326109498336", + "asset": { + "address": "0x0000000000000000000000000000000000000000", + "aggregators": [], + "assetId": "eip155:8453/slip44:60", + "chainId": 8453, + "coingeckoId": "ethereum", + "decimals": 18, + "iconUrl": "https://static.cx.metamask.io/api/v2/tokenIcons/assets/eip155/8453/slip44/60.png", + "metadata": {}, + "name": "Ether", + "occurrences": 100, + "symbol": "ETH" + }, + "maxFeePerGas": "6625001", + "maxPriorityFeePerGas": "1000001" + } + }, + "gasIncluded": true, + "gasIncluded7702": true, + "gasSponsored": false, + "minDestTokenAmount": "3489427761332649", + "priceData": { + "priceImpact": "0.00007697241032109974", + "totalFeeAmountUsd": "0.06843993921193528", + "totalFromAmountUsd": "7.822309440519001", + "totalToAmountUsd": "7.74168715897949" + }, + "protocols": ["pancakeswap"], + "requestId": "0x0022588301911b4b507cfbddb1d1c838a69e3c350a98aa5ee02c2678d9c7f7f8", + "slippage": 2, + "srcAsset": { + "address": "0x833589fcd6edb6e08f4c7c32d4f71b54bda02913", + "aggregators": [ + "coinGecko", + "oneInch", + "liFi", + "socket", + "rubic", + "squid", + "rango", + "sonarwatch", + "sushiSwap" + ], + "assetId": "eip155:8453/erc20:0x833589fcd6edb6e08f4c7c32d4f71b54bda02913", + "chainId": 8453, + "coingeckoId": "usd-coin", + "decimals": 6, + "iconUrl": "https://static.cx.metamask.io/api/v2/tokenIcons/assets/eip155/8453/erc20/0x833589fcd6edb6e08f4c7c32d4f71b54bda02913.png", + "metadata": { + "storage": { + "approval": 10, + "balance": 9 + } + }, + "name": "USD Coin", + "occurrences": 9, + "symbol": "USDC" + }, + "srcChainId": 8453, + "srcTokenAmount": "7823303", + "steps": [], + "walletAddress": "0x141d32a89a1e0a5Ef360034a2f60a4B917c18838" + }, + "slippagePercentage": 0, + "startTime": 1774480390970, + "status": { + "srcChain": { + "chainId": 8453, + "txHash": "0x6dc5fcccf8766db089bfd2406a427ddf23f1a76b0c3293b34165f5c6c59ba068" + }, + "status": "PENDING" + }, + "txMetaId": "313fcfe0-28a0-11f1-a662-213b64721d37" + }, + "33d619e0-23b8-11f1-b3e8-8507d9387e55": { + "account": "0x30e8ccad5a980bdf30447f8c2c48e70989d9d294", + "batchId": "0xff4ce6da56254b4d8339796dff1dd0cf", + "completionTime": 1774237800839, + "estimatedProcessingTimeInSeconds": 2, + "hasApprovalTx": true, + "isStxEnabled": true, + "location": "Main View", + "originalTransactionId": "33d619e0-23b8-11f1-b3e8-8507d9387e55", + "pricingData": { + "amountSent": "12.425413", + "amountSentInUsd": "12.4242698654225553525541371954", + "quotedGasAmount": "0.042905012955343056", + "quotedGasInUsd": "0.004044707143125762211473312", + "quotedReturnInUsd": "12.243294376963691444733955716" + }, + "quote": { + "aggregator": "relay", + "bridgeId": "relay", + "bridges": ["Relay"], + "destAsset": { + "address": "0x0000000000000000000000000000000000000000", + "aggregators": [], + "assetId": "eip155:143/slip44:268435779", + "chainId": 143, + "decimals": 18, + "iconUrl": "https://static.cx.metamask.io/api/v2/tokenIcons/assets/eip155/143/slip44/268435779.png", + "metadata": {}, + "name": "Mon", + "occurrences": 1, + "symbol": "MON" + }, + "destChainId": 143, + "destTokenAmount": "555851765574107630106", + "feeData": { + "metabridge": { + "amount": "108722", + "asset": { + "address": "0xc2132d05d31c914a87c6611c10748aeb04b58e8f", + "aggregators": [ + "quickswap", + "oneInch", + "liFi", + "socket", + "rubic", + "squid", + "rango", + "sonarwatch", + "sushiSwap" + ], + "assetId": "eip155:137/erc20:0xc2132d05d31c914a87c6611c10748aeb04b58e8f", + "chainId": 137, + "coingeckoId": "polygon-bridged-usdt-polygon", + "decimals": 6, + "iconUrl": "https://static.cx.metamask.io/api/v2/tokenIcons/assets/eip155/137/erc20/0xc2132d05d31c914a87c6611c10748aeb04b58e8f.png", + "metadata": { + "storage": { + "approval": 1, + "balance": 0 + } + }, + "name": "Tether USD", + "occurrences": 9, + "symbol": "USDT" + }, + "baseBpsFee": 87.5, + "quoteBpsFee": 87.5 + }, + "txFee": { + "amount": "9398", + "asset": { + "address": "0xc2132d05d31c914a87c6611c10748aeb04b58e8f", + "aggregators": [ + "quickswap", + "oneInch", + "liFi", + "socket", + "rubic", + "squid", + "rango", + "sonarwatch", + "sushiSwap" + ], + "assetId": "eip155:137/erc20:0xc2132d05d31c914a87c6611c10748aeb04b58e8f", + "chainId": 137, + "coingeckoId": "polygon-bridged-usdt-polygon", + "decimals": 6, + "iconUrl": "https://static.cx.metamask.io/api/v2/tokenIcons/assets/eip155/137/erc20/0xc2132d05d31c914a87c6611c10748aeb04b58e8f.png", + "metadata": { + "storage": { + "approval": 1, + "balance": 0 + } + }, + "name": "Tether USD", + "occurrences": 9, + "symbol": "USDT" + }, + "maxFeePerGas": "223435142029", + "maxPriorityFeePerGas": "110663646934" + } + }, + "gasIncluded": true, + "gasIncluded7702": true, + "minDestTokenAmount": "544734730262625472707", + "priceData": { + "priceImpact": "0.014021239243430085", + "totalFeeAmountUsd": "0.108711997576", + "totalFromAmountUsd": "12.424269862004001", + "totalToAmountUsd": "12.240800825943326" + }, + "protocols": ["Relay"], + "requestId": "0x8ff3422449046e7171e36ae397a99cb840c7118b84c8f510b938cdc522af267b", + "srcAsset": { + "address": "0xc2132d05d31c914a87c6611c10748aeb04b58e8f", + "aggregators": [ + "quickswap", + "oneInch", + "liFi", + "socket", + "rubic", + "squid", + "rango", + "sonarwatch", + "sushiSwap" + ], + "assetId": "eip155:137/erc20:0xc2132d05d31c914a87c6611c10748aeb04b58e8f", + "chainId": 137, + "coingeckoId": "polygon-bridged-usdt-polygon", + "decimals": 6, + "iconUrl": "https://static.cx.metamask.io/api/v2/tokenIcons/assets/eip155/137/erc20/0xc2132d05d31c914a87c6611c10748aeb04b58e8f.png", + "metadata": { + "storage": { + "approval": 1, + "balance": 0 + } + }, + "name": "Tether USD", + "occurrences": 9, + "symbol": "USDT" + }, + "srcChainId": 137, + "srcTokenAmount": "12307293", + "steps": [ + { + "action": "bridge", + "destAmount": "555851765574107630106", + "destAsset": { + "address": "0x0000000000000000000000000000000000000000", + "aggregators": [], + "assetId": "eip155:143/slip44:268435779", + "chainId": 143, + "decimals": 18, + "iconUrl": "https://static.cx.metamask.io/api/v2/tokenIcons/assets/eip155/143/slip44/268435779.png", + "metadata": {}, + "name": "Mon", + "occurrences": 1, + "symbol": "MON" + }, + "destChainId": 143, + "protocol": { + "name": "relay" + }, + "srcAmount": "12307293", + "srcAsset": { + "address": "0xc2132d05d31c914a87c6611c10748aeb04b58e8f", + "aggregators": [ + "quickswap", + "oneInch", + "liFi", + "socket", + "rubic", + "squid", + "rango", + "sonarwatch", + "sushiSwap" + ], + "assetId": "eip155:137/erc20:0xc2132d05d31c914a87c6611c10748aeb04b58e8f", + "chainId": 137, + "coingeckoId": "polygon-bridged-usdt-polygon", + "decimals": 6, + "iconUrl": "https://static.cx.metamask.io/api/v2/tokenIcons/assets/eip155/137/erc20/0xc2132d05d31c914a87c6611c10748aeb04b58e8f.png", + "metadata": { + "storage": { + "approval": 1, + "balance": 0 + } + }, + "name": "Tether USD", + "occurrences": 9, + "symbol": "USDT" + }, + "srcChainId": 137 + } + ] + }, + "slippagePercentage": 0, + "startTime": 1773940947456, + "status": { + "bridge": "relay", + "destChain": { + "chainId": 143, + "txHash": "0x54237b4be50a95d76b23c2ac70f447210223d6b6163a53c47853871b6d318010" + }, + "isExpectedToken": true, + "isUnrecognizedRouterAddress": false, + "srcChain": { + "chainId": 137, + "txHash": "0x41ee34e2510ab1a748457924214dd345a4b5daf50fbff0cd89520763859e0758" + }, + "status": "COMPLETE" + }, + "txMetaId": "33d619e0-23b8-11f1-b3e8-8507d9387e55" + }, + "35f3e540-23c2-11f1-bac6-05a660861774": { + "account": "0x30e8ccad5a980bdf30447f8c2c48e70989d9d294", + "batchId": "0x56126e1ee73441dcaa748e36bd097be3", + "estimatedProcessingTimeInSeconds": 0, + "hasApprovalTx": true, + "isStxEnabled": false, + "location": "Main View", + "originalTransactionId": "35f3e540-23c2-11f1-bac6-05a660861774", + "pricingData": { + "amountSent": "2.188871", + "amountSentInUsd": "2.1904523463496447020237525645", + "quotedGasAmount": "0.0976669774", + "quotedGasInUsd": "0.002162624742186703", + "quotedReturnInUsd": "2.1736291719090464479191295" + }, + "quote": { + "aggregator": "kyberswap", + "aggregatorType": "AGG", + "bridgeId": "kyberswap", + "bridges": ["kyberswap"], + "destAsset": { + "address": "0x0000000000000000000000000000000000000000", + "aggregators": [], + "assetId": "eip155:143/slip44:268435779", + "chainId": 143, + "decimals": 18, + "iconUrl": "https://static.cx.metamask.io/api/v2/tokenIcons/assets/eip155/143/slip44/268435779.png", + "metadata": {}, + "name": "Mon", + "occurrences": 1, + "symbol": "MON" + }, + "destChainId": 143, + "destTokenAmount": "98163951918059601100", + "destWalletAddress": "0x30E8ccaD5A980BDF30447f8c2C48e70989D9d294", + "feeData": { + "metabridge": { + "amount": "866516599528899379", + "asset": { + "address": "0x0000000000000000000000000000000000000000", + "aggregators": [], + "assetId": "eip155:143/slip44:268435779", + "chainId": 143, + "decimals": 18, + "iconUrl": "https://static.cx.metamask.io/api/v2/tokenIcons/assets/eip155/143/slip44/268435779.png", + "metadata": {}, + "name": "Mon", + "occurrences": 1, + "symbol": "MON" + }, + "baseBpsFee": 87.5, + "quoteBpsFee": 87.5 + } + }, + "gasIncluded": false, + "gasIncluded7702": true, + "gasSponsored": true, + "minDestTokenAmount": "96200672879698409078", + "priceData": { + "priceImpact": "-0.0008349001655638664", + "totalFeeAmountUsd": "0.019168075055522857", + "totalFromAmountUsd": "2.1888097116119996", + "totalToAmountUsd": "2.1714690741470895" + }, + "protocols": ["kyberswap"], + "requestId": "0xee3077937ecabc1c41865bbe5259bcc1f8e1f8a9e53be908253a592a12b6cdc7", + "slippage": 2, + "srcAsset": { + "address": "0x754704bc059f8c67012fed69bc8a327a5aafb603", + "aggregators": ["metamask", "liFi", "squid"], + "assetId": "eip155:143/erc20:0x754704bc059f8c67012fed69bc8a327a5aafb603", + "chainId": 143, + "decimals": 6, + "iconUrl": "https://static.cx.metamask.io/api/v2/tokenIcons/assets/eip155/143/erc20/0x754704bc059f8c67012fed69bc8a327a5aafb603.png", + "metadata": {}, + "name": "USDC", + "occurrences": 3, + "symbol": "USDC" + }, + "srcChainId": 143, + "srcTokenAmount": "2188871", + "steps": [], + "walletAddress": "0x30E8ccaD5A980BDF30447f8c2C48e70989D9d294" + }, + "slippagePercentage": 0, + "startTime": 1773945245979, + "status": { + "srcChain": { + "chainId": 143, + "txHash": "0x083e1dbda65643a58503f7b3dd7a86fa4feb305ae672d7d57ecf44b4f3841422" + }, + "status": "PENDING" + }, + "txMetaId": "35f3e540-23c2-11f1-bac6-05a660861774" + }, + "36619f30-127f-11f1-aab2-c95c44564d21": { + "account": "0x30e8ccad5a980bdf30447f8c2c48e70989d9d294", + "batchId": "0x3aa087fec9cc4db6bf4d5c327ccf7726", + "completionTime": 1772047306255, + "estimatedProcessingTimeInSeconds": 2, + "hasApprovalTx": false, + "isStxEnabled": true, + "pricingData": { + "amountSent": "20", + "amountSentInUsd": "2.33382482", + "quotedGasAmount": "0.067683310776647165", + "quotedGasInUsd": "0.007898049529515631502981765", + "quotedReturnInUsd": "2.269503486445552640252130624" + }, + "quote": { + "aggregator": "relay", + "bridgeId": "relay", + "bridges": ["Relay"], + "destAsset": { + "address": "0x0000000000000000000000000000000000000000", + "aggregators": [], + "assetId": "eip155:56/slip44:714", + "chainId": 56, + "coingeckoId": "binancecoin", + "decimals": 18, + "iconUrl": "https://static.cx.metamask.io/api/v2/tokenIcons/assets/eip155/56/slip44/714.png", + "metadata": {}, + "name": "Binance Coin", + "occurrences": 100, + "symbol": "BNB" + }, + "destChainId": 56, + "destTokenAmount": "3597671527643464", + "feeData": { + "metabridge": { + "amount": "175000000000000000", + "asset": { + "address": "0x0000000000000000000000000000000000000000", + "aggregators": [], + "assetId": "eip155:137/slip44:966", + "chainId": 137, + "coingeckoId": "matic-network", + "decimals": 18, + "iconUrl": "https://static.cx.metamask.io/api/v2/tokenIcons/assets/eip155/137/slip44/966.png", + "metadata": {}, + "name": "Polygon Ecosystem Token", + "occurrences": 100, + "symbol": "POL" + }, + "baseBpsFee": 87.5, + "quoteBpsFee": 87.5 + } + }, + "minDestTokenAmount": "3484344874522695", + "priceData": { + "priceImpact": "0.01754118057599654", + "totalFeeAmountUsd": "0.020409375", + "totalFromAmountUsd": "2.3325", + "totalToAmountUsd": "2.2715338258388065" + }, + "protocols": ["Relay"], + "requestId": "0x2baa592a1bc394b43c219389904015ea044b816e747da00a37274dcd317990cc", + "slippage": 2, + "srcAsset": { + "address": "0x0000000000000000000000000000000000000000", + "aggregators": [], + "assetId": "eip155:137/slip44:966", + "chainId": 137, + "coingeckoId": "matic-network", + "decimals": 18, + "iconUrl": "https://static.cx.metamask.io/api/v2/tokenIcons/assets/eip155/137/slip44/966.png", + "metadata": {}, + "name": "Polygon Ecosystem Token", + "occurrences": 100, + "symbol": "POL" + }, + "srcChainId": 137, + "srcTokenAmount": "19825000000000000000", + "steps": [ + { + "action": "bridge", + "destAmount": "3597671527643464", + "destAsset": { + "address": "0x0000000000000000000000000000000000000000", + "aggregators": [], + "assetId": "eip155:56/slip44:714", + "chainId": 56, + "coingeckoId": "binancecoin", + "decimals": 18, + "iconUrl": "https://static.cx.metamask.io/api/v2/tokenIcons/assets/eip155/56/slip44/714.png", + "metadata": {}, + "name": "Binance Coin", + "occurrences": 100, + "symbol": "BNB" + }, + "destChainId": 56, + "protocol": { + "name": "0x" + }, + "srcAmount": "19825000000000000000", + "srcAsset": { + "address": "0x0000000000000000000000000000000000000000", + "aggregators": [], + "assetId": "eip155:137/slip44:966", + "chainId": 137, + "coingeckoId": "matic-network", + "decimals": 18, + "iconUrl": "https://static.cx.metamask.io/api/v2/tokenIcons/assets/eip155/137/slip44/966.png", + "metadata": {}, + "name": "Polygon Ecosystem Token", + "occurrences": 100, + "symbol": "POL" + }, + "srcChainId": 137 + } + ] + }, + "slippagePercentage": 0, + "startTime": 1772047300759, + "status": { + "bridge": "relay", + "destChain": { + "chainId": 56, + "txHash": "0x68c401d15b280c5c4d653e42fe12b4ab70aeda37eab1c80e21e36edcd1a69c5f" + }, + "isExpectedToken": true, + "isUnrecognizedRouterAddress": false, + "srcChain": { + "chainId": 137, + "txHash": "0xcee7a7adbebcfb557bd5459d7a8589770e2258ad7db598a30a20f75509ac84e4" + }, + "status": "COMPLETE" + }, + "txMetaId": "36619f30-127f-11f1-aab2-c95c44564d21" + }, + "380cd3a0-127e-11f1-965c-356d45d675c3": { + "account": "0x30e8ccad5a980bdf30447f8c2c48e70989d9d294", + "approvalTxId": "38024c50-127e-11f1-965c-356d45d675c3", + "batchId": "0xf5d8abced38a4f0386168a74519abba4", + "estimatedProcessingTimeInSeconds": 0, + "hasApprovalTx": true, + "isStxEnabled": true, + "pricingData": { + "amountSent": "3.957343798884812964", + "amountSentInUsd": "3.957343798884812964", + "quotedGasAmount": "0.00002462735", + "quotedGasInUsd": "0.0155041481925", + "quotedReturnInUsd": "3.9218926463119827027" + }, + "quote": { + "aggregator": "okx", + "aggregatorType": "AGG", + "bridgeId": "okx", + "bridges": ["okx"], + "destAsset": { + "address": "0x0000000000000000000000000000000000000000", + "aggregators": [], + "assetId": "eip155:56/slip44:714", + "chainId": 56, + "coingeckoId": "binancecoin", + "decimals": 18, + "iconUrl": "https://static.cx.metamask.io/api/v2/tokenIcons/assets/eip155/56/slip44/714.png", + "metadata": {}, + "name": "Binance Coin", + "occurrences": 100, + "symbol": "BNB" + }, + "destChainId": 56, + "destTokenAmount": "6229676191425594", + "destWalletAddress": "0x30E8ccaD5A980BDF30447f8c2C48e70989D9d294", + "feeData": { + "metabridge": { + "amount": "54990836494299", + "asset": { + "address": "0x0000000000000000000000000000000000000000", + "aggregators": [], + "assetId": "eip155:56/slip44:714", + "chainId": 56, + "coingeckoId": "binancecoin", + "decimals": 18, + "iconUrl": "https://static.cx.metamask.io/api/v2/tokenIcons/assets/eip155/56/slip44/714.png", + "metadata": {}, + "name": "Binance Coin", + "occurrences": 100, + "symbol": "BNB" + }, + "baseBpsFee": 87.5, + "quoteBpsFee": 87.5 + } + }, + "gasIncluded7702": false, + "gasSponsored": false, + "minDestTokenAmount": "6105082667597082", + "priceData": { + "priceImpact": "0.00021015901071801027", + "totalFeeAmountUsd": "0.03461948111498593", + "totalFromAmountUsd": "3.957343798884813", + "totalToAmountUsd": "3.9218926463119823" + }, + "protocols": ["okx"], + "requestId": "0xcb4089350fdae8bbfedbf218a7eb114e7402d84ffcd24003aa3c01e6ee857cf2", + "slippage": 2, + "srcAsset": { + "address": "0x55d398326f99059ff775485246999027b3197955", + "aggregators": [ + "pancakeExtended", + "oneInch", + "liFi", + "socket", + "squid", + "rango", + "sonarwatch", + "sushiSwap" + ], + "assetId": "eip155:56/erc20:0x55d398326f99059ff775485246999027b3197955", + "chainId": 56, + "coingeckoId": "binance-bridged-usdt-bnb-smart-chain", + "decimals": 18, + "iconUrl": "https://static.cx.metamask.io/api/v2/tokenIcons/assets/eip155/56/erc20/0x55d398326f99059ff775485246999027b3197955.png", + "metadata": { + "storage": { + "approval": 2, + "balance": 1 + } + }, + "name": "Tether USD", + "occurrences": 8, + "symbol": "USDT" + }, + "srcChainId": 56, + "srcTokenAmount": "3957343798884812964", + "steps": [], + "walletAddress": "0x30E8ccaD5A980BDF30447f8c2C48e70989D9d294" + }, + "slippagePercentage": 0, + "startTime": 1772046873960, + "status": { + "srcChain": { + "chainId": 56 + }, + "status": "PENDING" + }, + "txMetaId": "380cd3a0-127e-11f1-965c-356d45d675c3" + }, + "38d6b6e0-39dc-11f1-bcee-3727d90ba13b": { + "account": "0x141d32a89a1e0a5ef360034a2f60a4b917c18838", + "actionId": "1776375343417.1826", + "approvalTxId": "38af31b0-39dc-11f1-bcee-3727d90ba13b", + "estimatedProcessingTimeInSeconds": 0, + "hasApprovalTx": true, + "isStxEnabled": false, + "location": "Main View", + "originalTransactionId": "38d6b6e0-39dc-11f1-bcee-3727d90ba13b", + "pricingData": { + "amountSent": "12.628434", + "amountSentInUsd": "12.626047226312450254365028670592", + "quotedGasAmount": "0.000968217311742358", + "quotedGasInUsd": "0.009363196410452116711275344", + "quotedReturnInUsd": "12.49252937256288866628076764" + }, + "quote": { + "aggregator": "kyberswap", + "aggregatorType": "AGG", + "bridgeId": "kyberswap", + "bridges": ["kyberswap"], + "destAsset": { + "address": "0x0000000000000000000000000000000000000000", + "aggregators": [], + "assetId": "eip155:43114/slip44:9005", + "chainId": 43114, + "coingeckoId": "avalanche-2", + "decimals": 18, + "iconUrl": "https://static.cx.metamask.io/api/v2/tokenIcons/assets/eip155/43114/slip44/9005.png", + "metadata": {}, + "name": "Avalanche", + "occurrences": 100, + "symbol": "AVAX" + }, + "destChainId": 43114, + "destTokenAmount": "1291811329778698605", + "destWalletAddress": "0x141d32a89a1e0a5Ef360034a2f60a4B917c18838", + "feeData": { + "metabridge": { + "amount": "110498", + "asset": { + "address": "0xb97ef9ef8734c71904d8002f8b6bc66dd9c48a6e", + "aggregators": [ + "traderJoe", + "oneInch", + "liFi", + "trustWallet", + "socket", + "rubic", + "squid", + "rango", + "sonarwatch", + "sushiSwap" + ], + "assetId": "eip155:43114/erc20:0xb97ef9ef8734c71904d8002f8b6bc66dd9c48a6e", + "chainId": 43114, + "coingeckoId": "usd-coin", + "decimals": 6, + "iconUrl": "https://static.cx.metamask.io/api/v2/tokenIcons/assets/eip155/43114/erc20/0xb97ef9ef8734c71904d8002f8b6bc66dd9c48a6e.png", + "metadata": { + "storage": { + "approval": 10, + "balance": 9 + } + }, + "name": "USD Coin", + "occurrences": 10, + "symbol": "USDC" + }, + "baseBpsFee": 87.5, + "quoteBpsFee": 87.5 + } + }, + "gasIncluded": false, + "gasIncluded7702": false, + "gasSponsored": false, + "minDestTokenAmount": "1265975103183124632", + "priceData": { + "priceImpact": "-0.0003170407718869238", + "totalFeeAmountUsd": "0.11047352132685448", + "totalFromAmountUsd": "12.625636417163879", + "totalToAmountUsd": "12.519130712741811" + }, + "protocols": ["kyberswap"], + "requestId": "0x1ce6f8ca08815a841e0e7ebb1da6584374849a173d53d530d9f91da3e3c18b8f", + "slippage": 2, + "srcAsset": { + "address": "0xb97ef9ef8734c71904d8002f8b6bc66dd9c48a6e", + "aggregators": [ + "traderJoe", + "oneInch", + "liFi", + "trustWallet", + "socket", + "rubic", + "squid", + "rango", + "sonarwatch", + "sushiSwap" + ], + "assetId": "eip155:43114/erc20:0xb97ef9ef8734c71904d8002f8b6bc66dd9c48a6e", + "chainId": 43114, + "coingeckoId": "usd-coin", + "decimals": 6, + "iconUrl": "https://static.cx.metamask.io/api/v2/tokenIcons/assets/eip155/43114/erc20/0xb97ef9ef8734c71904d8002f8b6bc66dd9c48a6e.png", + "metadata": { + "storage": { + "approval": 10, + "balance": 9 + } + }, + "name": "USD Coin", + "occurrences": 10, + "symbol": "USDC" + }, + "srcChainId": 43114, + "srcTokenAmount": "12517936", + "steps": [], + "walletAddress": "0x141d32a89a1e0a5Ef360034a2f60a4B917c18838" + }, + "slippagePercentage": 0, + "startTime": 1776375343139, + "status": { + "srcChain": { + "chainId": 43114, + "txHash": "0x48a711af5af1500af1e2fe4911c94f482fbd2003be27422c6e39a4520695924a" + }, + "status": "PENDING" + }, + "txMetaId": "38d6b6e0-39dc-11f1-bcee-3727d90ba13b" + }, + "390b9fa0-286f-11f1-9eba-5fbe36423c6b": { + "account": "0xf25bd11c334507fd007d584e2d0b7b2c6543f714", + "batchId": "0x7558dada3d594cd8850c523a0a8d2891", + "estimatedProcessingTimeInSeconds": 0, + "hasApprovalTx": false, + "isStxEnabled": false, + "location": "Main View", + "originalTransactionId": "390b9fa0-286f-11f1-9eba-5fbe36423c6b", + "pricingData": { + "amountSent": "0.002998907052279377", + "amountSentInUsd": "1.937053360000289448604611237", + "quotedGasAmount": "0.00000966405", + "quotedGasInUsd": "0.00624220097434579305", + "quotedReturnInUsd": "1.90860116351139502370515468619604334331822916" + }, + "quote": { + "aggregator": "uniswap", + "aggregatorType": "AGG", + "bridgeId": "uniswap", + "bridges": ["uniswap"], + "destAsset": { + "address": "0x55d398326f99059ff775485246999027b3197955", + "aggregators": [ + "pancakeExtended", + "oneInch", + "liFi", + "trustWallet", + "socket", + "squid", + "rango", + "sonarwatch", + "sushiSwap" + ], + "assetId": "eip155:56/erc20:0x55d398326f99059ff775485246999027b3197955", + "chainId": 56, + "coingeckoId": "binance-bridged-usdt-bnb-smart-chain", + "decimals": 18, + "iconUrl": "https://static.cx.metamask.io/api/v2/tokenIcons/assets/eip155/56/erc20/0x55d398326f99059ff775485246999027b3197955.png", + "metadata": { + "storage": { + "approval": 2, + "balance": 1 + } + }, + "name": "Tether USD", + "occurrences": 9, + "symbol": "USDT" + }, + "destChainId": 56, + "destTokenAmount": "1909139540863043806", + "destWalletAddress": "0xF25bd11C334507Fd007d584E2D0b7b2C6543f714", + "feeData": { + "metabridge": { + "amount": "26240436707444", + "asset": { + "address": "0x0000000000000000000000000000000000000000", + "aggregators": [], + "assetId": "eip155:56/slip44:714", + "chainId": 56, + "coingeckoId": "binancecoin", + "decimals": 18, + "iconUrl": "https://static.cx.metamask.io/api/v2/tokenIcons/assets/eip155/56/slip44/714.png", + "metadata": {}, + "name": "Binance Coin", + "occurrences": 100, + "symbol": "BNB" + }, + "baseBpsFee": 87.5, + "quoteBpsFee": 87.5 + }, + "txFee": { + "amount": "19796850000000", + "asset": { + "address": "0x0000000000000000000000000000000000000000", + "aggregators": [], + "assetId": "eip155:56/slip44:714", + "chainId": 56, + "coingeckoId": "binancecoin", + "decimals": 18, + "iconUrl": "https://static.cx.metamask.io/api/v2/tokenIcons/assets/eip155/56/slip44/714.png", + "metadata": {}, + "name": "Binance Coin", + "occurrences": 100, + "symbol": "BNB" + }, + "maxFeePerGas": "60000000", + "maxPriorityFeePerGas": "60000000" + } + }, + "gasIncluded": true, + "gasIncluded7702": false, + "gasSponsored": false, + "minDestTokenAmount": "1870956750045782929", + "priceData": { + "priceImpact": "0.009378922275725891", + "totalFeeAmountUsd": "0.016973626484210153", + "totalFromAmountUsd": "1.9398430267669151", + "totalToAmountUsd": "1.9089639000252845" + }, + "protocols": ["uniswap"], + "requestId": "0x64651af7272d56bde9042230f52aaaded6d1dfef37dfeef320cfb4c1e7feb899", + "slippage": 2, + "srcAsset": { + "address": "0x0000000000000000000000000000000000000000", + "aggregators": [], + "assetId": "eip155:56/slip44:714", + "chainId": 56, + "coingeckoId": "binancecoin", + "decimals": 18, + "iconUrl": "https://static.cx.metamask.io/api/v2/tokenIcons/assets/eip155/56/slip44/714.png", + "metadata": {}, + "name": "Binance Coin", + "occurrences": 100, + "symbol": "BNB" + }, + "srcChainId": 56, + "srcTokenAmount": "2952869765571933", + "steps": [], + "walletAddress": "0xF25bd11C334507Fd007d584E2D0b7b2C6543f714" + }, + "slippagePercentage": 0, + "startTime": 1774459358615, + "status": { + "srcChain": { + "chainId": 56, + "txHash": "0x866378820a2c2120ce70a2e8de356faad0238a674267f595c7bf392ef40ed21f" + }, + "status": "FAILED" + }, + "txMetaId": "390b9fa0-286f-11f1-9eba-5fbe36423c6b" + }, + "39538ad0-287f-11f1-89e3-87a6b7d6d04e": { + "account": "0xf25bd11c334507fd007d584e2d0b7b2c6543f714", + "batchId": "0xcaab6b91a0d04b93a761711525cb923f", + "estimatedProcessingTimeInSeconds": 0, + "hasApprovalTx": true, + "isStxEnabled": false, + "location": "Main View", + "originalTransactionId": "39538ad0-287f-11f1-89e3-87a6b7d6d04e", + "pricingData": { + "amountSent": "1.295511567102070542", + "amountSentInUsd": "1.29448036008664873733506160312694385002745488", + "quotedGasAmount": "0.00001213365", + "quotedGasInUsd": "0.0078333501940972209", + "quotedReturnInUsd": "1.255698030845106017081922468" + }, + "quote": { + "aggregator": "uniswap", + "aggregatorType": "AGG", + "bridgeId": "uniswap", + "bridges": ["uniswap"], + "destAsset": { + "address": "0x0000000000000000000000000000000000000000", + "aggregators": [], + "assetId": "eip155:56/slip44:714", + "chainId": 56, + "coingeckoId": "binancecoin", + "decimals": 18, + "iconUrl": "https://static.cx.metamask.io/api/v2/tokenIcons/assets/eip155/56/slip44/714.png", + "metadata": {}, + "name": "Binance Coin", + "occurrences": 100, + "symbol": "BNB" + }, + "destChainId": 56, + "destTokenAmount": "1945042674518098", + "destWalletAddress": "0xF25bd11C334507Fd007d584E2D0b7b2C6543f714", + "feeData": { + "metabridge": { + "amount": "17531185919428", + "asset": { + "address": "0x0000000000000000000000000000000000000000", + "aggregators": [], + "assetId": "eip155:56/slip44:714", + "chainId": 56, + "coingeckoId": "binancecoin", + "decimals": 18, + "iconUrl": "https://static.cx.metamask.io/api/v2/tokenIcons/assets/eip155/56/slip44/714.png", + "metadata": {}, + "name": "Binance Coin", + "occurrences": 100, + "symbol": "BNB" + }, + "baseBpsFee": 87.5, + "quoteBpsFee": 87.5 + }, + "txFee": { + "amount": "40990244640000", + "asset": { + "address": "0x0000000000000000000000000000000000000000", + "aggregators": [], + "assetId": "eip155:56/slip44:714", + "chainId": 56, + "coingeckoId": "binancecoin", + "decimals": 18, + "iconUrl": "https://static.cx.metamask.io/api/v2/tokenIcons/assets/eip155/56/slip44/714.png", + "metadata": {}, + "name": "Binance Coin", + "occurrences": 100, + "symbol": "BNB" + }, + "maxFeePerGas": "60000000", + "maxPriorityFeePerGas": "60000000" + } + }, + "gasIncluded": true, + "gasIncluded7702": true, + "gasSponsored": false, + "minDestTokenAmount": "1906141821027736", + "priceData": { + "priceImpact": "0.0005646535317956076", + "totalFeeAmountUsd": "0.011325847351387265", + "totalFromAmountUsd": "1.2951138450509703", + "totalToAmountUsd": "1.2565753694456718" + }, + "protocols": ["uniswap"], + "requestId": "0x9e5e88da244add33ec7fc09b2b3028d9489c4b56abbf0483e210dc1683317438", + "slippage": 2, + "srcAsset": { + "address": "0x55d398326f99059ff775485246999027b3197955", + "aggregators": [ + "pancakeExtended", + "oneInch", + "liFi", + "trustWallet", + "socket", + "rubic", + "squid", + "rango", + "sonarwatch", + "sushiSwap" + ], + "assetId": "eip155:56/erc20:0x55d398326f99059ff775485246999027b3197955", + "chainId": 56, + "coingeckoId": "binance-bridged-usdt-bnb-smart-chain", + "decimals": 18, + "iconUrl": "https://static.cx.metamask.io/api/v2/tokenIcons/assets/eip155/56/erc20/0x55d398326f99059ff775485246999027b3197955.png", + "metadata": { + "storage": { + "approval": 2, + "balance": 1 + } + }, + "name": "Tether USD", + "occurrences": 11, + "symbol": "USDT" + }, + "srcChainId": 56, + "srcTokenAmount": "1295511567102070542", + "steps": [], + "walletAddress": "0xF25bd11C334507Fd007d584E2D0b7b2C6543f714" + }, + "slippagePercentage": 0, + "startTime": 1774466231103, + "status": { + "srcChain": { + "chainId": 56, + "txHash": "0xc7fadcce34c2d79c90557ed9ab7124db9baa38579228a946144a7b8fa05de01a" + }, + "status": "PENDING" + }, + "txMetaId": "39538ad0-287f-11f1-89e3-87a6b7d6d04e" + }, + "3b5d0fd0-17ff-11f1-b7d6-03d70bc40886": { + "account": "0x30e8ccad5a980bdf30447f8c2c48e70989d9d294", + "estimatedProcessingTimeInSeconds": 0, + "hasApprovalTx": false, + "isStxEnabled": false, + "pricingData": { + "amountSent": "0.008412536607579575", + "amountSentInUsd": "5.582091674581504127691496875", + "quotedGasAmount": "0.00001049115", + "quotedGasInUsd": "0.00696134398024749375", + "quotedReturnInUsd": "5.53357689031261578546599107833730561380741" + }, + "quote": { + "aggregator": "pancakeswap", + "aggregatorType": "AGG", + "bridgeId": "pancakeswap", + "bridges": ["pancakeswap"], + "destAsset": { + "address": "0x55d398326f99059ff775485246999027b3197955", + "aggregators": [ + "pancakeExtended", + "oneInch", + "liFi", + "socket", + "squid", + "rango", + "sonarwatch", + "sushiSwap" + ], + "assetId": "eip155:56/erc20:0x55d398326f99059ff775485246999027b3197955", + "chainId": 56, + "coingeckoId": "binance-bridged-usdt-bnb-smart-chain", + "decimals": 18, + "iconUrl": "https://static.cx.metamask.io/api/v2/tokenIcons/assets/eip155/56/erc20/0x55d398326f99059ff775485246999027b3197955.png", + "metadata": { + "storage": { + "approval": 2, + "balance": 1 + } + }, + "name": "Tether USD", + "occurrences": 8, + "symbol": "USDT" + }, + "destChainId": 56, + "destTokenAmount": "5534838833565955236", + "destWalletAddress": "0x30E8ccaD5A980BDF30447f8c2C48e70989D9d294", + "feeData": { + "metabridge": { + "amount": "73609695316321", + "asset": { + "address": "0x0000000000000000000000000000000000000000", + "aggregators": [], + "assetId": "eip155:56/slip44:714", + "chainId": 56, + "coingeckoId": "binancecoin", + "decimals": 18, + "iconUrl": "https://static.cx.metamask.io/api/v2/tokenIcons/assets/eip155/56/slip44/714.png", + "metadata": {}, + "name": "Binance Coin", + "occurrences": 100, + "symbol": "BNB" + }, + "baseBpsFee": 87.5, + "quoteBpsFee": 87.5 + }, + "txFee": { + "amount": "24790950000000", + "asset": { + "address": "0x0000000000000000000000000000000000000000", + "aggregators": [], + "assetId": "eip155:56/slip44:714", + "chainId": 56, + "coingeckoId": "binancecoin", + "decimals": 18, + "iconUrl": "https://static.cx.metamask.io/api/v2/tokenIcons/assets/eip155/56/slip44/714.png", + "metadata": {}, + "name": "Binance Coin", + "occurrences": 100, + "symbol": "BNB" + }, + "maxFeePerGas": "60000000", + "maxPriorityFeePerGas": "60000000" + } + }, + "gasIncluded": true, + "gasIncluded7702": false, + "minDestTokenAmount": "5424142056894636131", + "priceData": { + "priceImpact": "-0.002707655976241213", + "totalFeeAmountUsd": "0.04886947672050551", + "totalFromAmountUsd": "5.58508305377208", + "totalToAmountUsd": "5.534700462595116" + }, + "protocols": ["pancakeswap"], + "requestId": "0x6bbcb418b85bb9b135da305f866edf3e19302b598006e30445a915428712427a", + "srcAsset": { + "address": "0x0000000000000000000000000000000000000000", + "aggregators": [], + "assetId": "eip155:56/slip44:714", + "chainId": 56, + "coingeckoId": "binancecoin", + "decimals": 18, + "iconUrl": "https://static.cx.metamask.io/api/v2/tokenIcons/assets/eip155/56/slip44/714.png", + "metadata": {}, + "name": "Binance Coin", + "occurrences": 100, + "symbol": "BNB" + }, + "srcChainId": 56, + "srcTokenAmount": "8314135962263254", + "steps": [], + "walletAddress": "0x30E8ccaD5A980BDF30447f8c2C48e70989D9d294" + }, + "slippagePercentage": 0, + "startTime": 1772652040521, + "status": { + "srcChain": { + "chainId": 56, + "txHash": "0x77d1a7c60c1d48c7b0dd2c5ddb287e0a6ab58eab88bc0c7c03436c91748defc9" + }, + "status": "PENDING" + }, + "txMetaId": "3b5d0fd0-17ff-11f1-b7d6-03d70bc40886" + }, + "3bf27770-2865-11f1-9be8-5fbe36423c6b": { + "account": "0xf25bd11c334507fd007d584e2d0b7b2c6543f714", + "batchId": "0x3fb3b63da84e47348cc493388e2ed229", + "estimatedProcessingTimeInSeconds": 0, + "hasApprovalTx": false, + "isStxEnabled": false, + "location": "Main View", + "originalTransactionId": "3bf27770-2865-11f1-9be8-5fbe36423c6b", + "pricingData": { + "amountSent": "0.003119325498328475", + "amountSentInUsd": "2.01407550263534505915627805", + "quotedGasAmount": "0.00001250665", + "quotedGasInUsd": "0.0080752513319088767", + "quotedReturnInUsd": "1.98200583481205538770013087725642045607718912" + }, + "quote": { + "aggregator": "1inch", + "aggregatorType": "AGG", + "bridgeId": "1inch", + "bridges": ["1inch"], + "destAsset": { + "address": "0x55d398326f99059ff775485246999027b3197955", + "aggregators": [ + "pancakeExtended", + "oneInch", + "liFi", + "trustWallet", + "socket", + "squid", + "rango", + "sonarwatch", + "sushiSwap" + ], + "assetId": "eip155:56/erc20:0x55d398326f99059ff775485246999027b3197955", + "chainId": 56, + "coingeckoId": "binance-bridged-usdt-bnb-smart-chain", + "decimals": 18, + "iconUrl": "https://static.cx.metamask.io/api/v2/tokenIcons/assets/eip155/56/erc20/0x55d398326f99059ff775485246999027b3197955.png", + "metadata": { + "storage": { + "approval": 2, + "balance": 1 + } + }, + "name": "Tether USD", + "occurrences": 9, + "symbol": "USDT" + }, + "destChainId": 56, + "destTokenAmount": "1982592682246682624", + "destWalletAddress": "0xF25bd11C334507Fd007d584E2D0b7b2C6543f714", + "feeData": { + "metabridge": { + "amount": "27294098110374", + "asset": { + "address": "0x0000000000000000000000000000000000000000", + "aggregators": [], + "assetId": "eip155:56/slip44:714", + "chainId": 56, + "coingeckoId": "binancecoin", + "decimals": 18, + "iconUrl": "https://static.cx.metamask.io/api/v2/tokenIcons/assets/eip155/56/slip44/714.png", + "metadata": {}, + "name": "Binance Coin", + "occurrences": 100, + "symbol": "BNB" + }, + "baseBpsFee": 87.5, + "quoteBpsFee": 87.5 + }, + "txFee": { + "amount": "27237780000000", + "asset": { + "address": "0x0000000000000000000000000000000000000000", + "aggregators": [], + "assetId": "eip155:56/slip44:714", + "chainId": 56, + "coingeckoId": "binancecoin", + "decimals": 18, + "iconUrl": "https://static.cx.metamask.io/api/v2/tokenIcons/assets/eip155/56/slip44/714.png", + "metadata": {}, + "name": "Binance Coin", + "occurrences": 100, + "symbol": "BNB" + }, + "maxFeePerGas": "60000000", + "maxPriorityFeePerGas": "60000000" + } + }, + "gasIncluded": true, + "gasIncluded7702": false, + "gasSponsored": false, + "minDestTokenAmount": "1942940828601748971", + "priceData": { + "priceImpact": "0.007284589645075723", + "totalFeeAmountUsd": "0.017625163854774008", + "totalFromAmountUsd": "2.0143044405456125", + "totalToAmountUsd": "1.982170390005364" + }, + "protocols": ["1inch"], + "requestId": "0x3fafdd10477e038982216dd6730d10572aa290493fef543178e79fed9e64f94a", + "slippage": 2, + "srcAsset": { + "address": "0x0000000000000000000000000000000000000000", + "aggregators": [], + "assetId": "eip155:56/slip44:714", + "chainId": 56, + "coingeckoId": "binancecoin", + "decimals": 18, + "iconUrl": "https://static.cx.metamask.io/api/v2/tokenIcons/assets/eip155/56/slip44/714.png", + "metadata": {}, + "name": "Binance Coin", + "occurrences": 100, + "symbol": "BNB" + }, + "srcChainId": 56, + "srcTokenAmount": "3064793620218101", + "steps": [], + "walletAddress": "0xF25bd11C334507Fd007d584E2D0b7b2C6543f714" + }, + "slippagePercentage": 0, + "startTime": 1774455068560, + "status": { + "srcChain": { + "chainId": 56, + "txHash": "0xed393847afe485dbf8427e91376060279bc2cbf3983da8ec0522b50aecb841dd" + }, + "status": "FAILED" + }, + "txMetaId": "3bf27770-2865-11f1-9be8-5fbe36423c6b" + }, + "3ce48380-39c7-11f1-a1dd-3727d90ba13b": { + "account": "0x141d32a89a1e0a5ef360034a2f60a4b917c18838", + "batchId": "0x9b387d273e404320bf046b7b63dceaa4", + "completionTime": 1776366351186, + "estimatedProcessingTimeInSeconds": 6, + "hasApprovalTx": true, + "isStxEnabled": true, + "location": "Main View", + "originalTransactionId": "3ce48380-39c7-11f1-a1dd-3727d90ba13b", + "pricingData": { + "amountSent": "23.534907", + "amountSentInUsd": "23.533753789557691826436303973472304", + "quotedGasAmount": "0.000003644315356166", + "quotedGasInUsd": "0.008543464466790573290461216", + "quotedReturnInUsd": "23.2836811005227695149843124" + }, + "quote": { + "aggregator": "relay", + "bridgeId": "relay", + "bridges": ["Relay"], + "destAsset": { + "address": "0x0000000000000000000000000000000000000000", + "aggregators": [], + "assetId": "eip155:1/slip44:60", + "chainId": 1, + "coingeckoId": "ethereum", + "decimals": 18, + "iconUrl": "https://static.cx.metamask.io/api/v2/tokenIcons/assets/eip155/1/slip44/60.png", + "metadata": {}, + "name": "Ether", + "occurrences": 100, + "symbol": "ETH" + }, + "destChainId": 1, + "destTokenAmount": "9931928307601775", + "feeData": { + "metabridge": { + "amount": "205930", + "asset": { + "address": "0x833589fcd6edb6e08f4c7c32d4f71b54bda02913", + "aggregators": [ + "coinGecko", + "oneInch", + "liFi", + "socket", + "rubic", + "squid", + "rango", + "sonarwatch", + "sushiSwap" + ], + "assetId": "eip155:8453/erc20:0x833589fcd6edb6e08f4c7c32d4f71b54bda02913", + "chainId": 8453, + "coingeckoId": "usd-coin", + "decimals": 6, + "iconUrl": "https://static.cx.metamask.io/api/v2/tokenIcons/assets/eip155/8453/erc20/0x833589fcd6edb6e08f4c7c32d4f71b54bda02913.png", + "metadata": { + "storage": { + "approval": 10, + "balance": 9 + } + }, + "name": "USD Coin", + "occurrences": 8, + "symbol": "USDC" + }, + "baseBpsFee": 87.5, + "quoteBpsFee": 87.5 + }, + "txFee": { + "amount": "9565", + "asset": { + "address": "0x833589fcd6edb6e08f4c7c32d4f71b54bda02913", + "aggregators": [ + "coinGecko", + "oneInch", + "liFi", + "socket", + "rubic", + "squid", + "rango", + "sonarwatch", + "sushiSwap" + ], + "assetId": "eip155:8453/erc20:0x833589fcd6edb6e08f4c7c32d4f71b54bda02913", + "chainId": 8453, + "coingeckoId": "usd-coin", + "decimals": 6, + "iconUrl": "https://static.cx.metamask.io/api/v2/tokenIcons/assets/eip155/8453/erc20/0x833589fcd6edb6e08f4c7c32d4f71b54bda02913.png", + "metadata": { + "storage": { + "approval": 10, + "balance": 9 + } + }, + "name": "USD Coin", + "occurrences": 8, + "symbol": "USDC" + }, + "maxFeePerGas": "9009036", + "maxPriorityFeePerGas": "1000004" + } + }, + "gasIncluded": true, + "gasIncluded7702": true, + "minDestTokenAmount": "9733289741449740", + "priceData": { + "priceImpact": "0.010266746069918082", + "totalFeeAmountUsd": "0.20592795773287953", + "totalFromAmountUsd": "23.534673597548927", + "totalToAmountUsd": "23.28358237519561" + }, + "protocols": ["Relay"], + "requestId": "0xdf9f2e0fc3d02d199eb1671ff615c7708d7915c3005bd3bfeb01999677d722d6", + "srcAsset": { + "address": "0x833589fcd6edb6e08f4c7c32d4f71b54bda02913", + "aggregators": [ + "coinGecko", + "oneInch", + "liFi", + "socket", + "rubic", + "squid", + "rango", + "sonarwatch", + "sushiSwap" + ], + "assetId": "eip155:8453/erc20:0x833589fcd6edb6e08f4c7c32d4f71b54bda02913", + "chainId": 8453, + "coingeckoId": "usd-coin", + "decimals": 6, + "iconUrl": "https://static.cx.metamask.io/api/v2/tokenIcons/assets/eip155/8453/erc20/0x833589fcd6edb6e08f4c7c32d4f71b54bda02913.png", + "metadata": { + "storage": { + "approval": 10, + "balance": 9 + } + }, + "name": "USD Coin", + "occurrences": 8, + "symbol": "USDC" + }, + "srcChainId": 8453, + "srcTokenAmount": "23319412", + "steps": [ + { + "action": "bridge", + "destAmount": "9931928307601775", + "destAsset": { + "address": "0x0000000000000000000000000000000000000000", + "aggregators": [], + "assetId": "eip155:1/slip44:60", + "chainId": 1, + "coingeckoId": "ethereum", + "decimals": 18, + "iconUrl": "https://static.cx.metamask.io/api/v2/tokenIcons/assets/eip155/1/slip44/60.png", + "metadata": {}, + "name": "Ether", + "occurrences": 100, + "symbol": "ETH" + }, + "destChainId": 1, + "protocol": { + "name": "relay" + }, + "srcAmount": "23319412", + "srcAsset": { + "address": "0x833589fcd6edb6e08f4c7c32d4f71b54bda02913", + "aggregators": [ + "coinGecko", + "oneInch", + "liFi", + "socket", + "rubic", + "squid", + "rango", + "sonarwatch", + "sushiSwap" + ], + "assetId": "eip155:8453/erc20:0x833589fcd6edb6e08f4c7c32d4f71b54bda02913", + "chainId": 8453, + "coingeckoId": "usd-coin", + "decimals": 6, + "iconUrl": "https://static.cx.metamask.io/api/v2/tokenIcons/assets/eip155/8453/erc20/0x833589fcd6edb6e08f4c7c32d4f71b54bda02913.png", + "metadata": { + "storage": { + "approval": 10, + "balance": 9 + } + }, + "name": "USD Coin", + "occurrences": 8, + "symbol": "USDC" + }, + "srcChainId": 8453 + } + ] + }, + "slippagePercentage": 0, + "startTime": 1776366330685, + "status": { + "bridge": "relay", + "destChain": { + "chainId": 1, + "txHash": "0xbf006ccfc6f025cae589ef2f549bce8576f14ec9572b868ec12aea5c223ba5ab" + }, + "isExpectedToken": true, + "isUnrecognizedRouterAddress": false, + "srcChain": { + "chainId": 8453, + "txHash": "0x3ed8255b9d59dc494570ba5cb2cfba5f219ad0813df9905557398e44561676df" + }, + "status": "COMPLETE" + }, + "txMetaId": "3ce48380-39c7-11f1-a1dd-3727d90ba13b" + }, + "3e4fa6b0-2878-11f1-81ec-1be6bb170c07": { + "account": "0xf25bd11c334507fd007d584e2d0b7b2c6543f714", + "batchId": "0xa59cf2dc37114e7a90a5c1480753e49a", + "estimatedProcessingTimeInSeconds": 0, + "hasApprovalTx": true, + "isStxEnabled": false, + "location": "Main View", + "originalTransactionId": "3e4fa6b0-2878-11f1-81ec-1be6bb170c07", + "pricingData": { + "amountSent": "1.630904608557831471", + "amountSentInUsd": "1.63233892608066873135135686003818988212049832", + "quotedGasAmount": "0.0000145921", + "quotedGasInUsd": "0.0094229323501138888", + "quotedReturnInUsd": "1.580432596728253966441676864" + }, + "quote": { + "aggregator": "0x", + "aggregatorType": "AGG", + "bridgeId": "0x", + "bridges": ["0x"], + "destAsset": { + "address": "0x0000000000000000000000000000000000000000", + "aggregators": [], + "assetId": "eip155:56/slip44:714", + "chainId": 56, + "coingeckoId": "binancecoin", + "decimals": 18, + "iconUrl": "https://static.cx.metamask.io/api/v2/tokenIcons/assets/eip155/56/slip44/714.png", + "metadata": {}, + "name": "Binance Coin", + "occurrences": 100, + "symbol": "BNB" + }, + "destChainId": 56, + "destTokenAmount": "2447415479369288", + "destWalletAddress": "0xF25bd11C334507Fd007d584E2D0b7b2C6543f714", + "feeData": { + "metabridge": { + "amount": "22088364496324", + "asset": { + "address": "0x0000000000000000000000000000000000000000", + "aggregators": [], + "assetId": "eip155:56/slip44:714", + "chainId": 56, + "coingeckoId": "binancecoin", + "decimals": 18, + "iconUrl": "https://static.cx.metamask.io/api/v2/tokenIcons/assets/eip155/56/slip44/714.png", + "metadata": {}, + "name": "Binance Coin", + "occurrences": 100, + "symbol": "BNB" + }, + "baseBpsFee": 87.5, + "quoteBpsFee": 87.5 + }, + "txFee": { + "amount": "54880670000000", + "asset": { + "address": "0x0000000000000000000000000000000000000000", + "aggregators": [], + "assetId": "eip155:56/slip44:714", + "chainId": 56, + "coingeckoId": "binancecoin", + "decimals": 18, + "iconUrl": "https://static.cx.metamask.io/api/v2/tokenIcons/assets/eip155/56/slip44/714.png", + "metadata": {}, + "name": "Binance Coin", + "occurrences": 100, + "symbol": "BNB" + }, + "maxFeePerGas": "65000000", + "maxPriorityFeePerGas": "65000000" + } + }, + "gasIncluded": true, + "gasIncluded7702": true, + "gasSponsored": false, + "minDestTokenAmount": "2398467169781902", + "priceData": { + "priceImpact": "0.0005489657632167822", + "totalFeeAmountUsd": "0.01425870193331203", + "totalFromAmountUsd": "1.6304610025043036", + "totalToAmountUsd": "1.5798801143972563" + }, + "protocols": ["0x"], + "requestId": "0xa83497984183c6e52ea2aa5549b07f574f4e26c91e0a89352875f55ed51f0bbf", + "slippage": 2, + "srcAsset": { + "address": "0x55d398326f99059ff775485246999027b3197955", + "aggregators": [ + "pancakeExtended", + "oneInch", + "liFi", + "trustWallet", + "socket", + "rubic", + "squid", + "rango", + "sonarwatch", + "sushiSwap" + ], + "assetId": "eip155:56/erc20:0x55d398326f99059ff775485246999027b3197955", + "chainId": 56, + "coingeckoId": "binance-bridged-usdt-bnb-smart-chain", + "decimals": 18, + "iconUrl": "https://static.cx.metamask.io/api/v2/tokenIcons/assets/eip155/56/erc20/0x55d398326f99059ff775485246999027b3197955.png", + "metadata": { + "storage": { + "approval": 2, + "balance": 1 + } + }, + "name": "Tether USD", + "occurrences": 11, + "symbol": "USDT" + }, + "srcChainId": 56, + "srcTokenAmount": "1630904608557831471", + "steps": [], + "walletAddress": "0xF25bd11C334507Fd007d584E2D0b7b2C6543f714" + }, + "slippagePercentage": 0, + "startTime": 1774463233041, + "status": { + "srcChain": { + "chainId": 56, + "txHash": "0xf3b8df0758a0d4e5a3cc181e4d3074108253688a69428bcfd76e9cc4d31f9e70" + }, + "status": "PENDING" + }, + "txMetaId": "3e4fa6b0-2878-11f1-81ec-1be6bb170c07" + }, + "3ff82690-127f-11f1-ab0a-c95c44564d21": { + "account": "0x30e8ccad5a980bdf30447f8c2c48e70989d9d294", + "batchId": "0xe8c2cc8661bf4ac599e83b6e6eb7dbd6", + "estimatedProcessingTimeInSeconds": 0, + "hasApprovalTx": false, + "isStxEnabled": true, + "pricingData": { + "amountSent": "0.005", + "amountSentInUsd": "3.15412825908", + "quotedGasAmount": "0.00001166315", + "quotedGasInUsd": "0.0073574142009777804", + "quotedReturnInUsd": "3.12663456480488119804725950223261233978247408" + }, + "quote": { + "aggregator": "1inch", + "aggregatorType": "AGG", + "bridgeId": "1inch", + "bridges": ["1inch"], + "destAsset": { + "address": "0x55d398326f99059ff775485246999027b3197955", + "aggregators": [ + "pancakeExtended", + "oneInch", + "liFi", + "socket", + "squid", + "rango", + "sonarwatch", + "sushiSwap" + ], + "assetId": "eip155:56/erc20:0x55d398326f99059ff775485246999027b3197955", + "chainId": 56, + "coingeckoId": "binance-bridged-usdt-bnb-smart-chain", + "decimals": 18, + "iconUrl": "https://static.cx.metamask.io/api/v2/tokenIcons/assets/eip155/56/erc20/0x55d398326f99059ff775485246999027b3197955.png", + "metadata": { + "storage": { + "approval": 2, + "balance": 1 + } + }, + "name": "Tether USD", + "occurrences": 8, + "symbol": "USDT" + }, + "destChainId": 56, + "destTokenAmount": "3126934172472504919", + "destWalletAddress": "0x30E8ccaD5A980BDF30447f8c2C48e70989D9d294", + "feeData": { + "metabridge": { + "amount": "43750000000000", + "asset": { + "address": "0x0000000000000000000000000000000000000000", + "aggregators": [], + "assetId": "eip155:56/slip44:714", + "chainId": 56, + "coingeckoId": "binancecoin", + "decimals": 18, + "iconUrl": "https://static.cx.metamask.io/api/v2/tokenIcons/assets/eip155/56/slip44/714.png", + "metadata": {}, + "name": "Binance Coin", + "occurrences": 100, + "symbol": "BNB" + }, + "baseBpsFee": 87.5, + "quoteBpsFee": 87.5 + } + }, + "gasIncluded7702": false, + "gasSponsored": false, + "minDestTokenAmount": "3064395489023054820", + "priceData": { + "priceImpact": "-0.0001383487118785988", + "totalFeeAmountUsd": "0.027598375", + "totalFromAmountUsd": "3.1541", + "totalToAmountUsd": "3.126934172472505" + }, + "protocols": ["1inch"], + "requestId": "0xbc137912b79fe09a935eb3dea0bd8ef8ac88c4ad34cc47c7baea1bbbe31e004b", + "slippage": 2, + "srcAsset": { + "address": "0x0000000000000000000000000000000000000000", + "aggregators": [], + "assetId": "eip155:56/slip44:714", + "chainId": 56, + "coingeckoId": "binancecoin", + "decimals": 18, + "iconUrl": "https://static.cx.metamask.io/api/v2/tokenIcons/assets/eip155/56/slip44/714.png", + "metadata": {}, + "name": "Binance Coin", + "occurrences": 100, + "symbol": "BNB" + }, + "srcChainId": 56, + "srcTokenAmount": "4956250000000000", + "steps": [], + "walletAddress": "0x30E8ccaD5A980BDF30447f8c2C48e70989D9d294" + }, + "slippagePercentage": 0, + "startTime": 1772047316851, + "status": { + "srcChain": { + "chainId": 56 + }, + "status": "PENDING" + }, + "txMetaId": "3ff82690-127f-11f1-ab0a-c95c44564d21" + }, + "44485a40-1d69-11f1-9d96-3b0a0edc0d9a": { + "account": "0x30e8ccad5a980bdf30447f8c2c48e70989d9d294", + "batchId": "0x0e1065d737cf4d119eaedf5fafbccb45", + "estimatedProcessingTimeInSeconds": 0, + "hasApprovalTx": false, + "isStxEnabled": true, + "location": "Main View", + "originalTransactionId": "44485a40-1d69-11f1-9d96-3b0a0edc0d9a", + "pricingData": { + "amountSent": "0.001", + "amountSentInUsd": "0.648827873534", + "quotedGasAmount": "0.0000089423", + "quotedGasInUsd": "0.0058020134935030882", + "quotedReturnInUsd": "0.6443334572841184568616906172233721681080636" + }, + "quote": { + "aggregator": "uniswap", + "aggregatorType": "AGG", + "bridgeId": "uniswap", + "bridges": ["uniswap"], + "destAsset": { + "address": "0x55d398326f99059ff775485246999027b3197955", + "aggregators": [ + "pancakeExtended", + "oneInch", + "liFi", + "socket", + "rubic", + "squid", + "rango", + "sonarwatch", + "sushiSwap" + ], + "assetId": "eip155:56/erc20:0x55d398326f99059ff775485246999027b3197955", + "chainId": 56, + "coingeckoId": "binance-bridged-usdt-bnb-smart-chain", + "decimals": 18, + "iconUrl": "https://static.cx.metamask.io/api/v2/tokenIcons/assets/eip155/56/erc20/0x55d398326f99059ff775485246999027b3197955.png", + "metadata": { + "storage": { + "approval": 2, + "balance": 1 + } + }, + "name": "Tether USD", + "occurrences": 11, + "symbol": "USDT" + }, + "destChainId": 56, + "destTokenAmount": "643051937415596895", + "destWalletAddress": "0x30E8ccaD5A980BDF30447f8c2C48e70989D9d294", + "feeData": { + "metabridge": { + "amount": "8750000000000", + "asset": { + "address": "0x0000000000000000000000000000000000000000", + "aggregators": [], + "assetId": "eip155:56/slip44:714", + "chainId": 56, + "coingeckoId": "binancecoin", + "decimals": 18, + "iconUrl": "https://static.cx.metamask.io/api/v2/tokenIcons/assets/eip155/56/slip44/714.png", + "metadata": {}, + "name": "Binance Coin", + "occurrences": 100, + "symbol": "BNB" + }, + "baseBpsFee": 87.5, + "quoteBpsFee": 87.5 + } + }, + "gasIncluded": false, + "gasIncluded7702": false, + "gasSponsored": false, + "minDestTokenAmount": "630190898667284957", + "priceData": { + "priceImpact": "0.0001994277768846425", + "totalFeeAmountUsd": "0.005676562499999999", + "totalFromAmountUsd": "0.64875", + "totalToAmountUsd": "0.6429451907939858" + }, + "protocols": ["uniswap"], + "requestId": "0x831944a9be553e5ad96d2b3468017d85ef475c68c15c354c306ce50dc7319e7b", + "slippage": 2, + "srcAsset": { + "address": "0x0000000000000000000000000000000000000000", + "aggregators": [], + "assetId": "eip155:56/slip44:714", + "chainId": 56, + "coingeckoId": "binancecoin", + "decimals": 18, + "iconUrl": "https://static.cx.metamask.io/api/v2/tokenIcons/assets/eip155/56/slip44/714.png", + "metadata": {}, + "name": "Binance Coin", + "occurrences": 100, + "symbol": "BNB" + }, + "srcChainId": 56, + "srcTokenAmount": "991250000000000", + "steps": [], + "walletAddress": "0x30E8ccaD5A980BDF30447f8c2C48e70989D9d294" + }, + "slippagePercentage": 0, + "startTime": 1773247337833, + "status": { + "srcChain": { + "chainId": 56 + }, + "status": "PENDING" + }, + "txMetaId": "44485a40-1d69-11f1-9d96-3b0a0edc0d9a" + }, + "47870750-1d65-11f1-9bb1-3b0a0edc0d9a": { + "account": "0xf25bd11c334507fd007d584e2d0b7b2c6543f714", + "batchId": "0xd0911c792f43496eb0ed7f82f2c3f688", + "estimatedProcessingTimeInSeconds": 0, + "hasApprovalTx": false, + "isStxEnabled": true, + "location": "Main View", + "originalTransactionId": "47870750-1d65-11f1-9bb1-3b0a0edc0d9a", + "pricingData": { + "amountSent": "0.000040474389014254", + "amountSentInUsd": "0.026176159317304733410295414", + "quotedGasAmount": "0.000010852", + "quotedGasInUsd": "0.007018356245262932", + "quotedReturnInUsd": "0.01018708146279741833535620018397210555079356" + }, + "quote": { + "aggregator": "pancakeswap", + "aggregatorType": "AGG", + "bridgeId": "pancakeswap", + "bridges": ["pancakeswap"], + "destAsset": { + "address": "0x55d398326f99059ff775485246999027b3197955", + "aggregators": [ + "pancakeExtended", + "oneInch", + "liFi", + "socket", + "rubic", + "squid", + "rango", + "sonarwatch", + "sushiSwap" + ], + "assetId": "eip155:56/erc20:0x55d398326f99059ff775485246999027b3197955", + "chainId": 56, + "coingeckoId": "binance-bridged-usdt-bnb-smart-chain", + "decimals": 18, + "iconUrl": "https://static.cx.metamask.io/api/v2/tokenIcons/assets/eip155/56/erc20/0x55d398326f99059ff775485246999027b3197955.png", + "metadata": { + "storage": { + "approval": 2, + "balance": 1 + } + }, + "name": "Tether USD", + "occurrences": 11, + "symbol": "USDT" + }, + "destChainId": 56, + "destTokenAmount": "10187326439093364", + "destWalletAddress": "0xF25bd11C334507Fd007d584E2D0b7b2C6543f714", + "feeData": { + "metabridge": { + "amount": "354150903874", + "asset": { + "address": "0x0000000000000000000000000000000000000000", + "aggregators": [], + "assetId": "eip155:56/slip44:714", + "chainId": 56, + "coingeckoId": "binancecoin", + "decimals": 18, + "iconUrl": "https://static.cx.metamask.io/api/v2/tokenIcons/assets/eip155/56/slip44/714.png", + "metadata": {}, + "name": "Binance Coin", + "occurrences": 100, + "symbol": "BNB" + }, + "baseBpsFee": 87.5 + }, + "txFee": { + "amount": "24370200000000", + "asset": { + "address": "0x0000000000000000000000000000000000000000", + "aggregators": [], + "assetId": "eip155:56/slip44:714", + "chainId": 56, + "coingeckoId": "binancecoin", + "decimals": 18, + "iconUrl": "https://static.cx.metamask.io/api/v2/tokenIcons/assets/eip155/56/slip44/714.png", + "metadata": {}, + "name": "Binance Coin", + "occurrences": 100, + "symbol": "BNB" + }, + "maxFeePerGas": "60000000", + "maxPriorityFeePerGas": "60000000" + } + }, + "gasIncluded": true, + "gasIncluded7702": false, + "gasSponsored": false, + "minDestTokenAmount": "9983579910311496", + "priceData": { + "priceImpact": "0.6070446473367387", + "totalFeeAmountUsd": "0.00022884523106530131", + "totalFromAmountUsd": "0.026153740693230648", + "totalToAmountUsd": "0.010187326439093364" + }, + "protocols": ["pancakeswap"], + "requestId": "0x09b70608035ed3dd7c447a82ab279d7d78e7a5e4d7ee55fae2a43ccfa080deed", + "slippage": 2, + "srcAsset": { + "address": "0x0000000000000000000000000000000000000000", + "aggregators": [], + "assetId": "eip155:56/slip44:714", + "chainId": 56, + "coingeckoId": "binancecoin", + "decimals": 18, + "iconUrl": "https://static.cx.metamask.io/api/v2/tokenIcons/assets/eip155/56/slip44/714.png", + "metadata": {}, + "name": "Binance Coin", + "occurrences": 100, + "symbol": "BNB" + }, + "srcChainId": 56, + "srcTokenAmount": "15750038110380", + "steps": [], + "walletAddress": "0xF25bd11C334507Fd007d584E2D0b7b2C6543f714" + }, + "slippagePercentage": 0, + "startTime": 1773245625412, + "status": { + "srcChain": { + "chainId": 56 + }, + "status": "PENDING" + }, + "txMetaId": "47870750-1d65-11f1-9bb1-3b0a0edc0d9a" + }, + "493b1d60-182a-11f1-b7d6-03d70bc40886": { + "account": "0x30e8ccad5a980bdf30447f8c2c48e70989d9d294", + "approvalTxId": "48e05330-182a-11f1-b7d6-03d70bc40886", + "batchId": "0x25c43f86c74146e38d85a03a0888f637", + "estimatedProcessingTimeInSeconds": 0, + "hasApprovalTx": true, + "isStxEnabled": true, + "pricingData": { + "amountSent": "1", + "amountSentInUsd": "1.00067081101203147401595", + "quotedGasAmount": "0.072545114948331775", + "quotedGasInUsd": "0.007540566241394278023623975", + "quotedReturnInUsd": "0.989642100246917305032536936" + }, + "quote": { + "aggregator": "1inch", + "aggregatorType": "AGG", + "bridgeId": "1inch", + "bridges": ["1inch"], + "destAsset": { + "address": "0x0000000000000000000000000000000000000000", + "aggregators": [], + "assetId": "eip155:137/slip44:966", + "chainId": 137, + "coingeckoId": "matic-network", + "decimals": 18, + "iconUrl": "https://static.cx.metamask.io/api/v2/tokenIcons/assets/eip155/137/slip44/966.png", + "metadata": {}, + "name": "Polygon Ecosystem Token", + "occurrences": 100, + "symbol": "POL" + }, + "destChainId": 137, + "destTokenAmount": "9520995853866562984", + "destWalletAddress": "0x30E8ccaD5A980BDF30447f8c2C48e70989D9d294", + "feeData": { + "metabridge": { + "amount": "84044099592769156", + "asset": { + "address": "0x0000000000000000000000000000000000000000", + "aggregators": [], + "assetId": "eip155:137/slip44:966", + "chainId": 137, + "coingeckoId": "matic-network", + "decimals": 18, + "iconUrl": "https://static.cx.metamask.io/api/v2/tokenIcons/assets/eip155/137/slip44/966.png", + "metadata": {}, + "name": "Polygon Ecosystem Token", + "occurrences": 100, + "symbol": "POL" + }, + "baseBpsFee": 87.5, + "quoteBpsFee": 87.5 + } + }, + "gasIncluded7702": false, + "gasSponsored": false, + "minDestTokenAmount": "9330575936789231724", + "priceData": { + "priceImpact": "-0.0000489148237622546", + "totalFeeAmountUsd": "0.008740166137150028", + "totalFromAmountUsd": "0.9988272725", + "totalToAmountUsd": "0.9901359638228532" + }, + "protocols": ["1inch"], + "requestId": "0x649c1f456b4157ef54f8b9c7a86b3f6e79b42ecb13f7d25a4ac54c9337b173bd", + "slippage": 2, + "srcAsset": { + "address": "0xc2132d05d31c914a87c6611c10748aeb04b58e8f", + "aggregators": [ + "quickswap", + "oneInch", + "liFi", + "socket", + "squid", + "rango", + "sonarwatch", + "sushiSwap" + ], + "assetId": "eip155:137/erc20:0xc2132d05d31c914a87c6611c10748aeb04b58e8f", + "chainId": 137, + "coingeckoId": "polygon-bridged-usdt-polygon", + "decimals": 6, + "iconUrl": "https://static.cx.metamask.io/api/v2/tokenIcons/assets/eip155/137/erc20/0xc2132d05d31c914a87c6611c10748aeb04b58e8f.png", + "metadata": { + "storage": { + "approval": 1, + "balance": 0 + } + }, + "name": "Tether USD", + "occurrences": 8, + "symbol": "USDT" + }, + "srcChainId": 137, + "srcTokenAmount": "1000000", + "steps": [], + "walletAddress": "0x30E8ccaD5A980BDF30447f8c2C48e70989D9d294" + }, + "slippagePercentage": 0, + "startTime": 1772670531506, + "status": { + "srcChain": { + "chainId": 137 + }, + "status": "PENDING" + }, + "txMetaId": "493b1d60-182a-11f1-b7d6-03d70bc40886" + }, + "4942d7e0-2878-11f1-8216-1be6bb170c07": { + "account": "0xf25bd11c334507fd007d584e2d0b7b2c6543f714", + "batchId": "0x8470d2a8756b40e7a4e93bf8b5de0887", + "estimatedProcessingTimeInSeconds": 0, + "hasApprovalTx": false, + "isStxEnabled": false, + "location": "Main View", + "originalTransactionId": "4942d7e0-2878-11f1-8216-1be6bb170c07", + "pricingData": { + "amountSent": "0.002457784709369288", + "amountSentInUsd": "1.587128586531830657881676864", + "quotedGasAmount": "0.0000097986", + "quotedGasInUsd": "0.0063275022050168208", + "quotedReturnInUsd": "1.56251486732499065694562161294736891002443504" + }, + "quote": { + "aggregator": "uniswap", + "aggregatorType": "AGG", + "bridgeId": "uniswap", + "bridges": ["uniswap"], + "destAsset": { + "address": "0x55d398326f99059ff775485246999027b3197955", + "aggregators": [ + "pancakeExtended", + "oneInch", + "liFi", + "trustWallet", + "socket", + "rubic", + "squid", + "rango", + "sonarwatch", + "sushiSwap" + ], + "assetId": "eip155:56/erc20:0x55d398326f99059ff775485246999027b3197955", + "chainId": 56, + "coingeckoId": "binance-bridged-usdt-bnb-smart-chain", + "decimals": 18, + "iconUrl": "https://static.cx.metamask.io/api/v2/tokenIcons/assets/eip155/56/erc20/0x55d398326f99059ff775485246999027b3197955.png", + "metadata": { + "storage": { + "approval": 2, + "balance": 1 + } + }, + "name": "Tether USD", + "occurrences": 11, + "symbol": "USDT" + }, + "destChainId": 56, + "destTokenAmount": "1561141903403043962", + "destWalletAddress": "0xF25bd11C334507Fd007d584E2D0b7b2C6543f714", + "feeData": { + "metabridge": { + "amount": "21505616206981", + "asset": { + "address": "0x0000000000000000000000000000000000000000", + "aggregators": [], + "assetId": "eip155:56/slip44:714", + "chainId": 56, + "coingeckoId": "binancecoin", + "decimals": 18, + "iconUrl": "https://static.cx.metamask.io/api/v2/tokenIcons/assets/eip155/56/slip44/714.png", + "metadata": {}, + "name": "Binance Coin", + "occurrences": 100, + "symbol": "BNB" + }, + "baseBpsFee": 87.5, + "quoteBpsFee": 87.5 + }, + "txFee": { + "amount": "19880730000000", + "asset": { + "address": "0x0000000000000000000000000000000000000000", + "aggregators": [], + "assetId": "eip155:56/slip44:714", + "chainId": 56, + "coingeckoId": "binancecoin", + "decimals": 18, + "iconUrl": "https://static.cx.metamask.io/api/v2/tokenIcons/assets/eip155/56/slip44/714.png", + "metadata": {}, + "name": "Binance Coin", + "occurrences": 100, + "symbol": "BNB" + }, + "maxFeePerGas": "60000000", + "maxPriorityFeePerGas": "60000000" + } + }, + "gasIncluded": true, + "gasIncluded7702": false, + "gasSponsored": false, + "minDestTokenAmount": "1529919065334983082", + "priceData": { + "priceImpact": "0.008275116415453818", + "totalFeeAmountUsd": "0.013882520430092445", + "totalFromAmountUsd": "1.5865737634391563", + "totalToAmountUsd": "1.5607172728053182" + }, + "protocols": ["uniswap"], + "requestId": "0xf12c783e634b85fdd393f8bad73d6fe4a001681f1b71fea7d50fa3a17355e73e", + "slippage": 2, + "srcAsset": { + "address": "0x0000000000000000000000000000000000000000", + "aggregators": [], + "assetId": "eip155:56/slip44:714", + "chainId": 56, + "coingeckoId": "binancecoin", + "decimals": 18, + "iconUrl": "https://static.cx.metamask.io/api/v2/tokenIcons/assets/eip155/56/slip44/714.png", + "metadata": {}, + "name": "Binance Coin", + "occurrences": 100, + "symbol": "BNB" + }, + "srcChainId": 56, + "srcTokenAmount": "2416398363162307", + "steps": [], + "walletAddress": "0xF25bd11C334507Fd007d584E2D0b7b2C6543f714" + }, + "slippagePercentage": 0, + "startTime": 1774463251413, + "status": { + "srcChain": { + "chainId": 56, + "txHash": "0x16eba8645da99424b4f940e076f330246a6fbb6d8edbcf80b65ff93b84fc4570" + }, + "status": "FAILED" + }, + "txMetaId": "4942d7e0-2878-11f1-8216-1be6bb170c07" + }, + "4ce80790-127e-11f1-9739-356d45d675c3": { + "account": "0x30e8ccad5a980bdf30447f8c2c48e70989d9d294", + "batchId": "0xc52c99bea2bf420fb2147078d68dcc03", + "completionTime": 1772046942421, + "estimatedProcessingTimeInSeconds": 10, + "hasApprovalTx": false, + "isStxEnabled": true, + "pricingData": { + "amountSent": "0.005", + "amountSentInUsd": "3.14723733049", + "quotedGasAmount": "0.00002748215", + "quotedGasInUsd": "0.0172985696804251507", + "quotedReturnInUsd": "3.1147341951983926620382" + }, + "quote": { + "aggregator": "mayan", + "bridgeId": "mayan", + "bridges": ["mayan"], + "destAsset": { + "address": "0x0000000000000000000000000000000000000000", + "aggregators": [], + "assetId": "eip155:137/slip44:966", + "chainId": 137, + "coingeckoId": "matic-network", + "decimals": 18, + "iconUrl": "https://static.cx.metamask.io/api/v2/tokenIcons/assets/eip155/137/slip44/966.png", + "metadata": {}, + "name": "Polygon Ecosystem Token", + "occurrences": 100, + "symbol": "POL" + }, + "destChainId": 137, + "destTokenAmount": "26700506612255900000", + "feeData": { + "metabridge": { + "amount": "43750000000000", + "asset": { + "address": "0x0000000000000000000000000000000000000000", + "aggregators": [], + "assetId": "eip155:56/slip44:714", + "chainId": 56, + "coingeckoId": "binancecoin", + "decimals": 18, + "iconUrl": "https://static.cx.metamask.io/api/v2/tokenIcons/assets/eip155/56/slip44/714.png", + "metadata": {}, + "name": "Binance Coin", + "occurrences": 100, + "symbol": "BNB" + }, + "baseBpsFee": 87.5, + "quoteBpsFee": 87.5 + } + }, + "minDestTokenAmount": "26166496480010800000", + "priceData": { + "priceImpact": "0.0018524393988291262", + "totalFeeAmountUsd": "0.027542812499999996", + "totalFromAmountUsd": "3.14775", + "totalToAmountUsd": "3.114427192773365" + }, + "protocols": ["mayan"], + "requestId": "0x97ef1deaa9f0f316c1949cbbecd9b802ae32f6de2fbc54a1feb26ce0f313c445", + "slippage": 2, + "srcAsset": { + "address": "0x0000000000000000000000000000000000000000", + "aggregators": [], + "assetId": "eip155:56/slip44:714", + "chainId": 56, + "coingeckoId": "binancecoin", + "decimals": 18, + "iconUrl": "https://static.cx.metamask.io/api/v2/tokenIcons/assets/eip155/56/slip44/714.png", + "metadata": {}, + "name": "Binance Coin", + "occurrences": 100, + "symbol": "BNB" + }, + "srcChainId": 56, + "srcTokenAmount": "4956250000000000", + "steps": [ + { + "action": "bridge", + "destAmount": "26700506612255900000", + "destAsset": { + "address": "0x0000000000000000000000000000000000000000", + "aggregators": [], + "assetId": "eip155:137/slip44:966", + "chainId": 137, + "coingeckoId": "matic-network", + "decimals": 18, + "iconUrl": "https://static.cx.metamask.io/api/v2/tokenIcons/assets/eip155/137/slip44/966.png", + "metadata": {}, + "name": "Polygon Ecosystem Token", + "occurrences": 100, + "symbol": "POL" + }, + "destChainId": 137, + "protocol": { + "displayName": "Mayan", + "name": "Mayan" + }, + "srcAmount": "4956250000000000", + "srcAsset": { + "address": "0x0000000000000000000000000000000000000000", + "aggregators": [], + "assetId": "eip155:56/slip44:714", + "chainId": 56, + "coingeckoId": "binancecoin", + "decimals": 18, + "iconUrl": "https://static.cx.metamask.io/api/v2/tokenIcons/assets/eip155/56/slip44/714.png", + "metadata": {}, + "name": "Binance Coin", + "occurrences": 100, + "symbol": "BNB" + }, + "srcChainId": 56 + } + ] + }, + "slippagePercentage": 0, + "startTime": 1772046909061, + "status": { + "destChain": { + "amount": "26671498719979143517", + "chainId": 137, + "token": { + "address": "0x0000000000000000000000000000000000000000", + "aggregators": [], + "assetId": "eip155:137/slip44:966", + "chainId": 137, + "coingeckoId": "matic-network", + "decimals": 18, + "iconUrl": "https://static.cx.metamask.io/api/v2/tokenIcons/assets/eip155/137/slip44/966.png", + "metadata": {}, + "name": "Polygon Ecosystem Token", + "occurrences": 100, + "symbol": "POL" + }, + "txHash": "0x997263f0c88d7aa8ddd8aeefd81602344c6267cbd901abd01c84972ae973d069" + }, + "srcChain": { + "amount": "3124885274879737153", + "chainId": 56, + "token": { + "address": "0x0000000000000000000000000000000000000000", + "aggregators": [], + "assetId": "eip155:56/slip44:714", + "chainId": 56, + "coingeckoId": "binancecoin", + "decimals": 18, + "iconUrl": "https://static.cx.metamask.io/api/v2/tokenIcons/assets/eip155/56/slip44/714.png", + "metadata": {}, + "name": "Binance Coin", + "occurrences": 100, + "symbol": "BNB" + }, + "txHash": "0x7aac367e21bcab0f485d0c82c397da9daf19497aef224b951ff55c68a07bc4bd" + }, + "status": "COMPLETE" + }, + "txMetaId": "4ce80790-127e-11f1-9739-356d45d675c3" + }, + "4d5f6500-127f-11f1-ab37-c95c44564d21": { + "account": "0x30e8ccad5a980bdf30447f8c2c48e70989d9d294", + "approvalTxId": "4d5b6d60-127f-11f1-ab37-c95c44564d21", + "batchId": "0xb79b1d97012841db8cba0dc19b3b0d10", + "estimatedProcessingTimeInSeconds": 0, + "hasApprovalTx": true, + "isStxEnabled": true, + "pricingData": { + "amountSent": "3.126955256342945574", + "amountSentInUsd": "3.126955256342945574", + "quotedGasAmount": "0.0000255323", + "quotedGasInUsd": "0.016106285486", + "quotedReturnInUsd": "3.0999058539059553812" + }, + "quote": { + "aggregator": "okx", + "aggregatorType": "AGG", + "bridgeId": "okx", + "bridges": ["okx"], + "destAsset": { + "address": "0x0000000000000000000000000000000000000000", + "aggregators": [], + "assetId": "eip155:56/slip44:714", + "chainId": 56, + "coingeckoId": "binancecoin", + "decimals": 18, + "iconUrl": "https://static.cx.metamask.io/api/v2/tokenIcons/assets/eip155/56/slip44/714.png", + "metadata": {}, + "name": "Binance Coin", + "occurrences": 100, + "symbol": "BNB" + }, + "destChainId": 56, + "destTokenAmount": "4914089366072660", + "destWalletAddress": "0x30E8ccaD5A980BDF30447f8c2C48e70989D9d294", + "feeData": { + "metabridge": { + "amount": "43377838035950", + "asset": { + "address": "0x0000000000000000000000000000000000000000", + "aggregators": [], + "assetId": "eip155:56/slip44:714", + "chainId": 56, + "coingeckoId": "binancecoin", + "decimals": 18, + "iconUrl": "https://static.cx.metamask.io/api/v2/tokenIcons/assets/eip155/56/slip44/714.png", + "metadata": {}, + "name": "Binance Coin", + "occurrences": 100, + "symbol": "BNB" + }, + "baseBpsFee": 87.5, + "quoteBpsFee": 87.5 + } + }, + "gasIncluded7702": false, + "gasSponsored": false, + "minDestTokenAmount": "4815807578751206", + "priceData": { + "priceImpact": "-0.00010048284260244137", + "totalFeeAmountUsd": "0.027363607789837985", + "totalFromAmountUsd": "3.1269552563429457", + "totalToAmountUsd": "3.0999058539059554" + }, + "protocols": ["okx"], + "requestId": "0x6e25040bddc75ae8c154f5f3ecc6a32fff1d3fc5327f9655c425c501e5d5e2d0", + "slippage": 2, + "srcAsset": { + "address": "0x55d398326f99059ff775485246999027b3197955", + "aggregators": [ + "pancakeExtended", + "oneInch", + "liFi", + "socket", + "squid", + "rango", + "sonarwatch", + "sushiSwap" + ], + "assetId": "eip155:56/erc20:0x55d398326f99059ff775485246999027b3197955", + "chainId": 56, + "coingeckoId": "binance-bridged-usdt-bnb-smart-chain", + "decimals": 18, + "iconUrl": "https://static.cx.metamask.io/api/v2/tokenIcons/assets/eip155/56/erc20/0x55d398326f99059ff775485246999027b3197955.png", + "metadata": { + "storage": { + "approval": 2, + "balance": 1 + } + }, + "name": "Tether USD", + "occurrences": 8, + "symbol": "USDT" + }, + "srcChainId": 56, + "srcTokenAmount": "3126955256342945574", + "steps": [], + "walletAddress": "0x30E8ccaD5A980BDF30447f8c2C48e70989D9d294" + }, + "slippagePercentage": 0, + "startTime": 1772047339272, + "status": { + "srcChain": { + "chainId": 56 + }, + "status": "PENDING" + }, + "txMetaId": "4d5f6500-127f-11f1-ab37-c95c44564d21" + }, + "4da7b470-287f-11f1-8a10-87a6b7d6d04e": { + "account": "0xf25bd11c334507fd007d584e2d0b7b2c6543f714", + "batchId": "0x0c6352185e874214845c1a9839ec8cc2", + "estimatedProcessingTimeInSeconds": 0, + "hasApprovalTx": false, + "isStxEnabled": false, + "location": "Main View", + "originalTransactionId": "4da7b470-287f-11f1-8a10-87a6b7d6d04e", + "pricingData": { + "amountSent": "0.001958090214518098", + "amountSentInUsd": "1.264740006380802782589802256", + "quotedGasAmount": "0.000013758", + "quotedGasInUsd": "0.008886359207953776", + "quotedReturnInUsd": "1.23716391360197022425405356803759013059545984" + }, + "quote": { + "aggregator": "0x", + "aggregatorType": "AGG", + "bridgeId": "0x", + "bridges": ["0x"], + "destAsset": { + "address": "0x55d398326f99059ff775485246999027b3197955", + "aggregators": [ + "pancakeExtended", + "oneInch", + "liFi", + "trustWallet", + "socket", + "rubic", + "squid", + "rango", + "sonarwatch", + "sushiSwap" + ], + "assetId": "eip155:56/erc20:0x55d398326f99059ff775485246999027b3197955", + "chainId": 56, + "coingeckoId": "binance-bridged-usdt-bnb-smart-chain", + "decimals": 18, + "iconUrl": "https://static.cx.metamask.io/api/v2/tokenIcons/assets/eip155/56/erc20/0x55d398326f99059ff775485246999027b3197955.png", + "metadata": { + "storage": { + "approval": 2, + "balance": 1 + } + }, + "name": "Tether USD", + "occurrences": 11, + "symbol": "USDT" + }, + "destChainId": 56, + "destTokenAmount": "1237543839561436868", + "destWalletAddress": "0xF25bd11C334507Fd007d584E2D0b7b2C6543f714", + "feeData": { + "metabridge": { + "amount": "17133289377033", + "asset": { + "address": "0x0000000000000000000000000000000000000000", + "aggregators": [], + "assetId": "eip155:56/slip44:714", + "chainId": 56, + "coingeckoId": "binancecoin", + "decimals": 18, + "iconUrl": "https://static.cx.metamask.io/api/v2/tokenIcons/assets/eip155/56/slip44/714.png", + "metadata": {}, + "name": "Binance Coin", + "occurrences": 100, + "symbol": "BNB" + }, + "baseBpsFee": 87.5, + "quoteBpsFee": 87.5 + }, + "txFee": { + "amount": "26529210000000", + "asset": { + "address": "0x0000000000000000000000000000000000000000", + "aggregators": [], + "assetId": "eip155:56/slip44:714", + "chainId": 56, + "coingeckoId": "binancecoin", + "decimals": 18, + "iconUrl": "https://static.cx.metamask.io/api/v2/tokenIcons/assets/eip155/56/slip44/714.png", + "metadata": {}, + "name": "Binance Coin", + "occurrences": 100, + "symbol": "BNB" + }, + "maxFeePerGas": "60000000", + "maxPriorityFeePerGas": "60000000" + } + }, + "gasIncluded": true, + "gasIncluded7702": false, + "gasSponsored": false, + "minDestTokenAmount": "1212792962770208130", + "priceData": { + "priceImpact": "0.00857604949139002", + "totalFeeAmountUsd": "0.0110687902691384", + "totalFromAmountUsd": "1.265004602187272", + "totalToAmountUsd": "1.2371639136026915" + }, + "protocols": ["0x"], + "requestId": "0x02f6cb60906c5412959a9af2b8f894e4ba5ddec5254d5eb699b0b2ff0c03af1b", + "slippage": 2, + "srcAsset": { + "address": "0x0000000000000000000000000000000000000000", + "aggregators": [], + "assetId": "eip155:56/slip44:714", + "chainId": 56, + "coingeckoId": "binancecoin", + "decimals": 18, + "iconUrl": "https://static.cx.metamask.io/api/v2/tokenIcons/assets/eip155/56/slip44/714.png", + "metadata": {}, + "name": "Binance Coin", + "occurrences": 100, + "symbol": "BNB" + }, + "srcChainId": 56, + "srcTokenAmount": "1914427715141065", + "steps": [], + "walletAddress": "0xF25bd11C334507Fd007d584E2D0b7b2C6543f714" + }, + "slippagePercentage": 0, + "startTime": 1774466265248, + "status": { + "srcChain": { + "chainId": 56, + "txHash": "0x24c05fae8dc1a6132fbf2c35bd0f6f6b10e0041ba70d30b753a396a5a02f1c7c" + }, + "status": "FAILED" + }, + "txMetaId": "4da7b470-287f-11f1-8a10-87a6b7d6d04e" + }, + "4f6532f0-2e11-11f1-ae93-535abbd777f7": { + "account": "0x141d32a89a1e0a5ef360034a2f60a4b917c18838", + "batchId": "0x90c662d327b543778a5529e7d0d6ef89", + "estimatedProcessingTimeInSeconds": 0, + "hasApprovalTx": false, + "isStxEnabled": true, + "location": "Main View", + "originalTransactionId": "4f6532f0-2e11-11f1-ae93-535abbd777f7", + "pricingData": { + "amountSent": "1", + "amountSentInUsd": "2152.531888759", + "quotedGasAmount": "0.001258196898863625", + "quotedGasInUsd": "2.708308947141635222011491375", + "quotedReturnInUsd": "2158.606220922276509480773077079871689" + }, + "quote": { + "aggregator": "kyberswap", + "aggregatorType": "AGG", + "bridgeId": "kyberswap", + "bridges": ["kyberswap"], + "destAsset": { + "address": "0xaca92e438df0b2401ff60da7e4337b687a2435da", + "aggregators": ["metamask", "liFi", "socket", "rubic", "rango"], + "assetId": "eip155:1/erc20:0xaca92e438df0b2401ff60da7e4337b687a2435da", + "chainId": 1, + "decimals": 6, + "iconUrl": "https://static.cx.metamask.io/api/v2/tokenIcons/assets/eip155/1/erc20/0xaca92e438df0b2401ff60da7e4337b687a2435da.png", + "metadata": {}, + "name": "MetaMask USD", + "occurrences": 5, + "symbol": "MUSD" + }, + "destChainId": 1, + "destTokenAmount": "2158874897", + "destWalletAddress": "0x141d32a89a1e0a5Ef360034a2f60a4B917c18838", + "feeData": { + "metabridge": { + "amount": "0", + "asset": { + "address": "0x0000000000000000000000000000000000000000", + "aggregators": [], + "assetId": "eip155:1/slip44:60", + "chainId": 1, + "coingeckoId": "ethereum", + "decimals": 18, + "iconUrl": "https://static.cx.metamask.io/api/v2/tokenIcons/assets/eip155/1/slip44/60.png", + "metadata": {}, + "name": "Ether", + "occurrences": 100, + "symbol": "ETH" + }, + "baseBpsFee": 87.5, + "quoteBpsFee": 0 + } + }, + "gasIncluded": false, + "gasIncluded7702": false, + "gasSponsored": false, + "minDestTokenAmount": "2115697399", + "priceData": { + "priceImpact": "-0.0029951868676847022", + "totalFeeAmountUsd": "0", + "totalFromAmountUsd": "2151.92", + "totalToAmountUsd": "2158.365402524308" + }, + "protocols": ["kyberswap"], + "requestId": "0x28e9917fbba6d933fe7ab51551df13e40799b2f6eb9b0db4bd10a1ff570de699", + "slippage": 2, + "srcAsset": { + "address": "0x0000000000000000000000000000000000000000", + "aggregators": [], + "assetId": "eip155:1/slip44:60", + "chainId": 1, + "coingeckoId": "ethereum", + "decimals": 18, + "iconUrl": "https://static.cx.metamask.io/api/v2/tokenIcons/assets/eip155/1/slip44/60.png", + "metadata": {}, + "name": "Ether", + "occurrences": 100, + "symbol": "ETH" + }, + "srcChainId": 1, + "srcTokenAmount": "1000000000000000000", + "steps": [], + "walletAddress": "0x141d32a89a1e0a5Ef360034a2f60a4B917c18838" + }, + "slippagePercentage": 0, + "startTime": 1775078730516, + "status": { + "srcChain": { + "chainId": 1 + }, + "status": "PENDING" + }, + "txMetaId": "4f6532f0-2e11-11f1-ae93-535abbd777f7" + }, + "4f662090-286f-11f1-9eba-5fbe36423c6b": { + "account": "0xf25bd11c334507fd007d584e2d0b7b2c6543f714", + "batchId": "0x25663cf0d63e4ec0bfb627371e935deb", + "estimatedProcessingTimeInSeconds": 0, + "hasApprovalTx": false, + "isStxEnabled": false, + "location": "Main View", + "originalTransactionId": "4f662090-286f-11f1-9eba-5fbe36423c6b", + "pricingData": { + "amountSent": "0.002995898652279377", + "amountSentInUsd": "1.935110174957660128204611237", + "quotedGasAmount": "0.000011985", + "quotedGasInUsd": "0.007741348469589285", + "quotedReturnInUsd": "1.90363362983538428389183960871062606975771806" + }, + "quote": { + "aggregator": "pancakeswap", + "aggregatorType": "AGG", + "bridgeId": "pancakeswap", + "bridges": ["pancakeswap"], + "destAsset": { + "address": "0x55d398326f99059ff775485246999027b3197955", + "aggregators": [ + "pancakeExtended", + "oneInch", + "liFi", + "trustWallet", + "socket", + "squid", + "rango", + "sonarwatch", + "sushiSwap" + ], + "assetId": "eip155:56/erc20:0x55d398326f99059ff775485246999027b3197955", + "chainId": 56, + "coingeckoId": "binance-bridged-usdt-bnb-smart-chain", + "decimals": 18, + "iconUrl": "https://static.cx.metamask.io/api/v2/tokenIcons/assets/eip155/56/erc20/0x55d398326f99059ff775485246999027b3197955.png", + "metadata": { + "storage": { + "approval": 2, + "balance": 1 + } + }, + "name": "Tether USD", + "occurrences": 9, + "symbol": "USDT" + }, + "destChainId": 56, + "destTokenAmount": "1904170605947383921", + "destWalletAddress": "0xF25bd11C334507Fd007d584E2D0b7b2C6543f714", + "feeData": { + "metabridge": { + "amount": "26214113207444", + "asset": { + "address": "0x0000000000000000000000000000000000000000", + "aggregators": [], + "assetId": "eip155:56/slip44:714", + "chainId": 56, + "coingeckoId": "binancecoin", + "decimals": 18, + "iconUrl": "https://static.cx.metamask.io/api/v2/tokenIcons/assets/eip155/56/slip44/714.png", + "metadata": {}, + "name": "Binance Coin", + "occurrences": 100, + "symbol": "BNB" + }, + "baseBpsFee": 87.5, + "quoteBpsFee": 87.5 + }, + "txFee": { + "amount": "24376860000000", + "asset": { + "address": "0x0000000000000000000000000000000000000000", + "aggregators": [], + "assetId": "eip155:56/slip44:714", + "chainId": 56, + "coingeckoId": "binancecoin", + "decimals": 18, + "iconUrl": "https://static.cx.metamask.io/api/v2/tokenIcons/assets/eip155/56/slip44/714.png", + "metadata": {}, + "name": "Binance Coin", + "occurrences": 100, + "symbol": "BNB" + }, + "maxFeePerGas": "60000000", + "maxPriorityFeePerGas": "60000000" + } + }, + "gasIncluded": true, + "gasIncluded7702": false, + "gasSponsored": false, + "minDestTokenAmount": "1866087193828436242", + "priceData": { + "priceImpact": "0.008319140639308085", + "totalFeeAmountUsd": "0.016934317132008825", + "totalFromAmountUsd": "1.9353505293724775", + "totalToAmountUsd": "1.9036336298365069" + }, + "protocols": ["pancakeswap"], + "requestId": "0xbcca252657fd32bfeacda82d6148b44d9ba35e281dcc565914bf9e70285bcf20", + "slippage": 2, + "srcAsset": { + "address": "0x0000000000000000000000000000000000000000", + "aggregators": [], + "assetId": "eip155:56/slip44:714", + "chainId": 56, + "coingeckoId": "binancecoin", + "decimals": 18, + "iconUrl": "https://static.cx.metamask.io/api/v2/tokenIcons/assets/eip155/56/slip44/714.png", + "metadata": {}, + "name": "Binance Coin", + "occurrences": 100, + "symbol": "BNB" + }, + "srcChainId": 56, + "srcTokenAmount": "2945307679071933", + "steps": [], + "walletAddress": "0xF25bd11C334507Fd007d584E2D0b7b2C6543f714" + }, + "slippagePercentage": 0, + "startTime": 1774459396248, + "status": { + "srcChain": { + "chainId": 56, + "txHash": "0xc00a04fb95130719e482038fdac80e11a2f96ed91806b3f6055e0983bf8f6b19" + }, + "status": "FAILED" + }, + "txMetaId": "4f662090-286f-11f1-9eba-5fbe36423c6b" + }, + "53814750-4ff1-11f1-b329-9d6502987406": { + "account": "0x141d32a89a1e0a5ef360034a2f60a4b917c18838", + "batchId": "0x19e28fdf541", + "estimatedProcessingTimeInSeconds": 0, + "hasApprovalTx": true, + "isStxEnabled": false, + "location": "Main View", + "originalTransactionId": "53814750-4ff1-11f1-b329-9d6502987406", + "pricingData": { + "amountSent": "1.62146625653115313", + "amountSentInUsd": "16.97675170587493057753293970368779201808248", + "quotedGasAmount": "0.0000124996", + "quotedGasInUsd": "0.0084746153697048856", + "quotedReturnInUsd": "1.6068845860634657276911042399848508414811425" + }, + "quote": { + "aggregator": "uniswap", + "aggregatorType": "AGG", + "bridgeId": "uniswap", + "bridges": ["uniswap"], + "destAsset": { + "address": "0x55d398326f99059ff775485246999027b3197955", + "aggregators": [ + "pancakeExtended", + "oneInch", + "liFi", + "trustWallet", + "socket", + "rubic", + "squid", + "rango", + "sonarwatch", + "sushiSwap" + ], + "assetId": "eip155:56/erc20:0x55d398326f99059ff775485246999027b3197955", + "chainId": 56, + "coingeckoId": "binance-bridged-usdt-bnb-smart-chain", + "decimals": 18, + "iconUrl": "https://static.cx.metamask.io/api/v2/tokenIcons/assets/eip155/56/erc20/0x55d398326f99059ff775485246999027b3197955.png", + "metadata": { + "storage": { + "approval": 2, + "balance": 1 + } + }, + "name": "Tether USD", + "occurrences": 10, + "symbol": "USDT" + }, + "destChainId": 56, + "destTokenAmount": "1607141728740661855", + "destWalletAddress": "0x141d32a89a1e0a5ef360034a2f60a4b917c18838", + "feeData": { + "metabridge": { + "amount": "14187829744647589", + "asset": { + "address": "0x1af3f329e8be154074d8769d1ffa4ee058b1dbc3", + "aggregators": [ + "pancakeExtended", + "oneInch", + "liFi", + "trustWallet", + "socket", + "rubic", + "rango", + "sonarwatch", + "sushiSwap" + ], + "assetId": "eip155:56/erc20:0x1af3f329e8be154074d8769d1ffa4ee058b1dbc3", + "chainId": 56, + "coingeckoId": "binance-peg-dai", + "decimals": 18, + "iconUrl": "https://static.cx.metamask.io/api/v2/tokenIcons/assets/eip155/56/erc20/0x1af3f329e8be154074d8769d1ffa4ee058b1dbc3.png", + "metadata": { + "storage": { + "approval": 2, + "balance": 1 + } + }, + "name": "BNB pegged Dai Token", + "occurrences": 9, + "symbol": "DAI" + }, + "baseBpsFee": 87.5, + "quoteBpsFee": 87.5, + "usd": "0.014186155421895753" + } + }, + "gasIncluded": false, + "gasIncluded7702": false, + "gasSponsored": false, + "minDestTokenAmount": "1574998894165848617", + "priceData": { + "priceImpact": "0.00012703957610532215", + "totalFeeAmountUsd": "0.014186155421895753", + "totalFromAmountUsd": "1.6212749053595148", + "totalToAmountUsd": "1.6068845860640633" + }, + "protocols": ["uniswap"], + "requestId": "0x431a784827d7a52a3aa2f819feee3e056bad10578b2cd6039b0134b5f4c71b85", + "slippage": 2, + "srcAsset": { + "address": "0x1af3f329e8be154074d8769d1ffa4ee058b1dbc3", + "aggregators": [ + "pancakeExtended", + "oneInch", + "liFi", + "trustWallet", + "socket", + "rubic", + "rango", + "sonarwatch", + "sushiSwap" + ], + "assetId": "eip155:56/erc20:0x1af3f329e8be154074d8769d1ffa4ee058b1dbc3", + "chainId": 56, + "coingeckoId": "binance-peg-dai", + "decimals": 18, + "iconUrl": "https://static.cx.metamask.io/api/v2/tokenIcons/assets/eip155/56/erc20/0x1af3f329e8be154074d8769d1ffa4ee058b1dbc3.png", + "metadata": { + "storage": { + "approval": 2, + "balance": 1 + } + }, + "name": "BNB pegged Dai Token", + "occurrences": 9, + "symbol": "DAI" + }, + "srcChainId": 56, + "srcTokenAmount": "1607278426786505541", + "steps": [], + "walletAddress": "0x141d32a89a1e0a5ef360034a2f60a4b917c18838" + }, + "slippagePercentage": 0, + "startTime": 1778803332961, + "status": { + "srcChain": { + "chainId": 56, + "txHash": "0x4f276a96fc9eb03c9250127caf964284ce56d1e024316981db50372d83b05f6c" + }, + "status": "COMPLETE" + }, + "tokenSecurityTypeDestination": null, + "txMetaId": "53814750-4ff1-11f1-b329-9d6502987406" + }, + "563eafe0-39c7-11f1-a22e-3727d90ba13b": { + "account": "0x141d32a89a1e0a5ef360034a2f60a4b917c18838", + "batchId": "0xbb15bdb911894b408de56bc7eed766c1", + "completionTime": 1776366387031, + "estimatedProcessingTimeInSeconds": 2, + "hasApprovalTx": false, + "isStxEnabled": true, + "location": "Main View", + "originalTransactionId": "563eafe0-39c7-11f1-a22e-3727d90ba13b", + "pricingData": { + "amountSent": "0.009978415725346128", + "amountSentInUsd": "23.392662778241671753687926528", + "quotedGasAmount": "0.000186370015600398", + "quotedGasInUsd": "0.436912135845545006227398048", + "quotedReturnInUsd": "22.611023315058376370122902864" + }, + "quote": { + "aggregator": "relay", + "bridgeId": "relay", + "bridges": ["Relay"], + "destAsset": { + "address": "0x0000000000000000000000000000000000000000", + "aggregators": [ + "traderJoe", + "oneInch", + "liFi", + "socket", + "rubic", + "squid", + "rango", + "sonarwatch", + "sushiSwap" + ], + "assetId": "eip155:42161/slip44:60", + "chainId": 42161, + "coingeckoId": "arbitrum", + "decimals": 18, + "iconUrl": "https://static.cx.metamask.io/api/v2/tokenIcons/assets/eip155/42161/slip44/60.png", + "metadata": { + "storage": { + "approval": 52, + "balance": 51 + } + }, + "name": "Ether", + "occurrences": 9, + "symbol": "ETH" + }, + "destChainId": 42161, + "destTokenAmount": "9644998209567039", + "feeData": { + "metabridge": { + "amount": "87311137596778", + "asset": { + "address": "0x0000000000000000000000000000000000000000", + "aggregators": [], + "assetId": "eip155:1/slip44:60", + "chainId": 1, + "coingeckoId": "ethereum", + "decimals": 18, + "iconUrl": "https://static.cx.metamask.io/api/v2/tokenIcons/assets/eip155/1/slip44/60.png", + "metadata": {}, + "name": "Ether", + "occurrences": 100, + "symbol": "ETH" + }, + "baseBpsFee": 87.5, + "quoteBpsFee": 87.5 + }, + "txFee": { + "amount": "236972959186090", + "asset": { + "address": "0x0000000000000000000000000000000000000000", + "aggregators": [], + "assetId": "eip155:1/slip44:60", + "chainId": 1, + "coingeckoId": "ethereum", + "decimals": 18, + "iconUrl": "https://static.cx.metamask.io/api/v2/tokenIcons/assets/eip155/1/slip44/60.png", + "metadata": {}, + "name": "Ether", + "occurrences": 100, + "symbol": "ETH" + }, + "maxFeePerGas": "2405880350", + "maxPriorityFeePerGas": "2100000001" + } + }, + "gasIncluded": true, + "gasIncluded7702": false, + "minDestTokenAmount": "9452098245375698", + "priceData": { + "priceImpact": "0.009777953641850492", + "totalFeeAmountUsd": "0.20468493141967709", + "totalFromAmountUsd": "23.392563590820405", + "totalToAmountUsd": "22.613724635234448" + }, + "protocols": ["Relay"], + "requestId": "0x7a5af23451acc87d57df1ecf4fe30b7342d0319785324fd287247566b948271a", + "srcAsset": { + "address": "0x0000000000000000000000000000000000000000", + "aggregators": [], + "assetId": "eip155:1/slip44:60", + "chainId": 1, + "coingeckoId": "ethereum", + "decimals": 18, + "iconUrl": "https://static.cx.metamask.io/api/v2/tokenIcons/assets/eip155/1/slip44/60.png", + "metadata": {}, + "name": "Ether", + "occurrences": 100, + "symbol": "ETH" + }, + "srcChainId": 1, + "srcTokenAmount": "9654131628563260", + "steps": [ + { + "action": "bridge", + "destAmount": "9644998209567039", + "destAsset": { + "address": "0x0000000000000000000000000000000000000000", + "aggregators": [ + "traderJoe", + "oneInch", + "liFi", + "socket", + "rubic", + "squid", + "rango", + "sonarwatch", + "sushiSwap" + ], + "assetId": "eip155:42161/slip44:60", + "chainId": 42161, + "coingeckoId": "arbitrum", + "decimals": 18, + "iconUrl": "https://static.cx.metamask.io/api/v2/tokenIcons/assets/eip155/42161/slip44/60.png", + "metadata": { + "storage": { + "approval": 52, + "balance": 51 + } + }, + "name": "Ether", + "occurrences": 9, + "symbol": "ETH" + }, + "destChainId": 42161, + "protocol": { + "name": "relay" + }, + "srcAmount": "9654131628563260", + "srcAsset": { + "address": "0x0000000000000000000000000000000000000000", + "aggregators": [], + "assetId": "eip155:1/slip44:60", + "chainId": 1, + "coingeckoId": "ethereum", + "decimals": 18, + "iconUrl": "https://static.cx.metamask.io/api/v2/tokenIcons/assets/eip155/1/slip44/60.png", + "metadata": {}, + "name": "Ether", + "occurrences": 100, + "symbol": "ETH" + }, + "srcChainId": 1 + } + ] + }, + "slippagePercentage": 0, + "startTime": 1776366373250, + "status": { + "bridge": "relay", + "destChain": { + "chainId": 42161, + "txHash": "0x80711caaa4fd650b455541f6afaa14cfefe6e004b5c3e65c3f574848ced9465a" + }, + "isExpectedToken": true, + "isUnrecognizedRouterAddress": false, + "srcChain": { + "chainId": 1, + "txHash": "0xf35aa01f3d30bca6d855deda71b9bb47108342dd8027e12dc4857a2ba5bdd52a" + }, + "status": "COMPLETE" + }, + "txMetaId": "563eafe0-39c7-11f1-a22e-3727d90ba13b" + }, + "60179360-1d6b-11f1-9f18-3b0a0edc0d9a": { + "account": "0x30e8ccad5a980bdf30447f8c2c48e70989d9d294", + "batchId": "0x04de425b1bc24b5598f0955ba3f854e1", + "estimatedProcessingTimeInSeconds": 0, + "hasApprovalTx": false, + "isStxEnabled": true, + "location": "Main View", + "originalTransactionId": "60179360-1d6b-11f1-9f18-3b0a0edc0d9a", + "pricingData": { + "amountSent": "0.001", + "amountSentInUsd": "0.648619441684", + "quotedGasAmount": "0.0000097091", + "quotedGasInUsd": "0.0062975110212541244", + "quotedReturnInUsd": "0.64140509665506483340304727859829370845775532" + }, + "quote": { + "aggregator": "uniswap", + "aggregatorType": "AGG", + "bridgeId": "uniswap", + "bridges": ["uniswap"], + "destAsset": { + "address": "0x55d398326f99059ff775485246999027b3197955", + "aggregators": [ + "pancakeExtended", + "oneInch", + "liFi", + "socket", + "rubic", + "squid", + "rango", + "sonarwatch", + "sushiSwap" + ], + "assetId": "eip155:56/erc20:0x55d398326f99059ff775485246999027b3197955", + "chainId": 56, + "coingeckoId": "binance-bridged-usdt-bnb-smart-chain", + "decimals": 18, + "iconUrl": "https://static.cx.metamask.io/api/v2/tokenIcons/assets/eip155/56/erc20/0x55d398326f99059ff775485246999027b3197955.png", + "metadata": { + "storage": { + "approval": 2, + "balance": 1 + } + }, + "name": "Tether USD", + "occurrences": 11, + "symbol": "USDT" + }, + "destChainId": 56, + "destTokenAmount": "642171558570144851", + "destWalletAddress": "0x30E8ccaD5A980BDF30447f8c2C48e70989D9d294", + "feeData": { + "metabridge": { + "amount": "8750000000000", + "asset": { + "address": "0x0000000000000000000000000000000000000000", + "aggregators": [], + "assetId": "eip155:56/slip44:714", + "chainId": 56, + "coingeckoId": "binancecoin", + "decimals": 18, + "iconUrl": "https://static.cx.metamask.io/api/v2/tokenIcons/assets/eip155/56/slip44/714.png", + "metadata": {}, + "name": "Binance Coin", + "occurrences": 100, + "symbol": "BNB" + }, + "baseBpsFee": 87.5, + "quoteBpsFee": 87.5 + } + }, + "gasIncluded": false, + "gasIncluded7702": false, + "gasSponsored": false, + "minDestTokenAmount": "629328127398741953", + "priceData": { + "priceImpact": "0.0023866090178761945", + "totalFeeAmountUsd": "0.005682162499999999", + "totalFromAmountUsd": "0.64939", + "totalToAmountUsd": "0.6421715585701449" + }, + "protocols": ["uniswap"], + "requestId": "0x7f9cb2702b52a0b57e364d065727ee33b355cc433d7ef2f1b90ba1ab8c574c87", + "slippage": 2, + "srcAsset": { + "address": "0x0000000000000000000000000000000000000000", + "aggregators": [], + "assetId": "eip155:56/slip44:714", + "chainId": 56, + "coingeckoId": "binancecoin", + "decimals": 18, + "iconUrl": "https://static.cx.metamask.io/api/v2/tokenIcons/assets/eip155/56/slip44/714.png", + "metadata": {}, + "name": "Binance Coin", + "occurrences": 100, + "symbol": "BNB" + }, + "srcChainId": 56, + "srcTokenAmount": "991250000000000", + "steps": [], + "walletAddress": "0x30E8ccaD5A980BDF30447f8c2C48e70989D9d294" + }, + "slippagePercentage": 0, + "startTime": 1773248243453, + "status": { + "srcChain": { + "chainId": 56 + }, + "status": "PENDING" + }, + "txMetaId": "60179360-1d6b-11f1-9f18-3b0a0edc0d9a" + }, + "601bb6f0-2880-11f1-946d-9d8a4fbc2cec": { + "account": "0x141d32a89a1e0a5ef360034a2f60a4b917c18838", + "approvalTxId": "6008a420-2880-11f1-946d-9d8a4fbc2cec", + "batchId": "0x2b32153cadcf45f49b5a4852be352b9d", + "estimatedProcessingTimeInSeconds": 0, + "hasApprovalTx": true, + "isStxEnabled": true, + "location": "Main View", + "originalTransactionId": "601bb6f0-2880-11f1-946d-9d8a4fbc2cec", + "pricingData": { + "amountSent": "6.73364", + "amountSentInUsd": "6.72902230654417112604008051223732", + "quotedGasAmount": "0.0000080671341042", + "quotedGasInUsd": "0.0174927566795508740163906", + "quotedReturnInUsd": "6.667680830719515719703870221" + }, + "quote": { + "aggregator": "uniswap", + "aggregatorType": "AGG", + "bridgeId": "uniswap", + "bridges": ["uniswap"], + "destAsset": { + "address": "0x0000000000000000000000000000000000000000", + "aggregators": [ + "traderJoe", + "oneInch", + "liFi", + "socket", + "rubic", + "squid", + "rango", + "sonarwatch", + "sushiSwap" + ], + "assetId": "eip155:42161/slip44:60", + "chainId": 42161, + "coingeckoId": "arbitrum", + "decimals": 18, + "iconUrl": "https://static.cx.metamask.io/api/v2/tokenIcons/assets/eip155/42161/slip44/60.png", + "metadata": { + "storage": { + "approval": 52, + "balance": 51 + } + }, + "name": "Ether", + "occurrences": 9, + "symbol": "ETH" + }, + "destChainId": 42161, + "destTokenAmount": "3074934180516997", + "destWalletAddress": "0x141d32a89a1e0a5Ef360034a2f60a4B917c18838", + "feeData": { + "metabridge": { + "amount": "58919", + "asset": { + "address": "0xaf88d065e77c8cc2239327c5edb3a432268e5831", + "aggregators": [ + "traderJoe", + "oneInch", + "liFi", + "socket", + "rubic", + "squid", + "rango", + "sonarwatch", + "sushiSwap" + ], + "assetId": "eip155:42161/erc20:0xaf88d065e77c8cc2239327c5edb3a432268e5831", + "chainId": 42161, + "coingeckoId": "usd-coin", + "decimals": 6, + "iconUrl": "https://static.cx.metamask.io/api/v2/tokenIcons/assets/eip155/42161/erc20/0xaf88d065e77c8cc2239327c5edb3a432268e5831.png", + "metadata": { + "storage": { + "approval": 10, + "balance": 9 + } + }, + "name": "USD Coin (Native)", + "occurrences": 9, + "symbol": "USDC" + }, + "baseBpsFee": 87.5, + "quoteBpsFee": 87.5 + } + }, + "gasIncluded": false, + "gasIncluded7702": false, + "gasSponsored": false, + "minDestTokenAmount": "3013435496906657", + "priceData": { + "priceImpact": "0.0004939061472603681", + "totalFeeAmountUsd": "0.058902561598999995", + "totalFromAmountUsd": "6.73176131444", + "totalToAmountUsd": "6.669562986883172" + }, + "protocols": ["uniswap"], + "requestId": "0x0a6dd43c9406f7df87dfb23361321f36ac3f71c179a8d1d93d89696e308cadaa", + "slippage": 2, + "srcAsset": { + "address": "0xaf88d065e77c8cc2239327c5edb3a432268e5831", + "aggregators": [ + "traderJoe", + "oneInch", + "liFi", + "socket", + "rubic", + "squid", + "rango", + "sonarwatch", + "sushiSwap" + ], + "assetId": "eip155:42161/erc20:0xaf88d065e77c8cc2239327c5edb3a432268e5831", + "chainId": 42161, + "coingeckoId": "usd-coin", + "decimals": 6, + "iconUrl": "https://static.cx.metamask.io/api/v2/tokenIcons/assets/eip155/42161/erc20/0xaf88d065e77c8cc2239327c5edb3a432268e5831.png", + "metadata": { + "storage": { + "approval": 10, + "balance": 9 + } + }, + "name": "USD Coin (Native)", + "occurrences": 9, + "symbol": "USDC" + }, + "srcChainId": 42161, + "srcTokenAmount": "6674721", + "steps": [], + "walletAddress": "0x141d32a89a1e0a5Ef360034a2f60a4B917c18838" + }, + "slippagePercentage": 0, + "startTime": 1774466725456, + "status": { + "srcChain": { + "chainId": 42161 + }, + "status": "PENDING" + }, + "txMetaId": "601bb6f0-2880-11f1-946d-9d8a4fbc2cec" + }, + "6293f610-27d4-11f1-bdc7-7be08aed0cd0": { + "account": "0xf25bd11c334507fd007d584e2d0b7b2c6543f714", + "batchId": "0x4533dc06e8c34725a41118b46c44eefb", + "estimatedProcessingTimeInSeconds": 0, + "hasApprovalTx": false, + "isStxEnabled": false, + "location": "Main View", + "originalTransactionId": "6293f610-27d4-11f1-bdc7-7be08aed0cd0", + "pricingData": { + "amountSent": "0.003248538809701272", + "amountSentInUsd": "2.065037901898153700441961984", + "quotedGasAmount": "0.0000097988", + "quotedGasInUsd": "0.0062289215485716736", + "quotedReturnInUsd": "2.03720033854561422319381902522746497377128448" + }, + "quote": { + "aggregator": "uniswap", + "aggregatorType": "AGG", + "bridgeId": "uniswap", + "bridges": ["uniswap"], + "destAsset": { + "address": "0x55d398326f99059ff775485246999027b3197955", + "aggregators": [ + "pancakeExtended", + "oneInch", + "liFi", + "trustWallet", + "socket", + "squid", + "rango", + "sonarwatch", + "sushiSwap" + ], + "assetId": "eip155:56/erc20:0x55d398326f99059ff775485246999027b3197955", + "chainId": 56, + "coingeckoId": "binance-bridged-usdt-bnb-smart-chain", + "decimals": 18, + "iconUrl": "https://static.cx.metamask.io/api/v2/tokenIcons/assets/eip155/56/erc20/0x55d398326f99059ff775485246999027b3197955.png", + "metadata": { + "storage": { + "approval": 2, + "balance": 1 + } + }, + "name": "Tether USD", + "occurrences": 9, + "symbol": "USDT" + }, + "destChainId": 56, + "destTokenAmount": "2038241880146651638", + "destWalletAddress": "0xF25bd11C334507Fd007d584E2D0b7b2C6543f714", + "feeData": { + "metabridge": { + "amount": "28424714584886", + "asset": { + "address": "0x0000000000000000000000000000000000000000", + "aggregators": [], + "assetId": "eip155:56/slip44:714", + "chainId": 56, + "coingeckoId": "binancecoin", + "decimals": 18, + "iconUrl": "https://static.cx.metamask.io/api/v2/tokenIcons/assets/eip155/56/slip44/714.png", + "metadata": {}, + "name": "Binance Coin", + "occurrences": 100, + "symbol": "BNB" + }, + "baseBpsFee": 87.5, + "quoteBpsFee": 87.5 + }, + "txFee": { + "amount": "19880370000000", + "asset": { + "address": "0x0000000000000000000000000000000000000000", + "aggregators": [], + "assetId": "eip155:56/slip44:714", + "chainId": 56, + "coingeckoId": "binancecoin", + "decimals": 18, + "iconUrl": "https://static.cx.metamask.io/api/v2/tokenIcons/assets/eip155/56/slip44/714.png", + "metadata": {}, + "name": "Binance Coin", + "occurrences": 100, + "symbol": "BNB" + }, + "maxFeePerGas": "60000000", + "maxPriorityFeePerGas": "60000000" + } + }, + "gasIncluded": true, + "gasIncluded7702": false, + "gasSponsored": false, + "minDestTokenAmount": "1997477042543718605", + "priceData": { + "priceImpact": "0.008612913640054076", + "totalFeeAmountUsd": "0.018091478091842392", + "totalFromAmountUsd": "2.0675974962105688", + "totalToAmountUsd": "2.037245179867256" + }, + "protocols": ["uniswap"], + "requestId": "0x79d7512658788621701dbd70974fe2ea23b17338e882c93b1a84b9a0eb872a2e", + "slippage": 2, + "srcAsset": { + "address": "0x0000000000000000000000000000000000000000", + "aggregators": [], + "assetId": "eip155:56/slip44:714", + "chainId": 56, + "coingeckoId": "binancecoin", + "decimals": 18, + "iconUrl": "https://static.cx.metamask.io/api/v2/tokenIcons/assets/eip155/56/slip44/714.png", + "metadata": {}, + "name": "Binance Coin", + "occurrences": 100, + "symbol": "BNB" + }, + "srcChainId": 56, + "srcTokenAmount": "3200233725116386", + "steps": [], + "walletAddress": "0xF25bd11C334507Fd007d584E2D0b7b2C6543f714" + }, + "slippagePercentage": 0, + "startTime": 1774392856246, + "status": { + "srcChain": { + "chainId": 56, + "txHash": "0x4f23859df285d5c21c0822b46837376bdb7639f4ca5eb7a1503430629f644841" + }, + "status": "FAILED" + }, + "txMetaId": "6293f610-27d4-11f1-bdc7-7be08aed0cd0" + }, + "629zuNU9bH6Y2hL4S4ewfSwWbEXfj6rFp7EUTf9oGsvKcYX2s2S5WLG2gTrm5aYhByo6aGSdYyCFDAuqrN3CpPuU": { + "account": "CyGir7UdxRCsNXkA89qH1P5p3Zhx11XxsE97WSfNMnLT", + "completionTime": 1775782718763, + "estimatedProcessingTimeInSeconds": 3, + "hasApprovalTx": false, + "isStxEnabled": false, + "location": "Main View", + "originalTransactionId": "629zuNU9bH6Y2hL4S4ewfSwWbEXfj6rFp7EUTf9oGsvKcYX2s2S5WLG2gTrm5aYhByo6aGSdYyCFDAuqrN3CpPuU", + "pricingData": { + "amountSent": "2.043238", + "amountSentInUsd": "2.043238", + "quotedGasAmount": "0.000005", + "quotedGasInUsd": "0.00041575", + "quotedReturnInUsd": "2.003826785510478605021986752" + }, + "quote": { + "aggregator": "relay", + "bridgeId": "relay", + "bridges": ["Relay"], + "destAsset": { + "address": "0x0000000000000000000000000000000000000000", + "aggregators": [], + "assetId": "eip155:43114/slip44:9005", + "chainId": 43114, + "coingeckoId": "avalanche-2", + "decimals": 18, + "iconUrl": "https://static.cx.metamask.io/api/v2/tokenIcons/assets/eip155/43114/slip44/9005.png", + "metadata": {}, + "name": "Avalanche", + "occurrences": 100, + "symbol": "AVAX" + }, + "destChainId": 43114, + "destTokenAmount": "214708000556451088", + "feeData": { + "metabridge": { + "amount": "17878", + "asset": { + "address": "EPjFWdd5AufqSSqeM2qN1xzybapC8G4wEGGkZwyTDt1v", + "aggregators": [ + "trustWallet", + "coinGecko", + "jupiter", + "orca", + "lifi" + ], + "assetId": "solana:5eykt4UsFv8P8NJdTREpY1vzqKqZKvdp/token:EPjFWdd5AufqSSqeM2qN1xzybapC8G4wEGGkZwyTDt1v", + "chainId": 1151111081099710, + "coingeckoId": "usd-coin", + "decimals": 6, + "iconUrl": "https://static.cx.metamask.io/api/v2/tokenIcons/assets/solana/5eykt4UsFv8P8NJdTREpY1vzqKqZKvdp/token/EPjFWdd5AufqSSqeM2qN1xzybapC8G4wEGGkZwyTDt1v.png", + "metadata": {}, + "name": "USD Coin", + "occurrences": 5, + "symbol": "USDC" + }, + "baseBpsFee": 87.5, + "quoteBpsFee": 87.5 + } + }, + "minDestTokenAmount": "207558224137921266", + "priceData": { + "priceImpact": "0.011957083308952314", + "totalFeeAmountUsd": "0.017877427904", + "totalFromAmountUsd": "2.043172616384", + "totalToAmountUsd": "2.0010785651861243" + }, + "protocols": ["Relay"], + "requestId": "0x94e2bc48eb6873749095be8cbe4f09c2dafcf14769e411d2b571f406a0a3ba23", + "slippage": 2, + "srcAsset": { + "address": "EPjFWdd5AufqSSqeM2qN1xzybapC8G4wEGGkZwyTDt1v", + "aggregators": [ + "trustWallet", + "coinGecko", + "jupiter", + "orca", + "lifi" + ], + "assetId": "solana:5eykt4UsFv8P8NJdTREpY1vzqKqZKvdp/token:EPjFWdd5AufqSSqeM2qN1xzybapC8G4wEGGkZwyTDt1v", + "chainId": 1151111081099710, + "coingeckoId": "usd-coin", + "decimals": 6, + "iconUrl": "https://static.cx.metamask.io/api/v2/tokenIcons/assets/solana/5eykt4UsFv8P8NJdTREpY1vzqKqZKvdp/token/EPjFWdd5AufqSSqeM2qN1xzybapC8G4wEGGkZwyTDt1v.png", + "metadata": {}, + "name": "USD Coin", + "occurrences": 5, + "symbol": "USDC" + }, + "srcChainId": 1151111081099710, + "srcTokenAmount": "2025360", + "steps": [ + { + "action": "bridge", + "destAmount": "214708000556451088", + "destAsset": { + "address": "0x0000000000000000000000000000000000000000", + "aggregators": [], + "assetId": "eip155:43114/slip44:9005", + "chainId": 43114, + "coingeckoId": "avalanche-2", + "decimals": 18, + "iconUrl": "https://static.cx.metamask.io/api/v2/tokenIcons/assets/eip155/43114/slip44/9005.png", + "metadata": {}, + "name": "Avalanche", + "occurrences": 100, + "symbol": "AVAX" + }, + "destChainId": 43114, + "protocol": { + "name": "relay" + }, + "srcAmount": "2025360", + "srcAsset": { + "address": "EPjFWdd5AufqSSqeM2qN1xzybapC8G4wEGGkZwyTDt1v", + "aggregators": [ + "trustWallet", + "coinGecko", + "jupiter", + "orca", + "lifi" + ], + "assetId": "solana:5eykt4UsFv8P8NJdTREpY1vzqKqZKvdp/token:EPjFWdd5AufqSSqeM2qN1xzybapC8G4wEGGkZwyTDt1v", + "chainId": 1151111081099710, + "coingeckoId": "usd-coin", + "decimals": 6, + "iconUrl": "https://static.cx.metamask.io/api/v2/tokenIcons/assets/solana/5eykt4UsFv8P8NJdTREpY1vzqKqZKvdp/token/EPjFWdd5AufqSSqeM2qN1xzybapC8G4wEGGkZwyTDt1v.png", + "metadata": {}, + "name": "USD Coin", + "occurrences": 5, + "symbol": "USDC" + }, + "srcChainId": 1151111081099710 + } + ] + }, + "slippagePercentage": 0, + "startTime": 1775782708205, + "status": { + "bridge": "relay", + "destChain": { + "chainId": 43114, + "txHash": "0x5961b24303fc655138d69da0eba8bfcb2614d5a32aadfd73ccbdf2243e00ad2a" + }, + "isExpectedToken": true, + "isUnrecognizedRouterAddress": false, + "srcChain": { + "chainId": 1151111081099710, + "txHash": "629zuNU9bH6Y2hL4S4ewfSwWbEXfj6rFp7EUTf9oGsvKcYX2s2S5WLG2gTrm5aYhByo6aGSdYyCFDAuqrN3CpPuU" + }, + "status": "COMPLETE" + }, + "txMetaId": "629zuNU9bH6Y2hL4S4ewfSwWbEXfj6rFp7EUTf9oGsvKcYX2s2S5WLG2gTrm5aYhByo6aGSdYyCFDAuqrN3CpPuU" + }, + "6b4efc70-27d2-11f1-a0f0-6b5c45028a09": { + "account": "0xf25bd11c334507fd007d584e2d0b7b2c6543f714", + "batchId": "0x470316959eb04abd827a6f8b0ad6bf8f", + "estimatedProcessingTimeInSeconds": 0, + "hasApprovalTx": true, + "isStxEnabled": false, + "location": "Main View", + "originalTransactionId": "6b4efc70-27d2-11f1-a0f0-6b5c45028a09", + "pricingData": { + "amountSent": "2.108403476146385493", + "amountSentInUsd": "2.1074083097053415436154080374859755555728608", + "quotedGasAmount": "0.0000124824", + "quotedGasInUsd": "0.0079348379738224128", + "quotedReturnInUsd": "2.059446601893874834713961984" + }, + "quote": { + "aggregator": "uniswap", + "aggregatorType": "AGG", + "bridgeId": "uniswap", + "bridges": ["uniswap"], + "destAsset": { + "address": "0x0000000000000000000000000000000000000000", + "aggregators": [], + "assetId": "eip155:56/slip44:714", + "chainId": 56, + "coingeckoId": "binancecoin", + "decimals": 18, + "iconUrl": "https://static.cx.metamask.io/api/v2/tokenIcons/assets/eip155/56/slip44/714.png", + "metadata": {}, + "name": "Binance Coin", + "occurrences": 100, + "symbol": "BNB" + }, + "destChainId": 56, + "destTokenAmount": "3239743060701272", + "destWalletAddress": "0xF25bd11C334507Fd007d584E2D0b7b2C6543f714", + "feeData": { + "metabridge": { + "amount": "28994205572798", + "asset": { + "address": "0x0000000000000000000000000000000000000000", + "aggregators": [], + "assetId": "eip155:56/slip44:714", + "chainId": 56, + "coingeckoId": "binancecoin", + "decimals": 18, + "iconUrl": "https://static.cx.metamask.io/api/v2/tokenIcons/assets/eip155/56/slip44/714.png", + "metadata": {}, + "name": "Binance Coin", + "occurrences": 100, + "symbol": "BNB" + }, + "baseBpsFee": 87.5, + "quoteBpsFee": 87.5 + }, + "txFee": { + "amount": "44886227760000", + "asset": { + "address": "0x0000000000000000000000000000000000000000", + "aggregators": [], + "assetId": "eip155:56/slip44:714", + "chainId": 56, + "coingeckoId": "binancecoin", + "decimals": 18, + "iconUrl": "https://static.cx.metamask.io/api/v2/tokenIcons/assets/eip155/56/slip44/714.png", + "metadata": {}, + "name": "Binance Coin", + "occurrences": 100, + "symbol": "BNB" + }, + "maxFeePerGas": "60000000", + "maxPriorityFeePerGas": "60000000" + } + }, + "gasIncluded": true, + "gasIncluded7702": true, + "gasSponsored": false, + "minDestTokenAmount": "3174948199487246", + "priceData": { + "priceImpact": "-0.0002782622885063376", + "totalFeeAmountUsd": "0.018444953817191172", + "totalFromAmountUsd": "2.107408309705638", + "totalToAmountUsd": "2.0609949454957213" + }, + "protocols": ["uniswap"], + "requestId": "0x1a5257a6f038924e4ab93b6bc33d4963f3f63d9bb55956b6fcd9dfc469b78914", + "slippage": 2, + "srcAsset": { + "address": "0x55d398326f99059ff775485246999027b3197955", + "aggregators": [ + "pancakeExtended", + "oneInch", + "liFi", + "trustWallet", + "socket", + "squid", + "rango", + "sonarwatch", + "sushiSwap" + ], + "assetId": "eip155:56/erc20:0x55d398326f99059ff775485246999027b3197955", + "chainId": 56, + "coingeckoId": "binance-bridged-usdt-bnb-smart-chain", + "decimals": 18, + "iconUrl": "https://static.cx.metamask.io/api/v2/tokenIcons/assets/eip155/56/erc20/0x55d398326f99059ff775485246999027b3197955.png", + "metadata": { + "storage": { + "approval": 2, + "balance": 1 + } + }, + "name": "Tether USD", + "occurrences": 9, + "symbol": "USDT" + }, + "srcChainId": 56, + "srcTokenAmount": "2108403476146385493", + "steps": [], + "walletAddress": "0xF25bd11C334507Fd007d584E2D0b7b2C6543f714" + }, + "slippagePercentage": 0, + "startTime": 1774392012059, + "status": { + "srcChain": { + "chainId": 56, + "txHash": "0x0de1f631e5001ff51377f1960919197efe13013e314ae2d4d1e7586002ce7c6c" + }, + "status": "PENDING" + }, + "txMetaId": "6b4efc70-27d2-11f1-a0f0-6b5c45028a09" + }, + "6c056100-4fdb-11f1-b40a-151a477935d3": { + "account": "0x141d32a89a1e0a5ef360034a2f60a4b917c18838", + "batchId": "0x19e286f5d28", + "estimatedProcessingTimeInSeconds": 0, + "hasApprovalTx": true, + "isStxEnabled": false, + "location": "Main View", + "originalTransactionId": "6c056100-4fdb-11f1-b40a-151a477935d3", + "pricingData": { + "amountSent": "0.099580536354815734", + "amountSentInUsd": "0.099554943782882477921717343416991162512", + "quotedGasAmount": "0.11302345742819148", + "quotedGasInUsd": "0.01071081622995871138942176", + "quotedReturnInUsd": "1.0416152858025722884884" + }, + "quote": { + "aggregator": "uniswap", + "aggregatorType": "AGG", + "bridgeId": "uniswap", + "bridges": ["uniswap"], + "destAsset": { + "address": "0x2791bca1f2de4661ed88a30c99a7a9449aa84174", + "aggregators": [ + "metamask", + "oneInch", + "liFi", + "trustWallet", + "socket", + "rubic", + "squid", + "rango", + "sonarwatch", + "sushiSwap" + ], + "assetId": "eip155:137/erc20:0x2791bca1f2de4661ed88a30c99a7a9449aa84174", + "chainId": 137, + "coingeckoId": "bridged-usdc-polygon-pos-bridge", + "decimals": 6, + "iconUrl": "https://static.cx.metamask.io/api/v2/tokenIcons/assets/eip155/137/erc20/0x2791bca1f2de4661ed88a30c99a7a9449aa84174.png", + "metadata": { + "storage": { + "approval": 1, + "balance": 0 + } + }, + "name": "USD Coin (PoS)", + "occurrences": 10, + "symbol": "USDC.E" + }, + "destChainId": 137, + "destTokenAmount": "1041058", + "destWalletAddress": "0x141d32a89a1e0a5ef360034a2f60a4b917c18838", + "feeData": { + "metabridge": { + "amount": "9189", + "asset": { + "address": "0x2791bca1f2de4661ed88a30c99a7a9449aa84174", + "aggregators": [ + "metamask", + "oneInch", + "liFi", + "trustWallet", + "socket", + "rubic", + "squid", + "rango", + "sonarwatch", + "sushiSwap" + ], + "assetId": "eip155:137/erc20:0x2791bca1f2de4661ed88a30c99a7a9449aa84174", + "chainId": 137, + "coingeckoId": "bridged-usdc-polygon-pos-bridge", + "decimals": 6, + "iconUrl": "https://static.cx.metamask.io/api/v2/tokenIcons/assets/eip155/137/erc20/0x2791bca1f2de4661ed88a30c99a7a9449aa84174.png", + "metadata": { + "storage": { + "approval": 1, + "balance": 0 + } + }, + "name": "USD Coin (PoS)", + "occurrences": 10, + "symbol": "USDC.E" + }, + "baseBpsFee": 87.5, + "quoteBpsFee": 87.5, + "usd": "0.009193918937503804" + } + }, + "gasIncluded": false, + "gasIncluded7702": false, + "gasSponsored": false, + "minDestTokenAmount": "1035852", + "priceData": { + "priceImpact": "-0.00022325514408972778", + "totalFeeAmountUsd": "0.009193918937503804", + "totalFromAmountUsd": "1.050574658543306", + "totalToAmountUsd": "1.0416152858025722" + }, + "protocols": ["uniswap"], + "requestId": "0x14c88b05d47f7d48b848e576afd4d00c4e6f08466970f4c8f77c602b503134ff", + "slippage": 0.5, + "srcAsset": { + "address": "0x53e0bca35ec356bd5dddfebbd1fc0fd03fabad39", + "aggregators": [ + "sonarwatch", + "oneInch", + "liFi", + "trustWallet", + "socket", + "rubic", + "squid", + "rango", + "sushiSwap" + ], + "assetId": "eip155:137/erc20:0x53e0bca35ec356bd5dddfebbd1fc0fd03fabad39", + "chainId": 137, + "coingeckoId": "chainlink", + "decimals": 18, + "iconUrl": "https://static.cx.metamask.io/api/v2/tokenIcons/assets/eip155/137/erc20/0x53e0bca35ec356bd5dddfebbd1fc0fd03fabad39.png", + "metadata": { + "storage": { + "approval": 1, + "balance": 0 + } + }, + "name": "ChainLink Token", + "occurrences": 9, + "symbol": "LINK" + }, + "srcChainId": 137, + "srcTokenAmount": "99580536354815734", + "steps": [], + "walletAddress": "0x141d32a89a1e0a5ef360034a2f60a4b917c18838" + }, + "slippagePercentage": 0, + "startTime": 1778793903669, + "status": { + "srcChain": { + "chainId": 137, + "txHash": "0xa409941b8fb0650254d6f73e20530bae227a62bf40487ff5236fdfd8f3d79d0e" + }, + "status": "COMPLETE" + }, + "tokenSecurityTypeDestination": "Verified", + "txMetaId": "6c056100-4fdb-11f1-b40a-151a477935d3" + }, + "6d2a37c0-2864-11f1-9be8-5fbe36423c6b": { + "account": "0xf25bd11c334507fd007d584e2d0b7b2c6543f714", + "batchId": "0xffd99928201c466fa70b141982bc2496", + "estimatedProcessingTimeInSeconds": 0, + "hasApprovalTx": false, + "isStxEnabled": false, + "location": "Main View", + "originalTransactionId": "6d2a37c0-2864-11f1-9be8-5fbe36423c6b", + "pricingData": { + "amountSent": "0.003122743098328475", + "amountSentInUsd": "2.016669861373136770116820025", + "quotedGasAmount": "0.0000125086", + "quotedGasInUsd": "0.0080780633672602474", + "quotedReturnInUsd": "1.9797467411305877312993186198019131254262016" + }, + "quote": { + "aggregator": "1inch", + "aggregatorType": "AGG", + "bridgeId": "1inch", + "bridges": ["1inch"], + "destAsset": { + "address": "0x55d398326f99059ff775485246999027b3197955", + "aggregators": [ + "pancakeExtended", + "oneInch", + "liFi", + "trustWallet", + "socket", + "squid", + "rango", + "sonarwatch", + "sushiSwap" + ], + "assetId": "eip155:56/erc20:0x55d398326f99059ff775485246999027b3197955", + "chainId": 56, + "coingeckoId": "binance-bridged-usdt-bnb-smart-chain", + "decimals": 18, + "iconUrl": "https://static.cx.metamask.io/api/v2/tokenIcons/assets/eip155/56/erc20/0x55d398326f99059ff775485246999027b3197955.png", + "metadata": { + "storage": { + "approval": 2, + "balance": 1 + } + }, + "name": "Tether USD", + "occurrences": 9, + "symbol": "USDT" + }, + "destChainId": 56, + "destTokenAmount": "1979519024784781824", + "destWalletAddress": "0xF25bd11C334507Fd007d584E2D0b7b2C6543f714", + "feeData": { + "metabridge": { + "amount": "27324002110374", + "asset": { + "address": "0x0000000000000000000000000000000000000000", + "aggregators": [], + "assetId": "eip155:56/slip44:714", + "chainId": 56, + "coingeckoId": "binancecoin", + "decimals": 18, + "iconUrl": "https://static.cx.metamask.io/api/v2/tokenIcons/assets/eip155/56/slip44/714.png", + "metadata": {}, + "name": "Binance Coin", + "occurrences": 100, + "symbol": "BNB" + }, + "baseBpsFee": 87.5, + "quoteBpsFee": 87.5 + }, + "txFee": { + "amount": "28801260000000", + "asset": { + "address": "0x0000000000000000000000000000000000000000", + "aggregators": [], + "assetId": "eip155:56/slip44:714", + "chainId": 56, + "coingeckoId": "binancecoin", + "decimals": 18, + "iconUrl": "https://static.cx.metamask.io/api/v2/tokenIcons/assets/eip155/56/slip44/714.png", + "metadata": {}, + "name": "Binance Coin", + "occurrences": 100, + "symbol": "BNB" + }, + "maxFeePerGas": "60000000", + "maxPriorityFeePerGas": "60000000" + } + }, + "gasIncluded": true, + "gasIncluded7702": false, + "gasSponsored": false, + "minDestTokenAmount": "1939928644289086187", + "priceData": { + "priceImpact": "0.009170148481422774", + "totalFeeAmountUsd": "0.017639556042394144", + "totalFromAmountUsd": "2.0159492619879136", + "totalToAmountUsd": "1.979039981180784" + }, + "protocols": ["1inch"], + "requestId": "0xc782239cfd0648844d9a3c09b2d1e892356e45aa4b5dbc4182aed8c70b289589", + "slippage": 2, + "srcAsset": { + "address": "0x0000000000000000000000000000000000000000", + "aggregators": [], + "assetId": "eip155:56/slip44:714", + "chainId": 56, + "coingeckoId": "binancecoin", + "decimals": 18, + "iconUrl": "https://static.cx.metamask.io/api/v2/tokenIcons/assets/eip155/56/slip44/714.png", + "metadata": {}, + "name": "Binance Coin", + "occurrences": 100, + "symbol": "BNB" + }, + "srcChainId": 56, + "srcTokenAmount": "3066617836218101", + "steps": [], + "walletAddress": "0xF25bd11C334507Fd007d584E2D0b7b2C6543f714" + }, + "slippagePercentage": 0, + "startTime": 1774454721665, + "status": { + "srcChain": { + "chainId": 56, + "txHash": "0x56a7b52d67a823c3b2643abe07da52a648374689ede5189056b09c8afb4ffd72" + }, + "status": "FAILED" + }, + "txMetaId": "6d2a37c0-2864-11f1-9be8-5fbe36423c6b" + }, + "6f857190-287f-11f1-90e5-9d8a4fbc2cec": { + "account": "0xf25bd11c334507fd007d584e2d0b7b2c6543f714", + "batchId": "0x9fe1fed3dfd642f194e16c231a5391ce", + "estimatedProcessingTimeInSeconds": 0, + "hasApprovalTx": false, + "isStxEnabled": false, + "location": "Main View", + "originalTransactionId": "6f857190-287f-11f1-90e5-9d8a4fbc2cec", + "pricingData": { + "amountSent": "0.001954139214518098", + "amountSentInUsd": "1.262188036237567910589802256", + "quotedGasAmount": "0.0000118246", + "quotedGasInUsd": "0.0076375667313832112", + "quotedReturnInUsd": "1.23364619856413982467282975566223929126264832" + }, + "quote": { + "aggregator": "1inch", + "aggregatorType": "AGG", + "bridgeId": "1inch", + "bridges": ["1inch"], + "destAsset": { + "address": "0x55d398326f99059ff775485246999027b3197955", + "aggregators": [ + "pancakeExtended", + "oneInch", + "liFi", + "trustWallet", + "socket", + "rubic", + "squid", + "rango", + "sonarwatch", + "sushiSwap" + ], + "assetId": "eip155:56/erc20:0x55d398326f99059ff775485246999027b3197955", + "chainId": 56, + "coingeckoId": "binance-bridged-usdt-bnb-smart-chain", + "decimals": 18, + "iconUrl": "https://static.cx.metamask.io/api/v2/tokenIcons/assets/eip155/56/erc20/0x55d398326f99059ff775485246999027b3197955.png", + "metadata": { + "storage": { + "approval": 2, + "balance": 1 + } + }, + "name": "Tether USD", + "occurrences": 11, + "symbol": "USDT" + }, + "destChainId": 56, + "destTokenAmount": "1234025044253444864", + "destWalletAddress": "0xF25bd11C334507Fd007d584E2D0b7b2C6543f714", + "feeData": { + "metabridge": { + "amount": "17098718127033", + "asset": { + "address": "0x0000000000000000000000000000000000000000", + "aggregators": [], + "assetId": "eip155:56/slip44:714", + "chainId": 56, + "coingeckoId": "binancecoin", + "decimals": 18, + "iconUrl": "https://static.cx.metamask.io/api/v2/tokenIcons/assets/eip155/56/slip44/714.png", + "metadata": {}, + "name": "Binance Coin", + "occurrences": 100, + "symbol": "BNB" + }, + "baseBpsFee": 87.5, + "quoteBpsFee": 87.5 + }, + "txFee": { + "amount": "27237780000000", + "asset": { + "address": "0x0000000000000000000000000000000000000000", + "aggregators": [], + "assetId": "eip155:56/slip44:714", + "chainId": 56, + "coingeckoId": "binancecoin", + "decimals": 18, + "iconUrl": "https://static.cx.metamask.io/api/v2/tokenIcons/assets/eip155/56/slip44/714.png", + "metadata": {}, + "name": "Binance Coin", + "occurrences": 100, + "symbol": "BNB" + }, + "maxFeePerGas": "60000000", + "maxPriorityFeePerGas": "60000000" + } + }, + "gasIncluded": true, + "gasIncluded7702": false, + "gasSponsored": false, + "minDestTokenAmount": "1209344543368375966", + "priceData": { + "priceImpact": "0.009004422655350987", + "totalFeeAmountUsd": "0.011046455858788398", + "totalFromAmountUsd": "1.2624520981472718", + "totalToAmountUsd": "1.233646198564859" + }, + "protocols": ["1inch"], + "requestId": "0x064063aa07ae348d8bbc16b470750c609ea22b317c2fb6f0d87df32a37902642", + "slippage": 2, + "srcAsset": { + "address": "0x0000000000000000000000000000000000000000", + "aggregators": [], + "assetId": "eip155:56/slip44:714", + "chainId": 56, + "coingeckoId": "binancecoin", + "decimals": 18, + "iconUrl": "https://static.cx.metamask.io/api/v2/tokenIcons/assets/eip155/56/slip44/714.png", + "metadata": {}, + "name": "Binance Coin", + "occurrences": 100, + "symbol": "BNB" + }, + "srcChainId": 56, + "srcTokenAmount": "1909802716391065", + "steps": [], + "walletAddress": "0xF25bd11C334507Fd007d584E2D0b7b2C6543f714" + }, + "slippagePercentage": 0, + "startTime": 1774466322032, + "status": { + "srcChain": { + "chainId": 56, + "txHash": "0xae30084eaf284525cec45c638035350e52fe62d662043ed7f02b73eba7789c3d" + }, + "status": "FAILED" + }, + "txMetaId": "6f857190-287f-11f1-90e5-9d8a4fbc2cec" + }, + "708ff120-1d65-11f1-9c48-3b0a0edc0d9a": { + "account": "0x30e8ccad5a980bdf30447f8c2c48e70989d9d294", + "approvalTxId": "707d2c70-1d65-11f1-9c48-3b0a0edc0d9a", + "batchId": "0xb45d9fb426cf43fd8b51aa8fe45161f0", + "estimatedProcessingTimeInSeconds": 0, + "hasApprovalTx": true, + "isStxEnabled": true, + "location": "Main View", + "originalTransactionId": "708ff120-1d65-11f1-9c48-3b0a0edc0d9a", + "pricingData": { + "amountSent": "0.534779610420427444", + "amountSentInUsd": "0.5347796104202614652082920130605097598237108", + "quotedGasAmount": "0.0000124853", + "quotedGasInUsd": "0.008074860895974259", + "quotedReturnInUsd": "0.52967896540979055737359886" + }, + "quote": { + "aggregator": "uniswap", + "aggregatorType": "AGG", + "bridgeId": "uniswap", + "bridges": ["uniswap"], + "destAsset": { + "address": "0x0000000000000000000000000000000000000000", + "aggregators": [], + "assetId": "eip155:56/slip44:714", + "chainId": 56, + "coingeckoId": "binancecoin", + "decimals": 18, + "iconUrl": "https://static.cx.metamask.io/api/v2/tokenIcons/assets/eip155/56/slip44/714.png", + "metadata": {}, + "name": "Binance Coin", + "occurrences": 100, + "symbol": "BNB" + }, + "destChainId": 56, + "destTokenAmount": "818986341935362", + "destWalletAddress": "0x30E8ccaD5A980BDF30447f8c2C48e70989D9d294", + "feeData": { + "metabridge": { + "amount": "7229387633729", + "asset": { + "address": "0x0000000000000000000000000000000000000000", + "aggregators": [], + "assetId": "eip155:56/slip44:714", + "chainId": 56, + "coingeckoId": "binancecoin", + "decimals": 18, + "iconUrl": "https://static.cx.metamask.io/api/v2/tokenIcons/assets/eip155/56/slip44/714.png", + "metadata": {}, + "name": "Binance Coin", + "occurrences": 100, + "symbol": "BNB" + }, + "baseBpsFee": 87.5, + "quoteBpsFee": 87.5 + } + }, + "gasIncluded": false, + "gasIncluded7702": false, + "gasSponsored": false, + "minDestTokenAmount": "802606615096654", + "priceData": { + "priceImpact": "0.0016745782188071967", + "totalFeeAmountUsd": "0.004671485701163005", + "totalFromAmountUsd": "0.5347796104204274", + "totalToAmountUsd": "0.5292125944317922" + }, + "protocols": ["uniswap"], + "requestId": "0x362b97757f4a87d39dcb196aa76b423161699ff3e67e6aa9467184891c61d017", + "slippage": 2, + "srcAsset": { + "address": "0x55d398326f99059ff775485246999027b3197955", + "aggregators": [ + "pancakeExtended", + "oneInch", + "liFi", + "socket", + "rubic", + "squid", + "rango", + "sonarwatch", + "sushiSwap" + ], + "assetId": "eip155:56/erc20:0x55d398326f99059ff775485246999027b3197955", + "chainId": 56, + "coingeckoId": "binance-bridged-usdt-bnb-smart-chain", + "decimals": 18, + "iconUrl": "https://static.cx.metamask.io/api/v2/tokenIcons/assets/eip155/56/erc20/0x55d398326f99059ff775485246999027b3197955.png", + "metadata": { + "storage": { + "approval": 2, + "balance": 1 + } + }, + "name": "Tether USD", + "occurrences": 11, + "symbol": "USDT" + }, + "srcChainId": 56, + "srcTokenAmount": "534779610420427444", + "steps": [], + "walletAddress": "0x30E8ccaD5A980BDF30447f8c2C48e70989D9d294" + }, + "slippagePercentage": 0, + "startTime": 1773245693979, + "status": { + "srcChain": { + "chainId": 56 + }, + "status": "PENDING" + }, + "txMetaId": "708ff120-1d65-11f1-9c48-3b0a0edc0d9a" + }, + "718d4c80-28a0-11f1-a6e7-213b64721d37": { + "account": "0x141d32a89a1e0a5ef360034a2f60a4b917c18838", + "batchId": "0x46d5c3f4c1b244eabf150bf31085c0be", + "estimatedProcessingTimeInSeconds": 0, + "hasApprovalTx": false, + "isStxEnabled": true, + "location": "Main View", + "originalTransactionId": "718d4c80-28a0-11f1-a6e7-213b64721d37", + "pricingData": { + "amountSent": "0.003562421097563526", + "amountSentInUsd": "7.752559710142247463523896528", + "quotedGasAmount": "0.0000063660519814", + "quotedGasInUsd": "0.0138538361277467662838992", + "quotedReturnInUsd": "7.675091289067753467265996954682816" + }, + "quote": { + "aggregator": "1inch", + "aggregatorType": "AGG", + "bridgeId": "1inch", + "bridges": ["1inch"], + "destAsset": { + "address": "0x833589fcd6edb6e08f4c7c32d4f71b54bda02913", + "aggregators": [ + "coinGecko", + "oneInch", + "liFi", + "socket", + "rubic", + "squid", + "rango", + "sonarwatch", + "sushiSwap" + ], + "assetId": "eip155:8453/erc20:0x833589fcd6edb6e08f4c7c32d4f71b54bda02913", + "chainId": 8453, + "coingeckoId": "usd-coin", + "decimals": 6, + "iconUrl": "https://static.cx.metamask.io/api/v2/tokenIcons/assets/eip155/8453/erc20/0x833589fcd6edb6e08f4c7c32d4f71b54bda02913.png", + "metadata": { + "storage": { + "approval": 10, + "balance": 9 + } + }, + "name": "USD Coin", + "occurrences": 9, + "symbol": "USDC" + }, + "destChainId": 8453, + "destTokenAmount": "7670213", + "destWalletAddress": "0x141d32a89a1e0a5Ef360034a2f60a4B917c18838", + "feeData": { + "metabridge": { + "amount": "31171184603680", + "asset": { + "address": "0x0000000000000000000000000000000000000000", + "aggregators": [], + "assetId": "eip155:8453/slip44:60", + "chainId": 8453, + "coingeckoId": "ethereum", + "decimals": 18, + "iconUrl": "https://static.cx.metamask.io/api/v2/tokenIcons/assets/eip155/8453/slip44/60.png", + "metadata": {}, + "name": "Ether", + "occurrences": 100, + "symbol": "ETH" + }, + "baseBpsFee": 87.5, + "quoteBpsFee": 87.5 + }, + "txFee": { + "amount": "3057176127001", + "asset": { + "address": "0x0000000000000000000000000000000000000000", + "aggregators": [], + "assetId": "eip155:8453/slip44:60", + "chainId": 8453, + "coingeckoId": "ethereum", + "decimals": 18, + "iconUrl": "https://static.cx.metamask.io/api/v2/tokenIcons/assets/eip155/8453/slip44/60.png", + "metadata": {}, + "name": "Ether", + "occurrences": 100, + "symbol": "ETH" + }, + "maxFeePerGas": "6625001", + "maxPriorityFeePerGas": "1000001" + } + }, + "gasIncluded": true, + "gasIncluded7702": false, + "gasSponsored": false, + "minDestTokenAmount": "7516808", + "priceData": { + "priceImpact": "0.009002885015871374", + "totalFeeAmountUsd": "0.0677736364127052", + "totalFromAmountUsd": "7.74555844716652", + "totalToAmountUsd": "7.669238882949" + }, + "protocols": ["1inch"], + "requestId": "0x595bf98890ec6654d52bebc39ee61e2517b658d177a680d97d6d72338aa148fa", + "slippage": 2, + "srcAsset": { + "address": "0x0000000000000000000000000000000000000000", + "aggregators": [], + "assetId": "eip155:8453/slip44:60", + "chainId": 8453, + "coingeckoId": "ethereum", + "decimals": 18, + "iconUrl": "https://static.cx.metamask.io/api/v2/tokenIcons/assets/eip155/8453/slip44/60.png", + "metadata": {}, + "name": "Ether", + "occurrences": 100, + "symbol": "ETH" + }, + "srcChainId": 8453, + "srcTokenAmount": "3528192736832845", + "steps": [], + "walletAddress": "0x141d32a89a1e0a5Ef360034a2f60a4B917c18838" + }, + "slippagePercentage": 0, + "startTime": 1774480498884, + "status": { + "srcChain": { + "chainId": 8453 + }, + "status": "PENDING" + }, + "txMetaId": "718d4c80-28a0-11f1-a6e7-213b64721d37" + }, + "76c2f1a0-18c4-11f1-88df-555726da3d66": { + "account": "0x30e8ccad5a980bdf30447f8c2c48e70989d9d294", + "approvalTxId": "76b02cf0-18c4-11f1-88df-555726da3d66", + "batchId": "0xf22bff6700ba4c9a9fe88c859fc00852", + "estimatedProcessingTimeInSeconds": 0, + "hasApprovalTx": true, + "isStxEnabled": true, + "location": "Main View", + "originalTransactionId": "76c2f1a0-18c4-11f1-88df-555726da3d66", + "pricingData": { + "amountSent": "1", + "amountSentInUsd": "1.00067665715172017393478255", + "quotedGasAmount": "0.00001510025", + "quotedGasInUsd": "0.00981031907571068375", + "quotedReturnInUsd": "0.970474948444392395147783585" + }, + "quote": { + "aggregator": "1inch", + "aggregatorType": "AGG", + "bridgeId": "1inch", + "bridges": ["1inch"], + "destAsset": { + "address": "0x0000000000000000000000000000000000000000", + "aggregators": [], + "assetId": "eip155:56/slip44:714", + "chainId": 56, + "coingeckoId": "binancecoin", + "decimals": 18, + "iconUrl": "https://static.cx.metamask.io/api/v2/tokenIcons/assets/eip155/56/slip44/714.png", + "metadata": {}, + "name": "Binance Coin", + "occurrences": 100, + "symbol": "BNB" + }, + "destChainId": 56, + "destTokenAmount": "1493775505888511", + "destWalletAddress": "0x30E8ccaD5A980BDF30447f8c2C48e70989D9d294", + "feeData": { + "metabridge": { + "amount": "13483449731676", + "asset": { + "address": "0x0000000000000000000000000000000000000000", + "aggregators": [], + "assetId": "eip155:56/slip44:714", + "chainId": 56, + "coingeckoId": "binancecoin", + "decimals": 18, + "iconUrl": "https://static.cx.metamask.io/api/v2/tokenIcons/assets/eip155/56/slip44/714.png", + "metadata": {}, + "name": "Binance Coin", + "occurrences": 100, + "symbol": "BNB" + }, + "baseBpsFee": 87.5, + "quoteBpsFee": 87.5 + }, + "txFee": { + "amount": "33706728000000", + "asset": { + "address": "0x0000000000000000000000000000000000000000", + "aggregators": [], + "assetId": "eip155:56/slip44:714", + "chainId": 56, + "coingeckoId": "binancecoin", + "decimals": 18, + "iconUrl": "https://static.cx.metamask.io/api/v2/tokenIcons/assets/eip155/56/slip44/714.png", + "metadata": {}, + "name": "Binance Coin", + "occurrences": 100, + "symbol": "BNB" + }, + "maxFeePerGas": "60000000", + "maxPriorityFeePerGas": "60000000" + } + }, + "gasIncluded": true, + "gasIncluded7702": false, + "minDestTokenAmount": "1463899995770740", + "priceData": { + "priceImpact": "-0.0009650791091648792", + "totalFeeAmountUsd": "0.00875844444220478", + "totalFromAmountUsd": "1", + "totalToAmountUsd": "0.9703117553600001" + }, + "protocols": ["1inch"], + "requestId": "0x7c0c3c7b07659be16889b26db140aa56148310c12e0ebfdddf1a6c993a720c55", + "srcAsset": { + "address": "0x55d398326f99059ff775485246999027b3197955", + "aggregators": [ + "pancakeExtended", + "oneInch", + "liFi", + "socket", + "squid", + "rango", + "sonarwatch", + "sushiSwap" + ], + "assetId": "eip155:56/erc20:0x55d398326f99059ff775485246999027b3197955", + "chainId": 56, + "coingeckoId": "binance-bridged-usdt-bnb-smart-chain", + "decimals": 18, + "iconUrl": "https://static.cx.metamask.io/api/v2/tokenIcons/assets/eip155/56/erc20/0x55d398326f99059ff775485246999027b3197955.png", + "metadata": { + "storage": { + "approval": 2, + "balance": 1 + } + }, + "name": "Tether USD", + "occurrences": 8, + "symbol": "USDT" + }, + "srcChainId": 56, + "srcTokenAmount": "1000000000000000000", + "steps": [], + "walletAddress": "0x30E8ccaD5A980BDF30447f8c2C48e70989D9d294" + }, + "slippagePercentage": 0, + "startTime": 1772736750908, + "status": { + "srcChain": { + "chainId": 56 + }, + "status": "PENDING" + }, + "txMetaId": "76c2f1a0-18c4-11f1-88df-555726da3d66" + }, + "787c46c0-1d6c-11f1-9f40-3b0a0edc0d9a": { + "account": "0x30e8ccad5a980bdf30447f8c2c48e70989d9d294", + "batchId": "0xaaf79711868c46669c68b9db88032823", + "estimatedProcessingTimeInSeconds": 0, + "hasApprovalTx": false, + "isStxEnabled": true, + "location": "Main View", + "originalTransactionId": "787c46c0-1d6c-11f1-9f40-3b0a0edc0d9a", + "pricingData": { + "amountSent": "0.001", + "amountSentInUsd": "0.648007542522", + "quotedGasAmount": "0.000009998", + "quotedGasInUsd": "0.006478779410134956", + "quotedReturnInUsd": "0.64487868727580064252311762015359227160215192" + }, + "quote": { + "aggregator": "pancakeswap", + "aggregatorType": "AGG", + "bridgeId": "pancakeswap", + "bridges": ["pancakeswap"], + "destAsset": { + "address": "0x55d398326f99059ff775485246999027b3197955", + "aggregators": [ + "pancakeExtended", + "oneInch", + "liFi", + "socket", + "rubic", + "squid", + "rango", + "sonarwatch", + "sushiSwap" + ], + "assetId": "eip155:56/erc20:0x55d398326f99059ff775485246999027b3197955", + "chainId": 56, + "coingeckoId": "binance-bridged-usdt-bnb-smart-chain", + "decimals": 18, + "iconUrl": "https://static.cx.metamask.io/api/v2/tokenIcons/assets/eip155/56/erc20/0x55d398326f99059ff775485246999027b3197955.png", + "metadata": { + "storage": { + "approval": 2, + "balance": 1 + } + }, + "name": "Tether USD", + "occurrences": 11, + "symbol": "USDT" + }, + "destChainId": 56, + "destTokenAmount": "644878687276109353", + "destWalletAddress": "0x30E8ccaD5A980BDF30447f8c2C48e70989D9d294", + "feeData": { + "metabridge": { + "amount": "8750000000000", + "asset": { + "address": "0x0000000000000000000000000000000000000000", + "aggregators": [], + "assetId": "eip155:56/slip44:714", + "chainId": 56, + "coingeckoId": "binancecoin", + "decimals": 18, + "iconUrl": "https://static.cx.metamask.io/api/v2/tokenIcons/assets/eip155/56/slip44/714.png", + "metadata": {}, + "name": "Binance Coin", + "occurrences": 100, + "symbol": "BNB" + }, + "baseBpsFee": 87.5, + "quoteBpsFee": 87.5 + } + }, + "gasIncluded": false, + "gasIncluded7702": false, + "gasSponsored": false, + "minDestTokenAmount": "631981113530587165", + "priceData": { + "priceImpact": "-0.003936892605379597", + "totalFeeAmountUsd": "0.0056701749999999995", + "totalFromAmountUsd": "0.64802", + "totalToAmountUsd": "0.6448786872761093" + }, + "protocols": ["pancakeswap"], + "requestId": "0xe48d6992d29e65b2c9b0343d92e638ca9897e4bd26d61c46b79ed056ebe35c4e", + "slippage": 2, + "srcAsset": { + "address": "0x0000000000000000000000000000000000000000", + "aggregators": [], + "assetId": "eip155:56/slip44:714", + "chainId": 56, + "coingeckoId": "binancecoin", + "decimals": 18, + "iconUrl": "https://static.cx.metamask.io/api/v2/tokenIcons/assets/eip155/56/slip44/714.png", + "metadata": {}, + "name": "Binance Coin", + "occurrences": 100, + "symbol": "BNB" + }, + "srcChainId": 56, + "srcTokenAmount": "991250000000000", + "steps": [], + "walletAddress": "0x30E8ccaD5A980BDF30447f8c2C48e70989D9d294" + }, + "slippagePercentage": 0, + "startTime": 1773248713853, + "status": { + "srcChain": { + "chainId": 56 + }, + "status": "PENDING" + }, + "txMetaId": "787c46c0-1d6c-11f1-9f40-3b0a0edc0d9a" + }, + "7a385040-182a-11f1-b7d6-03d70bc40886": { + "account": "0x30e8ccad5a980bdf30447f8c2c48e70989d9d294", + "approvalTxId": "7a334730-182a-11f1-b7d6-03d70bc40886", + "batchId": "0x9463f40bed91404b9a8bd010c25a2dae", + "estimatedProcessingTimeInSeconds": 0, + "hasApprovalTx": true, + "isStxEnabled": true, + "pricingData": { + "amountSent": "1", + "amountSentInUsd": "0.99665341702749971638556", + "quotedGasAmount": "0.068545107250830046", + "quotedGasInUsd": "0.007128872524440110480301716", + "quotedReturnInUsd": "0.991951424539124294492048098" + }, + "quote": { + "aggregator": "uniswap", + "aggregatorType": "AGG", + "bridgeId": "uniswap", + "bridges": ["uniswap"], + "destAsset": { + "address": "0x0000000000000000000000000000000000000000", + "aggregators": [], + "assetId": "eip155:137/slip44:966", + "chainId": 137, + "coingeckoId": "matic-network", + "decimals": 18, + "iconUrl": "https://static.cx.metamask.io/api/v2/tokenIcons/assets/eip155/137/slip44/966.png", + "metadata": {}, + "name": "Polygon Ecosystem Token", + "occurrences": 100, + "symbol": "POL" + }, + "destChainId": 137, + "destTokenAmount": "9537751804306250963", + "destWalletAddress": "0x30E8ccaD5A980BDF30447f8c2C48e70989D9d294", + "feeData": { + "metabridge": { + "amount": "84192008360837019", + "asset": { + "address": "0x0000000000000000000000000000000000000000", + "aggregators": [], + "assetId": "eip155:137/slip44:966", + "chainId": 137, + "coingeckoId": "matic-network", + "decimals": 18, + "iconUrl": "https://static.cx.metamask.io/api/v2/tokenIcons/assets/eip155/137/slip44/966.png", + "metadata": {}, + "name": "Polygon Ecosystem Token", + "occurrences": 100, + "symbol": "POL" + }, + "baseBpsFee": 87.5, + "quoteBpsFee": 87.5 + } + }, + "gasIncluded7702": false, + "gasSponsored": false, + "minDestTokenAmount": "9346996768220125943", + "priceData": { + "priceImpact": "-0.0018088956399752915", + "totalFeeAmountUsd": "0.008755547909485246", + "totalFromAmountUsd": "0.9988272725", + "totalToAmountUsd": "0.9918784988888285" + }, + "protocols": ["uniswap"], + "requestId": "0x9b79166e86d161820d3818e8e9f6dea43c7bfee2bd203e7674a5cb6708695797", + "slippage": 2, + "srcAsset": { + "address": "0xc2132d05d31c914a87c6611c10748aeb04b58e8f", + "aggregators": [ + "quickswap", + "oneInch", + "liFi", + "socket", + "squid", + "rango", + "sonarwatch", + "sushiSwap" + ], + "assetId": "eip155:137/erc20:0xc2132d05d31c914a87c6611c10748aeb04b58e8f", + "chainId": 137, + "coingeckoId": "polygon-bridged-usdt-polygon", + "decimals": 6, + "iconUrl": "https://static.cx.metamask.io/api/v2/tokenIcons/assets/eip155/137/erc20/0xc2132d05d31c914a87c6611c10748aeb04b58e8f.png", + "metadata": { + "storage": { + "approval": 1, + "balance": 0 + } + }, + "name": "Tether USD", + "occurrences": 8, + "symbol": "USDT" + }, + "srcChainId": 137, + "srcTokenAmount": "1000000", + "steps": [], + "walletAddress": "0x30E8ccaD5A980BDF30447f8c2C48e70989D9d294" + }, + "slippagePercentage": 0, + "startTime": 1772670614219, + "status": { + "srcChain": { + "chainId": 137 + }, + "status": "PENDING" + }, + "txMetaId": "7a385040-182a-11f1-b7d6-03d70bc40886" + }, + "7a8bcd30-1d69-11f1-9dc2-3b0a0edc0d9a": { + "account": "0x30e8ccad5a980bdf30447f8c2c48e70989d9d294", + "batchId": "0xb1c4750477554311a211b35617b388b4", + "estimatedProcessingTimeInSeconds": 0, + "hasApprovalTx": false, + "isStxEnabled": true, + "location": "Main View", + "originalTransactionId": "7a8bcd30-1d69-11f1-9dc2-3b0a0edc0d9a", + "pricingData": { + "amountSent": "0.001", + "amountSentInUsd": "0.64879966151", + "quotedGasAmount": "0.0000088539", + "quotedGasInUsd": "0.005744407323043389", + "quotedReturnInUsd": "0.6423785330678245810984847375786905353058056" + }, + "quote": { + "aggregator": "uniswap", + "aggregatorType": "AGG", + "bridgeId": "uniswap", + "bridges": ["uniswap"], + "destAsset": { + "address": "0x55d398326f99059ff775485246999027b3197955", + "aggregators": [ + "pancakeExtended", + "oneInch", + "liFi", + "socket", + "rubic", + "squid", + "rango", + "sonarwatch", + "sushiSwap" + ], + "assetId": "eip155:56/erc20:0x55d398326f99059ff775485246999027b3197955", + "chainId": 56, + "coingeckoId": "binance-bridged-usdt-bnb-smart-chain", + "decimals": 18, + "iconUrl": "https://static.cx.metamask.io/api/v2/tokenIcons/assets/eip155/56/erc20/0x55d398326f99059ff775485246999027b3197955.png", + "metadata": { + "storage": { + "approval": 2, + "balance": 1 + } + }, + "name": "Tether USD", + "occurrences": 11, + "symbol": "USDT" + }, + "destChainId": 56, + "destTokenAmount": "642485185608572952", + "destWalletAddress": "0x30E8ccaD5A980BDF30447f8c2C48e70989D9d294", + "feeData": { + "metabridge": { + "amount": "8750000000000", + "asset": { + "address": "0x0000000000000000000000000000000000000000", + "aggregators": [], + "assetId": "eip155:56/slip44:714", + "chainId": 56, + "coingeckoId": "binancecoin", + "decimals": 18, + "iconUrl": "https://static.cx.metamask.io/api/v2/tokenIcons/assets/eip155/56/slip44/714.png", + "metadata": {}, + "name": "Binance Coin", + "occurrences": 100, + "symbol": "BNB" + }, + "baseBpsFee": 87.5, + "quoteBpsFee": 87.5 + } + }, + "gasIncluded": false, + "gasIncluded7702": false, + "gasSponsored": false, + "minDestTokenAmount": "629635481896401492", + "priceData": { + "priceImpact": "0.0010805988736520855", + "totalFeeAmountUsd": "0.005676562499999999", + "totalFromAmountUsd": "0.64875", + "totalToAmountUsd": "0.6423785330677619" + }, + "protocols": ["uniswap"], + "requestId": "0xcf269d66e5c2cbdb5d4bb81128f051403d541fbffc1e63081dc84ca309bf5e16", + "slippage": 2, + "srcAsset": { + "address": "0x0000000000000000000000000000000000000000", + "aggregators": [], + "assetId": "eip155:56/slip44:714", + "chainId": 56, + "coingeckoId": "binancecoin", + "decimals": 18, + "iconUrl": "https://static.cx.metamask.io/api/v2/tokenIcons/assets/eip155/56/slip44/714.png", + "metadata": {}, + "name": "Binance Coin", + "occurrences": 100, + "symbol": "BNB" + }, + "srcChainId": 56, + "srcTokenAmount": "991250000000000", + "steps": [], + "walletAddress": "0x30E8ccaD5A980BDF30447f8c2C48e70989D9d294" + }, + "slippagePercentage": 0, + "startTime": 1773247428882, + "status": { + "srcChain": { + "chainId": 56 + }, + "status": "PENDING" + }, + "txMetaId": "7a8bcd30-1d69-11f1-9dc2-3b0a0edc0d9a" + }, + "7b43c030-2c8b-11f1-8579-f533125480a0": { + "account": "0xf25bd11c334507fd007d584e2d0b7b2c6543f714", + "batchId": "0x4e343723d8c84f7e8b32466fdf317c38", + "estimatedProcessingTimeInSeconds": 0, + "hasApprovalTx": false, + "isStxEnabled": true, + "location": "Main View", + "originalTransactionId": "7b43c030-2c8b-11f1-8579-f533125480a0", + "pricingData": { + "amountSent": "0.001735284401294112", + "amountSentInUsd": "1.059581710619129089939674528", + "quotedGasAmount": "0.00000972585", + "quotedGasInUsd": "0.00593869960021522365", + "quotedReturnInUsd": "1.03760188231940073950828490696275541433332819" + }, + "quote": { + "aggregator": "uniswap", + "aggregatorType": "AGG", + "bridgeId": "uniswap", + "bridges": ["uniswap"], + "destAsset": { + "address": "0x55d398326f99059ff775485246999027b3197955", + "aggregators": [ + "pancakeExtended", + "oneInch", + "liFi", + "trustWallet", + "socket", + "squid", + "rango", + "sonarwatch", + "sushiSwap" + ], + "assetId": "eip155:56/erc20:0x55d398326f99059ff775485246999027b3197955", + "chainId": 56, + "coingeckoId": "binance-bridged-usdt-bnb-smart-chain", + "decimals": 18, + "iconUrl": "https://static.cx.metamask.io/api/v2/tokenIcons/assets/eip155/56/erc20/0x55d398326f99059ff775485246999027b3197955.png", + "metadata": { + "storage": { + "approval": 2, + "balance": 1 + } + }, + "name": "Tether USD", + "occurrences": 9, + "symbol": "USDT" + }, + "destChainId": 56, + "destTokenAmount": "1038408725899185861", + "destWalletAddress": "0xF25bd11C334507Fd007d584E2D0b7b2C6543f714", + "feeData": { + "metabridge": { + "amount": "15183738511323", + "asset": { + "address": "0x0000000000000000000000000000000000000000", + "aggregators": [], + "assetId": "eip155:56/slip44:714", + "chainId": 56, + "coingeckoId": "binancecoin", + "decimals": 18, + "iconUrl": "https://static.cx.metamask.io/api/v2/tokenIcons/assets/eip155/56/slip44/714.png", + "metadata": {}, + "name": "Binance Coin", + "occurrences": 100, + "symbol": "BNB" + }, + "baseBpsFee": 87.5, + "quoteBpsFee": 87.5 + }, + "txFee": { + "amount": "19908720000000", + "asset": { + "address": "0x0000000000000000000000000000000000000000", + "aggregators": [], + "assetId": "eip155:56/slip44:714", + "chainId": 56, + "coingeckoId": "binancecoin", + "decimals": 18, + "iconUrl": "https://static.cx.metamask.io/api/v2/tokenIcons/assets/eip155/56/slip44/714.png", + "metadata": {}, + "name": "Binance Coin", + "occurrences": 100, + "symbol": "BNB" + }, + "maxFeePerGas": "60000000", + "maxPriorityFeePerGas": "60000000" + } + }, + "gasIncluded": true, + "gasIncluded7702": false, + "gasSponsored": false, + "minDestTokenAmount": "1017640551381202143", + "priceData": { + "priceImpact": "0.009427532680401968", + "totalFeeAmountUsd": "0.009271798084554276", + "totalFromAmountUsd": "1.0596340668062365", + "totalToAmountUsd": "1.0376018823191622" + }, + "protocols": ["uniswap"], + "requestId": "0x05739f6973dde9dadb63123b17f964c2102e3ee0a3295d995e3a82e3ce86332a", + "slippage": 2, + "srcAsset": { + "address": "0x0000000000000000000000000000000000000000", + "aggregators": [], + "assetId": "eip155:56/slip44:714", + "chainId": 56, + "coingeckoId": "binancecoin", + "decimals": 18, + "iconUrl": "https://static.cx.metamask.io/api/v2/tokenIcons/assets/eip155/56/slip44/714.png", + "metadata": {}, + "name": "Binance Coin", + "occurrences": 100, + "symbol": "BNB" + }, + "srcChainId": 56, + "srcTokenAmount": "1700191942782789", + "steps": [], + "walletAddress": "0xF25bd11C334507Fd007d584E2D0b7b2C6543f714" + }, + "slippagePercentage": 0, + "startTime": 1774911300413, + "status": { + "srcChain": { + "chainId": 56 + }, + "status": "PENDING" + }, + "txMetaId": "7b43c030-2c8b-11f1-8579-f533125480a0" + }, + "7e164380-27dd-11f1-98dd-5fbe36423c6b": { + "account": "0xf25bd11c334507fd007d584e2d0b7b2c6543f714", + "batchId": "0x42d6997a372c47d5a3e91d9d5906b2a6", + "estimatedProcessingTimeInSeconds": 0, + "hasApprovalTx": false, + "isStxEnabled": false, + "location": "Main View", + "originalTransactionId": "7e164380-27dd-11f1-98dd-5fbe36423c6b", + "pricingData": { + "amountSent": "0.003125751498328475", + "amountSentInUsd": "1.9869842086192629221163952", + "quotedGasAmount": "0.0000097083", + "quotedGasInUsd": "0.0061713923204880576", + "quotedReturnInUsd": "1.964242846246792495139824231924650311532768" + }, + "quote": { + "aggregator": "uniswap", + "aggregatorType": "AGG", + "bridgeId": "uniswap", + "bridges": ["uniswap"], + "destAsset": { + "address": "0x55d398326f99059ff775485246999027b3197955", + "aggregators": [ + "pancakeExtended", + "oneInch", + "liFi", + "trustWallet", + "socket", + "squid", + "rango", + "sonarwatch", + "sushiSwap" + ], + "assetId": "eip155:56/erc20:0x55d398326f99059ff775485246999027b3197955", + "chainId": 56, + "coingeckoId": "binance-bridged-usdt-bnb-smart-chain", + "decimals": 18, + "iconUrl": "https://static.cx.metamask.io/api/v2/tokenIcons/assets/eip155/56/erc20/0x55d398326f99059ff775485246999027b3197955.png", + "metadata": { + "storage": { + "approval": 2, + "balance": 1 + } + }, + "name": "Tether USD", + "occurrences": 9, + "symbol": "USDT" + }, + "destChainId": 56, + "destTokenAmount": "1965074072579775033", + "destWalletAddress": "0xF25bd11C334507Fd007d584E2D0b7b2C6543f714", + "feeData": { + "metabridge": { + "amount": "27350325610374", + "asset": { + "address": "0x0000000000000000000000000000000000000000", + "aggregators": [], + "assetId": "eip155:56/slip44:714", + "chainId": 56, + "coingeckoId": "binancecoin", + "decimals": 18, + "iconUrl": "https://static.cx.metamask.io/api/v2/tokenIcons/assets/eip155/56/slip44/714.png", + "metadata": {}, + "name": "Binance Coin", + "occurrences": 100, + "symbol": "BNB" + }, + "baseBpsFee": 87.5, + "quoteBpsFee": 87.5 + }, + "txFee": { + "amount": "19877760000000", + "asset": { + "address": "0x0000000000000000000000000000000000000000", + "aggregators": [], + "assetId": "eip155:56/slip44:714", + "chainId": 56, + "coingeckoId": "binancecoin", + "decimals": 18, + "iconUrl": "https://static.cx.metamask.io/api/v2/tokenIcons/assets/eip155/56/slip44/714.png", + "metadata": {}, + "name": "Binance Coin", + "occurrences": 100, + "symbol": "BNB" + }, + "maxFeePerGas": "60000000", + "maxPriorityFeePerGas": "60000000" + } + }, + "gasIncluded": true, + "gasIncluded7702": false, + "gasSponsored": false, + "minDestTokenAmount": "1925772591128179532", + "priceData": { + "priceImpact": "0.009202413125145793", + "totalFeeAmountUsd": "0.017457165830589517", + "totalFromAmountUsd": "1.995104666353099", + "totalToAmountUsd": "1.9641740686545277" + }, + "protocols": ["uniswap"], + "requestId": "0x1d49d6bf767ed80886a3ed83a39bd92df488c6d4bf35e1ebf518d21576128138", + "slippage": 2, + "srcAsset": { + "address": "0x0000000000000000000000000000000000000000", + "aggregators": [], + "assetId": "eip155:56/slip44:714", + "chainId": 56, + "coingeckoId": "binancecoin", + "decimals": 18, + "iconUrl": "https://static.cx.metamask.io/api/v2/tokenIcons/assets/eip155/56/slip44/714.png", + "metadata": {}, + "name": "Binance Coin", + "occurrences": 100, + "symbol": "BNB" + }, + "srcChainId": 56, + "srcTokenAmount": "3078523412718101", + "steps": [], + "walletAddress": "0xF25bd11C334507Fd007d584E2D0b7b2C6543f714" + }, + "slippagePercentage": 0, + "startTime": 1774396767995, + "status": { + "srcChain": { + "chainId": 56, + "txHash": "0xfcb60e0a86409c4f780036756684f00d7d1bd9222e1ed5b9384e5d07c7534dc6" + }, + "status": "FAILED" + }, + "txMetaId": "7e164380-27dd-11f1-98dd-5fbe36423c6b" + }, + "7f366e90-23c1-11f1-ba20-05a660861774": { + "account": "0xb3864b298f4fddbbbd2fa5cf1a2a2748932b3b81", + "approvalTxId": "7f30f050-23c1-11f1-ba20-05a660861774", + "batchId": "0xf7f20f2e145e4f359c9abef967f87526", + "completionTime": 1777322895809, + "estimatedProcessingTimeInSeconds": 2, + "hasApprovalTx": true, + "isStxEnabled": true, + "location": "Main View", + "originalTransactionId": "7f366e90-23c1-11f1-ba20-05a660861774", + "pricingData": { + "amountSent": "5.642642556751629323", + "amountSentInUsd": "5.6414841251078873272569173905217651781050455", + "quotedGasAmount": "0.0000079716", + "quotedGasInUsd": "0.00507918740181762", + "quotedReturnInUsd": "5.568813162965336151266015071" + }, + "quote": { + "aggregator": "relay", + "bridgeId": "relay", + "bridges": ["Relay"], + "destAsset": { + "address": "0x0000000000000000000000000000000000000000", + "aggregators": [], + "assetId": "eip155:143/slip44:268435779", + "chainId": 143, + "decimals": 18, + "iconUrl": "https://static.cx.metamask.io/api/v2/tokenIcons/assets/eip155/143/slip44/268435779.png", + "metadata": {}, + "name": "Mon", + "occurrences": 1, + "symbol": "MON" + }, + "destChainId": 143, + "destTokenAmount": "251473484144755150187", + "feeData": { + "metabridge": { + "amount": "49373122371576756", + "asset": { + "address": "0x8ac76a51cc950d9822d68b83fe1ad97b32cd580d", + "aggregators": [ + "pancakeExtended", + "oneInch", + "liFi", + "socket", + "rubic", + "squid", + "rango", + "sonarwatch", + "sushiSwap" + ], + "assetId": "eip155:56/erc20:0x8ac76a51cc950d9822d68b83fe1ad97b32cd580d", + "chainId": 56, + "coingeckoId": "binance-bridged-usdc-bnb-smart-chain", + "decimals": 18, + "iconUrl": "https://static.cx.metamask.io/api/v2/tokenIcons/assets/eip155/56/erc20/0x8ac76a51cc950d9822d68b83fe1ad97b32cd580d.png", + "metadata": { + "storage": { + "approval": 2, + "balance": 1 + } + }, + "name": "Binance-Peg USD Coin", + "occurrences": 9, + "symbol": "USDC" + }, + "baseBpsFee": 87.5, + "quoteBpsFee": 87.5 + } + }, + "minDestTokenAmount": "246444014461860047184", + "priceData": { + "priceImpact": "0.004330146372137453", + "totalFeeAmountUsd": "0.04936843192495145", + "totalFromAmountUsd": "5.642106505708738", + "totalToAmountUsd": "5.568520699303276" + }, + "protocols": ["Relay"], + "requestId": "0x295c4d95df950b3c934b05d371725d13e105a2eb6a24da6128f84a09ce107ff5", + "slippage": 2, + "srcAsset": { + "address": "0x8ac76a51cc950d9822d68b83fe1ad97b32cd580d", + "aggregators": [ + "pancakeExtended", + "oneInch", + "liFi", + "socket", + "rubic", + "squid", + "rango", + "sonarwatch", + "sushiSwap" + ], + "assetId": "eip155:56/erc20:0x8ac76a51cc950d9822d68b83fe1ad97b32cd580d", + "chainId": 56, + "coingeckoId": "binance-bridged-usdc-bnb-smart-chain", + "decimals": 18, + "iconUrl": "https://static.cx.metamask.io/api/v2/tokenIcons/assets/eip155/56/erc20/0x8ac76a51cc950d9822d68b83fe1ad97b32cd580d.png", + "metadata": { + "storage": { + "approval": 2, + "balance": 1 + } + }, + "name": "Binance-Peg USD Coin", + "occurrences": 9, + "symbol": "USDC" + }, + "srcChainId": 56, + "srcTokenAmount": "5593269434380052567", + "steps": [ + { + "action": "bridge", + "destAmount": "251473484144755150187", + "destAsset": { + "address": "0x0000000000000000000000000000000000000000", + "aggregators": [], + "assetId": "eip155:143/slip44:268435779", + "chainId": 143, + "decimals": 18, + "iconUrl": "https://static.cx.metamask.io/api/v2/tokenIcons/assets/eip155/143/slip44/268435779.png", + "metadata": {}, + "name": "Mon", + "occurrences": 1, + "symbol": "MON" + }, + "destChainId": 143, + "protocol": { + "name": "relay" + }, + "srcAmount": "5593269434380052567", + "srcAsset": { + "address": "0x8ac76a51cc950d9822d68b83fe1ad97b32cd580d", + "aggregators": [ + "pancakeExtended", + "oneInch", + "liFi", + "socket", + "rubic", + "squid", + "rango", + "sonarwatch", + "sushiSwap" + ], + "assetId": "eip155:56/erc20:0x8ac76a51cc950d9822d68b83fe1ad97b32cd580d", + "chainId": 56, + "coingeckoId": "binance-bridged-usdc-bnb-smart-chain", + "decimals": 18, + "iconUrl": "https://static.cx.metamask.io/api/v2/tokenIcons/assets/eip155/56/erc20/0x8ac76a51cc950d9822d68b83fe1ad97b32cd580d.png", + "metadata": { + "storage": { + "approval": 2, + "balance": 1 + } + }, + "name": "Binance-Peg USD Coin", + "occurrences": 9, + "symbol": "USDC" + }, + "srcChainId": 56 + } + ] + }, + "slippagePercentage": 0, + "startTime": 1773944939248, + "status": { + "bridge": "relay", + "isExpectedToken": true, + "isUnrecognizedRouterAddress": false, + "srcChain": { + "chainId": 56, + "txHash": "0x4f43cf58b9692936c60a308fbe57af1f1050652aedfff6d5b96b98e0287efa21" + }, + "status": "FAILED" + }, + "txMetaId": "7f366e90-23c1-11f1-ba20-05a660861774" + }, + "87097100-39db-11f1-bbe5-3727d90ba13b": { + "account": "0x141d32a89a1e0a5ef360034a2f60a4b917c18838", + "batchId": "0x9326029b55e54103ba3d30692852c37c", + "completionTime": 1776375055308, + "estimatedProcessingTimeInSeconds": 1.5, + "hasApprovalTx": false, + "isStxEnabled": false, + "location": "Main View", + "originalTransactionId": "87097100-39db-11f1-bbe5-3727d90ba13b", + "pricingData": { + "amountSent": "0.014422915151821722", + "amountSentInUsd": "33.764377335151183940035251708", + "quotedGasAmount": "0.000182022194361381", + "quotedGasInUsd": "0.426118159130515819690549134", + "quotedReturnInUsd": "32.933861945091401367338221656" + }, + "quote": { + "aggregator": "relay", + "bridgeId": "relay", + "bridges": ["Relay"], + "destAsset": { + "address": "0x0000000000000000000000000000000000000000", + "aggregators": [], + "assetId": "eip155:42161/slip44:60", + "chainId": 42161, + "coingeckoId": "ethereum", + "decimals": 18, + "iconUrl": "https://static.cx.metamask.io/api/v2/tokenIcons/assets/eip155/42161/slip44/60.png", + "metadata": {}, + "name": "Ether", + "occurrences": 100, + "symbol": "ETH" + }, + "destChainId": 42161, + "destTokenAmount": "14068149154385604", + "feeData": { + "metabridge": { + "amount": "126200507578440", + "asset": { + "address": "0x0000000000000000000000000000000000000000", + "aggregators": [], + "assetId": "eip155:1/slip44:60", + "chainId": 1, + "coingeckoId": "ethereum", + "decimals": 18, + "iconUrl": "https://static.cx.metamask.io/api/v2/tokenIcons/assets/eip155/1/slip44/60.png", + "metadata": {}, + "name": "Ether", + "occurrences": 100, + "symbol": "ETH" + }, + "baseBpsFee": 87.5, + "quoteBpsFee": 87.5 + }, + "txFee": { + "amount": "219451684255947", + "asset": { + "address": "0x0000000000000000000000000000000000000000", + "aggregators": [], + "assetId": "eip155:1/slip44:60", + "chainId": 1, + "coingeckoId": "ethereum", + "decimals": 18, + "iconUrl": "https://static.cx.metamask.io/api/v2/tokenIcons/assets/eip155/1/slip44/60.png", + "metadata": {}, + "name": "Ether", + "occurrences": 100, + "symbol": "ETH" + }, + "maxFeePerGas": "2215428270", + "maxPriorityFeePerGas": "2100000001" + } + }, + "gasIncluded": true, + "gasIncluded7702": false, + "gasSponsored": false, + "minDestTokenAmount": "13786786171297892", + "priceData": { + "priceImpact": "0.008381351089501032", + "totalFeeAmountUsd": "0.295363578200348", + "totalFromAmountUsd": "33.755837508611215", + "totalToAmountUsd": "32.96361122017567" + }, + "protocols": ["Relay"], + "requestId": "0x876097d954bc47e229486f9d3d383926751dd4d272af802caf20cb61e32dfabb", + "slippage": 2, + "srcAsset": { + "address": "0x0000000000000000000000000000000000000000", + "aggregators": [], + "assetId": "eip155:1/slip44:60", + "chainId": 1, + "coingeckoId": "ethereum", + "decimals": 18, + "iconUrl": "https://static.cx.metamask.io/api/v2/tokenIcons/assets/eip155/1/slip44/60.png", + "metadata": {}, + "name": "Ether", + "occurrences": 100, + "symbol": "ETH" + }, + "srcChainId": 1, + "srcTokenAmount": "14077262959987335", + "steps": [ + { + "action": "bridge", + "destAmount": "14068149154385604", + "destAsset": { + "address": "0x0000000000000000000000000000000000000000", + "aggregators": [], + "assetId": "eip155:42161/slip44:60", + "chainId": 42161, + "coingeckoId": "ethereum", + "decimals": 18, + "iconUrl": "https://static.cx.metamask.io/api/v2/tokenIcons/assets/eip155/42161/slip44/60.png", + "metadata": {}, + "name": "Ether", + "occurrences": 100, + "symbol": "ETH" + }, + "destChainId": 42161, + "protocol": { + "name": "relay" + }, + "srcAmount": "14077262959987335", + "srcAsset": { + "address": "0x0000000000000000000000000000000000000000", + "aggregators": [], + "assetId": "eip155:1/slip44:60", + "chainId": 1, + "coingeckoId": "ethereum", + "decimals": 18, + "iconUrl": "https://static.cx.metamask.io/api/v2/tokenIcons/assets/eip155/1/slip44/60.png", + "metadata": {}, + "name": "Ether", + "occurrences": 100, + "symbol": "ETH" + }, + "srcChainId": 1 + } + ] + }, + "slippagePercentage": 0, + "startTime": 1776375045051, + "status": { + "bridge": "relay", + "destChain": { + "chainId": 42161, + "txHash": "0x47c96bb707133eaf0e922ef46ced8e0c3f1e5d2d47042cea504222e415986150" + }, + "isExpectedToken": true, + "isUnrecognizedRouterAddress": false, + "srcChain": { + "chainId": 1, + "txHash": "0xca8213d009d229e05f39dcd4400c0cbcfa8223c0749ed2d32b359eb0540a2ef3" + }, + "status": "COMPLETE" + }, + "txMetaId": "87097100-39db-11f1-bbe5-3727d90ba13b" + }, + "8749bbb0-287f-11f1-9113-9d8a4fbc2cec": { + "account": "0xf25bd11c334507fd007d584e2d0b7b2c6543f714", + "batchId": "0xb0a9c98df35d4edfaaea1e3f69a4678a", + "estimatedProcessingTimeInSeconds": 0, + "hasApprovalTx": false, + "isStxEnabled": true, + "location": "Main View", + "originalTransactionId": "8749bbb0-287f-11f1-9113-9d8a4fbc2cec", + "pricingData": { + "amountSent": "0.001950721614518098", + "amountSentInUsd": "1.259980591752242803389802256", + "quotedGasAmount": "0.00001151385", + "quotedGasInUsd": "0.0074368517928840372", + "quotedReturnInUsd": "1.2325003797624940142154387458214548460408192" + }, + "quote": { + "aggregator": "0x", + "aggregatorType": "AGG", + "bridgeId": "0x", + "bridges": ["0x"], + "destAsset": { + "address": "0x55d398326f99059ff775485246999027b3197955", + "aggregators": [ + "pancakeExtended", + "oneInch", + "liFi", + "trustWallet", + "socket", + "rubic", + "squid", + "rango", + "sonarwatch", + "sushiSwap" + ], + "assetId": "eip155:56/erc20:0x55d398326f99059ff775485246999027b3197955", + "chainId": 56, + "coingeckoId": "binance-bridged-usdt-bnb-smart-chain", + "decimals": 18, + "iconUrl": "https://static.cx.metamask.io/api/v2/tokenIcons/assets/eip155/56/erc20/0x55d398326f99059ff775485246999027b3197955.png", + "metadata": { + "storage": { + "approval": 2, + "balance": 1 + } + }, + "name": "Tether USD", + "occurrences": 11, + "symbol": "USDT" + }, + "destChainId": 56, + "destTokenAmount": "1232878873577400840", + "destWalletAddress": "0xF25bd11C334507Fd007d584E2D0b7b2C6543f714", + "feeData": { + "metabridge": { + "amount": "17068814127033", + "asset": { + "address": "0x0000000000000000000000000000000000000000", + "aggregators": [], + "assetId": "eip155:56/slip44:714", + "chainId": 56, + "coingeckoId": "binancecoin", + "decimals": 18, + "iconUrl": "https://static.cx.metamask.io/api/v2/tokenIcons/assets/eip155/56/slip44/714.png", + "metadata": {}, + "name": "Binance Coin", + "occurrences": 100, + "symbol": "BNB" + }, + "baseBpsFee": 87.5, + "quoteBpsFee": 87.5 + }, + "txFee": { + "amount": "26526510000000", + "asset": { + "address": "0x0000000000000000000000000000000000000000", + "aggregators": [], + "assetId": "eip155:56/slip44:714", + "chainId": 56, + "coingeckoId": "binancecoin", + "decimals": 18, + "iconUrl": "https://static.cx.metamask.io/api/v2/tokenIcons/assets/eip155/56/slip44/714.png", + "metadata": {}, + "name": "Binance Coin", + "occurrences": 100, + "symbol": "BNB" + }, + "maxFeePerGas": "60000000", + "maxPriorityFeePerGas": "60000000" + } + }, + "gasIncluded": true, + "gasIncluded7702": false, + "gasSponsored": false, + "minDestTokenAmount": "1208221296105852823", + "priceData": { + "priceImpact": "0.00853235120890051", + "totalFeeAmountUsd": "0.011027136678628398", + "totalFromAmountUsd": "1.2602441918432719", + "totalToAmountUsd": "1.2325003797632126" + }, + "protocols": ["0x"], + "requestId": "0x8c9412488b164af8ae651ae2da95564036717bac10a13e38331fb3c826505782", + "slippage": 2, + "srcAsset": { + "address": "0x0000000000000000000000000000000000000000", + "aggregators": [], + "assetId": "eip155:56/slip44:714", + "chainId": 56, + "coingeckoId": "binancecoin", + "decimals": 18, + "iconUrl": "https://static.cx.metamask.io/api/v2/tokenIcons/assets/eip155/56/slip44/714.png", + "metadata": {}, + "name": "Binance Coin", + "occurrences": 100, + "symbol": "BNB" + }, + "srcChainId": 56, + "srcTokenAmount": "1907126290391065", + "steps": [], + "walletAddress": "0xF25bd11C334507Fd007d584E2D0b7b2C6543f714" + }, + "slippagePercentage": 0, + "startTime": 1774466361950, + "status": { + "srcChain": { + "chainId": 56, + "txHash": "0xfbdfaef96764f3dedf54750152d015d247da97680bd5a6f794ff820288aba09a" + }, + "status": "FAILED" + }, + "txMetaId": "8749bbb0-287f-11f1-9113-9d8a4fbc2cec" + }, + "897153a0-28a0-11f1-a76c-213b64721d37": { + "account": "0x141d32a89a1e0a5ef360034a2f60a4b917c18838", + "batchId": "0x42991e4387eb4f8da94b268740d0c544", + "estimatedProcessingTimeInSeconds": 0, + "hasApprovalTx": true, + "isStxEnabled": true, + "location": "Main View", + "originalTransactionId": "897153a0-28a0-11f1-a76c-213b64721d37", + "pricingData": { + "amountSent": "7.66615", + "amountSentInUsd": "7.6710257049819552916041865531168", + "quotedGasAmount": "0.000006709050190657", + "quotedGasInUsd": "0.014600270652164844251205496", + "quotedReturnInUsd": "7.60058415111383491562990692" + }, + "quote": { + "aggregator": "uniswap", + "aggregatorType": "AGG", + "bridgeId": "uniswap", + "bridges": ["uniswap"], + "destAsset": { + "address": "0x0000000000000000000000000000000000000000", + "aggregators": [], + "assetId": "eip155:8453/slip44:60", + "chainId": 8453, + "coingeckoId": "ethereum", + "decimals": 18, + "iconUrl": "https://static.cx.metamask.io/api/v2/tokenIcons/assets/eip155/8453/slip44/60.png", + "metadata": {}, + "name": "Ether", + "occurrences": 100, + "symbol": "ETH" + }, + "destChainId": 8453, + "destTokenAmount": "3492585977546515", + "destWalletAddress": "0x141d32a89a1e0a5Ef360034a2f60a4B917c18838", + "feeData": { + "metabridge": { + "amount": "30873688262846", + "asset": { + "address": "0x0000000000000000000000000000000000000000", + "aggregators": [], + "assetId": "eip155:8453/slip44:60", + "chainId": 8453, + "coingeckoId": "ethereum", + "decimals": 18, + "iconUrl": "https://static.cx.metamask.io/api/v2/tokenIcons/assets/eip155/8453/slip44/60.png", + "metadata": {}, + "name": "Ether", + "occurrences": 100, + "symbol": "ETH" + }, + "baseBpsFee": 87.5, + "quoteBpsFee": 87.5 + }, + "txFee": { + "amount": "4961849944581", + "asset": { + "address": "0x0000000000000000000000000000000000000000", + "aggregators": [], + "assetId": "eip155:8453/slip44:60", + "chainId": 8453, + "coingeckoId": "ethereum", + "decimals": 18, + "iconUrl": "https://static.cx.metamask.io/api/v2/tokenIcons/assets/eip155/8453/slip44/60.png", + "metadata": {}, + "name": "Ether", + "occurrences": 100, + "symbol": "ETH" + }, + "maxFeePerGas": "6625001", + "maxPriorityFeePerGas": "1000001" + } + }, + "gasIncluded": true, + "gasIncluded7702": true, + "gasSponsored": false, + "minDestTokenAmount": "3422734257995584", + "priceData": { + "priceImpact": "-0.000842615632920785", + "totalFeeAmountUsd": "0.06712680796861029", + "totalFromAmountUsd": "7.66517639895", + "totalToAmountUsd": "7.593720135820734" + }, + "protocols": ["uniswap"], + "requestId": "0xb31e7869e0a4661452b593ec746adfc3ccb9a46e8be932494162d064e4793028", + "slippage": 2, + "srcAsset": { + "address": "0x833589fcd6edb6e08f4c7c32d4f71b54bda02913", + "aggregators": [ + "coinGecko", + "oneInch", + "liFi", + "socket", + "rubic", + "squid", + "rango", + "sonarwatch", + "sushiSwap" + ], + "assetId": "eip155:8453/erc20:0x833589fcd6edb6e08f4c7c32d4f71b54bda02913", + "chainId": 8453, + "coingeckoId": "usd-coin", + "decimals": 6, + "iconUrl": "https://static.cx.metamask.io/api/v2/tokenIcons/assets/eip155/8453/erc20/0x833589fcd6edb6e08f4c7c32d4f71b54bda02913.png", + "metadata": { + "storage": { + "approval": 10, + "balance": 9 + } + }, + "name": "USD Coin", + "occurrences": 9, + "symbol": "USDC" + }, + "srcChainId": 8453, + "srcTokenAmount": "7666150", + "steps": [], + "walletAddress": "0x141d32a89a1e0a5Ef360034a2f60a4B917c18838" + }, + "slippagePercentage": 0, + "startTime": 1774480538946, + "status": { + "srcChain": { + "chainId": 8453, + "txHash": "0xb3a2980c7e045bee9b6efe74a81f1076ac8aa282468fb4e9af64016387be02bf" + }, + "status": "PENDING" + }, + "txMetaId": "897153a0-28a0-11f1-a76c-213b64721d37" + }, + "8b6097e0-2e2f-11f1-afc5-535abbd777f7": { + "account": "0x141d32a89a1e0a5ef360034a2f60a4b917c18838", + "actionId": "1775091716184.0117", + "estimatedProcessingTimeInSeconds": 0, + "hasApprovalTx": false, + "isStxEnabled": false, + "location": "Main View", + "originalTransactionId": "8b6097e0-2e2f-11f1-afc5-535abbd777f7", + "pricingData": { + "amountSent": "0.006908637264449911", + "amountSentInUsd": "14.904045135912753017270084986", + "quotedGasAmount": "0.000514698161600842", + "quotedGasInUsd": "1.110361470465921610796182492", + "quotedReturnInUsd": "13.323203166776001308685347502428554" + }, + "quote": { + "aggregator": "uniswap", + "aggregatorType": "AGG", + "bridgeId": "uniswap", + "bridges": ["uniswap"], + "destAsset": { + "address": "0xaca92e438df0b2401ff60da7e4337b687a2435da", + "aggregators": ["metamask", "liFi", "socket", "rubic", "rango"], + "assetId": "eip155:1/erc20:0xaca92e438df0b2401ff60da7e4337b687a2435da", + "chainId": 1, + "decimals": 6, + "iconUrl": "https://static.cx.metamask.io/api/v2/tokenIcons/assets/eip155/1/erc20/0xaca92e438df0b2401ff60da7e4337b687a2435da.png", + "metadata": {}, + "name": "MetaMask USD", + "occurrences": 5, + "symbol": "MUSD" + }, + "destChainId": 1, + "destTokenAmount": "13322191", + "destWalletAddress": "0x141d32a89a1e0a5Ef360034a2f60a4B917c18838", + "feeData": { + "metabridge": { + "amount": "0", + "asset": { + "address": "0x0000000000000000000000000000000000000000", + "aggregators": [], + "assetId": "eip155:1/slip44:60", + "chainId": 1, + "coingeckoId": "ethereum", + "decimals": 18, + "iconUrl": "https://static.cx.metamask.io/api/v2/tokenIcons/assets/eip155/1/slip44/60.png", + "metadata": {}, + "name": "Ether", + "occurrences": 100, + "symbol": "ETH" + }, + "baseBpsFee": 87.5, + "quoteBpsFee": 0 + }, + "txFee": { + "amount": "705582778118154", + "asset": { + "address": "0x0000000000000000000000000000000000000000", + "aggregators": [], + "assetId": "eip155:1/slip44:60", + "chainId": 1, + "coingeckoId": "ethereum", + "decimals": 18, + "iconUrl": "https://static.cx.metamask.io/api/v2/tokenIcons/assets/eip155/1/slip44/60.png", + "metadata": {}, + "name": "Ether", + "occurrences": 100, + "symbol": "ETH" + }, + "maxFeePerGas": "2190452233", + "maxPriorityFeePerGas": "2100000001" + } + }, + "gasIncluded": true, + "gasIncluded7702": false, + "gasSponsored": false, + "minDestTokenAmount": "13055747", + "priceData": { + "priceImpact": "0.004563593962246783", + "totalFeeAmountUsd": "0", + "totalFromAmountUsd": "14.904210429715727", + "totalToAmountUsd": "13.320965358428001" + }, + "protocols": ["uniswap"], + "requestId": "0x8a08858a04170b889fde681dc3807267f30111116213377170a5ed2049a4d88e", + "slippage": 2, + "srcAsset": { + "address": "0x0000000000000000000000000000000000000000", + "aggregators": [], + "assetId": "eip155:1/slip44:60", + "chainId": 1, + "coingeckoId": "ethereum", + "decimals": 18, + "iconUrl": "https://static.cx.metamask.io/api/v2/tokenIcons/assets/eip155/1/slip44/60.png", + "metadata": {}, + "name": "Ether", + "occurrences": 100, + "symbol": "ETH" + }, + "srcChainId": 1, + "srcTokenAmount": "6203054486331757", + "steps": [], + "walletAddress": "0x141d32a89a1e0a5Ef360034a2f60a4B917c18838" + }, + "slippagePercentage": 0, + "startTime": 1775091716001, + "status": { + "srcChain": { + "chainId": 1, + "txHash": "0xc9d456875588263b7a20cf6de1f6e0665e5702984a09b72fffa4376c7bce440e" + }, + "status": "PENDING" + }, + "txMetaId": "8b6097e0-2e2f-11f1-afc5-535abbd777f7" + }, + "8b7aeae0-27d2-11f1-a115-6b5c45028a09": { + "account": "0xf25bd11c334507fd007d584e2d0b7b2c6543f714", + "batchId": "0x851b71f592f54aca880727fa67943fcf", + "estimatedProcessingTimeInSeconds": 0, + "hasApprovalTx": false, + "isStxEnabled": false, + "location": "Main View", + "originalTransactionId": "8b7aeae0-27d2-11f1-a115-6b5c45028a09", + "pricingData": { + "amountSent": "0.003251147740701272", + "amountSentInUsd": "2.066696352578301947673961984", + "quotedGasAmount": "0.0000108553", + "quotedGasInUsd": "0.0069005196642660416", + "quotedReturnInUsd": "2.0313467000485065225809493122811279597951456" + }, + "quote": { + "aggregator": "pancakeswap", + "aggregatorType": "AGG", + "bridgeId": "pancakeswap", + "bridges": ["pancakeswap"], + "destAsset": { + "address": "0x55d398326f99059ff775485246999027b3197955", + "aggregators": [ + "pancakeExtended", + "oneInch", + "liFi", + "trustWallet", + "socket", + "squid", + "rango", + "sonarwatch", + "sushiSwap" + ], + "assetId": "eip155:56/erc20:0x55d398326f99059ff775485246999027b3197955", + "chainId": 56, + "coingeckoId": "binance-bridged-usdt-bnb-smart-chain", + "decimals": 18, + "iconUrl": "https://static.cx.metamask.io/api/v2/tokenIcons/assets/eip155/56/erc20/0x55d398326f99059ff775485246999027b3197955.png", + "metadata": { + "storage": { + "approval": 2, + "balance": 1 + } + }, + "name": "Tether USD", + "occurrences": 9, + "symbol": "USDT" + }, + "destChainId": 56, + "destTokenAmount": "2032305948456469901", + "destWalletAddress": "0xF25bd11C334507Fd007d584E2D0b7b2C6543f714", + "feeData": { + "metabridge": { + "amount": "28447542731136", + "asset": { + "address": "0x0000000000000000000000000000000000000000", + "aggregators": [], + "assetId": "eip155:56/slip44:714", + "chainId": 56, + "coingeckoId": "binancecoin", + "decimals": 18, + "iconUrl": "https://static.cx.metamask.io/api/v2/tokenIcons/assets/eip155/56/slip44/714.png", + "metadata": {}, + "name": "Binance Coin", + "occurrences": 100, + "symbol": "BNB" + }, + "baseBpsFee": 87.5, + "quoteBpsFee": 87.5 + }, + "txFee": { + "amount": "29129397375000", + "asset": { + "address": "0x0000000000000000000000000000000000000000", + "aggregators": [], + "assetId": "eip155:56/slip44:714", + "chainId": 56, + "coingeckoId": "binancecoin", + "decimals": 18, + "iconUrl": "https://static.cx.metamask.io/api/v2/tokenIcons/assets/eip155/56/slip44/714.png", + "metadata": {}, + "name": "Binance Coin", + "occurrences": 100, + "symbol": "BNB" + }, + "maxFeePerGas": "65650000", + "maxPriorityFeePerGas": "65650000" + } + }, + "gasIncluded": true, + "gasIncluded7702": false, + "gasSponsored": false, + "minDestTokenAmount": "1991659829487340502", + "priceData": { + "priceImpact": "0.008963417690405132", + "totalFeeAmountUsd": "0.018097188783839476", + "totalFromAmountUsd": "2.068250146724521", + "totalToAmountUsd": "2.0313467000487924" + }, + "protocols": ["pancakeswap"], + "requestId": "0x8b061269697535469db54a67d1e9c05ab01d66fc3b67abc19c507f29e8c303da", + "slippage": 2, + "srcAsset": { + "address": "0x0000000000000000000000000000000000000000", + "aggregators": [], + "assetId": "eip155:56/slip44:714", + "chainId": 56, + "coingeckoId": "binancecoin", + "decimals": 18, + "iconUrl": "https://static.cx.metamask.io/api/v2/tokenIcons/assets/eip155/56/slip44/714.png", + "metadata": {}, + "name": "Binance Coin", + "occurrences": 100, + "symbol": "BNB" + }, + "srcChainId": 56, + "srcTokenAmount": "3193570800595136", + "steps": [], + "walletAddress": "0xF25bd11C334507Fd007d584E2D0b7b2C6543f714" + }, + "slippagePercentage": 0, + "startTime": 1774392066060, + "status": { + "srcChain": { + "chainId": 56, + "txHash": "0x812dd5089184217d8175144edd039285e3eb57d6159fe4ed8cd51d905298abf3" + }, + "status": "FAILED" + }, + "txMetaId": "8b7aeae0-27d2-11f1-a115-6b5c45028a09" + }, + "8dc780d0-39d7-11f1-b3fb-3727d90ba13b": { + "account": "0x141d32a89a1e0a5ef360034a2f60a4b917c18838", + "actionId": "1776373338457.2598", + "completionTime": 1776373350216, + "estimatedProcessingTimeInSeconds": 6, + "hasApprovalTx": false, + "isStxEnabled": false, + "location": "Main View", + "originalTransactionId": "8dc780d0-39d7-11f1-b3fb-3727d90ba13b", + "pricingData": { + "amountSent": "0.009905049240083164", + "amountSentInUsd": "23.268572114811193415809287868", + "quotedGasAmount": "0.0000021564667098", + "quotedGasInUsd": "0.0050658911363220666173226", + "quotedReturnInUsd": "23.020225286799337659793818833" + }, + "quote": { + "aggregator": "relay", + "bridgeId": "relay", + "bridges": ["Relay"], + "destAsset": { + "address": "0x0000000000000000000000000000000000000000", + "aggregators": [], + "assetId": "eip155:1/slip44:60", + "chainId": 1, + "coingeckoId": "ethereum", + "decimals": 18, + "iconUrl": "https://static.cx.metamask.io/api/v2/tokenIcons/assets/eip155/1/slip44/60.png", + "metadata": {}, + "name": "Ether", + "occurrences": 100, + "symbol": "ETH" + }, + "destChainId": 1, + "destTokenAmount": "9799332071537609", + "feeData": { + "metabridge": { + "amount": "86669180850727", + "asset": { + "address": "0x0000000000000000000000000000000000000000", + "aggregators": [], + "assetId": "eip155:42161/slip44:60", + "chainId": 42161, + "coingeckoId": "ethereum", + "decimals": 18, + "iconUrl": "https://static.cx.metamask.io/api/v2/tokenIcons/assets/eip155/42161/slip44/60.png", + "metadata": {}, + "name": "Ether", + "occurrences": 100, + "symbol": "ETH" + }, + "baseBpsFee": 87.5, + "quoteBpsFee": 87.5 + }, + "txFee": { + "amount": "3263898924240", + "asset": { + "address": "0x0000000000000000000000000000000000000000", + "aggregators": [], + "assetId": "eip155:42161/slip44:60", + "chainId": 42161, + "coingeckoId": "ethereum", + "decimals": 18, + "iconUrl": "https://static.cx.metamask.io/api/v2/tokenIcons/assets/eip155/42161/slip44/60.png", + "metadata": {}, + "name": "Ether", + "occurrences": 100, + "symbol": "ETH" + }, + "maxFeePerGas": "22628251", + "maxPriorityFeePerGas": "1" + } + }, + "gasIncluded": true, + "gasIncluded7702": false, + "minDestTokenAmount": "9603345430106857", + "priceData": { + "priceImpact": "0.011002243370011554", + "totalFeeAmountUsd": "0.20366641901866997", + "totalFromAmountUsd": "23.276162173562465", + "totalToAmountUsd": "23.012486628410457" + }, + "protocols": ["Relay"], + "requestId": "0x9bd7f55386bb8ad80e8709a64c218c31407fcbdffb21ba3d9c736a7a635ff212", + "srcAsset": { + "address": "0x0000000000000000000000000000000000000000", + "aggregators": [], + "assetId": "eip155:42161/slip44:60", + "chainId": 42161, + "coingeckoId": "ethereum", + "decimals": 18, + "iconUrl": "https://static.cx.metamask.io/api/v2/tokenIcons/assets/eip155/42161/slip44/60.png", + "metadata": {}, + "name": "Ether", + "occurrences": 100, + "symbol": "ETH" + }, + "srcChainId": 42161, + "srcTokenAmount": "9815116160308197", + "steps": [ + { + "action": "bridge", + "destAmount": "9799332071537609", + "destAsset": { + "address": "0x0000000000000000000000000000000000000000", + "aggregators": [], + "assetId": "eip155:1/slip44:60", + "chainId": 1, + "coingeckoId": "ethereum", + "decimals": 18, + "iconUrl": "https://static.cx.metamask.io/api/v2/tokenIcons/assets/eip155/1/slip44/60.png", + "metadata": {}, + "name": "Ether", + "occurrences": 100, + "symbol": "ETH" + }, + "destChainId": 1, + "protocol": { + "name": "relay" + }, + "srcAmount": "9815116160308197", + "srcAsset": { + "address": "0x0000000000000000000000000000000000000000", + "aggregators": [], + "assetId": "eip155:42161/slip44:60", + "chainId": 42161, + "coingeckoId": "ethereum", + "decimals": 18, + "iconUrl": "https://static.cx.metamask.io/api/v2/tokenIcons/assets/eip155/42161/slip44/60.png", + "metadata": {}, + "name": "Ether", + "occurrences": 100, + "symbol": "ETH" + }, + "srcChainId": 42161 + } + ] + }, + "slippagePercentage": 0, + "startTime": 1776373338373, + "status": { + "bridge": "relay", + "destChain": { + "chainId": 1, + "txHash": "0xdaf4a004470fe35e64ab5e59eebf80a2c30b33521043211978765153b4307a89" + }, + "isExpectedToken": true, + "isUnrecognizedRouterAddress": false, + "srcChain": { + "chainId": 42161, + "txHash": "0xa3e05b352b25c37b607c8d6200bfad67e030cc1f1cccfbde23eca29fd25ef0f6" + }, + "status": "COMPLETE" + }, + "txMetaId": "8dc780d0-39d7-11f1-b3fb-3727d90ba13b" + }, + "9b485fb0-1d65-11f1-9cc5-3b0a0edc0d9a": { + "account": "0x30e8ccad5a980bdf30447f8c2c48e70989d9d294", + "batchId": "0x55d07fa6f2b0498480569ae8915410eb", + "estimatedProcessingTimeInSeconds": 0, + "hasApprovalTx": false, + "isStxEnabled": true, + "location": "Main View", + "originalTransactionId": "9b485fb0-1d65-11f1-9cc5-3b0a0edc0d9a", + "pricingData": { + "amountSent": "0.001", + "amountSentInUsd": "0.64674944903", + "quotedGasAmount": "0.0000097075", + "quotedGasInUsd": "0.006278320276458725", + "quotedReturnInUsd": "0.6419008048632919321546019928550076326715606" + }, + "quote": { + "aggregator": "uniswap", + "aggregatorType": "AGG", + "bridgeId": "uniswap", + "bridges": ["uniswap"], + "destAsset": { + "address": "0x55d398326f99059ff775485246999027b3197955", + "aggregators": [ + "pancakeExtended", + "oneInch", + "liFi", + "socket", + "rubic", + "squid", + "rango", + "sonarwatch", + "sushiSwap" + ], + "assetId": "eip155:56/erc20:0x55d398326f99059ff775485246999027b3197955", + "chainId": 56, + "coingeckoId": "binance-bridged-usdt-bnb-smart-chain", + "decimals": 18, + "iconUrl": "https://static.cx.metamask.io/api/v2/tokenIcons/assets/eip155/56/erc20/0x55d398326f99059ff775485246999027b3197955.png", + "metadata": { + "storage": { + "approval": 2, + "balance": 1 + } + }, + "name": "Tether USD", + "occurrences": 11, + "symbol": "USDT" + }, + "destChainId": 56, + "destTokenAmount": "641900804863491158", + "destWalletAddress": "0x30E8ccaD5A980BDF30447f8c2C48e70989D9d294", + "feeData": { + "metabridge": { + "amount": "8750000000000", + "asset": { + "address": "0x0000000000000000000000000000000000000000", + "aggregators": [], + "assetId": "eip155:56/slip44:714", + "chainId": 56, + "coingeckoId": "binancecoin", + "decimals": 18, + "iconUrl": "https://static.cx.metamask.io/api/v2/tokenIcons/assets/eip155/56/slip44/714.png", + "metadata": {}, + "name": "Binance Coin", + "occurrences": 100, + "symbol": "BNB" + }, + "baseBpsFee": 87.5, + "quoteBpsFee": 87.5 + } + }, + "gasIncluded": false, + "gasIncluded7702": false, + "gasSponsored": false, + "minDestTokenAmount": "629062788766221334", + "priceData": { + "priceImpact": "-0.0021464858951511807", + "totalFeeAmountUsd": "0.005654074999999999", + "totalFromAmountUsd": "0.64618", + "totalToAmountUsd": "0.6419008048634911" + }, + "protocols": ["uniswap"], + "requestId": "0xd175ed08e021ad43f5e7bee1250836b3c5d91b5bcaeff1c48b10339d730ebe54", + "slippage": 2, + "srcAsset": { + "address": "0x0000000000000000000000000000000000000000", + "aggregators": [], + "assetId": "eip155:56/slip44:714", + "chainId": 56, + "coingeckoId": "binancecoin", + "decimals": 18, + "iconUrl": "https://static.cx.metamask.io/api/v2/tokenIcons/assets/eip155/56/slip44/714.png", + "metadata": {}, + "name": "Binance Coin", + "occurrences": 100, + "symbol": "BNB" + }, + "srcChainId": 56, + "srcTokenAmount": "991250000000000", + "steps": [], + "walletAddress": "0x30E8ccaD5A980BDF30447f8c2C48e70989D9d294" + }, + "slippagePercentage": 0, + "startTime": 1773245765929, + "status": { + "srcChain": { + "chainId": 56 + }, + "status": "PENDING" + }, + "txMetaId": "9b485fb0-1d65-11f1-9cc5-3b0a0edc0d9a" + }, + "9e7ac440-2934-11f1-9401-213b64721d37": { + "account": "0x141d32a89a1e0a5ef360034a2f60a4b917c18838", + "approvalTxId": "9e54ecc0-2934-11f1-9401-213b64721d37", + "batchId": "0x144a7e8740a74c42b2def8974c46d884", + "completionTime": 1774544154175, + "estimatedProcessingTimeInSeconds": 10, + "hasApprovalTx": true, + "isStxEnabled": true, + "location": "Main View", + "originalTransactionId": "9e7ac440-2934-11f1-9401-213b64721d37", + "pricingData": { + "amountSent": "8.852619604988224588", + "amountSentInUsd": "8.85276127646068009672865697729821848636115536", + "quotedGasAmount": "0.00000648555", + "quotedGasInUsd": "0.00406665274753739865", + "quotedReturnInUsd": "8.783611904863379430373784055" + }, + "quote": { + "aggregator": "squid", + "bridgeId": "squid", + "bridges": ["coral"], + "destAsset": { + "address": "0x0000000000000000000000000000000000000000", + "aggregators": [], + "assetId": "eip155:8453/slip44:60", + "chainId": 8453, + "coingeckoId": "ethereum", + "decimals": 18, + "iconUrl": "https://static.cx.metamask.io/api/v2/tokenIcons/assets/eip155/8453/slip44/60.png", + "metadata": {}, + "name": "Ether", + "occurrences": 100, + "price": "2066.16242588", + "symbol": "ETH" + }, + "destChainId": 8453, + "destTokenAmount": "4246733891825021", + "feeData": { + "metabridge": { + "amount": "77460421543646965", + "asset": { + "address": "0x55d398326f99059ff775485246999027b3197955", + "aggregators": [ + "pancakeExtended", + "oneInch", + "liFi", + "trustWallet", + "socket", + "squid", + "rango", + "sonarwatch", + "sushiSwap" + ], + "assetId": "eip155:56/erc20:0x55d398326f99059ff775485246999027b3197955", + "chainId": 56, + "coingeckoId": "binance-bridged-usdt-bnb-smart-chain", + "decimals": 18, + "iconUrl": "https://static.cx.metamask.io/api/v2/tokenIcons/assets/eip155/56/erc20/0x55d398326f99059ff775485246999027b3197955.png", + "metadata": { + "storage": { + "approval": 2, + "balance": 1 + } + }, + "name": "Tether USD", + "occurrences": 9, + "symbol": "USDT" + }, + "baseBpsFee": 87.5, + "quoteBpsFee": 87.5 + } + }, + "gasIncluded": false, + "gasIncluded7702": false, + "minDestTokenAmount": "4161689755023839", + "priceData": { + "priceImpact": "0.0098138785611246", + "totalFeeAmountUsd": "0.07739086208510076", + "totalFromAmountUsd": "8.844669952582946", + "totalToAmountUsd": "8.757869435755069" + }, + "protocols": ["coral"], + "requestId": "c4f5f8fc34a2f1955f34bb5ee15a5f15", + "slippage": 2, + "srcAsset": { + "address": "0x55d398326f99059ff775485246999027b3197955", + "aggregators": [ + "pancakeExtended", + "oneInch", + "liFi", + "trustWallet", + "socket", + "squid", + "rango", + "sonarwatch", + "sushiSwap" + ], + "assetId": "eip155:56/erc20:0x55d398326f99059ff775485246999027b3197955", + "chainId": 56, + "coingeckoId": "binance-bridged-usdt-bnb-smart-chain", + "decimals": 18, + "iconUrl": "https://static.cx.metamask.io/api/v2/tokenIcons/assets/eip155/56/erc20/0x55d398326f99059ff775485246999027b3197955.png", + "metadata": { + "storage": { + "approval": 2, + "balance": 1 + } + }, + "name": "Tether USD", + "occurrences": 9, + "price": "0.999407086417287", + "symbol": "USDT" + }, + "srcChainId": 56, + "srcTokenAmount": "8775159183444577623", + "steps": [ + { + "action": "bridge", + "destAmount": "4246733891825021", + "destAsset": { + "address": "0x0000000000000000000000000000000000000000", + "aggregators": [], + "assetId": "eip155:8453/slip44:60", + "chainId": 8453, + "coingeckoId": "ethereum", + "decimals": 18, + "iconUrl": "https://static.cx.metamask.io/api/v2/tokenIcons/assets/eip155/8453/slip44/60.png", + "metadata": {}, + "name": "Ether", + "occurrences": 100, + "symbol": "ETH" + }, + "destChainId": 8453, + "protocol": { + "displayName": "CORAL", + "name": "CORAL" + }, + "srcAmount": "8775159183444577623", + "srcAsset": { + "address": "0x55d398326f99059ff775485246999027b3197955", + "aggregators": [ + "pancakeExtended", + "oneInch", + "liFi", + "trustWallet", + "socket", + "squid", + "rango", + "sonarwatch", + "sushiSwap" + ], + "assetId": "eip155:56/erc20:0x55d398326f99059ff775485246999027b3197955", + "chainId": 56, + "coingeckoId": "binance-bridged-usdt-bnb-smart-chain", + "decimals": 18, + "iconUrl": "https://static.cx.metamask.io/api/v2/tokenIcons/assets/eip155/56/erc20/0x55d398326f99059ff775485246999027b3197955.png", + "metadata": { + "storage": { + "approval": 2, + "balance": 1 + } + }, + "name": "Tether USD", + "occurrences": 9, + "symbol": "USDT" + }, + "srcChainId": 56 + } + ] + }, + "slippagePercentage": 0, + "startTime": 1774544139508, + "status": { + "bridge": "axelar", + "destChain": { + "chainId": 8453, + "txHash": "0x1a87ff556543bc827eab82e3e61cd2db3f22fe5f18a46964dd120ec4888e75c2" + }, + "isExpectedToken": true, + "srcChain": { + "chainId": 56, + "txHash": "0x92b7a917341cb18ced9743dbe2f20d76980bffed5e9eef75a5a205ebb88d7d1d" + }, + "status": "COMPLETE" + }, + "txMetaId": "9e7ac440-2934-11f1-9401-213b64721d37" + }, + "9ef2a840-39db-11f1-bc3b-3727d90ba13b": { + "account": "0x141d32a89a1e0a5ef360034a2f60a4b917c18838", + "batchId": "0xce36b3117b3b4175a32f757f08f37c12", + "completionTime": 1776375097420, + "estimatedProcessingTimeInSeconds": 8, + "hasApprovalTx": false, + "isStxEnabled": false, + "location": "Main View", + "originalTransactionId": "9ef2a840-39db-11f1-bc3b-3727d90ba13b", + "pricingData": { + "amountSent": "0.014069073143611844", + "amountSentInUsd": "32.936025025201072622318781016", + "quotedGasAmount": "0.000002312882127", + "quotedGasInUsd": "0.005414510454073587846378", + "quotedReturnInUsd": "32.582309960267337396719482708" + }, + "quote": { + "aggregator": "relay", + "bridgeId": "relay", + "bridges": ["Relay"], + "destAsset": { + "address": "0x0000000000000000000000000000000000000000", + "aggregators": [], + "assetId": "eip155:1/slip44:60", + "chainId": 1, + "coingeckoId": "ethereum", + "decimals": 18, + "iconUrl": "https://static.cx.metamask.io/api/v2/tokenIcons/assets/eip155/1/slip44/60.png", + "metadata": {}, + "name": "Ether", + "occurrences": 100, + "symbol": "ETH" + }, + "destChainId": 1, + "destTokenAmount": "13917978920288222", + "feeData": { + "metabridge": { + "amount": "123104390006603", + "asset": { + "address": "0x0000000000000000000000000000000000000000", + "aggregators": [], + "assetId": "eip155:42161/slip44:60", + "chainId": 42161, + "coingeckoId": "ethereum", + "decimals": 18, + "iconUrl": "https://static.cx.metamask.io/api/v2/tokenIcons/assets/eip155/42161/slip44/60.png", + "metadata": {}, + "name": "Ether", + "occurrences": 100, + "symbol": "ETH" + }, + "baseBpsFee": 87.5, + "quoteBpsFee": 87.5 + }, + "txFee": { + "amount": "3096750287085", + "asset": { + "address": "0x0000000000000000000000000000000000000000", + "aggregators": [], + "assetId": "eip155:42161/slip44:60", + "chainId": 42161, + "coingeckoId": "ethereum", + "decimals": 18, + "iconUrl": "https://static.cx.metamask.io/api/v2/tokenIcons/assets/eip155/42161/slip44/60.png", + "metadata": {}, + "name": "Ether", + "occurrences": 100, + "symbol": "ETH" + }, + "maxFeePerGas": "22590001", + "maxPriorityFeePerGas": "1" + } + }, + "gasIncluded": true, + "gasIncluded7702": false, + "gasSponsored": false, + "minDestTokenAmount": "13639619341882457", + "priceData": { + "priceImpact": "0.011664693468124068", + "totalFeeAmountUsd": "0.28845054222427763", + "totalFromAmountUsd": "32.965776254203334", + "totalToAmountUsd": "32.57406910711698" + }, + "protocols": ["Relay"], + "requestId": "0xab943815c1e9b2375cc1e974ab670bf2569e0f4b9ed1d606eb8f07548f5fbc44", + "slippage": 2, + "srcAsset": { + "address": "0x0000000000000000000000000000000000000000", + "aggregators": [], + "assetId": "eip155:42161/slip44:60", + "chainId": 42161, + "coingeckoId": "ethereum", + "decimals": 18, + "iconUrl": "https://static.cx.metamask.io/api/v2/tokenIcons/assets/eip155/42161/slip44/60.png", + "metadata": {}, + "name": "Ether", + "occurrences": 100, + "symbol": "ETH" + }, + "srcChainId": 42161, + "srcTokenAmount": "13942872003318156", + "steps": [ + { + "action": "bridge", + "destAmount": "13917978920288222", + "destAsset": { + "address": "0x0000000000000000000000000000000000000000", + "aggregators": [], + "assetId": "eip155:1/slip44:60", + "chainId": 1, + "coingeckoId": "ethereum", + "decimals": 18, + "iconUrl": "https://static.cx.metamask.io/api/v2/tokenIcons/assets/eip155/1/slip44/60.png", + "metadata": {}, + "name": "Ether", + "occurrences": 100, + "symbol": "ETH" + }, + "destChainId": 1, + "protocol": { + "name": "relay" + }, + "srcAmount": "13942872003318156", + "srcAsset": { + "address": "0x0000000000000000000000000000000000000000", + "aggregators": [], + "assetId": "eip155:42161/slip44:60", + "chainId": 42161, + "coingeckoId": "ethereum", + "decimals": 18, + "iconUrl": "https://static.cx.metamask.io/api/v2/tokenIcons/assets/eip155/42161/slip44/60.png", + "metadata": {}, + "name": "Ether", + "occurrences": 100, + "symbol": "ETH" + }, + "srcChainId": 42161 + } + ] + }, + "slippagePercentage": 0, + "startTime": 1776375085169, + "status": { + "bridge": "relay", + "destChain": { + "chainId": 1, + "txHash": "0x260d0b76a9118fdd29b43140426dc185ba5812a0a6df79bcbe4bed63da6e3dc6" + }, + "isExpectedToken": true, + "isUnrecognizedRouterAddress": false, + "srcChain": { + "chainId": 42161, + "txHash": "0x8e50804fe5d9726e6f7a501f27ce71299a28320876c8508d6434e1cbab681dbd" + }, + "status": "COMPLETE" + }, + "txMetaId": "9ef2a840-39db-11f1-bc3b-3727d90ba13b" + }, + "a1af0150-182a-11f1-b7d6-03d70bc40886": { + "account": "0x30e8ccad5a980bdf30447f8c2c48e70989d9d294", + "approvalTxId": "a1989320-182a-11f1-b7d6-03d70bc40886", + "batchId": "0x2061d40a2e1841f9950e04f5de8e132c", + "estimatedProcessingTimeInSeconds": 0, + "hasApprovalTx": true, + "isStxEnabled": true, + "pricingData": { + "amountSent": "1", + "amountSentInUsd": "0.99665341702749971638556", + "quotedGasAmount": "0.073326381528324012", + "quotedGasInUsd": "0.007626137700551221193335752", + "quotedReturnInUsd": "0.99197449820791916866952878" + }, + "quote": { + "aggregator": "uniswap", + "aggregatorType": "AGG", + "bridgeId": "uniswap", + "bridges": ["uniswap"], + "destAsset": { + "address": "0x0000000000000000000000000000000000000000", + "aggregators": [], + "assetId": "eip155:137/slip44:966", + "chainId": 137, + "coingeckoId": "matic-network", + "decimals": 18, + "iconUrl": "https://static.cx.metamask.io/api/v2/tokenIcons/assets/eip155/137/slip44/966.png", + "metadata": {}, + "name": "Polygon Ecosystem Token", + "occurrences": 100, + "symbol": "POL" + }, + "destChainId": 137, + "destTokenAmount": "9537973660861658930", + "destWalletAddress": "0x30E8ccaD5A980BDF30447f8c2C48e70989D9d294", + "feeData": { + "metabridge": { + "amount": "84193966741527884", + "asset": { + "address": "0x0000000000000000000000000000000000000000", + "aggregators": [], + "assetId": "eip155:137/slip44:966", + "chainId": 137, + "coingeckoId": "matic-network", + "decimals": 18, + "iconUrl": "https://static.cx.metamask.io/api/v2/tokenIcons/assets/eip155/137/slip44/966.png", + "metadata": {}, + "name": "Polygon Ecosystem Token", + "occurrences": 100, + "symbol": "POL" + }, + "baseBpsFee": 87.5, + "quoteBpsFee": 87.5 + } + }, + "gasIncluded7702": false, + "gasSponsored": false, + "minDestTokenAmount": "9347214187644425751", + "priceData": { + "priceImpact": "-0.0018321986022797466", + "totalFeeAmountUsd": "0.008755751571285194", + "totalFromAmountUsd": "0.9988272725", + "totalToAmountUsd": "0.9919015708613084" + }, + "protocols": ["uniswap"], + "requestId": "0xaf83fdb8be0d29e5f2f7505500df5ea9b16477979c1eb40842e274a6bdebd069", + "slippage": 2, + "srcAsset": { + "address": "0xc2132d05d31c914a87c6611c10748aeb04b58e8f", + "aggregators": [ + "quickswap", + "oneInch", + "liFi", + "socket", + "squid", + "rango", + "sonarwatch", + "sushiSwap" + ], + "assetId": "eip155:137/erc20:0xc2132d05d31c914a87c6611c10748aeb04b58e8f", + "chainId": 137, + "coingeckoId": "polygon-bridged-usdt-polygon", + "decimals": 6, + "iconUrl": "https://static.cx.metamask.io/api/v2/tokenIcons/assets/eip155/137/erc20/0xc2132d05d31c914a87c6611c10748aeb04b58e8f.png", + "metadata": { + "storage": { + "approval": 1, + "balance": 0 + } + }, + "name": "Tether USD", + "occurrences": 8, + "symbol": "USDT" + }, + "srcChainId": 137, + "srcTokenAmount": "1000000", + "steps": [], + "walletAddress": "0x30E8ccaD5A980BDF30447f8c2C48e70989D9d294" + }, + "slippagePercentage": 0, + "startTime": 1772670680338, + "status": { + "srcChain": { + "chainId": 137 + }, + "status": "PENDING" + }, + "txMetaId": "a1af0150-182a-11f1-b7d6-03d70bc40886" + }, + "a7078650-1829-11f1-b7d6-03d70bc40886": { + "account": "0x30e8ccad5a980bdf30447f8c2c48e70989d9d294", + "batchId": "0xb9227fc11f7441479be50f9f8a658aed", + "estimatedProcessingTimeInSeconds": 0, + "hasApprovalTx": false, + "isStxEnabled": true, + "pricingData": { + "amountSent": "1.078178", + "amountSentInUsd": "1.0775090105761568130913207242", + "quotedGasAmount": "0.052856676266674212", + "quotedGasInUsd": "0.005486998600853830740159576", + "quotedReturnInUsd": "1.06618458887260628449386862" + }, + "quote": { + "aggregator": "0x", + "aggregatorType": "AGG", + "bridgeId": "0x", + "bridges": ["0x"], + "destAsset": { + "address": "0x0000000000000000000000000000000000000000", + "aggregators": [], + "assetId": "eip155:137/slip44:966", + "chainId": 137, + "coingeckoId": "matic-network", + "decimals": 18, + "iconUrl": "https://static.cx.metamask.io/api/v2/tokenIcons/assets/eip155/137/slip44/966.png", + "metadata": {}, + "name": "Polygon Ecosystem Token", + "occurrences": 100, + "symbol": "POL" + }, + "destChainId": 137, + "destTokenAmount": "10270637511332170690", + "destWalletAddress": "0x30E8ccaD5A980BDF30447f8c2C48e70989D9d294", + "feeData": { + "metabridge": { + "amount": "90661365169388644", + "asset": { + "address": "0x0000000000000000000000000000000000000000", + "aggregators": [], + "assetId": "eip155:137/slip44:966", + "chainId": 137, + "coingeckoId": "matic-network", + "decimals": 18, + "iconUrl": "https://static.cx.metamask.io/api/v2/tokenIcons/assets/eip155/137/slip44/966.png", + "metadata": {}, + "name": "Polygon Ecosystem Token", + "occurrences": 100, + "symbol": "POL" + }, + "baseBpsFee": 87.5, + "quoteBpsFee": 87.5 + } + }, + "gasIncluded7702": false, + "gasSponsored": false, + "minDestTokenAmount": "10065224761105527276", + "priceData": { + "priceImpact": "0.0016214778676030947", + "totalFeeAmountUsd": "0.009412916238711776", + "totalFromAmountUsd": "1.0775090128692848", + "totalToAmountUsd": "1.0663489396140626" + }, + "protocols": ["0x"], + "requestId": "0x29ff0feb02c72fe702f4f5563b5429d3b466937b1f849be9b2f07ed299f8a22c", + "slippage": 2, + "srcAsset": { + "address": "0xc2132d05d31c914a87c6611c10748aeb04b58e8f", + "aggregators": [ + "quickswap", + "oneInch", + "liFi", + "socket", + "squid", + "rango", + "sonarwatch", + "sushiSwap" + ], + "assetId": "eip155:137/erc20:0xc2132d05d31c914a87c6611c10748aeb04b58e8f", + "chainId": 137, + "coingeckoId": "polygon-bridged-usdt-polygon", + "decimals": 6, + "iconUrl": "https://static.cx.metamask.io/api/v2/tokenIcons/assets/eip155/137/erc20/0xc2132d05d31c914a87c6611c10748aeb04b58e8f.png", + "metadata": { + "storage": { + "approval": 1, + "balance": 0 + } + }, + "name": "Tether USD", + "occurrences": 8, + "symbol": "USDT" + }, + "srcChainId": 137, + "srcTokenAmount": "1078178", + "steps": [], + "walletAddress": "0x30E8ccaD5A980BDF30447f8c2C48e70989D9d294" + }, + "slippagePercentage": 0, + "startTime": 1772670259990, + "status": { + "srcChain": { + "chainId": 137 + }, + "status": "PENDING" + }, + "txMetaId": "a7078650-1829-11f1-b7d6-03d70bc40886" + }, + "a9fc0530-1d6e-11f1-a031-3b0a0edc0d9a": { + "account": "0x30e8ccad5a980bdf30447f8c2c48e70989d9d294", + "batchId": "0xdf6baf8b834443988a127ef07d570d7f", + "estimatedProcessingTimeInSeconds": 0, + "hasApprovalTx": false, + "isStxEnabled": true, + "location": "Main View", + "originalTransactionId": "a9fc0530-1d6e-11f1-a031-3b0a0edc0d9a", + "pricingData": { + "amountSent": "0.001", + "amountSentInUsd": "0.650442682895", + "quotedGasAmount": "0.0000088226", + "quotedGasInUsd": "0.005738595614109427", + "quotedReturnInUsd": "0.6470493344878519044527954366964585865296495" + }, + "quote": { + "aggregator": "uniswap", + "aggregatorType": "AGG", + "bridgeId": "uniswap", + "bridges": ["uniswap"], + "destAsset": { + "address": "0x55d398326f99059ff775485246999027b3197955", + "aggregators": [ + "pancakeExtended", + "oneInch", + "liFi", + "socket", + "rubic", + "squid", + "rango", + "sonarwatch", + "sushiSwap" + ], + "assetId": "eip155:56/erc20:0x55d398326f99059ff775485246999027b3197955", + "chainId": 56, + "coingeckoId": "binance-bridged-usdt-bnb-smart-chain", + "decimals": 18, + "iconUrl": "https://static.cx.metamask.io/api/v2/tokenIcons/assets/eip155/56/erc20/0x55d398326f99059ff775485246999027b3197955.png", + "metadata": { + "storage": { + "approval": 2, + "balance": 1 + } + }, + "name": "Tether USD", + "occurrences": 11, + "symbol": "USDT" + }, + "destChainId": 56, + "destTokenAmount": "647049334487973805", + "destWalletAddress": "0x30E8ccaD5A980BDF30447f8c2C48e70989D9d294", + "feeData": { + "metabridge": { + "amount": "8750000000000", + "asset": { + "address": "0x0000000000000000000000000000000000000000", + "aggregators": [], + "assetId": "eip155:56/slip44:714", + "chainId": 56, + "coingeckoId": "binancecoin", + "decimals": 18, + "iconUrl": "https://static.cx.metamask.io/api/v2/tokenIcons/assets/eip155/56/slip44/714.png", + "metadata": {}, + "name": "Binance Coin", + "occurrences": 100, + "symbol": "BNB" + }, + "baseBpsFee": 87.5, + "quoteBpsFee": 87.5 + } + }, + "gasIncluded": false, + "gasIncluded7702": false, + "gasSponsored": false, + "minDestTokenAmount": "634108347798214328", + "priceData": { + "priceImpact": "-0.003383228569669163", + "totalFeeAmountUsd": "0.005692399999999999", + "totalFromAmountUsd": "0.6505599999999999", + "totalToAmountUsd": "0.6470493344879739" + }, + "protocols": ["uniswap"], + "requestId": "0x2b66b0c13f0be0acb974c12bc6aa7f530cd492937afb16fe51e016db16c0fb97", + "slippage": 2, + "srcAsset": { + "address": "0x0000000000000000000000000000000000000000", + "aggregators": [], + "assetId": "eip155:56/slip44:714", + "chainId": 56, + "coingeckoId": "binancecoin", + "decimals": 18, + "iconUrl": "https://static.cx.metamask.io/api/v2/tokenIcons/assets/eip155/56/slip44/714.png", + "metadata": {}, + "name": "Binance Coin", + "occurrences": 100, + "symbol": "BNB" + }, + "srcChainId": 56, + "srcTokenAmount": "991250000000000", + "steps": [], + "walletAddress": "0x30E8ccaD5A980BDF30447f8c2C48e70989D9d294" + }, + "slippagePercentage": 0, + "startTime": 1773249655486, + "status": { + "srcChain": { + "chainId": 56 + }, + "status": "PENDING" + }, + "txMetaId": "a9fc0530-1d6e-11f1-a031-3b0a0edc0d9a" + }, + "aa940ae0-39c7-11f1-a280-3727d90ba13b": { + "account": "0x141d32a89a1e0a5ef360034a2f60a4b917c18838", + "batchId": "0xf3cca04fd9da447f8eaf554014fe08df", + "completionTime": 1776366546909, + "estimatedProcessingTimeInSeconds": 6, + "hasApprovalTx": false, + "isStxEnabled": true, + "location": "Main View", + "originalTransactionId": "aa940ae0-39c7-11f1-a280-3727d90ba13b", + "pricingData": { + "amountSent": "0.014991819002505789", + "amountSentInUsd": "35.138086032029867071882444857", + "quotedGasAmount": "0.0000021942469404", + "quotedGasInUsd": "0.0051429141289930497807852", + "quotedReturnInUsd": "34.778356485299929284265223158" + }, + "quote": { + "aggregator": "relay", + "bridgeId": "relay", + "bridges": ["Relay"], + "destAsset": { + "address": "0x0000000000000000000000000000000000000000", + "aggregators": [], + "assetId": "eip155:1/slip44:60", + "chainId": 1, + "coingeckoId": "ethereum", + "decimals": 18, + "iconUrl": "https://static.cx.metamask.io/api/v2/tokenIcons/assets/eip155/1/slip44/60.png", + "metadata": {}, + "name": "Ether", + "occurrences": 100, + "symbol": "ETH" + }, + "destChainId": 1, + "destTokenAmount": "14838338808692366", + "feeData": { + "metabridge": { + "amount": "131178416271925", + "asset": { + "address": "0x0000000000000000000000000000000000000000", + "aggregators": [ + "traderJoe", + "oneInch", + "liFi", + "socket", + "rubic", + "squid", + "rango", + "sonarwatch", + "sushiSwap" + ], + "assetId": "eip155:42161/slip44:60", + "chainId": 42161, + "coingeckoId": "arbitrum", + "decimals": 18, + "iconUrl": "https://static.cx.metamask.io/api/v2/tokenIcons/assets/eip155/42161/slip44/60.png", + "metadata": { + "storage": { + "approval": 52, + "balance": 51 + } + }, + "name": "Ether", + "occurrences": 9, + "symbol": "ETH" + }, + "baseBpsFee": 87.5, + "quoteBpsFee": 87.5 + }, + "txFee": { + "amount": "3313955199228", + "asset": { + "address": "0x0000000000000000000000000000000000000000", + "aggregators": [ + "traderJoe", + "oneInch", + "liFi", + "socket", + "rubic", + "squid", + "rango", + "sonarwatch", + "sushiSwap" + ], + "assetId": "eip155:42161/slip44:60", + "chainId": 42161, + "coingeckoId": "arbitrum", + "decimals": 18, + "iconUrl": "https://static.cx.metamask.io/api/v2/tokenIcons/assets/eip155/42161/slip44/60.png", + "metadata": { + "storage": { + "approval": 52, + "balance": 51 + } + }, + "name": "Ether", + "occurrences": 9, + "symbol": "ETH" + }, + "maxFeePerGas": "22509001", + "maxPriorityFeePerGas": "1" + } + }, + "gasIncluded": true, + "gasIncluded7702": false, + "minDestTokenAmount": "14541572032518519", + "priceData": { + "priceImpact": "0.010141215487063239", + "totalFeeAmountUsd": "0.30756175576238204", + "totalFromAmountUsd": "35.14991494427241", + "totalToAmountUsd": "34.785760958304245" + }, + "protocols": ["Relay"], + "requestId": "0x6464d0ac92cfd508673745d35c849544659dd90108cab31de28e58545682a4a6", + "srcAsset": { + "address": "0x0000000000000000000000000000000000000000", + "aggregators": [ + "traderJoe", + "oneInch", + "liFi", + "socket", + "rubic", + "squid", + "rango", + "sonarwatch", + "sushiSwap" + ], + "assetId": "eip155:42161/slip44:60", + "chainId": 42161, + "coingeckoId": "arbitrum", + "decimals": 18, + "iconUrl": "https://static.cx.metamask.io/api/v2/tokenIcons/assets/eip155/42161/slip44/60.png", + "metadata": { + "storage": { + "approval": 52, + "balance": 51 + } + }, + "name": "Ether", + "occurrences": 9, + "symbol": "ETH" + }, + "srcChainId": 42161, + "srcTokenAmount": "14857326631034636", + "steps": [ + { + "action": "bridge", + "destAmount": "14838338808692366", + "destAsset": { + "address": "0x0000000000000000000000000000000000000000", + "aggregators": [], + "assetId": "eip155:1/slip44:60", + "chainId": 1, + "coingeckoId": "ethereum", + "decimals": 18, + "iconUrl": "https://static.cx.metamask.io/api/v2/tokenIcons/assets/eip155/1/slip44/60.png", + "metadata": {}, + "name": "Ether", + "occurrences": 100, + "symbol": "ETH" + }, + "destChainId": 1, + "protocol": { + "name": "relay" + }, + "srcAmount": "14857326631034636", + "srcAsset": { + "address": "0x0000000000000000000000000000000000000000", + "aggregators": [ + "traderJoe", + "oneInch", + "liFi", + "socket", + "rubic", + "squid", + "rango", + "sonarwatch", + "sushiSwap" + ], + "assetId": "eip155:42161/slip44:60", + "chainId": 42161, + "coingeckoId": "arbitrum", + "decimals": 18, + "iconUrl": "https://static.cx.metamask.io/api/v2/tokenIcons/assets/eip155/42161/slip44/60.png", + "metadata": { + "storage": { + "approval": 52, + "balance": 51 + } + }, + "name": "Ether", + "occurrences": 9, + "symbol": "ETH" + }, + "srcChainId": 42161 + } + ] + }, + "slippagePercentage": 0, + "startTime": 1776366514736, + "status": { + "bridge": "relay", + "destChain": { + "chainId": 1, + "txHash": "0xdc4e0284fdf36a74a858e96d65a0c7ea4af4bcb82b237db1fc7f469482be87b1" + }, + "isExpectedToken": true, + "isUnrecognizedRouterAddress": false, + "srcChain": { + "chainId": 42161, + "txHash": "0x303af96afa1a1e9a42299f146147a41722e44a56c1644ec45a87fb939d08f78f" + }, + "status": "COMPLETE" + }, + "txMetaId": "aa940ae0-39c7-11f1-a280-3727d90ba13b" + }, + "acf895a0-1d69-11f1-9ded-3b0a0edc0d9a": { + "account": "0x30e8ccad5a980bdf30447f8c2c48e70989d9d294", + "batchId": "0xcf6d86288dc249b397c325e6df53c1e2", + "estimatedProcessingTimeInSeconds": 0, + "hasApprovalTx": false, + "isStxEnabled": true, + "location": "Main View", + "originalTransactionId": "acf895a0-1d69-11f1-9ded-3b0a0edc0d9a", + "pricingData": { + "amountSent": "0.001", + "amountSentInUsd": "0.64879966151", + "quotedGasAmount": "0.0000089415", + "quotedGasInUsd": "0.005801242173391665", + "quotedReturnInUsd": "0.6431361346094591995038380637241237640663226" + }, + "quote": { + "aggregator": "uniswap", + "aggregatorType": "AGG", + "bridgeId": "uniswap", + "bridges": ["uniswap"], + "destAsset": { + "address": "0x55d398326f99059ff775485246999027b3197955", + "aggregators": [ + "pancakeExtended", + "oneInch", + "liFi", + "socket", + "rubic", + "squid", + "rango", + "sonarwatch", + "sushiSwap" + ], + "assetId": "eip155:56/erc20:0x55d398326f99059ff775485246999027b3197955", + "chainId": 56, + "coingeckoId": "binance-bridged-usdt-bnb-smart-chain", + "decimals": 18, + "iconUrl": "https://static.cx.metamask.io/api/v2/tokenIcons/assets/eip155/56/erc20/0x55d398326f99059ff775485246999027b3197955.png", + "metadata": { + "storage": { + "approval": 2, + "balance": 1 + } + }, + "name": "Tether USD", + "occurrences": 11, + "symbol": "USDT" + }, + "destChainId": 56, + "destTokenAmount": "643242912932943342", + "destWalletAddress": "0x30E8ccaD5A980BDF30447f8c2C48e70989D9d294", + "feeData": { + "metabridge": { + "amount": "8750000000000", + "asset": { + "address": "0x0000000000000000000000000000000000000000", + "aggregators": [], + "assetId": "eip155:56/slip44:714", + "chainId": 56, + "coingeckoId": "binancecoin", + "decimals": 18, + "iconUrl": "https://static.cx.metamask.io/api/v2/tokenIcons/assets/eip155/56/slip44/714.png", + "metadata": {}, + "name": "Binance Coin", + "occurrences": 100, + "symbol": "BNB" + }, + "baseBpsFee": 87.5, + "quoteBpsFee": 87.5 + } + }, + "gasIncluded": false, + "gasIncluded7702": false, + "gasSponsored": false, + "minDestTokenAmount": "630378054674284475", + "priceData": { + "priceImpact": "-0.00009749603348596838", + "totalFeeAmountUsd": "0.005676562499999999", + "totalFromAmountUsd": "0.64875", + "totalToAmountUsd": "0.6431361346093964" + }, + "protocols": ["uniswap"], + "requestId": "0x7dd582ce3328840f7a7114b9f5f6f9e119048b5cbf00ff3870c191fba672c88b", + "slippage": 2, + "srcAsset": { + "address": "0x0000000000000000000000000000000000000000", + "aggregators": [], + "assetId": "eip155:56/slip44:714", + "chainId": 56, + "coingeckoId": "binancecoin", + "decimals": 18, + "iconUrl": "https://static.cx.metamask.io/api/v2/tokenIcons/assets/eip155/56/slip44/714.png", + "metadata": {}, + "name": "Binance Coin", + "occurrences": 100, + "symbol": "BNB" + }, + "srcChainId": 56, + "srcTokenAmount": "991250000000000", + "steps": [], + "walletAddress": "0x30E8ccaD5A980BDF30447f8c2C48e70989D9d294" + }, + "slippagePercentage": 0, + "startTime": 1773247513483, + "status": { + "srcChain": { + "chainId": 56 + }, + "status": "PENDING" + }, + "txMetaId": "acf895a0-1d69-11f1-9ded-3b0a0edc0d9a" + }, + "aeeb6e00-2877-11f1-ad30-ab204d847804": { + "account": "0xf25bd11c334507fd007d584e2d0b7b2c6543f714", + "batchId": "0xdf7c3475c65f4c238500a972c12753d7", + "estimatedProcessingTimeInSeconds": 0, + "hasApprovalTx": true, + "isStxEnabled": false, + "location": "Main View", + "originalTransactionId": "aeeb6e00-2877-11f1-ad30-ab204d847804", + "pricingData": { + "amountSent": "1.765059078272677076", + "amountSentInUsd": "1.76472901222430648263861252244406885934904704", + "quotedGasAmount": "0.0000125891", + "quotedGasInUsd": "0.0081208214388407776", + "quotedReturnInUsd": "1.718899595572890413350218208" + }, + "quote": { + "aggregator": "uniswap", + "aggregatorType": "AGG", + "bridgeId": "uniswap", + "bridges": ["uniswap"], + "destAsset": { + "address": "0x0000000000000000000000000000000000000000", + "aggregators": [], + "assetId": "eip155:56/slip44:714", + "chainId": 56, + "coingeckoId": "binancecoin", + "decimals": 18, + "iconUrl": "https://static.cx.metamask.io/api/v2/tokenIcons/assets/eip155/56/slip44/714.png", + "metadata": {}, + "name": "Binance Coin", + "occurrences": 100, + "symbol": "BNB" + }, + "destChainId": 56, + "destTokenAmount": "2664681037700003", + "destWalletAddress": "0xF25bd11C334507Fd007d584E2D0b7b2C6543f714", + "feeData": { + "metabridge": { + "amount": "23897891795889", + "asset": { + "address": "0x0000000000000000000000000000000000000000", + "aggregators": [], + "assetId": "eip155:56/slip44:714", + "chainId": 56, + "coingeckoId": "binancecoin", + "decimals": 18, + "iconUrl": "https://static.cx.metamask.io/api/v2/tokenIcons/assets/eip155/56/slip44/714.png", + "metadata": {}, + "name": "Binance Coin", + "occurrences": 100, + "symbol": "BNB" + }, + "baseBpsFee": 87.5, + "quoteBpsFee": 87.5 + }, + "txFee": { + "amount": "42608704320000", + "asset": { + "address": "0x0000000000000000000000000000000000000000", + "aggregators": [], + "assetId": "eip155:56/slip44:714", + "chainId": 56, + "coingeckoId": "binancecoin", + "decimals": 18, + "iconUrl": "https://static.cx.metamask.io/api/v2/tokenIcons/assets/eip155/56/slip44/714.png", + "metadata": {}, + "name": "Binance Coin", + "occurrences": 100, + "symbol": "BNB" + }, + "maxFeePerGas": "60000000", + "maxPriorityFeePerGas": "60000000" + } + }, + "gasIncluded": true, + "gasIncluded7702": true, + "gasSponsored": false, + "minDestTokenAmount": "2611387416946002", + "priceData": { + "priceImpact": "0.0008588048262491247", + "totalFeeAmountUsd": "0.015426806091000224", + "totalFromAmountUsd": "1.7645789822033868", + "totalToAmountUsd": "1.720131550266483" + }, + "protocols": ["uniswap"], + "requestId": "0xcb974428569dc4212154105aee21516da0aa983ec69cf5b1149202484d53615a", + "slippage": 2, + "srcAsset": { + "address": "0x55d398326f99059ff775485246999027b3197955", + "aggregators": [ + "pancakeExtended", + "oneInch", + "liFi", + "trustWallet", + "socket", + "rubic", + "squid", + "rango", + "sonarwatch", + "sushiSwap" + ], + "assetId": "eip155:56/erc20:0x55d398326f99059ff775485246999027b3197955", + "chainId": 56, + "coingeckoId": "binance-bridged-usdt-bnb-smart-chain", + "decimals": 18, + "iconUrl": "https://static.cx.metamask.io/api/v2/tokenIcons/assets/eip155/56/erc20/0x55d398326f99059ff775485246999027b3197955.png", + "metadata": { + "storage": { + "approval": 2, + "balance": 1 + } + }, + "name": "Tether USD", + "occurrences": 11, + "symbol": "USDT" + }, + "srcChainId": 56, + "srcTokenAmount": "1765059078272677076", + "steps": [], + "walletAddress": "0xF25bd11C334507Fd007d584E2D0b7b2C6543f714" + }, + "slippagePercentage": 0, + "startTime": 1774462992470, + "status": { + "srcChain": { + "chainId": 56, + "txHash": "0x03ff491e058f56ddf8c06b070b1f94e60d808472b7c4d6b06df3e5f637699b5c" + }, + "status": "PENDING" + }, + "txMetaId": "aeeb6e00-2877-11f1-ad30-ab204d847804" + }, + "af812f50-2c9e-11f1-8d8e-f533125480a0": { + "account": "0x141d32a89a1e0a5ef360034a2f60a4b917c18838", + "batchId": "0x9c50168a2123464b81cb86efc7ee3908", + "estimatedProcessingTimeInSeconds": 0, + "hasApprovalTx": false, + "isStxEnabled": true, + "location": "Main View", + "originalTransactionId": "af812f50-2c9e-11f1-8d8e-f533125480a0", + "pricingData": { + "amountSent": "0.008530768394912923", + "amountSentInUsd": "17.352104199781670752248181354", + "quotedGasAmount": "0.000535663191744865", + "quotedGasInUsd": "1.08957166445724412203514627", + "quotedReturnInUsd": "15.920172267996500697050019457026816" + }, + "quote": { + "aggregator": "uniswap", + "aggregatorType": "AGG", + "bridgeId": "uniswap", + "bridges": ["uniswap"], + "destAsset": { + "address": "0xaca92e438df0b2401ff60da7e4337b687a2435da", + "aggregators": ["metamask", "liFi", "socket", "rubic", "rango"], + "assetId": "eip155:1/erc20:0xaca92e438df0b2401ff60da7e4337b687a2435da", + "chainId": 1, + "decimals": 6, + "iconUrl": "https://static.cx.metamask.io/api/v2/tokenIcons/assets/eip155/1/erc20/0xaca92e438df0b2401ff60da7e4337b687a2435da.png", + "metadata": {}, + "name": "MetaMask USD", + "occurrences": 5, + "symbol": "MUSD" + }, + "destChainId": 1, + "destTokenAmount": "15904268", + "destWalletAddress": "0x141d32a89a1e0a5Ef360034a2f60a4B917c18838", + "feeData": { + "metabridge": { + "amount": "0", + "asset": { + "address": "0x0000000000000000000000000000000000000000", + "aggregators": [], + "assetId": "eip155:1/slip44:60", + "chainId": 1, + "coingeckoId": "ethereum", + "decimals": 18, + "iconUrl": "https://static.cx.metamask.io/api/v2/tokenIcons/assets/eip155/1/slip44/60.png", + "metadata": {}, + "name": "Ether", + "occurrences": 100, + "symbol": "ETH" + }, + "baseBpsFee": 87.5, + "quoteBpsFee": 0 + }, + "txFee": { + "amount": "727603981452392", + "asset": { + "address": "0x0000000000000000000000000000000000000000", + "aggregators": [], + "assetId": "eip155:1/slip44:60", + "chainId": 1, + "coingeckoId": "ethereum", + "decimals": 18, + "iconUrl": "https://static.cx.metamask.io/api/v2/tokenIcons/assets/eip155/1/slip44/60.png", + "metadata": {}, + "name": "Ether", + "occurrences": 100, + "symbol": "ETH" + }, + "maxFeePerGas": "2257998788", + "maxPriorityFeePerGas": "2100000001" + } + }, + "gasIncluded": true, + "gasIncluded7702": false, + "gasSponsored": false, + "minDestTokenAmount": "15586182", + "priceData": { + "priceImpact": "-0.003946472580005189", + "totalFeeAmountUsd": "0", + "totalFromAmountUsd": "17.336227532142043", + "totalToAmountUsd": "15.920172267999998" + }, + "protocols": ["uniswap"], + "requestId": "0xcd3a6cb4b0dc21a628e1c61235ed03606fa9eb50a9b2fb004155fdb186fceacb", + "slippage": 2, + "srcAsset": { + "address": "0x0000000000000000000000000000000000000000", + "aggregators": [], + "assetId": "eip155:1/slip44:60", + "chainId": 1, + "coingeckoId": "ethereum", + "decimals": 18, + "iconUrl": "https://static.cx.metamask.io/api/v2/tokenIcons/assets/eip155/1/slip44/60.png", + "metadata": {}, + "name": "Ether", + "occurrences": 100, + "symbol": "ETH" + }, + "srcChainId": 1, + "srcTokenAmount": "7803164413460531", + "steps": [], + "walletAddress": "0x141d32a89a1e0a5Ef360034a2f60a4B917c18838" + }, + "slippagePercentage": 0, + "startTime": 1774919548273, + "status": { + "srcChain": { + "chainId": 1 + }, + "status": "PENDING" + }, + "txMetaId": "af812f50-2c9e-11f1-8d8e-f533125480a0" + }, + "af9887e0-2c9e-11f1-8d8e-f533125480a0": { + "account": "0x141d32a89a1e0a5ef360034a2f60a4b917c18838", + "batchId": "0xeb30f25e67774379b91fdfdd561da08f", + "estimatedProcessingTimeInSeconds": 0, + "hasApprovalTx": false, + "isStxEnabled": true, + "location": "Main View", + "originalTransactionId": "af9887e0-2c9e-11f1-8d8e-f533125480a0", + "pricingData": { + "amountSent": "0.008530768394912923", + "amountSentInUsd": "17.352104199781670752248181354", + "quotedGasAmount": "0.000535663191744865", + "quotedGasInUsd": "1.08957166445724412203514627", + "quotedReturnInUsd": "15.920172267996500697050019457026816" + }, + "quote": { + "aggregator": "uniswap", + "aggregatorType": "AGG", + "bridgeId": "uniswap", + "bridges": ["uniswap"], + "destAsset": { + "address": "0xaca92e438df0b2401ff60da7e4337b687a2435da", + "aggregators": ["metamask", "liFi", "socket", "rubic", "rango"], + "assetId": "eip155:1/erc20:0xaca92e438df0b2401ff60da7e4337b687a2435da", + "chainId": 1, + "decimals": 6, + "iconUrl": "https://static.cx.metamask.io/api/v2/tokenIcons/assets/eip155/1/erc20/0xaca92e438df0b2401ff60da7e4337b687a2435da.png", + "metadata": {}, + "name": "MetaMask USD", + "occurrences": 5, + "symbol": "MUSD" + }, + "destChainId": 1, + "destTokenAmount": "15904268", + "destWalletAddress": "0x141d32a89a1e0a5Ef360034a2f60a4B917c18838", + "feeData": { + "metabridge": { + "amount": "0", + "asset": { + "address": "0x0000000000000000000000000000000000000000", + "aggregators": [], + "assetId": "eip155:1/slip44:60", + "chainId": 1, + "coingeckoId": "ethereum", + "decimals": 18, + "iconUrl": "https://static.cx.metamask.io/api/v2/tokenIcons/assets/eip155/1/slip44/60.png", + "metadata": {}, + "name": "Ether", + "occurrences": 100, + "symbol": "ETH" + }, + "baseBpsFee": 87.5, + "quoteBpsFee": 0 + }, + "txFee": { + "amount": "727603981452392", + "asset": { + "address": "0x0000000000000000000000000000000000000000", + "aggregators": [], + "assetId": "eip155:1/slip44:60", + "chainId": 1, + "coingeckoId": "ethereum", + "decimals": 18, + "iconUrl": "https://static.cx.metamask.io/api/v2/tokenIcons/assets/eip155/1/slip44/60.png", + "metadata": {}, + "name": "Ether", + "occurrences": 100, + "symbol": "ETH" + }, + "maxFeePerGas": "2257998788", + "maxPriorityFeePerGas": "2100000001" + } + }, + "gasIncluded": true, + "gasIncluded7702": false, + "gasSponsored": false, + "minDestTokenAmount": "15586182", + "priceData": { + "priceImpact": "-0.003946472580005189", + "totalFeeAmountUsd": "0", + "totalFromAmountUsd": "17.336227532142043", + "totalToAmountUsd": "15.920172267999998" + }, + "protocols": ["uniswap"], + "requestId": "0xcd3a6cb4b0dc21a628e1c61235ed03606fa9eb50a9b2fb004155fdb186fceacb", + "slippage": 2, + "srcAsset": { + "address": "0x0000000000000000000000000000000000000000", + "aggregators": [], + "assetId": "eip155:1/slip44:60", + "chainId": 1, + "coingeckoId": "ethereum", + "decimals": 18, + "iconUrl": "https://static.cx.metamask.io/api/v2/tokenIcons/assets/eip155/1/slip44/60.png", + "metadata": {}, + "name": "Ether", + "occurrences": 100, + "symbol": "ETH" + }, + "srcChainId": 1, + "srcTokenAmount": "7803164413460531", + "steps": [], + "walletAddress": "0x141d32a89a1e0a5Ef360034a2f60a4B917c18838" + }, + "slippagePercentage": 0, + "startTime": 1774919548749, + "status": { + "srcChain": { + "chainId": 1 + }, + "status": "PENDING" + }, + "txMetaId": "af9887e0-2c9e-11f1-8d8e-f533125480a0" + }, + "b06235e0-287f-11f1-916e-9d8a4fbc2cec": { + "account": "0xf25bd11c334507fd007d584e2d0b7b2c6543f714", + "batchId": "0x42030c6af46449b786c93c14c64a2801", + "estimatedProcessingTimeInSeconds": 0, + "hasApprovalTx": false, + "isStxEnabled": true, + "location": "Main View", + "originalTransactionId": "b06235e0-287f-11f1-916e-9d8a4fbc2cec", + "pricingData": { + "amountSent": "0.001950721614518098", + "amountSentInUsd": "1.260681767800322765067867866", + "quotedGasAmount": "0.0000120929", + "quotedGasInUsd": "0.0078152097338597893", + "quotedReturnInUsd": "1.25047214752259277511305476495693351813595576" + }, + "quote": { + "aggregator": "0x", + "aggregatorType": "AGG", + "bridgeId": "0x", + "bridges": ["0x"], + "destAsset": { + "address": "0x55d398326f99059ff775485246999027b3197955", + "aggregators": [ + "pancakeExtended", + "oneInch", + "liFi", + "trustWallet", + "socket", + "rubic", + "squid", + "rango", + "sonarwatch", + "sushiSwap" + ], + "assetId": "eip155:56/erc20:0x55d398326f99059ff775485246999027b3197955", + "chainId": 56, + "coingeckoId": "binance-bridged-usdt-bnb-smart-chain", + "decimals": 18, + "iconUrl": "https://static.cx.metamask.io/api/v2/tokenIcons/assets/eip155/56/erc20/0x55d398326f99059ff775485246999027b3197955.png", + "metadata": { + "storage": { + "approval": 2, + "balance": 1 + } + }, + "name": "Tether USD", + "occurrences": 11, + "symbol": "USDT" + }, + "destChainId": 56, + "destTokenAmount": "1250160449201243082", + "destWalletAddress": "0xF25bd11C334507Fd007d584E2D0b7b2C6543f714", + "feeData": { + "metabridge": { + "amount": "17068814127033", + "asset": { + "address": "0x0000000000000000000000000000000000000000", + "aggregators": [], + "assetId": "eip155:56/slip44:714", + "chainId": 56, + "coingeckoId": "binancecoin", + "decimals": 18, + "iconUrl": "https://static.cx.metamask.io/api/v2/tokenIcons/assets/eip155/56/slip44/714.png", + "metadata": {}, + "name": "Binance Coin", + "occurrences": 100, + "symbol": "BNB" + }, + "baseBpsFee": 87.5, + "quoteBpsFee": 87.5 + }, + "txFee": { + "amount": "0", + "asset": { + "address": "0x0000000000000000000000000000000000000000", + "aggregators": [], + "assetId": "eip155:56/slip44:714", + "chainId": 56, + "coingeckoId": "binancecoin", + "decimals": 18, + "iconUrl": "https://static.cx.metamask.io/api/v2/tokenIcons/assets/eip155/56/slip44/714.png", + "metadata": {}, + "name": "Binance Coin", + "occurrences": 100, + "symbol": "BNB" + }, + "maxFeePerGas": "59999999", + "maxPriorityFeePerGas": "59999999" + } + }, + "gasIncluded": true, + "gasIncluded7702": false, + "gasSponsored": false, + "minDestTokenAmount": "1225157240217218220", + "priceData": { + "priceImpact": "0.0083059632154491", + "totalFeeAmountUsd": "0.011027136678628398", + "totalFromAmountUsd": "1.2602441918432719", + "totalToAmountUsd": "1.2497766499433383" + }, + "protocols": ["0x"], + "requestId": "0xa71403b3645b65b833eb2da18c185a140ddf042fc09de1c36e2b5fef4f7184ea", + "slippage": 2, + "srcAsset": { + "address": "0x0000000000000000000000000000000000000000", + "aggregators": [], + "assetId": "eip155:56/slip44:714", + "chainId": 56, + "coingeckoId": "binancecoin", + "decimals": 18, + "iconUrl": "https://static.cx.metamask.io/api/v2/tokenIcons/assets/eip155/56/slip44/714.png", + "metadata": {}, + "name": "Binance Coin", + "occurrences": 100, + "symbol": "BNB" + }, + "srcChainId": 56, + "srcTokenAmount": "1933652800391065", + "steps": [], + "walletAddress": "0xF25bd11C334507Fd007d584E2D0b7b2C6543f714" + }, + "slippagePercentage": 0, + "startTime": 1774466430902, + "status": { + "srcChain": { + "chainId": 56, + "txHash": "0x339c604b695a968a7fb2eeff8a80bdea0329e141636eb923c48f49ef5d51a48c" + }, + "status": "FAILED" + }, + "txMetaId": "b06235e0-287f-11f1-916e-9d8a4fbc2cec" + }, + "b1045420-182a-11f1-b7d6-03d70bc40886": { + "account": "0x30e8ccad5a980bdf30447f8c2c48e70989d9d294", + "approvalTxId": "b0da8500-182a-11f1-b7d6-03d70bc40886", + "batchId": "0x0444cf0d419e42e7974b503f28fc20ee", + "estimatedProcessingTimeInSeconds": 0, + "hasApprovalTx": true, + "isStxEnabled": true, + "pricingData": { + "amountSent": "1", + "amountSentInUsd": "0.99665341702749971638556", + "quotedGasAmount": "0.07213066593786073", + "quotedGasInUsd": "0.00750178011527958749949158", + "quotedReturnInUsd": "0.992087531492422457277093898" + }, + "quote": { + "aggregator": "0x", + "aggregatorType": "AGG", + "bridgeId": "0x", + "bridges": ["0x"], + "destAsset": { + "address": "0x0000000000000000000000000000000000000000", + "aggregators": [], + "assetId": "eip155:137/slip44:966", + "chainId": 137, + "coingeckoId": "matic-network", + "decimals": 18, + "iconUrl": "https://static.cx.metamask.io/api/v2/tokenIcons/assets/eip155/137/slip44/966.png", + "metadata": {}, + "name": "Polygon Ecosystem Token", + "occurrences": 100, + "symbol": "POL" + }, + "destChainId": 137, + "destTokenAmount": "9539060491715013263", + "destWalletAddress": "0x30E8ccaD5A980BDF30447f8c2C48e70989D9d294", + "feeData": { + "metabridge": { + "amount": "84203560456500747", + "asset": { + "address": "0x0000000000000000000000000000000000000000", + "aggregators": [], + "assetId": "eip155:137/slip44:966", + "chainId": 137, + "coingeckoId": "matic-network", + "decimals": 18, + "iconUrl": "https://static.cx.metamask.io/api/v2/tokenIcons/assets/eip155/137/slip44/966.png", + "metadata": {}, + "name": "Polygon Ecosystem Token", + "occurrences": 100, + "symbol": "POL" + }, + "baseBpsFee": 87.5, + "quoteBpsFee": 87.5 + } + }, + "gasIncluded7702": false, + "gasSponsored": false, + "minDestTokenAmount": "9348279281880712997", + "priceData": { + "priceImpact": "-0.0019463551497855278", + "totalFeeAmountUsd": "0.008756749269673797", + "totalFromAmountUsd": "0.9988272725", + "totalToAmountUsd": "0.9920145958359028" + }, + "protocols": ["0x"], + "requestId": "0x787aeec33ccd92a04ec55299a727889243dbaacce1d6120d4810f04def49e44a", + "slippage": 2, + "srcAsset": { + "address": "0xc2132d05d31c914a87c6611c10748aeb04b58e8f", + "aggregators": [ + "quickswap", + "oneInch", + "liFi", + "socket", + "squid", + "rango", + "sonarwatch", + "sushiSwap" + ], + "assetId": "eip155:137/erc20:0xc2132d05d31c914a87c6611c10748aeb04b58e8f", + "chainId": 137, + "coingeckoId": "polygon-bridged-usdt-polygon", + "decimals": 6, + "iconUrl": "https://static.cx.metamask.io/api/v2/tokenIcons/assets/eip155/137/erc20/0xc2132d05d31c914a87c6611c10748aeb04b58e8f.png", + "metadata": { + "storage": { + "approval": 1, + "balance": 0 + } + }, + "name": "Tether USD", + "occurrences": 8, + "symbol": "USDT" + }, + "srcChainId": 137, + "srcTokenAmount": "1000000", + "steps": [], + "walletAddress": "0x30E8ccaD5A980BDF30447f8c2C48e70989D9d294" + }, + "slippagePercentage": 0, + "startTime": 1772670705934, + "status": { + "srcChain": { + "chainId": 137 + }, + "status": "PENDING" + }, + "txMetaId": "b1045420-182a-11f1-b7d6-03d70bc40886" + }, + "b9c136b0-2878-11f1-8d89-b38700c8b498": { + "account": "0xf25bd11c334507fd007d584e2d0b7b2c6543f714", + "batchId": "0x969dba2954714dc2be018fc9ed65702e", + "estimatedProcessingTimeInSeconds": 0, + "hasApprovalTx": false, + "isStxEnabled": false, + "location": "Main View", + "originalTransactionId": "b9c136b0-2878-11f1-8d89-b38700c8b498", + "pricingData": { + "amountSent": "0.002455141709369288", + "amountSentInUsd": "1.58535999948140083275493292", + "quotedGasAmount": "0.0000097097", + "quotedGasInUsd": "0.0062698498942934855", + "quotedReturnInUsd": "1.55816789667883771513071730301050959829036725" + }, + "quote": { + "aggregator": "uniswap", + "aggregatorType": "AGG", + "bridgeId": "uniswap", + "bridges": ["uniswap"], + "destAsset": { + "address": "0x55d398326f99059ff775485246999027b3197955", + "aggregators": [ + "pancakeExtended", + "oneInch", + "liFi", + "trustWallet", + "socket", + "rubic", + "squid", + "rango", + "sonarwatch", + "sushiSwap" + ], + "assetId": "eip155:56/erc20:0x55d398326f99059ff775485246999027b3197955", + "chainId": 56, + "coingeckoId": "binance-bridged-usdt-bnb-smart-chain", + "decimals": 18, + "iconUrl": "https://static.cx.metamask.io/api/v2/tokenIcons/assets/eip155/56/erc20/0x55d398326f99059ff775485246999027b3197955.png", + "metadata": { + "storage": { + "approval": 2, + "balance": 1 + } + }, + "name": "Tether USD", + "occurrences": 11, + "symbol": "USDT" + }, + "destChainId": 56, + "destTokenAmount": "1558697853949307695", + "destWalletAddress": "0xF25bd11C334507Fd007d584E2D0b7b2C6543f714", + "feeData": { + "metabridge": { + "amount": "21482489956981", + "asset": { + "address": "0x0000000000000000000000000000000000000000", + "aggregators": [], + "assetId": "eip155:56/slip44:714", + "chainId": 56, + "coingeckoId": "binancecoin", + "decimals": 18, + "iconUrl": "https://static.cx.metamask.io/api/v2/tokenIcons/assets/eip155/56/slip44/714.png", + "metadata": {}, + "name": "Binance Coin", + "occurrences": 100, + "symbol": "BNB" + }, + "baseBpsFee": 87.5, + "quoteBpsFee": 87.5 + }, + "txFee": { + "amount": "19880370000000", + "asset": { + "address": "0x0000000000000000000000000000000000000000", + "aggregators": [], + "assetId": "eip155:56/slip44:714", + "chainId": 56, + "coingeckoId": "binancecoin", + "decimals": 18, + "iconUrl": "https://static.cx.metamask.io/api/v2/tokenIcons/assets/eip155/56/slip44/714.png", + "metadata": {}, + "name": "Binance Coin", + "occurrences": 100, + "symbol": "BNB" + }, + "maxFeePerGas": "60000000", + "maxPriorityFeePerGas": "60000000" + } + }, + "gasIncluded": true, + "gasIncluded7702": false, + "gasSponsored": false, + "minDestTokenAmount": "1527523896870321541", + "priceData": { + "priceImpact": "0.009388436020299599", + "totalFeeAmountUsd": "0.01387554026321403", + "totalFromAmountUsd": "1.5857760300816228", + "totalToAmountUsd": "1.558167896678965" + }, + "protocols": ["uniswap"], + "requestId": "0x608dffaaae3b0a4c6ba8a0cd9b175805c0d48b45e680ae359a2c73c2b1090a7b", + "slippage": 2, + "srcAsset": { + "address": "0x0000000000000000000000000000000000000000", + "aggregators": [], + "assetId": "eip155:56/slip44:714", + "chainId": 56, + "coingeckoId": "binancecoin", + "decimals": 18, + "iconUrl": "https://static.cx.metamask.io/api/v2/tokenIcons/assets/eip155/56/slip44/714.png", + "metadata": {}, + "name": "Binance Coin", + "occurrences": 100, + "symbol": "BNB" + }, + "srcChainId": 56, + "srcTokenAmount": "2413778849412307", + "steps": [], + "walletAddress": "0xF25bd11C334507Fd007d584E2D0b7b2C6543f714" + }, + "slippagePercentage": 0, + "startTime": 1774463439974, + "status": { + "srcChain": { + "chainId": 56 + }, + "status": "PENDING" + }, + "txMetaId": "b9c136b0-2878-11f1-8d89-b38700c8b498" + }, + "b9d83690-2877-11f1-ad59-ab204d847804": { + "account": "0xf25bd11c334507fd007d584e2d0b7b2c6543f714", + "batchId": "0x770996ef5ced48ee9e97650d37cfabb9", + "estimatedProcessingTimeInSeconds": 0, + "hasApprovalTx": false, + "isStxEnabled": false, + "location": "Main View", + "originalTransactionId": "b9d83690-2877-11f1-ad59-ab204d847804", + "pricingData": { + "amountSent": "0.002675216887010217", + "amountSentInUsd": "1.725695931367727349244343712", + "quotedGasAmount": "0.00000966405", + "quotedGasInUsd": "0.0062339662427043408", + "quotedReturnInUsd": "1.70054614363293430730029881395912112201725152" + }, + "quote": { + "aggregator": "uniswap", + "aggregatorType": "AGG", + "bridgeId": "uniswap", + "bridges": ["uniswap"], + "destAsset": { + "address": "0x55d398326f99059ff775485246999027b3197955", + "aggregators": [ + "pancakeExtended", + "oneInch", + "liFi", + "trustWallet", + "socket", + "rubic", + "squid", + "rango", + "sonarwatch", + "sushiSwap" + ], + "assetId": "eip155:56/erc20:0x55d398326f99059ff775485246999027b3197955", + "chainId": 56, + "coingeckoId": "binance-bridged-usdt-bnb-smart-chain", + "decimals": 18, + "iconUrl": "https://static.cx.metamask.io/api/v2/tokenIcons/assets/eip155/56/erc20/0x55d398326f99059ff775485246999027b3197955.png", + "metadata": { + "storage": { + "approval": 2, + "balance": 1 + } + }, + "name": "Tether USD", + "occurrences": 11, + "symbol": "USDT" + }, + "destChainId": 56, + "destTokenAmount": "1700864205240021113", + "destWalletAddress": "0xF25bd11C334507Fd007d584E2D0b7b2C6543f714", + "feeData": { + "metabridge": { + "amount": "23408147761339", + "asset": { + "address": "0x0000000000000000000000000000000000000000", + "aggregators": [], + "assetId": "eip155:56/slip44:714", + "chainId": 56, + "coingeckoId": "binancecoin", + "decimals": 18, + "iconUrl": "https://static.cx.metamask.io/api/v2/tokenIcons/assets/eip155/56/slip44/714.png", + "metadata": {}, + "name": "Binance Coin", + "occurrences": 100, + "symbol": "BNB" + }, + "baseBpsFee": 87.5, + "quoteBpsFee": 87.5 + }, + "txFee": { + "amount": "19796850000000", + "asset": { + "address": "0x0000000000000000000000000000000000000000", + "aggregators": [], + "assetId": "eip155:56/slip44:714", + "chainId": 56, + "coingeckoId": "binancecoin", + "decimals": 18, + "iconUrl": "https://static.cx.metamask.io/api/v2/tokenIcons/assets/eip155/56/slip44/714.png", + "metadata": {}, + "name": "Binance Coin", + "occurrences": 100, + "symbol": "BNB" + }, + "maxFeePerGas": "60000000", + "maxPriorityFeePerGas": "60000000" + } + }, + "gasIncluded": true, + "gasIncluded7702": false, + "gasSponsored": false, + "minDestTokenAmount": "1666846921135220690", + "priceData": { + "priceImpact": "0.00802246003502632", + "totalFeeAmountUsd": "0.015110661624377164", + "totalFromAmountUsd": "1.7269327570717052", + "totalToAmountUsd": "1.7004015701761959" + }, + "protocols": ["uniswap"], + "requestId": "0x1d5d9f5951339d7c3f06448585c1ce0f9efa310de2ab7a7d7e19e0f51bb3f42b", + "slippage": 2, + "srcAsset": { + "address": "0x0000000000000000000000000000000000000000", + "aggregators": [], + "assetId": "eip155:56/slip44:714", + "chainId": 56, + "coingeckoId": "binancecoin", + "decimals": 18, + "iconUrl": "https://static.cx.metamask.io/api/v2/tokenIcons/assets/eip155/56/slip44/714.png", + "metadata": {}, + "name": "Binance Coin", + "occurrences": 100, + "symbol": "BNB" + }, + "srcChainId": 56, + "srcTokenAmount": "2632011889248878", + "steps": [], + "walletAddress": "0xF25bd11C334507Fd007d584E2D0b7b2C6543f714" + }, + "slippagePercentage": 0, + "startTime": 1774463010807, + "status": { + "srcChain": { + "chainId": 56 + }, + "status": "PENDING" + }, + "txMetaId": "b9d83690-2877-11f1-ad59-ab204d847804" + }, + "bad9f800-1d67-11f1-9d41-3b0a0edc0d9a": { + "account": "0x30e8ccad5a980bdf30447f8c2c48e70989d9d294", + "batchId": "0xb03d8cd287484453b724a60935521605", + "estimatedProcessingTimeInSeconds": 0, + "hasApprovalTx": false, + "isStxEnabled": true, + "location": "Main View", + "originalTransactionId": "bad9f800-1d67-11f1-9d41-3b0a0edc0d9a", + "pricingData": { + "amountSent": "0.001", + "amountSentInUsd": "0.647299441431", + "quotedGasAmount": "0.0000089414", + "quotedGasInUsd": "0.0057877632256111434", + "quotedReturnInUsd": "0.6419591041362832113464591548155204702016617" + }, + "quote": { + "aggregator": "uniswap", + "aggregatorType": "AGG", + "bridgeId": "uniswap", + "bridges": ["uniswap"], + "destAsset": { + "address": "0x55d398326f99059ff775485246999027b3197955", + "aggregators": [ + "pancakeExtended", + "oneInch", + "liFi", + "socket", + "rubic", + "squid", + "rango", + "sonarwatch", + "sushiSwap" + ], + "assetId": "eip155:56/erc20:0x55d398326f99059ff775485246999027b3197955", + "chainId": 56, + "coingeckoId": "binance-bridged-usdt-bnb-smart-chain", + "decimals": 18, + "iconUrl": "https://static.cx.metamask.io/api/v2/tokenIcons/assets/eip155/56/erc20/0x55d398326f99059ff775485246999027b3197955.png", + "metadata": { + "storage": { + "approval": 2, + "balance": 1 + } + }, + "name": "Tether USD", + "occurrences": 11, + "symbol": "USDT" + }, + "destChainId": 56, + "destTokenAmount": "642113379274951379", + "destWalletAddress": "0x30E8ccaD5A980BDF30447f8c2C48e70989D9d294", + "feeData": { + "metabridge": { + "amount": "8750000000000", + "asset": { + "address": "0x0000000000000000000000000000000000000000", + "aggregators": [], + "assetId": "eip155:56/slip44:714", + "chainId": 56, + "coingeckoId": "binancecoin", + "decimals": 18, + "iconUrl": "https://static.cx.metamask.io/api/v2/tokenIcons/assets/eip155/56/slip44/714.png", + "metadata": {}, + "name": "Binance Coin", + "occurrences": 100, + "symbol": "BNB" + }, + "baseBpsFee": 87.5, + "quoteBpsFee": 87.5 + } + }, + "gasIncluded": false, + "gasIncluded7702": false, + "gasSponsored": false, + "minDestTokenAmount": "629271111689452351", + "priceData": { + "priceImpact": "-0.00046560065512911083", + "totalFeeAmountUsd": "0.00566545", + "totalFromAmountUsd": "0.64748", + "totalToAmountUsd": "0.6421133792749514" + }, + "protocols": ["uniswap"], + "requestId": "0x920c24c3a0aa36e9ae0a57a10a728d5a2f075b7815f909b8136fe591df3f3311", + "slippage": 2, + "srcAsset": { + "address": "0x0000000000000000000000000000000000000000", + "aggregators": [], + "assetId": "eip155:56/slip44:714", + "chainId": 56, + "coingeckoId": "binancecoin", + "decimals": 18, + "iconUrl": "https://static.cx.metamask.io/api/v2/tokenIcons/assets/eip155/56/slip44/714.png", + "metadata": {}, + "name": "Binance Coin", + "occurrences": 100, + "symbol": "BNB" + }, + "srcChainId": 56, + "srcTokenAmount": "991250000000000", + "steps": [], + "walletAddress": "0x30E8ccaD5A980BDF30447f8c2C48e70989D9d294" + }, + "slippagePercentage": 0, + "startTime": 1773246677832, + "status": { + "srcChain": { + "chainId": 56 + }, + "status": "PENDING" + }, + "txMetaId": "bad9f800-1d67-11f1-9d41-3b0a0edc0d9a" + }, + "bc012020-286e-11f1-9e48-5fbe36423c6b": { + "account": "0xf25bd11c334507fd007d584e2d0b7b2c6543f714", + "batchId": "0xe798140b79314c23890ca6a49abea4ce", + "estimatedProcessingTimeInSeconds": 0, + "hasApprovalTx": true, + "isStxEnabled": false, + "location": "Main View", + "originalTransactionId": "bc012020-286e-11f1-9e48-5fbe36423c6b", + "pricingData": { + "amountSent": "1.97474173543419949", + "amountSentInUsd": "1.9743640532381799856477814260821169040795094", + "quotedGasAmount": "0.0000125897", + "quotedGasInUsd": "0.0081400144004478898", + "quotedReturnInUsd": "1.93224365503649477384692923" + }, + "quote": { + "aggregator": "uniswap", + "aggregatorType": "AGG", + "bridgeId": "uniswap", + "bridges": ["uniswap"], + "destAsset": { + "address": "0x0000000000000000000000000000000000000000", + "aggregators": [], + "assetId": "eip155:56/slip44:714", + "chainId": 56, + "coingeckoId": "binancecoin", + "decimals": 18, + "iconUrl": "https://static.cx.metamask.io/api/v2/tokenIcons/assets/eip155/56/slip44/714.png", + "metadata": {}, + "name": "Binance Coin", + "occurrences": 100, + "symbol": "BNB" + }, + "destChainId": 56, + "destTokenAmount": "2988492003463095", + "destWalletAddress": "0xF25bd11C334507Fd007d584E2D0b7b2C6543f714", + "feeData": { + "metabridge": { + "amount": "26756262246963", + "asset": { + "address": "0x0000000000000000000000000000000000000000", + "aggregators": [], + "assetId": "eip155:56/slip44:714", + "chainId": 56, + "coingeckoId": "binancecoin", + "decimals": 18, + "iconUrl": "https://static.cx.metamask.io/api/v2/tokenIcons/assets/eip155/56/slip44/714.png", + "metadata": {}, + "name": "Binance Coin", + "occurrences": 100, + "symbol": "BNB" + }, + "baseBpsFee": 87.5, + "quoteBpsFee": 87.5 + }, + "txFee": { + "amount": "42610276800000", + "asset": { + "address": "0x0000000000000000000000000000000000000000", + "aggregators": [], + "assetId": "eip155:56/slip44:714", + "chainId": 56, + "coingeckoId": "binancecoin", + "decimals": 18, + "iconUrl": "https://static.cx.metamask.io/api/v2/tokenIcons/assets/eip155/56/slip44/714.png", + "metadata": {}, + "name": "Binance Coin", + "occurrences": 100, + "symbol": "BNB" + }, + "maxFeePerGas": "60000000", + "maxPriorityFeePerGas": "60000000" + } + }, + "gasIncluded": true, + "gasIncluded7702": true, + "gasSponsored": false, + "minDestTokenAmount": "2928722163393833", + "priceData": { + "priceImpact": "-0.001729873453170465", + "totalFeeAmountUsd": "0.017307288234448017", + "totalFromAmountUsd": "1.9745600591945396", + "totalToAmountUsd": "1.9331060524401031" + }, + "protocols": ["uniswap"], + "requestId": "0xdfb76f72e1d9baa5aa70fda63c67f62b9703825bf1665e97c312446172030083", + "slippage": 2, + "srcAsset": { + "address": "0x55d398326f99059ff775485246999027b3197955", + "aggregators": [ + "pancakeExtended", + "oneInch", + "liFi", + "trustWallet", + "socket", + "squid", + "rango", + "sonarwatch", + "sushiSwap" + ], + "assetId": "eip155:56/erc20:0x55d398326f99059ff775485246999027b3197955", + "chainId": 56, + "coingeckoId": "binance-bridged-usdt-bnb-smart-chain", + "decimals": 18, + "iconUrl": "https://static.cx.metamask.io/api/v2/tokenIcons/assets/eip155/56/erc20/0x55d398326f99059ff775485246999027b3197955.png", + "metadata": { + "storage": { + "approval": 2, + "balance": 1 + } + }, + "name": "Tether USD", + "occurrences": 9, + "symbol": "USDT" + }, + "srcChainId": 56, + "srcTokenAmount": "1974741735434199490", + "steps": [], + "walletAddress": "0xF25bd11C334507Fd007d584E2D0b7b2C6543f714" + }, + "slippagePercentage": 0, + "startTime": 1774459148953, + "status": { + "srcChain": { + "chainId": 56, + "txHash": "0xe2e6d876b1c11dc0197f0620c504ff085180d87c624acc12465ac6d3ee32f156" + }, + "status": "PENDING" + }, + "txMetaId": "bc012020-286e-11f1-9e48-5fbe36423c6b" + }, + "bf648500-1d6e-11f1-a056-3b0a0edc0d9a": { + "account": "0x30e8ccad5a980bdf30447f8c2c48e70989d9d294", + "batchId": "0xf82d5ab4a2e140b8809c907bb5e644c0", + "estimatedProcessingTimeInSeconds": 0, + "hasApprovalTx": false, + "isStxEnabled": true, + "location": "Main View", + "originalTransactionId": "bf648500-1d6e-11f1-a056-3b0a0edc0d9a", + "pricingData": { + "amountSent": "0.001", + "amountSentInUsd": "0.650442682895", + "quotedGasAmount": "0.00001113865", + "quotedGasInUsd": "0.00724505338982839175", + "quotedReturnInUsd": "0.6464612135108928662515631543612965056271104" + }, + "quote": { + "aggregator": "1inch", + "aggregatorType": "AGG", + "bridgeId": "1inch", + "bridges": ["1inch"], + "destAsset": { + "address": "0x55d398326f99059ff775485246999027b3197955", + "aggregators": [ + "pancakeExtended", + "oneInch", + "liFi", + "socket", + "rubic", + "squid", + "rango", + "sonarwatch", + "sushiSwap" + ], + "assetId": "eip155:56/erc20:0x55d398326f99059ff775485246999027b3197955", + "chainId": 56, + "coingeckoId": "binance-bridged-usdt-bnb-smart-chain", + "decimals": 18, + "iconUrl": "https://static.cx.metamask.io/api/v2/tokenIcons/assets/eip155/56/erc20/0x55d398326f99059ff775485246999027b3197955.png", + "metadata": { + "storage": { + "approval": 2, + "balance": 1 + } + }, + "name": "Tether USD", + "occurrences": 11, + "symbol": "USDT" + }, + "destChainId": 56, + "destTokenAmount": "646461213511014656", + "destWalletAddress": "0x30E8ccaD5A980BDF30447f8c2C48e70989D9d294", + "feeData": { + "metabridge": { + "amount": "8750000000000", + "asset": { + "address": "0x0000000000000000000000000000000000000000", + "aggregators": [], + "assetId": "eip155:56/slip44:714", + "chainId": 56, + "coingeckoId": "binancecoin", + "decimals": 18, + "iconUrl": "https://static.cx.metamask.io/api/v2/tokenIcons/assets/eip155/56/slip44/714.png", + "metadata": {}, + "name": "Binance Coin", + "occurrences": 100, + "symbol": "BNB" + }, + "baseBpsFee": 87.5, + "quoteBpsFee": 87.5 + } + }, + "gasIncluded": false, + "gasIncluded7702": false, + "gasSponsored": false, + "minDestTokenAmount": "633531989240794362", + "priceData": { + "priceImpact": "-0.002471225893524245", + "totalFeeAmountUsd": "0.005692399999999999", + "totalFromAmountUsd": "0.6505599999999999", + "totalToAmountUsd": "0.6464612135110147" + }, + "protocols": ["1inch"], + "requestId": "0xf5a5be9bc2b81d91b2b475afb9a37a09fe96bef935ca3d1b9b8a99c4b7d7ea5a", + "slippage": 2, + "srcAsset": { + "address": "0x0000000000000000000000000000000000000000", + "aggregators": [], + "assetId": "eip155:56/slip44:714", + "chainId": 56, + "coingeckoId": "binancecoin", + "decimals": 18, + "iconUrl": "https://static.cx.metamask.io/api/v2/tokenIcons/assets/eip155/56/slip44/714.png", + "metadata": {}, + "name": "Binance Coin", + "occurrences": 100, + "symbol": "BNB" + }, + "srcChainId": 56, + "srcTokenAmount": "991250000000000", + "steps": [], + "walletAddress": "0x30E8ccaD5A980BDF30447f8c2C48e70989D9d294" + }, + "slippagePercentage": 0, + "startTime": 1773249691401, + "status": { + "srcChain": { + "chainId": 56 + }, + "status": "PENDING" + }, + "txMetaId": "bf648500-1d6e-11f1-a056-3b0a0edc0d9a" + }, + "c0a4ae60-39c3-11f1-a13c-3727d90ba13b": { + "account": "0x141d32a89a1e0a5ef360034a2f60a4b917c18838", + "batchId": "0x8e05f75be20d461b8c348914badb364f", + "completionTime": 1776364840808, + "estimatedProcessingTimeInSeconds": 2, + "hasApprovalTx": false, + "isStxEnabled": true, + "location": "Main View", + "originalTransactionId": "c0a4ae60-39c3-11f1-a13c-3727d90ba13b", + "pricingData": { + "amountSent": "0.005634615301175888", + "amountSentInUsd": "13.12423066033204712481887024", + "quotedGasAmount": "0.000181464551529984", + "quotedGasInUsd": "0.42266996124051417837138432", + "quotedReturnInUsd": "12.45003634890888726788642087" + }, + "quote": { + "aggregator": "relay", + "bridgeId": "relay", + "bridges": ["Relay"], + "destAsset": { + "address": "0x0000000000000000000000000000000000000000", + "aggregators": [ + "traderJoe", + "oneInch", + "liFi", + "socket", + "rubic", + "squid", + "rango", + "sonarwatch", + "sushiSwap" + ], + "assetId": "eip155:42161/slip44:60", + "chainId": 42161, + "coingeckoId": "arbitrum", + "decimals": 18, + "iconUrl": "https://static.cx.metamask.io/api/v2/tokenIcons/assets/eip155/42161/slip44/60.png", + "metadata": { + "storage": { + "approval": 52, + "balance": 51 + } + }, + "name": "Ether", + "occurrences": 9, + "symbol": "ETH" + }, + "destChainId": 42161, + "destTokenAmount": "5345164004453969", + "feeData": { + "metabridge": { + "amount": "49302883885289", + "asset": { + "address": "0x0000000000000000000000000000000000000000", + "aggregators": [], + "assetId": "eip155:1/slip44:60", + "chainId": 1, + "coingeckoId": "ethereum", + "decimals": 18, + "iconUrl": "https://static.cx.metamask.io/api/v2/tokenIcons/assets/eip155/1/slip44/60.png", + "metadata": {}, + "name": "Ether", + "occurrences": 100, + "symbol": "ETH" + }, + "baseBpsFee": 87.5, + "quoteBpsFee": 87.5 + }, + "txFee": { + "amount": "230986348995839", + "asset": { + "address": "0x0000000000000000000000000000000000000000", + "aggregators": [], + "assetId": "eip155:1/slip44:60", + "chainId": 1, + "coingeckoId": "ethereum", + "decimals": 18, + "iconUrl": "https://static.cx.metamask.io/api/v2/tokenIcons/assets/eip155/1/slip44/60.png", + "metadata": {}, + "name": "Ether", + "occurrences": 100, + "symbol": "ETH" + }, + "maxFeePerGas": "2345415295", + "maxPriorityFeePerGas": "2100000001" + } + }, + "gasIncluded": true, + "gasIncluded7702": false, + "minDestTokenAmount": "5238260724364889", + "priceData": { + "priceImpact": "0.014442060545567945", + "totalFeeAmountUsd": "0.11485877587820556", + "totalFromAmountUsd": "13.126717243223498", + "totalToAmountUsd": "12.406793130781534" + }, + "protocols": ["Relay"], + "requestId": "0xef10e0096f0e15ca600793d0e063b5514ad012d5fe34fe80e2dce282c7ee0467", + "srcAsset": { + "address": "0x0000000000000000000000000000000000000000", + "aggregators": [], + "assetId": "eip155:1/slip44:60", + "chainId": 1, + "coingeckoId": "ethereum", + "decimals": 18, + "iconUrl": "https://static.cx.metamask.io/api/v2/tokenIcons/assets/eip155/1/slip44/60.png", + "metadata": {}, + "name": "Ether", + "occurrences": 100, + "symbol": "ETH" + }, + "srcChainId": 1, + "srcTokenAmount": "5354326068294760", + "steps": [ + { + "action": "bridge", + "destAmount": "5345164004453969", + "destAsset": { + "address": "0x0000000000000000000000000000000000000000", + "aggregators": [ + "traderJoe", + "oneInch", + "liFi", + "socket", + "rubic", + "squid", + "rango", + "sonarwatch", + "sushiSwap" + ], + "assetId": "eip155:42161/slip44:60", + "chainId": 42161, + "coingeckoId": "arbitrum", + "decimals": 18, + "iconUrl": "https://static.cx.metamask.io/api/v2/tokenIcons/assets/eip155/42161/slip44/60.png", + "metadata": { + "storage": { + "approval": 52, + "balance": 51 + } + }, + "name": "Ether", + "occurrences": 9, + "symbol": "ETH" + }, + "destChainId": 42161, + "protocol": { + "name": "relay" + }, + "srcAmount": "5354326068294760", + "srcAsset": { + "address": "0x0000000000000000000000000000000000000000", + "aggregators": [], + "assetId": "eip155:1/slip44:60", + "chainId": 1, + "coingeckoId": "ethereum", + "decimals": 18, + "iconUrl": "https://static.cx.metamask.io/api/v2/tokenIcons/assets/eip155/1/slip44/60.png", + "metadata": {}, + "name": "Ether", + "occurrences": 100, + "symbol": "ETH" + }, + "srcChainId": 1 + } + ] + }, + "slippagePercentage": 0, + "startTime": 1776364833727, + "status": { + "bridge": "relay", + "destChain": { + "chainId": 42161, + "txHash": "0xe2943b245749218241f8b60282c5e853a7705fbe9feb51673867c6b67d3c17b5" + }, + "isExpectedToken": true, + "isUnrecognizedRouterAddress": false, + "srcChain": { + "chainId": 1, + "txHash": "0xc8a9a70b2b2b3025a401d0560f03eacad3eab4f64141a6ec7926a711731b439c" + }, + "status": "COMPLETE" + }, + "txMetaId": "c0a4ae60-39c3-11f1-a13c-3727d90ba13b" + }, + "c20984a0-23c1-11f1-ba20-05a660861774": { + "account": "0xb3864b298f4fddbbbd2fa5cf1a2a2748932b3b81", + "approvalTxId": "c203b840-23c1-11f1-ba20-05a660861774", + "batchId": "0xd9d3e11750b840c2a7dff34c5bd3b484", + "completionTime": 1773945089089, + "estimatedProcessingTimeInSeconds": 2, + "hasApprovalTx": true, + "isStxEnabled": true, + "location": "Main View", + "originalTransactionId": "c20984a0-23c1-11f1-ba20-05a660861774", + "pricingData": { + "amountSent": "5.642642556751629323", + "amountSentInUsd": "5.64210650571094270901869433923311700943105921", + "quotedGasAmount": "0.000007971", + "quotedGasInUsd": "0.005078556080084739", + "quotedReturnInUsd": "5.569939471328171335907582515" + }, + "quote": { + "aggregator": "relay", + "bridgeId": "relay", + "bridges": ["Relay"], + "destAsset": { + "address": "0x0000000000000000000000000000000000000000", + "aggregators": [], + "assetId": "eip155:143/slip44:268435779", + "chainId": 143, + "decimals": 18, + "iconUrl": "https://static.cx.metamask.io/api/v2/tokenIcons/assets/eip155/143/slip44/268435779.png", + "metadata": {}, + "name": "Mon", + "occurrences": 1, + "symbol": "MON" + }, + "destChainId": 143, + "destTokenAmount": "251545791488319199087", + "feeData": { + "metabridge": { + "amount": "49373122371576756", + "asset": { + "address": "0x8ac76a51cc950d9822d68b83fe1ad97b32cd580d", + "aggregators": [ + "pancakeExtended", + "oneInch", + "liFi", + "socket", + "rubic", + "squid", + "rango", + "sonarwatch", + "sushiSwap" + ], + "assetId": "eip155:56/erc20:0x8ac76a51cc950d9822d68b83fe1ad97b32cd580d", + "chainId": 56, + "coingeckoId": "binance-bridged-usdc-bnb-smart-chain", + "decimals": 18, + "iconUrl": "https://static.cx.metamask.io/api/v2/tokenIcons/assets/eip155/56/erc20/0x8ac76a51cc950d9822d68b83fe1ad97b32cd580d.png", + "metadata": { + "storage": { + "approval": 2, + "balance": 1 + } + }, + "name": "Binance-Peg USD Coin", + "occurrences": 9, + "symbol": "USDC" + }, + "baseBpsFee": 87.5, + "quoteBpsFee": 87.5 + } + }, + "minDestTokenAmount": "246514875658552815105", + "priceData": { + "priceImpact": "0.004043856776129053", + "totalFeeAmountUsd": "0.04936843192495145", + "totalFromAmountUsd": "5.642106505708738", + "totalToAmountUsd": "5.5701218420270004" + }, + "protocols": ["Relay"], + "requestId": "0x4a2f80b964da790fa5a2be9d2f6e50ac22f0497c1c10fdb11d50c778969f38e4", + "slippage": 2, + "srcAsset": { + "address": "0x8ac76a51cc950d9822d68b83fe1ad97b32cd580d", + "aggregators": [ + "pancakeExtended", + "oneInch", + "liFi", + "socket", + "rubic", + "squid", + "rango", + "sonarwatch", + "sushiSwap" + ], + "assetId": "eip155:56/erc20:0x8ac76a51cc950d9822d68b83fe1ad97b32cd580d", + "chainId": 56, + "coingeckoId": "binance-bridged-usdc-bnb-smart-chain", + "decimals": 18, + "iconUrl": "https://static.cx.metamask.io/api/v2/tokenIcons/assets/eip155/56/erc20/0x8ac76a51cc950d9822d68b83fe1ad97b32cd580d.png", + "metadata": { + "storage": { + "approval": 2, + "balance": 1 + } + }, + "name": "Binance-Peg USD Coin", + "occurrences": 9, + "symbol": "USDC" + }, + "srcChainId": 56, + "srcTokenAmount": "5593269434380052567", + "steps": [ + { + "action": "bridge", + "destAmount": "251545791488319199087", + "destAsset": { + "address": "0x0000000000000000000000000000000000000000", + "aggregators": [], + "assetId": "eip155:143/slip44:268435779", + "chainId": 143, + "decimals": 18, + "iconUrl": "https://static.cx.metamask.io/api/v2/tokenIcons/assets/eip155/143/slip44/268435779.png", + "metadata": {}, + "name": "Mon", + "occurrences": 1, + "symbol": "MON" + }, + "destChainId": 143, + "protocol": { + "name": "relay" + }, + "srcAmount": "5593269434380052567", + "srcAsset": { + "address": "0x8ac76a51cc950d9822d68b83fe1ad97b32cd580d", + "aggregators": [ + "pancakeExtended", + "oneInch", + "liFi", + "socket", + "rubic", + "squid", + "rango", + "sonarwatch", + "sushiSwap" + ], + "assetId": "eip155:56/erc20:0x8ac76a51cc950d9822d68b83fe1ad97b32cd580d", + "chainId": 56, + "coingeckoId": "binance-bridged-usdc-bnb-smart-chain", + "decimals": 18, + "iconUrl": "https://static.cx.metamask.io/api/v2/tokenIcons/assets/eip155/56/erc20/0x8ac76a51cc950d9822d68b83fe1ad97b32cd580d.png", + "metadata": { + "storage": { + "approval": 2, + "balance": 1 + } + }, + "name": "Binance-Peg USD Coin", + "occurrences": 9, + "symbol": "USDC" + }, + "srcChainId": 56 + } + ] + }, + "slippagePercentage": 0, + "startTime": 1773945051442, + "status": { + "bridge": "relay", + "destChain": { + "chainId": 143, + "txHash": "0x3cda8461c6cecbe60b41251c7aa54d4b729016f09f9f4556c2926e27228c3fbf" + }, + "isExpectedToken": true, + "isUnrecognizedRouterAddress": false, + "srcChain": { + "chainId": 56, + "txHash": "0xe0bbb233df54a63c9c5138afa7c5590d0f1f7f1366afa4bbaea9e891c117ced1" + }, + "status": "COMPLETE" + }, + "txMetaId": "c20984a0-23c1-11f1-ba20-05a660861774" + }, + "c6bb3780-1829-11f1-b7d6-03d70bc40886": { + "account": "0x30e8ccad5a980bdf30447f8c2c48e70989d9d294", + "batchId": "0x604170e0faca4e22bd8323bd08bba2ba", + "estimatedProcessingTimeInSeconds": 0, + "hasApprovalTx": false, + "isStxEnabled": true, + "pricingData": { + "amountSent": "19", + "amountSentInUsd": "1.972370962", + "quotedGasAmount": "0.048274926429406507", + "quotedGasInUsd": "0.005011371741160407226349986", + "quotedReturnInUsd": "1.9565672326311698419440501198" + }, + "quote": { + "aggregator": "uniswap", + "aggregatorType": "AGG", + "bridgeId": "uniswap", + "bridges": ["uniswap"], + "destAsset": { + "address": "0xc2132d05d31c914a87c6611c10748aeb04b58e8f", + "aggregators": [ + "quickswap", + "oneInch", + "liFi", + "socket", + "squid", + "rango", + "sonarwatch", + "sushiSwap" + ], + "assetId": "eip155:137/erc20:0xc2132d05d31c914a87c6611c10748aeb04b58e8f", + "chainId": 137, + "coingeckoId": "polygon-bridged-usdt-polygon", + "decimals": 6, + "iconUrl": "https://static.cx.metamask.io/api/v2/tokenIcons/assets/eip155/137/erc20/0xc2132d05d31c914a87c6611c10748aeb04b58e8f.png", + "metadata": { + "storage": { + "approval": 1, + "balance": 0 + } + }, + "name": "Tether USD", + "occurrences": 8, + "symbol": "USDT" + }, + "destChainId": 137, + "destTokenAmount": "1957782", + "destWalletAddress": "0x30E8ccaD5A980BDF30447f8c2C48e70989D9d294", + "feeData": { + "metabridge": { + "amount": "166250000000000000", + "asset": { + "address": "0x0000000000000000000000000000000000000000", + "aggregators": [], + "assetId": "eip155:137/slip44:966", + "chainId": 137, + "coingeckoId": "matic-network", + "decimals": 18, + "iconUrl": "https://static.cx.metamask.io/api/v2/tokenIcons/assets/eip155/137/slip44/966.png", + "metadata": {}, + "name": "Polygon Ecosystem Token", + "occurrences": 100, + "symbol": "POL" + }, + "baseBpsFee": 87.5, + "quoteBpsFee": 87.5 + } + }, + "gasIncluded7702": false, + "gasSponsored": false, + "minDestTokenAmount": "1918626", + "priceData": { + "priceImpact": "-0.0005897180800594874", + "totalFeeAmountUsd": "0.01726090625", + "totalFromAmountUsd": "1.972675", + "totalToAmountUsd": "1.9565672367950873" + }, + "protocols": ["uniswap"], + "requestId": "0xefe7691ca9b52de096435387a53f4a350533dbc4eb3db677f0d9eebadb5053f8", + "slippage": 2, + "srcAsset": { + "address": "0x0000000000000000000000000000000000000000", + "aggregators": [], + "assetId": "eip155:137/slip44:966", + "chainId": 137, + "coingeckoId": "matic-network", + "decimals": 18, + "iconUrl": "https://static.cx.metamask.io/api/v2/tokenIcons/assets/eip155/137/slip44/966.png", + "metadata": {}, + "name": "Polygon Ecosystem Token", + "occurrences": 100, + "symbol": "POL" + }, + "srcChainId": 137, + "srcTokenAmount": "18833750000000000000", + "steps": [], + "walletAddress": "0x30E8ccaD5A980BDF30447f8c2C48e70989D9d294" + }, + "slippagePercentage": 0, + "startTime": 1772670313173, + "status": { + "srcChain": { + "chainId": 137 + }, + "status": "PENDING" + }, + "txMetaId": "c6bb3780-1829-11f1-b7d6-03d70bc40886" + }, + "c8cb9cd0-176c-11f1-b7d6-03d70bc40886": { + "account": "0x30e8ccad5a980bdf30447f8c2c48e70989d9d294", + "batchId": "0x25fa5b8386f144dfa360d6a65394682c", + "estimatedProcessingTimeInSeconds": 0, + "hasApprovalTx": false, + "isStxEnabled": true, + "pricingData": { + "amountSent": "0.001463597691842476", + "amountSentInUsd": "2.904127808606378826730604848", + "quotedGasAmount": "0.000600099301006758", + "quotedGasInUsd": "1.190740514071913432978727384", + "quotedReturnInUsd": "1.184657910188077500110271499621584" + }, + "quote": { + "aggregator": "uniswap", + "aggregatorType": "AGG", + "bridgeId": "uniswap", + "bridges": ["uniswap"], + "destAsset": { + "address": "0xaca92e438df0b2401ff60da7e4337b687a2435da", + "aggregators": ["metamask", "liFi", "socket", "rango"], + "assetId": "eip155:1/erc20:0xaca92e438df0b2401ff60da7e4337b687a2435da", + "chainId": 1, + "decimals": 6, + "iconUrl": "https://static.cx.metamask.io/api/v2/tokenIcons/assets/eip155/1/erc20/0xaca92e438df0b2401ff60da7e4337b687a2435da.png", + "metadata": {}, + "name": "MetaMask USD", + "occurrences": 4, + "symbol": "MUSD" + }, + "destChainId": 1, + "destTokenAmount": "1184902", + "destWalletAddress": "0x30E8ccaD5A980BDF30447f8c2C48e70989D9d294", + "feeData": { + "metabridge": { + "amount": "0", + "asset": { + "address": "0x0000000000000000000000000000000000000000", + "aggregators": [], + "assetId": "eip155:1/slip44:60", + "chainId": 1, + "coingeckoId": "ethereum", + "decimals": 18, + "iconUrl": "https://static.cx.metamask.io/api/v2/tokenIcons/assets/eip155/1/slip44/60.png", + "metadata": {}, + "name": "Ether", + "occurrences": 100, + "symbol": "ETH" + }, + "baseBpsFee": 87.5, + "quoteBpsFee": 0 + }, + "txFee": { + "amount": "866444184178278", + "asset": { + "address": "0x0000000000000000000000000000000000000000", + "aggregators": [], + "assetId": "eip155:1/slip44:60", + "chainId": 1, + "coingeckoId": "ethereum", + "decimals": 18, + "iconUrl": "https://static.cx.metamask.io/api/v2/tokenIcons/assets/eip155/1/slip44/60.png", + "metadata": {}, + "name": "Ether", + "occurrences": 100, + "symbol": "ETH" + }, + "maxFeePerGas": "2216178362", + "maxPriorityFeePerGas": "2100000001" + } + }, + "gasIncluded": true, + "gasIncluded7702": false, + "minDestTokenAmount": "1161203", + "priceData": { + "priceImpact": "0.000412112549271919", + "totalFeeAmountUsd": "0", + "totalFromAmountUsd": "2.9046267072767407", + "totalToAmountUsd": "1.184610514108" + }, + "protocols": ["uniswap"], + "requestId": "0x46682d2bf318510bba3a3460ea0b253cbc61272613395443b4705930761bb286", + "srcAsset": { + "address": "0x0000000000000000000000000000000000000000", + "aggregators": [], + "assetId": "eip155:1/slip44:60", + "chainId": 1, + "coingeckoId": "ethereum", + "decimals": 18, + "iconUrl": "https://static.cx.metamask.io/api/v2/tokenIcons/assets/eip155/1/slip44/60.png", + "metadata": {}, + "name": "Ether", + "occurrences": 100, + "symbol": "ETH" + }, + "srcChainId": 1, + "srcTokenAmount": "597153507664198", + "steps": [], + "walletAddress": "0x30E8ccaD5A980BDF30447f8c2C48e70989D9d294" + }, + "slippagePercentage": 0, + "startTime": 1772589141776, + "status": { + "srcChain": { + "chainId": 1 + }, + "status": "PENDING" + }, + "txMetaId": "c8cb9cd0-176c-11f1-b7d6-03d70bc40886" + }, + "c94ce150-39c7-11f1-a325-3727d90ba13b": { + "account": "0x141d32a89a1e0a5ef360034a2f60a4b917c18838", + "batchId": "0xf69c3e0167d64772a3cdcb3e9d6f3514", + "completionTime": 1776366580016, + "estimatedProcessingTimeInSeconds": 2, + "hasApprovalTx": false, + "isStxEnabled": true, + "location": "Main View", + "originalTransactionId": "c94ce150-39c7-11f1-a325-3727d90ba13b", + "pricingData": { + "amountSent": "0.01", + "amountSentInUsd": "23.41717338332", + "quotedGasAmount": "0.00019754467323302", + "quotedGasInUsd": "0.46259378640489227961412264", + "quotedReturnInUsd": "23.190860159630196912127314752" + }, + "quote": { + "aggregator": "relay", + "bridgeId": "relay", + "bridges": ["Relay"], + "destAsset": { + "address": "0x0000000000000000000000000000000000000000", + "aggregators": [ + "traderJoe", + "oneInch", + "liFi", + "socket", + "rubic", + "squid", + "rango", + "sonarwatch", + "sushiSwap" + ], + "assetId": "eip155:42161/slip44:60", + "chainId": 42161, + "coingeckoId": "arbitrum", + "decimals": 18, + "iconUrl": "https://static.cx.metamask.io/api/v2/tokenIcons/assets/eip155/42161/slip44/60.png", + "metadata": { + "storage": { + "approval": 52, + "balance": 51 + } + }, + "name": "Ether", + "occurrences": 9, + "symbol": "ETH" + }, + "destChainId": 42161, + "destTokenAmount": "9903355874773936", + "feeData": { + "metabridge": { + "amount": "87500000000000", + "asset": { + "address": "0x0000000000000000000000000000000000000000", + "aggregators": [], + "assetId": "eip155:1/slip44:60", + "chainId": 1, + "coingeckoId": "ethereum", + "decimals": 18, + "iconUrl": "https://static.cx.metamask.io/api/v2/tokenIcons/assets/eip155/1/slip44/60.png", + "metadata": {}, + "name": "Ether", + "occurrences": 100, + "symbol": "ETH" + }, + "baseBpsFee": 87.5, + "quoteBpsFee": 87.5 + } + }, + "minDestTokenAmount": "9705288757278458", + "priceData": { + "priceImpact": "0.0007988885780233947", + "totalFeeAmountUsd": "0.20512768464813436", + "totalFromAmountUsd": "23.443163959786784", + "totalToAmountUsd": "23.219471673382746" + }, + "protocols": ["Relay"], + "requestId": "0x17c6d1623111c9d67080b41ae2d0b725a56fa5ef7cbeea9606c9b9a7cfb001ca", + "slippage": 2, + "srcAsset": { + "address": "0x0000000000000000000000000000000000000000", + "aggregators": [], + "assetId": "eip155:1/slip44:60", + "chainId": 1, + "coingeckoId": "ethereum", + "decimals": 18, + "iconUrl": "https://static.cx.metamask.io/api/v2/tokenIcons/assets/eip155/1/slip44/60.png", + "metadata": {}, + "name": "Ether", + "occurrences": 100, + "symbol": "ETH" + }, + "srcChainId": 1, + "srcTokenAmount": "9912500000000000", + "steps": [ + { + "action": "bridge", + "destAmount": "9903355874773936", + "destAsset": { + "address": "0x0000000000000000000000000000000000000000", + "aggregators": [ + "traderJoe", + "oneInch", + "liFi", + "socket", + "rubic", + "squid", + "rango", + "sonarwatch", + "sushiSwap" + ], + "assetId": "eip155:42161/slip44:60", + "chainId": 42161, + "coingeckoId": "arbitrum", + "decimals": 18, + "iconUrl": "https://static.cx.metamask.io/api/v2/tokenIcons/assets/eip155/42161/slip44/60.png", + "metadata": { + "storage": { + "approval": 52, + "balance": 51 + } + }, + "name": "Ether", + "occurrences": 9, + "symbol": "ETH" + }, + "destChainId": 42161, + "protocol": { + "name": "relay" + }, + "srcAmount": "9912500000000000", + "srcAsset": { + "address": "0x0000000000000000000000000000000000000000", + "aggregators": [], + "assetId": "eip155:1/slip44:60", + "chainId": 1, + "coingeckoId": "ethereum", + "decimals": 18, + "iconUrl": "https://static.cx.metamask.io/api/v2/tokenIcons/assets/eip155/1/slip44/60.png", + "metadata": {}, + "name": "Ether", + "occurrences": 100, + "symbol": "ETH" + }, + "srcChainId": 1 + } + ] + }, + "slippagePercentage": 0, + "startTime": 1776366566194, + "status": { + "bridge": "relay", + "destChain": { + "chainId": 42161, + "txHash": "0xa69989b05125e09d738dc946845fae490140337378a139a3cb8aed99bd76d36d" + }, + "isExpectedToken": true, + "isUnrecognizedRouterAddress": false, + "srcChain": { + "chainId": 1, + "txHash": "0x2d98c88d1e57cd29f5648fd8307e5aaed4c8e7a3cb8c7b797e0842a08f450d99" + }, + "status": "COMPLETE" + }, + "txMetaId": "c94ce150-39c7-11f1-a325-3727d90ba13b" + }, + "cc434fa0-2e2f-11f1-b048-535abbd777f7": { + "account": "0x141d32a89a1e0a5ef360034a2f60a4b917c18838", + "approvalTxId": "cc3f5800-2e2f-11f1-b048-535abbd777f7", + "batchId": "0x412ae972851a43cb8ebd1d328f7f7579", + "estimatedProcessingTimeInSeconds": 0, + "hasApprovalTx": true, + "isStxEnabled": true, + "location": "Main View", + "originalTransactionId": "cc434fa0-2e2f-11f1-b048-535abbd777f7", + "pricingData": { + "amountSent": "13.29992", + "amountSentInUsd": "13.30093047471451770398806224550448", + "quotedGasAmount": "0.000627860487027848", + "quotedGasInUsd": "1.354487242494457216319830448", + "quotedReturnInUsd": "11.390066355917520490327448574" + }, + "quote": { + "aggregator": "uniswap", + "aggregatorType": "AGG", + "bridgeId": "uniswap", + "bridges": ["uniswap"], + "destAsset": { + "address": "0x0000000000000000000000000000000000000000", + "aggregators": [], + "assetId": "eip155:1/slip44:60", + "chainId": 1, + "coingeckoId": "ethereum", + "decimals": 18, + "iconUrl": "https://static.cx.metamask.io/api/v2/tokenIcons/assets/eip155/1/slip44/60.png", + "metadata": {}, + "name": "Ether", + "occurrences": 100, + "symbol": "ETH" + }, + "destChainId": 1, + "destTokenAmount": "5279763725449149", + "destWalletAddress": "0x141d32a89a1e0a5Ef360034a2f60a4B917c18838", + "feeData": { + "metabridge": { + "amount": "54218736515066", + "asset": { + "address": "0x0000000000000000000000000000000000000000", + "aggregators": [], + "assetId": "eip155:1/slip44:60", + "chainId": 1, + "coingeckoId": "ethereum", + "decimals": 18, + "iconUrl": "https://static.cx.metamask.io/api/v2/tokenIcons/assets/eip155/1/slip44/60.png", + "metadata": {}, + "name": "Ether", + "occurrences": 100, + "symbol": "ETH" + }, + "baseBpsFee": 87.5, + "quoteBpsFee": 87.5 + }, + "txFee": { + "amount": "862444568329088", + "asset": { + "address": "0x0000000000000000000000000000000000000000", + "aggregators": [], + "assetId": "eip155:1/slip44:60", + "chainId": 1, + "coingeckoId": "ethereum", + "decimals": 18, + "iconUrl": "https://static.cx.metamask.io/api/v2/tokenIcons/assets/eip155/1/slip44/60.png", + "metadata": {}, + "name": "Ether", + "occurrences": 100, + "symbol": "ETH" + }, + "maxFeePerGas": "2211860990", + "maxPriorityFeePerGas": "2100000001" + } + }, + "gasIncluded": true, + "gasIncluded7702": false, + "gasSponsored": false, + "minDestTokenAmount": "5174168450940166", + "priceData": { + "priceImpact": "-0.00519160042366564", + "totalFeeAmountUsd": "0.11696770684604732", + "totalFromAmountUsd": "13.29869640736", + "totalToAmountUsd": "11.390192677823213" + }, + "protocols": ["uniswap"], + "requestId": "0xf4fb598e1480f2f39e5470a23d59bf45158a605f6861d18e3780499c577f1a7c", + "slippage": 2, + "srcAsset": { + "address": "0xaca92e438df0b2401ff60da7e4337b687a2435da", + "aggregators": ["metamask", "liFi", "socket", "rubic", "rango"], + "assetId": "eip155:1/erc20:0xaca92e438df0b2401ff60da7e4337b687a2435da", + "chainId": 1, + "decimals": 6, + "iconUrl": "https://static.cx.metamask.io/api/v2/tokenIcons/assets/eip155/1/erc20/0xaca92e438df0b2401ff60da7e4337b687a2435da.png", + "metadata": {}, + "name": "MetaMask USD", + "occurrences": 5, + "symbol": "MUSD" + }, + "srcChainId": 1, + "srcTokenAmount": "13299920", + "steps": [], + "walletAddress": "0x141d32a89a1e0a5Ef360034a2f60a4B917c18838" + }, + "slippagePercentage": 0, + "startTime": 1775091824862, + "status": { + "srcChain": { + "chainId": 1 + }, + "status": "PENDING" + }, + "txMetaId": "cc434fa0-2e2f-11f1-b048-535abbd777f7" + }, + "cc6451c0-2874-11f1-9587-e7b839e2ab11": { + "account": "0xf25bd11c334507fd007d584e2d0b7b2c6543f714", + "batchId": "0x410980644f224345b952d4e073c93b37", + "estimatedProcessingTimeInSeconds": 0, + "hasApprovalTx": true, + "isStxEnabled": false, + "location": "Main View", + "originalTransactionId": "cc6451c0-2874-11f1-9587-e7b839e2ab11", + "pricingData": { + "amountSent": "1.899263012042498994", + "amountSentInUsd": "1.89868852380062186842366777743346145580011808", + "quotedGasAmount": "0.00001213665", + "quotedGasInUsd": "0.0078277903102924218", + "quotedReturnInUsd": "1.854914658945257213591587428" + }, + "quote": { + "aggregator": "uniswap", + "aggregatorType": "AGG", + "bridgeId": "uniswap", + "bridges": ["uniswap"], + "destAsset": { + "address": "0x0000000000000000000000000000000000000000", + "aggregators": [], + "assetId": "eip155:56/slip44:714", + "chainId": 56, + "coingeckoId": "binancecoin", + "decimals": 18, + "iconUrl": "https://static.cx.metamask.io/api/v2/tokenIcons/assets/eip155/56/slip44/714.png", + "metadata": {}, + "name": "Binance Coin", + "occurrences": 100, + "symbol": "BNB" + }, + "destChainId": 56, + "destTokenAmount": "2875964876816809", + "destWalletAddress": "0xF25bd11C334507Fd007d584E2D0b7b2C6543f714", + "feeData": { + "metabridge": { + "amount": "25748709453868", + "asset": { + "address": "0x0000000000000000000000000000000000000000", + "aggregators": [], + "assetId": "eip155:56/slip44:714", + "chainId": 56, + "coingeckoId": "binancecoin", + "decimals": 18, + "iconUrl": "https://static.cx.metamask.io/api/v2/tokenIcons/assets/eip155/56/slip44/714.png", + "metadata": {}, + "name": "Binance Coin", + "occurrences": 100, + "symbol": "BNB" + }, + "baseBpsFee": 87.5, + "quoteBpsFee": 87.5 + }, + "txFee": { + "amount": "40996065600000", + "asset": { + "address": "0x0000000000000000000000000000000000000000", + "aggregators": [], + "assetId": "eip155:56/slip44:714", + "chainId": 56, + "coingeckoId": "binancecoin", + "decimals": 18, + "iconUrl": "https://static.cx.metamask.io/api/v2/tokenIcons/assets/eip155/56/slip44/714.png", + "metadata": {}, + "name": "Binance Coin", + "occurrences": 100, + "symbol": "BNB" + }, + "maxFeePerGas": "60000000", + "maxPriorityFeePerGas": "60000000" + } + }, + "gasIncluded": true, + "gasIncluded7702": true, + "gasSponsored": false, + "minDestTokenAmount": "2818445579280472", + "priceData": { + "priceImpact": "0.00002851901483390045", + "totalFeeAmountUsd": "0.01661383980091925", + "totalFromAmountUsd": "1.898778699974428", + "totalToAmountUsd": "1.8556588174685098" + }, + "protocols": ["uniswap"], + "requestId": "0x86bd0778af36ee93790a7cdebfd0cd0feae1e08e419f871339bfcd231fe85ea9", + "slippage": 2, + "srcAsset": { + "address": "0x55d398326f99059ff775485246999027b3197955", + "aggregators": [ + "pancakeExtended", + "oneInch", + "liFi", + "trustWallet", + "socket", + "rubic", + "squid", + "rango", + "sonarwatch", + "sushiSwap" + ], + "assetId": "eip155:56/erc20:0x55d398326f99059ff775485246999027b3197955", + "chainId": 56, + "coingeckoId": "binance-bridged-usdt-bnb-smart-chain", + "decimals": 18, + "iconUrl": "https://static.cx.metamask.io/api/v2/tokenIcons/assets/eip155/56/erc20/0x55d398326f99059ff775485246999027b3197955.png", + "metadata": { + "storage": { + "approval": 2, + "balance": 1 + } + }, + "name": "Tether USD", + "occurrences": 11, + "symbol": "USDT" + }, + "srcChainId": 56, + "srcTokenAmount": "1899263012042498994", + "steps": [], + "walletAddress": "0xF25bd11C334507Fd007d584E2D0b7b2C6543f714" + }, + "slippagePercentage": 0, + "startTime": 1774461753436, + "status": { + "srcChain": { + "chainId": 56, + "txHash": "0xa1735fd806de85d26fe4a57ed4c7e24ea27fa7477af8e3d50cc467f1dfe735f4" + }, + "status": "PENDING" + }, + "txMetaId": "cc6451c0-2874-11f1-9587-e7b839e2ab11" + }, + "cd38bf10-1829-11f1-b7d6-03d70bc40886": { + "account": "0x30e8ccad5a980bdf30447f8c2c48e70989d9d294", + "batchId": "0x83da7243d6964a0f8e3b6892daa6ea0b", + "estimatedProcessingTimeInSeconds": 0, + "hasApprovalTx": false, + "isStxEnabled": true, + "pricingData": { + "amountSent": "10", + "amountSentInUsd": "1.03808998", + "quotedGasAmount": "0.045406946478480405", + "quotedGasInUsd": "0.00471364961617067940568419", + "quotedReturnInUsd": "1.029770649732954801319844949" + }, + "quote": { + "aggregator": "uniswap", + "aggregatorType": "AGG", + "bridgeId": "uniswap", + "bridges": ["uniswap"], + "destAsset": { + "address": "0xc2132d05d31c914a87c6611c10748aeb04b58e8f", + "aggregators": [ + "quickswap", + "oneInch", + "liFi", + "socket", + "squid", + "rango", + "sonarwatch", + "sushiSwap" + ], + "assetId": "eip155:137/erc20:0xc2132d05d31c914a87c6611c10748aeb04b58e8f", + "chainId": 137, + "coingeckoId": "polygon-bridged-usdt-polygon", + "decimals": 6, + "iconUrl": "https://static.cx.metamask.io/api/v2/tokenIcons/assets/eip155/137/erc20/0xc2132d05d31c914a87c6611c10748aeb04b58e8f.png", + "metadata": { + "storage": { + "approval": 1, + "balance": 0 + } + }, + "name": "Tether USD", + "occurrences": 8, + "symbol": "USDT" + }, + "destChainId": 137, + "destTokenAmount": "1030410", + "destWalletAddress": "0x30E8ccaD5A980BDF30447f8c2C48e70989D9d294", + "feeData": { + "metabridge": { + "amount": "87500000000000000", + "asset": { + "address": "0x0000000000000000000000000000000000000000", + "aggregators": [], + "assetId": "eip155:137/slip44:966", + "chainId": 137, + "coingeckoId": "matic-network", + "decimals": 18, + "iconUrl": "https://static.cx.metamask.io/api/v2/tokenIcons/assets/eip155/137/slip44/966.png", + "metadata": {}, + "name": "Polygon Ecosystem Token", + "occurrences": 100, + "symbol": "POL" + }, + "baseBpsFee": 87.5, + "quoteBpsFee": 87.5 + } + }, + "gasIncluded7702": false, + "gasSponsored": false, + "minDestTokenAmount": "1009801", + "priceData": { + "priceImpact": "-0.0005881848301092544", + "totalFeeAmountUsd": "0.009084687499999999", + "totalFromAmountUsd": "1.0382500000000001", + "totalToAmountUsd": "1.0297706519244871" + }, + "protocols": ["uniswap"], + "requestId": "0x51162f38cdfc533eec8cf08eb04b2e0ec48cf510b365d124ae069b4319d66620", + "slippage": 2, + "srcAsset": { + "address": "0x0000000000000000000000000000000000000000", + "aggregators": [], + "assetId": "eip155:137/slip44:966", + "chainId": 137, + "coingeckoId": "matic-network", + "decimals": 18, + "iconUrl": "https://static.cx.metamask.io/api/v2/tokenIcons/assets/eip155/137/slip44/966.png", + "metadata": {}, + "name": "Polygon Ecosystem Token", + "occurrences": 100, + "symbol": "POL" + }, + "srcChainId": 137, + "srcTokenAmount": "9912500000000000000", + "steps": [], + "walletAddress": "0x30E8ccaD5A980BDF30447f8c2C48e70989D9d294" + }, + "slippagePercentage": 0, + "startTime": 1772670324065, + "status": { + "srcChain": { + "chainId": 137 + }, + "status": "PENDING" + }, + "txMetaId": "cd38bf10-1829-11f1-b7d6-03d70bc40886" + }, + "cd7cf400-1829-11f1-b7d6-03d70bc40886": { + "account": "0x30e8ccad5a980bdf30447f8c2c48e70989d9d294", + "batchId": "0x4b12975300224210b1d401a0d3828093", + "estimatedProcessingTimeInSeconds": 0, + "hasApprovalTx": false, + "isStxEnabled": true, + "pricingData": { + "amountSent": "10", + "amountSentInUsd": "1.03808998", + "quotedGasAmount": "0.045406946478480405", + "quotedGasInUsd": "0.00471364961617067940568419", + "quotedReturnInUsd": "1.029770649732954801319844949" + }, + "quote": { + "aggregator": "uniswap", + "aggregatorType": "AGG", + "bridgeId": "uniswap", + "bridges": ["uniswap"], + "destAsset": { + "address": "0xc2132d05d31c914a87c6611c10748aeb04b58e8f", + "aggregators": [ + "quickswap", + "oneInch", + "liFi", + "socket", + "squid", + "rango", + "sonarwatch", + "sushiSwap" + ], + "assetId": "eip155:137/erc20:0xc2132d05d31c914a87c6611c10748aeb04b58e8f", + "chainId": 137, + "coingeckoId": "polygon-bridged-usdt-polygon", + "decimals": 6, + "iconUrl": "https://static.cx.metamask.io/api/v2/tokenIcons/assets/eip155/137/erc20/0xc2132d05d31c914a87c6611c10748aeb04b58e8f.png", + "metadata": { + "storage": { + "approval": 1, + "balance": 0 + } + }, + "name": "Tether USD", + "occurrences": 8, + "symbol": "USDT" + }, + "destChainId": 137, + "destTokenAmount": "1030410", + "destWalletAddress": "0x30E8ccaD5A980BDF30447f8c2C48e70989D9d294", + "feeData": { + "metabridge": { + "amount": "87500000000000000", + "asset": { + "address": "0x0000000000000000000000000000000000000000", + "aggregators": [], + "assetId": "eip155:137/slip44:966", + "chainId": 137, + "coingeckoId": "matic-network", + "decimals": 18, + "iconUrl": "https://static.cx.metamask.io/api/v2/tokenIcons/assets/eip155/137/slip44/966.png", + "metadata": {}, + "name": "Polygon Ecosystem Token", + "occurrences": 100, + "symbol": "POL" + }, + "baseBpsFee": 87.5, + "quoteBpsFee": 87.5 + } + }, + "gasIncluded7702": false, + "gasSponsored": false, + "minDestTokenAmount": "1009801", + "priceData": { + "priceImpact": "-0.0005881848301092544", + "totalFeeAmountUsd": "0.009084687499999999", + "totalFromAmountUsd": "1.0382500000000001", + "totalToAmountUsd": "1.0297706519244871" + }, + "protocols": ["uniswap"], + "requestId": "0x51162f38cdfc533eec8cf08eb04b2e0ec48cf510b365d124ae069b4319d66620", + "slippage": 2, + "srcAsset": { + "address": "0x0000000000000000000000000000000000000000", + "aggregators": [], + "assetId": "eip155:137/slip44:966", + "chainId": 137, + "coingeckoId": "matic-network", + "decimals": 18, + "iconUrl": "https://static.cx.metamask.io/api/v2/tokenIcons/assets/eip155/137/slip44/966.png", + "metadata": {}, + "name": "Polygon Ecosystem Token", + "occurrences": 100, + "symbol": "POL" + }, + "srcChainId": 137, + "srcTokenAmount": "9912500000000000000", + "steps": [], + "walletAddress": "0x30E8ccaD5A980BDF30447f8c2C48e70989D9d294" + }, + "slippagePercentage": 0, + "startTime": 1772670324515, + "status": { + "srcChain": { + "chainId": 137 + }, + "status": "PENDING" + }, + "txMetaId": "cd7cf400-1829-11f1-b7d6-03d70bc40886" + }, + "cda9a950-1829-11f1-b7d6-03d70bc40886": { + "account": "0x30e8ccad5a980bdf30447f8c2c48e70989d9d294", + "batchId": "0x4e40bd07f5d2498d87e6b04c89c806c9", + "estimatedProcessingTimeInSeconds": 0, + "hasApprovalTx": false, + "isStxEnabled": true, + "pricingData": { + "amountSent": "10", + "amountSentInUsd": "1.03808998", + "quotedGasAmount": "0.045406946478480405", + "quotedGasInUsd": "0.00471364961617067940568419", + "quotedReturnInUsd": "1.029770649732954801319844949" + }, + "quote": { + "aggregator": "uniswap", + "aggregatorType": "AGG", + "bridgeId": "uniswap", + "bridges": ["uniswap"], + "destAsset": { + "address": "0xc2132d05d31c914a87c6611c10748aeb04b58e8f", + "aggregators": [ + "quickswap", + "oneInch", + "liFi", + "socket", + "squid", + "rango", + "sonarwatch", + "sushiSwap" + ], + "assetId": "eip155:137/erc20:0xc2132d05d31c914a87c6611c10748aeb04b58e8f", + "chainId": 137, + "coingeckoId": "polygon-bridged-usdt-polygon", + "decimals": 6, + "iconUrl": "https://static.cx.metamask.io/api/v2/tokenIcons/assets/eip155/137/erc20/0xc2132d05d31c914a87c6611c10748aeb04b58e8f.png", + "metadata": { + "storage": { + "approval": 1, + "balance": 0 + } + }, + "name": "Tether USD", + "occurrences": 8, + "symbol": "USDT" + }, + "destChainId": 137, + "destTokenAmount": "1030410", + "destWalletAddress": "0x30E8ccaD5A980BDF30447f8c2C48e70989D9d294", + "feeData": { + "metabridge": { + "amount": "87500000000000000", + "asset": { + "address": "0x0000000000000000000000000000000000000000", + "aggregators": [], + "assetId": "eip155:137/slip44:966", + "chainId": 137, + "coingeckoId": "matic-network", + "decimals": 18, + "iconUrl": "https://static.cx.metamask.io/api/v2/tokenIcons/assets/eip155/137/slip44/966.png", + "metadata": {}, + "name": "Polygon Ecosystem Token", + "occurrences": 100, + "symbol": "POL" + }, + "baseBpsFee": 87.5, + "quoteBpsFee": 87.5 + } + }, + "gasIncluded7702": false, + "gasSponsored": false, + "minDestTokenAmount": "1009801", + "priceData": { + "priceImpact": "-0.0005881848301092544", + "totalFeeAmountUsd": "0.009084687499999999", + "totalFromAmountUsd": "1.0382500000000001", + "totalToAmountUsd": "1.0297706519244871" + }, + "protocols": ["uniswap"], + "requestId": "0x51162f38cdfc533eec8cf08eb04b2e0ec48cf510b365d124ae069b4319d66620", + "slippage": 2, + "srcAsset": { + "address": "0x0000000000000000000000000000000000000000", + "aggregators": [], + "assetId": "eip155:137/slip44:966", + "chainId": 137, + "coingeckoId": "matic-network", + "decimals": 18, + "iconUrl": "https://static.cx.metamask.io/api/v2/tokenIcons/assets/eip155/137/slip44/966.png", + "metadata": {}, + "name": "Polygon Ecosystem Token", + "occurrences": 100, + "symbol": "POL" + }, + "srcChainId": 137, + "srcTokenAmount": "9912500000000000000", + "steps": [], + "walletAddress": "0x30E8ccaD5A980BDF30447f8c2C48e70989D9d294" + }, + "slippagePercentage": 0, + "startTime": 1772670324815, + "status": { + "srcChain": { + "chainId": 137 + }, + "status": "PENDING" + }, + "txMetaId": "cda9a950-1829-11f1-b7d6-03d70bc40886" + }, + "cddf1130-1829-11f1-b7d6-03d70bc40886": { + "account": "0x30e8ccad5a980bdf30447f8c2c48e70989d9d294", + "batchId": "0x2bb9bae7f4bd4d5e83c2e607ba1b4c9c", + "estimatedProcessingTimeInSeconds": 0, + "hasApprovalTx": false, + "isStxEnabled": true, + "pricingData": { + "amountSent": "10", + "amountSentInUsd": "1.03808998", + "quotedGasAmount": "0.045406946478480405", + "quotedGasInUsd": "0.00471364961617067940568419", + "quotedReturnInUsd": "1.029770649732954801319844949" + }, + "quote": { + "aggregator": "uniswap", + "aggregatorType": "AGG", + "bridgeId": "uniswap", + "bridges": ["uniswap"], + "destAsset": { + "address": "0xc2132d05d31c914a87c6611c10748aeb04b58e8f", + "aggregators": [ + "quickswap", + "oneInch", + "liFi", + "socket", + "squid", + "rango", + "sonarwatch", + "sushiSwap" + ], + "assetId": "eip155:137/erc20:0xc2132d05d31c914a87c6611c10748aeb04b58e8f", + "chainId": 137, + "coingeckoId": "polygon-bridged-usdt-polygon", + "decimals": 6, + "iconUrl": "https://static.cx.metamask.io/api/v2/tokenIcons/assets/eip155/137/erc20/0xc2132d05d31c914a87c6611c10748aeb04b58e8f.png", + "metadata": { + "storage": { + "approval": 1, + "balance": 0 + } + }, + "name": "Tether USD", + "occurrences": 8, + "symbol": "USDT" + }, + "destChainId": 137, + "destTokenAmount": "1030410", + "destWalletAddress": "0x30E8ccaD5A980BDF30447f8c2C48e70989D9d294", + "feeData": { + "metabridge": { + "amount": "87500000000000000", + "asset": { + "address": "0x0000000000000000000000000000000000000000", + "aggregators": [], + "assetId": "eip155:137/slip44:966", + "chainId": 137, + "coingeckoId": "matic-network", + "decimals": 18, + "iconUrl": "https://static.cx.metamask.io/api/v2/tokenIcons/assets/eip155/137/slip44/966.png", + "metadata": {}, + "name": "Polygon Ecosystem Token", + "occurrences": 100, + "symbol": "POL" + }, + "baseBpsFee": 87.5, + "quoteBpsFee": 87.5 + } + }, + "gasIncluded7702": false, + "gasSponsored": false, + "minDestTokenAmount": "1009801", + "priceData": { + "priceImpact": "-0.0005881848301092544", + "totalFeeAmountUsd": "0.009084687499999999", + "totalFromAmountUsd": "1.0382500000000001", + "totalToAmountUsd": "1.0297706519244871" + }, + "protocols": ["uniswap"], + "requestId": "0x51162f38cdfc533eec8cf08eb04b2e0ec48cf510b365d124ae069b4319d66620", + "slippage": 2, + "srcAsset": { + "address": "0x0000000000000000000000000000000000000000", + "aggregators": [], + "assetId": "eip155:137/slip44:966", + "chainId": 137, + "coingeckoId": "matic-network", + "decimals": 18, + "iconUrl": "https://static.cx.metamask.io/api/v2/tokenIcons/assets/eip155/137/slip44/966.png", + "metadata": {}, + "name": "Polygon Ecosystem Token", + "occurrences": 100, + "symbol": "POL" + }, + "srcChainId": 137, + "srcTokenAmount": "9912500000000000000", + "steps": [], + "walletAddress": "0x30E8ccaD5A980BDF30447f8c2C48e70989D9d294" + }, + "slippagePercentage": 0, + "startTime": 1772670325165, + "status": { + "srcChain": { + "chainId": 137 + }, + "status": "PENDING" + }, + "txMetaId": "cddf1130-1829-11f1-b7d6-03d70bc40886" + }, + "ce002dc0-1829-11f1-b7d6-03d70bc40886": { + "account": "0x30e8ccad5a980bdf30447f8c2c48e70989d9d294", + "batchId": "0x044cdf7f7e4144c0afbd391ef22456d1", + "estimatedProcessingTimeInSeconds": 0, + "hasApprovalTx": false, + "isStxEnabled": true, + "pricingData": { + "amountSent": "10", + "amountSentInUsd": "1.03808998", + "quotedGasAmount": "0.045406946478480405", + "quotedGasInUsd": "0.00471364961617067940568419", + "quotedReturnInUsd": "1.029770649732954801319844949" + }, + "quote": { + "aggregator": "uniswap", + "aggregatorType": "AGG", + "bridgeId": "uniswap", + "bridges": ["uniswap"], + "destAsset": { + "address": "0xc2132d05d31c914a87c6611c10748aeb04b58e8f", + "aggregators": [ + "quickswap", + "oneInch", + "liFi", + "socket", + "squid", + "rango", + "sonarwatch", + "sushiSwap" + ], + "assetId": "eip155:137/erc20:0xc2132d05d31c914a87c6611c10748aeb04b58e8f", + "chainId": 137, + "coingeckoId": "polygon-bridged-usdt-polygon", + "decimals": 6, + "iconUrl": "https://static.cx.metamask.io/api/v2/tokenIcons/assets/eip155/137/erc20/0xc2132d05d31c914a87c6611c10748aeb04b58e8f.png", + "metadata": { + "storage": { + "approval": 1, + "balance": 0 + } + }, + "name": "Tether USD", + "occurrences": 8, + "symbol": "USDT" + }, + "destChainId": 137, + "destTokenAmount": "1030410", + "destWalletAddress": "0x30E8ccaD5A980BDF30447f8c2C48e70989D9d294", + "feeData": { + "metabridge": { + "amount": "87500000000000000", + "asset": { + "address": "0x0000000000000000000000000000000000000000", + "aggregators": [], + "assetId": "eip155:137/slip44:966", + "chainId": 137, + "coingeckoId": "matic-network", + "decimals": 18, + "iconUrl": "https://static.cx.metamask.io/api/v2/tokenIcons/assets/eip155/137/slip44/966.png", + "metadata": {}, + "name": "Polygon Ecosystem Token", + "occurrences": 100, + "symbol": "POL" + }, + "baseBpsFee": 87.5, + "quoteBpsFee": 87.5 + } + }, + "gasIncluded7702": false, + "gasSponsored": false, + "minDestTokenAmount": "1009801", + "priceData": { + "priceImpact": "-0.0005881848301092544", + "totalFeeAmountUsd": "0.009084687499999999", + "totalFromAmountUsd": "1.0382500000000001", + "totalToAmountUsd": "1.0297706519244871" + }, + "protocols": ["uniswap"], + "requestId": "0x51162f38cdfc533eec8cf08eb04b2e0ec48cf510b365d124ae069b4319d66620", + "slippage": 2, + "srcAsset": { + "address": "0x0000000000000000000000000000000000000000", + "aggregators": [], + "assetId": "eip155:137/slip44:966", + "chainId": 137, + "coingeckoId": "matic-network", + "decimals": 18, + "iconUrl": "https://static.cx.metamask.io/api/v2/tokenIcons/assets/eip155/137/slip44/966.png", + "metadata": {}, + "name": "Polygon Ecosystem Token", + "occurrences": 100, + "symbol": "POL" + }, + "srcChainId": 137, + "srcTokenAmount": "9912500000000000000", + "steps": [], + "walletAddress": "0x30E8ccaD5A980BDF30447f8c2C48e70989D9d294" + }, + "slippagePercentage": 0, + "startTime": 1772670325381, + "status": { + "srcChain": { + "chainId": 137 + }, + "status": "PENDING" + }, + "txMetaId": "ce002dc0-1829-11f1-b7d6-03d70bc40886" + }, + "ce33c0e0-1829-11f1-b7d6-03d70bc40886": { + "account": "0x30e8ccad5a980bdf30447f8c2c48e70989d9d294", + "batchId": "0x8780f818513b4f198ef4c2a1d7d3d24f", + "estimatedProcessingTimeInSeconds": 0, + "hasApprovalTx": false, + "isStxEnabled": true, + "pricingData": { + "amountSent": "10", + "amountSentInUsd": "1.03808998", + "quotedGasAmount": "0.045406946478480405", + "quotedGasInUsd": "0.00471364961617067940568419", + "quotedReturnInUsd": "1.029770649732954801319844949" + }, + "quote": { + "aggregator": "uniswap", + "aggregatorType": "AGG", + "bridgeId": "uniswap", + "bridges": ["uniswap"], + "destAsset": { + "address": "0xc2132d05d31c914a87c6611c10748aeb04b58e8f", + "aggregators": [ + "quickswap", + "oneInch", + "liFi", + "socket", + "squid", + "rango", + "sonarwatch", + "sushiSwap" + ], + "assetId": "eip155:137/erc20:0xc2132d05d31c914a87c6611c10748aeb04b58e8f", + "chainId": 137, + "coingeckoId": "polygon-bridged-usdt-polygon", + "decimals": 6, + "iconUrl": "https://static.cx.metamask.io/api/v2/tokenIcons/assets/eip155/137/erc20/0xc2132d05d31c914a87c6611c10748aeb04b58e8f.png", + "metadata": { + "storage": { + "approval": 1, + "balance": 0 + } + }, + "name": "Tether USD", + "occurrences": 8, + "symbol": "USDT" + }, + "destChainId": 137, + "destTokenAmount": "1030410", + "destWalletAddress": "0x30E8ccaD5A980BDF30447f8c2C48e70989D9d294", + "feeData": { + "metabridge": { + "amount": "87500000000000000", + "asset": { + "address": "0x0000000000000000000000000000000000000000", + "aggregators": [], + "assetId": "eip155:137/slip44:966", + "chainId": 137, + "coingeckoId": "matic-network", + "decimals": 18, + "iconUrl": "https://static.cx.metamask.io/api/v2/tokenIcons/assets/eip155/137/slip44/966.png", + "metadata": {}, + "name": "Polygon Ecosystem Token", + "occurrences": 100, + "symbol": "POL" + }, + "baseBpsFee": 87.5, + "quoteBpsFee": 87.5 + } + }, + "gasIncluded7702": false, + "gasSponsored": false, + "minDestTokenAmount": "1009801", + "priceData": { + "priceImpact": "-0.0005881848301092544", + "totalFeeAmountUsd": "0.009084687499999999", + "totalFromAmountUsd": "1.0382500000000001", + "totalToAmountUsd": "1.0297706519244871" + }, + "protocols": ["uniswap"], + "requestId": "0x51162f38cdfc533eec8cf08eb04b2e0ec48cf510b365d124ae069b4319d66620", + "slippage": 2, + "srcAsset": { + "address": "0x0000000000000000000000000000000000000000", + "aggregators": [], + "assetId": "eip155:137/slip44:966", + "chainId": 137, + "coingeckoId": "matic-network", + "decimals": 18, + "iconUrl": "https://static.cx.metamask.io/api/v2/tokenIcons/assets/eip155/137/slip44/966.png", + "metadata": {}, + "name": "Polygon Ecosystem Token", + "occurrences": 100, + "symbol": "POL" + }, + "srcChainId": 137, + "srcTokenAmount": "9912500000000000000", + "steps": [], + "walletAddress": "0x30E8ccaD5A980BDF30447f8c2C48e70989D9d294" + }, + "slippagePercentage": 0, + "startTime": 1772670325722, + "status": { + "srcChain": { + "chainId": 137 + }, + "status": "PENDING" + }, + "txMetaId": "ce33c0e0-1829-11f1-b7d6-03d70bc40886" + }, + "ce854710-23c0-11f1-ba09-05a660861774": { + "account": "0xb3864b298f4fddbbbd2fa5cf1a2a2748932b3b81", + "batchId": "0x5c1c927cdc1741ddb0b77f8501b22421", + "estimatedProcessingTimeInSeconds": 0, + "hasApprovalTx": false, + "isStxEnabled": false, + "location": "Main View", + "originalTransactionId": "ce854710-23c0-11f1-ba09-05a660861774", + "pricingData": { + "amountSent": "416.36735", + "amountSentInUsd": "9.19304258852805", + "quotedGasAmount": "0.07916898526", + "quotedGasInUsd": "0.00174798493010013738", + "quotedReturnInUsd": "9.1346624073293490712336207689" + }, + "quote": { + "aggregator": "kyberswap", + "aggregatorType": "AGG", + "bridgeId": "kyberswap", + "bridges": ["kyberswap"], + "destAsset": { + "address": "0x754704bc059f8c67012fed69bc8a327a5aafb603", + "aggregators": ["metamask", "liFi", "squid"], + "assetId": "eip155:143/erc20:0x754704bc059f8c67012fed69bc8a327a5aafb603", + "chainId": 143, + "decimals": 6, + "iconUrl": "https://static.cx.metamask.io/api/v2/tokenIcons/assets/eip155/143/erc20/0x754704bc059f8c67012fed69bc8a327a5aafb603.png", + "metadata": {}, + "name": "USDC", + "occurrences": 3, + "symbol": "USDC" + }, + "destChainId": 143, + "destTokenAmount": "9135567", + "destWalletAddress": "0xb3864B298f4fDdbbBd2Fa5CF1a2a2748932b3B81", + "feeData": { + "metabridge": { + "amount": "3643214312500000000", + "asset": { + "address": "0x0000000000000000000000000000000000000000", + "aggregators": [], + "assetId": "eip155:143/slip44:268435779", + "chainId": 143, + "decimals": 18, + "iconUrl": "https://static.cx.metamask.io/api/v2/tokenIcons/assets/eip155/143/slip44/268435779.png", + "metadata": {}, + "name": "Mon", + "occurrences": 1, + "symbol": "MON" + }, + "baseBpsFee": 87.5, + "quoteBpsFee": 87.5 + } + }, + "gasIncluded": false, + "gasIncluded7702": true, + "gasSponsored": true, + "minDestTokenAmount": "8952855", + "priceData": { + "priceImpact": "-0.00018395232141909536", + "totalFeeAmountUsd": "0.08061901364272875", + "totalFromAmountUsd": "9.213601559169", + "totalToAmountUsd": "9.134662578867001" + }, + "protocols": ["kyberswap"], + "requestId": "0xf8587ab4d5d0b801b71352a92a7ff9264a07382c59b8c21bb6f01c2933847adf", + "slippage": 2, + "srcAsset": { + "address": "0x0000000000000000000000000000000000000000", + "aggregators": [], + "assetId": "eip155:143/slip44:268435779", + "chainId": 143, + "decimals": 18, + "iconUrl": "https://static.cx.metamask.io/api/v2/tokenIcons/assets/eip155/143/slip44/268435779.png", + "metadata": {}, + "name": "Mon", + "occurrences": 1, + "symbol": "MON" + }, + "srcChainId": 143, + "srcTokenAmount": "412724135687500000000", + "steps": [], + "walletAddress": "0xb3864B298f4fDdbbBd2Fa5CF1a2a2748932b3B81" + }, + "slippagePercentage": 0, + "startTime": 1773944642602, + "status": { + "srcChain": { + "chainId": 143 + }, + "status": "PENDING" + }, + "txMetaId": "ce854710-23c0-11f1-ba09-05a660861774" + }, + "d256a8f0-2877-11f1-9e23-5b4e77963ec9": { + "account": "0xf25bd11c334507fd007d584e2d0b7b2c6543f714", + "batchId": "0xbf2998a47fb94b64a9bbfe1a0f4196b5", + "estimatedProcessingTimeInSeconds": 0, + "hasApprovalTx": true, + "isStxEnabled": false, + "location": "Main View", + "originalTransactionId": "d256a8f0-2877-11f1-9e23-5b4e77963ec9", + "pricingData": { + "amountSent": "1.700864205240021113", + "amountSentInUsd": "1.70086198163970273624022762966768200866393825", + "quotedGasAmount": "0.00001377565", + "quotedGasInUsd": "0.00888787690162978375", + "quotedReturnInUsd": "1.65202587233160871633028405" + }, + "quote": { + "aggregator": "1inch", + "aggregatorType": "AGG", + "bridgeId": "1inch", + "bridges": ["1inch"], + "destAsset": { + "address": "0x0000000000000000000000000000000000000000", + "aggregators": [], + "assetId": "eip155:56/slip44:714", + "chainId": 56, + "coingeckoId": "binancecoin", + "decimals": 18, + "iconUrl": "https://static.cx.metamask.io/api/v2/tokenIcons/assets/eip155/56/slip44/714.png", + "metadata": {}, + "name": "Binance Coin", + "occurrences": 100, + "symbol": "BNB" + }, + "destChainId": 56, + "destTokenAmount": "2560536161792678", + "destWalletAddress": "0xF25bd11C334507Fd007d584E2D0b7b2C6543f714", + "feeData": { + "metabridge": { + "amount": "23016125521499", + "asset": { + "address": "0x0000000000000000000000000000000000000000", + "aggregators": [], + "assetId": "eip155:56/slip44:714", + "chainId": 56, + "coingeckoId": "binancecoin", + "decimals": 18, + "iconUrl": "https://static.cx.metamask.io/api/v2/tokenIcons/assets/eip155/56/slip44/714.png", + "metadata": {}, + "name": "Binance Coin", + "occurrences": 100, + "symbol": "BNB" + }, + "baseBpsFee": 87.5, + "quoteBpsFee": 87.5 + }, + "txFee": { + "amount": "46862058000000", + "asset": { + "address": "0x0000000000000000000000000000000000000000", + "aggregators": [], + "assetId": "eip155:56/slip44:714", + "chainId": 56, + "coingeckoId": "binancecoin", + "decimals": 18, + "iconUrl": "https://static.cx.metamask.io/api/v2/tokenIcons/assets/eip155/56/slip44/714.png", + "metadata": {}, + "name": "Binance Coin", + "occurrences": 100, + "symbol": "BNB" + }, + "maxFeePerGas": "60000000", + "maxPriorityFeePerGas": "60000000" + } + }, + "gasIncluded": true, + "gasIncluded7702": true, + "gasSponsored": false, + "minDestTokenAmount": "2509325438556824", + "priceData": { + "priceImpact": "0.0014056666892441811", + "totalFeeAmountUsd": "0.014857599507893247", + "totalFromAmountUsd": "1.7004015701761959", + "totalToAmountUsd": "1.6529029085220275" + }, + "protocols": ["1inch"], + "requestId": "0x37f31556c303a3e12b3c63779210762e9aa8cf903aa1902a853cb8a4a5bc19b7", + "slippage": 2, + "srcAsset": { + "address": "0x55d398326f99059ff775485246999027b3197955", + "aggregators": [ + "pancakeExtended", + "oneInch", + "liFi", + "trustWallet", + "socket", + "rubic", + "squid", + "rango", + "sonarwatch", + "sushiSwap" + ], + "assetId": "eip155:56/erc20:0x55d398326f99059ff775485246999027b3197955", + "chainId": 56, + "coingeckoId": "binance-bridged-usdt-bnb-smart-chain", + "decimals": 18, + "iconUrl": "https://static.cx.metamask.io/api/v2/tokenIcons/assets/eip155/56/erc20/0x55d398326f99059ff775485246999027b3197955.png", + "metadata": { + "storage": { + "approval": 2, + "balance": 1 + } + }, + "name": "Tether USD", + "occurrences": 11, + "symbol": "USDT" + }, + "srcChainId": 56, + "srcTokenAmount": "1700864205240021113", + "steps": [], + "walletAddress": "0xF25bd11C334507Fd007d584E2D0b7b2C6543f714" + }, + "slippagePercentage": 0, + "startTime": 1774463051870, + "status": { + "srcChain": { + "chainId": 56, + "txHash": "0x99924a2fc050758563d9f954a1f30e5e465c03e78cc8958c32a1b659d7433f58" + }, + "status": "PENDING" + }, + "txMetaId": "d256a8f0-2877-11f1-9e23-5b4e77963ec9" + }, + "d3bf32a0-39db-11f1-bc94-3727d90ba13b": { + "account": "0x141d32a89a1e0a5ef360034a2f60a4b917c18838", + "batchId": "0x20245866a5b543c1af94b98e209ee1e1", + "completionTime": 1776375193270, + "estimatedProcessingTimeInSeconds": 1.5, + "hasApprovalTx": false, + "isStxEnabled": false, + "location": "Main View", + "originalTransactionId": "d3bf32a0-39db-11f1-bc94-3727d90ba13b", + "pricingData": { + "amountSent": "0.013950531091145531", + "amountSentInUsd": "32.658515343737659473775597234", + "quotedGasAmount": "0.000184715769752919", + "quotedGasInUsd": "0.432423881305486761713991066", + "quotedReturnInUsd": "31.82774314327230765570593886" + }, + "quote": { + "aggregator": "relay", + "bridgeId": "relay", + "bridges": ["Relay"], + "destAsset": { + "address": "0x0000000000000000000000000000000000000000", + "aggregators": [], + "assetId": "eip155:42161/slip44:60", + "chainId": 42161, + "coingeckoId": "ethereum", + "decimals": 18, + "iconUrl": "https://static.cx.metamask.io/api/v2/tokenIcons/assets/eip155/42161/slip44/60.png", + "metadata": {}, + "name": "Ether", + "occurrences": 100, + "symbol": "ETH" + }, + "destChainId": 42161, + "destTokenAmount": "13595655393635490", + "feeData": { + "metabridge": { + "amount": "122067147047523", + "asset": { + "address": "0x0000000000000000000000000000000000000000", + "aggregators": [], + "assetId": "eip155:1/slip44:60", + "chainId": 1, + "coingeckoId": "ethereum", + "decimals": 18, + "iconUrl": "https://static.cx.metamask.io/api/v2/tokenIcons/assets/eip155/1/slip44/60.png", + "metadata": {}, + "name": "Ether", + "occurrences": 100, + "symbol": "ETH" + }, + "baseBpsFee": 87.5, + "quoteBpsFee": 87.5 + }, + "txFee": { + "amount": "222071812897634", + "asset": { + "address": "0x0000000000000000000000000000000000000000", + "aggregators": [], + "assetId": "eip155:1/slip44:60", + "chainId": 1, + "coingeckoId": "ethereum", + "decimals": 18, + "iconUrl": "https://static.cx.metamask.io/api/v2/tokenIcons/assets/eip155/1/slip44/60.png", + "metadata": {}, + "name": "Ether", + "occurrences": 100, + "symbol": "ETH" + }, + "maxFeePerGas": "2241879227", + "maxPriorityFeePerGas": "2100000001" + } + }, + "gasIncluded": true, + "gasIncluded7702": false, + "gasSponsored": false, + "minDestTokenAmount": "13323742285762780", + "priceData": { + "priceImpact": "0.008528286507847345", + "totalFeeAmountUsd": "0.28568973314354484", + "totalFromAmountUsd": "32.650255216405235", + "totalToAmountUsd": "31.856493257293536" + }, + "protocols": ["Relay"], + "requestId": "0x02ca08aeacca78b0ccfba9be49e103a197ff17d9c219895ee7925a833a77ab08", + "slippage": 2, + "srcAsset": { + "address": "0x0000000000000000000000000000000000000000", + "aggregators": [], + "assetId": "eip155:1/slip44:60", + "chainId": 1, + "coingeckoId": "ethereum", + "decimals": 18, + "iconUrl": "https://static.cx.metamask.io/api/v2/tokenIcons/assets/eip155/1/slip44/60.png", + "metadata": {}, + "name": "Ether", + "occurrences": 100, + "symbol": "ETH" + }, + "srcChainId": 1, + "srcTokenAmount": "13606392131200374", + "steps": [ + { + "action": "bridge", + "destAmount": "13595655393635490", + "destAsset": { + "address": "0x0000000000000000000000000000000000000000", + "aggregators": [], + "assetId": "eip155:42161/slip44:60", + "chainId": 42161, + "coingeckoId": "ethereum", + "decimals": 18, + "iconUrl": "https://static.cx.metamask.io/api/v2/tokenIcons/assets/eip155/42161/slip44/60.png", + "metadata": {}, + "name": "Ether", + "occurrences": 100, + "symbol": "ETH" + }, + "destChainId": 42161, + "protocol": { + "name": "relay" + }, + "srcAmount": "13606392131200374", + "srcAsset": { + "address": "0x0000000000000000000000000000000000000000", + "aggregators": [], + "assetId": "eip155:1/slip44:60", + "chainId": 1, + "coingeckoId": "ethereum", + "decimals": 18, + "iconUrl": "https://static.cx.metamask.io/api/v2/tokenIcons/assets/eip155/1/slip44/60.png", + "metadata": {}, + "name": "Ether", + "occurrences": 100, + "symbol": "ETH" + }, + "srcChainId": 1 + } + ] + }, + "slippagePercentage": 0, + "startTime": 1776375173503, + "status": { + "bridge": "relay", + "destChain": { + "chainId": 42161, + "txHash": "0xd5f58e1a26c2ba999201d2af7999d94c55c4a384b4899dbf1313ceb53a8342c3" + }, + "isExpectedToken": true, + "isUnrecognizedRouterAddress": false, + "srcChain": { + "chainId": 1, + "txHash": "0x400089af7cf7bdf032a84d27c3dab0a0a1326f8ef62f94ee260c70bfcb82b43b" + }, + "status": "COMPLETE" + }, + "txMetaId": "d3bf32a0-39db-11f1-bc94-3727d90ba13b" + }, + "d520aea0-1d64-11f1-9aaf-3b0a0edc0d9a": { + "account": "0xf25bd11c334507fd007d584e2d0b7b2c6543f714", + "batchId": "0xb0b203b7040945c89797d56173077bef", + "estimatedProcessingTimeInSeconds": 0, + "hasApprovalTx": false, + "isStxEnabled": true, + "location": "Main View", + "originalTransactionId": "d520aea0-1d64-11f1-9aaf-3b0a0edc0d9a", + "pricingData": { + "amountSent": "0.00007192785795595", + "amountSentInUsd": "0.04648213615428499916109165", + "quotedGasAmount": "0.0000108533", + "quotedGasInUsd": "0.0070137577102915731", + "quotedReturnInUsd": "0.03029264047455535566029550751654477948764084" + }, + "quote": { + "aggregator": "pancakeswap", + "aggregatorType": "AGG", + "bridgeId": "pancakeswap", + "bridges": ["pancakeswap"], + "destAsset": { + "address": "0x55d398326f99059ff775485246999027b3197955", + "aggregators": [ + "pancakeExtended", + "oneInch", + "liFi", + "socket", + "rubic", + "squid", + "rango", + "sonarwatch", + "sushiSwap" + ], + "assetId": "eip155:56/erc20:0x55d398326f99059ff775485246999027b3197955", + "chainId": 56, + "coingeckoId": "binance-bridged-usdt-bnb-smart-chain", + "decimals": 18, + "iconUrl": "https://static.cx.metamask.io/api/v2/tokenIcons/assets/eip155/56/erc20/0x55d398326f99059ff775485246999027b3197955.png", + "metadata": { + "storage": { + "approval": 2, + "balance": 1 + } + }, + "name": "Tether USD", + "occurrences": 11, + "symbol": "USDT" + }, + "destChainId": 56, + "destTokenAmount": "30292640474553426", + "destWalletAddress": "0xF25bd11C334507Fd007d584E2D0b7b2C6543f714", + "feeData": { + "metabridge": { + "amount": "629368757114", + "asset": { + "address": "0x0000000000000000000000000000000000000000", + "aggregators": [], + "assetId": "eip155:56/slip44:714", + "chainId": 56, + "coingeckoId": "binancecoin", + "decimals": 18, + "iconUrl": "https://static.cx.metamask.io/api/v2/tokenIcons/assets/eip155/56/slip44/714.png", + "metadata": {}, + "name": "Binance Coin", + "occurrences": 100, + "symbol": "BNB" + }, + "baseBpsFee": 87.5 + }, + "txFee": { + "amount": "24462000000000", + "asset": { + "address": "0x0000000000000000000000000000000000000000", + "aggregators": [], + "assetId": "eip155:56/slip44:714", + "chainId": 56, + "coingeckoId": "binancecoin", + "decimals": 18, + "iconUrl": "https://static.cx.metamask.io/api/v2/tokenIcons/assets/eip155/56/slip44/714.png", + "metadata": {}, + "name": "Binance Coin", + "occurrences": 100, + "symbol": "BNB" + }, + "maxFeePerGas": "60000000", + "maxPriorityFeePerGas": "60000000" + } + }, + "gasIncluded": true, + "gasIncluded7702": false, + "gasSponsored": false, + "minDestTokenAmount": "29686787665062357", + "priceData": { + "priceImpact": "0.3424885937771114", + "totalFeeAmountUsd": "0.00040668550347192447", + "totalFromAmountUsd": "0.04647834325397576", + "totalToAmountUsd": "0.030292640474553427" + }, + "protocols": ["pancakeswap"], + "requestId": "0xcac65e6622e79e7350e419ea6d911cfd643ddb055c419a6f7655e302efa9bcf8", + "slippage": 2, + "srcAsset": { + "address": "0x0000000000000000000000000000000000000000", + "aggregators": [], + "assetId": "eip155:56/slip44:714", + "chainId": 56, + "coingeckoId": "binancecoin", + "decimals": 18, + "iconUrl": "https://static.cx.metamask.io/api/v2/tokenIcons/assets/eip155/56/slip44/714.png", + "metadata": {}, + "name": "Binance Coin", + "occurrences": 100, + "symbol": "BNB" + }, + "srcChainId": 56, + "srcTokenAmount": "46836489198836", + "steps": [], + "walletAddress": "0xF25bd11C334507Fd007d584E2D0b7b2C6543f714" + }, + "slippagePercentage": 0, + "startTime": 1773245433481, + "status": { + "srcChain": { + "chainId": 56 + }, + "status": "PENDING" + }, + "txMetaId": "d520aea0-1d64-11f1-9aaf-3b0a0edc0d9a" + }, + "d6ea04f0-182a-11f1-b7d6-03d70bc40886": { + "account": "0x30e8ccad5a980bdf30447f8c2c48e70989d9d294", + "approvalTxId": "d6e4adc0-182a-11f1-b7d6-03d70bc40886", + "batchId": "0x4149e8946f37483c9f4644bb88bf2826", + "estimatedProcessingTimeInSeconds": 0, + "hasApprovalTx": true, + "isStxEnabled": true, + "pricingData": { + "amountSent": "1", + "amountSentInUsd": "0.99665341702749971638556", + "quotedGasAmount": "0.068702782162977381", + "quotedGasInUsd": "0.007145271132511250862150126", + "quotedReturnInUsd": "0.991759770934831082602307054" + }, + "quote": { + "aggregator": "0x", + "aggregatorType": "AGG", + "bridgeId": "0x", + "bridges": ["0x"], + "destAsset": { + "address": "0x0000000000000000000000000000000000000000", + "aggregators": [], + "assetId": "eip155:137/slip44:966", + "chainId": 137, + "coingeckoId": "matic-network", + "decimals": 18, + "iconUrl": "https://static.cx.metamask.io/api/v2/tokenIcons/assets/eip155/137/slip44/966.png", + "metadata": {}, + "name": "Polygon Ecosystem Token", + "occurrences": 100, + "symbol": "POL" + }, + "destChainId": 137, + "destTokenAmount": "9535909028072526949", + "destWalletAddress": "0x30E8ccaD5A980BDF30447f8c2C48e70989D9d294", + "feeData": { + "metabridge": { + "amount": "84175741735823062", + "asset": { + "address": "0x0000000000000000000000000000000000000000", + "aggregators": [], + "assetId": "eip155:137/slip44:966", + "chainId": 137, + "coingeckoId": "matic-network", + "decimals": 18, + "iconUrl": "https://static.cx.metamask.io/api/v2/tokenIcons/assets/eip155/137/slip44/966.png", + "metadata": {}, + "name": "Polygon Ecosystem Token", + "occurrences": 100, + "symbol": "POL" + }, + "baseBpsFee": 87.5, + "quoteBpsFee": 87.5 + } + }, + "gasIncluded7702": false, + "gasSponsored": false, + "minDestTokenAmount": "9345190847511076410", + "priceData": { + "priceImpact": "-0.001615337486912044", + "totalFeeAmountUsd": "0.00875385626181692", + "totalFromAmountUsd": "0.9988272725", + "totalToAmountUsd": "0.9916868593744026" + }, + "protocols": ["0x"], + "requestId": "0x1636e191e86bb64b925ac18baf34245188931b868b5c83c64e4eaffb74b8fb8d", + "slippage": 2, + "srcAsset": { + "address": "0xc2132d05d31c914a87c6611c10748aeb04b58e8f", + "aggregators": [ + "quickswap", + "oneInch", + "liFi", + "socket", + "squid", + "rango", + "sonarwatch", + "sushiSwap" + ], + "assetId": "eip155:137/erc20:0xc2132d05d31c914a87c6611c10748aeb04b58e8f", + "chainId": 137, + "coingeckoId": "polygon-bridged-usdt-polygon", + "decimals": 6, + "iconUrl": "https://static.cx.metamask.io/api/v2/tokenIcons/assets/eip155/137/erc20/0xc2132d05d31c914a87c6611c10748aeb04b58e8f.png", + "metadata": { + "storage": { + "approval": 1, + "balance": 0 + } + }, + "name": "Tether USD", + "occurrences": 8, + "symbol": "USDT" + }, + "srcChainId": 137, + "srcTokenAmount": "1000000", + "steps": [], + "walletAddress": "0x30E8ccaD5A980BDF30447f8c2C48e70989D9d294" + }, + "slippagePercentage": 0, + "startTime": 1772670769722, + "status": { + "srcChain": { + "chainId": 137 + }, + "status": "PENDING" + }, + "txMetaId": "d6ea04f0-182a-11f1-b7d6-03d70bc40886" + }, + "d704b8e0-182a-11f1-b7d6-03d70bc40886": { + "account": "0x30e8ccad5a980bdf30447f8c2c48e70989d9d294", + "approvalTxId": "d700c140-182a-11f1-b7d6-03d70bc40886", + "batchId": "0x42b48b685bf948f18df23c6928551c7c", + "estimatedProcessingTimeInSeconds": 0, + "hasApprovalTx": true, + "isStxEnabled": true, + "pricingData": { + "amountSent": "1", + "amountSentInUsd": "0.99665341702749971638556", + "quotedGasAmount": "0.068702782162977381", + "quotedGasInUsd": "0.007145271132511250862150126", + "quotedReturnInUsd": "0.991759770934831082602307054" + }, + "quote": { + "aggregator": "0x", + "aggregatorType": "AGG", + "bridgeId": "0x", + "bridges": ["0x"], + "destAsset": { + "address": "0x0000000000000000000000000000000000000000", + "aggregators": [], + "assetId": "eip155:137/slip44:966", + "chainId": 137, + "coingeckoId": "matic-network", + "decimals": 18, + "iconUrl": "https://static.cx.metamask.io/api/v2/tokenIcons/assets/eip155/137/slip44/966.png", + "metadata": {}, + "name": "Polygon Ecosystem Token", + "occurrences": 100, + "symbol": "POL" + }, + "destChainId": 137, + "destTokenAmount": "9535909028072526949", + "destWalletAddress": "0x30E8ccaD5A980BDF30447f8c2C48e70989D9d294", + "feeData": { + "metabridge": { + "amount": "84175741735823062", + "asset": { + "address": "0x0000000000000000000000000000000000000000", + "aggregators": [], + "assetId": "eip155:137/slip44:966", + "chainId": 137, + "coingeckoId": "matic-network", + "decimals": 18, + "iconUrl": "https://static.cx.metamask.io/api/v2/tokenIcons/assets/eip155/137/slip44/966.png", + "metadata": {}, + "name": "Polygon Ecosystem Token", + "occurrences": 100, + "symbol": "POL" + }, + "baseBpsFee": 87.5, + "quoteBpsFee": 87.5 + } + }, + "gasIncluded7702": false, + "gasSponsored": false, + "minDestTokenAmount": "9345190847511076410", + "priceData": { + "priceImpact": "-0.001615337486912044", + "totalFeeAmountUsd": "0.00875385626181692", + "totalFromAmountUsd": "0.9988272725", + "totalToAmountUsd": "0.9916868593744026" + }, + "protocols": ["0x"], + "requestId": "0x1636e191e86bb64b925ac18baf34245188931b868b5c83c64e4eaffb74b8fb8d", + "slippage": 2, + "srcAsset": { + "address": "0xc2132d05d31c914a87c6611c10748aeb04b58e8f", + "aggregators": [ + "quickswap", + "oneInch", + "liFi", + "socket", + "squid", + "rango", + "sonarwatch", + "sushiSwap" + ], + "assetId": "eip155:137/erc20:0xc2132d05d31c914a87c6611c10748aeb04b58e8f", + "chainId": 137, + "coingeckoId": "polygon-bridged-usdt-polygon", + "decimals": 6, + "iconUrl": "https://static.cx.metamask.io/api/v2/tokenIcons/assets/eip155/137/erc20/0xc2132d05d31c914a87c6611c10748aeb04b58e8f.png", + "metadata": { + "storage": { + "approval": 1, + "balance": 0 + } + }, + "name": "Tether USD", + "occurrences": 8, + "symbol": "USDT" + }, + "srcChainId": 137, + "srcTokenAmount": "1000000", + "steps": [], + "walletAddress": "0x30E8ccaD5A980BDF30447f8c2C48e70989D9d294" + }, + "slippagePercentage": 0, + "startTime": 1772670769947, + "status": { + "srcChain": { + "chainId": 137 + }, + "status": "FAILED" + }, + "txMetaId": "d704b8e0-182a-11f1-b7d6-03d70bc40886" + }, + "d79f3950-287f-11f1-91c9-9d8a4fbc2cec": { + "account": "0xf25bd11c334507fd007d584e2d0b7b2c6543f714", + "batchId": "0x9e08fced9ac1433f93407234964cdb5c", + "estimatedProcessingTimeInSeconds": 0, + "hasApprovalTx": false, + "isStxEnabled": true, + "location": "Main View", + "originalTransactionId": "d79f3950-287f-11f1-91c9-9d8a4fbc2cec", + "pricingData": { + "amountSent": "0.001950721614518098", + "amountSentInUsd": "1.260681767800322765067867866", + "quotedGasAmount": "0.0000125086", + "quotedGasInUsd": "0.0080838618095707862", + "quotedReturnInUsd": "1.23174350797502501034934689371406044991645696" + }, + "quote": { + "aggregator": "1inch", + "aggregatorType": "AGG", + "bridgeId": "1inch", + "bridges": ["1inch"], + "destAsset": { + "address": "0x55d398326f99059ff775485246999027b3197955", + "aggregators": [ + "pancakeExtended", + "oneInch", + "liFi", + "trustWallet", + "socket", + "rubic", + "squid", + "rango", + "sonarwatch", + "sushiSwap" + ], + "assetId": "eip155:56/erc20:0x55d398326f99059ff775485246999027b3197955", + "chainId": 56, + "coingeckoId": "binance-bridged-usdt-bnb-smart-chain", + "decimals": 18, + "iconUrl": "https://static.cx.metamask.io/api/v2/tokenIcons/assets/eip155/56/erc20/0x55d398326f99059ff775485246999027b3197955.png", + "metadata": { + "storage": { + "approval": 2, + "balance": 1 + } + }, + "name": "Tether USD", + "occurrences": 11, + "symbol": "USDT" + }, + "destChainId": 56, + "destTokenAmount": "1231436478038748672", + "destWalletAddress": "0xF25bd11C334507Fd007d584E2D0b7b2C6543f714", + "feeData": { + "metabridge": { + "amount": "17068814127033", + "asset": { + "address": "0x0000000000000000000000000000000000000000", + "aggregators": [], + "assetId": "eip155:56/slip44:714", + "chainId": 56, + "coingeckoId": "binancecoin", + "decimals": 18, + "iconUrl": "https://static.cx.metamask.io/api/v2/tokenIcons/assets/eip155/56/slip44/714.png", + "metadata": {}, + "name": "Binance Coin", + "occurrences": 100, + "symbol": "BNB" + }, + "baseBpsFee": 87.5, + "quoteBpsFee": 87.5 + }, + "txFee": { + "amount": "28799010000000", + "asset": { + "address": "0x0000000000000000000000000000000000000000", + "aggregators": [], + "assetId": "eip155:56/slip44:714", + "chainId": 56, + "coingeckoId": "binancecoin", + "decimals": 18, + "iconUrl": "https://static.cx.metamask.io/api/v2/tokenIcons/assets/eip155/56/slip44/714.png", + "metadata": {}, + "name": "Binance Coin", + "occurrences": 100, + "symbol": "BNB" + }, + "maxFeePerGas": "60000000", + "maxPriorityFeePerGas": "60000000" + } + }, + "gasIncluded": true, + "gasIncluded7702": false, + "gasSponsored": false, + "minDestTokenAmount": "1206807748477973698", + "priceData": { + "priceImpact": "0.008521360403758543", + "totalFeeAmountUsd": "0.011027136678628398", + "totalFromAmountUsd": "1.2602441918432719", + "totalToAmountUsd": "1.231058427039991" + }, + "protocols": ["1inch"], + "requestId": "0x3982a35fd2513cfc64bd1f517712b9991f26765abd7c2ddf12c5b91ae90026fc", + "slippage": 2, + "srcAsset": { + "address": "0x0000000000000000000000000000000000000000", + "aggregators": [], + "assetId": "eip155:56/slip44:714", + "chainId": 56, + "coingeckoId": "binancecoin", + "decimals": 18, + "iconUrl": "https://static.cx.metamask.io/api/v2/tokenIcons/assets/eip155/56/slip44/714.png", + "metadata": {}, + "name": "Binance Coin", + "occurrences": 100, + "symbol": "BNB" + }, + "srcChainId": 56, + "srcTokenAmount": "1904853790391065", + "steps": [], + "walletAddress": "0xF25bd11C334507Fd007d584E2D0b7b2C6543f714" + }, + "slippagePercentage": 0, + "startTime": 1774466496721, + "status": { + "srcChain": { + "chainId": 56, + "txHash": "0xafe5004e9cb827180b1deb267fe07121a509be8bbef547216e14dd5d3d2d912e" + }, + "status": "FAILED" + }, + "txMetaId": "d79f3950-287f-11f1-91c9-9d8a4fbc2cec" + }, + "d8ca3580-2863-11f1-9b9d-5fbe36423c6b": { + "account": "0xf25bd11c334507fd007d584e2d0b7b2c6543f714", + "batchId": "0x284968f6acfa4ec6802ee3f77759b0cc", + "estimatedProcessingTimeInSeconds": 0, + "hasApprovalTx": false, + "isStxEnabled": true, + "location": "Main View", + "originalTransactionId": "d8ca3580-2863-11f1-9b9d-5fbe36423c6b", + "pricingData": { + "amountSent": "0.003122743098328475", + "amountSentInUsd": "2.0159438707343369827509932", + "quotedGasAmount": "0.0000097987", + "quotedGasInUsd": "0.0063257298420539824", + "quotedReturnInUsd": "1.9854186877230404566985228210923473788205336" + }, + "quote": { + "aggregator": "uniswap", + "aggregatorType": "AGG", + "bridgeId": "uniswap", + "bridges": ["uniswap"], + "destAsset": { + "address": "0x55d398326f99059ff775485246999027b3197955", + "aggregators": [ + "pancakeExtended", + "oneInch", + "liFi", + "trustWallet", + "socket", + "squid", + "rango", + "sonarwatch", + "sushiSwap" + ], + "assetId": "eip155:56/erc20:0x55d398326f99059ff775485246999027b3197955", + "chainId": 56, + "coingeckoId": "binance-bridged-usdt-bnb-smart-chain", + "decimals": 18, + "iconUrl": "https://static.cx.metamask.io/api/v2/tokenIcons/assets/eip155/56/erc20/0x55d398326f99059ff775485246999027b3197955.png", + "metadata": { + "storage": { + "approval": 2, + "balance": 1 + } + }, + "name": "Tether USD", + "occurrences": 9, + "symbol": "USDT" + }, + "destChainId": 56, + "destTokenAmount": "1985905234506583193", + "destWalletAddress": "0xF25bd11C334507Fd007d584E2D0b7b2C6543f714", + "feeData": { + "metabridge": { + "amount": "27324002110374", + "asset": { + "address": "0x0000000000000000000000000000000000000000", + "aggregators": [], + "assetId": "eip155:56/slip44:714", + "chainId": 56, + "coingeckoId": "binancecoin", + "decimals": 18, + "iconUrl": "https://static.cx.metamask.io/api/v2/tokenIcons/assets/eip155/56/slip44/714.png", + "metadata": {}, + "name": "Binance Coin", + "occurrences": 100, + "symbol": "BNB" + }, + "baseBpsFee": 87.5, + "quoteBpsFee": 87.5 + }, + "txFee": { + "amount": "19880730331345", + "asset": { + "address": "0x0000000000000000000000000000000000000000", + "aggregators": [], + "assetId": "eip155:56/slip44:714", + "chainId": 56, + "coingeckoId": "binancecoin", + "decimals": 18, + "iconUrl": "https://static.cx.metamask.io/api/v2/tokenIcons/assets/eip155/56/slip44/714.png", + "metadata": {}, + "name": "Binance Coin", + "occurrences": 100, + "symbol": "BNB" + }, + "maxFeePerGas": "60000001", + "maxPriorityFeePerGas": "60000001" + } + }, + "gasIncluded": true, + "gasIncluded7702": false, + "gasSponsored": false, + "minDestTokenAmount": "1946187129816451529", + "priceData": { + "priceImpact": "0.008941788490137959", + "totalFeeAmountUsd": "0.01764146872254187", + "totalFromAmountUsd": "2.0161678540047965", + "totalToAmountUsd": "1.985418687724129" + }, + "protocols": ["uniswap"], + "requestId": "0x90c9cf5daf5519a17bed2bf04c0c98bb228c76f1d8de3320af8cf4eabfe1720d", + "slippage": 2, + "srcAsset": { + "address": "0x0000000000000000000000000000000000000000", + "aggregators": [], + "assetId": "eip155:56/slip44:714", + "chainId": 56, + "coingeckoId": "binancecoin", + "decimals": 18, + "iconUrl": "https://static.cx.metamask.io/api/v2/tokenIcons/assets/eip155/56/slip44/714.png", + "metadata": {}, + "name": "Binance Coin", + "occurrences": 100, + "symbol": "BNB" + }, + "srcChainId": 56, + "srcTokenAmount": "3075538365886756", + "steps": [], + "walletAddress": "0xF25bd11C334507Fd007d584E2D0b7b2C6543f714" + }, + "slippagePercentage": 0, + "startTime": 1774454471973, + "status": { + "srcChain": { + "chainId": 56, + "txHash": "0x7a70773dc941559868672c196ba1ec4ac1708b01e58128ec1efc38158339036d" + }, + "status": "FAILED" + }, + "txMetaId": "d8ca3580-2863-11f1-9b9d-5fbe36423c6b" + }, + "de3cf410-2874-11f1-95af-e7b839e2ab11": { + "account": "0xf25bd11c334507fd007d584e2d0b7b2c6543f714", + "batchId": "0x2cb2d57550b34787803c29c1938a97d1", + "estimatedProcessingTimeInSeconds": 0, + "hasApprovalTx": false, + "isStxEnabled": false, + "location": "Main View", + "originalTransactionId": "de3cf410-2874-11f1-95af-e7b839e2ab11", + "pricingData": { + "amountSent": "0.002889356511414607", + "amountSentInUsd": "1.863551878239182632684286844", + "quotedGasAmount": "0.0000098024", + "quotedGasInUsd": "0.0063222661720994208", + "quotedReturnInUsd": "1.83360803873434604116295190643233560558160432" + }, + "quote": { + "aggregator": "uniswap", + "aggregatorType": "AGG", + "bridgeId": "uniswap", + "bridges": ["uniswap"], + "destAsset": { + "address": "0x55d398326f99059ff775485246999027b3197955", + "aggregators": [ + "pancakeExtended", + "oneInch", + "liFi", + "trustWallet", + "socket", + "rubic", + "squid", + "rango", + "sonarwatch", + "sushiSwap" + ], + "assetId": "eip155:56/erc20:0x55d398326f99059ff775485246999027b3197955", + "chainId": 56, + "coingeckoId": "binance-bridged-usdt-bnb-smart-chain", + "decimals": 18, + "iconUrl": "https://static.cx.metamask.io/api/v2/tokenIcons/assets/eip155/56/erc20/0x55d398326f99059ff775485246999027b3197955.png", + "metadata": { + "storage": { + "approval": 2, + "balance": 1 + } + }, + "name": "Tether USD", + "occurrences": 11, + "symbol": "USDT" + }, + "destChainId": 56, + "destTokenAmount": "1834162835503410451", + "destWalletAddress": "0xF25bd11C334507Fd007d584E2D0b7b2C6543f714", + "feeData": { + "metabridge": { + "amount": "25281869474877", + "asset": { + "address": "0x0000000000000000000000000000000000000000", + "aggregators": [], + "assetId": "eip155:56/slip44:714", + "chainId": 56, + "coingeckoId": "binancecoin", + "decimals": 18, + "iconUrl": "https://static.cx.metamask.io/api/v2/tokenIcons/assets/eip155/56/slip44/714.png", + "metadata": {}, + "name": "Binance Coin", + "occurrences": 100, + "symbol": "BNB" + }, + "baseBpsFee": 87.5, + "quoteBpsFee": 87.5 + }, + "txFee": { + "amount": "22029480000000", + "asset": { + "address": "0x0000000000000000000000000000000000000000", + "aggregators": [], + "assetId": "eip155:56/slip44:714", + "chainId": 56, + "coingeckoId": "binancecoin", + "decimals": 18, + "iconUrl": "https://static.cx.metamask.io/api/v2/tokenIcons/assets/eip155/56/slip44/714.png", + "metadata": {}, + "name": "Binance Coin", + "occurrences": 100, + "symbol": "BNB" + }, + "maxFeePerGas": "60000000", + "maxPriorityFeePerGas": "60000000" + } + }, + "gasIncluded": true, + "gasIncluded7702": false, + "gasSponsored": false, + "minDestTokenAmount": "1797479578793342241", + "priceData": { + "priceImpact": "0.008859210670953993", + "totalFeeAmountUsd": "0.016312620641274887", + "totalFromAmountUsd": "1.8642995018600468", + "totalToAmountUsd": "1.8336951239803572" + }, + "protocols": ["uniswap"], + "requestId": "0x30104f5e171909842f2f632845c62a6349688e36511ace326af33326552f0fd8", + "slippage": 2, + "srcAsset": { + "address": "0x0000000000000000000000000000000000000000", + "aggregators": [], + "assetId": "eip155:56/slip44:714", + "chainId": 56, + "coingeckoId": "binancecoin", + "decimals": 18, + "iconUrl": "https://static.cx.metamask.io/api/v2/tokenIcons/assets/eip155/56/slip44/714.png", + "metadata": {}, + "name": "Binance Coin", + "occurrences": 100, + "symbol": "BNB" + }, + "srcChainId": 56, + "srcTokenAmount": "2842045161939730", + "steps": [], + "walletAddress": "0xF25bd11C334507Fd007d584E2D0b7b2C6543f714" + }, + "slippagePercentage": 0, + "startTime": 1774461783250, + "status": { + "srcChain": { + "chainId": 56, + "txHash": "0x34ec65c3f1b7de51ffc9444b1b631b4a6d049a1defe61d9c1575df3e5b4b80d2" + }, + "status": "FAILED" + }, + "txMetaId": "de3cf410-2874-11f1-95af-e7b839e2ab11" + }, + "df0b9d70-286e-11f1-9e6e-5fbe36423c6b": { + "account": "0xf25bd11c334507fd007d584e2d0b7b2c6543f714", + "batchId": "0x72a665306d794e0f891fe8fc136f2b26", + "estimatedProcessingTimeInSeconds": 0, + "hasApprovalTx": false, + "isStxEnabled": false, + "location": "Main View", + "originalTransactionId": "df0b9d70-286e-11f1-9e6e-5fbe36423c6b", + "pricingData": { + "amountSent": "0.003001550052279377", + "amountSentInUsd": "1.940686485716041308024353218", + "quotedGasAmount": "0.0000097508", + "quotedGasInUsd": "0.0063044911646732872", + "quotedReturnInUsd": "1.9080651113059670006769649941137150512731291" + }, + "quote": { + "aggregator": "uniswap", + "aggregatorType": "AGG", + "bridgeId": "uniswap", + "bridges": ["uniswap"], + "destAsset": { + "address": "0x55d398326f99059ff775485246999027b3197955", + "aggregators": [ + "pancakeExtended", + "oneInch", + "liFi", + "trustWallet", + "socket", + "squid", + "rango", + "sonarwatch", + "sushiSwap" + ], + "assetId": "eip155:56/erc20:0x55d398326f99059ff775485246999027b3197955", + "chainId": 56, + "coingeckoId": "binance-bridged-usdt-bnb-smart-chain", + "decimals": 18, + "iconUrl": "https://static.cx.metamask.io/api/v2/tokenIcons/assets/eip155/56/erc20/0x55d398326f99059ff775485246999027b3197955.png", + "metadata": { + "storage": { + "approval": 2, + "balance": 1 + } + }, + "name": "Tether USD", + "occurrences": 9, + "symbol": "USDT" + }, + "destChainId": 56, + "destTokenAmount": "1908430110972671985", + "destWalletAddress": "0xF25bd11C334507Fd007d584E2D0b7b2C6543f714", + "feeData": { + "metabridge": { + "amount": "26263562957444", + "asset": { + "address": "0x0000000000000000000000000000000000000000", + "aggregators": [], + "assetId": "eip155:56/slip44:714", + "chainId": 56, + "coingeckoId": "binancecoin", + "decimals": 18, + "iconUrl": "https://static.cx.metamask.io/api/v2/tokenIcons/assets/eip155/56/slip44/714.png", + "metadata": {}, + "name": "Binance Coin", + "occurrences": 100, + "symbol": "BNB" + }, + "baseBpsFee": 87.5, + "quoteBpsFee": 87.5 + }, + "txFee": { + "amount": "21934080000000", + "asset": { + "address": "0x0000000000000000000000000000000000000000", + "aggregators": [], + "assetId": "eip155:56/slip44:714", + "chainId": 56, + "coingeckoId": "binancecoin", + "decimals": 18, + "iconUrl": "https://static.cx.metamask.io/api/v2/tokenIcons/assets/eip155/56/slip44/714.png", + "metadata": {}, + "name": "Binance Coin", + "occurrences": 100, + "symbol": "BNB" + }, + "maxFeePerGas": "60000000", + "maxPriorityFeePerGas": "60000000" + } + }, + "gasIncluded": true, + "gasIncluded7702": false, + "gasSponsored": false, + "minDestTokenAmount": "1870261508753218545", + "priceData": { + "priceImpact": "0.009915122623429059", + "totalFeeAmountUsd": "0.016988585699022653", + "totalFromAmountUsd": "1.941552651316915", + "totalToAmountUsd": "1.9082545354024625" + }, + "protocols": ["uniswap"], + "requestId": "0x5e680b6e820f996b9ba468955c32ed533cc04dbb4159aed45f2f065e53894611", + "slippage": 2, + "srcAsset": { + "address": "0x0000000000000000000000000000000000000000", + "aggregators": [], + "assetId": "eip155:56/slip44:714", + "chainId": 56, + "coingeckoId": "binancecoin", + "decimals": 18, + "iconUrl": "https://static.cx.metamask.io/api/v2/tokenIcons/assets/eip155/56/slip44/714.png", + "metadata": {}, + "name": "Binance Coin", + "occurrences": 100, + "symbol": "BNB" + }, + "srcChainId": 56, + "srcTokenAmount": "2953352409321933", + "steps": [], + "walletAddress": "0xF25bd11C334507Fd007d584E2D0b7b2C6543f714" + }, + "slippagePercentage": 0, + "startTime": 1774459207614, + "status": { + "srcChain": { + "chainId": 56, + "txHash": "0x9da386baa9c339da273e9e3213ddbc2936051a35cbde69608b11eedd2e74894a" + }, + "status": "FAILED" + }, + "txMetaId": "df0b9d70-286e-11f1-9e6e-5fbe36423c6b" + }, + "dfd490a0-11a2-11f1-8267-5506d3c59a0d": { + "account": "0x30e8ccad5a980bdf30447f8c2c48e70989d9d294", + "batchId": "0xa03fb0377a5c4c639e8b9d5010c9388e", + "estimatedProcessingTimeInSeconds": 0, + "hasApprovalTx": false, + "isStxEnabled": true, + "pricingData": { + "amountSent": "3", + "amountSentInUsd": "2.9933293413", + "quotedGasAmount": "0.060310699720813972", + "quotedGasInUsd": "0.006603780376630246678112", + "quotedReturnInUsd": "2.96131913385171809464216" + }, + "quote": { + "aggregator": "0x", + "aggregatorType": "AGG", + "bridgeId": "0x", + "bridges": ["0x"], + "destAsset": { + "address": "0x0000000000000000000000000000000000000000", + "aggregators": [], + "assetId": "eip155:137/slip44:966", + "chainId": 137, + "coingeckoId": "matic-network", + "decimals": 18, + "iconUrl": "https://static.cx.metamask.io/api/v2/tokenIcons/assets/eip155/137/slip44/966.png", + "metadata": {}, + "name": "Polygon Ecosystem Token", + "occurrences": 100, + "symbol": "POL" + }, + "destChainId": 137, + "destTokenAmount": "27044998299953588210", + "destWalletAddress": "0x30E8ccaD5A980BDF30447f8c2C48e70989D9d294", + "feeData": { + "metabridge": { + "amount": "238732645775126251", + "asset": { + "address": "0x0000000000000000000000000000000000000000", + "aggregators": [], + "assetId": "eip155:137/slip44:966", + "chainId": 137, + "coingeckoId": "matic-network", + "decimals": 18, + "iconUrl": "https://static.cx.metamask.io/api/v2/tokenIcons/assets/eip155/137/slip44/966.png", + "metadata": {}, + "name": "Polygon Ecosystem Token", + "occurrences": 100, + "symbol": "POL" + }, + "baseBpsFee": 87.5, + "quoteBpsFee": 87.5 + } + }, + "gasIncluded7702": false, + "gasSponsored": false, + "minDestTokenAmount": "26504098333954516445", + "priceData": { + "priceImpact": "0.00036431891328656283", + "totalFeeAmountUsd": "0.026146476830583378", + "totalFromAmountUsd": "2.9892578238", + "totalToAmountUsd": "2.9620223038075166" + }, + "protocols": ["0x"], + "requestId": "0xb66df51e96d8f7eb904c8eab728d61a8557c6353b2e0c1cf5dcf8f1cf4a61a64", + "slippage": 2, + "srcAsset": { + "address": "0xc2132d05d31c914a87c6611c10748aeb04b58e8f", + "aggregators": [ + "quickswap", + "oneInch", + "liFi", + "socket", + "squid", + "rango", + "sonarwatch", + "sushiSwap" + ], + "assetId": "eip155:137/erc20:0xc2132d05d31c914a87c6611c10748aeb04b58e8f", + "chainId": 137, + "coingeckoId": "polygon-bridged-usdt-polygon", + "decimals": 6, + "iconUrl": "https://static.cx.metamask.io/api/v2/tokenIcons/assets/eip155/137/erc20/0xc2132d05d31c914a87c6611c10748aeb04b58e8f.png", + "metadata": { + "storage": { + "approval": 1, + "balance": 0 + } + }, + "name": "Tether USD", + "occurrences": 11, + "symbol": "USDT" + }, + "srcChainId": 137, + "srcTokenAmount": "3000000", + "steps": [], + "walletAddress": "0x30E8ccaD5A980BDF30447f8c2C48e70989D9d294" + }, + "slippagePercentage": 0, + "startTime": 1771952666244, + "status": { + "srcChain": { + "chainId": 137 + }, + "status": "PENDING" + }, + "txMetaId": "dfd490a0-11a2-11f1-8267-5506d3c59a0d" + }, + "e14a8c80-17fd-11f1-b7d6-03d70bc40886": { + "account": "0x30e8ccad5a980bdf30447f8c2c48e70989d9d294", + "batchId": "0x94a1487defff4c45ac38febcd4e58644", + "estimatedProcessingTimeInSeconds": 0, + "hasApprovalTx": false, + "isStxEnabled": true, + "pricingData": { + "amountSent": "0.00172687906463482", + "amountSentInUsd": "3.7465969577989113182733903", + "quotedGasAmount": "0.000564283160138584", + "quotedGasInUsd": "1.22425571912266387892304036", + "quotedReturnInUsd": "2.2152523280644848988141205824935" + }, + "quote": { + "aggregator": "uniswap", + "aggregatorType": "AGG", + "bridgeId": "uniswap", + "bridges": ["uniswap"], + "destAsset": { + "address": "0xaca92e438df0b2401ff60da7e4337b687a2435da", + "aggregators": ["metamask", "liFi", "socket", "rango"], + "assetId": "eip155:1/erc20:0xaca92e438df0b2401ff60da7e4337b687a2435da", + "chainId": 1, + "decimals": 6, + "iconUrl": "https://static.cx.metamask.io/api/v2/tokenIcons/assets/eip155/1/erc20/0xaca92e438df0b2401ff60da7e4337b687a2435da.png", + "metadata": {}, + "name": "MetaMask USD", + "occurrences": 4, + "symbol": "MUSD" + }, + "destChainId": 1, + "destTokenAmount": "2206180", + "destWalletAddress": "0x30E8ccaD5A980BDF30447f8c2C48e70989D9d294", + "feeData": { + "metabridge": { + "amount": "0", + "asset": { + "address": "0x0000000000000000000000000000000000000000", + "aggregators": [], + "assetId": "eip155:1/slip44:60", + "chainId": 1, + "coingeckoId": "ethereum", + "decimals": 18, + "iconUrl": "https://static.cx.metamask.io/api/v2/tokenIcons/assets/eip155/1/slip44/60.png", + "metadata": {}, + "name": "Ether", + "occurrences": 100, + "symbol": "ETH" + }, + "baseBpsFee": 87.5, + "quoteBpsFee": 0 + }, + "txFee": { + "amount": "712225278444266", + "asset": { + "address": "0x0000000000000000000000000000000000000000", + "aggregators": [], + "assetId": "eip155:1/slip44:60", + "chainId": 1, + "coingeckoId": "ethereum", + "decimals": 18, + "iconUrl": "https://static.cx.metamask.io/api/v2/tokenIcons/assets/eip155/1/slip44/60.png", + "metadata": {}, + "name": "Ether", + "occurrences": 100, + "symbol": "ETH" + }, + "maxFeePerGas": "2509212904", + "maxPriorityFeePerGas": "2100000001" + } + }, + "gasIncluded": true, + "gasIncluded7702": false, + "minDestTokenAmount": "2162056", + "priceData": { + "priceImpact": "-0.006149402871557486", + "totalFeeAmountUsd": "0", + "totalFromAmountUsd": "3.735567523827396", + "totalToAmountUsd": "2.2083861799999998" + }, + "protocols": ["uniswap"], + "requestId": "0x0ea7de8192f12f5a16173a330c3780df50828e62886715e6b24e4af630677201", + "srcAsset": { + "address": "0x0000000000000000000000000000000000000000", + "aggregators": [], + "assetId": "eip155:1/slip44:60", + "chainId": 1, + "coingeckoId": "ethereum", + "decimals": 18, + "iconUrl": "https://static.cx.metamask.io/api/v2/tokenIcons/assets/eip155/1/slip44/60.png", + "metadata": {}, + "name": "Ether", + "occurrences": 100, + "symbol": "ETH" + }, + "srcChainId": 1, + "srcTokenAmount": "1014653786190554", + "steps": [], + "walletAddress": "0x30E8ccaD5A980BDF30447f8c2C48e70989D9d294" + }, + "slippagePercentage": 0, + "startTime": 1772651459906, + "status": { + "srcChain": { + "chainId": 1 + }, + "status": "PENDING" + }, + "txMetaId": "e14a8c80-17fd-11f1-b7d6-03d70bc40886" + }, + "e63e71a0-2876-11f1-8069-cdbe50267c7d": { + "account": "0xf25bd11c334507fd007d584e2d0b7b2c6543f714", + "batchId": "0xc9f8f72ae1ad458583afee65b5c787de", + "estimatedProcessingTimeInSeconds": 0, + "hasApprovalTx": true, + "isStxEnabled": false, + "location": "Main View", + "originalTransactionId": "e63e71a0-2876-11f1-8069-cdbe50267c7d", + "pricingData": { + "amountSent": "1.832278383661792682", + "amountSentInUsd": "1.83200720646091554110514336308106604979611296", + "quotedGasAmount": "0.0000120878", + "quotedGasInUsd": "0.0077949645910742768", + "quotedReturnInUsd": "1.786815960551201052904761648" + }, + "quote": { + "aggregator": "uniswap", + "aggregatorType": "AGG", + "bridgeId": "uniswap", + "bridges": ["uniswap"], + "destAsset": { + "address": "0x0000000000000000000000000000000000000000", + "aggregators": [], + "assetId": "eip155:56/slip44:714", + "chainId": 56, + "coingeckoId": "binancecoin", + "decimals": 18, + "iconUrl": "https://static.cx.metamask.io/api/v2/tokenIcons/assets/eip155/56/slip44/714.png", + "metadata": {}, + "name": "Binance Coin", + "occurrences": 100, + "symbol": "BNB" + }, + "destChainId": 56, + "destTokenAmount": "2770849529282358", + "destWalletAddress": "0xF25bd11C334507Fd007d584E2D0b7b2C6543f714", + "feeData": { + "metabridge": { + "amount": "24832961040323", + "asset": { + "address": "0x0000000000000000000000000000000000000000", + "aggregators": [], + "assetId": "eip155:56/slip44:714", + "chainId": 56, + "coingeckoId": "binancecoin", + "decimals": 18, + "iconUrl": "https://static.cx.metamask.io/api/v2/tokenIcons/assets/eip155/56/slip44/714.png", + "metadata": {}, + "name": "Binance Coin", + "occurrences": 100, + "symbol": "BNB" + }, + "baseBpsFee": 87.5, + "quoteBpsFee": 87.5 + }, + "txFee": { + "amount": "42370200000000", + "asset": { + "address": "0x0000000000000000000000000000000000000000", + "aggregators": [], + "assetId": "eip155:56/slip44:714", + "chainId": 56, + "coingeckoId": "binancecoin", + "decimals": 18, + "iconUrl": "https://static.cx.metamask.io/api/v2/tokenIcons/assets/eip155/56/slip44/714.png", + "metadata": {}, + "name": "Binance Coin", + "occurrences": 100, + "symbol": "BNB" + }, + "maxFeePerGas": "60000000", + "maxPriorityFeePerGas": "60000000" + } + }, + "gasIncluded": true, + "gasIncluded7702": true, + "gasSponsored": false, + "minDestTokenAmount": "2715432538696710", + "priceData": { + "priceImpact": "0.0006592749507166865", + "totalFeeAmountUsd": "0.016019494837501966", + "totalFromAmountUsd": "1.8320072064610107", + "totalToAmountUsd": "1.7874473228447565" + }, + "protocols": ["uniswap"], + "requestId": "0xc26b129a048b2a82cfa9a6a759be9a5b01607067937fe1165a9763ed332590b9", + "slippage": 2, + "srcAsset": { + "address": "0x55d398326f99059ff775485246999027b3197955", + "aggregators": [ + "pancakeExtended", + "oneInch", + "liFi", + "trustWallet", + "socket", + "rubic", + "squid", + "rango", + "sonarwatch", + "sushiSwap" + ], + "assetId": "eip155:56/erc20:0x55d398326f99059ff775485246999027b3197955", + "chainId": 56, + "coingeckoId": "binance-bridged-usdt-bnb-smart-chain", + "decimals": 18, + "iconUrl": "https://static.cx.metamask.io/api/v2/tokenIcons/assets/eip155/56/erc20/0x55d398326f99059ff775485246999027b3197955.png", + "metadata": { + "storage": { + "approval": 2, + "balance": 1 + } + }, + "name": "Tether USD", + "occurrences": 11, + "symbol": "USDT" + }, + "srcChainId": 56, + "srcTokenAmount": "1832278383661792682", + "steps": [], + "walletAddress": "0xF25bd11C334507Fd007d584E2D0b7b2C6543f714" + }, + "slippagePercentage": 0, + "startTime": 1774462655791, + "status": { + "srcChain": { + "chainId": 56, + "txHash": "0x475cf33f7732388be3cc3019e5c4006e90f1f5fe0217fdeefab9eb4572985891" + }, + "status": "PENDING" + }, + "txMetaId": "e63e71a0-2876-11f1-8069-cdbe50267c7d" + }, + "e6c1d2b0-27d7-11f1-bdeb-7be08aed0cd0": { + "account": "0xf25bd11c334507fd007d584e2d0b7b2c6543f714", + "batchId": "0x0e54d3a1ca7343eb8d8e678fd43e428b", + "estimatedProcessingTimeInSeconds": 0, + "hasApprovalTx": true, + "isStxEnabled": false, + "location": "Main View", + "originalTransactionId": "e6c1d2b0-27d7-11f1-bdeb-7be08aed0cd0", + "pricingData": { + "amountSent": "2.039361017564255159", + "amountSentInUsd": "2.03863296568069230291274410420695021058666176", + "quotedGasAmount": "0.00001351625", + "quotedGasInUsd": "0.00859203789044392", + "quotedReturnInUsd": "1.983700309244898781181587904" + }, + "quote": { + "aggregator": "0x", + "aggregatorType": "AGG", + "bridgeId": "0x", + "bridges": ["0x"], + "destAsset": { + "address": "0x0000000000000000000000000000000000000000", + "aggregators": [], + "assetId": "eip155:56/slip44:714", + "chainId": 56, + "coingeckoId": "binancecoin", + "decimals": 18, + "iconUrl": "https://static.cx.metamask.io/api/v2/tokenIcons/assets/eip155/56/slip44/714.png", + "metadata": {}, + "name": "Binance Coin", + "occurrences": 100, + "symbol": "BNB" + }, + "destChainId": 56, + "destTokenAmount": "3120585552195007", + "destWalletAddress": "0xF25bd11C334507Fd007d584E2D0b7b2C6543f714", + "feeData": { + "metabridge": { + "amount": "27959275431733", + "asset": { + "address": "0x0000000000000000000000000000000000000000", + "aggregators": [], + "assetId": "eip155:56/slip44:714", + "chainId": 56, + "coingeckoId": "binancecoin", + "decimals": 18, + "iconUrl": "https://static.cx.metamask.io/api/v2/tokenIcons/assets/eip155/56/slip44/714.png", + "metadata": {}, + "name": "Binance Coin", + "occurrences": 100, + "symbol": "BNB" + }, + "baseBpsFee": 87.5, + "quoteBpsFee": 87.5 + }, + "txFee": { + "amount": "46800936000000", + "asset": { + "address": "0x0000000000000000000000000000000000000000", + "aggregators": [], + "assetId": "eip155:56/slip44:714", + "chainId": 56, + "coingeckoId": "binancecoin", + "decimals": 18, + "iconUrl": "https://static.cx.metamask.io/api/v2/tokenIcons/assets/eip155/56/slip44/714.png", + "metadata": {}, + "name": "Binance Coin", + "occurrences": 100, + "symbol": "BNB" + }, + "maxFeePerGas": "60000000", + "maxPriorityFeePerGas": "60000000" + } + }, + "gasIncluded": true, + "gasIncluded7702": true, + "gasSponsored": false, + "minDestTokenAmount": "3058173841151106", + "priceData": { + "priceImpact": "0.000678499140981344", + "totalFeeAmountUsd": "0.017825436051501373", + "totalFromAmountUsd": "2.038575863572487", + "totalToAmountUsd": "1.9895293188019267" + }, + "protocols": ["0x"], + "requestId": "0xa58f8717a12398ed2d5f6e92fd6109f8da9c4a028ffdb81f42ddc667706d5a18", + "slippage": 2, + "srcAsset": { + "address": "0x55d398326f99059ff775485246999027b3197955", + "aggregators": [ + "pancakeExtended", + "oneInch", + "liFi", + "trustWallet", + "socket", + "squid", + "rango", + "sonarwatch", + "sushiSwap" + ], + "assetId": "eip155:56/erc20:0x55d398326f99059ff775485246999027b3197955", + "chainId": 56, + "coingeckoId": "binance-bridged-usdt-bnb-smart-chain", + "decimals": 18, + "iconUrl": "https://static.cx.metamask.io/api/v2/tokenIcons/assets/eip155/56/erc20/0x55d398326f99059ff775485246999027b3197955.png", + "metadata": { + "storage": { + "approval": 2, + "balance": 1 + } + }, + "name": "Tether USD", + "occurrences": 9, + "symbol": "USDT" + }, + "srcChainId": 56, + "srcTokenAmount": "2039361017564255159", + "steps": [], + "walletAddress": "0xF25bd11C334507Fd007d584E2D0b7b2C6543f714" + }, + "slippagePercentage": 0, + "startTime": 1774394366627, + "status": { + "srcChain": { + "chainId": 56, + "txHash": "0x341267b0b5bdf509aec75134feddecea8c05bd1625c315841836ddcd3a334290" + }, + "status": "PENDING" + }, + "txMetaId": "e6c1d2b0-27d7-11f1-bdeb-7be08aed0cd0" + }, + "ebc8c980-4fdc-11f1-b40a-151a477935d3": { + "account": "0x141d32a89a1e0a5ef360034a2f60a4b917c18838", + "batchId": "0x37313779af02408989f137e6541596ed", + "completionTime": 1778794575486, + "estimatedProcessingTimeInSeconds": 2, + "hasApprovalTx": false, + "isAtomicBatch": true, + "isStxEnabled": true, + "location": null, + "originalTransactionId": "ebc8c980-4fdc-11f1-b40a-151a477935d3", + "pricingData": { + "amountSent": "0.005", + "amountSentInUsd": "11.47926404241", + "quotedGasAmount": "0.000005085891342", + "quotedGasInUsd": "0.011676457921164987962844", + "quotedReturnInUsd": "11.349071196706531579438305997834271836434875" + }, + "quote": { + "aggregator": "relay", + "bridgeId": "relay", + "bridges": ["Relay"], + "destAsset": { + "address": "0x55d398326f99059ff775485246999027b3197955", + "aggregators": [ + "pancakeExtended", + "oneInch", + "liFi", + "trustWallet", + "socket", + "rubic", + "squid", + "rango", + "sonarwatch", + "sushiSwap" + ], + "assetId": "eip155:56/erc20:0x55d398326f99059ff775485246999027b3197955", + "chainId": 56, + "coingeckoId": "binance-bridged-usdt-bnb-smart-chain", + "decimals": 18, + "iconUrl": "https://static.cx.metamask.io/api/v2/tokenIcons/assets/eip155/56/erc20/0x55d398326f99059ff775485246999027b3197955.png", + "metadata": { + "storage": { + "approval": 2, + "balance": 1 + } + }, + "name": "Tether USD", + "occurrences": 11, + "symbol": "USDT" + }, + "destChainId": 56, + "destTokenAmount": "11349139291537698497", + "feeData": { + "metabridge": { + "amount": "43750000000000", + "asset": { + "address": "0x0000000000000000000000000000000000000000", + "aggregators": [], + "assetId": "eip155:42161/slip44:60", + "chainId": 42161, + "coingeckoId": "ethereum", + "decimals": 18, + "iconUrl": "https://static.cx.metamask.io/api/v2/tokenIcons/assets/eip155/42161/slip44/60.png", + "metadata": {}, + "name": "Ether", + "occurrences": 100, + "symbol": "ETH" + }, + "baseBpsFee": 87.5, + "quoteBpsFee": 87.5, + "usd": "0.10034675" + } + }, + "gasIncluded": false, + "gasIncluded7702": false, + "gasSponsored": false, + "minDestTokenAmount": "11122156505706944528", + "priceData": { + "priceImpact": "0.0016522075791267161", + "totalFeeAmountUsd": "0.10034675", + "totalFromAmountUsd": "11.4682", + "totalToAmountUsd": "11.34907119670195" + }, + "protocols": ["Relay"], + "requestId": "0x9e8ac67f7d4b40ab3f947fed4d5be2bcb7e1b9f06fa3720b63f4e964d8a5d01c", + "slippage": 2, + "srcAsset": { + "address": "0x0000000000000000000000000000000000000000", + "aggregators": [], + "assetId": "eip155:42161/slip44:60", + "chainId": 42161, + "coingeckoId": "ethereum", + "decimals": 18, + "iconUrl": "https://static.cx.metamask.io/api/v2/tokenIcons/assets/eip155/42161/slip44/60.png", + "metadata": {}, + "name": "Ether", + "occurrences": 100, + "symbol": "ETH" + }, + "srcChainId": 42161, + "srcTokenAmount": "4956250000000000", + "steps": [ + { + "action": "bridge", + "destAmount": "11349139291537698497", + "destAsset": { + "address": "0x55d398326f99059ff775485246999027b3197955", + "aggregators": [ + "pancakeExtended", + "oneInch", + "liFi", + "trustWallet", + "socket", + "rubic", + "squid", + "rango", + "sonarwatch", + "sushiSwap" + ], + "assetId": "eip155:56/erc20:0x55d398326f99059ff775485246999027b3197955", + "chainId": 56, + "coingeckoId": "binance-bridged-usdt-bnb-smart-chain", + "decimals": 18, + "iconUrl": "https://static.cx.metamask.io/api/v2/tokenIcons/assets/eip155/56/erc20/0x55d398326f99059ff775485246999027b3197955.png", + "metadata": { + "storage": { + "approval": 2, + "balance": 1 + } + }, + "name": "Tether USD", + "occurrences": 11, + "symbol": "USDT" + }, + "destChainId": 56, + "protocol": { + "name": "relay" + }, + "srcAmount": "4956250000000000", + "srcAsset": { + "address": "0x0000000000000000000000000000000000000000", + "aggregators": [], + "assetId": "eip155:42161/slip44:60", + "chainId": 42161, + "coingeckoId": "ethereum", + "decimals": 18, + "iconUrl": "https://static.cx.metamask.io/api/v2/tokenIcons/assets/eip155/42161/slip44/60.png", + "metadata": {}, + "name": "Ether", + "occurrences": 100, + "symbol": "ETH" + }, + "srcChainId": 42161 + } + ] + }, + "slippagePercentage": 0, + "startTime": 1778794569035, + "status": { + "bridge": "relay", + "destChain": { + "chainId": 56, + "txHash": "0xd925c3800835a76c30f77a103d27144262c6b498c7e27b926e1534c6f73cff2c" + }, + "isExpectedToken": true, + "isUnrecognizedRouterAddress": false, + "srcChain": { + "chainId": 42161, + "txHash": "0x905c4d1137e0fb354433854d51eaa563ddd4d222010ca6cd12f11b046757224f" + }, + "status": "COMPLETE" + }, + "tokenSecurityTypeDestination": "Verified", + "txMetaId": "ebc8c980-4fdc-11f1-b40a-151a477935d3" + }, + "ed291460-1d69-11f1-9e6f-3b0a0edc0d9a": { + "account": "0x30e8ccad5a980bdf30447f8c2c48e70989d9d294", + "approvalTxId": "ed178830-1d69-11f1-9e6f-3b0a0edc0d9a", + "batchId": "0x9601ddf5f839436fa3d798be34ac8470", + "estimatedProcessingTimeInSeconds": 0, + "hasApprovalTx": true, + "isStxEnabled": true, + "location": "Main View", + "originalTransactionId": "ed291460-1d69-11f1-9e6f-3b0a0edc0d9a", + "pricingData": { + "amountSent": "5.396441517954062591", + "amountSentInUsd": "5.39159328070782060580606134775993265937672552", + "quotedGasAmount": "0.00001195505", + "quotedGasInUsd": "0.0077507505324305612", + "quotedReturnInUsd": "5.325758691766290077014182832" + }, + "quote": { + "aggregator": "uniswap", + "aggregatorType": "AGG", + "bridgeId": "uniswap", + "bridges": ["uniswap"], + "destAsset": { + "address": "0x0000000000000000000000000000000000000000", + "aggregators": [], + "assetId": "eip155:56/slip44:714", + "chainId": 56, + "coingeckoId": "binancecoin", + "decimals": 18, + "iconUrl": "https://static.cx.metamask.io/api/v2/tokenIcons/assets/eip155/56/slip44/714.png", + "metadata": {}, + "name": "Binance Coin", + "occurrences": 100, + "symbol": "BNB" + }, + "destChainId": 56, + "destTokenAmount": "8214651107863018", + "destWalletAddress": "0x30E8ccaD5A980BDF30447f8c2C48e70989D9d294", + "feeData": { + "metabridge": { + "amount": "72741454952914", + "asset": { + "address": "0x0000000000000000000000000000000000000000", + "aggregators": [], + "assetId": "eip155:56/slip44:714", + "chainId": 56, + "coingeckoId": "binancecoin", + "decimals": 18, + "iconUrl": "https://static.cx.metamask.io/api/v2/tokenIcons/assets/eip155/56/slip44/714.png", + "metadata": {}, + "name": "Binance Coin", + "occurrences": 100, + "symbol": "BNB" + }, + "baseBpsFee": 87.5, + "quoteBpsFee": 87.5 + }, + "txFee": { + "amount": "25916574660000", + "asset": { + "address": "0x0000000000000000000000000000000000000000", + "aggregators": [], + "assetId": "eip155:56/slip44:714", + "chainId": 56, + "coingeckoId": "binancecoin", + "decimals": 18, + "iconUrl": "https://static.cx.metamask.io/api/v2/tokenIcons/assets/eip155/56/slip44/714.png", + "metadata": {}, + "name": "Binance Coin", + "occurrences": 100, + "symbol": "BNB" + }, + "maxFeePerGas": "60000000", + "maxPriorityFeePerGas": "60000000" + } + }, + "gasIncluded": true, + "gasIncluded7702": false, + "gasSponsored": false, + "minDestTokenAmount": "8050358085705757", + "priceData": { + "priceImpact": "0.0035399169178724687", + "totalFeeAmountUsd": "0.04719101890070296", + "totalFromAmountUsd": "5.395545708662083", + "totalToAmountUsd": "5.329254906226134" + }, + "protocols": ["uniswap"], + "requestId": "0xcc4b0b97ff7527815f41537a1a093d7e742cb32a3c39356caac3a9c171eb1a22", + "slippage": 2, + "srcAsset": { + "address": "0x55d398326f99059ff775485246999027b3197955", + "aggregators": [ + "pancakeExtended", + "oneInch", + "liFi", + "socket", + "rubic", + "squid", + "rango", + "sonarwatch", + "sushiSwap" + ], + "assetId": "eip155:56/erc20:0x55d398326f99059ff775485246999027b3197955", + "chainId": 56, + "coingeckoId": "binance-bridged-usdt-bnb-smart-chain", + "decimals": 18, + "iconUrl": "https://static.cx.metamask.io/api/v2/tokenIcons/assets/eip155/56/erc20/0x55d398326f99059ff775485246999027b3197955.png", + "metadata": { + "storage": { + "approval": 2, + "balance": 1 + } + }, + "name": "Tether USD", + "occurrences": 11, + "symbol": "USDT" + }, + "srcChainId": 56, + "srcTokenAmount": "5396441517954062591", + "steps": [], + "walletAddress": "0x30E8ccaD5A980BDF30447f8c2C48e70989D9d294" + }, + "slippagePercentage": 0, + "startTime": 1773247621170, + "status": { + "srcChain": { + "chainId": 56 + }, + "status": "PENDING" + }, + "txMetaId": "ed291460-1d69-11f1-9e6f-3b0a0edc0d9a" + }, + "eeaeb9c0-287c-11f1-a2cb-f9ea9c47170d": { + "account": "0xf25bd11c334507fd007d584e2d0b7b2c6543f714", + "batchId": "0x1da2a55e1acc401aa5c5fa952d8e3aa5", + "estimatedProcessingTimeInSeconds": 0, + "hasApprovalTx": true, + "isStxEnabled": false, + "location": "Main View", + "originalTransactionId": "eeaeb9c0-287c-11f1-a2cb-f9ea9c47170d", + "pricingData": { + "amountSent": "1.41560583828318584", + "amountSentInUsd": "1.415018335718574632446454348845004877617112", + "quotedGasAmount": "0.00001213685", + "quotedGasInUsd": "0.0078197777103288711", + "quotedReturnInUsd": "1.374589434865494740515207002" + }, + "quote": { + "aggregator": "uniswap", + "aggregatorType": "AGG", + "bridgeId": "uniswap", + "bridges": ["uniswap"], + "destAsset": { + "address": "0x0000000000000000000000000000000000000000", + "aggregators": [], + "assetId": "eip155:56/slip44:714", + "chainId": 56, + "coingeckoId": "binancecoin", + "decimals": 18, + "iconUrl": "https://static.cx.metamask.io/api/v2/tokenIcons/assets/eip155/56/slip44/714.png", + "metadata": {}, + "name": "Binance Coin", + "occurrences": 100, + "symbol": "BNB" + }, + "destChainId": 56, + "destTokenAmount": "2133460361732667", + "destWalletAddress": "0xF25bd11C334507Fd007d584E2D0b7b2C6543f714", + "feeData": { + "metabridge": { + "amount": "19194448201725", + "asset": { + "address": "0x0000000000000000000000000000000000000000", + "aggregators": [], + "assetId": "eip155:56/slip44:714", + "chainId": 56, + "coingeckoId": "binancecoin", + "decimals": 18, + "iconUrl": "https://static.cx.metamask.io/api/v2/tokenIcons/assets/eip155/56/slip44/714.png", + "metadata": {}, + "name": "Binance Coin", + "occurrences": 100, + "symbol": "BNB" + }, + "baseBpsFee": 87.5, + "quoteBpsFee": 87.5 + }, + "txFee": { + "amount": "40996413120000", + "asset": { + "address": "0x0000000000000000000000000000000000000000", + "aggregators": [], + "assetId": "eip155:56/slip44:714", + "chainId": 56, + "coingeckoId": "binancecoin", + "decimals": 18, + "iconUrl": "https://static.cx.metamask.io/api/v2/tokenIcons/assets/eip155/56/slip44/714.png", + "metadata": {}, + "name": "Binance Coin", + "occurrences": 100, + "symbol": "BNB" + }, + "maxFeePerGas": "60000000", + "maxPriorityFeePerGas": "60000000" + } + }, + "gasIncluded": true, + "gasIncluded7702": true, + "gasSponsored": false, + "minDestTokenAmount": "2090791154498013", + "priceData": { + "priceImpact": "0.0003861428244228668", + "totalFeeAmountUsd": "0.012376196311508245", + "totalFromAmountUsd": "1.4149688156559583", + "totalToAmountUsd": "1.375612572037989" + }, + "protocols": ["uniswap"], + "requestId": "0xd92164de81ec53b1a11fce5147800cc3073cfc1b34b3e05b154b8658e710ffee", + "slippage": 2, + "srcAsset": { + "address": "0x55d398326f99059ff775485246999027b3197955", + "aggregators": [ + "pancakeExtended", + "oneInch", + "liFi", + "trustWallet", + "socket", + "rubic", + "squid", + "rango", + "sonarwatch", + "sushiSwap" + ], + "assetId": "eip155:56/erc20:0x55d398326f99059ff775485246999027b3197955", + "chainId": 56, + "coingeckoId": "binance-bridged-usdt-bnb-smart-chain", + "decimals": 18, + "iconUrl": "https://static.cx.metamask.io/api/v2/tokenIcons/assets/eip155/56/erc20/0x55d398326f99059ff775485246999027b3197955.png", + "metadata": { + "storage": { + "approval": 2, + "balance": 1 + } + }, + "name": "Tether USD", + "occurrences": 11, + "symbol": "USDT" + }, + "srcChainId": 56, + "srcTokenAmount": "1415605838283185840", + "steps": [], + "walletAddress": "0xF25bd11C334507Fd007d584E2D0b7b2C6543f714" + }, + "slippagePercentage": 0, + "startTime": 1774465246686, + "status": { + "srcChain": { + "chainId": 56, + "txHash": "0xfd3aff4c8cd56f099472ffc6bf15d7b84996caf0fb2aa06cb9e97970e283d80f" + }, + "status": "PENDING" + }, + "txMetaId": "eeaeb9c0-287c-11f1-a2cb-f9ea9c47170d" + }, + "f1b03a20-23bf-11f1-b9e0-05a660861774": { + "account": "0xb3864b298f4fddbbbd2fa5cf1a2a2748932b3b81", + "approvalTxId": "f1a90e30-23bf-11f1-b9e0-05a660861774", + "batchId": "0xa2db3903458a4fc8a4b75b1c716fc868", + "completionTime": 1773944311918, + "estimatedProcessingTimeInSeconds": 2.5, + "hasApprovalTx": true, + "isStxEnabled": true, + "location": "Main View", + "originalTransactionId": "f1b03a20-23bf-11f1-b9e0-05a660861774", + "pricingData": { + "amountSent": "9.337462877627054927", + "amountSentInUsd": "9.33574106502034854895598387851262936986228808", + "quotedGasAmount": "0.0000071351", + "quotedGasInUsd": "0.0045499169666577886", + "quotedReturnInUsd": "9.095895552002798012769878823" + }, + "quote": { + "aggregator": "relay", + "bridgeId": "relay", + "bridges": ["Relay"], + "destAsset": { + "address": "0x0000000000000000000000000000000000000000", + "aggregators": [], + "assetId": "eip155:143/slip44:268435779", + "chainId": 143, + "decimals": 18, + "iconUrl": "https://static.cx.metamask.io/api/v2/tokenIcons/assets/eip155/143/slip44/268435779.png", + "metadata": {}, + "name": "Mon", + "occurrences": 1, + "symbol": "MON" + }, + "destChainId": 143, + "destTokenAmount": "412937511295772840211", + "feeData": { + "metabridge": { + "amount": "81702800179236730", + "asset": { + "address": "0x55d398326f99059ff775485246999027b3197955", + "aggregators": [ + "pancakeExtended", + "oneInch", + "liFi", + "socket", + "rubic", + "squid", + "rango", + "sonarwatch", + "sushiSwap" + ], + "assetId": "eip155:56/erc20:0x55d398326f99059ff775485246999027b3197955", + "chainId": 56, + "coingeckoId": "binance-bridged-usdt-bnb-smart-chain", + "decimals": 18, + "iconUrl": "https://static.cx.metamask.io/api/v2/tokenIcons/assets/eip155/56/erc20/0x55d398326f99059ff775485246999027b3197955.png", + "metadata": { + "storage": { + "approval": 2, + "balance": 1 + } + }, + "name": "Tether USD", + "occurrences": 9, + "symbol": "USDT" + }, + "baseBpsFee": 87.5, + "quoteBpsFee": 87.5 + } + }, + "minDestTokenAmount": "404678761069857383406", + "priceData": { + "priceImpact": "0.01720929304873769", + "totalFeeAmountUsd": "0.08169650906362293", + "totalFromAmountUsd": "9.336743892985476", + "totalToAmountUsd": "9.09577456131199" + }, + "protocols": ["Relay"], + "requestId": "0x618e3473190a363f6d8467b8356ee24460cc02646155ddd3200fd7130dc78656", + "slippage": 2, + "srcAsset": { + "address": "0x55d398326f99059ff775485246999027b3197955", + "aggregators": [ + "pancakeExtended", + "oneInch", + "liFi", + "socket", + "rubic", + "squid", + "rango", + "sonarwatch", + "sushiSwap" + ], + "assetId": "eip155:56/erc20:0x55d398326f99059ff775485246999027b3197955", + "chainId": 56, + "coingeckoId": "binance-bridged-usdt-bnb-smart-chain", + "decimals": 18, + "iconUrl": "https://static.cx.metamask.io/api/v2/tokenIcons/assets/eip155/56/erc20/0x55d398326f99059ff775485246999027b3197955.png", + "metadata": { + "storage": { + "approval": 2, + "balance": 1 + } + }, + "name": "Tether USD", + "occurrences": 9, + "symbol": "USDT" + }, + "srcChainId": 56, + "srcTokenAmount": "9255760077447818197", + "steps": [ + { + "action": "bridge", + "destAmount": "412937511295772840211", + "destAsset": { + "address": "0x0000000000000000000000000000000000000000", + "aggregators": [], + "assetId": "eip155:143/slip44:268435779", + "chainId": 143, + "decimals": 18, + "iconUrl": "https://static.cx.metamask.io/api/v2/tokenIcons/assets/eip155/143/slip44/268435779.png", + "metadata": {}, + "name": "Mon", + "occurrences": 1, + "symbol": "MON" + }, + "destChainId": 143, + "protocol": { + "name": "relay" + }, + "srcAmount": "9255760077447818197", + "srcAsset": { + "address": "0x55d398326f99059ff775485246999027b3197955", + "aggregators": [ + "pancakeExtended", + "oneInch", + "liFi", + "socket", + "rubic", + "squid", + "rango", + "sonarwatch", + "sushiSwap" + ], + "assetId": "eip155:56/erc20:0x55d398326f99059ff775485246999027b3197955", + "chainId": 56, + "coingeckoId": "binance-bridged-usdt-bnb-smart-chain", + "decimals": 18, + "iconUrl": "https://static.cx.metamask.io/api/v2/tokenIcons/assets/eip155/56/erc20/0x55d398326f99059ff775485246999027b3197955.png", + "metadata": { + "storage": { + "approval": 2, + "balance": 1 + } + }, + "name": "Tether USD", + "occurrences": 9, + "symbol": "USDT" + }, + "srcChainId": 56 + } + ] + }, + "slippagePercentage": 0, + "startTime": 1773944272398, + "status": { + "bridge": "relay", + "destChain": { + "chainId": 143, + "txHash": "0x7f209612491bca6ed35fdf038952485801f5772412abb54ef9d9e1aa1c9cd97e" + }, + "isExpectedToken": true, + "isUnrecognizedRouterAddress": false, + "srcChain": { + "chainId": 56, + "txHash": "0xbb68e59f33b8bcaac64a0f718e3d621e5bf6e311f69970905cf16f187121a98c" + }, + "status": "COMPLETE" + }, + "txMetaId": "f1b03a20-23bf-11f1-b9e0-05a660861774" + }, + "f1fa8200-287f-11f1-927e-9d8a4fbc2cec": { + "account": "0xf25bd11c334507fd007d584e2d0b7b2c6543f714", + "batchId": "0x09d9669901a64be0b0274c556d7399cc", + "estimatedProcessingTimeInSeconds": 0, + "hasApprovalTx": false, + "isStxEnabled": true, + "location": "Main View", + "originalTransactionId": "f1fa8200-287f-11f1-927e-9d8a4fbc2cec", + "pricingData": { + "amountSent": "0.001950721614518098", + "amountSentInUsd": "1.26047761242164057491098084", + "quotedGasAmount": "0.0000125086", + "quotedGasInUsd": "0.008082552705313788", + "quotedReturnInUsd": "1.231000212630644003026023768790886639043072" + }, + "quote": { + "aggregator": "1inch", + "aggregatorType": "AGG", + "bridgeId": "1inch", + "bridges": ["1inch"], + "destAsset": { + "address": "0x55d398326f99059ff775485246999027b3197955", + "aggregators": [ + "pancakeExtended", + "oneInch", + "liFi", + "trustWallet", + "socket", + "rubic", + "squid", + "rango", + "sonarwatch", + "sushiSwap" + ], + "assetId": "eip155:56/erc20:0x55d398326f99059ff775485246999027b3197955", + "chainId": 56, + "coingeckoId": "binance-bridged-usdt-bnb-smart-chain", + "decimals": 18, + "iconUrl": "https://static.cx.metamask.io/api/v2/tokenIcons/assets/eip155/56/erc20/0x55d398326f99059ff775485246999027b3197955.png", + "metadata": { + "storage": { + "approval": 2, + "balance": 1 + } + }, + "name": "Tether USD", + "occurrences": 11, + "symbol": "USDT" + }, + "destChainId": 56, + "destTokenAmount": "1231473098299450880", + "destWalletAddress": "0xF25bd11C334507Fd007d584E2D0b7b2C6543f714", + "feeData": { + "metabridge": { + "amount": "17068814127033", + "asset": { + "address": "0x0000000000000000000000000000000000000000", + "aggregators": [], + "assetId": "eip155:56/slip44:714", + "chainId": 56, + "coingeckoId": "binancecoin", + "decimals": 18, + "iconUrl": "https://static.cx.metamask.io/api/v2/tokenIcons/assets/eip155/56/slip44/714.png", + "metadata": {}, + "name": "Binance Coin", + "occurrences": 100, + "symbol": "BNB" + }, + "baseBpsFee": 87.5, + "quoteBpsFee": 87.5 + }, + "txFee": { + "amount": "28801260000000", + "asset": { + "address": "0x0000000000000000000000000000000000000000", + "aggregators": [], + "assetId": "eip155:56/slip44:714", + "chainId": 56, + "coingeckoId": "binancecoin", + "decimals": 18, + "iconUrl": "https://static.cx.metamask.io/api/v2/tokenIcons/assets/eip155/56/slip44/714.png", + "metadata": {}, + "name": "Binance Coin", + "occurrences": 100, + "symbol": "BNB" + }, + "maxFeePerGas": "60000000", + "maxPriorityFeePerGas": "60000000" + } + }, + "gasIncluded": true, + "gasIncluded7702": false, + "gasSponsored": false, + "minDestTokenAmount": "1206843636333461862", + "priceData": { + "priceImpact": "0.008935259498243572", + "totalFeeAmountUsd": "0.011031233194018887", + "totalFromAmountUsd": "1.2607123650307563", + "totalToAmountUsd": "1.2310002126297037" + }, + "protocols": ["1inch"], + "requestId": "0xc971fd8a91725f32a0ad11c9f99179a25ab129462d2c61f1644a48019305d8f3", + "slippage": 2, + "srcAsset": { + "address": "0x0000000000000000000000000000000000000000", + "aggregators": [], + "assetId": "eip155:56/slip44:714", + "chainId": 56, + "coingeckoId": "binancecoin", + "decimals": 18, + "iconUrl": "https://static.cx.metamask.io/api/v2/tokenIcons/assets/eip155/56/slip44/714.png", + "metadata": {}, + "name": "Binance Coin", + "occurrences": 100, + "symbol": "BNB" + }, + "srcChainId": 56, + "srcTokenAmount": "1904851540391065", + "steps": [], + "walletAddress": "0xF25bd11C334507Fd007d584E2D0b7b2C6543f714" + }, + "slippagePercentage": 0, + "startTime": 1774466540954, + "status": { + "srcChain": { + "chainId": 56, + "txHash": "0x8b359d3aa549a98972a79d2f82f738ed742f368ba295011dda4afa8b012f8ca0" + }, + "status": "FAILED" + }, + "txMetaId": "f1fa8200-287f-11f1-927e-9d8a4fbc2cec" + }, + "f201c410-2876-11f1-8091-cdbe50267c7d": { + "account": "0xf25bd11c334507fd007d584e2d0b7b2c6543f714", + "batchId": "0xd8a0b454f904444da5f4015219056c52", + "estimatedProcessingTimeInSeconds": 0, + "hasApprovalTx": false, + "isStxEnabled": false, + "location": "Main View", + "originalTransactionId": "f201c410-2876-11f1-8091-cdbe50267c7d", + "pricingData": { + "amountSent": "0.002781115349282358", + "amountSentInUsd": "1.793435999218149722824761648", + "quotedGasAmount": "0.0000097993", + "quotedGasInUsd": "0.0063191975808099208", + "quotedReturnInUsd": "1.76479746070635512422167924287594238924040992" + }, + "quote": { + "aggregator": "uniswap", + "aggregatorType": "AGG", + "bridgeId": "uniswap", + "bridges": ["uniswap"], + "destAsset": { + "address": "0x55d398326f99059ff775485246999027b3197955", + "aggregators": [ + "pancakeExtended", + "oneInch", + "liFi", + "trustWallet", + "socket", + "rubic", + "squid", + "rango", + "sonarwatch", + "sushiSwap" + ], + "assetId": "eip155:56/erc20:0x55d398326f99059ff775485246999027b3197955", + "chainId": 56, + "coingeckoId": "binance-bridged-usdt-bnb-smart-chain", + "decimals": 18, + "iconUrl": "https://static.cx.metamask.io/api/v2/tokenIcons/assets/eip155/56/erc20/0x55d398326f99059ff775485246999027b3197955.png", + "metadata": { + "storage": { + "approval": 2, + "balance": 1 + } + }, + "name": "Tether USD", + "occurrences": 11, + "symbol": "USDT" + }, + "destChainId": 56, + "destTokenAmount": "1765058689392476914", + "destWalletAddress": "0xF25bd11C334507Fd007d584E2D0b7b2C6543f714", + "feeData": { + "metabridge": { + "amount": "24334759306220", + "asset": { + "address": "0x0000000000000000000000000000000000000000", + "aggregators": [], + "assetId": "eip155:56/slip44:714", + "chainId": 56, + "coingeckoId": "binancecoin", + "decimals": 18, + "iconUrl": "https://static.cx.metamask.io/api/v2/tokenIcons/assets/eip155/56/slip44/714.png", + "metadata": {}, + "name": "Binance Coin", + "occurrences": 100, + "symbol": "BNB" + }, + "baseBpsFee": 87.5, + "quoteBpsFee": 87.5 + }, + "txFee": { + "amount": "22023810000000", + "asset": { + "address": "0x0000000000000000000000000000000000000000", + "aggregators": [], + "assetId": "eip155:56/slip44:714", + "chainId": 56, + "coingeckoId": "binancecoin", + "decimals": 18, + "iconUrl": "https://static.cx.metamask.io/api/v2/tokenIcons/assets/eip155/56/slip44/714.png", + "metadata": {}, + "name": "Binance Coin", + "occurrences": 100, + "symbol": "BNB" + }, + "maxFeePerGas": "60000000", + "maxPriorityFeePerGas": "60000000" + } + }, + "gasIncluded": true, + "gasIncluded7702": false, + "gasSponsored": false, + "minDestTokenAmount": "1729757515604627375", + "priceData": { + "priceImpact": "0.00846408166084548", + "totalFeeAmountUsd": "0.01569810988084946", + "totalFromAmountUsd": "1.7940697006685564", + "totalToAmountUsd": "1.7647974607064467" + }, + "protocols": ["uniswap"], + "requestId": "0xa092ec91738a2a1733a239c0579cf05e0b4552837cdaaf969b2589b3868b570e", + "slippage": 2, + "srcAsset": { + "address": "0x0000000000000000000000000000000000000000", + "aggregators": [], + "assetId": "eip155:56/slip44:714", + "chainId": 56, + "coingeckoId": "binancecoin", + "decimals": 18, + "iconUrl": "https://static.cx.metamask.io/api/v2/tokenIcons/assets/eip155/56/slip44/714.png", + "metadata": {}, + "name": "Binance Coin", + "occurrences": 100, + "symbol": "BNB" + }, + "srcChainId": 56, + "srcTokenAmount": "2734756779976138", + "steps": [], + "walletAddress": "0xF25bd11C334507Fd007d584E2D0b7b2C6543f714" + }, + "slippagePercentage": 0, + "startTime": 1774462675537, + "status": { + "srcChain": { + "chainId": 56 + }, + "status": "PENDING" + }, + "txMetaId": "f201c410-2876-11f1-8091-cdbe50267c7d" + }, + "f20fc190-1d64-11f1-9b1e-3b0a0edc0d9a": { + "account": "0xf25bd11c334507fd007d584e2d0b7b2c6543f714", + "approvalTxId": "f1fed1a0-1d64-11f1-9b1e-3b0a0edc0d9a", + "batchId": "0x390c7b24477a4fc69fb6dae1285bca35", + "estimatedProcessingTimeInSeconds": 0, + "hasApprovalTx": true, + "isStxEnabled": true, + "location": "Main View", + "originalTransactionId": "f20fc190-1d64-11f1-9b1e-3b0a0edc0d9a", + "pricingData": { + "amountSent": "0.030291206096350612", + "amountSentInUsd": "0.03031469744464811512269053485382335576730904", + "quotedGasAmount": "0.0000130952328", + "quotedGasInUsd": "0.0084691309348555097448", + "quotedReturnInUsd": "0.010759200279458998030295414" + }, + "quote": { + "aggregator": "1inch", + "aggregatorType": "AGG", + "bridgeId": "1inch", + "bridges": ["1inch"], + "destAsset": { + "address": "0x0000000000000000000000000000000000000000", + "aggregators": [], + "assetId": "eip155:56/slip44:714", + "chainId": 56, + "coingeckoId": "binancecoin", + "decimals": 18, + "iconUrl": "https://static.cx.metamask.io/api/v2/tokenIcons/assets/eip155/56/slip44/714.png", + "metadata": {}, + "name": "Binance Coin", + "occurrences": 100, + "symbol": "BNB" + }, + "destChainId": 56, + "destTokenAmount": "16636209014254", + "destWalletAddress": "0xF25bd11C334507Fd007d584E2D0b7b2C6543f714", + "feeData": { + "metabridge": { + "amount": "409186165321", + "asset": { + "address": "0x0000000000000000000000000000000000000000", + "aggregators": [], + "assetId": "eip155:56/slip44:714", + "chainId": 56, + "coingeckoId": "binancecoin", + "decimals": 18, + "iconUrl": "https://static.cx.metamask.io/api/v2/tokenIcons/assets/eip155/56/slip44/714.png", + "metadata": {}, + "name": "Binance Coin", + "occurrences": 100, + "symbol": "BNB" + }, + "baseBpsFee": 87.5, + "quoteBpsFee": 87.5 + }, + "txFee": { + "amount": "29718738000000", + "asset": { + "address": "0x0000000000000000000000000000000000000000", + "aggregators": [], + "assetId": "eip155:56/slip44:714", + "chainId": 56, + "coingeckoId": "binancecoin", + "decimals": 18, + "iconUrl": "https://static.cx.metamask.io/api/v2/tokenIcons/assets/eip155/56/slip44/714.png", + "metadata": {}, + "name": "Binance Coin", + "occurrences": 100, + "symbol": "BNB" + }, + "maxFeePerGas": "60000000", + "maxPriorityFeePerGas": "60000000" + } + }, + "gasIncluded": true, + "gasIncluded7702": false, + "gasSponsored": false, + "minDestTokenAmount": "16303484833968", + "priceData": { + "priceImpact": "0.6363831330418781", + "totalFeeAmountUsd": "0.00026440791630712374", + "totalFromAmountUsd": "0.030291206096350613", + "totalToAmountUsd": "0.010749985540830648" + }, + "protocols": ["1inch"], + "requestId": "0x377e1653faad797875199566ad248b9b777ab7c5561f01b5415ff94d659e30f1", + "slippage": 2, + "srcAsset": { + "address": "0x55d398326f99059ff775485246999027b3197955", + "aggregators": [ + "pancakeExtended", + "oneInch", + "liFi", + "socket", + "rubic", + "squid", + "rango", + "sonarwatch", + "sushiSwap" + ], + "assetId": "eip155:56/erc20:0x55d398326f99059ff775485246999027b3197955", + "chainId": 56, + "coingeckoId": "binance-bridged-usdt-bnb-smart-chain", + "decimals": 18, + "iconUrl": "https://static.cx.metamask.io/api/v2/tokenIcons/assets/eip155/56/erc20/0x55d398326f99059ff775485246999027b3197955.png", + "metadata": { + "storage": { + "approval": 2, + "balance": 1 + } + }, + "name": "Tether USD", + "occurrences": 11, + "symbol": "USDT" + }, + "srcChainId": 56, + "srcTokenAmount": "30291206096350612", + "steps": [], + "walletAddress": "0xF25bd11C334507Fd007d584E2D0b7b2C6543f714" + }, + "slippagePercentage": 0, + "startTime": 1773245481913, + "status": { + "srcChain": { + "chainId": 56 + }, + "status": "PENDING" + }, + "txMetaId": "f20fc190-1d64-11f1-9b1e-3b0a0edc0d9a" + }, + "f44e7dc0-2877-11f1-9ef0-5b4e77963ec9": { + "account": "0xf25bd11c334507fd007d584e2d0b7b2c6543f714", + "batchId": "0x6bfe82230aa547c3afb72426e6480ab0", + "estimatedProcessingTimeInSeconds": 0, + "hasApprovalTx": false, + "isStxEnabled": false, + "location": "Main View", + "originalTransactionId": "f44e7dc0-2877-11f1-9ef0-5b4e77963ec9", + "pricingData": { + "amountSent": "0.002568716819074388", + "amountSentInUsd": "1.6573039299836439962481863", + "quotedGasAmount": "0.00000966405", + "quotedGasInUsd": "0.00623512406102037375", + "quotedReturnInUsd": "1.63121734853411266230391289813997531249789075" + }, + "quote": { + "aggregator": "uniswap", + "aggregatorType": "AGG", + "bridgeId": "uniswap", + "bridges": ["uniswap"], + "destAsset": { + "address": "0x55d398326f99059ff775485246999027b3197955", + "aggregators": [ + "pancakeExtended", + "oneInch", + "liFi", + "trustWallet", + "socket", + "rubic", + "squid", + "rango", + "sonarwatch", + "sushiSwap" + ], + "assetId": "eip155:56/erc20:0x55d398326f99059ff775485246999027b3197955", + "chainId": 56, + "coingeckoId": "binance-bridged-usdt-bnb-smart-chain", + "decimals": 18, + "iconUrl": "https://static.cx.metamask.io/api/v2/tokenIcons/assets/eip155/56/erc20/0x55d398326f99059ff775485246999027b3197955.png", + "metadata": { + "storage": { + "approval": 2, + "balance": 1 + } + }, + "name": "Tether USD", + "occurrences": 11, + "symbol": "USDT" + }, + "destChainId": 56, + "destTokenAmount": "1631219481085404123", + "destWalletAddress": "0xF25bd11C334507Fd007d584E2D0b7b2C6543f714", + "feeData": { + "metabridge": { + "amount": "22476272166900", + "asset": { + "address": "0x0000000000000000000000000000000000000000", + "aggregators": [], + "assetId": "eip155:56/slip44:714", + "chainId": 56, + "coingeckoId": "binancecoin", + "decimals": 18, + "iconUrl": "https://static.cx.metamask.io/api/v2/tokenIcons/assets/eip155/56/slip44/714.png", + "metadata": {}, + "name": "Binance Coin", + "occurrences": 100, + "symbol": "BNB" + }, + "baseBpsFee": 87.5, + "quoteBpsFee": 87.5 + }, + "txFee": { + "amount": "22023990000000", + "asset": { + "address": "0x0000000000000000000000000000000000000000", + "aggregators": [], + "assetId": "eip155:56/slip44:714", + "chainId": 56, + "coingeckoId": "binancecoin", + "decimals": 18, + "iconUrl": "https://static.cx.metamask.io/api/v2/tokenIcons/assets/eip155/56/slip44/714.png", + "metadata": {}, + "name": "Binance Coin", + "occurrences": 100, + "symbol": "BNB" + }, + "maxFeePerGas": "60000000", + "maxPriorityFeePerGas": "60000000" + } + }, + "gasIncluded": true, + "gasIncluded7702": false, + "gasSponsored": false, + "minDestTokenAmount": "1598595091463696040", + "priceData": { + "priceImpact": "0.008023783688609794", + "totalFeeAmountUsd": "0.014509107971898956", + "totalFromAmountUsd": "1.6581837682170897", + "totalToAmountUsd": "1.6307757893865489" + }, + "protocols": ["uniswap"], + "requestId": "0x5f7ec31aafaf5bd1a8c6ff73704da71a05a11afb4c72c6a83718bba0994d98a5", + "slippage": 2, + "srcAsset": { + "address": "0x0000000000000000000000000000000000000000", + "aggregators": [], + "assetId": "eip155:56/slip44:714", + "chainId": 56, + "coingeckoId": "binancecoin", + "decimals": 18, + "iconUrl": "https://static.cx.metamask.io/api/v2/tokenIcons/assets/eip155/56/slip44/714.png", + "metadata": {}, + "name": "Binance Coin", + "occurrences": 100, + "symbol": "BNB" + }, + "srcChainId": 56, + "srcTokenAmount": "2524216556907488", + "steps": [], + "walletAddress": "0xF25bd11C334507Fd007d584E2D0b7b2C6543f714" + }, + "slippagePercentage": 0, + "startTime": 1774463108889, + "status": { + "srcChain": { + "chainId": 56 + }, + "status": "PENDING" + }, + "txMetaId": "f44e7dc0-2877-11f1-9ef0-5b4e77963ec9" + }, + "f84655d0-2c9e-11f1-8e3c-f533125480a0": { + "account": "0x141d32a89a1e0a5ef360034a2f60a4b917c18838", + "batchId": "0x4d338fb1d55549f5a83b29e5baae7818", + "estimatedProcessingTimeInSeconds": 0, + "hasApprovalTx": false, + "isStxEnabled": true, + "location": "Main View", + "originalTransactionId": "f84655d0-2c9e-11f1-8e3c-f533125480a0", + "pricingData": { + "amountSent": "0.008428175140106923", + "amountSentInUsd": "17.128322865726049299959537608", + "quotedGasAmount": "0.000486212947249232", + "quotedGasInUsd": "0.988115719421965119747558272", + "quotedReturnInUsd": "15.916366659970442248501022122382656" + }, + "quote": { + "aggregator": "uniswap", + "aggregatorType": "AGG", + "bridgeId": "uniswap", + "bridges": ["uniswap"], + "destAsset": { + "address": "0xaca92e438df0b2401ff60da7e4337b687a2435da", + "aggregators": ["metamask", "liFi", "socket", "rubic", "rango"], + "assetId": "eip155:1/erc20:0xaca92e438df0b2401ff60da7e4337b687a2435da", + "chainId": 1, + "decimals": 6, + "iconUrl": "https://static.cx.metamask.io/api/v2/tokenIcons/assets/eip155/1/erc20/0xaca92e438df0b2401ff60da7e4337b687a2435da.png", + "metadata": {}, + "name": "MetaMask USD", + "occurrences": 5, + "symbol": "MUSD" + }, + "destChainId": 1, + "destTokenAmount": "15916876", + "destWalletAddress": "0x141d32a89a1e0a5Ef360034a2f60a4B917c18838", + "feeData": { + "metabridge": { + "amount": "0", + "asset": { + "address": "0x0000000000000000000000000000000000000000", + "aggregators": [], + "assetId": "eip155:1/slip44:60", + "chainId": 1, + "coingeckoId": "ethereum", + "decimals": 18, + "iconUrl": "https://static.cx.metamask.io/api/v2/tokenIcons/assets/eip155/1/slip44/60.png", + "metadata": {}, + "name": "Ether", + "occurrences": 100, + "symbol": "ETH" + }, + "baseBpsFee": 87.5, + "quoteBpsFee": 0 + }, + "txFee": { + "amount": "618560095246236", + "asset": { + "address": "0x0000000000000000000000000000000000000000", + "aggregators": [], + "assetId": "eip155:1/slip44:60", + "chainId": 1, + "coingeckoId": "ethereum", + "decimals": 18, + "iconUrl": "https://static.cx.metamask.io/api/v2/tokenIcons/assets/eip155/1/slip44/60.png", + "metadata": {}, + "name": "Ether", + "occurrences": 100, + "symbol": "ETH" + }, + "maxFeePerGas": "2229546735", + "maxPriorityFeePerGas": "2100000001" + } + }, + "gasIncluded": true, + "gasIncluded7702": false, + "gasSponsored": false, + "minDestTokenAmount": "15598538", + "priceData": { + "priceImpact": "-0.003912441356125913", + "totalFeeAmountUsd": "0", + "totalFromAmountUsd": "17.127737519725287", + "totalToAmountUsd": "15.932792875999999" + }, + "protocols": ["uniswap"], + "requestId": "0x9828847a557d2a105e5e3de4c3cf4bbc19c55d582bf11341b190278fb9fa7ecc", + "slippage": 2, + "srcAsset": { + "address": "0x0000000000000000000000000000000000000000", + "aggregators": [], + "assetId": "eip155:1/slip44:60", + "chainId": 1, + "coingeckoId": "ethereum", + "decimals": 18, + "iconUrl": "https://static.cx.metamask.io/api/v2/tokenIcons/assets/eip155/1/slip44/60.png", + "metadata": {}, + "name": "Ether", + "occurrences": 100, + "symbol": "ETH" + }, + "srcChainId": 1, + "srcTokenAmount": "7809615044860687", + "steps": [], + "walletAddress": "0x141d32a89a1e0a5Ef360034a2f60a4B917c18838" + }, + "slippagePercentage": 0, + "startTime": 1774919670615, + "status": { + "srcChain": { + "chainId": 1 + }, + "status": "PENDING" + }, + "txMetaId": "f84655d0-2c9e-11f1-8e3c-f533125480a0" + }, + "f8710c10-287c-11f1-a2f7-f9ea9c47170d": { + "account": "0xf25bd11c334507fd007d584e2d0b7b2c6543f714", + "batchId": "0x7a37947dd9474576882d871e04d48349", + "estimatedProcessingTimeInSeconds": 0, + "hasApprovalTx": false, + "isStxEnabled": false, + "location": "Main View", + "originalTransactionId": "f8710c10-287c-11f1-a2f7-f9ea9c47170d", + "pricingData": { + "amountSent": "0.002146832744563131", + "amountSentInUsd": "1.383205266913484695603101786", + "quotedGasAmount": "0.0000125081", + "quotedGasInUsd": "0.0080589742460823486", + "quotedReturnInUsd": "1.353335066422375806958168926007583567874432" + }, + "quote": { + "aggregator": "1inch", + "aggregatorType": "AGG", + "bridgeId": "1inch", + "bridges": ["1inch"], + "destAsset": { + "address": "0x55d398326f99059ff775485246999027b3197955", + "aggregators": [ + "pancakeExtended", + "oneInch", + "liFi", + "trustWallet", + "socket", + "rubic", + "squid", + "rango", + "sonarwatch", + "sushiSwap" + ], + "assetId": "eip155:56/erc20:0x55d398326f99059ff775485246999027b3197955", + "chainId": 56, + "coingeckoId": "binance-bridged-usdt-bnb-smart-chain", + "decimals": 18, + "iconUrl": "https://static.cx.metamask.io/api/v2/tokenIcons/assets/eip155/56/erc20/0x55d398326f99059ff775485246999027b3197955.png", + "metadata": { + "storage": { + "approval": 2, + "balance": 1 + } + }, + "name": "Tether USD", + "occurrences": 11, + "symbol": "USDT" + }, + "destChainId": 56, + "destTokenAmount": "1353896958662378240", + "destWalletAddress": "0xF25bd11C334507Fd007d584E2D0b7b2C6543f714", + "feeData": { + "metabridge": { + "amount": "18784786514927", + "asset": { + "address": "0x0000000000000000000000000000000000000000", + "aggregators": [], + "assetId": "eip155:56/slip44:714", + "chainId": 56, + "coingeckoId": "binancecoin", + "decimals": 18, + "iconUrl": "https://static.cx.metamask.io/api/v2/tokenIcons/assets/eip155/56/slip44/714.png", + "metadata": {}, + "name": "Binance Coin", + "occurrences": 100, + "symbol": "BNB" + }, + "baseBpsFee": 87.5, + "quoteBpsFee": 87.5 + }, + "txFee": { + "amount": "28800180000000", + "asset": { + "address": "0x0000000000000000000000000000000000000000", + "aggregators": [], + "assetId": "eip155:56/slip44:714", + "chainId": 56, + "coingeckoId": "binancecoin", + "decimals": 18, + "iconUrl": "https://static.cx.metamask.io/api/v2/tokenIcons/assets/eip155/56/slip44/714.png", + "metadata": {}, + "name": "Binance Coin", + "occurrences": 100, + "symbol": "BNB" + }, + "maxFeePerGas": "60000000", + "maxPriorityFeePerGas": "60000000" + } + }, + "gasIncluded": true, + "gasIncluded7702": false, + "gasSponsored": false, + "minDestTokenAmount": "1326819019489130675", + "priceData": { + "priceImpact": "0.009063226789063482", + "totalFeeAmountUsd": "0.012112054649094631", + "totalFromAmountUsd": "1.3842348170394156", + "totalToAmountUsd": "1.3532877050309802" + }, + "protocols": ["1inch"], + "requestId": "0x40a57f67905fa5574d5f8f1ec2d7b0233ec0887c9f29ab9bfa4c77ce548d67bf", + "slippage": 2, + "srcAsset": { + "address": "0x0000000000000000000000000000000000000000", + "aggregators": [], + "assetId": "eip155:56/slip44:714", + "chainId": 56, + "coingeckoId": "binancecoin", + "decimals": 18, + "iconUrl": "https://static.cx.metamask.io/api/v2/tokenIcons/assets/eip155/56/slip44/714.png", + "metadata": {}, + "name": "Binance Coin", + "occurrences": 100, + "symbol": "BNB" + }, + "srcChainId": 56, + "srcTokenAmount": "2099247778048204", + "steps": [], + "walletAddress": "0xF25bd11C334507Fd007d584E2D0b7b2C6543f714" + }, + "slippagePercentage": 0, + "startTime": 1774465263146, + "status": { + "srcChain": { + "chainId": 56 + }, + "status": "PENDING" + }, + "txMetaId": "f8710c10-287c-11f1-a2f7-f9ea9c47170d" + }, + "fe000000-289f-11f1-a5b4-213b64721d37": { + "account": "0x141d32a89a1e0a5ef360034a2f60a4b917c18838", + "batchId": "0xe04632dccafe42e297c56d2708636c6d", + "estimatedProcessingTimeInSeconds": 0, + "hasApprovalTx": false, + "isStxEnabled": true, + "location": "Main View", + "originalTransactionId": "fe000000-289f-11f1-a5b4-213b64721d37", + "pricingData": { + "amountSent": "0.003629391213218711", + "amountSentInUsd": "7.892277824040395714320200408", + "quotedGasAmount": "0.000006015384715807", + "quotedGasInUsd": "0.013080730240026132045123096", + "quotedReturnInUsd": "7.822248448265464713073180974025344" + }, + "quote": { + "aggregator": "pancakeswap", + "aggregatorType": "AGG", + "bridgeId": "pancakeswap", + "bridges": ["pancakeswap"], + "destAsset": { + "address": "0x833589fcd6edb6e08f4c7c32d4f71b54bda02913", + "aggregators": [ + "coinGecko", + "oneInch", + "liFi", + "socket", + "rubic", + "squid", + "rango", + "sonarwatch", + "sushiSwap" + ], + "assetId": "eip155:8453/erc20:0x833589fcd6edb6e08f4c7c32d4f71b54bda02913", + "chainId": 8453, + "coingeckoId": "usd-coin", + "decimals": 6, + "iconUrl": "https://static.cx.metamask.io/api/v2/tokenIcons/assets/eip155/8453/erc20/0x833589fcd6edb6e08f4c7c32d4f71b54bda02913.png", + "metadata": { + "storage": { + "approval": 10, + "balance": 9 + } + }, + "name": "USD Coin", + "occurrences": 9, + "symbol": "USDC" + }, + "destChainId": 8453, + "destTokenAmount": "7823242", + "destWalletAddress": "0x141d32a89a1e0a5Ef360034a2f60a4B917c18838", + "feeData": { + "metabridge": { + "amount": "31757173115663", + "asset": { + "address": "0x0000000000000000000000000000000000000000", + "aggregators": [], + "assetId": "eip155:8453/slip44:60", + "chainId": 8453, + "coingeckoId": "ethereum", + "decimals": 18, + "iconUrl": "https://static.cx.metamask.io/api/v2/tokenIcons/assets/eip155/8453/slip44/60.png", + "metadata": {}, + "name": "Ether", + "occurrences": 100, + "symbol": "ETH" + }, + "baseBpsFee": 87.5, + "quoteBpsFee": 87.5 + }, + "txFee": { + "amount": "3086203306579", + "asset": { + "address": "0x0000000000000000000000000000000000000000", + "aggregators": [], + "assetId": "eip155:8453/slip44:60", + "chainId": 8453, + "coingeckoId": "ethereum", + "decimals": 18, + "iconUrl": "https://static.cx.metamask.io/api/v2/tokenIcons/assets/eip155/8453/slip44/60.png", + "metadata": {}, + "name": "Ether", + "occurrences": 100, + "symbol": "ETH" + }, + "maxFeePerGas": "6625001", + "maxPriorityFeePerGas": "1000001" + } + }, + "gasIncluded": true, + "gasIncluded7702": false, + "gasSponsored": false, + "minDestTokenAmount": "7666777", + "priceData": { + "priceImpact": "0.007890074521534677", + "totalFeeAmountUsd": "0.06904771607499911", + "totalFromAmountUsd": "7.89116755142865", + "totalToAmountUsd": "7.8222484482659995" + }, + "protocols": ["pancakeswap"], + "requestId": "0x64d1ae70589fe4973b979776af7de1ea7b082fb88ba4980b1afdaa9fbe894c60", + "slippage": 2, + "srcAsset": { + "address": "0x0000000000000000000000000000000000000000", + "aggregators": [], + "assetId": "eip155:8453/slip44:60", + "chainId": 8453, + "coingeckoId": "ethereum", + "decimals": 18, + "iconUrl": "https://static.cx.metamask.io/api/v2/tokenIcons/assets/eip155/8453/slip44/60.png", + "metadata": {}, + "name": "Ether", + "occurrences": 100, + "symbol": "ETH" + }, + "srcChainId": 8453, + "srcTokenAmount": "3594547836796469", + "steps": [], + "walletAddress": "0x141d32a89a1e0a5Ef360034a2f60a4B917c18838" + }, + "slippagePercentage": 0, + "startTime": 1774480304982, + "status": { + "srcChain": { + "chainId": 8453 + }, + "status": "PENDING" + }, + "txMetaId": "fe000000-289f-11f1-a5b4-213b64721d37" + }, + "ff06f2c0-18c7-11f1-89ad-555726da3d66": { + "account": "0xb3864b298f4fddbbbd2fa5cf1a2a2748932b3b81", + "batchId": "0xe6b10a6cc5c04b2fb47d8350157e03ea", + "estimatedProcessingTimeInSeconds": 0, + "hasApprovalTx": false, + "isStxEnabled": true, + "location": "Main View", + "originalTransactionId": "ff06f2c0-18c7-11f1-89ad-555726da3d66", + "pricingData": { + "amountSent": "0.001", + "amountSentInUsd": "0.651414337966", + "quotedGasAmount": "0.00000886665", + "quotedGasInUsd": "0.0057758629397262339", + "quotedReturnInUsd": "0.6460235926258800849293193672743880916975896" + }, + "quote": { + "aggregator": "uniswap", + "aggregatorType": "AGG", + "bridgeId": "uniswap", + "bridges": ["uniswap"], + "destAsset": { + "address": "0x55d398326f99059ff775485246999027b3197955", + "aggregators": [ + "pancakeExtended", + "oneInch", + "liFi", + "socket", + "squid", + "rango", + "sonarwatch", + "sushiSwap" + ], + "assetId": "eip155:56/erc20:0x55d398326f99059ff775485246999027b3197955", + "chainId": 56, + "coingeckoId": "binance-bridged-usdt-bnb-smart-chain", + "decimals": 18, + "iconUrl": "https://static.cx.metamask.io/api/v2/tokenIcons/assets/eip155/56/erc20/0x55d398326f99059ff775485246999027b3197955.png", + "metadata": { + "storage": { + "approval": 2, + "balance": 1 + } + }, + "name": "Tether USD", + "occurrences": 8, + "symbol": "USDT" + }, + "destChainId": 56, + "destTokenAmount": "646023592626227062", + "destWalletAddress": "0xb3864B298f4fDdbbBd2Fa5CF1a2a2748932b3B81", + "feeData": { + "metabridge": { + "amount": "8750000000000", + "asset": { + "address": "0x0000000000000000000000000000000000000000", + "aggregators": [], + "assetId": "eip155:56/slip44:714", + "chainId": 56, + "coingeckoId": "binancecoin", + "decimals": 18, + "iconUrl": "https://static.cx.metamask.io/api/v2/tokenIcons/assets/eip155/56/slip44/714.png", + "metadata": {}, + "name": "Binance Coin", + "occurrences": 100, + "symbol": "BNB" + }, + "baseBpsFee": 87.5, + "quoteBpsFee": 87.5 + } + }, + "gasIncluded7702": false, + "gasSponsored": false, + "minDestTokenAmount": "633103120773702520", + "priceData": { + "priceImpact": "-0.0005394728595233107", + "totalFeeAmountUsd": "0.0056980875", + "totalFromAmountUsd": "0.6512100000000001", + "totalToAmountUsd": "0.6458601486572927" + }, + "protocols": ["uniswap"], + "requestId": "0x4f3e13e067d39a0c9c040394b11826bc21f23c29232e2ba33807cbfc606fc206", + "slippage": 2, + "srcAsset": { + "address": "0x0000000000000000000000000000000000000000", + "aggregators": [], + "assetId": "eip155:56/slip44:714", + "chainId": 56, + "coingeckoId": "binancecoin", + "decimals": 18, + "iconUrl": "https://static.cx.metamask.io/api/v2/tokenIcons/assets/eip155/56/slip44/714.png", + "metadata": {}, + "name": "Binance Coin", + "occurrences": 100, + "symbol": "BNB" + }, + "srcChainId": 56, + "srcTokenAmount": "991250000000000", + "steps": [], + "walletAddress": "0xb3864B298f4fDdbbBd2Fa5CF1a2a2748932b3B81" + }, + "slippagePercentage": 0, + "startTime": 1772738267959, + "status": { + "srcChain": { + "chainId": 56 + }, + "status": "PENDING" + }, + "txMetaId": "ff06f2c0-18c7-11f1-89ad-555726da3d66" + } + }, + "ensEntries": { + "0x1": { + ".": { + "address": "0x00000000000C2E074eC69A0dFb2997BA6C7d2e1e", + "chainId": "0x1", + "ensName": "." + } + }, + "0x3": { + ".": { + "address": "0x00000000000C2E074eC69A0dFb2997BA6C7d2e1e", + "chainId": "0x3", + "ensName": "." + } + }, + "0x4": { + ".": { + "address": "0x00000000000C2E074eC69A0dFb2997BA6C7d2e1e", + "chainId": "0x4", + "ensName": "." + } + }, + "0x5": { + ".": { + "address": "0x00000000000C2E074eC69A0dFb2997BA6C7d2e1e", + "chainId": "0x5", + "ensName": "." + } + }, + "0x4268": { + ".": { + "address": "0x00000000000C2E074eC69A0dFb2997BA6C7d2e1e", + "chainId": "0x4268", + "ensName": "." + } + }, + "0xaa36a7": { + ".": { + "address": "0x00000000000C2E074eC69A0dFb2997BA6C7d2e1e", + "chainId": "0xaa36a7", + "ensName": "." + } + } + }, + "ensResolutionsByAddress": {}, + "pendingApprovals": {}, + "pendingApprovalCount": 0, + "approvalFlows": [], + "passkeyRecord": null, + "location": "US-CA", + "status": "complete", + "lastFetchedAt": 1779126365843, + "error": null, + "activeProvider": "hyperliquid", + "isTestnet": false, + "initializationState": "uninitialized", + "initializationError": null, + "initializationAttempts": 0, + "accountState": null, + "perpsBalances": {}, + "depositInProgress": false, + "lastDepositResult": null, + "withdrawInProgress": false, + "lastDepositTransactionId": null, + "lastWithdrawResult": null, + "lastCompletedWithdrawalTimestamp": null, + "lastCompletedWithdrawalTxHashes": [], + "withdrawalRequests": [], + "withdrawalProgress": { + "activeWithdrawalId": null, + "lastUpdated": 0, + "progress": 0 + }, + "depositRequests": [], + "lastError": "CLIENT_NOT_INITIALIZED", + "lastUpdateTimestamp": 1779122367417, + "isEligible": true, + "isFirstTimeUser": { + "mainnet": true, + "testnet": true + }, + "hasPlacedFirstOrder": { + "mainnet": false, + "testnet": false + }, + "watchlistMarkets": { + "mainnet": [], + "testnet": [] + }, + "tradeConfigurations": { + "mainnet": {}, + "testnet": {} + }, + "marketFilterPreferences": { + "direction": "desc", + "optionId": "volume" + }, + "hip3ConfigVersion": 6, + "selectedPaymentToken": null, + "cachedMarketDataByProvider": {}, + "cachedUserDataByProvider": {}, + "versionInfo": [], + "storageMetadata": [], + "methodData": {}, + "transactionBatches": [], + "lastFetchedBlockNumbers": {}, + "submitHistory": [ + { + "chainId": "0x38", + "hash": "0x5401970c5672b7b813dd54f1f709604848b2625f0ca64f3e67eeaef4579d0d26", + "networkType": "9a1eafde-5f04-434b-b011-e9de5c50baf0", + "networkUrl": "https://bsc-mainnet.infura.io/v3/b6bf7d3508c941499b10025c0776eaf8", + "origin": "metamask", + "rawTransaction": "0x02f905d138558402faf0808402faf08083042d9994141d32a89a1e0a5ef360034a2f60a4b917c1883880b90564e9ae5c530100000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000004000000000000000000000000000000000000000000000000000000000000005000000000000000000000000000000000000000000000000000000000000000020000000000000000000000000000000000000000000000000000000000000000200000000000000000000000000000000000000000000000000000000000000400000000000000000000000000000000000000000000000000000000000000120000000000000000000000000f8a0bf9cf54bb92f17374d9e9a321e6a111a51bd000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000600000000000000000000000000000000000000000000000000000000000000044095ea7b30000000000000000000000001a1ec25dc08e98e5e93f1104b5e5cdd298707d3100000000000000000000000000000000000000000000000003ebbdcb7fcd807d000000000000000000000000000000000000000000000000000000000000000000000000000000001a1ec25dc08e98e5e93f1104b5e5cdd298707d310000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000003055f5755290000000000000000000000000000000000000000000000000000000000000080000000000000000000000000f8a0bf9cf54bb92f17374d9e9a321e6a111a51bd00000000000000000000000000000000000000000000000003ebbdcb7fcd807d00000000000000000000000000000000000000000000000000000000000000c0000000000000000000000000000000000000000000000000000000000000001b70616e63616b6553776170526f7574657246656544796e616d696300000000000000000000000000000000000000000000000000000000000000000000000220000000000000000000000000f8a0bf9cf54bb92f17374d9e9a321e6a111a51bd00000000000000000000000055d398326f99059ff775485246999027b319795500000000000000000000000000000000000000000000000003ebbdcb7fcd807d000000000000000000000000000000000000000000000000280162ef76ef688a0000000000000000000000000000000000000000000000000000000000000120000000000000000000000000000000000000000000000000005c3f84e6a5523f000000000000000000000000b28da7bc87a9dd1e60849aa7fcb5da24ea913c42000000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000000000e4472b43f300000000000000000000000000000000000000000000000003ebbdcb7fcd807d000000000000000000000000000000000000000000000000285fec8af4196baa0000000000000000000000000000000000000000000000000000000000000080000000000000000000000000c590175e458b83680867afd273527ff58f74c02b0000000000000000000000000000000000000000000000000000000000000002000000000000000000000000f8a0bf9cf54bb92f17374d9e9a321e6a111a51bd00000000000000000000000055d398326f99059ff775485246999027b319795500000000000000000000000000000000000000000000000000000000ad000000000000000000000000000000000000000000000000000000c080a096bc689b88244941ce2459410d89a79948efa0dd360fa63d380fe458f2fb6e5ca04573389a3205a4b9a5516596823113efd11d657c2449ee2ba47f38fe6cf848c2", + "time": 1778802916058, + "transaction": { + "data": "0xe9ae5c530100000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000004000000000000000000000000000000000000000000000000000000000000005000000000000000000000000000000000000000000000000000000000000000020000000000000000000000000000000000000000000000000000000000000000200000000000000000000000000000000000000000000000000000000000000400000000000000000000000000000000000000000000000000000000000000120000000000000000000000000f8a0bf9cf54bb92f17374d9e9a321e6a111a51bd000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000600000000000000000000000000000000000000000000000000000000000000044095ea7b30000000000000000000000001a1ec25dc08e98e5e93f1104b5e5cdd298707d3100000000000000000000000000000000000000000000000003ebbdcb7fcd807d000000000000000000000000000000000000000000000000000000000000000000000000000000001a1ec25dc08e98e5e93f1104b5e5cdd298707d310000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000003055f5755290000000000000000000000000000000000000000000000000000000000000080000000000000000000000000f8a0bf9cf54bb92f17374d9e9a321e6a111a51bd00000000000000000000000000000000000000000000000003ebbdcb7fcd807d00000000000000000000000000000000000000000000000000000000000000c0000000000000000000000000000000000000000000000000000000000000001b70616e63616b6553776170526f7574657246656544796e616d696300000000000000000000000000000000000000000000000000000000000000000000000220000000000000000000000000f8a0bf9cf54bb92f17374d9e9a321e6a111a51bd00000000000000000000000055d398326f99059ff775485246999027b319795500000000000000000000000000000000000000000000000003ebbdcb7fcd807d000000000000000000000000000000000000000000000000280162ef76ef688a0000000000000000000000000000000000000000000000000000000000000120000000000000000000000000000000000000000000000000005c3f84e6a5523f000000000000000000000000b28da7bc87a9dd1e60849aa7fcb5da24ea913c42000000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000000000e4472b43f300000000000000000000000000000000000000000000000003ebbdcb7fcd807d000000000000000000000000000000000000000000000000285fec8af4196baa0000000000000000000000000000000000000000000000000000000000000080000000000000000000000000c590175e458b83680867afd273527ff58f74c02b0000000000000000000000000000000000000000000000000000000000000002000000000000000000000000f8a0bf9cf54bb92f17374d9e9a321e6a111a51bd00000000000000000000000055d398326f99059ff775485246999027b319795500000000000000000000000000000000000000000000000000000000ad000000000000000000000000000000000000000000000000000000", + "from": "0x141d32a89a1e0a5ef360034a2f60a4b917c18838", + "gas": "0x42d99", + "gasLimit": "0x42d99", + "maxFeePerGas": "0x2faf080", + "maxPriorityFeePerGas": "0x2faf080", + "nonce": "0x55", + "to": "0x141d32a89a1e0a5ef360034a2f60a4b917c18838", + "type": "0x2", + "value": "0x0" + } + }, + { + "chainId": "0x89", + "hash": "0x88b9f974cf74422e0ea46099ba70819cfe157efd0c69cebb92038d891205b55b", + "networkType": "polygon-mainnet", + "networkUrl": "https://polygon-mainnet.infura.io/v3/{infuraProjectId}", + "origin": "metamask", + "rawTransaction": "0x02f8b281895e851ccc4c5980856cc007c3de82e6cf94c2132d05d31c914a87c6611c10748aeb04b58e8f80b844095ea7b30000000000000000000000001a1ec25dc08e98e5e93f1104b5e5cdd298707d310000000000000000000000000000000000000000000000000000000000065676c001a0f3e80e476118b31d2c248f044281ea8e73210789a24293cfc9d3924861bb7b90a03726441d512e063c2ae3804ac6e99f1eb2bc874dcf0ed9c0665fa94579838e2e", + "time": 1778785382904, + "transaction": { + "data": "0x095ea7b30000000000000000000000001a1ec25dc08e98e5e93f1104b5e5cdd298707d310000000000000000000000000000000000000000000000000000000000065676", + "from": "0x141d32a89a1e0a5ef360034a2f60a4b917c18838", + "gas": "0xe6cf", + "gasLimit": "0xe6cf", + "maxFeePerGas": "0x6cc007c3de", + "maxPriorityFeePerGas": "0x1ccc4c5980", + "nonce": "0x5e", + "to": "0xc2132d05d31c914a87c6611c10748aeb04b58e8f", + "type": "0x2", + "value": "0x0" + } + }, + { + "chainId": "0xa86a", + "hash": "0x48a711af5af1500af1e2fe4911c94f482fbd2003be27422c6e39a4520695924a", + "networkType": "d6eb1507-ce8a-40d4-ba91-1e8231b1f2a3", + "networkUrl": "https://avalanche-mainnet.infura.io/v3/b6bf7d3508c941499b10025c0776eaf8", + "origin": "metamask", + "rawTransaction": "0x02f9103482a86a018459682f00845be1c9e2830d7915941a1ec25dc08e98e5e93f1104b5e5cdd298707d3180b90fc55f5755290000000000000000000000000000000000000000000000000000000000000080000000000000000000000000b97ef9ef8734c71904d8002f8b6bc66dd9c48a6e0000000000000000000000000000000000000000000000000000000000c0b1d200000000000000000000000000000000000000000000000000000000000000c000000000000000000000000000000000000000000000000000000000000000136b796265725377617046656544796e616d6963000000000000000000000000000000000000000000000000000000000000000000000000000000000000000ee0000000000000000000000000b97ef9ef8734c71904d8002f8b6bc66dd9c48a6e00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000bf02300000000000000000000000000000000000000000000000001191a5a61fb7f8980000000000000000000000000000000000000000000000000000000000000120000000000000000000000000000000000000000000000000000000000001afa2000000000000000000000000ef320f172714eab39ef6df6ee23a29d2467b6fbf00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000da4e21fd0e9000000000000000000000000000000000000000000000000000000000000002000000000000000000000000063242a4ea82847b20e506b63b0e2e2eff0cc6cb0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000a00000000000000000000000000000000000000000000000000000000000000a600000000000000000000000000000000000000000000000000000000000000ca000000000000000000000000000000000000000000000000000000000000009a000000000000000000000000000bf023000000000000000000000000000bf0230000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000000e000000000000000000000000000000000000000000000000000000000000000412210122a98dba052bb217d2c4a636d5b2e6ce9a61d2f8b22340bdcf3c99495ab484cc097e258e683244d728c48d80093c01a810037ff6d32f4b495f1ce8571671c0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000008a0000000000000000000000000c590175e458b83680867afd273527ff58f74c02b0000000000000000000000000000000000000000000000000000000000000140000000000000000000000000000000000000000000000000000000000000018000000000000000000000000000b5754700000000000000000000000000c88f1800000000000000000000000000bf0230000000000000000011ed6f8f6448c96e0000000000000000000000000000000000012cc5f496f20000000f42400000000000000000000000000000004f82e73edb06d29ff62c91ec8f5ff06571bdeb2900000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000069e15adc0000000000000000000000000000000000000000000000000000000000000880000000000000000000000000000000000000000000000000000000000000000161f598cd00000000000000003261c1bf28a7663c8ecccf14914a2c02ce17e566000000000000000000000000000000000000000000000000000000000000000500000000000000000000000000000000000000000000000000000000000000a0000000000000000000000000000000000000000000000000000000000000022000000000000000000000000000000000000000000000000000000000000003a000000000000000000000000000000000000000000000000000000000000005200000000000000000000000000000000000000000000000000000000000000660000000000000000000000000b97ef9ef8734c71904d8002f8b6bc66dd9c48a6e8000000000000000000000000000000c00000000000000000000000000bf02300000000000000000000000000000000000000000000000000000000000000060000000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000000000200000000000000000000000000000000000000000000000000000000000bf02303b9d6e0900000000000000015455c918e405a2831fbff8595c0aae35ee3db9d1000000000000000000000000000000000000000000000000000000000000008000000000000000000000000063242a4ea82847b20e506b63b0e2e2eff0cc6cb000000000000000000000000000000000000000000000000000000000000000400000000000000000000000001150403b19315615aad1638d9dd86cd866b2f456000000000000000000000000000000000000270ffdbe72847b89e899461529a80000000000000000000000009702230a8ea53601f5cd2dc00fdbc13d4df4a8c78000000000000000000000000000000c00000000000000000000000000bef2ed0000000000000000000000000000000000000000000000000000000000000060000000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000000000200000000000000000000000000000000000000000000000000000000000bef2ed6efd106f00000000000000020c3b706efa1da39450c968e669fdc442fc375021000000000000000000000000000000000000000000000000000000000000008000000000000000000000000063242a4ea82847b20e506b63b0e2e2eff0cc6cb000000000000000000000000000000000000000000000000000000000000000400000000000000000000000001abe428146795bc754170af24cfd78663f257d29000000000000000000000000ff120d460d67f1db5b71087bd404babb342b598700000000000000000000000049d5c2bdffac6ce2bfdb6640f4f80f226bc10bab8000000000000000000000013e6e606700000000000000000012fadfb68adb790000000000000000000000000000000000000000000000000000000000000060000000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000000000200000000000000000000000000000000000000000000000000012fadfb68adb793b9d6e0900000000000000035455c918e405a2831fbff8595c0aae35ee3db9d1000000000000000000000000000000000000000000000000000000000000008000000000000000000000000063242a4ea82847b20e506b63b0e2e2eff0cc6cb00000000000000000000000000000000000000000000000000000000000000040000000000000000000000000840c5f0167e3a335be0938916962c38c16b948df0000000000000000000000000000000000000000000000000000000100ad139d000000000000000000000000b31f66aa3c1e785363f0875a1b74e27b85fd66c780000000000000000000012cc5f496f2000000000000000011ed6f8f6448c96e00000000000000000000000000000000000000000000000000000000000000600000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000002000000000000000000000000000000000000000000000000011ed6f8f6448c96e0000000000000000000000040000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000008000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000eeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeee8000000000000000000000000000000100000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000b97ef9ef8734c71904d8002f8b6bc66dd9c48a6e000000000000000000000000eeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeee000000000000000000000000000000000000000000000000000000000000016000000000000000000000000000000000000000000000000000000000000001a000000000000000000000000000000000000000000000000000000000000001e00000000000000000000000000000000000000000000000000000000000000200000000000000000000000000c590175e458b83680867afd273527ff58f74c02b0000000000000000000000000000000000000000000000000000000000bf02300000000000000000000000000000000000000000000000001191a5a61fb7f89800000000000000000000000000000000000000000000000000000000000002000000000000000000000000000000000000000000000000000000000000000220000000000000000000000000000000000000000000000000000000000000000100000000000000000000000063242a4ea82847b20e506b63b0e2e2eff0cc6cb000000000000000000000000000000000000000000000000000000000000000010000000000000000000000000000000000000000000000000000000000bf023000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000b17b22536f75726365223a226d6574616d61736b222c22416d6f756e74496e555344223a2231322e343934363635222c22416d6f756e744f7574555344223a2231322e353031393836222c22416d6f756e744f7574223a2231323931383131333239373738363938363035222c22526f7574654944223a22663463316332306531784248424c31503a62356263653766334c6e5a4c495a7331222c2254696d657374616d70223a313737363337353334307d0000000000000000000000000000000000000000000000000000000000000000000000000000000000000078c001a0cbabadc542f15708b7c11514f69db6c49c14344e86eed2b6288cd4f756e8e7a1a009408178fac4c6755f35256b809e19756b9ba88103515af09c84000a5aee1a7f", + "time": 1776375343730, + "transaction": { + "data": "0x5f5755290000000000000000000000000000000000000000000000000000000000000080000000000000000000000000b97ef9ef8734c71904d8002f8b6bc66dd9c48a6e0000000000000000000000000000000000000000000000000000000000c0b1d200000000000000000000000000000000000000000000000000000000000000c000000000000000000000000000000000000000000000000000000000000000136b796265725377617046656544796e616d6963000000000000000000000000000000000000000000000000000000000000000000000000000000000000000ee0000000000000000000000000b97ef9ef8734c71904d8002f8b6bc66dd9c48a6e00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000bf02300000000000000000000000000000000000000000000000001191a5a61fb7f8980000000000000000000000000000000000000000000000000000000000000120000000000000000000000000000000000000000000000000000000000001afa2000000000000000000000000ef320f172714eab39ef6df6ee23a29d2467b6fbf00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000da4e21fd0e9000000000000000000000000000000000000000000000000000000000000002000000000000000000000000063242a4ea82847b20e506b63b0e2e2eff0cc6cb0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000a00000000000000000000000000000000000000000000000000000000000000a600000000000000000000000000000000000000000000000000000000000000ca000000000000000000000000000000000000000000000000000000000000009a000000000000000000000000000bf023000000000000000000000000000bf0230000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000000e000000000000000000000000000000000000000000000000000000000000000412210122a98dba052bb217d2c4a636d5b2e6ce9a61d2f8b22340bdcf3c99495ab484cc097e258e683244d728c48d80093c01a810037ff6d32f4b495f1ce8571671c0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000008a0000000000000000000000000c590175e458b83680867afd273527ff58f74c02b0000000000000000000000000000000000000000000000000000000000000140000000000000000000000000000000000000000000000000000000000000018000000000000000000000000000b5754700000000000000000000000000c88f1800000000000000000000000000bf0230000000000000000011ed6f8f6448c96e0000000000000000000000000000000000012cc5f496f20000000f42400000000000000000000000000000004f82e73edb06d29ff62c91ec8f5ff06571bdeb2900000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000069e15adc0000000000000000000000000000000000000000000000000000000000000880000000000000000000000000000000000000000000000000000000000000000161f598cd00000000000000003261c1bf28a7663c8ecccf14914a2c02ce17e566000000000000000000000000000000000000000000000000000000000000000500000000000000000000000000000000000000000000000000000000000000a0000000000000000000000000000000000000000000000000000000000000022000000000000000000000000000000000000000000000000000000000000003a000000000000000000000000000000000000000000000000000000000000005200000000000000000000000000000000000000000000000000000000000000660000000000000000000000000b97ef9ef8734c71904d8002f8b6bc66dd9c48a6e8000000000000000000000000000000c00000000000000000000000000bf02300000000000000000000000000000000000000000000000000000000000000060000000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000000000200000000000000000000000000000000000000000000000000000000000bf02303b9d6e0900000000000000015455c918e405a2831fbff8595c0aae35ee3db9d1000000000000000000000000000000000000000000000000000000000000008000000000000000000000000063242a4ea82847b20e506b63b0e2e2eff0cc6cb000000000000000000000000000000000000000000000000000000000000000400000000000000000000000001150403b19315615aad1638d9dd86cd866b2f456000000000000000000000000000000000000270ffdbe72847b89e899461529a80000000000000000000000009702230a8ea53601f5cd2dc00fdbc13d4df4a8c78000000000000000000000000000000c00000000000000000000000000bef2ed0000000000000000000000000000000000000000000000000000000000000060000000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000000000200000000000000000000000000000000000000000000000000000000000bef2ed6efd106f00000000000000020c3b706efa1da39450c968e669fdc442fc375021000000000000000000000000000000000000000000000000000000000000008000000000000000000000000063242a4ea82847b20e506b63b0e2e2eff0cc6cb000000000000000000000000000000000000000000000000000000000000000400000000000000000000000001abe428146795bc754170af24cfd78663f257d29000000000000000000000000ff120d460d67f1db5b71087bd404babb342b598700000000000000000000000049d5c2bdffac6ce2bfdb6640f4f80f226bc10bab8000000000000000000000013e6e606700000000000000000012fadfb68adb790000000000000000000000000000000000000000000000000000000000000060000000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000000000200000000000000000000000000000000000000000000000000012fadfb68adb793b9d6e0900000000000000035455c918e405a2831fbff8595c0aae35ee3db9d1000000000000000000000000000000000000000000000000000000000000008000000000000000000000000063242a4ea82847b20e506b63b0e2e2eff0cc6cb00000000000000000000000000000000000000000000000000000000000000040000000000000000000000000840c5f0167e3a335be0938916962c38c16b948df0000000000000000000000000000000000000000000000000000000100ad139d000000000000000000000000b31f66aa3c1e785363f0875a1b74e27b85fd66c780000000000000000000012cc5f496f2000000000000000011ed6f8f6448c96e00000000000000000000000000000000000000000000000000000000000000600000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000002000000000000000000000000000000000000000000000000011ed6f8f6448c96e0000000000000000000000040000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000008000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000eeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeee8000000000000000000000000000000100000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000b97ef9ef8734c71904d8002f8b6bc66dd9c48a6e000000000000000000000000eeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeee000000000000000000000000000000000000000000000000000000000000016000000000000000000000000000000000000000000000000000000000000001a000000000000000000000000000000000000000000000000000000000000001e00000000000000000000000000000000000000000000000000000000000000200000000000000000000000000c590175e458b83680867afd273527ff58f74c02b0000000000000000000000000000000000000000000000000000000000bf02300000000000000000000000000000000000000000000000001191a5a61fb7f89800000000000000000000000000000000000000000000000000000000000002000000000000000000000000000000000000000000000000000000000000000220000000000000000000000000000000000000000000000000000000000000000100000000000000000000000063242a4ea82847b20e506b63b0e2e2eff0cc6cb000000000000000000000000000000000000000000000000000000000000000010000000000000000000000000000000000000000000000000000000000bf023000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000b17b22536f75726365223a226d6574616d61736b222c22416d6f756e74496e555344223a2231322e343934363635222c22416d6f756e744f7574555344223a2231322e353031393836222c22416d6f756e744f7574223a2231323931383131333239373738363938363035222c22526f7574654944223a22663463316332306531784248424c31503a62356263653766334c6e5a4c495a7331222c2254696d657374616d70223a313737363337353334307d0000000000000000000000000000000000000000000000000000000000000000000000000000000000000078", + "from": "0x141d32a89a1e0a5ef360034a2f60a4b917c18838", + "gas": "0xd7915", + "gasLimit": "0xd7915", + "maxFeePerGas": "0x5be1c9e2", + "maxPriorityFeePerGas": "0x59682f00", + "nonce": "0x1", + "to": "0x1a1ec25dc08e98e5e93f1104b5e5cdd298707d31", + "type": "0x2", + "value": "0x0" + } + }, + { + "chainId": "0xa86a", + "hash": "0xdc14a79f7b195b493dbb5390d529c9aa043939887e6f8033524b22fe90efa6a6", + "networkType": "d6eb1507-ce8a-40d4-ba91-1e8231b1f2a3", + "networkUrl": "https://avalanche-mainnet.infura.io/v3/b6bf7d3508c941499b10025c0776eaf8", + "origin": "metamask", + "rawTransaction": "0x02f8b182a86a808459682f00845be1c9e282dbb094b97ef9ef8734c71904d8002f8b6bc66dd9c48a6e80b844095ea7b30000000000000000000000001a1ec25dc08e98e5e93f1104b5e5cdd298707d310000000000000000000000000000000000000000000000000000000000c0b1d2c080a0c0611cf3441b02f85a23fa9df37dce4264564dd642eef506e2acf86adff69171a056a50849d9e45f028f1b19f7bab9f6071ff706810b88059157a809bd86d5ae9f", + "time": 1776375343415, + "transaction": { + "data": "0x095ea7b30000000000000000000000001a1ec25dc08e98e5e93f1104b5e5cdd298707d310000000000000000000000000000000000000000000000000000000000c0b1d2", + "from": "0x141d32a89a1e0a5ef360034a2f60a4b917c18838", + "gas": "0xdbb0", + "gasLimit": "0xdbb0", + "maxFeePerGas": "0x5be1c9e2", + "maxPriorityFeePerGas": "0x59682f00", + "nonce": "0x0", + "to": "0xb97ef9ef8734c71904d8002f8b6bc66dd9c48a6e", + "type": "0x2", + "value": "0x0" + } + }, + { + "chainId": "0x1", + "hash": "0x400089af7cf7bdf032a84d27c3dab0a0a1326f8ef62f94ee260c70bfcb82b43b", + "networkType": "mainnet", + "networkUrl": "https://mainnet.infura.io/v3/{infuraProjectId}", + "origin": "metamask", + "rawTransaction": "0x02f902f90136847d2b75018485a05cbb830182f0940439e60f02a8900a951603950d8d4527f400c3f18730c5f60297e7d9b902853ce33bff000000000000000000000000000000000000000000000000000000000000008000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000030c5f60297e7d900000000000000000000000000000000000000000000000000000000000000c0000000000000000000000000000000000000000000000000000000000000000e72656c617941646170746572563200000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001a00000000000000000000000004cd00e387622c35bddb9b4c962c136462338bc310000000000000000000000004cd00e387622c35bddb9b4c962c136462338bc31000000000000000000000000000000000000000000000000000000000000a4b100000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000003056f109a7a576000000000000000000000000000000000000000000000000000000000000014000000000000000000000000000000000000000000000000000006f04f8f04263000000000000000000000000e6b738da243e8fa2a0ed5915645789add5de5152000000000000000000000000000000000000000000000000000000000000004449290c1c000000000000000000000000141d32a89a1e0a5ef360034a2f60a4b917c18838467ded05917cefa50e95b3a483ac35dd45f4a6712ab67d5fc9b8a29617cbde7800000000000000000000000000000000000000000000000000000000dec080a0113ff3342553bb5116ebbe761cee6d370e10f32140609a09befcdde470261adba029fe445e0c5c33d22e8c076d6582dabfce8c99f3dd31af39d81ae6af78c4dfb5", + "time": 1776375174219, + "transaction": { + "data": "0x3ce33bff000000000000000000000000000000000000000000000000000000000000008000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000030c5f60297e7d900000000000000000000000000000000000000000000000000000000000000c0000000000000000000000000000000000000000000000000000000000000000e72656c617941646170746572563200000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001a00000000000000000000000004cd00e387622c35bddb9b4c962c136462338bc310000000000000000000000004cd00e387622c35bddb9b4c962c136462338bc31000000000000000000000000000000000000000000000000000000000000a4b100000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000003056f109a7a576000000000000000000000000000000000000000000000000000000000000014000000000000000000000000000000000000000000000000000006f04f8f04263000000000000000000000000e6b738da243e8fa2a0ed5915645789add5de5152000000000000000000000000000000000000000000000000000000000000004449290c1c000000000000000000000000141d32a89a1e0a5ef360034a2f60a4b917c18838467ded05917cefa50e95b3a483ac35dd45f4a6712ab67d5fc9b8a29617cbde7800000000000000000000000000000000000000000000000000000000de", + "from": "0x141d32a89a1e0a5ef360034a2f60a4b917c18838", + "gas": "0x182f0", + "gasLimit": "0x182f0", + "maxFeePerGas": "0x85a05cbb", + "maxPriorityFeePerGas": "0x7d2b7501", + "nonce": "0x36", + "to": "0x0439e60f02a8900a951603950d8d4527f400c3f1", + "type": "0x2", + "value": "0x30c5f60297e7d9" + } + }, + { + "chainId": "0xa4b1", + "hash": "0x8e50804fe5d9726e6f7a501f27ce71299a28320876c8508d6434e1cbab681dbd", + "networkType": "arbitrum-mainnet", + "networkUrl": "https://arbitrum-mainnet.infura.io/v3/{infuraProjectId}", + "origin": "metamask", + "rawTransaction": "0x02f902f782a4b12b01840158b2318302177c9423981fc34e69eedfe2bd9a0a9fcb0719fe09dbfc8731f8ee5657d8d7b902853ce33bff000000000000000000000000000000000000000000000000000000000000008000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000031f8ee5657d8d700000000000000000000000000000000000000000000000000000000000000c0000000000000000000000000000000000000000000000000000000000000000e72656c617941646170746572563200000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001a00000000000000000000000004cd00e387622c35bddb9b4c962c136462338bc310000000000000000000000004cd00e387622c35bddb9b4c962c136462338bc31000000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000003188f7dce8118c000000000000000000000000000000000000000000000000000000000000014000000000000000000000000000000000000000000000000000006ff6796fc74b00000000000000000000000056ca675c3633cc16bd6849e2b431d4e8de5e23bf000000000000000000000000000000000000000000000000000000000000004449290c1c000000000000000000000000141d32a89a1e0a5ef360034a2f60a4b917c18838d2625815fbdf1c8919355a0504501d72d0c4fb9298773f1feed1f323785582e00000000000000000000000000000000000000000000000000000000013c001a07ac8c0da1c532cd5ebbef36c861896cdf8293ad06c1bf167a577f9b9bfb85019a074b6811e09c82e03eb51562cf185bbfd5f92d73ea39a3bb7801e6a682b9a5822", + "time": 1776375085813, + "transaction": { + "data": "0x3ce33bff000000000000000000000000000000000000000000000000000000000000008000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000031f8ee5657d8d700000000000000000000000000000000000000000000000000000000000000c0000000000000000000000000000000000000000000000000000000000000000e72656c617941646170746572563200000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001a00000000000000000000000004cd00e387622c35bddb9b4c962c136462338bc310000000000000000000000004cd00e387622c35bddb9b4c962c136462338bc31000000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000003188f7dce8118c000000000000000000000000000000000000000000000000000000000000014000000000000000000000000000000000000000000000000000006ff6796fc74b00000000000000000000000056ca675c3633cc16bd6849e2b431d4e8de5e23bf000000000000000000000000000000000000000000000000000000000000004449290c1c000000000000000000000000141d32a89a1e0a5ef360034a2f60a4b917c18838d2625815fbdf1c8919355a0504501d72d0c4fb9298773f1feed1f323785582e00000000000000000000000000000000000000000000000000000000013", + "from": "0x141d32a89a1e0a5ef360034a2f60a4b917c18838", + "gas": "0x2177c", + "gasLimit": "0x2177c", + "maxFeePerGas": "0x158b231", + "maxPriorityFeePerGas": "0x1", + "nonce": "0x2b", + "to": "0x23981fc34e69eedfe2bd9a0a9fcb0719fe09dbfc", + "type": "0x2", + "value": "0x31f8ee5657d8d7" + } + }, + { + "chainId": "0x1", + "hash": "0xca8213d009d229e05f39dcd4400c0cbcfa8223c0749ed2d32b359eb0540a2ef3", + "networkType": "mainnet", + "networkUrl": "https://mainnet.infura.io/v3/{infuraProjectId}", + "origin": "metamask", + "rawTransaction": "0x02f902f90135847d2b750184840cc0ae830182f0940439e60f02a8900a951603950d8d4527f400c3f1873275f98a9082cfb902853ce33bff00000000000000000000000000000000000000000000000000000000000000800000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000003275f98a9082cf00000000000000000000000000000000000000000000000000000000000000c0000000000000000000000000000000000000000000000000000000000000000e72656c617941646170746572563200000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001a00000000000000000000000004cd00e387622c35bddb9b4c962c136462338bc310000000000000000000000004cd00e387622c35bddb9b4c962c136462338bc31000000000000000000000000000000000000000000000000000000000000a4b100000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000003203323223ca870000000000000000000000000000000000000000000000000000000000000140000000000000000000000000000000000000000000000000000072c7586cb848000000000000000000000000e6b738da243e8fa2a0ed5915645789add5de5152000000000000000000000000000000000000000000000000000000000000004449290c1c000000000000000000000000141d32a89a1e0a5ef360034a2f60a4b917c188381035d4e4d6bbeee624d6720ec2f36cee54c7b1f5a981f67c94dc2be864c9a490000000000000000000000000000000000000000000000000000000004ec080a06368063fee71fabff59c208b54692159d12c47a5a6fa62f0c5aacf3c783c432fa04a41744290dc6f9587a31036eda090e3f1fcea9bfc8021a857348f756a4f55ce", + "time": 1776375045523, + "transaction": { + "data": "0x3ce33bff00000000000000000000000000000000000000000000000000000000000000800000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000003275f98a9082cf00000000000000000000000000000000000000000000000000000000000000c0000000000000000000000000000000000000000000000000000000000000000e72656c617941646170746572563200000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001a00000000000000000000000004cd00e387622c35bddb9b4c962c136462338bc310000000000000000000000004cd00e387622c35bddb9b4c962c136462338bc31000000000000000000000000000000000000000000000000000000000000a4b100000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000003203323223ca870000000000000000000000000000000000000000000000000000000000000140000000000000000000000000000000000000000000000000000072c7586cb848000000000000000000000000e6b738da243e8fa2a0ed5915645789add5de5152000000000000000000000000000000000000000000000000000000000000004449290c1c000000000000000000000000141d32a89a1e0a5ef360034a2f60a4b917c188381035d4e4d6bbeee624d6720ec2f36cee54c7b1f5a981f67c94dc2be864c9a490000000000000000000000000000000000000000000000000000000004e", + "from": "0x141d32a89a1e0a5ef360034a2f60a4b917c18838", + "gas": "0x182f0", + "gasLimit": "0x182f0", + "maxFeePerGas": "0x840cc0ae", + "maxPriorityFeePerGas": "0x7d2b7501", + "nonce": "0x35", + "to": "0x0439e60f02a8900a951603950d8d4527f400c3f1", + "type": "0x2", + "value": "0x3275f98a9082cf" + } + }, + { + "chainId": "0x1", + "hash": "0xf64f465a4b4639b9ae2ad7cb53088b42ce1c1c797666a6824f4ec80e6c8d4cd0", + "networkType": "mainnet", + "networkUrl": "https://mainnet.infura.io/v3/{infuraProjectId}", + "origin": "metamask", + "rawTransaction": "0x04f8c90133847735940084832fbdc383010fc594141d32a89a1e0a5ef360034a2f60a4b917c188388080c0f85cf85a019463c0c19a282a1b52b07dd5a65b58948a07dae32b3480a0fb0bc6e688b0e01810b6e373313696a3e12ac017278b94c892e51caec6628fcca00d4c5cb41d97686c7b5a42d2c19ea5acf20b6e55d7a6623d63f4a6d34756ed8a01a03a6fb7be79952478d100ba63191f0899cef61187dce5c00e39d9b05f898a6396a011e1e3f37e0f119bf23071936bf4be330fec944c4f5e22a9cd71c297179bad00", + "time": 1776374997544, + "transaction": { + "authorizationList": [ + { + "address": "0x63c0c19a282a1B52b07dD5a65b58948A07DAE32B", + "chainId": "0x1", + "nonce": "0x34", + "r": "0xfb0bc6e688b0e01810b6e373313696a3e12ac017278b94c892e51caec6628fcc", + "s": "0x0d4c5cb41d97686c7b5a42d2c19ea5acf20b6e55d7a6623d63f4a6d34756ed8a", + "yParity": "0x0" + } + ], + "from": "0x141d32a89a1e0a5ef360034a2f60a4b917c18838", + "gas": "0x10fc5", + "gasLimit": "0x10fc5", + "maxFeePerGas": "0x832fbdc3", + "maxPriorityFeePerGas": "0x77359400", + "nonce": "0x33", + "to": "0x141d32a89a1e0a5ef360034a2f60a4b917c18838", + "type": "0x4", + "value": "0x0" + } + }, + { + "chainId": "0xa4b1", + "hash": "0x6be89108da0ad03063ffa6379f1f718baa52e95147f304f1da51d266ca3f1490", + "networkType": "arbitrum-mainnet", + "networkUrl": "https://arbitrum-mainnet.infura.io/v3/{infuraProjectId}", + "origin": "metamask", + "rawTransaction": "0x04f8c882a4b1298084019c1c6482daca94141d32a89a1e0a5ef360034a2f60a4b917c188388080c0f85ef85c82a4b19463c0c19a282a1b52b07dd5a65b58948a07dae32b2a01a070e1d5ebfa0f9a458d4d2c59f420073b1ab5c519f2ecfd53aac1103e370ffaf1a06f284dbbe07f23c7aefdc5f945e25158fec575c9311e79bc1ec8665fb53e58ed01a06ba4bc4f70f4e203a0096e0a094c41151c938437aec4c8b05db723539e0b424da0777923e24fab5372246edadb9437064430050073259739f4dd0317e139ba7d9d", + "time": 1776374975806, + "transaction": { + "authorizationList": [ + { + "address": "0x63c0c19a282a1B52b07dD5a65b58948A07DAE32B", + "chainId": "0xa4b1", + "nonce": "0x2a", + "r": "0x70e1d5ebfa0f9a458d4d2c59f420073b1ab5c519f2ecfd53aac1103e370ffaf1", + "s": "0x6f284dbbe07f23c7aefdc5f945e25158fec575c9311e79bc1ec8665fb53e58ed", + "yParity": "0x1" + } + ], + "from": "0x141d32a89a1e0a5ef360034a2f60a4b917c18838", + "gas": "0xdaca", + "gasLimit": "0xdaca", + "maxFeePerGas": "0x19c1c64", + "maxPriorityFeePerGas": "0x0", + "nonce": "0x29", + "to": "0x141d32a89a1e0a5ef360034a2f60a4b917c18838", + "type": "0x4", + "value": "0x0" + } + }, + { + "chainId": "0xa4b1", + "hash": "0xa3e05b352b25c37b607c8d6200bfad67e030cc1f1cccfbde23eca29fd25ef0f6", + "networkType": "arbitrum-mainnet", + "networkUrl": "https://arbitrum-mainnet.infura.io/v3/{infuraProjectId}", + "origin": "metamask", + "rawTransaction": "0x02f902f782a4b12801840159479b8301f2fc9423981fc34e69eedfe2bd9a0a9fcb0719fe09dbfc87232d9f0de6e60cb902853ce33bff0000000000000000000000000000000000000000000000000000000000000080000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000232d9f0de6e60c00000000000000000000000000000000000000000000000000000000000000c0000000000000000000000000000000000000000000000000000000000000000e72656c617941646170746572563200000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001a00000000000000000000000004cd00e387622c35bddb9b4c962c136462338bc310000000000000000000000004cd00e387622c35bddb9b4c962c136462338bc310000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000022decbd02a13e5000000000000000000000000000000000000000000000000000000000000014000000000000000000000000000000000000000000000000000004ed33dbcd227000000000000000000000000e3478b0bb1a5084567c319096437924948be1964000000000000000000000000000000000000000000000000000000000000004449290c1c000000000000000000000000141d32a89a1e0a5ef360034a2f60a4b917c188386787355ce639dea1fc3b63506d59cdc0cd151a13cc190e9f6ee8aac4a7a1063c0000000000000000000000000000000000000000000000000000000016c080a0084af2760cc86a3ce1f00c5784561cb1c518496d3cf79b931224c7287dcb179ca04c96c774af11d36c61f7feb03d3339ba043fd69ea2e3ebbc9f8b46c2a3dfc6f2", + "time": 1776373339053, + "transaction": { + "data": "0x3ce33bff0000000000000000000000000000000000000000000000000000000000000080000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000232d9f0de6e60c00000000000000000000000000000000000000000000000000000000000000c0000000000000000000000000000000000000000000000000000000000000000e72656c617941646170746572563200000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001a00000000000000000000000004cd00e387622c35bddb9b4c962c136462338bc310000000000000000000000004cd00e387622c35bddb9b4c962c136462338bc310000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000022decbd02a13e5000000000000000000000000000000000000000000000000000000000000014000000000000000000000000000000000000000000000000000004ed33dbcd227000000000000000000000000e3478b0bb1a5084567c319096437924948be1964000000000000000000000000000000000000000000000000000000000000004449290c1c000000000000000000000000141d32a89a1e0a5ef360034a2f60a4b917c188386787355ce639dea1fc3b63506d59cdc0cd151a13cc190e9f6ee8aac4a7a1063c0000000000000000000000000000000000000000000000000000000016", + "from": "0x141d32a89a1e0a5ef360034a2f60a4b917c18838", + "gas": "0x1f2fc", + "gasLimit": "0x1f2fc", + "maxFeePerGas": "0x159479b", + "maxPriorityFeePerGas": "0x1", + "nonce": "0x28", + "to": "0x23981fc34e69eedfe2bd9a0a9fcb0719fe09dbfc", + "type": "0x2", + "value": "0x232d9f0de6e60c" + } + }, + { + "chainId": "0x1", + "hash": "0xc9d456875588263b7a20cf6de1f6e0665e5702984a09b72fffa4376c7bce440e", + "networkType": "mainnet", + "networkUrl": "https://mainnet.infura.io/v3/{infuraProjectId}", + "origin": "metamask", + "rawTransaction": "0x02f908b9012d847d2b750184828fa6098304ea4594881d40237659c251811cec9c364ef91dc08d300c871609a52b2e216db908455f57552900000000000000000000000000000000000000000000000000000000000000800000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001609a52b2e216d00000000000000000000000000000000000000000000000000000000000000c00000000000000000000000000000000000000000000000000000000000000018756e69737761705065726d69743246656544796e616d6963000000000000000000000000000000000000000000000000000000000000000000000000000007600000000000000000000000000000000000000000000000000000000000000000000000000000000000000000aca92e438df0b2401ff60da7e4337b687a2435da000000000000000000000000000000000000000000000000001609a52b2e216d0000000000000000000000000000000000000000000000000000000000c7370300000000000000000000000000000000000000000000000000000000000001200000000000000000000000000000000000000000000000000000000000000000000000000000000000000000f326e4de8f66a0bdc0970b79e0924e33c79f19150000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000062e3593564c000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000000a00000000000000000000000000000000000000000000000000000000069cdc6fe00000000000000000000000000000000000000000000000000000000000000020b100000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000002000000000000000000000000000000000000000000000000000000000000004000000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000000000000000000000000000000400000000000000000000000000000000000000000000000000000000000000002000000000000000000000000000000000000000000000000001609a52b2e216d00000000000000000000000000000000000000000000000000000000000004a0000000000000000000000000000000000000000000000000000000000000004000000000000000000000000000000000000000000000000000000000000000800000000000000000000000000000000000000000000000000000000000000003070b0e0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000300000000000000000000000000000000000000000000000000000000000000600000000000000000000000000000000000000000000000000000000000000300000000000000000000000000000000000000000000000000000000000000038000000000000000000000000000000000000000000000000000000000000002800000000000000000000000000000000000000000000000000000000000000020000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc20000000000000000000000000000000000000000000000000000000000000080000000000000000000000000000000000000000000000000001609a52b2e216d0000000000000000000000000000000000000000000000000000000000c74b6b000000000000000000000000000000000000000000000000000000000000000200000000000000000000000000000000000000000000000000000000000000400000000000000000000000000000000000000000000000000000000000000100000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb4800000000000000000000000000000000000000000000000000000000000001f4000000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000a00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000aca92e438df0b2401ff60da7e4337b687a2435da00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000060000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000060000000000000000000000000aca92e438df0b2401ff60da7e4337b687a2435da00000000000000000000000074de5d4fcbf63e00296fd95d33236b97940166310000000000000000000000000000000000000000000000000000000000000000756e69780000b2c5de0b0000000000000000000000000000000000007bc001a0a56dd996a7c57e7ce348601ab931bd4a4b69fc55e8b8280d7480ddb4834cfd98a0575100c0f41f213bd198c1c0ae71c0660fccf0b048a9fbf2ae29749f8a8a5edc", + "time": 1775091716679, + "transaction": { + "data": "0x5f57552900000000000000000000000000000000000000000000000000000000000000800000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001609a52b2e216d00000000000000000000000000000000000000000000000000000000000000c00000000000000000000000000000000000000000000000000000000000000018756e69737761705065726d69743246656544796e616d6963000000000000000000000000000000000000000000000000000000000000000000000000000007600000000000000000000000000000000000000000000000000000000000000000000000000000000000000000aca92e438df0b2401ff60da7e4337b687a2435da000000000000000000000000000000000000000000000000001609a52b2e216d0000000000000000000000000000000000000000000000000000000000c7370300000000000000000000000000000000000000000000000000000000000001200000000000000000000000000000000000000000000000000000000000000000000000000000000000000000f326e4de8f66a0bdc0970b79e0924e33c79f19150000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000062e3593564c000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000000a00000000000000000000000000000000000000000000000000000000069cdc6fe00000000000000000000000000000000000000000000000000000000000000020b100000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000002000000000000000000000000000000000000000000000000000000000000004000000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000000000000000000000000000000400000000000000000000000000000000000000000000000000000000000000002000000000000000000000000000000000000000000000000001609a52b2e216d00000000000000000000000000000000000000000000000000000000000004a0000000000000000000000000000000000000000000000000000000000000004000000000000000000000000000000000000000000000000000000000000000800000000000000000000000000000000000000000000000000000000000000003070b0e0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000300000000000000000000000000000000000000000000000000000000000000600000000000000000000000000000000000000000000000000000000000000300000000000000000000000000000000000000000000000000000000000000038000000000000000000000000000000000000000000000000000000000000002800000000000000000000000000000000000000000000000000000000000000020000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc20000000000000000000000000000000000000000000000000000000000000080000000000000000000000000000000000000000000000000001609a52b2e216d0000000000000000000000000000000000000000000000000000000000c74b6b000000000000000000000000000000000000000000000000000000000000000200000000000000000000000000000000000000000000000000000000000000400000000000000000000000000000000000000000000000000000000000000100000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb4800000000000000000000000000000000000000000000000000000000000001f4000000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000a00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000aca92e438df0b2401ff60da7e4337b687a2435da00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000060000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000060000000000000000000000000aca92e438df0b2401ff60da7e4337b687a2435da00000000000000000000000074de5d4fcbf63e00296fd95d33236b97940166310000000000000000000000000000000000000000000000000000000000000000756e69780000b2c5de0b0000000000000000000000000000000000007b", + "from": "0x141d32a89a1e0a5ef360034a2f60a4b917c18838", + "gas": "0x4ea45", + "gasLimit": "0x4ea45", + "maxFeePerGas": "0x828fa609", + "maxPriorityFeePerGas": "0x7d2b7501", + "nonce": "0x2d", + "to": "0x881d40237659c251811cec9c364ef91dc08d300c", + "type": "0x2", + "value": "0x1609a52b2e216d" + } + }, + { + "chainId": "0x1", + "hash": "0xf75d5d747fc430c5af354a224e05976e84ed514581282f2c31c10df88dda1b06", + "networkType": "mainnet", + "networkUrl": "https://mainnet.infura.io/v3/{infuraProjectId}", + "origin": "cancel", + "rawTransaction": "0x02f86b01298489afcd8184940bc28b8304eab994141d32a89a1e0a5ef360034a2f60a4b917c188388080c080a04f95172f95ec43e0969e7d39a8445bc385986b10f35316a960805a4898f0ff73a075251856a3dee54894d86549626b77128e02cf033758ef64254ec378fa3c7e26", + "time": 1774919619991, + "transaction": { + "from": "0x141d32a89a1e0a5ef360034a2f60a4b917c18838", + "gas": "0x4eab9", + "gasLimit": "0x4eab9", + "maxFeePerGas": "0x940bc28b", + "maxPriorityFeePerGas": "0x89afcd81", + "nonce": "0x29", + "to": "0x141d32a89a1e0a5ef360034a2f60a4b917c18838", + "type": "0x2", + "value": "0x0" + } + }, + { + "chainId": "0x1", + "hash": "0x388a90a269ff8b8ad7ae74b50a59354bbb87446ec6202e5c68e6d63c4baf1b53", + "networkType": "mainnet", + "networkUrl": "https://mainnet.infura.io/v3/{infuraProjectId}", + "origin": "cancel", + "rawTransaction": "0x02f86b01288489afcd8184940bc28b8304eab994141d32a89a1e0a5ef360034a2f60a4b917c188388080c080a0dc675b395e65f5a581ce23c09f6728aa7b4e11e9017325d7698eec08bca3cc7fa0401e5f1a8ea2fc4967499a2e418864c6aee38523479d43c4041f629feb9e0cb3", + "time": 1774919600359, + "transaction": { + "from": "0x141d32a89a1e0a5ef360034a2f60a4b917c18838", + "gas": "0x4eab9", + "gasLimit": "0x4eab9", + "maxFeePerGas": "0x940bc28b", + "maxPriorityFeePerGas": "0x89afcd81", + "nonce": "0x28", + "to": "0x141d32a89a1e0a5ef360034a2f60a4b917c18838", + "type": "0x2", + "value": "0x0" + } + }, + { + "chainId": "0x38", + "hash": "0xae30084eaf284525cec45c638035350e52fe62d662043ed7f02b73eba7789c3d", + "networkType": "bsc-mainnet", + "networkUrl": "https://bsc-mainnet.infura.io/v3/{infuraProjectId}", + "origin": "metamask", + "rawTransaction": "0x02f907d138268403938700840393870083074dd694f25bd11c334507fd007d584e2d0b7b2c6543f71480b90764e9ae5c530100000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000004000000000000000000000000000000000000000000000000000000000000007000000000000000000000000000000000000000000000000000000000000000020000000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000000000200000000000000000000000001a1ec25dc08e98e5e93f1104b5e5cdd298707d310000000000000000000000000000000000000000000000000006d881b3858a52000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000006055f575529000000000000000000000000000000000000000000000000000000000000008000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000006d881b3858a5200000000000000000000000000000000000000000000000000000000000000c000000000000000000000000000000000000000000000000000000000000000136f6e65496e6368563646656544796e616d6963000000000000000000000000000000000000000000000000000000000000000000000000000000000000000520000000000000000000000000000000000000000000000000000000000000000000000000000000000000000055d398326f99059ff775485246999027b31979550000000000000000000000000000000000000000000000000006c8f49880669900000000000000000000000000000000000000000000000010c874746e876e9e000000000000000000000000000000000000000000000000000000000000012000000000000000000000000000000000000000000000000000000f8d1b0523b9000000000000000000000000b28da7bc87a9dd1e60849aa7fcb5da24ea913c42000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000003e807ed2379000000000000000000000000990636ecb3ff04d33d92e970d3d588bf5cd8d086000000000000000000000000eeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeee00000000000000000000000055d398326f99059ff775485246999027b3197955000000000000000000000000990636ecb3ff04d33d92e970d3d588bf5cd8d086000000000000000000000000c590175e458b83680867afd273527ff58f74c02b0000000000000000000000000000000000000000000000000006c8f49880669900000000000000000000000000000000000000000000000010c874746e876e9e00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000120000000000000000000000000000000000000000000000000000000000000029600000000000000000000000000000000000000000000027800006800004e00a0744c8c09000000000000000000000000000000000000000090cbe4bdd538d6e9b379bff5fe72c3d67a521de50000000000000000000000000000000000000000000000000000002c774fae174041bb4cdb9cbd36b01bd1cbaebf2de08d9173bc095cd0e30db05120111111125421ca6dc452d289314280a0f8842a65bb4cdb9cbd36b01bd1cbaebf2de08d9173bc095c0144f497df7500000000000000000000000000000000000000003715d1d0232ac4447f6009980000000000000000000000009e229b12cc9081d6a510b29ccbd6311743e277ed000000000000000000000000000000000000000000000000000000000000000000000000000000000000000055d398326f99059ff775485246999027b3197955000000000000000000000000bb4cdb9cbd36b01bd1cbaebf2de08d9173bc095c0000000000000000000000000000000000000000000000001120233d56a98be40000000000000000000000000000000000000000000000000006c8c82130b882000000000000000000000000000025fadc0069c4354ce970d3d588bf5cd8d086e47098645a2144638d1b3f7eab3a305949d50d218bb44701c499ed6c3aa82c8a6c6ee726c8ce79253fed337d67fba0a8acfc9f2e8692826a11c8a2eaffafe5010000000000000000000000000000000000000000000000000000000000000000280000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001a00000000000000000000000000000000000000000000000000000000000000014111111125421ca6dc452d289314280a0f8842a65000000000000000000000000000000000000000000007dcbea7c000000000000000000000000000000000000000000000000b8000000000000000000000000000000000000000000000000000000c080a0e7a8958b899a8f484aa7bdde4ddb5b9193a542fbd3f3253f2be02e184aaa47dfa07d254c4a64dfbe16de62a22b75e1d5b20d5da8d3ea5aecbdf6d11afb2c0b33c0", + "time": 1774466322908, + "transaction": { + "data": "0xe9ae5c530100000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000004000000000000000000000000000000000000000000000000000000000000007000000000000000000000000000000000000000000000000000000000000000020000000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000000000200000000000000000000000001a1ec25dc08e98e5e93f1104b5e5cdd298707d310000000000000000000000000000000000000000000000000006d881b3858a52000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000006055f575529000000000000000000000000000000000000000000000000000000000000008000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000006d881b3858a5200000000000000000000000000000000000000000000000000000000000000c000000000000000000000000000000000000000000000000000000000000000136f6e65496e6368563646656544796e616d6963000000000000000000000000000000000000000000000000000000000000000000000000000000000000000520000000000000000000000000000000000000000000000000000000000000000000000000000000000000000055d398326f99059ff775485246999027b31979550000000000000000000000000000000000000000000000000006c8f49880669900000000000000000000000000000000000000000000000010c874746e876e9e000000000000000000000000000000000000000000000000000000000000012000000000000000000000000000000000000000000000000000000f8d1b0523b9000000000000000000000000b28da7bc87a9dd1e60849aa7fcb5da24ea913c42000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000003e807ed2379000000000000000000000000990636ecb3ff04d33d92e970d3d588bf5cd8d086000000000000000000000000eeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeee00000000000000000000000055d398326f99059ff775485246999027b3197955000000000000000000000000990636ecb3ff04d33d92e970d3d588bf5cd8d086000000000000000000000000c590175e458b83680867afd273527ff58f74c02b0000000000000000000000000000000000000000000000000006c8f49880669900000000000000000000000000000000000000000000000010c874746e876e9e00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000120000000000000000000000000000000000000000000000000000000000000029600000000000000000000000000000000000000000000027800006800004e00a0744c8c09000000000000000000000000000000000000000090cbe4bdd538d6e9b379bff5fe72c3d67a521de50000000000000000000000000000000000000000000000000000002c774fae174041bb4cdb9cbd36b01bd1cbaebf2de08d9173bc095cd0e30db05120111111125421ca6dc452d289314280a0f8842a65bb4cdb9cbd36b01bd1cbaebf2de08d9173bc095c0144f497df7500000000000000000000000000000000000000003715d1d0232ac4447f6009980000000000000000000000009e229b12cc9081d6a510b29ccbd6311743e277ed000000000000000000000000000000000000000000000000000000000000000000000000000000000000000055d398326f99059ff775485246999027b3197955000000000000000000000000bb4cdb9cbd36b01bd1cbaebf2de08d9173bc095c0000000000000000000000000000000000000000000000001120233d56a98be40000000000000000000000000000000000000000000000000006c8c82130b882000000000000000000000000000025fadc0069c4354ce970d3d588bf5cd8d086e47098645a2144638d1b3f7eab3a305949d50d218bb44701c499ed6c3aa82c8a6c6ee726c8ce79253fed337d67fba0a8acfc9f2e8692826a11c8a2eaffafe5010000000000000000000000000000000000000000000000000000000000000000280000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001a00000000000000000000000000000000000000000000000000000000000000014111111125421ca6dc452d289314280a0f8842a65000000000000000000000000000000000000000000007dcbea7c000000000000000000000000000000000000000000000000b8000000000000000000000000000000000000000000000000000000", + "from": "0xf25bd11c334507fd007d584e2d0b7b2c6543f714", + "gas": "0x74dd6", + "gasLimit": "0x74dd6", + "maxFeePerGas": "0x3938700", + "maxPriorityFeePerGas": "0x3938700", + "nonce": "0x26", + "to": "0xf25bd11c334507fd007d584e2d0b7b2c6543f714", + "type": "0x2", + "value": "0x0" + } + }, + { + "chainId": "0x38", + "hash": "0x24c05fae8dc1a6132fbf2c35bd0f6f6b10e0041ba70d30b753a396a5a02f1c7c", + "networkType": "bsc-mainnet", + "networkUrl": "https://bsc-mainnet.infura.io/v3/{infuraProjectId}", + "origin": "metamask", + "rawTransaction": "0x02f90bd138258403938700840393870083085bbd94f25bd11c334507fd007d584e2d0b7b2c6543f71480b90b64e9ae5c53010000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000400000000000000000000000000000000000000000000000000000000000000b000000000000000000000000000000000000000000000000000000000000000020000000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000000000200000000000000000000000001a1ec25dc08e98e5e93f1104b5e5cdd298707d310000000000000000000000000000000000000000000000000006dcbe97894ad200000000000000000000000000000000000000000000000000000000000000600000000000000000000000000000000000000000000000000000000000000a055f575529000000000000000000000000000000000000000000000000000000000000008000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000006dcbe97894ad200000000000000000000000000000000000000000000000000000000000000c0000000000000000000000000000000000000000000000000000000000000000430785632000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000920000000000000000000000000000000000000000000000000000000000000000000000000000000000000000055d398326f99059ff775485246999027b31979550000000000000000000000000000000000000000000000000006cd296fe8bdc900000000000000000000000000000000000000000000000010d4b4c624030582000000000000000000000000000000000000000000000000000000000000012000000000000000000000000000000000000000000000000000000f9527a08d09000000000000000000000000b28da7bc87a9dd1e60849aa7fcb5da24ea913c42000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000007e42213bc0b000000000000000000000000b7cbad7dd322bd1610c61c539ff2d36909055f5400000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000006cd296fe8bdc9000000000000000000000000b7cbad7dd322bd1610c61c539ff2d36909055f5400000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000000000000000000000000000007041fff991f000000000000000000000000c590175e458b83680867afd273527ff58f74c02b00000000000000000000000055d398326f99059ff775485246999027b31979550000000000000000000000000000000000000000000000001100ac2b6d858f9400000000000000000000000000000000000000000000000000000000000000a031f5a9bf2e43f83e735ddb3d0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000500000000000000000000000000000000000000000000000000000000000000a00000000000000000000000000000000000000000000000000000000000000120000000000000000000000000000000000000000000000000000000000000026000000000000000000000000000000000000000000000000000000000000003a000000000000000000000000000000000000000000000000000000000000005800000000000000000000000000000000000000000000000000000000000000044bd01c2260000000000000000000000000000000000000000000000000000000069c436030000000000000000000000000000000000000000000000000006cd296fe8bdc900000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000010438c9c147000000000000000000000000eeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeee0000000000000000000000000000000000000000000000000000000000002710000000000000000000000000bb4cdb9cbd36b01bd1cbaebf2de08d9173bc095c000000000000000000000000000000000000000000000000000000000000000400000000000000000000000000000000000000000000000000000000000000a00000000000000000000000000000000000000000000000000000000000000024d0e30db000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000010438c9c147000000000000000000000000bb4cdb9cbd36b01bd1cbaebf2de08d9173bc095c0000000000000000000000000000000000000000000000000000000000002710000000000000000000000000bb4cdb9cbd36b01bd1cbaebf2de08d9173bc095c000000000000000000000000000000000000000000000000000000000000000400000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000000000000000000000000000000242e1a7d4d0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001a4df753f1e000000000000000000000000b7cbad7dd322bd1610c61c539ff2d36909055f54000000000000000000000000eeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeee000000000000000000000000000000000000000000000000000000000000271000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000002000000000000000000000000000000000000000000000000ffffffffffffffc5000000000000000000000000000000000000000000000000000000000000010000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000066271000000000000000000000000000000001000276a40155d398326f99059ff775485246999027b31979550000000000000000000000000000000000000000000000430000000000000000000000000000000000000000000000000000000000010000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000008434ee90ca000000000000000000000000d0a67cb08be17475f4315a04c5f0be3e200ef66c00000000000000000000000055d398326f99059ff775485246999027b3197955000000000000000000000000000000000000000000000000112db5c7fa85ea070000000000000000000000000000000000000000000000000000000000002710000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000b0000000000000000000000000000000000000000000000000000000c080a0b996b29412a7e3e6e33df2a7917d19cdbd35216456b3b82252abd934759bb578a049af2cd1da7987c0b35575f2c7b23677bb352910aa2a5fca4f3031fc34005adf", + "time": 1774466266041, + "transaction": { + "data": "0xe9ae5c53010000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000400000000000000000000000000000000000000000000000000000000000000b000000000000000000000000000000000000000000000000000000000000000020000000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000000000200000000000000000000000001a1ec25dc08e98e5e93f1104b5e5cdd298707d310000000000000000000000000000000000000000000000000006dcbe97894ad200000000000000000000000000000000000000000000000000000000000000600000000000000000000000000000000000000000000000000000000000000a055f575529000000000000000000000000000000000000000000000000000000000000008000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000006dcbe97894ad200000000000000000000000000000000000000000000000000000000000000c0000000000000000000000000000000000000000000000000000000000000000430785632000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000920000000000000000000000000000000000000000000000000000000000000000000000000000000000000000055d398326f99059ff775485246999027b31979550000000000000000000000000000000000000000000000000006cd296fe8bdc900000000000000000000000000000000000000000000000010d4b4c624030582000000000000000000000000000000000000000000000000000000000000012000000000000000000000000000000000000000000000000000000f9527a08d09000000000000000000000000b28da7bc87a9dd1e60849aa7fcb5da24ea913c42000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000007e42213bc0b000000000000000000000000b7cbad7dd322bd1610c61c539ff2d36909055f5400000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000006cd296fe8bdc9000000000000000000000000b7cbad7dd322bd1610c61c539ff2d36909055f5400000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000000000000000000000000000007041fff991f000000000000000000000000c590175e458b83680867afd273527ff58f74c02b00000000000000000000000055d398326f99059ff775485246999027b31979550000000000000000000000000000000000000000000000001100ac2b6d858f9400000000000000000000000000000000000000000000000000000000000000a031f5a9bf2e43f83e735ddb3d0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000500000000000000000000000000000000000000000000000000000000000000a00000000000000000000000000000000000000000000000000000000000000120000000000000000000000000000000000000000000000000000000000000026000000000000000000000000000000000000000000000000000000000000003a000000000000000000000000000000000000000000000000000000000000005800000000000000000000000000000000000000000000000000000000000000044bd01c2260000000000000000000000000000000000000000000000000000000069c436030000000000000000000000000000000000000000000000000006cd296fe8bdc900000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000010438c9c147000000000000000000000000eeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeee0000000000000000000000000000000000000000000000000000000000002710000000000000000000000000bb4cdb9cbd36b01bd1cbaebf2de08d9173bc095c000000000000000000000000000000000000000000000000000000000000000400000000000000000000000000000000000000000000000000000000000000a00000000000000000000000000000000000000000000000000000000000000024d0e30db000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000010438c9c147000000000000000000000000bb4cdb9cbd36b01bd1cbaebf2de08d9173bc095c0000000000000000000000000000000000000000000000000000000000002710000000000000000000000000bb4cdb9cbd36b01bd1cbaebf2de08d9173bc095c000000000000000000000000000000000000000000000000000000000000000400000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000000000000000000000000000000242e1a7d4d0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001a4df753f1e000000000000000000000000b7cbad7dd322bd1610c61c539ff2d36909055f54000000000000000000000000eeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeee000000000000000000000000000000000000000000000000000000000000271000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000002000000000000000000000000000000000000000000000000ffffffffffffffc5000000000000000000000000000000000000000000000000000000000000010000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000066271000000000000000000000000000000001000276a40155d398326f99059ff775485246999027b31979550000000000000000000000000000000000000000000000430000000000000000000000000000000000000000000000000000000000010000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000008434ee90ca000000000000000000000000d0a67cb08be17475f4315a04c5f0be3e200ef66c00000000000000000000000055d398326f99059ff775485246999027b3197955000000000000000000000000000000000000000000000000112db5c7fa85ea070000000000000000000000000000000000000000000000000000000000002710000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000b0000000000000000000000000000000000000000000000000000000", + "from": "0xf25bd11c334507fd007d584e2d0b7b2c6543f714", + "gas": "0x85bbd", + "gasLimit": "0x85bbd", + "maxFeePerGas": "0x3938700", + "maxPriorityFeePerGas": "0x3938700", + "nonce": "0x25", + "to": "0xf25bd11c334507fd007d584e2d0b7b2c6543f714", + "type": "0x2", + "value": "0x0" + } + }, + { + "chainId": "0x38", + "hash": "0xe2c4a8d392e591179103675a0726ffe5755e495f6a72f165ea96cab30250c91d", + "networkType": "bsc-mainnet", + "networkUrl": "https://bsc-mainnet.infura.io/v3/{infuraProjectId}", + "origin": "metamask", + "rawTransaction": "0x02f9067938238403938700840393870083075302941a1ec25dc08e98e5e93f1104b5e5cdd298707d3187078656e2a22cbbb906055f5755290000000000000000000000000000000000000000000000000000000000000080000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000078656e2a22cbb00000000000000000000000000000000000000000000000000000000000000c000000000000000000000000000000000000000000000000000000000000000136f6e65496e6368563646656544796e616d6963000000000000000000000000000000000000000000000000000000000000000000000000000000000000000520000000000000000000000000000000000000000000000000000000000000000000000000000000000000000055d398326f99059ff775485246999027b319795500000000000000000000000000000000000000000000000000077541361b28cc0000000000000000000000000000000000000000000000001269cede51e1b8b3000000000000000000000000000000000000000000000000000000000000012000000000000000000000000000000000000000000000000000001115ac8703ef000000000000000000000000b28da7bc87a9dd1e60849aa7fcb5da24ea913c42000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000003e807ed2379000000000000000000000000990636ecb3ff04d33d92e970d3d588bf5cd8d086000000000000000000000000eeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeee00000000000000000000000055d398326f99059ff775485246999027b3197955000000000000000000000000990636ecb3ff04d33d92e970d3d588bf5cd8d086000000000000000000000000c590175e458b83680867afd273527ff58f74c02b00000000000000000000000000000000000000000000000000077541361b28cc0000000000000000000000000000000000000000000000001269cede51e1b8b300000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000120000000000000000000000000000000000000000000000000000000000000029600000000000000000000000000000000000000000000027800006800004e00a0744c8c09000000000000000000000000000000000000000090cbe4bdd538d6e9b379bff5fe72c3d67a521de500000000000000000000000000000000000000000000000000000030e07de74c4041bb4cdb9cbd36b01bd1cbaebf2de08d9173bc095cd0e30db05120111111125421ca6dc452d289314280a0f8842a65bb4cdb9cbd36b01bd1cbaebf2de08d9173bc095c0144f497df7500000000000000000000000000000000000000005ad6d62a52eab605f6cbc8fc0000000000000000000000009e229b12cc9081d6a510b29ccbd6311743e277ed000000000000000000000000000000000000000000000000000000000000000000000000000000000000000055d398326f99059ff775485246999027b3197955000000000000000000000000bb4cdb9cbd36b01bd1cbaebf2de08d9173bc095c00000000000000000000000000000000000000000000000012ca021c538d843a00000000000000000000000000000000000000000000000000077510559d4180000000000000000000000000000025e9590069c43128e970d3d588bf5cd8d08633bfdf9162718856f2d865a26cc05e058c83cf00491f0c9cef4e0b7186fbfb84d9db588b0223b91b4a1f96c87d0c8a711eb3be0c8a965f77fbc05def2cd96ed10000000000000000000000000000000000000000000000000000000000000000280000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001a00000000000000000000000000000000000000000000000000000000000000014111111125421ca6dc452d289314280a0f8842a65000000000000000000000000000000000000000000007dcbea7c00000000000000000000000000000000000000000000000084c080a083b305c61ed781408581eb69a2f4a7c71c331499fc355ff27dbc8dcbb2e57e99a00d71314780882f03e68d2ac196a5cdf5209d39be6cf01d12b2b8ab4f615c2d70", + "time": 1774465263849, + "transaction": { + "data": "0x5f5755290000000000000000000000000000000000000000000000000000000000000080000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000078656e2a22cbb00000000000000000000000000000000000000000000000000000000000000c000000000000000000000000000000000000000000000000000000000000000136f6e65496e6368563646656544796e616d6963000000000000000000000000000000000000000000000000000000000000000000000000000000000000000520000000000000000000000000000000000000000000000000000000000000000000000000000000000000000055d398326f99059ff775485246999027b319795500000000000000000000000000000000000000000000000000077541361b28cc0000000000000000000000000000000000000000000000001269cede51e1b8b3000000000000000000000000000000000000000000000000000000000000012000000000000000000000000000000000000000000000000000001115ac8703ef000000000000000000000000b28da7bc87a9dd1e60849aa7fcb5da24ea913c42000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000003e807ed2379000000000000000000000000990636ecb3ff04d33d92e970d3d588bf5cd8d086000000000000000000000000eeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeee00000000000000000000000055d398326f99059ff775485246999027b3197955000000000000000000000000990636ecb3ff04d33d92e970d3d588bf5cd8d086000000000000000000000000c590175e458b83680867afd273527ff58f74c02b00000000000000000000000000000000000000000000000000077541361b28cc0000000000000000000000000000000000000000000000001269cede51e1b8b300000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000120000000000000000000000000000000000000000000000000000000000000029600000000000000000000000000000000000000000000027800006800004e00a0744c8c09000000000000000000000000000000000000000090cbe4bdd538d6e9b379bff5fe72c3d67a521de500000000000000000000000000000000000000000000000000000030e07de74c4041bb4cdb9cbd36b01bd1cbaebf2de08d9173bc095cd0e30db05120111111125421ca6dc452d289314280a0f8842a65bb4cdb9cbd36b01bd1cbaebf2de08d9173bc095c0144f497df7500000000000000000000000000000000000000005ad6d62a52eab605f6cbc8fc0000000000000000000000009e229b12cc9081d6a510b29ccbd6311743e277ed000000000000000000000000000000000000000000000000000000000000000000000000000000000000000055d398326f99059ff775485246999027b3197955000000000000000000000000bb4cdb9cbd36b01bd1cbaebf2de08d9173bc095c00000000000000000000000000000000000000000000000012ca021c538d843a00000000000000000000000000000000000000000000000000077510559d4180000000000000000000000000000025e9590069c43128e970d3d588bf5cd8d08633bfdf9162718856f2d865a26cc05e058c83cf00491f0c9cef4e0b7186fbfb84d9db588b0223b91b4a1f96c87d0c8a711eb3be0c8a965f77fbc05def2cd96ed10000000000000000000000000000000000000000000000000000000000000000280000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001a00000000000000000000000000000000000000000000000000000000000000014111111125421ca6dc452d289314280a0f8842a65000000000000000000000000000000000000000000007dcbea7c00000000000000000000000000000000000000000000000084", + "from": "0xf25bd11c334507fd007d584e2d0b7b2c6543f714", + "gas": "0x75302", + "gasLimit": "0x75302", + "maxFeePerGas": "0x3938700", + "maxPriorityFeePerGas": "0x3938700", + "nonce": "0x23", + "to": "0x1a1ec25dc08e98e5e93f1104b5e5cdd298707d31", + "type": "0x2", + "value": "0x78656e2a22cbb" + } + }, + { + "chainId": "0x38", + "hash": "0x6b505990c88b14267dd67a0d2dc2aff452201ed408f3311fba1c3e5e5ea9ef34", + "networkType": "bsc-mainnet", + "networkUrl": "https://bsc-mainnet.infura.io/v3/{infuraProjectId}", + "origin": "metamask", + "rawTransaction": "0x02f90759381e8403938700840393870083050e4b941a1ec25dc08e98e5e93f1104b5e5cdd298707d318708a6db77117f48b906e55f575529000000000000000000000000000000000000000000000000000000000000008000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000008a6db77117f4800000000000000000000000000000000000000000000000000000000000000c00000000000000000000000000000000000000000000000000000000000000018756e69737761705065726d69743246656544796e616d696300000000000000000000000000000000000000000000000000000000000000000000000000000600000000000000000000000000000000000000000000000000000000000000000000000000000000000000000055d398326f99059ff775485246999027b319795500000000000000000000000000000000000000000000000000089351aee2b4d30000000000000000000000000000000000000000000000001532dae41ae03d85000000000000000000000000000000000000000000000000000000000000012000000000000000000000000000000000000000000000000000001389c82eca75000000000000000000000000b28da7bc87a9dd1e60849aa7fcb5da24ea913c42000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000004ce3593564c000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000000a00000000000000000000000000000000000000000000000000000000069c430c4000000000000000000000000000000000000000000000000000000000000000110000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000002000000000000000000000000000000000000000000000000000000000000003c0000000000000000000000000000000000000000000000000000000000000004000000000000000000000000000000000000000000000000000000000000000800000000000000000000000000000000000000000000000000000000000000003070b0e000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000030000000000000000000000000000000000000000000000000000000000000060000000000000000000000000000000000000000000000000000000000000022000000000000000000000000000000000000000000000000000000000000002a000000000000000000000000000000000000000000000000000000000000001a000000000000000000000000000000000000000000000000000000000000000200000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000008000000000000000000000000000000000000000000000000000089351aee2b4d3000000000000000000000000000000000000000000000000153506d2c8030eba0000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000002000000000000000000000000055d398326f99059ff775485246999027b319795500000000000000000000000000000000000000000000000000000000000000640000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000060000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000006000000000000000000000000055d398326f99059ff775485246999027b3197955000000000000000000000000c590175e458b83680867afd273527ff58f74c02b0000000000000000000000000000000000000000000000000000000000000000756e69780000000000810000000000000000000000000000000000007ac001a0c8ce750653d8aa29d3f4bd5d953b3f839678832f3ace4d6dce5c2e9de5168ea1a04ea7744f74b80740d1fe0be7147cbd609c8fe9b351ce1e5ada80368c81610d67", + "time": 1774463440875, + "transaction": { + "data": "0x5f575529000000000000000000000000000000000000000000000000000000000000008000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000008a6db77117f4800000000000000000000000000000000000000000000000000000000000000c00000000000000000000000000000000000000000000000000000000000000018756e69737761705065726d69743246656544796e616d696300000000000000000000000000000000000000000000000000000000000000000000000000000600000000000000000000000000000000000000000000000000000000000000000000000000000000000000000055d398326f99059ff775485246999027b319795500000000000000000000000000000000000000000000000000089351aee2b4d30000000000000000000000000000000000000000000000001532dae41ae03d85000000000000000000000000000000000000000000000000000000000000012000000000000000000000000000000000000000000000000000001389c82eca75000000000000000000000000b28da7bc87a9dd1e60849aa7fcb5da24ea913c42000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000004ce3593564c000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000000a00000000000000000000000000000000000000000000000000000000069c430c4000000000000000000000000000000000000000000000000000000000000000110000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000002000000000000000000000000000000000000000000000000000000000000003c0000000000000000000000000000000000000000000000000000000000000004000000000000000000000000000000000000000000000000000000000000000800000000000000000000000000000000000000000000000000000000000000003070b0e000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000030000000000000000000000000000000000000000000000000000000000000060000000000000000000000000000000000000000000000000000000000000022000000000000000000000000000000000000000000000000000000000000002a000000000000000000000000000000000000000000000000000000000000001a000000000000000000000000000000000000000000000000000000000000000200000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000008000000000000000000000000000000000000000000000000000089351aee2b4d3000000000000000000000000000000000000000000000000153506d2c8030eba0000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000002000000000000000000000000055d398326f99059ff775485246999027b319795500000000000000000000000000000000000000000000000000000000000000640000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000060000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000006000000000000000000000000055d398326f99059ff775485246999027b3197955000000000000000000000000c590175e458b83680867afd273527ff58f74c02b0000000000000000000000000000000000000000000000000000000000000000756e69780000000000810000000000000000000000000000000000007a", + "from": "0xf25bd11c334507fd007d584e2d0b7b2c6543f714", + "gas": "0x50e4b", + "gasLimit": "0x50e4b", + "maxFeePerGas": "0x3938700", + "maxPriorityFeePerGas": "0x3938700", + "nonce": "0x1e", + "to": "0x1a1ec25dc08e98e5e93f1104b5e5cdd298707d31", + "type": "0x2", + "value": "0x8a6db77117f48" + } + }, + { + "chainId": "0x38", + "hash": "0x16eba8645da99424b4f940e076f330246a6fbb6d8edbcf80b65ff93b84fc4570", + "networkType": "bsc-mainnet", + "networkUrl": "https://bsc-mainnet.infura.io/v3/{infuraProjectId}", + "origin": "metamask", + "rawTransaction": "0x02f90671381d840393870084039387008305f19694f25bd11c334507fd007d584e2d0b7b2c6543f71480b90604e9ae5c530100000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000004000000000000000000000000000000000000000000000000000000000000005a00000000000000000000000000000000000000000000000000000000000000020000000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000000000200000000000000000000000001a1ec25dc08e98e5e93f1104b5e5cdd298707d310000000000000000000000000000000000000000000000000008a942c0afd348000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000004a55f575529000000000000000000000000000000000000000000000000000000000000008000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000008a942c0afd34800000000000000000000000000000000000000000000000000000000000000c00000000000000000000000000000000000000000000000000000000000000018756e69737761705065726d69743246656544796e616d6963000000000000000000000000000000000000000000000000000000000000000000000000000003c0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000055d398326f99059ff775485246999027b3197955000000000000000000000000000000000000000000000000000895b3961276c3000000000000000000000000000000000000000000000000153b5d48b863a9aa00000000000000000000000000000000000000000000000000000000000001200000000000000000000000000000000000000000000000000000138f2a9d5c85000000000000000000000000b28da7bc87a9dd1e60849aa7fcb5da24ea913c420000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000028e3593564c000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000000a00000000000000000000000000000000000000000000000000000000069c4301700000000000000000000000000000000000000000000000000000000000000020b000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000002000000000000000000000000000000000000000000000000000000000000004000000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000000000000000000000000000000400000000000000000000000000000000000000000000000000000000000000002000000000000000000000000000000000000000000000000000895b3961276c30000000000000000000000000000000000000000000000000000000000000100000000000000000000000000c590175e458b83680867afd273527ff58f74c02b000000000000000000000000000000000000000000000000000895b3961276c3000000000000000000000000000000000000000000000000153d8a168da48c3b00000000000000000000000000000000000000000000000000000000000000a00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000002bbb4cdb9cbd36b01bd1cbaebf2de08d9173bc095c00006455d398326f99059ff775485246999027b3197955000000000000000000000000000000000000000000756e6978000000000081000000000000000000000000000000000000ca000000000000000000000000000000000000000000000000000000c080a0c9b7b0c01716885e25ddf639171f44842ed50f092e32070c95b8adcbbb8491aaa00c502598a742fa31e4d181605a9b830199d86051325958337973baef34433bdc", + "time": 1774463252307, + "transaction": { + "data": "0xe9ae5c530100000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000004000000000000000000000000000000000000000000000000000000000000005a00000000000000000000000000000000000000000000000000000000000000020000000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000000000200000000000000000000000001a1ec25dc08e98e5e93f1104b5e5cdd298707d310000000000000000000000000000000000000000000000000008a942c0afd348000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000004a55f575529000000000000000000000000000000000000000000000000000000000000008000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000008a942c0afd34800000000000000000000000000000000000000000000000000000000000000c00000000000000000000000000000000000000000000000000000000000000018756e69737761705065726d69743246656544796e616d6963000000000000000000000000000000000000000000000000000000000000000000000000000003c0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000055d398326f99059ff775485246999027b3197955000000000000000000000000000000000000000000000000000895b3961276c3000000000000000000000000000000000000000000000000153b5d48b863a9aa00000000000000000000000000000000000000000000000000000000000001200000000000000000000000000000000000000000000000000000138f2a9d5c85000000000000000000000000b28da7bc87a9dd1e60849aa7fcb5da24ea913c420000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000028e3593564c000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000000a00000000000000000000000000000000000000000000000000000000069c4301700000000000000000000000000000000000000000000000000000000000000020b000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000002000000000000000000000000000000000000000000000000000000000000004000000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000000000000000000000000000000400000000000000000000000000000000000000000000000000000000000000002000000000000000000000000000000000000000000000000000895b3961276c30000000000000000000000000000000000000000000000000000000000000100000000000000000000000000c590175e458b83680867afd273527ff58f74c02b000000000000000000000000000000000000000000000000000895b3961276c3000000000000000000000000000000000000000000000000153d8a168da48c3b00000000000000000000000000000000000000000000000000000000000000a00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000002bbb4cdb9cbd36b01bd1cbaebf2de08d9173bc095c00006455d398326f99059ff775485246999027b3197955000000000000000000000000000000000000000000756e6978000000000081000000000000000000000000000000000000ca000000000000000000000000000000000000000000000000000000", + "from": "0xf25bd11c334507fd007d584e2d0b7b2c6543f714", + "gas": "0x5f196", + "gasLimit": "0x5f196", + "maxFeePerGas": "0x3938700", + "maxPriorityFeePerGas": "0x3938700", + "nonce": "0x1d", + "to": "0xf25bd11c334507fd007d584e2d0b7b2c6543f714", + "type": "0x2", + "value": "0x0" + } + }, + { + "chainId": "0x38", + "hash": "0x751d896dc840a31c715e68fd6bc4a34cc55a2289d742a6125200cb59c615e7d3", + "networkType": "bsc-mainnet", + "networkUrl": "https://bsc-mainnet.infura.io/v3/{infuraProjectId}", + "origin": "metamask", + "rawTransaction": "0x02f90759381c84039387008403938700830599da941a1ec25dc08e98e5e93f1104b5e5cdd298707d3187090c34216dd3d4b906e55f5755290000000000000000000000000000000000000000000000000000000000000080000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000090c34216dd3d400000000000000000000000000000000000000000000000000000000000000c00000000000000000000000000000000000000000000000000000000000000018756e69737761705065726d69743246656544796e616d696300000000000000000000000000000000000000000000000000000000000000000000000000000600000000000000000000000000000000000000000000000000000000000000000000000000000000000000000055d398326f99059ff775485246999027b31979550000000000000000000000000000000000000000000000000008f7c2f735ebe0000000000000000000000000000000000000000000000000162f59c416606ea80000000000000000000000000000000000000000000000000000000000000120000000000000000000000000000000000000000000000000000014712a37e7f4000000000000000000000000b28da7bc87a9dd1e60849aa7fcb5da24ea913c42000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000004ce3593564c000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000000a00000000000000000000000000000000000000000000000000000000069c42f86000000000000000000000000000000000000000000000000000000000000000110000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000002000000000000000000000000000000000000000000000000000000000000003c0000000000000000000000000000000000000000000000000000000000000004000000000000000000000000000000000000000000000000000000000000000800000000000000000000000000000000000000000000000000000000000000003070b0e000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000030000000000000000000000000000000000000000000000000000000000000060000000000000000000000000000000000000000000000000000000000000022000000000000000000000000000000000000000000000000000000000000002a000000000000000000000000000000000000000000000000000000000000001a00000000000000000000000000000000000000000000000000000000000000020000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000800000000000000000000000000000000000000000000000000008f7c2f735ebe000000000000000000000000000000000000000000000000016319f906ee5078b0000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000002000000000000000000000000055d398326f99059ff775485246999027b319795500000000000000000000000000000000000000000000000000000000000000640000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000060000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000006000000000000000000000000055d398326f99059ff775485246999027b3197955000000000000000000000000c590175e458b83680867afd273527ff58f74c02b0000000000000000000000000000000000000000000000000000000000000000756e69780000000000810000000000000000000000000000000000000ec080a0ba8b9749b16a26b1d8c8911588967d87ee1e4bc0cd1a4b25ba94abf156dc9126a05759df63459dc3e0cc37c664b404eeff1cf65b1e764b28468264c1d5d2e1664c", + "time": 1774463109620, + "transaction": { + "data": "0x5f5755290000000000000000000000000000000000000000000000000000000000000080000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000090c34216dd3d400000000000000000000000000000000000000000000000000000000000000c00000000000000000000000000000000000000000000000000000000000000018756e69737761705065726d69743246656544796e616d696300000000000000000000000000000000000000000000000000000000000000000000000000000600000000000000000000000000000000000000000000000000000000000000000000000000000000000000000055d398326f99059ff775485246999027b31979550000000000000000000000000000000000000000000000000008f7c2f735ebe0000000000000000000000000000000000000000000000000162f59c416606ea80000000000000000000000000000000000000000000000000000000000000120000000000000000000000000000000000000000000000000000014712a37e7f4000000000000000000000000b28da7bc87a9dd1e60849aa7fcb5da24ea913c42000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000004ce3593564c000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000000a00000000000000000000000000000000000000000000000000000000069c42f86000000000000000000000000000000000000000000000000000000000000000110000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000002000000000000000000000000000000000000000000000000000000000000003c0000000000000000000000000000000000000000000000000000000000000004000000000000000000000000000000000000000000000000000000000000000800000000000000000000000000000000000000000000000000000000000000003070b0e000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000030000000000000000000000000000000000000000000000000000000000000060000000000000000000000000000000000000000000000000000000000000022000000000000000000000000000000000000000000000000000000000000002a000000000000000000000000000000000000000000000000000000000000001a00000000000000000000000000000000000000000000000000000000000000020000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000800000000000000000000000000000000000000000000000000008f7c2f735ebe000000000000000000000000000000000000000000000000016319f906ee5078b0000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000002000000000000000000000000055d398326f99059ff775485246999027b319795500000000000000000000000000000000000000000000000000000000000000640000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000060000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000006000000000000000000000000055d398326f99059ff775485246999027b3197955000000000000000000000000c590175e458b83680867afd273527ff58f74c02b0000000000000000000000000000000000000000000000000000000000000000756e69780000000000810000000000000000000000000000000000000e", + "from": "0xf25bd11c334507fd007d584e2d0b7b2c6543f714", + "gas": "0x599da", + "gasLimit": "0x599da", + "maxFeePerGas": "0x3938700", + "maxPriorityFeePerGas": "0x3938700", + "nonce": "0x1c", + "to": "0x1a1ec25dc08e98e5e93f1104b5e5cdd298707d31", + "type": "0x2", + "value": "0x90c34216dd3d4" + } + }, + { + "chainId": "0x38", + "hash": "0xaeb7b86ec71bf5485670a5a5cbd2530ae36f2ee746ca47ab7839f9b90dc54ffd", + "networkType": "bsc-mainnet", + "networkUrl": "https://bsc-mainnet.infura.io/v3/{infuraProjectId}", + "origin": "metamask", + "rawTransaction": "0x02f90759381b84039387008403938700830508db941a1ec25dc08e98e5e93f1104b5e5cdd298707d3187096f1728091329b906e55f5755290000000000000000000000000000000000000000000000000000000000000080000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000096f172809132900000000000000000000000000000000000000000000000000000000000000c00000000000000000000000000000000000000000000000000000000000000018756e69737761705065726d69743246656544796e616d696300000000000000000000000000000000000000000000000000000000000000000000000000000600000000000000000000000000000000000000000000000000000000000000000000000000000000000000000055d398326f99059ff775485246999027b3197955000000000000000000000000000000000000000000000000000959cd05b40a6e0000000000000000000000000000000000000000000000001721d4718537e7d200000000000000000000000000000000000000000000000000000000000001200000000000000000000000000000000000000000000000000000154a225508bb000000000000000000000000b28da7bc87a9dd1e60849aa7fcb5da24ea913c42000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000004ce3593564c000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000000a00000000000000000000000000000000000000000000000000000000069c42f26000000000000000000000000000000000000000000000000000000000000000110000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000002000000000000000000000000000000000000000000000000000000000000003c0000000000000000000000000000000000000000000000000000000000000004000000000000000000000000000000000000000000000000000000000000000800000000000000000000000000000000000000000000000000000000000000003070b0e000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000030000000000000000000000000000000000000000000000000000000000000060000000000000000000000000000000000000000000000000000000000000022000000000000000000000000000000000000000000000000000000000000002a000000000000000000000000000000000000000000000000000000000000001a0000000000000000000000000000000000000000000000000000000000000002000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000080000000000000000000000000000000000000000000000000000959cd05b40a6e00000000000000000000000000000000000000000000000017243314db5275cb0000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000002000000000000000000000000055d398326f99059ff775485246999027b319795500000000000000000000000000000000000000000000000000000000000000640000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000060000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000006000000000000000000000000055d398326f99059ff775485246999027b3197955000000000000000000000000c590175e458b83680867afd273527ff58f74c02b0000000000000000000000000000000000000000000000000000000000000000756e69780000000000810000000000000000000000000000000000005dc080a0bad53a243b23e620f7bec6106fe77ace621f78e225ddee92e9cb627d7c30be3ea06fc8b12e4a708dda3a117426899556fc58c355ec830162dec30bd464cb984d3a", + "time": 1774463011543, + "transaction": { + "data": "0x5f5755290000000000000000000000000000000000000000000000000000000000000080000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000096f172809132900000000000000000000000000000000000000000000000000000000000000c00000000000000000000000000000000000000000000000000000000000000018756e69737761705065726d69743246656544796e616d696300000000000000000000000000000000000000000000000000000000000000000000000000000600000000000000000000000000000000000000000000000000000000000000000000000000000000000000000055d398326f99059ff775485246999027b3197955000000000000000000000000000000000000000000000000000959cd05b40a6e0000000000000000000000000000000000000000000000001721d4718537e7d200000000000000000000000000000000000000000000000000000000000001200000000000000000000000000000000000000000000000000000154a225508bb000000000000000000000000b28da7bc87a9dd1e60849aa7fcb5da24ea913c42000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000004ce3593564c000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000000a00000000000000000000000000000000000000000000000000000000069c42f26000000000000000000000000000000000000000000000000000000000000000110000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000002000000000000000000000000000000000000000000000000000000000000003c0000000000000000000000000000000000000000000000000000000000000004000000000000000000000000000000000000000000000000000000000000000800000000000000000000000000000000000000000000000000000000000000003070b0e000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000030000000000000000000000000000000000000000000000000000000000000060000000000000000000000000000000000000000000000000000000000000022000000000000000000000000000000000000000000000000000000000000002a000000000000000000000000000000000000000000000000000000000000001a0000000000000000000000000000000000000000000000000000000000000002000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000080000000000000000000000000000000000000000000000000000959cd05b40a6e00000000000000000000000000000000000000000000000017243314db5275cb0000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000002000000000000000000000000055d398326f99059ff775485246999027b319795500000000000000000000000000000000000000000000000000000000000000640000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000060000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000006000000000000000000000000055d398326f99059ff775485246999027b3197955000000000000000000000000c590175e458b83680867afd273527ff58f74c02b0000000000000000000000000000000000000000000000000000000000000000756e69780000000000810000000000000000000000000000000000005d", + "from": "0xf25bd11c334507fd007d584e2d0b7b2c6543f714", + "gas": "0x508db", + "gasLimit": "0x508db", + "maxFeePerGas": "0x3938700", + "maxPriorityFeePerGas": "0x3938700", + "nonce": "0x1b", + "to": "0x1a1ec25dc08e98e5e93f1104b5e5cdd298707d31", + "type": "0x2", + "value": "0x96f1728091329" + } + }, + { + "chainId": "0x38", + "hash": "0x6d7fead23509911fab6a8965b0ddb40b7c51662ea05fba0c9856ab3a1dc79078", + "networkType": "bsc-mainnet", + "networkUrl": "https://bsc-mainnet.infura.io/v3/{infuraProjectId}", + "origin": "metamask", + "rawTransaction": "0x02f90519381a84039387008403938700830599d7941a1ec25dc08e98e5e93f1104b5e5cdd298707d318709cd610f1a09b6b904a55f575529000000000000000000000000000000000000000000000000000000000000008000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000009cd610f1a09b600000000000000000000000000000000000000000000000000000000000000c00000000000000000000000000000000000000000000000000000000000000018756e69737761705065726d69743246656544796e616d6963000000000000000000000000000000000000000000000000000000000000000000000000000003c0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000055d398326f99059ff775485246999027b31979550000000000000000000000000000000000000000000000000009b73f2e6ae5ca0000000000000000000000000000000000000000000000001801554bb92d0faf000000000000000000000000000000000000000000000000000000000000012000000000000000000000000000000000000000000000000000001621e0af23ec000000000000000000000000b28da7bc87a9dd1e60849aa7fcb5da24ea913c420000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000028e3593564c000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000000a00000000000000000000000000000000000000000000000000000000069c42dda00000000000000000000000000000000000000000000000000000000000000020b000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000002000000000000000000000000000000000000000000000000000000000000004000000000000000000000000000000000000000000000000000000000000000a0000000000000000000000000000000000000000000000000000000000000004000000000000000000000000000000000000000000000000000000000000000020000000000000000000000000000000000000000000000000009b73f2e6ae5ca0000000000000000000000000000000000000000000000000000000000000100000000000000000000000000c590175e458b83680867afd273527ff58f74c02b0000000000000000000000000000000000000000000000000009b73f2e6ae5ca0000000000000000000000000000000000000000000000001803cad468efb79700000000000000000000000000000000000000000000000000000000000000a00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000002bbb4cdb9cbd36b01bd1cbaebf2de08d9173bc095c00006455d398326f99059ff775485246999027b3197955000000000000000000000000000000000000000000756e69780000000000810000000000000000000000000000000000003cc080a0de8d8cf79aa18a9d815b7986d470f47b58c5d2a55346c4da0ffa12c40419e756a0555df9f789cc440aa4ff93e43236ff9445e92d9807db917fa670b89dc30f2171", + "time": 1774462676055, + "transaction": { + "data": "0x5f575529000000000000000000000000000000000000000000000000000000000000008000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000009cd610f1a09b600000000000000000000000000000000000000000000000000000000000000c00000000000000000000000000000000000000000000000000000000000000018756e69737761705065726d69743246656544796e616d6963000000000000000000000000000000000000000000000000000000000000000000000000000003c0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000055d398326f99059ff775485246999027b31979550000000000000000000000000000000000000000000000000009b73f2e6ae5ca0000000000000000000000000000000000000000000000001801554bb92d0faf000000000000000000000000000000000000000000000000000000000000012000000000000000000000000000000000000000000000000000001621e0af23ec000000000000000000000000b28da7bc87a9dd1e60849aa7fcb5da24ea913c420000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000028e3593564c000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000000a00000000000000000000000000000000000000000000000000000000069c42dda00000000000000000000000000000000000000000000000000000000000000020b000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000002000000000000000000000000000000000000000000000000000000000000004000000000000000000000000000000000000000000000000000000000000000a0000000000000000000000000000000000000000000000000000000000000004000000000000000000000000000000000000000000000000000000000000000020000000000000000000000000000000000000000000000000009b73f2e6ae5ca0000000000000000000000000000000000000000000000000000000000000100000000000000000000000000c590175e458b83680867afd273527ff58f74c02b0000000000000000000000000000000000000000000000000009b73f2e6ae5ca0000000000000000000000000000000000000000000000001803cad468efb79700000000000000000000000000000000000000000000000000000000000000a00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000002bbb4cdb9cbd36b01bd1cbaebf2de08d9173bc095c00006455d398326f99059ff775485246999027b3197955000000000000000000000000000000000000000000756e69780000000000810000000000000000000000000000000000003c", + "from": "0xf25bd11c334507fd007d584e2d0b7b2c6543f714", + "gas": "0x599d7", + "gasLimit": "0x599d7", + "maxFeePerGas": "0x3938700", + "maxPriorityFeePerGas": "0x3938700", + "nonce": "0x1a", + "to": "0x1a1ec25dc08e98e5e93f1104b5e5cdd298707d31", + "type": "0x2", + "value": "0x9cd610f1a09b6" + } + }, + { + "chainId": "0x38", + "hash": "0xb4c8ba10f5fa990d7b1c5ac39c05afb13ae448eb1135480bac4e4e7e5c06e9ba", + "networkType": "bsc-mainnet", + "networkUrl": "https://bsc-mainnet.infura.io/v3/{infuraProjectId}", + "origin": "metamask", + "rawTransaction": "0x02f9051938198403938700840393870083059a0e941a1ec25dc08e98e5e93f1104b5e5cdd298707d31870a2d6ac58fa24fb904a55f57552900000000000000000000000000000000000000000000000000000000000000800000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000a2d6ac58fa24f00000000000000000000000000000000000000000000000000000000000000c00000000000000000000000000000000000000000000000000000000000000018756e69737761705065726d69743246656544796e616d6963000000000000000000000000000000000000000000000000000000000000000000000000000003c0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000055d398326f99059ff775485246999027b3197955000000000000000000000000000000000000000000000000000a1671c324c82200000000000000000000000000000000000000000000000018eac32e105804fa0000000000000000000000000000000000000000000000000000000000000120000000000000000000000000000000000000000000000000000016f9026ada2d000000000000000000000000b28da7bc87a9dd1e60849aa7fcb5da24ea913c420000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000028e3593564c000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000000a00000000000000000000000000000000000000000000000000000000069c42c5300000000000000000000000000000000000000000000000000000000000000020b000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000002000000000000000000000000000000000000000000000000000000000000004000000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000000000000000000000000000000400000000000000000000000000000000000000000000000000000000000000002000000000000000000000000000000000000000000000000000a1671c324c8220000000000000000000000000000000000000000000000000000000000000100000000000000000000000000c590175e458b83680867afd273527ff58f74c02b000000000000000000000000000000000000000000000000000a1671c324c82200000000000000000000000000000000000000000000000018ed50a0680a331400000000000000000000000000000000000000000000000000000000000000a00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000002bbb4cdb9cbd36b01bd1cbaebf2de08d9173bc095c00006455d398326f99059ff775485246999027b3197955000000000000000000000000000000000000000000756e6978000000000081000000000000000000000000000000000000aac001a0205e21d7693c3ccbcdb64568f080179d5b1b4a31457c8ea8da5895d23152c2b1a05b2bc1e60f302b682c92fbf844fdabc8b3428255c751bc109779040b1b2616c8", + "time": 1774462303700, + "transaction": { + "data": "0x5f57552900000000000000000000000000000000000000000000000000000000000000800000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000a2d6ac58fa24f00000000000000000000000000000000000000000000000000000000000000c00000000000000000000000000000000000000000000000000000000000000018756e69737761705065726d69743246656544796e616d6963000000000000000000000000000000000000000000000000000000000000000000000000000003c0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000055d398326f99059ff775485246999027b3197955000000000000000000000000000000000000000000000000000a1671c324c82200000000000000000000000000000000000000000000000018eac32e105804fa0000000000000000000000000000000000000000000000000000000000000120000000000000000000000000000000000000000000000000000016f9026ada2d000000000000000000000000b28da7bc87a9dd1e60849aa7fcb5da24ea913c420000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000028e3593564c000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000000a00000000000000000000000000000000000000000000000000000000069c42c5300000000000000000000000000000000000000000000000000000000000000020b000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000002000000000000000000000000000000000000000000000000000000000000004000000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000000000000000000000000000000400000000000000000000000000000000000000000000000000000000000000002000000000000000000000000000000000000000000000000000a1671c324c8220000000000000000000000000000000000000000000000000000000000000100000000000000000000000000c590175e458b83680867afd273527ff58f74c02b000000000000000000000000000000000000000000000000000a1671c324c82200000000000000000000000000000000000000000000000018ed50a0680a331400000000000000000000000000000000000000000000000000000000000000a00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000002bbb4cdb9cbd36b01bd1cbaebf2de08d9173bc095c00006455d398326f99059ff775485246999027b3197955000000000000000000000000000000000000000000756e6978000000000081000000000000000000000000000000000000aa", + "from": "0xf25bd11c334507fd007d584e2d0b7b2c6543f714", + "gas": "0x59a0e", + "gasLimit": "0x59a0e", + "maxFeePerGas": "0x3938700", + "maxPriorityFeePerGas": "0x3938700", + "nonce": "0x19", + "to": "0x1a1ec25dc08e98e5e93f1104b5e5cdd298707d31", + "type": "0x2", + "value": "0xa2d6ac58fa24f" + } + }, + { + "chainId": "0x38", + "hash": "0x34ec65c3f1b7de51ffc9444b1b631b4a6d049a1defe61d9c1575df3e5b4b80d2", + "networkType": "bsc-mainnet", + "networkUrl": "https://bsc-mainnet.infura.io/v3/{infuraProjectId}", + "origin": "metamask", + "rawTransaction": "0x02f906713818840393870084039387008305f7b494f25bd11c334507fd007d584e2d0b7b2c6543f71480b90604e9ae5c530100000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000004000000000000000000000000000000000000000000000000000000000000005a00000000000000000000000000000000000000000000000000000000000000020000000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000000000200000000000000000000000001a1ec25dc08e98e5e93f1104b5e5cdd298707d31000000000000000000000000000000000000000000000000000a2fd199298f4f000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000004a55f57552900000000000000000000000000000000000000000000000000000000000000800000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000a2fd199298f4f00000000000000000000000000000000000000000000000000000000000000c00000000000000000000000000000000000000000000000000000000000000018756e69737761705065726d69743246656544796e616d6963000000000000000000000000000000000000000000000000000000000000000000000000000003c0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000055d398326f99059ff775485246999027b3197955000000000000000000000000000000000000000000000000000a18d33450231200000000000000000000000000000000000000000000000018f1ee2748fef5210000000000000000000000000000000000000000000000000000000000000120000000000000000000000000000000000000000000000000000016fe64d96c3d000000000000000000000000b28da7bc87a9dd1e60849aa7fcb5da24ea913c420000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000028e3593564c000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000000a00000000000000000000000000000000000000000000000000000000069c42a5000000000000000000000000000000000000000000000000000000000000000020b000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000002000000000000000000000000000000000000000000000000000000000000004000000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000000000000000000000000000000400000000000000000000000000000000000000000000000000000000000000002000000000000000000000000000000000000000000000000000a18d3345023120000000000000000000000000000000000000000000000000000000000000100000000000000000000000000c590175e458b83680867afd273527ff58f74c02b000000000000000000000000000000000000000000000000000a18d33450231200000000000000000000000000000000000000000000000018f47c559aabac3000000000000000000000000000000000000000000000000000000000000000a00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000002bbb4cdb9cbd36b01bd1cbaebf2de08d9173bc095c00006455d398326f99059ff775485246999027b3197955000000000000000000000000000000000000000000756e69780000000000810000000000000000000000000000000000007d000000000000000000000000000000000000000000000000000000c001a0ef9fccba883327719b91f544e098717cc81149a8a36bda7bf11cc7774f560a74a05f4ed36acaddac974e4ad36932c4cb0b8d56f9043eea4ae3a29dfb7511407b73", + "time": 1774461784363, + "transaction": { + "data": "0xe9ae5c530100000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000004000000000000000000000000000000000000000000000000000000000000005a00000000000000000000000000000000000000000000000000000000000000020000000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000000000200000000000000000000000001a1ec25dc08e98e5e93f1104b5e5cdd298707d31000000000000000000000000000000000000000000000000000a2fd199298f4f000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000004a55f57552900000000000000000000000000000000000000000000000000000000000000800000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000a2fd199298f4f00000000000000000000000000000000000000000000000000000000000000c00000000000000000000000000000000000000000000000000000000000000018756e69737761705065726d69743246656544796e616d6963000000000000000000000000000000000000000000000000000000000000000000000000000003c0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000055d398326f99059ff775485246999027b3197955000000000000000000000000000000000000000000000000000a18d33450231200000000000000000000000000000000000000000000000018f1ee2748fef5210000000000000000000000000000000000000000000000000000000000000120000000000000000000000000000000000000000000000000000016fe64d96c3d000000000000000000000000b28da7bc87a9dd1e60849aa7fcb5da24ea913c420000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000028e3593564c000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000000a00000000000000000000000000000000000000000000000000000000069c42a5000000000000000000000000000000000000000000000000000000000000000020b000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000002000000000000000000000000000000000000000000000000000000000000004000000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000000000000000000000000000000400000000000000000000000000000000000000000000000000000000000000002000000000000000000000000000000000000000000000000000a18d3345023120000000000000000000000000000000000000000000000000000000000000100000000000000000000000000c590175e458b83680867afd273527ff58f74c02b000000000000000000000000000000000000000000000000000a18d33450231200000000000000000000000000000000000000000000000018f47c559aabac3000000000000000000000000000000000000000000000000000000000000000a00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000002bbb4cdb9cbd36b01bd1cbaebf2de08d9173bc095c00006455d398326f99059ff775485246999027b3197955000000000000000000000000000000000000000000756e69780000000000810000000000000000000000000000000000007d000000000000000000000000000000000000000000000000000000", + "from": "0xf25bd11c334507fd007d584e2d0b7b2c6543f714", + "gas": "0x5f7b4", + "gasLimit": "0x5f7b4", + "maxFeePerGas": "0x3938700", + "maxPriorityFeePerGas": "0x3938700", + "nonce": "0x18", + "to": "0xf25bd11c334507fd007d584e2d0b7b2c6543f714", + "type": "0x2", + "value": "0x0" + } + }, + { + "chainId": "0x38", + "hash": "0xf6d27b065d8bcce56694369865018eff37e3a316e97160045576f2289d47fd98", + "networkType": "bsc-mainnet", + "networkUrl": "https://bsc-mainnet.infura.io/v3/{infuraProjectId}", + "origin": "metamask", + "rawTransaction": "0x02f906713816840393870084039387008305f7c994f25bd11c334507fd007d584e2d0b7b2c6543f71480b90604e9ae5c530100000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000004000000000000000000000000000000000000000000000000000000000000005a00000000000000000000000000000000000000000000000000000000000000020000000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000000000200000000000000000000000001a1ec25dc08e98e5e93f1104b5e5cdd298707d31000000000000000000000000000000000000000000000000000a8e8cab940f51000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000004a55f57552900000000000000000000000000000000000000000000000000000000000000800000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000a8e8cab940f5100000000000000000000000000000000000000000000000000000000000000c00000000000000000000000000000000000000000000000000000000000000018756e69737761705065726d69743246656544796e616d6963000000000000000000000000000000000000000000000000000000000000000000000000000003c0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000055d398326f99059ff775485246999027b3197955000000000000000000000000000000000000000000000000000a76ba143be99d00000000000000000000000000000000000000000000000019eeb2b4aa4e0f2d0000000000000000000000000000000000000000000000000000000000000120000000000000000000000000000000000000000000000000000017d2975825b4000000000000000000000000b28da7bc87a9dd1e60849aa7fcb5da24ea913c420000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000028e3593564c000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000000a00000000000000000000000000000000000000000000000000000000069c4225400000000000000000000000000000000000000000000000000000000000000020b000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000002000000000000000000000000000000000000000000000000000000000000004000000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000000000000000000000000000000400000000000000000000000000000000000000000000000000000000000000002000000000000000000000000000000000000000000000000000a76ba143be99d0000000000000000000000000000000000000000000000000000000000000100000000000000000000000000c590175e458b83680867afd273527ff58f74c02b000000000000000000000000000000000000000000000000000a76ba143be99d00000000000000000000000000000000000000000000000019f15ac7caa4588800000000000000000000000000000000000000000000000000000000000000a00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000002bbb4cdb9cbd36b01bd1cbaebf2de08d9173bc095c00006455d398326f99059ff775485246999027b3197955000000000000000000000000000000000000000000756e6978000000000081000000000000000000000000000000000000c7000000000000000000000000000000000000000000000000000000c080a0b3cfca69cb897df28c3875464684b02022e08cbef8e617713b7a82d84b5c1017a065f411ca8031cee98b93f22a94690b0f6b0942bec6aae878198e99f1eee5ffe7", + "time": 1774459727996, + "transaction": { + "data": "0xe9ae5c530100000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000004000000000000000000000000000000000000000000000000000000000000005a00000000000000000000000000000000000000000000000000000000000000020000000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000000000200000000000000000000000001a1ec25dc08e98e5e93f1104b5e5cdd298707d31000000000000000000000000000000000000000000000000000a8e8cab940f51000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000004a55f57552900000000000000000000000000000000000000000000000000000000000000800000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000a8e8cab940f5100000000000000000000000000000000000000000000000000000000000000c00000000000000000000000000000000000000000000000000000000000000018756e69737761705065726d69743246656544796e616d6963000000000000000000000000000000000000000000000000000000000000000000000000000003c0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000055d398326f99059ff775485246999027b3197955000000000000000000000000000000000000000000000000000a76ba143be99d00000000000000000000000000000000000000000000000019eeb2b4aa4e0f2d0000000000000000000000000000000000000000000000000000000000000120000000000000000000000000000000000000000000000000000017d2975825b4000000000000000000000000b28da7bc87a9dd1e60849aa7fcb5da24ea913c420000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000028e3593564c000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000000a00000000000000000000000000000000000000000000000000000000069c4225400000000000000000000000000000000000000000000000000000000000000020b000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000002000000000000000000000000000000000000000000000000000000000000004000000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000000000000000000000000000000400000000000000000000000000000000000000000000000000000000000000002000000000000000000000000000000000000000000000000000a76ba143be99d0000000000000000000000000000000000000000000000000000000000000100000000000000000000000000c590175e458b83680867afd273527ff58f74c02b000000000000000000000000000000000000000000000000000a76ba143be99d00000000000000000000000000000000000000000000000019f15ac7caa4588800000000000000000000000000000000000000000000000000000000000000a00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000002bbb4cdb9cbd36b01bd1cbaebf2de08d9173bc095c00006455d398326f99059ff775485246999027b3197955000000000000000000000000000000000000000000756e6978000000000081000000000000000000000000000000000000c7000000000000000000000000000000000000000000000000000000", + "from": "0xf25bd11c334507fd007d584e2d0b7b2c6543f714", + "gas": "0x5f7c9", + "gasLimit": "0x5f7c9", + "maxFeePerGas": "0x3938700", + "maxPriorityFeePerGas": "0x3938700", + "nonce": "0x16", + "to": "0xf25bd11c334507fd007d584e2d0b7b2c6543f714", + "type": "0x2", + "value": "0x0" + } + }, + { + "chainId": "0x38", + "hash": "0xc00a04fb95130719e482038fdac80e11a2f96ed91806b3f6055e0983bf8f6b19", + "networkType": "bsc-mainnet", + "networkUrl": "https://bsc-mainnet.infura.io/v3/{infuraProjectId}", + "origin": "metamask", + "rawTransaction": "0x02f904d13815840393870084039387008306913c94f25bd11c334507fd007d584e2d0b7b2c6543f71480b90464e9ae5c530100000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000004000000000000000000000000000000000000000000000000000000000000004000000000000000000000000000000000000000000000000000000000000000020000000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000000000200000000000000000000000001a1ec25dc08e98e5e93f1104b5e5cdd298707d31000000000000000000000000000000000000000000000000000a8e9554df0351000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000003055f57552900000000000000000000000000000000000000000000000000000000000000800000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000a8e9554df035100000000000000000000000000000000000000000000000000000000000000c0000000000000000000000000000000000000000000000000000000000000001b70616e63616b6553776170526f7574657246656544796e616d696300000000000000000000000000000000000000000000000000000000000000000000000220000000000000000000000000000000000000000000000000000000000000000000000000000000000000000055d398326f99059ff775485246999027b3197955000000000000000000000000000000000000000000000000000a76bde1f71ebd00000000000000000000000000000000000000000000000019e5ac6a740ca9120000000000000000000000000000000000000000000000000000000000000120000000000000000000000000000000000000000000000000000017d772e7e494000000000000000000000000b28da7bc87a9dd1e60849aa7fcb5da24ea913c42000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000e404e45aaf000000000000000000000000bb4cdb9cbd36b01bd1cbaebf2de08d9173bc095c00000000000000000000000055d398326f99059ff775485246999027b31979550000000000000000000000000000000000000000000000000000000000000064000000000000000000000000c590175e458b83680867afd273527ff58f74c02b000000000000000000000000000000000000000000000000000a76bde1f71ebd00000000000000000000000000000000000000000000000019e85390e949d2a000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000058000000000000000000000000000000000000000000000000000000c080a00820d175fe0aa1b84424c9c3338e0c414b8ba6e8b7c5ce20aa6d2e23a459b692a023ca12af4d104df74cd3bb371aa09689a2eca88067e3c7a67de19d665015cc7d", + "time": 1774459397112, + "transaction": { + "data": "0xe9ae5c530100000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000004000000000000000000000000000000000000000000000000000000000000004000000000000000000000000000000000000000000000000000000000000000020000000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000000000200000000000000000000000001a1ec25dc08e98e5e93f1104b5e5cdd298707d31000000000000000000000000000000000000000000000000000a8e9554df0351000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000003055f57552900000000000000000000000000000000000000000000000000000000000000800000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000a8e9554df035100000000000000000000000000000000000000000000000000000000000000c0000000000000000000000000000000000000000000000000000000000000001b70616e63616b6553776170526f7574657246656544796e616d696300000000000000000000000000000000000000000000000000000000000000000000000220000000000000000000000000000000000000000000000000000000000000000000000000000000000000000055d398326f99059ff775485246999027b3197955000000000000000000000000000000000000000000000000000a76bde1f71ebd00000000000000000000000000000000000000000000000019e5ac6a740ca9120000000000000000000000000000000000000000000000000000000000000120000000000000000000000000000000000000000000000000000017d772e7e494000000000000000000000000b28da7bc87a9dd1e60849aa7fcb5da24ea913c42000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000e404e45aaf000000000000000000000000bb4cdb9cbd36b01bd1cbaebf2de08d9173bc095c00000000000000000000000055d398326f99059ff775485246999027b31979550000000000000000000000000000000000000000000000000000000000000064000000000000000000000000c590175e458b83680867afd273527ff58f74c02b000000000000000000000000000000000000000000000000000a76bde1f71ebd00000000000000000000000000000000000000000000000019e85390e949d2a000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000058000000000000000000000000000000000000000000000000000000", + "from": "0xf25bd11c334507fd007d584e2d0b7b2c6543f714", + "gas": "0x6913c", + "gasLimit": "0x6913c", + "maxFeePerGas": "0x3938700", + "maxPriorityFeePerGas": "0x3938700", + "nonce": "0x15", + "to": "0xf25bd11c334507fd007d584e2d0b7b2c6543f714", + "type": "0x2", + "value": "0x0" + } + }, + { + "chainId": "0x38", + "hash": "0x866378820a2c2120ce70a2e8de356faad0238a674267f595c7bf392ef40ed21f", + "networkType": "bsc-mainnet", + "networkUrl": "https://bsc-mainnet.infura.io/v3/{infuraProjectId}", + "origin": "metamask", + "rawTransaction": "0x02f908b138148403938700840393870083056b4d94f25bd11c334507fd007d584e2d0b7b2c6543f71480b90844e9ae5c530100000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000004000000000000000000000000000000000000000000000000000000000000007e00000000000000000000000000000000000000000000000000000000000000020000000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000000000200000000000000000000000001a1ec25dc08e98e5e93f1104b5e5cdd298707d31000000000000000000000000000000000000000000000000000a957c255a85d1000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000006e55f57552900000000000000000000000000000000000000000000000000000000000000800000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000a957c255a85d100000000000000000000000000000000000000000000000000000000000000c00000000000000000000000000000000000000000000000000000000000000018756e69737761705065726d69743246656544796e616d696300000000000000000000000000000000000000000000000000000000000000000000000000000600000000000000000000000000000000000000000000000000000000000000000000000000000000000000000055d398326f99059ff775485246999027b3197955000000000000000000000000000000000000000000000000000a7d9e9171e55d00000000000000000000000000000000000000000000000019f6f9405c9923910000000000000000000000000000000000000000000000000000000000000120000000000000000000000000000000000000000000000000000017dd93e8a074000000000000000000000000b28da7bc87a9dd1e60849aa7fcb5da24ea913c42000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000004ce3593564c000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000000a00000000000000000000000000000000000000000000000000000000069c420d6000000000000000000000000000000000000000000000000000000000000000110000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000002000000000000000000000000000000000000000000000000000000000000003c0000000000000000000000000000000000000000000000000000000000000004000000000000000000000000000000000000000000000000000000000000000800000000000000000000000000000000000000000000000000000000000000003070b0e000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000030000000000000000000000000000000000000000000000000000000000000060000000000000000000000000000000000000000000000000000000000000022000000000000000000000000000000000000000000000000000000000000002a000000000000000000000000000000000000000000000000000000000000001a0000000000000000000000000000000000000000000000000000000000000002000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000080000000000000000000000000000000000000000000000000000a7d9e9171e55d00000000000000000000000000000000000000000000000019f9a22c8390153e0000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000002000000000000000000000000055d398326f99059ff775485246999027b319795500000000000000000000000000000000000000000000000000000000000000640000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000060000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000006000000000000000000000000055d398326f99059ff775485246999027b3197955000000000000000000000000c590175e458b83680867afd273527ff58f74c02b0000000000000000000000000000000000000000000000000000000000000000756e697800000000008100000000000000000000000000000000000061000000000000000000000000000000000000000000000000000000c080a0f6570cba39ede3ffd9a58f9ce0853d345341a71c1e4596b23c57404854e252aea06a904f171051fe7147af96b5925d45ac1b9d9526b5958d4381d82333ccef5d69", + "time": 1774459359678, + "transaction": { + "data": "0xe9ae5c530100000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000004000000000000000000000000000000000000000000000000000000000000007e00000000000000000000000000000000000000000000000000000000000000020000000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000000000200000000000000000000000001a1ec25dc08e98e5e93f1104b5e5cdd298707d31000000000000000000000000000000000000000000000000000a957c255a85d1000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000006e55f57552900000000000000000000000000000000000000000000000000000000000000800000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000a957c255a85d100000000000000000000000000000000000000000000000000000000000000c00000000000000000000000000000000000000000000000000000000000000018756e69737761705065726d69743246656544796e616d696300000000000000000000000000000000000000000000000000000000000000000000000000000600000000000000000000000000000000000000000000000000000000000000000000000000000000000000000055d398326f99059ff775485246999027b3197955000000000000000000000000000000000000000000000000000a7d9e9171e55d00000000000000000000000000000000000000000000000019f6f9405c9923910000000000000000000000000000000000000000000000000000000000000120000000000000000000000000000000000000000000000000000017dd93e8a074000000000000000000000000b28da7bc87a9dd1e60849aa7fcb5da24ea913c42000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000004ce3593564c000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000000a00000000000000000000000000000000000000000000000000000000069c420d6000000000000000000000000000000000000000000000000000000000000000110000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000002000000000000000000000000000000000000000000000000000000000000003c0000000000000000000000000000000000000000000000000000000000000004000000000000000000000000000000000000000000000000000000000000000800000000000000000000000000000000000000000000000000000000000000003070b0e000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000030000000000000000000000000000000000000000000000000000000000000060000000000000000000000000000000000000000000000000000000000000022000000000000000000000000000000000000000000000000000000000000002a000000000000000000000000000000000000000000000000000000000000001a0000000000000000000000000000000000000000000000000000000000000002000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000080000000000000000000000000000000000000000000000000000a7d9e9171e55d00000000000000000000000000000000000000000000000019f9a22c8390153e0000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000002000000000000000000000000055d398326f99059ff775485246999027b319795500000000000000000000000000000000000000000000000000000000000000640000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000060000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000006000000000000000000000000055d398326f99059ff775485246999027b3197955000000000000000000000000c590175e458b83680867afd273527ff58f74c02b0000000000000000000000000000000000000000000000000000000000000000756e697800000000008100000000000000000000000000000000000061000000000000000000000000000000000000000000000000000000", + "from": "0xf25bd11c334507fd007d584e2d0b7b2c6543f714", + "gas": "0x56b4d", + "gasLimit": "0x56b4d", + "maxFeePerGas": "0x3938700", + "maxPriorityFeePerGas": "0x3938700", + "nonce": "0x14", + "to": "0xf25bd11c334507fd007d584e2d0b7b2c6543f714", + "type": "0x2", + "value": "0x0" + } + }, + { + "chainId": "0x38", + "hash": "0x9da386baa9c339da273e9e3213ddbc2936051a35cbde69608b11eedd2e74894a", + "networkType": "bsc-mainnet", + "networkUrl": "https://bsc-mainnet.infura.io/v3/{infuraProjectId}", + "origin": "metamask", + "rawTransaction": "0x02f906713813840393870084039387008305f73f94f25bd11c334507fd007d584e2d0b7b2c6543f71480b90604e9ae5c530100000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000004000000000000000000000000000000000000000000000000000000000000005a00000000000000000000000000000000000000000000000000000000000000020000000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000000000200000000000000000000000001a1ec25dc08e98e5e93f1104b5e5cdd298707d31000000000000000000000000000000000000000000000000000a95f1e7984451000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000004a55f57552900000000000000000000000000000000000000000000000000000000000000800000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000a95f1e798445100000000000000000000000000000000000000000000000000000000000000c00000000000000000000000000000000000000000000000000000000000000018756e69737761705065726d69743246656544796e616d6963000000000000000000000000000000000000000000000000000000000000000000000000000003c0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000055d398326f99059ff775485246999027b3197955000000000000000000000000000000000000000000000000000a7e0ef14111cd00000000000000000000000000000000000000000000000019f480eee2525bf10000000000000000000000000000000000000000000000000000000000000120000000000000000000000000000000000000000000000000000017e2f6573284000000000000000000000000b28da7bc87a9dd1e60849aa7fcb5da24ea913c420000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000028e3593564c000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000000a00000000000000000000000000000000000000000000000000000000069c4204800000000000000000000000000000000000000000000000000000000000000020b000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000002000000000000000000000000000000000000000000000000000000000000004000000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000000000000000000000000000000400000000000000000000000000000000000000000000000000000000000000002000000000000000000000000000000000000000000000000000a7e0ef14111cd0000000000000000000000000000000000000000000000000000000000000100000000000000000000000000c590175e458b83680867afd273527ff58f74c02b000000000000000000000000000000000000000000000000000a7e0ef14111cd00000000000000000000000000000000000000000000000019f7299a42cf2a4b00000000000000000000000000000000000000000000000000000000000000a00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000002bbb4cdb9cbd36b01bd1cbaebf2de08d9173bc095c00006455d398326f99059ff775485246999027b3197955000000000000000000000000000000000000000000756e697800000000008100000000000000000000000000000000000007000000000000000000000000000000000000000000000000000000c080a0af0084f8ebaf98dcaaf5fe3d37e4825f99271e2e0ab1b59eb62779b5e47f8270a020583338aff085bca9f29b43b0254c6ffc6b14e4c4fe5737dc21c34aedeceef4", + "time": 1774459208640, + "transaction": { + "data": "0xe9ae5c530100000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000004000000000000000000000000000000000000000000000000000000000000005a00000000000000000000000000000000000000000000000000000000000000020000000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000000000200000000000000000000000001a1ec25dc08e98e5e93f1104b5e5cdd298707d31000000000000000000000000000000000000000000000000000a95f1e7984451000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000004a55f57552900000000000000000000000000000000000000000000000000000000000000800000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000a95f1e798445100000000000000000000000000000000000000000000000000000000000000c00000000000000000000000000000000000000000000000000000000000000018756e69737761705065726d69743246656544796e616d6963000000000000000000000000000000000000000000000000000000000000000000000000000003c0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000055d398326f99059ff775485246999027b3197955000000000000000000000000000000000000000000000000000a7e0ef14111cd00000000000000000000000000000000000000000000000019f480eee2525bf10000000000000000000000000000000000000000000000000000000000000120000000000000000000000000000000000000000000000000000017e2f6573284000000000000000000000000b28da7bc87a9dd1e60849aa7fcb5da24ea913c420000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000028e3593564c000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000000a00000000000000000000000000000000000000000000000000000000069c4204800000000000000000000000000000000000000000000000000000000000000020b000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000002000000000000000000000000000000000000000000000000000000000000004000000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000000000000000000000000000000400000000000000000000000000000000000000000000000000000000000000002000000000000000000000000000000000000000000000000000a7e0ef14111cd0000000000000000000000000000000000000000000000000000000000000100000000000000000000000000c590175e458b83680867afd273527ff58f74c02b000000000000000000000000000000000000000000000000000a7e0ef14111cd00000000000000000000000000000000000000000000000019f7299a42cf2a4b00000000000000000000000000000000000000000000000000000000000000a00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000002bbb4cdb9cbd36b01bd1cbaebf2de08d9173bc095c00006455d398326f99059ff775485246999027b3197955000000000000000000000000000000000000000000756e697800000000008100000000000000000000000000000000000007000000000000000000000000000000000000000000000000000000", + "from": "0xf25bd11c334507fd007d584e2d0b7b2c6543f714", + "gas": "0x5f73f", + "gasLimit": "0x5f73f", + "maxFeePerGas": "0x3938700", + "maxPriorityFeePerGas": "0x3938700", + "nonce": "0x13", + "to": "0xf25bd11c334507fd007d584e2d0b7b2c6543f714", + "type": "0x2", + "value": "0x0" + } + }, + { + "chainId": "0x38", + "hash": "0x02b9e0af7542d82ea0709ba9e13e3067a9ce5c276e78083d6b43640ae937bec8", + "networkType": "bsc-mainnet", + "networkUrl": "https://bsc-mainnet.infura.io/v3/{infuraProjectId}", + "origin": "metamask", + "rawTransaction": "0x02f908b138118403938700840393870083056b5394f25bd11c334507fd007d584e2d0b7b2c6543f71480b90844e9ae5c530100000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000004000000000000000000000000000000000000000000000000000000000000007e00000000000000000000000000000000000000000000000000000000000000020000000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000000000200000000000000000000000001a1ec25dc08e98e5e93f1104b5e5cdd298707d31000000000000000000000000000000000000000000000000000affd25569f31b000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000006e55f57552900000000000000000000000000000000000000000000000000000000000000800000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000affd25569f31b00000000000000000000000000000000000000000000000000000000000000c00000000000000000000000000000000000000000000000000000000000000018756e69737761705065726d69743246656544796e616d696300000000000000000000000000000000000000000000000000000000000000000000000000000600000000000000000000000000000000000000000000000000000000000000000000000000000000000000000055d398326f99059ff775485246999027b3197955000000000000000000000000000000000000000000000000000ae706610dc1b50000000000000000000000000000000000000000000000001b0285ccb7aa216e0000000000000000000000000000000000000000000000000000000000000120000000000000000000000000000000000000000000000000000018cbf45c3166000000000000000000000000b28da7bc87a9dd1e60849aa7fcb5da24ea913c42000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000004ce3593564c000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000000a00000000000000000000000000000000000000000000000000000000069c41d58000000000000000000000000000000000000000000000000000000000000000110000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000002000000000000000000000000000000000000000000000000000000000000003c0000000000000000000000000000000000000000000000000000000000000004000000000000000000000000000000000000000000000000000000000000000800000000000000000000000000000000000000000000000000000000000000003070b0e000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000030000000000000000000000000000000000000000000000000000000000000060000000000000000000000000000000000000000000000000000000000000022000000000000000000000000000000000000000000000000000000000000002a000000000000000000000000000000000000000000000000000000000000001a0000000000000000000000000000000000000000000000000000000000000002000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000080000000000000000000000000000000000000000000000000000ae706610dc1b50000000000000000000000000000000000000000000000001b054a21502b94e50000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000002000000000000000000000000055d398326f99059ff775485246999027b319795500000000000000000000000000000000000000000000000000000000000000640000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000060000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000006000000000000000000000000055d398326f99059ff775485246999027b3197955000000000000000000000000c590175e458b83680867afd273527ff58f74c02b0000000000000000000000000000000000000000000000000000000000000000756e69780000000000810000000000000000000000000000000000001d000000000000000000000000000000000000000000000000000000c001a061d6874e54ce93311b6ad682977807eca574aac53ff61d2c3d1879cbc969143ba0565d506f25649060287f2b034ab3cb0d51ae6ed204f6b0e271ad3f238c3d669e", + "time": 1774458479975, + "transaction": { + "data": "0xe9ae5c530100000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000004000000000000000000000000000000000000000000000000000000000000007e00000000000000000000000000000000000000000000000000000000000000020000000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000000000200000000000000000000000001a1ec25dc08e98e5e93f1104b5e5cdd298707d31000000000000000000000000000000000000000000000000000affd25569f31b000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000006e55f57552900000000000000000000000000000000000000000000000000000000000000800000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000affd25569f31b00000000000000000000000000000000000000000000000000000000000000c00000000000000000000000000000000000000000000000000000000000000018756e69737761705065726d69743246656544796e616d696300000000000000000000000000000000000000000000000000000000000000000000000000000600000000000000000000000000000000000000000000000000000000000000000000000000000000000000000055d398326f99059ff775485246999027b3197955000000000000000000000000000000000000000000000000000ae706610dc1b50000000000000000000000000000000000000000000000001b0285ccb7aa216e0000000000000000000000000000000000000000000000000000000000000120000000000000000000000000000000000000000000000000000018cbf45c3166000000000000000000000000b28da7bc87a9dd1e60849aa7fcb5da24ea913c42000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000004ce3593564c000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000000a00000000000000000000000000000000000000000000000000000000069c41d58000000000000000000000000000000000000000000000000000000000000000110000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000002000000000000000000000000000000000000000000000000000000000000003c0000000000000000000000000000000000000000000000000000000000000004000000000000000000000000000000000000000000000000000000000000000800000000000000000000000000000000000000000000000000000000000000003070b0e000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000030000000000000000000000000000000000000000000000000000000000000060000000000000000000000000000000000000000000000000000000000000022000000000000000000000000000000000000000000000000000000000000002a000000000000000000000000000000000000000000000000000000000000001a0000000000000000000000000000000000000000000000000000000000000002000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000080000000000000000000000000000000000000000000000000000ae706610dc1b50000000000000000000000000000000000000000000000001b054a21502b94e50000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000002000000000000000000000000055d398326f99059ff775485246999027b319795500000000000000000000000000000000000000000000000000000000000000640000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000060000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000006000000000000000000000000055d398326f99059ff775485246999027b3197955000000000000000000000000c590175e458b83680867afd273527ff58f74c02b0000000000000000000000000000000000000000000000000000000000000000756e69780000000000810000000000000000000000000000000000001d000000000000000000000000000000000000000000000000000000", + "from": "0xf25bd11c334507fd007d584e2d0b7b2c6543f714", + "gas": "0x56b53", + "gasLimit": "0x56b53", + "maxFeePerGas": "0x3938700", + "maxPriorityFeePerGas": "0x3938700", + "nonce": "0x11", + "to": "0xf25bd11c334507fd007d584e2d0b7b2c6543f714", + "type": "0x2", + "value": "0x0" + } + }, + { + "chainId": "0x38", + "hash": "0xed393847afe485dbf8427e91376060279bc2cbf3983da8ec0522b50aecb841dd", + "networkType": "bsc-mainnet", + "networkUrl": "https://bsc-mainnet.infura.io/v3/{infuraProjectId}", + "origin": "metamask", + "rawTransaction": "0x02f907d13810840393870084039387008307c36c94f25bd11c334507fd007d584e2d0b7b2c6543f71480b90764e9ae5c530100000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000004000000000000000000000000000000000000000000000000000000000000007000000000000000000000000000000000000000000000000000000000000000020000000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000000000200000000000000000000000001a1ec25dc08e98e5e93f1104b5e5cdd298707d31000000000000000000000000000000000000000000000000000afc3cc610b89b000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000006055f57552900000000000000000000000000000000000000000000000000000000000000800000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000afc3cc610b89b00000000000000000000000000000000000000000000000000000000000000c000000000000000000000000000000000000000000000000000000000000000136f6e65496e6368563646656544796e616d6963000000000000000000000000000000000000000000000000000000000000000000000000000000000000000520000000000000000000000000000000000000000000000000000000000000000000000000000000000000000055d398326f99059ff775485246999027b3197955000000000000000000000000000000000000000000000000000ae369df0b00f50000000000000000000000000000000000000000000000001af6b663b4690deb0000000000000000000000000000000000000000000000000000000000000120000000000000000000000000000000000000000000000000000018d2e705b7a6000000000000000000000000b28da7bc87a9dd1e60849aa7fcb5da24ea913c42000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000003e807ed2379000000000000000000000000990636ecb3ff04d33d92e970d3d588bf5cd8d086000000000000000000000000eeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeee00000000000000000000000055d398326f99059ff775485246999027b3197955000000000000000000000000990636ecb3ff04d33d92e970d3d588bf5cd8d086000000000000000000000000c590175e458b83680867afd273527ff58f74c02b000000000000000000000000000000000000000000000000000ae369df0b00f50000000000000000000000000000000000000000000000001af6b663b4690deb00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000120000000000000000000000000000000000000000000000000000000000000029600000000000000000000000000000000000000000000027800006800004e00a0744c8c09000000000000000000000000000000000000000090cbe4bdd538d6e9b379bff5fe72c3d67a521de5000000000000000000000000000000000000000000000000000000475b97efe54041bb4cdb9cbd36b01bd1cbaebf2de08d9173bc095cd0e30db05120111111125421ca6dc452d289314280a0f8842a65bb4cdb9cbd36b01bd1cbaebf2de08d9173bc095c0144f497df7500000000000000000000000000000000000000006c2caac72e0038e50d62808d0000000000000000000000009e229b12cc9081d6a510b29ccbd6311743e277ed000000000000000000000000000000000000000000000000000000000000000000000000000000000000000055d398326f99059ff775485246999027b3197955000000000000000000000000bb4cdb9cbd36b01bd1cbaebf2de08d9173bc095c0000000000000000000000000000000000000000000000001b83958a4f9a37da000000000000000000000000000000000000000000000000000ae3228373111000000000000000000000000000002564010069c40956e970d3d588bf5cd8d08618c6a2ff35e831bf7be8ac306a40f74f12e01fe5a2df8750a20af91ca13aeb5da850a36210261371289aacb3d10c8fec9585e49daf000c58ac34d1231ee95dc40000000000000000000000000000000000000000000000000000000000000000280000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001a00000000000000000000000000000000000000000000000000000000000000014111111125421ca6dc452d289314280a0f8842a65000000000000000000000000000000000000000000007dcbea7c00000000000000000000000000000000000000000000000053000000000000000000000000000000000000000000000000000000c080a02ef942efb3d5f6200a256f84351e9b7707540dd4c0104c904ff8c863268ea63ea02de6ef77559c156f7d38b30596bbde261da5f64fc0abf4de97df56672e06672c", + "time": 1774455070211, + "transaction": { + "data": "0xe9ae5c530100000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000004000000000000000000000000000000000000000000000000000000000000007000000000000000000000000000000000000000000000000000000000000000020000000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000000000200000000000000000000000001a1ec25dc08e98e5e93f1104b5e5cdd298707d31000000000000000000000000000000000000000000000000000afc3cc610b89b000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000006055f57552900000000000000000000000000000000000000000000000000000000000000800000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000afc3cc610b89b00000000000000000000000000000000000000000000000000000000000000c000000000000000000000000000000000000000000000000000000000000000136f6e65496e6368563646656544796e616d6963000000000000000000000000000000000000000000000000000000000000000000000000000000000000000520000000000000000000000000000000000000000000000000000000000000000000000000000000000000000055d398326f99059ff775485246999027b3197955000000000000000000000000000000000000000000000000000ae369df0b00f50000000000000000000000000000000000000000000000001af6b663b4690deb0000000000000000000000000000000000000000000000000000000000000120000000000000000000000000000000000000000000000000000018d2e705b7a6000000000000000000000000b28da7bc87a9dd1e60849aa7fcb5da24ea913c42000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000003e807ed2379000000000000000000000000990636ecb3ff04d33d92e970d3d588bf5cd8d086000000000000000000000000eeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeee00000000000000000000000055d398326f99059ff775485246999027b3197955000000000000000000000000990636ecb3ff04d33d92e970d3d588bf5cd8d086000000000000000000000000c590175e458b83680867afd273527ff58f74c02b000000000000000000000000000000000000000000000000000ae369df0b00f50000000000000000000000000000000000000000000000001af6b663b4690deb00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000120000000000000000000000000000000000000000000000000000000000000029600000000000000000000000000000000000000000000027800006800004e00a0744c8c09000000000000000000000000000000000000000090cbe4bdd538d6e9b379bff5fe72c3d67a521de5000000000000000000000000000000000000000000000000000000475b97efe54041bb4cdb9cbd36b01bd1cbaebf2de08d9173bc095cd0e30db05120111111125421ca6dc452d289314280a0f8842a65bb4cdb9cbd36b01bd1cbaebf2de08d9173bc095c0144f497df7500000000000000000000000000000000000000006c2caac72e0038e50d62808d0000000000000000000000009e229b12cc9081d6a510b29ccbd6311743e277ed000000000000000000000000000000000000000000000000000000000000000000000000000000000000000055d398326f99059ff775485246999027b3197955000000000000000000000000bb4cdb9cbd36b01bd1cbaebf2de08d9173bc095c0000000000000000000000000000000000000000000000001b83958a4f9a37da000000000000000000000000000000000000000000000000000ae3228373111000000000000000000000000000002564010069c40956e970d3d588bf5cd8d08618c6a2ff35e831bf7be8ac306a40f74f12e01fe5a2df8750a20af91ca13aeb5da850a36210261371289aacb3d10c8fec9585e49daf000c58ac34d1231ee95dc40000000000000000000000000000000000000000000000000000000000000000280000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001a00000000000000000000000000000000000000000000000000000000000000014111111125421ca6dc452d289314280a0f8842a65000000000000000000000000000000000000000000007dcbea7c00000000000000000000000000000000000000000000000053000000000000000000000000000000000000000000000000000000", + "from": "0xf25bd11c334507fd007d584e2d0b7b2c6543f714", + "gas": "0x7c36c", + "gasLimit": "0x7c36c", + "maxFeePerGas": "0x3938700", + "maxPriorityFeePerGas": "0x3938700", + "nonce": "0x10", + "to": "0xf25bd11c334507fd007d584e2d0b7b2c6543f714", + "type": "0x2", + "value": "0x0" + } + }, + { + "chainId": "0x38", + "hash": "0x56a7b52d67a823c3b2643abe07da52a648374689ede5189056b09c8afb4ffd72", + "networkType": "bsc-mainnet", + "networkUrl": "https://bsc-mainnet.infura.io/v3/{infuraProjectId}", + "origin": "metamask", + "rawTransaction": "0x02f907d1380f840393870084039387008307c3b794f25bd11c334507fd007d584e2d0b7b2c6543f71480b90764e9ae5c530100000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000004000000000000000000000000000000000000000000000000000000000000007000000000000000000000000000000000000000000000000000000000000000020000000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000000000200000000000000000000000001a1ec25dc08e98e5e93f1104b5e5cdd298707d31000000000000000000000000000000000000000000000000000afdec783ab29b000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000006055f57552900000000000000000000000000000000000000000000000000000000000000800000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000afdec783ab29b00000000000000000000000000000000000000000000000000000000000000c000000000000000000000000000000000000000000000000000000000000000136f6e65496e6368563646656544796e616d6963000000000000000000000000000000000000000000000000000000000000000000000000000000000000000520000000000000000000000000000000000000000000000000000000000000000000000000000000000000000055d398326f99059ff775485246999027b3197955000000000000000000000000000000000000000000000000000ae5129aca26f50000000000000000000000000000000000000000000000001aec02d2e474c2eb0000000000000000000000000000000000000000000000000000000000000120000000000000000000000000000000000000000000000000000018d9dd708ba6000000000000000000000000b28da7bc87a9dd1e60849aa7fcb5da24ea913c42000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000003e807ed2379000000000000000000000000990636ecb3ff04d33d92e970d3d588bf5cd8d086000000000000000000000000eeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeee00000000000000000000000055d398326f99059ff775485246999027b3197955000000000000000000000000990636ecb3ff04d33d92e970d3d588bf5cd8d086000000000000000000000000c590175e458b83680867afd273527ff58f74c02b000000000000000000000000000000000000000000000000000ae5129aca26f50000000000000000000000000000000000000000000000001aec02d2e474c2eb00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000120000000000000000000000000000000000000000000000000000000000000029600000000000000000000000000000000000000000000027800006800004e00a0744c8c09000000000000000000000000000000000000000090cbe4bdd538d6e9b379bff5fe72c3d67a521de500000000000000000000000000000000000000000000000000000047667778454041bb4cdb9cbd36b01bd1cbaebf2de08d9173bc095cd0e30db05120111111125421ca6dc452d289314280a0f8842a65bb4cdb9cbd36b01bd1cbaebf2de08d9173bc095c0144f497df75000000000000000000000000000000000000000042b4d09aea36b38e50a48dae0000000000000000000000009e229b12cc9081d6a510b29ccbd6311743e277ed000000000000000000000000000000000000000000000000000000000000000000000000000000000000000055d398326f99059ff775485246999027b3197955000000000000000000000000bb4cdb9cbd36b01bd1cbaebf2de08d9173bc095c0000000000000000000000000000000000000000000000001b78afcc90d7f6ce000000000000000000000000000000000000000000000000000ae4cb3452aeb00000000000000000000000000000255cbd0069c407fae970d3d588bf5cd8d0866a23c6873e144d23b5b3912af3bca51b4bb88a639f33b63fe294018eed41c2d953ec92c2568ad0a7fe4d415f97b091549f8d072a7f13216c1fd8cb0314bbc24a0000000000000000000000000000000000000000000000000000000000000000280000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001a00000000000000000000000000000000000000000000000000000000000000014111111125421ca6dc452d289314280a0f8842a65000000000000000000000000000000000000000000007dcbea7c00000000000000000000000000000000000000000000000007000000000000000000000000000000000000000000000000000000c001a0e77c7b7e56726842c4a5a5056811c5592b2d05c42262857e7d22b53ad2f66083a03f3dbd3b721bcd6e4361e526ed380505d2f71209fcc7d5bc557a1fc636d0a97c", + "time": 1774454723076, + "transaction": { + "data": "0xe9ae5c530100000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000004000000000000000000000000000000000000000000000000000000000000007000000000000000000000000000000000000000000000000000000000000000020000000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000000000200000000000000000000000001a1ec25dc08e98e5e93f1104b5e5cdd298707d31000000000000000000000000000000000000000000000000000afdec783ab29b000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000006055f57552900000000000000000000000000000000000000000000000000000000000000800000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000afdec783ab29b00000000000000000000000000000000000000000000000000000000000000c000000000000000000000000000000000000000000000000000000000000000136f6e65496e6368563646656544796e616d6963000000000000000000000000000000000000000000000000000000000000000000000000000000000000000520000000000000000000000000000000000000000000000000000000000000000000000000000000000000000055d398326f99059ff775485246999027b3197955000000000000000000000000000000000000000000000000000ae5129aca26f50000000000000000000000000000000000000000000000001aec02d2e474c2eb0000000000000000000000000000000000000000000000000000000000000120000000000000000000000000000000000000000000000000000018d9dd708ba6000000000000000000000000b28da7bc87a9dd1e60849aa7fcb5da24ea913c42000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000003e807ed2379000000000000000000000000990636ecb3ff04d33d92e970d3d588bf5cd8d086000000000000000000000000eeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeee00000000000000000000000055d398326f99059ff775485246999027b3197955000000000000000000000000990636ecb3ff04d33d92e970d3d588bf5cd8d086000000000000000000000000c590175e458b83680867afd273527ff58f74c02b000000000000000000000000000000000000000000000000000ae5129aca26f50000000000000000000000000000000000000000000000001aec02d2e474c2eb00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000120000000000000000000000000000000000000000000000000000000000000029600000000000000000000000000000000000000000000027800006800004e00a0744c8c09000000000000000000000000000000000000000090cbe4bdd538d6e9b379bff5fe72c3d67a521de500000000000000000000000000000000000000000000000000000047667778454041bb4cdb9cbd36b01bd1cbaebf2de08d9173bc095cd0e30db05120111111125421ca6dc452d289314280a0f8842a65bb4cdb9cbd36b01bd1cbaebf2de08d9173bc095c0144f497df75000000000000000000000000000000000000000042b4d09aea36b38e50a48dae0000000000000000000000009e229b12cc9081d6a510b29ccbd6311743e277ed000000000000000000000000000000000000000000000000000000000000000000000000000000000000000055d398326f99059ff775485246999027b3197955000000000000000000000000bb4cdb9cbd36b01bd1cbaebf2de08d9173bc095c0000000000000000000000000000000000000000000000001b78afcc90d7f6ce000000000000000000000000000000000000000000000000000ae4cb3452aeb00000000000000000000000000000255cbd0069c407fae970d3d588bf5cd8d0866a23c6873e144d23b5b3912af3bca51b4bb88a639f33b63fe294018eed41c2d953ec92c2568ad0a7fe4d415f97b091549f8d072a7f13216c1fd8cb0314bbc24a0000000000000000000000000000000000000000000000000000000000000000280000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001a00000000000000000000000000000000000000000000000000000000000000014111111125421ca6dc452d289314280a0f8842a65000000000000000000000000000000000000000000007dcbea7c00000000000000000000000000000000000000000000000007000000000000000000000000000000000000000000000000000000", + "from": "0xf25bd11c334507fd007d584e2d0b7b2c6543f714", + "gas": "0x7c3b7", + "gasLimit": "0x7c3b7", + "maxFeePerGas": "0x3938700", + "maxPriorityFeePerGas": "0x3938700", + "nonce": "0xf", + "to": "0xf25bd11c334507fd007d584e2d0b7b2c6543f714", + "type": "0x2", + "value": "0x0" + } + }, + { + "chainId": "0x38", + "hash": "0xfcb60e0a86409c4f780036756684f00d7d1bd9222e1ed5b9384e5d07c7534dc6", + "networkType": "bsc-mainnet", + "networkUrl": "https://bsc-mainnet.infura.io/v3/{infuraProjectId}", + "origin": "metamask", + "rawTransaction": "0x02f908b1380e8403938700840393870083056af194f25bd11c334507fd007d584e2d0b7b2c6543f71480b90844e9ae5c530100000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000004000000000000000000000000000000000000000000000000000000000000007e00000000000000000000000000000000000000000000000000000000000000020000000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000000000200000000000000000000000001a1ec25dc08e98e5e93f1104b5e5cdd298707d31000000000000000000000000000000000000000000000000000b08c694e3e99b000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000006e55f57552900000000000000000000000000000000000000000000000000000000000000800000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000b08c694e3e99b00000000000000000000000000000000000000000000000000000000000000c00000000000000000000000000000000000000000000000000000000000000018756e69737761705065726d69743246656544796e616d696300000000000000000000000000000000000000000000000000000000000000000000000000000600000000000000000000000000000000000000000000000000000000000000000000000000000000000000000055d398326f99059ff775485246999027b3197955000000000000000000000000000000000000000000000000000aefe69672a2150000000000000000000000000000000000000000000000001ab9b7f7ec60f34c0000000000000000000000000000000000000000000000000000000000000120000000000000000000000000000000000000000000000000000018dffe714786000000000000000000000000b28da7bc87a9dd1e60849aa7fcb5da24ea913c42000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000004ce3593564c000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000000a00000000000000000000000000000000000000000000000000000000069c32c5f000000000000000000000000000000000000000000000000000000000000000110000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000002000000000000000000000000000000000000000000000000000000000000003c0000000000000000000000000000000000000000000000000000000000000004000000000000000000000000000000000000000000000000000000000000000800000000000000000000000000000000000000000000000000000000000000003070b0e000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000030000000000000000000000000000000000000000000000000000000000000060000000000000000000000000000000000000000000000000000000000000022000000000000000000000000000000000000000000000000000000000000002a000000000000000000000000000000000000000000000000000000000000001a0000000000000000000000000000000000000000000000000000000000000002000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000080000000000000000000000000000000000000000000000000000aefe69672a2150000000000000000000000000000000000000000000000001abc74d73dcfba560000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000002000000000000000000000000055d398326f99059ff775485246999027b319795500000000000000000000000000000000000000000000000000000000000000640000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000060000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000006000000000000000000000000055d398326f99059ff775485246999027b3197955000000000000000000000000c590175e458b83680867afd273527ff58f74c02b0000000000000000000000000000000000000000000000000000000000000000756e69780000000000810000000000000000000000000000000000006f000000000000000000000000000000000000000000000000000000c001a099914b09556d4c7529697c2e3055f15c52d25fd11cbc8fbf9814fe8b0dad0024a07b667d6177185aa06b29d2f4bce30e31e737ef9c13a9c0277c896b296ae4d05b", + "time": 1774396768962, + "transaction": { + "data": "0xe9ae5c530100000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000004000000000000000000000000000000000000000000000000000000000000007e00000000000000000000000000000000000000000000000000000000000000020000000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000000000200000000000000000000000001a1ec25dc08e98e5e93f1104b5e5cdd298707d31000000000000000000000000000000000000000000000000000b08c694e3e99b000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000006e55f57552900000000000000000000000000000000000000000000000000000000000000800000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000b08c694e3e99b00000000000000000000000000000000000000000000000000000000000000c00000000000000000000000000000000000000000000000000000000000000018756e69737761705065726d69743246656544796e616d696300000000000000000000000000000000000000000000000000000000000000000000000000000600000000000000000000000000000000000000000000000000000000000000000000000000000000000000000055d398326f99059ff775485246999027b3197955000000000000000000000000000000000000000000000000000aefe69672a2150000000000000000000000000000000000000000000000001ab9b7f7ec60f34c0000000000000000000000000000000000000000000000000000000000000120000000000000000000000000000000000000000000000000000018dffe714786000000000000000000000000b28da7bc87a9dd1e60849aa7fcb5da24ea913c42000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000004ce3593564c000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000000a00000000000000000000000000000000000000000000000000000000069c32c5f000000000000000000000000000000000000000000000000000000000000000110000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000002000000000000000000000000000000000000000000000000000000000000003c0000000000000000000000000000000000000000000000000000000000000004000000000000000000000000000000000000000000000000000000000000000800000000000000000000000000000000000000000000000000000000000000003070b0e000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000030000000000000000000000000000000000000000000000000000000000000060000000000000000000000000000000000000000000000000000000000000022000000000000000000000000000000000000000000000000000000000000002a000000000000000000000000000000000000000000000000000000000000001a0000000000000000000000000000000000000000000000000000000000000002000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000080000000000000000000000000000000000000000000000000000aefe69672a2150000000000000000000000000000000000000000000000001abc74d73dcfba560000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000002000000000000000000000000055d398326f99059ff775485246999027b319795500000000000000000000000000000000000000000000000000000000000000640000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000060000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000006000000000000000000000000055d398326f99059ff775485246999027b3197955000000000000000000000000c590175e458b83680867afd273527ff58f74c02b0000000000000000000000000000000000000000000000000000000000000000756e69780000000000810000000000000000000000000000000000006f000000000000000000000000000000000000000000000000000000", + "from": "0xf25bd11c334507fd007d584e2d0b7b2c6543f714", + "gas": "0x56af1", + "gasLimit": "0x56af1", + "maxFeePerGas": "0x3938700", + "maxPriorityFeePerGas": "0x3938700", + "nonce": "0xe", + "to": "0xf25bd11c334507fd007d584e2d0b7b2c6543f714", + "type": "0x2", + "value": "0x0" + } + }, + { + "chainId": "0x38", + "hash": "0xb11d5a22adb3b536ccdb1b49ec771537a8e2164e1077ab186bed124b62d395fa", + "networkType": "bsc-mainnet", + "networkUrl": "https://bsc-mainnet.infura.io/v3/{infuraProjectId}", + "origin": "metamask", + "rawTransaction": "0x02f908b1380d84039387008403938700830565ad94f25bd11c334507fd007d584e2d0b7b2c6543f71480b90844e9ae5c530100000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000004000000000000000000000000000000000000000000000000000000000000007e00000000000000000000000000000000000000000000000000000000000000020000000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000000000200000000000000000000000001a1ec25dc08e98e5e93f1104b5e5cdd298707d31000000000000000000000000000000000000000000000000000b0b826bef7d1b000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000006e55f57552900000000000000000000000000000000000000000000000000000000000000800000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000b0b826bef7d1b00000000000000000000000000000000000000000000000000000000000000c00000000000000000000000000000000000000000000000000000000000000018756e69737761705065726d69743246656544796e616d696300000000000000000000000000000000000000000000000000000000000000000000000000000600000000000000000000000000000000000000000000000000000000000000000000000000000000000000000055d398326f99059ff775485246999027b3197955000000000000000000000000000000000000000000000000000af29c4c7d79b50000000000000000000000000000000000000000000000001abe75dd9b12df420000000000000000000000000000000000000000000000000000000000000120000000000000000000000000000000000000000000000000000018e61f720366000000000000000000000000b28da7bc87a9dd1e60849aa7fcb5da24ea913c42000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000004ce3593564c000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000000a00000000000000000000000000000000000000000000000000000000069c32356000000000000000000000000000000000000000000000000000000000000000110000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000002000000000000000000000000000000000000000000000000000000000000003c0000000000000000000000000000000000000000000000000000000000000004000000000000000000000000000000000000000000000000000000000000000800000000000000000000000000000000000000000000000000000000000000003070b0e000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000030000000000000000000000000000000000000000000000000000000000000060000000000000000000000000000000000000000000000000000000000000022000000000000000000000000000000000000000000000000000000000000002a000000000000000000000000000000000000000000000000000000000000001a0000000000000000000000000000000000000000000000000000000000000002000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000080000000000000000000000000000000000000000000000000000af29c4c7d79b50000000000000000000000000000000000000000000000001ac1333946d3ac6f0000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000002000000000000000000000000055d398326f99059ff775485246999027b319795500000000000000000000000000000000000000000000000000000000000000640000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000060000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000006000000000000000000000000055d398326f99059ff775485246999027b3197955000000000000000000000000c590175e458b83680867afd273527ff58f74c02b0000000000000000000000000000000000000000000000000000000000000000756e697800000000008100000000000000000000000000000000000076000000000000000000000000000000000000000000000000000000c080a0b8aaa4cb60e307632d767bef9d2235b4d924aeb0a14a6873dab308bcb9e974efa02f6cd389272a29c79e782ce306addcce7ceacb1370bec7c37488eeaadf3eec40", + "time": 1774394465202, + "transaction": { + "data": "0xe9ae5c530100000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000004000000000000000000000000000000000000000000000000000000000000007e00000000000000000000000000000000000000000000000000000000000000020000000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000000000200000000000000000000000001a1ec25dc08e98e5e93f1104b5e5cdd298707d31000000000000000000000000000000000000000000000000000b0b826bef7d1b000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000006e55f57552900000000000000000000000000000000000000000000000000000000000000800000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000b0b826bef7d1b00000000000000000000000000000000000000000000000000000000000000c00000000000000000000000000000000000000000000000000000000000000018756e69737761705065726d69743246656544796e616d696300000000000000000000000000000000000000000000000000000000000000000000000000000600000000000000000000000000000000000000000000000000000000000000000000000000000000000000000055d398326f99059ff775485246999027b3197955000000000000000000000000000000000000000000000000000af29c4c7d79b50000000000000000000000000000000000000000000000001abe75dd9b12df420000000000000000000000000000000000000000000000000000000000000120000000000000000000000000000000000000000000000000000018e61f720366000000000000000000000000b28da7bc87a9dd1e60849aa7fcb5da24ea913c42000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000004ce3593564c000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000000a00000000000000000000000000000000000000000000000000000000069c32356000000000000000000000000000000000000000000000000000000000000000110000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000002000000000000000000000000000000000000000000000000000000000000003c0000000000000000000000000000000000000000000000000000000000000004000000000000000000000000000000000000000000000000000000000000000800000000000000000000000000000000000000000000000000000000000000003070b0e000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000030000000000000000000000000000000000000000000000000000000000000060000000000000000000000000000000000000000000000000000000000000022000000000000000000000000000000000000000000000000000000000000002a000000000000000000000000000000000000000000000000000000000000001a0000000000000000000000000000000000000000000000000000000000000002000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000080000000000000000000000000000000000000000000000000000af29c4c7d79b50000000000000000000000000000000000000000000000001ac1333946d3ac6f0000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000002000000000000000000000000055d398326f99059ff775485246999027b319795500000000000000000000000000000000000000000000000000000000000000640000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000060000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000006000000000000000000000000055d398326f99059ff775485246999027b3197955000000000000000000000000c590175e458b83680867afd273527ff58f74c02b0000000000000000000000000000000000000000000000000000000000000000756e697800000000008100000000000000000000000000000000000076000000000000000000000000000000000000000000000000000000", + "from": "0xf25bd11c334507fd007d584e2d0b7b2c6543f714", + "gas": "0x565ad", + "gasLimit": "0x565ad", + "maxFeePerGas": "0x3938700", + "maxPriorityFeePerGas": "0x3938700", + "nonce": "0xd", + "to": "0xf25bd11c334507fd007d584e2d0b7b2c6543f714", + "type": "0x2", + "value": "0x0" + } + }, + { + "chainId": "0x38", + "hash": "0x4f23859df285d5c21c0822b46837376bdb7639f4ca5eb7a1503430629f644841", + "networkType": "bsc-mainnet", + "networkUrl": "https://bsc-mainnet.infura.io/v3/{infuraProjectId}", + "origin": "metamask", + "rawTransaction": "0x02f90671380b840393870084039387008305f77b94f25bd11c334507fd007d584e2d0b7b2c6543f71480b90604e9ae5c530100000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000004000000000000000000000000000000000000000000000000000000000000005a00000000000000000000000000000000000000000000000000000000000000020000000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000000000200000000000000000000000001a1ec25dc08e98e5e93f1104b5e5cdd298707d31000000000000000000000000000000000000000000000000000b78729f664318000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000004a55f57552900000000000000000000000000000000000000000000000000000000000000800000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000b78729f66431800000000000000000000000000000000000000000000000000000000000000c00000000000000000000000000000000000000000000000000000000000000018756e69737761705065726d69743246656544796e616d6963000000000000000000000000000000000000000000000000000000000000000000000000000003c0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000055d398326f99059ff775485246999027b3197955000000000000000000000000000000000000000000000000000b5e987a623fe20000000000000000000000000000000000000000000000001bb876c97fd0f0cd0000000000000000000000000000000000000000000000000000000000000120000000000000000000000000000000000000000000000000000019da25040336000000000000000000000000b28da7bc87a9dd1e60849aa7fcb5da24ea913c420000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000028e3593564c000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000000a00000000000000000000000000000000000000000000000000000000069c31d0d00000000000000000000000000000000000000000000000000000000000000020b000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000002000000000000000000000000000000000000000000000000000000000000004000000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000000000000000000000000000000400000000000000000000000000000000000000000000000000000000000000002000000000000000000000000000000000000000000000000000b5e987a623fe20000000000000000000000000000000000000000000000000000000000000100000000000000000000000000c590175e458b83680867afd273527ff58f74c02b000000000000000000000000000000000000000000000000000b5e987a623fe20000000000000000000000000000000000000000000000001bbb4dc17cb1100a00000000000000000000000000000000000000000000000000000000000000a00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000002bbb4cdb9cbd36b01bd1cbaebf2de08d9173bc095c00006455d398326f99059ff775485246999027b3197955000000000000000000000000000000000000000000756e697800000000008100000000000000000000000000000000000027000000000000000000000000000000000000000000000000000000c080a09310d352a00cc97016f45c59fad5cbdaeda331517c14bd1ac434ec71ac4d8aeca07edfacc44129eab937dd5404f51522ae6a2a32f20f340b34ac29762624bdbc47", + "time": 1774392857345, + "transaction": { + "data": "0xe9ae5c530100000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000004000000000000000000000000000000000000000000000000000000000000005a00000000000000000000000000000000000000000000000000000000000000020000000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000000000200000000000000000000000001a1ec25dc08e98e5e93f1104b5e5cdd298707d31000000000000000000000000000000000000000000000000000b78729f664318000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000004a55f57552900000000000000000000000000000000000000000000000000000000000000800000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000b78729f66431800000000000000000000000000000000000000000000000000000000000000c00000000000000000000000000000000000000000000000000000000000000018756e69737761705065726d69743246656544796e616d6963000000000000000000000000000000000000000000000000000000000000000000000000000003c0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000055d398326f99059ff775485246999027b3197955000000000000000000000000000000000000000000000000000b5e987a623fe20000000000000000000000000000000000000000000000001bb876c97fd0f0cd0000000000000000000000000000000000000000000000000000000000000120000000000000000000000000000000000000000000000000000019da25040336000000000000000000000000b28da7bc87a9dd1e60849aa7fcb5da24ea913c420000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000028e3593564c000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000000a00000000000000000000000000000000000000000000000000000000069c31d0d00000000000000000000000000000000000000000000000000000000000000020b000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000002000000000000000000000000000000000000000000000000000000000000004000000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000000000000000000000000000000400000000000000000000000000000000000000000000000000000000000000002000000000000000000000000000000000000000000000000000b5e987a623fe20000000000000000000000000000000000000000000000000000000000000100000000000000000000000000c590175e458b83680867afd273527ff58f74c02b000000000000000000000000000000000000000000000000000b5e987a623fe20000000000000000000000000000000000000000000000001bbb4dc17cb1100a00000000000000000000000000000000000000000000000000000000000000a00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000002bbb4cdb9cbd36b01bd1cbaebf2de08d9173bc095c00006455d398326f99059ff775485246999027b3197955000000000000000000000000000000000000000000756e697800000000008100000000000000000000000000000000000027000000000000000000000000000000000000000000000000000000", + "from": "0xf25bd11c334507fd007d584e2d0b7b2c6543f714", + "gas": "0x5f77b", + "gasLimit": "0x5f77b", + "maxFeePerGas": "0x3938700", + "maxPriorityFeePerGas": "0x3938700", + "nonce": "0xb", + "to": "0xf25bd11c334507fd007d584e2d0b7b2c6543f714", + "type": "0x2", + "value": "0x0" + } + }, + { + "chainId": "0x38", + "hash": "0x812dd5089184217d8175144edd039285e3eb57d6159fe4ed8cd51d905298abf3", + "networkType": "bsc-mainnet", + "networkUrl": "https://bsc-mainnet.infura.io/v3/{infuraProjectId}", + "origin": "metamask", + "rawTransaction": "0x02f904d1380a8403e9bd508403e9bd508307249594f25bd11c334507fd007d584e2d0b7b2c6543f71480b90464e9ae5c530100000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000004000000000000000000000000000000000000000000000000000000000000004000000000000000000000000000000000000000000000000000000000000000020000000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000000000200000000000000000000000001a1ec25dc08e98e5e93f1104b5e5cdd298707d31000000000000000000000000000000000000000000000000000b72689ad05240000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000003055f57552900000000000000000000000000000000000000000000000000000000000000800000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000b72689ad0524000000000000000000000000000000000000000000000000000000000000000c0000000000000000000000000000000000000000000000000000000000000001b70616e63616b6553776170526f7574657246656544796e616d696300000000000000000000000000000000000000000000000000000000000000000000000220000000000000000000000000000000000000000000000000000000000000000000000000000000000000000055d398326f99059ff775485246999027b3197955000000000000000000000000000000000000000000000000000b5889252270c00000000000000000000000000000000000000000000000001ba3cc100a020bd60000000000000000000000000000000000000000000000000000000000000120000000000000000000000000000000000000000000000000000019df75ade180000000000000000000000000b28da7bc87a9dd1e60849aa7fcb5da24ea913c42000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000e404e45aaf000000000000000000000000bb4cdb9cbd36b01bd1cbaebf2de08d9173bc095c00000000000000000000000055d398326f99059ff775485246999027b31979550000000000000000000000000000000000000000000000000000000000000064000000000000000000000000c590175e458b83680867afd273527ff58f74c02b000000000000000000000000000000000000000000000000000b5889252270c00000000000000000000000000000000000000000000000001ba6a0ea0a378571000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000d4000000000000000000000000000000000000000000000000000000c001a0bb54dad66540981c322282b127692b4563c76a46f83f2eecad353d78a37a13c1a064fa1a66bbb227c4f043d6230119f89a188dff900abb65ad683c96a75cb98352", + "time": 1774392066953, + "transaction": { + "data": "0xe9ae5c530100000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000004000000000000000000000000000000000000000000000000000000000000004000000000000000000000000000000000000000000000000000000000000000020000000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000000000200000000000000000000000001a1ec25dc08e98e5e93f1104b5e5cdd298707d31000000000000000000000000000000000000000000000000000b72689ad05240000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000003055f57552900000000000000000000000000000000000000000000000000000000000000800000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000b72689ad0524000000000000000000000000000000000000000000000000000000000000000c0000000000000000000000000000000000000000000000000000000000000001b70616e63616b6553776170526f7574657246656544796e616d696300000000000000000000000000000000000000000000000000000000000000000000000220000000000000000000000000000000000000000000000000000000000000000000000000000000000000000055d398326f99059ff775485246999027b3197955000000000000000000000000000000000000000000000000000b5889252270c00000000000000000000000000000000000000000000000001ba3cc100a020bd60000000000000000000000000000000000000000000000000000000000000120000000000000000000000000000000000000000000000000000019df75ade180000000000000000000000000b28da7bc87a9dd1e60849aa7fcb5da24ea913c42000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000e404e45aaf000000000000000000000000bb4cdb9cbd36b01bd1cbaebf2de08d9173bc095c00000000000000000000000055d398326f99059ff775485246999027b31979550000000000000000000000000000000000000000000000000000000000000064000000000000000000000000c590175e458b83680867afd273527ff58f74c02b000000000000000000000000000000000000000000000000000b5889252270c00000000000000000000000000000000000000000000000001ba6a0ea0a378571000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000d4000000000000000000000000000000000000000000000000000000", + "from": "0xf25bd11c334507fd007d584e2d0b7b2c6543f714", + "gas": "0x72495", + "gasLimit": "0x72495", + "maxFeePerGas": "0x3e9bd50", + "maxPriorityFeePerGas": "0x3e9bd50", + "nonce": "0xa", + "to": "0xf25bd11c334507fd007d584e2d0b7b2c6543f714", + "type": "0x2", + "value": "0x0" + } + }, + { + "chainId": "0x8f", + "hash": "0xc01cad183b43cd7bbc93fe89808a9224aea6ab4d56b9c70eab0a95122d0ecfc1", + "networkType": "254181b7-0ed1-46c0-ab10-60b310e92a5e", + "networkUrl": "https://monad-mainnet.infura.io/v3/b6bf7d3508c941499b10025c0776eaf8", + "origin": "metamask", + "rawTransaction": "0x02f875818f01840b903480851f7a30ba808252089430e8ccad5a980bdf30447f8c2c48e70989d9d294890da3b72fd37c94b16f80c080a02643c63f537b9208eba29e1d89e65fde0c2af5892ff8d917fe473e6bcd90b21ea013bd896c3b8a39886f2f627433059e3dcabd426f37eaf667d9581414f1a6cdef", + "time": 1773945137320, + "transaction": { + "data": "0x", + "from": "0xb3864b298f4fddbbbd2fa5cf1a2a2748932b3b81", + "gas": "0x5208", + "gasLimit": "0x5208", + "maxFeePerGas": "0x1f7a30ba80", + "maxPriorityFeePerGas": "0xb903480", + "nonce": "0x1", + "to": "0x30e8ccad5a980bdf30447f8c2c48e70989d9d294", + "type": "0x2", + "value": "0xda3b72fd37c94b16f" + } + }, + { + "chainId": "0x8f", + "hash": "0x340c79ebf18167694dc1473158f4f5f885373273a4a80d5cc3c9c480e333027d", + "networkType": "254181b7-0ed1-46c0-ab10-60b310e92a5e", + "networkUrl": "https://monad-mainnet.infura.io/v3/b6bf7d3508c941499b10025c0776eaf8", + "origin": "metamask", + "rawTransaction": "0x02f90e9d818f808473a20d00851fe24293008308d26194962287c9d5b8a682389e61edae90ec882325d08b89169241fad0f4bd6000b90e255f575529000000000000000000000000000000000000000000000000000000000000008000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000169241fad0f4bd600000000000000000000000000000000000000000000000000000000000000000c000000000000000000000000000000000000000000000000000000000000000136b796265725377617046656544796e616d6963000000000000000000000000000000000000000000000000000000000000000000000000000000000000000d400000000000000000000000000000000000000000000000000000000000000000000000000000000000000000754704bc059f8c67012fed69bc8a327a5aafb6030000000000000000000000000000000000000000000000165fb2aeb39b8eeb000000000000000000000000000000000000000000000000000000000000889c170000000000000000000000000000000000000000000000000000000000000120000000000000000000000000000000000000000000000000328f4c1d592e750000000000000000000000000038c2b421e1d9bd824e739bb4e55448a943bde7ef00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000c04e21fd0e9000000000000000000000000000000000000000000000000000000000000002000000000000000000000000063242a4ea82847b20e506b63b0e2e2eff0cc6cb0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000000000000000000000000000009000000000000000000000000000000000000000000000000000000000000000b00000000000000000000000000000000000000000000000000000000000000084000000000000000165fb2aeb39b8eeb0000000000000000165fb2aeb39b8eeb00000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000000e00000000000000000000000000000000000000000000000000000000000000041fe3dabfd8a13f105d34c32f12814d66075efe9690dc073ea73345e042835a6fe532f79880e8b19967b9e510713978bd7e7bc938d5999c36e9e609e78d53b9da81b00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000074000000000000000000000000044ed9b74f4fe2b0975c2b5121b0e906da6ce4a48000000000000000000000000000000000000000000000000000000000000014000000000000000000000000000000000000000000000000000000000000001a00000000000000015415025f76d61000000000000000000177e15376fc9bd000000000000000000165fb2aeb39b8eeb00000000000000000000000000008b65cf00000000000000000000000000000000000000000000090000000f42400000000000000000000000000000004f82e73edb06d29ff62c91ec8f5ff06571bdeb2900000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000069bc43e00000000000000000000000000000000000000000000000000000000000000720000000000000000000000000000000000000000000000000000000000000000261f598cd0000000000000000292be240f0a1ece8c0fffe8c70744f84664b1e1591dd73460000000000000000292be240f0a1ece8c0fffe8c70744f84664b1e150000000000000000000000000000000000000000000000000000000000000002000000000000000000000000000000000000000000000000000000000000004000000000000000000000000000000000000000000000000000000000000004e0000000000000000000000000eeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeee80000000000000000001775ed37f754c00000000000000165fb2aeb39b8eeb000000000000000000000000000000000000000000000000000000000000000060000000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000000000200000000000000000000000000000000000000000000000165fb2aeb39b8eeb00736e774d0000000000000001d1877a31a73c7cb31c02b9e7d7c336531562b21e000000000000000000000000000000000000000000000000000000000000008000000000000000000000000063242a4ea82847b20e506b63b0e2e2eff0cc6cb00000000000000000000000000000000000000000000000000000000000000360000000000000000000000000188d586ddcf52439676ca21a244753fa19f9ea8e000000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000000000600000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000002000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000165fb2aeb39b8eeb00000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000000010000000000000000000000000000000000000000000000000000000000000020000000000000000000000000754704bc059f8c67012fed69bc8a327a5aafb603000000000000000000000000000000000000000000000000000000000000006400000000000000000000000000000000000000000000000000000000000000010000000000000000000000004445520306c9c70952bdfec28f3989f53d9f80c400000000000000000000000000000000000000000000000000000000000000c00000000000000000000000010000000000000000000001a29f149f45db6d3a44000000000000000000000000000000000000000000000000000000000000014000000000000000000000000000000000000000000000001ad93cd1a4544500000000000000000000000000000000000000000000000000000000000000063af6000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000069bc3fe400000000000000000000000000000000000000000000000000000000000000c00000000000000000000000000000000000000000000000000000000000000041857fc31abb9ca1210a62d5b2b0a163780913d4971d4245c0f9ef1225458f5a291f129750199f790ff37ba77e2c7bcf8465dbca51da2db76efa3a8ad80e84ba3b1b00000000000000000000000000000000000000000000000000000000000000000000000000000000000000754704bc059f8c67012fed69bc8a327a5aafb6038000000000000000000000000000000100000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000eeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeee000000000000000000000000754704bc059f8c67012fed69bc8a327a5aafb6030000000000000000000000000000000000000000000000000000000000000160000000000000000000000000000000000000000000000000000000000000018000000000000000000000000000000000000000000000000000000000000001a000000000000000000000000000000000000000000000000000000000000001c000000000000000000000000044ed9b74f4fe2b0975c2b5121b0e906da6ce4a480000000000000000000000000000000000000000000000165fb2aeb39b8eeb000000000000000000000000000000000000000000000000000000000000889c17000000000000000000000000000000000000000000000000000000000000020000000000000000000000000000000000000000000000000000000000000001e00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000a27b22536f75726365223a226d6574616d61736b222c22416d6f756e74496e555344223a22392e3132393138222c22416d6f756e744f7574555344223a22382e393535303931222c22416d6f756e744f7574223a2239313335353637222c22526f7574654944223a2264616532343134616c2d3548337141533a62646366306634643235744149716b70222c2254696d657374616d70223a313737333934343632347d00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000c3c080a018be9e25be64a992cce08310e5e44f0e1327ed7f3087497d6152c070051006c0a02de616bfae73c0ce490220481126729918b690a6465d9f9b14b6c7d339812a65", + "time": 1773944655764, + "transaction": { + "data": "0x5f575529000000000000000000000000000000000000000000000000000000000000008000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000169241fad0f4bd600000000000000000000000000000000000000000000000000000000000000000c000000000000000000000000000000000000000000000000000000000000000136b796265725377617046656544796e616d6963000000000000000000000000000000000000000000000000000000000000000000000000000000000000000d400000000000000000000000000000000000000000000000000000000000000000000000000000000000000000754704bc059f8c67012fed69bc8a327a5aafb6030000000000000000000000000000000000000000000000165fb2aeb39b8eeb000000000000000000000000000000000000000000000000000000000000889c170000000000000000000000000000000000000000000000000000000000000120000000000000000000000000000000000000000000000000328f4c1d592e750000000000000000000000000038c2b421e1d9bd824e739bb4e55448a943bde7ef00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000c04e21fd0e9000000000000000000000000000000000000000000000000000000000000002000000000000000000000000063242a4ea82847b20e506b63b0e2e2eff0cc6cb0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000000000000000000000000000009000000000000000000000000000000000000000000000000000000000000000b00000000000000000000000000000000000000000000000000000000000000084000000000000000165fb2aeb39b8eeb0000000000000000165fb2aeb39b8eeb00000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000000e00000000000000000000000000000000000000000000000000000000000000041fe3dabfd8a13f105d34c32f12814d66075efe9690dc073ea73345e042835a6fe532f79880e8b19967b9e510713978bd7e7bc938d5999c36e9e609e78d53b9da81b00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000074000000000000000000000000044ed9b74f4fe2b0975c2b5121b0e906da6ce4a48000000000000000000000000000000000000000000000000000000000000014000000000000000000000000000000000000000000000000000000000000001a00000000000000015415025f76d61000000000000000000177e15376fc9bd000000000000000000165fb2aeb39b8eeb00000000000000000000000000008b65cf00000000000000000000000000000000000000000000090000000f42400000000000000000000000000000004f82e73edb06d29ff62c91ec8f5ff06571bdeb2900000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000069bc43e00000000000000000000000000000000000000000000000000000000000000720000000000000000000000000000000000000000000000000000000000000000261f598cd0000000000000000292be240f0a1ece8c0fffe8c70744f84664b1e1591dd73460000000000000000292be240f0a1ece8c0fffe8c70744f84664b1e150000000000000000000000000000000000000000000000000000000000000002000000000000000000000000000000000000000000000000000000000000004000000000000000000000000000000000000000000000000000000000000004e0000000000000000000000000eeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeee80000000000000000001775ed37f754c00000000000000165fb2aeb39b8eeb000000000000000000000000000000000000000000000000000000000000000060000000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000000000200000000000000000000000000000000000000000000000165fb2aeb39b8eeb00736e774d0000000000000001d1877a31a73c7cb31c02b9e7d7c336531562b21e000000000000000000000000000000000000000000000000000000000000008000000000000000000000000063242a4ea82847b20e506b63b0e2e2eff0cc6cb00000000000000000000000000000000000000000000000000000000000000360000000000000000000000000188d586ddcf52439676ca21a244753fa19f9ea8e000000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000000000600000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000002000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000165fb2aeb39b8eeb00000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000000010000000000000000000000000000000000000000000000000000000000000020000000000000000000000000754704bc059f8c67012fed69bc8a327a5aafb603000000000000000000000000000000000000000000000000000000000000006400000000000000000000000000000000000000000000000000000000000000010000000000000000000000004445520306c9c70952bdfec28f3989f53d9f80c400000000000000000000000000000000000000000000000000000000000000c00000000000000000000000010000000000000000000001a29f149f45db6d3a44000000000000000000000000000000000000000000000000000000000000014000000000000000000000000000000000000000000000001ad93cd1a4544500000000000000000000000000000000000000000000000000000000000000063af6000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000069bc3fe400000000000000000000000000000000000000000000000000000000000000c00000000000000000000000000000000000000000000000000000000000000041857fc31abb9ca1210a62d5b2b0a163780913d4971d4245c0f9ef1225458f5a291f129750199f790ff37ba77e2c7bcf8465dbca51da2db76efa3a8ad80e84ba3b1b00000000000000000000000000000000000000000000000000000000000000000000000000000000000000754704bc059f8c67012fed69bc8a327a5aafb6038000000000000000000000000000000100000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000eeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeee000000000000000000000000754704bc059f8c67012fed69bc8a327a5aafb6030000000000000000000000000000000000000000000000000000000000000160000000000000000000000000000000000000000000000000000000000000018000000000000000000000000000000000000000000000000000000000000001a000000000000000000000000000000000000000000000000000000000000001c000000000000000000000000044ed9b74f4fe2b0975c2b5121b0e906da6ce4a480000000000000000000000000000000000000000000000165fb2aeb39b8eeb000000000000000000000000000000000000000000000000000000000000889c17000000000000000000000000000000000000000000000000000000000000020000000000000000000000000000000000000000000000000000000000000001e00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000a27b22536f75726365223a226d6574616d61736b222c22416d6f756e74496e555344223a22392e3132393138222c22416d6f756e744f7574555344223a22382e393535303931222c22416d6f756e744f7574223a2239313335353637222c22526f7574654944223a2264616532343134616c2d3548337141533a62646366306634643235744149716b70222c2254696d657374616d70223a313737333934343632347d00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000c3", + "from": "0xb3864b298f4fddbbbd2fa5cf1a2a2748932b3b81", + "gas": "0x8d261", + "gasLimit": "0x8d261", + "maxFeePerGas": "0x1fe2429300", + "maxPriorityFeePerGas": "0x73a20d00", + "nonce": "0x0", + "to": "0x962287c9d5b8a682389e61edae90ec882325d08b", + "type": "0x2", + "value": "0x169241fad0f4bd6000" + } + }, + { + "chainId": "0x38", + "hash": "0x77d1a7c60c1d48c7b0dd2c5ddb287e0a6ab58eab88bc0c7c03436c91748defc9", + "networkType": "bsc-mainnet", + "networkUrl": "https://bsc-mainnet.infura.io/v3/{infuraProjectId}", + "origin": "metamask", + "rawTransaction": "0x02f9037938408403938700840393870083060d8b941a1ec25dc08e98e5e93f1104b5e5cdd298707d31871dcc9c3862e837b903055f57552900000000000000000000000000000000000000000000000000000000000000800000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001dcc9c3862e83700000000000000000000000000000000000000000000000000000000000000c0000000000000000000000000000000000000000000000000000000000000001b70616e63616b6553776170526f7574657246656544796e616d696300000000000000000000000000000000000000000000000000000000000000000000000220000000000000000000000000000000000000000000000000000000000000000000000000000000000000000055d398326f99059ff775485246999027b3197955000000000000000000000000000000000000000000000000001d89a9a0a51ed60000000000000000000000000000000000000000000000004b466c76607620630000000000000000000000000000000000000000000000000000000000000120000000000000000000000000000000000000000000000000000042f297bdc961000000000000000000000000e3478b0bb1a5084567c319096437924948be1964000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000e404e45aaf000000000000000000000000bb4cdb9cbd36b01bd1cbaebf2de08d9173bc095c00000000000000000000000055d398326f99059ff775485246999027b31979550000000000000000000000000000000000000000000000000000000000000064000000000000000000000000c590175e458b83680867afd273527ff58f74c02b000000000000000000000000000000000000000000000000001d89a9a0a51ed60000000000000000000000000000000000000000000000004b4e228b1e040df6000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000f6c080a03e3733381b001448473f1207f09462060cbde175f7d509864d8fd9e87b72e22ea0412cbe15a4e9ce43ae0e7b37f2a51b4cfa627c4f87cf5845fc5e22c7fc957343", + "time": 1772652040831, + "transaction": { + "data": "0x5f57552900000000000000000000000000000000000000000000000000000000000000800000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001dcc9c3862e83700000000000000000000000000000000000000000000000000000000000000c0000000000000000000000000000000000000000000000000000000000000001b70616e63616b6553776170526f7574657246656544796e616d696300000000000000000000000000000000000000000000000000000000000000000000000220000000000000000000000000000000000000000000000000000000000000000000000000000000000000000055d398326f99059ff775485246999027b3197955000000000000000000000000000000000000000000000000001d89a9a0a51ed60000000000000000000000000000000000000000000000004b466c76607620630000000000000000000000000000000000000000000000000000000000000120000000000000000000000000000000000000000000000000000042f297bdc961000000000000000000000000e3478b0bb1a5084567c319096437924948be1964000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000e404e45aaf000000000000000000000000bb4cdb9cbd36b01bd1cbaebf2de08d9173bc095c00000000000000000000000055d398326f99059ff775485246999027b31979550000000000000000000000000000000000000000000000000000000000000064000000000000000000000000c590175e458b83680867afd273527ff58f74c02b000000000000000000000000000000000000000000000000001d89a9a0a51ed60000000000000000000000000000000000000000000000004b4e228b1e040df6000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000f6", + "from": "0x30e8ccad5a980bdf30447f8c2c48e70989d9d294", + "gas": "0x60d8b", + "gasLimit": "0x60d8b", + "maxFeePerGas": "0x3938700", + "maxPriorityFeePerGas": "0x3938700", + "nonce": "0x40", + "to": "0x1a1ec25dc08e98e5e93f1104b5e5cdd298707d31", + "type": "0x2", + "value": "0x1dcc9c3862e837" + } + } + ], + "transactionData": {}, + "accountTree": { + "wallets": { + "entropy:01KJ6E9MG4VY87VPKWJPR6W39K": { + "type": "entropy", + "id": "entropy:01KJ6E9MG4VY87VPKWJPR6W39K", + "metadata": { + "name": "Wallet 1", + "entropy": { + "id": "01KJ6E9MG4VY87VPKWJPR6W39K" + } + }, + "status": "ready", + "groups": { + "entropy:01KJ6E9MG4VY87VPKWJPR6W39K/0": { + "type": "multichain-account", + "id": "entropy:01KJ6E9MG4VY87VPKWJPR6W39K/0", + "metadata": { + "name": "Account 1", + "pinned": false, + "hidden": false, + "lastSelected": 1778721516055, + "entropy": { + "groupIndex": 0 + } + }, + "accounts": [ + "cf6fe6ed-1d1c-4649-9662-a232e0aadb82", + "55fe5095-3194-42c2-81d3-5701dcad1924", + "ffb79cf7-3a88-4cfe-864c-a9f656ce1840", + "fedf900d-3caf-4540-9e24-c63400ef2b18" + ] + }, + "entropy:01KJ6E9MG4VY87VPKWJPR6W39K/1": { + "type": "multichain-account", + "id": "entropy:01KJ6E9MG4VY87VPKWJPR6W39K/1", + "metadata": { + "name": "Account 2", + "pinned": false, + "hidden": false, + "lastSelected": 1778721549392, + "entropy": { + "groupIndex": 1 + } + }, + "accounts": [ + "7020eb89-94df-4e67-ba9f-a9ebe6c40524", + "e4cb2ec8-15e3-494a-bde2-6ea14e6d0d6c", + "d05ca007-7a11-470f-8433-a89767f95995", + "1c2440b0-d05e-4b07-881c-ebb9bce2bbb7" + ] + }, + "entropy:01KJ6E9MG4VY87VPKWJPR6W39K/2": { + "type": "multichain-account", + "id": "entropy:01KJ6E9MG4VY87VPKWJPR6W39K/2", + "metadata": { + "name": "Account 3", + "pinned": false, + "hidden": false, + "lastSelected": 1778616449016, + "entropy": { + "groupIndex": 2 + } + }, + "accounts": [ + "02c4222b-f0d3-448e-848f-7bf6b3ce3379", + "c86652a6-e1f3-4e4c-b411-c58efe220dcf", + "23ce192d-62e7-4d4f-a168-93ae18dc915d", + "3d26ef67-6870-4750-af80-bce53fa4a0af" + ] + }, + "entropy:01KJ6E9MG4VY87VPKWJPR6W39K/3": { + "type": "multichain-account", + "id": "entropy:01KJ6E9MG4VY87VPKWJPR6W39K/3", + "metadata": { + "name": "Account 4", + "pinned": false, + "hidden": false, + "lastSelected": 1777420287281, + "entropy": { + "groupIndex": 3 + } + }, + "accounts": [ + "2ddfe00a-fef1-4085-82f5-e5cdc9d8871f", + "5a747531-d39f-49d5-afbd-59c018cc4757", + "c6d62ae8-d02c-4a7a-8222-17ed6cdf0e52", + "8b0e3ad2-d40d-47b1-a9c3-702eb67ab1ba" + ] + }, + "entropy:01KJ6E9MG4VY87VPKWJPR6W39K/4": { + "type": "multichain-account", + "id": "entropy:01KJ6E9MG4VY87VPKWJPR6W39K/4", + "metadata": { + "name": "Account 5", + "pinned": false, + "hidden": false, + "lastSelected": 0, + "entropy": { + "groupIndex": 4 + } + }, + "accounts": [ + "4ad41148-9589-48f1-a20d-1ddd6bcf1282", + "db7205b1-e72f-4082-92c4-5490fdba12c5", + "df59431e-d587-40a5-9c2b-3bdc6584b0e4", + "9e12503a-12d8-4bb4-835f-a0c203ccd67a" + ] + }, + "entropy:01KJ6E9MG4VY87VPKWJPR6W39K/5": { + "type": "multichain-account", + "id": "entropy:01KJ6E9MG4VY87VPKWJPR6W39K/5", + "metadata": { + "name": "Account 6", + "pinned": false, + "hidden": false, + "lastSelected": 0, + "entropy": { + "groupIndex": 5 + } + }, + "accounts": [ + "4493467c-a178-494e-b87e-92f0d7a7d1a1", + "c3fc6bba-683b-44c8-b637-89b55416a8dd", + "03d7de03-c856-4239-93fc-b3cc5352883a", + "c7cf5799-e458-4bb5-b60b-7e74cf2e7c0a" + ] + }, + "entropy:01KJ6E9MG4VY87VPKWJPR6W39K/6": { + "type": "multichain-account", + "id": "entropy:01KJ6E9MG4VY87VPKWJPR6W39K/6", + "metadata": { + "name": "Account 7", + "pinned": false, + "hidden": false, + "lastSelected": 0, + "entropy": { + "groupIndex": 6 + } + }, + "accounts": [ + "77939f4e-1d05-4224-bf26-90dcc3382f5d", + "2858af66-a9cd-456a-b29c-f2f5148a5ac8", + "3d379cac-eb60-4b45-8374-370aac2b76c5", + "f7f2ce83-85bc-49f9-8551-c36c5432a0c1" + ] + }, + "entropy:01KJ6E9MG4VY87VPKWJPR6W39K/7": { + "type": "multichain-account", + "id": "entropy:01KJ6E9MG4VY87VPKWJPR6W39K/7", + "metadata": { + "name": "Account 8", + "pinned": false, + "hidden": false, + "lastSelected": 0, + "entropy": { + "groupIndex": 7 + } + }, + "accounts": [ + "08127c65-97e2-4502-b576-2b25c8cc765f", + "44ca98ce-b819-4e06-b651-ba146dbe22c1", + "744910ce-8368-414f-8e7c-1c5dba71831e", + "73a28e8a-5ecb-4b36-b6f3-d2c12294eebf" + ] + }, + "entropy:01KJ6E9MG4VY87VPKWJPR6W39K/8": { + "type": "multichain-account", + "id": "entropy:01KJ6E9MG4VY87VPKWJPR6W39K/8", + "metadata": { + "name": "Account 9", + "pinned": false, + "hidden": false, + "lastSelected": 0, + "entropy": { + "groupIndex": 8 + } + }, + "accounts": [ + "7e04501c-6e1f-457d-8dd5-68d8f3a4c84f", + "e421a858-a232-40dc-8bbb-d3745bee215b", + "d834c0ad-655b-4707-997d-7048c1896f89", + "78ccb0a9-3647-4bb6-94b4-54d8b4e0b397" + ] + }, + "entropy:01KJ6E9MG4VY87VPKWJPR6W39K/9": { + "type": "multichain-account", + "id": "entropy:01KJ6E9MG4VY87VPKWJPR6W39K/9", + "metadata": { + "name": "Account 10", + "pinned": false, + "hidden": false, + "lastSelected": 0, + "entropy": { + "groupIndex": 9 + } + }, + "accounts": [ + "db094d8c-3c7b-4a1f-97f5-6d43bf894549", + "891b1840-b34b-4059-895b-5f163cff8ff1", + "f5481e08-42e2-4504-9a1f-44c0bbe6e0bb", + "77a6514e-0024-4dc2-b08d-e78c664c37c5" + ] + } + } + }, + "keyring:Ledger Hardware": { + "type": "keyring", + "id": "keyring:Ledger Hardware", + "metadata": { + "name": "Ledger", + "keyring": { + "type": "Ledger Hardware" + } + }, + "status": "ready", + "groups": { + "keyring:Ledger Hardware/0x9dc641ccd7d1e7c66e47a25598ace7219548d887": { + "type": "single-account", + "id": "keyring:Ledger Hardware/0x9dc641ccd7d1e7c66e47a25598ace7219548d887", + "metadata": { + "name": "Ledger Account 2", + "pinned": false, + "hidden": false, + "lastSelected": 0 + }, + "accounts": ["a380d0c9-927f-4aa2-a382-15ed278e70a4"] + }, + "keyring:Ledger Hardware/0x6eff00186ba65c5fade98d75aa4d99ef71fa461b": { + "type": "single-account", + "id": "keyring:Ledger Hardware/0x6eff00186ba65c5fade98d75aa4d99ef71fa461b", + "metadata": { + "name": "Ledger Account 3", + "pinned": false, + "hidden": false, + "lastSelected": 0 + }, + "accounts": ["ae40b2c3-e8e1-45ed-b0cf-a5ba56e74041"] + }, + "keyring:Ledger Hardware/0x04400bb51b1f886cff338eb2b4118f9ceb4e6fd5": { + "type": "single-account", + "id": "keyring:Ledger Hardware/0x04400bb51b1f886cff338eb2b4118f9ceb4e6fd5", + "metadata": { + "name": "Ledger Account 4", + "pinned": false, + "hidden": false, + "lastSelected": 0 + }, + "accounts": ["ea035e3a-ea43-4df0-96aa-b4e50c16396c"] + }, + "keyring:Ledger Hardware/0xb3864b298f4fddbbbd2fa5cf1a2a2748932b3b81": { + "type": "single-account", + "id": "keyring:Ledger Hardware/0xb3864b298f4fddbbbd2fa5cf1a2a2748932b3b81", + "metadata": { + "name": "Ledger Account 5", + "pinned": false, + "hidden": false, + "lastSelected": 1775851212948 + }, + "accounts": ["bf588376-0492-4a35-b653-0f1304a6c5f1"] + }, + "keyring:Ledger Hardware/0xeeeab71a5989b7951389e3df313ea9876508856f": { + "type": "single-account", + "id": "keyring:Ledger Hardware/0xeeeab71a5989b7951389e3df313ea9876508856f", + "metadata": { + "name": "Ledger Account 6", + "pinned": false, + "hidden": false, + "lastSelected": 0 + }, + "accounts": ["7a1e85fa-7c26-48a7-890c-5b2ea56f650c"] + }, + "keyring:Ledger Hardware/0x422b8d8914cdad779f587414d647e953bb3a87db": { + "type": "single-account", + "id": "keyring:Ledger Hardware/0x422b8d8914cdad779f587414d647e953bb3a87db", + "metadata": { + "name": "Ledger Account 7", + "pinned": false, + "hidden": false, + "lastSelected": 0 + }, + "accounts": ["88caeea6-0032-4313-b351-096e9f8e60a9"] + } + } + }, + "entropy:01KMK79H2SG3MB2Q7XWEXMZ013": { + "type": "entropy", + "id": "entropy:01KMK79H2SG3MB2Q7XWEXMZ013", + "metadata": { + "name": "Wallet 2", + "entropy": { + "id": "01KMK79H2SG3MB2Q7XWEXMZ013" + } + }, + "status": "ready", + "groups": { + "entropy:01KMK79H2SG3MB2Q7XWEXMZ013/0": { + "type": "multichain-account", + "id": "entropy:01KMK79H2SG3MB2Q7XWEXMZ013/0", + "metadata": { + "name": "Account 1", + "pinned": false, + "hidden": false, + "lastSelected": 1778721557372, + "entropy": { + "groupIndex": 0 + } + }, + "accounts": [ + "2727ea45-0879-4ce8-bbac-e7b83a7ca3de", + "076cbb47-1752-40b0-9314-1f07e7b88ffa", + "574cb22f-c2d5-40d2-86a5-e3393d33050f", + "c5bf70b0-2c4b-4016-9107-cab94be5fbb0" + ] + }, + "entropy:01KMK79H2SG3MB2Q7XWEXMZ013/1": { + "type": "multichain-account", + "id": "entropy:01KMK79H2SG3MB2Q7XWEXMZ013/1", + "metadata": { + "name": "Real smart account", + "pinned": false, + "hidden": false, + "lastSelected": 0, + "entropy": { + "groupIndex": 1 + } + }, + "accounts": [ + "d0a2da70-b536-4e45-beb8-82e35365093d", + "e86326ea-c687-45bf-84b9-ad4d8618d084", + "e78a4c3d-7649-4797-90ad-9d6ddbe9e6dd", + "658962cf-0ecb-496e-beb8-91b663d244de" + ] + }, + "entropy:01KMK79H2SG3MB2Q7XWEXMZ013/2": { + "type": "multichain-account", + "id": "entropy:01KMK79H2SG3MB2Q7XWEXMZ013/2", + "metadata": { + "name": "Account 3", + "pinned": false, + "hidden": false, + "lastSelected": 0, + "entropy": { + "groupIndex": 2 + } + }, + "accounts": [ + "8163605d-535a-441d-a381-a5eac11ef57d", + "575d130d-01da-44f0-a731-da9967adf412", + "a4c40c7c-01c0-4335-b574-72195898b31c", + "1dd2b0a9-a1ea-4308-92e8-303665fd25c5" + ] + }, + "entropy:01KMK79H2SG3MB2Q7XWEXMZ013/3": { + "type": "multichain-account", + "id": "entropy:01KMK79H2SG3MB2Q7XWEXMZ013/3", + "metadata": { + "name": "Smart account", + "pinned": false, + "hidden": false, + "lastSelected": 0, + "entropy": { + "groupIndex": 3 + } + }, + "accounts": [ + "d9d2faf4-e5f4-4505-bbe2-a03d3c9e10a1", + "7f6eee30-338e-4926-86fa-19436da91f35", + "c2c05428-c846-4992-a5a3-5d151b97fcdb", + "d8086b4c-4361-49ab-8955-efaa5240f561" + ] + }, + "entropy:01KMK79H2SG3MB2Q7XWEXMZ013/4": { + "type": "multichain-account", + "id": "entropy:01KMK79H2SG3MB2Q7XWEXMZ013/4", + "metadata": { + "name": "Account 5", + "pinned": false, + "hidden": false, + "lastSelected": 0, + "entropy": { + "groupIndex": 4 + } + }, + "accounts": [ + "3401973a-4989-44c5-9569-f27f25197c2d", + "040b84bc-2341-4988-b8db-8063bbc6c708", + "1a14e831-0c2c-46ce-8e2b-d7d53cbefb63", + "8fd0b8c5-b42d-462d-965b-2979b4057c88" + ] + }, + "entropy:01KMK79H2SG3MB2Q7XWEXMZ013/5": { + "type": "multichain-account", + "id": "entropy:01KMK79H2SG3MB2Q7XWEXMZ013/5", + "metadata": { + "name": "Account 6", + "pinned": false, + "hidden": false, + "lastSelected": 0, + "entropy": { + "groupIndex": 5 + } + }, + "accounts": [ + "83bd90d5-eaa6-4f8d-b89b-b574273bd04e", + "0089fc3c-35be-4ecf-ba88-22461a3d9503", + "80340772-85d8-41a5-b316-1d8fc8c2cea4", + "e6f7d2e7-8c4c-48f7-9d04-958add8113b7" + ] + } + } + } + } + }, + "selectedAccountGroup": "entropy:01KMK79H2SG3MB2Q7XWEXMZ013/0", + "isAccountTreeSyncingInProgress": false, + "hasAccountTreeSyncingSyncedAtLeastOnce": true, + "accountGroupsMetadata": { + "entropy:01KJ6E9MG4VY87VPKWJPR6W39K/0": { + "hidden": { + "lastUpdatedAt": 0, + "value": false + }, + "lastSelected": 1778721516055, + "name": { + "lastUpdatedAt": 0, + "value": "Account 1" + }, + "pinned": { + "lastUpdatedAt": 0, + "value": false + } + }, + "entropy:01KJ6E9MG4VY87VPKWJPR6W39K/1": { + "hidden": { + "lastUpdatedAt": 0, + "value": false + }, + "lastSelected": 1778721549392, + "name": { + "lastUpdatedAt": 0, + "value": "Account 2" + }, + "pinned": { + "lastUpdatedAt": 0, + "value": false + } + }, + "entropy:01KJ6E9MG4VY87VPKWJPR6W39K/2": { + "hidden": { + "lastUpdatedAt": 0, + "value": false + }, + "lastSelected": 1778616449016, + "name": { + "lastUpdatedAt": 0, + "value": "Account 3" + }, + "pinned": { + "lastUpdatedAt": 0, + "value": false + } + }, + "entropy:01KJ6E9MG4VY87VPKWJPR6W39K/3": { + "hidden": { + "lastUpdatedAt": 0, + "value": false + }, + "lastSelected": 1777420287281, + "name": { + "lastUpdatedAt": 0, + "value": "Account 4" + }, + "pinned": { + "lastUpdatedAt": 0, + "value": false + } + }, + "entropy:01KJ6E9MG4VY87VPKWJPR6W39K/4": { + "hidden": { + "lastUpdatedAt": 0, + "value": false + }, + "lastSelected": 0, + "name": { + "lastUpdatedAt": 0, + "value": "Account 5" + }, + "pinned": { + "lastUpdatedAt": 0, + "value": false + } + }, + "entropy:01KJ6E9MG4VY87VPKWJPR6W39K/5": { + "hidden": { + "lastUpdatedAt": 0, + "value": false + }, + "lastSelected": 0, + "name": { + "lastUpdatedAt": 0, + "value": "Account 6" + }, + "pinned": { + "lastUpdatedAt": 0, + "value": false + } + }, + "entropy:01KJ6E9MG4VY87VPKWJPR6W39K/6": { + "hidden": { + "lastUpdatedAt": 0, + "value": false + }, + "lastSelected": 0, + "name": { + "lastUpdatedAt": 0, + "value": "Account 7" + }, + "pinned": { + "lastUpdatedAt": 0, + "value": false + } + }, + "entropy:01KJ6E9MG4VY87VPKWJPR6W39K/7": { + "hidden": { + "lastUpdatedAt": 0, + "value": false + }, + "lastSelected": 0, + "name": { + "lastUpdatedAt": 0, + "value": "Account 8" + }, + "pinned": { + "lastUpdatedAt": 0, + "value": false + } + }, + "entropy:01KJ6E9MG4VY87VPKWJPR6W39K/8": { + "hidden": { + "lastUpdatedAt": 0, + "value": false + }, + "lastSelected": 0, + "name": { + "lastUpdatedAt": 0, + "value": "Account 9" + }, + "pinned": { + "lastUpdatedAt": 0, + "value": false + } + }, + "entropy:01KJ6E9MG4VY87VPKWJPR6W39K/9": { + "hidden": { + "lastUpdatedAt": 0, + "value": false + }, + "lastSelected": 0, + "name": { + "lastUpdatedAt": 0, + "value": "Account 10" + }, + "pinned": { + "lastUpdatedAt": 0, + "value": false + } + }, + "entropy:01KMK79H2SG3MB2Q7XWEXMZ013/0": { + "hidden": { + "lastUpdatedAt": 0, + "value": false + }, + "lastSelected": 1778721557372, + "name": { + "lastUpdatedAt": 0, + "value": "Account 1" + }, + "pinned": { + "lastUpdatedAt": 0, + "value": false + } + }, + "entropy:01KMK79H2SG3MB2Q7XWEXMZ013/1": { + "hidden": { + "lastUpdatedAt": 0, + "value": false + }, + "lastSelected": 0, + "name": { + "lastUpdatedAt": 1774466681731, + "value": "Real smart account" + }, + "pinned": { + "lastUpdatedAt": 0, + "value": false + } + }, + "entropy:01KMK79H2SG3MB2Q7XWEXMZ013/2": { + "hidden": { + "lastUpdatedAt": 0, + "value": false + }, + "lastSelected": 0, + "name": { + "lastUpdatedAt": 0, + "value": "Account 3" + }, + "pinned": { + "lastUpdatedAt": 0, + "value": false + } + }, + "entropy:01KMK79H2SG3MB2Q7XWEXMZ013/3": { + "hidden": { + "lastUpdatedAt": 0, + "value": false + }, + "lastSelected": 0, + "name": { + "lastUpdatedAt": 1774466681731, + "value": "Smart account" + }, + "pinned": { + "lastUpdatedAt": 0, + "value": false + } + }, + "entropy:01KMK79H2SG3MB2Q7XWEXMZ013/4": { + "hidden": { + "lastUpdatedAt": 0, + "value": false + }, + "lastSelected": 0, + "name": { + "lastUpdatedAt": 0, + "value": "Account 5" + }, + "pinned": { + "lastUpdatedAt": 0, + "value": false + } + }, + "entropy:01KMK79H2SG3MB2Q7XWEXMZ013/5": { + "hidden": { + "lastUpdatedAt": 0, + "value": false + }, + "lastSelected": 0, + "name": { + "lastUpdatedAt": 0, + "value": "Account 6" + }, + "pinned": { + "lastUpdatedAt": 0, + "value": false + } + }, + "keyring:Ledger Hardware/0x04400bb51b1f886cff338eb2b4118f9ceb4e6fd5": { + "hidden": { + "lastUpdatedAt": 0, + "value": false + }, + "lastSelected": 0, + "name": { + "lastUpdatedAt": 0, + "value": "Ledger Account 4" + }, + "pinned": { + "lastUpdatedAt": 0, + "value": false + } + }, + "keyring:Ledger Hardware/0x422b8d8914cdad779f587414d647e953bb3a87db": { + "hidden": { + "lastUpdatedAt": 0, + "value": false + }, + "lastSelected": 0, + "name": { + "lastUpdatedAt": 0, + "value": "Ledger Account 7" + }, + "pinned": { + "lastUpdatedAt": 0, + "value": false + } + }, + "keyring:Ledger Hardware/0x6eff00186ba65c5fade98d75aa4d99ef71fa461b": { + "hidden": { + "lastUpdatedAt": 0, + "value": false + }, + "lastSelected": 0, + "name": { + "lastUpdatedAt": 0, + "value": "Ledger Account 3" + }, + "pinned": { + "lastUpdatedAt": 0, + "value": false + } + }, + "keyring:Ledger Hardware/0x9dc641ccd7d1e7c66e47a25598ace7219548d887": { + "hidden": { + "lastUpdatedAt": 0, + "value": false + }, + "lastSelected": 0, + "name": { + "lastUpdatedAt": 0, + "value": "Ledger Account 2" + }, + "pinned": { + "lastUpdatedAt": 0, + "value": false + } + }, + "keyring:Ledger Hardware/0xb3864b298f4fddbbbd2fa5cf1a2a2748932b3b81": { + "hidden": { + "lastUpdatedAt": 0, + "value": false + }, + "lastSelected": 1775851212948, + "name": { + "lastUpdatedAt": 0, + "value": "Ledger Account 5" + }, + "pinned": { + "lastUpdatedAt": 0, + "value": false + } + }, + "keyring:Ledger Hardware/0xeeeab71a5989b7951389e3df313ea9876508856f": { + "hidden": { + "lastUpdatedAt": 0, + "value": false + }, + "lastSelected": 0, + "name": { + "lastUpdatedAt": 0, + "value": "Ledger Account 6" + }, + "pinned": { + "lastUpdatedAt": 0, + "value": false + } + } + }, + "accountWalletsMetadata": {}, + "connectivityStatus": "online", + "grantedPermissions": [], + "pendingRevocations": [], + "lastSyncedTimestamp": -1, + "isFetchingGatorPermissions": false, + "rewardsActiveAccount": { + "account": "eip155:0:0x141d32a89a1e0a5ef360034a2f60a4b917c18838", + "hasOptedIn": false, + "lastFreshOptInStatusCheck": 1779126362763, + "lastPerpsDiscountRateFetched": null, + "perpsFeeDiscount": null, + "subscriptionId": null + }, + "rewardsAccounts": { + "bip122:000000000019d6689c085ae165831e93:bc1qklk4c2g7pk2eertfh0zgw9gn6gaq7px9stmtsz": { + "account": "bip122:000000000019d6689c085ae165831e93:bc1qklk4c2g7pk2eertfh0zgw9gn6gaq7px9stmtsz", + "hasOptedIn": false, + "lastFreshOptInStatusCheck": 1779126362764, + "lastPerpsDiscountRateFetched": null, + "perpsFeeDiscount": null, + "subscriptionId": null + }, + "eip155:0:0x04400bb51b1f886cff338eb2b4118f9ceb4e6fd5": { + "account": "eip155:0:0x04400bb51b1f886cff338eb2b4118f9ceb4e6fd5", + "hasOptedIn": false, + "lastFreshOptInStatusCheck": 1779126362875, + "lastPerpsDiscountRateFetched": null, + "perpsFeeDiscount": null, + "subscriptionId": null + }, + "eip155:0:0x09b8556833e53f92ee0b668db146b43ca2cab130": { + "account": "eip155:0:0x09b8556833e53f92ee0b668db146b43ca2cab130", + "hasOptedIn": false, + "lastFreshOptInStatusCheck": 1779126362875, + "lastPerpsDiscountRateFetched": null, + "perpsFeeDiscount": null, + "subscriptionId": null + }, + "eip155:0:0x141d32a89a1e0a5ef360034a2f60a4b917c18838": { + "account": "eip155:0:0x141d32a89a1e0a5ef360034a2f60a4b917c18838", + "hasOptedIn": false, + "lastFreshOptInStatusCheck": 1779126362763, + "lastPerpsDiscountRateFetched": null, + "perpsFeeDiscount": null, + "subscriptionId": null + }, + "eip155:0:0x2b6a82d1fea4d5b137095ca5306ba2589b630a08": { + "account": "eip155:0:0x2b6a82d1fea4d5b137095ca5306ba2589b630a08", + "hasOptedIn": false, + "lastFreshOptInStatusCheck": 1779126362874, + "lastPerpsDiscountRateFetched": null, + "perpsFeeDiscount": null, + "subscriptionId": null + }, + "eip155:0:0x30e8ccad5a980bdf30447f8c2c48e70989d9d294": { + "account": "eip155:0:0x30e8ccad5a980bdf30447f8c2c48e70989d9d294", + "hasOptedIn": false, + "lastFreshOptInStatusCheck": 1779126362874, + "lastPerpsDiscountRateFetched": null, + "perpsFeeDiscount": null, + "subscriptionId": null + }, + "eip155:0:0x3823c59973351f50e8b985e182b81300dae9bb45": { + "account": "eip155:0:0x3823c59973351f50e8b985e182b81300dae9bb45", + "hasOptedIn": false, + "lastFreshOptInStatusCheck": 1779126362874, + "lastPerpsDiscountRateFetched": null, + "perpsFeeDiscount": null, + "subscriptionId": null + }, + "eip155:0:0x422b8d8914cdad779f587414d647e953bb3a87db": { + "account": "eip155:0:0x422b8d8914cdad779f587414d647e953bb3a87db", + "hasOptedIn": false, + "lastFreshOptInStatusCheck": 1779126362875, + "lastPerpsDiscountRateFetched": null, + "perpsFeeDiscount": null, + "subscriptionId": null + }, + "eip155:0:0x452ca3dad6db7f3a47bbf15b758b6749db579bbc": { + "account": "eip155:0:0x452ca3dad6db7f3a47bbf15b758b6749db579bbc", + "hasOptedIn": false, + "lastFreshOptInStatusCheck": 1779126362874, + "lastPerpsDiscountRateFetched": null, + "perpsFeeDiscount": null, + "subscriptionId": null + }, + "eip155:0:0x6eff00186ba65c5fade98d75aa4d99ef71fa461b": { + "account": "eip155:0:0x6eff00186ba65c5fade98d75aa4d99ef71fa461b", + "hasOptedIn": false, + "lastFreshOptInStatusCheck": 1779126362875, + "lastPerpsDiscountRateFetched": null, + "perpsFeeDiscount": null, + "subscriptionId": null + }, + "eip155:0:0x83ad6a1294d949d514361326bcebae4f73957327": { + "account": "eip155:0:0x83ad6a1294d949d514361326bcebae4f73957327", + "hasOptedIn": false, + "lastFreshOptInStatusCheck": 1779126362874, + "lastPerpsDiscountRateFetched": null, + "perpsFeeDiscount": null, + "subscriptionId": null + }, + "eip155:0:0x94d1362400e999b38c845ca2c305c084031dae84": { + "account": "eip155:0:0x94d1362400e999b38c845ca2c305c084031dae84", + "hasOptedIn": false, + "lastFreshOptInStatusCheck": 1779126362874, + "lastPerpsDiscountRateFetched": null, + "perpsFeeDiscount": null, + "subscriptionId": null + }, + "eip155:0:0x98931e2b2272891c2e8e47d675007d94ae90ce64": { + "account": "eip155:0:0x98931e2b2272891c2e8e47d675007d94ae90ce64", + "hasOptedIn": false, + "lastFreshOptInStatusCheck": 1779126362875, + "lastPerpsDiscountRateFetched": null, + "perpsFeeDiscount": null, + "subscriptionId": null + }, + "eip155:0:0x9dc641ccd7d1e7c66e47a25598ace7219548d887": { + "account": "eip155:0:0x9dc641ccd7d1e7c66e47a25598ace7219548d887", + "hasOptedIn": false, + "lastFreshOptInStatusCheck": 1779126362875, + "lastPerpsDiscountRateFetched": null, + "perpsFeeDiscount": null, + "subscriptionId": null + }, + "eip155:0:0xa30078e306614c2f444550da6bc759173dfb61fd": { + "account": "eip155:0:0xa30078e306614c2f444550da6bc759173dfb61fd", + "hasOptedIn": false, + "lastFreshOptInStatusCheck": 1779126362875, + "lastPerpsDiscountRateFetched": null, + "perpsFeeDiscount": null, + "subscriptionId": null + }, + "eip155:0:0xb3864b298f4fddbbbd2fa5cf1a2a2748932b3b81": { + "account": "eip155:0:0xb3864b298f4fddbbbd2fa5cf1a2a2748932b3b81", + "hasOptedIn": false, + "lastFreshOptInStatusCheck": 1779126362875, + "lastPerpsDiscountRateFetched": null, + "perpsFeeDiscount": null, + "subscriptionId": null + }, + "eip155:0:0xbcc30cc9b8109f87fcede0c57e3a8c3dc979e3d0": { + "account": "eip155:0:0xbcc30cc9b8109f87fcede0c57e3a8c3dc979e3d0", + "hasOptedIn": false, + "lastFreshOptInStatusCheck": 1779126362874, + "lastPerpsDiscountRateFetched": null, + "perpsFeeDiscount": null, + "subscriptionId": null + }, + "eip155:0:0xc9442048fd0c34b684035a82188b69c4ee5e8f21": { + "account": "eip155:0:0xc9442048fd0c34b684035a82188b69c4ee5e8f21", + "hasOptedIn": false, + "lastFreshOptInStatusCheck": 1779126362874, + "lastPerpsDiscountRateFetched": null, + "perpsFeeDiscount": null, + "subscriptionId": null + }, + "eip155:0:0xda04e0fe4e79eebcaffcbfff8ea0bdcd442d2119": { + "account": "eip155:0:0xda04e0fe4e79eebcaffcbfff8ea0bdcd442d2119", + "hasOptedIn": false, + "lastFreshOptInStatusCheck": 1779126362875, + "lastPerpsDiscountRateFetched": null, + "perpsFeeDiscount": null, + "subscriptionId": null + }, + "eip155:0:0xe2f39519240814a77047490357ced4d094b6c9c7": { + "account": "eip155:0:0xe2f39519240814a77047490357ced4d094b6c9c7", + "hasOptedIn": false, + "lastFreshOptInStatusCheck": 1779126362874, + "lastPerpsDiscountRateFetched": null, + "perpsFeeDiscount": null, + "subscriptionId": null + }, + "eip155:0:0xeeeab71a5989b7951389e3df313ea9876508856f": { + "account": "eip155:0:0xeeeab71a5989b7951389e3df313ea9876508856f", + "hasOptedIn": false, + "lastFreshOptInStatusCheck": 1779126362875, + "lastPerpsDiscountRateFetched": null, + "perpsFeeDiscount": null, + "subscriptionId": null + }, + "eip155:0:0xf1f63d55e8f25c962079be324c71cdcf792c6047": { + "account": "eip155:0:0xf1f63d55e8f25c962079be324c71cdcf792c6047", + "hasOptedIn": false, + "lastFreshOptInStatusCheck": 1779126362875, + "lastPerpsDiscountRateFetched": null, + "perpsFeeDiscount": null, + "subscriptionId": null + }, + "eip155:0:0xf25bd11c334507fd007d584e2d0b7b2c6543f714": { + "account": "eip155:0:0xf25bd11c334507fd007d584e2d0b7b2c6543f714", + "hasOptedIn": false, + "lastFreshOptInStatusCheck": 1779126362874, + "lastPerpsDiscountRateFetched": null, + "perpsFeeDiscount": null, + "subscriptionId": null + }, + "solana:5eykt4UsFv8P8NJdTREpY1vzqKqZKvdp:3PGGUjEUt8jUpqzfAB3bh7A3NWDZhqNcdtCGqeipT6bV": { + "account": "solana:5eykt4UsFv8P8NJdTREpY1vzqKqZKvdp:3PGGUjEUt8jUpqzfAB3bh7A3NWDZhqNcdtCGqeipT6bV", + "hasOptedIn": false, + "lastFreshOptInStatusCheck": 1779126362875, + "lastPerpsDiscountRateFetched": null, + "perpsFeeDiscount": null, + "subscriptionId": null + }, + "solana:5eykt4UsFv8P8NJdTREpY1vzqKqZKvdp:4fhPk4yRhMPQL21Ua2MMUxC2p5VT9q2K4Uep2aGAtYGJ": { + "account": "solana:5eykt4UsFv8P8NJdTREpY1vzqKqZKvdp:4fhPk4yRhMPQL21Ua2MMUxC2p5VT9q2K4Uep2aGAtYGJ", + "hasOptedIn": false, + "lastFreshOptInStatusCheck": 1779126362875, + "lastPerpsDiscountRateFetched": null, + "perpsFeeDiscount": null, + "subscriptionId": null + }, + "solana:5eykt4UsFv8P8NJdTREpY1vzqKqZKvdp:8jKM7u4xsyvDpnqL5DQMVrh8AXxZKJPKJw5QsM7KEF8J": { + "account": "solana:5eykt4UsFv8P8NJdTREpY1vzqKqZKvdp:8jKM7u4xsyvDpnqL5DQMVrh8AXxZKJPKJw5QsM7KEF8J", + "hasOptedIn": false, + "lastFreshOptInStatusCheck": 1779126362874, + "lastPerpsDiscountRateFetched": null, + "perpsFeeDiscount": null, + "subscriptionId": null + }, + "solana:5eykt4UsFv8P8NJdTREpY1vzqKqZKvdp:ALcEx6ANnJams9dX2jUwamfSc2P7gA66tUt83o3F2ipv": { + "account": "solana:5eykt4UsFv8P8NJdTREpY1vzqKqZKvdp:ALcEx6ANnJams9dX2jUwamfSc2P7gA66tUt83o3F2ipv", + "hasOptedIn": false, + "lastFreshOptInStatusCheck": 1779126362875, + "lastPerpsDiscountRateFetched": null, + "perpsFeeDiscount": null, + "subscriptionId": null + }, + "solana:5eykt4UsFv8P8NJdTREpY1vzqKqZKvdp:ATK5qHMB4bNuPh6Hj3RoCLRQrUafg9PoSdR5RhEf6nyz": { + "account": "solana:5eykt4UsFv8P8NJdTREpY1vzqKqZKvdp:ATK5qHMB4bNuPh6Hj3RoCLRQrUafg9PoSdR5RhEf6nyz", + "hasOptedIn": false, + "lastFreshOptInStatusCheck": 1779126362875, + "lastPerpsDiscountRateFetched": null, + "perpsFeeDiscount": null, + "subscriptionId": null + }, + "solana:5eykt4UsFv8P8NJdTREpY1vzqKqZKvdp:Bz3cfju4DDyduz7mRbgV7tN4aKg2mmZp4hqUc5dUJWct": { + "account": "solana:5eykt4UsFv8P8NJdTREpY1vzqKqZKvdp:Bz3cfju4DDyduz7mRbgV7tN4aKg2mmZp4hqUc5dUJWct", + "hasOptedIn": false, + "lastFreshOptInStatusCheck": 1779126362874, + "lastPerpsDiscountRateFetched": null, + "perpsFeeDiscount": null, + "subscriptionId": null + }, + "solana:5eykt4UsFv8P8NJdTREpY1vzqKqZKvdp:CyGir7UdxRCsNXkA89qH1P5p3Zhx11XxsE97WSfNMnLT": { + "account": "solana:5eykt4UsFv8P8NJdTREpY1vzqKqZKvdp:CyGir7UdxRCsNXkA89qH1P5p3Zhx11XxsE97WSfNMnLT", + "hasOptedIn": false, + "lastFreshOptInStatusCheck": 1779126362764, + "lastPerpsDiscountRateFetched": null, + "perpsFeeDiscount": null, + "subscriptionId": null + }, + "solana:5eykt4UsFv8P8NJdTREpY1vzqKqZKvdp:D17b35MvfEann7FDStSUWH6EAXCyfvjBXJmx8zwCeMg5": { + "account": "solana:5eykt4UsFv8P8NJdTREpY1vzqKqZKvdp:D17b35MvfEann7FDStSUWH6EAXCyfvjBXJmx8zwCeMg5", + "hasOptedIn": false, + "lastFreshOptInStatusCheck": 1779126362874, + "lastPerpsDiscountRateFetched": null, + "perpsFeeDiscount": null, + "subscriptionId": null + }, + "solana:5eykt4UsFv8P8NJdTREpY1vzqKqZKvdp:DRZLWUT14336p9NRrquuwt759BSydintJFGiRT6refdA": { + "account": "solana:5eykt4UsFv8P8NJdTREpY1vzqKqZKvdp:DRZLWUT14336p9NRrquuwt759BSydintJFGiRT6refdA", + "hasOptedIn": false, + "lastFreshOptInStatusCheck": 1779126362875, + "lastPerpsDiscountRateFetched": null, + "perpsFeeDiscount": null, + "subscriptionId": null + }, + "solana:5eykt4UsFv8P8NJdTREpY1vzqKqZKvdp:EakrRNLYP3WCatjriJzKSy4HRbmHA4ogdN11dwPPQmJP": { + "account": "solana:5eykt4UsFv8P8NJdTREpY1vzqKqZKvdp:EakrRNLYP3WCatjriJzKSy4HRbmHA4ogdN11dwPPQmJP", + "hasOptedIn": false, + "lastFreshOptInStatusCheck": 1779126362874, + "lastPerpsDiscountRateFetched": null, + "perpsFeeDiscount": null, + "subscriptionId": null + }, + "solana:5eykt4UsFv8P8NJdTREpY1vzqKqZKvdp:F7nHkrzPrE6J8r8jcvLPVE3KbuwGzosGWjiRzXyuWPx1": { + "account": "solana:5eykt4UsFv8P8NJdTREpY1vzqKqZKvdp:F7nHkrzPrE6J8r8jcvLPVE3KbuwGzosGWjiRzXyuWPx1", + "hasOptedIn": false, + "lastFreshOptInStatusCheck": 1779126362875, + "lastPerpsDiscountRateFetched": null, + "perpsFeeDiscount": null, + "subscriptionId": null + }, + "solana:5eykt4UsFv8P8NJdTREpY1vzqKqZKvdp:FauUtcWJ81uyS6naBZD6uSdjNuJvuD73tUnSLJMZUP2e": { + "account": "solana:5eykt4UsFv8P8NJdTREpY1vzqKqZKvdp:FauUtcWJ81uyS6naBZD6uSdjNuJvuD73tUnSLJMZUP2e", + "hasOptedIn": false, + "lastFreshOptInStatusCheck": 1779126362875, + "lastPerpsDiscountRateFetched": null, + "perpsFeeDiscount": null, + "subscriptionId": null + }, + "solana:5eykt4UsFv8P8NJdTREpY1vzqKqZKvdp:GBnbPgkU6Nz1iH8nE1aPc4K5vLt7Y8TLDJm55WEGVdK5": { + "account": "solana:5eykt4UsFv8P8NJdTREpY1vzqKqZKvdp:GBnbPgkU6Nz1iH8nE1aPc4K5vLt7Y8TLDJm55WEGVdK5", + "hasOptedIn": false, + "lastFreshOptInStatusCheck": 1779126362875, + "lastPerpsDiscountRateFetched": null, + "perpsFeeDiscount": null, + "subscriptionId": null + }, + "solana:5eykt4UsFv8P8NJdTREpY1vzqKqZKvdp:HhoQAMYGpUr733KFgZJuZxwVVfqMKLgpChjzehYTRW4C": { + "account": "solana:5eykt4UsFv8P8NJdTREpY1vzqKqZKvdp:HhoQAMYGpUr733KFgZJuZxwVVfqMKLgpChjzehYTRW4C", + "hasOptedIn": false, + "lastFreshOptInStatusCheck": 1779126362874, + "lastPerpsDiscountRateFetched": null, + "perpsFeeDiscount": null, + "subscriptionId": null + }, + "solana:5eykt4UsFv8P8NJdTREpY1vzqKqZKvdp:fXSVz3jyNokxeNN1Z6bvh4eT4ZuXv1gtpGaSg4HxxXw": { + "account": "solana:5eykt4UsFv8P8NJdTREpY1vzqKqZKvdp:fXSVz3jyNokxeNN1Z6bvh4eT4ZuXv1gtpGaSg4HxxXw", + "hasOptedIn": false, + "lastFreshOptInStatusCheck": 1779126362875, + "lastPerpsDiscountRateFetched": null, + "perpsFeeDiscount": null, + "subscriptionId": null + }, + "solana:5eykt4UsFv8P8NJdTREpY1vzqKqZKvdp:uik8nmbvhYfhj1n9hrJ4vigneMrr3qbbbbWuhLLSboP": { + "account": "solana:5eykt4UsFv8P8NJdTREpY1vzqKqZKvdp:uik8nmbvhYfhj1n9hrJ4vigneMrr3qbbbbWuhLLSboP", + "hasOptedIn": false, + "lastFreshOptInStatusCheck": 1779126362875, + "lastPerpsDiscountRateFetched": null, + "perpsFeeDiscount": null, + "subscriptionId": null + }, + "tron:728126428:TXmjzabcG63GjXgGKuaStJh6oCorb8jyja": { + "account": "tron:728126428:TXmjzabcG63GjXgGKuaStJh6oCorb8jyja", + "hasOptedIn": false, + "lastFreshOptInStatusCheck": 1779126362764, + "lastPerpsDiscountRateFetched": null, + "perpsFeeDiscount": null, + "subscriptionId": null + } + }, + "rewardsSubscriptions": {}, + "rewardsSeasons": {}, + "rewardsSeasonStatuses": {}, + "rewardsPointsEstimateHistory": [], + "isUiOpen": true + }, + "appState": { + "customNonceValue": "", + "isNetworkMenuOpen": false, + "nextNonce": null, + "pendingTokens": {}, + "confirmationExchangeRates": {}, + "modal": { + "open": false, + "modalState": { + "name": null, + "props": {} + }, + "previousModalState": { + "name": null + } + }, + "alertOpen": false, + "alertMessage": null, + "qrCodeData": null, + "networkDropdownOpen": false, + "importNftsModal": { + "open": false + }, + "showPermittedNetworkToastOpen": false, + "showIpfsModalOpen": false, + "showBasicFunctionalityModal": false, + "externalServicesOnboardingToggleState": true, + "keyringRemovalSnapModal": { + "snapName": "", + "result": "none" + }, + "showKeyringRemovalSnapModal": false, + "importTokensModalOpen": false, + "deprecatedNetworkModalOpen": false, + "accountDetail": { + "privateKey": "" + }, + "isLoading": false, + "isNftStillFetchingIndication": false, + "loadingMessage": null, + "warning": null, + "defaultHdPaths": { + "trezor": "m/44'/60'/0'/0", + "oneKey": "m/44'/60'/0'/0", + "ledger": "m/44'/60'/0'/0/0", + "lattice": "m/44'/60'/0'/0" + }, + "requestAccountTabs": {}, + "openMetaMaskTabs": {}, + "singleExceptions": { + "testKey": null + }, + "gasLoadingAnimationIsShowing": false, + "smartTransactionsError": null, + "smartTransactionsErrorMessageDismissed": false, + "ledgerWebHidConnectedStatus": "unknown", + "ledgerTransportStatus": "NONE", + "newNetworkAddedName": "", + "newNetworkAddedConfigurationId": "", + "selectedNetworkConfigurationId": "", + "sendInputCurrencySwitched": false, + "newTokensImported": "", + "newTokensImportedError": "", + "onboardedInThisUISession": false, + "customTokenAmount": "", + "txId": null, + "showDeleteMetaMetricsDataModal": false, + "showDataDeletionErrorModal": false, + "isAddingNewNetwork": false, + "isMultiRpcOnboarding": false, + "isAccessedFromDappConnectedSitePopover": false, + "errorInSettings": null, + "showClaimSubmitToast": null, + "showInfuraSwitchToast": false, + "showSupportDataConsentModal": false + }, + "DNS": { + "stage": "UNINITIALIZED", + "resolutions": null, + "error": null, + "warning": null, + "chainId": null, + "domainName": null + }, + "history": { + "mostRecentOverviewPage": "/", + "redirectAfterDefaultPage": null + }, + "confirmAlerts": { + "alerts": {}, + "confirmed": {} + }, + "confirmTransaction": { + "txData": {}, + "tokenData": {}, + "tokenProps": {}, + "fiatTransactionAmount": "", + "fiatTransactionFee": "", + "fiatTransactionTotal": "", + "ethTransactionAmount": "", + "ethTransactionFee": "", + "ethTransactionTotal": "", + "hexTransactionAmount": "", + "hexTransactionFee": "", + "hexTransactionTotal": "", + "nonce": "", + "maxValueMode": {} + }, + "swaps": { + "aggregatorMetadata": null, + "approveTxId": null, + "tradeTxId": null, + "balanceError": false, + "fetchingQuotes": false, + "fromToken": null, + "fromTokenInputValue": "", + "fromTokenError": null, + "isFeatureFlagLoaded": false, + "maxSlippage": 2, + "quotesFetchStartTime": null, + "reviewSwapClickedTimestamp": null, + "topAssets": {}, + "toToken": null, + "customGas": { + "price": null, + "limit": null, + "loading": "INITIAL", + "priceEstimates": {}, + "fallBackPrice": null + }, + "currentSmartTransactionsError": "", + "swapsSTXLoading": false, + "transactionSettingsOpened": false, + "latestAddedTokenTo": "" + }, + "ramps": { + "buyableChains": [ + { + "active": true, + "chainId": "42161", + "chainName": "Arbitrum Mainnet", + "shortName": "Arbitrum", + "isEvm": true, + "nativeTokenSupported": true + }, + { + "active": true, + "chainId": "1313161554", + "chainName": "Aurora Mainnet", + "shortName": "Aurora", + "isEvm": true, + "nativeTokenSupported": false + }, + { + "active": true, + "chainId": "43114", + "chainName": "Avalanche C-Chain Mainnet", + "shortName": "Avalanche C-Chain", + "isEvm": true, + "nativeTokenSupported": true + }, + { + "active": true, + "chainId": "8453", + "chainName": "Base Mainnet", + "shortName": "Base", + "isEvm": true, + "nativeTokenSupported": true + }, + { + "active": true, + "chainId": "bip122:000000000019d6689c085ae165831e93", + "chainName": "Bitcoin", + "shortName": "Bitcoin", + "nativeTokenSupported": true, + "isEvm": false + }, + { + "active": true, + "chainId": "56", + "chainName": "BNB Chain Mainnet", + "shortName": "BNB Chain", + "isEvm": true, + "nativeTokenSupported": true + }, + { + "active": true, + "chainId": "42220", + "chainName": "Celo Mainnet", + "shortName": "Celo", + "isEvm": true, + "nativeTokenSupported": false + }, + { + "active": true, + "chainId": "25", + "chainName": "Cronos Mainnet", + "shortName": "Cronos", + "isEvm": true, + "nativeTokenSupported": true + }, + { + "active": true, + "chainId": "1", + "chainName": "Ethereum Mainnet", + "shortName": "Ethereum", + "isEvm": true, + "nativeTokenSupported": true + }, + { + "active": true, + "chainId": "250", + "chainName": "Fantom Mainnet", + "shortName": "Fantom", + "isEvm": true, + "nativeTokenSupported": false + }, + { + "active": true, + "chainId": "100", + "chainName": "Gnosis Mainnet", + "shortName": "Gnosis", + "isEvm": true, + "nativeTokenSupported": false + }, + { + "active": true, + "chainId": "59144", + "chainName": "Linea", + "shortName": "Linea", + "isEvm": true, + "nativeTokenSupported": true + }, + { + "active": true, + "chainId": "1284", + "chainName": "Moonbeam Mainnet", + "shortName": "Moonbeam", + "isEvm": true, + "nativeTokenSupported": true + }, + { + "active": true, + "chainId": "10", + "chainName": "Optimism Mainnet", + "shortName": "Optimism", + "isEvm": true, + "nativeTokenSupported": true + }, + { + "active": true, + "chainId": "137", + "chainName": "Polygon Mainnet", + "shortName": "Polygon", + "isEvm": true, + "nativeTokenSupported": true + }, + { + "active": true, + "chainId": "1101", + "chainName": "Polygon zkEVM", + "shortName": "Polygon zkEVM", + "isEvm": true, + "nativeTokenSupported": true + }, + { + "active": true, + "chainId": "solana:5eykt4UsFv8P8NJdTREpY1vzqKqZKvdp", + "chainName": "Solana", + "shortName": "Solana", + "nativeTokenSupported": true, + "isEvm": false + }, + { + "active": true, + "chainId": "tron:728126428", + "chainName": "Tron", + "shortName": "Tron", + "isEvm": true, + "nativeTokenSupported": false + }, + { + "active": true, + "chainId": "tron:728126428", + "chainName": "Tron", + "shortName": "Tron", + "nativeTokenSupported": true, + "isEvm": false + }, + { + "active": true, + "chainId": "324", + "chainName": "zkSync Era Mainnet", + "shortName": "zkSync Era", + "isEvm": true, + "nativeTokenSupported": true + } + ], + "isFetched": true + }, + "bridge": { + "fromToken": null, + "toToken": null, + "fromTokenInputValue": null, + "fromTokenExchangeRate": null, + "fromTokenBalance": null, + "fromNativeBalance": null, + "sortOrder": "cost_ascending", + "selectedQuote": null, + "wasTxDeclined": false, + "slippage": 2, + "txAlert": null, + "txAlertStatus": 1, + "isSrcAssetPickerOpen": false, + "isDestAssetPickerOpen": false + }, + "gas": { + "customData": { + "price": null, + "limit": null + } + }, + "localeMessages": { + "currentLocale": "en", + "current": { + "CSS_loadingTakingTooLongActionText": { + "message": "Relaunch MetaMask if the problem persists.", + "description": "Second line of the message that is shown when the initial loading of the MetaMask UI takes a very long time." + }, + "CSS_loadingTakingTooLongMessageText": { + "message": "Loading is taking longer than usual.", + "description": "First line of the message that is shown when the initial loading of the MetaMask UI takes a very long time." + }, + "QRHardwareInvalidTransactionTitle": { + "message": "Error" + }, + "QRHardwareMismatchedSignId": { + "message": "Incongruent transaction data. Please check the transaction details." + }, + "QRHardwarePubkeyAccountOutOfRange": { + "message": "No more accounts. If you would like to access another account unlisted below, please reconnect your hardware wallet and select it." + }, + "QRHardwareScanInstructions": { + "message": "Place the QR code in front of your camera. The screen is blurred, but it will not affect the reading." + }, + "QRHardwareSignRequestCancel": { + "message": "Reject" + }, + "QRHardwareSignRequestDescription": { + "message": "After you’ve signed with your wallet, click on 'Get Signature' to receive the signature" + }, + "QRHardwareSignRequestGetSignature": { + "message": "Get signature" + }, + "QRHardwareSignRequestSubtitle": { + "message": "Scan the QR code with your wallet" + }, + "QRHardwareSignRequestTitle": { + "message": "Request signature" + }, + "QRHardwareUnknownQRCodeTitle": { + "message": "Error" + }, + "QRHardwareUnknownWalletQRCode": { + "message": "Invalid QR code. Please scan the sync QR code of the hardware wallet." + }, + "QRHardwareWalletImporterTitle": { + "message": "Scan QR code" + }, + "QRHardwareWalletSteps1Description": { + "message": "You can choose from a list of official QR-code supporting partners below." + }, + "QRHardwareWalletSteps1Title": { + "message": "Connect your QR hardware wallet" + }, + "QRHardwareWalletSteps2Description": { + "message": "Ngrave Zero" + }, + "SrpListHideAccounts": { + "message": "Hide $1 accounts", + "description": "$1 is the number of accounts" + }, + "SrpListHideSingleAccount": { + "message": "Hide 1 account" + }, + "SrpListShowAccounts": { + "message": "Show $1 accounts", + "description": "$1 is the number of accounts" + }, + "SrpListShowSingleAccount": { + "message": "Show 1 account" + }, + "about": { + "message": "About" + }, + "aboutMetaMask": { + "message": "About MetaMask" + }, + "accept": { + "message": "Accept" + }, + "acceptAndClose": { + "message": "Accept and close" + }, + "acceptTermsOfUse": { + "message": "I have read and agree to the $1", + "description": "$1 is the `terms` message" + }, + "accessingYourCamera": { + "message": "Accessing your camera..." + }, + "account": { + "message": "Account" + }, + "accountActivity": { + "message": "Account activity" + }, + "accountActivityText": { + "message": "Select the accounts you want to be notified about:" + }, + "accountAlreadyExistsLogin": { + "message": "Log in" + }, + "accountAlreadyExistsLoginDescription": { + "message": "A wallet using “$1” already exists. Do you want to try logging in instead?", + "description": "$1 is the account email" + }, + "accountAlreadyExistsTitle": { + "message": "Wallet already exists" + }, + "accountDetails": { + "message": "Account details" + }, + "accountDetailsSrpBackUpMessage": { + "message": "Back up", + "description": "Text used to describe action for SRP backup. Used on multichain account details." + }, + "accountIdenticon": { + "message": "Account icon" + }, + "accountName": { + "message": "Account name" + }, + "accountNameAlreadyInUse": { + "message": "This name is already in use.", + "description": "Error help text used under the input field for renaming multichain account when user tries to use existing name." + }, + "accountNameDuplicate": { + "message": "This account name already exists", + "description": "This is an error message shown when the user enters a new account name that matches an existing account name" + }, + "accountNameReserved": { + "message": "This account name is reserved", + "description": "This is an error message shown when the user enters a new account name that is reserved for future use" + }, + "accountNotFoundCreateOne": { + "message": "Yes, create a new wallet" + }, + "accountNotFoundDescription": { + "message": "We couldn’t find a wallet for “$1”. Do you want to create a new one with this login?", + "description": "$1 is the account email" + }, + "accountNotFoundTitle": { + "message": "Wallet not found" + }, + "accountOptions": { + "message": "Account options" + }, + "accountPermissionToast": { + "message": "Account permissions updated" + }, + "accountSelectionRequired": { + "message": "You need to select an account!" + }, + "accountSmallCase": { + "message": "account" + }, + "accountTypeNotSupported": { + "message": "Account type not supported" + }, + "accounts": { + "message": "Accounts" + }, + "accountsConnected": { + "message": "Accounts connected" + }, + "accountsPermissionsTitle": { + "message": "See your accounts and suggest transactions" + }, + "accountsSmallCase": { + "message": "accounts" + }, + "actionUnavailable": { + "message": "Action unavailable" + }, + "active": { + "message": "Active" + }, + "activity": { + "message": "Activity" + }, + "activityEmptyDescription": { + "message": "Nothing to see yet. Swap your first token today." + }, + "add": { + "message": "Add" + }, + "addACustomNetwork": { + "message": "Add a custom network" + }, + "addANetwork": { + "message": "Add a network" + }, + "addANickname": { + "message": "Add a nickname" + }, + "addAUrl": { + "message": "Add a URL" + }, + "addAWallet": { + "message": "Add a wallet" + }, + "addAccount": { + "message": "Add account" + }, + "addAccountFromNetwork": { + "message": "Add $1 account", + "description": "$1 is the network name, e.g. Bitcoin or Solana" + }, + "addAccountOrWallet": { + "message": "Add account or wallet" + }, + "addAcquiredTokens": { + "message": "Add the tokens you've acquired using MetaMask" + }, + "addAlias": { + "message": "Add alias" + }, + "addBitcoinAccountLabel": { + "message": "Bitcoin account" + }, + "addBlockExplorer": { + "message": "Add a block explorer" + }, + "addBlockExplorerUrl": { + "message": "Add a block explorer URL" + }, + "addContact": { + "message": "Add contact" + }, + "addCustomNetwork": { + "message": "Add custom network" + }, + "addCustomToken": { + "message": "Add a custom token" + }, + "addEthereumChainWarningModalHeader": { + "message": "Only add this RPC provider if you’re sure you can trust it. $1", + "description": "$1 is addEthereumChainWarningModalHeaderPartTwo passed separately so that it can be bolded" + }, + "addEthereumChainWarningModalHeaderPartTwo": { + "message": "Malicious providers may lie about the state of the blockchain and record your network activity." + }, + "addEthereumChainWarningModalListHeader": { + "message": "It's important that your provider is reliable, as it has the power to:" + }, + "addEthereumChainWarningModalListPointOne": { + "message": "See your accounts and IP address, and associate them together" + }, + "addEthereumChainWarningModalListPointThree": { + "message": "Show account balances and other on-chain states" + }, + "addEthereumChainWarningModalListPointTwo": { + "message": "Broadcast your transactions" + }, + "addEthereumChainWarningModalTitle": { + "message": "You are adding a new RPC provider for Ethereum Mainnet" + }, + "addEthereumWatchOnlyAccount": { + "message": "Watch an Ethereum account (Beta)" + }, + "addFriendsAndAddresses": { + "message": "Add friends and addresses you trust" + }, + "addFunds": { + "message": "Add funds" + }, + "addFundsModalBuyCrypto": { + "message": "Buy crypto" + }, + "addFundsModalReceiveTokens": { + "message": "Receive tokens" + }, + "addFundsModalSwapTokens": { + "message": "Swap tokens" + }, + "addHardwareWalletLabel": { + "message": "Hardware wallet" + }, + "addMemo": { + "message": "Add memo" + }, + "addNetwork": { + "message": "Add network" + }, + "addNetworkConfirmationTitle": { + "message": "Add $1", + "description": "$1 represents network name" + }, + "addNetworkDescription": { + "message": "A site is suggesting additional network details." + }, + "addNewAccount": { + "message": "Add a new Ethereum account" + }, + "addNewEthereumAccountLabel": { + "message": "Ethereum account" + }, + "addNewSolanaAccountLabel": { + "message": "Solana account" + }, + "addNewTronAccountLabel": { + "message": "Tron account" + }, + "addNft": { + "message": "Add NFT" + }, + "addNfts": { + "message": "Add NFTs" + }, + "addNonEvmAccount": { + "message": "Add $1 account", + "description": "$1 is the non EVM network where the account is going to be created, e.g. Bitcoin or Solana" + }, + "addNonEvmAccountFromNetworkPicker": { + "message": "To enable the $1 network, you need to create a $2 account.", + "description": "$1 is the non EVM network where the account is going to be created, e.g. Solana Mainnet or Solana Devnet. $2 is the account type, e.g. Bitcoin or Solana" + }, + "addRpcUrl": { + "message": "Add RPC URL" + }, + "addSnapAccountToggle": { + "message": "Enable \"Add account Snap (Beta)\"" + }, + "addSnapAccountsDescription": { + "message": "Turning on this feature will give you the option to add the new Beta account Snaps right from your account list. If you install an account Snap, remember that it is a third-party service." + }, + "addSuggestedNFTs": { + "message": "Add suggested NFTs" + }, + "addSuggestedTokens": { + "message": "Add suggested tokens" + }, + "addToken": { + "message": "Add token" + }, + "addUrl": { + "message": "Add URL" + }, + "addWallet": { + "message": "Add wallet" + }, + "addedProtectionDescription": { + "message": "You're interacting with an unknown address. This helps prevent malicious transactions." + }, + "addedProtectionOptionalBadge": { + "message": "Optional" + }, + "addedProtectionTitle": { + "message": "Added protection" + }, + "addedProtectionTooltip": { + "message": "If the final transaction doesn't match this preview, it won't go through. You only pay the network fee." + }, + "additionalNetworks": { + "message": "Additional networks" + }, + "address": { + "message": "Address" + }, + "addressCopied": { + "message": "Address copied" + }, + "addressLabel": { + "message": "address", + "description": "Label for address count (single address). Used on multichain account details page." + }, + "addressMismatch": { + "message": "Site address mismatch" + }, + "addressMismatchOriginal": { + "message": "Current URL: $1", + "description": "$1 replaced by origin URL in confirmation request" + }, + "addressMismatchPunycode": { + "message": "Punycode version: $1", + "description": "$1 replaced by punycode version of the URL in confirmation request" + }, + "addressQrCodeModalDescription": { + "message": "Use this address to receive tokens and collectibles on $1", + "description": "$1 is the network name" + }, + "addressQrCodeModalHeading": { + "message": "$1 Address", + "description": "$1 is the network name" + }, + "addressQrCodeModalTitle": { + "message": "$1 / $2", + "description": "$1 is account name, $2 is network name" + }, + "addresses": { + "message": "Addresses", + "description": "Multichain account menu item for linking to addresses page" + }, + "addressesLabel": { + "message": "addresses", + "description": "Label for address count (multiple addresses). Used on multichain account details page." + }, + "advanced": { + "message": "Advanced" + }, + "advancedDetailsDataDesc": { + "message": "Data" + }, + "advancedDetailsHexDesc": { + "message": "Hex" + }, + "advancedDetailsNonceDesc": { + "message": "Nonce" + }, + "advancedDetailsNonceTooltip": { + "message": "This is the transaction number of an account. Nonce for the first transaction is 0 and it increases in sequential order." + }, + "advancedEIP1559ModalTitle": { + "message": "Advanced network fee" + }, + "advancedGasPriceModalTitle": { + "message": "Advanced network fee" + }, + "advancedGasPriceTitle": { + "message": "Gas price" + }, + "advancedPermissionSmallCase": { + "message": "advanced permission" + }, + "advancedPermissionsSmallCase": { + "message": "advanced permissions" + }, + "airDropPatternDescription": { + "message": "The token's on-chain history reveals prior instances of suspicious airdrop activities." + }, + "airDropPatternTitle": { + "message": "Airdrop pattern" + }, + "airgapVault": { + "message": "AirGap Vault" + }, + "alert": { + "message": "Alert" + }, + "alertAccountTypeUpgradeMessage": { + "message": "You're updating your account to a smart account. You'll keep the same account address while unlocking faster transactions and lower network fees. $1" + }, + "alertAccountTypeUpgradeTitle": { + "message": "Account type" + }, + "alertActionBurnAddress": { + "message": "Sending assets to burn address" + }, + "alertActionBuyWithNativeCurrency": { + "message": "Buy $1" + }, + "alertActionEditNetworkFee": { + "message": "Edit network fee" + }, + "alertActionUpdateGas": { + "message": "Update gas limit" + }, + "alertActionUpdateGasFee": { + "message": "Update fee" + }, + "alertActionUpdateGasFeeLevel": { + "message": "Update gas options" + }, + "alertContentMultipleApprovals": { + "message": "You're giving someone else permission to withdraw your tokens, even though it's not necessary for this transaction." + }, + "alertDisableTooltip": { + "message": "This can be changed in \"Settings > Alerts\"" + }, + "alertInsufficientPayTokenBalance": { + "message": "Insufficient funds" + }, + "alertInsufficientPayTokenBalanceFeesNoTarget": { + "message": "Add less or use a different token." + }, + "alertInsufficientPayTokenNative": { + "message": "Not enough $1 to cover fees. Use a token on another network or add more $1 to continue.", + "description": "$1 is the native currency symbol (e.g. ETH)" + }, + "alertMessageAddressMismatchWarning": { + "message": "Attackers sometimes mimic sites by making small changes to the site address. Make sure you're interacting with the intended site before you continue." + }, + "alertMessageAddressTrustSignal": { + "message": "We can't verify this address. It may be new or unverified. Only continue if you trust the source." + }, + "alertMessageAddressTrustSignalMalicious": { + "message": "If you confirm this request, you will probably lose your assets to a scammer." + }, + "alertMessageBurnAddress": { + "message": "You're sending your assets to a burn address. If you continue, you'll lose your assets." + }, + "alertMessageChangeInSimulationResults": { + "message": "Estimated changes for this transaction have been updated. Review them closely before proceeding." + }, + "alertMessageFirstTimeInteraction": { + "message": "You're interacting with this address for the first time. Make sure that it's correct before you continue." + }, + "alertMessageGasEstimateFailed": { + "message": "We’re unable to provide an accurate fee and this estimate might be high. We suggest you to input a custom gas limit, but there’s a risk the transaction will still fail." + }, + "alertMessageGasFeeLow": { + "message": "When choosing a low fee, expect slower transactions and longer wait times. For faster transactions, choose Market or Aggressive fee options." + }, + "alertMessageGasTooLow": { + "message": "To continue with this transaction, you’ll need to increase the gas limit to 21000 or higher." + }, + "alertMessageInsufficientBalanceWithNativeCurrency": { + "message": "You do not have enough $1 in your account to pay for network fees." + }, + "alertMessageNoGasPrice": { + "message": "We can’t move forward with this transaction until you manually update the fee." + }, + "alertMessageOriginTrustSignalMalicious": { + "message": "This has been identified as malicious. We recommend not interacting with this site." + }, + "alertMessageOriginTrustSignalWarning": { + "message": "This has been identified as suspicious. We recommend not interacting with this site." + }, + "alertMessageSignInDomainMismatch": { + "message": "The site making the request is not the site you’re signing into. This could be an attempt to steal your login credentials." + }, + "alertMessageSignInWrongAccount": { + "message": "This site is asking you to sign in using the wrong account." + }, + "alertMessageSuggestedGasFeeHigh": { + "message": "This site is suggesting a higher network fee than necessary. Edit the network fee to pay less." + }, + "alertMessageTokenTrustSignalMalicious": { + "message": "This token has been identified as malicious. Interacting with this token may result in a loss of funds." + }, + "alertMessageTokenTrustSignalWarning": { + "message": "This token shows strong signs of malicious behavior. Continuing may result in loss of funds." + }, + "alertModalAcknowledge": { + "message": "I have acknowledged the risk and still want to proceed" + }, + "alertModalDetails": { + "message": "Alert details" + }, + "alertModalReviewAllAlerts": { + "message": "Review all alerts" + }, + "alertNoPayTokenQuotesMessage": { + "message": "This payment route isn't available right now. Try changing the amount, network, or token and we'll find the best option." + }, + "alertNoPayTokenQuotesTitle": { + "message": "No quotes" + }, + "alertPayHardwareAccountMessage": { + "message": "Hardware wallets aren't supported.\nSwitch wallets to continue." + }, + "alertPayHardwareAccountTitle": { + "message": "Wallet not supported" + }, + "alertReasonChangeInSimulationResults": { + "message": "Results have changed" + }, + "alertReasonFirstTimeInteraction": { + "message": "1st interaction" + }, + "alertReasonGasEstimateFailed": { + "message": "Inaccurate fee" + }, + "alertReasonGasFeeLow": { + "message": "Slow speed" + }, + "alertReasonGasSponsorshipUnavailable": { + "message": "Gas sponsorship unavailable" + }, + "alertReasonGasTooLow": { + "message": "Low gas limit" + }, + "alertReasonInsufficientBalance": { + "message": "Insufficient funds" + }, + "alertReasonMultipleApprovals": { + "message": "Unnecessary permission" + }, + "alertReasonNoGasPrice": { + "message": "Fee estimate unavailable" + }, + "alertReasonOriginTrustSignalMalicious": { + "message": "Malicious site" + }, + "alertReasonOriginTrustSignalVerified": { + "message": "Verified site" + }, + "alertReasonOriginTrustSignalWarning": { + "message": "Suspicious site" + }, + "alertReasonPendingTransactions": { + "message": "Pending transaction" + }, + "alertReasonSignIn": { + "message": "Suspicious sign-in request" + }, + "alertReasonSuggestedGasFeeHigh": { + "message": "High site fee" + }, + "alertReasonTokenTrustSignalMalicious": { + "message": "Malicious token" + }, + "alertReasonTokenTrustSignalWarning": { + "message": "Suspicious token" + }, + "alertReasonWrongAccount": { + "message": "Wrong account" + }, + "alertSelectedAccountWarning": { + "message": "This request is for a different account than the one selected in your wallet. To use another account, connect it to the site." + }, + "alerts": { + "message": "Alerts" + }, + "all": { + "message": "All" + }, + "allDefaultNetworks": { + "message": "All default networks" + }, + "allNetworks": { + "message": "All networks" + }, + "allPermissions": { + "message": "Dapp connections" + }, + "allPopularNetworks": { + "message": "All popular networks" + }, + "allTimeHigh": { + "message": "All-time high" + }, + "allTimeLow": { + "message": "All-time low" + }, + "allTokens": { + "message": "All tokens" + }, + "allowAddRpc": { + "message": "Add RPC" + }, + "allowAddRpcDescription": { + "message": "Allow the site to add a RPC URL for $1.\n\nSet your preferred RPC anytime by going to Networks in Settings", + "description": "$1 is the chain name" + }, + "allowNotifications": { + "message": "Allow notifications" + }, + "amount": { + "message": "Amount" + }, + "amountReceived": { + "message": "Amount received" + }, + "amountSent": { + "message": "Amount sent" + }, + "andForListItems": { + "message": "$1, and $2", + "description": "$1 is the first item, $2 is the last item in a list of items. Used in Snap Install Warning modal." + }, + "andForTwoItems": { + "message": "$1 and $2", + "description": "$1 is the first item, $2 is the second item. Used in Snap Install Warning modal." + }, + "annual": { + "message": "Annual" + }, + "appDescription": { + "message": "The world's most trusted crypto wallet", + "description": "The description of the application" + }, + "appName": { + "message": "MetaMask", + "description": "The name of the application" + }, + "appNameBeta": { + "message": "MetaMask Beta", + "description": "The name of the application (Beta)" + }, + "appNameFlask": { + "message": "MetaMask Flask", + "description": "The name of the application (Flask)" + }, + "apply": { + "message": "Apply" + }, + "approve": { + "message": "Approve spend limit" + }, + "approveButtonText": { + "message": "Approve" + }, + "approveIncreaseAllowance": { + "message": "Increase $1 spending cap", + "description": "The token symbol that is being approved" + }, + "approveSpendingCap": { + "message": "Approve $1 spending cap", + "description": "The token symbol that is being approved" + }, + "approveToken": { + "message": "Approve $1", + "description": "Used in the transaction details summary to describe an approval transaction. $1 is the symbol of the token being approved." + }, + "approved": { + "message": "Approved" + }, + "approvedOn": { + "message": "Approved on $1", + "description": "$1 is the approval date for a permission" + }, + "approvedOnForAccounts": { + "message": "Approved on $1 for $2", + "description": "$1 is the approval date for a permission. $2 is the AvatarGroup component displaying account images." + }, + "areYouSure": { + "message": "Are you sure?" + }, + "asset": { + "message": "Asset" + }, + "assetChartNoHistoricalPrices": { + "message": "We could not fetch any historical data" + }, + "assetOptions": { + "message": "Asset options" + }, + "assets": { + "message": "Assets" + }, + "assetsDescription": { + "message": "Autodetect tokens in your wallet, display NFTs, and get batched account balance updates" + }, + "asterdexReferralConfirmText": { + "message": "Yes, get 4% back", + "description": "Primary button label on the AsterDEX referral confirmation screen" + }, + "asterdexReferralSubtitle": { + "message": "Get 4% back on trades with a MetaMask referral code.", + "description": "The subtitle of the AsterDEX referral confirmation screen" + }, + "asterdexReferralSubtitle2": { + "message": "Get 4% back on trades with a MetaMask referral code. This discount applies to all future trades, as per AsterDEX's $1. MetaMask earns a fee.", + "description": "Subtitle on the AsterDEX referral confirmation screen. $1 is a link to the partner's terms." + }, + "asterdexReferralTitle": { + "message": "Get 4% back on AsterDEX", + "description": "Title of the AsterDEX referral confirmation screen" + }, + "attemptToCancelSwapForFree": { + "message": "Attempt to cancel swap for free" + }, + "attributes": { + "message": "Attributes" + }, + "attributions": { + "message": "Attributions" + }, + "authorizedPermissions": { + "message": "You have authorized the following permissions" + }, + "autoDetectTokens": { + "message": "Autodetect tokens" + }, + "autoDetectTokensDescriptionV2": { + "message": "Displays new tokens sent to your wallet." + }, + "autoLock": { + "message": "Auto lock" + }, + "autoLockAfter15Seconds": { + "message": "After 15 seconds" + }, + "autoLockAfter1Minute": { + "message": "After 1 minute" + }, + "autoLockAfter30Seconds": { + "message": "After 30 seconds" + }, + "autoLockAfter5Minutes": { + "message": "After 5 minutes" + }, + "autoLockAfterMinutes": { + "message": "After $1 minutes" + }, + "autoLockNever": { + "message": "Never" + }, + "autoLockTimeLimit": { + "message": "Auto-lock timer (minutes)" + }, + "available": { + "message": "available" + }, + "average": { + "message": "Average" + }, + "back": { + "message": "Back" + }, + "backToHome": { + "message": "Back to home" + }, + "backUpIncomplete": { + "message": "Back up incomplete" + }, + "backup": { + "message": "Backup" + }, + "backupAndSync": { + "message": "Backup and sync" + }, + "backupAndSyncBasicFunctionalityNameMention": { + "message": "basic functionality" + }, + "backupAndSyncEnable": { + "message": "Turn on backup and sync" + }, + "backupAndSyncEnableConfirmation": { + "message": "When you turn on backup and sync, you’re also turning on $1. Do you want to continue?", + "description": "$1 is backupAndSyncBasicFunctionalityNameMention in bold." + }, + "backupAndSyncEnableDescription": { + "message": "Backup and sync lets us store encrypted data for your custom settings and features. This keeps your MetaMask experience the same across devices and restores settings and features if you ever need to reinstall MetaMask. This doesn’t back up your Secret Recovery Phrase. $1.", + "description": "$1 is link to the backup and sync privacy policy." + }, + "backupAndSyncEnableDescriptionUpdatePreferences": { + "message": "You can update your preferences at any time in $1", + "description": "$1 is a bolded text that highlights the path to the settings page." + }, + "backupAndSyncEnableDescriptionUpdatePreferencesPath": { + "message": "Settings > Backup and sync." + }, + "backupAndSyncFeatureAccounts": { + "message": "Accounts" + }, + "backupAndSyncFeatureContacts": { + "message": "Contacts" + }, + "backupAndSyncManageWhatYouSync": { + "message": "Manage what you sync" + }, + "backupAndSyncManageWhatYouSyncDescription": { + "message": "Turn on what’s synced between your devices." + }, + "backupAndSyncPrivacyLink": { + "message": "Learn how we protect your privacy" + }, + "backupApprovalInfo": { + "message": "This secret code is required to recover your wallet in case you lose your device, forget your password, have to re-install MetaMask, or want to access your wallet on another device." + }, + "backupApprovalNotice": { + "message": "Back up your Secret Recovery Phrase to keep your wallet and funds secure." + }, + "backupKeyringSnapReminder": { + "message": "Be sure you can access any accounts created by this Snap on your own before removing it" + }, + "backupNow": { + "message": "Back up now" + }, + "balance": { + "message": "Balance" + }, + "balanceOutdated": { + "message": "Balance may be outdated" + }, + "baseFee": { + "message": "Base fee" + }, + "basic": { + "message": "Basic" + }, + "basicConfigurationDescription": { + "message": "MetaMask offers basic features like token details and gas settings through internet services. When you use internet services, your IP address is shared, in this case with MetaMask. This is just like when you visit any website. MetaMask uses this data temporarily and never sells your data. You can use a VPN or turn off these services, but it may affect your MetaMask experience. To learn more read our $1.", + "description": "$1 is to be replaced by the message for privacyMsg, and will link to https://consensys.io/privacy-policy" + }, + "basicConfigurationDescriptionV2": { + "message": "Includes basic features like token details and gas settings. Keep this feature on for the best experience. Read our $1 to learn more.", + "description": "$1 is to be replaced by the message for privacyMsg, and will link to https://consensys.io/privacy-policy" + }, + "basicConfigurationLabel": { + "message": "Basic functionality" + }, + "basicConfigurationModalCheckbox": { + "message": "I understand and want to continue" + }, + "basicConfigurationModalDisclaimerOffPart1": { + "message": "This means you won't fully optimize your time on MetaMask. Basic features (like token details, optimal gas settings, and others) won't be available to you." + }, + "basicConfigurationModalDisclaimerOffPart2": { + "message": "Turning this off also disables some features within privacy, backup and sync, and notifications." + }, + "basicConfigurationModalDisclaimerOn": { + "message": "To optimize your time on MetaMask, you’ll need to turn on this feature. Basic functions (like token details, optimal gas settings, and others) are important to the web3 experience." + }, + "basicConfigurationModalHeadingOff": { + "message": "Turn off basic functionality" + }, + "basicConfigurationModalHeadingOn": { + "message": "Turn on basic functionality" + }, + "basicFunctionalityRequired_description": { + "message": "This feature isn't available while basic functionality is turned off. Use the toggle below to turn it on." + }, + "basicFunctionalityRequired_goToHome": { + "message": "Go to the home page" + }, + "basicFunctionalityRequired_openCreateSnapAccountPage": { + "message": "Open the Create Account page" + }, + "basicFunctionalityRequired_openDefiPage": { + "message": "Open the DeFi page" + }, + "basicFunctionalityRequired_openMusdConversionPage": { + "message": "Open the mUSD Conversion page" + }, + "basicFunctionalityRequired_openNotificationsPage": { + "message": "Open the Notifications page" + }, + "basicFunctionalityRequired_openPerpsPage": { + "message": "Open the Perps page" + }, + "basicFunctionalityRequired_openRewardsPage": { + "message": "Open the Rewards page" + }, + "basicFunctionalityRequired_openSnapsPage": { + "message": "Open the Snaps page" + }, + "basicFunctionalityRequired_openSwapsPage": { + "message": "Open the Swap page" + }, + "basicFunctionalityRequired_openTransactionShieldPage": { + "message": "Open the Transaction Shield page" + }, + "basicFunctionalityRequired_reviewInSettings": { + "message": "Review in settings" + }, + "basicFunctionalityRequired_title": { + "message": "Basic functionality is off" + }, + "basicFunctionalityRequired_toggleLabel": { + "message": "Basic functionality" + }, + "bestQuote": { + "message": "Best quote" + }, + "bestQuoteTooltip": { + "message": "The best quote we found from providers, including provider fees and a 0.25% MetaMask fee. The minimum you'll receive if price changes is $1." + }, + "beta": { + "message": "Beta" + }, + "betaMetamaskVersion": { + "message": "MetaMask Beta Version" + }, + "betaTerms": { + "message": "Beta Terms of Use" + }, + "blockExplorerAccountAction": { + "message": "Account", + "description": "This is used with viewOnEtherscan and viewInExplorer e.g View Account in Explorer" + }, + "blockExplorerAssetAction": { + "message": "Asset", + "description": "This is used with viewOnEtherscan and viewInExplorer e.g View Asset in Explorer" + }, + "blockExplorerSwapAction": { + "message": "Swap", + "description": "This is used with viewOnEtherscan e.g View Swap on Etherscan" + }, + "blockExplorerUrl": { + "message": "Block explorer URL" + }, + "blockExplorerUrlDefinition": { + "message": "The URL used as the block explorer for this network." + }, + "blockExplorerView": { + "message": "View account at $1", + "description": "$1 replaced by URL for custom block explorer" + }, + "blockaid": { + "message": "Blockaid" + }, + "blockaidAlertDescriptionBlur": { + "message": "If you continue, all the assets you’ve listed on Blur could be at risk." + }, + "blockaidAlertDescriptionMalicious": { + "message": "You’re interacting with a malicious site. If you continue, you will lose your assets." + }, + "blockaidAlertDescriptionOpenSea": { + "message": "If you continue, all the assets you’ve listed on OpenSea could be at risk." + }, + "blockaidAlertDescriptionOthers": { + "message": "If you confirm this request, you could lose your assets. We recommend that you cancel this request." + }, + "blockaidAlertDescriptionTokenTransfer": { + "message": "You’re sending your assets to a scammer. If you continue, you’ll lose those assets." + }, + "blockaidAlertDescriptionWithdraw": { + "message": "If you confirm this request, you’re allowing a scammer to withdraw and spend your assets. You won’t get them back." + }, + "blockaidDescriptionApproveFarming": { + "message": "If you approve this request, a third party known for scams might take all your assets." + }, + "blockaidDescriptionBlurFarming": { + "message": "If you approve this request, someone can steal your assets listed on Blur." + }, + "blockaidDescriptionErrored": { + "message": "Because of an error, we couldn't check for security alerts. Only continue if you trust every address involved." + }, + "blockaidDescriptionMaliciousDomain": { + "message": "You're interacting with a malicious domain. If you approve this request, you might lose your assets." + }, + "blockaidDescriptionMightLoseAssets": { + "message": "If you approve this request, you might lose your assets." + }, + "blockaidDescriptionSeaportFarming": { + "message": "If you approve this request, someone can steal your assets listed on OpenSea." + }, + "blockaidDescriptionTransferFarming": { + "message": "If you approve this request, a third party known for scams will take all your assets." + }, + "blockaidTitleDeceptive": { + "message": "This is a deceptive request" + }, + "blockaidTitleMayNotBeSafe": { + "message": "Be careful" + }, + "blockaidTitleSuspicious": { + "message": "This is a suspicious request" + }, + "blockies": { + "message": "Blockies" + }, + "borrowed": { + "message": "Borrowed" + }, + "boughtFor": { + "message": "Bought for" + }, + "bridge": { + "message": "Bridge" + }, + "bridgeAllowSwappingOf": { + "message": "Allow exact access to $1 $2 on $3 for bridging", + "description": "Shows a user that they need to allow a token for swapping on their hardware wallet" + }, + "bridgeApproval": { + "message": "Approve $1 for bridge", + "description": "Used in the transaction display list to describe a transaction that is an approve call on a token that is to be bridged. $1 is the symbol of a token that has been approved." + }, + "bridgeApprovalWarning": { + "message": "You're allowing access to $1 $2. The contract won't access any additional funds." + }, + "bridgeApprovalWarningForHardware": { + "message": "You'll need to allow access to $1 $2 for bridging, and then approve bridging to $3. This will require two separate confirmations." + }, + "bridgeBlockExplorerLinkCopied": { + "message": "Block explorer link copied" + }, + "bridgeConfirmTwoTransactions": { + "message": "You'll need to confirm 2 transactions on your hardware wallet:" + }, + "bridgeCreateSolanaAccount": { + "message": "Create Solana account" + }, + "bridgeCreateSolanaAccountDescription": { + "message": "To swap to the Solana network, you need an account and receiving address." + }, + "bridgeCreateSolanaAccountTitle": { + "message": "You'll need a Solana account first." + }, + "bridgeDetailsTitle": { + "message": "Bridge details", + "description": "Title for the modal showing details about a bridge transaction." + }, + "bridgeEnterAmount": { + "message": "Select amount" + }, + "bridgeExplorerLinkViewOn": { + "message": "View on $1" + }, + "bridgeFee": { + "message": "Bridge fee" + }, + "bridgeFromTo": { + "message": "Bridge $1 $2 to $3", + "description": "Tells a user that they need to confirm on their hardware wallet a bridge. $1 is amount of source token, $2 is the source network, and $3 is the destination network" + }, + "bridgeGasFeesSplit": { + "message": "Any network fee quoted on the previous screen includes both transactions and will be split." + }, + "bridgeGetNewQuote": { + "message": "Get new quote" + }, + "bridgeLowestCost": { + "message": "Lowest cost" + }, + "bridgeMalicious": { + "message": "Malicious" + }, + "bridgeMaliciousTokenTitle": { + "message": "Malicious token" + }, + "bridgeMarketClosedAction": { + "message": "Market closed" + }, + "bridgeMarketClosedDescription": { + "message": "This stock token is currently outside trading hours. Try again when the market reopens." + }, + "bridgeMarketClosedModalDescription": { + "message": "The market that backs this token is currently closed. Tokens can be transferred on-chain at any time." + }, + "bridgeMarketClosedModalLearnMore": { + "message": "Learn more" + }, + "bridgeMarketClosedModalTitle": { + "message": "Market is closed" + }, + "bridgeMarketClosedTitle": { + "message": "Market closed" + }, + "bridgeNoMMFee": { + "message": "No MM fee" + }, + "bridgeNoPriceInfoTitle": { + "message": "No price information" + }, + "bridgePoints": { + "message": "Est. points", + "description": "Label for estimated points that can be earned from a bridge or swap" + }, + "bridgePoints_couldntLoad": { + "message": "Couldn't load", + "description": "Text shown in rewards badge when points couldn't be loaded" + }, + "bridgePoints_error": { + "message": "Couldn't load points", + "description": "Tooltip title when there's an error fetching estimated points" + }, + "bridgePoints_error_content": { + "message": "Don't worry, you're still earning points. They'll show up in your account soon, or you can check in the Rewards tab on MetaMask Mobile.", + "description": "Error message when points estimation fails" + }, + "bridgePoints_tooltip": { + "message": "Points", + "description": "Tooltip title for points" + }, + "bridgePoints_tooltip_content_1": { + "message": "Points are how you earn MetaMask Rewards for completing transactions, like when you swap, bridge, or trade perps.", + "description": "First part of tooltip content explaining rewards points" + }, + "bridgePoints_tooltip_content_2": { + "message": "Keep in mind this value is an estimate and will be finalized once the transaction is complete. Points can take up to 1 hour to be confirmed in your Rewards balance.", + "description": "Second part of tooltip content explaining how points are calculated" + }, + "bridgePriceDataUnavailableError": { + "message": "We couldn't get price information for this token. Make sure the amount received is what you expect before continuing." + }, + "bridgePriceImpact": { + "message": "Price impact" + }, + "bridgePriceImpactFiatAlert": { + "message": "You will lose $1 on this trade" + }, + "bridgePriceImpactHigh": { + "message": "High price impact" + }, + "bridgePriceImpactHighDescription": { + "message": "Because of your trade size and available liquidity, you'll get about $1 less than the market price. This is already factored into your quote." + }, + "bridgePriceImpactNormalDescription": { + "message": "This is how your trade changes the market price of a token. It depends on the trade size, availale liquidity, and provider fees. MetaMask doesn't control price impact." + }, + "bridgePriceImpactTooltipTitle": { + "message": "Price impact" + }, + "bridgePriceImpactVeryHigh": { + "message": "Very high price impact" + }, + "bridgePriceImpactVeryHighDescription": { + "message": "You'll lose approximately $1 of your token's market price on this swap. Try a smaller trade or a more liquid route to improve your rate." + }, + "bridgePriceImpactWarningAriaLabel": { + "message": "Read price impact warning details" + }, + "bridgePriceImpactWarningTitle": { + "message": "Price impact warning" + }, + "bridgeQuoteStreamCompleteAmountTooHigh": { + "message": "No quotes available. Try a smaller amount." + }, + "bridgeQuoteStreamCompleteAmountTooLow": { + "message": "No quotes available. Try a larger amount." + }, + "bridgeQuoteStreamCompleteRetry": { + "message": "Unable to get a quote right now. Try again." + }, + "bridgeQuoteStreamCompleteRwaGeoRestricted": { + "message": "This swap isn't available in your region." + }, + "bridgeQuoteStreamCompleteRwaMarketUnavailable": { + "message": "The market for this asset is currently unavailable. Try again later." + }, + "bridgeQuoteStreamCompleteRwaNativeTokenUnsupported": { + "message": "Swaps between this token and real-world assets aren't supported yet. Try using a different token." + }, + "bridgeQuoteStreamCompleteSlippageTooHigh": { + "message": "Slippage is too high. Try lowering your slippage setting." + }, + "bridgeQuoteStreamCompleteSlippageTooLow": { + "message": "Slippage is too low. Try increasing your slippage setting." + }, + "bridgeQuoteStreamCompleteTokenNotSupported": { + "message": "This token isn't supported. Try using a different token." + }, + "bridgeQuotesSortedByCost": { + "message": "Quotes are sorted by the estimated total cost, which includes the exchange rate and network fee." + }, + "bridgeReceive": { + "message": "Receive $1 on $2", + "description": "Summary line showing token received on destination chain. $1 is the token symbol, $2 is the network name." + }, + "bridgeReceiveLoading": { + "message": "Receiving on destination chain" + }, + "bridgeSecurityDataKnownAirdrop": { + "message": "Suspicious airdrop" + }, + "bridgeSecurityDataKnownConcentratedSupply": { + "message": "Concentrated supply" + }, + "bridgeSecurityDataKnownDynamicAnalysis": { + "message": "Suspicious behavior" + }, + "bridgeSecurityDataKnownFakeTradeMakerCount": { + "message": "Inflated trader count" + }, + "bridgeSecurityDataKnownFakeVolume": { + "message": "Fake volume" + }, + "bridgeSecurityDataKnownHeavilySniped": { + "message": "Heavy bot activity" + }, + "bridgeSecurityDataKnownHiddenSupplyByKeyHolder": { + "message": "Undisclosed supply" + }, + "bridgeSecurityDataKnownHighBuyFee": { + "message": "High buy fee" + }, + "bridgeSecurityDataKnownHighSellFee": { + "message": "High sell fee" + }, + "bridgeSecurityDataKnownHighTransferFee": { + "message": "High transfer fee" + }, + "bridgeSecurityDataKnownHoneypot": { + "message": "Honeypot risk" + }, + "bridgeSecurityDataKnownImpersonator": { + "message": "Impersonator" + }, + "bridgeSecurityDataKnownImpersonatorAsset": { + "message": "Impersonates a sensitive asset" + }, + "bridgeSecurityDataKnownImpersonatorHigh": { + "message": "Likely impersonator" + }, + "bridgeSecurityDataKnownImpersonatorMedium": { + "message": "Possible impersonator" + }, + "bridgeSecurityDataKnownInappropriateContent": { + "message": "Inappropriate content" + }, + "bridgeSecurityDataKnownInorganicVoume": { + "message": "Artificial volume" + }, + "bridgeSecurityDataKnownInsufficientLiquidity": { + "message": "Low locked liquidity" + }, + "bridgeSecurityDataKnownLowReputation": { + "message": "Creator has low reputation" + }, + "bridgeSecurityDataKnownMalicious": { + "message": "Known malicious" + }, + "bridgeSecurityDataKnownMetadata": { + "message": "Suspicious metadata" + }, + "bridgeSecurityDataKnownPostDump": { + "message": "Possible price manipulation" + }, + "bridgeSecurityDataKnownRugpull": { + "message": "Rugpull risk" + }, + "bridgeSecurityDataKnownSanctionedCreator": { + "message": "Sanctioned creator" + }, + "bridgeSecurityDataKnownSimilarMaliciousContract": { + "message": "Resembles malicious contract" + }, + "bridgeSecurityDataKnownSnipeMint": { + "message": "Bot activity at launch" + }, + "bridgeSecurityDataKnownSpamText": { + "message": "Spam text" + }, + "bridgeSecurityDataKnownStaticCodeSign": { + "message": "Suspicious code" + }, + "bridgeSecurityDataKnownTokenBackdoor": { + "message": "Token backdoor" + }, + "bridgeSecurityDataKnownUnsellable": { + "message": "Unsellable token" + }, + "bridgeSecurityDataKnownUnstablePrice": { + "message": "Unstable price" + }, + "bridgeSecurityDataKnownWashTrading": { + "message": "Wash trading" + }, + "bridgeSelectDestinationAccount": { + "message": "Select a destination account" + }, + "bridgeSelectDifferentQuote": { + "message": "Please select a different quote." + }, + "bridgeSelectNetwork": { + "message": "Select network" + }, + "bridgeSelectQuote": { + "message": "Select quote" + }, + "bridgeSelectTokenAmountAndAccount": { + "message": "Select token, amount and destination account" + }, + "bridgeSelectTokenAndAmount": { + "message": "Select token and amount" + }, + "bridgeSend": { + "message": "Send $1 from $2", + "description": "Summary line showing token sent from source chain. $1 is the token symbol, $2 is the network name." + }, + "bridgeSendLoading": { + "message": "Sending from source chain" + }, + "bridgeSolanaAccountCreated": { + "message": "Solana account created" + }, + "bridgeStatusComplete": { + "message": "Complete", + "description": "Status text indicating a bridge transaction has successfully completed." + }, + "bridgeStatusFailed": { + "message": "Failed", + "description": "Status text indicating a bridge transaction has failed." + }, + "bridgeStatusInProgress": { + "message": "In progress", + "description": "Status text indicating a bridge transaction is currently processing." + }, + "bridgeStepActionBridgeComplete": { + "message": "$1 received on $2", + "description": "$1 is the amount of the destination asset, $2 is the name of the destination network" + }, + "bridgeStepActionBridgePending": { + "message": "Receiving $1 on $2", + "description": "$1 is the amount of the destination asset, $2 is the name of the destination network" + }, + "bridgeStepActionSwapComplete": { + "message": "Swapped $1 for $2", + "description": "$1 is the amount of the source asset, $2 is the amount of the destination asset" + }, + "bridgeStepActionSwapPending": { + "message": "Swapping $1 for $2", + "description": "$1 is the amount of the source asset, $2 is the amount of the destination asset" + }, + "bridgeSuspicious": { + "message": "Suspicious" + }, + "bridgeSuspiciousTokenTitle": { + "message": "Suspicious token" + }, + "bridgeTo": { + "message": "Bridge to" + }, + "bridgeTokenIsMaliciousBanner": { + "message": "$1 is a malicious token." + }, + "bridgeTokenIsMaliciousModalDescription": { + "message": "$1 is flagged as malicious. It's likely to steal funds from anyone who interacts with it." + }, + "bridgeTokenIsSuspiciousBanner": { + "message": "$1 is a suspicious token." + }, + "bridgeTokenIsSuspiciousModalDescription": { + "message": "$1 is flagged as suspicious. Take a look at the risks before you continue." + }, + "bridgeTokenNotFound": { + "message": "No tokens match \"$1\"" + }, + "bridgeTransactionProgress": { + "message": "Transaction $1 of 2" + }, + "bridgeTxDetailsBridged": { + "message": "Bridged" + }, + "bridgeTxDetailsBridging": { + "message": "Bridging" + }, + "bridgeTxDetailsDelayedDescription": { + "message": "Reach out to" + }, + "bridgeTxDetailsDelayedDescriptionSupport": { + "message": "MetaMask Support" + }, + "bridgeTxDetailsDelayedTitle": { + "message": "Has it been longer than 3 hours?" + }, + "bridgeTxDetailsNonce": { + "message": "Nonce" + }, + "bridgeTxDetailsStatus": { + "message": "Status" + }, + "bridgeTxDetailsSwapped": { + "message": "Swapped" + }, + "bridgeTxDetailsSwapping": { + "message": "Swapping" + }, + "bridgeTxDetailsTimestamp": { + "message": "Time stamp" + }, + "bridgeTxDetailsTimestampValue": { + "message": "$1 at $2", + "description": "$1 is the date, $2 is the time" + }, + "bridgeTxDetailsTokenAmountOnChain": { + "message": "$1 $2 on", + "description": "$1 is the amount of the token, $2 is the ticker symbol of the token" + }, + "bridgeTxDetailsTotalGasFee": { + "message": "Total gas fee" + }, + "bridgeTxDetailsYouReceived": { + "message": "You received" + }, + "bridgeTxDetailsYouSent": { + "message": "You sent" + }, + "bridgeUseMaxAmountAllowedWithReserve": { + "message": "Use max allowed" + }, + "bridgeValidationInsufficientGasMessage": { + "message": "You don't have enough $1 to pay the gas fee for this bridge. Enter a smaller amount or buy more $1." + }, + "bridgeValidationInsufficientGasTitle": { + "message": "More $1 needed for gas" + }, + "bridgeValidationInsufficientNativeReserveMessage": { + "message": "This specific network requires to maintain a reserve of $1 $3 in your account. With your current balance you can use a maximum of $2 $3", + "description": "$1 is the minimum native reserve amount for the network, $2 is the spendable balance, $3 the ticker symbol of the token" + }, + "bridgeValidationInsufficientNativeReserveTitle": { + "message": "Minimum $1 reserve balance is required", + "description": "$1 is the ticker symbol of the token" + }, + "bridged": { + "message": "Bridged" + }, + "bridgedToChain": { + "message": "Bridged to $1" + }, + "bridging": { + "message": "Bridging" + }, + "browserNotSupported": { + "message": "Your browser is not supported..." + }, + "busy": { + "message": "Busy" + }, + "buy": { + "message": "Buy" + }, + "buyMoreAsset": { + "message": "Buy more $1", + "description": "$1 is the ticker symbol of a an asset the user is being prompted to purchase" + }, + "buyNow": { + "message": "Buy now" + }, + "buyTabOpenedToastDescription": { + "message": "We've opened a new tab for buying.", + "description": "Toast description shown after opening the buy flow in a new tab" + }, + "buyTabOpenedToastText": { + "message": "Continue in your browser tab", + "description": "Toast title shown after opening the buy flow in a new tab" + }, + "bytes": { + "message": "Bytes" + }, + "canToggleInSettings": { + "message": "You can re-enable this notification in Settings > Alerts." + }, + "cancel": { + "message": "Cancel" + }, + "cancelSpeedupAlreadyConfirmedDescription": { + "message": "We were unable to update your transaction because it was already confirmed on the blockchain." + }, + "cancelSpeedupFailedDescription": { + "message": "Something went wrong while updating your transaction." + }, + "cancelTransactionDescription": { + "message": "This transaction will be canceled and this network fee will replace the original." + }, + "cancelTransactionFailed": { + "message": "Cancel transaction failed" + }, + "cancelTransactionTitle": { + "message": "Cancel transaction" + }, + "cancelled": { + "message": "Cancelled" + }, + "carouselAllCaughtUp": { + "message": "You're all caught up!", + "description": "Message shown in carousel when all promotional slides have been dismissed" + }, + "chainId": { + "message": "Chain ID" + }, + "chainIdDefinition": { + "message": "The chain ID used to sign transactions for this network." + }, + "chainIdExistsErrorMsg": { + "message": "This Chain ID is currently used by the $1 network." + }, + "chainListReturnedDifferentTickerSymbol": { + "message": "This token symbol doesn't match the network name or chain ID entered. Many popular tokens use similar symbols, which scammers can use to trick you into sending them a more valuable token in return. Verify everything before you continue." + }, + "changeInSettings": { + "message": "Change in Settings" + }, + "changePasswordDetailsSocial": { + "message": "Losing this password means losing wallet access on all devices." + }, + "changePasswordLoading": { + "message": "Changing password..." + }, + "changePasswordLoadingNote": { + "message": "This shouldn't take long" + }, + "changePasswordWarning": { + "message": "Are you sure?" + }, + "changePasswordWarningDescription": { + "message": "Changing your password here will lock MetaMask on other devices you’re using. You’ll need to log in again with your new password." + }, + "checkNetworkConnectivity": { + "message": "Check network connectivity." + }, + "checkNetworkConnectivityOr": { + "message": "Check network connectivity, or $1.", + "description": "$1 is a link to update the network." + }, + "chromeRequiredForHardwareWallets": { + "message": "You need to use MetaMask on Google Chrome in order to connect to your Hardware Wallet." + }, + "circulatingSupply": { + "message": "Circulating supply" + }, + "clear": { + "message": "Clear" + }, + "clearActivity": { + "message": "Clear activity and nonce data" + }, + "clearActivityDescription": { + "message": "Resets the account's nonce and erases data from the activity tab in your wallet. Only the current account and network will be affected. Your balances and incoming transactions won't change." + }, + "clearFilters": { + "message": "Clear filters" + }, + "click": { + "message": "Click" + }, + "clickToConnectLedgerViaWebHID": { + "message": "Click here to connect your Ledger via WebHID", + "description": "Text that can be clicked to open a browser popup for connecting the ledger device via webhid" + }, + "close": { + "message": "Close" + }, + "closeSlide": { + "message": "Close $1", + "description": "Aria label for close button on carousel slides. $1 is the slide title" + }, + "closeWindowAnytime": { + "message": "You may close this window anytime." + }, + "coingecko": { + "message": "CoinGecko" + }, + "collectionName": { + "message": "Collection name" + }, + "comboNoOptions": { + "message": "No options found", + "description": "Default text shown in the combo field dropdown if no options." + }, + "communityContributedLanguagesSectionTitle": { + "message": "Community contributed", + "description": "Section heading on the language settings screen for locales maintained by community contributors." + }, + "completed": { + "message": "Completed" + }, + "concentratedSupplyDistributionDescription": { + "message": "The majority of the token's supply is held by the top token holders, posing a risk of centralized price manipulation" + }, + "concentratedSupplyDistributionTitle": { + "message": "Concentrated supply distribution" + }, + "configureSnapPopupDescription": { + "message": "You're now leaving MetaMask to configure this snap." + }, + "configureSnapPopupInstallDescription": { + "message": "You're now leaving MetaMask to install this snap." + }, + "configureSnapPopupInstallTitle": { + "message": "Install snap" + }, + "configureSnapPopupLink": { + "message": "Click this link to continue:" + }, + "configureSnapPopupTitle": { + "message": "Configure snap" + }, + "confirm": { + "message": "Confirm" + }, + "confirmAccountTypeSmartContract": { + "message": "Smart account" + }, + "confirmAccountTypeStandard": { + "message": "Standard account" + }, + "confirmAlertModalAcknowledgeMultiple": { + "message": "I have acknowledged the alerts and still want to proceed" + }, + "confirmAlertModalAcknowledgeSingle": { + "message": "I have acknowledged the alert and still want to proceed" + }, + "confirmFieldAllowance": { + "message": "Allowance" + }, + "confirmFieldAvailablePerDay": { + "message": "Available per day" + }, + "confirmFieldExpiration": { + "message": "Expiration" + }, + "confirmFieldFrequency": { + "message": "Frequency" + }, + "confirmFieldNeverExpires": { + "message": "Never expires" + }, + "confirmFieldPaymaster": { + "message": "Fee paid by" + }, + "confirmFieldPeriodDurationBiWeekly": { + "message": "Bi-Weekly" + }, + "confirmFieldPeriodDurationDaily": { + "message": "Daily" + }, + "confirmFieldPeriodDurationHourly": { + "message": "Hourly" + }, + "confirmFieldPeriodDurationMonthly": { + "message": "Monthly" + }, + "confirmFieldPeriodDurationSeconds": { + "message": "$1 seconds", + "description": "$1 is the number of seconds in the permission period (shown when the period is not a standard hour/day/week/etc.)" + }, + "confirmFieldPeriodDurationWeekly": { + "message": "Weekly" + }, + "confirmFieldPeriodDurationYearly": { + "message": "Yearly" + }, + "confirmFieldTooltipJustification": { + "message": "Justification for the request provided by the website" + }, + "confirmFieldTooltipPaymaster": { + "message": "The fee for this transaction will be paid by the paymaster smart contract." + }, + "confirmFieldTotalExposure": { + "message": "Total exposure" + }, + "confirmGasFeeTokenBalance": { + "message": "Bal:" + }, + "confirmGasFeeTokenInsufficientBalance": { + "message": "Insufficient funds" + }, + "confirmGasFeeTokenMetaMaskFee": { + "message": "Includes $1 fee" + }, + "confirmGasFeeTokenModalNativeToggleMetaMask": { + "message": "MetaMask is supplementing the balance to complete this transaction." + }, + "confirmGasFeeTokenModalNativeToggleWallet": { + "message": "Pay for network fee using the balance in your wallet." + }, + "confirmGasFeeTokenModalPayETH": { + "message": "Pay with ETH" + }, + "confirmGasFeeTokenModalPayToken": { + "message": "Pay with other tokens" + }, + "confirmGasFeeTokenModalTitle": { + "message": "Select a token" + }, + "confirmGasFeeTokenToast": { + "message": "You're paying this network fee with $1" + }, + "confirmGasFeeTokenTooltip": { + "message": "This is paid to the network to process your transaction. It includes a $1 MetaMask fee for non-ETH tokens or pre-funded ETH." + }, + "confirmInfoAccountNow": { + "message": "Now" + }, + "confirmInfoSwitchingTo": { + "message": "Switching to" + }, + "confirmNestedTransactionTitle": { + "message": "Transaction $1" + }, + "confirmPassword": { + "message": "Confirm password" + }, + "confirmRecoveryPhrase": { + "message": "Confirm Secret Recovery Phrase" + }, + "confirmRecoveryPhraseDetails": { + "message": "Select the missing words in the correct order." + }, + "confirmRecoveryPhraseTitle": { + "message": "Confirm your Secret Recovery Phrase" + }, + "confirmRecoveryPhraseTitleSettings": { + "message": "Confirm Secret Recovery Phrase" + }, + "confirmSimulationApprove": { + "message": "You approve" + }, + "confirmSrpErrorDescription": { + "message": "Double-check your Secret Recovery Phrase and try again." + }, + "confirmSrpErrorTitle": { + "message": "Not quite right" + }, + "confirmSrpSuccessDescription": { + "message": "That’s right! And remember: never share this phrase with anyone, ever." + }, + "confirmSrpSuccessTitle": { + "message": "Perfect" + }, + "confirmTitleAccountTypeSwitch": { + "message": "Account update" + }, + "confirmTitleApproveTransactionNFT": { + "message": "Withdrawal request" + }, + "confirmTitleDeployContract": { + "message": "Deploy a contract" + }, + "confirmTitleDescApproveTransaction": { + "message": "This site wants permission to withdraw your NFTs" + }, + "confirmTitleDescDelegationRevoke": { + "message": "You're switching back to a standard account (EOA)." + }, + "confirmTitleDescDelegationUpgrade": { + "message": "You're switching to a smart account." + }, + "confirmTitleDescDeployContract": { + "message": "This site wants you to deploy a contract" + }, + "confirmTitleDescERC20ApproveTransaction": { + "message": "This site wants permission to withdraw your tokens" + }, + "confirmTitleDescERC20Revocation": { + "message": "This site wants permissions to revoke your ERC-20 token approvals." + }, + "confirmTitleDescPermission": { + "message": "This site wants permissions to spend your tokens." + }, + "confirmTitleDescPermitSignature": { + "message": "This site wants permission to spend your tokens." + }, + "confirmTitleDescSIWESignature": { + "message": "A site wants you to sign in to prove you own this account." + }, + "confirmTitleDescSign": { + "message": "Review request details before you confirm." + }, + "confirmTitlePermission": { + "message": "Permission request" + }, + "confirmTitlePermitTokens": { + "message": "Spending cap request" + }, + "confirmTitleRevokeApproveTransaction": { + "message": "Remove permission" + }, + "confirmTitleSIWESignature": { + "message": "Sign-in request" + }, + "confirmTitleSending": { + "message": "Sending" + }, + "confirmTitleSetApprovalForAllRevokeTransaction": { + "message": "Remove permission" + }, + "confirmTitleSignature": { + "message": "Signature request" + }, + "confirmTitleTransaction": { + "message": "Transaction request" + }, + "confirmationAlertDetails": { + "message": "To protect your assets, we suggest you reject the request." + }, + "confirmationAlertModalTitleDescription": { + "message": "Your assets may be at risk" + }, + "confirmed": { + "message": "Confirmed" + }, + "confusableCharacterTooltip": { + "message": "Make sure this address is correct. The letter $1 is confusable with $2." + }, + "confusableUnicode": { + "message": "'$1' is similar to '$2'." + }, + "confusableZeroWidthUnicode": { + "message": "Zero-width character found." + }, + "confusingEnsDomain": { + "message": "We have detected a confusable character in the ENS name. Check the ENS name to avoid a potential scam." + }, + "connect": { + "message": "Connect" + }, + "connectAHardwareWallet": { + "message": "Connect a hardware wallet" + }, + "connectAHardwareWalletDescription": { + "message": "Using USB or a QR Code" + }, + "connectAccounts": { + "message": "Connect accounts" + }, + "connectAnAccountHeader": { + "message": "Connect an account" + }, + "connectHardwareDevice": { + "message": "Connect $1", + "description": "$1 is the hardware wallet device name" + }, + "connectManually": { + "message": "Manually connect to current site" + }, + "connectMoreAccounts": { + "message": "Connect more accounts" + }, + "connectSnap": { + "message": "Connect $1", + "description": "$1 is the snap for which a connection is being requested." + }, + "connectWithMetaMask": { + "message": "Connect with MetaMask" + }, + "connectedAccountsDescriptionPlural": { + "message": "You have $1 accounts connected to this site.", + "description": "$1 is the number of accounts" + }, + "connectedAccountsDescriptionSingular": { + "message": "You have 1 account connected to this site." + }, + "connectedAccountsEmptyDescription": { + "message": "MetaMask is not connected to this site. To connect to a web3 site, find and click the connect button." + }, + "connectedAccountsListTooltip": { + "message": "$1 can see the account balance, address, activity, and suggest transactions to approve for connected accounts.", + "description": "$1 is the origin name" + }, + "connectedSites": { + "message": "Connected sites" + }, + "connectedSitesAndSnaps": { + "message": "Connected sites and Snaps" + }, + "connectedSitesDescription": { + "message": "$1 is connected to these sites. They can view your account address.", + "description": "$1 is the account name" + }, + "connectedSitesEmptyDescription": { + "message": "$1 is not connected to any sites.", + "description": "$1 is the account name" + }, + "connectedSnapAndNoAccountDescription": { + "message": "MetaMask is connected to this site, but no accounts are connected yet" + }, + "connectedSnaps": { + "message": "Connected Snaps" + }, + "connectedWithAccount": { + "message": "$1 accounts connected", + "description": "$1 represents account length" + }, + "connectedWithAccountName": { + "message": "Connected with $1", + "description": "$1 represents account name" + }, + "connectedWithNetwork": { + "message": "$1 networks connected", + "description": "$1 represents network length" + }, + "connectedWithNetworkName": { + "message": "Connected with $1", + "description": "$1 represents network name" + }, + "connecting": { + "message": "Connecting" + }, + "connectingTo": { + "message": "Connecting to $1" + }, + "connectingToGoerli": { + "message": "Connecting to Goerli test network" + }, + "connectingToLineaGoerli": { + "message": "Connecting to Linea Goerli test network" + }, + "connectingToLineaMainnet": { + "message": "Connecting to Linea" + }, + "connectingToLineaSepolia": { + "message": "Connecting to Linea Sepolia test network" + }, + "connectingToMainnet": { + "message": "Connecting to Ethereum Mainnet" + }, + "connectingToSepolia": { + "message": "Connecting to Sepolia test network" + }, + "connectionDescription": { + "message": "Connect this website with MetaMask" + }, + "connectionFailed": { + "message": "Connection failed" + }, + "connectionFailedDescription": { + "message": "Fetching of $1 failed, check your network and try again.", + "description": "$1 is the name of the snap being fetched." + }, + "connectionPopoverDescription": { + "message": "To connect to a site, select the connect button. MetaMask can only connect to web3 sites." + }, + "connectionRequest": { + "message": "Connection request" + }, + "connectionsRemovedModalDescription": { + "message": "Some connections (like hardware wallets and snaps) were removed due to inactivity on this device. You can re-add them anytime in Settings." + }, + "connectionsRemovedModalTitle": { + "message": "Connections removed" + }, + "contactDeleted": { + "message": "Contact deleted" + }, + "contactDetails": { + "message": "Contact details" + }, + "contactUpdated": { + "message": "Contact updated" + }, + "contactUs": { + "message": "Contact us" + }, + "contacts": { + "message": "Contacts" + }, + "contentFromSnap": { + "message": "Content from $1", + "description": "$1 represents the name of the snap" + }, + "continue": { + "message": "Continue" + }, + "contract": { + "message": "Contract" + }, + "contractAddress": { + "message": "Contract address" + }, + "contractAddressError": { + "message": "You are sending tokens to the token's contract address. This may result in the loss of these tokens." + }, + "contractDeployment": { + "message": "Contract deployment" + }, + "contractInteraction": { + "message": "Contract interaction" + }, + "convertTokenToNFTDescription": { + "message": "We've detected that this asset is an NFT. MetaMask now has full native support for NFTs. Would you like to remove it from your token list and add it as an NFT?" + }, + "convertTokenToNFTExistDescription": { + "message": "We’ve detected that this asset has been added as an NFT. Would you like to remove it from your token list?" + }, + "coolWallet": { + "message": "CoolWallet" + }, + "copiedExclamation": { + "message": "Copied." + }, + "copiedToClipboard": { + "message": "Copied to clipboard" + }, + "copyAddress": { + "message": "Copy address to clipboard" + }, + "copyAddressShort": { + "message": "Copy address" + }, + "copyPrivateKey": { + "message": "Copy private key" + }, + "copyToClipboard": { + "message": "Copy to clipboard" + }, + "copyTransactionId": { + "message": "Copy transaction ID" + }, + "correct": { + "message": "Correct" + }, + "create": { + "message": "Create" + }, + "createMultichainAccountButton": { + "message": "Add account", + "description": "Name of a button used on multichain account related pages for triggering the account creation process." + }, + "createMultichainAccountButtonLoading": { + "message": "Adding account...", + "description": "Name of a button in loading state, used on multichain account related pages for the account creation process." + }, + "createNewAccountHeader": { + "message": "Create a new account" + }, + "createPassword": { + "message": "MetaMask password" + }, + "createPasswordCreate": { + "message": "Create password" + }, + "createPasswordDetails": { + "message": "Unlocks MetaMask on this device only." + }, + "createPasswordDetailsSocial": { + "message": "Losing this password means losing wallet access on all devices, $1", + "description": "$1 is the text 'MetaMask can't reset it.'" + }, + "createPasswordDetailsSocialReset": { + "message": "MetaMask can't reset it." + }, + "createPasswordMarketing": { + "message": "Get product updates, tips, and news including by email. We may use your interactions to improve what we share." + }, + "createSnapAccountDescription": { + "message": "$1 wants to add a new account to MetaMask." + }, + "createSnapAccountTitle": { + "message": "Create account" + }, + "createSolanaAccount": { + "message": "Create Solana account" + }, + "creatorAddress": { + "message": "Creator address" + }, + "criticalErrorAttemptRecovery": { + "message": "Attempt recovery" + }, + "criticalErrorFooterContactSupport": { + "message": "If none of the above works, $1", + "description": "Footer on the critical error screen. $1 is the 'contact support' link." + }, + "criticalErrorReinstallMetamask": { + "message": "Reinstall MetaMask" + }, + "criticalErrorStillHavingIssues": { + "message": "Still having issues?" + }, + "cryptoCompare": { + "message": "CryptoCompare" + }, + "currencyRateCheckToggle": { + "message": "Show balance and token price checker" + }, + "currencyRateCheckToggleDescription": { + "message": "We use $1 and $2 APIs to display your balance and token price. $3", + "description": "$1 represents Coingecko, $2 represents CryptoCompare and $3 represents Privacy Policy" + }, + "currencySymbol": { + "message": "Currency symbol" + }, + "currencySymbolDefinition": { + "message": "The ticker symbol displayed for this network’s currency." + }, + "current": { + "message": "Current" + }, + "currentAccountNotConnected": { + "message": "Your current account is not connected" + }, + "currentEstimatedBaseFee": { + "message": "Current: $1 GWEI" + }, + "currentEstimatedPriorityFeeRange": { + "message": "Current: $1 - $2 GWEI" + }, + "currentExtension": { + "message": "Current extension page" + }, + "currentHistoricalBaseFeeRange": { + "message": "12 hr: $1 - $2 GWEI" + }, + "currentHistoricalPriorityFeeRange": { + "message": "12 hr: $1 - $2 GWEI" + }, + "currentNetwork": { + "message": "Current network", + "description": "Speicifies to token network filter to filter by current Network. Will render when network nickname is not available" + }, + "currentQuestion": { + "message": "Question $1 of 2" + }, + "currentlyUnavailable": { + "message": "Unavailable on this network" + }, + "curveHighGasEstimate": { + "message": "Aggressive gas estimate graph" + }, + "curveLowGasEstimate": { + "message": "Low gas estimate graph" + }, + "curveMediumGasEstimate": { + "message": "Market gas estimate graph" + }, + "custom": { + "message": "Advanced" + }, + "customGasSettingToolTipMessage": { + "message": "Use $1 to customize the gas price. This can be confusing if you aren’t familiar. Interact at your own risk.", + "description": "$1 is key 'advanced' (text: 'Advanced') separated here so that it can be passed in with bold font-weight" + }, + "customNetworks": { + "message": "Custom networks" + }, + "customSlippage": { + "message": "Custom" + }, + "customToken": { + "message": "Custom token" + }, + "customTokenWarningInTokenDetectionNetwork": { + "message": "Anyone can create a token, including creating fake versions of existing tokens. Learn about $1" + }, + "customerSupport": { + "message": "customer support" + }, + "customizeYourNotifications": { + "message": "Customize your notifications" + }, + "customizeYourNotificationsText": { + "message": "Turn on the types of notifications you want to receive:" + }, + "dappConnections": { + "message": "Dapp Connections" + }, + "dappScanMaliciousTitle": { + "message": "Malicious website detected" + }, + "dappScanMaliciousWarning": { + "message": "This website is flagged as potentially dangerous. If you reveal your Secret Recovery Phrase, you could put your funds at risk." + }, + "dappSuggested": { + "message": "Site suggested" + }, + "dappSuggestedGasSettingToolTipMessage": { + "message": "$1 has suggested this price.", + "description": "$1 is url for the dapp that has suggested gas settings" + }, + "dappSuggestedHigh": { + "message": "Site suggested" + }, + "dappSwapAdvantage": { + "message": "Save and earn with MetaMask Swaps" + }, + "dappSwapAdvantageSaveOnly": { + "message": "Save with MetaMask Swaps" + }, + "dappSwapBenefits": { + "message": "Network fees refunded on failed swaps" + }, + "dappSwapQuoteDifference": { + "message": "Save $1" + }, + "dappSwapRewardText": { + "message": "Earn $1 points" + }, + "darkTheme": { + "message": "Dark" + }, + "data": { + "message": "Data" + }, + "dataCollectionForMarketing": { + "message": "Data collection for marketing" + }, + "dataCollectionForMarketingDescription": { + "message": "We'll use MetaMetrics to learn how you interact with our marketing communications. We may share relevant news (like product features and other materials)." + }, + "dataCollectionForMarketingDescriptionSocialLogin": { + "message": "Get product updates, tips, and news - including by email. We may use your interactions to improve what we share." + }, + "dataUnavailable": { + "message": "data unavailable" + }, + "date": { + "message": "Date" + }, + "dateCreated": { + "message": "Date created" + }, + "dcent": { + "message": "D'Cent" + }, + "debitCreditPurchaseOptions": { + "message": "Debit or credit card purchase options" + }, + "debug": { + "message": "Debug" + }, + "decimal": { + "message": "Token decimal" + }, + "decimalsMustZerotoTen": { + "message": "Decimals must be at least 0, and not over 36." + }, + "decrypt": { + "message": "Decrypt" + }, + "decryptCopy": { + "message": "Copy encrypted message" + }, + "decryptInlineError": { + "message": "This message cannot be decrypted due to error: $1", + "description": "$1 is error message" + }, + "decryptMessageNotice": { + "message": "$1 would like to read this message to complete your action", + "description": "$1 is the web3 site name" + }, + "decryptMetamask": { + "message": "Decrypt message" + }, + "decryptRequest": { + "message": "Decrypt request" + }, + "deepLink_Caution": { + "message": "Proceed with caution" + }, + "deepLink_Continue": { + "message": "Continue" + }, + "deepLink_ContinueDescription": { + "message": "You'll open $1 if you continue.", + "description": "$1 is the name of the page they'll be redirected to if they click the Continue button. Examples of $1: 'the home page'; 'the buy page'; 'the swaps page'; 'the notifications page'" + }, + "deepLink_DontRemindMeAgain": { + "message": "Don't remind me again" + }, + "deepLink_Error404Description": { + "message": "We can't find the page you are looking for." + }, + "deepLink_Error404Title": { + "message": "This page doesn't exist" + }, + "deepLink_Error404_CTA": { + "message": "$1 and we'll take you to the right place.", + "description": "$1 is a link with the text found in `deepLink_Error404_CTA_LinkText`" + }, + "deepLink_Error404_CTA_LinkText": { + "message": "Update to the latest version of MetaMask", + "description": "Part of `deepLink_Error404_CTA`. The text links to https://support.metamask.io/configure/wallet/how-to-update-the-version-of-metamask/" + }, + "deepLink_ErrorMissingUrl": { + "message": "No url to navigate to was provided." + }, + "deepLink_ErrorOtherDescription": { + "message": "This is a bug and should be reported to MetaMask." + }, + "deepLink_ErrorOtherTitle": { + "message": "An error occurred while processing the deep link" + }, + "deepLink_GoToTheHomePageButton": { + "message": "Go to the home page" + }, + "deepLink_RedirectingToMetaMask": { + "message": "Redirecting to MetaMask" + }, + "deepLink_ThirdPartyDescription": { + "message": "You were sent here by a third party, not MetaMask. $1", + "description": "$1 is the message 'deepLink_ContinueDescription'" + }, + "deepLink_theAssetPage": { + "message": "the asset page" + }, + "deepLink_theBuyPage": { + "message": "the buy page" + }, + "deepLink_theCardOnboardingPage": { + "message": "the MetaMask Card onboarding page" + }, + "deepLink_theHomePage": { + "message": "the home page" + }, + "deepLink_theMusdEducationPage": { + "message": "the MUSD conversion education page" + }, + "deepLink_theNFTsPage": { + "message": "the NFTs page" + }, + "deepLink_theNotificationsPage": { + "message": "the notifications page" + }, + "deepLink_theOnboardingPage": { + "message": "the onboarding page" + }, + "deepLink_thePerpsMarketDetailPage": { + "message": "the perps market page" + }, + "deepLink_thePerpsPage": { + "message": "the perps page" + }, + "deepLink_thePredictPage": { + "message": "the prediction markets page" + }, + "deepLink_theRewardsPage": { + "message": "the MetaMask Rewards page" + }, + "deepLink_theSellPage": { + "message": "the sell page" + }, + "deepLink_theSwapsPage": { + "message": "the swaps page" + }, + "deepLink_theSwapsRampsPage": { + "message": "the Swaps/Ramps page" + }, + "deepLink_theTransactionShieldPage": { + "message": "the transaction shield page" + }, + "default": { + "message": "Default" + }, + "defaultRpcUrl": { + "message": "Default RPC URL" + }, + "defaultSettingsSubTitle": { + "message": "MetaMask uses default settings to best balance safety and ease of use. Change these settings to further increase your privacy." + }, + "defaultSettingsTitle": { + "message": "Default privacy settings" + }, + "defi": { + "message": "DeFi" + }, + "defiEmptyDescription": { + "message": "Lend, borrow, and trade, right in your wallet." + }, + "defiReferralCheckboxLabel": { + "message": "Allow MetaMask to add a referral code. This is permanent. The site offers discounts per their terms. MetaMask earns a fee.", + "description": "The text for the checkbox label in the DeFi referral confirmation screen" + }, + "defiReferralNoThanks": { + "message": "No thanks", + "description": "Secondary button label to decline on the DeFi referral confirmation screen" + }, + "defiReferralTerms": { + "message": "terms", + "description": "Accessible label for the partner terms link within the DeFi referral consent subtitle" + }, + "defiReferralTitle": { + "message": "MetaMask x $1", + "description": "The title of the DeFi referral confirmation screen. $1 is the name of the partner" + }, + "defiTabErrorContent": { + "message": "Try visiting again later." + }, + "defiTabErrorTitle": { + "message": "We could not load this page." + }, + "delete": { + "message": "Delete" + }, + "deleteActivityAndNonceData": { + "message": "Delete activity and nonce data" + }, + "deleteMetaMetricsData": { + "message": "Delete MetaMetrics data" + }, + "deleteMetaMetricsDataDescription": { + "message": "This will delete historical MetaMetrics data associated with your use on this device. Your wallet and accounts will remain exactly as they are now after this data has been deleted. This process may take up to 30 days. View our $1.", + "description": "$1 will have text saying Privacy Policy " + }, + "deleteMetaMetricsDataDescriptionV2": { + "message": "This will delete historical MetaMetrics data associated with your wallet. MetaMetrics includes anonymized usage and diagnostic data. Your wallet and accounts will remain the same. This process may take up to 30 days. View our $1.", + "description": "$1 will have text saying Privacy Policy " + }, + "deleteMetaMetricsDataErrorDesc": { + "message": "This request can't be completed right now due to an analytics system server issue, please try again later." + }, + "deleteMetaMetricsDataErrorTitle": { + "message": "We are unable to delete this data right now" + }, + "deleteMetaMetricsDataErrorToast": { + "message": "Unable to delete" + }, + "deleteMetaMetricsDataModalDesc": { + "message": "We are about to remove all your MetaMetrics data. Are you sure?" + }, + "deleteMetaMetricsDataModalTitle": { + "message": "Delete MetaMetrics data?" + }, + "deleteMetaMetricsDataRequestedDescription": { + "message": "You initiated deletion on $1. This process can take up to 30 days. View the $2.", + "description": "$1 will be the date on which teh deletion is requested and $2 will have text saying Privacy Policy " + }, + "deleteMetaMetricsDataToast": { + "message": "Data will be deleted within 30 days" + }, + "deleteNetworkIntro": { + "message": "If you delete this network, you will need to add it again to view your assets in this network" + }, + "deleteNetworkTitle": { + "message": "Delete $1 network?", + "description": "$1 represents the name of the network" + }, + "depositCrypto": { + "message": "Deposit crypto from another account with a wallet address or QR code." + }, + "deprecatedNetwork": { + "message": "This network is deprecated" + }, + "deprecatedNetworkButtonMsg": { + "message": "Got it" + }, + "deprecatedNetworkDescription": { + "message": "The network you're trying to connect to is no longer supported by MetaMask. $1" + }, + "description": { + "message": "Description" + }, + "descriptionFromSnap": { + "message": "Description from $1", + "description": "$1 represents the name of the snap" + }, + "destinationAccountPickerNoEligible": { + "message": "No eligible accounts found" + }, + "destinationAccountPickerNoMatching": { + "message": "No matching accounts found" + }, + "destinationAccountPickerSearchPlaceholderToMainnet": { + "message": "Receiving address or ENS" + }, + "destinationAccountPickerSearchPlaceholderToSolana": { + "message": "Receiving address" + }, + "destinationTransactionIdLabel": { + "message": "Destination Tx ID", + "description": "Label for the destination transaction ID field." + }, + "details": { + "message": "Details" + }, + "developerTools": { + "message": "Developer tools" + }, + "disabledGasOptionToolTipMessage": { + "message": "“$1” is disabled because it does not meet the minimum of a 10% increase from the original gas fee.", + "description": "$1 is gas estimate type which can be market or aggressive" + }, + "disconnect": { + "message": "Disconnect" + }, + "disconnectAllAccounts": { + "message": "Disconnect all accounts" + }, + "disconnectAllAccountsConfirmationDescription": { + "message": "Are you sure you want to disconnect? You may lose site functionality." + }, + "disconnectAllAccountsText": { + "message": "accounts" + }, + "disconnectAllDescriptionText": { + "message": "If you disconnect from this site, you’ll need to reconnect your accounts and networks to use this site again." + }, + "disconnectAllSites": { + "message": "Disconnect All" + }, + "disconnectAllSitesDescriptionText": { + "message": "If you disconnect from all sites, you'll need to reconnect your accounts and networks to use them again." + }, + "disconnectAllSitesError": { + "message": "Some dapps couldn't be disconnected. Please try again." + }, + "disconnectAllSitesSuccess": { + "message": "All dapps successfully disconnected." + }, + "disconnectAllSnapsText": { + "message": "Snaps" + }, + "disconnectMessage": { + "message": "This will disconnect you from this site" + }, + "disconnectPrompt": { + "message": "Disconnect $1" + }, + "disconnectThisAccount": { + "message": "Disconnect this account" + }, + "discover": { + "message": "Discover" + }, + "discoverSnaps": { + "message": "Discover Snaps", + "description": "Text that links to the Snaps website. Displayed in a banner on Snaps list page in settings." + }, + "dismiss": { + "message": "Dismiss" + }, + "displayNftMedia": { + "message": "Display NFT media" + }, + "displayNftMediaDescriptionV2": { + "message": "NFT autodetection relies on this feature." + }, + "doNotShare": { + "message": "Do not share this with anyone" + }, + "domain": { + "message": "Domain" + }, + "done": { + "message": "Done" + }, + "dontShowThisAgain": { + "message": "Don't show this again" + }, + "download": { + "message": "Download" + }, + "downloadAppDescription": { + "message": "Bring MetaMask with you everywhere you go. Turn on Face ID so you always have access, even if you forget your password." + }, + "downloadAppTitle": { + "message": "Scan QR code and download the app" + }, + "downloadGoogleChrome": { + "message": "Download Google Chrome" + }, + "downloadMetaMaskMobileDescription": { + "message": "Face ID on our app lets you in even if you forget your password. Take MetaMask everywhere you go!" + }, + "downloadMetaMaskMobileQrNote": { + "message": "Scan this QR code to get started." + }, + "downloadMetaMaskMobileTitle": { + "message": "Get our mobile app" + }, + "downloadNow": { + "message": "Download now" + }, + "downloadStateLogs": { + "message": "Download state logs" + }, + "dropped": { + "message": "Dropped" + }, + "duplicateContactTooltip": { + "message": "This contact name collides with an existing account or contact" + }, + "duplicateContactWarning": { + "message": "You have duplicate contacts" + }, + "durationSuffixDay": { + "message": "D", + "description": "Shortened form of 'day'" + }, + "durationSuffixHour": { + "message": "H", + "description": "Shortened form of 'hour'" + }, + "durationSuffixMillisecond": { + "message": "MS", + "description": "Shortened form of 'millisecond'" + }, + "durationSuffixMinute": { + "message": "M", + "description": "Shortened form of 'minute'" + }, + "durationSuffixMonth": { + "message": "M", + "description": "Shortened form of 'month'" + }, + "durationSuffixSecond": { + "message": "S", + "description": "Shortened form of 'second'" + }, + "durationSuffixWeek": { + "message": "W", + "description": "Shortened form of 'week'" + }, + "durationSuffixYear": { + "message": "Y", + "description": "Shortened form of 'year'" + }, + "earn": { + "message": "Earn" + }, + "edit": { + "message": "Edit" + }, + "editANickname": { + "message": "Edit nickname" + }, + "editAccounts": { + "message": "Edit accounts" + }, + "editAddressNickname": { + "message": "Edit address nickname" + }, + "editContact": { + "message": "Edit contact" + }, + "editGasFeeModalTitle": { + "message": "Edit gas fee" + }, + "editGasLimitOutOfBounds": { + "message": "Gas limit must be at least $1" + }, + "editGasMaxFeeHigh": { + "message": "Max fee is higher than necessary" + }, + "editGasMaxFeeLow": { + "message": "Max fee too low for network conditions" + }, + "editGasMaxFeePriorityImbalance": { + "message": "Max fee cannot be lower than max priority fee" + }, + "editGasMaxPriorityFeeBelowMinimum": { + "message": "Max priority fee must be greater than 0 GWEI" + }, + "editGasMaxPriorityFeeHigh": { + "message": "Max priority fee is higher than necessary. You may pay more than needed." + }, + "editGasMaxPriorityFeeLow": { + "message": "Max priority fee is low for current network conditions" + }, + "editGasPriceTooLow": { + "message": "Gas price must be greater than 0" + }, + "editGasTooLow": { + "message": "Unknown processing time" + }, + "editInPortfolio": { + "message": "Edit in Portfolio" + }, + "editNetwork": { + "message": "Edit network" + }, + "editNetworkLink": { + "message": "edit the original network" + }, + "editNetworksTitle": { + "message": "Edit networks" + }, + "editNonceField": { + "message": "Edit nonce" + }, + "editNonceMessage": { + "message": "This is an advanced feature, use cautiously." + }, + "editPermissions": { + "message": "Edit permissions" + }, + "editSpendingCap": { + "message": "Edit spending cap" + }, + "editSpendingCapAccountBalance": { + "message": "Account balance: $1 $2" + }, + "editSpendingCapDesc": { + "message": "Enter the amount that you feel comfortable being spent on your behalf." + }, + "editSpendingCapError": { + "message": "The spending cap can’t exceed $1 decimal digits. Remove decimal digits to continue." + }, + "editSpendingCapSpecialCharError": { + "message": "Enter numbers only" + }, + "enableAutoDetect": { + "message": " Enable autodetect" + }, + "enableFromSettings": { + "message": " Enable it from Settings." + }, + "enableSmartContractAccount": { + "message": "Use smart account" + }, + "enableSmartContractAccountDescription": { + "message": "Unlock faster transactions, lower network fees, and added security on supported networks." + }, + "enableSnap": { + "message": "Enable" + }, + "enableToken": { + "message": "enable $1", + "description": "$1 is a token symbol, e.g. ETH" + }, + "enabled": { + "message": "Enabled" + }, + "enabledNetworks": { + "message": "Enabled networks" + }, + "encryptionPublicKeyNotice": { + "message": "$1 would like your public encryption key. By consenting, this site will be able to compose encrypted messages to you.", + "description": "$1 is the web3 site name" + }, + "encryptionPublicKeyRequest": { + "message": "Request encryption public key" + }, + "endpointReturnedDifferentChainId": { + "message": "The RPC URL you have entered returned a different chain ID ($1).", + "description": "$1 is the return value of eth_chainId from an RPC endpoint" + }, + "enhancedTokenDetectionAlertMessage": { + "message": "Enhanced token detection is currently available on $1. $2" + }, + "ensDomainsSettingDescriptionIntroduction": { + "message": "MetaMask lets you see ENS domains right in your browser's address bar. Here's how it works:" + }, + "ensDomainsSettingDescriptionOutroduction": { + "message": "Keep in mind that using this feature exposes your IP address to IPFS third-party services." + }, + "ensDomainsSettingDescriptionPart1": { + "message": "MetaMask checks with Ethereum's ENS contract to find the code connected to the ENS name." + }, + "ensDomainsSettingDescriptionPart2": { + "message": "If the code links to IPFS, you can see the content associated with it (usually a website)." + }, + "ensDomainsSettingTitle": { + "message": "Show ENS domains in address bar" + }, + "ensUnknownError": { + "message": "ENS lookup failed." + }, + "enterANameToIdentifyTheUrl": { + "message": "Enter a name to identify the URL" + }, + "enterChainId": { + "message": "Enter Chain ID" + }, + "enterNetworkName": { + "message": "Enter network name" + }, + "enterOptionalPassword": { + "message": "Enter optional password" + }, + "enterPasswordContinue": { + "message": "Enter password to continue" + }, + "enterPasswordCurrent": { + "message": "Enter your current password" + }, + "enterRpcUrl": { + "message": "Enter RPC URL" + }, + "enterSymbol": { + "message": "Enter symbol" + }, + "enterTokenAddress": { + "message": "Enter token address" + }, + "enterTokenNameOrAddress": { + "message": "Enter token name or paste address" + }, + "enterTokenNameOrAddressManageTokens": { + "message": "Enter token name or address" + }, + "enterYourPassword": { + "message": "Enter your password" + }, + "enterYourPasswordContinue": { + "message": "Enter password to continue" + }, + "enterYourPasswordSocialLoginFlow": { + "message": "Enter MetaMask password" + }, + "errorCode": { + "message": "Code: $1", + "description": "Displayed error code for debugging purposes. $1 is the error code" + }, + "errorGettingSafeChainList": { + "message": "Error while getting safe chain list, please continue with caution." + }, + "errorLegalTextFirstInfo": { + "message": "Technical diagnostic information." + }, + "errorLegalTextNoPersonalInfo": { + "message": "No personal information or other device information will be collected." + }, + "errorLegalTextSecondInfo": { + "message": "Your browser, operating system, and MetaMask versions." + }, + "errorLegalTextSummary": { + "message": "We will receive a single error report, containing:" + }, + "errorMessage": { + "message": "Message: $1", + "description": "Displayed error message for debugging purposes. $1 is the error message" + }, + "errorName": { + "message": "Code: $1", + "description": "Displayed error name for debugging purposes. $1 is the error name" + }, + "errorPageContactSupport": { + "message": "Contact support", + "description": "Button for contact MM support" + }, + "errorPageDescribeUsWhatHappened": { + "message": "Describe what happened", + "description": "Button for submitting report to sentry" + }, + "errorPageInfo": { + "message": "Your information can’t be shown. Don’t worry, your wallet and funds are safe.", + "description": "Information banner shown in the error page" + }, + "errorPageMessageTitle": { + "message": "Error message", + "description": "Title for description, which is displayed for debugging purposes" + }, + "errorPageSentryFormTitle": { + "message": "Describe what happened", + "description": "In sentry feedback form, The title at the top of the feedback form." + }, + "errorPageSentryMessagePlaceholder": { + "message": "Sharing details like how we can reproduce the bug will help us fix the problem.", + "description": "In sentry feedback form, The placeholder for the feedback description input field." + }, + "errorPageSentrySuccessMessageText": { + "message": "Thanks! We will take a look soon.", + "description": "In sentry feedback form, The message displayed after a successful feedback submission." + }, + "errorPageTitle": { + "message": "MetaMask encountered an error", + "description": "Title of generic error page" + }, + "errorPageTryAgain": { + "message": "Try again", + "description": "Button for try again" + }, + "errorStack": { + "message": "Stack:", + "description": "Title for error stack, which is displayed for debugging purposes" + }, + "errorWhileConnectingToRPC": { + "message": "Error while connecting to the custom network." + }, + "errorWithSnap": { + "message": "Error with $1", + "description": "$1 represents the name of the snap" + }, + "estimatedChanges": { + "message": "Estimated changes" + }, + "estimatedFee": { + "message": "Estimated fee" + }, + "estimatedFeeTooltip": { + "message": "Amount paid to process the transaction on network." + }, + "estimatedPointsRow": { + "message": "Est. points" + }, + "estimatedTime": { + "message": "Estimated time" + }, + "ethGasPriceFetchWarning": { + "message": "Backup gas price is provided as the main gas estimation service is unavailable right now." + }, + "ethereumAndEvms": { + "message": "Ethereum and EVMs" + }, + "ethereumProviderAccess": { + "message": "Grant Ethereum provider access to $1", + "description": "The parameter is the name of the requesting origin" + }, + "etherscan": { + "message": "Etherscan" + }, + "etherscanView": { + "message": "View account on Etherscan" + }, + "etherscanViewOn": { + "message": "View on Etherscan" + }, + "existingChainId": { + "message": "The information you have entered is associated with an existing chain ID." + }, + "experimental": { + "message": "Experimental" + }, + "exploreDefi": { + "message": "Explore DeFi" + }, + "exportYourData": { + "message": "Export your data" + }, + "exportYourDataButton": { + "message": "Download" + }, + "exportYourDataDescription": { + "message": "You can export data like your contacts and preferences." + }, + "extendWalletWithSnaps": { + "message": "Explore community-built Snaps to customize your web3 experience", + "description": "Banner description displayed on Snaps list page in Settings when less than 6 Snaps is installed." + }, + "externalAccount": { + "message": "External account" + }, + "externalExtension": { + "message": "External extension" + }, + "externalNameSourcesSetting": { + "message": "Proposed nicknames" + }, + "externalNameSourcesSettingDescription": { + "message": "We’ll fetch proposed nicknames for addresses you interact with from third-party sources like Etherscan, Infura, and Lens Protocol. These sources will be able to see those addresses and your IP address. Your account address won’t be exposed to third parties." + }, + "externalNameSourcesSettingDescriptionV2": { + "message": "Fetches proposed nicknames for addresses you interact with from third-party sources like Etherscan, Infura, and Lens protocol." + }, + "failed": { + "message": "Failed" + }, + "failedToFetchChainId": { + "message": "Could not fetch chain ID. Is your RPC URL correct?" + }, + "failover": { + "message": "Failover" + }, + "failoverRpcUrl": { + "message": "Failover RPC URL" + }, + "failureMessage": { + "message": "Something went wrong, and we were unable to complete the action" + }, + "fast": { + "message": "Fast" + }, + "fieldRequired": { + "message": "$1 is required" + }, + "fileImportFail": { + "message": "File import not working? Click here!", + "description": "Helps user import their account from a JSON file" + }, + "fileUploaderDescription": { + "message": "Click to upload or drag and drop" + }, + "fileUploaderInvalidFileTypeError": { + "message": "Invalid file type. Please upload a supported file format." + }, + "fileUploaderMaxFileSizeError": { + "message": "File size exceeds $1MB. Please upload a smaller file.", + "description": "$1 is the maximum file size in MB" + }, + "flaskWelcomeUninstall": { + "message": "you should uninstall this extension", + "description": "This request is shown on the Flask Welcome screen. It is intended for non-developers, and will be bolded." + }, + "flaskWelcomeWarning1": { + "message": "Flask is for developers to experiment with new unstable APIs. Unless you are a developer or beta tester, $1.", + "description": "This is a warning shown on the Flask Welcome screen, intended to encourage non-developers not to proceed any further. $1 is the bolded message 'flaskWelcomeUninstall'" + }, + "flaskWelcomeWarning2": { + "message": "We do not guarantee the safety or stability of this extension. The new APIs offered by Flask are not hardened against phishing attacks, meaning that any site or snap that requires Flask might be a malicious attempt to steal your assets.", + "description": "This explains the risks of using MetaMask Flask" + }, + "flaskWelcomeWarning3": { + "message": "All Flask APIs are experimental. They may be changed or removed without notice, or they might stay on Flask indefinitely without ever being migrated to stable MetaMask. Use them at your own risk.", + "description": "This message warns developers about unstable Flask APIs" + }, + "flaskWelcomeWarning4": { + "message": "Make sure to disable your regular MetaMask extension when using Flask.", + "description": "This message calls to pay attention about multiple versions of MetaMask running on the same site (Flask + Prod)" + }, + "flaskWelcomeWarningAcceptButton": { + "message": "I accept the risks", + "description": "this text is shown on a button, which the user presses to confirm they understand the risks of using Flask" + }, + "floatAmountToken": { + "message": "Token amount must be an integer" + }, + "forbiddenIpfsGateway": { + "message": "Forbidden IPFS Gateway: Please specify a CID gateway" + }, + "forgetDevice": { + "message": "Forget this device" + }, + "forgotPassword": { + "message": "Forgot password?" + }, + "forgotPasswordModalButton": { + "message": "Import wallet" + }, + "forgotPasswordModalButtonLink": { + "message": "I don’t know my Phrase" + }, + "forgotPasswordModalContactSupport": { + "message": "$1 if you need help.", + "description": "$1 is the support link" + }, + "forgotPasswordModalContactSupportLink": { + "message": "Contact support" + }, + "forgotPasswordModalDescription1": { + "message": "We can’t recover your password for you." + }, + "forgotPasswordModalDescription2": { + "message": "Add your wallet back to MetaMask by entering the Secret Recovery Phrase associated with it." + }, + "forgotPasswordModalTitle": { + "message": "Forgot your password?" + }, + "forgotPasswordSocialDescription": { + "message": "We can’t recover your password, but there are ways you can regain access to your wallet. $1 if you need help.", + "description": "$1 is the support link" + }, + "forgotPasswordSocialStep1": { + "message": "$1 If you’re logged in on a device with Touch or Face ID, reset your password there.", + "description": "$1 is bold heading" + }, + "forgotPasswordSocialStep1Biometrics": { + "message": "Touch/Face ID:" + }, + "forgotPasswordSocialStep2": { + "message": "$1: If you have your Secret Recovery Phrase, you can use it to import your wallet to this device.", + "description": "$1 is bold Secret Recovery Phrase" + }, + "form": { + "message": "form" + }, + "freeTrialDays": { + "message": "Free $1-day trial", + "description": "The $1 is the number of days" + }, + "from": { + "message": "From" + }, + "function": { + "message": "Function: $1" + }, + "fundYourWallet": { + "message": "Fund your wallet", + "description": "Title for the balance empty state component encouraging users to add funds" + }, + "gas": { + "message": "Gas" + }, + "gasLimit": { + "message": "Gas limit" + }, + "gasLimitTooLow": { + "message": "Gas limit must be at least 21000" + }, + "gasPrice": { + "message": "Gas price" + }, + "gasPriceExcessive": { + "message": "Your gas fee is set unnecessarily high. Consider lowering the amount." + }, + "gasPriceFetchFailed": { + "message": "Gas price estimation failed due to network error." + }, + "gasSponsorshipReserveBalanceWarning": { + "message": "Gas sponsorship isn’t available for this transaction. You’ll need to keep at least $1 $2 in your account.", + "description": "$1 is the minimum required balance and $2 is the native currency symbol." + }, + "gasTimingHoursShort": { + "message": "$1 hrs", + "description": "$1 represents a number of hours" + }, + "gasTimingLow": { + "message": "Slow" + }, + "gasTimingMinutesShort": { + "message": "$1 min", + "description": "$1 represents a number of minutes" + }, + "gasTimingSecondsShort": { + "message": "$1 sec", + "description": "$1 represents a number of seconds" + }, + "gasUsed": { + "message": "Gas used" + }, + "gatorNoJustificationProvided": { + "message": "No justification was provided for the permission" + }, + "gatorPermissionAnnualFrequency": { + "message": "Yearly", + "description": "Time period for annual recurring permissions redemption" + }, + "gatorPermissionCustomFrequency": { + "message": "Custom", + "description": "Time period for custom recurring permissions redemption" + }, + "gatorPermissionDailyFrequency": { + "message": "Daily", + "description": "Time period for daily recurring permissions redemption" + }, + "gatorPermissionFortnightlyFrequency": { + "message": "Bi-Weekly", + "description": "Time period for fortnightly recurring permissions redemption" + }, + "gatorPermissionMonthlyFrequency": { + "message": "Monthly", + "description": "Time period for monthly recurring permissions redemption" + }, + "gatorPermissionNoExpiration": { + "message": "No expiration", + "description": "Label for a permission with no expiration" + }, + "gatorPermissionTokenPeriodicFrequencyLabel": { + "message": "Transfer window", + "description": "Label for the transfer window of a token periodic permission" + }, + "gatorPermissionTokenStreamFrequencyLabel": { + "message": "Period", + "description": "Label for the period of a token stream permission" + }, + "gatorPermissionWeeklyFrequency": { + "message": "Weekly", + "description": "Time period for weekly recurring permissions redemption" + }, + "gatorPermissionsExpirationDate": { + "message": "Expiration date", + "description": "Label for the expiration date of a permission" + }, + "gatorPermissionsHideDetails": { + "message": "Hide details", + "description": "Button text to hide permission details" + }, + "gatorPermissionsInitialAllowance": { + "message": "Initial allowance", + "description": "Label for the initial allowance of a permission" + }, + "gatorPermissionsJustification": { + "message": "Justification", + "description": "Label for the justification" + }, + "gatorPermissionsMaxAllowance": { + "message": "Max allowance", + "description": "Label for the max allowance of a permission" + }, + "gatorPermissionsRevocationPending": { + "message": "Revocation pending", + "description": "Label for a gator permission that is pending a revocation transaction" + }, + "gatorPermissionsRevoke": { + "message": "Revoke", + "description": "Label for the revoke button of a gator permission" + }, + "gatorPermissionsShowDetails": { + "message": "Show details", + "description": "Button text to show permission details" + }, + "gatorPermissionsStartDate": { + "message": "Start date", + "description": "Label for the start date of a permission" + }, + "gatorPermissionsStatusExpired": { + "message": "Expired", + "description": "Tag label for a gator permission that has expired" + }, + "gatorPermissionsStatusRevoked": { + "message": "Revoked", + "description": "Tag label for a gator permission that has been revoked" + }, + "gatorPermissionsStreamRate": { + "message": "Stream rate", + "description": "Label for the stream rate of a permission" + }, + "gatorPermissionsStreamingAmountLabel": { + "message": "Streaming amount", + "description": "Label for the stream rate of a permission" + }, + "general": { + "message": "General" + }, + "generalCameraError": { + "message": "We couldn't access your camera. Please give it another try." + }, + "generalCameraErrorTitle": { + "message": "Something went wrong...." + }, + "generalDescription": { + "message": "Sync settings across devices, select network preferences, and track token data" + }, + "genericExplorerView": { + "message": "View account on $1" + }, + "getDollarMore": { + "message": "Get $1 more" + }, + "getTheNewestFeatures": { + "message": "Get the newest features" + }, + "getYourWalletReadyToUseWeb3": { + "message": "Get your wallet ready to use web3", + "description": "Subtitle text for the balance empty state component explaining the purpose of adding funds" + }, + "gmxReferralConfirmText": { + "message": "Yes, save 5%", + "description": "Primary button label on the GMX referral confirmation screen" + }, + "gmxReferralSubtitle": { + "message": "Save up to 5% on trades with a MetaMask referral code.", + "description": "The subtitle of the GMX referral confirmation screen" + }, + "gmxReferralSubtitle2": { + "message": "Save 5% in trades with a MetaMask referral code. This discount applies to all future trades, as per GMX's $1. MetaMask earns a fee.", + "description": "Subtitle on the GMX referral confirmation screen. $1 is a link to the partner's terms." + }, + "gmxReferralTitle": { + "message": "Save 5% on GMX", + "description": "Title of the GMX referral confirmation screen" + }, + "goToSite": { + "message": "Go to site" + }, + "goerli": { + "message": "Goerli test network" + }, + "gotIt": { + "message": "Got it" + }, + "grantExactAccess": { + "message": "Grant exact access" + }, + "gwei": { + "message": "GWEI" + }, + "hardware": { + "message": "Hardware" + }, + "hardwareWalletConnected": { + "message": "Hardware wallet connected" + }, + "hardwareWalletErrorContinueButton": { + "message": "Continue" + }, + "hardwareWalletErrorReconnectButton": { + "message": "Reconnect" + }, + "hardwareWalletErrorRecoveryConnection1": { + "message": "Ensure your hardware wallet is properly connected via USB" + }, + "hardwareWalletErrorRecoveryConnection2": { + "message": "Try using a different USB cable or port" + }, + "hardwareWalletErrorRecoveryConnection3": { + "message": "Restart your device and try connecting again" + }, + "hardwareWalletErrorRecoveryConnection4": { + "message": "Your $1 device is unlocked", + "description": "$1 is the hardware wallet type" + }, + "hardwareWalletErrorRecoveryTitle": { + "message": "Continue to make sure:" + }, + "hardwareWalletErrorRecoveryUnlock1": { + "message": "Your $1 device is unlocked", + "description": "$1 is the hardware wallet type" + }, + "hardwareWalletErrorRecoveryUnlock2": { + "message": "The Ethereum app is open" + }, + "hardwareWalletErrorTitleBlindSignNotSupported": { + "message": "Enable blind signing" + }, + "hardwareWalletErrorTitleBlindSignNotSupportedInstruction1": { + "message": "The Ethereum app is open on your Ledger" + }, + "hardwareWalletErrorTitleBlindSignNotSupportedInstruction2": { + "message": "You’ve turned on Blind Signing in Settings" + }, + "hardwareWalletErrorTitleConnectYourDevice": { + "message": "Connect your $1", + "description": "$1 is the hardware wallet type" + }, + "hardwareWalletErrorTitleDeviceLocked": { + "message": "$1 locked", + "description": "$1 is the hardware wallet type" + }, + "hardwareWalletErrorUnknownErrorDescription": { + "message": "Make sure your $1 device is set up with the Secret Recovery Phrase or passphrase for the selected account", + "description": "$1 is the hardware wallet type" + }, + "hardwareWalletErrorUnknownErrorTitle": { + "message": "Something went wrong" + }, + "hardwareWalletEthAppNotOpenDescription": { + "message": "Open the Ethereum app on your device to continue" + }, + "hardwareWalletLegacyDescription": { + "message": "(legacy)", + "description": "Text representing the MEW path" + }, + "hardwareWalletLookingForDevice": { + "message": "Looking for your $1...", + "description": "$1 is the hardware wallet type" + }, + "hardwareWalletSubmissionWarningStep1": { + "message": "Be sure your $1 is plugged in and to select the Ethereum app." + }, + "hardwareWalletSubmissionWarningStep2": { + "message": "Enable \"smart contract data\" or \"blind signing\" on your $1 device." + }, + "hardwareWalletSubmissionWarningTitle": { + "message": "Prior to clicking Submit:" + }, + "hardwareWalletSupportLinkConversion": { + "message": "click here" + }, + "hardwareWalletTitleEthAppNotOpen": { + "message": "Open Ethereum app" + }, + "hardwareWalletTypeConnected": { + "message": "$1 connected", + "description": "$1 is the hardware wallet type" + }, + "hardwareWallets": { + "message": "Connect a hardware wallet" + }, + "hardwareWalletsInfo": { + "message": "Hardware wallet integrations use API calls to external servers, which can see your IP address and the smart contract addresses you interact with." + }, + "hardwareWalletsMsg": { + "message": "Select a hardware wallet you would like to use with MetaMask." + }, + "helpAndSettings": { + "message": "Help and settings" + }, + "here": { + "message": "here", + "description": "as in -click here- for more information (goes with troubleTokenBalances)" + }, + "hexData": { + "message": "Hex data" + }, + "hexDataPlaceholder": { + "message": "Enter hex data (optional)" + }, + "hidden": { + "message": "Hidden" + }, + "hide": { + "message": "Hide" + }, + "hideAccount": { + "message": "Hide account" + }, + "hideAdvancedDetails": { + "message": "Hide advanced details" + }, + "hideSentitiveInfo": { + "message": "Hide sensitive information" + }, + "hideTokenPrompt": { + "message": "Hide token?" + }, + "hideTokenSymbol": { + "message": "Hide $1", + "description": "$1 is the symbol for a token (e.g. 'DAI')" + }, + "hideZeroBalanceTokens": { + "message": "Hide tokens without balance" + }, + "high": { + "message": "Aggressive" + }, + "highGasSettingToolTipMessage": { + "message": "High probability, even in volatile markets. Use $1 to cover surges in network traffic due to things like popular NFT drops.", + "description": "$1 is key 'high' (text: 'Aggressive') separated here so that it can be passed in with bold font-weight" + }, + "highLowercase": { + "message": "high" + }, + "highestCurrentBid": { + "message": "Highest current bid" + }, + "highestFloorPrice": { + "message": "Highest floor price" + }, + "history": { + "message": "History" + }, + "holdToRevealContent1": { + "message": "Your Secret Recovery Phrase provides $1", + "description": "$1 is a bolded text with the message from 'holdToRevealContent2'" + }, + "holdToRevealContent2": { + "message": "full access to your wallet and funds.", + "description": "Is the bolded text in 'holdToRevealContent1'" + }, + "holdToRevealContent3": { + "message": "Do not share this with anyone. $1 $2", + "description": "$1 is a message from 'holdToRevealContent4' and $2 is a text link with the message from 'holdToRevealContent5'" + }, + "holdToRevealContent4": { + "message": "MetaMask Support will not request this,", + "description": "Part of 'holdToRevealContent3'" + }, + "holdToRevealContent5": { + "message": "but phishers might.", + "description": "The text link in 'holdToRevealContent3'" + }, + "holdToRevealContentPrivateKey1": { + "message": "Your Private Key provides $1", + "description": "$1 is a bolded text with the message from 'holdToRevealContentPrivateKey2'" + }, + "holdToRevealContentPrivateKey2": { + "message": "full access to your wallet and funds.", + "description": "Is the bolded text in 'holdToRevealContentPrivateKey2'" + }, + "holdToRevealLockedLabel": { + "message": "hold to reveal circle locked" + }, + "holdToRevealPrivateKey": { + "message": "Hold to reveal Private Key" + }, + "holdToRevealPrivateKeyTitle": { + "message": "Keep your private key safe" + }, + "holdToRevealSRP": { + "message": "Hold to reveal SRP" + }, + "holdToRevealSRPTitle": { + "message": "Keep your SRP safe" + }, + "holdToRevealUnlockedLabel": { + "message": "hold to reveal circle unlocked" + }, + "honeypotDescription": { + "message": "This token might pose a honeypot risk. It is advised to conduct due diligence before interacting to prevent any potential financial loss." + }, + "honeypotTitle": { + "message": "Honey pot" + }, + "hyperliquidReferralConfirmText": { + "message": "Yes, save 4%", + "description": "Primary button label on the Hyperliquid referral confirmation screen" + }, + "hyperliquidReferralSubtitle": { + "message": "Save up to 4% on trades with a MetaMask referral code.", + "description": "The subtitle of the Hyperliquid referral confirmation screen" + }, + "hyperliquidReferralSubtitle2": { + "message": "Save 4% on trades with a MetaMask referral code. Applies to all future trades per Hyperliquid's $1. MetaMask earns a fee.", + "description": "Subtitle on the Hyperliquid referral confirmation screen. $1 is a link to the partner's terms." + }, + "hyperliquidReferralTitle": { + "message": "Save 4% on Hyperliquid", + "description": "Title of the Hyperliquid referral confirmation screen" + }, + "iUnderstand": { + "message": "I understand" + }, + "id": { + "message": "ID" + }, + "imToken": { + "message": "imToken" + }, + "import": { + "message": "Import", + "description": "Button to import an account from a selected file" + }, + "importAWallet": { + "message": "Import a wallet" + }, + "importAWalletDescription": { + "message": "Using a 12, 18 or 24-word seed phrase" + }, + "importAccountError": { + "message": "Error importing account." + }, + "importAccountErrorIsSRP": { + "message": "You have entered a Secret Recovery Phrase (or mnemonic). To import an account here, you have to enter a private key, which is a hexadecimal string of length 64." + }, + "importAccountErrorNotAValidPrivateKey": { + "message": "This is not a valid private key. You have entered a hexadecimal string, but it must be 64 characters long." + }, + "importAccountErrorNotHexadecimal": { + "message": "This is not a valid private key. You must enter a hexadecimal string of length 64." + }, + "importAccountJsonLoading1": { + "message": "Expect this JSON import to take a few minutes and freeze MetaMask." + }, + "importAccountJsonLoading2": { + "message": "We apologize, and we will make it faster in the future." + }, + "importAccountMsg": { + "message": "Imported accounts won’t be associated with your MetaMask Secret Recovery Phrase. Learn more about imported accounts" + }, + "importAccountWithSocialMsg": { + "message": "Imported private keys are backed up to your account and sync automatically when you sign in with the same Google or Apple login." + }, + "importAccountWithSocialMsgLearnMore": { + "message": "$1 about how imported keys work", + "description": "$1 is a link to learn more about imported keys" + }, + "importAnAccount": { + "message": "Import an account" + }, + "importAnAccountDescription": { + "message": "Via a private key" + }, + "importNFT": { + "message": "Import NFT" + }, + "importNFTAddressToolTip": { + "message": "On OpenSea, for example, on the NFT's page under Details, there is a blue hyperlinked value labeled 'Contract Address'. If you click on this, it will take you to the contract's address on Etherscan; at the top-left of that page, there should be an icon labeled 'Contract', and to the right, a long string of letters and numbers. This is the address of the contract that created your NFT. Click on the 'copy' icon to the right of the address, and you'll have it on your clipboard." + }, + "importNFTPage": { + "message": "Import NFT page" + }, + "importNFTTokenIdToolTip": { + "message": "An NFT's ID is a unique identifier since no two NFTs are alike. Again, on OpenSea this number is under 'Details'. Make a note of it, or copy it onto your clipboard." + }, + "importPrivateKey": { + "message": "Private Key" + }, + "importSecretRecoveryPhrase": { + "message": "Import Secret Recovery Phrase" + }, + "importTokenQuestion": { + "message": "Import token?" + }, + "importTokenWarning": { + "message": "Anyone can create a token with any name, including fake versions of existing tokens. Add and trade at your own risk!" + }, + "importTokensCamelCase": { + "message": "Import tokens" + }, + "importTokensError": { + "message": "We could not import the tokens. Please try again later." + }, + "importWalletOrAccountHeader": { + "message": "Import a wallet or account" + }, + "importWalletSuccess": { + "message": "Wallet $1 imported", + "description": "$1 is the index of the secret recovery phrase" + }, + "imported": { + "message": "Imported", + "description": "status showing that an account has been fully loaded into the keyring" + }, + "includesXTransactions": { + "message": "Includes $1 transactions" + }, + "incorrect": { + "message": "Incorrect" + }, + "infuraBlockedNotification": { + "message": "MetaMask is unable to connect to the blockchain host. Review possible reasons $1.", + "description": "$1 is a clickable link with with text defined by the 'here' key" + }, + "insights": { + "message": "Insights" + }, + "insightsFromSnap": { + "message": "Insights from $1", + "description": "$1 represents the name of the snap" + }, + "install": { + "message": "Install" + }, + "installOrigin": { + "message": "Install origin" + }, + "installRequest": { + "message": "Add to MetaMask" + }, + "installedOn": { + "message": "Installed on $1", + "description": "$1 is the date when the snap has been installed" + }, + "insufficientBalance": { + "message": "Insufficient balance." + }, + "insufficientBalanceToCoverFees": { + "message": "Insufficient balance to cover fees" + }, + "insufficientFunds": { + "message": "Insufficient funds." + }, + "insufficientFundsSend": { + "message": "Insufficient funds" + }, + "insufficientLockedLiquidityDescription": { + "message": "The lack of adequately locked or burned liquidity leaves the token vulnerable to sudden liquidity withdrawals, potentially causing market instability." + }, + "insufficientLockedLiquidityTitle": { + "message": "Insufficient locked liquidity" + }, + "insufficientTokens": { + "message": "Insufficient tokens." + }, + "interactWithSmartContract": { + "message": "Smart contract" + }, + "interactingWith": { + "message": "Interacting with" + }, + "interactingWithTransactionDescription": { + "message": "This is the contract you're interacting with. Protect yourself from scammers by verifying the details." + }, + "interaction": { + "message": "Interaction" + }, + "invalidAddress": { + "message": "Invalid address" + }, + "invalidAddressRecipient": { + "message": "Recipient address is invalid" + }, + "invalidAssetType": { + "message": "This asset is an NFT and needs to be re-added on the Import NFTs page found under the NFTs tab" + }, + "invalidChainIdTooBig": { + "message": "Invalid chain ID. The chain ID is too big." + }, + "invalidCustomNetworkAlertContent1": { + "message": "The chain ID for custom network '$1' has to be re-entered.", + "description": "$1 is the name/identifier of the network." + }, + "invalidCustomNetworkAlertContent2": { + "message": "To protect you from malicious or faulty network providers, chain IDs are now required for all custom networks." + }, + "invalidCustomNetworkAlertContent3": { + "message": "Go to Settings > Network and enter the chain ID. You can find the chain IDs of most popular networks on $1.", + "description": "$1 is a link to https://chainid.network" + }, + "invalidCustomNetworkAlertTitle": { + "message": "Invalid custom network" + }, + "invalidHexData": { + "message": "Invalid hex data" + }, + "invalidHexNumber": { + "message": "Invalid hexadecimal number." + }, + "invalidHexNumberLeadingZeros": { + "message": "Invalid hexadecimal number. Remove any leading zeros." + }, + "invalidIpfsGateway": { + "message": "Invalid IPFS Gateway: The value must be a valid URL" + }, + "invalidNumber": { + "message": "Invalid number. Enter a decimal or '0x'-prefixed hexadecimal number." + }, + "invalidNumberLeadingZeros": { + "message": "Invalid number. Remove any leading zeros." + }, + "invalidRPC": { + "message": "Invalid RPC URL" + }, + "invalidSeedPhrase": { + "message": "Invalid Secret Recovery Phrase" + }, + "invalidSeedPhraseCaseSensitive": { + "message": "Invalid input! Secret Recovery Phrase is case sensitive." + }, + "invalidSeedPhraseNotFound": { + "message": "Secret Recovery Phrase not found." + }, + "invalidValue": { + "message": "Invalid value" + }, + "ipfsGateway": { + "message": "IPFS gateway" + }, + "ipfsGatewayDescriptionV2": { + "message": "Uses third-party services to show images of your NFTs stored on IPFS, display information related to ENS addresses entered in your browser's address bar, and fetch icons for different tokens. Choose your preferred IPFS gateway below." + }, + "ipfsToggleModalDescriptionOne": { + "message": "We use third-party services to show images of your NFTs stored on IPFS, display information related to ENS addresses entered in your browser's address bar, and fetch icons for different tokens. Your IP address may be exposed to these services when you’re using them." + }, + "ipfsToggleModalDescriptionTwo": { + "message": "Selecting Confirm turns on IPFS resolution. You can turn it off in $1 at any time.", + "description": "$1 is the method to turn off ipfs" + }, + "ipfsToggleModalSettings": { + "message": "Settings > Security and privacy" + }, + "isSigningOrSubmitting": { + "message": "A previous transaction is still being signed or submitted" + }, + "isSigningOrSubmittingPayToken": { + "message": "You have a pending transaction on this network. Wait for it to complete or select a token on another network." + }, + "jazzicons": { + "message": "Jazzicons" + }, + "jsonFile": { + "message": "JSON File", + "description": "format for importing an account" + }, + "keycardShell": { + "message": "Keycard Shell" + }, + "keyringAccountName": { + "message": "Account name" + }, + "keyringAccountPublicAddress": { + "message": "Public address" + }, + "keyringSnapRemovalResult1": { + "message": "$1 $2removed", + "description": "Displays the result after removal of a keyring snap. $1 is the snap name, $2 is whether it is successful or not" + }, + "keyringSnapRemovalResultNotSuccessful": { + "message": "not ", + "description": "Displays the `not` word in $2." + }, + "keyringSnapRemoveConfirmation": { + "message": "Type $1 to confirm you want to remove this snap:", + "description": "Asks user to input the name nap prior to deleting the snap. $1 is the snap name" + }, + "keystone": { + "message": "Keystone" + }, + "knownAddressRecipient": { + "message": "Known contract address." + }, + "knownTokenWarning": { + "message": "This action will edit tokens that are already listed in your wallet, which can be used to phish you. Only approve if you are certain that you mean to change what these tokens represent. Learn more about $1" + }, + "language": { + "message": "Language" + }, + "lastSold": { + "message": "Last sold" + }, + "lattice": { + "message": "Lattice", + "description": "Hardware device name" + }, + "lavaDomeCopyWarning": { + "message": "For your safety, selecting this text is not available right now." + }, + "learnHow": { + "message": "Learn how" + }, + "learnMore": { + "message": "learn more" + }, + "learnMoreAboutGas": { + "message": "Want to $1 about gas?", + "description": "$1 will be replaced by the learnMore translation key" + }, + "learnMoreAboutPrivacy": { + "message": "Learn more about privacy best practices." + }, + "learnMoreKeystone": { + "message": "Learn more" + }, + "learnMoreUpperCase": { + "message": "Learn more" + }, + "learnMoreUpperCaseWithDot": { + "message": "Learn more" + }, + "learnScamRisk": { + "message": "scams and security risks." + }, + "leaveMetaMask": { + "message": "Leave MetaMask?" + }, + "leaveMetaMaskDesc": { + "message": "You're about to visit a site outside of MetaMask. Double-check the URL before continuing." + }, + "ledger": { + "message": "Ledger", + "description": "Hardware device name" + }, + "ledgerAccountRestriction": { + "message": "You need to make use your last account before you can add a new one." + }, + "ledgerConnectionInstructionCloseOtherApps": { + "message": "Close any other software connected to your device and then click here to refresh." + }, + "ledgerConnectionInstructionHeader": { + "message": "Prior to clicking confirm:" + }, + "ledgerConnectionInstructionStepFour": { + "message": "Enable \"smart contract data\" or \"blind signing\" on your Ledger device." + }, + "ledgerConnectionInstructionStepThree": { + "message": "Be sure your Ledger is plugged in and to select the Ethereum app." + }, + "ledgerDeviceOpenFailureMessage": { + "message": "The Ledger device failed to open. Your Ledger might be connected to other software. Please close Ledger Live or other applications connected to your Ledger device, and try to connect again." + }, + "ledgerErrorConnectionIssue": { + "message": "Reconnect your ledger, open the ETH app and try again." + }, + "ledgerErrorDevicedLocked": { + "message": "Your Ledger is locked. Unlock it then try again." + }, + "ledgerErrorEthAppNotOpen": { + "message": "To solve the issue, open the ETH application on your device and retry." + }, + "ledgerErrorTransactionDataNotPadded": { + "message": "Ethereum transaction's input data isn't sufficiently padded." + }, + "ledgerEthAppNftNotSupportedNotification": { + "message": "Ledger Nano S can't send or manage Ethereum NFTs. See upgrade options at https://shop.ledger.com/pages/ledger-nano-s-upgrade-program" + }, + "ledgerFirefoxNotSupportedDescription1": { + "message": "We're having trouble connecting to Ledger. Check out our " + }, + "ledgerFirefoxNotSupportedDescription2": { + "message": " on how to connect a hardware wallet, then try again." + }, + "ledgerFirefoxNotSupportedDescription3": { + "message": " Ledger no longer supports Firefox, so you might need to use a different browser." + }, + "ledgerFirefoxNotSupportedLink": { + "message": "guide" + }, + "ledgerFirefoxNotSupportedTitle": { + "message": "Firefox Not Supported" + }, + "ledgerLiveApp": { + "message": "Ledger Live App" + }, + "ledgerLocked": { + "message": "Cannot connect to Ledger device. Please make sure your device is unlocked and Ethereum app is opened." + }, + "ledgerMultipleDevicesUnsupportedInfoDescription": { + "message": "To connect a new device, disconnect the previous one." + }, + "ledgerMultipleDevicesUnsupportedInfoTitle": { + "message": "You can only connect one Ledger at a time" + }, + "ledgerTimeout": { + "message": "Ledger Live is taking too long to respond or connection timeout. Make sure Ledger Live app is opened and your device is unlocked." + }, + "ledgerWebHIDNotConnectedErrorMessage": { + "message": "The ledger device was not connected. If you wish to connect your Ledger, please click 'Continue' again and approve HID connection", + "description": "An error message shown to the user during the hardware connect flow." + }, + "lightTheme": { + "message": "Light" + }, + "likeToImportToken": { + "message": "Would you like to import this token?" + }, + "likeToImportTokens": { + "message": "Would you like to import these tokens?" + }, + "lineaMainnet": { + "message": "Linea" + }, + "lineaSepolia": { + "message": "Linea Sepolia test network" + }, + "link": { + "message": "Link" + }, + "linkCentralizedExchanges": { + "message": "Link your Coinbase or Binance accounts to transfer crypto to MetaMask for free." + }, + "loading": { + "message": "Loading..." + }, + "loadingScreenSnapMessage": { + "message": "Please complete the transaction on the Snap." + }, + "loadingTokenList": { + "message": "Loading token list" + }, + "localCurrency": { + "message": "Local currency" + }, + "localhost": { + "message": "Localhost 8545" + }, + "lock": { + "message": "Lock" + }, + "lockMetaMaskLoadingMessage": { + "message": "Locking MetaMask..." + }, + "logOut": { + "message": "Log out" + }, + "loginErrorConnectButton": { + "message": "Try again" + }, + "loginErrorConnectDescription": { + "message": "Your internet connection is unstable. Check your connection and try again." + }, + "loginErrorConnectTitle": { + "message": "Unable to connect" + }, + "loginErrorGenericButton": { + "message": "Try again" + }, + "loginErrorGenericDescription": { + "message": "An error occurred while logging in. Try again and if the issue continues, contact $1.", + "description": "$1 is the key 'loginErrorGenericSupport'" + }, + "loginErrorGenericSupport": { + "message": "MetaMask support" + }, + "loginErrorGenericTitle": { + "message": "Something went wrong" + }, + "loginErrorResetWalletDescription": { + "message": "An issue occurred while unlocking. Re-login with $1 and your MetaMask password.", + "description": "$1 is the social login method" + }, + "loginErrorSessionExpiredButton": { + "message": "Log in" + }, + "loginErrorSessionExpiredDescription": { + "message": "Your session has expired. Please log in again to continue." + }, + "loginErrorSessionExpiredTitle": { + "message": "Session has expired" + }, + "logo": { + "message": "$1 logo", + "description": "$1 is the name of the ticker" + }, + "low": { + "message": "Low" + }, + "lowGasSettingToolTipMessage": { + "message": "Use $1 to wait for a cheaper price. Time estimates are much less accurate as prices are somewhat unpredictable.", + "description": "$1 is key 'low' separated here so that it can be passed in with bold font-weight" + }, + "lowLowercase": { + "message": "low" + }, + "mainnet": { + "message": "Ethereum Mainnet" + }, + "mainnetToken": { + "message": "This address matches a known Ethereum Mainnet token address. Recheck the contract address and network for the token you are trying to add." + }, + "makeAnotherSwap": { + "message": "Create a new swap" + }, + "makeSmartContractsEasier": { + "message": "Make smart contracts easier to read" + }, + "makeSmartContractsEasierDescription": { + "message": "MetaMask uses 4byte.directory and Sourcify to translate this information." + }, + "manage": { + "message": "Manage" + }, + "manageDefaultSettings": { + "message": "Manage default settings" + }, + "manageInstitutionalWallets": { + "message": "Manage institutional wallets" + }, + "manageInstitutionalWalletsDescription": { + "message": "Turn this on to enable institutional wallets." + }, + "manageNetworksMenuHeading": { + "message": "Manage networks" + }, + "managePermissions": { + "message": "Manage permissions" + }, + "manageTokens": { + "message": "Manage tokens" + }, + "manageWalletRecovery": { + "message": "Manage wallet recovery" + }, + "marketCap": { + "message": "Market cap" + }, + "marketCapFDV": { + "message": "Market cap (FDV)" + }, + "marketDetails": { + "message": "Market details" + }, + "marketRate": { + "message": "Market rate" + }, + "maskicons": { + "message": "Polycons" + }, + "max": { + "message": "Max" + }, + "maxBaseFee": { + "message": "Max base fee" + }, + "maxBaseFeeMustBeGreaterThanPriorityFee": { + "message": "Max base fee must be greater than priority fee" + }, + "maxFee": { + "message": "Max fee" + }, + "maxFeeTooltip": { + "message": "A maximum fee provided to pay for the transaction." + }, + "maybeLater": { + "message": "Maybe later" + }, + "medium": { + "message": "Market" + }, + "mediumGasSettingToolTipMessage": { + "message": "Use $1 for fast processing at current market price.", + "description": "$1 is key 'medium' (text: 'Market') separated here so that it can be passed in with bold font-weight" + }, + "memo": { + "message": "memo" + }, + "merklRewardsClaimBonus": { + "message": "Claim bonus", + "description": "Short label shown in token list for tokens with claimable Merkl rewards" + }, + "merklRewardsToastFailed": { + "message": "Your mUSD bonus claim failed", + "description": "Toast message shown when a Merkl reward claim transaction fails or is dropped" + }, + "merklRewardsToastInProgress": { + "message": "Your mUSD bonus is processing", + "description": "Toast message shown when a Merkl reward claim transaction is being processed" + }, + "merklRewardsToastSuccess": { + "message": "Your mUSD bonus is here!", + "description": "Toast message shown when a Merkl reward claim transaction is confirmed" + }, + "merklRewardsUnexpectedError": { + "message": "Unexpected error. Please try again.", + "description": "Error message shown when claiming Merkl rewards fails" + }, + "message": { + "message": "Message" + }, + "metaMaskConnectStatusParagraphOne": { + "message": "You now have more control over your account connections in MetaMask." + }, + "metaMaskConnectStatusParagraphThree": { + "message": "Click it to manage your connected accounts." + }, + "metaMaskConnectStatusParagraphTwo": { + "message": "The connection status button shows if the website you’re visiting is connected to your currently selected account." + }, + "metaMetricsIdNotAvailableError": { + "message": "Since you've never opted into MetaMetrics, there's no data to delete here." + }, + "metadataModalSourceTooltip": { + "message": "$1 is hosted on npm and $2 is this Snap’s unique identifier.", + "description": "$1 is the snap name and $2 is the snap NPM id." + }, + "metamaskFee": { + "message": "MetaMask fee" + }, + "metamaskNotificationsAreOff": { + "message": "Wallet notifications are currently not active." + }, + "metamaskSwap": { + "message": "MetaMask Swap" + }, + "metamaskSwapsOfflineDescription": { + "message": "MetaMask Swaps is undergoing maintenance. Please check back later." + }, + "metamaskVersion": { + "message": "MetaMask Version" + }, + "methodData": { + "message": "Method" + }, + "methodDataTransactionDesc": { + "message": "Function executed based on decoded input data." + }, + "methodNotSupported": { + "message": "Not supported with this account." + }, + "metrics": { + "message": "Metrics" + }, + "minimumReceivedExplanation": { + "message": "The minimum you'll get if the price changes while your transaction processes, based on your slippage setting. The estimate comes from liquidity providers, so the final amount may differ." + }, + "minimumReceivedExplanationTitle": { + "message": "Minimum amount received" + }, + "minimumReceivedLabel": { + "message": "Minimum received" + }, + "minute": { + "message": "min" + }, + "mismatchedChainLinkText": { + "message": "verify the network details", + "description": "Serves as link text for the 'mismatchedChain' key. This text will be embedded inside the translation for that key." + }, + "mismatchedChainRecommendation": { + "message": "We recommend that you $1 before proceeding.", + "description": "$1 is a clickable link with text defined by the 'mismatchedChainLinkText' key. The link will open to instructions for users to validate custom network details." + }, + "mismatchedNetworkName": { + "message": "According to our record the network name may not correctly match this chain ID." + }, + "mismatchedNetworkSymbol": { + "message": "The submitted currency symbol does not match what we expect for this chain ID." + }, + "mismatchedRpcChainId": { + "message": "Chain ID returned by the custom network does not match the submitted chain ID." + }, + "mismatchedRpcUrl": { + "message": "According to our records the submitted RPC URL value does not match a known provider for this chain ID." + }, + "month": { + "message": "month" + }, + "monthly": { + "message": "Monthly" + }, + "more": { + "message": "more" + }, + "moreAccounts": { + "message": "+ $1 more accounts", + "description": "$1 is the number of accounts" + }, + "moreCapital": { + "message": "More" + }, + "moreNetworks": { + "message": "+ $1 more networks", + "description": "$1 is the number of networks" + }, + "moreQuotes": { + "message": "More quotes" + }, + "multichainAccountAddressCopied": { + "message": "Address copied", + "description": "Message displayed when the multichain account address is copied to clipboard" + }, + "multichainAccountIntroLearnMore": { + "message": "Learn more", + "description": "Button text to learn more about multichain accounts" + }, + "multichainAccountIntroSameAddressDescription": { + "message": "We’ve grouped your accounts, so keep using MetaMask the same as before. Your funds are safe and unchanged.", + "description": "Description explaining that accounts have been merged" + }, + "multichainAccountIntroSameAddressTitle": { + "message": "Same address, more networks", + "description": "Title for the second section of the multichain account intro modal" + }, + "multichainAccountIntroSettingUp": { + "message": "Setting up your accounts...", + "description": "Loading text shown while setting up multichain accounts" + }, + "multichainAccountIntroViewAccounts": { + "message": "View accounts", + "description": "Button text to view accounts from the intro modal" + }, + "multichainAccountIntroWhatDescription": { + "message": "A multichain account is an account with addresses on several networks, supported by MetaMask. So now you can use Ethereum, Solana, and more without switching accounts.", + "description": "Description explaining what multichain accounts are" + }, + "multichainAccountIntroWhatTitle": { + "message": "What are multichain accounts?", + "description": "Title for the first section of the multichain account intro modal" + }, + "multichainAccountPrivateKeyCopied": { + "message": "Private key copied", + "description": "Message displayed when the multichain account private key is copied to clipboard" + }, + "multichainAccountsIntroductionModalTitle": { + "message": "Introducing multichain accounts", + "description": "Title for the multichain accounts introduction modal." + }, + "multichainAddEthereumChainConfirmationDescription": { + "message": "You're adding this network to MetaMask and giving this site permission to use it." + }, + "multichainAddressViewAll": { + "message": "View all" + }, + "multichainProviderAccess": { + "message": "Grant Multichain provider access to $1", + "description": "The parameter is the name of the requesting origin" + }, + "multichainQuoteCardRateExplanation": { + "message": "The best rate we found from providers, including provider fees and a $1% MetaMask fee." + }, + "multichainQuoteCardRateLabel": { + "message": "Rate" + }, + "multipleSnapConnectionWarning": { + "message": "$1 wants to use $2 Snaps", + "description": "$1 is the dapp and $2 is the number of snaps it wants to connect to." + }, + "musdAssetBonusAccruing": { + "message": "Accruing next bonus", + "description": "Disabled claim button label shown when user holds mUSD but has no claimable bonus yet" + }, + "musdAssetBonusClaimAmount": { + "message": "Claim $1 bonus", + "description": "Label for the claim button in the mUSD asset details Your bonus section, where $1 is the formatted fiat amount (e.g., $10.27)" + }, + "musdAssetBonusEstimatedAnnual": { + "message": "Estimated annual bonus", + "description": "Label in the mUSD asset details Your bonus section" + }, + "musdAssetBonusInfoAria": { + "message": "Your bonus info", + "description": "Accessible name for the info icon that opens the Your bonus tooltip" + }, + "musdAssetBonusInfoEstimatedAnnual": { + "message": "A projection of what you'd earn over a year based on your current balance and rate. Rate is variable and may change.", + "description": "Explanation for Estimated annual bonus in the Your bonus info tooltip" + }, + "musdAssetBonusInfoLearnMore": { + "message": "Learn more.", + "description": "Link label at the bottom of the Your bonus info tooltip" + }, + "musdAssetBonusInfoLifetimeClaimed": { + "message": "The total bonus you've claimed since you started.", + "description": "Explanation for Lifetime bonus claimed in the Your bonus info tooltip" + }, + "musdAssetBonusInfoYourBonus": { + "message": "$1% annualized bonus you earn just for holding mUSD. You can claim it daily on Linea. $2", + "description": "$1 is the APY %, $2 is the 'Terms apply.' link" + }, + "musdAssetBonusLifetimeClaimed": { + "message": "Lifetime bonus claimed", + "description": "Label in the mUSD asset details Your bonus section" + }, + "musdAssetBonusNoAccruing": { + "message": "No accruing bonus", + "description": "Disabled claim button label shown when user holds no mUSD and has no bonus to claim" + }, + "musdAssetBonusRate": { + "message": "$1% bonus", + "description": "Tag next to Your bonus on the mUSD asset details page, where $1 is the bonus APY percentage (e.g., 3)" + }, + "musdAssetBonusTitle": { + "message": "Your bonus", + "description": "Section title on the mUSD asset details page" + }, + "musdAssetConvertBenefitDailyBonus": { + "message": "Daily bonus", + "description": "Benefit tag on the mUSD asset details convert section" + }, + "musdAssetConvertBenefitDollarBacked": { + "message": "Dollar-backed", + "description": "Benefit tag on the mUSD asset details convert section" + }, + "musdAssetConvertBenefitNoLockups": { + "message": "No lockups", + "description": "Benefit tag on the mUSD asset details convert section" + }, + "musdAssetConvertBenefitNoMetaMaskFee": { + "message": "No MetaMask fee", + "description": "Benefit tag on the mUSD asset details convert section" + }, + "musdAssetConvertDescriptionHighlight": { + "message": "$1% annualized bonus", + "description": "Shown in Figma accent lime (#baf24a) inside the mUSD asset details convert section description. $1 is the APY percentage." + }, + "musdAssetConvertDescriptionLead": { + "message": "Get a ", + "description": "Text before the green APY phrase on the mUSD asset details convert section" + }, + "musdAssetConvertDescriptionTail": { + "message": " by converting USDC, USDT, and DAI to mUSD.", + "description": "Text after the green APY phrase on the mUSD asset details convert section" + }, + "musdAssetConvertLearnMore": { + "message": "Learn more", + "description": "Button to open the mUSD support article from the asset details convert section" + }, + "musdAssetConvertTitle": { + "message": "Convert your stablecoins", + "description": "Title of the convert section on the mUSD asset details page" + }, + "musdAssetPositionBalance": { + "message": "Balance", + "description": "Label in the mUSD asset details Your position section" + }, + "musdAssetPositionTitle": { + "message": "Your position", + "description": "Section title on the mUSD asset details page" + }, + "musdAssetPositionValue": { + "message": "Value", + "description": "Label in the mUSD asset details Your position section (fiat value)" + }, + "musdBonusExplanation": { + "message": "Convert your stablecoins to mUSD and earn\nup to a $1% annualized bonus that you can\nclaim daily. $2", + "description": "$1 is the bonus APY percentage, $2 is the 'Terms apply' link" + }, + "musdBonusPoweredByRelay": { + "message": "Powered by Relay", + "description": "Attribution shown below mUSD bonus explanation on the conversion confirmation info popover" + }, + "musdBoostDescription": { + "message": "Convert your stablecoins to mUSD and get a $1% annualized bonus.", + "description": "$1 is the bonus percentage (e.g., 3)" + }, + "musdBoostTitle": { + "message": "Get $1% on your stablecoins", + "description": "$1 is the bonus percentage (e.g., 3)" + }, + "musdBuyMusd": { + "message": "Buy mUSD" + }, + "musdClaimSendingTo": { + "message": "Sending to", + "description": "Label for the account row in the mUSD claim confirmation screen when no wallet name is available" + }, + "musdClaimSendingToWallet": { + "message": "Sending to $1", + "description": "Label for the account row in the mUSD claim confirmation screen, where $1 is the wallet name" + }, + "musdClaimTitle": { + "message": "Claim bonus", + "description": "Title for the mUSD bonus claim confirmation screen" + }, + "musdClaimableBonus": { + "message": "Claimable bonus", + "description": "Label for the claimable bonus row in the mUSD conversion confirmation screen" + }, + "musdClaimableBonusTooltip": { + "message": "The annualized bonus you've earned for holding mUSD. Your bonus is claimable daily on Linea. $1", + "description": "$1 is the 'Terms apply' link" + }, + "musdClaimableBonusTooltipAria": { + "message": "Claimable bonus details", + "description": "Accessible name for the info control that opens the claimable bonus explanation popover" + }, + "musdConversionActivityTitle": { + "message": "Convert $1 to mUSD", + "description": "$1 is the source token symbol (e.g., USDC)" + }, + "musdConversionBonusTooltipAria": { + "message": "Bonus details", + "description": "Accessible name for the info control that opens the mUSD conversion bonus explanation popover" + }, + "musdConversionFeeTooltipDescription": { + "message": "mUSD conversion fees include network costs and may include provider fees. No MetaMask fee applies when you convert to mUSD.", + "description": "Body text shown above the fee breakdown in the transaction fee tooltip for mUSD conversion" + }, + "musdConversionTitle": { + "message": "Converted to mUSD", + "description": "Title shown in the transaction details modal for mUSD conversion transactions" + }, + "musdConversionToastFailed": { + "message": "mUSD conversion failed" + }, + "musdConversionToastInProgress": { + "message": "Converting $1 → mUSD", + "description": "$1 is the source token symbol (e.g., USDC)" + }, + "musdConversionToastSuccess": { + "message": "mUSD conversion successful" + }, + "musdConversionToastSuccessDescription": { + "message": "Bonus will be claimable within a day." + }, + "musdConvert": { + "message": "Convert" + }, + "musdConvertAndGetBonus": { + "message": "Convert and get $1%", + "description": "$1 is the bonus percentage (e.g., 3)" + }, + "musdEarnBonusPercentage": { + "message": "Earn a $1% bonus", + "description": "$1 is the bonus percentage (e.g., 3). Subtitle on the home token list mUSD Buy/Get CTA." + }, + "musdEducationGetStarted": { + "message": "Get started" + }, + "musdEducationHeadline": { + "message": "GET $1% ON\nSTABLECOINS", + "description": "$1 is the bonus APY percentage. Line break between ON and STABLECOINS matches splash layout." + }, + "musdEducationNotNow": { + "message": "Not now" + }, + "musdGetBonusPercentage": { + "message": "Get $1% mUSD bonus", + "description": "$1 is the bonus percentage (e.g., 3)" + }, + "musdGetMusd": { + "message": "Get mUSD" + }, + "musdMetaMaskUsd": { + "message": "MetaMask USD", + "description": "Product name shown as the title line on the home token list mUSD Buy/Get CTA" + }, + "musdSymbol": { + "message": "mUSD", + "description": "Token ticker for MetaMask USD (displayed next to balance on the mUSD asset details page)" + }, + "musdTermsApply": { + "message": "Terms apply." + }, + "mustSelectOne": { + "message": "Must select at least 1 token." + }, + "name": { + "message": "Name" + }, + "nameAddressLabel": { + "message": "Address", + "description": "Label above address field in name component modal." + }, + "nameAlreadyInUse": { + "message": "Name is already in use" + }, + "nameFooterTrustWarning": { + "message": "Only save addresses you trust.", + "description": "Footer warning text shown in name modal for malicious and warning addresses." + }, + "nameInstructionsMalicious": { + "message": "This has been identified as malicious. We recommend not interacting with this address.", + "description": "Instruction text in name component modal when address is malicious." + }, + "nameInstructionsNew": { + "message": "If you know this address, give it a nickname to recognize it in the future.", + "description": "Instruction text in name component modal when value is not recognised." + }, + "nameInstructionsRecognized": { + "message": "This address has a default nickname, but you can edit it or explore other suggestions.", + "description": "Instruction text in name component modal when value is recognized but not saved." + }, + "nameInstructionsSaved": { + "message": "You've added a nickname for this address before. You can edit or view other suggested nicknames.", + "description": "Instruction text in name component modal when value is saved." + }, + "nameInstructionsWarning": { + "message": "We can't verify this address. It may be new or unverified. Set a personal display name to identify it going forward.", + "description": "Instruction text in name component modal when address has warning signals." + }, + "nameLabel": { + "message": "Nickname", + "description": "Label above name input field in name component modal." + }, + "nameModalMaybeProposedName": { + "message": "Maybe: $1", + "description": "$1 is the proposed name" + }, + "nameModalTitleMalicious": { + "message": "Malicious address", + "description": "Title of the modal created by the name component when address is identified as malicious." + }, + "nameModalTitleNew": { + "message": "Unknown address", + "description": "Title of the modal created by the name component when value is not recognised." + }, + "nameModalTitleRecognized": { + "message": "Recognized address", + "description": "Title of the modal created by the name component when value is recognized but not saved." + }, + "nameModalTitleSaved": { + "message": "Saved address", + "description": "Title of the modal created by the name component when value is saved." + }, + "nameModalTitleVerified": { + "message": "Verified address", + "description": "Title of the modal created by the name component when address is verified." + }, + "nameModalTitleWarning": { + "message": "Address needs review", + "description": "Title of the modal created by the name component when address has warning trust signals." + }, + "nameProviderProposedBy": { + "message": "Proposed by $1", + "description": "$1 is the name of the provider" + }, + "nameProvider_ens": { + "message": "Ethereum Name Service (ENS)" + }, + "nameProvider_etherscan": { + "message": "Etherscan" + }, + "nameProvider_lens": { + "message": "Lens Protocol" + }, + "nameProvider_token": { + "message": "MetaMask" + }, + "nameResolutionFailedError": { + "message": "No address resolution found for this name." + }, + "nameResolutionZeroAddressError": { + "message": "Name resolver returned a zero address. This is likely an error." + }, + "nameSetPlaceholder": { + "message": "Choose a nickname...", + "description": "Placeholder text for name input field in name component modal." + }, + "nameSetPlaceholderSuggested": { + "message": "Suggested: $1", + "description": "$1 is the proposed name" + }, + "nativeNetworkPermissionRequestDescription": { + "message": "$1 is asking for your approval to:", + "description": "$1 represents dapp name" + }, + "nativeTokenScamWarningConversion": { + "message": "Edit network details" + }, + "nativeTokenScamWarningDescription": { + "message": "The native token symbol does not match the expected symbol of the native token for the network with the associated chain ID. You have entered $1 while the expected token symbol is $2. Please verify you are connected to the correct chain.", + "description": "$1 represents the currency name, $2 represents the expected currency symbol" + }, + "nativeTokenScamWarningDescriptionExpectedTokenFallback": { + "message": "something else", + "description": "graceful fallback for when token symbol isn't found" + }, + "nativeTokenScamWarningTitle": { + "message": "Unexpected native token symbol", + "description": "Title for nativeTokenScamWarningDescription" + }, + "needHelp": { + "message": "Need help? Contact $1", + "description": "$1 represents `needHelpLinkText`, the text which goes in the help link" + }, + "needHelpFeedback": { + "message": "Share your feedback" + }, + "needHelpLinkText": { + "message": "MetaMask support" + }, + "needHelpSubmitTicket": { + "message": "Submit a ticket" + }, + "needImportFile": { + "message": "You must select a file to import.", + "description": "User is important an account and needs to add a file to continue" + }, + "negativeOrZeroAmountToken": { + "message": "Cannot send negative or zero amounts of asset." + }, + "negativeValuesNotAllowed": { + "message": "Negative values are not allowed" + }, + "network": { + "message": "Network" + }, + "networkChanged": { + "message": "Network changed" + }, + "networkChangedMessage": { + "message": "You're now transacting on $1.", + "description": "$1 is the name of the network" + }, + "networkDetails": { + "message": "Network details" + }, + "networkFee": { + "message": "Network fee" + }, + "networkFeeExplanation": { + "message": "Network fees depend on how busy the network is and how complex your transaction is." + }, + "networkFeeExplanationTitle": { + "message": "Network fee" + }, + "networkMenu": { + "message": "Network menu" + }, + "networkMenuHeading": { + "message": "Select a network" + }, + "networkName": { + "message": "Network name" + }, + "networkNameBitcoin": { + "message": "Bitcoin" + }, + "networkNameBitcoinSegwit": { + "message": "Bitcoin Native SegWit" + }, + "networkNameDefinition": { + "message": "The name associated with this network." + }, + "networkNameEthereum": { + "message": "Ethereum" + }, + "networkNameGoerli": { + "message": "Goerli" + }, + "networkNamePolygon": { + "message": "Polygon" + }, + "networkNameSolana": { + "message": "Solana" + }, + "networkNameTron": { + "message": "Tron" + }, + "networkOptions": { + "message": "Network options" + }, + "networkPermissionToast": { + "message": "Network permissions updated" + }, + "networkStatus": { + "message": "Network status" + }, + "networkStatusBaseFeeTooltip": { + "message": "The base fee is set by the network and changes every 13-14 seconds. Our $1 and $2 options account for sudden increases.", + "description": "$1 and $2 are bold text for Medium and Aggressive respectively." + }, + "networkStatusPriorityFeeTooltip": { + "message": "Range of priority fees (aka “miner tip”). This goes to miners and incentivizes them to prioritize your transaction." + }, + "networkStatusStabilityFeeTooltip": { + "message": "Gas fees are $1 relative to the past 72 hours.", + "description": "$1 is networks stability value - stable, low, high" + }, + "networkSuggested": { + "message": "Network suggested" + }, + "networkTabCustom": { + "message": "Custom" + }, + "networkTabPopular": { + "message": "Popular" + }, + "networkURL": { + "message": "Network URL" + }, + "networkURLDefinition": { + "message": "The URL used to access this network." + }, + "networkUrlErrorWarning": { + "message": "Attackers sometimes mimic sites by making small changes to the site address. Make sure you're interacting with the intended site before you continue. Punycode version: $1", + "description": "$1 replaced by RPC URL for network" + }, + "networks": { + "message": "Networks" + }, + "networksSmallCase": { + "message": "networks" + }, + "nevermind": { + "message": "Nevermind" + }, + "new": { + "message": "New!" + }, + "newAccount": { + "message": "New account" + }, + "newAccountIconMessage": { + "message": "Weʼve refreshed account icons to help you tell your accounts apart more easily. You can change the style in $1 > $2 > $3.", + "description": "$1, $2, and $3 are bold text for Settings, General, and Account icon respectively" + }, + "newAccountIconTitle": { + "message": "New account icon" + }, + "newAccountNumberName": { + "message": "Account $1", + "description": "Default name of next account to be created on create account screen" + }, + "newContract": { + "message": "New contract" + }, + "newNFTDetectedInImportNFTsMessageStrongText": { + "message": "Settings > Security and privacy" + }, + "newNFTDetectedInImportNFTsMsg": { + "message": "To use Opensea to see your NFTs, turn on 'Display NFT Media' in $1.", + "description": "$1 is used for newNFTDetectedInImportNFTsMessageStrongText" + }, + "newNFTDetectedInNFTsTabMessage": { + "message": "Let MetaMask automatically detect and display NFTs in your wallet." + }, + "newNFTsAutodetected": { + "message": "NFT autodetection" + }, + "newNetworkAdded": { + "message": "“$1” was successfully added!" + }, + "newNetworkEdited": { + "message": "“$1” was successfully edited!" + }, + "newNftAddedMessage": { + "message": "NFT was successfully added!" + }, + "newPassword": { + "message": "New password" + }, + "newPasswordCreate": { + "message": "Create new password" + }, + "newPrivacyPolicyActionButton": { + "message": "Read more" + }, + "newPrivacyPolicyTitle": { + "message": "We’ve updated our privacy policy" + }, + "newRpcUrl": { + "message": "New RPC URL" + }, + "newTokensImportedMessage": { + "message": "You’ve successfully imported $1.", + "description": "$1 is the string of symbols of all the tokens imported" + }, + "newTokensImportedTitle": { + "message": "Token imported" + }, + "next": { + "message": "Next" + }, + "nftAddFailedMessage": { + "message": "NFT can’t be added as the ownership details do not match. Make sure you have entered correct information." + }, + "nftAddressError": { + "message": "This token is an NFT. Add on the $1", + "description": "$1 is a clickable link with text defined by the 'importNFTPage' key" + }, + "nftAlreadyAdded": { + "message": "NFT has already been added." + }, + "nftAutoDetectionEnabled": { + "message": "NFT autodetection enabled" + }, + "nftBought": { + "message": "Bought $1" + }, + "nftEmptyDescription": { + "message": "There's a world of NFTs out there. Start your collection today." + }, + "nftMinted": { + "message": "Minted $1" + }, + "nftOptions": { + "message": "NFT Options" + }, + "nftTokenIdPlaceholder": { + "message": "Enter the token id" + }, + "nftWarningContent": { + "message": "You're granting access to $1, including any you might own in the future. The party on the other end can transfer these NFTs from your wallet at any time without asking you until you revoke this approval. $2", + "description": "$1 is nftWarningContentBold bold part, $2 is Learn more link" + }, + "nftWarningContentBold": { + "message": "all your $1 NFTs", + "description": "$1 is name of the collection" + }, + "nftWarningContentGrey": { + "message": "Proceed with caution." + }, + "nfts": { + "message": "NFTs" + }, + "nftsPreviouslyOwned": { + "message": "Previously owned" + }, + "nickname": { + "message": "Nickname" + }, + "no": { + "message": "No" + }, + "noAccountsFound": { + "message": "No accounts found for the given search query" + }, + "noConnectionDescription": { + "message": "MetaMask isn't connected to this site. To get started, select the site's Connect button." + }, + "noDefaultAddress": { + "message": "No $1 address", + "description": "$1 is the default address scope" + }, + "noDomainResolution": { + "message": "No resolution for domain provided." + }, + "noHardwareWalletOrSnapsSupport": { + "message": "Snaps, and most hardware wallets, will not work with your current browser version." + }, + "noMMFeeSwapping": { + "message": "No MetaMask fee" + }, + "noNetworkFee": { + "message": "No network fee" + }, + "noNetworksAvailable": { + "message": "No networks available" + }, + "noNetworksFound": { + "message": "No networks found for the given search query" + }, + "noNetworksSelected": { + "message": "No networks selected" + }, + "noOptionsAvailableMessage": { + "message": "This trade route isn't available right now. Try changing the amount, network, or token and we'll find the best option." + }, + "noSnaps": { + "message": "You don't have any snaps installed." + }, + "noTokensMatchSearch": { + "message": "No tokens match your search" + }, + "noTokensMatchingYourFilters": { + "message": "No tokens matching your filters" + }, + "noTokensToManage": { + "message": "You don't have any tokens yet. Search by name or address to discover popular tokens." + }, + "noWebcamFound": { + "message": "Your computer's webcam was not found. Please try again." + }, + "noWebcamFoundTitle": { + "message": "Webcam not found" + }, + "noZeroValue": { + "message": "$1 must be greater than 0" + }, + "nonContractAddressAlertDesc": { + "message": "You're sending call data to an address that isn't a contract. This could cause you to lose funds. Make sure you're using the correct address and network before continuing." + }, + "nonContractAddressAlertTitle": { + "message": "Potential mistake" + }, + "nonce": { + "message": "Nonce" + }, + "none": { + "message": "None" + }, + "notBusy": { + "message": "Not busy" + }, + "notCurrentAccount": { + "message": "Is this the correct account? It's different from the currently selected account in your wallet" + }, + "notEnoughGas": { + "message": "Not enough gas" + }, + "notificationDetail": { + "message": "Details" + }, + "notificationDetailBaseFee": { + "message": "Base fee (GWEI)" + }, + "notificationDetailGasLimit": { + "message": "Gas limit (units)" + }, + "notificationDetailGasUsed": { + "message": "Gas used (units)" + }, + "notificationDetailMaxFee": { + "message": "Max fee per gas" + }, + "notificationDetailNetwork": { + "message": "Network" + }, + "notificationDetailNetworkFee": { + "message": "Network fee" + }, + "notificationDetailPriorityFee": { + "message": "Priority fee (GWEI)" + }, + "notificationItemCheckBlockExplorer": { + "message": "Check on the block explorer" + }, + "notificationItemCollection": { + "message": "Collection" + }, + "notificationItemConfirmed": { + "message": "Confirmed" + }, + "notificationItemError": { + "message": "Unable to retrieve fees currently" + }, + "notificationItemFrom": { + "message": "From" + }, + "notificationItemLidoStakeReadyToBeWithdrawn": { + "message": "Withdrawal ready" + }, + "notificationItemLidoStakeReadyToBeWithdrawnMessage": { + "message": "You can now withdraw your unstaked $1" + }, + "notificationItemLidoWithdrawalRequestedMessage": { + "message": "Your request to unstake $1 has been sent" + }, + "notificationItemNFTReceivedFrom": { + "message": "Received NFT from" + }, + "notificationItemNFTSentTo": { + "message": "Sent NFT to" + }, + "notificationItemNetwork": { + "message": "Network" + }, + "notificationItemRate": { + "message": "Rate (fee included)" + }, + "notificationItemReceived": { + "message": "Received" + }, + "notificationItemReceivedFrom": { + "message": "Received from" + }, + "notificationItemSent": { + "message": "Sent" + }, + "notificationItemSentTo": { + "message": "Sent to" + }, + "notificationItemStakeCompleted": { + "message": "Stake completed" + }, + "notificationItemStaked": { + "message": "Staked" + }, + "notificationItemStakingProvider": { + "message": "Staking provider" + }, + "notificationItemStatus": { + "message": "Status" + }, + "notificationItemSwapped": { + "message": "Swapped" + }, + "notificationItemSwappedFor": { + "message": "for" + }, + "notificationItemTo": { + "message": "To" + }, + "notificationItemTransactionId": { + "message": "Transaction ID" + }, + "notificationItemUnStakeCompleted": { + "message": "UnStaking complete" + }, + "notificationItemUnStaked": { + "message": "Unstaked" + }, + "notificationItemUnStakingRequested": { + "message": "Unstaking requested" + }, + "notificationTransactionFailedMessage": { + "message": "Transaction $1 failed! $2", + "description": "Content of the browser notification that appears when a transaction fails" + }, + "notificationTransactionFailedTitle": { + "message": "Failed transaction", + "description": "Title of the browser notification that appears when a transaction fails" + }, + "notificationTransactionSuccessMessage": { + "message": "Transaction $1 confirmed!", + "description": "Content of the browser notification that appears when a transaction is confirmed" + }, + "notificationTransactionSuccessTitle": { + "message": "Confirmed transaction", + "description": "Title of the browser notification that appears when a transaction is confirmed" + }, + "notificationTransactionSuccessView": { + "message": "View on $1", + "description": "Additional content in a notification that appears when a transaction is confirmed and has a block explorer URL." + }, + "notificationTransactionWithoutNonceFailedMessage": { + "message": "Transaction failed! $1", + "description": "Content of the browser notification that appears when a EIP-7702 transaction fails" + }, + "notificationTransactionWithoutNonceSuccessMessage": { + "message": "Transaction confirmed!", + "description": "Content of the browser notification that appears when a nonce-less transaction is confirmed" + }, + "notifications": { + "message": "Notifications" + }, + "notificationsFeatureToggle": { + "message": "Enable wallet notifications", + "description": "Experimental feature title" + }, + "notificationsFeatureToggleDescription": { + "message": "This enables wallet notifications like send/receive funds or nfts and feature announcements.", + "description": "Description of the experimental notifications feature" + }, + "notificationsMarkAllAsRead": { + "message": "Mark all as read" + }, + "notificationsPageEmptyTitle": { + "message": "Nothing to see here" + }, + "notificationsPageErrorContent": { + "message": "Please, try to visit this page again." + }, + "notificationsPageErrorTitle": { + "message": "There has been an error" + }, + "notificationsPageNoNotificationsContent": { + "message": "You have not received any notifications yet." + }, + "notificationsSettingsBoxError": { + "message": "Something went wrong. Please try again." + }, + "notificationsSettingsPageAllowNotifications": { + "message": "Stay in the loop on what’s happening in your wallet with notifications. To use notifications, we use a profile to sync some settings across your devices. $1 we protect your privacy while using this feature." + }, + "notificationsSettingsPageAllowNotificationsLink": { + "message": "Learn how" + }, + "numberOfTokens": { + "message": "Number of tokens" + }, + "ofTextNofM": { + "message": "of" + }, + "off": { + "message": "Off" + }, + "offlineForMaintenance": { + "message": "Offline for maintenance" + }, + "ok": { + "message": "Ok" + }, + "on": { + "message": "On" + }, + "onboardedMetametricsAccept": { + "message": "I agree" + }, + "onboardedMetametricsDisagree": { + "message": "No thanks" + }, + "onboardedMetametricsKey1": { + "message": "Latest developments" + }, + "onboardedMetametricsKey2": { + "message": "Product features" + }, + "onboardedMetametricsKey3": { + "message": "Other relevant promotional materials" + }, + "onboardedMetametricsLink": { + "message": "MetaMetrics" + }, + "onboardedMetametricsParagraph1": { + "message": "In addition to $1, we'd like to use data to understand how you interact with marketing communications.", + "description": "$1 represents the 'onboardedMetametricsLink' locale string" + }, + "onboardedMetametricsParagraph2": { + "message": "This helps us personalize what we share with you, like:" + }, + "onboardedMetametricsParagraph3": { + "message": "Remember, we never sell the data you provide and you can opt out any time." + }, + "onboardedMetametricsTitle": { + "message": "Help us enhance your experience" + }, + "onboardingAdvancedPrivacyIPFSDescription": { + "message": "The IPFS gateway makes it possible to access and view data hosted by third parties. You can add a custom IPFS gateway or continue using the default." + }, + "onboardingAdvancedPrivacyIPFSInvalid": { + "message": "Please enter a valid URL" + }, + "onboardingAdvancedPrivacyIPFSTitle": { + "message": "Add custom IPFS Gateway" + }, + "onboardingAdvancedPrivacyIPFSValid": { + "message": "IPFS gateway URL is valid" + }, + "onboardingAdvancedPrivacyNetworkDescription": { + "message": "When you use our default settings and configurations, we use Infura as our default remote procedure call (RPC) provider to offer the most reliable and private access to Ethereum data we can. In limited cases, we may use other RPC providers in order to provide the best experience for our users. You can choose your own RPC, but remember that any RPC will receive your IP address and Ethereum wallet to make transactions. To learn more about how Infura handles data for EVM accounts, read our $1; for Solana accounts, $2." + }, + "onboardingAdvancedPrivacyNetworkDescriptionCallToAction": { + "message": "click here" + }, + "onboardingAdvancedPrivacyNetworkTitle": { + "message": "Choose your network" + }, + "onboardingContinueWith": { + "message": "Continue with $1", + "description": "$1 is the type of login used Google, Apple, etc." + }, + "onboardingCreateWallet": { + "message": "Create a new wallet" + }, + "onboardingImportWallet": { + "message": "I have an existing wallet" + }, + "onboardingLoginFooter": { + "message": "By continuing, I agree to MetaMask’s $1 and $2" + }, + "onboardingLoginFooterPrivacyNotice": { + "message": "Privacy notice" + }, + "onboardingLoginFooterTermsOfUse": { + "message": "Terms of Use" + }, + "onboardingMetametricCheckboxDescriptionOneUpdated": { + "message": "We’ll collect basic product usage data. We may associate this information with on-chain data." + }, + "onboardingMetametricCheckboxDescriptionTwo": { + "message": "We’ll use this data to learn how you interact with our marketing communications. We may share relevant news (like product features)." + }, + "onboardingMetametricCheckboxTitleOne": { + "message": "Gather basic usage data" + }, + "onboardingMetametricCheckboxTitleTwo": { + "message": "Product updates" + }, + "onboardingMetametricsContinue": { + "message": "Continue" + }, + "onboardingMetametricsDescription": { + "message": "We’d like to request these permissions. You can opt out or delete your usage data at any time." + }, + "onboardingMetametricsTitle": { + "message": "Help improve MetaMask" + }, + "onboardingOptionIcon": { + "message": "$1 icon", + "description": "$1 is the icon name" + }, + "onboardingSignInWith": { + "message": "Sign in with $1", + "description": "$1 is the type of login used Google, Apple, etc" + }, + "onboardingSrpCreate": { + "message": "Use Secret Recovery Phrase" + }, + "onboardingSrpImport": { + "message": "Import using Secret Recovery Phrase" + }, + "onboardingSrpImportError": { + "message": "Use only lowercase letters, check your spelling, and put the words in the original order." + }, + "onboardingSrpInputClearAll": { + "message": "Clear all" + }, + "onboardingSrpInputPlaceholder": { + "message": "Add a space between each word and make sure no one is watching." + }, + "oneKey": { + "message": "OneKey", + "description": "Hardware device name" + }, + "only": { + "message": "only" + }, + "onlyConnectTrust": { + "message": "Only connect with sites you trust. $1", + "description": "Text displayed above the buttons for connection confirmation. $1 is the link to the learn more web page." + }, + "onlyIntegersAllowed": { + "message": "Only whole numbers are allowed" + }, + "onlyNumbersAllowed": { + "message": "Only numbers are allowed" + }, + "openFullScreen": { + "message": "Open full screen" + }, + "openFullScreenForLedgerWebHid": { + "message": "Go to full screen to connect your Ledger.", + "description": "Shown to the user on the confirm screen when they are viewing MetaMask in a popup window but need to connect their ledger via webhid." + }, + "openInBlockExplorer": { + "message": "Open in block explorer" + }, + "openMultichainAccountAddressMenu": { + "message": "Open multichain account address menu" + }, + "openSettings": { + "message": "Open settings" + }, + "openWallet": { + "message": "Open wallet" + }, + "options": { + "message": "Options" + }, + "or": { + "message": "Or" + }, + "origin": { + "message": "Origin" + }, + "originChanged": { + "message": "Site changed" + }, + "originChangedMessage": { + "message": "You're now reviewing a request from $1.", + "description": "$1 is the name of the origin" + }, + "osTheme": { + "message": "System" + }, + "other": { + "message": "other" + }, + "otherPermissionsOnSiteDescription": { + "message": "The following permissions were also found on this site. Do you want to remove them?" + }, + "otherPermissionsOnSiteTitle": { + "message": "Other permissions on this site" + }, + "otherSnaps": { + "message": "other snaps", + "description": "Used in the 'permission_rpc' message." + }, + "others": { + "message": "others" + }, + "outdatedBrowserNotification": { + "message": "Your browser is out of date. If you don't update your browser, you won't be able to get security patches and new features from MetaMask." + }, + "overrideContentSecurityPolicyHeader": { + "message": "Override Content-Security-Policy header" + }, + "padlock": { + "message": "Padlock" + }, + "paidByMetaMask": { + "message": "Paid by MetaMask" + }, + "paidWith": { + "message": "Paid with" + }, + "participateInMetaMetrics": { + "message": "Participate in MetaMetrics" + }, + "participateInMetaMetricsDescription": { + "message": "Participate in MetaMetrics to help us make MetaMask better" + }, + "passkeyAuthMethodBiometrics": { + "message": "Biometrics", + "description": "Default OS-agnostic noun for the passkey auth method, used as $1 substitution in passkey messages on macOS / Linux / other OSes." + }, + "passkeyAuthMethodTouchId": { + "message": "Touch ID", + "description": "Apple Touch ID brand name, used as $1 substitution on macOS for descriptive passkey copy that names the underlying feature." + }, + "passkeyAuthMethodWindowsHello": { + "message": "Windows Hello", + "description": "Microsoft Windows Hello brand name, used as $1 substitution on Windows for all passkey copy." + }, + "passkeyDescription": { + "message": "Use $1 to unlock MetaMask instead of entering your password. This creates a passkey on this device only.", + "description": "Description of the passkey unlock feature on the setup / settings screens. $1 is the OS-specific auth-method noun (Touch ID on macOS, Windows Hello on Windows, Biometrics elsewhere)." + }, + "passkeyErrorAlreadyEnrolled": { + "message": "$1 is already set up for this wallet.", + "description": "Shown when starting passkey enrollment while a passkey is already enrolled. $1 is the OS-specific auth-method noun (Biometrics / Touch ID / Windows Hello)." + }, + "passkeyErrorAuthenticationVerificationFailed": { + "message": "We couldn't verify your $1. Try again.", + "description": "Shown when passkey authentication response verification fails. $1 is the OS-specific auth-method noun (Biometrics / Touch ID / Windows Hello)." + }, + "passkeyErrorMissingKeyMaterial": { + "message": "Your $1 response was incomplete. Try again.", + "description": "Shown when the passkey assertion is missing required key material. $1 is the OS-specific auth-method noun (Biometrics / Touch ID / Windows Hello)." + }, + "passkeyErrorNoAuthenticationCeremony": { + "message": "$1 sign-in session expired. Try again.", + "description": "Shown when passkey authentication runs without an active authentication ceremony. $1 is the OS-specific auth-method noun (Biometrics / Touch ID / Windows Hello)." + }, + "passkeyErrorNoRegistrationCeremony": { + "message": "$1 setup session expired. Try again from the beginning.", + "description": "Shown when passkey registration verification runs without an active registration ceremony. $1 is the OS-specific auth-method noun (Biometrics / Touch ID / Windows Hello)." + }, + "passkeyErrorNotEnrolled": { + "message": "$1 isn't set up for this wallet. Turn on $1 in Settings.", + "description": "Shown when biometrics unlock fails because no passkey is enrolled. $1 is the OS-specific auth-method noun (Biometrics / Touch ID / Windows Hello)." + }, + "passkeyErrorRegistrationFailed": { + "message": "$1 setup failed. Try again", + "description": "Shown when onboarding biometrics registration fails with an unknown error (after specific biometrics error messages). $1 is the OS-specific auth-method noun (Biometrics / Touch ID / Windows Hello)." + }, + "passkeyErrorRegistrationVerificationFailed": { + "message": "We couldn't verify your $1 setup. Try again.", + "description": "Shown when passkey registration response verification fails. $1 is the OS-specific auth-method noun (Biometrics / Touch ID / Windows Hello)." + }, + "passkeyErrorVaultKeyDecryptionFailed": { + "message": "We couldn't unlock with $1. Try again, or set up $1 again in Settings.", + "description": "Shown when the wrapped vault key cannot be decrypted with the passkey-derived key. $1 is the OS-specific auth-method noun (Biometrics / Touch ID / Windows Hello)." + }, + "passkeyErrorVaultKeyMismatch": { + "message": "$1 doesn't match your current wallet lock. Set up $1 again in Settings.", + "description": "Shown when renewing passkey protection and the decrypted key does not match the expected vault key. $1 is the OS-specific auth-method noun (Biometrics / Touch ID / Windows Hello)." + }, + "passkeyErrorVaultKeyRenewalFailed": { + "message": "Your password was updated, but $1 unlock couldn't be turned on.", + "description": "Shown after a successful wallet password change when re-wrapping the vault key for passkey fails and passkey enrollment is cleared. $1 is the OS-specific auth-method noun (Biometrics / Touch ID / Windows Hello)." + }, + "passkeyErrorVerificationFailed": { + "message": "We couldn't verify your $1. Try again or use your password.", + "description": "Shown when biometrics verification fails while turning off biometrics unlock in Settings and the error has no known passkey code. $1 is the OS-specific auth-method noun (Biometrics / Touch ID / Windows Hello)." + }, + "passkeySetupStepRegister": { + "message": "Register $1", + "description": "Onboarding step label. $1 is the OS-specific auth-method noun (Biometrics / Touch ID / Windows Hello)." + }, + "passkeySetupStepVerify": { + "message": "Validate $1", + "description": "Onboarding step label. $1 is the OS-specific auth-method noun (Biometrics / Touch ID / Windows Hello)." + }, + "passkeyTroubleshootModalDescription": { + "message": "Try opening the extension in a full screen window and try again.", + "description": "Explains that unlocking with a passkey may work better in a full screen MetaMask window." + }, + "passkeyTroubleshootModalOpenFullScreen": { + "message": "Open full screen window", + "description": "Button that opens MetaMask unlock in a full browser tab." + }, + "passkeyTroubleshootModalStillHavingTrouble": { + "message": "Still having trouble?", + "description": "Link text to open MetaMask support when passkey unlock troubleshooting did not help." + }, + "passkeyTroubleshootUnlock": { + "message": "Trouble unlocking?", + "description": "Opens MetaMask in a full browser tab when passkey is unreliable in the side panel." + }, + "passkeyTroubleshootUnlockModalTitle": { + "message": "Trouble unlocking", + "description": "Title for the modal shown when the user needs help unlocking with a passkey from the side panel." + }, + "passkeyTroubleshootVerify": { + "message": "Trouble verifying?", + "description": "Link to open passkey troubleshooting when verifying identity (not unlock), e.g. change password or security settings in the side panel." + }, + "passkeyTroubleshootVerifyModalTitle": { + "message": "Trouble verifying?", + "description": "Title for the passkey troubleshoot modal when the user needs help verifying with a passkey outside of unlock (e.g. security settings or change password)." + }, + "passkeyTurnedOff": { + "message": "$1 turned off", + "description": "Toast shown after passkey unlock is turned off. $1 is the OS-specific auth-method noun (Biometrics / Touch ID / Windows Hello)." + }, + "passkeyTurnedOn": { + "message": "$1 turned on", + "description": "Toast shown after passkey unlock is turned on. $1 is the OS-specific auth-method noun (Biometrics / Touch ID / Windows Hello)." + }, + "passkeyUnlockFailed": { + "message": "$1 unlock failed. Try your password.", + "description": "Generic fallback message when passkey unlock fails. $1 is the OS-specific auth-method noun (Biometrics / Touch ID / Windows Hello)." + }, + "passkeyVerifyingDescription": { + "message": "Use $1 to verify instead of entering your password.", + "description": "Supporting line under the passkey verification heading while WebAuthn runs (e.g. change password). $1 is the OS-specific auth-method noun (Biometrics / Touch ID / Windows Hello)." + }, + "passkeyVerifyingTitle": { + "message": "Confirm with $1", + "description": "Heading while the wallet waits for passkey verification (e.g. change password). $1 is the OS-specific auth-method noun (Biometrics / Touch ID / Windows Hello)." + }, + "password": { + "message": "Password" + }, + "passwordChangedRecently": { + "message": "Your password was changed" + }, + "passwordChangedRecentlyDescription": { + "message": "Enter your new password to stay logged into MetaMask." + }, + "passwordNotLongEnough": { + "message": "Must be at least 8 characters" + }, + "passwordTermsWarning": { + "message": "If I lose this password, MetaMask can’t reset it." + }, + "passwordTermsWarningSocial": { + "message": "If I forget this password, I’ll lose access to my wallet permanently. MetaMask can’t reset it for me." + }, + "passwordToggleHide": { + "message": "Hide password" + }, + "passwordToggleShow": { + "message": "Show password" + }, + "passwordsDontMatch": { + "message": "Passwords don't match" + }, + "paste": { + "message": "Paste" + }, + "pastePrivateKey": { + "message": "Enter your private key string here:", + "description": "For importing an account from a private key" + }, + "payWith": { + "message": "Pay with", + "description": "Label for pay with row showing which token is used to pay transaction fees" + }, + "payWithModalTitle": { + "message": "Pay with", + "description": "Title for the pay with modal that allows users to select which token to pay transaction fees with" + }, + "payee": { + "message": "Payee" + }, + "pending": { + "message": "Pending" + }, + "pendingConfirmationAddNetworkAlertMessage": { + "message": "Updating network will cancel $1 pending transactions from this site.", + "description": "Number of transactions." + }, + "pendingConfirmationSwitchNetworkAlertMessage": { + "message": "Switching network will cancel $1 pending transactions from this site.", + "description": "Number of transactions." + }, + "pendingTransactionAlertMessage": { + "message": "This transaction won't go through until a previous transaction is complete. $1", + "description": "$1 represents the words 'how to cancel or speed up a transaction' in a hyperlink" + }, + "pendingTransactionAlertMessageHyperlink": { + "message": "Learn how to cancel or speed up a transaction.", + "description": "The text for the hyperlink in the pending transaction alert message" + }, + "perSecond": { + "message": "per second" + }, + "percentChange": { + "message": "Percent change" + }, + "permissionFor": { + "message": "Permission for" + }, + "permissionFrom": { + "message": "Permission from" + }, + "permissionRequested": { + "message": "Requested now" + }, + "permissionRequestedForAccounts": { + "message": "Requested now for $1", + "description": "Permission cell status for requested permission including accounts, rendered as AvatarGroup which is $1." + }, + "permissionRevoked": { + "message": "Revoked in this update" + }, + "permissionRevokedForAccounts": { + "message": "Revoked in this update for $1", + "description": "Permission cell status for revoked permission including accounts, rendered as AvatarGroup which is $1." + }, + "permission_accessNamedSnap": { + "message": "Connect to $1.", + "description": "The description for the `wallet_snap` permission. $1 is the human-readable name of the snap." + }, + "permission_accessNetwork": { + "message": "Access the internet.", + "description": "The description of the `endowment:network-access` permission." + }, + "permission_accessNetworkDescription": { + "message": "Allow $1 to access the internet. This can be used to both send and receive data with third-party servers.", + "description": "An extended description of the `endowment:network-access` permission. $1 is the snap name." + }, + "permission_accessSnap": { + "message": "Connect to the $1 snap.", + "description": "The description for the `wallet_snap` permission. $1 is the name of the snap." + }, + "permission_accessSnapDescription": { + "message": "Allow the website or snap to interact with $1.", + "description": "The description for the `wallet_snap_*` permission. $1 is the name of the Snap." + }, + "permission_assets": { + "message": "Display account assets in MetaMask.", + "description": "The description for the `endowment:assets` permission." + }, + "permission_assetsDescription": { + "message": "Allow $1 to provide asset information to the MetaMask client. The assets can be onchain or offchain.", + "description": "An extended description for the `endowment:assets` permission. $1 is the name of the Snap." + }, + "permission_cronjob": { + "message": "Schedule and execute periodic actions.", + "description": "The description for the `snap_cronjob` permission" + }, + "permission_cronjobDescription": { + "message": "Allow $1 to perform actions that run periodically at fixed times, dates, or intervals. This can be used to trigger time-sensitive interactions or notifications.", + "description": "An extended description for the `snap_cronjob` permission. $1 is the snap name." + }, + "permission_dialog": { + "message": "Display dialog windows in MetaMask.", + "description": "The description for the `snap_dialog` permission" + }, + "permission_dialogDescription": { + "message": "Allow $1 to display MetaMask popups with custom text, input field, and buttons to approve or reject an action.\nCan be used to create e.g. alerts, confirmations, and opt-in flows for a snap.", + "description": "An extended description for the `snap_dialog` permission. $1 is the snap name." + }, + "permission_ethereumAccounts": { + "message": "See address, account balance, activity and suggest transactions to approve", + "description": "The description for the `eth_accounts` permission" + }, + "permission_ethereumProvider": { + "message": "Access the Ethereum provider.", + "description": "The description for the `endowment:ethereum-provider` permission" + }, + "permission_ethereumProviderDescription": { + "message": "Allow $1 to communicate with MetaMask directly, in order for it to read data from the blockchain and suggest messages and transactions.", + "description": "An extended description for the `endowment:ethereum-provider` permission. $1 is the snap name." + }, + "permission_getEntropy": { + "message": "Derive arbitrary keys unique to $1.", + "description": "The description for the `snap_getEntropy` permission. $1 is the snap name." + }, + "permission_getEntropyDescription": { + "message": "Allow $1 to derive arbitrary keys unique to $1, without exposing them. These keys are separate from your MetaMask account(s) and not related to your private keys or Secret Recovery Phrase. Other snaps cannot access this information.", + "description": "An extended description for the `snap_getEntropy` permission. $1 is the snap name." + }, + "permission_getLocale": { + "message": "View your preferred language.", + "description": "The description for the `snap_getLocale` permission" + }, + "permission_getLocaleDescription": { + "message": "Let $1 access your preferred language from your MetaMask settings. This can be used to localize and display $1's content using your language.", + "description": "An extended description for the `snap_getLocale` permission. $1 is the snap name." + }, + "permission_getPreferences": { + "message": "See information like your preferred language and fiat currency.", + "description": "The description for the `snap_getPreferences` permission" + }, + "permission_getPreferencesDescription": { + "message": "Let $1 access information like your preferred language and fiat currency in your MetaMask settings. This helps $1 display content tailored to your preferences. ", + "description": "An extended description for the `snap_getPreferences` permission. $1 is the snap name." + }, + "permission_homePage": { + "message": "Display a custom screen", + "description": "The description for the `endowment:page-home` permission" + }, + "permission_homePageDescription": { + "message": "Let $1 display a custom home screen in MetaMask. This can be used for user interfaces, configuration, and dashboards.", + "description": "An extended description for the `endowment:page-home` permission. $1 is the snap name." + }, + "permission_keyring": { + "message": "Allow requests for adding and controlling Ethereum accounts", + "description": "The description for the `endowment:keyring` permission" + }, + "permission_keyringDescription": { + "message": "Let $1 receive requests to add or remove accounts, plus sign and transact on behalf of these accounts.", + "description": "An extended description for the `endowment:keyring` permission. $1 is the snap name." + }, + "permission_lifecycleHooks": { + "message": "Use lifecycle hooks.", + "description": "The description for the `endowment:lifecycle-hooks` permission" + }, + "permission_lifecycleHooksDescription": { + "message": "Allow $1 to use lifecycle hooks to run code at specific times during its lifecycle.", + "description": "An extended description for the `endowment:lifecycle-hooks` permission. $1 is the snap name." + }, + "permission_manageAccounts": { + "message": "Add and control Ethereum accounts", + "description": "The description for `snap_manageAccounts` permission" + }, + "permission_manageAccountsDescription": { + "message": "Allow $1 to add or remove Ethereum accounts, then transact and sign with these accounts.", + "description": "An extended description for the `snap_manageAccounts` permission. $1 is the snap name." + }, + "permission_manageBip32Keys": { + "message": "Manage $1 accounts.", + "description": "The description for the `snap_getBip32Entropy` permission. $1 is a derivation path, e.g. 'm/44'/0'/0' (secp256k1)'." + }, + "permission_manageBip44AndBip32KeysDescription": { + "message": "Allow $1 to manage accounts and assets on the requested network. These accounts are derived and backed up using your secret recovery phrase (without revealing it). With the power to derive keys, $1 can support a variety of blockchain protocols beyond Ethereum (EVMs).", + "description": "An extended description for the `snap_getBip44Entropy` and `snap_getBip44Entropy` permissions. $1 is the snap name." + }, + "permission_manageBip44Keys": { + "message": "Manage $1 accounts.", + "description": "The description for the `snap_getBip44Entropy` permission. $1 is the name of a protocol, e.g. 'Filecoin'." + }, + "permission_manageState": { + "message": "Store and manage its data on your device.", + "description": "The description for the `snap_manageState` permission" + }, + "permission_manageStateDescription": { + "message": "Allow $1 to store, update, and retrieve data securely with encryption. Other snaps cannot access this information.", + "description": "An extended description for the `snap_manageState` permission. $1 is the snap name." + }, + "permission_multichainProvider": { + "message": "Access the Multichain provider.", + "description": "The description for the `endowment:multichain-provider` permission" + }, + "permission_multichainProviderDescription": { + "message": "Allow $1 to communicate with MetaMask directly, in order for it to read data from the blockchain and suggest messages and transactions.", + "description": "An extended description for the `endowment:multichain-provider` permission. $1 is the snap name." + }, + "permission_nameLookup": { + "message": "Provide domain and address lookups.", + "description": "The description for the `endowment:name-lookup` permission." + }, + "permission_nameLookupDescription": { + "message": "Allow the snap to fetch and display address and domain lookups in different parts of the MetaMask UI.", + "description": "An extended description for the `endowment:name-lookup` permission." + }, + "permission_notifications": { + "message": "Show notifications.", + "description": "The description for the `snap_notify` permission" + }, + "permission_notificationsDescription": { + "message": "Allow $1 to display notifications within MetaMask. A short notification text can be triggered by a snap for actionable or time-sensitive information.", + "description": "An extended description for the `snap_notify` permission. $1 is the snap name." + }, + "permission_protocol": { + "message": "Provide protocol data for one or more chains.", + "description": "The description for the `endowment:protocol` permission." + }, + "permission_protocolDescription": { + "message": "Allow $1 to provide MetaMask with protocol data such as gas estimates or token information.", + "description": "An extended description for the `endowment:protocol` permission. $1 is the name of the Snap." + }, + "permission_rpc": { + "message": "Allow $1 to communicate directly with $2.", + "description": "The description for the `endowment:rpc` permission. $1 is 'other snaps' or 'websites', $2 is the snap name." + }, + "permission_rpcDescription": { + "message": "Allow $1 to send messages to $2 and receive a response from $2.", + "description": "An extended description for the `endowment:rpc` permission. $1 is 'other snaps' or 'websites', $2 is the snap name." + }, + "permission_rpcDescriptionOriginList": { + "message": "$1 and $2", + "description": "A list of allowed origins where $2 is the last origin of the list and $1 is the rest of the list separated by ','." + }, + "permission_signatureInsight": { + "message": "Display signature insights modal.", + "description": "The description for the `endowment:signature-insight` permission" + }, + "permission_signatureInsightDescription": { + "message": "Allow $1 to display a modal with insights on any signature request before approval. This can be used for anti-phishing and security solutions.", + "description": "An extended description for the `endowment:signature-insight` permission. $1 is the snap name." + }, + "permission_signatureInsightOrigin": { + "message": "See the origins of websites that initiate a signature request", + "description": "The description for the `signatureOrigin` caveat, to be used with the `endowment:signature-insight` permission" + }, + "permission_signatureInsightOriginDescription": { + "message": "Allow $1 to see the origin (URI) of websites that initiate signature requests. This can be used for anti-phishing and security solutions.", + "description": "An extended description for the `signatureOrigin` caveat, to be used with the `endowment:signature-insight` permission. $1 is the snap name." + }, + "permission_transactionInsight": { + "message": "Fetch and display transaction insights.", + "description": "The description for the `endowment:transaction-insight` permission" + }, + "permission_transactionInsightDescription": { + "message": "Allow $1 to decode transactions and show insights within the MetaMask UI. This can be used for anti-phishing and security solutions.", + "description": "An extended description for the `endowment:transaction-insight` permission. $1 is the snap name." + }, + "permission_transactionInsightOrigin": { + "message": "See the origins of websites that suggest transactions", + "description": "The description for the `transactionOrigin` caveat, to be used with the `endowment:transaction-insight` permission" + }, + "permission_transactionInsightOriginDescription": { + "message": "Allow $1 to see the origin (URI) of websites that suggest transactions. This can be used for anti-phishing and security solutions.", + "description": "An extended description for the `transactionOrigin` caveat, to be used with the `endowment:transaction-insight` permission. $1 is the snap name." + }, + "permission_unknown": { + "message": "Unknown permission: $1", + "description": "$1 is the name of a requested permission that is not recognized." + }, + "permission_viewBip32PublicKeys": { + "message": "View your public key for $1 ($2).", + "description": "The description for the `snap_getBip32PublicKey` permission. $1 is a derivation path, e.g. 'm/44'/0'/0''. $2 is the elliptic curve name, e.g. 'secp256k1'." + }, + "permission_viewBip32PublicKeysDescription": { + "message": "Allow $2 to view your public keys (and addresses) for $1. This does not grant any control of accounts or assets.", + "description": "An extended description for the `snap_getBip32PublicKey` permission. $1 is a derivation path (name). $2 is the snap name." + }, + "permission_viewNamedBip32PublicKeys": { + "message": "View your public key for $1.", + "description": "The description for the `snap_getBip32PublicKey` permission. $1 is a name for the derivation path, e.g., 'Ethereum accounts'." + }, + "permission_walletSwitchEthereumChain": { + "message": "Use your enabled networks", + "description": "The label for the `wallet_switchEthereumChain` permission" + }, + "permission_webAssembly": { + "message": "Support for WebAssembly.", + "description": "The description of the `endowment:webassembly` permission." + }, + "permission_webAssemblyDescription": { + "message": "Allow $1 to access low-level execution environments via WebAssembly.", + "description": "An extended description of the `endowment:webassembly` permission. $1 is the snap name." + }, + "permissions": { + "message": "Permissions" + }, + "permissionsPageEmptyDescription": { + "message": "No permissions detected. Once you grant permissions to a site or install a Snap, the details will appear here." + }, + "permitSimulationChange_approve": { + "message": "Spending cap" + }, + "permitSimulationChange_bidding": { + "message": "You bid" + }, + "permitSimulationChange_listing": { + "message": "You list" + }, + "permitSimulationChange_nft_listing": { + "message": "Listing price" + }, + "permitSimulationChange_receive": { + "message": "You receive" + }, + "permitSimulationChange_revoke2": { + "message": "Revoke" + }, + "permitSimulationChange_transfer": { + "message": "You send" + }, + "permitSimulationDetailInfo": { + "message": "You're giving the spender permission to spend this many tokens from your account." + }, + "permittedChainToastUpdate": { + "message": "$1 has access to $2." + }, + "perps": { + "message": "Perps" + }, + "perps24hVolume": { + "message": "24h Volume" + }, + "perpsActivity": { + "message": "Activity" + }, + "perpsAddExposure": { + "message": "Add exposure" + }, + "perpsAddExposureDescriptionLong": { + "message": "Increase the size of your long position" + }, + "perpsAddExposureDescriptionShort": { + "message": "Increase the size of your short position" + }, + "perpsAddFunds": { + "message": "Add funds" + }, + "perpsAddFundsDescription": { + "message": "Add funds to start trading perpetual contracts with leverage" + }, + "perpsAddMargin": { + "message": "Add margin" + }, + "perpsAddMarginDescription": { + "message": "Increase margin to reduce liquidation risk" + }, + "perpsAddToFavorites": { + "message": "Add to favorites" + }, + "perpsAutoClose": { + "message": "Auto close" + }, + "perpsAvailable": { + "message": "available", + "description": "is the available balance amount" + }, + "perpsAvailableBalance": { + "message": "Available balance: " + }, + "perpsAvailableToAdd": { + "message": "Available to add" + }, + "perpsAvailableToClose": { + "message": "Available to close" + }, + "perpsAvailableToSubtract": { + "message": "Available to subtract" + }, + "perpsAvailableToTrade": { + "message": "Available to trade", + "description": "Label for the available balance that can be used for trading" + }, + "perpsBasicFunctionalityOff": { + "message": "This feature isn't available while basic functionality is turned off." + }, + "perpsBatchCancelFailed": { + "message": "Failed to cancel one or more orders. Try again." + }, + "perpsBatchCloseFailed": { + "message": "Failed to close one or more positions. Try again." + }, + "perpsCancelAllOrders": { + "message": "Cancel all" + }, + "perpsCancelOrder": { + "message": "Cancel order" + }, + "perpsCandleIntervals": { + "message": "Set candle interval" + }, + "perpsCandlePeriodDays": { + "message": "Days" + }, + "perpsCandlePeriodHours": { + "message": "Hours" + }, + "perpsCandlePeriodMinutes": { + "message": "Minutes" + }, + "perpsCloseAll": { + "message": "Close all" + }, + "perpsCloseAmount": { + "message": "Close amount" + }, + "perpsCloseLong": { + "message": "Close long" + }, + "perpsClosePartialMinNotional": { + "message": "Partial closes must be at least $1 in USD value. Increase the close amount or close the full position." + }, + "perpsClosePosition": { + "message": "Close position" + }, + "perpsCloseShort": { + "message": "Close short" + }, + "perpsConfirmCloseLong": { + "message": "Close long" + }, + "perpsConfirmCloseShort": { + "message": "Close short" + }, + "perpsConnectionTimeout": { + "message": "Connection timed out. Please try again." + }, + "perpsContactSupport": { + "message": "Contact support" + }, + "perpsCrossMarginNotSupportedDescription": { + "message": "MetaMask Perps only support trading with isolated margin. You need to first close your cross margin position before you can trade on MetaMask." + }, + "perpsCrossMarginNotSupportedTitle": { + "message": "Cross margin not supported" + }, + "perpsDateToday": { + "message": "Today" + }, + "perpsDateYesterday": { + "message": "Yesterday" + }, + "perpsDepositActivityTitle": { + "message": "Funded Perps" + }, + "perpsDepositErrorBridgeFailed": { + "message": "Bridge failed" + }, + "perpsDepositFailed": { + "message": "Deposit could not be completed. Try again." + }, + "perpsDepositFundsTitle": { + "message": "Deposit funds to Perps" + }, + "perpsDepositTitle": { + "message": "Funded perps account" + }, + "perpsDepositToastErrorDescription": { + "message": "Your funds were not added to Perps. Try again." + }, + "perpsDepositToastErrorTitle": { + "message": "Perps deposit failed" + }, + "perpsDepositToastPendingDescription": { + "message": "Your funds will be available to trade shortly." + }, + "perpsDepositToastPendingTitle": { + "message": "Adding funds to Perps" + }, + "perpsDepositToastSuccessDescription": { + "message": "Funds are ready to trade" + }, + "perpsDepositToastSuccessTitle": { + "message": "Your Perps account was funded" + }, + "perpsDeposits": { + "message": "Deposits" + }, + "perpsDetails": { + "message": "Details" + }, + "perpsDirection": { + "message": "Direction" + }, + "perpsDisclaimer": { + "message": "Perpetual contracts are very risky, and you could suddenly and without notice lose your entire investment. You trade entirely at your own risk. Powered by Hyperliquid. Price chart powered by TradingView." + }, + "perpsEmptyDescription": { + "message": "Trade perpetuals with leverage. Open your first position to get started." + }, + "perpsEntryPrice": { + "message": "Entry price" + }, + "perpsEstSize": { + "message": "Est. size" + }, + "perpsEstimatedPnlAtStopLoss": { + "message": "Est. P&L at stop loss", + "description": "Label for estimated profit or loss when stop loss is hit" + }, + "perpsEstimatedPnlAtTakeProfit": { + "message": "Est. P&L at take profit", + "description": "Label for estimated profit or loss when take profit is hit" + }, + "perpsExploreMarkets": { + "message": "Explore markets" + }, + "perpsFees": { + "message": "Fees" + }, + "perpsFilterAll": { + "message": "All" + }, + "perpsFilterCommodities": { + "message": "Commodities" + }, + "perpsFilterCrypto": { + "message": "Crypto" + }, + "perpsFilterForex": { + "message": "Forex" + }, + "perpsFilterNew": { + "message": "New" + }, + "perpsFilterStocks": { + "message": "Stocks" + }, + "perpsFunding": { + "message": "Funding" + }, + "perpsFundingPayments": { + "message": "Funding payments" + }, + "perpsFundingRate": { + "message": "Funding rate" + }, + "perpsFundingRateTooltip": { + "message": "An hourly fee paid between traders to keep prices in line with the market. If the rate is positive, longs pay shorts. If negative, shorts pay longs." + }, + "perpsGeoBlockedDescription": { + "message": "Perps trading isn't available in your location due to local restrictions or sanctions." + }, + "perpsGeoBlockedTitle": { + "message": "Perps unavailable in your region" + }, + "perpsGiveFeedback": { + "message": "Give us feedback" + }, + "perpsIncludesPnl": { + "message": "includes P&L $1" + }, + "perpsInsufficientMargin": { + "message": "Insufficient margin to place this order." + }, + "perpsLearnBasics": { + "message": "Learn the basics of perps" + }, + "perpsLearnMore": { + "message": "Learn more" + }, + "perpsLeverage": { + "message": "Leverage" + }, + "perpsLimit": { + "message": "Limit" + }, + "perpsLimitPrice": { + "message": "Limit price" + }, + "perpsLimitPriceAboveCurrentPrice": { + "message": "Limit price is above current price" + }, + "perpsLimitPriceBelowCurrentPrice": { + "message": "Limit price is below current price" + }, + "perpsLimitPriceNearLiquidation": { + "message": "Current price is near the estimated liquidation price" + }, + "perpsLiquidationDistance": { + "message": "Liquidation distance" + }, + "perpsLiquidationPrice": { + "message": "Liquidation price" + }, + "perpsLong": { + "message": "Long" + }, + "perpsMargin": { + "message": "Margin" + }, + "perpsMarginRiskWarning": { + "message": "Removing margin moves your liquidation price closer. Ensure you have sufficient buffer." + }, + "perpsMarket": { + "message": "Market" + }, + "perpsMarketNotFound": { + "message": "Market not found" + }, + "perpsMarketNotFoundDescription": { + "message": "The market \"$1\" could not be found.", + "description": "$1 is the market symbol that was not found" + }, + "perpsMarkets": { + "message": "Markets" + }, + "perpsMid": { + "message": "Mid" + }, + "perpsMinOrderSize": { + "message": "Order size must be at least $1", + "description": "$1 is the minimum order size with currency symbol (e.g., '$10'). Shown as submit-button copy when the size input is empty or below the minimum." + }, + "perpsModify": { + "message": "Modify" + }, + "perpsModifyPosition": { + "message": "Modify Position" + }, + "perpsMore": { + "message": "More" + }, + "perpsNetworkError": { + "message": "A network error occurred. Please try again." + }, + "perpsNoMarketsFound": { + "message": "No markets found" + }, + "perpsNoTransactions": { + "message": "No transactions yet" + }, + "perpsOpenInterest": { + "message": "Open interest" + }, + "perpsOpenInterestTooltip": { + "message": "The combined value of all open positions for this perp" + }, + "perpsOpenLong": { + "message": "Open long $1", + "description": "$1 is the asset symbol (e.g., BTC, ETH)" + }, + "perpsOpenOrders": { + "message": "Open Orders" + }, + "perpsOpenShort": { + "message": "Open short $1", + "description": "$1 is the asset symbol (e.g., BTC, ETH)" + }, + "perpsOraclePrice": { + "message": "Oracle price" + }, + "perpsOraclePriceTooltip": { + "message": "The median of external prices reported by validators, used for computing funding rate" + }, + "perpsOrderDate": { + "message": "Date" + }, + "perpsOrderFailed": { + "message": "Order could not be placed. Try again." + }, + "perpsOrderOriginalSize": { + "message": "Original size" + }, + "perpsOrderRejected": { + "message": "Your order was rejected. Try again." + }, + "perpsOrderStatus": { + "message": "Status" + }, + "perpsOrderValue": { + "message": "Order value" + }, + "perpsOrders": { + "message": "Orders" + }, + "perpsPnl": { + "message": "P&L" + }, + "perpsPosition": { + "message": "Position" + }, + "perpsPositions": { + "message": "Positions" + }, + "perpsRateLimitExceeded": { + "message": "Too many requests. Please wait and try again." + }, + "perpsRecentActivity": { + "message": "Recent activity" + }, + "perpsReduceExposure": { + "message": "Reduce exposure" + }, + "perpsReduceExposureDescriptionLong": { + "message": "Decrease the size of your long position" + }, + "perpsReduceExposureDescriptionShort": { + "message": "Decrease the size of your short position" + }, + "perpsReduceOnly": { + "message": "Reduce only" + }, + "perpsRemoveFromFavorites": { + "message": "Remove from favorites" + }, + "perpsRemoveMargin": { + "message": "Remove margin" + }, + "perpsRemoveMarginDescription": { + "message": "Withdraw excess margin from position" + }, + "perpsReturn": { + "message": "Return" + }, + "perpsReversePosition": { + "message": "Reverse position" + }, + "perpsReversePositionDescriptionLong": { + "message": "Flip your long position to a short" + }, + "perpsReversePositionDescriptionShort": { + "message": "Flip your short position to a long" + }, + "perpsSaveChanges": { + "message": "Save changes", + "description": "Button text for saving TP/SL changes" + }, + "perpsSearchMarkets": { + "message": "Search markets" + }, + "perpsSeeAll": { + "message": "See all", + "description": "Accessible label for the arrow button that navigates to the full activity list" + }, + "perpsServiceUnavailable": { + "message": "Service temporarily unavailable. Please try again later." + }, + "perpsShort": { + "message": "Short" + }, + "perpsSize": { + "message": "Size" + }, + "perpsSlippageExceeded": { + "message": "Slippage exceeded. Adjust your slippage tolerance and try again." + }, + "perpsSortByFundingRate": { + "message": "Funding rate" + }, + "perpsSortByHighToLow": { + "message": "High to low" + }, + "perpsSortByLowToHigh": { + "message": "Low to high" + }, + "perpsSortByOpenInterest": { + "message": "Open interest" + }, + "perpsSortByPriceChange": { + "message": "Price change" + }, + "perpsSortByRank": { + "message": "Rank" + }, + "perpsSortBySection": { + "message": "Sort by" + }, + "perpsSortByTitle": { + "message": "Filter" + }, + "perpsSortByVolume": { + "message": "Volume" + }, + "perpsStartNewTrade": { + "message": "Start a new trade" + }, + "perpsStartTrading": { + "message": "Start trading" + }, + "perpsStats": { + "message": "Stats" + }, + "perpsStatusCanceled": { + "message": "Canceled" + }, + "perpsStatusCompleted": { + "message": "Completed" + }, + "perpsStatusFilled": { + "message": "Filled" + }, + "perpsStatusOpen": { + "message": "Open" + }, + "perpsStatusQueued": { + "message": "Queued" + }, + "perpsStatusRejected": { + "message": "Rejected" + }, + "perpsStatusTriggered": { + "message": "Triggered" + }, + "perpsStopLoss": { + "message": "Stop loss", + "description": "Label for stop loss price input" + }, + "perpsStopLossInvalidLiquidationPrice": { + "message": "Stop loss must be $1 liquidation price", + "description": "Validation error when stop loss price is on the wrong side of the liquidation price. $1 is above/below." + }, + "perpsStopLossInvalidPrice": { + "message": "Stop loss must be $1 $2 price", + "description": "Validation error when stop loss price is on the wrong side of the reference price. $1 is above/below, $2 is current/entry." + }, + "perpsSubmitting": { + "message": "Submitting...", + "description": "Loading text shown while an order is being submitted" + }, + "perpsTakeProfit": { + "message": "Take profit", + "description": "Label for take profit price input" + }, + "perpsTakeProfitInvalidPrice": { + "message": "Take profit must be $1 $2 price", + "description": "Validation error when take profit price is on the wrong side of the reference price. $1 is above/below, $2 is current/entry." + }, + "perpsToastCancelOrderFailed": { + "message": "Failed to cancel order", + "description": "Error toast text shown when cancelling a perps limit order fails" + }, + "perpsToastCancelOrderSuccess": { + "message": "Order cancelled", + "description": "Success toast text shown when a perps limit order is successfully cancelled" + }, + "perpsToastCloseFailed": { + "message": "Failed to close position", + "description": "Error toast text shown when closing a perps position fails" + }, + "perpsToastCloseInProgress": { + "message": "Closing position", + "description": "In-progress toast text shown while closing a perps position" + }, + "perpsToastClosePnlSubtitle": { + "message": "Your PnL is $1", + "description": "$1 is the formatted PnL percentage for a closed position" + }, + "perpsToastMarginAddSuccess": { + "message": "Added $1 margin to $2 position", + "description": "$1 is the dollar-prefixed amount (e.g. $100) and $2 is the asset symbol for successful margin addition" + }, + "perpsToastMarginAdjustmentFailed": { + "message": "Margin adjustment failed", + "description": "Error toast text shown when adding or removing margin fails" + }, + "perpsToastMarginAdjustmentFailedDescriptionFallback": { + "message": "Unable to adjust margin. Please try again.", + "description": "Fallback description shown when margin adjustment fails without a usable error message." + }, + "perpsToastMarginRemoveSuccess": { + "message": "Removed $1 margin from $2 position", + "description": "$1 is the dollar-prefixed amount (e.g. $100) and $2 is the asset symbol for successful margin removal" + }, + "perpsToastOrderFailed": { + "message": "Order failed", + "description": "Error toast text shown when placing a perps order fails" + }, + "perpsToastOrderFailedDescriptionFallback": { + "message": "Your funds have been returned to you", + "description": "Fallback order failure subtitle shown when no specific order error is available" + }, + "perpsToastOrderFilled": { + "message": "Order filled", + "description": "Success toast text shown when a perps market order is filled" + }, + "perpsToastOrderPlaced": { + "message": "Order placed", + "description": "Success toast text shown when a perps limit order is accepted" + }, + "perpsToastOrderPlacementSubtitle": { + "message": "$1 $2 $3", + "description": "$1 is the order direction, $2 is the position size amount, and $3 is the asset symbol" + }, + "perpsToastOrderSubmitted": { + "message": "Order submitted", + "description": "In-progress toast text shown while a perps order is being submitted" + }, + "perpsToastPartialCloseFailed": { + "message": "Failed to partially close position", + "description": "Error toast text shown when a perps position is partially closed and fails" + }, + "perpsToastPartialCloseInProgress": { + "message": "Partially closing position", + "description": "In-progress toast text shown while a perps position is being partially closed" + }, + "perpsToastPartialCloseSuccess": { + "message": "Position partially closed", + "description": "Success toast text shown when a perps position is partially closed" + }, + "perpsToastPositionStillActive": { + "message": "Your position is still active", + "description": "Subtitle shown in perps close failure toasts when the position remains open" + }, + "perpsToastReverseFailed": { + "message": "Failed to reverse position", + "description": "Error toast text shown when reversing a perps position fails" + }, + "perpsToastReverseInProgress": { + "message": "Reversing position", + "description": "In-progress toast text shown while reversing a perps position" + }, + "perpsToastReverseSuccess": { + "message": "Position reversed", + "description": "Success toast text shown when a perps position is reversed" + }, + "perpsToastSubmitInProgress": { + "message": "Submitting your trade", + "description": "In-progress toast text shown while a perps trade is being submitted" + }, + "perpsToastTradeSuccess": { + "message": "Position closed", + "description": "Success toast text shown when a perps position is closed" + }, + "perpsToastUpdateFailed": { + "message": "Failed to update TP/SL", + "description": "Error toast text shown when updating TP/SL settings fails" + }, + "perpsToastUpdateInProgress": { + "message": "Updating TP/SL...", + "description": "In-progress toast text shown while updating TP/SL settings" + }, + "perpsToastUpdateSuccess": { + "message": "TP/SL updated successfully", + "description": "Success toast text shown when TP/SL settings are updated" + }, + "perpsTotalBalance": { + "message": "Total balance" + }, + "perpsTradePerps": { + "message": "Trade perps" + }, + "perpsTrades": { + "message": "Trades" + }, + "perpsTransactionTitleOpenedLong": { + "message": "Opened long" + }, + "perpsTriggerPrice": { + "message": "Trigger price" + }, + "perpsTutorialChooseLeverageDescription": { + "message": "Leverage amplifies both gains and losses. With 40x leverage, a 1% price move equals a 40% gain or loss on your margin." + }, + "perpsTutorialChooseLeverageTitle": { + "message": "Choose your leverage" + }, + "perpsTutorialCloseAnytimeDescription": { + "message": "Exit whenever you want. You'll get back your margin, plus profits or minus losses." + }, + "perpsTutorialCloseAnytimeTitle": { + "message": "Close any time" + }, + "perpsTutorialContinue": { + "message": "Continue" + }, + "perpsTutorialGoLongShortDescription": { + "message": "Pick a token to long or short, then set your order size." + }, + "perpsTutorialGoLongShortSubtitle": { + "message": "Go long to profit if the price goes up. Go short to profit if the price goes down." + }, + "perpsTutorialGoLongShortTitle": { + "message": "Go long or short on a token" + }, + "perpsTutorialLetsGo": { + "message": "Let's go" + }, + "perpsTutorialReadyToTradeDescription": { + "message": "Fund your perps account with any token and make your first trade in seconds." + }, + "perpsTutorialReadyToTradeTitle": { + "message": "Ready to trade?" + }, + "perpsTutorialSkip": { + "message": "Skip" + }, + "perpsTutorialWatchLiquidationDescription": { + "message": "You'll lose your entire margin if the token hits your liquidation price. Higher leverage means less room to liquidation." + }, + "perpsTutorialWatchLiquidationTitle": { + "message": "Watch out for liquidation" + }, + "perpsTutorialWhatArePerpsDescription": { + "message": "MetaMask now supports perpetual futures — aka perps — letting you trade on a token's price movement without buying it." + }, + "perpsTutorialWhatArePerpsSubtitle": { + "message": "Here's how it works." + }, + "perpsTutorialWhatArePerpsTitle": { + "message": "What are perps?" + }, + "perpsUnrealizedPnl": { + "message": "Unrealized P&L" + }, + "perpsWatchlist": { + "message": "Watchlist" + }, + "perpsWithdraw": { + "message": "Withdraw" + }, + "perpsWithdrawActivityTitle": { + "message": "Perps withdraw", + "description": "Title shown in the Activity list for a Perps withdraw transaction" + }, + "perpsWithdrawEstimatedTime": { + "message": "Estimated time" + }, + "perpsWithdrawFailed": { + "message": "Withdrawal could not be completed. Try again." + }, + "perpsWithdrawFee": { + "message": "Provider Fee" + }, + "perpsWithdrawFundsTitle": { + "message": "Withdraw" + }, + "perpsWithdrawInsufficient": { + "message": "Amount exceeds your available Perps balance." + }, + "perpsWithdrawInvalidAddress": { + "message": "Enter a valid destination address." + }, + "perpsWithdrawInvalidAmount": { + "message": "Enter a valid amount." + }, + "perpsWithdrawMinNotice": { + "message": "Minimum withdrawal: $1 USDC", + "description": "$1 is the minimum amount (e.g. 1.01)" + }, + "perpsWithdrawMinutesApprox": { + "message": "~$1 min", + "description": "$1 is the estimated number of minutes" + }, + "perpsWithdrawNoAccount": { + "message": "No account selected. Select an account and try again." + }, + "perpsWithdrawPostQuoteToastErrorDescription": { + "message": "Failed to proceed with withdrawal" + }, + "perpsWithdrawPostQuoteToastErrorTitle": { + "message": "Something went wrong" + }, + "perpsWithdrawPostQuoteToastPendingDescription": { + "message": "Available in about 1 minute" + }, + "perpsWithdrawPostQuoteToastPendingTitle": { + "message": "Withdrawal in progress" + }, + "perpsWithdrawPostQuoteToastSuccessDescription": { + "message": "$1 $2 moved to your wallet", + "description": "$1 is the formatted USD amount, e.g. '$20.73'. $2 is the destination token symbol, e.g. 'BNB'." + }, + "perpsWithdrawPostQuoteToastSuccessGenericDescription": { + "message": "Funds moved to your wallet" + }, + "perpsWithdrawPostQuoteToastSuccessTitle": { + "message": "Withdrawal complete" + }, + "perpsWithdrawReceive": { + "message": "Receive" + }, + "perpsWithdrawRoutesError": { + "message": "Could not load withdrawal limits. Try again later." + }, + "perpsWithdrawToastErrorTitle": { + "message": "Withdrawal failed" + }, + "perpsWithdrawToastSuccessDescription": { + "message": "We are processing $1. Funds typically arrive within a few minutes.", + "description": "$1 is the formatted withdrawal amount" + }, + "perpsWithdrawToastSuccessTitle": { + "message": "Withdrawal submitted" + }, + "perpsWithdrawTooltip": { + "message": "MetaMask will swap to your desired token for you. No MetaMask fee applies when you swap to mUSD.", + "description": "Tooltip shown on the Transaction fee row of the Perps Withdraw confirmation" + }, + "perpsYouReceive": { + "message": "You receive" + }, + "perpsYouWillReceive": { + "message": "You'll receive" + }, + "personalAddressDetected": { + "message": "Personal address detected. Input the token contract address." + }, + "pin": { + "message": "Pin", + "description": "Pin label used in multichain account menu" + }, + "pinMetaMask": { + "message": "Pin the MetaMask extension" + }, + "pinMetaMaskDescription": { + "message": "Click on $1 and then $2 to pin it." + }, + "pinToTop": { + "message": "Pin to top" + }, + "pinned": { + "message": "Pinned" + }, + "pleaseConfirm": { + "message": "Please confirm" + }, + "pna25ModalBlogPostLink": { + "message": "blog post." + }, + "pna25ModalBody1": { + "message": "To better serve you, we’re updating our analytics so publicly available data like wallet addresses and related on-chain activity can be associated with actions you take in MetaMask. This helps us improve MetaMask's performance, security, and features in order to make a better, safer wallet." + }, + "pna25ModalBody2": { + "message": "We take privacy seriously. We do not use this information for advertising or sell your data to third parties. You can opt out anytime in Settings." + }, + "pna25ModalBody3": { + "message": "You can read more about what we collect, how we protect it, and why we’re making this change in our latest" + }, + "pna25ModalTitle": { + "message": "Privacy and product updates" + }, + "popularNetworkAddToolTip": { + "message": "Some of these networks rely on third parties. The connections may be less reliable or enable third-parties to track activity.", + "description": "Learn more link" + }, + "popularNetworks": { + "message": "Popular networks" + }, + "preferencesAndDisplay": { + "message": "Preferences and display" + }, + "prev": { + "message": "Prev" + }, + "price": { + "message": "Price" + }, + "priceUnavailable": { + "message": "price unavailable" + }, + "primaryType": { + "message": "Primary type" + }, + "priority": { + "message": "Priority" + }, + "priorityFee": { + "message": "Priority fee" + }, + "priorityFeeProperCase": { + "message": "Priority fee" + }, + "priorityFeeTooHigh": { + "message": "Priority fee must be less than max base fee" + }, + "privacy": { + "message": "Privacy" + }, + "privacyMsg": { + "message": "Privacy Policy" + }, + "privateKey": { + "message": "Private key", + "description": "select this type of file to use to import an account" + }, + "privateKeyCopyWarning": { + "message": "Private key for $1", + "description": "$1 represents the account name" + }, + "privateKeyHidden": { + "message": "The private key is hidden", + "description": "Explains that the private key input is hidden" + }, + "privateKeyShow": { + "message": "Show/Hide the private key input", + "description": "Describes a toggle that is used to show or hide the private key input" + }, + "privateKeyShown": { + "message": "This private key is being shown", + "description": "Explains that the private key input is being shown" + }, + "privateKeyWarning": { + "message": "Warning: Never disclose this key. Anyone with your private keys can steal any assets held in your account." + }, + "privateKeys": { + "message": "Private keys", + "description": "Private keys row label on multichain account details page." + }, + "privateNetwork": { + "message": "Private network" + }, + "proceed": { + "message": "Proceed" + }, + "proceedWithTransaction": { + "message": "I want to proceed anyway" + }, + "productAnnouncements": { + "message": "Product announcements" + }, + "provide": { + "message": "Provide" + }, + "providerFee": { + "message": "Provider fee", + "description": "Label used in the Transaction fee tooltip for the provider (bridge/relay) fee, e.g. in Perps Withdraw" + }, + "publicAddress": { + "message": "Public address" + }, + "pushNotificationLimitOrderFilledDescriptionLong": { + "message": "Your $1 long position is now open.", + "description": "$1 is the asset symbol" + }, + "pushNotificationLimitOrderFilledDescriptionShort": { + "message": "Your $1 short position is now open.", + "description": "$1 is the asset symbol" + }, + "pushNotificationLimitOrderFilledTitle": { + "message": "Limit order filled" + }, + "pushNotificationPositionLiquidatedDescriptionLong": { + "message": "Your $1 long was closed.", + "description": "$1 is the asset symbol" + }, + "pushNotificationPositionLiquidatedDescriptionShort": { + "message": "Your $1 short was closed.", + "description": "$1 is the asset symbol" + }, + "pushNotificationPositionLiquidatedTitle": { + "message": "Position liquidated" + }, + "pushNotificationShieldClaimCreatedDescriptionShort": { + "message": "Your claim has been created" + }, + "pushNotificationShieldClaimCreatedTitle": { + "message": "Claim created" + }, + "pushNotificationShieldClaimStatusUpdatedDescriptionShort": { + "message": "Your claim has been updated" + }, + "pushNotificationShieldClaimStatusUpdatedTitle": { + "message": "Claim updated" + }, + "pushNotificationShieldLearnMoreCta": { + "message": "Learn more" + }, + "pushNotificationShieldSubscriptionCreatedDescriptionShort": { + "message": "Your plan is now active." + }, + "pushNotificationShieldSubscriptionPaymentFailedDescriptionShort": { + "message": "Your plan has been paused due to payment failure." + }, + "pushNotificationShieldSubscriptionTitle": { + "message": "MetaMask Transaction Shield" + }, + "pushNotificationShieldUpdatePaymentCta": { + "message": "Update payment" + }, + "pushNotificationStopLossTriggeredDescriptionLong": { + "message": "Your $1 long closed at your stop loss.", + "description": "$1 is the asset symbol" + }, + "pushNotificationStopLossTriggeredDescriptionShort": { + "message": "Your $1 short closed at your stop loss.", + "description": "$1 is the asset symbol" + }, + "pushNotificationStopLossTriggeredTitle": { + "message": "Stop loss triggered" + }, + "pushNotificationTakeProfitTriggeredDescriptionLong": { + "message": "Your $1 long closed at your take profit.", + "description": "$1 is the asset symbol" + }, + "pushNotificationTakeProfitTriggeredDescriptionShort": { + "message": "Your $1 short closed at your take profit.", + "description": "$1 is the asset symbol" + }, + "pushNotificationTakeProfitTriggeredTitle": { + "message": "Take profit triggered" + }, + "pushPlatformNotificationsFundsReceivedDescription": { + "message": "You received $1 $2" + }, + "pushPlatformNotificationsFundsReceivedDescriptionDefault": { + "message": "You received some tokens" + }, + "pushPlatformNotificationsFundsReceivedTitle": { + "message": "Funds received" + }, + "pushPlatformNotificationsFundsSentDescription": { + "message": "You successfully sent $1 $2" + }, + "pushPlatformNotificationsFundsSentDescriptionDefault": { + "message": "You successfully sent some tokens" + }, + "pushPlatformNotificationsFundsSentTitle": { + "message": "Funds sent" + }, + "pushPlatformNotificationsNftReceivedDescription": { + "message": "You received new NFTs" + }, + "pushPlatformNotificationsNftReceivedTitle": { + "message": "NFT received" + }, + "pushPlatformNotificationsNftSentDescription": { + "message": "You have successfully sent an NFT" + }, + "pushPlatformNotificationsNftSentTitle": { + "message": "NFT sent" + }, + "pushPlatformNotificationsStakingLidoStakeCompletedDescription": { + "message": "Your Lido stake was successful" + }, + "pushPlatformNotificationsStakingLidoStakeCompletedTitle": { + "message": "Stake complete" + }, + "pushPlatformNotificationsStakingLidoStakeReadyToBeWithdrawnDescription": { + "message": "Your Lido stake is now ready to be withdrawn" + }, + "pushPlatformNotificationsStakingLidoStakeReadyToBeWithdrawnTitle": { + "message": "Stake ready for withdrawal" + }, + "pushPlatformNotificationsStakingLidoWithdrawalCompletedDescription": { + "message": "Your Lido withdrawal was successful" + }, + "pushPlatformNotificationsStakingLidoWithdrawalCompletedTitle": { + "message": "Withdrawal completed" + }, + "pushPlatformNotificationsStakingLidoWithdrawalRequestedDescription": { + "message": "Your Lido withdrawal request was submitted" + }, + "pushPlatformNotificationsStakingLidoWithdrawalRequestedTitle": { + "message": "Withdrawal requested" + }, + "pushPlatformNotificationsStakingRocketpoolStakeCompletedDescription": { + "message": "Your RocketPool stake was successful" + }, + "pushPlatformNotificationsStakingRocketpoolStakeCompletedTitle": { + "message": "Stake complete" + }, + "pushPlatformNotificationsStakingRocketpoolUnstakeCompletedDescription": { + "message": "Your RocketPool unstake was successful" + }, + "pushPlatformNotificationsStakingRocketpoolUnstakeCompletedTitle": { + "message": "Unstake complete" + }, + "pushPlatformNotificationsSwapCompletedDescription": { + "message": "Your MetaMask Swap was successful" + }, + "pushPlatformNotificationsSwapCompletedTitle": { + "message": "Swap completed" + }, + "qr": { + "message": "QR", + "description": "Hardware device name" + }, + "qrCameraAccessBlockedBody": { + "message": "To continue, allow camera access in your browser settings.", + "description": "Body text when the browser has persistently blocked camera access for the QR hardware wallet scanner (Chromium, Firefox, etc.)." + }, + "qrCameraAccessBlockedChromiumHint": { + "message": "Click the camera icon in settings and set to \"Allow\"", + "description": "Instruction shown on the Chromium blocked-camera screen for QR scanning." + }, + "qrCameraAccessBlockedFirefoxStep1": { + "message": "Go to Settings → Privacy & Security → Permissions → Camera", + "description": "Firefox camera recovery step 1." + }, + "qrCameraAccessBlockedFirefoxStep2": { + "message": "Look for $1", + "description": "$1 is the truncated moz-extension:// origin for this install." + }, + "qrCameraAccessBlockedFirefoxStep3": { + "message": "Set to \"Allow\"", + "description": "Firefox camera recovery step 3." + }, + "qrCameraAccessBlockedTitle": { + "message": "Camera access blocked", + "description": "Title when camera access is persistently blocked for QR scanning." + }, + "qrCameraAccessNeededBody": { + "message": "MetaMask needs camera access to scan the QR code on your device.", + "description": "Body when the user dismissed the camera permission prompt but it can be requested again." + }, + "qrCameraAccessNeededTitle": { + "message": "Camera access needed", + "description": "Title when the camera permission dialog was dismissed without a choice." + }, + "queued": { + "message": "Queued" + }, + "quizIntroduction": { + "message": "To reveal your Secret Recovery Phrase, you need to correctly answer two questions." + }, + "quotedTotalCost": { + "message": "Total cost: $1" + }, + "rank": { + "message": "Rank" + }, + "rateIncludesMMFee": { + "message": "Includes $1% MM fee." + }, + "readdToken": { + "message": "You can add this token back in the future by going to “Import token” in your accounts options menu." + }, + "receive": { + "message": "Receive" + }, + "receiveCrypto": { + "message": "Receive crypto" + }, + "receiveToken": { + "message": "Receive token", + "description": "Row label on the Transaction Details page for withdrawal flows (e.g. Perps Withdraw), showing which token the user receives" + }, + "received": { + "message": "Received" + }, + "receivedTotal": { + "message": "Received total", + "description": "Row label on the Transaction Details page for withdrawal flows (e.g. Perps Withdraw), showing the net amount received after fees" + }, + "receivingAddress": { + "message": "Receiving address", + "description": "Page title when viewing addresses for receiving funds" + }, + "recipient": { + "message": "Recipient" + }, + "recipientAddressPlaceholderNew": { + "message": "Enter public address (0x) or domain name" + }, + "recipientEditAriaLabel": { + "message": "Edit recipient" + }, + "recipientPlaceholderText": { + "message": "Enter or paste an address or name" + }, + "recoveryPhraseReminderBackupStart": { + "message": "Back up now" + }, + "recoveryPhraseReminderConfirm": { + "message": "Remind me later" + }, + "recoveryPhraseReminderSubText": { + "message": "If you don’t back up your wallet, you’ll lose access to your funds if you get locked out of the app or get a new device." + }, + "recoveryPhraseReminderTitle": { + "message": "Protect your wallet" + }, + "redeemer": { + "message": "Redeemer" + }, + "redeposit": { + "message": "Redeposit" + }, + "refreshList": { + "message": "Refresh list" + }, + "reject": { + "message": "Reject" + }, + "rejectAll": { + "message": "Reject all" + }, + "rejected": { + "message": "Rejected" + }, + "remove": { + "message": "Remove" + }, + "removeAccount": { + "message": "Remove account" + }, + "removeAccountModalBannerDescription": { + "message": "Make sure you have the Secret Recovery Phrase or private key for this account before removing.", + "description": "Make sure you have the Secret Recovery Phrase or private key for this account before removing." + }, + "removeAccountModalBannerTitle": { + "message": "This account will be removed from MetaMask.", + "description": "Title of a banner alert used on account remove modal." + }, + "removeAll": { + "message": "Remove all" + }, + "removeKeyringSnap": { + "message": "Removing this Snap removes these accounts from MetaMask:" + }, + "removeKeyringSnapToolTip": { + "message": "The snap controls the accounts, and by removing it, the accounts will be removed from MetaMask, too, but they will remain in the blockchain." + }, + "removeNFT": { + "message": "Remove NFT" + }, + "removeNftErrorMessage": { + "message": "We could not remove this NFT." + }, + "removeNftMessage": { + "message": "NFT was successfully removed!" + }, + "removeSnap": { + "message": "Remove Snap" + }, + "removeSnapAccountDescription": { + "message": "If you proceed, this account will no longer be available in MetaMask." + }, + "removeSnapAccountTitle": { + "message": "Remove account" + }, + "removeSnapConfirmation": { + "message": "Are you sure you want to remove $1?", + "description": "$1 represents the name of the snap" + }, + "removeSnapDescription": { + "message": "This action will delete the snap, its data and revoke your given permissions." + }, + "rename": { + "message": "Rename", + "description": "Multichain account menu item for triggering account rename action modal" + }, + "replace": { + "message": "replace" + }, + "reportIssue": { + "message": "Report an issue" + }, + "reportThisError": { + "message": "Report this error" + }, + "requestFrom": { + "message": "Request from" + }, + "requestFromInfo": { + "message": "This is the site asking for your signature." + }, + "requestFromInfoSnap": { + "message": "This is the Snap asking for your signature." + }, + "requestFromTransactionDescription": { + "message": "This is the site asking for your confirmation." + }, + "requestingFor": { + "message": "Requesting for" + }, + "requestingForAccount": { + "message": "Requesting for $1", + "description": "Name of Account" + }, + "requestingForNetwork": { + "message": "Requesting for $1", + "description": "Name of Network" + }, + "required": { + "message": "Required" + }, + "requiredToken": { + "message": "Required token", + "description": "Label for the required token row showing the token and amount needed by the transaction" + }, + "reset": { + "message": "Reset" + }, + "resetWallet": { + "message": "Reset your wallet" + }, + "resetWalletBoldTextOne": { + "message": "permanently" + }, + "resetWalletBoldTextTwo": { + "message": "It will not impact the assets within your wallet." + }, + "resetWalletButton": { + "message": "Yes, reset wallet" + }, + "resetWalletDescriptionOne": { + "message": "We can’t recover your Secret Recovery Phrase. You can reset the wallet to create a new one and import your accounts using private keys." + }, + "resetWalletDescriptionTwo": { + "message": "Resetting will $1 delete all wallet data in MetaMask on this device. $2", + "description": "$1 is the bolded text 'permanently' and $2 is the bolded text 'It will not impact the assets within your wallet.'" + }, + "resetWalletTitle": { + "message": "Don’t have your Secret Recovery Phrase?" + }, + "resolutionProtocol": { + "message": "Address resolved via $1", + "description": "$1 is the protocol name." + }, + "restartMetamask": { + "message": "Restart MetaMask" + }, + "restore": { + "message": "Restore" + }, + "restoreUserData": { + "message": "Restore user data" + }, + "restoreWalletDescription": { + "message": "Enter your $1. By importing the wallet, you will erase your current wallet data from this device. This can’t be undone.", + "description": "$1 is the Secret Recovery Phrase" + }, + "resultPageError": { + "message": "Error" + }, + "resultPageErrorDefaultMessage": { + "message": "The operation failed." + }, + "resultPageSuccess": { + "message": "Success" + }, + "resultPageSuccessDefaultMessage": { + "message": "The operation completed successfully." + }, + "retryTransaction": { + "message": "Retry transaction" + }, + "reusedTokenNameWarning": { + "message": "A token here reuses a symbol from another token you watch, this can be confusing or deceptive." + }, + "revealMultichainPrivateKeysBannerDescription": { + "message": "This key grants full control of your account for the associated chain. $1", + "description": "Description for the banner warning users not to share their private key" + }, + "revealMultichainPrivateKeysBannerTitle": { + "message": "Don’t share your private key", + "description": "Title for the banner warning users not to share their private key" + }, + "revealSecretRecoveryPhrase": { + "message": "Back up Secret Recovery Phrase" + }, + "revealSecretRecoveryPhraseSettings": { + "message": "Reveal Secret Recovery Phrase" + }, + "revealSeedWordsDescription1": { + "message": "Your $1 gives full access to your wallet, funds, and accounts.", + "description": "This is a sentence consisting of link using 'revealSeedWordsSRPName' as $1." + }, + "revealSeedWordsQR": { + "message": "QR" + }, + "revealSeedWordsSRPName": { + "message": "Secret Recovery Phrase" + }, + "revealSeedWordsText": { + "message": "Text" + }, + "revealSeedWordsWarning": { + "message": "Make sure nobody is looking at your screen. MetaMask Support will never ask for this." + }, + "revealSensitiveContent": { + "message": "Reveal sensitive content" + }, + "review": { + "message": "Review" + }, + "reviewAlert": { + "message": "Review alert" + }, + "reviewAlerts": { + "message": "Review alerts" + }, + "reviewPendingTransactions": { + "message": "Review pending transactions" + }, + "reviewPermissions": { + "message": "Review permissions" + }, + "revokePermission": { + "message": "Revoke permission" + }, + "revokePermissionTitle": { + "message": "Remove $1 permission", + "description": "The token symbol that is being revoked" + }, + "revokeSimulationDetailsDesc": { + "message": "You're removing someone's permission to spend tokens from your account." + }, + "revokeTokenApprovals": { + "message": "Revoke token approvals" + }, + "reward": { + "message": "Reward" + }, + "rewardsAuthFailDescription": { + "message": "An unknown error occurred while authenticating this account with the rewards program. Please try again later." + }, + "rewardsAuthFailTitle": { + "message": "Unknown error." + }, + "rewardsErrorMessagesAccountAlreadyRegistered": { + "message": "This account is already registered with another Rewards profile. Please switch account to continue." + }, + "rewardsErrorMessagesFailedToClaimReward": { + "message": "Failed to claim reward. Please try again shortly." + }, + "rewardsErrorMessagesRequestRejected": { + "message": "You rejected the request." + }, + "rewardsErrorMessagesServiceNotAvailable": { + "message": "Service is not available at the moment. Please try again shortly." + }, + "rewardsErrorMessagesSomethingWentWrong": { + "message": "Something went wrong. Please try again shortly." + }, + "rewardsLinkAccount": { + "message": "Add account" + }, + "rewardsLinkAccountError": { + "message": "Failed to add account" + }, + "rewardsOnboardingCheckingRegion": { + "message": "Checking region..." + }, + "rewardsOnboardingDescription": { + "message": "Win prizes, claim perks, and discover more ways to earn—just by using MetaMask." + }, + "rewardsOnboardingIntroGeoCheckFailedDescription": { + "message": "We cannot determine if your country allows opting into the rewards program. Please check your connection and try again." + }, + "rewardsOnboardingIntroGeoCheckFailedTitle": { + "message": "Cannot determine opt-in eligibility" + }, + "rewardsOnboardingIntroGeoCheckRetry": { + "message": "Retry" + }, + "rewardsOnboardingIntroRewardsAuthFailRetry": { + "message": "Retry" + }, + "rewardsOnboardingIntroUnsupportedRegionDescription": { + "message": "Rewards are not supported in your region yet. We are working on expanding access, so check back later." + }, + "rewardsOnboardingIntroUnsupportedRegionTitle": { + "message": "Region not supported" + }, + "rewardsOnboardingLegalDisclaimer": { + "message": "By joining, you agree to our $1. We'll opt in all accounts on this device and track on-chain activity to reward you automatically. $2", + "description": "$1 is the Terms and Privacy Notice link, $2 is the Learn more link" + }, + "rewardsOnboardingLegalDisclaimerLearnMoreLink": { + "message": "Learn more" + }, + "rewardsOnboardingLegalDisclaimerTermsLink": { + "message": "Terms and Privacy Notice" + }, + "rewardsOnboardingOptInError": { + "message": "Opt-in failed" + }, + "rewardsOnboardingReferralCodeError": { + "message": "Invalid referral code" + }, + "rewardsOnboardingReferralCodePlaceholder": { + "message": "Referral code (optional)" + }, + "rewardsOnboardingReferralCodeUnknownError": { + "message": "Referral code couldn’t be validated." + }, + "rewardsOnboardingReferralCodeUnknownErrorDescription": { + "message": "Check your connection and try again." + }, + "rewardsOnboardingReferralHide": { + "message": "Hide code" + }, + "rewardsOnboardingReferralPrompt": { + "message": "Have a referral code?" + }, + "rewardsOnboardingSignUp": { + "message": "Join Rewards" + }, + "rewardsOnboardingSignUpLoading": { + "message": "Joining..." + }, + "rewardsOnboardingTitle": { + "message": "Start earning rewards" + }, + "rewardsOptInVerifyingReferralCode": { + "message": "Verifying referral code...", + "description": "Text shown while verifying a referral code during rewards opt-in" + }, + "rewardsPointsBalance": { + "message": "$1 points", + "description": "$1 is the formatted number of rewards points" + }, + "rewardsPointsBalance_couldntLoad": { + "message": "Couldn't load", + "description": "Text shown when points balance couldn't be loaded" + }, + "rewardsPointsIcon": { + "message": "Rewards points", + "description": "Alt text for the rewards points icon" + }, + "rewardsQRCodeDescription": { + "message": "To access MetaMask Rewards, scan the QR code with your mobile device." + }, + "rewardsQRCodeTitle": { + "message": "Continue on mobile" + }, + "rewardsSignInFailed": { + "message": "Failed to sign in", + "description": "Text shown when the opt-in sign attempt failed, with a retry affordance" + }, + "rewardsSignInToViewPoints": { + "message": "Sign in to view points", + "description": "Text shown when user needs to sign in to view their rewards points" + }, + "rewardsSignUp": { + "message": "Sign up for Rewards" + }, + "rewardsSigningIn": { + "message": "Signing in...", + "description": "Text shown while the user is signing in to view their rewards points" + }, + "rpcNameOptional": { + "message": "RPC Name (Optional)" + }, + "rpcUrl": { + "message": "RPC URL" + }, + "safeTransferFrom": { + "message": "Safe transfer from" + }, + "save": { + "message": "Save" + }, + "scanInstructions": { + "message": "Place the QR code in front of your camera" + }, + "scanQrCode": { + "message": "Scan QR code" + }, + "scrollDown": { + "message": "Scroll down" + }, + "search": { + "message": "Search" + }, + "searchAnAcccountOrContact": { + "message": "Search an account or contact" + }, + "searchForAnAssetToSend": { + "message": "Search for an asset to send" + }, + "searchNetworks": { + "message": "Search networks" + }, + "searchNfts": { + "message": "Search NFTs" + }, + "searchTokens": { + "message": "Search tokens" + }, + "searchTokensByNameOrAddress": { + "message": "Search tokens by name or address" + }, + "searchYourAccounts": { + "message": "Search your accounts", + "description": "Placeholder in a searchbar. Used on multichain account list page." + }, + "second": { + "message": "sec" + }, + "secretRecoveryPhrase": { + "message": "Secret Recovery Phrase" + }, + "secretRecoveryPhrasePlusNumber": { + "message": "Secret Recovery Phrase $1", + "description": "The $1 is the order of the Secret Recovery Phrase" + }, + "secureWallet": { + "message": "Secure wallet" + }, + "secureWalletRemindLaterButton": { + "message": "Remind me later" + }, + "security": { + "message": "Security" + }, + "securityAlert": { + "message": "Security alert from $1 and $2" + }, + "securityAlerts": { + "message": "Security alerts" + }, + "securityAlertsDescriptionV2": { + "message": "This feature alerts you to malicious activity by actively reviewing transaction and signature requests. $1" + }, + "securityAndPassword": { + "message": "Security and password" + }, + "securityAndPrivacy": { + "message": "Security and privacy" + }, + "securityChangePasswordToastError": { + "message": "Password couldn’t be changed. Please try again." + }, + "securityChangePasswordToastPasskeyRenewalFailed": { + "message": "New password saved, but $1 unlock couldn't be turned on.", + "description": "Toast when passkey vault key renewal fails after the new password was already applied. $1 is the OS-specific auth-method noun (Biometrics / Touch ID / Windows Hello)." + }, + "securityChangePasswordToastSuccess": { + "message": "New password saved" + }, + "securityDefaultSettingsSocialLogin": { + "message": "Security & privacy" + }, + "securityDescription": { + "message": "Reduce your chances of joining unsafe networks and protect your accounts" + }, + "securityMessageLinkForNetworks": { + "message": "network scams and security risks" + }, + "securityProviderPoweredBy": { + "message": "Powered by $1", + "description": "The security provider that is providing data" + }, + "securitySocialLoginDefaultSettingsDescription": { + "message": "Reduce your chances of joining unsafe networks and protect your accounts and data" + }, + "securitySocialLoginEnabled": { + "message": "Enabled" + }, + "securitySocialLoginEnabledDescription": { + "message": "Use your $1 login and MetaMask password to recover your account and Secret Recovery Phrases.", + "description": "The $1 is the text 'Google' or 'Apple'" + }, + "securitySocialLoginLabel": { + "message": "$1 RECOVERY", + "description": "The $1 is the text 'Google' or 'Apple'" + }, + "securitySrpLabel": { + "message": "SECRET RECOVERY PHRASES" + }, + "seeAllPermissions": { + "message": "See all permissions", + "description": "Used for revealing more content (e.g. permission list, etc.)" + }, + "seeDetails": { + "message": "See details" + }, + "seedPhraseReq": { + "message": "Secret Recovery Phrases contain 12, 15, 18, 21, or 24 words" + }, + "seedPhraseReviewDetails": { + "message": "This is your $1. Write it down in the correct order and keep it safe. If someone has your Secret Recovery Phrase, they can access your wallet. Don’t share it with anyone, ever.", + "description": "The $1 is the bolded text 'Secret Recovery Phrase'" + }, + "seedPhraseReviewTitle": { + "message": "Save your Secret Recovery Phrase" + }, + "seedPhraseReviewTitleSettings": { + "message": "Save Secret Recovery Phrase" + }, + "select": { + "message": "Select" + }, + "selectAccountToConnect": { + "message": "Select an account to connect" + }, + "selectAll": { + "message": "Select all" + }, + "selectAnAccount": { + "message": "Select an account" + }, + "selectAnAccountAlreadyConnected": { + "message": "This account has already been connected to MetaMask" + }, + "selectEnableDisplayMediaPrivacyPreference": { + "message": "Turn on Display NFT Media" + }, + "selectHdPath": { + "message": "Select HD path" + }, + "selectNFTPrivacyPreference": { + "message": "Enable NFT Autodetection" + }, + "selectNetworkToFilter": { + "message": "Select network to filter" + }, + "selectPathHelp": { + "message": "If you don't see the accounts you expect, try switching the HD path or current selected network." + }, + "selectRecipient": { + "message": "Select recipient" + }, + "selectRpcUrl": { + "message": "Select RPC URL" + }, + "selectSecretRecoveryPhrase": { + "message": "Select Secret Recovery Phrase" + }, + "selectType": { + "message": "Select type" + }, + "selectedAccountMismatch": { + "message": "Different account selected" + }, + "send": { + "message": "Send" + }, + "sendBugReport": { + "message": "Send us a bug report." + }, + "sendSelectReceiveAsset": { + "message": "Select asset to receive" + }, + "sendSelectSendAsset": { + "message": "Select asset to send" + }, + "sendingAsset": { + "message": "Sending $1" + }, + "sendingDisabled": { + "message": "Sending of ERC-1155 NFT assets is not yet supported." + }, + "sendingNativeAsset": { + "message": "Sending $1", + "description": "$1 represents the native currency symbol for the current network (e.g. ETH or BNB)" + }, + "sent": { + "message": "Sent" + }, + "sentSpecifiedTokens": { + "message": "Sent $1", + "description": "Symbol of the specified token" + }, + "sentTokenAsToken": { + "message": "Sent $1 as $2", + "description": "Used in the transaction display list to describe a swap and send. $1 and $2 are the symbols of tokens in involved in the swap." + }, + "sepolia": { + "message": "Sepolia test network" + }, + "setApprovalForAll": { + "message": "Set approval for all" + }, + "setApprovalForAllRedesignedTitle": { + "message": "Withdrawal request" + }, + "setApprovalForAllTitle": { + "message": "Approve $1 with no spend limit", + "description": "The token symbol that is being approved" + }, + "setUp": { + "message": "Set up", + "description": "Action label for Smart Accounts. Used on multichain details page." + }, + "setUpPasskey": { + "message": "Set up $1", + "description": "Action label for turning on passkey unlock. $1 is the OS-specific auth-method noun (Biometrics / Touch ID / Windows Hello)." + }, + "settingAddSnapAccount": { + "message": "Add account Snap" + }, + "settingUpPasskey": { + "message": "Setting up $1", + "description": "Heading on the onboarding passkey setup screen while enrollment is in progress. $1 is the OS-specific auth-method noun (Biometrics / Touch ID / Windows Hello)." + }, + "settings": { + "message": "Settings" + }, + "settingsSearchCantFindSetting": { + "message": "Can't find a setting? $1", + "description": "$1 is a link to request a setting" + }, + "settingsSearchMatchingNotFound": { + "message": "No matching results found." + }, + "settingsSearchRequestHere": { + "message": "Request here" + }, + "shieldClaim": { + "message": "Submit a claim" + }, + "shieldClaimChainNotSupported": { + "message": "This chain is not supported." + }, + "shieldClaimDeleteDraft": { + "message": "Delete draft" + }, + "shieldClaimDeleteDraftDescription": { + "message": "Your claim draft has been deleted." + }, + "shieldClaimDeletedDraft": { + "message": "Draft deleted" + }, + "shieldClaimDescription": { + "message": "Description of case" + }, + "shieldClaimDescriptionPlaceholder": { + "message": "Provide a brief summary of the incident" + }, + "shieldClaimDetails": { + "message": "You may file a single claim per incident within $1 days of the incident. $2", + "description": "The $1 is the number of days and $2 is a link to the full coverage policy" + }, + "shieldClaimDetailsViewClaims": { + "message": "This claim is being reviewed by our team. We will notify you when it has been approved by email. View the full coverage policy $1.", + "description": "The $1 is a link to the full coverage policy" + }, + "shieldClaimDraftDeleteFailed": { + "message": "Deleting draft failed" + }, + "shieldClaimDraftDeleteFailedDescription": { + "message": "Unable to delete your claim draft. Please try again." + }, + "shieldClaimDraftSaveFailed": { + "message": "Saving draft failed" + }, + "shieldClaimDraftSaveFailedDescription": { + "message": "Unable to save your claim draft. Please try again." + }, + "shieldClaimDraftSaved": { + "message": "Draft saved" + }, + "shieldClaimDraftSavedDescription": { + "message": "Your claim draft has been saved." + }, + "shieldClaimDuplicateClaimExists": { + "message": "A claim has already been submitted for this transaction hash." + }, + "shieldClaimEmail": { + "message": "Email" + }, + "shieldClaimEmailHelpText": { + "message": "We'll use this email to keep you informed with updates." + }, + "shieldClaimFileErrorCountExceeded": { + "message": "Number of files exceeds the maximum allowed count." + }, + "shieldClaimFileErrorInvalidType": { + "message": "Invalid file type." + }, + "shieldClaimFileErrorSizeExceeded": { + "message": "Total file size exceeds the maximum allowed size." + }, + "shieldClaimFileUploader": { + "message": "Image upload" + }, + "shieldClaimFileUploaderAcceptText": { + "message": "PDF, PNG, JPG (Max $1MB)", + "description": "The $1 is the maximum file size in MB" + }, + "shieldClaimFileUploaderHelpText": { + "message": "If you have any additional evidence, please upload it here." + }, + "shieldClaimGroupActive": { + "message": "Active claims" + }, + "shieldClaimGroupActiveNote": { + "message": "Note: You can have a maximum of $1 drafts and $2 active claims at a single time.", + "description": "The $1 is the maximum number of drafts and $2 is the maximum number of active claims" + }, + "shieldClaimGroupCompleted": { + "message": "Completed claims" + }, + "shieldClaimGroupDrafts": { + "message": "Drafts" + }, + "shieldClaimGroupNoCompletedClaims": { + "message": "No completed claims" + }, + "shieldClaimGroupNoCompletedClaimsDescription": { + "message": "Track your completed claims here." + }, + "shieldClaimGroupNoOpenClaims": { + "message": "No open claims" + }, + "shieldClaimGroupNoOpenClaimsDescription": { + "message": "Track the status of your claims here." + }, + "shieldClaimGroupRejected": { + "message": "Rejected claims" + }, + "shieldClaimImpactedTxHash": { + "message": "Impacted transaction hash" + }, + "shieldClaimImpactedTxHashHelpText": { + "message": "Also known as TXID, hash ID, or transaction ID." + }, + "shieldClaimImpactedTxHashHelpTextLink": { + "message": "Need help finding it?" + }, + "shieldClaimImpactedTxHashNotEligible": { + "message": "This transaction is not done within MetaMask, hence it is not eligible for claims" + }, + "shieldClaimImpactedWalletAddress": { + "message": "Impacted wallet address" + }, + "shieldClaimIncidentDetails": { + "message": "Incident details" + }, + "shieldClaimInvalidChainId": { + "message": "Please enter a valid chain ID" + }, + "shieldClaimInvalidEmail": { + "message": "Please enter a valid email address" + }, + "shieldClaimInvalidRequired": { + "message": "This field is required" + }, + "shieldClaimInvalidTxHash": { + "message": "Please enter a valid transaction hash" + }, + "shieldClaimInvalidWalletAddress": { + "message": "Please enter a valid wallet address" + }, + "shieldClaimMaxClaimsLimitExceeded": { + "message": "You have reached the maximum limit of open claims. Please contact support if you need to submit additional claims." + }, + "shieldClaimMaxDraftsReached": { + "message": "You have reached the maximum number of drafts. Please delete a draft to save a new one." + }, + "shieldClaimNetwork": { + "message": "Select network" + }, + "shieldClaimPersonalDetails": { + "message": "Personal details" + }, + "shieldClaimReimbursementWalletAddress": { + "message": "Wallet address for reimbursement" + }, + "shieldClaimReimbursementWalletAddressHelpText": { + "message": "Please ensure this is not a compromised wallet." + }, + "shieldClaimSameWalletAddressesError": { + "message": "Impacted wallet address and reimbursement wallet address must be different." + }, + "shieldClaimSaveAsDraft": { + "message": "Save as draft" + }, + "shieldClaimSelectAccount": { + "message": "Select an account" + }, + "shieldClaimSelectNetwork": { + "message": "Select a network" + }, + "shieldClaimSignatureCoverageNotCovered": { + "message": "Signature coverage not found for the given transaction hash." + }, + "shieldClaimSubmissionWindowExpired": { + "message": "Submission window expired. Claims must be filed within $1 days of the incident.", + "description": "The $1 is the number of days" + }, + "shieldClaimSubmit": { + "message": "Submit a claim" + }, + "shieldClaimSubmitError": { + "message": "Claim submission failed" + }, + "shieldClaimSubmitSuccess": { + "message": "Claim submission received" + }, + "shieldClaimSubmitSuccessDescription": { + "message": "Your claim has been submitted. We'll review it and provide updates by email." + }, + "shieldClaimTransactionNotFound": { + "message": "Transaction not found on chain." + }, + "shieldClaimTransactionNotFromWalletAddress": { + "message": "Transaction hash not from wallet address." + }, + "shieldClaimTransactionNotSuccessful": { + "message": "Transaction not successful on chain." + }, + "shieldClaimViewGuidelines": { + "message": "View guide" + }, + "shieldClaimWalletOwnershipValidationFailed": { + "message": "Wallet ownership validation failed." + }, + "shieldClaimsLastEdited": { + "message": "Last edited: $1", + "description": "The $1 is the date" + }, + "shieldClaimsListTitle": { + "message": "Claims" + }, + "shieldClaimsNumber": { + "message": "Claim #$1", + "description": "The $1 is the claim number" + }, + "shieldClaimsTabHistory": { + "message": "Claim history" + }, + "shieldClaimsTabPending": { + "message": "Claims" + }, + "shieldConfirmMembership": { + "message": "Confirm plan" + }, + "shieldCoverageAlertCovered": { + "message": "You're protected up to $2 with MetaMask Transaction Shield. $1." + }, + "shieldCoverageAlertHighRiskTransaction": { + "message": "This is a high risk transaction, so it isn't protected by MetaMask Transaction Shield. $1." + }, + "shieldCoverageAlertMessageChainNotSupported": { + "message": "This chain is not supported, so it isn't protected by MetaMask Transaction Shield. $1" + }, + "shieldCoverageAlertMessageLearnHowCoverageWorks": { + "message": "See what's covered" + }, + "shieldCoverageAlertMessagePaused": { + "message": "There was an issue with your MetaMask Transaction Shield plan payment. Please update your payment method to resume coverage." + }, + "shieldCoverageAlertMessagePausedAcknowledgeButton": { + "message": "Update payment method" + }, + "shieldCoverageAlertMessagePotentialRisks": { + "message": "This transaction has potential risks, so it isn't protected by MetaMask Transaction Shield. $1" + }, + "shieldCoverageAlertMessageSignatureNotSupported": { + "message": "This signature isn't supported, so it isn't protected by MetaMask Transaction Shield. $1" + }, + "shieldCoverageAlertMessageTitle": { + "message": "This transaction isn't covered" + }, + "shieldCoverageAlertMessageTitleCovered": { + "message": "This transaction is covered" + }, + "shieldCoverageAlertMessageTitlePaused": { + "message": "Transaction Shield paused" + }, + "shieldCoverageAlertMessageTitleSignatureRequest": { + "message": "This signature request isn't covered" + }, + "shieldCoverageAlertMessageTitleSignatureRequestCovered": { + "message": "This signature request is covered" + }, + "shieldCoverageAlertMessageTokenTrustSignalWarning": { + "message": "This token shows strong signs of malicious behavior. Continuing may result in loss of funds. $1." + }, + "shieldCoverageAlertMessageTxTypeNotSupported": { + "message": "This transaction type is not supported, so it isn't protected by MetaMask Transaction Shield. $1" + }, + "shieldCoverageAlertMessageUnknown": { + "message": "This request can't be verified, so it isn't protected by MetaMask Transaction Shield. $1." + }, + "shieldCoverageEnding": { + "message": "Shield coverage ends soon" + }, + "shieldCoverageEndingAction": { + "message": "Renew" + }, + "shieldCoverageEndingDescription": { + "message": "Plan ends on $1.", + "description": "The $1 is the date" + }, + "shieldCovered": { + "message": "Covered" + }, + "shieldEntryModalGetStarted": { + "message": "Start 14-day free trial" + }, + "shieldEntryModalSubtitleA": { + "message": "Transaction Shield provides protection up to $1 and 24/7 priority support.", + "description": "The $1 is the amount of transaction protection" + }, + "shieldEntryModalSubtitleB": { + "message": "Transact with added confidence with up to $1 in protection and 24/7 priority support.", + "description": "The $1 is the amount of transaction protection" + }, + "shieldEntryModalTitleA": { + "message": "Transact with added confidence" + }, + "shieldEntryModalTitleB": { + "message": "Introducing Transaction Shield" + }, + "shieldErrorPayerAddressAlreadyUsed": { + "message": "This address is already linked to another account. Use a different address to subscribe." + }, + "shieldEstimatedChangesMonthlyTooltipText": { + "message": "Authorize $1/month for 12 months ($2 total). You'll be billed monthly, not the full amount now." + }, + "shieldFooterAgreement": { + "message": "By continuing, I agree to Transaction Shield $1" + }, + "shieldManagePlan": { + "message": "Manage plan" + }, + "shieldNotCovered": { + "message": "Not covered" + }, + "shieldPastPlansTitle": { + "message": "Past details" + }, + "shieldPaused": { + "message": "Paused" + }, + "shieldPaymentPaused": { + "message": "Transaction Shield paused" + }, + "shieldPaymentPausedActionCardPayment": { + "message": "Update" + }, + "shieldPaymentPausedActionCryptoPayment": { + "message": "Update" + }, + "shieldPaymentPausedActionUnexpectedError": { + "message": "View" + }, + "shieldPaymentPausedDescriptionCardPayment": { + "message": "Card payment failed." + }, + "shieldPaymentPausedDescriptionCryptoPayment": { + "message": "Insufficient token balance." + }, + "shieldPaymentPausedDescriptionUnexpectedError": { + "message": "An unexpected error occurred." + }, + "shieldPlanAnnual": { + "message": "Annual" + }, + "shieldPlanAnnualPrice": { + "message": "$1/year", + "description": "The $1 is the price of the annual plan" + }, + "shieldPlanBillingDate": { + "message": "Billing date" + }, + "shieldPlanCard": { + "message": "Card" + }, + "shieldPlanCryptoMonthlyNote": { + "message": "Total monthly fees pre-approved for a year" + }, + "shieldPlanDetails": { + "message": "What you get" + }, + "shieldPlanDetails1": { + "message": "Free $1-day trial", + "description": "The $1 is the number of days" + }, + "shieldPlanDetails2": { + "message": "Up to $1 in transaction protection", + "description": "The $1 is the amount of transaction protection" + }, + "shieldPlanDetails3": { + "message": "24/7 access to priority live chat support" + }, + "shieldPlanDetailsRewards": { + "message": "Earn $1 points per $2", + "description": "The $1 is the number of points and $2 plan interval (month or year)" + }, + "shieldPlanDetailsRewardsDescription": { + "message": "This offer is only available during Rewards seasons. Points are given when free trial ends to users signed up for Rewards." + }, + "shieldPlanDetailsRewardsTitle": { + "message": "Rewards" + }, + "shieldPlanErrorText": { + "message": "Couldn’t connect to Transaction Shield" + }, + "shieldPlanFooterNoteMonthly": { + "message": "Billed monthly, cancel anytime" + }, + "shieldPlanFooterNoteYearly": { + "message": "Billed yearly, cancel anytime" + }, + "shieldPlanMonthly": { + "message": "Monthly" + }, + "shieldPlanMonthlyPrice": { + "message": "$1/month", + "description": "The $1 is the price of the monthly plan" + }, + "shieldPlanPayWith": { + "message": "Pay with" + }, + "shieldPlanPayWithCard": { + "message": "Pay with card" + }, + "shieldPlanPayWithToken": { + "message": "Pay with $1", + "description": "The $1 is token" + }, + "shieldPlanPaymentTitle": { + "message": "Change payment method" + }, + "shieldPlanSave": { + "message": "Save 17%" + }, + "shieldPlanSelectToken": { + "message": "Select a token" + }, + "shieldPlanTitle": { + "message": "Choose your plan" + }, + "shieldPlanYearly": { + "message": "Yearly" + }, + "shieldStartNowCTA": { + "message": "Start now" + }, + "shieldStartNowCTAWithTrial": { + "message": "Start free trial" + }, + "shieldTx": { + "message": "Transaction Shield" + }, + "shieldTxBillingAccount": { + "message": "Billing account" + }, + "shieldTxCancelDetails": { + "message": "If you cancel, your wallet and transactions will not be covered starting $1.", + "description": "The $1 is the date subscription ends" + }, + "shieldTxCancelImmediateDetails": { + "message": "If you cancel, your wallet and transactions will not be covered." + }, + "shieldTxCancelNotAllowed": { + "message": "Your subscription cannot be cancelled at the moment." + }, + "shieldTxCancelNotAllowedPendingVerification": { + "message": "Your subscription cannot be cancelled due to pending verification." + }, + "shieldTxCancelWhenPausedDetails": { + "message": "Your plan isn't active while paused. If you cancel, your plan will immediately end." + }, + "shieldTxDetails1DescriptionTrial": { + "message": "Free for $1 days, then $2", + "description": "The $1 is the number of days and the $2 is the price of the plan" + }, + "shieldTxDetails1Title": { + "message": "MetaMask Transaction Shield" + }, + "shieldTxDetails2Description": { + "message": "$1, next billing on $2", + "description": "The $1 is interval and the $2 is the date of next billing" + }, + "shieldTxDetails2Title": { + "message": "Billing cycle" + }, + "shieldTxDetails3DescriptionCrypto": { + "message": "Crypto ($1)", + "description": "The $1 is the token symbol" + }, + "shieldTxDetails3DescriptionCryptoWithAccount": { + "message": "Crypto ($1), $2", + "description": "The $1 is the token symbol and the $2 is the account" + }, + "shieldTxDetails3Title": { + "message": "Payment method" + }, + "shieldTxDetailsManage": { + "message": "Manage" + }, + "shieldTxDetailsTitle": { + "message": "Plan details" + }, + "shieldTxMembershipActive": { + "message": "Active plan" + }, + "shieldTxMembershipBenefits": { + "message": "Your benefits" + }, + "shieldTxMembershipBenefits1Description": { + "message": "Secures assets on covered transactions" + }, + "shieldTxMembershipBenefits1Title": { + "message": "Up to $1 protection", + "description": "The $1 is the amount of transaction protection" + }, + "shieldTxMembershipBenefits2Description": { + "message": "Get faster, dedicated support anytime" + }, + "shieldTxMembershipBenefits2Title": { + "message": "Priority support" + }, + "shieldTxMembershipBenefits3Description": { + "message": "Get $1 points/$2", + "description": "The $1 is the number of points and the $2 is the interval" + }, + "shieldTxMembershipBenefits3DescriptionInactive": { + "message": "Get $1 points/$2", + "description": "The $1 is the number of points and the $2 is the interval" + }, + "shieldTxMembershipBenefits3LinkRewards": { + "message": "Link" + }, + "shieldTxMembershipBenefits3SignUp": { + "message": "Sign up" + }, + "shieldTxMembershipBenefits3Title": { + "message": "Earn season rewards" + }, + "shieldTxMembershipBenefitsInactive": { + "message": "What you get" + }, + "shieldTxMembershipBenefitsViewAll": { + "message": "View all" + }, + "shieldTxMembershipBillingDetailsViewBillingHistory": { + "message": "Manage billing" + }, + "shieldTxMembershipCancel": { + "message": "Cancel plan" + }, + "shieldTxMembershipCancelNotification": { + "message": "Your plan will be cancelled on $1.", + "description": "The $1 is the date" + }, + "shieldTxMembershipCancelledDate": { + "message": "You cancelled your plan on $1", + "description": "The $1 is the date" + }, + "shieldTxMembershipErrorInsufficientFunds": { + "message": "Your plan ends on $1. Renew now to continue your benefits.", + "description": "The $1 is the date subscription ends" + }, + "shieldTxMembershipErrorPausedCard": { + "message": "Your plan has been paused due to a failed card payment." + }, + "shieldTxMembershipErrorPausedCardAction": { + "message": "Update card details" + }, + "shieldTxMembershipErrorPausedCardTooltip": { + "message": "Your payment was declined. Please update your payment method to continue your coverage." + }, + "shieldTxMembershipErrorPausedCryptoInsufficientFunds": { + "message": "Plan paused due to insufficient funds. Payment updates may take up to $1 hours.", + "description": "The $1 is the number of hours" + }, + "shieldTxMembershipErrorPausedCryptoInsufficientFundsAction": { + "message": "Add funds" + }, + "shieldTxMembershipErrorPausedCryptoTooltip": { + "message": "Insufficient token balance in your wallet. Click retry after funding your wallet." + }, + "shieldTxMembershipErrorPausedUnexpected": { + "message": "Plan paused due to an unexpected error." + }, + "shieldTxMembershipErrorPausedUnexpectedAction": { + "message": "Contact support" + }, + "shieldTxMembershipFreeTrial": { + "message": "Free trial" + }, + "shieldTxMembershipFreeTrialDaysLeft": { + "message": "You have $1 days left on your trial", + "description": "The $1 is the number of days left" + }, + "shieldTxMembershipId": { + "message": "Member ID" + }, + "shieldTxMembershipInactive": { + "message": "Inactive plan" + }, + "shieldTxMembershipMakeClaim": { + "message": "Make a claim" + }, + "shieldTxMembershipPaused": { + "message": "Paused" + }, + "shieldTxMembershipRenew": { + "message": "Renew plan" + }, + "shieldTxMembershipRenewDescription": { + "message": "Reactivate for $1", + "description": "The $1 is the price of the plan" + }, + "shieldTxMembershipResubscribe": { + "message": "Restart plan" + }, + "shieldTxMembershipSubmitCase": { + "message": "Submit a claim" + }, + "shieldTxPastPlans": { + "message": "Past plans" + }, + "shieldTxPastPlansMonthly": { + "message": "Monthly plan" + }, + "shieldTxPastPlansYearly": { + "message": "Yearly plan" + }, + "shieldTxViewPastInvoice": { + "message": "View past invoice" + }, + "show": { + "message": "Show" + }, + "showAccount": { + "message": "Show account" + }, + "showAdvancedDetails": { + "message": "Show advanced details" + }, + "showDefaultAddress": { + "message": "Show default address" + }, + "showDefaultAddressDescription": { + "message": "Set a default address that's always visible on your home screen and account list." + }, + "showExtensionInFullSizeView": { + "message": "Show extension in full-size view" + }, + "showExtensionInFullSizeViewDescription": { + "message": "Turn this on to make full-size view your default when you click the extension icon." + }, + "showFiatConversionInTestnets": { + "message": "Show conversion on test networks" + }, + "showFiatConversionInTestnetsDescriptionV2": { + "message": "Shows network tokens as local currency on test networks. If you've been asked to turn this feature on, you might be getting scammed. For testing purposes only. $1", + "description": "$1 is the 'Learn more' link" + }, + "showHexData": { + "message": "Show hex data" + }, + "showHexDataDescription": { + "message": "Select this to show the hex data field on the send screen" + }, + "showLess": { + "message": "Show less" + }, + "showMore": { + "message": "Show more" + }, + "showNativeTokenAsMainBalance": { + "message": "Show native token as main balance" + }, + "showNft": { + "message": "Show NFT" + }, + "showPermissions": { + "message": "Show permissions" + }, + "showPrivateKey": { + "message": "Show private key" + }, + "showSRP": { + "message": "Show Secret Recovery Phrase" + }, + "showTestnetNetworks": { + "message": "Show test networks" + }, + "sidePanelMigrationToast": { + "message": "MetaMask now opens in the side panel by default. $1 any time from the menu.", + "description": "Shown when the extension opens in the side panel after migration. $1 is an inline link to switch back to the popup view." + }, + "sign": { + "message": "Sign" + }, + "signatureRequest": { + "message": "Signature request" + }, + "signature_decoding_bid_nft_tooltip": { + "message": "The NFT will be reflected in your wallet, when the bid is accepted." + }, + "signature_decoding_list_nft_tooltip": { + "message": "Expect changes only if someone buys your NFTs." + }, + "signed": { + "message": "Signed" + }, + "signing": { + "message": "Signing" + }, + "signingInWith": { + "message": "Signing in with" + }, + "signingWith": { + "message": "Signing with" + }, + "simulationApproveHeading": { + "message": "Withdraw" + }, + "simulationDetailsApproveDesc": { + "message": "You're giving someone else permission to withdraw NFTs from your account." + }, + "simulationDetailsERC20ApproveDesc": { + "message": "You're giving someone else permission to spend this amount from your account." + }, + "simulationDetailsFiatNotAvailable": { + "message": "Not available" + }, + "simulationDetailsIncomingHeading": { + "message": "You receive" + }, + "simulationDetailsIncomingHeadingReceived": { + "message": "You've received" + }, + "simulationDetailsIncomingHeadingReceiving": { + "message": "You're receiving" + }, + "simulationDetailsNoChanges": { + "message": "No changes" + }, + "simulationDetailsOutgoingHeading": { + "message": "You send" + }, + "simulationDetailsOutgoingHeadingSending": { + "message": "You're sending" + }, + "simulationDetailsOutgoingHeadingSent": { + "message": "You sent" + }, + "simulationDetailsRevokeSetApprovalForAllDesc": { + "message": "You're removing someone else's permission to withdraw NFTs from your account." + }, + "simulationDetailsSetApprovalForAllDesc": { + "message": "You're giving permission for someone else to withdraw NFTs from your account." + }, + "simulationDetailsTitle": { + "message": "Estimated changes" + }, + "simulationDetailsTitleEnforced": { + "message": "Balance changes" + }, + "simulationDetailsTitleTooltip": { + "message": "Estimated changes are what might happen if you go through with this transaction. This is just a prediction, not a guarantee." + }, + "simulationDetailsTitleTooltipEnforced": { + "message": "Balance changes are guaranteed. If this outcome isn't possible, the transaction will be stopped." + }, + "simulationDetailsTotalFiat": { + "message": "Total = $1", + "description": "$1 is the total amount in fiat currency on one side of the transaction" + }, + "simulationDetailsTransactionReverted": { + "message": "This transaction is likely to fail" + }, + "simulationDetailsUnavailable": { + "message": "Unavailable" + }, + "simulationErrorMessageV2": { + "message": "We were not able to estimate gas. There might be an error in the contract and this transaction may fail." + }, + "simulationsSettingDescription": { + "message": "Turn this on to estimate balance changes of transactions and signatures before you confirm them. This doesn't guarantee their final outcome. $1" + }, + "simulationsSettingDescriptionV2": { + "message": "Estimates balance changes of transactions before you confirm them. This doesn't guarantee the final outcome of your transactions. $1" + }, + "simulationsSettingSubHeader": { + "message": "Estimate balance changes" + }, + "singleNetwork": { + "message": "1 network" + }, + "sites": { + "message": "Sites" + }, + "siweIssued": { + "message": "Issued" + }, + "siweNetwork": { + "message": "Network" + }, + "siweRequestId": { + "message": "Request ID" + }, + "siweResources": { + "message": "Resources" + }, + "siweURI": { + "message": "URL" + }, + "skip": { + "message": "Skip" + }, + "skipDeepLinkInterstitial": { + "message": "Don't show interstitial screen when opening deep links" + }, + "skipLinkConfirmationScreens": { + "message": "Skip link confirmation screens" + }, + "skipLinkConfirmationScreensDescription": { + "message": "When you open a link from MetaMask, we show a confirmation screen to protect you from accidentally viewing sensitive info like your accounts, balances, or transaction history. Turn this on to skip that screen for links originating from MetaMask." + }, + "slippage": { + "message": "Slippage" + }, + "slippageAuto": { + "message": "Auto" + }, + "slippageEditAriaLabel": { + "message": "Edit slippage" + }, + "slippageExplanation": { + "message": "The % change in price you're willing to allow before your transaction is canceled." + }, + "smartAccount": { + "message": "Smart account" + }, + "smartAccountLabel": { + "message": "Smart Account" + }, + "smartAccountRequestsFromDapps": { + "message": "Smart account requests from dapps" + }, + "smartAccountRequestsFromDappsDescriptionV2": { + "message": "Let dapps request smart account features for standard accounts. MetaMask will only upgrade to our audited smart account." + }, + "smartAccountUpgradeBannerDescription": { + "message": "Same address. Smarter features." + }, + "smartAccountUpgradeBannerTitle": { + "message": "Switch to smart account" + }, + "smartContractAddress": { + "message": "Smart contract address" + }, + "smartContractAddressWarning": { + "message": "The recipient address may not support direct token transfers, which could result in fund loss. Only continue if you're certain this contract can receive your transfer." + }, + "smartSwapsErrorNotEnoughFunds": { + "message": "Not enough funds for a smart swap." + }, + "smartSwapsErrorUnavailable": { + "message": "Smart Swaps are temporarily unavailable." + }, + "smartTransactionCancelled": { + "message": "Your transaction was canceled" + }, + "smartTransactionCancelledDescription": { + "message": "Your transaction couldn't be completed, so it was canceled to save you from paying unnecessary gas fees." + }, + "smartTransactionError": { + "message": "Your transaction failed" + }, + "smartTransactionErrorDescription": { + "message": "Sudden market changes can cause failures. If the problem continues, reach out to MetaMask customer support." + }, + "smartTransactionPending": { + "message": "Your transaction was submitted" + }, + "smartTransactionSuccess": { + "message": "Your transaction is complete" + }, + "smartTransactions": { + "message": "Smart Transactions" + }, + "smartTransactionsEnabledDescription": { + "message": " and MEV protection. Now on by default." + }, + "smartTransactionsEnabledLink": { + "message": "Higher success rates" + }, + "smartTransactionsEnabledTitle": { + "message": "Transactions just got smarter" + }, + "snapAccountCreated": { + "message": "Account created" + }, + "snapAccountCreatedDescription": { + "message": "Your new account is ready to use!" + }, + "snapAccountCreationFailed": { + "message": "Account creation failed" + }, + "snapAccountCreationFailedDescription": { + "message": "$1 didn't manage to create an account for you.", + "description": "$1 is the snap name" + }, + "snapAccountRedirectFinishSigningTitle": { + "message": "Finish signing" + }, + "snapAccountRedirectSiteDescription": { + "message": "Follow the instructions from $1" + }, + "snapAccountRemovalFailed": { + "message": "Account removal failed" + }, + "snapAccountRemovalFailedDescription": { + "message": "$1 didn't manage to remove this account for you.", + "description": "$1 is the snap name" + }, + "snapAccountRemoved": { + "message": "Account removed" + }, + "snapAccountRemovedDescription": { + "message": "This account will no longer be available to use in MetaMask." + }, + "snapConnectTo": { + "message": "Connect to $1", + "description": "$1 is the website URL or a Snap name. Used for Snaps pre-approved connections." + }, + "snapConnectionPermissionDescription": { + "message": "Let $1 automatically connect to $2 without your approval.", + "description": "Used for Snap pre-approved connections. $1 is the Snap name, $2 is a website URL." + }, + "snapConnectionWarning": { + "message": "$1 wants to use $2", + "description": "$2 is the snap and $1 is the dapp requesting connection to the snap." + }, + "snapDetailWebsite": { + "message": "Website" + }, + "snapHomeMenu": { + "message": "Snap Home Menu" + }, + "snapInstallRequest": { + "message": "Installing $1 gives it the following permissions.", + "description": "$1 is the snap name." + }, + "snapInstallSuccess": { + "message": "Installation complete" + }, + "snapInstallWarningCheck": { + "message": "$1 wants permission to do the following:", + "description": "Warning message used in popup displayed on snap install. $1 is the snap name." + }, + "snapInstallWarningHeading": { + "message": "Proceed with caution" + }, + "snapInstallWarningPermissionDescriptionForBip32View": { + "message": "Allow $1 to view your public keys (and addresses). This does not grant any control of accounts or assets.", + "description": "An extended description for the `snap_getBip32PublicKey` permission used for tooltip on Snap Install Warning screen (popup/modal). $1 is the snap name." + }, + "snapInstallWarningPermissionDescriptionForEntropy": { + "message": "Allow $1 Snap to manage accounts and assets on the requested network(s). These accounts are derived and backed up using your secret recovery phrase (without revealing it). With the power to derive keys, $1 can support a variety of blockchain protocols beyond Ethereum (EVMs).", + "description": "An extended description for the `snap_getBip44Entropy` and `snap_getBip44Entropy` permissions used for tooltip on Snap Install Warning screen (popup/modal). $1 is the snap name." + }, + "snapInstallWarningPermissionNameForEntropy": { + "message": "Manage $1 accounts", + "description": "Permission name used for the Permission Cell component displayed on warning popup when installing a Snap. $1 is list of account types." + }, + "snapInstallWarningPermissionNameForViewPublicKey": { + "message": "View your public key for $1", + "description": "Permission name used for the Permission Cell component displayed on warning popup when installing a Snap. $1 is list of account types." + }, + "snapInstallationErrorDescription": { + "message": "$1 couldn’t be installed.", + "description": "Error description used when snap installation fails. $1 is the snap name." + }, + "snapInstallationErrorTitle": { + "message": "Installation failed", + "description": "Error title used when snap installation fails." + }, + "snapResultError": { + "message": "Error" + }, + "snapResultSuccess": { + "message": "Success" + }, + "snapResultSuccessDescription": { + "message": "$1 is ready to use" + }, + "snapUIAccountSelectorTitle": { + "message": "Select account" + }, + "snapUIAssetSelectorTitle": { + "message": "Select an asset" + }, + "snapUpdateAlertDescription": { + "message": "Get the latest version of $1", + "description": "Description used in Snap update alert banner when snap update is available. $1 is the Snap name." + }, + "snapUpdateAvailable": { + "message": "Update available" + }, + "snapUpdateErrorDescription": { + "message": "$1 couldn’t be updated.", + "description": "Error description used when snap update fails. $1 is the snap name." + }, + "snapUpdateErrorTitle": { + "message": "Update failed", + "description": "Error title used when snap update fails." + }, + "snapUpdateRequest": { + "message": "Updating $1 gives it the following permissions.", + "description": "$1 is the Snap name." + }, + "snapUpdateSuccess": { + "message": "Update complete" + }, + "snapUrlIsBlocked": { + "message": "This Snap wants to take you to a blocked site. $1." + }, + "snaps": { + "message": "Snaps" + }, + "snapsConnected": { + "message": "Snaps connected" + }, + "snapsNoInsight": { + "message": "No insight to show" + }, + "snapsPrivacyWarningFirstMessage": { + "message": "You acknowledge that any Snap that you install is a third-party service, unless otherwise identified, as defined in the Consensys $1. Your use of third-party services is governed by separate terms and conditions set forth by the third-party service provider. Consensys does not recommend the use of any Snap by any particular person for any particular reason. You access, rely upon or use the third-party service at your own risk. Consensys disclaims all responsibility and liability for any losses on account of your use of third-party services.", + "description": "First part of a message in popup modal displayed when installing a snap for the first time. $1 is terms of use link." + }, + "snapsPrivacyWarningSecondMessage": { + "message": "Any information you share with third-party services will be collected directly by those third-party services in accordance with their privacy policies. Please refer to their privacy policies for more information.", + "description": "Second part of a message in popup modal displayed when installing a snap for the first time." + }, + "snapsPrivacyWarningThirdMessage": { + "message": "Consensys has no access to information you share with third-party services.", + "description": "Third part of a message in popup modal displayed when installing a snap for the first time." + }, + "snapsSettings": { + "message": "Snap settings" + }, + "snapsTermsOfUse": { + "message": "Terms of Use" + }, + "snapsToggle": { + "message": "A snap will only run if it is enabled" + }, + "snapsUIError": { + "message": "Contact the creators of $1 for further support.", + "description": "This is shown when the insight snap throws an error. $1 is the snap name" + }, + "solanaAccountRequested": { + "message": "This site is requesting a Solana account." + }, + "solanaAccountRequired": { + "message": "A Solana account is required to connect to this site." + }, + "someNetworks": { + "message": "$1 networks" + }, + "somethingDoesntLookRight": { + "message": "Something doesn't look right? $1", + "description": "A false positive message for users to contact support. $1 is a link to the support page." + }, + "somethingIsWrong": { + "message": "Something's gone wrong. Try reloading the page." + }, + "somethingWentWrong": { + "message": "We couldn't load this page." + }, + "sortBy": { + "message": "Sort by" + }, + "sortByAlphabetically": { + "message": "Alphabetically (A-Z)" + }, + "sortByDecliningBalance": { + "message": "Declining balance ($1 high-low)", + "description": "Indicates a descending order based on token fiat balance. $1 is the preferred currency symbol" + }, + "source": { + "message": "Source" + }, + "spamModalBlockedDescription": { + "message": "This site will be blocked for 1 minute." + }, + "spamModalBlockedTitle": { + "message": "You've temporarily blocked this site" + }, + "spamModalDescription": { + "message": "If you're being spammed with multiple requests, you can temporarily block the site." + }, + "spamModalTemporaryBlockButton": { + "message": "Temporarily block this site" + }, + "spamModalTitle": { + "message": "We've noticed multiple requests" + }, + "speed": { + "message": "Speed" + }, + "speedUp": { + "message": "Speed up" + }, + "speedUpCancellation": { + "message": "Speed up this cancellation" + }, + "speedUpTransactionDescription": { + "message": "This network fee will replace the original." + }, + "speedUpTransactionFailed": { + "message": "Speed up transaction failed" + }, + "speedUpTransactionTitle": { + "message": "Speed up transaction" + }, + "spender": { + "message": "Spender" + }, + "spenderTooltipDesc": { + "message": "This is the address that will be able to withdraw your NFTs." + }, + "spenderTooltipERC20ApproveDesc": { + "message": "This is the address that will be able to spend your tokens on your behalf." + }, + "spendingCap": { + "message": "Spending cap" + }, + "spendingCaps": { + "message": "Spending caps" + }, + "srpAlreadyImportedError": { + "message": "This Secret Recovery Phrase has already been imported." + }, + "srpDetailsDescription": { + "message": "A Secret Recovery Phrase, also called a seed phrase or mnemonic, is a set of words that lets you access and control your crypto wallet. To move your wallet to MetaMask, you need this phrase." + }, + "srpDetailsOwnsAccessListItemOne": { + "message": "Take all your money" + }, + "srpDetailsOwnsAccessListItemThree": { + "message": "Change your login information" + }, + "srpDetailsOwnsAccessListItemTwo": { + "message": "Confirm transactions" + }, + "srpDetailsOwnsAccessListTitle": { + "message": "Anyone with your Secret Recovery Phrase can:" + }, + "srpDetailsTitle": { + "message": "What’s a Secret Recovery Phrase?" + }, + "srpImportDuplicateAccountError": { + "message": "The account you are trying to import is a duplicate." + }, + "srpInputNumberOfWords": { + "message": "I have a $1-word phrase", + "description": "This is the text for each option in the dropdown where a user selects how many words their secret recovery phrase has during import. The $1 is the number of words (either 12, 15, 18, 21, or 24)." + }, + "srpListName": { + "message": "Secret Recovery Phrase $1", + "description": "$1 is the order of the Secret Recovery Phrase" + }, + "srpListNumberOfAccounts": { + "message": "$1 accounts", + "description": "$1 is the number of accounts in the list" + }, + "srpListSelectionDescription": { + "message": "The Secret Recovery Phrase your new account will be generated from" + }, + "srpListSingleOrZero": { + "message": "$1 account", + "description": "$1 is the number of accounts in the list, it is either 1 or 0" + }, + "srpListStateBackedUp": { + "message": "Reveal" + }, + "srpListStateNotBackedUp": { + "message": "Backup" + }, + "srpPasteFailedTooManyWords": { + "message": "Paste failed because it contained over 24 words. A secret recovery phrase can have a maximum of 24 words.", + "description": "Description of SRP paste error when the pasted content has too many words" + }, + "srpPasteTip": { + "message": "You can paste your entire Secret Recovery Phrase into any field.", + "description": "Our secret recovery phrase input is split into one field per word. This message explains to users that they can paste their entire secrete recovery phrase into any field, and we will handle it correctly." + }, + "srpSecurityQuizGetStarted": { + "message": "Get started" + }, + "srpSecurityQuizImgAlt": { + "message": "An eye with a keyhole in the center, and three floating password fields" + }, + "srpSecurityQuizIntroduction": { + "message": "To reveal your Secret Recovery Phrase, you need to correctly answer two questions" + }, + "srpSecurityQuizQuestionOneQuestion": { + "message": "If you lose your Secret Recovery Phrase, MetaMask..." + }, + "srpSecurityQuizQuestionOneRightAnswer": { + "message": "Can’t help you" + }, + "srpSecurityQuizQuestionOneRightAnswerDescription": { + "message": "Write it down, engrave it on metal, or keep it in multiple secret spots so you never lose it. If you lose it, it’s gone forever." + }, + "srpSecurityQuizQuestionOneRightAnswerTitle": { + "message": "Right! No one can help get your Secret Recovery Phrase back" + }, + "srpSecurityQuizQuestionOneWrongAnswer": { + "message": "Can get it back for you" + }, + "srpSecurityQuizQuestionOneWrongAnswerDescription": { + "message": "If you lose your Secret Recovery Phrase, it’s gone forever. No one can help you get it back, no matter what they might say." + }, + "srpSecurityQuizQuestionOneWrongAnswerTitle": { + "message": "Wrong! No one can help get your Secret Recovery Phrase back" + }, + "srpSecurityQuizQuestionTwoQuestion": { + "message": "If anyone, even a support agent, asks for your Secret Recovery Phrase..." + }, + "srpSecurityQuizQuestionTwoRightAnswer": { + "message": "You’re being scammed" + }, + "srpSecurityQuizQuestionTwoRightAnswerDescription": { + "message": "Anyone claiming to need your Secret Recovery Phrase is lying to you. If you share it with them, they will steal your assets." + }, + "srpSecurityQuizQuestionTwoRightAnswerTitle": { + "message": "Correct! Sharing your Secret Recovery Phrase is never a good idea" + }, + "srpSecurityQuizQuestionTwoWrongAnswer": { + "message": "You should give it to them" + }, + "srpSecurityQuizQuestionTwoWrongAnswerDescription": { + "message": "Anyone claiming to need your Secret Recovery Phrase is lying to you. If you share it with them, they will steal your assets." + }, + "srpSecurityQuizQuestionTwoWrongAnswerTitle": { + "message": "Nope! Never share your Secret Recovery Phrase with anyone, ever" + }, + "srpSecurityQuizTitle": { + "message": "Security quiz" + }, + "srpToggleShow": { + "message": "Show/Hide this word of the secret recovery phrase", + "description": "Describes a toggle that is used to show or hide a single word of the secret recovery phrase" + }, + "srpWordHidden": { + "message": "This word is hidden", + "description": "Explains that a word in the secret recovery phrase is hidden" + }, + "srpWordShown": { + "message": "This word is being shown", + "description": "Explains that a word in the secret recovery phrase is being shown" + }, + "stable": { + "message": "Stable" + }, + "stableLowercase": { + "message": "stable" + }, + "stake": { + "message": "Stake" + }, + "staked": { + "message": "Staked" + }, + "stakingDeposit": { + "message": "Staking deposit" + }, + "stakingWithdrawal": { + "message": "Staking withdrawal" + }, + "standardAccountLabel": { + "message": "Standard account" + }, + "stateCorruptionAreYouSure": { + "message": "Are you sure you want to proceed?" + }, + "stateCorruptionCopyAndRestoreBeforeRecovery": { + "message": "You can try to copy and restore your state file manually before you decide to restore your vault by following $1.", + "description": "$1 represents the `stateCorruptionTheseInstructions` localization key" + }, + "stateCorruptionCopyAndRestoreBeforeReset": { + "message": "You can try to copy and restore your state file manually before you decide to reset MetaMask by following $1.", + "description": "$1 represents the `stateCorruptionTheseInstructions` localization key" + }, + "stateCorruptionDetectedNoBackup": { + "message": "Your vault cannot be automatically recovered." + }, + "stateCorruptionDetectedWithBackup": { + "message": "Your vault can be recovered from an automated backup. Automatic recovery will delete your current settings and preferences, and restore only your vault." + }, + "stateCorruptionMetamaskDatabaseCannotBeAccessed": { + "message": "Internal error: database cannot be accessed" + }, + "stateCorruptionResetMetaMaskState": { + "message": "Reset MetaMask State" + }, + "stateCorruptionResettingDatabase": { + "message": "Resetting database…" + }, + "stateCorruptionRestoreAccountsFromBackup": { + "message": "Restore accounts" + }, + "stateCorruptionRestoringDatabase": { + "message": "Restoring database…" + }, + "stateCorruptionTheseInstructions": { + "message": "these instructions", + "description": "This is a link to instructions on how to recover your Secret Recovery Phrase manually. It is used in the `stateCorruptionCopyAndRestoreBeforeRecovery` and `stateCorruptionCopyAndRestoreBeforeReset` localization keys." + }, + "stateCorruptionTheseInstructionsLinkTitle": { + "message": "How to recover your Secret Recovery Phrase" + }, + "stateLogError": { + "message": "Error in retrieving state logs, please try again later." + }, + "stateLogFileName": { + "message": "MetaMask state logs" + }, + "stateLogs": { + "message": "State logs" + }, + "stateLogsModalDescription": { + "message": "State logs can help us debug issues you might encounter. Only send it to MetaMask for support, because state logs contain your public account address and transactions." + }, + "status": { + "message": "Status" + }, + "statusNotConnected": { + "message": "Not connected" + }, + "step1LatticeWallet": { + "message": "Connect your Lattice1" + }, + "step1LatticeWalletMsg": { + "message": "You can connect MetaMask to your Lattice1 device once it is set up and online. Unlock your device and have your Device ID ready.", + "description": "$1 represents the `hardwareWalletSupportLinkConversion` localization key" + }, + "step1LedgerWallet": { + "message": "Download Ledger app" + }, + "step1LedgerWalletMsg": { + "message": "Download, set up, and enter your password to unlock $1.", + "description": "$1 represents the `ledgerLiveApp` localization value" + }, + "step1TrezorWallet": { + "message": "Connect your Trezor" + }, + "step1TrezorWalletMsg": { + "message": "Plug your Trezor directly into your computer and unlock it. Make sure you use the correct passphrase.", + "description": "$1 represents the `hardwareWalletSupportLinkConversion` localization key" + }, + "step2LedgerWallet": { + "message": "Connect your Ledger" + }, + "step2LedgerWalletMsg": { + "message": "Plug your Ledger directly into your computer, then unlock it and open the Ethereum app.", + "description": "$1 represents the `hardwareWalletSupportLinkConversion` localization key" + }, + "stillConnectingTo": { + "message": "Still connecting to $1...", + "description": "Message shown when network connection is slow. $1 is the network name." + }, + "storageErrorAction": { + "message": "Back up Secret Recovery Phrase" + }, + "storageErrorDescriptionDefault": { + "message": "Back up your Secret Recovery Phrase and reinstall MetaMask if the problem continues." + }, + "storageErrorDescriptionNoSpace": { + "message": "Your device is out of storage. Free up space now or unsaved wallet changes may be lost." + }, + "storageErrorTitle": { + "message": "We couldn't save your data" + }, + "strong": { + "message": "Strong" + }, + "stxCancelled": { + "message": "Swap would have failed" + }, + "stxCancelledDescription": { + "message": "Your transaction would have failed and was cancelled to protect you from paying unnecessary gas fees." + }, + "stxCancelledSubDescription": { + "message": "Try your swap again. We’ll be here to protect you against similar risks next time." + }, + "stxFailure": { + "message": "Swap failed" + }, + "stxFailureDescription": { + "message": "Sudden market changes can cause failures. If the problem persists, please reach out to $1.", + "description": "This message is shown to a user if their swap fails. The $1 will be replaced by support.metamask.io" + }, + "stxOptInDescriptionV2": { + "message": "Turn on Smart Transactions for more reliable and secure transactions. $1" + }, + "stxPendingPrivatelySubmittingSwap": { + "message": "Privately submitting your Swap..." + }, + "stxPendingPubliclySubmittingSwap": { + "message": "Publicly submitting your Swap..." + }, + "stxSuccess": { + "message": "Swap complete!" + }, + "stxSuccessDescription": { + "message": "Your $1 is now available.", + "description": "$1 is a token symbol, e.g. ETH" + }, + "stxSwapCompleteIn": { + "message": "Swap will complete in <", + "description": "'<' means 'less than', e.g. Swap will complete in < 2:59" + }, + "stxTryingToCancel": { + "message": "Trying to cancel your transaction..." + }, + "stxUnknown": { + "message": "Status unknown" + }, + "stxUnknownDescription": { + "message": "A transaction has been successful but we’re unsure what it is. This may be due to submitting another transaction while this swap was processing." + }, + "stxUserCancelled": { + "message": "Swap cancelled" + }, + "stxUserCancelledDescription": { + "message": "Your transaction has been cancelled and you did not pay any unnecessary gas fees." + }, + "submit": { + "message": "Submit" + }, + "submitted": { + "message": "Submitted" + }, + "suggestedBySnap": { + "message": "Suggested by $1", + "description": "$1 is the snap name" + }, + "suggestedCurrencySymbol": { + "message": "Suggested currency symbol:" + }, + "suggestedTokenName": { + "message": "Suggested name:" + }, + "summary": { + "message": "Summary" + }, + "supplied": { + "message": "Supplied" + }, + "support": { + "message": "Support" + }, + "supportCenter": { + "message": "Visit our support center" + }, + "supportMultiRpcInformation": { + "message": "We now support multiple RPCs for a single network. Your most recent RPC has been selected as the default one to resolve conflicting information." + }, + "supportedLanguagesSectionTitle": { + "message": "Supported languages", + "description": "Section heading on the language settings screen for locales actively maintained by MetaMask." + }, + "swap": { + "message": "Swap" + }, + "swapAdjustSlippage": { + "message": "Adjust slippage" + }, + "swapAggregator": { + "message": "Aggregator" + }, + "swapAllowSwappingOf": { + "message": "Allow swapping of $1", + "description": "Shows a user that they need to allow a token for swapping on their hardware wallet" + }, + "swapAmountReceived": { + "message": "Guaranteed amount" + }, + "swapAmountReceivedInfo": { + "message": "This is the minimum amount you will receive. You may receive more depending on slippage." + }, + "swapAndSend": { + "message": "Swap & Send" + }, + "swapApproval": { + "message": "Approve $1 for swaps", + "description": "Used in the transaction display list to describe a transaction that is an approve call on a token that is to be swapped.. $1 is the symbol of a token that has been approved." + }, + "swapAreYouStillThere": { + "message": "Are you still there?" + }, + "swapAreYouStillThereDescription": { + "message": "We’re ready to show you the latest quotes when you want to continue" + }, + "swapConfirmWithHwWallet": { + "message": "Confirm with your hardware wallet" + }, + "swapContractDataDisabledErrorDescription": { + "message": "In the Ethereum app on your Ledger, go to \"Settings\" and allow contract data. Then, try your swap again." + }, + "swapContractDataDisabledErrorTitle": { + "message": "Contract data is not enabled on your Ledger" + }, + "swapCustom": { + "message": "custom" + }, + "swapDecentralizedExchange": { + "message": "Decentralized exchange" + }, + "swapDetailsTitle": { + "message": "Swap details", + "description": "Title for the modal showing details about a swap transaction." + }, + "swapDirectContract": { + "message": "Direct contract" + }, + "swapEditLimit": { + "message": "Edit limit" + }, + "swapEnableDescription": { + "message": "This is required and gives MetaMask permission to swap your $1.", + "description": "Gives the user info about the required approval transaction for swaps. $1 will be the symbol of a token being approved for swaps." + }, + "swapEnableTokenForSwapping": { + "message": "This will $1 for swapping", + "description": "$1 is for the 'enableToken' key, e.g. 'enable ETH'" + }, + "swapEstimatedNetworkFees": { + "message": "Estimated network fees" + }, + "swapEstimatedNetworkFeesInfo": { + "message": "This is an estimate of the network fee that will be used to complete your swap. The actual amount may change according to network conditions." + }, + "swapFailedErrorDescriptionWithSupportLink": { + "message": "Transaction failures happen and we are here to help. If this issue persists, you can reach our customer support at $1 for further assistance.", + "description": "This message is shown to a user if their swap fails. The $1 will be replaced by support.metamask.io" + }, + "swapFailedErrorTitle": { + "message": "Swap failed" + }, + "swapFetchingQuoteNofN": { + "message": "Fetching quote $1 of $2", + "description": "A count of possible quotes shown to the user while they are waiting for quotes to be fetched. $1 is the number of quotes already loaded, and $2 is the total number of resources that we check for quotes. Keep in mind that not all resources will have a quote for a particular swap." + }, + "swapFetchingQuotes": { + "message": "Fetching quotes..." + }, + "swapFetchingQuotesErrorDescription": { + "message": "Hmmm... something went wrong. Try again, or if errors persist, contact customer support." + }, + "swapFetchingQuotesErrorTitle": { + "message": "Error fetching quotes" + }, + "swapFromTo": { + "message": "The swap of $1 to $2", + "description": "Tells a user that they need to confirm on their hardware wallet a swap of 2 tokens. $1 is a source token and $2 is a destination token" + }, + "swapGasFeesExplanation": { + "message": "MetaMask doesn't make money from gas fees. These fees are estimates and can change based on how busy the network is and how complex a transaction is. Learn more $1.", + "description": "$1 is a link (text in link can be found at 'swapGasFeesSummaryLinkText')" + }, + "swapGasFeesExplanationLinkText": { + "message": "here", + "description": "Text for link in swapGasFeesExplanation" + }, + "swapGasFeesIncluded": { + "message": " Included" + }, + "swapGasFeesSplit": { + "message": "Gas fees on the previous screen are split between these two transactions." + }, + "swapGasFeesSponsored": { + "message": "Paid by MetaMask" + }, + "swapGasFeesSponsoredExplanation": { + "message": "This network fee is paid by MetaMask, so you can transact without $1 in your account." + }, + "swapIncludesMMFee": { + "message": "Includes a $1% MetaMask fee.", + "description": "Provides information about the fee that MetaMask takes for swaps. $1 is a decimal number." + }, + "swapLearnMore": { + "message": "Learn more about Swaps" + }, + "swapLiquiditySourceInfo": { + "message": "We search multiple liquidity sources (exchanges, aggregators and professional market makers) to compare exchange rates and network fees." + }, + "swapMaxSlippage": { + "message": "Max slippage" + }, + "swapMetaMaskFee": { + "message": "MetaMask fee" + }, + "swapMetaMaskFeeDescription": { + "message": "The fee of $1% is automatically factored into this quote. You pay it in exchange for a license to use MetaMask's liquidity provider information aggregation software.", + "description": "Provides information about the fee that MetaMask takes for swaps. $1 is a decimal number." + }, + "swapNQuotesWithDot": { + "message": "$1 quotes.", + "description": "$1 is the number of quotes that the user can select from when opening the list of quotes on the 'view quote' screen" + }, + "swapOnceTransactionHasProcess": { + "message": "Your $1 will be added to your account once this transaction has processed.", + "description": "This message communicates the token that is being transferred. It is shown on the awaiting swap screen. The $1 will be a token symbol." + }, + "swapProcessing": { + "message": "Processing" + }, + "swapQuoteDetails": { + "message": "Quote details" + }, + "swapQuoteSource": { + "message": "Quote source" + }, + "swapQuotesExpiredErrorDescription": { + "message": "Please request new quotes to get the latest rates." + }, + "swapQuotesExpiredErrorTitle": { + "message": "Quotes timeout" + }, + "swapQuotesNotAvailableDescription": { + "message": "This trade route isn't available right now. Try changing the amount, network, or token and we'll find the best option." + }, + "swapQuotesNotAvailableErrorDescription": { + "message": "Try adjusting the amount or slippage settings and try again." + }, + "swapQuotesNotAvailableErrorTitle": { + "message": "No quotes available" + }, + "swapRate": { + "message": "Rate" + }, + "swapReceiving": { + "message": "Receiving" + }, + "swapReceivingInfoTooltip": { + "message": "This is an estimate. The exact amount depends on slippage." + }, + "swapRequestForQuotation": { + "message": "Request for quotation" + }, + "swapSelect": { + "message": "Select" + }, + "swapSelectAQuote": { + "message": "Select a quote" + }, + "swapSelectAToken": { + "message": "Select token" + }, + "swapSelectQuotePopoverDescription": { + "message": "Below are all the quotes gathered from multiple liquidity sources." + }, + "swapSelectToken": { + "message": "Select token" + }, + "swapShowLatestQuotes": { + "message": "Show latest quotes" + }, + "swapSlippageAutoDescription": { + "message": "Auto" + }, + "swapSlippageHighDescription": { + "message": "The slippage entered ($1%) is considered very high and may result in a bad rate", + "description": "$1 is the amount of % for slippage" + }, + "swapSlippageHighTitle": { + "message": "High slippage" + }, + "swapSlippageLowDescription": { + "message": "A value this low ($1%) may result in a failed swap", + "description": "$1 is the amount of % for slippage" + }, + "swapSlippageLowTitle": { + "message": "Low slippage" + }, + "swapSlippageNegativeDescription": { + "message": "Slippage must be greater or equal to zero" + }, + "swapSlippageNegativeTitle": { + "message": "Increase slippage to continue" + }, + "swapSlippageOverLimitDescription": { + "message": "Slippage tolerance must be 15% or less. Anything higher will result in a bad rate." + }, + "swapSlippageOverLimitTitle": { + "message": "Very high slippage" + }, + "swapSlippagePercent": { + "message": "$1%", + "description": "$1 is the amount of % for slippage" + }, + "swapSlippageTooltip": { + "message": "If the price changes between the time your order is placed and confirmed it’s called “slippage”. Your swap will automatically cancel if slippage exceeds your “slippage tolerance” setting." + }, + "swapSlippageZeroDescription": { + "message": "There are fewer zero-slippage quote providers which will result in a less competitive quote." + }, + "swapSlippageZeroTitle": { + "message": "Sourcing zero-slippage providers" + }, + "swapSource": { + "message": "Liquidity source" + }, + "swapSuggestedGasSettingToolTipMessage": { + "message": "Swaps are complex and time sensitive transactions. We recommend this gas fee for a good balance between cost and confidence of a successful Swap." + }, + "swapToConfirmWithHwWallet": { + "message": "to confirm with your hardware wallet" + }, + "swapTokenAvailable": { + "message": "Your $1 has been added to your account.", + "description": "This message is shown after a swap is successful and communicates the exact amount of tokens the user has received for a swap. The $1 is a decimal number of tokens followed by the token symbol." + }, + "swapTokenNotAvailable": { + "message": "Token is not available to swap in this region" + }, + "swapTokenToToken": { + "message": "Swap $1 to $2", + "description": "Used in the transaction display list to describe a swap. $1 and $2 are the symbols of tokens in involved in a swap." + }, + "swapTokens": { + "message": "Swap tokens" + }, + "swapTransactionComplete": { + "message": "Transaction complete" + }, + "swapTwoTransactions": { + "message": "2 transactions" + }, + "swapUnknown": { + "message": "Unknown" + }, + "swapValidationInsufficientGasMessage": { + "message": "You don't have enough $1 to pay the gas fee for this swap. Enter a smaller amount or buy more $1." + }, + "swapZeroSlippage": { + "message": "0% Slippage" + }, + "swapsMaxSlippage": { + "message": "Slippage tolerance" + }, + "swapsViewInActivity": { + "message": "View in activity" + }, + "switch": { + "message": "Switch" + }, + "switchBack": { + "message": "Switch back" + }, + "switchBackToPopup": { + "message": "Switch back to popup" + }, + "switchEthereumChainConfirmationDescription": { + "message": "This will switch the selected network within MetaMask to a previously added network:" + }, + "switchEthereumChainConfirmationTitle": { + "message": "Allow this site to switch the network?" + }, + "switchNetwork": { + "message": "Switch network" + }, + "switchToMetaMaskDefaultRpc": { + "message": "Switch to MetaMask default RPC", + "description": "Button text to switch the default RPC endpoint to MetaMask default RPC" + }, + "switchToPopup": { + "message": "Switch to popup" + }, + "switchToSidePanel": { + "message": "Switch to side panel" + }, + "switchToThisAccount": { + "message": "Switch to this account" + }, + "switchingNetworksCancelsPendingConfirmations": { + "message": "Switching networks will cancel all pending confirmations" + }, + "symbol": { + "message": "Symbol" + }, + "symbolBetweenZeroTwelve": { + "message": "Symbol must be 11 characters or fewer." + }, + "syncing": { + "message": "Syncing..." + }, + "tapToReveal": { + "message": "Tap to reveal" + }, + "tapToRevealNote": { + "message": "Make sure no one is watching your screen." + }, + "tenPercentIncreased": { + "message": "10% increase" + }, + "terms": { + "message": "Terms of Use" + }, + "termsOfService": { + "message": "Terms of service" + }, + "termsOfUseAgree": { + "message": "Agree" + }, + "termsOfUseAgreeText": { + "message": "I agree to the Terms of Use, which apply to my use of MetaMask and all of its features." + }, + "termsOfUseFooterText": { + "message": "Please scroll to read all sections" + }, + "termsOfUseTitle": { + "message": "Review our Terms of Use" + }, + "testNetworks": { + "message": "Test networks" + }, + "testnets": { + "message": "Testnets" + }, + "theme": { + "message": "Theme" + }, + "thirdPartyApis": { + "message": "Third-party APIs" + }, + "thirdPartyApisDescription": { + "message": "Choose how you share your IP address or Ethereum address with third-party APIs. Changes will impact your MetaMask experience." + }, + "thirdPartySoftware": { + "message": "Third-party software notice", + "description": "Title of a popup modal displayed when installing a snap for the first time." + }, + "thisContactWillBeDeleted": { + "message": "This contact will be deleted." + }, + "time": { + "message": "Time" + }, + "to": { + "message": "To" + }, + "toggleDecodeDescription": { + "message": "We use 4byte.directory and Sourcify services to decode and display more readable transaction data. This helps you understand the outcome of pending and past transactions, but can result in your IP address being shared." + }, + "token": { + "message": "Token" + }, + "tokenAddress": { + "message": "Token address" + }, + "tokenAllowance": { + "message": "Token allowance" + }, + "tokenAlreadyAdded": { + "message": "Token has already been added." + }, + "tokenContractAddress": { + "message": "Token contract address" + }, + "tokenContractError": { + "message": "This address is a token contract address. If you send tokens to this address, you will lose them." + }, + "tokenContractWarning": { + "message": "Token contract warning" + }, + "tokenCount": { + "message": "token", + "description": "is number of tokens used for token transfers (singular form)" + }, + "tokenDecimal": { + "message": "Token decimal" + }, + "tokenDecimalFetchFailed": { + "message": "Token decimal required. Find it on: $1" + }, + "tokenDetails": { + "message": "Token details" + }, + "tokenId": { + "message": "Token ID" + }, + "tokenList": { + "message": "Token lists" + }, + "tokenMarketplace": { + "message": "Token marketplace" + }, + "tokenPermissionCount": { + "message": "$1 token permission", + "description": "$1 is the count of token permissions (singular form)" + }, + "tokenPermissionsCount": { + "message": "$1 token permissions", + "description": "$1 is the count of token permissions (plural form)" + }, + "tokenStandard": { + "message": "Token standard" + }, + "tokenStock": { + "message": "Stock" + }, + "tokenStream": { + "message": "Token stream" + }, + "tokenSubscription": { + "message": "Token subscription" + }, + "tokenSymbol": { + "message": "Token symbol" + }, + "tokenTransfer": { + "message": "Token transfer" + }, + "tokens": { + "message": "Tokens" + }, + "tokensCount": { + "message": "tokens", + "description": "is the count of tokens used for token transfers (plural form)" + }, + "tokensInCollection": { + "message": "Tokens in collection" + }, + "tooltipSatusConnectedUpperCase": { + "message": "Connected" + }, + "total": { + "message": "Total" + }, + "totalVolume": { + "message": "Total volume" + }, + "transaction": { + "message": "transaction" + }, + "transactionConfirmed": { + "message": "Transaction confirmed" + }, + "transactionDataFunction": { + "message": "Function" + }, + "transactionDetailGasHeading": { + "message": "Estimated gas fee" + }, + "transactionError": { + "message": "Transaction error. Exception thrown in contract code." + }, + "transactionErrorNoContract": { + "message": "Trying to call a function on a non-contract address." + }, + "transactionFailed": { + "message": "Transaction failed" + }, + "transactionFee": { + "message": "Transaction fee" + }, + "transactionFlowNetwork": { + "message": "Network" + }, + "transactionHistoryBaseFee": { + "message": "Base fee (GWEI)" + }, + "transactionHistoryL1GasLabel": { + "message": "Total L1 gas fee" + }, + "transactionHistoryL2GasLimitLabel": { + "message": "L2 gas limit" + }, + "transactionHistoryL2GasPriceLabel": { + "message": "L2 gas price" + }, + "transactionHistoryMaxFeePerGas": { + "message": "Max fee per gas" + }, + "transactionHistoryPriorityFee": { + "message": "Priority fee (GWEI)" + }, + "transactionHistoryTotalGasFee": { + "message": "Total gas fee" + }, + "transactionIdLabel": { + "message": "Transaction ID", + "description": "Label for the source transaction ID field." + }, + "transactionIncludesTypes": { + "message": "This transaction includes: $1." + }, + "transactionSettings": { + "message": "Transaction settings" + }, + "transactionShield": { + "message": "Transaction Shield" + }, + "transactionSubmitted": { + "message": "Transaction submitted" + }, + "transactionTotalGasFee": { + "message": "Total gas fee", + "description": "Label for the total gas fee incurred in the transaction." + }, + "transactions": { + "message": "Transactions" + }, + "transactionsAndAssets": { + "message": "Transactions and assets" + }, + "transfer": { + "message": "Transfer" + }, + "transferCrypto": { + "message": "Transfer crypto" + }, + "transferFrom": { + "message": "Transfer from" + }, + "transferRequest": { + "message": "Transfer request" + }, + "trezor": { + "message": "Trezor", + "description": "Hardware device name" + }, + "tronBandwidth": { + "message": "Bandwidth" + }, + "tronBandwidthCoverageDescriptionPlural": { + "message": "Covers ~$1 TRX transfers", + "description": "$1 is the number of TRX transfers" + }, + "tronBandwidthCoverageDescriptionSingular": { + "message": "Covers 1 TRX transfer" + }, + "tronDailyResources": { + "message": "Daily resource" + }, + "tronDailyResourcesDescription": { + "message": "This is your daily allowance based on your staked TRX. You get $1 bandwidth for free daily.", + "description": "$1 is the maximum bandwidth value" + }, + "tronEnergy": { + "message": "Energy" + }, + "tronEnergyCoverageDescriptionPlural": { + "message": "Covers ~$1 USDT transfers", + "description": "$1 is the number of USDT transfers" + }, + "tronEnergyCoverageDescriptionSingular": { + "message": "Covers 1 USDT transfer" + }, + "troubleConnectingToLedgerU2FOnFirefox": { + "message": "We're having trouble connecting your Ledger. $1", + "description": "$1 is a link to the wallet connection guide;" + }, + "troubleConnectingToLedgerU2FOnFirefox2": { + "message": "Review our hardware wallet connection guide and try again.", + "description": "$1 of the ledger wallet connection guide" + }, + "troubleConnectingToLedgerU2FOnFirefoxLedgerSolution": { + "message": "If you're on the latest version of Firefox, you might be experiencing an issue related to Firefox dropping U2F support. Learn how to fix this issue $1.", + "description": "It is a link to the ledger website for the workaround." + }, + "troubleConnectingToLedgerU2FOnFirefoxLedgerSolution2": { + "message": "here", + "description": "Second part of the error message; It is a link to the ledger website for the workaround." + }, + "troubleConnectingToWallet": { + "message": "We had trouble connecting to your $1, try reviewing $2 and try again.", + "description": "$1 is the wallet device name; $2 is a link to wallet connection guide" + }, + "troubleStartingMessage": { + "message": "This error could be intermittent, so try restarting the extension." + }, + "troubleStartingTitle": { + "message": "MetaMask had trouble starting." + }, + "trustSignalBlockDescription": { + "message": "If you connect to this site, you could lose all your assets." + }, + "trustSignalBlockTitle": { + "message": "Malicious site detected" + }, + "trustSignalContinueAnyway": { + "message": "Connect Anyway" + }, + "tryAgain": { + "message": "Try again" + }, + "turnOff": { + "message": "Turn off" + }, + "turnOffMetamaskNotificationsError": { + "message": "There was an error in disabling the notifications. Please try again later." + }, + "turnOffPasskey": { + "message": "Turn off $1", + "description": "Action label for turning off passkey unlock. $1 is the OS-specific auth-method noun (Biometrics / Touch ID / Windows Hello)." + }, + "turnOffPasskeyFailed": { + "message": "We couldn't turn off $1. Try again.", + "description": "Error toast when turning off passkey unlock fails. $1 is the OS-specific auth-method noun (Biometrics / Touch ID / Windows Hello)." + }, + "turnOn": { + "message": "Turn on" + }, + "turnOnMetamaskNotifications": { + "message": "Turn on notifications" + }, + "turnOnMetamaskNotificationsButton": { + "message": "Turn on" + }, + "turnOnMetamaskNotificationsError": { + "message": "There was an error in creating the notifications. Please try again later." + }, + "turnOnMetamaskNotificationsMessageFirst": { + "message": "Stay in the loop on what's happening in your wallet with notifications." + }, + "turnOnMetamaskNotificationsMessagePrivacyBold": { + "message": "notifications settings." + }, + "turnOnMetamaskNotificationsMessagePrivacyLink": { + "message": "Learn how we protect your privacy while using this feature." + }, + "turnOnMetamaskNotificationsMessageSecond": { + "message": "To use wallet notifications, we use a profile to sync some settings across your devices. $1" + }, + "turnOnMetamaskNotificationsMessageThird": { + "message": "You can turn off notifications at any time in the $1" + }, + "turnOnTokenDetection": { + "message": "Turn on enhanced token detection" + }, + "tutorial": { + "message": "Tutorial" + }, + "txAlertTitle": { + "message": "This transaction will be reverted" + }, + "typeYourSRP": { + "message": "Enter your Secret Recovery Phrase" + }, + "u2f": { + "message": "U2F", + "description": "A name on an API for the browser to interact with devices that support the U2F protocol. On some browsers we use it to connect MetaMask to Ledger devices." + }, + "unableToConnectTo": { + "message": "Unable to connect to $1.", + "description": "Message shown when network connection fails. $1 is the network name." + }, + "unableToDownload": { + "message": "Unable to download" + }, + "unapproved": { + "message": "Unapproved" + }, + "unavailable": { + "message": "Unavailable" + }, + "unexpectedBehavior": { + "message": "This behavior is unexpected and should be reported as a bug, even if your accounts are restored." + }, + "unifiedSwapAllowSwappingOf": { + "message": "Allow exact access to $1 $2 on $3 for swapping" + }, + "unifiedSwapFromTo": { + "message": "Swap $1 $2 to $3", + "description": "Tells a user that they need to confirm on their hardware wallet a swap of 2 tokens. $1 is a source token and $2 is a destination token" + }, + "units": { + "message": "units" + }, + "unknown": { + "message": "Unknown" + }, + "unknownCollection": { + "message": "Unnamed collection" + }, + "unknownNetworkForGatorPermissions": { + "message": "Unknown network", + "description": "Displayed on places like Gator permissions when regular name is not available." + }, + "unknownNetworkForKeyEntropy": { + "message": "Unknown network", + "description": "Displayed on places like Snap install warning when regular name is not available." + }, + "unknownQrCode": { + "message": "Error: We couldn't identify that QR code" + }, + "unlimited": { + "message": "Unlimited" + }, + "unlock": { + "message": "Unlock" + }, + "unlockPageIncorrectPassword": { + "message": "Password is incorrect. Please try again." + }, + "unlockPageTooManyFailedAttempts": { + "message": "Too many attempts. Try again in " + }, + "unlockToReveal": { + "message": "Unlock to reveal", + "description": "Label used for Private Keys row on multichain account details page." + }, + "unlockWithPasskey": { + "message": "Unlock with $1", + "description": "Action label / aria-label for the passkey unlock button. $1 is the OS-specific auth-method noun (Biometrics / Touch ID / Windows Hello)." + }, + "unpin": { + "message": "Unpin" + }, + "unrecognizedChain": { + "message": "This custom network is not recognized", + "description": "$1 is a clickable link with text defined by the 'unrecognizedChanLinkText' key. The link will open to instructions for users to validate custom network details." + }, + "unsendableAsset": { + "message": "Sending NFT (ERC-721) tokens is not currently supported", + "description": "This is an error message we show the user if they attempt to send an NFT asset type, for which currently don't support sending" + }, + "unstableTokenPriceDescription": { + "message": "The price of this token in USD is highly volatile, indicating a high risk of losing significant value by interacting with it." + }, + "unstableTokenPriceTitle": { + "message": "Unstable token price" + }, + "update": { + "message": "Update" + }, + "updateEthereumChainConfirmationDescription": { + "message": "This site is requesting to update your default network URL. You can edit defaults and network information any time." + }, + "updateInformation": { + "message": "We've made your wallet safer, smoother, and added some new features. Update now to stay protected and use our latest improvements." + }, + "updateNetworkConfirmationTitle": { + "message": "Update $1", + "description": "$1 represents network name" + }, + "updateOrEditNetworkInformations": { + "message": "Update your information or" + }, + "updateRequest": { + "message": "Update request" + }, + "updateRpc": { + "message": "Update RPC", + "description": "Button text to update RPC endpoint" + }, + "updateToTheLatestVersion": { + "message": "Update to the latest version" + }, + "updatedRpcForNetworks": { + "message": "Network RPCs Updated" + }, + "updatedToMetaMaskDefault": { + "message": "Updated to MetaMask default", + "description": "Toast message confirming that the default RPC endpoint has been updated to MetaMask default" + }, + "uploadDropFile": { + "message": "Drop your file here" + }, + "uploadFile": { + "message": "Upload file" + }, + "urlErrorMsg": { + "message": "URLs require the appropriate HTTP/HTTPS prefix." + }, + "urlUnknown": { + "message": "URL unknown" + }, + "use4ByteResolution": { + "message": "Decode smart contracts" + }, + "useDifferentLoginMethod": { + "message": "Use a different login method" + }, + "useMultiAccountBalanceChecker": { + "message": "Batch account balance requests" + }, + "useMultiAccountBalanceCheckerSettingDescription": { + "message": "Get faster balance updates by batching account balance requests. This lets us fetch your account balances together, so you get quicker updates for an improved experience. When this feature is off, third parties may be less likely to associate your accounts with each other." + }, + "useMultiAccountBalanceCheckerSettingDescriptionV2": { + "message": "Sends balance updates for all your accounts at once. Allows for a faster and overall better experience managing multiple accounts." + }, + "useNftDetection": { + "message": "Autodetect NFTs" + }, + "useNftDetectionDescription": { + "message": "Displays all NFTs, including fake ones airdropped by scammers." + }, + "usePassword": { + "message": "Use password" + }, + "usePhishingDetection": { + "message": "Use phishing detection" + }, + "usePhishingDetectionDescription": { + "message": "Display a warning for phishing domains targeting Ethereum users" + }, + "useSafeChainsListValidation": { + "message": "Network details check" + }, + "useSafeChainsListValidationDescriptionV2": { + "message": "Reduces your chances of connecting to a malicious or incorrect network. MetaMask uses $1 to show accurate and standardized network details." + }, + "useSafeChainsListValidationWebsite": { + "message": "chainid.network", + "description": "useSafeChainsListValidationWebsite is separated from the rest of the text so that we can bold the third party service name in the middle of them" + }, + "useTokenDetectionPrivacyDesc": { + "message": "Automatically displaying tokens sent to your account involves communication with third party servers to fetch token’s images. Those serves will have access to your IP address." + }, + "usedByClients": { + "message": "Used by a variety of different clients" + }, + "userOpContractDeployError": { + "message": "Contract deployment from a smart account is not supported" + }, + "value": { + "message": "Value" + }, + "version": { + "message": "Version" + }, + "view": { + "message": "View" + }, + "viewActivity": { + "message": "View activity" + }, + "viewAddressOnExplorer": { + "message": "View on $1", + "description": "$1 is the block explorer name" + }, + "viewDetails": { + "message": "View details" + }, + "viewOnBlockExplorer": { + "message": "View on block explorer" + }, + "viewOnCustomBlockExplorer": { + "message": "View $1 at $2", + "description": "$1 is the action type. e.g (Account, Transaction, Swap) and $2 is the Custom Block Explorer URL" + }, + "viewOnEtherscan": { + "message": "View $1 on Etherscan", + "description": "$1 is the action type. e.g (Account, Transaction, Swap)" + }, + "viewOnExplorer": { + "message": "View on explorer" + }, + "viewOnOpensea": { + "message": "View on Opensea" + }, + "viewTokenDetails": { + "message": "View token details" + }, + "viewTransaction": { + "message": "View transaction" + }, + "viewinExplorer": { + "message": "View $1 in explorer", + "description": "$1 is the action type. e.g (Account, Transaction, Swap)" + }, + "visitSite": { + "message": "Visit site" + }, + "visitSupportDataConsentModalAccept": { + "message": "Confirm" + }, + "visitSupportDataConsentModalDescription": { + "message": "Do you want to share your MetaMask Identifier and app version with our Support Center? This can help us better solve your problem, but is optional." + }, + "visitSupportDataConsentModalReject": { + "message": "Don’t share" + }, + "visitSupportDataConsentModalTitle": { + "message": "Share device details with support" + }, + "visitWebSite": { + "message": "Visit our website" + }, + "volume": { + "message": "Volume" + }, + "wallet": { + "message": "Wallet" + }, + "walletConnectionGuide": { + "message": "our hardware wallet connection guide" + }, + "walletName": { + "message": "Wallet name" + }, + "walletReadyLearn": { + "message": "$1 you can keep this phrase safe so you never lose access to your money.", + "description": "$1 is the link to Learn how" + }, + "walletReadyLoseSrp": { + "message": "If you lose your Secret Recovery Phrase, you won’t be able to use your wallet." + }, + "walletReadyLoseSrpFromReminder": { + "message": "This Secret Recovery Phrase can help you regain access if you ever forget your password or lose access to your login." + }, + "wantToAddThisNetwork": { + "message": "Want to add this network?" + }, + "wantsToAddThisAsset": { + "message": "This allows the following asset to be added to your wallet." + }, + "warning": { + "message": "Warning" + }, + "warningFromSnap": { + "message": "Warning from $1", + "description": "$1 represents the name of the snap" + }, + "watchEthereumAccountsDescription": { + "message": "Turning this option on will give you the ability to watch Ethereum accounts via a public address or ENS name. For feedback on this Beta feature please complete this $1.", + "description": "$1 is the link to a product feedback form" + }, + "watchEthereumAccountsToggle": { + "message": "Watch Ethereum Accounts (Beta)" + }, + "watchOutMessage": { + "message": "Beware of $1.", + "description": "$1 is a link with text that is provided by the 'securityMessageLinkForNetworks' key" + }, + "web3": { + "message": "Web3" + }, + "web3ShimUsageNotification": { + "message": "We noticed that the current website tried to use the removed window.web3 API. If the site appears to be broken, please click $1 for more information.", + "description": "$1 is a clickable link." + }, + "webhid": { + "message": "WebHID", + "description": "Refers to a interface for connecting external devices to the browser. Used for connecting ledger to the browser. Read more here https://developer.mozilla.org/en-US/docs/Web/API/WebHID_API" + }, + "websites": { + "message": "websites", + "description": "Used in the 'permission_rpc' message." + }, + "weekly": { + "message": "weekly" + }, + "welcomeBack": { + "message": "Welcome back" + }, + "whatsThis": { + "message": "What's this?" + }, + "willApproveAmountForBridging": { + "message": "Approves token for bridge." + }, + "willApproveAmountForSwapping": { + "message": "Approves token for swap." + }, + "withdrawTo": { + "message": "Receive", + "description": "Label for pay with row in withdrawal flows showing the destination token" + }, + "withdrawing": { + "message": "Withdrawing" + }, + "wrongNetworkName": { + "message": "According to our records, the network name may not correctly match this chain ID." + }, + "wrongPassword": { + "message": "Wrong password", + "description": "Displayed when the user enters an incorrect password" + }, + "year": { + "message": "year" + }, + "yes": { + "message": "Yes" + }, + "you": { + "message": "You" + }, + "youApprove": { + "message": "You approve" + }, + "youNeedToAllowCameraAccess": { + "message": "You need to allow camera access to use this feature." + }, + "youReceived": { + "message": "You received", + "description": "Label indicating the amount and asset the user received." + }, + "youSent": { + "message": "You sent", + "description": "Label indicating the amount and asset the user sent." + }, + "youllReceive": { + "message": "You'll receive", + "description": "Row label on the Perps Withdraw confirmation showing the net receive amount after fees" + }, + "yourActivity": { + "message": "Your activity" + }, + "yourBalance": { + "message": "Your balance" + }, + "yourNFTmayBeAtRisk": { + "message": "Your NFT may be at risk" + }, + "yourWalletIsReady": { + "message": "Your wallet is ready!" + }, + "yourWalletIsReadyFromReminder": { + "message": "Keep your Secret Recovery Phrase safe!" + } + }, + "en": { + "CSS_loadingTakingTooLongActionText": { + "message": "Relaunch MetaMask if the problem persists.", + "description": "Second line of the message that is shown when the initial loading of the MetaMask UI takes a very long time." + }, + "CSS_loadingTakingTooLongMessageText": { + "message": "Loading is taking longer than usual.", + "description": "First line of the message that is shown when the initial loading of the MetaMask UI takes a very long time." + }, + "QRHardwareInvalidTransactionTitle": { + "message": "Error" + }, + "QRHardwareMismatchedSignId": { + "message": "Incongruent transaction data. Please check the transaction details." + }, + "QRHardwarePubkeyAccountOutOfRange": { + "message": "No more accounts. If you would like to access another account unlisted below, please reconnect your hardware wallet and select it." + }, + "QRHardwareScanInstructions": { + "message": "Place the QR code in front of your camera. The screen is blurred, but it will not affect the reading." + }, + "QRHardwareSignRequestCancel": { + "message": "Reject" + }, + "QRHardwareSignRequestDescription": { + "message": "After you’ve signed with your wallet, click on 'Get Signature' to receive the signature" + }, + "QRHardwareSignRequestGetSignature": { + "message": "Get signature" + }, + "QRHardwareSignRequestSubtitle": { + "message": "Scan the QR code with your wallet" + }, + "QRHardwareSignRequestTitle": { + "message": "Request signature" + }, + "QRHardwareUnknownQRCodeTitle": { + "message": "Error" + }, + "QRHardwareUnknownWalletQRCode": { + "message": "Invalid QR code. Please scan the sync QR code of the hardware wallet." + }, + "QRHardwareWalletImporterTitle": { + "message": "Scan QR code" + }, + "QRHardwareWalletSteps1Description": { + "message": "You can choose from a list of official QR-code supporting partners below." + }, + "QRHardwareWalletSteps1Title": { + "message": "Connect your QR hardware wallet" + }, + "QRHardwareWalletSteps2Description": { + "message": "Ngrave Zero" + }, + "SrpListHideAccounts": { + "message": "Hide $1 accounts", + "description": "$1 is the number of accounts" + }, + "SrpListHideSingleAccount": { + "message": "Hide 1 account" + }, + "SrpListShowAccounts": { + "message": "Show $1 accounts", + "description": "$1 is the number of accounts" + }, + "SrpListShowSingleAccount": { + "message": "Show 1 account" + }, + "about": { + "message": "About" + }, + "aboutMetaMask": { + "message": "About MetaMask" + }, + "accept": { + "message": "Accept" + }, + "acceptAndClose": { + "message": "Accept and close" + }, + "acceptTermsOfUse": { + "message": "I have read and agree to the $1", + "description": "$1 is the `terms` message" + }, + "accessingYourCamera": { + "message": "Accessing your camera..." + }, + "account": { + "message": "Account" + }, + "accountActivity": { + "message": "Account activity" + }, + "accountActivityText": { + "message": "Select the accounts you want to be notified about:" + }, + "accountAlreadyExistsLogin": { + "message": "Log in" + }, + "accountAlreadyExistsLoginDescription": { + "message": "A wallet using “$1” already exists. Do you want to try logging in instead?", + "description": "$1 is the account email" + }, + "accountAlreadyExistsTitle": { + "message": "Wallet already exists" + }, + "accountDetails": { + "message": "Account details" + }, + "accountDetailsSrpBackUpMessage": { + "message": "Back up", + "description": "Text used to describe action for SRP backup. Used on multichain account details." + }, + "accountIdenticon": { + "message": "Account icon" + }, + "accountName": { + "message": "Account name" + }, + "accountNameAlreadyInUse": { + "message": "This name is already in use.", + "description": "Error help text used under the input field for renaming multichain account when user tries to use existing name." + }, + "accountNameDuplicate": { + "message": "This account name already exists", + "description": "This is an error message shown when the user enters a new account name that matches an existing account name" + }, + "accountNameReserved": { + "message": "This account name is reserved", + "description": "This is an error message shown when the user enters a new account name that is reserved for future use" + }, + "accountNotFoundCreateOne": { + "message": "Yes, create a new wallet" + }, + "accountNotFoundDescription": { + "message": "We couldn’t find a wallet for “$1”. Do you want to create a new one with this login?", + "description": "$1 is the account email" + }, + "accountNotFoundTitle": { + "message": "Wallet not found" + }, + "accountOptions": { + "message": "Account options" + }, + "accountPermissionToast": { + "message": "Account permissions updated" + }, + "accountSelectionRequired": { + "message": "You need to select an account!" + }, + "accountSmallCase": { + "message": "account" + }, + "accountTypeNotSupported": { + "message": "Account type not supported" + }, + "accounts": { + "message": "Accounts" + }, + "accountsConnected": { + "message": "Accounts connected" + }, + "accountsPermissionsTitle": { + "message": "See your accounts and suggest transactions" + }, + "accountsSmallCase": { + "message": "accounts" + }, + "actionUnavailable": { + "message": "Action unavailable" + }, + "active": { + "message": "Active" + }, + "activity": { + "message": "Activity" + }, + "activityEmptyDescription": { + "message": "Nothing to see yet. Swap your first token today." + }, + "add": { + "message": "Add" + }, + "addACustomNetwork": { + "message": "Add a custom network" + }, + "addANetwork": { + "message": "Add a network" + }, + "addANickname": { + "message": "Add a nickname" + }, + "addAUrl": { + "message": "Add a URL" + }, + "addAWallet": { + "message": "Add a wallet" + }, + "addAccount": { + "message": "Add account" + }, + "addAccountFromNetwork": { + "message": "Add $1 account", + "description": "$1 is the network name, e.g. Bitcoin or Solana" + }, + "addAccountOrWallet": { + "message": "Add account or wallet" + }, + "addAcquiredTokens": { + "message": "Add the tokens you've acquired using MetaMask" + }, + "addAlias": { + "message": "Add alias" + }, + "addBitcoinAccountLabel": { + "message": "Bitcoin account" + }, + "addBlockExplorer": { + "message": "Add a block explorer" + }, + "addBlockExplorerUrl": { + "message": "Add a block explorer URL" + }, + "addContact": { + "message": "Add contact" + }, + "addCustomNetwork": { + "message": "Add custom network" + }, + "addCustomToken": { + "message": "Add a custom token" + }, + "addEthereumChainWarningModalHeader": { + "message": "Only add this RPC provider if you’re sure you can trust it. $1", + "description": "$1 is addEthereumChainWarningModalHeaderPartTwo passed separately so that it can be bolded" + }, + "addEthereumChainWarningModalHeaderPartTwo": { + "message": "Malicious providers may lie about the state of the blockchain and record your network activity." + }, + "addEthereumChainWarningModalListHeader": { + "message": "It's important that your provider is reliable, as it has the power to:" + }, + "addEthereumChainWarningModalListPointOne": { + "message": "See your accounts and IP address, and associate them together" + }, + "addEthereumChainWarningModalListPointThree": { + "message": "Show account balances and other on-chain states" + }, + "addEthereumChainWarningModalListPointTwo": { + "message": "Broadcast your transactions" + }, + "addEthereumChainWarningModalTitle": { + "message": "You are adding a new RPC provider for Ethereum Mainnet" + }, + "addEthereumWatchOnlyAccount": { + "message": "Watch an Ethereum account (Beta)" + }, + "addFriendsAndAddresses": { + "message": "Add friends and addresses you trust" + }, + "addFunds": { + "message": "Add funds" + }, + "addFundsModalBuyCrypto": { + "message": "Buy crypto" + }, + "addFundsModalReceiveTokens": { + "message": "Receive tokens" + }, + "addFundsModalSwapTokens": { + "message": "Swap tokens" + }, + "addHardwareWalletLabel": { + "message": "Hardware wallet" + }, + "addMemo": { + "message": "Add memo" + }, + "addNetwork": { + "message": "Add network" + }, + "addNetworkConfirmationTitle": { + "message": "Add $1", + "description": "$1 represents network name" + }, + "addNetworkDescription": { + "message": "A site is suggesting additional network details." + }, + "addNewAccount": { + "message": "Add a new Ethereum account" + }, + "addNewEthereumAccountLabel": { + "message": "Ethereum account" + }, + "addNewSolanaAccountLabel": { + "message": "Solana account" + }, + "addNewTronAccountLabel": { + "message": "Tron account" + }, + "addNft": { + "message": "Add NFT" + }, + "addNfts": { + "message": "Add NFTs" + }, + "addNonEvmAccount": { + "message": "Add $1 account", + "description": "$1 is the non EVM network where the account is going to be created, e.g. Bitcoin or Solana" + }, + "addNonEvmAccountFromNetworkPicker": { + "message": "To enable the $1 network, you need to create a $2 account.", + "description": "$1 is the non EVM network where the account is going to be created, e.g. Solana Mainnet or Solana Devnet. $2 is the account type, e.g. Bitcoin or Solana" + }, + "addRpcUrl": { + "message": "Add RPC URL" + }, + "addSnapAccountToggle": { + "message": "Enable \"Add account Snap (Beta)\"" + }, + "addSnapAccountsDescription": { + "message": "Turning on this feature will give you the option to add the new Beta account Snaps right from your account list. If you install an account Snap, remember that it is a third-party service." + }, + "addSuggestedNFTs": { + "message": "Add suggested NFTs" + }, + "addSuggestedTokens": { + "message": "Add suggested tokens" + }, + "addToken": { + "message": "Add token" + }, + "addUrl": { + "message": "Add URL" + }, + "addWallet": { + "message": "Add wallet" + }, + "addedProtectionDescription": { + "message": "You're interacting with an unknown address. This helps prevent malicious transactions." + }, + "addedProtectionOptionalBadge": { + "message": "Optional" + }, + "addedProtectionTitle": { + "message": "Added protection" + }, + "addedProtectionTooltip": { + "message": "If the final transaction doesn't match this preview, it won't go through. You only pay the network fee." + }, + "additionalNetworks": { + "message": "Additional networks" + }, + "address": { + "message": "Address" + }, + "addressCopied": { + "message": "Address copied" + }, + "addressLabel": { + "message": "address", + "description": "Label for address count (single address). Used on multichain account details page." + }, + "addressMismatch": { + "message": "Site address mismatch" + }, + "addressMismatchOriginal": { + "message": "Current URL: $1", + "description": "$1 replaced by origin URL in confirmation request" + }, + "addressMismatchPunycode": { + "message": "Punycode version: $1", + "description": "$1 replaced by punycode version of the URL in confirmation request" + }, + "addressQrCodeModalDescription": { + "message": "Use this address to receive tokens and collectibles on $1", + "description": "$1 is the network name" + }, + "addressQrCodeModalHeading": { + "message": "$1 Address", + "description": "$1 is the network name" + }, + "addressQrCodeModalTitle": { + "message": "$1 / $2", + "description": "$1 is account name, $2 is network name" + }, + "addresses": { + "message": "Addresses", + "description": "Multichain account menu item for linking to addresses page" + }, + "addressesLabel": { + "message": "addresses", + "description": "Label for address count (multiple addresses). Used on multichain account details page." + }, + "advanced": { + "message": "Advanced" + }, + "advancedDetailsDataDesc": { + "message": "Data" + }, + "advancedDetailsHexDesc": { + "message": "Hex" + }, + "advancedDetailsNonceDesc": { + "message": "Nonce" + }, + "advancedDetailsNonceTooltip": { + "message": "This is the transaction number of an account. Nonce for the first transaction is 0 and it increases in sequential order." + }, + "advancedEIP1559ModalTitle": { + "message": "Advanced network fee" + }, + "advancedGasPriceModalTitle": { + "message": "Advanced network fee" + }, + "advancedGasPriceTitle": { + "message": "Gas price" + }, + "advancedPermissionSmallCase": { + "message": "advanced permission" + }, + "advancedPermissionsSmallCase": { + "message": "advanced permissions" + }, + "airDropPatternDescription": { + "message": "The token's on-chain history reveals prior instances of suspicious airdrop activities." + }, + "airDropPatternTitle": { + "message": "Airdrop pattern" + }, + "airgapVault": { + "message": "AirGap Vault" + }, + "alert": { + "message": "Alert" + }, + "alertAccountTypeUpgradeMessage": { + "message": "You're updating your account to a smart account. You'll keep the same account address while unlocking faster transactions and lower network fees. $1" + }, + "alertAccountTypeUpgradeTitle": { + "message": "Account type" + }, + "alertActionBurnAddress": { + "message": "Sending assets to burn address" + }, + "alertActionBuyWithNativeCurrency": { + "message": "Buy $1" + }, + "alertActionEditNetworkFee": { + "message": "Edit network fee" + }, + "alertActionUpdateGas": { + "message": "Update gas limit" + }, + "alertActionUpdateGasFee": { + "message": "Update fee" + }, + "alertActionUpdateGasFeeLevel": { + "message": "Update gas options" + }, + "alertContentMultipleApprovals": { + "message": "You're giving someone else permission to withdraw your tokens, even though it's not necessary for this transaction." + }, + "alertDisableTooltip": { + "message": "This can be changed in \"Settings > Alerts\"" + }, + "alertInsufficientPayTokenBalance": { + "message": "Insufficient funds" + }, + "alertInsufficientPayTokenBalanceFeesNoTarget": { + "message": "Add less or use a different token." + }, + "alertInsufficientPayTokenNative": { + "message": "Not enough $1 to cover fees. Use a token on another network or add more $1 to continue.", + "description": "$1 is the native currency symbol (e.g. ETH)" + }, + "alertMessageAddressMismatchWarning": { + "message": "Attackers sometimes mimic sites by making small changes to the site address. Make sure you're interacting with the intended site before you continue." + }, + "alertMessageAddressTrustSignal": { + "message": "We can't verify this address. It may be new or unverified. Only continue if you trust the source." + }, + "alertMessageAddressTrustSignalMalicious": { + "message": "If you confirm this request, you will probably lose your assets to a scammer." + }, + "alertMessageBurnAddress": { + "message": "You're sending your assets to a burn address. If you continue, you'll lose your assets." + }, + "alertMessageChangeInSimulationResults": { + "message": "Estimated changes for this transaction have been updated. Review them closely before proceeding." + }, + "alertMessageFirstTimeInteraction": { + "message": "You're interacting with this address for the first time. Make sure that it's correct before you continue." + }, + "alertMessageGasEstimateFailed": { + "message": "We’re unable to provide an accurate fee and this estimate might be high. We suggest you to input a custom gas limit, but there’s a risk the transaction will still fail." + }, + "alertMessageGasFeeLow": { + "message": "When choosing a low fee, expect slower transactions and longer wait times. For faster transactions, choose Market or Aggressive fee options." + }, + "alertMessageGasTooLow": { + "message": "To continue with this transaction, you’ll need to increase the gas limit to 21000 or higher." + }, + "alertMessageInsufficientBalanceWithNativeCurrency": { + "message": "You do not have enough $1 in your account to pay for network fees." + }, + "alertMessageNoGasPrice": { + "message": "We can’t move forward with this transaction until you manually update the fee." + }, + "alertMessageOriginTrustSignalMalicious": { + "message": "This has been identified as malicious. We recommend not interacting with this site." + }, + "alertMessageOriginTrustSignalWarning": { + "message": "This has been identified as suspicious. We recommend not interacting with this site." + }, + "alertMessageSignInDomainMismatch": { + "message": "The site making the request is not the site you’re signing into. This could be an attempt to steal your login credentials." + }, + "alertMessageSignInWrongAccount": { + "message": "This site is asking you to sign in using the wrong account." + }, + "alertMessageSuggestedGasFeeHigh": { + "message": "This site is suggesting a higher network fee than necessary. Edit the network fee to pay less." + }, + "alertMessageTokenTrustSignalMalicious": { + "message": "This token has been identified as malicious. Interacting with this token may result in a loss of funds." + }, + "alertMessageTokenTrustSignalWarning": { + "message": "This token shows strong signs of malicious behavior. Continuing may result in loss of funds." + }, + "alertModalAcknowledge": { + "message": "I have acknowledged the risk and still want to proceed" + }, + "alertModalDetails": { + "message": "Alert details" + }, + "alertModalReviewAllAlerts": { + "message": "Review all alerts" + }, + "alertNoPayTokenQuotesMessage": { + "message": "This payment route isn't available right now. Try changing the amount, network, or token and we'll find the best option." + }, + "alertNoPayTokenQuotesTitle": { + "message": "No quotes" + }, + "alertPayHardwareAccountMessage": { + "message": "Hardware wallets aren't supported.\nSwitch wallets to continue." + }, + "alertPayHardwareAccountTitle": { + "message": "Wallet not supported" + }, + "alertReasonChangeInSimulationResults": { + "message": "Results have changed" + }, + "alertReasonFirstTimeInteraction": { + "message": "1st interaction" + }, + "alertReasonGasEstimateFailed": { + "message": "Inaccurate fee" + }, + "alertReasonGasFeeLow": { + "message": "Slow speed" + }, + "alertReasonGasSponsorshipUnavailable": { + "message": "Gas sponsorship unavailable" + }, + "alertReasonGasTooLow": { + "message": "Low gas limit" + }, + "alertReasonInsufficientBalance": { + "message": "Insufficient funds" + }, + "alertReasonMultipleApprovals": { + "message": "Unnecessary permission" + }, + "alertReasonNoGasPrice": { + "message": "Fee estimate unavailable" + }, + "alertReasonOriginTrustSignalMalicious": { + "message": "Malicious site" + }, + "alertReasonOriginTrustSignalVerified": { + "message": "Verified site" + }, + "alertReasonOriginTrustSignalWarning": { + "message": "Suspicious site" + }, + "alertReasonPendingTransactions": { + "message": "Pending transaction" + }, + "alertReasonSignIn": { + "message": "Suspicious sign-in request" + }, + "alertReasonSuggestedGasFeeHigh": { + "message": "High site fee" + }, + "alertReasonTokenTrustSignalMalicious": { + "message": "Malicious token" + }, + "alertReasonTokenTrustSignalWarning": { + "message": "Suspicious token" + }, + "alertReasonWrongAccount": { + "message": "Wrong account" + }, + "alertSelectedAccountWarning": { + "message": "This request is for a different account than the one selected in your wallet. To use another account, connect it to the site." + }, + "alerts": { + "message": "Alerts" + }, + "all": { + "message": "All" + }, + "allDefaultNetworks": { + "message": "All default networks" + }, + "allNetworks": { + "message": "All networks" + }, + "allPermissions": { + "message": "Dapp connections" + }, + "allPopularNetworks": { + "message": "All popular networks" + }, + "allTimeHigh": { + "message": "All-time high" + }, + "allTimeLow": { + "message": "All-time low" + }, + "allTokens": { + "message": "All tokens" + }, + "allowAddRpc": { + "message": "Add RPC" + }, + "allowAddRpcDescription": { + "message": "Allow the site to add a RPC URL for $1.\n\nSet your preferred RPC anytime by going to Networks in Settings", + "description": "$1 is the chain name" + }, + "allowNotifications": { + "message": "Allow notifications" + }, + "amount": { + "message": "Amount" + }, + "amountReceived": { + "message": "Amount received" + }, + "amountSent": { + "message": "Amount sent" + }, + "andForListItems": { + "message": "$1, and $2", + "description": "$1 is the first item, $2 is the last item in a list of items. Used in Snap Install Warning modal." + }, + "andForTwoItems": { + "message": "$1 and $2", + "description": "$1 is the first item, $2 is the second item. Used in Snap Install Warning modal." + }, + "annual": { + "message": "Annual" + }, + "appDescription": { + "message": "The world's most trusted crypto wallet", + "description": "The description of the application" + }, + "appName": { + "message": "MetaMask", + "description": "The name of the application" + }, + "appNameBeta": { + "message": "MetaMask Beta", + "description": "The name of the application (Beta)" + }, + "appNameFlask": { + "message": "MetaMask Flask", + "description": "The name of the application (Flask)" + }, + "apply": { + "message": "Apply" + }, + "approve": { + "message": "Approve spend limit" + }, + "approveButtonText": { + "message": "Approve" + }, + "approveIncreaseAllowance": { + "message": "Increase $1 spending cap", + "description": "The token symbol that is being approved" + }, + "approveSpendingCap": { + "message": "Approve $1 spending cap", + "description": "The token symbol that is being approved" + }, + "approveToken": { + "message": "Approve $1", + "description": "Used in the transaction details summary to describe an approval transaction. $1 is the symbol of the token being approved." + }, + "approved": { + "message": "Approved" + }, + "approvedOn": { + "message": "Approved on $1", + "description": "$1 is the approval date for a permission" + }, + "approvedOnForAccounts": { + "message": "Approved on $1 for $2", + "description": "$1 is the approval date for a permission. $2 is the AvatarGroup component displaying account images." + }, + "areYouSure": { + "message": "Are you sure?" + }, + "asset": { + "message": "Asset" + }, + "assetChartNoHistoricalPrices": { + "message": "We could not fetch any historical data" + }, + "assetOptions": { + "message": "Asset options" + }, + "assets": { + "message": "Assets" + }, + "assetsDescription": { + "message": "Autodetect tokens in your wallet, display NFTs, and get batched account balance updates" + }, + "asterdexReferralConfirmText": { + "message": "Yes, get 4% back", + "description": "Primary button label on the AsterDEX referral confirmation screen" + }, + "asterdexReferralSubtitle": { + "message": "Get 4% back on trades with a MetaMask referral code.", + "description": "The subtitle of the AsterDEX referral confirmation screen" + }, + "asterdexReferralSubtitle2": { + "message": "Get 4% back on trades with a MetaMask referral code. This discount applies to all future trades, as per AsterDEX's $1. MetaMask earns a fee.", + "description": "Subtitle on the AsterDEX referral confirmation screen. $1 is a link to the partner's terms." + }, + "asterdexReferralTitle": { + "message": "Get 4% back on AsterDEX", + "description": "Title of the AsterDEX referral confirmation screen" + }, + "attemptToCancelSwapForFree": { + "message": "Attempt to cancel swap for free" + }, + "attributes": { + "message": "Attributes" + }, + "attributions": { + "message": "Attributions" + }, + "authorizedPermissions": { + "message": "You have authorized the following permissions" + }, + "autoDetectTokens": { + "message": "Autodetect tokens" + }, + "autoDetectTokensDescriptionV2": { + "message": "Displays new tokens sent to your wallet." + }, + "autoLock": { + "message": "Auto lock" + }, + "autoLockAfter15Seconds": { + "message": "After 15 seconds" + }, + "autoLockAfter1Minute": { + "message": "After 1 minute" + }, + "autoLockAfter30Seconds": { + "message": "After 30 seconds" + }, + "autoLockAfter5Minutes": { + "message": "After 5 minutes" + }, + "autoLockAfterMinutes": { + "message": "After $1 minutes" + }, + "autoLockNever": { + "message": "Never" + }, + "autoLockTimeLimit": { + "message": "Auto-lock timer (minutes)" + }, + "available": { + "message": "available" + }, + "average": { + "message": "Average" + }, + "back": { + "message": "Back" + }, + "backToHome": { + "message": "Back to home" + }, + "backUpIncomplete": { + "message": "Back up incomplete" + }, + "backup": { + "message": "Backup" + }, + "backupAndSync": { + "message": "Backup and sync" + }, + "backupAndSyncBasicFunctionalityNameMention": { + "message": "basic functionality" + }, + "backupAndSyncEnable": { + "message": "Turn on backup and sync" + }, + "backupAndSyncEnableConfirmation": { + "message": "When you turn on backup and sync, you’re also turning on $1. Do you want to continue?", + "description": "$1 is backupAndSyncBasicFunctionalityNameMention in bold." + }, + "backupAndSyncEnableDescription": { + "message": "Backup and sync lets us store encrypted data for your custom settings and features. This keeps your MetaMask experience the same across devices and restores settings and features if you ever need to reinstall MetaMask. This doesn’t back up your Secret Recovery Phrase. $1.", + "description": "$1 is link to the backup and sync privacy policy." + }, + "backupAndSyncEnableDescriptionUpdatePreferences": { + "message": "You can update your preferences at any time in $1", + "description": "$1 is a bolded text that highlights the path to the settings page." + }, + "backupAndSyncEnableDescriptionUpdatePreferencesPath": { + "message": "Settings > Backup and sync." + }, + "backupAndSyncFeatureAccounts": { + "message": "Accounts" + }, + "backupAndSyncFeatureContacts": { + "message": "Contacts" + }, + "backupAndSyncManageWhatYouSync": { + "message": "Manage what you sync" + }, + "backupAndSyncManageWhatYouSyncDescription": { + "message": "Turn on what’s synced between your devices." + }, + "backupAndSyncPrivacyLink": { + "message": "Learn how we protect your privacy" + }, + "backupApprovalInfo": { + "message": "This secret code is required to recover your wallet in case you lose your device, forget your password, have to re-install MetaMask, or want to access your wallet on another device." + }, + "backupApprovalNotice": { + "message": "Back up your Secret Recovery Phrase to keep your wallet and funds secure." + }, + "backupKeyringSnapReminder": { + "message": "Be sure you can access any accounts created by this Snap on your own before removing it" + }, + "backupNow": { + "message": "Back up now" + }, + "balance": { + "message": "Balance" + }, + "balanceOutdated": { + "message": "Balance may be outdated" + }, + "baseFee": { + "message": "Base fee" + }, + "basic": { + "message": "Basic" + }, + "basicConfigurationDescription": { + "message": "MetaMask offers basic features like token details and gas settings through internet services. When you use internet services, your IP address is shared, in this case with MetaMask. This is just like when you visit any website. MetaMask uses this data temporarily and never sells your data. You can use a VPN or turn off these services, but it may affect your MetaMask experience. To learn more read our $1.", + "description": "$1 is to be replaced by the message for privacyMsg, and will link to https://consensys.io/privacy-policy" + }, + "basicConfigurationDescriptionV2": { + "message": "Includes basic features like token details and gas settings. Keep this feature on for the best experience. Read our $1 to learn more.", + "description": "$1 is to be replaced by the message for privacyMsg, and will link to https://consensys.io/privacy-policy" + }, + "basicConfigurationLabel": { + "message": "Basic functionality" + }, + "basicConfigurationModalCheckbox": { + "message": "I understand and want to continue" + }, + "basicConfigurationModalDisclaimerOffPart1": { + "message": "This means you won't fully optimize your time on MetaMask. Basic features (like token details, optimal gas settings, and others) won't be available to you." + }, + "basicConfigurationModalDisclaimerOffPart2": { + "message": "Turning this off also disables some features within privacy, backup and sync, and notifications." + }, + "basicConfigurationModalDisclaimerOn": { + "message": "To optimize your time on MetaMask, you’ll need to turn on this feature. Basic functions (like token details, optimal gas settings, and others) are important to the web3 experience." + }, + "basicConfigurationModalHeadingOff": { + "message": "Turn off basic functionality" + }, + "basicConfigurationModalHeadingOn": { + "message": "Turn on basic functionality" + }, + "basicFunctionalityRequired_description": { + "message": "This feature isn't available while basic functionality is turned off. Use the toggle below to turn it on." + }, + "basicFunctionalityRequired_goToHome": { + "message": "Go to the home page" + }, + "basicFunctionalityRequired_openCreateSnapAccountPage": { + "message": "Open the Create Account page" + }, + "basicFunctionalityRequired_openDefiPage": { + "message": "Open the DeFi page" + }, + "basicFunctionalityRequired_openMusdConversionPage": { + "message": "Open the mUSD Conversion page" + }, + "basicFunctionalityRequired_openNotificationsPage": { + "message": "Open the Notifications page" + }, + "basicFunctionalityRequired_openPerpsPage": { + "message": "Open the Perps page" + }, + "basicFunctionalityRequired_openRewardsPage": { + "message": "Open the Rewards page" + }, + "basicFunctionalityRequired_openSnapsPage": { + "message": "Open the Snaps page" + }, + "basicFunctionalityRequired_openSwapsPage": { + "message": "Open the Swap page" + }, + "basicFunctionalityRequired_openTransactionShieldPage": { + "message": "Open the Transaction Shield page" + }, + "basicFunctionalityRequired_reviewInSettings": { + "message": "Review in settings" + }, + "basicFunctionalityRequired_title": { + "message": "Basic functionality is off" + }, + "basicFunctionalityRequired_toggleLabel": { + "message": "Basic functionality" + }, + "bestQuote": { + "message": "Best quote" + }, + "bestQuoteTooltip": { + "message": "The best quote we found from providers, including provider fees and a 0.25% MetaMask fee. The minimum you'll receive if price changes is $1." + }, + "beta": { + "message": "Beta" + }, + "betaMetamaskVersion": { + "message": "MetaMask Beta Version" + }, + "betaTerms": { + "message": "Beta Terms of Use" + }, + "blockExplorerAccountAction": { + "message": "Account", + "description": "This is used with viewOnEtherscan and viewInExplorer e.g View Account in Explorer" + }, + "blockExplorerAssetAction": { + "message": "Asset", + "description": "This is used with viewOnEtherscan and viewInExplorer e.g View Asset in Explorer" + }, + "blockExplorerSwapAction": { + "message": "Swap", + "description": "This is used with viewOnEtherscan e.g View Swap on Etherscan" + }, + "blockExplorerUrl": { + "message": "Block explorer URL" + }, + "blockExplorerUrlDefinition": { + "message": "The URL used as the block explorer for this network." + }, + "blockExplorerView": { + "message": "View account at $1", + "description": "$1 replaced by URL for custom block explorer" + }, + "blockaid": { + "message": "Blockaid" + }, + "blockaidAlertDescriptionBlur": { + "message": "If you continue, all the assets you’ve listed on Blur could be at risk." + }, + "blockaidAlertDescriptionMalicious": { + "message": "You’re interacting with a malicious site. If you continue, you will lose your assets." + }, + "blockaidAlertDescriptionOpenSea": { + "message": "If you continue, all the assets you’ve listed on OpenSea could be at risk." + }, + "blockaidAlertDescriptionOthers": { + "message": "If you confirm this request, you could lose your assets. We recommend that you cancel this request." + }, + "blockaidAlertDescriptionTokenTransfer": { + "message": "You’re sending your assets to a scammer. If you continue, you’ll lose those assets." + }, + "blockaidAlertDescriptionWithdraw": { + "message": "If you confirm this request, you’re allowing a scammer to withdraw and spend your assets. You won’t get them back." + }, + "blockaidDescriptionApproveFarming": { + "message": "If you approve this request, a third party known for scams might take all your assets." + }, + "blockaidDescriptionBlurFarming": { + "message": "If you approve this request, someone can steal your assets listed on Blur." + }, + "blockaidDescriptionErrored": { + "message": "Because of an error, we couldn't check for security alerts. Only continue if you trust every address involved." + }, + "blockaidDescriptionMaliciousDomain": { + "message": "You're interacting with a malicious domain. If you approve this request, you might lose your assets." + }, + "blockaidDescriptionMightLoseAssets": { + "message": "If you approve this request, you might lose your assets." + }, + "blockaidDescriptionSeaportFarming": { + "message": "If you approve this request, someone can steal your assets listed on OpenSea." + }, + "blockaidDescriptionTransferFarming": { + "message": "If you approve this request, a third party known for scams will take all your assets." + }, + "blockaidTitleDeceptive": { + "message": "This is a deceptive request" + }, + "blockaidTitleMayNotBeSafe": { + "message": "Be careful" + }, + "blockaidTitleSuspicious": { + "message": "This is a suspicious request" + }, + "blockies": { + "message": "Blockies" + }, + "borrowed": { + "message": "Borrowed" + }, + "boughtFor": { + "message": "Bought for" + }, + "bridge": { + "message": "Bridge" + }, + "bridgeAllowSwappingOf": { + "message": "Allow exact access to $1 $2 on $3 for bridging", + "description": "Shows a user that they need to allow a token for swapping on their hardware wallet" + }, + "bridgeApproval": { + "message": "Approve $1 for bridge", + "description": "Used in the transaction display list to describe a transaction that is an approve call on a token that is to be bridged. $1 is the symbol of a token that has been approved." + }, + "bridgeApprovalWarning": { + "message": "You're allowing access to $1 $2. The contract won't access any additional funds." + }, + "bridgeApprovalWarningForHardware": { + "message": "You'll need to allow access to $1 $2 for bridging, and then approve bridging to $3. This will require two separate confirmations." + }, + "bridgeBlockExplorerLinkCopied": { + "message": "Block explorer link copied" + }, + "bridgeConfirmTwoTransactions": { + "message": "You'll need to confirm 2 transactions on your hardware wallet:" + }, + "bridgeCreateSolanaAccount": { + "message": "Create Solana account" + }, + "bridgeCreateSolanaAccountDescription": { + "message": "To swap to the Solana network, you need an account and receiving address." + }, + "bridgeCreateSolanaAccountTitle": { + "message": "You'll need a Solana account first." + }, + "bridgeDetailsTitle": { + "message": "Bridge details", + "description": "Title for the modal showing details about a bridge transaction." + }, + "bridgeEnterAmount": { + "message": "Select amount" + }, + "bridgeExplorerLinkViewOn": { + "message": "View on $1" + }, + "bridgeFee": { + "message": "Bridge fee" + }, + "bridgeFromTo": { + "message": "Bridge $1 $2 to $3", + "description": "Tells a user that they need to confirm on their hardware wallet a bridge. $1 is amount of source token, $2 is the source network, and $3 is the destination network" + }, + "bridgeGasFeesSplit": { + "message": "Any network fee quoted on the previous screen includes both transactions and will be split." + }, + "bridgeGetNewQuote": { + "message": "Get new quote" + }, + "bridgeLowestCost": { + "message": "Lowest cost" + }, + "bridgeMalicious": { + "message": "Malicious" + }, + "bridgeMaliciousTokenTitle": { + "message": "Malicious token" + }, + "bridgeMarketClosedAction": { + "message": "Market closed" + }, + "bridgeMarketClosedDescription": { + "message": "This stock token is currently outside trading hours. Try again when the market reopens." + }, + "bridgeMarketClosedModalDescription": { + "message": "The market that backs this token is currently closed. Tokens can be transferred on-chain at any time." + }, + "bridgeMarketClosedModalLearnMore": { + "message": "Learn more" + }, + "bridgeMarketClosedModalTitle": { + "message": "Market is closed" + }, + "bridgeMarketClosedTitle": { + "message": "Market closed" + }, + "bridgeNoMMFee": { + "message": "No MM fee" + }, + "bridgeNoPriceInfoTitle": { + "message": "No price information" + }, + "bridgePoints": { + "message": "Est. points", + "description": "Label for estimated points that can be earned from a bridge or swap" + }, + "bridgePoints_couldntLoad": { + "message": "Couldn't load", + "description": "Text shown in rewards badge when points couldn't be loaded" + }, + "bridgePoints_error": { + "message": "Couldn't load points", + "description": "Tooltip title when there's an error fetching estimated points" + }, + "bridgePoints_error_content": { + "message": "Don't worry, you're still earning points. They'll show up in your account soon, or you can check in the Rewards tab on MetaMask Mobile.", + "description": "Error message when points estimation fails" + }, + "bridgePoints_tooltip": { + "message": "Points", + "description": "Tooltip title for points" + }, + "bridgePoints_tooltip_content_1": { + "message": "Points are how you earn MetaMask Rewards for completing transactions, like when you swap, bridge, or trade perps.", + "description": "First part of tooltip content explaining rewards points" + }, + "bridgePoints_tooltip_content_2": { + "message": "Keep in mind this value is an estimate and will be finalized once the transaction is complete. Points can take up to 1 hour to be confirmed in your Rewards balance.", + "description": "Second part of tooltip content explaining how points are calculated" + }, + "bridgePriceDataUnavailableError": { + "message": "We couldn't get price information for this token. Make sure the amount received is what you expect before continuing." + }, + "bridgePriceImpact": { + "message": "Price impact" + }, + "bridgePriceImpactFiatAlert": { + "message": "You will lose $1 on this trade" + }, + "bridgePriceImpactHigh": { + "message": "High price impact" + }, + "bridgePriceImpactHighDescription": { + "message": "Because of your trade size and available liquidity, you'll get about $1 less than the market price. This is already factored into your quote." + }, + "bridgePriceImpactNormalDescription": { + "message": "This is how your trade changes the market price of a token. It depends on the trade size, availale liquidity, and provider fees. MetaMask doesn't control price impact." + }, + "bridgePriceImpactTooltipTitle": { + "message": "Price impact" + }, + "bridgePriceImpactVeryHigh": { + "message": "Very high price impact" + }, + "bridgePriceImpactVeryHighDescription": { + "message": "You'll lose approximately $1 of your token's market price on this swap. Try a smaller trade or a more liquid route to improve your rate." + }, + "bridgePriceImpactWarningAriaLabel": { + "message": "Read price impact warning details" + }, + "bridgePriceImpactWarningTitle": { + "message": "Price impact warning" + }, + "bridgeQuoteStreamCompleteAmountTooHigh": { + "message": "No quotes available. Try a smaller amount." + }, + "bridgeQuoteStreamCompleteAmountTooLow": { + "message": "No quotes available. Try a larger amount." + }, + "bridgeQuoteStreamCompleteRetry": { + "message": "Unable to get a quote right now. Try again." + }, + "bridgeQuoteStreamCompleteRwaGeoRestricted": { + "message": "This swap isn't available in your region." + }, + "bridgeQuoteStreamCompleteRwaMarketUnavailable": { + "message": "The market for this asset is currently unavailable. Try again later." + }, + "bridgeQuoteStreamCompleteRwaNativeTokenUnsupported": { + "message": "Swaps between this token and real-world assets aren't supported yet. Try using a different token." + }, + "bridgeQuoteStreamCompleteSlippageTooHigh": { + "message": "Slippage is too high. Try lowering your slippage setting." + }, + "bridgeQuoteStreamCompleteSlippageTooLow": { + "message": "Slippage is too low. Try increasing your slippage setting." + }, + "bridgeQuoteStreamCompleteTokenNotSupported": { + "message": "This token isn't supported. Try using a different token." + }, + "bridgeQuotesSortedByCost": { + "message": "Quotes are sorted by the estimated total cost, which includes the exchange rate and network fee." + }, + "bridgeReceive": { + "message": "Receive $1 on $2", + "description": "Summary line showing token received on destination chain. $1 is the token symbol, $2 is the network name." + }, + "bridgeReceiveLoading": { + "message": "Receiving on destination chain" + }, + "bridgeSecurityDataKnownAirdrop": { + "message": "Suspicious airdrop" + }, + "bridgeSecurityDataKnownConcentratedSupply": { + "message": "Concentrated supply" + }, + "bridgeSecurityDataKnownDynamicAnalysis": { + "message": "Suspicious behavior" + }, + "bridgeSecurityDataKnownFakeTradeMakerCount": { + "message": "Inflated trader count" + }, + "bridgeSecurityDataKnownFakeVolume": { + "message": "Fake volume" + }, + "bridgeSecurityDataKnownHeavilySniped": { + "message": "Heavy bot activity" + }, + "bridgeSecurityDataKnownHiddenSupplyByKeyHolder": { + "message": "Undisclosed supply" + }, + "bridgeSecurityDataKnownHighBuyFee": { + "message": "High buy fee" + }, + "bridgeSecurityDataKnownHighSellFee": { + "message": "High sell fee" + }, + "bridgeSecurityDataKnownHighTransferFee": { + "message": "High transfer fee" + }, + "bridgeSecurityDataKnownHoneypot": { + "message": "Honeypot risk" + }, + "bridgeSecurityDataKnownImpersonator": { + "message": "Impersonator" + }, + "bridgeSecurityDataKnownImpersonatorAsset": { + "message": "Impersonates a sensitive asset" + }, + "bridgeSecurityDataKnownImpersonatorHigh": { + "message": "Likely impersonator" + }, + "bridgeSecurityDataKnownImpersonatorMedium": { + "message": "Possible impersonator" + }, + "bridgeSecurityDataKnownInappropriateContent": { + "message": "Inappropriate content" + }, + "bridgeSecurityDataKnownInorganicVoume": { + "message": "Artificial volume" + }, + "bridgeSecurityDataKnownInsufficientLiquidity": { + "message": "Low locked liquidity" + }, + "bridgeSecurityDataKnownLowReputation": { + "message": "Creator has low reputation" + }, + "bridgeSecurityDataKnownMalicious": { + "message": "Known malicious" + }, + "bridgeSecurityDataKnownMetadata": { + "message": "Suspicious metadata" + }, + "bridgeSecurityDataKnownPostDump": { + "message": "Possible price manipulation" + }, + "bridgeSecurityDataKnownRugpull": { + "message": "Rugpull risk" + }, + "bridgeSecurityDataKnownSanctionedCreator": { + "message": "Sanctioned creator" + }, + "bridgeSecurityDataKnownSimilarMaliciousContract": { + "message": "Resembles malicious contract" + }, + "bridgeSecurityDataKnownSnipeMint": { + "message": "Bot activity at launch" + }, + "bridgeSecurityDataKnownSpamText": { + "message": "Spam text" + }, + "bridgeSecurityDataKnownStaticCodeSign": { + "message": "Suspicious code" + }, + "bridgeSecurityDataKnownTokenBackdoor": { + "message": "Token backdoor" + }, + "bridgeSecurityDataKnownUnsellable": { + "message": "Unsellable token" + }, + "bridgeSecurityDataKnownUnstablePrice": { + "message": "Unstable price" + }, + "bridgeSecurityDataKnownWashTrading": { + "message": "Wash trading" + }, + "bridgeSelectDestinationAccount": { + "message": "Select a destination account" + }, + "bridgeSelectDifferentQuote": { + "message": "Please select a different quote." + }, + "bridgeSelectNetwork": { + "message": "Select network" + }, + "bridgeSelectQuote": { + "message": "Select quote" + }, + "bridgeSelectTokenAmountAndAccount": { + "message": "Select token, amount and destination account" + }, + "bridgeSelectTokenAndAmount": { + "message": "Select token and amount" + }, + "bridgeSend": { + "message": "Send $1 from $2", + "description": "Summary line showing token sent from source chain. $1 is the token symbol, $2 is the network name." + }, + "bridgeSendLoading": { + "message": "Sending from source chain" + }, + "bridgeSolanaAccountCreated": { + "message": "Solana account created" + }, + "bridgeStatusComplete": { + "message": "Complete", + "description": "Status text indicating a bridge transaction has successfully completed." + }, + "bridgeStatusFailed": { + "message": "Failed", + "description": "Status text indicating a bridge transaction has failed." + }, + "bridgeStatusInProgress": { + "message": "In progress", + "description": "Status text indicating a bridge transaction is currently processing." + }, + "bridgeStepActionBridgeComplete": { + "message": "$1 received on $2", + "description": "$1 is the amount of the destination asset, $2 is the name of the destination network" + }, + "bridgeStepActionBridgePending": { + "message": "Receiving $1 on $2", + "description": "$1 is the amount of the destination asset, $2 is the name of the destination network" + }, + "bridgeStepActionSwapComplete": { + "message": "Swapped $1 for $2", + "description": "$1 is the amount of the source asset, $2 is the amount of the destination asset" + }, + "bridgeStepActionSwapPending": { + "message": "Swapping $1 for $2", + "description": "$1 is the amount of the source asset, $2 is the amount of the destination asset" + }, + "bridgeSuspicious": { + "message": "Suspicious" + }, + "bridgeSuspiciousTokenTitle": { + "message": "Suspicious token" + }, + "bridgeTo": { + "message": "Bridge to" + }, + "bridgeTokenIsMaliciousBanner": { + "message": "$1 is a malicious token." + }, + "bridgeTokenIsMaliciousModalDescription": { + "message": "$1 is flagged as malicious. It's likely to steal funds from anyone who interacts with it." + }, + "bridgeTokenIsSuspiciousBanner": { + "message": "$1 is a suspicious token." + }, + "bridgeTokenIsSuspiciousModalDescription": { + "message": "$1 is flagged as suspicious. Take a look at the risks before you continue." + }, + "bridgeTokenNotFound": { + "message": "No tokens match \"$1\"" + }, + "bridgeTransactionProgress": { + "message": "Transaction $1 of 2" + }, + "bridgeTxDetailsBridged": { + "message": "Bridged" + }, + "bridgeTxDetailsBridging": { + "message": "Bridging" + }, + "bridgeTxDetailsDelayedDescription": { + "message": "Reach out to" + }, + "bridgeTxDetailsDelayedDescriptionSupport": { + "message": "MetaMask Support" + }, + "bridgeTxDetailsDelayedTitle": { + "message": "Has it been longer than 3 hours?" + }, + "bridgeTxDetailsNonce": { + "message": "Nonce" + }, + "bridgeTxDetailsStatus": { + "message": "Status" + }, + "bridgeTxDetailsSwapped": { + "message": "Swapped" + }, + "bridgeTxDetailsSwapping": { + "message": "Swapping" + }, + "bridgeTxDetailsTimestamp": { + "message": "Time stamp" + }, + "bridgeTxDetailsTimestampValue": { + "message": "$1 at $2", + "description": "$1 is the date, $2 is the time" + }, + "bridgeTxDetailsTokenAmountOnChain": { + "message": "$1 $2 on", + "description": "$1 is the amount of the token, $2 is the ticker symbol of the token" + }, + "bridgeTxDetailsTotalGasFee": { + "message": "Total gas fee" + }, + "bridgeTxDetailsYouReceived": { + "message": "You received" + }, + "bridgeTxDetailsYouSent": { + "message": "You sent" + }, + "bridgeUseMaxAmountAllowedWithReserve": { + "message": "Use max allowed" + }, + "bridgeValidationInsufficientGasMessage": { + "message": "You don't have enough $1 to pay the gas fee for this bridge. Enter a smaller amount or buy more $1." + }, + "bridgeValidationInsufficientGasTitle": { + "message": "More $1 needed for gas" + }, + "bridgeValidationInsufficientNativeReserveMessage": { + "message": "This specific network requires to maintain a reserve of $1 $3 in your account. With your current balance you can use a maximum of $2 $3", + "description": "$1 is the minimum native reserve amount for the network, $2 is the spendable balance, $3 the ticker symbol of the token" + }, + "bridgeValidationInsufficientNativeReserveTitle": { + "message": "Minimum $1 reserve balance is required", + "description": "$1 is the ticker symbol of the token" + }, + "bridged": { + "message": "Bridged" + }, + "bridgedToChain": { + "message": "Bridged to $1" + }, + "bridging": { + "message": "Bridging" + }, + "browserNotSupported": { + "message": "Your browser is not supported..." + }, + "busy": { + "message": "Busy" + }, + "buy": { + "message": "Buy" + }, + "buyMoreAsset": { + "message": "Buy more $1", + "description": "$1 is the ticker symbol of a an asset the user is being prompted to purchase" + }, + "buyNow": { + "message": "Buy now" + }, + "buyTabOpenedToastDescription": { + "message": "We've opened a new tab for buying.", + "description": "Toast description shown after opening the buy flow in a new tab" + }, + "buyTabOpenedToastText": { + "message": "Continue in your browser tab", + "description": "Toast title shown after opening the buy flow in a new tab" + }, + "bytes": { + "message": "Bytes" + }, + "canToggleInSettings": { + "message": "You can re-enable this notification in Settings > Alerts." + }, + "cancel": { + "message": "Cancel" + }, + "cancelSpeedupAlreadyConfirmedDescription": { + "message": "We were unable to update your transaction because it was already confirmed on the blockchain." + }, + "cancelSpeedupFailedDescription": { + "message": "Something went wrong while updating your transaction." + }, + "cancelTransactionDescription": { + "message": "This transaction will be canceled and this network fee will replace the original." + }, + "cancelTransactionFailed": { + "message": "Cancel transaction failed" + }, + "cancelTransactionTitle": { + "message": "Cancel transaction" + }, + "cancelled": { + "message": "Cancelled" + }, + "carouselAllCaughtUp": { + "message": "You're all caught up!", + "description": "Message shown in carousel when all promotional slides have been dismissed" + }, + "chainId": { + "message": "Chain ID" + }, + "chainIdDefinition": { + "message": "The chain ID used to sign transactions for this network." + }, + "chainIdExistsErrorMsg": { + "message": "This Chain ID is currently used by the $1 network." + }, + "chainListReturnedDifferentTickerSymbol": { + "message": "This token symbol doesn't match the network name or chain ID entered. Many popular tokens use similar symbols, which scammers can use to trick you into sending them a more valuable token in return. Verify everything before you continue." + }, + "changeInSettings": { + "message": "Change in Settings" + }, + "changePasswordDetailsSocial": { + "message": "Losing this password means losing wallet access on all devices." + }, + "changePasswordLoading": { + "message": "Changing password..." + }, + "changePasswordLoadingNote": { + "message": "This shouldn't take long" + }, + "changePasswordWarning": { + "message": "Are you sure?" + }, + "changePasswordWarningDescription": { + "message": "Changing your password here will lock MetaMask on other devices you’re using. You’ll need to log in again with your new password." + }, + "checkNetworkConnectivity": { + "message": "Check network connectivity." + }, + "checkNetworkConnectivityOr": { + "message": "Check network connectivity, or $1.", + "description": "$1 is a link to update the network." + }, + "chromeRequiredForHardwareWallets": { + "message": "You need to use MetaMask on Google Chrome in order to connect to your Hardware Wallet." + }, + "circulatingSupply": { + "message": "Circulating supply" + }, + "clear": { + "message": "Clear" + }, + "clearActivity": { + "message": "Clear activity and nonce data" + }, + "clearActivityDescription": { + "message": "Resets the account's nonce and erases data from the activity tab in your wallet. Only the current account and network will be affected. Your balances and incoming transactions won't change." + }, + "clearFilters": { + "message": "Clear filters" + }, + "click": { + "message": "Click" + }, + "clickToConnectLedgerViaWebHID": { + "message": "Click here to connect your Ledger via WebHID", + "description": "Text that can be clicked to open a browser popup for connecting the ledger device via webhid" + }, + "close": { + "message": "Close" + }, + "closeSlide": { + "message": "Close $1", + "description": "Aria label for close button on carousel slides. $1 is the slide title" + }, + "closeWindowAnytime": { + "message": "You may close this window anytime." + }, + "coingecko": { + "message": "CoinGecko" + }, + "collectionName": { + "message": "Collection name" + }, + "comboNoOptions": { + "message": "No options found", + "description": "Default text shown in the combo field dropdown if no options." + }, + "communityContributedLanguagesSectionTitle": { + "message": "Community contributed", + "description": "Section heading on the language settings screen for locales maintained by community contributors." + }, + "completed": { + "message": "Completed" + }, + "concentratedSupplyDistributionDescription": { + "message": "The majority of the token's supply is held by the top token holders, posing a risk of centralized price manipulation" + }, + "concentratedSupplyDistributionTitle": { + "message": "Concentrated supply distribution" + }, + "configureSnapPopupDescription": { + "message": "You're now leaving MetaMask to configure this snap." + }, + "configureSnapPopupInstallDescription": { + "message": "You're now leaving MetaMask to install this snap." + }, + "configureSnapPopupInstallTitle": { + "message": "Install snap" + }, + "configureSnapPopupLink": { + "message": "Click this link to continue:" + }, + "configureSnapPopupTitle": { + "message": "Configure snap" + }, + "confirm": { + "message": "Confirm" + }, + "confirmAccountTypeSmartContract": { + "message": "Smart account" + }, + "confirmAccountTypeStandard": { + "message": "Standard account" + }, + "confirmAlertModalAcknowledgeMultiple": { + "message": "I have acknowledged the alerts and still want to proceed" + }, + "confirmAlertModalAcknowledgeSingle": { + "message": "I have acknowledged the alert and still want to proceed" + }, + "confirmFieldAllowance": { + "message": "Allowance" + }, + "confirmFieldAvailablePerDay": { + "message": "Available per day" + }, + "confirmFieldExpiration": { + "message": "Expiration" + }, + "confirmFieldFrequency": { + "message": "Frequency" + }, + "confirmFieldNeverExpires": { + "message": "Never expires" + }, + "confirmFieldPaymaster": { + "message": "Fee paid by" + }, + "confirmFieldPeriodDurationBiWeekly": { + "message": "Bi-Weekly" + }, + "confirmFieldPeriodDurationDaily": { + "message": "Daily" + }, + "confirmFieldPeriodDurationHourly": { + "message": "Hourly" + }, + "confirmFieldPeriodDurationMonthly": { + "message": "Monthly" + }, + "confirmFieldPeriodDurationSeconds": { + "message": "$1 seconds", + "description": "$1 is the number of seconds in the permission period (shown when the period is not a standard hour/day/week/etc.)" + }, + "confirmFieldPeriodDurationWeekly": { + "message": "Weekly" + }, + "confirmFieldPeriodDurationYearly": { + "message": "Yearly" + }, + "confirmFieldTooltipJustification": { + "message": "Justification for the request provided by the website" + }, + "confirmFieldTooltipPaymaster": { + "message": "The fee for this transaction will be paid by the paymaster smart contract." + }, + "confirmFieldTotalExposure": { + "message": "Total exposure" + }, + "confirmGasFeeTokenBalance": { + "message": "Bal:" + }, + "confirmGasFeeTokenInsufficientBalance": { + "message": "Insufficient funds" + }, + "confirmGasFeeTokenMetaMaskFee": { + "message": "Includes $1 fee" + }, + "confirmGasFeeTokenModalNativeToggleMetaMask": { + "message": "MetaMask is supplementing the balance to complete this transaction." + }, + "confirmGasFeeTokenModalNativeToggleWallet": { + "message": "Pay for network fee using the balance in your wallet." + }, + "confirmGasFeeTokenModalPayETH": { + "message": "Pay with ETH" + }, + "confirmGasFeeTokenModalPayToken": { + "message": "Pay with other tokens" + }, + "confirmGasFeeTokenModalTitle": { + "message": "Select a token" + }, + "confirmGasFeeTokenToast": { + "message": "You're paying this network fee with $1" + }, + "confirmGasFeeTokenTooltip": { + "message": "This is paid to the network to process your transaction. It includes a $1 MetaMask fee for non-ETH tokens or pre-funded ETH." + }, + "confirmInfoAccountNow": { + "message": "Now" + }, + "confirmInfoSwitchingTo": { + "message": "Switching to" + }, + "confirmNestedTransactionTitle": { + "message": "Transaction $1" + }, + "confirmPassword": { + "message": "Confirm password" + }, + "confirmRecoveryPhrase": { + "message": "Confirm Secret Recovery Phrase" + }, + "confirmRecoveryPhraseDetails": { + "message": "Select the missing words in the correct order." + }, + "confirmRecoveryPhraseTitle": { + "message": "Confirm your Secret Recovery Phrase" + }, + "confirmRecoveryPhraseTitleSettings": { + "message": "Confirm Secret Recovery Phrase" + }, + "confirmSimulationApprove": { + "message": "You approve" + }, + "confirmSrpErrorDescription": { + "message": "Double-check your Secret Recovery Phrase and try again." + }, + "confirmSrpErrorTitle": { + "message": "Not quite right" + }, + "confirmSrpSuccessDescription": { + "message": "That’s right! And remember: never share this phrase with anyone, ever." + }, + "confirmSrpSuccessTitle": { + "message": "Perfect" + }, + "confirmTitleAccountTypeSwitch": { + "message": "Account update" + }, + "confirmTitleApproveTransactionNFT": { + "message": "Withdrawal request" + }, + "confirmTitleDeployContract": { + "message": "Deploy a contract" + }, + "confirmTitleDescApproveTransaction": { + "message": "This site wants permission to withdraw your NFTs" + }, + "confirmTitleDescDelegationRevoke": { + "message": "You're switching back to a standard account (EOA)." + }, + "confirmTitleDescDelegationUpgrade": { + "message": "You're switching to a smart account." + }, + "confirmTitleDescDeployContract": { + "message": "This site wants you to deploy a contract" + }, + "confirmTitleDescERC20ApproveTransaction": { + "message": "This site wants permission to withdraw your tokens" + }, + "confirmTitleDescERC20Revocation": { + "message": "This site wants permissions to revoke your ERC-20 token approvals." + }, + "confirmTitleDescPermission": { + "message": "This site wants permissions to spend your tokens." + }, + "confirmTitleDescPermitSignature": { + "message": "This site wants permission to spend your tokens." + }, + "confirmTitleDescSIWESignature": { + "message": "A site wants you to sign in to prove you own this account." + }, + "confirmTitleDescSign": { + "message": "Review request details before you confirm." + }, + "confirmTitlePermission": { + "message": "Permission request" + }, + "confirmTitlePermitTokens": { + "message": "Spending cap request" + }, + "confirmTitleRevokeApproveTransaction": { + "message": "Remove permission" + }, + "confirmTitleSIWESignature": { + "message": "Sign-in request" + }, + "confirmTitleSending": { + "message": "Sending" + }, + "confirmTitleSetApprovalForAllRevokeTransaction": { + "message": "Remove permission" + }, + "confirmTitleSignature": { + "message": "Signature request" + }, + "confirmTitleTransaction": { + "message": "Transaction request" + }, + "confirmationAlertDetails": { + "message": "To protect your assets, we suggest you reject the request." + }, + "confirmationAlertModalTitleDescription": { + "message": "Your assets may be at risk" + }, + "confirmed": { + "message": "Confirmed" + }, + "confusableCharacterTooltip": { + "message": "Make sure this address is correct. The letter $1 is confusable with $2." + }, + "confusableUnicode": { + "message": "'$1' is similar to '$2'." + }, + "confusableZeroWidthUnicode": { + "message": "Zero-width character found." + }, + "confusingEnsDomain": { + "message": "We have detected a confusable character in the ENS name. Check the ENS name to avoid a potential scam." + }, + "connect": { + "message": "Connect" + }, + "connectAHardwareWallet": { + "message": "Connect a hardware wallet" + }, + "connectAHardwareWalletDescription": { + "message": "Using USB or a QR Code" + }, + "connectAccounts": { + "message": "Connect accounts" + }, + "connectAnAccountHeader": { + "message": "Connect an account" + }, + "connectHardwareDevice": { + "message": "Connect $1", + "description": "$1 is the hardware wallet device name" + }, + "connectManually": { + "message": "Manually connect to current site" + }, + "connectMoreAccounts": { + "message": "Connect more accounts" + }, + "connectSnap": { + "message": "Connect $1", + "description": "$1 is the snap for which a connection is being requested." + }, + "connectWithMetaMask": { + "message": "Connect with MetaMask" + }, + "connectedAccountsDescriptionPlural": { + "message": "You have $1 accounts connected to this site.", + "description": "$1 is the number of accounts" + }, + "connectedAccountsDescriptionSingular": { + "message": "You have 1 account connected to this site." + }, + "connectedAccountsEmptyDescription": { + "message": "MetaMask is not connected to this site. To connect to a web3 site, find and click the connect button." + }, + "connectedAccountsListTooltip": { + "message": "$1 can see the account balance, address, activity, and suggest transactions to approve for connected accounts.", + "description": "$1 is the origin name" + }, + "connectedSites": { + "message": "Connected sites" + }, + "connectedSitesAndSnaps": { + "message": "Connected sites and Snaps" + }, + "connectedSitesDescription": { + "message": "$1 is connected to these sites. They can view your account address.", + "description": "$1 is the account name" + }, + "connectedSitesEmptyDescription": { + "message": "$1 is not connected to any sites.", + "description": "$1 is the account name" + }, + "connectedSnapAndNoAccountDescription": { + "message": "MetaMask is connected to this site, but no accounts are connected yet" + }, + "connectedSnaps": { + "message": "Connected Snaps" + }, + "connectedWithAccount": { + "message": "$1 accounts connected", + "description": "$1 represents account length" + }, + "connectedWithAccountName": { + "message": "Connected with $1", + "description": "$1 represents account name" + }, + "connectedWithNetwork": { + "message": "$1 networks connected", + "description": "$1 represents network length" + }, + "connectedWithNetworkName": { + "message": "Connected with $1", + "description": "$1 represents network name" + }, + "connecting": { + "message": "Connecting" + }, + "connectingTo": { + "message": "Connecting to $1" + }, + "connectingToGoerli": { + "message": "Connecting to Goerli test network" + }, + "connectingToLineaGoerli": { + "message": "Connecting to Linea Goerli test network" + }, + "connectingToLineaMainnet": { + "message": "Connecting to Linea" + }, + "connectingToLineaSepolia": { + "message": "Connecting to Linea Sepolia test network" + }, + "connectingToMainnet": { + "message": "Connecting to Ethereum Mainnet" + }, + "connectingToSepolia": { + "message": "Connecting to Sepolia test network" + }, + "connectionDescription": { + "message": "Connect this website with MetaMask" + }, + "connectionFailed": { + "message": "Connection failed" + }, + "connectionFailedDescription": { + "message": "Fetching of $1 failed, check your network and try again.", + "description": "$1 is the name of the snap being fetched." + }, + "connectionPopoverDescription": { + "message": "To connect to a site, select the connect button. MetaMask can only connect to web3 sites." + }, + "connectionRequest": { + "message": "Connection request" + }, + "connectionsRemovedModalDescription": { + "message": "Some connections (like hardware wallets and snaps) were removed due to inactivity on this device. You can re-add them anytime in Settings." + }, + "connectionsRemovedModalTitle": { + "message": "Connections removed" + }, + "contactDeleted": { + "message": "Contact deleted" + }, + "contactDetails": { + "message": "Contact details" + }, + "contactUpdated": { + "message": "Contact updated" + }, + "contactUs": { + "message": "Contact us" + }, + "contacts": { + "message": "Contacts" + }, + "contentFromSnap": { + "message": "Content from $1", + "description": "$1 represents the name of the snap" + }, + "continue": { + "message": "Continue" + }, + "contract": { + "message": "Contract" + }, + "contractAddress": { + "message": "Contract address" + }, + "contractAddressError": { + "message": "You are sending tokens to the token's contract address. This may result in the loss of these tokens." + }, + "contractDeployment": { + "message": "Contract deployment" + }, + "contractInteraction": { + "message": "Contract interaction" + }, + "convertTokenToNFTDescription": { + "message": "We've detected that this asset is an NFT. MetaMask now has full native support for NFTs. Would you like to remove it from your token list and add it as an NFT?" + }, + "convertTokenToNFTExistDescription": { + "message": "We’ve detected that this asset has been added as an NFT. Would you like to remove it from your token list?" + }, + "coolWallet": { + "message": "CoolWallet" + }, + "copiedExclamation": { + "message": "Copied." + }, + "copiedToClipboard": { + "message": "Copied to clipboard" + }, + "copyAddress": { + "message": "Copy address to clipboard" + }, + "copyAddressShort": { + "message": "Copy address" + }, + "copyPrivateKey": { + "message": "Copy private key" + }, + "copyToClipboard": { + "message": "Copy to clipboard" + }, + "copyTransactionId": { + "message": "Copy transaction ID" + }, + "correct": { + "message": "Correct" + }, + "create": { + "message": "Create" + }, + "createMultichainAccountButton": { + "message": "Add account", + "description": "Name of a button used on multichain account related pages for triggering the account creation process." + }, + "createMultichainAccountButtonLoading": { + "message": "Adding account...", + "description": "Name of a button in loading state, used on multichain account related pages for the account creation process." + }, + "createNewAccountHeader": { + "message": "Create a new account" + }, + "createPassword": { + "message": "MetaMask password" + }, + "createPasswordCreate": { + "message": "Create password" + }, + "createPasswordDetails": { + "message": "Unlocks MetaMask on this device only." + }, + "createPasswordDetailsSocial": { + "message": "Losing this password means losing wallet access on all devices, $1", + "description": "$1 is the text 'MetaMask can't reset it.'" + }, + "createPasswordDetailsSocialReset": { + "message": "MetaMask can't reset it." + }, + "createPasswordMarketing": { + "message": "Get product updates, tips, and news including by email. We may use your interactions to improve what we share." + }, + "createSnapAccountDescription": { + "message": "$1 wants to add a new account to MetaMask." + }, + "createSnapAccountTitle": { + "message": "Create account" + }, + "createSolanaAccount": { + "message": "Create Solana account" + }, + "creatorAddress": { + "message": "Creator address" + }, + "criticalErrorAttemptRecovery": { + "message": "Attempt recovery" + }, + "criticalErrorFooterContactSupport": { + "message": "If none of the above works, $1", + "description": "Footer on the critical error screen. $1 is the 'contact support' link." + }, + "criticalErrorReinstallMetamask": { + "message": "Reinstall MetaMask" + }, + "criticalErrorStillHavingIssues": { + "message": "Still having issues?" + }, + "cryptoCompare": { + "message": "CryptoCompare" + }, + "currencyRateCheckToggle": { + "message": "Show balance and token price checker" + }, + "currencyRateCheckToggleDescription": { + "message": "We use $1 and $2 APIs to display your balance and token price. $3", + "description": "$1 represents Coingecko, $2 represents CryptoCompare and $3 represents Privacy Policy" + }, + "currencySymbol": { + "message": "Currency symbol" + }, + "currencySymbolDefinition": { + "message": "The ticker symbol displayed for this network’s currency." + }, + "current": { + "message": "Current" + }, + "currentAccountNotConnected": { + "message": "Your current account is not connected" + }, + "currentEstimatedBaseFee": { + "message": "Current: $1 GWEI" + }, + "currentEstimatedPriorityFeeRange": { + "message": "Current: $1 - $2 GWEI" + }, + "currentExtension": { + "message": "Current extension page" + }, + "currentHistoricalBaseFeeRange": { + "message": "12 hr: $1 - $2 GWEI" + }, + "currentHistoricalPriorityFeeRange": { + "message": "12 hr: $1 - $2 GWEI" + }, + "currentNetwork": { + "message": "Current network", + "description": "Speicifies to token network filter to filter by current Network. Will render when network nickname is not available" + }, + "currentQuestion": { + "message": "Question $1 of 2" + }, + "currentlyUnavailable": { + "message": "Unavailable on this network" + }, + "curveHighGasEstimate": { + "message": "Aggressive gas estimate graph" + }, + "curveLowGasEstimate": { + "message": "Low gas estimate graph" + }, + "curveMediumGasEstimate": { + "message": "Market gas estimate graph" + }, + "custom": { + "message": "Advanced" + }, + "customGasSettingToolTipMessage": { + "message": "Use $1 to customize the gas price. This can be confusing if you aren’t familiar. Interact at your own risk.", + "description": "$1 is key 'advanced' (text: 'Advanced') separated here so that it can be passed in with bold font-weight" + }, + "customNetworks": { + "message": "Custom networks" + }, + "customSlippage": { + "message": "Custom" + }, + "customToken": { + "message": "Custom token" + }, + "customTokenWarningInTokenDetectionNetwork": { + "message": "Anyone can create a token, including creating fake versions of existing tokens. Learn about $1" + }, + "customerSupport": { + "message": "customer support" + }, + "customizeYourNotifications": { + "message": "Customize your notifications" + }, + "customizeYourNotificationsText": { + "message": "Turn on the types of notifications you want to receive:" + }, + "dappConnections": { + "message": "Dapp Connections" + }, + "dappScanMaliciousTitle": { + "message": "Malicious website detected" + }, + "dappScanMaliciousWarning": { + "message": "This website is flagged as potentially dangerous. If you reveal your Secret Recovery Phrase, you could put your funds at risk." + }, + "dappSuggested": { + "message": "Site suggested" + }, + "dappSuggestedGasSettingToolTipMessage": { + "message": "$1 has suggested this price.", + "description": "$1 is url for the dapp that has suggested gas settings" + }, + "dappSuggestedHigh": { + "message": "Site suggested" + }, + "dappSwapAdvantage": { + "message": "Save and earn with MetaMask Swaps" + }, + "dappSwapAdvantageSaveOnly": { + "message": "Save with MetaMask Swaps" + }, + "dappSwapBenefits": { + "message": "Network fees refunded on failed swaps" + }, + "dappSwapQuoteDifference": { + "message": "Save $1" + }, + "dappSwapRewardText": { + "message": "Earn $1 points" + }, + "darkTheme": { + "message": "Dark" + }, + "data": { + "message": "Data" + }, + "dataCollectionForMarketing": { + "message": "Data collection for marketing" + }, + "dataCollectionForMarketingDescription": { + "message": "We'll use MetaMetrics to learn how you interact with our marketing communications. We may share relevant news (like product features and other materials)." + }, + "dataCollectionForMarketingDescriptionSocialLogin": { + "message": "Get product updates, tips, and news - including by email. We may use your interactions to improve what we share." + }, + "dataUnavailable": { + "message": "data unavailable" + }, + "date": { + "message": "Date" + }, + "dateCreated": { + "message": "Date created" + }, + "dcent": { + "message": "D'Cent" + }, + "debitCreditPurchaseOptions": { + "message": "Debit or credit card purchase options" + }, + "debug": { + "message": "Debug" + }, + "decimal": { + "message": "Token decimal" + }, + "decimalsMustZerotoTen": { + "message": "Decimals must be at least 0, and not over 36." + }, + "decrypt": { + "message": "Decrypt" + }, + "decryptCopy": { + "message": "Copy encrypted message" + }, + "decryptInlineError": { + "message": "This message cannot be decrypted due to error: $1", + "description": "$1 is error message" + }, + "decryptMessageNotice": { + "message": "$1 would like to read this message to complete your action", + "description": "$1 is the web3 site name" + }, + "decryptMetamask": { + "message": "Decrypt message" + }, + "decryptRequest": { + "message": "Decrypt request" + }, + "deepLink_Caution": { + "message": "Proceed with caution" + }, + "deepLink_Continue": { + "message": "Continue" + }, + "deepLink_ContinueDescription": { + "message": "You'll open $1 if you continue.", + "description": "$1 is the name of the page they'll be redirected to if they click the Continue button. Examples of $1: 'the home page'; 'the buy page'; 'the swaps page'; 'the notifications page'" + }, + "deepLink_DontRemindMeAgain": { + "message": "Don't remind me again" + }, + "deepLink_Error404Description": { + "message": "We can't find the page you are looking for." + }, + "deepLink_Error404Title": { + "message": "This page doesn't exist" + }, + "deepLink_Error404_CTA": { + "message": "$1 and we'll take you to the right place.", + "description": "$1 is a link with the text found in `deepLink_Error404_CTA_LinkText`" + }, + "deepLink_Error404_CTA_LinkText": { + "message": "Update to the latest version of MetaMask", + "description": "Part of `deepLink_Error404_CTA`. The text links to https://support.metamask.io/configure/wallet/how-to-update-the-version-of-metamask/" + }, + "deepLink_ErrorMissingUrl": { + "message": "No url to navigate to was provided." + }, + "deepLink_ErrorOtherDescription": { + "message": "This is a bug and should be reported to MetaMask." + }, + "deepLink_ErrorOtherTitle": { + "message": "An error occurred while processing the deep link" + }, + "deepLink_GoToTheHomePageButton": { + "message": "Go to the home page" + }, + "deepLink_RedirectingToMetaMask": { + "message": "Redirecting to MetaMask" + }, + "deepLink_ThirdPartyDescription": { + "message": "You were sent here by a third party, not MetaMask. $1", + "description": "$1 is the message 'deepLink_ContinueDescription'" + }, + "deepLink_theAssetPage": { + "message": "the asset page" + }, + "deepLink_theBuyPage": { + "message": "the buy page" + }, + "deepLink_theCardOnboardingPage": { + "message": "the MetaMask Card onboarding page" + }, + "deepLink_theHomePage": { + "message": "the home page" + }, + "deepLink_theMusdEducationPage": { + "message": "the MUSD conversion education page" + }, + "deepLink_theNFTsPage": { + "message": "the NFTs page" + }, + "deepLink_theNotificationsPage": { + "message": "the notifications page" + }, + "deepLink_theOnboardingPage": { + "message": "the onboarding page" + }, + "deepLink_thePerpsMarketDetailPage": { + "message": "the perps market page" + }, + "deepLink_thePerpsPage": { + "message": "the perps page" + }, + "deepLink_thePredictPage": { + "message": "the prediction markets page" + }, + "deepLink_theRewardsPage": { + "message": "the MetaMask Rewards page" + }, + "deepLink_theSellPage": { + "message": "the sell page" + }, + "deepLink_theSwapsPage": { + "message": "the swaps page" + }, + "deepLink_theSwapsRampsPage": { + "message": "the Swaps/Ramps page" + }, + "deepLink_theTransactionShieldPage": { + "message": "the transaction shield page" + }, + "default": { + "message": "Default" + }, + "defaultRpcUrl": { + "message": "Default RPC URL" + }, + "defaultSettingsSubTitle": { + "message": "MetaMask uses default settings to best balance safety and ease of use. Change these settings to further increase your privacy." + }, + "defaultSettingsTitle": { + "message": "Default privacy settings" + }, + "defi": { + "message": "DeFi" + }, + "defiEmptyDescription": { + "message": "Lend, borrow, and trade, right in your wallet." + }, + "defiReferralCheckboxLabel": { + "message": "Allow MetaMask to add a referral code. This is permanent. The site offers discounts per their terms. MetaMask earns a fee.", + "description": "The text for the checkbox label in the DeFi referral confirmation screen" + }, + "defiReferralNoThanks": { + "message": "No thanks", + "description": "Secondary button label to decline on the DeFi referral confirmation screen" + }, + "defiReferralTerms": { + "message": "terms", + "description": "Accessible label for the partner terms link within the DeFi referral consent subtitle" + }, + "defiReferralTitle": { + "message": "MetaMask x $1", + "description": "The title of the DeFi referral confirmation screen. $1 is the name of the partner" + }, + "defiTabErrorContent": { + "message": "Try visiting again later." + }, + "defiTabErrorTitle": { + "message": "We could not load this page." + }, + "delete": { + "message": "Delete" + }, + "deleteActivityAndNonceData": { + "message": "Delete activity and nonce data" + }, + "deleteMetaMetricsData": { + "message": "Delete MetaMetrics data" + }, + "deleteMetaMetricsDataDescription": { + "message": "This will delete historical MetaMetrics data associated with your use on this device. Your wallet and accounts will remain exactly as they are now after this data has been deleted. This process may take up to 30 days. View our $1.", + "description": "$1 will have text saying Privacy Policy " + }, + "deleteMetaMetricsDataDescriptionV2": { + "message": "This will delete historical MetaMetrics data associated with your wallet. MetaMetrics includes anonymized usage and diagnostic data. Your wallet and accounts will remain the same. This process may take up to 30 days. View our $1.", + "description": "$1 will have text saying Privacy Policy " + }, + "deleteMetaMetricsDataErrorDesc": { + "message": "This request can't be completed right now due to an analytics system server issue, please try again later." + }, + "deleteMetaMetricsDataErrorTitle": { + "message": "We are unable to delete this data right now" + }, + "deleteMetaMetricsDataErrorToast": { + "message": "Unable to delete" + }, + "deleteMetaMetricsDataModalDesc": { + "message": "We are about to remove all your MetaMetrics data. Are you sure?" + }, + "deleteMetaMetricsDataModalTitle": { + "message": "Delete MetaMetrics data?" + }, + "deleteMetaMetricsDataRequestedDescription": { + "message": "You initiated deletion on $1. This process can take up to 30 days. View the $2.", + "description": "$1 will be the date on which teh deletion is requested and $2 will have text saying Privacy Policy " + }, + "deleteMetaMetricsDataToast": { + "message": "Data will be deleted within 30 days" + }, + "deleteNetworkIntro": { + "message": "If you delete this network, you will need to add it again to view your assets in this network" + }, + "deleteNetworkTitle": { + "message": "Delete $1 network?", + "description": "$1 represents the name of the network" + }, + "depositCrypto": { + "message": "Deposit crypto from another account with a wallet address or QR code." + }, + "deprecatedNetwork": { + "message": "This network is deprecated" + }, + "deprecatedNetworkButtonMsg": { + "message": "Got it" + }, + "deprecatedNetworkDescription": { + "message": "The network you're trying to connect to is no longer supported by MetaMask. $1" + }, + "description": { + "message": "Description" + }, + "descriptionFromSnap": { + "message": "Description from $1", + "description": "$1 represents the name of the snap" + }, + "destinationAccountPickerNoEligible": { + "message": "No eligible accounts found" + }, + "destinationAccountPickerNoMatching": { + "message": "No matching accounts found" + }, + "destinationAccountPickerSearchPlaceholderToMainnet": { + "message": "Receiving address or ENS" + }, + "destinationAccountPickerSearchPlaceholderToSolana": { + "message": "Receiving address" + }, + "destinationTransactionIdLabel": { + "message": "Destination Tx ID", + "description": "Label for the destination transaction ID field." + }, + "details": { + "message": "Details" + }, + "developerTools": { + "message": "Developer tools" + }, + "disabledGasOptionToolTipMessage": { + "message": "“$1” is disabled because it does not meet the minimum of a 10% increase from the original gas fee.", + "description": "$1 is gas estimate type which can be market or aggressive" + }, + "disconnect": { + "message": "Disconnect" + }, + "disconnectAllAccounts": { + "message": "Disconnect all accounts" + }, + "disconnectAllAccountsConfirmationDescription": { + "message": "Are you sure you want to disconnect? You may lose site functionality." + }, + "disconnectAllAccountsText": { + "message": "accounts" + }, + "disconnectAllDescriptionText": { + "message": "If you disconnect from this site, you’ll need to reconnect your accounts and networks to use this site again." + }, + "disconnectAllSites": { + "message": "Disconnect All" + }, + "disconnectAllSitesDescriptionText": { + "message": "If you disconnect from all sites, you'll need to reconnect your accounts and networks to use them again." + }, + "disconnectAllSitesError": { + "message": "Some dapps couldn't be disconnected. Please try again." + }, + "disconnectAllSitesSuccess": { + "message": "All dapps successfully disconnected." + }, + "disconnectAllSnapsText": { + "message": "Snaps" + }, + "disconnectMessage": { + "message": "This will disconnect you from this site" + }, + "disconnectPrompt": { + "message": "Disconnect $1" + }, + "disconnectThisAccount": { + "message": "Disconnect this account" + }, + "discover": { + "message": "Discover" + }, + "discoverSnaps": { + "message": "Discover Snaps", + "description": "Text that links to the Snaps website. Displayed in a banner on Snaps list page in settings." + }, + "dismiss": { + "message": "Dismiss" + }, + "displayNftMedia": { + "message": "Display NFT media" + }, + "displayNftMediaDescriptionV2": { + "message": "NFT autodetection relies on this feature." + }, + "doNotShare": { + "message": "Do not share this with anyone" + }, + "domain": { + "message": "Domain" + }, + "done": { + "message": "Done" + }, + "dontShowThisAgain": { + "message": "Don't show this again" + }, + "download": { + "message": "Download" + }, + "downloadAppDescription": { + "message": "Bring MetaMask with you everywhere you go. Turn on Face ID so you always have access, even if you forget your password." + }, + "downloadAppTitle": { + "message": "Scan QR code and download the app" + }, + "downloadGoogleChrome": { + "message": "Download Google Chrome" + }, + "downloadMetaMaskMobileDescription": { + "message": "Face ID on our app lets you in even if you forget your password. Take MetaMask everywhere you go!" + }, + "downloadMetaMaskMobileQrNote": { + "message": "Scan this QR code to get started." + }, + "downloadMetaMaskMobileTitle": { + "message": "Get our mobile app" + }, + "downloadNow": { + "message": "Download now" + }, + "downloadStateLogs": { + "message": "Download state logs" + }, + "dropped": { + "message": "Dropped" + }, + "duplicateContactTooltip": { + "message": "This contact name collides with an existing account or contact" + }, + "duplicateContactWarning": { + "message": "You have duplicate contacts" + }, + "durationSuffixDay": { + "message": "D", + "description": "Shortened form of 'day'" + }, + "durationSuffixHour": { + "message": "H", + "description": "Shortened form of 'hour'" + }, + "durationSuffixMillisecond": { + "message": "MS", + "description": "Shortened form of 'millisecond'" + }, + "durationSuffixMinute": { + "message": "M", + "description": "Shortened form of 'minute'" + }, + "durationSuffixMonth": { + "message": "M", + "description": "Shortened form of 'month'" + }, + "durationSuffixSecond": { + "message": "S", + "description": "Shortened form of 'second'" + }, + "durationSuffixWeek": { + "message": "W", + "description": "Shortened form of 'week'" + }, + "durationSuffixYear": { + "message": "Y", + "description": "Shortened form of 'year'" + }, + "earn": { + "message": "Earn" + }, + "edit": { + "message": "Edit" + }, + "editANickname": { + "message": "Edit nickname" + }, + "editAccounts": { + "message": "Edit accounts" + }, + "editAddressNickname": { + "message": "Edit address nickname" + }, + "editContact": { + "message": "Edit contact" + }, + "editGasFeeModalTitle": { + "message": "Edit gas fee" + }, + "editGasLimitOutOfBounds": { + "message": "Gas limit must be at least $1" + }, + "editGasMaxFeeHigh": { + "message": "Max fee is higher than necessary" + }, + "editGasMaxFeeLow": { + "message": "Max fee too low for network conditions" + }, + "editGasMaxFeePriorityImbalance": { + "message": "Max fee cannot be lower than max priority fee" + }, + "editGasMaxPriorityFeeBelowMinimum": { + "message": "Max priority fee must be greater than 0 GWEI" + }, + "editGasMaxPriorityFeeHigh": { + "message": "Max priority fee is higher than necessary. You may pay more than needed." + }, + "editGasMaxPriorityFeeLow": { + "message": "Max priority fee is low for current network conditions" + }, + "editGasPriceTooLow": { + "message": "Gas price must be greater than 0" + }, + "editGasTooLow": { + "message": "Unknown processing time" + }, + "editInPortfolio": { + "message": "Edit in Portfolio" + }, + "editNetwork": { + "message": "Edit network" + }, + "editNetworkLink": { + "message": "edit the original network" + }, + "editNetworksTitle": { + "message": "Edit networks" + }, + "editNonceField": { + "message": "Edit nonce" + }, + "editNonceMessage": { + "message": "This is an advanced feature, use cautiously." + }, + "editPermissions": { + "message": "Edit permissions" + }, + "editSpendingCap": { + "message": "Edit spending cap" + }, + "editSpendingCapAccountBalance": { + "message": "Account balance: $1 $2" + }, + "editSpendingCapDesc": { + "message": "Enter the amount that you feel comfortable being spent on your behalf." + }, + "editSpendingCapError": { + "message": "The spending cap can’t exceed $1 decimal digits. Remove decimal digits to continue." + }, + "editSpendingCapSpecialCharError": { + "message": "Enter numbers only" + }, + "enableAutoDetect": { + "message": " Enable autodetect" + }, + "enableFromSettings": { + "message": " Enable it from Settings." + }, + "enableSmartContractAccount": { + "message": "Use smart account" + }, + "enableSmartContractAccountDescription": { + "message": "Unlock faster transactions, lower network fees, and added security on supported networks." + }, + "enableSnap": { + "message": "Enable" + }, + "enableToken": { + "message": "enable $1", + "description": "$1 is a token symbol, e.g. ETH" + }, + "enabled": { + "message": "Enabled" + }, + "enabledNetworks": { + "message": "Enabled networks" + }, + "encryptionPublicKeyNotice": { + "message": "$1 would like your public encryption key. By consenting, this site will be able to compose encrypted messages to you.", + "description": "$1 is the web3 site name" + }, + "encryptionPublicKeyRequest": { + "message": "Request encryption public key" + }, + "endpointReturnedDifferentChainId": { + "message": "The RPC URL you have entered returned a different chain ID ($1).", + "description": "$1 is the return value of eth_chainId from an RPC endpoint" + }, + "enhancedTokenDetectionAlertMessage": { + "message": "Enhanced token detection is currently available on $1. $2" + }, + "ensDomainsSettingDescriptionIntroduction": { + "message": "MetaMask lets you see ENS domains right in your browser's address bar. Here's how it works:" + }, + "ensDomainsSettingDescriptionOutroduction": { + "message": "Keep in mind that using this feature exposes your IP address to IPFS third-party services." + }, + "ensDomainsSettingDescriptionPart1": { + "message": "MetaMask checks with Ethereum's ENS contract to find the code connected to the ENS name." + }, + "ensDomainsSettingDescriptionPart2": { + "message": "If the code links to IPFS, you can see the content associated with it (usually a website)." + }, + "ensDomainsSettingTitle": { + "message": "Show ENS domains in address bar" + }, + "ensUnknownError": { + "message": "ENS lookup failed." + }, + "enterANameToIdentifyTheUrl": { + "message": "Enter a name to identify the URL" + }, + "enterChainId": { + "message": "Enter Chain ID" + }, + "enterNetworkName": { + "message": "Enter network name" + }, + "enterOptionalPassword": { + "message": "Enter optional password" + }, + "enterPasswordContinue": { + "message": "Enter password to continue" + }, + "enterPasswordCurrent": { + "message": "Enter your current password" + }, + "enterRpcUrl": { + "message": "Enter RPC URL" + }, + "enterSymbol": { + "message": "Enter symbol" + }, + "enterTokenAddress": { + "message": "Enter token address" + }, + "enterTokenNameOrAddress": { + "message": "Enter token name or paste address" + }, + "enterTokenNameOrAddressManageTokens": { + "message": "Enter token name or address" + }, + "enterYourPassword": { + "message": "Enter your password" + }, + "enterYourPasswordContinue": { + "message": "Enter password to continue" + }, + "enterYourPasswordSocialLoginFlow": { + "message": "Enter MetaMask password" + }, + "errorCode": { + "message": "Code: $1", + "description": "Displayed error code for debugging purposes. $1 is the error code" + }, + "errorGettingSafeChainList": { + "message": "Error while getting safe chain list, please continue with caution." + }, + "errorLegalTextFirstInfo": { + "message": "Technical diagnostic information." + }, + "errorLegalTextNoPersonalInfo": { + "message": "No personal information or other device information will be collected." + }, + "errorLegalTextSecondInfo": { + "message": "Your browser, operating system, and MetaMask versions." + }, + "errorLegalTextSummary": { + "message": "We will receive a single error report, containing:" + }, + "errorMessage": { + "message": "Message: $1", + "description": "Displayed error message for debugging purposes. $1 is the error message" + }, + "errorName": { + "message": "Code: $1", + "description": "Displayed error name for debugging purposes. $1 is the error name" + }, + "errorPageContactSupport": { + "message": "Contact support", + "description": "Button for contact MM support" + }, + "errorPageDescribeUsWhatHappened": { + "message": "Describe what happened", + "description": "Button for submitting report to sentry" + }, + "errorPageInfo": { + "message": "Your information can’t be shown. Don’t worry, your wallet and funds are safe.", + "description": "Information banner shown in the error page" + }, + "errorPageMessageTitle": { + "message": "Error message", + "description": "Title for description, which is displayed for debugging purposes" + }, + "errorPageSentryFormTitle": { + "message": "Describe what happened", + "description": "In sentry feedback form, The title at the top of the feedback form." + }, + "errorPageSentryMessagePlaceholder": { + "message": "Sharing details like how we can reproduce the bug will help us fix the problem.", + "description": "In sentry feedback form, The placeholder for the feedback description input field." + }, + "errorPageSentrySuccessMessageText": { + "message": "Thanks! We will take a look soon.", + "description": "In sentry feedback form, The message displayed after a successful feedback submission." + }, + "errorPageTitle": { + "message": "MetaMask encountered an error", + "description": "Title of generic error page" + }, + "errorPageTryAgain": { + "message": "Try again", + "description": "Button for try again" + }, + "errorStack": { + "message": "Stack:", + "description": "Title for error stack, which is displayed for debugging purposes" + }, + "errorWhileConnectingToRPC": { + "message": "Error while connecting to the custom network." + }, + "errorWithSnap": { + "message": "Error with $1", + "description": "$1 represents the name of the snap" + }, + "estimatedChanges": { + "message": "Estimated changes" + }, + "estimatedFee": { + "message": "Estimated fee" + }, + "estimatedFeeTooltip": { + "message": "Amount paid to process the transaction on network." + }, + "estimatedPointsRow": { + "message": "Est. points" + }, + "estimatedTime": { + "message": "Estimated time" + }, + "ethGasPriceFetchWarning": { + "message": "Backup gas price is provided as the main gas estimation service is unavailable right now." + }, + "ethereumAndEvms": { + "message": "Ethereum and EVMs" + }, + "ethereumProviderAccess": { + "message": "Grant Ethereum provider access to $1", + "description": "The parameter is the name of the requesting origin" + }, + "etherscan": { + "message": "Etherscan" + }, + "etherscanView": { + "message": "View account on Etherscan" + }, + "etherscanViewOn": { + "message": "View on Etherscan" + }, + "existingChainId": { + "message": "The information you have entered is associated with an existing chain ID." + }, + "experimental": { + "message": "Experimental" + }, + "exploreDefi": { + "message": "Explore DeFi" + }, + "exportYourData": { + "message": "Export your data" + }, + "exportYourDataButton": { + "message": "Download" + }, + "exportYourDataDescription": { + "message": "You can export data like your contacts and preferences." + }, + "extendWalletWithSnaps": { + "message": "Explore community-built Snaps to customize your web3 experience", + "description": "Banner description displayed on Snaps list page in Settings when less than 6 Snaps is installed." + }, + "externalAccount": { + "message": "External account" + }, + "externalExtension": { + "message": "External extension" + }, + "externalNameSourcesSetting": { + "message": "Proposed nicknames" + }, + "externalNameSourcesSettingDescription": { + "message": "We’ll fetch proposed nicknames for addresses you interact with from third-party sources like Etherscan, Infura, and Lens Protocol. These sources will be able to see those addresses and your IP address. Your account address won’t be exposed to third parties." + }, + "externalNameSourcesSettingDescriptionV2": { + "message": "Fetches proposed nicknames for addresses you interact with from third-party sources like Etherscan, Infura, and Lens protocol." + }, + "failed": { + "message": "Failed" + }, + "failedToFetchChainId": { + "message": "Could not fetch chain ID. Is your RPC URL correct?" + }, + "failover": { + "message": "Failover" + }, + "failoverRpcUrl": { + "message": "Failover RPC URL" + }, + "failureMessage": { + "message": "Something went wrong, and we were unable to complete the action" + }, + "fast": { + "message": "Fast" + }, + "fieldRequired": { + "message": "$1 is required" + }, + "fileImportFail": { + "message": "File import not working? Click here!", + "description": "Helps user import their account from a JSON file" + }, + "fileUploaderDescription": { + "message": "Click to upload or drag and drop" + }, + "fileUploaderInvalidFileTypeError": { + "message": "Invalid file type. Please upload a supported file format." + }, + "fileUploaderMaxFileSizeError": { + "message": "File size exceeds $1MB. Please upload a smaller file.", + "description": "$1 is the maximum file size in MB" + }, + "flaskWelcomeUninstall": { + "message": "you should uninstall this extension", + "description": "This request is shown on the Flask Welcome screen. It is intended for non-developers, and will be bolded." + }, + "flaskWelcomeWarning1": { + "message": "Flask is for developers to experiment with new unstable APIs. Unless you are a developer or beta tester, $1.", + "description": "This is a warning shown on the Flask Welcome screen, intended to encourage non-developers not to proceed any further. $1 is the bolded message 'flaskWelcomeUninstall'" + }, + "flaskWelcomeWarning2": { + "message": "We do not guarantee the safety or stability of this extension. The new APIs offered by Flask are not hardened against phishing attacks, meaning that any site or snap that requires Flask might be a malicious attempt to steal your assets.", + "description": "This explains the risks of using MetaMask Flask" + }, + "flaskWelcomeWarning3": { + "message": "All Flask APIs are experimental. They may be changed or removed without notice, or they might stay on Flask indefinitely without ever being migrated to stable MetaMask. Use them at your own risk.", + "description": "This message warns developers about unstable Flask APIs" + }, + "flaskWelcomeWarning4": { + "message": "Make sure to disable your regular MetaMask extension when using Flask.", + "description": "This message calls to pay attention about multiple versions of MetaMask running on the same site (Flask + Prod)" + }, + "flaskWelcomeWarningAcceptButton": { + "message": "I accept the risks", + "description": "this text is shown on a button, which the user presses to confirm they understand the risks of using Flask" + }, + "floatAmountToken": { + "message": "Token amount must be an integer" + }, + "forbiddenIpfsGateway": { + "message": "Forbidden IPFS Gateway: Please specify a CID gateway" + }, + "forgetDevice": { + "message": "Forget this device" + }, + "forgotPassword": { + "message": "Forgot password?" + }, + "forgotPasswordModalButton": { + "message": "Import wallet" + }, + "forgotPasswordModalButtonLink": { + "message": "I don’t know my Phrase" + }, + "forgotPasswordModalContactSupport": { + "message": "$1 if you need help.", + "description": "$1 is the support link" + }, + "forgotPasswordModalContactSupportLink": { + "message": "Contact support" + }, + "forgotPasswordModalDescription1": { + "message": "We can’t recover your password for you." + }, + "forgotPasswordModalDescription2": { + "message": "Add your wallet back to MetaMask by entering the Secret Recovery Phrase associated with it." + }, + "forgotPasswordModalTitle": { + "message": "Forgot your password?" + }, + "forgotPasswordSocialDescription": { + "message": "We can’t recover your password, but there are ways you can regain access to your wallet. $1 if you need help.", + "description": "$1 is the support link" + }, + "forgotPasswordSocialStep1": { + "message": "$1 If you’re logged in on a device with Touch or Face ID, reset your password there.", + "description": "$1 is bold heading" + }, + "forgotPasswordSocialStep1Biometrics": { + "message": "Touch/Face ID:" + }, + "forgotPasswordSocialStep2": { + "message": "$1: If you have your Secret Recovery Phrase, you can use it to import your wallet to this device.", + "description": "$1 is bold Secret Recovery Phrase" + }, + "form": { + "message": "form" + }, + "freeTrialDays": { + "message": "Free $1-day trial", + "description": "The $1 is the number of days" + }, + "from": { + "message": "From" + }, + "function": { + "message": "Function: $1" + }, + "fundYourWallet": { + "message": "Fund your wallet", + "description": "Title for the balance empty state component encouraging users to add funds" + }, + "gas": { + "message": "Gas" + }, + "gasLimit": { + "message": "Gas limit" + }, + "gasLimitTooLow": { + "message": "Gas limit must be at least 21000" + }, + "gasPrice": { + "message": "Gas price" + }, + "gasPriceExcessive": { + "message": "Your gas fee is set unnecessarily high. Consider lowering the amount." + }, + "gasPriceFetchFailed": { + "message": "Gas price estimation failed due to network error." + }, + "gasSponsorshipReserveBalanceWarning": { + "message": "Gas sponsorship isn’t available for this transaction. You’ll need to keep at least $1 $2 in your account.", + "description": "$1 is the minimum required balance and $2 is the native currency symbol." + }, + "gasTimingHoursShort": { + "message": "$1 hrs", + "description": "$1 represents a number of hours" + }, + "gasTimingLow": { + "message": "Slow" + }, + "gasTimingMinutesShort": { + "message": "$1 min", + "description": "$1 represents a number of minutes" + }, + "gasTimingSecondsShort": { + "message": "$1 sec", + "description": "$1 represents a number of seconds" + }, + "gasUsed": { + "message": "Gas used" + }, + "gatorNoJustificationProvided": { + "message": "No justification was provided for the permission" + }, + "gatorPermissionAnnualFrequency": { + "message": "Yearly", + "description": "Time period for annual recurring permissions redemption" + }, + "gatorPermissionCustomFrequency": { + "message": "Custom", + "description": "Time period for custom recurring permissions redemption" + }, + "gatorPermissionDailyFrequency": { + "message": "Daily", + "description": "Time period for daily recurring permissions redemption" + }, + "gatorPermissionFortnightlyFrequency": { + "message": "Bi-Weekly", + "description": "Time period for fortnightly recurring permissions redemption" + }, + "gatorPermissionMonthlyFrequency": { + "message": "Monthly", + "description": "Time period for monthly recurring permissions redemption" + }, + "gatorPermissionNoExpiration": { + "message": "No expiration", + "description": "Label for a permission with no expiration" + }, + "gatorPermissionTokenPeriodicFrequencyLabel": { + "message": "Transfer window", + "description": "Label for the transfer window of a token periodic permission" + }, + "gatorPermissionTokenStreamFrequencyLabel": { + "message": "Period", + "description": "Label for the period of a token stream permission" + }, + "gatorPermissionWeeklyFrequency": { + "message": "Weekly", + "description": "Time period for weekly recurring permissions redemption" + }, + "gatorPermissionsExpirationDate": { + "message": "Expiration date", + "description": "Label for the expiration date of a permission" + }, + "gatorPermissionsHideDetails": { + "message": "Hide details", + "description": "Button text to hide permission details" + }, + "gatorPermissionsInitialAllowance": { + "message": "Initial allowance", + "description": "Label for the initial allowance of a permission" + }, + "gatorPermissionsJustification": { + "message": "Justification", + "description": "Label for the justification" + }, + "gatorPermissionsMaxAllowance": { + "message": "Max allowance", + "description": "Label for the max allowance of a permission" + }, + "gatorPermissionsRevocationPending": { + "message": "Revocation pending", + "description": "Label for a gator permission that is pending a revocation transaction" + }, + "gatorPermissionsRevoke": { + "message": "Revoke", + "description": "Label for the revoke button of a gator permission" + }, + "gatorPermissionsShowDetails": { + "message": "Show details", + "description": "Button text to show permission details" + }, + "gatorPermissionsStartDate": { + "message": "Start date", + "description": "Label for the start date of a permission" + }, + "gatorPermissionsStatusExpired": { + "message": "Expired", + "description": "Tag label for a gator permission that has expired" + }, + "gatorPermissionsStatusRevoked": { + "message": "Revoked", + "description": "Tag label for a gator permission that has been revoked" + }, + "gatorPermissionsStreamRate": { + "message": "Stream rate", + "description": "Label for the stream rate of a permission" + }, + "gatorPermissionsStreamingAmountLabel": { + "message": "Streaming amount", + "description": "Label for the stream rate of a permission" + }, + "general": { + "message": "General" + }, + "generalCameraError": { + "message": "We couldn't access your camera. Please give it another try." + }, + "generalCameraErrorTitle": { + "message": "Something went wrong...." + }, + "generalDescription": { + "message": "Sync settings across devices, select network preferences, and track token data" + }, + "genericExplorerView": { + "message": "View account on $1" + }, + "getDollarMore": { + "message": "Get $1 more" + }, + "getTheNewestFeatures": { + "message": "Get the newest features" + }, + "getYourWalletReadyToUseWeb3": { + "message": "Get your wallet ready to use web3", + "description": "Subtitle text for the balance empty state component explaining the purpose of adding funds" + }, + "gmxReferralConfirmText": { + "message": "Yes, save 5%", + "description": "Primary button label on the GMX referral confirmation screen" + }, + "gmxReferralSubtitle": { + "message": "Save up to 5% on trades with a MetaMask referral code.", + "description": "The subtitle of the GMX referral confirmation screen" + }, + "gmxReferralSubtitle2": { + "message": "Save 5% in trades with a MetaMask referral code. This discount applies to all future trades, as per GMX's $1. MetaMask earns a fee.", + "description": "Subtitle on the GMX referral confirmation screen. $1 is a link to the partner's terms." + }, + "gmxReferralTitle": { + "message": "Save 5% on GMX", + "description": "Title of the GMX referral confirmation screen" + }, + "goToSite": { + "message": "Go to site" + }, + "goerli": { + "message": "Goerli test network" + }, + "gotIt": { + "message": "Got it" + }, + "grantExactAccess": { + "message": "Grant exact access" + }, + "gwei": { + "message": "GWEI" + }, + "hardware": { + "message": "Hardware" + }, + "hardwareWalletConnected": { + "message": "Hardware wallet connected" + }, + "hardwareWalletErrorContinueButton": { + "message": "Continue" + }, + "hardwareWalletErrorReconnectButton": { + "message": "Reconnect" + }, + "hardwareWalletErrorRecoveryConnection1": { + "message": "Ensure your hardware wallet is properly connected via USB" + }, + "hardwareWalletErrorRecoveryConnection2": { + "message": "Try using a different USB cable or port" + }, + "hardwareWalletErrorRecoveryConnection3": { + "message": "Restart your device and try connecting again" + }, + "hardwareWalletErrorRecoveryConnection4": { + "message": "Your $1 device is unlocked", + "description": "$1 is the hardware wallet type" + }, + "hardwareWalletErrorRecoveryTitle": { + "message": "Continue to make sure:" + }, + "hardwareWalletErrorRecoveryUnlock1": { + "message": "Your $1 device is unlocked", + "description": "$1 is the hardware wallet type" + }, + "hardwareWalletErrorRecoveryUnlock2": { + "message": "The Ethereum app is open" + }, + "hardwareWalletErrorTitleBlindSignNotSupported": { + "message": "Enable blind signing" + }, + "hardwareWalletErrorTitleBlindSignNotSupportedInstruction1": { + "message": "The Ethereum app is open on your Ledger" + }, + "hardwareWalletErrorTitleBlindSignNotSupportedInstruction2": { + "message": "You’ve turned on Blind Signing in Settings" + }, + "hardwareWalletErrorTitleConnectYourDevice": { + "message": "Connect your $1", + "description": "$1 is the hardware wallet type" + }, + "hardwareWalletErrorTitleDeviceLocked": { + "message": "$1 locked", + "description": "$1 is the hardware wallet type" + }, + "hardwareWalletErrorUnknownErrorDescription": { + "message": "Make sure your $1 device is set up with the Secret Recovery Phrase or passphrase for the selected account", + "description": "$1 is the hardware wallet type" + }, + "hardwareWalletErrorUnknownErrorTitle": { + "message": "Something went wrong" + }, + "hardwareWalletEthAppNotOpenDescription": { + "message": "Open the Ethereum app on your device to continue" + }, + "hardwareWalletLegacyDescription": { + "message": "(legacy)", + "description": "Text representing the MEW path" + }, + "hardwareWalletLookingForDevice": { + "message": "Looking for your $1...", + "description": "$1 is the hardware wallet type" + }, + "hardwareWalletSubmissionWarningStep1": { + "message": "Be sure your $1 is plugged in and to select the Ethereum app." + }, + "hardwareWalletSubmissionWarningStep2": { + "message": "Enable \"smart contract data\" or \"blind signing\" on your $1 device." + }, + "hardwareWalletSubmissionWarningTitle": { + "message": "Prior to clicking Submit:" + }, + "hardwareWalletSupportLinkConversion": { + "message": "click here" + }, + "hardwareWalletTitleEthAppNotOpen": { + "message": "Open Ethereum app" + }, + "hardwareWalletTypeConnected": { + "message": "$1 connected", + "description": "$1 is the hardware wallet type" + }, + "hardwareWallets": { + "message": "Connect a hardware wallet" + }, + "hardwareWalletsInfo": { + "message": "Hardware wallet integrations use API calls to external servers, which can see your IP address and the smart contract addresses you interact with." + }, + "hardwareWalletsMsg": { + "message": "Select a hardware wallet you would like to use with MetaMask." + }, + "helpAndSettings": { + "message": "Help and settings" + }, + "here": { + "message": "here", + "description": "as in -click here- for more information (goes with troubleTokenBalances)" + }, + "hexData": { + "message": "Hex data" + }, + "hexDataPlaceholder": { + "message": "Enter hex data (optional)" + }, + "hidden": { + "message": "Hidden" + }, + "hide": { + "message": "Hide" + }, + "hideAccount": { + "message": "Hide account" + }, + "hideAdvancedDetails": { + "message": "Hide advanced details" + }, + "hideSentitiveInfo": { + "message": "Hide sensitive information" + }, + "hideTokenPrompt": { + "message": "Hide token?" + }, + "hideTokenSymbol": { + "message": "Hide $1", + "description": "$1 is the symbol for a token (e.g. 'DAI')" + }, + "hideZeroBalanceTokens": { + "message": "Hide tokens without balance" + }, + "high": { + "message": "Aggressive" + }, + "highGasSettingToolTipMessage": { + "message": "High probability, even in volatile markets. Use $1 to cover surges in network traffic due to things like popular NFT drops.", + "description": "$1 is key 'high' (text: 'Aggressive') separated here so that it can be passed in with bold font-weight" + }, + "highLowercase": { + "message": "high" + }, + "highestCurrentBid": { + "message": "Highest current bid" + }, + "highestFloorPrice": { + "message": "Highest floor price" + }, + "history": { + "message": "History" + }, + "holdToRevealContent1": { + "message": "Your Secret Recovery Phrase provides $1", + "description": "$1 is a bolded text with the message from 'holdToRevealContent2'" + }, + "holdToRevealContent2": { + "message": "full access to your wallet and funds.", + "description": "Is the bolded text in 'holdToRevealContent1'" + }, + "holdToRevealContent3": { + "message": "Do not share this with anyone. $1 $2", + "description": "$1 is a message from 'holdToRevealContent4' and $2 is a text link with the message from 'holdToRevealContent5'" + }, + "holdToRevealContent4": { + "message": "MetaMask Support will not request this,", + "description": "Part of 'holdToRevealContent3'" + }, + "holdToRevealContent5": { + "message": "but phishers might.", + "description": "The text link in 'holdToRevealContent3'" + }, + "holdToRevealContentPrivateKey1": { + "message": "Your Private Key provides $1", + "description": "$1 is a bolded text with the message from 'holdToRevealContentPrivateKey2'" + }, + "holdToRevealContentPrivateKey2": { + "message": "full access to your wallet and funds.", + "description": "Is the bolded text in 'holdToRevealContentPrivateKey2'" + }, + "holdToRevealLockedLabel": { + "message": "hold to reveal circle locked" + }, + "holdToRevealPrivateKey": { + "message": "Hold to reveal Private Key" + }, + "holdToRevealPrivateKeyTitle": { + "message": "Keep your private key safe" + }, + "holdToRevealSRP": { + "message": "Hold to reveal SRP" + }, + "holdToRevealSRPTitle": { + "message": "Keep your SRP safe" + }, + "holdToRevealUnlockedLabel": { + "message": "hold to reveal circle unlocked" + }, + "honeypotDescription": { + "message": "This token might pose a honeypot risk. It is advised to conduct due diligence before interacting to prevent any potential financial loss." + }, + "honeypotTitle": { + "message": "Honey pot" + }, + "hyperliquidReferralConfirmText": { + "message": "Yes, save 4%", + "description": "Primary button label on the Hyperliquid referral confirmation screen" + }, + "hyperliquidReferralSubtitle": { + "message": "Save up to 4% on trades with a MetaMask referral code.", + "description": "The subtitle of the Hyperliquid referral confirmation screen" + }, + "hyperliquidReferralSubtitle2": { + "message": "Save 4% on trades with a MetaMask referral code. Applies to all future trades per Hyperliquid's $1. MetaMask earns a fee.", + "description": "Subtitle on the Hyperliquid referral confirmation screen. $1 is a link to the partner's terms." + }, + "hyperliquidReferralTitle": { + "message": "Save 4% on Hyperliquid", + "description": "Title of the Hyperliquid referral confirmation screen" + }, + "iUnderstand": { + "message": "I understand" + }, + "id": { + "message": "ID" + }, + "imToken": { + "message": "imToken" + }, + "import": { + "message": "Import", + "description": "Button to import an account from a selected file" + }, + "importAWallet": { + "message": "Import a wallet" + }, + "importAWalletDescription": { + "message": "Using a 12, 18 or 24-word seed phrase" + }, + "importAccountError": { + "message": "Error importing account." + }, + "importAccountErrorIsSRP": { + "message": "You have entered a Secret Recovery Phrase (or mnemonic). To import an account here, you have to enter a private key, which is a hexadecimal string of length 64." + }, + "importAccountErrorNotAValidPrivateKey": { + "message": "This is not a valid private key. You have entered a hexadecimal string, but it must be 64 characters long." + }, + "importAccountErrorNotHexadecimal": { + "message": "This is not a valid private key. You must enter a hexadecimal string of length 64." + }, + "importAccountJsonLoading1": { + "message": "Expect this JSON import to take a few minutes and freeze MetaMask." + }, + "importAccountJsonLoading2": { + "message": "We apologize, and we will make it faster in the future." + }, + "importAccountMsg": { + "message": "Imported accounts won’t be associated with your MetaMask Secret Recovery Phrase. Learn more about imported accounts" + }, + "importAccountWithSocialMsg": { + "message": "Imported private keys are backed up to your account and sync automatically when you sign in with the same Google or Apple login." + }, + "importAccountWithSocialMsgLearnMore": { + "message": "$1 about how imported keys work", + "description": "$1 is a link to learn more about imported keys" + }, + "importAnAccount": { + "message": "Import an account" + }, + "importAnAccountDescription": { + "message": "Via a private key" + }, + "importNFT": { + "message": "Import NFT" + }, + "importNFTAddressToolTip": { + "message": "On OpenSea, for example, on the NFT's page under Details, there is a blue hyperlinked value labeled 'Contract Address'. If you click on this, it will take you to the contract's address on Etherscan; at the top-left of that page, there should be an icon labeled 'Contract', and to the right, a long string of letters and numbers. This is the address of the contract that created your NFT. Click on the 'copy' icon to the right of the address, and you'll have it on your clipboard." + }, + "importNFTPage": { + "message": "Import NFT page" + }, + "importNFTTokenIdToolTip": { + "message": "An NFT's ID is a unique identifier since no two NFTs are alike. Again, on OpenSea this number is under 'Details'. Make a note of it, or copy it onto your clipboard." + }, + "importPrivateKey": { + "message": "Private Key" + }, + "importSecretRecoveryPhrase": { + "message": "Import Secret Recovery Phrase" + }, + "importTokenQuestion": { + "message": "Import token?" + }, + "importTokenWarning": { + "message": "Anyone can create a token with any name, including fake versions of existing tokens. Add and trade at your own risk!" + }, + "importTokensCamelCase": { + "message": "Import tokens" + }, + "importTokensError": { + "message": "We could not import the tokens. Please try again later." + }, + "importWalletOrAccountHeader": { + "message": "Import a wallet or account" + }, + "importWalletSuccess": { + "message": "Wallet $1 imported", + "description": "$1 is the index of the secret recovery phrase" + }, + "imported": { + "message": "Imported", + "description": "status showing that an account has been fully loaded into the keyring" + }, + "includesXTransactions": { + "message": "Includes $1 transactions" + }, + "incorrect": { + "message": "Incorrect" + }, + "infuraBlockedNotification": { + "message": "MetaMask is unable to connect to the blockchain host. Review possible reasons $1.", + "description": "$1 is a clickable link with with text defined by the 'here' key" + }, + "insights": { + "message": "Insights" + }, + "insightsFromSnap": { + "message": "Insights from $1", + "description": "$1 represents the name of the snap" + }, + "install": { + "message": "Install" + }, + "installOrigin": { + "message": "Install origin" + }, + "installRequest": { + "message": "Add to MetaMask" + }, + "installedOn": { + "message": "Installed on $1", + "description": "$1 is the date when the snap has been installed" + }, + "insufficientBalance": { + "message": "Insufficient balance." + }, + "insufficientBalanceToCoverFees": { + "message": "Insufficient balance to cover fees" + }, + "insufficientFunds": { + "message": "Insufficient funds." + }, + "insufficientFundsSend": { + "message": "Insufficient funds" + }, + "insufficientLockedLiquidityDescription": { + "message": "The lack of adequately locked or burned liquidity leaves the token vulnerable to sudden liquidity withdrawals, potentially causing market instability." + }, + "insufficientLockedLiquidityTitle": { + "message": "Insufficient locked liquidity" + }, + "insufficientTokens": { + "message": "Insufficient tokens." + }, + "interactWithSmartContract": { + "message": "Smart contract" + }, + "interactingWith": { + "message": "Interacting with" + }, + "interactingWithTransactionDescription": { + "message": "This is the contract you're interacting with. Protect yourself from scammers by verifying the details." + }, + "interaction": { + "message": "Interaction" + }, + "invalidAddress": { + "message": "Invalid address" + }, + "invalidAddressRecipient": { + "message": "Recipient address is invalid" + }, + "invalidAssetType": { + "message": "This asset is an NFT and needs to be re-added on the Import NFTs page found under the NFTs tab" + }, + "invalidChainIdTooBig": { + "message": "Invalid chain ID. The chain ID is too big." + }, + "invalidCustomNetworkAlertContent1": { + "message": "The chain ID for custom network '$1' has to be re-entered.", + "description": "$1 is the name/identifier of the network." + }, + "invalidCustomNetworkAlertContent2": { + "message": "To protect you from malicious or faulty network providers, chain IDs are now required for all custom networks." + }, + "invalidCustomNetworkAlertContent3": { + "message": "Go to Settings > Network and enter the chain ID. You can find the chain IDs of most popular networks on $1.", + "description": "$1 is a link to https://chainid.network" + }, + "invalidCustomNetworkAlertTitle": { + "message": "Invalid custom network" + }, + "invalidHexData": { + "message": "Invalid hex data" + }, + "invalidHexNumber": { + "message": "Invalid hexadecimal number." + }, + "invalidHexNumberLeadingZeros": { + "message": "Invalid hexadecimal number. Remove any leading zeros." + }, + "invalidIpfsGateway": { + "message": "Invalid IPFS Gateway: The value must be a valid URL" + }, + "invalidNumber": { + "message": "Invalid number. Enter a decimal or '0x'-prefixed hexadecimal number." + }, + "invalidNumberLeadingZeros": { + "message": "Invalid number. Remove any leading zeros." + }, + "invalidRPC": { + "message": "Invalid RPC URL" + }, + "invalidSeedPhrase": { + "message": "Invalid Secret Recovery Phrase" + }, + "invalidSeedPhraseCaseSensitive": { + "message": "Invalid input! Secret Recovery Phrase is case sensitive." + }, + "invalidSeedPhraseNotFound": { + "message": "Secret Recovery Phrase not found." + }, + "invalidValue": { + "message": "Invalid value" + }, + "ipfsGateway": { + "message": "IPFS gateway" + }, + "ipfsGatewayDescriptionV2": { + "message": "Uses third-party services to show images of your NFTs stored on IPFS, display information related to ENS addresses entered in your browser's address bar, and fetch icons for different tokens. Choose your preferred IPFS gateway below." + }, + "ipfsToggleModalDescriptionOne": { + "message": "We use third-party services to show images of your NFTs stored on IPFS, display information related to ENS addresses entered in your browser's address bar, and fetch icons for different tokens. Your IP address may be exposed to these services when you’re using them." + }, + "ipfsToggleModalDescriptionTwo": { + "message": "Selecting Confirm turns on IPFS resolution. You can turn it off in $1 at any time.", + "description": "$1 is the method to turn off ipfs" + }, + "ipfsToggleModalSettings": { + "message": "Settings > Security and privacy" + }, + "isSigningOrSubmitting": { + "message": "A previous transaction is still being signed or submitted" + }, + "isSigningOrSubmittingPayToken": { + "message": "You have a pending transaction on this network. Wait for it to complete or select a token on another network." + }, + "jazzicons": { + "message": "Jazzicons" + }, + "jsonFile": { + "message": "JSON File", + "description": "format for importing an account" + }, + "keycardShell": { + "message": "Keycard Shell" + }, + "keyringAccountName": { + "message": "Account name" + }, + "keyringAccountPublicAddress": { + "message": "Public address" + }, + "keyringSnapRemovalResult1": { + "message": "$1 $2removed", + "description": "Displays the result after removal of a keyring snap. $1 is the snap name, $2 is whether it is successful or not" + }, + "keyringSnapRemovalResultNotSuccessful": { + "message": "not ", + "description": "Displays the `not` word in $2." + }, + "keyringSnapRemoveConfirmation": { + "message": "Type $1 to confirm you want to remove this snap:", + "description": "Asks user to input the name nap prior to deleting the snap. $1 is the snap name" + }, + "keystone": { + "message": "Keystone" + }, + "knownAddressRecipient": { + "message": "Known contract address." + }, + "knownTokenWarning": { + "message": "This action will edit tokens that are already listed in your wallet, which can be used to phish you. Only approve if you are certain that you mean to change what these tokens represent. Learn more about $1" + }, + "language": { + "message": "Language" + }, + "lastSold": { + "message": "Last sold" + }, + "lattice": { + "message": "Lattice", + "description": "Hardware device name" + }, + "lavaDomeCopyWarning": { + "message": "For your safety, selecting this text is not available right now." + }, + "learnHow": { + "message": "Learn how" + }, + "learnMore": { + "message": "learn more" + }, + "learnMoreAboutGas": { + "message": "Want to $1 about gas?", + "description": "$1 will be replaced by the learnMore translation key" + }, + "learnMoreAboutPrivacy": { + "message": "Learn more about privacy best practices." + }, + "learnMoreKeystone": { + "message": "Learn more" + }, + "learnMoreUpperCase": { + "message": "Learn more" + }, + "learnMoreUpperCaseWithDot": { + "message": "Learn more" + }, + "learnScamRisk": { + "message": "scams and security risks." + }, + "leaveMetaMask": { + "message": "Leave MetaMask?" + }, + "leaveMetaMaskDesc": { + "message": "You're about to visit a site outside of MetaMask. Double-check the URL before continuing." + }, + "ledger": { + "message": "Ledger", + "description": "Hardware device name" + }, + "ledgerAccountRestriction": { + "message": "You need to make use your last account before you can add a new one." + }, + "ledgerConnectionInstructionCloseOtherApps": { + "message": "Close any other software connected to your device and then click here to refresh." + }, + "ledgerConnectionInstructionHeader": { + "message": "Prior to clicking confirm:" + }, + "ledgerConnectionInstructionStepFour": { + "message": "Enable \"smart contract data\" or \"blind signing\" on your Ledger device." + }, + "ledgerConnectionInstructionStepThree": { + "message": "Be sure your Ledger is plugged in and to select the Ethereum app." + }, + "ledgerDeviceOpenFailureMessage": { + "message": "The Ledger device failed to open. Your Ledger might be connected to other software. Please close Ledger Live or other applications connected to your Ledger device, and try to connect again." + }, + "ledgerErrorConnectionIssue": { + "message": "Reconnect your ledger, open the ETH app and try again." + }, + "ledgerErrorDevicedLocked": { + "message": "Your Ledger is locked. Unlock it then try again." + }, + "ledgerErrorEthAppNotOpen": { + "message": "To solve the issue, open the ETH application on your device and retry." + }, + "ledgerErrorTransactionDataNotPadded": { + "message": "Ethereum transaction's input data isn't sufficiently padded." + }, + "ledgerEthAppNftNotSupportedNotification": { + "message": "Ledger Nano S can't send or manage Ethereum NFTs. See upgrade options at https://shop.ledger.com/pages/ledger-nano-s-upgrade-program" + }, + "ledgerFirefoxNotSupportedDescription1": { + "message": "We're having trouble connecting to Ledger. Check out our " + }, + "ledgerFirefoxNotSupportedDescription2": { + "message": " on how to connect a hardware wallet, then try again." + }, + "ledgerFirefoxNotSupportedDescription3": { + "message": " Ledger no longer supports Firefox, so you might need to use a different browser." + }, + "ledgerFirefoxNotSupportedLink": { + "message": "guide" + }, + "ledgerFirefoxNotSupportedTitle": { + "message": "Firefox Not Supported" + }, + "ledgerLiveApp": { + "message": "Ledger Live App" + }, + "ledgerLocked": { + "message": "Cannot connect to Ledger device. Please make sure your device is unlocked and Ethereum app is opened." + }, + "ledgerMultipleDevicesUnsupportedInfoDescription": { + "message": "To connect a new device, disconnect the previous one." + }, + "ledgerMultipleDevicesUnsupportedInfoTitle": { + "message": "You can only connect one Ledger at a time" + }, + "ledgerTimeout": { + "message": "Ledger Live is taking too long to respond or connection timeout. Make sure Ledger Live app is opened and your device is unlocked." + }, + "ledgerWebHIDNotConnectedErrorMessage": { + "message": "The ledger device was not connected. If you wish to connect your Ledger, please click 'Continue' again and approve HID connection", + "description": "An error message shown to the user during the hardware connect flow." + }, + "lightTheme": { + "message": "Light" + }, + "likeToImportToken": { + "message": "Would you like to import this token?" + }, + "likeToImportTokens": { + "message": "Would you like to import these tokens?" + }, + "lineaMainnet": { + "message": "Linea" + }, + "lineaSepolia": { + "message": "Linea Sepolia test network" + }, + "link": { + "message": "Link" + }, + "linkCentralizedExchanges": { + "message": "Link your Coinbase or Binance accounts to transfer crypto to MetaMask for free." + }, + "loading": { + "message": "Loading..." + }, + "loadingScreenSnapMessage": { + "message": "Please complete the transaction on the Snap." + }, + "loadingTokenList": { + "message": "Loading token list" + }, + "localCurrency": { + "message": "Local currency" + }, + "localhost": { + "message": "Localhost 8545" + }, + "lock": { + "message": "Lock" + }, + "lockMetaMaskLoadingMessage": { + "message": "Locking MetaMask..." + }, + "logOut": { + "message": "Log out" + }, + "loginErrorConnectButton": { + "message": "Try again" + }, + "loginErrorConnectDescription": { + "message": "Your internet connection is unstable. Check your connection and try again." + }, + "loginErrorConnectTitle": { + "message": "Unable to connect" + }, + "loginErrorGenericButton": { + "message": "Try again" + }, + "loginErrorGenericDescription": { + "message": "An error occurred while logging in. Try again and if the issue continues, contact $1.", + "description": "$1 is the key 'loginErrorGenericSupport'" + }, + "loginErrorGenericSupport": { + "message": "MetaMask support" + }, + "loginErrorGenericTitle": { + "message": "Something went wrong" + }, + "loginErrorResetWalletDescription": { + "message": "An issue occurred while unlocking. Re-login with $1 and your MetaMask password.", + "description": "$1 is the social login method" + }, + "loginErrorSessionExpiredButton": { + "message": "Log in" + }, + "loginErrorSessionExpiredDescription": { + "message": "Your session has expired. Please log in again to continue." + }, + "loginErrorSessionExpiredTitle": { + "message": "Session has expired" + }, + "logo": { + "message": "$1 logo", + "description": "$1 is the name of the ticker" + }, + "low": { + "message": "Low" + }, + "lowGasSettingToolTipMessage": { + "message": "Use $1 to wait for a cheaper price. Time estimates are much less accurate as prices are somewhat unpredictable.", + "description": "$1 is key 'low' separated here so that it can be passed in with bold font-weight" + }, + "lowLowercase": { + "message": "low" + }, + "mainnet": { + "message": "Ethereum Mainnet" + }, + "mainnetToken": { + "message": "This address matches a known Ethereum Mainnet token address. Recheck the contract address and network for the token you are trying to add." + }, + "makeAnotherSwap": { + "message": "Create a new swap" + }, + "makeSmartContractsEasier": { + "message": "Make smart contracts easier to read" + }, + "makeSmartContractsEasierDescription": { + "message": "MetaMask uses 4byte.directory and Sourcify to translate this information." + }, + "manage": { + "message": "Manage" + }, + "manageDefaultSettings": { + "message": "Manage default settings" + }, + "manageInstitutionalWallets": { + "message": "Manage institutional wallets" + }, + "manageInstitutionalWalletsDescription": { + "message": "Turn this on to enable institutional wallets." + }, + "manageNetworksMenuHeading": { + "message": "Manage networks" + }, + "managePermissions": { + "message": "Manage permissions" + }, + "manageTokens": { + "message": "Manage tokens" + }, + "manageWalletRecovery": { + "message": "Manage wallet recovery" + }, + "marketCap": { + "message": "Market cap" + }, + "marketCapFDV": { + "message": "Market cap (FDV)" + }, + "marketDetails": { + "message": "Market details" + }, + "marketRate": { + "message": "Market rate" + }, + "maskicons": { + "message": "Polycons" + }, + "max": { + "message": "Max" + }, + "maxBaseFee": { + "message": "Max base fee" + }, + "maxBaseFeeMustBeGreaterThanPriorityFee": { + "message": "Max base fee must be greater than priority fee" + }, + "maxFee": { + "message": "Max fee" + }, + "maxFeeTooltip": { + "message": "A maximum fee provided to pay for the transaction." + }, + "maybeLater": { + "message": "Maybe later" + }, + "medium": { + "message": "Market" + }, + "mediumGasSettingToolTipMessage": { + "message": "Use $1 for fast processing at current market price.", + "description": "$1 is key 'medium' (text: 'Market') separated here so that it can be passed in with bold font-weight" + }, + "memo": { + "message": "memo" + }, + "merklRewardsClaimBonus": { + "message": "Claim bonus", + "description": "Short label shown in token list for tokens with claimable Merkl rewards" + }, + "merklRewardsToastFailed": { + "message": "Your mUSD bonus claim failed", + "description": "Toast message shown when a Merkl reward claim transaction fails or is dropped" + }, + "merklRewardsToastInProgress": { + "message": "Your mUSD bonus is processing", + "description": "Toast message shown when a Merkl reward claim transaction is being processed" + }, + "merklRewardsToastSuccess": { + "message": "Your mUSD bonus is here!", + "description": "Toast message shown when a Merkl reward claim transaction is confirmed" + }, + "merklRewardsUnexpectedError": { + "message": "Unexpected error. Please try again.", + "description": "Error message shown when claiming Merkl rewards fails" + }, + "message": { + "message": "Message" + }, + "metaMaskConnectStatusParagraphOne": { + "message": "You now have more control over your account connections in MetaMask." + }, + "metaMaskConnectStatusParagraphThree": { + "message": "Click it to manage your connected accounts." + }, + "metaMaskConnectStatusParagraphTwo": { + "message": "The connection status button shows if the website you’re visiting is connected to your currently selected account." + }, + "metaMetricsIdNotAvailableError": { + "message": "Since you've never opted into MetaMetrics, there's no data to delete here." + }, + "metadataModalSourceTooltip": { + "message": "$1 is hosted on npm and $2 is this Snap’s unique identifier.", + "description": "$1 is the snap name and $2 is the snap NPM id." + }, + "metamaskFee": { + "message": "MetaMask fee" + }, + "metamaskNotificationsAreOff": { + "message": "Wallet notifications are currently not active." + }, + "metamaskSwap": { + "message": "MetaMask Swap" + }, + "metamaskSwapsOfflineDescription": { + "message": "MetaMask Swaps is undergoing maintenance. Please check back later." + }, + "metamaskVersion": { + "message": "MetaMask Version" + }, + "methodData": { + "message": "Method" + }, + "methodDataTransactionDesc": { + "message": "Function executed based on decoded input data." + }, + "methodNotSupported": { + "message": "Not supported with this account." + }, + "metrics": { + "message": "Metrics" + }, + "minimumReceivedExplanation": { + "message": "The minimum you'll get if the price changes while your transaction processes, based on your slippage setting. The estimate comes from liquidity providers, so the final amount may differ." + }, + "minimumReceivedExplanationTitle": { + "message": "Minimum amount received" + }, + "minimumReceivedLabel": { + "message": "Minimum received" + }, + "minute": { + "message": "min" + }, + "mismatchedChainLinkText": { + "message": "verify the network details", + "description": "Serves as link text for the 'mismatchedChain' key. This text will be embedded inside the translation for that key." + }, + "mismatchedChainRecommendation": { + "message": "We recommend that you $1 before proceeding.", + "description": "$1 is a clickable link with text defined by the 'mismatchedChainLinkText' key. The link will open to instructions for users to validate custom network details." + }, + "mismatchedNetworkName": { + "message": "According to our record the network name may not correctly match this chain ID." + }, + "mismatchedNetworkSymbol": { + "message": "The submitted currency symbol does not match what we expect for this chain ID." + }, + "mismatchedRpcChainId": { + "message": "Chain ID returned by the custom network does not match the submitted chain ID." + }, + "mismatchedRpcUrl": { + "message": "According to our records the submitted RPC URL value does not match a known provider for this chain ID." + }, + "month": { + "message": "month" + }, + "monthly": { + "message": "Monthly" + }, + "more": { + "message": "more" + }, + "moreAccounts": { + "message": "+ $1 more accounts", + "description": "$1 is the number of accounts" + }, + "moreCapital": { + "message": "More" + }, + "moreNetworks": { + "message": "+ $1 more networks", + "description": "$1 is the number of networks" + }, + "moreQuotes": { + "message": "More quotes" + }, + "multichainAccountAddressCopied": { + "message": "Address copied", + "description": "Message displayed when the multichain account address is copied to clipboard" + }, + "multichainAccountIntroLearnMore": { + "message": "Learn more", + "description": "Button text to learn more about multichain accounts" + }, + "multichainAccountIntroSameAddressDescription": { + "message": "We’ve grouped your accounts, so keep using MetaMask the same as before. Your funds are safe and unchanged.", + "description": "Description explaining that accounts have been merged" + }, + "multichainAccountIntroSameAddressTitle": { + "message": "Same address, more networks", + "description": "Title for the second section of the multichain account intro modal" + }, + "multichainAccountIntroSettingUp": { + "message": "Setting up your accounts...", + "description": "Loading text shown while setting up multichain accounts" + }, + "multichainAccountIntroViewAccounts": { + "message": "View accounts", + "description": "Button text to view accounts from the intro modal" + }, + "multichainAccountIntroWhatDescription": { + "message": "A multichain account is an account with addresses on several networks, supported by MetaMask. So now you can use Ethereum, Solana, and more without switching accounts.", + "description": "Description explaining what multichain accounts are" + }, + "multichainAccountIntroWhatTitle": { + "message": "What are multichain accounts?", + "description": "Title for the first section of the multichain account intro modal" + }, + "multichainAccountPrivateKeyCopied": { + "message": "Private key copied", + "description": "Message displayed when the multichain account private key is copied to clipboard" + }, + "multichainAccountsIntroductionModalTitle": { + "message": "Introducing multichain accounts", + "description": "Title for the multichain accounts introduction modal." + }, + "multichainAddEthereumChainConfirmationDescription": { + "message": "You're adding this network to MetaMask and giving this site permission to use it." + }, + "multichainAddressViewAll": { + "message": "View all" + }, + "multichainProviderAccess": { + "message": "Grant Multichain provider access to $1", + "description": "The parameter is the name of the requesting origin" + }, + "multichainQuoteCardRateExplanation": { + "message": "The best rate we found from providers, including provider fees and a $1% MetaMask fee." + }, + "multichainQuoteCardRateLabel": { + "message": "Rate" + }, + "multipleSnapConnectionWarning": { + "message": "$1 wants to use $2 Snaps", + "description": "$1 is the dapp and $2 is the number of snaps it wants to connect to." + }, + "musdAssetBonusAccruing": { + "message": "Accruing next bonus", + "description": "Disabled claim button label shown when user holds mUSD but has no claimable bonus yet" + }, + "musdAssetBonusClaimAmount": { + "message": "Claim $1 bonus", + "description": "Label for the claim button in the mUSD asset details Your bonus section, where $1 is the formatted fiat amount (e.g., $10.27)" + }, + "musdAssetBonusEstimatedAnnual": { + "message": "Estimated annual bonus", + "description": "Label in the mUSD asset details Your bonus section" + }, + "musdAssetBonusInfoAria": { + "message": "Your bonus info", + "description": "Accessible name for the info icon that opens the Your bonus tooltip" + }, + "musdAssetBonusInfoEstimatedAnnual": { + "message": "A projection of what you'd earn over a year based on your current balance and rate. Rate is variable and may change.", + "description": "Explanation for Estimated annual bonus in the Your bonus info tooltip" + }, + "musdAssetBonusInfoLearnMore": { + "message": "Learn more.", + "description": "Link label at the bottom of the Your bonus info tooltip" + }, + "musdAssetBonusInfoLifetimeClaimed": { + "message": "The total bonus you've claimed since you started.", + "description": "Explanation for Lifetime bonus claimed in the Your bonus info tooltip" + }, + "musdAssetBonusInfoYourBonus": { + "message": "$1% annualized bonus you earn just for holding mUSD. You can claim it daily on Linea. $2", + "description": "$1 is the APY %, $2 is the 'Terms apply.' link" + }, + "musdAssetBonusLifetimeClaimed": { + "message": "Lifetime bonus claimed", + "description": "Label in the mUSD asset details Your bonus section" + }, + "musdAssetBonusNoAccruing": { + "message": "No accruing bonus", + "description": "Disabled claim button label shown when user holds no mUSD and has no bonus to claim" + }, + "musdAssetBonusRate": { + "message": "$1% bonus", + "description": "Tag next to Your bonus on the mUSD asset details page, where $1 is the bonus APY percentage (e.g., 3)" + }, + "musdAssetBonusTitle": { + "message": "Your bonus", + "description": "Section title on the mUSD asset details page" + }, + "musdAssetConvertBenefitDailyBonus": { + "message": "Daily bonus", + "description": "Benefit tag on the mUSD asset details convert section" + }, + "musdAssetConvertBenefitDollarBacked": { + "message": "Dollar-backed", + "description": "Benefit tag on the mUSD asset details convert section" + }, + "musdAssetConvertBenefitNoLockups": { + "message": "No lockups", + "description": "Benefit tag on the mUSD asset details convert section" + }, + "musdAssetConvertBenefitNoMetaMaskFee": { + "message": "No MetaMask fee", + "description": "Benefit tag on the mUSD asset details convert section" + }, + "musdAssetConvertDescriptionHighlight": { + "message": "$1% annualized bonus", + "description": "Shown in Figma accent lime (#baf24a) inside the mUSD asset details convert section description. $1 is the APY percentage." + }, + "musdAssetConvertDescriptionLead": { + "message": "Get a ", + "description": "Text before the green APY phrase on the mUSD asset details convert section" + }, + "musdAssetConvertDescriptionTail": { + "message": " by converting USDC, USDT, and DAI to mUSD.", + "description": "Text after the green APY phrase on the mUSD asset details convert section" + }, + "musdAssetConvertLearnMore": { + "message": "Learn more", + "description": "Button to open the mUSD support article from the asset details convert section" + }, + "musdAssetConvertTitle": { + "message": "Convert your stablecoins", + "description": "Title of the convert section on the mUSD asset details page" + }, + "musdAssetPositionBalance": { + "message": "Balance", + "description": "Label in the mUSD asset details Your position section" + }, + "musdAssetPositionTitle": { + "message": "Your position", + "description": "Section title on the mUSD asset details page" + }, + "musdAssetPositionValue": { + "message": "Value", + "description": "Label in the mUSD asset details Your position section (fiat value)" + }, + "musdBonusExplanation": { + "message": "Convert your stablecoins to mUSD and earn\nup to a $1% annualized bonus that you can\nclaim daily. $2", + "description": "$1 is the bonus APY percentage, $2 is the 'Terms apply' link" + }, + "musdBonusPoweredByRelay": { + "message": "Powered by Relay", + "description": "Attribution shown below mUSD bonus explanation on the conversion confirmation info popover" + }, + "musdBoostDescription": { + "message": "Convert your stablecoins to mUSD and get a $1% annualized bonus.", + "description": "$1 is the bonus percentage (e.g., 3)" + }, + "musdBoostTitle": { + "message": "Get $1% on your stablecoins", + "description": "$1 is the bonus percentage (e.g., 3)" + }, + "musdBuyMusd": { + "message": "Buy mUSD" + }, + "musdClaimSendingTo": { + "message": "Sending to", + "description": "Label for the account row in the mUSD claim confirmation screen when no wallet name is available" + }, + "musdClaimSendingToWallet": { + "message": "Sending to $1", + "description": "Label for the account row in the mUSD claim confirmation screen, where $1 is the wallet name" + }, + "musdClaimTitle": { + "message": "Claim bonus", + "description": "Title for the mUSD bonus claim confirmation screen" + }, + "musdClaimableBonus": { + "message": "Claimable bonus", + "description": "Label for the claimable bonus row in the mUSD conversion confirmation screen" + }, + "musdClaimableBonusTooltip": { + "message": "The annualized bonus you've earned for holding mUSD. Your bonus is claimable daily on Linea. $1", + "description": "$1 is the 'Terms apply' link" + }, + "musdClaimableBonusTooltipAria": { + "message": "Claimable bonus details", + "description": "Accessible name for the info control that opens the claimable bonus explanation popover" + }, + "musdConversionActivityTitle": { + "message": "Convert $1 to mUSD", + "description": "$1 is the source token symbol (e.g., USDC)" + }, + "musdConversionBonusTooltipAria": { + "message": "Bonus details", + "description": "Accessible name for the info control that opens the mUSD conversion bonus explanation popover" + }, + "musdConversionFeeTooltipDescription": { + "message": "mUSD conversion fees include network costs and may include provider fees. No MetaMask fee applies when you convert to mUSD.", + "description": "Body text shown above the fee breakdown in the transaction fee tooltip for mUSD conversion" + }, + "musdConversionTitle": { + "message": "Converted to mUSD", + "description": "Title shown in the transaction details modal for mUSD conversion transactions" + }, + "musdConversionToastFailed": { + "message": "mUSD conversion failed" + }, + "musdConversionToastInProgress": { + "message": "Converting $1 → mUSD", + "description": "$1 is the source token symbol (e.g., USDC)" + }, + "musdConversionToastSuccess": { + "message": "mUSD conversion successful" + }, + "musdConversionToastSuccessDescription": { + "message": "Bonus will be claimable within a day." + }, + "musdConvert": { + "message": "Convert" + }, + "musdConvertAndGetBonus": { + "message": "Convert and get $1%", + "description": "$1 is the bonus percentage (e.g., 3)" + }, + "musdEarnBonusPercentage": { + "message": "Earn a $1% bonus", + "description": "$1 is the bonus percentage (e.g., 3). Subtitle on the home token list mUSD Buy/Get CTA." + }, + "musdEducationGetStarted": { + "message": "Get started" + }, + "musdEducationHeadline": { + "message": "GET $1% ON\nSTABLECOINS", + "description": "$1 is the bonus APY percentage. Line break between ON and STABLECOINS matches splash layout." + }, + "musdEducationNotNow": { + "message": "Not now" + }, + "musdGetBonusPercentage": { + "message": "Get $1% mUSD bonus", + "description": "$1 is the bonus percentage (e.g., 3)" + }, + "musdGetMusd": { + "message": "Get mUSD" + }, + "musdMetaMaskUsd": { + "message": "MetaMask USD", + "description": "Product name shown as the title line on the home token list mUSD Buy/Get CTA" + }, + "musdSymbol": { + "message": "mUSD", + "description": "Token ticker for MetaMask USD (displayed next to balance on the mUSD asset details page)" + }, + "musdTermsApply": { + "message": "Terms apply." + }, + "mustSelectOne": { + "message": "Must select at least 1 token." + }, + "name": { + "message": "Name" + }, + "nameAddressLabel": { + "message": "Address", + "description": "Label above address field in name component modal." + }, + "nameAlreadyInUse": { + "message": "Name is already in use" + }, + "nameFooterTrustWarning": { + "message": "Only save addresses you trust.", + "description": "Footer warning text shown in name modal for malicious and warning addresses." + }, + "nameInstructionsMalicious": { + "message": "This has been identified as malicious. We recommend not interacting with this address.", + "description": "Instruction text in name component modal when address is malicious." + }, + "nameInstructionsNew": { + "message": "If you know this address, give it a nickname to recognize it in the future.", + "description": "Instruction text in name component modal when value is not recognised." + }, + "nameInstructionsRecognized": { + "message": "This address has a default nickname, but you can edit it or explore other suggestions.", + "description": "Instruction text in name component modal when value is recognized but not saved." + }, + "nameInstructionsSaved": { + "message": "You've added a nickname for this address before. You can edit or view other suggested nicknames.", + "description": "Instruction text in name component modal when value is saved." + }, + "nameInstructionsWarning": { + "message": "We can't verify this address. It may be new or unverified. Set a personal display name to identify it going forward.", + "description": "Instruction text in name component modal when address has warning signals." + }, + "nameLabel": { + "message": "Nickname", + "description": "Label above name input field in name component modal." + }, + "nameModalMaybeProposedName": { + "message": "Maybe: $1", + "description": "$1 is the proposed name" + }, + "nameModalTitleMalicious": { + "message": "Malicious address", + "description": "Title of the modal created by the name component when address is identified as malicious." + }, + "nameModalTitleNew": { + "message": "Unknown address", + "description": "Title of the modal created by the name component when value is not recognised." + }, + "nameModalTitleRecognized": { + "message": "Recognized address", + "description": "Title of the modal created by the name component when value is recognized but not saved." + }, + "nameModalTitleSaved": { + "message": "Saved address", + "description": "Title of the modal created by the name component when value is saved." + }, + "nameModalTitleVerified": { + "message": "Verified address", + "description": "Title of the modal created by the name component when address is verified." + }, + "nameModalTitleWarning": { + "message": "Address needs review", + "description": "Title of the modal created by the name component when address has warning trust signals." + }, + "nameProviderProposedBy": { + "message": "Proposed by $1", + "description": "$1 is the name of the provider" + }, + "nameProvider_ens": { + "message": "Ethereum Name Service (ENS)" + }, + "nameProvider_etherscan": { + "message": "Etherscan" + }, + "nameProvider_lens": { + "message": "Lens Protocol" + }, + "nameProvider_token": { + "message": "MetaMask" + }, + "nameResolutionFailedError": { + "message": "No address resolution found for this name." + }, + "nameResolutionZeroAddressError": { + "message": "Name resolver returned a zero address. This is likely an error." + }, + "nameSetPlaceholder": { + "message": "Choose a nickname...", + "description": "Placeholder text for name input field in name component modal." + }, + "nameSetPlaceholderSuggested": { + "message": "Suggested: $1", + "description": "$1 is the proposed name" + }, + "nativeNetworkPermissionRequestDescription": { + "message": "$1 is asking for your approval to:", + "description": "$1 represents dapp name" + }, + "nativeTokenScamWarningConversion": { + "message": "Edit network details" + }, + "nativeTokenScamWarningDescription": { + "message": "The native token symbol does not match the expected symbol of the native token for the network with the associated chain ID. You have entered $1 while the expected token symbol is $2. Please verify you are connected to the correct chain.", + "description": "$1 represents the currency name, $2 represents the expected currency symbol" + }, + "nativeTokenScamWarningDescriptionExpectedTokenFallback": { + "message": "something else", + "description": "graceful fallback for when token symbol isn't found" + }, + "nativeTokenScamWarningTitle": { + "message": "Unexpected native token symbol", + "description": "Title for nativeTokenScamWarningDescription" + }, + "needHelp": { + "message": "Need help? Contact $1", + "description": "$1 represents `needHelpLinkText`, the text which goes in the help link" + }, + "needHelpFeedback": { + "message": "Share your feedback" + }, + "needHelpLinkText": { + "message": "MetaMask support" + }, + "needHelpSubmitTicket": { + "message": "Submit a ticket" + }, + "needImportFile": { + "message": "You must select a file to import.", + "description": "User is important an account and needs to add a file to continue" + }, + "negativeOrZeroAmountToken": { + "message": "Cannot send negative or zero amounts of asset." + }, + "negativeValuesNotAllowed": { + "message": "Negative values are not allowed" + }, + "network": { + "message": "Network" + }, + "networkChanged": { + "message": "Network changed" + }, + "networkChangedMessage": { + "message": "You're now transacting on $1.", + "description": "$1 is the name of the network" + }, + "networkDetails": { + "message": "Network details" + }, + "networkFee": { + "message": "Network fee" + }, + "networkFeeExplanation": { + "message": "Network fees depend on how busy the network is and how complex your transaction is." + }, + "networkFeeExplanationTitle": { + "message": "Network fee" + }, + "networkMenu": { + "message": "Network menu" + }, + "networkMenuHeading": { + "message": "Select a network" + }, + "networkName": { + "message": "Network name" + }, + "networkNameBitcoin": { + "message": "Bitcoin" + }, + "networkNameBitcoinSegwit": { + "message": "Bitcoin Native SegWit" + }, + "networkNameDefinition": { + "message": "The name associated with this network." + }, + "networkNameEthereum": { + "message": "Ethereum" + }, + "networkNameGoerli": { + "message": "Goerli" + }, + "networkNamePolygon": { + "message": "Polygon" + }, + "networkNameSolana": { + "message": "Solana" + }, + "networkNameTron": { + "message": "Tron" + }, + "networkOptions": { + "message": "Network options" + }, + "networkPermissionToast": { + "message": "Network permissions updated" + }, + "networkStatus": { + "message": "Network status" + }, + "networkStatusBaseFeeTooltip": { + "message": "The base fee is set by the network and changes every 13-14 seconds. Our $1 and $2 options account for sudden increases.", + "description": "$1 and $2 are bold text for Medium and Aggressive respectively." + }, + "networkStatusPriorityFeeTooltip": { + "message": "Range of priority fees (aka “miner tip”). This goes to miners and incentivizes them to prioritize your transaction." + }, + "networkStatusStabilityFeeTooltip": { + "message": "Gas fees are $1 relative to the past 72 hours.", + "description": "$1 is networks stability value - stable, low, high" + }, + "networkSuggested": { + "message": "Network suggested" + }, + "networkTabCustom": { + "message": "Custom" + }, + "networkTabPopular": { + "message": "Popular" + }, + "networkURL": { + "message": "Network URL" + }, + "networkURLDefinition": { + "message": "The URL used to access this network." + }, + "networkUrlErrorWarning": { + "message": "Attackers sometimes mimic sites by making small changes to the site address. Make sure you're interacting with the intended site before you continue. Punycode version: $1", + "description": "$1 replaced by RPC URL for network" + }, + "networks": { + "message": "Networks" + }, + "networksSmallCase": { + "message": "networks" + }, + "nevermind": { + "message": "Nevermind" + }, + "new": { + "message": "New!" + }, + "newAccount": { + "message": "New account" + }, + "newAccountIconMessage": { + "message": "Weʼve refreshed account icons to help you tell your accounts apart more easily. You can change the style in $1 > $2 > $3.", + "description": "$1, $2, and $3 are bold text for Settings, General, and Account icon respectively" + }, + "newAccountIconTitle": { + "message": "New account icon" + }, + "newAccountNumberName": { + "message": "Account $1", + "description": "Default name of next account to be created on create account screen" + }, + "newContract": { + "message": "New contract" + }, + "newNFTDetectedInImportNFTsMessageStrongText": { + "message": "Settings > Security and privacy" + }, + "newNFTDetectedInImportNFTsMsg": { + "message": "To use Opensea to see your NFTs, turn on 'Display NFT Media' in $1.", + "description": "$1 is used for newNFTDetectedInImportNFTsMessageStrongText" + }, + "newNFTDetectedInNFTsTabMessage": { + "message": "Let MetaMask automatically detect and display NFTs in your wallet." + }, + "newNFTsAutodetected": { + "message": "NFT autodetection" + }, + "newNetworkAdded": { + "message": "“$1” was successfully added!" + }, + "newNetworkEdited": { + "message": "“$1” was successfully edited!" + }, + "newNftAddedMessage": { + "message": "NFT was successfully added!" + }, + "newPassword": { + "message": "New password" + }, + "newPasswordCreate": { + "message": "Create new password" + }, + "newPrivacyPolicyActionButton": { + "message": "Read more" + }, + "newPrivacyPolicyTitle": { + "message": "We’ve updated our privacy policy" + }, + "newRpcUrl": { + "message": "New RPC URL" + }, + "newTokensImportedMessage": { + "message": "You’ve successfully imported $1.", + "description": "$1 is the string of symbols of all the tokens imported" + }, + "newTokensImportedTitle": { + "message": "Token imported" + }, + "next": { + "message": "Next" + }, + "nftAddFailedMessage": { + "message": "NFT can’t be added as the ownership details do not match. Make sure you have entered correct information." + }, + "nftAddressError": { + "message": "This token is an NFT. Add on the $1", + "description": "$1 is a clickable link with text defined by the 'importNFTPage' key" + }, + "nftAlreadyAdded": { + "message": "NFT has already been added." + }, + "nftAutoDetectionEnabled": { + "message": "NFT autodetection enabled" + }, + "nftBought": { + "message": "Bought $1" + }, + "nftEmptyDescription": { + "message": "There's a world of NFTs out there. Start your collection today." + }, + "nftMinted": { + "message": "Minted $1" + }, + "nftOptions": { + "message": "NFT Options" + }, + "nftTokenIdPlaceholder": { + "message": "Enter the token id" + }, + "nftWarningContent": { + "message": "You're granting access to $1, including any you might own in the future. The party on the other end can transfer these NFTs from your wallet at any time without asking you until you revoke this approval. $2", + "description": "$1 is nftWarningContentBold bold part, $2 is Learn more link" + }, + "nftWarningContentBold": { + "message": "all your $1 NFTs", + "description": "$1 is name of the collection" + }, + "nftWarningContentGrey": { + "message": "Proceed with caution." + }, + "nfts": { + "message": "NFTs" + }, + "nftsPreviouslyOwned": { + "message": "Previously owned" + }, + "nickname": { + "message": "Nickname" + }, + "no": { + "message": "No" + }, + "noAccountsFound": { + "message": "No accounts found for the given search query" + }, + "noConnectionDescription": { + "message": "MetaMask isn't connected to this site. To get started, select the site's Connect button." + }, + "noDefaultAddress": { + "message": "No $1 address", + "description": "$1 is the default address scope" + }, + "noDomainResolution": { + "message": "No resolution for domain provided." + }, + "noHardwareWalletOrSnapsSupport": { + "message": "Snaps, and most hardware wallets, will not work with your current browser version." + }, + "noMMFeeSwapping": { + "message": "No MetaMask fee" + }, + "noNetworkFee": { + "message": "No network fee" + }, + "noNetworksAvailable": { + "message": "No networks available" + }, + "noNetworksFound": { + "message": "No networks found for the given search query" + }, + "noNetworksSelected": { + "message": "No networks selected" + }, + "noOptionsAvailableMessage": { + "message": "This trade route isn't available right now. Try changing the amount, network, or token and we'll find the best option." + }, + "noSnaps": { + "message": "You don't have any snaps installed." + }, + "noTokensMatchSearch": { + "message": "No tokens match your search" + }, + "noTokensMatchingYourFilters": { + "message": "No tokens matching your filters" + }, + "noTokensToManage": { + "message": "You don't have any tokens yet. Search by name or address to discover popular tokens." + }, + "noWebcamFound": { + "message": "Your computer's webcam was not found. Please try again." + }, + "noWebcamFoundTitle": { + "message": "Webcam not found" + }, + "noZeroValue": { + "message": "$1 must be greater than 0" + }, + "nonContractAddressAlertDesc": { + "message": "You're sending call data to an address that isn't a contract. This could cause you to lose funds. Make sure you're using the correct address and network before continuing." + }, + "nonContractAddressAlertTitle": { + "message": "Potential mistake" + }, + "nonce": { + "message": "Nonce" + }, + "none": { + "message": "None" + }, + "notBusy": { + "message": "Not busy" + }, + "notCurrentAccount": { + "message": "Is this the correct account? It's different from the currently selected account in your wallet" + }, + "notEnoughGas": { + "message": "Not enough gas" + }, + "notificationDetail": { + "message": "Details" + }, + "notificationDetailBaseFee": { + "message": "Base fee (GWEI)" + }, + "notificationDetailGasLimit": { + "message": "Gas limit (units)" + }, + "notificationDetailGasUsed": { + "message": "Gas used (units)" + }, + "notificationDetailMaxFee": { + "message": "Max fee per gas" + }, + "notificationDetailNetwork": { + "message": "Network" + }, + "notificationDetailNetworkFee": { + "message": "Network fee" + }, + "notificationDetailPriorityFee": { + "message": "Priority fee (GWEI)" + }, + "notificationItemCheckBlockExplorer": { + "message": "Check on the block explorer" + }, + "notificationItemCollection": { + "message": "Collection" + }, + "notificationItemConfirmed": { + "message": "Confirmed" + }, + "notificationItemError": { + "message": "Unable to retrieve fees currently" + }, + "notificationItemFrom": { + "message": "From" + }, + "notificationItemLidoStakeReadyToBeWithdrawn": { + "message": "Withdrawal ready" + }, + "notificationItemLidoStakeReadyToBeWithdrawnMessage": { + "message": "You can now withdraw your unstaked $1" + }, + "notificationItemLidoWithdrawalRequestedMessage": { + "message": "Your request to unstake $1 has been sent" + }, + "notificationItemNFTReceivedFrom": { + "message": "Received NFT from" + }, + "notificationItemNFTSentTo": { + "message": "Sent NFT to" + }, + "notificationItemNetwork": { + "message": "Network" + }, + "notificationItemRate": { + "message": "Rate (fee included)" + }, + "notificationItemReceived": { + "message": "Received" + }, + "notificationItemReceivedFrom": { + "message": "Received from" + }, + "notificationItemSent": { + "message": "Sent" + }, + "notificationItemSentTo": { + "message": "Sent to" + }, + "notificationItemStakeCompleted": { + "message": "Stake completed" + }, + "notificationItemStaked": { + "message": "Staked" + }, + "notificationItemStakingProvider": { + "message": "Staking provider" + }, + "notificationItemStatus": { + "message": "Status" + }, + "notificationItemSwapped": { + "message": "Swapped" + }, + "notificationItemSwappedFor": { + "message": "for" + }, + "notificationItemTo": { + "message": "To" + }, + "notificationItemTransactionId": { + "message": "Transaction ID" + }, + "notificationItemUnStakeCompleted": { + "message": "UnStaking complete" + }, + "notificationItemUnStaked": { + "message": "Unstaked" + }, + "notificationItemUnStakingRequested": { + "message": "Unstaking requested" + }, + "notificationTransactionFailedMessage": { + "message": "Transaction $1 failed! $2", + "description": "Content of the browser notification that appears when a transaction fails" + }, + "notificationTransactionFailedTitle": { + "message": "Failed transaction", + "description": "Title of the browser notification that appears when a transaction fails" + }, + "notificationTransactionSuccessMessage": { + "message": "Transaction $1 confirmed!", + "description": "Content of the browser notification that appears when a transaction is confirmed" + }, + "notificationTransactionSuccessTitle": { + "message": "Confirmed transaction", + "description": "Title of the browser notification that appears when a transaction is confirmed" + }, + "notificationTransactionSuccessView": { + "message": "View on $1", + "description": "Additional content in a notification that appears when a transaction is confirmed and has a block explorer URL." + }, + "notificationTransactionWithoutNonceFailedMessage": { + "message": "Transaction failed! $1", + "description": "Content of the browser notification that appears when a EIP-7702 transaction fails" + }, + "notificationTransactionWithoutNonceSuccessMessage": { + "message": "Transaction confirmed!", + "description": "Content of the browser notification that appears when a nonce-less transaction is confirmed" + }, + "notifications": { + "message": "Notifications" + }, + "notificationsFeatureToggle": { + "message": "Enable wallet notifications", + "description": "Experimental feature title" + }, + "notificationsFeatureToggleDescription": { + "message": "This enables wallet notifications like send/receive funds or nfts and feature announcements.", + "description": "Description of the experimental notifications feature" + }, + "notificationsMarkAllAsRead": { + "message": "Mark all as read" + }, + "notificationsPageEmptyTitle": { + "message": "Nothing to see here" + }, + "notificationsPageErrorContent": { + "message": "Please, try to visit this page again." + }, + "notificationsPageErrorTitle": { + "message": "There has been an error" + }, + "notificationsPageNoNotificationsContent": { + "message": "You have not received any notifications yet." + }, + "notificationsSettingsBoxError": { + "message": "Something went wrong. Please try again." + }, + "notificationsSettingsPageAllowNotifications": { + "message": "Stay in the loop on what’s happening in your wallet with notifications. To use notifications, we use a profile to sync some settings across your devices. $1 we protect your privacy while using this feature." + }, + "notificationsSettingsPageAllowNotificationsLink": { + "message": "Learn how" + }, + "numberOfTokens": { + "message": "Number of tokens" + }, + "ofTextNofM": { + "message": "of" + }, + "off": { + "message": "Off" + }, + "offlineForMaintenance": { + "message": "Offline for maintenance" + }, + "ok": { + "message": "Ok" + }, + "on": { + "message": "On" + }, + "onboardedMetametricsAccept": { + "message": "I agree" + }, + "onboardedMetametricsDisagree": { + "message": "No thanks" + }, + "onboardedMetametricsKey1": { + "message": "Latest developments" + }, + "onboardedMetametricsKey2": { + "message": "Product features" + }, + "onboardedMetametricsKey3": { + "message": "Other relevant promotional materials" + }, + "onboardedMetametricsLink": { + "message": "MetaMetrics" + }, + "onboardedMetametricsParagraph1": { + "message": "In addition to $1, we'd like to use data to understand how you interact with marketing communications.", + "description": "$1 represents the 'onboardedMetametricsLink' locale string" + }, + "onboardedMetametricsParagraph2": { + "message": "This helps us personalize what we share with you, like:" + }, + "onboardedMetametricsParagraph3": { + "message": "Remember, we never sell the data you provide and you can opt out any time." + }, + "onboardedMetametricsTitle": { + "message": "Help us enhance your experience" + }, + "onboardingAdvancedPrivacyIPFSDescription": { + "message": "The IPFS gateway makes it possible to access and view data hosted by third parties. You can add a custom IPFS gateway or continue using the default." + }, + "onboardingAdvancedPrivacyIPFSInvalid": { + "message": "Please enter a valid URL" + }, + "onboardingAdvancedPrivacyIPFSTitle": { + "message": "Add custom IPFS Gateway" + }, + "onboardingAdvancedPrivacyIPFSValid": { + "message": "IPFS gateway URL is valid" + }, + "onboardingAdvancedPrivacyNetworkDescription": { + "message": "When you use our default settings and configurations, we use Infura as our default remote procedure call (RPC) provider to offer the most reliable and private access to Ethereum data we can. In limited cases, we may use other RPC providers in order to provide the best experience for our users. You can choose your own RPC, but remember that any RPC will receive your IP address and Ethereum wallet to make transactions. To learn more about how Infura handles data for EVM accounts, read our $1; for Solana accounts, $2." + }, + "onboardingAdvancedPrivacyNetworkDescriptionCallToAction": { + "message": "click here" + }, + "onboardingAdvancedPrivacyNetworkTitle": { + "message": "Choose your network" + }, + "onboardingContinueWith": { + "message": "Continue with $1", + "description": "$1 is the type of login used Google, Apple, etc." + }, + "onboardingCreateWallet": { + "message": "Create a new wallet" + }, + "onboardingImportWallet": { + "message": "I have an existing wallet" + }, + "onboardingLoginFooter": { + "message": "By continuing, I agree to MetaMask’s $1 and $2" + }, + "onboardingLoginFooterPrivacyNotice": { + "message": "Privacy notice" + }, + "onboardingLoginFooterTermsOfUse": { + "message": "Terms of Use" + }, + "onboardingMetametricCheckboxDescriptionOneUpdated": { + "message": "We’ll collect basic product usage data. We may associate this information with on-chain data." + }, + "onboardingMetametricCheckboxDescriptionTwo": { + "message": "We’ll use this data to learn how you interact with our marketing communications. We may share relevant news (like product features)." + }, + "onboardingMetametricCheckboxTitleOne": { + "message": "Gather basic usage data" + }, + "onboardingMetametricCheckboxTitleTwo": { + "message": "Product updates" + }, + "onboardingMetametricsContinue": { + "message": "Continue" + }, + "onboardingMetametricsDescription": { + "message": "We’d like to request these permissions. You can opt out or delete your usage data at any time." + }, + "onboardingMetametricsTitle": { + "message": "Help improve MetaMask" + }, + "onboardingOptionIcon": { + "message": "$1 icon", + "description": "$1 is the icon name" + }, + "onboardingSignInWith": { + "message": "Sign in with $1", + "description": "$1 is the type of login used Google, Apple, etc" + }, + "onboardingSrpCreate": { + "message": "Use Secret Recovery Phrase" + }, + "onboardingSrpImport": { + "message": "Import using Secret Recovery Phrase" + }, + "onboardingSrpImportError": { + "message": "Use only lowercase letters, check your spelling, and put the words in the original order." + }, + "onboardingSrpInputClearAll": { + "message": "Clear all" + }, + "onboardingSrpInputPlaceholder": { + "message": "Add a space between each word and make sure no one is watching." + }, + "oneKey": { + "message": "OneKey", + "description": "Hardware device name" + }, + "only": { + "message": "only" + }, + "onlyConnectTrust": { + "message": "Only connect with sites you trust. $1", + "description": "Text displayed above the buttons for connection confirmation. $1 is the link to the learn more web page." + }, + "onlyIntegersAllowed": { + "message": "Only whole numbers are allowed" + }, + "onlyNumbersAllowed": { + "message": "Only numbers are allowed" + }, + "openFullScreen": { + "message": "Open full screen" + }, + "openFullScreenForLedgerWebHid": { + "message": "Go to full screen to connect your Ledger.", + "description": "Shown to the user on the confirm screen when they are viewing MetaMask in a popup window but need to connect their ledger via webhid." + }, + "openInBlockExplorer": { + "message": "Open in block explorer" + }, + "openMultichainAccountAddressMenu": { + "message": "Open multichain account address menu" + }, + "openSettings": { + "message": "Open settings" + }, + "openWallet": { + "message": "Open wallet" + }, + "options": { + "message": "Options" + }, + "or": { + "message": "Or" + }, + "origin": { + "message": "Origin" + }, + "originChanged": { + "message": "Site changed" + }, + "originChangedMessage": { + "message": "You're now reviewing a request from $1.", + "description": "$1 is the name of the origin" + }, + "osTheme": { + "message": "System" + }, + "other": { + "message": "other" + }, + "otherPermissionsOnSiteDescription": { + "message": "The following permissions were also found on this site. Do you want to remove them?" + }, + "otherPermissionsOnSiteTitle": { + "message": "Other permissions on this site" + }, + "otherSnaps": { + "message": "other snaps", + "description": "Used in the 'permission_rpc' message." + }, + "others": { + "message": "others" + }, + "outdatedBrowserNotification": { + "message": "Your browser is out of date. If you don't update your browser, you won't be able to get security patches and new features from MetaMask." + }, + "overrideContentSecurityPolicyHeader": { + "message": "Override Content-Security-Policy header" + }, + "padlock": { + "message": "Padlock" + }, + "paidByMetaMask": { + "message": "Paid by MetaMask" + }, + "paidWith": { + "message": "Paid with" + }, + "participateInMetaMetrics": { + "message": "Participate in MetaMetrics" + }, + "participateInMetaMetricsDescription": { + "message": "Participate in MetaMetrics to help us make MetaMask better" + }, + "passkeyAuthMethodBiometrics": { + "message": "Biometrics", + "description": "Default OS-agnostic noun for the passkey auth method, used as $1 substitution in passkey messages on macOS / Linux / other OSes." + }, + "passkeyAuthMethodTouchId": { + "message": "Touch ID", + "description": "Apple Touch ID brand name, used as $1 substitution on macOS for descriptive passkey copy that names the underlying feature." + }, + "passkeyAuthMethodWindowsHello": { + "message": "Windows Hello", + "description": "Microsoft Windows Hello brand name, used as $1 substitution on Windows for all passkey copy." + }, + "passkeyDescription": { + "message": "Use $1 to unlock MetaMask instead of entering your password. This creates a passkey on this device only.", + "description": "Description of the passkey unlock feature on the setup / settings screens. $1 is the OS-specific auth-method noun (Touch ID on macOS, Windows Hello on Windows, Biometrics elsewhere)." + }, + "passkeyErrorAlreadyEnrolled": { + "message": "$1 is already set up for this wallet.", + "description": "Shown when starting passkey enrollment while a passkey is already enrolled. $1 is the OS-specific auth-method noun (Biometrics / Touch ID / Windows Hello)." + }, + "passkeyErrorAuthenticationVerificationFailed": { + "message": "We couldn't verify your $1. Try again.", + "description": "Shown when passkey authentication response verification fails. $1 is the OS-specific auth-method noun (Biometrics / Touch ID / Windows Hello)." + }, + "passkeyErrorMissingKeyMaterial": { + "message": "Your $1 response was incomplete. Try again.", + "description": "Shown when the passkey assertion is missing required key material. $1 is the OS-specific auth-method noun (Biometrics / Touch ID / Windows Hello)." + }, + "passkeyErrorNoAuthenticationCeremony": { + "message": "$1 sign-in session expired. Try again.", + "description": "Shown when passkey authentication runs without an active authentication ceremony. $1 is the OS-specific auth-method noun (Biometrics / Touch ID / Windows Hello)." + }, + "passkeyErrorNoRegistrationCeremony": { + "message": "$1 setup session expired. Try again from the beginning.", + "description": "Shown when passkey registration verification runs without an active registration ceremony. $1 is the OS-specific auth-method noun (Biometrics / Touch ID / Windows Hello)." + }, + "passkeyErrorNotEnrolled": { + "message": "$1 isn't set up for this wallet. Turn on $1 in Settings.", + "description": "Shown when biometrics unlock fails because no passkey is enrolled. $1 is the OS-specific auth-method noun (Biometrics / Touch ID / Windows Hello)." + }, + "passkeyErrorRegistrationFailed": { + "message": "$1 setup failed. Try again", + "description": "Shown when onboarding biometrics registration fails with an unknown error (after specific biometrics error messages). $1 is the OS-specific auth-method noun (Biometrics / Touch ID / Windows Hello)." + }, + "passkeyErrorRegistrationVerificationFailed": { + "message": "We couldn't verify your $1 setup. Try again.", + "description": "Shown when passkey registration response verification fails. $1 is the OS-specific auth-method noun (Biometrics / Touch ID / Windows Hello)." + }, + "passkeyErrorVaultKeyDecryptionFailed": { + "message": "We couldn't unlock with $1. Try again, or set up $1 again in Settings.", + "description": "Shown when the wrapped vault key cannot be decrypted with the passkey-derived key. $1 is the OS-specific auth-method noun (Biometrics / Touch ID / Windows Hello)." + }, + "passkeyErrorVaultKeyMismatch": { + "message": "$1 doesn't match your current wallet lock. Set up $1 again in Settings.", + "description": "Shown when renewing passkey protection and the decrypted key does not match the expected vault key. $1 is the OS-specific auth-method noun (Biometrics / Touch ID / Windows Hello)." + }, + "passkeyErrorVaultKeyRenewalFailed": { + "message": "Your password was updated, but $1 unlock couldn't be turned on.", + "description": "Shown after a successful wallet password change when re-wrapping the vault key for passkey fails and passkey enrollment is cleared. $1 is the OS-specific auth-method noun (Biometrics / Touch ID / Windows Hello)." + }, + "passkeyErrorVerificationFailed": { + "message": "We couldn't verify your $1. Try again or use your password.", + "description": "Shown when biometrics verification fails while turning off biometrics unlock in Settings and the error has no known passkey code. $1 is the OS-specific auth-method noun (Biometrics / Touch ID / Windows Hello)." + }, + "passkeySetupStepRegister": { + "message": "Register $1", + "description": "Onboarding step label. $1 is the OS-specific auth-method noun (Biometrics / Touch ID / Windows Hello)." + }, + "passkeySetupStepVerify": { + "message": "Validate $1", + "description": "Onboarding step label. $1 is the OS-specific auth-method noun (Biometrics / Touch ID / Windows Hello)." + }, + "passkeyTroubleshootModalDescription": { + "message": "Try opening the extension in a full screen window and try again.", + "description": "Explains that unlocking with a passkey may work better in a full screen MetaMask window." + }, + "passkeyTroubleshootModalOpenFullScreen": { + "message": "Open full screen window", + "description": "Button that opens MetaMask unlock in a full browser tab." + }, + "passkeyTroubleshootModalStillHavingTrouble": { + "message": "Still having trouble?", + "description": "Link text to open MetaMask support when passkey unlock troubleshooting did not help." + }, + "passkeyTroubleshootUnlock": { + "message": "Trouble unlocking?", + "description": "Opens MetaMask in a full browser tab when passkey is unreliable in the side panel." + }, + "passkeyTroubleshootUnlockModalTitle": { + "message": "Trouble unlocking", + "description": "Title for the modal shown when the user needs help unlocking with a passkey from the side panel." + }, + "passkeyTroubleshootVerify": { + "message": "Trouble verifying?", + "description": "Link to open passkey troubleshooting when verifying identity (not unlock), e.g. change password or security settings in the side panel." + }, + "passkeyTroubleshootVerifyModalTitle": { + "message": "Trouble verifying?", + "description": "Title for the passkey troubleshoot modal when the user needs help verifying with a passkey outside of unlock (e.g. security settings or change password)." + }, + "passkeyTurnedOff": { + "message": "$1 turned off", + "description": "Toast shown after passkey unlock is turned off. $1 is the OS-specific auth-method noun (Biometrics / Touch ID / Windows Hello)." + }, + "passkeyTurnedOn": { + "message": "$1 turned on", + "description": "Toast shown after passkey unlock is turned on. $1 is the OS-specific auth-method noun (Biometrics / Touch ID / Windows Hello)." + }, + "passkeyUnlockFailed": { + "message": "$1 unlock failed. Try your password.", + "description": "Generic fallback message when passkey unlock fails. $1 is the OS-specific auth-method noun (Biometrics / Touch ID / Windows Hello)." + }, + "passkeyVerifyingDescription": { + "message": "Use $1 to verify instead of entering your password.", + "description": "Supporting line under the passkey verification heading while WebAuthn runs (e.g. change password). $1 is the OS-specific auth-method noun (Biometrics / Touch ID / Windows Hello)." + }, + "passkeyVerifyingTitle": { + "message": "Confirm with $1", + "description": "Heading while the wallet waits for passkey verification (e.g. change password). $1 is the OS-specific auth-method noun (Biometrics / Touch ID / Windows Hello)." + }, + "password": { + "message": "Password" + }, + "passwordChangedRecently": { + "message": "Your password was changed" + }, + "passwordChangedRecentlyDescription": { + "message": "Enter your new password to stay logged into MetaMask." + }, + "passwordNotLongEnough": { + "message": "Must be at least 8 characters" + }, + "passwordTermsWarning": { + "message": "If I lose this password, MetaMask can’t reset it." + }, + "passwordTermsWarningSocial": { + "message": "If I forget this password, I’ll lose access to my wallet permanently. MetaMask can’t reset it for me." + }, + "passwordToggleHide": { + "message": "Hide password" + }, + "passwordToggleShow": { + "message": "Show password" + }, + "passwordsDontMatch": { + "message": "Passwords don't match" + }, + "paste": { + "message": "Paste" + }, + "pastePrivateKey": { + "message": "Enter your private key string here:", + "description": "For importing an account from a private key" + }, + "payWith": { + "message": "Pay with", + "description": "Label for pay with row showing which token is used to pay transaction fees" + }, + "payWithModalTitle": { + "message": "Pay with", + "description": "Title for the pay with modal that allows users to select which token to pay transaction fees with" + }, + "payee": { + "message": "Payee" + }, + "pending": { + "message": "Pending" + }, + "pendingConfirmationAddNetworkAlertMessage": { + "message": "Updating network will cancel $1 pending transactions from this site.", + "description": "Number of transactions." + }, + "pendingConfirmationSwitchNetworkAlertMessage": { + "message": "Switching network will cancel $1 pending transactions from this site.", + "description": "Number of transactions." + }, + "pendingTransactionAlertMessage": { + "message": "This transaction won't go through until a previous transaction is complete. $1", + "description": "$1 represents the words 'how to cancel or speed up a transaction' in a hyperlink" + }, + "pendingTransactionAlertMessageHyperlink": { + "message": "Learn how to cancel or speed up a transaction.", + "description": "The text for the hyperlink in the pending transaction alert message" + }, + "perSecond": { + "message": "per second" + }, + "percentChange": { + "message": "Percent change" + }, + "permissionFor": { + "message": "Permission for" + }, + "permissionFrom": { + "message": "Permission from" + }, + "permissionRequested": { + "message": "Requested now" + }, + "permissionRequestedForAccounts": { + "message": "Requested now for $1", + "description": "Permission cell status for requested permission including accounts, rendered as AvatarGroup which is $1." + }, + "permissionRevoked": { + "message": "Revoked in this update" + }, + "permissionRevokedForAccounts": { + "message": "Revoked in this update for $1", + "description": "Permission cell status for revoked permission including accounts, rendered as AvatarGroup which is $1." + }, + "permission_accessNamedSnap": { + "message": "Connect to $1.", + "description": "The description for the `wallet_snap` permission. $1 is the human-readable name of the snap." + }, + "permission_accessNetwork": { + "message": "Access the internet.", + "description": "The description of the `endowment:network-access` permission." + }, + "permission_accessNetworkDescription": { + "message": "Allow $1 to access the internet. This can be used to both send and receive data with third-party servers.", + "description": "An extended description of the `endowment:network-access` permission. $1 is the snap name." + }, + "permission_accessSnap": { + "message": "Connect to the $1 snap.", + "description": "The description for the `wallet_snap` permission. $1 is the name of the snap." + }, + "permission_accessSnapDescription": { + "message": "Allow the website or snap to interact with $1.", + "description": "The description for the `wallet_snap_*` permission. $1 is the name of the Snap." + }, + "permission_assets": { + "message": "Display account assets in MetaMask.", + "description": "The description for the `endowment:assets` permission." + }, + "permission_assetsDescription": { + "message": "Allow $1 to provide asset information to the MetaMask client. The assets can be onchain or offchain.", + "description": "An extended description for the `endowment:assets` permission. $1 is the name of the Snap." + }, + "permission_cronjob": { + "message": "Schedule and execute periodic actions.", + "description": "The description for the `snap_cronjob` permission" + }, + "permission_cronjobDescription": { + "message": "Allow $1 to perform actions that run periodically at fixed times, dates, or intervals. This can be used to trigger time-sensitive interactions or notifications.", + "description": "An extended description for the `snap_cronjob` permission. $1 is the snap name." + }, + "permission_dialog": { + "message": "Display dialog windows in MetaMask.", + "description": "The description for the `snap_dialog` permission" + }, + "permission_dialogDescription": { + "message": "Allow $1 to display MetaMask popups with custom text, input field, and buttons to approve or reject an action.\nCan be used to create e.g. alerts, confirmations, and opt-in flows for a snap.", + "description": "An extended description for the `snap_dialog` permission. $1 is the snap name." + }, + "permission_ethereumAccounts": { + "message": "See address, account balance, activity and suggest transactions to approve", + "description": "The description for the `eth_accounts` permission" + }, + "permission_ethereumProvider": { + "message": "Access the Ethereum provider.", + "description": "The description for the `endowment:ethereum-provider` permission" + }, + "permission_ethereumProviderDescription": { + "message": "Allow $1 to communicate with MetaMask directly, in order for it to read data from the blockchain and suggest messages and transactions.", + "description": "An extended description for the `endowment:ethereum-provider` permission. $1 is the snap name." + }, + "permission_getEntropy": { + "message": "Derive arbitrary keys unique to $1.", + "description": "The description for the `snap_getEntropy` permission. $1 is the snap name." + }, + "permission_getEntropyDescription": { + "message": "Allow $1 to derive arbitrary keys unique to $1, without exposing them. These keys are separate from your MetaMask account(s) and not related to your private keys or Secret Recovery Phrase. Other snaps cannot access this information.", + "description": "An extended description for the `snap_getEntropy` permission. $1 is the snap name." + }, + "permission_getLocale": { + "message": "View your preferred language.", + "description": "The description for the `snap_getLocale` permission" + }, + "permission_getLocaleDescription": { + "message": "Let $1 access your preferred language from your MetaMask settings. This can be used to localize and display $1's content using your language.", + "description": "An extended description for the `snap_getLocale` permission. $1 is the snap name." + }, + "permission_getPreferences": { + "message": "See information like your preferred language and fiat currency.", + "description": "The description for the `snap_getPreferences` permission" + }, + "permission_getPreferencesDescription": { + "message": "Let $1 access information like your preferred language and fiat currency in your MetaMask settings. This helps $1 display content tailored to your preferences. ", + "description": "An extended description for the `snap_getPreferences` permission. $1 is the snap name." + }, + "permission_homePage": { + "message": "Display a custom screen", + "description": "The description for the `endowment:page-home` permission" + }, + "permission_homePageDescription": { + "message": "Let $1 display a custom home screen in MetaMask. This can be used for user interfaces, configuration, and dashboards.", + "description": "An extended description for the `endowment:page-home` permission. $1 is the snap name." + }, + "permission_keyring": { + "message": "Allow requests for adding and controlling Ethereum accounts", + "description": "The description for the `endowment:keyring` permission" + }, + "permission_keyringDescription": { + "message": "Let $1 receive requests to add or remove accounts, plus sign and transact on behalf of these accounts.", + "description": "An extended description for the `endowment:keyring` permission. $1 is the snap name." + }, + "permission_lifecycleHooks": { + "message": "Use lifecycle hooks.", + "description": "The description for the `endowment:lifecycle-hooks` permission" + }, + "permission_lifecycleHooksDescription": { + "message": "Allow $1 to use lifecycle hooks to run code at specific times during its lifecycle.", + "description": "An extended description for the `endowment:lifecycle-hooks` permission. $1 is the snap name." + }, + "permission_manageAccounts": { + "message": "Add and control Ethereum accounts", + "description": "The description for `snap_manageAccounts` permission" + }, + "permission_manageAccountsDescription": { + "message": "Allow $1 to add or remove Ethereum accounts, then transact and sign with these accounts.", + "description": "An extended description for the `snap_manageAccounts` permission. $1 is the snap name." + }, + "permission_manageBip32Keys": { + "message": "Manage $1 accounts.", + "description": "The description for the `snap_getBip32Entropy` permission. $1 is a derivation path, e.g. 'm/44'/0'/0' (secp256k1)'." + }, + "permission_manageBip44AndBip32KeysDescription": { + "message": "Allow $1 to manage accounts and assets on the requested network. These accounts are derived and backed up using your secret recovery phrase (without revealing it). With the power to derive keys, $1 can support a variety of blockchain protocols beyond Ethereum (EVMs).", + "description": "An extended description for the `snap_getBip44Entropy` and `snap_getBip44Entropy` permissions. $1 is the snap name." + }, + "permission_manageBip44Keys": { + "message": "Manage $1 accounts.", + "description": "The description for the `snap_getBip44Entropy` permission. $1 is the name of a protocol, e.g. 'Filecoin'." + }, + "permission_manageState": { + "message": "Store and manage its data on your device.", + "description": "The description for the `snap_manageState` permission" + }, + "permission_manageStateDescription": { + "message": "Allow $1 to store, update, and retrieve data securely with encryption. Other snaps cannot access this information.", + "description": "An extended description for the `snap_manageState` permission. $1 is the snap name." + }, + "permission_multichainProvider": { + "message": "Access the Multichain provider.", + "description": "The description for the `endowment:multichain-provider` permission" + }, + "permission_multichainProviderDescription": { + "message": "Allow $1 to communicate with MetaMask directly, in order for it to read data from the blockchain and suggest messages and transactions.", + "description": "An extended description for the `endowment:multichain-provider` permission. $1 is the snap name." + }, + "permission_nameLookup": { + "message": "Provide domain and address lookups.", + "description": "The description for the `endowment:name-lookup` permission." + }, + "permission_nameLookupDescription": { + "message": "Allow the snap to fetch and display address and domain lookups in different parts of the MetaMask UI.", + "description": "An extended description for the `endowment:name-lookup` permission." + }, + "permission_notifications": { + "message": "Show notifications.", + "description": "The description for the `snap_notify` permission" + }, + "permission_notificationsDescription": { + "message": "Allow $1 to display notifications within MetaMask. A short notification text can be triggered by a snap for actionable or time-sensitive information.", + "description": "An extended description for the `snap_notify` permission. $1 is the snap name." + }, + "permission_protocol": { + "message": "Provide protocol data for one or more chains.", + "description": "The description for the `endowment:protocol` permission." + }, + "permission_protocolDescription": { + "message": "Allow $1 to provide MetaMask with protocol data such as gas estimates or token information.", + "description": "An extended description for the `endowment:protocol` permission. $1 is the name of the Snap." + }, + "permission_rpc": { + "message": "Allow $1 to communicate directly with $2.", + "description": "The description for the `endowment:rpc` permission. $1 is 'other snaps' or 'websites', $2 is the snap name." + }, + "permission_rpcDescription": { + "message": "Allow $1 to send messages to $2 and receive a response from $2.", + "description": "An extended description for the `endowment:rpc` permission. $1 is 'other snaps' or 'websites', $2 is the snap name." + }, + "permission_rpcDescriptionOriginList": { + "message": "$1 and $2", + "description": "A list of allowed origins where $2 is the last origin of the list and $1 is the rest of the list separated by ','." + }, + "permission_signatureInsight": { + "message": "Display signature insights modal.", + "description": "The description for the `endowment:signature-insight` permission" + }, + "permission_signatureInsightDescription": { + "message": "Allow $1 to display a modal with insights on any signature request before approval. This can be used for anti-phishing and security solutions.", + "description": "An extended description for the `endowment:signature-insight` permission. $1 is the snap name." + }, + "permission_signatureInsightOrigin": { + "message": "See the origins of websites that initiate a signature request", + "description": "The description for the `signatureOrigin` caveat, to be used with the `endowment:signature-insight` permission" + }, + "permission_signatureInsightOriginDescription": { + "message": "Allow $1 to see the origin (URI) of websites that initiate signature requests. This can be used for anti-phishing and security solutions.", + "description": "An extended description for the `signatureOrigin` caveat, to be used with the `endowment:signature-insight` permission. $1 is the snap name." + }, + "permission_transactionInsight": { + "message": "Fetch and display transaction insights.", + "description": "The description for the `endowment:transaction-insight` permission" + }, + "permission_transactionInsightDescription": { + "message": "Allow $1 to decode transactions and show insights within the MetaMask UI. This can be used for anti-phishing and security solutions.", + "description": "An extended description for the `endowment:transaction-insight` permission. $1 is the snap name." + }, + "permission_transactionInsightOrigin": { + "message": "See the origins of websites that suggest transactions", + "description": "The description for the `transactionOrigin` caveat, to be used with the `endowment:transaction-insight` permission" + }, + "permission_transactionInsightOriginDescription": { + "message": "Allow $1 to see the origin (URI) of websites that suggest transactions. This can be used for anti-phishing and security solutions.", + "description": "An extended description for the `transactionOrigin` caveat, to be used with the `endowment:transaction-insight` permission. $1 is the snap name." + }, + "permission_unknown": { + "message": "Unknown permission: $1", + "description": "$1 is the name of a requested permission that is not recognized." + }, + "permission_viewBip32PublicKeys": { + "message": "View your public key for $1 ($2).", + "description": "The description for the `snap_getBip32PublicKey` permission. $1 is a derivation path, e.g. 'm/44'/0'/0''. $2 is the elliptic curve name, e.g. 'secp256k1'." + }, + "permission_viewBip32PublicKeysDescription": { + "message": "Allow $2 to view your public keys (and addresses) for $1. This does not grant any control of accounts or assets.", + "description": "An extended description for the `snap_getBip32PublicKey` permission. $1 is a derivation path (name). $2 is the snap name." + }, + "permission_viewNamedBip32PublicKeys": { + "message": "View your public key for $1.", + "description": "The description for the `snap_getBip32PublicKey` permission. $1 is a name for the derivation path, e.g., 'Ethereum accounts'." + }, + "permission_walletSwitchEthereumChain": { + "message": "Use your enabled networks", + "description": "The label for the `wallet_switchEthereumChain` permission" + }, + "permission_webAssembly": { + "message": "Support for WebAssembly.", + "description": "The description of the `endowment:webassembly` permission." + }, + "permission_webAssemblyDescription": { + "message": "Allow $1 to access low-level execution environments via WebAssembly.", + "description": "An extended description of the `endowment:webassembly` permission. $1 is the snap name." + }, + "permissions": { + "message": "Permissions" + }, + "permissionsPageEmptyDescription": { + "message": "No permissions detected. Once you grant permissions to a site or install a Snap, the details will appear here." + }, + "permitSimulationChange_approve": { + "message": "Spending cap" + }, + "permitSimulationChange_bidding": { + "message": "You bid" + }, + "permitSimulationChange_listing": { + "message": "You list" + }, + "permitSimulationChange_nft_listing": { + "message": "Listing price" + }, + "permitSimulationChange_receive": { + "message": "You receive" + }, + "permitSimulationChange_revoke2": { + "message": "Revoke" + }, + "permitSimulationChange_transfer": { + "message": "You send" + }, + "permitSimulationDetailInfo": { + "message": "You're giving the spender permission to spend this many tokens from your account." + }, + "permittedChainToastUpdate": { + "message": "$1 has access to $2." + }, + "perps": { + "message": "Perps" + }, + "perps24hVolume": { + "message": "24h Volume" + }, + "perpsActivity": { + "message": "Activity" + }, + "perpsAddExposure": { + "message": "Add exposure" + }, + "perpsAddExposureDescriptionLong": { + "message": "Increase the size of your long position" + }, + "perpsAddExposureDescriptionShort": { + "message": "Increase the size of your short position" + }, + "perpsAddFunds": { + "message": "Add funds" + }, + "perpsAddFundsDescription": { + "message": "Add funds to start trading perpetual contracts with leverage" + }, + "perpsAddMargin": { + "message": "Add margin" + }, + "perpsAddMarginDescription": { + "message": "Increase margin to reduce liquidation risk" + }, + "perpsAddToFavorites": { + "message": "Add to favorites" + }, + "perpsAutoClose": { + "message": "Auto close" + }, + "perpsAvailable": { + "message": "available", + "description": "is the available balance amount" + }, + "perpsAvailableBalance": { + "message": "Available balance: " + }, + "perpsAvailableToAdd": { + "message": "Available to add" + }, + "perpsAvailableToClose": { + "message": "Available to close" + }, + "perpsAvailableToSubtract": { + "message": "Available to subtract" + }, + "perpsAvailableToTrade": { + "message": "Available to trade", + "description": "Label for the available balance that can be used for trading" + }, + "perpsBasicFunctionalityOff": { + "message": "This feature isn't available while basic functionality is turned off." + }, + "perpsBatchCancelFailed": { + "message": "Failed to cancel one or more orders. Try again." + }, + "perpsBatchCloseFailed": { + "message": "Failed to close one or more positions. Try again." + }, + "perpsCancelAllOrders": { + "message": "Cancel all" + }, + "perpsCancelOrder": { + "message": "Cancel order" + }, + "perpsCandleIntervals": { + "message": "Set candle interval" + }, + "perpsCandlePeriodDays": { + "message": "Days" + }, + "perpsCandlePeriodHours": { + "message": "Hours" + }, + "perpsCandlePeriodMinutes": { + "message": "Minutes" + }, + "perpsCloseAll": { + "message": "Close all" + }, + "perpsCloseAmount": { + "message": "Close amount" + }, + "perpsCloseLong": { + "message": "Close long" + }, + "perpsClosePartialMinNotional": { + "message": "Partial closes must be at least $1 in USD value. Increase the close amount or close the full position." + }, + "perpsClosePosition": { + "message": "Close position" + }, + "perpsCloseShort": { + "message": "Close short" + }, + "perpsConfirmCloseLong": { + "message": "Close long" + }, + "perpsConfirmCloseShort": { + "message": "Close short" + }, + "perpsConnectionTimeout": { + "message": "Connection timed out. Please try again." + }, + "perpsContactSupport": { + "message": "Contact support" + }, + "perpsCrossMarginNotSupportedDescription": { + "message": "MetaMask Perps only support trading with isolated margin. You need to first close your cross margin position before you can trade on MetaMask." + }, + "perpsCrossMarginNotSupportedTitle": { + "message": "Cross margin not supported" + }, + "perpsDateToday": { + "message": "Today" + }, + "perpsDateYesterday": { + "message": "Yesterday" + }, + "perpsDepositActivityTitle": { + "message": "Funded Perps" + }, + "perpsDepositErrorBridgeFailed": { + "message": "Bridge failed" + }, + "perpsDepositFailed": { + "message": "Deposit could not be completed. Try again." + }, + "perpsDepositFundsTitle": { + "message": "Deposit funds to Perps" + }, + "perpsDepositTitle": { + "message": "Funded perps account" + }, + "perpsDepositToastErrorDescription": { + "message": "Your funds were not added to Perps. Try again." + }, + "perpsDepositToastErrorTitle": { + "message": "Perps deposit failed" + }, + "perpsDepositToastPendingDescription": { + "message": "Your funds will be available to trade shortly." + }, + "perpsDepositToastPendingTitle": { + "message": "Adding funds to Perps" + }, + "perpsDepositToastSuccessDescription": { + "message": "Funds are ready to trade" + }, + "perpsDepositToastSuccessTitle": { + "message": "Your Perps account was funded" + }, + "perpsDeposits": { + "message": "Deposits" + }, + "perpsDetails": { + "message": "Details" + }, + "perpsDirection": { + "message": "Direction" + }, + "perpsDisclaimer": { + "message": "Perpetual contracts are very risky, and you could suddenly and without notice lose your entire investment. You trade entirely at your own risk. Powered by Hyperliquid. Price chart powered by TradingView." + }, + "perpsEmptyDescription": { + "message": "Trade perpetuals with leverage. Open your first position to get started." + }, + "perpsEntryPrice": { + "message": "Entry price" + }, + "perpsEstSize": { + "message": "Est. size" + }, + "perpsEstimatedPnlAtStopLoss": { + "message": "Est. P&L at stop loss", + "description": "Label for estimated profit or loss when stop loss is hit" + }, + "perpsEstimatedPnlAtTakeProfit": { + "message": "Est. P&L at take profit", + "description": "Label for estimated profit or loss when take profit is hit" + }, + "perpsExploreMarkets": { + "message": "Explore markets" + }, + "perpsFees": { + "message": "Fees" + }, + "perpsFilterAll": { + "message": "All" + }, + "perpsFilterCommodities": { + "message": "Commodities" + }, + "perpsFilterCrypto": { + "message": "Crypto" + }, + "perpsFilterForex": { + "message": "Forex" + }, + "perpsFilterNew": { + "message": "New" + }, + "perpsFilterStocks": { + "message": "Stocks" + }, + "perpsFunding": { + "message": "Funding" + }, + "perpsFundingPayments": { + "message": "Funding payments" + }, + "perpsFundingRate": { + "message": "Funding rate" + }, + "perpsFundingRateTooltip": { + "message": "An hourly fee paid between traders to keep prices in line with the market. If the rate is positive, longs pay shorts. If negative, shorts pay longs." + }, + "perpsGeoBlockedDescription": { + "message": "Perps trading isn't available in your location due to local restrictions or sanctions." + }, + "perpsGeoBlockedTitle": { + "message": "Perps unavailable in your region" + }, + "perpsGiveFeedback": { + "message": "Give us feedback" + }, + "perpsIncludesPnl": { + "message": "includes P&L $1" + }, + "perpsInsufficientMargin": { + "message": "Insufficient margin to place this order." + }, + "perpsLearnBasics": { + "message": "Learn the basics of perps" + }, + "perpsLearnMore": { + "message": "Learn more" + }, + "perpsLeverage": { + "message": "Leverage" + }, + "perpsLimit": { + "message": "Limit" + }, + "perpsLimitPrice": { + "message": "Limit price" + }, + "perpsLimitPriceAboveCurrentPrice": { + "message": "Limit price is above current price" + }, + "perpsLimitPriceBelowCurrentPrice": { + "message": "Limit price is below current price" + }, + "perpsLimitPriceNearLiquidation": { + "message": "Current price is near the estimated liquidation price" + }, + "perpsLiquidationDistance": { + "message": "Liquidation distance" + }, + "perpsLiquidationPrice": { + "message": "Liquidation price" + }, + "perpsLong": { + "message": "Long" + }, + "perpsMargin": { + "message": "Margin" + }, + "perpsMarginRiskWarning": { + "message": "Removing margin moves your liquidation price closer. Ensure you have sufficient buffer." + }, + "perpsMarket": { + "message": "Market" + }, + "perpsMarketNotFound": { + "message": "Market not found" + }, + "perpsMarketNotFoundDescription": { + "message": "The market \"$1\" could not be found.", + "description": "$1 is the market symbol that was not found" + }, + "perpsMarkets": { + "message": "Markets" + }, + "perpsMid": { + "message": "Mid" + }, + "perpsMinOrderSize": { + "message": "Order size must be at least $1", + "description": "$1 is the minimum order size with currency symbol (e.g., '$10'). Shown as submit-button copy when the size input is empty or below the minimum." + }, + "perpsModify": { + "message": "Modify" + }, + "perpsModifyPosition": { + "message": "Modify Position" + }, + "perpsMore": { + "message": "More" + }, + "perpsNetworkError": { + "message": "A network error occurred. Please try again." + }, + "perpsNoMarketsFound": { + "message": "No markets found" + }, + "perpsNoTransactions": { + "message": "No transactions yet" + }, + "perpsOpenInterest": { + "message": "Open interest" + }, + "perpsOpenInterestTooltip": { + "message": "The combined value of all open positions for this perp" + }, + "perpsOpenLong": { + "message": "Open long $1", + "description": "$1 is the asset symbol (e.g., BTC, ETH)" + }, + "perpsOpenOrders": { + "message": "Open Orders" + }, + "perpsOpenShort": { + "message": "Open short $1", + "description": "$1 is the asset symbol (e.g., BTC, ETH)" + }, + "perpsOraclePrice": { + "message": "Oracle price" + }, + "perpsOraclePriceTooltip": { + "message": "The median of external prices reported by validators, used for computing funding rate" + }, + "perpsOrderDate": { + "message": "Date" + }, + "perpsOrderFailed": { + "message": "Order could not be placed. Try again." + }, + "perpsOrderOriginalSize": { + "message": "Original size" + }, + "perpsOrderRejected": { + "message": "Your order was rejected. Try again." + }, + "perpsOrderStatus": { + "message": "Status" + }, + "perpsOrderValue": { + "message": "Order value" + }, + "perpsOrders": { + "message": "Orders" + }, + "perpsPnl": { + "message": "P&L" + }, + "perpsPosition": { + "message": "Position" + }, + "perpsPositions": { + "message": "Positions" + }, + "perpsRateLimitExceeded": { + "message": "Too many requests. Please wait and try again." + }, + "perpsRecentActivity": { + "message": "Recent activity" + }, + "perpsReduceExposure": { + "message": "Reduce exposure" + }, + "perpsReduceExposureDescriptionLong": { + "message": "Decrease the size of your long position" + }, + "perpsReduceExposureDescriptionShort": { + "message": "Decrease the size of your short position" + }, + "perpsReduceOnly": { + "message": "Reduce only" + }, + "perpsRemoveFromFavorites": { + "message": "Remove from favorites" + }, + "perpsRemoveMargin": { + "message": "Remove margin" + }, + "perpsRemoveMarginDescription": { + "message": "Withdraw excess margin from position" + }, + "perpsReturn": { + "message": "Return" + }, + "perpsReversePosition": { + "message": "Reverse position" + }, + "perpsReversePositionDescriptionLong": { + "message": "Flip your long position to a short" + }, + "perpsReversePositionDescriptionShort": { + "message": "Flip your short position to a long" + }, + "perpsSaveChanges": { + "message": "Save changes", + "description": "Button text for saving TP/SL changes" + }, + "perpsSearchMarkets": { + "message": "Search markets" + }, + "perpsSeeAll": { + "message": "See all", + "description": "Accessible label for the arrow button that navigates to the full activity list" + }, + "perpsServiceUnavailable": { + "message": "Service temporarily unavailable. Please try again later." + }, + "perpsShort": { + "message": "Short" + }, + "perpsSize": { + "message": "Size" + }, + "perpsSlippageExceeded": { + "message": "Slippage exceeded. Adjust your slippage tolerance and try again." + }, + "perpsSortByFundingRate": { + "message": "Funding rate" + }, + "perpsSortByHighToLow": { + "message": "High to low" + }, + "perpsSortByLowToHigh": { + "message": "Low to high" + }, + "perpsSortByOpenInterest": { + "message": "Open interest" + }, + "perpsSortByPriceChange": { + "message": "Price change" + }, + "perpsSortByRank": { + "message": "Rank" + }, + "perpsSortBySection": { + "message": "Sort by" + }, + "perpsSortByTitle": { + "message": "Filter" + }, + "perpsSortByVolume": { + "message": "Volume" + }, + "perpsStartNewTrade": { + "message": "Start a new trade" + }, + "perpsStartTrading": { + "message": "Start trading" + }, + "perpsStats": { + "message": "Stats" + }, + "perpsStatusCanceled": { + "message": "Canceled" + }, + "perpsStatusCompleted": { + "message": "Completed" + }, + "perpsStatusFilled": { + "message": "Filled" + }, + "perpsStatusOpen": { + "message": "Open" + }, + "perpsStatusQueued": { + "message": "Queued" + }, + "perpsStatusRejected": { + "message": "Rejected" + }, + "perpsStatusTriggered": { + "message": "Triggered" + }, + "perpsStopLoss": { + "message": "Stop loss", + "description": "Label for stop loss price input" + }, + "perpsStopLossInvalidLiquidationPrice": { + "message": "Stop loss must be $1 liquidation price", + "description": "Validation error when stop loss price is on the wrong side of the liquidation price. $1 is above/below." + }, + "perpsStopLossInvalidPrice": { + "message": "Stop loss must be $1 $2 price", + "description": "Validation error when stop loss price is on the wrong side of the reference price. $1 is above/below, $2 is current/entry." + }, + "perpsSubmitting": { + "message": "Submitting...", + "description": "Loading text shown while an order is being submitted" + }, + "perpsTakeProfit": { + "message": "Take profit", + "description": "Label for take profit price input" + }, + "perpsTakeProfitInvalidPrice": { + "message": "Take profit must be $1 $2 price", + "description": "Validation error when take profit price is on the wrong side of the reference price. $1 is above/below, $2 is current/entry." + }, + "perpsToastCancelOrderFailed": { + "message": "Failed to cancel order", + "description": "Error toast text shown when cancelling a perps limit order fails" + }, + "perpsToastCancelOrderSuccess": { + "message": "Order cancelled", + "description": "Success toast text shown when a perps limit order is successfully cancelled" + }, + "perpsToastCloseFailed": { + "message": "Failed to close position", + "description": "Error toast text shown when closing a perps position fails" + }, + "perpsToastCloseInProgress": { + "message": "Closing position", + "description": "In-progress toast text shown while closing a perps position" + }, + "perpsToastClosePnlSubtitle": { + "message": "Your PnL is $1", + "description": "$1 is the formatted PnL percentage for a closed position" + }, + "perpsToastMarginAddSuccess": { + "message": "Added $1 margin to $2 position", + "description": "$1 is the dollar-prefixed amount (e.g. $100) and $2 is the asset symbol for successful margin addition" + }, + "perpsToastMarginAdjustmentFailed": { + "message": "Margin adjustment failed", + "description": "Error toast text shown when adding or removing margin fails" + }, + "perpsToastMarginAdjustmentFailedDescriptionFallback": { + "message": "Unable to adjust margin. Please try again.", + "description": "Fallback description shown when margin adjustment fails without a usable error message." + }, + "perpsToastMarginRemoveSuccess": { + "message": "Removed $1 margin from $2 position", + "description": "$1 is the dollar-prefixed amount (e.g. $100) and $2 is the asset symbol for successful margin removal" + }, + "perpsToastOrderFailed": { + "message": "Order failed", + "description": "Error toast text shown when placing a perps order fails" + }, + "perpsToastOrderFailedDescriptionFallback": { + "message": "Your funds have been returned to you", + "description": "Fallback order failure subtitle shown when no specific order error is available" + }, + "perpsToastOrderFilled": { + "message": "Order filled", + "description": "Success toast text shown when a perps market order is filled" + }, + "perpsToastOrderPlaced": { + "message": "Order placed", + "description": "Success toast text shown when a perps limit order is accepted" + }, + "perpsToastOrderPlacementSubtitle": { + "message": "$1 $2 $3", + "description": "$1 is the order direction, $2 is the position size amount, and $3 is the asset symbol" + }, + "perpsToastOrderSubmitted": { + "message": "Order submitted", + "description": "In-progress toast text shown while a perps order is being submitted" + }, + "perpsToastPartialCloseFailed": { + "message": "Failed to partially close position", + "description": "Error toast text shown when a perps position is partially closed and fails" + }, + "perpsToastPartialCloseInProgress": { + "message": "Partially closing position", + "description": "In-progress toast text shown while a perps position is being partially closed" + }, + "perpsToastPartialCloseSuccess": { + "message": "Position partially closed", + "description": "Success toast text shown when a perps position is partially closed" + }, + "perpsToastPositionStillActive": { + "message": "Your position is still active", + "description": "Subtitle shown in perps close failure toasts when the position remains open" + }, + "perpsToastReverseFailed": { + "message": "Failed to reverse position", + "description": "Error toast text shown when reversing a perps position fails" + }, + "perpsToastReverseInProgress": { + "message": "Reversing position", + "description": "In-progress toast text shown while reversing a perps position" + }, + "perpsToastReverseSuccess": { + "message": "Position reversed", + "description": "Success toast text shown when a perps position is reversed" + }, + "perpsToastSubmitInProgress": { + "message": "Submitting your trade", + "description": "In-progress toast text shown while a perps trade is being submitted" + }, + "perpsToastTradeSuccess": { + "message": "Position closed", + "description": "Success toast text shown when a perps position is closed" + }, + "perpsToastUpdateFailed": { + "message": "Failed to update TP/SL", + "description": "Error toast text shown when updating TP/SL settings fails" + }, + "perpsToastUpdateInProgress": { + "message": "Updating TP/SL...", + "description": "In-progress toast text shown while updating TP/SL settings" + }, + "perpsToastUpdateSuccess": { + "message": "TP/SL updated successfully", + "description": "Success toast text shown when TP/SL settings are updated" + }, + "perpsTotalBalance": { + "message": "Total balance" + }, + "perpsTradePerps": { + "message": "Trade perps" + }, + "perpsTrades": { + "message": "Trades" + }, + "perpsTransactionTitleOpenedLong": { + "message": "Opened long" + }, + "perpsTriggerPrice": { + "message": "Trigger price" + }, + "perpsTutorialChooseLeverageDescription": { + "message": "Leverage amplifies both gains and losses. With 40x leverage, a 1% price move equals a 40% gain or loss on your margin." + }, + "perpsTutorialChooseLeverageTitle": { + "message": "Choose your leverage" + }, + "perpsTutorialCloseAnytimeDescription": { + "message": "Exit whenever you want. You'll get back your margin, plus profits or minus losses." + }, + "perpsTutorialCloseAnytimeTitle": { + "message": "Close any time" + }, + "perpsTutorialContinue": { + "message": "Continue" + }, + "perpsTutorialGoLongShortDescription": { + "message": "Pick a token to long or short, then set your order size." + }, + "perpsTutorialGoLongShortSubtitle": { + "message": "Go long to profit if the price goes up. Go short to profit if the price goes down." + }, + "perpsTutorialGoLongShortTitle": { + "message": "Go long or short on a token" + }, + "perpsTutorialLetsGo": { + "message": "Let's go" + }, + "perpsTutorialReadyToTradeDescription": { + "message": "Fund your perps account with any token and make your first trade in seconds." + }, + "perpsTutorialReadyToTradeTitle": { + "message": "Ready to trade?" + }, + "perpsTutorialSkip": { + "message": "Skip" + }, + "perpsTutorialWatchLiquidationDescription": { + "message": "You'll lose your entire margin if the token hits your liquidation price. Higher leverage means less room to liquidation." + }, + "perpsTutorialWatchLiquidationTitle": { + "message": "Watch out for liquidation" + }, + "perpsTutorialWhatArePerpsDescription": { + "message": "MetaMask now supports perpetual futures — aka perps — letting you trade on a token's price movement without buying it." + }, + "perpsTutorialWhatArePerpsSubtitle": { + "message": "Here's how it works." + }, + "perpsTutorialWhatArePerpsTitle": { + "message": "What are perps?" + }, + "perpsUnrealizedPnl": { + "message": "Unrealized P&L" + }, + "perpsWatchlist": { + "message": "Watchlist" + }, + "perpsWithdraw": { + "message": "Withdraw" + }, + "perpsWithdrawActivityTitle": { + "message": "Perps withdraw", + "description": "Title shown in the Activity list for a Perps withdraw transaction" + }, + "perpsWithdrawEstimatedTime": { + "message": "Estimated time" + }, + "perpsWithdrawFailed": { + "message": "Withdrawal could not be completed. Try again." + }, + "perpsWithdrawFee": { + "message": "Provider Fee" + }, + "perpsWithdrawFundsTitle": { + "message": "Withdraw" + }, + "perpsWithdrawInsufficient": { + "message": "Amount exceeds your available Perps balance." + }, + "perpsWithdrawInvalidAddress": { + "message": "Enter a valid destination address." + }, + "perpsWithdrawInvalidAmount": { + "message": "Enter a valid amount." + }, + "perpsWithdrawMinNotice": { + "message": "Minimum withdrawal: $1 USDC", + "description": "$1 is the minimum amount (e.g. 1.01)" + }, + "perpsWithdrawMinutesApprox": { + "message": "~$1 min", + "description": "$1 is the estimated number of minutes" + }, + "perpsWithdrawNoAccount": { + "message": "No account selected. Select an account and try again." + }, + "perpsWithdrawPostQuoteToastErrorDescription": { + "message": "Failed to proceed with withdrawal" + }, + "perpsWithdrawPostQuoteToastErrorTitle": { + "message": "Something went wrong" + }, + "perpsWithdrawPostQuoteToastPendingDescription": { + "message": "Available in about 1 minute" + }, + "perpsWithdrawPostQuoteToastPendingTitle": { + "message": "Withdrawal in progress" + }, + "perpsWithdrawPostQuoteToastSuccessDescription": { + "message": "$1 $2 moved to your wallet", + "description": "$1 is the formatted USD amount, e.g. '$20.73'. $2 is the destination token symbol, e.g. 'BNB'." + }, + "perpsWithdrawPostQuoteToastSuccessGenericDescription": { + "message": "Funds moved to your wallet" + }, + "perpsWithdrawPostQuoteToastSuccessTitle": { + "message": "Withdrawal complete" + }, + "perpsWithdrawReceive": { + "message": "Receive" + }, + "perpsWithdrawRoutesError": { + "message": "Could not load withdrawal limits. Try again later." + }, + "perpsWithdrawToastErrorTitle": { + "message": "Withdrawal failed" + }, + "perpsWithdrawToastSuccessDescription": { + "message": "We are processing $1. Funds typically arrive within a few minutes.", + "description": "$1 is the formatted withdrawal amount" + }, + "perpsWithdrawToastSuccessTitle": { + "message": "Withdrawal submitted" + }, + "perpsWithdrawTooltip": { + "message": "MetaMask will swap to your desired token for you. No MetaMask fee applies when you swap to mUSD.", + "description": "Tooltip shown on the Transaction fee row of the Perps Withdraw confirmation" + }, + "perpsYouReceive": { + "message": "You receive" + }, + "perpsYouWillReceive": { + "message": "You'll receive" + }, + "personalAddressDetected": { + "message": "Personal address detected. Input the token contract address." + }, + "pin": { + "message": "Pin", + "description": "Pin label used in multichain account menu" + }, + "pinMetaMask": { + "message": "Pin the MetaMask extension" + }, + "pinMetaMaskDescription": { + "message": "Click on $1 and then $2 to pin it." + }, + "pinToTop": { + "message": "Pin to top" + }, + "pinned": { + "message": "Pinned" + }, + "pleaseConfirm": { + "message": "Please confirm" + }, + "pna25ModalBlogPostLink": { + "message": "blog post." + }, + "pna25ModalBody1": { + "message": "To better serve you, we’re updating our analytics so publicly available data like wallet addresses and related on-chain activity can be associated with actions you take in MetaMask. This helps us improve MetaMask's performance, security, and features in order to make a better, safer wallet." + }, + "pna25ModalBody2": { + "message": "We take privacy seriously. We do not use this information for advertising or sell your data to third parties. You can opt out anytime in Settings." + }, + "pna25ModalBody3": { + "message": "You can read more about what we collect, how we protect it, and why we’re making this change in our latest" + }, + "pna25ModalTitle": { + "message": "Privacy and product updates" + }, + "popularNetworkAddToolTip": { + "message": "Some of these networks rely on third parties. The connections may be less reliable or enable third-parties to track activity.", + "description": "Learn more link" + }, + "popularNetworks": { + "message": "Popular networks" + }, + "preferencesAndDisplay": { + "message": "Preferences and display" + }, + "prev": { + "message": "Prev" + }, + "price": { + "message": "Price" + }, + "priceUnavailable": { + "message": "price unavailable" + }, + "primaryType": { + "message": "Primary type" + }, + "priority": { + "message": "Priority" + }, + "priorityFee": { + "message": "Priority fee" + }, + "priorityFeeProperCase": { + "message": "Priority fee" + }, + "priorityFeeTooHigh": { + "message": "Priority fee must be less than max base fee" + }, + "privacy": { + "message": "Privacy" + }, + "privacyMsg": { + "message": "Privacy Policy" + }, + "privateKey": { + "message": "Private key", + "description": "select this type of file to use to import an account" + }, + "privateKeyCopyWarning": { + "message": "Private key for $1", + "description": "$1 represents the account name" + }, + "privateKeyHidden": { + "message": "The private key is hidden", + "description": "Explains that the private key input is hidden" + }, + "privateKeyShow": { + "message": "Show/Hide the private key input", + "description": "Describes a toggle that is used to show or hide the private key input" + }, + "privateKeyShown": { + "message": "This private key is being shown", + "description": "Explains that the private key input is being shown" + }, + "privateKeyWarning": { + "message": "Warning: Never disclose this key. Anyone with your private keys can steal any assets held in your account." + }, + "privateKeys": { + "message": "Private keys", + "description": "Private keys row label on multichain account details page." + }, + "privateNetwork": { + "message": "Private network" + }, + "proceed": { + "message": "Proceed" + }, + "proceedWithTransaction": { + "message": "I want to proceed anyway" + }, + "productAnnouncements": { + "message": "Product announcements" + }, + "provide": { + "message": "Provide" + }, + "providerFee": { + "message": "Provider fee", + "description": "Label used in the Transaction fee tooltip for the provider (bridge/relay) fee, e.g. in Perps Withdraw" + }, + "publicAddress": { + "message": "Public address" + }, + "pushNotificationLimitOrderFilledDescriptionLong": { + "message": "Your $1 long position is now open.", + "description": "$1 is the asset symbol" + }, + "pushNotificationLimitOrderFilledDescriptionShort": { + "message": "Your $1 short position is now open.", + "description": "$1 is the asset symbol" + }, + "pushNotificationLimitOrderFilledTitle": { + "message": "Limit order filled" + }, + "pushNotificationPositionLiquidatedDescriptionLong": { + "message": "Your $1 long was closed.", + "description": "$1 is the asset symbol" + }, + "pushNotificationPositionLiquidatedDescriptionShort": { + "message": "Your $1 short was closed.", + "description": "$1 is the asset symbol" + }, + "pushNotificationPositionLiquidatedTitle": { + "message": "Position liquidated" + }, + "pushNotificationShieldClaimCreatedDescriptionShort": { + "message": "Your claim has been created" + }, + "pushNotificationShieldClaimCreatedTitle": { + "message": "Claim created" + }, + "pushNotificationShieldClaimStatusUpdatedDescriptionShort": { + "message": "Your claim has been updated" + }, + "pushNotificationShieldClaimStatusUpdatedTitle": { + "message": "Claim updated" + }, + "pushNotificationShieldLearnMoreCta": { + "message": "Learn more" + }, + "pushNotificationShieldSubscriptionCreatedDescriptionShort": { + "message": "Your plan is now active." + }, + "pushNotificationShieldSubscriptionPaymentFailedDescriptionShort": { + "message": "Your plan has been paused due to payment failure." + }, + "pushNotificationShieldSubscriptionTitle": { + "message": "MetaMask Transaction Shield" + }, + "pushNotificationShieldUpdatePaymentCta": { + "message": "Update payment" + }, + "pushNotificationStopLossTriggeredDescriptionLong": { + "message": "Your $1 long closed at your stop loss.", + "description": "$1 is the asset symbol" + }, + "pushNotificationStopLossTriggeredDescriptionShort": { + "message": "Your $1 short closed at your stop loss.", + "description": "$1 is the asset symbol" + }, + "pushNotificationStopLossTriggeredTitle": { + "message": "Stop loss triggered" + }, + "pushNotificationTakeProfitTriggeredDescriptionLong": { + "message": "Your $1 long closed at your take profit.", + "description": "$1 is the asset symbol" + }, + "pushNotificationTakeProfitTriggeredDescriptionShort": { + "message": "Your $1 short closed at your take profit.", + "description": "$1 is the asset symbol" + }, + "pushNotificationTakeProfitTriggeredTitle": { + "message": "Take profit triggered" + }, + "pushPlatformNotificationsFundsReceivedDescription": { + "message": "You received $1 $2" + }, + "pushPlatformNotificationsFundsReceivedDescriptionDefault": { + "message": "You received some tokens" + }, + "pushPlatformNotificationsFundsReceivedTitle": { + "message": "Funds received" + }, + "pushPlatformNotificationsFundsSentDescription": { + "message": "You successfully sent $1 $2" + }, + "pushPlatformNotificationsFundsSentDescriptionDefault": { + "message": "You successfully sent some tokens" + }, + "pushPlatformNotificationsFundsSentTitle": { + "message": "Funds sent" + }, + "pushPlatformNotificationsNftReceivedDescription": { + "message": "You received new NFTs" + }, + "pushPlatformNotificationsNftReceivedTitle": { + "message": "NFT received" + }, + "pushPlatformNotificationsNftSentDescription": { + "message": "You have successfully sent an NFT" + }, + "pushPlatformNotificationsNftSentTitle": { + "message": "NFT sent" + }, + "pushPlatformNotificationsStakingLidoStakeCompletedDescription": { + "message": "Your Lido stake was successful" + }, + "pushPlatformNotificationsStakingLidoStakeCompletedTitle": { + "message": "Stake complete" + }, + "pushPlatformNotificationsStakingLidoStakeReadyToBeWithdrawnDescription": { + "message": "Your Lido stake is now ready to be withdrawn" + }, + "pushPlatformNotificationsStakingLidoStakeReadyToBeWithdrawnTitle": { + "message": "Stake ready for withdrawal" + }, + "pushPlatformNotificationsStakingLidoWithdrawalCompletedDescription": { + "message": "Your Lido withdrawal was successful" + }, + "pushPlatformNotificationsStakingLidoWithdrawalCompletedTitle": { + "message": "Withdrawal completed" + }, + "pushPlatformNotificationsStakingLidoWithdrawalRequestedDescription": { + "message": "Your Lido withdrawal request was submitted" + }, + "pushPlatformNotificationsStakingLidoWithdrawalRequestedTitle": { + "message": "Withdrawal requested" + }, + "pushPlatformNotificationsStakingRocketpoolStakeCompletedDescription": { + "message": "Your RocketPool stake was successful" + }, + "pushPlatformNotificationsStakingRocketpoolStakeCompletedTitle": { + "message": "Stake complete" + }, + "pushPlatformNotificationsStakingRocketpoolUnstakeCompletedDescription": { + "message": "Your RocketPool unstake was successful" + }, + "pushPlatformNotificationsStakingRocketpoolUnstakeCompletedTitle": { + "message": "Unstake complete" + }, + "pushPlatformNotificationsSwapCompletedDescription": { + "message": "Your MetaMask Swap was successful" + }, + "pushPlatformNotificationsSwapCompletedTitle": { + "message": "Swap completed" + }, + "qr": { + "message": "QR", + "description": "Hardware device name" + }, + "qrCameraAccessBlockedBody": { + "message": "To continue, allow camera access in your browser settings.", + "description": "Body text when the browser has persistently blocked camera access for the QR hardware wallet scanner (Chromium, Firefox, etc.)." + }, + "qrCameraAccessBlockedChromiumHint": { + "message": "Click the camera icon in settings and set to \"Allow\"", + "description": "Instruction shown on the Chromium blocked-camera screen for QR scanning." + }, + "qrCameraAccessBlockedFirefoxStep1": { + "message": "Go to Settings → Privacy & Security → Permissions → Camera", + "description": "Firefox camera recovery step 1." + }, + "qrCameraAccessBlockedFirefoxStep2": { + "message": "Look for $1", + "description": "$1 is the truncated moz-extension:// origin for this install." + }, + "qrCameraAccessBlockedFirefoxStep3": { + "message": "Set to \"Allow\"", + "description": "Firefox camera recovery step 3." + }, + "qrCameraAccessBlockedTitle": { + "message": "Camera access blocked", + "description": "Title when camera access is persistently blocked for QR scanning." + }, + "qrCameraAccessNeededBody": { + "message": "MetaMask needs camera access to scan the QR code on your device.", + "description": "Body when the user dismissed the camera permission prompt but it can be requested again." + }, + "qrCameraAccessNeededTitle": { + "message": "Camera access needed", + "description": "Title when the camera permission dialog was dismissed without a choice." + }, + "queued": { + "message": "Queued" + }, + "quizIntroduction": { + "message": "To reveal your Secret Recovery Phrase, you need to correctly answer two questions." + }, + "quotedTotalCost": { + "message": "Total cost: $1" + }, + "rank": { + "message": "Rank" + }, + "rateIncludesMMFee": { + "message": "Includes $1% MM fee." + }, + "readdToken": { + "message": "You can add this token back in the future by going to “Import token” in your accounts options menu." + }, + "receive": { + "message": "Receive" + }, + "receiveCrypto": { + "message": "Receive crypto" + }, + "receiveToken": { + "message": "Receive token", + "description": "Row label on the Transaction Details page for withdrawal flows (e.g. Perps Withdraw), showing which token the user receives" + }, + "received": { + "message": "Received" + }, + "receivedTotal": { + "message": "Received total", + "description": "Row label on the Transaction Details page for withdrawal flows (e.g. Perps Withdraw), showing the net amount received after fees" + }, + "receivingAddress": { + "message": "Receiving address", + "description": "Page title when viewing addresses for receiving funds" + }, + "recipient": { + "message": "Recipient" + }, + "recipientAddressPlaceholderNew": { + "message": "Enter public address (0x) or domain name" + }, + "recipientEditAriaLabel": { + "message": "Edit recipient" + }, + "recipientPlaceholderText": { + "message": "Enter or paste an address or name" + }, + "recoveryPhraseReminderBackupStart": { + "message": "Back up now" + }, + "recoveryPhraseReminderConfirm": { + "message": "Remind me later" + }, + "recoveryPhraseReminderSubText": { + "message": "If you don’t back up your wallet, you’ll lose access to your funds if you get locked out of the app or get a new device." + }, + "recoveryPhraseReminderTitle": { + "message": "Protect your wallet" + }, + "redeemer": { + "message": "Redeemer" + }, + "redeposit": { + "message": "Redeposit" + }, + "refreshList": { + "message": "Refresh list" + }, + "reject": { + "message": "Reject" + }, + "rejectAll": { + "message": "Reject all" + }, + "rejected": { + "message": "Rejected" + }, + "remove": { + "message": "Remove" + }, + "removeAccount": { + "message": "Remove account" + }, + "removeAccountModalBannerDescription": { + "message": "Make sure you have the Secret Recovery Phrase or private key for this account before removing.", + "description": "Make sure you have the Secret Recovery Phrase or private key for this account before removing." + }, + "removeAccountModalBannerTitle": { + "message": "This account will be removed from MetaMask.", + "description": "Title of a banner alert used on account remove modal." + }, + "removeAll": { + "message": "Remove all" + }, + "removeKeyringSnap": { + "message": "Removing this Snap removes these accounts from MetaMask:" + }, + "removeKeyringSnapToolTip": { + "message": "The snap controls the accounts, and by removing it, the accounts will be removed from MetaMask, too, but they will remain in the blockchain." + }, + "removeNFT": { + "message": "Remove NFT" + }, + "removeNftErrorMessage": { + "message": "We could not remove this NFT." + }, + "removeNftMessage": { + "message": "NFT was successfully removed!" + }, + "removeSnap": { + "message": "Remove Snap" + }, + "removeSnapAccountDescription": { + "message": "If you proceed, this account will no longer be available in MetaMask." + }, + "removeSnapAccountTitle": { + "message": "Remove account" + }, + "removeSnapConfirmation": { + "message": "Are you sure you want to remove $1?", + "description": "$1 represents the name of the snap" + }, + "removeSnapDescription": { + "message": "This action will delete the snap, its data and revoke your given permissions." + }, + "rename": { + "message": "Rename", + "description": "Multichain account menu item for triggering account rename action modal" + }, + "replace": { + "message": "replace" + }, + "reportIssue": { + "message": "Report an issue" + }, + "reportThisError": { + "message": "Report this error" + }, + "requestFrom": { + "message": "Request from" + }, + "requestFromInfo": { + "message": "This is the site asking for your signature." + }, + "requestFromInfoSnap": { + "message": "This is the Snap asking for your signature." + }, + "requestFromTransactionDescription": { + "message": "This is the site asking for your confirmation." + }, + "requestingFor": { + "message": "Requesting for" + }, + "requestingForAccount": { + "message": "Requesting for $1", + "description": "Name of Account" + }, + "requestingForNetwork": { + "message": "Requesting for $1", + "description": "Name of Network" + }, + "required": { + "message": "Required" + }, + "requiredToken": { + "message": "Required token", + "description": "Label for the required token row showing the token and amount needed by the transaction" + }, + "reset": { + "message": "Reset" + }, + "resetWallet": { + "message": "Reset your wallet" + }, + "resetWalletBoldTextOne": { + "message": "permanently" + }, + "resetWalletBoldTextTwo": { + "message": "It will not impact the assets within your wallet." + }, + "resetWalletButton": { + "message": "Yes, reset wallet" + }, + "resetWalletDescriptionOne": { + "message": "We can’t recover your Secret Recovery Phrase. You can reset the wallet to create a new one and import your accounts using private keys." + }, + "resetWalletDescriptionTwo": { + "message": "Resetting will $1 delete all wallet data in MetaMask on this device. $2", + "description": "$1 is the bolded text 'permanently' and $2 is the bolded text 'It will not impact the assets within your wallet.'" + }, + "resetWalletTitle": { + "message": "Don’t have your Secret Recovery Phrase?" + }, + "resolutionProtocol": { + "message": "Address resolved via $1", + "description": "$1 is the protocol name." + }, + "restartMetamask": { + "message": "Restart MetaMask" + }, + "restore": { + "message": "Restore" + }, + "restoreUserData": { + "message": "Restore user data" + }, + "restoreWalletDescription": { + "message": "Enter your $1. By importing the wallet, you will erase your current wallet data from this device. This can’t be undone.", + "description": "$1 is the Secret Recovery Phrase" + }, + "resultPageError": { + "message": "Error" + }, + "resultPageErrorDefaultMessage": { + "message": "The operation failed." + }, + "resultPageSuccess": { + "message": "Success" + }, + "resultPageSuccessDefaultMessage": { + "message": "The operation completed successfully." + }, + "retryTransaction": { + "message": "Retry transaction" + }, + "reusedTokenNameWarning": { + "message": "A token here reuses a symbol from another token you watch, this can be confusing or deceptive." + }, + "revealMultichainPrivateKeysBannerDescription": { + "message": "This key grants full control of your account for the associated chain. $1", + "description": "Description for the banner warning users not to share their private key" + }, + "revealMultichainPrivateKeysBannerTitle": { + "message": "Don’t share your private key", + "description": "Title for the banner warning users not to share their private key" + }, + "revealSecretRecoveryPhrase": { + "message": "Back up Secret Recovery Phrase" + }, + "revealSecretRecoveryPhraseSettings": { + "message": "Reveal Secret Recovery Phrase" + }, + "revealSeedWordsDescription1": { + "message": "Your $1 gives full access to your wallet, funds, and accounts.", + "description": "This is a sentence consisting of link using 'revealSeedWordsSRPName' as $1." + }, + "revealSeedWordsQR": { + "message": "QR" + }, + "revealSeedWordsSRPName": { + "message": "Secret Recovery Phrase" + }, + "revealSeedWordsText": { + "message": "Text" + }, + "revealSeedWordsWarning": { + "message": "Make sure nobody is looking at your screen. MetaMask Support will never ask for this." + }, + "revealSensitiveContent": { + "message": "Reveal sensitive content" + }, + "review": { + "message": "Review" + }, + "reviewAlert": { + "message": "Review alert" + }, + "reviewAlerts": { + "message": "Review alerts" + }, + "reviewPendingTransactions": { + "message": "Review pending transactions" + }, + "reviewPermissions": { + "message": "Review permissions" + }, + "revokePermission": { + "message": "Revoke permission" + }, + "revokePermissionTitle": { + "message": "Remove $1 permission", + "description": "The token symbol that is being revoked" + }, + "revokeSimulationDetailsDesc": { + "message": "You're removing someone's permission to spend tokens from your account." + }, + "revokeTokenApprovals": { + "message": "Revoke token approvals" + }, + "reward": { + "message": "Reward" + }, + "rewardsAuthFailDescription": { + "message": "An unknown error occurred while authenticating this account with the rewards program. Please try again later." + }, + "rewardsAuthFailTitle": { + "message": "Unknown error." + }, + "rewardsErrorMessagesAccountAlreadyRegistered": { + "message": "This account is already registered with another Rewards profile. Please switch account to continue." + }, + "rewardsErrorMessagesFailedToClaimReward": { + "message": "Failed to claim reward. Please try again shortly." + }, + "rewardsErrorMessagesRequestRejected": { + "message": "You rejected the request." + }, + "rewardsErrorMessagesServiceNotAvailable": { + "message": "Service is not available at the moment. Please try again shortly." + }, + "rewardsErrorMessagesSomethingWentWrong": { + "message": "Something went wrong. Please try again shortly." + }, + "rewardsLinkAccount": { + "message": "Add account" + }, + "rewardsLinkAccountError": { + "message": "Failed to add account" + }, + "rewardsOnboardingCheckingRegion": { + "message": "Checking region..." + }, + "rewardsOnboardingDescription": { + "message": "Win prizes, claim perks, and discover more ways to earn—just by using MetaMask." + }, + "rewardsOnboardingIntroGeoCheckFailedDescription": { + "message": "We cannot determine if your country allows opting into the rewards program. Please check your connection and try again." + }, + "rewardsOnboardingIntroGeoCheckFailedTitle": { + "message": "Cannot determine opt-in eligibility" + }, + "rewardsOnboardingIntroGeoCheckRetry": { + "message": "Retry" + }, + "rewardsOnboardingIntroRewardsAuthFailRetry": { + "message": "Retry" + }, + "rewardsOnboardingIntroUnsupportedRegionDescription": { + "message": "Rewards are not supported in your region yet. We are working on expanding access, so check back later." + }, + "rewardsOnboardingIntroUnsupportedRegionTitle": { + "message": "Region not supported" + }, + "rewardsOnboardingLegalDisclaimer": { + "message": "By joining, you agree to our $1. We'll opt in all accounts on this device and track on-chain activity to reward you automatically. $2", + "description": "$1 is the Terms and Privacy Notice link, $2 is the Learn more link" + }, + "rewardsOnboardingLegalDisclaimerLearnMoreLink": { + "message": "Learn more" + }, + "rewardsOnboardingLegalDisclaimerTermsLink": { + "message": "Terms and Privacy Notice" + }, + "rewardsOnboardingOptInError": { + "message": "Opt-in failed" + }, + "rewardsOnboardingReferralCodeError": { + "message": "Invalid referral code" + }, + "rewardsOnboardingReferralCodePlaceholder": { + "message": "Referral code (optional)" + }, + "rewardsOnboardingReferralCodeUnknownError": { + "message": "Referral code couldn’t be validated." + }, + "rewardsOnboardingReferralCodeUnknownErrorDescription": { + "message": "Check your connection and try again." + }, + "rewardsOnboardingReferralHide": { + "message": "Hide code" + }, + "rewardsOnboardingReferralPrompt": { + "message": "Have a referral code?" + }, + "rewardsOnboardingSignUp": { + "message": "Join Rewards" + }, + "rewardsOnboardingSignUpLoading": { + "message": "Joining..." + }, + "rewardsOnboardingTitle": { + "message": "Start earning rewards" + }, + "rewardsOptInVerifyingReferralCode": { + "message": "Verifying referral code...", + "description": "Text shown while verifying a referral code during rewards opt-in" + }, + "rewardsPointsBalance": { + "message": "$1 points", + "description": "$1 is the formatted number of rewards points" + }, + "rewardsPointsBalance_couldntLoad": { + "message": "Couldn't load", + "description": "Text shown when points balance couldn't be loaded" + }, + "rewardsPointsIcon": { + "message": "Rewards points", + "description": "Alt text for the rewards points icon" + }, + "rewardsQRCodeDescription": { + "message": "To access MetaMask Rewards, scan the QR code with your mobile device." + }, + "rewardsQRCodeTitle": { + "message": "Continue on mobile" + }, + "rewardsSignInFailed": { + "message": "Failed to sign in", + "description": "Text shown when the opt-in sign attempt failed, with a retry affordance" + }, + "rewardsSignInToViewPoints": { + "message": "Sign in to view points", + "description": "Text shown when user needs to sign in to view their rewards points" + }, + "rewardsSignUp": { + "message": "Sign up for Rewards" + }, + "rewardsSigningIn": { + "message": "Signing in...", + "description": "Text shown while the user is signing in to view their rewards points" + }, + "rpcNameOptional": { + "message": "RPC Name (Optional)" + }, + "rpcUrl": { + "message": "RPC URL" + }, + "safeTransferFrom": { + "message": "Safe transfer from" + }, + "save": { + "message": "Save" + }, + "scanInstructions": { + "message": "Place the QR code in front of your camera" + }, + "scanQrCode": { + "message": "Scan QR code" + }, + "scrollDown": { + "message": "Scroll down" + }, + "search": { + "message": "Search" + }, + "searchAnAcccountOrContact": { + "message": "Search an account or contact" + }, + "searchForAnAssetToSend": { + "message": "Search for an asset to send" + }, + "searchNetworks": { + "message": "Search networks" + }, + "searchNfts": { + "message": "Search NFTs" + }, + "searchTokens": { + "message": "Search tokens" + }, + "searchTokensByNameOrAddress": { + "message": "Search tokens by name or address" + }, + "searchYourAccounts": { + "message": "Search your accounts", + "description": "Placeholder in a searchbar. Used on multichain account list page." + }, + "second": { + "message": "sec" + }, + "secretRecoveryPhrase": { + "message": "Secret Recovery Phrase" + }, + "secretRecoveryPhrasePlusNumber": { + "message": "Secret Recovery Phrase $1", + "description": "The $1 is the order of the Secret Recovery Phrase" + }, + "secureWallet": { + "message": "Secure wallet" + }, + "secureWalletRemindLaterButton": { + "message": "Remind me later" + }, + "security": { + "message": "Security" + }, + "securityAlert": { + "message": "Security alert from $1 and $2" + }, + "securityAlerts": { + "message": "Security alerts" + }, + "securityAlertsDescriptionV2": { + "message": "This feature alerts you to malicious activity by actively reviewing transaction and signature requests. $1" + }, + "securityAndPassword": { + "message": "Security and password" + }, + "securityAndPrivacy": { + "message": "Security and privacy" + }, + "securityChangePasswordToastError": { + "message": "Password couldn’t be changed. Please try again." + }, + "securityChangePasswordToastPasskeyRenewalFailed": { + "message": "New password saved, but $1 unlock couldn't be turned on.", + "description": "Toast when passkey vault key renewal fails after the new password was already applied. $1 is the OS-specific auth-method noun (Biometrics / Touch ID / Windows Hello)." + }, + "securityChangePasswordToastSuccess": { + "message": "New password saved" + }, + "securityDefaultSettingsSocialLogin": { + "message": "Security & privacy" + }, + "securityDescription": { + "message": "Reduce your chances of joining unsafe networks and protect your accounts" + }, + "securityMessageLinkForNetworks": { + "message": "network scams and security risks" + }, + "securityProviderPoweredBy": { + "message": "Powered by $1", + "description": "The security provider that is providing data" + }, + "securitySocialLoginDefaultSettingsDescription": { + "message": "Reduce your chances of joining unsafe networks and protect your accounts and data" + }, + "securitySocialLoginEnabled": { + "message": "Enabled" + }, + "securitySocialLoginEnabledDescription": { + "message": "Use your $1 login and MetaMask password to recover your account and Secret Recovery Phrases.", + "description": "The $1 is the text 'Google' or 'Apple'" + }, + "securitySocialLoginLabel": { + "message": "$1 RECOVERY", + "description": "The $1 is the text 'Google' or 'Apple'" + }, + "securitySrpLabel": { + "message": "SECRET RECOVERY PHRASES" + }, + "seeAllPermissions": { + "message": "See all permissions", + "description": "Used for revealing more content (e.g. permission list, etc.)" + }, + "seeDetails": { + "message": "See details" + }, + "seedPhraseReq": { + "message": "Secret Recovery Phrases contain 12, 15, 18, 21, or 24 words" + }, + "seedPhraseReviewDetails": { + "message": "This is your $1. Write it down in the correct order and keep it safe. If someone has your Secret Recovery Phrase, they can access your wallet. Don’t share it with anyone, ever.", + "description": "The $1 is the bolded text 'Secret Recovery Phrase'" + }, + "seedPhraseReviewTitle": { + "message": "Save your Secret Recovery Phrase" + }, + "seedPhraseReviewTitleSettings": { + "message": "Save Secret Recovery Phrase" + }, + "select": { + "message": "Select" + }, + "selectAccountToConnect": { + "message": "Select an account to connect" + }, + "selectAll": { + "message": "Select all" + }, + "selectAnAccount": { + "message": "Select an account" + }, + "selectAnAccountAlreadyConnected": { + "message": "This account has already been connected to MetaMask" + }, + "selectEnableDisplayMediaPrivacyPreference": { + "message": "Turn on Display NFT Media" + }, + "selectHdPath": { + "message": "Select HD path" + }, + "selectNFTPrivacyPreference": { + "message": "Enable NFT Autodetection" + }, + "selectNetworkToFilter": { + "message": "Select network to filter" + }, + "selectPathHelp": { + "message": "If you don't see the accounts you expect, try switching the HD path or current selected network." + }, + "selectRecipient": { + "message": "Select recipient" + }, + "selectRpcUrl": { + "message": "Select RPC URL" + }, + "selectSecretRecoveryPhrase": { + "message": "Select Secret Recovery Phrase" + }, + "selectType": { + "message": "Select type" + }, + "selectedAccountMismatch": { + "message": "Different account selected" + }, + "send": { + "message": "Send" + }, + "sendBugReport": { + "message": "Send us a bug report." + }, + "sendSelectReceiveAsset": { + "message": "Select asset to receive" + }, + "sendSelectSendAsset": { + "message": "Select asset to send" + }, + "sendingAsset": { + "message": "Sending $1" + }, + "sendingDisabled": { + "message": "Sending of ERC-1155 NFT assets is not yet supported." + }, + "sendingNativeAsset": { + "message": "Sending $1", + "description": "$1 represents the native currency symbol for the current network (e.g. ETH or BNB)" + }, + "sent": { + "message": "Sent" + }, + "sentSpecifiedTokens": { + "message": "Sent $1", + "description": "Symbol of the specified token" + }, + "sentTokenAsToken": { + "message": "Sent $1 as $2", + "description": "Used in the transaction display list to describe a swap and send. $1 and $2 are the symbols of tokens in involved in the swap." + }, + "sepolia": { + "message": "Sepolia test network" + }, + "setApprovalForAll": { + "message": "Set approval for all" + }, + "setApprovalForAllRedesignedTitle": { + "message": "Withdrawal request" + }, + "setApprovalForAllTitle": { + "message": "Approve $1 with no spend limit", + "description": "The token symbol that is being approved" + }, + "setUp": { + "message": "Set up", + "description": "Action label for Smart Accounts. Used on multichain details page." + }, + "setUpPasskey": { + "message": "Set up $1", + "description": "Action label for turning on passkey unlock. $1 is the OS-specific auth-method noun (Biometrics / Touch ID / Windows Hello)." + }, + "settingAddSnapAccount": { + "message": "Add account Snap" + }, + "settingUpPasskey": { + "message": "Setting up $1", + "description": "Heading on the onboarding passkey setup screen while enrollment is in progress. $1 is the OS-specific auth-method noun (Biometrics / Touch ID / Windows Hello)." + }, + "settings": { + "message": "Settings" + }, + "settingsSearchCantFindSetting": { + "message": "Can't find a setting? $1", + "description": "$1 is a link to request a setting" + }, + "settingsSearchMatchingNotFound": { + "message": "No matching results found." + }, + "settingsSearchRequestHere": { + "message": "Request here" + }, + "shieldClaim": { + "message": "Submit a claim" + }, + "shieldClaimChainNotSupported": { + "message": "This chain is not supported." + }, + "shieldClaimDeleteDraft": { + "message": "Delete draft" + }, + "shieldClaimDeleteDraftDescription": { + "message": "Your claim draft has been deleted." + }, + "shieldClaimDeletedDraft": { + "message": "Draft deleted" + }, + "shieldClaimDescription": { + "message": "Description of case" + }, + "shieldClaimDescriptionPlaceholder": { + "message": "Provide a brief summary of the incident" + }, + "shieldClaimDetails": { + "message": "You may file a single claim per incident within $1 days of the incident. $2", + "description": "The $1 is the number of days and $2 is a link to the full coverage policy" + }, + "shieldClaimDetailsViewClaims": { + "message": "This claim is being reviewed by our team. We will notify you when it has been approved by email. View the full coverage policy $1.", + "description": "The $1 is a link to the full coverage policy" + }, + "shieldClaimDraftDeleteFailed": { + "message": "Deleting draft failed" + }, + "shieldClaimDraftDeleteFailedDescription": { + "message": "Unable to delete your claim draft. Please try again." + }, + "shieldClaimDraftSaveFailed": { + "message": "Saving draft failed" + }, + "shieldClaimDraftSaveFailedDescription": { + "message": "Unable to save your claim draft. Please try again." + }, + "shieldClaimDraftSaved": { + "message": "Draft saved" + }, + "shieldClaimDraftSavedDescription": { + "message": "Your claim draft has been saved." + }, + "shieldClaimDuplicateClaimExists": { + "message": "A claim has already been submitted for this transaction hash." + }, + "shieldClaimEmail": { + "message": "Email" + }, + "shieldClaimEmailHelpText": { + "message": "We'll use this email to keep you informed with updates." + }, + "shieldClaimFileErrorCountExceeded": { + "message": "Number of files exceeds the maximum allowed count." + }, + "shieldClaimFileErrorInvalidType": { + "message": "Invalid file type." + }, + "shieldClaimFileErrorSizeExceeded": { + "message": "Total file size exceeds the maximum allowed size." + }, + "shieldClaimFileUploader": { + "message": "Image upload" + }, + "shieldClaimFileUploaderAcceptText": { + "message": "PDF, PNG, JPG (Max $1MB)", + "description": "The $1 is the maximum file size in MB" + }, + "shieldClaimFileUploaderHelpText": { + "message": "If you have any additional evidence, please upload it here." + }, + "shieldClaimGroupActive": { + "message": "Active claims" + }, + "shieldClaimGroupActiveNote": { + "message": "Note: You can have a maximum of $1 drafts and $2 active claims at a single time.", + "description": "The $1 is the maximum number of drafts and $2 is the maximum number of active claims" + }, + "shieldClaimGroupCompleted": { + "message": "Completed claims" + }, + "shieldClaimGroupDrafts": { + "message": "Drafts" + }, + "shieldClaimGroupNoCompletedClaims": { + "message": "No completed claims" + }, + "shieldClaimGroupNoCompletedClaimsDescription": { + "message": "Track your completed claims here." + }, + "shieldClaimGroupNoOpenClaims": { + "message": "No open claims" + }, + "shieldClaimGroupNoOpenClaimsDescription": { + "message": "Track the status of your claims here." + }, + "shieldClaimGroupRejected": { + "message": "Rejected claims" + }, + "shieldClaimImpactedTxHash": { + "message": "Impacted transaction hash" + }, + "shieldClaimImpactedTxHashHelpText": { + "message": "Also known as TXID, hash ID, or transaction ID." + }, + "shieldClaimImpactedTxHashHelpTextLink": { + "message": "Need help finding it?" + }, + "shieldClaimImpactedTxHashNotEligible": { + "message": "This transaction is not done within MetaMask, hence it is not eligible for claims" + }, + "shieldClaimImpactedWalletAddress": { + "message": "Impacted wallet address" + }, + "shieldClaimIncidentDetails": { + "message": "Incident details" + }, + "shieldClaimInvalidChainId": { + "message": "Please enter a valid chain ID" + }, + "shieldClaimInvalidEmail": { + "message": "Please enter a valid email address" + }, + "shieldClaimInvalidRequired": { + "message": "This field is required" + }, + "shieldClaimInvalidTxHash": { + "message": "Please enter a valid transaction hash" + }, + "shieldClaimInvalidWalletAddress": { + "message": "Please enter a valid wallet address" + }, + "shieldClaimMaxClaimsLimitExceeded": { + "message": "You have reached the maximum limit of open claims. Please contact support if you need to submit additional claims." + }, + "shieldClaimMaxDraftsReached": { + "message": "You have reached the maximum number of drafts. Please delete a draft to save a new one." + }, + "shieldClaimNetwork": { + "message": "Select network" + }, + "shieldClaimPersonalDetails": { + "message": "Personal details" + }, + "shieldClaimReimbursementWalletAddress": { + "message": "Wallet address for reimbursement" + }, + "shieldClaimReimbursementWalletAddressHelpText": { + "message": "Please ensure this is not a compromised wallet." + }, + "shieldClaimSameWalletAddressesError": { + "message": "Impacted wallet address and reimbursement wallet address must be different." + }, + "shieldClaimSaveAsDraft": { + "message": "Save as draft" + }, + "shieldClaimSelectAccount": { + "message": "Select an account" + }, + "shieldClaimSelectNetwork": { + "message": "Select a network" + }, + "shieldClaimSignatureCoverageNotCovered": { + "message": "Signature coverage not found for the given transaction hash." + }, + "shieldClaimSubmissionWindowExpired": { + "message": "Submission window expired. Claims must be filed within $1 days of the incident.", + "description": "The $1 is the number of days" + }, + "shieldClaimSubmit": { + "message": "Submit a claim" + }, + "shieldClaimSubmitError": { + "message": "Claim submission failed" + }, + "shieldClaimSubmitSuccess": { + "message": "Claim submission received" + }, + "shieldClaimSubmitSuccessDescription": { + "message": "Your claim has been submitted. We'll review it and provide updates by email." + }, + "shieldClaimTransactionNotFound": { + "message": "Transaction not found on chain." + }, + "shieldClaimTransactionNotFromWalletAddress": { + "message": "Transaction hash not from wallet address." + }, + "shieldClaimTransactionNotSuccessful": { + "message": "Transaction not successful on chain." + }, + "shieldClaimViewGuidelines": { + "message": "View guide" + }, + "shieldClaimWalletOwnershipValidationFailed": { + "message": "Wallet ownership validation failed." + }, + "shieldClaimsLastEdited": { + "message": "Last edited: $1", + "description": "The $1 is the date" + }, + "shieldClaimsListTitle": { + "message": "Claims" + }, + "shieldClaimsNumber": { + "message": "Claim #$1", + "description": "The $1 is the claim number" + }, + "shieldClaimsTabHistory": { + "message": "Claim history" + }, + "shieldClaimsTabPending": { + "message": "Claims" + }, + "shieldConfirmMembership": { + "message": "Confirm plan" + }, + "shieldCoverageAlertCovered": { + "message": "You're protected up to $2 with MetaMask Transaction Shield. $1." + }, + "shieldCoverageAlertHighRiskTransaction": { + "message": "This is a high risk transaction, so it isn't protected by MetaMask Transaction Shield. $1." + }, + "shieldCoverageAlertMessageChainNotSupported": { + "message": "This chain is not supported, so it isn't protected by MetaMask Transaction Shield. $1" + }, + "shieldCoverageAlertMessageLearnHowCoverageWorks": { + "message": "See what's covered" + }, + "shieldCoverageAlertMessagePaused": { + "message": "There was an issue with your MetaMask Transaction Shield plan payment. Please update your payment method to resume coverage." + }, + "shieldCoverageAlertMessagePausedAcknowledgeButton": { + "message": "Update payment method" + }, + "shieldCoverageAlertMessagePotentialRisks": { + "message": "This transaction has potential risks, so it isn't protected by MetaMask Transaction Shield. $1" + }, + "shieldCoverageAlertMessageSignatureNotSupported": { + "message": "This signature isn't supported, so it isn't protected by MetaMask Transaction Shield. $1" + }, + "shieldCoverageAlertMessageTitle": { + "message": "This transaction isn't covered" + }, + "shieldCoverageAlertMessageTitleCovered": { + "message": "This transaction is covered" + }, + "shieldCoverageAlertMessageTitlePaused": { + "message": "Transaction Shield paused" + }, + "shieldCoverageAlertMessageTitleSignatureRequest": { + "message": "This signature request isn't covered" + }, + "shieldCoverageAlertMessageTitleSignatureRequestCovered": { + "message": "This signature request is covered" + }, + "shieldCoverageAlertMessageTokenTrustSignalWarning": { + "message": "This token shows strong signs of malicious behavior. Continuing may result in loss of funds. $1." + }, + "shieldCoverageAlertMessageTxTypeNotSupported": { + "message": "This transaction type is not supported, so it isn't protected by MetaMask Transaction Shield. $1" + }, + "shieldCoverageAlertMessageUnknown": { + "message": "This request can't be verified, so it isn't protected by MetaMask Transaction Shield. $1." + }, + "shieldCoverageEnding": { + "message": "Shield coverage ends soon" + }, + "shieldCoverageEndingAction": { + "message": "Renew" + }, + "shieldCoverageEndingDescription": { + "message": "Plan ends on $1.", + "description": "The $1 is the date" + }, + "shieldCovered": { + "message": "Covered" + }, + "shieldEntryModalGetStarted": { + "message": "Start 14-day free trial" + }, + "shieldEntryModalSubtitleA": { + "message": "Transaction Shield provides protection up to $1 and 24/7 priority support.", + "description": "The $1 is the amount of transaction protection" + }, + "shieldEntryModalSubtitleB": { + "message": "Transact with added confidence with up to $1 in protection and 24/7 priority support.", + "description": "The $1 is the amount of transaction protection" + }, + "shieldEntryModalTitleA": { + "message": "Transact with added confidence" + }, + "shieldEntryModalTitleB": { + "message": "Introducing Transaction Shield" + }, + "shieldErrorPayerAddressAlreadyUsed": { + "message": "This address is already linked to another account. Use a different address to subscribe." + }, + "shieldEstimatedChangesMonthlyTooltipText": { + "message": "Authorize $1/month for 12 months ($2 total). You'll be billed monthly, not the full amount now." + }, + "shieldFooterAgreement": { + "message": "By continuing, I agree to Transaction Shield $1" + }, + "shieldManagePlan": { + "message": "Manage plan" + }, + "shieldNotCovered": { + "message": "Not covered" + }, + "shieldPastPlansTitle": { + "message": "Past details" + }, + "shieldPaused": { + "message": "Paused" + }, + "shieldPaymentPaused": { + "message": "Transaction Shield paused" + }, + "shieldPaymentPausedActionCardPayment": { + "message": "Update" + }, + "shieldPaymentPausedActionCryptoPayment": { + "message": "Update" + }, + "shieldPaymentPausedActionUnexpectedError": { + "message": "View" + }, + "shieldPaymentPausedDescriptionCardPayment": { + "message": "Card payment failed." + }, + "shieldPaymentPausedDescriptionCryptoPayment": { + "message": "Insufficient token balance." + }, + "shieldPaymentPausedDescriptionUnexpectedError": { + "message": "An unexpected error occurred." + }, + "shieldPlanAnnual": { + "message": "Annual" + }, + "shieldPlanAnnualPrice": { + "message": "$1/year", + "description": "The $1 is the price of the annual plan" + }, + "shieldPlanBillingDate": { + "message": "Billing date" + }, + "shieldPlanCard": { + "message": "Card" + }, + "shieldPlanCryptoMonthlyNote": { + "message": "Total monthly fees pre-approved for a year" + }, + "shieldPlanDetails": { + "message": "What you get" + }, + "shieldPlanDetails1": { + "message": "Free $1-day trial", + "description": "The $1 is the number of days" + }, + "shieldPlanDetails2": { + "message": "Up to $1 in transaction protection", + "description": "The $1 is the amount of transaction protection" + }, + "shieldPlanDetails3": { + "message": "24/7 access to priority live chat support" + }, + "shieldPlanDetailsRewards": { + "message": "Earn $1 points per $2", + "description": "The $1 is the number of points and $2 plan interval (month or year)" + }, + "shieldPlanDetailsRewardsDescription": { + "message": "This offer is only available during Rewards seasons. Points are given when free trial ends to users signed up for Rewards." + }, + "shieldPlanDetailsRewardsTitle": { + "message": "Rewards" + }, + "shieldPlanErrorText": { + "message": "Couldn’t connect to Transaction Shield" + }, + "shieldPlanFooterNoteMonthly": { + "message": "Billed monthly, cancel anytime" + }, + "shieldPlanFooterNoteYearly": { + "message": "Billed yearly, cancel anytime" + }, + "shieldPlanMonthly": { + "message": "Monthly" + }, + "shieldPlanMonthlyPrice": { + "message": "$1/month", + "description": "The $1 is the price of the monthly plan" + }, + "shieldPlanPayWith": { + "message": "Pay with" + }, + "shieldPlanPayWithCard": { + "message": "Pay with card" + }, + "shieldPlanPayWithToken": { + "message": "Pay with $1", + "description": "The $1 is token" + }, + "shieldPlanPaymentTitle": { + "message": "Change payment method" + }, + "shieldPlanSave": { + "message": "Save 17%" + }, + "shieldPlanSelectToken": { + "message": "Select a token" + }, + "shieldPlanTitle": { + "message": "Choose your plan" + }, + "shieldPlanYearly": { + "message": "Yearly" + }, + "shieldStartNowCTA": { + "message": "Start now" + }, + "shieldStartNowCTAWithTrial": { + "message": "Start free trial" + }, + "shieldTx": { + "message": "Transaction Shield" + }, + "shieldTxBillingAccount": { + "message": "Billing account" + }, + "shieldTxCancelDetails": { + "message": "If you cancel, your wallet and transactions will not be covered starting $1.", + "description": "The $1 is the date subscription ends" + }, + "shieldTxCancelImmediateDetails": { + "message": "If you cancel, your wallet and transactions will not be covered." + }, + "shieldTxCancelNotAllowed": { + "message": "Your subscription cannot be cancelled at the moment." + }, + "shieldTxCancelNotAllowedPendingVerification": { + "message": "Your subscription cannot be cancelled due to pending verification." + }, + "shieldTxCancelWhenPausedDetails": { + "message": "Your plan isn't active while paused. If you cancel, your plan will immediately end." + }, + "shieldTxDetails1DescriptionTrial": { + "message": "Free for $1 days, then $2", + "description": "The $1 is the number of days and the $2 is the price of the plan" + }, + "shieldTxDetails1Title": { + "message": "MetaMask Transaction Shield" + }, + "shieldTxDetails2Description": { + "message": "$1, next billing on $2", + "description": "The $1 is interval and the $2 is the date of next billing" + }, + "shieldTxDetails2Title": { + "message": "Billing cycle" + }, + "shieldTxDetails3DescriptionCrypto": { + "message": "Crypto ($1)", + "description": "The $1 is the token symbol" + }, + "shieldTxDetails3DescriptionCryptoWithAccount": { + "message": "Crypto ($1), $2", + "description": "The $1 is the token symbol and the $2 is the account" + }, + "shieldTxDetails3Title": { + "message": "Payment method" + }, + "shieldTxDetailsManage": { + "message": "Manage" + }, + "shieldTxDetailsTitle": { + "message": "Plan details" + }, + "shieldTxMembershipActive": { + "message": "Active plan" + }, + "shieldTxMembershipBenefits": { + "message": "Your benefits" + }, + "shieldTxMembershipBenefits1Description": { + "message": "Secures assets on covered transactions" + }, + "shieldTxMembershipBenefits1Title": { + "message": "Up to $1 protection", + "description": "The $1 is the amount of transaction protection" + }, + "shieldTxMembershipBenefits2Description": { + "message": "Get faster, dedicated support anytime" + }, + "shieldTxMembershipBenefits2Title": { + "message": "Priority support" + }, + "shieldTxMembershipBenefits3Description": { + "message": "Get $1 points/$2", + "description": "The $1 is the number of points and the $2 is the interval" + }, + "shieldTxMembershipBenefits3DescriptionInactive": { + "message": "Get $1 points/$2", + "description": "The $1 is the number of points and the $2 is the interval" + }, + "shieldTxMembershipBenefits3LinkRewards": { + "message": "Link" + }, + "shieldTxMembershipBenefits3SignUp": { + "message": "Sign up" + }, + "shieldTxMembershipBenefits3Title": { + "message": "Earn season rewards" + }, + "shieldTxMembershipBenefitsInactive": { + "message": "What you get" + }, + "shieldTxMembershipBenefitsViewAll": { + "message": "View all" + }, + "shieldTxMembershipBillingDetailsViewBillingHistory": { + "message": "Manage billing" + }, + "shieldTxMembershipCancel": { + "message": "Cancel plan" + }, + "shieldTxMembershipCancelNotification": { + "message": "Your plan will be cancelled on $1.", + "description": "The $1 is the date" + }, + "shieldTxMembershipCancelledDate": { + "message": "You cancelled your plan on $1", + "description": "The $1 is the date" + }, + "shieldTxMembershipErrorInsufficientFunds": { + "message": "Your plan ends on $1. Renew now to continue your benefits.", + "description": "The $1 is the date subscription ends" + }, + "shieldTxMembershipErrorPausedCard": { + "message": "Your plan has been paused due to a failed card payment." + }, + "shieldTxMembershipErrorPausedCardAction": { + "message": "Update card details" + }, + "shieldTxMembershipErrorPausedCardTooltip": { + "message": "Your payment was declined. Please update your payment method to continue your coverage." + }, + "shieldTxMembershipErrorPausedCryptoInsufficientFunds": { + "message": "Plan paused due to insufficient funds. Payment updates may take up to $1 hours.", + "description": "The $1 is the number of hours" + }, + "shieldTxMembershipErrorPausedCryptoInsufficientFundsAction": { + "message": "Add funds" + }, + "shieldTxMembershipErrorPausedCryptoTooltip": { + "message": "Insufficient token balance in your wallet. Click retry after funding your wallet." + }, + "shieldTxMembershipErrorPausedUnexpected": { + "message": "Plan paused due to an unexpected error." + }, + "shieldTxMembershipErrorPausedUnexpectedAction": { + "message": "Contact support" + }, + "shieldTxMembershipFreeTrial": { + "message": "Free trial" + }, + "shieldTxMembershipFreeTrialDaysLeft": { + "message": "You have $1 days left on your trial", + "description": "The $1 is the number of days left" + }, + "shieldTxMembershipId": { + "message": "Member ID" + }, + "shieldTxMembershipInactive": { + "message": "Inactive plan" + }, + "shieldTxMembershipMakeClaim": { + "message": "Make a claim" + }, + "shieldTxMembershipPaused": { + "message": "Paused" + }, + "shieldTxMembershipRenew": { + "message": "Renew plan" + }, + "shieldTxMembershipRenewDescription": { + "message": "Reactivate for $1", + "description": "The $1 is the price of the plan" + }, + "shieldTxMembershipResubscribe": { + "message": "Restart plan" + }, + "shieldTxMembershipSubmitCase": { + "message": "Submit a claim" + }, + "shieldTxPastPlans": { + "message": "Past plans" + }, + "shieldTxPastPlansMonthly": { + "message": "Monthly plan" + }, + "shieldTxPastPlansYearly": { + "message": "Yearly plan" + }, + "shieldTxViewPastInvoice": { + "message": "View past invoice" + }, + "show": { + "message": "Show" + }, + "showAccount": { + "message": "Show account" + }, + "showAdvancedDetails": { + "message": "Show advanced details" + }, + "showDefaultAddress": { + "message": "Show default address" + }, + "showDefaultAddressDescription": { + "message": "Set a default address that's always visible on your home screen and account list." + }, + "showExtensionInFullSizeView": { + "message": "Show extension in full-size view" + }, + "showExtensionInFullSizeViewDescription": { + "message": "Turn this on to make full-size view your default when you click the extension icon." + }, + "showFiatConversionInTestnets": { + "message": "Show conversion on test networks" + }, + "showFiatConversionInTestnetsDescriptionV2": { + "message": "Shows network tokens as local currency on test networks. If you've been asked to turn this feature on, you might be getting scammed. For testing purposes only. $1", + "description": "$1 is the 'Learn more' link" + }, + "showHexData": { + "message": "Show hex data" + }, + "showHexDataDescription": { + "message": "Select this to show the hex data field on the send screen" + }, + "showLess": { + "message": "Show less" + }, + "showMore": { + "message": "Show more" + }, + "showNativeTokenAsMainBalance": { + "message": "Show native token as main balance" + }, + "showNft": { + "message": "Show NFT" + }, + "showPermissions": { + "message": "Show permissions" + }, + "showPrivateKey": { + "message": "Show private key" + }, + "showSRP": { + "message": "Show Secret Recovery Phrase" + }, + "showTestnetNetworks": { + "message": "Show test networks" + }, + "sidePanelMigrationToast": { + "message": "MetaMask now opens in the side panel by default. $1 any time from the menu.", + "description": "Shown when the extension opens in the side panel after migration. $1 is an inline link to switch back to the popup view." + }, + "sign": { + "message": "Sign" + }, + "signatureRequest": { + "message": "Signature request" + }, + "signature_decoding_bid_nft_tooltip": { + "message": "The NFT will be reflected in your wallet, when the bid is accepted." + }, + "signature_decoding_list_nft_tooltip": { + "message": "Expect changes only if someone buys your NFTs." + }, + "signed": { + "message": "Signed" + }, + "signing": { + "message": "Signing" + }, + "signingInWith": { + "message": "Signing in with" + }, + "signingWith": { + "message": "Signing with" + }, + "simulationApproveHeading": { + "message": "Withdraw" + }, + "simulationDetailsApproveDesc": { + "message": "You're giving someone else permission to withdraw NFTs from your account." + }, + "simulationDetailsERC20ApproveDesc": { + "message": "You're giving someone else permission to spend this amount from your account." + }, + "simulationDetailsFiatNotAvailable": { + "message": "Not available" + }, + "simulationDetailsIncomingHeading": { + "message": "You receive" + }, + "simulationDetailsIncomingHeadingReceived": { + "message": "You've received" + }, + "simulationDetailsIncomingHeadingReceiving": { + "message": "You're receiving" + }, + "simulationDetailsNoChanges": { + "message": "No changes" + }, + "simulationDetailsOutgoingHeading": { + "message": "You send" + }, + "simulationDetailsOutgoingHeadingSending": { + "message": "You're sending" + }, + "simulationDetailsOutgoingHeadingSent": { + "message": "You sent" + }, + "simulationDetailsRevokeSetApprovalForAllDesc": { + "message": "You're removing someone else's permission to withdraw NFTs from your account." + }, + "simulationDetailsSetApprovalForAllDesc": { + "message": "You're giving permission for someone else to withdraw NFTs from your account." + }, + "simulationDetailsTitle": { + "message": "Estimated changes" + }, + "simulationDetailsTitleEnforced": { + "message": "Balance changes" + }, + "simulationDetailsTitleTooltip": { + "message": "Estimated changes are what might happen if you go through with this transaction. This is just a prediction, not a guarantee." + }, + "simulationDetailsTitleTooltipEnforced": { + "message": "Balance changes are guaranteed. If this outcome isn't possible, the transaction will be stopped." + }, + "simulationDetailsTotalFiat": { + "message": "Total = $1", + "description": "$1 is the total amount in fiat currency on one side of the transaction" + }, + "simulationDetailsTransactionReverted": { + "message": "This transaction is likely to fail" + }, + "simulationDetailsUnavailable": { + "message": "Unavailable" + }, + "simulationErrorMessageV2": { + "message": "We were not able to estimate gas. There might be an error in the contract and this transaction may fail." + }, + "simulationsSettingDescription": { + "message": "Turn this on to estimate balance changes of transactions and signatures before you confirm them. This doesn't guarantee their final outcome. $1" + }, + "simulationsSettingDescriptionV2": { + "message": "Estimates balance changes of transactions before you confirm them. This doesn't guarantee the final outcome of your transactions. $1" + }, + "simulationsSettingSubHeader": { + "message": "Estimate balance changes" + }, + "singleNetwork": { + "message": "1 network" + }, + "sites": { + "message": "Sites" + }, + "siweIssued": { + "message": "Issued" + }, + "siweNetwork": { + "message": "Network" + }, + "siweRequestId": { + "message": "Request ID" + }, + "siweResources": { + "message": "Resources" + }, + "siweURI": { + "message": "URL" + }, + "skip": { + "message": "Skip" + }, + "skipDeepLinkInterstitial": { + "message": "Don't show interstitial screen when opening deep links" + }, + "skipLinkConfirmationScreens": { + "message": "Skip link confirmation screens" + }, + "skipLinkConfirmationScreensDescription": { + "message": "When you open a link from MetaMask, we show a confirmation screen to protect you from accidentally viewing sensitive info like your accounts, balances, or transaction history. Turn this on to skip that screen for links originating from MetaMask." + }, + "slippage": { + "message": "Slippage" + }, + "slippageAuto": { + "message": "Auto" + }, + "slippageEditAriaLabel": { + "message": "Edit slippage" + }, + "slippageExplanation": { + "message": "The % change in price you're willing to allow before your transaction is canceled." + }, + "smartAccount": { + "message": "Smart account" + }, + "smartAccountLabel": { + "message": "Smart Account" + }, + "smartAccountRequestsFromDapps": { + "message": "Smart account requests from dapps" + }, + "smartAccountRequestsFromDappsDescriptionV2": { + "message": "Let dapps request smart account features for standard accounts. MetaMask will only upgrade to our audited smart account." + }, + "smartAccountUpgradeBannerDescription": { + "message": "Same address. Smarter features." + }, + "smartAccountUpgradeBannerTitle": { + "message": "Switch to smart account" + }, + "smartContractAddress": { + "message": "Smart contract address" + }, + "smartContractAddressWarning": { + "message": "The recipient address may not support direct token transfers, which could result in fund loss. Only continue if you're certain this contract can receive your transfer." + }, + "smartSwapsErrorNotEnoughFunds": { + "message": "Not enough funds for a smart swap." + }, + "smartSwapsErrorUnavailable": { + "message": "Smart Swaps are temporarily unavailable." + }, + "smartTransactionCancelled": { + "message": "Your transaction was canceled" + }, + "smartTransactionCancelledDescription": { + "message": "Your transaction couldn't be completed, so it was canceled to save you from paying unnecessary gas fees." + }, + "smartTransactionError": { + "message": "Your transaction failed" + }, + "smartTransactionErrorDescription": { + "message": "Sudden market changes can cause failures. If the problem continues, reach out to MetaMask customer support." + }, + "smartTransactionPending": { + "message": "Your transaction was submitted" + }, + "smartTransactionSuccess": { + "message": "Your transaction is complete" + }, + "smartTransactions": { + "message": "Smart Transactions" + }, + "smartTransactionsEnabledDescription": { + "message": " and MEV protection. Now on by default." + }, + "smartTransactionsEnabledLink": { + "message": "Higher success rates" + }, + "smartTransactionsEnabledTitle": { + "message": "Transactions just got smarter" + }, + "snapAccountCreated": { + "message": "Account created" + }, + "snapAccountCreatedDescription": { + "message": "Your new account is ready to use!" + }, + "snapAccountCreationFailed": { + "message": "Account creation failed" + }, + "snapAccountCreationFailedDescription": { + "message": "$1 didn't manage to create an account for you.", + "description": "$1 is the snap name" + }, + "snapAccountRedirectFinishSigningTitle": { + "message": "Finish signing" + }, + "snapAccountRedirectSiteDescription": { + "message": "Follow the instructions from $1" + }, + "snapAccountRemovalFailed": { + "message": "Account removal failed" + }, + "snapAccountRemovalFailedDescription": { + "message": "$1 didn't manage to remove this account for you.", + "description": "$1 is the snap name" + }, + "snapAccountRemoved": { + "message": "Account removed" + }, + "snapAccountRemovedDescription": { + "message": "This account will no longer be available to use in MetaMask." + }, + "snapConnectTo": { + "message": "Connect to $1", + "description": "$1 is the website URL or a Snap name. Used for Snaps pre-approved connections." + }, + "snapConnectionPermissionDescription": { + "message": "Let $1 automatically connect to $2 without your approval.", + "description": "Used for Snap pre-approved connections. $1 is the Snap name, $2 is a website URL." + }, + "snapConnectionWarning": { + "message": "$1 wants to use $2", + "description": "$2 is the snap and $1 is the dapp requesting connection to the snap." + }, + "snapDetailWebsite": { + "message": "Website" + }, + "snapHomeMenu": { + "message": "Snap Home Menu" + }, + "snapInstallRequest": { + "message": "Installing $1 gives it the following permissions.", + "description": "$1 is the snap name." + }, + "snapInstallSuccess": { + "message": "Installation complete" + }, + "snapInstallWarningCheck": { + "message": "$1 wants permission to do the following:", + "description": "Warning message used in popup displayed on snap install. $1 is the snap name." + }, + "snapInstallWarningHeading": { + "message": "Proceed with caution" + }, + "snapInstallWarningPermissionDescriptionForBip32View": { + "message": "Allow $1 to view your public keys (and addresses). This does not grant any control of accounts or assets.", + "description": "An extended description for the `snap_getBip32PublicKey` permission used for tooltip on Snap Install Warning screen (popup/modal). $1 is the snap name." + }, + "snapInstallWarningPermissionDescriptionForEntropy": { + "message": "Allow $1 Snap to manage accounts and assets on the requested network(s). These accounts are derived and backed up using your secret recovery phrase (without revealing it). With the power to derive keys, $1 can support a variety of blockchain protocols beyond Ethereum (EVMs).", + "description": "An extended description for the `snap_getBip44Entropy` and `snap_getBip44Entropy` permissions used for tooltip on Snap Install Warning screen (popup/modal). $1 is the snap name." + }, + "snapInstallWarningPermissionNameForEntropy": { + "message": "Manage $1 accounts", + "description": "Permission name used for the Permission Cell component displayed on warning popup when installing a Snap. $1 is list of account types." + }, + "snapInstallWarningPermissionNameForViewPublicKey": { + "message": "View your public key for $1", + "description": "Permission name used for the Permission Cell component displayed on warning popup when installing a Snap. $1 is list of account types." + }, + "snapInstallationErrorDescription": { + "message": "$1 couldn’t be installed.", + "description": "Error description used when snap installation fails. $1 is the snap name." + }, + "snapInstallationErrorTitle": { + "message": "Installation failed", + "description": "Error title used when snap installation fails." + }, + "snapResultError": { + "message": "Error" + }, + "snapResultSuccess": { + "message": "Success" + }, + "snapResultSuccessDescription": { + "message": "$1 is ready to use" + }, + "snapUIAccountSelectorTitle": { + "message": "Select account" + }, + "snapUIAssetSelectorTitle": { + "message": "Select an asset" + }, + "snapUpdateAlertDescription": { + "message": "Get the latest version of $1", + "description": "Description used in Snap update alert banner when snap update is available. $1 is the Snap name." + }, + "snapUpdateAvailable": { + "message": "Update available" + }, + "snapUpdateErrorDescription": { + "message": "$1 couldn’t be updated.", + "description": "Error description used when snap update fails. $1 is the snap name." + }, + "snapUpdateErrorTitle": { + "message": "Update failed", + "description": "Error title used when snap update fails." + }, + "snapUpdateRequest": { + "message": "Updating $1 gives it the following permissions.", + "description": "$1 is the Snap name." + }, + "snapUpdateSuccess": { + "message": "Update complete" + }, + "snapUrlIsBlocked": { + "message": "This Snap wants to take you to a blocked site. $1." + }, + "snaps": { + "message": "Snaps" + }, + "snapsConnected": { + "message": "Snaps connected" + }, + "snapsNoInsight": { + "message": "No insight to show" + }, + "snapsPrivacyWarningFirstMessage": { + "message": "You acknowledge that any Snap that you install is a third-party service, unless otherwise identified, as defined in the Consensys $1. Your use of third-party services is governed by separate terms and conditions set forth by the third-party service provider. Consensys does not recommend the use of any Snap by any particular person for any particular reason. You access, rely upon or use the third-party service at your own risk. Consensys disclaims all responsibility and liability for any losses on account of your use of third-party services.", + "description": "First part of a message in popup modal displayed when installing a snap for the first time. $1 is terms of use link." + }, + "snapsPrivacyWarningSecondMessage": { + "message": "Any information you share with third-party services will be collected directly by those third-party services in accordance with their privacy policies. Please refer to their privacy policies for more information.", + "description": "Second part of a message in popup modal displayed when installing a snap for the first time." + }, + "snapsPrivacyWarningThirdMessage": { + "message": "Consensys has no access to information you share with third-party services.", + "description": "Third part of a message in popup modal displayed when installing a snap for the first time." + }, + "snapsSettings": { + "message": "Snap settings" + }, + "snapsTermsOfUse": { + "message": "Terms of Use" + }, + "snapsToggle": { + "message": "A snap will only run if it is enabled" + }, + "snapsUIError": { + "message": "Contact the creators of $1 for further support.", + "description": "This is shown when the insight snap throws an error. $1 is the snap name" + }, + "solanaAccountRequested": { + "message": "This site is requesting a Solana account." + }, + "solanaAccountRequired": { + "message": "A Solana account is required to connect to this site." + }, + "someNetworks": { + "message": "$1 networks" + }, + "somethingDoesntLookRight": { + "message": "Something doesn't look right? $1", + "description": "A false positive message for users to contact support. $1 is a link to the support page." + }, + "somethingIsWrong": { + "message": "Something's gone wrong. Try reloading the page." + }, + "somethingWentWrong": { + "message": "We couldn't load this page." + }, + "sortBy": { + "message": "Sort by" + }, + "sortByAlphabetically": { + "message": "Alphabetically (A-Z)" + }, + "sortByDecliningBalance": { + "message": "Declining balance ($1 high-low)", + "description": "Indicates a descending order based on token fiat balance. $1 is the preferred currency symbol" + }, + "source": { + "message": "Source" + }, + "spamModalBlockedDescription": { + "message": "This site will be blocked for 1 minute." + }, + "spamModalBlockedTitle": { + "message": "You've temporarily blocked this site" + }, + "spamModalDescription": { + "message": "If you're being spammed with multiple requests, you can temporarily block the site." + }, + "spamModalTemporaryBlockButton": { + "message": "Temporarily block this site" + }, + "spamModalTitle": { + "message": "We've noticed multiple requests" + }, + "speed": { + "message": "Speed" + }, + "speedUp": { + "message": "Speed up" + }, + "speedUpCancellation": { + "message": "Speed up this cancellation" + }, + "speedUpTransactionDescription": { + "message": "This network fee will replace the original." + }, + "speedUpTransactionFailed": { + "message": "Speed up transaction failed" + }, + "speedUpTransactionTitle": { + "message": "Speed up transaction" + }, + "spender": { + "message": "Spender" + }, + "spenderTooltipDesc": { + "message": "This is the address that will be able to withdraw your NFTs." + }, + "spenderTooltipERC20ApproveDesc": { + "message": "This is the address that will be able to spend your tokens on your behalf." + }, + "spendingCap": { + "message": "Spending cap" + }, + "spendingCaps": { + "message": "Spending caps" + }, + "srpAlreadyImportedError": { + "message": "This Secret Recovery Phrase has already been imported." + }, + "srpDetailsDescription": { + "message": "A Secret Recovery Phrase, also called a seed phrase or mnemonic, is a set of words that lets you access and control your crypto wallet. To move your wallet to MetaMask, you need this phrase." + }, + "srpDetailsOwnsAccessListItemOne": { + "message": "Take all your money" + }, + "srpDetailsOwnsAccessListItemThree": { + "message": "Change your login information" + }, + "srpDetailsOwnsAccessListItemTwo": { + "message": "Confirm transactions" + }, + "srpDetailsOwnsAccessListTitle": { + "message": "Anyone with your Secret Recovery Phrase can:" + }, + "srpDetailsTitle": { + "message": "What’s a Secret Recovery Phrase?" + }, + "srpImportDuplicateAccountError": { + "message": "The account you are trying to import is a duplicate." + }, + "srpInputNumberOfWords": { + "message": "I have a $1-word phrase", + "description": "This is the text for each option in the dropdown where a user selects how many words their secret recovery phrase has during import. The $1 is the number of words (either 12, 15, 18, 21, or 24)." + }, + "srpListName": { + "message": "Secret Recovery Phrase $1", + "description": "$1 is the order of the Secret Recovery Phrase" + }, + "srpListNumberOfAccounts": { + "message": "$1 accounts", + "description": "$1 is the number of accounts in the list" + }, + "srpListSelectionDescription": { + "message": "The Secret Recovery Phrase your new account will be generated from" + }, + "srpListSingleOrZero": { + "message": "$1 account", + "description": "$1 is the number of accounts in the list, it is either 1 or 0" + }, + "srpListStateBackedUp": { + "message": "Reveal" + }, + "srpListStateNotBackedUp": { + "message": "Backup" + }, + "srpPasteFailedTooManyWords": { + "message": "Paste failed because it contained over 24 words. A secret recovery phrase can have a maximum of 24 words.", + "description": "Description of SRP paste error when the pasted content has too many words" + }, + "srpPasteTip": { + "message": "You can paste your entire Secret Recovery Phrase into any field.", + "description": "Our secret recovery phrase input is split into one field per word. This message explains to users that they can paste their entire secrete recovery phrase into any field, and we will handle it correctly." + }, + "srpSecurityQuizGetStarted": { + "message": "Get started" + }, + "srpSecurityQuizImgAlt": { + "message": "An eye with a keyhole in the center, and three floating password fields" + }, + "srpSecurityQuizIntroduction": { + "message": "To reveal your Secret Recovery Phrase, you need to correctly answer two questions" + }, + "srpSecurityQuizQuestionOneQuestion": { + "message": "If you lose your Secret Recovery Phrase, MetaMask..." + }, + "srpSecurityQuizQuestionOneRightAnswer": { + "message": "Can’t help you" + }, + "srpSecurityQuizQuestionOneRightAnswerDescription": { + "message": "Write it down, engrave it on metal, or keep it in multiple secret spots so you never lose it. If you lose it, it’s gone forever." + }, + "srpSecurityQuizQuestionOneRightAnswerTitle": { + "message": "Right! No one can help get your Secret Recovery Phrase back" + }, + "srpSecurityQuizQuestionOneWrongAnswer": { + "message": "Can get it back for you" + }, + "srpSecurityQuizQuestionOneWrongAnswerDescription": { + "message": "If you lose your Secret Recovery Phrase, it’s gone forever. No one can help you get it back, no matter what they might say." + }, + "srpSecurityQuizQuestionOneWrongAnswerTitle": { + "message": "Wrong! No one can help get your Secret Recovery Phrase back" + }, + "srpSecurityQuizQuestionTwoQuestion": { + "message": "If anyone, even a support agent, asks for your Secret Recovery Phrase..." + }, + "srpSecurityQuizQuestionTwoRightAnswer": { + "message": "You’re being scammed" + }, + "srpSecurityQuizQuestionTwoRightAnswerDescription": { + "message": "Anyone claiming to need your Secret Recovery Phrase is lying to you. If you share it with them, they will steal your assets." + }, + "srpSecurityQuizQuestionTwoRightAnswerTitle": { + "message": "Correct! Sharing your Secret Recovery Phrase is never a good idea" + }, + "srpSecurityQuizQuestionTwoWrongAnswer": { + "message": "You should give it to them" + }, + "srpSecurityQuizQuestionTwoWrongAnswerDescription": { + "message": "Anyone claiming to need your Secret Recovery Phrase is lying to you. If you share it with them, they will steal your assets." + }, + "srpSecurityQuizQuestionTwoWrongAnswerTitle": { + "message": "Nope! Never share your Secret Recovery Phrase with anyone, ever" + }, + "srpSecurityQuizTitle": { + "message": "Security quiz" + }, + "srpToggleShow": { + "message": "Show/Hide this word of the secret recovery phrase", + "description": "Describes a toggle that is used to show or hide a single word of the secret recovery phrase" + }, + "srpWordHidden": { + "message": "This word is hidden", + "description": "Explains that a word in the secret recovery phrase is hidden" + }, + "srpWordShown": { + "message": "This word is being shown", + "description": "Explains that a word in the secret recovery phrase is being shown" + }, + "stable": { + "message": "Stable" + }, + "stableLowercase": { + "message": "stable" + }, + "stake": { + "message": "Stake" + }, + "staked": { + "message": "Staked" + }, + "stakingDeposit": { + "message": "Staking deposit" + }, + "stakingWithdrawal": { + "message": "Staking withdrawal" + }, + "standardAccountLabel": { + "message": "Standard account" + }, + "stateCorruptionAreYouSure": { + "message": "Are you sure you want to proceed?" + }, + "stateCorruptionCopyAndRestoreBeforeRecovery": { + "message": "You can try to copy and restore your state file manually before you decide to restore your vault by following $1.", + "description": "$1 represents the `stateCorruptionTheseInstructions` localization key" + }, + "stateCorruptionCopyAndRestoreBeforeReset": { + "message": "You can try to copy and restore your state file manually before you decide to reset MetaMask by following $1.", + "description": "$1 represents the `stateCorruptionTheseInstructions` localization key" + }, + "stateCorruptionDetectedNoBackup": { + "message": "Your vault cannot be automatically recovered." + }, + "stateCorruptionDetectedWithBackup": { + "message": "Your vault can be recovered from an automated backup. Automatic recovery will delete your current settings and preferences, and restore only your vault." + }, + "stateCorruptionMetamaskDatabaseCannotBeAccessed": { + "message": "Internal error: database cannot be accessed" + }, + "stateCorruptionResetMetaMaskState": { + "message": "Reset MetaMask State" + }, + "stateCorruptionResettingDatabase": { + "message": "Resetting database…" + }, + "stateCorruptionRestoreAccountsFromBackup": { + "message": "Restore accounts" + }, + "stateCorruptionRestoringDatabase": { + "message": "Restoring database…" + }, + "stateCorruptionTheseInstructions": { + "message": "these instructions", + "description": "This is a link to instructions on how to recover your Secret Recovery Phrase manually. It is used in the `stateCorruptionCopyAndRestoreBeforeRecovery` and `stateCorruptionCopyAndRestoreBeforeReset` localization keys." + }, + "stateCorruptionTheseInstructionsLinkTitle": { + "message": "How to recover your Secret Recovery Phrase" + }, + "stateLogError": { + "message": "Error in retrieving state logs, please try again later." + }, + "stateLogFileName": { + "message": "MetaMask state logs" + }, + "stateLogs": { + "message": "State logs" + }, + "stateLogsModalDescription": { + "message": "State logs can help us debug issues you might encounter. Only send it to MetaMask for support, because state logs contain your public account address and transactions." + }, + "status": { + "message": "Status" + }, + "statusNotConnected": { + "message": "Not connected" + }, + "step1LatticeWallet": { + "message": "Connect your Lattice1" + }, + "step1LatticeWalletMsg": { + "message": "You can connect MetaMask to your Lattice1 device once it is set up and online. Unlock your device and have your Device ID ready.", + "description": "$1 represents the `hardwareWalletSupportLinkConversion` localization key" + }, + "step1LedgerWallet": { + "message": "Download Ledger app" + }, + "step1LedgerWalletMsg": { + "message": "Download, set up, and enter your password to unlock $1.", + "description": "$1 represents the `ledgerLiveApp` localization value" + }, + "step1TrezorWallet": { + "message": "Connect your Trezor" + }, + "step1TrezorWalletMsg": { + "message": "Plug your Trezor directly into your computer and unlock it. Make sure you use the correct passphrase.", + "description": "$1 represents the `hardwareWalletSupportLinkConversion` localization key" + }, + "step2LedgerWallet": { + "message": "Connect your Ledger" + }, + "step2LedgerWalletMsg": { + "message": "Plug your Ledger directly into your computer, then unlock it and open the Ethereum app.", + "description": "$1 represents the `hardwareWalletSupportLinkConversion` localization key" + }, + "stillConnectingTo": { + "message": "Still connecting to $1...", + "description": "Message shown when network connection is slow. $1 is the network name." + }, + "storageErrorAction": { + "message": "Back up Secret Recovery Phrase" + }, + "storageErrorDescriptionDefault": { + "message": "Back up your Secret Recovery Phrase and reinstall MetaMask if the problem continues." + }, + "storageErrorDescriptionNoSpace": { + "message": "Your device is out of storage. Free up space now or unsaved wallet changes may be lost." + }, + "storageErrorTitle": { + "message": "We couldn't save your data" + }, + "strong": { + "message": "Strong" + }, + "stxCancelled": { + "message": "Swap would have failed" + }, + "stxCancelledDescription": { + "message": "Your transaction would have failed and was cancelled to protect you from paying unnecessary gas fees." + }, + "stxCancelledSubDescription": { + "message": "Try your swap again. We’ll be here to protect you against similar risks next time." + }, + "stxFailure": { + "message": "Swap failed" + }, + "stxFailureDescription": { + "message": "Sudden market changes can cause failures. If the problem persists, please reach out to $1.", + "description": "This message is shown to a user if their swap fails. The $1 will be replaced by support.metamask.io" + }, + "stxOptInDescriptionV2": { + "message": "Turn on Smart Transactions for more reliable and secure transactions. $1" + }, + "stxPendingPrivatelySubmittingSwap": { + "message": "Privately submitting your Swap..." + }, + "stxPendingPubliclySubmittingSwap": { + "message": "Publicly submitting your Swap..." + }, + "stxSuccess": { + "message": "Swap complete!" + }, + "stxSuccessDescription": { + "message": "Your $1 is now available.", + "description": "$1 is a token symbol, e.g. ETH" + }, + "stxSwapCompleteIn": { + "message": "Swap will complete in <", + "description": "'<' means 'less than', e.g. Swap will complete in < 2:59" + }, + "stxTryingToCancel": { + "message": "Trying to cancel your transaction..." + }, + "stxUnknown": { + "message": "Status unknown" + }, + "stxUnknownDescription": { + "message": "A transaction has been successful but we’re unsure what it is. This may be due to submitting another transaction while this swap was processing." + }, + "stxUserCancelled": { + "message": "Swap cancelled" + }, + "stxUserCancelledDescription": { + "message": "Your transaction has been cancelled and you did not pay any unnecessary gas fees." + }, + "submit": { + "message": "Submit" + }, + "submitted": { + "message": "Submitted" + }, + "suggestedBySnap": { + "message": "Suggested by $1", + "description": "$1 is the snap name" + }, + "suggestedCurrencySymbol": { + "message": "Suggested currency symbol:" + }, + "suggestedTokenName": { + "message": "Suggested name:" + }, + "summary": { + "message": "Summary" + }, + "supplied": { + "message": "Supplied" + }, + "support": { + "message": "Support" + }, + "supportCenter": { + "message": "Visit our support center" + }, + "supportMultiRpcInformation": { + "message": "We now support multiple RPCs for a single network. Your most recent RPC has been selected as the default one to resolve conflicting information." + }, + "supportedLanguagesSectionTitle": { + "message": "Supported languages", + "description": "Section heading on the language settings screen for locales actively maintained by MetaMask." + }, + "swap": { + "message": "Swap" + }, + "swapAdjustSlippage": { + "message": "Adjust slippage" + }, + "swapAggregator": { + "message": "Aggregator" + }, + "swapAllowSwappingOf": { + "message": "Allow swapping of $1", + "description": "Shows a user that they need to allow a token for swapping on their hardware wallet" + }, + "swapAmountReceived": { + "message": "Guaranteed amount" + }, + "swapAmountReceivedInfo": { + "message": "This is the minimum amount you will receive. You may receive more depending on slippage." + }, + "swapAndSend": { + "message": "Swap & Send" + }, + "swapApproval": { + "message": "Approve $1 for swaps", + "description": "Used in the transaction display list to describe a transaction that is an approve call on a token that is to be swapped.. $1 is the symbol of a token that has been approved." + }, + "swapAreYouStillThere": { + "message": "Are you still there?" + }, + "swapAreYouStillThereDescription": { + "message": "We’re ready to show you the latest quotes when you want to continue" + }, + "swapConfirmWithHwWallet": { + "message": "Confirm with your hardware wallet" + }, + "swapContractDataDisabledErrorDescription": { + "message": "In the Ethereum app on your Ledger, go to \"Settings\" and allow contract data. Then, try your swap again." + }, + "swapContractDataDisabledErrorTitle": { + "message": "Contract data is not enabled on your Ledger" + }, + "swapCustom": { + "message": "custom" + }, + "swapDecentralizedExchange": { + "message": "Decentralized exchange" + }, + "swapDetailsTitle": { + "message": "Swap details", + "description": "Title for the modal showing details about a swap transaction." + }, + "swapDirectContract": { + "message": "Direct contract" + }, + "swapEditLimit": { + "message": "Edit limit" + }, + "swapEnableDescription": { + "message": "This is required and gives MetaMask permission to swap your $1.", + "description": "Gives the user info about the required approval transaction for swaps. $1 will be the symbol of a token being approved for swaps." + }, + "swapEnableTokenForSwapping": { + "message": "This will $1 for swapping", + "description": "$1 is for the 'enableToken' key, e.g. 'enable ETH'" + }, + "swapEstimatedNetworkFees": { + "message": "Estimated network fees" + }, + "swapEstimatedNetworkFeesInfo": { + "message": "This is an estimate of the network fee that will be used to complete your swap. The actual amount may change according to network conditions." + }, + "swapFailedErrorDescriptionWithSupportLink": { + "message": "Transaction failures happen and we are here to help. If this issue persists, you can reach our customer support at $1 for further assistance.", + "description": "This message is shown to a user if their swap fails. The $1 will be replaced by support.metamask.io" + }, + "swapFailedErrorTitle": { + "message": "Swap failed" + }, + "swapFetchingQuoteNofN": { + "message": "Fetching quote $1 of $2", + "description": "A count of possible quotes shown to the user while they are waiting for quotes to be fetched. $1 is the number of quotes already loaded, and $2 is the total number of resources that we check for quotes. Keep in mind that not all resources will have a quote for a particular swap." + }, + "swapFetchingQuotes": { + "message": "Fetching quotes..." + }, + "swapFetchingQuotesErrorDescription": { + "message": "Hmmm... something went wrong. Try again, or if errors persist, contact customer support." + }, + "swapFetchingQuotesErrorTitle": { + "message": "Error fetching quotes" + }, + "swapFromTo": { + "message": "The swap of $1 to $2", + "description": "Tells a user that they need to confirm on their hardware wallet a swap of 2 tokens. $1 is a source token and $2 is a destination token" + }, + "swapGasFeesExplanation": { + "message": "MetaMask doesn't make money from gas fees. These fees are estimates and can change based on how busy the network is and how complex a transaction is. Learn more $1.", + "description": "$1 is a link (text in link can be found at 'swapGasFeesSummaryLinkText')" + }, + "swapGasFeesExplanationLinkText": { + "message": "here", + "description": "Text for link in swapGasFeesExplanation" + }, + "swapGasFeesIncluded": { + "message": " Included" + }, + "swapGasFeesSplit": { + "message": "Gas fees on the previous screen are split between these two transactions." + }, + "swapGasFeesSponsored": { + "message": "Paid by MetaMask" + }, + "swapGasFeesSponsoredExplanation": { + "message": "This network fee is paid by MetaMask, so you can transact without $1 in your account." + }, + "swapIncludesMMFee": { + "message": "Includes a $1% MetaMask fee.", + "description": "Provides information about the fee that MetaMask takes for swaps. $1 is a decimal number." + }, + "swapLearnMore": { + "message": "Learn more about Swaps" + }, + "swapLiquiditySourceInfo": { + "message": "We search multiple liquidity sources (exchanges, aggregators and professional market makers) to compare exchange rates and network fees." + }, + "swapMaxSlippage": { + "message": "Max slippage" + }, + "swapMetaMaskFee": { + "message": "MetaMask fee" + }, + "swapMetaMaskFeeDescription": { + "message": "The fee of $1% is automatically factored into this quote. You pay it in exchange for a license to use MetaMask's liquidity provider information aggregation software.", + "description": "Provides information about the fee that MetaMask takes for swaps. $1 is a decimal number." + }, + "swapNQuotesWithDot": { + "message": "$1 quotes.", + "description": "$1 is the number of quotes that the user can select from when opening the list of quotes on the 'view quote' screen" + }, + "swapOnceTransactionHasProcess": { + "message": "Your $1 will be added to your account once this transaction has processed.", + "description": "This message communicates the token that is being transferred. It is shown on the awaiting swap screen. The $1 will be a token symbol." + }, + "swapProcessing": { + "message": "Processing" + }, + "swapQuoteDetails": { + "message": "Quote details" + }, + "swapQuoteSource": { + "message": "Quote source" + }, + "swapQuotesExpiredErrorDescription": { + "message": "Please request new quotes to get the latest rates." + }, + "swapQuotesExpiredErrorTitle": { + "message": "Quotes timeout" + }, + "swapQuotesNotAvailableDescription": { + "message": "This trade route isn't available right now. Try changing the amount, network, or token and we'll find the best option." + }, + "swapQuotesNotAvailableErrorDescription": { + "message": "Try adjusting the amount or slippage settings and try again." + }, + "swapQuotesNotAvailableErrorTitle": { + "message": "No quotes available" + }, + "swapRate": { + "message": "Rate" + }, + "swapReceiving": { + "message": "Receiving" + }, + "swapReceivingInfoTooltip": { + "message": "This is an estimate. The exact amount depends on slippage." + }, + "swapRequestForQuotation": { + "message": "Request for quotation" + }, + "swapSelect": { + "message": "Select" + }, + "swapSelectAQuote": { + "message": "Select a quote" + }, + "swapSelectAToken": { + "message": "Select token" + }, + "swapSelectQuotePopoverDescription": { + "message": "Below are all the quotes gathered from multiple liquidity sources." + }, + "swapSelectToken": { + "message": "Select token" + }, + "swapShowLatestQuotes": { + "message": "Show latest quotes" + }, + "swapSlippageAutoDescription": { + "message": "Auto" + }, + "swapSlippageHighDescription": { + "message": "The slippage entered ($1%) is considered very high and may result in a bad rate", + "description": "$1 is the amount of % for slippage" + }, + "swapSlippageHighTitle": { + "message": "High slippage" + }, + "swapSlippageLowDescription": { + "message": "A value this low ($1%) may result in a failed swap", + "description": "$1 is the amount of % for slippage" + }, + "swapSlippageLowTitle": { + "message": "Low slippage" + }, + "swapSlippageNegativeDescription": { + "message": "Slippage must be greater or equal to zero" + }, + "swapSlippageNegativeTitle": { + "message": "Increase slippage to continue" + }, + "swapSlippageOverLimitDescription": { + "message": "Slippage tolerance must be 15% or less. Anything higher will result in a bad rate." + }, + "swapSlippageOverLimitTitle": { + "message": "Very high slippage" + }, + "swapSlippagePercent": { + "message": "$1%", + "description": "$1 is the amount of % for slippage" + }, + "swapSlippageTooltip": { + "message": "If the price changes between the time your order is placed and confirmed it’s called “slippage”. Your swap will automatically cancel if slippage exceeds your “slippage tolerance” setting." + }, + "swapSlippageZeroDescription": { + "message": "There are fewer zero-slippage quote providers which will result in a less competitive quote." + }, + "swapSlippageZeroTitle": { + "message": "Sourcing zero-slippage providers" + }, + "swapSource": { + "message": "Liquidity source" + }, + "swapSuggestedGasSettingToolTipMessage": { + "message": "Swaps are complex and time sensitive transactions. We recommend this gas fee for a good balance between cost and confidence of a successful Swap." + }, + "swapToConfirmWithHwWallet": { + "message": "to confirm with your hardware wallet" + }, + "swapTokenAvailable": { + "message": "Your $1 has been added to your account.", + "description": "This message is shown after a swap is successful and communicates the exact amount of tokens the user has received for a swap. The $1 is a decimal number of tokens followed by the token symbol." + }, + "swapTokenNotAvailable": { + "message": "Token is not available to swap in this region" + }, + "swapTokenToToken": { + "message": "Swap $1 to $2", + "description": "Used in the transaction display list to describe a swap. $1 and $2 are the symbols of tokens in involved in a swap." + }, + "swapTokens": { + "message": "Swap tokens" + }, + "swapTransactionComplete": { + "message": "Transaction complete" + }, + "swapTwoTransactions": { + "message": "2 transactions" + }, + "swapUnknown": { + "message": "Unknown" + }, + "swapValidationInsufficientGasMessage": { + "message": "You don't have enough $1 to pay the gas fee for this swap. Enter a smaller amount or buy more $1." + }, + "swapZeroSlippage": { + "message": "0% Slippage" + }, + "swapsMaxSlippage": { + "message": "Slippage tolerance" + }, + "swapsViewInActivity": { + "message": "View in activity" + }, + "switch": { + "message": "Switch" + }, + "switchBack": { + "message": "Switch back" + }, + "switchBackToPopup": { + "message": "Switch back to popup" + }, + "switchEthereumChainConfirmationDescription": { + "message": "This will switch the selected network within MetaMask to a previously added network:" + }, + "switchEthereumChainConfirmationTitle": { + "message": "Allow this site to switch the network?" + }, + "switchNetwork": { + "message": "Switch network" + }, + "switchToMetaMaskDefaultRpc": { + "message": "Switch to MetaMask default RPC", + "description": "Button text to switch the default RPC endpoint to MetaMask default RPC" + }, + "switchToPopup": { + "message": "Switch to popup" + }, + "switchToSidePanel": { + "message": "Switch to side panel" + }, + "switchToThisAccount": { + "message": "Switch to this account" + }, + "switchingNetworksCancelsPendingConfirmations": { + "message": "Switching networks will cancel all pending confirmations" + }, + "symbol": { + "message": "Symbol" + }, + "symbolBetweenZeroTwelve": { + "message": "Symbol must be 11 characters or fewer." + }, + "syncing": { + "message": "Syncing..." + }, + "tapToReveal": { + "message": "Tap to reveal" + }, + "tapToRevealNote": { + "message": "Make sure no one is watching your screen." + }, + "tenPercentIncreased": { + "message": "10% increase" + }, + "terms": { + "message": "Terms of Use" + }, + "termsOfService": { + "message": "Terms of service" + }, + "termsOfUseAgree": { + "message": "Agree" + }, + "termsOfUseAgreeText": { + "message": "I agree to the Terms of Use, which apply to my use of MetaMask and all of its features." + }, + "termsOfUseFooterText": { + "message": "Please scroll to read all sections" + }, + "termsOfUseTitle": { + "message": "Review our Terms of Use" + }, + "testNetworks": { + "message": "Test networks" + }, + "testnets": { + "message": "Testnets" + }, + "theme": { + "message": "Theme" + }, + "thirdPartyApis": { + "message": "Third-party APIs" + }, + "thirdPartyApisDescription": { + "message": "Choose how you share your IP address or Ethereum address with third-party APIs. Changes will impact your MetaMask experience." + }, + "thirdPartySoftware": { + "message": "Third-party software notice", + "description": "Title of a popup modal displayed when installing a snap for the first time." + }, + "thisContactWillBeDeleted": { + "message": "This contact will be deleted." + }, + "time": { + "message": "Time" + }, + "to": { + "message": "To" + }, + "toggleDecodeDescription": { + "message": "We use 4byte.directory and Sourcify services to decode and display more readable transaction data. This helps you understand the outcome of pending and past transactions, but can result in your IP address being shared." + }, + "token": { + "message": "Token" + }, + "tokenAddress": { + "message": "Token address" + }, + "tokenAllowance": { + "message": "Token allowance" + }, + "tokenAlreadyAdded": { + "message": "Token has already been added." + }, + "tokenContractAddress": { + "message": "Token contract address" + }, + "tokenContractError": { + "message": "This address is a token contract address. If you send tokens to this address, you will lose them." + }, + "tokenContractWarning": { + "message": "Token contract warning" + }, + "tokenCount": { + "message": "token", + "description": "is number of tokens used for token transfers (singular form)" + }, + "tokenDecimal": { + "message": "Token decimal" + }, + "tokenDecimalFetchFailed": { + "message": "Token decimal required. Find it on: $1" + }, + "tokenDetails": { + "message": "Token details" + }, + "tokenId": { + "message": "Token ID" + }, + "tokenList": { + "message": "Token lists" + }, + "tokenMarketplace": { + "message": "Token marketplace" + }, + "tokenPermissionCount": { + "message": "$1 token permission", + "description": "$1 is the count of token permissions (singular form)" + }, + "tokenPermissionsCount": { + "message": "$1 token permissions", + "description": "$1 is the count of token permissions (plural form)" + }, + "tokenStandard": { + "message": "Token standard" + }, + "tokenStock": { + "message": "Stock" + }, + "tokenStream": { + "message": "Token stream" + }, + "tokenSubscription": { + "message": "Token subscription" + }, + "tokenSymbol": { + "message": "Token symbol" + }, + "tokenTransfer": { + "message": "Token transfer" + }, + "tokens": { + "message": "Tokens" + }, + "tokensCount": { + "message": "tokens", + "description": "is the count of tokens used for token transfers (plural form)" + }, + "tokensInCollection": { + "message": "Tokens in collection" + }, + "tooltipSatusConnectedUpperCase": { + "message": "Connected" + }, + "total": { + "message": "Total" + }, + "totalVolume": { + "message": "Total volume" + }, + "transaction": { + "message": "transaction" + }, + "transactionConfirmed": { + "message": "Transaction confirmed" + }, + "transactionDataFunction": { + "message": "Function" + }, + "transactionDetailGasHeading": { + "message": "Estimated gas fee" + }, + "transactionError": { + "message": "Transaction error. Exception thrown in contract code." + }, + "transactionErrorNoContract": { + "message": "Trying to call a function on a non-contract address." + }, + "transactionFailed": { + "message": "Transaction failed" + }, + "transactionFee": { + "message": "Transaction fee" + }, + "transactionFlowNetwork": { + "message": "Network" + }, + "transactionHistoryBaseFee": { + "message": "Base fee (GWEI)" + }, + "transactionHistoryL1GasLabel": { + "message": "Total L1 gas fee" + }, + "transactionHistoryL2GasLimitLabel": { + "message": "L2 gas limit" + }, + "transactionHistoryL2GasPriceLabel": { + "message": "L2 gas price" + }, + "transactionHistoryMaxFeePerGas": { + "message": "Max fee per gas" + }, + "transactionHistoryPriorityFee": { + "message": "Priority fee (GWEI)" + }, + "transactionHistoryTotalGasFee": { + "message": "Total gas fee" + }, + "transactionIdLabel": { + "message": "Transaction ID", + "description": "Label for the source transaction ID field." + }, + "transactionIncludesTypes": { + "message": "This transaction includes: $1." + }, + "transactionSettings": { + "message": "Transaction settings" + }, + "transactionShield": { + "message": "Transaction Shield" + }, + "transactionSubmitted": { + "message": "Transaction submitted" + }, + "transactionTotalGasFee": { + "message": "Total gas fee", + "description": "Label for the total gas fee incurred in the transaction." + }, + "transactions": { + "message": "Transactions" + }, + "transactionsAndAssets": { + "message": "Transactions and assets" + }, + "transfer": { + "message": "Transfer" + }, + "transferCrypto": { + "message": "Transfer crypto" + }, + "transferFrom": { + "message": "Transfer from" + }, + "transferRequest": { + "message": "Transfer request" + }, + "trezor": { + "message": "Trezor", + "description": "Hardware device name" + }, + "tronBandwidth": { + "message": "Bandwidth" + }, + "tronBandwidthCoverageDescriptionPlural": { + "message": "Covers ~$1 TRX transfers", + "description": "$1 is the number of TRX transfers" + }, + "tronBandwidthCoverageDescriptionSingular": { + "message": "Covers 1 TRX transfer" + }, + "tronDailyResources": { + "message": "Daily resource" + }, + "tronDailyResourcesDescription": { + "message": "This is your daily allowance based on your staked TRX. You get $1 bandwidth for free daily.", + "description": "$1 is the maximum bandwidth value" + }, + "tronEnergy": { + "message": "Energy" + }, + "tronEnergyCoverageDescriptionPlural": { + "message": "Covers ~$1 USDT transfers", + "description": "$1 is the number of USDT transfers" + }, + "tronEnergyCoverageDescriptionSingular": { + "message": "Covers 1 USDT transfer" + }, + "troubleConnectingToLedgerU2FOnFirefox": { + "message": "We're having trouble connecting your Ledger. $1", + "description": "$1 is a link to the wallet connection guide;" + }, + "troubleConnectingToLedgerU2FOnFirefox2": { + "message": "Review our hardware wallet connection guide and try again.", + "description": "$1 of the ledger wallet connection guide" + }, + "troubleConnectingToLedgerU2FOnFirefoxLedgerSolution": { + "message": "If you're on the latest version of Firefox, you might be experiencing an issue related to Firefox dropping U2F support. Learn how to fix this issue $1.", + "description": "It is a link to the ledger website for the workaround." + }, + "troubleConnectingToLedgerU2FOnFirefoxLedgerSolution2": { + "message": "here", + "description": "Second part of the error message; It is a link to the ledger website for the workaround." + }, + "troubleConnectingToWallet": { + "message": "We had trouble connecting to your $1, try reviewing $2 and try again.", + "description": "$1 is the wallet device name; $2 is a link to wallet connection guide" + }, + "troubleStartingMessage": { + "message": "This error could be intermittent, so try restarting the extension." + }, + "troubleStartingTitle": { + "message": "MetaMask had trouble starting." + }, + "trustSignalBlockDescription": { + "message": "If you connect to this site, you could lose all your assets." + }, + "trustSignalBlockTitle": { + "message": "Malicious site detected" + }, + "trustSignalContinueAnyway": { + "message": "Connect Anyway" + }, + "tryAgain": { + "message": "Try again" + }, + "turnOff": { + "message": "Turn off" + }, + "turnOffMetamaskNotificationsError": { + "message": "There was an error in disabling the notifications. Please try again later." + }, + "turnOffPasskey": { + "message": "Turn off $1", + "description": "Action label for turning off passkey unlock. $1 is the OS-specific auth-method noun (Biometrics / Touch ID / Windows Hello)." + }, + "turnOffPasskeyFailed": { + "message": "We couldn't turn off $1. Try again.", + "description": "Error toast when turning off passkey unlock fails. $1 is the OS-specific auth-method noun (Biometrics / Touch ID / Windows Hello)." + }, + "turnOn": { + "message": "Turn on" + }, + "turnOnMetamaskNotifications": { + "message": "Turn on notifications" + }, + "turnOnMetamaskNotificationsButton": { + "message": "Turn on" + }, + "turnOnMetamaskNotificationsError": { + "message": "There was an error in creating the notifications. Please try again later." + }, + "turnOnMetamaskNotificationsMessageFirst": { + "message": "Stay in the loop on what's happening in your wallet with notifications." + }, + "turnOnMetamaskNotificationsMessagePrivacyBold": { + "message": "notifications settings." + }, + "turnOnMetamaskNotificationsMessagePrivacyLink": { + "message": "Learn how we protect your privacy while using this feature." + }, + "turnOnMetamaskNotificationsMessageSecond": { + "message": "To use wallet notifications, we use a profile to sync some settings across your devices. $1" + }, + "turnOnMetamaskNotificationsMessageThird": { + "message": "You can turn off notifications at any time in the $1" + }, + "turnOnTokenDetection": { + "message": "Turn on enhanced token detection" + }, + "tutorial": { + "message": "Tutorial" + }, + "txAlertTitle": { + "message": "This transaction will be reverted" + }, + "typeYourSRP": { + "message": "Enter your Secret Recovery Phrase" + }, + "u2f": { + "message": "U2F", + "description": "A name on an API for the browser to interact with devices that support the U2F protocol. On some browsers we use it to connect MetaMask to Ledger devices." + }, + "unableToConnectTo": { + "message": "Unable to connect to $1.", + "description": "Message shown when network connection fails. $1 is the network name." + }, + "unableToDownload": { + "message": "Unable to download" + }, + "unapproved": { + "message": "Unapproved" + }, + "unavailable": { + "message": "Unavailable" + }, + "unexpectedBehavior": { + "message": "This behavior is unexpected and should be reported as a bug, even if your accounts are restored." + }, + "unifiedSwapAllowSwappingOf": { + "message": "Allow exact access to $1 $2 on $3 for swapping" + }, + "unifiedSwapFromTo": { + "message": "Swap $1 $2 to $3", + "description": "Tells a user that they need to confirm on their hardware wallet a swap of 2 tokens. $1 is a source token and $2 is a destination token" + }, + "units": { + "message": "units" + }, + "unknown": { + "message": "Unknown" + }, + "unknownCollection": { + "message": "Unnamed collection" + }, + "unknownNetworkForGatorPermissions": { + "message": "Unknown network", + "description": "Displayed on places like Gator permissions when regular name is not available." + }, + "unknownNetworkForKeyEntropy": { + "message": "Unknown network", + "description": "Displayed on places like Snap install warning when regular name is not available." + }, + "unknownQrCode": { + "message": "Error: We couldn't identify that QR code" + }, + "unlimited": { + "message": "Unlimited" + }, + "unlock": { + "message": "Unlock" + }, + "unlockPageIncorrectPassword": { + "message": "Password is incorrect. Please try again." + }, + "unlockPageTooManyFailedAttempts": { + "message": "Too many attempts. Try again in " + }, + "unlockToReveal": { + "message": "Unlock to reveal", + "description": "Label used for Private Keys row on multichain account details page." + }, + "unlockWithPasskey": { + "message": "Unlock with $1", + "description": "Action label / aria-label for the passkey unlock button. $1 is the OS-specific auth-method noun (Biometrics / Touch ID / Windows Hello)." + }, + "unpin": { + "message": "Unpin" + }, + "unrecognizedChain": { + "message": "This custom network is not recognized", + "description": "$1 is a clickable link with text defined by the 'unrecognizedChanLinkText' key. The link will open to instructions for users to validate custom network details." + }, + "unsendableAsset": { + "message": "Sending NFT (ERC-721) tokens is not currently supported", + "description": "This is an error message we show the user if they attempt to send an NFT asset type, for which currently don't support sending" + }, + "unstableTokenPriceDescription": { + "message": "The price of this token in USD is highly volatile, indicating a high risk of losing significant value by interacting with it." + }, + "unstableTokenPriceTitle": { + "message": "Unstable token price" + }, + "update": { + "message": "Update" + }, + "updateEthereumChainConfirmationDescription": { + "message": "This site is requesting to update your default network URL. You can edit defaults and network information any time." + }, + "updateInformation": { + "message": "We've made your wallet safer, smoother, and added some new features. Update now to stay protected and use our latest improvements." + }, + "updateNetworkConfirmationTitle": { + "message": "Update $1", + "description": "$1 represents network name" + }, + "updateOrEditNetworkInformations": { + "message": "Update your information or" + }, + "updateRequest": { + "message": "Update request" + }, + "updateRpc": { + "message": "Update RPC", + "description": "Button text to update RPC endpoint" + }, + "updateToTheLatestVersion": { + "message": "Update to the latest version" + }, + "updatedRpcForNetworks": { + "message": "Network RPCs Updated" + }, + "updatedToMetaMaskDefault": { + "message": "Updated to MetaMask default", + "description": "Toast message confirming that the default RPC endpoint has been updated to MetaMask default" + }, + "uploadDropFile": { + "message": "Drop your file here" + }, + "uploadFile": { + "message": "Upload file" + }, + "urlErrorMsg": { + "message": "URLs require the appropriate HTTP/HTTPS prefix." + }, + "urlUnknown": { + "message": "URL unknown" + }, + "use4ByteResolution": { + "message": "Decode smart contracts" + }, + "useDifferentLoginMethod": { + "message": "Use a different login method" + }, + "useMultiAccountBalanceChecker": { + "message": "Batch account balance requests" + }, + "useMultiAccountBalanceCheckerSettingDescription": { + "message": "Get faster balance updates by batching account balance requests. This lets us fetch your account balances together, so you get quicker updates for an improved experience. When this feature is off, third parties may be less likely to associate your accounts with each other." + }, + "useMultiAccountBalanceCheckerSettingDescriptionV2": { + "message": "Sends balance updates for all your accounts at once. Allows for a faster and overall better experience managing multiple accounts." + }, + "useNftDetection": { + "message": "Autodetect NFTs" + }, + "useNftDetectionDescription": { + "message": "Displays all NFTs, including fake ones airdropped by scammers." + }, + "usePassword": { + "message": "Use password" + }, + "usePhishingDetection": { + "message": "Use phishing detection" + }, + "usePhishingDetectionDescription": { + "message": "Display a warning for phishing domains targeting Ethereum users" + }, + "useSafeChainsListValidation": { + "message": "Network details check" + }, + "useSafeChainsListValidationDescriptionV2": { + "message": "Reduces your chances of connecting to a malicious or incorrect network. MetaMask uses $1 to show accurate and standardized network details." + }, + "useSafeChainsListValidationWebsite": { + "message": "chainid.network", + "description": "useSafeChainsListValidationWebsite is separated from the rest of the text so that we can bold the third party service name in the middle of them" + }, + "useTokenDetectionPrivacyDesc": { + "message": "Automatically displaying tokens sent to your account involves communication with third party servers to fetch token’s images. Those serves will have access to your IP address." + }, + "usedByClients": { + "message": "Used by a variety of different clients" + }, + "userOpContractDeployError": { + "message": "Contract deployment from a smart account is not supported" + }, + "value": { + "message": "Value" + }, + "version": { + "message": "Version" + }, + "view": { + "message": "View" + }, + "viewActivity": { + "message": "View activity" + }, + "viewAddressOnExplorer": { + "message": "View on $1", + "description": "$1 is the block explorer name" + }, + "viewDetails": { + "message": "View details" + }, + "viewOnBlockExplorer": { + "message": "View on block explorer" + }, + "viewOnCustomBlockExplorer": { + "message": "View $1 at $2", + "description": "$1 is the action type. e.g (Account, Transaction, Swap) and $2 is the Custom Block Explorer URL" + }, + "viewOnEtherscan": { + "message": "View $1 on Etherscan", + "description": "$1 is the action type. e.g (Account, Transaction, Swap)" + }, + "viewOnExplorer": { + "message": "View on explorer" + }, + "viewOnOpensea": { + "message": "View on Opensea" + }, + "viewTokenDetails": { + "message": "View token details" + }, + "viewTransaction": { + "message": "View transaction" + }, + "viewinExplorer": { + "message": "View $1 in explorer", + "description": "$1 is the action type. e.g (Account, Transaction, Swap)" + }, + "visitSite": { + "message": "Visit site" + }, + "visitSupportDataConsentModalAccept": { + "message": "Confirm" + }, + "visitSupportDataConsentModalDescription": { + "message": "Do you want to share your MetaMask Identifier and app version with our Support Center? This can help us better solve your problem, but is optional." + }, + "visitSupportDataConsentModalReject": { + "message": "Don’t share" + }, + "visitSupportDataConsentModalTitle": { + "message": "Share device details with support" + }, + "visitWebSite": { + "message": "Visit our website" + }, + "volume": { + "message": "Volume" + }, + "wallet": { + "message": "Wallet" + }, + "walletConnectionGuide": { + "message": "our hardware wallet connection guide" + }, + "walletName": { + "message": "Wallet name" + }, + "walletReadyLearn": { + "message": "$1 you can keep this phrase safe so you never lose access to your money.", + "description": "$1 is the link to Learn how" + }, + "walletReadyLoseSrp": { + "message": "If you lose your Secret Recovery Phrase, you won’t be able to use your wallet." + }, + "walletReadyLoseSrpFromReminder": { + "message": "This Secret Recovery Phrase can help you regain access if you ever forget your password or lose access to your login." + }, + "wantToAddThisNetwork": { + "message": "Want to add this network?" + }, + "wantsToAddThisAsset": { + "message": "This allows the following asset to be added to your wallet." + }, + "warning": { + "message": "Warning" + }, + "warningFromSnap": { + "message": "Warning from $1", + "description": "$1 represents the name of the snap" + }, + "watchEthereumAccountsDescription": { + "message": "Turning this option on will give you the ability to watch Ethereum accounts via a public address or ENS name. For feedback on this Beta feature please complete this $1.", + "description": "$1 is the link to a product feedback form" + }, + "watchEthereumAccountsToggle": { + "message": "Watch Ethereum Accounts (Beta)" + }, + "watchOutMessage": { + "message": "Beware of $1.", + "description": "$1 is a link with text that is provided by the 'securityMessageLinkForNetworks' key" + }, + "web3": { + "message": "Web3" + }, + "web3ShimUsageNotification": { + "message": "We noticed that the current website tried to use the removed window.web3 API. If the site appears to be broken, please click $1 for more information.", + "description": "$1 is a clickable link." + }, + "webhid": { + "message": "WebHID", + "description": "Refers to a interface for connecting external devices to the browser. Used for connecting ledger to the browser. Read more here https://developer.mozilla.org/en-US/docs/Web/API/WebHID_API" + }, + "websites": { + "message": "websites", + "description": "Used in the 'permission_rpc' message." + }, + "weekly": { + "message": "weekly" + }, + "welcomeBack": { + "message": "Welcome back" + }, + "whatsThis": { + "message": "What's this?" + }, + "willApproveAmountForBridging": { + "message": "Approves token for bridge." + }, + "willApproveAmountForSwapping": { + "message": "Approves token for swap." + }, + "withdrawTo": { + "message": "Receive", + "description": "Label for pay with row in withdrawal flows showing the destination token" + }, + "withdrawing": { + "message": "Withdrawing" + }, + "wrongNetworkName": { + "message": "According to our records, the network name may not correctly match this chain ID." + }, + "wrongPassword": { + "message": "Wrong password", + "description": "Displayed when the user enters an incorrect password" + }, + "year": { + "message": "year" + }, + "yes": { + "message": "Yes" + }, + "you": { + "message": "You" + }, + "youApprove": { + "message": "You approve" + }, + "youNeedToAllowCameraAccess": { + "message": "You need to allow camera access to use this feature." + }, + "youReceived": { + "message": "You received", + "description": "Label indicating the amount and asset the user received." + }, + "youSent": { + "message": "You sent", + "description": "Label indicating the amount and asset the user sent." + }, + "youllReceive": { + "message": "You'll receive", + "description": "Row label on the Perps Withdraw confirmation showing the net receive amount after fees" + }, + "yourActivity": { + "message": "Your activity" + }, + "yourBalance": { + "message": "Your balance" + }, + "yourNFTmayBeAtRisk": { + "message": "Your NFT may be at risk" + }, + "yourWalletIsReady": { + "message": "Your wallet is ready!" + }, + "yourWalletIsReadyFromReminder": { + "message": "Keep your Secret Recovery Phrase safe!" + } + } + }, + "smartAccounts": { + "toggleStates": {} + }, + "rewards": { + "rewardsModalOpen": false, + "onboardingReferralCode": "", + "geoLocation": null, + "optinAllowedForGeo": null, + "optinAllowedForGeoLoading": false, + "optinAllowedForGeoError": false, + "candidateSubscriptionId": null, + "seasonStatus": null, + "seasonStatusError": null, + "seasonStatusLoading": false, + "rewardsEnabled": false, + "errorToast": { + "isOpen": false, + "title": "", + "description": "", + "actionText": "" + }, + "rewardsBadgeHidden": true, + "accountLinkedTimestamp": null, + "rewardsDeeplinkUrl": null + }, + "perpsTutorial": { + "tutorialModalOpen": false, + "activeStep": "WhatArePerps", + "tutorialCompleted": false + }, + "version": "13.32.0.0", + "browser": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36", + "logs": [ + { + "id": "8b49c320-1747-11f1-b7b3-03d70bc40886", + "log": { + "data": { + "signingData": { + "data": "{\"domain\":{\"verifyingContract\":\"0x7e4c2852fc93613a7b01e50aea48431b125079c5\",\"chainId\":143},\"message\":{\"to\":\"0x9641d764fc13c8b624c04430c7356c1c7c8102e2\",\"value\":\"0\",\"data\":\"0x8d80ff0a000000000000000000000000000000000000000000000000000000000000002000000000000000000000000000000000000000000000000000000000000000d900fb00d4ea6f3f0d0b4a57b32378075df408f2aaba00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000084391224610000000000000000000000000000000000000000000000000000000000000040000000000000000000000000c37d63122911c274493407d4ea37270bc087dbbb0000000000000000000000000000000000000000000000000000000000000013636972636c65436374704164617074657256320000000000000000000000000000000000000000\",\"operation\":1,\"baseGas\":\"0\",\"gasPrice\":\"0\",\"gasToken\":\"0x0000000000000000000000000000000000000000\",\"refundReceiver\":\"0x0000000000000000000000000000000000000000\",\"nonce\":2,\"safeTxGas\":\"0\"},\"primaryType\":\"SafeTx\",\"types\":{\"EIP712Domain\":[{\"name\":\"chainId\",\"type\":\"uint256\"},{\"name\":\"verifyingContract\",\"type\":\"address\"}],\"SafeTx\":[{\"type\":\"address\",\"name\":\"to\"},{\"type\":\"uint256\",\"name\":\"value\"},{\"type\":\"bytes\",\"name\":\"data\"},{\"type\":\"uint8\",\"name\":\"operation\"},{\"type\":\"uint256\",\"name\":\"safeTxGas\"},{\"type\":\"uint256\",\"name\":\"baseGas\"},{\"type\":\"uint256\",\"name\":\"gasPrice\"},{\"type\":\"address\",\"name\":\"gasToken\"},{\"type\":\"address\",\"name\":\"refundReceiver\"},{\"type\":\"uint256\",\"name\":\"nonce\"}]}}", + "from": "0x9f66e62fd52eeb9286385f620d2bcbe02c94443e", + "signatureMethod": "eth_signTypedData_v4", + "version": "V4" + }, + "signingMethod": "eth_signTypedData_v4", + "stage": "proposed" + }, + "type": "EthSignLog" + }, + "timestamp": 1772573147218 + }, + { + "id": "8f0ce5a0-1747-11f1-b7c4-03d70bc40886", + "log": { + "data": { + "signingData": { + "data": "{\"domain\":{\"verifyingContract\":\"0x7e4c2852fc93613a7b01e50aea48431b125079c5\",\"chainId\":143},\"message\":{\"to\":\"0x9641d764fc13c8b624c04430c7356c1c7c8102e2\",\"value\":\"0\",\"data\":\"0x8d80ff0a000000000000000000000000000000000000000000000000000000000000002000000000000000000000000000000000000000000000000000000000000000d900fb00d4ea6f3f0d0b4a57b32378075df408f2aaba00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000084391224610000000000000000000000000000000000000000000000000000000000000040000000000000000000000000c37d63122911c274493407d4ea37270bc087dbbb0000000000000000000000000000000000000000000000000000000000000013636972636c65436374704164617074657256320000000000000000000000000000000000000000\",\"operation\":1,\"baseGas\":\"0\",\"gasPrice\":\"0\",\"gasToken\":\"0x0000000000000000000000000000000000000000\",\"refundReceiver\":\"0x0000000000000000000000000000000000000000\",\"nonce\":2,\"safeTxGas\":\"0\"},\"primaryType\":\"SafeTx\",\"types\":{\"EIP712Domain\":[{\"name\":\"chainId\",\"type\":\"uint256\"},{\"name\":\"verifyingContract\",\"type\":\"address\"}],\"SafeTx\":[{\"type\":\"address\",\"name\":\"to\"},{\"type\":\"uint256\",\"name\":\"value\"},{\"type\":\"bytes\",\"name\":\"data\"},{\"type\":\"uint8\",\"name\":\"operation\"},{\"type\":\"uint256\",\"name\":\"safeTxGas\"},{\"type\":\"uint256\",\"name\":\"baseGas\"},{\"type\":\"uint256\",\"name\":\"gasPrice\"},{\"type\":\"address\",\"name\":\"gasToken\"},{\"type\":\"address\",\"name\":\"refundReceiver\"},{\"type\":\"uint256\",\"name\":\"nonce\"}]}}", + "from": "0x9f66e62fd52eeb9286385f620d2bcbe02c94443e", + "signatureMethod": "eth_signTypedData_v4", + "version": "V4" + }, + "signingMethod": "eth_signTypedData_v4", + "stage": "proposed" + }, + "type": "EthSignLog" + }, + "timestamp": 1772573153530 + }, + { + "id": "98e9c4d0-1747-11f1-b7cd-03d70bc40886", + "log": { + "data": { + "signingData": { + "data": "{\"domain\":{\"verifyingContract\":\"0x7e4c2852fc93613a7b01e50aea48431b125079c5\",\"chainId\":143},\"message\":{\"to\":\"0x9641d764fc13c8b624c04430c7356c1c7c8102e2\",\"value\":\"0\",\"data\":\"0x8d80ff0a000000000000000000000000000000000000000000000000000000000000002000000000000000000000000000000000000000000000000000000000000000d900fb00d4ea6f3f0d0b4a57b32378075df408f2aaba00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000084391224610000000000000000000000000000000000000000000000000000000000000040000000000000000000000000c37d63122911c274493407d4ea37270bc087dbbb0000000000000000000000000000000000000000000000000000000000000013636972636c65436374704164617074657256320000000000000000000000000000000000000000\",\"operation\":1,\"baseGas\":\"0\",\"gasPrice\":\"0\",\"gasToken\":\"0x0000000000000000000000000000000000000000\",\"refundReceiver\":\"0x0000000000000000000000000000000000000000\",\"nonce\":2,\"safeTxGas\":\"0\"},\"primaryType\":\"SafeTx\",\"types\":{\"EIP712Domain\":[{\"name\":\"chainId\",\"type\":\"uint256\"},{\"name\":\"verifyingContract\",\"type\":\"address\"}],\"SafeTx\":[{\"type\":\"address\",\"name\":\"to\"},{\"type\":\"uint256\",\"name\":\"value\"},{\"type\":\"bytes\",\"name\":\"data\"},{\"type\":\"uint8\",\"name\":\"operation\"},{\"type\":\"uint256\",\"name\":\"safeTxGas\"},{\"type\":\"uint256\",\"name\":\"baseGas\"},{\"type\":\"uint256\",\"name\":\"gasPrice\"},{\"type\":\"address\",\"name\":\"gasToken\"},{\"type\":\"address\",\"name\":\"refundReceiver\"},{\"type\":\"uint256\",\"name\":\"nonce\"}]}}", + "from": "0x9f66e62fd52eeb9286385f620d2bcbe02c94443e", + "signatureMethod": "eth_signTypedData_v4", + "version": "V4" + }, + "signingMethod": "eth_signTypedData_v4", + "stage": "proposed" + }, + "type": "EthSignLog" + }, + "timestamp": 1772573170077 + }, + { + "id": "9f60e3c0-1747-11f1-b7d6-03d70bc40886", + "log": { + "data": { + "signingData": { + "data": "{\"domain\":{\"verifyingContract\":\"0x7e4c2852fc93613a7b01e50aea48431b125079c5\",\"chainId\":143},\"message\":{\"to\":\"0x9641d764fc13c8b624c04430c7356c1c7c8102e2\",\"value\":\"0\",\"data\":\"0x8d80ff0a000000000000000000000000000000000000000000000000000000000000002000000000000000000000000000000000000000000000000000000000000000d900fb00d4ea6f3f0d0b4a57b32378075df408f2aaba00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000084391224610000000000000000000000000000000000000000000000000000000000000040000000000000000000000000c37d63122911c274493407d4ea37270bc087dbbb0000000000000000000000000000000000000000000000000000000000000013636972636c65436374704164617074657256320000000000000000000000000000000000000000\",\"operation\":1,\"baseGas\":\"0\",\"gasPrice\":\"0\",\"gasToken\":\"0x0000000000000000000000000000000000000000\",\"refundReceiver\":\"0x0000000000000000000000000000000000000000\",\"nonce\":2,\"safeTxGas\":\"0\"},\"primaryType\":\"SafeTx\",\"types\":{\"EIP712Domain\":[{\"name\":\"chainId\",\"type\":\"uint256\"},{\"name\":\"verifyingContract\",\"type\":\"address\"}],\"SafeTx\":[{\"type\":\"address\",\"name\":\"to\"},{\"type\":\"uint256\",\"name\":\"value\"},{\"type\":\"bytes\",\"name\":\"data\"},{\"type\":\"uint8\",\"name\":\"operation\"},{\"type\":\"uint256\",\"name\":\"safeTxGas\"},{\"type\":\"uint256\",\"name\":\"baseGas\"},{\"type\":\"uint256\",\"name\":\"gasPrice\"},{\"type\":\"address\",\"name\":\"gasToken\"},{\"type\":\"address\",\"name\":\"refundReceiver\"},{\"type\":\"uint256\",\"name\":\"nonce\"}]}}", + "from": "0x9f66e62fd52eeb9286385f620d2bcbe02c94443e", + "metamaskId": "98e9c4d1-1747-11f1-b7cd-03d70bc40886", + "origin": "https://app.safe.global", + "requestId": 1878310115, + "signatureMethod": "eth_signTypedData_v4", + "version": "V4" + }, + "signingMethod": "eth_signTypedData_v4", + "stage": "signed" + }, + "type": "EthSignLog" + }, + "timestamp": 1772573180924 + }, + { + "id": "f696eff0-1e2b-11f1-a9ab-a1628dd5d3f8", + "log": { + "data": { + "signingData": { + "data": "{\"domain\":{\"verifyingContract\":\"0x4040ae3e14c17f581b237c59bf07d41c1aa2bc70\",\"chainId\":143},\"message\":{\"to\":\"0x4040ae3e14c17f581b237c59bf07d41c1aa2bc70\",\"value\":\"0\",\"data\":\"0x0d582f13000000000000000000000000f052a7d1d73d47356c02dbbe43d4f0f6478dee760000000000000000000000000000000000000000000000000000000000000005\",\"operation\":0,\"baseGas\":\"0\",\"gasPrice\":\"0\",\"gasToken\":\"0x0000000000000000000000000000000000000000\",\"refundReceiver\":\"0x0000000000000000000000000000000000000000\",\"nonce\":4,\"safeTxGas\":\"0\"},\"primaryType\":\"SafeTx\",\"types\":{\"EIP712Domain\":[{\"name\":\"chainId\",\"type\":\"uint256\"},{\"name\":\"verifyingContract\",\"type\":\"address\"}],\"SafeTx\":[{\"type\":\"address\",\"name\":\"to\"},{\"type\":\"uint256\",\"name\":\"value\"},{\"type\":\"bytes\",\"name\":\"data\"},{\"type\":\"uint8\",\"name\":\"operation\"},{\"type\":\"uint256\",\"name\":\"safeTxGas\"},{\"type\":\"uint256\",\"name\":\"baseGas\"},{\"type\":\"uint256\",\"name\":\"gasPrice\"},{\"type\":\"address\",\"name\":\"gasToken\"},{\"type\":\"address\",\"name\":\"refundReceiver\"},{\"type\":\"uint256\",\"name\":\"nonce\"}]}}", + "from": "0x9f66e62fd52eeb9286385f620d2bcbe02c94443e", + "signatureMethod": "eth_signTypedData_v4", + "version": "V4" + }, + "signingMethod": "eth_signTypedData_v4", + "stage": "proposed" + }, + "type": "EthSignLog" + }, + "timestamp": 1773330959471 + }, + { + "id": "0bfc3b70-1e2c-11f1-a9ab-a1628dd5d3f8", + "log": { + "data": { + "signingData": { + "data": "{\"domain\":{\"verifyingContract\":\"0x4040ae3e14c17f581b237c59bf07d41c1aa2bc70\",\"chainId\":143},\"message\":{\"to\":\"0x4040ae3e14c17f581b237c59bf07d41c1aa2bc70\",\"value\":\"0\",\"data\":\"0x0d582f13000000000000000000000000f052a7d1d73d47356c02dbbe43d4f0f6478dee760000000000000000000000000000000000000000000000000000000000000005\",\"operation\":0,\"baseGas\":\"0\",\"gasPrice\":\"0\",\"gasToken\":\"0x0000000000000000000000000000000000000000\",\"refundReceiver\":\"0x0000000000000000000000000000000000000000\",\"nonce\":4,\"safeTxGas\":\"0\"},\"primaryType\":\"SafeTx\",\"types\":{\"EIP712Domain\":[{\"name\":\"chainId\",\"type\":\"uint256\"},{\"name\":\"verifyingContract\",\"type\":\"address\"}],\"SafeTx\":[{\"type\":\"address\",\"name\":\"to\"},{\"type\":\"uint256\",\"name\":\"value\"},{\"type\":\"bytes\",\"name\":\"data\"},{\"type\":\"uint8\",\"name\":\"operation\"},{\"type\":\"uint256\",\"name\":\"safeTxGas\"},{\"type\":\"uint256\",\"name\":\"baseGas\"},{\"type\":\"uint256\",\"name\":\"gasPrice\"},{\"type\":\"address\",\"name\":\"gasToken\"},{\"type\":\"address\",\"name\":\"refundReceiver\"},{\"type\":\"uint256\",\"name\":\"nonce\"}]}}", + "from": "0x9f66e62fd52eeb9286385f620d2bcbe02c94443e", + "metamaskId": "f696eff1-1e2b-11f1-a9ab-a1628dd5d3f8", + "origin": "https://app.safe.global", + "requestId": 627910418, + "signatureMethod": "eth_signTypedData_v4", + "version": "V4" + }, + "signingMethod": "eth_signTypedData_v4", + "stage": "signed" + }, + "type": "EthSignLog" + }, + "timestamp": 1773330995367 + }, + { + "id": "46dd5260-1e2c-11f1-a9ab-a1628dd5d3f8", + "log": { + "data": { + "signingData": { + "data": "{\"domain\":{\"verifyingContract\":\"0x4040ae3e14c17f581b237c59bf07d41c1aa2bc70\",\"chainId\":143},\"message\":{\"to\":\"0x4040ae3e14c17f581b237c59bf07d41c1aa2bc70\",\"value\":\"0\",\"data\":\"0x0d582f130000000000000000000000002a449ec2a0dcc20f970d0a33cdebc296e268d1460000000000000000000000000000000000000000000000000000000000000005\",\"operation\":0,\"baseGas\":\"0\",\"gasPrice\":\"0\",\"gasToken\":\"0x0000000000000000000000000000000000000000\",\"refundReceiver\":\"0x0000000000000000000000000000000000000000\",\"nonce\":5,\"safeTxGas\":\"0\"},\"primaryType\":\"SafeTx\",\"types\":{\"EIP712Domain\":[{\"name\":\"chainId\",\"type\":\"uint256\"},{\"name\":\"verifyingContract\",\"type\":\"address\"}],\"SafeTx\":[{\"type\":\"address\",\"name\":\"to\"},{\"type\":\"uint256\",\"name\":\"value\"},{\"type\":\"bytes\",\"name\":\"data\"},{\"type\":\"uint8\",\"name\":\"operation\"},{\"type\":\"uint256\",\"name\":\"safeTxGas\"},{\"type\":\"uint256\",\"name\":\"baseGas\"},{\"type\":\"uint256\",\"name\":\"gasPrice\"},{\"type\":\"address\",\"name\":\"gasToken\"},{\"type\":\"address\",\"name\":\"refundReceiver\"},{\"type\":\"uint256\",\"name\":\"nonce\"}]}}", + "from": "0x9f66e62fd52eeb9286385f620d2bcbe02c94443e", + "signatureMethod": "eth_signTypedData_v4", + "version": "V4" + }, + "signingMethod": "eth_signTypedData_v4", + "stage": "proposed" + }, + "type": "EthSignLog" + }, + "timestamp": 1773331094150 + }, + { + "id": "4b35d710-1e2c-11f1-a9ab-a1628dd5d3f8", + "log": { + "data": { + "signingData": { + "data": "{\"domain\":{\"verifyingContract\":\"0x4040ae3e14c17f581b237c59bf07d41c1aa2bc70\",\"chainId\":143},\"message\":{\"to\":\"0x4040ae3e14c17f581b237c59bf07d41c1aa2bc70\",\"value\":\"0\",\"data\":\"0x0d582f130000000000000000000000002a449ec2a0dcc20f970d0a33cdebc296e268d1460000000000000000000000000000000000000000000000000000000000000005\",\"operation\":0,\"baseGas\":\"0\",\"gasPrice\":\"0\",\"gasToken\":\"0x0000000000000000000000000000000000000000\",\"refundReceiver\":\"0x0000000000000000000000000000000000000000\",\"nonce\":5,\"safeTxGas\":\"0\"},\"primaryType\":\"SafeTx\",\"types\":{\"EIP712Domain\":[{\"name\":\"chainId\",\"type\":\"uint256\"},{\"name\":\"verifyingContract\",\"type\":\"address\"}],\"SafeTx\":[{\"type\":\"address\",\"name\":\"to\"},{\"type\":\"uint256\",\"name\":\"value\"},{\"type\":\"bytes\",\"name\":\"data\"},{\"type\":\"uint8\",\"name\":\"operation\"},{\"type\":\"uint256\",\"name\":\"safeTxGas\"},{\"type\":\"uint256\",\"name\":\"baseGas\"},{\"type\":\"uint256\",\"name\":\"gasPrice\"},{\"type\":\"address\",\"name\":\"gasToken\"},{\"type\":\"address\",\"name\":\"refundReceiver\"},{\"type\":\"uint256\",\"name\":\"nonce\"}]}}", + "from": "0x9f66e62fd52eeb9286385f620d2bcbe02c94443e", + "metamaskId": "46dd5261-1e2c-11f1-a9ab-a1628dd5d3f8", + "origin": "https://app.safe.global", + "requestId": 1118005244, + "signatureMethod": "eth_signTypedData_v4", + "version": "V4" + }, + "signingMethod": "eth_signTypedData_v4", + "stage": "signed" + }, + "type": "EthSignLog" + }, + "timestamp": 1773331101441 + }, + { + "id": "7251e500-1e2c-11f1-a9ab-a1628dd5d3f8", + "log": { + "data": { + "signingData": { + "data": "{\"domain\":{\"verifyingContract\":\"0xa10bdf04f5d2e65265ab2ff351dc29f1d4a12f63\",\"chainId\":42161},\"message\":{\"to\":\"0xa10bdf04f5d2e65265ab2ff351dc29f1d4a12f63\",\"value\":\"0\",\"data\":\"0x0d582f13000000000000000000000000f052a7d1d73d47356c02dbbe43d4f0f6478dee760000000000000000000000000000000000000000000000000000000000000005\",\"operation\":0,\"baseGas\":\"0\",\"gasPrice\":\"0\",\"gasToken\":\"0x0000000000000000000000000000000000000000\",\"refundReceiver\":\"0x0000000000000000000000000000000000000000\",\"nonce\":42,\"safeTxGas\":\"0\"},\"primaryType\":\"SafeTx\",\"types\":{\"EIP712Domain\":[{\"name\":\"chainId\",\"type\":\"uint256\"},{\"name\":\"verifyingContract\",\"type\":\"address\"}],\"SafeTx\":[{\"type\":\"address\",\"name\":\"to\"},{\"type\":\"uint256\",\"name\":\"value\"},{\"type\":\"bytes\",\"name\":\"data\"},{\"type\":\"uint8\",\"name\":\"operation\"},{\"type\":\"uint256\",\"name\":\"safeTxGas\"},{\"type\":\"uint256\",\"name\":\"baseGas\"},{\"type\":\"uint256\",\"name\":\"gasPrice\"},{\"type\":\"address\",\"name\":\"gasToken\"},{\"type\":\"address\",\"name\":\"refundReceiver\"},{\"type\":\"uint256\",\"name\":\"nonce\"}]}}", + "from": "0x9f66e62fd52eeb9286385f620d2bcbe02c94443e", + "signatureMethod": "eth_signTypedData_v4", + "version": "V4" + }, + "signingMethod": "eth_signTypedData_v4", + "stage": "proposed" + }, + "type": "EthSignLog" + }, + "timestamp": 1773331167056 + }, + { + "id": "7b116d50-1e2c-11f1-a9ab-a1628dd5d3f8", + "log": { + "data": { + "signingData": { + "data": "{\"domain\":{\"verifyingContract\":\"0xa10bdf04f5d2e65265ab2ff351dc29f1d4a12f63\",\"chainId\":42161},\"message\":{\"to\":\"0xa10bdf04f5d2e65265ab2ff351dc29f1d4a12f63\",\"value\":\"0\",\"data\":\"0x0d582f13000000000000000000000000f052a7d1d73d47356c02dbbe43d4f0f6478dee760000000000000000000000000000000000000000000000000000000000000005\",\"operation\":0,\"baseGas\":\"0\",\"gasPrice\":\"0\",\"gasToken\":\"0x0000000000000000000000000000000000000000\",\"refundReceiver\":\"0x0000000000000000000000000000000000000000\",\"nonce\":42,\"safeTxGas\":\"0\"},\"primaryType\":\"SafeTx\",\"types\":{\"EIP712Domain\":[{\"name\":\"chainId\",\"type\":\"uint256\"},{\"name\":\"verifyingContract\",\"type\":\"address\"}],\"SafeTx\":[{\"type\":\"address\",\"name\":\"to\"},{\"type\":\"uint256\",\"name\":\"value\"},{\"type\":\"bytes\",\"name\":\"data\"},{\"type\":\"uint8\",\"name\":\"operation\"},{\"type\":\"uint256\",\"name\":\"safeTxGas\"},{\"type\":\"uint256\",\"name\":\"baseGas\"},{\"type\":\"uint256\",\"name\":\"gasPrice\"},{\"type\":\"address\",\"name\":\"gasToken\"},{\"type\":\"address\",\"name\":\"refundReceiver\"},{\"type\":\"uint256\",\"name\":\"nonce\"}]}}", + "from": "0x9f66e62fd52eeb9286385f620d2bcbe02c94443e", + "metamaskId": "7251e501-1e2c-11f1-a9ab-a1628dd5d3f8", + "origin": "https://app.safe.global", + "requestId": 2568699685, + "signatureMethod": "eth_signTypedData_v4", + "version": "V4" + }, + "signingMethod": "eth_signTypedData_v4", + "stage": "signed" + }, + "type": "EthSignLog" + }, + "timestamp": 1773331181733 + } + ], + "platform": { + "arch": "arm64", + "nacl_arch": "arm", + "os": "mac" + } +} diff --git a/packages/bridge-status-controller/src/utils/transaction.test.ts b/packages/bridge-status-controller/src/utils/transaction.test.ts index 55a7593c24..6776d35e72 100644 --- a/packages/bridge-status-controller/src/utils/transaction.test.ts +++ b/packages/bridge-status-controller/src/utils/transaction.test.ts @@ -1757,7 +1757,7 @@ describe('Bridge Status Controller Transaction Utils', () => { valueInCurrency: '200', usd: '200', }, - } as never); + }) as never; const createMockMessagingSystem = ( estimateGasFeeOverrides: Record = { estimates: {} }, @@ -1778,7 +1778,7 @@ describe('Bridge Status Controller Transaction Utils', () => { } return undefined; }), - } as unknown as BridgeStatusControllerMessenger); + }) as unknown as BridgeStatusControllerMessenger; beforeEach(() => { jest.clearAllMocks(); diff --git a/quote.json b/quote.json new file mode 100644 index 0000000000..8532e448f3 --- /dev/null +++ b/quote.json @@ -0,0 +1,161 @@ +{ + "quote": { + "requestId": "0xe511a9ac028db6fbfc538a5e00c707fe7bb31d4ad94eb357732f0524ddae27af", + "bridgeId": "uniswap", + "srcChainId": 137, + "destChainId": 137, + "aggregator": "uniswap", + "aggregatorType": "AGG", + "srcAsset": { + "address": "0xb33eaad8d922b1083446dc23f610c2567fb5180f", + "chainId": 137, + "assetId": "eip155:137/erc20:0xb33eaad8d922b1083446dc23f610c2567fb5180f", + "symbol": "UNI", + "decimals": 18, + "name": "Uniswap", + "coingeckoId": "uniswap", + "aggregators": [ + "sonarwatch", + "oneInch", + "liFi", + "socket", + "rubic", + "squid", + "rango", + "sushiSwap" + ], + "occurrences": 8, + "iconUrl": "https://static.cx.metamask.io/api/v2/tokenIcons/assets/eip155/137/erc20/0xb33eaad8d922b1083446dc23f610c2567fb5180f.png", + "metadata": { + "storage": { + "balance": 0, + "approval": 1 + } + } + }, + "srcTokenAmount": "517035587535857984", + "destAsset": { + "address": "0x2791bca1f2de4661ed88a30c99a7a9449aa84174", + "chainId": 137, + "assetId": "eip155:137/erc20:0x2791bca1f2de4661ed88a30c99a7a9449aa84174", + "symbol": "USDC.E", + "decimals": 6, + "name": "USD Coin (PoS)", + "coingeckoId": "bridged-usdc-polygon-pos-bridge", + "aggregators": [ + "metamask", + "oneInch", + "liFi", + "trustWallet", + "socket", + "rubic", + "squid", + "rango", + "sonarwatch", + "sushiSwap" + ], + "occurrences": 10, + "iconUrl": "https://static.cx.metamask.io/api/v2/tokenIcons/assets/eip155/137/erc20/0x2791bca1f2de4661ed88a30c99a7a9449aa84174.png", + "metadata": { + "storage": { + "balance": 0, + "approval": 1 + } + } + }, + "destTokenAmount": "1923469", + "minDestTokenAmount": "1913851", + "walletAddress": "0x141d32a89a1e0a5ef360034a2f60a4b917c18838", + "destWalletAddress": "0x141d32a89a1e0a5ef360034a2f60a4b917c18838", + "feeData": { + "metabridge": { + "amount": "16978", + "asset": { + "address": "0x2791bca1f2de4661ed88a30c99a7a9449aa84174", + "chainId": 137, + "assetId": "eip155:137/erc20:0x2791bca1f2de4661ed88a30c99a7a9449aa84174", + "symbol": "USDC.E", + "decimals": 6, + "name": "USD Coin (PoS)", + "coingeckoId": "bridged-usdc-polygon-pos-bridge", + "aggregators": [ + "metamask", + "oneInch", + "liFi", + "trustWallet", + "socket", + "rubic", + "squid", + "rango", + "sonarwatch", + "sushiSwap" + ], + "occurrences": 10, + "iconUrl": "https://static.cx.metamask.io/api/v2/tokenIcons/assets/eip155/137/erc20/0x2791bca1f2de4661ed88a30c99a7a9449aa84174.png", + "metadata": { + "storage": { + "balance": 0, + "approval": 1 + } + } + }, + "quoteBpsFee": 87.5, + "baseBpsFee": 87.5, + "usd": "0.01697435593009302" + } + }, + "bridges": ["uniswap"], + "protocols": ["uniswap"], + "steps": [], + "slippage": 0.5, + "gasSponsored": false, + "gasIncluded": false, + "gasIncluded7702": false, + "priceData": { + "totalFromAmountUsd": "1.9440538091348258", + "totalToAmountUsd": "1.9230561565849975", + "priceImpact": "0.0020695397425886273", + "totalFeeAmountUsd": "0.01697435593009302" + } + }, + "approval": { + "chainId": 137, + "to": "0xb33eaad8d922b1083446dc23f610c2567fb5180f", + "from": "0x141d32a89a1e0a5ef360034a2f60a4b917c18838", + "value": "0x0", + "data": "0x095ea7b30000000000000000000000001a1ec25dc08e98e5e93f1104b5e5cdd298707d31000000000000000000000000000000000000000000000000072ce120a34f6940", + "gasLimit": 59233, + "feeEstimate": 14984656506375320, + "effectiveGas": 51784, + "gasCost": "12779078883377832", + "gasIncludedFeeData": { + "maxFeePerGas": "0x4a8e555550", + "maxPriorityFeePerGas": "0x9eaac6d4e", + "gas": "0xe761", + "balanceNeeded": "0x4362aeee508350", + "currentBalance": "0xe3485cfd14b41c", + "error": "Not enough funds" + } + }, + "trade": { + "chainId": 137, + "to": "0x1a1ec25DC08e98e5E93F1104B5e5cdD298707d31", + "from": "0x141d32a89a1e0a5ef360034a2f60a4b917c18838", + "value": "0x0", + "data": "0x5f5755290000000000000000000000000000000000000000000000000000000000000080000000000000000000000000b33eaad8d922b1083446dc23f610c2567fb5180f000000000000000000000000000000000000000000000000072ce120a34f694000000000000000000000000000000000000000000000000000000000000000c00000000000000000000000000000000000000000000000000000000000000018756e69737761705065726d69743246656544796e616d696300000000000000000000000000000000000000000000000000000000000000000000000000000340000000000000000000000000b33eaad8d922b1083446dc23f610c2567fb5180f0000000000000000000000002791bca1f2de4661ed88a30c99a7a9449aa84174000000000000000000000000000000000000000000000000072ce120a34f694000000000000000000000000000000000000000000000000000000000001d33fb00000000000000000000000000000000000000000000000000000000000001200000000000000000000000000000000000000000000000000000000000004252000000000000000000000000930dedddb92fef1b4ab2665d250877339f064eac0000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000020e3593564c000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000000a0000000000000000000000000000000000000000000000000000000006a063c0700000000000000000000000000000000000000000000000000000000000000010000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000000000200000000000000000000000000000000000000000000000000000000000000100000000000000000000000000c590175e458b83680867afd273527ff58f74c02b000000000000000000000000000000000000000000000000072ce120a34f694000000000000000000000000000000000000000000000000000000000001d762900000000000000000000000000000000000000000000000000000000000000a00000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000002bb33eaad8d922b1083446dc23f610c2567fb5180f000bb82791bca1f2de4661ed88a30c99a7a9449aa84174000000000000000000000000000000000000000000756e69780000b2c5de0b0000000000000000000000000000000000000b", + "gasLimit": 456275, + "feeEstimate": 68249867029983590, + "effectiveGas": 235858, + "gasCost": "58204232721993834", + "gasIncludedFeeData": { + "maxFeePerGas": "0x4a8e555550", + "maxPriorityFeePerGas": "0x9eaac6d4e", + "gas": "0x4a437", + "balanceNeeded": "0x15a0c88943c9430", + "currentBalance": "0x9fe5ae0ec430cc", + "error": "Not enough funds" + } + }, + "estimatedProcessingTimeInSeconds": 0, + "quoteId": "3562c5b0-41e8-4f7d-8b04-a5c10e054fbd" +} From f6fd0204fbd1bf82e7c21bb57b8765c0d385dd2f Mon Sep 17 00:00:00 2001 From: micaelae Date: Fri, 22 May 2026 11:46:47 -0700 Subject: [PATCH 6/7] chore: rm files --- MetaMask state logs.json | 325158 ------------------------------------ quote.json | 161 - 2 files changed, 325319 deletions(-) delete mode 100644 MetaMask state logs.json delete mode 100644 quote.json diff --git a/MetaMask state logs.json b/MetaMask state logs.json deleted file mode 100644 index a358cd2b73..0000000000 --- a/MetaMask state logs.json +++ /dev/null @@ -1,325158 +0,0 @@ -{ - "invalidCustomNetwork": { - "state": "CLOSED", - "networkName": "" - }, - "unconnectedAccount": { - "state": "CLOSED" - }, - "activeTab": { - "id": 809479887, - "title": "feat: submit batch sell quotes by micaelae · Pull Request #8775 · MetaMask/core", - "origin": "https://github.com", - "protocol": "https:", - "url": "https://github.com/MetaMask/core/pull/8775" - }, - "metamask": { - "isInitialized": true, - "isUnlocked": true, - "internalAccounts": { - "accounts": { - "cf6fe6ed-1d1c-4649-9662-a232e0aadb82": { - "id": "cf6fe6ed-1d1c-4649-9662-a232e0aadb82", - "address": "0x30e8ccad5a980bdf30447f8c2c48e70989d9d294", - "options": { - "entropySource": "01KJ6E9MG4VY87VPKWJPR6W39K", - "derivationPath": "m/44'/60'/0'/0/0", - "groupIndex": 0, - "entropy": { - "type": "mnemonic", - "id": "01KJ6E9MG4VY87VPKWJPR6W39K", - "derivationPath": "m/44'/60'/0'/0/0", - "groupIndex": 0 - } - }, - "methods": [ - "personal_sign", - "eth_sign", - "eth_signTransaction", - "eth_signTypedData_v1", - "eth_signTypedData_v3", - "eth_signTypedData_v4" - ], - "scopes": ["eip155:0"], - "type": "eip155:eoa", - "metadata": { - "name": "Account 1", - "importTime": 1771890332166, - "lastSelected": 1778721516063, - "keyring": { - "type": "HD Key Tree" - } - } - }, - "7020eb89-94df-4e67-ba9f-a9ebe6c40524": { - "id": "7020eb89-94df-4e67-ba9f-a9ebe6c40524", - "address": "0xf25bd11c334507fd007d584e2d0b7b2c6543f714", - "options": { - "entropySource": "01KJ6E9MG4VY87VPKWJPR6W39K", - "derivationPath": "m/44'/60'/0'/0/1", - "groupIndex": 1, - "entropy": { - "type": "mnemonic", - "id": "01KJ6E9MG4VY87VPKWJPR6W39K", - "derivationPath": "m/44'/60'/0'/0/1", - "groupIndex": 1 - } - }, - "methods": [ - "personal_sign", - "eth_sign", - "eth_signTransaction", - "eth_signTypedData_v1", - "eth_signTypedData_v3", - "eth_signTypedData_v4" - ], - "scopes": ["eip155:0"], - "type": "eip155:eoa", - "metadata": { - "name": "Account 2", - "importTime": 1771890336300, - "lastSelected": 1778721549394, - "keyring": { - "type": "HD Key Tree" - } - } - }, - "02c4222b-f0d3-448e-848f-7bf6b3ce3379": { - "id": "02c4222b-f0d3-448e-848f-7bf6b3ce3379", - "address": "0xe2f39519240814a77047490357ced4d094b6c9c7", - "options": { - "entropySource": "01KJ6E9MG4VY87VPKWJPR6W39K", - "derivationPath": "m/44'/60'/0'/0/2", - "groupIndex": 2, - "entropy": { - "type": "mnemonic", - "id": "01KJ6E9MG4VY87VPKWJPR6W39K", - "derivationPath": "m/44'/60'/0'/0/2", - "groupIndex": 2 - } - }, - "methods": [ - "personal_sign", - "eth_sign", - "eth_signTransaction", - "eth_signTypedData_v1", - "eth_signTypedData_v3", - "eth_signTypedData_v4" - ], - "scopes": ["eip155:0"], - "type": "eip155:eoa", - "metadata": { - "name": "Account 3", - "importTime": 1771890336302, - "lastSelected": 1778616449020, - "keyring": { - "type": "HD Key Tree" - } - } - }, - "2ddfe00a-fef1-4085-82f5-e5cdc9d8871f": { - "id": "2ddfe00a-fef1-4085-82f5-e5cdc9d8871f", - "address": "0x452ca3dad6db7f3a47bbf15b758b6749db579bbc", - "options": { - "entropySource": "01KJ6E9MG4VY87VPKWJPR6W39K", - "derivationPath": "m/44'/60'/0'/0/3", - "groupIndex": 3, - "entropy": { - "type": "mnemonic", - "id": "01KJ6E9MG4VY87VPKWJPR6W39K", - "derivationPath": "m/44'/60'/0'/0/3", - "groupIndex": 3 - } - }, - "methods": [ - "personal_sign", - "eth_sign", - "eth_signTransaction", - "eth_signTypedData_v1", - "eth_signTypedData_v3", - "eth_signTypedData_v4" - ], - "scopes": ["eip155:0"], - "type": "eip155:eoa", - "metadata": { - "name": "Account 4", - "importTime": 1771890336303, - "lastSelected": 1777420287284, - "keyring": { - "type": "HD Key Tree" - } - } - }, - "4ad41148-9589-48f1-a20d-1ddd6bcf1282": { - "id": "4ad41148-9589-48f1-a20d-1ddd6bcf1282", - "address": "0x2b6a82d1fea4d5b137095ca5306ba2589b630a08", - "options": { - "entropySource": "01KJ6E9MG4VY87VPKWJPR6W39K", - "derivationPath": "m/44'/60'/0'/0/4", - "groupIndex": 4, - "entropy": { - "type": "mnemonic", - "id": "01KJ6E9MG4VY87VPKWJPR6W39K", - "derivationPath": "m/44'/60'/0'/0/4", - "groupIndex": 4 - } - }, - "methods": [ - "personal_sign", - "eth_sign", - "eth_signTransaction", - "eth_signTypedData_v1", - "eth_signTypedData_v3", - "eth_signTypedData_v4" - ], - "scopes": ["eip155:0"], - "type": "eip155:eoa", - "metadata": { - "name": "Account 5", - "importTime": 1771890336305, - "lastSelected": 0, - "keyring": { - "type": "HD Key Tree" - } - } - }, - "4493467c-a178-494e-b87e-92f0d7a7d1a1": { - "id": "4493467c-a178-494e-b87e-92f0d7a7d1a1", - "address": "0x94d1362400e999b38c845ca2c305c084031dae84", - "options": { - "entropySource": "01KJ6E9MG4VY87VPKWJPR6W39K", - "derivationPath": "m/44'/60'/0'/0/5", - "groupIndex": 5, - "entropy": { - "type": "mnemonic", - "id": "01KJ6E9MG4VY87VPKWJPR6W39K", - "derivationPath": "m/44'/60'/0'/0/5", - "groupIndex": 5 - } - }, - "methods": [ - "personal_sign", - "eth_sign", - "eth_signTransaction", - "eth_signTypedData_v1", - "eth_signTypedData_v3", - "eth_signTypedData_v4" - ], - "scopes": ["eip155:0"], - "type": "eip155:eoa", - "metadata": { - "name": "Account 6", - "importTime": 1771890336306, - "lastSelected": 0, - "keyring": { - "type": "HD Key Tree" - } - } - }, - "77939f4e-1d05-4224-bf26-90dcc3382f5d": { - "id": "77939f4e-1d05-4224-bf26-90dcc3382f5d", - "address": "0x83ad6a1294d949d514361326bcebae4f73957327", - "options": { - "entropySource": "01KJ6E9MG4VY87VPKWJPR6W39K", - "derivationPath": "m/44'/60'/0'/0/6", - "groupIndex": 6, - "entropy": { - "type": "mnemonic", - "id": "01KJ6E9MG4VY87VPKWJPR6W39K", - "derivationPath": "m/44'/60'/0'/0/6", - "groupIndex": 6 - } - }, - "methods": [ - "personal_sign", - "eth_sign", - "eth_signTransaction", - "eth_signTypedData_v1", - "eth_signTypedData_v3", - "eth_signTypedData_v4" - ], - "scopes": ["eip155:0"], - "type": "eip155:eoa", - "metadata": { - "name": "Account 7", - "importTime": 1771890336307, - "lastSelected": 1772735626871, - "keyring": { - "type": "HD Key Tree" - } - } - }, - "08127c65-97e2-4502-b576-2b25c8cc765f": { - "id": "08127c65-97e2-4502-b576-2b25c8cc765f", - "address": "0xbcc30cc9b8109f87fcede0c57e3a8c3dc979e3d0", - "options": { - "entropySource": "01KJ6E9MG4VY87VPKWJPR6W39K", - "derivationPath": "m/44'/60'/0'/0/7", - "groupIndex": 7, - "entropy": { - "type": "mnemonic", - "id": "01KJ6E9MG4VY87VPKWJPR6W39K", - "derivationPath": "m/44'/60'/0'/0/7", - "groupIndex": 7 - } - }, - "methods": [ - "personal_sign", - "eth_sign", - "eth_signTransaction", - "eth_signTypedData_v1", - "eth_signTypedData_v3", - "eth_signTypedData_v4" - ], - "scopes": ["eip155:0"], - "type": "eip155:eoa", - "metadata": { - "name": "Account 8", - "importTime": 1771890336309, - "lastSelected": 0, - "keyring": { - "type": "HD Key Tree" - } - } - }, - "7e04501c-6e1f-457d-8dd5-68d8f3a4c84f": { - "id": "7e04501c-6e1f-457d-8dd5-68d8f3a4c84f", - "address": "0x3823c59973351f50e8b985e182b81300dae9bb45", - "options": { - "entropySource": "01KJ6E9MG4VY87VPKWJPR6W39K", - "derivationPath": "m/44'/60'/0'/0/8", - "groupIndex": 8, - "entropy": { - "type": "mnemonic", - "id": "01KJ6E9MG4VY87VPKWJPR6W39K", - "derivationPath": "m/44'/60'/0'/0/8", - "groupIndex": 8 - } - }, - "methods": [ - "personal_sign", - "eth_sign", - "eth_signTransaction", - "eth_signTypedData_v1", - "eth_signTypedData_v3", - "eth_signTypedData_v4" - ], - "scopes": ["eip155:0"], - "type": "eip155:eoa", - "metadata": { - "name": "Account 9", - "importTime": 1772573075929, - "lastSelected": 0, - "keyring": { - "type": "HD Key Tree" - } - } - }, - "db094d8c-3c7b-4a1f-97f5-6d43bf894549": { - "id": "db094d8c-3c7b-4a1f-97f5-6d43bf894549", - "address": "0xc9442048fd0c34b684035a82188b69c4ee5e8f21", - "options": { - "entropySource": "01KJ6E9MG4VY87VPKWJPR6W39K", - "derivationPath": "m/44'/60'/0'/0/9", - "groupIndex": 9, - "entropy": { - "type": "mnemonic", - "id": "01KJ6E9MG4VY87VPKWJPR6W39K", - "derivationPath": "m/44'/60'/0'/0/9", - "groupIndex": 9 - } - }, - "methods": [ - "personal_sign", - "eth_sign", - "eth_signTransaction", - "eth_signTypedData_v1", - "eth_signTypedData_v3", - "eth_signTypedData_v4" - ], - "scopes": ["eip155:0"], - "type": "eip155:eoa", - "metadata": { - "name": "", - "importTime": 1773330804680, - "lastSelected": 0, - "keyring": { - "type": "HD Key Tree" - } - } - }, - "fedf900d-3caf-4540-9e24-c63400ef2b18": { - "id": "fedf900d-3caf-4540-9e24-c63400ef2b18", - "address": "THV8AzsmaMCuCEW3xmxeHQe3nfVjcPESnG", - "type": "tron:eoa", - "options": { - "entropy": { - "type": "mnemonic", - "id": "01KJ6E9MG4VY87VPKWJPR6W39K", - "derivationPath": "m/44'/195'/0'/0/0", - "groupIndex": 0 - }, - "exportable": true, - "entropySource": "01KJ6E9MG4VY87VPKWJPR6W39K", - "index": 0, - "addressType": "tron:eoa", - "scope": "tron:728126428", - "groupIndex": 0 - }, - "methods": ["signMessage", "signTransaction"], - "scopes": ["tron:728126428", "tron:3448148188", "tron:2494104990"], - "metadata": { - "name": "Snap Account 1", - "importTime": 1771890335264, - "keyring": { - "type": "Snap Keyring" - }, - "snap": { - "id": "npm:@metamask/tron-wallet-snap" - }, - "lastSelected": 1778779624107 - } - }, - "1c2440b0-d05e-4b07-881c-ebb9bce2bbb7": { - "id": "1c2440b0-d05e-4b07-881c-ebb9bce2bbb7", - "address": "TTU9eC5J56EhSRhw56NqZW48bJFCC1V4zt", - "type": "tron:eoa", - "options": { - "entropy": { - "type": "mnemonic", - "id": "01KJ6E9MG4VY87VPKWJPR6W39K", - "derivationPath": "m/44'/195'/0'/0/1", - "groupIndex": 1 - }, - "exportable": true, - "entropySource": "01KJ6E9MG4VY87VPKWJPR6W39K", - "index": 1, - "addressType": "tron:eoa", - "scope": "tron:728126428", - "groupIndex": 1 - }, - "methods": ["signMessage", "signTransaction"], - "scopes": ["tron:728126428", "tron:3448148188", "tron:2494104990"], - "metadata": { - "name": "Snap Account 4", - "importTime": 1771890336357, - "keyring": { - "type": "Snap Keyring" - }, - "snap": { - "id": "npm:@metamask/tron-wallet-snap" - }, - "lastSelected": 0 - } - }, - "3d26ef67-6870-4750-af80-bce53fa4a0af": { - "id": "3d26ef67-6870-4750-af80-bce53fa4a0af", - "address": "TLQw3YKJkcBdBsuR4eUxXAYRjQdpD6eEMD", - "type": "tron:eoa", - "options": { - "entropy": { - "type": "mnemonic", - "id": "01KJ6E9MG4VY87VPKWJPR6W39K", - "derivationPath": "m/44'/195'/0'/0/2", - "groupIndex": 2 - }, - "exportable": true, - "entropySource": "01KJ6E9MG4VY87VPKWJPR6W39K", - "index": 2, - "addressType": "tron:eoa", - "scope": "tron:728126428", - "groupIndex": 2 - }, - "methods": ["signMessage", "signTransaction"], - "scopes": ["tron:728126428", "tron:3448148188", "tron:2494104990"], - "metadata": { - "name": "Snap Account 7", - "importTime": 1771890336415, - "keyring": { - "type": "Snap Keyring" - }, - "snap": { - "id": "npm:@metamask/tron-wallet-snap" - }, - "lastSelected": 0 - } - }, - "8b0e3ad2-d40d-47b1-a9c3-702eb67ab1ba": { - "id": "8b0e3ad2-d40d-47b1-a9c3-702eb67ab1ba", - "address": "TJQTuKiGEYBoFaScz3WdpYYVyA7osnLLMa", - "type": "tron:eoa", - "options": { - "entropy": { - "type": "mnemonic", - "id": "01KJ6E9MG4VY87VPKWJPR6W39K", - "derivationPath": "m/44'/195'/0'/0/3", - "groupIndex": 3 - }, - "exportable": true, - "entropySource": "01KJ6E9MG4VY87VPKWJPR6W39K", - "index": 3, - "addressType": "tron:eoa", - "scope": "tron:728126428", - "groupIndex": 3 - }, - "methods": ["signMessage", "signTransaction"], - "scopes": ["tron:728126428", "tron:3448148188", "tron:2494104990"], - "metadata": { - "name": "Snap Account 10", - "importTime": 1771890336466, - "keyring": { - "type": "Snap Keyring" - }, - "snap": { - "id": "npm:@metamask/tron-wallet-snap" - }, - "lastSelected": 0 - } - }, - "9e12503a-12d8-4bb4-835f-a0c203ccd67a": { - "id": "9e12503a-12d8-4bb4-835f-a0c203ccd67a", - "address": "TNhtgmd4AcnN4eB6AqBejjvSJppjg33kKV", - "type": "tron:eoa", - "options": { - "entropy": { - "type": "mnemonic", - "id": "01KJ6E9MG4VY87VPKWJPR6W39K", - "derivationPath": "m/44'/195'/0'/0/4", - "groupIndex": 4 - }, - "exportable": true, - "entropySource": "01KJ6E9MG4VY87VPKWJPR6W39K", - "index": 4, - "addressType": "tron:eoa", - "scope": "tron:728126428", - "groupIndex": 4 - }, - "methods": ["signMessage", "signTransaction"], - "scopes": ["tron:728126428", "tron:3448148188", "tron:2494104990"], - "metadata": { - "name": "Snap Account 12", - "importTime": 1771890336505, - "keyring": { - "type": "Snap Keyring" - }, - "snap": { - "id": "npm:@metamask/tron-wallet-snap" - }, - "lastSelected": 0 - } - }, - "c7cf5799-e458-4bb5-b60b-7e74cf2e7c0a": { - "id": "c7cf5799-e458-4bb5-b60b-7e74cf2e7c0a", - "address": "TQ2WcfeudHttr9ef9PykE4Vf5upUDhzCKy", - "type": "tron:eoa", - "options": { - "entropy": { - "type": "mnemonic", - "id": "01KJ6E9MG4VY87VPKWJPR6W39K", - "derivationPath": "m/44'/195'/0'/0/5", - "groupIndex": 5 - }, - "exportable": true, - "entropySource": "01KJ6E9MG4VY87VPKWJPR6W39K", - "index": 5, - "addressType": "tron:eoa", - "scope": "tron:728126428", - "groupIndex": 5 - }, - "methods": ["signMessage", "signTransaction"], - "scopes": ["tron:728126428", "tron:3448148188", "tron:2494104990"], - "metadata": { - "name": "Snap Account 15", - "importTime": 1771890336544, - "keyring": { - "type": "Snap Keyring" - }, - "snap": { - "id": "npm:@metamask/tron-wallet-snap" - }, - "lastSelected": 0 - } - }, - "f7f2ce83-85bc-49f9-8551-c36c5432a0c1": { - "id": "f7f2ce83-85bc-49f9-8551-c36c5432a0c1", - "address": "TPhMtQEUfTrEc3v6M75cnRfbSC41MZcaDB", - "type": "tron:eoa", - "options": { - "entropy": { - "type": "mnemonic", - "id": "01KJ6E9MG4VY87VPKWJPR6W39K", - "derivationPath": "m/44'/195'/0'/0/6", - "groupIndex": 6 - }, - "exportable": true, - "entropySource": "01KJ6E9MG4VY87VPKWJPR6W39K", - "index": 6, - "addressType": "tron:eoa", - "scope": "tron:728126428", - "groupIndex": 6 - }, - "methods": ["signMessage", "signTransaction"], - "scopes": ["tron:728126428", "tron:3448148188", "tron:2494104990"], - "metadata": { - "name": "Snap Account 17", - "importTime": 1771890336582, - "keyring": { - "type": "Snap Keyring" - }, - "snap": { - "id": "npm:@metamask/tron-wallet-snap" - }, - "lastSelected": 0 - } - }, - "73a28e8a-5ecb-4b36-b6f3-d2c12294eebf": { - "id": "73a28e8a-5ecb-4b36-b6f3-d2c12294eebf", - "address": "TQEG7f85Eawvcw3QV4JsMfHJvXcCC8Kxq5", - "type": "tron:eoa", - "options": { - "entropy": { - "type": "mnemonic", - "id": "01KJ6E9MG4VY87VPKWJPR6W39K", - "derivationPath": "m/44'/195'/0'/0/7", - "groupIndex": 7 - }, - "exportable": true, - "entropySource": "01KJ6E9MG4VY87VPKWJPR6W39K", - "index": 7, - "addressType": "tron:eoa", - "scope": "tron:728126428", - "groupIndex": 7 - }, - "methods": ["signMessage", "signTransaction"], - "scopes": ["tron:728126428", "tron:3448148188", "tron:2494104990"], - "metadata": { - "name": "Snap Account 19", - "importTime": 1771890336622, - "keyring": { - "type": "Snap Keyring" - }, - "snap": { - "id": "npm:@metamask/tron-wallet-snap" - }, - "lastSelected": 0 - } - }, - "78ccb0a9-3647-4bb6-94b4-54d8b4e0b397": { - "id": "78ccb0a9-3647-4bb6-94b4-54d8b4e0b397", - "address": "TU2aNJSfrhLZnSvPRCiAHdpLBhxW2n8HA8", - "type": "tron:eoa", - "options": { - "entropy": { - "type": "mnemonic", - "id": "01KJ6E9MG4VY87VPKWJPR6W39K", - "derivationPath": "m/44'/195'/0'/0/8", - "groupIndex": 8 - }, - "exportable": true, - "entropySource": "01KJ6E9MG4VY87VPKWJPR6W39K", - "index": 8, - "addressType": "tron:eoa", - "scope": "tron:728126428", - "groupIndex": 8 - }, - "methods": ["signMessage", "signTransaction"], - "scopes": ["tron:728126428", "tron:3448148188", "tron:2494104990"], - "metadata": { - "name": "Snap Account 25", - "importTime": 1772573075959, - "keyring": { - "type": "Snap Keyring" - }, - "snap": { - "id": "npm:@metamask/tron-wallet-snap" - }, - "lastSelected": 0 - } - }, - "77a6514e-0024-4dc2-b08d-e78c664c37c5": { - "id": "77a6514e-0024-4dc2-b08d-e78c664c37c5", - "address": "TWYHHhNY6TA3sVLbkZ4suQDMuKxYqLPDja", - "type": "tron:eoa", - "options": { - "entropy": { - "type": "mnemonic", - "id": "01KJ6E9MG4VY87VPKWJPR6W39K", - "derivationPath": "m/44'/195'/0'/0/9", - "groupIndex": 9 - }, - "exportable": true, - "entropySource": "01KJ6E9MG4VY87VPKWJPR6W39K", - "index": 9, - "addressType": "tron:eoa", - "scope": "tron:728126428", - "groupIndex": 9 - }, - "methods": ["signMessage", "signTransaction"], - "scopes": ["tron:728126428", "tron:3448148188", "tron:2494104990"], - "metadata": { - "name": "", - "importTime": 1773330804800, - "keyring": { - "type": "Snap Keyring" - }, - "snap": { - "id": "npm:@metamask/tron-wallet-snap" - }, - "lastSelected": 0 - } - }, - "c5bf70b0-2c4b-4016-9107-cab94be5fbb0": { - "id": "c5bf70b0-2c4b-4016-9107-cab94be5fbb0", - "address": "TXmjzabcG63GjXgGKuaStJh6oCorb8jyja", - "type": "tron:eoa", - "options": { - "entropy": { - "type": "mnemonic", - "id": "01KMK79H2SG3MB2Q7XWEXMZ013", - "derivationPath": "m/44'/195'/0'/0/0", - "groupIndex": 0 - }, - "exportable": true, - "entropySource": "01KMK79H2SG3MB2Q7XWEXMZ013", - "index": 0, - "addressType": "tron:eoa", - "scope": "tron:728126428", - "groupIndex": 0 - }, - "methods": ["signMessage", "signTransaction"], - "scopes": ["tron:728126428", "tron:3448148188", "tron:2494104990"], - "metadata": { - "name": "", - "importTime": 1774466679971, - "keyring": { - "type": "Snap Keyring" - }, - "snap": { - "id": "npm:@metamask/tron-wallet-snap" - }, - "lastSelected": 0 - } - }, - "658962cf-0ecb-496e-beb8-91b663d244de": { - "id": "658962cf-0ecb-496e-beb8-91b663d244de", - "address": "TVnpirfVZPZg4eybigftt2bGcLVawnLVHy", - "type": "tron:eoa", - "options": { - "entropy": { - "type": "mnemonic", - "id": "01KMK79H2SG3MB2Q7XWEXMZ013", - "derivationPath": "m/44'/195'/0'/0/1", - "groupIndex": 1 - }, - "exportable": true, - "entropySource": "01KMK79H2SG3MB2Q7XWEXMZ013", - "index": 1, - "addressType": "tron:eoa", - "scope": "tron:728126428", - "groupIndex": 1 - }, - "methods": ["signMessage", "signTransaction"], - "scopes": ["tron:728126428", "tron:3448148188", "tron:2494104990"], - "metadata": { - "name": "", - "importTime": 1774466681776, - "keyring": { - "type": "Snap Keyring" - }, - "snap": { - "id": "npm:@metamask/tron-wallet-snap" - }, - "lastSelected": 0 - } - }, - "1dd2b0a9-a1ea-4308-92e8-303665fd25c5": { - "id": "1dd2b0a9-a1ea-4308-92e8-303665fd25c5", - "address": "TFZKVArzmNQTpv3bKe1QUkCXruf8PTuJdG", - "type": "tron:eoa", - "options": { - "entropy": { - "type": "mnemonic", - "id": "01KMK79H2SG3MB2Q7XWEXMZ013", - "derivationPath": "m/44'/195'/0'/0/2", - "groupIndex": 2 - }, - "exportable": true, - "entropySource": "01KMK79H2SG3MB2Q7XWEXMZ013", - "index": 2, - "addressType": "tron:eoa", - "scope": "tron:728126428", - "groupIndex": 2 - }, - "methods": ["signMessage", "signTransaction"], - "scopes": ["tron:728126428", "tron:3448148188", "tron:2494104990"], - "metadata": { - "name": "", - "importTime": 1774466681836, - "keyring": { - "type": "Snap Keyring" - }, - "snap": { - "id": "npm:@metamask/tron-wallet-snap" - }, - "lastSelected": 0 - } - }, - "d8086b4c-4361-49ab-8955-efaa5240f561": { - "id": "d8086b4c-4361-49ab-8955-efaa5240f561", - "address": "TVgYW8xdwbKPw5MkiYbz5Vmto9wna2zNdr", - "type": "tron:eoa", - "options": { - "entropy": { - "type": "mnemonic", - "id": "01KMK79H2SG3MB2Q7XWEXMZ013", - "derivationPath": "m/44'/195'/0'/0/3", - "groupIndex": 3 - }, - "exportable": true, - "entropySource": "01KMK79H2SG3MB2Q7XWEXMZ013", - "index": 3, - "addressType": "tron:eoa", - "scope": "tron:728126428", - "groupIndex": 3 - }, - "methods": ["signMessage", "signTransaction"], - "scopes": ["tron:728126428", "tron:3448148188", "tron:2494104990"], - "metadata": { - "name": "", - "importTime": 1774466681880, - "keyring": { - "type": "Snap Keyring" - }, - "snap": { - "id": "npm:@metamask/tron-wallet-snap" - }, - "lastSelected": 0 - } - }, - "8fd0b8c5-b42d-462d-965b-2979b4057c88": { - "id": "8fd0b8c5-b42d-462d-965b-2979b4057c88", - "address": "TGhD1GruvbKNbhAUBxqiHQVpXe4tL4WzMN", - "type": "tron:eoa", - "options": { - "entropy": { - "type": "mnemonic", - "id": "01KMK79H2SG3MB2Q7XWEXMZ013", - "derivationPath": "m/44'/195'/0'/0/4", - "groupIndex": 4 - }, - "exportable": true, - "entropySource": "01KMK79H2SG3MB2Q7XWEXMZ013", - "index": 4, - "addressType": "tron:eoa", - "scope": "tron:728126428", - "groupIndex": 4 - }, - "methods": ["signMessage", "signTransaction"], - "scopes": ["tron:728126428", "tron:3448148188", "tron:2494104990"], - "metadata": { - "name": "", - "importTime": 1774466681909, - "keyring": { - "type": "Snap Keyring" - }, - "snap": { - "id": "npm:@metamask/tron-wallet-snap" - }, - "lastSelected": 0 - } - }, - "e6f7d2e7-8c4c-48f7-9d04-958add8113b7": { - "id": "e6f7d2e7-8c4c-48f7-9d04-958add8113b7", - "address": "TGzh1crEiU8jT2XNix6NWMVFCtwNyEiiX5", - "type": "tron:eoa", - "options": { - "entropy": { - "type": "mnemonic", - "id": "01KMK79H2SG3MB2Q7XWEXMZ013", - "derivationPath": "m/44'/195'/0'/0/5", - "groupIndex": 5 - }, - "exportable": true, - "entropySource": "01KMK79H2SG3MB2Q7XWEXMZ013", - "index": 5, - "addressType": "tron:eoa", - "scope": "tron:728126428", - "groupIndex": 5 - }, - "methods": ["signMessage", "signTransaction"], - "scopes": ["tron:728126428", "tron:3448148188", "tron:2494104990"], - "metadata": { - "name": "", - "importTime": 1774466682001, - "keyring": { - "type": "Snap Keyring" - }, - "snap": { - "id": "npm:@metamask/tron-wallet-snap" - }, - "lastSelected": 0 - } - }, - "ffb79cf7-3a88-4cfe-864c-a9f656ce1840": { - "type": "bip122:p2wpkh", - "scopes": ["bip122:000000000019d6689c085ae165831e93"], - "id": "ffb79cf7-3a88-4cfe-864c-a9f656ce1840", - "address": "bc1q2pxsagdzfdn6k6umvf9gj3eme7a27p7acym9g2", - "options": { - "entropySource": "01KJ6E9MG4VY87VPKWJPR6W39K", - "exportable": false, - "entropy": { - "type": "mnemonic", - "id": "01KJ6E9MG4VY87VPKWJPR6W39K", - "derivationPath": "m/84'/0'/0'", - "groupIndex": 0 - } - }, - "methods": [ - "signPsbt", - "computeFee", - "fillPsbt", - "broadcastPsbt", - "sendTransfer", - "getUtxo", - "listUtxos", - "publicDescriptor", - "signMessage" - ], - "metadata": { - "name": "Snap Account 2", - "importTime": 1771890335289, - "keyring": { - "type": "Snap Keyring" - }, - "snap": { - "id": "npm:@metamask/bitcoin-wallet-snap" - }, - "lastSelected": 1778779620046 - } - }, - "d05ca007-7a11-470f-8433-a89767f95995": { - "type": "bip122:p2wpkh", - "scopes": ["bip122:000000000019d6689c085ae165831e93"], - "id": "d05ca007-7a11-470f-8433-a89767f95995", - "address": "bc1qkv7fs9jkan5fk4dal9zm4hltvx3022mmnzt09l", - "options": { - "entropySource": "01KJ6E9MG4VY87VPKWJPR6W39K", - "exportable": false, - "entropy": { - "type": "mnemonic", - "id": "01KJ6E9MG4VY87VPKWJPR6W39K", - "derivationPath": "m/84'/0'/1'", - "groupIndex": 1 - } - }, - "methods": [ - "signPsbt", - "computeFee", - "fillPsbt", - "broadcastPsbt", - "sendTransfer", - "getUtxo", - "listUtxos", - "publicDescriptor", - "signMessage" - ], - "metadata": { - "name": "Snap Account 6", - "importTime": 1771890336360, - "keyring": { - "type": "Snap Keyring" - }, - "snap": { - "id": "npm:@metamask/bitcoin-wallet-snap" - }, - "lastSelected": 0 - } - }, - "23ce192d-62e7-4d4f-a168-93ae18dc915d": { - "type": "bip122:p2wpkh", - "scopes": ["bip122:000000000019d6689c085ae165831e93"], - "id": "23ce192d-62e7-4d4f-a168-93ae18dc915d", - "address": "bc1qjx6jn6jlkrglaqtt35hr0sc7qsehkuqyq6lmys", - "options": { - "entropySource": "01KJ6E9MG4VY87VPKWJPR6W39K", - "exportable": false, - "entropy": { - "type": "mnemonic", - "id": "01KJ6E9MG4VY87VPKWJPR6W39K", - "derivationPath": "m/84'/0'/2'", - "groupIndex": 2 - } - }, - "methods": [ - "signPsbt", - "computeFee", - "fillPsbt", - "broadcastPsbt", - "sendTransfer", - "getUtxo", - "listUtxos", - "publicDescriptor", - "signMessage" - ], - "metadata": { - "name": "Snap Account 8", - "importTime": 1771890336448, - "keyring": { - "type": "Snap Keyring" - }, - "snap": { - "id": "npm:@metamask/bitcoin-wallet-snap" - }, - "lastSelected": 0 - } - }, - "c6d62ae8-d02c-4a7a-8222-17ed6cdf0e52": { - "type": "bip122:p2wpkh", - "scopes": ["bip122:000000000019d6689c085ae165831e93"], - "id": "c6d62ae8-d02c-4a7a-8222-17ed6cdf0e52", - "address": "bc1q4802rfdtl8x6fc2lfrerpuqn3707mz9p6xaw5v", - "options": { - "entropySource": "01KJ6E9MG4VY87VPKWJPR6W39K", - "exportable": false, - "entropy": { - "type": "mnemonic", - "id": "01KJ6E9MG4VY87VPKWJPR6W39K", - "derivationPath": "m/84'/0'/3'", - "groupIndex": 3 - } - }, - "methods": [ - "signPsbt", - "computeFee", - "fillPsbt", - "broadcastPsbt", - "sendTransfer", - "getUtxo", - "listUtxos", - "publicDescriptor", - "signMessage" - ], - "metadata": { - "name": "Snap Account 11", - "importTime": 1771890336486, - "keyring": { - "type": "Snap Keyring" - }, - "snap": { - "id": "npm:@metamask/bitcoin-wallet-snap" - }, - "lastSelected": 0 - } - }, - "df59431e-d587-40a5-9c2b-3bdc6584b0e4": { - "type": "bip122:p2wpkh", - "scopes": ["bip122:000000000019d6689c085ae165831e93"], - "id": "df59431e-d587-40a5-9c2b-3bdc6584b0e4", - "address": "bc1qx95r6rrjndjmnc353mg0da5545smp9sakzxxtl", - "options": { - "entropySource": "01KJ6E9MG4VY87VPKWJPR6W39K", - "exportable": false, - "entropy": { - "type": "mnemonic", - "id": "01KJ6E9MG4VY87VPKWJPR6W39K", - "derivationPath": "m/84'/0'/4'", - "groupIndex": 4 - } - }, - "methods": [ - "signPsbt", - "computeFee", - "fillPsbt", - "broadcastPsbt", - "sendTransfer", - "getUtxo", - "listUtxos", - "publicDescriptor", - "signMessage" - ], - "metadata": { - "name": "Snap Account 14", - "importTime": 1771890336541, - "keyring": { - "type": "Snap Keyring" - }, - "snap": { - "id": "npm:@metamask/bitcoin-wallet-snap" - }, - "lastSelected": 0 - } - }, - "03d7de03-c856-4239-93fc-b3cc5352883a": { - "type": "bip122:p2wpkh", - "scopes": ["bip122:000000000019d6689c085ae165831e93"], - "id": "03d7de03-c856-4239-93fc-b3cc5352883a", - "address": "bc1qmkhzc8tx8xkkwzqfez4nuk27qemjg5mvf54csk", - "options": { - "entropySource": "01KJ6E9MG4VY87VPKWJPR6W39K", - "exportable": false, - "entropy": { - "type": "mnemonic", - "id": "01KJ6E9MG4VY87VPKWJPR6W39K", - "derivationPath": "m/84'/0'/5'", - "groupIndex": 5 - } - }, - "methods": [ - "signPsbt", - "computeFee", - "fillPsbt", - "broadcastPsbt", - "sendTransfer", - "getUtxo", - "listUtxos", - "publicDescriptor", - "signMessage" - ], - "metadata": { - "name": "Snap Account 18", - "importTime": 1771890336584, - "keyring": { - "type": "Snap Keyring" - }, - "snap": { - "id": "npm:@metamask/bitcoin-wallet-snap" - }, - "lastSelected": 0 - } - }, - "3d379cac-eb60-4b45-8374-370aac2b76c5": { - "type": "bip122:p2wpkh", - "scopes": ["bip122:000000000019d6689c085ae165831e93"], - "id": "3d379cac-eb60-4b45-8374-370aac2b76c5", - "address": "bc1qc5jermkwtwa4zput0tjrxqrq03906xfw0mtanx", - "options": { - "entropySource": "01KJ6E9MG4VY87VPKWJPR6W39K", - "exportable": false, - "entropy": { - "type": "mnemonic", - "id": "01KJ6E9MG4VY87VPKWJPR6W39K", - "derivationPath": "m/84'/0'/6'", - "groupIndex": 6 - } - }, - "methods": [ - "signPsbt", - "computeFee", - "fillPsbt", - "broadcastPsbt", - "sendTransfer", - "getUtxo", - "listUtxos", - "publicDescriptor", - "signMessage" - ], - "metadata": { - "name": "Snap Account 21", - "importTime": 1771890336635, - "keyring": { - "type": "Snap Keyring" - }, - "snap": { - "id": "npm:@metamask/bitcoin-wallet-snap" - }, - "lastSelected": 0 - } - }, - "744910ce-8368-414f-8e7c-1c5dba71831e": { - "type": "bip122:p2wpkh", - "scopes": ["bip122:000000000019d6689c085ae165831e93"], - "id": "744910ce-8368-414f-8e7c-1c5dba71831e", - "address": "bc1qc7s93vamc0zduhuv5aswq9a9lp5k4za20tl05l", - "options": { - "entropySource": "01KJ6E9MG4VY87VPKWJPR6W39K", - "exportable": false, - "entropy": { - "type": "mnemonic", - "id": "01KJ6E9MG4VY87VPKWJPR6W39K", - "derivationPath": "m/84'/0'/7'", - "groupIndex": 7 - } - }, - "methods": [ - "signPsbt", - "computeFee", - "fillPsbt", - "broadcastPsbt", - "sendTransfer", - "getUtxo", - "listUtxos", - "publicDescriptor", - "signMessage" - ], - "metadata": { - "name": "Snap Account 22", - "importTime": 1771890336681, - "keyring": { - "type": "Snap Keyring" - }, - "snap": { - "id": "npm:@metamask/bitcoin-wallet-snap" - }, - "lastSelected": 0 - } - }, - "d834c0ad-655b-4707-997d-7048c1896f89": { - "type": "bip122:p2wpkh", - "scopes": ["bip122:000000000019d6689c085ae165831e93"], - "id": "d834c0ad-655b-4707-997d-7048c1896f89", - "address": "bc1qlrssy7r7vfstz30g78d6duzfg0clj7m380punr", - "options": { - "entropySource": "01KJ6E9MG4VY87VPKWJPR6W39K", - "exportable": false, - "entropy": { - "type": "mnemonic", - "id": "01KJ6E9MG4VY87VPKWJPR6W39K", - "derivationPath": "m/84'/0'/8'", - "groupIndex": 8 - } - }, - "methods": [ - "signPsbt", - "computeFee", - "fillPsbt", - "broadcastPsbt", - "sendTransfer", - "getUtxo", - "listUtxos", - "publicDescriptor", - "signMessage" - ], - "metadata": { - "name": "Snap Account 27", - "importTime": 1772573075972, - "keyring": { - "type": "Snap Keyring" - }, - "snap": { - "id": "npm:@metamask/bitcoin-wallet-snap" - }, - "lastSelected": 0 - } - }, - "f5481e08-42e2-4504-9a1f-44c0bbe6e0bb": { - "type": "bip122:p2wpkh", - "scopes": ["bip122:000000000019d6689c085ae165831e93"], - "id": "f5481e08-42e2-4504-9a1f-44c0bbe6e0bb", - "address": "bc1quktjtsfqgk2y35vlucwvzczfqzkpawp066v3ww", - "options": { - "entropySource": "01KJ6E9MG4VY87VPKWJPR6W39K", - "exportable": false, - "entropy": { - "type": "mnemonic", - "id": "01KJ6E9MG4VY87VPKWJPR6W39K", - "derivationPath": "m/84'/0'/9'", - "groupIndex": 9 - } - }, - "methods": [ - "signPsbt", - "computeFee", - "fillPsbt", - "broadcastPsbt", - "sendTransfer", - "getUtxo", - "listUtxos", - "publicDescriptor", - "signMessage" - ], - "metadata": { - "name": "", - "importTime": 1773330804805, - "keyring": { - "type": "Snap Keyring" - }, - "snap": { - "id": "npm:@metamask/bitcoin-wallet-snap" - }, - "lastSelected": 0 - } - }, - "574cb22f-c2d5-40d2-86a5-e3393d33050f": { - "type": "bip122:p2wpkh", - "scopes": ["bip122:000000000019d6689c085ae165831e93"], - "id": "574cb22f-c2d5-40d2-86a5-e3393d33050f", - "address": "bc1qklk4c2g7pk2eertfh0zgw9gn6gaq7px9stmtsz", - "options": { - "entropySource": "01KMK79H2SG3MB2Q7XWEXMZ013", - "exportable": false, - "entropy": { - "type": "mnemonic", - "id": "01KMK79H2SG3MB2Q7XWEXMZ013", - "derivationPath": "m/84'/0'/0'", - "groupIndex": 0 - } - }, - "methods": [ - "signPsbt", - "computeFee", - "fillPsbt", - "broadcastPsbt", - "sendTransfer", - "getUtxo", - "listUtxos", - "publicDescriptor", - "signMessage" - ], - "metadata": { - "name": "", - "importTime": 1774466679976, - "keyring": { - "type": "Snap Keyring" - }, - "snap": { - "id": "npm:@metamask/bitcoin-wallet-snap" - }, - "lastSelected": 0 - } - }, - "e78a4c3d-7649-4797-90ad-9d6ddbe9e6dd": { - "type": "bip122:p2wpkh", - "scopes": ["bip122:000000000019d6689c085ae165831e93"], - "id": "e78a4c3d-7649-4797-90ad-9d6ddbe9e6dd", - "address": "bc1qzzgcr8ekdfgyjad8fdfmctj0jv0k6ntkj3jpxp", - "options": { - "entropySource": "01KMK79H2SG3MB2Q7XWEXMZ013", - "exportable": false, - "entropy": { - "type": "mnemonic", - "id": "01KMK79H2SG3MB2Q7XWEXMZ013", - "derivationPath": "m/84'/0'/1'", - "groupIndex": 1 - } - }, - "methods": [ - "signPsbt", - "computeFee", - "fillPsbt", - "broadcastPsbt", - "sendTransfer", - "getUtxo", - "listUtxos", - "publicDescriptor", - "signMessage" - ], - "metadata": { - "name": "", - "importTime": 1774466681787, - "keyring": { - "type": "Snap Keyring" - }, - "snap": { - "id": "npm:@metamask/bitcoin-wallet-snap" - }, - "lastSelected": 0 - } - }, - "a4c40c7c-01c0-4335-b574-72195898b31c": { - "type": "bip122:p2wpkh", - "scopes": ["bip122:000000000019d6689c085ae165831e93"], - "id": "a4c40c7c-01c0-4335-b574-72195898b31c", - "address": "bc1q07mlsqrpt80trs5zffk4ysl35s7e9tltazgnne", - "options": { - "entropySource": "01KMK79H2SG3MB2Q7XWEXMZ013", - "exportable": false, - "entropy": { - "type": "mnemonic", - "id": "01KMK79H2SG3MB2Q7XWEXMZ013", - "derivationPath": "m/84'/0'/2'", - "groupIndex": 2 - } - }, - "methods": [ - "signPsbt", - "computeFee", - "fillPsbt", - "broadcastPsbt", - "sendTransfer", - "getUtxo", - "listUtxos", - "publicDescriptor", - "signMessage" - ], - "metadata": { - "name": "", - "importTime": 1774466681818, - "keyring": { - "type": "Snap Keyring" - }, - "snap": { - "id": "npm:@metamask/bitcoin-wallet-snap" - }, - "lastSelected": 0 - } - }, - "c2c05428-c846-4992-a5a3-5d151b97fcdb": { - "type": "bip122:p2wpkh", - "scopes": ["bip122:000000000019d6689c085ae165831e93"], - "id": "c2c05428-c846-4992-a5a3-5d151b97fcdb", - "address": "bc1q20l4mt5f6k5k3utw6vwae83r5r9lzj3dd0567k", - "options": { - "entropySource": "01KMK79H2SG3MB2Q7XWEXMZ013", - "exportable": false, - "entropy": { - "type": "mnemonic", - "id": "01KMK79H2SG3MB2Q7XWEXMZ013", - "derivationPath": "m/84'/0'/3'", - "groupIndex": 3 - } - }, - "methods": [ - "signPsbt", - "computeFee", - "fillPsbt", - "broadcastPsbt", - "sendTransfer", - "getUtxo", - "listUtxos", - "publicDescriptor", - "signMessage" - ], - "metadata": { - "name": "", - "importTime": 1774466681861, - "keyring": { - "type": "Snap Keyring" - }, - "snap": { - "id": "npm:@metamask/bitcoin-wallet-snap" - }, - "lastSelected": 0 - } - }, - "1a14e831-0c2c-46ce-8e2b-d7d53cbefb63": { - "type": "bip122:p2wpkh", - "scopes": ["bip122:000000000019d6689c085ae165831e93"], - "id": "1a14e831-0c2c-46ce-8e2b-d7d53cbefb63", - "address": "bc1q79rp7e2avw8lnvrlaykt7uh4q7etkrau5nytjd", - "options": { - "entropySource": "01KMK79H2SG3MB2Q7XWEXMZ013", - "exportable": false, - "entropy": { - "type": "mnemonic", - "id": "01KMK79H2SG3MB2Q7XWEXMZ013", - "derivationPath": "m/84'/0'/4'", - "groupIndex": 4 - } - }, - "methods": [ - "signPsbt", - "computeFee", - "fillPsbt", - "broadcastPsbt", - "sendTransfer", - "getUtxo", - "listUtxos", - "publicDescriptor", - "signMessage" - ], - "metadata": { - "name": "", - "importTime": 1774466681905, - "keyring": { - "type": "Snap Keyring" - }, - "snap": { - "id": "npm:@metamask/bitcoin-wallet-snap" - }, - "lastSelected": 0 - } - }, - "80340772-85d8-41a5-b316-1d8fc8c2cea4": { - "type": "bip122:p2wpkh", - "scopes": ["bip122:000000000019d6689c085ae165831e93"], - "id": "80340772-85d8-41a5-b316-1d8fc8c2cea4", - "address": "bc1qntcy866amnqthda3j8uhtjd75gl0562sfaudwz", - "options": { - "entropySource": "01KMK79H2SG3MB2Q7XWEXMZ013", - "exportable": false, - "entropy": { - "type": "mnemonic", - "id": "01KMK79H2SG3MB2Q7XWEXMZ013", - "derivationPath": "m/84'/0'/5'", - "groupIndex": 5 - } - }, - "methods": [ - "signPsbt", - "computeFee", - "fillPsbt", - "broadcastPsbt", - "sendTransfer", - "getUtxo", - "listUtxos", - "publicDescriptor", - "signMessage" - ], - "metadata": { - "name": "", - "importTime": 1774466682016, - "keyring": { - "type": "Snap Keyring" - }, - "snap": { - "id": "npm:@metamask/bitcoin-wallet-snap" - }, - "lastSelected": 0 - } - }, - "55fe5095-3194-42c2-81d3-5701dcad1924": { - "type": "solana:data-account", - "id": "55fe5095-3194-42c2-81d3-5701dcad1924", - "address": "8jKM7u4xsyvDpnqL5DQMVrh8AXxZKJPKJw5QsM7KEF8J", - "options": { - "entropySource": "01KJ6E9MG4VY87VPKWJPR6W39K", - "derivationPath": "m/44'/501'/0'/0'", - "index": 0, - "entropy": { - "type": "mnemonic", - "id": "01KJ6E9MG4VY87VPKWJPR6W39K", - "groupIndex": 0, - "derivationPath": "m/44'/501'/0'/0'" - } - }, - "methods": [ - "signAndSendTransaction", - "signTransaction", - "signMessage", - "signIn" - ], - "scopes": [ - "solana:5eykt4UsFv8P8NJdTREpY1vzqKqZKvdp", - "solana:4uhcVJyU9pJkvQyS88uRDiswHXSCkY3z", - "solana:EtWTRABZaYq6iMfeYKouRu166VU2xqa1" - ], - "metadata": { - "name": "Snap Account 3", - "importTime": 1771890335311, - "keyring": { - "type": "Snap Keyring" - }, - "snap": { - "id": "npm:@metamask/solana-wallet-snap" - }, - "lastSelected": 1777417473758 - } - }, - "e4cb2ec8-15e3-494a-bde2-6ea14e6d0d6c": { - "type": "solana:data-account", - "id": "e4cb2ec8-15e3-494a-bde2-6ea14e6d0d6c", - "address": "D17b35MvfEann7FDStSUWH6EAXCyfvjBXJmx8zwCeMg5", - "options": { - "entropySource": "01KJ6E9MG4VY87VPKWJPR6W39K", - "derivationPath": "m/44'/501'/1'/0'", - "index": 1, - "entropy": { - "type": "mnemonic", - "id": "01KJ6E9MG4VY87VPKWJPR6W39K", - "groupIndex": 1, - "derivationPath": "m/44'/501'/1'/0'" - } - }, - "methods": [ - "signAndSendTransaction", - "signTransaction", - "signMessage", - "signIn" - ], - "scopes": [ - "solana:5eykt4UsFv8P8NJdTREpY1vzqKqZKvdp", - "solana:4uhcVJyU9pJkvQyS88uRDiswHXSCkY3z", - "solana:EtWTRABZaYq6iMfeYKouRu166VU2xqa1" - ], - "metadata": { - "name": "Snap Account 5", - "importTime": 1771890336359, - "keyring": { - "type": "Snap Keyring" - }, - "snap": { - "id": "npm:@metamask/solana-wallet-snap" - }, - "lastSelected": 0 - } - }, - "c86652a6-e1f3-4e4c-b411-c58efe220dcf": { - "type": "solana:data-account", - "id": "c86652a6-e1f3-4e4c-b411-c58efe220dcf", - "address": "EakrRNLYP3WCatjriJzKSy4HRbmHA4ogdN11dwPPQmJP", - "options": { - "entropySource": "01KJ6E9MG4VY87VPKWJPR6W39K", - "derivationPath": "m/44'/501'/2'/0'", - "index": 2, - "entropy": { - "type": "mnemonic", - "id": "01KJ6E9MG4VY87VPKWJPR6W39K", - "groupIndex": 2, - "derivationPath": "m/44'/501'/2'/0'" - } - }, - "methods": [ - "signAndSendTransaction", - "signTransaction", - "signMessage", - "signIn" - ], - "scopes": [ - "solana:5eykt4UsFv8P8NJdTREpY1vzqKqZKvdp", - "solana:4uhcVJyU9pJkvQyS88uRDiswHXSCkY3z", - "solana:EtWTRABZaYq6iMfeYKouRu166VU2xqa1" - ], - "metadata": { - "name": "Snap Account 9", - "importTime": 1771890336456, - "keyring": { - "type": "Snap Keyring" - }, - "snap": { - "id": "npm:@metamask/solana-wallet-snap" - }, - "lastSelected": 0 - } - }, - "5a747531-d39f-49d5-afbd-59c018cc4757": { - "type": "solana:data-account", - "id": "5a747531-d39f-49d5-afbd-59c018cc4757", - "address": "Bz3cfju4DDyduz7mRbgV7tN4aKg2mmZp4hqUc5dUJWct", - "options": { - "entropySource": "01KJ6E9MG4VY87VPKWJPR6W39K", - "derivationPath": "m/44'/501'/3'/0'", - "index": 3, - "entropy": { - "type": "mnemonic", - "id": "01KJ6E9MG4VY87VPKWJPR6W39K", - "groupIndex": 3, - "derivationPath": "m/44'/501'/3'/0'" - } - }, - "methods": [ - "signAndSendTransaction", - "signTransaction", - "signMessage", - "signIn" - ], - "scopes": [ - "solana:5eykt4UsFv8P8NJdTREpY1vzqKqZKvdp", - "solana:4uhcVJyU9pJkvQyS88uRDiswHXSCkY3z", - "solana:EtWTRABZaYq6iMfeYKouRu166VU2xqa1" - ], - "metadata": { - "name": "Snap Account 13", - "importTime": 1771890336516, - "keyring": { - "type": "Snap Keyring" - }, - "snap": { - "id": "npm:@metamask/solana-wallet-snap" - }, - "lastSelected": 0 - } - }, - "db7205b1-e72f-4082-92c4-5490fdba12c5": { - "type": "solana:data-account", - "id": "db7205b1-e72f-4082-92c4-5490fdba12c5", - "address": "HhoQAMYGpUr733KFgZJuZxwVVfqMKLgpChjzehYTRW4C", - "options": { - "entropySource": "01KJ6E9MG4VY87VPKWJPR6W39K", - "derivationPath": "m/44'/501'/4'/0'", - "index": 4, - "entropy": { - "type": "mnemonic", - "id": "01KJ6E9MG4VY87VPKWJPR6W39K", - "groupIndex": 4, - "derivationPath": "m/44'/501'/4'/0'" - } - }, - "methods": [ - "signAndSendTransaction", - "signTransaction", - "signMessage", - "signIn" - ], - "scopes": [ - "solana:5eykt4UsFv8P8NJdTREpY1vzqKqZKvdp", - "solana:4uhcVJyU9pJkvQyS88uRDiswHXSCkY3z", - "solana:EtWTRABZaYq6iMfeYKouRu166VU2xqa1" - ], - "metadata": { - "name": "Snap Account 16", - "importTime": 1771890336571, - "keyring": { - "type": "Snap Keyring" - }, - "snap": { - "id": "npm:@metamask/solana-wallet-snap" - }, - "lastSelected": 0 - } - }, - "c3fc6bba-683b-44c8-b637-89b55416a8dd": { - "type": "solana:data-account", - "id": "c3fc6bba-683b-44c8-b637-89b55416a8dd", - "address": "GBnbPgkU6Nz1iH8nE1aPc4K5vLt7Y8TLDJm55WEGVdK5", - "options": { - "entropySource": "01KJ6E9MG4VY87VPKWJPR6W39K", - "derivationPath": "m/44'/501'/5'/0'", - "index": 5, - "entropy": { - "type": "mnemonic", - "id": "01KJ6E9MG4VY87VPKWJPR6W39K", - "groupIndex": 5, - "derivationPath": "m/44'/501'/5'/0'" - } - }, - "methods": [ - "signAndSendTransaction", - "signTransaction", - "signMessage", - "signIn" - ], - "scopes": [ - "solana:5eykt4UsFv8P8NJdTREpY1vzqKqZKvdp", - "solana:4uhcVJyU9pJkvQyS88uRDiswHXSCkY3z", - "solana:EtWTRABZaYq6iMfeYKouRu166VU2xqa1" - ], - "metadata": { - "name": "Snap Account 20", - "importTime": 1771890336632, - "keyring": { - "type": "Snap Keyring" - }, - "snap": { - "id": "npm:@metamask/solana-wallet-snap" - }, - "lastSelected": 0 - } - }, - "2858af66-a9cd-456a-b29c-f2f5148a5ac8": { - "type": "solana:data-account", - "id": "2858af66-a9cd-456a-b29c-f2f5148a5ac8", - "address": "4fhPk4yRhMPQL21Ua2MMUxC2p5VT9q2K4Uep2aGAtYGJ", - "options": { - "entropySource": "01KJ6E9MG4VY87VPKWJPR6W39K", - "derivationPath": "m/44'/501'/6'/0'", - "index": 6, - "entropy": { - "type": "mnemonic", - "id": "01KJ6E9MG4VY87VPKWJPR6W39K", - "groupIndex": 6, - "derivationPath": "m/44'/501'/6'/0'" - } - }, - "methods": [ - "signAndSendTransaction", - "signTransaction", - "signMessage", - "signIn" - ], - "scopes": [ - "solana:5eykt4UsFv8P8NJdTREpY1vzqKqZKvdp", - "solana:4uhcVJyU9pJkvQyS88uRDiswHXSCkY3z", - "solana:EtWTRABZaYq6iMfeYKouRu166VU2xqa1" - ], - "metadata": { - "name": "Snap Account 23", - "importTime": 1771890336691, - "keyring": { - "type": "Snap Keyring" - }, - "snap": { - "id": "npm:@metamask/solana-wallet-snap" - }, - "lastSelected": 0 - } - }, - "44ca98ce-b819-4e06-b651-ba146dbe22c1": { - "type": "solana:data-account", - "id": "44ca98ce-b819-4e06-b651-ba146dbe22c1", - "address": "F7nHkrzPrE6J8r8jcvLPVE3KbuwGzosGWjiRzXyuWPx1", - "options": { - "entropySource": "01KJ6E9MG4VY87VPKWJPR6W39K", - "derivationPath": "m/44'/501'/7'/0'", - "index": 7, - "entropy": { - "type": "mnemonic", - "id": "01KJ6E9MG4VY87VPKWJPR6W39K", - "groupIndex": 7, - "derivationPath": "m/44'/501'/7'/0'" - } - }, - "methods": [ - "signAndSendTransaction", - "signTransaction", - "signMessage", - "signIn" - ], - "scopes": [ - "solana:5eykt4UsFv8P8NJdTREpY1vzqKqZKvdp", - "solana:4uhcVJyU9pJkvQyS88uRDiswHXSCkY3z", - "solana:EtWTRABZaYq6iMfeYKouRu166VU2xqa1" - ], - "metadata": { - "name": "Snap Account 24", - "importTime": 1771890336710, - "keyring": { - "type": "Snap Keyring" - }, - "snap": { - "id": "npm:@metamask/solana-wallet-snap" - }, - "lastSelected": 0 - } - }, - "e421a858-a232-40dc-8bbb-d3745bee215b": { - "type": "solana:data-account", - "id": "e421a858-a232-40dc-8bbb-d3745bee215b", - "address": "3PGGUjEUt8jUpqzfAB3bh7A3NWDZhqNcdtCGqeipT6bV", - "options": { - "entropySource": "01KJ6E9MG4VY87VPKWJPR6W39K", - "derivationPath": "m/44'/501'/8'/0'", - "index": 8, - "entropy": { - "type": "mnemonic", - "id": "01KJ6E9MG4VY87VPKWJPR6W39K", - "groupIndex": 8, - "derivationPath": "m/44'/501'/8'/0'" - } - }, - "methods": [ - "signAndSendTransaction", - "signTransaction", - "signMessage", - "signIn" - ], - "scopes": [ - "solana:5eykt4UsFv8P8NJdTREpY1vzqKqZKvdp", - "solana:4uhcVJyU9pJkvQyS88uRDiswHXSCkY3z", - "solana:EtWTRABZaYq6iMfeYKouRu166VU2xqa1" - ], - "metadata": { - "name": "Snap Account 26", - "importTime": 1772573075968, - "keyring": { - "type": "Snap Keyring" - }, - "snap": { - "id": "npm:@metamask/solana-wallet-snap" - }, - "lastSelected": 0 - } - }, - "891b1840-b34b-4059-895b-5f163cff8ff1": { - "type": "solana:data-account", - "id": "891b1840-b34b-4059-895b-5f163cff8ff1", - "address": "DRZLWUT14336p9NRrquuwt759BSydintJFGiRT6refdA", - "options": { - "entropySource": "01KJ6E9MG4VY87VPKWJPR6W39K", - "derivationPath": "m/44'/501'/9'/0'", - "index": 9, - "entropy": { - "type": "mnemonic", - "id": "01KJ6E9MG4VY87VPKWJPR6W39K", - "groupIndex": 9, - "derivationPath": "m/44'/501'/9'/0'" - } - }, - "methods": [ - "signAndSendTransaction", - "signTransaction", - "signMessage", - "signIn" - ], - "scopes": [ - "solana:5eykt4UsFv8P8NJdTREpY1vzqKqZKvdp", - "solana:4uhcVJyU9pJkvQyS88uRDiswHXSCkY3z", - "solana:EtWTRABZaYq6iMfeYKouRu166VU2xqa1" - ], - "metadata": { - "name": "", - "importTime": 1773330804865, - "keyring": { - "type": "Snap Keyring" - }, - "snap": { - "id": "npm:@metamask/solana-wallet-snap" - }, - "lastSelected": 0 - } - }, - "076cbb47-1752-40b0-9314-1f07e7b88ffa": { - "type": "solana:data-account", - "id": "076cbb47-1752-40b0-9314-1f07e7b88ffa", - "address": "CyGir7UdxRCsNXkA89qH1P5p3Zhx11XxsE97WSfNMnLT", - "options": { - "entropySource": "01KMK79H2SG3MB2Q7XWEXMZ013", - "derivationPath": "m/44'/501'/0'/0'", - "index": 0, - "entropy": { - "type": "mnemonic", - "id": "01KMK79H2SG3MB2Q7XWEXMZ013", - "groupIndex": 0, - "derivationPath": "m/44'/501'/0'/0'" - } - }, - "methods": [ - "signAndSendTransaction", - "signTransaction", - "signMessage", - "signIn" - ], - "scopes": [ - "solana:5eykt4UsFv8P8NJdTREpY1vzqKqZKvdp", - "solana:4uhcVJyU9pJkvQyS88uRDiswHXSCkY3z", - "solana:EtWTRABZaYq6iMfeYKouRu166VU2xqa1" - ], - "metadata": { - "name": "", - "importTime": 1774466679974, - "keyring": { - "type": "Snap Keyring" - }, - "snap": { - "id": "npm:@metamask/solana-wallet-snap" - }, - "lastSelected": 0 - } - }, - "e86326ea-c687-45bf-84b9-ad4d8618d084": { - "type": "solana:data-account", - "id": "e86326ea-c687-45bf-84b9-ad4d8618d084", - "address": "ATK5qHMB4bNuPh6Hj3RoCLRQrUafg9PoSdR5RhEf6nyz", - "options": { - "entropySource": "01KMK79H2SG3MB2Q7XWEXMZ013", - "derivationPath": "m/44'/501'/1'/0'", - "index": 1, - "entropy": { - "type": "mnemonic", - "id": "01KMK79H2SG3MB2Q7XWEXMZ013", - "groupIndex": 1, - "derivationPath": "m/44'/501'/1'/0'" - } - }, - "methods": [ - "signAndSendTransaction", - "signTransaction", - "signMessage", - "signIn" - ], - "scopes": [ - "solana:5eykt4UsFv8P8NJdTREpY1vzqKqZKvdp", - "solana:4uhcVJyU9pJkvQyS88uRDiswHXSCkY3z", - "solana:EtWTRABZaYq6iMfeYKouRu166VU2xqa1" - ], - "metadata": { - "name": "", - "importTime": 1774466681780, - "keyring": { - "type": "Snap Keyring" - }, - "snap": { - "id": "npm:@metamask/solana-wallet-snap" - }, - "lastSelected": 0 - } - }, - "575d130d-01da-44f0-a731-da9967adf412": { - "type": "solana:data-account", - "id": "575d130d-01da-44f0-a731-da9967adf412", - "address": "FauUtcWJ81uyS6naBZD6uSdjNuJvuD73tUnSLJMZUP2e", - "options": { - "entropySource": "01KMK79H2SG3MB2Q7XWEXMZ013", - "derivationPath": "m/44'/501'/2'/0'", - "index": 2, - "entropy": { - "type": "mnemonic", - "id": "01KMK79H2SG3MB2Q7XWEXMZ013", - "groupIndex": 2, - "derivationPath": "m/44'/501'/2'/0'" - } - }, - "methods": [ - "signAndSendTransaction", - "signTransaction", - "signMessage", - "signIn" - ], - "scopes": [ - "solana:5eykt4UsFv8P8NJdTREpY1vzqKqZKvdp", - "solana:4uhcVJyU9pJkvQyS88uRDiswHXSCkY3z", - "solana:EtWTRABZaYq6iMfeYKouRu166VU2xqa1" - ], - "metadata": { - "name": "", - "importTime": 1774466681823, - "keyring": { - "type": "Snap Keyring" - }, - "snap": { - "id": "npm:@metamask/solana-wallet-snap" - }, - "lastSelected": 0 - } - }, - "7f6eee30-338e-4926-86fa-19436da91f35": { - "type": "solana:data-account", - "id": "7f6eee30-338e-4926-86fa-19436da91f35", - "address": "uik8nmbvhYfhj1n9hrJ4vigneMrr3qbbbbWuhLLSboP", - "options": { - "entropySource": "01KMK79H2SG3MB2Q7XWEXMZ013", - "derivationPath": "m/44'/501'/3'/0'", - "index": 3, - "entropy": { - "type": "mnemonic", - "id": "01KMK79H2SG3MB2Q7XWEXMZ013", - "groupIndex": 3, - "derivationPath": "m/44'/501'/3'/0'" - } - }, - "methods": [ - "signAndSendTransaction", - "signTransaction", - "signMessage", - "signIn" - ], - "scopes": [ - "solana:5eykt4UsFv8P8NJdTREpY1vzqKqZKvdp", - "solana:4uhcVJyU9pJkvQyS88uRDiswHXSCkY3z", - "solana:EtWTRABZaYq6iMfeYKouRu166VU2xqa1" - ], - "metadata": { - "name": "", - "importTime": 1774466681884, - "keyring": { - "type": "Snap Keyring" - }, - "snap": { - "id": "npm:@metamask/solana-wallet-snap" - }, - "lastSelected": 0 - } - }, - "040b84bc-2341-4988-b8db-8063bbc6c708": { - "type": "solana:data-account", - "id": "040b84bc-2341-4988-b8db-8063bbc6c708", - "address": "fXSVz3jyNokxeNN1Z6bvh4eT4ZuXv1gtpGaSg4HxxXw", - "options": { - "entropySource": "01KMK79H2SG3MB2Q7XWEXMZ013", - "derivationPath": "m/44'/501'/4'/0'", - "index": 4, - "entropy": { - "type": "mnemonic", - "id": "01KMK79H2SG3MB2Q7XWEXMZ013", - "groupIndex": 4, - "derivationPath": "m/44'/501'/4'/0'" - } - }, - "methods": [ - "signAndSendTransaction", - "signTransaction", - "signMessage", - "signIn" - ], - "scopes": [ - "solana:5eykt4UsFv8P8NJdTREpY1vzqKqZKvdp", - "solana:4uhcVJyU9pJkvQyS88uRDiswHXSCkY3z", - "solana:EtWTRABZaYq6iMfeYKouRu166VU2xqa1" - ], - "metadata": { - "name": "", - "importTime": 1774466681980, - "keyring": { - "type": "Snap Keyring" - }, - "snap": { - "id": "npm:@metamask/solana-wallet-snap" - }, - "lastSelected": 0 - } - }, - "0089fc3c-35be-4ecf-ba88-22461a3d9503": { - "type": "solana:data-account", - "id": "0089fc3c-35be-4ecf-ba88-22461a3d9503", - "address": "ALcEx6ANnJams9dX2jUwamfSc2P7gA66tUt83o3F2ipv", - "options": { - "entropySource": "01KMK79H2SG3MB2Q7XWEXMZ013", - "derivationPath": "m/44'/501'/5'/0'", - "index": 5, - "entropy": { - "type": "mnemonic", - "id": "01KMK79H2SG3MB2Q7XWEXMZ013", - "groupIndex": 5, - "derivationPath": "m/44'/501'/5'/0'" - } - }, - "methods": [ - "signAndSendTransaction", - "signTransaction", - "signMessage", - "signIn" - ], - "scopes": [ - "solana:5eykt4UsFv8P8NJdTREpY1vzqKqZKvdp", - "solana:4uhcVJyU9pJkvQyS88uRDiswHXSCkY3z", - "solana:EtWTRABZaYq6iMfeYKouRu166VU2xqa1" - ], - "metadata": { - "name": "", - "importTime": 1774466682034, - "keyring": { - "type": "Snap Keyring" - }, - "snap": { - "id": "npm:@metamask/solana-wallet-snap" - }, - "lastSelected": 0 - } - }, - "a380d0c9-927f-4aa2-a382-15ed278e70a4": { - "id": "a380d0c9-927f-4aa2-a382-15ed278e70a4", - "address": "0x9dc641ccd7d1e7c66e47a25598ace7219548d887", - "options": {}, - "methods": [ - "personal_sign", - "eth_sign", - "eth_signTransaction", - "eth_signTypedData_v1", - "eth_signTypedData_v3", - "eth_signTypedData_v4" - ], - "scopes": ["eip155:0"], - "type": "eip155:eoa", - "metadata": { - "name": "", - "importTime": 1773330847736, - "lastSelected": 1773330847737, - "keyring": { - "type": "Ledger Hardware" - } - } - }, - "ae40b2c3-e8e1-45ed-b0cf-a5ba56e74041": { - "id": "ae40b2c3-e8e1-45ed-b0cf-a5ba56e74041", - "address": "0x6eff00186ba65c5fade98d75aa4d99ef71fa461b", - "options": {}, - "methods": [ - "personal_sign", - "eth_sign", - "eth_signTransaction", - "eth_signTypedData_v1", - "eth_signTypedData_v3", - "eth_signTypedData_v4" - ], - "scopes": ["eip155:0"], - "type": "eip155:eoa", - "metadata": { - "name": "", - "importTime": 1773330848214, - "lastSelected": 1773330848215, - "keyring": { - "type": "Ledger Hardware" - } - } - }, - "ea035e3a-ea43-4df0-96aa-b4e50c16396c": { - "id": "ea035e3a-ea43-4df0-96aa-b4e50c16396c", - "address": "0x04400bb51b1f886cff338eb2b4118f9ceb4e6fd5", - "options": {}, - "methods": [ - "personal_sign", - "eth_sign", - "eth_signTransaction", - "eth_signTypedData_v1", - "eth_signTypedData_v3", - "eth_signTypedData_v4" - ], - "scopes": ["eip155:0"], - "type": "eip155:eoa", - "metadata": { - "name": "", - "importTime": 1773330848686, - "lastSelected": 1773330848687, - "keyring": { - "type": "Ledger Hardware" - } - } - }, - "bf588376-0492-4a35-b653-0f1304a6c5f1": { - "id": "bf588376-0492-4a35-b653-0f1304a6c5f1", - "address": "0xb3864b298f4fddbbbd2fa5cf1a2a2748932b3b81", - "options": {}, - "methods": [ - "personal_sign", - "eth_sign", - "eth_signTransaction", - "eth_signTypedData_v1", - "eth_signTypedData_v3", - "eth_signTypedData_v4" - ], - "scopes": ["eip155:0"], - "type": "eip155:eoa", - "metadata": { - "name": "", - "importTime": 1773944251006, - "lastSelected": 1775851212951, - "keyring": { - "type": "Ledger Hardware" - } - } - }, - "7a1e85fa-7c26-48a7-890c-5b2ea56f650c": { - "id": "7a1e85fa-7c26-48a7-890c-5b2ea56f650c", - "address": "0xeeeab71a5989b7951389e3df313ea9876508856f", - "options": {}, - "methods": [ - "personal_sign", - "eth_sign", - "eth_signTransaction", - "eth_signTypedData_v1", - "eth_signTypedData_v3", - "eth_signTypedData_v4" - ], - "scopes": ["eip155:0"], - "type": "eip155:eoa", - "metadata": { - "name": "", - "importTime": 1773944251469, - "lastSelected": 1773944251470, - "keyring": { - "type": "Ledger Hardware" - } - } - }, - "88caeea6-0032-4313-b351-096e9f8e60a9": { - "id": "88caeea6-0032-4313-b351-096e9f8e60a9", - "address": "0x422b8d8914cdad779f587414d647e953bb3a87db", - "options": {}, - "methods": [ - "personal_sign", - "eth_sign", - "eth_signTransaction", - "eth_signTypedData_v1", - "eth_signTypedData_v3", - "eth_signTypedData_v4" - ], - "scopes": ["eip155:0"], - "type": "eip155:eoa", - "metadata": { - "name": "", - "importTime": 1773944251970, - "lastSelected": 1773944251971, - "keyring": { - "type": "Ledger Hardware" - } - } - }, - "2727ea45-0879-4ce8-bbac-e7b83a7ca3de": { - "id": "2727ea45-0879-4ce8-bbac-e7b83a7ca3de", - "address": "0x141d32a89a1e0a5ef360034a2f60a4b917c18838", - "options": { - "entropySource": "01KMK79H2SG3MB2Q7XWEXMZ013", - "derivationPath": "m/44'/60'/0'/0/0", - "groupIndex": 0, - "entropy": { - "type": "mnemonic", - "id": "01KMK79H2SG3MB2Q7XWEXMZ013", - "derivationPath": "m/44'/60'/0'/0/0", - "groupIndex": 0 - } - }, - "methods": [ - "personal_sign", - "eth_sign", - "eth_signTransaction", - "eth_signTypedData_v1", - "eth_signTypedData_v3", - "eth_signTypedData_v4" - ], - "scopes": ["eip155:0"], - "type": "eip155:eoa", - "metadata": { - "name": "", - "importTime": 1774466679899, - "lastSelected": 1778779626824, - "keyring": { - "type": "HD Key Tree" - } - } - }, - "d0a2da70-b536-4e45-beb8-82e35365093d": { - "id": "d0a2da70-b536-4e45-beb8-82e35365093d", - "address": "0x98931e2b2272891c2e8e47d675007d94ae90ce64", - "options": { - "entropySource": "01KMK79H2SG3MB2Q7XWEXMZ013", - "derivationPath": "m/44'/60'/0'/0/1", - "groupIndex": 1, - "entropy": { - "type": "mnemonic", - "id": "01KMK79H2SG3MB2Q7XWEXMZ013", - "derivationPath": "m/44'/60'/0'/0/1", - "groupIndex": 1 - } - }, - "methods": [ - "personal_sign", - "eth_sign", - "eth_signTransaction", - "eth_signTypedData_v1", - "eth_signTypedData_v3", - "eth_signTypedData_v4" - ], - "scopes": ["eip155:0"], - "type": "eip155:eoa", - "metadata": { - "name": "", - "importTime": 1774466681722, - "lastSelected": 0, - "keyring": { - "type": "HD Key Tree" - } - } - }, - "8163605d-535a-441d-a381-a5eac11ef57d": { - "id": "8163605d-535a-441d-a381-a5eac11ef57d", - "address": "0xf1f63d55e8f25c962079be324c71cdcf792c6047", - "options": { - "entropySource": "01KMK79H2SG3MB2Q7XWEXMZ013", - "derivationPath": "m/44'/60'/0'/0/2", - "groupIndex": 2, - "entropy": { - "type": "mnemonic", - "id": "01KMK79H2SG3MB2Q7XWEXMZ013", - "derivationPath": "m/44'/60'/0'/0/2", - "groupIndex": 2 - } - }, - "methods": [ - "personal_sign", - "eth_sign", - "eth_signTransaction", - "eth_signTypedData_v1", - "eth_signTypedData_v3", - "eth_signTypedData_v4" - ], - "scopes": ["eip155:0"], - "type": "eip155:eoa", - "metadata": { - "name": "", - "importTime": 1774466681725, - "lastSelected": 0, - "keyring": { - "type": "HD Key Tree" - } - } - }, - "d9d2faf4-e5f4-4505-bbe2-a03d3c9e10a1": { - "id": "d9d2faf4-e5f4-4505-bbe2-a03d3c9e10a1", - "address": "0xda04e0fe4e79eebcaffcbfff8ea0bdcd442d2119", - "options": { - "entropySource": "01KMK79H2SG3MB2Q7XWEXMZ013", - "derivationPath": "m/44'/60'/0'/0/3", - "groupIndex": 3, - "entropy": { - "type": "mnemonic", - "id": "01KMK79H2SG3MB2Q7XWEXMZ013", - "derivationPath": "m/44'/60'/0'/0/3", - "groupIndex": 3 - } - }, - "methods": [ - "personal_sign", - "eth_sign", - "eth_signTransaction", - "eth_signTypedData_v1", - "eth_signTypedData_v3", - "eth_signTypedData_v4" - ], - "scopes": ["eip155:0"], - "type": "eip155:eoa", - "metadata": { - "name": "", - "importTime": 1774466681727, - "lastSelected": 0, - "keyring": { - "type": "HD Key Tree" - } - } - }, - "3401973a-4989-44c5-9569-f27f25197c2d": { - "id": "3401973a-4989-44c5-9569-f27f25197c2d", - "address": "0xa30078e306614c2f444550da6bc759173dfb61fd", - "options": { - "entropySource": "01KMK79H2SG3MB2Q7XWEXMZ013", - "derivationPath": "m/44'/60'/0'/0/4", - "groupIndex": 4, - "entropy": { - "type": "mnemonic", - "id": "01KMK79H2SG3MB2Q7XWEXMZ013", - "derivationPath": "m/44'/60'/0'/0/4", - "groupIndex": 4 - } - }, - "methods": [ - "personal_sign", - "eth_sign", - "eth_signTransaction", - "eth_signTypedData_v1", - "eth_signTypedData_v3", - "eth_signTypedData_v4" - ], - "scopes": ["eip155:0"], - "type": "eip155:eoa", - "metadata": { - "name": "", - "importTime": 1774466681728, - "lastSelected": 0, - "keyring": { - "type": "HD Key Tree" - } - } - }, - "83bd90d5-eaa6-4f8d-b89b-b574273bd04e": { - "id": "83bd90d5-eaa6-4f8d-b89b-b574273bd04e", - "address": "0x09b8556833e53f92ee0b668db146b43ca2cab130", - "options": { - "entropySource": "01KMK79H2SG3MB2Q7XWEXMZ013", - "derivationPath": "m/44'/60'/0'/0/5", - "groupIndex": 5, - "entropy": { - "type": "mnemonic", - "id": "01KMK79H2SG3MB2Q7XWEXMZ013", - "derivationPath": "m/44'/60'/0'/0/5", - "groupIndex": 5 - } - }, - "methods": [ - "personal_sign", - "eth_sign", - "eth_signTransaction", - "eth_signTypedData_v1", - "eth_signTypedData_v3", - "eth_signTypedData_v4" - ], - "scopes": ["eip155:0"], - "type": "eip155:eoa", - "metadata": { - "name": "", - "importTime": 1774466681730, - "lastSelected": 0, - "keyring": { - "type": "HD Key Tree" - } - } - } - }, - "selectedAccount": "2727ea45-0879-4ce8-bbac-e7b83a7ca3de" - }, - "transactions": [ - { - "blockNumber": "92728105", - "chainId": "0x38", - "hash": "0xa4ffe05631fb6d092afeea824327ccf8b9f158eaff70b121394ab112543c4cf9", - "id": "0494bf80-38fb-11f1-a11d-3727d90ba13b", - "isTransfer": false, - "networkClientId": "bsc-mainnet", - "status": "confirmed", - "time": 1776278619000, - "toSmartContract": false, - "transferInformation": { - "amount": "8087463000000000000", - "contractAddress": "0x8ac76a51cc950d9822d68b83fe1ad97b32cd580d", - "decimals": 18, - "symbol": "USDC" - }, - "txParams": { - "chainId": "0x38", - "data": "0xcef6d209", - "from": "0xb01caea8c6c47bbf4f4b4c5080ca642043359c2e", - "gas": "0x8847b", - "gasPrice": "0x3938700", - "gasUsed": "0x66867", - "nonce": "0xc1dd2", - "to": "0xdb9b1e94b5b69df7e401ddbede43491141047db3", - "value": "0x0" - }, - "type": "incoming", - "verifiedOnBlockchain": false - }, - { - "blockNumber": "92728730", - "chainId": "0x38", - "hash": "0x5c198b97684dc3cdb3c7c83fae8022831a71a141cf7e4432b6dc58078f706e0b", - "id": "acaa8880-38fb-11f1-a11c-3727d90ba13b", - "isTransfer": false, - "networkClientId": "bsc-mainnet", - "status": "confirmed", - "time": 1776278901000, - "toSmartContract": false, - "transferInformation": { - "amount": "7901117635524923293", - "contractAddress": "0x55d398326f99059ff775485246999027b3197955", - "decimals": 18, - "symbol": "USDT" - }, - "txParams": { - "chainId": "0x38", - "data": "0x5f575529", - "from": "0x141d32a89a1e0a5ef360034a2f60a4b917c18838", - "gas": "0x5cdc7", - "gasPrice": "0x2faf080", - "gasUsed": "0x31fab", - "nonce": "0x47", - "to": "0x1a1ec25dc08e98e5e93f1104b5e5cdd298707d31", - "value": "0x2d7b3318cddde8" - }, - "type": "contractInteraction", - "verifiedOnBlockchain": false - }, - { - "blockNumber": "92728789", - "chainId": "0x38", - "hash": "0x6f29f74b255e1725cfb474dca4b0a9d6e0ea69ff35c42da6612cd9f06e85ee4b", - "id": "bc29d180-38fb-11f1-a11b-3727d90ba13b", - "isTransfer": false, - "networkClientId": "bsc-mainnet", - "status": "confirmed", - "time": 1776278927000, - "toSmartContract": false, - "transferInformation": { - "amount": "7901117635524923293", - "contractAddress": "0x55d398326f99059ff775485246999027b3197955", - "decimals": 18, - "symbol": "USDT" - }, - "txParams": { - "chainId": "0x38", - "data": "0xcef6d209", - "from": "0xb01caea8c6c47bbf4f4b4c5080ca642043359c2e", - "gas": "0x7d5be", - "gasPrice": "0x3938700", - "gasUsed": "0x5f102", - "nonce": "0xc1de7", - "to": "0xdb9b1e94b5b69df7e401ddbede43491141047db3", - "value": "0x0" - }, - "type": "incoming", - "verifiedOnBlockchain": false - }, - { - "blockNumber": "92729970", - "chainId": "0x38", - "hash": "0xd3238cc0e2fa732f7c9876952f77bc4bb3f3c4c270b07443ec9404c5feb669f4", - "id": "f9429380-38fc-11f1-a11a-3727d90ba13b", - "isTransfer": false, - "networkClientId": "bsc-mainnet", - "status": "confirmed", - "time": 1776279459000, - "toSmartContract": false, - "transferInformation": { - "amount": "7726247058710927665", - "contractAddress": "0x55d398326f99059ff775485246999027b3197955", - "decimals": 18, - "symbol": "USDT" - }, - "txParams": { - "chainId": "0x38", - "data": "0x5f575529", - "from": "0x141d32a89a1e0a5ef360034a2f60a4b917c18838", - "gas": "0x5cd9b", - "gasPrice": "0x2faf080", - "gasUsed": "0x2f9fc", - "nonce": "0x48", - "to": "0x1a1ec25dc08e98e5e93f1104b5e5cdd298707d31", - "value": "0x2c7c3068ff376b" - }, - "type": "contractInteraction", - "verifiedOnBlockchain": false - }, - { - "blockNumber": "92730035", - "chainId": "0x38", - "hash": "0x47a1e900367de8d034b0b84a2bd75c953eac0afe1d8ac1b0a7a3ababbc17bd8b", - "id": "0a8ba000-38fd-11f1-a119-3727d90ba13b", - "isTransfer": false, - "networkClientId": "bsc-mainnet", - "status": "confirmed", - "time": 1776279488000, - "toSmartContract": false, - "transferInformation": { - "amount": "7726247058710927665", - "contractAddress": "0x55d398326f99059ff775485246999027b3197955", - "decimals": 18, - "symbol": "USDT" - }, - "txParams": { - "chainId": "0x38", - "data": "0xcef6d209", - "from": "0xb01caea8c6c47bbf4f4b4c5080ca642043359c2e", - "gas": "0x767db", - "gasPrice": "0x3938700", - "gasUsed": "0x5a31c", - "nonce": "0xc1dfe", - "to": "0xdb9b1e94b5b69df7e401ddbede43491141047db3", - "value": "0x0" - }, - "type": "incoming", - "verifiedOnBlockchain": false - }, - { - "blockNumber": "92759998", - "chainId": "0x38", - "hash": "0x45d137ccd9df4f1c49958811cc1bca6da02250a7651191cff0160067992301ef", - "id": "7af5e980-391c-11f1-a118-3727d90ba13b", - "isTransfer": false, - "networkClientId": "bsc-mainnet", - "status": "confirmed", - "time": 1776292991000, - "toSmartContract": false, - "transferInformation": { - "amount": "7590999614638832733", - "contractAddress": "0x55d398326f99059ff775485246999027b3197955", - "decimals": 18, - "symbol": "USDT" - }, - "txParams": { - "chainId": "0x38", - "data": "0x5f575529", - "from": "0x141d32a89a1e0a5ef360034a2f60a4b917c18838", - "gas": "0x50f7a", - "gasPrice": "0x3938700", - "gasUsed": "0x2f76a", - "nonce": "0x49", - "to": "0x1a1ec25dc08e98e5e93f1104b5e5cdd298707d31", - "value": "0x2b86a25e1dd46e" - }, - "type": "contractInteraction", - "verifiedOnBlockchain": false - }, - { - "blockNumber": "150347153", - "chainId": "0xa", - "hash": "0x744d809d88bce96a3e37024a6456130a0fa5c8c6a13880da9376ccf97caeb1b8", - "id": "b1cbff80-391c-11f1-a117-3727d90ba13b", - "isTransfer": false, - "networkClientId": "optimism-mainnet", - "status": "confirmed", - "time": 1776293083000, - "toSmartContract": false, - "txParams": { - "chainId": "0xa", - "data": "0x3ce33bff", - "from": "0x141d32a89a1e0a5ef360034a2f60a4b917c18838", - "gas": "0xcb996", - "gasPrice": "0x18b0d", - "gasUsed": "0x70ab7", - "nonce": "0x68", - "to": "0xb90357f2b86dbfd59c3502215d4060f71df8ca0e", - "value": "0xaa87bee538000" - }, - "type": "contractInteraction", - "verifiedOnBlockchain": false - }, - { - "blockNumber": "85586684", - "chainId": "0x89", - "hash": "0xe65a458cbdf638b9f126bd5ad0f14d0c08cd289372df64bec076ea28d0a3d144", - "id": "75e56a00-391d-11f1-a115-3727d90ba13b", - "isTransfer": false, - "networkClientId": "polygon-mainnet", - "status": "confirmed", - "time": 1776293412000, - "toSmartContract": false, - "txParams": { - "chainId": "0x89", - "data": null, - "from": "0x141d32a89a1e0a5ef360034a2f60a4b917c18838", - "gas": "0x7b0c", - "gasPrice": "0x397103e07b", - "gasUsed": "0x5208", - "nonce": "0x5c", - "to": "0x141d32a89a1e0a5ef360034a2f60a4b917c18838", - "value": "0x0" - }, - "type": "simpleSend", - "verifiedOnBlockchain": false - }, - { - "blockNumber": "85586684", - "chainId": "0x89", - "hash": "0x8579a3edf400da926029004405786c1e9becf41f3e1738948c89268331a203c6", - "id": "75e56a01-391d-11f1-a115-3727d90ba13b", - "isTransfer": false, - "networkClientId": "polygon-mainnet", - "status": "confirmed", - "time": 1776293412000, - "toSmartContract": false, - "txParams": { - "chainId": "0x89", - "data": null, - "from": "0x141d32a89a1e0a5ef360034a2f60a4b917c18838", - "gas": "0x7b0c", - "gasPrice": "0x4d8a56549b", - "gasUsed": "0x5208", - "nonce": "0x5b", - "to": "0x141d32a89a1e0a5ef360034a2f60a4b917c18838", - "value": "0x0" - }, - "type": "simpleSend", - "verifiedOnBlockchain": false - }, - { - "blockNumber": "85586804", - "chainId": "0x89", - "hash": "0x2df5aee380031511fea7b6adbab155ceb24509fbd5e99a9c02f1800b73a9f4d8", - "id": "04f28200-391e-11f1-a114-3727d90ba13b", - "isTransfer": false, - "networkClientId": "polygon-mainnet", - "status": "confirmed", - "time": 1776293652000, - "toSmartContract": false, - "txParams": { - "chainId": "0x89", - "data": "0x3ce33bff", - "from": "0x141d32a89a1e0a5ef360034a2f60a4b917c18838", - "gas": "0xb9a29", - "gasPrice": "0x2c4903bccd", - "gasUsed": "0x5ec7d", - "nonce": "0x5d", - "to": "0x3a0b42ce6166abb05d30ddf12e726c95a83d7a16", - "value": "0xa8b5381137423cfec" - }, - "type": "contractInteraction", - "verifiedOnBlockchain": false - }, - { - "assetsFiatValues": { - "receiving": "12.45003634890888726788642087", - "sending": "13.12423066033204712481887024" - }, - "baseFeePerGas": "0xdad5916", - "batchId": "0x8e05f75be20d461b8c348914badb364f", - "blockTimestamp": "0x69e12d23", - "chainId": "0x1", - "defaultGasEstimates": { - "estimateType": "medium", - "gas": "0x16751", - "maxFeePerGas": "0x8bcc327f", - "maxPriorityFeePerGas": "0x7d2b7501" - }, - "disableGasBuffer": true, - "gasFeeEstimates": { - "high": { - "maxFeePerGas": "0x89cd8f1c", - "maxPriorityFeePerGas": "0x77359400" - }, - "low": { - "maxFeePerGas": "0xd08b2fa", - "maxPriorityFeePerGas": "0x80a8a" - }, - "medium": { - "maxFeePerGas": "0x89cd8f1c", - "maxPriorityFeePerGas": "0x77359400" - }, - "type": "fee-market" - }, - "gasFeeEstimatesLoaded": true, - "gasLimitNoBuffer": "0x16751", - "hash": "0xc8a9a70b2b2b3025a401d0560f03eacad3eab4f64141a6ec7926a711731b439c", - "id": "c0a4ae60-39c3-11f1-a13c-3727d90ba13b", - "isGasFeeTokenIgnoredIfBalance": false, - "networkClientId": "mainnet", - "origin": "metamask", - "r": "0xcccdb1f5949e82110883158eb7a43d4febf037ecc5af81ef100a11c46e3f4ad", - "rawTx": "0x02f902f90130847d2b7501848bcc327f83016751940439e60f02a8900a951603950d8d4527f400c3f18713329268315551b902853ce33bff00000000000000000000000000000000000000000000000000000000000000800000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001332926831555100000000000000000000000000000000000000000000000000000000000000c0000000000000000000000000000000000000000000000000000000000000000e72656c617941646170746572563200000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001a00000000000000000000000004cd00e387622c35bddb9b4c962c136462338bc310000000000000000000000004cd00e387622c35bddb9b4c962c136462338bc31000000000000000000000000000000000000000000000000000000000000a4b100000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001305bb2f4ff468000000000000000000000000000000000000000000000000000000000000014000000000000000000000000000000000000000000000000000002cd738e160e9000000000000000000000000e3478b0bb1a5084567c319096437924948be1964000000000000000000000000000000000000000000000000000000000000004449290c1c000000000000000000000000141d32a89a1e0a5ef360034a2f60a4b917c18838d4b107258218ce95d35a36726edf2898454fe732a822e59eb6575676afd130cd000000000000000000000000000000000000000000000000000000008cc080a00cccdb1f5949e82110883158eb7a43d4febf037ecc5af81ef100a11c46e3f4ada051c8705278456c30e8776dcc1d0a301ed273798e8787e95a64c7c26f30c9cdd9", - "s": "0x51c8705278456c30e8776dcc1d0a301ed273798e8787e95a64c7c26f30c9cdd9", - "status": "confirmed", - "submittedTime": 1776364834346, - "time": 1776364833862, - "txParams": { - "data": "0x3ce33bff00000000000000000000000000000000000000000000000000000000000000800000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001332926831555100000000000000000000000000000000000000000000000000000000000000c0000000000000000000000000000000000000000000000000000000000000000e72656c617941646170746572563200000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001a00000000000000000000000004cd00e387622c35bddb9b4c962c136462338bc310000000000000000000000004cd00e387622c35bddb9b4c962c136462338bc31000000000000000000000000000000000000000000000000000000000000a4b100000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001305bb2f4ff468000000000000000000000000000000000000000000000000000000000000014000000000000000000000000000000000000000000000000000002cd738e160e9000000000000000000000000e3478b0bb1a5084567c319096437924948be1964000000000000000000000000000000000000000000000000000000000000004449290c1c000000000000000000000000141d32a89a1e0a5ef360034a2f60a4b917c18838d4b107258218ce95d35a36726edf2898454fe732a822e59eb6575676afd130cd000000000000000000000000000000000000000000000000000000008c", - "from": "0x141d32a89a1e0a5ef360034a2f60a4b917c18838", - "gas": "0x16751", - "gasLimit": "0x16751", - "maxFeePerGas": "0x8bcc327f", - "maxPriorityFeePerGas": "0x7d2b7501", - "nonce": "0x30", - "to": "0x0439e60f02a8900a951603950d8d4527f400c3f1", - "type": "0x2", - "value": "0x13329268315551" - }, - "txParamsOriginal": { - "data": "0x3ce33bff00000000000000000000000000000000000000000000000000000000000000800000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001332926831555100000000000000000000000000000000000000000000000000000000000000c0000000000000000000000000000000000000000000000000000000000000000e72656c617941646170746572563200000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001a00000000000000000000000004cd00e387622c35bddb9b4c962c136462338bc310000000000000000000000004cd00e387622c35bddb9b4c962c136462338bc31000000000000000000000000000000000000000000000000000000000000a4b100000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001305bb2f4ff468000000000000000000000000000000000000000000000000000000000000014000000000000000000000000000000000000000000000000000002cd738e160e9000000000000000000000000e3478b0bb1a5084567c319096437924948be1964000000000000000000000000000000000000000000000000000000000000004449290c1c000000000000000000000000141d32a89a1e0a5ef360034a2f60a4b917c18838d4b107258218ce95d35a36726edf2898454fe732a822e59eb6575676afd130cd000000000000000000000000000000000000000000000000000000008c", - "from": "0x141d32a89a1e0a5ef360034a2f60a4b917c18838", - "gas": "0x16751", - "maxFeePerGas": "0x8bcc327f", - "maxPriorityFeePerGas": "0x7d2b7501", - "to": "0x0439e60f02a8900a951603950d8d4527f400c3f1", - "type": "0x2", - "value": "0x13329268315551" - }, - "txReceipt": { - "blockHash": "0x01e0ecd18fd76d539c5ec7e894aec023e9acb9084c51871cb21966818cbb0477", - "blockNumber": "0x17bdb25", - "contractAddress": null, - "cumulativeGasUsed": "0xa71513", - "effectiveGasPrice": "0x8ad8ce17", - "from": "0x141d32a89a1e0a5ef360034a2f60a4b917c18838", - "gasUsed": "0x130d2", - "logs": [ - { - "address": "0x9a47f3289794e9bbc6a3c571f6d96ad4e7baed16", - "blockHash": "0x01e0ecd18fd76d539c5ec7e894aec023e9acb9084c51871cb21966818cbb0477", - "blockNumber": "0x17bdb25", - "blockTimestamp": "0x69e12d23", - "data": "0x0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000e3478b0bb1a5084567c319096437924948be196400000000000000000000000000000000000000000000000000002cd738e160e9", - "logIndex": "0xf3", - "removed": false, - "topics": [ - "0x6ded982279c8387ad8a63e73385031a3807c1862e633f06e09d11bcb6e282f60" - ], - "transactionHash": "0xc8a9a70b2b2b3025a401d0560f03eacad3eab4f64141a6ec7926a711731b439c", - "transactionIndex": "0x52" - }, - { - "address": "0x4cd00e387622c35bddb9b4c962c136462338bc31", - "blockHash": "0x01e0ecd18fd76d539c5ec7e894aec023e9acb9084c51871cb21966818cbb0477", - "blockNumber": "0x17bdb25", - "blockTimestamp": "0x69e12d23", - "data": "0x000000000000000000000000141d32a89a1e0a5ef360034a2f60a4b917c18838000000000000000000000000000000000000000000000000001305bb2f4ff468d4b107258218ce95d35a36726edf2898454fe732a822e59eb6575676afd130cd", - "logIndex": "0xf4", - "removed": false, - "topics": [ - "0x8032066556caf3967d8fec4ad22a2d9e1e9576556b2903a0fcd5b1fd201e3477" - ], - "transactionHash": "0xc8a9a70b2b2b3025a401d0560f03eacad3eab4f64141a6ec7926a711731b439c", - "transactionIndex": "0x52" - }, - { - "address": "0x9a47f3289794e9bbc6a3c571f6d96ad4e7baed16", - "blockHash": "0x01e0ecd18fd76d539c5ec7e894aec023e9acb9084c51871cb21966818cbb0477", - "blockNumber": "0x17bdb25", - "blockTimestamp": "0x69e12d23", - "data": "0x000000000000000000000000141d32a89a1e0a5ef360034a2f60a4b917c188380000000000000000000000004cd00e387622c35bddb9b4c962c136462338bc31000000000000000000000000000000000000000000000000000000000000a4b100000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001305bb2f4ff468", - "logIndex": "0xf5", - "removed": false, - "topics": [ - "0x831bac9533a2034226daa21109dbd4f887674f0fe4877e1a8b35b3ffe1bdce76" - ], - "transactionHash": "0xc8a9a70b2b2b3025a401d0560f03eacad3eab4f64141a6ec7926a711731b439c", - "transactionIndex": "0x52" - } - ], - "logsBloom": "0x00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000100000000000002000000000000100000000000000000000000000000000000004000000000000000000000000000000000000002000000000800000000000000000000000000000000000000000000000000000000000000000000000000000000000200000000000000000000000000000400000000000004000000400000008000020000000000000040000000000000000000000000000000000000200000000000000000000000000000000000000000000000000000000000400000000", - "status": "0x1", - "to": "0x0439e60f02a8900a951603950d8d4527f400c3f1", - "transactionHash": "0xc8a9a70b2b2b3025a401d0560f03eacad3eab4f64141a6ec7926a711731b439c", - "transactionIndex": "0x52", - "type": "0x2" - }, - "type": "bridge", - "userEditedGasLimit": false, - "userFeeLevel": "medium", - "v": "0x0", - "verifiedOnBlockchain": true - }, - { - "blockNumber": "24894245", - "chainId": "0x1", - "hash": "0xc8a9a70b2b2b3025a401d0560f03eacad3eab4f64141a6ec7926a711731b439c", - "id": "c1525380-39c3-11f1-a13d-3727d90ba13b", - "isTransfer": false, - "networkClientId": "mainnet", - "status": "confirmed", - "time": 1776364835000, - "toSmartContract": false, - "txParams": { - "chainId": "0x1", - "data": "0x3ce33bff", - "from": "0x141d32a89a1e0a5ef360034a2f60a4b917c18838", - "gas": "0x16751", - "gasPrice": "0x8ad8ce17", - "gasUsed": "0x130d2", - "nonce": "0x30", - "to": "0x0439e60f02a8900a951603950d8d4527f400c3f1", - "value": "0x13329268315551" - }, - "type": "contractInteraction", - "verifiedOnBlockchain": false - }, - { - "blockNumber": "453184038", - "chainId": "0xa4b1", - "hash": "0xe2943b245749218241f8b60282c5e853a7705fbe9feb51673867c6b67d3c17b5", - "id": "c3b4ad80-39c3-11f1-a13c-3727d90ba13b", - "isTransfer": false, - "networkClientId": "arbitrum-mainnet", - "status": "confirmed", - "time": 1776364839000, - "toSmartContract": false, - "txParams": { - "chainId": "0xa4b1", - "data": "0xd4b10725", - "from": "0xf70da97812cb96acdf810712aa562db8dfa3dbef", - "gas": "0xaca8", - "gasPrice": "0x1326580", - "gasUsed": "0x5764", - "nonce": "0x913886", - "to": "0x141d32a89a1e0a5ef360034a2f60a4b917c18838", - "value": "0x12fd65f9c06e51" - }, - "type": "incoming", - "verifiedOnBlockchain": false - }, - { - "baseFeePerGas": "0x4c4b40", - "batchId": "0x9b387d273e404320bf046b7b63dceaa4", - "blockTimestamp": "0x69e13303", - "chainId": "0x2105", - "defaultGasEstimates": { - "estimateType": "medium", - "gas": "0x3a8a9", - "maxFeePerGas": "0x14fb180", - "maxPriorityFeePerGas": "0x1fbb4c" - }, - "delegationAddress": "0x63c0c19a282a1b52b07dd5a65b58948a07dae32b", - "gasFeeEstimates": { - "high": { - "maxFeePerGas": "0x329e317", - "maxPriorityFeePerGas": "0x2f0940" - }, - "low": { - "maxFeePerGas": "0xa88f2f", - "maxPriorityFeePerGas": "0x103445" - }, - "medium": { - "maxFeePerGas": "0x14fb180", - "maxPriorityFeePerGas": "0x1f1fcc" - }, - "type": "fee-market" - }, - "gasFeeEstimatesLoaded": true, - "gasLimitNoBuffer": "0x27071", - "hash": "0x3ed8255b9d59dc494570ba5cb2cfba5f219ad0813df9905557398e44561676df", - "id": "3ce48380-39c7-11f1-a1dd-3727d90ba13b", - "isGasFeeIncluded": true, - "isGasFeeSponsored": false, - "isGasFeeTokenIgnoredIfBalance": false, - "layer1GasFee": "0x0260efd782", - "nestedTransactions": [ - { - "data": "0x095ea7b3000000000000000000000000a20ecbc821fb54064aa7b5c6ac81173b8b34df710000000000000000000000000000000000000000000000000000000001671d3b", - "effectiveGas": 55449, - "from": "0x141d32a89a1e0a5Ef360034a2f60a4B917c18838", - "to": "0x833589fcd6edb6e08f4c7c32d4f71b54bda02913", - "type": "bridgeApproval", - "value": "0x0" - }, - { - "data": "0x3ce33bff0000000000000000000000000000000000000000000000000000000000000080000000000000000000000000833589fcd6edb6e08f4c7c32d4f71b54bda029130000000000000000000000000000000000000000000000000000000001671d3b00000000000000000000000000000000000000000000000000000000000000c0000000000000000000000000000000000000000000000000000000000000000e72656c617941646170746572563200000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001e00000000000000000000000004cd00e387622c35bddb9b4c962c136462338bc310000000000000000000000004cd00e387622c35bddb9b4c962c136462338bc310000000000000000000000000000000000000000000000000000000000000001000000000000000000000000833589fcd6edb6e08f4c7c32d4f71b54bda029130000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000163d374000000000000000000000000000000000000000000000000000000000000014000000000000000000000000000000000000000000000000000000000000349c7000000000000000000000000e3478b0bb1a5084567c319096437924948be19640000000000000000000000000000000000000000000000000000000000000084e8017952000000000000000000000000141d32a89a1e0a5ef360034a2f60a4b917c18838000000000000000000000000833589fcd6edb6e08f4c7c32d4f71b54bda02913000000000000000000000000000000000000000000000000000000000163d37414e387806f12e30257c6616fd834d95d22ea6b41428f89f3ea11cfa093d7e0c80000000000000000000000000000000000000000000000000000000098", - "effectiveGas": 109714, - "from": "0x141d32a89a1e0a5Ef360034a2f60a4B917c18838", - "to": "0xa20ECbC821fB54064aa7B5C6aC81173b8b34Df71", - "type": "bridge", - "value": "0x0" - } - ], - "networkClientId": "base-mainnet", - "origin": "metamask", - "originalGasEstimate": "0x3a8a9", - "r": "0x8bc50d36b7ec079f2319d2f4c3024f0da9b107d7ac5468d3c90d6925b24dd13a", - "rawTx": "0x02f905928221053b831fbb4c84014fb1808303a8a994141d32a89a1e0a5ef360034a2f60a4b917c1883880b90524e9ae5c530100000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000004000000000000000000000000000000000000000000000000000000000000004c00000000000000000000000000000000000000000000000000000000000000020000000000000000000000000000000000000000000000000000000000000000200000000000000000000000000000000000000000000000000000000000000400000000000000000000000000000000000000000000000000000000000000120000000000000000000000000833589fcd6edb6e08f4c7c32d4f71b54bda02913000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000600000000000000000000000000000000000000000000000000000000000000044095ea7b3000000000000000000000000a20ecbc821fb54064aa7b5c6ac81173b8b34df710000000000000000000000000000000000000000000000000000000001671d3b00000000000000000000000000000000000000000000000000000000000000000000000000000000a20ecbc821fb54064aa7b5c6ac81173b8b34df710000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000002c53ce33bff0000000000000000000000000000000000000000000000000000000000000080000000000000000000000000833589fcd6edb6e08f4c7c32d4f71b54bda029130000000000000000000000000000000000000000000000000000000001671d3b00000000000000000000000000000000000000000000000000000000000000c0000000000000000000000000000000000000000000000000000000000000000e72656c617941646170746572563200000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001e00000000000000000000000004cd00e387622c35bddb9b4c962c136462338bc310000000000000000000000004cd00e387622c35bddb9b4c962c136462338bc310000000000000000000000000000000000000000000000000000000000000001000000000000000000000000833589fcd6edb6e08f4c7c32d4f71b54bda029130000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000163d374000000000000000000000000000000000000000000000000000000000000014000000000000000000000000000000000000000000000000000000000000349c7000000000000000000000000e3478b0bb1a5084567c319096437924948be19640000000000000000000000000000000000000000000000000000000000000084e8017952000000000000000000000000141d32a89a1e0a5ef360034a2f60a4b917c18838000000000000000000000000833589fcd6edb6e08f4c7c32d4f71b54bda02913000000000000000000000000000000000000000000000000000000000163d37414e387806f12e30257c6616fd834d95d22ea6b41428f89f3ea11cfa093d7e0c80000000000000000000000000000000000000000000000000000000098000000000000000000000000000000000000000000000000000000c001a08bc50d36b7ec079f2319d2f4c3024f0da9b107d7ac5468d3c90d6925b24dd13aa06dc757a43675ab2ea92135b298e03251737a12829e9932d3d426a3a1cdd9d852", - "s": "0x6dc757a43675ab2ea92135b298e03251737a12829e9932d3d426a3a1cdd9d852", - "status": "confirmed", - "submittedTime": 1776366340599, - "time": 1776366330808, - "txParams": { - "data": "0xe9ae5c530100000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000004000000000000000000000000000000000000000000000000000000000000004c00000000000000000000000000000000000000000000000000000000000000020000000000000000000000000000000000000000000000000000000000000000200000000000000000000000000000000000000000000000000000000000000400000000000000000000000000000000000000000000000000000000000000120000000000000000000000000833589fcd6edb6e08f4c7c32d4f71b54bda02913000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000600000000000000000000000000000000000000000000000000000000000000044095ea7b3000000000000000000000000a20ecbc821fb54064aa7b5c6ac81173b8b34df710000000000000000000000000000000000000000000000000000000001671d3b00000000000000000000000000000000000000000000000000000000000000000000000000000000a20ecbc821fb54064aa7b5c6ac81173b8b34df710000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000002c53ce33bff0000000000000000000000000000000000000000000000000000000000000080000000000000000000000000833589fcd6edb6e08f4c7c32d4f71b54bda029130000000000000000000000000000000000000000000000000000000001671d3b00000000000000000000000000000000000000000000000000000000000000c0000000000000000000000000000000000000000000000000000000000000000e72656c617941646170746572563200000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001e00000000000000000000000004cd00e387622c35bddb9b4c962c136462338bc310000000000000000000000004cd00e387622c35bddb9b4c962c136462338bc310000000000000000000000000000000000000000000000000000000000000001000000000000000000000000833589fcd6edb6e08f4c7c32d4f71b54bda029130000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000163d374000000000000000000000000000000000000000000000000000000000000014000000000000000000000000000000000000000000000000000000000000349c7000000000000000000000000e3478b0bb1a5084567c319096437924948be19640000000000000000000000000000000000000000000000000000000000000084e8017952000000000000000000000000141d32a89a1e0a5ef360034a2f60a4b917c18838000000000000000000000000833589fcd6edb6e08f4c7c32d4f71b54bda02913000000000000000000000000000000000000000000000000000000000163d37414e387806f12e30257c6616fd834d95d22ea6b41428f89f3ea11cfa093d7e0c80000000000000000000000000000000000000000000000000000000098000000000000000000000000000000000000000000000000000000", - "from": "0x141d32a89a1e0a5ef360034a2f60a4b917c18838", - "gas": "0x3a8a9", - "gasLimit": "0x3a8a9", - "maxFeePerGas": "0x14fb180", - "maxPriorityFeePerGas": "0x1fbb4c", - "to": "0x141d32a89a1e0a5ef360034a2f60a4b917c18838", - "type": "0x2", - "value": "0x0" - }, - "txParamsOriginal": { - "data": "0xe9ae5c530100000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000004000000000000000000000000000000000000000000000000000000000000004c00000000000000000000000000000000000000000000000000000000000000020000000000000000000000000000000000000000000000000000000000000000200000000000000000000000000000000000000000000000000000000000000400000000000000000000000000000000000000000000000000000000000000120000000000000000000000000833589fcd6edb6e08f4c7c32d4f71b54bda02913000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000600000000000000000000000000000000000000000000000000000000000000044095ea7b3000000000000000000000000a20ecbc821fb54064aa7b5c6ac81173b8b34df710000000000000000000000000000000000000000000000000000000001671d3b00000000000000000000000000000000000000000000000000000000000000000000000000000000a20ecbc821fb54064aa7b5c6ac81173b8b34df710000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000002c53ce33bff0000000000000000000000000000000000000000000000000000000000000080000000000000000000000000833589fcd6edb6e08f4c7c32d4f71b54bda029130000000000000000000000000000000000000000000000000000000001671d3b00000000000000000000000000000000000000000000000000000000000000c0000000000000000000000000000000000000000000000000000000000000000e72656c617941646170746572563200000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001e00000000000000000000000004cd00e387622c35bddb9b4c962c136462338bc310000000000000000000000004cd00e387622c35bddb9b4c962c136462338bc310000000000000000000000000000000000000000000000000000000000000001000000000000000000000000833589fcd6edb6e08f4c7c32d4f71b54bda029130000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000163d374000000000000000000000000000000000000000000000000000000000000014000000000000000000000000000000000000000000000000000000000000349c7000000000000000000000000e3478b0bb1a5084567c319096437924948be19640000000000000000000000000000000000000000000000000000000000000084e8017952000000000000000000000000141d32a89a1e0a5ef360034a2f60a4b917c18838000000000000000000000000833589fcd6edb6e08f4c7c32d4f71b54bda02913000000000000000000000000000000000000000000000000000000000163d37414e387806f12e30257c6616fd834d95d22ea6b41428f89f3ea11cfa093d7e0c80000000000000000000000000000000000000000000000000000000098000000000000000000000000000000000000000000000000000000", - "from": "0x141d32a89a1e0a5ef360034a2f60a4b917c18838", - "to": "0x141d32a89a1e0a5ef360034a2f60a4b917c18838", - "type": "0x2", - "value": "0x0" - }, - "txReceipt": { - "blobGasUsed": "0x14fe4", - "blockHash": "0x54b8f6145efd406fb63811ffe209cabe3cf64fcf8140d39787db9a23d52587f4", - "blockNumber": "0x2ab6b10", - "contractAddress": null, - "cumulativeGasUsed": "0x10abafd", - "daFootprintGasScalar": "0x94", - "effectiveGasPrice": "0x5b8d81", - "from": "0xc066ac5d385419b1a8c43a0e146fa439837a8b8c", - "gasUsed": "0x4203d", - "l1BaseFeeScalar": "0x8dd", - "l1BlobBaseFee": "0x1195ea0", - "l1BlobBaseFeeScalar": "0x101c12", - "l1Fee": "0x40e0e4160", - "l1GasPrice": "0x1136aa15", - "l1GasUsed": "0x2457", - "logs": [ - { - "address": "0x04658b29f6b82ed55274221a06fc97d318e25416", - "blockHash": "0x54b8f6145efd406fb63811ffe209cabe3cf64fcf8140d39787db9a23d52587f4", - "blockNumber": "0x2ab6b10", - "blockTimestamp": "0x69e13303", - "data": "0x00000000000000000000000000000000000000000000000000000000000000010000000000000000000000000000000000000000000000000000000000000001", - "logIndex": "0x1ef", - "removed": false, - "topics": [ - "0x449da07f2c06c9d1a6b19d2454ffe749e8cf991d22f686e076a1a4844c5ff370", - "0x000000000000000000000000db9b1e94b5b69df7e401ddbede43491141047db3", - "0x000000000000000000000000c066ac5d385419b1a8c43a0e146fa439837a8b8c", - "0xddd29bdb9182709a42eb20a764a4b4bbffc4bee8482a6c27dfe22a7bc158a104" - ], - "transactionHash": "0x3ed8255b9d59dc494570ba5cb2cfba5f219ad0813df9905557398e44561676df", - "transactionIndex": "0x6a" - }, - { - "address": "0x833589fcd6edb6e08f4c7c32d4f71b54bda02913", - "blockHash": "0x54b8f6145efd406fb63811ffe209cabe3cf64fcf8140d39787db9a23d52587f4", - "blockNumber": "0x2ab6b10", - "blockTimestamp": "0x69e13303", - "data": "0x0000000000000000000000000000000000000000000000000000000001671d3b", - "logIndex": "0x1f0", - "removed": false, - "topics": [ - "0x8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925", - "0x000000000000000000000000141d32a89a1e0a5ef360034a2f60a4b917c18838", - "0x000000000000000000000000a20ecbc821fb54064aa7b5c6ac81173b8b34df71" - ], - "transactionHash": "0x3ed8255b9d59dc494570ba5cb2cfba5f219ad0813df9905557398e44561676df", - "transactionIndex": "0x6a" - }, - { - "address": "0x833589fcd6edb6e08f4c7c32d4f71b54bda02913", - "blockHash": "0x54b8f6145efd406fb63811ffe209cabe3cf64fcf8140d39787db9a23d52587f4", - "blockNumber": "0x2ab6b10", - "blockTimestamp": "0x69e13303", - "data": "0x0000000000000000000000000000000000000000000000000000000001671d3b", - "logIndex": "0x1f1", - "removed": false, - "topics": [ - "0xddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef", - "0x000000000000000000000000141d32a89a1e0a5ef360034a2f60a4b917c18838", - "0x000000000000000000000000a5c1ce365ddb5a91ff466774ec4bdf8f97cb9f55" - ], - "transactionHash": "0x3ed8255b9d59dc494570ba5cb2cfba5f219ad0813df9905557398e44561676df", - "transactionIndex": "0x6a" - }, - { - "address": "0x833589fcd6edb6e08f4c7c32d4f71b54bda02913", - "blockHash": "0x54b8f6145efd406fb63811ffe209cabe3cf64fcf8140d39787db9a23d52587f4", - "blockNumber": "0x2ab6b10", - "blockTimestamp": "0x69e13303", - "data": "0x00000000000000000000000000000000000000000000000000000000000349c7", - "logIndex": "0x1f2", - "removed": false, - "topics": [ - "0xddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef", - "0x000000000000000000000000a5c1ce365ddb5a91ff466774ec4bdf8f97cb9f55", - "0x000000000000000000000000e3478b0bb1a5084567c319096437924948be1964" - ], - "transactionHash": "0x3ed8255b9d59dc494570ba5cb2cfba5f219ad0813df9905557398e44561676df", - "transactionIndex": "0x6a" - }, - { - "address": "0xa5c1ce365ddb5a91ff466774ec4bdf8f97cb9f55", - "blockHash": "0x54b8f6145efd406fb63811ffe209cabe3cf64fcf8140d39787db9a23d52587f4", - "blockNumber": "0x2ab6b10", - "blockTimestamp": "0x69e13303", - "data": "0x000000000000000000000000833589fcd6edb6e08f4c7c32d4f71b54bda02913000000000000000000000000e3478b0bb1a5084567c319096437924948be196400000000000000000000000000000000000000000000000000000000000349c7", - "logIndex": "0x1f3", - "removed": false, - "topics": [ - "0x6ded982279c8387ad8a63e73385031a3807c1862e633f06e09d11bcb6e282f60" - ], - "transactionHash": "0x3ed8255b9d59dc494570ba5cb2cfba5f219ad0813df9905557398e44561676df", - "transactionIndex": "0x6a" - }, - { - "address": "0x833589fcd6edb6e08f4c7c32d4f71b54bda02913", - "blockHash": "0x54b8f6145efd406fb63811ffe209cabe3cf64fcf8140d39787db9a23d52587f4", - "blockNumber": "0x2ab6b10", - "blockTimestamp": "0x69e13303", - "data": "0x000000000000000000000000000000000000000000000000000000000163d374", - "logIndex": "0x1f4", - "removed": false, - "topics": [ - "0xddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef", - "0x000000000000000000000000a5c1ce365ddb5a91ff466774ec4bdf8f97cb9f55", - "0x0000000000000000000000004cd00e387622c35bddb9b4c962c136462338bc31" - ], - "transactionHash": "0x3ed8255b9d59dc494570ba5cb2cfba5f219ad0813df9905557398e44561676df", - "transactionIndex": "0x6a" - }, - { - "address": "0x4cd00e387622c35bddb9b4c962c136462338bc31", - "blockHash": "0x54b8f6145efd406fb63811ffe209cabe3cf64fcf8140d39787db9a23d52587f4", - "blockNumber": "0x2ab6b10", - "blockTimestamp": "0x69e13303", - "data": "0x000000000000000000000000141d32a89a1e0a5ef360034a2f60a4b917c18838000000000000000000000000833589fcd6edb6e08f4c7c32d4f71b54bda02913000000000000000000000000000000000000000000000000000000000163d37414e387806f12e30257c6616fd834d95d22ea6b41428f89f3ea11cfa093d7e0c8", - "logIndex": "0x1f5", - "removed": false, - "topics": [ - "0x49fed1d0b752ce30eee63c7a81133f3363b532fec5d4d7dd1ccfd005de4555e1" - ], - "transactionHash": "0x3ed8255b9d59dc494570ba5cb2cfba5f219ad0813df9905557398e44561676df", - "transactionIndex": "0x6a" - }, - { - "address": "0xa5c1ce365ddb5a91ff466774ec4bdf8f97cb9f55", - "blockHash": "0x54b8f6145efd406fb63811ffe209cabe3cf64fcf8140d39787db9a23d52587f4", - "blockNumber": "0x2ab6b10", - "blockTimestamp": "0x69e13303", - "data": "0x000000000000000000000000141d32a89a1e0a5ef360034a2f60a4b917c188380000000000000000000000004cd00e387622c35bddb9b4c962c136462338bc310000000000000000000000000000000000000000000000000000000000000001000000000000000000000000833589fcd6edb6e08f4c7c32d4f71b54bda029130000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000163d374", - "logIndex": "0x1f6", - "removed": false, - "topics": [ - "0x831bac9533a2034226daa21109dbd4f887674f0fe4877e1a8b35b3ffe1bdce76" - ], - "transactionHash": "0x3ed8255b9d59dc494570ba5cb2cfba5f219ad0813df9905557398e44561676df", - "transactionIndex": "0x6a" - }, - { - "address": "0xdb9b1e94b5b69df7e401ddbede43491141047db3", - "blockHash": "0x54b8f6145efd406fb63811ffe209cabe3cf64fcf8140d39787db9a23d52587f4", - "blockNumber": "0x2ab6b10", - "blockTimestamp": "0x69e13303", - "data": "0x00000000000000000000000000000000000000000000000000000000000000200000000000000000000000000000000000000000000000000000000000000a11000000000000000000000000141d32a89a1e0a5ef360034a2f60a4b917c18838ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff00000000000000000000000000000000000000000000000000000000000000c000000000000000000000000000000000000000000000000000000000b875174200000000000000000000000000000000000000000000000000000000000007400000000000000000000000000000000000000000000000000000000000000002000000000000000000000000000000000000000000000000000000000000004000000000000000000000000000000000000000000000000000000000000005a00000000000000000000000001e141e455d08721dd5bcda1baa6ea5633afd50170000000000000000000000000000000000000000000000000000000000000060000000000000000000000000000000000000000000000000000000000000054000000000000000000000000000000000000000000000000000000000000004c00000000000000000000000000000000000000000000000000000000000000020000000000000000000000000000000000000000000000000000000000000000200000000000000000000000000000000000000000000000000000000000000400000000000000000000000000000000000000000000000000000000000000120000000000000000000000000833589fcd6edb6e08f4c7c32d4f71b54bda02913000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000600000000000000000000000000000000000000000000000000000000000000044095ea7b3000000000000000000000000a20ecbc821fb54064aa7b5c6ac81173b8b34df710000000000000000000000000000000000000000000000000000000001671d3b00000000000000000000000000000000000000000000000000000000000000000000000000000000a20ecbc821fb54064aa7b5c6ac81173b8b34df710000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000002c53ce33bff0000000000000000000000000000000000000000000000000000000000000080000000000000000000000000833589fcd6edb6e08f4c7c32d4f71b54bda029130000000000000000000000000000000000000000000000000000000001671d3b00000000000000000000000000000000000000000000000000000000000000c0000000000000000000000000000000000000000000000000000000000000000e72656c617941646170746572563200000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001e00000000000000000000000004cd00e387622c35bddb9b4c962c136462338bc310000000000000000000000004cd00e387622c35bddb9b4c962c136462338bc310000000000000000000000000000000000000000000000000000000000000001000000000000000000000000833589fcd6edb6e08f4c7c32d4f71b54bda029130000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000163d374000000000000000000000000000000000000000000000000000000000000014000000000000000000000000000000000000000000000000000000000000349c7000000000000000000000000e3478b0bb1a5084567c319096437924948be19640000000000000000000000000000000000000000000000000000000000000084e8017952000000000000000000000000141d32a89a1e0a5ef360034a2f60a4b917c18838000000000000000000000000833589fcd6edb6e08f4c7c32d4f71b54bda02913000000000000000000000000000000000000000000000000000000000163d37414e387806f12e30257c6616fd834d95d22ea6b41428f89f3ea11cfa093d7e0c80000000000000000000000000000000000000000000000000000000098000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000004658b29f6b82ed55274221a06fc97d318e25416000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000000a0000000000000000000000000000000000000000000000000000000000000002000000000000000000000000000000000000000000000000000000000000000010000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000004114b2b0a07d23f7a63d1ee30eb500bfe59db56c297aa94f81730d820b3218ae236c6bb175463b3a74e280280978f7bbdff78057e2bb0dd192d345294d58929e391b00000000000000000000000000000000000000000000000000000000000000", - "logIndex": "0x1f7", - "removed": false, - "topics": [ - "0x40dadaa36c6c2e3d7317e24757451ffb2d603d875f0ad5e92c5dd156573b1873", - "0x000000000000000000000000141d32a89a1e0a5ef360034a2f60a4b917c18838", - "0x000000000000000000000000c066ac5d385419b1a8c43a0e146fa439837a8b8c" - ], - "transactionHash": "0x3ed8255b9d59dc494570ba5cb2cfba5f219ad0813df9905557398e44561676df", - "transactionIndex": "0x6a" - } - ], - "logsBloom": "0x0000000000000010000002000000000800000000000000000000100000000400004000000000000000000000000010000000008000802000000000100020000010000081008001202200000802410000000000000009000000020000000000000480000000000000000000000000000090000000200000000080001000000000000000000000000100008002000000000000000000000001200000000000000002000000000000000000000000000100800000000000000000c000000000000008080022004000000000000000000000000000000000004000000000000200000010040000000000000010000480120000020000000000000000000000000000", - "status": "0x1", - "to": "0xdb9b1e94b5b69df7e401ddbede43491141047db3", - "transactionHash": "0x3ed8255b9d59dc494570ba5cb2cfba5f219ad0813df9905557398e44561676df", - "transactionIndex": "0x6a", - "type": "0x2" - }, - "type": "bridge", - "userEditedGasLimit": false, - "userFeeLevel": "medium", - "v": "0x1", - "verifiedOnBlockchain": true - }, - { - "blockNumber": "44788496", - "chainId": "0x2105", - "hash": "0x3ed8255b9d59dc494570ba5cb2cfba5f219ad0813df9905557398e44561676df", - "id": "41c68380-39c7-11f1-a1dd-3727d90ba13b", - "isTransfer": false, - "networkClientId": "base-mainnet", - "status": "confirmed", - "time": 1776366339000, - "toSmartContract": false, - "transferInformation": { - "amount": "23534907", - "contractAddress": "0x833589fcd6edb6e08f4c7c32d4f71b54bda02913", - "decimals": 6, - "symbol": "USDC" - }, - "txParams": { - "chainId": "0x2105", - "data": "0xcef6d209", - "from": "0xc066ac5d385419b1a8c43a0e146fa439837a8b8c", - "gas": "0x50c76", - "gasPrice": "0x5b8d81", - "gasUsed": "0x4203d", - "nonce": "0x1f0be", - "to": "0xdb9b1e94b5b69df7e401ddbede43491141047db3", - "value": "0x0" - }, - "type": "incoming", - "verifiedOnBlockchain": false - }, - { - "blockNumber": "24894371", - "chainId": "0x1", - "hash": "0xbf006ccfc6f025cae589ef2f549bce8576f14ec9572b868ec12aea5c223ba5ab", - "id": "468b3780-39c7-11f1-a283-3727d90ba13b", - "isTransfer": false, - "networkClientId": "mainnet", - "status": "confirmed", - "time": 1776366347000, - "toSmartContract": false, - "txParams": { - "chainId": "0x1", - "data": "0x14e38780", - "from": "0x331d9a049d496385998067abf6cbb6371c8d2466", - "gas": "0x6270", - "gasPrice": "0x115d1b9d", - "gasUsed": "0x5708", - "nonce": "0x20499", - "to": "0x141d32a89a1e0a5ef360034a2f60a4b917c18838", - "value": "0x23468f9c07b72f" - }, - "type": "incoming", - "verifiedOnBlockchain": false - }, - { - "assetsFiatValues": { - "receiving": "22.611023315058376370122902864", - "sending": "23.392662778241671753687926528" - }, - "baseFeePerGas": "0x105b6f85", - "batchId": "0xbb15bdb911894b408de56bc7eed766c1", - "blockTimestamp": "0x69e1332f", - "chainId": "0x1", - "defaultGasEstimates": { - "estimateType": "medium", - "gas": "0x1675e", - "maxFeePerGas": "0x8f66d21e", - "maxPriorityFeePerGas": "0x7d2b7501" - }, - "disableGasBuffer": true, - "gasFeeEstimates": { - "high": { - "maxFeePerGas": "0x8e6250e7", - "maxPriorityFeePerGas": "0x77359400" - }, - "low": { - "maxFeePerGas": "0x103d65ad", - "maxPriorityFeePerGas": "0x8a121" - }, - "medium": { - "maxFeePerGas": "0x8e6250e7", - "maxPriorityFeePerGas": "0x77359400" - }, - "type": "fee-market" - }, - "gasFeeEstimatesLoaded": true, - "gasLimitNoBuffer": "0x1675e", - "hash": "0xf35aa01f3d30bca6d855deda71b9bb47108342dd8027e12dc4857a2ba5bdd52a", - "id": "563eafe0-39c7-11f1-a22e-3727d90ba13b", - "isGasFeeTokenIgnoredIfBalance": false, - "networkClientId": "mainnet", - "origin": "metamask", - "r": "0x57a73e79fa730e71fcb9a00f129c75e7670fe69766a7ff854cec6e70b5c1d09c", - "rawTx": "0x02f902f90131847d2b7501848f66d21e8301675e940439e60f02a8900a951603950d8d4527f400c3f187229bca63ad40a6b902853ce33bff0000000000000000000000000000000000000000000000000000000000000080000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000229bca63ad40a600000000000000000000000000000000000000000000000000000000000000c0000000000000000000000000000000000000000000000000000000000000000e72656c617941646170746572563200000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001a00000000000000000000000004cd00e387622c35bddb9b4c962c136462338bc310000000000000000000000004cd00e387622c35bddb9b4c962c136462338bc31000000000000000000000000000000000000000000000000000000000000a4b10000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000224c61ae55db3c000000000000000000000000000000000000000000000000000000000000014000000000000000000000000000000000000000000000000000004f68b557656a000000000000000000000000e3478b0bb1a5084567c319096437924948be1964000000000000000000000000000000000000000000000000000000000000004449290c1c000000000000000000000000141d32a89a1e0a5ef360034a2f60a4b917c188389f396c4ee81bffb5f4a8ed8020f75475a21568c3fe8488c1cf31c8354355ea430000000000000000000000000000000000000000000000000000000056c080a057a73e79fa730e71fcb9a00f129c75e7670fe69766a7ff854cec6e70b5c1d09ca04628e31af8ffa5962544283f280de27b2008bf248b1a930d9cbf451110891a00", - "s": "0x4628e31af8ffa5962544283f280de27b2008bf248b1a930d9cbf451110891a00", - "status": "confirmed", - "submittedTime": 1776366373723, - "time": 1776366373342, - "txParams": { - "data": "0x3ce33bff0000000000000000000000000000000000000000000000000000000000000080000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000229bca63ad40a600000000000000000000000000000000000000000000000000000000000000c0000000000000000000000000000000000000000000000000000000000000000e72656c617941646170746572563200000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001a00000000000000000000000004cd00e387622c35bddb9b4c962c136462338bc310000000000000000000000004cd00e387622c35bddb9b4c962c136462338bc31000000000000000000000000000000000000000000000000000000000000a4b10000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000224c61ae55db3c000000000000000000000000000000000000000000000000000000000000014000000000000000000000000000000000000000000000000000004f68b557656a000000000000000000000000e3478b0bb1a5084567c319096437924948be1964000000000000000000000000000000000000000000000000000000000000004449290c1c000000000000000000000000141d32a89a1e0a5ef360034a2f60a4b917c188389f396c4ee81bffb5f4a8ed8020f75475a21568c3fe8488c1cf31c8354355ea430000000000000000000000000000000000000000000000000000000056", - "from": "0x141d32a89a1e0a5ef360034a2f60a4b917c18838", - "gas": "0x1675e", - "gasLimit": "0x1675e", - "maxFeePerGas": "0x8f66d21e", - "maxPriorityFeePerGas": "0x7d2b7501", - "nonce": "0x31", - "to": "0x0439e60f02a8900a951603950d8d4527f400c3f1", - "type": "0x2", - "value": "0x229bca63ad40a6" - }, - "txParamsOriginal": { - "data": "0x3ce33bff0000000000000000000000000000000000000000000000000000000000000080000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000229bca63ad40a600000000000000000000000000000000000000000000000000000000000000c0000000000000000000000000000000000000000000000000000000000000000e72656c617941646170746572563200000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001a00000000000000000000000004cd00e387622c35bddb9b4c962c136462338bc310000000000000000000000004cd00e387622c35bddb9b4c962c136462338bc31000000000000000000000000000000000000000000000000000000000000a4b10000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000224c61ae55db3c000000000000000000000000000000000000000000000000000000000000014000000000000000000000000000000000000000000000000000004f68b557656a000000000000000000000000e3478b0bb1a5084567c319096437924948be1964000000000000000000000000000000000000000000000000000000000000004449290c1c000000000000000000000000141d32a89a1e0a5ef360034a2f60a4b917c188389f396c4ee81bffb5f4a8ed8020f75475a21568c3fe8488c1cf31c8354355ea430000000000000000000000000000000000000000000000000000000056", - "from": "0x141d32a89a1e0a5ef360034a2f60a4b917c18838", - "gas": "0x1675e", - "maxFeePerGas": "0x8f66d21e", - "maxPriorityFeePerGas": "0x7d2b7501", - "to": "0x0439e60f02a8900a951603950d8d4527f400c3f1", - "type": "0x2", - "value": "0x229bca63ad40a6" - }, - "txReceipt": { - "blockHash": "0x5711d96b0b564bbe08a940a86ca3316fbaa4989ff26ac4bb807154678fcd0263", - "blockNumber": "0x17bdba6", - "contractAddress": null, - "cumulativeGasUsed": "0xcdd5d0", - "effectiveGasPrice": "0x8d86e486", - "from": "0x141d32a89a1e0a5ef360034a2f60a4b917c18838", - "gasUsed": "0x130d2", - "logs": [ - { - "address": "0x9a47f3289794e9bbc6a3c571f6d96ad4e7baed16", - "blockHash": "0x5711d96b0b564bbe08a940a86ca3316fbaa4989ff26ac4bb807154678fcd0263", - "blockNumber": "0x17bdba6", - "blockTimestamp": "0x69e1332f", - "data": "0x0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000e3478b0bb1a5084567c319096437924948be196400000000000000000000000000000000000000000000000000004f68b557656a", - "logIndex": "0x193", - "removed": false, - "topics": [ - "0x6ded982279c8387ad8a63e73385031a3807c1862e633f06e09d11bcb6e282f60" - ], - "transactionHash": "0xf35aa01f3d30bca6d855deda71b9bb47108342dd8027e12dc4857a2ba5bdd52a", - "transactionIndex": "0x5e" - }, - { - "address": "0x4cd00e387622c35bddb9b4c962c136462338bc31", - "blockHash": "0x5711d96b0b564bbe08a940a86ca3316fbaa4989ff26ac4bb807154678fcd0263", - "blockNumber": "0x17bdba6", - "blockTimestamp": "0x69e1332f", - "data": "0x000000000000000000000000141d32a89a1e0a5ef360034a2f60a4b917c1883800000000000000000000000000000000000000000000000000224c61ae55db3c9f396c4ee81bffb5f4a8ed8020f75475a21568c3fe8488c1cf31c8354355ea43", - "logIndex": "0x194", - "removed": false, - "topics": [ - "0x8032066556caf3967d8fec4ad22a2d9e1e9576556b2903a0fcd5b1fd201e3477" - ], - "transactionHash": "0xf35aa01f3d30bca6d855deda71b9bb47108342dd8027e12dc4857a2ba5bdd52a", - "transactionIndex": "0x5e" - }, - { - "address": "0x9a47f3289794e9bbc6a3c571f6d96ad4e7baed16", - "blockHash": "0x5711d96b0b564bbe08a940a86ca3316fbaa4989ff26ac4bb807154678fcd0263", - "blockNumber": "0x17bdba6", - "blockTimestamp": "0x69e1332f", - "data": "0x000000000000000000000000141d32a89a1e0a5ef360034a2f60a4b917c188380000000000000000000000004cd00e387622c35bddb9b4c962c136462338bc31000000000000000000000000000000000000000000000000000000000000a4b10000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000224c61ae55db3c", - "logIndex": "0x195", - "removed": false, - "topics": [ - "0x831bac9533a2034226daa21109dbd4f887674f0fe4877e1a8b35b3ffe1bdce76" - ], - "transactionHash": "0xf35aa01f3d30bca6d855deda71b9bb47108342dd8027e12dc4857a2ba5bdd52a", - "transactionIndex": "0x5e" - } - ], - "logsBloom": "0x00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000100000000000002000000000000100000000000000000000000000000000000004000000000000000000000000000000000000002000000000800000000000000000000000000000000000000000000000000000000000000000000000000000000000200000000000000000000000000000400000000000004000000400000008000020000000000000040000000000000000000000000000000000000200000000000000000000000000000000000000000000000000000000000400000000", - "status": "0x1", - "to": "0x0439e60f02a8900a951603950d8d4527f400c3f1", - "transactionHash": "0xf35aa01f3d30bca6d855deda71b9bb47108342dd8027e12dc4857a2ba5bdd52a", - "transactionIndex": "0x5e", - "type": "0x2" - }, - "type": "bridge", - "userEditedGasLimit": false, - "userFeeLevel": "medium", - "v": "0x0", - "verifiedOnBlockchain": true - }, - { - "blockNumber": "24894374", - "chainId": "0x1", - "hash": "0xf35aa01f3d30bca6d855deda71b9bb47108342dd8027e12dc4857a2ba5bdd52a", - "id": "5c006180-39c7-11f1-a282-3727d90ba13b", - "isTransfer": false, - "networkClientId": "mainnet", - "status": "confirmed", - "time": 1776366383000, - "toSmartContract": false, - "txParams": { - "chainId": "0x1", - "data": "0x3ce33bff", - "from": "0x141d32a89a1e0a5ef360034a2f60a4b917c18838", - "gas": "0x1675e", - "gasPrice": "0x8d86e486", - "gasUsed": "0x130d2", - "nonce": "0x31", - "to": "0x0439e60f02a8900a951603950d8d4527f400c3f1", - "value": "0x229bca63ad40a6" - }, - "type": "contractInteraction", - "verifiedOnBlockchain": false - }, - { - "blockNumber": "453190200", - "chainId": "0xa4b1", - "hash": "0x80711caaa4fd650b455541f6afaa14cfefe6e004b5c3e65c3f574848ced9465a", - "id": "5dca2500-39c7-11f1-a281-3727d90ba13b", - "isTransfer": false, - "networkClientId": "arbitrum-mainnet", - "status": "confirmed", - "time": 1776366386000, - "toSmartContract": false, - "txParams": { - "chainId": "0xa4b1", - "data": "0x9f396c4e", - "from": "0xf70da97812cb96acdf810712aa562db8dfa3dbef", - "gas": "0xafa0", - "gasPrice": "0x131e0b0", - "gasUsed": "0x5828", - "nonce": "0x9138e8", - "to": "0x141d32a89a1e0a5ef360034a2f60a4b917c18838", - "value": "0x2244132423f93f" - }, - "type": "incoming", - "verifiedOnBlockchain": false - }, - { - "assetsFiatValues": { - "receiving": "34.778356485299929284265223158", - "sending": "35.138086032029867071882444857" - }, - "baseFeePerGas": "0x1315410", - "batchId": "0xf3cca04fd9da447f8eaf554014fe08df", - "blockTimestamp": "0x69e133b3", - "chainId": "0xa4b1", - "defaultGasEstimates": { - "estimateType": "medium", - "gas": "0x1fea8", - "maxFeePerGas": "0x15775c9", - "maxPriorityFeePerGas": "0x1" - }, - "disableGasBuffer": true, - "gasFeeEstimates": { - "high": { - "maxFeePerGas": "0x20701a0", - "maxPriorityFeePerGas": "0x0" - }, - "low": { - "maxFeePerGas": "0x1314c40", - "maxPriorityFeePerGas": "0x0" - }, - "medium": { - "maxFeePerGas": "0x19c26f0", - "maxPriorityFeePerGas": "0x0" - }, - "type": "fee-market" - }, - "gasFeeEstimatesLoaded": true, - "gasLimitNoBuffer": "0x1fea8", - "hash": "0x303af96afa1a1e9a42299f146147a41722e44a56c1644ec45a87fb939d08f78f", - "id": "aa940ae0-39c7-11f1-a280-3727d90ba13b", - "isGasFeeTokenIgnoredIfBalance": false, - "networkClientId": "arbitrum-mainnet", - "origin": "metamask", - "r": "0xbc8392f787570b2b2fad4f68f9784b24cae1fbbbfbf3325dffcfd32ac35fb64", - "rawTx": "0x02f902f782a4b1270184015775c98301fea89423981fc34e69eedfe2bd9a0a9fcb0719fe09dbfc87353ff7470f1141b902853ce33bff0000000000000000000000000000000000000000000000000000000000000080000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000353ff7470f114100000000000000000000000000000000000000000000000000000000000000c0000000000000000000000000000000000000000000000000000000000000000e72656c617941646170746572563200000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001a00000000000000000000000004cd00e387622c35bddb9b4c962c136462338bc310000000000000000000000004cd00e387622c35bddb9b4c962c136462338bc310000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000034c8a8ec279f0c00000000000000000000000000000000000000000000000000000000000001400000000000000000000000000000000000000000000000000000774e5ae77235000000000000000000000000e3478b0bb1a5084567c319096437924948be1964000000000000000000000000000000000000000000000000000000000000004449290c1c000000000000000000000000141d32a89a1e0a5ef360034a2f60a4b917c188388b7a0b271409c32f512e2617e8c0bda23b5a90f8fb15c4a9e0baa8f0e791590e000000000000000000000000000000000000000000000000000000005ec080a00bc8392f787570b2b2fad4f68f9784b24cae1fbbbfbf3325dffcfd32ac35fb64a00ec616bfb46093e63d1039a6ace61c7249c129ab676f7b0a2233b69f83ce6b08", - "s": "0xec616bfb46093e63d1039a6ace61c7249c129ab676f7b0a2233b69f83ce6b08", - "status": "confirmed", - "submittedTime": 1776366515261, - "time": 1776366514830, - "txParams": { - "data": "0x3ce33bff0000000000000000000000000000000000000000000000000000000000000080000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000353ff7470f114100000000000000000000000000000000000000000000000000000000000000c0000000000000000000000000000000000000000000000000000000000000000e72656c617941646170746572563200000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001a00000000000000000000000004cd00e387622c35bddb9b4c962c136462338bc310000000000000000000000004cd00e387622c35bddb9b4c962c136462338bc310000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000034c8a8ec279f0c00000000000000000000000000000000000000000000000000000000000001400000000000000000000000000000000000000000000000000000774e5ae77235000000000000000000000000e3478b0bb1a5084567c319096437924948be1964000000000000000000000000000000000000000000000000000000000000004449290c1c000000000000000000000000141d32a89a1e0a5ef360034a2f60a4b917c188388b7a0b271409c32f512e2617e8c0bda23b5a90f8fb15c4a9e0baa8f0e791590e000000000000000000000000000000000000000000000000000000005e", - "from": "0x141d32a89a1e0a5ef360034a2f60a4b917c18838", - "gas": "0x1fea8", - "gasLimit": "0x1fea8", - "maxFeePerGas": "0x15775c9", - "maxPriorityFeePerGas": "0x1", - "nonce": "0x27", - "to": "0x23981fc34e69eedfe2bd9a0a9fcb0719fe09dbfc", - "type": "0x2", - "value": "0x353ff7470f1141" - }, - "txParamsOriginal": { - "data": "0x3ce33bff0000000000000000000000000000000000000000000000000000000000000080000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000353ff7470f114100000000000000000000000000000000000000000000000000000000000000c0000000000000000000000000000000000000000000000000000000000000000e72656c617941646170746572563200000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001a00000000000000000000000004cd00e387622c35bddb9b4c962c136462338bc310000000000000000000000004cd00e387622c35bddb9b4c962c136462338bc310000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000034c8a8ec279f0c00000000000000000000000000000000000000000000000000000000000001400000000000000000000000000000000000000000000000000000774e5ae77235000000000000000000000000e3478b0bb1a5084567c319096437924948be1964000000000000000000000000000000000000000000000000000000000000004449290c1c000000000000000000000000141d32a89a1e0a5ef360034a2f60a4b917c188388b7a0b271409c32f512e2617e8c0bda23b5a90f8fb15c4a9e0baa8f0e791590e000000000000000000000000000000000000000000000000000000005e", - "from": "0x141d32a89a1e0a5ef360034a2f60a4b917c18838", - "gas": "0x1fea8", - "maxFeePerGas": "0x15775c9", - "maxPriorityFeePerGas": "0x1", - "to": "0x23981fc34e69eedfe2bd9a0a9fcb0719fe09dbfc", - "type": "0x2", - "value": "0x353ff7470f1141" - }, - "txReceipt": { - "blockHash": "0xd3e95f2d87fc6db23d1d0427f14057f6e367e4e5a946af650ca64fb3fbf371b2", - "blockNumber": "0x1b03243a", - "contractAddress": null, - "cumulativeGasUsed": "0x13c5d", - "effectiveGasPrice": "0x1315410", - "from": "0x141d32a89a1e0a5ef360034a2f60a4b917c18838", - "gasUsed": "0x13c5d", - "gasUsedForL1": "0xb97", - "l1BlockNumber": "0x17bdbb0", - "logs": [ - { - "address": "0x7a70cb77a12fa2dc3fa1bc1dcbca4c79db71a289", - "blockHash": "0xd3e95f2d87fc6db23d1d0427f14057f6e367e4e5a946af650ca64fb3fbf371b2", - "blockNumber": "0x1b03243a", - "blockTimestamp": "0x69e133b3", - "data": "0x0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000e3478b0bb1a5084567c319096437924948be19640000000000000000000000000000000000000000000000000000774e5ae77235", - "logIndex": "0x0", - "removed": false, - "topics": [ - "0x6ded982279c8387ad8a63e73385031a3807c1862e633f06e09d11bcb6e282f60" - ], - "transactionHash": "0x303af96afa1a1e9a42299f146147a41722e44a56c1644ec45a87fb939d08f78f", - "transactionIndex": "0x1" - }, - { - "address": "0x4cd00e387622c35bddb9b4c962c136462338bc31", - "blockHash": "0xd3e95f2d87fc6db23d1d0427f14057f6e367e4e5a946af650ca64fb3fbf371b2", - "blockNumber": "0x1b03243a", - "blockTimestamp": "0x69e133b3", - "data": "0x000000000000000000000000141d32a89a1e0a5ef360034a2f60a4b917c188380000000000000000000000000000000000000000000000000034c8a8ec279f0c8b7a0b271409c32f512e2617e8c0bda23b5a90f8fb15c4a9e0baa8f0e791590e", - "logIndex": "0x1", - "removed": false, - "topics": [ - "0x8032066556caf3967d8fec4ad22a2d9e1e9576556b2903a0fcd5b1fd201e3477" - ], - "transactionHash": "0x303af96afa1a1e9a42299f146147a41722e44a56c1644ec45a87fb939d08f78f", - "transactionIndex": "0x1" - }, - { - "address": "0x7a70cb77a12fa2dc3fa1bc1dcbca4c79db71a289", - "blockHash": "0xd3e95f2d87fc6db23d1d0427f14057f6e367e4e5a946af650ca64fb3fbf371b2", - "blockNumber": "0x1b03243a", - "blockTimestamp": "0x69e133b3", - "data": "0x000000000000000000000000141d32a89a1e0a5ef360034a2f60a4b917c188380000000000000000000000004cd00e387622c35bddb9b4c962c136462338bc310000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000034c8a8ec279f0c", - "logIndex": "0x2", - "removed": false, - "topics": [ - "0x831bac9533a2034226daa21109dbd4f887674f0fe4877e1a8b35b3ffe1bdce76" - ], - "transactionHash": "0x303af96afa1a1e9a42299f146147a41722e44a56c1644ec45a87fb939d08f78f", - "transactionIndex": "0x1" - } - ], - "logsBloom": "0x00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000100000000000002000000000000100000000000000000000000000000000000004000000000000000000000000000000000000002000000000800000000000000000000000000000000000000000000000000000000000000000000000000000000000200000000000000000000000000000000000000000004000000000000008000020000000000000040000000000000000000000200000000000000000000000000000000000000000000000000000000000800000000004000400000000", - "status": "0x1", - "timeboosted": false, - "to": "0x23981fc34e69eedfe2bd9a0a9fcb0719fe09dbfc", - "transactionHash": "0x303af96afa1a1e9a42299f146147a41722e44a56c1644ec45a87fb939d08f78f", - "transactionIndex": "0x1", - "type": "0x2" - }, - "type": "bridge", - "userEditedGasLimit": false, - "userFeeLevel": "medium", - "v": "0x0", - "verifiedOnBlockchain": true - }, - { - "blockNumber": "453190714", - "chainId": "0xa4b1", - "hash": "0x303af96afa1a1e9a42299f146147a41722e44a56c1644ec45a87fb939d08f78f", - "id": "aaadfb80-39c7-11f1-a280-3727d90ba13b", - "isTransfer": false, - "networkClientId": "arbitrum-mainnet", - "status": "confirmed", - "time": 1776366515000, - "toSmartContract": false, - "txParams": { - "chainId": "0xa4b1", - "data": "0x3ce33bff", - "from": "0x141d32a89a1e0a5ef360034a2f60a4b917c18838", - "gas": "0x1fea8", - "gasPrice": "0x1315411", - "gasUsed": "0x13c5d", - "nonce": "0x27", - "to": "0x23981fc34e69eedfe2bd9a0a9fcb0719fe09dbfc", - "value": "0x353ff7470f1141" - }, - "type": "contractInteraction", - "verifiedOnBlockchain": false - }, - { - "blockNumber": "24894387", - "chainId": "0x1", - "hash": "0xdc4e0284fdf36a74a858e96d65a0c7ea4af4bcb82b237db1fc7f469482be87b1", - "id": "b8fc1780-39c7-11f1-a2d3-3727d90ba13b", - "isTransfer": false, - "networkClientId": "mainnet", - "status": "confirmed", - "time": 1776366539000, - "toSmartContract": false, - "txParams": { - "chainId": "0x1", - "data": "0x8b7a0b27", - "from": "0xabb2acd3be814a80e502575d6c1dc5f789e9cd10", - "gas": "0x6270", - "gasPrice": "0xf5c5a0e", - "gasUsed": "0x5708", - "nonce": "0x1b3a2", - "to": "0x141d32a89a1e0a5ef360034a2f60a4b917c18838", - "value": "0x34b763f9bfbe8e" - }, - "type": "incoming", - "verifiedOnBlockchain": false - }, - { - "assetsFiatValues": { - "receiving": "23.190860159630196912127314752", - "sending": "23.41717338332" - }, - "baseFeePerGas": "0xe2d1e05", - "batchId": "0xf69c3e0167d64772a3cdcb3e9d6f3514", - "blockTimestamp": "0x69e133ef", - "chainId": "0x1", - "defaultGasEstimates": { - "estimateType": "medium", - "gas": "0x182bc", - "maxFeePerGas": "0x8b3e79bd", - "maxPriorityFeePerGas": "0x77359400" - }, - "disableGasBuffer": true, - "gasFeeEstimates": { - "high": { - "maxFeePerGas": "0x8b3e79bd", - "maxPriorityFeePerGas": "0x77359400" - }, - "low": { - "maxFeePerGas": "0xe0bbcb4", - "maxPriorityFeePerGas": "0x91878" - }, - "medium": { - "maxFeePerGas": "0x8b3e79bd", - "maxPriorityFeePerGas": "0x77359400" - }, - "type": "fee-market" - }, - "gasFeeEstimatesLoaded": true, - "gasLimitNoBuffer": "0x182bc", - "hash": "0x2d98c88d1e57cd29f5648fd8307e5aaed4c8e7a3cb8c7b797e0842a08f450d99", - "id": "c94ce150-39c7-11f1-a325-3727d90ba13b", - "isGasFeeTokenIgnoredIfBalance": false, - "networkClientId": "mainnet", - "origin": "metamask", - "r": "0xe1df264d5f69dd685313115b458df28b7e1d8c81b8c782a34cd61d8a6351ad1c", - "rawTx": "0x02f902f901328477359400848b3e79bd830182bc940439e60f02a8900a951603950d8d4527f400c3f1872386f26fc10000b902853ce33bff00000000000000000000000000000000000000000000000000000000000000800000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000002386f26fc1000000000000000000000000000000000000000000000000000000000000000000c0000000000000000000000000000000000000000000000000000000000000000e72656c617941646170746572563200000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001a00000000000000000000000004cd00e387622c35bddb9b4c962c136462338bc310000000000000000000000004cd00e387622c35bddb9b4c962c136462338bc31000000000000000000000000000000000000000000000000000000000000a4b1000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000023375dc1560800000000000000000000000000000000000000000000000000000000000000014000000000000000000000000000000000000000000000000000004f94ae6af800000000000000000000000000e6b738da243e8fa2a0ed5915645789add5de5152000000000000000000000000000000000000000000000000000000000000004449290c1c000000000000000000000000141d32a89a1e0a5ef360034a2f60a4b917c18838ac362318f901ab1a5572eabdc78c02c20efd2d4004bc5be5840b35b8200abd2e00000000000000000000000000000000000000000000000000000000f9c080a0e1df264d5f69dd685313115b458df28b7e1d8c81b8c782a34cd61d8a6351ad1ca0283a6f2a1bad17ee223da243c5c4f7a4414b8dd7cf6b69cb5ce738f1a1fa0b86", - "s": "0x283a6f2a1bad17ee223da243c5c4f7a4414b8dd7cf6b69cb5ce738f1a1fa0b86", - "status": "confirmed", - "submittedTime": 1776366566640, - "time": 1776366566373, - "txParams": { - "data": "0x3ce33bff00000000000000000000000000000000000000000000000000000000000000800000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000002386f26fc1000000000000000000000000000000000000000000000000000000000000000000c0000000000000000000000000000000000000000000000000000000000000000e72656c617941646170746572563200000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001a00000000000000000000000004cd00e387622c35bddb9b4c962c136462338bc310000000000000000000000004cd00e387622c35bddb9b4c962c136462338bc31000000000000000000000000000000000000000000000000000000000000a4b1000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000023375dc1560800000000000000000000000000000000000000000000000000000000000000014000000000000000000000000000000000000000000000000000004f94ae6af800000000000000000000000000e6b738da243e8fa2a0ed5915645789add5de5152000000000000000000000000000000000000000000000000000000000000004449290c1c000000000000000000000000141d32a89a1e0a5ef360034a2f60a4b917c18838ac362318f901ab1a5572eabdc78c02c20efd2d4004bc5be5840b35b8200abd2e00000000000000000000000000000000000000000000000000000000f9", - "from": "0x141d32a89a1e0a5ef360034a2f60a4b917c18838", - "gas": "0x182bc", - "gasLimit": "0x182bc", - "maxFeePerGas": "0x8b3e79bd", - "maxPriorityFeePerGas": "0x77359400", - "nonce": "0x32", - "to": "0x0439e60f02a8900a951603950d8d4527f400c3f1", - "type": "0x2", - "value": "0x2386f26fc10000" - }, - "txParamsOriginal": { - "data": "0x3ce33bff00000000000000000000000000000000000000000000000000000000000000800000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000002386f26fc1000000000000000000000000000000000000000000000000000000000000000000c0000000000000000000000000000000000000000000000000000000000000000e72656c617941646170746572563200000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001a00000000000000000000000004cd00e387622c35bddb9b4c962c136462338bc310000000000000000000000004cd00e387622c35bddb9b4c962c136462338bc31000000000000000000000000000000000000000000000000000000000000a4b1000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000023375dc1560800000000000000000000000000000000000000000000000000000000000000014000000000000000000000000000000000000000000000000000004f94ae6af800000000000000000000000000e6b738da243e8fa2a0ed5915645789add5de5152000000000000000000000000000000000000000000000000000000000000004449290c1c000000000000000000000000141d32a89a1e0a5ef360034a2f60a4b917c18838ac362318f901ab1a5572eabdc78c02c20efd2d4004bc5be5840b35b8200abd2e00000000000000000000000000000000000000000000000000000000f9", - "from": "0x141d32a89a1e0a5ef360034a2f60a4b917c18838", - "gas": "0x182bc", - "maxFeePerGas": "0x8b3e79bd", - "maxPriorityFeePerGas": "0x77359400", - "to": "0x0439e60f02a8900a951603950d8d4527f400c3f1", - "type": "0x2", - "value": "0x2386f26fc10000" - }, - "txReceipt": { - "blockHash": "0x1ef47eff952377974e7c19ba652e995a297d8acc0ca70dba88fb25962599c300", - "blockNumber": "0x17bdbb6", - "contractAddress": null, - "cumulativeGasUsed": "0x5cd169", - "effectiveGasPrice": "0x8562b205", - "from": "0x141d32a89a1e0a5ef360034a2f60a4b917c18838", - "gasUsed": "0x1495b", - "logs": [ - { - "address": "0xe6b738da243e8fa2a0ed5915645789add5de5152", - "blockHash": "0x1ef47eff952377974e7c19ba652e995a297d8acc0ca70dba88fb25962599c300", - "blockNumber": "0x17bdbb6", - "blockTimestamp": "0x69e133ef", - "data": "0x00000000000000000000000000000000000000000000000000004f94ae6af800", - "logIndex": "0xa6", - "removed": false, - "topics": [ - "0x3d0ce9bfc3ed7d6862dbb28b2dea94561fe714a1b4d019aa8af39730d1ad7c3d", - "0x0000000000000000000000009a47f3289794e9bbc6a3c571f6d96ad4e7baed16" - ], - "transactionHash": "0x2d98c88d1e57cd29f5648fd8307e5aaed4c8e7a3cb8c7b797e0842a08f450d99", - "transactionIndex": "0x57" - }, - { - "address": "0x9a47f3289794e9bbc6a3c571f6d96ad4e7baed16", - "blockHash": "0x1ef47eff952377974e7c19ba652e995a297d8acc0ca70dba88fb25962599c300", - "blockNumber": "0x17bdbb6", - "blockTimestamp": "0x69e133ef", - "data": "0x0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000e6b738da243e8fa2a0ed5915645789add5de515200000000000000000000000000000000000000000000000000004f94ae6af800", - "logIndex": "0xa7", - "removed": false, - "topics": [ - "0x6ded982279c8387ad8a63e73385031a3807c1862e633f06e09d11bcb6e282f60" - ], - "transactionHash": "0x2d98c88d1e57cd29f5648fd8307e5aaed4c8e7a3cb8c7b797e0842a08f450d99", - "transactionIndex": "0x57" - }, - { - "address": "0x4cd00e387622c35bddb9b4c962c136462338bc31", - "blockHash": "0x1ef47eff952377974e7c19ba652e995a297d8acc0ca70dba88fb25962599c300", - "blockNumber": "0x17bdbb6", - "blockTimestamp": "0x69e133ef", - "data": "0x000000000000000000000000141d32a89a1e0a5ef360034a2f60a4b917c188380000000000000000000000000000000000000000000000000023375dc1560800ac362318f901ab1a5572eabdc78c02c20efd2d4004bc5be5840b35b8200abd2e", - "logIndex": "0xa8", - "removed": false, - "topics": [ - "0x8032066556caf3967d8fec4ad22a2d9e1e9576556b2903a0fcd5b1fd201e3477" - ], - "transactionHash": "0x2d98c88d1e57cd29f5648fd8307e5aaed4c8e7a3cb8c7b797e0842a08f450d99", - "transactionIndex": "0x57" - }, - { - "address": "0x9a47f3289794e9bbc6a3c571f6d96ad4e7baed16", - "blockHash": "0x1ef47eff952377974e7c19ba652e995a297d8acc0ca70dba88fb25962599c300", - "blockNumber": "0x17bdbb6", - "blockTimestamp": "0x69e133ef", - "data": "0x000000000000000000000000141d32a89a1e0a5ef360034a2f60a4b917c188380000000000000000000000004cd00e387622c35bddb9b4c962c136462338bc31000000000000000000000000000000000000000000000000000000000000a4b1000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000023375dc1560800", - "logIndex": "0xa9", - "removed": false, - "topics": [ - "0x831bac9533a2034226daa21109dbd4f887674f0fe4877e1a8b35b3ffe1bdce76" - ], - "transactionHash": "0x2d98c88d1e57cd29f5648fd8307e5aaed4c8e7a3cb8c7b797e0842a08f450d99", - "transactionIndex": "0x57" - } - ], - "logsBloom": "0x00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000040400000000000000000000000000000000100000000000002000000000000100000000000000000000000000000000000004000000000000000000000000002001000000002000000000800000000000000000000000000000000000000000000000000000000000000000000000000000000000200000000000000040000000000000400000000000004000000400000008000020000000000000040000000000000000000000002000800000000220000000000000000000000000800000000000000000000000000000000400000000", - "status": "0x1", - "to": "0x0439e60f02a8900a951603950d8d4527f400c3f1", - "transactionHash": "0x2d98c88d1e57cd29f5648fd8307e5aaed4c8e7a3cb8c7b797e0842a08f450d99", - "transactionIndex": "0x57", - "type": "0x2" - }, - "type": "bridge", - "userEditedGasLimit": false, - "userFeeLevel": "medium", - "v": "0x0", - "verifiedOnBlockchain": true - }, - { - "blockNumber": "24894390", - "chainId": "0x1", - "hash": "0x2d98c88d1e57cd29f5648fd8307e5aaed4c8e7a3cb8c7b797e0842a08f450d99", - "id": "ce714180-39c7-11f1-a325-3727d90ba13b", - "isTransfer": false, - "networkClientId": "mainnet", - "status": "confirmed", - "time": 1776366575000, - "toSmartContract": false, - "txParams": { - "chainId": "0x1", - "data": "0x3ce33bff", - "from": "0x141d32a89a1e0a5ef360034a2f60a4b917c18838", - "gas": "0x182bc", - "gasPrice": "0x8562b205", - "gasUsed": "0x1495b", - "nonce": "0x32", - "to": "0x0439e60f02a8900a951603950d8d4527f400c3f1", - "value": "0x2386f26fc10000" - }, - "type": "contractInteraction", - "verifiedOnBlockchain": false - }, - { - "blockNumber": "453190971", - "chainId": "0xa4b1", - "hash": "0xa69989b05125e09d738dc946845fae490140337378a139a3cb8aed99bd76d36d", - "id": "d0d39b80-39c7-11f1-a3ca-3727d90ba13b", - "isTransfer": false, - "networkClientId": "arbitrum-mainnet", - "status": "confirmed", - "time": 1776366579000, - "toSmartContract": false, - "txParams": { - "chainId": "0xa4b1", - "data": "0xac362318", - "from": "0xf70da97812cb96acdf810712aa562db8dfa3dbef", - "gas": "0xaf82", - "gasPrice": "0x132dab0", - "gasUsed": "0x5817", - "nonce": "0x913903", - "to": "0x141d32a89a1e0a5ef360034a2f60a4b917c18838", - "value": "0x232f0cb9000bb0" - }, - "type": "incoming", - "verifiedOnBlockchain": false - }, - { - "actionId": "1776373338457.2598", - "baseFeePerGas": "0x1329460", - "blockTimestamp": "0x69e14e5b", - "chainId": "0xa4b1", - "defaultGasEstimates": { - "estimateType": "medium", - "gas": "0x1f2fc", - "maxFeePerGas": "0x159479b", - "maxPriorityFeePerGas": "0x1" - }, - "gasFeeEstimates": { - "high": { - "maxFeePerGas": "0x206cc80", - "maxPriorityFeePerGas": "0x0" - }, - "low": { - "maxFeePerGas": "0x1312d00", - "maxPriorityFeePerGas": "0x0" - }, - "medium": { - "maxFeePerGas": "0x19bfcc0", - "maxPriorityFeePerGas": "0x0" - }, - "type": "fee-market" - }, - "gasFeeEstimatesLoaded": true, - "gasLimitNoBuffer": "0x1f2fc", - "hash": "0xa3e05b352b25c37b607c8d6200bfad67e030cc1f1cccfbde23eca29fd25ef0f6", - "id": "8dc780d0-39d7-11f1-b3fb-3727d90ba13b", - "isGasFeeTokenIgnoredIfBalance": false, - "networkClientId": "arbitrum-mainnet", - "origin": "metamask", - "r": "0x84af2760cc86a3ce1f00c5784561cb1c518496d3cf79b931224c7287dcb179c", - "rawTx": "0x02f902f782a4b12801840159479b8301f2fc9423981fc34e69eedfe2bd9a0a9fcb0719fe09dbfc87232d9f0de6e60cb902853ce33bff0000000000000000000000000000000000000000000000000000000000000080000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000232d9f0de6e60c00000000000000000000000000000000000000000000000000000000000000c0000000000000000000000000000000000000000000000000000000000000000e72656c617941646170746572563200000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001a00000000000000000000000004cd00e387622c35bddb9b4c962c136462338bc310000000000000000000000004cd00e387622c35bddb9b4c962c136462338bc310000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000022decbd02a13e5000000000000000000000000000000000000000000000000000000000000014000000000000000000000000000000000000000000000000000004ed33dbcd227000000000000000000000000e3478b0bb1a5084567c319096437924948be1964000000000000000000000000000000000000000000000000000000000000004449290c1c000000000000000000000000141d32a89a1e0a5ef360034a2f60a4b917c188386787355ce639dea1fc3b63506d59cdc0cd151a13cc190e9f6ee8aac4a7a1063c0000000000000000000000000000000000000000000000000000000016c080a0084af2760cc86a3ce1f00c5784561cb1c518496d3cf79b931224c7287dcb179ca04c96c774af11d36c61f7feb03d3339ba043fd69ea2e3ebbc9f8b46c2a3dfc6f2", - "s": "0x4c96c774af11d36c61f7feb03d3339ba043fd69ea2e3ebbc9f8b46c2a3dfc6f2", - "status": "confirmed", - "submittedTime": 1776373339054, - "time": 1776373338461, - "txParams": { - "data": "0x3ce33bff0000000000000000000000000000000000000000000000000000000000000080000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000232d9f0de6e60c00000000000000000000000000000000000000000000000000000000000000c0000000000000000000000000000000000000000000000000000000000000000e72656c617941646170746572563200000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001a00000000000000000000000004cd00e387622c35bddb9b4c962c136462338bc310000000000000000000000004cd00e387622c35bddb9b4c962c136462338bc310000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000022decbd02a13e5000000000000000000000000000000000000000000000000000000000000014000000000000000000000000000000000000000000000000000004ed33dbcd227000000000000000000000000e3478b0bb1a5084567c319096437924948be1964000000000000000000000000000000000000000000000000000000000000004449290c1c000000000000000000000000141d32a89a1e0a5ef360034a2f60a4b917c188386787355ce639dea1fc3b63506d59cdc0cd151a13cc190e9f6ee8aac4a7a1063c0000000000000000000000000000000000000000000000000000000016", - "from": "0x141d32a89a1e0a5ef360034a2f60a4b917c18838", - "gas": "0x1f2fc", - "gasLimit": "0x1f2fc", - "maxFeePerGas": "0x159479b", - "maxPriorityFeePerGas": "0x1", - "nonce": "0x28", - "to": "0x23981fc34e69eedfe2bd9a0a9fcb0719fe09dbfc", - "type": "0x2", - "value": "0x232d9f0de6e60c" - }, - "txParamsOriginal": { - "data": "0x3ce33bff0000000000000000000000000000000000000000000000000000000000000080000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000232d9f0de6e60c00000000000000000000000000000000000000000000000000000000000000c0000000000000000000000000000000000000000000000000000000000000000e72656c617941646170746572563200000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001a00000000000000000000000004cd00e387622c35bddb9b4c962c136462338bc310000000000000000000000004cd00e387622c35bddb9b4c962c136462338bc310000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000022decbd02a13e5000000000000000000000000000000000000000000000000000000000000014000000000000000000000000000000000000000000000000000004ed33dbcd227000000000000000000000000e3478b0bb1a5084567c319096437924948be1964000000000000000000000000000000000000000000000000000000000000004449290c1c000000000000000000000000141d32a89a1e0a5ef360034a2f60a4b917c188386787355ce639dea1fc3b63506d59cdc0cd151a13cc190e9f6ee8aac4a7a1063c0000000000000000000000000000000000000000000000000000000016", - "from": "0x141d32a89a1e0a5ef360034a2f60a4b917c18838", - "gas": "0x1f2fc", - "gasLimit": "0x127740", - "maxFeePerGas": "0x159479b", - "maxPriorityFeePerGas": "0x1", - "to": "0x23981fc34e69eedfe2bd9a0a9fcb0719fe09dbfc", - "type": "0x2", - "value": "0x232d9f0de6e60c" - }, - "txReceipt": { - "blockHash": "0x12a687c57295e0eeb2cce4aa48394d618f47b2285fdce00ddbdce12fa18beb23", - "blockNumber": "0x1b038e52", - "contractAddress": null, - "cumulativeGasUsed": "0x4b538", - "effectiveGasPrice": "0x1329460", - "from": "0x141d32a89a1e0a5ef360034a2f60a4b917c18838", - "gasUsed": "0x135d6", - "gasUsedForL1": "0x510", - "l1BlockNumber": "0x17bdde8", - "logs": [ - { - "address": "0x7a70cb77a12fa2dc3fa1bc1dcbca4c79db71a289", - "blockHash": "0x12a687c57295e0eeb2cce4aa48394d618f47b2285fdce00ddbdce12fa18beb23", - "blockNumber": "0x1b038e52", - "blockTimestamp": "0x69e14e5b", - "data": "0x0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000e3478b0bb1a5084567c319096437924948be196400000000000000000000000000000000000000000000000000004ed33dbcd227", - "logIndex": "0x7", - "removed": false, - "topics": [ - "0x6ded982279c8387ad8a63e73385031a3807c1862e633f06e09d11bcb6e282f60" - ], - "transactionHash": "0xa3e05b352b25c37b607c8d6200bfad67e030cc1f1cccfbde23eca29fd25ef0f6", - "transactionIndex": "0x3" - }, - { - "address": "0x4cd00e387622c35bddb9b4c962c136462338bc31", - "blockHash": "0x12a687c57295e0eeb2cce4aa48394d618f47b2285fdce00ddbdce12fa18beb23", - "blockNumber": "0x1b038e52", - "blockTimestamp": "0x69e14e5b", - "data": "0x000000000000000000000000141d32a89a1e0a5ef360034a2f60a4b917c188380000000000000000000000000000000000000000000000000022decbd02a13e56787355ce639dea1fc3b63506d59cdc0cd151a13cc190e9f6ee8aac4a7a1063c", - "logIndex": "0x8", - "removed": false, - "topics": [ - "0x8032066556caf3967d8fec4ad22a2d9e1e9576556b2903a0fcd5b1fd201e3477" - ], - "transactionHash": "0xa3e05b352b25c37b607c8d6200bfad67e030cc1f1cccfbde23eca29fd25ef0f6", - "transactionIndex": "0x3" - }, - { - "address": "0x7a70cb77a12fa2dc3fa1bc1dcbca4c79db71a289", - "blockHash": "0x12a687c57295e0eeb2cce4aa48394d618f47b2285fdce00ddbdce12fa18beb23", - "blockNumber": "0x1b038e52", - "blockTimestamp": "0x69e14e5b", - "data": "0x000000000000000000000000141d32a89a1e0a5ef360034a2f60a4b917c188380000000000000000000000004cd00e387622c35bddb9b4c962c136462338bc310000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000022decbd02a13e5", - "logIndex": "0x9", - "removed": false, - "topics": [ - "0x831bac9533a2034226daa21109dbd4f887674f0fe4877e1a8b35b3ffe1bdce76" - ], - "transactionHash": "0xa3e05b352b25c37b607c8d6200bfad67e030cc1f1cccfbde23eca29fd25ef0f6", - "transactionIndex": "0x3" - } - ], - "logsBloom": "0x00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000100000000000002000000000000100000000000000000000000000000000000004000000000000000000000000000000000000002000000000800000000000000000000000000000000000000000000000000000000000000000000000000000000000200000000000000000000000000000000000000000004000000000000008000020000000000000040000000000000000000000200000000000000000000000000000000000000000000000000000000000800000000004000400000000", - "status": "0x1", - "timeboosted": false, - "to": "0x23981fc34e69eedfe2bd9a0a9fcb0719fe09dbfc", - "transactionHash": "0xa3e05b352b25c37b607c8d6200bfad67e030cc1f1cccfbde23eca29fd25ef0f6", - "transactionIndex": "0x3", - "type": "0x2" - }, - "type": "bridge", - "userEditedGasLimit": false, - "userFeeLevel": "medium", - "v": "0x0", - "verifiedOnBlockchain": true - }, - { - "blockNumber": "453217874", - "chainId": "0xa4b1", - "hash": "0xa3e05b352b25c37b607c8d6200bfad67e030cc1f1cccfbde23eca29fd25ef0f6", - "id": "8e19bf80-39d7-11f1-b3fb-3727d90ba13b", - "isTransfer": false, - "networkClientId": "arbitrum-mainnet", - "status": "confirmed", - "time": 1776373339000, - "toSmartContract": false, - "txParams": { - "chainId": "0xa4b1", - "data": "0x3ce33bff", - "from": "0x141d32a89a1e0a5ef360034a2f60a4b917c18838", - "gas": "0x1f2fc", - "gasPrice": "0x1329461", - "gasUsed": "0x135d6", - "nonce": "0x28", - "to": "0x23981fc34e69eedfe2bd9a0a9fcb0719fe09dbfc", - "value": "0x232d9f0de6e60c" - }, - "type": "contractInteraction", - "verifiedOnBlockchain": false - }, - { - "blockNumber": "24894954", - "chainId": "0x1", - "hash": "0xdaf4a004470fe35e64ab5e59eebf80a2c30b33521043211978765153b4307a89", - "id": "907c1980-39d7-11f1-b44e-3727d90ba13b", - "isTransfer": false, - "networkClientId": "mainnet", - "status": "confirmed", - "time": 1776373343000, - "toSmartContract": false, - "txParams": { - "chainId": "0x1", - "data": "0x6787355c", - "from": "0xabb2acd3be814a80e502575d6c1dc5f789e9cd10", - "gas": "0x6270", - "gasPrice": "0xbbc9bce", - "gasUsed": "0x5708", - "nonce": "0x1b414", - "to": "0x141d32a89a1e0a5ef360034a2f60a4b917c18838", - "value": "0x22d070cb28fbc9" - }, - "type": "incoming", - "verifiedOnBlockchain": false - }, - { - "actionId": 1776374972700.9622, - "baseFeePerGas": "0x131e0b0", - "blockTimestamp": "0x69e154bf", - "chainId": "0xa4b1", - "customNonceValue": "", - "defaultGasEstimates": { - "estimateType": "medium", - "gas": "0xdaca", - "maxFeePerGas": "0x19c1c64", - "maxPriorityFeePerGas": "0x0" - }, - "gasFeeEstimates": { - "high": { - "maxFeePerGas": "0x206f458", - "maxPriorityFeePerGas": "0x0" - }, - "low": { - "maxFeePerGas": "0x1314470", - "maxPriorityFeePerGas": "0x0" - }, - "medium": { - "maxFeePerGas": "0x19c1c64", - "maxPriorityFeePerGas": "0x0" - }, - "type": "fee-market" - }, - "gasFeeEstimatesLoaded": true, - "gasFeeTokens": [], - "gasLimitNoBuffer": "0xb653", - "gasUsed": "0xb4eb", - "hash": "0x6be89108da0ad03063ffa6379f1f718baa52e95147f304f1da51d266ca3f1490", - "id": "5bdcbcd0-39db-11f1-bbe3-3727d90ba13b", - "isActive": false, - "isFirstTimeInteraction": true, - "isGasFeeSponsored": false, - "isGasFeeTokenIgnoredIfBalance": false, - "networkClientId": "arbitrum-mainnet", - "origin": "metamask", - "originalGasEstimate": "0xdaca", - "r": "0x6ba4bc4f70f4e203a0096e0a094c41151c938437aec4c8b05db723539e0b424d", - "rawTx": "0x04f8c882a4b1298084019c1c6482daca94141d32a89a1e0a5ef360034a2f60a4b917c188388080c0f85ef85c82a4b19463c0c19a282a1b52b07dd5a65b58948a07dae32b2a01a070e1d5ebfa0f9a458d4d2c59f420073b1ab5c519f2ecfd53aac1103e370ffaf1a06f284dbbe07f23c7aefdc5f945e25158fec575c9311e79bc1ec8665fb53e58ed01a06ba4bc4f70f4e203a0096e0a094c41151c938437aec4c8b05db723539e0b424da0777923e24fab5372246edadb9437064430050073259739f4dd0317e139ba7d9d", - "s": "0x777923e24fab5372246edadb9437064430050073259739f4dd0317e139ba7d9d", - "simulationData": { - "callTraceErrors": [], - "tokenBalanceChanges": [] - }, - "status": "confirmed", - "submittedTime": 1776374975806, - "time": 1776374972701, - "txParams": { - "authorizationList": [ - { - "address": "0x63c0c19a282a1B52b07dD5a65b58948A07DAE32B", - "chainId": "0xa4b1", - "nonce": "0x2a", - "r": "0x70e1d5ebfa0f9a458d4d2c59f420073b1ab5c519f2ecfd53aac1103e370ffaf1", - "s": "0x6f284dbbe07f23c7aefdc5f945e25158fec575c9311e79bc1ec8665fb53e58ed", - "yParity": "0x1" - } - ], - "from": "0x141d32a89a1e0a5ef360034a2f60a4b917c18838", - "gas": "0xdaca", - "gasLimit": "0xdaca", - "maxFeePerGas": "0x19c1c64", - "maxPriorityFeePerGas": "0x0", - "nonce": "0x29", - "to": "0x141d32a89a1e0a5ef360034a2f60a4b917c18838", - "type": "0x4", - "value": "0x0" - }, - "txParamsOriginal": { - "authorizationList": [ - { - "address": "0x63c0c19a282a1B52b07dD5a65b58948A07DAE32B" - } - ], - "from": "0x141d32a89a1e0a5ef360034a2f60a4b917c18838", - "to": "0x141d32a89a1e0a5ef360034a2f60a4b917c18838", - "type": "0x4", - "value": "0x0" - }, - "txReceipt": { - "blockHash": "0xdfcc3c810e6599ea7b110fe61c24025faf3c95a4eb9b5d5024bbca5161204c3f", - "blockNumber": "0x1b03a7cb", - "contractAddress": null, - "cumulativeGasUsed": "0x1287c", - "effectiveGasPrice": "0x131e0b0", - "from": "0x141d32a89a1e0a5ef360034a2f60a4b917c18838", - "gasUsed": "0x916b", - "gasUsedForL1": "0x17f", - "l1BlockNumber": "0x17bde71", - "logs": [], - "logsBloom": "0x00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", - "status": "0x1", - "timeboosted": false, - "to": "0x141d32a89a1e0a5ef360034a2f60a4b917c18838", - "transactionHash": "0x6be89108da0ad03063ffa6379f1f718baa52e95147f304f1da51d266ca3f1490", - "transactionIndex": "0x2", - "type": "0x4" - }, - "type": "batch", - "userEditedGasLimit": false, - "userFeeLevel": "medium", - "v": "0x1", - "verifiedOnBlockchain": true - }, - { - "blockNumber": "453224395", - "chainId": "0xa4b1", - "hash": "0x6be89108da0ad03063ffa6379f1f718baa52e95147f304f1da51d266ca3f1490", - "id": "5d3b8980-39db-11f1-bbe8-3727d90ba13b", - "isTransfer": false, - "networkClientId": "arbitrum-mainnet", - "status": "confirmed", - "time": 1776374975000, - "toSmartContract": false, - "txParams": { - "chainId": "0xa4b1", - "data": null, - "from": "0x141d32a89a1e0a5ef360034a2f60a4b917c18838", - "gas": "0xdaca", - "gasPrice": "0x131e0b0", - "gasUsed": "0x916b", - "nonce": "0x29", - "to": "0x141d32a89a1e0a5ef360034a2f60a4b917c18838", - "value": "0x0" - }, - "type": "simpleSend", - "verifiedOnBlockchain": false - }, - { - "actionId": 1776374995066.6648, - "baseFeePerGas": "0x6961bf7", - "blockTimestamp": "0x69e154ef", - "chainId": "0x1", - "customNonceValue": "", - "defaultGasEstimates": { - "estimateType": "medium", - "gas": "0x10fc5", - "maxFeePerGas": "0x832fbdc3", - "maxPriorityFeePerGas": "0x77359400" - }, - "gasFeeEstimates": { - "high": { - "maxFeePerGas": "0x832fbdc3", - "maxPriorityFeePerGas": "0x77359400" - }, - "low": { - "maxFeePerGas": "0x86f6dc6", - "maxPriorityFeePerGas": "0xf4240" - }, - "medium": { - "maxFeePerGas": "0x832fbdc3", - "maxPriorityFeePerGas": "0x77359400" - }, - "type": "fee-market" - }, - "gasFeeEstimatesLoaded": true, - "gasFeeTokens": [ - { - "amount": "0x14965db0e0fccf05", - "balance": "0x8ac7230489e80000", - "decimals": 18, - "fee": "0x556642460418b49", - "gas": "0xb565", - "maxFeePerGas": "0x8a9600ba", - "maxPriorityFeePerGas": "0x7d2b7504", - "rateWei": "0x184bc606bf127", - "recipient": "0xe3478b0bb1a5084567c319096437924948be1964", - "symbol": "DAI", - "tokenAddress": "0x6b175474e89094c44da98b954eedeac495271d0f" - } - ], - "gasLimitNoBuffer": "0xb52e", - "gasUsed": "0xb3e7", - "hash": "0xf64f465a4b4639b9ae2ad7cb53088b42ce1c1c797666a6824f4ec80e6c8d4cd0", - "id": "693184b0-39db-11f1-bbe4-3727d90ba13b", - "isActive": false, - "isFirstTimeInteraction": false, - "isGasFeeSponsored": false, - "isGasFeeTokenIgnoredIfBalance": false, - "networkClientId": "mainnet", - "origin": "metamask", - "originalGasEstimate": "0x10fc5", - "r": "0x3a6fb7be79952478d100ba63191f0899cef61187dce5c00e39d9b05f898a6396", - "rawTx": "0x04f8c90133847735940084832fbdc383010fc594141d32a89a1e0a5ef360034a2f60a4b917c188388080c0f85cf85a019463c0c19a282a1b52b07dd5a65b58948a07dae32b3480a0fb0bc6e688b0e01810b6e373313696a3e12ac017278b94c892e51caec6628fcca00d4c5cb41d97686c7b5a42d2c19ea5acf20b6e55d7a6623d63f4a6d34756ed8a01a03a6fb7be79952478d100ba63191f0899cef61187dce5c00e39d9b05f898a6396a011e1e3f37e0f119bf23071936bf4be330fec944c4f5e22a9cd71c297179bad00", - "s": "0x11e1e3f37e0f119bf23071936bf4be330fec944c4f5e22a9cd71c297179bad00", - "simulationData": { - "callTraceErrors": [], - "tokenBalanceChanges": [] - }, - "status": "confirmed", - "submittedTime": 1776374997545, - "time": 1776374995067, - "txParams": { - "authorizationList": [ - { - "address": "0x63c0c19a282a1B52b07dD5a65b58948A07DAE32B", - "chainId": "0x1", - "nonce": "0x34", - "r": "0xfb0bc6e688b0e01810b6e373313696a3e12ac017278b94c892e51caec6628fcc", - "s": "0x0d4c5cb41d97686c7b5a42d2c19ea5acf20b6e55d7a6623d63f4a6d34756ed8a", - "yParity": "0x0" - } - ], - "from": "0x141d32a89a1e0a5ef360034a2f60a4b917c18838", - "gas": "0x10fc5", - "gasLimit": "0x10fc5", - "maxFeePerGas": "0x832fbdc3", - "maxPriorityFeePerGas": "0x77359400", - "nonce": "0x33", - "to": "0x141d32a89a1e0a5ef360034a2f60a4b917c18838", - "type": "0x4", - "value": "0x0" - }, - "txParamsOriginal": { - "authorizationList": [ - { - "address": "0x63c0c19a282a1B52b07dD5a65b58948A07DAE32B" - } - ], - "from": "0x141d32a89a1e0a5ef360034a2f60a4b917c18838", - "to": "0x141d32a89a1e0a5ef360034a2f60a4b917c18838", - "type": "0x4", - "value": "0x0" - }, - "txReceipt": { - "blockHash": "0x00128c3383e311a7203cb4931304b7b630fe3f307febd611afde0fd4a16900e3", - "blockNumber": "0x17bde76", - "contractAddress": null, - "cumulativeGasUsed": "0x8669d4", - "effectiveGasPrice": "0x7dcbaff7", - "from": "0x141d32a89a1e0a5ef360034a2f60a4b917c18838", - "gasUsed": "0x8fec", - "logs": [], - "logsBloom": "0x00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", - "status": "0x1", - "to": "0x141d32a89a1e0a5ef360034a2f60a4b917c18838", - "transactionHash": "0xf64f465a4b4639b9ae2ad7cb53088b42ce1c1c797666a6824f4ec80e6c8d4cd0", - "transactionIndex": "0x49", - "type": "0x4" - }, - "type": "batch", - "userEditedGasLimit": false, - "userFeeLevel": "medium", - "v": "0x1", - "verifiedOnBlockchain": true - }, - { - "blockNumber": "24895094", - "chainId": "0x1", - "hash": "0xf64f465a4b4639b9ae2ad7cb53088b42ce1c1c797666a6824f4ec80e6c8d4cd0", - "id": "79d7c180-39db-11f1-bbe7-3727d90ba13b", - "isTransfer": false, - "networkClientId": "mainnet", - "status": "confirmed", - "time": 1776375023000, - "toSmartContract": false, - "txParams": { - "chainId": "0x1", - "data": null, - "from": "0x141d32a89a1e0a5ef360034a2f60a4b917c18838", - "gas": "0x10fc5", - "gasPrice": "0x7dcbaff7", - "gasUsed": "0x8fec", - "nonce": "0x33", - "to": "0x141d32a89a1e0a5ef360034a2f60a4b917c18838", - "value": "0x0" - }, - "type": "simpleSend", - "verifiedOnBlockchain": false - }, - { - "assetsFiatValues": { - "receiving": "32.933861945091401367338221656", - "sending": "33.764377335151183940035251708" - }, - "baseFeePerGas": "0x6e12d09", - "batchId": "0x9326029b55e54103ba3d30692852c37c", - "blockTimestamp": "0x69e15507", - "chainId": "0x1", - "defaultGasEstimates": { - "estimateType": "medium", - "gas": "0x182f0", - "maxFeePerGas": "0x840cc0ae", - "maxPriorityFeePerGas": "0x7d2b7501" - }, - "delegationAddress": "0x63c0c19a282a1b52b07dd5a65b58948a07dae32b", - "disableGasBuffer": true, - "gasFeeEstimates": { - "high": { - "maxFeePerGas": "0x7ff4616c", - "maxPriorityFeePerGas": "0x77359400" - }, - "low": { - "maxFeePerGas": "0x632e4bd", - "maxPriorityFeePerGas": "0x154c23" - }, - "medium": { - "maxFeePerGas": "0x7ff4616c", - "maxPriorityFeePerGas": "0x77359400" - }, - "type": "fee-market" - }, - "gasFeeEstimatesLoaded": true, - "gasLimitNoBuffer": "0x182f0", - "hash": "0xca8213d009d229e05f39dcd4400c0cbcfa8223c0749ed2d32b359eb0540a2ef3", - "id": "87097100-39db-11f1-bbe5-3727d90ba13b", - "isGasFeeTokenIgnoredIfBalance": false, - "networkClientId": "mainnet", - "origin": "metamask", - "r": "0x6368063fee71fabff59c208b54692159d12c47a5a6fa62f0c5aacf3c783c432f", - "rawTx": "0x02f902f90135847d2b750184840cc0ae830182f0940439e60f02a8900a951603950d8d4527f400c3f1873275f98a9082cfb902853ce33bff00000000000000000000000000000000000000000000000000000000000000800000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000003275f98a9082cf00000000000000000000000000000000000000000000000000000000000000c0000000000000000000000000000000000000000000000000000000000000000e72656c617941646170746572563200000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001a00000000000000000000000004cd00e387622c35bddb9b4c962c136462338bc310000000000000000000000004cd00e387622c35bddb9b4c962c136462338bc31000000000000000000000000000000000000000000000000000000000000a4b100000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000003203323223ca870000000000000000000000000000000000000000000000000000000000000140000000000000000000000000000000000000000000000000000072c7586cb848000000000000000000000000e6b738da243e8fa2a0ed5915645789add5de5152000000000000000000000000000000000000000000000000000000000000004449290c1c000000000000000000000000141d32a89a1e0a5ef360034a2f60a4b917c188381035d4e4d6bbeee624d6720ec2f36cee54c7b1f5a981f67c94dc2be864c9a490000000000000000000000000000000000000000000000000000000004ec080a06368063fee71fabff59c208b54692159d12c47a5a6fa62f0c5aacf3c783c432fa04a41744290dc6f9587a31036eda090e3f1fcea9bfc8021a857348f756a4f55ce", - "s": "0x4a41744290dc6f9587a31036eda090e3f1fcea9bfc8021a857348f756a4f55ce", - "status": "confirmed", - "submittedTime": 1776375051944, - "time": 1776375045136, - "txParams": { - "data": "0x3ce33bff00000000000000000000000000000000000000000000000000000000000000800000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000003275f98a9082cf00000000000000000000000000000000000000000000000000000000000000c0000000000000000000000000000000000000000000000000000000000000000e72656c617941646170746572563200000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001a00000000000000000000000004cd00e387622c35bddb9b4c962c136462338bc310000000000000000000000004cd00e387622c35bddb9b4c962c136462338bc31000000000000000000000000000000000000000000000000000000000000a4b100000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000003203323223ca870000000000000000000000000000000000000000000000000000000000000140000000000000000000000000000000000000000000000000000072c7586cb848000000000000000000000000e6b738da243e8fa2a0ed5915645789add5de5152000000000000000000000000000000000000000000000000000000000000004449290c1c000000000000000000000000141d32a89a1e0a5ef360034a2f60a4b917c188381035d4e4d6bbeee624d6720ec2f36cee54c7b1f5a981f67c94dc2be864c9a490000000000000000000000000000000000000000000000000000000004e", - "from": "0x141d32a89a1e0a5ef360034a2f60a4b917c18838", - "gas": "0x182f0", - "gasLimit": "0x182f0", - "maxFeePerGas": "0x840cc0ae", - "maxPriorityFeePerGas": "0x7d2b7501", - "nonce": "0x35", - "to": "0x0439e60f02a8900a951603950d8d4527f400c3f1", - "type": "0x2", - "value": "0x3275f98a9082cf" - }, - "txParamsOriginal": { - "data": "0x3ce33bff00000000000000000000000000000000000000000000000000000000000000800000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000003275f98a9082cf00000000000000000000000000000000000000000000000000000000000000c0000000000000000000000000000000000000000000000000000000000000000e72656c617941646170746572563200000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001a00000000000000000000000004cd00e387622c35bddb9b4c962c136462338bc310000000000000000000000004cd00e387622c35bddb9b4c962c136462338bc31000000000000000000000000000000000000000000000000000000000000a4b100000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000003203323223ca870000000000000000000000000000000000000000000000000000000000000140000000000000000000000000000000000000000000000000000072c7586cb848000000000000000000000000e6b738da243e8fa2a0ed5915645789add5de5152000000000000000000000000000000000000000000000000000000000000004449290c1c000000000000000000000000141d32a89a1e0a5ef360034a2f60a4b917c188381035d4e4d6bbeee624d6720ec2f36cee54c7b1f5a981f67c94dc2be864c9a490000000000000000000000000000000000000000000000000000000004e", - "from": "0x141d32a89a1e0a5ef360034a2f60a4b917c18838", - "gas": "0x182f0", - "maxFeePerGas": "0x840cc0ae", - "maxPriorityFeePerGas": "0x7d2b7501", - "to": "0x0439e60f02a8900a951603950d8d4527f400c3f1", - "type": "0x2", - "value": "0x3275f98a9082cf" - }, - "txReceipt": { - "blockHash": "0xbd016259598c7357b89bd4f5d50fcbacecce24c9f49ddc7faf608dd29a551664", - "blockNumber": "0x17bde78", - "contractAddress": null, - "cumulativeGasUsed": "0x8e9360", - "effectiveGasPrice": "0x840ca20a", - "from": "0x141d32a89a1e0a5ef360034a2f60a4b917c18838", - "gasUsed": "0x1498b", - "logs": [ - { - "address": "0xe6b738da243e8fa2a0ed5915645789add5de5152", - "blockHash": "0xbd016259598c7357b89bd4f5d50fcbacecce24c9f49ddc7faf608dd29a551664", - "blockNumber": "0x17bde78", - "blockTimestamp": "0x69e15507", - "data": "0x000000000000000000000000000000000000000000000000000072c7586cb848", - "logIndex": "0xd7", - "removed": false, - "topics": [ - "0x3d0ce9bfc3ed7d6862dbb28b2dea94561fe714a1b4d019aa8af39730d1ad7c3d", - "0x0000000000000000000000009a47f3289794e9bbc6a3c571f6d96ad4e7baed16" - ], - "transactionHash": "0xca8213d009d229e05f39dcd4400c0cbcfa8223c0749ed2d32b359eb0540a2ef3", - "transactionIndex": "0x6a" - }, - { - "address": "0x9a47f3289794e9bbc6a3c571f6d96ad4e7baed16", - "blockHash": "0xbd016259598c7357b89bd4f5d50fcbacecce24c9f49ddc7faf608dd29a551664", - "blockNumber": "0x17bde78", - "blockTimestamp": "0x69e15507", - "data": "0x0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000e6b738da243e8fa2a0ed5915645789add5de5152000000000000000000000000000000000000000000000000000072c7586cb848", - "logIndex": "0xd8", - "removed": false, - "topics": [ - "0x6ded982279c8387ad8a63e73385031a3807c1862e633f06e09d11bcb6e282f60" - ], - "transactionHash": "0xca8213d009d229e05f39dcd4400c0cbcfa8223c0749ed2d32b359eb0540a2ef3", - "transactionIndex": "0x6a" - }, - { - "address": "0x4cd00e387622c35bddb9b4c962c136462338bc31", - "blockHash": "0xbd016259598c7357b89bd4f5d50fcbacecce24c9f49ddc7faf608dd29a551664", - "blockNumber": "0x17bde78", - "blockTimestamp": "0x69e15507", - "data": "0x000000000000000000000000141d32a89a1e0a5ef360034a2f60a4b917c18838000000000000000000000000000000000000000000000000003203323223ca871035d4e4d6bbeee624d6720ec2f36cee54c7b1f5a981f67c94dc2be864c9a490", - "logIndex": "0xd9", - "removed": false, - "topics": [ - "0x8032066556caf3967d8fec4ad22a2d9e1e9576556b2903a0fcd5b1fd201e3477" - ], - "transactionHash": "0xca8213d009d229e05f39dcd4400c0cbcfa8223c0749ed2d32b359eb0540a2ef3", - "transactionIndex": "0x6a" - }, - { - "address": "0x9a47f3289794e9bbc6a3c571f6d96ad4e7baed16", - "blockHash": "0xbd016259598c7357b89bd4f5d50fcbacecce24c9f49ddc7faf608dd29a551664", - "blockNumber": "0x17bde78", - "blockTimestamp": "0x69e15507", - "data": "0x000000000000000000000000141d32a89a1e0a5ef360034a2f60a4b917c188380000000000000000000000004cd00e387622c35bddb9b4c962c136462338bc31000000000000000000000000000000000000000000000000000000000000a4b100000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000003203323223ca87", - "logIndex": "0xda", - "removed": false, - "topics": [ - "0x831bac9533a2034226daa21109dbd4f887674f0fe4877e1a8b35b3ffe1bdce76" - ], - "transactionHash": "0xca8213d009d229e05f39dcd4400c0cbcfa8223c0749ed2d32b359eb0540a2ef3", - "transactionIndex": "0x6a" - } - ], - "logsBloom": "0x00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000040400000000000000000000000000000000100000000000002000000000000100000000000000000000000000000000000004000000000000000000000000002001000000002000000000800000000000000000000000000000000000000000000000000000000000000000000000000000000000200000000000000040000000000000400000000000004000000400000008000020000000000000040000000000000000000000002000800000000220000000000000000000000000800000000000000000000000000000000400000000", - "status": "0x1", - "to": "0x0439e60f02a8900a951603950d8d4527f400c3f1", - "transactionHash": "0xca8213d009d229e05f39dcd4400c0cbcfa8223c0749ed2d32b359eb0540a2ef3", - "transactionIndex": "0x6a", - "type": "0x2" - }, - "type": "bridge", - "userEditedGasLimit": false, - "userFeeLevel": "medium", - "v": "0x0", - "verifiedOnBlockchain": true - }, - { - "blockNumber": "24895096", - "chainId": "0x1", - "hash": "0xca8213d009d229e05f39dcd4400c0cbcfa8223c0749ed2d32b359eb0540a2ef3", - "id": "8825dd80-39db-11f1-bbe6-3727d90ba13b", - "isTransfer": false, - "networkClientId": "mainnet", - "status": "confirmed", - "time": 1776375047000, - "toSmartContract": false, - "txParams": { - "chainId": "0x1", - "data": "0x3ce33bff", - "from": "0x141d32a89a1e0a5ef360034a2f60a4b917c18838", - "gas": "0x182f0", - "gasPrice": "0x840ca20a", - "gasUsed": "0x1498b", - "nonce": "0x35", - "to": "0x0439e60f02a8900a951603950d8d4527f400c3f1", - "value": "0x3275f98a9082cf" - }, - "type": "contractInteraction", - "verifiedOnBlockchain": false - }, - { - "blockNumber": "453224698", - "chainId": "0xa4b1", - "hash": "0x47c96bb707133eaf0e922ef46ced8e0c3f1e5d2d47042cea504222e415986150", - "id": "89efa100-39db-11f1-bbe5-3727d90ba13b", - "isTransfer": false, - "networkClientId": "arbitrum-mainnet", - "status": "confirmed", - "time": 1776375050000, - "toSmartContract": false, - "txParams": { - "chainId": "0xa4b1", - "data": "0xcd6e13f7", - "from": "0xf70da97812cb96acdf810712aa562db8dfa3dbef", - "gas": "0x287f6", - "gasPrice": "0x1312d00", - "gasUsed": "0x101ba", - "nonce": "0x913b3c", - "to": "0xb92fe925dc43a0ecde6c8b1a2709c170ec4fff4f", - "value": "0x31fae838fe8ec4" - }, - "type": "incoming", - "verifiedOnBlockchain": false - }, - { - "blockNumber": "453224839", - "chainId": "0xa4b1", - "hash": "0x8e50804fe5d9726e6f7a501f27ce71299a28320876c8508d6434e1cbab681dbd", - "id": "9ecc3480-39db-11f1-bc96-3727d90ba13b", - "isTransfer": false, - "networkClientId": "arbitrum-mainnet", - "status": "confirmed", - "time": 1776375085000, - "toSmartContract": false, - "txParams": { - "chainId": "0xa4b1", - "data": "0x3ce33bff", - "from": "0x141d32a89a1e0a5ef360034a2f60a4b917c18838", - "gas": "0x2177c", - "gasPrice": "0x13134d1", - "gasUsed": "0x14ddb", - "nonce": "0x2b", - "to": "0x23981fc34e69eedfe2bd9a0a9fcb0719fe09dbfc", - "value": "0x31f8ee5657d8d7" - }, - "type": "contractInteraction", - "verifiedOnBlockchain": false - }, - { - "assetsFiatValues": { - "receiving": "32.582309960267337396719482708", - "sending": "32.936025025201072622318781016" - }, - "baseFeePerGas": "0x13134d0", - "batchId": "0xce36b3117b3b4175a32f757f08f37c12", - "blockTimestamp": "0x69e1552d", - "chainId": "0xa4b1", - "defaultGasEstimates": { - "estimateType": "medium", - "gas": "0x2177c", - "maxFeePerGas": "0x158b231", - "maxPriorityFeePerGas": "0x1" - }, - "delegationAddress": "0x63c0c19a282a1b52b07dd5a65b58948a07dae32b", - "disableGasBuffer": true, - "gasFeeEstimates": { - "high": { - "maxFeePerGas": "0x208ed08", - "maxPriorityFeePerGas": "0x0" - }, - "low": { - "maxFeePerGas": "0x1326d50", - "maxPriorityFeePerGas": "0x0" - }, - "medium": { - "maxFeePerGas": "0x19dad2c", - "maxPriorityFeePerGas": "0x0" - }, - "type": "fee-market" - }, - "gasFeeEstimatesLoaded": true, - "gasLimitNoBuffer": "0x2177c", - "hash": "0x8e50804fe5d9726e6f7a501f27ce71299a28320876c8508d6434e1cbab681dbd", - "id": "9ef2a840-39db-11f1-bc3b-3727d90ba13b", - "isGasFeeTokenIgnoredIfBalance": false, - "networkClientId": "arbitrum-mainnet", - "origin": "metamask", - "r": "0x7ac8c0da1c532cd5ebbef36c861896cdf8293ad06c1bf167a577f9b9bfb85019", - "rawTx": "0x02f902f782a4b12b01840158b2318302177c9423981fc34e69eedfe2bd9a0a9fcb0719fe09dbfc8731f8ee5657d8d7b902853ce33bff000000000000000000000000000000000000000000000000000000000000008000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000031f8ee5657d8d700000000000000000000000000000000000000000000000000000000000000c0000000000000000000000000000000000000000000000000000000000000000e72656c617941646170746572563200000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001a00000000000000000000000004cd00e387622c35bddb9b4c962c136462338bc310000000000000000000000004cd00e387622c35bddb9b4c962c136462338bc31000000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000003188f7dce8118c000000000000000000000000000000000000000000000000000000000000014000000000000000000000000000000000000000000000000000006ff6796fc74b00000000000000000000000056ca675c3633cc16bd6849e2b431d4e8de5e23bf000000000000000000000000000000000000000000000000000000000000004449290c1c000000000000000000000000141d32a89a1e0a5ef360034a2f60a4b917c18838d2625815fbdf1c8919355a0504501d72d0c4fb9298773f1feed1f323785582e00000000000000000000000000000000000000000000000000000000013c001a07ac8c0da1c532cd5ebbef36c861896cdf8293ad06c1bf167a577f9b9bfb85019a074b6811e09c82e03eb51562cf185bbfd5f92d73ea39a3bb7801e6a682b9a5822", - "s": "0x74b6811e09c82e03eb51562cf185bbfd5f92d73ea39a3bb7801e6a682b9a5822", - "status": "confirmed", - "submittedTime": 1776375086476, - "time": 1776375085252, - "txParams": { - "data": "0x3ce33bff000000000000000000000000000000000000000000000000000000000000008000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000031f8ee5657d8d700000000000000000000000000000000000000000000000000000000000000c0000000000000000000000000000000000000000000000000000000000000000e72656c617941646170746572563200000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001a00000000000000000000000004cd00e387622c35bddb9b4c962c136462338bc310000000000000000000000004cd00e387622c35bddb9b4c962c136462338bc31000000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000003188f7dce8118c000000000000000000000000000000000000000000000000000000000000014000000000000000000000000000000000000000000000000000006ff6796fc74b00000000000000000000000056ca675c3633cc16bd6849e2b431d4e8de5e23bf000000000000000000000000000000000000000000000000000000000000004449290c1c000000000000000000000000141d32a89a1e0a5ef360034a2f60a4b917c18838d2625815fbdf1c8919355a0504501d72d0c4fb9298773f1feed1f323785582e00000000000000000000000000000000000000000000000000000000013", - "from": "0x141d32a89a1e0a5ef360034a2f60a4b917c18838", - "gas": "0x2177c", - "gasLimit": "0x2177c", - "maxFeePerGas": "0x158b231", - "maxPriorityFeePerGas": "0x1", - "nonce": "0x2b", - "to": "0x23981fc34e69eedfe2bd9a0a9fcb0719fe09dbfc", - "type": "0x2", - "value": "0x31f8ee5657d8d7" - }, - "txParamsOriginal": { - "data": "0x3ce33bff000000000000000000000000000000000000000000000000000000000000008000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000031f8ee5657d8d700000000000000000000000000000000000000000000000000000000000000c0000000000000000000000000000000000000000000000000000000000000000e72656c617941646170746572563200000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001a00000000000000000000000004cd00e387622c35bddb9b4c962c136462338bc310000000000000000000000004cd00e387622c35bddb9b4c962c136462338bc31000000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000003188f7dce8118c000000000000000000000000000000000000000000000000000000000000014000000000000000000000000000000000000000000000000000006ff6796fc74b00000000000000000000000056ca675c3633cc16bd6849e2b431d4e8de5e23bf000000000000000000000000000000000000000000000000000000000000004449290c1c000000000000000000000000141d32a89a1e0a5ef360034a2f60a4b917c18838d2625815fbdf1c8919355a0504501d72d0c4fb9298773f1feed1f323785582e00000000000000000000000000000000000000000000000000000000013", - "from": "0x141d32a89a1e0a5ef360034a2f60a4b917c18838", - "gas": "0x2177c", - "maxFeePerGas": "0x158b231", - "maxPriorityFeePerGas": "0x1", - "to": "0x23981fc34e69eedfe2bd9a0a9fcb0719fe09dbfc", - "type": "0x2", - "value": "0x31f8ee5657d8d7" - }, - "txReceipt": { - "blockHash": "0x7e214866347a00dc356b96955721bd1150aca12ef68d5201244124e3833c4aa0", - "blockNumber": "0x1b03a987", - "contractAddress": null, - "cumulativeGasUsed": "0x2429c", - "effectiveGasPrice": "0x13134d0", - "from": "0x141d32a89a1e0a5ef360034a2f60a4b917c18838", - "gasUsed": "0x14ddb", - "gasUsedForL1": "0x45c", - "l1BlockNumber": "0x17bde7a", - "logs": [ - { - "address": "0x56ca675c3633cc16bd6849e2b431d4e8de5e23bf", - "blockHash": "0x7e214866347a00dc356b96955721bd1150aca12ef68d5201244124e3833c4aa0", - "blockNumber": "0x1b03a987", - "blockTimestamp": "0x69e1552d", - "data": "0x00000000000000000000000000000000000000000000000000006ff6796fc74b", - "logIndex": "0x1", - "removed": false, - "topics": [ - "0x3d0ce9bfc3ed7d6862dbb28b2dea94561fe714a1b4d019aa8af39730d1ad7c3d", - "0x0000000000000000000000007a70cb77a12fa2dc3fa1bc1dcbca4c79db71a289" - ], - "transactionHash": "0x8e50804fe5d9726e6f7a501f27ce71299a28320876c8508d6434e1cbab681dbd", - "transactionIndex": "0x2" - }, - { - "address": "0x7a70cb77a12fa2dc3fa1bc1dcbca4c79db71a289", - "blockHash": "0x7e214866347a00dc356b96955721bd1150aca12ef68d5201244124e3833c4aa0", - "blockNumber": "0x1b03a987", - "blockTimestamp": "0x69e1552d", - "data": "0x000000000000000000000000000000000000000000000000000000000000000000000000000000000000000056ca675c3633cc16bd6849e2b431d4e8de5e23bf00000000000000000000000000000000000000000000000000006ff6796fc74b", - "logIndex": "0x2", - "removed": false, - "topics": [ - "0x6ded982279c8387ad8a63e73385031a3807c1862e633f06e09d11bcb6e282f60" - ], - "transactionHash": "0x8e50804fe5d9726e6f7a501f27ce71299a28320876c8508d6434e1cbab681dbd", - "transactionIndex": "0x2" - }, - { - "address": "0x4cd00e387622c35bddb9b4c962c136462338bc31", - "blockHash": "0x7e214866347a00dc356b96955721bd1150aca12ef68d5201244124e3833c4aa0", - "blockNumber": "0x1b03a987", - "blockTimestamp": "0x69e1552d", - "data": "0x000000000000000000000000141d32a89a1e0a5ef360034a2f60a4b917c18838000000000000000000000000000000000000000000000000003188f7dce8118cd2625815fbdf1c8919355a0504501d72d0c4fb9298773f1feed1f323785582e0", - "logIndex": "0x3", - "removed": false, - "topics": [ - "0x8032066556caf3967d8fec4ad22a2d9e1e9576556b2903a0fcd5b1fd201e3477" - ], - "transactionHash": "0x8e50804fe5d9726e6f7a501f27ce71299a28320876c8508d6434e1cbab681dbd", - "transactionIndex": "0x2" - }, - { - "address": "0x7a70cb77a12fa2dc3fa1bc1dcbca4c79db71a289", - "blockHash": "0x7e214866347a00dc356b96955721bd1150aca12ef68d5201244124e3833c4aa0", - "blockNumber": "0x1b03a987", - "blockTimestamp": "0x69e1552d", - "data": "0x000000000000000000000000141d32a89a1e0a5ef360034a2f60a4b917c188380000000000000000000000004cd00e387622c35bddb9b4c962c136462338bc31000000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000003188f7dce8118c", - "logIndex": "0x4", - "removed": false, - "topics": [ - "0x831bac9533a2034226daa21109dbd4f887674f0fe4877e1a8b35b3ffe1bdce76" - ], - "transactionHash": "0x8e50804fe5d9726e6f7a501f27ce71299a28320876c8508d6434e1cbab681dbd", - "transactionIndex": "0x2" - } - ], - "logsBloom": "0x00000000000000000000000000000000000000000000000000000000000000004000000000000080000000000000000000000000000000000000000000000000100000000000002000000000000100000000000000000000000000001000000004000000000010000000000000000001000000002000000000800000000000000000000000000000000000000000000000000000000000000000000000000000000000200000000000000040000000000000000000000000004000000000100008000020000000000000040000000000000000000000200000000000000000000000000000000000000080800000000000000000800000000004000400000000", - "status": "0x1", - "timeboosted": false, - "to": "0x23981fc34e69eedfe2bd9a0a9fcb0719fe09dbfc", - "transactionHash": "0x8e50804fe5d9726e6f7a501f27ce71299a28320876c8508d6434e1cbab681dbd", - "transactionIndex": "0x2", - "type": "0x2" - }, - "type": "bridge", - "userEditedGasLimit": false, - "userFeeLevel": "medium", - "v": "0x1", - "verifiedOnBlockchain": true - }, - { - "blockNumber": "24895100", - "chainId": "0x1", - "hash": "0x260d0b76a9118fdd29b43140426dc185ba5812a0a6df79bcbe4bed63da6e3dc6", - "id": "a4c21580-39db-11f1-bc95-3727d90ba13b", - "isTransfer": false, - "networkClientId": "mainnet", - "status": "confirmed", - "time": 1776375095000, - "toSmartContract": false, - "txParams": { - "chainId": "0x1", - "data": "0xcd6e13f7", - "from": "0xada5bb90d0de0bd1b6f3938708f49295a8d1f7cb", - "gas": "0x17cfe", - "gasPrice": "0xdf7dc23", - "gasUsed": "0xfdf3", - "nonce": "0x1b62f", - "to": "0xb92fe925dc43a0ecde6c8b1a2709c170ec4fff4f", - "value": "0x317253fd88ffde" - }, - "type": "incoming", - "verifiedOnBlockchain": false - }, - { - "assetsFiatValues": { - "receiving": "31.82774314327230765570593886", - "sending": "32.658515343737659473775597234" - }, - "baseFeePerGas": "0x76a29eb", - "batchId": "0x20245866a5b543c1af94b98e209ee1e1", - "blockTimestamp": "0x69e1558b", - "chainId": "0x1", - "defaultGasEstimates": { - "estimateType": "medium", - "gas": "0x182f0", - "maxFeePerGas": "0x85a05cbb", - "maxPriorityFeePerGas": "0x7d2b7501" - }, - "delegationAddress": "0x63c0c19a282a1b52b07dd5a65b58948a07dae32b", - "disableGasBuffer": true, - "gasFeeEstimates": { - "high": { - "maxFeePerGas": "0x81c75740", - "maxPriorityFeePerGas": "0x77359400" - }, - "low": { - "maxFeePerGas": "0x7736689", - "maxPriorityFeePerGas": "0xf4240" - }, - "medium": { - "maxFeePerGas": "0x81c75740", - "maxPriorityFeePerGas": "0x77359400" - }, - "type": "fee-market" - }, - "gasFeeEstimatesLoaded": true, - "gasLimitNoBuffer": "0x182f0", - "hash": "0x400089af7cf7bdf032a84d27c3dab0a0a1326f8ef62f94ee260c70bfcb82b43b", - "id": "d3bf32a0-39db-11f1-bc94-3727d90ba13b", - "isGasFeeTokenIgnoredIfBalance": false, - "networkClientId": "mainnet", - "origin": "metamask", - "r": "0x113ff3342553bb5116ebbe761cee6d370e10f32140609a09befcdde470261adb", - "rawTx": "0x02f902f90136847d2b75018485a05cbb830182f0940439e60f02a8900a951603950d8d4527f400c3f18730c5f60297e7d9b902853ce33bff000000000000000000000000000000000000000000000000000000000000008000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000030c5f60297e7d900000000000000000000000000000000000000000000000000000000000000c0000000000000000000000000000000000000000000000000000000000000000e72656c617941646170746572563200000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001a00000000000000000000000004cd00e387622c35bddb9b4c962c136462338bc310000000000000000000000004cd00e387622c35bddb9b4c962c136462338bc31000000000000000000000000000000000000000000000000000000000000a4b100000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000003056f109a7a576000000000000000000000000000000000000000000000000000000000000014000000000000000000000000000000000000000000000000000006f04f8f04263000000000000000000000000e6b738da243e8fa2a0ed5915645789add5de5152000000000000000000000000000000000000000000000000000000000000004449290c1c000000000000000000000000141d32a89a1e0a5ef360034a2f60a4b917c18838467ded05917cefa50e95b3a483ac35dd45f4a6712ab67d5fc9b8a29617cbde7800000000000000000000000000000000000000000000000000000000dec080a0113ff3342553bb5116ebbe761cee6d370e10f32140609a09befcdde470261adba029fe445e0c5c33d22e8c076d6582dabfce8c99f3dd31af39d81ae6af78c4dfb5", - "s": "0x29fe445e0c5c33d22e8c076d6582dabfce8c99f3dd31af39d81ae6af78c4dfb5", - "status": "confirmed", - "submittedTime": 1776375180675, - "time": 1776375173834, - "txParams": { - "data": "0x3ce33bff000000000000000000000000000000000000000000000000000000000000008000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000030c5f60297e7d900000000000000000000000000000000000000000000000000000000000000c0000000000000000000000000000000000000000000000000000000000000000e72656c617941646170746572563200000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001a00000000000000000000000004cd00e387622c35bddb9b4c962c136462338bc310000000000000000000000004cd00e387622c35bddb9b4c962c136462338bc31000000000000000000000000000000000000000000000000000000000000a4b100000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000003056f109a7a576000000000000000000000000000000000000000000000000000000000000014000000000000000000000000000000000000000000000000000006f04f8f04263000000000000000000000000e6b738da243e8fa2a0ed5915645789add5de5152000000000000000000000000000000000000000000000000000000000000004449290c1c000000000000000000000000141d32a89a1e0a5ef360034a2f60a4b917c18838467ded05917cefa50e95b3a483ac35dd45f4a6712ab67d5fc9b8a29617cbde7800000000000000000000000000000000000000000000000000000000de", - "from": "0x141d32a89a1e0a5ef360034a2f60a4b917c18838", - "gas": "0x182f0", - "gasLimit": "0x182f0", - "maxFeePerGas": "0x85a05cbb", - "maxPriorityFeePerGas": "0x7d2b7501", - "nonce": "0x36", - "to": "0x0439e60f02a8900a951603950d8d4527f400c3f1", - "type": "0x2", - "value": "0x30c5f60297e7d9" - }, - "txParamsOriginal": { - "data": "0x3ce33bff000000000000000000000000000000000000000000000000000000000000008000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000030c5f60297e7d900000000000000000000000000000000000000000000000000000000000000c0000000000000000000000000000000000000000000000000000000000000000e72656c617941646170746572563200000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001a00000000000000000000000004cd00e387622c35bddb9b4c962c136462338bc310000000000000000000000004cd00e387622c35bddb9b4c962c136462338bc31000000000000000000000000000000000000000000000000000000000000a4b100000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000003056f109a7a576000000000000000000000000000000000000000000000000000000000000014000000000000000000000000000000000000000000000000000006f04f8f04263000000000000000000000000e6b738da243e8fa2a0ed5915645789add5de5152000000000000000000000000000000000000000000000000000000000000004449290c1c000000000000000000000000141d32a89a1e0a5ef360034a2f60a4b917c18838467ded05917cefa50e95b3a483ac35dd45f4a6712ab67d5fc9b8a29617cbde7800000000000000000000000000000000000000000000000000000000de", - "from": "0x141d32a89a1e0a5ef360034a2f60a4b917c18838", - "gas": "0x182f0", - "maxFeePerGas": "0x85a05cbb", - "maxPriorityFeePerGas": "0x7d2b7501", - "to": "0x0439e60f02a8900a951603950d8d4527f400c3f1", - "type": "0x2", - "value": "0x30c5f60297e7d9" - }, - "txReceipt": { - "blockHash": "0x3c8679b744834f47a70e97f406e40385b856fb1ca7c70bc13eaeefb8c9e5f90f", - "blockNumber": "0x17bde83", - "contractAddress": null, - "cumulativeGasUsed": "0xccb0b8", - "effectiveGasPrice": "0x84959eec", - "from": "0x141d32a89a1e0a5ef360034a2f60a4b917c18838", - "gasUsed": "0x1498b", - "logs": [ - { - "address": "0xe6b738da243e8fa2a0ed5915645789add5de5152", - "blockHash": "0x3c8679b744834f47a70e97f406e40385b856fb1ca7c70bc13eaeefb8c9e5f90f", - "blockNumber": "0x17bde83", - "blockTimestamp": "0x69e1558b", - "data": "0x00000000000000000000000000000000000000000000000000006f04f8f04263", - "logIndex": "0xdc", - "removed": false, - "topics": [ - "0x3d0ce9bfc3ed7d6862dbb28b2dea94561fe714a1b4d019aa8af39730d1ad7c3d", - "0x0000000000000000000000009a47f3289794e9bbc6a3c571f6d96ad4e7baed16" - ], - "transactionHash": "0x400089af7cf7bdf032a84d27c3dab0a0a1326f8ef62f94ee260c70bfcb82b43b", - "transactionIndex": "0x3d" - }, - { - "address": "0x9a47f3289794e9bbc6a3c571f6d96ad4e7baed16", - "blockHash": "0x3c8679b744834f47a70e97f406e40385b856fb1ca7c70bc13eaeefb8c9e5f90f", - "blockNumber": "0x17bde83", - "blockTimestamp": "0x69e1558b", - "data": "0x0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000e6b738da243e8fa2a0ed5915645789add5de515200000000000000000000000000000000000000000000000000006f04f8f04263", - "logIndex": "0xdd", - "removed": false, - "topics": [ - "0x6ded982279c8387ad8a63e73385031a3807c1862e633f06e09d11bcb6e282f60" - ], - "transactionHash": "0x400089af7cf7bdf032a84d27c3dab0a0a1326f8ef62f94ee260c70bfcb82b43b", - "transactionIndex": "0x3d" - }, - { - "address": "0x4cd00e387622c35bddb9b4c962c136462338bc31", - "blockHash": "0x3c8679b744834f47a70e97f406e40385b856fb1ca7c70bc13eaeefb8c9e5f90f", - "blockNumber": "0x17bde83", - "blockTimestamp": "0x69e1558b", - "data": "0x000000000000000000000000141d32a89a1e0a5ef360034a2f60a4b917c18838000000000000000000000000000000000000000000000000003056f109a7a576467ded05917cefa50e95b3a483ac35dd45f4a6712ab67d5fc9b8a29617cbde78", - "logIndex": "0xde", - "removed": false, - "topics": [ - "0x8032066556caf3967d8fec4ad22a2d9e1e9576556b2903a0fcd5b1fd201e3477" - ], - "transactionHash": "0x400089af7cf7bdf032a84d27c3dab0a0a1326f8ef62f94ee260c70bfcb82b43b", - "transactionIndex": "0x3d" - }, - { - "address": "0x9a47f3289794e9bbc6a3c571f6d96ad4e7baed16", - "blockHash": "0x3c8679b744834f47a70e97f406e40385b856fb1ca7c70bc13eaeefb8c9e5f90f", - "blockNumber": "0x17bde83", - "blockTimestamp": "0x69e1558b", - "data": "0x000000000000000000000000141d32a89a1e0a5ef360034a2f60a4b917c188380000000000000000000000004cd00e387622c35bddb9b4c962c136462338bc31000000000000000000000000000000000000000000000000000000000000a4b100000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000003056f109a7a576", - "logIndex": "0xdf", - "removed": false, - "topics": [ - "0x831bac9533a2034226daa21109dbd4f887674f0fe4877e1a8b35b3ffe1bdce76" - ], - "transactionHash": "0x400089af7cf7bdf032a84d27c3dab0a0a1326f8ef62f94ee260c70bfcb82b43b", - "transactionIndex": "0x3d" - } - ], - "logsBloom": "0x00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000040400000000000000000000000000000000100000000000002000000000000100000000000000000000000000000000000004000000000000000000000000002001000000002000000000800000000000000000000000000000000000000000000000000000000000000000000000000000000000200000000000000040000000000000400000000000004000000400000008000020000000000000040000000000000000000000002000800000000220000000000000000000000000800000000000000000000000000000000400000000", - "status": "0x1", - "to": "0x0439e60f02a8900a951603950d8d4527f400c3f1", - "transactionHash": "0x400089af7cf7bdf032a84d27c3dab0a0a1326f8ef62f94ee260c70bfcb82b43b", - "transactionIndex": "0x3d", - "type": "0x2" - }, - "type": "bridge", - "userEditedGasLimit": false, - "userFeeLevel": "medium", - "v": "0x0", - "verifiedOnBlockchain": true - }, - { - "blockNumber": "24895107", - "chainId": "0x1", - "hash": "0x400089af7cf7bdf032a84d27c3dab0a0a1326f8ef62f94ee260c70bfcb82b43b", - "id": "d6d37780-39db-11f1-bc94-3727d90ba13b", - "isTransfer": false, - "networkClientId": "mainnet", - "status": "confirmed", - "time": 1776375179000, - "toSmartContract": false, - "txParams": { - "chainId": "0x1", - "data": "0x3ce33bff", - "from": "0x141d32a89a1e0a5ef360034a2f60a4b917c18838", - "gas": "0x182f0", - "gasPrice": "0x84959eec", - "gasUsed": "0x1498b", - "nonce": "0x36", - "to": "0x0439e60f02a8900a951603950d8d4527f400c3f1", - "value": "0x30c5f60297e7d9" - }, - "type": "contractInteraction", - "verifiedOnBlockchain": false - }, - { - "blockNumber": "453225227", - "chainId": "0xa4b1", - "hash": "0xd5f58e1a26c2ba999201d2af7999d94c55c4a384b4899dbf1313ceb53a8342c3", - "id": "d89d3b00-39db-11f1-bcc1-3727d90ba13b", - "isTransfer": false, - "networkClientId": "arbitrum-mainnet", - "status": "confirmed", - "time": 1776375182000, - "toSmartContract": false, - "txParams": { - "chainId": "0xa4b1", - "data": "0xcd6e13f7", - "from": "0xf70da97812cb96acdf810712aa562db8dfa3dbef", - "gas": "0x287f6", - "gasPrice": "0x131d8e0", - "gasUsed": "0x1019e", - "nonce": "0x913b43", - "to": "0xb92fe925dc43a0ecde6c8b1a2709c170ec4fff4f", - "value": "0x304d2d3239eca2" - }, - "type": "incoming", - "verifiedOnBlockchain": false - }, - { - "actionId": "1776375343140.5833", - "baseFeePerGas": "0x1d0ad95", - "blockTimestamp": "0x69e15630", - "chainId": "0xa86a", - "defaultGasEstimates": { - "estimateType": "medium", - "gas": "0xdbb0", - "maxFeePerGas": "0x5be1c9e2", - "maxPriorityFeePerGas": "0x59682f00" - }, - "gasFeeEstimates": { - "high": { - "maxFeePerGas": "0x7a53737b", - "maxPriorityFeePerGas": "0x77359400" - }, - "low": { - "maxFeePerGas": "0x3d702048", - "maxPriorityFeePerGas": "0x3b9aca00" - }, - "medium": { - "maxFeePerGas": "0x5be1c9e2", - "maxPriorityFeePerGas": "0x59682f00" - }, - "type": "fee-market" - }, - "gasFeeEstimatesLoaded": true, - "gasLimitNoBuffer": "0xdbb0", - "hash": "0xdc14a79f7b195b493dbb5390d529c9aa043939887e6f8033524b22fe90efa6a6", - "id": "38af31b0-39dc-11f1-bcee-3727d90ba13b", - "isGasFeeTokenIgnoredIfBalance": false, - "networkClientId": "d6eb1507-ce8a-40d4-ba91-1e8231b1f2a3", - "origin": "metamask", - "r": "0xc0611cf3441b02f85a23fa9df37dce4264564dd642eef506e2acf86adff69171", - "rawTx": "0x02f8b182a86a808459682f00845be1c9e282dbb094b97ef9ef8734c71904d8002f8b6bc66dd9c48a6e80b844095ea7b30000000000000000000000001a1ec25dc08e98e5e93f1104b5e5cdd298707d310000000000000000000000000000000000000000000000000000000000c0b1d2c080a0c0611cf3441b02f85a23fa9df37dce4264564dd642eef506e2acf86adff69171a056a50849d9e45f028f1b19f7bab9f6071ff706810b88059157a809bd86d5ae9f", - "s": "0x56a50849d9e45f028f1b19f7bab9f6071ff706810b88059157a809bd86d5ae9f", - "status": "confirmed", - "submittedTime": 1776375343415, - "time": 1776375343179, - "txParams": { - "data": "0x095ea7b30000000000000000000000001a1ec25dc08e98e5e93f1104b5e5cdd298707d310000000000000000000000000000000000000000000000000000000000c0b1d2", - "from": "0x141d32a89a1e0a5ef360034a2f60a4b917c18838", - "gas": "0xdbb0", - "gasLimit": "0xdbb0", - "maxFeePerGas": "0x5be1c9e2", - "maxPriorityFeePerGas": "0x59682f00", - "nonce": "0x0", - "to": "0xb97ef9ef8734c71904d8002f8b6bc66dd9c48a6e", - "type": "0x2", - "value": "0x0" - }, - "txParamsOriginal": { - "data": "0x095ea7b30000000000000000000000001a1ec25dc08e98e5e93f1104b5e5cdd298707d310000000000000000000000000000000000000000000000000000000000c0b1d2", - "from": "0x141d32a89a1e0a5ef360034a2f60a4b917c18838", - "gas": "0xdbb0", - "gasLimit": "0x56240", - "maxFeePerGas": "0x5be1c9e2", - "maxPriorityFeePerGas": "0x59682f00", - "to": "0xb97ef9ef8734c71904d8002f8b6bc66dd9c48a6e", - "type": "0x2", - "value": "0x0" - }, - "txReceipt": { - "blockHash": "0xc8e069184c9a9e083b5b2d46f6734fb5f137d4e857000342af522de19a4fe422", - "blockNumber": "0x4f44d81", - "contractAddress": null, - "cumulativeGasUsed": "0xd88d", - "effectiveGasPrice": "0x5b38dc95", - "from": "0x141d32a89a1e0a5ef360034a2f60a4b917c18838", - "gasUsed": "0xd88d", - "logs": [ - { - "address": "0xb97ef9ef8734c71904d8002f8b6bc66dd9c48a6e", - "blockHash": "0xc8e069184c9a9e083b5b2d46f6734fb5f137d4e857000342af522de19a4fe422", - "blockNumber": "0x4f44d81", - "data": "0x0000000000000000000000000000000000000000000000000000000000c0b1d2", - "logIndex": "0x0", - "removed": false, - "topics": [ - "0x8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925", - "0x000000000000000000000000141d32a89a1e0a5ef360034a2f60a4b917c18838", - "0x0000000000000000000000001a1ec25dc08e98e5e93f1104b5e5cdd298707d31" - ], - "transactionHash": "0xdc14a79f7b195b493dbb5390d529c9aa043939887e6f8033524b22fe90efa6a6", - "transactionIndex": "0x0" - } - ], - "logsBloom": "0x00000000000000000000000000000001000000040000000000000000000000000000000000000000000000000000000000000000000000000000020000200000000000010000010000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001000000000800000000000001000010000000000000000000020000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000010000000000000000000000000000000000000000000000000000000000000", - "status": "0x1", - "to": "0xb97ef9ef8734c71904d8002f8b6bc66dd9c48a6e", - "transactionHash": "0xdc14a79f7b195b493dbb5390d529c9aa043939887e6f8033524b22fe90efa6a6", - "transactionIndex": "0x0", - "type": "0x2" - }, - "type": "swapApproval", - "userEditedGasLimit": false, - "userFeeLevel": "medium", - "v": "0x0", - "verifiedOnBlockchain": true - }, - { - "actionId": "1776375343417.1826", - "baseFeePerGas": "0x1d0ad95", - "blockTimestamp": "0x69e15630", - "chainId": "0xa86a", - "defaultGasEstimates": { - "estimateType": "medium", - "gas": "0xd7915", - "maxFeePerGas": "0x5be1c9e2", - "maxPriorityFeePerGas": "0x59682f00" - }, - "gasFeeEstimates": { - "high": { - "maxFeePerGas": "0x7a53737b", - "maxPriorityFeePerGas": "0x77359400" - }, - "low": { - "maxFeePerGas": "0x3d702048", - "maxPriorityFeePerGas": "0x3b9aca00" - }, - "medium": { - "maxFeePerGas": "0x5be1c9e2", - "maxPriorityFeePerGas": "0x59682f00" - }, - "type": "fee-market" - }, - "gasFeeEstimatesLoaded": true, - "gasLimitNoBuffer": "0xd7915", - "hash": "0x48a711af5af1500af1e2fe4911c94f482fbd2003be27422c6e39a4520695924a", - "id": "38d6b6e0-39dc-11f1-bcee-3727d90ba13b", - "isGasFeeTokenIgnoredIfBalance": false, - "networkClientId": "d6eb1507-ce8a-40d4-ba91-1e8231b1f2a3", - "origin": "metamask", - "postTxBalance": "0x14e2a15f4e83457e", - "preTxBalance": "0x2facbd5f203efc1", - "r": "0xcbabadc542f15708b7c11514f69db6c49c14344e86eed2b6288cd4f756e8e7a1", - "rawTx": "0x02f9103482a86a018459682f00845be1c9e2830d7915941a1ec25dc08e98e5e93f1104b5e5cdd298707d3180b90fc55f5755290000000000000000000000000000000000000000000000000000000000000080000000000000000000000000b97ef9ef8734c71904d8002f8b6bc66dd9c48a6e0000000000000000000000000000000000000000000000000000000000c0b1d200000000000000000000000000000000000000000000000000000000000000c000000000000000000000000000000000000000000000000000000000000000136b796265725377617046656544796e616d6963000000000000000000000000000000000000000000000000000000000000000000000000000000000000000ee0000000000000000000000000b97ef9ef8734c71904d8002f8b6bc66dd9c48a6e00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000bf02300000000000000000000000000000000000000000000000001191a5a61fb7f8980000000000000000000000000000000000000000000000000000000000000120000000000000000000000000000000000000000000000000000000000001afa2000000000000000000000000ef320f172714eab39ef6df6ee23a29d2467b6fbf00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000da4e21fd0e9000000000000000000000000000000000000000000000000000000000000002000000000000000000000000063242a4ea82847b20e506b63b0e2e2eff0cc6cb0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000a00000000000000000000000000000000000000000000000000000000000000a600000000000000000000000000000000000000000000000000000000000000ca000000000000000000000000000000000000000000000000000000000000009a000000000000000000000000000bf023000000000000000000000000000bf0230000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000000e000000000000000000000000000000000000000000000000000000000000000412210122a98dba052bb217d2c4a636d5b2e6ce9a61d2f8b22340bdcf3c99495ab484cc097e258e683244d728c48d80093c01a810037ff6d32f4b495f1ce8571671c0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000008a0000000000000000000000000c590175e458b83680867afd273527ff58f74c02b0000000000000000000000000000000000000000000000000000000000000140000000000000000000000000000000000000000000000000000000000000018000000000000000000000000000b5754700000000000000000000000000c88f1800000000000000000000000000bf0230000000000000000011ed6f8f6448c96e0000000000000000000000000000000000012cc5f496f20000000f42400000000000000000000000000000004f82e73edb06d29ff62c91ec8f5ff06571bdeb2900000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000069e15adc0000000000000000000000000000000000000000000000000000000000000880000000000000000000000000000000000000000000000000000000000000000161f598cd00000000000000003261c1bf28a7663c8ecccf14914a2c02ce17e566000000000000000000000000000000000000000000000000000000000000000500000000000000000000000000000000000000000000000000000000000000a0000000000000000000000000000000000000000000000000000000000000022000000000000000000000000000000000000000000000000000000000000003a000000000000000000000000000000000000000000000000000000000000005200000000000000000000000000000000000000000000000000000000000000660000000000000000000000000b97ef9ef8734c71904d8002f8b6bc66dd9c48a6e8000000000000000000000000000000c00000000000000000000000000bf02300000000000000000000000000000000000000000000000000000000000000060000000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000000000200000000000000000000000000000000000000000000000000000000000bf02303b9d6e0900000000000000015455c918e405a2831fbff8595c0aae35ee3db9d1000000000000000000000000000000000000000000000000000000000000008000000000000000000000000063242a4ea82847b20e506b63b0e2e2eff0cc6cb000000000000000000000000000000000000000000000000000000000000000400000000000000000000000001150403b19315615aad1638d9dd86cd866b2f456000000000000000000000000000000000000270ffdbe72847b89e899461529a80000000000000000000000009702230a8ea53601f5cd2dc00fdbc13d4df4a8c78000000000000000000000000000000c00000000000000000000000000bef2ed0000000000000000000000000000000000000000000000000000000000000060000000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000000000200000000000000000000000000000000000000000000000000000000000bef2ed6efd106f00000000000000020c3b706efa1da39450c968e669fdc442fc375021000000000000000000000000000000000000000000000000000000000000008000000000000000000000000063242a4ea82847b20e506b63b0e2e2eff0cc6cb000000000000000000000000000000000000000000000000000000000000000400000000000000000000000001abe428146795bc754170af24cfd78663f257d29000000000000000000000000ff120d460d67f1db5b71087bd404babb342b598700000000000000000000000049d5c2bdffac6ce2bfdb6640f4f80f226bc10bab8000000000000000000000013e6e606700000000000000000012fadfb68adb790000000000000000000000000000000000000000000000000000000000000060000000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000000000200000000000000000000000000000000000000000000000000012fadfb68adb793b9d6e0900000000000000035455c918e405a2831fbff8595c0aae35ee3db9d1000000000000000000000000000000000000000000000000000000000000008000000000000000000000000063242a4ea82847b20e506b63b0e2e2eff0cc6cb00000000000000000000000000000000000000000000000000000000000000040000000000000000000000000840c5f0167e3a335be0938916962c38c16b948df0000000000000000000000000000000000000000000000000000000100ad139d000000000000000000000000b31f66aa3c1e785363f0875a1b74e27b85fd66c780000000000000000000012cc5f496f2000000000000000011ed6f8f6448c96e00000000000000000000000000000000000000000000000000000000000000600000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000002000000000000000000000000000000000000000000000000011ed6f8f6448c96e0000000000000000000000040000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000008000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000eeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeee8000000000000000000000000000000100000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000b97ef9ef8734c71904d8002f8b6bc66dd9c48a6e000000000000000000000000eeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeee000000000000000000000000000000000000000000000000000000000000016000000000000000000000000000000000000000000000000000000000000001a000000000000000000000000000000000000000000000000000000000000001e00000000000000000000000000000000000000000000000000000000000000200000000000000000000000000c590175e458b83680867afd273527ff58f74c02b0000000000000000000000000000000000000000000000000000000000bf02300000000000000000000000000000000000000000000000001191a5a61fb7f89800000000000000000000000000000000000000000000000000000000000002000000000000000000000000000000000000000000000000000000000000000220000000000000000000000000000000000000000000000000000000000000000100000000000000000000000063242a4ea82847b20e506b63b0e2e2eff0cc6cb000000000000000000000000000000000000000000000000000000000000000010000000000000000000000000000000000000000000000000000000000bf023000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000b17b22536f75726365223a226d6574616d61736b222c22416d6f756e74496e555344223a2231322e343934363635222c22416d6f756e744f7574555344223a2231322e353031393836222c22416d6f756e744f7574223a2231323931383131333239373738363938363035222c22526f7574654944223a22663463316332306531784248424c31503a62356263653766334c6e5a4c495a7331222c2254696d657374616d70223a313737363337353334307d0000000000000000000000000000000000000000000000000000000000000000000000000000000000000078c001a0cbabadc542f15708b7c11514f69db6c49c14344e86eed2b6288cd4f756e8e7a1a009408178fac4c6755f35256b809e19756b9ba88103515af09c84000a5aee1a7f", - "s": "0x9408178fac4c6755f35256b809e19756b9ba88103515af09c84000a5aee1a7f", - "status": "confirmed", - "submittedTime": 1776375343730, - "time": 1776375343438, - "txParams": { - "data": "0x5f5755290000000000000000000000000000000000000000000000000000000000000080000000000000000000000000b97ef9ef8734c71904d8002f8b6bc66dd9c48a6e0000000000000000000000000000000000000000000000000000000000c0b1d200000000000000000000000000000000000000000000000000000000000000c000000000000000000000000000000000000000000000000000000000000000136b796265725377617046656544796e616d6963000000000000000000000000000000000000000000000000000000000000000000000000000000000000000ee0000000000000000000000000b97ef9ef8734c71904d8002f8b6bc66dd9c48a6e00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000bf02300000000000000000000000000000000000000000000000001191a5a61fb7f8980000000000000000000000000000000000000000000000000000000000000120000000000000000000000000000000000000000000000000000000000001afa2000000000000000000000000ef320f172714eab39ef6df6ee23a29d2467b6fbf00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000da4e21fd0e9000000000000000000000000000000000000000000000000000000000000002000000000000000000000000063242a4ea82847b20e506b63b0e2e2eff0cc6cb0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000a00000000000000000000000000000000000000000000000000000000000000a600000000000000000000000000000000000000000000000000000000000000ca000000000000000000000000000000000000000000000000000000000000009a000000000000000000000000000bf023000000000000000000000000000bf0230000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000000e000000000000000000000000000000000000000000000000000000000000000412210122a98dba052bb217d2c4a636d5b2e6ce9a61d2f8b22340bdcf3c99495ab484cc097e258e683244d728c48d80093c01a810037ff6d32f4b495f1ce8571671c0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000008a0000000000000000000000000c590175e458b83680867afd273527ff58f74c02b0000000000000000000000000000000000000000000000000000000000000140000000000000000000000000000000000000000000000000000000000000018000000000000000000000000000b5754700000000000000000000000000c88f1800000000000000000000000000bf0230000000000000000011ed6f8f6448c96e0000000000000000000000000000000000012cc5f496f20000000f42400000000000000000000000000000004f82e73edb06d29ff62c91ec8f5ff06571bdeb2900000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000069e15adc0000000000000000000000000000000000000000000000000000000000000880000000000000000000000000000000000000000000000000000000000000000161f598cd00000000000000003261c1bf28a7663c8ecccf14914a2c02ce17e566000000000000000000000000000000000000000000000000000000000000000500000000000000000000000000000000000000000000000000000000000000a0000000000000000000000000000000000000000000000000000000000000022000000000000000000000000000000000000000000000000000000000000003a000000000000000000000000000000000000000000000000000000000000005200000000000000000000000000000000000000000000000000000000000000660000000000000000000000000b97ef9ef8734c71904d8002f8b6bc66dd9c48a6e8000000000000000000000000000000c00000000000000000000000000bf02300000000000000000000000000000000000000000000000000000000000000060000000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000000000200000000000000000000000000000000000000000000000000000000000bf02303b9d6e0900000000000000015455c918e405a2831fbff8595c0aae35ee3db9d1000000000000000000000000000000000000000000000000000000000000008000000000000000000000000063242a4ea82847b20e506b63b0e2e2eff0cc6cb000000000000000000000000000000000000000000000000000000000000000400000000000000000000000001150403b19315615aad1638d9dd86cd866b2f456000000000000000000000000000000000000270ffdbe72847b89e899461529a80000000000000000000000009702230a8ea53601f5cd2dc00fdbc13d4df4a8c78000000000000000000000000000000c00000000000000000000000000bef2ed0000000000000000000000000000000000000000000000000000000000000060000000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000000000200000000000000000000000000000000000000000000000000000000000bef2ed6efd106f00000000000000020c3b706efa1da39450c968e669fdc442fc375021000000000000000000000000000000000000000000000000000000000000008000000000000000000000000063242a4ea82847b20e506b63b0e2e2eff0cc6cb000000000000000000000000000000000000000000000000000000000000000400000000000000000000000001abe428146795bc754170af24cfd78663f257d29000000000000000000000000ff120d460d67f1db5b71087bd404babb342b598700000000000000000000000049d5c2bdffac6ce2bfdb6640f4f80f226bc10bab8000000000000000000000013e6e606700000000000000000012fadfb68adb790000000000000000000000000000000000000000000000000000000000000060000000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000000000200000000000000000000000000000000000000000000000000012fadfb68adb793b9d6e0900000000000000035455c918e405a2831fbff8595c0aae35ee3db9d1000000000000000000000000000000000000000000000000000000000000008000000000000000000000000063242a4ea82847b20e506b63b0e2e2eff0cc6cb00000000000000000000000000000000000000000000000000000000000000040000000000000000000000000840c5f0167e3a335be0938916962c38c16b948df0000000000000000000000000000000000000000000000000000000100ad139d000000000000000000000000b31f66aa3c1e785363f0875a1b74e27b85fd66c780000000000000000000012cc5f496f2000000000000000011ed6f8f6448c96e00000000000000000000000000000000000000000000000000000000000000600000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000002000000000000000000000000000000000000000000000000011ed6f8f6448c96e0000000000000000000000040000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000008000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000eeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeee8000000000000000000000000000000100000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000b97ef9ef8734c71904d8002f8b6bc66dd9c48a6e000000000000000000000000eeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeee000000000000000000000000000000000000000000000000000000000000016000000000000000000000000000000000000000000000000000000000000001a000000000000000000000000000000000000000000000000000000000000001e00000000000000000000000000000000000000000000000000000000000000200000000000000000000000000c590175e458b83680867afd273527ff58f74c02b0000000000000000000000000000000000000000000000000000000000bf02300000000000000000000000000000000000000000000000001191a5a61fb7f89800000000000000000000000000000000000000000000000000000000000002000000000000000000000000000000000000000000000000000000000000000220000000000000000000000000000000000000000000000000000000000000000100000000000000000000000063242a4ea82847b20e506b63b0e2e2eff0cc6cb000000000000000000000000000000000000000000000000000000000000000010000000000000000000000000000000000000000000000000000000000bf023000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000b17b22536f75726365223a226d6574616d61736b222c22416d6f756e74496e555344223a2231322e343934363635222c22416d6f756e744f7574555344223a2231322e353031393836222c22416d6f756e744f7574223a2231323931383131333239373738363938363035222c22526f7574654944223a22663463316332306531784248424c31503a62356263653766334c6e5a4c495a7331222c2254696d657374616d70223a313737363337353334307d0000000000000000000000000000000000000000000000000000000000000000000000000000000000000078", - "from": "0x141d32a89a1e0a5ef360034a2f60a4b917c18838", - "gas": "0xd7915", - "gasLimit": "0xd7915", - "maxFeePerGas": "0x5be1c9e2", - "maxPriorityFeePerGas": "0x59682f00", - "nonce": "0x1", - "to": "0x1a1ec25dc08e98e5e93f1104b5e5cdd298707d31", - "type": "0x2", - "value": "0x0" - }, - "txParamsOriginal": { - "data": "0x5f5755290000000000000000000000000000000000000000000000000000000000000080000000000000000000000000b97ef9ef8734c71904d8002f8b6bc66dd9c48a6e0000000000000000000000000000000000000000000000000000000000c0b1d200000000000000000000000000000000000000000000000000000000000000c000000000000000000000000000000000000000000000000000000000000000136b796265725377617046656544796e616d6963000000000000000000000000000000000000000000000000000000000000000000000000000000000000000ee0000000000000000000000000b97ef9ef8734c71904d8002f8b6bc66dd9c48a6e00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000bf02300000000000000000000000000000000000000000000000001191a5a61fb7f8980000000000000000000000000000000000000000000000000000000000000120000000000000000000000000000000000000000000000000000000000001afa2000000000000000000000000ef320f172714eab39ef6df6ee23a29d2467b6fbf00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000da4e21fd0e9000000000000000000000000000000000000000000000000000000000000002000000000000000000000000063242a4ea82847b20e506b63b0e2e2eff0cc6cb0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000a00000000000000000000000000000000000000000000000000000000000000a600000000000000000000000000000000000000000000000000000000000000ca000000000000000000000000000000000000000000000000000000000000009a000000000000000000000000000bf023000000000000000000000000000bf0230000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000000e000000000000000000000000000000000000000000000000000000000000000412210122a98dba052bb217d2c4a636d5b2e6ce9a61d2f8b22340bdcf3c99495ab484cc097e258e683244d728c48d80093c01a810037ff6d32f4b495f1ce8571671c0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000008a0000000000000000000000000c590175e458b83680867afd273527ff58f74c02b0000000000000000000000000000000000000000000000000000000000000140000000000000000000000000000000000000000000000000000000000000018000000000000000000000000000b5754700000000000000000000000000c88f1800000000000000000000000000bf0230000000000000000011ed6f8f6448c96e0000000000000000000000000000000000012cc5f496f20000000f42400000000000000000000000000000004f82e73edb06d29ff62c91ec8f5ff06571bdeb2900000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000069e15adc0000000000000000000000000000000000000000000000000000000000000880000000000000000000000000000000000000000000000000000000000000000161f598cd00000000000000003261c1bf28a7663c8ecccf14914a2c02ce17e566000000000000000000000000000000000000000000000000000000000000000500000000000000000000000000000000000000000000000000000000000000a0000000000000000000000000000000000000000000000000000000000000022000000000000000000000000000000000000000000000000000000000000003a000000000000000000000000000000000000000000000000000000000000005200000000000000000000000000000000000000000000000000000000000000660000000000000000000000000b97ef9ef8734c71904d8002f8b6bc66dd9c48a6e8000000000000000000000000000000c00000000000000000000000000bf02300000000000000000000000000000000000000000000000000000000000000060000000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000000000200000000000000000000000000000000000000000000000000000000000bf02303b9d6e0900000000000000015455c918e405a2831fbff8595c0aae35ee3db9d1000000000000000000000000000000000000000000000000000000000000008000000000000000000000000063242a4ea82847b20e506b63b0e2e2eff0cc6cb000000000000000000000000000000000000000000000000000000000000000400000000000000000000000001150403b19315615aad1638d9dd86cd866b2f456000000000000000000000000000000000000270ffdbe72847b89e899461529a80000000000000000000000009702230a8ea53601f5cd2dc00fdbc13d4df4a8c78000000000000000000000000000000c00000000000000000000000000bef2ed0000000000000000000000000000000000000000000000000000000000000060000000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000000000200000000000000000000000000000000000000000000000000000000000bef2ed6efd106f00000000000000020c3b706efa1da39450c968e669fdc442fc375021000000000000000000000000000000000000000000000000000000000000008000000000000000000000000063242a4ea82847b20e506b63b0e2e2eff0cc6cb000000000000000000000000000000000000000000000000000000000000000400000000000000000000000001abe428146795bc754170af24cfd78663f257d29000000000000000000000000ff120d460d67f1db5b71087bd404babb342b598700000000000000000000000049d5c2bdffac6ce2bfdb6640f4f80f226bc10bab8000000000000000000000013e6e606700000000000000000012fadfb68adb790000000000000000000000000000000000000000000000000000000000000060000000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000000000200000000000000000000000000000000000000000000000000012fadfb68adb793b9d6e0900000000000000035455c918e405a2831fbff8595c0aae35ee3db9d1000000000000000000000000000000000000000000000000000000000000008000000000000000000000000063242a4ea82847b20e506b63b0e2e2eff0cc6cb00000000000000000000000000000000000000000000000000000000000000040000000000000000000000000840c5f0167e3a335be0938916962c38c16b948df0000000000000000000000000000000000000000000000000000000100ad139d000000000000000000000000b31f66aa3c1e785363f0875a1b74e27b85fd66c780000000000000000000012cc5f496f2000000000000000011ed6f8f6448c96e00000000000000000000000000000000000000000000000000000000000000600000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000002000000000000000000000000000000000000000000000000011ed6f8f6448c96e0000000000000000000000040000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000008000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000eeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeee8000000000000000000000000000000100000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000b97ef9ef8734c71904d8002f8b6bc66dd9c48a6e000000000000000000000000eeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeee000000000000000000000000000000000000000000000000000000000000016000000000000000000000000000000000000000000000000000000000000001a000000000000000000000000000000000000000000000000000000000000001e00000000000000000000000000000000000000000000000000000000000000200000000000000000000000000c590175e458b83680867afd273527ff58f74c02b0000000000000000000000000000000000000000000000000000000000bf02300000000000000000000000000000000000000000000000001191a5a61fb7f89800000000000000000000000000000000000000000000000000000000000002000000000000000000000000000000000000000000000000000000000000000220000000000000000000000000000000000000000000000000000000000000000100000000000000000000000063242a4ea82847b20e506b63b0e2e2eff0cc6cb000000000000000000000000000000000000000000000000000000000000000010000000000000000000000000000000000000000000000000000000000bf023000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000b17b22536f75726365223a226d6574616d61736b222c22416d6f756e74496e555344223a2231322e343934363635222c22416d6f756e744f7574555344223a2231322e353031393836222c22416d6f756e744f7574223a2231323931383131333239373738363938363035222c22526f7574654944223a22663463316332306531784248424c31503a62356263653766334c6e5a4c495a7331222c2254696d657374616d70223a313737363337353334307d0000000000000000000000000000000000000000000000000000000000000000000000000000000000000078", - "from": "0x141d32a89a1e0a5ef360034a2f60a4b917c18838", - "gas": "0xd7915", - "gasLimit": "0x882965", - "maxFeePerGas": "0x5be1c9e2", - "maxPriorityFeePerGas": "0x59682f00", - "to": "0x1a1ec25dc08e98e5e93f1104b5e5cdd298707d31", - "type": "0x2", - "value": "0x0" - }, - "txReceipt": { - "blockHash": "0xc8e069184c9a9e083b5b2d46f6734fb5f137d4e857000342af522de19a4fe422", - "blockNumber": "0x4f44d81", - "contractAddress": null, - "cumulativeGasUsed": "0x9958b", - "effectiveGasPrice": "0x5b38dc95", - "from": "0x141d32a89a1e0a5ef360034a2f60a4b917c18838", - "gasUsed": "0x8bcfe", - "logs": [ - { - "address": "0xb97ef9ef8734c71904d8002f8b6bc66dd9c48a6e", - "blockHash": "0xc8e069184c9a9e083b5b2d46f6734fb5f137d4e857000342af522de19a4fe422", - "blockNumber": "0x4f44d81", - "data": "0x0000000000000000000000000000000000000000000000000000000000c0b1d2", - "logIndex": "0x1", - "removed": false, - "topics": [ - "0xddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef", - "0x000000000000000000000000141d32a89a1e0a5ef360034a2f60a4b917c18838", - "0x000000000000000000000000c590175e458b83680867afd273527ff58f74c02b" - ], - "transactionHash": "0x48a711af5af1500af1e2fe4911c94f482fbd2003be27422c6e39a4520695924a", - "transactionIndex": "0x1" - }, - { - "address": "0xb97ef9ef8734c71904d8002f8b6bc66dd9c48a6e", - "blockHash": "0xc8e069184c9a9e083b5b2d46f6734fb5f137d4e857000342af522de19a4fe422", - "blockNumber": "0x4f44d81", - "data": "0x0000000000000000000000000000000000000000000000000000000000bf0230", - "logIndex": "0x2", - "removed": false, - "topics": [ - "0xddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef", - "0x000000000000000000000000c590175e458b83680867afd273527ff58f74c02b", - "0x00000000000000000000000063242a4ea82847b20e506b63b0e2e2eff0cc6cb0" - ], - "transactionHash": "0x48a711af5af1500af1e2fe4911c94f482fbd2003be27422c6e39a4520695924a", - "transactionIndex": "0x1" - }, - { - "address": "0x9702230a8ea53601f5cd2dc00fdbc13d4df4a8c7", - "blockHash": "0xc8e069184c9a9e083b5b2d46f6734fb5f137d4e857000342af522de19a4fe422", - "blockNumber": "0x4f44d81", - "data": "0x0000000000000000000000000000000000000000000000000000000000bef1f3", - "logIndex": "0x3", - "removed": false, - "topics": [ - "0xddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef", - "0x0000000000000000000000001150403b19315615aad1638d9dd86cd866b2f456", - "0x00000000000000000000000063242a4ea82847b20e506b63b0e2e2eff0cc6cb0" - ], - "transactionHash": "0x48a711af5af1500af1e2fe4911c94f482fbd2003be27422c6e39a4520695924a", - "transactionIndex": "0x1" - }, - { - "address": "0xb97ef9ef8734c71904d8002f8b6bc66dd9c48a6e", - "blockHash": "0xc8e069184c9a9e083b5b2d46f6734fb5f137d4e857000342af522de19a4fe422", - "blockNumber": "0x4f44d81", - "data": "0x0000000000000000000000000000000000000000000000000000000000bf0230", - "logIndex": "0x4", - "removed": false, - "topics": [ - "0xddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef", - "0x00000000000000000000000063242a4ea82847b20e506b63b0e2e2eff0cc6cb0", - "0x0000000000000000000000001150403b19315615aad1638d9dd86cd866b2f456" - ], - "transactionHash": "0x48a711af5af1500af1e2fe4911c94f482fbd2003be27422c6e39a4520695924a", - "transactionIndex": "0x1" - }, - { - "address": "0x1150403b19315615aad1638d9dd86cd866b2f456", - "blockHash": "0xc8e069184c9a9e083b5b2d46f6734fb5f137d4e857000342af522de19a4fe422", - "blockNumber": "0x4f44d81", - "data": "0xffffffffffffffffffffffffffffffffffffffffffffffffffffffffff410e0d0000000000000000000000000000000000000000000000000000000000bf023000000000000000000000000000000000000000010009e617418480a7bbb1834d00000000000000000000000000000000000000000000000000045f377b53b9000000000000000000000000000000000000000000000000000000000000000003", - "logIndex": "0x5", - "removed": false, - "topics": [ - "0xc42079f94a6350d7e6235f29174924f928cc2ac818eb64fed8004e115fbcca67", - "0x00000000000000000000000063242a4ea82847b20e506b63b0e2e2eff0cc6cb0", - "0x00000000000000000000000063242a4ea82847b20e506b63b0e2e2eff0cc6cb0" - ], - "transactionHash": "0x48a711af5af1500af1e2fe4911c94f482fbd2003be27422c6e39a4520695924a", - "transactionIndex": "0x1" - }, - { - "address": "0x63242a4ea82847b20e506b63b0e2e2eff0cc6cb0", - "blockHash": "0xc8e069184c9a9e083b5b2d46f6734fb5f137d4e857000342af522de19a4fe422", - "blockNumber": "0x4f44d81", - "data": "0x0000000000000000000000001150403b19315615aad1638d9dd86cd866b2f456000000000000000000000000b97ef9ef8734c71904d8002f8b6bc66dd9c48a6e0000000000000000000000009702230a8ea53601f5cd2dc00fdbc13d4df4a8c70000000000000000000000000000000000000000000000000000000000bf02300000000000000000000000000000000000000000000000000000000000bef1f3", - "logIndex": "0x6", - "removed": false, - "topics": [ - "0xa6fee24309b1d83d9ec7b9e4dbb73c6f882746efbfb26db7b7d9e9f2fb6dc95a" - ], - "transactionHash": "0x48a711af5af1500af1e2fe4911c94f482fbd2003be27422c6e39a4520695924a", - "transactionIndex": "0x1" - }, - { - "address": "0x49d5c2bdffac6ce2bfdb6640f4f80f226bc10bab", - "blockHash": "0xc8e069184c9a9e083b5b2d46f6734fb5f137d4e857000342af522de19a4fe422", - "blockNumber": "0x4f44d81", - "data": "0x0000000000000000000000000000000000000000000000000012fac6f03e3ae6", - "logIndex": "0x7", - "removed": false, - "topics": [ - "0xddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef", - "0x0000000000000000000000001abe428146795bc754170af24cfd78663f257d29", - "0x00000000000000000000000063242a4ea82847b20e506b63b0e2e2eff0cc6cb0" - ], - "transactionHash": "0x48a711af5af1500af1e2fe4911c94f482fbd2003be27422c6e39a4520695924a", - "transactionIndex": "0x1" - }, - { - "address": "0x9702230a8ea53601f5cd2dc00fdbc13d4df4a8c7", - "blockHash": "0xc8e069184c9a9e083b5b2d46f6734fb5f137d4e857000342af522de19a4fe422", - "blockNumber": "0x4f44d81", - "data": "0x0000000000000000000000000000000000000000000000000000000000bef1f3", - "logIndex": "0x8", - "removed": false, - "topics": [ - "0xddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef", - "0x00000000000000000000000063242a4ea82847b20e506b63b0e2e2eff0cc6cb0", - "0x0000000000000000000000001abe428146795bc754170af24cfd78663f257d29" - ], - "transactionHash": "0x48a711af5af1500af1e2fe4911c94f482fbd2003be27422c6e39a4520695924a", - "transactionIndex": "0x1" - }, - { - "address": "0x9702230a8ea53601f5cd2dc00fdbc13d4df4a8c7", - "blockHash": "0xc8e069184c9a9e083b5b2d46f6734fb5f137d4e857000342af522de19a4fe422", - "blockNumber": "0x4f44d81", - "data": "0x00000000000000000000000000000000000000000000000000000000000030e2", - "logIndex": "0x9", - "removed": false, - "topics": [ - "0xddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef", - "0x0000000000000000000000001abe428146795bc754170af24cfd78663f257d29", - "0x0000000000000000000000009baad5311cd37c46c6448eb980843487709e6457" - ], - "transactionHash": "0x48a711af5af1500af1e2fe4911c94f482fbd2003be27422c6e39a4520695924a", - "transactionIndex": "0x1" - }, - { - "address": "0x1abe428146795bc754170af24cfd78663f257d29", - "blockHash": "0xc8e069184c9a9e083b5b2d46f6734fb5f137d4e857000342af522de19a4fe422", - "blockNumber": "0x4f44d81", - "data": "0x00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", - "logIndex": "0xa", - "removed": false, - "topics": [ - "0x9443903d84c9719611bd4bba871daaf18a3950d00d5d78b1a2fa701f76df54ff", - "0x00000000000000000000000063242a4ea82847b20e506b63b0e2e2eff0cc6cb0" - ], - "transactionHash": "0x48a711af5af1500af1e2fe4911c94f482fbd2003be27422c6e39a4520695924a", - "transactionIndex": "0x1" - }, - { - "address": "0x1abe428146795bc754170af24cfd78663f257d29", - "blockHash": "0xc8e069184c9a9e083b5b2d46f6734fb5f137d4e857000342af522de19a4fe422", - "blockNumber": "0x4f44d81", - "data": "0xffffffffffffffffffffffffffffffffffffffffffffffffffed05390fc1c51a0000000000000000000000000000000000000000000000000000000000bef1f3000000000000000000000000000000000000000000032b96d53169ad26ed959c0000000000000000000000000000000000000000000000000047be882c49ce3ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffcf7ab", - "logIndex": "0xb", - "removed": false, - "topics": [ - "0xc42079f94a6350d7e6235f29174924f928cc2ac818eb64fed8004e115fbcca67", - "0x00000000000000000000000063242a4ea82847b20e506b63b0e2e2eff0cc6cb0", - "0x00000000000000000000000063242a4ea82847b20e506b63b0e2e2eff0cc6cb0" - ], - "transactionHash": "0x48a711af5af1500af1e2fe4911c94f482fbd2003be27422c6e39a4520695924a", - "transactionIndex": "0x1" - }, - { - "address": "0x63242a4ea82847b20e506b63b0e2e2eff0cc6cb0", - "blockHash": "0xc8e069184c9a9e083b5b2d46f6734fb5f137d4e857000342af522de19a4fe422", - "blockNumber": "0x4f44d81", - "data": "0x0000000000000000000000001abe428146795bc754170af24cfd78663f257d290000000000000000000000009702230a8ea53601f5cd2dc00fdbc13d4df4a8c700000000000000000000000049d5c2bdffac6ce2bfdb6640f4f80f226bc10bab0000000000000000000000000000000000000000000000000000000000bef1f30000000000000000000000000000000000000000000000000012fac6f03e3ae6", - "logIndex": "0xc", - "removed": false, - "topics": [ - "0xa6fee24309b1d83d9ec7b9e4dbb73c6f882746efbfb26db7b7d9e9f2fb6dc95a" - ], - "transactionHash": "0x48a711af5af1500af1e2fe4911c94f482fbd2003be27422c6e39a4520695924a", - "transactionIndex": "0x1" - }, - { - "address": "0xb31f66aa3c1e785363f0875a1b74e27b85fd66c7", - "blockHash": "0xc8e069184c9a9e083b5b2d46f6734fb5f137d4e857000342af522de19a4fe422", - "blockNumber": "0x4f44d81", - "data": "0x00000000000000000000000000000000000000000000000011eb3fd2bdfed3a4", - "logIndex": "0xd", - "removed": false, - "topics": [ - "0xddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef", - "0x000000000000000000000000840c5f0167e3a335be0938916962c38c16b948df", - "0x00000000000000000000000063242a4ea82847b20e506b63b0e2e2eff0cc6cb0" - ], - "transactionHash": "0x48a711af5af1500af1e2fe4911c94f482fbd2003be27422c6e39a4520695924a", - "transactionIndex": "0x1" - }, - { - "address": "0x49d5c2bdffac6ce2bfdb6640f4f80f226bc10bab", - "blockHash": "0xc8e069184c9a9e083b5b2d46f6734fb5f137d4e857000342af522de19a4fe422", - "blockNumber": "0x4f44d81", - "data": "0x0000000000000000000000000000000000000000000000000012fac6f03e3ae6", - "logIndex": "0xe", - "removed": false, - "topics": [ - "0xddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef", - "0x00000000000000000000000063242a4ea82847b20e506b63b0e2e2eff0cc6cb0", - "0x000000000000000000000000840c5f0167e3a335be0938916962c38c16b948df" - ], - "transactionHash": "0x48a711af5af1500af1e2fe4911c94f482fbd2003be27422c6e39a4520695924a", - "transactionIndex": "0x1" - }, - { - "address": "0x840c5f0167e3a335be0938916962c38c16b948df", - "blockHash": "0xc8e069184c9a9e083b5b2d46f6734fb5f137d4e857000342af522de19a4fe422", - "blockNumber": "0x4f44d81", - "data": "0x0000000000000000000000000000000000000000000000000012fac6f03e3ae6ffffffffffffffffffffffffffffffffffffffffffffffffee14c02d42012c5c000000000000000000000000000000000000000f8c75a208f0f7598d48ad27c700000000000000000000000000000000000000000000003f52a82e3b88e0cfe2000000000000000000000000000000000000000000000000000000000000d662", - "logIndex": "0xf", - "removed": false, - "topics": [ - "0xc42079f94a6350d7e6235f29174924f928cc2ac818eb64fed8004e115fbcca67", - "0x00000000000000000000000063242a4ea82847b20e506b63b0e2e2eff0cc6cb0", - "0x00000000000000000000000063242a4ea82847b20e506b63b0e2e2eff0cc6cb0" - ], - "transactionHash": "0x48a711af5af1500af1e2fe4911c94f482fbd2003be27422c6e39a4520695924a", - "transactionIndex": "0x1" - }, - { - "address": "0x63242a4ea82847b20e506b63b0e2e2eff0cc6cb0", - "blockHash": "0xc8e069184c9a9e083b5b2d46f6734fb5f137d4e857000342af522de19a4fe422", - "blockNumber": "0x4f44d81", - "data": "0x000000000000000000000000840c5f0167e3a335be0938916962c38c16b948df00000000000000000000000049d5c2bdffac6ce2bfdb6640f4f80f226bc10bab000000000000000000000000b31f66aa3c1e785363f0875a1b74e27b85fd66c70000000000000000000000000000000000000000000000000012fac6f03e3ae600000000000000000000000000000000000000000000000011eb3fd2bdfed3a4", - "logIndex": "0x10", - "removed": false, - "topics": [ - "0xa6fee24309b1d83d9ec7b9e4dbb73c6f882746efbfb26db7b7d9e9f2fb6dc95a" - ], - "transactionHash": "0x48a711af5af1500af1e2fe4911c94f482fbd2003be27422c6e39a4520695924a", - "transactionIndex": "0x1" - }, - { - "address": "0xb31f66aa3c1e785363f0875a1b74e27b85fd66c7", - "blockHash": "0xc8e069184c9a9e083b5b2d46f6734fb5f137d4e857000342af522de19a4fe422", - "blockNumber": "0x4f44d81", - "data": "0x00000000000000000000000000000000000000000000000011eb3fd2bdfed3a4", - "logIndex": "0x11", - "removed": false, - "topics": [ - "0x7fcf532c15f0a6db0bd6d0e038bea71d30d808c7d98cb3bf7268a95bf5081b65", - "0x00000000000000000000000063242a4ea82847b20e506b63b0e2e2eff0cc6cb0" - ], - "transactionHash": "0x48a711af5af1500af1e2fe4911c94f482fbd2003be27422c6e39a4520695924a", - "transactionIndex": "0x1" - }, - { - "address": "0x6131b5fae19ea4f9d964eac0408e4408b66337b5", - "blockHash": "0xc8e069184c9a9e083b5b2d46f6734fb5f137d4e857000342af522de19a4fe422", - "blockNumber": "0x4f44d81", - "data": "0x000000000000000000000000c590175e458b83680867afd273527ff58f74c02b000000000000000000000000b97ef9ef8734c71904d8002f8b6bc66dd9c48a6e000000000000000000000000eeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeee000000000000000000000000c590175e458b83680867afd273527ff58f74c02b0000000000000000000000000000000000000000000000000000000000bf023000000000000000000000000000000000000000000000000011eb3fd2bdfed3a4", - "logIndex": "0x12", - "removed": false, - "topics": [ - "0xd6d4f5681c246c9f42c203e287975af1601f8df8035a9251f79aab5c8f09e2f8" - ], - "transactionHash": "0x48a711af5af1500af1e2fe4911c94f482fbd2003be27422c6e39a4520695924a", - "transactionIndex": "0x1" - }, - { - "address": "0x6131b5fae19ea4f9d964eac0408e4408b66337b5", - "blockHash": "0xc8e069184c9a9e083b5b2d46f6734fb5f137d4e857000342af522de19a4fe422", - "blockNumber": "0x4f44d81", - "data": "0x00000000000000000000000063242a4ea82847b20e506b63b0e2e2eff0cc6cb000000000000000000000000000000000000000000000000011eb3fd2bdfed3a4000000000000000000000000b31f66aa3c1e785363f0875a1b74e27b85fd66c7", - "logIndex": "0x13", - "removed": false, - "topics": [ - "0xddac40937f35385a34f721af292e5a83fc5b840f722bff57c2fc71adba708c48" - ], - "transactionHash": "0x48a711af5af1500af1e2fe4911c94f482fbd2003be27422c6e39a4520695924a", - "transactionIndex": "0x1" - }, - { - "address": "0x6131b5fae19ea4f9d964eac0408e4408b66337b5", - "blockHash": "0xc8e069184c9a9e083b5b2d46f6734fb5f137d4e857000342af522de19a4fe422", - "blockNumber": "0x4f44d81", - "data": "0x000000000000000000000000000000000000000000000000000000000000002000000000000000000000000000000000000000000000000000000000000000b17b22536f75726365223a226d6574616d61736b222c22416d6f756e74496e555344223a2231322e343934363635222c22416d6f756e744f7574555344223a2231322e353031393836222c22416d6f756e744f7574223a2231323931383131333239373738363938363035222c22526f7574654944223a22663463316332306531784248424c31503a62356263653766334c6e5a4c495a7331222c2254696d657374616d70223a313737363337353334307d000000000000000000000000000000", - "logIndex": "0x14", - "removed": false, - "topics": [ - "0x095e66fa4dd6a6f7b43fb8444a7bd0edb870508c7abf639bc216efb0bcff9779" - ], - "transactionHash": "0x48a711af5af1500af1e2fe4911c94f482fbd2003be27422c6e39a4520695924a", - "transactionIndex": "0x1" - }, - { - "address": "0xb97ef9ef8734c71904d8002f8b6bc66dd9c48a6e", - "blockHash": "0xc8e069184c9a9e083b5b2d46f6734fb5f137d4e857000342af522de19a4fe422", - "blockNumber": "0x4f44d81", - "data": "0x000000000000000000000000000000000000000000000000000000000001afa2", - "logIndex": "0x15", - "removed": false, - "topics": [ - "0xddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef", - "0x000000000000000000000000c590175e458b83680867afd273527ff58f74c02b", - "0x000000000000000000000000ef320f172714eab39ef6df6ee23a29d2467b6fbf" - ], - "transactionHash": "0x48a711af5af1500af1e2fe4911c94f482fbd2003be27422c6e39a4520695924a", - "transactionIndex": "0x1" - }, - { - "address": "0x1a1ec25dc08e98e5e93f1104b5e5cdd298707d31", - "blockHash": "0xc8e069184c9a9e083b5b2d46f6734fb5f137d4e857000342af522de19a4fe422", - "blockNumber": "0x4f44d81", - "data": "0x", - "logIndex": "0x16", - "removed": false, - "topics": [ - "0xbeee1e6e7fe307ddcf84b0a16137a4430ad5e2480fc4f4a8e250ab56ccd7630d", - "0xa06d1ebec95550faee235885bf6dd56b011479008896fbe07e1c3bf19fead10e", - "0x000000000000000000000000141d32a89a1e0a5ef360034a2f60a4b917c18838" - ], - "transactionHash": "0x48a711af5af1500af1e2fe4911c94f482fbd2003be27422c6e39a4520695924a", - "transactionIndex": "0x1" - } - ], - "logsBloom": "0x000000000100000000080040000000011000800400000a0860200000200000010200000000200000004010000000000004010400200060000008020000000000002080010000010800020008000000010000000002400100002000000020000800020000000008000000000080000000000000000080040000000010000a00000000000800001001000000010000008000000010000000020000000000000000000000000000000000000000000000000000400000000000004000002000208080000002000000000000000060601000000000000400000040000002001000000020000000000000000000000200000044008000010000020008200000002120", - "status": "0x1", - "to": "0x1a1ec25dc08e98e5e93f1104b5e5cdd298707d31", - "transactionHash": "0x48a711af5af1500af1e2fe4911c94f482fbd2003be27422c6e39a4520695924a", - "transactionIndex": "0x1", - "type": "0x2" - }, - "type": "swap", - "userEditedGasLimit": false, - "userFeeLevel": "medium", - "v": "0x1", - "verifiedOnBlockchain": true - }, - { - "actionId": "1778785382584.9138", - "baseFeePerGas": "0x3ac6e8f23a", - "blockTimestamp": "0x6a061c69", - "chainId": "0x89", - "defaultGasEstimates": { - "estimateType": "medium", - "gas": "0xe6cf", - "maxFeePerGas": "0x6cc007c3de", - "maxPriorityFeePerGas": "0x1ccc4c5980" - }, - "gasFeeEstimates": { - "high": { - "maxFeePerGas": "0x82ece1b904", - "maxPriorityFeePerGas": "0x1e3eb35900" - }, - "low": { - "maxFeePerGas": "0x4cbb8d64b7", - "maxPriorityFeePerGas": "0x118244f000" - }, - "medium": { - "maxFeePerGas": "0x6cc007c3de", - "maxPriorityFeePerGas": "0x1ccc4c5980" - }, - "type": "fee-market" - }, - "gasFeeEstimatesLoaded": true, - "gasLimitNoBuffer": "0xe6cf", - "hash": "0x88b9f974cf74422e0ea46099ba70819cfe157efd0c69cebb92038d891205b55b", - "id": "8821aab0-4fc7-11f1-8307-b914f900c1b6", - "isGasFeeTokenIgnoredIfBalance": false, - "networkClientId": "polygon-mainnet", - "origin": "metamask", - "r": "0xf3e80e476118b31d2c248f044281ea8e73210789a24293cfc9d3924861bb7b90", - "rawTx": "0x02f8b281895e851ccc4c5980856cc007c3de82e6cf94c2132d05d31c914a87c6611c10748aeb04b58e8f80b844095ea7b30000000000000000000000001a1ec25dc08e98e5e93f1104b5e5cdd298707d310000000000000000000000000000000000000000000000000000000000065676c001a0f3e80e476118b31d2c248f044281ea8e73210789a24293cfc9d3924861bb7b90a03726441d512e063c2ae3804ac6e99f1eb2bc874dcf0ed9c0665fa94579838e2e", - "s": "0x3726441d512e063c2ae3804ac6e99f1eb2bc874dcf0ed9c0665fa94579838e2e", - "status": "confirmed", - "submittedTime": 1778785382904, - "time": 1778785382619, - "txParams": { - "data": "0x095ea7b30000000000000000000000001a1ec25dc08e98e5e93f1104b5e5cdd298707d310000000000000000000000000000000000000000000000000000000000065676", - "from": "0x141d32a89a1e0a5ef360034a2f60a4b917c18838", - "gas": "0xe6cf", - "gasLimit": "0xe6cf", - "maxFeePerGas": "0x6cc007c3de", - "maxPriorityFeePerGas": "0x1ccc4c5980", - "nonce": "0x5e", - "to": "0xc2132d05d31c914a87c6611c10748aeb04b58e8f", - "type": "0x2", - "value": "0x0" - }, - "txReceipt": { - "blockHash": "0x175821d5c81c31d204072c5e22fd9b7d2d7571196dd1d034746668b4b0740fc8", - "blockNumber": "0x52dbbac", - "contractAddress": null, - "cumulativeGasUsed": "0x2af2568", - "effectiveGasPrice": "0x5793354bba", - "from": "0x141d32a89a1e0a5ef360034a2f60a4b917c18838", - "gasUsed": "0xc9c2", - "logs": [ - { - "address": "0xc2132d05d31c914a87c6611c10748aeb04b58e8f", - "blockHash": "0x175821d5c81c31d204072c5e22fd9b7d2d7571196dd1d034746668b4b0740fc8", - "blockNumber": "0x52dbbac", - "blockTimestamp": "0x6a061c69", - "data": "0x0000000000000000000000000000000000000000000000000000000000065676", - "logIndex": "0x786", - "removed": false, - "topics": [ - "0x8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925", - "0x000000000000000000000000141d32a89a1e0a5ef360034a2f60a4b917c18838", - "0x0000000000000000000000001a1ec25dc08e98e5e93f1104b5e5cdd298707d31" - ], - "transactionHash": "0x88b9f974cf74422e0ea46099ba70819cfe157efd0c69cebb92038d891205b55b", - "transactionIndex": "0x8b" - }, - { - "address": "0x0000000000000000000000000000000000001010", - "blockHash": "0x175821d5c81c31d204072c5e22fd9b7d2d7571196dd1d034746668b4b0740fc8", - "blockNumber": "0x52dbbac", - "blockTimestamp": "0x6a061c69", - "data": "0x0000000000000000000000000000000000000000000000000016b23ac421530000000000000000000000000000000000000000000000000001284d4f63ed21100000000000000000000000000000000000000000001125a8650a408f319ba14c00000000000000000000000000000000000000000000000001119b149fcbce100000000000000000000000000000000000000000001125a86520f2c9f5bcf44c", - "logIndex": "0x787", - "removed": false, - "topics": [ - "0x4dfe1bbbcf077ddc3e01291eea2d5c70c2b422b415d95645b9adcfd678cb1d63", - "0x0000000000000000000000000000000000000000000000000000000000001010", - "0x000000000000000000000000141d32a89a1e0a5ef360034a2f60a4b917c18838", - "0x0000000000000000000000007ee41d8a25641000661b1ef5e6ae8a00400466b0" - ], - "transactionHash": "0x88b9f974cf74422e0ea46099ba70819cfe157efd0c69cebb92038d891205b55b", - "transactionIndex": "0x8b" - } - ], - "logsBloom": "0x00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000100008000000000000000000000200000000000010000010000000000000000800000000000000000000100000000000000000000000000000000000000000000000000000000000080000000000000000000000000080001020000000c00000000000001000010000000000000000000220000000000000000000000000000000000000000000000000000000000004000000000000000000001000000000000400000400000000000100000000000000010000000000000000000000000000000000000000000000000000000100000", - "status": "0x1", - "to": "0xc2132d05d31c914a87c6611c10748aeb04b58e8f", - "transactionHash": "0x88b9f974cf74422e0ea46099ba70819cfe157efd0c69cebb92038d891205b55b", - "transactionIndex": "0x8b", - "type": "0x2" - }, - "type": "swapApproval", - "userEditedGasLimit": false, - "userFeeLevel": "medium", - "v": "0x1", - "verifiedOnBlockchain": true - }, - { - "actionId": "1778785382907.707", - "chainId": "0x89", - "defaultGasEstimates": { - "estimateType": "medium", - "gas": "0x68e7c", - "maxFeePerGas": "0x6af84067ef", - "maxPriorityFeePerGas": "0x1d242de880" - }, - "error": { - "message": "RPC submit: insufficient funds for gas * price + value: balance 83401596480594192, tx cost 197414041754462660, overshot 114012445273868468", - "name": "Error", - "stack": "Error: RPC submit: insufficient funds for gas * price + value: balance 83401596480594192, tx cost 197414041754462660, overshot 114012445273868468\n at TransactionController._TransactionController_publishTransaction (chrome-extension://hebhblbkkdabgoldnojllkipeoacjioc/js-node_modules_metamask_s.js:47207:15)\n at async chrome-extension://hebhblbkkdabgoldnojllkipeoacjioc/js-node_modules_metamask_s.js:47893:47\n at async TransactionController._TransactionController_defaultPublishHook (chrome-extension://hebhblbkkdabgoldnojllkipeoacjioc/js-node_modules_metamask_s.js:47886:5)\n at async TransactionController._TransactionController_approveTransaction (chrome-extension://hebhblbkkdabgoldnojllkipeoacjioc/js-node_modules_metamask_s.js:47157:43)\n at async TransactionController._TransactionController_processApproval (chrome-extension://hebhblbkkdabgoldnojllkipeoacjioc/js-node_modules_metamask_s.js:47021:40)\n at async waitForHashAndReturnFinalTxMeta (chrome-extension://hebhblbkkdabgoldnojllkipeoacjioc/js-node_modules_metamask_a.js:56074:20)\n at async addTransaction (chrome-extension://hebhblbkkdabgoldnojllkipeoacjioc/js-node_modules_metamask_a.js:56083:12)\n at async submitEvmTransaction (chrome-extension://hebhblbkkdabgoldnojllkipeoacjioc/js-node_modules_metamask_a.js:56295:12)\n at async handleSingleTx (chrome-extension://hebhblbkkdabgoldnojllkipeoacjioc/js-node_modules_metamask_a.js:33557:111)\n at async submitEvmHandler (chrome-extension://hebhblbkkdabgoldnojllkipeoacjioc/js-node_modules_metamask_a.js:33620:23)" - }, - "gasFeeEstimates": { - "high": { - "maxFeePerGas": "0x7f72a92e82", - "maxPriorityFeePerGas": "0x1d7116a100" - }, - "low": { - "maxFeePerGas": "0x4b28d7615b", - "maxPriorityFeePerGas": "0x118244f000" - }, - "medium": { - "maxFeePerGas": "0x6af84067ef", - "maxPriorityFeePerGas": "0x1d242de880" - }, - "type": "fee-market" - }, - "gasFeeEstimatesLoaded": true, - "gasLimitNoBuffer": "0x68e7c", - "id": "886dcee0-4fc7-11f1-8307-b914f900c1b6", - "isGasFeeTokenIgnoredIfBalance": false, - "networkClientId": "polygon-mainnet", - "origin": "metamask", - "r": "0xb92407b5c226d704e00efa33c5044b5124c013aa28b5f2a159dac334a2029f0c", - "rawTx": "0x02f9031581895f851d242de880856af84067ef83068e7c941a1ec25dc08e98e5e93f1104b5e5cdd298707d3180b902a55f5755290000000000000000000000000000000000000000000000000000000000000080000000000000000000000000c2132d05d31c914a87c6611c10748aeb04b58e8f000000000000000000000000000000000000000000000000000000000006567600000000000000000000000000000000000000000000000000000000000000c000000000000000000000000000000000000000000000000000000000000000136f6e65496e6368563646656544796e616d69630000000000000000000000000000000000000000000000000000000000000000000000000000000000000001c0000000000000000000000000c2132d05d31c914a87c6611c10748aeb04b58e8f0000000000000000000000002791bca1f2de4661ed88a30c99a7a9449aa8417400000000000000000000000000000000000000000000000000000000000656760000000000000000000000000000000000000000000000000000000000063d9200000000000000000000000000000000000000000000000000000000000001200000000000000000000000000000000000000000000000000000000000000e2c000000000000000000000000930dedddb92fef1b4ab2665d250877339f064eac0000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000008883800a8e000000000000000000000000c2132d05d31c914a87c6611c10748aeb04b58e8f00000000000000000000000000000000000000000000000000000000000656760000000000000000000000000000000000000000000000000000000000064bac08000000000000003b8b87c020bf018fddba3b352f3d913fe1c81b846fe0f4907dcbea7c000000000000000000000000000000000000000000000000f3c001a0b92407b5c226d704e00efa33c5044b5124c013aa28b5f2a159dac334a2029f0ca039fca812679cf16ce8fd24882fbdb6d6e5b04b7de20bf00f4a7ae834b6eed76c", - "s": "0x39fca812679cf16ce8fd24882fbdb6d6e5b04b7de20bf00f4a7ae834b6eed76c", - "status": "failed", - "time": 1778785383118, - "txParams": { - "data": "0x5f5755290000000000000000000000000000000000000000000000000000000000000080000000000000000000000000c2132d05d31c914a87c6611c10748aeb04b58e8f000000000000000000000000000000000000000000000000000000000006567600000000000000000000000000000000000000000000000000000000000000c000000000000000000000000000000000000000000000000000000000000000136f6e65496e6368563646656544796e616d69630000000000000000000000000000000000000000000000000000000000000000000000000000000000000001c0000000000000000000000000c2132d05d31c914a87c6611c10748aeb04b58e8f0000000000000000000000002791bca1f2de4661ed88a30c99a7a9449aa8417400000000000000000000000000000000000000000000000000000000000656760000000000000000000000000000000000000000000000000000000000063d9200000000000000000000000000000000000000000000000000000000000001200000000000000000000000000000000000000000000000000000000000000e2c000000000000000000000000930dedddb92fef1b4ab2665d250877339f064eac0000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000008883800a8e000000000000000000000000c2132d05d31c914a87c6611c10748aeb04b58e8f00000000000000000000000000000000000000000000000000000000000656760000000000000000000000000000000000000000000000000000000000064bac08000000000000003b8b87c020bf018fddba3b352f3d913fe1c81b846fe0f4907dcbea7c000000000000000000000000000000000000000000000000f3", - "from": "0x141d32a89a1e0a5ef360034a2f60a4b917c18838", - "gas": "0x68e7c", - "gasLimit": "0x68e7c", - "maxFeePerGas": "0x6af84067ef", - "maxPriorityFeePerGas": "0x1d242de880", - "nonce": "0x5f", - "to": "0x1a1ec25dc08e98e5e93f1104b5e5cdd298707d31", - "type": "0x2", - "value": "0x0" - }, - "type": "swap", - "userEditedGasLimit": false, - "userFeeLevel": "medium", - "v": "0x1", - "verifiedOnBlockchain": false - }, - { - "actionId": "1778785542034.9695", - "chainId": "0x89", - "defaultGasEstimates": { - "estimateType": "medium", - "gas": "0x68e7c", - "maxFeePerGas": "0x6211a13261", - "maxPriorityFeePerGas": "0x141c27b430" - }, - "error": { - "message": "RPC submit: insufficient funds for gas * price + value: balance 63974383933502492, tx cost 180987375513253116, overshot 117012991579750624", - "name": "Error", - "stack": "Error: RPC submit: insufficient funds for gas * price + value: balance 63974383933502492, tx cost 180987375513253116, overshot 117012991579750624\n at TransactionController._TransactionController_publishTransaction (chrome-extension://hebhblbkkdabgoldnojllkipeoacjioc/js-node_modules_metamask_s.js:47207:15)\n at async chrome-extension://hebhblbkkdabgoldnojllkipeoacjioc/js-node_modules_metamask_s.js:47893:47\n at async TransactionController._TransactionController_defaultPublishHook (chrome-extension://hebhblbkkdabgoldnojllkipeoacjioc/js-node_modules_metamask_s.js:47886:5)\n at async TransactionController._TransactionController_approveTransaction (chrome-extension://hebhblbkkdabgoldnojllkipeoacjioc/js-node_modules_metamask_s.js:47157:43)\n at async TransactionController._TransactionController_processApproval (chrome-extension://hebhblbkkdabgoldnojllkipeoacjioc/js-node_modules_metamask_s.js:47021:40)\n at async waitForHashAndReturnFinalTxMeta (chrome-extension://hebhblbkkdabgoldnojllkipeoacjioc/js-node_modules_metamask_a.js:56074:20)\n at async addTransaction (chrome-extension://hebhblbkkdabgoldnojllkipeoacjioc/js-node_modules_metamask_a.js:56083:12)\n at async submitEvmTransaction (chrome-extension://hebhblbkkdabgoldnojllkipeoacjioc/js-node_modules_metamask_a.js:56295:12)\n at async handleSingleTx (chrome-extension://hebhblbkkdabgoldnojllkipeoacjioc/js-node_modules_metamask_a.js:33557:111)\n at async submitEvmHandler (chrome-extension://hebhblbkkdabgoldnojllkipeoacjioc/js-node_modules_metamask_a.js:33620:23)" - }, - "gasFeeEstimates": { - "high": { - "maxFeePerGas": "0x767cdd0f5b", - "maxPriorityFeePerGas": "0x14513a9660" - }, - "low": { - "maxFeePerGas": "0x4d3c3f9106", - "maxPriorityFeePerGas": "0x137cef0da0" - }, - "medium": { - "maxFeePerGas": "0x6211a13261", - "maxPriorityFeePerGas": "0x141c27b430" - }, - "type": "fee-market" - }, - "gasFeeEstimatesLoaded": true, - "gasLimitNoBuffer": "0x68e7c", - "id": "e730fe70-4fc7-11f1-a036-6759fca0f8c4", - "isGasFeeTokenIgnoredIfBalance": false, - "networkClientId": "polygon-mainnet", - "origin": "metamask", - "r": "0x1fe9a070c2d16ed408bdcc23dbe30f98d6ad15c1a4a7017edbe128948814b35", - "rawTx": "0x02f9031581895f85141c27b430856211a1326183068e7c941a1ec25dc08e98e5e93f1104b5e5cdd298707d3180b902a55f5755290000000000000000000000000000000000000000000000000000000000000080000000000000000000000000c2132d05d31c914a87c6611c10748aeb04b58e8f000000000000000000000000000000000000000000000000000000000006567600000000000000000000000000000000000000000000000000000000000000c000000000000000000000000000000000000000000000000000000000000000136f6e65496e6368563646656544796e616d69630000000000000000000000000000000000000000000000000000000000000000000000000000000000000001c0000000000000000000000000c2132d05d31c914a87c6611c10748aeb04b58e8f0000000000000000000000002791bca1f2de4661ed88a30c99a7a9449aa8417400000000000000000000000000000000000000000000000000000000000656760000000000000000000000000000000000000000000000000000000000063d9200000000000000000000000000000000000000000000000000000000000001200000000000000000000000000000000000000000000000000000000000000e2c000000000000000000000000930dedddb92fef1b4ab2665d250877339f064eac0000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000008883800a8e000000000000000000000000c2132d05d31c914a87c6611c10748aeb04b58e8f00000000000000000000000000000000000000000000000000000000000656760000000000000000000000000000000000000000000000000000000000064bac08000000000000003b8b87c020bf018fddba3b352f3d913fe1c81b846fe0f4907dcbea7c000000000000000000000000000000000000000000000000f3c001a001fe9a070c2d16ed408bdcc23dbe30f98d6ad15c1a4a7017edbe128948814b35a06f822b9d1592cd38e16efaf2d6c2603cb54fbd15f81796cca6ef2b021e44ab5f", - "s": "0x6f822b9d1592cd38e16efaf2d6c2603cb54fbd15f81796cca6ef2b021e44ab5f", - "status": "failed", - "time": 1778785542103, - "txParams": { - "data": "0x5f5755290000000000000000000000000000000000000000000000000000000000000080000000000000000000000000c2132d05d31c914a87c6611c10748aeb04b58e8f000000000000000000000000000000000000000000000000000000000006567600000000000000000000000000000000000000000000000000000000000000c000000000000000000000000000000000000000000000000000000000000000136f6e65496e6368563646656544796e616d69630000000000000000000000000000000000000000000000000000000000000000000000000000000000000001c0000000000000000000000000c2132d05d31c914a87c6611c10748aeb04b58e8f0000000000000000000000002791bca1f2de4661ed88a30c99a7a9449aa8417400000000000000000000000000000000000000000000000000000000000656760000000000000000000000000000000000000000000000000000000000063d9200000000000000000000000000000000000000000000000000000000000001200000000000000000000000000000000000000000000000000000000000000e2c000000000000000000000000930dedddb92fef1b4ab2665d250877339f064eac0000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000008883800a8e000000000000000000000000c2132d05d31c914a87c6611c10748aeb04b58e8f00000000000000000000000000000000000000000000000000000000000656760000000000000000000000000000000000000000000000000000000000064bac08000000000000003b8b87c020bf018fddba3b352f3d913fe1c81b846fe0f4907dcbea7c000000000000000000000000000000000000000000000000f3", - "from": "0x141d32a89a1e0a5ef360034a2f60a4b917c18838", - "gas": "0x68e7c", - "gasLimit": "0x68e7c", - "maxFeePerGas": "0x6211a13261", - "maxPriorityFeePerGas": "0x141c27b430", - "nonce": "0x5f", - "to": "0x1a1ec25dc08e98e5e93f1104b5e5cdd298707d31", - "type": "0x2", - "value": "0x0" - }, - "type": "swap", - "userEditedGasLimit": false, - "userFeeLevel": "medium", - "v": "0x1", - "verifiedOnBlockchain": false - }, - { - "actionId": "1778785601332.0654", - "chainId": "0x89", - "defaultGasEstimates": { - "estimateType": "medium", - "gas": "0x68e7c", - "maxFeePerGas": "0x71ff103f7c", - "maxPriorityFeePerGas": "0x233db00080" - }, - "error": { - "message": "RPC submit: insufficient funds for gas * price + value: balance 63974383933502492, tx cost 210381740470798352, overshot 146407356537295860", - "name": "Error", - "stack": "Error: RPC submit: insufficient funds for gas * price + value: balance 63974383933502492, tx cost 210381740470798352, overshot 146407356537295860\n at TransactionController._TransactionController_publishTransaction (chrome-extension://hebhblbkkdabgoldnojllkipeoacjioc/js-node_modules_metamask_s.js:47207:15)\n at async chrome-extension://hebhblbkkdabgoldnojllkipeoacjioc/js-node_modules_metamask_s.js:47893:47\n at async TransactionController._TransactionController_defaultPublishHook (chrome-extension://hebhblbkkdabgoldnojllkipeoacjioc/js-node_modules_metamask_s.js:47886:5)\n at async TransactionController._TransactionController_approveTransaction (chrome-extension://hebhblbkkdabgoldnojllkipeoacjioc/js-node_modules_metamask_s.js:47157:43)\n at async TransactionController._TransactionController_processApproval (chrome-extension://hebhblbkkdabgoldnojllkipeoacjioc/js-node_modules_metamask_s.js:47021:40)\n at async waitForHashAndReturnFinalTxMeta (chrome-extension://hebhblbkkdabgoldnojllkipeoacjioc/js-node_modules_metamask_a.js:56074:20)\n at async addTransaction (chrome-extension://hebhblbkkdabgoldnojllkipeoacjioc/js-node_modules_metamask_a.js:56083:12)\n at async submitEvmTransaction (chrome-extension://hebhblbkkdabgoldnojllkipeoacjioc/js-node_modules_metamask_a.js:56295:12)\n at async handleSingleTx (chrome-extension://hebhblbkkdabgoldnojllkipeoacjioc/js-node_modules_metamask_a.js:33557:111)\n at async submitEvmHandler (chrome-extension://hebhblbkkdabgoldnojllkipeoacjioc/js-node_modules_metamask_a.js:33620:23)" - }, - "gasFeeEstimates": { - "high": { - "maxFeePerGas": "0x86c7180d5a", - "maxPriorityFeePerGas": "0x239ab1d100" - }, - "low": { - "maxFeePerGas": "0x56954937b7", - "maxPriorityFeePerGas": "0x1c3eeef619" - }, - "medium": { - "maxFeePerGas": "0x71ff103f7c", - "maxPriorityFeePerGas": "0x233db00080" - }, - "type": "fee-market" - }, - "gasFeeEstimatesLoaded": true, - "gasLimitNoBuffer": "0x68e7c", - "id": "0aa253e0-4fc8-11f1-b8dd-23b347bd50db", - "isGasFeeTokenIgnoredIfBalance": false, - "networkClientId": "polygon-mainnet", - "origin": "metamask", - "r": "0x6eba2601f334c4f694311a6ebd85564eaa8962729e951d0f68068282445972f5", - "rawTx": "0x02f9031581895f85233db000808571ff103f7c83068e7c941a1ec25dc08e98e5e93f1104b5e5cdd298707d3180b902a55f5755290000000000000000000000000000000000000000000000000000000000000080000000000000000000000000c2132d05d31c914a87c6611c10748aeb04b58e8f000000000000000000000000000000000000000000000000000000000006567600000000000000000000000000000000000000000000000000000000000000c000000000000000000000000000000000000000000000000000000000000000136f6e65496e6368563646656544796e616d69630000000000000000000000000000000000000000000000000000000000000000000000000000000000000001c0000000000000000000000000c2132d05d31c914a87c6611c10748aeb04b58e8f0000000000000000000000002791bca1f2de4661ed88a30c99a7a9449aa8417400000000000000000000000000000000000000000000000000000000000656760000000000000000000000000000000000000000000000000000000000063d9200000000000000000000000000000000000000000000000000000000000001200000000000000000000000000000000000000000000000000000000000000e2c000000000000000000000000930dedddb92fef1b4ab2665d250877339f064eac0000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000008883800a8e000000000000000000000000c2132d05d31c914a87c6611c10748aeb04b58e8f00000000000000000000000000000000000000000000000000000000000656760000000000000000000000000000000000000000000000000000000000064bac08000000000000003b8b87c020bf018fddba3b352f3d913fe1c81b846fe0f4907dcbea7c000000000000000000000000000000000000000000000000f3c080a06eba2601f334c4f694311a6ebd85564eaa8962729e951d0f68068282445972f5a073d38bc6ba7ceed677461b3a10656e663ea36b0b577307aa07668428babaffbc", - "s": "0x73d38bc6ba7ceed677461b3a10656e663ea36b0b577307aa07668428babaffbc", - "status": "failed", - "time": 1778785601566, - "txParams": { - "data": "0x5f5755290000000000000000000000000000000000000000000000000000000000000080000000000000000000000000c2132d05d31c914a87c6611c10748aeb04b58e8f000000000000000000000000000000000000000000000000000000000006567600000000000000000000000000000000000000000000000000000000000000c000000000000000000000000000000000000000000000000000000000000000136f6e65496e6368563646656544796e616d69630000000000000000000000000000000000000000000000000000000000000000000000000000000000000001c0000000000000000000000000c2132d05d31c914a87c6611c10748aeb04b58e8f0000000000000000000000002791bca1f2de4661ed88a30c99a7a9449aa8417400000000000000000000000000000000000000000000000000000000000656760000000000000000000000000000000000000000000000000000000000063d9200000000000000000000000000000000000000000000000000000000000001200000000000000000000000000000000000000000000000000000000000000e2c000000000000000000000000930dedddb92fef1b4ab2665d250877339f064eac0000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000008883800a8e000000000000000000000000c2132d05d31c914a87c6611c10748aeb04b58e8f00000000000000000000000000000000000000000000000000000000000656760000000000000000000000000000000000000000000000000000000000064bac08000000000000003b8b87c020bf018fddba3b352f3d913fe1c81b846fe0f4907dcbea7c000000000000000000000000000000000000000000000000f3", - "from": "0x141d32a89a1e0a5ef360034a2f60a4b917c18838", - "gas": "0x68e7c", - "gasLimit": "0x68e7c", - "maxFeePerGas": "0x71ff103f7c", - "maxPriorityFeePerGas": "0x233db00080", - "nonce": "0x5f", - "to": "0x1a1ec25dc08e98e5e93f1104b5e5cdd298707d31", - "type": "0x2", - "value": "0x0" - }, - "type": "swap", - "userEditedGasLimit": false, - "userFeeLevel": "medium", - "v": "0x0", - "verifiedOnBlockchain": false - }, - { - "actionId": "1778785716284.8086", - "chainId": "0x89", - "defaultGasEstimates": { - "estimateType": "medium", - "gas": "0x68e7c", - "maxFeePerGas": "0x6fbd7f483c", - "maxPriorityFeePerGas": "0x2151174400" - }, - "error": { - "message": "RPC submit: insufficient funds for gas * price + value: balance 63974383933502492, tx cost 206218044708504848, overshot 142243660775002356", - "name": "Error", - "stack": "Error: RPC submit: insufficient funds for gas * price + value: balance 63974383933502492, tx cost 206218044708504848, overshot 142243660775002356\n at TransactionController._TransactionController_publishTransaction (chrome-extension://hebhblbkkdabgoldnojllkipeoacjioc/js-node_modules_metamask_s.js:47207:15)\n at async chrome-extension://hebhblbkkdabgoldnojllkipeoacjioc/js-node_modules_metamask_s.js:47893:47\n at async TransactionController._TransactionController_defaultPublishHook (chrome-extension://hebhblbkkdabgoldnojllkipeoacjioc/js-node_modules_metamask_s.js:47886:5)\n at async TransactionController._TransactionController_approveTransaction (chrome-extension://hebhblbkkdabgoldnojllkipeoacjioc/js-node_modules_metamask_s.js:47157:43)\n at async TransactionController._TransactionController_processApproval (chrome-extension://hebhblbkkdabgoldnojllkipeoacjioc/js-node_modules_metamask_s.js:47021:40)\n at async waitForHashAndReturnFinalTxMeta (chrome-extension://hebhblbkkdabgoldnojllkipeoacjioc/js-node_modules_metamask_a.js:56074:20)\n at async addTransaction (chrome-extension://hebhblbkkdabgoldnojllkipeoacjioc/js-node_modules_metamask_a.js:56083:12)\n at async submitEvmTransaction (chrome-extension://hebhblbkkdabgoldnojllkipeoacjioc/js-node_modules_metamask_a.js:56295:12)\n at async handleSingleTx (chrome-extension://hebhblbkkdabgoldnojllkipeoacjioc/js-node_modules_metamask_a.js:33557:111)\n at async submitEvmHandler (chrome-extension://hebhblbkkdabgoldnojllkipeoacjioc/js-node_modules_metamask_a.js:33620:23)" - }, - "gasFeeEstimates": { - "high": { - "maxFeePerGas": "0x846a6b9213", - "maxPriorityFeePerGas": "0x21a9050800" - }, - "low": { - "maxFeePerGas": "0x56e06d966d", - "maxPriorityFeePerGas": "0x1cc9041808" - }, - "medium": { - "maxFeePerGas": "0x6fbd7f483c", - "maxPriorityFeePerGas": "0x2151174400" - }, - "type": "fee-market" - }, - "gasFeeEstimatesLoaded": true, - "gasLimitNoBuffer": "0x68e7c", - "id": "4f070670-4fc8-11f1-b80b-f93297e5f743", - "isGasFeeTokenIgnoredIfBalance": false, - "networkClientId": "polygon-mainnet", - "origin": "metamask", - "r": "0xf178f41fba0b5b8297c360cd3170b513b58c689bf87cd219bfd1d09844b01e9b", - "rawTx": "0x02f9031581895f852151174400856fbd7f483c83068e7c941a1ec25dc08e98e5e93f1104b5e5cdd298707d3180b902a55f5755290000000000000000000000000000000000000000000000000000000000000080000000000000000000000000c2132d05d31c914a87c6611c10748aeb04b58e8f000000000000000000000000000000000000000000000000000000000006567600000000000000000000000000000000000000000000000000000000000000c000000000000000000000000000000000000000000000000000000000000000136f6e65496e6368563646656544796e616d69630000000000000000000000000000000000000000000000000000000000000000000000000000000000000001c0000000000000000000000000c2132d05d31c914a87c6611c10748aeb04b58e8f0000000000000000000000002791bca1f2de4661ed88a30c99a7a9449aa8417400000000000000000000000000000000000000000000000000000000000656760000000000000000000000000000000000000000000000000000000000063d9200000000000000000000000000000000000000000000000000000000000001200000000000000000000000000000000000000000000000000000000000000e2c000000000000000000000000930dedddb92fef1b4ab2665d250877339f064eac0000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000008883800a8e000000000000000000000000c2132d05d31c914a87c6611c10748aeb04b58e8f00000000000000000000000000000000000000000000000000000000000656760000000000000000000000000000000000000000000000000000000000064bac08000000000000003b8b87c020bf018fddba3b352f3d913fe1c81b846fe0f4907dcbea7c000000000000000000000000000000000000000000000000f3c080a0f178f41fba0b5b8297c360cd3170b513b58c689bf87cd219bfd1d09844b01e9ba00c2d3acec3136083d5456169d062f8843d7926edeff6a2d3a136de62de97e04a", - "s": "0xc2d3acec3136083d5456169d062f8843d7926edeff6a2d3a136de62de97e04a", - "status": "failed", - "time": 1778785716311, - "txParams": { - "data": "0x5f5755290000000000000000000000000000000000000000000000000000000000000080000000000000000000000000c2132d05d31c914a87c6611c10748aeb04b58e8f000000000000000000000000000000000000000000000000000000000006567600000000000000000000000000000000000000000000000000000000000000c000000000000000000000000000000000000000000000000000000000000000136f6e65496e6368563646656544796e616d69630000000000000000000000000000000000000000000000000000000000000000000000000000000000000001c0000000000000000000000000c2132d05d31c914a87c6611c10748aeb04b58e8f0000000000000000000000002791bca1f2de4661ed88a30c99a7a9449aa8417400000000000000000000000000000000000000000000000000000000000656760000000000000000000000000000000000000000000000000000000000063d9200000000000000000000000000000000000000000000000000000000000001200000000000000000000000000000000000000000000000000000000000000e2c000000000000000000000000930dedddb92fef1b4ab2665d250877339f064eac0000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000008883800a8e000000000000000000000000c2132d05d31c914a87c6611c10748aeb04b58e8f00000000000000000000000000000000000000000000000000000000000656760000000000000000000000000000000000000000000000000000000000064bac08000000000000003b8b87c020bf018fddba3b352f3d913fe1c81b846fe0f4907dcbea7c000000000000000000000000000000000000000000000000f3", - "from": "0x141d32a89a1e0a5ef360034a2f60a4b917c18838", - "gas": "0x68e7c", - "gasLimit": "0x68e7c", - "maxFeePerGas": "0x6fbd7f483c", - "maxPriorityFeePerGas": "0x2151174400", - "nonce": "0x5f", - "to": "0x1a1ec25dc08e98e5e93f1104b5e5cdd298707d31", - "type": "0x2", - "value": "0x0" - }, - "type": "swap", - "userEditedGasLimit": false, - "userFeeLevel": "medium", - "v": "0x0", - "verifiedOnBlockchain": false - }, - { - "actionId": "1778786350483.7222", - "chainId": "0x89", - "defaultGasEstimates": { - "estimateType": "medium", - "gas": "0x68e7c", - "maxFeePerGas": "0x6dc1abae6e", - "maxPriorityFeePerGas": "0x1dd0028e40" - }, - "error": { - "message": "RPC submit: insufficient funds for gas * price + value: balance 63974383933502492, tx cost 202557104970367304, overshot 138582721036864812", - "name": "Error", - "stack": "Error: RPC submit: insufficient funds for gas * price + value: balance 63974383933502492, tx cost 202557104970367304, overshot 138582721036864812\n at TransactionController._TransactionController_publishTransaction (chrome-extension://hebhblbkkdabgoldnojllkipeoacjioc/js-node_modules_metamask_s.js:47207:15)\n at async chrome-extension://hebhblbkkdabgoldnojllkipeoacjioc/js-node_modules_metamask_s.js:47893:47\n at async TransactionController._TransactionController_defaultPublishHook (chrome-extension://hebhblbkkdabgoldnojllkipeoacjioc/js-node_modules_metamask_s.js:47886:5)\n at async TransactionController._TransactionController_approveTransaction (chrome-extension://hebhblbkkdabgoldnojllkipeoacjioc/js-node_modules_metamask_s.js:47157:43)\n at async TransactionController._TransactionController_processApproval (chrome-extension://hebhblbkkdabgoldnojllkipeoacjioc/js-node_modules_metamask_s.js:47021:40)\n at async waitForHashAndReturnFinalTxMeta (chrome-extension://hebhblbkkdabgoldnojllkipeoacjioc/js-node_modules_metamask_a.js:56077:20)\n at async addTransaction (chrome-extension://hebhblbkkdabgoldnojllkipeoacjioc/js-node_modules_metamask_a.js:56086:12)\n at async submitEvmTransaction (chrome-extension://hebhblbkkdabgoldnojllkipeoacjioc/js-node_modules_metamask_a.js:56299:12)\n at async handleSingleTx (chrome-extension://hebhblbkkdabgoldnojllkipeoacjioc/js-node_modules_metamask_a.js:33557:111)\n at async submitEvmHandler (chrome-extension://hebhblbkkdabgoldnojllkipeoacjioc/js-node_modules_metamask_a.js:33620:23)" - }, - "gasFeeEstimates": { - "high": { - "maxFeePerGas": "0x82ca435ecd", - "maxPriorityFeePerGas": "0x1e1eb0c480" - }, - "low": { - "maxFeePerGas": "0x56da569e8f", - "maxPriorityFeePerGas": "0x1ba296f880" - }, - "medium": { - "maxFeePerGas": "0x6dc1abae6e", - "maxPriorityFeePerGas": "0x1dd0028e40" - }, - "type": "fee-market" - }, - "gasFeeEstimatesLoaded": true, - "gasLimitNoBuffer": "0x68e7c", - "id": "c909cec0-4fc9-11f1-ab6a-195e0938ee4c", - "isGasFeeTokenIgnoredIfBalance": false, - "networkClientId": "polygon-mainnet", - "origin": "metamask", - "r": "0x6f11e90718e99e95ce7f925beaaef8c2ea4abebf0aaed9cc5e7fd8abadf78d3e", - "rawTx": "0x02f9031581895f851dd0028e40856dc1abae6e83068e7c941a1ec25dc08e98e5e93f1104b5e5cdd298707d3180b902a55f5755290000000000000000000000000000000000000000000000000000000000000080000000000000000000000000c2132d05d31c914a87c6611c10748aeb04b58e8f000000000000000000000000000000000000000000000000000000000006567600000000000000000000000000000000000000000000000000000000000000c000000000000000000000000000000000000000000000000000000000000000136f6e65496e6368563646656544796e616d69630000000000000000000000000000000000000000000000000000000000000000000000000000000000000001c0000000000000000000000000c2132d05d31c914a87c6611c10748aeb04b58e8f0000000000000000000000002791bca1f2de4661ed88a30c99a7a9449aa8417400000000000000000000000000000000000000000000000000000000000656760000000000000000000000000000000000000000000000000000000000063d9200000000000000000000000000000000000000000000000000000000000001200000000000000000000000000000000000000000000000000000000000000e2c000000000000000000000000930dedddb92fef1b4ab2665d250877339f064eac0000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000008883800a8e000000000000000000000000c2132d05d31c914a87c6611c10748aeb04b58e8f00000000000000000000000000000000000000000000000000000000000656760000000000000000000000000000000000000000000000000000000000064bac08000000000000003b8b87c020bf018fddba3b352f3d913fe1c81b846fe0f4907dcbea7c000000000000000000000000000000000000000000000000f3c080a06f11e90718e99e95ce7f925beaaef8c2ea4abebf0aaed9cc5e7fd8abadf78d3ea00eb87bb26446df2bb1bcab44e7a416086e832dc2e58cd5d886aaca01c620be82", - "s": "0xeb87bb26446df2bb1bcab44e7a416086e832dc2e58cd5d886aaca01c620be82", - "status": "failed", - "time": 1778786350508, - "txParams": { - "data": "0x5f5755290000000000000000000000000000000000000000000000000000000000000080000000000000000000000000c2132d05d31c914a87c6611c10748aeb04b58e8f000000000000000000000000000000000000000000000000000000000006567600000000000000000000000000000000000000000000000000000000000000c000000000000000000000000000000000000000000000000000000000000000136f6e65496e6368563646656544796e616d69630000000000000000000000000000000000000000000000000000000000000000000000000000000000000001c0000000000000000000000000c2132d05d31c914a87c6611c10748aeb04b58e8f0000000000000000000000002791bca1f2de4661ed88a30c99a7a9449aa8417400000000000000000000000000000000000000000000000000000000000656760000000000000000000000000000000000000000000000000000000000063d9200000000000000000000000000000000000000000000000000000000000001200000000000000000000000000000000000000000000000000000000000000e2c000000000000000000000000930dedddb92fef1b4ab2665d250877339f064eac0000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000008883800a8e000000000000000000000000c2132d05d31c914a87c6611c10748aeb04b58e8f00000000000000000000000000000000000000000000000000000000000656760000000000000000000000000000000000000000000000000000000000064bac08000000000000003b8b87c020bf018fddba3b352f3d913fe1c81b846fe0f4907dcbea7c000000000000000000000000000000000000000000000000f3", - "from": "0x141d32a89a1e0a5ef360034a2f60a4b917c18838", - "gas": "0x68e7c", - "gasLimit": "0x68e7c", - "maxFeePerGas": "0x6dc1abae6e", - "maxPriorityFeePerGas": "0x1dd0028e40", - "nonce": "0x5f", - "to": "0x1a1ec25dc08e98e5e93f1104b5e5cdd298707d31", - "type": "0x2", - "value": "0x0" - }, - "type": "swap", - "userEditedGasLimit": false, - "userFeeLevel": "medium", - "v": "0x0", - "verifiedOnBlockchain": false - }, - { - "actionId": "1778786574185.9194", - "chainId": "0x89", - "defaultGasEstimates": { - "estimateType": "medium", - "gas": "0x68e7c", - "maxFeePerGas": "0x69aab09961", - "maxPriorityFeePerGas": "0x1ada5eb6f6" - }, - "error": { - "message": "RPC submit: insufficient funds for gas * price + value: balance 63974383933502492, tx cost 195009383290378492, overshot 131034999356876000", - "name": "Error", - "stack": "Error: RPC submit: insufficient funds for gas * price + value: balance 63974383933502492, tx cost 195009383290378492, overshot 131034999356876000\n at TransactionController._TransactionController_publishTransaction (chrome-extension://hebhblbkkdabgoldnojllkipeoacjioc/js-node_modules_metamask_s.js:47207:15)\n at async chrome-extension://hebhblbkkdabgoldnojllkipeoacjioc/js-node_modules_metamask_s.js:47893:47\n at async TransactionController._TransactionController_defaultPublishHook (chrome-extension://hebhblbkkdabgoldnojllkipeoacjioc/js-node_modules_metamask_s.js:47886:5)\n at async TransactionController._TransactionController_approveTransaction (chrome-extension://hebhblbkkdabgoldnojllkipeoacjioc/js-node_modules_metamask_s.js:47157:43)\n at async TransactionController._TransactionController_processApproval (chrome-extension://hebhblbkkdabgoldnojllkipeoacjioc/js-node_modules_metamask_s.js:47021:40)\n at async waitForHashAndReturnFinalTxMeta (chrome-extension://hebhblbkkdabgoldnojllkipeoacjioc/js-node_modules_metamask_a.js:56078:20)\n at async addTransaction (chrome-extension://hebhblbkkdabgoldnojllkipeoacjioc/js-node_modules_metamask_a.js:56087:12)\n at async submitEvmTransaction (chrome-extension://hebhblbkkdabgoldnojllkipeoacjioc/js-node_modules_metamask_a.js:56300:12)\n at async handleSingleTx (chrome-extension://hebhblbkkdabgoldnojllkipeoacjioc/js-node_modules_metamask_a.js:33557:111)\n at async submitEvmHandler (chrome-extension://hebhblbkkdabgoldnojllkipeoacjioc/js-node_modules_metamask_a.js:33620:23)" - }, - "gasFeeEstimates": { - "high": { - "maxFeePerGas": "0x882f0a9fd2", - "maxPriorityFeePerGas": "0x24efd2eb00" - }, - "low": { - "maxFeePerGas": "0x4e13f99e03", - "maxPriorityFeePerGas": "0x13b28d8e00" - }, - "medium": { - "maxFeePerGas": "0x69aab09961", - "maxPriorityFeePerGas": "0x1ada5eb6f6" - }, - "type": "fee-market" - }, - "gasFeeEstimatesLoaded": true, - "gasLimitNoBuffer": "0x68e7c", - "id": "4e681c70-4fca-11f1-9521-1d53fa8fa56d", - "isGasFeeTokenIgnoredIfBalance": false, - "networkClientId": "polygon-mainnet", - "origin": "metamask", - "r": "0x9308c6e4ea4a9dddadcb9e1c76846d0903232eba63743635ff00ceba8468aa4e", - "rawTx": "0x02f9031581895f851ada5eb6f68569aab0996183068e7c941a1ec25dc08e98e5e93f1104b5e5cdd298707d3180b902a55f5755290000000000000000000000000000000000000000000000000000000000000080000000000000000000000000c2132d05d31c914a87c6611c10748aeb04b58e8f000000000000000000000000000000000000000000000000000000000006567600000000000000000000000000000000000000000000000000000000000000c000000000000000000000000000000000000000000000000000000000000000136f6e65496e6368563646656544796e616d69630000000000000000000000000000000000000000000000000000000000000000000000000000000000000001c0000000000000000000000000c2132d05d31c914a87c6611c10748aeb04b58e8f0000000000000000000000002791bca1f2de4661ed88a30c99a7a9449aa8417400000000000000000000000000000000000000000000000000000000000656760000000000000000000000000000000000000000000000000000000000063d9200000000000000000000000000000000000000000000000000000000000001200000000000000000000000000000000000000000000000000000000000000e2c000000000000000000000000930dedddb92fef1b4ab2665d250877339f064eac0000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000008883800a8e000000000000000000000000c2132d05d31c914a87c6611c10748aeb04b58e8f00000000000000000000000000000000000000000000000000000000000656760000000000000000000000000000000000000000000000000000000000064bac08000000000000003b8b87c020bf018fddba3b352f3d913fe1c81b846fe0f4907dcbea7c000000000000000000000000000000000000000000000000f3c001a09308c6e4ea4a9dddadcb9e1c76846d0903232eba63743635ff00ceba8468aa4ea02bc4b95ea533dfb1f080d0c061972af51e9139ccee38836279b93db278ff79ca", - "s": "0x2bc4b95ea533dfb1f080d0c061972af51e9139ccee38836279b93db278ff79ca", - "status": "failed", - "time": 1778786574263, - "txParams": { - "data": "0x5f5755290000000000000000000000000000000000000000000000000000000000000080000000000000000000000000c2132d05d31c914a87c6611c10748aeb04b58e8f000000000000000000000000000000000000000000000000000000000006567600000000000000000000000000000000000000000000000000000000000000c000000000000000000000000000000000000000000000000000000000000000136f6e65496e6368563646656544796e616d69630000000000000000000000000000000000000000000000000000000000000000000000000000000000000001c0000000000000000000000000c2132d05d31c914a87c6611c10748aeb04b58e8f0000000000000000000000002791bca1f2de4661ed88a30c99a7a9449aa8417400000000000000000000000000000000000000000000000000000000000656760000000000000000000000000000000000000000000000000000000000063d9200000000000000000000000000000000000000000000000000000000000001200000000000000000000000000000000000000000000000000000000000000e2c000000000000000000000000930dedddb92fef1b4ab2665d250877339f064eac0000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000008883800a8e000000000000000000000000c2132d05d31c914a87c6611c10748aeb04b58e8f00000000000000000000000000000000000000000000000000000000000656760000000000000000000000000000000000000000000000000000000000064bac08000000000000003b8b87c020bf018fddba3b352f3d913fe1c81b846fe0f4907dcbea7c000000000000000000000000000000000000000000000000f3", - "from": "0x141d32a89a1e0a5ef360034a2f60a4b917c18838", - "gas": "0x68e7c", - "gasLimit": "0x68e7c", - "maxFeePerGas": "0x69aab09961", - "maxPriorityFeePerGas": "0x1ada5eb6f6", - "nonce": "0x5f", - "to": "0x1a1ec25dc08e98e5e93f1104b5e5cdd298707d31", - "type": "0x2", - "value": "0x0" - }, - "type": "swap", - "userEditedGasLimit": false, - "userFeeLevel": "medium", - "v": "0x1", - "verifiedOnBlockchain": false - }, - { - "actionId": "1778791682371.7283", - "chainId": "0x89", - "defaultGasEstimates": { - "estimateType": "medium", - "gas": "0x68e7c", - "maxFeePerGas": "0x6ce9826e7f", - "maxPriorityFeePerGas": "0x1cc6768c1e" - }, - "error": { - "message": "RPC submit: insufficient funds for gas * price + value: balance 63974383933502492, tx cost 200998791698052996, overshot 137024407764550504", - "name": "Error", - "stack": "Error: RPC submit: insufficient funds for gas * price + value: balance 63974383933502492, tx cost 200998791698052996, overshot 137024407764550504\n at TransactionController._TransactionController_publishTransaction (chrome-extension://hebhblbkkdabgoldnojllkipeoacjioc/js-node_modules_metamask_s.js:47207:15)\n at async chrome-extension://hebhblbkkdabgoldnojllkipeoacjioc/js-node_modules_metamask_s.js:47893:47\n at async TransactionController._TransactionController_defaultPublishHook (chrome-extension://hebhblbkkdabgoldnojllkipeoacjioc/js-node_modules_metamask_s.js:47886:5)\n at async TransactionController._TransactionController_approveTransaction (chrome-extension://hebhblbkkdabgoldnojllkipeoacjioc/js-node_modules_metamask_s.js:47157:43)\n at async TransactionController._TransactionController_processApproval (chrome-extension://hebhblbkkdabgoldnojllkipeoacjioc/js-node_modules_metamask_s.js:47021:40)\n at async waitForHashAndReturnFinalTxMeta (chrome-extension://hebhblbkkdabgoldnojllkipeoacjioc/js-node_modules_metamask_a.js:56083:20)\n at async addTransaction (chrome-extension://hebhblbkkdabgoldnojllkipeoacjioc/js-node_modules_metamask_a.js:56092:12)\n at async submitEvmTransaction (chrome-extension://hebhblbkkdabgoldnojllkipeoacjioc/js-node_modules_metamask_a.js:56305:12)\n at async handleSingleTx (chrome-extension://hebhblbkkdabgoldnojllkipeoacjioc/js-node_modules_metamask_a.js:33557:111)\n at async submitEvmHandler (chrome-extension://hebhblbkkdabgoldnojllkipeoacjioc/js-node_modules_metamask_a.js:33620:23)" - }, - "gasFeeEstimates": { - "high": { - "maxFeePerGas": "0x84938e1f12", - "maxPriorityFeePerGas": "0x1fa9cb0200" - }, - "low": { - "maxFeePerGas": "0x4dafe24f0b", - "maxPriorityFeePerGas": "0x12538da75b" - }, - "medium": { - "maxFeePerGas": "0x6ce9826e7f", - "maxPriorityFeePerGas": "0x1cc6768c1e" - }, - "type": "fee-market" - }, - "gasFeeEstimatesLoaded": true, - "gasLimitNoBuffer": "0x68e7c", - "id": "331732b0-4fd6-11f1-935b-b583734c346f", - "isGasFeeTokenIgnoredIfBalance": false, - "networkClientId": "polygon-mainnet", - "origin": "metamask", - "r": "0x16afa28c200359e378c1fb52587196476d0394f9a400a3c3f3ec3afda266703e", - "rawTx": "0x02f9031581895f851cc6768c1e856ce9826e7f83068e7c941a1ec25dc08e98e5e93f1104b5e5cdd298707d3180b902a55f5755290000000000000000000000000000000000000000000000000000000000000080000000000000000000000000c2132d05d31c914a87c6611c10748aeb04b58e8f000000000000000000000000000000000000000000000000000000000006567600000000000000000000000000000000000000000000000000000000000000c000000000000000000000000000000000000000000000000000000000000000136f6e65496e6368563646656544796e616d69630000000000000000000000000000000000000000000000000000000000000000000000000000000000000001c0000000000000000000000000c2132d05d31c914a87c6611c10748aeb04b58e8f0000000000000000000000002791bca1f2de4661ed88a30c99a7a9449aa8417400000000000000000000000000000000000000000000000000000000000656760000000000000000000000000000000000000000000000000000000000063dc900000000000000000000000000000000000000000000000000000000000001200000000000000000000000000000000000000000000000000000000000000e2c000000000000000000000000930dedddb92fef1b4ab2665d250877339f064eac0000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000008883800a8e000000000000000000000000c2132d05d31c914a87c6611c10748aeb04b58e8f00000000000000000000000000000000000000000000000000000000000656760000000000000000000000000000000000000000000000000000000000064be308000000000000003b8b87c020bf018fddba3b352f3d913fe1c81b846fe0f4907dcbea7c00000000000000000000000000000000000000000000000086c080a016afa28c200359e378c1fb52587196476d0394f9a400a3c3f3ec3afda266703ea044dd6b97ad15a415c7e759187eee6d231d39adba74aa758363cb6a39e2275d03", - "s": "0x44dd6b97ad15a415c7e759187eee6d231d39adba74aa758363cb6a39e2275d03", - "status": "failed", - "time": 1778791682395, - "txParams": { - "data": "0x5f5755290000000000000000000000000000000000000000000000000000000000000080000000000000000000000000c2132d05d31c914a87c6611c10748aeb04b58e8f000000000000000000000000000000000000000000000000000000000006567600000000000000000000000000000000000000000000000000000000000000c000000000000000000000000000000000000000000000000000000000000000136f6e65496e6368563646656544796e616d69630000000000000000000000000000000000000000000000000000000000000000000000000000000000000001c0000000000000000000000000c2132d05d31c914a87c6611c10748aeb04b58e8f0000000000000000000000002791bca1f2de4661ed88a30c99a7a9449aa8417400000000000000000000000000000000000000000000000000000000000656760000000000000000000000000000000000000000000000000000000000063dc900000000000000000000000000000000000000000000000000000000000001200000000000000000000000000000000000000000000000000000000000000e2c000000000000000000000000930dedddb92fef1b4ab2665d250877339f064eac0000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000008883800a8e000000000000000000000000c2132d05d31c914a87c6611c10748aeb04b58e8f00000000000000000000000000000000000000000000000000000000000656760000000000000000000000000000000000000000000000000000000000064be308000000000000003b8b87c020bf018fddba3b352f3d913fe1c81b846fe0f4907dcbea7c00000000000000000000000000000000000000000000000086", - "from": "0x141d32a89a1e0a5ef360034a2f60a4b917c18838", - "gas": "0x68e7c", - "gasLimit": "0x68e7c", - "maxFeePerGas": "0x6ce9826e7f", - "maxPriorityFeePerGas": "0x1cc6768c1e", - "nonce": "0x5f", - "to": "0x1a1ec25dc08e98e5e93f1104b5e5cdd298707d31", - "type": "0x2", - "value": "0x0" - }, - "type": "swap", - "userEditedGasLimit": false, - "userFeeLevel": "medium", - "v": "0x0", - "verifiedOnBlockchain": false - }, - { - "baseFeePerGas": "0x3abcbe16cb", - "batchId": "0x19e286f5d28", - "blockTimestamp": "0x6a063dcb", - "chainId": "0x89", - "defaultGasEstimates": { - "estimateType": "medium", - "gas": "0x10f954", - "maxFeePerGas": "0x61619d10c2", - "maxPriorityFeePerGas": "0x124b230e80" - }, - "gasFeeEstimates": { - "high": { - "maxFeePerGas": "0x7612fad5c5", - "maxPriorityFeePerGas": "0x127b6aad00" - }, - "low": { - "maxFeePerGas": "0x462f0aa45e", - "maxPriorityFeePerGas": "0xb99a6c89f" - }, - "medium": { - "maxFeePerGas": "0x61619d10c2", - "maxPriorityFeePerGas": "0x124b230e80" - }, - "type": "fee-market" - }, - "gasFeeEstimatesLoaded": true, - "gasLimitNoBuffer": "0xb50e3", - "hash": "0xa409941b8fb0650254d6f73e20530bae227a62bf40487ff5236fdfd8f3d79d0e", - "id": "6c056100-4fdb-11f1-b40a-151a477935d3", - "isGasFeeIncluded": true, - "isGasFeeSponsored": false, - "isGasFeeTokenIgnoredIfBalance": false, - "nestedTransactions": [ - { - "data": "0x5f5755290000000000000000000000000000000000000000000000000000000000000080000000000000000000000000c2132d05d31c914a87c6611c10748aeb04b58e8f000000000000000000000000000000000000000000000000000000000006567600000000000000000000000000000000000000000000000000000000000000c000000000000000000000000000000000000000000000000000000000000000136f6e65496e6368563646656544796e616d69630000000000000000000000000000000000000000000000000000000000000000000000000000000000000001c0000000000000000000000000c2132d05d31c914a87c6611c10748aeb04b58e8f0000000000000000000000002791bca1f2de4661ed88a30c99a7a9449aa8417400000000000000000000000000000000000000000000000000000000000656760000000000000000000000000000000000000000000000000000000000063de500000000000000000000000000000000000000000000000000000000000001200000000000000000000000000000000000000000000000000000000000000e2d000000000000000000000000930dedddb92fef1b4ab2665d250877339f064eac0000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000008883800a8e000000000000000000000000c2132d05d31c914a87c6611c10748aeb04b58e8f00000000000000000000000000000000000000000000000000000000000656760000000000000000000000000000000000000000000000000000000000064c0008000000000000003b8b87c020bf018fddba3b352f3d913fe1c81b846fe0f4907dcbea7c00000000000000000000000000000000000000000000000069", - "from": "0x141d32a89a1e0a5ef360034a2f60a4b917c18838", - "to": "0x1a1ec25DC08e98e5E93F1104B5e5cdD298707d31", - "type": "swap", - "value": "0x0" - }, - { - "data": "0x095ea7b30000000000000000000000001a1ec25dc08e98e5e93f1104b5e5cdd298707d31000000000000000000000000000000000000000000000000072ce120a34f6940", - "from": "0x141d32a89a1e0a5ef360034a2f60a4b917c18838", - "to": "0xb33eaad8d922b1083446dc23f610c2567fb5180f", - "type": "swapApproval", - "value": "0x0" - }, - { - "data": "0x5f5755290000000000000000000000000000000000000000000000000000000000000080000000000000000000000000b33eaad8d922b1083446dc23f610c2567fb5180f000000000000000000000000000000000000000000000000072ce120a34f694000000000000000000000000000000000000000000000000000000000000000c000000000000000000000000000000000000000000000000000000000000000136f6e65496e6368563646656544796e616d69630000000000000000000000000000000000000000000000000000000000000000000000000000000000000001e0000000000000000000000000b33eaad8d922b1083446dc23f610c2567fb5180f0000000000000000000000002791bca1f2de4661ed88a30c99a7a9449aa84174000000000000000000000000000000000000000000000000072ce120a34f694000000000000000000000000000000000000000000000000000000000001d30d60000000000000000000000000000000000000000000000000000000000000120000000000000000000000000000000000000000000000000000000000000424b000000000000000000000000930dedddb92fef1b4ab2665d250877339f064eac000000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000000000a88770ba91000000000000000000000000b33eaad8d922b1083446dc23f610c2567fb5180f000000000000000000000000000000000000000000000000072ce120a34f694000000000000000000000000000000000000000000000000000000000001d72cc08000000000000003b6d0340b5e1a07c9b6ab3bee8d9bf4066d324c5da89c07f00000000000000003b6d03407d51bad48d253dae37cc82cad07f73849286deec7dcbea7c0000000000000000000000000000000000000000000000005c", - "from": "0x141d32a89a1e0a5ef360034a2f60a4b917c18838", - "to": "0x1a1ec25DC08e98e5E93F1104B5e5cdD298707d31", - "type": "swap", - "value": "0x0" - }, - { - "data": "0x095ea7b30000000000000000000000001a1ec25dc08e98e5e93f1104b5e5cdd298707d310000000000000000000000000000000000000000000000000161c7f85ff8bef6", - "from": "0x141d32a89a1e0a5ef360034a2f60a4b917c18838", - "to": "0x53e0bca35ec356bd5dddfebbd1fc0fd03fabad39", - "type": "swapApproval", - "value": "0x0" - }, - { - "data": "0x5f575529000000000000000000000000000000000000000000000000000000000000008000000000000000000000000053e0bca35ec356bd5dddfebbd1fc0fd03fabad390000000000000000000000000000000000000000000000000161c7f85ff8bef600000000000000000000000000000000000000000000000000000000000000c00000000000000000000000000000000000000000000000000000000000000018756e69737761705065726d69743246656544796e616d69630000000000000000000000000000000000000000000000000000000000000000000000000000034000000000000000000000000053e0bca35ec356bd5dddfebbd1fc0fd03fabad390000000000000000000000002791bca1f2de4661ed88a30c99a7a9449aa841740000000000000000000000000000000000000000000000000161c7f85ff8bef600000000000000000000000000000000000000000000000000000000000fce4c000000000000000000000000000000000000000000000000000000000000012000000000000000000000000000000000000000000000000000000000000023e5000000000000000000000000930dedddb92fef1b4ab2665d250877339f064eac0000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000020e3593564c000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000000a0000000000000000000000000000000000000000000000000000000006a0644b400000000000000000000000000000000000000000000000000000000000000010000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000000000200000000000000000000000000000000000000000000000000000000000000100000000000000000000000000c590175e458b83680867afd273527ff58f74c02b0000000000000000000000000000000000000000000000000161c7f85ff8bef600000000000000000000000000000000000000000000000000000000000ff21d00000000000000000000000000000000000000000000000000000000000000a00000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000002b53e0bca35ec356bd5dddfebbd1fc0fd03fabad390001f42791bca1f2de4661ed88a30c99a7a9449aa84174000000000000000000000000000000000000000000756e69780000b2c5de0b000000000000000000000000000000000000cb", - "from": "0x141d32a89a1e0a5ef360034a2f60a4b917c18838", - "to": "0x1a1ec25DC08e98e5E93F1104B5e5cdD298707d31", - "type": "swap", - "value": "0x0" - }, - { - "data": "0xa9059cbb000000000000000000000000e3478b0bb1a5084567c319096437924948be1964000000000000000000000000000000000000000000000000000000000000d5ab", - "from": "0x141d32a89a1e0a5ef360034a2f60a4b917c18838", - "to": "0x2791bca1f2de4661ed88a30c99a7a9449aa84174", - "type": "transfer", - "value": "0x0" - } - ], - "networkClientId": "polygon-mainnet", - "origin": "metamask", - "originalGasEstimate": "0x10f954", - "postTxBalance": "0xe3485cfd14b41c", - "r": "0x8029f79bf5b0c6e5f00a2704b7dfff34d570ebb2fbf0c59a55c47b7545a6b9a0", - "rawTx": "0x04f9103381895f85124b230e808561619d10c28310f95494141d32a89a1e0a5ef360034a2f60a4b917c1883880b90f64e9ae5c53010100000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000400000000000000000000000000000000000000000000000000000000000000f000000000000000000000000000000000000000000000000000000000000000020000000000000000000000000000000000000000000000000000000000000000600000000000000000000000000000000000000000000000000000000000000c0000000000000000000000000000000000000000000000000000000000000040000000000000000000000000000000000000000000000000000000000000004e0000000000000000000000000000000000000000000000000000000000000084000000000000000000000000000000000000000000000000000000000000009200000000000000000000000000000000000000000000000000000000000000de00000000000000000000000001a1ec25dc08e98e5e93f1104b5e5cdd298707d310000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000002a55f5755290000000000000000000000000000000000000000000000000000000000000080000000000000000000000000c2132d05d31c914a87c6611c10748aeb04b58e8f000000000000000000000000000000000000000000000000000000000006567600000000000000000000000000000000000000000000000000000000000000c000000000000000000000000000000000000000000000000000000000000000136f6e65496e6368563646656544796e616d69630000000000000000000000000000000000000000000000000000000000000000000000000000000000000001c0000000000000000000000000c2132d05d31c914a87c6611c10748aeb04b58e8f0000000000000000000000002791bca1f2de4661ed88a30c99a7a9449aa8417400000000000000000000000000000000000000000000000000000000000656760000000000000000000000000000000000000000000000000000000000063de500000000000000000000000000000000000000000000000000000000000001200000000000000000000000000000000000000000000000000000000000000e2d000000000000000000000000930dedddb92fef1b4ab2665d250877339f064eac0000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000008883800a8e000000000000000000000000c2132d05d31c914a87c6611c10748aeb04b58e8f00000000000000000000000000000000000000000000000000000000000656760000000000000000000000000000000000000000000000000000000000064c0008000000000000003b8b87c020bf018fddba3b352f3d913fe1c81b846fe0f4907dcbea7c00000000000000000000000000000000000000000000000069000000000000000000000000000000000000000000000000000000000000000000000000000000b33eaad8d922b1083446dc23f610c2567fb5180f000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000600000000000000000000000000000000000000000000000000000000000000044095ea7b30000000000000000000000001a1ec25dc08e98e5e93f1104b5e5cdd298707d31000000000000000000000000000000000000000000000000072ce120a34f6940000000000000000000000000000000000000000000000000000000000000000000000000000000001a1ec25dc08e98e5e93f1104b5e5cdd298707d310000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000002c55f5755290000000000000000000000000000000000000000000000000000000000000080000000000000000000000000b33eaad8d922b1083446dc23f610c2567fb5180f000000000000000000000000000000000000000000000000072ce120a34f694000000000000000000000000000000000000000000000000000000000000000c000000000000000000000000000000000000000000000000000000000000000136f6e65496e6368563646656544796e616d69630000000000000000000000000000000000000000000000000000000000000000000000000000000000000001e0000000000000000000000000b33eaad8d922b1083446dc23f610c2567fb5180f0000000000000000000000002791bca1f2de4661ed88a30c99a7a9449aa84174000000000000000000000000000000000000000000000000072ce120a34f694000000000000000000000000000000000000000000000000000000000001d30d60000000000000000000000000000000000000000000000000000000000000120000000000000000000000000000000000000000000000000000000000000424b000000000000000000000000930dedddb92fef1b4ab2665d250877339f064eac000000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000000000a88770ba91000000000000000000000000b33eaad8d922b1083446dc23f610c2567fb5180f000000000000000000000000000000000000000000000000072ce120a34f694000000000000000000000000000000000000000000000000000000000001d72cc08000000000000003b6d0340b5e1a07c9b6ab3bee8d9bf4066d324c5da89c07f00000000000000003b6d03407d51bad48d253dae37cc82cad07f73849286deec7dcbea7c0000000000000000000000000000000000000000000000005c00000000000000000000000000000000000000000000000000000000000000000000000000000053e0bca35ec356bd5dddfebbd1fc0fd03fabad39000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000600000000000000000000000000000000000000000000000000000000000000044095ea7b30000000000000000000000001a1ec25dc08e98e5e93f1104b5e5cdd298707d310000000000000000000000000000000000000000000000000161c7f85ff8bef6000000000000000000000000000000000000000000000000000000000000000000000000000000001a1ec25dc08e98e5e93f1104b5e5cdd298707d310000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000004255f575529000000000000000000000000000000000000000000000000000000000000008000000000000000000000000053e0bca35ec356bd5dddfebbd1fc0fd03fabad390000000000000000000000000000000000000000000000000161c7f85ff8bef600000000000000000000000000000000000000000000000000000000000000c00000000000000000000000000000000000000000000000000000000000000018756e69737761705065726d69743246656544796e616d69630000000000000000000000000000000000000000000000000000000000000000000000000000034000000000000000000000000053e0bca35ec356bd5dddfebbd1fc0fd03fabad390000000000000000000000002791bca1f2de4661ed88a30c99a7a9449aa841740000000000000000000000000000000000000000000000000161c7f85ff8bef600000000000000000000000000000000000000000000000000000000000fce4c000000000000000000000000000000000000000000000000000000000000012000000000000000000000000000000000000000000000000000000000000023e5000000000000000000000000930dedddb92fef1b4ab2665d250877339f064eac0000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000020e3593564c000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000000a0000000000000000000000000000000000000000000000000000000006a0644b400000000000000000000000000000000000000000000000000000000000000010000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000000000200000000000000000000000000000000000000000000000000000000000000100000000000000000000000000c590175e458b83680867afd273527ff58f74c02b0000000000000000000000000000000000000000000000000161c7f85ff8bef600000000000000000000000000000000000000000000000000000000000ff21d00000000000000000000000000000000000000000000000000000000000000a00000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000002b53e0bca35ec356bd5dddfebbd1fc0fd03fabad390001f42791bca1f2de4661ed88a30c99a7a9449aa84174000000000000000000000000000000000000000000756e69780000b2c5de0b000000000000000000000000000000000000cb0000000000000000000000000000000000000000000000000000000000000000000000000000002791bca1f2de4661ed88a30c99a7a9449aa84174000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000600000000000000000000000000000000000000000000000000000000000000044a9059cbb000000000000000000000000e3478b0bb1a5084567c319096437924948be1964000000000000000000000000000000000000000000000000000000000000d5ab00000000000000000000000000000000000000000000000000000000c0f85df85b81899463c0c19a282a1b52b07dd5a65b58948a07dae32b6001a0727e14962f44d7c82b78a7e1b082f1862ef235345da34926d6e3015ff55805c1a04caf0a9e2c916bbd3cb42d167140a608f6ea7447e1ae273a4990900618d9786480a08029f79bf5b0c6e5f00a2704b7dfff34d570ebb2fbf0c59a55c47b7545a6b9a0a06c9365c0b5580bc04183bf088a5086a6c7b6715541fc3b8a45b812f59216f0c3", - "s": "0x6c9365c0b5580bc04183bf088a5086a6c7b6715541fc3b8a45b812f59216f0c3", - "status": "confirmed", - "submittedTime": 1778793931434, - "time": 1778793925392, - "txParams": { - "authorizationList": [ - { - "address": "0x63c0c19a282a1B52b07dD5a65b58948A07DAE32B", - "chainId": "0x89", - "nonce": "0x60", - "r": "0x727e14962f44d7c82b78a7e1b082f1862ef235345da34926d6e3015ff55805c1", - "s": "0x4caf0a9e2c916bbd3cb42d167140a608f6ea7447e1ae273a4990900618d97864", - "yParity": "0x1" - } - ], - "data": "0xe9ae5c53010100000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000400000000000000000000000000000000000000000000000000000000000000f000000000000000000000000000000000000000000000000000000000000000020000000000000000000000000000000000000000000000000000000000000000600000000000000000000000000000000000000000000000000000000000000c0000000000000000000000000000000000000000000000000000000000000040000000000000000000000000000000000000000000000000000000000000004e0000000000000000000000000000000000000000000000000000000000000084000000000000000000000000000000000000000000000000000000000000009200000000000000000000000000000000000000000000000000000000000000de00000000000000000000000001a1ec25dc08e98e5e93f1104b5e5cdd298707d310000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000002a55f5755290000000000000000000000000000000000000000000000000000000000000080000000000000000000000000c2132d05d31c914a87c6611c10748aeb04b58e8f000000000000000000000000000000000000000000000000000000000006567600000000000000000000000000000000000000000000000000000000000000c000000000000000000000000000000000000000000000000000000000000000136f6e65496e6368563646656544796e616d69630000000000000000000000000000000000000000000000000000000000000000000000000000000000000001c0000000000000000000000000c2132d05d31c914a87c6611c10748aeb04b58e8f0000000000000000000000002791bca1f2de4661ed88a30c99a7a9449aa8417400000000000000000000000000000000000000000000000000000000000656760000000000000000000000000000000000000000000000000000000000063de500000000000000000000000000000000000000000000000000000000000001200000000000000000000000000000000000000000000000000000000000000e2d000000000000000000000000930dedddb92fef1b4ab2665d250877339f064eac0000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000008883800a8e000000000000000000000000c2132d05d31c914a87c6611c10748aeb04b58e8f00000000000000000000000000000000000000000000000000000000000656760000000000000000000000000000000000000000000000000000000000064c0008000000000000003b8b87c020bf018fddba3b352f3d913fe1c81b846fe0f4907dcbea7c00000000000000000000000000000000000000000000000069000000000000000000000000000000000000000000000000000000000000000000000000000000b33eaad8d922b1083446dc23f610c2567fb5180f000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000600000000000000000000000000000000000000000000000000000000000000044095ea7b30000000000000000000000001a1ec25dc08e98e5e93f1104b5e5cdd298707d31000000000000000000000000000000000000000000000000072ce120a34f6940000000000000000000000000000000000000000000000000000000000000000000000000000000001a1ec25dc08e98e5e93f1104b5e5cdd298707d310000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000002c55f5755290000000000000000000000000000000000000000000000000000000000000080000000000000000000000000b33eaad8d922b1083446dc23f610c2567fb5180f000000000000000000000000000000000000000000000000072ce120a34f694000000000000000000000000000000000000000000000000000000000000000c000000000000000000000000000000000000000000000000000000000000000136f6e65496e6368563646656544796e616d69630000000000000000000000000000000000000000000000000000000000000000000000000000000000000001e0000000000000000000000000b33eaad8d922b1083446dc23f610c2567fb5180f0000000000000000000000002791bca1f2de4661ed88a30c99a7a9449aa84174000000000000000000000000000000000000000000000000072ce120a34f694000000000000000000000000000000000000000000000000000000000001d30d60000000000000000000000000000000000000000000000000000000000000120000000000000000000000000000000000000000000000000000000000000424b000000000000000000000000930dedddb92fef1b4ab2665d250877339f064eac000000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000000000a88770ba91000000000000000000000000b33eaad8d922b1083446dc23f610c2567fb5180f000000000000000000000000000000000000000000000000072ce120a34f694000000000000000000000000000000000000000000000000000000000001d72cc08000000000000003b6d0340b5e1a07c9b6ab3bee8d9bf4066d324c5da89c07f00000000000000003b6d03407d51bad48d253dae37cc82cad07f73849286deec7dcbea7c0000000000000000000000000000000000000000000000005c00000000000000000000000000000000000000000000000000000000000000000000000000000053e0bca35ec356bd5dddfebbd1fc0fd03fabad39000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000600000000000000000000000000000000000000000000000000000000000000044095ea7b30000000000000000000000001a1ec25dc08e98e5e93f1104b5e5cdd298707d310000000000000000000000000000000000000000000000000161c7f85ff8bef6000000000000000000000000000000000000000000000000000000000000000000000000000000001a1ec25dc08e98e5e93f1104b5e5cdd298707d310000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000004255f575529000000000000000000000000000000000000000000000000000000000000008000000000000000000000000053e0bca35ec356bd5dddfebbd1fc0fd03fabad390000000000000000000000000000000000000000000000000161c7f85ff8bef600000000000000000000000000000000000000000000000000000000000000c00000000000000000000000000000000000000000000000000000000000000018756e69737761705065726d69743246656544796e616d69630000000000000000000000000000000000000000000000000000000000000000000000000000034000000000000000000000000053e0bca35ec356bd5dddfebbd1fc0fd03fabad390000000000000000000000002791bca1f2de4661ed88a30c99a7a9449aa841740000000000000000000000000000000000000000000000000161c7f85ff8bef600000000000000000000000000000000000000000000000000000000000fce4c000000000000000000000000000000000000000000000000000000000000012000000000000000000000000000000000000000000000000000000000000023e5000000000000000000000000930dedddb92fef1b4ab2665d250877339f064eac0000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000020e3593564c000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000000a0000000000000000000000000000000000000000000000000000000006a0644b400000000000000000000000000000000000000000000000000000000000000010000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000000000200000000000000000000000000000000000000000000000000000000000000100000000000000000000000000c590175e458b83680867afd273527ff58f74c02b0000000000000000000000000000000000000000000000000161c7f85ff8bef600000000000000000000000000000000000000000000000000000000000ff21d00000000000000000000000000000000000000000000000000000000000000a00000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000002b53e0bca35ec356bd5dddfebbd1fc0fd03fabad390001f42791bca1f2de4661ed88a30c99a7a9449aa84174000000000000000000000000000000000000000000756e69780000b2c5de0b000000000000000000000000000000000000cb0000000000000000000000000000000000000000000000000000000000000000000000000000002791bca1f2de4661ed88a30c99a7a9449aa84174000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000600000000000000000000000000000000000000000000000000000000000000044a9059cbb000000000000000000000000e3478b0bb1a5084567c319096437924948be1964000000000000000000000000000000000000000000000000000000000000d5ab00000000000000000000000000000000000000000000000000000000", - "from": "0x141d32a89a1e0a5ef360034a2f60a4b917c18838", - "gas": "0x10f954", - "gasLimit": "0x10f954", - "maxFeePerGas": "0x61619d10c2", - "maxPriorityFeePerGas": "0x124b230e80", - "to": "0x141d32a89a1e0a5ef360034a2f60a4b917c18838", - "type": "0x4", - "value": "0x0" - }, - "txReceipt": { - "blockHash": "0x8d1e208afe40d386d2d7728a404ec107dc993bd3ca31b4ba430d81a4a8829ec7", - "blockNumber": "0x52dcebf", - "contractAddress": null, - "cumulativeGasUsed": "0x2534ad2", - "effectiveGasPrice": "0x4dc47f5d17", - "from": "0xb01caea8c6c47bbf4f4b4c5080ca642043359c2e", - "gasUsed": "0xcc352", - "logs": [ - { - "address": "0x04658b29f6b82ed55274221a06fc97d318e25416", - "blockHash": "0x8d1e208afe40d386d2d7728a404ec107dc993bd3ca31b4ba430d81a4a8829ec7", - "blockNumber": "0x52dcebf", - "blockTimestamp": "0x6a063dcb", - "data": "0x00000000000000000000000000000000000000000000000000000000000000010000000000000000000000000000000000000000000000000000000000000001", - "logIndex": "0x683", - "removed": false, - "topics": [ - "0x449da07f2c06c9d1a6b19d2454ffe749e8cf991d22f686e076a1a4844c5ff370", - "0x000000000000000000000000db9b1e94b5b69df7e401ddbede43491141047db3", - "0x000000000000000000000000b01caea8c6c47bbf4f4b4c5080ca642043359c2e", - "0x2703078db4a888ed3b3b853e47eddd7bb98699a26916ed703e1e7bf5ee3b38e0" - ], - "transactionHash": "0xa409941b8fb0650254d6f73e20530bae227a62bf40487ff5236fdfd8f3d79d0e", - "transactionIndex": "0x84" - }, - { - "address": "0xc2132d05d31c914a87c6611c10748aeb04b58e8f", - "blockHash": "0x8d1e208afe40d386d2d7728a404ec107dc993bd3ca31b4ba430d81a4a8829ec7", - "blockNumber": "0x52dcebf", - "blockTimestamp": "0x6a063dcb", - "data": "0x0000000000000000000000000000000000000000000000000000000000065676", - "logIndex": "0x684", - "removed": false, - "topics": [ - "0xddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef", - "0x000000000000000000000000141d32a89a1e0a5ef360034a2f60a4b917c18838", - "0x000000000000000000000000c590175e458b83680867afd273527ff58f74c02b" - ], - "transactionHash": "0xa409941b8fb0650254d6f73e20530bae227a62bf40487ff5236fdfd8f3d79d0e", - "transactionIndex": "0x84" - }, - { - "address": "0xc2132d05d31c914a87c6611c10748aeb04b58e8f", - "blockHash": "0x8d1e208afe40d386d2d7728a404ec107dc993bd3ca31b4ba430d81a4a8829ec7", - "blockNumber": "0x52dcebf", - "blockTimestamp": "0x6a063dcb", - "data": "0x0000000000000000000000000000000000000000000000000000000000000000", - "logIndex": "0x685", - "removed": false, - "topics": [ - "0x8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925", - "0x000000000000000000000000141d32a89a1e0a5ef360034a2f60a4b917c18838", - "0x0000000000000000000000001a1ec25dc08e98e5e93f1104b5e5cdd298707d31" - ], - "transactionHash": "0xa409941b8fb0650254d6f73e20530bae227a62bf40487ff5236fdfd8f3d79d0e", - "transactionIndex": "0x84" - }, - { - "address": "0xc2132d05d31c914a87c6611c10748aeb04b58e8f", - "blockHash": "0x8d1e208afe40d386d2d7728a404ec107dc993bd3ca31b4ba430d81a4a8829ec7", - "blockNumber": "0x52dcebf", - "blockTimestamp": "0x6a063dcb", - "data": "0x0000000000000000000000000000000000000000000000000000000000065676", - "logIndex": "0x686", - "removed": false, - "topics": [ - "0xddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef", - "0x000000000000000000000000c590175e458b83680867afd273527ff58f74c02b", - "0x00000000000000000000000020bf018fddba3b352f3d913fe1c81b846fe0f490" - ], - "transactionHash": "0xa409941b8fb0650254d6f73e20530bae227a62bf40487ff5236fdfd8f3d79d0e", - "transactionIndex": "0x84" - }, - { - "address": "0xc2132d05d31c914a87c6611c10748aeb04b58e8f", - "blockHash": "0x8d1e208afe40d386d2d7728a404ec107dc993bd3ca31b4ba430d81a4a8829ec7", - "blockNumber": "0x52dcebf", - "blockTimestamp": "0x6a063dcb", - "data": "0xfffffffffffffffffffffffffffffffffffffffffffffffffffffbf3ef0dabd3", - "logIndex": "0x687", - "removed": false, - "topics": [ - "0x8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925", - "0x000000000000000000000000c590175e458b83680867afd273527ff58f74c02b", - "0x000000000000000000000000111111125421ca6dc452d289314280a0f8842a65" - ], - "transactionHash": "0xa409941b8fb0650254d6f73e20530bae227a62bf40487ff5236fdfd8f3d79d0e", - "transactionIndex": "0x84" - }, - { - "address": "0x2791bca1f2de4661ed88a30c99a7a9449aa84174", - "blockHash": "0x8d1e208afe40d386d2d7728a404ec107dc993bd3ca31b4ba430d81a4a8829ec7", - "blockNumber": "0x52dcebf", - "blockTimestamp": "0x6a063dcb", - "data": "0x000000000000000000000000000000000000000000000000000000000006541a", - "logIndex": "0x688", - "removed": false, - "topics": [ - "0xddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef", - "0x00000000000000000000000020bf018fddba3b352f3d913fe1c81b846fe0f490", - "0x000000000000000000000000c590175e458b83680867afd273527ff58f74c02b" - ], - "transactionHash": "0xa409941b8fb0650254d6f73e20530bae227a62bf40487ff5236fdfd8f3d79d0e", - "transactionIndex": "0x84" - }, - { - "address": "0x20bf018fddba3b352f3d913fe1c81b846fe0f490", - "blockHash": "0x8d1e208afe40d386d2d7728a404ec107dc993bd3ca31b4ba430d81a4a8829ec7", - "blockNumber": "0x52dcebf", - "blockTimestamp": "0x6a063dcb", - "data": "0x0000000000000000000000000000000000000000000000000000000e44f70f320000000000000000000000000000000000000000000000000000000e46a692e0", - "logIndex": "0x689", - "removed": false, - "topics": [ - "0x1c411e9a96e071241c2f21f7726b17ae89e3cab4c78be50e062b03a9fffbbad1" - ], - "transactionHash": "0xa409941b8fb0650254d6f73e20530bae227a62bf40487ff5236fdfd8f3d79d0e", - "transactionIndex": "0x84" - }, - { - "address": "0x20bf018fddba3b352f3d913fe1c81b846fe0f490", - "blockHash": "0x8d1e208afe40d386d2d7728a404ec107dc993bd3ca31b4ba430d81a4a8829ec7", - "blockNumber": "0x52dcebf", - "blockTimestamp": "0x6a063dcb", - "data": "0x00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000065676000000000000000000000000000000000000000000000000000000000006541a0000000000000000000000000000000000000000000000000000000000000000", - "logIndex": "0x68a", - "removed": false, - "topics": [ - "0xd78ad95fa46c994b6551d0da85fc275fe613ce37657fb8d5e3d130840159d822", - "0x000000000000000000000000111111125421ca6dc452d289314280a0f8842a65", - "0x000000000000000000000000c590175e458b83680867afd273527ff58f74c02b" - ], - "transactionHash": "0xa409941b8fb0650254d6f73e20530bae227a62bf40487ff5236fdfd8f3d79d0e", - "transactionIndex": "0x84" - }, - { - "address": "0x2791bca1f2de4661ed88a30c99a7a9449aa84174", - "blockHash": "0x8d1e208afe40d386d2d7728a404ec107dc993bd3ca31b4ba430d81a4a8829ec7", - "blockNumber": "0x52dcebf", - "blockTimestamp": "0x6a063dcb", - "data": "0x0000000000000000000000000000000000000000000000000000000000000e2d", - "logIndex": "0x68b", - "removed": false, - "topics": [ - "0xddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef", - "0x000000000000000000000000c590175e458b83680867afd273527ff58f74c02b", - "0x000000000000000000000000930dedddb92fef1b4ab2665d250877339f064eac" - ], - "transactionHash": "0xa409941b8fb0650254d6f73e20530bae227a62bf40487ff5236fdfd8f3d79d0e", - "transactionIndex": "0x84" - }, - { - "address": "0x2791bca1f2de4661ed88a30c99a7a9449aa84174", - "blockHash": "0x8d1e208afe40d386d2d7728a404ec107dc993bd3ca31b4ba430d81a4a8829ec7", - "blockNumber": "0x52dcebf", - "blockTimestamp": "0x6a063dcb", - "data": "0x00000000000000000000000000000000000000000000000000000000000645ed", - "logIndex": "0x68c", - "removed": false, - "topics": [ - "0xddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef", - "0x000000000000000000000000c590175e458b83680867afd273527ff58f74c02b", - "0x000000000000000000000000141d32a89a1e0a5ef360034a2f60a4b917c18838" - ], - "transactionHash": "0xa409941b8fb0650254d6f73e20530bae227a62bf40487ff5236fdfd8f3d79d0e", - "transactionIndex": "0x84" - }, - { - "address": "0x1a1ec25dc08e98e5e93f1104b5e5cdd298707d31", - "blockHash": "0x8d1e208afe40d386d2d7728a404ec107dc993bd3ca31b4ba430d81a4a8829ec7", - "blockNumber": "0x52dcebf", - "blockTimestamp": "0x6a063dcb", - "data": "0x", - "logIndex": "0x68d", - "removed": false, - "topics": [ - "0xbeee1e6e7fe307ddcf84b0a16137a4430ad5e2480fc4f4a8e250ab56ccd7630d", - "0x6fb9a5a70689d237d6be4cb3f77d4974b3e8d5b00c05e153d174c88bade66e7e", - "0x000000000000000000000000141d32a89a1e0a5ef360034a2f60a4b917c18838" - ], - "transactionHash": "0xa409941b8fb0650254d6f73e20530bae227a62bf40487ff5236fdfd8f3d79d0e", - "transactionIndex": "0x84" - }, - { - "address": "0xb33eaad8d922b1083446dc23f610c2567fb5180f", - "blockHash": "0x8d1e208afe40d386d2d7728a404ec107dc993bd3ca31b4ba430d81a4a8829ec7", - "blockNumber": "0x52dcebf", - "blockTimestamp": "0x6a063dcb", - "data": "0x000000000000000000000000000000000000000000000000072ce120a34f6940", - "logIndex": "0x68e", - "removed": false, - "topics": [ - "0x8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925", - "0x000000000000000000000000141d32a89a1e0a5ef360034a2f60a4b917c18838", - "0x0000000000000000000000001a1ec25dc08e98e5e93f1104b5e5cdd298707d31" - ], - "transactionHash": "0xa409941b8fb0650254d6f73e20530bae227a62bf40487ff5236fdfd8f3d79d0e", - "transactionIndex": "0x84" - }, - { - "address": "0xb33eaad8d922b1083446dc23f610c2567fb5180f", - "blockHash": "0x8d1e208afe40d386d2d7728a404ec107dc993bd3ca31b4ba430d81a4a8829ec7", - "blockNumber": "0x52dcebf", - "blockTimestamp": "0x6a063dcb", - "data": "0x000000000000000000000000000000000000000000000000072ce120a34f6940", - "logIndex": "0x68f", - "removed": false, - "topics": [ - "0xddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef", - "0x000000000000000000000000141d32a89a1e0a5ef360034a2f60a4b917c18838", - "0x000000000000000000000000c590175e458b83680867afd273527ff58f74c02b" - ], - "transactionHash": "0xa409941b8fb0650254d6f73e20530bae227a62bf40487ff5236fdfd8f3d79d0e", - "transactionIndex": "0x84" - }, - { - "address": "0xb33eaad8d922b1083446dc23f610c2567fb5180f", - "blockHash": "0x8d1e208afe40d386d2d7728a404ec107dc993bd3ca31b4ba430d81a4a8829ec7", - "blockNumber": "0x52dcebf", - "blockTimestamp": "0x6a063dcb", - "data": "0x0000000000000000000000000000000000000000000000000000000000000000", - "logIndex": "0x690", - "removed": false, - "topics": [ - "0x8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925", - "0x000000000000000000000000141d32a89a1e0a5ef360034a2f60a4b917c18838", - "0x0000000000000000000000001a1ec25dc08e98e5e93f1104b5e5cdd298707d31" - ], - "transactionHash": "0xa409941b8fb0650254d6f73e20530bae227a62bf40487ff5236fdfd8f3d79d0e", - "transactionIndex": "0x84" - }, - { - "address": "0xb33eaad8d922b1083446dc23f610c2567fb5180f", - "blockHash": "0x8d1e208afe40d386d2d7728a404ec107dc993bd3ca31b4ba430d81a4a8829ec7", - "blockNumber": "0x52dcebf", - "blockTimestamp": "0x6a063dcb", - "data": "0x000000000000000000000000000000000000000000000000072ce120a34f6940", - "logIndex": "0x691", - "removed": false, - "topics": [ - "0xddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef", - "0x000000000000000000000000c590175e458b83680867afd273527ff58f74c02b", - "0x000000000000000000000000b5e1a07c9b6ab3bee8d9bf4066d324c5da89c07f" - ], - "transactionHash": "0xa409941b8fb0650254d6f73e20530bae227a62bf40487ff5236fdfd8f3d79d0e", - "transactionIndex": "0x84" - }, - { - "address": "0xb33eaad8d922b1083446dc23f610c2567fb5180f", - "blockHash": "0x8d1e208afe40d386d2d7728a404ec107dc993bd3ca31b4ba430d81a4a8829ec7", - "blockNumber": "0x52dcebf", - "blockTimestamp": "0x6a063dcb", - "data": "0xffffffffffffffffffffffffffffffffffffffffffffff296eebc027c6cd96ea", - "logIndex": "0x692", - "removed": false, - "topics": [ - "0x8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925", - "0x000000000000000000000000c590175e458b83680867afd273527ff58f74c02b", - "0x000000000000000000000000111111125421ca6dc452d289314280a0f8842a65" - ], - "transactionHash": "0xa409941b8fb0650254d6f73e20530bae227a62bf40487ff5236fdfd8f3d79d0e", - "transactionIndex": "0x84" - }, - { - "address": "0x7ceb23fd6bc0add59e62ac25578270cff1b9f619", - "blockHash": "0x8d1e208afe40d386d2d7728a404ec107dc993bd3ca31b4ba430d81a4a8829ec7", - "blockNumber": "0x52dcebf", - "blockTimestamp": "0x6a063dcb", - "data": "0x0000000000000000000000000000000000000000000000000003026a7926c97c", - "logIndex": "0x693", - "removed": false, - "topics": [ - "0xddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef", - "0x000000000000000000000000b5e1a07c9b6ab3bee8d9bf4066d324c5da89c07f", - "0x0000000000000000000000007d51bad48d253dae37cc82cad07f73849286deec" - ], - "transactionHash": "0xa409941b8fb0650254d6f73e20530bae227a62bf40487ff5236fdfd8f3d79d0e", - "transactionIndex": "0x84" - }, - { - "address": "0xb5e1a07c9b6ab3bee8d9bf4066d324c5da89c07f", - "blockHash": "0x8d1e208afe40d386d2d7728a404ec107dc993bd3ca31b4ba430d81a4a8829ec7", - "blockNumber": "0x52dcebf", - "blockTimestamp": "0x6a063dcb", - "data": "0x00000000000000000000000000000000000000000000000033474c298f458b95000000000000000000000000000000000000000000000079ec4c28ba92b87fef", - "logIndex": "0x694", - "removed": false, - "topics": [ - "0x1c411e9a96e071241c2f21f7726b17ae89e3cab4c78be50e062b03a9fffbbad1" - ], - "transactionHash": "0xa409941b8fb0650254d6f73e20530bae227a62bf40487ff5236fdfd8f3d79d0e", - "transactionIndex": "0x84" - }, - { - "address": "0xb5e1a07c9b6ab3bee8d9bf4066d324c5da89c07f", - "blockHash": "0x8d1e208afe40d386d2d7728a404ec107dc993bd3ca31b4ba430d81a4a8829ec7", - "blockNumber": "0x52dcebf", - "blockTimestamp": "0x6a063dcb", - "data": "0x0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000072ce120a34f69400000000000000000000000000000000000000000000000000003026a7926c97c0000000000000000000000000000000000000000000000000000000000000000", - "logIndex": "0x695", - "removed": false, - "topics": [ - "0xd78ad95fa46c994b6551d0da85fc275fe613ce37657fb8d5e3d130840159d822", - "0x000000000000000000000000111111125421ca6dc452d289314280a0f8842a65", - "0x0000000000000000000000007d51bad48d253dae37cc82cad07f73849286deec" - ], - "transactionHash": "0xa409941b8fb0650254d6f73e20530bae227a62bf40487ff5236fdfd8f3d79d0e", - "transactionIndex": "0x84" - }, - { - "address": "0x2791bca1f2de4661ed88a30c99a7a9449aa84174", - "blockHash": "0x8d1e208afe40d386d2d7728a404ec107dc993bd3ca31b4ba430d81a4a8829ec7", - "blockNumber": "0x52dcebf", - "blockTimestamp": "0x6a063dcb", - "data": "0x00000000000000000000000000000000000000000000000000000000001d98af", - "logIndex": "0x696", - "removed": false, - "topics": [ - "0xddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef", - "0x0000000000000000000000007d51bad48d253dae37cc82cad07f73849286deec", - "0x000000000000000000000000c590175e458b83680867afd273527ff58f74c02b" - ], - "transactionHash": "0xa409941b8fb0650254d6f73e20530bae227a62bf40487ff5236fdfd8f3d79d0e", - "transactionIndex": "0x84" - }, - { - "address": "0x7d51bad48d253dae37cc82cad07f73849286deec", - "blockHash": "0x8d1e208afe40d386d2d7728a404ec107dc993bd3ca31b4ba430d81a4a8829ec7", - "blockNumber": "0x52dcebf", - "blockTimestamp": "0x6a063dcb", - "data": "0x00000000000000000000000000000000000000000000000000000005232a39090000000000000000000000000000000000000000000000008556fbab0c7bfbf3", - "logIndex": "0x697", - "removed": false, - "topics": [ - "0x1c411e9a96e071241c2f21f7726b17ae89e3cab4c78be50e062b03a9fffbbad1" - ], - "transactionHash": "0xa409941b8fb0650254d6f73e20530bae227a62bf40487ff5236fdfd8f3d79d0e", - "transactionIndex": "0x84" - }, - { - "address": "0x7d51bad48d253dae37cc82cad07f73849286deec", - "blockHash": "0x8d1e208afe40d386d2d7728a404ec107dc993bd3ca31b4ba430d81a4a8829ec7", - "blockNumber": "0x52dcebf", - "blockTimestamp": "0x6a063dcb", - "data": "0x00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000003026a7926c97c00000000000000000000000000000000000000000000000000000000001d98af0000000000000000000000000000000000000000000000000000000000000000", - "logIndex": "0x698", - "removed": false, - "topics": [ - "0xd78ad95fa46c994b6551d0da85fc275fe613ce37657fb8d5e3d130840159d822", - "0x000000000000000000000000111111125421ca6dc452d289314280a0f8842a65", - "0x000000000000000000000000c590175e458b83680867afd273527ff58f74c02b" - ], - "transactionHash": "0xa409941b8fb0650254d6f73e20530bae227a62bf40487ff5236fdfd8f3d79d0e", - "transactionIndex": "0x84" - }, - { - "address": "0x2791bca1f2de4661ed88a30c99a7a9449aa84174", - "blockHash": "0x8d1e208afe40d386d2d7728a404ec107dc993bd3ca31b4ba430d81a4a8829ec7", - "blockNumber": "0x52dcebf", - "blockTimestamp": "0x6a063dcb", - "data": "0x000000000000000000000000000000000000000000000000000000000000424b", - "logIndex": "0x699", - "removed": false, - "topics": [ - "0xddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef", - "0x000000000000000000000000c590175e458b83680867afd273527ff58f74c02b", - "0x000000000000000000000000930dedddb92fef1b4ab2665d250877339f064eac" - ], - "transactionHash": "0xa409941b8fb0650254d6f73e20530bae227a62bf40487ff5236fdfd8f3d79d0e", - "transactionIndex": "0x84" - }, - { - "address": "0x2791bca1f2de4661ed88a30c99a7a9449aa84174", - "blockHash": "0x8d1e208afe40d386d2d7728a404ec107dc993bd3ca31b4ba430d81a4a8829ec7", - "blockNumber": "0x52dcebf", - "blockTimestamp": "0x6a063dcb", - "data": "0x00000000000000000000000000000000000000000000000000000000001d5664", - "logIndex": "0x69a", - "removed": false, - "topics": [ - "0xddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef", - "0x000000000000000000000000c590175e458b83680867afd273527ff58f74c02b", - "0x000000000000000000000000141d32a89a1e0a5ef360034a2f60a4b917c18838" - ], - "transactionHash": "0xa409941b8fb0650254d6f73e20530bae227a62bf40487ff5236fdfd8f3d79d0e", - "transactionIndex": "0x84" - }, - { - "address": "0x1a1ec25dc08e98e5e93f1104b5e5cdd298707d31", - "blockHash": "0x8d1e208afe40d386d2d7728a404ec107dc993bd3ca31b4ba430d81a4a8829ec7", - "blockNumber": "0x52dcebf", - "blockTimestamp": "0x6a063dcb", - "data": "0x", - "logIndex": "0x69b", - "removed": false, - "topics": [ - "0xbeee1e6e7fe307ddcf84b0a16137a4430ad5e2480fc4f4a8e250ab56ccd7630d", - "0x6fb9a5a70689d237d6be4cb3f77d4974b3e8d5b00c05e153d174c88bade66e7e", - "0x000000000000000000000000141d32a89a1e0a5ef360034a2f60a4b917c18838" - ], - "transactionHash": "0xa409941b8fb0650254d6f73e20530bae227a62bf40487ff5236fdfd8f3d79d0e", - "transactionIndex": "0x84" - }, - { - "address": "0x53e0bca35ec356bd5dddfebbd1fc0fd03fabad39", - "blockHash": "0x8d1e208afe40d386d2d7728a404ec107dc993bd3ca31b4ba430d81a4a8829ec7", - "blockNumber": "0x52dcebf", - "blockTimestamp": "0x6a063dcb", - "data": "0x0000000000000000000000000000000000000000000000000161c7f85ff8bef6", - "logIndex": "0x69c", - "removed": false, - "topics": [ - "0x8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925", - "0x000000000000000000000000141d32a89a1e0a5ef360034a2f60a4b917c18838", - "0x0000000000000000000000001a1ec25dc08e98e5e93f1104b5e5cdd298707d31" - ], - "transactionHash": "0xa409941b8fb0650254d6f73e20530bae227a62bf40487ff5236fdfd8f3d79d0e", - "transactionIndex": "0x84" - }, - { - "address": "0x53e0bca35ec356bd5dddfebbd1fc0fd03fabad39", - "blockHash": "0x8d1e208afe40d386d2d7728a404ec107dc993bd3ca31b4ba430d81a4a8829ec7", - "blockNumber": "0x52dcebf", - "blockTimestamp": "0x6a063dcb", - "data": "0x0000000000000000000000000000000000000000000000000161c7f85ff8bef6", - "logIndex": "0x69d", - "removed": false, - "topics": [ - "0xddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef", - "0x000000000000000000000000141d32a89a1e0a5ef360034a2f60a4b917c18838", - "0x000000000000000000000000c590175e458b83680867afd273527ff58f74c02b" - ], - "transactionHash": "0xa409941b8fb0650254d6f73e20530bae227a62bf40487ff5236fdfd8f3d79d0e", - "transactionIndex": "0x84" - }, - { - "address": "0x53e0bca35ec356bd5dddfebbd1fc0fd03fabad39", - "blockHash": "0x8d1e208afe40d386d2d7728a404ec107dc993bd3ca31b4ba430d81a4a8829ec7", - "blockNumber": "0x52dcebf", - "blockTimestamp": "0x6a063dcb", - "data": "0x0000000000000000000000000000000000000000000000000000000000000000", - "logIndex": "0x69e", - "removed": false, - "topics": [ - "0x8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925", - "0x000000000000000000000000141d32a89a1e0a5ef360034a2f60a4b917c18838", - "0x0000000000000000000000001a1ec25dc08e98e5e93f1104b5e5cdd298707d31" - ], - "transactionHash": "0xa409941b8fb0650254d6f73e20530bae227a62bf40487ff5236fdfd8f3d79d0e", - "transactionIndex": "0x84" - }, - { - "address": "0x000000000022d473030f116ddee9f6b43ac78ba3", - "blockHash": "0x8d1e208afe40d386d2d7728a404ec107dc993bd3ca31b4ba430d81a4a8829ec7", - "blockNumber": "0x52dcebf", - "blockTimestamp": "0x6a063dcb", - "data": "0x0000000000000000000000000000000000000000000000000161c7f85ff8bef6000000000000000000000000000000000000000000000000000000006a063dcb", - "logIndex": "0x69f", - "removed": false, - "topics": [ - "0xda9fa7c1b00402c17d0161b249b1ab8bbec047c5a52207b9c112deffd817036b", - "0x000000000000000000000000c590175e458b83680867afd273527ff58f74c02b", - "0x00000000000000000000000053e0bca35ec356bd5dddfebbd1fc0fd03fabad39", - "0x0000000000000000000000001095692a6237d83c6a72f3f5efedb9a670c49223" - ], - "transactionHash": "0xa409941b8fb0650254d6f73e20530bae227a62bf40487ff5236fdfd8f3d79d0e", - "transactionIndex": "0x84" - }, - { - "address": "0x2791bca1f2de4661ed88a30c99a7a9449aa84174", - "blockHash": "0x8d1e208afe40d386d2d7728a404ec107dc993bd3ca31b4ba430d81a4a8829ec7", - "blockNumber": "0x52dcebf", - "blockTimestamp": "0x6a063dcb", - "data": "0x0000000000000000000000000000000000000000000000000000000000100687", - "logIndex": "0x6a0", - "removed": false, - "topics": [ - "0xddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef", - "0x00000000000000000000000022177148e681a6ca5242c9888ace170ee7ec47bd", - "0x000000000000000000000000c590175e458b83680867afd273527ff58f74c02b" - ], - "transactionHash": "0xa409941b8fb0650254d6f73e20530bae227a62bf40487ff5236fdfd8f3d79d0e", - "transactionIndex": "0x84" - }, - { - "address": "0x53e0bca35ec356bd5dddfebbd1fc0fd03fabad39", - "blockHash": "0x8d1e208afe40d386d2d7728a404ec107dc993bd3ca31b4ba430d81a4a8829ec7", - "blockNumber": "0x52dcebf", - "blockTimestamp": "0x6a063dcb", - "data": "0x0000000000000000000000000000000000000000000000000161c7f85ff8bef6", - "logIndex": "0x6a1", - "removed": false, - "topics": [ - "0xddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef", - "0x000000000000000000000000c590175e458b83680867afd273527ff58f74c02b", - "0x00000000000000000000000022177148e681a6ca5242c9888ace170ee7ec47bd" - ], - "transactionHash": "0xa409941b8fb0650254d6f73e20530bae227a62bf40487ff5236fdfd8f3d79d0e", - "transactionIndex": "0x84" - }, - { - "address": "0x53e0bca35ec356bd5dddfebbd1fc0fd03fabad39", - "blockHash": "0x8d1e208afe40d386d2d7728a404ec107dc993bd3ca31b4ba430d81a4a8829ec7", - "blockNumber": "0x52dcebf", - "blockTimestamp": "0x6a063dcb", - "data": "0xfffffffffffffffffffffffffffffffffffffffffffffffd7c5edc915cd31ecb", - "logIndex": "0x6a2", - "removed": false, - "topics": [ - "0x8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925", - "0x000000000000000000000000c590175e458b83680867afd273527ff58f74c02b", - "0x000000000000000000000000000000000022d473030f116ddee9f6b43ac78ba3" - ], - "transactionHash": "0xa409941b8fb0650254d6f73e20530bae227a62bf40487ff5236fdfd8f3d79d0e", - "transactionIndex": "0x84" - }, - { - "address": "0x22177148e681a6ca5242c9888ace170ee7ec47bd", - "blockHash": "0x8d1e208afe40d386d2d7728a404ec107dc993bd3ca31b4ba430d81a4a8829ec7", - "blockNumber": "0x52dcebf", - "blockTimestamp": "0x6a063dcb", - "data": "0xffffffffffffffffffffffffffffffffffffffffffffffffffffffffffeff9790000000000000000000000000000000000000000000000000161c7f85ff8bef6000000000000000000000000000000000004b2b2460bb0eca40d4bf7e02027c60000000000000000000000000000000000000000000000000003f1cbef25e4d9000000000000000000000000000000000000000000000000000000000003db5a", - "logIndex": "0x6a3", - "removed": false, - "topics": [ - "0xc42079f94a6350d7e6235f29174924f928cc2ac818eb64fed8004e115fbcca67", - "0x0000000000000000000000001095692a6237d83c6a72f3f5efedb9a670c49223", - "0x000000000000000000000000c590175e458b83680867afd273527ff58f74c02b" - ], - "transactionHash": "0xa409941b8fb0650254d6f73e20530bae227a62bf40487ff5236fdfd8f3d79d0e", - "transactionIndex": "0x84" - }, - { - "address": "0x2791bca1f2de4661ed88a30c99a7a9449aa84174", - "blockHash": "0x8d1e208afe40d386d2d7728a404ec107dc993bd3ca31b4ba430d81a4a8829ec7", - "blockNumber": "0x52dcebf", - "blockTimestamp": "0x6a063dcb", - "data": "0x00000000000000000000000000000000000000000000000000000000000023e5", - "logIndex": "0x6a4", - "removed": false, - "topics": [ - "0xddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef", - "0x000000000000000000000000c590175e458b83680867afd273527ff58f74c02b", - "0x000000000000000000000000930dedddb92fef1b4ab2665d250877339f064eac" - ], - "transactionHash": "0xa409941b8fb0650254d6f73e20530bae227a62bf40487ff5236fdfd8f3d79d0e", - "transactionIndex": "0x84" - }, - { - "address": "0x2791bca1f2de4661ed88a30c99a7a9449aa84174", - "blockHash": "0x8d1e208afe40d386d2d7728a404ec107dc993bd3ca31b4ba430d81a4a8829ec7", - "blockNumber": "0x52dcebf", - "blockTimestamp": "0x6a063dcb", - "data": "0x00000000000000000000000000000000000000000000000000000000000fe2a2", - "logIndex": "0x6a5", - "removed": false, - "topics": [ - "0xddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef", - "0x000000000000000000000000c590175e458b83680867afd273527ff58f74c02b", - "0x000000000000000000000000141d32a89a1e0a5ef360034a2f60a4b917c18838" - ], - "transactionHash": "0xa409941b8fb0650254d6f73e20530bae227a62bf40487ff5236fdfd8f3d79d0e", - "transactionIndex": "0x84" - }, - { - "address": "0x1a1ec25dc08e98e5e93f1104b5e5cdd298707d31", - "blockHash": "0x8d1e208afe40d386d2d7728a404ec107dc993bd3ca31b4ba430d81a4a8829ec7", - "blockNumber": "0x52dcebf", - "blockTimestamp": "0x6a063dcb", - "data": "0x", - "logIndex": "0x6a6", - "removed": false, - "topics": [ - "0xbeee1e6e7fe307ddcf84b0a16137a4430ad5e2480fc4f4a8e250ab56ccd7630d", - "0x9cc844e2828788f25f9d674f9dfb6a66ef6b8c38360c0ec1fa99e0b18c32eae8", - "0x000000000000000000000000141d32a89a1e0a5ef360034a2f60a4b917c18838" - ], - "transactionHash": "0xa409941b8fb0650254d6f73e20530bae227a62bf40487ff5236fdfd8f3d79d0e", - "transactionIndex": "0x84" - }, - { - "address": "0x2791bca1f2de4661ed88a30c99a7a9449aa84174", - "blockHash": "0x8d1e208afe40d386d2d7728a404ec107dc993bd3ca31b4ba430d81a4a8829ec7", - "blockNumber": "0x52dcebf", - "blockTimestamp": "0x6a063dcb", - "data": "0x000000000000000000000000000000000000000000000000000000000000d5ab", - "logIndex": "0x6a7", - "removed": false, - "topics": [ - "0xddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef", - "0x000000000000000000000000141d32a89a1e0a5ef360034a2f60a4b917c18838", - "0x000000000000000000000000e3478b0bb1a5084567c319096437924948be1964" - ], - "transactionHash": "0xa409941b8fb0650254d6f73e20530bae227a62bf40487ff5236fdfd8f3d79d0e", - "transactionIndex": "0x84" - }, - { - "address": "0xdb9b1e94b5b69df7e401ddbede43491141047db3", - "blockHash": "0x8d1e208afe40d386d2d7728a404ec107dc993bd3ca31b4ba430d81a4a8829ec7", - "blockNumber": "0x52dcebf", - "blockTimestamp": "0x6a063dcb", - "data": "0x00000000000000000000000000000000000000000000000000000000000000200000000000000000000000000000000000000000000000000000000000000a11000000000000000000000000141d32a89a1e0a5ef360034a2f60a4b917c18838ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff00000000000000000000000000000000000000000000000000000000000000c0ccb0ae71ecd51cce6e0c8753b60ad5c1735f49273787db56fcd6ca10223265dd000000000000000000000000000000000000000000000000000000000000118000000000000000000000000000000000000000000000000000000000000000020000000000000000000000000000000000000000000000000000000000000040000000000000000000000000000000000000000000000000000000000000010000000000000000000000000004658b29f6b82ed55274221a06fc97d318e25416000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000000a00000000000000000000000000000000000000000000000000000000000000020000000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000000000000000000000000000000000001e141e455d08721dd5bcda1baa6ea5633afd501700000000000000000000000000000000000000000000000000000000000000600000000000000000000000000000000000000000000000000000000000000f800000000000000000000000000000000000000000000000000000000000000f000000000000000000000000000000000000000000000000000000000000000020000000000000000000000000000000000000000000000000000000000000000600000000000000000000000000000000000000000000000000000000000000c0000000000000000000000000000000000000000000000000000000000000040000000000000000000000000000000000000000000000000000000000000004e0000000000000000000000000000000000000000000000000000000000000084000000000000000000000000000000000000000000000000000000000000009200000000000000000000000000000000000000000000000000000000000000de00000000000000000000000001a1ec25dc08e98e5e93f1104b5e5cdd298707d310000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000002a55f5755290000000000000000000000000000000000000000000000000000000000000080000000000000000000000000c2132d05d31c914a87c6611c10748aeb04b58e8f000000000000000000000000000000000000000000000000000000000006567600000000000000000000000000000000000000000000000000000000000000c000000000000000000000000000000000000000000000000000000000000000136f6e65496e6368563646656544796e616d69630000000000000000000000000000000000000000000000000000000000000000000000000000000000000001c0000000000000000000000000c2132d05d31c914a87c6611c10748aeb04b58e8f0000000000000000000000002791bca1f2de4661ed88a30c99a7a9449aa8417400000000000000000000000000000000000000000000000000000000000656760000000000000000000000000000000000000000000000000000000000063de500000000000000000000000000000000000000000000000000000000000001200000000000000000000000000000000000000000000000000000000000000e2d000000000000000000000000930dedddb92fef1b4ab2665d250877339f064eac0000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000008883800a8e000000000000000000000000c2132d05d31c914a87c6611c10748aeb04b58e8f00000000000000000000000000000000000000000000000000000000000656760000000000000000000000000000000000000000000000000000000000064c0008000000000000003b8b87c020bf018fddba3b352f3d913fe1c81b846fe0f4907dcbea7c00000000000000000000000000000000000000000000000069000000000000000000000000000000000000000000000000000000000000000000000000000000b33eaad8d922b1083446dc23f610c2567fb5180f000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000600000000000000000000000000000000000000000000000000000000000000044095ea7b30000000000000000000000001a1ec25dc08e98e5e93f1104b5e5cdd298707d31000000000000000000000000000000000000000000000000072ce120a34f6940000000000000000000000000000000000000000000000000000000000000000000000000000000001a1ec25dc08e98e5e93f1104b5e5cdd298707d310000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000002c55f5755290000000000000000000000000000000000000000000000000000000000000080000000000000000000000000b33eaad8d922b1083446dc23f610c2567fb5180f000000000000000000000000000000000000000000000000072ce120a34f694000000000000000000000000000000000000000000000000000000000000000c000000000000000000000000000000000000000000000000000000000000000136f6e65496e6368563646656544796e616d69630000000000000000000000000000000000000000000000000000000000000000000000000000000000000001e0000000000000000000000000b33eaad8d922b1083446dc23f610c2567fb5180f0000000000000000000000002791bca1f2de4661ed88a30c99a7a9449aa84174000000000000000000000000000000000000000000000000072ce120a34f694000000000000000000000000000000000000000000000000000000000001d30d60000000000000000000000000000000000000000000000000000000000000120000000000000000000000000000000000000000000000000000000000000424b000000000000000000000000930dedddb92fef1b4ab2665d250877339f064eac000000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000000000a88770ba91000000000000000000000000b33eaad8d922b1083446dc23f610c2567fb5180f000000000000000000000000000000000000000000000000072ce120a34f694000000000000000000000000000000000000000000000000000000000001d72cc08000000000000003b6d0340b5e1a07c9b6ab3bee8d9bf4066d324c5da89c07f00000000000000003b6d03407d51bad48d253dae37cc82cad07f73849286deec7dcbea7c0000000000000000000000000000000000000000000000005c00000000000000000000000000000000000000000000000000000000000000000000000000000053e0bca35ec356bd5dddfebbd1fc0fd03fabad39000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000600000000000000000000000000000000000000000000000000000000000000044095ea7b30000000000000000000000001a1ec25dc08e98e5e93f1104b5e5cdd298707d310000000000000000000000000000000000000000000000000161c7f85ff8bef6000000000000000000000000000000000000000000000000000000000000000000000000000000001a1ec25dc08e98e5e93f1104b5e5cdd298707d310000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000004255f575529000000000000000000000000000000000000000000000000000000000000008000000000000000000000000053e0bca35ec356bd5dddfebbd1fc0fd03fabad390000000000000000000000000000000000000000000000000161c7f85ff8bef600000000000000000000000000000000000000000000000000000000000000c00000000000000000000000000000000000000000000000000000000000000018756e69737761705065726d69743246656544796e616d69630000000000000000000000000000000000000000000000000000000000000000000000000000034000000000000000000000000053e0bca35ec356bd5dddfebbd1fc0fd03fabad390000000000000000000000002791bca1f2de4661ed88a30c99a7a9449aa841740000000000000000000000000000000000000000000000000161c7f85ff8bef600000000000000000000000000000000000000000000000000000000000fce4c000000000000000000000000000000000000000000000000000000000000012000000000000000000000000000000000000000000000000000000000000023e5000000000000000000000000930dedddb92fef1b4ab2665d250877339f064eac0000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000020e3593564c000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000000a0000000000000000000000000000000000000000000000000000000006a0644b400000000000000000000000000000000000000000000000000000000000000010000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000000000200000000000000000000000000000000000000000000000000000000000000100000000000000000000000000c590175e458b83680867afd273527ff58f74c02b0000000000000000000000000000000000000000000000000161c7f85ff8bef600000000000000000000000000000000000000000000000000000000000ff21d00000000000000000000000000000000000000000000000000000000000000a00000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000002b53e0bca35ec356bd5dddfebbd1fc0fd03fabad390001f42791bca1f2de4661ed88a30c99a7a9449aa84174000000000000000000000000000000000000000000756e69780000b2c5de0b000000000000000000000000000000000000cb0000000000000000000000000000000000000000000000000000000000000000000000000000002791bca1f2de4661ed88a30c99a7a9449aa84174000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000600000000000000000000000000000000000000000000000000000000000000044a9059cbb000000000000000000000000e3478b0bb1a5084567c319096437924948be1964000000000000000000000000000000000000000000000000000000000000d5ab0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000041a86afe61725d346d6f91188cfa97c34dcf56620989db43c260b4b0c79b1c874c1f96eed6cd037031057b89165b8d7b858a545a4ec7cf706a2a8328b836603b171c00000000000000000000000000000000000000000000000000000000000000", - "logIndex": "0x6a8", - "removed": false, - "topics": [ - "0x40dadaa36c6c2e3d7317e24757451ffb2d603d875f0ad5e92c5dd156573b1873", - "0x000000000000000000000000141d32a89a1e0a5ef360034a2f60a4b917c18838", - "0x000000000000000000000000b01caea8c6c47bbf4f4b4c5080ca642043359c2e" - ], - "transactionHash": "0xa409941b8fb0650254d6f73e20530bae227a62bf40487ff5236fdfd8f3d79d0e", - "transactionIndex": "0x84" - }, - { - "address": "0x0000000000000000000000000000000000001010", - "blockHash": "0x8d1e208afe40d386d2d7728a404ec107dc993bd3ca31b4ba430d81a4a8829ec7", - "blockNumber": "0x52dcebf", - "blockTimestamp": "0x6a063dcb", - "data": "0x00000000000000000000000000000000000000000000000000f2e210000468580000000000000000000000000000000000000000000025df483d207474c1a82e000000000000000000000000000000000000000000112bf3c03b02f008577f940000000000000000000000000000000000000000000025df474a3e6474bd3fd6000000000000000000000000000000000000000000112bf3c12de500085be7ec", - "logIndex": "0x6a9", - "removed": false, - "topics": [ - "0x4dfe1bbbcf077ddc3e01291eea2d5c70c2b422b415d95645b9adcfd678cb1d63", - "0x0000000000000000000000000000000000000000000000000000000000001010", - "0x000000000000000000000000b01caea8c6c47bbf4f4b4c5080ca642043359c2e", - "0x0000000000000000000000007ee41d8a25641000661b1ef5e6ae8a00400466b0" - ], - "transactionHash": "0xa409941b8fb0650254d6f73e20530bae227a62bf40487ff5236fdfd8f3d79d0e", - "transactionIndex": "0x84" - } - ], - "logsBloom": "0x00210000002000000008000080000000000000000000000844400000800404000040000000000000001010000202000100018000808020000000001000280000000020810800010806024008020020a00000002002000c00000140000001000000100000024000000100000000000400900000000004000180000014004900000021080000880041020408020c0000000001000900001088200000400200080022100000080000000100000000000100c0000040100000000000010800000040200800024000000000010000000000004000004000000050401000002000000000300080000021000002000004000300c0000004020000000000000000110500", - "status": "0x1", - "to": "0xdb9b1e94b5b69df7e401ddbede43491141047db3", - "transactionHash": "0xa409941b8fb0650254d6f73e20530bae227a62bf40487ff5236fdfd8f3d79d0e", - "transactionIndex": "0x84", - "type": "0x4" - }, - "type": "swap", - "userEditedGasLimit": false, - "userFeeLevel": "medium", - "v": "0x0", - "verifiedOnBlockchain": true - }, - { - "baseFeePerGas": "0x1312d00", - "batchId": "0x37313779af02408989f137e6541596ed", - "blockTimestamp": "0x6a06404a", - "chainId": "0xa4b1", - "defaultGasEstimates": { - "estimateType": "medium", - "gas": "0x1e834", - "maxFeePerGas": "0x395a210", - "maxPriorityFeePerGas": "0x0" - }, - "delegationAddress": "0x63c0c19a282a1b52b07dd5a65b58948a07dae32b", - "gasFeeEstimates": { - "high": { - "maxFeePerGas": "0xbf2c6e0", - "maxPriorityFeePerGas": "0x0" - }, - "low": { - "maxFeePerGas": "0x263c160", - "maxPriorityFeePerGas": "0x0" - }, - "medium": { - "maxFeePerGas": "0x395a210", - "maxPriorityFeePerGas": "0x0" - }, - "type": "fee-market" - }, - "gasFeeEstimatesLoaded": true, - "gasLimitNoBuffer": "0x196d6", - "hash": "0x905c4d1137e0fb354433854d51eaa563ddd4d222010ca6cd12f11b046757224f", - "id": "ebc8c980-4fdc-11f1-b40a-151a477935d3", - "isGasFeeIncluded": false, - "isGasFeeSponsored": false, - "isGasFeeTokenIgnoredIfBalance": false, - "nestedTransactions": [ - { - "data": "0x3ce33bff000000000000000000000000000000000000000000000000000000000000008000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000011c37937e0800000000000000000000000000000000000000000000000000000000000000000c0000000000000000000000000000000000000000000000000000000000000000e72656c617941646170746572563200000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001a00000000000000000000000004cd00e387622c35bddb9b4c962c136462338bc310000000000000000000000004cd00e387622c35bddb9b4c962c136462338bc310000000000000000000000000000000000000000000000000000000000000038000000000000000000000000000000000000000000000000000000000000000000000000000000000000000055d398326f99059ff775485246999027b319795500000000000000000000000000000000000000000000000000119baee0ab04000000000000000000000000000000000000000000000000000000000000000140000000000000000000000000000000000000000000000000000027ca57357c0000000000000000000000000056ca675c3633cc16bd6849e2b431d4e8de5e23bf000000000000000000000000000000000000000000000000000000000000004449290c1c000000000000000000000000141d32a89a1e0a5ef360034a2f60a4b917c1883898a0daaba6718116f5e32861eb177f82fda2b12c3ce8db0702614b3403ce103b0000000000000000000000000000000000000000000000000000000005", - "effectiveGas": 84621, - "feeEstimate": 1697497260000, - "from": "0x141d32a89a1e0a5ef360034a2f60a4b917c18838", - "gas": "0x21153", - "gasCost": "1697497260000", - "gasIncludedFeeData": { - "balanceNeeded": "0x11c61d1204fb8a", - "currentBalance": "0x3c396afd1751c6", - "error": "", - "gas": "0x160e2", - "maxFeePerGas": "0x1ea4c94", - "maxPriorityFeePerGas": "0x4" - }, - "maxFeePerGas": "0x395a210", - "maxPriorityFeePerGas": "0x0", - "to": "0x23981fC34e69eeDFE2BD9a0a9fCb0719Fe09DbFC", - "type": "bridge", - "value": "0x11c37937e08000" - } - ], - "networkClientId": "arbitrum-mainnet", - "origin": "metamask", - "originalGasEstimate": "0x1e834", - "r": "0x8b911cfefbff1891bca4eb341aeeb21f063866fe14394bc64c10e37bc6ffa4aa", - "rawTx": "0x02f9044f82a4b12c80840395a2108301e83494141d32a89a1e0a5ef360034a2f60a4b917c1883880b903e4e9ae5c5301000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000040000000000000000000000000000000000000000000000000000000000000038000000000000000000000000000000000000000000000000000000000000000200000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000002000000000000000000000000023981fc34e69eedfe2bd9a0a9fcb0719fe09dbfc0000000000000000000000000000000000000000000000000011c37937e08000000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000002853ce33bff000000000000000000000000000000000000000000000000000000000000008000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000011c37937e0800000000000000000000000000000000000000000000000000000000000000000c0000000000000000000000000000000000000000000000000000000000000000e72656c617941646170746572563200000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001a00000000000000000000000004cd00e387622c35bddb9b4c962c136462338bc310000000000000000000000004cd00e387622c35bddb9b4c962c136462338bc310000000000000000000000000000000000000000000000000000000000000038000000000000000000000000000000000000000000000000000000000000000000000000000000000000000055d398326f99059ff775485246999027b319795500000000000000000000000000000000000000000000000000119baee0ab04000000000000000000000000000000000000000000000000000000000000000140000000000000000000000000000000000000000000000000000027ca57357c0000000000000000000000000056ca675c3633cc16bd6849e2b431d4e8de5e23bf000000000000000000000000000000000000000000000000000000000000004449290c1c000000000000000000000000141d32a89a1e0a5ef360034a2f60a4b917c1883898a0daaba6718116f5e32861eb177f82fda2b12c3ce8db0702614b3403ce103b0000000000000000000000000000000000000000000000000000000005000000000000000000000000000000000000000000000000000000c080a08b911cfefbff1891bca4eb341aeeb21f063866fe14394bc64c10e37bc6ffa4aaa06502a05e03c0ff97e2198298c38ac192fce5c321ce0c2c8afd3db8b61672d115", - "s": "0x6502a05e03c0ff97e2198298c38ac192fce5c321ce0c2c8afd3db8b61672d115", - "status": "confirmed", - "submittedTime": 1778794569944, - "time": 1778794569240, - "txParams": { - "data": "0xe9ae5c5301000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000040000000000000000000000000000000000000000000000000000000000000038000000000000000000000000000000000000000000000000000000000000000200000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000002000000000000000000000000023981fc34e69eedfe2bd9a0a9fcb0719fe09dbfc0000000000000000000000000000000000000000000000000011c37937e08000000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000002853ce33bff000000000000000000000000000000000000000000000000000000000000008000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000011c37937e0800000000000000000000000000000000000000000000000000000000000000000c0000000000000000000000000000000000000000000000000000000000000000e72656c617941646170746572563200000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001a00000000000000000000000004cd00e387622c35bddb9b4c962c136462338bc310000000000000000000000004cd00e387622c35bddb9b4c962c136462338bc310000000000000000000000000000000000000000000000000000000000000038000000000000000000000000000000000000000000000000000000000000000000000000000000000000000055d398326f99059ff775485246999027b319795500000000000000000000000000000000000000000000000000119baee0ab04000000000000000000000000000000000000000000000000000000000000000140000000000000000000000000000000000000000000000000000027ca57357c0000000000000000000000000056ca675c3633cc16bd6849e2b431d4e8de5e23bf000000000000000000000000000000000000000000000000000000000000004449290c1c000000000000000000000000141d32a89a1e0a5ef360034a2f60a4b917c1883898a0daaba6718116f5e32861eb177f82fda2b12c3ce8db0702614b3403ce103b0000000000000000000000000000000000000000000000000000000005000000000000000000000000000000000000000000000000000000", - "from": "0x141d32a89a1e0a5ef360034a2f60a4b917c18838", - "gas": "0x1e834", - "gasLimit": "0x1e834", - "maxFeePerGas": "0x395a210", - "maxPriorityFeePerGas": "0x0", - "nonce": "0x2c", - "to": "0x141d32a89a1e0a5ef360034a2f60a4b917c18838", - "type": "0x2", - "value": "0x0" - }, - "txReceipt": { - "blockHash": "0x522051b2b11698154686e40e17b7590bba5476679066c8b5d1c38bdea0a047c7", - "blockNumber": "0x1b96d99a", - "contractAddress": null, - "cumulativeGasUsed": "0x358b5", - "effectiveGasPrice": "0x1312d00", - "from": "0x141d32a89a1e0a5ef360034a2f60a4b917c18838", - "gasUsed": "0x17fbe", - "gasUsedForL1": "0x56", - "l1BlockNumber": "0x17eefa8", - "logs": [ - { - "address": "0x56ca675c3633cc16bd6849e2b431d4e8de5e23bf", - "blockHash": "0x522051b2b11698154686e40e17b7590bba5476679066c8b5d1c38bdea0a047c7", - "blockNumber": "0x1b96d99a", - "blockTimestamp": "0x6a06404a", - "data": "0x000000000000000000000000000000000000000000000000000027ca57357c00", - "logIndex": "0x3", - "removed": false, - "topics": [ - "0x3d0ce9bfc3ed7d6862dbb28b2dea94561fe714a1b4d019aa8af39730d1ad7c3d", - "0x0000000000000000000000007a70cb77a12fa2dc3fa1bc1dcbca4c79db71a289" - ], - "transactionHash": "0x905c4d1137e0fb354433854d51eaa563ddd4d222010ca6cd12f11b046757224f", - "transactionIndex": "0x2" - }, - { - "address": "0x7a70cb77a12fa2dc3fa1bc1dcbca4c79db71a289", - "blockHash": "0x522051b2b11698154686e40e17b7590bba5476679066c8b5d1c38bdea0a047c7", - "blockNumber": "0x1b96d99a", - "blockTimestamp": "0x6a06404a", - "data": "0x000000000000000000000000000000000000000000000000000000000000000000000000000000000000000056ca675c3633cc16bd6849e2b431d4e8de5e23bf000000000000000000000000000000000000000000000000000027ca57357c00", - "logIndex": "0x4", - "removed": false, - "topics": [ - "0x6ded982279c8387ad8a63e73385031a3807c1862e633f06e09d11bcb6e282f60" - ], - "transactionHash": "0x905c4d1137e0fb354433854d51eaa563ddd4d222010ca6cd12f11b046757224f", - "transactionIndex": "0x2" - }, - { - "address": "0x4cd00e387622c35bddb9b4c962c136462338bc31", - "blockHash": "0x522051b2b11698154686e40e17b7590bba5476679066c8b5d1c38bdea0a047c7", - "blockNumber": "0x1b96d99a", - "blockTimestamp": "0x6a06404a", - "data": "0x000000000000000000000000141d32a89a1e0a5ef360034a2f60a4b917c1883800000000000000000000000000000000000000000000000000119baee0ab040098a0daaba6718116f5e32861eb177f82fda2b12c3ce8db0702614b3403ce103b", - "logIndex": "0x5", - "removed": false, - "topics": [ - "0x8032066556caf3967d8fec4ad22a2d9e1e9576556b2903a0fcd5b1fd201e3477" - ], - "transactionHash": "0x905c4d1137e0fb354433854d51eaa563ddd4d222010ca6cd12f11b046757224f", - "transactionIndex": "0x2" - }, - { - "address": "0x7a70cb77a12fa2dc3fa1bc1dcbca4c79db71a289", - "blockHash": "0x522051b2b11698154686e40e17b7590bba5476679066c8b5d1c38bdea0a047c7", - "blockNumber": "0x1b96d99a", - "blockTimestamp": "0x6a06404a", - "data": "0x000000000000000000000000141d32a89a1e0a5ef360034a2f60a4b917c188380000000000000000000000004cd00e387622c35bddb9b4c962c136462338bc310000000000000000000000000000000000000000000000000000000000000038000000000000000000000000000000000000000000000000000000000000000000000000000000000000000055d398326f99059ff775485246999027b319795500000000000000000000000000000000000000000000000000119baee0ab0400", - "logIndex": "0x6", - "removed": false, - "topics": [ - "0x831bac9533a2034226daa21109dbd4f887674f0fe4877e1a8b35b3ffe1bdce76" - ], - "transactionHash": "0x905c4d1137e0fb354433854d51eaa563ddd4d222010ca6cd12f11b046757224f", - "transactionIndex": "0x2" - } - ], - "logsBloom": "0x00000000000000000000000000000000000000000000000000000000000000004000000000000080000000000000000000000000000000000000000000000000100000000000002000000000000100000000000000000000000000001000000004000000000010000000000000000001000000002000000000800000000000000000000000000000000000000000000000000000000000000000000000000000000000200000000000000040000000000000000000000000004000000000100008000020000000000000040000000000000000000000200000000000000000000000000000000000000080800000000000000000800000000004000400000000", - "status": "0x1", - "timeboosted": false, - "to": "0x141d32a89a1e0a5ef360034a2f60a4b917c18838", - "transactionHash": "0x905c4d1137e0fb354433854d51eaa563ddd4d222010ca6cd12f11b046757224f", - "transactionIndex": "0x2", - "type": "0x2" - }, - "type": "bridge", - "userEditedGasLimit": false, - "userFeeLevel": "medium", - "v": "0x0", - "verifiedOnBlockchain": true - }, - { - "batchId": "0x19e287b2d20", - "chainId": "0x38", - "defaultGasEstimates": { - "estimateType": "medium", - "gas": "0x8a5b7", - "maxFeePerGas": "0x2faf080", - "maxPriorityFeePerGas": "0x2faf080" - }, - "delegationAddress": "0x63c0c19a282a1b52b07dd5a65b58948a07dae32b", - "error": { - "message": "RPC submit: gas required exceeds allowance (505823)", - "name": "Error", - "stack": "Error: RPC submit: gas required exceeds allowance (505823)\n at TransactionController._TransactionController_publishTransaction (chrome-extension://hebhblbkkdabgoldnojllkipeoacjioc/js-node_modules_metamask_s.js:47207:15)\n at async chrome-extension://hebhblbkkdabgoldnojllkipeoacjioc/js-node_modules_metamask_s.js:47893:47\n at async TransactionController._TransactionController_defaultPublishHook (chrome-extension://hebhblbkkdabgoldnojllkipeoacjioc/js-node_modules_metamask_s.js:47886:5)\n at async TransactionController._TransactionController_approveTransaction (chrome-extension://hebhblbkkdabgoldnojllkipeoacjioc/js-node_modules_metamask_s.js:47157:43)\n at async TransactionController._TransactionController_processApproval (chrome-extension://hebhblbkkdabgoldnojllkipeoacjioc/js-node_modules_metamask_s.js:47021:40)\n at async addTransactionBatchWith7702 (chrome-extension://hebhblbkkdabgoldnojllkipeoacjioc/js-node_modules_metamask_s.js:30910:29)\n at async addTransactionBatch (chrome-extension://hebhblbkkdabgoldnojllkipeoacjioc/js-node_modules_metamask_s.js:30717:20)\n at async TransactionController.addTransactionBatch (chrome-extension://hebhblbkkdabgoldnojllkipeoacjioc/js-node_modules_metamask_s.js:45785:16)\n at async addTransactionBatch (chrome-extension://hebhblbkkdabgoldnojllkipeoacjioc/js-node_modules_metamask_a.js:56267:25)\n at async submitBatchSellHandler (chrome-extension://hebhblbkkdabgoldnojllkipeoacjioc/js-node_modules_metamask_a.js:18238:33)" - }, - "gasFeeEstimates": { - "high": { - "maxFeePerGas": "0x2faf080", - "maxPriorityFeePerGas": "0x2faf080" - }, - "low": { - "maxFeePerGas": "0x2faf080", - "maxPriorityFeePerGas": "0x2faf080" - }, - "medium": { - "maxFeePerGas": "0x2faf080", - "maxPriorityFeePerGas": "0x2faf080" - }, - "type": "fee-market" - }, - "gasFeeEstimatesLoaded": true, - "gasLimitNoBuffer": "0x8a5b7", - "id": "43539080-4fde-11f1-b40a-151a477935d3", - "isGasFeeIncluded": true, - "isGasFeeSponsored": false, - "isGasFeeTokenIgnoredIfBalance": false, - "nestedTransactions": [ - { - "data": "0x095ea7b30000000000000000000000001a1ec25dc08e98e5e93f1104b5e5cdd298707d310000000000000000000000000000000000000000000000000298348bed9600b7", - "from": "0x141d32a89a1e0a5ef360034a2f60a4b917c18838", - "to": "0xf8a0bf9cf54bb92f17374d9e9a321e6a111a51bd", - "type": "swapApproval", - "value": "0x0" - }, - { - "data": "0x5f5755290000000000000000000000000000000000000000000000000000000000000080000000000000000000000000f8a0bf9cf54bb92f17374d9e9a321e6a111a51bd0000000000000000000000000000000000000000000000000298348bed9600b700000000000000000000000000000000000000000000000000000000000000c00000000000000000000000000000000000000000000000000000000000000018756e69737761705065726d69743246656544796e616d696300000000000000000000000000000000000000000000000000000000000000000000000000000360000000000000000000000000f8a0bf9cf54bb92f17374d9e9a321e6a111a51bd00000000000000000000000055d398326f99059ff775485246999027b31979550000000000000000000000000000000000000000000000000298348bed9600b70000000000000000000000000000000000000000000000001ab2a73a9f2201cb0000000000000000000000000000000000000000000000000000000000000120000000000000000000000000000000000000000000000000003d8ff6d7e19783000000000000000000000000b28da7bc87a9dd1e60849aa7fcb5da24ea913c420000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000022e3593564c000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000000a0000000000000000000000000000000000000000000000000000000006a06498d00000000000000000000000000000000000000000000000000000000000000010000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000000000200000000000000000000000000000000000000000000000000000000000000120000000000000000000000000c590175e458b83680867afd273527ff58f74c02b0000000000000000000000000000000000000000000000000298348bed9600b70000000000000000000000000000000000000000000000001af1be52a765a14c00000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000000000000000000000000000000010000000000000000000000000000000000000000000000000000000000000042f8a0bf9cf54bb92f17374d9e9a321e6a111a51bd0001f42170ed0880ac9a755fd29b2688956bd959f933f80001f455d398326f99059ff775485246999027b3197955000000000000000000000000000000000000000000000000000000000000756e69780000b2c5de0b000000000000000000000000000000000000ad", - "from": "0x141d32a89a1e0a5ef360034a2f60a4b917c18838", - "to": "0x1a1ec25DC08e98e5E93F1104B5e5cdD298707d31", - "type": "swap", - "value": "0x0" - }, - { - "data": "0x095ea7b30000000000000000000000001a1ec25dc08e98e5e93f1104b5e5cdd298707d310000000000000000000000000000000000000000000000001af6aaa3c79f6657", - "from": "0x141d32a89a1e0a5ef360034a2f60a4b917c18838", - "to": "0x000ae314e2a2172a039b26378814c252734f556a", - "type": "swapApproval", - "value": "0x0" - }, - { - "data": "0x5f5755290000000000000000000000000000000000000000000000000000000000000080000000000000000000000000000ae314e2a2172a039b26378814c252734f556a0000000000000000000000000000000000000000000000001af6aaa3c79f665700000000000000000000000000000000000000000000000000000000000000c00000000000000000000000000000000000000000000000000000000000000018756e69737761705065726d69743246656544796e616d696300000000000000000000000000000000000000000000000000000000000000000000000000000340000000000000000000000000000ae314e2a2172a039b26378814c252734f556a00000000000000000000000055d398326f99059ff775485246999027b31979550000000000000000000000000000000000000000000000001af6aaa3c79f665700000000000000000000000000000000000000000000000011dd825eb779b23d00000000000000000000000000000000000000000000000000000000000001200000000000000000000000000000000000000000000000000029320357f066c9000000000000000000000000b28da7bc87a9dd1e60849aa7fcb5da24ea913c420000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000020e3593564c000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000000a0000000000000000000000000000000000000000000000000000000006a06498d00000000000000000000000000000000000000000000000000000000000000010000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000000000200000000000000000000000000000000000000000000000000000000000000100000000000000000000000000c590175e458b83680867afd273527ff58f74c02b0000000000000000000000000000000000000000000000001af6aaa3c79f66570000000000000000000000000000000000000000000000001207ba1cfcc2244b00000000000000000000000000000000000000000000000000000000000000a00000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000002b000ae314e2a2172a039b26378814c252734f556a0001f455d398326f99059ff775485246999027b3197955000000000000000000000000000000000000000000756e69780000b2c5de0b000000000000000000000000000000000000e0", - "from": "0x141d32a89a1e0a5ef360034a2f60a4b917c18838", - "to": "0x1a1ec25DC08e98e5E93F1104B5e5cdD298707d31", - "type": "swap", - "value": "0x0" - }, - { - "data": "0xa9059cbb000000000000000000000000e3478b0bb1a5084567c319096437924948be196400000000000000000000000000000000000000000000000000ba7fcd7dc8bade", - "from": "0x141d32a89a1e0a5ef360034a2f60a4b917c18838", - "to": "0x55d398326f99059ff775485246999027b3197955", - "type": "transfer", - "value": "0x0" - } - ], - "networkClientId": "9a1eafde-5f04-434b-b011-e9de5c50baf0", - "origin": "metamask", - "originalGasEstimate": "0x8a5b7", - "r": "0xb07541667b9413696707b768385f6d8254d47a142b7b112f8a261e05825bb1e8", - "rawTx": "0x02f90df138528402faf0808402faf0808308a5b794141d32a89a1e0a5ef360034a2f60a4b917c1883880b90d84e9ae5c53010100000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000400000000000000000000000000000000000000000000000000000000000000d200000000000000000000000000000000000000000000000000000000000000020000000000000000000000000000000000000000000000000000000000000000500000000000000000000000000000000000000000000000000000000000000a00000000000000000000000000000000000000000000000000000000000000180000000000000000000000000000000000000000000000000000000000000066000000000000000000000000000000000000000000000000000000000000007400000000000000000000000000000000000000000000000000000000000000c00000000000000000000000000f8a0bf9cf54bb92f17374d9e9a321e6a111a51bd000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000600000000000000000000000000000000000000000000000000000000000000044095ea7b30000000000000000000000001a1ec25dc08e98e5e93f1104b5e5cdd298707d310000000000000000000000000000000000000000000000000298348bed9600b7000000000000000000000000000000000000000000000000000000000000000000000000000000001a1ec25dc08e98e5e93f1104b5e5cdd298707d310000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000004455f5755290000000000000000000000000000000000000000000000000000000000000080000000000000000000000000f8a0bf9cf54bb92f17374d9e9a321e6a111a51bd0000000000000000000000000000000000000000000000000298348bed9600b700000000000000000000000000000000000000000000000000000000000000c00000000000000000000000000000000000000000000000000000000000000018756e69737761705065726d69743246656544796e616d696300000000000000000000000000000000000000000000000000000000000000000000000000000360000000000000000000000000f8a0bf9cf54bb92f17374d9e9a321e6a111a51bd00000000000000000000000055d398326f99059ff775485246999027b31979550000000000000000000000000000000000000000000000000298348bed9600b70000000000000000000000000000000000000000000000001ab2a73a9f2201cb0000000000000000000000000000000000000000000000000000000000000120000000000000000000000000000000000000000000000000003d8ff6d7e19783000000000000000000000000b28da7bc87a9dd1e60849aa7fcb5da24ea913c420000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000022e3593564c000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000000a0000000000000000000000000000000000000000000000000000000006a06498d00000000000000000000000000000000000000000000000000000000000000010000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000000000200000000000000000000000000000000000000000000000000000000000000120000000000000000000000000c590175e458b83680867afd273527ff58f74c02b0000000000000000000000000000000000000000000000000298348bed9600b70000000000000000000000000000000000000000000000001af1be52a765a14c00000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000000000000000000000000000000010000000000000000000000000000000000000000000000000000000000000042f8a0bf9cf54bb92f17374d9e9a321e6a111a51bd0001f42170ed0880ac9a755fd29b2688956bd959f933f80001f455d398326f99059ff775485246999027b3197955000000000000000000000000000000000000000000000000000000000000756e69780000b2c5de0b000000000000000000000000000000000000ad000000000000000000000000000000000000000000000000000000000000000000000000000000000ae314e2a2172a039b26378814c252734f556a000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000600000000000000000000000000000000000000000000000000000000000000044095ea7b30000000000000000000000001a1ec25dc08e98e5e93f1104b5e5cdd298707d310000000000000000000000000000000000000000000000001af6aaa3c79f6657000000000000000000000000000000000000000000000000000000000000000000000000000000001a1ec25dc08e98e5e93f1104b5e5cdd298707d310000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000004255f5755290000000000000000000000000000000000000000000000000000000000000080000000000000000000000000000ae314e2a2172a039b26378814c252734f556a0000000000000000000000000000000000000000000000001af6aaa3c79f665700000000000000000000000000000000000000000000000000000000000000c00000000000000000000000000000000000000000000000000000000000000018756e69737761705065726d69743246656544796e616d696300000000000000000000000000000000000000000000000000000000000000000000000000000340000000000000000000000000000ae314e2a2172a039b26378814c252734f556a00000000000000000000000055d398326f99059ff775485246999027b31979550000000000000000000000000000000000000000000000001af6aaa3c79f665700000000000000000000000000000000000000000000000011dd825eb779b23d00000000000000000000000000000000000000000000000000000000000001200000000000000000000000000000000000000000000000000029320357f066c9000000000000000000000000b28da7bc87a9dd1e60849aa7fcb5da24ea913c420000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000020e3593564c000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000000a0000000000000000000000000000000000000000000000000000000006a06498d00000000000000000000000000000000000000000000000000000000000000010000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000000000200000000000000000000000000000000000000000000000000000000000000100000000000000000000000000c590175e458b83680867afd273527ff58f74c02b0000000000000000000000000000000000000000000000001af6aaa3c79f66570000000000000000000000000000000000000000000000001207ba1cfcc2244b00000000000000000000000000000000000000000000000000000000000000a00000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000002b000ae314e2a2172a039b26378814c252734f556a0001f455d398326f99059ff775485246999027b3197955000000000000000000000000000000000000000000756e69780000b2c5de0b000000000000000000000000000000000000e000000000000000000000000000000000000000000000000000000000000000000000000000000055d398326f99059ff775485246999027b3197955000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000600000000000000000000000000000000000000000000000000000000000000044a9059cbb000000000000000000000000e3478b0bb1a5084567c319096437924948be196400000000000000000000000000000000000000000000000000ba7fcd7dc8bade00000000000000000000000000000000000000000000000000000000c080a0b07541667b9413696707b768385f6d8254d47a142b7b112f8a261e05825bb1e8a0525857ed3f4b63eeab43364b6a703b9ae5b6bab5c0d20561ae0f176275c0a25f", - "s": "0x525857ed3f4b63eeab43364b6a703b9ae5b6bab5c0d20561ae0f176275c0a25f", - "status": "failed", - "time": 1778795145608, - "txParams": { - "data": "0xe9ae5c53010100000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000400000000000000000000000000000000000000000000000000000000000000d200000000000000000000000000000000000000000000000000000000000000020000000000000000000000000000000000000000000000000000000000000000500000000000000000000000000000000000000000000000000000000000000a00000000000000000000000000000000000000000000000000000000000000180000000000000000000000000000000000000000000000000000000000000066000000000000000000000000000000000000000000000000000000000000007400000000000000000000000000000000000000000000000000000000000000c00000000000000000000000000f8a0bf9cf54bb92f17374d9e9a321e6a111a51bd000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000600000000000000000000000000000000000000000000000000000000000000044095ea7b30000000000000000000000001a1ec25dc08e98e5e93f1104b5e5cdd298707d310000000000000000000000000000000000000000000000000298348bed9600b7000000000000000000000000000000000000000000000000000000000000000000000000000000001a1ec25dc08e98e5e93f1104b5e5cdd298707d310000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000004455f5755290000000000000000000000000000000000000000000000000000000000000080000000000000000000000000f8a0bf9cf54bb92f17374d9e9a321e6a111a51bd0000000000000000000000000000000000000000000000000298348bed9600b700000000000000000000000000000000000000000000000000000000000000c00000000000000000000000000000000000000000000000000000000000000018756e69737761705065726d69743246656544796e616d696300000000000000000000000000000000000000000000000000000000000000000000000000000360000000000000000000000000f8a0bf9cf54bb92f17374d9e9a321e6a111a51bd00000000000000000000000055d398326f99059ff775485246999027b31979550000000000000000000000000000000000000000000000000298348bed9600b70000000000000000000000000000000000000000000000001ab2a73a9f2201cb0000000000000000000000000000000000000000000000000000000000000120000000000000000000000000000000000000000000000000003d8ff6d7e19783000000000000000000000000b28da7bc87a9dd1e60849aa7fcb5da24ea913c420000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000022e3593564c000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000000a0000000000000000000000000000000000000000000000000000000006a06498d00000000000000000000000000000000000000000000000000000000000000010000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000000000200000000000000000000000000000000000000000000000000000000000000120000000000000000000000000c590175e458b83680867afd273527ff58f74c02b0000000000000000000000000000000000000000000000000298348bed9600b70000000000000000000000000000000000000000000000001af1be52a765a14c00000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000000000000000000000000000000010000000000000000000000000000000000000000000000000000000000000042f8a0bf9cf54bb92f17374d9e9a321e6a111a51bd0001f42170ed0880ac9a755fd29b2688956bd959f933f80001f455d398326f99059ff775485246999027b3197955000000000000000000000000000000000000000000000000000000000000756e69780000b2c5de0b000000000000000000000000000000000000ad000000000000000000000000000000000000000000000000000000000000000000000000000000000ae314e2a2172a039b26378814c252734f556a000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000600000000000000000000000000000000000000000000000000000000000000044095ea7b30000000000000000000000001a1ec25dc08e98e5e93f1104b5e5cdd298707d310000000000000000000000000000000000000000000000001af6aaa3c79f6657000000000000000000000000000000000000000000000000000000000000000000000000000000001a1ec25dc08e98e5e93f1104b5e5cdd298707d310000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000004255f5755290000000000000000000000000000000000000000000000000000000000000080000000000000000000000000000ae314e2a2172a039b26378814c252734f556a0000000000000000000000000000000000000000000000001af6aaa3c79f665700000000000000000000000000000000000000000000000000000000000000c00000000000000000000000000000000000000000000000000000000000000018756e69737761705065726d69743246656544796e616d696300000000000000000000000000000000000000000000000000000000000000000000000000000340000000000000000000000000000ae314e2a2172a039b26378814c252734f556a00000000000000000000000055d398326f99059ff775485246999027b31979550000000000000000000000000000000000000000000000001af6aaa3c79f665700000000000000000000000000000000000000000000000011dd825eb779b23d00000000000000000000000000000000000000000000000000000000000001200000000000000000000000000000000000000000000000000029320357f066c9000000000000000000000000b28da7bc87a9dd1e60849aa7fcb5da24ea913c420000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000020e3593564c000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000000a0000000000000000000000000000000000000000000000000000000006a06498d00000000000000000000000000000000000000000000000000000000000000010000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000000000200000000000000000000000000000000000000000000000000000000000000100000000000000000000000000c590175e458b83680867afd273527ff58f74c02b0000000000000000000000000000000000000000000000001af6aaa3c79f66570000000000000000000000000000000000000000000000001207ba1cfcc2244b00000000000000000000000000000000000000000000000000000000000000a00000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000002b000ae314e2a2172a039b26378814c252734f556a0001f455d398326f99059ff775485246999027b3197955000000000000000000000000000000000000000000756e69780000b2c5de0b000000000000000000000000000000000000e000000000000000000000000000000000000000000000000000000000000000000000000000000055d398326f99059ff775485246999027b3197955000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000600000000000000000000000000000000000000000000000000000000000000044a9059cbb000000000000000000000000e3478b0bb1a5084567c319096437924948be196400000000000000000000000000000000000000000000000000ba7fcd7dc8bade00000000000000000000000000000000000000000000000000000000", - "from": "0x141d32a89a1e0a5ef360034a2f60a4b917c18838", - "gas": "0x8a5b7", - "gasLimit": "0x8a5b7", - "maxFeePerGas": "0x2faf080", - "maxPriorityFeePerGas": "0x2faf080", - "nonce": "0x52", - "to": "0x141d32a89a1e0a5ef360034a2f60a4b917c18838", - "type": "0x2", - "value": "0x0" - }, - "type": "batch", - "userEditedGasLimit": false, - "userFeeLevel": "medium", - "v": "0x0", - "verifiedOnBlockchain": false - }, - { - "batchId": "0x19e287fdf25", - "chainId": "0x38", - "defaultGasEstimates": { - "estimateType": "medium", - "gas": "0x8e8c1", - "maxFeePerGas": "0x2faf080", - "maxPriorityFeePerGas": "0x2faf080" - }, - "delegationAddress": "0x63c0c19a282a1b52b07dd5a65b58948a07dae32b", - "error": { - "message": "RPC submit: gas required exceeds allowance (505823)", - "name": "Error", - "stack": "Error: RPC submit: gas required exceeds allowance (505823)\n at TransactionController._TransactionController_publishTransaction (chrome-extension://hebhblbkkdabgoldnojllkipeoacjioc/js-node_modules_metamask_s.js:47207:15)\n at async chrome-extension://hebhblbkkdabgoldnojllkipeoacjioc/js-node_modules_metamask_s.js:47893:47\n at async TransactionController._TransactionController_defaultPublishHook (chrome-extension://hebhblbkkdabgoldnojllkipeoacjioc/js-node_modules_metamask_s.js:47886:5)\n at async TransactionController._TransactionController_approveTransaction (chrome-extension://hebhblbkkdabgoldnojllkipeoacjioc/js-node_modules_metamask_s.js:47157:43)\n at async TransactionController._TransactionController_processApproval (chrome-extension://hebhblbkkdabgoldnojllkipeoacjioc/js-node_modules_metamask_s.js:47021:40)\n at async addTransactionBatchWith7702 (chrome-extension://hebhblbkkdabgoldnojllkipeoacjioc/js-node_modules_metamask_s.js:30910:29)\n at async addTransactionBatch (chrome-extension://hebhblbkkdabgoldnojllkipeoacjioc/js-node_modules_metamask_s.js:30717:20)\n at async TransactionController.addTransactionBatch (chrome-extension://hebhblbkkdabgoldnojllkipeoacjioc/js-node_modules_metamask_s.js:45785:16)\n at async addTransactionBatch (chrome-extension://hebhblbkkdabgoldnojllkipeoacjioc/js-node_modules_metamask_a.js:56268:25)\n at async submitBatchSellHandler (chrome-extension://hebhblbkkdabgoldnojllkipeoacjioc/js-node_modules_metamask_a.js:18238:33)" - }, - "gasFeeEstimates": { - "high": { - "maxFeePerGas": "0x2faf080", - "maxPriorityFeePerGas": "0x2faf080" - }, - "low": { - "maxFeePerGas": "0x2faf080", - "maxPriorityFeePerGas": "0x2faf080" - }, - "medium": { - "maxFeePerGas": "0x2faf080", - "maxPriorityFeePerGas": "0x2faf080" - }, - "type": "fee-market" - }, - "gasFeeEstimatesLoaded": true, - "gasLimitNoBuffer": "0x8e8c1", - "id": "d7baa230-4fdf-11f1-9318-cfacaf67204b", - "isGasFeeIncluded": true, - "isGasFeeSponsored": false, - "isGasFeeTokenIgnoredIfBalance": false, - "nestedTransactions": [ - { - "data": "0x095ea7b30000000000000000000000001a1ec25dc08e98e5e93f1104b5e5cdd298707d310000000000000000000000000000000000000000000000000298348bed9600b7", - "from": "0x141d32a89a1e0a5ef360034a2f60a4b917c18838", - "to": "0xf8a0bf9cf54bb92f17374d9e9a321e6a111a51bd", - "type": "swapApproval", - "value": "0x0" - }, - { - "data": "0x5f5755290000000000000000000000000000000000000000000000000000000000000080000000000000000000000000f8a0bf9cf54bb92f17374d9e9a321e6a111a51bd0000000000000000000000000000000000000000000000000298348bed9600b700000000000000000000000000000000000000000000000000000000000000c00000000000000000000000000000000000000000000000000000000000000018756e69737761705065726d69743246656544796e616d696300000000000000000000000000000000000000000000000000000000000000000000000000000360000000000000000000000000f8a0bf9cf54bb92f17374d9e9a321e6a111a51bd00000000000000000000000055d398326f99059ff775485246999027b31979550000000000000000000000000000000000000000000000000298348bed9600b70000000000000000000000000000000000000000000000001ab0fe10758301d60000000000000000000000000000000000000000000000000000000000000120000000000000000000000000000000000000000000000000003d8c2275bc8e85000000000000000000000000b28da7bc87a9dd1e60849aa7fcb5da24ea913c420000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000022e3593564c000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000000a0000000000000000000000000000000000000000000000000000000006a064c3300000000000000000000000000000000000000000000000000000000000000010000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000000000200000000000000000000000000000000000000000000000000000000000000120000000000000000000000000c590175e458b83680867afd273527ff58f74c02b0000000000000000000000000000000000000000000000000298348bed9600b70000000000000000000000000000000000000000000000001af0113bc6dfb8e500000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000000000000000000000000000000010000000000000000000000000000000000000000000000000000000000000042f8a0bf9cf54bb92f17374d9e9a321e6a111a51bd0001f42170ed0880ac9a755fd29b2688956bd959f933f80001f455d398326f99059ff775485246999027b3197955000000000000000000000000000000000000000000000000000000000000756e69780000b2c5de0b000000000000000000000000000000000000b4", - "from": "0x141d32a89a1e0a5ef360034a2f60a4b917c18838", - "to": "0x1a1ec25DC08e98e5E93F1104B5e5cdD298707d31", - "type": "swap", - "value": "0x0" - }, - { - "data": "0x095ea7b30000000000000000000000001a1ec25dc08e98e5e93f1104b5e5cdd298707d31000000000000000000000000000000000000000000000000123fd18867a38000", - "from": "0x141d32a89a1e0a5ef360034a2f60a4b917c18838", - "to": "0x1af3f329e8be154074d8769d1ffa4ee058b1dbc3", - "type": "swapApproval", - "value": "0x0" - }, - { - "data": "0x5f57552900000000000000000000000000000000000000000000000000000000000000800000000000000000000000001af3f329e8be154074d8769d1ffa4ee058b1dbc3000000000000000000000000000000000000000000000000123fd18867a3800000000000000000000000000000000000000000000000000000000000000000c00000000000000000000000000000000000000000000000000000000000000018756e69737761705065726d69743246656544796e616d6963000000000000000000000000000000000000000000000000000000000000000000000000000003400000000000000000000000001af3f329e8be154074d8769d1ffa4ee058b1dbc300000000000000000000000055d398326f99059ff775485246999027b31979550000000000000000000000000000000000000000000000001216f0a8cfb11c0000000000000000000000000000000000000000000000000011b8454bdad407f500000000000000000000000000000000000000000000000000000000000001200000000000000000000000000000000000000000000000000028e0df97f26400000000000000000000000000b28da7bc87a9dd1e60849aa7fcb5da24ea913c420000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000020e3593564c000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000000a0000000000000000000000000000000000000000000000000000000006a064c3300000000000000000000000000000000000000000000000000000000000000010000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000000000200000000000000000000000000000000000000000000000000000000000000100000000000000000000000000c590175e458b83680867afd273527ff58f74c02b0000000000000000000000000000000000000000000000001216f0a8cfb11c0000000000000000000000000000000000000000000000000011ba15ff0dee717a00000000000000000000000000000000000000000000000000000000000000a00000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000002b1af3f329e8be154074d8769d1ffa4ee058b1dbc3000bb855d398326f99059ff775485246999027b3197955000000000000000000000000000000000000000000756e69780000b2c5de0b00000000000000000000000000000000000014", - "from": "0x141d32a89a1e0a5ef360034a2f60a4b917c18838", - "to": "0x1a1ec25DC08e98e5E93F1104B5e5cdD298707d31", - "type": "swap", - "value": "0x0" - }, - { - "data": "0xa9059cbb000000000000000000000000e3478b0bb1a5084567c319096437924948be196400000000000000000000000000000000000000000000000000bec11c7e96deb0", - "from": "0x141d32a89a1e0a5ef360034a2f60a4b917c18838", - "to": "0x55d398326f99059ff775485246999027b3197955", - "type": "transfer", - "value": "0x0" - } - ], - "networkClientId": "9a1eafde-5f04-434b-b011-e9de5c50baf0", - "origin": "metamask", - "originalGasEstimate": "0x8e8c1", - "r": "0xc46c0e69f3855555786db2dc2a5f744a1f7263d2472a0f9462ad4eb4c41a1bd0", - "rawTx": "0x02f90df138528402faf0808402faf0808308e8c194141d32a89a1e0a5ef360034a2f60a4b917c1883880b90d84e9ae5c53010100000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000400000000000000000000000000000000000000000000000000000000000000d200000000000000000000000000000000000000000000000000000000000000020000000000000000000000000000000000000000000000000000000000000000500000000000000000000000000000000000000000000000000000000000000a00000000000000000000000000000000000000000000000000000000000000180000000000000000000000000000000000000000000000000000000000000066000000000000000000000000000000000000000000000000000000000000007400000000000000000000000000000000000000000000000000000000000000c00000000000000000000000000f8a0bf9cf54bb92f17374d9e9a321e6a111a51bd000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000600000000000000000000000000000000000000000000000000000000000000044095ea7b30000000000000000000000001a1ec25dc08e98e5e93f1104b5e5cdd298707d310000000000000000000000000000000000000000000000000298348bed9600b7000000000000000000000000000000000000000000000000000000000000000000000000000000001a1ec25dc08e98e5e93f1104b5e5cdd298707d310000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000004455f5755290000000000000000000000000000000000000000000000000000000000000080000000000000000000000000f8a0bf9cf54bb92f17374d9e9a321e6a111a51bd0000000000000000000000000000000000000000000000000298348bed9600b700000000000000000000000000000000000000000000000000000000000000c00000000000000000000000000000000000000000000000000000000000000018756e69737761705065726d69743246656544796e616d696300000000000000000000000000000000000000000000000000000000000000000000000000000360000000000000000000000000f8a0bf9cf54bb92f17374d9e9a321e6a111a51bd00000000000000000000000055d398326f99059ff775485246999027b31979550000000000000000000000000000000000000000000000000298348bed9600b70000000000000000000000000000000000000000000000001ab0fe10758301d60000000000000000000000000000000000000000000000000000000000000120000000000000000000000000000000000000000000000000003d8c2275bc8e85000000000000000000000000b28da7bc87a9dd1e60849aa7fcb5da24ea913c420000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000022e3593564c000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000000a0000000000000000000000000000000000000000000000000000000006a064c3300000000000000000000000000000000000000000000000000000000000000010000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000000000200000000000000000000000000000000000000000000000000000000000000120000000000000000000000000c590175e458b83680867afd273527ff58f74c02b0000000000000000000000000000000000000000000000000298348bed9600b70000000000000000000000000000000000000000000000001af0113bc6dfb8e500000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000000000000000000000000000000010000000000000000000000000000000000000000000000000000000000000042f8a0bf9cf54bb92f17374d9e9a321e6a111a51bd0001f42170ed0880ac9a755fd29b2688956bd959f933f80001f455d398326f99059ff775485246999027b3197955000000000000000000000000000000000000000000000000000000000000756e69780000b2c5de0b000000000000000000000000000000000000b40000000000000000000000000000000000000000000000000000000000000000000000000000001af3f329e8be154074d8769d1ffa4ee058b1dbc3000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000600000000000000000000000000000000000000000000000000000000000000044095ea7b30000000000000000000000001a1ec25dc08e98e5e93f1104b5e5cdd298707d31000000000000000000000000000000000000000000000000123fd18867a38000000000000000000000000000000000000000000000000000000000000000000000000000000000001a1ec25dc08e98e5e93f1104b5e5cdd298707d310000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000004255f57552900000000000000000000000000000000000000000000000000000000000000800000000000000000000000001af3f329e8be154074d8769d1ffa4ee058b1dbc3000000000000000000000000000000000000000000000000123fd18867a3800000000000000000000000000000000000000000000000000000000000000000c00000000000000000000000000000000000000000000000000000000000000018756e69737761705065726d69743246656544796e616d6963000000000000000000000000000000000000000000000000000000000000000000000000000003400000000000000000000000001af3f329e8be154074d8769d1ffa4ee058b1dbc300000000000000000000000055d398326f99059ff775485246999027b31979550000000000000000000000000000000000000000000000001216f0a8cfb11c0000000000000000000000000000000000000000000000000011b8454bdad407f500000000000000000000000000000000000000000000000000000000000001200000000000000000000000000000000000000000000000000028e0df97f26400000000000000000000000000b28da7bc87a9dd1e60849aa7fcb5da24ea913c420000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000020e3593564c000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000000a0000000000000000000000000000000000000000000000000000000006a064c3300000000000000000000000000000000000000000000000000000000000000010000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000000000200000000000000000000000000000000000000000000000000000000000000100000000000000000000000000c590175e458b83680867afd273527ff58f74c02b0000000000000000000000000000000000000000000000001216f0a8cfb11c0000000000000000000000000000000000000000000000000011ba15ff0dee717a00000000000000000000000000000000000000000000000000000000000000a00000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000002b1af3f329e8be154074d8769d1ffa4ee058b1dbc3000bb855d398326f99059ff775485246999027b3197955000000000000000000000000000000000000000000756e69780000b2c5de0b0000000000000000000000000000000000001400000000000000000000000000000000000000000000000000000000000000000000000000000055d398326f99059ff775485246999027b3197955000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000600000000000000000000000000000000000000000000000000000000000000044a9059cbb000000000000000000000000e3478b0bb1a5084567c319096437924948be196400000000000000000000000000000000000000000000000000bec11c7e96deb000000000000000000000000000000000000000000000000000000000c001a0c46c0e69f3855555786db2dc2a5f744a1f7263d2472a0f9462ad4eb4c41a1bd0a067619c595c1526c896229ed25900db3fd44fc08e39aeb21745905f757ab2d621", - "s": "0x67619c595c1526c896229ed25900db3fd44fc08e39aeb21745905f757ab2d621", - "status": "failed", - "time": 1778795824083, - "txParams": { - "data": "0xe9ae5c53010100000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000400000000000000000000000000000000000000000000000000000000000000d200000000000000000000000000000000000000000000000000000000000000020000000000000000000000000000000000000000000000000000000000000000500000000000000000000000000000000000000000000000000000000000000a00000000000000000000000000000000000000000000000000000000000000180000000000000000000000000000000000000000000000000000000000000066000000000000000000000000000000000000000000000000000000000000007400000000000000000000000000000000000000000000000000000000000000c00000000000000000000000000f8a0bf9cf54bb92f17374d9e9a321e6a111a51bd000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000600000000000000000000000000000000000000000000000000000000000000044095ea7b30000000000000000000000001a1ec25dc08e98e5e93f1104b5e5cdd298707d310000000000000000000000000000000000000000000000000298348bed9600b7000000000000000000000000000000000000000000000000000000000000000000000000000000001a1ec25dc08e98e5e93f1104b5e5cdd298707d310000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000004455f5755290000000000000000000000000000000000000000000000000000000000000080000000000000000000000000f8a0bf9cf54bb92f17374d9e9a321e6a111a51bd0000000000000000000000000000000000000000000000000298348bed9600b700000000000000000000000000000000000000000000000000000000000000c00000000000000000000000000000000000000000000000000000000000000018756e69737761705065726d69743246656544796e616d696300000000000000000000000000000000000000000000000000000000000000000000000000000360000000000000000000000000f8a0bf9cf54bb92f17374d9e9a321e6a111a51bd00000000000000000000000055d398326f99059ff775485246999027b31979550000000000000000000000000000000000000000000000000298348bed9600b70000000000000000000000000000000000000000000000001ab0fe10758301d60000000000000000000000000000000000000000000000000000000000000120000000000000000000000000000000000000000000000000003d8c2275bc8e85000000000000000000000000b28da7bc87a9dd1e60849aa7fcb5da24ea913c420000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000022e3593564c000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000000a0000000000000000000000000000000000000000000000000000000006a064c3300000000000000000000000000000000000000000000000000000000000000010000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000000000200000000000000000000000000000000000000000000000000000000000000120000000000000000000000000c590175e458b83680867afd273527ff58f74c02b0000000000000000000000000000000000000000000000000298348bed9600b70000000000000000000000000000000000000000000000001af0113bc6dfb8e500000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000000000000000000000000000000010000000000000000000000000000000000000000000000000000000000000042f8a0bf9cf54bb92f17374d9e9a321e6a111a51bd0001f42170ed0880ac9a755fd29b2688956bd959f933f80001f455d398326f99059ff775485246999027b3197955000000000000000000000000000000000000000000000000000000000000756e69780000b2c5de0b000000000000000000000000000000000000b40000000000000000000000000000000000000000000000000000000000000000000000000000001af3f329e8be154074d8769d1ffa4ee058b1dbc3000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000600000000000000000000000000000000000000000000000000000000000000044095ea7b30000000000000000000000001a1ec25dc08e98e5e93f1104b5e5cdd298707d31000000000000000000000000000000000000000000000000123fd18867a38000000000000000000000000000000000000000000000000000000000000000000000000000000000001a1ec25dc08e98e5e93f1104b5e5cdd298707d310000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000004255f57552900000000000000000000000000000000000000000000000000000000000000800000000000000000000000001af3f329e8be154074d8769d1ffa4ee058b1dbc3000000000000000000000000000000000000000000000000123fd18867a3800000000000000000000000000000000000000000000000000000000000000000c00000000000000000000000000000000000000000000000000000000000000018756e69737761705065726d69743246656544796e616d6963000000000000000000000000000000000000000000000000000000000000000000000000000003400000000000000000000000001af3f329e8be154074d8769d1ffa4ee058b1dbc300000000000000000000000055d398326f99059ff775485246999027b31979550000000000000000000000000000000000000000000000001216f0a8cfb11c0000000000000000000000000000000000000000000000000011b8454bdad407f500000000000000000000000000000000000000000000000000000000000001200000000000000000000000000000000000000000000000000028e0df97f26400000000000000000000000000b28da7bc87a9dd1e60849aa7fcb5da24ea913c420000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000020e3593564c000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000000a0000000000000000000000000000000000000000000000000000000006a064c3300000000000000000000000000000000000000000000000000000000000000010000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000000000200000000000000000000000000000000000000000000000000000000000000100000000000000000000000000c590175e458b83680867afd273527ff58f74c02b0000000000000000000000000000000000000000000000001216f0a8cfb11c0000000000000000000000000000000000000000000000000011ba15ff0dee717a00000000000000000000000000000000000000000000000000000000000000a00000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000002b1af3f329e8be154074d8769d1ffa4ee058b1dbc3000bb855d398326f99059ff775485246999027b3197955000000000000000000000000000000000000000000756e69780000b2c5de0b0000000000000000000000000000000000001400000000000000000000000000000000000000000000000000000000000000000000000000000055d398326f99059ff775485246999027b3197955000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000600000000000000000000000000000000000000000000000000000000000000044a9059cbb000000000000000000000000e3478b0bb1a5084567c319096437924948be196400000000000000000000000000000000000000000000000000bec11c7e96deb000000000000000000000000000000000000000000000000000000000", - "from": "0x141d32a89a1e0a5ef360034a2f60a4b917c18838", - "gas": "0x8e8c1", - "gasLimit": "0x8e8c1", - "maxFeePerGas": "0x2faf080", - "maxPriorityFeePerGas": "0x2faf080", - "nonce": "0x52", - "to": "0x141d32a89a1e0a5ef360034a2f60a4b917c18838", - "type": "0x2", - "value": "0x0" - }, - "type": "batch", - "userEditedGasLimit": false, - "userFeeLevel": "medium", - "v": "0x1", - "verifiedOnBlockchain": false - }, - { - "batchId": "0x19e28868c54", - "chainId": "0x38", - "defaultGasEstimates": { - "estimateType": "medium", - "gas": "0x7d0f1", - "maxFeePerGas": "0x3938700", - "maxPriorityFeePerGas": "0x3938700" - }, - "delegationAddress": "0x63c0c19a282a1b52b07dd5a65b58948a07dae32b", - "error": { - "message": "RPC submit: Internal error", - "name": "Error", - "stack": "Error: RPC submit: Internal error\n at TransactionController._TransactionController_publishTransaction (chrome-extension://hebhblbkkdabgoldnojllkipeoacjioc/js-node_modules_metamask_s.js:47207:15)\n at async chrome-extension://hebhblbkkdabgoldnojllkipeoacjioc/js-node_modules_metamask_s.js:47893:47\n at async TransactionController._TransactionController_defaultPublishHook (chrome-extension://hebhblbkkdabgoldnojllkipeoacjioc/js-node_modules_metamask_s.js:47886:5)\n at async TransactionController._TransactionController_approveTransaction (chrome-extension://hebhblbkkdabgoldnojllkipeoacjioc/js-node_modules_metamask_s.js:47157:43)\n at async TransactionController._TransactionController_processApproval (chrome-extension://hebhblbkkdabgoldnojllkipeoacjioc/js-node_modules_metamask_s.js:47021:40)\n at async addTransactionBatchWith7702 (chrome-extension://hebhblbkkdabgoldnojllkipeoacjioc/js-node_modules_metamask_s.js:30910:29)\n at async addTransactionBatch (chrome-extension://hebhblbkkdabgoldnojllkipeoacjioc/js-node_modules_metamask_s.js:30717:20)\n at async TransactionController.addTransactionBatch (chrome-extension://hebhblbkkdabgoldnojllkipeoacjioc/js-node_modules_metamask_s.js:45785:16)\n at async addTransactionBatch (chrome-extension://hebhblbkkdabgoldnojllkipeoacjioc/js-node_modules_metamask_a.js:56268:25)\n at async submitBatchSellHandler (chrome-extension://hebhblbkkdabgoldnojllkipeoacjioc/js-node_modules_metamask_a.js:18238:33)" - }, - "gasFeeEstimates": { - "high": { - "maxFeePerGas": "0x2faf080", - "maxPriorityFeePerGas": "0x2faf080" - }, - "low": { - "maxFeePerGas": "0x2faf080", - "maxPriorityFeePerGas": "0x2faf080" - }, - "medium": { - "maxFeePerGas": "0x2faf080", - "maxPriorityFeePerGas": "0x2faf080" - }, - "type": "fee-market" - }, - "gasFeeEstimatesLoaded": true, - "gasLimitNoBuffer": "0x7d0f1", - "id": "daf53e50-4fe0-11f1-b70f-4dcca78b91f8", - "isGasFeeIncluded": true, - "isGasFeeSponsored": false, - "isGasFeeTokenIgnoredIfBalance": false, - "nestedTransactions": [ - { - "data": "0x095ea7b30000000000000000000000001a1ec25dc08e98e5e93f1104b5e5cdd298707d310000000000000000000000000000000000000000000000000298348bed9600b7", - "from": "0x141d32a89a1e0a5ef360034a2f60a4b917c18838", - "gas": "0x110fa", - "maxFeePerGas": "0x3938700", - "maxPriorityFeePerGas": "0x3938700", - "to": "0xf8a0bf9cf54bb92f17374d9e9a321e6a111a51bd", - "type": "swapApproval", - "value": "0x0" - }, - { - "data": "0x5f5755290000000000000000000000000000000000000000000000000000000000000080000000000000000000000000f8a0bf9cf54bb92f17374d9e9a321e6a111a51bd0000000000000000000000000000000000000000000000000298348bed9600b700000000000000000000000000000000000000000000000000000000000000c0000000000000000000000000000000000000000000000000000000000000001b70616e63616b6553776170526f7574657246656544796e616d696300000000000000000000000000000000000000000000000000000000000000000000000220000000000000000000000000f8a0bf9cf54bb92f17374d9e9a321e6a111a51bd00000000000000000000000055d398326f99059ff775485246999027b31979550000000000000000000000000000000000000000000000000298348bed9600b70000000000000000000000000000000000000000000000001a9a2f99f18359de0000000000000000000000000000000000000000000000000000000000000120000000000000000000000000000000000000000000000000003d578b9a0a9756000000000000000000000000b28da7bc87a9dd1e60849aa7fcb5da24ea913c42000000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000000000e404e45aaf000000000000000000000000f8a0bf9cf54bb92f17374d9e9a321e6a111a51bd00000000000000000000000055d398326f99059ff775485246999027b319795500000000000000000000000000000000000000000000000000000000000009c4000000000000000000000000c590175e458b83680867afd273527ff58f74c02b0000000000000000000000000000000000000000000000000298348bed9600b70000000000000000000000000000000000000000000000001ad90ce04866732300000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000060", - "from": "0x141d32a89a1e0a5ef360034a2f60a4b917c18838", - "gas": "0x5de27", - "maxFeePerGas": "0x3938700", - "maxPriorityFeePerGas": "0x3938700", - "to": "0x1a1ec25DC08e98e5E93F1104B5e5cdD298707d31", - "type": "swap", - "value": "0x0" - }, - { - "data": "0x095ea7b30000000000000000000000001a1ec25dc08e98e5e93f1104b5e5cdd298707d31000000000000000000000000000000000000000000000000123fd18867a38000", - "from": "0x141d32a89a1e0a5ef360034a2f60a4b917c18838", - "gas": "0x110fa", - "maxFeePerGas": "0x3938700", - "maxPriorityFeePerGas": "0x3938700", - "to": "0x1af3f329e8be154074d8769d1ffa4ee058b1dbc3", - "type": "swapApproval", - "value": "0x0" - }, - { - "data": "0x5f57552900000000000000000000000000000000000000000000000000000000000000800000000000000000000000001af3f329e8be154074d8769d1ffa4ee058b1dbc3000000000000000000000000000000000000000000000000123fd18867a3800000000000000000000000000000000000000000000000000000000000000000c0000000000000000000000000000000000000000000000000000000000000001b70616e63616b6553776170526f7574657246656544796e616d6963000000000000000000000000000000000000000000000000000000000000000000000002200000000000000000000000001af3f329e8be154074d8769d1ffa4ee058b1dbc300000000000000000000000055d398326f99059ff775485246999027b31979550000000000000000000000000000000000000000000000001216f0a8cfb11c0000000000000000000000000000000000000000000000000011b823441f3b9f7d00000000000000000000000000000000000000000000000000000000000001200000000000000000000000000000000000000000000000000028e0df97f26400000000000000000000000000b28da7bc87a9dd1e60849aa7fcb5da24ea913c42000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000e404e45aaf0000000000000000000000001af3f329e8be154074d8769d1ffa4ee058b1dbc300000000000000000000000055d398326f99059ff775485246999027b31979550000000000000000000000000000000000000000000000000000000000000064000000000000000000000000c590175e458b83680867afd273527ff58f74c02b0000000000000000000000000000000000000000000000001216f0a8cfb11c0000000000000000000000000000000000000000000000000011b9f3f3d5e5cd240000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000005c", - "from": "0x141d32a89a1e0a5ef360034a2f60a4b917c18838", - "gas": "0x5b8f6", - "maxFeePerGas": "0x3938700", - "maxPriorityFeePerGas": "0x3938700", - "to": "0x1a1ec25DC08e98e5E93F1104B5e5cdD298707d31", - "type": "swap", - "value": "0x0" - }, - { - "data": "0xa9059cbb000000000000000000000000e3478b0bb1a5084567c319096437924948be196400000000000000000000000000000000000000000000000000a94ec52d664f82", - "from": "0x141d32a89a1e0a5ef360034a2f60a4b917c18838", - "gas": "0xcc57", - "maxFeePerGas": "0x3938700", - "maxPriorityFeePerGas": "0x3938700", - "to": "0x55d398326f99059ff775485246999027b3197955", - "type": "transfer", - "value": "0x0" - } - ], - "networkClientId": "9a1eafde-5f04-434b-b011-e9de5c50baf0", - "origin": "metamask", - "originalGasEstimate": "0x7d0f1", - "r": "0x933f48c3cc8648cafaee08c7d1cf0a25c26ac16c8d0904bc7cd4c889b1acf96e", - "rawTx": "0x02f90b913852840393870084039387008307d0f194141d32a89a1e0a5ef360034a2f60a4b917c1883880b90b24e9ae5c53010100000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000400000000000000000000000000000000000000000000000000000000000000ac00000000000000000000000000000000000000000000000000000000000000020000000000000000000000000000000000000000000000000000000000000000500000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000000000000000000000000000001800000000000000000000000000000000000000000000000000000000000000520000000000000000000000000000000000000000000000000000000000000060000000000000000000000000000000000000000000000000000000000000009a0000000000000000000000000f8a0bf9cf54bb92f17374d9e9a321e6a111a51bd000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000600000000000000000000000000000000000000000000000000000000000000044095ea7b30000000000000000000000001a1ec25dc08e98e5e93f1104b5e5cdd298707d310000000000000000000000000000000000000000000000000298348bed9600b7000000000000000000000000000000000000000000000000000000000000000000000000000000001a1ec25dc08e98e5e93f1104b5e5cdd298707d310000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000003055f5755290000000000000000000000000000000000000000000000000000000000000080000000000000000000000000f8a0bf9cf54bb92f17374d9e9a321e6a111a51bd0000000000000000000000000000000000000000000000000298348bed9600b700000000000000000000000000000000000000000000000000000000000000c0000000000000000000000000000000000000000000000000000000000000001b70616e63616b6553776170526f7574657246656544796e616d696300000000000000000000000000000000000000000000000000000000000000000000000220000000000000000000000000f8a0bf9cf54bb92f17374d9e9a321e6a111a51bd00000000000000000000000055d398326f99059ff775485246999027b31979550000000000000000000000000000000000000000000000000298348bed9600b70000000000000000000000000000000000000000000000001a9a2f99f18359de0000000000000000000000000000000000000000000000000000000000000120000000000000000000000000000000000000000000000000003d578b9a0a9756000000000000000000000000b28da7bc87a9dd1e60849aa7fcb5da24ea913c42000000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000000000e404e45aaf000000000000000000000000f8a0bf9cf54bb92f17374d9e9a321e6a111a51bd00000000000000000000000055d398326f99059ff775485246999027b319795500000000000000000000000000000000000000000000000000000000000009c4000000000000000000000000c590175e458b83680867afd273527ff58f74c02b0000000000000000000000000000000000000000000000000298348bed9600b70000000000000000000000000000000000000000000000001ad90ce048667323000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000600000000000000000000000000000000000000000000000000000000000000000000000000000001af3f329e8be154074d8769d1ffa4ee058b1dbc3000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000600000000000000000000000000000000000000000000000000000000000000044095ea7b30000000000000000000000001a1ec25dc08e98e5e93f1104b5e5cdd298707d31000000000000000000000000000000000000000000000000123fd18867a38000000000000000000000000000000000000000000000000000000000000000000000000000000000001a1ec25dc08e98e5e93f1104b5e5cdd298707d310000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000003055f57552900000000000000000000000000000000000000000000000000000000000000800000000000000000000000001af3f329e8be154074d8769d1ffa4ee058b1dbc3000000000000000000000000000000000000000000000000123fd18867a3800000000000000000000000000000000000000000000000000000000000000000c0000000000000000000000000000000000000000000000000000000000000001b70616e63616b6553776170526f7574657246656544796e616d6963000000000000000000000000000000000000000000000000000000000000000000000002200000000000000000000000001af3f329e8be154074d8769d1ffa4ee058b1dbc300000000000000000000000055d398326f99059ff775485246999027b31979550000000000000000000000000000000000000000000000001216f0a8cfb11c0000000000000000000000000000000000000000000000000011b823441f3b9f7d00000000000000000000000000000000000000000000000000000000000001200000000000000000000000000000000000000000000000000028e0df97f26400000000000000000000000000b28da7bc87a9dd1e60849aa7fcb5da24ea913c42000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000e404e45aaf0000000000000000000000001af3f329e8be154074d8769d1ffa4ee058b1dbc300000000000000000000000055d398326f99059ff775485246999027b31979550000000000000000000000000000000000000000000000000000000000000064000000000000000000000000c590175e458b83680867afd273527ff58f74c02b0000000000000000000000000000000000000000000000001216f0a8cfb11c0000000000000000000000000000000000000000000000000011b9f3f3d5e5cd240000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000005c00000000000000000000000000000000000000000000000000000000000000000000000000000055d398326f99059ff775485246999027b3197955000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000600000000000000000000000000000000000000000000000000000000000000044a9059cbb000000000000000000000000e3478b0bb1a5084567c319096437924948be196400000000000000000000000000000000000000000000000000a94ec52d664f8200000000000000000000000000000000000000000000000000000000c080a0933f48c3cc8648cafaee08c7d1cf0a25c26ac16c8d0904bc7cd4c889b1acf96ea0182c494f39d80d257ceffa53adb3b5230f00867e992f6f9724b699c549e3e835", - "s": "0x182c494f39d80d257ceffa53adb3b5230f00867e992f6f9724b699c549e3e835", - "status": "failed", - "time": 1778796258997, - "txParams": { - "data": "0xe9ae5c53010100000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000400000000000000000000000000000000000000000000000000000000000000ac00000000000000000000000000000000000000000000000000000000000000020000000000000000000000000000000000000000000000000000000000000000500000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000000000000000000000000000001800000000000000000000000000000000000000000000000000000000000000520000000000000000000000000000000000000000000000000000000000000060000000000000000000000000000000000000000000000000000000000000009a0000000000000000000000000f8a0bf9cf54bb92f17374d9e9a321e6a111a51bd000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000600000000000000000000000000000000000000000000000000000000000000044095ea7b30000000000000000000000001a1ec25dc08e98e5e93f1104b5e5cdd298707d310000000000000000000000000000000000000000000000000298348bed9600b7000000000000000000000000000000000000000000000000000000000000000000000000000000001a1ec25dc08e98e5e93f1104b5e5cdd298707d310000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000003055f5755290000000000000000000000000000000000000000000000000000000000000080000000000000000000000000f8a0bf9cf54bb92f17374d9e9a321e6a111a51bd0000000000000000000000000000000000000000000000000298348bed9600b700000000000000000000000000000000000000000000000000000000000000c0000000000000000000000000000000000000000000000000000000000000001b70616e63616b6553776170526f7574657246656544796e616d696300000000000000000000000000000000000000000000000000000000000000000000000220000000000000000000000000f8a0bf9cf54bb92f17374d9e9a321e6a111a51bd00000000000000000000000055d398326f99059ff775485246999027b31979550000000000000000000000000000000000000000000000000298348bed9600b70000000000000000000000000000000000000000000000001a9a2f99f18359de0000000000000000000000000000000000000000000000000000000000000120000000000000000000000000000000000000000000000000003d578b9a0a9756000000000000000000000000b28da7bc87a9dd1e60849aa7fcb5da24ea913c42000000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000000000e404e45aaf000000000000000000000000f8a0bf9cf54bb92f17374d9e9a321e6a111a51bd00000000000000000000000055d398326f99059ff775485246999027b319795500000000000000000000000000000000000000000000000000000000000009c4000000000000000000000000c590175e458b83680867afd273527ff58f74c02b0000000000000000000000000000000000000000000000000298348bed9600b70000000000000000000000000000000000000000000000001ad90ce048667323000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000600000000000000000000000000000000000000000000000000000000000000000000000000000001af3f329e8be154074d8769d1ffa4ee058b1dbc3000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000600000000000000000000000000000000000000000000000000000000000000044095ea7b30000000000000000000000001a1ec25dc08e98e5e93f1104b5e5cdd298707d31000000000000000000000000000000000000000000000000123fd18867a38000000000000000000000000000000000000000000000000000000000000000000000000000000000001a1ec25dc08e98e5e93f1104b5e5cdd298707d310000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000003055f57552900000000000000000000000000000000000000000000000000000000000000800000000000000000000000001af3f329e8be154074d8769d1ffa4ee058b1dbc3000000000000000000000000000000000000000000000000123fd18867a3800000000000000000000000000000000000000000000000000000000000000000c0000000000000000000000000000000000000000000000000000000000000001b70616e63616b6553776170526f7574657246656544796e616d6963000000000000000000000000000000000000000000000000000000000000000000000002200000000000000000000000001af3f329e8be154074d8769d1ffa4ee058b1dbc300000000000000000000000055d398326f99059ff775485246999027b31979550000000000000000000000000000000000000000000000001216f0a8cfb11c0000000000000000000000000000000000000000000000000011b823441f3b9f7d00000000000000000000000000000000000000000000000000000000000001200000000000000000000000000000000000000000000000000028e0df97f26400000000000000000000000000b28da7bc87a9dd1e60849aa7fcb5da24ea913c42000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000e404e45aaf0000000000000000000000001af3f329e8be154074d8769d1ffa4ee058b1dbc300000000000000000000000055d398326f99059ff775485246999027b31979550000000000000000000000000000000000000000000000000000000000000064000000000000000000000000c590175e458b83680867afd273527ff58f74c02b0000000000000000000000000000000000000000000000001216f0a8cfb11c0000000000000000000000000000000000000000000000000011b9f3f3d5e5cd240000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000005c00000000000000000000000000000000000000000000000000000000000000000000000000000055d398326f99059ff775485246999027b3197955000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000600000000000000000000000000000000000000000000000000000000000000044a9059cbb000000000000000000000000e3478b0bb1a5084567c319096437924948be196400000000000000000000000000000000000000000000000000a94ec52d664f8200000000000000000000000000000000000000000000000000000000", - "from": "0x141d32a89a1e0a5ef360034a2f60a4b917c18838", - "gas": "0x7d0f1", - "gasLimit": "0x7d0f1", - "maxFeePerGas": "0x3938700", - "maxPriorityFeePerGas": "0x3938700", - "nonce": "0x52", - "to": "0x141d32a89a1e0a5ef360034a2f60a4b917c18838", - "type": "0x2", - "value": "0x0" - }, - "type": "batch", - "userEditedGasLimit": false, - "userFeeLevel": "medium", - "v": "0x0", - "verifiedOnBlockchain": false - }, - { - "batchId": "0x19e28915f3f", - "chainId": "0x38", - "defaultGasEstimates": { - "estimateType": "medium", - "gas": "0xa4927", - "maxFeePerGas": "0x3938700", - "maxPriorityFeePerGas": "0x3938700" - }, - "delegationAddress": "0x63c0c19a282a1b52b07dd5a65b58948a07dae32b", - "error": { - "message": "RPC submit: gas required exceeds allowance (421519)", - "name": "Error", - "stack": "Error: RPC submit: gas required exceeds allowance (421519)\n at TransactionController._TransactionController_publishTransaction (chrome-extension://hebhblbkkdabgoldnojllkipeoacjioc/js-node_modules_metamask_s.js:60032:15)\n at async chrome-extension://hebhblbkkdabgoldnojllkipeoacjioc/js-node_modules_metamask_s.js:60718:47\n at async TransactionController._TransactionController_defaultPublishHook (chrome-extension://hebhblbkkdabgoldnojllkipeoacjioc/js-node_modules_metamask_s.js:60711:5)\n at async TransactionController._TransactionController_approveTransaction (chrome-extension://hebhblbkkdabgoldnojllkipeoacjioc/js-node_modules_metamask_s.js:59982:43)\n at async TransactionController._TransactionController_processApproval (chrome-extension://hebhblbkkdabgoldnojllkipeoacjioc/js-node_modules_metamask_s.js:59846:40)\n at async addTransactionBatchWith7702 (chrome-extension://hebhblbkkdabgoldnojllkipeoacjioc/js-node_modules_metamask_s.js:41170:29)\n at async addTransactionBatch (chrome-extension://hebhblbkkdabgoldnojllkipeoacjioc/js-node_modules_metamask_s.js:40973:20)\n at async TransactionController.addTransactionBatch (chrome-extension://hebhblbkkdabgoldnojllkipeoacjioc/js-node_modules_metamask_s.js:58610:16)\n at async addTransactionBatch (chrome-extension://hebhblbkkdabgoldnojllkipeoacjioc/js-node_modules_metamask_a.js:67560:25)\n at async submitBatchSellHandler (chrome-extension://hebhblbkkdabgoldnojllkipeoacjioc/js-node_modules_metamask_a.js:20660:33)" - }, - "gasFeeEstimates": { - "high": { - "maxFeePerGas": "0x2faf080", - "maxPriorityFeePerGas": "0x2faf080" - }, - "low": { - "maxFeePerGas": "0x2faf080", - "maxPriorityFeePerGas": "0x2faf080" - }, - "medium": { - "maxFeePerGas": "0x2faf080", - "maxPriorityFeePerGas": "0x2faf080" - }, - "type": "fee-market" - }, - "gasFeeEstimatesLoaded": true, - "gasLimitNoBuffer": "0xa4927", - "id": "777251e0-4fe2-11f1-986b-bdacd19bf474", - "isGasFeeIncluded": true, - "isGasFeeSponsored": false, - "isGasFeeTokenIgnoredIfBalance": false, - "nestedTransactions": [ - { - "data": "0x095ea7b30000000000000000000000001a1ec25dc08e98e5e93f1104b5e5cdd298707d310000000000000000000000000000000000000000000000000298348bed9600b7", - "from": "0x141d32a89a1e0a5ef360034a2f60a4b917c18838", - "gas": "0x110fa", - "maxFeePerGas": "0x3938700", - "maxPriorityFeePerGas": "0x3938700", - "to": "0xf8a0bf9cf54bb92f17374d9e9a321e6a111a51bd", - "type": "swapApproval", - "value": "0x0" - }, - { - "data": "0x5f5755290000000000000000000000000000000000000000000000000000000000000080000000000000000000000000f8a0bf9cf54bb92f17374d9e9a321e6a111a51bd0000000000000000000000000000000000000000000000000298348bed9600b700000000000000000000000000000000000000000000000000000000000000c00000000000000000000000000000000000000000000000000000000000000004307856320000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000007a0000000000000000000000000f8a0bf9cf54bb92f17374d9e9a321e6a111a51bd00000000000000000000000055d398326f99059ff775485246999027b31979550000000000000000000000000000000000000000000000000298348bed9600b70000000000000000000000000000000000000000000000001ab6f8ee3d2792900000000000000000000000000000000000000000000000000000000000000120000000000000000000000000000000000000000000000000003d99ec787508d6000000000000000000000000b28da7bc87a9dd1e60849aa7fcb5da24ea913c42000000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000000006642213bc0b000000000000000000000000c2eff1f1ce35d395408a34ad881dbcd978f40b89000000000000000000000000f8a0bf9cf54bb92f17374d9e9a321e6a111a51bd0000000000000000000000000000000000000000000000000298348bed9600b7000000000000000000000000c2eff1f1ce35d395408a34ad881dbcd978f40b8900000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000000000000000000000000000005841fff991f000000000000000000000000c590175e458b83680867afd273527ff58f74c02b00000000000000000000000055d398326f99059ff775485246999027b31979550000000000000000000000000000000000000000000000001b39be39cf27478400000000000000000000000000000000000000000000000000000000000000a0e9aca974a1e80b3e36b2acaf0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000300000000000000000000000000000000000000000000000000000000000000600000000000000000000000000000000000000000000000000000000000000220000000000000000000000000000000000000000000000000000000000000040000000000000000000000000000000000000000000000000000000000000001843036d6a6000000000000000000000000c2eff1f1ce35d395408a34ad881dbcd978f40b89000000000000000000000000f8a0bf9cf54bb92f17374d9e9a321e6a111a51bd0000000000000000000000000000000000000000000000000298348bed9600b70000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000006a064ab90000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000000000016000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000040f8a0bf9cf54bb92f17374d9e9a321e6a111a51bd000001f4fffd8963efd1fc6a506488495d951d5263988d252170ed0880ac9a755fd29b2688956bd959f933f800000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001a4df753f1e000000000000000000000000c2eff1f1ce35d395408a34ad881dbcd978f40b890000000000000000000000002170ed0880ac9a755fd29b2688956bd959f933f8000000000000000000000000000000000000000000000000000000000000271000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000002000000000000000000000000000000000000000000000000ffffffffffffffc5000000000000000000000000000000000000000000000000000000000000010000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000066271000000000000000000000000000000001000276a40155d398326f99059ff775485246999027b31979550000000000000000000000000000000000000000000000430000000000000000000000000000000000000000000000000000000000640000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000008434ee90ca000000000000000000000000d0a67cb08be17475f4315a04c5f0be3e200ef66c00000000000000000000000055d398326f99059ff775485246999027b31979550000000000000000000000000000000000000000000000001b8146d1019c7471000000000000000000000000000000000000000000000000000000000000271000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000081", - "from": "0x141d32a89a1e0a5ef360034a2f60a4b917c18838", - "gas": "0x92121", - "maxFeePerGas": "0x3938700", - "maxPriorityFeePerGas": "0x3938700", - "to": "0x1a1ec25DC08e98e5E93F1104B5e5cdD298707d31", - "type": "swap", - "value": "0x0" - }, - { - "data": "0x095ea7b30000000000000000000000001a1ec25dc08e98e5e93f1104b5e5cdd298707d31000000000000000000000000000000000000000000000000123fd18867a38000", - "from": "0x141d32a89a1e0a5ef360034a2f60a4b917c18838", - "gas": "0x110fa", - "maxFeePerGas": "0x3938700", - "maxPriorityFeePerGas": "0x3938700", - "to": "0x1af3f329e8be154074d8769d1ffa4ee058b1dbc3", - "type": "swapApproval", - "value": "0x0" - }, - { - "data": "0x5f57552900000000000000000000000000000000000000000000000000000000000000800000000000000000000000001af3f329e8be154074d8769d1ffa4ee058b1dbc3000000000000000000000000000000000000000000000000123fd18867a3800000000000000000000000000000000000000000000000000000000000000000c00000000000000000000000000000000000000000000000000000000000000018756e69737761705065726d69743246656544796e616d6963000000000000000000000000000000000000000000000000000000000000000000000000000006000000000000000000000000001af3f329e8be154074d8769d1ffa4ee058b1dbc300000000000000000000000055d398326f99059ff775485246999027b31979550000000000000000000000000000000000000000000000001216f0a8cfb11c0000000000000000000000000000000000000000000000000011b9f88422bc320d00000000000000000000000000000000000000000000000000000000000001200000000000000000000000000000000000000000000000000028e0df97f26400000000000000000000000000b28da7bc87a9dd1e60849aa7fcb5da24ea913c42000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000004ce3593564c000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000000a0000000000000000000000000000000000000000000000000000000006a065096000000000000000000000000000000000000000000000000000000000000000110000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000002000000000000000000000000000000000000000000000000000000000000003c0000000000000000000000000000000000000000000000000000000000000004000000000000000000000000000000000000000000000000000000000000000800000000000000000000000000000000000000000000000000000000000000003070b0e000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000030000000000000000000000000000000000000000000000000000000000000060000000000000000000000000000000000000000000000000000000000000022000000000000000000000000000000000000000000000000000000000000002a000000000000000000000000000000000000000000000000000000000000001a000000000000000000000000000000000000000000000000000000000000000200000000000000000000000001af3f329e8be154074d8769d1ffa4ee058b1dbc300000000000000000000000000000000000000000000000000000000000000800000000000000000000000000000000000000000000000001216f0a8cfb11c0000000000000000000000000000000000000000000000000011bbc963eb6e50300000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000002000000000000000000000000055d398326f99059ff775485246999027b319795500000000000000000000000000000000000000000000000000000000000000640000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000a0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000600000000000000000000000001af3f329e8be154074d8769d1ffa4ee058b1dbc300000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000006000000000000000000000000055d398326f99059ff775485246999027b3197955000000000000000000000000c590175e458b83680867afd273527ff58f74c02b0000000000000000000000000000000000000000000000000000000000000000756e69780000b2c5de0b0000000000000000000000000000000000005e", - "from": "0x141d32a89a1e0a5ef360034a2f60a4b917c18838", - "gas": "0x5d0e7", - "maxFeePerGas": "0x3938700", - "maxPriorityFeePerGas": "0x3938700", - "to": "0x1a1ec25DC08e98e5E93F1104B5e5cdD298707d31", - "type": "swap", - "value": "0x0" - }, - { - "data": "0xa9059cbb000000000000000000000000e3478b0bb1a5084567c319096437924948be196400000000000000000000000000000000000000000000000000e158d1fadf55c0", - "from": "0x141d32a89a1e0a5ef360034a2f60a4b917c18838", - "gas": "0xcc57", - "maxFeePerGas": "0x3938700", - "maxPriorityFeePerGas": "0x3938700", - "to": "0x55d398326f99059ff775485246999027b3197955", - "type": "transfer", - "value": "0x0" - } - ], - "networkClientId": "9a1eafde-5f04-434b-b011-e9de5c50baf0", - "origin": "metamask", - "originalGasEstimate": "0xa4927", - "r": "0xd54b20a287675daeb5bef4118956289c76edc38213ae2f5f7639a4dc787ee3eb", - "rawTx": "0x02f914f1385284039387008403938700830a492794141d32a89a1e0a5ef360034a2f60a4b917c1883880b91484e9ae5c530101000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000004000000000000000000000000000000000000000000000000000000000000014200000000000000000000000000000000000000000000000000000000000000020000000000000000000000000000000000000000000000000000000000000000500000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000000000000000000000000000001800000000000000000000000000000000000000000000000000000000000000aa00000000000000000000000000000000000000000000000000000000000000b800000000000000000000000000000000000000000000000000000000000001300000000000000000000000000f8a0bf9cf54bb92f17374d9e9a321e6a111a51bd000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000600000000000000000000000000000000000000000000000000000000000000044095ea7b30000000000000000000000001a1ec25dc08e98e5e93f1104b5e5cdd298707d310000000000000000000000000000000000000000000000000298348bed9600b7000000000000000000000000000000000000000000000000000000000000000000000000000000001a1ec25dc08e98e5e93f1104b5e5cdd298707d310000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000008855f5755290000000000000000000000000000000000000000000000000000000000000080000000000000000000000000f8a0bf9cf54bb92f17374d9e9a321e6a111a51bd0000000000000000000000000000000000000000000000000298348bed9600b700000000000000000000000000000000000000000000000000000000000000c00000000000000000000000000000000000000000000000000000000000000004307856320000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000007a0000000000000000000000000f8a0bf9cf54bb92f17374d9e9a321e6a111a51bd00000000000000000000000055d398326f99059ff775485246999027b31979550000000000000000000000000000000000000000000000000298348bed9600b70000000000000000000000000000000000000000000000001ab6f8ee3d2792900000000000000000000000000000000000000000000000000000000000000120000000000000000000000000000000000000000000000000003d99ec787508d6000000000000000000000000b28da7bc87a9dd1e60849aa7fcb5da24ea913c42000000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000000006642213bc0b000000000000000000000000c2eff1f1ce35d395408a34ad881dbcd978f40b89000000000000000000000000f8a0bf9cf54bb92f17374d9e9a321e6a111a51bd0000000000000000000000000000000000000000000000000298348bed9600b7000000000000000000000000c2eff1f1ce35d395408a34ad881dbcd978f40b8900000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000000000000000000000000000005841fff991f000000000000000000000000c590175e458b83680867afd273527ff58f74c02b00000000000000000000000055d398326f99059ff775485246999027b31979550000000000000000000000000000000000000000000000001b39be39cf27478400000000000000000000000000000000000000000000000000000000000000a0e9aca974a1e80b3e36b2acaf0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000300000000000000000000000000000000000000000000000000000000000000600000000000000000000000000000000000000000000000000000000000000220000000000000000000000000000000000000000000000000000000000000040000000000000000000000000000000000000000000000000000000000000001843036d6a6000000000000000000000000c2eff1f1ce35d395408a34ad881dbcd978f40b89000000000000000000000000f8a0bf9cf54bb92f17374d9e9a321e6a111a51bd0000000000000000000000000000000000000000000000000298348bed9600b70000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000006a064ab90000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000000000016000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000040f8a0bf9cf54bb92f17374d9e9a321e6a111a51bd000001f4fffd8963efd1fc6a506488495d951d5263988d252170ed0880ac9a755fd29b2688956bd959f933f800000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001a4df753f1e000000000000000000000000c2eff1f1ce35d395408a34ad881dbcd978f40b890000000000000000000000002170ed0880ac9a755fd29b2688956bd959f933f8000000000000000000000000000000000000000000000000000000000000271000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000002000000000000000000000000000000000000000000000000ffffffffffffffc5000000000000000000000000000000000000000000000000000000000000010000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000066271000000000000000000000000000000001000276a40155d398326f99059ff775485246999027b31979550000000000000000000000000000000000000000000000430000000000000000000000000000000000000000000000000000000000640000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000008434ee90ca000000000000000000000000d0a67cb08be17475f4315a04c5f0be3e200ef66c00000000000000000000000055d398326f99059ff775485246999027b31979550000000000000000000000000000000000000000000000001b8146d1019c74710000000000000000000000000000000000000000000000000000000000002710000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000810000000000000000000000000000000000000000000000000000000000000000000000000000001af3f329e8be154074d8769d1ffa4ee058b1dbc3000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000600000000000000000000000000000000000000000000000000000000000000044095ea7b30000000000000000000000001a1ec25dc08e98e5e93f1104b5e5cdd298707d31000000000000000000000000000000000000000000000000123fd18867a38000000000000000000000000000000000000000000000000000000000000000000000000000000000001a1ec25dc08e98e5e93f1104b5e5cdd298707d310000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000006e55f57552900000000000000000000000000000000000000000000000000000000000000800000000000000000000000001af3f329e8be154074d8769d1ffa4ee058b1dbc3000000000000000000000000000000000000000000000000123fd18867a3800000000000000000000000000000000000000000000000000000000000000000c00000000000000000000000000000000000000000000000000000000000000018756e69737761705065726d69743246656544796e616d6963000000000000000000000000000000000000000000000000000000000000000000000000000006000000000000000000000000001af3f329e8be154074d8769d1ffa4ee058b1dbc300000000000000000000000055d398326f99059ff775485246999027b31979550000000000000000000000000000000000000000000000001216f0a8cfb11c0000000000000000000000000000000000000000000000000011b9f88422bc320d00000000000000000000000000000000000000000000000000000000000001200000000000000000000000000000000000000000000000000028e0df97f26400000000000000000000000000b28da7bc87a9dd1e60849aa7fcb5da24ea913c42000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000004ce3593564c000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000000a0000000000000000000000000000000000000000000000000000000006a065096000000000000000000000000000000000000000000000000000000000000000110000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000002000000000000000000000000000000000000000000000000000000000000003c0000000000000000000000000000000000000000000000000000000000000004000000000000000000000000000000000000000000000000000000000000000800000000000000000000000000000000000000000000000000000000000000003070b0e000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000030000000000000000000000000000000000000000000000000000000000000060000000000000000000000000000000000000000000000000000000000000022000000000000000000000000000000000000000000000000000000000000002a000000000000000000000000000000000000000000000000000000000000001a000000000000000000000000000000000000000000000000000000000000000200000000000000000000000001af3f329e8be154074d8769d1ffa4ee058b1dbc300000000000000000000000000000000000000000000000000000000000000800000000000000000000000000000000000000000000000001216f0a8cfb11c0000000000000000000000000000000000000000000000000011bbc963eb6e50300000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000002000000000000000000000000055d398326f99059ff775485246999027b319795500000000000000000000000000000000000000000000000000000000000000640000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000a0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000600000000000000000000000001af3f329e8be154074d8769d1ffa4ee058b1dbc300000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000006000000000000000000000000055d398326f99059ff775485246999027b3197955000000000000000000000000c590175e458b83680867afd273527ff58f74c02b0000000000000000000000000000000000000000000000000000000000000000756e69780000b2c5de0b0000000000000000000000000000000000005e00000000000000000000000000000000000000000000000000000000000000000000000000000055d398326f99059ff775485246999027b3197955000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000600000000000000000000000000000000000000000000000000000000000000044a9059cbb000000000000000000000000e3478b0bb1a5084567c319096437924948be196400000000000000000000000000000000000000000000000000e158d1fadf55c000000000000000000000000000000000000000000000000000000000c001a0d54b20a287675daeb5bef4118956289c76edc38213ae2f5f7639a4dc787ee3eba03a63f211e7e841f518a5716c0f6df0fa401ac01108ce5622592d864eb151c3e3", - "s": "0x3a63f211e7e841f518a5716c0f6df0fa401ac01108ce5622592d864eb151c3e3", - "status": "failed", - "time": 1778796951038, - "txParams": { - "data": "0xe9ae5c530101000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000004000000000000000000000000000000000000000000000000000000000000014200000000000000000000000000000000000000000000000000000000000000020000000000000000000000000000000000000000000000000000000000000000500000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000000000000000000000000000001800000000000000000000000000000000000000000000000000000000000000aa00000000000000000000000000000000000000000000000000000000000000b800000000000000000000000000000000000000000000000000000000000001300000000000000000000000000f8a0bf9cf54bb92f17374d9e9a321e6a111a51bd000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000600000000000000000000000000000000000000000000000000000000000000044095ea7b30000000000000000000000001a1ec25dc08e98e5e93f1104b5e5cdd298707d310000000000000000000000000000000000000000000000000298348bed9600b7000000000000000000000000000000000000000000000000000000000000000000000000000000001a1ec25dc08e98e5e93f1104b5e5cdd298707d310000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000008855f5755290000000000000000000000000000000000000000000000000000000000000080000000000000000000000000f8a0bf9cf54bb92f17374d9e9a321e6a111a51bd0000000000000000000000000000000000000000000000000298348bed9600b700000000000000000000000000000000000000000000000000000000000000c00000000000000000000000000000000000000000000000000000000000000004307856320000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000007a0000000000000000000000000f8a0bf9cf54bb92f17374d9e9a321e6a111a51bd00000000000000000000000055d398326f99059ff775485246999027b31979550000000000000000000000000000000000000000000000000298348bed9600b70000000000000000000000000000000000000000000000001ab6f8ee3d2792900000000000000000000000000000000000000000000000000000000000000120000000000000000000000000000000000000000000000000003d99ec787508d6000000000000000000000000b28da7bc87a9dd1e60849aa7fcb5da24ea913c42000000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000000006642213bc0b000000000000000000000000c2eff1f1ce35d395408a34ad881dbcd978f40b89000000000000000000000000f8a0bf9cf54bb92f17374d9e9a321e6a111a51bd0000000000000000000000000000000000000000000000000298348bed9600b7000000000000000000000000c2eff1f1ce35d395408a34ad881dbcd978f40b8900000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000000000000000000000000000005841fff991f000000000000000000000000c590175e458b83680867afd273527ff58f74c02b00000000000000000000000055d398326f99059ff775485246999027b31979550000000000000000000000000000000000000000000000001b39be39cf27478400000000000000000000000000000000000000000000000000000000000000a0e9aca974a1e80b3e36b2acaf0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000300000000000000000000000000000000000000000000000000000000000000600000000000000000000000000000000000000000000000000000000000000220000000000000000000000000000000000000000000000000000000000000040000000000000000000000000000000000000000000000000000000000000001843036d6a6000000000000000000000000c2eff1f1ce35d395408a34ad881dbcd978f40b89000000000000000000000000f8a0bf9cf54bb92f17374d9e9a321e6a111a51bd0000000000000000000000000000000000000000000000000298348bed9600b70000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000006a064ab90000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000000000016000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000040f8a0bf9cf54bb92f17374d9e9a321e6a111a51bd000001f4fffd8963efd1fc6a506488495d951d5263988d252170ed0880ac9a755fd29b2688956bd959f933f800000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001a4df753f1e000000000000000000000000c2eff1f1ce35d395408a34ad881dbcd978f40b890000000000000000000000002170ed0880ac9a755fd29b2688956bd959f933f8000000000000000000000000000000000000000000000000000000000000271000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000002000000000000000000000000000000000000000000000000ffffffffffffffc5000000000000000000000000000000000000000000000000000000000000010000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000066271000000000000000000000000000000001000276a40155d398326f99059ff775485246999027b31979550000000000000000000000000000000000000000000000430000000000000000000000000000000000000000000000000000000000640000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000008434ee90ca000000000000000000000000d0a67cb08be17475f4315a04c5f0be3e200ef66c00000000000000000000000055d398326f99059ff775485246999027b31979550000000000000000000000000000000000000000000000001b8146d1019c74710000000000000000000000000000000000000000000000000000000000002710000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000810000000000000000000000000000000000000000000000000000000000000000000000000000001af3f329e8be154074d8769d1ffa4ee058b1dbc3000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000600000000000000000000000000000000000000000000000000000000000000044095ea7b30000000000000000000000001a1ec25dc08e98e5e93f1104b5e5cdd298707d31000000000000000000000000000000000000000000000000123fd18867a38000000000000000000000000000000000000000000000000000000000000000000000000000000000001a1ec25dc08e98e5e93f1104b5e5cdd298707d310000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000006e55f57552900000000000000000000000000000000000000000000000000000000000000800000000000000000000000001af3f329e8be154074d8769d1ffa4ee058b1dbc3000000000000000000000000000000000000000000000000123fd18867a3800000000000000000000000000000000000000000000000000000000000000000c00000000000000000000000000000000000000000000000000000000000000018756e69737761705065726d69743246656544796e616d6963000000000000000000000000000000000000000000000000000000000000000000000000000006000000000000000000000000001af3f329e8be154074d8769d1ffa4ee058b1dbc300000000000000000000000055d398326f99059ff775485246999027b31979550000000000000000000000000000000000000000000000001216f0a8cfb11c0000000000000000000000000000000000000000000000000011b9f88422bc320d00000000000000000000000000000000000000000000000000000000000001200000000000000000000000000000000000000000000000000028e0df97f26400000000000000000000000000b28da7bc87a9dd1e60849aa7fcb5da24ea913c42000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000004ce3593564c000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000000a0000000000000000000000000000000000000000000000000000000006a065096000000000000000000000000000000000000000000000000000000000000000110000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000002000000000000000000000000000000000000000000000000000000000000003c0000000000000000000000000000000000000000000000000000000000000004000000000000000000000000000000000000000000000000000000000000000800000000000000000000000000000000000000000000000000000000000000003070b0e000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000030000000000000000000000000000000000000000000000000000000000000060000000000000000000000000000000000000000000000000000000000000022000000000000000000000000000000000000000000000000000000000000002a000000000000000000000000000000000000000000000000000000000000001a000000000000000000000000000000000000000000000000000000000000000200000000000000000000000001af3f329e8be154074d8769d1ffa4ee058b1dbc300000000000000000000000000000000000000000000000000000000000000800000000000000000000000000000000000000000000000001216f0a8cfb11c0000000000000000000000000000000000000000000000000011bbc963eb6e50300000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000002000000000000000000000000055d398326f99059ff775485246999027b319795500000000000000000000000000000000000000000000000000000000000000640000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000a0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000600000000000000000000000001af3f329e8be154074d8769d1ffa4ee058b1dbc300000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000006000000000000000000000000055d398326f99059ff775485246999027b3197955000000000000000000000000c590175e458b83680867afd273527ff58f74c02b0000000000000000000000000000000000000000000000000000000000000000756e69780000b2c5de0b0000000000000000000000000000000000005e00000000000000000000000000000000000000000000000000000000000000000000000000000055d398326f99059ff775485246999027b3197955000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000600000000000000000000000000000000000000000000000000000000000000044a9059cbb000000000000000000000000e3478b0bb1a5084567c319096437924948be196400000000000000000000000000000000000000000000000000e158d1fadf55c000000000000000000000000000000000000000000000000000000000", - "from": "0x141d32a89a1e0a5ef360034a2f60a4b917c18838", - "gas": "0xa4927", - "gasLimit": "0xa4927", - "maxFeePerGas": "0x3938700", - "maxPriorityFeePerGas": "0x3938700", - "nonce": "0x52", - "to": "0x141d32a89a1e0a5ef360034a2f60a4b917c18838", - "type": "0x2", - "value": "0x0" - }, - "type": "batch", - "userEditedGasLimit": false, - "userFeeLevel": "medium", - "v": "0x1", - "verifiedOnBlockchain": false - }, - { - "batchId": "0x19e28972b09", - "chainId": "0x38", - "defaultGasEstimates": { - "estimateType": "medium", - "gas": "0x808fb", - "maxFeePerGas": "0x3e9bd50", - "maxPriorityFeePerGas": "0x3e9bd50" - }, - "delegationAddress": "0x63c0c19a282a1b52b07dd5a65b58948a07dae32b", - "error": { - "message": "RPC submit: Internal error", - "name": "Error", - "stack": "Error: RPC submit: Internal error\n at TransactionController._TransactionController_publishTransaction (chrome-extension://hebhblbkkdabgoldnojllkipeoacjioc/js-node_modules_metamask_s.js:60032:15)\n at async chrome-extension://hebhblbkkdabgoldnojllkipeoacjioc/js-node_modules_metamask_s.js:60718:47\n at async TransactionController._TransactionController_defaultPublishHook (chrome-extension://hebhblbkkdabgoldnojllkipeoacjioc/js-node_modules_metamask_s.js:60711:5)\n at async TransactionController._TransactionController_approveTransaction (chrome-extension://hebhblbkkdabgoldnojllkipeoacjioc/js-node_modules_metamask_s.js:59982:43)\n at async TransactionController._TransactionController_processApproval (chrome-extension://hebhblbkkdabgoldnojllkipeoacjioc/js-node_modules_metamask_s.js:59846:40)\n at async addTransactionBatchWith7702 (chrome-extension://hebhblbkkdabgoldnojllkipeoacjioc/js-node_modules_metamask_s.js:41170:29)\n at async addTransactionBatch (chrome-extension://hebhblbkkdabgoldnojllkipeoacjioc/js-node_modules_metamask_s.js:40973:20)\n at async TransactionController.addTransactionBatch (chrome-extension://hebhblbkkdabgoldnojllkipeoacjioc/js-node_modules_metamask_s.js:58610:16)\n at async addTransactionBatch (chrome-extension://hebhblbkkdabgoldnojllkipeoacjioc/js-node_modules_metamask_a.js:67560:25)\n at async submitBatchSellHandler (chrome-extension://hebhblbkkdabgoldnojllkipeoacjioc/js-node_modules_metamask_a.js:20660:33)" - }, - "gasFeeEstimates": { - "high": { - "maxFeePerGas": "0x2faf080", - "maxPriorityFeePerGas": "0x2faf080" - }, - "low": { - "maxFeePerGas": "0x2faf080", - "maxPriorityFeePerGas": "0x2faf080" - }, - "medium": { - "maxFeePerGas": "0x2faf080", - "maxPriorityFeePerGas": "0x2faf080" - }, - "type": "fee-market" - }, - "gasFeeEstimatesLoaded": true, - "gasLimitNoBuffer": "0x808fb", - "id": "41b75360-4fe3-11f1-93d2-a510343ca17a", - "isGasFeeIncluded": true, - "isGasFeeSponsored": false, - "isGasFeeTokenIgnoredIfBalance": false, - "nestedTransactions": [ - { - "data": "0x095ea7b30000000000000000000000001a1ec25dc08e98e5e93f1104b5e5cdd298707d310000000000000000000000000000000000000000000000000298348bed9600b7", - "from": "0x141d32a89a1e0a5ef360034a2f60a4b917c18838", - "gas": "0x110fa", - "maxFeePerGas": "0x3e9bd50", - "maxPriorityFeePerGas": "0x3e9bd50", - "to": "0xf8a0bf9cf54bb92f17374d9e9a321e6a111a51bd", - "type": "swapApproval", - "value": "0x0" - }, - { - "data": "0x5f5755290000000000000000000000000000000000000000000000000000000000000080000000000000000000000000f8a0bf9cf54bb92f17374d9e9a321e6a111a51bd0000000000000000000000000000000000000000000000000298348bed9600b700000000000000000000000000000000000000000000000000000000000000c0000000000000000000000000000000000000000000000000000000000000001b70616e63616b6553776170526f7574657246656544796e616d696300000000000000000000000000000000000000000000000000000000000000000000000220000000000000000000000000f8a0bf9cf54bb92f17374d9e9a321e6a111a51bd00000000000000000000000055d398326f99059ff775485246999027b31979550000000000000000000000000000000000000000000000000298348bed9600b70000000000000000000000000000000000000000000000001a9b23a0b284c1b90000000000000000000000000000000000000000000000000000000000000120000000000000000000000000000000000000000000000000003d59be4cc7afd6000000000000000000000000b28da7bc87a9dd1e60849aa7fcb5da24ea913c42000000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000000000e404e45aaf000000000000000000000000f8a0bf9cf54bb92f17374d9e9a321e6a111a51bd00000000000000000000000055d398326f99059ff775485246999027b319795500000000000000000000000000000000000000000000000000000000000009c4000000000000000000000000c590175e458b83680867afd273527ff58f74c02b0000000000000000000000000000000000000000000000000298348bed9600b70000000000000000000000000000000000000000000000001ada0327b32f617c000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000a3", - "from": "0x141d32a89a1e0a5ef360034a2f60a4b917c18838", - "gas": "0x5b63a", - "maxFeePerGas": "0x3e9bd50", - "maxPriorityFeePerGas": "0x3e9bd50", - "to": "0x1a1ec25DC08e98e5E93F1104B5e5cdD298707d31", - "type": "swap", - "value": "0x0" - }, - { - "data": "0x095ea7b30000000000000000000000001a1ec25dc08e98e5e93f1104b5e5cdd298707d31000000000000000000000000000000000000000000000000123fd18867a38000", - "from": "0x141d32a89a1e0a5ef360034a2f60a4b917c18838", - "gas": "0x110fa", - "maxFeePerGas": "0x3e9bd50", - "maxPriorityFeePerGas": "0x3e9bd50", - "to": "0x1af3f329e8be154074d8769d1ffa4ee058b1dbc3", - "type": "swapApproval", - "value": "0x0" - }, - { - "data": "0x5f57552900000000000000000000000000000000000000000000000000000000000000800000000000000000000000001af3f329e8be154074d8769d1ffa4ee058b1dbc3000000000000000000000000000000000000000000000000123fd18867a3800000000000000000000000000000000000000000000000000000000000000000c00000000000000000000000000000000000000000000000000000000000000018756e69737761705065726d69743246656544796e616d6963000000000000000000000000000000000000000000000000000000000000000000000000000006000000000000000000000000001af3f329e8be154074d8769d1ffa4ee058b1dbc300000000000000000000000055d398326f99059ff775485246999027b31979550000000000000000000000000000000000000000000000001216f0a8cfb11c0000000000000000000000000000000000000000000000000011b9f7bfd9880dfc00000000000000000000000000000000000000000000000000000000000001200000000000000000000000000000000000000000000000000028e0df97f26400000000000000000000000000b28da7bc87a9dd1e60849aa7fcb5da24ea913c42000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000004ce3593564c000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000000a0000000000000000000000000000000000000000000000000000000006a0651ee000000000000000000000000000000000000000000000000000000000000000110000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000002000000000000000000000000000000000000000000000000000000000000003c0000000000000000000000000000000000000000000000000000000000000004000000000000000000000000000000000000000000000000000000000000000800000000000000000000000000000000000000000000000000000000000000003070b0e000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000030000000000000000000000000000000000000000000000000000000000000060000000000000000000000000000000000000000000000000000000000000022000000000000000000000000000000000000000000000000000000000000002a000000000000000000000000000000000000000000000000000000000000001a000000000000000000000000000000000000000000000000000000000000000200000000000000000000000001af3f329e8be154074d8769d1ffa4ee058b1dbc300000000000000000000000000000000000000000000000000000000000000800000000000000000000000000000000000000000000000001216f0a8cfb11c0000000000000000000000000000000000000000000000000011bbc89f8e1e98490000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000002000000000000000000000000055d398326f99059ff775485246999027b319795500000000000000000000000000000000000000000000000000000000000000640000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000a0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000600000000000000000000000001af3f329e8be154074d8769d1ffa4ee058b1dbc300000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000006000000000000000000000000055d398326f99059ff775485246999027b3197955000000000000000000000000c590175e458b83680867afd273527ff58f74c02b0000000000000000000000000000000000000000000000000000000000000000756e69780000b2c5de0b000000000000000000000000000000000000d9", - "from": "0x141d32a89a1e0a5ef360034a2f60a4b917c18838", - "gas": "0x5d0e7", - "maxFeePerGas": "0x3e9bd50", - "maxPriorityFeePerGas": "0x3e9bd50", - "to": "0x1a1ec25DC08e98e5E93F1104B5e5cdD298707d31", - "type": "swap", - "value": "0x0" - }, - { - "data": "0xa9059cbb000000000000000000000000e3478b0bb1a5084567c319096437924948be196400000000000000000000000000000000000000000000000000b3aed99b0b08d2", - "from": "0x141d32a89a1e0a5ef360034a2f60a4b917c18838", - "gas": "0xcc57", - "maxFeePerGas": "0x3e9bd50", - "maxPriorityFeePerGas": "0x3e9bd50", - "to": "0x55d398326f99059ff775485246999027b3197955", - "type": "transfer", - "value": "0x0" - } - ], - "networkClientId": "9a1eafde-5f04-434b-b011-e9de5c50baf0", - "origin": "metamask", - "originalGasEstimate": "0x808fb", - "r": "0x9e0f3f948702ce05a11aac1a4677261a57650214e091d3a1c3f80f5b717c5d07", - "rawTx": "0x02f90f7138528403e9bd508403e9bd50830808fb94141d32a89a1e0a5ef360034a2f60a4b917c1883880b90f04e9ae5c53010100000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000400000000000000000000000000000000000000000000000000000000000000ea00000000000000000000000000000000000000000000000000000000000000020000000000000000000000000000000000000000000000000000000000000000500000000000000000000000000000000000000000000000000000000000000a00000000000000000000000000000000000000000000000000000000000000180000000000000000000000000000000000000000000000000000000000000052000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000000d80000000000000000000000000f8a0bf9cf54bb92f17374d9e9a321e6a111a51bd000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000600000000000000000000000000000000000000000000000000000000000000044095ea7b30000000000000000000000001a1ec25dc08e98e5e93f1104b5e5cdd298707d310000000000000000000000000000000000000000000000000298348bed9600b7000000000000000000000000000000000000000000000000000000000000000000000000000000001a1ec25dc08e98e5e93f1104b5e5cdd298707d310000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000003055f5755290000000000000000000000000000000000000000000000000000000000000080000000000000000000000000f8a0bf9cf54bb92f17374d9e9a321e6a111a51bd0000000000000000000000000000000000000000000000000298348bed9600b700000000000000000000000000000000000000000000000000000000000000c0000000000000000000000000000000000000000000000000000000000000001b70616e63616b6553776170526f7574657246656544796e616d696300000000000000000000000000000000000000000000000000000000000000000000000220000000000000000000000000f8a0bf9cf54bb92f17374d9e9a321e6a111a51bd00000000000000000000000055d398326f99059ff775485246999027b31979550000000000000000000000000000000000000000000000000298348bed9600b70000000000000000000000000000000000000000000000001a9b23a0b284c1b90000000000000000000000000000000000000000000000000000000000000120000000000000000000000000000000000000000000000000003d59be4cc7afd6000000000000000000000000b28da7bc87a9dd1e60849aa7fcb5da24ea913c42000000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000000000e404e45aaf000000000000000000000000f8a0bf9cf54bb92f17374d9e9a321e6a111a51bd00000000000000000000000055d398326f99059ff775485246999027b319795500000000000000000000000000000000000000000000000000000000000009c4000000000000000000000000c590175e458b83680867afd273527ff58f74c02b0000000000000000000000000000000000000000000000000298348bed9600b70000000000000000000000000000000000000000000000001ada0327b32f617c000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000a30000000000000000000000000000000000000000000000000000000000000000000000000000001af3f329e8be154074d8769d1ffa4ee058b1dbc3000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000600000000000000000000000000000000000000000000000000000000000000044095ea7b30000000000000000000000001a1ec25dc08e98e5e93f1104b5e5cdd298707d31000000000000000000000000000000000000000000000000123fd18867a38000000000000000000000000000000000000000000000000000000000000000000000000000000000001a1ec25dc08e98e5e93f1104b5e5cdd298707d310000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000006e55f57552900000000000000000000000000000000000000000000000000000000000000800000000000000000000000001af3f329e8be154074d8769d1ffa4ee058b1dbc3000000000000000000000000000000000000000000000000123fd18867a3800000000000000000000000000000000000000000000000000000000000000000c00000000000000000000000000000000000000000000000000000000000000018756e69737761705065726d69743246656544796e616d6963000000000000000000000000000000000000000000000000000000000000000000000000000006000000000000000000000000001af3f329e8be154074d8769d1ffa4ee058b1dbc300000000000000000000000055d398326f99059ff775485246999027b31979550000000000000000000000000000000000000000000000001216f0a8cfb11c0000000000000000000000000000000000000000000000000011b9f7bfd9880dfc00000000000000000000000000000000000000000000000000000000000001200000000000000000000000000000000000000000000000000028e0df97f26400000000000000000000000000b28da7bc87a9dd1e60849aa7fcb5da24ea913c42000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000004ce3593564c000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000000a0000000000000000000000000000000000000000000000000000000006a0651ee000000000000000000000000000000000000000000000000000000000000000110000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000002000000000000000000000000000000000000000000000000000000000000003c0000000000000000000000000000000000000000000000000000000000000004000000000000000000000000000000000000000000000000000000000000000800000000000000000000000000000000000000000000000000000000000000003070b0e000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000030000000000000000000000000000000000000000000000000000000000000060000000000000000000000000000000000000000000000000000000000000022000000000000000000000000000000000000000000000000000000000000002a000000000000000000000000000000000000000000000000000000000000001a000000000000000000000000000000000000000000000000000000000000000200000000000000000000000001af3f329e8be154074d8769d1ffa4ee058b1dbc300000000000000000000000000000000000000000000000000000000000000800000000000000000000000000000000000000000000000001216f0a8cfb11c0000000000000000000000000000000000000000000000000011bbc89f8e1e98490000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000002000000000000000000000000055d398326f99059ff775485246999027b319795500000000000000000000000000000000000000000000000000000000000000640000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000a0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000600000000000000000000000001af3f329e8be154074d8769d1ffa4ee058b1dbc300000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000006000000000000000000000000055d398326f99059ff775485246999027b3197955000000000000000000000000c590175e458b83680867afd273527ff58f74c02b0000000000000000000000000000000000000000000000000000000000000000756e69780000b2c5de0b000000000000000000000000000000000000d900000000000000000000000000000000000000000000000000000000000000000000000000000055d398326f99059ff775485246999027b3197955000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000600000000000000000000000000000000000000000000000000000000000000044a9059cbb000000000000000000000000e3478b0bb1a5084567c319096437924948be196400000000000000000000000000000000000000000000000000b3aed99b0b08d200000000000000000000000000000000000000000000000000000000c001a09e0f3f948702ce05a11aac1a4677261a57650214e091d3a1c3f80f5b717c5d07a047ce50a2362c19fc02f06dbf1e9d8c30c81554935b9788b2474ba59baaab6682", - "s": "0x47ce50a2362c19fc02f06dbf1e9d8c30c81554935b9788b2474ba59baaab6682", - "status": "failed", - "time": 1778797290390, - "txParams": { - "data": "0xe9ae5c53010100000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000400000000000000000000000000000000000000000000000000000000000000ea00000000000000000000000000000000000000000000000000000000000000020000000000000000000000000000000000000000000000000000000000000000500000000000000000000000000000000000000000000000000000000000000a00000000000000000000000000000000000000000000000000000000000000180000000000000000000000000000000000000000000000000000000000000052000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000000d80000000000000000000000000f8a0bf9cf54bb92f17374d9e9a321e6a111a51bd000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000600000000000000000000000000000000000000000000000000000000000000044095ea7b30000000000000000000000001a1ec25dc08e98e5e93f1104b5e5cdd298707d310000000000000000000000000000000000000000000000000298348bed9600b7000000000000000000000000000000000000000000000000000000000000000000000000000000001a1ec25dc08e98e5e93f1104b5e5cdd298707d310000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000003055f5755290000000000000000000000000000000000000000000000000000000000000080000000000000000000000000f8a0bf9cf54bb92f17374d9e9a321e6a111a51bd0000000000000000000000000000000000000000000000000298348bed9600b700000000000000000000000000000000000000000000000000000000000000c0000000000000000000000000000000000000000000000000000000000000001b70616e63616b6553776170526f7574657246656544796e616d696300000000000000000000000000000000000000000000000000000000000000000000000220000000000000000000000000f8a0bf9cf54bb92f17374d9e9a321e6a111a51bd00000000000000000000000055d398326f99059ff775485246999027b31979550000000000000000000000000000000000000000000000000298348bed9600b70000000000000000000000000000000000000000000000001a9b23a0b284c1b90000000000000000000000000000000000000000000000000000000000000120000000000000000000000000000000000000000000000000003d59be4cc7afd6000000000000000000000000b28da7bc87a9dd1e60849aa7fcb5da24ea913c42000000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000000000e404e45aaf000000000000000000000000f8a0bf9cf54bb92f17374d9e9a321e6a111a51bd00000000000000000000000055d398326f99059ff775485246999027b319795500000000000000000000000000000000000000000000000000000000000009c4000000000000000000000000c590175e458b83680867afd273527ff58f74c02b0000000000000000000000000000000000000000000000000298348bed9600b70000000000000000000000000000000000000000000000001ada0327b32f617c000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000a30000000000000000000000000000000000000000000000000000000000000000000000000000001af3f329e8be154074d8769d1ffa4ee058b1dbc3000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000600000000000000000000000000000000000000000000000000000000000000044095ea7b30000000000000000000000001a1ec25dc08e98e5e93f1104b5e5cdd298707d31000000000000000000000000000000000000000000000000123fd18867a38000000000000000000000000000000000000000000000000000000000000000000000000000000000001a1ec25dc08e98e5e93f1104b5e5cdd298707d310000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000006e55f57552900000000000000000000000000000000000000000000000000000000000000800000000000000000000000001af3f329e8be154074d8769d1ffa4ee058b1dbc3000000000000000000000000000000000000000000000000123fd18867a3800000000000000000000000000000000000000000000000000000000000000000c00000000000000000000000000000000000000000000000000000000000000018756e69737761705065726d69743246656544796e616d6963000000000000000000000000000000000000000000000000000000000000000000000000000006000000000000000000000000001af3f329e8be154074d8769d1ffa4ee058b1dbc300000000000000000000000055d398326f99059ff775485246999027b31979550000000000000000000000000000000000000000000000001216f0a8cfb11c0000000000000000000000000000000000000000000000000011b9f7bfd9880dfc00000000000000000000000000000000000000000000000000000000000001200000000000000000000000000000000000000000000000000028e0df97f26400000000000000000000000000b28da7bc87a9dd1e60849aa7fcb5da24ea913c42000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000004ce3593564c000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000000a0000000000000000000000000000000000000000000000000000000006a0651ee000000000000000000000000000000000000000000000000000000000000000110000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000002000000000000000000000000000000000000000000000000000000000000003c0000000000000000000000000000000000000000000000000000000000000004000000000000000000000000000000000000000000000000000000000000000800000000000000000000000000000000000000000000000000000000000000003070b0e000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000030000000000000000000000000000000000000000000000000000000000000060000000000000000000000000000000000000000000000000000000000000022000000000000000000000000000000000000000000000000000000000000002a000000000000000000000000000000000000000000000000000000000000001a000000000000000000000000000000000000000000000000000000000000000200000000000000000000000001af3f329e8be154074d8769d1ffa4ee058b1dbc300000000000000000000000000000000000000000000000000000000000000800000000000000000000000000000000000000000000000001216f0a8cfb11c0000000000000000000000000000000000000000000000000011bbc89f8e1e98490000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000002000000000000000000000000055d398326f99059ff775485246999027b319795500000000000000000000000000000000000000000000000000000000000000640000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000a0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000600000000000000000000000001af3f329e8be154074d8769d1ffa4ee058b1dbc300000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000006000000000000000000000000055d398326f99059ff775485246999027b3197955000000000000000000000000c590175e458b83680867afd273527ff58f74c02b0000000000000000000000000000000000000000000000000000000000000000756e69780000b2c5de0b000000000000000000000000000000000000d900000000000000000000000000000000000000000000000000000000000000000000000000000055d398326f99059ff775485246999027b3197955000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000600000000000000000000000000000000000000000000000000000000000000044a9059cbb000000000000000000000000e3478b0bb1a5084567c319096437924948be196400000000000000000000000000000000000000000000000000b3aed99b0b08d200000000000000000000000000000000000000000000000000000000", - "from": "0x141d32a89a1e0a5ef360034a2f60a4b917c18838", - "gas": "0x808fb", - "gasLimit": "0x808fb", - "maxFeePerGas": "0x3e9bd50", - "maxPriorityFeePerGas": "0x3e9bd50", - "nonce": "0x52", - "to": "0x141d32a89a1e0a5ef360034a2f60a4b917c18838", - "type": "0x2", - "value": "0x0" - }, - "type": "batch", - "userEditedGasLimit": false, - "userFeeLevel": "medium", - "v": "0x1", - "verifiedOnBlockchain": false - }, - { - "batchId": "0x19e28acb476", - "chainId": "0x38", - "defaultGasEstimates": { - "estimateType": "medium", - "gas": "0x91644", - "maxFeePerGas": "0x3938700", - "maxPriorityFeePerGas": "0x3938700" - }, - "delegationAddress": "0x63c0c19a282a1b52b07dd5a65b58948a07dae32b", - "error": { - "message": "RPC submit: gas required exceeds allowance (421519)", - "name": "Error", - "stack": "Error: RPC submit: gas required exceeds allowance (421519)\n at TransactionController._TransactionController_publishTransaction (chrome-extension://hebhblbkkdabgoldnojllkipeoacjioc/js-node_modules_metamask_s.js:60032:15)\n at async chrome-extension://hebhblbkkdabgoldnojllkipeoacjioc/js-node_modules_metamask_s.js:60718:47\n at async TransactionController._TransactionController_defaultPublishHook (chrome-extension://hebhblbkkdabgoldnojllkipeoacjioc/js-node_modules_metamask_s.js:60711:5)\n at async TransactionController._TransactionController_approveTransaction (chrome-extension://hebhblbkkdabgoldnojllkipeoacjioc/js-node_modules_metamask_s.js:59982:43)\n at async TransactionController._TransactionController_processApproval (chrome-extension://hebhblbkkdabgoldnojllkipeoacjioc/js-node_modules_metamask_s.js:59846:40)\n at async addTransactionBatchWith7702 (chrome-extension://hebhblbkkdabgoldnojllkipeoacjioc/js-node_modules_metamask_s.js:41170:29)\n at async addTransactionBatch (chrome-extension://hebhblbkkdabgoldnojllkipeoacjioc/js-node_modules_metamask_s.js:40973:20)\n at async TransactionController.addTransactionBatch (chrome-extension://hebhblbkkdabgoldnojllkipeoacjioc/js-node_modules_metamask_s.js:58610:16)\n at async addTransactionBatch (chrome-extension://hebhblbkkdabgoldnojllkipeoacjioc/js-node_modules_metamask_a.js:67560:25)\n at async submitBatchSellHandler (chrome-extension://hebhblbkkdabgoldnojllkipeoacjioc/js-node_modules_metamask_a.js:20660:33)" - }, - "gasFeeEstimates": { - "high": { - "maxFeePerGas": "0x2faf080", - "maxPriorityFeePerGas": "0x2faf080" - }, - "low": { - "maxFeePerGas": "0x2faf080", - "maxPriorityFeePerGas": "0x2faf080" - }, - "medium": { - "maxFeePerGas": "0x2faf080", - "maxPriorityFeePerGas": "0x2faf080" - }, - "type": "fee-market" - }, - "gasFeeEstimatesLoaded": true, - "gasLimitNoBuffer": "0x91644", - "id": "31a75130-4fe5-11f1-af8d-890ebd613267", - "isGasFeeIncluded": true, - "isGasFeeSponsored": false, - "isGasFeeTokenIgnoredIfBalance": false, - "nestedTransactions": [ - { - "data": "0x095ea7b30000000000000000000000001a1ec25dc08e98e5e93f1104b5e5cdd298707d310000000000000000000000000000000000000000000000000298348bed9600b7", - "from": "0x141d32a89a1e0a5ef360034a2f60a4b917c18838", - "gas": "0x110fa", - "maxFeePerGas": "0x3938700", - "maxPriorityFeePerGas": "0x3938700", - "to": "0xf8a0bf9cf54bb92f17374d9e9a321e6a111a51bd", - "type": "swapApproval", - "value": "0x0" - }, - { - "data": "0x5f5755290000000000000000000000000000000000000000000000000000000000000080000000000000000000000000f8a0bf9cf54bb92f17374d9e9a321e6a111a51bd0000000000000000000000000000000000000000000000000298348bed9600b700000000000000000000000000000000000000000000000000000000000000c00000000000000000000000000000000000000000000000000000000000000018756e69737761705065726d69743246656544796e616d696300000000000000000000000000000000000000000000000000000000000000000000000000000360000000000000000000000000f8a0bf9cf54bb92f17374d9e9a321e6a111a51bd00000000000000000000000055d398326f99059ff775485246999027b31979550000000000000000000000000000000000000000000000000298348bed9600b70000000000000000000000000000000000000000000000001ab337e661aca3b70000000000000000000000000000000000000000000000000000000000000120000000000000000000000000000000000000000000000000003d9144704ce95a000000000000000000000000b28da7bc87a9dd1e60849aa7fcb5da24ea913c420000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000022e3593564c000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000000a0000000000000000000000000000000000000000000000000000000006a06552b00000000000000000000000000000000000000000000000000000000000000010000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000000000200000000000000000000000000000000000000000000000000000000000000120000000000000000000000000c590175e458b83680867afd273527ff58f74c02b0000000000000000000000000000000000000000000000000298348bed9600b70000000000000000000000000000000000000000000000001af2505449d1b25a00000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000000000000000000000000000000010000000000000000000000000000000000000000000000000000000000000042f8a0bf9cf54bb92f17374d9e9a321e6a111a51bd0001f42170ed0880ac9a755fd29b2688956bd959f933f80001f455d398326f99059ff775485246999027b3197955000000000000000000000000000000000000000000000000000000000000756e69780000b2c5de0b00000000000000000000000000000000000030", - "from": "0x141d32a89a1e0a5ef360034a2f60a4b917c18838", - "gas": "0x793ca", - "maxFeePerGas": "0x3938700", - "maxPriorityFeePerGas": "0x3938700", - "to": "0x1a1ec25DC08e98e5E93F1104B5e5cdD298707d31", - "type": "swap", - "value": "0x0" - }, - { - "data": "0x095ea7b30000000000000000000000001a1ec25dc08e98e5e93f1104b5e5cdd298707d31000000000000000000000000000000000000000000000000123fd18867a38000", - "from": "0x141d32a89a1e0a5ef360034a2f60a4b917c18838", - "gas": "0x110fa", - "maxFeePerGas": "0x3938700", - "maxPriorityFeePerGas": "0x3938700", - "to": "0x1af3f329e8be154074d8769d1ffa4ee058b1dbc3", - "type": "swapApproval", - "value": "0x0" - }, - { - "data": "0x5f57552900000000000000000000000000000000000000000000000000000000000000800000000000000000000000001af3f329e8be154074d8769d1ffa4ee058b1dbc3000000000000000000000000000000000000000000000000123fd18867a3800000000000000000000000000000000000000000000000000000000000000000c00000000000000000000000000000000000000000000000000000000000000018756e69737761705065726d69743246656544796e616d6963000000000000000000000000000000000000000000000000000000000000000000000000000006000000000000000000000000001af3f329e8be154074d8769d1ffa4ee058b1dbc300000000000000000000000055d398326f99059ff775485246999027b31979550000000000000000000000000000000000000000000000001216f0a8cfb11c0000000000000000000000000000000000000000000000000011b9f7bfd9880dfc00000000000000000000000000000000000000000000000000000000000001200000000000000000000000000000000000000000000000000028e0df97f26400000000000000000000000000b28da7bc87a9dd1e60849aa7fcb5da24ea913c42000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000004ce3593564c000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000000a0000000000000000000000000000000000000000000000000000000006a06552b000000000000000000000000000000000000000000000000000000000000000110000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000002000000000000000000000000000000000000000000000000000000000000003c0000000000000000000000000000000000000000000000000000000000000004000000000000000000000000000000000000000000000000000000000000000800000000000000000000000000000000000000000000000000000000000000003070b0e000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000030000000000000000000000000000000000000000000000000000000000000060000000000000000000000000000000000000000000000000000000000000022000000000000000000000000000000000000000000000000000000000000002a000000000000000000000000000000000000000000000000000000000000001a000000000000000000000000000000000000000000000000000000000000000200000000000000000000000001af3f329e8be154074d8769d1ffa4ee058b1dbc300000000000000000000000000000000000000000000000000000000000000800000000000000000000000000000000000000000000000001216f0a8cfb11c0000000000000000000000000000000000000000000000000011bbc89f8e1e98490000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000002000000000000000000000000055d398326f99059ff775485246999027b319795500000000000000000000000000000000000000000000000000000000000000640000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000a0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000600000000000000000000000001af3f329e8be154074d8769d1ffa4ee058b1dbc300000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000006000000000000000000000000055d398326f99059ff775485246999027b3197955000000000000000000000000c590175e458b83680867afd273527ff58f74c02b0000000000000000000000000000000000000000000000000000000000000000756e69780000b2c5de0b00000000000000000000000000000000000053", - "from": "0x141d32a89a1e0a5ef360034a2f60a4b917c18838", - "gas": "0x5d0e7", - "maxFeePerGas": "0x3938700", - "maxPriorityFeePerGas": "0x3938700", - "to": "0x1a1ec25DC08e98e5E93F1104B5e5cdD298707d31", - "type": "swap", - "value": "0x0" - }, - { - "data": "0xa9059cbb000000000000000000000000e3478b0bb1a5084567c319096437924948be196400000000000000000000000000000000000000000000000000c66f495812cc88", - "from": "0x141d32a89a1e0a5ef360034a2f60a4b917c18838", - "gas": "0xcc57", - "maxFeePerGas": "0x3938700", - "maxPriorityFeePerGas": "0x3938700", - "to": "0x55d398326f99059ff775485246999027b3197955", - "type": "transfer", - "value": "0x0" - } - ], - "networkClientId": "9a1eafde-5f04-434b-b011-e9de5c50baf0", - "origin": "metamask", - "originalGasEstimate": "0x91644", - "r": "0x87596909125213928c859547effddd2831c43726a03884bbe0899947558bf500", - "rawTx": "0x02f910b13852840393870084039387008309164494141d32a89a1e0a5ef360034a2f60a4b917c1883880b91044e9ae5c53010100000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000400000000000000000000000000000000000000000000000000000000000000fe00000000000000000000000000000000000000000000000000000000000000020000000000000000000000000000000000000000000000000000000000000000500000000000000000000000000000000000000000000000000000000000000a00000000000000000000000000000000000000000000000000000000000000180000000000000000000000000000000000000000000000000000000000000066000000000000000000000000000000000000000000000000000000000000007400000000000000000000000000000000000000000000000000000000000000ec0000000000000000000000000f8a0bf9cf54bb92f17374d9e9a321e6a111a51bd000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000600000000000000000000000000000000000000000000000000000000000000044095ea7b30000000000000000000000001a1ec25dc08e98e5e93f1104b5e5cdd298707d310000000000000000000000000000000000000000000000000298348bed9600b7000000000000000000000000000000000000000000000000000000000000000000000000000000001a1ec25dc08e98e5e93f1104b5e5cdd298707d310000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000004455f5755290000000000000000000000000000000000000000000000000000000000000080000000000000000000000000f8a0bf9cf54bb92f17374d9e9a321e6a111a51bd0000000000000000000000000000000000000000000000000298348bed9600b700000000000000000000000000000000000000000000000000000000000000c00000000000000000000000000000000000000000000000000000000000000018756e69737761705065726d69743246656544796e616d696300000000000000000000000000000000000000000000000000000000000000000000000000000360000000000000000000000000f8a0bf9cf54bb92f17374d9e9a321e6a111a51bd00000000000000000000000055d398326f99059ff775485246999027b31979550000000000000000000000000000000000000000000000000298348bed9600b70000000000000000000000000000000000000000000000001ab337e661aca3b70000000000000000000000000000000000000000000000000000000000000120000000000000000000000000000000000000000000000000003d9144704ce95a000000000000000000000000b28da7bc87a9dd1e60849aa7fcb5da24ea913c420000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000022e3593564c000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000000a0000000000000000000000000000000000000000000000000000000006a06552b00000000000000000000000000000000000000000000000000000000000000010000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000000000200000000000000000000000000000000000000000000000000000000000000120000000000000000000000000c590175e458b83680867afd273527ff58f74c02b0000000000000000000000000000000000000000000000000298348bed9600b70000000000000000000000000000000000000000000000001af2505449d1b25a00000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000000000000000000000000000000010000000000000000000000000000000000000000000000000000000000000042f8a0bf9cf54bb92f17374d9e9a321e6a111a51bd0001f42170ed0880ac9a755fd29b2688956bd959f933f80001f455d398326f99059ff775485246999027b3197955000000000000000000000000000000000000000000000000000000000000756e69780000b2c5de0b000000000000000000000000000000000000300000000000000000000000000000000000000000000000000000000000000000000000000000001af3f329e8be154074d8769d1ffa4ee058b1dbc3000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000600000000000000000000000000000000000000000000000000000000000000044095ea7b30000000000000000000000001a1ec25dc08e98e5e93f1104b5e5cdd298707d31000000000000000000000000000000000000000000000000123fd18867a38000000000000000000000000000000000000000000000000000000000000000000000000000000000001a1ec25dc08e98e5e93f1104b5e5cdd298707d310000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000006e55f57552900000000000000000000000000000000000000000000000000000000000000800000000000000000000000001af3f329e8be154074d8769d1ffa4ee058b1dbc3000000000000000000000000000000000000000000000000123fd18867a3800000000000000000000000000000000000000000000000000000000000000000c00000000000000000000000000000000000000000000000000000000000000018756e69737761705065726d69743246656544796e616d6963000000000000000000000000000000000000000000000000000000000000000000000000000006000000000000000000000000001af3f329e8be154074d8769d1ffa4ee058b1dbc300000000000000000000000055d398326f99059ff775485246999027b31979550000000000000000000000000000000000000000000000001216f0a8cfb11c0000000000000000000000000000000000000000000000000011b9f7bfd9880dfc00000000000000000000000000000000000000000000000000000000000001200000000000000000000000000000000000000000000000000028e0df97f26400000000000000000000000000b28da7bc87a9dd1e60849aa7fcb5da24ea913c42000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000004ce3593564c000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000000a0000000000000000000000000000000000000000000000000000000006a06552b000000000000000000000000000000000000000000000000000000000000000110000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000002000000000000000000000000000000000000000000000000000000000000003c0000000000000000000000000000000000000000000000000000000000000004000000000000000000000000000000000000000000000000000000000000000800000000000000000000000000000000000000000000000000000000000000003070b0e000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000030000000000000000000000000000000000000000000000000000000000000060000000000000000000000000000000000000000000000000000000000000022000000000000000000000000000000000000000000000000000000000000002a000000000000000000000000000000000000000000000000000000000000001a000000000000000000000000000000000000000000000000000000000000000200000000000000000000000001af3f329e8be154074d8769d1ffa4ee058b1dbc300000000000000000000000000000000000000000000000000000000000000800000000000000000000000000000000000000000000000001216f0a8cfb11c0000000000000000000000000000000000000000000000000011bbc89f8e1e98490000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000002000000000000000000000000055d398326f99059ff775485246999027b319795500000000000000000000000000000000000000000000000000000000000000640000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000a0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000600000000000000000000000001af3f329e8be154074d8769d1ffa4ee058b1dbc300000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000006000000000000000000000000055d398326f99059ff775485246999027b3197955000000000000000000000000c590175e458b83680867afd273527ff58f74c02b0000000000000000000000000000000000000000000000000000000000000000756e69780000b2c5de0b0000000000000000000000000000000000005300000000000000000000000000000000000000000000000000000000000000000000000000000055d398326f99059ff775485246999027b3197955000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000600000000000000000000000000000000000000000000000000000000000000044a9059cbb000000000000000000000000e3478b0bb1a5084567c319096437924948be196400000000000000000000000000000000000000000000000000c66f495812cc8800000000000000000000000000000000000000000000000000000000c001a087596909125213928c859547effddd2831c43726a03884bbe0899947558bf500a015cc54210fa12dfe4af29409828a0b0ac21fbddfc33dff971961b3e900ef8c7d", - "s": "0x15cc54210fa12dfe4af29409828a0b0ac21fbddfc33dff971961b3e900ef8c7d", - "status": "failed", - "time": 1778798122435, - "txParams": { - "data": "0xe9ae5c53010100000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000400000000000000000000000000000000000000000000000000000000000000fe00000000000000000000000000000000000000000000000000000000000000020000000000000000000000000000000000000000000000000000000000000000500000000000000000000000000000000000000000000000000000000000000a00000000000000000000000000000000000000000000000000000000000000180000000000000000000000000000000000000000000000000000000000000066000000000000000000000000000000000000000000000000000000000000007400000000000000000000000000000000000000000000000000000000000000ec0000000000000000000000000f8a0bf9cf54bb92f17374d9e9a321e6a111a51bd000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000600000000000000000000000000000000000000000000000000000000000000044095ea7b30000000000000000000000001a1ec25dc08e98e5e93f1104b5e5cdd298707d310000000000000000000000000000000000000000000000000298348bed9600b7000000000000000000000000000000000000000000000000000000000000000000000000000000001a1ec25dc08e98e5e93f1104b5e5cdd298707d310000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000004455f5755290000000000000000000000000000000000000000000000000000000000000080000000000000000000000000f8a0bf9cf54bb92f17374d9e9a321e6a111a51bd0000000000000000000000000000000000000000000000000298348bed9600b700000000000000000000000000000000000000000000000000000000000000c00000000000000000000000000000000000000000000000000000000000000018756e69737761705065726d69743246656544796e616d696300000000000000000000000000000000000000000000000000000000000000000000000000000360000000000000000000000000f8a0bf9cf54bb92f17374d9e9a321e6a111a51bd00000000000000000000000055d398326f99059ff775485246999027b31979550000000000000000000000000000000000000000000000000298348bed9600b70000000000000000000000000000000000000000000000001ab337e661aca3b70000000000000000000000000000000000000000000000000000000000000120000000000000000000000000000000000000000000000000003d9144704ce95a000000000000000000000000b28da7bc87a9dd1e60849aa7fcb5da24ea913c420000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000022e3593564c000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000000a0000000000000000000000000000000000000000000000000000000006a06552b00000000000000000000000000000000000000000000000000000000000000010000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000000000200000000000000000000000000000000000000000000000000000000000000120000000000000000000000000c590175e458b83680867afd273527ff58f74c02b0000000000000000000000000000000000000000000000000298348bed9600b70000000000000000000000000000000000000000000000001af2505449d1b25a00000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000000000000000000000000000000010000000000000000000000000000000000000000000000000000000000000042f8a0bf9cf54bb92f17374d9e9a321e6a111a51bd0001f42170ed0880ac9a755fd29b2688956bd959f933f80001f455d398326f99059ff775485246999027b3197955000000000000000000000000000000000000000000000000000000000000756e69780000b2c5de0b000000000000000000000000000000000000300000000000000000000000000000000000000000000000000000000000000000000000000000001af3f329e8be154074d8769d1ffa4ee058b1dbc3000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000600000000000000000000000000000000000000000000000000000000000000044095ea7b30000000000000000000000001a1ec25dc08e98e5e93f1104b5e5cdd298707d31000000000000000000000000000000000000000000000000123fd18867a38000000000000000000000000000000000000000000000000000000000000000000000000000000000001a1ec25dc08e98e5e93f1104b5e5cdd298707d310000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000006e55f57552900000000000000000000000000000000000000000000000000000000000000800000000000000000000000001af3f329e8be154074d8769d1ffa4ee058b1dbc3000000000000000000000000000000000000000000000000123fd18867a3800000000000000000000000000000000000000000000000000000000000000000c00000000000000000000000000000000000000000000000000000000000000018756e69737761705065726d69743246656544796e616d6963000000000000000000000000000000000000000000000000000000000000000000000000000006000000000000000000000000001af3f329e8be154074d8769d1ffa4ee058b1dbc300000000000000000000000055d398326f99059ff775485246999027b31979550000000000000000000000000000000000000000000000001216f0a8cfb11c0000000000000000000000000000000000000000000000000011b9f7bfd9880dfc00000000000000000000000000000000000000000000000000000000000001200000000000000000000000000000000000000000000000000028e0df97f26400000000000000000000000000b28da7bc87a9dd1e60849aa7fcb5da24ea913c42000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000004ce3593564c000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000000a0000000000000000000000000000000000000000000000000000000006a06552b000000000000000000000000000000000000000000000000000000000000000110000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000002000000000000000000000000000000000000000000000000000000000000003c0000000000000000000000000000000000000000000000000000000000000004000000000000000000000000000000000000000000000000000000000000000800000000000000000000000000000000000000000000000000000000000000003070b0e000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000030000000000000000000000000000000000000000000000000000000000000060000000000000000000000000000000000000000000000000000000000000022000000000000000000000000000000000000000000000000000000000000002a000000000000000000000000000000000000000000000000000000000000001a000000000000000000000000000000000000000000000000000000000000000200000000000000000000000001af3f329e8be154074d8769d1ffa4ee058b1dbc300000000000000000000000000000000000000000000000000000000000000800000000000000000000000000000000000000000000000001216f0a8cfb11c0000000000000000000000000000000000000000000000000011bbc89f8e1e98490000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000002000000000000000000000000055d398326f99059ff775485246999027b319795500000000000000000000000000000000000000000000000000000000000000640000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000a0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000600000000000000000000000001af3f329e8be154074d8769d1ffa4ee058b1dbc300000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000006000000000000000000000000055d398326f99059ff775485246999027b3197955000000000000000000000000c590175e458b83680867afd273527ff58f74c02b0000000000000000000000000000000000000000000000000000000000000000756e69780000b2c5de0b0000000000000000000000000000000000005300000000000000000000000000000000000000000000000000000000000000000000000000000055d398326f99059ff775485246999027b3197955000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000600000000000000000000000000000000000000000000000000000000000000044a9059cbb000000000000000000000000e3478b0bb1a5084567c319096437924948be196400000000000000000000000000000000000000000000000000c66f495812cc8800000000000000000000000000000000000000000000000000000000", - "from": "0x141d32a89a1e0a5ef360034a2f60a4b917c18838", - "gas": "0x91644", - "gasLimit": "0x91644", - "maxFeePerGas": "0x3938700", - "maxPriorityFeePerGas": "0x3938700", - "nonce": "0x52", - "to": "0x141d32a89a1e0a5ef360034a2f60a4b917c18838", - "type": "0x2", - "value": "0x0" - }, - "type": "batch", - "userEditedGasLimit": false, - "userFeeLevel": "medium", - "v": "0x1", - "verifiedOnBlockchain": false - }, - { - "batchId": "0x19e28a92365", - "chainId": "0x38", - "defaultGasEstimates": { - "estimateType": "medium", - "gas": "0x92600", - "maxFeePerGas": "0x3938700", - "maxPriorityFeePerGas": "0x3938700" - }, - "delegationAddress": "0x63c0c19a282a1b52b07dd5a65b58948a07dae32b", - "error": { - "message": "RPC submit: gas required exceeds allowance (421519)", - "name": "Error", - "stack": "Error: RPC submit: gas required exceeds allowance (421519)\n at TransactionController._TransactionController_publishTransaction (chrome-extension://hebhblbkkdabgoldnojllkipeoacjioc/js-node_modules_metamask_s.js:60037:15)\n at async chrome-extension://hebhblbkkdabgoldnojllkipeoacjioc/js-node_modules_metamask_s.js:60723:47\n at async TransactionController._TransactionController_defaultPublishHook (chrome-extension://hebhblbkkdabgoldnojllkipeoacjioc/js-node_modules_metamask_s.js:60716:5)\n at async TransactionController._TransactionController_approveTransaction (chrome-extension://hebhblbkkdabgoldnojllkipeoacjioc/js-node_modules_metamask_s.js:59987:43)\n at async TransactionController._TransactionController_processApproval (chrome-extension://hebhblbkkdabgoldnojllkipeoacjioc/js-node_modules_metamask_s.js:59851:40)\n at async addTransactionBatchWith7702 (chrome-extension://hebhblbkkdabgoldnojllkipeoacjioc/js-node_modules_metamask_s.js:41175:29)\n at async addTransactionBatch (chrome-extension://hebhblbkkdabgoldnojllkipeoacjioc/js-node_modules_metamask_s.js:40973:20)\n at async TransactionController.addTransactionBatch (chrome-extension://hebhblbkkdabgoldnojllkipeoacjioc/js-node_modules_metamask_s.js:58615:16)\n at async addTransactionBatch (chrome-extension://hebhblbkkdabgoldnojllkipeoacjioc/js-node_modules_metamask_a.js:67560:25)\n at async submitBatchSellHandler (chrome-extension://hebhblbkkdabgoldnojllkipeoacjioc/js-node_modules_metamask_a.js:20660:33)" - }, - "gasFeeEstimates": { - "high": { - "maxFeePerGas": "0x2faf080", - "maxPriorityFeePerGas": "0x2faf080" - }, - "low": { - "maxFeePerGas": "0x2faf080", - "maxPriorityFeePerGas": "0x2faf080" - }, - "medium": { - "maxFeePerGas": "0x2faf080", - "maxPriorityFeePerGas": "0x2faf080" - }, - "type": "fee-market" - }, - "gasFeeEstimatesLoaded": true, - "gasLimitNoBuffer": "0x92600", - "id": "1db3a1a0-4fe6-11f1-8370-f7a3226f6a5c", - "isGasFeeIncluded": true, - "isGasFeeSponsored": false, - "isGasFeeTokenIgnoredIfBalance": false, - "nestedTransactions": [ - { - "data": "0x095ea7b30000000000000000000000001a1ec25dc08e98e5e93f1104b5e5cdd298707d310000000000000000000000000000000000000000000000000298348bed9600b7", - "from": "0x141d32a89a1e0a5ef360034a2f60a4b917c18838", - "gas": "0x110fa", - "maxFeePerGas": "0x3938700", - "maxPriorityFeePerGas": "0x3938700", - "to": "0xf8a0bf9cf54bb92f17374d9e9a321e6a111a51bd", - "type": "swapApproval", - "value": "0x0" - }, - { - "data": "0x5f5755290000000000000000000000000000000000000000000000000000000000000080000000000000000000000000f8a0bf9cf54bb92f17374d9e9a321e6a111a51bd0000000000000000000000000000000000000000000000000298348bed9600b700000000000000000000000000000000000000000000000000000000000000c00000000000000000000000000000000000000000000000000000000000000018756e69737761705065726d69743246656544796e616d696300000000000000000000000000000000000000000000000000000000000000000000000000000360000000000000000000000000f8a0bf9cf54bb92f17374d9e9a321e6a111a51bd00000000000000000000000055d398326f99059ff775485246999027b31979550000000000000000000000000000000000000000000000000298348bed9600b70000000000000000000000000000000000000000000000001ab3265f13d372100000000000000000000000000000000000000000000000000000000000000120000000000000000000000000000000000000000000000000003d911c05112b68000000000000000000000000b28da7bc87a9dd1e60849aa7fcb5da24ea913c420000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000022e3593564c000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000000a0000000000000000000000000000000000000000000000000000000006a06567a00000000000000000000000000000000000000000000000000000000000000010000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000000000200000000000000000000000000000000000000000000000000000000000000120000000000000000000000000c590175e458b83680867afd273527ff58f74c02b0000000000000000000000000000000000000000000000000298348bed9600b70000000000000000000000000000000000000000000000001af23ea38ff0c22800000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000000000000000000000000000000010000000000000000000000000000000000000000000000000000000000000042f8a0bf9cf54bb92f17374d9e9a321e6a111a51bd0001f42170ed0880ac9a755fd29b2688956bd959f933f80001f455d398326f99059ff775485246999027b3197955000000000000000000000000000000000000000000000000000000000000756e69780000b2c5de0b000000000000000000000000000000000000a2", - "from": "0x141d32a89a1e0a5ef360034a2f60a4b917c18838", - "gas": "0x793ca", - "maxFeePerGas": "0x3938700", - "maxPriorityFeePerGas": "0x3938700", - "to": "0x1a1ec25DC08e98e5E93F1104B5e5cdD298707d31", - "type": "swap", - "value": "0x0" - }, - { - "data": "0x095ea7b30000000000000000000000001a1ec25dc08e98e5e93f1104b5e5cdd298707d31000000000000000000000000000000000000000000000000123fd18867a38000", - "from": "0x141d32a89a1e0a5ef360034a2f60a4b917c18838", - "gas": "0x110fa", - "maxFeePerGas": "0x3938700", - "maxPriorityFeePerGas": "0x3938700", - "to": "0x1af3f329e8be154074d8769d1ffa4ee058b1dbc3", - "type": "swapApproval", - "value": "0x0" - }, - { - "data": "0x5f57552900000000000000000000000000000000000000000000000000000000000000800000000000000000000000001af3f329e8be154074d8769d1ffa4ee058b1dbc3000000000000000000000000000000000000000000000000123fd18867a3800000000000000000000000000000000000000000000000000000000000000000c0000000000000000000000000000000000000000000000000000000000000001b70616e63616b6553776170526f7574657246656544796e616d6963000000000000000000000000000000000000000000000000000000000000000000000002200000000000000000000000001af3f329e8be154074d8769d1ffa4ee058b1dbc300000000000000000000000055d398326f99059ff775485246999027b31979550000000000000000000000000000000000000000000000001216f0a8cfb11c0000000000000000000000000000000000000000000000000011b9126b47df5d7300000000000000000000000000000000000000000000000000000000000001200000000000000000000000000000000000000000000000000028e0df97f26400000000000000000000000000b28da7bc87a9dd1e60849aa7fcb5da24ea913c42000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000e404e45aaf0000000000000000000000001af3f329e8be154074d8769d1ffa4ee058b1dbc300000000000000000000000055d398326f99059ff775485246999027b31979550000000000000000000000000000000000000000000000000000000000000064000000000000000000000000c590175e458b83680867afd273527ff58f74c02b0000000000000000000000000000000000000000000000001216f0a8cfb11c0000000000000000000000000000000000000000000000000011bae3337e4c24f1000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000fd", - "from": "0x141d32a89a1e0a5ef360034a2f60a4b917c18838", - "gas": "0x5b923", - "maxFeePerGas": "0x3938700", - "maxPriorityFeePerGas": "0x3938700", - "to": "0x1a1ec25DC08e98e5E93F1104B5e5cdD298707d31", - "type": "swap", - "value": "0x0" - }, - { - "data": "0xa9059cbb000000000000000000000000e3478b0bb1a5084567c319096437924948be196400000000000000000000000000000000000000000000000000c07216d3c9a96f", - "from": "0x141d32a89a1e0a5ef360034a2f60a4b917c18838", - "gas": "0xcc57", - "maxFeePerGas": "0x3938700", - "maxPriorityFeePerGas": "0x3938700", - "to": "0x55d398326f99059ff775485246999027b3197955", - "type": "transfer", - "value": "0x0" - } - ], - "networkClientId": "9a1eafde-5f04-434b-b011-e9de5c50baf0", - "origin": "metamask", - "originalGasEstimate": "0x92600", - "r": "0xc657ceca0c70ad67c1d961a045d2d32729a2488f312bed3033854dc88e75d291", - "rawTx": "0x02f90cd13852840393870084039387008309260094141d32a89a1e0a5ef360034a2f60a4b917c1883880b90c64e9ae5c53010100000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000400000000000000000000000000000000000000000000000000000000000000c000000000000000000000000000000000000000000000000000000000000000020000000000000000000000000000000000000000000000000000000000000000500000000000000000000000000000000000000000000000000000000000000a00000000000000000000000000000000000000000000000000000000000000180000000000000000000000000000000000000000000000000000000000000066000000000000000000000000000000000000000000000000000000000000007400000000000000000000000000000000000000000000000000000000000000ae0000000000000000000000000f8a0bf9cf54bb92f17374d9e9a321e6a111a51bd000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000600000000000000000000000000000000000000000000000000000000000000044095ea7b30000000000000000000000001a1ec25dc08e98e5e93f1104b5e5cdd298707d310000000000000000000000000000000000000000000000000298348bed9600b7000000000000000000000000000000000000000000000000000000000000000000000000000000001a1ec25dc08e98e5e93f1104b5e5cdd298707d310000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000004455f5755290000000000000000000000000000000000000000000000000000000000000080000000000000000000000000f8a0bf9cf54bb92f17374d9e9a321e6a111a51bd0000000000000000000000000000000000000000000000000298348bed9600b700000000000000000000000000000000000000000000000000000000000000c00000000000000000000000000000000000000000000000000000000000000018756e69737761705065726d69743246656544796e616d696300000000000000000000000000000000000000000000000000000000000000000000000000000360000000000000000000000000f8a0bf9cf54bb92f17374d9e9a321e6a111a51bd00000000000000000000000055d398326f99059ff775485246999027b31979550000000000000000000000000000000000000000000000000298348bed9600b70000000000000000000000000000000000000000000000001ab3265f13d372100000000000000000000000000000000000000000000000000000000000000120000000000000000000000000000000000000000000000000003d911c05112b68000000000000000000000000b28da7bc87a9dd1e60849aa7fcb5da24ea913c420000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000022e3593564c000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000000a0000000000000000000000000000000000000000000000000000000006a06567a00000000000000000000000000000000000000000000000000000000000000010000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000000000200000000000000000000000000000000000000000000000000000000000000120000000000000000000000000c590175e458b83680867afd273527ff58f74c02b0000000000000000000000000000000000000000000000000298348bed9600b70000000000000000000000000000000000000000000000001af23ea38ff0c22800000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000000000000000000000000000000010000000000000000000000000000000000000000000000000000000000000042f8a0bf9cf54bb92f17374d9e9a321e6a111a51bd0001f42170ed0880ac9a755fd29b2688956bd959f933f80001f455d398326f99059ff775485246999027b3197955000000000000000000000000000000000000000000000000000000000000756e69780000b2c5de0b000000000000000000000000000000000000a20000000000000000000000000000000000000000000000000000000000000000000000000000001af3f329e8be154074d8769d1ffa4ee058b1dbc3000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000600000000000000000000000000000000000000000000000000000000000000044095ea7b30000000000000000000000001a1ec25dc08e98e5e93f1104b5e5cdd298707d31000000000000000000000000000000000000000000000000123fd18867a38000000000000000000000000000000000000000000000000000000000000000000000000000000000001a1ec25dc08e98e5e93f1104b5e5cdd298707d310000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000003055f57552900000000000000000000000000000000000000000000000000000000000000800000000000000000000000001af3f329e8be154074d8769d1ffa4ee058b1dbc3000000000000000000000000000000000000000000000000123fd18867a3800000000000000000000000000000000000000000000000000000000000000000c0000000000000000000000000000000000000000000000000000000000000001b70616e63616b6553776170526f7574657246656544796e616d6963000000000000000000000000000000000000000000000000000000000000000000000002200000000000000000000000001af3f329e8be154074d8769d1ffa4ee058b1dbc300000000000000000000000055d398326f99059ff775485246999027b31979550000000000000000000000000000000000000000000000001216f0a8cfb11c0000000000000000000000000000000000000000000000000011b9126b47df5d7300000000000000000000000000000000000000000000000000000000000001200000000000000000000000000000000000000000000000000028e0df97f26400000000000000000000000000b28da7bc87a9dd1e60849aa7fcb5da24ea913c42000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000e404e45aaf0000000000000000000000001af3f329e8be154074d8769d1ffa4ee058b1dbc300000000000000000000000055d398326f99059ff775485246999027b31979550000000000000000000000000000000000000000000000000000000000000064000000000000000000000000c590175e458b83680867afd273527ff58f74c02b0000000000000000000000000000000000000000000000001216f0a8cfb11c0000000000000000000000000000000000000000000000000011bae3337e4c24f1000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000fd00000000000000000000000000000000000000000000000000000000000000000000000000000055d398326f99059ff775485246999027b3197955000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000600000000000000000000000000000000000000000000000000000000000000044a9059cbb000000000000000000000000e3478b0bb1a5084567c319096437924948be196400000000000000000000000000000000000000000000000000c07216d3c9a96f00000000000000000000000000000000000000000000000000000000c080a0c657ceca0c70ad67c1d961a045d2d32729a2488f312bed3033854dc88e75d291a0345abced04b0b3c8e9916cd5d370b88ab02f3816045908e39ce7eb2766bc1294", - "s": "0x345abced04b0b3c8e9916cd5d370b88ab02f3816045908e39ce7eb2766bc1294", - "status": "failed", - "time": 1778798518458, - "txParams": { - "data": "0xe9ae5c53010100000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000400000000000000000000000000000000000000000000000000000000000000c000000000000000000000000000000000000000000000000000000000000000020000000000000000000000000000000000000000000000000000000000000000500000000000000000000000000000000000000000000000000000000000000a00000000000000000000000000000000000000000000000000000000000000180000000000000000000000000000000000000000000000000000000000000066000000000000000000000000000000000000000000000000000000000000007400000000000000000000000000000000000000000000000000000000000000ae0000000000000000000000000f8a0bf9cf54bb92f17374d9e9a321e6a111a51bd000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000600000000000000000000000000000000000000000000000000000000000000044095ea7b30000000000000000000000001a1ec25dc08e98e5e93f1104b5e5cdd298707d310000000000000000000000000000000000000000000000000298348bed9600b7000000000000000000000000000000000000000000000000000000000000000000000000000000001a1ec25dc08e98e5e93f1104b5e5cdd298707d310000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000004455f5755290000000000000000000000000000000000000000000000000000000000000080000000000000000000000000f8a0bf9cf54bb92f17374d9e9a321e6a111a51bd0000000000000000000000000000000000000000000000000298348bed9600b700000000000000000000000000000000000000000000000000000000000000c00000000000000000000000000000000000000000000000000000000000000018756e69737761705065726d69743246656544796e616d696300000000000000000000000000000000000000000000000000000000000000000000000000000360000000000000000000000000f8a0bf9cf54bb92f17374d9e9a321e6a111a51bd00000000000000000000000055d398326f99059ff775485246999027b31979550000000000000000000000000000000000000000000000000298348bed9600b70000000000000000000000000000000000000000000000001ab3265f13d372100000000000000000000000000000000000000000000000000000000000000120000000000000000000000000000000000000000000000000003d911c05112b68000000000000000000000000b28da7bc87a9dd1e60849aa7fcb5da24ea913c420000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000022e3593564c000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000000a0000000000000000000000000000000000000000000000000000000006a06567a00000000000000000000000000000000000000000000000000000000000000010000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000000000200000000000000000000000000000000000000000000000000000000000000120000000000000000000000000c590175e458b83680867afd273527ff58f74c02b0000000000000000000000000000000000000000000000000298348bed9600b70000000000000000000000000000000000000000000000001af23ea38ff0c22800000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000000000000000000000000000000010000000000000000000000000000000000000000000000000000000000000042f8a0bf9cf54bb92f17374d9e9a321e6a111a51bd0001f42170ed0880ac9a755fd29b2688956bd959f933f80001f455d398326f99059ff775485246999027b3197955000000000000000000000000000000000000000000000000000000000000756e69780000b2c5de0b000000000000000000000000000000000000a20000000000000000000000000000000000000000000000000000000000000000000000000000001af3f329e8be154074d8769d1ffa4ee058b1dbc3000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000600000000000000000000000000000000000000000000000000000000000000044095ea7b30000000000000000000000001a1ec25dc08e98e5e93f1104b5e5cdd298707d31000000000000000000000000000000000000000000000000123fd18867a38000000000000000000000000000000000000000000000000000000000000000000000000000000000001a1ec25dc08e98e5e93f1104b5e5cdd298707d310000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000003055f57552900000000000000000000000000000000000000000000000000000000000000800000000000000000000000001af3f329e8be154074d8769d1ffa4ee058b1dbc3000000000000000000000000000000000000000000000000123fd18867a3800000000000000000000000000000000000000000000000000000000000000000c0000000000000000000000000000000000000000000000000000000000000001b70616e63616b6553776170526f7574657246656544796e616d6963000000000000000000000000000000000000000000000000000000000000000000000002200000000000000000000000001af3f329e8be154074d8769d1ffa4ee058b1dbc300000000000000000000000055d398326f99059ff775485246999027b31979550000000000000000000000000000000000000000000000001216f0a8cfb11c0000000000000000000000000000000000000000000000000011b9126b47df5d7300000000000000000000000000000000000000000000000000000000000001200000000000000000000000000000000000000000000000000028e0df97f26400000000000000000000000000b28da7bc87a9dd1e60849aa7fcb5da24ea913c42000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000e404e45aaf0000000000000000000000001af3f329e8be154074d8769d1ffa4ee058b1dbc300000000000000000000000055d398326f99059ff775485246999027b31979550000000000000000000000000000000000000000000000000000000000000064000000000000000000000000c590175e458b83680867afd273527ff58f74c02b0000000000000000000000000000000000000000000000001216f0a8cfb11c0000000000000000000000000000000000000000000000000011bae3337e4c24f1000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000fd00000000000000000000000000000000000000000000000000000000000000000000000000000055d398326f99059ff775485246999027b3197955000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000600000000000000000000000000000000000000000000000000000000000000044a9059cbb000000000000000000000000e3478b0bb1a5084567c319096437924948be196400000000000000000000000000000000000000000000000000c07216d3c9a96f00000000000000000000000000000000000000000000000000000000", - "from": "0x141d32a89a1e0a5ef360034a2f60a4b917c18838", - "gas": "0x92600", - "gasLimit": "0x92600", - "maxFeePerGas": "0x3938700", - "maxPriorityFeePerGas": "0x3938700", - "nonce": "0x52", - "to": "0x141d32a89a1e0a5ef360034a2f60a4b917c18838", - "type": "0x2", - "value": "0x0" - }, - "type": "batch", - "userEditedGasLimit": false, - "userFeeLevel": "medium", - "v": "0x0", - "verifiedOnBlockchain": false - }, - { - "batchId": "0x19e28baaa6d", - "chainId": "0x38", - "delegationAddress": "0x63c0c19a282a1b52b07dd5a65b58948a07dae32b", - "error": { - "message": "RPC submit: gas=0 intrinsicGas=47316: invalid gas", - "name": "Error", - "stack": "Error: RPC submit: gas=0 intrinsicGas=47316: invalid gas\n at TransactionController._TransactionController_publishTransaction (chrome-extension://hebhblbkkdabgoldnojllkipeoacjioc/js-node_modules_metamask_s.js:60041:15)\n at async chrome-extension://hebhblbkkdabgoldnojllkipeoacjioc/js-node_modules_metamask_s.js:60727:47\n at async TransactionController._TransactionController_defaultPublishHook (chrome-extension://hebhblbkkdabgoldnojllkipeoacjioc/js-node_modules_metamask_s.js:60720:5)\n at async TransactionController._TransactionController_approveTransaction (chrome-extension://hebhblbkkdabgoldnojllkipeoacjioc/js-node_modules_metamask_s.js:59991:43)\n at async TransactionController._TransactionController_processApproval (chrome-extension://hebhblbkkdabgoldnojllkipeoacjioc/js-node_modules_metamask_s.js:59854:40)\n at async addTransactionBatchWith7702 (chrome-extension://hebhblbkkdabgoldnojllkipeoacjioc/js-node_modules_metamask_s.js:41175:29)\n at async addTransactionBatch (chrome-extension://hebhblbkkdabgoldnojllkipeoacjioc/js-node_modules_metamask_s.js:40973:20)\n at async TransactionController.addTransactionBatch (chrome-extension://hebhblbkkdabgoldnojllkipeoacjioc/js-node_modules_metamask_s.js:58615:16)\n at async addTransactionBatch (chrome-extension://hebhblbkkdabgoldnojllkipeoacjioc/js-node_modules_metamask_a.js:67563:25)\n at async submitBatchSellHandler (chrome-extension://hebhblbkkdabgoldnojllkipeoacjioc/js-node_modules_metamask_a.js:20661:33)" - }, - "gasFeeEstimates": { - "high": { - "maxFeePerGas": "0x3099680", - "maxPriorityFeePerGas": "0x3099680" - }, - "low": { - "maxFeePerGas": "0x2faf080", - "maxPriorityFeePerGas": "0x2faf080" - }, - "medium": { - "maxFeePerGas": "0x2faf080", - "maxPriorityFeePerGas": "0x2faf080" - }, - "type": "fee-market" - }, - "gasFeeEstimatesLoaded": true, - "id": "9072b6c0-4fe8-11f1-b512-3d7e68ba040f", - "isGasFeeIncluded": true, - "isGasFeeSponsored": false, - "isGasFeeTokenIgnoredIfBalance": false, - "nestedTransactions": [ - { - "data": "0x095ea7b30000000000000000000000001a1ec25dc08e98e5e93f1104b5e5cdd298707d310000000000000000000000000000000000000000000000000298348bed9600b7", - "from": "0x141d32a89a1e0a5ef360034a2f60a4b917c18838", - "gas": "0x110fa", - "maxFeePerGas": "0x3938700", - "maxPriorityFeePerGas": "0x3938700", - "to": "0xf8a0bf9cf54bb92f17374d9e9a321e6a111a51bd", - "type": "swapApproval", - "value": "0x0" - }, - { - "data": "0x5f5755290000000000000000000000000000000000000000000000000000000000000080000000000000000000000000f8a0bf9cf54bb92f17374d9e9a321e6a111a51bd0000000000000000000000000000000000000000000000000298348bed9600b700000000000000000000000000000000000000000000000000000000000000c00000000000000000000000000000000000000000000000000000000000000018756e69737761705065726d69743246656544796e616d696300000000000000000000000000000000000000000000000000000000000000000000000000000360000000000000000000000000f8a0bf9cf54bb92f17374d9e9a321e6a111a51bd00000000000000000000000055d398326f99059ff775485246999027b31979550000000000000000000000000000000000000000000000000298348bed9600b70000000000000000000000000000000000000000000000001aafef9d42701d280000000000000000000000000000000000000000000000000000000000000120000000000000000000000000000000000000000000000000003d89b2d4ecc39e000000000000000000000000b28da7bc87a9dd1e60849aa7fcb5da24ea913c420000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000022e3593564c000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000000a0000000000000000000000000000000000000000000000000000000006a065aca00000000000000000000000000000000000000000000000000000000000000010000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000000000200000000000000000000000000000000000000000000000000000000000000120000000000000000000000000c590175e458b83680867afd273527ff58f74c02b0000000000000000000000000000000000000000000000000298348bed9600b70000000000000000000000000000000000000000000000001aef004978d5f9bd00000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000000000000000000000000000000010000000000000000000000000000000000000000000000000000000000000042f8a0bf9cf54bb92f17374d9e9a321e6a111a51bd0001f42170ed0880ac9a755fd29b2688956bd959f933f80001f455d398326f99059ff775485246999027b3197955000000000000000000000000000000000000000000000000000000000000756e69780000b2c5de0b00000000000000000000000000000000000018", - "from": "0x141d32a89a1e0a5ef360034a2f60a4b917c18838", - "gas": "0x793fb", - "maxFeePerGas": "0x3938700", - "maxPriorityFeePerGas": "0x3938700", - "to": "0x1a1ec25DC08e98e5E93F1104B5e5cdD298707d31", - "type": "swap", - "value": "0x0" - }, - { - "data": "0x095ea7b30000000000000000000000001a1ec25dc08e98e5e93f1104b5e5cdd298707d31000000000000000000000000000000000000000000000000123fd18867a38000", - "from": "0x141d32a89a1e0a5ef360034a2f60a4b917c18838", - "gas": "0x110fa", - "maxFeePerGas": "0x3938700", - "maxPriorityFeePerGas": "0x3938700", - "to": "0x1af3f329e8be154074d8769d1ffa4ee058b1dbc3", - "type": "swapApproval", - "value": "0x0" - }, - { - "data": "0x5f57552900000000000000000000000000000000000000000000000000000000000000800000000000000000000000001af3f329e8be154074d8769d1ffa4ee058b1dbc3000000000000000000000000000000000000000000000000123fd18867a3800000000000000000000000000000000000000000000000000000000000000000c00000000000000000000000000000000000000000000000000000000000000018756e69737761705065726d69743246656544796e616d6963000000000000000000000000000000000000000000000000000000000000000000000000000006000000000000000000000000001af3f329e8be154074d8769d1ffa4ee058b1dbc300000000000000000000000055d398326f99059ff775485246999027b31979550000000000000000000000000000000000000000000000001216f0a8cfb11c0000000000000000000000000000000000000000000000000011b9f5efe1ba2b5700000000000000000000000000000000000000000000000000000000000001200000000000000000000000000000000000000000000000000028e0df97f26400000000000000000000000000b28da7bc87a9dd1e60849aa7fcb5da24ea913c42000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000004ce3593564c000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000000a0000000000000000000000000000000000000000000000000000000006a065aca000000000000000000000000000000000000000000000000000000000000000110000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000002000000000000000000000000000000000000000000000000000000000000003c0000000000000000000000000000000000000000000000000000000000000004000000000000000000000000000000000000000000000000000000000000000800000000000000000000000000000000000000000000000000000000000000003070b0e000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000030000000000000000000000000000000000000000000000000000000000000060000000000000000000000000000000000000000000000000000000000000022000000000000000000000000000000000000000000000000000000000000002a000000000000000000000000000000000000000000000000000000000000001a000000000000000000000000000000000000000000000000000000000000000200000000000000000000000001af3f329e8be154074d8769d1ffa4ee058b1dbc300000000000000000000000000000000000000000000000000000000000000800000000000000000000000000000000000000000000000001216f0a8cfb11c0000000000000000000000000000000000000000000000000011bbc6cf66c9333f0000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000002000000000000000000000000055d398326f99059ff775485246999027b319795500000000000000000000000000000000000000000000000000000000000000640000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000a0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000600000000000000000000000001af3f329e8be154074d8769d1ffa4ee058b1dbc300000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000006000000000000000000000000055d398326f99059ff775485246999027b3197955000000000000000000000000c590175e458b83680867afd273527ff58f74c02b0000000000000000000000000000000000000000000000000000000000000000756e69780000b2c5de0b00000000000000000000000000000000000027", - "from": "0x141d32a89a1e0a5ef360034a2f60a4b917c18838", - "gas": "0x5d0e7", - "maxFeePerGas": "0x3938700", - "maxPriorityFeePerGas": "0x3938700", - "to": "0x1a1ec25DC08e98e5E93F1104B5e5cdD298707d31", - "type": "swap", - "value": "0x0" - }, - { - "data": "0xa9059cbb000000000000000000000000e3478b0bb1a5084567c319096437924948be196400000000000000000000000000000000000000000000000000c66b933356b974", - "from": "0x141d32a89a1e0a5ef360034a2f60a4b917c18838", - "gas": "0xcc57", - "maxFeePerGas": "0x3938700", - "maxPriorityFeePerGas": "0x3938700", - "to": "0x55d398326f99059ff775485246999027b3197955", - "type": "transfer", - "value": "0x0" - } - ], - "networkClientId": "9a1eafde-5f04-434b-b011-e9de5c50baf0", - "origin": "metamask", - "r": "0x51f4d753bffc4b5c529b3f5ec56cda2cb1f918c2369ac0f424e1961f47843b3b", - "rawTx": "0x02f910ae3852840393870084039387008094141d32a89a1e0a5ef360034a2f60a4b917c1883880b91044e9ae5c53010100000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000400000000000000000000000000000000000000000000000000000000000000fe00000000000000000000000000000000000000000000000000000000000000020000000000000000000000000000000000000000000000000000000000000000500000000000000000000000000000000000000000000000000000000000000a00000000000000000000000000000000000000000000000000000000000000180000000000000000000000000000000000000000000000000000000000000066000000000000000000000000000000000000000000000000000000000000007400000000000000000000000000000000000000000000000000000000000000ec0000000000000000000000000f8a0bf9cf54bb92f17374d9e9a321e6a111a51bd000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000600000000000000000000000000000000000000000000000000000000000000044095ea7b30000000000000000000000001a1ec25dc08e98e5e93f1104b5e5cdd298707d310000000000000000000000000000000000000000000000000298348bed9600b7000000000000000000000000000000000000000000000000000000000000000000000000000000001a1ec25dc08e98e5e93f1104b5e5cdd298707d310000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000004455f5755290000000000000000000000000000000000000000000000000000000000000080000000000000000000000000f8a0bf9cf54bb92f17374d9e9a321e6a111a51bd0000000000000000000000000000000000000000000000000298348bed9600b700000000000000000000000000000000000000000000000000000000000000c00000000000000000000000000000000000000000000000000000000000000018756e69737761705065726d69743246656544796e616d696300000000000000000000000000000000000000000000000000000000000000000000000000000360000000000000000000000000f8a0bf9cf54bb92f17374d9e9a321e6a111a51bd00000000000000000000000055d398326f99059ff775485246999027b31979550000000000000000000000000000000000000000000000000298348bed9600b70000000000000000000000000000000000000000000000001aafef9d42701d280000000000000000000000000000000000000000000000000000000000000120000000000000000000000000000000000000000000000000003d89b2d4ecc39e000000000000000000000000b28da7bc87a9dd1e60849aa7fcb5da24ea913c420000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000022e3593564c000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000000a0000000000000000000000000000000000000000000000000000000006a065aca00000000000000000000000000000000000000000000000000000000000000010000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000000000200000000000000000000000000000000000000000000000000000000000000120000000000000000000000000c590175e458b83680867afd273527ff58f74c02b0000000000000000000000000000000000000000000000000298348bed9600b70000000000000000000000000000000000000000000000001aef004978d5f9bd00000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000000000000000000000000000000010000000000000000000000000000000000000000000000000000000000000042f8a0bf9cf54bb92f17374d9e9a321e6a111a51bd0001f42170ed0880ac9a755fd29b2688956bd959f933f80001f455d398326f99059ff775485246999027b3197955000000000000000000000000000000000000000000000000000000000000756e69780000b2c5de0b000000000000000000000000000000000000180000000000000000000000000000000000000000000000000000000000000000000000000000001af3f329e8be154074d8769d1ffa4ee058b1dbc3000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000600000000000000000000000000000000000000000000000000000000000000044095ea7b30000000000000000000000001a1ec25dc08e98e5e93f1104b5e5cdd298707d31000000000000000000000000000000000000000000000000123fd18867a38000000000000000000000000000000000000000000000000000000000000000000000000000000000001a1ec25dc08e98e5e93f1104b5e5cdd298707d310000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000006e55f57552900000000000000000000000000000000000000000000000000000000000000800000000000000000000000001af3f329e8be154074d8769d1ffa4ee058b1dbc3000000000000000000000000000000000000000000000000123fd18867a3800000000000000000000000000000000000000000000000000000000000000000c00000000000000000000000000000000000000000000000000000000000000018756e69737761705065726d69743246656544796e616d6963000000000000000000000000000000000000000000000000000000000000000000000000000006000000000000000000000000001af3f329e8be154074d8769d1ffa4ee058b1dbc300000000000000000000000055d398326f99059ff775485246999027b31979550000000000000000000000000000000000000000000000001216f0a8cfb11c0000000000000000000000000000000000000000000000000011b9f5efe1ba2b5700000000000000000000000000000000000000000000000000000000000001200000000000000000000000000000000000000000000000000028e0df97f26400000000000000000000000000b28da7bc87a9dd1e60849aa7fcb5da24ea913c42000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000004ce3593564c000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000000a0000000000000000000000000000000000000000000000000000000006a065aca000000000000000000000000000000000000000000000000000000000000000110000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000002000000000000000000000000000000000000000000000000000000000000003c0000000000000000000000000000000000000000000000000000000000000004000000000000000000000000000000000000000000000000000000000000000800000000000000000000000000000000000000000000000000000000000000003070b0e000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000030000000000000000000000000000000000000000000000000000000000000060000000000000000000000000000000000000000000000000000000000000022000000000000000000000000000000000000000000000000000000000000002a000000000000000000000000000000000000000000000000000000000000001a000000000000000000000000000000000000000000000000000000000000000200000000000000000000000001af3f329e8be154074d8769d1ffa4ee058b1dbc300000000000000000000000000000000000000000000000000000000000000800000000000000000000000000000000000000000000000001216f0a8cfb11c0000000000000000000000000000000000000000000000000011bbc6cf66c9333f0000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000002000000000000000000000000055d398326f99059ff775485246999027b319795500000000000000000000000000000000000000000000000000000000000000640000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000a0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000600000000000000000000000001af3f329e8be154074d8769d1ffa4ee058b1dbc300000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000006000000000000000000000000055d398326f99059ff775485246999027b3197955000000000000000000000000c590175e458b83680867afd273527ff58f74c02b0000000000000000000000000000000000000000000000000000000000000000756e69780000b2c5de0b0000000000000000000000000000000000002700000000000000000000000000000000000000000000000000000000000000000000000000000055d398326f99059ff775485246999027b3197955000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000600000000000000000000000000000000000000000000000000000000000000044a9059cbb000000000000000000000000e3478b0bb1a5084567c319096437924948be196400000000000000000000000000000000000000000000000000c66b933356b97400000000000000000000000000000000000000000000000000000000c001a051f4d753bffc4b5c529b3f5ec56cda2cb1f918c2369ac0f424e1961f47843b3ba0731ea4074073f695ce587551a1648e1c38cbd6f88f30ed5c1882348f1720a1b9", - "s": "0x731ea4074073f695ce587551a1648e1c38cbd6f88f30ed5c1882348f1720a1b9", - "status": "failed", - "time": 1778799569964, - "txParams": { - "data": "0xe9ae5c53010100000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000400000000000000000000000000000000000000000000000000000000000000fe00000000000000000000000000000000000000000000000000000000000000020000000000000000000000000000000000000000000000000000000000000000500000000000000000000000000000000000000000000000000000000000000a00000000000000000000000000000000000000000000000000000000000000180000000000000000000000000000000000000000000000000000000000000066000000000000000000000000000000000000000000000000000000000000007400000000000000000000000000000000000000000000000000000000000000ec0000000000000000000000000f8a0bf9cf54bb92f17374d9e9a321e6a111a51bd000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000600000000000000000000000000000000000000000000000000000000000000044095ea7b30000000000000000000000001a1ec25dc08e98e5e93f1104b5e5cdd298707d310000000000000000000000000000000000000000000000000298348bed9600b7000000000000000000000000000000000000000000000000000000000000000000000000000000001a1ec25dc08e98e5e93f1104b5e5cdd298707d310000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000004455f5755290000000000000000000000000000000000000000000000000000000000000080000000000000000000000000f8a0bf9cf54bb92f17374d9e9a321e6a111a51bd0000000000000000000000000000000000000000000000000298348bed9600b700000000000000000000000000000000000000000000000000000000000000c00000000000000000000000000000000000000000000000000000000000000018756e69737761705065726d69743246656544796e616d696300000000000000000000000000000000000000000000000000000000000000000000000000000360000000000000000000000000f8a0bf9cf54bb92f17374d9e9a321e6a111a51bd00000000000000000000000055d398326f99059ff775485246999027b31979550000000000000000000000000000000000000000000000000298348bed9600b70000000000000000000000000000000000000000000000001aafef9d42701d280000000000000000000000000000000000000000000000000000000000000120000000000000000000000000000000000000000000000000003d89b2d4ecc39e000000000000000000000000b28da7bc87a9dd1e60849aa7fcb5da24ea913c420000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000022e3593564c000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000000a0000000000000000000000000000000000000000000000000000000006a065aca00000000000000000000000000000000000000000000000000000000000000010000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000000000200000000000000000000000000000000000000000000000000000000000000120000000000000000000000000c590175e458b83680867afd273527ff58f74c02b0000000000000000000000000000000000000000000000000298348bed9600b70000000000000000000000000000000000000000000000001aef004978d5f9bd00000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000000000000000000000000000000010000000000000000000000000000000000000000000000000000000000000042f8a0bf9cf54bb92f17374d9e9a321e6a111a51bd0001f42170ed0880ac9a755fd29b2688956bd959f933f80001f455d398326f99059ff775485246999027b3197955000000000000000000000000000000000000000000000000000000000000756e69780000b2c5de0b000000000000000000000000000000000000180000000000000000000000000000000000000000000000000000000000000000000000000000001af3f329e8be154074d8769d1ffa4ee058b1dbc3000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000600000000000000000000000000000000000000000000000000000000000000044095ea7b30000000000000000000000001a1ec25dc08e98e5e93f1104b5e5cdd298707d31000000000000000000000000000000000000000000000000123fd18867a38000000000000000000000000000000000000000000000000000000000000000000000000000000000001a1ec25dc08e98e5e93f1104b5e5cdd298707d310000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000006e55f57552900000000000000000000000000000000000000000000000000000000000000800000000000000000000000001af3f329e8be154074d8769d1ffa4ee058b1dbc3000000000000000000000000000000000000000000000000123fd18867a3800000000000000000000000000000000000000000000000000000000000000000c00000000000000000000000000000000000000000000000000000000000000018756e69737761705065726d69743246656544796e616d6963000000000000000000000000000000000000000000000000000000000000000000000000000006000000000000000000000000001af3f329e8be154074d8769d1ffa4ee058b1dbc300000000000000000000000055d398326f99059ff775485246999027b31979550000000000000000000000000000000000000000000000001216f0a8cfb11c0000000000000000000000000000000000000000000000000011b9f5efe1ba2b5700000000000000000000000000000000000000000000000000000000000001200000000000000000000000000000000000000000000000000028e0df97f26400000000000000000000000000b28da7bc87a9dd1e60849aa7fcb5da24ea913c42000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000004ce3593564c000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000000a0000000000000000000000000000000000000000000000000000000006a065aca000000000000000000000000000000000000000000000000000000000000000110000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000002000000000000000000000000000000000000000000000000000000000000003c0000000000000000000000000000000000000000000000000000000000000004000000000000000000000000000000000000000000000000000000000000000800000000000000000000000000000000000000000000000000000000000000003070b0e000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000030000000000000000000000000000000000000000000000000000000000000060000000000000000000000000000000000000000000000000000000000000022000000000000000000000000000000000000000000000000000000000000002a000000000000000000000000000000000000000000000000000000000000001a000000000000000000000000000000000000000000000000000000000000000200000000000000000000000001af3f329e8be154074d8769d1ffa4ee058b1dbc300000000000000000000000000000000000000000000000000000000000000800000000000000000000000000000000000000000000000001216f0a8cfb11c0000000000000000000000000000000000000000000000000011bbc6cf66c9333f0000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000002000000000000000000000000055d398326f99059ff775485246999027b319795500000000000000000000000000000000000000000000000000000000000000640000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000a0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000600000000000000000000000001af3f329e8be154074d8769d1ffa4ee058b1dbc300000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000006000000000000000000000000055d398326f99059ff775485246999027b3197955000000000000000000000000c590175e458b83680867afd273527ff58f74c02b0000000000000000000000000000000000000000000000000000000000000000756e69780000b2c5de0b0000000000000000000000000000000000002700000000000000000000000000000000000000000000000000000000000000000000000000000055d398326f99059ff775485246999027b3197955000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000600000000000000000000000000000000000000000000000000000000000000044a9059cbb000000000000000000000000e3478b0bb1a5084567c319096437924948be196400000000000000000000000000000000000000000000000000c66b933356b97400000000000000000000000000000000000000000000000000000000", - "from": "0x141d32a89a1e0a5ef360034a2f60a4b917c18838", - "gas": "0x91664", - "maxFeePerGas": "0x3938700", - "maxPriorityFeePerGas": "0x3938700", - "nonce": "0x52", - "to": "0x141d32a89a1e0a5ef360034a2f60a4b917c18838", - "type": "0x2", - "value": "0x0" - }, - "type": "batch", - "userEditedGasLimit": false, - "v": "0x1", - "verifiedOnBlockchain": false - }, - { - "batchId": "0x19e28c59373", - "chainId": "0x38", - "delegationAddress": "0x63c0c19a282a1b52b07dd5a65b58948a07dae32b", - "error": { - "message": "RPC submit: gas=0 intrinsicGas=45520: invalid gas", - "name": "Error", - "stack": "Error: RPC submit: gas=0 intrinsicGas=45520: invalid gas\n at TransactionController._TransactionController_publishTransaction (chrome-extension://hebhblbkkdabgoldnojllkipeoacjioc/js-node_modules_metamask_s.js:60041:15)\n at async chrome-extension://hebhblbkkdabgoldnojllkipeoacjioc/js-node_modules_metamask_s.js:60727:47\n at async TransactionController._TransactionController_defaultPublishHook (chrome-extension://hebhblbkkdabgoldnojllkipeoacjioc/js-node_modules_metamask_s.js:60720:5)\n at async TransactionController._TransactionController_approveTransaction (chrome-extension://hebhblbkkdabgoldnojllkipeoacjioc/js-node_modules_metamask_s.js:59991:43)\n at async TransactionController._TransactionController_processApproval (chrome-extension://hebhblbkkdabgoldnojllkipeoacjioc/js-node_modules_metamask_s.js:59854:40)\n at async addTransactionBatchWith7702 (chrome-extension://hebhblbkkdabgoldnojllkipeoacjioc/js-node_modules_metamask_s.js:41175:29)\n at async addTransactionBatch (chrome-extension://hebhblbkkdabgoldnojllkipeoacjioc/js-node_modules_metamask_s.js:40973:20)\n at async TransactionController.addTransactionBatch (chrome-extension://hebhblbkkdabgoldnojllkipeoacjioc/js-node_modules_metamask_s.js:58615:16)\n at async addTransactionBatch (chrome-extension://hebhblbkkdabgoldnojllkipeoacjioc/js-node_modules_metamask_a.js:67563:25)\n at async submitBatchSellHandler (chrome-extension://hebhblbkkdabgoldnojllkipeoacjioc/js-node_modules_metamask_a.js:20661:33)" - }, - "gasFeeEstimates": { - "high": { - "maxFeePerGas": "0x2faf080", - "maxPriorityFeePerGas": "0x2faf080" - }, - "low": { - "maxFeePerGas": "0x2faf080", - "maxPriorityFeePerGas": "0x2faf080" - }, - "medium": { - "maxFeePerGas": "0x2faf080", - "maxPriorityFeePerGas": "0x2faf080" - }, - "type": "fee-market" - }, - "gasFeeEstimatesLoaded": true, - "id": "18f46f10-4fea-11f1-992c-0d4ef830a3e0", - "isExternalSign": false, - "isGasFeeIncluded": true, - "isGasFeeSponsored": false, - "isGasFeeTokenIgnoredIfBalance": true, - "nestedTransactions": [ - { - "data": "0x095ea7b30000000000000000000000001a1ec25dc08e98e5e93f1104b5e5cdd298707d310000000000000000000000000000000000000000000000000298348bed9600b7", - "from": "0x141d32a89a1e0a5ef360034a2f60a4b917c18838", - "gas": "0x110fa", - "maxFeePerGas": "0x3938700", - "maxPriorityFeePerGas": "0x3938700", - "to": "0xf8a0bf9cf54bb92f17374d9e9a321e6a111a51bd", - "type": "swapApproval", - "value": "0x0" - }, - { - "data": "0x5f5755290000000000000000000000000000000000000000000000000000000000000080000000000000000000000000f8a0bf9cf54bb92f17374d9e9a321e6a111a51bd0000000000000000000000000000000000000000000000000298348bed9600b700000000000000000000000000000000000000000000000000000000000000c0000000000000000000000000000000000000000000000000000000000000001b70616e63616b6553776170526f7574657246656544796e616d696300000000000000000000000000000000000000000000000000000000000000000000000220000000000000000000000000f8a0bf9cf54bb92f17374d9e9a321e6a111a51bd00000000000000000000000055d398326f99059ff775485246999027b31979550000000000000000000000000000000000000000000000000298348bed9600b70000000000000000000000000000000000000000000000001a80778579a98ba20000000000000000000000000000000000000000000000000000000000000120000000000000000000000000000000000000000000000000003d1c3d6ea02c25000000000000000000000000b28da7bc87a9dd1e60849aa7fcb5da24ea913c42000000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000000000e4472b43f30000000000000000000000000000000000000000000000000298348bed9600b70000000000000000000000000000000000000000000000001abf1804dae6254c0000000000000000000000000000000000000000000000000000000000000080000000000000000000000000c590175e458b83680867afd273527ff58f74c02b0000000000000000000000000000000000000000000000000000000000000002000000000000000000000000f8a0bf9cf54bb92f17374d9e9a321e6a111a51bd00000000000000000000000055d398326f99059ff775485246999027b319795500000000000000000000000000000000000000000000000000000000dd", - "from": "0x141d32a89a1e0a5ef360034a2f60a4b917c18838", - "gas": "0x59531", - "maxFeePerGas": "0x3938700", - "maxPriorityFeePerGas": "0x3938700", - "to": "0x1a1ec25DC08e98e5E93F1104B5e5cdD298707d31", - "type": "swap", - "value": "0x0" - }, - { - "data": "0x095ea7b30000000000000000000000001a1ec25dc08e98e5e93f1104b5e5cdd298707d31000000000000000000000000000000000000000000000000123fd18867a38000", - "from": "0x141d32a89a1e0a5ef360034a2f60a4b917c18838", - "gas": "0x110fa", - "maxFeePerGas": "0x3938700", - "maxPriorityFeePerGas": "0x3938700", - "to": "0x1af3f329e8be154074d8769d1ffa4ee058b1dbc3", - "type": "swapApproval", - "value": "0x0" - }, - { - "data": "0x5f57552900000000000000000000000000000000000000000000000000000000000000800000000000000000000000001af3f329e8be154074d8769d1ffa4ee058b1dbc3000000000000000000000000000000000000000000000000123fd18867a3800000000000000000000000000000000000000000000000000000000000000000c00000000000000000000000000000000000000000000000000000000000000018756e69737761705065726d69743246656544796e616d6963000000000000000000000000000000000000000000000000000000000000000000000000000006000000000000000000000000001af3f329e8be154074d8769d1ffa4ee058b1dbc300000000000000000000000055d398326f99059ff775485246999027b31979550000000000000000000000000000000000000000000000001216f0a8cfb11c0000000000000000000000000000000000000000000000000011b9f1a97f0d73c600000000000000000000000000000000000000000000000000000000000001200000000000000000000000000000000000000000000000000028e0df97f26400000000000000000000000000b28da7bc87a9dd1e60849aa7fcb5da24ea913c42000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000004ce3593564c000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000000a0000000000000000000000000000000000000000000000000000000006a065d61000000000000000000000000000000000000000000000000000000000000000110000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000002000000000000000000000000000000000000000000000000000000000000003c0000000000000000000000000000000000000000000000000000000000000004000000000000000000000000000000000000000000000000000000000000000800000000000000000000000000000000000000000000000000000000000000003070b0e000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000030000000000000000000000000000000000000000000000000000000000000060000000000000000000000000000000000000000000000000000000000000022000000000000000000000000000000000000000000000000000000000000002a000000000000000000000000000000000000000000000000000000000000001a000000000000000000000000000000000000000000000000000000000000000200000000000000000000000001af3f329e8be154074d8769d1ffa4ee058b1dbc300000000000000000000000000000000000000000000000000000000000000800000000000000000000000000000000000000000000000001216f0a8cfb11c0000000000000000000000000000000000000000000000000011bbc2889400585e0000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000002000000000000000000000000055d398326f99059ff775485246999027b319795500000000000000000000000000000000000000000000000000000000000000640000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000a0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000600000000000000000000000001af3f329e8be154074d8769d1ffa4ee058b1dbc300000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000006000000000000000000000000055d398326f99059ff775485246999027b3197955000000000000000000000000c590175e458b83680867afd273527ff58f74c02b0000000000000000000000000000000000000000000000000000000000000000756e69780000b2c5de0b000000000000000000000000000000000000c3", - "from": "0x141d32a89a1e0a5ef360034a2f60a4b917c18838", - "gas": "0x5d0d5", - "maxFeePerGas": "0x3938700", - "maxPriorityFeePerGas": "0x3938700", - "to": "0x1a1ec25DC08e98e5E93F1104B5e5cdD298707d31", - "type": "swap", - "value": "0x0" - }, - { - "data": "0xa9059cbb000000000000000000000000e3478b0bb1a5084567c319096437924948be196400000000000000000000000000000000000000000000000000b211f0989a6ab8", - "from": "0x141d32a89a1e0a5ef360034a2f60a4b917c18838", - "gas": "0xcc57", - "maxFeePerGas": "0x3938700", - "maxPriorityFeePerGas": "0x3938700", - "to": "0x55d398326f99059ff775485246999027b3197955", - "type": "transfer", - "value": "0x0" - } - ], - "networkClientId": "9a1eafde-5f04-434b-b011-e9de5c50baf0", - "origin": "metamask", - "r": "0xf93011d1aa0257cb6e3df31b50511710fd3e646b8abd4b897e6833f96701ba87", - "rawTx": "0x02f90f6e3852840393870084039387008094141d32a89a1e0a5ef360034a2f60a4b917c1883880b90f04e9ae5c53010100000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000400000000000000000000000000000000000000000000000000000000000000ea00000000000000000000000000000000000000000000000000000000000000020000000000000000000000000000000000000000000000000000000000000000500000000000000000000000000000000000000000000000000000000000000a00000000000000000000000000000000000000000000000000000000000000180000000000000000000000000000000000000000000000000000000000000052000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000000d80000000000000000000000000f8a0bf9cf54bb92f17374d9e9a321e6a111a51bd000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000600000000000000000000000000000000000000000000000000000000000000044095ea7b30000000000000000000000001a1ec25dc08e98e5e93f1104b5e5cdd298707d310000000000000000000000000000000000000000000000000298348bed9600b7000000000000000000000000000000000000000000000000000000000000000000000000000000001a1ec25dc08e98e5e93f1104b5e5cdd298707d310000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000003055f5755290000000000000000000000000000000000000000000000000000000000000080000000000000000000000000f8a0bf9cf54bb92f17374d9e9a321e6a111a51bd0000000000000000000000000000000000000000000000000298348bed9600b700000000000000000000000000000000000000000000000000000000000000c0000000000000000000000000000000000000000000000000000000000000001b70616e63616b6553776170526f7574657246656544796e616d696300000000000000000000000000000000000000000000000000000000000000000000000220000000000000000000000000f8a0bf9cf54bb92f17374d9e9a321e6a111a51bd00000000000000000000000055d398326f99059ff775485246999027b31979550000000000000000000000000000000000000000000000000298348bed9600b70000000000000000000000000000000000000000000000001a80778579a98ba20000000000000000000000000000000000000000000000000000000000000120000000000000000000000000000000000000000000000000003d1c3d6ea02c25000000000000000000000000b28da7bc87a9dd1e60849aa7fcb5da24ea913c42000000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000000000e4472b43f30000000000000000000000000000000000000000000000000298348bed9600b70000000000000000000000000000000000000000000000001abf1804dae6254c0000000000000000000000000000000000000000000000000000000000000080000000000000000000000000c590175e458b83680867afd273527ff58f74c02b0000000000000000000000000000000000000000000000000000000000000002000000000000000000000000f8a0bf9cf54bb92f17374d9e9a321e6a111a51bd00000000000000000000000055d398326f99059ff775485246999027b319795500000000000000000000000000000000000000000000000000000000dd0000000000000000000000000000000000000000000000000000000000000000000000000000001af3f329e8be154074d8769d1ffa4ee058b1dbc3000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000600000000000000000000000000000000000000000000000000000000000000044095ea7b30000000000000000000000001a1ec25dc08e98e5e93f1104b5e5cdd298707d31000000000000000000000000000000000000000000000000123fd18867a38000000000000000000000000000000000000000000000000000000000000000000000000000000000001a1ec25dc08e98e5e93f1104b5e5cdd298707d310000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000006e55f57552900000000000000000000000000000000000000000000000000000000000000800000000000000000000000001af3f329e8be154074d8769d1ffa4ee058b1dbc3000000000000000000000000000000000000000000000000123fd18867a3800000000000000000000000000000000000000000000000000000000000000000c00000000000000000000000000000000000000000000000000000000000000018756e69737761705065726d69743246656544796e616d6963000000000000000000000000000000000000000000000000000000000000000000000000000006000000000000000000000000001af3f329e8be154074d8769d1ffa4ee058b1dbc300000000000000000000000055d398326f99059ff775485246999027b31979550000000000000000000000000000000000000000000000001216f0a8cfb11c0000000000000000000000000000000000000000000000000011b9f1a97f0d73c600000000000000000000000000000000000000000000000000000000000001200000000000000000000000000000000000000000000000000028e0df97f26400000000000000000000000000b28da7bc87a9dd1e60849aa7fcb5da24ea913c42000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000004ce3593564c000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000000a0000000000000000000000000000000000000000000000000000000006a065d61000000000000000000000000000000000000000000000000000000000000000110000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000002000000000000000000000000000000000000000000000000000000000000003c0000000000000000000000000000000000000000000000000000000000000004000000000000000000000000000000000000000000000000000000000000000800000000000000000000000000000000000000000000000000000000000000003070b0e000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000030000000000000000000000000000000000000000000000000000000000000060000000000000000000000000000000000000000000000000000000000000022000000000000000000000000000000000000000000000000000000000000002a000000000000000000000000000000000000000000000000000000000000001a000000000000000000000000000000000000000000000000000000000000000200000000000000000000000001af3f329e8be154074d8769d1ffa4ee058b1dbc300000000000000000000000000000000000000000000000000000000000000800000000000000000000000000000000000000000000000001216f0a8cfb11c0000000000000000000000000000000000000000000000000011bbc2889400585e0000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000002000000000000000000000000055d398326f99059ff775485246999027b319795500000000000000000000000000000000000000000000000000000000000000640000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000a0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000600000000000000000000000001af3f329e8be154074d8769d1ffa4ee058b1dbc300000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000006000000000000000000000000055d398326f99059ff775485246999027b3197955000000000000000000000000c590175e458b83680867afd273527ff58f74c02b0000000000000000000000000000000000000000000000000000000000000000756e69780000b2c5de0b000000000000000000000000000000000000c300000000000000000000000000000000000000000000000000000000000000000000000000000055d398326f99059ff775485246999027b3197955000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000600000000000000000000000000000000000000000000000000000000000000044a9059cbb000000000000000000000000e3478b0bb1a5084567c319096437924948be196400000000000000000000000000000000000000000000000000b211f0989a6ab800000000000000000000000000000000000000000000000000000000c080a0f93011d1aa0257cb6e3df31b50511710fd3e646b8abd4b897e6833f96701ba87a02e7b5e6f9dde228d5b0786d45c2c8890e2aa166a16bcefb0616e497b5997a0d6", - "s": "0x2e7b5e6f9dde228d5b0786d45c2c8890e2aa166a16bcefb0616e497b5997a0d6", - "status": "failed", - "time": 1778800228481, - "txParams": { - "data": "0xe9ae5c53010100000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000400000000000000000000000000000000000000000000000000000000000000ea00000000000000000000000000000000000000000000000000000000000000020000000000000000000000000000000000000000000000000000000000000000500000000000000000000000000000000000000000000000000000000000000a00000000000000000000000000000000000000000000000000000000000000180000000000000000000000000000000000000000000000000000000000000052000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000000d80000000000000000000000000f8a0bf9cf54bb92f17374d9e9a321e6a111a51bd000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000600000000000000000000000000000000000000000000000000000000000000044095ea7b30000000000000000000000001a1ec25dc08e98e5e93f1104b5e5cdd298707d310000000000000000000000000000000000000000000000000298348bed9600b7000000000000000000000000000000000000000000000000000000000000000000000000000000001a1ec25dc08e98e5e93f1104b5e5cdd298707d310000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000003055f5755290000000000000000000000000000000000000000000000000000000000000080000000000000000000000000f8a0bf9cf54bb92f17374d9e9a321e6a111a51bd0000000000000000000000000000000000000000000000000298348bed9600b700000000000000000000000000000000000000000000000000000000000000c0000000000000000000000000000000000000000000000000000000000000001b70616e63616b6553776170526f7574657246656544796e616d696300000000000000000000000000000000000000000000000000000000000000000000000220000000000000000000000000f8a0bf9cf54bb92f17374d9e9a321e6a111a51bd00000000000000000000000055d398326f99059ff775485246999027b31979550000000000000000000000000000000000000000000000000298348bed9600b70000000000000000000000000000000000000000000000001a80778579a98ba20000000000000000000000000000000000000000000000000000000000000120000000000000000000000000000000000000000000000000003d1c3d6ea02c25000000000000000000000000b28da7bc87a9dd1e60849aa7fcb5da24ea913c42000000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000000000e4472b43f30000000000000000000000000000000000000000000000000298348bed9600b70000000000000000000000000000000000000000000000001abf1804dae6254c0000000000000000000000000000000000000000000000000000000000000080000000000000000000000000c590175e458b83680867afd273527ff58f74c02b0000000000000000000000000000000000000000000000000000000000000002000000000000000000000000f8a0bf9cf54bb92f17374d9e9a321e6a111a51bd00000000000000000000000055d398326f99059ff775485246999027b319795500000000000000000000000000000000000000000000000000000000dd0000000000000000000000000000000000000000000000000000000000000000000000000000001af3f329e8be154074d8769d1ffa4ee058b1dbc3000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000600000000000000000000000000000000000000000000000000000000000000044095ea7b30000000000000000000000001a1ec25dc08e98e5e93f1104b5e5cdd298707d31000000000000000000000000000000000000000000000000123fd18867a38000000000000000000000000000000000000000000000000000000000000000000000000000000000001a1ec25dc08e98e5e93f1104b5e5cdd298707d310000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000006e55f57552900000000000000000000000000000000000000000000000000000000000000800000000000000000000000001af3f329e8be154074d8769d1ffa4ee058b1dbc3000000000000000000000000000000000000000000000000123fd18867a3800000000000000000000000000000000000000000000000000000000000000000c00000000000000000000000000000000000000000000000000000000000000018756e69737761705065726d69743246656544796e616d6963000000000000000000000000000000000000000000000000000000000000000000000000000006000000000000000000000000001af3f329e8be154074d8769d1ffa4ee058b1dbc300000000000000000000000055d398326f99059ff775485246999027b31979550000000000000000000000000000000000000000000000001216f0a8cfb11c0000000000000000000000000000000000000000000000000011b9f1a97f0d73c600000000000000000000000000000000000000000000000000000000000001200000000000000000000000000000000000000000000000000028e0df97f26400000000000000000000000000b28da7bc87a9dd1e60849aa7fcb5da24ea913c42000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000004ce3593564c000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000000a0000000000000000000000000000000000000000000000000000000006a065d61000000000000000000000000000000000000000000000000000000000000000110000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000002000000000000000000000000000000000000000000000000000000000000003c0000000000000000000000000000000000000000000000000000000000000004000000000000000000000000000000000000000000000000000000000000000800000000000000000000000000000000000000000000000000000000000000003070b0e000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000030000000000000000000000000000000000000000000000000000000000000060000000000000000000000000000000000000000000000000000000000000022000000000000000000000000000000000000000000000000000000000000002a000000000000000000000000000000000000000000000000000000000000001a000000000000000000000000000000000000000000000000000000000000000200000000000000000000000001af3f329e8be154074d8769d1ffa4ee058b1dbc300000000000000000000000000000000000000000000000000000000000000800000000000000000000000000000000000000000000000001216f0a8cfb11c0000000000000000000000000000000000000000000000000011bbc2889400585e0000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000002000000000000000000000000055d398326f99059ff775485246999027b319795500000000000000000000000000000000000000000000000000000000000000640000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000a0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000600000000000000000000000001af3f329e8be154074d8769d1ffa4ee058b1dbc300000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000006000000000000000000000000055d398326f99059ff775485246999027b3197955000000000000000000000000c590175e458b83680867afd273527ff58f74c02b0000000000000000000000000000000000000000000000000000000000000000756e69780000b2c5de0b000000000000000000000000000000000000c300000000000000000000000000000000000000000000000000000000000000000000000000000055d398326f99059ff775485246999027b3197955000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000600000000000000000000000000000000000000000000000000000000000000044a9059cbb000000000000000000000000e3478b0bb1a5084567c319096437924948be196400000000000000000000000000000000000000000000000000b211f0989a6ab800000000000000000000000000000000000000000000000000000000", - "from": "0x141d32a89a1e0a5ef360034a2f60a4b917c18838", - "gas": "0x7f334", - "maxFeePerGas": "0x3938700", - "maxPriorityFeePerGas": "0x3938700", - "nonce": "0x52", - "to": "0x141d32a89a1e0a5ef360034a2f60a4b917c18838", - "type": "0x2", - "value": "0x0" - }, - "type": "batch", - "userEditedGasLimit": false, - "v": "0x0", - "verifiedOnBlockchain": false - }, - { - "batchId": "0x19e28d0e1e9", - "chainId": "0x38", - "defaultGasEstimates": { - "estimateType": "medium", - "gas": "0x91639", - "maxFeePerGas": "0x3938700", - "maxPriorityFeePerGas": "0x3938700" - }, - "delegationAddress": "0x63c0c19a282a1b52b07dd5a65b58948a07dae32b", - "error": { - "message": "Gas fee token not found and insufficient native balance", - "name": "Error", - "stack": "Error: Gas fee token not found and insufficient native balance\n at checkGasFeeTokenBeforePublish (chrome-extension://hebhblbkkdabgoldnojllkipeoacjioc/js-node_modules_metamask_s.js:50763:15)\n at async TransactionController._TransactionController_signTransaction (chrome-extension://hebhblbkkdabgoldnojllkipeoacjioc/js-node_modules_metamask_s.js:60276:5)\n at async TransactionController._TransactionController_approveTransaction (chrome-extension://hebhblbkkdabgoldnojllkipeoacjioc/js-node_modules_metamask_s.js:59945:23)\n at async TransactionController._TransactionController_processApproval (chrome-extension://hebhblbkkdabgoldnojllkipeoacjioc/js-node_modules_metamask_s.js:59854:40)\n at async addTransactionBatchWith7702 (chrome-extension://hebhblbkkdabgoldnojllkipeoacjioc/js-node_modules_metamask_s.js:41175:29)\n at async addTransactionBatch (chrome-extension://hebhblbkkdabgoldnojllkipeoacjioc/js-node_modules_metamask_s.js:40973:20)\n at async TransactionController.addTransactionBatch (chrome-extension://hebhblbkkdabgoldnojllkipeoacjioc/js-node_modules_metamask_s.js:58615:16)\n at async addTransactionBatch (chrome-extension://hebhblbkkdabgoldnojllkipeoacjioc/js-node_modules_metamask_a.js:67563:25)\n at async submitBatchSellHandler (chrome-extension://hebhblbkkdabgoldnojllkipeoacjioc/js-node_modules_metamask_a.js:20661:33)\n at async BridgeStatusController. (chrome-extension://hebhblbkkdabgoldnojllkipeoacjioc/js-node_modules_metamask_a.js:53097:46)" - }, - "gasFeeEstimates": { - "high": { - "maxFeePerGas": "0x2faf080", - "maxPriorityFeePerGas": "0x2faf080" - }, - "low": { - "maxFeePerGas": "0x2faf080", - "maxPriorityFeePerGas": "0x2faf080" - }, - "medium": { - "maxFeePerGas": "0x2faf080", - "maxPriorityFeePerGas": "0x2faf080" - }, - "type": "fee-market" - }, - "gasFeeEstimatesLoaded": true, - "gasFeeTokens": [], - "gasLimitNoBuffer": "0x91639", - "id": "7db3e840-4fea-11f1-9eaf-6d41ddad5d97", - "isExternalSign": true, - "isGasFeeIncluded": true, - "isGasFeeSponsored": false, - "isGasFeeTokenIgnoredIfBalance": true, - "nestedTransactions": [ - { - "data": "0x095ea7b30000000000000000000000001a1ec25dc08e98e5e93f1104b5e5cdd298707d310000000000000000000000000000000000000000000000000298348bed9600b7", - "from": "0x141d32a89a1e0a5ef360034a2f60a4b917c18838", - "gas": "0x110fa", - "maxFeePerGas": "0x3938700", - "maxPriorityFeePerGas": "0x3938700", - "to": "0xf8a0bf9cf54bb92f17374d9e9a321e6a111a51bd", - "type": "swapApproval", - "value": "0x0" - }, - { - "data": "0x5f5755290000000000000000000000000000000000000000000000000000000000000080000000000000000000000000f8a0bf9cf54bb92f17374d9e9a321e6a111a51bd0000000000000000000000000000000000000000000000000298348bed9600b700000000000000000000000000000000000000000000000000000000000000c00000000000000000000000000000000000000000000000000000000000000018756e69737761705065726d69743246656544796e616d696300000000000000000000000000000000000000000000000000000000000000000000000000000360000000000000000000000000f8a0bf9cf54bb92f17374d9e9a321e6a111a51bd00000000000000000000000055d398326f99059ff775485246999027b31979550000000000000000000000000000000000000000000000000298348bed9600b70000000000000000000000000000000000000000000000001a8e09b3111a01c70000000000000000000000000000000000000000000000000000000000000120000000000000000000000000000000000000000000000000003d3b8881edf8ba000000000000000000000000b28da7bc87a9dd1e60849aa7fcb5da24ea913c420000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000022e3593564c000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000000a0000000000000000000000000000000000000000000000000000000006a065e1100000000000000000000000000000000000000000000000000000000000000010000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000000000200000000000000000000000000000000000000000000000000000000000000120000000000000000000000000c590175e458b83680867afd273527ff58f74c02b0000000000000000000000000000000000000000000000000298348bed9600b70000000000000000000000000000000000000000000000001accca44571f98b700000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000000000000000000000000000000010000000000000000000000000000000000000000000000000000000000000042f8a0bf9cf54bb92f17374d9e9a321e6a111a51bd0001f42170ed0880ac9a755fd29b2688956bd959f933f80001f455d398326f99059ff775485246999027b3197955000000000000000000000000000000000000000000000000000000000000756e69780000b2c5de0b000000000000000000000000000000000000ca", - "from": "0x141d32a89a1e0a5ef360034a2f60a4b917c18838", - "gas": "0x793cd", - "maxFeePerGas": "0x3938700", - "maxPriorityFeePerGas": "0x3938700", - "to": "0x1a1ec25DC08e98e5E93F1104B5e5cdD298707d31", - "type": "swap", - "value": "0x0" - }, - { - "data": "0x095ea7b30000000000000000000000001a1ec25dc08e98e5e93f1104b5e5cdd298707d31000000000000000000000000000000000000000000000000123fd18867a38000", - "from": "0x141d32a89a1e0a5ef360034a2f60a4b917c18838", - "gas": "0x110fa", - "maxFeePerGas": "0x3938700", - "maxPriorityFeePerGas": "0x3938700", - "to": "0x1af3f329e8be154074d8769d1ffa4ee058b1dbc3", - "type": "swapApproval", - "value": "0x0" - }, - { - "data": "0x5f57552900000000000000000000000000000000000000000000000000000000000000800000000000000000000000001af3f329e8be154074d8769d1ffa4ee058b1dbc3000000000000000000000000000000000000000000000000123fd18867a3800000000000000000000000000000000000000000000000000000000000000000c00000000000000000000000000000000000000000000000000000000000000018756e69737761705065726d69743246656544796e616d6963000000000000000000000000000000000000000000000000000000000000000000000000000006000000000000000000000000001af3f329e8be154074d8769d1ffa4ee058b1dbc300000000000000000000000055d398326f99059ff775485246999027b31979550000000000000000000000000000000000000000000000001216f0a8cfb11c0000000000000000000000000000000000000000000000000011b9f1a97f0d73c600000000000000000000000000000000000000000000000000000000000001200000000000000000000000000000000000000000000000000028e0df97f26400000000000000000000000000b28da7bc87a9dd1e60849aa7fcb5da24ea913c42000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000004ce3593564c000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000000a0000000000000000000000000000000000000000000000000000000006a065e11000000000000000000000000000000000000000000000000000000000000000110000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000002000000000000000000000000000000000000000000000000000000000000003c0000000000000000000000000000000000000000000000000000000000000004000000000000000000000000000000000000000000000000000000000000000800000000000000000000000000000000000000000000000000000000000000003070b0e000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000030000000000000000000000000000000000000000000000000000000000000060000000000000000000000000000000000000000000000000000000000000022000000000000000000000000000000000000000000000000000000000000002a000000000000000000000000000000000000000000000000000000000000001a000000000000000000000000000000000000000000000000000000000000000200000000000000000000000001af3f329e8be154074d8769d1ffa4ee058b1dbc300000000000000000000000000000000000000000000000000000000000000800000000000000000000000000000000000000000000000001216f0a8cfb11c0000000000000000000000000000000000000000000000000011bbc2889400585e0000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000002000000000000000000000000055d398326f99059ff775485246999027b319795500000000000000000000000000000000000000000000000000000000000000640000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000a0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000600000000000000000000000001af3f329e8be154074d8769d1ffa4ee058b1dbc300000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000006000000000000000000000000055d398326f99059ff775485246999027b3197955000000000000000000000000c590175e458b83680867afd273527ff58f74c02b0000000000000000000000000000000000000000000000000000000000000000756e69780000b2c5de0b0000000000000000000000000000000000008b", - "from": "0x141d32a89a1e0a5ef360034a2f60a4b917c18838", - "gas": "0x5d0d5", - "maxFeePerGas": "0x3938700", - "maxPriorityFeePerGas": "0x3938700", - "to": "0x1a1ec25DC08e98e5E93F1104B5e5cdD298707d31", - "type": "swap", - "value": "0x0" - }, - { - "data": "0xa9059cbb000000000000000000000000e3478b0bb1a5084567c319096437924948be196400000000000000000000000000000000000000000000000000c6260e1199aa22", - "from": "0x141d32a89a1e0a5ef360034a2f60a4b917c18838", - "gas": "0xcc57", - "maxFeePerGas": "0x3938700", - "maxPriorityFeePerGas": "0x3938700", - "to": "0x55d398326f99059ff775485246999027b3197955", - "type": "transfer", - "value": "0x0" - } - ], - "networkClientId": "9a1eafde-5f04-434b-b011-e9de5c50baf0", - "origin": "metamask", - "originalGasEstimate": "0x91639", - "selectedGasFeeToken": "0x55d398326f99059ff775485246999027b3197955", - "status": "failed", - "time": 1778800397508, - "txParams": { - "data": "0xe9ae5c53010100000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000400000000000000000000000000000000000000000000000000000000000000fe00000000000000000000000000000000000000000000000000000000000000020000000000000000000000000000000000000000000000000000000000000000500000000000000000000000000000000000000000000000000000000000000a00000000000000000000000000000000000000000000000000000000000000180000000000000000000000000000000000000000000000000000000000000066000000000000000000000000000000000000000000000000000000000000007400000000000000000000000000000000000000000000000000000000000000ec0000000000000000000000000f8a0bf9cf54bb92f17374d9e9a321e6a111a51bd000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000600000000000000000000000000000000000000000000000000000000000000044095ea7b30000000000000000000000001a1ec25dc08e98e5e93f1104b5e5cdd298707d310000000000000000000000000000000000000000000000000298348bed9600b7000000000000000000000000000000000000000000000000000000000000000000000000000000001a1ec25dc08e98e5e93f1104b5e5cdd298707d310000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000004455f5755290000000000000000000000000000000000000000000000000000000000000080000000000000000000000000f8a0bf9cf54bb92f17374d9e9a321e6a111a51bd0000000000000000000000000000000000000000000000000298348bed9600b700000000000000000000000000000000000000000000000000000000000000c00000000000000000000000000000000000000000000000000000000000000018756e69737761705065726d69743246656544796e616d696300000000000000000000000000000000000000000000000000000000000000000000000000000360000000000000000000000000f8a0bf9cf54bb92f17374d9e9a321e6a111a51bd00000000000000000000000055d398326f99059ff775485246999027b31979550000000000000000000000000000000000000000000000000298348bed9600b70000000000000000000000000000000000000000000000001a8e09b3111a01c70000000000000000000000000000000000000000000000000000000000000120000000000000000000000000000000000000000000000000003d3b8881edf8ba000000000000000000000000b28da7bc87a9dd1e60849aa7fcb5da24ea913c420000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000022e3593564c000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000000a0000000000000000000000000000000000000000000000000000000006a065e1100000000000000000000000000000000000000000000000000000000000000010000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000000000200000000000000000000000000000000000000000000000000000000000000120000000000000000000000000c590175e458b83680867afd273527ff58f74c02b0000000000000000000000000000000000000000000000000298348bed9600b70000000000000000000000000000000000000000000000001accca44571f98b700000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000000000000000000000000000000010000000000000000000000000000000000000000000000000000000000000042f8a0bf9cf54bb92f17374d9e9a321e6a111a51bd0001f42170ed0880ac9a755fd29b2688956bd959f933f80001f455d398326f99059ff775485246999027b3197955000000000000000000000000000000000000000000000000000000000000756e69780000b2c5de0b000000000000000000000000000000000000ca0000000000000000000000000000000000000000000000000000000000000000000000000000001af3f329e8be154074d8769d1ffa4ee058b1dbc3000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000600000000000000000000000000000000000000000000000000000000000000044095ea7b30000000000000000000000001a1ec25dc08e98e5e93f1104b5e5cdd298707d31000000000000000000000000000000000000000000000000123fd18867a38000000000000000000000000000000000000000000000000000000000000000000000000000000000001a1ec25dc08e98e5e93f1104b5e5cdd298707d310000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000006e55f57552900000000000000000000000000000000000000000000000000000000000000800000000000000000000000001af3f329e8be154074d8769d1ffa4ee058b1dbc3000000000000000000000000000000000000000000000000123fd18867a3800000000000000000000000000000000000000000000000000000000000000000c00000000000000000000000000000000000000000000000000000000000000018756e69737761705065726d69743246656544796e616d6963000000000000000000000000000000000000000000000000000000000000000000000000000006000000000000000000000000001af3f329e8be154074d8769d1ffa4ee058b1dbc300000000000000000000000055d398326f99059ff775485246999027b31979550000000000000000000000000000000000000000000000001216f0a8cfb11c0000000000000000000000000000000000000000000000000011b9f1a97f0d73c600000000000000000000000000000000000000000000000000000000000001200000000000000000000000000000000000000000000000000028e0df97f26400000000000000000000000000b28da7bc87a9dd1e60849aa7fcb5da24ea913c42000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000004ce3593564c000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000000a0000000000000000000000000000000000000000000000000000000006a065e11000000000000000000000000000000000000000000000000000000000000000110000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000002000000000000000000000000000000000000000000000000000000000000003c0000000000000000000000000000000000000000000000000000000000000004000000000000000000000000000000000000000000000000000000000000000800000000000000000000000000000000000000000000000000000000000000003070b0e000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000030000000000000000000000000000000000000000000000000000000000000060000000000000000000000000000000000000000000000000000000000000022000000000000000000000000000000000000000000000000000000000000002a000000000000000000000000000000000000000000000000000000000000001a000000000000000000000000000000000000000000000000000000000000000200000000000000000000000001af3f329e8be154074d8769d1ffa4ee058b1dbc300000000000000000000000000000000000000000000000000000000000000800000000000000000000000000000000000000000000000001216f0a8cfb11c0000000000000000000000000000000000000000000000000011bbc2889400585e0000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000002000000000000000000000000055d398326f99059ff775485246999027b319795500000000000000000000000000000000000000000000000000000000000000640000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000a0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000600000000000000000000000001af3f329e8be154074d8769d1ffa4ee058b1dbc300000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000006000000000000000000000000055d398326f99059ff775485246999027b3197955000000000000000000000000c590175e458b83680867afd273527ff58f74c02b0000000000000000000000000000000000000000000000000000000000000000756e69780000b2c5de0b0000000000000000000000000000000000008b00000000000000000000000000000000000000000000000000000000000000000000000000000055d398326f99059ff775485246999027b3197955000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000600000000000000000000000000000000000000000000000000000000000000044a9059cbb000000000000000000000000e3478b0bb1a5084567c319096437924948be196400000000000000000000000000000000000000000000000000c6260e1199aa2200000000000000000000000000000000000000000000000000000000", - "from": "0x141d32a89a1e0a5ef360034a2f60a4b917c18838", - "gas": "0x91639", - "gasLimit": "0x91639", - "maxFeePerGas": "0x3938700", - "maxPriorityFeePerGas": "0x3938700", - "to": "0x141d32a89a1e0a5ef360034a2f60a4b917c18838", - "type": "0x2", - "value": "0x0" - }, - "type": "batch", - "userEditedGasLimit": false, - "userFeeLevel": "medium", - "verifiedOnBlockchain": false - }, - { - "batchId": "0x19e28ccbae0", - "chainId": "0x38", - "defaultGasEstimates": { - "estimateType": "medium", - "gas": "0x85bfd", - "maxFeePerGas": "0x3938700", - "maxPriorityFeePerGas": "0x3938700" - }, - "delegationAddress": "0x63c0c19a282a1b52b07dd5a65b58948a07dae32b", - "error": { - "message": "RPC submit: gas required exceeds allowance (421519)", - "name": "Error", - "stack": "Error: RPC submit: gas required exceeds allowance (421519)\n at TransactionController._TransactionController_publishTransaction (chrome-extension://hebhblbkkdabgoldnojllkipeoacjioc/js-node_modules_metamask_s.js:60041:15)\n at async chrome-extension://hebhblbkkdabgoldnojllkipeoacjioc/js-node_modules_metamask_s.js:60727:47\n at async TransactionController._TransactionController_defaultPublishHook (chrome-extension://hebhblbkkdabgoldnojllkipeoacjioc/js-node_modules_metamask_s.js:60720:5)\n at async TransactionController._TransactionController_approveTransaction (chrome-extension://hebhblbkkdabgoldnojllkipeoacjioc/js-node_modules_metamask_s.js:59991:43)\n at async TransactionController._TransactionController_processApproval (chrome-extension://hebhblbkkdabgoldnojllkipeoacjioc/js-node_modules_metamask_s.js:59854:40)\n at async addTransactionBatchWith7702 (chrome-extension://hebhblbkkdabgoldnojllkipeoacjioc/js-node_modules_metamask_s.js:41175:29)\n at async addTransactionBatch (chrome-extension://hebhblbkkdabgoldnojllkipeoacjioc/js-node_modules_metamask_s.js:40973:20)\n at async TransactionController.addTransactionBatch (chrome-extension://hebhblbkkdabgoldnojllkipeoacjioc/js-node_modules_metamask_s.js:58615:16)\n at async addTransactionBatch (chrome-extension://hebhblbkkdabgoldnojllkipeoacjioc/js-node_modules_metamask_a.js:67563:25)\n at async submitBatchSellHandler (chrome-extension://hebhblbkkdabgoldnojllkipeoacjioc/js-node_modules_metamask_a.js:20661:33)" - }, - "excludeNativeTokenForFee": true, - "gasFeeEstimates": { - "high": { - "maxFeePerGas": "0x2faf080", - "maxPriorityFeePerGas": "0x2faf080" - }, - "low": { - "maxFeePerGas": "0x2faf080", - "maxPriorityFeePerGas": "0x2faf080" - }, - "medium": { - "maxFeePerGas": "0x2faf080", - "maxPriorityFeePerGas": "0x2faf080" - }, - "type": "fee-market" - }, - "gasFeeEstimatesLoaded": true, - "gasLimitNoBuffer": "0x85bfd", - "id": "a116a240-4feb-11f1-8f78-ef6a792329b2", - "isGasFeeIncluded": true, - "isGasFeeSponsored": false, - "isGasFeeTokenIgnoredIfBalance": false, - "nestedTransactions": [ - { - "data": "0x095ea7b30000000000000000000000001a1ec25dc08e98e5e93f1104b5e5cdd298707d310000000000000000000000000000000000000000000000000298348bed9600b7", - "from": "0x141d32a89a1e0a5ef360034a2f60a4b917c18838", - "gas": "0x110fa", - "maxFeePerGas": "0x3938700", - "maxPriorityFeePerGas": "0x3938700", - "to": "0xf8a0bf9cf54bb92f17374d9e9a321e6a111a51bd", - "type": "swapApproval", - "value": "0x0" - }, - { - "data": "0x5f5755290000000000000000000000000000000000000000000000000000000000000080000000000000000000000000f8a0bf9cf54bb92f17374d9e9a321e6a111a51bd0000000000000000000000000000000000000000000000000298348bed9600b700000000000000000000000000000000000000000000000000000000000000c00000000000000000000000000000000000000000000000000000000000000018756e69737761705065726d69743246656544796e616d6963000000000000000000000000000000000000000000000000000000000000000000000000000006e0000000000000000000000000f8a0bf9cf54bb92f17374d9e9a321e6a111a51bd00000000000000000000000055d398326f99059ff775485246999027b31979550000000000000000000000000000000000000000000000000298348bed9600b70000000000000000000000000000000000000000000000001a85e40d6281a5430000000000000000000000000000000000000000000000000000000000000120000000000000000000000000000000000000000000000000003d28bf3b986359000000000000000000000000b28da7bc87a9dd1e60849aa7fcb5da24ea913c42000000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000000005ae3593564c000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000000a0000000000000000000000000000000000000000000000000000000006a065ff8000000000000000000000000000000000000000000000000000000000000000110000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000002000000000000000000000000000000000000000000000000000000000000004a0000000000000000000000000000000000000000000000000000000000000004000000000000000000000000000000000000000000000000000000000000000800000000000000000000000000000000000000000000000000000000000000003070b0e0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000300000000000000000000000000000000000000000000000000000000000000600000000000000000000000000000000000000000000000000000000000000300000000000000000000000000000000000000000000000000000000000000038000000000000000000000000000000000000000000000000000000000000002800000000000000000000000000000000000000000000000000000000000000020000000000000000000000000f8a0bf9cf54bb92f17374d9e9a321e6a111a51bd00000000000000000000000000000000000000000000000000000000000000800000000000000000000000000000000000000000000000000298348bed9600b70000000000000000000000000000000000000000000000001ac4915e06ffbdb00000000000000000000000000000000000000000000000000000000000000002000000000000000000000000000000000000000000000000000000000000004000000000000000000000000000000000000000000000000000000000000001000000000000000000000000008ac76a51cc950d9822d68b83fe1ad97b32cd580d0000000000000000000000000000000000000000000000000000000000000bb8000000000000000000000000000000000000000000000000000000000000003c000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000a0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000055d398326f99059ff775485246999027b319795500000000000000000000000000000000000000000000000000000000000000020000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000060000000000000000000000000f8a0bf9cf54bb92f17374d9e9a321e6a111a51bd00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000006000000000000000000000000055d398326f99059ff775485246999027b3197955000000000000000000000000c590175e458b83680867afd273527ff58f74c02b0000000000000000000000000000000000000000000000000000000000000000756e69780000b2c5de0b000000000000000000000000000000000000dc", - "from": "0x141d32a89a1e0a5ef360034a2f60a4b917c18838", - "gas": "0x6a37c", - "maxFeePerGas": "0x3938700", - "maxPriorityFeePerGas": "0x3938700", - "to": "0x1a1ec25DC08e98e5E93F1104B5e5cdD298707d31", - "type": "swap", - "value": "0x0" - }, - { - "data": "0x095ea7b30000000000000000000000001a1ec25dc08e98e5e93f1104b5e5cdd298707d31000000000000000000000000000000000000000000000000123fd18867a38000", - "from": "0x141d32a89a1e0a5ef360034a2f60a4b917c18838", - "gas": "0x110fa", - "maxFeePerGas": "0x3938700", - "maxPriorityFeePerGas": "0x3938700", - "to": "0x1af3f329e8be154074d8769d1ffa4ee058b1dbc3", - "type": "swapApproval", - "value": "0x0" - }, - { - "data": "0x5f57552900000000000000000000000000000000000000000000000000000000000000800000000000000000000000001af3f329e8be154074d8769d1ffa4ee058b1dbc3000000000000000000000000000000000000000000000000123fd18867a3800000000000000000000000000000000000000000000000000000000000000000c00000000000000000000000000000000000000000000000000000000000000018756e69737761705065726d69743246656544796e616d6963000000000000000000000000000000000000000000000000000000000000000000000000000006000000000000000000000000001af3f329e8be154074d8769d1ffa4ee058b1dbc300000000000000000000000055d398326f99059ff775485246999027b31979550000000000000000000000000000000000000000000000001216f0a8cfb11c0000000000000000000000000000000000000000000000000011b9f041e18f6fb800000000000000000000000000000000000000000000000000000000000001200000000000000000000000000000000000000000000000000028e0df97f26400000000000000000000000000b28da7bc87a9dd1e60849aa7fcb5da24ea913c42000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000004ce3593564c000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000000a0000000000000000000000000000000000000000000000000000000006a065ff7000000000000000000000000000000000000000000000000000000000000000110000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000002000000000000000000000000000000000000000000000000000000000000003c0000000000000000000000000000000000000000000000000000000000000004000000000000000000000000000000000000000000000000000000000000000800000000000000000000000000000000000000000000000000000000000000003070b0e000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000030000000000000000000000000000000000000000000000000000000000000060000000000000000000000000000000000000000000000000000000000000022000000000000000000000000000000000000000000000000000000000000002a000000000000000000000000000000000000000000000000000000000000001a000000000000000000000000000000000000000000000000000000000000000200000000000000000000000001af3f329e8be154074d8769d1ffa4ee058b1dbc300000000000000000000000000000000000000000000000000000000000000800000000000000000000000000000000000000000000000001216f0a8cfb11c0000000000000000000000000000000000000000000000000011bbc120d1ab75cf0000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000002000000000000000000000000055d398326f99059ff775485246999027b319795500000000000000000000000000000000000000000000000000000000000000640000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000a0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000600000000000000000000000001af3f329e8be154074d8769d1ffa4ee058b1dbc300000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000006000000000000000000000000055d398326f99059ff775485246999027b3197955000000000000000000000000c590175e458b83680867afd273527ff58f74c02b0000000000000000000000000000000000000000000000000000000000000000756e69780000b2c5de0b000000000000000000000000000000000000c1", - "from": "0x141d32a89a1e0a5ef360034a2f60a4b917c18838", - "gas": "0x5d0e7", - "maxFeePerGas": "0x3938700", - "maxPriorityFeePerGas": "0x3938700", - "to": "0x1a1ec25DC08e98e5E93F1104B5e5cdD298707d31", - "type": "swap", - "value": "0x0" - }, - { - "data": "0xa9059cbb000000000000000000000000e3478b0bb1a5084567c319096437924948be196400000000000000000000000000000000000000000000000000c1178274cf4230", - "from": "0x141d32a89a1e0a5ef360034a2f60a4b917c18838", - "gas": "0xcc57", - "maxFeePerGas": "0x3938700", - "maxPriorityFeePerGas": "0x3938700", - "to": "0x55d398326f99059ff775485246999027b3197955", - "type": "transfer", - "value": "0x0" - } - ], - "networkClientId": "9a1eafde-5f04-434b-b011-e9de5c50baf0", - "origin": "metamask", - "originalGasEstimate": "0x85bfd", - "r": "0x399313380120ebd55bb958c9a0cd2da8fb043745978a52fa17b95c302866c556", - "rawTx": "0x02f9143138528403938700840393870083085bfd94141d32a89a1e0a5ef360034a2f60a4b917c1883880b913c4e9ae5c530101000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000004000000000000000000000000000000000000000000000000000000000000013600000000000000000000000000000000000000000000000000000000000000020000000000000000000000000000000000000000000000000000000000000000500000000000000000000000000000000000000000000000000000000000000a0000000000000000000000000000000000000000000000000000000000000018000000000000000000000000000000000000000000000000000000000000009e00000000000000000000000000000000000000000000000000000000000000ac00000000000000000000000000000000000000000000000000000000000001240000000000000000000000000f8a0bf9cf54bb92f17374d9e9a321e6a111a51bd000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000600000000000000000000000000000000000000000000000000000000000000044095ea7b30000000000000000000000001a1ec25dc08e98e5e93f1104b5e5cdd298707d310000000000000000000000000000000000000000000000000298348bed9600b7000000000000000000000000000000000000000000000000000000000000000000000000000000001a1ec25dc08e98e5e93f1104b5e5cdd298707d310000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000007c55f5755290000000000000000000000000000000000000000000000000000000000000080000000000000000000000000f8a0bf9cf54bb92f17374d9e9a321e6a111a51bd0000000000000000000000000000000000000000000000000298348bed9600b700000000000000000000000000000000000000000000000000000000000000c00000000000000000000000000000000000000000000000000000000000000018756e69737761705065726d69743246656544796e616d6963000000000000000000000000000000000000000000000000000000000000000000000000000006e0000000000000000000000000f8a0bf9cf54bb92f17374d9e9a321e6a111a51bd00000000000000000000000055d398326f99059ff775485246999027b31979550000000000000000000000000000000000000000000000000298348bed9600b70000000000000000000000000000000000000000000000001a85e40d6281a5430000000000000000000000000000000000000000000000000000000000000120000000000000000000000000000000000000000000000000003d28bf3b986359000000000000000000000000b28da7bc87a9dd1e60849aa7fcb5da24ea913c42000000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000000005ae3593564c000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000000a0000000000000000000000000000000000000000000000000000000006a065ff8000000000000000000000000000000000000000000000000000000000000000110000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000002000000000000000000000000000000000000000000000000000000000000004a0000000000000000000000000000000000000000000000000000000000000004000000000000000000000000000000000000000000000000000000000000000800000000000000000000000000000000000000000000000000000000000000003070b0e0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000300000000000000000000000000000000000000000000000000000000000000600000000000000000000000000000000000000000000000000000000000000300000000000000000000000000000000000000000000000000000000000000038000000000000000000000000000000000000000000000000000000000000002800000000000000000000000000000000000000000000000000000000000000020000000000000000000000000f8a0bf9cf54bb92f17374d9e9a321e6a111a51bd00000000000000000000000000000000000000000000000000000000000000800000000000000000000000000000000000000000000000000298348bed9600b70000000000000000000000000000000000000000000000001ac4915e06ffbdb00000000000000000000000000000000000000000000000000000000000000002000000000000000000000000000000000000000000000000000000000000004000000000000000000000000000000000000000000000000000000000000001000000000000000000000000008ac76a51cc950d9822d68b83fe1ad97b32cd580d0000000000000000000000000000000000000000000000000000000000000bb8000000000000000000000000000000000000000000000000000000000000003c000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000a0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000055d398326f99059ff775485246999027b319795500000000000000000000000000000000000000000000000000000000000000020000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000060000000000000000000000000f8a0bf9cf54bb92f17374d9e9a321e6a111a51bd00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000006000000000000000000000000055d398326f99059ff775485246999027b3197955000000000000000000000000c590175e458b83680867afd273527ff58f74c02b0000000000000000000000000000000000000000000000000000000000000000756e69780000b2c5de0b000000000000000000000000000000000000dc0000000000000000000000000000000000000000000000000000000000000000000000000000001af3f329e8be154074d8769d1ffa4ee058b1dbc3000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000600000000000000000000000000000000000000000000000000000000000000044095ea7b30000000000000000000000001a1ec25dc08e98e5e93f1104b5e5cdd298707d31000000000000000000000000000000000000000000000000123fd18867a38000000000000000000000000000000000000000000000000000000000000000000000000000000000001a1ec25dc08e98e5e93f1104b5e5cdd298707d310000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000006e55f57552900000000000000000000000000000000000000000000000000000000000000800000000000000000000000001af3f329e8be154074d8769d1ffa4ee058b1dbc3000000000000000000000000000000000000000000000000123fd18867a3800000000000000000000000000000000000000000000000000000000000000000c00000000000000000000000000000000000000000000000000000000000000018756e69737761705065726d69743246656544796e616d6963000000000000000000000000000000000000000000000000000000000000000000000000000006000000000000000000000000001af3f329e8be154074d8769d1ffa4ee058b1dbc300000000000000000000000055d398326f99059ff775485246999027b31979550000000000000000000000000000000000000000000000001216f0a8cfb11c0000000000000000000000000000000000000000000000000011b9f041e18f6fb800000000000000000000000000000000000000000000000000000000000001200000000000000000000000000000000000000000000000000028e0df97f26400000000000000000000000000b28da7bc87a9dd1e60849aa7fcb5da24ea913c42000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000004ce3593564c000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000000a0000000000000000000000000000000000000000000000000000000006a065ff7000000000000000000000000000000000000000000000000000000000000000110000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000002000000000000000000000000000000000000000000000000000000000000003c0000000000000000000000000000000000000000000000000000000000000004000000000000000000000000000000000000000000000000000000000000000800000000000000000000000000000000000000000000000000000000000000003070b0e000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000030000000000000000000000000000000000000000000000000000000000000060000000000000000000000000000000000000000000000000000000000000022000000000000000000000000000000000000000000000000000000000000002a000000000000000000000000000000000000000000000000000000000000001a000000000000000000000000000000000000000000000000000000000000000200000000000000000000000001af3f329e8be154074d8769d1ffa4ee058b1dbc300000000000000000000000000000000000000000000000000000000000000800000000000000000000000000000000000000000000000001216f0a8cfb11c0000000000000000000000000000000000000000000000000011bbc120d1ab75cf0000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000002000000000000000000000000055d398326f99059ff775485246999027b319795500000000000000000000000000000000000000000000000000000000000000640000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000a0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000600000000000000000000000001af3f329e8be154074d8769d1ffa4ee058b1dbc300000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000006000000000000000000000000055d398326f99059ff775485246999027b3197955000000000000000000000000c590175e458b83680867afd273527ff58f74c02b0000000000000000000000000000000000000000000000000000000000000000756e69780000b2c5de0b000000000000000000000000000000000000c100000000000000000000000000000000000000000000000000000000000000000000000000000055d398326f99059ff775485246999027b3197955000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000600000000000000000000000000000000000000000000000000000000000000044a9059cbb000000000000000000000000e3478b0bb1a5084567c319096437924948be196400000000000000000000000000000000000000000000000000c1178274cf423000000000000000000000000000000000000000000000000000000000c080a0399313380120ebd55bb958c9a0cd2da8fb043745978a52fa17b95c302866c556a07711827b0e60922c073563b28c6543bd3619d3a33a406386cc9326b0372fc0ac", - "s": "0x7711827b0e60922c073563b28c6543bd3619d3a33a406386cc9326b0372fc0ac", - "selectedGasFeeToken": "0x55d398326f99059ff775485246999027b3197955", - "status": "failed", - "time": 1778800886372, - "txParams": { - "data": "0xe9ae5c530101000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000004000000000000000000000000000000000000000000000000000000000000013600000000000000000000000000000000000000000000000000000000000000020000000000000000000000000000000000000000000000000000000000000000500000000000000000000000000000000000000000000000000000000000000a0000000000000000000000000000000000000000000000000000000000000018000000000000000000000000000000000000000000000000000000000000009e00000000000000000000000000000000000000000000000000000000000000ac00000000000000000000000000000000000000000000000000000000000001240000000000000000000000000f8a0bf9cf54bb92f17374d9e9a321e6a111a51bd000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000600000000000000000000000000000000000000000000000000000000000000044095ea7b30000000000000000000000001a1ec25dc08e98e5e93f1104b5e5cdd298707d310000000000000000000000000000000000000000000000000298348bed9600b7000000000000000000000000000000000000000000000000000000000000000000000000000000001a1ec25dc08e98e5e93f1104b5e5cdd298707d310000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000007c55f5755290000000000000000000000000000000000000000000000000000000000000080000000000000000000000000f8a0bf9cf54bb92f17374d9e9a321e6a111a51bd0000000000000000000000000000000000000000000000000298348bed9600b700000000000000000000000000000000000000000000000000000000000000c00000000000000000000000000000000000000000000000000000000000000018756e69737761705065726d69743246656544796e616d6963000000000000000000000000000000000000000000000000000000000000000000000000000006e0000000000000000000000000f8a0bf9cf54bb92f17374d9e9a321e6a111a51bd00000000000000000000000055d398326f99059ff775485246999027b31979550000000000000000000000000000000000000000000000000298348bed9600b70000000000000000000000000000000000000000000000001a85e40d6281a5430000000000000000000000000000000000000000000000000000000000000120000000000000000000000000000000000000000000000000003d28bf3b986359000000000000000000000000b28da7bc87a9dd1e60849aa7fcb5da24ea913c42000000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000000005ae3593564c000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000000a0000000000000000000000000000000000000000000000000000000006a065ff8000000000000000000000000000000000000000000000000000000000000000110000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000002000000000000000000000000000000000000000000000000000000000000004a0000000000000000000000000000000000000000000000000000000000000004000000000000000000000000000000000000000000000000000000000000000800000000000000000000000000000000000000000000000000000000000000003070b0e0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000300000000000000000000000000000000000000000000000000000000000000600000000000000000000000000000000000000000000000000000000000000300000000000000000000000000000000000000000000000000000000000000038000000000000000000000000000000000000000000000000000000000000002800000000000000000000000000000000000000000000000000000000000000020000000000000000000000000f8a0bf9cf54bb92f17374d9e9a321e6a111a51bd00000000000000000000000000000000000000000000000000000000000000800000000000000000000000000000000000000000000000000298348bed9600b70000000000000000000000000000000000000000000000001ac4915e06ffbdb00000000000000000000000000000000000000000000000000000000000000002000000000000000000000000000000000000000000000000000000000000004000000000000000000000000000000000000000000000000000000000000001000000000000000000000000008ac76a51cc950d9822d68b83fe1ad97b32cd580d0000000000000000000000000000000000000000000000000000000000000bb8000000000000000000000000000000000000000000000000000000000000003c000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000a0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000055d398326f99059ff775485246999027b319795500000000000000000000000000000000000000000000000000000000000000020000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000060000000000000000000000000f8a0bf9cf54bb92f17374d9e9a321e6a111a51bd00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000006000000000000000000000000055d398326f99059ff775485246999027b3197955000000000000000000000000c590175e458b83680867afd273527ff58f74c02b0000000000000000000000000000000000000000000000000000000000000000756e69780000b2c5de0b000000000000000000000000000000000000dc0000000000000000000000000000000000000000000000000000000000000000000000000000001af3f329e8be154074d8769d1ffa4ee058b1dbc3000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000600000000000000000000000000000000000000000000000000000000000000044095ea7b30000000000000000000000001a1ec25dc08e98e5e93f1104b5e5cdd298707d31000000000000000000000000000000000000000000000000123fd18867a38000000000000000000000000000000000000000000000000000000000000000000000000000000000001a1ec25dc08e98e5e93f1104b5e5cdd298707d310000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000006e55f57552900000000000000000000000000000000000000000000000000000000000000800000000000000000000000001af3f329e8be154074d8769d1ffa4ee058b1dbc3000000000000000000000000000000000000000000000000123fd18867a3800000000000000000000000000000000000000000000000000000000000000000c00000000000000000000000000000000000000000000000000000000000000018756e69737761705065726d69743246656544796e616d6963000000000000000000000000000000000000000000000000000000000000000000000000000006000000000000000000000000001af3f329e8be154074d8769d1ffa4ee058b1dbc300000000000000000000000055d398326f99059ff775485246999027b31979550000000000000000000000000000000000000000000000001216f0a8cfb11c0000000000000000000000000000000000000000000000000011b9f041e18f6fb800000000000000000000000000000000000000000000000000000000000001200000000000000000000000000000000000000000000000000028e0df97f26400000000000000000000000000b28da7bc87a9dd1e60849aa7fcb5da24ea913c42000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000004ce3593564c000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000000a0000000000000000000000000000000000000000000000000000000006a065ff7000000000000000000000000000000000000000000000000000000000000000110000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000002000000000000000000000000000000000000000000000000000000000000003c0000000000000000000000000000000000000000000000000000000000000004000000000000000000000000000000000000000000000000000000000000000800000000000000000000000000000000000000000000000000000000000000003070b0e000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000030000000000000000000000000000000000000000000000000000000000000060000000000000000000000000000000000000000000000000000000000000022000000000000000000000000000000000000000000000000000000000000002a000000000000000000000000000000000000000000000000000000000000001a000000000000000000000000000000000000000000000000000000000000000200000000000000000000000001af3f329e8be154074d8769d1ffa4ee058b1dbc300000000000000000000000000000000000000000000000000000000000000800000000000000000000000000000000000000000000000001216f0a8cfb11c0000000000000000000000000000000000000000000000000011bbc120d1ab75cf0000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000002000000000000000000000000055d398326f99059ff775485246999027b319795500000000000000000000000000000000000000000000000000000000000000640000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000a0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000600000000000000000000000001af3f329e8be154074d8769d1ffa4ee058b1dbc300000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000006000000000000000000000000055d398326f99059ff775485246999027b3197955000000000000000000000000c590175e458b83680867afd273527ff58f74c02b0000000000000000000000000000000000000000000000000000000000000000756e69780000b2c5de0b000000000000000000000000000000000000c100000000000000000000000000000000000000000000000000000000000000000000000000000055d398326f99059ff775485246999027b3197955000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000600000000000000000000000000000000000000000000000000000000000000044a9059cbb000000000000000000000000e3478b0bb1a5084567c319096437924948be196400000000000000000000000000000000000000000000000000c1178274cf423000000000000000000000000000000000000000000000000000000000", - "from": "0x141d32a89a1e0a5ef360034a2f60a4b917c18838", - "gas": "0x85bfd", - "gasLimit": "0x85bfd", - "maxFeePerGas": "0x3938700", - "maxPriorityFeePerGas": "0x3938700", - "nonce": "0x52", - "to": "0x141d32a89a1e0a5ef360034a2f60a4b917c18838", - "type": "0x2", - "value": "0x0" - }, - "type": "batch", - "userEditedGasLimit": false, - "userFeeLevel": "medium", - "v": "0x0", - "verifiedOnBlockchain": false - }, - { - "batchId": "0x19e28da83eb", - "chainId": "0x38", - "defaultGasEstimates": { - "estimateType": "medium", - "gas": "0x9221a", - "maxFeePerGas": "0x3e9bd50", - "maxPriorityFeePerGas": "0x3e9bd50" - }, - "delegationAddress": "0x63c0c19a282a1b52b07dd5a65b58948a07dae32b", - "error": { - "message": "Gas fee token not found and insufficient native balance", - "name": "Error", - "stack": "Error: Gas fee token not found and insufficient native balance\n at checkGasFeeTokenBeforePublish (chrome-extension://hebhblbkkdabgoldnojllkipeoacjioc/js-node_modules_metamask_s.js:50763:15)\n at async TransactionController._TransactionController_signTransaction (chrome-extension://hebhblbkkdabgoldnojllkipeoacjioc/js-node_modules_metamask_s.js:60276:5)\n at async TransactionController._TransactionController_approveTransaction (chrome-extension://hebhblbkkdabgoldnojllkipeoacjioc/js-node_modules_metamask_s.js:59945:23)\n at async TransactionController._TransactionController_processApproval (chrome-extension://hebhblbkkdabgoldnojllkipeoacjioc/js-node_modules_metamask_s.js:59854:40)\n at async addTransactionBatchWith7702 (chrome-extension://hebhblbkkdabgoldnojllkipeoacjioc/js-node_modules_metamask_s.js:41175:29)\n at async addTransactionBatch (chrome-extension://hebhblbkkdabgoldnojllkipeoacjioc/js-node_modules_metamask_s.js:40973:20)\n at async TransactionController.addTransactionBatch (chrome-extension://hebhblbkkdabgoldnojllkipeoacjioc/js-node_modules_metamask_s.js:58615:16)\n at async addTransactionBatch (chrome-extension://hebhblbkkdabgoldnojllkipeoacjioc/js-node_modules_metamask_a.js:67563:25)\n at async submitBatchSellHandler (chrome-extension://hebhblbkkdabgoldnojllkipeoacjioc/js-node_modules_metamask_a.js:20661:33)\n at async BridgeStatusController. (chrome-extension://hebhblbkkdabgoldnojllkipeoacjioc/js-node_modules_metamask_a.js:53097:46)" - }, - "excludeNativeTokenForFee": false, - "gasFeeEstimates": { - "high": { - "maxFeePerGas": "0x2faf080", - "maxPriorityFeePerGas": "0x2faf080" - }, - "low": { - "maxFeePerGas": "0x2faf080", - "maxPriorityFeePerGas": "0x2faf080" - }, - "medium": { - "maxFeePerGas": "0x2faf080", - "maxPriorityFeePerGas": "0x2faf080" - }, - "type": "fee-market" - }, - "gasFeeEstimatesLoaded": true, - "gasFeeTokens": [], - "gasLimitNoBuffer": "0x9221a", - "id": "620113f0-4fec-11f1-b881-ad9cf9533ddd", - "isExternalSign": true, - "isGasFeeIncluded": true, - "isGasFeeSponsored": false, - "isGasFeeTokenIgnoredIfBalance": true, - "nestedTransactions": [ - { - "data": "0x095ea7b30000000000000000000000001a1ec25dc08e98e5e93f1104b5e5cdd298707d310000000000000000000000000000000000000000000000000298348bed960080", - "from": "0x141d32a89a1e0a5ef360034a2f60a4b917c18838", - "gas": "0x110fa", - "maxFeePerGas": "0x3e9bd50", - "maxPriorityFeePerGas": "0x3e9bd50", - "to": "0xf8a0bf9cf54bb92f17374d9e9a321e6a111a51bd", - "type": "swapApproval", - "value": "0x0" - }, - { - "data": "0x5f5755290000000000000000000000000000000000000000000000000000000000000080000000000000000000000000f8a0bf9cf54bb92f17374d9e9a321e6a111a51bd0000000000000000000000000000000000000000000000000298348bed96008000000000000000000000000000000000000000000000000000000000000000c00000000000000000000000000000000000000000000000000000000000000018756e69737761705065726d69743246656544796e616d696300000000000000000000000000000000000000000000000000000000000000000000000000000360000000000000000000000000f8a0bf9cf54bb92f17374d9e9a321e6a111a51bd00000000000000000000000055d398326f99059ff775485246999027b31979550000000000000000000000000000000000000000000000000298348bed9600800000000000000000000000000000000000000000000000001a86be982e224be30000000000000000000000000000000000000000000000000000000000000120000000000000000000000000000000000000000000000000003d2ab72acc3ded000000000000000000000000b28da7bc87a9dd1e60849aa7fcb5da24ea913c420000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000022e3593564c000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000000a0000000000000000000000000000000000000000000000000000000006a06613e00000000000000000000000000000000000000000000000000000000000000010000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000000000200000000000000000000000000000000000000000000000000000000000000120000000000000000000000000c590175e458b83680867afd273527ff58f74c02b0000000000000000000000000000000000000000000000000298348bed9600800000000000000000000000000000000000000000000000001ac56ded43853bb200000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000000000000000000000000000000010000000000000000000000000000000000000000000000000000000000000042f8a0bf9cf54bb92f17374d9e9a321e6a111a51bd0001f42170ed0880ac9a755fd29b2688956bd959f933f80001f455d398326f99059ff775485246999027b3197955000000000000000000000000000000000000000000000000000000000000756e69780000b2c5de0b00000000000000000000000000000000000040", - "from": "0x141d32a89a1e0a5ef360034a2f60a4b917c18838", - "gas": "0x78ddc", - "maxFeePerGas": "0x3e9bd50", - "maxPriorityFeePerGas": "0x3e9bd50", - "to": "0x1a1ec25DC08e98e5E93F1104B5e5cdD298707d31", - "type": "swap", - "value": "0x0" - }, - { - "data": "0x095ea7b30000000000000000000000001a1ec25dc08e98e5e93f1104b5e5cdd298707d31000000000000000000000000000000000000000000000000123fd18867a38000", - "from": "0x141d32a89a1e0a5ef360034a2f60a4b917c18838", - "gas": "0x110fa", - "maxFeePerGas": "0x3e9bd50", - "maxPriorityFeePerGas": "0x3e9bd50", - "to": "0x1af3f329e8be154074d8769d1ffa4ee058b1dbc3", - "type": "swapApproval", - "value": "0x0" - }, - { - "data": "0x5f57552900000000000000000000000000000000000000000000000000000000000000800000000000000000000000001af3f329e8be154074d8769d1ffa4ee058b1dbc3000000000000000000000000000000000000000000000000123fd18867a3800000000000000000000000000000000000000000000000000000000000000000c0000000000000000000000000000000000000000000000000000000000000001b70616e63616b6553776170526f7574657246656544796e616d6963000000000000000000000000000000000000000000000000000000000000000000000002200000000000000000000000001af3f329e8be154074d8769d1ffa4ee058b1dbc300000000000000000000000055d398326f99059ff775485246999027b31979550000000000000000000000000000000000000000000000001216f0a8cfb11c0000000000000000000000000000000000000000000000000011b91279a85928a900000000000000000000000000000000000000000000000000000000000001200000000000000000000000000000000000000000000000000028e0df97f26400000000000000000000000000b28da7bc87a9dd1e60849aa7fcb5da24ea913c42000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000e404e45aaf0000000000000000000000001af3f329e8be154074d8769d1ffa4ee058b1dbc300000000000000000000000055d398326f99059ff775485246999027b31979550000000000000000000000000000000000000000000000000000000000000064000000000000000000000000c590175e458b83680867afd273527ff58f74c02b0000000000000000000000000000000000000000000000001216f0a8cfb11c0000000000000000000000000000000000000000000000000011bae341e03ef8390000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000008e", - "from": "0x141d32a89a1e0a5ef360034a2f60a4b917c18838", - "gas": "0x5b923", - "maxFeePerGas": "0x3e9bd50", - "maxPriorityFeePerGas": "0x3e9bd50", - "to": "0x1a1ec25DC08e98e5E93F1104B5e5cdD298707d31", - "type": "swap", - "value": "0x0" - }, - { - "data": "0xa9059cbb000000000000000000000000e3478b0bb1a5084567c319096437924948be196400000000000000000000000000000000000000000000000000d20fd457ceb729", - "from": "0x141d32a89a1e0a5ef360034a2f60a4b917c18838", - "gas": "0xcc57", - "maxFeePerGas": "0x3e9bd50", - "maxPriorityFeePerGas": "0x3e9bd50", - "to": "0x55d398326f99059ff775485246999027b3197955", - "type": "transfer", - "value": "0x0" - } - ], - "networkClientId": "9a1eafde-5f04-434b-b011-e9de5c50baf0", - "origin": "metamask", - "originalGasEstimate": "0x9221a", - "selectedGasFeeToken": "0x55d398326f99059ff775485246999027b3197955", - "status": "failed", - "time": 1778801210031, - "txParams": { - "data": "0xe9ae5c53010100000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000400000000000000000000000000000000000000000000000000000000000000c000000000000000000000000000000000000000000000000000000000000000020000000000000000000000000000000000000000000000000000000000000000500000000000000000000000000000000000000000000000000000000000000a00000000000000000000000000000000000000000000000000000000000000180000000000000000000000000000000000000000000000000000000000000066000000000000000000000000000000000000000000000000000000000000007400000000000000000000000000000000000000000000000000000000000000ae0000000000000000000000000f8a0bf9cf54bb92f17374d9e9a321e6a111a51bd000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000600000000000000000000000000000000000000000000000000000000000000044095ea7b30000000000000000000000001a1ec25dc08e98e5e93f1104b5e5cdd298707d310000000000000000000000000000000000000000000000000298348bed960080000000000000000000000000000000000000000000000000000000000000000000000000000000001a1ec25dc08e98e5e93f1104b5e5cdd298707d310000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000004455f5755290000000000000000000000000000000000000000000000000000000000000080000000000000000000000000f8a0bf9cf54bb92f17374d9e9a321e6a111a51bd0000000000000000000000000000000000000000000000000298348bed96008000000000000000000000000000000000000000000000000000000000000000c00000000000000000000000000000000000000000000000000000000000000018756e69737761705065726d69743246656544796e616d696300000000000000000000000000000000000000000000000000000000000000000000000000000360000000000000000000000000f8a0bf9cf54bb92f17374d9e9a321e6a111a51bd00000000000000000000000055d398326f99059ff775485246999027b31979550000000000000000000000000000000000000000000000000298348bed9600800000000000000000000000000000000000000000000000001a86be982e224be30000000000000000000000000000000000000000000000000000000000000120000000000000000000000000000000000000000000000000003d2ab72acc3ded000000000000000000000000b28da7bc87a9dd1e60849aa7fcb5da24ea913c420000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000022e3593564c000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000000a0000000000000000000000000000000000000000000000000000000006a06613e00000000000000000000000000000000000000000000000000000000000000010000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000000000200000000000000000000000000000000000000000000000000000000000000120000000000000000000000000c590175e458b83680867afd273527ff58f74c02b0000000000000000000000000000000000000000000000000298348bed9600800000000000000000000000000000000000000000000000001ac56ded43853bb200000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000000000000000000000000000000010000000000000000000000000000000000000000000000000000000000000042f8a0bf9cf54bb92f17374d9e9a321e6a111a51bd0001f42170ed0880ac9a755fd29b2688956bd959f933f80001f455d398326f99059ff775485246999027b3197955000000000000000000000000000000000000000000000000000000000000756e69780000b2c5de0b000000000000000000000000000000000000400000000000000000000000000000000000000000000000000000000000000000000000000000001af3f329e8be154074d8769d1ffa4ee058b1dbc3000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000600000000000000000000000000000000000000000000000000000000000000044095ea7b30000000000000000000000001a1ec25dc08e98e5e93f1104b5e5cdd298707d31000000000000000000000000000000000000000000000000123fd18867a38000000000000000000000000000000000000000000000000000000000000000000000000000000000001a1ec25dc08e98e5e93f1104b5e5cdd298707d310000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000003055f57552900000000000000000000000000000000000000000000000000000000000000800000000000000000000000001af3f329e8be154074d8769d1ffa4ee058b1dbc3000000000000000000000000000000000000000000000000123fd18867a3800000000000000000000000000000000000000000000000000000000000000000c0000000000000000000000000000000000000000000000000000000000000001b70616e63616b6553776170526f7574657246656544796e616d6963000000000000000000000000000000000000000000000000000000000000000000000002200000000000000000000000001af3f329e8be154074d8769d1ffa4ee058b1dbc300000000000000000000000055d398326f99059ff775485246999027b31979550000000000000000000000000000000000000000000000001216f0a8cfb11c0000000000000000000000000000000000000000000000000011b91279a85928a900000000000000000000000000000000000000000000000000000000000001200000000000000000000000000000000000000000000000000028e0df97f26400000000000000000000000000b28da7bc87a9dd1e60849aa7fcb5da24ea913c42000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000e404e45aaf0000000000000000000000001af3f329e8be154074d8769d1ffa4ee058b1dbc300000000000000000000000055d398326f99059ff775485246999027b31979550000000000000000000000000000000000000000000000000000000000000064000000000000000000000000c590175e458b83680867afd273527ff58f74c02b0000000000000000000000000000000000000000000000001216f0a8cfb11c0000000000000000000000000000000000000000000000000011bae341e03ef8390000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000008e00000000000000000000000000000000000000000000000000000000000000000000000000000055d398326f99059ff775485246999027b3197955000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000600000000000000000000000000000000000000000000000000000000000000044a9059cbb000000000000000000000000e3478b0bb1a5084567c319096437924948be196400000000000000000000000000000000000000000000000000d20fd457ceb72900000000000000000000000000000000000000000000000000000000", - "from": "0x141d32a89a1e0a5ef360034a2f60a4b917c18838", - "gas": "0x9221a", - "gasLimit": "0x9221a", - "maxFeePerGas": "0x3e9bd50", - "maxPriorityFeePerGas": "0x3e9bd50", - "to": "0x141d32a89a1e0a5ef360034a2f60a4b917c18838", - "type": "0x2", - "value": "0x0" - }, - "type": "batch", - "userEditedGasLimit": false, - "userFeeLevel": "medium", - "verifiedOnBlockchain": false - }, - { - "batchId": "0x19e28de1677", - "chainId": "0x38", - "defaultGasEstimates": { - "estimateType": "medium", - "gas": "0x9126d", - "maxFeePerGas": "0x3938700", - "maxPriorityFeePerGas": "0x3938700" - }, - "delegationAddress": "0x63c0c19a282a1b52b07dd5a65b58948a07dae32b", - "error": { - "message": "RPC submit: gas required exceeds allowance (421519)", - "name": "Error", - "stack": "Error: RPC submit: gas required exceeds allowance (421519)\n at TransactionController._TransactionController_publishTransaction (chrome-extension://hebhblbkkdabgoldnojllkipeoacjioc/js-node_modules_metamask_s.js:60041:15)\n at async chrome-extension://hebhblbkkdabgoldnojllkipeoacjioc/js-node_modules_metamask_s.js:60727:47\n at async TransactionController._TransactionController_defaultPublishHook (chrome-extension://hebhblbkkdabgoldnojllkipeoacjioc/js-node_modules_metamask_s.js:60720:5)\n at async TransactionController._TransactionController_approveTransaction (chrome-extension://hebhblbkkdabgoldnojllkipeoacjioc/js-node_modules_metamask_s.js:59991:43)\n at async TransactionController._TransactionController_processApproval (chrome-extension://hebhblbkkdabgoldnojllkipeoacjioc/js-node_modules_metamask_s.js:59854:40)\n at async addTransactionBatchWith7702 (chrome-extension://hebhblbkkdabgoldnojllkipeoacjioc/js-node_modules_metamask_s.js:41175:29)\n at async addTransactionBatch (chrome-extension://hebhblbkkdabgoldnojllkipeoacjioc/js-node_modules_metamask_s.js:40973:20)\n at async TransactionController.addTransactionBatch (chrome-extension://hebhblbkkdabgoldnojllkipeoacjioc/js-node_modules_metamask_s.js:58615:16)\n at async addTransactionBatch (chrome-extension://hebhblbkkdabgoldnojllkipeoacjioc/js-node_modules_metamask_a.js:67563:25)\n at async submitBatchSellHandler (chrome-extension://hebhblbkkdabgoldnojllkipeoacjioc/js-node_modules_metamask_a.js:20661:33)" - }, - "excludeNativeTokenForFee": true, - "gasFeeEstimates": { - "high": { - "maxFeePerGas": "0x2faf080", - "maxPriorityFeePerGas": "0x2faf080" - }, - "low": { - "maxFeePerGas": "0x2faf080", - "maxPriorityFeePerGas": "0x2faf080" - }, - "medium": { - "maxFeePerGas": "0x2faf080", - "maxPriorityFeePerGas": "0x2faf080" - }, - "type": "fee-market" - }, - "gasFeeEstimatesLoaded": true, - "gasLimitNoBuffer": "0x9126d", - "id": "4c792fd0-4fed-11f1-abe9-0fa9cf6d3f73", - "isGasFeeIncluded": true, - "isGasFeeSponsored": false, - "isGasFeeTokenIgnoredIfBalance": false, - "nestedTransactions": [ - { - "data": "0x095ea7b30000000000000000000000001a1ec25dc08e98e5e93f1104b5e5cdd298707d310000000000000000000000000000000000000000000000000298348bed9600b7", - "from": "0x141d32a89a1e0a5ef360034a2f60a4b917c18838", - "gas": "0x110fa", - "maxFeePerGas": "0x3938700", - "maxPriorityFeePerGas": "0x3938700", - "to": "0xf8a0bf9cf54bb92f17374d9e9a321e6a111a51bd", - "type": "swapApproval", - "value": "0x0" - }, - { - "data": "0x5f5755290000000000000000000000000000000000000000000000000000000000000080000000000000000000000000f8a0bf9cf54bb92f17374d9e9a321e6a111a51bd0000000000000000000000000000000000000000000000000298348bed9600b700000000000000000000000000000000000000000000000000000000000000c00000000000000000000000000000000000000000000000000000000000000018756e69737761705065726d69743246656544796e616d696300000000000000000000000000000000000000000000000000000000000000000000000000000360000000000000000000000000f8a0bf9cf54bb92f17374d9e9a321e6a111a51bd00000000000000000000000055d398326f99059ff775485246999027b31979550000000000000000000000000000000000000000000000000298348bed9600b70000000000000000000000000000000000000000000000001a8b86cbfecb2ce30000000000000000000000000000000000000000000000000000000000000120000000000000000000000000000000000000000000000000003d35be0b5588ae000000000000000000000000b28da7bc87a9dd1e60849aa7fcb5da24ea913c420000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000022e3593564c000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000000a0000000000000000000000000000000000000000000000000000000006a0662c900000000000000000000000000000000000000000000000000000000000000010000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000000000200000000000000000000000000000000000000000000000000000000000000120000000000000000000000000c590175e458b83680867afd273527ff58f74c02b0000000000000000000000000000000000000000000000000298348bed9600b70000000000000000000000000000000000000000000000001aca416e038dbfea00000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000000000000000000000000000000010000000000000000000000000000000000000000000000000000000000000042f8a0bf9cf54bb92f17374d9e9a321e6a111a51bd0001f42170ed0880ac9a755fd29b2688956bd959f933f80001f455d398326f99059ff775485246999027b3197955000000000000000000000000000000000000000000000000000000000000756e69780000b2c5de0b000000000000000000000000000000000000ee", - "from": "0x141d32a89a1e0a5ef360034a2f60a4b917c18838", - "gas": "0x78df5", - "maxFeePerGas": "0x3938700", - "maxPriorityFeePerGas": "0x3938700", - "to": "0x1a1ec25DC08e98e5E93F1104B5e5cdD298707d31", - "type": "swap", - "value": "0x0" - }, - { - "data": "0x095ea7b30000000000000000000000001a1ec25dc08e98e5e93f1104b5e5cdd298707d31000000000000000000000000000000000000000000000000123fd18867a38000", - "from": "0x141d32a89a1e0a5ef360034a2f60a4b917c18838", - "gas": "0x110fa", - "maxFeePerGas": "0x3938700", - "maxPriorityFeePerGas": "0x3938700", - "to": "0x1af3f329e8be154074d8769d1ffa4ee058b1dbc3", - "type": "swapApproval", - "value": "0x0" - }, - { - "data": "0x5f57552900000000000000000000000000000000000000000000000000000000000000800000000000000000000000001af3f329e8be154074d8769d1ffa4ee058b1dbc3000000000000000000000000000000000000000000000000123fd18867a3800000000000000000000000000000000000000000000000000000000000000000c00000000000000000000000000000000000000000000000000000000000000018756e69737761705065726d69743246656544796e616d6963000000000000000000000000000000000000000000000000000000000000000000000000000006000000000000000000000000001af3f329e8be154074d8769d1ffa4ee058b1dbc300000000000000000000000055d398326f99059ff775485246999027b31979550000000000000000000000000000000000000000000000001216f0a8cfb11c0000000000000000000000000000000000000000000000000011b9f010ce44ebae00000000000000000000000000000000000000000000000000000000000001200000000000000000000000000000000000000000000000000028e0df97f26400000000000000000000000000b28da7bc87a9dd1e60849aa7fcb5da24ea913c42000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000004ce3593564c000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000000a0000000000000000000000000000000000000000000000000000000006a0662c6000000000000000000000000000000000000000000000000000000000000000110000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000002000000000000000000000000000000000000000000000000000000000000003c0000000000000000000000000000000000000000000000000000000000000004000000000000000000000000000000000000000000000000000000000000000800000000000000000000000000000000000000000000000000000000000000003070b0e000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000030000000000000000000000000000000000000000000000000000000000000060000000000000000000000000000000000000000000000000000000000000022000000000000000000000000000000000000000000000000000000000000002a000000000000000000000000000000000000000000000000000000000000001a000000000000000000000000000000000000000000000000000000000000000200000000000000000000000001af3f329e8be154074d8769d1ffa4ee058b1dbc300000000000000000000000000000000000000000000000000000000000000800000000000000000000000000000000000000000000000001216f0a8cfb11c0000000000000000000000000000000000000000000000000011bbc0efb959f2d70000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000002000000000000000000000000055d398326f99059ff775485246999027b319795500000000000000000000000000000000000000000000000000000000000000640000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000a0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000600000000000000000000000001af3f329e8be154074d8769d1ffa4ee058b1dbc300000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000006000000000000000000000000055d398326f99059ff775485246999027b3197955000000000000000000000000c590175e458b83680867afd273527ff58f74c02b0000000000000000000000000000000000000000000000000000000000000000756e69780000b2c5de0b00000000000000000000000000000000000065", - "from": "0x141d32a89a1e0a5ef360034a2f60a4b917c18838", - "gas": "0x5d0e7", - "maxFeePerGas": "0x3938700", - "maxPriorityFeePerGas": "0x3938700", - "to": "0x1a1ec25DC08e98e5E93F1104B5e5cdD298707d31", - "type": "swap", - "value": "0x0" - }, - { - "data": "0xa9059cbb000000000000000000000000e3478b0bb1a5084567c319096437924948be196400000000000000000000000000000000000000000000000000c5ed1180aa5e51", - "from": "0x141d32a89a1e0a5ef360034a2f60a4b917c18838", - "gas": "0xcc57", - "maxFeePerGas": "0x3938700", - "maxPriorityFeePerGas": "0x3938700", - "to": "0x55d398326f99059ff775485246999027b3197955", - "type": "transfer", - "value": "0x0" - } - ], - "networkClientId": "9a1eafde-5f04-434b-b011-e9de5c50baf0", - "origin": "metamask", - "originalGasEstimate": "0x9126d", - "r": "0x5b3fa75c4e562381359726d3ba754f5ecfa6005f6aa03c428c5dc2431735c047", - "rawTx": "0x02f910b13852840393870084039387008309126d94141d32a89a1e0a5ef360034a2f60a4b917c1883880b91044e9ae5c53010100000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000400000000000000000000000000000000000000000000000000000000000000fe00000000000000000000000000000000000000000000000000000000000000020000000000000000000000000000000000000000000000000000000000000000500000000000000000000000000000000000000000000000000000000000000a00000000000000000000000000000000000000000000000000000000000000180000000000000000000000000000000000000000000000000000000000000066000000000000000000000000000000000000000000000000000000000000007400000000000000000000000000000000000000000000000000000000000000ec0000000000000000000000000f8a0bf9cf54bb92f17374d9e9a321e6a111a51bd000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000600000000000000000000000000000000000000000000000000000000000000044095ea7b30000000000000000000000001a1ec25dc08e98e5e93f1104b5e5cdd298707d310000000000000000000000000000000000000000000000000298348bed9600b7000000000000000000000000000000000000000000000000000000000000000000000000000000001a1ec25dc08e98e5e93f1104b5e5cdd298707d310000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000004455f5755290000000000000000000000000000000000000000000000000000000000000080000000000000000000000000f8a0bf9cf54bb92f17374d9e9a321e6a111a51bd0000000000000000000000000000000000000000000000000298348bed9600b700000000000000000000000000000000000000000000000000000000000000c00000000000000000000000000000000000000000000000000000000000000018756e69737761705065726d69743246656544796e616d696300000000000000000000000000000000000000000000000000000000000000000000000000000360000000000000000000000000f8a0bf9cf54bb92f17374d9e9a321e6a111a51bd00000000000000000000000055d398326f99059ff775485246999027b31979550000000000000000000000000000000000000000000000000298348bed9600b70000000000000000000000000000000000000000000000001a8b86cbfecb2ce30000000000000000000000000000000000000000000000000000000000000120000000000000000000000000000000000000000000000000003d35be0b5588ae000000000000000000000000b28da7bc87a9dd1e60849aa7fcb5da24ea913c420000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000022e3593564c000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000000a0000000000000000000000000000000000000000000000000000000006a0662c900000000000000000000000000000000000000000000000000000000000000010000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000000000200000000000000000000000000000000000000000000000000000000000000120000000000000000000000000c590175e458b83680867afd273527ff58f74c02b0000000000000000000000000000000000000000000000000298348bed9600b70000000000000000000000000000000000000000000000001aca416e038dbfea00000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000000000000000000000000000000010000000000000000000000000000000000000000000000000000000000000042f8a0bf9cf54bb92f17374d9e9a321e6a111a51bd0001f42170ed0880ac9a755fd29b2688956bd959f933f80001f455d398326f99059ff775485246999027b3197955000000000000000000000000000000000000000000000000000000000000756e69780000b2c5de0b000000000000000000000000000000000000ee0000000000000000000000000000000000000000000000000000000000000000000000000000001af3f329e8be154074d8769d1ffa4ee058b1dbc3000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000600000000000000000000000000000000000000000000000000000000000000044095ea7b30000000000000000000000001a1ec25dc08e98e5e93f1104b5e5cdd298707d31000000000000000000000000000000000000000000000000123fd18867a38000000000000000000000000000000000000000000000000000000000000000000000000000000000001a1ec25dc08e98e5e93f1104b5e5cdd298707d310000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000006e55f57552900000000000000000000000000000000000000000000000000000000000000800000000000000000000000001af3f329e8be154074d8769d1ffa4ee058b1dbc3000000000000000000000000000000000000000000000000123fd18867a3800000000000000000000000000000000000000000000000000000000000000000c00000000000000000000000000000000000000000000000000000000000000018756e69737761705065726d69743246656544796e616d6963000000000000000000000000000000000000000000000000000000000000000000000000000006000000000000000000000000001af3f329e8be154074d8769d1ffa4ee058b1dbc300000000000000000000000055d398326f99059ff775485246999027b31979550000000000000000000000000000000000000000000000001216f0a8cfb11c0000000000000000000000000000000000000000000000000011b9f010ce44ebae00000000000000000000000000000000000000000000000000000000000001200000000000000000000000000000000000000000000000000028e0df97f26400000000000000000000000000b28da7bc87a9dd1e60849aa7fcb5da24ea913c42000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000004ce3593564c000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000000a0000000000000000000000000000000000000000000000000000000006a0662c6000000000000000000000000000000000000000000000000000000000000000110000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000002000000000000000000000000000000000000000000000000000000000000003c0000000000000000000000000000000000000000000000000000000000000004000000000000000000000000000000000000000000000000000000000000000800000000000000000000000000000000000000000000000000000000000000003070b0e000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000030000000000000000000000000000000000000000000000000000000000000060000000000000000000000000000000000000000000000000000000000000022000000000000000000000000000000000000000000000000000000000000002a000000000000000000000000000000000000000000000000000000000000001a000000000000000000000000000000000000000000000000000000000000000200000000000000000000000001af3f329e8be154074d8769d1ffa4ee058b1dbc300000000000000000000000000000000000000000000000000000000000000800000000000000000000000000000000000000000000000001216f0a8cfb11c0000000000000000000000000000000000000000000000000011bbc0efb959f2d70000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000002000000000000000000000000055d398326f99059ff775485246999027b319795500000000000000000000000000000000000000000000000000000000000000640000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000a0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000600000000000000000000000001af3f329e8be154074d8769d1ffa4ee058b1dbc300000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000006000000000000000000000000055d398326f99059ff775485246999027b3197955000000000000000000000000c590175e458b83680867afd273527ff58f74c02b0000000000000000000000000000000000000000000000000000000000000000756e69780000b2c5de0b0000000000000000000000000000000000006500000000000000000000000000000000000000000000000000000000000000000000000000000055d398326f99059ff775485246999027b3197955000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000600000000000000000000000000000000000000000000000000000000000000044a9059cbb000000000000000000000000e3478b0bb1a5084567c319096437924948be196400000000000000000000000000000000000000000000000000c5ed1180aa5e5100000000000000000000000000000000000000000000000000000000c080a05b3fa75c4e562381359726d3ba754f5ecfa6005f6aa03c428c5dc2431735c047a06b99a9dec1c65ad36e38ff265251fa79655b05117b8e9599c8b5a94b8bc66df9", - "s": "0x6b99a9dec1c65ad36e38ff265251fa79655b05117b8e9599c8b5a94b8bc66df9", - "selectedGasFeeToken": "0x55d398326f99059ff775485246999027b3197955", - "status": "failed", - "time": 1778801603405, - "txParams": { - "data": "0xe9ae5c53010100000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000400000000000000000000000000000000000000000000000000000000000000fe00000000000000000000000000000000000000000000000000000000000000020000000000000000000000000000000000000000000000000000000000000000500000000000000000000000000000000000000000000000000000000000000a00000000000000000000000000000000000000000000000000000000000000180000000000000000000000000000000000000000000000000000000000000066000000000000000000000000000000000000000000000000000000000000007400000000000000000000000000000000000000000000000000000000000000ec0000000000000000000000000f8a0bf9cf54bb92f17374d9e9a321e6a111a51bd000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000600000000000000000000000000000000000000000000000000000000000000044095ea7b30000000000000000000000001a1ec25dc08e98e5e93f1104b5e5cdd298707d310000000000000000000000000000000000000000000000000298348bed9600b7000000000000000000000000000000000000000000000000000000000000000000000000000000001a1ec25dc08e98e5e93f1104b5e5cdd298707d310000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000004455f5755290000000000000000000000000000000000000000000000000000000000000080000000000000000000000000f8a0bf9cf54bb92f17374d9e9a321e6a111a51bd0000000000000000000000000000000000000000000000000298348bed9600b700000000000000000000000000000000000000000000000000000000000000c00000000000000000000000000000000000000000000000000000000000000018756e69737761705065726d69743246656544796e616d696300000000000000000000000000000000000000000000000000000000000000000000000000000360000000000000000000000000f8a0bf9cf54bb92f17374d9e9a321e6a111a51bd00000000000000000000000055d398326f99059ff775485246999027b31979550000000000000000000000000000000000000000000000000298348bed9600b70000000000000000000000000000000000000000000000001a8b86cbfecb2ce30000000000000000000000000000000000000000000000000000000000000120000000000000000000000000000000000000000000000000003d35be0b5588ae000000000000000000000000b28da7bc87a9dd1e60849aa7fcb5da24ea913c420000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000022e3593564c000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000000a0000000000000000000000000000000000000000000000000000000006a0662c900000000000000000000000000000000000000000000000000000000000000010000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000000000200000000000000000000000000000000000000000000000000000000000000120000000000000000000000000c590175e458b83680867afd273527ff58f74c02b0000000000000000000000000000000000000000000000000298348bed9600b70000000000000000000000000000000000000000000000001aca416e038dbfea00000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000000000000000000000000000000010000000000000000000000000000000000000000000000000000000000000042f8a0bf9cf54bb92f17374d9e9a321e6a111a51bd0001f42170ed0880ac9a755fd29b2688956bd959f933f80001f455d398326f99059ff775485246999027b3197955000000000000000000000000000000000000000000000000000000000000756e69780000b2c5de0b000000000000000000000000000000000000ee0000000000000000000000000000000000000000000000000000000000000000000000000000001af3f329e8be154074d8769d1ffa4ee058b1dbc3000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000600000000000000000000000000000000000000000000000000000000000000044095ea7b30000000000000000000000001a1ec25dc08e98e5e93f1104b5e5cdd298707d31000000000000000000000000000000000000000000000000123fd18867a38000000000000000000000000000000000000000000000000000000000000000000000000000000000001a1ec25dc08e98e5e93f1104b5e5cdd298707d310000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000006e55f57552900000000000000000000000000000000000000000000000000000000000000800000000000000000000000001af3f329e8be154074d8769d1ffa4ee058b1dbc3000000000000000000000000000000000000000000000000123fd18867a3800000000000000000000000000000000000000000000000000000000000000000c00000000000000000000000000000000000000000000000000000000000000018756e69737761705065726d69743246656544796e616d6963000000000000000000000000000000000000000000000000000000000000000000000000000006000000000000000000000000001af3f329e8be154074d8769d1ffa4ee058b1dbc300000000000000000000000055d398326f99059ff775485246999027b31979550000000000000000000000000000000000000000000000001216f0a8cfb11c0000000000000000000000000000000000000000000000000011b9f010ce44ebae00000000000000000000000000000000000000000000000000000000000001200000000000000000000000000000000000000000000000000028e0df97f26400000000000000000000000000b28da7bc87a9dd1e60849aa7fcb5da24ea913c42000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000004ce3593564c000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000000a0000000000000000000000000000000000000000000000000000000006a0662c6000000000000000000000000000000000000000000000000000000000000000110000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000002000000000000000000000000000000000000000000000000000000000000003c0000000000000000000000000000000000000000000000000000000000000004000000000000000000000000000000000000000000000000000000000000000800000000000000000000000000000000000000000000000000000000000000003070b0e000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000030000000000000000000000000000000000000000000000000000000000000060000000000000000000000000000000000000000000000000000000000000022000000000000000000000000000000000000000000000000000000000000002a000000000000000000000000000000000000000000000000000000000000001a000000000000000000000000000000000000000000000000000000000000000200000000000000000000000001af3f329e8be154074d8769d1ffa4ee058b1dbc300000000000000000000000000000000000000000000000000000000000000800000000000000000000000000000000000000000000000001216f0a8cfb11c0000000000000000000000000000000000000000000000000011bbc0efb959f2d70000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000002000000000000000000000000055d398326f99059ff775485246999027b319795500000000000000000000000000000000000000000000000000000000000000640000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000a0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000600000000000000000000000001af3f329e8be154074d8769d1ffa4ee058b1dbc300000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000006000000000000000000000000055d398326f99059ff775485246999027b3197955000000000000000000000000c590175e458b83680867afd273527ff58f74c02b0000000000000000000000000000000000000000000000000000000000000000756e69780000b2c5de0b0000000000000000000000000000000000006500000000000000000000000000000000000000000000000000000000000000000000000000000055d398326f99059ff775485246999027b3197955000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000600000000000000000000000000000000000000000000000000000000000000044a9059cbb000000000000000000000000e3478b0bb1a5084567c319096437924948be196400000000000000000000000000000000000000000000000000c5ed1180aa5e5100000000000000000000000000000000000000000000000000000000", - "from": "0x141d32a89a1e0a5ef360034a2f60a4b917c18838", - "gas": "0x9126d", - "gasLimit": "0x9126d", - "maxFeePerGas": "0x3938700", - "maxPriorityFeePerGas": "0x3938700", - "nonce": "0x52", - "to": "0x141d32a89a1e0a5ef360034a2f60a4b917c18838", - "type": "0x2", - "value": "0x0" - }, - "type": "batch", - "userEditedGasLimit": false, - "userFeeLevel": "medium", - "v": "0x0", - "verifiedOnBlockchain": false - }, - { - "batchId": "0x19e28df3b3c", - "chainId": "0x38", - "defaultGasEstimates": { - "estimateType": "medium", - "gas": "0x91279", - "maxFeePerGas": "0x3938700", - "maxPriorityFeePerGas": "0x3938700" - }, - "delegationAddress": "0x63c0c19a282a1b52b07dd5a65b58948a07dae32b", - "error": { - "message": "RPC submit: gas required exceeds allowance (421519)", - "name": "Error", - "stack": "Error: RPC submit: gas required exceeds allowance (421519)\n at TransactionController._TransactionController_publishTransaction (chrome-extension://hebhblbkkdabgoldnojllkipeoacjioc/js-node_modules_metamask_s.js:60041:15)\n at async chrome-extension://hebhblbkkdabgoldnojllkipeoacjioc/js-node_modules_metamask_s.js:60727:47\n at async TransactionController._TransactionController_defaultPublishHook (chrome-extension://hebhblbkkdabgoldnojllkipeoacjioc/js-node_modules_metamask_s.js:60720:5)\n at async TransactionController._TransactionController_approveTransaction (chrome-extension://hebhblbkkdabgoldnojllkipeoacjioc/js-node_modules_metamask_s.js:59991:43)\n at async TransactionController._TransactionController_processApproval (chrome-extension://hebhblbkkdabgoldnojllkipeoacjioc/js-node_modules_metamask_s.js:59854:40)\n at async addTransactionBatchWith7702 (chrome-extension://hebhblbkkdabgoldnojllkipeoacjioc/js-node_modules_metamask_s.js:41175:29)\n at async addTransactionBatch (chrome-extension://hebhblbkkdabgoldnojllkipeoacjioc/js-node_modules_metamask_s.js:40973:20)\n at async TransactionController.addTransactionBatch (chrome-extension://hebhblbkkdabgoldnojllkipeoacjioc/js-node_modules_metamask_s.js:58615:16)\n at async addTransactionBatch (chrome-extension://hebhblbkkdabgoldnojllkipeoacjioc/js-node_modules_metamask_a.js:67563:25)\n at async submitBatchSellHandler (chrome-extension://hebhblbkkdabgoldnojllkipeoacjioc/js-node_modules_metamask_a.js:20661:33)" - }, - "excludeNativeTokenForFee": true, - "gasFeeEstimates": { - "high": { - "maxFeePerGas": "0x2faf080", - "maxPriorityFeePerGas": "0x2faf080" - }, - "low": { - "maxFeePerGas": "0x2faf080", - "maxPriorityFeePerGas": "0x2faf080" - }, - "medium": { - "maxFeePerGas": "0x2faf080", - "maxPriorityFeePerGas": "0x2faf080" - }, - "type": "fee-market" - }, - "gasFeeEstimatesLoaded": true, - "gasLimitNoBuffer": "0x91279", - "id": "6faae430-4fed-11f1-83ab-2144928c92c4", - "isGasFeeIncluded": true, - "isGasFeeSponsored": false, - "isGasFeeTokenIgnoredIfBalance": false, - "nestedTransactions": [ - { - "data": "0x095ea7b30000000000000000000000001a1ec25dc08e98e5e93f1104b5e5cdd298707d310000000000000000000000000000000000000000000000000298348bed9600b7", - "from": "0x141d32a89a1e0a5ef360034a2f60a4b917c18838", - "gas": "0x110fa", - "maxFeePerGas": "0x3938700", - "maxPriorityFeePerGas": "0x3938700", - "to": "0xf8a0bf9cf54bb92f17374d9e9a321e6a111a51bd", - "type": "swapApproval", - "value": "0x0" - }, - { - "data": "0x5f5755290000000000000000000000000000000000000000000000000000000000000080000000000000000000000000f8a0bf9cf54bb92f17374d9e9a321e6a111a51bd0000000000000000000000000000000000000000000000000298348bed9600b700000000000000000000000000000000000000000000000000000000000000c00000000000000000000000000000000000000000000000000000000000000018756e69737761705065726d69743246656544796e616d696300000000000000000000000000000000000000000000000000000000000000000000000000000360000000000000000000000000f8a0bf9cf54bb92f17374d9e9a321e6a111a51bd00000000000000000000000055d398326f99059ff775485246999027b31979550000000000000000000000000000000000000000000000000298348bed9600b70000000000000000000000000000000000000000000000001a8ad845eef94ec00000000000000000000000000000000000000000000000000000000000000120000000000000000000000000000000000000000000000000003d342b9c99e188000000000000000000000000b28da7bc87a9dd1e60849aa7fcb5da24ea913c420000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000022e3593564c000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000000a0000000000000000000000000000000000000000000000000000000006a06630200000000000000000000000000000000000000000000000000000000000000010000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000000000200000000000000000000000000000000000000000000000000000000000000120000000000000000000000000c590175e458b83680867afd273527ff58f74c02b0000000000000000000000000000000000000000000000000298348bed9600b70000000000000000000000000000000000000000000000001ac9914b8830b19300000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000000000000000000000000000000010000000000000000000000000000000000000000000000000000000000000042f8a0bf9cf54bb92f17374d9e9a321e6a111a51bd0001f42170ed0880ac9a755fd29b2688956bd959f933f80001f455d398326f99059ff775485246999027b3197955000000000000000000000000000000000000000000000000000000000000756e69780000b2c5de0b0000000000000000000000000000000000008c", - "from": "0x141d32a89a1e0a5ef360034a2f60a4b917c18838", - "gas": "0x78e07", - "maxFeePerGas": "0x3938700", - "maxPriorityFeePerGas": "0x3938700", - "to": "0x1a1ec25DC08e98e5E93F1104B5e5cdD298707d31", - "type": "swap", - "value": "0x0" - }, - { - "data": "0x095ea7b30000000000000000000000001a1ec25dc08e98e5e93f1104b5e5cdd298707d31000000000000000000000000000000000000000000000000123fd18867a38000", - "from": "0x141d32a89a1e0a5ef360034a2f60a4b917c18838", - "gas": "0x110fa", - "maxFeePerGas": "0x3938700", - "maxPriorityFeePerGas": "0x3938700", - "to": "0x1af3f329e8be154074d8769d1ffa4ee058b1dbc3", - "type": "swapApproval", - "value": "0x0" - }, - { - "data": "0x5f57552900000000000000000000000000000000000000000000000000000000000000800000000000000000000000001af3f329e8be154074d8769d1ffa4ee058b1dbc3000000000000000000000000000000000000000000000000123fd18867a3800000000000000000000000000000000000000000000000000000000000000000c00000000000000000000000000000000000000000000000000000000000000018756e69737761705065726d69743246656544796e616d6963000000000000000000000000000000000000000000000000000000000000000000000000000006000000000000000000000000001af3f329e8be154074d8769d1ffa4ee058b1dbc300000000000000000000000055d398326f99059ff775485246999027b31979550000000000000000000000000000000000000000000000001216f0a8cfb11c0000000000000000000000000000000000000000000000000011b9f010ce44ebae00000000000000000000000000000000000000000000000000000000000001200000000000000000000000000000000000000000000000000028e0df97f26400000000000000000000000000b28da7bc87a9dd1e60849aa7fcb5da24ea913c42000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000004ce3593564c000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000000a0000000000000000000000000000000000000000000000000000000006a066301000000000000000000000000000000000000000000000000000000000000000110000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000002000000000000000000000000000000000000000000000000000000000000003c0000000000000000000000000000000000000000000000000000000000000004000000000000000000000000000000000000000000000000000000000000000800000000000000000000000000000000000000000000000000000000000000003070b0e000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000030000000000000000000000000000000000000000000000000000000000000060000000000000000000000000000000000000000000000000000000000000022000000000000000000000000000000000000000000000000000000000000002a000000000000000000000000000000000000000000000000000000000000001a000000000000000000000000000000000000000000000000000000000000000200000000000000000000000001af3f329e8be154074d8769d1ffa4ee058b1dbc300000000000000000000000000000000000000000000000000000000000000800000000000000000000000000000000000000000000000001216f0a8cfb11c0000000000000000000000000000000000000000000000000011bbc0efb959f2d70000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000002000000000000000000000000055d398326f99059ff775485246999027b319795500000000000000000000000000000000000000000000000000000000000000640000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000a0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000600000000000000000000000001af3f329e8be154074d8769d1ffa4ee058b1dbc300000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000006000000000000000000000000055d398326f99059ff775485246999027b3197955000000000000000000000000c590175e458b83680867afd273527ff58f74c02b0000000000000000000000000000000000000000000000000000000000000000756e69780000b2c5de0b00000000000000000000000000000000000026", - "from": "0x141d32a89a1e0a5ef360034a2f60a4b917c18838", - "gas": "0x5d0e7", - "maxFeePerGas": "0x3938700", - "maxPriorityFeePerGas": "0x3938700", - "to": "0x1a1ec25DC08e98e5E93F1104B5e5cdD298707d31", - "type": "swap", - "value": "0x0" - }, - { - "data": "0xa9059cbb000000000000000000000000e3478b0bb1a5084567c319096437924948be196400000000000000000000000000000000000000000000000000c5ee5d2a939498", - "from": "0x141d32a89a1e0a5ef360034a2f60a4b917c18838", - "gas": "0xcc57", - "maxFeePerGas": "0x3938700", - "maxPriorityFeePerGas": "0x3938700", - "to": "0x55d398326f99059ff775485246999027b3197955", - "type": "transfer", - "value": "0x0" - } - ], - "networkClientId": "9a1eafde-5f04-434b-b011-e9de5c50baf0", - "origin": "metamask", - "originalGasEstimate": "0x91279", - "r": "0x1ebc02e7f944a62377155328a460e818672500e4710fd68e694d4526b3a24c5e", - "rawTx": "0x02f910b13852840393870084039387008309127994141d32a89a1e0a5ef360034a2f60a4b917c1883880b91044e9ae5c53010100000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000400000000000000000000000000000000000000000000000000000000000000fe00000000000000000000000000000000000000000000000000000000000000020000000000000000000000000000000000000000000000000000000000000000500000000000000000000000000000000000000000000000000000000000000a00000000000000000000000000000000000000000000000000000000000000180000000000000000000000000000000000000000000000000000000000000066000000000000000000000000000000000000000000000000000000000000007400000000000000000000000000000000000000000000000000000000000000ec0000000000000000000000000f8a0bf9cf54bb92f17374d9e9a321e6a111a51bd000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000600000000000000000000000000000000000000000000000000000000000000044095ea7b30000000000000000000000001a1ec25dc08e98e5e93f1104b5e5cdd298707d310000000000000000000000000000000000000000000000000298348bed9600b7000000000000000000000000000000000000000000000000000000000000000000000000000000001a1ec25dc08e98e5e93f1104b5e5cdd298707d310000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000004455f5755290000000000000000000000000000000000000000000000000000000000000080000000000000000000000000f8a0bf9cf54bb92f17374d9e9a321e6a111a51bd0000000000000000000000000000000000000000000000000298348bed9600b700000000000000000000000000000000000000000000000000000000000000c00000000000000000000000000000000000000000000000000000000000000018756e69737761705065726d69743246656544796e616d696300000000000000000000000000000000000000000000000000000000000000000000000000000360000000000000000000000000f8a0bf9cf54bb92f17374d9e9a321e6a111a51bd00000000000000000000000055d398326f99059ff775485246999027b31979550000000000000000000000000000000000000000000000000298348bed9600b70000000000000000000000000000000000000000000000001a8ad845eef94ec00000000000000000000000000000000000000000000000000000000000000120000000000000000000000000000000000000000000000000003d342b9c99e188000000000000000000000000b28da7bc87a9dd1e60849aa7fcb5da24ea913c420000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000022e3593564c000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000000a0000000000000000000000000000000000000000000000000000000006a06630200000000000000000000000000000000000000000000000000000000000000010000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000000000200000000000000000000000000000000000000000000000000000000000000120000000000000000000000000c590175e458b83680867afd273527ff58f74c02b0000000000000000000000000000000000000000000000000298348bed9600b70000000000000000000000000000000000000000000000001ac9914b8830b19300000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000000000000000000000000000000010000000000000000000000000000000000000000000000000000000000000042f8a0bf9cf54bb92f17374d9e9a321e6a111a51bd0001f42170ed0880ac9a755fd29b2688956bd959f933f80001f455d398326f99059ff775485246999027b3197955000000000000000000000000000000000000000000000000000000000000756e69780000b2c5de0b0000000000000000000000000000000000008c0000000000000000000000000000000000000000000000000000000000000000000000000000001af3f329e8be154074d8769d1ffa4ee058b1dbc3000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000600000000000000000000000000000000000000000000000000000000000000044095ea7b30000000000000000000000001a1ec25dc08e98e5e93f1104b5e5cdd298707d31000000000000000000000000000000000000000000000000123fd18867a38000000000000000000000000000000000000000000000000000000000000000000000000000000000001a1ec25dc08e98e5e93f1104b5e5cdd298707d310000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000006e55f57552900000000000000000000000000000000000000000000000000000000000000800000000000000000000000001af3f329e8be154074d8769d1ffa4ee058b1dbc3000000000000000000000000000000000000000000000000123fd18867a3800000000000000000000000000000000000000000000000000000000000000000c00000000000000000000000000000000000000000000000000000000000000018756e69737761705065726d69743246656544796e616d6963000000000000000000000000000000000000000000000000000000000000000000000000000006000000000000000000000000001af3f329e8be154074d8769d1ffa4ee058b1dbc300000000000000000000000055d398326f99059ff775485246999027b31979550000000000000000000000000000000000000000000000001216f0a8cfb11c0000000000000000000000000000000000000000000000000011b9f010ce44ebae00000000000000000000000000000000000000000000000000000000000001200000000000000000000000000000000000000000000000000028e0df97f26400000000000000000000000000b28da7bc87a9dd1e60849aa7fcb5da24ea913c42000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000004ce3593564c000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000000a0000000000000000000000000000000000000000000000000000000006a066301000000000000000000000000000000000000000000000000000000000000000110000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000002000000000000000000000000000000000000000000000000000000000000003c0000000000000000000000000000000000000000000000000000000000000004000000000000000000000000000000000000000000000000000000000000000800000000000000000000000000000000000000000000000000000000000000003070b0e000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000030000000000000000000000000000000000000000000000000000000000000060000000000000000000000000000000000000000000000000000000000000022000000000000000000000000000000000000000000000000000000000000002a000000000000000000000000000000000000000000000000000000000000001a000000000000000000000000000000000000000000000000000000000000000200000000000000000000000001af3f329e8be154074d8769d1ffa4ee058b1dbc300000000000000000000000000000000000000000000000000000000000000800000000000000000000000000000000000000000000000001216f0a8cfb11c0000000000000000000000000000000000000000000000000011bbc0efb959f2d70000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000002000000000000000000000000055d398326f99059ff775485246999027b319795500000000000000000000000000000000000000000000000000000000000000640000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000a0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000600000000000000000000000001af3f329e8be154074d8769d1ffa4ee058b1dbc300000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000006000000000000000000000000055d398326f99059ff775485246999027b3197955000000000000000000000000c590175e458b83680867afd273527ff58f74c02b0000000000000000000000000000000000000000000000000000000000000000756e69780000b2c5de0b0000000000000000000000000000000000002600000000000000000000000000000000000000000000000000000000000000000000000000000055d398326f99059ff775485246999027b3197955000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000600000000000000000000000000000000000000000000000000000000000000044a9059cbb000000000000000000000000e3478b0bb1a5084567c319096437924948be196400000000000000000000000000000000000000000000000000c5ee5d2a93949800000000000000000000000000000000000000000000000000000000c001a01ebc02e7f944a62377155328a460e818672500e4710fd68e694d4526b3a24c5ea048bd9ccf078af98a10cfb1dbcf9e319e7471dfaafe41f8951776e2dce3917d4e", - "s": "0x48bd9ccf078af98a10cfb1dbcf9e319e7471dfaafe41f8951776e2dce3917d4e", - "selectedGasFeeToken": "0x55d398326f99059ff775485246999027b3197955", - "status": "failed", - "time": 1778801662451, - "txParams": { - "data": "0xe9ae5c53010100000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000400000000000000000000000000000000000000000000000000000000000000fe00000000000000000000000000000000000000000000000000000000000000020000000000000000000000000000000000000000000000000000000000000000500000000000000000000000000000000000000000000000000000000000000a00000000000000000000000000000000000000000000000000000000000000180000000000000000000000000000000000000000000000000000000000000066000000000000000000000000000000000000000000000000000000000000007400000000000000000000000000000000000000000000000000000000000000ec0000000000000000000000000f8a0bf9cf54bb92f17374d9e9a321e6a111a51bd000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000600000000000000000000000000000000000000000000000000000000000000044095ea7b30000000000000000000000001a1ec25dc08e98e5e93f1104b5e5cdd298707d310000000000000000000000000000000000000000000000000298348bed9600b7000000000000000000000000000000000000000000000000000000000000000000000000000000001a1ec25dc08e98e5e93f1104b5e5cdd298707d310000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000004455f5755290000000000000000000000000000000000000000000000000000000000000080000000000000000000000000f8a0bf9cf54bb92f17374d9e9a321e6a111a51bd0000000000000000000000000000000000000000000000000298348bed9600b700000000000000000000000000000000000000000000000000000000000000c00000000000000000000000000000000000000000000000000000000000000018756e69737761705065726d69743246656544796e616d696300000000000000000000000000000000000000000000000000000000000000000000000000000360000000000000000000000000f8a0bf9cf54bb92f17374d9e9a321e6a111a51bd00000000000000000000000055d398326f99059ff775485246999027b31979550000000000000000000000000000000000000000000000000298348bed9600b70000000000000000000000000000000000000000000000001a8ad845eef94ec00000000000000000000000000000000000000000000000000000000000000120000000000000000000000000000000000000000000000000003d342b9c99e188000000000000000000000000b28da7bc87a9dd1e60849aa7fcb5da24ea913c420000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000022e3593564c000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000000a0000000000000000000000000000000000000000000000000000000006a06630200000000000000000000000000000000000000000000000000000000000000010000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000000000200000000000000000000000000000000000000000000000000000000000000120000000000000000000000000c590175e458b83680867afd273527ff58f74c02b0000000000000000000000000000000000000000000000000298348bed9600b70000000000000000000000000000000000000000000000001ac9914b8830b19300000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000000000000000000000000000000010000000000000000000000000000000000000000000000000000000000000042f8a0bf9cf54bb92f17374d9e9a321e6a111a51bd0001f42170ed0880ac9a755fd29b2688956bd959f933f80001f455d398326f99059ff775485246999027b3197955000000000000000000000000000000000000000000000000000000000000756e69780000b2c5de0b0000000000000000000000000000000000008c0000000000000000000000000000000000000000000000000000000000000000000000000000001af3f329e8be154074d8769d1ffa4ee058b1dbc3000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000600000000000000000000000000000000000000000000000000000000000000044095ea7b30000000000000000000000001a1ec25dc08e98e5e93f1104b5e5cdd298707d31000000000000000000000000000000000000000000000000123fd18867a38000000000000000000000000000000000000000000000000000000000000000000000000000000000001a1ec25dc08e98e5e93f1104b5e5cdd298707d310000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000006e55f57552900000000000000000000000000000000000000000000000000000000000000800000000000000000000000001af3f329e8be154074d8769d1ffa4ee058b1dbc3000000000000000000000000000000000000000000000000123fd18867a3800000000000000000000000000000000000000000000000000000000000000000c00000000000000000000000000000000000000000000000000000000000000018756e69737761705065726d69743246656544796e616d6963000000000000000000000000000000000000000000000000000000000000000000000000000006000000000000000000000000001af3f329e8be154074d8769d1ffa4ee058b1dbc300000000000000000000000055d398326f99059ff775485246999027b31979550000000000000000000000000000000000000000000000001216f0a8cfb11c0000000000000000000000000000000000000000000000000011b9f010ce44ebae00000000000000000000000000000000000000000000000000000000000001200000000000000000000000000000000000000000000000000028e0df97f26400000000000000000000000000b28da7bc87a9dd1e60849aa7fcb5da24ea913c42000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000004ce3593564c000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000000a0000000000000000000000000000000000000000000000000000000006a066301000000000000000000000000000000000000000000000000000000000000000110000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000002000000000000000000000000000000000000000000000000000000000000003c0000000000000000000000000000000000000000000000000000000000000004000000000000000000000000000000000000000000000000000000000000000800000000000000000000000000000000000000000000000000000000000000003070b0e000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000030000000000000000000000000000000000000000000000000000000000000060000000000000000000000000000000000000000000000000000000000000022000000000000000000000000000000000000000000000000000000000000002a000000000000000000000000000000000000000000000000000000000000001a000000000000000000000000000000000000000000000000000000000000000200000000000000000000000001af3f329e8be154074d8769d1ffa4ee058b1dbc300000000000000000000000000000000000000000000000000000000000000800000000000000000000000000000000000000000000000001216f0a8cfb11c0000000000000000000000000000000000000000000000000011bbc0efb959f2d70000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000002000000000000000000000000055d398326f99059ff775485246999027b319795500000000000000000000000000000000000000000000000000000000000000640000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000a0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000600000000000000000000000001af3f329e8be154074d8769d1ffa4ee058b1dbc300000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000006000000000000000000000000055d398326f99059ff775485246999027b3197955000000000000000000000000c590175e458b83680867afd273527ff58f74c02b0000000000000000000000000000000000000000000000000000000000000000756e69780000b2c5de0b0000000000000000000000000000000000002600000000000000000000000000000000000000000000000000000000000000000000000000000055d398326f99059ff775485246999027b3197955000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000600000000000000000000000000000000000000000000000000000000000000044a9059cbb000000000000000000000000e3478b0bb1a5084567c319096437924948be196400000000000000000000000000000000000000000000000000c5ee5d2a93949800000000000000000000000000000000000000000000000000000000", - "from": "0x141d32a89a1e0a5ef360034a2f60a4b917c18838", - "gas": "0x91279", - "gasLimit": "0x91279", - "maxFeePerGas": "0x3938700", - "maxPriorityFeePerGas": "0x3938700", - "nonce": "0x52", - "to": "0x141d32a89a1e0a5ef360034a2f60a4b917c18838", - "type": "0x2", - "value": "0x0" - }, - "type": "batch", - "userEditedGasLimit": false, - "userFeeLevel": "medium", - "v": "0x1", - "verifiedOnBlockchain": false - }, - { - "batchId": "0x19e28e0bae6", - "chainId": "0x38", - "defaultGasEstimates": { - "estimateType": "medium", - "gas": "0x85bfd", - "maxFeePerGas": "0x3938700", - "maxPriorityFeePerGas": "0x3938700" - }, - "delegationAddress": "0x63c0c19a282a1b52b07dd5a65b58948a07dae32b", - "error": { - "message": "RPC submit: gas required exceeds allowance (421519)", - "name": "Error", - "stack": "Error: RPC submit: gas required exceeds allowance (421519)\n at TransactionController._TransactionController_publishTransaction (chrome-extension://hebhblbkkdabgoldnojllkipeoacjioc/js-node_modules_metamask_s.js:60041:15)\n at async chrome-extension://hebhblbkkdabgoldnojllkipeoacjioc/js-node_modules_metamask_s.js:60727:47\n at async TransactionController._TransactionController_defaultPublishHook (chrome-extension://hebhblbkkdabgoldnojllkipeoacjioc/js-node_modules_metamask_s.js:60720:5)\n at async TransactionController._TransactionController_approveTransaction (chrome-extension://hebhblbkkdabgoldnojllkipeoacjioc/js-node_modules_metamask_s.js:59991:43)\n at async TransactionController._TransactionController_processApproval (chrome-extension://hebhblbkkdabgoldnojllkipeoacjioc/js-node_modules_metamask_s.js:59854:40)\n at async addTransactionBatchWith7702 (chrome-extension://hebhblbkkdabgoldnojllkipeoacjioc/js-node_modules_metamask_s.js:41175:29)\n at async addTransactionBatch (chrome-extension://hebhblbkkdabgoldnojllkipeoacjioc/js-node_modules_metamask_s.js:40973:20)\n at async TransactionController.addTransactionBatch (chrome-extension://hebhblbkkdabgoldnojllkipeoacjioc/js-node_modules_metamask_s.js:58615:16)\n at async addTransactionBatch (chrome-extension://hebhblbkkdabgoldnojllkipeoacjioc/js-node_modules_metamask_a.js:67563:25)\n at async submitBatchSellHandler (chrome-extension://hebhblbkkdabgoldnojllkipeoacjioc/js-node_modules_metamask_a.js:20661:33)" - }, - "excludeNativeTokenForFee": true, - "gasFeeEstimates": { - "high": { - "maxFeePerGas": "0x2faf080", - "maxPriorityFeePerGas": "0x2faf080" - }, - "low": { - "maxFeePerGas": "0x2faf080", - "maxPriorityFeePerGas": "0x2faf080" - }, - "medium": { - "maxFeePerGas": "0x2faf080", - "maxPriorityFeePerGas": "0x2faf080" - }, - "type": "fee-market" - }, - "gasFeeEstimatesLoaded": true, - "gasLimitNoBuffer": "0x85bfd", - "id": "c3bc3be0-4fee-11f1-affc-677c85a0a356", - "isGasFeeIncluded": true, - "isGasFeeSponsored": false, - "isGasFeeTokenIgnoredIfBalance": false, - "nestedTransactions": [ - { - "data": "0x095ea7b30000000000000000000000001a1ec25dc08e98e5e93f1104b5e5cdd298707d310000000000000000000000000000000000000000000000000298348bed9600b7", - "from": "0x141d32a89a1e0a5ef360034a2f60a4b917c18838", - "gas": "0x110fa", - "maxFeePerGas": "0x3938700", - "maxPriorityFeePerGas": "0x3938700", - "to": "0xf8a0bf9cf54bb92f17374d9e9a321e6a111a51bd", - "type": "swapApproval", - "value": "0x0" - }, - { - "data": "0x5f5755290000000000000000000000000000000000000000000000000000000000000080000000000000000000000000f8a0bf9cf54bb92f17374d9e9a321e6a111a51bd0000000000000000000000000000000000000000000000000298348bed9600b700000000000000000000000000000000000000000000000000000000000000c00000000000000000000000000000000000000000000000000000000000000018756e69737761705065726d69743246656544796e616d6963000000000000000000000000000000000000000000000000000000000000000000000000000006e0000000000000000000000000f8a0bf9cf54bb92f17374d9e9a321e6a111a51bd00000000000000000000000055d398326f99059ff775485246999027b31979550000000000000000000000000000000000000000000000000298348bed9600b70000000000000000000000000000000000000000000000001a85e18d1195a89e0000000000000000000000000000000000000000000000000000000000000120000000000000000000000000000000000000000000000000003d28b97718a335000000000000000000000000b28da7bc87a9dd1e60849aa7fcb5da24ea913c42000000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000000005ae3593564c000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000000a0000000000000000000000000000000000000000000000000000000006a066537000000000000000000000000000000000000000000000000000000000000000110000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000002000000000000000000000000000000000000000000000000000000000000004a0000000000000000000000000000000000000000000000000000000000000004000000000000000000000000000000000000000000000000000000000000000800000000000000000000000000000000000000000000000000000000000000003070b0e0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000300000000000000000000000000000000000000000000000000000000000000600000000000000000000000000000000000000000000000000000000000000300000000000000000000000000000000000000000000000000000000000000038000000000000000000000000000000000000000000000000000000000000002800000000000000000000000000000000000000000000000000000000000000020000000000000000000000000f8a0bf9cf54bb92f17374d9e9a321e6a111a51bd00000000000000000000000000000000000000000000000000000000000000800000000000000000000000000000000000000000000000000298348bed9600b70000000000000000000000000000000000000000000000001ac48ed7ccef3af70000000000000000000000000000000000000000000000000000000000000002000000000000000000000000000000000000000000000000000000000000004000000000000000000000000000000000000000000000000000000000000001000000000000000000000000008ac76a51cc950d9822d68b83fe1ad97b32cd580d0000000000000000000000000000000000000000000000000000000000000bb8000000000000000000000000000000000000000000000000000000000000003c000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000a0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000055d398326f99059ff775485246999027b319795500000000000000000000000000000000000000000000000000000000000000010000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000060000000000000000000000000f8a0bf9cf54bb92f17374d9e9a321e6a111a51bd00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000006000000000000000000000000055d398326f99059ff775485246999027b3197955000000000000000000000000c590175e458b83680867afd273527ff58f74c02b0000000000000000000000000000000000000000000000000000000000000000756e69780000b2c5de0b00000000000000000000000000000000000085", - "from": "0x141d32a89a1e0a5ef360034a2f60a4b917c18838", - "gas": "0x6a37c", - "maxFeePerGas": "0x3938700", - "maxPriorityFeePerGas": "0x3938700", - "to": "0x1a1ec25DC08e98e5E93F1104B5e5cdD298707d31", - "type": "swap", - "value": "0x0" - }, - { - "data": "0x095ea7b30000000000000000000000001a1ec25dc08e98e5e93f1104b5e5cdd298707d31000000000000000000000000000000000000000000000000123fd18867a38000", - "from": "0x141d32a89a1e0a5ef360034a2f60a4b917c18838", - "gas": "0x110fa", - "maxFeePerGas": "0x3938700", - "maxPriorityFeePerGas": "0x3938700", - "to": "0x1af3f329e8be154074d8769d1ffa4ee058b1dbc3", - "type": "swapApproval", - "value": "0x0" - }, - { - "data": "0x5f57552900000000000000000000000000000000000000000000000000000000000000800000000000000000000000001af3f329e8be154074d8769d1ffa4ee058b1dbc3000000000000000000000000000000000000000000000000123fd18867a3800000000000000000000000000000000000000000000000000000000000000000c00000000000000000000000000000000000000000000000000000000000000018756e69737761705065726d69743246656544796e616d6963000000000000000000000000000000000000000000000000000000000000000000000000000006000000000000000000000000001af3f329e8be154074d8769d1ffa4ee058b1dbc300000000000000000000000055d398326f99059ff775485246999027b31979550000000000000000000000000000000000000000000000001216f0a8cfb11c0000000000000000000000000000000000000000000000000011b9f010ce44ebae00000000000000000000000000000000000000000000000000000000000001200000000000000000000000000000000000000000000000000028e0df97f26400000000000000000000000000b28da7bc87a9dd1e60849aa7fcb5da24ea913c42000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000004ce3593564c000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000000a0000000000000000000000000000000000000000000000000000000006a066537000000000000000000000000000000000000000000000000000000000000000110000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000002000000000000000000000000000000000000000000000000000000000000003c0000000000000000000000000000000000000000000000000000000000000004000000000000000000000000000000000000000000000000000000000000000800000000000000000000000000000000000000000000000000000000000000003070b0e000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000030000000000000000000000000000000000000000000000000000000000000060000000000000000000000000000000000000000000000000000000000000022000000000000000000000000000000000000000000000000000000000000002a000000000000000000000000000000000000000000000000000000000000001a000000000000000000000000000000000000000000000000000000000000000200000000000000000000000001af3f329e8be154074d8769d1ffa4ee058b1dbc300000000000000000000000000000000000000000000000000000000000000800000000000000000000000000000000000000000000000001216f0a8cfb11c0000000000000000000000000000000000000000000000000011bbc0efb959f2d70000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000002000000000000000000000000055d398326f99059ff775485246999027b319795500000000000000000000000000000000000000000000000000000000000000640000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000a0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000600000000000000000000000001af3f329e8be154074d8769d1ffa4ee058b1dbc300000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000006000000000000000000000000055d398326f99059ff775485246999027b3197955000000000000000000000000c590175e458b83680867afd273527ff58f74c02b0000000000000000000000000000000000000000000000000000000000000000756e69780000b2c5de0b00000000000000000000000000000000000084", - "from": "0x141d32a89a1e0a5ef360034a2f60a4b917c18838", - "gas": "0x5d0e7", - "maxFeePerGas": "0x3938700", - "maxPriorityFeePerGas": "0x3938700", - "to": "0x1a1ec25DC08e98e5E93F1104B5e5cdD298707d31", - "type": "swap", - "value": "0x0" - }, - { - "data": "0xa9059cbb000000000000000000000000e3478b0bb1a5084567c319096437924948be196400000000000000000000000000000000000000000000000000c12165fdc576f5", - "from": "0x141d32a89a1e0a5ef360034a2f60a4b917c18838", - "gas": "0xcc57", - "maxFeePerGas": "0x3938700", - "maxPriorityFeePerGas": "0x3938700", - "to": "0x55d398326f99059ff775485246999027b3197955", - "type": "transfer", - "value": "0x0" - } - ], - "networkClientId": "9a1eafde-5f04-434b-b011-e9de5c50baf0", - "origin": "metamask", - "originalGasEstimate": "0x85bfd", - "r": "0x88fb101357d52940fcc5ba4526d9c5a137bb14e50dc342797c0725aa4148a2b", - "rawTx": "0x02f9143138528403938700840393870083085bfd94141d32a89a1e0a5ef360034a2f60a4b917c1883880b913c4e9ae5c530101000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000004000000000000000000000000000000000000000000000000000000000000013600000000000000000000000000000000000000000000000000000000000000020000000000000000000000000000000000000000000000000000000000000000500000000000000000000000000000000000000000000000000000000000000a0000000000000000000000000000000000000000000000000000000000000018000000000000000000000000000000000000000000000000000000000000009e00000000000000000000000000000000000000000000000000000000000000ac00000000000000000000000000000000000000000000000000000000000001240000000000000000000000000f8a0bf9cf54bb92f17374d9e9a321e6a111a51bd000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000600000000000000000000000000000000000000000000000000000000000000044095ea7b30000000000000000000000001a1ec25dc08e98e5e93f1104b5e5cdd298707d310000000000000000000000000000000000000000000000000298348bed9600b7000000000000000000000000000000000000000000000000000000000000000000000000000000001a1ec25dc08e98e5e93f1104b5e5cdd298707d310000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000007c55f5755290000000000000000000000000000000000000000000000000000000000000080000000000000000000000000f8a0bf9cf54bb92f17374d9e9a321e6a111a51bd0000000000000000000000000000000000000000000000000298348bed9600b700000000000000000000000000000000000000000000000000000000000000c00000000000000000000000000000000000000000000000000000000000000018756e69737761705065726d69743246656544796e616d6963000000000000000000000000000000000000000000000000000000000000000000000000000006e0000000000000000000000000f8a0bf9cf54bb92f17374d9e9a321e6a111a51bd00000000000000000000000055d398326f99059ff775485246999027b31979550000000000000000000000000000000000000000000000000298348bed9600b70000000000000000000000000000000000000000000000001a85e18d1195a89e0000000000000000000000000000000000000000000000000000000000000120000000000000000000000000000000000000000000000000003d28b97718a335000000000000000000000000b28da7bc87a9dd1e60849aa7fcb5da24ea913c42000000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000000005ae3593564c000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000000a0000000000000000000000000000000000000000000000000000000006a066537000000000000000000000000000000000000000000000000000000000000000110000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000002000000000000000000000000000000000000000000000000000000000000004a0000000000000000000000000000000000000000000000000000000000000004000000000000000000000000000000000000000000000000000000000000000800000000000000000000000000000000000000000000000000000000000000003070b0e0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000300000000000000000000000000000000000000000000000000000000000000600000000000000000000000000000000000000000000000000000000000000300000000000000000000000000000000000000000000000000000000000000038000000000000000000000000000000000000000000000000000000000000002800000000000000000000000000000000000000000000000000000000000000020000000000000000000000000f8a0bf9cf54bb92f17374d9e9a321e6a111a51bd00000000000000000000000000000000000000000000000000000000000000800000000000000000000000000000000000000000000000000298348bed9600b70000000000000000000000000000000000000000000000001ac48ed7ccef3af70000000000000000000000000000000000000000000000000000000000000002000000000000000000000000000000000000000000000000000000000000004000000000000000000000000000000000000000000000000000000000000001000000000000000000000000008ac76a51cc950d9822d68b83fe1ad97b32cd580d0000000000000000000000000000000000000000000000000000000000000bb8000000000000000000000000000000000000000000000000000000000000003c000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000a0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000055d398326f99059ff775485246999027b319795500000000000000000000000000000000000000000000000000000000000000010000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000060000000000000000000000000f8a0bf9cf54bb92f17374d9e9a321e6a111a51bd00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000006000000000000000000000000055d398326f99059ff775485246999027b3197955000000000000000000000000c590175e458b83680867afd273527ff58f74c02b0000000000000000000000000000000000000000000000000000000000000000756e69780000b2c5de0b000000000000000000000000000000000000850000000000000000000000000000000000000000000000000000000000000000000000000000001af3f329e8be154074d8769d1ffa4ee058b1dbc3000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000600000000000000000000000000000000000000000000000000000000000000044095ea7b30000000000000000000000001a1ec25dc08e98e5e93f1104b5e5cdd298707d31000000000000000000000000000000000000000000000000123fd18867a38000000000000000000000000000000000000000000000000000000000000000000000000000000000001a1ec25dc08e98e5e93f1104b5e5cdd298707d310000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000006e55f57552900000000000000000000000000000000000000000000000000000000000000800000000000000000000000001af3f329e8be154074d8769d1ffa4ee058b1dbc3000000000000000000000000000000000000000000000000123fd18867a3800000000000000000000000000000000000000000000000000000000000000000c00000000000000000000000000000000000000000000000000000000000000018756e69737761705065726d69743246656544796e616d6963000000000000000000000000000000000000000000000000000000000000000000000000000006000000000000000000000000001af3f329e8be154074d8769d1ffa4ee058b1dbc300000000000000000000000055d398326f99059ff775485246999027b31979550000000000000000000000000000000000000000000000001216f0a8cfb11c0000000000000000000000000000000000000000000000000011b9f010ce44ebae00000000000000000000000000000000000000000000000000000000000001200000000000000000000000000000000000000000000000000028e0df97f26400000000000000000000000000b28da7bc87a9dd1e60849aa7fcb5da24ea913c42000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000004ce3593564c000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000000a0000000000000000000000000000000000000000000000000000000006a066537000000000000000000000000000000000000000000000000000000000000000110000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000002000000000000000000000000000000000000000000000000000000000000003c0000000000000000000000000000000000000000000000000000000000000004000000000000000000000000000000000000000000000000000000000000000800000000000000000000000000000000000000000000000000000000000000003070b0e000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000030000000000000000000000000000000000000000000000000000000000000060000000000000000000000000000000000000000000000000000000000000022000000000000000000000000000000000000000000000000000000000000002a000000000000000000000000000000000000000000000000000000000000001a000000000000000000000000000000000000000000000000000000000000000200000000000000000000000001af3f329e8be154074d8769d1ffa4ee058b1dbc300000000000000000000000000000000000000000000000000000000000000800000000000000000000000000000000000000000000000001216f0a8cfb11c0000000000000000000000000000000000000000000000000011bbc0efb959f2d70000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000002000000000000000000000000055d398326f99059ff775485246999027b319795500000000000000000000000000000000000000000000000000000000000000640000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000a0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000600000000000000000000000001af3f329e8be154074d8769d1ffa4ee058b1dbc300000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000006000000000000000000000000055d398326f99059ff775485246999027b3197955000000000000000000000000c590175e458b83680867afd273527ff58f74c02b0000000000000000000000000000000000000000000000000000000000000000756e69780000b2c5de0b0000000000000000000000000000000000008400000000000000000000000000000000000000000000000000000000000000000000000000000055d398326f99059ff775485246999027b3197955000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000600000000000000000000000000000000000000000000000000000000000000044a9059cbb000000000000000000000000e3478b0bb1a5084567c319096437924948be196400000000000000000000000000000000000000000000000000c12165fdc576f500000000000000000000000000000000000000000000000000000000c001a0088fb101357d52940fcc5ba4526d9c5a137bb14e50dc342797c0725aa4148a2ba02d101634da10da483712150068c8c2f7e578de5f98b62a239e39c9b1d0f4a3a0", - "s": "0x2d101634da10da483712150068c8c2f7e578de5f98b62a239e39c9b1d0f4a3a0", - "selectedGasFeeToken": "0x55d398326f99059ff775485246999027b3197955", - "status": "failed", - "time": 1778802232990, - "txParams": { - "data": "0xe9ae5c530101000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000004000000000000000000000000000000000000000000000000000000000000013600000000000000000000000000000000000000000000000000000000000000020000000000000000000000000000000000000000000000000000000000000000500000000000000000000000000000000000000000000000000000000000000a0000000000000000000000000000000000000000000000000000000000000018000000000000000000000000000000000000000000000000000000000000009e00000000000000000000000000000000000000000000000000000000000000ac00000000000000000000000000000000000000000000000000000000000001240000000000000000000000000f8a0bf9cf54bb92f17374d9e9a321e6a111a51bd000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000600000000000000000000000000000000000000000000000000000000000000044095ea7b30000000000000000000000001a1ec25dc08e98e5e93f1104b5e5cdd298707d310000000000000000000000000000000000000000000000000298348bed9600b7000000000000000000000000000000000000000000000000000000000000000000000000000000001a1ec25dc08e98e5e93f1104b5e5cdd298707d310000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000007c55f5755290000000000000000000000000000000000000000000000000000000000000080000000000000000000000000f8a0bf9cf54bb92f17374d9e9a321e6a111a51bd0000000000000000000000000000000000000000000000000298348bed9600b700000000000000000000000000000000000000000000000000000000000000c00000000000000000000000000000000000000000000000000000000000000018756e69737761705065726d69743246656544796e616d6963000000000000000000000000000000000000000000000000000000000000000000000000000006e0000000000000000000000000f8a0bf9cf54bb92f17374d9e9a321e6a111a51bd00000000000000000000000055d398326f99059ff775485246999027b31979550000000000000000000000000000000000000000000000000298348bed9600b70000000000000000000000000000000000000000000000001a85e18d1195a89e0000000000000000000000000000000000000000000000000000000000000120000000000000000000000000000000000000000000000000003d28b97718a335000000000000000000000000b28da7bc87a9dd1e60849aa7fcb5da24ea913c42000000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000000005ae3593564c000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000000a0000000000000000000000000000000000000000000000000000000006a066537000000000000000000000000000000000000000000000000000000000000000110000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000002000000000000000000000000000000000000000000000000000000000000004a0000000000000000000000000000000000000000000000000000000000000004000000000000000000000000000000000000000000000000000000000000000800000000000000000000000000000000000000000000000000000000000000003070b0e0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000300000000000000000000000000000000000000000000000000000000000000600000000000000000000000000000000000000000000000000000000000000300000000000000000000000000000000000000000000000000000000000000038000000000000000000000000000000000000000000000000000000000000002800000000000000000000000000000000000000000000000000000000000000020000000000000000000000000f8a0bf9cf54bb92f17374d9e9a321e6a111a51bd00000000000000000000000000000000000000000000000000000000000000800000000000000000000000000000000000000000000000000298348bed9600b70000000000000000000000000000000000000000000000001ac48ed7ccef3af70000000000000000000000000000000000000000000000000000000000000002000000000000000000000000000000000000000000000000000000000000004000000000000000000000000000000000000000000000000000000000000001000000000000000000000000008ac76a51cc950d9822d68b83fe1ad97b32cd580d0000000000000000000000000000000000000000000000000000000000000bb8000000000000000000000000000000000000000000000000000000000000003c000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000a0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000055d398326f99059ff775485246999027b319795500000000000000000000000000000000000000000000000000000000000000010000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000060000000000000000000000000f8a0bf9cf54bb92f17374d9e9a321e6a111a51bd00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000006000000000000000000000000055d398326f99059ff775485246999027b3197955000000000000000000000000c590175e458b83680867afd273527ff58f74c02b0000000000000000000000000000000000000000000000000000000000000000756e69780000b2c5de0b000000000000000000000000000000000000850000000000000000000000000000000000000000000000000000000000000000000000000000001af3f329e8be154074d8769d1ffa4ee058b1dbc3000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000600000000000000000000000000000000000000000000000000000000000000044095ea7b30000000000000000000000001a1ec25dc08e98e5e93f1104b5e5cdd298707d31000000000000000000000000000000000000000000000000123fd18867a38000000000000000000000000000000000000000000000000000000000000000000000000000000000001a1ec25dc08e98e5e93f1104b5e5cdd298707d310000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000006e55f57552900000000000000000000000000000000000000000000000000000000000000800000000000000000000000001af3f329e8be154074d8769d1ffa4ee058b1dbc3000000000000000000000000000000000000000000000000123fd18867a3800000000000000000000000000000000000000000000000000000000000000000c00000000000000000000000000000000000000000000000000000000000000018756e69737761705065726d69743246656544796e616d6963000000000000000000000000000000000000000000000000000000000000000000000000000006000000000000000000000000001af3f329e8be154074d8769d1ffa4ee058b1dbc300000000000000000000000055d398326f99059ff775485246999027b31979550000000000000000000000000000000000000000000000001216f0a8cfb11c0000000000000000000000000000000000000000000000000011b9f010ce44ebae00000000000000000000000000000000000000000000000000000000000001200000000000000000000000000000000000000000000000000028e0df97f26400000000000000000000000000b28da7bc87a9dd1e60849aa7fcb5da24ea913c42000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000004ce3593564c000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000000a0000000000000000000000000000000000000000000000000000000006a066537000000000000000000000000000000000000000000000000000000000000000110000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000002000000000000000000000000000000000000000000000000000000000000003c0000000000000000000000000000000000000000000000000000000000000004000000000000000000000000000000000000000000000000000000000000000800000000000000000000000000000000000000000000000000000000000000003070b0e000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000030000000000000000000000000000000000000000000000000000000000000060000000000000000000000000000000000000000000000000000000000000022000000000000000000000000000000000000000000000000000000000000002a000000000000000000000000000000000000000000000000000000000000001a000000000000000000000000000000000000000000000000000000000000000200000000000000000000000001af3f329e8be154074d8769d1ffa4ee058b1dbc300000000000000000000000000000000000000000000000000000000000000800000000000000000000000000000000000000000000000001216f0a8cfb11c0000000000000000000000000000000000000000000000000011bbc0efb959f2d70000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000002000000000000000000000000055d398326f99059ff775485246999027b319795500000000000000000000000000000000000000000000000000000000000000640000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000a0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000600000000000000000000000001af3f329e8be154074d8769d1ffa4ee058b1dbc300000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000006000000000000000000000000055d398326f99059ff775485246999027b3197955000000000000000000000000c590175e458b83680867afd273527ff58f74c02b0000000000000000000000000000000000000000000000000000000000000000756e69780000b2c5de0b0000000000000000000000000000000000008400000000000000000000000000000000000000000000000000000000000000000000000000000055d398326f99059ff775485246999027b3197955000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000600000000000000000000000000000000000000000000000000000000000000044a9059cbb000000000000000000000000e3478b0bb1a5084567c319096437924948be196400000000000000000000000000000000000000000000000000c12165fdc576f500000000000000000000000000000000000000000000000000000000", - "from": "0x141d32a89a1e0a5ef360034a2f60a4b917c18838", - "gas": "0x85bfd", - "gasLimit": "0x85bfd", - "maxFeePerGas": "0x3938700", - "maxPriorityFeePerGas": "0x3938700", - "nonce": "0x52", - "to": "0x141d32a89a1e0a5ef360034a2f60a4b917c18838", - "type": "0x2", - "value": "0x0" - }, - "type": "batch", - "userEditedGasLimit": false, - "userFeeLevel": "medium", - "v": "0x1", - "verifiedOnBlockchain": false - }, - { - "baseFeePerGas": "0x0", - "batchId": "0x19e28ec4d87", - "blockTimestamp": "0x6a065ee4", - "chainId": "0x38", - "defaultGasEstimates": { - "estimateType": "medium", - "gas": "0x85bfd", - "maxFeePerGas": "0x3938700", - "maxPriorityFeePerGas": "0x3938700" - }, - "delegationAddress": "0x63c0c19a282a1b52b07dd5a65b58948a07dae32b", - "excludeNativeTokenForFee": true, - "gasFeeEstimates": { - "high": { - "maxFeePerGas": "0x2faf080", - "maxPriorityFeePerGas": "0x2faf080" - }, - "low": { - "maxFeePerGas": "0x2faf080", - "maxPriorityFeePerGas": "0x2faf080" - }, - "medium": { - "maxFeePerGas": "0x2faf080", - "maxPriorityFeePerGas": "0x2faf080" - }, - "type": "fee-market" - }, - "gasFeeEstimatesLoaded": true, - "gasLimitNoBuffer": "0x85bfd", - "hash": "0x85c243aeeb7065fbc8f33c0f1a5dd352b911420280c4ff947264d8fb9fdbc6b1", - "id": "291f2100-4fef-11f1-97dc-cb72b8adab55", - "isGasFeeIncluded": true, - "isGasFeeSponsored": false, - "isGasFeeTokenIgnoredIfBalance": false, - "nestedTransactions": [ - { - "data": "0x095ea7b30000000000000000000000001a1ec25dc08e98e5e93f1104b5e5cdd298707d310000000000000000000000000000000000000000000000000298348bed9600b7", - "from": "0x141d32a89a1e0a5ef360034a2f60a4b917c18838", - "gas": "0x110fa", - "maxFeePerGas": "0x3938700", - "maxPriorityFeePerGas": "0x3938700", - "to": "0xf8a0bf9cf54bb92f17374d9e9a321e6a111a51bd", - "type": "swapApproval", - "value": "0x0" - }, - { - "data": "0x5f5755290000000000000000000000000000000000000000000000000000000000000080000000000000000000000000f8a0bf9cf54bb92f17374d9e9a321e6a111a51bd0000000000000000000000000000000000000000000000000298348bed9600b700000000000000000000000000000000000000000000000000000000000000c00000000000000000000000000000000000000000000000000000000000000018756e69737761705065726d69743246656544796e616d6963000000000000000000000000000000000000000000000000000000000000000000000000000006e0000000000000000000000000f8a0bf9cf54bb92f17374d9e9a321e6a111a51bd00000000000000000000000055d398326f99059ff775485246999027b31979550000000000000000000000000000000000000000000000000298348bed9600b70000000000000000000000000000000000000000000000001a85de2ff398a0430000000000000000000000000000000000000000000000000000000000000120000000000000000000000000000000000000000000000000003d28b1b5744116000000000000000000000000b28da7bc87a9dd1e60849aa7fcb5da24ea913c42000000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000000005ae3593564c000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000000a0000000000000000000000000000000000000000000000000000000006a0665e5000000000000000000000000000000000000000000000000000000000000000110000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000002000000000000000000000000000000000000000000000000000000000000004a0000000000000000000000000000000000000000000000000000000000000004000000000000000000000000000000000000000000000000000000000000000800000000000000000000000000000000000000000000000000000000000000003070b0e0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000300000000000000000000000000000000000000000000000000000000000000600000000000000000000000000000000000000000000000000000000000000300000000000000000000000000000000000000000000000000000000000000038000000000000000000000000000000000000000000000000000000000000002800000000000000000000000000000000000000000000000000000000000000020000000000000000000000000f8a0bf9cf54bb92f17374d9e9a321e6a111a51bd00000000000000000000000000000000000000000000000000000000000000800000000000000000000000000000000000000000000000000298348bed9600b70000000000000000000000000000000000000000000000001ac48b72bc0641c30000000000000000000000000000000000000000000000000000000000000002000000000000000000000000000000000000000000000000000000000000004000000000000000000000000000000000000000000000000000000000000001000000000000000000000000008ac76a51cc950d9822d68b83fe1ad97b32cd580d0000000000000000000000000000000000000000000000000000000000000bb8000000000000000000000000000000000000000000000000000000000000003c000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000a0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000055d398326f99059ff775485246999027b319795500000000000000000000000000000000000000000000000000000000000000010000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000060000000000000000000000000f8a0bf9cf54bb92f17374d9e9a321e6a111a51bd00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000006000000000000000000000000055d398326f99059ff775485246999027b3197955000000000000000000000000c590175e458b83680867afd273527ff58f74c02b0000000000000000000000000000000000000000000000000000000000000000756e69780000b2c5de0b0000000000000000000000000000000000003d", - "from": "0x141d32a89a1e0a5ef360034a2f60a4b917c18838", - "gas": "0x6a37c", - "maxFeePerGas": "0x3938700", - "maxPriorityFeePerGas": "0x3938700", - "to": "0x1a1ec25DC08e98e5E93F1104B5e5cdD298707d31", - "type": "swap", - "value": "0x0" - }, - { - "data": "0x095ea7b30000000000000000000000001a1ec25dc08e98e5e93f1104b5e5cdd298707d31000000000000000000000000000000000000000000000000123fd18867a38000", - "from": "0x141d32a89a1e0a5ef360034a2f60a4b917c18838", - "gas": "0x110fa", - "maxFeePerGas": "0x3938700", - "maxPriorityFeePerGas": "0x3938700", - "to": "0x1af3f329e8be154074d8769d1ffa4ee058b1dbc3", - "type": "swapApproval", - "value": "0x0" - }, - { - "data": "0x5f57552900000000000000000000000000000000000000000000000000000000000000800000000000000000000000001af3f329e8be154074d8769d1ffa4ee058b1dbc3000000000000000000000000000000000000000000000000123fd18867a3800000000000000000000000000000000000000000000000000000000000000000c00000000000000000000000000000000000000000000000000000000000000018756e69737761705065726d69743246656544796e616d6963000000000000000000000000000000000000000000000000000000000000000000000000000006000000000000000000000000001af3f329e8be154074d8769d1ffa4ee058b1dbc300000000000000000000000055d398326f99059ff775485246999027b31979550000000000000000000000000000000000000000000000001216f0a8cfb11c0000000000000000000000000000000000000000000000000011b9f010ce44ebae00000000000000000000000000000000000000000000000000000000000001200000000000000000000000000000000000000000000000000028e0df97f26400000000000000000000000000b28da7bc87a9dd1e60849aa7fcb5da24ea913c42000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000004ce3593564c000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000000a0000000000000000000000000000000000000000000000000000000006a0665e5000000000000000000000000000000000000000000000000000000000000000110000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000002000000000000000000000000000000000000000000000000000000000000003c0000000000000000000000000000000000000000000000000000000000000004000000000000000000000000000000000000000000000000000000000000000800000000000000000000000000000000000000000000000000000000000000003070b0e000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000030000000000000000000000000000000000000000000000000000000000000060000000000000000000000000000000000000000000000000000000000000022000000000000000000000000000000000000000000000000000000000000002a000000000000000000000000000000000000000000000000000000000000001a000000000000000000000000000000000000000000000000000000000000000200000000000000000000000001af3f329e8be154074d8769d1ffa4ee058b1dbc300000000000000000000000000000000000000000000000000000000000000800000000000000000000000000000000000000000000000001216f0a8cfb11c0000000000000000000000000000000000000000000000000011bbc0efb959f2d70000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000002000000000000000000000000055d398326f99059ff775485246999027b319795500000000000000000000000000000000000000000000000000000000000000640000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000a0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000600000000000000000000000001af3f329e8be154074d8769d1ffa4ee058b1dbc300000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000006000000000000000000000000055d398326f99059ff775485246999027b3197955000000000000000000000000c590175e458b83680867afd273527ff58f74c02b0000000000000000000000000000000000000000000000000000000000000000756e69780000b2c5de0b0000000000000000000000000000000000004a", - "from": "0x141d32a89a1e0a5ef360034a2f60a4b917c18838", - "gas": "0x5d0e7", - "maxFeePerGas": "0x3938700", - "maxPriorityFeePerGas": "0x3938700", - "to": "0x1a1ec25DC08e98e5E93F1104B5e5cdD298707d31", - "type": "swap", - "value": "0x0" - }, - { - "data": "0xa9059cbb000000000000000000000000e3478b0bb1a5084567c319096437924948be196400000000000000000000000000000000000000000000000000c11eb3cc1e44ab", - "from": "0x141d32a89a1e0a5ef360034a2f60a4b917c18838", - "gas": "0xcc57", - "maxFeePerGas": "0x3938700", - "maxPriorityFeePerGas": "0x3938700", - "to": "0x55d398326f99059ff775485246999027b3197955", - "type": "transfer", - "value": "0x0" - } - ], - "networkClientId": "9a1eafde-5f04-434b-b011-e9de5c50baf0", - "origin": "metamask", - "originalGasEstimate": "0x85bfd", - "postTxBalance": "0x170090655980", - "r": "0xd4d9d08f1ffcd7eea62b583459433f9cc46a0b344373f865d36ae28961d387eb", - "rawTx": "0x02f9143138528403938700840393870083085bfd94141d32a89a1e0a5ef360034a2f60a4b917c1883880b913c4e9ae5c530101000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000004000000000000000000000000000000000000000000000000000000000000013600000000000000000000000000000000000000000000000000000000000000020000000000000000000000000000000000000000000000000000000000000000500000000000000000000000000000000000000000000000000000000000000a0000000000000000000000000000000000000000000000000000000000000018000000000000000000000000000000000000000000000000000000000000009e00000000000000000000000000000000000000000000000000000000000000ac00000000000000000000000000000000000000000000000000000000000001240000000000000000000000000f8a0bf9cf54bb92f17374d9e9a321e6a111a51bd000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000600000000000000000000000000000000000000000000000000000000000000044095ea7b30000000000000000000000001a1ec25dc08e98e5e93f1104b5e5cdd298707d310000000000000000000000000000000000000000000000000298348bed9600b7000000000000000000000000000000000000000000000000000000000000000000000000000000001a1ec25dc08e98e5e93f1104b5e5cdd298707d310000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000007c55f5755290000000000000000000000000000000000000000000000000000000000000080000000000000000000000000f8a0bf9cf54bb92f17374d9e9a321e6a111a51bd0000000000000000000000000000000000000000000000000298348bed9600b700000000000000000000000000000000000000000000000000000000000000c00000000000000000000000000000000000000000000000000000000000000018756e69737761705065726d69743246656544796e616d6963000000000000000000000000000000000000000000000000000000000000000000000000000006e0000000000000000000000000f8a0bf9cf54bb92f17374d9e9a321e6a111a51bd00000000000000000000000055d398326f99059ff775485246999027b31979550000000000000000000000000000000000000000000000000298348bed9600b70000000000000000000000000000000000000000000000001a85de2ff398a0430000000000000000000000000000000000000000000000000000000000000120000000000000000000000000000000000000000000000000003d28b1b5744116000000000000000000000000b28da7bc87a9dd1e60849aa7fcb5da24ea913c42000000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000000005ae3593564c000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000000a0000000000000000000000000000000000000000000000000000000006a0665e5000000000000000000000000000000000000000000000000000000000000000110000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000002000000000000000000000000000000000000000000000000000000000000004a0000000000000000000000000000000000000000000000000000000000000004000000000000000000000000000000000000000000000000000000000000000800000000000000000000000000000000000000000000000000000000000000003070b0e0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000300000000000000000000000000000000000000000000000000000000000000600000000000000000000000000000000000000000000000000000000000000300000000000000000000000000000000000000000000000000000000000000038000000000000000000000000000000000000000000000000000000000000002800000000000000000000000000000000000000000000000000000000000000020000000000000000000000000f8a0bf9cf54bb92f17374d9e9a321e6a111a51bd00000000000000000000000000000000000000000000000000000000000000800000000000000000000000000000000000000000000000000298348bed9600b70000000000000000000000000000000000000000000000001ac48b72bc0641c30000000000000000000000000000000000000000000000000000000000000002000000000000000000000000000000000000000000000000000000000000004000000000000000000000000000000000000000000000000000000000000001000000000000000000000000008ac76a51cc950d9822d68b83fe1ad97b32cd580d0000000000000000000000000000000000000000000000000000000000000bb8000000000000000000000000000000000000000000000000000000000000003c000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000a0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000055d398326f99059ff775485246999027b319795500000000000000000000000000000000000000000000000000000000000000010000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000060000000000000000000000000f8a0bf9cf54bb92f17374d9e9a321e6a111a51bd00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000006000000000000000000000000055d398326f99059ff775485246999027b3197955000000000000000000000000c590175e458b83680867afd273527ff58f74c02b0000000000000000000000000000000000000000000000000000000000000000756e69780000b2c5de0b0000000000000000000000000000000000003d0000000000000000000000000000000000000000000000000000000000000000000000000000001af3f329e8be154074d8769d1ffa4ee058b1dbc3000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000600000000000000000000000000000000000000000000000000000000000000044095ea7b30000000000000000000000001a1ec25dc08e98e5e93f1104b5e5cdd298707d31000000000000000000000000000000000000000000000000123fd18867a38000000000000000000000000000000000000000000000000000000000000000000000000000000000001a1ec25dc08e98e5e93f1104b5e5cdd298707d310000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000006e55f57552900000000000000000000000000000000000000000000000000000000000000800000000000000000000000001af3f329e8be154074d8769d1ffa4ee058b1dbc3000000000000000000000000000000000000000000000000123fd18867a3800000000000000000000000000000000000000000000000000000000000000000c00000000000000000000000000000000000000000000000000000000000000018756e69737761705065726d69743246656544796e616d6963000000000000000000000000000000000000000000000000000000000000000000000000000006000000000000000000000000001af3f329e8be154074d8769d1ffa4ee058b1dbc300000000000000000000000055d398326f99059ff775485246999027b31979550000000000000000000000000000000000000000000000001216f0a8cfb11c0000000000000000000000000000000000000000000000000011b9f010ce44ebae00000000000000000000000000000000000000000000000000000000000001200000000000000000000000000000000000000000000000000028e0df97f26400000000000000000000000000b28da7bc87a9dd1e60849aa7fcb5da24ea913c42000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000004ce3593564c000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000000a0000000000000000000000000000000000000000000000000000000006a0665e5000000000000000000000000000000000000000000000000000000000000000110000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000002000000000000000000000000000000000000000000000000000000000000003c0000000000000000000000000000000000000000000000000000000000000004000000000000000000000000000000000000000000000000000000000000000800000000000000000000000000000000000000000000000000000000000000003070b0e000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000030000000000000000000000000000000000000000000000000000000000000060000000000000000000000000000000000000000000000000000000000000022000000000000000000000000000000000000000000000000000000000000002a000000000000000000000000000000000000000000000000000000000000001a000000000000000000000000000000000000000000000000000000000000000200000000000000000000000001af3f329e8be154074d8769d1ffa4ee058b1dbc300000000000000000000000000000000000000000000000000000000000000800000000000000000000000000000000000000000000000001216f0a8cfb11c0000000000000000000000000000000000000000000000000011bbc0efb959f2d70000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000002000000000000000000000000055d398326f99059ff775485246999027b319795500000000000000000000000000000000000000000000000000000000000000640000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000a0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000600000000000000000000000001af3f329e8be154074d8769d1ffa4ee058b1dbc300000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000006000000000000000000000000055d398326f99059ff775485246999027b3197955000000000000000000000000c590175e458b83680867afd273527ff58f74c02b0000000000000000000000000000000000000000000000000000000000000000756e69780000b2c5de0b0000000000000000000000000000000000004a00000000000000000000000000000000000000000000000000000000000000000000000000000055d398326f99059ff775485246999027b3197955000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000600000000000000000000000000000000000000000000000000000000000000044a9059cbb000000000000000000000000e3478b0bb1a5084567c319096437924948be196400000000000000000000000000000000000000000000000000c11eb3cc1e44ab00000000000000000000000000000000000000000000000000000000c001a0d4d9d08f1ffcd7eea62b583459433f9cc46a0b344373f865d36ae28961d387eba015771933aa63ae6bc0c0430663795cf8dc187ffa69881d855da343fb93934499", - "s": "0x15771933aa63ae6bc0c0430663795cf8dc187ffa69881d855da343fb93934499", - "selectedGasFeeToken": "0x55d398326f99059ff775485246999027b3197955", - "status": "confirmed", - "submittedTime": 1778802405748, - "time": 1778802403088, - "txParams": { - "data": "0xe9ae5c530101000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000004000000000000000000000000000000000000000000000000000000000000013600000000000000000000000000000000000000000000000000000000000000020000000000000000000000000000000000000000000000000000000000000000500000000000000000000000000000000000000000000000000000000000000a0000000000000000000000000000000000000000000000000000000000000018000000000000000000000000000000000000000000000000000000000000009e00000000000000000000000000000000000000000000000000000000000000ac00000000000000000000000000000000000000000000000000000000000001240000000000000000000000000f8a0bf9cf54bb92f17374d9e9a321e6a111a51bd000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000600000000000000000000000000000000000000000000000000000000000000044095ea7b30000000000000000000000001a1ec25dc08e98e5e93f1104b5e5cdd298707d310000000000000000000000000000000000000000000000000298348bed9600b7000000000000000000000000000000000000000000000000000000000000000000000000000000001a1ec25dc08e98e5e93f1104b5e5cdd298707d310000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000007c55f5755290000000000000000000000000000000000000000000000000000000000000080000000000000000000000000f8a0bf9cf54bb92f17374d9e9a321e6a111a51bd0000000000000000000000000000000000000000000000000298348bed9600b700000000000000000000000000000000000000000000000000000000000000c00000000000000000000000000000000000000000000000000000000000000018756e69737761705065726d69743246656544796e616d6963000000000000000000000000000000000000000000000000000000000000000000000000000006e0000000000000000000000000f8a0bf9cf54bb92f17374d9e9a321e6a111a51bd00000000000000000000000055d398326f99059ff775485246999027b31979550000000000000000000000000000000000000000000000000298348bed9600b70000000000000000000000000000000000000000000000001a85de2ff398a0430000000000000000000000000000000000000000000000000000000000000120000000000000000000000000000000000000000000000000003d28b1b5744116000000000000000000000000b28da7bc87a9dd1e60849aa7fcb5da24ea913c42000000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000000005ae3593564c000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000000a0000000000000000000000000000000000000000000000000000000006a0665e5000000000000000000000000000000000000000000000000000000000000000110000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000002000000000000000000000000000000000000000000000000000000000000004a0000000000000000000000000000000000000000000000000000000000000004000000000000000000000000000000000000000000000000000000000000000800000000000000000000000000000000000000000000000000000000000000003070b0e0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000300000000000000000000000000000000000000000000000000000000000000600000000000000000000000000000000000000000000000000000000000000300000000000000000000000000000000000000000000000000000000000000038000000000000000000000000000000000000000000000000000000000000002800000000000000000000000000000000000000000000000000000000000000020000000000000000000000000f8a0bf9cf54bb92f17374d9e9a321e6a111a51bd00000000000000000000000000000000000000000000000000000000000000800000000000000000000000000000000000000000000000000298348bed9600b70000000000000000000000000000000000000000000000001ac48b72bc0641c30000000000000000000000000000000000000000000000000000000000000002000000000000000000000000000000000000000000000000000000000000004000000000000000000000000000000000000000000000000000000000000001000000000000000000000000008ac76a51cc950d9822d68b83fe1ad97b32cd580d0000000000000000000000000000000000000000000000000000000000000bb8000000000000000000000000000000000000000000000000000000000000003c000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000a0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000055d398326f99059ff775485246999027b319795500000000000000000000000000000000000000000000000000000000000000010000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000060000000000000000000000000f8a0bf9cf54bb92f17374d9e9a321e6a111a51bd00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000006000000000000000000000000055d398326f99059ff775485246999027b3197955000000000000000000000000c590175e458b83680867afd273527ff58f74c02b0000000000000000000000000000000000000000000000000000000000000000756e69780000b2c5de0b0000000000000000000000000000000000003d0000000000000000000000000000000000000000000000000000000000000000000000000000001af3f329e8be154074d8769d1ffa4ee058b1dbc3000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000600000000000000000000000000000000000000000000000000000000000000044095ea7b30000000000000000000000001a1ec25dc08e98e5e93f1104b5e5cdd298707d31000000000000000000000000000000000000000000000000123fd18867a38000000000000000000000000000000000000000000000000000000000000000000000000000000000001a1ec25dc08e98e5e93f1104b5e5cdd298707d310000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000006e55f57552900000000000000000000000000000000000000000000000000000000000000800000000000000000000000001af3f329e8be154074d8769d1ffa4ee058b1dbc3000000000000000000000000000000000000000000000000123fd18867a3800000000000000000000000000000000000000000000000000000000000000000c00000000000000000000000000000000000000000000000000000000000000018756e69737761705065726d69743246656544796e616d6963000000000000000000000000000000000000000000000000000000000000000000000000000006000000000000000000000000001af3f329e8be154074d8769d1ffa4ee058b1dbc300000000000000000000000055d398326f99059ff775485246999027b31979550000000000000000000000000000000000000000000000001216f0a8cfb11c0000000000000000000000000000000000000000000000000011b9f010ce44ebae00000000000000000000000000000000000000000000000000000000000001200000000000000000000000000000000000000000000000000028e0df97f26400000000000000000000000000b28da7bc87a9dd1e60849aa7fcb5da24ea913c42000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000004ce3593564c000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000000a0000000000000000000000000000000000000000000000000000000006a0665e5000000000000000000000000000000000000000000000000000000000000000110000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000002000000000000000000000000000000000000000000000000000000000000003c0000000000000000000000000000000000000000000000000000000000000004000000000000000000000000000000000000000000000000000000000000000800000000000000000000000000000000000000000000000000000000000000003070b0e000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000030000000000000000000000000000000000000000000000000000000000000060000000000000000000000000000000000000000000000000000000000000022000000000000000000000000000000000000000000000000000000000000002a000000000000000000000000000000000000000000000000000000000000001a000000000000000000000000000000000000000000000000000000000000000200000000000000000000000001af3f329e8be154074d8769d1ffa4ee058b1dbc300000000000000000000000000000000000000000000000000000000000000800000000000000000000000000000000000000000000000001216f0a8cfb11c0000000000000000000000000000000000000000000000000011bbc0efb959f2d70000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000002000000000000000000000000055d398326f99059ff775485246999027b319795500000000000000000000000000000000000000000000000000000000000000640000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000a0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000600000000000000000000000001af3f329e8be154074d8769d1ffa4ee058b1dbc300000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000006000000000000000000000000055d398326f99059ff775485246999027b3197955000000000000000000000000c590175e458b83680867afd273527ff58f74c02b0000000000000000000000000000000000000000000000000000000000000000756e69780000b2c5de0b0000000000000000000000000000000000004a00000000000000000000000000000000000000000000000000000000000000000000000000000055d398326f99059ff775485246999027b3197955000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000600000000000000000000000000000000000000000000000000000000000000044a9059cbb000000000000000000000000e3478b0bb1a5084567c319096437924948be196400000000000000000000000000000000000000000000000000c11eb3cc1e44ab00000000000000000000000000000000000000000000000000000000", - "from": "0x141d32a89a1e0a5ef360034a2f60a4b917c18838", - "gas": "0x85bfd", - "gasLimit": "0x85bfd", - "maxFeePerGas": "0x3938700", - "maxPriorityFeePerGas": "0x3938700", - "to": "0x141d32a89a1e0a5ef360034a2f60a4b917c18838", - "type": "0x2", - "value": "0x0" - }, - "txReceipt": { - "blockHash": "0x14a973a77fc71f318f1ef60efb6e7dbbbf8b27ee99bfd82e13bedbd7bc9cce42", - "blockNumber": "0x5dc61a6", - "contractAddress": null, - "cumulativeGasUsed": "0xd3bb2", - "effectiveGasPrice": "0x3938700", - "from": "0xb01caea8c6c47bbf4f4b4c5080ca642043359c2e", - "gasUsed": "0xa559c", - "logs": [ - { - "address": "0x04658b29f6b82ed55274221a06fc97d318e25416", - "blockHash": "0x14a973a77fc71f318f1ef60efb6e7dbbbf8b27ee99bfd82e13bedbd7bc9cce42", - "blockNumber": "0x5dc61a6", - "blockTimestamp": "0x6a065ee4", - "data": "0x00000000000000000000000000000000000000000000000000000000000000010000000000000000000000000000000000000000000000000000000000000001", - "logIndex": "0x4", - "removed": false, - "topics": [ - "0x449da07f2c06c9d1a6b19d2454ffe749e8cf991d22f686e076a1a4844c5ff370", - "0x000000000000000000000000db9b1e94b5b69df7e401ddbede43491141047db3", - "0x000000000000000000000000b01caea8c6c47bbf4f4b4c5080ca642043359c2e", - "0xefc7b06b339cf01850f71b5eb84fbd0c3c3f22b072fadc9b70973747c67f875c" - ], - "transactionHash": "0x85c243aeeb7065fbc8f33c0f1a5dd352b911420280c4ff947264d8fb9fdbc6b1", - "transactionIndex": "0x2" - }, - { - "address": "0xf8a0bf9cf54bb92f17374d9e9a321e6a111a51bd", - "blockHash": "0x14a973a77fc71f318f1ef60efb6e7dbbbf8b27ee99bfd82e13bedbd7bc9cce42", - "blockNumber": "0x5dc61a6", - "blockTimestamp": "0x6a065ee4", - "data": "0x0000000000000000000000000000000000000000000000000298348bed9600b7", - "logIndex": "0x5", - "removed": false, - "topics": [ - "0x8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925", - "0x000000000000000000000000141d32a89a1e0a5ef360034a2f60a4b917c18838", - "0x0000000000000000000000001a1ec25dc08e98e5e93f1104b5e5cdd298707d31" - ], - "transactionHash": "0x85c243aeeb7065fbc8f33c0f1a5dd352b911420280c4ff947264d8fb9fdbc6b1", - "transactionIndex": "0x2" - }, - { - "address": "0xf8a0bf9cf54bb92f17374d9e9a321e6a111a51bd", - "blockHash": "0x14a973a77fc71f318f1ef60efb6e7dbbbf8b27ee99bfd82e13bedbd7bc9cce42", - "blockNumber": "0x5dc61a6", - "blockTimestamp": "0x6a065ee4", - "data": "0x0000000000000000000000000000000000000000000000000298348bed9600b7", - "logIndex": "0x6", - "removed": false, - "topics": [ - "0xddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef", - "0x000000000000000000000000141d32a89a1e0a5ef360034a2f60a4b917c18838", - "0x000000000000000000000000c590175e458b83680867afd273527ff58f74c02b" - ], - "transactionHash": "0x85c243aeeb7065fbc8f33c0f1a5dd352b911420280c4ff947264d8fb9fdbc6b1", - "transactionIndex": "0x2" - }, - { - "address": "0xf8a0bf9cf54bb92f17374d9e9a321e6a111a51bd", - "blockHash": "0x14a973a77fc71f318f1ef60efb6e7dbbbf8b27ee99bfd82e13bedbd7bc9cce42", - "blockNumber": "0x5dc61a6", - "blockTimestamp": "0x6a065ee4", - "data": "0x0000000000000000000000000000000000000000000000000000000000000000", - "logIndex": "0x7", - "removed": false, - "topics": [ - "0x8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925", - "0x000000000000000000000000141d32a89a1e0a5ef360034a2f60a4b917c18838", - "0x0000000000000000000000001a1ec25dc08e98e5e93f1104b5e5cdd298707d31" - ], - "transactionHash": "0x85c243aeeb7065fbc8f33c0f1a5dd352b911420280c4ff947264d8fb9fdbc6b1", - "transactionIndex": "0x2" - }, - { - "address": "0x000000000022d473030f116ddee9f6b43ac78ba3", - "blockHash": "0x14a973a77fc71f318f1ef60efb6e7dbbbf8b27ee99bfd82e13bedbd7bc9cce42", - "blockNumber": "0x5dc61a6", - "blockTimestamp": "0x6a065ee4", - "data": "0x0000000000000000000000000000000000000000000000000298348bed9600b7000000000000000000000000000000000000000000000000000000006a065ee4", - "logIndex": "0x8", - "removed": false, - "topics": [ - "0xda9fa7c1b00402c17d0161b249b1ab8bbec047c5a52207b9c112deffd817036b", - "0x000000000000000000000000c590175e458b83680867afd273527ff58f74c02b", - "0x000000000000000000000000f8a0bf9cf54bb92f17374d9e9a321e6a111a51bd", - "0x0000000000000000000000001906c1d672b88cd1b9ac7593301ca990f94eae07" - ], - "transactionHash": "0x85c243aeeb7065fbc8f33c0f1a5dd352b911420280c4ff947264d8fb9fdbc6b1", - "transactionIndex": "0x2" - }, - { - "address": "0x28e2ea090877bf75740558f6bfb36a5ffee9e9df", - "blockHash": "0x14a973a77fc71f318f1ef60efb6e7dbbbf8b27ee99bfd82e13bedbd7bc9cce42", - "blockNumber": "0x5dc61a6", - "blockTimestamp": "0x6a065ee4", - "data": "0x0000000000000000000000000000000000000000000000001b4e1aa7c448cbfffffffffffffffffffffffffffffffffffffffffffffffffffd67cb741269ff4900000000000000000000000000000000000000004edebf580ed80de2dea2c00300000000000000000000000000000000000000000000001127a66d137a2cba69ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffa4030000000000000000000000000000000000000000000000000000000000000bb8", - "logIndex": "0x9", - "removed": false, - "topics": [ - "0x40e9cecb9f5f1f1c5b9c97dec2917b7ee92e57ba5563708daca94dd84ad7112f", - "0xde0466a03cdfda060d385b4973a474f65b3d28a4ca9c8a79804d3ef8cb90cd27", - "0x0000000000000000000000001906c1d672b88cd1b9ac7593301ca990f94eae07" - ], - "transactionHash": "0x85c243aeeb7065fbc8f33c0f1a5dd352b911420280c4ff947264d8fb9fdbc6b1", - "transactionIndex": "0x2" - }, - { - "address": "0x28e2ea090877bf75740558f6bfb36a5ffee9e9df", - "blockHash": "0x14a973a77fc71f318f1ef60efb6e7dbbbf8b27ee99bfd82e13bedbd7bc9cce42", - "blockNumber": "0x5dc61a6", - "blockTimestamp": "0x6a065ee4", - "data": "0x0000000000000000000000000000000000000000000000001b4d9cd41d16cbc4ffffffffffffffffffffffffffffffffffffffffffffffffe4b1e5583bb7340100000000000000000000000000000000000000010002458af6812d050a950503000000000000000000000000000000000000000000fe6070bf9659fdaef8d9b400000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001", - "logIndex": "0xa", - "removed": false, - "topics": [ - "0x40e9cecb9f5f1f1c5b9c97dec2917b7ee92e57ba5563708daca94dd84ad7112f", - "0x8321c1f53959b14ece4b5400e60aeac59e7b6b8bac446f2f0a89b9e84e68a08a", - "0x0000000000000000000000001906c1d672b88cd1b9ac7593301ca990f94eae07" - ], - "transactionHash": "0x85c243aeeb7065fbc8f33c0f1a5dd352b911420280c4ff947264d8fb9fdbc6b1", - "transactionIndex": "0x2" - }, - { - "address": "0xf8a0bf9cf54bb92f17374d9e9a321e6a111a51bd", - "blockHash": "0x14a973a77fc71f318f1ef60efb6e7dbbbf8b27ee99bfd82e13bedbd7bc9cce42", - "blockNumber": "0x5dc61a6", - "blockTimestamp": "0x6a065ee4", - "data": "0x0000000000000000000000000000000000000000000000000298348bed9600b7", - "logIndex": "0xb", - "removed": false, - "topics": [ - "0xddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef", - "0x000000000000000000000000c590175e458b83680867afd273527ff58f74c02b", - "0x00000000000000000000000028e2ea090877bf75740558f6bfb36a5ffee9e9df" - ], - "transactionHash": "0x85c243aeeb7065fbc8f33c0f1a5dd352b911420280c4ff947264d8fb9fdbc6b1", - "transactionIndex": "0x2" - }, - { - "address": "0xf8a0bf9cf54bb92f17374d9e9a321e6a111a51bd", - "blockHash": "0x14a973a77fc71f318f1ef60efb6e7dbbbf8b27ee99bfd82e13bedbd7bc9cce42", - "blockNumber": "0x5dc61a6", - "blockTimestamp": "0x6a065ee4", - "data": "0xfffffffffffffffffffffffffffffffffffffffffffffffa7a8f6ad09d677858", - "logIndex": "0xc", - "removed": false, - "topics": [ - "0x8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925", - "0x000000000000000000000000c590175e458b83680867afd273527ff58f74c02b", - "0x000000000000000000000000000000000022d473030f116ddee9f6b43ac78ba3" - ], - "transactionHash": "0x85c243aeeb7065fbc8f33c0f1a5dd352b911420280c4ff947264d8fb9fdbc6b1", - "transactionIndex": "0x2" - }, - { - "address": "0x55d398326f99059ff775485246999027b3197955", - "blockHash": "0x14a973a77fc71f318f1ef60efb6e7dbbbf8b27ee99bfd82e13bedbd7bc9cce42", - "blockNumber": "0x5dc61a6", - "blockTimestamp": "0x6a065ee4", - "data": "0x0000000000000000000000000000000000000000000000001b4d9cd41d16cbc4", - "logIndex": "0xd", - "removed": false, - "topics": [ - "0xddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef", - "0x00000000000000000000000028e2ea090877bf75740558f6bfb36a5ffee9e9df", - "0x000000000000000000000000c590175e458b83680867afd273527ff58f74c02b" - ], - "transactionHash": "0x85c243aeeb7065fbc8f33c0f1a5dd352b911420280c4ff947264d8fb9fdbc6b1", - "transactionIndex": "0x2" - }, - { - "address": "0x55d398326f99059ff775485246999027b3197955", - "blockHash": "0x14a973a77fc71f318f1ef60efb6e7dbbbf8b27ee99bfd82e13bedbd7bc9cce42", - "blockNumber": "0x5dc61a6", - "blockTimestamp": "0x6a065ee4", - "data": "0x000000000000000000000000000000000000000000000000003d28b1b5744116", - "logIndex": "0xe", - "removed": false, - "topics": [ - "0xddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef", - "0x000000000000000000000000c590175e458b83680867afd273527ff58f74c02b", - "0x000000000000000000000000b28da7bc87a9dd1e60849aa7fcb5da24ea913c42" - ], - "transactionHash": "0x85c243aeeb7065fbc8f33c0f1a5dd352b911420280c4ff947264d8fb9fdbc6b1", - "transactionIndex": "0x2" - }, - { - "address": "0x55d398326f99059ff775485246999027b3197955", - "blockHash": "0x14a973a77fc71f318f1ef60efb6e7dbbbf8b27ee99bfd82e13bedbd7bc9cce42", - "blockNumber": "0x5dc61a6", - "blockTimestamp": "0x6a065ee4", - "data": "0x0000000000000000000000000000000000000000000000001b10742267a28aae", - "logIndex": "0xf", - "removed": false, - "topics": [ - "0xddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef", - "0x000000000000000000000000c590175e458b83680867afd273527ff58f74c02b", - "0x000000000000000000000000141d32a89a1e0a5ef360034a2f60a4b917c18838" - ], - "transactionHash": "0x85c243aeeb7065fbc8f33c0f1a5dd352b911420280c4ff947264d8fb9fdbc6b1", - "transactionIndex": "0x2" - }, - { - "address": "0x1a1ec25dc08e98e5e93f1104b5e5cdd298707d31", - "blockHash": "0x14a973a77fc71f318f1ef60efb6e7dbbbf8b27ee99bfd82e13bedbd7bc9cce42", - "blockNumber": "0x5dc61a6", - "blockTimestamp": "0x6a065ee4", - "data": "0x", - "logIndex": "0x10", - "removed": false, - "topics": [ - "0xbeee1e6e7fe307ddcf84b0a16137a4430ad5e2480fc4f4a8e250ab56ccd7630d", - "0x9cc844e2828788f25f9d674f9dfb6a66ef6b8c38360c0ec1fa99e0b18c32eae8", - "0x000000000000000000000000141d32a89a1e0a5ef360034a2f60a4b917c18838" - ], - "transactionHash": "0x85c243aeeb7065fbc8f33c0f1a5dd352b911420280c4ff947264d8fb9fdbc6b1", - "transactionIndex": "0x2" - }, - { - "address": "0x1af3f329e8be154074d8769d1ffa4ee058b1dbc3", - "blockHash": "0x14a973a77fc71f318f1ef60efb6e7dbbbf8b27ee99bfd82e13bedbd7bc9cce42", - "blockNumber": "0x5dc61a6", - "blockTimestamp": "0x6a065ee4", - "data": "0x000000000000000000000000000000000000000000000000123fd18867a38000", - "logIndex": "0x11", - "removed": false, - "topics": [ - "0x8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925", - "0x000000000000000000000000141d32a89a1e0a5ef360034a2f60a4b917c18838", - "0x0000000000000000000000001a1ec25dc08e98e5e93f1104b5e5cdd298707d31" - ], - "transactionHash": "0x85c243aeeb7065fbc8f33c0f1a5dd352b911420280c4ff947264d8fb9fdbc6b1", - "transactionIndex": "0x2" - }, - { - "address": "0x1af3f329e8be154074d8769d1ffa4ee058b1dbc3", - "blockHash": "0x14a973a77fc71f318f1ef60efb6e7dbbbf8b27ee99bfd82e13bedbd7bc9cce42", - "blockNumber": "0x5dc61a6", - "blockTimestamp": "0x6a065ee4", - "data": "0x000000000000000000000000000000000000000000000000123fd18867a38000", - "logIndex": "0x12", - "removed": false, - "topics": [ - "0xddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef", - "0x000000000000000000000000141d32a89a1e0a5ef360034a2f60a4b917c18838", - "0x000000000000000000000000c590175e458b83680867afd273527ff58f74c02b" - ], - "transactionHash": "0x85c243aeeb7065fbc8f33c0f1a5dd352b911420280c4ff947264d8fb9fdbc6b1", - "transactionIndex": "0x2" - }, - { - "address": "0x1af3f329e8be154074d8769d1ffa4ee058b1dbc3", - "blockHash": "0x14a973a77fc71f318f1ef60efb6e7dbbbf8b27ee99bfd82e13bedbd7bc9cce42", - "blockNumber": "0x5dc61a6", - "blockTimestamp": "0x6a065ee4", - "data": "0x0000000000000000000000000000000000000000000000000000000000000000", - "logIndex": "0x13", - "removed": false, - "topics": [ - "0x8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925", - "0x000000000000000000000000141d32a89a1e0a5ef360034a2f60a4b917c18838", - "0x0000000000000000000000001a1ec25dc08e98e5e93f1104b5e5cdd298707d31" - ], - "transactionHash": "0x85c243aeeb7065fbc8f33c0f1a5dd352b911420280c4ff947264d8fb9fdbc6b1", - "transactionIndex": "0x2" - }, - { - "address": "0x000000000022d473030f116ddee9f6b43ac78ba3", - "blockHash": "0x14a973a77fc71f318f1ef60efb6e7dbbbf8b27ee99bfd82e13bedbd7bc9cce42", - "blockNumber": "0x5dc61a6", - "blockTimestamp": "0x6a065ee4", - "data": "0x0000000000000000000000000000000000000000000000001216f0a8cfb11c00000000000000000000000000000000000000000000000000000000006a065ee4", - "logIndex": "0x14", - "removed": false, - "topics": [ - "0xda9fa7c1b00402c17d0161b249b1ab8bbec047c5a52207b9c112deffd817036b", - "0x000000000000000000000000c590175e458b83680867afd273527ff58f74c02b", - "0x0000000000000000000000001af3f329e8be154074d8769d1ffa4ee058b1dbc3", - "0x0000000000000000000000001906c1d672b88cd1b9ac7593301ca990f94eae07" - ], - "transactionHash": "0x85c243aeeb7065fbc8f33c0f1a5dd352b911420280c4ff947264d8fb9fdbc6b1", - "transactionIndex": "0x2" - }, - { - "address": "0x28e2ea090877bf75740558f6bfb36a5ffee9e9df", - "blockHash": "0x14a973a77fc71f318f1ef60efb6e7dbbbf8b27ee99bfd82e13bedbd7bc9cce42", - "blockNumber": "0x5dc61a6", - "blockTimestamp": "0x6a065ee4", - "data": "0xffffffffffffffffffffffffffffffffffffffffffffffffede90f57304ee40000000000000000000000000000000000000000000000000012168c79a37558fb0000000000000000000000000000000000000001000080ea2cad5e018016fadd000000000000000000000000000000000000000000087b92bf3c2710fa8e764d00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000064", - "logIndex": "0x15", - "removed": false, - "topics": [ - "0x40e9cecb9f5f1f1c5b9c97dec2917b7ee92e57ba5563708daca94dd84ad7112f", - "0x1eb0be4b2330177969b56f8a813d9ffa0d01ed3a95da8618482bb1cb42805656", - "0x0000000000000000000000001906c1d672b88cd1b9ac7593301ca990f94eae07" - ], - "transactionHash": "0x85c243aeeb7065fbc8f33c0f1a5dd352b911420280c4ff947264d8fb9fdbc6b1", - "transactionIndex": "0x2" - }, - { - "address": "0x1af3f329e8be154074d8769d1ffa4ee058b1dbc3", - "blockHash": "0x14a973a77fc71f318f1ef60efb6e7dbbbf8b27ee99bfd82e13bedbd7bc9cce42", - "blockNumber": "0x5dc61a6", - "blockTimestamp": "0x6a065ee4", - "data": "0x0000000000000000000000000000000000000000000000001216f0a8cfb11c00", - "logIndex": "0x16", - "removed": false, - "topics": [ - "0xddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef", - "0x000000000000000000000000c590175e458b83680867afd273527ff58f74c02b", - "0x00000000000000000000000028e2ea090877bf75740558f6bfb36a5ffee9e9df" - ], - "transactionHash": "0x85c243aeeb7065fbc8f33c0f1a5dd352b911420280c4ff947264d8fb9fdbc6b1", - "transactionIndex": "0x2" - }, - { - "address": "0x1af3f329e8be154074d8769d1ffa4ee058b1dbc3", - "blockHash": "0x14a973a77fc71f318f1ef60efb6e7dbbbf8b27ee99bfd82e13bedbd7bc9cce42", - "blockNumber": "0x5dc61a6", - "blockTimestamp": "0x6a065ee4", - "data": "0xfffffffffffffffffffffffffffffffffffffffffffffe077775c79c460b0ec3", - "logIndex": "0x17", - "removed": false, - "topics": [ - "0x8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925", - "0x000000000000000000000000c590175e458b83680867afd273527ff58f74c02b", - "0x000000000000000000000000000000000022d473030f116ddee9f6b43ac78ba3" - ], - "transactionHash": "0x85c243aeeb7065fbc8f33c0f1a5dd352b911420280c4ff947264d8fb9fdbc6b1", - "transactionIndex": "0x2" - }, - { - "address": "0x55d398326f99059ff775485246999027b3197955", - "blockHash": "0x14a973a77fc71f318f1ef60efb6e7dbbbf8b27ee99bfd82e13bedbd7bc9cce42", - "blockNumber": "0x5dc61a6", - "blockTimestamp": "0x6a065ee4", - "data": "0x00000000000000000000000000000000000000000000000012168c79a37558fb", - "logIndex": "0x18", - "removed": false, - "topics": [ - "0xddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef", - "0x00000000000000000000000028e2ea090877bf75740558f6bfb36a5ffee9e9df", - "0x000000000000000000000000c590175e458b83680867afd273527ff58f74c02b" - ], - "transactionHash": "0x85c243aeeb7065fbc8f33c0f1a5dd352b911420280c4ff947264d8fb9fdbc6b1", - "transactionIndex": "0x2" - }, - { - "address": "0x1af3f329e8be154074d8769d1ffa4ee058b1dbc3", - "blockHash": "0x14a973a77fc71f318f1ef60efb6e7dbbbf8b27ee99bfd82e13bedbd7bc9cce42", - "blockNumber": "0x5dc61a6", - "blockTimestamp": "0x6a065ee4", - "data": "0x0000000000000000000000000000000000000000000000000028e0df97f26400", - "logIndex": "0x19", - "removed": false, - "topics": [ - "0xddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef", - "0x000000000000000000000000c590175e458b83680867afd273527ff58f74c02b", - "0x000000000000000000000000b28da7bc87a9dd1e60849aa7fcb5da24ea913c42" - ], - "transactionHash": "0x85c243aeeb7065fbc8f33c0f1a5dd352b911420280c4ff947264d8fb9fdbc6b1", - "transactionIndex": "0x2" - }, - { - "address": "0x55d398326f99059ff775485246999027b3197955", - "blockHash": "0x14a973a77fc71f318f1ef60efb6e7dbbbf8b27ee99bfd82e13bedbd7bc9cce42", - "blockNumber": "0x5dc61a6", - "blockTimestamp": "0x6a065ee4", - "data": "0x00000000000000000000000000000000000000000000000012168c79a37558fb", - "logIndex": "0x1a", - "removed": false, - "topics": [ - "0xddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef", - "0x000000000000000000000000c590175e458b83680867afd273527ff58f74c02b", - "0x000000000000000000000000141d32a89a1e0a5ef360034a2f60a4b917c18838" - ], - "transactionHash": "0x85c243aeeb7065fbc8f33c0f1a5dd352b911420280c4ff947264d8fb9fdbc6b1", - "transactionIndex": "0x2" - }, - { - "address": "0x1a1ec25dc08e98e5e93f1104b5e5cdd298707d31", - "blockHash": "0x14a973a77fc71f318f1ef60efb6e7dbbbf8b27ee99bfd82e13bedbd7bc9cce42", - "blockNumber": "0x5dc61a6", - "blockTimestamp": "0x6a065ee4", - "data": "0x", - "logIndex": "0x1b", - "removed": false, - "topics": [ - "0xbeee1e6e7fe307ddcf84b0a16137a4430ad5e2480fc4f4a8e250ab56ccd7630d", - "0x9cc844e2828788f25f9d674f9dfb6a66ef6b8c38360c0ec1fa99e0b18c32eae8", - "0x000000000000000000000000141d32a89a1e0a5ef360034a2f60a4b917c18838" - ], - "transactionHash": "0x85c243aeeb7065fbc8f33c0f1a5dd352b911420280c4ff947264d8fb9fdbc6b1", - "transactionIndex": "0x2" - }, - { - "address": "0x55d398326f99059ff775485246999027b3197955", - "blockHash": "0x14a973a77fc71f318f1ef60efb6e7dbbbf8b27ee99bfd82e13bedbd7bc9cce42", - "blockNumber": "0x5dc61a6", - "blockTimestamp": "0x6a065ee4", - "data": "0x00000000000000000000000000000000000000000000000000c11eb3cc1e44ab", - "logIndex": "0x1c", - "removed": false, - "topics": [ - "0xddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef", - "0x000000000000000000000000141d32a89a1e0a5ef360034a2f60a4b917c18838", - "0x000000000000000000000000e3478b0bb1a5084567c319096437924948be1964" - ], - "transactionHash": "0x85c243aeeb7065fbc8f33c0f1a5dd352b911420280c4ff947264d8fb9fdbc6b1", - "transactionIndex": "0x2" - }, - { - "address": "0xdb9b1e94b5b69df7e401ddbede43491141047db3", - "blockHash": "0x14a973a77fc71f318f1ef60efb6e7dbbbf8b27ee99bfd82e13bedbd7bc9cce42", - "blockNumber": "0x5dc61a6", - "blockTimestamp": "0x6a065ee4", - "data": "0x00000000000000000000000000000000000000000000000000000000000000200000000000000000000000000000000000000000000000000000000000000a11000000000000000000000000141d32a89a1e0a5ef360034a2f60a4b917c18838ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff00000000000000000000000000000000000000000000000000000000000000c0968ed8fd53202eb5ee4bb8296295cc65da3fe5e28ba8c681bc0f3abffae60b9500000000000000000000000000000000000000000000000000000000000015e000000000000000000000000000000000000000000000000000000000000000020000000000000000000000000000000000000000000000000000000000000040000000000000000000000000000000000000000000000000000000000000010000000000000000000000000004658b29f6b82ed55274221a06fc97d318e25416000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000000a00000000000000000000000000000000000000000000000000000000000000020000000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000000000000000000000000000000000001e141e455d08721dd5bcda1baa6ea5633afd5017000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000013e000000000000000000000000000000000000000000000000000000000000013600000000000000000000000000000000000000000000000000000000000000020000000000000000000000000000000000000000000000000000000000000000500000000000000000000000000000000000000000000000000000000000000a0000000000000000000000000000000000000000000000000000000000000018000000000000000000000000000000000000000000000000000000000000009e00000000000000000000000000000000000000000000000000000000000000ac00000000000000000000000000000000000000000000000000000000000001240000000000000000000000000f8a0bf9cf54bb92f17374d9e9a321e6a111a51bd000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000600000000000000000000000000000000000000000000000000000000000000044095ea7b30000000000000000000000001a1ec25dc08e98e5e93f1104b5e5cdd298707d310000000000000000000000000000000000000000000000000298348bed9600b7000000000000000000000000000000000000000000000000000000000000000000000000000000001a1ec25dc08e98e5e93f1104b5e5cdd298707d310000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000007c55f5755290000000000000000000000000000000000000000000000000000000000000080000000000000000000000000f8a0bf9cf54bb92f17374d9e9a321e6a111a51bd0000000000000000000000000000000000000000000000000298348bed9600b700000000000000000000000000000000000000000000000000000000000000c00000000000000000000000000000000000000000000000000000000000000018756e69737761705065726d69743246656544796e616d6963000000000000000000000000000000000000000000000000000000000000000000000000000006e0000000000000000000000000f8a0bf9cf54bb92f17374d9e9a321e6a111a51bd00000000000000000000000055d398326f99059ff775485246999027b31979550000000000000000000000000000000000000000000000000298348bed9600b70000000000000000000000000000000000000000000000001a85de2ff398a0430000000000000000000000000000000000000000000000000000000000000120000000000000000000000000000000000000000000000000003d28b1b5744116000000000000000000000000b28da7bc87a9dd1e60849aa7fcb5da24ea913c42000000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000000005ae3593564c000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000000a0000000000000000000000000000000000000000000000000000000006a0665e5000000000000000000000000000000000000000000000000000000000000000110000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000002000000000000000000000000000000000000000000000000000000000000004a0000000000000000000000000000000000000000000000000000000000000004000000000000000000000000000000000000000000000000000000000000000800000000000000000000000000000000000000000000000000000000000000003070b0e0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000300000000000000000000000000000000000000000000000000000000000000600000000000000000000000000000000000000000000000000000000000000300000000000000000000000000000000000000000000000000000000000000038000000000000000000000000000000000000000000000000000000000000002800000000000000000000000000000000000000000000000000000000000000020000000000000000000000000f8a0bf9cf54bb92f17374d9e9a321e6a111a51bd00000000000000000000000000000000000000000000000000000000000000800000000000000000000000000000000000000000000000000298348bed9600b70000000000000000000000000000000000000000000000001ac48b72bc0641c30000000000000000000000000000000000000000000000000000000000000002000000000000000000000000000000000000000000000000000000000000004000000000000000000000000000000000000000000000000000000000000001000000000000000000000000008ac76a51cc950d9822d68b83fe1ad97b32cd580d0000000000000000000000000000000000000000000000000000000000000bb8000000000000000000000000000000000000000000000000000000000000003c000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000a0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000055d398326f99059ff775485246999027b319795500000000000000000000000000000000000000000000000000000000000000010000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000060000000000000000000000000f8a0bf9cf54bb92f17374d9e9a321e6a111a51bd00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000006000000000000000000000000055d398326f99059ff775485246999027b3197955000000000000000000000000c590175e458b83680867afd273527ff58f74c02b0000000000000000000000000000000000000000000000000000000000000000756e69780000b2c5de0b0000000000000000000000000000000000003d0000000000000000000000000000000000000000000000000000000000000000000000000000001af3f329e8be154074d8769d1ffa4ee058b1dbc3000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000600000000000000000000000000000000000000000000000000000000000000044095ea7b30000000000000000000000001a1ec25dc08e98e5e93f1104b5e5cdd298707d31000000000000000000000000000000000000000000000000123fd18867a38000000000000000000000000000000000000000000000000000000000000000000000000000000000001a1ec25dc08e98e5e93f1104b5e5cdd298707d310000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000006e55f57552900000000000000000000000000000000000000000000000000000000000000800000000000000000000000001af3f329e8be154074d8769d1ffa4ee058b1dbc3000000000000000000000000000000000000000000000000123fd18867a3800000000000000000000000000000000000000000000000000000000000000000c00000000000000000000000000000000000000000000000000000000000000018756e69737761705065726d69743246656544796e616d6963000000000000000000000000000000000000000000000000000000000000000000000000000006000000000000000000000000001af3f329e8be154074d8769d1ffa4ee058b1dbc300000000000000000000000055d398326f99059ff775485246999027b31979550000000000000000000000000000000000000000000000001216f0a8cfb11c0000000000000000000000000000000000000000000000000011b9f010ce44ebae00000000000000000000000000000000000000000000000000000000000001200000000000000000000000000000000000000000000000000028e0df97f26400000000000000000000000000b28da7bc87a9dd1e60849aa7fcb5da24ea913c42000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000004ce3593564c000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000000a0000000000000000000000000000000000000000000000000000000006a0665e5000000000000000000000000000000000000000000000000000000000000000110000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000002000000000000000000000000000000000000000000000000000000000000003c0000000000000000000000000000000000000000000000000000000000000004000000000000000000000000000000000000000000000000000000000000000800000000000000000000000000000000000000000000000000000000000000003070b0e000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000030000000000000000000000000000000000000000000000000000000000000060000000000000000000000000000000000000000000000000000000000000022000000000000000000000000000000000000000000000000000000000000002a000000000000000000000000000000000000000000000000000000000000001a000000000000000000000000000000000000000000000000000000000000000200000000000000000000000001af3f329e8be154074d8769d1ffa4ee058b1dbc300000000000000000000000000000000000000000000000000000000000000800000000000000000000000000000000000000000000000001216f0a8cfb11c0000000000000000000000000000000000000000000000000011bbc0efb959f2d70000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000002000000000000000000000000055d398326f99059ff775485246999027b319795500000000000000000000000000000000000000000000000000000000000000640000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000a0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000600000000000000000000000001af3f329e8be154074d8769d1ffa4ee058b1dbc300000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000006000000000000000000000000055d398326f99059ff775485246999027b3197955000000000000000000000000c590175e458b83680867afd273527ff58f74c02b0000000000000000000000000000000000000000000000000000000000000000756e69780000b2c5de0b0000000000000000000000000000000000004a00000000000000000000000000000000000000000000000000000000000000000000000000000055d398326f99059ff775485246999027b3197955000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000600000000000000000000000000000000000000000000000000000000000000044a9059cbb000000000000000000000000e3478b0bb1a5084567c319096437924948be196400000000000000000000000000000000000000000000000000c11eb3cc1e44ab0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000041ab9573538b3727283d224b0ec2fb72b691b12265f13570849ad290bf491631005e1006510f3ef818902a452315304d5da931c632b8a80f9f1bb68b5c5761aee91b00000000000000000000000000000000000000000000000000000000000000", - "logIndex": "0x1d", - "removed": false, - "topics": [ - "0x40dadaa36c6c2e3d7317e24757451ffb2d603d875f0ad5e92c5dd156573b1873", - "0x000000000000000000000000141d32a89a1e0a5ef360034a2f60a4b917c18838", - "0x000000000000000000000000b01caea8c6c47bbf4f4b4c5080ca642043359c2e" - ], - "transactionHash": "0x85c243aeeb7065fbc8f33c0f1a5dd352b911420280c4ff947264d8fb9fdbc6b1", - "transactionIndex": "0x2" - } - ], - "logsBloom": "0x40010000000000000808000000040800000000000000000840000000000084000040000000000000000010000000000000010000848000000080001000a80000000000810000010007024008020020040000040002000822000000100001100008000200000000000000010000000000900000000000802000000010000100020020000000000001808000020800000000000001000010002000000000000000220000000000000001000000000001008000000040000000000200080000000800080002000000000000000000040000280900100000004040000002000800000030000000000000004200000400020040000001000000000000000000080500", - "status": "0x1", - "to": "0xdb9b1e94b5b69df7e401ddbede43491141047db3", - "transactionHash": "0x85c243aeeb7065fbc8f33c0f1a5dd352b911420280c4ff947264d8fb9fdbc6b1", - "transactionIndex": "0x2", - "type": "0x2" - }, - "type": "swap", - "userEditedGasLimit": false, - "userFeeLevel": "medium", - "v": "0x1", - "verifiedOnBlockchain": true - }, - { - "baseFeePerGas": "0x0", - "batchId": "0xe2d6918e3d7f4b79abbd846c43a1a6ba", - "blockTimestamp": "0x6a0660e4", - "chainId": "0x38", - "defaultGasEstimates": { - "estimateType": "medium", - "gas": "0x42d99", - "maxFeePerGas": "0x2faf080", - "maxPriorityFeePerGas": "0x2faf080" - }, - "delegationAddress": "0x63c0c19a282a1b52b07dd5a65b58948a07dae32b", - "excludeNativeTokenForFee": true, - "gasFeeEstimates": { - "high": { - "maxFeePerGas": "0x2faf080", - "maxPriorityFeePerGas": "0x2faf080" - }, - "low": { - "maxFeePerGas": "0x2faf080", - "maxPriorityFeePerGas": "0x2faf080" - }, - "medium": { - "maxFeePerGas": "0x2faf080", - "maxPriorityFeePerGas": "0x2faf080" - }, - "type": "fee-market" - }, - "gasFeeEstimatesLoaded": true, - "gasLimitNoBuffer": "0x42d99", - "hash": "0x5401970c5672b7b813dd54f1f709604848b2625f0ca64f3e67eeaef4579d0d26", - "id": "5a9bc7a0-4ff0-11f1-8f4f-fd80170bf1a5", - "isGasFeeIncluded": false, - "isGasFeeSponsored": false, - "isGasFeeTokenIgnoredIfBalance": false, - "nestedTransactions": [ - { - "data": "0x095ea7b30000000000000000000000001a1ec25dc08e98e5e93f1104b5e5cdd298707d3100000000000000000000000000000000000000000000000003ebbdcb7fcd807d", - "effectiveGas": 46218, - "feeEstimate": 2773080000000, - "from": "0x141d32a89a1e0a5ef360034a2f60a4b917c18838", - "gas": "0xc83d", - "gasCost": "0", - "gasIncludedFeeData": { - "balanceNeeded": "0x28afe963800", - "currentBalance": "0x163fff2eae00", - "error": "", - "gas": "0xb608", - "maxFeePerGas": "0x39386ff", - "maxPriorityFeePerGas": "0x39386ff" - }, - "maxFeePerGas": "0x2faf080", - "maxPriorityFeePerGas": "0x2faf080", - "to": "0xf8a0bf9cf54bb92f17374d9e9a321e6a111a51bd", - "type": "swapApproval", - "value": "0x0" - }, - { - "data": "0x5f5755290000000000000000000000000000000000000000000000000000000000000080000000000000000000000000f8a0bf9cf54bb92f17374d9e9a321e6a111a51bd00000000000000000000000000000000000000000000000003ebbdcb7fcd807d00000000000000000000000000000000000000000000000000000000000000c0000000000000000000000000000000000000000000000000000000000000001b70616e63616b6553776170526f7574657246656544796e616d696300000000000000000000000000000000000000000000000000000000000000000000000220000000000000000000000000f8a0bf9cf54bb92f17374d9e9a321e6a111a51bd00000000000000000000000055d398326f99059ff775485246999027b319795500000000000000000000000000000000000000000000000003ebbdcb7fcd807d000000000000000000000000000000000000000000000000280162ef76ef688a0000000000000000000000000000000000000000000000000000000000000120000000000000000000000000000000000000000000000000005c3f84e6a5523f000000000000000000000000b28da7bc87a9dd1e60849aa7fcb5da24ea913c42000000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000000000e4472b43f300000000000000000000000000000000000000000000000003ebbdcb7fcd807d000000000000000000000000000000000000000000000000285fec8af4196baa0000000000000000000000000000000000000000000000000000000000000080000000000000000000000000c590175e458b83680867afd273527ff58f74c02b0000000000000000000000000000000000000000000000000000000000000002000000000000000000000000f8a0bf9cf54bb92f17374d9e9a321e6a111a51bd00000000000000000000000055d398326f99059ff775485246999027b319795500000000000000000000000000000000000000000000000000000000ad", - "effectiveGas": 190260, - "feeEstimate": 11415600000000, - "from": "0x141d32a89a1e0a5ef360034a2f60a4b917c18838", - "gas": "0x5954f", - "gasCost": "0", - "gasIncludedFeeData": { - "balanceNeeded": "0xd4fbb8a9900", - "currentBalance": "0x13b500987600", - "error": "", - "gas": "0x3b8df", - "maxFeePerGas": "0x39386ff", - "maxPriorityFeePerGas": "0x39386ff" - }, - "maxFeePerGas": "0x2faf080", - "maxPriorityFeePerGas": "0x2faf080", - "to": "0x1a1ec25DC08e98e5E93F1104B5e5cdD298707d31", - "type": "swap", - "value": "0x0" - } - ], - "networkClientId": "9a1eafde-5f04-434b-b011-e9de5c50baf0", - "origin": "metamask", - "originalGasEstimate": "0x42d99", - "postTxBalance": "0xc87215f1e00", - "r": "0x96bc689b88244941ce2459410d89a79948efa0dd360fa63d380fe458f2fb6e5c", - "rawTx": "0x02f905d138558402faf0808402faf08083042d9994141d32a89a1e0a5ef360034a2f60a4b917c1883880b90564e9ae5c530100000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000004000000000000000000000000000000000000000000000000000000000000005000000000000000000000000000000000000000000000000000000000000000020000000000000000000000000000000000000000000000000000000000000000200000000000000000000000000000000000000000000000000000000000000400000000000000000000000000000000000000000000000000000000000000120000000000000000000000000f8a0bf9cf54bb92f17374d9e9a321e6a111a51bd000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000600000000000000000000000000000000000000000000000000000000000000044095ea7b30000000000000000000000001a1ec25dc08e98e5e93f1104b5e5cdd298707d3100000000000000000000000000000000000000000000000003ebbdcb7fcd807d000000000000000000000000000000000000000000000000000000000000000000000000000000001a1ec25dc08e98e5e93f1104b5e5cdd298707d310000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000003055f5755290000000000000000000000000000000000000000000000000000000000000080000000000000000000000000f8a0bf9cf54bb92f17374d9e9a321e6a111a51bd00000000000000000000000000000000000000000000000003ebbdcb7fcd807d00000000000000000000000000000000000000000000000000000000000000c0000000000000000000000000000000000000000000000000000000000000001b70616e63616b6553776170526f7574657246656544796e616d696300000000000000000000000000000000000000000000000000000000000000000000000220000000000000000000000000f8a0bf9cf54bb92f17374d9e9a321e6a111a51bd00000000000000000000000055d398326f99059ff775485246999027b319795500000000000000000000000000000000000000000000000003ebbdcb7fcd807d000000000000000000000000000000000000000000000000280162ef76ef688a0000000000000000000000000000000000000000000000000000000000000120000000000000000000000000000000000000000000000000005c3f84e6a5523f000000000000000000000000b28da7bc87a9dd1e60849aa7fcb5da24ea913c42000000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000000000e4472b43f300000000000000000000000000000000000000000000000003ebbdcb7fcd807d000000000000000000000000000000000000000000000000285fec8af4196baa0000000000000000000000000000000000000000000000000000000000000080000000000000000000000000c590175e458b83680867afd273527ff58f74c02b0000000000000000000000000000000000000000000000000000000000000002000000000000000000000000f8a0bf9cf54bb92f17374d9e9a321e6a111a51bd00000000000000000000000055d398326f99059ff775485246999027b319795500000000000000000000000000000000000000000000000000000000ad000000000000000000000000000000000000000000000000000000c080a096bc689b88244941ce2459410d89a79948efa0dd360fa63d380fe458f2fb6e5ca04573389a3205a4b9a5516596823113efd11d657c2449ee2ba47f38fe6cf848c2", - "s": "0x4573389a3205a4b9a5516596823113efd11d657c2449ee2ba47f38fe6cf848c2", - "status": "confirmed", - "submittedTime": 1778802916059, - "time": 1778802915610, - "txParams": { - "data": "0xe9ae5c530100000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000004000000000000000000000000000000000000000000000000000000000000005000000000000000000000000000000000000000000000000000000000000000020000000000000000000000000000000000000000000000000000000000000000200000000000000000000000000000000000000000000000000000000000000400000000000000000000000000000000000000000000000000000000000000120000000000000000000000000f8a0bf9cf54bb92f17374d9e9a321e6a111a51bd000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000600000000000000000000000000000000000000000000000000000000000000044095ea7b30000000000000000000000001a1ec25dc08e98e5e93f1104b5e5cdd298707d3100000000000000000000000000000000000000000000000003ebbdcb7fcd807d000000000000000000000000000000000000000000000000000000000000000000000000000000001a1ec25dc08e98e5e93f1104b5e5cdd298707d310000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000003055f5755290000000000000000000000000000000000000000000000000000000000000080000000000000000000000000f8a0bf9cf54bb92f17374d9e9a321e6a111a51bd00000000000000000000000000000000000000000000000003ebbdcb7fcd807d00000000000000000000000000000000000000000000000000000000000000c0000000000000000000000000000000000000000000000000000000000000001b70616e63616b6553776170526f7574657246656544796e616d696300000000000000000000000000000000000000000000000000000000000000000000000220000000000000000000000000f8a0bf9cf54bb92f17374d9e9a321e6a111a51bd00000000000000000000000055d398326f99059ff775485246999027b319795500000000000000000000000000000000000000000000000003ebbdcb7fcd807d000000000000000000000000000000000000000000000000280162ef76ef688a0000000000000000000000000000000000000000000000000000000000000120000000000000000000000000000000000000000000000000005c3f84e6a5523f000000000000000000000000b28da7bc87a9dd1e60849aa7fcb5da24ea913c42000000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000000000e4472b43f300000000000000000000000000000000000000000000000003ebbdcb7fcd807d000000000000000000000000000000000000000000000000285fec8af4196baa0000000000000000000000000000000000000000000000000000000000000080000000000000000000000000c590175e458b83680867afd273527ff58f74c02b0000000000000000000000000000000000000000000000000000000000000002000000000000000000000000f8a0bf9cf54bb92f17374d9e9a321e6a111a51bd00000000000000000000000055d398326f99059ff775485246999027b319795500000000000000000000000000000000000000000000000000000000ad000000000000000000000000000000000000000000000000000000", - "from": "0x141d32a89a1e0a5ef360034a2f60a4b917c18838", - "gas": "0x42d99", - "gasLimit": "0x42d99", - "maxFeePerGas": "0x2faf080", - "maxPriorityFeePerGas": "0x2faf080", - "nonce": "0x55", - "to": "0x141d32a89a1e0a5ef360034a2f60a4b917c18838", - "type": "0x2", - "value": "0x0" - }, - "txReceipt": { - "blockHash": "0xe4661c80cd4c056800dd6f50865751daf0a5d850c68bd79b04be99218fdc67c6", - "blockNumber": "0x5dc6617", - "contractAddress": null, - "cumulativeGasUsed": "0x1753cf", - "effectiveGasPrice": "0x2faf080", - "from": "0x141d32a89a1e0a5ef360034a2f60a4b917c18838", - "gasUsed": "0x34320", - "logs": [ - { - "address": "0xf8a0bf9cf54bb92f17374d9e9a321e6a111a51bd", - "blockHash": "0xe4661c80cd4c056800dd6f50865751daf0a5d850c68bd79b04be99218fdc67c6", - "blockNumber": "0x5dc6617", - "blockTimestamp": "0x6a0660e4", - "data": "0x00000000000000000000000000000000000000000000000003ebbdcb7fcd807d", - "logIndex": "0x2b", - "removed": false, - "topics": [ - "0x8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925", - "0x000000000000000000000000141d32a89a1e0a5ef360034a2f60a4b917c18838", - "0x0000000000000000000000001a1ec25dc08e98e5e93f1104b5e5cdd298707d31" - ], - "transactionHash": "0x5401970c5672b7b813dd54f1f709604848b2625f0ca64f3e67eeaef4579d0d26", - "transactionIndex": "0x7" - }, - { - "address": "0xf8a0bf9cf54bb92f17374d9e9a321e6a111a51bd", - "blockHash": "0xe4661c80cd4c056800dd6f50865751daf0a5d850c68bd79b04be99218fdc67c6", - "blockNumber": "0x5dc6617", - "blockTimestamp": "0x6a0660e4", - "data": "0x00000000000000000000000000000000000000000000000003ebbdcb7fcd807d", - "logIndex": "0x2c", - "removed": false, - "topics": [ - "0xddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef", - "0x000000000000000000000000141d32a89a1e0a5ef360034a2f60a4b917c18838", - "0x000000000000000000000000c590175e458b83680867afd273527ff58f74c02b" - ], - "transactionHash": "0x5401970c5672b7b813dd54f1f709604848b2625f0ca64f3e67eeaef4579d0d26", - "transactionIndex": "0x7" - }, - { - "address": "0xf8a0bf9cf54bb92f17374d9e9a321e6a111a51bd", - "blockHash": "0xe4661c80cd4c056800dd6f50865751daf0a5d850c68bd79b04be99218fdc67c6", - "blockNumber": "0x5dc6617", - "blockTimestamp": "0x6a0660e4", - "data": "0x0000000000000000000000000000000000000000000000000000000000000000", - "logIndex": "0x2d", - "removed": false, - "topics": [ - "0x8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925", - "0x000000000000000000000000141d32a89a1e0a5ef360034a2f60a4b917c18838", - "0x0000000000000000000000001a1ec25dc08e98e5e93f1104b5e5cdd298707d31" - ], - "transactionHash": "0x5401970c5672b7b813dd54f1f709604848b2625f0ca64f3e67eeaef4579d0d26", - "transactionIndex": "0x7" - }, - { - "address": "0xf8a0bf9cf54bb92f17374d9e9a321e6a111a51bd", - "blockHash": "0xe4661c80cd4c056800dd6f50865751daf0a5d850c68bd79b04be99218fdc67c6", - "blockNumber": "0x5dc6617", - "blockTimestamp": "0x6a0660e4", - "data": "0x00000000000000000000000000000000000000000000000003ebbdcb7fcd807d", - "logIndex": "0x2e", - "removed": false, - "topics": [ - "0xddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef", - "0x000000000000000000000000c590175e458b83680867afd273527ff58f74c02b", - "0x000000000000000000000000653684a7edb13e44425845a88b2cee741e95b782" - ], - "transactionHash": "0x5401970c5672b7b813dd54f1f709604848b2625f0ca64f3e67eeaef4579d0d26", - "transactionIndex": "0x7" - }, - { - "address": "0xf8a0bf9cf54bb92f17374d9e9a321e6a111a51bd", - "blockHash": "0xe4661c80cd4c056800dd6f50865751daf0a5d850c68bd79b04be99218fdc67c6", - "blockNumber": "0x5dc6617", - "blockTimestamp": "0x6a0660e4", - "data": "0xfffffffffffffffffffffffffffffffffffffffffffffffb84a1192ad185e130", - "logIndex": "0x2f", - "removed": false, - "topics": [ - "0x8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925", - "0x000000000000000000000000c590175e458b83680867afd273527ff58f74c02b", - "0x00000000000000000000000013f4ea83d0bd40e75c8222255bc855a974568dd4" - ], - "transactionHash": "0x5401970c5672b7b813dd54f1f709604848b2625f0ca64f3e67eeaef4579d0d26", - "transactionIndex": "0x7" - }, - { - "address": "0x55d398326f99059ff775485246999027b3197955", - "blockHash": "0xe4661c80cd4c056800dd6f50865751daf0a5d850c68bd79b04be99218fdc67c6", - "blockNumber": "0x5dc6617", - "blockTimestamp": "0x6a0660e4", - "data": "0x000000000000000000000000000000000000000000000000292ea47940a949fb", - "logIndex": "0x30", - "removed": false, - "topics": [ - "0xddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef", - "0x000000000000000000000000653684a7edb13e44425845a88b2cee741e95b782", - "0x000000000000000000000000c590175e458b83680867afd273527ff58f74c02b" - ], - "transactionHash": "0x5401970c5672b7b813dd54f1f709604848b2625f0ca64f3e67eeaef4579d0d26", - "transactionIndex": "0x7" - }, - { - "address": "0x653684a7edb13e44425845a88b2cee741e95b782", - "blockHash": "0xe4661c80cd4c056800dd6f50865751daf0a5d850c68bd79b04be99218fdc67c6", - "blockNumber": "0x5dc6617", - "blockTimestamp": "0x6a0660e4", - "data": "0x00000000000000000000000000000000000000000000003176ce08ace5082c36000000000000000000000000000000000000000000000004b6811127a514ee6e", - "logIndex": "0x31", - "removed": false, - "topics": [ - "0x1c411e9a96e071241c2f21f7726b17ae89e3cab4c78be50e062b03a9fffbbad1" - ], - "transactionHash": "0x5401970c5672b7b813dd54f1f709604848b2625f0ca64f3e67eeaef4579d0d26", - "transactionIndex": "0x7" - }, - { - "address": "0x653684a7edb13e44425845a88b2cee741e95b782", - "blockHash": "0xe4661c80cd4c056800dd6f50865751daf0a5d850c68bd79b04be99218fdc67c6", - "blockNumber": "0x5dc6617", - "blockTimestamp": "0x6a0660e4", - "data": "0x000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000003ebbdcb7fcd807d000000000000000000000000000000000000000000000000292ea47940a949fb0000000000000000000000000000000000000000000000000000000000000000", - "logIndex": "0x32", - "removed": false, - "topics": [ - "0xd78ad95fa46c994b6551d0da85fc275fe613ce37657fb8d5e3d130840159d822", - "0x00000000000000000000000013f4ea83d0bd40e75c8222255bc855a974568dd4", - "0x000000000000000000000000c590175e458b83680867afd273527ff58f74c02b" - ], - "transactionHash": "0x5401970c5672b7b813dd54f1f709604848b2625f0ca64f3e67eeaef4579d0d26", - "transactionIndex": "0x7" - }, - { - "address": "0x55d398326f99059ff775485246999027b3197955", - "blockHash": "0xe4661c80cd4c056800dd6f50865751daf0a5d850c68bd79b04be99218fdc67c6", - "blockNumber": "0x5dc6617", - "blockTimestamp": "0x6a0660e4", - "data": "0x000000000000000000000000000000000000000000000000005c3f84e6a5523f", - "logIndex": "0x33", - "removed": false, - "topics": [ - "0xddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef", - "0x000000000000000000000000c590175e458b83680867afd273527ff58f74c02b", - "0x000000000000000000000000b28da7bc87a9dd1e60849aa7fcb5da24ea913c42" - ], - "transactionHash": "0x5401970c5672b7b813dd54f1f709604848b2625f0ca64f3e67eeaef4579d0d26", - "transactionIndex": "0x7" - }, - { - "address": "0x55d398326f99059ff775485246999027b3197955", - "blockHash": "0xe4661c80cd4c056800dd6f50865751daf0a5d850c68bd79b04be99218fdc67c6", - "blockNumber": "0x5dc6617", - "blockTimestamp": "0x6a0660e4", - "data": "0x00000000000000000000000000000000000000000000000028d264f45a03f7bc", - "logIndex": "0x34", - "removed": false, - "topics": [ - "0xddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef", - "0x000000000000000000000000c590175e458b83680867afd273527ff58f74c02b", - "0x000000000000000000000000141d32a89a1e0a5ef360034a2f60a4b917c18838" - ], - "transactionHash": "0x5401970c5672b7b813dd54f1f709604848b2625f0ca64f3e67eeaef4579d0d26", - "transactionIndex": "0x7" - }, - { - "address": "0x1a1ec25dc08e98e5e93f1104b5e5cdd298707d31", - "blockHash": "0xe4661c80cd4c056800dd6f50865751daf0a5d850c68bd79b04be99218fdc67c6", - "blockNumber": "0x5dc6617", - "blockTimestamp": "0x6a0660e4", - "data": "0x", - "logIndex": "0x35", - "removed": false, - "topics": [ - "0xbeee1e6e7fe307ddcf84b0a16137a4430ad5e2480fc4f4a8e250ab56ccd7630d", - "0xd969a3bb30e73717f53a24e5c1c2ce9fdcee5967213ee0e44f1087749bf35ff8", - "0x000000000000000000000000141d32a89a1e0a5ef360034a2f60a4b917c18838" - ], - "transactionHash": "0x5401970c5672b7b813dd54f1f709604848b2625f0ca64f3e67eeaef4579d0d26", - "transactionIndex": "0x7" - } - ], - "logsBloom": "0x402000000000000000080000800408000000000000000008400000000000000080000000000000000000100000000000000100040000000000000000002000000000000101000100010a0008000000202000000002001000000000000000000000000000000000000000400000000000000000000000000000008010000800000000000000200001008000000800000000000001000010080000004000000000220000000000000000000000000000000000000000000000000000200000000000000002000000000000000000040000200000000000001000000000000400000030000000000000000000000000000040000000000000000000000000080000", - "status": "0x1", - "to": "0x141d32a89a1e0a5ef360034a2f60a4b917c18838", - "transactionHash": "0x5401970c5672b7b813dd54f1f709604848b2625f0ca64f3e67eeaef4579d0d26", - "transactionIndex": "0x7", - "type": "0x2" - }, - "type": "swap", - "userEditedGasLimit": false, - "userFeeLevel": "medium", - "v": "0x0", - "verifiedOnBlockchain": true - }, - { - "baseFeePerGas": "0x0", - "batchId": "0x19e28fdf541", - "blockTimestamp": "0x6a066286", - "chainId": "0x38", - "defaultGasEstimates": { - "estimateType": "medium", - "gas": "0x849a4", - "maxFeePerGas": "0x3938700", - "maxPriorityFeePerGas": "0x3938700" - }, - "delegationAddress": "0x63c0c19a282a1b52b07dd5a65b58948a07dae32b", - "excludeNativeTokenForFee": true, - "gasFeeEstimates": { - "high": { - "maxFeePerGas": "0x2faf080", - "maxPriorityFeePerGas": "0x2faf080" - }, - "low": { - "maxFeePerGas": "0x2faf080", - "maxPriorityFeePerGas": "0x2faf080" - }, - "medium": { - "maxFeePerGas": "0x2faf080", - "maxPriorityFeePerGas": "0x2faf080" - }, - "type": "fee-market" - }, - "gasFeeEstimatesLoaded": true, - "gasLimitNoBuffer": "0x849a4", - "hash": "0x4f276a96fc9eb03c9250127caf964284ce56d1e024316981db50372d83b05f6c", - "id": "53814750-4ff1-11f1-b329-9d6502987406", - "isGasFeeIncluded": true, - "isGasFeeSponsored": false, - "isGasFeeTokenIgnoredIfBalance": false, - "nestedTransactions": [ - { - "data": "0x095ea7b30000000000000000000000001a1ec25dc08e98e5e93f1104b5e5cdd298707d31000000000000000000000000000000000000000000000000029522d1a9a48529", - "from": "0x141d32a89a1e0a5ef360034a2f60a4b917c18838", - "gas": "0x1110c", - "maxFeePerGas": "0x3938700", - "maxPriorityFeePerGas": "0x3938700", - "to": "0xf8a0bf9cf54bb92f17374d9e9a321e6a111a51bd", - "type": "swapApproval", - "value": "0x0" - }, - { - "data": "0x5f5755290000000000000000000000000000000000000000000000000000000000000080000000000000000000000000f8a0bf9cf54bb92f17374d9e9a321e6a111a51bd000000000000000000000000000000000000000000000000029522d1a9a4852900000000000000000000000000000000000000000000000000000000000000c0000000000000000000000000000000000000000000000000000000000000000430785632000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000620000000000000000000000000f8a0bf9cf54bb92f17374d9e9a321e6a111a51bd00000000000000000000000055d398326f99059ff775485246999027b3197955000000000000000000000000000000000000000000000000029522d1a9a485290000000000000000000000000000000000000000000000001a54dcc9639922cf0000000000000000000000000000000000000000000000000000000000000120000000000000000000000000000000000000000000000000003cb7b1626fb173000000000000000000000000b28da7bc87a9dd1e60849aa7fcb5da24ea913c42000000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000000004e42213bc0b000000000000000000000000c2eff1f1ce35d395408a34ad881dbcd978f40b89000000000000000000000000f8a0bf9cf54bb92f17374d9e9a321e6a111a51bd000000000000000000000000000000000000000000000000029522d1a9a48529000000000000000000000000c2eff1f1ce35d395408a34ad881dbcd978f40b8900000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000000000000000000000000000004041fff991f000000000000000000000000c590175e458b83680867afd273527ff58f74c02b00000000000000000000000055d398326f99059ff775485246999027b31979550000000000000000000000000000000000000000000000001ad5c1d3815d320000000000000000000000000000000000000000000000000000000000000000a0d43c254c3f608344feba3dc60000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000300000000000000000000000000000000000000000000000000000000000000600000000000000000000000000000000000000000000000000000000000000180000000000000000000000000000000000000000000000000000000000000028000000000000000000000000000000000000000000000000000000000000000e4c1fb425e000000000000000000000000c71ae603efb29bc8eedd9c9c5323011e167179a2000000000000000000000000f8a0bf9cf54bb92f17374d9e9a321e6a111a51bd000000000000000000000000000000000000000000000000029522d1a9a485290000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000006a0663aa00000000000000000000000000000000000000000000000000000000000000c000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000c4103b48be000000000000000000000000c2eff1f1ce35d395408a34ad881dbcd978f40b89000000000000000000000000f8a0bf9cf54bb92f17374d9e9a321e6a111a51bd0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000c71ae603efb29bc8eedd9c9c5323011e167179a20000000000000000000000000000000000000000000000000000000000001e00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000008434ee90ca000000000000000000000000d0a67cb08be17475f4315a04c5f0be3e200ef66c00000000000000000000000055d398326f99059ff775485246999027b31979550000000000000000000000000000000000000000000000001b1c46a242a4973b0000000000000000000000000000000000000000000000000000000000002710000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000f0", - "from": "0x141d32a89a1e0a5ef360034a2f60a4b917c18838", - "gas": "0x61785", - "maxFeePerGas": "0x3938700", - "maxPriorityFeePerGas": "0x3938700", - "to": "0x1a1ec25DC08e98e5E93F1104B5e5cdD298707d31", - "type": "swap", - "value": "0x0" - }, - { - "data": "0x095ea7b30000000000000000000000001a1ec25dc08e98e5e93f1104b5e5cdd298707d3100000000000000000000000000000000000000000000000016809af82bd260ea", - "from": "0x141d32a89a1e0a5ef360034a2f60a4b917c18838", - "gas": "0x1110c", - "maxFeePerGas": "0x3938700", - "maxPriorityFeePerGas": "0x3938700", - "to": "0x1af3f329e8be154074d8769d1ffa4ee058b1dbc3", - "type": "swapApproval", - "value": "0x0" - }, - { - "data": "0x5f57552900000000000000000000000000000000000000000000000000000000000000800000000000000000000000001af3f329e8be154074d8769d1ffa4ee058b1dbc300000000000000000000000000000000000000000000000016809af82bd260ea00000000000000000000000000000000000000000000000000000000000000c00000000000000000000000000000000000000000000000000000000000000018756e69737761705065726d69743246656544796e616d6963000000000000000000000000000000000000000000000000000000000000000000000000000006000000000000000000000000001af3f329e8be154074d8769d1ffa4ee058b1dbc300000000000000000000000055d398326f99059ff775485246999027b3197955000000000000000000000000000000000000000000000000164e3336a3c2234500000000000000000000000000000000000000000000000015db8526486372290000000000000000000000000000000000000000000000000000000000000120000000000000000000000000000000000000000000000000003267c188103da5000000000000000000000000b28da7bc87a9dd1e60849aa7fcb5da24ea913c42000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000004ce3593564c000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000000a0000000000000000000000000000000000000000000000000000000006a066987000000000000000000000000000000000000000000000000000000000000000110000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000002000000000000000000000000000000000000000000000000000000000000003c0000000000000000000000000000000000000000000000000000000000000004000000000000000000000000000000000000000000000000000000000000000800000000000000000000000000000000000000000000000000000000000000003070b0e000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000030000000000000000000000000000000000000000000000000000000000000060000000000000000000000000000000000000000000000000000000000000022000000000000000000000000000000000000000000000000000000000000002a000000000000000000000000000000000000000000000000000000000000001a000000000000000000000000000000000000000000000000000000000000000200000000000000000000000001af3f329e8be154074d8769d1ffa4ee058b1dbc30000000000000000000000000000000000000000000000000000000000000080000000000000000000000000000000000000000000000000164e3336a3c2234500000000000000000000000000000000000000000000000015ddc25c2e9a30710000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000002000000000000000000000000055d398326f99059ff775485246999027b319795500000000000000000000000000000000000000000000000000000000000000640000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000a0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000600000000000000000000000001af3f329e8be154074d8769d1ffa4ee058b1dbc300000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000006000000000000000000000000055d398326f99059ff775485246999027b3197955000000000000000000000000c590175e458b83680867afd273527ff58f74c02b0000000000000000000000000000000000000000000000000000000000000000756e69780000b2c5de0b00000000000000000000000000000000000076", - "from": "0x141d32a89a1e0a5ef360034a2f60a4b917c18838", - "gas": "0x5d131", - "maxFeePerGas": "0x3938700", - "maxPriorityFeePerGas": "0x3938700", - "to": "0x1a1ec25DC08e98e5E93F1104B5e5cdD298707d31", - "type": "swap", - "value": "0x0" - }, - { - "data": "0xa9059cbb000000000000000000000000e3478b0bb1a5084567c319096437924948be196400000000000000000000000000000000000000000000000000bedde0c4bd4047", - "from": "0x141d32a89a1e0a5ef360034a2f60a4b917c18838", - "gas": "0xcc57", - "maxFeePerGas": "0x3938700", - "maxPriorityFeePerGas": "0x3938700", - "to": "0x55d398326f99059ff775485246999027b3197955", - "type": "transfer", - "value": "0x0" - } - ], - "networkClientId": "9a1eafde-5f04-434b-b011-e9de5c50baf0", - "origin": "metamask", - "originalGasEstimate": "0x849a4", - "postTxBalance": "0xf328db17a00", - "r": "0x3edc62b4e958b050785e6e56f7f0cfae8e1d7766da11f7c367943db645e05cdd", - "rawTx": "0x02f91371385984039387008403938700830849a494141d32a89a1e0a5ef360034a2f60a4b917c1883880b91304e9ae5c530101000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000004000000000000000000000000000000000000000000000000000000000000012a00000000000000000000000000000000000000000000000000000000000000020000000000000000000000000000000000000000000000000000000000000000500000000000000000000000000000000000000000000000000000000000000a0000000000000000000000000000000000000000000000000000000000000018000000000000000000000000000000000000000000000000000000000000009200000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000000000000000000000000000001180000000000000000000000000f8a0bf9cf54bb92f17374d9e9a321e6a111a51bd000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000600000000000000000000000000000000000000000000000000000000000000044095ea7b30000000000000000000000001a1ec25dc08e98e5e93f1104b5e5cdd298707d31000000000000000000000000000000000000000000000000029522d1a9a48529000000000000000000000000000000000000000000000000000000000000000000000000000000001a1ec25dc08e98e5e93f1104b5e5cdd298707d310000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000007055f5755290000000000000000000000000000000000000000000000000000000000000080000000000000000000000000f8a0bf9cf54bb92f17374d9e9a321e6a111a51bd000000000000000000000000000000000000000000000000029522d1a9a4852900000000000000000000000000000000000000000000000000000000000000c0000000000000000000000000000000000000000000000000000000000000000430785632000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000620000000000000000000000000f8a0bf9cf54bb92f17374d9e9a321e6a111a51bd00000000000000000000000055d398326f99059ff775485246999027b3197955000000000000000000000000000000000000000000000000029522d1a9a485290000000000000000000000000000000000000000000000001a54dcc9639922cf0000000000000000000000000000000000000000000000000000000000000120000000000000000000000000000000000000000000000000003cb7b1626fb173000000000000000000000000b28da7bc87a9dd1e60849aa7fcb5da24ea913c42000000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000000004e42213bc0b000000000000000000000000c2eff1f1ce35d395408a34ad881dbcd978f40b89000000000000000000000000f8a0bf9cf54bb92f17374d9e9a321e6a111a51bd000000000000000000000000000000000000000000000000029522d1a9a48529000000000000000000000000c2eff1f1ce35d395408a34ad881dbcd978f40b8900000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000000000000000000000000000004041fff991f000000000000000000000000c590175e458b83680867afd273527ff58f74c02b00000000000000000000000055d398326f99059ff775485246999027b31979550000000000000000000000000000000000000000000000001ad5c1d3815d320000000000000000000000000000000000000000000000000000000000000000a0d43c254c3f608344feba3dc60000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000300000000000000000000000000000000000000000000000000000000000000600000000000000000000000000000000000000000000000000000000000000180000000000000000000000000000000000000000000000000000000000000028000000000000000000000000000000000000000000000000000000000000000e4c1fb425e000000000000000000000000c71ae603efb29bc8eedd9c9c5323011e167179a2000000000000000000000000f8a0bf9cf54bb92f17374d9e9a321e6a111a51bd000000000000000000000000000000000000000000000000029522d1a9a485290000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000006a0663aa00000000000000000000000000000000000000000000000000000000000000c000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000c4103b48be000000000000000000000000c2eff1f1ce35d395408a34ad881dbcd978f40b89000000000000000000000000f8a0bf9cf54bb92f17374d9e9a321e6a111a51bd0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000c71ae603efb29bc8eedd9c9c5323011e167179a20000000000000000000000000000000000000000000000000000000000001e00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000008434ee90ca000000000000000000000000d0a67cb08be17475f4315a04c5f0be3e200ef66c00000000000000000000000055d398326f99059ff775485246999027b31979550000000000000000000000000000000000000000000000001b1c46a242a4973b0000000000000000000000000000000000000000000000000000000000002710000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000f00000000000000000000000000000000000000000000000000000000000000000000000000000001af3f329e8be154074d8769d1ffa4ee058b1dbc3000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000600000000000000000000000000000000000000000000000000000000000000044095ea7b30000000000000000000000001a1ec25dc08e98e5e93f1104b5e5cdd298707d3100000000000000000000000000000000000000000000000016809af82bd260ea000000000000000000000000000000000000000000000000000000000000000000000000000000001a1ec25dc08e98e5e93f1104b5e5cdd298707d310000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000006e55f57552900000000000000000000000000000000000000000000000000000000000000800000000000000000000000001af3f329e8be154074d8769d1ffa4ee058b1dbc300000000000000000000000000000000000000000000000016809af82bd260ea00000000000000000000000000000000000000000000000000000000000000c00000000000000000000000000000000000000000000000000000000000000018756e69737761705065726d69743246656544796e616d6963000000000000000000000000000000000000000000000000000000000000000000000000000006000000000000000000000000001af3f329e8be154074d8769d1ffa4ee058b1dbc300000000000000000000000055d398326f99059ff775485246999027b3197955000000000000000000000000000000000000000000000000164e3336a3c2234500000000000000000000000000000000000000000000000015db8526486372290000000000000000000000000000000000000000000000000000000000000120000000000000000000000000000000000000000000000000003267c188103da5000000000000000000000000b28da7bc87a9dd1e60849aa7fcb5da24ea913c42000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000004ce3593564c000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000000a0000000000000000000000000000000000000000000000000000000006a066987000000000000000000000000000000000000000000000000000000000000000110000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000002000000000000000000000000000000000000000000000000000000000000003c0000000000000000000000000000000000000000000000000000000000000004000000000000000000000000000000000000000000000000000000000000000800000000000000000000000000000000000000000000000000000000000000003070b0e000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000030000000000000000000000000000000000000000000000000000000000000060000000000000000000000000000000000000000000000000000000000000022000000000000000000000000000000000000000000000000000000000000002a000000000000000000000000000000000000000000000000000000000000001a000000000000000000000000000000000000000000000000000000000000000200000000000000000000000001af3f329e8be154074d8769d1ffa4ee058b1dbc30000000000000000000000000000000000000000000000000000000000000080000000000000000000000000000000000000000000000000164e3336a3c2234500000000000000000000000000000000000000000000000015ddc25c2e9a30710000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000002000000000000000000000000055d398326f99059ff775485246999027b319795500000000000000000000000000000000000000000000000000000000000000640000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000a0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000600000000000000000000000001af3f329e8be154074d8769d1ffa4ee058b1dbc300000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000006000000000000000000000000055d398326f99059ff775485246999027b3197955000000000000000000000000c590175e458b83680867afd273527ff58f74c02b0000000000000000000000000000000000000000000000000000000000000000756e69780000b2c5de0b0000000000000000000000000000000000007600000000000000000000000000000000000000000000000000000000000000000000000000000055d398326f99059ff775485246999027b3197955000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000600000000000000000000000000000000000000000000000000000000000000044a9059cbb000000000000000000000000e3478b0bb1a5084567c319096437924948be196400000000000000000000000000000000000000000000000000bedde0c4bd404700000000000000000000000000000000000000000000000000000000c001a03edc62b4e958b050785e6e56f7f0cfae8e1d7766da11f7c367943db645e05cdda0724cbf4ea0d4764c24f210bd686eb8154a232ef6c2b522cc6c3d5101c4b5f8bc", - "s": "0x724cbf4ea0d4764c24f210bd686eb8154a232ef6c2b522cc6c3d5101c4b5f8bc", - "selectedGasFeeToken": "0x55d398326f99059ff775485246999027b3197955", - "status": "confirmed", - "submittedTime": 1778803335991, - "time": 1778803333189, - "txParams": { - "data": "0xe9ae5c530101000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000004000000000000000000000000000000000000000000000000000000000000012a00000000000000000000000000000000000000000000000000000000000000020000000000000000000000000000000000000000000000000000000000000000500000000000000000000000000000000000000000000000000000000000000a0000000000000000000000000000000000000000000000000000000000000018000000000000000000000000000000000000000000000000000000000000009200000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000000000000000000000000000001180000000000000000000000000f8a0bf9cf54bb92f17374d9e9a321e6a111a51bd000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000600000000000000000000000000000000000000000000000000000000000000044095ea7b30000000000000000000000001a1ec25dc08e98e5e93f1104b5e5cdd298707d31000000000000000000000000000000000000000000000000029522d1a9a48529000000000000000000000000000000000000000000000000000000000000000000000000000000001a1ec25dc08e98e5e93f1104b5e5cdd298707d310000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000007055f5755290000000000000000000000000000000000000000000000000000000000000080000000000000000000000000f8a0bf9cf54bb92f17374d9e9a321e6a111a51bd000000000000000000000000000000000000000000000000029522d1a9a4852900000000000000000000000000000000000000000000000000000000000000c0000000000000000000000000000000000000000000000000000000000000000430785632000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000620000000000000000000000000f8a0bf9cf54bb92f17374d9e9a321e6a111a51bd00000000000000000000000055d398326f99059ff775485246999027b3197955000000000000000000000000000000000000000000000000029522d1a9a485290000000000000000000000000000000000000000000000001a54dcc9639922cf0000000000000000000000000000000000000000000000000000000000000120000000000000000000000000000000000000000000000000003cb7b1626fb173000000000000000000000000b28da7bc87a9dd1e60849aa7fcb5da24ea913c42000000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000000004e42213bc0b000000000000000000000000c2eff1f1ce35d395408a34ad881dbcd978f40b89000000000000000000000000f8a0bf9cf54bb92f17374d9e9a321e6a111a51bd000000000000000000000000000000000000000000000000029522d1a9a48529000000000000000000000000c2eff1f1ce35d395408a34ad881dbcd978f40b8900000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000000000000000000000000000004041fff991f000000000000000000000000c590175e458b83680867afd273527ff58f74c02b00000000000000000000000055d398326f99059ff775485246999027b31979550000000000000000000000000000000000000000000000001ad5c1d3815d320000000000000000000000000000000000000000000000000000000000000000a0d43c254c3f608344feba3dc60000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000300000000000000000000000000000000000000000000000000000000000000600000000000000000000000000000000000000000000000000000000000000180000000000000000000000000000000000000000000000000000000000000028000000000000000000000000000000000000000000000000000000000000000e4c1fb425e000000000000000000000000c71ae603efb29bc8eedd9c9c5323011e167179a2000000000000000000000000f8a0bf9cf54bb92f17374d9e9a321e6a111a51bd000000000000000000000000000000000000000000000000029522d1a9a485290000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000006a0663aa00000000000000000000000000000000000000000000000000000000000000c000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000c4103b48be000000000000000000000000c2eff1f1ce35d395408a34ad881dbcd978f40b89000000000000000000000000f8a0bf9cf54bb92f17374d9e9a321e6a111a51bd0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000c71ae603efb29bc8eedd9c9c5323011e167179a20000000000000000000000000000000000000000000000000000000000001e00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000008434ee90ca000000000000000000000000d0a67cb08be17475f4315a04c5f0be3e200ef66c00000000000000000000000055d398326f99059ff775485246999027b31979550000000000000000000000000000000000000000000000001b1c46a242a4973b0000000000000000000000000000000000000000000000000000000000002710000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000f00000000000000000000000000000000000000000000000000000000000000000000000000000001af3f329e8be154074d8769d1ffa4ee058b1dbc3000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000600000000000000000000000000000000000000000000000000000000000000044095ea7b30000000000000000000000001a1ec25dc08e98e5e93f1104b5e5cdd298707d3100000000000000000000000000000000000000000000000016809af82bd260ea000000000000000000000000000000000000000000000000000000000000000000000000000000001a1ec25dc08e98e5e93f1104b5e5cdd298707d310000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000006e55f57552900000000000000000000000000000000000000000000000000000000000000800000000000000000000000001af3f329e8be154074d8769d1ffa4ee058b1dbc300000000000000000000000000000000000000000000000016809af82bd260ea00000000000000000000000000000000000000000000000000000000000000c00000000000000000000000000000000000000000000000000000000000000018756e69737761705065726d69743246656544796e616d6963000000000000000000000000000000000000000000000000000000000000000000000000000006000000000000000000000000001af3f329e8be154074d8769d1ffa4ee058b1dbc300000000000000000000000055d398326f99059ff775485246999027b3197955000000000000000000000000000000000000000000000000164e3336a3c2234500000000000000000000000000000000000000000000000015db8526486372290000000000000000000000000000000000000000000000000000000000000120000000000000000000000000000000000000000000000000003267c188103da5000000000000000000000000b28da7bc87a9dd1e60849aa7fcb5da24ea913c42000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000004ce3593564c000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000000a0000000000000000000000000000000000000000000000000000000006a066987000000000000000000000000000000000000000000000000000000000000000110000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000002000000000000000000000000000000000000000000000000000000000000003c0000000000000000000000000000000000000000000000000000000000000004000000000000000000000000000000000000000000000000000000000000000800000000000000000000000000000000000000000000000000000000000000003070b0e000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000030000000000000000000000000000000000000000000000000000000000000060000000000000000000000000000000000000000000000000000000000000022000000000000000000000000000000000000000000000000000000000000002a000000000000000000000000000000000000000000000000000000000000001a000000000000000000000000000000000000000000000000000000000000000200000000000000000000000001af3f329e8be154074d8769d1ffa4ee058b1dbc30000000000000000000000000000000000000000000000000000000000000080000000000000000000000000000000000000000000000000164e3336a3c2234500000000000000000000000000000000000000000000000015ddc25c2e9a30710000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000002000000000000000000000000055d398326f99059ff775485246999027b319795500000000000000000000000000000000000000000000000000000000000000640000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000a0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000600000000000000000000000001af3f329e8be154074d8769d1ffa4ee058b1dbc300000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000006000000000000000000000000055d398326f99059ff775485246999027b3197955000000000000000000000000c590175e458b83680867afd273527ff58f74c02b0000000000000000000000000000000000000000000000000000000000000000756e69780000b2c5de0b0000000000000000000000000000000000007600000000000000000000000000000000000000000000000000000000000000000000000000000055d398326f99059ff775485246999027b3197955000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000600000000000000000000000000000000000000000000000000000000000000044a9059cbb000000000000000000000000e3478b0bb1a5084567c319096437924948be196400000000000000000000000000000000000000000000000000bedde0c4bd404700000000000000000000000000000000000000000000000000000000", - "from": "0x141d32a89a1e0a5ef360034a2f60a4b917c18838", - "gas": "0x849a4", - "gasLimit": "0x849a4", - "maxFeePerGas": "0x3938700", - "maxPriorityFeePerGas": "0x3938700", - "to": "0x141d32a89a1e0a5ef360034a2f60a4b917c18838", - "type": "0x2", - "value": "0x0" - }, - "txReceipt": { - "blockHash": "0x403f651d5952d0cea578c9d79abd97f24a1d07d3a68a512397d66a09f73513ad", - "blockNumber": "0x5dc69b8", - "contractAddress": null, - "cumulativeGasUsed": "0x100758", - "effectiveGasPrice": "0x3938700", - "from": "0xb01caea8c6c47bbf4f4b4c5080ca642043359c2e", - "gasUsed": "0x9db97", - "logs": [ - { - "address": "0x04658b29f6b82ed55274221a06fc97d318e25416", - "blockHash": "0x403f651d5952d0cea578c9d79abd97f24a1d07d3a68a512397d66a09f73513ad", - "blockNumber": "0x5dc69b8", - "blockTimestamp": "0x6a066286", - "data": "0x00000000000000000000000000000000000000000000000000000000000000010000000000000000000000000000000000000000000000000000000000000001", - "logIndex": "0x7", - "removed": false, - "topics": [ - "0x449da07f2c06c9d1a6b19d2454ffe749e8cf991d22f686e076a1a4844c5ff370", - "0x000000000000000000000000db9b1e94b5b69df7e401ddbede43491141047db3", - "0x000000000000000000000000b01caea8c6c47bbf4f4b4c5080ca642043359c2e", - "0x1c5162b17d91c951060fd2e96f6cff8919555f25408c69b5c7829d9ee520021a" - ], - "transactionHash": "0x4f276a96fc9eb03c9250127caf964284ce56d1e024316981db50372d83b05f6c", - "transactionIndex": "0x3" - }, - { - "address": "0xf8a0bf9cf54bb92f17374d9e9a321e6a111a51bd", - "blockHash": "0x403f651d5952d0cea578c9d79abd97f24a1d07d3a68a512397d66a09f73513ad", - "blockNumber": "0x5dc69b8", - "blockTimestamp": "0x6a066286", - "data": "0x000000000000000000000000000000000000000000000000029522d1a9a48529", - "logIndex": "0x8", - "removed": false, - "topics": [ - "0x8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925", - "0x000000000000000000000000141d32a89a1e0a5ef360034a2f60a4b917c18838", - "0x0000000000000000000000001a1ec25dc08e98e5e93f1104b5e5cdd298707d31" - ], - "transactionHash": "0x4f276a96fc9eb03c9250127caf964284ce56d1e024316981db50372d83b05f6c", - "transactionIndex": "0x3" - }, - { - "address": "0xf8a0bf9cf54bb92f17374d9e9a321e6a111a51bd", - "blockHash": "0x403f651d5952d0cea578c9d79abd97f24a1d07d3a68a512397d66a09f73513ad", - "blockNumber": "0x5dc69b8", - "blockTimestamp": "0x6a066286", - "data": "0x000000000000000000000000000000000000000000000000029522d1a9a48529", - "logIndex": "0x9", - "removed": false, - "topics": [ - "0xddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef", - "0x000000000000000000000000141d32a89a1e0a5ef360034a2f60a4b917c18838", - "0x000000000000000000000000c590175e458b83680867afd273527ff58f74c02b" - ], - "transactionHash": "0x4f276a96fc9eb03c9250127caf964284ce56d1e024316981db50372d83b05f6c", - "transactionIndex": "0x3" - }, - { - "address": "0xf8a0bf9cf54bb92f17374d9e9a321e6a111a51bd", - "blockHash": "0x403f651d5952d0cea578c9d79abd97f24a1d07d3a68a512397d66a09f73513ad", - "blockNumber": "0x5dc69b8", - "blockTimestamp": "0x6a066286", - "data": "0x0000000000000000000000000000000000000000000000000000000000000000", - "logIndex": "0xa", - "removed": false, - "topics": [ - "0x8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925", - "0x000000000000000000000000141d32a89a1e0a5ef360034a2f60a4b917c18838", - "0x0000000000000000000000001a1ec25dc08e98e5e93f1104b5e5cdd298707d31" - ], - "transactionHash": "0x4f276a96fc9eb03c9250127caf964284ce56d1e024316981db50372d83b05f6c", - "transactionIndex": "0x3" - }, - { - "address": "0xf8a0bf9cf54bb92f17374d9e9a321e6a111a51bd", - "blockHash": "0x403f651d5952d0cea578c9d79abd97f24a1d07d3a68a512397d66a09f73513ad", - "blockNumber": "0x5dc69b8", - "blockTimestamp": "0x6a066286", - "data": "0x000000000000000000000000000000000000000000000000029522d1a9a48529", - "logIndex": "0xb", - "removed": false, - "topics": [ - "0xddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef", - "0x000000000000000000000000c590175e458b83680867afd273527ff58f74c02b", - "0x000000000000000000000000c71ae603efb29bc8eedd9c9c5323011e167179a2" - ], - "transactionHash": "0x4f276a96fc9eb03c9250127caf964284ce56d1e024316981db50372d83b05f6c", - "transactionIndex": "0x3" - }, - { - "address": "0xf8a0bf9cf54bb92f17374d9e9a321e6a111a51bd", - "blockHash": "0x403f651d5952d0cea578c9d79abd97f24a1d07d3a68a512397d66a09f73513ad", - "blockNumber": "0x5dc69b8", - "blockTimestamp": "0x6a066286", - "data": "0xfffffffffffffffffffffffffffffffffffffffffffffb8f24d186a2dcd660a6", - "logIndex": "0xc", - "removed": false, - "topics": [ - "0x8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925", - "0x000000000000000000000000c590175e458b83680867afd273527ff58f74c02b", - "0x0000000000000000000000000000000000001ff3684f28c67538d4d072c22734" - ], - "transactionHash": "0x4f276a96fc9eb03c9250127caf964284ce56d1e024316981db50372d83b05f6c", - "transactionIndex": "0x3" - }, - { - "address": "0x55d398326f99059ff775485246999027b3197955", - "blockHash": "0x403f651d5952d0cea578c9d79abd97f24a1d07d3a68a512397d66a09f73513ad", - "blockNumber": "0x5dc69b8", - "blockTimestamp": "0x6a066286", - "data": "0x0000000000000000000000000000000000000000000000001b1b260bf1dcef18", - "logIndex": "0xd", - "removed": false, - "topics": [ - "0xddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef", - "0x000000000000000000000000c71ae603efb29bc8eedd9c9c5323011e167179a2", - "0x000000000000000000000000c2eff1f1ce35d395408a34ad881dbcd978f40b89" - ], - "transactionHash": "0x4f276a96fc9eb03c9250127caf964284ce56d1e024316981db50372d83b05f6c", - "transactionIndex": "0x3" - }, - { - "address": "0xc71ae603efb29bc8eedd9c9c5323011e167179a2", - "blockHash": "0x403f651d5952d0cea578c9d79abd97f24a1d07d3a68a512397d66a09f73513ad", - "blockNumber": "0x5dc69b8", - "blockTimestamp": "0x6a066286", - "data": "0x0000000000000000000000000000000000000000000000354848aebe64d4093e00000000000000000000000000000000000000000000000512475e7f11ed6106", - "logIndex": "0xe", - "removed": false, - "topics": [ - "0x1c411e9a96e071241c2f21f7726b17ae89e3cab4c78be50e062b03a9fffbbad1" - ], - "transactionHash": "0x4f276a96fc9eb03c9250127caf964284ce56d1e024316981db50372d83b05f6c", - "transactionIndex": "0x3" - }, - { - "address": "0xc71ae603efb29bc8eedd9c9c5323011e167179a2", - "blockHash": "0x403f651d5952d0cea578c9d79abd97f24a1d07d3a68a512397d66a09f73513ad", - "blockNumber": "0x5dc69b8", - "blockTimestamp": "0x6a066286", - "data": "0x0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000029522d1a9a485290000000000000000000000000000000000000000000000001b1b260bf1dcef180000000000000000000000000000000000000000000000000000000000000000", - "logIndex": "0xf", - "removed": false, - "topics": [ - "0xd78ad95fa46c994b6551d0da85fc275fe613ce37657fb8d5e3d130840159d822", - "0x000000000000000000000000c2eff1f1ce35d395408a34ad881dbcd978f40b89", - "0x000000000000000000000000c2eff1f1ce35d395408a34ad881dbcd978f40b89" - ], - "transactionHash": "0x4f276a96fc9eb03c9250127caf964284ce56d1e024316981db50372d83b05f6c", - "transactionIndex": "0x3" - }, - { - "address": "0x55d398326f99059ff775485246999027b3197955", - "blockHash": "0x403f651d5952d0cea578c9d79abd97f24a1d07d3a68a512397d66a09f73513ad", - "blockNumber": "0x5dc69b8", - "blockTimestamp": "0x6a066286", - "data": "0x0000000000000000000000000000000000000000000000001b1b260bf1dcef18", - "logIndex": "0x10", - "removed": false, - "topics": [ - "0xddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef", - "0x000000000000000000000000c2eff1f1ce35d395408a34ad881dbcd978f40b89", - "0x000000000000000000000000c590175e458b83680867afd273527ff58f74c02b" - ], - "transactionHash": "0x4f276a96fc9eb03c9250127caf964284ce56d1e024316981db50372d83b05f6c", - "transactionIndex": "0x3" - }, - { - "address": "0x55d398326f99059ff775485246999027b3197955", - "blockHash": "0x403f651d5952d0cea578c9d79abd97f24a1d07d3a68a512397d66a09f73513ad", - "blockNumber": "0x5dc69b8", - "blockTimestamp": "0x6a066286", - "data": "0x000000000000000000000000000000000000000000000000003cb7b1626fb173", - "logIndex": "0x11", - "removed": false, - "topics": [ - "0xddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef", - "0x000000000000000000000000c590175e458b83680867afd273527ff58f74c02b", - "0x000000000000000000000000b28da7bc87a9dd1e60849aa7fcb5da24ea913c42" - ], - "transactionHash": "0x4f276a96fc9eb03c9250127caf964284ce56d1e024316981db50372d83b05f6c", - "transactionIndex": "0x3" - }, - { - "address": "0x55d398326f99059ff775485246999027b3197955", - "blockHash": "0x403f651d5952d0cea578c9d79abd97f24a1d07d3a68a512397d66a09f73513ad", - "blockNumber": "0x5dc69b8", - "blockTimestamp": "0x6a066286", - "data": "0x0000000000000000000000000000000000000000000000001ade6e5a8f6d3da5", - "logIndex": "0x12", - "removed": false, - "topics": [ - "0xddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef", - "0x000000000000000000000000c590175e458b83680867afd273527ff58f74c02b", - "0x000000000000000000000000141d32a89a1e0a5ef360034a2f60a4b917c18838" - ], - "transactionHash": "0x4f276a96fc9eb03c9250127caf964284ce56d1e024316981db50372d83b05f6c", - "transactionIndex": "0x3" - }, - { - "address": "0x1a1ec25dc08e98e5e93f1104b5e5cdd298707d31", - "blockHash": "0x403f651d5952d0cea578c9d79abd97f24a1d07d3a68a512397d66a09f73513ad", - "blockNumber": "0x5dc69b8", - "blockTimestamp": "0x6a066286", - "data": "0x", - "logIndex": "0x13", - "removed": false, - "topics": [ - "0xbeee1e6e7fe307ddcf84b0a16137a4430ad5e2480fc4f4a8e250ab56ccd7630d", - "0x83203d0886d1c2c42122151c4282225c18a1e1561f04ae69d57528da4bb99db6", - "0x000000000000000000000000141d32a89a1e0a5ef360034a2f60a4b917c18838" - ], - "transactionHash": "0x4f276a96fc9eb03c9250127caf964284ce56d1e024316981db50372d83b05f6c", - "transactionIndex": "0x3" - }, - { - "address": "0x1af3f329e8be154074d8769d1ffa4ee058b1dbc3", - "blockHash": "0x403f651d5952d0cea578c9d79abd97f24a1d07d3a68a512397d66a09f73513ad", - "blockNumber": "0x5dc69b8", - "blockTimestamp": "0x6a066286", - "data": "0x00000000000000000000000000000000000000000000000016809af82bd260ea", - "logIndex": "0x14", - "removed": false, - "topics": [ - "0x8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925", - "0x000000000000000000000000141d32a89a1e0a5ef360034a2f60a4b917c18838", - "0x0000000000000000000000001a1ec25dc08e98e5e93f1104b5e5cdd298707d31" - ], - "transactionHash": "0x4f276a96fc9eb03c9250127caf964284ce56d1e024316981db50372d83b05f6c", - "transactionIndex": "0x3" - }, - { - "address": "0x1af3f329e8be154074d8769d1ffa4ee058b1dbc3", - "blockHash": "0x403f651d5952d0cea578c9d79abd97f24a1d07d3a68a512397d66a09f73513ad", - "blockNumber": "0x5dc69b8", - "blockTimestamp": "0x6a066286", - "data": "0x00000000000000000000000000000000000000000000000016809af82bd260ea", - "logIndex": "0x15", - "removed": false, - "topics": [ - "0xddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef", - "0x000000000000000000000000141d32a89a1e0a5ef360034a2f60a4b917c18838", - "0x000000000000000000000000c590175e458b83680867afd273527ff58f74c02b" - ], - "transactionHash": "0x4f276a96fc9eb03c9250127caf964284ce56d1e024316981db50372d83b05f6c", - "transactionIndex": "0x3" - }, - { - "address": "0x1af3f329e8be154074d8769d1ffa4ee058b1dbc3", - "blockHash": "0x403f651d5952d0cea578c9d79abd97f24a1d07d3a68a512397d66a09f73513ad", - "blockNumber": "0x5dc69b8", - "blockTimestamp": "0x6a066286", - "data": "0x0000000000000000000000000000000000000000000000000000000000000000", - "logIndex": "0x16", - "removed": false, - "topics": [ - "0x8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925", - "0x000000000000000000000000141d32a89a1e0a5ef360034a2f60a4b917c18838", - "0x0000000000000000000000001a1ec25dc08e98e5e93f1104b5e5cdd298707d31" - ], - "transactionHash": "0x4f276a96fc9eb03c9250127caf964284ce56d1e024316981db50372d83b05f6c", - "transactionIndex": "0x3" - }, - { - "address": "0x000000000022d473030f116ddee9f6b43ac78ba3", - "blockHash": "0x403f651d5952d0cea578c9d79abd97f24a1d07d3a68a512397d66a09f73513ad", - "blockNumber": "0x5dc69b8", - "blockTimestamp": "0x6a066286", - "data": "0x000000000000000000000000000000000000000000000000164e3336a3c22345000000000000000000000000000000000000000000000000000000006a066286", - "logIndex": "0x17", - "removed": false, - "topics": [ - "0xda9fa7c1b00402c17d0161b249b1ab8bbec047c5a52207b9c112deffd817036b", - "0x000000000000000000000000c590175e458b83680867afd273527ff58f74c02b", - "0x0000000000000000000000001af3f329e8be154074d8769d1ffa4ee058b1dbc3", - "0x0000000000000000000000001906c1d672b88cd1b9ac7593301ca990f94eae07" - ], - "transactionHash": "0x4f276a96fc9eb03c9250127caf964284ce56d1e024316981db50372d83b05f6c", - "transactionIndex": "0x3" - }, - { - "address": "0x28e2ea090877bf75740558f6bfb36a5ffee9e9df", - "blockHash": "0x403f651d5952d0cea578c9d79abd97f24a1d07d3a68a512397d66a09f73513ad", - "blockNumber": "0x5dc69b8", - "blockTimestamp": "0x6a066286", - "data": "0xffffffffffffffffffffffffffffffffffffffffffffffffe9b1ccc95c3ddcbb000000000000000000000000000000000000000000000000164db6e3254b5a5f000000000000000000000000000000000000000100007c1cbc879ab8ec3f5c9d000000000000000000000000000000000000000000087b92bf3c2710fa8e764d00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000064", - "logIndex": "0x18", - "removed": false, - "topics": [ - "0x40e9cecb9f5f1f1c5b9c97dec2917b7ee92e57ba5563708daca94dd84ad7112f", - "0x1eb0be4b2330177969b56f8a813d9ffa0d01ed3a95da8618482bb1cb42805656", - "0x0000000000000000000000001906c1d672b88cd1b9ac7593301ca990f94eae07" - ], - "transactionHash": "0x4f276a96fc9eb03c9250127caf964284ce56d1e024316981db50372d83b05f6c", - "transactionIndex": "0x3" - }, - { - "address": "0x1af3f329e8be154074d8769d1ffa4ee058b1dbc3", - "blockHash": "0x403f651d5952d0cea578c9d79abd97f24a1d07d3a68a512397d66a09f73513ad", - "blockNumber": "0x5dc69b8", - "blockTimestamp": "0x6a066286", - "data": "0x000000000000000000000000000000000000000000000000164e3336a3c22345", - "logIndex": "0x19", - "removed": false, - "topics": [ - "0xddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef", - "0x000000000000000000000000c590175e458b83680867afd273527ff58f74c02b", - "0x00000000000000000000000028e2ea090877bf75740558f6bfb36a5ffee9e9df" - ], - "transactionHash": "0x4f276a96fc9eb03c9250127caf964284ce56d1e024316981db50372d83b05f6c", - "transactionIndex": "0x3" - }, - { - "address": "0x1af3f329e8be154074d8769d1ffa4ee058b1dbc3", - "blockHash": "0x403f651d5952d0cea578c9d79abd97f24a1d07d3a68a512397d66a09f73513ad", - "blockNumber": "0x5dc69b8", - "blockTimestamp": "0x6a066286", - "data": "0xfffffffffffffffffffffffffffffffffffffffffffffe0761279465a248eb7e", - "logIndex": "0x1a", - "removed": false, - "topics": [ - "0x8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925", - "0x000000000000000000000000c590175e458b83680867afd273527ff58f74c02b", - "0x000000000000000000000000000000000022d473030f116ddee9f6b43ac78ba3" - ], - "transactionHash": "0x4f276a96fc9eb03c9250127caf964284ce56d1e024316981db50372d83b05f6c", - "transactionIndex": "0x3" - }, - { - "address": "0x55d398326f99059ff775485246999027b3197955", - "blockHash": "0x403f651d5952d0cea578c9d79abd97f24a1d07d3a68a512397d66a09f73513ad", - "blockNumber": "0x5dc69b8", - "blockTimestamp": "0x6a066286", - "data": "0x000000000000000000000000000000000000000000000000164db6e3254b5a5f", - "logIndex": "0x1b", - "removed": false, - "topics": [ - "0xddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef", - "0x00000000000000000000000028e2ea090877bf75740558f6bfb36a5ffee9e9df", - "0x000000000000000000000000c590175e458b83680867afd273527ff58f74c02b" - ], - "transactionHash": "0x4f276a96fc9eb03c9250127caf964284ce56d1e024316981db50372d83b05f6c", - "transactionIndex": "0x3" - }, - { - "address": "0x1af3f329e8be154074d8769d1ffa4ee058b1dbc3", - "blockHash": "0x403f651d5952d0cea578c9d79abd97f24a1d07d3a68a512397d66a09f73513ad", - "blockNumber": "0x5dc69b8", - "blockTimestamp": "0x6a066286", - "data": "0x000000000000000000000000000000000000000000000000003267c188103da5", - "logIndex": "0x1c", - "removed": false, - "topics": [ - "0xddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef", - "0x000000000000000000000000c590175e458b83680867afd273527ff58f74c02b", - "0x000000000000000000000000b28da7bc87a9dd1e60849aa7fcb5da24ea913c42" - ], - "transactionHash": "0x4f276a96fc9eb03c9250127caf964284ce56d1e024316981db50372d83b05f6c", - "transactionIndex": "0x3" - }, - { - "address": "0x55d398326f99059ff775485246999027b3197955", - "blockHash": "0x403f651d5952d0cea578c9d79abd97f24a1d07d3a68a512397d66a09f73513ad", - "blockNumber": "0x5dc69b8", - "blockTimestamp": "0x6a066286", - "data": "0x000000000000000000000000000000000000000000000000164db6e3254b5a5f", - "logIndex": "0x1d", - "removed": false, - "topics": [ - "0xddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef", - "0x000000000000000000000000c590175e458b83680867afd273527ff58f74c02b", - "0x000000000000000000000000141d32a89a1e0a5ef360034a2f60a4b917c18838" - ], - "transactionHash": "0x4f276a96fc9eb03c9250127caf964284ce56d1e024316981db50372d83b05f6c", - "transactionIndex": "0x3" - }, - { - "address": "0x1a1ec25dc08e98e5e93f1104b5e5cdd298707d31", - "blockHash": "0x403f651d5952d0cea578c9d79abd97f24a1d07d3a68a512397d66a09f73513ad", - "blockNumber": "0x5dc69b8", - "blockTimestamp": "0x6a066286", - "data": "0x", - "logIndex": "0x1e", - "removed": false, - "topics": [ - "0xbeee1e6e7fe307ddcf84b0a16137a4430ad5e2480fc4f4a8e250ab56ccd7630d", - "0x9cc844e2828788f25f9d674f9dfb6a66ef6b8c38360c0ec1fa99e0b18c32eae8", - "0x000000000000000000000000141d32a89a1e0a5ef360034a2f60a4b917c18838" - ], - "transactionHash": "0x4f276a96fc9eb03c9250127caf964284ce56d1e024316981db50372d83b05f6c", - "transactionIndex": "0x3" - }, - { - "address": "0x55d398326f99059ff775485246999027b3197955", - "blockHash": "0x403f651d5952d0cea578c9d79abd97f24a1d07d3a68a512397d66a09f73513ad", - "blockNumber": "0x5dc69b8", - "blockTimestamp": "0x6a066286", - "data": "0x00000000000000000000000000000000000000000000000000bedde0c4bd4047", - "logIndex": "0x1f", - "removed": false, - "topics": [ - "0xddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef", - "0x000000000000000000000000141d32a89a1e0a5ef360034a2f60a4b917c18838", - "0x000000000000000000000000e3478b0bb1a5084567c319096437924948be1964" - ], - "transactionHash": "0x4f276a96fc9eb03c9250127caf964284ce56d1e024316981db50372d83b05f6c", - "transactionIndex": "0x3" - }, - { - "address": "0xdb9b1e94b5b69df7e401ddbede43491141047db3", - "blockHash": "0x403f651d5952d0cea578c9d79abd97f24a1d07d3a68a512397d66a09f73513ad", - "blockNumber": "0x5dc69b8", - "blockTimestamp": "0x6a066286", - "data": "0x00000000000000000000000000000000000000000000000000000000000000200000000000000000000000000000000000000000000000000000000000000a11000000000000000000000000141d32a89a1e0a5ef360034a2f60a4b917c18838ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff00000000000000000000000000000000000000000000000000000000000000c08ad11d2ea35bbd87fb771504da81da1710e66a0da9b7fd9b46f7f044a5d6b450000000000000000000000000000000000000000000000000000000000000152000000000000000000000000000000000000000000000000000000000000000020000000000000000000000000000000000000000000000000000000000000040000000000000000000000000000000000000000000000000000000000000010000000000000000000000000004658b29f6b82ed55274221a06fc97d318e25416000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000000a00000000000000000000000000000000000000000000000000000000000000020000000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000000000000000000000000000000000001e141e455d08721dd5bcda1baa6ea5633afd50170000000000000000000000000000000000000000000000000000000000000060000000000000000000000000000000000000000000000000000000000000132000000000000000000000000000000000000000000000000000000000000012a00000000000000000000000000000000000000000000000000000000000000020000000000000000000000000000000000000000000000000000000000000000500000000000000000000000000000000000000000000000000000000000000a0000000000000000000000000000000000000000000000000000000000000018000000000000000000000000000000000000000000000000000000000000009200000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000000000000000000000000000001180000000000000000000000000f8a0bf9cf54bb92f17374d9e9a321e6a111a51bd000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000600000000000000000000000000000000000000000000000000000000000000044095ea7b30000000000000000000000001a1ec25dc08e98e5e93f1104b5e5cdd298707d31000000000000000000000000000000000000000000000000029522d1a9a48529000000000000000000000000000000000000000000000000000000000000000000000000000000001a1ec25dc08e98e5e93f1104b5e5cdd298707d310000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000007055f5755290000000000000000000000000000000000000000000000000000000000000080000000000000000000000000f8a0bf9cf54bb92f17374d9e9a321e6a111a51bd000000000000000000000000000000000000000000000000029522d1a9a4852900000000000000000000000000000000000000000000000000000000000000c0000000000000000000000000000000000000000000000000000000000000000430785632000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000620000000000000000000000000f8a0bf9cf54bb92f17374d9e9a321e6a111a51bd00000000000000000000000055d398326f99059ff775485246999027b3197955000000000000000000000000000000000000000000000000029522d1a9a485290000000000000000000000000000000000000000000000001a54dcc9639922cf0000000000000000000000000000000000000000000000000000000000000120000000000000000000000000000000000000000000000000003cb7b1626fb173000000000000000000000000b28da7bc87a9dd1e60849aa7fcb5da24ea913c42000000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000000004e42213bc0b000000000000000000000000c2eff1f1ce35d395408a34ad881dbcd978f40b89000000000000000000000000f8a0bf9cf54bb92f17374d9e9a321e6a111a51bd000000000000000000000000000000000000000000000000029522d1a9a48529000000000000000000000000c2eff1f1ce35d395408a34ad881dbcd978f40b8900000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000000000000000000000000000004041fff991f000000000000000000000000c590175e458b83680867afd273527ff58f74c02b00000000000000000000000055d398326f99059ff775485246999027b31979550000000000000000000000000000000000000000000000001ad5c1d3815d320000000000000000000000000000000000000000000000000000000000000000a0d43c254c3f608344feba3dc60000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000300000000000000000000000000000000000000000000000000000000000000600000000000000000000000000000000000000000000000000000000000000180000000000000000000000000000000000000000000000000000000000000028000000000000000000000000000000000000000000000000000000000000000e4c1fb425e000000000000000000000000c71ae603efb29bc8eedd9c9c5323011e167179a2000000000000000000000000f8a0bf9cf54bb92f17374d9e9a321e6a111a51bd000000000000000000000000000000000000000000000000029522d1a9a485290000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000006a0663aa00000000000000000000000000000000000000000000000000000000000000c000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000c4103b48be000000000000000000000000c2eff1f1ce35d395408a34ad881dbcd978f40b89000000000000000000000000f8a0bf9cf54bb92f17374d9e9a321e6a111a51bd0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000c71ae603efb29bc8eedd9c9c5323011e167179a20000000000000000000000000000000000000000000000000000000000001e00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000008434ee90ca000000000000000000000000d0a67cb08be17475f4315a04c5f0be3e200ef66c00000000000000000000000055d398326f99059ff775485246999027b31979550000000000000000000000000000000000000000000000001b1c46a242a4973b0000000000000000000000000000000000000000000000000000000000002710000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000f00000000000000000000000000000000000000000000000000000000000000000000000000000001af3f329e8be154074d8769d1ffa4ee058b1dbc3000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000600000000000000000000000000000000000000000000000000000000000000044095ea7b30000000000000000000000001a1ec25dc08e98e5e93f1104b5e5cdd298707d3100000000000000000000000000000000000000000000000016809af82bd260ea000000000000000000000000000000000000000000000000000000000000000000000000000000001a1ec25dc08e98e5e93f1104b5e5cdd298707d310000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000006e55f57552900000000000000000000000000000000000000000000000000000000000000800000000000000000000000001af3f329e8be154074d8769d1ffa4ee058b1dbc300000000000000000000000000000000000000000000000016809af82bd260ea00000000000000000000000000000000000000000000000000000000000000c00000000000000000000000000000000000000000000000000000000000000018756e69737761705065726d69743246656544796e616d6963000000000000000000000000000000000000000000000000000000000000000000000000000006000000000000000000000000001af3f329e8be154074d8769d1ffa4ee058b1dbc300000000000000000000000055d398326f99059ff775485246999027b3197955000000000000000000000000000000000000000000000000164e3336a3c2234500000000000000000000000000000000000000000000000015db8526486372290000000000000000000000000000000000000000000000000000000000000120000000000000000000000000000000000000000000000000003267c188103da5000000000000000000000000b28da7bc87a9dd1e60849aa7fcb5da24ea913c42000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000004ce3593564c000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000000a0000000000000000000000000000000000000000000000000000000006a066987000000000000000000000000000000000000000000000000000000000000000110000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000002000000000000000000000000000000000000000000000000000000000000003c0000000000000000000000000000000000000000000000000000000000000004000000000000000000000000000000000000000000000000000000000000000800000000000000000000000000000000000000000000000000000000000000003070b0e000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000030000000000000000000000000000000000000000000000000000000000000060000000000000000000000000000000000000000000000000000000000000022000000000000000000000000000000000000000000000000000000000000002a000000000000000000000000000000000000000000000000000000000000001a000000000000000000000000000000000000000000000000000000000000000200000000000000000000000001af3f329e8be154074d8769d1ffa4ee058b1dbc30000000000000000000000000000000000000000000000000000000000000080000000000000000000000000000000000000000000000000164e3336a3c2234500000000000000000000000000000000000000000000000015ddc25c2e9a30710000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000002000000000000000000000000055d398326f99059ff775485246999027b319795500000000000000000000000000000000000000000000000000000000000000640000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000a0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000600000000000000000000000001af3f329e8be154074d8769d1ffa4ee058b1dbc300000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000006000000000000000000000000055d398326f99059ff775485246999027b3197955000000000000000000000000c590175e458b83680867afd273527ff58f74c02b0000000000000000000000000000000000000000000000000000000000000000756e69780000b2c5de0b0000000000000000000000000000000000007600000000000000000000000000000000000000000000000000000000000000000000000000000055d398326f99059ff775485246999027b3197955000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000600000000000000000000000000000000000000000000000000000000000000044a9059cbb000000000000000000000000e3478b0bb1a5084567c319096437924948be196400000000000000000000000000000000000000000000000000bedde0c4bd4047000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000004152064fab3dd9256fdd33ca9a461262abcc15b1797b25a011cb3f7e2710f23cb96650ba1e61b85c7359574ec35e6d5031957fe272ca784a65c6bf55cf1afdbeaf1b00000000000000000000000000000000000000000000000000000000000000", - "logIndex": "0x20", - "removed": false, - "topics": [ - "0x40dadaa36c6c2e3d7317e24757451ffb2d603d875f0ad5e92c5dd156573b1873", - "0x000000000000000000000000141d32a89a1e0a5ef360034a2f60a4b917c18838", - "0x000000000000000000000000b01caea8c6c47bbf4f4b4c5080ca642043359c2e" - ], - "transactionHash": "0x4f276a96fc9eb03c9250127caf964284ce56d1e024316981db50372d83b05f6c", - "transactionIndex": "0x3" - } - ], - "logsBloom": "0x4061000800000000080800008004080000000000000010084000000000008400004000002000000000001000000100000001000084800000008000100028280000000081000001000702400802002024000000000200082200000000000110000800000000000040000001000800000090000000000000000000001000010002002400000000000180800002080080000000000100001088200000400000000022000000080000000100000000000100800000004000000000000008400000080008000a000000000000000000040000200900000000005040200002100000000030000000000000004200000400020040000000000000000000000000080500", - "status": "0x1", - "to": "0xdb9b1e94b5b69df7e401ddbede43491141047db3", - "transactionHash": "0x4f276a96fc9eb03c9250127caf964284ce56d1e024316981db50372d83b05f6c", - "transactionIndex": "0x3", - "type": "0x2" - }, - "type": "swap", - "userEditedGasLimit": false, - "userFeeLevel": "medium", - "v": "0x1", - "verifiedOnBlockchain": true - }, - { - "baseFeePerGas": "0x0", - "batchId": "0x19e28f7e5fc", - "blockTimestamp": "0x6a0663c5", - "chainId": "0x38", - "defaultGasEstimates": { - "estimateType": "medium", - "gas": "0x916a8", - "maxFeePerGas": "0x3938700", - "maxPriorityFeePerGas": "0x3938700" - }, - "delegationAddress": "0x63c0c19a282a1b52b07dd5a65b58948a07dae32b", - "excludeNativeTokenForFee": true, - "gasLimitNoBuffer": "0x916a8", - "hash": "0x1af8fb2bebcc7b224ced25e09d3952f2b3a98f4bb8924502510d53301a0df3d5", - "id": "108f1b10-4ff2-11f1-9f48-c9082a6dd9ea", - "isGasFeeIncluded": true, - "isGasFeeSponsored": false, - "isGasFeeTokenIgnoredIfBalance": false, - "nestedTransactions": [ - { - "data": "0x095ea7b30000000000000000000000001a1ec25dc08e98e5e93f1104b5e5cdd298707d310000000000000000000000000000000000000000000000000295b637bd12ec91", - "from": "0x141d32a89a1e0a5ef360034a2f60a4b917c18838", - "gas": "0x1110c", - "maxFeePerGas": "0x3938700", - "maxPriorityFeePerGas": "0x3938700", - "to": "0xf8a0bf9cf54bb92f17374d9e9a321e6a111a51bd", - "type": "swapApproval", - "value": "0x0" - }, - { - "data": "0x5f5755290000000000000000000000000000000000000000000000000000000000000080000000000000000000000000f8a0bf9cf54bb92f17374d9e9a321e6a111a51bd0000000000000000000000000000000000000000000000000295b637bd12ec9100000000000000000000000000000000000000000000000000000000000000c00000000000000000000000000000000000000000000000000000000000000018756e69737761705065726d69743246656544796e616d696300000000000000000000000000000000000000000000000000000000000000000000000000000360000000000000000000000000f8a0bf9cf54bb92f17374d9e9a321e6a111a51bd00000000000000000000000055d398326f99059ff775485246999027b31979550000000000000000000000000000000000000000000000000295b637bd12ec910000000000000000000000000000000000000000000000001a6091f10cd19fbb0000000000000000000000000000000000000000000000000000000000000120000000000000000000000000000000000000000000000000003cd2b07f1fb9f4000000000000000000000000b28da7bc87a9dd1e60849aa7fcb5da24ea913c420000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000022e3593564c000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000000a0000000000000000000000000000000000000000000000000000000006a066ac100000000000000000000000000000000000000000000000000000000000000010000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000000000200000000000000000000000000000000000000000000000000000000000000120000000000000000000000000c590175e458b83680867afd273527ff58f74c02b0000000000000000000000000000000000000000000000000295b637bd12ec910000000000000000000000000000000000000000000000001a9ee71032febe7d00000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000000000000000000000000000000010000000000000000000000000000000000000000000000000000000000000042f8a0bf9cf54bb92f17374d9e9a321e6a111a51bd0001f42170ed0880ac9a755fd29b2688956bd959f933f80001f455d398326f99059ff775485246999027b3197955000000000000000000000000000000000000000000000000000000000000756e69780000b2c5de0b0000000000000000000000000000000000008e", - "from": "0x141d32a89a1e0a5ef360034a2f60a4b917c18838", - "gas": "0x793f5", - "maxFeePerGas": "0x3938700", - "maxPriorityFeePerGas": "0x3938700", - "to": "0x1a1ec25DC08e98e5E93F1104B5e5cdD298707d31", - "type": "swap", - "value": "0x0" - }, - { - "data": "0x095ea7b30000000000000000000000001a1ec25dc08e98e5e93f1104b5e5cdd298707d310000000000000000000000000000000000000000000000003203235c920cba32", - "from": "0x141d32a89a1e0a5ef360034a2f60a4b917c18838", - "gas": "0x1110c", - "maxFeePerGas": "0x3938700", - "maxPriorityFeePerGas": "0x3938700", - "to": "0x1af3f329e8be154074d8769d1ffa4ee058b1dbc3", - "type": "swapApproval", - "value": "0x0" - }, - { - "data": "0x5f57552900000000000000000000000000000000000000000000000000000000000000800000000000000000000000001af3f329e8be154074d8769d1ffa4ee058b1dbc30000000000000000000000000000000000000000000000003203235c920cba3200000000000000000000000000000000000000000000000000000000000000c00000000000000000000000000000000000000000000000000000000000000018756e69737761705065726d69743246656544796e616d6963000000000000000000000000000000000000000000000000000000000000000000000000000006000000000000000000000000001af3f329e8be154074d8769d1ffa4ee058b1dbc300000000000000000000000055d398326f99059ff775485246999027b319795500000000000000000000000000000000000000000000000031931c550a5f2d0c000000000000000000000000000000000000000000000000309435be821a88f300000000000000000000000000000000000000000000000000000000000001200000000000000000000000000000000000000000000000000070070787ad8d26000000000000000000000000b28da7bc87a9dd1e60849aa7fcb5da24ea913c42000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000004ce3593564c000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000000a0000000000000000000000000000000000000000000000000000000006a066ac1000000000000000000000000000000000000000000000000000000000000000110000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000002000000000000000000000000000000000000000000000000000000000000003c0000000000000000000000000000000000000000000000000000000000000004000000000000000000000000000000000000000000000000000000000000000800000000000000000000000000000000000000000000000000000000000000003070b0e000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000030000000000000000000000000000000000000000000000000000000000000060000000000000000000000000000000000000000000000000000000000000022000000000000000000000000000000000000000000000000000000000000002a000000000000000000000000000000000000000000000000000000000000001a000000000000000000000000000000000000000000000000000000000000000200000000000000000000000001af3f329e8be154074d8769d1ffa4ee058b1dbc3000000000000000000000000000000000000000000000000000000000000008000000000000000000000000000000000000000000000000031931c550a5f2d0c00000000000000000000000000000000000000000000000030992fb8beccff6d0000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000002000000000000000000000000055d398326f99059ff775485246999027b319795500000000000000000000000000000000000000000000000000000000000000640000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000a0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000600000000000000000000000001af3f329e8be154074d8769d1ffa4ee058b1dbc300000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000006000000000000000000000000055d398326f99059ff775485246999027b3197955000000000000000000000000c590175e458b83680867afd273527ff58f74c02b0000000000000000000000000000000000000000000000000000000000000000756e69780000b2c5de0b0000000000000000000000000000000000005c", - "from": "0x141d32a89a1e0a5ef360034a2f60a4b917c18838", - "gas": "0x5d131", - "maxFeePerGas": "0x3938700", - "maxPriorityFeePerGas": "0x3938700", - "to": "0x1a1ec25DC08e98e5E93F1104B5e5cdD298707d31", - "type": "swap", - "value": "0x0" - }, - { - "data": "0xa9059cbb000000000000000000000000e3478b0bb1a5084567c319096437924948be196400000000000000000000000000000000000000000000000000c673dfa365026d", - "from": "0x141d32a89a1e0a5ef360034a2f60a4b917c18838", - "gas": "0xcc57", - "maxFeePerGas": "0x3938700", - "maxPriorityFeePerGas": "0x3938700", - "to": "0x55d398326f99059ff775485246999027b3197955", - "type": "transfer", - "value": "0x0" - } - ], - "networkClientId": "9a1eafde-5f04-434b-b011-e9de5c50baf0", - "origin": "metamask", - "originalGasEstimate": "0x916a8", - "postTxBalance": "0x105e7a033200", - "r": "0x36c7f0a5e218d9724269d6d9d0ed4612887e4b3d48d032ef38697f19eea62289", - "rawTx": "0x02f910b1385c84039387008403938700830916a894141d32a89a1e0a5ef360034a2f60a4b917c1883880b91044e9ae5c53010100000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000400000000000000000000000000000000000000000000000000000000000000fe00000000000000000000000000000000000000000000000000000000000000020000000000000000000000000000000000000000000000000000000000000000500000000000000000000000000000000000000000000000000000000000000a00000000000000000000000000000000000000000000000000000000000000180000000000000000000000000000000000000000000000000000000000000066000000000000000000000000000000000000000000000000000000000000007400000000000000000000000000000000000000000000000000000000000000ec0000000000000000000000000f8a0bf9cf54bb92f17374d9e9a321e6a111a51bd000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000600000000000000000000000000000000000000000000000000000000000000044095ea7b30000000000000000000000001a1ec25dc08e98e5e93f1104b5e5cdd298707d310000000000000000000000000000000000000000000000000295b637bd12ec91000000000000000000000000000000000000000000000000000000000000000000000000000000001a1ec25dc08e98e5e93f1104b5e5cdd298707d310000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000004455f5755290000000000000000000000000000000000000000000000000000000000000080000000000000000000000000f8a0bf9cf54bb92f17374d9e9a321e6a111a51bd0000000000000000000000000000000000000000000000000295b637bd12ec9100000000000000000000000000000000000000000000000000000000000000c00000000000000000000000000000000000000000000000000000000000000018756e69737761705065726d69743246656544796e616d696300000000000000000000000000000000000000000000000000000000000000000000000000000360000000000000000000000000f8a0bf9cf54bb92f17374d9e9a321e6a111a51bd00000000000000000000000055d398326f99059ff775485246999027b31979550000000000000000000000000000000000000000000000000295b637bd12ec910000000000000000000000000000000000000000000000001a6091f10cd19fbb0000000000000000000000000000000000000000000000000000000000000120000000000000000000000000000000000000000000000000003cd2b07f1fb9f4000000000000000000000000b28da7bc87a9dd1e60849aa7fcb5da24ea913c420000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000022e3593564c000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000000a0000000000000000000000000000000000000000000000000000000006a066ac100000000000000000000000000000000000000000000000000000000000000010000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000000000200000000000000000000000000000000000000000000000000000000000000120000000000000000000000000c590175e458b83680867afd273527ff58f74c02b0000000000000000000000000000000000000000000000000295b637bd12ec910000000000000000000000000000000000000000000000001a9ee71032febe7d00000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000000000000000000000000000000010000000000000000000000000000000000000000000000000000000000000042f8a0bf9cf54bb92f17374d9e9a321e6a111a51bd0001f42170ed0880ac9a755fd29b2688956bd959f933f80001f455d398326f99059ff775485246999027b3197955000000000000000000000000000000000000000000000000000000000000756e69780000b2c5de0b0000000000000000000000000000000000008e0000000000000000000000000000000000000000000000000000000000000000000000000000001af3f329e8be154074d8769d1ffa4ee058b1dbc3000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000600000000000000000000000000000000000000000000000000000000000000044095ea7b30000000000000000000000001a1ec25dc08e98e5e93f1104b5e5cdd298707d310000000000000000000000000000000000000000000000003203235c920cba32000000000000000000000000000000000000000000000000000000000000000000000000000000001a1ec25dc08e98e5e93f1104b5e5cdd298707d310000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000006e55f57552900000000000000000000000000000000000000000000000000000000000000800000000000000000000000001af3f329e8be154074d8769d1ffa4ee058b1dbc30000000000000000000000000000000000000000000000003203235c920cba3200000000000000000000000000000000000000000000000000000000000000c00000000000000000000000000000000000000000000000000000000000000018756e69737761705065726d69743246656544796e616d6963000000000000000000000000000000000000000000000000000000000000000000000000000006000000000000000000000000001af3f329e8be154074d8769d1ffa4ee058b1dbc300000000000000000000000055d398326f99059ff775485246999027b319795500000000000000000000000000000000000000000000000031931c550a5f2d0c000000000000000000000000000000000000000000000000309435be821a88f300000000000000000000000000000000000000000000000000000000000001200000000000000000000000000000000000000000000000000070070787ad8d26000000000000000000000000b28da7bc87a9dd1e60849aa7fcb5da24ea913c42000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000004ce3593564c000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000000a0000000000000000000000000000000000000000000000000000000006a066ac1000000000000000000000000000000000000000000000000000000000000000110000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000002000000000000000000000000000000000000000000000000000000000000003c0000000000000000000000000000000000000000000000000000000000000004000000000000000000000000000000000000000000000000000000000000000800000000000000000000000000000000000000000000000000000000000000003070b0e000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000030000000000000000000000000000000000000000000000000000000000000060000000000000000000000000000000000000000000000000000000000000022000000000000000000000000000000000000000000000000000000000000002a000000000000000000000000000000000000000000000000000000000000001a000000000000000000000000000000000000000000000000000000000000000200000000000000000000000001af3f329e8be154074d8769d1ffa4ee058b1dbc3000000000000000000000000000000000000000000000000000000000000008000000000000000000000000000000000000000000000000031931c550a5f2d0c00000000000000000000000000000000000000000000000030992fb8beccff6d0000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000002000000000000000000000000055d398326f99059ff775485246999027b319795500000000000000000000000000000000000000000000000000000000000000640000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000a0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000600000000000000000000000001af3f329e8be154074d8769d1ffa4ee058b1dbc300000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000006000000000000000000000000055d398326f99059ff775485246999027b3197955000000000000000000000000c590175e458b83680867afd273527ff58f74c02b0000000000000000000000000000000000000000000000000000000000000000756e69780000b2c5de0b0000000000000000000000000000000000005c00000000000000000000000000000000000000000000000000000000000000000000000000000055d398326f99059ff775485246999027b3197955000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000600000000000000000000000000000000000000000000000000000000000000044a9059cbb000000000000000000000000e3478b0bb1a5084567c319096437924948be196400000000000000000000000000000000000000000000000000c673dfa365026d00000000000000000000000000000000000000000000000000000000c001a036c7f0a5e218d9724269d6d9d0ed4612887e4b3d48d032ef38697f19eea62289a0388c9351834ccf3f9439936564f0fcad7594717a049cc3bc6bc2cbb731a74bce", - "s": "0x388c9351834ccf3f9439936564f0fcad7594717a049cc3bc6bc2cbb731a74bce", - "selectedGasFeeToken": "0x55d398326f99059ff775485246999027b3197955", - "status": "confirmed", - "submittedTime": 1778803654101, - "time": 1778803650369, - "txParams": { - "data": "0xe9ae5c53010100000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000400000000000000000000000000000000000000000000000000000000000000fe00000000000000000000000000000000000000000000000000000000000000020000000000000000000000000000000000000000000000000000000000000000500000000000000000000000000000000000000000000000000000000000000a00000000000000000000000000000000000000000000000000000000000000180000000000000000000000000000000000000000000000000000000000000066000000000000000000000000000000000000000000000000000000000000007400000000000000000000000000000000000000000000000000000000000000ec0000000000000000000000000f8a0bf9cf54bb92f17374d9e9a321e6a111a51bd000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000600000000000000000000000000000000000000000000000000000000000000044095ea7b30000000000000000000000001a1ec25dc08e98e5e93f1104b5e5cdd298707d310000000000000000000000000000000000000000000000000295b637bd12ec91000000000000000000000000000000000000000000000000000000000000000000000000000000001a1ec25dc08e98e5e93f1104b5e5cdd298707d310000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000004455f5755290000000000000000000000000000000000000000000000000000000000000080000000000000000000000000f8a0bf9cf54bb92f17374d9e9a321e6a111a51bd0000000000000000000000000000000000000000000000000295b637bd12ec9100000000000000000000000000000000000000000000000000000000000000c00000000000000000000000000000000000000000000000000000000000000018756e69737761705065726d69743246656544796e616d696300000000000000000000000000000000000000000000000000000000000000000000000000000360000000000000000000000000f8a0bf9cf54bb92f17374d9e9a321e6a111a51bd00000000000000000000000055d398326f99059ff775485246999027b31979550000000000000000000000000000000000000000000000000295b637bd12ec910000000000000000000000000000000000000000000000001a6091f10cd19fbb0000000000000000000000000000000000000000000000000000000000000120000000000000000000000000000000000000000000000000003cd2b07f1fb9f4000000000000000000000000b28da7bc87a9dd1e60849aa7fcb5da24ea913c420000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000022e3593564c000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000000a0000000000000000000000000000000000000000000000000000000006a066ac100000000000000000000000000000000000000000000000000000000000000010000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000000000200000000000000000000000000000000000000000000000000000000000000120000000000000000000000000c590175e458b83680867afd273527ff58f74c02b0000000000000000000000000000000000000000000000000295b637bd12ec910000000000000000000000000000000000000000000000001a9ee71032febe7d00000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000000000000000000000000000000010000000000000000000000000000000000000000000000000000000000000042f8a0bf9cf54bb92f17374d9e9a321e6a111a51bd0001f42170ed0880ac9a755fd29b2688956bd959f933f80001f455d398326f99059ff775485246999027b3197955000000000000000000000000000000000000000000000000000000000000756e69780000b2c5de0b0000000000000000000000000000000000008e0000000000000000000000000000000000000000000000000000000000000000000000000000001af3f329e8be154074d8769d1ffa4ee058b1dbc3000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000600000000000000000000000000000000000000000000000000000000000000044095ea7b30000000000000000000000001a1ec25dc08e98e5e93f1104b5e5cdd298707d310000000000000000000000000000000000000000000000003203235c920cba32000000000000000000000000000000000000000000000000000000000000000000000000000000001a1ec25dc08e98e5e93f1104b5e5cdd298707d310000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000006e55f57552900000000000000000000000000000000000000000000000000000000000000800000000000000000000000001af3f329e8be154074d8769d1ffa4ee058b1dbc30000000000000000000000000000000000000000000000003203235c920cba3200000000000000000000000000000000000000000000000000000000000000c00000000000000000000000000000000000000000000000000000000000000018756e69737761705065726d69743246656544796e616d6963000000000000000000000000000000000000000000000000000000000000000000000000000006000000000000000000000000001af3f329e8be154074d8769d1ffa4ee058b1dbc300000000000000000000000055d398326f99059ff775485246999027b319795500000000000000000000000000000000000000000000000031931c550a5f2d0c000000000000000000000000000000000000000000000000309435be821a88f300000000000000000000000000000000000000000000000000000000000001200000000000000000000000000000000000000000000000000070070787ad8d26000000000000000000000000b28da7bc87a9dd1e60849aa7fcb5da24ea913c42000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000004ce3593564c000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000000a0000000000000000000000000000000000000000000000000000000006a066ac1000000000000000000000000000000000000000000000000000000000000000110000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000002000000000000000000000000000000000000000000000000000000000000003c0000000000000000000000000000000000000000000000000000000000000004000000000000000000000000000000000000000000000000000000000000000800000000000000000000000000000000000000000000000000000000000000003070b0e000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000030000000000000000000000000000000000000000000000000000000000000060000000000000000000000000000000000000000000000000000000000000022000000000000000000000000000000000000000000000000000000000000002a000000000000000000000000000000000000000000000000000000000000001a000000000000000000000000000000000000000000000000000000000000000200000000000000000000000001af3f329e8be154074d8769d1ffa4ee058b1dbc3000000000000000000000000000000000000000000000000000000000000008000000000000000000000000000000000000000000000000031931c550a5f2d0c00000000000000000000000000000000000000000000000030992fb8beccff6d0000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000002000000000000000000000000055d398326f99059ff775485246999027b319795500000000000000000000000000000000000000000000000000000000000000640000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000a0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000600000000000000000000000001af3f329e8be154074d8769d1ffa4ee058b1dbc300000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000006000000000000000000000000055d398326f99059ff775485246999027b3197955000000000000000000000000c590175e458b83680867afd273527ff58f74c02b0000000000000000000000000000000000000000000000000000000000000000756e69780000b2c5de0b0000000000000000000000000000000000005c00000000000000000000000000000000000000000000000000000000000000000000000000000055d398326f99059ff775485246999027b3197955000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000600000000000000000000000000000000000000000000000000000000000000044a9059cbb000000000000000000000000e3478b0bb1a5084567c319096437924948be196400000000000000000000000000000000000000000000000000c673dfa365026d00000000000000000000000000000000000000000000000000000000", - "from": "0x141d32a89a1e0a5ef360034a2f60a4b917c18838", - "gas": "0x916a8", - "gasLimit": "0x916a8", - "maxFeePerGas": "0x3938700", - "maxPriorityFeePerGas": "0x3938700", - "to": "0x141d32a89a1e0a5ef360034a2f60a4b917c18838", - "type": "0x2", - "value": "0x0" - }, - "txReceipt": { - "blockHash": "0x94bda0986812c233d57f540ac3cb541248523800d84170a645aba6e8c7b32b9e", - "blockNumber": "0x5dc6c7b", - "contractAddress": null, - "cumulativeGasUsed": "0xe47b5f", - "effectiveGasPrice": "0x3938700", - "from": "0xb01caea8c6c47bbf4f4b4c5080ca642043359c2e", - "gasUsed": "0xa5e8a", - "logs": [ - { - "address": "0x04658b29f6b82ed55274221a06fc97d318e25416", - "blockHash": "0x94bda0986812c233d57f540ac3cb541248523800d84170a645aba6e8c7b32b9e", - "blockNumber": "0x5dc6c7b", - "blockTimestamp": "0x6a0663c5", - "data": "0x00000000000000000000000000000000000000000000000000000000000000010000000000000000000000000000000000000000000000000000000000000001", - "logIndex": "0x53", - "removed": false, - "topics": [ - "0x449da07f2c06c9d1a6b19d2454ffe749e8cf991d22f686e076a1a4844c5ff370", - "0x000000000000000000000000db9b1e94b5b69df7e401ddbede43491141047db3", - "0x000000000000000000000000b01caea8c6c47bbf4f4b4c5080ca642043359c2e", - "0xc97821ba3c26f250e32b78375bcd768b437799e983d548e4a736e863c517f3b1" - ], - "transactionHash": "0x1af8fb2bebcc7b224ced25e09d3952f2b3a98f4bb8924502510d53301a0df3d5", - "transactionIndex": "0xe" - }, - { - "address": "0xf8a0bf9cf54bb92f17374d9e9a321e6a111a51bd", - "blockHash": "0x94bda0986812c233d57f540ac3cb541248523800d84170a645aba6e8c7b32b9e", - "blockNumber": "0x5dc6c7b", - "blockTimestamp": "0x6a0663c5", - "data": "0x0000000000000000000000000000000000000000000000000295b637bd12ec91", - "logIndex": "0x54", - "removed": false, - "topics": [ - "0x8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925", - "0x000000000000000000000000141d32a89a1e0a5ef360034a2f60a4b917c18838", - "0x0000000000000000000000001a1ec25dc08e98e5e93f1104b5e5cdd298707d31" - ], - "transactionHash": "0x1af8fb2bebcc7b224ced25e09d3952f2b3a98f4bb8924502510d53301a0df3d5", - "transactionIndex": "0xe" - }, - { - "address": "0xf8a0bf9cf54bb92f17374d9e9a321e6a111a51bd", - "blockHash": "0x94bda0986812c233d57f540ac3cb541248523800d84170a645aba6e8c7b32b9e", - "blockNumber": "0x5dc6c7b", - "blockTimestamp": "0x6a0663c5", - "data": "0x0000000000000000000000000000000000000000000000000295b637bd12ec91", - "logIndex": "0x55", - "removed": false, - "topics": [ - "0xddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef", - "0x000000000000000000000000141d32a89a1e0a5ef360034a2f60a4b917c18838", - "0x000000000000000000000000c590175e458b83680867afd273527ff58f74c02b" - ], - "transactionHash": "0x1af8fb2bebcc7b224ced25e09d3952f2b3a98f4bb8924502510d53301a0df3d5", - "transactionIndex": "0xe" - }, - { - "address": "0xf8a0bf9cf54bb92f17374d9e9a321e6a111a51bd", - "blockHash": "0x94bda0986812c233d57f540ac3cb541248523800d84170a645aba6e8c7b32b9e", - "blockNumber": "0x5dc6c7b", - "blockTimestamp": "0x6a0663c5", - "data": "0x0000000000000000000000000000000000000000000000000000000000000000", - "logIndex": "0x56", - "removed": false, - "topics": [ - "0x8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925", - "0x000000000000000000000000141d32a89a1e0a5ef360034a2f60a4b917c18838", - "0x0000000000000000000000001a1ec25dc08e98e5e93f1104b5e5cdd298707d31" - ], - "transactionHash": "0x1af8fb2bebcc7b224ced25e09d3952f2b3a98f4bb8924502510d53301a0df3d5", - "transactionIndex": "0xe" - }, - { - "address": "0x000000000022d473030f116ddee9f6b43ac78ba3", - "blockHash": "0x94bda0986812c233d57f540ac3cb541248523800d84170a645aba6e8c7b32b9e", - "blockNumber": "0x5dc6c7b", - "blockTimestamp": "0x6a0663c5", - "data": "0x0000000000000000000000000000000000000000000000000295b637bd12ec91000000000000000000000000000000000000000000000000000000006a0663c5", - "logIndex": "0x57", - "removed": false, - "topics": [ - "0xda9fa7c1b00402c17d0161b249b1ab8bbec047c5a52207b9c112deffd817036b", - "0x000000000000000000000000c590175e458b83680867afd273527ff58f74c02b", - "0x000000000000000000000000f8a0bf9cf54bb92f17374d9e9a321e6a111a51bd", - "0x0000000000000000000000001906c1d672b88cd1b9ac7593301ca990f94eae07" - ], - "transactionHash": "0x1af8fb2bebcc7b224ced25e09d3952f2b3a98f4bb8924502510d53301a0df3d5", - "transactionIndex": "0xe" - }, - { - "address": "0x2170ed0880ac9a755fd29b2688956bd959f933f8", - "blockHash": "0x94bda0986812c233d57f540ac3cb541248523800d84170a645aba6e8c7b32b9e", - "blockNumber": "0x5dc6c7b", - "blockTimestamp": "0x6a0663c5", - "data": "0x00000000000000000000000000000000000000000000000000030a96c0247c82", - "logIndex": "0x58", - "removed": false, - "topics": [ - "0xddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef", - "0x000000000000000000000000783eb90b7d2cd01f981a23e6cf92314a3819535d", - "0x0000000000000000000000001906c1d672b88cd1b9ac7593301ca990f94eae07" - ], - "transactionHash": "0x1af8fb2bebcc7b224ced25e09d3952f2b3a98f4bb8924502510d53301a0df3d5", - "transactionIndex": "0xe" - }, - { - "address": "0xf8a0bf9cf54bb92f17374d9e9a321e6a111a51bd", - "blockHash": "0x94bda0986812c233d57f540ac3cb541248523800d84170a645aba6e8c7b32b9e", - "blockNumber": "0x5dc6c7b", - "blockTimestamp": "0x6a0663c5", - "data": "0x0000000000000000000000000000000000000000000000000295b637bd12ec91", - "logIndex": "0x59", - "removed": false, - "topics": [ - "0xddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef", - "0x000000000000000000000000c590175e458b83680867afd273527ff58f74c02b", - "0x000000000000000000000000783eb90b7d2cd01f981a23e6cf92314a3819535d" - ], - "transactionHash": "0x1af8fb2bebcc7b224ced25e09d3952f2b3a98f4bb8924502510d53301a0df3d5", - "transactionIndex": "0xe" - }, - { - "address": "0xf8a0bf9cf54bb92f17374d9e9a321e6a111a51bd", - "blockHash": "0x94bda0986812c233d57f540ac3cb541248523800d84170a645aba6e8c7b32b9e", - "blockNumber": "0x5dc6c7b", - "blockTimestamp": "0x6a0663c5", - "data": "0xfffffffffffffffffffffffffffffffffffffffffffffffa77f9b498e0548bc7", - "logIndex": "0x5a", - "removed": false, - "topics": [ - "0x8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925", - "0x000000000000000000000000c590175e458b83680867afd273527ff58f74c02b", - "0x000000000000000000000000000000000022d473030f116ddee9f6b43ac78ba3" - ], - "transactionHash": "0x1af8fb2bebcc7b224ced25e09d3952f2b3a98f4bb8924502510d53301a0df3d5", - "transactionIndex": "0xe" - }, - { - "address": "0x783eb90b7d2cd01f981a23e6cf92314a3819535d", - "blockHash": "0x94bda0986812c233d57f540ac3cb541248523800d84170a645aba6e8c7b32b9e", - "blockNumber": "0x5dc6c7b", - "blockTimestamp": "0x6a0663c5", - "data": "0xfffffffffffffffffffffffffffffffffffffffffffffffffffcf5693fdb837e0000000000000000000000000000000000000000000000000295b637bd12ec91000000000000000000000000000000000000000ec0d72b107527c2c327340ab1000000000000000000000000000000000000000000000000c1274e2ee7353085000000000000000000000000000000000000000000000000000000000000d248", - "logIndex": "0x5b", - "removed": false, - "topics": [ - "0xc42079f94a6350d7e6235f29174924f928cc2ac818eb64fed8004e115fbcca67", - "0x0000000000000000000000001906c1d672b88cd1b9ac7593301ca990f94eae07", - "0x0000000000000000000000001906c1d672b88cd1b9ac7593301ca990f94eae07" - ], - "transactionHash": "0x1af8fb2bebcc7b224ced25e09d3952f2b3a98f4bb8924502510d53301a0df3d5", - "transactionIndex": "0xe" - }, - { - "address": "0x55d398326f99059ff775485246999027b3197955", - "blockHash": "0x94bda0986812c233d57f540ac3cb541248523800d84170a645aba6e8c7b32b9e", - "blockNumber": "0x5dc6c7b", - "blockTimestamp": "0x6a0663c5", - "data": "0x0000000000000000000000000000000000000000000000001b27335d52bc28b3", - "logIndex": "0x5c", - "removed": false, - "topics": [ - "0xddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef", - "0x000000000000000000000000f9878a5dd55edc120fde01893ea713a4f032229c", - "0x000000000000000000000000c590175e458b83680867afd273527ff58f74c02b" - ], - "transactionHash": "0x1af8fb2bebcc7b224ced25e09d3952f2b3a98f4bb8924502510d53301a0df3d5", - "transactionIndex": "0xe" - }, - { - "address": "0x2170ed0880ac9a755fd29b2688956bd959f933f8", - "blockHash": "0x94bda0986812c233d57f540ac3cb541248523800d84170a645aba6e8c7b32b9e", - "blockNumber": "0x5dc6c7b", - "blockTimestamp": "0x6a0663c5", - "data": "0x00000000000000000000000000000000000000000000000000030a96c0247c82", - "logIndex": "0x5d", - "removed": false, - "topics": [ - "0xddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef", - "0x0000000000000000000000001906c1d672b88cd1b9ac7593301ca990f94eae07", - "0x000000000000000000000000f9878a5dd55edc120fde01893ea713a4f032229c" - ], - "transactionHash": "0x1af8fb2bebcc7b224ced25e09d3952f2b3a98f4bb8924502510d53301a0df3d5", - "transactionIndex": "0xe" - }, - { - "address": "0xf9878a5dd55edc120fde01893ea713a4f032229c", - "blockHash": "0x94bda0986812c233d57f540ac3cb541248523800d84170a645aba6e8c7b32b9e", - "blockNumber": "0x5dc6c7b", - "blockTimestamp": "0x6a0663c5", - "data": "0x00000000000000000000000000000000000000000000000000030a96c0247c82ffffffffffffffffffffffffffffffffffffffffffffffffe4d8cca2ad43d74d000000000000000000000000000000000000002fd1c3f61124e278d883bd5eb000000000000000000000000000000000000000000000060f6632205180d3a9db0000000000000000000000000000000000000000000000000000000000012e28", - "logIndex": "0x5e", - "removed": false, - "topics": [ - "0xc42079f94a6350d7e6235f29174924f928cc2ac818eb64fed8004e115fbcca67", - "0x0000000000000000000000001906c1d672b88cd1b9ac7593301ca990f94eae07", - "0x000000000000000000000000c590175e458b83680867afd273527ff58f74c02b" - ], - "transactionHash": "0x1af8fb2bebcc7b224ced25e09d3952f2b3a98f4bb8924502510d53301a0df3d5", - "transactionIndex": "0xe" - }, - { - "address": "0x55d398326f99059ff775485246999027b3197955", - "blockHash": "0x94bda0986812c233d57f540ac3cb541248523800d84170a645aba6e8c7b32b9e", - "blockNumber": "0x5dc6c7b", - "blockTimestamp": "0x6a0663c5", - "data": "0x000000000000000000000000000000000000000000000000003cd2b07f1fb9f4", - "logIndex": "0x5f", - "removed": false, - "topics": [ - "0xddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef", - "0x000000000000000000000000c590175e458b83680867afd273527ff58f74c02b", - "0x000000000000000000000000b28da7bc87a9dd1e60849aa7fcb5da24ea913c42" - ], - "transactionHash": "0x1af8fb2bebcc7b224ced25e09d3952f2b3a98f4bb8924502510d53301a0df3d5", - "transactionIndex": "0xe" - }, - { - "address": "0x55d398326f99059ff775485246999027b3197955", - "blockHash": "0x94bda0986812c233d57f540ac3cb541248523800d84170a645aba6e8c7b32b9e", - "blockNumber": "0x5dc6c7b", - "blockTimestamp": "0x6a0663c5", - "data": "0x0000000000000000000000000000000000000000000000001aea60acd39c6ebf", - "logIndex": "0x60", - "removed": false, - "topics": [ - "0xddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef", - "0x000000000000000000000000c590175e458b83680867afd273527ff58f74c02b", - "0x000000000000000000000000141d32a89a1e0a5ef360034a2f60a4b917c18838" - ], - "transactionHash": "0x1af8fb2bebcc7b224ced25e09d3952f2b3a98f4bb8924502510d53301a0df3d5", - "transactionIndex": "0xe" - }, - { - "address": "0x1a1ec25dc08e98e5e93f1104b5e5cdd298707d31", - "blockHash": "0x94bda0986812c233d57f540ac3cb541248523800d84170a645aba6e8c7b32b9e", - "blockNumber": "0x5dc6c7b", - "blockTimestamp": "0x6a0663c5", - "data": "0x", - "logIndex": "0x61", - "removed": false, - "topics": [ - "0xbeee1e6e7fe307ddcf84b0a16137a4430ad5e2480fc4f4a8e250ab56ccd7630d", - "0x9cc844e2828788f25f9d674f9dfb6a66ef6b8c38360c0ec1fa99e0b18c32eae8", - "0x000000000000000000000000141d32a89a1e0a5ef360034a2f60a4b917c18838" - ], - "transactionHash": "0x1af8fb2bebcc7b224ced25e09d3952f2b3a98f4bb8924502510d53301a0df3d5", - "transactionIndex": "0xe" - }, - { - "address": "0x1af3f329e8be154074d8769d1ffa4ee058b1dbc3", - "blockHash": "0x94bda0986812c233d57f540ac3cb541248523800d84170a645aba6e8c7b32b9e", - "blockNumber": "0x5dc6c7b", - "blockTimestamp": "0x6a0663c5", - "data": "0x0000000000000000000000000000000000000000000000003203235c920cba32", - "logIndex": "0x62", - "removed": false, - "topics": [ - "0x8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925", - "0x000000000000000000000000141d32a89a1e0a5ef360034a2f60a4b917c18838", - "0x0000000000000000000000001a1ec25dc08e98e5e93f1104b5e5cdd298707d31" - ], - "transactionHash": "0x1af8fb2bebcc7b224ced25e09d3952f2b3a98f4bb8924502510d53301a0df3d5", - "transactionIndex": "0xe" - }, - { - "address": "0x1af3f329e8be154074d8769d1ffa4ee058b1dbc3", - "blockHash": "0x94bda0986812c233d57f540ac3cb541248523800d84170a645aba6e8c7b32b9e", - "blockNumber": "0x5dc6c7b", - "blockTimestamp": "0x6a0663c5", - "data": "0x0000000000000000000000000000000000000000000000003203235c920cba32", - "logIndex": "0x63", - "removed": false, - "topics": [ - "0xddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef", - "0x000000000000000000000000141d32a89a1e0a5ef360034a2f60a4b917c18838", - "0x000000000000000000000000c590175e458b83680867afd273527ff58f74c02b" - ], - "transactionHash": "0x1af8fb2bebcc7b224ced25e09d3952f2b3a98f4bb8924502510d53301a0df3d5", - "transactionIndex": "0xe" - }, - { - "address": "0x1af3f329e8be154074d8769d1ffa4ee058b1dbc3", - "blockHash": "0x94bda0986812c233d57f540ac3cb541248523800d84170a645aba6e8c7b32b9e", - "blockNumber": "0x5dc6c7b", - "blockTimestamp": "0x6a0663c5", - "data": "0x0000000000000000000000000000000000000000000000000000000000000000", - "logIndex": "0x64", - "removed": false, - "topics": [ - "0x8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925", - "0x000000000000000000000000141d32a89a1e0a5ef360034a2f60a4b917c18838", - "0x0000000000000000000000001a1ec25dc08e98e5e93f1104b5e5cdd298707d31" - ], - "transactionHash": "0x1af8fb2bebcc7b224ced25e09d3952f2b3a98f4bb8924502510d53301a0df3d5", - "transactionIndex": "0xe" - }, - { - "address": "0x000000000022d473030f116ddee9f6b43ac78ba3", - "blockHash": "0x94bda0986812c233d57f540ac3cb541248523800d84170a645aba6e8c7b32b9e", - "blockNumber": "0x5dc6c7b", - "blockTimestamp": "0x6a0663c5", - "data": "0x00000000000000000000000000000000000000000000000031931c550a5f2d0c000000000000000000000000000000000000000000000000000000006a0663c5", - "logIndex": "0x65", - "removed": false, - "topics": [ - "0xda9fa7c1b00402c17d0161b249b1ab8bbec047c5a52207b9c112deffd817036b", - "0x000000000000000000000000c590175e458b83680867afd273527ff58f74c02b", - "0x0000000000000000000000001af3f329e8be154074d8769d1ffa4ee058b1dbc3", - "0x0000000000000000000000001906c1d672b88cd1b9ac7593301ca990f94eae07" - ], - "transactionHash": "0x1af8fb2bebcc7b224ced25e09d3952f2b3a98f4bb8924502510d53301a0df3d5", - "transactionIndex": "0xe" - }, - { - "address": "0x28e2ea090877bf75740558f6bfb36a5ffee9e9df", - "blockHash": "0x94bda0986812c233d57f540ac3cb541248523800d84170a645aba6e8c7b32b9e", - "blockNumber": "0x5dc6c7b", - "blockTimestamp": "0x6a0663c5", - "data": "0xffffffffffffffffffffffffffffffffffffffffffffffffce6ce3aaf5a0d2f40000000000000000000000000000000000000000000000003192029899a82342000000000000000000000000000000000000000100006c845eb0ec9d4a75de84000000000000000000000000000000000000000000087b92bf3c2710fa8e764d00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000064", - "logIndex": "0x66", - "removed": false, - "topics": [ - "0x40e9cecb9f5f1f1c5b9c97dec2917b7ee92e57ba5563708daca94dd84ad7112f", - "0x1eb0be4b2330177969b56f8a813d9ffa0d01ed3a95da8618482bb1cb42805656", - "0x0000000000000000000000001906c1d672b88cd1b9ac7593301ca990f94eae07" - ], - "transactionHash": "0x1af8fb2bebcc7b224ced25e09d3952f2b3a98f4bb8924502510d53301a0df3d5", - "transactionIndex": "0xe" - }, - { - "address": "0x1af3f329e8be154074d8769d1ffa4ee058b1dbc3", - "blockHash": "0x94bda0986812c233d57f540ac3cb541248523800d84170a645aba6e8c7b32b9e", - "blockNumber": "0x5dc6c7b", - "blockTimestamp": "0x6a0663c5", - "data": "0x00000000000000000000000000000000000000000000000031931c550a5f2d0c", - "logIndex": "0x67", - "removed": false, - "topics": [ - "0xddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef", - "0x000000000000000000000000c590175e458b83680867afd273527ff58f74c02b", - "0x00000000000000000000000028e2ea090877bf75740558f6bfb36a5ffee9e9df" - ], - "transactionHash": "0x1af8fb2bebcc7b224ced25e09d3952f2b3a98f4bb8924502510d53301a0df3d5", - "transactionIndex": "0xe" - }, - { - "address": "0x1af3f329e8be154074d8769d1ffa4ee058b1dbc3", - "blockHash": "0x94bda0986812c233d57f540ac3cb541248523800d84170a645aba6e8c7b32b9e", - "blockNumber": "0x5dc6c7b", - "blockTimestamp": "0x6a0663c5", - "data": "0xfffffffffffffffffffffffffffffffffffffffffffffe072f94781097e9be72", - "logIndex": "0x68", - "removed": false, - "topics": [ - "0x8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925", - "0x000000000000000000000000c590175e458b83680867afd273527ff58f74c02b", - "0x000000000000000000000000000000000022d473030f116ddee9f6b43ac78ba3" - ], - "transactionHash": "0x1af8fb2bebcc7b224ced25e09d3952f2b3a98f4bb8924502510d53301a0df3d5", - "transactionIndex": "0xe" - }, - { - "address": "0x55d398326f99059ff775485246999027b3197955", - "blockHash": "0x94bda0986812c233d57f540ac3cb541248523800d84170a645aba6e8c7b32b9e", - "blockNumber": "0x5dc6c7b", - "blockTimestamp": "0x6a0663c5", - "data": "0x0000000000000000000000000000000000000000000000003192029899a82342", - "logIndex": "0x69", - "removed": false, - "topics": [ - "0xddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef", - "0x00000000000000000000000028e2ea090877bf75740558f6bfb36a5ffee9e9df", - "0x000000000000000000000000c590175e458b83680867afd273527ff58f74c02b" - ], - "transactionHash": "0x1af8fb2bebcc7b224ced25e09d3952f2b3a98f4bb8924502510d53301a0df3d5", - "transactionIndex": "0xe" - }, - { - "address": "0x1af3f329e8be154074d8769d1ffa4ee058b1dbc3", - "blockHash": "0x94bda0986812c233d57f540ac3cb541248523800d84170a645aba6e8c7b32b9e", - "blockNumber": "0x5dc6c7b", - "blockTimestamp": "0x6a0663c5", - "data": "0x0000000000000000000000000000000000000000000000000070070787ad8d26", - "logIndex": "0x6a", - "removed": false, - "topics": [ - "0xddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef", - "0x000000000000000000000000c590175e458b83680867afd273527ff58f74c02b", - "0x000000000000000000000000b28da7bc87a9dd1e60849aa7fcb5da24ea913c42" - ], - "transactionHash": "0x1af8fb2bebcc7b224ced25e09d3952f2b3a98f4bb8924502510d53301a0df3d5", - "transactionIndex": "0xe" - }, - { - "address": "0x55d398326f99059ff775485246999027b3197955", - "blockHash": "0x94bda0986812c233d57f540ac3cb541248523800d84170a645aba6e8c7b32b9e", - "blockNumber": "0x5dc6c7b", - "blockTimestamp": "0x6a0663c5", - "data": "0x0000000000000000000000000000000000000000000000003192029899a82342", - "logIndex": "0x6b", - "removed": false, - "topics": [ - "0xddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef", - "0x000000000000000000000000c590175e458b83680867afd273527ff58f74c02b", - "0x000000000000000000000000141d32a89a1e0a5ef360034a2f60a4b917c18838" - ], - "transactionHash": "0x1af8fb2bebcc7b224ced25e09d3952f2b3a98f4bb8924502510d53301a0df3d5", - "transactionIndex": "0xe" - }, - { - "address": "0x1a1ec25dc08e98e5e93f1104b5e5cdd298707d31", - "blockHash": "0x94bda0986812c233d57f540ac3cb541248523800d84170a645aba6e8c7b32b9e", - "blockNumber": "0x5dc6c7b", - "blockTimestamp": "0x6a0663c5", - "data": "0x", - "logIndex": "0x6c", - "removed": false, - "topics": [ - "0xbeee1e6e7fe307ddcf84b0a16137a4430ad5e2480fc4f4a8e250ab56ccd7630d", - "0x9cc844e2828788f25f9d674f9dfb6a66ef6b8c38360c0ec1fa99e0b18c32eae8", - "0x000000000000000000000000141d32a89a1e0a5ef360034a2f60a4b917c18838" - ], - "transactionHash": "0x1af8fb2bebcc7b224ced25e09d3952f2b3a98f4bb8924502510d53301a0df3d5", - "transactionIndex": "0xe" - }, - { - "address": "0x55d398326f99059ff775485246999027b3197955", - "blockHash": "0x94bda0986812c233d57f540ac3cb541248523800d84170a645aba6e8c7b32b9e", - "blockNumber": "0x5dc6c7b", - "blockTimestamp": "0x6a0663c5", - "data": "0x00000000000000000000000000000000000000000000000000c673dfa365026d", - "logIndex": "0x6d", - "removed": false, - "topics": [ - "0xddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef", - "0x000000000000000000000000141d32a89a1e0a5ef360034a2f60a4b917c18838", - "0x000000000000000000000000e3478b0bb1a5084567c319096437924948be1964" - ], - "transactionHash": "0x1af8fb2bebcc7b224ced25e09d3952f2b3a98f4bb8924502510d53301a0df3d5", - "transactionIndex": "0xe" - }, - { - "address": "0xdb9b1e94b5b69df7e401ddbede43491141047db3", - "blockHash": "0x94bda0986812c233d57f540ac3cb541248523800d84170a645aba6e8c7b32b9e", - "blockNumber": "0x5dc6c7b", - "blockTimestamp": "0x6a0663c5", - "data": "0x00000000000000000000000000000000000000000000000000000000000000200000000000000000000000000000000000000000000000000000000000000a11000000000000000000000000141d32a89a1e0a5ef360034a2f60a4b917c18838ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff00000000000000000000000000000000000000000000000000000000000000c02c4fe590405569e95eb14868d74e7f3fb9567b825a2b98d15f280bfc03f3152d000000000000000000000000000000000000000000000000000000000000126000000000000000000000000000000000000000000000000000000000000000020000000000000000000000000000000000000000000000000000000000000040000000000000000000000000000000000000000000000000000000000000010000000000000000000000000004658b29f6b82ed55274221a06fc97d318e25416000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000000a00000000000000000000000000000000000000000000000000000000000000020000000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000000000000000000000000000000000001e141e455d08721dd5bcda1baa6ea5633afd5017000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000010600000000000000000000000000000000000000000000000000000000000000fe00000000000000000000000000000000000000000000000000000000000000020000000000000000000000000000000000000000000000000000000000000000500000000000000000000000000000000000000000000000000000000000000a00000000000000000000000000000000000000000000000000000000000000180000000000000000000000000000000000000000000000000000000000000066000000000000000000000000000000000000000000000000000000000000007400000000000000000000000000000000000000000000000000000000000000ec0000000000000000000000000f8a0bf9cf54bb92f17374d9e9a321e6a111a51bd000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000600000000000000000000000000000000000000000000000000000000000000044095ea7b30000000000000000000000001a1ec25dc08e98e5e93f1104b5e5cdd298707d310000000000000000000000000000000000000000000000000295b637bd12ec91000000000000000000000000000000000000000000000000000000000000000000000000000000001a1ec25dc08e98e5e93f1104b5e5cdd298707d310000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000004455f5755290000000000000000000000000000000000000000000000000000000000000080000000000000000000000000f8a0bf9cf54bb92f17374d9e9a321e6a111a51bd0000000000000000000000000000000000000000000000000295b637bd12ec9100000000000000000000000000000000000000000000000000000000000000c00000000000000000000000000000000000000000000000000000000000000018756e69737761705065726d69743246656544796e616d696300000000000000000000000000000000000000000000000000000000000000000000000000000360000000000000000000000000f8a0bf9cf54bb92f17374d9e9a321e6a111a51bd00000000000000000000000055d398326f99059ff775485246999027b31979550000000000000000000000000000000000000000000000000295b637bd12ec910000000000000000000000000000000000000000000000001a6091f10cd19fbb0000000000000000000000000000000000000000000000000000000000000120000000000000000000000000000000000000000000000000003cd2b07f1fb9f4000000000000000000000000b28da7bc87a9dd1e60849aa7fcb5da24ea913c420000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000022e3593564c000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000000a0000000000000000000000000000000000000000000000000000000006a066ac100000000000000000000000000000000000000000000000000000000000000010000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000000000200000000000000000000000000000000000000000000000000000000000000120000000000000000000000000c590175e458b83680867afd273527ff58f74c02b0000000000000000000000000000000000000000000000000295b637bd12ec910000000000000000000000000000000000000000000000001a9ee71032febe7d00000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000000000000000000000000000000010000000000000000000000000000000000000000000000000000000000000042f8a0bf9cf54bb92f17374d9e9a321e6a111a51bd0001f42170ed0880ac9a755fd29b2688956bd959f933f80001f455d398326f99059ff775485246999027b3197955000000000000000000000000000000000000000000000000000000000000756e69780000b2c5de0b0000000000000000000000000000000000008e0000000000000000000000000000000000000000000000000000000000000000000000000000001af3f329e8be154074d8769d1ffa4ee058b1dbc3000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000600000000000000000000000000000000000000000000000000000000000000044095ea7b30000000000000000000000001a1ec25dc08e98e5e93f1104b5e5cdd298707d310000000000000000000000000000000000000000000000003203235c920cba32000000000000000000000000000000000000000000000000000000000000000000000000000000001a1ec25dc08e98e5e93f1104b5e5cdd298707d310000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000006e55f57552900000000000000000000000000000000000000000000000000000000000000800000000000000000000000001af3f329e8be154074d8769d1ffa4ee058b1dbc30000000000000000000000000000000000000000000000003203235c920cba3200000000000000000000000000000000000000000000000000000000000000c00000000000000000000000000000000000000000000000000000000000000018756e69737761705065726d69743246656544796e616d6963000000000000000000000000000000000000000000000000000000000000000000000000000006000000000000000000000000001af3f329e8be154074d8769d1ffa4ee058b1dbc300000000000000000000000055d398326f99059ff775485246999027b319795500000000000000000000000000000000000000000000000031931c550a5f2d0c000000000000000000000000000000000000000000000000309435be821a88f300000000000000000000000000000000000000000000000000000000000001200000000000000000000000000000000000000000000000000070070787ad8d26000000000000000000000000b28da7bc87a9dd1e60849aa7fcb5da24ea913c42000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000004ce3593564c000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000000a0000000000000000000000000000000000000000000000000000000006a066ac1000000000000000000000000000000000000000000000000000000000000000110000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000002000000000000000000000000000000000000000000000000000000000000003c0000000000000000000000000000000000000000000000000000000000000004000000000000000000000000000000000000000000000000000000000000000800000000000000000000000000000000000000000000000000000000000000003070b0e000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000030000000000000000000000000000000000000000000000000000000000000060000000000000000000000000000000000000000000000000000000000000022000000000000000000000000000000000000000000000000000000000000002a000000000000000000000000000000000000000000000000000000000000001a000000000000000000000000000000000000000000000000000000000000000200000000000000000000000001af3f329e8be154074d8769d1ffa4ee058b1dbc3000000000000000000000000000000000000000000000000000000000000008000000000000000000000000000000000000000000000000031931c550a5f2d0c00000000000000000000000000000000000000000000000030992fb8beccff6d0000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000002000000000000000000000000055d398326f99059ff775485246999027b319795500000000000000000000000000000000000000000000000000000000000000640000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000a0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000600000000000000000000000001af3f329e8be154074d8769d1ffa4ee058b1dbc300000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000006000000000000000000000000055d398326f99059ff775485246999027b3197955000000000000000000000000c590175e458b83680867afd273527ff58f74c02b0000000000000000000000000000000000000000000000000000000000000000756e69780000b2c5de0b0000000000000000000000000000000000005c00000000000000000000000000000000000000000000000000000000000000000000000000000055d398326f99059ff775485246999027b3197955000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000600000000000000000000000000000000000000000000000000000000000000044a9059cbb000000000000000000000000e3478b0bb1a5084567c319096437924948be196400000000000000000000000000000000000000000000000000c673dfa365026d00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000414c5f51aca6a0133412bf7ec4206a80961cf6b47e176523282526e3436cabca8f4f75a93541510a0059c1400f898adec1bb8c0bbcb91ad2db77636866ce23d9901b00000000000000000000000000000000000000000000000000000000000000", - "logIndex": "0x6e", - "removed": false, - "topics": [ - "0x40dadaa36c6c2e3d7317e24757451ffb2d603d875f0ad5e92c5dd156573b1873", - "0x000000000000000000000000141d32a89a1e0a5ef360034a2f60a4b917c18838", - "0x000000000000000000000000b01caea8c6c47bbf4f4b4c5080ca642043359c2e" - ], - "transactionHash": "0x1af8fb2bebcc7b224ced25e09d3952f2b3a98f4bb8924502510d53301a0df3d5", - "transactionIndex": "0xe" - } - ], - "logsBloom": "0x40010000000000000888000000040804000000000000000840000000000084000040000000000000000010204000000000010000848020000080401000a80000000000810000010807024008020020040100002002400822000000100001100008000000000000000000010000000000900000010000800000000210000900020020000000000001808000020802000000000001000010002000000000000000220000000000000001000000000001008000000040000000000000080000000800080002000000000000000000040000200900000000004840000002000000000030001000000002004200100400020040000000000000001000000000080500", - "status": "0x1", - "to": "0xdb9b1e94b5b69df7e401ddbede43491141047db3", - "transactionHash": "0x1af8fb2bebcc7b224ced25e09d3952f2b3a98f4bb8924502510d53301a0df3d5", - "transactionIndex": "0xe", - "type": "0x2" - }, - "type": "swap", - "userEditedGasLimit": false, - "userFeeLevel": "medium", - "v": "0x1", - "verifiedOnBlockchain": true - } - ], - "networkConfigurations": {}, - "addressBook": { - "*": { - "0x2b6a82d1Fea4D5B137095cA5306BA2589B630A08": { - "address": "0x2b6a82d1Fea4D5B137095cA5306BA2589B630A08", - "chainId": "*", - "isEns": false, - "lastUpdatedAt": 1772573102953, - "memo": "", - "name": "Account 5" - }, - "0x30E8ccaD5A980BDF30447f8c2C48e70989D9d294": { - "address": "0x30E8ccaD5A980BDF30447f8c2C48e70989D9d294", - "chainId": "*", - "isEns": false, - "lastUpdatedAt": 1772573102953, - "memo": "", - "name": "Account 1" - }, - "0x3823C59973351F50e8B985e182b81300Dae9Bb45": { - "address": "0x3823C59973351F50e8B985e182b81300Dae9Bb45", - "chainId": "*", - "isEns": false, - "lastUpdatedAt": 1772573102953, - "memo": "", - "name": "Account 9" - }, - "0x452cA3DAd6dB7F3a47bbF15b758B6749Db579bBc": { - "address": "0x452cA3DAd6dB7F3a47bbF15b758B6749Db579bBc", - "chainId": "*", - "isEns": false, - "lastUpdatedAt": 1772573102953, - "memo": "", - "name": "Account 4" - }, - "0x83AD6A1294d949d514361326bcebAe4F73957327": { - "address": "0x83AD6A1294d949d514361326bcebAe4F73957327", - "chainId": "*", - "isEns": false, - "lastUpdatedAt": 1772573102953, - "memo": "", - "name": "Account 7" - }, - "0x94d1362400E999b38C845cA2c305c084031DAe84": { - "address": "0x94d1362400E999b38C845cA2c305c084031DAe84", - "chainId": "*", - "isEns": false, - "lastUpdatedAt": 1772573102953, - "memo": "", - "name": "Account 6" - }, - "0x9f66e62Fd52eeb9286385f620d2bCbe02C94443E": { - "address": "0x9f66e62Fd52eeb9286385f620d2bCbe02C94443E", - "chainId": "*", - "isEns": false, - "lastUpdatedAt": 1772573102954, - "memo": "", - "name": "Ledger 1" - }, - "0xE2F39519240814a77047490357cEd4d094B6C9C7": { - "address": "0xE2F39519240814a77047490357cEd4d094B6C9C7", - "chainId": "*", - "isEns": false, - "lastUpdatedAt": 1772573102953, - "memo": "", - "name": "Account 3" - }, - "0xF25bd11C334507Fd007d584E2D0b7b2C6543f714": { - "address": "0xF25bd11C334507Fd007d584E2D0b7b2C6543f714", - "chainId": "*", - "isEns": false, - "lastUpdatedAt": 1772573102953, - "memo": "", - "name": "Account 2" - }, - "0xbcc30CC9B8109f87fcEDE0C57E3A8c3DC979e3D0": { - "address": "0xbcc30CC9B8109f87fcEDE0C57E3A8c3DC979e3D0", - "chainId": "*", - "isEns": false, - "lastUpdatedAt": 1772573102953, - "memo": "", - "name": "Account 8" - } - } - }, - "featureFlags": {}, - "currentLocale": "en", - "preferences": { - "avatarType": "maskicon", - "dismissSmartAccountSuggestionEnabled": false, - "featureNotificationsEnabled": false, - "hideZeroBalanceTokens": false, - "privacyMode": false, - "showConfirmationAdvancedDetails": false, - "showDefaultAddress": true, - "defaultAddressScope": "eip155", - "showExtensionInFullSizeView": false, - "showFiatInTestnets": false, - "showMultiRpcModal": false, - "showNativeTokenAsMainBalance": false, - "showTestNetworks": false, - "skipDeepLinkInterstitial": false, - "smartTransactionsOptInStatus": true, - "smartTransactionsMigrationApplied": false, - "tokenNetworkFilter": { - "0x38": true - }, - "tokenSortConfig": { - "key": "tokenFiatAmount", - "order": "dsc", - "sortCallback": "stringNumeric" - }, - "useNativeCurrencyAsPrimaryCurrency": true, - "useSidePanelAsDefault": true, - "smartAccountOptIn": true - }, - "firstTimeFlowType": "import", - "completedOnboarding": true, - "knownMethodData": { - "0x095ea7b3": { - "name": "Approve", - "params": [ - { - "type": "address" - }, - { - "type": "uint256" - } - ] - }, - "0x3ce33bff": { - "name": "Bridge", - "params": [ - { - "type": "string" - }, - { - "type": "address" - }, - { - "type": "uint256" - }, - { - "type": "bytes" - } - ] - }, - "0x5f575529": { - "name": "Swap", - "params": [ - { - "type": "string" - }, - { - "type": "address" - }, - { - "type": "uint256" - }, - { - "type": "bytes" - } - ] - }, - "0x6a761202": { - "name": "Exec Transaction", - "params": [ - { - "type": "address" - }, - { - "type": "uint256" - }, - { - "type": "bytes" - }, - { - "type": "uint8" - }, - { - "type": "uint256" - }, - { - "type": "uint256" - }, - { - "type": "uint256" - }, - { - "type": "address" - }, - { - "type": "address" - }, - { - "type": "bytes" - } - ] - }, - "0xa9059cbb": { - "name": "Transfer", - "params": [ - { - "type": "address" - }, - { - "type": "uint256" - } - ] - }, - "0xe9ae5c53": { - "name": "Execute", - "params": [ - { - "type": "bytes32" - }, - { - "type": "bytes" - } - ] - } - }, - "use4ByteResolution": true, - "participateInMetaMetrics": true, - "dataCollectionForMarketing": false, - "currencyRates": { - "AVAX": { - "conversionDate": 1778867784.1, - "conversionRate": 9.579763203, - "usdConversionRate": 9.579763203 - }, - "BNB": { - "conversionDate": 1778867784.1, - "conversionRate": 674.811586071, - "usdConversionRate": 674.811586071 - }, - "ETH": { - "conversionDate": 1778867784.1, - "conversionRate": 2226.480729313, - "usdConversionRate": 2226.480729313 - }, - "HYPE": { - "conversionDate": 1775750925.036, - "conversionRate": 39.688261839, - "usdConversionRate": 39.688261839 - }, - "MON": { - "conversionDate": 1778867784.1, - "conversionRate": 0.029400263, - "usdConversionRate": 0.029400263 - }, - "POL": { - "conversionDate": 1778867784.1, - "conversionRate": 0.090777756, - "usdConversionRate": 0.090777756 - }, - "SepoliaETH": { - "conversionDate": 1771890341.608, - "conversionRate": 1855.207672678, - "usdConversionRate": 1855.207672678 - } - }, - "throttledOrigins": {}, - "isSeedlessOnboardingUserAuthenticated": false, - "accountIdByAddress": { - "0x30e8ccad5a980bdf30447f8c2c48e70989d9d294": "cf6fe6ed-1d1c-4649-9662-a232e0aadb82", - "0xf25bd11c334507fd007d584e2d0b7b2c6543f714": "7020eb89-94df-4e67-ba9f-a9ebe6c40524", - "0xe2f39519240814a77047490357ced4d094b6c9c7": "02c4222b-f0d3-448e-848f-7bf6b3ce3379", - "0x452ca3dad6db7f3a47bbf15b758b6749db579bbc": "2ddfe00a-fef1-4085-82f5-e5cdc9d8871f", - "0x2b6a82d1fea4d5b137095ca5306ba2589b630a08": "4ad41148-9589-48f1-a20d-1ddd6bcf1282", - "0x94d1362400e999b38c845ca2c305c084031dae84": "4493467c-a178-494e-b87e-92f0d7a7d1a1", - "0x83ad6a1294d949d514361326bcebae4f73957327": "77939f4e-1d05-4224-bf26-90dcc3382f5d", - "0xbcc30cc9b8109f87fcede0c57e3a8c3dc979e3d0": "08127c65-97e2-4502-b576-2b25c8cc765f", - "0x3823c59973351f50e8b985e182b81300dae9bb45": "7e04501c-6e1f-457d-8dd5-68d8f3a4c84f", - "0xc9442048fd0c34b684035a82188b69c4ee5e8f21": "db094d8c-3c7b-4a1f-97f5-6d43bf894549", - "THV8AzsmaMCuCEW3xmxeHQe3nfVjcPESnG": "fedf900d-3caf-4540-9e24-c63400ef2b18", - "TTU9eC5J56EhSRhw56NqZW48bJFCC1V4zt": "1c2440b0-d05e-4b07-881c-ebb9bce2bbb7", - "TLQw3YKJkcBdBsuR4eUxXAYRjQdpD6eEMD": "3d26ef67-6870-4750-af80-bce53fa4a0af", - "TJQTuKiGEYBoFaScz3WdpYYVyA7osnLLMa": "8b0e3ad2-d40d-47b1-a9c3-702eb67ab1ba", - "TNhtgmd4AcnN4eB6AqBejjvSJppjg33kKV": "9e12503a-12d8-4bb4-835f-a0c203ccd67a", - "TQ2WcfeudHttr9ef9PykE4Vf5upUDhzCKy": "c7cf5799-e458-4bb5-b60b-7e74cf2e7c0a", - "TPhMtQEUfTrEc3v6M75cnRfbSC41MZcaDB": "f7f2ce83-85bc-49f9-8551-c36c5432a0c1", - "TQEG7f85Eawvcw3QV4JsMfHJvXcCC8Kxq5": "73a28e8a-5ecb-4b36-b6f3-d2c12294eebf", - "TU2aNJSfrhLZnSvPRCiAHdpLBhxW2n8HA8": "78ccb0a9-3647-4bb6-94b4-54d8b4e0b397", - "TWYHHhNY6TA3sVLbkZ4suQDMuKxYqLPDja": "77a6514e-0024-4dc2-b08d-e78c664c37c5", - "TXmjzabcG63GjXgGKuaStJh6oCorb8jyja": "c5bf70b0-2c4b-4016-9107-cab94be5fbb0", - "TVnpirfVZPZg4eybigftt2bGcLVawnLVHy": "658962cf-0ecb-496e-beb8-91b663d244de", - "TFZKVArzmNQTpv3bKe1QUkCXruf8PTuJdG": "1dd2b0a9-a1ea-4308-92e8-303665fd25c5", - "TVgYW8xdwbKPw5MkiYbz5Vmto9wna2zNdr": "d8086b4c-4361-49ab-8955-efaa5240f561", - "TGhD1GruvbKNbhAUBxqiHQVpXe4tL4WzMN": "8fd0b8c5-b42d-462d-965b-2979b4057c88", - "TGzh1crEiU8jT2XNix6NWMVFCtwNyEiiX5": "e6f7d2e7-8c4c-48f7-9d04-958add8113b7", - "bc1q2pxsagdzfdn6k6umvf9gj3eme7a27p7acym9g2": "ffb79cf7-3a88-4cfe-864c-a9f656ce1840", - "bc1qkv7fs9jkan5fk4dal9zm4hltvx3022mmnzt09l": "d05ca007-7a11-470f-8433-a89767f95995", - "bc1qjx6jn6jlkrglaqtt35hr0sc7qsehkuqyq6lmys": "23ce192d-62e7-4d4f-a168-93ae18dc915d", - "bc1q4802rfdtl8x6fc2lfrerpuqn3707mz9p6xaw5v": "c6d62ae8-d02c-4a7a-8222-17ed6cdf0e52", - "bc1qx95r6rrjndjmnc353mg0da5545smp9sakzxxtl": "df59431e-d587-40a5-9c2b-3bdc6584b0e4", - "bc1qmkhzc8tx8xkkwzqfez4nuk27qemjg5mvf54csk": "03d7de03-c856-4239-93fc-b3cc5352883a", - "bc1qc5jermkwtwa4zput0tjrxqrq03906xfw0mtanx": "3d379cac-eb60-4b45-8374-370aac2b76c5", - "bc1qc7s93vamc0zduhuv5aswq9a9lp5k4za20tl05l": "744910ce-8368-414f-8e7c-1c5dba71831e", - "bc1qlrssy7r7vfstz30g78d6duzfg0clj7m380punr": "d834c0ad-655b-4707-997d-7048c1896f89", - "bc1quktjtsfqgk2y35vlucwvzczfqzkpawp066v3ww": "f5481e08-42e2-4504-9a1f-44c0bbe6e0bb", - "bc1qklk4c2g7pk2eertfh0zgw9gn6gaq7px9stmtsz": "574cb22f-c2d5-40d2-86a5-e3393d33050f", - "bc1qzzgcr8ekdfgyjad8fdfmctj0jv0k6ntkj3jpxp": "e78a4c3d-7649-4797-90ad-9d6ddbe9e6dd", - "bc1q07mlsqrpt80trs5zffk4ysl35s7e9tltazgnne": "a4c40c7c-01c0-4335-b574-72195898b31c", - "bc1q20l4mt5f6k5k3utw6vwae83r5r9lzj3dd0567k": "c2c05428-c846-4992-a5a3-5d151b97fcdb", - "bc1q79rp7e2avw8lnvrlaykt7uh4q7etkrau5nytjd": "1a14e831-0c2c-46ce-8e2b-d7d53cbefb63", - "bc1qntcy866amnqthda3j8uhtjd75gl0562sfaudwz": "80340772-85d8-41a5-b316-1d8fc8c2cea4", - "8jKM7u4xsyvDpnqL5DQMVrh8AXxZKJPKJw5QsM7KEF8J": "55fe5095-3194-42c2-81d3-5701dcad1924", - "D17b35MvfEann7FDStSUWH6EAXCyfvjBXJmx8zwCeMg5": "e4cb2ec8-15e3-494a-bde2-6ea14e6d0d6c", - "EakrRNLYP3WCatjriJzKSy4HRbmHA4ogdN11dwPPQmJP": "c86652a6-e1f3-4e4c-b411-c58efe220dcf", - "Bz3cfju4DDyduz7mRbgV7tN4aKg2mmZp4hqUc5dUJWct": "5a747531-d39f-49d5-afbd-59c018cc4757", - "HhoQAMYGpUr733KFgZJuZxwVVfqMKLgpChjzehYTRW4C": "db7205b1-e72f-4082-92c4-5490fdba12c5", - "GBnbPgkU6Nz1iH8nE1aPc4K5vLt7Y8TLDJm55WEGVdK5": "c3fc6bba-683b-44c8-b637-89b55416a8dd", - "4fhPk4yRhMPQL21Ua2MMUxC2p5VT9q2K4Uep2aGAtYGJ": "2858af66-a9cd-456a-b29c-f2f5148a5ac8", - "F7nHkrzPrE6J8r8jcvLPVE3KbuwGzosGWjiRzXyuWPx1": "44ca98ce-b819-4e06-b651-ba146dbe22c1", - "3PGGUjEUt8jUpqzfAB3bh7A3NWDZhqNcdtCGqeipT6bV": "e421a858-a232-40dc-8bbb-d3745bee215b", - "DRZLWUT14336p9NRrquuwt759BSydintJFGiRT6refdA": "891b1840-b34b-4059-895b-5f163cff8ff1", - "CyGir7UdxRCsNXkA89qH1P5p3Zhx11XxsE97WSfNMnLT": "076cbb47-1752-40b0-9314-1f07e7b88ffa", - "ATK5qHMB4bNuPh6Hj3RoCLRQrUafg9PoSdR5RhEf6nyz": "e86326ea-c687-45bf-84b9-ad4d8618d084", - "FauUtcWJ81uyS6naBZD6uSdjNuJvuD73tUnSLJMZUP2e": "575d130d-01da-44f0-a731-da9967adf412", - "uik8nmbvhYfhj1n9hrJ4vigneMrr3qbbbbWuhLLSboP": "7f6eee30-338e-4926-86fa-19436da91f35", - "fXSVz3jyNokxeNN1Z6bvh4eT4ZuXv1gtpGaSg4HxxXw": "040b84bc-2341-4988-b8db-8063bbc6c708", - "ALcEx6ANnJams9dX2jUwamfSc2P7gA66tUt83o3F2ipv": "0089fc3c-35be-4ecf-ba88-22461a3d9503", - "0x9dc641ccd7d1e7c66e47a25598ace7219548d887": "a380d0c9-927f-4aa2-a382-15ed278e70a4", - "0x6eff00186ba65c5fade98d75aa4d99ef71fa461b": "ae40b2c3-e8e1-45ed-b0cf-a5ba56e74041", - "0x04400bb51b1f886cff338eb2b4118f9ceb4e6fd5": "ea035e3a-ea43-4df0-96aa-b4e50c16396c", - "0xb3864b298f4fddbbbd2fa5cf1a2a2748932b3b81": "bf588376-0492-4a35-b653-0f1304a6c5f1", - "0xeeeab71a5989b7951389e3df313ea9876508856f": "7a1e85fa-7c26-48a7-890c-5b2ea56f650c", - "0x422b8d8914cdad779f587414d647e953bb3a87db": "88caeea6-0032-4313-b351-096e9f8e60a9", - "0x141d32a89a1e0a5ef360034a2f60a4b917c18838": "2727ea45-0879-4ce8-bbac-e7b83a7ca3de", - "0x98931e2b2272891c2e8e47d675007d94ae90ce64": "d0a2da70-b536-4e45-beb8-82e35365093d", - "0xf1f63d55e8f25c962079be324c71cdcf792c6047": "8163605d-535a-441d-a381-a5eac11ef57d", - "0xda04e0fe4e79eebcaffcbfff8ea0bdcd442d2119": "d9d2faf4-e5f4-4505-bbe2-a03d3c9e10a1", - "0xa30078e306614c2f444550da6bc759173dfb61fd": "3401973a-4989-44c5-9569-f27f25197c2d", - "0x09b8556833e53f92ee0b668db146b43ca2cab130": "83bd90d5-eaa6-4f8d-b89b-b574273bd04e" - }, - "activeQrCodeScanRequest": null, - "appActiveTab": { - "id": 809479887, - "title": "feat: submit batch sell quotes by micaelae · Pull Request #8775 · MetaMask/core", - "origin": "https://github.com", - "protocol": "https:", - "url": "https://github.com/MetaMask/core/pull/8775", - "host": "github.com", - "href": "https://github.com/MetaMask/core/pull/8775", - "favIconUrl": "https://github.githubassets.com/favicons/favicon-failure.svg" - }, - "browserEnvironment": { - "os": "mac", - "browser": "chrome" - }, - "connectedStatusPopoverHasBeenShown": true, - "defaultHomeActiveTabName": "activity", - "fullScreenGasPollTokens": [], - "hadAdvancedGasFeesSetPriorToMigration92_3": false, - "canTrackWalletFundsObtained": false, - "pendingExtensionVersion": null, - "lastUpdatedAt": 1778267056698, - "lastUpdatedFromVersion": "13.31.0.0", - "lastViewedUserSurvey": null, - "newPrivacyPolicyToastClickedOrClosed": null, - "newPrivacyPolicyToastShownDate": 1771890310130, - "pna25Acknowledged": true, - "notificationGasPollTokens": [], - "onboardingDate": 1771890310173, - "outdatedBrowserWarningLastShown": null, - "popupGasPollTokens": [], - "sidePanelGasPollTokens": [ - "fdac2de5-72aa-425f-ba7a-e4b489f4ce8d", - "51564284-8e6d-4961-a7a9-bbc285581cf7", - "154e135d-2331-414a-b405-255d03b6e113", - "5671c86c-d89b-4ba7-9424-d269194d1ebd", - "b449631e-a2ac-4d2b-a763-0fa254b3e051", - "3381a098-7c1b-48ca-aea0-4173f149d904", - "a60eb15d-e0d1-4745-9b0d-e24725c9402e", - "3664071b-8329-47fb-bfd4-981abfd3a277", - "95150619-954b-4b9a-9071-0d54855aa9c1", - "2d2cd621-d497-4725-b7ab-782d508c2171", - "77bdfbf2-5980-47ae-a64d-2abefa21a6cc", - "38b973f2-5943-4e15-94d7-d6efe4dcdfa0", - "42b7e094-5810-4f93-b627-f9dc36ae3969" - ], - "productTour": "accountIcon", - "recoveryPhraseReminderHasBeenShown": false, - "recoveryPhraseReminderLastShown": 1771890309165, - "showDownloadMobileAppSlide": true, - "slides": [], - "shieldSubscriptionError": null, - "shieldEndingToastLastClickedOrClosed": null, - "shieldPausedToastLastClickedOrClosed": null, - "timeoutMinutes": 0, - "trezorModel": null, - "updateModalLastDismissedAt": null, - "hasShownMultichainAccountsIntroModal": false, - "musdConversionEducationSeen": false, - "musdConversionDismissedCtaKeys": [], - "showShieldEntryModalOnce": null, - "pendingRedirectRoute": null, - "lastVisitedRoute": null, - "pendingShieldCohort": null, - "pendingShieldCohortTxType": null, - "isWalletResetInProgress": false, - "dappSwapComparisonData": {}, - "storageWriteErrorType": null, - "passkeyAutoUnlockSuppressed": false, - "addressSecurityAlertResponses": {}, - "currentExtensionPopupId": 0, - "nftsDropdownState": {}, - "signatureSecurityAlertResponses": {}, - "networkConnectionBanner": { - "status": "available" - }, - "lastInteractedConfirmationInfo": { - "chainId": "0x1", - "id": "693184b0-39db-11f1-bbe4-3727d90ba13b", - "origin": "metamask", - "timestamp": 1776374996001 - }, - "termsOfUseLastAgreed": 1771890322764, - "currentAppVersion": "13.32.0", - "previousAppVersion": "13.31.0", - "previousMigrationVersion": 209, - "currentMigrationVersion": 211, - "firstTimeInfo": { - "date": 1771890309175, - "version": "13.21.0" - }, - "accountsAssets": { - "0089fc3c-35be-4ecf-ba88-22461a3d9503": [ - "solana:5eykt4UsFv8P8NJdTREpY1vzqKqZKvdp/slip44:501" - ], - "03d7de03-c856-4239-93fc-b3cc5352883a": [ - "bip122:000000000019d6689c085ae165831e93/slip44:0" - ], - "040b84bc-2341-4988-b8db-8063bbc6c708": [ - "solana:5eykt4UsFv8P8NJdTREpY1vzqKqZKvdp/slip44:501" - ], - "076cbb47-1752-40b0-9314-1f07e7b88ffa": [ - "solana:5eykt4UsFv8P8NJdTREpY1vzqKqZKvdp/slip44:501", - "solana:5eykt4UsFv8P8NJdTREpY1vzqKqZKvdp/token:CKfatsPMUf8SkiURsDXs7eK6GWb4Jsd6UDbs7twMCWxo", - "solana:5eykt4UsFv8P8NJdTREpY1vzqKqZKvdp/token:HeLp6NuQkmYB4pYWo2zYs22mESHXPQYzXbB8n4V98jwC" - ], - "1a14e831-0c2c-46ce-8e2b-d7d53cbefb63": [ - "bip122:000000000019d6689c085ae165831e93/slip44:0" - ], - "1c2440b0-d05e-4b07-881c-ebb9bce2bbb7": [ - "tron:728126428/slip44:195", - "tron:3448148188/slip44:195", - "tron:2494104990/slip44:195", - "tron:728126428/slip44:195-staked-for-bandwidth", - "tron:3448148188/slip44:195-staked-for-bandwidth", - "tron:2494104990/slip44:195-staked-for-bandwidth", - "tron:728126428/slip44:195-staked-for-energy", - "tron:3448148188/slip44:195-staked-for-energy", - "tron:2494104990/slip44:195-staked-for-energy", - "tron:728126428/slip44:bandwidth", - "tron:3448148188/slip44:bandwidth", - "tron:2494104990/slip44:bandwidth", - "tron:728126428/slip44:maximum-bandwidth", - "tron:3448148188/slip44:maximum-bandwidth", - "tron:2494104990/slip44:maximum-bandwidth", - "tron:728126428/slip44:energy", - "tron:3448148188/slip44:energy", - "tron:2494104990/slip44:energy", - "tron:728126428/slip44:maximum-energy", - "tron:3448148188/slip44:maximum-energy", - "tron:2494104990/slip44:maximum-energy", - "tron:728126428/slip44:195-ready-for-withdrawal", - "tron:728126428/slip44:195-in-lock-period", - "tron:728126428/slip44:195-staking-rewards" - ], - "1dd2b0a9-a1ea-4308-92e8-303665fd25c5": [ - "tron:728126428/slip44:195", - "tron:3448148188/slip44:195", - "tron:2494104990/slip44:195", - "tron:728126428/slip44:195-staked-for-bandwidth", - "tron:3448148188/slip44:195-staked-for-bandwidth", - "tron:2494104990/slip44:195-staked-for-bandwidth", - "tron:728126428/slip44:195-staked-for-energy", - "tron:3448148188/slip44:195-staked-for-energy", - "tron:2494104990/slip44:195-staked-for-energy", - "tron:728126428/slip44:bandwidth", - "tron:3448148188/slip44:bandwidth", - "tron:2494104990/slip44:bandwidth", - "tron:728126428/slip44:maximum-bandwidth", - "tron:3448148188/slip44:maximum-bandwidth", - "tron:2494104990/slip44:maximum-bandwidth", - "tron:728126428/slip44:energy", - "tron:3448148188/slip44:energy", - "tron:2494104990/slip44:energy", - "tron:728126428/slip44:maximum-energy", - "tron:3448148188/slip44:maximum-energy", - "tron:2494104990/slip44:maximum-energy" - ], - "23ce192d-62e7-4d4f-a168-93ae18dc915d": [ - "bip122:000000000019d6689c085ae165831e93/slip44:0" - ], - "2858af66-a9cd-456a-b29c-f2f5148a5ac8": [ - "solana:5eykt4UsFv8P8NJdTREpY1vzqKqZKvdp/slip44:501" - ], - "3d26ef67-6870-4750-af80-bce53fa4a0af": [ - "tron:728126428/slip44:195", - "tron:3448148188/slip44:195", - "tron:2494104990/slip44:195", - "tron:728126428/slip44:195-staked-for-bandwidth", - "tron:3448148188/slip44:195-staked-for-bandwidth", - "tron:2494104990/slip44:195-staked-for-bandwidth", - "tron:728126428/slip44:195-staked-for-energy", - "tron:3448148188/slip44:195-staked-for-energy", - "tron:2494104990/slip44:195-staked-for-energy", - "tron:728126428/slip44:bandwidth", - "tron:3448148188/slip44:bandwidth", - "tron:2494104990/slip44:bandwidth", - "tron:728126428/slip44:maximum-bandwidth", - "tron:3448148188/slip44:maximum-bandwidth", - "tron:2494104990/slip44:maximum-bandwidth", - "tron:728126428/slip44:energy", - "tron:3448148188/slip44:energy", - "tron:2494104990/slip44:energy", - "tron:728126428/slip44:maximum-energy", - "tron:3448148188/slip44:maximum-energy", - "tron:2494104990/slip44:maximum-energy", - "tron:728126428/trc20:TR7NHqjeKQxGTCi8q8ZY4pL8otSzgjLj6t", - "tron:728126428/slip44:195-ready-for-withdrawal", - "tron:728126428/slip44:195-in-lock-period", - "tron:728126428/slip44:195-staking-rewards" - ], - "3d379cac-eb60-4b45-8374-370aac2b76c5": [ - "bip122:000000000019d6689c085ae165831e93/slip44:0" - ], - "44ca98ce-b819-4e06-b651-ba146dbe22c1": [ - "solana:5eykt4UsFv8P8NJdTREpY1vzqKqZKvdp/slip44:501" - ], - "55fe5095-3194-42c2-81d3-5701dcad1924": [ - "solana:5eykt4UsFv8P8NJdTREpY1vzqKqZKvdp/slip44:501", - "solana:5eykt4UsFv8P8NJdTREpY1vzqKqZKvdp/token:CKfatsPMUf8SkiURsDXs7eK6GWb4Jsd6UDbs7twMCWxo" - ], - "574cb22f-c2d5-40d2-86a5-e3393d33050f": [ - "bip122:000000000019d6689c085ae165831e93/slip44:0" - ], - "575d130d-01da-44f0-a731-da9967adf412": [ - "solana:5eykt4UsFv8P8NJdTREpY1vzqKqZKvdp/slip44:501" - ], - "5a747531-d39f-49d5-afbd-59c018cc4757": [ - "solana:5eykt4UsFv8P8NJdTREpY1vzqKqZKvdp/slip44:501" - ], - "658962cf-0ecb-496e-beb8-91b663d244de": [ - "tron:728126428/slip44:195", - "tron:3448148188/slip44:195", - "tron:2494104990/slip44:195", - "tron:728126428/slip44:195-staked-for-bandwidth", - "tron:3448148188/slip44:195-staked-for-bandwidth", - "tron:2494104990/slip44:195-staked-for-bandwidth", - "tron:728126428/slip44:195-staked-for-energy", - "tron:3448148188/slip44:195-staked-for-energy", - "tron:2494104990/slip44:195-staked-for-energy", - "tron:728126428/slip44:bandwidth", - "tron:3448148188/slip44:bandwidth", - "tron:2494104990/slip44:bandwidth", - "tron:728126428/slip44:maximum-bandwidth", - "tron:3448148188/slip44:maximum-bandwidth", - "tron:2494104990/slip44:maximum-bandwidth", - "tron:728126428/slip44:energy", - "tron:3448148188/slip44:energy", - "tron:2494104990/slip44:energy", - "tron:728126428/slip44:maximum-energy", - "tron:3448148188/slip44:maximum-energy", - "tron:2494104990/slip44:maximum-energy" - ], - "73a28e8a-5ecb-4b36-b6f3-d2c12294eebf": [ - "tron:728126428/slip44:195", - "tron:3448148188/slip44:195", - "tron:2494104990/slip44:195", - "tron:728126428/slip44:195-staked-for-bandwidth", - "tron:3448148188/slip44:195-staked-for-bandwidth", - "tron:2494104990/slip44:195-staked-for-bandwidth", - "tron:728126428/slip44:195-staked-for-energy", - "tron:3448148188/slip44:195-staked-for-energy", - "tron:2494104990/slip44:195-staked-for-energy", - "tron:728126428/slip44:bandwidth", - "tron:3448148188/slip44:bandwidth", - "tron:2494104990/slip44:bandwidth", - "tron:728126428/slip44:maximum-bandwidth", - "tron:3448148188/slip44:maximum-bandwidth", - "tron:2494104990/slip44:maximum-bandwidth", - "tron:728126428/slip44:energy", - "tron:3448148188/slip44:energy", - "tron:2494104990/slip44:energy", - "tron:728126428/slip44:maximum-energy", - "tron:3448148188/slip44:maximum-energy", - "tron:2494104990/slip44:maximum-energy" - ], - "744910ce-8368-414f-8e7c-1c5dba71831e": [ - "bip122:000000000019d6689c085ae165831e93/slip44:0" - ], - "77a6514e-0024-4dc2-b08d-e78c664c37c5": [ - "tron:728126428/slip44:195", - "tron:3448148188/slip44:195", - "tron:2494104990/slip44:195", - "tron:728126428/slip44:195-staked-for-bandwidth", - "tron:3448148188/slip44:195-staked-for-bandwidth", - "tron:2494104990/slip44:195-staked-for-bandwidth", - "tron:728126428/slip44:195-staked-for-energy", - "tron:3448148188/slip44:195-staked-for-energy", - "tron:2494104990/slip44:195-staked-for-energy", - "tron:728126428/slip44:bandwidth", - "tron:3448148188/slip44:bandwidth", - "tron:2494104990/slip44:bandwidth", - "tron:728126428/slip44:maximum-bandwidth", - "tron:3448148188/slip44:maximum-bandwidth", - "tron:2494104990/slip44:maximum-bandwidth", - "tron:728126428/slip44:energy", - "tron:3448148188/slip44:energy", - "tron:2494104990/slip44:energy", - "tron:728126428/slip44:maximum-energy", - "tron:3448148188/slip44:maximum-energy", - "tron:2494104990/slip44:maximum-energy" - ], - "78ccb0a9-3647-4bb6-94b4-54d8b4e0b397": [ - "tron:728126428/slip44:195", - "tron:3448148188/slip44:195", - "tron:2494104990/slip44:195", - "tron:728126428/slip44:195-staked-for-bandwidth", - "tron:3448148188/slip44:195-staked-for-bandwidth", - "tron:2494104990/slip44:195-staked-for-bandwidth", - "tron:728126428/slip44:195-staked-for-energy", - "tron:3448148188/slip44:195-staked-for-energy", - "tron:2494104990/slip44:195-staked-for-energy", - "tron:728126428/slip44:bandwidth", - "tron:3448148188/slip44:bandwidth", - "tron:2494104990/slip44:bandwidth", - "tron:728126428/slip44:maximum-bandwidth", - "tron:3448148188/slip44:maximum-bandwidth", - "tron:2494104990/slip44:maximum-bandwidth", - "tron:728126428/slip44:energy", - "tron:3448148188/slip44:energy", - "tron:2494104990/slip44:energy", - "tron:728126428/slip44:maximum-energy", - "tron:3448148188/slip44:maximum-energy", - "tron:2494104990/slip44:maximum-energy" - ], - "7f6eee30-338e-4926-86fa-19436da91f35": [ - "solana:5eykt4UsFv8P8NJdTREpY1vzqKqZKvdp/slip44:501" - ], - "80340772-85d8-41a5-b316-1d8fc8c2cea4": [ - "bip122:000000000019d6689c085ae165831e93/slip44:0" - ], - "891b1840-b34b-4059-895b-5f163cff8ff1": [ - "solana:5eykt4UsFv8P8NJdTREpY1vzqKqZKvdp/slip44:501" - ], - "8b0e3ad2-d40d-47b1-a9c3-702eb67ab1ba": [ - "tron:728126428/slip44:195", - "tron:3448148188/slip44:195", - "tron:2494104990/slip44:195", - "tron:728126428/slip44:195-staked-for-bandwidth", - "tron:3448148188/slip44:195-staked-for-bandwidth", - "tron:2494104990/slip44:195-staked-for-bandwidth", - "tron:728126428/slip44:195-staked-for-energy", - "tron:3448148188/slip44:195-staked-for-energy", - "tron:2494104990/slip44:195-staked-for-energy", - "tron:728126428/slip44:bandwidth", - "tron:3448148188/slip44:bandwidth", - "tron:2494104990/slip44:bandwidth", - "tron:728126428/slip44:maximum-bandwidth", - "tron:3448148188/slip44:maximum-bandwidth", - "tron:2494104990/slip44:maximum-bandwidth", - "tron:728126428/slip44:energy", - "tron:3448148188/slip44:energy", - "tron:2494104990/slip44:energy", - "tron:728126428/slip44:maximum-energy", - "tron:3448148188/slip44:maximum-energy", - "tron:2494104990/slip44:maximum-energy", - "tron:728126428/slip44:195-ready-for-withdrawal", - "tron:728126428/slip44:195-in-lock-period", - "tron:728126428/slip44:195-staking-rewards" - ], - "8fd0b8c5-b42d-462d-965b-2979b4057c88": [ - "tron:728126428/slip44:195", - "tron:3448148188/slip44:195", - "tron:2494104990/slip44:195", - "tron:728126428/slip44:195-staked-for-bandwidth", - "tron:3448148188/slip44:195-staked-for-bandwidth", - "tron:2494104990/slip44:195-staked-for-bandwidth", - "tron:728126428/slip44:195-staked-for-energy", - "tron:3448148188/slip44:195-staked-for-energy", - "tron:2494104990/slip44:195-staked-for-energy", - "tron:728126428/slip44:bandwidth", - "tron:3448148188/slip44:bandwidth", - "tron:2494104990/slip44:bandwidth", - "tron:728126428/slip44:maximum-bandwidth", - "tron:3448148188/slip44:maximum-bandwidth", - "tron:2494104990/slip44:maximum-bandwidth", - "tron:728126428/slip44:energy", - "tron:3448148188/slip44:energy", - "tron:2494104990/slip44:energy", - "tron:728126428/slip44:maximum-energy", - "tron:3448148188/slip44:maximum-energy", - "tron:2494104990/slip44:maximum-energy" - ], - "9e12503a-12d8-4bb4-835f-a0c203ccd67a": [ - "tron:728126428/slip44:195", - "tron:3448148188/slip44:195", - "tron:2494104990/slip44:195", - "tron:728126428/slip44:195-staked-for-bandwidth", - "tron:3448148188/slip44:195-staked-for-bandwidth", - "tron:2494104990/slip44:195-staked-for-bandwidth", - "tron:728126428/slip44:195-staked-for-energy", - "tron:3448148188/slip44:195-staked-for-energy", - "tron:2494104990/slip44:195-staked-for-energy", - "tron:728126428/slip44:bandwidth", - "tron:3448148188/slip44:bandwidth", - "tron:2494104990/slip44:bandwidth", - "tron:728126428/slip44:maximum-bandwidth", - "tron:3448148188/slip44:maximum-bandwidth", - "tron:2494104990/slip44:maximum-bandwidth", - "tron:728126428/slip44:energy", - "tron:3448148188/slip44:energy", - "tron:2494104990/slip44:energy", - "tron:728126428/slip44:maximum-energy", - "tron:3448148188/slip44:maximum-energy", - "tron:2494104990/slip44:maximum-energy" - ], - "a4c40c7c-01c0-4335-b574-72195898b31c": [ - "bip122:000000000019d6689c085ae165831e93/slip44:0" - ], - "c2c05428-c846-4992-a5a3-5d151b97fcdb": [ - "bip122:000000000019d6689c085ae165831e93/slip44:0" - ], - "c3fc6bba-683b-44c8-b637-89b55416a8dd": [ - "solana:5eykt4UsFv8P8NJdTREpY1vzqKqZKvdp/slip44:501" - ], - "c5bf70b0-2c4b-4016-9107-cab94be5fbb0": [ - "tron:728126428/slip44:195", - "tron:3448148188/slip44:195", - "tron:2494104990/slip44:195", - "tron:728126428/slip44:195-staked-for-bandwidth", - "tron:3448148188/slip44:195-staked-for-bandwidth", - "tron:2494104990/slip44:195-staked-for-bandwidth", - "tron:728126428/slip44:195-staked-for-energy", - "tron:3448148188/slip44:195-staked-for-energy", - "tron:2494104990/slip44:195-staked-for-energy", - "tron:728126428/slip44:bandwidth", - "tron:3448148188/slip44:bandwidth", - "tron:2494104990/slip44:bandwidth", - "tron:728126428/slip44:maximum-bandwidth", - "tron:3448148188/slip44:maximum-bandwidth", - "tron:2494104990/slip44:maximum-bandwidth", - "tron:728126428/slip44:energy", - "tron:3448148188/slip44:energy", - "tron:2494104990/slip44:energy", - "tron:728126428/slip44:maximum-energy", - "tron:3448148188/slip44:maximum-energy", - "tron:2494104990/slip44:maximum-energy", - "tron:728126428/slip44:195-ready-for-withdrawal", - "tron:728126428/slip44:195-in-lock-period", - "tron:728126428/slip44:195-staking-rewards" - ], - "c6d62ae8-d02c-4a7a-8222-17ed6cdf0e52": [ - "bip122:000000000019d6689c085ae165831e93/slip44:0" - ], - "c7cf5799-e458-4bb5-b60b-7e74cf2e7c0a": [ - "tron:728126428/slip44:195", - "tron:3448148188/slip44:195", - "tron:2494104990/slip44:195", - "tron:728126428/slip44:195-staked-for-bandwidth", - "tron:3448148188/slip44:195-staked-for-bandwidth", - "tron:2494104990/slip44:195-staked-for-bandwidth", - "tron:728126428/slip44:195-staked-for-energy", - "tron:3448148188/slip44:195-staked-for-energy", - "tron:2494104990/slip44:195-staked-for-energy", - "tron:728126428/slip44:bandwidth", - "tron:3448148188/slip44:bandwidth", - "tron:2494104990/slip44:bandwidth", - "tron:728126428/slip44:maximum-bandwidth", - "tron:3448148188/slip44:maximum-bandwidth", - "tron:2494104990/slip44:maximum-bandwidth", - "tron:728126428/slip44:energy", - "tron:3448148188/slip44:energy", - "tron:2494104990/slip44:energy", - "tron:728126428/slip44:maximum-energy", - "tron:3448148188/slip44:maximum-energy", - "tron:2494104990/slip44:maximum-energy" - ], - "c86652a6-e1f3-4e4c-b411-c58efe220dcf": [ - "solana:5eykt4UsFv8P8NJdTREpY1vzqKqZKvdp/slip44:501" - ], - "d05ca007-7a11-470f-8433-a89767f95995": [ - "bip122:000000000019d6689c085ae165831e93/slip44:0" - ], - "d8086b4c-4361-49ab-8955-efaa5240f561": [ - "tron:728126428/slip44:195", - "tron:3448148188/slip44:195", - "tron:2494104990/slip44:195", - "tron:728126428/slip44:195-staked-for-bandwidth", - "tron:3448148188/slip44:195-staked-for-bandwidth", - "tron:2494104990/slip44:195-staked-for-bandwidth", - "tron:728126428/slip44:195-staked-for-energy", - "tron:3448148188/slip44:195-staked-for-energy", - "tron:2494104990/slip44:195-staked-for-energy", - "tron:728126428/slip44:bandwidth", - "tron:3448148188/slip44:bandwidth", - "tron:2494104990/slip44:bandwidth", - "tron:728126428/slip44:maximum-bandwidth", - "tron:3448148188/slip44:maximum-bandwidth", - "tron:2494104990/slip44:maximum-bandwidth", - "tron:728126428/slip44:energy", - "tron:3448148188/slip44:energy", - "tron:2494104990/slip44:energy", - "tron:728126428/slip44:maximum-energy", - "tron:3448148188/slip44:maximum-energy", - "tron:2494104990/slip44:maximum-energy" - ], - "d834c0ad-655b-4707-997d-7048c1896f89": [ - "bip122:000000000019d6689c085ae165831e93/slip44:0" - ], - "db7205b1-e72f-4082-92c4-5490fdba12c5": [ - "solana:5eykt4UsFv8P8NJdTREpY1vzqKqZKvdp/slip44:501" - ], - "df59431e-d587-40a5-9c2b-3bdc6584b0e4": [ - "bip122:000000000019d6689c085ae165831e93/slip44:0" - ], - "e421a858-a232-40dc-8bbb-d3745bee215b": [ - "solana:5eykt4UsFv8P8NJdTREpY1vzqKqZKvdp/slip44:501" - ], - "e4cb2ec8-15e3-494a-bde2-6ea14e6d0d6c": [ - "solana:5eykt4UsFv8P8NJdTREpY1vzqKqZKvdp/slip44:501" - ], - "e6f7d2e7-8c4c-48f7-9d04-958add8113b7": [ - "tron:728126428/slip44:195", - "tron:3448148188/slip44:195", - "tron:2494104990/slip44:195", - "tron:728126428/slip44:195-staked-for-bandwidth", - "tron:3448148188/slip44:195-staked-for-bandwidth", - "tron:2494104990/slip44:195-staked-for-bandwidth", - "tron:728126428/slip44:195-staked-for-energy", - "tron:3448148188/slip44:195-staked-for-energy", - "tron:2494104990/slip44:195-staked-for-energy", - "tron:728126428/slip44:bandwidth", - "tron:3448148188/slip44:bandwidth", - "tron:2494104990/slip44:bandwidth", - "tron:728126428/slip44:maximum-bandwidth", - "tron:3448148188/slip44:maximum-bandwidth", - "tron:2494104990/slip44:maximum-bandwidth", - "tron:728126428/slip44:energy", - "tron:3448148188/slip44:energy", - "tron:2494104990/slip44:energy", - "tron:728126428/slip44:maximum-energy", - "tron:3448148188/slip44:maximum-energy", - "tron:2494104990/slip44:maximum-energy" - ], - "e78a4c3d-7649-4797-90ad-9d6ddbe9e6dd": [ - "bip122:000000000019d6689c085ae165831e93/slip44:0" - ], - "e86326ea-c687-45bf-84b9-ad4d8618d084": [ - "solana:5eykt4UsFv8P8NJdTREpY1vzqKqZKvdp/slip44:501" - ], - "f5481e08-42e2-4504-9a1f-44c0bbe6e0bb": [ - "bip122:000000000019d6689c085ae165831e93/slip44:0" - ], - "f7f2ce83-85bc-49f9-8551-c36c5432a0c1": [ - "tron:728126428/slip44:195", - "tron:3448148188/slip44:195", - "tron:2494104990/slip44:195", - "tron:728126428/slip44:195-staked-for-bandwidth", - "tron:3448148188/slip44:195-staked-for-bandwidth", - "tron:2494104990/slip44:195-staked-for-bandwidth", - "tron:728126428/slip44:195-staked-for-energy", - "tron:3448148188/slip44:195-staked-for-energy", - "tron:2494104990/slip44:195-staked-for-energy", - "tron:728126428/slip44:bandwidth", - "tron:3448148188/slip44:bandwidth", - "tron:2494104990/slip44:bandwidth", - "tron:728126428/slip44:maximum-bandwidth", - "tron:3448148188/slip44:maximum-bandwidth", - "tron:2494104990/slip44:maximum-bandwidth", - "tron:728126428/slip44:energy", - "tron:3448148188/slip44:energy", - "tron:2494104990/slip44:energy", - "tron:728126428/slip44:maximum-energy", - "tron:3448148188/slip44:maximum-energy", - "tron:2494104990/slip44:maximum-energy" - ], - "fedf900d-3caf-4540-9e24-c63400ef2b18": [ - "tron:728126428/slip44:195", - "tron:3448148188/slip44:195", - "tron:2494104990/slip44:195", - "tron:728126428/slip44:195-staked-for-bandwidth", - "tron:3448148188/slip44:195-staked-for-bandwidth", - "tron:2494104990/slip44:195-staked-for-bandwidth", - "tron:728126428/slip44:195-staked-for-energy", - "tron:3448148188/slip44:195-staked-for-energy", - "tron:2494104990/slip44:195-staked-for-energy", - "tron:728126428/slip44:bandwidth", - "tron:3448148188/slip44:bandwidth", - "tron:2494104990/slip44:bandwidth", - "tron:728126428/slip44:maximum-bandwidth", - "tron:3448148188/slip44:maximum-bandwidth", - "tron:2494104990/slip44:maximum-bandwidth", - "tron:728126428/slip44:energy", - "tron:3448148188/slip44:energy", - "tron:2494104990/slip44:energy", - "tron:728126428/slip44:maximum-energy", - "tron:3448148188/slip44:maximum-energy", - "tron:2494104990/slip44:maximum-energy", - "tron:728126428/slip44:195-ready-for-withdrawal", - "tron:728126428/slip44:195-in-lock-period", - "tron:728126428/slip44:195-staking-rewards" - ], - "ffb79cf7-3a88-4cfe-864c-a9f656ce1840": [ - "bip122:000000000019d6689c085ae165831e93/slip44:0" - ] - }, - "assetsMetadata": { - "bip122:000000000019d6689c085ae165831e93/slip44:0": { - "fungible": true, - "iconUrl": "data:image/svg+xml;base64,PHN2ZyB4bWxuczpyZGY9Imh0dHA6Ly93d3cudzMub3JnLzE5OTkvMDIvMjItcmRmLXN5bnRheC1ucyMiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgdmVyc2lvbj0iMS4xIiB4bWxuczpjYz0iaHR0cDovL2NyZWF0aXZlY29tbW9ucy5vcmcvbnMjIiB4bWxuczpkYz0iaHR0cDovL3B1cmwub3JnL2RjL2VsZW1lbnRzLzEuMS8iIHZpZXdCb3g9IjAgMCA2NSA2NSIgd2lkdGg9IjIwIiBoZWlnaHQ9IjIwIiBjbGFzcz0ibmctc3Rhci1pbnNlcnRlZCI+PGcgdHJhbnNmb3JtPSJ0cmFuc2xhdGUoMC4wMDYzMDg3NiwtMC4wMDMwMTk4NCkiPjxwYXRoIGQ9Im02My4wMzMsMzkuNzQ0Yy00LjI3NCwxNy4xNDMtMjEuNjM3LDI3LjU3Ni0zOC43ODIsMjMuMzAxLTE3LjEzOC00LjI3NC0yNy41NzEtMjEuNjM4LTIzLjI5NS0zOC43OCw0LjI3Mi0xNy4xNDUsMjEuNjM1LTI3LjU3OSwzOC43NzUtMjMuMzA1LDE3LjE0NCw0LjI3NCwyNy41NzYsMjEuNjQsMjMuMzAyLDM4Ljc4NHoiIGZpbGw9IiNmNzkzMWEiPjwvcGF0aD48cGF0aCBmaWxsPSIjRkZGIiBkPSJtNDYuMTAzLDI3LjQ0NGMwLjYzNy00LjI1OC0yLjYwNS02LjU0Ny03LjAzOC04LjA3NGwxLjQzOC01Ljc2OC0zLjUxMS0wLjg3NS0xLjQsNS42MTZjLTAuOTIzLTAuMjMtMS44NzEtMC40NDctMi44MTMtMC42NjJsMS40MS01LjY1My0zLjUwOS0wLjg3NS0xLjQzOSw1Ljc2NmMtMC43NjQtMC4xNzQtMS41MTQtMC4zNDYtMi4yNDItMC41MjdsMC4wMDQtMC4wMTgtNC44NDItMS4yMDktMC45MzQsMy43NXMyLjYwNSwwLjU5NywyLjU1LDAuNjM0YzEuNDIyLDAuMzU1LDEuNjc5LDEuMjk2LDEuNjM2LDIuMDQybC0xLjYzOCw2LjU3MWMwLjA5OCwwLjAyNSwwLjIyNSwwLjA2MSwwLjM2NSwwLjExNy0wLjExNy0wLjAyOS0wLjI0Mi0wLjA2MS0wLjM3MS0wLjA5MmwtMi4yOTYsOS4yMDVjLTAuMTc0LDAuNDMyLTAuNjE1LDEuMDgtMS42MDksMC44MzQsMC4wMzUsMC4wNTEtMi41NTItMC42MzctMi41NTItMC42MzdsLTEuNzQzLDQuMDE5LDQuNTY5LDEuMTM5YzAuODUsMC4yMTMsMS42ODMsMC40MzYsMi41MDMsMC42NDZsLTEuNDUzLDUuODM0LDMuNTA3LDAuODc1LDEuNDM5LTUuNzcyYzAuOTU4LDAuMjYsMS44ODgsMC41LDIuNzk4LDAuNzI2bC0xLjQzNCw1Ljc0NSwzLjUxMSwwLjg3NSwxLjQ1My01LjgyM2M1Ljk4NywxLjEzMywxMC40ODksMC42NzYsMTIuMzg0LTQuNzM5LDEuNTI3LTQuMzYtMC4wNzYtNi44NzUtMy4yMjYtOC41MTUsMi4yOTQtMC41MjksNC4wMjItMi4wMzgsNC40ODMtNS4xNTV6bS04LjAyMiwxMS4yNDljLTEuMDg1LDQuMzYtOC40MjYsMi4wMDMtMTAuODA2LDEuNDEybDEuOTI4LTcuNzI5YzIuMzgsMC41OTQsMTAuMDEyLDEuNzcsOC44NzgsNi4zMTd6bTEuMDg2LTExLjMxMmMtMC45OSwzLjk2Ni03LjEsMS45NTEtOS4wODIsMS40NTdsMS43NDgtNy4wMWMxLjk4MiwwLjQ5NCw4LjM2NSwxLjQxNiw3LjMzNCw1LjU1M3oiPjwvcGF0aD48L2c+PC9zdmc+", - "name": "Bitcoin", - "symbol": "BTC", - "units": [ - { - "decimals": 8, - "name": "Bitcoin", - "symbol": "BTC" - }, - { - "decimals": 6, - "name": "CentiBitcoin", - "symbol": "cBTC" - }, - { - "decimals": 5, - "name": "MilliBitcoin", - "symbol": "mBTC" - }, - { - "decimals": 2, - "name": "Bit", - "symbol": "bits" - }, - { - "decimals": 0, - "name": "Satoshi", - "symbol": "satoshi" - } - ] - }, - "solana:5eykt4UsFv8P8NJdTREpY1vzqKqZKvdp/slip44:501": { - "fungible": true, - "iconUrl": "https://static.cx.metamask.io/api/v2/tokenIcons/assets/solana/5eykt4UsFv8P8NJdTREpY1vzqKqZKvdp/slip44/501.png", - "name": "Solana", - "symbol": "SOL", - "units": [ - { - "decimals": 9, - "name": "Solana", - "symbol": "SOL" - } - ] - }, - "solana:5eykt4UsFv8P8NJdTREpY1vzqKqZKvdp/token:CKfatsPMUf8SkiURsDXs7eK6GWb4Jsd6UDbs7twMCWxo": { - "fungible": true, - "iconUrl": "https://static.cx.metamask.io/api/v2/tokenIcons/assets/solana/5eykt4UsFv8P8NJdTREpY1vzqKqZKvdp/token/CKfatsPMUf8SkiURsDXs7eK6GWb4Jsd6UDbs7twMCWxo.png", - "name": "BonkEarn", - "symbol": "BERN", - "units": [ - { - "decimals": 5, - "name": "BonkEarn", - "symbol": "BERN" - } - ] - }, - "solana:5eykt4UsFv8P8NJdTREpY1vzqKqZKvdp/token:EPjFWdd5AufqSSqeM2qN1xzybapC8G4wEGGkZwyTDt1v": { - "fungible": true, - "iconUrl": "https://static.cx.metamask.io/api/v2/tokenIcons/assets/solana/5eykt4UsFv8P8NJdTREpY1vzqKqZKvdp/token/EPjFWdd5AufqSSqeM2qN1xzybapC8G4wEGGkZwyTDt1v.png", - "name": "USDC", - "symbol": "USDC", - "units": [ - { - "decimals": 6, - "name": "USDC", - "symbol": "USDC" - } - ] - }, - "solana:5eykt4UsFv8P8NJdTREpY1vzqKqZKvdp/token:HeLp6NuQkmYB4pYWo2zYs22mESHXPQYzXbB8n4V98jwC": { - "fungible": true, - "iconUrl": "https://static.cx.metamask.io/api/v2/tokenIcons/assets/solana/5eykt4UsFv8P8NJdTREpY1vzqKqZKvdp/token/HeLp6NuQkmYB4pYWo2zYs22mESHXPQYzXbB8n4V98jwC.png", - "name": "ai16z", - "symbol": "AI16Z", - "units": [ - { - "decimals": 9, - "name": "ai16z", - "symbol": "AI16Z" - } - ] - }, - "tron:728126428/slip44:195": { - "fungible": true, - "iconUrl": "https://raw.githubusercontent.com/trustwallet/assets/master/blockchains/tron/info/logo.png", - "name": "Tron", - "symbol": "TRX", - "units": [ - { - "decimals": 6, - "name": "Tron", - "symbol": "TRX" - } - ] - }, - "tron:728126428/slip44:195-in-lock-period": { - "fungible": true, - "iconUrl": "https://raw.githubusercontent.com/trustwallet/assets/master/blockchains/tron/info/logo.png", - "name": "In Lock Period", - "symbol": "trx-in-lock-period", - "units": [ - { - "decimals": 6, - "name": "In Lock Period", - "symbol": "trx-in-lock-period" - } - ] - }, - "tron:728126428/slip44:195-ready-for-withdrawal": { - "fungible": true, - "iconUrl": "https://raw.githubusercontent.com/trustwallet/assets/master/blockchains/tron/info/logo.png", - "name": "Ready for Withdrawal", - "symbol": "trx-ready-for-withdrawal", - "units": [ - { - "decimals": 6, - "name": "Ready for Withdrawal", - "symbol": "trx-ready-for-withdrawal" - } - ] - }, - "tron:728126428/slip44:195-staked-for-bandwidth": { - "fungible": true, - "iconUrl": "https://raw.githubusercontent.com/trustwallet/assets/master/blockchains/tron/info/logo.png", - "name": "Staked for Bandwidth", - "symbol": "sTRX-BANDWIDTH", - "units": [ - { - "decimals": 6, - "name": "Staked for Bandwidth", - "symbol": "sTRX-BANDWIDTH" - } - ] - }, - "tron:728126428/slip44:195-staked-for-energy": { - "fungible": true, - "iconUrl": "https://raw.githubusercontent.com/trustwallet/assets/master/blockchains/tron/info/logo.png", - "name": "Staked for Energy", - "symbol": "sTRX-ENERGY", - "units": [ - { - "decimals": 6, - "name": "Staked for Energy", - "symbol": "sTRX-ENERGY" - } - ] - }, - "tron:728126428/slip44:195-staking-rewards": { - "fungible": true, - "iconUrl": "https://raw.githubusercontent.com/trustwallet/assets/master/blockchains/tron/info/logo.png", - "name": "Staking Rewards", - "symbol": "trx-staking-rewards", - "units": [ - { - "decimals": 6, - "name": "Staking Rewards", - "symbol": "trx-staking-rewards" - } - ] - }, - "tron:728126428/slip44:bandwidth": { - "fungible": true, - "iconUrl": "https://raw.githubusercontent.com/trustwallet/assets/master/blockchains/tron/info/logo.png", - "name": "Bandwidth", - "symbol": "BANDWIDTH", - "units": [ - { - "decimals": 0, - "name": "Bandwidth", - "symbol": "BANDWIDTH" - } - ] - }, - "tron:728126428/slip44:energy": { - "fungible": true, - "iconUrl": "https://raw.githubusercontent.com/trustwallet/assets/master/blockchains/tron/info/logo.png", - "name": "Energy", - "symbol": "ENERGY", - "units": [ - { - "decimals": 0, - "name": "Energy", - "symbol": "ENERGY" - } - ] - }, - "tron:728126428/slip44:maximum-bandwidth": { - "fungible": true, - "iconUrl": "https://raw.githubusercontent.com/trustwallet/assets/master/blockchains/tron/info/logo.png", - "name": "Max Bandwidth", - "symbol": "MAX-BANDWIDTH", - "units": [ - { - "decimals": 0, - "name": "Max Bandwidth", - "symbol": "MAX-BANDWIDTH" - } - ] - }, - "tron:728126428/slip44:maximum-energy": { - "fungible": true, - "iconUrl": "https://raw.githubusercontent.com/trustwallet/assets/master/blockchains/tron/info/logo.png", - "name": "Max Energy", - "symbol": "MAX-ENERGY", - "units": [ - { - "decimals": 0, - "name": "Max Energy", - "symbol": "MAX-ENERGY" - } - ] - }, - "tron:728126428/trc20:TR7NHqjeKQxGTCi8q8ZY4pL8otSzgjLj6t": { - "fungible": true, - "iconUrl": "https://static.cx.metamask.io/api/v2/tokenIcons/assets/tron/728126428/trc20/TR7NHqjeKQxGTCi8q8ZY4pL8otSzgjLj6t.png", - "name": "Tether", - "symbol": "USDT", - "units": [ - { - "decimals": 6, - "name": "Tether", - "symbol": "USDT" - } - ] - } - }, - "allIgnoredAssets": {}, - "balances": { - "0089fc3c-35be-4ecf-ba88-22461a3d9503": { - "solana:5eykt4UsFv8P8NJdTREpY1vzqKqZKvdp/slip44:501": { - "amount": "0", - "unit": "SOL" - } - }, - "03d7de03-c856-4239-93fc-b3cc5352883a": { - "bip122:000000000019d6689c085ae165831e93/slip44:0": { - "amount": "0", - "unit": "BTC" - } - }, - "040b84bc-2341-4988-b8db-8063bbc6c708": { - "solana:5eykt4UsFv8P8NJdTREpY1vzqKqZKvdp/slip44:501": { - "amount": "0", - "unit": "SOL" - } - }, - "076cbb47-1752-40b0-9314-1f07e7b88ffa": { - "solana:5eykt4UsFv8P8NJdTREpY1vzqKqZKvdp/slip44:501": { - "unit": "SOL", - "amount": "0.015372701" - }, - "solana:5eykt4UsFv8P8NJdTREpY1vzqKqZKvdp/token:7vfCXTUXx5WJV5JADk17DUJ4ksgau7utNKj4b963voxs": { - "unit": "ETH", - "amount": "0" - }, - "solana:5eykt4UsFv8P8NJdTREpY1vzqKqZKvdp/token:CKfatsPMUf8SkiURsDXs7eK6GWb4Jsd6UDbs7twMCWxo": { - "unit": "BERN", - "amount": "0.00005" - }, - "solana:5eykt4UsFv8P8NJdTREpY1vzqKqZKvdp/token:EPjFWdd5AufqSSqeM2qN1xzybapC8G4wEGGkZwyTDt1v": { - "unit": "USDC", - "amount": "0" - }, - "solana:5eykt4UsFv8P8NJdTREpY1vzqKqZKvdp/token:HeLp6NuQkmYB4pYWo2zYs22mESHXPQYzXbB8n4V98jwC": { - "unit": "AI16Z", - "amount": "16.403260987" - }, - "solana:5eykt4UsFv8P8NJdTREpY1vzqKqZKvdp/token:JUPyiwrYJFskUPiHa7hkeR8VUtAeFoSYbKedZNsDvCN": { - "unit": "JUP", - "amount": "0" - } - }, - "1a14e831-0c2c-46ce-8e2b-d7d53cbefb63": { - "bip122:000000000019d6689c085ae165831e93/slip44:0": { - "amount": "0", - "unit": "BTC" - } - }, - "1c2440b0-d05e-4b07-881c-ebb9bce2bbb7": { - "tron:2494104990/slip44:195": { - "amount": "0", - "unit": "TRX" - }, - "tron:2494104990/slip44:195-staked-for-bandwidth": { - "amount": "0", - "unit": "sTRX-BANDWIDTH" - }, - "tron:2494104990/slip44:195-staked-for-energy": { - "amount": "0", - "unit": "sTRX-ENERGY" - }, - "tron:2494104990/slip44:bandwidth": { - "amount": "0", - "unit": "BANDWIDTH" - }, - "tron:2494104990/slip44:energy": { - "amount": "0", - "unit": "ENERGY" - }, - "tron:2494104990/slip44:maximum-bandwidth": { - "amount": "0", - "unit": "MAX-BANDWIDTH" - }, - "tron:2494104990/slip44:maximum-energy": { - "amount": "0", - "unit": "MAX-ENERGY" - }, - "tron:3448148188/slip44:195": { - "amount": "0", - "unit": "TRX" - }, - "tron:3448148188/slip44:195-staked-for-bandwidth": { - "amount": "0", - "unit": "sTRX-BANDWIDTH" - }, - "tron:3448148188/slip44:195-staked-for-energy": { - "amount": "0", - "unit": "sTRX-ENERGY" - }, - "tron:3448148188/slip44:bandwidth": { - "amount": "0", - "unit": "BANDWIDTH" - }, - "tron:3448148188/slip44:energy": { - "amount": "0", - "unit": "ENERGY" - }, - "tron:3448148188/slip44:maximum-bandwidth": { - "amount": "0", - "unit": "MAX-BANDWIDTH" - }, - "tron:3448148188/slip44:maximum-energy": { - "amount": "0", - "unit": "MAX-ENERGY" - }, - "tron:728126428/slip44:195": { - "amount": "0", - "unit": "TRX" - }, - "tron:728126428/slip44:195-in-lock-period": { - "amount": "0", - "unit": "trx-in-lock-period" - }, - "tron:728126428/slip44:195-ready-for-withdrawal": { - "amount": "0", - "unit": "trx-ready-for-withdrawal" - }, - "tron:728126428/slip44:195-staked-for-bandwidth": { - "amount": "0", - "unit": "sTRX-BANDWIDTH" - }, - "tron:728126428/slip44:195-staked-for-energy": { - "amount": "0", - "unit": "sTRX-ENERGY" - }, - "tron:728126428/slip44:195-staking-rewards": { - "amount": "0", - "unit": "trx-staking-rewards" - }, - "tron:728126428/slip44:bandwidth": { - "amount": "0", - "unit": "BANDWIDTH" - }, - "tron:728126428/slip44:energy": { - "amount": "0", - "unit": "ENERGY" - }, - "tron:728126428/slip44:maximum-bandwidth": { - "amount": "0", - "unit": "MAX-BANDWIDTH" - }, - "tron:728126428/slip44:maximum-energy": { - "amount": "0", - "unit": "MAX-ENERGY" - } - }, - "1dd2b0a9-a1ea-4308-92e8-303665fd25c5": { - "tron:2494104990/slip44:195": { - "amount": "0", - "unit": "TRX" - }, - "tron:2494104990/slip44:195-staked-for-bandwidth": { - "amount": "0", - "unit": "sTRX-BANDWIDTH" - }, - "tron:2494104990/slip44:195-staked-for-energy": { - "amount": "0", - "unit": "sTRX-ENERGY" - }, - "tron:2494104990/slip44:bandwidth": { - "amount": "0", - "unit": "BANDWIDTH" - }, - "tron:2494104990/slip44:energy": { - "amount": "0", - "unit": "ENERGY" - }, - "tron:2494104990/slip44:maximum-bandwidth": { - "amount": "0", - "unit": "MAX-BANDWIDTH" - }, - "tron:2494104990/slip44:maximum-energy": { - "amount": "0", - "unit": "MAX-ENERGY" - }, - "tron:3448148188/slip44:195": { - "amount": "0", - "unit": "TRX" - }, - "tron:3448148188/slip44:195-staked-for-bandwidth": { - "amount": "0", - "unit": "sTRX-BANDWIDTH" - }, - "tron:3448148188/slip44:195-staked-for-energy": { - "amount": "0", - "unit": "sTRX-ENERGY" - }, - "tron:3448148188/slip44:bandwidth": { - "amount": "0", - "unit": "BANDWIDTH" - }, - "tron:3448148188/slip44:energy": { - "amount": "0", - "unit": "ENERGY" - }, - "tron:3448148188/slip44:maximum-bandwidth": { - "amount": "0", - "unit": "MAX-BANDWIDTH" - }, - "tron:3448148188/slip44:maximum-energy": { - "amount": "0", - "unit": "MAX-ENERGY" - }, - "tron:728126428/slip44:195": { - "amount": "0", - "unit": "TRX" - }, - "tron:728126428/slip44:195-staked-for-bandwidth": { - "amount": "0", - "unit": "sTRX-BANDWIDTH" - }, - "tron:728126428/slip44:195-staked-for-energy": { - "amount": "0", - "unit": "sTRX-ENERGY" - }, - "tron:728126428/slip44:bandwidth": { - "amount": "0", - "unit": "BANDWIDTH" - }, - "tron:728126428/slip44:energy": { - "amount": "0", - "unit": "ENERGY" - }, - "tron:728126428/slip44:maximum-bandwidth": { - "amount": "0", - "unit": "MAX-BANDWIDTH" - }, - "tron:728126428/slip44:maximum-energy": { - "amount": "0", - "unit": "MAX-ENERGY" - } - }, - "23ce192d-62e7-4d4f-a168-93ae18dc915d": { - "bip122:000000000019d6689c085ae165831e93/slip44:0": { - "amount": "0", - "unit": "BTC" - } - }, - "2858af66-a9cd-456a-b29c-f2f5148a5ac8": { - "solana:5eykt4UsFv8P8NJdTREpY1vzqKqZKvdp/slip44:501": { - "amount": "0", - "unit": "SOL" - } - }, - "3d26ef67-6870-4750-af80-bce53fa4a0af": { - "tron:2494104990/slip44:195": { - "amount": "0", - "unit": "TRX" - }, - "tron:2494104990/slip44:195-staked-for-bandwidth": { - "amount": "0", - "unit": "sTRX-BANDWIDTH" - }, - "tron:2494104990/slip44:195-staked-for-energy": { - "amount": "0", - "unit": "sTRX-ENERGY" - }, - "tron:2494104990/slip44:bandwidth": { - "amount": "0", - "unit": "BANDWIDTH" - }, - "tron:2494104990/slip44:energy": { - "amount": "0", - "unit": "ENERGY" - }, - "tron:2494104990/slip44:maximum-bandwidth": { - "amount": "0", - "unit": "MAX-BANDWIDTH" - }, - "tron:2494104990/slip44:maximum-energy": { - "amount": "0", - "unit": "MAX-ENERGY" - }, - "tron:3448148188/slip44:195": { - "amount": "0", - "unit": "TRX" - }, - "tron:3448148188/slip44:195-staked-for-bandwidth": { - "amount": "0", - "unit": "sTRX-BANDWIDTH" - }, - "tron:3448148188/slip44:195-staked-for-energy": { - "amount": "0", - "unit": "sTRX-ENERGY" - }, - "tron:3448148188/slip44:bandwidth": { - "amount": "0", - "unit": "BANDWIDTH" - }, - "tron:3448148188/slip44:energy": { - "amount": "0", - "unit": "ENERGY" - }, - "tron:3448148188/slip44:maximum-bandwidth": { - "amount": "0", - "unit": "MAX-BANDWIDTH" - }, - "tron:3448148188/slip44:maximum-energy": { - "amount": "0", - "unit": "MAX-ENERGY" - }, - "tron:728126428/slip44:195": { - "amount": "53.676935", - "unit": "TRX" - }, - "tron:728126428/slip44:195-in-lock-period": { - "amount": "0", - "unit": "trx-in-lock-period" - }, - "tron:728126428/slip44:195-ready-for-withdrawal": { - "amount": "0", - "unit": "trx-ready-for-withdrawal" - }, - "tron:728126428/slip44:195-staked-for-bandwidth": { - "amount": "0", - "unit": "sTRX-BANDWIDTH" - }, - "tron:728126428/slip44:195-staked-for-energy": { - "amount": "0", - "unit": "sTRX-ENERGY" - }, - "tron:728126428/slip44:195-staking-rewards": { - "amount": "0", - "unit": "trx-staking-rewards" - }, - "tron:728126428/slip44:bandwidth": { - "amount": "600", - "unit": "BANDWIDTH" - }, - "tron:728126428/slip44:energy": { - "amount": "0", - "unit": "ENERGY" - }, - "tron:728126428/slip44:maximum-bandwidth": { - "amount": "600", - "unit": "MAX-BANDWIDTH" - }, - "tron:728126428/slip44:maximum-energy": { - "amount": "0", - "unit": "MAX-ENERGY" - }, - "tron:728126428/trc20:TR7NHqjeKQxGTCi8q8ZY4pL8otSzgjLj6t": { - "amount": "10.349701", - "unit": "USDT" - } - }, - "3d379cac-eb60-4b45-8374-370aac2b76c5": { - "bip122:000000000019d6689c085ae165831e93/slip44:0": { - "amount": "0", - "unit": "BTC" - } - }, - "44ca98ce-b819-4e06-b651-ba146dbe22c1": { - "solana:5eykt4UsFv8P8NJdTREpY1vzqKqZKvdp/slip44:501": { - "amount": "0", - "unit": "SOL" - } - }, - "55fe5095-3194-42c2-81d3-5701dcad1924": { - "solana:5eykt4UsFv8P8NJdTREpY1vzqKqZKvdp/slip44:501": { - "amount": "0.002413557", - "unit": "SOL" - }, - "solana:5eykt4UsFv8P8NJdTREpY1vzqKqZKvdp/token:27G8MtK7VtTcCHkpASjSDdkWWYfoqT6ggEuKidVJidD4": { - "amount": "0", - "unit": "JLP" - }, - "solana:5eykt4UsFv8P8NJdTREpY1vzqKqZKvdp/token:7atgF8KQo4wJrD5ATGX7t1V2zVvykPJbFfNeVf1icFv1": { - "amount": "0", - "unit": "$CWIF" - }, - "solana:5eykt4UsFv8P8NJdTREpY1vzqKqZKvdp/token:8crhketCxuYMFfkvGfikwp6LGuN9sXx5i3oTC4PXpump": { - "amount": "0", - "unit": "SLMN" - }, - "solana:5eykt4UsFv8P8NJdTREpY1vzqKqZKvdp/token:9zNQRsGLjNKwCUU5Gq5LR8beUCPzQMVMqKAi3SSZh54u": { - "amount": "0", - "unit": "FDUSD" - }, - "solana:5eykt4UsFv8P8NJdTREpY1vzqKqZKvdp/token:CKfatsPMUf8SkiURsDXs7eK6GWb4Jsd6UDbs7twMCWxo": { - "amount": "13.43184", - "unit": "BERN" - }, - "solana:5eykt4UsFv8P8NJdTREpY1vzqKqZKvdp/token:EPjFWdd5AufqSSqeM2qN1xzybapC8G4wEGGkZwyTDt1v": { - "amount": "0", - "unit": "USDC" - }, - "solana:5eykt4UsFv8P8NJdTREpY1vzqKqZKvdp/token:Es9vMFrzaCERmJfrF4H2FYD4KCoNkY11McCe8BenwNYB": { - "amount": "0", - "unit": "USDT" - } - }, - "574cb22f-c2d5-40d2-86a5-e3393d33050f": { - "bip122:000000000019d6689c085ae165831e93/slip44:0": { - "amount": "0.00015445", - "unit": "BTC" - } - }, - "575d130d-01da-44f0-a731-da9967adf412": { - "solana:5eykt4UsFv8P8NJdTREpY1vzqKqZKvdp/slip44:501": { - "amount": "0", - "unit": "SOL" - } - }, - "5a747531-d39f-49d5-afbd-59c018cc4757": { - "solana:5eykt4UsFv8P8NJdTREpY1vzqKqZKvdp/slip44:501": { - "amount": "0", - "unit": "SOL" - } - }, - "658962cf-0ecb-496e-beb8-91b663d244de": { - "tron:2494104990/slip44:195": { - "amount": "0", - "unit": "TRX" - }, - "tron:2494104990/slip44:195-staked-for-bandwidth": { - "amount": "0", - "unit": "sTRX-BANDWIDTH" - }, - "tron:2494104990/slip44:195-staked-for-energy": { - "amount": "0", - "unit": "sTRX-ENERGY" - }, - "tron:2494104990/slip44:bandwidth": { - "amount": "0", - "unit": "BANDWIDTH" - }, - "tron:2494104990/slip44:energy": { - "amount": "0", - "unit": "ENERGY" - }, - "tron:2494104990/slip44:maximum-bandwidth": { - "amount": "0", - "unit": "MAX-BANDWIDTH" - }, - "tron:2494104990/slip44:maximum-energy": { - "amount": "0", - "unit": "MAX-ENERGY" - }, - "tron:3448148188/slip44:195": { - "amount": "0", - "unit": "TRX" - }, - "tron:3448148188/slip44:195-staked-for-bandwidth": { - "amount": "0", - "unit": "sTRX-BANDWIDTH" - }, - "tron:3448148188/slip44:195-staked-for-energy": { - "amount": "0", - "unit": "sTRX-ENERGY" - }, - "tron:3448148188/slip44:bandwidth": { - "amount": "0", - "unit": "BANDWIDTH" - }, - "tron:3448148188/slip44:energy": { - "amount": "0", - "unit": "ENERGY" - }, - "tron:3448148188/slip44:maximum-bandwidth": { - "amount": "0", - "unit": "MAX-BANDWIDTH" - }, - "tron:3448148188/slip44:maximum-energy": { - "amount": "0", - "unit": "MAX-ENERGY" - }, - "tron:728126428/slip44:195": { - "amount": "0", - "unit": "TRX" - }, - "tron:728126428/slip44:195-staked-for-bandwidth": { - "amount": "0", - "unit": "sTRX-BANDWIDTH" - }, - "tron:728126428/slip44:195-staked-for-energy": { - "amount": "0", - "unit": "sTRX-ENERGY" - }, - "tron:728126428/slip44:bandwidth": { - "amount": "0", - "unit": "BANDWIDTH" - }, - "tron:728126428/slip44:energy": { - "amount": "0", - "unit": "ENERGY" - }, - "tron:728126428/slip44:maximum-bandwidth": { - "amount": "0", - "unit": "MAX-BANDWIDTH" - }, - "tron:728126428/slip44:maximum-energy": { - "amount": "0", - "unit": "MAX-ENERGY" - } - }, - "73a28e8a-5ecb-4b36-b6f3-d2c12294eebf": { - "tron:2494104990/slip44:195": { - "amount": "0", - "unit": "TRX" - }, - "tron:2494104990/slip44:195-staked-for-bandwidth": { - "amount": "0", - "unit": "sTRX-BANDWIDTH" - }, - "tron:2494104990/slip44:195-staked-for-energy": { - "amount": "0", - "unit": "sTRX-ENERGY" - }, - "tron:2494104990/slip44:bandwidth": { - "amount": "0", - "unit": "BANDWIDTH" - }, - "tron:2494104990/slip44:energy": { - "amount": "0", - "unit": "ENERGY" - }, - "tron:2494104990/slip44:maximum-bandwidth": { - "amount": "0", - "unit": "MAX-BANDWIDTH" - }, - "tron:2494104990/slip44:maximum-energy": { - "amount": "0", - "unit": "MAX-ENERGY" - }, - "tron:3448148188/slip44:195": { - "amount": "0", - "unit": "TRX" - }, - "tron:3448148188/slip44:195-staked-for-bandwidth": { - "amount": "0", - "unit": "sTRX-BANDWIDTH" - }, - "tron:3448148188/slip44:195-staked-for-energy": { - "amount": "0", - "unit": "sTRX-ENERGY" - }, - "tron:3448148188/slip44:bandwidth": { - "amount": "0", - "unit": "BANDWIDTH" - }, - "tron:3448148188/slip44:energy": { - "amount": "0", - "unit": "ENERGY" - }, - "tron:3448148188/slip44:maximum-bandwidth": { - "amount": "0", - "unit": "MAX-BANDWIDTH" - }, - "tron:3448148188/slip44:maximum-energy": { - "amount": "0", - "unit": "MAX-ENERGY" - }, - "tron:728126428/slip44:195": { - "amount": "0", - "unit": "TRX" - }, - "tron:728126428/slip44:195-staked-for-bandwidth": { - "amount": "0", - "unit": "sTRX-BANDWIDTH" - }, - "tron:728126428/slip44:195-staked-for-energy": { - "amount": "0", - "unit": "sTRX-ENERGY" - }, - "tron:728126428/slip44:bandwidth": { - "amount": "0", - "unit": "BANDWIDTH" - }, - "tron:728126428/slip44:energy": { - "amount": "0", - "unit": "ENERGY" - }, - "tron:728126428/slip44:maximum-bandwidth": { - "amount": "0", - "unit": "MAX-BANDWIDTH" - }, - "tron:728126428/slip44:maximum-energy": { - "amount": "0", - "unit": "MAX-ENERGY" - } - }, - "744910ce-8368-414f-8e7c-1c5dba71831e": { - "bip122:000000000019d6689c085ae165831e93/slip44:0": { - "amount": "0", - "unit": "BTC" - } - }, - "77a6514e-0024-4dc2-b08d-e78c664c37c5": { - "tron:2494104990/slip44:195": { - "amount": "0", - "unit": "TRX" - }, - "tron:2494104990/slip44:195-staked-for-bandwidth": { - "amount": "0", - "unit": "sTRX-BANDWIDTH" - }, - "tron:2494104990/slip44:195-staked-for-energy": { - "amount": "0", - "unit": "sTRX-ENERGY" - }, - "tron:2494104990/slip44:bandwidth": { - "amount": "0", - "unit": "BANDWIDTH" - }, - "tron:2494104990/slip44:energy": { - "amount": "0", - "unit": "ENERGY" - }, - "tron:2494104990/slip44:maximum-bandwidth": { - "amount": "0", - "unit": "MAX-BANDWIDTH" - }, - "tron:2494104990/slip44:maximum-energy": { - "amount": "0", - "unit": "MAX-ENERGY" - }, - "tron:3448148188/slip44:195": { - "amount": "0", - "unit": "TRX" - }, - "tron:3448148188/slip44:195-staked-for-bandwidth": { - "amount": "0", - "unit": "sTRX-BANDWIDTH" - }, - "tron:3448148188/slip44:195-staked-for-energy": { - "amount": "0", - "unit": "sTRX-ENERGY" - }, - "tron:3448148188/slip44:bandwidth": { - "amount": "0", - "unit": "BANDWIDTH" - }, - "tron:3448148188/slip44:energy": { - "amount": "0", - "unit": "ENERGY" - }, - "tron:3448148188/slip44:maximum-bandwidth": { - "amount": "0", - "unit": "MAX-BANDWIDTH" - }, - "tron:3448148188/slip44:maximum-energy": { - "amount": "0", - "unit": "MAX-ENERGY" - }, - "tron:728126428/slip44:195": { - "amount": "0", - "unit": "TRX" - }, - "tron:728126428/slip44:195-staked-for-bandwidth": { - "amount": "0", - "unit": "sTRX-BANDWIDTH" - }, - "tron:728126428/slip44:195-staked-for-energy": { - "amount": "0", - "unit": "sTRX-ENERGY" - }, - "tron:728126428/slip44:bandwidth": { - "amount": "0", - "unit": "BANDWIDTH" - }, - "tron:728126428/slip44:energy": { - "amount": "0", - "unit": "ENERGY" - }, - "tron:728126428/slip44:maximum-bandwidth": { - "amount": "0", - "unit": "MAX-BANDWIDTH" - }, - "tron:728126428/slip44:maximum-energy": { - "amount": "0", - "unit": "MAX-ENERGY" - } - }, - "78ccb0a9-3647-4bb6-94b4-54d8b4e0b397": { - "tron:2494104990/slip44:195": { - "amount": "0", - "unit": "TRX" - }, - "tron:2494104990/slip44:195-staked-for-bandwidth": { - "amount": "0", - "unit": "sTRX-BANDWIDTH" - }, - "tron:2494104990/slip44:195-staked-for-energy": { - "amount": "0", - "unit": "sTRX-ENERGY" - }, - "tron:2494104990/slip44:bandwidth": { - "amount": "0", - "unit": "BANDWIDTH" - }, - "tron:2494104990/slip44:energy": { - "amount": "0", - "unit": "ENERGY" - }, - "tron:2494104990/slip44:maximum-bandwidth": { - "amount": "0", - "unit": "MAX-BANDWIDTH" - }, - "tron:2494104990/slip44:maximum-energy": { - "amount": "0", - "unit": "MAX-ENERGY" - }, - "tron:3448148188/slip44:195": { - "amount": "0", - "unit": "TRX" - }, - "tron:3448148188/slip44:195-staked-for-bandwidth": { - "amount": "0", - "unit": "sTRX-BANDWIDTH" - }, - "tron:3448148188/slip44:195-staked-for-energy": { - "amount": "0", - "unit": "sTRX-ENERGY" - }, - "tron:3448148188/slip44:bandwidth": { - "amount": "0", - "unit": "BANDWIDTH" - }, - "tron:3448148188/slip44:energy": { - "amount": "0", - "unit": "ENERGY" - }, - "tron:3448148188/slip44:maximum-bandwidth": { - "amount": "0", - "unit": "MAX-BANDWIDTH" - }, - "tron:3448148188/slip44:maximum-energy": { - "amount": "0", - "unit": "MAX-ENERGY" - }, - "tron:728126428/slip44:195": { - "amount": "0", - "unit": "TRX" - }, - "tron:728126428/slip44:195-staked-for-bandwidth": { - "amount": "0", - "unit": "sTRX-BANDWIDTH" - }, - "tron:728126428/slip44:195-staked-for-energy": { - "amount": "0", - "unit": "sTRX-ENERGY" - }, - "tron:728126428/slip44:bandwidth": { - "amount": "0", - "unit": "BANDWIDTH" - }, - "tron:728126428/slip44:energy": { - "amount": "0", - "unit": "ENERGY" - }, - "tron:728126428/slip44:maximum-bandwidth": { - "amount": "0", - "unit": "MAX-BANDWIDTH" - }, - "tron:728126428/slip44:maximum-energy": { - "amount": "0", - "unit": "MAX-ENERGY" - } - }, - "7f6eee30-338e-4926-86fa-19436da91f35": { - "solana:5eykt4UsFv8P8NJdTREpY1vzqKqZKvdp/slip44:501": { - "amount": "0", - "unit": "SOL" - } - }, - "80340772-85d8-41a5-b316-1d8fc8c2cea4": { - "bip122:000000000019d6689c085ae165831e93/slip44:0": { - "amount": "0", - "unit": "BTC" - } - }, - "891b1840-b34b-4059-895b-5f163cff8ff1": { - "solana:5eykt4UsFv8P8NJdTREpY1vzqKqZKvdp/slip44:501": { - "amount": "0", - "unit": "SOL" - } - }, - "8b0e3ad2-d40d-47b1-a9c3-702eb67ab1ba": { - "tron:2494104990/slip44:195": { - "amount": "0", - "unit": "TRX" - }, - "tron:2494104990/slip44:195-staked-for-bandwidth": { - "amount": "0", - "unit": "sTRX-BANDWIDTH" - }, - "tron:2494104990/slip44:195-staked-for-energy": { - "amount": "0", - "unit": "sTRX-ENERGY" - }, - "tron:2494104990/slip44:bandwidth": { - "amount": "0", - "unit": "BANDWIDTH" - }, - "tron:2494104990/slip44:energy": { - "amount": "0", - "unit": "ENERGY" - }, - "tron:2494104990/slip44:maximum-bandwidth": { - "amount": "0", - "unit": "MAX-BANDWIDTH" - }, - "tron:2494104990/slip44:maximum-energy": { - "amount": "0", - "unit": "MAX-ENERGY" - }, - "tron:3448148188/slip44:195": { - "amount": "0", - "unit": "TRX" - }, - "tron:3448148188/slip44:195-staked-for-bandwidth": { - "amount": "0", - "unit": "sTRX-BANDWIDTH" - }, - "tron:3448148188/slip44:195-staked-for-energy": { - "amount": "0", - "unit": "sTRX-ENERGY" - }, - "tron:3448148188/slip44:bandwidth": { - "amount": "0", - "unit": "BANDWIDTH" - }, - "tron:3448148188/slip44:energy": { - "amount": "0", - "unit": "ENERGY" - }, - "tron:3448148188/slip44:maximum-bandwidth": { - "amount": "0", - "unit": "MAX-BANDWIDTH" - }, - "tron:3448148188/slip44:maximum-energy": { - "amount": "0", - "unit": "MAX-ENERGY" - }, - "tron:728126428/slip44:195": { - "amount": "0", - "unit": "TRX" - }, - "tron:728126428/slip44:195-in-lock-period": { - "amount": "0", - "unit": "trx-in-lock-period" - }, - "tron:728126428/slip44:195-ready-for-withdrawal": { - "amount": "0", - "unit": "trx-ready-for-withdrawal" - }, - "tron:728126428/slip44:195-staked-for-bandwidth": { - "amount": "0", - "unit": "sTRX-BANDWIDTH" - }, - "tron:728126428/slip44:195-staked-for-energy": { - "amount": "0", - "unit": "sTRX-ENERGY" - }, - "tron:728126428/slip44:195-staking-rewards": { - "amount": "0", - "unit": "trx-staking-rewards" - }, - "tron:728126428/slip44:bandwidth": { - "amount": "0", - "unit": "BANDWIDTH" - }, - "tron:728126428/slip44:energy": { - "amount": "0", - "unit": "ENERGY" - }, - "tron:728126428/slip44:maximum-bandwidth": { - "amount": "0", - "unit": "MAX-BANDWIDTH" - }, - "tron:728126428/slip44:maximum-energy": { - "amount": "0", - "unit": "MAX-ENERGY" - } - }, - "8fd0b8c5-b42d-462d-965b-2979b4057c88": { - "tron:2494104990/slip44:195": { - "amount": "0", - "unit": "TRX" - }, - "tron:2494104990/slip44:195-staked-for-bandwidth": { - "amount": "0", - "unit": "sTRX-BANDWIDTH" - }, - "tron:2494104990/slip44:195-staked-for-energy": { - "amount": "0", - "unit": "sTRX-ENERGY" - }, - "tron:2494104990/slip44:bandwidth": { - "amount": "0", - "unit": "BANDWIDTH" - }, - "tron:2494104990/slip44:energy": { - "amount": "0", - "unit": "ENERGY" - }, - "tron:2494104990/slip44:maximum-bandwidth": { - "amount": "0", - "unit": "MAX-BANDWIDTH" - }, - "tron:2494104990/slip44:maximum-energy": { - "amount": "0", - "unit": "MAX-ENERGY" - }, - "tron:3448148188/slip44:195": { - "amount": "0", - "unit": "TRX" - }, - "tron:3448148188/slip44:195-staked-for-bandwidth": { - "amount": "0", - "unit": "sTRX-BANDWIDTH" - }, - "tron:3448148188/slip44:195-staked-for-energy": { - "amount": "0", - "unit": "sTRX-ENERGY" - }, - "tron:3448148188/slip44:bandwidth": { - "amount": "0", - "unit": "BANDWIDTH" - }, - "tron:3448148188/slip44:energy": { - "amount": "0", - "unit": "ENERGY" - }, - "tron:3448148188/slip44:maximum-bandwidth": { - "amount": "0", - "unit": "MAX-BANDWIDTH" - }, - "tron:3448148188/slip44:maximum-energy": { - "amount": "0", - "unit": "MAX-ENERGY" - }, - "tron:728126428/slip44:195": { - "amount": "0", - "unit": "TRX" - }, - "tron:728126428/slip44:195-staked-for-bandwidth": { - "amount": "0", - "unit": "sTRX-BANDWIDTH" - }, - "tron:728126428/slip44:195-staked-for-energy": { - "amount": "0", - "unit": "sTRX-ENERGY" - }, - "tron:728126428/slip44:bandwidth": { - "amount": "0", - "unit": "BANDWIDTH" - }, - "tron:728126428/slip44:energy": { - "amount": "0", - "unit": "ENERGY" - }, - "tron:728126428/slip44:maximum-bandwidth": { - "amount": "0", - "unit": "MAX-BANDWIDTH" - }, - "tron:728126428/slip44:maximum-energy": { - "amount": "0", - "unit": "MAX-ENERGY" - } - }, - "9e12503a-12d8-4bb4-835f-a0c203ccd67a": { - "tron:2494104990/slip44:195": { - "amount": "0", - "unit": "TRX" - }, - "tron:2494104990/slip44:195-staked-for-bandwidth": { - "amount": "0", - "unit": "sTRX-BANDWIDTH" - }, - "tron:2494104990/slip44:195-staked-for-energy": { - "amount": "0", - "unit": "sTRX-ENERGY" - }, - "tron:2494104990/slip44:bandwidth": { - "amount": "0", - "unit": "BANDWIDTH" - }, - "tron:2494104990/slip44:energy": { - "amount": "0", - "unit": "ENERGY" - }, - "tron:2494104990/slip44:maximum-bandwidth": { - "amount": "0", - "unit": "MAX-BANDWIDTH" - }, - "tron:2494104990/slip44:maximum-energy": { - "amount": "0", - "unit": "MAX-ENERGY" - }, - "tron:3448148188/slip44:195": { - "amount": "0", - "unit": "TRX" - }, - "tron:3448148188/slip44:195-staked-for-bandwidth": { - "amount": "0", - "unit": "sTRX-BANDWIDTH" - }, - "tron:3448148188/slip44:195-staked-for-energy": { - "amount": "0", - "unit": "sTRX-ENERGY" - }, - "tron:3448148188/slip44:bandwidth": { - "amount": "0", - "unit": "BANDWIDTH" - }, - "tron:3448148188/slip44:energy": { - "amount": "0", - "unit": "ENERGY" - }, - "tron:3448148188/slip44:maximum-bandwidth": { - "amount": "0", - "unit": "MAX-BANDWIDTH" - }, - "tron:3448148188/slip44:maximum-energy": { - "amount": "0", - "unit": "MAX-ENERGY" - }, - "tron:728126428/slip44:195": { - "amount": "0", - "unit": "TRX" - }, - "tron:728126428/slip44:195-staked-for-bandwidth": { - "amount": "0", - "unit": "sTRX-BANDWIDTH" - }, - "tron:728126428/slip44:195-staked-for-energy": { - "amount": "0", - "unit": "sTRX-ENERGY" - }, - "tron:728126428/slip44:bandwidth": { - "amount": "0", - "unit": "BANDWIDTH" - }, - "tron:728126428/slip44:energy": { - "amount": "0", - "unit": "ENERGY" - }, - "tron:728126428/slip44:maximum-bandwidth": { - "amount": "0", - "unit": "MAX-BANDWIDTH" - }, - "tron:728126428/slip44:maximum-energy": { - "amount": "0", - "unit": "MAX-ENERGY" - } - }, - "a4c40c7c-01c0-4335-b574-72195898b31c": { - "bip122:000000000019d6689c085ae165831e93/slip44:0": { - "amount": "0", - "unit": "BTC" - } - }, - "c2c05428-c846-4992-a5a3-5d151b97fcdb": { - "bip122:000000000019d6689c085ae165831e93/slip44:0": { - "amount": "0", - "unit": "BTC" - } - }, - "c3fc6bba-683b-44c8-b637-89b55416a8dd": { - "solana:5eykt4UsFv8P8NJdTREpY1vzqKqZKvdp/slip44:501": { - "amount": "0", - "unit": "SOL" - } - }, - "c5bf70b0-2c4b-4016-9107-cab94be5fbb0": { - "tron:2494104990/slip44:195": { - "amount": "0", - "unit": "TRX" - }, - "tron:2494104990/slip44:195-staked-for-bandwidth": { - "amount": "0", - "unit": "sTRX-BANDWIDTH" - }, - "tron:2494104990/slip44:195-staked-for-energy": { - "amount": "0", - "unit": "sTRX-ENERGY" - }, - "tron:2494104990/slip44:bandwidth": { - "amount": "0", - "unit": "BANDWIDTH" - }, - "tron:2494104990/slip44:energy": { - "amount": "0", - "unit": "ENERGY" - }, - "tron:2494104990/slip44:maximum-bandwidth": { - "amount": "0", - "unit": "MAX-BANDWIDTH" - }, - "tron:2494104990/slip44:maximum-energy": { - "amount": "0", - "unit": "MAX-ENERGY" - }, - "tron:3448148188/slip44:195": { - "amount": "0", - "unit": "TRX" - }, - "tron:3448148188/slip44:195-staked-for-bandwidth": { - "amount": "0", - "unit": "sTRX-BANDWIDTH" - }, - "tron:3448148188/slip44:195-staked-for-energy": { - "amount": "0", - "unit": "sTRX-ENERGY" - }, - "tron:3448148188/slip44:bandwidth": { - "amount": "0", - "unit": "BANDWIDTH" - }, - "tron:3448148188/slip44:energy": { - "amount": "0", - "unit": "ENERGY" - }, - "tron:3448148188/slip44:maximum-bandwidth": { - "amount": "0", - "unit": "MAX-BANDWIDTH" - }, - "tron:3448148188/slip44:maximum-energy": { - "amount": "0", - "unit": "MAX-ENERGY" - }, - "tron:728126428/slip44:195": { - "unit": "TRX", - "amount": "49.889968" - }, - "tron:728126428/slip44:195-in-lock-period": { - "unit": "trx-in-lock-period", - "amount": "0" - }, - "tron:728126428/slip44:195-ready-for-withdrawal": { - "unit": "trx-ready-for-withdrawal", - "amount": "0" - }, - "tron:728126428/slip44:195-staked-for-bandwidth": { - "unit": "sTRX-BANDWIDTH", - "amount": "0" - }, - "tron:728126428/slip44:195-staked-for-energy": { - "unit": "sTRX-ENERGY", - "amount": "0" - }, - "tron:728126428/slip44:195-staking-rewards": { - "unit": "trx-staking-rewards", - "amount": "0" - }, - "tron:728126428/slip44:bandwidth": { - "unit": "BANDWIDTH", - "amount": "600" - }, - "tron:728126428/slip44:energy": { - "unit": "ENERGY", - "amount": "0" - }, - "tron:728126428/slip44:maximum-bandwidth": { - "unit": "MAX-BANDWIDTH", - "amount": "600" - }, - "tron:728126428/slip44:maximum-energy": { - "unit": "MAX-ENERGY", - "amount": "0" - } - }, - "c6d62ae8-d02c-4a7a-8222-17ed6cdf0e52": { - "bip122:000000000019d6689c085ae165831e93/slip44:0": { - "amount": "0", - "unit": "BTC" - } - }, - "c7cf5799-e458-4bb5-b60b-7e74cf2e7c0a": { - "tron:2494104990/slip44:195": { - "amount": "0", - "unit": "TRX" - }, - "tron:2494104990/slip44:195-staked-for-bandwidth": { - "amount": "0", - "unit": "sTRX-BANDWIDTH" - }, - "tron:2494104990/slip44:195-staked-for-energy": { - "amount": "0", - "unit": "sTRX-ENERGY" - }, - "tron:2494104990/slip44:bandwidth": { - "amount": "0", - "unit": "BANDWIDTH" - }, - "tron:2494104990/slip44:energy": { - "amount": "0", - "unit": "ENERGY" - }, - "tron:2494104990/slip44:maximum-bandwidth": { - "amount": "0", - "unit": "MAX-BANDWIDTH" - }, - "tron:2494104990/slip44:maximum-energy": { - "amount": "0", - "unit": "MAX-ENERGY" - }, - "tron:3448148188/slip44:195": { - "amount": "0", - "unit": "TRX" - }, - "tron:3448148188/slip44:195-staked-for-bandwidth": { - "amount": "0", - "unit": "sTRX-BANDWIDTH" - }, - "tron:3448148188/slip44:195-staked-for-energy": { - "amount": "0", - "unit": "sTRX-ENERGY" - }, - "tron:3448148188/slip44:bandwidth": { - "amount": "0", - "unit": "BANDWIDTH" - }, - "tron:3448148188/slip44:energy": { - "amount": "0", - "unit": "ENERGY" - }, - "tron:3448148188/slip44:maximum-bandwidth": { - "amount": "0", - "unit": "MAX-BANDWIDTH" - }, - "tron:3448148188/slip44:maximum-energy": { - "amount": "0", - "unit": "MAX-ENERGY" - }, - "tron:728126428/slip44:195": { - "amount": "0", - "unit": "TRX" - }, - "tron:728126428/slip44:195-staked-for-bandwidth": { - "amount": "0", - "unit": "sTRX-BANDWIDTH" - }, - "tron:728126428/slip44:195-staked-for-energy": { - "amount": "0", - "unit": "sTRX-ENERGY" - }, - "tron:728126428/slip44:bandwidth": { - "amount": "0", - "unit": "BANDWIDTH" - }, - "tron:728126428/slip44:energy": { - "amount": "0", - "unit": "ENERGY" - }, - "tron:728126428/slip44:maximum-bandwidth": { - "amount": "0", - "unit": "MAX-BANDWIDTH" - }, - "tron:728126428/slip44:maximum-energy": { - "amount": "0", - "unit": "MAX-ENERGY" - } - }, - "c86652a6-e1f3-4e4c-b411-c58efe220dcf": { - "solana:5eykt4UsFv8P8NJdTREpY1vzqKqZKvdp/slip44:501": { - "amount": "0", - "unit": "SOL" - } - }, - "d05ca007-7a11-470f-8433-a89767f95995": { - "bip122:000000000019d6689c085ae165831e93/slip44:0": { - "amount": "0", - "unit": "BTC" - } - }, - "d8086b4c-4361-49ab-8955-efaa5240f561": { - "tron:2494104990/slip44:195": { - "amount": "0", - "unit": "TRX" - }, - "tron:2494104990/slip44:195-staked-for-bandwidth": { - "amount": "0", - "unit": "sTRX-BANDWIDTH" - }, - "tron:2494104990/slip44:195-staked-for-energy": { - "amount": "0", - "unit": "sTRX-ENERGY" - }, - "tron:2494104990/slip44:bandwidth": { - "amount": "0", - "unit": "BANDWIDTH" - }, - "tron:2494104990/slip44:energy": { - "amount": "0", - "unit": "ENERGY" - }, - "tron:2494104990/slip44:maximum-bandwidth": { - "amount": "0", - "unit": "MAX-BANDWIDTH" - }, - "tron:2494104990/slip44:maximum-energy": { - "amount": "0", - "unit": "MAX-ENERGY" - }, - "tron:3448148188/slip44:195": { - "amount": "0", - "unit": "TRX" - }, - "tron:3448148188/slip44:195-staked-for-bandwidth": { - "amount": "0", - "unit": "sTRX-BANDWIDTH" - }, - "tron:3448148188/slip44:195-staked-for-energy": { - "amount": "0", - "unit": "sTRX-ENERGY" - }, - "tron:3448148188/slip44:bandwidth": { - "amount": "0", - "unit": "BANDWIDTH" - }, - "tron:3448148188/slip44:energy": { - "amount": "0", - "unit": "ENERGY" - }, - "tron:3448148188/slip44:maximum-bandwidth": { - "amount": "0", - "unit": "MAX-BANDWIDTH" - }, - "tron:3448148188/slip44:maximum-energy": { - "amount": "0", - "unit": "MAX-ENERGY" - }, - "tron:728126428/slip44:195": { - "amount": "0", - "unit": "TRX" - }, - "tron:728126428/slip44:195-staked-for-bandwidth": { - "amount": "0", - "unit": "sTRX-BANDWIDTH" - }, - "tron:728126428/slip44:195-staked-for-energy": { - "amount": "0", - "unit": "sTRX-ENERGY" - }, - "tron:728126428/slip44:bandwidth": { - "amount": "0", - "unit": "BANDWIDTH" - }, - "tron:728126428/slip44:energy": { - "amount": "0", - "unit": "ENERGY" - }, - "tron:728126428/slip44:maximum-bandwidth": { - "amount": "0", - "unit": "MAX-BANDWIDTH" - }, - "tron:728126428/slip44:maximum-energy": { - "amount": "0", - "unit": "MAX-ENERGY" - } - }, - "d834c0ad-655b-4707-997d-7048c1896f89": { - "bip122:000000000019d6689c085ae165831e93/slip44:0": { - "amount": "0", - "unit": "BTC" - } - }, - "db7205b1-e72f-4082-92c4-5490fdba12c5": { - "solana:5eykt4UsFv8P8NJdTREpY1vzqKqZKvdp/slip44:501": { - "amount": "0", - "unit": "SOL" - } - }, - "df59431e-d587-40a5-9c2b-3bdc6584b0e4": { - "bip122:000000000019d6689c085ae165831e93/slip44:0": { - "amount": "0", - "unit": "BTC" - } - }, - "e421a858-a232-40dc-8bbb-d3745bee215b": { - "solana:5eykt4UsFv8P8NJdTREpY1vzqKqZKvdp/slip44:501": { - "amount": "0", - "unit": "SOL" - } - }, - "e4cb2ec8-15e3-494a-bde2-6ea14e6d0d6c": { - "solana:5eykt4UsFv8P8NJdTREpY1vzqKqZKvdp/slip44:501": { - "amount": "0", - "unit": "SOL" - } - }, - "e6f7d2e7-8c4c-48f7-9d04-958add8113b7": { - "tron:2494104990/slip44:195": { - "amount": "0", - "unit": "TRX" - }, - "tron:2494104990/slip44:195-staked-for-bandwidth": { - "amount": "0", - "unit": "sTRX-BANDWIDTH" - }, - "tron:2494104990/slip44:195-staked-for-energy": { - "amount": "0", - "unit": "sTRX-ENERGY" - }, - "tron:2494104990/slip44:bandwidth": { - "amount": "0", - "unit": "BANDWIDTH" - }, - "tron:2494104990/slip44:energy": { - "amount": "0", - "unit": "ENERGY" - }, - "tron:2494104990/slip44:maximum-bandwidth": { - "amount": "0", - "unit": "MAX-BANDWIDTH" - }, - "tron:2494104990/slip44:maximum-energy": { - "amount": "0", - "unit": "MAX-ENERGY" - }, - "tron:3448148188/slip44:195": { - "amount": "0", - "unit": "TRX" - }, - "tron:3448148188/slip44:195-staked-for-bandwidth": { - "amount": "0", - "unit": "sTRX-BANDWIDTH" - }, - "tron:3448148188/slip44:195-staked-for-energy": { - "amount": "0", - "unit": "sTRX-ENERGY" - }, - "tron:3448148188/slip44:bandwidth": { - "amount": "0", - "unit": "BANDWIDTH" - }, - "tron:3448148188/slip44:energy": { - "amount": "0", - "unit": "ENERGY" - }, - "tron:3448148188/slip44:maximum-bandwidth": { - "amount": "0", - "unit": "MAX-BANDWIDTH" - }, - "tron:3448148188/slip44:maximum-energy": { - "amount": "0", - "unit": "MAX-ENERGY" - }, - "tron:728126428/slip44:195": { - "amount": "0", - "unit": "TRX" - }, - "tron:728126428/slip44:195-staked-for-bandwidth": { - "amount": "0", - "unit": "sTRX-BANDWIDTH" - }, - "tron:728126428/slip44:195-staked-for-energy": { - "amount": "0", - "unit": "sTRX-ENERGY" - }, - "tron:728126428/slip44:bandwidth": { - "amount": "0", - "unit": "BANDWIDTH" - }, - "tron:728126428/slip44:energy": { - "amount": "0", - "unit": "ENERGY" - }, - "tron:728126428/slip44:maximum-bandwidth": { - "amount": "0", - "unit": "MAX-BANDWIDTH" - }, - "tron:728126428/slip44:maximum-energy": { - "amount": "0", - "unit": "MAX-ENERGY" - } - }, - "e78a4c3d-7649-4797-90ad-9d6ddbe9e6dd": { - "bip122:000000000019d6689c085ae165831e93/slip44:0": { - "amount": "0", - "unit": "BTC" - } - }, - "e86326ea-c687-45bf-84b9-ad4d8618d084": { - "solana:5eykt4UsFv8P8NJdTREpY1vzqKqZKvdp/slip44:501": { - "amount": "0", - "unit": "SOL" - } - }, - "f5481e08-42e2-4504-9a1f-44c0bbe6e0bb": { - "bip122:000000000019d6689c085ae165831e93/slip44:0": { - "amount": "0", - "unit": "BTC" - } - }, - "f7f2ce83-85bc-49f9-8551-c36c5432a0c1": { - "tron:2494104990/slip44:195": { - "amount": "0", - "unit": "TRX" - }, - "tron:2494104990/slip44:195-staked-for-bandwidth": { - "amount": "0", - "unit": "sTRX-BANDWIDTH" - }, - "tron:2494104990/slip44:195-staked-for-energy": { - "amount": "0", - "unit": "sTRX-ENERGY" - }, - "tron:2494104990/slip44:bandwidth": { - "amount": "0", - "unit": "BANDWIDTH" - }, - "tron:2494104990/slip44:energy": { - "amount": "0", - "unit": "ENERGY" - }, - "tron:2494104990/slip44:maximum-bandwidth": { - "amount": "0", - "unit": "MAX-BANDWIDTH" - }, - "tron:2494104990/slip44:maximum-energy": { - "amount": "0", - "unit": "MAX-ENERGY" - }, - "tron:3448148188/slip44:195": { - "amount": "0", - "unit": "TRX" - }, - "tron:3448148188/slip44:195-staked-for-bandwidth": { - "amount": "0", - "unit": "sTRX-BANDWIDTH" - }, - "tron:3448148188/slip44:195-staked-for-energy": { - "amount": "0", - "unit": "sTRX-ENERGY" - }, - "tron:3448148188/slip44:bandwidth": { - "amount": "0", - "unit": "BANDWIDTH" - }, - "tron:3448148188/slip44:energy": { - "amount": "0", - "unit": "ENERGY" - }, - "tron:3448148188/slip44:maximum-bandwidth": { - "amount": "0", - "unit": "MAX-BANDWIDTH" - }, - "tron:3448148188/slip44:maximum-energy": { - "amount": "0", - "unit": "MAX-ENERGY" - }, - "tron:728126428/slip44:195": { - "amount": "0", - "unit": "TRX" - }, - "tron:728126428/slip44:195-staked-for-bandwidth": { - "amount": "0", - "unit": "sTRX-BANDWIDTH" - }, - "tron:728126428/slip44:195-staked-for-energy": { - "amount": "0", - "unit": "sTRX-ENERGY" - }, - "tron:728126428/slip44:bandwidth": { - "amount": "0", - "unit": "BANDWIDTH" - }, - "tron:728126428/slip44:energy": { - "amount": "0", - "unit": "ENERGY" - }, - "tron:728126428/slip44:maximum-bandwidth": { - "amount": "0", - "unit": "MAX-BANDWIDTH" - }, - "tron:728126428/slip44:maximum-energy": { - "amount": "0", - "unit": "MAX-ENERGY" - } - }, - "fedf900d-3caf-4540-9e24-c63400ef2b18": { - "tron:2494104990/slip44:195": { - "amount": "0", - "unit": "TRX" - }, - "tron:2494104990/slip44:195-staked-for-bandwidth": { - "amount": "0", - "unit": "sTRX-BANDWIDTH" - }, - "tron:2494104990/slip44:195-staked-for-energy": { - "amount": "0", - "unit": "sTRX-ENERGY" - }, - "tron:2494104990/slip44:bandwidth": { - "amount": "0", - "unit": "BANDWIDTH" - }, - "tron:2494104990/slip44:energy": { - "amount": "0", - "unit": "ENERGY" - }, - "tron:2494104990/slip44:maximum-bandwidth": { - "amount": "0", - "unit": "MAX-BANDWIDTH" - }, - "tron:2494104990/slip44:maximum-energy": { - "amount": "0", - "unit": "MAX-ENERGY" - }, - "tron:3448148188/slip44:195": { - "amount": "0", - "unit": "TRX" - }, - "tron:3448148188/slip44:195-staked-for-bandwidth": { - "amount": "0", - "unit": "sTRX-BANDWIDTH" - }, - "tron:3448148188/slip44:195-staked-for-energy": { - "amount": "0", - "unit": "sTRX-ENERGY" - }, - "tron:3448148188/slip44:bandwidth": { - "amount": "0", - "unit": "BANDWIDTH" - }, - "tron:3448148188/slip44:energy": { - "amount": "0", - "unit": "ENERGY" - }, - "tron:3448148188/slip44:maximum-bandwidth": { - "amount": "0", - "unit": "MAX-BANDWIDTH" - }, - "tron:3448148188/slip44:maximum-energy": { - "amount": "0", - "unit": "MAX-ENERGY" - }, - "tron:728126428/slip44:195": { - "amount": "0", - "unit": "TRX" - }, - "tron:728126428/slip44:195-in-lock-period": { - "amount": "0", - "unit": "trx-in-lock-period" - }, - "tron:728126428/slip44:195-ready-for-withdrawal": { - "amount": "0", - "unit": "trx-ready-for-withdrawal" - }, - "tron:728126428/slip44:195-staked-for-bandwidth": { - "amount": "0", - "unit": "sTRX-BANDWIDTH" - }, - "tron:728126428/slip44:195-staked-for-energy": { - "amount": "0", - "unit": "sTRX-ENERGY" - }, - "tron:728126428/slip44:195-staking-rewards": { - "amount": "0", - "unit": "trx-staking-rewards" - }, - "tron:728126428/slip44:bandwidth": { - "amount": "0", - "unit": "BANDWIDTH" - }, - "tron:728126428/slip44:energy": { - "amount": "0", - "unit": "ENERGY" - }, - "tron:728126428/slip44:maximum-bandwidth": { - "amount": "0", - "unit": "MAX-BANDWIDTH" - }, - "tron:728126428/slip44:maximum-energy": { - "amount": "0", - "unit": "MAX-ENERGY" - } - }, - "ffb79cf7-3a88-4cfe-864c-a9f656ce1840": { - "bip122:000000000019d6689c085ae165831e93/slip44:0": { - "amount": "0", - "unit": "BTC" - } - } - }, - "nonEvmTransactions": { - "0089fc3c-35be-4ecf-ba88-22461a3d9503": {}, - "03d7de03-c856-4239-93fc-b3cc5352883a": {}, - "040b84bc-2341-4988-b8db-8063bbc6c708": {}, - "076cbb47-1752-40b0-9314-1f07e7b88ffa": { - "solana:5eykt4UsFv8P8NJdTREpY1vzqKqZKvdp": { - "transactions": [ - { - "id": "jpoyN5Wp3Ut1o7V6WkBqzFxZJikT4zTFG1e1gjP1txkPesN9yTLWcj9pxGAgpaN5fMpaxncGaoNtvvUwdU2zWAP", - "account": "076cbb47-1752-40b0-9314-1f07e7b88ffa", - "timestamp": 1776730390, - "chain": "solana:5eykt4UsFv8P8NJdTREpY1vzqKqZKvdp", - "status": "confirmed", - "type": "send", - "from": [ - { - "address": "CyGir7UdxRCsNXkA89qH1P5p3Zhx11XxsE97WSfNMnLT", - "asset": { - "fungible": true, - "type": "solana:5eykt4UsFv8P8NJdTREpY1vzqKqZKvdp/slip44:501", - "unit": "SOL", - "amount": "0.01" - } - } - ], - "to": [ - { - "address": "47YRE7eLAdYzvGqSH1XLg2o8xUtywk7sS5BKv1oR4Y7i", - "asset": { - "fungible": true, - "type": "solana:5eykt4UsFv8P8NJdTREpY1vzqKqZKvdp/slip44:501", - "unit": "SOL", - "amount": "0.0000875" - } - }, - { - "address": "7uTT8Xi5RWXzy7h9XL244GRgEycDYDhLjr3ZyNdXi8pZ", - "asset": { - "fungible": true, - "type": "solana:5eykt4UsFv8P8NJdTREpY1vzqKqZKvdp/slip44:501", - "unit": "SOL", - "amount": "0.0099125" - } - } - ], - "fees": [ - { - "type": "base", - "asset": { - "fungible": true, - "type": "solana:5eykt4UsFv8P8NJdTREpY1vzqKqZKvdp/slip44:501", - "unit": "SOL", - "amount": "0.000005" - } - }, - { - "type": "priority", - "asset": { - "fungible": true, - "type": "solana:5eykt4UsFv8P8NJdTREpY1vzqKqZKvdp/slip44:501", - "unit": "SOL", - "amount": "0.000003909" - } - } - ], - "events": [ - { - "status": "confirmed", - "timestamp": 1776730390 - } - ] - }, - { - "id": "629zuNU9bH6Y2hL4S4ewfSwWbEXfj6rFp7EUTf9oGsvKcYX2s2S5WLG2gTrm5aYhByo6aGSdYyCFDAuqrN3CpPuU", - "account": "076cbb47-1752-40b0-9314-1f07e7b88ffa", - "timestamp": 1775782707, - "chain": "solana:5eykt4UsFv8P8NJdTREpY1vzqKqZKvdp", - "status": "confirmed", - "type": "send", - "from": [ - { - "address": "CyGir7UdxRCsNXkA89qH1P5p3Zhx11XxsE97WSfNMnLT", - "asset": { - "fungible": true, - "type": "solana:5eykt4UsFv8P8NJdTREpY1vzqKqZKvdp/token:EPjFWdd5AufqSSqeM2qN1xzybapC8G4wEGGkZwyTDt1v", - "unit": "USDC", - "amount": "2.043238" - } - } - ], - "to": [ - { - "address": "47YRE7eLAdYzvGqSH1XLg2o8xUtywk7sS5BKv1oR4Y7i", - "asset": { - "fungible": true, - "type": "solana:5eykt4UsFv8P8NJdTREpY1vzqKqZKvdp/token:EPjFWdd5AufqSSqeM2qN1xzybapC8G4wEGGkZwyTDt1v", - "unit": "USDC", - "amount": "0.017878" - } - }, - { - "address": "7uTT8Xi5RWXzy7h9XL244GRgEycDYDhLjr3ZyNdXi8pZ", - "asset": { - "fungible": true, - "type": "solana:5eykt4UsFv8P8NJdTREpY1vzqKqZKvdp/token:EPjFWdd5AufqSSqeM2qN1xzybapC8G4wEGGkZwyTDt1v", - "unit": "USDC", - "amount": "2.02536" - } - } - ], - "fees": [ - { - "type": "base", - "asset": { - "fungible": true, - "type": "solana:5eykt4UsFv8P8NJdTREpY1vzqKqZKvdp/slip44:501", - "unit": "SOL", - "amount": "0.000005" - } - }, - { - "type": "priority", - "asset": { - "fungible": true, - "type": "solana:5eykt4UsFv8P8NJdTREpY1vzqKqZKvdp/slip44:501", - "unit": "SOL", - "amount": "0.000004316" - } - } - ], - "events": [ - { - "status": "confirmed", - "timestamp": 1775782707 - } - ] - }, - { - "id": "3AMJwWowVgW3B1nw7F5TrdJd45WzkzzA4SaVrLEmSB5GE8Hzu3JicYYAEhfnvSxxiZVx8RayuMKwuoE2gdWEXnCN", - "account": "076cbb47-1752-40b0-9314-1f07e7b88ffa", - "timestamp": 1775568331, - "chain": "solana:5eykt4UsFv8P8NJdTREpY1vzqKqZKvdp", - "status": "confirmed", - "type": "unknown", - "from": [], - "to": [], - "fees": [ - { - "type": "base", - "asset": { - "fungible": true, - "type": "solana:5eykt4UsFv8P8NJdTREpY1vzqKqZKvdp/slip44:501", - "unit": "SOL", - "amount": "0.000005" - } - }, - { - "type": "priority", - "asset": { - "fungible": true, - "type": "solana:5eykt4UsFv8P8NJdTREpY1vzqKqZKvdp/slip44:501", - "unit": "SOL", - "amount": "0.0000203" - } - } - ], - "events": [ - { - "status": "confirmed", - "timestamp": 1775568331 - } - ] - }, - { - "id": "5A2McQdKtfx9iMDRVRjiRP3QNgFux82EFgpW3pcQ8mtxwFmUFFb9gAyGoTiJ3Siv1yrxHqob5fbVySTexqp9h3K5", - "account": "076cbb47-1752-40b0-9314-1f07e7b88ffa", - "timestamp": 1773675011, - "chain": "solana:5eykt4UsFv8P8NJdTREpY1vzqKqZKvdp", - "status": "confirmed", - "type": "unknown", - "from": [], - "to": [], - "fees": [ - { - "type": "base", - "asset": { - "fungible": true, - "type": "solana:5eykt4UsFv8P8NJdTREpY1vzqKqZKvdp/slip44:501", - "unit": "SOL", - "amount": "0.000005" - } - }, - { - "type": "priority", - "asset": { - "fungible": true, - "type": "solana:5eykt4UsFv8P8NJdTREpY1vzqKqZKvdp/slip44:501", - "unit": "SOL", - "amount": "0.0000203" - } - } - ], - "events": [ - { - "status": "confirmed", - "timestamp": 1773675011 - } - ] - }, - { - "id": "DaSWvYycV2ye5P1oiWHNC6Gmuw2paFHc761W3icwQFWC4q1KPX3tFPfZAkLYxchqWFfDQsRsnNqzBwrmb64DDRt", - "account": "076cbb47-1752-40b0-9314-1f07e7b88ffa", - "timestamp": 1769081993, - "chain": "solana:5eykt4UsFv8P8NJdTREpY1vzqKqZKvdp", - "status": "confirmed", - "type": "unknown", - "from": [], - "to": [], - "fees": [ - { - "type": "base", - "asset": { - "fungible": true, - "type": "solana:5eykt4UsFv8P8NJdTREpY1vzqKqZKvdp/slip44:501", - "unit": "SOL", - "amount": "0.000005" - } - }, - { - "type": "priority", - "asset": { - "fungible": true, - "type": "solana:5eykt4UsFv8P8NJdTREpY1vzqKqZKvdp/slip44:501", - "unit": "SOL", - "amount": "0.0000203" - } - } - ], - "events": [ - { - "status": "confirmed", - "timestamp": 1769081993 - } - ] - }, - { - "id": "EwbRaKm9YY5eaWRudUgXJFaL3NAYrA425P4kqyTDNXiYc6iSppQVwuGfnGTrxjK731dNHCcRrwA58VQ3bkFXPgo", - "account": "076cbb47-1752-40b0-9314-1f07e7b88ffa", - "timestamp": 1768995587, - "chain": "solana:5eykt4UsFv8P8NJdTREpY1vzqKqZKvdp", - "status": "confirmed", - "type": "unknown", - "from": [], - "to": [], - "fees": [ - { - "type": "base", - "asset": { - "fungible": true, - "type": "solana:5eykt4UsFv8P8NJdTREpY1vzqKqZKvdp/slip44:501", - "unit": "SOL", - "amount": "0.000005" - } - }, - { - "type": "priority", - "asset": { - "fungible": true, - "type": "solana:5eykt4UsFv8P8NJdTREpY1vzqKqZKvdp/slip44:501", - "unit": "SOL", - "amount": "0.0000203" - } - } - ], - "events": [ - { - "status": "confirmed", - "timestamp": 1768995587 - } - ] - }, - { - "id": "3ijJgEyRHV17dXGJ3cM3xootWn3pzDNiNaxvx4KhgGdavzi7dUhjXKXajsbEAWRd5m2mYeUfEe9Fkoxib7eTJmNk", - "account": "076cbb47-1752-40b0-9314-1f07e7b88ffa", - "timestamp": 1768909100, - "chain": "solana:5eykt4UsFv8P8NJdTREpY1vzqKqZKvdp", - "status": "confirmed", - "type": "unknown", - "from": [], - "to": [], - "fees": [ - { - "type": "base", - "asset": { - "fungible": true, - "type": "solana:5eykt4UsFv8P8NJdTREpY1vzqKqZKvdp/slip44:501", - "unit": "SOL", - "amount": "0.000005" - } - }, - { - "type": "priority", - "asset": { - "fungible": true, - "type": "solana:5eykt4UsFv8P8NJdTREpY1vzqKqZKvdp/slip44:501", - "unit": "SOL", - "amount": "0.0000203" - } - } - ], - "events": [ - { - "status": "confirmed", - "timestamp": 1768909100 - } - ] - }, - { - "account": "076cbb47-1752-40b0-9314-1f07e7b88ffa", - "chain": "solana:5eykt4UsFv8P8NJdTREpY1vzqKqZKvdp", - "events": [ - { - "status": "confirmed", - "timestamp": 1768822723 - } - ], - "fees": [ - { - "asset": { - "amount": "0.000005", - "fungible": true, - "type": "solana:5eykt4UsFv8P8NJdTREpY1vzqKqZKvdp/slip44:501", - "unit": "SOL" - }, - "type": "base" - }, - { - "asset": { - "amount": "0.0000203", - "fungible": true, - "type": "solana:5eykt4UsFv8P8NJdTREpY1vzqKqZKvdp/slip44:501", - "unit": "SOL" - }, - "type": "priority" - } - ], - "from": [], - "id": "4kFMomYxVup5VTSgFjs8N3scdZE7jTetbJTbc9PUTpqs5wkYdPcL6CgWSNJJPEvQdTEtpJZdxhopYoUErtYdiG3x", - "status": "confirmed", - "timestamp": 1768822723, - "to": [], - "type": "unknown" - }, - { - "id": "3UMZwLcAakxKnX7aKRLrNrbUrjStnA2ZTZQYtY59tfdfHo8X2akpa9R8hJoGFeEXn22DPLQwyh7zfo9pYmyxtSMH", - "account": "076cbb47-1752-40b0-9314-1f07e7b88ffa", - "timestamp": 1760381364, - "chain": "solana:5eykt4UsFv8P8NJdTREpY1vzqKqZKvdp", - "status": "confirmed", - "type": "send", - "from": [ - { - "address": "CyGir7UdxRCsNXkA89qH1P5p3Zhx11XxsE97WSfNMnLT", - "asset": { - "fungible": true, - "type": "solana:5eykt4UsFv8P8NJdTREpY1vzqKqZKvdp/slip44:501", - "unit": "SOL", - "amount": "0.005" - } - } - ], - "to": [ - { - "address": "47YRE7eLAdYzvGqSH1XLg2o8xUtywk7sS5BKv1oR4Y7i", - "asset": { - "fungible": true, - "type": "solana:5eykt4UsFv8P8NJdTREpY1vzqKqZKvdp/slip44:501", - "unit": "SOL", - "amount": "0.00004375" - } - }, - { - "address": "F7p3dFrjRTbtRp8FRF6qHLomXbKRBzpvBLjtQcfcgmNe", - "asset": { - "fungible": true, - "type": "solana:5eykt4UsFv8P8NJdTREpY1vzqKqZKvdp/slip44:501", - "unit": "SOL", - "amount": "0.00495625" - } - } - ], - "fees": [ - { - "type": "base", - "asset": { - "fungible": true, - "type": "solana:5eykt4UsFv8P8NJdTREpY1vzqKqZKvdp/slip44:501", - "unit": "SOL", - "amount": "0.000005" - } - }, - { - "type": "priority", - "asset": { - "fungible": true, - "type": "solana:5eykt4UsFv8P8NJdTREpY1vzqKqZKvdp/slip44:501", - "unit": "SOL", - "amount": "0.000016315" - } - } - ], - "events": [ - { - "status": "confirmed", - "timestamp": 1760381364 - } - ] - }, - { - "account": "076cbb47-1752-40b0-9314-1f07e7b88ffa", - "chain": "solana:5eykt4UsFv8P8NJdTREpY1vzqKqZKvdp", - "events": [ - { - "status": "confirmed", - "timestamp": 1760381327 - } - ], - "fees": [ - { - "asset": { - "amount": "0.000005", - "fungible": true, - "type": "solana:5eykt4UsFv8P8NJdTREpY1vzqKqZKvdp/slip44:501", - "unit": "SOL" - }, - "type": "base" - }, - { - "asset": { - "amount": "0.000023624", - "fungible": true, - "type": "solana:5eykt4UsFv8P8NJdTREpY1vzqKqZKvdp/slip44:501", - "unit": "SOL" - }, - "type": "priority" - } - ], - "from": [ - { - "address": "CyGir7UdxRCsNXkA89qH1P5p3Zhx11XxsE97WSfNMnLT", - "asset": { - "amount": "0.01", - "fungible": true, - "type": "solana:5eykt4UsFv8P8NJdTREpY1vzqKqZKvdp/slip44:501", - "unit": "SOL" - } - } - ], - "id": "5qsB2WN6jeUBYXpzgwPcLQohAfA189fa84fL1yqpZYvtGRxvsuDuKyhbfmRy3KtGHKG4rqxKCFkFFoTio4TQeGjn", - "status": "confirmed", - "timestamp": 1760381327, - "to": [ - { - "address": "CyGir7UdxRCsNXkA89qH1P5p3Zhx11XxsE97WSfNMnLT", - "asset": { - "amount": "2.043238", - "fungible": true, - "type": "solana:5eykt4UsFv8P8NJdTREpY1vzqKqZKvdp/token:EPjFWdd5AufqSSqeM2qN1xzybapC8G4wEGGkZwyTDt1v", - "unit": "USDC" - } - } - ], - "type": "swap" - }, - { - "account": "076cbb47-1752-40b0-9314-1f07e7b88ffa", - "chain": "solana:5eykt4UsFv8P8NJdTREpY1vzqKqZKvdp", - "events": [ - { - "status": "confirmed", - "timestamp": 1757014376 - } - ], - "fees": [ - { - "asset": { - "amount": "0.000005", - "fungible": true, - "type": "solana:5eykt4UsFv8P8NJdTREpY1vzqKqZKvdp/slip44:501", - "unit": "SOL" - }, - "type": "base" - }, - { - "asset": { - "amount": "0.00003254", - "fungible": true, - "type": "solana:5eykt4UsFv8P8NJdTREpY1vzqKqZKvdp/slip44:501", - "unit": "SOL" - }, - "type": "priority" - } - ], - "from": [ - { - "address": "CyGir7UdxRCsNXkA89qH1P5p3Zhx11XxsE97WSfNMnLT", - "asset": { - "amount": "5.764819", - "fungible": true, - "type": "solana:5eykt4UsFv8P8NJdTREpY1vzqKqZKvdp/token:JUPyiwrYJFskUPiHa7hkeR8VUtAeFoSYbKedZNsDvCN", - "unit": "JUP" - } - }, - { - "address": "8cjeuVV3KQ9k8RqW1JUyCfey2TDAhuo7f4hPDMeGfxv", - "asset": { - "amount": "2.317131", - "fungible": true, - "type": "solana:5eykt4UsFv8P8NJdTREpY1vzqKqZKvdp/token:EPjFWdd5AufqSSqeM2qN1xzybapC8G4wEGGkZwyTDt1v", - "unit": "USDC" - } - }, - { - "address": "BhQEFZCRnWKQ21LEt4DUby7fKynfmLVJcNjfHNqjEF61", - "asset": { - "amount": "0.409106", - "fungible": true, - "type": "solana:5eykt4UsFv8P8NJdTREpY1vzqKqZKvdp/token:EPjFWdd5AufqSSqeM2qN1xzybapC8G4wEGGkZwyTDt1v", - "unit": "USDC" - } - } - ], - "id": "M2Jb7vv64TXyqmwLycXyKwSGAyfrHA9nEGt94yeLqZYVe96BvJFxkS7GAEdW6uinfP7wjKTDJSiBYAT78bjtzR3", - "status": "confirmed", - "timestamp": 1757014376, - "to": [ - { - "address": "HbBHuvgWoChfztoqz2izLRF5mSoLKQXfU68kueBmhcmL", - "asset": { - "amount": "0.050442", - "fungible": true, - "type": "solana:5eykt4UsFv8P8NJdTREpY1vzqKqZKvdp/token:JUPyiwrYJFskUPiHa7hkeR8VUtAeFoSYbKedZNsDvCN", - "unit": "JUP" - } - }, - { - "address": "F7p3dFrjRTbtRp8FRF6qHLomXbKRBzpvBLjtQcfcgmNe", - "asset": { - "amount": "2.726237", - "fungible": true, - "type": "solana:5eykt4UsFv8P8NJdTREpY1vzqKqZKvdp/token:EPjFWdd5AufqSSqeM2qN1xzybapC8G4wEGGkZwyTDt1v", - "unit": "USDC" - } - }, - { - "address": "HWcEXBF7Gu2HnjBPfrSYpUKYrV4bBrkMJRWnb5Qn1zUe", - "asset": { - "amount": "4.857221", - "fungible": true, - "type": "solana:5eykt4UsFv8P8NJdTREpY1vzqKqZKvdp/token:JUPyiwrYJFskUPiHa7hkeR8VUtAeFoSYbKedZNsDvCN", - "unit": "JUP" - } - }, - { - "address": "BhQEFZCRnWKQ21LEt4DUby7fKynfmLVJcNjfHNqjEF61", - "asset": { - "amount": "0.857156", - "fungible": true, - "type": "solana:5eykt4UsFv8P8NJdTREpY1vzqKqZKvdp/token:JUPyiwrYJFskUPiHa7hkeR8VUtAeFoSYbKedZNsDvCN", - "unit": "JUP" - } - } - ], - "type": "send" - }, - { - "account": "076cbb47-1752-40b0-9314-1f07e7b88ffa", - "chain": "solana:5eykt4UsFv8P8NJdTREpY1vzqKqZKvdp", - "events": [ - { - "status": "confirmed", - "timestamp": 1757013124 - } - ], - "fees": [ - { - "asset": { - "amount": "0.000005", - "fungible": true, - "type": "solana:5eykt4UsFv8P8NJdTREpY1vzqKqZKvdp/slip44:501", - "unit": "SOL" - }, - "type": "base" - }, - { - "asset": { - "amount": "0.000040561", - "fungible": true, - "type": "solana:5eykt4UsFv8P8NJdTREpY1vzqKqZKvdp/slip44:501", - "unit": "SOL" - }, - "type": "priority" - } - ], - "from": [ - { - "address": "CyGir7UdxRCsNXkA89qH1P5p3Zhx11XxsE97WSfNMnLT", - "asset": { - "amount": "5", - "fungible": true, - "type": "solana:5eykt4UsFv8P8NJdTREpY1vzqKqZKvdp/token:EPjFWdd5AufqSSqeM2qN1xzybapC8G4wEGGkZwyTDt1v", - "unit": "USDC" - } - }, - { - "address": "HLnpSz9h2S4hiLQ43rnSD9XkcUThA7B8hQMKmDaiTLcC", - "asset": { - "amount": "0.024341646", - "fungible": true, - "type": "solana:5eykt4UsFv8P8NJdTREpY1vzqKqZKvdp/token:So11111111111111111111111111111111111111112", - "unit": "" - } - }, - { - "address": "8CPypcvEBUoqAyjrpKyWa5y1V4xKh3WxUh3K9ZiDCm8u", - "asset": { - "amount": "0.00115694", - "fungible": true, - "type": "solana:5eykt4UsFv8P8NJdTREpY1vzqKqZKvdp/token:7vfCXTUXx5WJV5JADk17DUJ4ksgau7utNKj4b963voxs", - "unit": "ETH" - } - }, - { - "address": "CyGir7UdxRCsNXkA89qH1P5p3Zhx11XxsE97WSfNMnLT", - "asset": { - "amount": "0.00503904", - "fungible": true, - "type": "solana:5eykt4UsFv8P8NJdTREpY1vzqKqZKvdp/slip44:501", - "unit": "SOL" - } - }, - { - "address": "sx8hCMCauCdbZ7sVBGSJmH7b7JmtuN8d8YwYmBpuPLH", - "asset": { - "amount": "0.024341646", - "fungible": true, - "type": "solana:5eykt4UsFv8P8NJdTREpY1vzqKqZKvdp/slip44:501", - "unit": "SOL" - } - } - ], - "id": "7Le683oKsgkxPtkZYeF9J8p57VoSuLLwKNq9qHam26YZAe6TEMcaRfAmCEnwzw3GMBZG2QSpkPkTvgj8us4N51z", - "status": "confirmed", - "timestamp": 1757013124, - "to": [ - { - "address": "HbBHuvgWoChfztoqz2izLRF5mSoLKQXfU68kueBmhcmL", - "asset": { - "amount": "0.04375", - "fungible": true, - "type": "solana:5eykt4UsFv8P8NJdTREpY1vzqKqZKvdp/token:EPjFWdd5AufqSSqeM2qN1xzybapC8G4wEGGkZwyTDt1v", - "unit": "USDC" - } - }, - { - "address": "HLnpSz9h2S4hiLQ43rnSD9XkcUThA7B8hQMKmDaiTLcC", - "asset": { - "amount": "4.95625", - "fungible": true, - "type": "solana:5eykt4UsFv8P8NJdTREpY1vzqKqZKvdp/token:EPjFWdd5AufqSSqeM2qN1xzybapC8G4wEGGkZwyTDt1v", - "unit": "USDC" - } - }, - { - "address": "8CPypcvEBUoqAyjrpKyWa5y1V4xKh3WxUh3K9ZiDCm8u", - "asset": { - "amount": "0.024341646", - "fungible": true, - "type": "solana:5eykt4UsFv8P8NJdTREpY1vzqKqZKvdp/token:So11111111111111111111111111111111111111112", - "unit": "" - } - }, - { - "address": "9KH9N69HMnfSMS3cJPo4sjPUA1gHyAhDUsMS7ZtFPuhT", - "asset": { - "amount": "0.00115694", - "fungible": true, - "type": "solana:5eykt4UsFv8P8NJdTREpY1vzqKqZKvdp/token:7vfCXTUXx5WJV5JADk17DUJ4ksgau7utNKj4b963voxs", - "unit": "ETH" - } - }, - { - "address": "4r9QbXNdh2PdzAMEj2PK1vyULMn9VayC2D2MajYjymWG", - "asset": { - "amount": "0.00203928", - "fungible": true, - "type": "solana:5eykt4UsFv8P8NJdTREpY1vzqKqZKvdp/slip44:501", - "unit": "SOL" - } - }, - { - "address": "9KH9N69HMnfSMS3cJPo4sjPUA1gHyAhDUsMS7ZtFPuhT", - "asset": { - "amount": "0.00096048", - "fungible": true, - "type": "solana:5eykt4UsFv8P8NJdTREpY1vzqKqZKvdp/slip44:501", - "unit": "SOL" - } - }, - { - "address": "9NVVrXwBqRCfRkEnf554kAq4RpMpXeDYPMbqMMnk9VN4", - "asset": { - "amount": "0.00203928", - "fungible": true, - "type": "solana:5eykt4UsFv8P8NJdTREpY1vzqKqZKvdp/slip44:501", - "unit": "SOL" - } - }, - { - "address": "4SwCYJXFDVKnP9CXGb5cFKUtaii9vj4cxjffLuff2PAU", - "asset": { - "amount": "0.024341646", - "fungible": true, - "type": "solana:5eykt4UsFv8P8NJdTREpY1vzqKqZKvdp/slip44:501", - "unit": "SOL" - } - } - ], - "type": "send" - }, - { - "account": "076cbb47-1752-40b0-9314-1f07e7b88ffa", - "chain": "solana:5eykt4UsFv8P8NJdTREpY1vzqKqZKvdp", - "events": [ - { - "status": "confirmed", - "timestamp": 1747335377 - } - ], - "fees": [ - { - "asset": { - "amount": "0.000005", - "fungible": true, - "type": "solana:5eykt4UsFv8P8NJdTREpY1vzqKqZKvdp/slip44:501", - "unit": "SOL" - }, - "type": "base" - }, - { - "asset": { - "amount": "0.000070171", - "fungible": true, - "type": "solana:5eykt4UsFv8P8NJdTREpY1vzqKqZKvdp/slip44:501", - "unit": "SOL" - }, - "type": "priority" - } - ], - "from": [ - { - "address": "CyGir7UdxRCsNXkA89qH1P5p3Zhx11XxsE97WSfNMnLT", - "asset": { - "amount": "0.03207408", - "fungible": true, - "type": "solana:5eykt4UsFv8P8NJdTREpY1vzqKqZKvdp/slip44:501", - "unit": "SOL" - } - } - ], - "id": "33LfknAQsrLC1WzmNybkZWUtuGANRFHNupsQ1YLCnjXGXxbBE93BbVTeKLLdE7Sz3WUdxnFW5HQhPuUayrXyqWky", - "status": "confirmed", - "timestamp": 1747335377, - "to": [ - { - "address": "CyGir7UdxRCsNXkA89qH1P5p3Zhx11XxsE97WSfNMnLT", - "asset": { - "amount": "16.403260987", - "fungible": true, - "type": "solana:5eykt4UsFv8P8NJdTREpY1vzqKqZKvdp/token:HeLp6NuQkmYB4pYWo2zYs22mESHXPQYzXbB8n4V98jwC", - "unit": "AI16Z" - } - } - ], - "type": "swap" - }, - { - "account": "076cbb47-1752-40b0-9314-1f07e7b88ffa", - "chain": "solana:5eykt4UsFv8P8NJdTREpY1vzqKqZKvdp", - "events": [ - { - "status": "confirmed", - "timestamp": 1740630423 - } - ], - "fees": [], - "from": [ - { - "address": "8vq5YU8j3MxgpPMUm1EaAUopikLRzRK8Yf4TNGerF7kL", - "asset": { - "amount": "5.766548", - "fungible": true, - "type": "solana:5eykt4UsFv8P8NJdTREpY1vzqKqZKvdp/token:JUPyiwrYJFskUPiHa7hkeR8VUtAeFoSYbKedZNsDvCN", - "unit": "JUP" - } - }, - { - "address": "B88xH3Jmhq4WEaiRno2mYmsxV35MmgSY45ZmQnbL8yft", - "asset": { - "amount": "0.0005", - "fungible": true, - "type": "solana:5eykt4UsFv8P8NJdTREpY1vzqKqZKvdp/slip44:501", - "unit": "SOL" - } - }, - { - "address": "Ax6pwfMfn2gnvLqePhp6PEbwhMb7oMdquYX8g6atYNUo", - "asset": { - "amount": "0.00203928", - "fungible": true, - "type": "solana:5eykt4UsFv8P8NJdTREpY1vzqKqZKvdp/slip44:501", - "unit": "SOL" - } - } - ], - "id": "5YA8oS1WfrPzZDUt8Pj77NtkbYvx5yVCToDgA1ZzsoAtfuhbzG798GRMf47WknPL1xkD4NNb7cHQW3wER2CNdQfT", - "status": "confirmed", - "timestamp": 1740630423, - "to": [ - { - "address": "CyGir7UdxRCsNXkA89qH1P5p3Zhx11XxsE97WSfNMnLT", - "asset": { - "amount": "5.764819", - "fungible": true, - "type": "solana:5eykt4UsFv8P8NJdTREpY1vzqKqZKvdp/token:JUPyiwrYJFskUPiHa7hkeR8VUtAeFoSYbKedZNsDvCN", - "unit": "JUP" - } - } - ], - "type": "receive" - } - ], - "next": null, - "lastUpdated": 1779126365691 - } - }, - "1a14e831-0c2c-46ce-8e2b-d7d53cbefb63": {}, - "1c2440b0-d05e-4b07-881c-ebb9bce2bbb7": {}, - "1dd2b0a9-a1ea-4308-92e8-303665fd25c5": {}, - "23ce192d-62e7-4d4f-a168-93ae18dc915d": {}, - "2858af66-a9cd-456a-b29c-f2f5148a5ac8": {}, - "3d26ef67-6870-4750-af80-bce53fa4a0af": {}, - "3d379cac-eb60-4b45-8374-370aac2b76c5": {}, - "44ca98ce-b819-4e06-b651-ba146dbe22c1": {}, - "55fe5095-3194-42c2-81d3-5701dcad1924": { - "solana:5eykt4UsFv8P8NJdTREpY1vzqKqZKvdp": { - "lastUpdated": 1778721518793, - "next": null, - "transactions": [ - { - "account": "55fe5095-3194-42c2-81d3-5701dcad1924", - "chain": "solana:5eykt4UsFv8P8NJdTREpY1vzqKqZKvdp", - "events": [ - { - "status": "confirmed", - "timestamp": 1775567131 - } - ], - "fees": [ - { - "asset": { - "amount": "0.000005", - "fungible": true, - "type": "solana:5eykt4UsFv8P8NJdTREpY1vzqKqZKvdp/slip44:501", - "unit": "SOL" - }, - "type": "base" - }, - { - "asset": { - "amount": "0.0000203", - "fungible": true, - "type": "solana:5eykt4UsFv8P8NJdTREpY1vzqKqZKvdp/slip44:501", - "unit": "SOL" - }, - "type": "priority" - } - ], - "from": [], - "id": "4obUTVEN77oMZnL9u9CntDciwfCEYx4Pdhk7Rqw6UfTLnMMuEUuswafGNfZ8PH9o3pj6LY1krgCcsbzm7d7Vm78w", - "status": "confirmed", - "timestamp": 1775567131, - "to": [], - "type": "unknown" - }, - { - "account": "55fe5095-3194-42c2-81d3-5701dcad1924", - "chain": "solana:5eykt4UsFv8P8NJdTREpY1vzqKqZKvdp", - "events": [ - { - "status": "confirmed", - "timestamp": 1775524996 - } - ], - "fees": [ - { - "asset": { - "amount": "0.000005", - "fungible": true, - "type": "solana:5eykt4UsFv8P8NJdTREpY1vzqKqZKvdp/slip44:501", - "unit": "SOL" - }, - "type": "base" - }, - { - "asset": { - "amount": "0.0000203", - "fungible": true, - "type": "solana:5eykt4UsFv8P8NJdTREpY1vzqKqZKvdp/slip44:501", - "unit": "SOL" - }, - "type": "priority" - } - ], - "from": [], - "id": "31pu5QbRtkYJwDNMLwnwMCbeKaPQGQtfv8oV9G4Hh4qL4FfiVoNdugdw8v4DbYJpjS6cwdbQtZYqtayKi2TXaXu2", - "status": "confirmed", - "timestamp": 1775524996, - "to": [], - "type": "unknown" - }, - { - "account": "55fe5095-3194-42c2-81d3-5701dcad1924", - "chain": "solana:5eykt4UsFv8P8NJdTREpY1vzqKqZKvdp", - "events": [ - { - "status": "confirmed", - "timestamp": 1775518451 - } - ], - "fees": [ - { - "asset": { - "amount": "0.000005", - "fungible": true, - "type": "solana:5eykt4UsFv8P8NJdTREpY1vzqKqZKvdp/slip44:501", - "unit": "SOL" - }, - "type": "base" - }, - { - "asset": { - "amount": "0.0000203", - "fungible": true, - "type": "solana:5eykt4UsFv8P8NJdTREpY1vzqKqZKvdp/slip44:501", - "unit": "SOL" - }, - "type": "priority" - } - ], - "from": [], - "id": "31PBWBX9uZBVWzv8aHY3kSm5xV3YvHVXahbb85GAkrU62KViDymRVxKJxC9vYc5jPN8GM86WRfrwUu8VxdQd4rq", - "status": "confirmed", - "timestamp": 1775518451, - "to": [], - "type": "unknown" - }, - { - "account": "55fe5095-3194-42c2-81d3-5701dcad1924", - "chain": "solana:5eykt4UsFv8P8NJdTREpY1vzqKqZKvdp", - "events": [ - { - "status": "confirmed", - "timestamp": 1774368795 - } - ], - "fees": [ - { - "asset": { - "amount": "0.000005", - "fungible": true, - "type": "solana:5eykt4UsFv8P8NJdTREpY1vzqKqZKvdp/slip44:501", - "unit": "SOL" - }, - "type": "base" - }, - { - "asset": { - "amount": "0.000009926", - "fungible": true, - "type": "solana:5eykt4UsFv8P8NJdTREpY1vzqKqZKvdp/slip44:501", - "unit": "SOL" - }, - "type": "priority" - } - ], - "from": [ - { - "address": "8jKM7u4xsyvDpnqL5DQMVrh8AXxZKJPKJw5QsM7KEF8J", - "asset": { - "amount": "12.195221", - "fungible": true, - "type": "solana:5eykt4UsFv8P8NJdTREpY1vzqKqZKvdp/token:EPjFWdd5AufqSSqeM2qN1xzybapC8G4wEGGkZwyTDt1v", - "unit": "USDC" - } - } - ], - "id": "25hxmUkG1mx2BpuD17BWD1caSddVhyPqmqjsgDiajkBni5gij3fXgDfasgqrGwfTtsjQU1eWZ1RH7uwPwkJPnYkY", - "status": "confirmed", - "timestamp": 1774368795, - "to": [ - { - "address": "47YRE7eLAdYzvGqSH1XLg2o8xUtywk7sS5BKv1oR4Y7i", - "asset": { - "amount": "0.106708", - "fungible": true, - "type": "solana:5eykt4UsFv8P8NJdTREpY1vzqKqZKvdp/token:EPjFWdd5AufqSSqeM2qN1xzybapC8G4wEGGkZwyTDt1v", - "unit": "USDC" - } - }, - { - "address": "7uTT8Xi5RWXzy7h9XL244GRgEycDYDhLjr3ZyNdXi8pZ", - "asset": { - "amount": "12.088513", - "fungible": true, - "type": "solana:5eykt4UsFv8P8NJdTREpY1vzqKqZKvdp/token:EPjFWdd5AufqSSqeM2qN1xzybapC8G4wEGGkZwyTDt1v", - "unit": "USDC" - } - } - ], - "type": "send" - }, - { - "account": "55fe5095-3194-42c2-81d3-5701dcad1924", - "chain": "solana:5eykt4UsFv8P8NJdTREpY1vzqKqZKvdp", - "events": [ - { - "status": "confirmed", - "timestamp": 1774368772 - } - ], - "fees": [ - { - "asset": { - "amount": "0.000005", - "fungible": true, - "type": "solana:5eykt4UsFv8P8NJdTREpY1vzqKqZKvdp/slip44:501", - "unit": "SOL" - }, - "type": "base" - }, - { - "asset": { - "amount": "0.000000986", - "fungible": true, - "type": "solana:5eykt4UsFv8P8NJdTREpY1vzqKqZKvdp/slip44:501", - "unit": "SOL" - }, - "type": "priority" - } - ], - "from": [ - { - "address": "8jKM7u4xsyvDpnqL5DQMVrh8AXxZKJPKJw5QsM7KEF8J", - "asset": { - "amount": "0.03", - "fungible": true, - "type": "solana:5eykt4UsFv8P8NJdTREpY1vzqKqZKvdp/slip44:501", - "unit": "SOL" - } - } - ], - "id": "4BKsWpMNQu22sd3K4LYip1mja72hmi1ovrPNw9yfppvz6PPLvrXdjBQeuxqMP8QEMytj7yW3ioMF7hBWQHc5EhR", - "status": "confirmed", - "timestamp": 1774368772, - "to": [ - { - "address": "47YRE7eLAdYzvGqSH1XLg2o8xUtywk7sS5BKv1oR4Y7i", - "asset": { - "amount": "0.0002625", - "fungible": true, - "type": "solana:5eykt4UsFv8P8NJdTREpY1vzqKqZKvdp/slip44:501", - "unit": "SOL" - } - }, - { - "address": "HSDZnRgcdKboym7ghucEKvhqJ3ZQJZkaruWaHKXZLLrg", - "asset": { - "amount": "0.0297375", - "fungible": true, - "type": "solana:5eykt4UsFv8P8NJdTREpY1vzqKqZKvdp/slip44:501", - "unit": "SOL" - } - } - ], - "type": "send" - }, - { - "account": "55fe5095-3194-42c2-81d3-5701dcad1924", - "chain": "solana:5eykt4UsFv8P8NJdTREpY1vzqKqZKvdp", - "events": [ - { - "status": "confirmed", - "timestamp": 1774368739 - } - ], - "fees": [], - "from": [ - { - "address": "E4bX4nCwe2GcKqt9NpofnXVrCeRp37PAMaiZtV9x3kxC", - "asset": { - "amount": "11.152977", - "fungible": true, - "type": "solana:5eykt4UsFv8P8NJdTREpY1vzqKqZKvdp/token:EPjFWdd5AufqSSqeM2qN1xzybapC8G4wEGGkZwyTDt1v", - "unit": "USDC" - } - }, - { - "address": "E4bX4nCwe2GcKqt9NpofnXVrCeRp37PAMaiZtV9x3kxC", - "asset": { - "amount": "0.00120408", - "fungible": true, - "type": "solana:5eykt4UsFv8P8NJdTREpY1vzqKqZKvdp/slip44:501", - "unit": "SOL" - } - } - ], - "id": "5cxkuveQ2pQi9RA99gfHZSrG1HCGdyVVn7VDBUTbiTqqwkKuRFcMmfEDwr1jNRAVY9ubh4Dr4yf9cCZ4uPoUGAeV", - "status": "confirmed", - "timestamp": 1774368739, - "to": [ - { - "address": "8jKM7u4xsyvDpnqL5DQMVrh8AXxZKJPKJw5QsM7KEF8J", - "asset": { - "amount": "11.152977", - "fungible": true, - "type": "solana:5eykt4UsFv8P8NJdTREpY1vzqKqZKvdp/token:EPjFWdd5AufqSSqeM2qN1xzybapC8G4wEGGkZwyTDt1v", - "unit": "USDC" - } - } - ], - "type": "receive" - }, - { - "account": "55fe5095-3194-42c2-81d3-5701dcad1924", - "chain": "solana:5eykt4UsFv8P8NJdTREpY1vzqKqZKvdp", - "events": [ - { - "status": "confirmed", - "timestamp": 1773674032 - } - ], - "fees": [ - { - "asset": { - "amount": "0.000005", - "fungible": true, - "type": "solana:5eykt4UsFv8P8NJdTREpY1vzqKqZKvdp/slip44:501", - "unit": "SOL" - }, - "type": "base" - }, - { - "asset": { - "amount": "0.0000203", - "fungible": true, - "type": "solana:5eykt4UsFv8P8NJdTREpY1vzqKqZKvdp/slip44:501", - "unit": "SOL" - }, - "type": "priority" - } - ], - "from": [], - "id": "2L7xeCALqhhG6kkwymTxugPL3TVKcdSouewxZaDnUu5YuX3dHvFGaxnLfNjqNGRQz74rKcvmLYDYdNojCYyozDs1", - "status": "confirmed", - "timestamp": 1773674032, - "to": [], - "type": "unknown" - }, - { - "account": "55fe5095-3194-42c2-81d3-5701dcad1924", - "chain": "solana:5eykt4UsFv8P8NJdTREpY1vzqKqZKvdp", - "events": [ - { - "status": "confirmed", - "timestamp": 1772733298 - } - ], - "fees": [ - { - "asset": { - "amount": "0.000005", - "fungible": true, - "type": "solana:5eykt4UsFv8P8NJdTREpY1vzqKqZKvdp/slip44:501", - "unit": "SOL" - }, - "type": "base" - }, - { - "asset": { - "amount": "0.000015613", - "fungible": true, - "type": "solana:5eykt4UsFv8P8NJdTREpY1vzqKqZKvdp/slip44:501", - "unit": "SOL" - }, - "type": "priority" - } - ], - "from": [ - { - "address": "8jKM7u4xsyvDpnqL5DQMVrh8AXxZKJPKJw5QsM7KEF8J", - "asset": { - "amount": "1", - "fungible": true, - "type": "solana:5eykt4UsFv8P8NJdTREpY1vzqKqZKvdp/token:EPjFWdd5AufqSSqeM2qN1xzybapC8G4wEGGkZwyTDt1v", - "unit": "USDC" - } - } - ], - "id": "5wb4bfBRr9AZ113FoTf3euyqQN7SuVASVJta4Z36puZtnuuw2YTLKLGpzC33t83DDsiFrkZrB1JyRQYc94PvW1HB", - "status": "confirmed", - "timestamp": 1772733298, - "to": [ - { - "address": "8jKM7u4xsyvDpnqL5DQMVrh8AXxZKJPKJw5QsM7KEF8J", - "asset": { - "amount": "0.011232718", - "fungible": true, - "type": "solana:5eykt4UsFv8P8NJdTREpY1vzqKqZKvdp/slip44:501", - "unit": "SOL" - } - } - ], - "type": "swap" - }, - { - "account": "55fe5095-3194-42c2-81d3-5701dcad1924", - "chain": "solana:5eykt4UsFv8P8NJdTREpY1vzqKqZKvdp", - "events": [ - { - "status": "confirmed", - "timestamp": 1772483631 - } - ], - "fees": [ - { - "asset": { - "amount": "0.000005", - "fungible": true, - "type": "solana:5eykt4UsFv8P8NJdTREpY1vzqKqZKvdp/slip44:501", - "unit": "SOL" - }, - "type": "base" - }, - { - "asset": { - "amount": "0.000003267", - "fungible": true, - "type": "solana:5eykt4UsFv8P8NJdTREpY1vzqKqZKvdp/slip44:501", - "unit": "SOL" - }, - "type": "priority" - } - ], - "from": [ - { - "address": "8jKM7u4xsyvDpnqL5DQMVrh8AXxZKJPKJw5QsM7KEF8J", - "asset": { - "amount": "0.01", - "fungible": true, - "type": "solana:5eykt4UsFv8P8NJdTREpY1vzqKqZKvdp/slip44:501", - "unit": "SOL" - } - } - ], - "id": "Va1aa2KFEbR9dQomfVhRA2cFaEtHVp7NdDzUyVcmJFfr7qJc8kRp7x41uKb6gfJUSvSD6osnrevbV8oNYm6AbWs", - "status": "confirmed", - "timestamp": 1772483631, - "to": [ - { - "address": "47YRE7eLAdYzvGqSH1XLg2o8xUtywk7sS5BKv1oR4Y7i", - "asset": { - "amount": "0.0000875", - "fungible": true, - "type": "solana:5eykt4UsFv8P8NJdTREpY1vzqKqZKvdp/slip44:501", - "unit": "SOL" - } - }, - { - "address": "7uTT8Xi5RWXzy7h9XL244GRgEycDYDhLjr3ZyNdXi8pZ", - "asset": { - "amount": "0.0099125", - "fungible": true, - "type": "solana:5eykt4UsFv8P8NJdTREpY1vzqKqZKvdp/slip44:501", - "unit": "SOL" - } - } - ], - "type": "send" - }, - { - "account": "55fe5095-3194-42c2-81d3-5701dcad1924", - "chain": "solana:5eykt4UsFv8P8NJdTREpY1vzqKqZKvdp", - "events": [ - { - "status": "confirmed", - "timestamp": 1772233537 - } - ], - "fees": [], - "from": [ - { - "address": "F7p3dFrjRTbtRp8FRF6qHLomXbKRBzpvBLjtQcfcgmNe", - "asset": { - "amount": "1.160336", - "fungible": true, - "type": "solana:5eykt4UsFv8P8NJdTREpY1vzqKqZKvdp/token:EPjFWdd5AufqSSqeM2qN1xzybapC8G4wEGGkZwyTDt1v", - "unit": "USDC" - } - } - ], - "id": "2LkkGji2aqRy24v5Tr582PwUZbuJvTxK97wde7KB7Hzf1efZiHpSwdXNSZvu9Mpyb28yoqnk6W79xfVssyBmytzr", - "status": "confirmed", - "timestamp": 1772233537, - "to": [ - { - "address": "8jKM7u4xsyvDpnqL5DQMVrh8AXxZKJPKJw5QsM7KEF8J", - "asset": { - "amount": "1.160336", - "fungible": true, - "type": "solana:5eykt4UsFv8P8NJdTREpY1vzqKqZKvdp/token:EPjFWdd5AufqSSqeM2qN1xzybapC8G4wEGGkZwyTDt1v", - "unit": "USDC" - } - } - ], - "type": "receive" - }, - { - "account": "55fe5095-3194-42c2-81d3-5701dcad1924", - "chain": "solana:5eykt4UsFv8P8NJdTREpY1vzqKqZKvdp", - "events": [ - { - "status": "confirmed", - "timestamp": 1772221243 - } - ], - "fees": [ - { - "asset": { - "amount": "0.000005", - "fungible": true, - "type": "solana:5eykt4UsFv8P8NJdTREpY1vzqKqZKvdp/slip44:501", - "unit": "SOL" - }, - "type": "base" - }, - { - "asset": { - "amount": "0.000002255", - "fungible": true, - "type": "solana:5eykt4UsFv8P8NJdTREpY1vzqKqZKvdp/slip44:501", - "unit": "SOL" - }, - "type": "priority" - } - ], - "from": [ - { - "address": "8jKM7u4xsyvDpnqL5DQMVrh8AXxZKJPKJw5QsM7KEF8J", - "asset": { - "amount": "0.01", - "fungible": true, - "type": "solana:5eykt4UsFv8P8NJdTREpY1vzqKqZKvdp/slip44:501", - "unit": "SOL" - } - } - ], - "id": "3mm2UQ6WzKALFAenzJffNxMS85dEtNgyBufsQ9CLe6hL8SAwupbY9cWqGTr8sj8GtqQYmbAXhgJNBwhmaqMZ2an5", - "status": "confirmed", - "timestamp": 1772221243, - "to": [ - { - "address": "47YRE7eLAdYzvGqSH1XLg2o8xUtywk7sS5BKv1oR4Y7i", - "asset": { - "amount": "0.0000875", - "fungible": true, - "type": "solana:5eykt4UsFv8P8NJdTREpY1vzqKqZKvdp/slip44:501", - "unit": "SOL" - } - }, - { - "address": "7uTT8Xi5RWXzy7h9XL244GRgEycDYDhLjr3ZyNdXi8pZ", - "asset": { - "amount": "0.0099125", - "fungible": true, - "type": "solana:5eykt4UsFv8P8NJdTREpY1vzqKqZKvdp/slip44:501", - "unit": "SOL" - } - } - ], - "type": "send" - }, - { - "account": "55fe5095-3194-42c2-81d3-5701dcad1924", - "chain": "solana:5eykt4UsFv8P8NJdTREpY1vzqKqZKvdp", - "events": [ - { - "status": "confirmed", - "timestamp": 1772221193 - } - ], - "fees": [ - { - "asset": { - "amount": "0.000005", - "fungible": true, - "type": "solana:5eykt4UsFv8P8NJdTREpY1vzqKqZKvdp/slip44:501", - "unit": "SOL" - }, - "type": "base" - }, - { - "asset": { - "amount": "0.000001349", - "fungible": true, - "type": "solana:5eykt4UsFv8P8NJdTREpY1vzqKqZKvdp/slip44:501", - "unit": "SOL" - }, - "type": "priority" - } - ], - "from": [ - { - "address": "8jKM7u4xsyvDpnqL5DQMVrh8AXxZKJPKJw5QsM7KEF8J", - "asset": { - "amount": "0.001", - "fungible": true, - "type": "solana:5eykt4UsFv8P8NJdTREpY1vzqKqZKvdp/slip44:501", - "unit": "SOL" - } - } - ], - "id": "2U8HzdTkKqtGYLSkPzx86kSSuW3DsEKQWe2nnBXFHw1ZfL5q6dDwKNBZCuesPXShvTG6SADEFSHWiZzfhHpNBgUo", - "status": "confirmed", - "timestamp": 1772221193, - "to": [ - { - "address": "47YRE7eLAdYzvGqSH1XLg2o8xUtywk7sS5BKv1oR4Y7i", - "asset": { - "amount": "0.00000875", - "fungible": true, - "type": "solana:5eykt4UsFv8P8NJdTREpY1vzqKqZKvdp/slip44:501", - "unit": "SOL" - } - }, - { - "address": "7uTT8Xi5RWXzy7h9XL244GRgEycDYDhLjr3ZyNdXi8pZ", - "asset": { - "amount": "0.00099125", - "fungible": true, - "type": "solana:5eykt4UsFv8P8NJdTREpY1vzqKqZKvdp/slip44:501", - "unit": "SOL" - } - } - ], - "type": "send" - }, - { - "account": "55fe5095-3194-42c2-81d3-5701dcad1924", - "chain": "solana:5eykt4UsFv8P8NJdTREpY1vzqKqZKvdp", - "events": [ - { - "status": "confirmed", - "timestamp": 1772130665 - } - ], - "fees": [], - "from": [ - { - "address": "F7p3dFrjRTbtRp8FRF6qHLomXbKRBzpvBLjtQcfcgmNe", - "asset": { - "amount": "0.037638862", - "fungible": true, - "type": "solana:5eykt4UsFv8P8NJdTREpY1vzqKqZKvdp/slip44:501", - "unit": "SOL" - } - } - ], - "id": "64rfL2PBGYVM5gdtwCBEXfNtn1LYtiNueAtZ9pzFFcbMrq1KSd6GXNJiKx1R8UBywG94k1W5fNvEjxGnhbAYhu78", - "status": "confirmed", - "timestamp": 1772130665, - "to": [ - { - "address": "8jKM7u4xsyvDpnqL5DQMVrh8AXxZKJPKJw5QsM7KEF8J", - "asset": { - "amount": "0.037638862", - "fungible": true, - "type": "solana:5eykt4UsFv8P8NJdTREpY1vzqKqZKvdp/slip44:501", - "unit": "SOL" - } - } - ], - "type": "receive" - }, - { - "account": "55fe5095-3194-42c2-81d3-5701dcad1924", - "chain": "solana:5eykt4UsFv8P8NJdTREpY1vzqKqZKvdp", - "events": [ - { - "status": "confirmed", - "timestamp": 1772069017 - } - ], - "fees": [ - { - "asset": { - "amount": "0.000005", - "fungible": true, - "type": "solana:5eykt4UsFv8P8NJdTREpY1vzqKqZKvdp/slip44:501", - "unit": "SOL" - }, - "type": "base" - } - ], - "from": [], - "id": "45bvty9hScYb7dVNzrnZ5X8uxrmdv1rxaxqnesumXox5YxU9feBBdQSnezdhuwFfuXDY68N6MiQrrKMQ1Jom2Hbo", - "status": "confirmed", - "timestamp": 1772069017, - "to": [], - "type": "unknown" - }, - { - "account": "55fe5095-3194-42c2-81d3-5701dcad1924", - "chain": "solana:5eykt4UsFv8P8NJdTREpY1vzqKqZKvdp", - "events": [ - { - "status": "confirmed", - "timestamp": 1772068999 - } - ], - "fees": [ - { - "asset": { - "amount": "0.000005", - "fungible": true, - "type": "solana:5eykt4UsFv8P8NJdTREpY1vzqKqZKvdp/slip44:501", - "unit": "SOL" - }, - "type": "base" - }, - { - "asset": { - "amount": "0.00002951", - "fungible": true, - "type": "solana:5eykt4UsFv8P8NJdTREpY1vzqKqZKvdp/slip44:501", - "unit": "SOL" - }, - "type": "priority" - } - ], - "from": [ - { - "address": "AZEKRYWew6zAyoksytTeBFJRHyYdwycPMBn1P2QgfDpQ", - "asset": { - "amount": "0.880624", - "fungible": true, - "type": "solana:5eykt4UsFv8P8NJdTREpY1vzqKqZKvdp/token:EPjFWdd5AufqSSqeM2qN1xzybapC8G4wEGGkZwyTDt1v", - "unit": "USDC" - } - }, - { - "address": "8jKM7u4xsyvDpnqL5DQMVrh8AXxZKJPKJw5QsM7KEF8J", - "asset": { - "amount": "0.01457968", - "fungible": true, - "type": "solana:5eykt4UsFv8P8NJdTREpY1vzqKqZKvdp/slip44:501", - "unit": "SOL" - } - } - ], - "id": "zdKqYEzqVuX1sWhU2FFzdj3WG5H8ynQQK84h3qbhQVjF7Gn7gH9gJZjEci8iXFebJymXWstYFQ1hPQyqks2BMaX", - "status": "confirmed", - "timestamp": 1772068999, - "to": [ - { - "address": "AZEKRYWew6zAyoksytTeBFJRHyYdwycPMBn1P2QgfDpQ", - "asset": { - "amount": "0.0099125", - "fungible": true, - "type": "solana:5eykt4UsFv8P8NJdTREpY1vzqKqZKvdp/token:So11111111111111111111111111111111111111112", - "unit": "" - } - }, - { - "address": "2phX1dsgdGbGvygx6pDG9RGNZ1Jk9ALufhbFV9Ps3rYA", - "asset": { - "amount": "0.880624", - "fungible": true, - "type": "solana:5eykt4UsFv8P8NJdTREpY1vzqKqZKvdp/token:EPjFWdd5AufqSSqeM2qN1xzybapC8G4wEGGkZwyTDt1v", - "unit": "USDC" - } - }, - { - "address": "2phX1dsgdGbGvygx6pDG9RGNZ1Jk9ALufhbFV9Ps3rYA", - "asset": { - "amount": "0.0025404", - "fungible": true, - "type": "solana:5eykt4UsFv8P8NJdTREpY1vzqKqZKvdp/slip44:501", - "unit": "SOL" - } - }, - { - "address": "47YRE7eLAdYzvGqSH1XLg2o8xUtywk7sS5BKv1oR4Y7i", - "asset": { - "amount": "0.0000875", - "fungible": true, - "type": "solana:5eykt4UsFv8P8NJdTREpY1vzqKqZKvdp/slip44:501", - "unit": "SOL" - } - }, - { - "address": "4ddHyNeBSNXmhNAcFTgGVKMye1BX3Su75FFXfD39QG3d", - "asset": { - "amount": "0.00203928", - "fungible": true, - "type": "solana:5eykt4UsFv8P8NJdTREpY1vzqKqZKvdp/slip44:501", - "unit": "SOL" - } - }, - { - "address": "LNgaY8wE76tVikn1fyexrxgr2D4CAKy1LLhCE3B2ZWp", - "asset": { - "amount": "0.0099125", - "fungible": true, - "type": "solana:5eykt4UsFv8P8NJdTREpY1vzqKqZKvdp/slip44:501", - "unit": "SOL" - } - } - ], - "type": "send" - }, - { - "account": "55fe5095-3194-42c2-81d3-5701dcad1924", - "chain": "solana:5eykt4UsFv8P8NJdTREpY1vzqKqZKvdp", - "events": [ - { - "status": "confirmed", - "timestamp": 1772068976 - } - ], - "fees": [], - "from": [ - { - "address": "2DsBrZi5MwiPgJDJjd1yYs8kAUQsEHY6W5okPHhZf5vg", - "asset": { - "amount": "0.01161656", - "fungible": true, - "type": "solana:5eykt4UsFv8P8NJdTREpY1vzqKqZKvdp/token:So11111111111111111111111111111111111111112", - "unit": "" - } - }, - { - "address": "CD4ZRZALgKHJ8N5QQMg5RM8snrke6Mxv3Ey4FhFzFnpg", - "asset": { - "amount": "0.01365584", - "fungible": true, - "type": "solana:5eykt4UsFv8P8NJdTREpY1vzqKqZKvdp/slip44:501", - "unit": "SOL" - } - } - ], - "id": "2uftikMEvPCTREfP2JmfoYZb3ugEFuKchZyDCeePdV1monaNp2Mn4ewK9E2yYrFKTwttiWomh9rnUAsqvqTQvMbC", - "status": "confirmed", - "timestamp": 1772068976, - "to": [ - { - "address": "8jKM7u4xsyvDpnqL5DQMVrh8AXxZKJPKJw5QsM7KEF8J", - "asset": { - "amount": "0.011613076", - "fungible": true, - "type": "solana:5eykt4UsFv8P8NJdTREpY1vzqKqZKvdp/slip44:501", - "unit": "SOL" - } - } - ], - "type": "receive" - }, - { - "account": "55fe5095-3194-42c2-81d3-5701dcad1924", - "chain": "solana:5eykt4UsFv8P8NJdTREpY1vzqKqZKvdp", - "events": [ - { - "status": "confirmed", - "timestamp": 1772068975 - } - ], - "fees": [], - "from": [ - { - "address": "GnWFhrfgciKVoqgAqarwWEQ79NuD2LnRd9EEYaB1kUoc", - "asset": { - "amount": "1.03222", - "fungible": true, - "type": "solana:5eykt4UsFv8P8NJdTREpY1vzqKqZKvdp/token:EPjFWdd5AufqSSqeM2qN1xzybapC8G4wEGGkZwyTDt1v", - "unit": "USDC" - } - }, - { - "address": "51FQwjrvo8J8zXUaKyAznJ5NYpoiTCuqAqCu3HAMB9NZ", - "asset": { - "amount": "0.01161656", - "fungible": true, - "type": "solana:5eykt4UsFv8P8NJdTREpY1vzqKqZKvdp/token:So11111111111111111111111111111111111111112", - "unit": "" - } - }, - { - "address": "FxGiN5NkigicwrnFshZEAUH9C13yrBALmgYxA9x8sfnQ", - "asset": { - "amount": "0.01161656", - "fungible": true, - "type": "solana:5eykt4UsFv8P8NJdTREpY1vzqKqZKvdp/slip44:501", - "unit": "SOL" - } - } - ], - "id": "2diNRdox3fz9of4hzs39soXZvrZZ9dkjT4m7Hiy7aFuKqdLzuZZFTWLRgbvhsFXrKaRZNDwvt2LSi4rq2QyTnwoW", - "status": "confirmed", - "timestamp": 1772068975, - "to": [], - "type": "receive" - }, - { - "account": "55fe5095-3194-42c2-81d3-5701dcad1924", - "chain": "solana:5eykt4UsFv8P8NJdTREpY1vzqKqZKvdp", - "events": [ - { - "status": "confirmed", - "timestamp": 1772068901 - } - ], - "fees": [ - { - "asset": { - "amount": "0.000005", - "fungible": true, - "type": "solana:5eykt4UsFv8P8NJdTREpY1vzqKqZKvdp/slip44:501", - "unit": "SOL" - }, - "type": "base" - }, - { - "asset": { - "amount": "0.000028773", - "fungible": true, - "type": "solana:5eykt4UsFv8P8NJdTREpY1vzqKqZKvdp/slip44:501", - "unit": "SOL" - }, - "type": "priority" - } - ], - "from": [ - { - "address": "8jKM7u4xsyvDpnqL5DQMVrh8AXxZKJPKJw5QsM7KEF8J", - "asset": { - "amount": "0.01", - "fungible": true, - "type": "solana:5eykt4UsFv8P8NJdTREpY1vzqKqZKvdp/slip44:501", - "unit": "SOL" - } - } - ], - "id": "J9k7H8Moe4ZAnt6ALqHtL9UFFxjKEG9ey5Ev6V5ehVcq7Bp7ML1QiD1pYoLqDSsBWx9p5KRoDL4a27sVFYVD1ej", - "status": "confirmed", - "timestamp": 1772068901, - "to": [ - { - "address": "8jKM7u4xsyvDpnqL5DQMVrh8AXxZKJPKJw5QsM7KEF8J", - "asset": { - "amount": "0.881908", - "fungible": true, - "type": "solana:5eykt4UsFv8P8NJdTREpY1vzqKqZKvdp/token:EPjFWdd5AufqSSqeM2qN1xzybapC8G4wEGGkZwyTDt1v", - "unit": "USDC" - } - } - ], - "type": "swap" - }, - { - "account": "55fe5095-3194-42c2-81d3-5701dcad1924", - "chain": "solana:5eykt4UsFv8P8NJdTREpY1vzqKqZKvdp", - "events": [ - { - "status": "confirmed", - "timestamp": 1772068890 - } - ], - "fees": [ - { - "asset": { - "amount": "0.000005", - "fungible": true, - "type": "solana:5eykt4UsFv8P8NJdTREpY1vzqKqZKvdp/slip44:501", - "unit": "SOL" - }, - "type": "base" - }, - { - "asset": { - "amount": "0.000018912", - "fungible": true, - "type": "solana:5eykt4UsFv8P8NJdTREpY1vzqKqZKvdp/slip44:501", - "unit": "SOL" - }, - "type": "priority" - } - ], - "from": [ - { - "address": "8jKM7u4xsyvDpnqL5DQMVrh8AXxZKJPKJw5QsM7KEF8J", - "asset": { - "amount": "1.162623", - "fungible": true, - "type": "solana:5eykt4UsFv8P8NJdTREpY1vzqKqZKvdp/token:EPjFWdd5AufqSSqeM2qN1xzybapC8G4wEGGkZwyTDt1v", - "unit": "USDC" - } - } - ], - "id": "4o7GuVLKDzWX7TFrrtwbz8TZ4k2JUo5mxVub12qvoCKqCDt5gPbwuGAcG5sk8qtYpK6jWrg4HAVcci4Jb7rKCEhp", - "status": "confirmed", - "timestamp": 1772068890, - "to": [ - { - "address": "8jKM7u4xsyvDpnqL5DQMVrh8AXxZKJPKJw5QsM7KEF8J", - "asset": { - "amount": "0.012939875", - "fungible": true, - "type": "solana:5eykt4UsFv8P8NJdTREpY1vzqKqZKvdp/slip44:501", - "unit": "SOL" - } - } - ], - "type": "swap" - }, - { - "account": "55fe5095-3194-42c2-81d3-5701dcad1924", - "chain": "solana:5eykt4UsFv8P8NJdTREpY1vzqKqZKvdp", - "events": [ - { - "status": "confirmed", - "timestamp": 1770149607 - } - ], - "fees": [ - { - "asset": { - "amount": "0.000005", - "fungible": true, - "type": "solana:5eykt4UsFv8P8NJdTREpY1vzqKqZKvdp/slip44:501", - "unit": "SOL" - }, - "type": "base" - }, - { - "asset": { - "amount": "0.000003665", - "fungible": true, - "type": "solana:5eykt4UsFv8P8NJdTREpY1vzqKqZKvdp/slip44:501", - "unit": "SOL" - }, - "type": "priority" - } - ], - "from": [ - { - "address": "8jKM7u4xsyvDpnqL5DQMVrh8AXxZKJPKJw5QsM7KEF8J", - "asset": { - "amount": "0.03", - "fungible": true, - "type": "solana:5eykt4UsFv8P8NJdTREpY1vzqKqZKvdp/slip44:501", - "unit": "SOL" - } - } - ], - "id": "2uTk53wMAd4YohmLiHk99GcyYUj3e7BUZBshqZMJt4UXYT74zRCq95MFmyc4SNuknxsNe8rLr8pTE7cyHQBNyRxi", - "status": "confirmed", - "timestamp": 1770149607, - "to": [ - { - "address": "47YRE7eLAdYzvGqSH1XLg2o8xUtywk7sS5BKv1oR4Y7i", - "asset": { - "amount": "0.0002625", - "fungible": true, - "type": "solana:5eykt4UsFv8P8NJdTREpY1vzqKqZKvdp/slip44:501", - "unit": "SOL" - } - }, - { - "address": "F7p3dFrjRTbtRp8FRF6qHLomXbKRBzpvBLjtQcfcgmNe", - "asset": { - "amount": "0.0297375", - "fungible": true, - "type": "solana:5eykt4UsFv8P8NJdTREpY1vzqKqZKvdp/slip44:501", - "unit": "SOL" - } - } - ], - "type": "send" - }, - { - "account": "55fe5095-3194-42c2-81d3-5701dcad1924", - "chain": "solana:5eykt4UsFv8P8NJdTREpY1vzqKqZKvdp", - "events": [ - { - "status": "confirmed", - "timestamp": 1769733565 - } - ], - "fees": [ - { - "asset": { - "amount": "0.000005", - "fungible": true, - "type": "solana:5eykt4UsFv8P8NJdTREpY1vzqKqZKvdp/slip44:501", - "unit": "SOL" - }, - "type": "base" - }, - { - "asset": { - "amount": "0.000058663", - "fungible": true, - "type": "solana:5eykt4UsFv8P8NJdTREpY1vzqKqZKvdp/slip44:501", - "unit": "SOL" - }, - "type": "priority" - } - ], - "from": [ - { - "address": "8jKM7u4xsyvDpnqL5DQMVrh8AXxZKJPKJw5QsM7KEF8J", - "asset": { - "amount": "0.01", - "fungible": true, - "type": "solana:5eykt4UsFv8P8NJdTREpY1vzqKqZKvdp/slip44:501", - "unit": "SOL" - } - } - ], - "id": "3a7Vj352Dm7aiCx6iwmwo3uTiJ4KwDcx5tML525uYvwmv67w2EcMxM8EasTsRoVaEu1YQXcUCnAV2uDEKa5UAQTF", - "status": "confirmed", - "timestamp": 1769733565, - "to": [ - { - "address": "8jKM7u4xsyvDpnqL5DQMVrh8AXxZKJPKJw5QsM7KEF8J", - "asset": { - "amount": "1.162623", - "fungible": true, - "type": "solana:5eykt4UsFv8P8NJdTREpY1vzqKqZKvdp/token:EPjFWdd5AufqSSqeM2qN1xzybapC8G4wEGGkZwyTDt1v", - "unit": "USDC" - } - } - ], - "type": "swap" - }, - { - "account": "55fe5095-3194-42c2-81d3-5701dcad1924", - "chain": "solana:5eykt4UsFv8P8NJdTREpY1vzqKqZKvdp", - "events": [ - { - "status": "confirmed", - "timestamp": 1769194037 - } - ], - "fees": [ - { - "asset": { - "amount": "0.000005", - "fungible": true, - "type": "solana:5eykt4UsFv8P8NJdTREpY1vzqKqZKvdp/slip44:501", - "unit": "SOL" - }, - "type": "base" - }, - { - "asset": { - "amount": "0.000009395", - "fungible": true, - "type": "solana:5eykt4UsFv8P8NJdTREpY1vzqKqZKvdp/slip44:501", - "unit": "SOL" - }, - "type": "priority" - } - ], - "from": [ - { - "address": "8jKM7u4xsyvDpnqL5DQMVrh8AXxZKJPKJw5QsM7KEF8J", - "asset": { - "amount": "2.55546", - "fungible": true, - "type": "solana:5eykt4UsFv8P8NJdTREpY1vzqKqZKvdp/token:EPjFWdd5AufqSSqeM2qN1xzybapC8G4wEGGkZwyTDt1v", - "unit": "USDC" - } - } - ], - "id": "5WyKzT2EFi5mtoh4R7f4pmWbdWNrsZYEmrX2fyGU4AEfyWgnZxUezDHnQBUK3iLbSpKWK3J5RQzi81CwXuNqEEzf", - "status": "confirmed", - "timestamp": 1769194037, - "to": [ - { - "address": "8jKM7u4xsyvDpnqL5DQMVrh8AXxZKJPKJw5QsM7KEF8J", - "asset": { - "amount": "0.019626284", - "fungible": true, - "type": "solana:5eykt4UsFv8P8NJdTREpY1vzqKqZKvdp/slip44:501", - "unit": "SOL" - } - } - ], - "type": "swap" - }, - { - "account": "55fe5095-3194-42c2-81d3-5701dcad1924", - "chain": "solana:5eykt4UsFv8P8NJdTREpY1vzqKqZKvdp", - "events": [ - { - "status": "confirmed", - "timestamp": 1769194017 - } - ], - "fees": [ - { - "asset": { - "amount": "0.000005", - "fungible": true, - "type": "solana:5eykt4UsFv8P8NJdTREpY1vzqKqZKvdp/slip44:501", - "unit": "SOL" - }, - "type": "base" - }, - { - "asset": { - "amount": "0.000018861", - "fungible": true, - "type": "solana:5eykt4UsFv8P8NJdTREpY1vzqKqZKvdp/slip44:501", - "unit": "SOL" - }, - "type": "priority" - } - ], - "from": [ - { - "address": "8jKM7u4xsyvDpnqL5DQMVrh8AXxZKJPKJw5QsM7KEF8J", - "asset": { - "amount": "0.02", - "fungible": true, - "type": "solana:5eykt4UsFv8P8NJdTREpY1vzqKqZKvdp/slip44:501", - "unit": "SOL" - } - } - ], - "id": "5ZauwaZnuXipxcjhS4xV5Tmtyw7P6Yk7FiqBeoosAs8mPgLRVgsBZfitHaiqvZP2WkWPGL1RpJoTCEPCeqHrM3AB", - "status": "confirmed", - "timestamp": 1769194017, - "to": [ - { - "address": "8jKM7u4xsyvDpnqL5DQMVrh8AXxZKJPKJw5QsM7KEF8J", - "asset": { - "amount": "2.55546", - "fungible": true, - "type": "solana:5eykt4UsFv8P8NJdTREpY1vzqKqZKvdp/token:EPjFWdd5AufqSSqeM2qN1xzybapC8G4wEGGkZwyTDt1v", - "unit": "USDC" - } - } - ], - "type": "swap" - }, - { - "account": "55fe5095-3194-42c2-81d3-5701dcad1924", - "chain": "solana:5eykt4UsFv8P8NJdTREpY1vzqKqZKvdp", - "events": [ - { - "status": "confirmed", - "timestamp": 1769192383 - } - ], - "fees": [ - { - "asset": { - "amount": "0.000005", - "fungible": true, - "type": "solana:5eykt4UsFv8P8NJdTREpY1vzqKqZKvdp/slip44:501", - "unit": "SOL" - }, - "type": "base" - }, - { - "asset": { - "amount": "0.000003581", - "fungible": true, - "type": "solana:5eykt4UsFv8P8NJdTREpY1vzqKqZKvdp/slip44:501", - "unit": "SOL" - }, - "type": "priority" - } - ], - "from": [ - { - "address": "8jKM7u4xsyvDpnqL5DQMVrh8AXxZKJPKJw5QsM7KEF8J", - "asset": { - "amount": "2.718964", - "fungible": true, - "type": "solana:5eykt4UsFv8P8NJdTREpY1vzqKqZKvdp/token:EPjFWdd5AufqSSqeM2qN1xzybapC8G4wEGGkZwyTDt1v", - "unit": "USDC" - } - } - ], - "id": "65mwzRE9RvKncawQgS6h6Wu49UJ7EMt2VJHF2XymaMCNcNHtg3WirdreohZNhXY8nNoJJmFgKEZ2nPeg774jpryU", - "status": "confirmed", - "timestamp": 1769192383, - "to": [ - { - "address": "8jKM7u4xsyvDpnqL5DQMVrh8AXxZKJPKJw5QsM7KEF8J", - "asset": { - "amount": "0.020914403", - "fungible": true, - "type": "solana:5eykt4UsFv8P8NJdTREpY1vzqKqZKvdp/slip44:501", - "unit": "SOL" - } - } - ], - "type": "swap" - }, - { - "account": "55fe5095-3194-42c2-81d3-5701dcad1924", - "chain": "solana:5eykt4UsFv8P8NJdTREpY1vzqKqZKvdp", - "events": [ - { - "status": "confirmed", - "timestamp": 1769080978 - } - ], - "fees": [ - { - "asset": { - "amount": "0.000005", - "fungible": true, - "type": "solana:5eykt4UsFv8P8NJdTREpY1vzqKqZKvdp/slip44:501", - "unit": "SOL" - }, - "type": "base" - }, - { - "asset": { - "amount": "0.0000203", - "fungible": true, - "type": "solana:5eykt4UsFv8P8NJdTREpY1vzqKqZKvdp/slip44:501", - "unit": "SOL" - }, - "type": "priority" - } - ], - "from": [], - "id": "4jkAnMNChYhLa4xbU76GAszZXKKk2iRWEEPpHMvcy9YFAK8Yjo9NTPbrmBpidhjAvf2F7fDRiQ9Za7dmbcjeTvF8", - "status": "confirmed", - "timestamp": 1769080978, - "to": [], - "type": "unknown" - }, - { - "account": "55fe5095-3194-42c2-81d3-5701dcad1924", - "chain": "solana:5eykt4UsFv8P8NJdTREpY1vzqKqZKvdp", - "events": [ - { - "status": "confirmed", - "timestamp": 1768994563 - } - ], - "fees": [ - { - "asset": { - "amount": "0.000005", - "fungible": true, - "type": "solana:5eykt4UsFv8P8NJdTREpY1vzqKqZKvdp/slip44:501", - "unit": "SOL" - }, - "type": "base" - }, - { - "asset": { - "amount": "0.0000203", - "fungible": true, - "type": "solana:5eykt4UsFv8P8NJdTREpY1vzqKqZKvdp/slip44:501", - "unit": "SOL" - }, - "type": "priority" - } - ], - "from": [], - "id": "4EBQYHaSxUHcDESCCxUds82WybpbmpttgCzhKnfJWPCWou3U3X92FN5uUaZe5v7wzRTGLSDMJjq3V4yTKwj5pEJ4", - "status": "confirmed", - "timestamp": 1768994563, - "to": [], - "type": "unknown" - }, - { - "account": "55fe5095-3194-42c2-81d3-5701dcad1924", - "chain": "solana:5eykt4UsFv8P8NJdTREpY1vzqKqZKvdp", - "events": [ - { - "status": "confirmed", - "timestamp": 1768908088 - } - ], - "fees": [ - { - "asset": { - "amount": "0.000005", - "fungible": true, - "type": "solana:5eykt4UsFv8P8NJdTREpY1vzqKqZKvdp/slip44:501", - "unit": "SOL" - }, - "type": "base" - }, - { - "asset": { - "amount": "0.0000203", - "fungible": true, - "type": "solana:5eykt4UsFv8P8NJdTREpY1vzqKqZKvdp/slip44:501", - "unit": "SOL" - }, - "type": "priority" - } - ], - "from": [], - "id": "3XR7GL9zkcHseHR4wfgFv12sXybCRVrtCV6sXZ2KcxUaBQAk1vcxfPFnVHTiDpCfkQta6TAv5T47T4mKLKproBqc", - "status": "confirmed", - "timestamp": 1768908088, - "to": [], - "type": "unknown" - }, - { - "account": "55fe5095-3194-42c2-81d3-5701dcad1924", - "chain": "solana:5eykt4UsFv8P8NJdTREpY1vzqKqZKvdp", - "events": [ - { - "status": "confirmed", - "timestamp": 1768821738 - } - ], - "fees": [ - { - "asset": { - "amount": "0.000005", - "fungible": true, - "type": "solana:5eykt4UsFv8P8NJdTREpY1vzqKqZKvdp/slip44:501", - "unit": "SOL" - }, - "type": "base" - }, - { - "asset": { - "amount": "0.0000203", - "fungible": true, - "type": "solana:5eykt4UsFv8P8NJdTREpY1vzqKqZKvdp/slip44:501", - "unit": "SOL" - }, - "type": "priority" - } - ], - "from": [], - "id": "4CLnKgdXZM1bYp4V2J19MaT9q8XQvVdHY4dxcQ2yeD6SVDPcQsxrkVQt9tUMnBCaFs764X3tZZAkoj37hSdrJaTC", - "status": "confirmed", - "timestamp": 1768821738, - "to": [], - "type": "unknown" - }, - { - "account": "55fe5095-3194-42c2-81d3-5701dcad1924", - "chain": "solana:5eykt4UsFv8P8NJdTREpY1vzqKqZKvdp", - "events": [ - { - "status": "confirmed", - "timestamp": 1768735293 - } - ], - "fees": [ - { - "asset": { - "amount": "0.000005", - "fungible": true, - "type": "solana:5eykt4UsFv8P8NJdTREpY1vzqKqZKvdp/slip44:501", - "unit": "SOL" - }, - "type": "base" - }, - { - "asset": { - "amount": "0.0000203", - "fungible": true, - "type": "solana:5eykt4UsFv8P8NJdTREpY1vzqKqZKvdp/slip44:501", - "unit": "SOL" - }, - "type": "priority" - } - ], - "from": [], - "id": "YhfbDt31RvkeYBSph82rdPbZVVz1WfHPi2MhcWtkWW2a8jXZsveWCBDKWxQhbc3n5BN1LGCYxQEn1EC2232DGcM", - "status": "confirmed", - "timestamp": 1768735293, - "to": [], - "type": "unknown" - }, - { - "account": "55fe5095-3194-42c2-81d3-5701dcad1924", - "chain": "solana:5eykt4UsFv8P8NJdTREpY1vzqKqZKvdp", - "events": [ - { - "status": "confirmed", - "timestamp": 1765992554 - } - ], - "fees": [ - { - "asset": { - "amount": "0.000005", - "fungible": true, - "type": "solana:5eykt4UsFv8P8NJdTREpY1vzqKqZKvdp/slip44:501", - "unit": "SOL" - }, - "type": "base" - }, - { - "asset": { - "amount": "0.000053753", - "fungible": true, - "type": "solana:5eykt4UsFv8P8NJdTREpY1vzqKqZKvdp/slip44:501", - "unit": "SOL" - }, - "type": "priority" - } - ], - "from": [ - { - "address": "8jKM7u4xsyvDpnqL5DQMVrh8AXxZKJPKJw5QsM7KEF8J", - "asset": { - "amount": "0.0221", - "fungible": true, - "type": "solana:5eykt4UsFv8P8NJdTREpY1vzqKqZKvdp/slip44:501", - "unit": "SOL" - } - } - ], - "id": "3ZaCc8m1XWksFqe8QgtERuo8g7HnKDqXLNnRJ5DP4caQf7W458tHy6KdWoL5oXkoUbkZEThnKvtnD6iJF4G7U7a6", - "status": "confirmed", - "timestamp": 1765992554, - "to": [ - { - "address": "8jKM7u4xsyvDpnqL5DQMVrh8AXxZKJPKJw5QsM7KEF8J", - "asset": { - "amount": "2.717222", - "fungible": true, - "type": "solana:5eykt4UsFv8P8NJdTREpY1vzqKqZKvdp/token:EPjFWdd5AufqSSqeM2qN1xzybapC8G4wEGGkZwyTDt1v", - "unit": "USDC" - } - } - ], - "type": "swap" - }, - { - "account": "55fe5095-3194-42c2-81d3-5701dcad1924", - "chain": "solana:5eykt4UsFv8P8NJdTREpY1vzqKqZKvdp", - "events": [ - { - "status": "confirmed", - "timestamp": 1764971969 - } - ], - "fees": [ - { - "asset": { - "amount": "0.000005", - "fungible": true, - "type": "solana:5eykt4UsFv8P8NJdTREpY1vzqKqZKvdp/slip44:501", - "unit": "SOL" - }, - "type": "base" - }, - { - "asset": { - "amount": "0.000062923", - "fungible": true, - "type": "solana:5eykt4UsFv8P8NJdTREpY1vzqKqZKvdp/slip44:501", - "unit": "SOL" - }, - "type": "priority" - } - ], - "from": [ - { - "address": "8jKM7u4xsyvDpnqL5DQMVrh8AXxZKJPKJw5QsM7KEF8J", - "asset": { - "amount": "0.001", - "fungible": true, - "type": "solana:5eykt4UsFv8P8NJdTREpY1vzqKqZKvdp/slip44:501", - "unit": "SOL" - } - } - ], - "id": "3kTGzVLZ7KexWA5TvW6aJPKiNXLKBKXNn8aeuumdPf3rsNKNVQQahPfh62JKBjNxSnuLMhD5pSX4JQdjpszEiLGX", - "status": "confirmed", - "timestamp": 1764971969, - "to": [ - { - "address": "8jKM7u4xsyvDpnqL5DQMVrh8AXxZKJPKJw5QsM7KEF8J", - "asset": { - "amount": "0.131293", - "fungible": true, - "type": "solana:5eykt4UsFv8P8NJdTREpY1vzqKqZKvdp/token:EPjFWdd5AufqSSqeM2qN1xzybapC8G4wEGGkZwyTDt1v", - "unit": "USDC" - } - } - ], - "type": "swap" - }, - { - "account": "55fe5095-3194-42c2-81d3-5701dcad1924", - "chain": "solana:5eykt4UsFv8P8NJdTREpY1vzqKqZKvdp", - "events": [ - { - "status": "confirmed", - "timestamp": 1756858325 - } - ], - "fees": [ - { - "asset": { - "amount": "0.000005", - "fungible": true, - "type": "solana:5eykt4UsFv8P8NJdTREpY1vzqKqZKvdp/slip44:501", - "unit": "SOL" - }, - "type": "base" - }, - { - "asset": { - "amount": "0.000043272", - "fungible": true, - "type": "solana:5eykt4UsFv8P8NJdTREpY1vzqKqZKvdp/slip44:501", - "unit": "SOL" - }, - "type": "priority" - } - ], - "from": [ - { - "address": "8jKM7u4xsyvDpnqL5DQMVrh8AXxZKJPKJw5QsM7KEF8J", - "asset": { - "amount": "0.454449", - "fungible": true, - "type": "solana:5eykt4UsFv8P8NJdTREpY1vzqKqZKvdp/token:27G8MtK7VtTcCHkpASjSDdkWWYfoqT6ggEuKidVJidD4", - "unit": "JLP" - } - } - ], - "id": "3QKR2R4MDhwnxGZEzpdvkpy8n9QppkSJ7XnB4mF4ETNqfHeN6Xfy68Lotb9E3CBqguoY4BVoT1kHEtzBNkb2u4yy", - "status": "confirmed", - "timestamp": 1756858325, - "to": [ - { - "address": "8jKM7u4xsyvDpnqL5DQMVrh8AXxZKJPKJw5QsM7KEF8J", - "asset": { - "amount": "2.465849", - "fungible": true, - "type": "solana:5eykt4UsFv8P8NJdTREpY1vzqKqZKvdp/token:EPjFWdd5AufqSSqeM2qN1xzybapC8G4wEGGkZwyTDt1v", - "unit": "USDC" - } - } - ], - "type": "swap" - }, - { - "account": "55fe5095-3194-42c2-81d3-5701dcad1924", - "chain": "solana:5eykt4UsFv8P8NJdTREpY1vzqKqZKvdp", - "events": [ - { - "status": "confirmed", - "timestamp": 1750361827 - } - ], - "fees": [ - { - "asset": { - "amount": "0.000005", - "fungible": true, - "type": "solana:5eykt4UsFv8P8NJdTREpY1vzqKqZKvdp/slip44:501", - "unit": "SOL" - }, - "type": "base" - }, - { - "asset": { - "amount": "0.000008492", - "fungible": true, - "type": "solana:5eykt4UsFv8P8NJdTREpY1vzqKqZKvdp/slip44:501", - "unit": "SOL" - }, - "type": "priority" - } - ], - "from": [ - { - "address": "8jKM7u4xsyvDpnqL5DQMVrh8AXxZKJPKJw5QsM7KEF8J", - "asset": { - "amount": "2", - "fungible": true, - "type": "solana:5eykt4UsFv8P8NJdTREpY1vzqKqZKvdp/token:EPjFWdd5AufqSSqeM2qN1xzybapC8G4wEGGkZwyTDt1v", - "unit": "USDC" - } - } - ], - "id": "3hN1i9gR1NCvmHggJWaDD1suPzJKhEtqakVqbEiFXSLjbf6J7fSeNpYVif95opSY9wppyiZji8tXQFxeSe56GzEf", - "status": "confirmed", - "timestamp": 1750361827, - "to": [ - { - "address": "8jKM7u4xsyvDpnqL5DQMVrh8AXxZKJPKJw5QsM7KEF8J", - "asset": { - "amount": "0.454449", - "fungible": true, - "type": "solana:5eykt4UsFv8P8NJdTREpY1vzqKqZKvdp/token:27G8MtK7VtTcCHkpASjSDdkWWYfoqT6ggEuKidVJidD4", - "unit": "JLP" - } - } - ], - "type": "swap" - }, - { - "account": "55fe5095-3194-42c2-81d3-5701dcad1924", - "chain": "solana:5eykt4UsFv8P8NJdTREpY1vzqKqZKvdp", - "events": [ - { - "status": "confirmed", - "timestamp": 1750361531 - } - ], - "fees": [ - { - "asset": { - "amount": "0.000005", - "fungible": true, - "type": "solana:5eykt4UsFv8P8NJdTREpY1vzqKqZKvdp/slip44:501", - "unit": "SOL" - }, - "type": "base" - }, - { - "asset": { - "amount": "0.00009833", - "fungible": true, - "type": "solana:5eykt4UsFv8P8NJdTREpY1vzqKqZKvdp/slip44:501", - "unit": "SOL" - }, - "type": "priority" - } - ], - "from": [ - { - "address": "8jKM7u4xsyvDpnqL5DQMVrh8AXxZKJPKJw5QsM7KEF8J", - "asset": { - "amount": "0.03", - "fungible": true, - "type": "solana:5eykt4UsFv8P8NJdTREpY1vzqKqZKvdp/slip44:501", - "unit": "SOL" - } - } - ], - "id": "5cN15j9RRZX2nTjFmQvJCV8xwmHQ1MfNnApQobQ2D1XWwHykHXus7ij8cdtkAuyZ95pqyv8GEn8seAJusduRppcf", - "status": "confirmed", - "timestamp": 1750361531, - "to": [ - { - "address": "8jKM7u4xsyvDpnqL5DQMVrh8AXxZKJPKJw5QsM7KEF8J", - "asset": { - "amount": "4.326183", - "fungible": true, - "type": "solana:5eykt4UsFv8P8NJdTREpY1vzqKqZKvdp/token:EPjFWdd5AufqSSqeM2qN1xzybapC8G4wEGGkZwyTDt1v", - "unit": "USDC" - } - } - ], - "type": "swap" - }, - { - "account": "55fe5095-3194-42c2-81d3-5701dcad1924", - "chain": "solana:5eykt4UsFv8P8NJdTREpY1vzqKqZKvdp", - "events": [ - { - "status": "confirmed", - "timestamp": 1750360985 - } - ], - "fees": [ - { - "asset": { - "amount": "0.000005", - "fungible": true, - "type": "solana:5eykt4UsFv8P8NJdTREpY1vzqKqZKvdp/slip44:501", - "unit": "SOL" - }, - "type": "base" - }, - { - "asset": { - "amount": "0.000016887", - "fungible": true, - "type": "solana:5eykt4UsFv8P8NJdTREpY1vzqKqZKvdp/slip44:501", - "unit": "SOL" - }, - "type": "priority" - } - ], - "from": [ - { - "address": "8jKM7u4xsyvDpnqL5DQMVrh8AXxZKJPKJw5QsM7KEF8J", - "asset": { - "amount": "8948254.71", - "fungible": true, - "type": "solana:5eykt4UsFv8P8NJdTREpY1vzqKqZKvdp/token:7atgF8KQo4wJrD5ATGX7t1V2zVvykPJbFfNeVf1icFv1", - "unit": "$CWIF" - } - } - ], - "id": "4BaYw5wtJYqJTSKKv2NPUbEH2qeRsr14xDEdzQTuvgB8i5sLmuZcvakn6HfuE9m6M12456XagZUgxPMDet5YeRrQ", - "status": "confirmed", - "timestamp": 1750360985, - "to": [ - { - "address": "8jKM7u4xsyvDpnqL5DQMVrh8AXxZKJPKJw5QsM7KEF8J", - "asset": { - "amount": "0.657835", - "fungible": true, - "type": "solana:5eykt4UsFv8P8NJdTREpY1vzqKqZKvdp/token:EPjFWdd5AufqSSqeM2qN1xzybapC8G4wEGGkZwyTDt1v", - "unit": "USDC" - } - } - ], - "type": "swap" - }, - { - "account": "55fe5095-3194-42c2-81d3-5701dcad1924", - "chain": "solana:5eykt4UsFv8P8NJdTREpY1vzqKqZKvdp", - "events": [ - { - "status": "confirmed", - "timestamp": 1750350731 - } - ], - "fees": [ - { - "asset": { - "amount": "0.000005", - "fungible": true, - "type": "solana:5eykt4UsFv8P8NJdTREpY1vzqKqZKvdp/slip44:501", - "unit": "SOL" - }, - "type": "base" - }, - { - "asset": { - "amount": "0.000005845", - "fungible": true, - "type": "solana:5eykt4UsFv8P8NJdTREpY1vzqKqZKvdp/slip44:501", - "unit": "SOL" - }, - "type": "priority" - } - ], - "from": [ - { - "address": "8jKM7u4xsyvDpnqL5DQMVrh8AXxZKJPKJw5QsM7KEF8J", - "asset": { - "amount": "3.600231", - "fungible": true, - "type": "solana:5eykt4UsFv8P8NJdTREpY1vzqKqZKvdp/token:9zNQRsGLjNKwCUU5Gq5LR8beUCPzQMVMqKAi3SSZh54u", - "unit": "FDUSD" - } - } - ], - "id": "3Axy11JYEzJ5SXLFubHEMELGSBXhv7G7mtKqThNGCRTCam8Y1kQ333WAL5EXGFacA18A9Sh59XA3eSv7KkdYsq6Z", - "status": "confirmed", - "timestamp": 1750350731, - "to": [ - { - "address": "8jKM7u4xsyvDpnqL5DQMVrh8AXxZKJPKJw5QsM7KEF8J", - "asset": { - "amount": "3.55998", - "fungible": true, - "type": "solana:5eykt4UsFv8P8NJdTREpY1vzqKqZKvdp/token:EPjFWdd5AufqSSqeM2qN1xzybapC8G4wEGGkZwyTDt1v", - "unit": "USDC" - } - } - ], - "type": "swap" - }, - { - "account": "55fe5095-3194-42c2-81d3-5701dcad1924", - "chain": "solana:5eykt4UsFv8P8NJdTREpY1vzqKqZKvdp", - "events": [ - { - "status": "confirmed", - "timestamp": 1750350543 - } - ], - "fees": [ - { - "asset": { - "amount": "0.000005", - "fungible": true, - "type": "solana:5eykt4UsFv8P8NJdTREpY1vzqKqZKvdp/slip44:501", - "unit": "SOL" - }, - "type": "base" - }, - { - "asset": { - "amount": "0.000010235", - "fungible": true, - "type": "solana:5eykt4UsFv8P8NJdTREpY1vzqKqZKvdp/slip44:501", - "unit": "SOL" - }, - "type": "priority" - } - ], - "from": [ - { - "address": "8jKM7u4xsyvDpnqL5DQMVrh8AXxZKJPKJw5QsM7KEF8J", - "asset": { - "amount": "2.708102", - "fungible": true, - "type": "solana:5eykt4UsFv8P8NJdTREpY1vzqKqZKvdp/token:EPjFWdd5AufqSSqeM2qN1xzybapC8G4wEGGkZwyTDt1v", - "unit": "USDC" - } - } - ], - "id": "49EeDcP7kC6Kiw8g8eZcaA13CZazwG1xLrn6btLNZBYuFcZQXbTimWx2xvhiALYyrfSBTaBUd8xGsbK8bMa53RVV", - "status": "confirmed", - "timestamp": 1750350543, - "to": [ - { - "address": "8jKM7u4xsyvDpnqL5DQMVrh8AXxZKJPKJw5QsM7KEF8J", - "asset": { - "amount": "2.689561", - "fungible": true, - "type": "solana:5eykt4UsFv8P8NJdTREpY1vzqKqZKvdp/token:9zNQRsGLjNKwCUU5Gq5LR8beUCPzQMVMqKAi3SSZh54u", - "unit": "FDUSD" - } - } - ], - "type": "swap" - }, - { - "account": "55fe5095-3194-42c2-81d3-5701dcad1924", - "chain": "solana:5eykt4UsFv8P8NJdTREpY1vzqKqZKvdp", - "events": [ - { - "status": "confirmed", - "timestamp": 1750199234 - } - ], - "fees": [ - { - "asset": { - "amount": "0.000005", - "fungible": true, - "type": "solana:5eykt4UsFv8P8NJdTREpY1vzqKqZKvdp/slip44:501", - "unit": "SOL" - }, - "type": "base" - }, - { - "asset": { - "amount": "0.000042857", - "fungible": true, - "type": "solana:5eykt4UsFv8P8NJdTREpY1vzqKqZKvdp/slip44:501", - "unit": "SOL" - }, - "type": "priority" - } - ], - "from": [ - { - "address": "8jKM7u4xsyvDpnqL5DQMVrh8AXxZKJPKJw5QsM7KEF8J", - "asset": { - "amount": "1.965154", - "fungible": true, - "type": "solana:5eykt4UsFv8P8NJdTREpY1vzqKqZKvdp/token:9zNQRsGLjNKwCUU5Gq5LR8beUCPzQMVMqKAi3SSZh54u", - "unit": "FDUSD" - } - }, - { - "address": "F5oK5zdyUktrzTgSJdBFL73xUdCLcHfHfHdBcpydhXoK", - "asset": { - "amount": "1.960756", - "fungible": true, - "type": "solana:5eykt4UsFv8P8NJdTREpY1vzqKqZKvdp/token:Es9vMFrzaCERmJfrF4H2FYD4KCoNkY11McCe8BenwNYB", - "unit": "USDT" - } - }, - { - "address": "AHhiY6GAKfBkvseQDQbBC7qp3fTRNpyZccuEdYSdPFEf", - "asset": { - "amount": "1.960286", - "fungible": true, - "type": "solana:5eykt4UsFv8P8NJdTREpY1vzqKqZKvdp/token:EPjFWdd5AufqSSqeM2qN1xzybapC8G4wEGGkZwyTDt1v", - "unit": "USDC" - } - }, - { - "address": "5LAzU2jn92pJpUbBUSurT7i4GgSPkrrWbqfchUNU8fyB", - "asset": { - "amount": "0.013266262", - "fungible": true, - "type": "solana:5eykt4UsFv8P8NJdTREpY1vzqKqZKvdp/token:So11111111111111111111111111111111111111112", - "unit": "" - } - }, - { - "address": "3GdPJYjhRkHj2nUzsvFNz45ieaCWUswuoe7C8Sjjea4c", - "asset": { - "amount": "0.013266262", - "fungible": true, - "type": "solana:5eykt4UsFv8P8NJdTREpY1vzqKqZKvdp/slip44:501", - "unit": "SOL" - } - } - ], - "id": "2tVftvvoUns4S52SBHnnQgEMiBgZtcGBKUX3BiMusCWAs3uwJg4iZkkagrx7Vfy3e7xxkYxaYBgu25tyTU7fsGnJ", - "status": "confirmed", - "timestamp": 1750199234, - "to": [ - { - "address": "F7p3dFrjRTbtRp8FRF6qHLomXbKRBzpvBLjtQcfcgmNe", - "asset": { - "amount": "1.960286", - "fungible": true, - "type": "solana:5eykt4UsFv8P8NJdTREpY1vzqKqZKvdp/token:EPjFWdd5AufqSSqeM2qN1xzybapC8G4wEGGkZwyTDt1v", - "unit": "USDC" - } - }, - { - "address": "F5oK5zdyUktrzTgSJdBFL73xUdCLcHfHfHdBcpydhXoK", - "asset": { - "amount": "1.965154", - "fungible": true, - "type": "solana:5eykt4UsFv8P8NJdTREpY1vzqKqZKvdp/token:9zNQRsGLjNKwCUU5Gq5LR8beUCPzQMVMqKAi3SSZh54u", - "unit": "FDUSD" - } - }, - { - "address": "AHhiY6GAKfBkvseQDQbBC7qp3fTRNpyZccuEdYSdPFEf", - "asset": { - "amount": "0.013266262", - "fungible": true, - "type": "solana:5eykt4UsFv8P8NJdTREpY1vzqKqZKvdp/token:So11111111111111111111111111111111111111112", - "unit": "" - } - }, - { - "address": "5LAzU2jn92pJpUbBUSurT7i4GgSPkrrWbqfchUNU8fyB", - "asset": { - "amount": "1.960756", - "fungible": true, - "type": "solana:5eykt4UsFv8P8NJdTREpY1vzqKqZKvdp/token:Es9vMFrzaCERmJfrF4H2FYD4KCoNkY11McCe8BenwNYB", - "unit": "USDT" - } - }, - { - "address": "Cu6yvJiPeLxV6FDoyD8P8NxaSjz5iC2zr6i9GfjyyN5f", - "asset": { - "amount": "0.013266262", - "fungible": true, - "type": "solana:5eykt4UsFv8P8NJdTREpY1vzqKqZKvdp/slip44:501", - "unit": "SOL" - } - } - ], - "type": "send" - }, - { - "account": "55fe5095-3194-42c2-81d3-5701dcad1924", - "chain": "solana:5eykt4UsFv8P8NJdTREpY1vzqKqZKvdp", - "events": [ - { - "status": "confirmed", - "timestamp": 1750195801 - } - ], - "fees": [ - { - "asset": { - "amount": "0.000005", - "fungible": true, - "type": "solana:5eykt4UsFv8P8NJdTREpY1vzqKqZKvdp/slip44:501", - "unit": "SOL" - }, - "type": "base" - }, - { - "asset": { - "amount": "0.000044045", - "fungible": true, - "type": "solana:5eykt4UsFv8P8NJdTREpY1vzqKqZKvdp/slip44:501", - "unit": "SOL" - }, - "type": "priority" - } - ], - "from": [ - { - "address": "8jKM7u4xsyvDpnqL5DQMVrh8AXxZKJPKJw5QsM7KEF8J", - "asset": { - "amount": "1.982499", - "fungible": true, - "type": "solana:5eykt4UsFv8P8NJdTREpY1vzqKqZKvdp/token:9zNQRsGLjNKwCUU5Gq5LR8beUCPzQMVMqKAi3SSZh54u", - "unit": "FDUSD" - } - }, - { - "address": "AxHocY4moH8roYQXMQWqoehtW5piMtTJQYmfL4wQ83D8", - "asset": { - "amount": "1.961335", - "fungible": true, - "type": "solana:5eykt4UsFv8P8NJdTREpY1vzqKqZKvdp/token:EPjFWdd5AufqSSqeM2qN1xzybapC8G4wEGGkZwyTDt1v", - "unit": "USDC" - } - }, - { - "address": "F5oK5zdyUktrzTgSJdBFL73xUdCLcHfHfHdBcpydhXoK", - "asset": { - "amount": "1.960778", - "fungible": true, - "type": "solana:5eykt4UsFv8P8NJdTREpY1vzqKqZKvdp/token:Es9vMFrzaCERmJfrF4H2FYD4KCoNkY11McCe8BenwNYB", - "unit": "USDT" - } - } - ], - "id": "KeQUqnCSHavf4W163usmS7xsseHBwPHXwD2HG13QuRahRgqnJ8Pgywv1sFMDDNA3Ui9y5n2FW5kdb9vxHajURMk", - "status": "confirmed", - "timestamp": 1750195801, - "to": [ - { - "address": "4cLUBQKZgCv2AqGXbh8ncGhrDRcicUe3WSDzjgPY2oTA", - "asset": { - "amount": "0.017345", - "fungible": true, - "type": "solana:5eykt4UsFv8P8NJdTREpY1vzqKqZKvdp/token:9zNQRsGLjNKwCUU5Gq5LR8beUCPzQMVMqKAi3SSZh54u", - "unit": "FDUSD" - } - }, - { - "address": "F7p3dFrjRTbtRp8FRF6qHLomXbKRBzpvBLjtQcfcgmNe", - "asset": { - "amount": "1.961335", - "fungible": true, - "type": "solana:5eykt4UsFv8P8NJdTREpY1vzqKqZKvdp/token:EPjFWdd5AufqSSqeM2qN1xzybapC8G4wEGGkZwyTDt1v", - "unit": "USDC" - } - }, - { - "address": "AxHocY4moH8roYQXMQWqoehtW5piMtTJQYmfL4wQ83D8", - "asset": { - "amount": "1.960778", - "fungible": true, - "type": "solana:5eykt4UsFv8P8NJdTREpY1vzqKqZKvdp/token:Es9vMFrzaCERmJfrF4H2FYD4KCoNkY11McCe8BenwNYB", - "unit": "USDT" - } - }, - { - "address": "F5oK5zdyUktrzTgSJdBFL73xUdCLcHfHfHdBcpydhXoK", - "asset": { - "amount": "1.965154", - "fungible": true, - "type": "solana:5eykt4UsFv8P8NJdTREpY1vzqKqZKvdp/token:9zNQRsGLjNKwCUU5Gq5LR8beUCPzQMVMqKAi3SSZh54u", - "unit": "FDUSD" - } - } - ], - "type": "send" - }, - { - "account": "55fe5095-3194-42c2-81d3-5701dcad1924", - "chain": "solana:5eykt4UsFv8P8NJdTREpY1vzqKqZKvdp", - "events": [ - { - "status": "confirmed", - "timestamp": 1750192504 - } - ], - "fees": [ - { - "asset": { - "amount": "0.000005", - "fungible": true, - "type": "solana:5eykt4UsFv8P8NJdTREpY1vzqKqZKvdp/slip44:501", - "unit": "SOL" - }, - "type": "base" - }, - { - "asset": { - "amount": "0.000042857", - "fungible": true, - "type": "solana:5eykt4UsFv8P8NJdTREpY1vzqKqZKvdp/slip44:501", - "unit": "SOL" - }, - "type": "priority" - } - ], - "from": [ - { - "address": "8jKM7u4xsyvDpnqL5DQMVrh8AXxZKJPKJw5QsM7KEF8J", - "asset": { - "amount": "1.965154", - "fungible": true, - "type": "solana:5eykt4UsFv8P8NJdTREpY1vzqKqZKvdp/token:9zNQRsGLjNKwCUU5Gq5LR8beUCPzQMVMqKAi3SSZh54u", - "unit": "FDUSD" - } - }, - { - "address": "3nMFwZXwY1s1M5s8vYAHqd4wGs4iSxXE4LRoUMMYqEgF", - "asset": { - "amount": "0.01317796", - "fungible": true, - "type": "solana:5eykt4UsFv8P8NJdTREpY1vzqKqZKvdp/token:So11111111111111111111111111111111111111112", - "unit": "" - } - }, - { - "address": "F5oK5zdyUktrzTgSJdBFL73xUdCLcHfHfHdBcpydhXoK", - "asset": { - "amount": "1.960791", - "fungible": true, - "type": "solana:5eykt4UsFv8P8NJdTREpY1vzqKqZKvdp/token:Es9vMFrzaCERmJfrF4H2FYD4KCoNkY11McCe8BenwNYB", - "unit": "USDT" - } - }, - { - "address": "J4uBbeoWpZE8fH58PM1Fp9n9K6f1aThyeVCyRdJbaXqt", - "asset": { - "amount": "1.960856", - "fungible": true, - "type": "solana:5eykt4UsFv8P8NJdTREpY1vzqKqZKvdp/token:EPjFWdd5AufqSSqeM2qN1xzybapC8G4wEGGkZwyTDt1v", - "unit": "USDC" - } - }, - { - "address": "AbcuyoPeYnddzFoFQudsiFka8qd6tTwvLgxwtpTKTpKC", - "asset": { - "amount": "0.01317796", - "fungible": true, - "type": "solana:5eykt4UsFv8P8NJdTREpY1vzqKqZKvdp/slip44:501", - "unit": "SOL" - } - } - ], - "id": "4npdHyFnYr6VppXz1qqfvjbgcYHp3NUW6ZeSygeCL7qKsvTXWba3Hjrtbpt5ThEcbqcxftJwSoEUUzo2kv3jETpL", - "status": "confirmed", - "timestamp": 1750192504, - "to": [ - { - "address": "F7p3dFrjRTbtRp8FRF6qHLomXbKRBzpvBLjtQcfcgmNe", - "asset": { - "amount": "1.960856", - "fungible": true, - "type": "solana:5eykt4UsFv8P8NJdTREpY1vzqKqZKvdp/token:EPjFWdd5AufqSSqeM2qN1xzybapC8G4wEGGkZwyTDt1v", - "unit": "USDC" - } - }, - { - "address": "3nMFwZXwY1s1M5s8vYAHqd4wGs4iSxXE4LRoUMMYqEgF", - "asset": { - "amount": "1.960791", - "fungible": true, - "type": "solana:5eykt4UsFv8P8NJdTREpY1vzqKqZKvdp/token:Es9vMFrzaCERmJfrF4H2FYD4KCoNkY11McCe8BenwNYB", - "unit": "USDT" - } - }, - { - "address": "F5oK5zdyUktrzTgSJdBFL73xUdCLcHfHfHdBcpydhXoK", - "asset": { - "amount": "1.965154", - "fungible": true, - "type": "solana:5eykt4UsFv8P8NJdTREpY1vzqKqZKvdp/token:9zNQRsGLjNKwCUU5Gq5LR8beUCPzQMVMqKAi3SSZh54u", - "unit": "FDUSD" - } - }, - { - "address": "J4uBbeoWpZE8fH58PM1Fp9n9K6f1aThyeVCyRdJbaXqt", - "asset": { - "amount": "0.01317796", - "fungible": true, - "type": "solana:5eykt4UsFv8P8NJdTREpY1vzqKqZKvdp/token:So11111111111111111111111111111111111111112", - "unit": "" - } - }, - { - "address": "4maNZQtYFA1cdB55aLS321dxwdH1Y8NWaH4qiMedKpTZ", - "asset": { - "amount": "0.01317796", - "fungible": true, - "type": "solana:5eykt4UsFv8P8NJdTREpY1vzqKqZKvdp/slip44:501", - "unit": "SOL" - } - } - ], - "type": "send" - }, - { - "account": "55fe5095-3194-42c2-81d3-5701dcad1924", - "chain": "solana:5eykt4UsFv8P8NJdTREpY1vzqKqZKvdp", - "events": [ - { - "status": "confirmed", - "timestamp": 1750185239 - } - ], - "fees": [ - { - "asset": { - "amount": "0.000005", - "fungible": true, - "type": "solana:5eykt4UsFv8P8NJdTREpY1vzqKqZKvdp/slip44:501", - "unit": "SOL" - }, - "type": "base" - }, - { - "asset": { - "amount": "0.000017481", - "fungible": true, - "type": "solana:5eykt4UsFv8P8NJdTREpY1vzqKqZKvdp/slip44:501", - "unit": "SOL" - }, - "type": "priority" - } - ], - "from": [ - { - "address": "8jKM7u4xsyvDpnqL5DQMVrh8AXxZKJPKJw5QsM7KEF8J", - "asset": { - "amount": "2", - "fungible": true, - "type": "solana:5eykt4UsFv8P8NJdTREpY1vzqKqZKvdp/token:EPjFWdd5AufqSSqeM2qN1xzybapC8G4wEGGkZwyTDt1v", - "unit": "USDC" - } - }, - { - "address": "8jKM7u4xsyvDpnqL5DQMVrh8AXxZKJPKJw5QsM7KEF8J", - "asset": { - "amount": "0.00203928", - "fungible": true, - "type": "solana:5eykt4UsFv8P8NJdTREpY1vzqKqZKvdp/slip44:501", - "unit": "SOL" - } - } - ], - "id": "5uNJixYCaS2uf2CM57ZHt5yjnvbUWFbuaywA5mvHSovfW3UwCDzRUg7ZHgBNbtze2uDzhiPtQvsxcLyghbWjuGxS", - "status": "confirmed", - "timestamp": 1750185239, - "to": [ - { - "address": "8jKM7u4xsyvDpnqL5DQMVrh8AXxZKJPKJw5QsM7KEF8J", - "asset": { - "amount": "1.981453", - "fungible": true, - "type": "solana:5eykt4UsFv8P8NJdTREpY1vzqKqZKvdp/token:9zNQRsGLjNKwCUU5Gq5LR8beUCPzQMVMqKAi3SSZh54u", - "unit": "FDUSD" - } - } - ], - "type": "swap" - }, - { - "account": "55fe5095-3194-42c2-81d3-5701dcad1924", - "chain": "solana:5eykt4UsFv8P8NJdTREpY1vzqKqZKvdp", - "events": [ - { - "status": "confirmed", - "timestamp": 1747413522 - } - ], - "fees": [ - { - "asset": { - "amount": "0.000005", - "fungible": true, - "type": "solana:5eykt4UsFv8P8NJdTREpY1vzqKqZKvdp/slip44:501", - "unit": "SOL" - }, - "type": "base" - }, - { - "asset": { - "amount": "0.000097266", - "fungible": true, - "type": "solana:5eykt4UsFv8P8NJdTREpY1vzqKqZKvdp/slip44:501", - "unit": "SOL" - }, - "type": "priority" - } - ], - "from": [ - { - "address": "8jKM7u4xsyvDpnqL5DQMVrh8AXxZKJPKJw5QsM7KEF8J", - "asset": { - "amount": "20543.775754", - "fungible": true, - "type": "solana:5eykt4UsFv8P8NJdTREpY1vzqKqZKvdp/token:8crhketCxuYMFfkvGfikwp6LGuN9sXx5i3oTC4PXpump", - "unit": "SLMN" - } - }, - { - "address": "8jKM7u4xsyvDpnqL5DQMVrh8AXxZKJPKJw5QsM7KEF8J", - "asset": { - "amount": "0.00203928", - "fungible": true, - "type": "solana:5eykt4UsFv8P8NJdTREpY1vzqKqZKvdp/slip44:501", - "unit": "SOL" - } - } - ], - "id": "56RDqk4ge61qbPRkXJ5oJU52s98Np8uoQSqkAtuWAsERykYjr6sCEdKQfj5M2kqEakRyGeys8HiMKbhfGgXLDj1H", - "status": "confirmed", - "timestamp": 1747413522, - "to": [ - { - "address": "8jKM7u4xsyvDpnqL5DQMVrh8AXxZKJPKJw5QsM7KEF8J", - "asset": { - "amount": "42.87418", - "fungible": true, - "type": "solana:5eykt4UsFv8P8NJdTREpY1vzqKqZKvdp/token:CKfatsPMUf8SkiURsDXs7eK6GWb4Jsd6UDbs7twMCWxo", - "unit": "BERN" - } - } - ], - "type": "swap" - }, - { - "account": "55fe5095-3194-42c2-81d3-5701dcad1924", - "chain": "solana:5eykt4UsFv8P8NJdTREpY1vzqKqZKvdp", - "events": [ - { - "status": "confirmed", - "timestamp": 1747413460 - } - ], - "fees": [ - { - "asset": { - "amount": "0.000005", - "fungible": true, - "type": "solana:5eykt4UsFv8P8NJdTREpY1vzqKqZKvdp/slip44:501", - "unit": "SOL" - }, - "type": "base" - }, - { - "asset": { - "amount": "0.000119477", - "fungible": true, - "type": "solana:5eykt4UsFv8P8NJdTREpY1vzqKqZKvdp/slip44:501", - "unit": "SOL" - }, - "type": "priority" - } - ], - "from": [ - { - "address": "8jKM7u4xsyvDpnqL5DQMVrh8AXxZKJPKJw5QsM7KEF8J", - "asset": { - "amount": "0.1", - "fungible": true, - "type": "solana:5eykt4UsFv8P8NJdTREpY1vzqKqZKvdp/token:EPjFWdd5AufqSSqeM2qN1xzybapC8G4wEGGkZwyTDt1v", - "unit": "USDC" - } - }, - { - "address": "8jKM7u4xsyvDpnqL5DQMVrh8AXxZKJPKJw5QsM7KEF8J", - "asset": { - "amount": "0.002039222", - "fungible": true, - "type": "solana:5eykt4UsFv8P8NJdTREpY1vzqKqZKvdp/slip44:501", - "unit": "SOL" - } - } - ], - "id": "5HCeWunZGVu3N4xFCrakWqbXQWxD8VvfU9WQ22v6DRXwqRHKDqdmSZNtEwj1yRX8Qq4jANm4BiR78nzMZrgYb1vX", - "status": "confirmed", - "timestamp": 1747413460, - "to": [ - { - "address": "8jKM7u4xsyvDpnqL5DQMVrh8AXxZKJPKJw5QsM7KEF8J", - "asset": { - "amount": "20543.775754", - "fungible": true, - "type": "solana:5eykt4UsFv8P8NJdTREpY1vzqKqZKvdp/token:8crhketCxuYMFfkvGfikwp6LGuN9sXx5i3oTC4PXpump", - "unit": "SLMN" - } - } - ], - "type": "swap" - } - ] - } - }, - "574cb22f-c2d5-40d2-86a5-e3393d33050f": { - "bip122:000000000019d6689c085ae165831e93": { - "lastUpdated": 1774466682535, - "next": null, - "transactions": [ - { - "account": "574cb22f-c2d5-40d2-86a5-e3393d33050f", - "chain": "bip122:000000000019d6689c085ae165831e93", - "events": [ - { - "status": "unconfirmed", - "timestamp": null - }, - { - "status": "confirmed", - "timestamp": 1768589476 - } - ], - "fees": [ - { - "asset": { - "amount": "0.0000087", - "fungible": true, - "type": "bip122:000000000019d6689c085ae165831e93/slip44:0", - "unit": "BTC" - }, - "type": "priority" - } - ], - "from": [], - "id": "6de22d6dbb1dce186ab6254653e45812351f38cc4128d157cb948d4d88d47c73", - "status": "confirmed", - "timestamp": 1768589476, - "to": [ - { - "address": "bc1qq2mvrp4g3ugd424dw4xv53rgsf8szkrv853jrc", - "asset": { - "amount": "0.00009913", - "fungible": true, - "type": "bip122:000000000019d6689c085ae165831e93/slip44:0", - "unit": "BTC" - } - } - ], - "type": "send" - }, - { - "account": "574cb22f-c2d5-40d2-86a5-e3393d33050f", - "chain": "bip122:000000000019d6689c085ae165831e93", - "events": [ - { - "status": "unconfirmed", - "timestamp": null - }, - { - "status": "confirmed", - "timestamp": 1761608745 - } - ], - "fees": [], - "from": [], - "id": "3b4698ba503c10d5dd86183c2ece6844870b2ceb9d4e3cf3d86776d2ad9ede4a", - "status": "confirmed", - "timestamp": 1761608745, - "to": [ - { - "address": "bc1qklk4c2g7pk2eertfh0zgw9gn6gaq7px9stmtsz", - "asset": { - "amount": "0.00012921", - "fungible": true, - "type": "bip122:000000000019d6689c085ae165831e93/slip44:0", - "unit": "BTC" - } - } - ], - "type": "receive" - }, - { - "account": "574cb22f-c2d5-40d2-86a5-e3393d33050f", - "chain": "bip122:000000000019d6689c085ae165831e93", - "events": [ - { - "status": "unconfirmed", - "timestamp": null - }, - { - "status": "confirmed", - "timestamp": 1761607796 - } - ], - "fees": [], - "from": [], - "id": "9ab6d6a1ec0c137f10bf7b20ffe07011a0a714624d5f354ad628cc7509638663", - "status": "confirmed", - "timestamp": 1761607796, - "to": [ - { - "address": "bc1qklk4c2g7pk2eertfh0zgw9gn6gaq7px9stmtsz", - "asset": { - "amount": "0.00006216", - "fungible": true, - "type": "bip122:000000000019d6689c085ae165831e93/slip44:0", - "unit": "BTC" - } - } - ], - "type": "receive" - }, - { - "account": "574cb22f-c2d5-40d2-86a5-e3393d33050f", - "chain": "bip122:000000000019d6689c085ae165831e93", - "events": [ - { - "status": "unconfirmed", - "timestamp": null - }, - { - "status": "confirmed", - "timestamp": 1761604663 - } - ], - "fees": [], - "from": [], - "id": "22444284e81c3eef99601eed091421d83a29ca869e4823b09e8db584217554ef", - "status": "confirmed", - "timestamp": 1761604663, - "to": [ - { - "address": "bc1qklk4c2g7pk2eertfh0zgw9gn6gaq7px9stmtsz", - "asset": { - "amount": "0.00007091", - "fungible": true, - "type": "bip122:000000000019d6689c085ae165831e93/slip44:0", - "unit": "BTC" - } - } - ], - "type": "receive" - } - ] - } - }, - "575d130d-01da-44f0-a731-da9967adf412": {}, - "5a747531-d39f-49d5-afbd-59c018cc4757": {}, - "658962cf-0ecb-496e-beb8-91b663d244de": {}, - "73a28e8a-5ecb-4b36-b6f3-d2c12294eebf": {}, - "744910ce-8368-414f-8e7c-1c5dba71831e": {}, - "77a6514e-0024-4dc2-b08d-e78c664c37c5": {}, - "78ccb0a9-3647-4bb6-94b4-54d8b4e0b397": {}, - "7f6eee30-338e-4926-86fa-19436da91f35": {}, - "80340772-85d8-41a5-b316-1d8fc8c2cea4": {}, - "891b1840-b34b-4059-895b-5f163cff8ff1": {}, - "8b0e3ad2-d40d-47b1-a9c3-702eb67ab1ba": {}, - "8fd0b8c5-b42d-462d-965b-2979b4057c88": {}, - "9e12503a-12d8-4bb4-835f-a0c203ccd67a": {}, - "a4c40c7c-01c0-4335-b574-72195898b31c": {}, - "c2c05428-c846-4992-a5a3-5d151b97fcdb": {}, - "c3fc6bba-683b-44c8-b637-89b55416a8dd": {}, - "c5bf70b0-2c4b-4016-9107-cab94be5fbb0": {}, - "c6d62ae8-d02c-4a7a-8222-17ed6cdf0e52": {}, - "c7cf5799-e458-4bb5-b60b-7e74cf2e7c0a": {}, - "c86652a6-e1f3-4e4c-b411-c58efe220dcf": {}, - "d05ca007-7a11-470f-8433-a89767f95995": {}, - "d8086b4c-4361-49ab-8955-efaa5240f561": {}, - "d834c0ad-655b-4707-997d-7048c1896f89": {}, - "db7205b1-e72f-4082-92c4-5490fdba12c5": {}, - "df59431e-d587-40a5-9c2b-3bdc6584b0e4": {}, - "e421a858-a232-40dc-8bbb-d3745bee215b": {}, - "e4cb2ec8-15e3-494a-bde2-6ea14e6d0d6c": {}, - "e6f7d2e7-8c4c-48f7-9d04-958add8113b7": {}, - "e78a4c3d-7649-4797-90ad-9d6ddbe9e6dd": {}, - "e86326ea-c687-45bf-84b9-ad4d8618d084": {}, - "f5481e08-42e2-4504-9a1f-44c0bbe6e0bb": {}, - "f7f2ce83-85bc-49f9-8551-c36c5432a0c1": {}, - "fedf900d-3caf-4540-9e24-c63400ef2b18": {}, - "ffb79cf7-3a88-4cfe-864c-a9f656ce1840": {} - }, - "conversionRates": { - "bip122:000000000019d6689c085ae165831e93/slip44:0": { - "conversionTime": 1778883654, - "currency": "swift:0/iso4217:USD", - "expirationTime": 1778883714, - "marketData": { - "allTimeHigh": "126080", - "allTimeLow": "67.81", - "circulatingSupply": "20029850", - "fungible": true, - "marketCap": "1582485707813", - "pricePercentChange": { - "P14D": 1.5054289617212426, - "P1D": -2.9594667127628713, - "P1Y": -23.588785565955206, - "P200D": -31.01113447398371, - "P30D": 5.719636948975058, - "P7D": -1.4853112476964745, - "PT1H": -0.12641870504260302 - }, - "totalVolume": "38672267829" - }, - "rate": "79031" - }, - "solana:5eykt4UsFv8P8NJdTREpY1vzqKqZKvdp/slip44:501": { - "conversionTime": 1778883654928, - "currency": "swift:0/iso4217:USD", - "expirationTime": 1778883714928, - "marketData": { - "allTimeHigh": "293.31", - "allTimeLow": "0.500801", - "circulatingSupply": "578119635.982831", - "fungible": true, - "marketCap": "51533178683", - "pricePercentChange": { - "P14D": 6.87742605656866, - "P1D": -3.8711814275648573, - "P1Y": -47.42232175311722, - "P200D": -55.25178913539312, - "P30D": 5.154765868040944, - "P7D": -3.190483985535217, - "PT1H": -0.14127191858445717 - }, - "totalVolume": "3161966021" - }, - "rate": "89.18" - }, - "solana:5eykt4UsFv8P8NJdTREpY1vzqKqZKvdp/token:CKfatsPMUf8SkiURsDXs7eK6GWb4Jsd6UDbs7twMCWxo": { - "conversionTime": 1778883654928, - "currency": "swift:0/iso4217:USD", - "expirationTime": 1778883714928, - "marketData": { - "allTimeHigh": "0.0400155", - "allTimeLow": "0.000000126334", - "circulatingSupply": "949129850.20701", - "fungible": true, - "marketCap": "749202", - "pricePercentChange": { - "P14D": 14.862518609550488, - "P1D": 7.3006442908221585, - "P1Y": -59.98070259811704, - "P200D": -59.91185775808495, - "P30D": 5.360310860346837, - "P7D": 4.527201949424081, - "PT1H": 0.6909528142019298 - }, - "totalVolume": "42.92" - }, - "rate": "0.00078997" - }, - "solana:5eykt4UsFv8P8NJdTREpY1vzqKqZKvdp/token:EPjFWdd5AufqSSqeM2qN1xzybapC8G4wEGGkZwyTDt1v": { - "conversionTime": 1775782690944, - "currency": "swift:0/iso4217:USD", - "expirationTime": 1775782750944, - "marketData": { - "allTimeHigh": "1.043", - "allTimeLow": "0.877647", - "circulatingSupply": "78372107497.56459", - "fungible": true, - "marketCap": "78373103638", - "pricePercentChange": { - "P14D": 0.028577631134345256, - "P1D": 0.010847119102307434, - "P1Y": 0.012811413402346905, - "P200D": 0.0368191099165073, - "P30D": 0.007645887802362862, - "P7D": -0.0017600412540627046, - "PT1H": 0.017467976489816257 - }, - "totalVolume": "13777922244" - }, - "rate": "1" - }, - "solana:5eykt4UsFv8P8NJdTREpY1vzqKqZKvdp/token:HeLp6NuQkmYB4pYWo2zYs22mESHXPQYzXbB8n4V98jwC": { - "conversionTime": 1778883654928, - "currency": "swift:0/iso4217:USD", - "expirationTime": 1778883714928, - "marketData": { - "allTimeHigh": "0.000889407667438147", - "allTimeLow": "0.000463525853260071", - "circulatingSupply": "0", - "fungible": true, - "marketCap": "0", - "pricePercentChange": { - "P1D": 0.41, - "PT1H": 0 - }, - "totalVolume": "23396127.858097084" - }, - "rate": "0.00064451682755887" - }, - "tron:728126428/slip44:195": { - "conversionTime": 1778883654297, - "currency": "swift:0/iso4217:USD", - "expirationTime": 1778883714297, - "marketData": { - "allTimeHigh": "0.431288", - "allTimeLow": "0.00180434", - "circulatingSupply": "94799036569.8615", - "fungible": true, - "marketCap": "33321457985", - "pricePercentChange": { - "P14D": 7.675279076690246, - "P1D": -0.5197478439691818, - "P1Y": 28.46600360121107, - "P200D": 17.455164714260412, - "P30D": 7.18872806430282, - "P7D": 0.5101487900033224, - "PT1H": 0.022868797531495236 - }, - "totalVolume": "508196552" - }, - "rate": "0.351641" - }, - "tron:728126428/trc20:TR7NHqjeKQxGTCi8q8ZY4pL8otSzgjLj6t": { - "conversionTime": 1778883654297, - "currency": "swift:0/iso4217:USD", - "expirationTime": 1778883714297, - "marketData": { - "allTimeHigh": "1.32", - "allTimeLow": "0.572521", - "circulatingSupply": "189857486520.226", - "fungible": true, - "marketCap": "189744171708", - "pricePercentChange": { - "P14D": -0.03387798395344689, - "P1D": -0.02535220514776764, - "P1Y": -0.06373228934736208, - "P200D": -0.06949974556027452, - "P30D": -0.07433101914580983, - "P7D": -0.0394601966608393, - "PT1H": 0.005024140054265617 - }, - "totalVolume": "66288777691" - }, - "rate": "0.999444" - } - }, - "historicalPrices": {}, - "marketData": { - "0x1": { - "0x0000000000000000000000000000000000000000": { - "allTimeHigh": 2.22823027616017, - "allTimeLow": 0.000195060081629089, - "assetId": "eip155:1/slip44:60", - "chainId": "0x1", - "circulatingSupply": 120686088.4883335, - "currency": "ETH", - "dilutedMarketCap": 120632328.063185, - "high1d": 1.03593189624545, - "id": "eip155:1/slip44:60", - "liquidity": 222194313.86783212, - "low1d": 0.994647432378864, - "marketCap": 120632328.063185, - "marketCapPercentChange1d": -3.38257, - "price": 1.00002198119956, - "priceChange1d": -76.26458719134371, - "pricePercentChange14d": -2.8277430344045373, - "pricePercentChange1d": -3.321572381861271, - "pricePercentChange1h": -0.1574400201994797, - "pricePercentChange1y": -12.471360273752076, - "pricePercentChange200d": -46.284177457432776, - "pricePercentChange30d": -6.087299720981746, - "pricePercentChange7d": -3.74558363779934, - "tokenAddress": "0x0000000000000000000000000000000000000000", - "totalVolume": 7739734.11936854 - }, - "0x14c3abF95Cb9C93a8b82C1CdCB76D72Cb87b2d4c": { - "allTimeHigh": null, - "allTimeLow": null, - "assetId": "eip155:1/erc20:0x14c3abf95cb9c93a8b82c1cdcb76d72cb87b2d4c", - "chainId": "0x1", - "circulatingSupply": null, - "currency": "ETH", - "dilutedMarketCap": 1991022097.40325, - "high1d": null, - "holderCount": 4077, - "id": "eip155:1/erc20:0x14c3abf95cb9c93a8b82c1cdcb76d72cb87b2d4c", - "low1d": null, - "marketCap": 1973183126.43974, - "marketCapPercentChange1d": null, - "price": 0.135560280380161, - "priceChange1d": null, - "pricePercentChange14d": null, - "pricePercentChange1d": 0.604561452034013, - "pricePercentChange1h": 0.08265308835922244, - "pricePercentChange1y": null, - "pricePercentChange200d": null, - "pricePercentChange30d": null, - "pricePercentChange7d": null, - "tokenAddress": "0x14c3abF95Cb9C93a8b82C1CdCB76D72Cb87b2d4c", - "totalSupply": 14687356000, - "totalVolume": 24652.6012683251 - }, - "0x6B175474E89094C44Da98b954EedeAC495271d0F": { - "allTimeHigh": 0.000549618571772508, - "allTimeLow": 0.000397329176688919, - "assetId": "eip155:1/erc20:0x6b175474e89094c44da98b954eedeac495271d0f", - "chainId": "0x1", - "circulatingSupply": 4367360463.951176, - "currency": "ETH", - "dilutedMarketCap": 1967012.69895026, - "high1d": 0.000450471435987982, - "id": "eip155:1/erc20:0x6b175474e89094c44da98b954eedeac495271d0f", - "liquidity": 60379963.43409096, - "low1d": 0.000450269608840315, - "marketCap": 1967012.69895026, - "marketCapPercentChange1d": -0.45195, - "price": 0.000450385389146008, - "priceChange1d": 0.00020955, - "pricePercentChange14d": -0.008813718515418416, - "pricePercentChange1d": 0.020965078596308084, - "pricePercentChange1h": 0.0030072144047737985, - "pricePercentChange1y": -0.04536756697679789, - "pricePercentChange200d": 0.03932527738770285, - "pricePercentChange30d": 0.01234198028596749, - "pricePercentChange7d": 0.0001514695859619424, - "tokenAddress": "0x6B175474E89094C44Da98b954EedeAC495271d0F", - "totalVolume": 111105.315445083 - }, - "0xD4419C2d3DAA986Dc30444Fa333a846be44Fd1eb": { - "allTimeHigh": 9.733304043957e-8, - "allTimeLow": 3.475375083538e-8, - "assetId": "eip155:1/erc20:0xd4419c2d3daa986dc30444fa333a846be44fd1eb", - "chainId": "0x1", - "circulatingSupply": 0, - "currency": "ETH", - "dilutedMarketCap": null, - "high1d": 5.772070530653e-8, - "id": "eip155:1/erc20:0xd4419c2d3daa986dc30444fa333a846be44fd1eb", - "low1d": 4.894030195976e-8, - "marketCap": 0, - "marketCapPercentChange1d": null, - "price": 5.276101450542e-8, - "priceChange1d": null, - "pricePercentChange14d": null, - "pricePercentChange1d": -3.28, - "pricePercentChange1h": 0, - "pricePercentChange1y": null, - "pricePercentChange200d": null, - "pricePercentChange30d": null, - "pricePercentChange7d": null, - "tokenAddress": "0xD4419C2d3DAA986Dc30444Fa333a846be44Fd1eb", - "totalVolume": 11354.7618723628 - }, - "0xacA92E438df0B2401fF60dA7E4337B687a2435DA": { - "allTimeHigh": 0.00048024048976188, - "allTimeLow": 0.000441409487159126, - "assetId": "eip155:1/erc20:0xaca92e438df0b2401ff60da7e4337b687a2435da", - "chainId": "0x1", - "circulatingSupply": 32316361.588697, - "currency": "ETH", - "dilutedMarketCap": 14555.7396512304, - "high1d": 0.000450507026043039, - "id": "eip155:1/erc20:0xaca92e438df0b2401ff60da7e4337b687a2435da", - "liquidity": 85643568.11797117, - "low1d": 0.000450304748388346, - "marketCap": 14555.7396512304, - "marketCapPercentChange1d": 3.20778, - "price": 0.000450411969060544, - "priceChange1d": 0.00011277, - "pricePercentChange14d": -0.05357011892774954, - "pricePercentChange1d": 0.011280512458890201, - "pricePercentChange1h": 0.00034274662372168167, - "pricePercentChange1y": null, - "pricePercentChange200d": 0.06785083497607862, - "pricePercentChange30d": -0.01352896373467335, - "pricePercentChange7d": 0.05234431818678485, - "tokenAddress": "0xacA92E438df0B2401fF60dA7E4337B687a2435DA", - "totalVolume": 1935.99627952063 - }, - "0xdAC17F958D2ee523a2206206994597C13D831ec7": { - "allTimeHigh": 0.000594669274376812, - "allTimeLow": 0.000257924733057187, - "assetId": "eip155:1/erc20:0xdac17f958d2ee523a2206206994597c13d831ec7", - "chainId": "0x1", - "circulatingSupply": 189857486520.226, - "currency": "ETH", - "dilutedMarketCap": 87942507.566859, - "high1d": 0.000450415573116752, - "id": "eip155:1/erc20:0xdac17f958d2ee523a2206206994597c13d831ec7", - "liquidity": 2848536010.9797935, - "low1d": 0.000450234018785257, - "marketCap": 85481082.5051709, - "marketCapPercentChange1d": -0.03779, - "price": 0.000450248435010091, - "priceChange1d": -0.000271573841914896, - "pricePercentChange14d": -0.03569121842096829, - "pricePercentChange1d": -0.027165594260039498, - "pricePercentChange1h": 0.002308422882559855, - "pricePercentChange1y": -0.06554498230287469, - "pricePercentChange200d": -0.07131233390284242, - "pricePercentChange30d": -0.07614351985637191, - "pricePercentChange7d": -0.04127332987545341, - "tokenAddress": "0xdAC17F958D2ee523a2206206994597C13D831ec7", - "totalVolume": 29828646.7306762 - } - }, - "0x10e6": { - "0x0000000000000000000000000000000000000000": { - "allTimeHigh": 2.22146544314654, - "allTimeLow": 0.000194467885708423, - "assetId": "eip155:4326/erc20:0x0000000000000000000000000000000000000000", - "chainId": "0x10e6", - "circulatingSupply": 120686088.4883335, - "currency": "ETH", - "dilutedMarketCap": 120720128.093345, - "high1d": 1.03975748342298, - "id": "eip155:4326/erc20:0x0000000000000000000000000000000000000000", - "liquidity": 223330440.70177978, - "low1d": 0.991627715853388, - "marketCap": 120720128.093345, - "marketCapPercentChange1d": -3.56045, - "price": 1.00011644865542, - "priceChange1d": -81.83246205101068, - "pricePercentChange14d": -3.2872704250270655, - "pricePercentChange1d": -3.5447206118919516, - "pricePercentChange1h": 0.2582454430094721, - "pricePercentChange1y": -12.783633768681588, - "pricePercentChange200d": -46.63493727333306, - "pricePercentChange30d": -4.507052948151581, - "pricePercentChange7d": -2.821105875967681, - "tokenAddress": "0x0000000000000000000000000000000000000000", - "totalVolume": 8094503.6751173 - }, - "0x021ee124cF23D302A7f725AE7a01B77A8ce9782B": { - "allTimeHigh": 0.000050231514486367, - "allTimeLow": 0.0000395164767127384, - "assetId": "eip155:4326/erc20:0x021ee124cf23d302a7f725ae7a01b77a8ce9782b", - "chainId": "0x10e6", - "circulatingSupply": 999998, - "currency": "ETH", - "dilutedMarketCap": 40.2630400334173, - "high1d": 0.000050231514486367, - "id": "eip155:4326/erc20:0x021ee124cf23d302a7f725ae7a01b77a8ce9782b", - "low1d": 0.0000395164767127384, - "marketCap": 40.2630400334173, - "marketCapPercentChange1d": 0, - "price": 0.000040272422337261, - "priceChange1d": -0.018242515298354134, - "pricePercentChange14d": null, - "pricePercentChange1d": -16.83154629765667, - "pricePercentChange1h": 1.5010520235567582, - "pricePercentChange1y": null, - "pricePercentChange200d": null, - "pricePercentChange30d": null, - "pricePercentChange7d": null, - "tokenAddress": "0x021ee124cF23D302A7f725AE7a01B77A8ce9782B", - "totalVolume": 2.46278327653212 - }, - "0x141cF6BFe9D5057883B9BECB39fEE8A62982dC93": { - "allTimeHigh": 3.916045571476e-8, - "allTimeLow": 8.91541513864e-9, - "assetId": "eip155:4326/erc20:0x141cf6bfe9d5057883b9becb39fee8a62982dc93", - "chainId": "0x10e6", - "circulatingSupply": 1000000000, - "currency": "ETH", - "dilutedMarketCap": 8.9722806656252, - "high1d": 1.020444493451e-8, - "id": "eip155:4326/erc20:0x141cf6bfe9d5057883b9becb39fee8a62982dc93", - "low1d": 8.91541513864e-9, - "marketCap": 8.9722806656252, - "marketCapPercentChange1d": -11.05245, - "price": 8.97380324785e-9, - "priceChange1d": -0.000002481538597954, - "pricePercentChange14d": -56.3091553718725, - "pricePercentChange1d": -11.049612079999722, - "pricePercentChange1h": -0.03367699255946559, - "pricePercentChange1y": null, - "pricePercentChange200d": null, - "pricePercentChange30d": null, - "pricePercentChange7d": -31.234316016961134, - "tokenAddress": "0x141cF6BFe9D5057883B9BECB39fEE8A62982dC93", - "totalVolume": 0.191971120330301 - }, - "0x28B7E77f82B25B95953825F1E3eA0E36c1c29861": { - "allTimeHigh": 0.000101011428951114, - "allTimeLow": 0.0000435620208713585, - "assetId": "eip155:4326/erc20:0x28b7e77f82b25b95953825f1e3ea0e36c1c29861", - "chainId": "0x10e6", - "circulatingSupply": 1129792788, - "currency": "ETH", - "dilutedMarketCap": 442465.13658534, - "high1d": 0.0000481567159276941, - "id": "eip155:4326/erc20:0x28b7e77f82b25b95953825f1e3ea0e36c1c29861", - "liquidity": 2855239.9891444533, - "low1d": 0.0000435620208713585, - "marketCap": 49989.3920188362, - "marketCapPercentChange1d": -7.09271, - "price": 0.0000442469583064427, - "priceChange1d": -0.007530708191308022, - "pricePercentChange14d": -36.06214202171261, - "pricePercentChange1d": -7.101346455427031, - "pricePercentChange1h": 0.14967476779480912, - "pricePercentChange1y": null, - "pricePercentChange200d": null, - "pricePercentChange30d": null, - "pricePercentChange7d": -17.732750283621616, - "tokenAddress": "0x28B7E77f82B25B95953825F1E3eA0E36c1c29861", - "totalVolume": 11953.7360685871 - }, - "0x2A3a4c92ce37ABd7239fB010BC390710f4062407": { - "allTimeHigh": 1.4770364536185e-7, - "allTimeLow": 4.206710206269e-8, - "assetId": "eip155:4326/erc20:0x2a3a4c92ce37abd7239fb010bc390710f4062407", - "chainId": "0x10e6", - "circulatingSupply": 1000000000, - "currency": "ETH", - "dilutedMarketCap": 94.3153096398602, - "high1d": 9.44121630394e-8, - "id": "eip155:4326/erc20:0x2a3a4c92ce37abd7239fb010bc390710f4062407", - "low1d": 5.292441236138e-8, - "marketCap": 94.3153096398602, - "marketCapPercentChange1d": 45.5544, - "price": 9.444312074675e-8, - "priceChange1d": 0.00006704, - "pricePercentChange14d": null, - "pricePercentChange1d": 45.753409801359936, - "pricePercentChange1h": 9.704145974622687, - "pricePercentChange1y": null, - "pricePercentChange200d": null, - "pricePercentChange30d": null, - "pricePercentChange7d": null, - "tokenAddress": "0x2A3a4c92ce37ABd7239fB010BC390710f4062407", - "totalVolume": 13.5059633082996 - }, - "0x551DFe38994eC53c9E7E18084D73893225Eea3bf": { - "allTimeHigh": 0.00560525848514851, - "allTimeLow": 0.000119399641101792, - "assetId": "eip155:4326/erc20:0x551dfe38994ec53c9e7e18084d73893225eea3bf", - "chainId": "0x10e6", - "circulatingSupply": 24307735, - "currency": "ETH", - "dilutedMarketCap": 5901.65808623722, - "high1d": 0.00026151225669028, - "id": "eip155:4326/erc20:0x551dfe38994ec53c9e7e18084d73893225eea3bf", - "liquidity": 427719.15401152876, - "low1d": 0.000242347931826273, - "marketCap": 5901.65898451582, - "marketCapPercentChange1d": -6.89892, - "price": 0.000243147399783289, - "priceChange1d": -0.03945605703638788, - "pricePercentChange14d": 0.46856877312401923, - "pricePercentChange1d": -6.793178567321702, - "pricePercentChange1h": 0.056885781252187635, - "pricePercentChange1y": -64.41541275201574, - "pricePercentChange200d": -63.45407892457979, - "pricePercentChange30d": -24.487791647213893, - "pricePercentChange7d": -4.78953293448421, - "tokenAddress": "0x551DFe38994eC53c9E7E18084D73893225Eea3bf", - "totalVolume": 440.183464018802 - }, - "0x5d3a1Ff2b6BAb83b63cd9AD0787074081a52ef34": { - "allTimeHigh": 0.000464410037952208, - "allTimeLow": 0.000417468692974899, - "assetId": "eip155:4326/erc20:0x5d3a1ff2b6bab83b63cd9ad0787074081a52ef34", - "chainId": "0x10e6", - "circulatingSupply": 4232150408.086951, - "currency": "ETH", - "dilutedMarketCap": 1901123.64022415, - "high1d": 0.000449588440996286, - "id": "eip155:4326/erc20:0x5d3a1ff2b6bab83b63cd9ad0787074081a52ef34", - "liquidity": 525892196.31861883, - "low1d": 0.000449139301694592, - "marketCap": 1901123.64022415, - "marketCapPercentChange1d": 2.51353, - "price": 0.000449139301694592, - "priceChange1d": -0.000163887231527493, - "pricePercentChange14d": 0.09062972134891878, - "pricePercentChange1d": -0.01638243407765554, - "pricePercentChange1h": 0.0035920985512261356, - "pricePercentChange1y": -0.05544490072527043, - "pricePercentChange200d": 0.10212559281064268, - "pricePercentChange30d": 0.0041774338997160165, - "pricePercentChange7d": 0.11019939244659449, - "tokenAddress": "0x5d3a1Ff2b6BAb83b63cd9AD0787074081a52ef34", - "totalVolume": 138484.167386066 - }, - "0x601aC63637933D88285A025C685AC4e9a92a98dA": { - "allTimeHigh": 3.2678795811929, - "allTimeLow": 0.251548570880395, - "assetId": "eip155:4326/erc20:0x601ac63637933d88285a025c685ac4e9a92a98da", - "bondingCurveProgressPercent": null, - "chainId": "0x10e6", - "circulatingSupply": 3380818.245608431, - "currency": "ETH", - "dilutedMarketCap": 4240298.51367444, - "high1d": 1.29066926256799, - "id": "eip155:4326/erc20:0x601ac63637933d88285a025c685ac4e9a92a98da", - "liquidity": 8077159.6306, - "low1d": 1.24354274977244, - "marketCap": 4240298.51367444, - "marketCapPercentChange1d": -1.12805, - "price": 1.25391022229275, - "priceChange1d": -37.235236253446146, - "pricePercentChange14d": 1.2063039653358774, - "pricePercentChange1d": -1.3197330751332634, - "pricePercentChange1h": 0.13357444173607796, - "pricePercentChange1y": -12.151001581806655, - "pricePercentChange200d": -42.028607111084625, - "pricePercentChange30d": 1.201128478278992, - "pricePercentChange7d": -3.7223883402848177, - "tokenAddress": "0x601aC63637933D88285A025C685AC4e9a92a98dA", - "totalVolume": 1454.33436319387 - }, - "0x88887bE419578051FF9F4eb6C858A951921D8888": { - "allTimeHigh": null, - "allTimeLow": null, - "assetId": "eip155:4326/erc20:0x88887be419578051ff9f4eb6c858a951921d8888", - "bondingCurveProgressPercent": null, - "chainId": "0x10e6", - "circulatingSupply": null, - "currency": "ETH", - "dilutedMarketCap": 1.36845079891639, - "high1d": null, - "id": "eip155:4326/erc20:0x88887be419578051ff9f4eb6c858a951921d8888", - "liquidity": 432356.40254465915, - "low1d": null, - "marketCap": null, - "marketCapPercentChange1d": null, - "price": 0.000477670077265062, - "priceChange1d": null, - "pricePercentChange14d": null, - "pricePercentChange1d": 0.02, - "pricePercentChange1h": 0, - "pricePercentChange1y": null, - "pricePercentChange200d": null, - "pricePercentChange30d": null, - "pricePercentChange7d": null, - "tokenAddress": "0x88887bE419578051FF9F4eb6C858A951921D8888", - "totalSupply": 2864.845139, - "totalVolume": 14.3119574860866 - }, - "0xB0F70C0bD6FD87dbEb7C10dC692a2a6106817072": { - "allTimeHigh": 56.4713297192755, - "allTimeLow": 3.5024186143151, - "assetId": "eip155:4326/erc20:0xb0f70c0bd6fd87dbeb7c10dc692a2a6106817072", - "bondingCurveProgressPercent": null, - "chainId": "0x10e6", - "circulatingSupply": 2683.21139279, - "currency": "ETH", - "dilutedMarketCap": 95787.4410140557, - "high1d": 36.5361812967418, - "id": "eip155:4326/erc20:0xb0f70c0bd6fd87dbeb7c10dc692a2a6106817072", - "liquidity": 2240904.615, - "low1d": 35.3561619329811, - "marketCap": 95787.4410140557, - "marketCapPercentChange1d": -1.48625, - "price": 35.7160005374429, - "priceChange1d": -1140.6284209429577, - "pricePercentChange14d": 4.842534662084739, - "pricePercentChange1d": -1.412647133548963, - "pricePercentChange1h": -0.2090915274563225, - "pricePercentChange1y": -23.52439534278479, - "pricePercentChange200d": -28.47365733529833, - "pricePercentChange30d": 10.332383149092921, - "pricePercentChange7d": -2.3539126387487546, - "tokenAddress": "0xB0F70C0bD6FD87dbEb7C10dC692a2a6106817072", - "totalVolume": 3900.74020768621 - }, - "0xB8CE59FC3717ada4C02eaDF9682A9e934F625ebb": { - "allTimeHigh": 0.000472494545382711, - "allTimeLow": 0.000438241834817576, - "assetId": "eip155:4326/erc20:0xb8ce59fc3717ada4c02eadf9682a9e934f625ebb", - "chainId": "0x10e6", - "circulatingSupply": 4064676256.80415, - "currency": "ETH", - "dilutedMarketCap": 1824555.96157524, - "high1d": 0.000449139301694592, - "id": "eip155:4326/erc20:0xb8ce59fc3717ada4c02eadf9682a9e934f625ebb", - "liquidity": 158753467.87302837, - "low1d": 0.00044865917178108, - "marketCap": 1824555.96157524, - "marketCapPercentChange1d": -0.01865, - "price": 0.000448911588068633, - "priceChange1d": -0.000499799877974549, - "pricePercentChange14d": -0.017156270178099318, - "pricePercentChange1d": -0.04998034251347325, - "pricePercentChange1h": 0.02862789282903502, - "pricePercentChange1y": -0.11391889449250431, - "pricePercentChange200d": -0.03486240254428877, - "pricePercentChange30d": -0.0719008113930739, - "pricePercentChange7d": -0.03854745674308781, - "tokenAddress": "0xB8CE59FC3717ada4C02eaDF9682A9e934F625ebb", - "totalVolume": 65709.5568238572 - }, - "0xFAfDdbb3FC7688494971a79cc65DCa3EF82079E7": { - "allTimeHigh": 0.0004567746698234, - "allTimeLow": 0.000438860748775311, - "assetId": "eip155:4326/erc20:0xfafddbb3fc7688494971a79cc65dca3ef82079e7", - "chainId": "0x10e6", - "circulatingSupply": 281275585.6147235, - "currency": "ETH", - "dilutedMarketCap": 126256.623872405, - "high1d": 0.000450037580297981, - "id": "eip155:4326/erc20:0xfafddbb3fc7688494971a79cc65dca3ef82079e7", - "liquidity": 13345597.746442312, - "low1d": 0.000447623007412071, - "marketCap": 126256.623872405, - "marketCapPercentChange1d": 4.40592, - "price": 0.000448871614670782, - "priceChange1d": -0.001378740863767325, - "pricePercentChange14d": -0.2108647292307075, - "pricePercentChange1d": -0.13776625342665758, - "pricePercentChange1h": 0.05596716350669015, - "pricePercentChange1y": null, - "pricePercentChange200d": null, - "pricePercentChange30d": -0.02513336939546402, - "pricePercentChange7d": -0.1441819905878118, - "tokenAddress": "0xFAfDdbb3FC7688494971a79cc65DCa3EF82079E7", - "totalVolume": 2618.45338396416 - }, - "0xcCcc62962d17b8914c62D74FfB843d73B2a3cccC": { - "allTimeHigh": 0.000525492982982672, - "allTimeLow": 0.000407420099378086, - "assetId": "eip155:4326/erc20:0xcccc62962d17b8914c62d74ffb843d73b2a3cccc", - "chainId": "0x10e6", - "circulatingSupply": 123899232.9785529, - "currency": "ETH", - "dilutedMarketCap": 55633.0334995682, - "high1d": 0.00044905935489889, - "id": "eip155:4326/erc20:0xcccc62962d17b8914c62d74ffb843d73b2a3cccc", - "liquidity": 26950.36414154749, - "low1d": 0.000449018483222436, - "marketCap": 55633.0334995682, - "marketCapPercentChange1d": 8.605, - "price": 0.000449018483222436, - "priceChange1d": -0.000090829999999986, - "pricePercentChange14d": -0.01004569551248654, - "pricePercentChange1d": -0.009084620605468429, - "pricePercentChange1h": null, - "pricePercentChange1y": null, - "pricePercentChange200d": -0.1954312465533966, - "pricePercentChange30d": -0.01810459664436961, - "pricePercentChange7d": -0.016730705360790535, - "tokenAddress": "0xcCcc62962d17b8914c62D74FfB843d73B2a3cccC", - "totalVolume": 3.67164192906502 - } - }, - "0x144": { - "0x0000000000000000000000000000000000000000": { - "allTimeHigh": 2.22146544314654, - "allTimeLow": 0.000194467885708423, - "assetId": "eip155:324/slip44:60", - "chainId": "0x144", - "circulatingSupply": 120686088.4883335, - "currency": "ETH", - "dilutedMarketCap": 120720128.093345, - "high1d": 1.03975748342298, - "id": "eip155:324/slip44:60", - "liquidity": 223330440.70177978, - "low1d": 0.991627715853388, - "marketCap": 120720128.093345, - "marketCapPercentChange1d": -3.56045, - "price": 1.00011644865542, - "priceChange1d": -81.83246205101068, - "pricePercentChange14d": -3.2872704250270655, - "pricePercentChange1d": -3.5447206118919516, - "pricePercentChange1h": 0.2582454430094721, - "pricePercentChange1y": -12.783633768681588, - "pricePercentChange200d": -46.63493727333306, - "pricePercentChange30d": -4.507052948151581, - "pricePercentChange7d": -2.821105875967681, - "tokenAddress": "0x0000000000000000000000000000000000000000", - "totalVolume": 8094503.6751173 - } - }, - "0x2105": { - "0x0000000000000000000000000000000000000000": { - "allTimeHigh": 2.22146544314654, - "allTimeLow": 0.000194467885708423, - "assetId": "eip155:8453/slip44:60", - "chainId": "0x2105", - "circulatingSupply": 120686088.4883335, - "currency": "ETH", - "dilutedMarketCap": 120720128.093345, - "high1d": 1.03975748342298, - "id": "eip155:8453/slip44:60", - "liquidity": 223330440.70177978, - "low1d": 0.991627715853388, - "marketCap": 120720128.093345, - "marketCapPercentChange1d": -3.56045, - "price": 1.00011644865542, - "priceChange1d": -81.83246205101068, - "pricePercentChange14d": -3.2872704250270655, - "pricePercentChange1d": -3.5447206118919516, - "pricePercentChange1h": 0.2582454430094721, - "pricePercentChange1y": -12.783633768681588, - "pricePercentChange200d": -46.63493727333306, - "pricePercentChange30d": -4.507052948151581, - "pricePercentChange7d": -2.821105875967681, - "tokenAddress": "0x0000000000000000000000000000000000000000", - "totalVolume": 8094503.6751173 - }, - "0x07d15798a67253D76cea61F0eA6F57AeDC59DffB": { - "allTimeHigh": 1.17674497044e-8, - "allTimeLow": 1.72918631152e-9, - "assetId": "eip155:8453/erc20:0x07d15798a67253d76cea61f0ea6f57aedc59dffb", - "chainId": "0x2105", - "circulatingSupply": 57280056931.41685, - "currency": "ETH", - "dilutedMarketCap": 140.452596729423, - "high1d": 2.32654158278e-9, - "id": "eip155:8453/erc20:0x07d15798a67253d76cea61f0ea6f57aedc59dffb", - "low1d": 2.22773093641e-9, - "marketCap": 129.082635307026, - "marketCapPercentChange1d": -1.65997, - "price": 2.25467929451e-9, - "priceChange1d": -8.2699184879e-8, - "pricePercentChange14d": -32.30970582175867, - "pricePercentChange1d": -1.6208714761641232, - "pricePercentChange1h": 0.2941338910852457, - "pricePercentChange1y": null, - "pricePercentChange200d": -77.95905579822896, - "pricePercentChange30d": 3.3369888456255006, - "pricePercentChange7d": -13.349111200132851, - "tokenAddress": "0x07d15798a67253D76cea61F0eA6F57AeDC59DffB", - "totalVolume": 0.0630636493509376 - }, - "0x3d63825B0d8669307366E6c8202f656b9E91D368": { - "allTimeHigh": 6.0791902762966e-7, - "allTimeLow": 1.40131462129e-9, - "assetId": "eip155:8453/erc20:0x3d63825b0d8669307366e6c8202f656b9e91d368", - "bondingCurveProgressPercent": null, - "chainId": "0x2105", - "circulatingSupply": 4000000000, - "currency": "ETH", - "dilutedMarketCap": 13.8406767210205, - "high1d": 3.61107998562e-9, - "id": "eip155:8453/erc20:0x3d63825b0d8669307366e6c8202f656b9e91d368", - "liquidity": 11387.8844, - "low1d": 3.43591565796e-9, - "marketCap": 13.8406767210205, - "marketCapPercentChange1d": -3.93333, - "price": 3.45837262305e-9, - "priceChange1d": -3.29129201587e-7, - "pricePercentChange14d": -2.3357451974726313, - "pricePercentChange1d": -4.09713020375724, - "pricePercentChange1h": 0.16441515038346624, - "pricePercentChange1y": -89.85827637768575, - "pricePercentChange200d": -89.90275105023916, - "pricePercentChange30d": -37.529899727974566, - "pricePercentChange7d": -36.41436168250692, - "tokenAddress": "0x3d63825B0d8669307366E6c8202f656b9E91D368", - "totalSupply": 4998268339.84631, - "totalVolume": 0.0265351499441165 - }, - "0x623cD3a3EdF080057892aaF8D773Bbb7A5C9b6e9": { - "allTimeHigh": 0.0000282930811709491, - "allTimeLow": 1.308517071743e-7, - "assetId": "eip155:8453/erc20:0x623cd3a3edf080057892aaf8d773bbb7a5c9b6e9", - "chainId": "0x2105", - "circulatingSupply": 541911440.967264, - "currency": "ETH", - "dilutedMarketCap": null, - "high1d": 2.9787055131682e-7, - "id": "eip155:8453/erc20:0x623cd3a3edf080057892aaf8d773bbb7a5c9b6e9", - "low1d": 2.7582891975252e-7, - "marketCap": 160.912210589189, - "marketCapPercentChange1d": null, - "price": 2.9693451443279e-7, - "priceChange1d": null, - "pricePercentChange14d": null, - "pricePercentChange1d": 0, - "pricePercentChange1h": 0, - "pricePercentChange1y": null, - "pricePercentChange200d": null, - "pricePercentChange30d": null, - "pricePercentChange7d": null, - "tokenAddress": "0x623cD3a3EdF080057892aaF8D773Bbb7A5C9b6e9", - "totalVolume": 1000.3589078184 - }, - "0x88Fb150BDc53A65fe94Dea0c9BA0a6dAf8C6e196": { - "allTimeHigh": 0.023669641199305, - "allTimeLow": 0.0000665548091430097, - "assetId": "eip155:8453/erc20:0x88fb150bdc53a65fe94dea0c9ba0a6daf8c6e196", - "chainId": "0x2105", - "circulatingSupply": 727099970.4255477, - "currency": "ETH", - "dilutedMarketCap": 4536336.15015277, - "high1d": 0.00481028192114908, - "id": "eip155:8453/erc20:0x88fb150bdc53a65fe94dea0c9ba0a6daf8c6e196", - "liquidity": 25394733.905408483, - "low1d": 0.00449139301694592, - "marketCap": 3298369.88046457, - "marketCapPercentChange1d": -5.45313, - "price": 0.00453630694711538, - "priceChange1d": -0.5860760264187057, - "pricePercentChange14d": 9.549562890507982, - "pricePercentChange1d": -5.484734458033978, - "pricePercentChange1h": 0.27955988434552076, - "pricePercentChange1y": -38.457091989408184, - "pricePercentChange200d": -45.076452354811074, - "pricePercentChange30d": 10.19714737918484, - "pricePercentChange7d": 0.2734768865069643, - "tokenAddress": "0x88Fb150BDc53A65fe94Dea0c9BA0a6dAf8C6e196", - "totalVolume": 174421.187161979 - }, - "0xC438B0c0E80A8Fa1B36898d1b36A3fc2eC371C54": { - "allTimeHigh": 0.00000176089338070445, - "allTimeLow": 9.32644248634e-9, - "assetId": "eip155:8453/erc20:0xc438b0c0e80a8fa1b36898d1b36a3fc2ec371c54", - "chainId": "0x2105", - "circulatingSupply": 999999999.999993, - "currency": "ETH", - "dilutedMarketCap": 9.77526070034692, - "high1d": 1.00490398109e-8, - "id": "eip155:8453/erc20:0xc438b0c0e80a8fa1b36898d1b36a3fc2ec371c54", - "low1d": 9.55533977548e-9, - "marketCap": 9.77526070034692, - "marketCapPercentChange1d": -1.37639, - "price": 9.77526070034e-9, - "priceChange1d": -1.95298887221e-7, - "pricePercentChange14d": -4.017200874762987, - "pricePercentChange1d": -0.8887153254685204, - "pricePercentChange1h": 1.2671305504680657, - "pricePercentChange1y": -89.47149524623555, - "pricePercentChange200d": -46.98406565336412, - "pricePercentChange30d": -11.057703277084032, - "pricePercentChange7d": -0.6531534823651103, - "tokenAddress": "0xC438B0c0E80A8Fa1B36898d1b36A3fc2eC371C54", - "totalVolume": 0.00662006865611191 - }, - "0xCa72827a3D211CfD8F6b00Ac98824872b72CAb49": { - "allTimeHigh": 0.000489112699545411, - "allTimeLow": 0.000325322824699935, - "assetId": "eip155:8453/erc20:0xca72827a3d211cfd8f6b00ac98824872b72cab49", - "chainId": "0x2105", - "circulatingSupply": 75655587.465199, - "currency": "ETH", - "dilutedMarketCap": 33809.6337457343, - "high1d": 0.000446932680305366, - "id": "eip155:8453/erc20:0xca72827a3d211cfd8f6b00ac98824872b72cab49", - "liquidity": 23190.7601403022, - "low1d": 0.000446064943174492, - "marketCap": 33809.6337457343, - "marketCapPercentChange1d": 0.19225, - "price": 0.000446929985469556, - "priceChange1d": 0.00176613, - "pricePercentChange14d": 0.13495542348879913, - "pricePercentChange1d": 0.17780131505349114, - "pricePercentChange1h": -0.00012403951379980248, - "pricePercentChange1y": -2.2753388874703075, - "pricePercentChange200d": -0.01097618847535708, - "pricePercentChange30d": -0.003764989536322369, - "pricePercentChange7d": 0.1289981566894027, - "tokenAddress": "0xCa72827a3D211CfD8F6b00Ac98824872b72CAb49", - "totalVolume": 0.016281299686429 - }, - "0xD968196FA6977c4e58F2af5aC01C655ea8332d22": { - "allTimeHigh": 1.24134363191e-9, - "allTimeLow": 1.7475115803e-10, - "assetId": "eip155:8453/erc20:0xd968196fa6977c4e58f2af5ac01c655ea8332d22", - "chainId": "0x2105", - "circulatingSupply": 1000000000000, - "currency": "ETH", - "dilutedMarketCap": null, - "high1d": 2.1401144223e-10, - "id": "eip155:8453/erc20:0xd968196fa6977c4e58f2af5ac01c655ea8332d22", - "low1d": 2.0278850548e-10, - "marketCap": 203.93453604027, - "marketCapPercentChange1d": null, - "price": 2.0393453604e-10, - "priceChange1d": null, - "pricePercentChange14d": null, - "pricePercentChange1d": 0, - "pricePercentChange1h": 0, - "pricePercentChange1y": null, - "pricePercentChange200d": null, - "pricePercentChange30d": null, - "pricePercentChange7d": null, - "tokenAddress": "0xD968196FA6977c4e58F2af5aC01C655ea8332d22", - "totalVolume": 24096.8106952107 - } - }, - "0x38": { - "0x0000000000000000000000000000000000000000": { - "allTimeHigh": 2.02837046289812, - "allTimeLow": 0.0000589530190589262, - "assetId": "eip155:56/slip44:714", - "chainId": "0x38", - "circulatingSupply": 134785404.6, - "currency": "BNB", - "dilutedMarketCap": 134793081.239679, - "high1d": 1.0208700193964, - "id": "eip155:56/slip44:714", - "liquidity": 24211012.802103695, - "low1d": 0.993183300766199, - "marketCap": 134793081.959238, - "marketCapPercentChange1d": -1.18365, - "price": 1.00006796609403, - "priceChange1d": -8.392781575008257, - "pricePercentChange14d": 8.838013662942206, - "pricePercentChange1d": -1.2272858615710187, - "pricePercentChange1h": 0.16068818413752303, - "pricePercentChange1y": 3.1686042052888475, - "pricePercentChange200d": -40.937249206600924, - "pricePercentChange30d": 8.842672837217838, - "pricePercentChange7d": 5.13020022049412, - "tokenAddress": "0x0000000000000000000000000000000000000000", - "totalVolume": 1736806.69848602 - }, - "0x000Ae314E2A2172a039B26378814C252734f556A": { - "allTimeHigh": 0.00356818138496227, - "allTimeLow": 0.000147632394372922, - "assetId": "eip155:56/erc20:0x000ae314e2a2172a039b26378814c252734f556a", - "chainId": "0x38", - "circulatingSupply": 2579922243.4698935, - "currency": "BNB", - "dilutedMarketCap": 7747697.17679333, - "high1d": 0.001025462757428, - "id": "eip155:56/erc20:0x000ae314e2a2172a039b26378814c252734f556a", - "liquidity": 4790543.990589259, - "low1d": 0.000972622580893597, - "marketCap": 2555343.53433793, - "marketCapPercentChange1d": -1.15991, - "price": 0.000990587855966266, - "priceChange1d": -0.007843650335220942, - "pricePercentChange14d": 1.3287347990856841, - "pricePercentChange1d": -1.1587594494266478, - "pricePercentChange1h": 0.2642577610938094, - "pricePercentChange1y": null, - "pricePercentChange200d": -38.13233364844654, - "pricePercentChange30d": 1.429224312589996, - "pricePercentChange7d": 0.13593561184418324, - "tokenAddress": "0x000Ae314E2A2172a039B26378814C252734f556A", - "totalVolume": 187952.731499434 - }, - "0x1AF3F329e8BE154074D8769D1FFa4eE058B1DBc3": { - "allTimeHigh": 0.00156644643373032, - "allTimeLow": 0.00122361675072168, - "assetId": "eip155:56/erc20:0x1af3f329e8be154074d8769d1ffa4ee058b1dbc3", - "chainId": "0x38", - "circulatingSupply": 31102957.95169499, - "currency": "BNB", - "dilutedMarketCap": null, - "high1d": 0.0014928731608682, - "id": "eip155:56/erc20:0x1af3f329e8be154074d8769d1ffa4ee058b1dbc3", - "low1d": 0.00145999041999434, - "marketCap": 46023.0144285128, - "marketCapPercentChange1d": null, - "price": 0.00147969895660695, - "priceChange1d": null, - "pricePercentChange14d": null, - "pricePercentChange1d": -0.02, - "pricePercentChange1h": 0.03, - "pricePercentChange1y": null, - "pricePercentChange200d": null, - "pricePercentChange30d": null, - "pricePercentChange7d": null, - "tokenAddress": "0x1AF3F329e8BE154074D8769D1FFa4eE058B1DBc3", - "totalVolume": 1011.93270401443 - }, - "0x55d398326f99059fF775485246999027B3197955": { - "allTimeHigh": 0.00155460184822008, - "allTimeLow": 0.00139497533044484, - "assetId": "eip155:56/erc20:0x55d398326f99059ff775485246999027b3197955", - "chainId": "0x38", - "circulatingSupply": 9184992539.61384, - "currency": "BNB", - "dilutedMarketCap": 13590527.0788058, - "high1d": 0.00148205376196981, - "id": "eip155:56/erc20:0x55d398326f99059ff775485246999027b3197955", - "liquidity": 9507150363.942354, - "low1d": 0.00147804436977459, - "marketCap": 13590527.0788058, - "marketCapPercentChange1d": -0.08503, - "price": 0.00147984770791852, - "priceChange1d": -0.000340430601630359, - "pricePercentChange14d": -0.0322063239459094, - "pricePercentChange1d": -0.034048150598278024, - "pricePercentChange1h": 0.00581404996661114, - "pricePercentChange1y": -0.0428302882383756, - "pricePercentChange200d": -0.04613295589955028, - "pricePercentChange30d": -0.08244182974357114, - "pricePercentChange7d": -0.02470303236214015, - "tokenAddress": "0x55d398326f99059fF775485246999027B3197955", - "totalVolume": 1263277.47916745 - }, - "0x5CA42204cDaa70d5c773946e69dE942b85CA6706": { - "allTimeHigh": 0.0127406692261219, - "allTimeLow": 0.0000019953766713796, - "assetId": "eip155:56/erc20:0x5ca42204cdaa70d5c773946e69de942b85ca6706", - "chainId": "0x38", - "circulatingSupply": 91800000, - "currency": "BNB", - "dilutedMarketCap": null, - "high1d": 0.00000236941773164109, - "id": "eip155:56/erc20:0x5ca42204cdaa70d5c773946e69de942b85ca6706", - "low1d": 0.00000230481338751991, - "marketCap": 214.93303019038, - "marketCapPercentChange1d": null, - "price": 0.00000234131841165992, - "priceChange1d": null, - "pricePercentChange14d": null, - "pricePercentChange1d": 0, - "pricePercentChange1h": 0, - "pricePercentChange1y": null, - "pricePercentChange200d": null, - "pricePercentChange30d": null, - "pricePercentChange7d": null, - "tokenAddress": "0x5CA42204cDaa70d5c773946e69dE942b85CA6706", - "totalVolume": 445.212919855975 - }, - "0x683e9dCf085E5efCc7925858aAcE94D4b8882024": { - "allTimeHigh": 3.41191423e-12, - "allTimeLow": 1.995212e-14, - "assetId": "eip155:56/erc20:0x683e9dcf085e5efcc7925858aace94d4b8882024", - "chainId": "0x38", - "circulatingSupply": 0, - "currency": "BNB", - "dilutedMarketCap": null, - "high1d": 3.728611e-14, - "id": "eip155:56/erc20:0x683e9dcf085e5efcc7925858aace94d4b8882024", - "low1d": 3.443452e-14, - "marketCap": 0, - "marketCapPercentChange1d": null, - "price": 3.550574e-14, - "priceChange1d": null, - "pricePercentChange14d": null, - "pricePercentChange1d": 0, - "pricePercentChange1h": 0, - "pricePercentChange1y": null, - "pricePercentChange200d": null, - "pricePercentChange30d": null, - "pricePercentChange7d": null, - "tokenAddress": "0x683e9dCf085E5efCc7925858aAcE94D4b8882024", - "totalVolume": 17674583537.9567 - }, - "0xF8A0BF9cF54Bb92F17374d9e9A321E6a111a51bD": { - "allTimeHigh": 0.07802620704876, - "allTimeLow": 0.000219395776833139, - "assetId": "eip155:56/erc20:0xf8a0bf9cf54bb92f17374d9e9a321e6a111a51bd", - "chainId": "0x38", - "circulatingSupply": 727099970.4255477, - "currency": "BNB", - "dilutedMarketCap": 14966341.1641704, - "high1d": 0.0158569388518448, - "id": "eip155:56/erc20:0xf8a0bf9cf54bb92f17374d9e9a321e6a111a51bd", - "liquidity": 25394733.905408483, - "low1d": 0.0148057318878102, - "marketCap": 10882026.218014, - "marketCapPercentChange1d": -5.15101, - "price": 0.0149685949385762, - "priceChange1d": -0.5751111324333795, - "pricePercentChange14d": 9.619839629825584, - "pricePercentChange1d": -5.3843810398898535, - "pricePercentChange1h": 0.3191299402527536, - "pricePercentChange1y": -38.417611823636726, - "pricePercentChange200d": -45.04121855069159, - "pricePercentChange30d": 10.267839548058673, - "pricePercentChange7d": 0.33780295782744973, - "tokenAddress": "0xF8A0BF9cF54Bb92F17374d9e9A321E6a111a51bD", - "totalVolume": 574526.434998599 - } - }, - "0x89": { - "0x0000000000000000000000000000000000001010": { - "allTimeHigh": 14.2105297064184, - "allTimeLow": 0.89727928385806, - "assetId": "eip155:137/slip44:966", - "chainId": "0x89", - "circulatingSupply": 10643422083.23364, - "currency": "POL", - "dilutedMarketCap": 10645690633.0824, - "high1d": 1.05135887998494, - "id": "eip155:137/slip44:966", - "liquidity": 60510.19173914319, - "low1d": 0.990705254741885, - "marketCap": 10645690633.0824, - "marketCapPercentChange1d": -3.96397, - "price": 1.00002471840982, - "priceChange1d": -0.003760478954601507, - "pricePercentChange14d": -4.427381671318122, - "pricePercentChange1d": -3.977658708234026, - "pricePercentChange1h": 0.2537464177575439, - "pricePercentChange1y": -62.021560144973535, - "pricePercentChange200d": -54.63098793051571, - "pricePercentChange30d": 6.913323318502579, - "pricePercentChange7d": -8.75604708259211, - "tokenAddress": "0x0000000000000000000000000000000000001010", - "totalVolume": 582879278.609737 - }, - "0x2791Bca1f2de4661ED88A30C99A7a9449Aa84174": { - "allTimeHigh": 11.3243601071303, - "allTimeLow": 10.7474897124512, - "assetId": "eip155:137/erc20:0x2791bca1f2de4661ed88a30c99a7a9449aa84174", - "chainId": "0x89", - "circulatingSupply": 1086234797.438771, - "currency": "POL", - "dilutedMarketCap": null, - "high1d": 11.1058934336372, - "id": "eip155:137/erc20:0x2791bca1f2de4661ed88a30c99a7a9449aa84174", - "low1d": 10.9080419904757, - "marketCap": 11966693764.9871, - "marketCapPercentChange1d": null, - "price": 11.0166731844748, - "priceChange1d": null, - "pricePercentChange14d": null, - "pricePercentChange1d": -0.1, - "pricePercentChange1h": 0, - "pricePercentChange1y": null, - "pricePercentChange200d": null, - "pricePercentChange30d": null, - "pricePercentChange7d": null, - "tokenAddress": "0x2791Bca1f2de4661ED88A30C99A7a9449Aa84174", - "totalVolume": 208697735.901715 - }, - "0x53E0bca35eC356BD5ddDFebbD1Fc0fD03FaBad39": { - "allTimeHigh": 580.538694207945, - "allTimeLow": 1.63237125851643, - "assetId": "eip155:137/erc20:0x53e0bca35ec356bd5dddfebbd1fc0fd03fabad39", - "chainId": "0x89", - "circulatingSupply": 727099970.4255477, - "currency": "POL", - "dilutedMarketCap": 111261452715.866, - "high1d": 117.980444306776, - "id": "eip155:137/erc20:0x53e0bca35ec356bd5dddfebbd1fc0fd03fabad39", - "liquidity": 25394733.905408483, - "low1d": 110.159145010995, - "marketCap": 80898198975.4851, - "marketCapPercentChange1d": -5.45313, - "price": 111.260736461105, - "priceChange1d": -0.5860760264187057, - "pricePercentChange14d": 9.549562890507982, - "pricePercentChange1d": -5.484734458033978, - "pricePercentChange1h": 0.27955988434552076, - "pricePercentChange1y": -38.457091989408184, - "pricePercentChange200d": -45.076452354811074, - "pricePercentChange30d": 10.19714737918484, - "pricePercentChange7d": 0.2734768865069643, - "tokenAddress": "0x53E0bca35eC356BD5ddDFebbD1Fc0fD03FaBad39", - "totalVolume": 4277979855.48627 - }, - "0xb33EaAd8d922B1083446DC23f610c2567fB5180f": { - "allTimeHigh": 494.834879389391, - "allTimeLow": 11.3463919361325, - "assetId": "eip155:137/erc20:0xb33eaad8d922b1083446dc23f610c2567fb5180f", - "chainId": "0x89", - "circulatingSupply": 635997562.7428479, - "currency": "POL", - "dilutedMarketCap": 35723971407.4518, - "high1d": 41.9706342491892, - "id": "eip155:137/erc20:0xb33eaad8d922b1083446dc23f610c2567fb5180f", - "liquidity": 25788996.39359487, - "low1d": 38.9963373338923, - "marketCap": 25367950326.9606, - "marketCapPercentChange1d": -3.88664, - "price": 39.8776104939803, - "priceChange1d": -0.14793270385247315, - "pricePercentChange14d": 11.797533610679723, - "pricePercentChange1d": -3.925322263653529, - "pricePercentChange1h": 0.010346656659446021, - "pricePercentChange1y": -43.8629380828583, - "pricePercentChange200d": -44.89712834287892, - "pricePercentChange30d": 12.893037122398027, - "pricePercentChange7d": -1.7880864770974902, - "tokenAddress": "0xb33EaAd8d922B1083446DC23f610c2567fB5180f", - "totalVolume": 2503012970.5353 - }, - "0xc2132D05D31c914a87C6611C10748AEb04B58e8F": { - "allTimeHigh": 11.5887420551567, - "allTimeLow": 10.7486353675594, - "assetId": "eip155:137/erc20:0xc2132d05d31c914a87c6611c10748aeb04b58e8f", - "chainId": "0x89", - "circulatingSupply": 4064676256.80415, - "currency": "POL", - "dilutedMarketCap": 44750375661.5168, - "high1d": 11.0159145010995, - "id": "eip155:137/erc20:0xc2132d05d31c914a87c6611c10748aeb04b58e8f", - "liquidity": 158753467.87302837, - "low1d": 11.0041384884979, - "marketCap": 44750375661.5168, - "marketCapPercentChange1d": -0.01865, - "price": 11.0103294324475, - "priceChange1d": -0.000499799877974549, - "pricePercentChange14d": -0.017156270178099318, - "pricePercentChange1d": -0.04998034251347325, - "pricePercentChange1h": 0.02862789282903502, - "pricePercentChange1y": -0.11391889449250431, - "pricePercentChange200d": -0.03486240254428877, - "pricePercentChange30d": -0.0719008113930739, - "pricePercentChange7d": -0.03854745674308781, - "tokenAddress": "0xc2132D05D31c914a87C6611C10748AEb04B58e8F", - "totalVolume": 1611639990.41206 - } - }, - "0x8f": { - "0x0000000000000000000000000000000000000000": { - "allTimeHigh": 1.66243020862296, - "allTimeLow": 0.557227058378067, - "assetId": "eip155:143/slip44:268435779", - "chainId": "0x8f", - "circulatingSupply": 11825165000, - "currency": "MON", - "dilutedMarketCap": 100914612964.205, - "high1d": 1.03934499806736, - "id": "eip155:143/slip44:268435779", - "liquidity": 53644804.84210516, - "low1d": 0.930517788315227, - "marketCap": 11852376663.9911, - "marketCapPercentChange1d": -2.72479, - "price": 0.999949744241782, - "priceChange1d": -0.000864362355085961, - "pricePercentChange14d": -1.8260527562853124, - "pricePercentChange1d": -2.858818566929386, - "pricePercentChange1h": 1.9404298251457675, - "pricePercentChange1y": null, - "pricePercentChange200d": null, - "pricePercentChange30d": -14.170488550559297, - "pricePercentChange7d": -11.139930743691275, - "tokenAddress": "0x0000000000000000000000000000000000000000", - "totalVolume": 3817234564.27235 - }, - "0xacA92E438df0B2401fF60dA7E4337B687a2435DA": { - "allTimeHigh": 36.2929865338674, - "allTimeLow": 33.3584296095708, - "assetId": "eip155:143/erc20:0xaca92e438df0b2401ff60da7e4337b687a2435da", - "chainId": "0x8f", - "circulatingSupply": 32316361.588697, - "currency": "MON", - "dilutedMarketCap": 1099876558.66686, - "high1d": 34.0459535964985, - "id": "eip155:143/erc20:0xaca92e438df0b2401ff60da7e4337b687a2435da", - "liquidity": 85813150.63163133, - "low1d": 34.0298839064009, - "marketCap": 1099876558.66686, - "marketCapPercentChange1d": 3.20193, - "price": 34.0350929373012, - "priceChange1d": -0.000057035796905192, - "pricePercentChange14d": 0.01572917070943231, - "pricePercentChange1d": -0.005705074543817154, - "pricePercentChange1h": -0.0003039376355489215, - "pricePercentChange1y": null, - "pricePercentChange200d": -0.06808755347266159, - "pricePercentChange30d": -0.0042079606346404775, - "pricePercentChange7d": -0.09207498988041965, - "tokenAddress": "0xacA92E438df0B2401fF60dA7E4337B687a2435DA", - "totalVolume": 147313606.846457 - } - }, - "0xa": { - "0x0000000000000000000000000000000000000000": { - "allTimeHigh": 2.22146544314654, - "allTimeLow": 0.000194467885708423, - "assetId": "eip155:10/slip44:60", - "chainId": "0xa", - "circulatingSupply": 120686088.4883335, - "currency": "ETH", - "dilutedMarketCap": 120720128.093345, - "high1d": 1.03975748342298, - "id": "eip155:10/slip44:60", - "liquidity": 223330440.70177978, - "low1d": 0.991627715853388, - "marketCap": 120720128.093345, - "marketCapPercentChange1d": -3.56045, - "price": 1.00011644865542, - "priceChange1d": -81.83246205101068, - "pricePercentChange14d": -3.2872704250270655, - "pricePercentChange1d": -3.5447206118919516, - "pricePercentChange1h": 0.2582454430094721, - "pricePercentChange1y": -12.783633768681588, - "pricePercentChange200d": -46.63493727333306, - "pricePercentChange30d": -4.507052948151581, - "pricePercentChange7d": -2.821105875967681, - "tokenAddress": "0x0000000000000000000000000000000000000000", - "totalVolume": 8094503.6751173 - }, - "0x0994206dfE8De6Ec6920FF4D779B0d950605Fb53": { - "allTimeHigh": 0.00690327106704588, - "allTimeLow": 0.0000810040696178264, - "assetId": "eip155:10/erc20:0x0994206dfe8de6ec6920ff4d779b0d950605fb53", - "chainId": "0xa", - "circulatingSupply": 1514071548, - "currency": "ETH", - "dilutedMarketCap": 272993.747036657, - "high1d": 0.000126966740056742, - "id": "eip155:10/erc20:0x0994206dfe8de6ec6920ff4d779b0d950605fb53", - "liquidity": 389830586.4304264, - "low1d": 0.00011218466735937, - "marketCap": 173604.548609458, - "marketCapPercentChange1d": -7.67087, - "price": 0.000114656730075897, - "priceChange1d": -0.021277513210629484, - "pricePercentChange14d": 8.564341628588119, - "pricePercentChange1d": -7.693675388847159, - "pricePercentChange1h": 0.4797973673074949, - "pricePercentChange1y": -63.62616496077348, - "pricePercentChange200d": -54.71182008657508, - "pricePercentChange30d": 15.742847581333777, - "pricePercentChange7d": 0.4894960376092653, - "tokenAddress": "0x0994206dfE8De6Ec6920FF4D779B0d950605Fb53", - "totalVolume": 25509.302304867 - }, - "0x0b2C639c533813f4Aa9D7837CAf62653d097Ff85": { - "allTimeHigh": 0.000468452291667459, - "allTimeLow": 0.000394185760714353, - "assetId": "eip155:10/erc20:0x0b2c639c533813f4aa9d7837caf62653d097ff85", - "chainId": "0xa", - "circulatingSupply": 76796921674.73596, - "currency": "ETH", - "dilutedMarketCap": 34512147.8943669, - "high1d": 0.000449110556779283, - "id": "eip155:10/erc20:0x0b2c639c533813f4aa9d7837caf62653d097ff85", - "liquidity": 3840460242.036409, - "low1d": 0.000448916977740253, - "marketCap": 34485816.11919, - "marketCapPercentChange1d": 0.16289, - "price": 0.000449078667888863, - "priceChange1d": 0.00018845, - "pricePercentChange14d": 0.011809346958569604, - "pricePercentChange1d": 0.0188514096130968, - "pricePercentChange1h": 0.008489031317734158, - "pricePercentChange1y": -0.003625826646326508, - "pricePercentChange200d": 0.005680937362676892, - "pricePercentChange30d": -0.0024888694324691797, - "pricePercentChange7d": 0.0036215549340642412, - "tokenAddress": "0x0b2C639c533813f4Aa9D7837CAf62653d097Ff85", - "totalVolume": 7374042.18453205 - }, - "0x4200000000000000000000000000000000000042": { - "allTimeHigh": 0.00217383422020182, - "allTimeLow": 0.0000449471664777846, - "assetId": "eip155:10/erc20:0x4200000000000000000000000000000000000042", - "chainId": "0xa", - "circulatingSupply": 2150875957, - "currency": "ETH", - "dilutedMarketCap": 265345.342190478, - "high1d": 0.0000661739390151727, - "id": "eip155:10/erc20:0x4200000000000000000000000000000000000042", - "liquidity": 1165291.2050915887, - "low1d": 0.0000605817055697733, - "marketCap": 132882.249599044, - "marketCapPercentChange1d": -5.82819, - "price": 0.0000617665350476437, - "priceChange1d": -0.008547286150973471, - "pricePercentChange14d": 12.597174623988316, - "pricePercentChange1d": -5.851532673623518, - "pricePercentChange1h": 0.5463510769544153, - "pricePercentChange1y": -82.68246632286184, - "pricePercentChange200d": -69.91166721908262, - "pricePercentChange30d": 15.232922699398573, - "pricePercentChange7d": -10.572598608621297, - "tokenAddress": "0x4200000000000000000000000000000000000042", - "totalVolume": 26195.1721531416 - }, - "0xDA10009cBd5D07dd0CeCc66161FC93D7c9000da1": { - "allTimeHigh": 0.000476536799097962, - "allTimeLow": 0.00042932417398243, - "assetId": "eip155:10/erc20:0xda10009cbd5d07dd0cecc66161fc93d7c9000da1", - "chainId": "0xa", - "circulatingSupply": 14826507.10279941, - "currency": "ETH", - "dilutedMarketCap": null, - "high1d": 0.000453332529212905, - "id": "eip155:10/erc20:0xda10009cbd5d07dd0cecc66161fc93d7c9000da1", - "low1d": 0.00044545650868861, - "marketCap": 6656.69724545923, - "marketCapPercentChange1d": null, - "price": 0.000448972721579338, - "priceChange1d": null, - "pricePercentChange14d": null, - "pricePercentChange1d": -0.01, - "pricePercentChange1h": -0.11, - "pricePercentChange1y": null, - "pricePercentChange200d": null, - "pricePercentChange30d": null, - "pricePercentChange7d": null, - "tokenAddress": "0xDA10009cBd5D07dd0CeCc66161FC93D7c9000da1", - "totalVolume": 100.888190203282 - } - }, - "0xa4b1": { - "0x0000000000000000000000000000000000000000": { - "allTimeHigh": 2.22146544314654, - "allTimeLow": 0.000194467885708423, - "assetId": "eip155:42161/slip44:60", - "chainId": "0xa4b1", - "circulatingSupply": 120686088.4883335, - "currency": "ETH", - "dilutedMarketCap": 120720128.093345, - "high1d": 1.03975748342298, - "id": "eip155:42161/slip44:60", - "liquidity": 223330440.70177978, - "low1d": 0.991627715853388, - "marketCap": 120720128.093345, - "marketCapPercentChange1d": -3.56045, - "price": 1.00011644865542, - "priceChange1d": -81.83246205101068, - "pricePercentChange14d": -3.2872704250270655, - "pricePercentChange1d": -3.5447206118919516, - "pricePercentChange1h": 0.2582454430094721, - "pricePercentChange1y": -12.783633768681588, - "pricePercentChange200d": -46.63493727333306, - "pricePercentChange30d": -4.507052948151581, - "pricePercentChange7d": -2.821105875967681, - "tokenAddress": "0x0000000000000000000000000000000000000000", - "totalVolume": 8094503.6751173 - }, - "0x306fD3e7b169Aa4ee19412323e1a5995B8c1a1f4": { - "allTimeHigh": 0.0000012736405615002, - "allTimeLow": 1.4792193e-13, - "assetId": "eip155:42161/erc20:0x306fd3e7b169aa4ee19412323e1a5995b8c1a1f4", - "bondingCurveProgressPercent": null, - "chainId": "0xa4b1", - "circulatingSupply": 59996494221475.84, - "currency": "ETH", - "dilutedMarketCap": 36.2824986576759, - "high1d": 6.068364e-13, - "id": "eip155:42161/erc20:0x306fd3e7b169aa4ee19412323e1a5995b8c1a1f4", - "liquidity": 1914495.8632, - "low1d": 5.9029889e-13, - "marketCap": 36.2824986576759, - "marketCapPercentChange1d": 1.63993, - "price": 6.0454004e-13, - "priceChange1d": 2.2621e-11, - "pricePercentChange14d": 16.337858584806682, - "pricePercentChange1d": 1.748403301650532, - "pricePercentChange1h": null, - "pricePercentChange1y": -74.44657673737993, - "pricePercentChange200d": -52.30050908702219, - "pricePercentChange30d": -24.73610551316709, - "pricePercentChange7d": 16.337858584806682, - "tokenAddress": "0x306fD3e7b169Aa4ee19412323e1a5995B8c1a1f4", - "totalVolume": 0.00175022561958053 - }, - "0xaf88d065e77c8cC2239327C5EDb3A432268e5831": { - "allTimeHigh": 0.000468452291667459, - "allTimeLow": 0.000394185760714353, - "assetId": "eip155:42161/erc20:0xaf88d065e77c8cc2239327c5edb3a432268e5831", - "chainId": "0xa4b1", - "circulatingSupply": 76796921674.73596, - "currency": "ETH", - "dilutedMarketCap": 34512147.8943669, - "high1d": 0.000449110556779283, - "id": "eip155:42161/erc20:0xaf88d065e77c8cc2239327c5edb3a432268e5831", - "liquidity": 3840460242.036409, - "low1d": 0.000448916977740253, - "marketCap": 34485816.11919, - "marketCapPercentChange1d": 0.16289, - "price": 0.000449078667888863, - "priceChange1d": 0.00018845, - "pricePercentChange14d": 0.011809346958569604, - "pricePercentChange1d": 0.0188514096130968, - "pricePercentChange1h": 0.008489031317734158, - "pricePercentChange1y": -0.003625826646326508, - "pricePercentChange200d": 0.005680937362676892, - "pricePercentChange30d": -0.0024888694324691797, - "pricePercentChange7d": 0.0036215549340642412, - "tokenAddress": "0xaf88d065e77c8cC2239327C5EDb3A432268e5831", - "totalVolume": 7374042.18453205 - } - }, - "0xa86a": { - "0x0000000000000000000000000000000000000000": { - "allTimeHigh": 15.1318980355623, - "allTimeLow": 0.292282798700155, - "assetId": "eip155:43114/slip44:9005", - "chainId": "0xa86a", - "circulatingSupply": 431771961.1772119, - "currency": "AVAX", - "dilutedMarketCap": 463273992.345079, - "high1d": 1.0553496767352, - "id": "eip155:43114/slip44:9005", - "liquidity": 125505.00371154159, - "low1d": 0.986454445613023, - "marketCap": 431616308.897371, - "marketCapPercentChange1d": -4.57326, - "price": 1.00002471840982, - "priceChange1d": -0.45020154276195257, - "pricePercentChange14d": 4.310020620896604, - "pricePercentChange1d": -4.489963245795265, - "pricePercentChange1h": 0.36065039902351126, - "pricePercentChange1y": -59.64013936629286, - "pricePercentChange200d": -53.20853127219428, - "pricePercentChange30d": 2.302326755899511, - "pricePercentChange7d": -1.56460624937826, - "tokenAddress": "0x0000000000000000000000000000000000000000", - "totalVolume": 23624967.2557266 - }, - "0xB97EF9Ef8734C71904D8002F8b6Bc66Dd9c48a6E": { - "allTimeHigh": 0.108875342515808, - "allTimeLow": 0.0916146862252839, - "assetId": "eip155:43114/erc20:0xb97ef9ef8734c71904d8002f8b6bc66dd9c48a6e", - "chainId": "0xa86a", - "circulatingSupply": 76796921674.73596, - "currency": "AVAX", - "dilutedMarketCap": 8021141084.78472, - "high1d": 0.104380033071799, - "id": "eip155:43114/erc20:0xb97ef9ef8734c71904d8002f8b6bc66dd9c48a6e", - "liquidity": 3840460242.036409, - "low1d": 0.104335042398142, - "marketCap": 8015021185.08003, - "marketCapPercentChange1d": 0.16289, - "price": 0.104372621615118, - "priceChange1d": 0.00018845, - "pricePercentChange14d": 0.011809346958569604, - "pricePercentChange1d": 0.0188514096130968, - "pricePercentChange1h": 0.008489031317734158, - "pricePercentChange1y": -0.003625826646326508, - "pricePercentChange200d": 0.005680937362676892, - "pricePercentChange30d": -0.0024888694324691797, - "pricePercentChange7d": 0.0036215549340642412, - "tokenAddress": "0xB97EF9Ef8734C71904D8002F8b6Bc66Dd9c48a6E", - "totalVolume": 1713838063.87025 - } - }, - "0xaa36a7": {}, - "0xe708": { - "0x0000000000000000000000000000000000000000": { - "allTimeHigh": 2.22146544314654, - "allTimeLow": 0.000194467885708423, - "assetId": "eip155:59144/slip44:60", - "chainId": "0xe708", - "circulatingSupply": 120686088.4883335, - "currency": "ETH", - "dilutedMarketCap": 120720128.093345, - "high1d": 1.03975748342298, - "id": "eip155:59144/slip44:60", - "liquidity": 223330440.70177978, - "low1d": 0.991627715853388, - "marketCap": 120720128.093345, - "marketCapPercentChange1d": -3.56045, - "price": 1.00011644865542, - "priceChange1d": -81.83246205101068, - "pricePercentChange14d": -3.2872704250270655, - "pricePercentChange1d": -3.5447206118919516, - "pricePercentChange1h": 0.2582454430094721, - "pricePercentChange1y": -12.783633768681588, - "pricePercentChange200d": -46.63493727333306, - "pricePercentChange30d": -4.507052948151581, - "pricePercentChange7d": -2.821105875967681, - "tokenAddress": "0x0000000000000000000000000000000000000000", - "totalVolume": 8094503.6751173 - }, - "0x176211869cA2b568f2A7D4EE941E073a821EE1ff": { - "allTimeHigh": 0.000507527410914889, - "allTimeLow": 0.000413608789816136, - "assetId": "eip155:59144/erc20:0x176211869ca2b568f2a7d4ee941e073a821ee1ff", - "chainId": "0xe708", - "circulatingSupply": 89149161.205714, - "currency": "ETH", - "dilutedMarketCap": 40057.0226482619, - "high1d": 0.000450037580297981, - "id": "eip155:59144/erc20:0x176211869ca2b568f2a7d4ee941e073a821ee1ff", - "liquidity": 1651097.4105562274, - "low1d": 0.000446811412693909, - "marketCap": 40057.0226482619, - "marketCapPercentChange1d": -0.04147, - "price": 0.000449588440996286, - "priceChange1d": 0.0019428, - "pricePercentChange14d": 0.1593580198994818, - "pricePercentChange1d": 0.19452603756965092, - "pricePercentChange1h": 0.21174908218567134, - "pricePercentChange1y": 0.3091859694516067, - "pricePercentChange200d": 0.11592036903700619, - "pricePercentChange30d": 0.23421824343825173, - "pricePercentChange7d": 0.24499504980210163, - "tokenAddress": "0x176211869cA2b568f2A7D4EE941E073a821EE1ff", - "totalVolume": 169.907601273857 - }, - "0xacA92E438df0B2401fF60dA7E4337B687a2435DA": { - "allTimeHigh": 0.000478782495606435, - "allTimeLow": 0.000440069382636171, - "assetId": "eip155:59144/erc20:0xaca92e438df0b2401ff60da7e4337b687a2435da", - "chainId": "0xe708", - "circulatingSupply": 32316361.588697, - "currency": "ETH", - "dilutedMarketCap": 14509.8893400132, - "high1d": 0.000449139301694592, - "id": "eip155:59144/erc20:0xaca92e438df0b2401ff60da7e4337b687a2435da", - "liquidity": 85813150.63163133, - "low1d": 0.000448927307944192, - "marketCap": 14509.8893400132, - "marketCapPercentChange1d": 3.19028, - "price": 0.000449037347073107, - "priceChange1d": 0.00020092, - "pricePercentChange14d": 0.02494576759028871, - "pricePercentChange1d": 0.020100105040449668, - "pricePercentChange1h": 0.0031125470240999315, - "pricePercentChange1y": null, - "pricePercentChange200d": -0.05887868042649664, - "pricePercentChange30d": 0.005006799010172332, - "pricePercentChange7d": -0.08286832731188067, - "tokenAddress": "0xacA92E438df0B2401fF60dA7E4337B687a2435DA", - "totalVolume": 1942.42327951112 - } - } - }, - "multichainNetworkConfigurationsByChainId": { - "bip122:000000000019d6689c085ae165831e93": { - "chainId": "bip122:000000000019d6689c085ae165831e93", - "name": "Bitcoin", - "nativeCurrency": "bip122:000000000019d6689c085ae165831e93/slip44:0", - "isEvm": false - }, - "bip122:000000000933ea01ad0ee984209779ba": { - "chainId": "bip122:000000000933ea01ad0ee984209779ba", - "name": "Bitcoin Testnet", - "nativeCurrency": "bip122:000000000933ea01ad0ee984209779ba/slip44:0", - "isEvm": false - }, - "bip122:00000000da84f2bafbbc53dee25a72ae": { - "chainId": "bip122:00000000da84f2bafbbc53dee25a72ae", - "name": "Bitcoin Testnet4", - "nativeCurrency": "bip122:00000000da84f2bafbbc53dee25a72ae/slip44:0", - "isEvm": false - }, - "bip122:00000008819873e925422c1ff0f99f7c": { - "chainId": "bip122:00000008819873e925422c1ff0f99f7c", - "name": "Bitcoin Mutinynet", - "nativeCurrency": "bip122:00000008819873e925422c1ff0f99f7c/slip44:0", - "isEvm": false - }, - "bip122:regtest": { - "chainId": "bip122:regtest", - "name": "Bitcoin Regtest", - "nativeCurrency": "bip122:regtest/slip44:0", - "isEvm": false - }, - "solana:5eykt4UsFv8P8NJdTREpY1vzqKqZKvdp": { - "chainId": "solana:5eykt4UsFv8P8NJdTREpY1vzqKqZKvdp", - "name": "Solana", - "nativeCurrency": "solana:5eykt4UsFv8P8NJdTREpY1vzqKqZKvdp/slip44:501", - "isEvm": false - }, - "solana:4uhcVJyU9pJkvQyS88uRDiswHXSCkY3z": { - "chainId": "solana:4uhcVJyU9pJkvQyS88uRDiswHXSCkY3z", - "name": "Solana Testnet", - "nativeCurrency": "solana:4uhcVJyU9pJkvQyS88uRDiswHXSCkY3z/slip44:501", - "isEvm": false - }, - "solana:EtWTRABZaYq6iMfeYKouRu166VU2xqa1": { - "chainId": "solana:EtWTRABZaYq6iMfeYKouRu166VU2xqa1", - "name": "Solana Devnet", - "nativeCurrency": "solana:EtWTRABZaYq6iMfeYKouRu166VU2xqa1/slip44:501", - "isEvm": false - }, - "tron:728126428": { - "chainId": "tron:728126428", - "name": "Tron", - "nativeCurrency": "tron:728126428/slip44:195", - "isEvm": false - }, - "tron:3448148188": { - "chainId": "tron:3448148188", - "name": "Tron Nile", - "nativeCurrency": "tron:3448148188/slip44:195", - "isEvm": false - }, - "tron:2494104990": { - "chainId": "tron:2494104990", - "name": "Tron Shasta", - "nativeCurrency": "tron:2494104990/slip44:195", - "isEvm": false - } - }, - "selectedMultichainNetworkChainId": "tron:728126428", - "isEvmSelected": true, - "networksWithTransactionActivity": {}, - "selectedNetworkClientId": "9a1eafde-5f04-434b-b011-e9de5c50baf0", - "networksMetadata": { - "1394e455-b6e3-4de8-828f-a22e0304d0fb": { - "EIPS": { - "1559": true - }, - "status": "available" - }, - "48f1466d-e206-4702-b7e0-9ff67aebe410": { - "EIPS": { - "1559": true - }, - "status": "available" - }, - "513895d9-e255-4075-9b95-99c38266dcf5": { - "EIPS": { - "1559": true - }, - "status": "available" - }, - "9a1eafde-5f04-434b-b011-e9de5c50baf0": { - "EIPS": { - "1559": true - }, - "status": "available" - }, - "9bdb2902-cd78-4c1c-bb25-a5be100259a1": { - "EIPS": { - "1559": true - }, - "status": "available" - }, - "arbitrum-mainnet": { - "EIPS": { - "1559": true - }, - "status": "available" - }, - "d108790b-593d-4fec-88e8-69229f9c58e0": { - "EIPS": { - "1559": true - }, - "status": "available" - }, - "ed27287b-32ec-498c-974c-713308e966da": { - "EIPS": { - "1559": true - }, - "status": "available" - }, - "linea-mainnet": { - "EIPS": { - "1559": true - }, - "status": "available" - }, - "linea-sepolia": { - "EIPS": {}, - "status": "available" - }, - "mainnet": { - "EIPS": { - "1559": true - }, - "status": "available" - }, - "megaeth-testnet-v2": { - "EIPS": {}, - "status": "available" - }, - "monad-testnet": { - "EIPS": {}, - "status": "available" - }, - "polygon-mainnet": { - "EIPS": { - "1559": true - }, - "status": "available" - }, - "sepolia": { - "EIPS": {}, - "status": "available" - } - }, - "networkConfigurationsByChainId": { - "0x1": { - "blockExplorerUrls": ["https://etherscan.io"], - "chainId": "0x1", - "defaultBlockExplorerUrlIndex": 0, - "defaultRpcEndpointIndex": 0, - "name": "Ethereum", - "nativeCurrency": "ETH", - "rpcEndpoints": [ - { - "failoverUrls": [], - "networkClientId": "mainnet", - "type": "infura", - "url": "https://mainnet.infura.io/v3/{infuraProjectId}" - } - ] - }, - "0x10e6": { - "blockExplorerUrls": ["https://megaeth.blockscout.com/"], - "chainId": "0x10e6", - "defaultBlockExplorerUrlIndex": 0, - "defaultRpcEndpointIndex": 0, - "lastUpdatedAt": 1772568303713, - "name": "MegaETH", - "nativeCurrency": "ETH", - "rpcEndpoints": [ - { - "failoverUrls": [], - "networkClientId": "d108790b-593d-4fec-88e8-69229f9c58e0", - "type": "custom", - "url": "https://megaeth-mainnet.infura.io/v3/b6bf7d3508c941499b10025c0776eaf8" - } - ] - }, - "0x144": { - "blockExplorerUrls": ["https://explorer.zksync.io/"], - "chainId": "0x144", - "defaultBlockExplorerUrlIndex": 0, - "defaultRpcEndpointIndex": 0, - "lastUpdatedAt": 1777413318059, - "name": "zkSync Era", - "nativeCurrency": "ETH", - "rpcEndpoints": [ - { - "failoverUrls": [], - "networkClientId": "513895d9-e255-4075-9b95-99c38266dcf5", - "type": "custom", - "url": "https://mainnet.era.zksync.io" - } - ] - }, - "0x18c7": { - "blockExplorerUrls": ["https://megaeth-testnet-v2.blockscout.com"], - "chainId": "0x18c7", - "defaultBlockExplorerUrlIndex": 0, - "defaultRpcEndpointIndex": 0, - "name": "MegaETH Testnet", - "nativeCurrency": "MegaETH", - "rpcEndpoints": [ - { - "failoverUrls": [], - "networkClientId": "megaeth-testnet-v2", - "type": "custom", - "url": "https://carrot.megaeth.com/rpc" - } - ] - }, - "0x2105": { - "blockExplorerUrls": ["https://basescan.org"], - "chainId": "0x2105", - "defaultBlockExplorerUrlIndex": 0, - "defaultRpcEndpointIndex": 0, - "lastUpdatedAt": 1778794279956, - "name": "Base", - "nativeCurrency": "ETH", - "rpcEndpoints": [ - { - "failoverUrls": [], - "networkClientId": "9bdb2902-cd78-4c1c-bb25-a5be100259a1", - "type": "custom", - "url": "https://base-mainnet.infura.io/v3/b6bf7d3508c941499b10025c0776eaf8" - } - ] - }, - "0x279f": { - "blockExplorerUrls": ["https://testnet.monadexplorer.com"], - "chainId": "0x279f", - "defaultBlockExplorerUrlIndex": 0, - "defaultRpcEndpointIndex": 0, - "name": "Monad Testnet", - "nativeCurrency": "MON", - "rpcEndpoints": [ - { - "failoverUrls": [], - "networkClientId": "monad-testnet", - "type": "custom", - "url": "https://testnet-rpc.monad.xyz" - } - ] - }, - "0x38": { - "blockExplorerUrls": ["https://bscscan.com/"], - "chainId": "0x38", - "defaultBlockExplorerUrlIndex": 0, - "defaultRpcEndpointIndex": 0, - "lastUpdatedAt": 1777411262318, - "name": "BNB Chain", - "nativeCurrency": "BNB", - "rpcEndpoints": [ - { - "failoverUrls": [], - "networkClientId": "9a1eafde-5f04-434b-b011-e9de5c50baf0", - "type": "custom", - "url": "https://bsc-mainnet.infura.io/v3/b6bf7d3508c941499b10025c0776eaf8" - } - ] - }, - "0x89": { - "blockExplorerUrls": ["https://polygonscan.com"], - "chainId": "0x89", - "defaultBlockExplorerUrlIndex": 0, - "defaultRpcEndpointIndex": 0, - "name": "Polygon", - "nativeCurrency": "POL", - "rpcEndpoints": [ - { - "failoverUrls": [], - "networkClientId": "polygon-mainnet", - "type": "infura", - "url": "https://polygon-mainnet.infura.io/v3/{infuraProjectId}" - } - ] - }, - "0x8f": { - "blockExplorerUrls": ["https://monadscan.com/"], - "chainId": "0x8f", - "defaultBlockExplorerUrlIndex": 0, - "defaultRpcEndpointIndex": 0, - "lastUpdatedAt": 1777413745202, - "name": "Monad", - "nativeCurrency": "MON", - "rpcEndpoints": [ - { - "failoverUrls": [], - "networkClientId": "1394e455-b6e3-4de8-828f-a22e0304d0fb", - "type": "custom", - "url": "https://monad-mainnet.infura.io/v3/b6bf7d3508c941499b10025c0776eaf8" - } - ] - }, - "0xa": { - "blockExplorerUrls": ["https://optimistic.etherscan.io/"], - "chainId": "0xa", - "defaultBlockExplorerUrlIndex": 0, - "defaultRpcEndpointIndex": 0, - "lastUpdatedAt": 1778267093190, - "name": "OP", - "nativeCurrency": "ETH", - "rpcEndpoints": [ - { - "failoverUrls": [], - "networkClientId": "48f1466d-e206-4702-b7e0-9ff67aebe410", - "type": "custom", - "url": "https://optimism-mainnet.infura.io/v3/b6bf7d3508c941499b10025c0776eaf8" - } - ] - }, - "0xa4b1": { - "blockExplorerUrls": ["https://arbiscan.io"], - "chainId": "0xa4b1", - "defaultBlockExplorerUrlIndex": 0, - "defaultRpcEndpointIndex": 0, - "name": "Arbitrum", - "nativeCurrency": "ETH", - "rpcEndpoints": [ - { - "failoverUrls": [], - "networkClientId": "arbitrum-mainnet", - "type": "infura", - "url": "https://arbitrum-mainnet.infura.io/v3/{infuraProjectId}" - } - ] - }, - "0xa86a": { - "blockExplorerUrls": ["https://snowtrace.io/"], - "chainId": "0xa86a", - "defaultBlockExplorerUrlIndex": 0, - "defaultRpcEndpointIndex": 0, - "lastUpdatedAt": 1777412764053, - "name": "Avalanche", - "nativeCurrency": "AVAX", - "rpcEndpoints": [ - { - "failoverUrls": [], - "networkClientId": "ed27287b-32ec-498c-974c-713308e966da", - "type": "custom", - "url": "https://avalanche-mainnet.infura.io/v3/b6bf7d3508c941499b10025c0776eaf8" - } - ] - }, - "0xaa36a7": { - "blockExplorerUrls": ["https://sepolia.etherscan.io"], - "chainId": "0xaa36a7", - "defaultBlockExplorerUrlIndex": 0, - "defaultRpcEndpointIndex": 0, - "name": "Sepolia", - "nativeCurrency": "SepoliaETH", - "rpcEndpoints": [ - { - "failoverUrls": [], - "networkClientId": "sepolia", - "type": "infura", - "url": "https://sepolia.infura.io/v3/{infuraProjectId}" - } - ] - }, - "0xe705": { - "blockExplorerUrls": ["https://sepolia.lineascan.build"], - "chainId": "0xe705", - "defaultBlockExplorerUrlIndex": 0, - "defaultRpcEndpointIndex": 0, - "name": "Linea Sepolia", - "nativeCurrency": "LineaETH", - "rpcEndpoints": [ - { - "failoverUrls": [], - "networkClientId": "linea-sepolia", - "type": "infura", - "url": "https://linea-sepolia.infura.io/v3/{infuraProjectId}" - } - ] - }, - "0xe708": { - "blockExplorerUrls": ["https://lineascan.build"], - "chainId": "0xe708", - "defaultBlockExplorerUrlIndex": 0, - "defaultRpcEndpointIndex": 0, - "name": "Linea", - "nativeCurrency": "ETH", - "rpcEndpoints": [ - { - "failoverUrls": [], - "networkClientId": "linea-mainnet", - "type": "infura", - "url": "https://linea-mainnet.infura.io/v3/{infuraProjectId}" - } - ] - } - }, - "keyrings": [ - { - "type": "HD Key Tree", - "accounts": [ - "0x30e8ccad5a980bdf30447f8c2c48e70989d9d294", - "0xf25bd11c334507fd007d584e2d0b7b2c6543f714", - "0xe2f39519240814a77047490357ced4d094b6c9c7", - "0x452ca3dad6db7f3a47bbf15b758b6749db579bbc", - "0x2b6a82d1fea4d5b137095ca5306ba2589b630a08", - "0x94d1362400e999b38c845ca2c305c084031dae84", - "0x83ad6a1294d949d514361326bcebae4f73957327", - "0xbcc30cc9b8109f87fcede0c57e3a8c3dc979e3d0", - "0x3823c59973351f50e8b985e182b81300dae9bb45", - "0xc9442048fd0c34b684035a82188b69c4ee5e8f21" - ], - "metadata": { - "id": "01KJ6E9MG4VY87VPKWJPR6W39K", - "name": "" - } - }, - { - "type": "Snap Keyring", - "accounts": [ - "THV8AzsmaMCuCEW3xmxeHQe3nfVjcPESnG", - "TTU9eC5J56EhSRhw56NqZW48bJFCC1V4zt", - "TLQw3YKJkcBdBsuR4eUxXAYRjQdpD6eEMD", - "TJQTuKiGEYBoFaScz3WdpYYVyA7osnLLMa", - "TNhtgmd4AcnN4eB6AqBejjvSJppjg33kKV", - "TQ2WcfeudHttr9ef9PykE4Vf5upUDhzCKy", - "TPhMtQEUfTrEc3v6M75cnRfbSC41MZcaDB", - "TQEG7f85Eawvcw3QV4JsMfHJvXcCC8Kxq5", - "TU2aNJSfrhLZnSvPRCiAHdpLBhxW2n8HA8", - "TWYHHhNY6TA3sVLbkZ4suQDMuKxYqLPDja", - "TXmjzabcG63GjXgGKuaStJh6oCorb8jyja", - "TVnpirfVZPZg4eybigftt2bGcLVawnLVHy", - "TFZKVArzmNQTpv3bKe1QUkCXruf8PTuJdG", - "TVgYW8xdwbKPw5MkiYbz5Vmto9wna2zNdr", - "TGhD1GruvbKNbhAUBxqiHQVpXe4tL4WzMN", - "TGzh1crEiU8jT2XNix6NWMVFCtwNyEiiX5", - "bc1q2pxsagdzfdn6k6umvf9gj3eme7a27p7acym9g2", - "bc1qkv7fs9jkan5fk4dal9zm4hltvx3022mmnzt09l", - "bc1qjx6jn6jlkrglaqtt35hr0sc7qsehkuqyq6lmys", - "bc1q4802rfdtl8x6fc2lfrerpuqn3707mz9p6xaw5v", - "bc1qx95r6rrjndjmnc353mg0da5545smp9sakzxxtl", - "bc1qmkhzc8tx8xkkwzqfez4nuk27qemjg5mvf54csk", - "bc1qc5jermkwtwa4zput0tjrxqrq03906xfw0mtanx", - "bc1qc7s93vamc0zduhuv5aswq9a9lp5k4za20tl05l", - "bc1qlrssy7r7vfstz30g78d6duzfg0clj7m380punr", - "bc1quktjtsfqgk2y35vlucwvzczfqzkpawp066v3ww", - "bc1qklk4c2g7pk2eertfh0zgw9gn6gaq7px9stmtsz", - "bc1qzzgcr8ekdfgyjad8fdfmctj0jv0k6ntkj3jpxp", - "bc1q07mlsqrpt80trs5zffk4ysl35s7e9tltazgnne", - "bc1q20l4mt5f6k5k3utw6vwae83r5r9lzj3dd0567k", - "bc1q79rp7e2avw8lnvrlaykt7uh4q7etkrau5nytjd", - "bc1qntcy866amnqthda3j8uhtjd75gl0562sfaudwz", - "8jKM7u4xsyvDpnqL5DQMVrh8AXxZKJPKJw5QsM7KEF8J", - "D17b35MvfEann7FDStSUWH6EAXCyfvjBXJmx8zwCeMg5", - "EakrRNLYP3WCatjriJzKSy4HRbmHA4ogdN11dwPPQmJP", - "Bz3cfju4DDyduz7mRbgV7tN4aKg2mmZp4hqUc5dUJWct", - "HhoQAMYGpUr733KFgZJuZxwVVfqMKLgpChjzehYTRW4C", - "GBnbPgkU6Nz1iH8nE1aPc4K5vLt7Y8TLDJm55WEGVdK5", - "4fhPk4yRhMPQL21Ua2MMUxC2p5VT9q2K4Uep2aGAtYGJ", - "F7nHkrzPrE6J8r8jcvLPVE3KbuwGzosGWjiRzXyuWPx1", - "3PGGUjEUt8jUpqzfAB3bh7A3NWDZhqNcdtCGqeipT6bV", - "DRZLWUT14336p9NRrquuwt759BSydintJFGiRT6refdA", - "CyGir7UdxRCsNXkA89qH1P5p3Zhx11XxsE97WSfNMnLT", - "ATK5qHMB4bNuPh6Hj3RoCLRQrUafg9PoSdR5RhEf6nyz", - "FauUtcWJ81uyS6naBZD6uSdjNuJvuD73tUnSLJMZUP2e", - "uik8nmbvhYfhj1n9hrJ4vigneMrr3qbbbbWuhLLSboP", - "fXSVz3jyNokxeNN1Z6bvh4eT4ZuXv1gtpGaSg4HxxXw", - "ALcEx6ANnJams9dX2jUwamfSc2P7gA66tUt83o3F2ipv" - ], - "metadata": { - "id": "01KJ6E9MGBJ0TR5BZ3PPW4017R", - "name": "" - } - }, - { - "type": "Trezor Hardware", - "accounts": [], - "metadata": { - "id": "01KKHBZ0K2HXJ8BCXQRHJN2V5Q", - "name": "" - } - }, - { - "type": "OneKey Hardware", - "accounts": [], - "metadata": { - "id": "01KKHBZ0KPME6MM0KN3R0HJM65", - "name": "" - } - }, - { - "type": "Ledger Hardware", - "accounts": [ - "0x9dc641ccd7d1e7c66e47a25598ace7219548d887", - "0x6eff00186ba65c5fade98d75aa4d99ef71fa461b", - "0x04400bb51b1f886cff338eb2b4118f9ceb4e6fd5", - "0xb3864b298f4fddbbbd2fa5cf1a2a2748932b3b81", - "0xeeeab71a5989b7951389e3df313ea9876508856f", - "0x422b8d8914cdad779f587414d647e953bb3a87db" - ], - "metadata": { - "id": "01KKHBZ0KXRB6RYTCBEGX8HBHS", - "name": "" - } - }, - { - "type": "Lattice Hardware", - "accounts": [], - "metadata": { - "id": "01KKHBZ0M43R5X11V0EZBKKHQK", - "name": "" - } - }, - { - "type": "HD Key Tree", - "accounts": [ - "0x141d32a89a1e0a5ef360034a2f60a4b917c18838", - "0x98931e2b2272891c2e8e47d675007d94ae90ce64", - "0xf1f63d55e8f25c962079be324c71cdcf792c6047", - "0xda04e0fe4e79eebcaffcbfff8ea0bdcd442d2119", - "0xa30078e306614c2f444550da6bc759173dfb61fd", - "0x09b8556833e53f92ee0b668db146b43ca2cab130" - ], - "metadata": { - "id": "01KMK79H2SG3MB2Q7XWEXMZ013", - "name": "" - } - } - ], - "addSnapAccountEnabled": false, - "advancedGasFee": {}, - "dismissSeedBackUpReminder": false, - "enableMV3TimestampSave": true, - "forgottenPassword": false, - "ipfsGateway": "dweb.link", - "isIpfsGatewayEnabled": true, - "ledgerTransportType": "webhid", - "manageInstitutionalWallets": false, - "openSeaEnabled": true, - "overrideContentSecurityPolicyHeader": true, - "securityAlertsEnabled": true, - "showSidePanelMigrationToast": false, - "snapRegistryList": {}, - "snapsAddSnapAccountModalDismissed": false, - "theme": "os", - "useAddressBarEnsResolution": true, - "useCurrencyRateCheck": true, - "useExternalNameSources": true, - "useExternalServices": true, - "isMultiAccountBalancesEnabled": true, - "useMultiAccountBalanceChecker": true, - "useNftDetection": true, - "usePhishDetect": true, - "useSafeChainsListValidation": true, - "useTokenDetection": true, - "useTransactionSimulations": true, - "watchEthereumAccountEnabled": false, - "referrals": { - "asterdex": {}, - "gmx": {}, - "hyperliquid": {} - }, - "metaMetricsId": "0x585932e95120a60224e1b9306442908dee59fd4785240188a2f92eb49c668e92", - "marketingCampaignCookieId": null, - "latestNonAnonymousEventTimestamp": 1779126377021, - "eventsBeforeMetricsOptIn": [], - "tracesBeforeMetricsOptIn": [], - "traits": { - "install_date_ext": "2026-03-10", - "storage_kind": "split" - }, - "fragments": { - "transaction-submitted-ce002dc0-1829-11f1-b7d6-03d70bc40886": { - "category": "Transactions", - "id": "transaction-submitted-ce002dc0-1829-11f1-b7d6-03d70bc40886", - "initialEvent": "Transaction Submitted", - "lastUpdated": 1772670326178, - "persist": true, - "properties": { - "account_type": "MetaMask", - "address_alert_response": "Loading", - "api_method": "eth_sendTransaction", - "asset_type": "UNKNOWN", - "chain_id": "0x89", - "eip7702_upgrade_transaction": false, - "eip_1559_version": "2", - "gas_edit_attempted": "none", - "gas_edit_type": "none", - "gas_estimation_failed": false, - "gas_fee_selected": "medium", - "gas_insufficient_native_asset": false, - "hd_entropy_index": 0, - "is_smart_transaction": true, - "network": "137", - "referrer": "metamask", - "rpc_domain": "private", - "simulation_receiving_assets_total_value": "1.029770649732954801319844949", - "simulation_sending_assets_total_value": "1.03808998", - "source": "user", - "status": "submitted", - "token_standard": "NONE", - "transaction_advanced_view": false, - "transaction_contract_method": ["Swap"], - "transaction_internal_id": "ce002dc0-1829-11f1-b7d6-03d70bc40886", - "transaction_speed_up": false, - "transaction_type": "mm_swap", - "ui_customizations": null - }, - "sensitiveProperties": { - "account_eip7702_upgraded": "0x63c0c19a282a1b52b07dd5a65b58948a07dae32b", - "default_estimate": "medium", - "default_gas": "0.000370779", - "default_max_fee_per_gas": "237.669242655", - "default_max_priority_fee_per_gas": "116.4", - "first_seen": 1772670325404, - "gas_limit": "0x5a85b", - "max_fee_per_gas": "270.309416677", - "max_priority_fee_per_gas": "117.6", - "transaction_contract_address": [ - "0x1a1ec25dc08e98e5e93f1104b5e5cdd298707d31" - ], - "transaction_contract_method_4byte": "0x5f575529", - "transaction_envelope_type": "fee-market" - }, - "successEvent": "Transaction Finalized", - "uniqueIdentifier": "transaction-submitted-ce002dc0-1829-11f1-b7d6-03d70bc40886" - }, - "transaction-submitted-ce33c0e0-1829-11f1-b7d6-03d70bc40886": { - "category": "Transactions", - "id": "transaction-submitted-ce33c0e0-1829-11f1-b7d6-03d70bc40886", - "initialEvent": "Transaction Submitted", - "lastUpdated": 1772670326484, - "persist": true, - "properties": { - "account_type": "MetaMask", - "address_alert_response": "Loading", - "api_method": "eth_sendTransaction", - "asset_type": "UNKNOWN", - "chain_id": "0x89", - "eip7702_upgrade_transaction": false, - "eip_1559_version": "2", - "gas_edit_attempted": "none", - "gas_edit_type": "none", - "gas_estimation_failed": false, - "gas_fee_selected": "medium", - "gas_insufficient_native_asset": false, - "hd_entropy_index": 0, - "is_smart_transaction": true, - "network": "137", - "referrer": "metamask", - "rpc_domain": "private", - "simulation_receiving_assets_total_value": "1.029770649732954801319844949", - "simulation_sending_assets_total_value": "1.03808998", - "source": "user", - "status": "submitted", - "token_standard": "NONE", - "transaction_advanced_view": false, - "transaction_contract_method": ["Swap"], - "transaction_internal_id": "ce33c0e0-1829-11f1-b7d6-03d70bc40886", - "transaction_speed_up": false, - "transaction_type": "mm_swap", - "ui_customizations": null - }, - "sensitiveProperties": { - "account_eip7702_upgraded": "0x63c0c19a282a1b52b07dd5a65b58948a07dae32b", - "default_estimate": "medium", - "default_gas": "0.000370779", - "default_max_fee_per_gas": "237.669242655", - "default_max_priority_fee_per_gas": "116.4", - "first_seen": 1772670325742, - "gas_limit": "0x5a85b", - "max_fee_per_gas": "270.309416677", - "max_priority_fee_per_gas": "117.6", - "transaction_contract_address": [ - "0x1a1ec25dc08e98e5e93f1104b5e5cdd298707d31" - ], - "transaction_contract_method_4byte": "0x5f575529", - "transaction_envelope_type": "fee-market" - }, - "successEvent": "Transaction Finalized", - "uniqueIdentifier": "transaction-submitted-ce33c0e0-1829-11f1-b7d6-03d70bc40886" - } - }, - "segmentApiCalls": {}, - "metaMetricsDataDeletionId": null, - "metaMetricsDataDeletionTimestamp": 0, - "currentCurrency": "usd", - "alertEnabledness": { - "smartTransactionsMigration": false, - "unconnectedAccount": true, - "web3ShimUsage": true - }, - "unconnectedAccountAlertShownOrigins": {}, - "web3ShimUsageOrigins": {}, - "seedPhraseBackedUp": null, - "onboardingTabs": {}, - "socialBackupsMetadata": [], - "subscriptions": [], - "trialedProducts": [], - "pricing": { - "paymentMethods": [ - { - "type": "card" - }, - { - "chains": [ - { - "chainId": "0x1", - "isSponsorshipSupported": true, - "paymentAddress": "0x15Dac0Bc513d89D54dd14F476e4bCB4cD7eED2eA", - "tokens": [ - { - "address": "0xacA92E438df0B2401fF60dA7E4337B687a2435DA", - "conversionRate": { - "usd": "1.0" - }, - "decimals": 6, - "symbol": "mUSD" - }, - { - "address": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", - "conversionRate": { - "usd": "1.0" - }, - "decimals": 6, - "symbol": "USDC" - }, - { - "address": "0xdAC17F958D2ee523a2206206994597C13D831ec7", - "conversionRate": { - "usd": "1.0" - }, - "decimals": 6, - "symbol": "USDT" - } - ] - } - ], - "type": "crypto" - } - ], - "products": [ - { - "name": "shield", - "prices": [ - { - "currency": "usd", - "interval": "month", - "minBillingCycles": 12, - "minBillingCyclesForBalance": 1, - "trialPeriodDays": 14, - "unitAmount": 999, - "unitDecimals": 2 - }, - { - "currency": "usd", - "interval": "year", - "minBillingCycles": 1, - "minBillingCyclesForBalance": 1, - "trialPeriodDays": 14, - "unitAmount": 9900, - "unitDecimals": 2 - } - ] - } - ] - }, - "subjects": { - "http://localhost:3000": { - "origin": "http://localhost:3000", - "permissions": { - "wallet_snap": { - "caveats": [ - { - "type": "snapIds", - "value": { - "npm:@metamask/institutional-wallet-snap": {} - } - } - ], - "date": 1771890332054, - "id": "_4kducl9HpHu7aWeZV2pj", - "invoker": "http://localhost:3000", - "parentCapability": "wallet_snap" - } - } - }, - "http://localhost:8000": { - "origin": "http://localhost:8000", - "permissions": { - "wallet_snap": { - "caveats": [ - { - "type": "snapIds", - "value": { - "npm:@metamask/institutional-wallet-snap": {} - } - } - ], - "date": 1771890332054, - "id": "-z2Mu-HqzRyzjKLAufoGI", - "invoker": "http://localhost:8000", - "parentCapability": "wallet_snap" - } - } - }, - "https://alpha.mycactus.io": { - "origin": "https://alpha.mycactus.io", - "permissions": { - "wallet_snap": { - "caveats": [ - { - "type": "snapIds", - "value": { - "npm:@metamask/institutional-wallet-snap": {} - } - } - ], - "date": 1771890332055, - "id": "XKmq0L_OiFzV6qh2SW_0p", - "invoker": "https://alpha.mycactus.io", - "parentCapability": "wallet_snap" - } - } - }, - "https://app-beta.signer.cubist.dev": { - "origin": "https://app-beta.signer.cubist.dev", - "permissions": { - "wallet_snap": { - "caveats": [ - { - "type": "snapIds", - "value": { - "npm:@metamask/institutional-wallet-snap": {} - } - } - ], - "date": 1775785213703, - "id": "CqE2-15pdFQSEHI4k1rAh", - "invoker": "https://app-beta.signer.cubist.dev", - "parentCapability": "wallet_snap" - } - } - }, - "https://app-gamma.signer.cubist.dev": { - "origin": "https://app-gamma.signer.cubist.dev", - "permissions": { - "wallet_snap": { - "caveats": [ - { - "type": "snapIds", - "value": { - "npm:@metamask/institutional-wallet-snap": {} - } - } - ], - "date": 1775785213703, - "id": "g8Fqb8vperpQTYsbCCRux", - "invoker": "https://app-gamma.signer.cubist.dev", - "parentCapability": "wallet_snap" - } - } - }, - "https://app.bitgo-test.com": { - "origin": "https://app.bitgo-test.com", - "permissions": { - "wallet_snap": { - "caveats": [ - { - "type": "snapIds", - "value": { - "npm:@metamask/institutional-wallet-snap": {} - } - } - ], - "date": 1771890332055, - "id": "ggcVAKu0j7eZk9fqImmRD", - "invoker": "https://app.bitgo-test.com", - "parentCapability": "wallet_snap" - } - } - }, - "https://app.bitgo.com": { - "origin": "https://app.bitgo.com", - "permissions": { - "wallet_snap": { - "caveats": [ - { - "type": "snapIds", - "value": { - "npm:@metamask/institutional-wallet-snap": {} - } - } - ], - "date": 1771890332055, - "id": "zYkwa4x8VV3GYeeSOMprn", - "invoker": "https://app.bitgo.com", - "parentCapability": "wallet_snap" - } - } - }, - "https://app.metamask.io": { - "origin": "https://app.metamask.io", - "permissions": { - "wallet_snap": { - "caveats": [ - { - "type": "snapIds", - "value": { - "npm:@metamask/message-signing-snap": {} - } - } - ], - "date": 1771890332037, - "id": "Lixmv4Cr5C0ND7-DAt8W1", - "invoker": "https://app.metamask.io", - "parentCapability": "wallet_snap" - } - } - }, - "https://app.safe.global": { - "origin": "https://app.safe.global", - "permissions": { - "endowment:caip25": { - "caveats": [ - { - "type": "authorizedScopes", - "value": { - "isMultichainOrigin": true, - "optionalScopes": { - "bip122:000000000019d6689c085ae165831e93": { - "accounts": [ - "bip122:000000000019d6689c085ae165831e93:bc1q2pxsagdzfdn6k6umvf9gj3eme7a27p7acym9g2" - ] - }, - "eip155:1": { - "accounts": [ - "eip155:1:0x30e8ccad5a980bdf30447f8c2c48e70989d9d294" - ] - }, - "eip155:137": { - "accounts": [ - "eip155:137:0x30e8ccad5a980bdf30447f8c2c48e70989d9d294" - ] - }, - "eip155:42161": { - "accounts": [ - "eip155:42161:0x30e8ccad5a980bdf30447f8c2c48e70989d9d294" - ] - }, - "eip155:4326": { - "accounts": [ - "eip155:4326:0x30e8ccad5a980bdf30447f8c2c48e70989d9d294" - ] - }, - "eip155:59144": { - "accounts": [ - "eip155:59144:0x30e8ccad5a980bdf30447f8c2c48e70989d9d294" - ] - }, - "solana:5eykt4UsFv8P8NJdTREpY1vzqKqZKvdp": { - "accounts": [ - "solana:5eykt4UsFv8P8NJdTREpY1vzqKqZKvdp:8jKM7u4xsyvDpnqL5DQMVrh8AXxZKJPKJw5QsM7KEF8J" - ] - }, - "tron:728126428": { - "accounts": [ - "tron:728126428:THV8AzsmaMCuCEW3xmxeHQe3nfVjcPESnG" - ] - }, - "wallet:eip155": { - "accounts": [] - } - }, - "requiredScopes": {}, - "sessionProperties": { - "eip1193-compatible": true - } - } - } - ], - "date": 1773330798316, - "id": "xzrEsPho3ILawIS3p7TqY", - "invoker": "https://app.safe.global", - "parentCapability": "endowment:caip25" - } - } - }, - "https://app.signer.cubist.dev": { - "origin": "https://app.signer.cubist.dev", - "permissions": { - "wallet_snap": { - "caveats": [ - { - "type": "snapIds", - "value": { - "npm:@metamask/institutional-wallet-snap": {} - } - } - ], - "date": 1775785213704, - "id": "Zfy4CP7fPbyfGH4BE7Sdw", - "invoker": "https://app.signer.cubist.dev", - "parentCapability": "wallet_snap" - } - } - }, - "https://apps-portal.safe.global": { - "origin": "https://apps-portal.safe.global", - "permissions": { - "wallet_snap": { - "caveats": [ - { - "type": "snapIds", - "value": { - "npm:@metamask/institutional-wallet-snap": {} - } - } - ], - "date": 1771890332055, - "id": "Mf4p7sYFJ8eUZIsCgpbMu", - "invoker": "https://apps-portal.safe.global", - "parentCapability": "wallet_snap" - } - } - }, - "https://console.dev.mpcvault.com": { - "origin": "https://console.dev.mpcvault.com", - "permissions": { - "wallet_snap": { - "caveats": [ - { - "type": "snapIds", - "value": { - "npm:@metamask/institutional-wallet-snap": {} - } - } - ], - "date": 1771890332055, - "id": "Ap10lLAQQWrDlfFdZZ648", - "invoker": "https://console.dev.mpcvault.com", - "parentCapability": "wallet_snap" - } - } - }, - "https://console.fireblocks.io": { - "origin": "https://console.fireblocks.io", - "permissions": { - "wallet_snap": { - "caveats": [ - { - "type": "snapIds", - "value": { - "npm:@metamask/institutional-wallet-snap": {} - } - } - ], - "date": 1771890332054, - "id": "mo2y8Q3TLWNvnXVxq_QtP", - "invoker": "https://console.fireblocks.io", - "parentCapability": "wallet_snap" - } - } - }, - "https://console.mpcvault.com": { - "origin": "https://console.mpcvault.com", - "permissions": { - "wallet_snap": { - "caveats": [ - { - "type": "snapIds", - "value": { - "npm:@metamask/institutional-wallet-snap": {} - } - } - ], - "date": 1771890332055, - "id": "ke_246jhYOjO6PnVzMTDs", - "invoker": "https://console.mpcvault.com", - "parentCapability": "wallet_snap" - } - } - }, - "https://debug.mycactus.dev:1443": { - "origin": "https://debug.mycactus.dev:1443", - "permissions": { - "wallet_snap": { - "caveats": [ - { - "type": "snapIds", - "value": { - "npm:@metamask/institutional-wallet-snap": {} - } - } - ], - "date": 1771890332055, - "id": "dtZZsyX3eWzi5gQnVbvDB", - "invoker": "https://debug.mycactus.dev:1443", - "parentCapability": "wallet_snap" - } - } - }, - "https://dev10-console.waterballoons.xyz": { - "origin": "https://dev10-console.waterballoons.xyz", - "permissions": { - "wallet_snap": { - "caveats": [ - { - "type": "snapIds", - "value": { - "npm:@metamask/institutional-wallet-snap": {} - } - } - ], - "date": 1771890332055, - "id": "y0r8hBFEs_Cq3G5u_Afch", - "invoker": "https://dev10-console.waterballoons.xyz", - "parentCapability": "wallet_snap" - } - } - }, - "https://dev4-console.waterballoons.xyz": { - "origin": "https://dev4-console.waterballoons.xyz", - "permissions": { - "wallet_snap": { - "caveats": [ - { - "type": "snapIds", - "value": { - "npm:@metamask/institutional-wallet-snap": {} - } - } - ], - "date": 1771890332055, - "id": "dAWlZAW-gNcHIxgN2kc1p", - "invoker": "https://dev4-console.waterballoons.xyz", - "parentCapability": "wallet_snap" - } - } - }, - "https://developer.metamask.io": { - "origin": "https://developer.metamask.io", - "permissions": { - "wallet_snap": { - "caveats": [ - { - "type": "snapIds", - "value": { - "npm:@metamask/message-signing-snap": {} - } - } - ], - "date": 1771890332037, - "id": "69wBbTXxmn67KQittk3GY", - "invoker": "https://developer.metamask.io", - "parentCapability": "wallet_snap" - } - } - }, - "https://docs.metamask.io": { - "origin": "https://docs.metamask.io", - "permissions": { - "wallet_snap": { - "caveats": [ - { - "type": "snapIds", - "value": { - "npm:@metamask/message-signing-snap": {} - } - } - ], - "date": 1771890332037, - "id": "GzHhsjKrdXDZrpQX73koF", - "invoker": "https://docs.metamask.io", - "parentCapability": "wallet_snap" - } - } - }, - "https://eu-console.fireblocks.io": { - "origin": "https://eu-console.fireblocks.io", - "permissions": { - "wallet_snap": { - "caveats": [ - { - "type": "snapIds", - "value": { - "npm:@metamask/institutional-wallet-snap": {} - } - } - ], - "date": 1771890332054, - "id": "slS4TOVu_io-XY5MHBdGf", - "invoker": "https://eu-console.fireblocks.io", - "parentCapability": "wallet_snap" - } - } - }, - "https://eu2-console.fireblocks.io": { - "origin": "https://eu2-console.fireblocks.io", - "permissions": { - "wallet_snap": { - "caveats": [ - { - "type": "snapIds", - "value": { - "npm:@metamask/institutional-wallet-snap": {} - } - } - ], - "date": 1771890332054, - "id": "IS__Pms1l0TSrAQmurMUV", - "invoker": "https://eu2-console.fireblocks.io", - "parentCapability": "wallet_snap" - } - } - }, - "https://local.waterballoons.xyz:4200": { - "origin": "https://local.waterballoons.xyz:4200", - "permissions": { - "wallet_snap": { - "caveats": [ - { - "type": "snapIds", - "value": { - "npm:@metamask/institutional-wallet-snap": {} - } - } - ], - "date": 1771890332054, - "id": "M2GkuQpLp2sHBaGifGnX0", - "invoker": "https://local.waterballoons.xyz:4200", - "parentCapability": "wallet_snap" - } - } - }, - "https://localhost:3000": { - "origin": "https://localhost:3000", - "permissions": { - "wallet_snap": { - "caveats": [ - { - "type": "snapIds", - "value": { - "npm:@metamask/institutional-wallet-snap": {} - } - } - ], - "date": 1771890332054, - "id": "JDNkqWIssJGadxkV8s4uJ", - "invoker": "https://localhost:3000", - "parentCapability": "wallet_snap" - } - } - }, - "https://neptune-custody-ui.metamask-institutional.io": { - "origin": "https://neptune-custody-ui.metamask-institutional.io", - "permissions": { - "wallet_snap": { - "caveats": [ - { - "type": "snapIds", - "value": { - "npm:@metamask/institutional-wallet-snap": {} - } - } - ], - "date": 1771890332054, - "id": "2_-N-bosIAB2ivJCGTJdo", - "invoker": "https://neptune-custody-ui.metamask-institutional.io", - "parentCapability": "wallet_snap" - } - } - }, - "https://portfolio-builds.metafi-dev.codefi.network": { - "origin": "https://portfolio-builds.metafi-dev.codefi.network", - "permissions": { - "wallet_snap": { - "caveats": [ - { - "type": "snapIds", - "value": { - "npm:@metamask/message-signing-snap": {} - } - } - ], - "date": 1771890332037, - "id": "p26TfzJriMgXQMp38ybCS", - "invoker": "https://portfolio-builds.metafi-dev.codefi.network", - "parentCapability": "wallet_snap" - } - } - }, - "https://portfolio.metamask.io": { - "origin": "https://portfolio.metamask.io", - "permissions": { - "wallet_snap": { - "caveats": [ - { - "type": "snapIds", - "value": { - "npm:@metamask/message-signing-snap": {}, - "npm:@metamask/solana-wallet-snap": {}, - "npm:@metamask/tron-wallet-snap": {} - } - } - ], - "date": 1771890332037, - "id": "sYQWDJ-eshbwK8Cq4LT-2", - "invoker": "https://portfolio.metamask.io", - "parentCapability": "wallet_snap" - } - } - }, - "https://pre.mycactus.com": { - "origin": "https://pre.mycactus.com", - "permissions": { - "wallet_snap": { - "caveats": [ - { - "type": "snapIds", - "value": { - "npm:@metamask/institutional-wallet-snap": {} - } - } - ], - "date": 1771890332055, - "id": "4Wc59gG3BL2XMm3BgL608", - "invoker": "https://pre.mycactus.com", - "parentCapability": "wallet_snap" - } - } - }, - "https://sandbox.fireblocks.io": { - "origin": "https://sandbox.fireblocks.io", - "permissions": { - "wallet_snap": { - "caveats": [ - { - "type": "snapIds", - "value": { - "npm:@metamask/institutional-wallet-snap": {} - } - } - ], - "date": 1771890332054, - "id": "2ejJ2BwvdL7UTsqxOZZrS", - "invoker": "https://sandbox.fireblocks.io", - "parentCapability": "wallet_snap" - } - } - }, - "https://saturn-custody-ui.metamask-institutional.io": { - "origin": "https://saturn-custody-ui.metamask-institutional.io", - "permissions": { - "wallet_snap": { - "caveats": [ - { - "type": "snapIds", - "value": { - "npm:@metamask/institutional-wallet-snap": {} - } - } - ], - "date": 1771890332055, - "id": "P4Zlcq27mCugHYVvL-Tby", - "invoker": "https://saturn-custody-ui.metamask-institutional.io", - "parentCapability": "wallet_snap" - } - } - }, - "https://ui-preprod-v2.qa.zodia.io": { - "origin": "https://ui-preprod-v2.qa.zodia.io", - "permissions": { - "wallet_snap": { - "caveats": [ - { - "type": "snapIds", - "value": { - "npm:@metamask/institutional-wallet-snap": {} - } - } - ], - "date": 1771890332054, - "id": "advCeAO9Io-Aj-O_HpQYJ", - "invoker": "https://ui-preprod-v2.qa.zodia.io", - "parentCapability": "wallet_snap" - } - } - }, - "https://ui-preprod-v2.uat.zodia.io": { - "origin": "https://ui-preprod-v2.uat.zodia.io", - "permissions": { - "wallet_snap": { - "caveats": [ - { - "type": "snapIds", - "value": { - "npm:@metamask/institutional-wallet-snap": {} - } - } - ], - "date": 1771890332054, - "id": "rOtf5iFFgP7YZXHnTCDWY", - "invoker": "https://ui-preprod-v2.uat.zodia.io", - "parentCapability": "wallet_snap" - } - } - }, - "https://ui-v2.qa.zodia.io": { - "origin": "https://ui-v2.qa.zodia.io", - "permissions": { - "wallet_snap": { - "caveats": [ - { - "type": "snapIds", - "value": { - "npm:@metamask/institutional-wallet-snap": {} - } - } - ], - "date": 1771890332054, - "id": "wutfK0ZvOxntZ_hE-5Un5", - "invoker": "https://ui-v2.qa.zodia.io", - "parentCapability": "wallet_snap" - } - } - }, - "https://ui-v2.sit.zodia.io": { - "origin": "https://ui-v2.sit.zodia.io", - "permissions": { - "wallet_snap": { - "caveats": [ - { - "type": "snapIds", - "value": { - "npm:@metamask/institutional-wallet-snap": {} - } - } - ], - "date": 1771890332054, - "id": "e6TCmeelZBVfdrboWz712", - "invoker": "https://ui-v2.sit.zodia.io", - "parentCapability": "wallet_snap" - } - } - }, - "https://v2.custody.zodia.io": { - "origin": "https://v2.custody.zodia.io", - "permissions": { - "wallet_snap": { - "caveats": [ - { - "type": "snapIds", - "value": { - "npm:@metamask/institutional-wallet-snap": {} - } - } - ], - "date": 1771890332054, - "id": "Fmob3Pb0kz-3482zIbarT", - "invoker": "https://v2.custody.zodia.io", - "parentCapability": "wallet_snap" - } - } - }, - "https://www.mycactus.com": { - "origin": "https://www.mycactus.com", - "permissions": { - "wallet_snap": { - "caveats": [ - { - "type": "snapIds", - "value": { - "npm:@metamask/institutional-wallet-snap": {} - } - } - ], - "date": 1771890332056, - "id": "BApjghTXkrofbIclHYPlP", - "invoker": "https://www.mycactus.com", - "parentCapability": "wallet_snap" - } - } - }, - "https://www.mycactus.dev": { - "origin": "https://www.mycactus.dev", - "permissions": { - "wallet_snap": { - "caveats": [ - { - "type": "snapIds", - "value": { - "npm:@metamask/institutional-wallet-snap": {} - } - } - ], - "date": 1771890332055, - "id": "PTf1dya14JRavyVhwqyaT", - "invoker": "https://www.mycactus.dev", - "parentCapability": "wallet_snap" - } - } - }, - "localhost:8000": { - "origin": "localhost:8000", - "permissions": { - "wallet_snap": { - "caveats": [ - { - "type": "snapIds", - "value": { - "npm:@metamask/institutional-wallet-snap": {} - } - } - ], - "date": 1771890332054, - "id": "VFTp1-PFYmZBnlkNEpbnO", - "invoker": "localhost:8000", - "parentCapability": "wallet_snap" - } - } - }, - "npm:@metamask/bitcoin-wallet-snap": { - "origin": "npm:@metamask/bitcoin-wallet-snap", - "permissions": { - "endowment:assets": { - "caveats": [ - { - "type": "chainIds", - "value": [ - "bip122:000000000019d6689c085ae165831e93", - "bip122:000000000933ea01ad0ee984209779ba", - "bip122:00000000da84f2bafbbc53dee25a72ae", - "bip122:00000008819873e925422c1ff0f99f7c", - "bip122:regtest" - ] - } - ], - "date": 1771890332092, - "id": "NTtqm1yIq6b_1ygXb6Nq6", - "invoker": "npm:@metamask/bitcoin-wallet-snap", - "parentCapability": "endowment:assets" - }, - "endowment:cronjob": { - "caveats": [ - { - "type": "snapCronjob", - "value": { - "jobs": [ - { - "duration": "PT30S", - "request": { - "method": "synchronizeAccounts" - } - } - ] - } - } - ], - "date": 1771890332092, - "id": "lBJ5gk7xZ3oS9kH6IBDC3", - "invoker": "npm:@metamask/bitcoin-wallet-snap", - "parentCapability": "endowment:cronjob" - }, - "endowment:keyring": { - "caveats": null, - "date": 1776364729642, - "id": "3R0MYAk_AXm0qtDsQWykT", - "invoker": "npm:@metamask/bitcoin-wallet-snap", - "parentCapability": "endowment:keyring" - }, - "endowment:lifecycle-hooks": { - "caveats": null, - "date": 1771890332092, - "id": "V4Rz8keQxwWMpYyiFXzj9", - "invoker": "npm:@metamask/bitcoin-wallet-snap", - "parentCapability": "endowment:lifecycle-hooks" - }, - "endowment:network-access": { - "caveats": null, - "date": 1771890332092, - "id": "WmBfr8fbmEfHOr5E8S77_", - "invoker": "npm:@metamask/bitcoin-wallet-snap", - "parentCapability": "endowment:network-access" - }, - "endowment:webassembly": { - "caveats": null, - "date": 1771890332092, - "id": "JJwH0WFTt1CZ6WKCd0X5C", - "invoker": "npm:@metamask/bitcoin-wallet-snap", - "parentCapability": "endowment:webassembly" - }, - "snap_dialog": { - "caveats": null, - "date": 1771890332092, - "id": "G3KR2xPb9xcbDKad8Ermw", - "invoker": "npm:@metamask/bitcoin-wallet-snap", - "parentCapability": "snap_dialog" - }, - "snap_getBip32Entropy": { - "caveats": [ - { - "type": "permittedDerivationPaths", - "value": [ - { - "curve": "secp256k1", - "path": ["m", "44'", "0'"] - }, - { - "curve": "secp256k1", - "path": ["m", "44'", "1'"] - }, - { - "curve": "secp256k1", - "path": ["m", "49'", "0'"] - }, - { - "curve": "secp256k1", - "path": ["m", "49'", "1'"] - }, - { - "curve": "secp256k1", - "path": ["m", "84'", "0'"] - }, - { - "curve": "secp256k1", - "path": ["m", "84'", "1'"] - }, - { - "curve": "secp256k1", - "path": ["m", "86'", "0'"] - }, - { - "curve": "secp256k1", - "path": ["m", "86'", "1'"] - } - ] - } - ], - "date": 1771890332092, - "id": "q0tSpXP7FMGP3hUu6KQoV", - "invoker": "npm:@metamask/bitcoin-wallet-snap", - "parentCapability": "snap_getBip32Entropy" - }, - "snap_getPreferences": { - "caveats": null, - "date": 1771890332092, - "id": "Z-4Dv13O4BAJBO5y7S7X8", - "invoker": "npm:@metamask/bitcoin-wallet-snap", - "parentCapability": "snap_getPreferences" - }, - "snap_manageAccounts": { - "caveats": null, - "date": 1771890332092, - "id": "vnokUXq4s2-6K9c0d19Gd", - "invoker": "npm:@metamask/bitcoin-wallet-snap", - "parentCapability": "snap_manageAccounts" - }, - "snap_manageState": { - "caveats": null, - "date": 1771890332092, - "id": "Hm64yPNvsjqBlFzC7N3aC", - "invoker": "npm:@metamask/bitcoin-wallet-snap", - "parentCapability": "snap_manageState" - } - } - }, - "npm:@metamask/ens-resolver-snap": { - "origin": "npm:@metamask/ens-resolver-snap", - "permissions": { - "endowment:caip25": { - "caveats": [ - { - "type": "authorizedScopes", - "value": { - "isMultichainOrigin": false, - "optionalScopes": { - "eip155:1": { - "accounts": [] - }, - "wallet:eip155": { - "accounts": [ - "wallet:eip155:0x30e8ccad5a980bdf30447f8c2c48e70989d9d294", - "wallet:eip155:0xf25bd11c334507fd007d584e2d0b7b2c6543f714", - "wallet:eip155:0xe2f39519240814a77047490357ced4d094b6c9c7", - "wallet:eip155:0x452ca3dad6db7f3a47bbf15b758b6749db579bbc", - "wallet:eip155:0x2b6a82d1fea4d5b137095ca5306ba2589b630a08", - "wallet:eip155:0x94d1362400e999b38c845ca2c305c084031dae84", - "wallet:eip155:0x83ad6a1294d949d514361326bcebae4f73957327", - "wallet:eip155:0xbcc30cc9b8109f87fcede0c57e3a8c3dc979e3d0", - "wallet:eip155:0x3823c59973351f50e8b985e182b81300dae9bb45", - "wallet:eip155:0xc9442048fd0c34b684035a82188b69c4ee5e8f21", - "wallet:eip155:0x9dc641ccd7d1e7c66e47a25598ace7219548d887", - "wallet:eip155:0x6eff00186ba65c5fade98d75aa4d99ef71fa461b", - "wallet:eip155:0x04400bb51b1f886cff338eb2b4118f9ceb4e6fd5", - "wallet:eip155:0xb3864b298f4fddbbbd2fa5cf1a2a2748932b3b81", - "wallet:eip155:0xeeeab71a5989b7951389e3df313ea9876508856f", - "wallet:eip155:0x422b8d8914cdad779f587414d647e953bb3a87db", - "wallet:eip155:0x141d32a89a1e0a5ef360034a2f60a4b917c18838", - "wallet:eip155:0x98931e2b2272891c2e8e47d675007d94ae90ce64", - "wallet:eip155:0xf1f63d55e8f25c962079be324c71cdcf792c6047", - "wallet:eip155:0xda04e0fe4e79eebcaffcbfff8ea0bdcd442d2119", - "wallet:eip155:0xa30078e306614c2f444550da6bc759173dfb61fd", - "wallet:eip155:0x09b8556833e53f92ee0b668db146b43ca2cab130" - ] - } - }, - "requiredScopes": {}, - "sessionProperties": { - "eip1193-compatible": true - } - } - } - ], - "date": 1777417482156, - "id": "0QNrzrkoICz1rUOQH-j4y", - "invoker": "npm:@metamask/ens-resolver-snap", - "parentCapability": "endowment:caip25" - }, - "endowment:ethereum-provider": { - "caveats": null, - "date": 1771890332041, - "id": "cT0DnjQjtdaVgkLKI9RBr", - "invoker": "npm:@metamask/ens-resolver-snap", - "parentCapability": "endowment:ethereum-provider" - }, - "endowment:name-lookup": { - "caveats": null, - "date": 1771890332041, - "id": "E9gqZ1uUnFrHfpunkAzfK", - "invoker": "npm:@metamask/ens-resolver-snap", - "parentCapability": "endowment:name-lookup" - }, - "endowment:network-access": { - "caveats": null, - "date": 1771890332041, - "id": "_Q58Ivtk-Nkdlchaxc89e", - "invoker": "npm:@metamask/ens-resolver-snap", - "parentCapability": "endowment:network-access" - } - } - }, - "npm:@metamask/gator-permissions-snap": { - "origin": "npm:@metamask/gator-permissions-snap", - "permissions": { - "endowment:ethereum-provider": { - "caveats": null, - "date": 1771890332035, - "id": "FoyUQ1by14fmox98G-MOX", - "invoker": "npm:@metamask/gator-permissions-snap", - "parentCapability": "endowment:ethereum-provider" - }, - "endowment:network-access": { - "caveats": null, - "date": 1771890332035, - "id": "9Sc9iPIOMBK75awVpEx0X", - "invoker": "npm:@metamask/gator-permissions-snap", - "parentCapability": "endowment:network-access" - }, - "endowment:rpc": { - "caveats": [ - { - "type": "rpcOrigin", - "value": { - "dapps": false, - "snaps": true - } - } - ], - "date": 1771890332035, - "id": "AneryV4VnLjVjhaQ4svbC", - "invoker": "npm:@metamask/gator-permissions-snap", - "parentCapability": "endowment:rpc" - }, - "snap_dialog": { - "caveats": null, - "date": 1771890332035, - "id": "tyrWMZOZE3HAxzaZVGz4u", - "invoker": "npm:@metamask/gator-permissions-snap", - "parentCapability": "snap_dialog" - }, - "snap_getPreferences": { - "caveats": null, - "date": 1771890332035, - "id": "eigCMzy2MpN5AolhItCqL", - "invoker": "npm:@metamask/gator-permissions-snap", - "parentCapability": "snap_getPreferences" - }, - "snap_manageState": { - "caveats": null, - "date": 1771890332035, - "id": "vP6Si3ZM5yQAOzaH2y5Sq", - "invoker": "npm:@metamask/gator-permissions-snap", - "parentCapability": "snap_manageState" - }, - "wallet_snap": { - "caveats": [ - { - "type": "snapIds", - "value": { - "npm:@metamask/message-signing-snap": {} - } - } - ], - "date": 1771890332037, - "id": "ASgvsQgNHnP4Y1SVNFNy7", - "invoker": "npm:@metamask/gator-permissions-snap", - "parentCapability": "wallet_snap" - } - } - }, - "npm:@metamask/institutional-wallet-snap": { - "origin": "npm:@metamask/institutional-wallet-snap", - "permissions": { - "endowment:cronjob": { - "caveats": [ - { - "type": "snapCronjob", - "value": { - "jobs": [ - { - "expression": "5/15 * * * * *", - "request": { - "method": "execute" - } - }, - { - "expression": "* * * * *", - "request": { - "method": "manageSleepState" - } - } - ] - } - } - ], - "date": 1771890332053, - "id": "TlOi4UcFExDqGccrpFJ-K", - "invoker": "npm:@metamask/institutional-wallet-snap", - "parentCapability": "endowment:cronjob" - }, - "endowment:ethereum-provider": { - "caveats": null, - "date": 1771890332053, - "id": "EOtEE3S7b89kiKmen0zx8", - "invoker": "npm:@metamask/institutional-wallet-snap", - "parentCapability": "endowment:ethereum-provider" - }, - "endowment:keyring": { - "caveats": [ - { - "type": "keyringOrigin", - "value": { - "allowedOrigins": ["localhost:8000", "http://localhost:8000"] - } - } - ], - "date": 1771890332053, - "id": "28NWZavCxrbPY_EgAAdlq", - "invoker": "npm:@metamask/institutional-wallet-snap", - "parentCapability": "endowment:keyring" - }, - "endowment:network-access": { - "caveats": null, - "date": 1771890332053, - "id": "NN5JCM9vGsMYa3TCcqqaS", - "invoker": "npm:@metamask/institutional-wallet-snap", - "parentCapability": "endowment:network-access" - }, - "endowment:page-home": { - "caveats": null, - "date": 1771890332053, - "id": "iy7hHqFUnuOZDV42wRrK_", - "invoker": "npm:@metamask/institutional-wallet-snap", - "parentCapability": "endowment:page-home" - }, - "endowment:rpc": { - "caveats": [ - { - "type": "rpcOrigin", - "value": { - "allowedOrigins": [ - "localhost:8000", - "http://localhost:8000", - "localhost:3000", - "https://localhost:3000", - "http://localhost:3000", - "https://neptune-custody-ui.metamask-institutional.io", - "https://zodia.io", - "https://ui-v2.sit.zodia.io", - "https://ui-v2.qa.zodia.io", - "https://ui-preprod-v2.qa.zodia.io", - "https://ui-preprod-v2.uat.zodia.io", - "https://v2.custody.zodia.io", - "https://console.fireblocks.io", - "https://eu-console.fireblocks.io", - "https://eu2-console.fireblocks.io", - "https://sandbox.fireblocks.io", - "https://local.waterballoons.xyz:4200", - "https://dev4-console.waterballoons.xyz", - "https://dev10-console.waterballoons.xyz", - "https://console.dev.mpcvault.com", - "https://saturn-custody-ui.metamask-institutional.io", - "https://console.mpcvault.com", - "https://app.bitgo.com", - "https://app.bitgo-test.com", - "https://apps-portal.safe.global", - "https://alpha.mycactus.io", - "https://pre.mycactus.com", - "https://www.mycactus.dev", - "https://debug.mycactus.dev:1443", - "https://www.mycactus.com", - "https://app-gamma.signer.cubist.dev", - "https://app-beta.signer.cubist.dev", - "https://app.signer.cubist.dev" - ] - } - } - ], - "date": 1775785213703, - "id": "gMfCwOSvAoHu6ZE-owfD4", - "invoker": "npm:@metamask/institutional-wallet-snap", - "parentCapability": "endowment:rpc" - }, - "snap_dialog": { - "caveats": null, - "date": 1771890332053, - "id": "tjg7oaLB1x6gevuzKEJWS", - "invoker": "npm:@metamask/institutional-wallet-snap", - "parentCapability": "snap_dialog" - }, - "snap_manageAccounts": { - "caveats": null, - "date": 1771890332053, - "id": "iv9So6HjWyFjP47_Y9TR-", - "invoker": "npm:@metamask/institutional-wallet-snap", - "parentCapability": "snap_manageAccounts" - }, - "snap_manageState": { - "caveats": null, - "date": 1771890332053, - "id": "-jYPKH7WS7mPvj9ZQT8CJ", - "invoker": "npm:@metamask/institutional-wallet-snap", - "parentCapability": "snap_manageState" - }, - "snap_notify": { - "caveats": null, - "date": 1771890332053, - "id": "ICa1O64W66d52W051FZDf", - "invoker": "npm:@metamask/institutional-wallet-snap", - "parentCapability": "snap_notify" - } - } - }, - "npm:@metamask/message-signing-snap": { - "origin": "npm:@metamask/message-signing-snap", - "permissions": { - "endowment:rpc": { - "caveats": [ - { - "type": "rpcOrigin", - "value": { - "dapps": true, - "snaps": true - } - } - ], - "date": 1771890332037, - "id": "Vg5wljrs8kT16psraqK5k", - "invoker": "npm:@metamask/message-signing-snap", - "parentCapability": "endowment:rpc" - }, - "snap_getEntropy": { - "caveats": null, - "date": 1771890332037, - "id": "vs4TIHm4X0lI_b_hzXkbF", - "invoker": "npm:@metamask/message-signing-snap", - "parentCapability": "snap_getEntropy" - } - } - }, - "npm:@metamask/permissions-kernel-snap": { - "origin": "npm:@metamask/permissions-kernel-snap", - "permissions": { - "endowment:rpc": { - "caveats": [ - { - "type": "rpcOrigin", - "value": { - "dapps": true, - "snaps": false - } - } - ], - "date": 1771890332023, - "id": "KPvzwP2_YWhzGcWvktAgV", - "invoker": "npm:@metamask/permissions-kernel-snap", - "parentCapability": "endowment:rpc" - }, - "wallet_snap": { - "caveats": [ - { - "type": "snapIds", - "value": { - "npm:@metamask/gator-permissions-snap": {} - } - } - ], - "date": 1771890332035, - "id": "88uNjbz5XYigoHylXjZ69", - "invoker": "npm:@metamask/permissions-kernel-snap", - "parentCapability": "wallet_snap" - } - } - }, - "npm:@metamask/solana-wallet-snap": { - "origin": "npm:@metamask/solana-wallet-snap", - "permissions": { - "endowment:assets": { - "caveats": [ - { - "type": "chainIds", - "value": [ - "solana:5eykt4UsFv8P8NJdTREpY1vzqKqZKvdp", - "solana:EtWTRABZaYq6iMfeYKouRu166VU2xqa1" - ] - } - ], - "date": 1771890332099, - "id": "Thdyo_Iq-5FknZrCJpp4h", - "invoker": "npm:@metamask/solana-wallet-snap", - "parentCapability": "endowment:assets" - }, - "endowment:cronjob": { - "caveats": [ - { - "type": "snapCronjob", - "value": { - "jobs": [] - } - } - ], - "date": 1771890332099, - "id": "LdWITV3gQZ_dooA4CVB6D", - "invoker": "npm:@metamask/solana-wallet-snap", - "parentCapability": "endowment:cronjob" - }, - "endowment:keyring": { - "caveats": [ - { - "type": "keyringOrigin", - "value": { - "allowedOrigins": ["https://portfolio.metamask.io"] - } - } - ], - "date": 1771890332099, - "id": "s1XFBw5SFDPKAlGn9-MEm", - "invoker": "npm:@metamask/solana-wallet-snap", - "parentCapability": "endowment:keyring" - }, - "endowment:lifecycle-hooks": { - "caveats": null, - "date": 1771890332099, - "id": "RrniYEnCakWPZmEXuKwtI", - "invoker": "npm:@metamask/solana-wallet-snap", - "parentCapability": "endowment:lifecycle-hooks" - }, - "endowment:name-lookup": { - "caveats": [ - { - "type": "chainIds", - "value": [ - "solana:5eykt4UsFv8P8NJdTREpY1vzqKqZKvdp", - "solana:EtWTRABZaYq6iMfeYKouRu166VU2xqa1" - ] - } - ], - "date": 1771890332099, - "id": "m8WSV1rS5z3eFsqXVh3KT", - "invoker": "npm:@metamask/solana-wallet-snap", - "parentCapability": "endowment:name-lookup" - }, - "endowment:network-access": { - "caveats": null, - "date": 1771890332099, - "id": "vxu3GzU6vP2uycSM4Rb_v", - "invoker": "npm:@metamask/solana-wallet-snap", - "parentCapability": "endowment:network-access" - }, - "endowment:protocol": { - "caveats": [ - { - "type": "protocolSnapScopes", - "value": { - "solana:5eykt4UsFv8P8NJdTREpY1vzqKqZKvdp": { - "methods": [ - "getGenesisHash", - "getLatestBlockhash", - "getMinimumBalanceForRentExemption" - ] - }, - "solana:EtWTRABZaYq6iMfeYKouRu166VU2xqa1": { - "methods": [ - "getGenesisHash", - "getLatestBlockhash", - "getMinimumBalanceForRentExemption" - ] - } - } - } - ], - "date": 1771890332099, - "id": "E2ynzNN6TnbJqk_-gRKxR", - "invoker": "npm:@metamask/solana-wallet-snap", - "parentCapability": "endowment:protocol" - }, - "endowment:rpc": { - "caveats": [ - { - "type": "rpcOrigin", - "value": { - "dapps": true, - "snaps": false - } - } - ], - "date": 1771890332099, - "id": "d5HEPL1mP2Q61X5IGYksP", - "invoker": "npm:@metamask/solana-wallet-snap", - "parentCapability": "endowment:rpc" - }, - "snap_dialog": { - "caveats": null, - "date": 1771890332099, - "id": "9mONRXYR5LWF1p5D33WkM", - "invoker": "npm:@metamask/solana-wallet-snap", - "parentCapability": "snap_dialog" - }, - "snap_getBip32Entropy": { - "caveats": [ - { - "type": "permittedDerivationPaths", - "value": [ - { - "curve": "ed25519", - "path": ["m", "44'", "501'"] - } - ] - } - ], - "date": 1771890332099, - "id": "zL7N4lt_DJ9UsWCni3AjB", - "invoker": "npm:@metamask/solana-wallet-snap", - "parentCapability": "snap_getBip32Entropy" - }, - "snap_getPreferences": { - "caveats": null, - "date": 1771890332099, - "id": "p8NV0kmCYJsBYuqWAiNuR", - "invoker": "npm:@metamask/solana-wallet-snap", - "parentCapability": "snap_getPreferences" - }, - "snap_manageAccounts": { - "caveats": null, - "date": 1771890332099, - "id": "L7Mk_DTpN-smD6jV-o0xx", - "invoker": "npm:@metamask/solana-wallet-snap", - "parentCapability": "snap_manageAccounts" - }, - "snap_manageState": { - "caveats": null, - "date": 1771890332099, - "id": "ZkrOZYNNPpQ9J7wGNrg_n", - "invoker": "npm:@metamask/solana-wallet-snap", - "parentCapability": "snap_manageState" - } - } - }, - "npm:@metamask/tron-wallet-snap": { - "origin": "npm:@metamask/tron-wallet-snap", - "permissions": { - "endowment:assets": { - "caveats": [ - { - "type": "chainIds", - "value": ["tron:728126428"] - } - ], - "date": 1771890332111, - "id": "ovEtQQYrml7a5Qw0uutfY", - "invoker": "npm:@metamask/tron-wallet-snap", - "parentCapability": "endowment:assets" - }, - "endowment:cronjob": { - "caveats": [ - { - "type": "snapCronjob", - "value": { - "jobs": [ - { - "duration": "PT30S", - "request": { - "method": "onSynchronizeSelectedAccountsCronjob" - } - } - ] - } - } - ], - "date": 1771890332111, - "id": "RvEnpy83rpTXpYX8f1N9A", - "invoker": "npm:@metamask/tron-wallet-snap", - "parentCapability": "endowment:cronjob" - }, - "endowment:keyring": { - "caveats": [ - { - "type": "keyringOrigin", - "value": { - "allowedOrigins": ["https://portfolio.metamask.io"] - } - } - ], - "date": 1771890332111, - "id": "nxn2meVgFYgRA9Z8t0c4n", - "invoker": "npm:@metamask/tron-wallet-snap", - "parentCapability": "endowment:keyring" - }, - "endowment:network-access": { - "caveats": null, - "date": 1771890332111, - "id": "I6k5hAQhPSKhyFfaQpCL3", - "invoker": "npm:@metamask/tron-wallet-snap", - "parentCapability": "endowment:network-access" - }, - "snap_dialog": { - "caveats": null, - "date": 1771890332111, - "id": "MMGZ09ZRS_I-qO8VYSwSk", - "invoker": "npm:@metamask/tron-wallet-snap", - "parentCapability": "snap_dialog" - }, - "snap_getBip32Entropy": { - "caveats": [ - { - "type": "permittedDerivationPaths", - "value": [ - { - "curve": "secp256k1", - "path": ["m", "44'", "195'"] - } - ] - } - ], - "date": 1771890332111, - "id": "8xfDhwtZPtz3-DZdCfUFL", - "invoker": "npm:@metamask/tron-wallet-snap", - "parentCapability": "snap_getBip32Entropy" - }, - "snap_getPreferences": { - "caveats": null, - "date": 1771890332111, - "id": "4BPIq3AT8OENA3vBw7hbO", - "invoker": "npm:@metamask/tron-wallet-snap", - "parentCapability": "snap_getPreferences" - }, - "snap_manageAccounts": { - "caveats": null, - "date": 1771890332111, - "id": "g4-F18BK0Ju1oqhEmuP1T", - "invoker": "npm:@metamask/tron-wallet-snap", - "parentCapability": "snap_manageAccounts" - }, - "snap_manageState": { - "caveats": null, - "date": 1771890332111, - "id": "saocexCEDfU5XhzYgrEqt", - "invoker": "npm:@metamask/tron-wallet-snap", - "parentCapability": "snap_manageState" - } - } - } - }, - "permissionHistory": { - "https://app.safe.global": { - "eth_accounts": { - "accounts": { - "0x30e8ccad5a980bdf30447f8c2c48e70989d9d294": 1778721516064, - "0x9f66e62fd52eeb9286385f620d2bcbe02c94443e": 1773944221525, - "0xb3864b298f4fddbbbd2fa5cf1a2a2748932b3b81": 1773330662625, - "0xeeeab71a5989b7951389e3df313ea9876508856f": 1773330701544 - }, - "lastApproved": 1773331224412 - } - }, - "npm:@metamask/ens-resolver-snap": { - "eth_accounts": { - "accounts": { - "0x04400bb51b1f886cff338eb2b4118f9ceb4e6fd5": 1778721557374, - "0x09b8556833e53f92ee0b668db146b43ca2cab130": 1778721557374, - "0x141d32a89a1e0a5ef360034a2f60a4b917c18838": 1778721557374, - "0x2b6a82d1fea4d5b137095ca5306ba2589b630a08": 1778721557374, - "0x30e8ccad5a980bdf30447f8c2c48e70989d9d294": 1778721557374, - "0x3823c59973351f50e8b985e182b81300dae9bb45": 1778721557374, - "0x422b8d8914cdad779f587414d647e953bb3a87db": 1778721557374, - "0x452ca3dad6db7f3a47bbf15b758b6749db579bbc": 1778721557374, - "0x6eff00186ba65c5fade98d75aa4d99ef71fa461b": 1778721557374, - "0x83ad6a1294d949d514361326bcebae4f73957327": 1778721557374, - "0x94d1362400e999b38c845ca2c305c084031dae84": 1778721557374, - "0x98931e2b2272891c2e8e47d675007d94ae90ce64": 1778721557374, - "0x9dc641ccd7d1e7c66e47a25598ace7219548d887": 1778721557374, - "0xa30078e306614c2f444550da6bc759173dfb61fd": 1778721557374, - "0xb3864b298f4fddbbbd2fa5cf1a2a2748932b3b81": 1778721557374, - "0xbcc30cc9b8109f87fcede0c57e3a8c3dc979e3d0": 1778721557374, - "0xc9442048fd0c34b684035a82188b69c4ee5e8f21": 1778721557374, - "0xda04e0fe4e79eebcaffcbfff8ea0bdcd442d2119": 1778721557374, - "0xe2f39519240814a77047490357ced4d094b6c9c7": 1778721557374, - "0xeeeab71a5989b7951389e3df313ea9876508856f": 1778721557374, - "0xf1f63d55e8f25c962079be324c71cdcf792c6047": 1778721557374, - "0xf25bd11c334507fd007d584e2d0b7b2c6543f714": 1778721557374 - } - } - } - }, - "permissionActivityLog": [ - { - "id": 999677210, - "method": "snap_manageState", - "methodType": "restricted", - "origin": "npm:@metamask/institutional-wallet-snap", - "requestTime": 1779124920016, - "responseTime": 1779124920017, - "success": true - }, - { - "id": 999677211, - "method": "snap_manageState", - "methodType": "restricted", - "origin": "npm:@metamask/institutional-wallet-snap", - "requestTime": 1779124920019, - "responseTime": 1779124920019, - "success": true - }, - { - "id": 999677213, - "method": "snap_manageState", - "methodType": "restricted", - "origin": "npm:@metamask/institutional-wallet-snap", - "requestTime": 1779124980015, - "responseTime": 1779124980015, - "success": true - }, - { - "id": 999677214, - "method": "snap_manageState", - "methodType": "restricted", - "origin": "npm:@metamask/institutional-wallet-snap", - "requestTime": 1779124980017, - "responseTime": 1779124980017, - "success": true - }, - { - "id": 999677216, - "method": "snap_manageState", - "methodType": "restricted", - "origin": "npm:@metamask/institutional-wallet-snap", - "requestTime": 1779125040015, - "responseTime": 1779125040015, - "success": true - }, - { - "id": 999677217, - "method": "snap_manageState", - "methodType": "restricted", - "origin": "npm:@metamask/institutional-wallet-snap", - "requestTime": 1779125040016, - "responseTime": 1779125040016, - "success": true - }, - { - "id": 999677219, - "method": "snap_manageState", - "methodType": "restricted", - "origin": "npm:@metamask/institutional-wallet-snap", - "requestTime": 1779125100016, - "responseTime": 1779125100016, - "success": true - }, - { - "id": 999677220, - "method": "snap_manageState", - "methodType": "restricted", - "origin": "npm:@metamask/institutional-wallet-snap", - "requestTime": 1779125100018, - "responseTime": 1779125100018, - "success": true - }, - { - "id": 999677222, - "method": "snap_manageState", - "methodType": "restricted", - "origin": "npm:@metamask/institutional-wallet-snap", - "requestTime": 1779125160013, - "responseTime": 1779125160013, - "success": true - }, - { - "id": 999677223, - "method": "snap_manageState", - "methodType": "restricted", - "origin": "npm:@metamask/institutional-wallet-snap", - "requestTime": 1779125160014, - "responseTime": 1779125160015, - "success": true - }, - { - "id": 999677225, - "method": "snap_manageState", - "methodType": "restricted", - "origin": "npm:@metamask/institutional-wallet-snap", - "requestTime": 1779125220012, - "responseTime": 1779125220013, - "success": true - }, - { - "id": 999677226, - "method": "snap_manageState", - "methodType": "restricted", - "origin": "npm:@metamask/institutional-wallet-snap", - "requestTime": 1779125220014, - "responseTime": 1779125220015, - "success": true - }, - { - "id": 999677228, - "method": "snap_manageState", - "methodType": "restricted", - "origin": "npm:@metamask/institutional-wallet-snap", - "requestTime": 1779125280010, - "responseTime": 1779125280010, - "success": true - }, - { - "id": 999677229, - "method": "snap_manageState", - "methodType": "restricted", - "origin": "npm:@metamask/institutional-wallet-snap", - "requestTime": 1779125280011, - "responseTime": 1779125280012, - "success": true - }, - { - "id": 999677231, - "method": "snap_manageState", - "methodType": "restricted", - "origin": "npm:@metamask/institutional-wallet-snap", - "requestTime": 1779125340016, - "responseTime": 1779125340016, - "success": true - }, - { - "id": 999677232, - "method": "snap_manageState", - "methodType": "restricted", - "origin": "npm:@metamask/institutional-wallet-snap", - "requestTime": 1779125340018, - "responseTime": 1779125340018, - "success": true - }, - { - "id": 999677234, - "method": "snap_manageState", - "methodType": "restricted", - "origin": "npm:@metamask/institutional-wallet-snap", - "requestTime": 1779125400015, - "responseTime": 1779125400016, - "success": true - }, - { - "id": 999677235, - "method": "snap_manageState", - "methodType": "restricted", - "origin": "npm:@metamask/institutional-wallet-snap", - "requestTime": 1779125400017, - "responseTime": 1779125400018, - "success": true - }, - { - "id": 999677237, - "method": "snap_manageState", - "methodType": "restricted", - "origin": "npm:@metamask/institutional-wallet-snap", - "requestTime": 1779125460012, - "responseTime": 1779125460013, - "success": true - }, - { - "id": 999677238, - "method": "snap_manageState", - "methodType": "restricted", - "origin": "npm:@metamask/institutional-wallet-snap", - "requestTime": 1779125460014, - "responseTime": 1779125460014, - "success": true - }, - { - "id": 999677240, - "method": "snap_manageState", - "methodType": "restricted", - "origin": "npm:@metamask/institutional-wallet-snap", - "requestTime": 1779125520011, - "responseTime": 1779125520011, - "success": true - }, - { - "id": 999677241, - "method": "snap_manageState", - "methodType": "restricted", - "origin": "npm:@metamask/institutional-wallet-snap", - "requestTime": 1779125520014, - "responseTime": 1779125520015, - "success": true - }, - { - "id": 999677243, - "method": "snap_manageState", - "methodType": "restricted", - "origin": "npm:@metamask/institutional-wallet-snap", - "requestTime": 1779125580011, - "responseTime": 1779125580011, - "success": true - }, - { - "id": 999677244, - "method": "snap_manageState", - "methodType": "restricted", - "origin": "npm:@metamask/institutional-wallet-snap", - "requestTime": 1779125580012, - "responseTime": 1779125580012, - "success": true - }, - { - "id": 999677246, - "method": "snap_manageState", - "methodType": "restricted", - "origin": "npm:@metamask/institutional-wallet-snap", - "requestTime": 1779125640015, - "responseTime": 1779125640015, - "success": true - }, - { - "id": 999677247, - "method": "snap_manageState", - "methodType": "restricted", - "origin": "npm:@metamask/institutional-wallet-snap", - "requestTime": 1779125640016, - "responseTime": 1779125640017, - "success": true - }, - { - "id": 999677249, - "method": "snap_manageState", - "methodType": "restricted", - "origin": "npm:@metamask/institutional-wallet-snap", - "requestTime": 1779125700013, - "responseTime": 1779125700013, - "success": true - }, - { - "id": 999677250, - "method": "snap_manageState", - "methodType": "restricted", - "origin": "npm:@metamask/institutional-wallet-snap", - "requestTime": 1779125700015, - "responseTime": 1779125700015, - "success": true - }, - { - "id": 999677252, - "method": "snap_manageState", - "methodType": "restricted", - "origin": "npm:@metamask/institutional-wallet-snap", - "requestTime": 1779125760016, - "responseTime": 1779125760017, - "success": true - }, - { - "id": 999677253, - "method": "snap_manageState", - "methodType": "restricted", - "origin": "npm:@metamask/institutional-wallet-snap", - "requestTime": 1779125760019, - "responseTime": 1779125760019, - "success": true - }, - { - "id": 999677255, - "method": "snap_manageState", - "methodType": "restricted", - "origin": "npm:@metamask/institutional-wallet-snap", - "requestTime": 1779125820012, - "responseTime": 1779125820016, - "success": true - }, - { - "id": 999677256, - "method": "snap_manageState", - "methodType": "restricted", - "origin": "npm:@metamask/institutional-wallet-snap", - "requestTime": 1779125820017, - "responseTime": 1779125820017, - "success": true - }, - { - "id": 999677258, - "method": "snap_manageState", - "methodType": "restricted", - "origin": "npm:@metamask/institutional-wallet-snap", - "requestTime": 1779125880014, - "responseTime": 1779125880015, - "success": true - }, - { - "id": 999677259, - "method": "snap_manageState", - "methodType": "restricted", - "origin": "npm:@metamask/institutional-wallet-snap", - "requestTime": 1779125880017, - "responseTime": 1779125880017, - "success": true - }, - { - "id": 999677261, - "method": "snap_manageState", - "methodType": "restricted", - "origin": "npm:@metamask/institutional-wallet-snap", - "requestTime": 1779125940016, - "responseTime": 1779125940017, - "success": true - }, - { - "id": 999677262, - "method": "snap_manageState", - "methodType": "restricted", - "origin": "npm:@metamask/institutional-wallet-snap", - "requestTime": 1779125940018, - "responseTime": 1779125940018, - "success": true - }, - { - "id": 999677264, - "method": "snap_manageState", - "methodType": "restricted", - "origin": "npm:@metamask/institutional-wallet-snap", - "requestTime": 1779126000009, - "responseTime": 1779126000010, - "success": true - }, - { - "id": 999677265, - "method": "snap_manageState", - "methodType": "restricted", - "origin": "npm:@metamask/institutional-wallet-snap", - "requestTime": 1779126000011, - "responseTime": 1779126000011, - "success": true - }, - { - "id": 999677267, - "method": "snap_manageState", - "methodType": "restricted", - "origin": "npm:@metamask/institutional-wallet-snap", - "requestTime": 1779126060014, - "responseTime": 1779126060015, - "success": true - }, - { - "id": 999677268, - "method": "snap_manageState", - "methodType": "restricted", - "origin": "npm:@metamask/institutional-wallet-snap", - "requestTime": 1779126060016, - "responseTime": 1779126060016, - "success": true - }, - { - "id": 999677270, - "method": "snap_manageState", - "methodType": "restricted", - "origin": "npm:@metamask/institutional-wallet-snap", - "requestTime": 1779126120014, - "responseTime": 1779126120015, - "success": true - }, - { - "id": 999677271, - "method": "snap_manageState", - "methodType": "restricted", - "origin": "npm:@metamask/institutional-wallet-snap", - "requestTime": 1779126120018, - "responseTime": 1779126120018, - "success": true - }, - { - "id": 999677273, - "method": "snap_manageState", - "methodType": "restricted", - "origin": "npm:@metamask/institutional-wallet-snap", - "requestTime": 1779126180014, - "responseTime": 1779126180014, - "success": true - }, - { - "id": 999677274, - "method": "snap_manageState", - "methodType": "restricted", - "origin": "npm:@metamask/institutional-wallet-snap", - "requestTime": 1779126180015, - "responseTime": 1779126180015, - "success": true - }, - { - "id": 999677276, - "method": "snap_manageState", - "methodType": "restricted", - "origin": "npm:@metamask/institutional-wallet-snap", - "requestTime": 1779126240012, - "responseTime": 1779126240012, - "success": true - }, - { - "id": 999677277, - "method": "snap_manageState", - "methodType": "restricted", - "origin": "npm:@metamask/institutional-wallet-snap", - "requestTime": 1779126240013, - "responseTime": 1779126240013, - "success": true - }, - { - "id": 999677279, - "method": "snap_manageState", - "methodType": "restricted", - "origin": "npm:@metamask/institutional-wallet-snap", - "requestTime": 1779126300016, - "responseTime": 1779126300017, - "success": true - }, - { - "id": 999677280, - "method": "snap_manageState", - "methodType": "restricted", - "origin": "npm:@metamask/institutional-wallet-snap", - "requestTime": 1779126300018, - "responseTime": 1779126300018, - "success": true - }, - { - "id": 999677282, - "method": "snap_manageState", - "methodType": "restricted", - "origin": "npm:@metamask/institutional-wallet-snap", - "requestTime": 1779126360008, - "responseTime": 1779126360009, - "success": true - }, - { - "id": 999677283, - "method": "snap_manageState", - "methodType": "restricted", - "origin": "npm:@metamask/institutional-wallet-snap", - "requestTime": 1779126360011, - "responseTime": 1779126360011, - "success": true - }, - { - "id": 548121306, - "method": "snap_manageAccounts", - "methodType": "restricted", - "origin": "npm:@metamask/bitcoin-wallet-snap", - "requestTime": 1779126362107, - "responseTime": 1779126362107, - "success": true - }, - { - "id": 1937469011, - "method": "snap_manageAccounts", - "methodType": "restricted", - "origin": "npm:@metamask/solana-wallet-snap", - "requestTime": 1779126363294, - "responseTime": 1779126363294, - "success": true - }, - { - "id": 435827325, - "method": "snap_getEntropy", - "methodType": "restricted", - "origin": "npm:@metamask/message-signing-snap", - "requestTime": 1779126363403, - "responseTime": 1779126363405, - "success": true - }, - { - "id": 548121329, - "method": "snap_manageAccounts", - "methodType": "restricted", - "origin": "npm:@metamask/bitcoin-wallet-snap", - "requestTime": 1779126363725, - "responseTime": 1779126363726, - "success": true - }, - { - "id": 548121330, - "method": "snap_manageAccounts", - "methodType": "restricted", - "origin": "npm:@metamask/bitcoin-wallet-snap", - "requestTime": 1779126363726, - "responseTime": 1779126363727, - "success": true - }, - { - "id": 1937469026, - "method": "snap_getBip32Entropy", - "methodType": "restricted", - "origin": "npm:@metamask/solana-wallet-snap", - "requestTime": 1779126363752, - "responseTime": 1779126363759, - "success": true - }, - { - "id": 435827326, - "method": "snap_getEntropy", - "methodType": "restricted", - "origin": "npm:@metamask/message-signing-snap", - "requestTime": 1779126363932, - "responseTime": 1779126363934, - "success": true - }, - { - "id": 1937469033, - "method": "snap_manageState", - "methodType": "restricted", - "origin": "npm:@metamask/solana-wallet-snap", - "requestTime": 1779126363969, - "responseTime": 1779126363970, - "success": true - }, - { - "id": 548121335, - "method": "snap_manageAccounts", - "methodType": "restricted", - "origin": "npm:@metamask/bitcoin-wallet-snap", - "requestTime": 1779126363977, - "responseTime": 1779126363977, - "success": true - }, - { - "id": 548121340, - "method": "snap_manageAccounts", - "methodType": "restricted", - "origin": "npm:@metamask/bitcoin-wallet-snap", - "requestTime": 1779126364025, - "responseTime": 1779126364025, - "success": true - }, - { - "id": 1937469040, - "method": "snap_manageState", - "methodType": "restricted", - "origin": "npm:@metamask/solana-wallet-snap", - "requestTime": 1779126364030, - "responseTime": 1779126364031, - "success": true - }, - { - "id": 1937469041, - "method": "snap_manageAccounts", - "methodType": "restricted", - "origin": "npm:@metamask/solana-wallet-snap", - "requestTime": 1779126364033, - "responseTime": 1779126364033, - "success": true - }, - { - "id": 548121344, - "method": "snap_manageAccounts", - "methodType": "restricted", - "origin": "npm:@metamask/bitcoin-wallet-snap", - "requestTime": 1779126364045, - "responseTime": 1779126364045, - "success": true - }, - { - "id": 548121348, - "method": "snap_manageAccounts", - "methodType": "restricted", - "origin": "npm:@metamask/bitcoin-wallet-snap", - "requestTime": 1779126364059, - "responseTime": 1779126364059, - "success": true - }, - { - "id": 548121352, - "method": "snap_manageAccounts", - "methodType": "restricted", - "origin": "npm:@metamask/bitcoin-wallet-snap", - "requestTime": 1779126364072, - "responseTime": 1779126364073, - "success": true - }, - { - "id": 548121356, - "method": "snap_manageAccounts", - "methodType": "restricted", - "origin": "npm:@metamask/bitcoin-wallet-snap", - "requestTime": 1779126364085, - "responseTime": 1779126364085, - "success": true - }, - { - "id": 548121360, - "method": "snap_manageAccounts", - "methodType": "restricted", - "origin": "npm:@metamask/bitcoin-wallet-snap", - "requestTime": 1779126364100, - "responseTime": 1779126364100, - "success": true - }, - { - "id": 548121364, - "method": "snap_manageAccounts", - "methodType": "restricted", - "origin": "npm:@metamask/bitcoin-wallet-snap", - "requestTime": 1779126364116, - "responseTime": 1779126364116, - "success": true - }, - { - "id": 548121368, - "method": "snap_manageAccounts", - "methodType": "restricted", - "origin": "npm:@metamask/bitcoin-wallet-snap", - "requestTime": 1779126364129, - "responseTime": 1779126364130, - "success": true - }, - { - "id": 1937469047, - "method": "snap_manageState", - "methodType": "restricted", - "origin": "npm:@metamask/solana-wallet-snap", - "requestTime": 1779126364226, - "responseTime": 1779126364227, - "success": true - }, - { - "id": 1937469071, - "method": "snap_getBip32Entropy", - "methodType": "restricted", - "origin": "npm:@metamask/solana-wallet-snap", - "requestTime": 1779126364536, - "responseTime": 1779126364537, - "success": true - }, - { - "id": 548121372, - "method": "snap_manageAccounts", - "methodType": "restricted", - "origin": "npm:@metamask/bitcoin-wallet-snap", - "requestTime": 1779126364560, - "responseTime": 1779126364561, - "success": true - }, - { - "id": 548121376, - "method": "snap_manageAccounts", - "methodType": "restricted", - "origin": "npm:@metamask/bitcoin-wallet-snap", - "requestTime": 1779126364577, - "responseTime": 1779126364577, - "success": true - }, - { - "id": 548121380, - "method": "snap_manageAccounts", - "methodType": "restricted", - "origin": "npm:@metamask/bitcoin-wallet-snap", - "requestTime": 1779126364591, - "responseTime": 1779126364591, - "success": true - }, - { - "id": 548121384, - "method": "snap_manageAccounts", - "methodType": "restricted", - "origin": "npm:@metamask/bitcoin-wallet-snap", - "requestTime": 1779126364603, - "responseTime": 1779126364603, - "success": true - }, - { - "id": 548121388, - "method": "snap_manageAccounts", - "methodType": "restricted", - "origin": "npm:@metamask/bitcoin-wallet-snap", - "requestTime": 1779126364619, - "responseTime": 1779126364619, - "success": true - }, - { - "id": 548121392, - "method": "snap_manageAccounts", - "methodType": "restricted", - "origin": "npm:@metamask/bitcoin-wallet-snap", - "requestTime": 1779126364634, - "responseTime": 1779126364634, - "success": true - }, - { - "id": 1937469079, - "method": "snap_manageState", - "methodType": "restricted", - "origin": "npm:@metamask/solana-wallet-snap", - "requestTime": 1779126364796, - "responseTime": 1779126364797, - "success": true - }, - { - "id": 1937469083, - "method": "snap_manageState", - "methodType": "restricted", - "origin": "npm:@metamask/solana-wallet-snap", - "requestTime": 1779126364805, - "responseTime": 1779126364806, - "success": true - }, - { - "id": 1937469084, - "method": "snap_manageAccounts", - "methodType": "restricted", - "origin": "npm:@metamask/solana-wallet-snap", - "requestTime": 1779126364806, - "responseTime": 1779126364807, - "success": true - }, - { - "id": 1937469087, - "method": "snap_manageState", - "methodType": "restricted", - "origin": "npm:@metamask/solana-wallet-snap", - "requestTime": 1779126364826, - "responseTime": 1779126364826, - "success": true - }, - { - "id": 1937469088, - "method": "snap_manageAccounts", - "methodType": "restricted", - "origin": "npm:@metamask/solana-wallet-snap", - "requestTime": 1779126364827, - "responseTime": 1779126364828, - "success": true - }, - { - "id": 1937469089, - "method": "snap_manageAccounts", - "methodType": "restricted", - "origin": "npm:@metamask/solana-wallet-snap", - "requestTime": 1779126364828, - "responseTime": 1779126364829, - "success": true - }, - { - "id": 1144056634, - "method": "snap_manageAccounts", - "methodType": "restricted", - "origin": "npm:@metamask/tron-wallet-snap", - "requestTime": 1779126365644, - "responseTime": 1779126365644, - "success": true - }, - { - "id": 1937469093, - "method": "snap_manageState", - "methodType": "restricted", - "origin": "npm:@metamask/solana-wallet-snap", - "requestTime": 1779126365687, - "responseTime": 1779126365688, - "success": true - }, - { - "id": 1937469094, - "method": "snap_manageAccounts", - "methodType": "restricted", - "origin": "npm:@metamask/solana-wallet-snap", - "requestTime": 1779126365690, - "responseTime": 1779126365691, - "success": true - }, - { - "id": 1144056638, - "method": "snap_manageState", - "methodType": "restricted", - "origin": "npm:@metamask/tron-wallet-snap", - "requestTime": 1779126366103, - "responseTime": 1779126366103, - "success": true - }, - { - "id": 1144056640, - "method": "snap_manageAccounts", - "methodType": "restricted", - "origin": "npm:@metamask/tron-wallet-snap", - "requestTime": 1779126366106, - "responseTime": 1779126366106, - "success": true - }, - { - "id": 1144056641, - "method": "snap_manageAccounts", - "methodType": "restricted", - "origin": "npm:@metamask/tron-wallet-snap", - "requestTime": 1779126366108, - "responseTime": 1779126366108, - "success": true - }, - { - "id": 548121397, - "method": "snap_manageAccounts", - "methodType": "restricted", - "origin": "npm:@metamask/bitcoin-wallet-snap", - "requestTime": 1779126366109, - "responseTime": 1779126366110, - "success": true - }, - { - "id": 1144056643, - "method": "snap_manageState", - "methodType": "restricted", - "origin": "npm:@metamask/tron-wallet-snap", - "requestTime": 1779126366114, - "responseTime": 1779126366114, - "success": true - }, - { - "id": 1144056644, - "method": "snap_manageAccounts", - "methodType": "restricted", - "origin": "npm:@metamask/tron-wallet-snap", - "requestTime": 1779126366115, - "responseTime": 1779126366115, - "success": true - }, - { - "id": 548121399, - "method": "snap_manageAccounts", - "methodType": "restricted", - "origin": "npm:@metamask/bitcoin-wallet-snap", - "requestTime": 1779126373493, - "responseTime": 1779126373493, - "success": true - }, - { - "id": 1144056646, - "method": "snap_manageAccounts", - "methodType": "restricted", - "origin": "npm:@metamask/tron-wallet-snap", - "requestTime": 1779126373645, - "responseTime": 1779126373646, - "success": true - }, - { - "id": 548121401, - "method": "snap_manageAccounts", - "methodType": "restricted", - "origin": "npm:@metamask/bitcoin-wallet-snap", - "requestTime": 1779126373811, - "responseTime": 1779126373811, - "success": true - }, - { - "id": 1144056651, - "method": "snap_manageAccounts", - "methodType": "restricted", - "origin": "npm:@metamask/tron-wallet-snap", - "requestTime": 1779126373930, - "responseTime": 1779126373930, - "success": true - }, - { - "id": 1144056652, - "method": "snap_manageState", - "methodType": "restricted", - "origin": "npm:@metamask/tron-wallet-snap", - "requestTime": 1779126373933, - "responseTime": 1779126373933, - "success": true - }, - { - "id": 1144056654, - "method": "snap_manageAccounts", - "methodType": "restricted", - "origin": "npm:@metamask/tron-wallet-snap", - "requestTime": 1779126373934, - "responseTime": 1779126373934, - "success": true - }, - { - "id": 1144056655, - "method": "snap_manageState", - "methodType": "restricted", - "origin": "npm:@metamask/tron-wallet-snap", - "requestTime": 1779126373937, - "responseTime": 1779126373938, - "success": true - }, - { - "id": 1144056656, - "method": "snap_manageAccounts", - "methodType": "restricted", - "origin": "npm:@metamask/tron-wallet-snap", - "requestTime": 1779126373939, - "responseTime": 1779126373939, - "success": true - } - ], - "subjectMetadata": { - "http://localhost:3000": { - "extensionId": null, - "iconUrl": "http://localhost:3000/assets/favicon-CoJgG2Jx.svg", - "name": "Create New Core Release", - "origin": "http://localhost:3000", - "subjectType": "website" - }, - "https://app.safe.global": { - "extensionId": null, - "iconUrl": "https://app.safe.global/favicons/favicon.ico", - "name": "Safe{Wallet} – Transaction details", - "origin": "https://app.safe.global", - "subjectType": "website" - }, - "https://docs.metamask.io": { - "extensionId": null, - "iconUrl": "https://docs.metamask.io/img/favicons/favicon-96x96.png", - "name": "Services introduction | MetaMask developer documentation", - "origin": "https://docs.metamask.io", - "subjectType": "website" - }, - "npm:@metamask/bitcoin-wallet-snap": { - "extensionId": null, - "iconUrl": null, - "name": "Bitcoin", - "origin": "npm:@metamask/bitcoin-wallet-snap", - "subjectType": "snap", - "svgIcon": "\n\n\n\n\n\n\n\n\n\n", - "version": "1.10.1" - }, - "npm:@metamask/ens-resolver-snap": { - "extensionId": null, - "iconUrl": null, - "name": "Ethereum Name Service resolver", - "origin": "npm:@metamask/ens-resolver-snap", - "subjectType": "snap", - "svgIcon": "\n \n \n \n \n \n \n \n \n\n", - "version": "1.2.0" - }, - "npm:@metamask/gator-permissions-snap": { - "extensionId": null, - "iconUrl": null, - "name": "Gator Permissions", - "origin": "npm:@metamask/gator-permissions-snap", - "subjectType": "snap", - "svgIcon": "\n\n\n\n\n\n\n\n\n\n", - "version": "2.1.0" - }, - "npm:@metamask/institutional-wallet-snap": { - "extensionId": null, - "iconUrl": null, - "name": "Institutional Wallet", - "origin": "npm:@metamask/institutional-wallet-snap", - "subjectType": "snap", - "svgIcon": "\n", - "version": "1.5.0" - }, - "npm:@metamask/message-signing-snap": { - "extensionId": null, - "iconUrl": null, - "name": "Sign in with MetaMask", - "origin": "npm:@metamask/message-signing-snap", - "subjectType": "snap", - "svgIcon": "\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n", - "version": "1.1.4" - }, - "npm:@metamask/permissions-kernel-snap": { - "extensionId": null, - "iconUrl": null, - "name": "MetaMask Permissions Kernel", - "origin": "npm:@metamask/permissions-kernel-snap", - "subjectType": "snap", - "svgIcon": "\n\n\n\n\n\n\n\n\n\n", - "version": "1.3.0" - }, - "npm:@metamask/solana-wallet-snap": { - "extensionId": null, - "iconUrl": null, - "name": "Solana", - "origin": "npm:@metamask/solana-wallet-snap", - "subjectType": "snap", - "svgIcon": "\n\n\n\n\n\n\n\n\n\n\n\n\n", - "version": "2.8.0" - }, - "npm:@metamask/tron-wallet-snap": { - "extensionId": null, - "iconUrl": null, - "name": "Tron", - "origin": "npm:@metamask/tron-wallet-snap", - "subjectType": "snap", - "svgIcon": "", - "version": "1.25.3" - }, - "https://github.com": { - "origin": "https://github.com", - "name": "feat: submit batch sell quotes by micaelae · Pull Request #8775 · MetaMask/core", - "iconUrl": "https://github.githubassets.com/favicons/favicon-failure.svg", - "subjectType": "website", - "extensionId": null - }, - "https://consensys.okta.com": { - "origin": "https://consensys.okta.com", - "name": "consensys.okta.com/login/token/redirect?stateToken=02.id.a_HlTxxdBUfVBJTEQPcYltNp6Pj8bzdU68FIq7ZX", - "iconUrl": null, - "subjectType": "website", - "extensionId": null - } - }, - "announcements": {}, - "orderedNetworkList": [ - { - "networkId": "eip155:1" - }, - { - "networkId": "eip155:59144" - }, - { - "networkId": "eip155:42161" - }, - { - "networkId": "eip155:137" - }, - { - "networkId": "eip155:4326" - }, - { - "networkId": "eip155:56" - }, - { - "networkId": "eip155:43114" - }, - { - "networkId": "eip155:324" - }, - { - "networkId": "eip155:143" - }, - { - "networkId": "eip155:10" - }, - { - "networkId": "eip155:8453" - } - ], - "enabledNetworkMap": { - "bip122": { - "bip122:000000000019d6689c085ae165831e93": true, - "bip122:000000000933ea01ad0ee984209779ba": false, - "bip122:00000000da84f2bafbbc53dee25a72ae": false, - "bip122:00000008819873e925422c1ff0f99f7c": false, - "bip122:regtest": false - }, - "eip155": { - "0x1": true, - "0x10e6": true, - "0x144": true, - "0x18c7": false, - "0x2105": true, - "0x279f": false, - "0x38": true, - "0x89": true, - "0x8f": true, - "0xa": true, - "0xa4b1": true, - "0xa86a": true, - "0xaa36a7": false, - "0xe705": false, - "0xe708": true - }, - "solana": { - "solana:4uhcVJyU9pJkvQyS88uRDiswHXSCkY3z": false, - "solana:5eykt4UsFv8P8NJdTREpY1vzqKqZKvdp": true, - "solana:EtWTRABZaYq6iMfeYKouRu166VU2xqa1": false - }, - "tron": { - "tron:2494104990": false, - "tron:3448148188": false, - "tron:728126428": true - } - }, - "nativeAssetIdentifiers": { - "eip155:1": "eip155:1/slip44:60", - "eip155:10": "eip155:10/slip44:60", - "eip155:10143": "eip155:10143/slip44:1", - "eip155:11155111": "eip155:11155111/slip44:1", - "eip155:137": "eip155:137/slip44:966", - "eip155:143": "eip155:143/slip44:268435779", - "eip155:324": "eip155:324/slip44:60", - "eip155:42161": "eip155:42161/slip44:60", - "eip155:43114": "eip155:43114/slip44:9005", - "eip155:4326": "eip155:4326/slip44:60", - "eip155:56": "eip155:56/slip44:714", - "eip155:59141": "eip155:59141/slip44:1", - "eip155:59144": "eip155:59144/slip44:60", - "eip155:6343": "eip155:6343/slip44:60", - "eip155:8453": "eip155:8453/slip44:60" - }, - "pinnedAccountList": [], - "hiddenAccountList": [], - "gasFeeEstimatesByChainId": { - "0x1": { - "gasFeeEstimates": { - "low": { - "suggestedMaxPriorityFeePerGas": "0.001395747", - "suggestedMaxFeePerGas": "0.129072258", - "minWaitTimeEstimate": 24000, - "maxWaitTimeEstimate": 48000 - }, - "medium": { - "suggestedMaxPriorityFeePerGas": "2", - "suggestedMaxFeePerGas": "2.182577411", - "minWaitTimeEstimate": 12000, - "maxWaitTimeEstimate": 24000 - }, - "high": { - "suggestedMaxPriorityFeePerGas": "2", - "suggestedMaxFeePerGas": "2.182577411", - "minWaitTimeEstimate": 12000, - "maxWaitTimeEstimate": 12000 - }, - "estimatedBaseFee": "0.127676511", - "historicalBaseFeeRange": ["0.104663499", "0.188412831"], - "baseFeeTrend": "up", - "latestPriorityFeeRange": ["0.00438723", "1.5"], - "historicalPriorityFeeRange": ["0.0000001", "32.184323319"], - "priorityFeeTrend": "down", - "networkCongestion": 0.2899 - }, - "estimatedGasFeeTimeBounds": { - "lowerTimeBound": 12000, - "upperTimeBound": 12000 - }, - "gasEstimateType": "fee-market" - }, - "0x10e6": { - "estimatedGasFeeTimeBounds": { - "lowerTimeBound": 250, - "upperTimeBound": 500 - }, - "gasEstimateType": "fee-market", - "gasFeeEstimates": { - "baseFeeTrend": "down", - "estimatedBaseFee": "0.001", - "high": { - "maxWaitTimeEstimate": 500, - "minWaitTimeEstimate": 250, - "suggestedMaxFeePerGas": "0.001", - "suggestedMaxPriorityFeePerGas": "0" - }, - "historicalBaseFeeRange": ["0.001", "0.001"], - "historicalPriorityFeeRange": ["0", "0.0004"], - "latestPriorityFeeRange": ["0", "0.0004"], - "low": { - "maxWaitTimeEstimate": 1000, - "minWaitTimeEstimate": 250, - "suggestedMaxFeePerGas": "0.001", - "suggestedMaxPriorityFeePerGas": "0" - }, - "medium": { - "maxWaitTimeEstimate": 750, - "minWaitTimeEstimate": 250, - "suggestedMaxFeePerGas": "0.001", - "suggestedMaxPriorityFeePerGas": "0" - }, - "networkCongestion": 0, - "priorityFeeTrend": "down" - } - }, - "0x144": { - "estimatedGasFeeTimeBounds": { - "lowerTimeBound": 1000, - "upperTimeBound": 2000 - }, - "gasEstimateType": "fee-market", - "gasFeeEstimates": { - "baseFeeTrend": "down", - "estimatedBaseFee": "0.04525", - "high": { - "maxWaitTimeEstimate": 2000, - "minWaitTimeEstimate": 1000, - "suggestedMaxFeePerGas": "0.076925", - "suggestedMaxPriorityFeePerGas": "0" - }, - "historicalBaseFeeRange": ["0.04525", "0.04525"], - "historicalPriorityFeeRange": ["0", "0"], - "latestPriorityFeeRange": ["0", "0"], - "low": { - "maxWaitTimeEstimate": 4000, - "minWaitTimeEstimate": 1000, - "suggestedMaxFeePerGas": "0.04525", - "suggestedMaxPriorityFeePerGas": "0" - }, - "medium": { - "maxWaitTimeEstimate": 3000, - "minWaitTimeEstimate": 1000, - "suggestedMaxFeePerGas": "0.0610875", - "suggestedMaxPriorityFeePerGas": "0" - }, - "networkCongestion": 0, - "priorityFeeTrend": "down" - } - }, - "0x2105": { - "estimatedGasFeeTimeBounds": { - "lowerTimeBound": 2000, - "upperTimeBound": 4000 - }, - "gasEstimateType": "fee-market", - "gasFeeEstimates": { - "baseFeeTrend": "down", - "estimatedBaseFee": "0.005", - "high": { - "maxWaitTimeEstimate": 4000, - "minWaitTimeEstimate": 2000, - "suggestedMaxFeePerGas": "0.057", - "suggestedMaxPriorityFeePerGas": "0.007" - }, - "historicalBaseFeeRange": ["0.005", "0.005"], - "historicalPriorityFeeRange": ["0.000000001", "1.2488225"], - "latestPriorityFeeRange": ["0.000000001", "0.0148099"], - "low": { - "maxWaitTimeEstimate": 8000, - "minWaitTimeEstimate": 2000, - "suggestedMaxFeePerGas": "0.0111", - "suggestedMaxPriorityFeePerGas": "0.0011" - }, - "medium": { - "maxWaitTimeEstimate": 6000, - "minWaitTimeEstimate": 2000, - "suggestedMaxFeePerGas": "0.027", - "suggestedMaxPriorityFeePerGas": "0.007" - }, - "networkCongestion": 0, - "priorityFeeTrend": "down" - } - }, - "0x38": { - "gasFeeEstimates": { - "low": { - "suggestedMaxPriorityFeePerGas": "0.05", - "suggestedMaxFeePerGas": "0.05", - "minWaitTimeEstimate": 333, - "maxWaitTimeEstimate": 1332 - }, - "medium": { - "suggestedMaxPriorityFeePerGas": "0.05", - "suggestedMaxFeePerGas": "0.05", - "minWaitTimeEstimate": 333, - "maxWaitTimeEstimate": 999 - }, - "high": { - "suggestedMaxPriorityFeePerGas": "0.05", - "suggestedMaxFeePerGas": "0.05", - "minWaitTimeEstimate": 333, - "maxWaitTimeEstimate": 666 - }, - "estimatedBaseFee": "0", - "historicalBaseFeeRange": ["0", "0"], - "baseFeeTrend": "down", - "latestPriorityFeeRange": ["0.05", "0.100000011"], - "historicalPriorityFeeRange": ["0.05", "0.100000011"], - "priorityFeeTrend": "up", - "networkCongestion": 0 - }, - "estimatedGasFeeTimeBounds": { - "lowerTimeBound": 333, - "upperTimeBound": 666 - }, - "gasEstimateType": "fee-market" - }, - "0x3e7": { - "estimatedGasFeeTimeBounds": { - "lowerTimeBound": 1000, - "upperTimeBound": 2000 - }, - "gasEstimateType": "fee-market", - "gasFeeEstimates": { - "baseFeeTrend": "down", - "estimatedBaseFee": "0.1", - "high": { - "maxWaitTimeEstimate": 2000, - "minWaitTimeEstimate": 1000, - "suggestedMaxFeePerGas": "1.000000001", - "suggestedMaxPriorityFeePerGas": "0.000000001" - }, - "historicalBaseFeeRange": ["0.087675", "0.129604202"], - "historicalPriorityFeeRange": ["0.000000001", "886.361671017"], - "latestPriorityFeeRange": ["0.000000001", "2.25"], - "low": { - "maxWaitTimeEstimate": 4000, - "minWaitTimeEstimate": 1000, - "suggestedMaxFeePerGas": "0.200000001", - "suggestedMaxPriorityFeePerGas": "0.000000001" - }, - "medium": { - "maxWaitTimeEstimate": 3000, - "minWaitTimeEstimate": 1000, - "suggestedMaxFeePerGas": "0.400000001", - "suggestedMaxPriorityFeePerGas": "0.000000001" - }, - "networkCongestion": 0.04, - "priorityFeeTrend": "down" - } - }, - "0x89": { - "estimatedGasFeeTimeBounds": { - "lowerTimeBound": 2000, - "upperTimeBound": 6000 - }, - "gasEstimateType": "fee-market", - "gasFeeEstimates": { - "baseFeeTrend": "up", - "estimatedBaseFee": "248.473131234", - "high": { - "maxWaitTimeEstimate": 4000, - "minWaitTimeEstimate": 2000, - "suggestedMaxFeePerGas": "504.048123098", - "suggestedMaxPriorityFeePerGas": "81.6438" - }, - "historicalBaseFeeRange": ["244.563520761", "259.318230691"], - "historicalPriorityFeeRange": ["24.948004796", "11070.859480767"], - "latestPriorityFeeRange": ["83.31", "4227.526868766"], - "low": { - "maxWaitTimeEstimate": 8000, - "minWaitTimeEstimate": 2000, - "suggestedMaxFeePerGas": "324.613131234", - "suggestedMaxPriorityFeePerGas": "76.14" - }, - "medium": { - "maxWaitTimeEstimate": 6000, - "minWaitTimeEstimate": 2000, - "suggestedMaxFeePerGas": "414.008727166", - "suggestedMaxPriorityFeePerGas": "78.57" - }, - "networkCongestion": 0.18155, - "priorityFeeTrend": "up" - } - }, - "0x8f": { - "estimatedGasFeeTimeBounds": { - "lowerTimeBound": 500, - "upperTimeBound": 1500 - }, - "gasEstimateType": "fee-market", - "gasFeeEstimates": { - "baseFeeTrend": "down", - "estimatedBaseFee": "100", - "high": { - "maxWaitTimeEstimate": 1000, - "minWaitTimeEstimate": 500, - "suggestedMaxFeePerGas": "171.96", - "suggestedMaxPriorityFeePerGas": "1.96" - }, - "historicalBaseFeeRange": ["100", "100"], - "historicalPriorityFeeRange": ["0.2", "11244.420485386"], - "latestPriorityFeeRange": ["2", "617.58261773"], - "low": { - "maxWaitTimeEstimate": 2000, - "minWaitTimeEstimate": 500, - "suggestedMaxFeePerGas": "101.88", - "suggestedMaxPriorityFeePerGas": "1.88" - }, - "medium": { - "maxWaitTimeEstimate": 1500, - "minWaitTimeEstimate": 500, - "suggestedMaxFeePerGas": "136.94", - "suggestedMaxPriorityFeePerGas": "1.94" - }, - "networkCongestion": 0, - "priorityFeeTrend": "down" - } - }, - "0xa": { - "estimatedGasFeeTimeBounds": { - "lowerTimeBound": 2000, - "upperTimeBound": 4000 - }, - "gasEstimateType": "fee-market", - "gasFeeEstimates": { - "baseFeeTrend": "down", - "estimatedBaseFee": "0.00000034", - "high": { - "maxWaitTimeEstimate": 4000, - "minWaitTimeEstimate": 2000, - "suggestedMaxFeePerGas": "0.0001034", - "suggestedMaxPriorityFeePerGas": "0.0001" - }, - "historicalBaseFeeRange": ["0.000000339", "0.000000342"], - "historicalPriorityFeeRange": ["0.000000001", "2"], - "latestPriorityFeeRange": ["0.000000001", "0.001440792"], - "low": { - "maxWaitTimeEstimate": 8000, - "minWaitTimeEstimate": 2000, - "suggestedMaxFeePerGas": "0.00010068", - "suggestedMaxPriorityFeePerGas": "0.0001" - }, - "medium": { - "maxWaitTimeEstimate": 6000, - "minWaitTimeEstimate": 2000, - "suggestedMaxFeePerGas": "0.00010102", - "suggestedMaxPriorityFeePerGas": "0.0001" - }, - "networkCongestion": 0.4, - "priorityFeeTrend": "up" - } - }, - "0xa4b1": { - "estimatedGasFeeTimeBounds": { - "lowerTimeBound": 250, - "upperTimeBound": 500 - }, - "gasEstimateType": "fee-market", - "gasFeeEstimates": { - "baseFeeTrend": "down", - "estimatedBaseFee": "0.020014", - "high": { - "maxWaitTimeEstimate": 500, - "minWaitTimeEstimate": 250, - "suggestedMaxFeePerGas": "0.20014", - "suggestedMaxPriorityFeePerGas": "0" - }, - "historicalBaseFeeRange": ["0.02", "0.020646"], - "historicalPriorityFeeRange": ["0", "0"], - "latestPriorityFeeRange": ["0", "0"], - "low": { - "maxWaitTimeEstimate": 1000, - "minWaitTimeEstimate": 250, - "suggestedMaxFeePerGas": "0.040028", - "suggestedMaxPriorityFeePerGas": "0" - }, - "medium": { - "maxWaitTimeEstimate": 750, - "minWaitTimeEstimate": 250, - "suggestedMaxFeePerGas": "0.060042", - "suggestedMaxPriorityFeePerGas": "0" - }, - "networkCongestion": 0.36, - "priorityFeeTrend": "down" - } - }, - "0xa86a": { - "estimatedGasFeeTimeBounds": { - "lowerTimeBound": 1000, - "upperTimeBound": 3000 - }, - "gasEstimateType": "fee-market", - "gasFeeEstimates": { - "baseFeeTrend": "down", - "estimatedBaseFee": "0.000028691", - "high": { - "maxWaitTimeEstimate": 2000, - "minWaitTimeEstimate": 1000, - "suggestedMaxFeePerGas": "2.000048775", - "suggestedMaxPriorityFeePerGas": "2" - }, - "historicalBaseFeeRange": ["0.000023696", "0.00002916"], - "historicalPriorityFeeRange": ["0.000000009", "212.121060137"], - "latestPriorityFeeRange": ["0.000001", "1.5"], - "low": { - "maxWaitTimeEstimate": 4000, - "minWaitTimeEstimate": 1000, - "suggestedMaxFeePerGas": "1.000028691", - "suggestedMaxPriorityFeePerGas": "1" - }, - "medium": { - "maxWaitTimeEstimate": 3000, - "minWaitTimeEstimate": 1000, - "suggestedMaxFeePerGas": "1.500038733", - "suggestedMaxPriorityFeePerGas": "1.5" - }, - "networkCongestion": 0.242, - "priorityFeeTrend": "up" - } - }, - "0xe708": { - "estimatedGasFeeTimeBounds": { - "lowerTimeBound": 2000, - "upperTimeBound": 4000 - }, - "gasEstimateType": "fee-market", - "gasFeeEstimates": { - "baseFeeTrend": "down", - "estimatedBaseFee": "0.000000007", - "high": { - "maxWaitTimeEstimate": 4000, - "minWaitTimeEstimate": 2000, - "suggestedMaxFeePerGas": "0.041904005", - "suggestedMaxPriorityFeePerGas": "0.041903993" - }, - "historicalBaseFeeRange": ["0.000000007", "0.000000007"], - "historicalPriorityFeeRange": ["0.041903993", "0.041903993"], - "latestPriorityFeeRange": ["0.041903993", "0.041903993"], - "low": { - "maxWaitTimeEstimate": 8000, - "minWaitTimeEstimate": 2000, - "suggestedMaxFeePerGas": "0.041904", - "suggestedMaxPriorityFeePerGas": "0.041903993" - }, - "medium": { - "maxWaitTimeEstimate": 6000, - "minWaitTimeEstimate": 2000, - "suggestedMaxFeePerGas": "0.041904003", - "suggestedMaxPriorityFeePerGas": "0.041903993" - }, - "networkCongestion": 0, - "priorityFeeTrend": "down" - } - } - }, - "gasFeeEstimates": { - "low": { - "suggestedMaxPriorityFeePerGas": "0.05", - "suggestedMaxFeePerGas": "0.05", - "minWaitTimeEstimate": 333, - "maxWaitTimeEstimate": 1332 - }, - "medium": { - "suggestedMaxPriorityFeePerGas": "0.05", - "suggestedMaxFeePerGas": "0.05", - "minWaitTimeEstimate": 333, - "maxWaitTimeEstimate": 999 - }, - "high": { - "suggestedMaxPriorityFeePerGas": "0.05", - "suggestedMaxFeePerGas": "0.05", - "minWaitTimeEstimate": 333, - "maxWaitTimeEstimate": 666 - }, - "estimatedBaseFee": "0", - "historicalBaseFeeRange": ["0", "0"], - "baseFeeTrend": "down", - "latestPriorityFeeRange": ["0.05", "0.100000011"], - "historicalPriorityFeeRange": ["0.05", "0.100000011"], - "priorityFeeTrend": "up", - "networkCongestion": 0 - }, - "estimatedGasFeeTimeBounds": { - "lowerTimeBound": 333, - "upperTimeBound": 666 - }, - "gasEstimateType": "fee-market", - "nonRPCGasFeeApisDisabled": false, - "tokensChainsCache": { - "0x1": { - "data": { - "0xc011a73ee8576fb46f5e1c5751ca3b9fe0af2a6f": { - "address": "0xc011a73ee8576fb46f5e1c5751ca3b9fe0af2a6f", - "symbol": "SNX", - "decimals": 18, - "name": "Synthetix Network Token", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xc011a73ee8576fb46f5e1c5751ca3b9fe0af2a6f.png", - "aggregators": [ - "Metamask", - "1inch", - "LiFi", - "TrustWallet", - "Socket", - "Rubic", - "Squid", - "Rango", - "Sonarwatch", - "SushiSwap", - "Bancor" - ], - "occurrences": 11 - }, - "0x7fc66500c84a76ad7e9c93437bfc5ac33e2ddae9": { - "address": "0x7fc66500c84a76ad7e9c93437bfc5ac33e2ddae9", - "symbol": "AAVE", - "decimals": 18, - "name": "Aave", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x7fc66500c84a76ad7e9c93437bfc5ac33e2ddae9.png", - "aggregators": [ - "Metamask", - "1inch", - "LiFi", - "TrustWallet", - "Socket", - "Rubic", - "Squid", - "Rango", - "Sonarwatch", - "SushiSwap", - "Bancor" - ], - "occurrences": 11 - }, - "0x6b175474e89094c44da98b954eedeac495271d0f": { - "address": "0x6b175474e89094c44da98b954eedeac495271d0f", - "symbol": "DAI", - "decimals": 18, - "name": "Dai Stablecoin", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x6b175474e89094c44da98b954eedeac495271d0f.png", - "aggregators": [ - "Metamask", - "1inch", - "LiFi", - "TrustWallet", - "Socket", - "Rubic", - "Squid", - "Rango", - "Sonarwatch", - "SushiSwap", - "Bancor" - ], - "occurrences": 11 - }, - "0x514910771af9ca656af840dff83e8264ecf986ca": { - "address": "0x514910771af9ca656af840dff83e8264ecf986ca", - "symbol": "LINK", - "decimals": 18, - "name": "Chainlink Token", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x514910771af9ca656af840dff83e8264ecf986ca.png", - "aggregators": [ - "Metamask", - "1inch", - "LiFi", - "TrustWallet", - "Socket", - "Rubic", - "Squid", - "Rango", - "Sonarwatch", - "SushiSwap", - "Bancor" - ], - "occurrences": 11 - }, - "0x57ab1ec28d129707052df4df418d58a2d46d5f51": { - "address": "0x57ab1ec28d129707052df4df418d58a2d46d5f51", - "symbol": "SUSD", - "decimals": 18, - "name": "Synth sUSD", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x57ab1ec28d129707052df4df418d58a2d46d5f51.png", - "aggregators": [ - "Metamask", - "1inch", - "LiFi", - "TrustWallet", - "Socket", - "Rubic", - "Squid", - "Rango", - "Sonarwatch", - "SushiSwap", - "Bancor" - ], - "occurrences": 11 - }, - "0x1f9840a85d5af5bf1d1762f925bdaddc4201f984": { - "address": "0x1f9840a85d5af5bf1d1762f925bdaddc4201f984", - "symbol": "UNI", - "decimals": 18, - "name": "Uniswap", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x1f9840a85d5af5bf1d1762f925bdaddc4201f984.png", - "aggregators": [ - "Metamask", - "1inch", - "LiFi", - "TrustWallet", - "Socket", - "Rubic", - "Squid", - "Rango", - "Sonarwatch", - "SushiSwap", - "Bancor" - ], - "occurrences": 11 - }, - "0x2260fac5e5542a773aa44fbcfedf7c193bc2c599": { - "address": "0x2260fac5e5542a773aa44fbcfedf7c193bc2c599", - "symbol": "WBTC", - "decimals": 8, - "name": "Wrapped Bitcoin", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x2260fac5e5542a773aa44fbcfedf7c193bc2c599.png", - "aggregators": [ - "Metamask", - "1inch", - "LiFi", - "TrustWallet", - "Socket", - "Rubic", - "Squid", - "Rango", - "Sonarwatch", - "SushiSwap", - "Bancor" - ], - "occurrences": 11 - }, - "0x0bc529c00c6401aef6d220be8c6ea1667f6ad93e": { - "address": "0x0bc529c00c6401aef6d220be8c6ea1667f6ad93e", - "symbol": "YFI", - "decimals": 18, - "name": "yearn.finance", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x0bc529c00c6401aef6d220be8c6ea1667f6ad93e.png", - "aggregators": [ - "Metamask", - "1inch", - "LiFi", - "TrustWallet", - "Socket", - "Rubic", - "Squid", - "Rango", - "Sonarwatch", - "SushiSwap", - "Bancor" - ], - "occurrences": 11 - }, - "0x9f8f72aa9304c8b593d555f12ef6589cc3a579a2": { - "address": "0x9f8f72aa9304c8b593d555f12ef6589cc3a579a2", - "symbol": "MKR", - "decimals": 18, - "name": "Maker", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x9f8f72aa9304c8b593d555f12ef6589cc3a579a2.png", - "aggregators": [ - "Metamask", - "1inch", - "LiFi", - "TrustWallet", - "Socket", - "Rubic", - "Squid", - "Sonarwatch", - "SushiSwap", - "Bancor" - ], - "occurrences": 10 - }, - "0xba100000625a3754423978a60c9317c58a424e3d": { - "address": "0xba100000625a3754423978a60c9317c58a424e3d", - "symbol": "BAL", - "decimals": 18, - "name": "Balancer (BAL)", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xba100000625a3754423978a60c9317c58a424e3d.png", - "aggregators": [ - "Metamask", - "1inch", - "LiFi", - "TrustWallet", - "Socket", - "Rubic", - "Squid", - "Rango", - "Sonarwatch", - "SushiSwap", - "Bancor" - ], - "occurrences": 11 - }, - "0xc00e94cb662c3520282e6f5717214004a7f26888": { - "address": "0xc00e94cb662c3520282e6f5717214004a7f26888", - "symbol": "COMP", - "decimals": 18, - "name": "Compound", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xc00e94cb662c3520282e6f5717214004a7f26888.png", - "aggregators": [ - "Metamask", - "1inch", - "LiFi", - "TrustWallet", - "Socket", - "Rubic", - "Squid", - "Rango", - "Sonarwatch", - "SushiSwap", - "Bancor" - ], - "occurrences": 11 - }, - "0xd533a949740bb3306d119cc777fa900ba034cd52": { - "address": "0xd533a949740bb3306d119cc777fa900ba034cd52", - "symbol": "CRV", - "decimals": 18, - "name": "Curve DAO Token", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xd533a949740bb3306d119cc777fa900ba034cd52.png", - "aggregators": [ - "Metamask", - "1inch", - "LiFi", - "TrustWallet", - "Socket", - "Rubic", - "Squid", - "Rango", - "Sonarwatch", - "SushiSwap", - "Bancor" - ], - "occurrences": 11 - }, - "0x0f5d2fb29fb7d3cfee444a200298f468908cc942": { - "address": "0x0f5d2fb29fb7d3cfee444a200298f468908cc942", - "symbol": "MANA", - "decimals": 18, - "name": "Decentraland", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x0f5d2fb29fb7d3cfee444a200298f468908cc942.png", - "aggregators": [ - "Metamask", - "1inch", - "LiFi", - "TrustWallet", - "Socket", - "Rubic", - "Squid", - "Rango", - "Sonarwatch", - "SushiSwap", - "Bancor" - ], - "occurrences": 11 - }, - "0x408e41876cccdc0f92210600ef50372656052a38": { - "address": "0x408e41876cccdc0f92210600ef50372656052a38", - "symbol": "REN", - "decimals": 18, - "name": "Republic Token", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x408e41876cccdc0f92210600ef50372656052a38.png", - "aggregators": [ - "Metamask", - "1inch", - "LiFi", - "TrustWallet", - "Socket", - "Rubic", - "Squid", - "Rango", - "Sonarwatch", - "SushiSwap", - "Bancor" - ], - "occurrences": 11 - }, - "0x6b3595068778dd592e39a122f4f5a5cf09c90fe2": { - "address": "0x6b3595068778dd592e39a122f4f5a5cf09c90fe2", - "symbol": "SUSHI", - "decimals": 18, - "name": "SushiSwap", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x6b3595068778dd592e39a122f4f5a5cf09c90fe2.png", - "aggregators": [ - "Metamask", - "1inch", - "LiFi", - "TrustWallet", - "Socket", - "Rubic", - "Squid", - "Rango", - "Sonarwatch", - "SushiSwap", - "Bancor" - ], - "occurrences": 11 - }, - "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48": { - "address": "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "symbol": "USDC", - "decimals": 6, - "name": "USDC", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48.png", - "aggregators": [ - "Metamask", - "1inch", - "LiFi", - "TrustWallet", - "Socket", - "Rubic", - "Squid", - "Rango", - "Sonarwatch", - "SushiSwap", - "Bancor" - ], - "occurrences": 11 - }, - "0xec67005c4e498ec7f55e092bd1d35cbc47c91892": { - "address": "0xec67005c4e498ec7f55e092bd1d35cbc47c91892", - "symbol": "MLN", - "decimals": 18, - "name": "Enzyme Finance", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xec67005c4e498ec7f55e092bd1d35cbc47c91892.png", - "aggregators": [ - "Metamask", - "1inch", - "LiFi", - "Socket", - "Rubic", - "Squid", - "Rango", - "Sonarwatch", - "SushiSwap", - "Bancor" - ], - "occurrences": 10 - }, - "0xe41d2489571d322189246dafa5ebde1f4699f498": { - "address": "0xe41d2489571d322189246dafa5ebde1f4699f498", - "symbol": "ZRX", - "decimals": 18, - "name": "0x", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xe41d2489571d322189246dafa5ebde1f4699f498.png", - "aggregators": [ - "Metamask", - "1inch", - "LiFi", - "TrustWallet", - "Socket", - "Rubic", - "Rango", - "Sonarwatch", - "SushiSwap", - "Bancor" - ], - "occurrences": 10 - }, - "0x111111111117dc0aa78b770fa6a738034120c302": { - "address": "0x111111111117dc0aa78b770fa6a738034120c302", - "symbol": "1INCH", - "decimals": 18, - "name": "1INCH Token", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x111111111117dc0aa78b770fa6a738034120c302.png", - "aggregators": [ - "Metamask", - "1inch", - "LiFi", - "TrustWallet", - "Socket", - "Rubic", - "Squid", - "Rango", - "Sonarwatch", - "SushiSwap", - "Bancor" - ], - "occurrences": 11 - }, - "0xf629cbd94d3791c9250152bd8dfbdf380e2a3b9c": { - "address": "0xf629cbd94d3791c9250152bd8dfbdf380e2a3b9c", - "symbol": "ENJ", - "decimals": 18, - "name": "Enjin Coin", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xf629cbd94d3791c9250152bd8dfbdf380e2a3b9c.png", - "aggregators": [ - "Metamask", - "1inch", - "LiFi", - "TrustWallet", - "Socket", - "Rubic", - "Squid", - "Rango", - "Sonarwatch", - "SushiSwap", - "Bancor" - ], - "occurrences": 11 - }, - "0xc944e90c64b2c07662a292be6244bdf05cda44a7": { - "address": "0xc944e90c64b2c07662a292be6244bdf05cda44a7", - "symbol": "GRT", - "decimals": 18, - "name": "Graph Token", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xc944e90c64b2c07662a292be6244bdf05cda44a7.png", - "aggregators": [ - "Metamask", - "1inch", - "LiFi", - "TrustWallet", - "Socket", - "Rubic", - "Squid", - "Rango", - "Sonarwatch", - "SushiSwap", - "Bancor" - ], - "occurrences": 11 - }, - "0x04fa0d235c4abf4bcf4787af4cf447de572ef828": { - "address": "0x04fa0d235c4abf4bcf4787af4cf447de572ef828", - "symbol": "UMA", - "decimals": 18, - "name": "UMA", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x04fa0d235c4abf4bcf4787af4cf447de572ef828.png", - "aggregators": [ - "Metamask", - "1inch", - "LiFi", - "TrustWallet", - "Socket", - "Rubic", - "Squid", - "Rango", - "Sonarwatch", - "SushiSwap", - "Bancor" - ], - "occurrences": 11 - }, - "0xdac17f958d2ee523a2206206994597c13d831ec7": { - "address": "0xdac17f958d2ee523a2206206994597c13d831ec7", - "symbol": "USDT", - "decimals": 6, - "name": "Tether USD", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xdac17f958d2ee523a2206206994597c13d831ec7.png", - "aggregators": [ - "Metamask", - "1inch", - "LiFi", - "TrustWallet", - "Socket", - "Rubic", - "Squid", - "Rango", - "Sonarwatch", - "SushiSwap", - "Bancor" - ], - "occurrences": 11 - }, - "0x2ba592f78db6436527729929aaf6c908497cb200": { - "address": "0x2ba592f78db6436527729929aaf6c908497cb200", - "symbol": "CREAM", - "decimals": 18, - "name": "Cream", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x2ba592f78db6436527729929aaf6c908497cb200.png", - "aggregators": [ - "Metamask", - "1inch", - "LiFi", - "TrustWallet", - "Socket", - "Rubic", - "Squid", - "Rango", - "Sonarwatch", - "SushiSwap", - "Bancor" - ], - "occurrences": 11 - }, - "0x0d8775f648430679a709e98d2b0cb6250d2887ef": { - "address": "0x0d8775f648430679a709e98d2b0cb6250d2887ef", - "symbol": "BAT", - "decimals": 18, - "name": "Basic Attention Token", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x0d8775f648430679a709e98d2b0cb6250d2887ef.png", - "aggregators": [ - "Metamask", - "1inch", - "LiFi", - "TrustWallet", - "Socket", - "Rubic", - "Rango", - "Sonarwatch", - "SushiSwap", - "Bancor" - ], - "occurrences": 10 - }, - "0x3432b6a60d23ca0dfca7761b7ab56459d9c964d0": { - "address": "0x3432b6a60d23ca0dfca7761b7ab56459d9c964d0", - "symbol": "FXS", - "decimals": 18, - "name": "Frax Share", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x3432b6a60d23ca0dfca7761b7ab56459d9c964d0.png", - "aggregators": [ - "Metamask", - "1inch", - "LiFi", - "Socket", - "Rubic", - "Squid", - "Rango", - "Sonarwatch", - "SushiSwap", - "Bancor" - ], - "occurrences": 10 - }, - "0xe28b3b32b6c345a34ff64674606124dd5aceca30": { - "address": "0xe28b3b32b6c345a34ff64674606124dd5aceca30", - "symbol": "INJ", - "decimals": 18, - "name": "Injective", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xe28b3b32b6c345a34ff64674606124dd5aceca30.png", - "aggregators": [ - "Metamask", - "1inch", - "LiFi", - "TrustWallet", - "Socket", - "Rubic", - "Squid", - "Rango", - "Sonarwatch", - "SushiSwap" - ], - "occurrences": 10 - }, - "0xbbbbca6a901c926f240b89eacb641d8aec7aeafd": { - "address": "0xbbbbca6a901c926f240b89eacb641d8aec7aeafd", - "symbol": "LRC", - "decimals": 18, - "name": "Loopring", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xbbbbca6a901c926f240b89eacb641d8aec7aeafd.png", - "aggregators": [ - "Metamask", - "1inch", - "LiFi", - "TrustWallet", - "Socket", - "Rubic", - "Rango", - "Sonarwatch", - "SushiSwap", - "Bancor" - ], - "occurrences": 10 - }, - "0x8f8221afbb33998d8584a2b05749ba73c37a938a": { - "address": "0x8f8221afbb33998d8584a2b05749ba73c37a938a", - "symbol": "REQ", - "decimals": 18, - "name": "Request", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x8f8221afbb33998d8584a2b05749ba73c37a938a.png", - "aggregators": [ - "Metamask", - "1inch", - "LiFi", - "TrustWallet", - "Socket", - "Rubic", - "Squid", - "Rango", - "Sonarwatch", - "Bancor" - ], - "occurrences": 10 - }, - "0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c": { - "address": "0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c", - "symbol": "BNT", - "decimals": 18, - "name": "Bancor Network Token", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c.png", - "aggregators": [ - "Metamask", - "1inch", - "LiFi", - "Socket", - "Rubic", - "Rango", - "Sonarwatch", - "SushiSwap", - "Bancor" - ], - "occurrences": 9 - }, - "0xff20817765cb7f73d4bde2e66e067e58d11095c2": { - "address": "0xff20817765cb7f73d4bde2e66e067e58d11095c2", - "symbol": "AMP", - "decimals": 18, - "name": "Amp", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xff20817765cb7f73d4bde2e66e067e58d11095c2.png", - "aggregators": [ - "OpenSwap", - "1inch", - "LiFi", - "TrustWallet", - "Socket", - "Rubic", - "Squid", - "Rango", - "Sonarwatch", - "SushiSwap", - "Bancor" - ], - "occurrences": 11 - }, - "0xba11d00c5f74255f56a5e366f4f77f5a186d7f55": { - "address": "0xba11d00c5f74255f56a5e366f4f77f5a186d7f55", - "symbol": "BAND", - "decimals": 18, - "name": "Band Protocol", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xba11d00c5f74255f56a5e366f4f77f5a186d7f55.png", - "aggregators": [ - "OpenSwap", - "1inch", - "LiFi", - "TrustWallet", - "Socket", - "Rubic", - "Squid", - "Rango", - "Sonarwatch", - "SushiSwap", - "Bancor" - ], - "occurrences": 11 - }, - "0x4fabb145d64652a948d72533023f6e7a623c7c53": { - "address": "0x4fabb145d64652a948d72533023f6e7a623c7c53", - "symbol": "BUSD", - "decimals": 18, - "name": "Binance USD", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x4fabb145d64652a948d72533023f6e7a623c7c53.png", - "aggregators": [ - "Metamask", - "1inch", - "LiFi", - "TrustWallet", - "Socket", - "Rubic", - "Squid", - "Rango", - "Sonarwatch", - "SushiSwap", - "Bancor" - ], - "occurrences": 11 - }, - "0xc18360217d8f7ab5e7c516566761ea12ce7f9d72": { - "address": "0xc18360217d8f7ab5e7c516566761ea12ce7f9d72", - "symbol": "ENS", - "decimals": 18, - "name": "Ethereum Name Service", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xc18360217d8f7ab5e7c516566761ea12ce7f9d72.png", - "aggregators": [ - "Metamask", - "1inch", - "LiFi", - "TrustWallet", - "Socket", - "Rubic", - "Squid", - "Rango", - "Sonarwatch", - "SushiSwap", - "Bancor" - ], - "occurrences": 11 - }, - "0x967da4048cd07ab37855c090aaf366e4ce1b9f48": { - "address": "0x967da4048cd07ab37855c090aaf366e4ce1b9f48", - "symbol": "OCEAN", - "decimals": 18, - "name": "Ocean Token", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x967da4048cd07ab37855c090aaf366e4ce1b9f48.png", - "aggregators": [ - "Metamask", - "1inch", - "LiFi", - "TrustWallet", - "Socket", - "Rubic", - "Squid", - "Rango", - "Sonarwatch", - "SushiSwap", - "Bancor" - ], - "occurrences": 11 - }, - "0x45804880de22913dafe09f4980848ece6ecbaf78": { - "address": "0x45804880de22913dafe09f4980848ece6ecbaf78", - "symbol": "PAXG", - "decimals": 18, - "name": "PAX Gold", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x45804880de22913dafe09f4980848ece6ecbaf78.png", - "aggregators": [ - "Metamask", - "1inch", - "LiFi", - "TrustWallet", - "Socket", - "Rubic", - "Squid", - "Rango", - "Sonarwatch", - "SushiSwap", - "Bancor" - ], - "occurrences": 11 - }, - "0xbc396689893d065f41bc2c6ecbee5e0085233447": { - "address": "0xbc396689893d065f41bc2c6ecbee5e0085233447", - "symbol": "PERP", - "decimals": 18, - "name": "Perpetual", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xbc396689893d065f41bc2c6ecbee5e0085233447.png", - "aggregators": [ - "Metamask", - "1inch", - "LiFi", - "TrustWallet", - "Socket", - "Rubic", - "Squid", - "Rango", - "Sonarwatch", - "SushiSwap", - "Bancor" - ], - "occurrences": 11 - }, - "0x4691937a7508860f876c9c0a2a617e7d9e945d4b": { - "address": "0x4691937a7508860f876c9c0a2a617e7d9e945d4b", - "symbol": "WOO", - "decimals": 18, - "name": "Wootrade Network", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x4691937a7508860f876c9c0a2a617e7d9e945d4b.png", - "aggregators": [ - "Metamask", - "1inch", - "LiFi", - "TrustWallet", - "Socket", - "Rubic", - "Squid", - "Rango", - "Sonarwatch", - "SushiSwap", - "Bancor" - ], - "occurrences": 11 - }, - "0xdbdb4d16eda451d0503b854cf79d55697f90c8df": { - "address": "0xdbdb4d16eda451d0503b854cf79d55697f90c8df", - "symbol": "ALCX", - "decimals": 18, - "name": "Alchemix", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xdbdb4d16eda451d0503b854cf79d55697f90c8df.png", - "aggregators": [ - "OpenSwap", - "1inch", - "LiFi", - "Socket", - "Rubic", - "Squid", - "Rango", - "Sonarwatch", - "SushiSwap", - "Bancor" - ], - "occurrences": 10 - }, - "0x84ca8bc7997272c7cfb4d0cd3d55cd942b3c9419": { - "address": "0x84ca8bc7997272c7cfb4d0cd3d55cd942b3c9419", - "symbol": "DIA", - "decimals": 18, - "name": "DIAdata", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x84ca8bc7997272c7cfb4d0cd3d55cd942b3c9419.png", - "aggregators": [ - "Metamask", - "1inch", - "LiFi", - "TrustWallet", - "Socket", - "Rubic", - "Squid", - "Rango", - "Sonarwatch", - "SushiSwap" - ], - "occurrences": 10 - }, - "0xa0246c9032bc3a600820415ae600c6388619a14d": { - "address": "0xa0246c9032bc3a600820415ae600c6388619a14d", - "symbol": "FARM", - "decimals": 18, - "name": "Harvest Finance", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xa0246c9032bc3a600820415ae600c6388619a14d.png", - "aggregators": [ - "OpenSwap", - "1inch", - "LiFi", - "TrustWallet", - "Socket", - "Rubic", - "Rango", - "Sonarwatch", - "SushiSwap", - "Bancor" - ], - "occurrences": 10 - }, - "0x6810e776880c02933d47db1b9fc05908e5386b96": { - "address": "0x6810e776880c02933d47db1b9fc05908e5386b96", - "symbol": "GNO", - "decimals": 18, - "name": "Gnosis Token", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x6810e776880c02933d47db1b9fc05908e5386b96.png", - "aggregators": [ - "Metamask", - "1inch", - "LiFi", - "TrustWallet", - "Socket", - "Rubic", - "Rango", - "Sonarwatch", - "SushiSwap", - "Bancor" - ], - "occurrences": 10 - }, - "0x4a220e6096b25eadb88358cb44068a3248254675": { - "address": "0x4a220e6096b25eadb88358cb44068a3248254675", - "symbol": "QNT", - "decimals": 18, - "name": "Quant Network", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x4a220e6096b25eadb88358cb44068a3248254675.png", - "aggregators": [ - "Metamask", - "1inch", - "LiFi", - "TrustWallet", - "Socket", - "Rubic", - "Squid", - "Rango", - "Sonarwatch", - "Bancor" - ], - "occurrences": 10 - }, - "0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2": { - "address": "0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "symbol": "WETH", - "decimals": 18, - "name": "Wrapped Ether", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2.png", - "aggregators": [ - "Metamask", - "1inch", - "LiFi", - "TrustWallet", - "Socket", - "Rubic", - "Squid", - "Rango", - "Sonarwatch", - "SushiSwap" - ], - "occurrences": 10 - }, - "0x5a98fcbea516cf06857215779fd812ca3bef1b32": { - "address": "0x5a98fcbea516cf06857215779fd812ca3bef1b32", - "symbol": "LDO", - "decimals": 18, - "name": "Lido DAO Token", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x5a98fcbea516cf06857215779fd812ca3bef1b32.png", - "aggregators": [ - "Metamask", - "1inch", - "LiFi", - "Socket", - "Rubic", - "Squid", - "Rango", - "Sonarwatch", - "SushiSwap" - ], - "occurrences": 9 - }, - "0x1ceb5cb57c4d4e2b2433641b95dd330a33185a44": { - "address": "0x1ceb5cb57c4d4e2b2433641b95dd330a33185a44", - "symbol": "KP3R", - "decimals": 18, - "name": "Keep3rV1", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x1ceb5cb57c4d4e2b2433641b95dd330a33185a44.png", - "aggregators": [ - "OpenSwap", - "1inch", - "LiFi", - "TrustWallet", - "Socket", - "Rubic", - "Squid", - "Rango", - "Sonarwatch", - "SushiSwap", - "Bancor" - ], - "occurrences": 11 - }, - "0x7d1afa7b718fb893db30a3abc0cfc608aacfebb0": { - "address": "0x7d1afa7b718fb893db30a3abc0cfc608aacfebb0", - "symbol": "MATIC", - "decimals": 18, - "name": "Matic Network Token", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x7d1afa7b718fb893db30a3abc0cfc608aacfebb0.png", - "aggregators": [ - "Metamask", - "1inch", - "LiFi", - "TrustWallet", - "Socket", - "Rubic", - "Squid", - "Rango", - "Sonarwatch", - "SushiSwap", - "Bancor" - ], - "occurrences": 11 - }, - "0x607f4c5bb672230e8672085532f7e901544a7375": { - "address": "0x607f4c5bb672230e8672085532f7e901544a7375", - "symbol": "RLC", - "decimals": 9, - "name": "iExec RLC Token", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x607f4c5bb672230e8672085532f7e901544a7375.png", - "aggregators": [ - "Metamask", - "1inch", - "LiFi", - "TrustWallet", - "Socket", - "Rubic", - "Squid", - "Rango", - "Sonarwatch", - "SushiSwap", - "Bancor" - ], - "occurrences": 11 - }, - "0x090185f2135308bad17527004364ebcc2d37e5f6": { - "address": "0x090185f2135308bad17527004364ebcc2d37e5f6", - "symbol": "SPELL", - "decimals": 18, - "name": "Spell Token", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x090185f2135308bad17527004364ebcc2d37e5f6.png", - "aggregators": [ - "OpenSwap", - "1inch", - "LiFi", - "TrustWallet", - "Socket", - "Rubic", - "Squid", - "Rango", - "Sonarwatch", - "SushiSwap", - "Bancor" - ], - "occurrences": 11 - }, - "0x4c19596f5aaff459fa38b0f7ed92f11ae6543784": { - "address": "0x4c19596f5aaff459fa38b0f7ed92f11ae6543784", - "symbol": "TRU", - "decimals": 8, - "name": "TrueFi", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x4c19596f5aaff459fa38b0f7ed92f11ae6543784.png", - "aggregators": [ - "OpenSwap", - "1inch", - "LiFi", - "TrustWallet", - "Socket", - "Rubic", - "Squid", - "Rango", - "Sonarwatch", - "SushiSwap", - "Bancor" - ], - "occurrences": 11 - }, - "0xa1faa113cbe53436df28ff0aee54275c13b40975": { - "address": "0xa1faa113cbe53436df28ff0aee54275c13b40975", - "symbol": "ALPHA", - "decimals": 18, - "name": "AlphaToken", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xa1faa113cbe53436df28ff0aee54275c13b40975.png", - "aggregators": [ - "CoinMarketCap", - "1inch", - "LiFi", - "Socket", - "Rubic", - "Squid", - "Rango", - "Sonarwatch", - "SushiSwap", - "Bancor" - ], - "occurrences": 10 - }, - "0x0b38210ea11411557c13457d4da7dc6ea731b88a": { - "address": "0x0b38210ea11411557c13457d4da7dc6ea731b88a", - "symbol": "API3", - "decimals": 18, - "name": "API3", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x0b38210ea11411557c13457d4da7dc6ea731b88a.png", - "aggregators": [ - "OpenSwap", - "1inch", - "LiFi", - "Socket", - "Rubic", - "Squid", - "Rango", - "Sonarwatch", - "SushiSwap", - "Bancor" - ], - "occurrences": 10 - }, - "0x18aaa7115705e8be94bffebde57af9bfc265b998": { - "address": "0x18aaa7115705e8be94bffebde57af9bfc265b998", - "symbol": "AUDIO", - "decimals": 18, - "name": "Audius", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x18aaa7115705e8be94bffebde57af9bfc265b998.png", - "aggregators": [ - "Metamask", - "1inch", - "LiFi", - "TrustWallet", - "Socket", - "Rubic", - "Squid", - "Rango", - "Sonarwatch", - "SushiSwap" - ], - "occurrences": 10 - }, - "0x1494ca1f11d487c2bbe4543e90080aeba4ba3c2b": { - "address": "0x1494ca1f11d487c2bbe4543e90080aeba4ba3c2b", - "symbol": "DPI", - "decimals": 18, - "name": "DeFi Pulse Index", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x1494ca1f11d487c2bbe4543e90080aeba4ba3c2b.png", - "aggregators": [ - "CoinMarketCap", - "1inch", - "LiFi", - "TrustWallet", - "Socket", - "Rubic", - "Squid", - "Rango", - "Sonarwatch", - "SushiSwap" - ], - "occurrences": 10 - }, - "0xd26114cd6ee289accf82350c8d8487fedb8a0c07": { - "address": "0xd26114cd6ee289accf82350c8d8487fedb8a0c07", - "symbol": "OMG", - "decimals": 18, - "name": "OmiseGO", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xd26114cd6ee289accf82350c8d8487fedb8a0c07.png", - "aggregators": [ - "Metamask", - "1inch", - "LiFi", - "TrustWallet", - "Socket", - "Rubic", - "Rango", - "Sonarwatch", - "SushiSwap", - "Bancor" - ], - "occurrences": 10 - }, - "0x03ab458634910aad20ef5f1c8ee96f1d6ac54919": { - "address": "0x03ab458634910aad20ef5f1c8ee96f1d6ac54919", - "symbol": "RAI", - "decimals": 18, - "name": "Rai Reflex Index", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x03ab458634910aad20ef5f1c8ee96f1d6ac54919.png", - "aggregators": [ - "Metamask", - "1inch", - "LiFi", - "TrustWallet", - "Socket", - "Rubic", - "Squid", - "Rango", - "Sonarwatch", - "SushiSwap" - ], - "occurrences": 10 - }, - "0xfca59cd816ab1ead66534d82bc21e7515ce441cf": { - "address": "0xfca59cd816ab1ead66534d82bc21e7515ce441cf", - "symbol": "RARI", - "decimals": 18, - "name": "Rarible", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xfca59cd816ab1ead66534d82bc21e7515ce441cf.png", - "aggregators": [ - "Metamask", - "1inch", - "LiFi", - "TrustWallet", - "Socket", - "Rubic", - "Rango", - "Sonarwatch", - "SushiSwap", - "Bancor" - ], - "occurrences": 10 - }, - "0x0000000000085d4780b73119b644ae5ecd22b376": { - "address": "0x0000000000085d4780b73119b644ae5ecd22b376", - "symbol": "TUSD", - "decimals": 18, - "name": "TrueUSD", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x0000000000085d4780b73119b644ae5ecd22b376.png", - "aggregators": [ - "Metamask", - "1inch", - "LiFi", - "TrustWallet", - "Socket", - "Rubic", - "Squid", - "Rango", - "Sonarwatch", - "SushiSwap" - ], - "occurrences": 10 - }, - "0x0ae055097c6d159879521c384f1d2123d1f195e6": { - "address": "0x0ae055097c6d159879521c384f1d2123d1f195e6", - "symbol": "STAKE", - "decimals": 18, - "name": "STAKE Token", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x0ae055097c6d159879521c384f1d2123d1f195e6.png", - "aggregators": [ - "Metamask", - "1inch", - "LiFi", - "TrustWallet", - "Socket", - "Rubic", - "Rango", - "Sonarwatch", - "SushiSwap", - "Bancor" - ], - "occurrences": 10 - }, - "0xeb4c2781e4eba804ce9a9803c67d0893436bb27d": { - "address": "0xeb4c2781e4eba804ce9a9803c67d0893436bb27d", - "symbol": "RENBTC", - "decimals": 8, - "name": "renBTC", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xeb4c2781e4eba804ce9a9803c67d0893436bb27d.png", - "aggregators": [ - "Metamask", - "1inch", - "LiFi", - "TrustWallet", - "Socket", - "Rubic", - "Rango", - "Sonarwatch", - "SushiSwap", - "Bancor" - ], - "occurrences": 10 - }, - "0xb753428af26e81097e7fd17f40c88aaa3e04902c": { - "address": "0xb753428af26e81097e7fd17f40c88aaa3e04902c", - "symbol": "SFI", - "decimals": 18, - "name": "Spice", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xb753428af26e81097e7fd17f40c88aaa3e04902c.png", - "aggregators": [ - "Metamask", - "1inch", - "LiFi", - "TrustWallet", - "Socket", - "Rubic", - "Rango", - "Sonarwatch", - "SushiSwap", - "Bancor" - ], - "occurrences": 10 - }, - "0xb62132e35a6c13ee1ee0f84dc5d40bad8d815206": { - "address": "0xb62132e35a6c13ee1ee0f84dc5d40bad8d815206", - "symbol": "NEXO", - "decimals": 18, - "name": "NEXO", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xb62132e35a6c13ee1ee0f84dc5d40bad8d815206.png", - "aggregators": [ - "Metamask", - "1inch", - "LiFi", - "TrustWallet", - "Socket", - "Rubic", - "Rango", - "Sonarwatch", - "SushiSwap", - "Bancor" - ], - "occurrences": 10 - }, - "0xbb0e17ef65f82ab018d8edd776e8dd940327b28b": { - "address": "0xbb0e17ef65f82ab018d8edd776e8dd940327b28b", - "symbol": "AXS", - "decimals": 18, - "name": "Axie Infinity Shard", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xbb0e17ef65f82ab018d8edd776e8dd940327b28b.png", - "aggregators": [ - "Metamask", - "1inch", - "LiFi", - "Socket", - "Rubic", - "Rango", - "Sonarwatch", - "SushiSwap", - "Bancor" - ], - "occurrences": 9 - }, - "0xbbc2ae13b23d715c30720f079fcd9b4a74093505": { - "address": "0xbbc2ae13b23d715c30720f079fcd9b4a74093505", - "symbol": "ERN", - "decimals": 18, - "name": "Ethernity Chain Token", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xbbc2ae13b23d715c30720f079fcd9b4a74093505.png", - "aggregators": [ - "Metamask", - "1inch", - "LiFi", - "TrustWallet", - "Socket", - "Rubic", - "Squid", - "Rango", - "Sonarwatch" - ], - "occurrences": 9 - }, - "0x7dd9c5cba05e151c895fde1cf355c9a1d5da6429": { - "address": "0x7dd9c5cba05e151c895fde1cf355c9a1d5da6429", - "symbol": "GLM", - "decimals": 18, - "name": "Golem Network Token", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x7dd9c5cba05e151c895fde1cf355c9a1d5da6429.png", - "aggregators": [ - "Metamask", - "1inch", - "LiFi", - "Socket", - "Rubic", - "Squid", - "Rango", - "Sonarwatch", - "SushiSwap" - ], - "occurrences": 9 - }, - "0xf57e7e7c23978c3caec3c3548e3d615c346e79ff": { - "address": "0xf57e7e7c23978c3caec3c3548e3d615c346e79ff", - "symbol": "IMX", - "decimals": 18, - "name": "Immutable X", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xf57e7e7c23978c3caec3c3548e3d615c346e79ff.png", - "aggregators": [ - "Metamask", - "1inch", - "LiFi", - "Socket", - "Rubic", - "Squid", - "Rango", - "Sonarwatch", - "SushiSwap" - ], - "occurrences": 9 - }, - "0x1776e1f26f98b1a5df9cd347953a26dd3cb46671": { - "address": "0x1776e1f26f98b1a5df9cd347953a26dd3cb46671", - "symbol": "NMR", - "decimals": 18, - "name": "Numeraire", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x1776e1f26f98b1a5df9cd347953a26dd3cb46671.png", - "aggregators": [ - "Metamask", - "1inch", - "LiFi", - "Socket", - "Rubic", - "Squid", - "Rango", - "Sonarwatch", - "Bancor" - ], - "occurrences": 9 - }, - "0x8207c1ffc5b6804f6024322ccf34f29c3541ae26": { - "address": "0x8207c1ffc5b6804f6024322ccf34f29c3541ae26", - "symbol": "OGN", - "decimals": 18, - "name": "Origin Protocol", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x8207c1ffc5b6804f6024322ccf34f29c3541ae26.png", - "aggregators": [ - "Metamask", - "1inch", - "LiFi", - "TrustWallet", - "Socket", - "Rubic", - "Rango", - "Sonarwatch", - "SushiSwap" - ], - "occurrences": 9 - }, - "0x83e6f1e41cdd28eaceb20cb649155049fac3d5aa": { - "address": "0x83e6f1e41cdd28eaceb20cb649155049fac3d5aa", - "symbol": "POLS", - "decimals": 18, - "name": "PolkastarterToken", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x83e6f1e41cdd28eaceb20cb649155049fac3d5aa.png", - "aggregators": [ - "Metamask", - "1inch", - "LiFi", - "TrustWallet", - "Socket", - "Rubic", - "Squid", - "Rango", - "Sonarwatch" - ], - "occurrences": 9 - }, - "0x3845badade8e6dff049820680d1f14bd3903a5d0": { - "address": "0x3845badade8e6dff049820680d1f14bd3903a5d0", - "symbol": "SAND", - "decimals": 18, - "name": "SAND", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x3845badade8e6dff049820680d1f14bd3903a5d0.png", - "aggregators": [ - "Metamask", - "1inch", - "LiFi", - "TrustWallet", - "Socket", - "Rubic", - "Squid", - "Rango", - "Sonarwatch" - ], - "occurrences": 9 - }, - "0x95ad61b0a150d79219dcf64e1e6cc01f0b64c4ce": { - "address": "0x95ad61b0a150d79219dcf64e1e6cc01f0b64c4ce", - "symbol": "SHIB", - "decimals": 18, - "name": "SHIBA INU", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x95ad61b0a150d79219dcf64e1e6cc01f0b64c4ce.png", - "aggregators": [ - "Metamask", - "1inch", - "TrustWallet", - "Socket", - "Rubic", - "Squid", - "Rango", - "Sonarwatch", - "Bancor" - ], - "occurrences": 9 - }, - "0x3472a5a71965499acd81997a54bba8d852c6e53d": { - "address": "0x3472a5a71965499acd81997a54bba8d852c6e53d", - "symbol": "BADGER", - "decimals": 18, - "name": "BADGER", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x3472a5a71965499acd81997a54bba8d852c6e53d.png", - "aggregators": [ - "Metamask", - "1inch", - "LiFi", - "Socket", - "Rubic", - "Rango", - "Sonarwatch", - "SushiSwap" - ], - "occurrences": 8 - }, - "0x3506424f91fd33084466f402d5d97f05f8e3b4af": { - "address": "0x3506424f91fd33084466f402d5d97f05f8e3b4af", - "symbol": "CHZ", - "decimals": 18, - "name": "chiliZ", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x3506424f91fd33084466f402d5d97f05f8e3b4af.png", - "aggregators": [ - "Metamask", - "1inch", - "LiFi", - "Socket", - "Rubic", - "Rango", - "Sonarwatch", - "Bancor" - ], - "occurrences": 8 - }, - "0x3a880652f47bfaa771908c07dd8673a787daed3a": { - "address": "0x3a880652f47bfaa771908c07dd8673a787daed3a", - "symbol": "DDX", - "decimals": 18, - "name": "DerivaDAO", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x3a880652f47bfaa771908c07dd8673a787daed3a.png", - "aggregators": [ - "Metamask", - "LiFi", - "Socket", - "Rubic", - "Rango", - "Sonarwatch", - "SushiSwap", - "Bancor" - ], - "occurrences": 8 - }, - "0x58b6a8a3302369daec383334672404ee733ab239": { - "address": "0x58b6a8a3302369daec383334672404ee733ab239", - "symbol": "LPT", - "decimals": 18, - "name": "Livepeer", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x58b6a8a3302369daec383334672404ee733ab239.png", - "aggregators": [ - "Metamask", - "1inch", - "LiFi", - "Socket", - "Rubic", - "Squid", - "Rango", - "Sonarwatch" - ], - "occurrences": 8 - }, - "0x69af81e73a73b40adf4f3d4223cd9b1ece623074": { - "address": "0x69af81e73a73b40adf4f3d4223cd9b1ece623074", - "symbol": "MASK", - "decimals": 18, - "name": "Mask Network", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x69af81e73a73b40adf4f3d4223cd9b1ece623074.png", - "aggregators": [ - "Metamask", - "1inch", - "LiFi", - "TrustWallet", - "Socket", - "Rubic", - "Squid", - "Rango", - "Sonarwatch", - "SushiSwap", - "Bancor" - ], - "occurrences": 11 - }, - "0x725c263e32c72ddc3a19bea12c5a0479a81ee688": { - "address": "0x725c263e32c72ddc3a19bea12c5a0479a81ee688", - "symbol": "BMI", - "decimals": 18, - "name": "Bridge Mutual", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x725c263e32c72ddc3a19bea12c5a0479a81ee688.png", - "aggregators": [ - "CoinMarketCap", - "1inch", - "LiFi", - "TrustWallet", - "Socket", - "Rubic", - "Squid", - "Rango", - "Sonarwatch", - "SushiSwap", - "Bancor" - ], - "occurrences": 11 - }, - "0xade00c28244d5ce17d72e40330b1c318cd12b7c3": { - "address": "0xade00c28244d5ce17d72e40330b1c318cd12b7c3", - "symbol": "ADX", - "decimals": 18, - "name": "AdEx Token", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xade00c28244d5ce17d72e40330b1c318cd12b7c3.png", - "aggregators": [ - "Metamask", - "1inch", - "LiFi", - "TrustWallet", - "Socket", - "Rubic", - "Squid", - "Rango", - "Sonarwatch", - "SushiSwap" - ], - "occurrences": 10 - }, - "0x8290333cef9e6d528dd5618fb97a76f268f3edd4": { - "address": "0x8290333cef9e6d528dd5618fb97a76f268f3edd4", - "symbol": "ANKR", - "decimals": 18, - "name": "Ankr Network", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x8290333cef9e6d528dd5618fb97a76f268f3edd4.png", - "aggregators": [ - "OpenSwap", - "1inch", - "LiFi", - "Socket", - "Rubic", - "Squid", - "Rango", - "Sonarwatch", - "SushiSwap", - "Bancor" - ], - "occurrences": 10 - }, - "0x4d224452801aced8b2f0aebe155379bb5d594381": { - "address": "0x4d224452801aced8b2f0aebe155379bb5d594381", - "symbol": "APE", - "decimals": 18, - "name": "ApeCoin", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x4d224452801aced8b2f0aebe155379bb5d594381.png", - "aggregators": [ - "Metamask", - "1inch", - "LiFi", - "TrustWallet", - "Socket", - "Rubic", - "Squid", - "Rango", - "Sonarwatch", - "SushiSwap" - ], - "occurrences": 10 - }, - "0x4e3fbd56cd56c3e72c1403e103b45db9da5b9d2b": { - "address": "0x4e3fbd56cd56c3e72c1403e103b45db9da5b9d2b", - "symbol": "CVX", - "decimals": 18, - "name": "Convex Token", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x4e3fbd56cd56c3e72c1403e103b45db9da5b9d2b.png", - "aggregators": [ - "OpenSwap", - "1inch", - "LiFi", - "TrustWallet", - "Socket", - "Rubic", - "Squid", - "Rango", - "Sonarwatch", - "SushiSwap" - ], - "occurrences": 10 - }, - "0x853d955acef822db058eb8505911ed77f175b99e": { - "address": "0x853d955acef822db058eb8505911ed77f175b99e", - "symbol": "FRAX", - "decimals": 18, - "name": "Frax", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x853d955acef822db058eb8505911ed77f175b99e.png", - "aggregators": [ - "Metamask", - "1inch", - "LiFi", - "TrustWallet", - "Socket", - "Rubic", - "Squid", - "Rango", - "Sonarwatch", - "SushiSwap" - ], - "occurrences": 10 - }, - "0x767fe9edc9e0df98e07454847909b5e959d7ca0e": { - "address": "0x767fe9edc9e0df98e07454847909b5e959d7ca0e", - "symbol": "ILV", - "decimals": 18, - "name": "Illuvium", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x767fe9edc9e0df98e07454847909b5e959d7ca0e.png", - "aggregators": [ - "Metamask", - "1inch", - "LiFi", - "TrustWallet", - "Socket", - "Rubic", - "Squid", - "Rango", - "Sonarwatch", - "SushiSwap" - ], - "occurrences": 10 - }, - "0xd46ba6d942050d489dbd938a2c909a5d5039a161": { - "address": "0xd46ba6d942050d489dbd938a2c909a5d5039a161", - "symbol": "AMPL", - "decimals": 9, - "name": "Ampleforth", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xd46ba6d942050d489dbd938a2c909a5d5039a161.png", - "aggregators": [ - "Metamask", - "1inch", - "LiFi", - "TrustWallet", - "Socket", - "Rubic", - "Rango", - "Sonarwatch", - "SushiSwap", - "Bancor" - ], - "occurrences": 10 - }, - "0x476c5e26a75bd202a9683ffd34359c0cc15be0ff": { - "address": "0x476c5e26a75bd202a9683ffd34359c0cc15be0ff", - "symbol": "SRM", - "decimals": 6, - "name": "Serum", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x476c5e26a75bd202a9683ffd34359c0cc15be0ff.png", - "aggregators": [ - "CoinMarketCap", - "1inch", - "LiFi", - "Socket", - "Rubic", - "Squid", - "Rango", - "Sonarwatch", - "SushiSwap", - "Bancor" - ], - "occurrences": 10 - }, - "0xa3bed4e1c75d00fa6f4e5e6922db7261b5e9acd2": { - "address": "0xa3bed4e1c75d00fa6f4e5e6922db7261b5e9acd2", - "symbol": "MTA", - "decimals": 18, - "name": "Meta", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xa3bed4e1c75d00fa6f4e5e6922db7261b5e9acd2.png", - "aggregators": [ - "Metamask", - "1inch", - "LiFi", - "TrustWallet", - "Socket", - "Rubic", - "Rango", - "Sonarwatch", - "SushiSwap", - "Bancor" - ], - "occurrences": 10 - }, - "0x584bc13c7d411c00c01a62e8019472de68768430": { - "address": "0x584bc13c7d411c00c01a62e8019472de68768430", - "symbol": "HEGIC", - "decimals": 18, - "name": "Hegic", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x584bc13c7d411c00c01a62e8019472de68768430.png", - "aggregators": [ - "CoinMarketCap", - "1inch", - "LiFi", - "TrustWallet", - "Socket", - "Rubic", - "Rango", - "Sonarwatch", - "SushiSwap", - "Bancor" - ], - "occurrences": 10 - }, - "0x429881672b9ae42b8eba0e26cd9c73711b891ca5": { - "address": "0x429881672b9ae42b8eba0e26cd9c73711b891ca5", - "symbol": "PICKLE", - "decimals": 18, - "name": "Pickle Finance", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x429881672b9ae42b8eba0e26cd9c73711b891ca5.png", - "aggregators": [ - "CoinMarketCap", - "1inch", - "LiFi", - "TrustWallet", - "Socket", - "Rubic", - "Squid", - "Rango", - "Sonarwatch", - "SushiSwap" - ], - "occurrences": 10 - }, - "0x6c6ee5e31d828de241282b9606c8e98ea48526e2": { - "address": "0x6c6ee5e31d828de241282b9606c8e98ea48526e2", - "symbol": "HOT", - "decimals": 18, - "name": "HoloToken", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x6c6ee5e31d828de241282b9606c8e98ea48526e2.png", - "aggregators": [ - "Metamask", - "1inch", - "LiFi", - "TrustWallet", - "Socket", - "Rubic", - "Squid", - "Rango", - "Sonarwatch", - "Bancor" - ], - "occurrences": 10 - }, - "0x7f39c581f595b53c5cb19bd0b3f8da6c935e2ca0": { - "address": "0x7f39c581f595b53c5cb19bd0b3f8da6c935e2ca0", - "symbol": "WSTETH", - "decimals": 18, - "name": "Wrapped liquid staked Ether 2.0", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x7f39c581f595b53c5cb19bd0b3f8da6c935e2ca0.png", - "aggregators": [ - "Metamask", - "1inch", - "LiFi", - "Socket", - "Rubic", - "Squid", - "Rango", - "Sonarwatch", - "SushiSwap", - "Bancor" - ], - "occurrences": 10 - }, - "0x27702a26126e0b3702af63ee09ac4d1a084ef628": { - "address": "0x27702a26126e0b3702af63ee09ac4d1a084ef628", - "symbol": "ALEPH", - "decimals": 18, - "name": "Aleph.im Token", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x27702a26126e0b3702af63ee09ac4d1a084ef628.png", - "aggregators": [ - "Metamask", - "1inch", - "LiFi", - "Socket", - "Rubic", - "Rango", - "Sonarwatch", - "SushiSwap", - "Bancor" - ], - "occurrences": 9 - }, - "0xa117000000f279d81a1d3cc75430faa017fa5a2e": { - "address": "0xa117000000f279d81a1d3cc75430faa017fa5a2e", - "symbol": "ANT", - "decimals": 18, - "name": "Aragon Network Token", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xa117000000f279d81a1d3cc75430faa017fa5a2e.png", - "aggregators": [ - "Metamask", - "LiFi", - "TrustWallet", - "Socket", - "Rubic", - "Squid", - "Rango", - "Sonarwatch", - "SushiSwap" - ], - "occurrences": 9 - }, - "0xb50721bcf8d664c30412cfbc6cf7a15145234ad1": { - "address": "0xb50721bcf8d664c30412cfbc6cf7a15145234ad1", - "symbol": "ARB", - "decimals": 18, - "name": "Arbitrum", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xb50721bcf8d664c30412cfbc6cf7a15145234ad1.png", - "aggregators": [ - "Metamask", - "1inch", - "LiFi", - "Socket", - "Rubic", - "Squid", - "Rango", - "Sonarwatch", - "SushiSwap" - ], - "occurrences": 9 - }, - "0xa0b73e1ff0b80914ab6fe0444e65848c4c34450b": { - "address": "0xa0b73e1ff0b80914ab6fe0444e65848c4c34450b", - "symbol": "CRO", - "decimals": 8, - "name": "Cronos", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xa0b73e1ff0b80914ab6fe0444e65848c4c34450b.png", - "aggregators": [ - "Metamask", - "1inch", - "LiFi", - "Socket", - "Rubic", - "Rango", - "Sonarwatch", - "SushiSwap", - "Bancor" - ], - "occurrences": 9 - }, - "0xc770eefad204b5180df6a14ee197d99d808ee52d": { - "address": "0xc770eefad204b5180df6a14ee197d99d808ee52d", - "symbol": "FOX", - "decimals": 18, - "name": "FOX", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xc770eefad204b5180df6a14ee197d99d808ee52d.png", - "aggregators": [ - "OpenSwap", - "1inch", - "LiFi", - "Socket", - "Rubic", - "Squid", - "Rango", - "Sonarwatch", - "Bancor" - ], - "occurrences": 9 - }, - "0xde30da39c46104798bb5aa3fe8b9e0e1f348163f": { - "address": "0xde30da39c46104798bb5aa3fe8b9e0e1f348163f", - "symbol": "GTC", - "decimals": 18, - "name": "Gitcoin", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xde30da39c46104798bb5aa3fe8b9e0e1f348163f.png", - "aggregators": [ - "Metamask", - "1inch", - "LiFi", - "Socket", - "Rubic", - "Squid", - "Rango", - "Sonarwatch", - "Bancor" - ], - "occurrences": 9 - }, - "0x0954906da0bf32d5479e25f46056d22f08464cab": { - "address": "0x0954906da0bf32d5479e25f46056d22f08464cab", - "symbol": "INDEX", - "decimals": 18, - "name": "Index", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x0954906da0bf32d5479e25f46056d22f08464cab.png", - "aggregators": [ - "CoinMarketCap", - "1inch", - "LiFi", - "Socket", - "Rubic", - "Rango", - "Sonarwatch", - "SushiSwap", - "Bancor" - ], - "occurrences": 9 - }, - "0x41d5d79431a913c4ae7d69a668ecdfe5ff9dfb68": { - "address": "0x41d5d79431a913c4ae7d69a668ecdfe5ff9dfb68", - "symbol": "INV", - "decimals": 18, - "name": "Inverse DAO", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x41d5d79431a913c4ae7d69a668ecdfe5ff9dfb68.png", - "aggregators": [ - "OpenSwap", - "1inch", - "LiFi", - "Socket", - "Rubic", - "Squid", - "Rango", - "Sonarwatch", - "SushiSwap" - ], - "occurrences": 9 - }, - "0x57b946008913b82e4df85f501cbaed910e58d26c": { - "address": "0x57b946008913b82e4df85f501cbaed910e58d26c", - "symbol": "POND", - "decimals": 18, - "name": "Marlin", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x57b946008913b82e4df85f501cbaed910e58d26c.png", - "aggregators": [ - "Metamask", - "1inch", - "LiFi", - "Socket", - "Rubic", - "Squid", - "Rango", - "Sonarwatch", - "SushiSwap" - ], - "occurrences": 9 - }, - "0xd291e7a03283640fdc51b121ac401383a46cc623": { - "address": "0xd291e7a03283640fdc51b121ac401383a46cc623", - "symbol": "RGT", - "decimals": 18, - "name": "Rari Governance Token", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xd291e7a03283640fdc51b121ac401383a46cc623.png", - "aggregators": [ - "OpenSwap", - "1inch", - "LiFi", - "Socket", - "Rubic", - "Rango", - "Sonarwatch", - "SushiSwap", - "Bancor" - ], - "occurrences": 9 - }, - "0x00c83aecc790e8a4453e5dd3b0b4b3680501a7a7": { - "address": "0x00c83aecc790e8a4453e5dd3b0b4b3680501a7a7", - "symbol": "SKL", - "decimals": 18, - "name": "SKALE", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x00c83aecc790e8a4453e5dd3b0b4b3680501a7a7.png", - "aggregators": [ - "Metamask", - "1inch", - "LiFi", - "TrustWallet", - "Socket", - "Rubic", - "Squid", - "Rango", - "Sonarwatch" - ], - "occurrences": 9 - }, - "0x0f2d719407fdbeff09d87557abb7232601fd9f29": { - "address": "0x0f2d719407fdbeff09d87557abb7232601fd9f29", - "symbol": "SYN", - "decimals": 18, - "name": "Synapse", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x0f2d719407fdbeff09d87557abb7232601fd9f29.png", - "aggregators": [ - "OpenSwap", - "1inch", - "LiFi", - "Socket", - "Rubic", - "Squid", - "Rango", - "Sonarwatch", - "SushiSwap" - ], - "occurrences": 9 - }, - "0x55296f69f40ea6d20e478533c15a6b08b654e758": { - "address": "0x55296f69f40ea6d20e478533c15a6b08b654e758", - "symbol": "XYO", - "decimals": 18, - "name": "XY Oracle", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x55296f69f40ea6d20e478533c15a6b08b654e758.png", - "aggregators": [ - "OpenSwap", - "1inch", - "LiFi", - "Socket", - "Rubic", - "Rango", - "Sonarwatch", - "SushiSwap", - "Bancor" - ], - "occurrences": 9 - }, - "0xaaaf91d9b90df800df4f55c205fd6989c977e73a": { - "address": "0xaaaf91d9b90df800df4f55c205fd6989c977e73a", - "symbol": "TKN", - "decimals": 8, - "name": "Monolith TKN", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xaaaf91d9b90df800df4f55c205fd6989c977e73a.png", - "aggregators": [ - "Metamask", - "1inch", - "LiFi", - "TrustWallet", - "Socket", - "Rubic", - "Rango", - "Sonarwatch", - "Bancor" - ], - "occurrences": 9 - }, - "0x8a854288a5976036a725879164ca3e91d30c6a1b": { - "address": "0x8a854288a5976036a725879164ca3e91d30c6a1b", - "symbol": "GET", - "decimals": 18, - "name": "Guaranteed Entrance Token", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x8a854288a5976036a725879164ca3e91d30c6a1b.png", - "aggregators": [ - "Metamask", - "LiFi", - "TrustWallet", - "Socket", - "Rubic", - "Squid", - "Rango", - "Sonarwatch", - "SushiSwap" - ], - "occurrences": 9 - }, - "0xaaaebe6fe48e54f431b0c390cfaf0b017d09d42d": { - "address": "0xaaaebe6fe48e54f431b0c390cfaf0b017d09d42d", - "symbol": "CEL", - "decimals": 4, - "name": "Celsius", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xaaaebe6fe48e54f431b0c390cfaf0b017d09d42d.png", - "aggregators": [ - "Metamask", - "1inch", - "LiFi", - "TrustWallet", - "Socket", - "Rubic", - "Sonarwatch", - "SushiSwap", - "Bancor" - ], - "occurrences": 9 - }, - "0x5732046a883704404f284ce41ffadd5b007fd668": { - "address": "0x5732046a883704404f284ce41ffadd5b007fd668", - "symbol": "BLZ", - "decimals": 18, - "name": "Bluzelle Token", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x5732046a883704404f284ce41ffadd5b007fd668.png", - "aggregators": [ - "Metamask", - "1inch", - "LiFi", - "Socket", - "Rubic", - "Squid", - "Rango", - "Sonarwatch" - ], - "occurrences": 8 - }, - "0xccc8cb5229b0ac8069c51fd58367fd1e622afd97": { - "address": "0xccc8cb5229b0ac8069c51fd58367fd1e622afd97", - "symbol": "GODS", - "decimals": 18, - "name": "Gods Unchained", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xccc8cb5229b0ac8069c51fd58367fd1e622afd97.png", - "aggregators": [ - "Metamask", - "LiFi", - "Socket", - "Rubic", - "Squid", - "Rango", - "Sonarwatch", - "SushiSwap" - ], - "occurrences": 8 - }, - "0x85eee30c52b0b379b046fb0f85f4f3dc3009afec": { - "address": "0x85eee30c52b0b379b046fb0f85f4f3dc3009afec", - "symbol": "KEEP", - "decimals": 18, - "name": "KEEP", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x85eee30c52b0b379b046fb0f85f4f3dc3009afec.png", - "aggregators": [ - "Metamask", - "1inch", - "LiFi", - "TrustWallet", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 8 - }, - "0x595832f8fc6bf59c85c527fec3740a1b7a361269": { - "address": "0x595832f8fc6bf59c85c527fec3740a1b7a361269", - "symbol": "POWR", - "decimals": 6, - "name": "PowerLedger", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x595832f8fc6bf59c85c527fec3740a1b7a361269.png", - "aggregators": [ - "Metamask", - "1inch", - "LiFi", - "Socket", - "Rubic", - "Rango", - "Sonarwatch", - "Bancor" - ], - "occurrences": 8 - }, - "0x744d70fdbe2ba4cf95131626614a1763df805b9e": { - "address": "0x744d70fdbe2ba4cf95131626614a1763df805b9e", - "symbol": "SNT", - "decimals": 18, - "name": "Status Network Token", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x744d70fdbe2ba4cf95131626614a1763df805b9e.png", - "aggregators": [ - "Metamask", - "1inch", - "LiFi", - "Socket", - "Rubic", - "Rango", - "Sonarwatch", - "Bancor" - ], - "occurrences": 8 - }, - "0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac": { - "address": "0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac", - "symbol": "STORJ", - "decimals": 8, - "name": "Storj", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac.png", - "aggregators": [ - "Metamask", - "1inch", - "LiFi", - "Socket", - "Rubic", - "Squid", - "Rango", - "Sonarwatch" - ], - "occurrences": 8 - }, - "0xa1d0e215a23d7030842fc67ce582a6afa3ccab83": { - "address": "0xa1d0e215a23d7030842fc67ce582a6afa3ccab83", - "symbol": "YFII", - "decimals": 18, - "name": "YFII.finance", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xa1d0e215a23d7030842fc67ce582a6afa3ccab83.png", - "aggregators": [ - "OpenSwap", - "1inch", - "LiFi", - "Socket", - "Rubic", - "Rango", - "Sonarwatch", - "SushiSwap" - ], - "occurrences": 8 - }, - "0x875773784af8135ea0ef43b5a374aad105c5d39e": { - "address": "0x875773784af8135ea0ef43b5a374aad105c5d39e", - "symbol": "IDLE", - "decimals": 18, - "name": "Idle DAO Token", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x875773784af8135ea0ef43b5a374aad105c5d39e.png", - "aggregators": [ - "Metamask", - "LiFi", - "Socket", - "Rubic", - "Rango", - "Sonarwatch", - "SushiSwap", - "Bancor" - ], - "occurrences": 8 - }, - "0xaea46a60368a7bd060eec7df8cba43b7ef41ad85": { - "address": "0xaea46a60368a7bd060eec7df8cba43b7ef41ad85", - "symbol": "FET", - "decimals": 18, - "name": "Fetch", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xaea46a60368a7bd060eec7df8cba43b7ef41ad85.png", - "aggregators": [ - "Metamask", - "1inch", - "LiFi", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 7 - }, - "0x6dea81c8171d0ba574754ef6f8b412f2ed88c54d": { - "address": "0x6dea81c8171d0ba574754ef6f8b412f2ed88c54d", - "symbol": "LQTY", - "decimals": 18, - "name": "LQTY", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x6dea81c8171d0ba574754ef6f8b412f2ed88c54d.png", - "aggregators": [ - "OpenSwap", - "1inch", - "LiFi", - "Socket", - "Rubic", - "Sonarwatch", - "Bancor" - ], - "occurrences": 7 - }, - "0xe2f2a5c287993345a840db3b0845fbc70f5935a5": { - "address": "0xe2f2a5c287993345a840db3b0845fbc70f5935a5", - "symbol": "MSUSD", - "decimals": 18, - "name": "mStable USD", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xe2f2a5c287993345a840db3b0845fbc70f5935a5.png", - "aggregators": [ - "Metamask", - "1inch", - "LiFi", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 7 - }, - "0x9992ec3cf6a55b00978cddf2b27bc6882d88d1ec": { - "address": "0x9992ec3cf6a55b00978cddf2b27bc6882d88d1ec", - "symbol": "POLY", - "decimals": 18, - "name": "Polymath", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x9992ec3cf6a55b00978cddf2b27bc6882d88d1ec.png", - "aggregators": [ - "Metamask", - "1inch", - "LiFi", - "Socket", - "Rubic", - "Sonarwatch", - "SushiSwap" - ], - "occurrences": 7 - }, - "0x491604c0fdf08347dd1fa4ee062a822a5dd06b5d": { - "address": "0x491604c0fdf08347dd1fa4ee062a822a5dd06b5d", - "symbol": "CTSI", - "decimals": 18, - "name": "Cartesi Token", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x491604c0fdf08347dd1fa4ee062a822a5dd06b5d.png", - "aggregators": [ - "OpenSwap", - "LiFi", - "Socket", - "Rubic", - "Sonarwatch", - "Bancor" - ], - "occurrences": 6 - }, - "0xfe18be6b3bd88a2d2a7f928d00292e7a9963cfc6": { - "address": "0xfe18be6b3bd88a2d2a7f928d00292e7a9963cfc6", - "symbol": "SBTC", - "decimals": 18, - "name": "Synth sBTC", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xfe18be6b3bd88a2d2a7f928d00292e7a9963cfc6.png", - "aggregators": ["Metamask", "LiFi", "Rubic", "Rango", "Bancor"], - "occurrences": 5 - }, - "0x0391d2021f89dc339f60fff84546ea23e337750f": { - "address": "0x0391d2021f89dc339f60fff84546ea23e337750f", - "symbol": "BOND", - "decimals": 18, - "name": "BarnBridge Governance Token", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x0391d2021f89dc339f60fff84546ea23e337750f.png", - "aggregators": [ - "OpenSwap", - "1inch", - "LiFi", - "Socket", - "Rubic", - "Squid", - "Rango", - "Sonarwatch", - "SushiSwap", - "Bancor" - ], - "occurrences": 10 - }, - "0x221657776846890989a759ba2973e427dff5c9bb": { - "address": "0x221657776846890989a759ba2973e427dff5c9bb", - "symbol": "REPV2", - "decimals": 18, - "name": "Reputation", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x221657776846890989a759ba2973e427dff5c9bb.png", - "aggregators": [ - "Metamask", - "1inch", - "LiFi", - "TrustWallet", - "Socket", - "Rubic", - "Squid", - "Rango", - "Sonarwatch", - "SushiSwap" - ], - "occurrences": 10 - }, - "0x8ce9137d39326ad0cd6491fb5cc0cba0e089b6a9": { - "address": "0x8ce9137d39326ad0cd6491fb5cc0cba0e089b6a9", - "symbol": "SXP", - "decimals": 18, - "name": "Swipe", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x8ce9137d39326ad0cd6491fb5cc0cba0e089b6a9.png", - "aggregators": [ - "CoinGecko", - "1inch", - "LiFi", - "TrustWallet", - "Socket", - "Rubic", - "Rango", - "Sonarwatch", - "SushiSwap", - "Bancor" - ], - "occurrences": 10 - }, - "0xaa7a9ca87d3694b5755f213b5d04094b8d0f0a6f": { - "address": "0xaa7a9ca87d3694b5755f213b5d04094b8d0f0a6f", - "symbol": "TRAC", - "decimals": 18, - "name": "Trace Token", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xaa7a9ca87d3694b5755f213b5d04094b8d0f0a6f.png", - "aggregators": [ - "OpenSwap", - "1inch", - "LiFi", - "TrustWallet", - "Socket", - "Rubic", - "Squid", - "Rango", - "Sonarwatch", - "Bancor" - ], - "occurrences": 10 - }, - "0x1559fa1b8f28238fd5d76d9f434ad86fd20d1559": { - "address": "0x1559fa1b8f28238fd5d76d9f434ad86fd20d1559", - "symbol": "EDEN", - "decimals": 18, - "name": "EDEN", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x1559fa1b8f28238fd5d76d9f434ad86fd20d1559.png", - "aggregators": [ - "CoinMarketCap", - "1inch", - "LiFi", - "Socket", - "Rubic", - "Squid", - "Rango", - "Sonarwatch", - "SushiSwap", - "Bancor" - ], - "occurrences": 10 - }, - "0x4c2e59d098df7b6cbae0848d66de2f8a4889b9c3": { - "address": "0x4c2e59d098df7b6cbae0848d66de2f8a4889b9c3", - "symbol": "FODL", - "decimals": 18, - "name": "Fodl", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x4c2e59d098df7b6cbae0848d66de2f8a4889b9c3.png", - "aggregators": [ - "CoinMarketCap", - "1inch", - "LiFi", - "Socket", - "Rubic", - "Squid", - "Rango", - "Sonarwatch", - "SushiSwap", - "Bancor" - ], - "occurrences": 10 - }, - "0xe76c6c83af64e4c60245d8c7de953df673a7a33d": { - "address": "0xe76c6c83af64e4c60245d8c7de953df673a7a33d", - "symbol": "RAIL", - "decimals": 18, - "name": "Rail", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xe76c6c83af64e4c60245d8c7de953df673a7a33d.png", - "aggregators": [ - "CoinMarketCap", - "1inch", - "LiFi", - "Socket", - "Rubic", - "Squid", - "Rango", - "Sonarwatch", - "SushiSwap", - "Bancor" - ], - "occurrences": 10 - }, - "0xcc4304a31d09258b0029ea7fe63d032f52e44efe": { - "address": "0xcc4304a31d09258b0029ea7fe63d032f52e44efe", - "symbol": "SWAP", - "decimals": 18, - "name": "TrustSwap Token", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xcc4304a31d09258b0029ea7fe63d032f52e44efe.png", - "aggregators": [ - "CoinMarketCap", - "1inch", - "LiFi", - "TrustWallet", - "Socket", - "Rubic", - "Squid", - "Rango", - "Sonarwatch", - "SushiSwap" - ], - "occurrences": 10 - }, - "0x0f51bb10119727a7e5ea3538074fb341f56b09ad": { - "address": "0x0f51bb10119727a7e5ea3538074fb341f56b09ad", - "symbol": "DAO", - "decimals": 18, - "name": "DAO Maker", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x0f51bb10119727a7e5ea3538074fb341f56b09ad.png", - "aggregators": [ - "CoinMarketCap", - "1inch", - "LiFi", - "TrustWallet", - "Socket", - "Rubic", - "Rango", - "Sonarwatch", - "SushiSwap", - "Bancor" - ], - "occurrences": 10 - }, - "0x8798249c2e607446efb7ad49ec89dd1865ff4272": { - "address": "0x8798249c2e607446efb7ad49ec89dd1865ff4272", - "symbol": "XSUSHI", - "decimals": 18, - "name": "SushiBar", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x8798249c2e607446efb7ad49ec89dd1865ff4272.png", - "aggregators": [ - "CoinMarketCap", - "1inch", - "LiFi", - "Socket", - "Rubic", - "Squid", - "Rango", - "Sonarwatch", - "SushiSwap", - "Bancor" - ], - "occurrences": 10 - }, - "0x4104b135dbc9609fc1a9490e61369036497660c8": { - "address": "0x4104b135dbc9609fc1a9490e61369036497660c8", - "symbol": "APW", - "decimals": 18, - "name": "APWine Token", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x4104b135dbc9609fc1a9490e61369036497660c8.png", - "aggregators": [ - "CoinMarketCap", - "1inch", - "LiFi", - "Socket", - "Rubic", - "Squid", - "Rango", - "Sonarwatch", - "SushiSwap", - "Bancor" - ], - "occurrences": 10 - }, - "0x8888801af4d980682e47f1a9036e589479e835c5": { - "address": "0x8888801af4d980682e47f1a9036e589479e835c5", - "symbol": "MPH", - "decimals": 18, - "name": "88mph.app", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x8888801af4d980682e47f1a9036e589479e835c5.png", - "aggregators": [ - "CoinMarketCap", - "1inch", - "LiFi", - "TrustWallet", - "Socket", - "Rubic", - "Rango", - "Sonarwatch", - "SushiSwap", - "Bancor" - ], - "occurrences": 10 - }, - "0xf17e65822b568b3903685a7c9f496cf7656cc6c2": { - "address": "0xf17e65822b568b3903685a7c9f496cf7656cc6c2", - "symbol": "BICO", - "decimals": 18, - "name": "Biconomy Token", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xf17e65822b568b3903685a7c9f496cf7656cc6c2.png", - "aggregators": [ - "OpenSwap", - "1inch", - "LiFi", - "Socket", - "Rubic", - "Squid", - "Rango", - "Sonarwatch", - "SushiSwap" - ], - "occurrences": 9 - }, - "0x1a4b46696b2bb4794eb3d4c26f1c55f9170fa4c5": { - "address": "0x1a4b46696b2bb4794eb3d4c26f1c55f9170fa4c5", - "symbol": "BIT", - "decimals": 18, - "name": "BitDAO", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x1a4b46696b2bb4794eb3d4c26f1c55f9170fa4c5.png", - "aggregators": [ - "Metamask", - "1inch", - "LiFi", - "Socket", - "Rubic", - "Squid", - "Rango", - "Sonarwatch", - "SushiSwap" - ], - "occurrences": 9 - }, - "0x5283d291dbcf85356a21ba090e6db59121208b44": { - "address": "0x5283d291dbcf85356a21ba090e6db59121208b44", - "symbol": "BLUR", - "decimals": 18, - "name": "Blur", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x5283d291dbcf85356a21ba090e6db59121208b44.png", - "aggregators": [ - "CoinMarketCap", - "1inch", - "LiFi", - "Socket", - "Rubic", - "Squid", - "Rango", - "Sonarwatch", - "SushiSwap" - ], - "occurrences": 9 - }, - "0xdef1ca1fb7fbcdc777520aa7f396b4e015f497ab": { - "address": "0xdef1ca1fb7fbcdc777520aa7f396b4e015f497ab", - "symbol": "COW", - "decimals": 18, - "name": "CoW Protocol Token", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xdef1ca1fb7fbcdc777520aa7f396b4e015f497ab.png", - "aggregators": [ - "Metamask", - "1inch", - "LiFi", - "Socket", - "Rubic", - "Squid", - "Rango", - "Sonarwatch", - "SushiSwap" - ], - "occurrences": 9 - }, - "0x4e15361fd6b4bb609fa63c81a2be19d873717870": { - "address": "0x4e15361fd6b4bb609fa63c81a2be19d873717870", - "symbol": "FTM", - "decimals": 18, - "name": "Fantom", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x4e15361fd6b4bb609fa63c81a2be19d873717870.png", - "aggregators": [ - "Metamask", - "1inch", - "LiFi", - "Socket", - "Rubic", - "Squid", - "Rango", - "Sonarwatch", - "SushiSwap" - ], - "occurrences": 9 - }, - "0x99d8a9c45b2eca8864373a26d1459e3dff1e17f3": { - "address": "0x99d8a9c45b2eca8864373a26d1459e3dff1e17f3", - "symbol": "MIM", - "decimals": 18, - "name": "Magic Internet Money", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x99d8a9c45b2eca8864373a26d1459e3dff1e17f3.png", - "aggregators": [ - "OpenSwap", - "1inch", - "LiFi", - "Socket", - "Rubic", - "Squid", - "Rango", - "Sonarwatch", - "SushiSwap" - ], - "occurrences": 9 - }, - "0x275f5ad03be0fa221b4c6649b8aee09a42d9412a": { - "address": "0x275f5ad03be0fa221b4c6649b8aee09a42d9412a", - "symbol": "MONA", - "decimals": 18, - "name": "Monavale", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x275f5ad03be0fa221b4c6649b8aee09a42d9412a.png", - "aggregators": [ - "CoinMarketCap", - "1inch", - "LiFi", - "Socket", - "Rubic", - "Squid", - "Rango", - "Sonarwatch", - "Bancor" - ], - "occurrences": 9 - }, - "0x65ef703f5594d2573eb71aaf55bc0cb548492df4": { - "address": "0x65ef703f5594d2573eb71aaf55bc0cb548492df4", - "symbol": "MULTI", - "decimals": 18, - "name": "Multichain", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x65ef703f5594d2573eb71aaf55bc0cb548492df4.png", - "aggregators": [ - "OpenSwap", - "1inch", - "LiFi", - "Socket", - "Rubic", - "Squid", - "Rango", - "Sonarwatch", - "SushiSwap" - ], - "occurrences": 9 - }, - "0x4fe83213d56308330ec302a8bd641f1d0113a4cc": { - "address": "0x4fe83213d56308330ec302a8bd641f1d0113a4cc", - "symbol": "NU", - "decimals": 18, - "name": "NuCypher", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x4fe83213d56308330ec302a8bd641f1d0113a4cc.png", - "aggregators": [ - "OpenSwap", - "1inch", - "LiFi", - "TrustWallet", - "Socket", - "Rubic", - "Rango", - "Sonarwatch", - "SushiSwap" - ], - "occurrences": 9 - }, - "0x0258f474786ddfd37abce6df6bbb1dd5dfc4434a": { - "address": "0x0258f474786ddfd37abce6df6bbb1dd5dfc4434a", - "symbol": "ORN", - "decimals": 8, - "name": "Orion Protocol", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x0258f474786ddfd37abce6df6bbb1dd5dfc4434a.png", - "aggregators": [ - "OpenSwap", - "1inch", - "LiFi", - "TrustWallet", - "Socket", - "Rubic", - "Rango", - "Sonarwatch", - "SushiSwap" - ], - "occurrences": 9 - }, - "0x808507121b80c02388fad14726482e061b8da827": { - "address": "0x808507121b80c02388fad14726482e061b8da827", - "symbol": "PENDLE", - "decimals": 18, - "name": "Pendle", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x808507121b80c02388fad14726482e061b8da827.png", - "aggregators": [ - "CoinMarketCap", - "1inch", - "LiFi", - "Socket", - "Rubic", - "Squid", - "Rango", - "Sonarwatch", - "SushiSwap" - ], - "occurrences": 9 - }, - "0xba5bde662c17e2adff1075610382b9b691296350": { - "address": "0xba5bde662c17e2adff1075610382b9b691296350", - "symbol": "RARE", - "decimals": 18, - "name": "SuperRare Token", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xba5bde662c17e2adff1075610382b9b691296350.png", - "aggregators": [ - "Metamask", - "1inch", - "LiFi", - "Socket", - "Rubic", - "Squid", - "Rango", - "Sonarwatch", - "SushiSwap" - ], - "occurrences": 9 - }, - "0x557b933a7c2c45672b610f8954a3deb39a51a8ca": { - "address": "0x557b933a7c2c45672b610f8954a3deb39a51a8ca", - "symbol": "REVV", - "decimals": 18, - "name": "REVV", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x557b933a7c2c45672b610f8954a3deb39a51a8ca.png", - "aggregators": [ - "Metamask", - "1inch", - "LiFi", - "TrustWallet", - "Socket", - "Rubic", - "Rango", - "Sonarwatch", - "SushiSwap" - ], - "occurrences": 9 - }, - "0xe53ec727dbdeb9e2d5456c3be40cff031ab40a55": { - "address": "0xe53ec727dbdeb9e2d5456c3be40cff031ab40a55", - "symbol": "SUPER", - "decimals": 18, - "name": "SuperVerse", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xe53ec727dbdeb9e2d5456c3be40cff031ab40a55.png", - "aggregators": [ - "OpenSwap", - "1inch", - "LiFi", - "TrustWallet", - "Socket", - "Rubic", - "Squid", - "Rango", - "Sonarwatch" - ], - "occurrences": 9 - }, - "0x2e9d63788249371f1dfc918a52f8d799f4a38c94": { - "address": "0x2e9d63788249371f1dfc918a52f8d799f4a38c94", - "symbol": "TOKE", - "decimals": 18, - "name": "Tokemak", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x2e9d63788249371f1dfc918a52f8d799f4a38c94.png", - "aggregators": [ - "OpenSwap", - "1inch", - "LiFi", - "Socket", - "Rubic", - "Squid", - "Rango", - "Sonarwatch", - "SushiSwap" - ], - "occurrences": 9 - }, - "0x431ad2ff6a9c365805ebad47ee021148d6f7dbe0": { - "address": "0x431ad2ff6a9c365805ebad47ee021148d6f7dbe0", - "symbol": "DF", - "decimals": 18, - "name": "dForce", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x431ad2ff6a9c365805ebad47ee021148d6f7dbe0.png", - "aggregators": [ - "Metamask", - "1inch", - "LiFi", - "TrustWallet", - "Socket", - "Rubic", - "Squid", - "Rango", - "Sonarwatch" - ], - "occurrences": 9 - }, - "0x38e4adb44ef08f22f5b5b76a8f0c2d0dcbe7dca1": { - "address": "0x38e4adb44ef08f22f5b5b76a8f0c2d0dcbe7dca1", - "symbol": "CVP", - "decimals": 18, - "name": "Concentrated Voting Power", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x38e4adb44ef08f22f5b5b76a8f0c2d0dcbe7dca1.png", - "aggregators": [ - "Metamask", - "1inch", - "LiFi", - "TrustWallet", - "Socket", - "Rubic", - "Rango", - "Sonarwatch", - "SushiSwap" - ], - "occurrences": 9 - }, - "0xe5caef4af8780e59df925470b050fb23c43ca68c": { - "address": "0xe5caef4af8780e59df925470b050fb23c43ca68c", - "symbol": "FRM", - "decimals": 6, - "name": "Ferrum Network Token", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xe5caef4af8780e59df925470b050fb23c43ca68c.png", - "aggregators": [ - "Metamask", - "1inch", - "LiFi", - "TrustWallet", - "Socket", - "Rubic", - "Rango", - "Sonarwatch", - "Bancor" - ], - "occurrences": 9 - }, - "0xe3818504c1b32bf1557b16c238b2e01fd3149c17": { - "address": "0xe3818504c1b32bf1557b16c238b2e01fd3149c17", - "symbol": "PLR", - "decimals": 18, - "name": "Pillar", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xe3818504c1b32bf1557b16c238b2e01fd3149c17.png", - "aggregators": [ - "Metamask", - "1inch", - "LiFi", - "TrustWallet", - "Socket", - "Rubic", - "Rango", - "Sonarwatch", - "Bancor" - ], - "occurrences": 9 - }, - "0x1b40183efb4dd766f11bda7a7c3ad8982e998421": { - "address": "0x1b40183efb4dd766f11bda7a7c3ad8982e998421", - "symbol": "VSP", - "decimals": 18, - "name": "Vesper", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x1b40183efb4dd766f11bda7a7c3ad8982e998421.png", - "aggregators": [ - "Metamask", - "1inch", - "LiFi", - "TrustWallet", - "Socket", - "Rubic", - "Rango", - "Sonarwatch", - "SushiSwap" - ], - "occurrences": 9 - }, - "0x6399c842dd2be3de30bf99bc7d1bbf6fa3650e70": { - "address": "0x6399c842dd2be3de30bf99bc7d1bbf6fa3650e70", - "symbol": "PREMIA", - "decimals": 18, - "name": "Premia", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x6399c842dd2be3de30bf99bc7d1bbf6fa3650e70.png", - "aggregators": [ - "CoinMarketCap", - "1inch", - "LiFi", - "Socket", - "Rubic", - "Squid", - "Rango", - "Sonarwatch", - "SushiSwap" - ], - "occurrences": 9 - }, - "0xd084944d3c05cd115c09d072b9f44ba3e0e45921": { - "address": "0xd084944d3c05cd115c09d072b9f44ba3e0e45921", - "symbol": "FOLD", - "decimals": 18, - "name": "Manifold Finance", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xd084944d3c05cd115c09d072b9f44ba3e0e45921.png", - "aggregators": [ - "Metamask", - "1inch", - "LiFi", - "Socket", - "Rubic", - "Squid", - "Rango", - "Sonarwatch", - "SushiSwap" - ], - "occurrences": 9 - }, - "0x8400d94a5cb0fa0d041a3788e395285d61c9ee5e": { - "address": "0x8400d94a5cb0fa0d041a3788e395285d61c9ee5e", - "symbol": "UBT", - "decimals": 8, - "name": "Unibright", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x8400d94a5cb0fa0d041a3788e395285d61c9ee5e.png", - "aggregators": [ - "Metamask", - "1inch", - "LiFi", - "TrustWallet", - "Socket", - "Rubic", - "Rango", - "Sonarwatch", - "Bancor" - ], - "occurrences": 9 - }, - "0x888888888889c00c67689029d7856aac1065ec11": { - "address": "0x888888888889c00c67689029d7856aac1065ec11", - "symbol": "OPIUM", - "decimals": 18, - "name": "Opium Governance Token", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x888888888889c00c67689029d7856aac1065ec11.png", - "aggregators": [ - "CoinMarketCap", - "1inch", - "LiFi", - "Socket", - "Rubic", - "Rango", - "Sonarwatch", - "SushiSwap", - "Bancor" - ], - "occurrences": 9 - }, - "0xae78736cd615f374d3085123a210448e74fc6393": { - "address": "0xae78736cd615f374d3085123a210448e74fc6393", - "symbol": "RETH", - "decimals": 18, - "name": "Rocket Pool ETH", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xae78736cd615f374d3085123a210448e74fc6393.png", - "aggregators": [ - "Metamask", - "1inch", - "LiFi", - "Socket", - "Rubic", - "Squid", - "Rango", - "Sonarwatch", - "Bancor" - ], - "occurrences": 9 - }, - "0x0d438f3b5175bebc262bf23753c1e53d03432bde": { - "address": "0x0d438f3b5175bebc262bf23753c1e53d03432bde", - "symbol": "WNXM", - "decimals": 18, - "name": "Wrapped NXM", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x0d438f3b5175bebc262bf23753c1e53d03432bde.png", - "aggregators": [ - "CoinMarketCap", - "1inch", - "LiFi", - "Socket", - "Rubic", - "Rango", - "Sonarwatch", - "SushiSwap", - "Bancor" - ], - "occurrences": 9 - }, - "0x856c4efb76c1d1ae02e20ceb03a2a6a08b0b8dc3": { - "address": "0x856c4efb76c1d1ae02e20ceb03a2a6a08b0b8dc3", - "symbol": "OETH", - "decimals": 18, - "name": "Origin Ether", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x856c4efb76c1d1ae02e20ceb03a2a6a08b0b8dc3.png", - "aggregators": [ - "Metamask", - "1inch", - "LiFi", - "Socket", - "Rubic", - "Squid", - "Rango", - "Sonarwatch", - "SushiSwap" - ], - "occurrences": 9 - }, - "0x32353a6c91143bfd6c7d363b546e62a9a2489a20": { - "address": "0x32353a6c91143bfd6c7d363b546e62a9a2489a20", - "symbol": "AGLD", - "decimals": 18, - "name": "Adventure Gold", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x32353a6c91143bfd6c7d363b546e62a9a2489a20.png", - "aggregators": [ - "OpenSwap", - "1inch", - "LiFi", - "Socket", - "Rubic", - "Rango", - "Sonarwatch", - "SushiSwap" - ], - "occurrences": 8 - }, - "0x27054b13b1b798b345b591a4d22e6562d47ea75a": { - "address": "0x27054b13b1b798b345b591a4d22e6562d47ea75a", - "symbol": "AST", - "decimals": 4, - "name": "AirSwap Token", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x27054b13b1b798b345b591a4d22e6562d47ea75a.png", - "aggregators": [ - "Metamask", - "1inch", - "LiFi", - "Socket", - "Rubic", - "Rango", - "Sonarwatch", - "Bancor" - ], - "occurrences": 8 - }, - "0x321c2fe4446c7c963dc41dd58879af648838f98d": { - "address": "0x321c2fe4446c7c963dc41dd58879af648838f98d", - "symbol": "CTX", - "decimals": 18, - "name": "Cryptex Finance", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x321c2fe4446c7c963dc41dd58879af648838f98d.png", - "aggregators": [ - "Metamask", - "1inch", - "LiFi", - "Socket", - "Rubic", - "Rango", - "Sonarwatch", - "SushiSwap" - ], - "occurrences": 8 - }, - "0xf1f955016ecbcd7321c7266bccfb96c68ea5e49b": { - "address": "0xf1f955016ecbcd7321c7266bccfb96c68ea5e49b", - "symbol": "RLY", - "decimals": 18, - "name": "Rally", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xf1f955016ecbcd7321c7266bccfb96c68ea5e49b.png", - "aggregators": [ - "OpenSwap", - "1inch", - "TrustWallet", - "Socket", - "Rubic", - "Squid", - "Rango", - "Sonarwatch" - ], - "occurrences": 8 - }, - "0xfa5047c9c78b8877af97bdcb85db743fd7313d4a": { - "address": "0xfa5047c9c78b8877af97bdcb85db743fd7313d4a", - "symbol": "ROOK", - "decimals": 18, - "name": "ROOK", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xfa5047c9c78b8877af97bdcb85db743fd7313d4a.png", - "aggregators": [ - "Metamask", - "LiFi", - "Socket", - "Rubic", - "Rango", - "Sonarwatch", - "SushiSwap", - "Bancor" - ], - "occurrences": 8 - }, - "0xd33526068d116ce69f19a9ee46f0bd304f21a51f": { - "address": "0xd33526068d116ce69f19a9ee46f0bd304f21a51f", - "symbol": "RPL", - "decimals": 18, - "name": "Rocket Pool", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xd33526068d116ce69f19a9ee46f0bd304f21a51f.png", - "aggregators": [ - "Metamask", - "1inch", - "LiFi", - "Socket", - "Rubic", - "Rango", - "Sonarwatch", - "Bancor" - ], - "occurrences": 8 - }, - "0x8d0d000ee44948fc98c9b98a4fa4921476f08b0d": { - "address": "0x8d0d000ee44948fc98c9b98a4fa4921476f08b0d", - "symbol": "USD1", - "decimals": 18, - "name": "USD1", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x8d0d000ee44948fc98c9b98a4fa4921476f08b0d.png", - "aggregators": [ - "CoinMarketCap", - "1inch", - "LiFi", - "Socket", - "Rubic", - "Squid", - "Rango", - "Sonarwatch" - ], - "occurrences": 8 - }, - "0x80fb784b7ed66730e8b1dbd9820afd29931aab03": { - "address": "0x80fb784b7ed66730e8b1dbd9820afd29931aab03", - "symbol": "LEND", - "decimals": 18, - "name": "ETHLend Token", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x80fb784b7ed66730e8b1dbd9820afd29931aab03.png", - "aggregators": [ - "Metamask", - "1inch", - "LiFi", - "Socket", - "Rubic", - "Rango", - "Sonarwatch", - "SushiSwap" - ], - "occurrences": 8 - }, - "0x56d811088235f11c8920698a204a5010a788f4b3": { - "address": "0x56d811088235f11c8920698a204a5010a788f4b3", - "symbol": "BZRX", - "decimals": 18, - "name": "bZx Protocol Token (BZRX)", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x56d811088235f11c8920698a204a5010a788f4b3.png", - "aggregators": [ - "Metamask", - "LiFi", - "Socket", - "Rubic", - "Rango", - "Sonarwatch", - "SushiSwap", - "Bancor" - ], - "occurrences": 8 - }, - "0x8a9c67fee641579deba04928c4bc45f66e26343a": { - "address": "0x8a9c67fee641579deba04928c4bc45f66e26343a", - "symbol": "JRT", - "decimals": 18, - "name": "Jarvis Reward Token", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x8a9c67fee641579deba04928c4bc45f66e26343a.png", - "aggregators": [ - "CoinMarketCap", - "LiFi", - "Socket", - "Rubic", - "Rango", - "Sonarwatch", - "SushiSwap", - "Bancor" - ], - "occurrences": 8 - }, - "0x2a8e1e676ec238d8a992307b495b45b3feaa5e86": { - "address": "0x2a8e1e676ec238d8a992307b495b45b3feaa5e86", - "symbol": "OUSD", - "decimals": 18, - "name": "Origin Dollar", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x2a8e1e676ec238d8a992307b495b45b3feaa5e86.png", - "aggregators": [ - "Metamask", - "1inch", - "LiFi", - "Socket", - "Rubic", - "Rango", - "Sonarwatch", - "SushiSwap" - ], - "occurrences": 8 - }, - "0xae7ab96520de3a18e5e111b5eaab095312d7fe84": { - "address": "0xae7ab96520de3a18e5e111b5eaab095312d7fe84", - "symbol": "STETH", - "decimals": 18, - "name": "Liquid staked Ether 2.0", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xae7ab96520de3a18e5e111b5eaab095312d7fe84.png", - "aggregators": [ - "Metamask", - "1inch", - "LiFi", - "Socket", - "Rubic", - "Squid", - "Rango", - "Sonarwatch" - ], - "occurrences": 8 - }, - "0x7c5a0ce9267ed19b22f8cae653f198e3e8daf098": { - "address": "0x7c5a0ce9267ed19b22f8cae653f198e3e8daf098", - "symbol": "SAN", - "decimals": 18, - "name": "Santiment", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x7c5a0ce9267ed19b22f8cae653f198e3e8daf098.png", - "aggregators": [ - "Metamask", - "1inch", - "LiFi", - "Socket", - "Rubic", - "Rango", - "Sonarwatch", - "Bancor" - ], - "occurrences": 8 - }, - "0x93ed3fbe21207ec2e8f2d3c3de6e058cb73bc04d": { - "address": "0x93ed3fbe21207ec2e8f2d3c3de6e058cb73bc04d", - "symbol": "PNK", - "decimals": 18, - "name": "Pinakion Token", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x93ed3fbe21207ec2e8f2d3c3de6e058cb73bc04d.png", - "aggregators": [ - "Metamask", - "1inch", - "LiFi", - "TrustWallet", - "Socket", - "Rubic", - "Sonarwatch", - "SushiSwap" - ], - "occurrences": 8 - }, - "0xfa2b947eec368f42195f24f36d2af29f7c24cec2": { - "address": "0xfa2b947eec368f42195f24f36d2af29f7c24cec2", - "symbol": "USDF", - "decimals": 18, - "name": "Falcon USD", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xfa2b947eec368f42195f24f36d2af29f7c24cec2.png", - "aggregators": [ - "CoinMarketCap", - "1inch", - "LiFi", - "Socket", - "Rubic", - "Squid", - "Rango", - "Sonarwatch" - ], - "occurrences": 8 - }, - "0x970b9bb2c0444f5e81e9d0efb84c8ccdcdcaf84d": { - "address": "0x970b9bb2c0444f5e81e9d0efb84c8ccdcdcaf84d", - "symbol": "FUSE", - "decimals": 18, - "name": "Fuse Token", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x970b9bb2c0444f5e81e9d0efb84c8ccdcdcaf84d.png", - "aggregators": [ - "Metamask", - "1inch", - "LiFi", - "Socket", - "Rubic", - "Rango", - "Sonarwatch", - "SushiSwap" - ], - "occurrences": 8 - }, - "0xbf2179859fc6d5bee9bf9158632dc51678a4100e": { - "address": "0xbf2179859fc6d5bee9bf9158632dc51678a4100e", - "symbol": "ELF", - "decimals": 18, - "name": "AELF", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xbf2179859fc6d5bee9bf9158632dc51678a4100e.png", - "aggregators": [ - "Metamask", - "1inch", - "LiFi", - "Socket", - "Rubic", - "Rango", - "Sonarwatch", - "Bancor" - ], - "occurrences": 8 - }, - "0x91af0fbb28aba7e31403cb457106ce79397fd4e6": { - "address": "0x91af0fbb28aba7e31403cb457106ce79397fd4e6", - "symbol": "AERGO", - "decimals": 18, - "name": "Aergo", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x91af0fbb28aba7e31403cb457106ce79397fd4e6.png", - "aggregators": [ - "Metamask", - "Socket", - "Rubic", - "Squid", - "Rango", - "Sonarwatch", - "SushiSwap" - ], - "occurrences": 7 - }, - "0x0abdace70d3790235af448c88547603b945604ea": { - "address": "0x0abdace70d3790235af448c88547603b945604ea", - "symbol": "DNT", - "decimals": 18, - "name": "district0x", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x0abdace70d3790235af448c88547603b945604ea.png", - "aggregators": [ - "Metamask", - "LiFi", - "Socket", - "Rubic", - "Rango", - "Sonarwatch", - "SushiSwap" - ], - "occurrences": 7 - }, - "0xb705268213d593b8fd88d3fdeff93aff5cbdcfae": { - "address": "0xb705268213d593b8fd88d3fdeff93aff5cbdcfae", - "symbol": "IDEX", - "decimals": 18, - "name": "IDEX", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xb705268213d593b8fd88d3fdeff93aff5cbdcfae.png", - "aggregators": [ - "OpenSwap", - "1inch", - "LiFi", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 7 - }, - "0xd8912c10681d8b21fd3742244f44658dba12264e": { - "address": "0xd8912c10681d8b21fd3742244f44658dba12264e", - "symbol": "PLU", - "decimals": 18, - "name": "Pluton", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xd8912c10681d8b21fd3742244f44658dba12264e.png", - "aggregators": [ - "Metamask", - "1inch", - "LiFi", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 7 - }, - "0x6123b0049f904d730db3c36a31167d9d4121fa6b": { - "address": "0x6123b0049f904d730db3c36a31167d9d4121fa6b", - "symbol": "RBN", - "decimals": 18, - "name": "Ribbon Finance", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x6123b0049f904d730db3c36a31167d9d4121fa6b.png", - "aggregators": [ - "OpenSwap", - "LiFi", - "Socket", - "Rubic", - "Squid", - "Rango", - "Sonarwatch" - ], - "occurrences": 7 - }, - "0x5afe3855358e112b5647b952709e6165e1c1eeee": { - "address": "0x5afe3855358e112b5647b952709e6165e1c1eeee", - "symbol": "SAFE", - "decimals": 18, - "name": "Safe Token", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x5afe3855358e112b5647b952709e6165e1c1eeee.png", - "aggregators": [ - "Metamask", - "1inch", - "LiFi", - "Socket", - "Rubic", - "Sonarwatch", - "SushiSwap" - ], - "occurrences": 7 - }, - "0xac6df26a590f08dcc95d5a4705ae8abbc88509ef": { - "address": "0xac6df26a590f08dcc95d5a4705ae8abbc88509ef", - "symbol": "AENJ", - "decimals": 18, - "name": "Aave ENJ", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xac6df26a590f08dcc95d5a4705ae8abbc88509ef.png", - "aggregators": [ - "Metamask", - "1inch", - "LiFi", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 7 - }, - "0x39aa39c021dfbae8fac545936693ac917d5e7563": { - "address": "0x39aa39c021dfbae8fac545936693ac917d5e7563", - "symbol": "CUSDC", - "decimals": 8, - "name": "Compound USD Coin", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x39aa39c021dfbae8fac545936693ac917d5e7563.png", - "aggregators": [ - "Metamask", - "1inch", - "LiFi", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 7 - }, - "0x43dfc4159d86f3a37a5a4b3d4580b888ad7d4ddd": { - "address": "0x43dfc4159d86f3a37a5a4b3d4580b888ad7d4ddd", - "symbol": "DODO", - "decimals": 18, - "name": "DODO bird", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x43dfc4159d86f3a37a5a4b3d4580b888ad7d4ddd.png", - "aggregators": [ - "Metamask", - "1inch", - "LiFi", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 7 - }, - "0x89d24a6b4ccb1b6faa2625fe562bdd9a23260359": { - "address": "0x89d24a6b4ccb1b6faa2625fe562bdd9a23260359", - "symbol": "SAI", - "decimals": 18, - "name": "Sai Stablecoin v1.0", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x89d24a6b4ccb1b6faa2625fe562bdd9a23260359.png", - "aggregators": [ - "Metamask", - "1inch", - "LiFi", - "Socket", - "Rubic", - "Sonarwatch", - "Bancor" - ], - "occurrences": 7 - }, - "0xf8c3527cc04340b208c854e985240c02f7b7793f": { - "address": "0xf8c3527cc04340b208c854e985240c02f7b7793f", - "symbol": "FRONT", - "decimals": 18, - "name": "Frontier", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xf8c3527cc04340b208c854e985240c02f7b7793f.png", - "aggregators": [ - "CoinMarketCap", - "LiFi", - "Socket", - "Rubic", - "Rango", - "Sonarwatch", - "SushiSwap" - ], - "occurrences": 7 - }, - "0x8daebade922df735c38c80c7ebd708af50815faa": { - "address": "0x8daebade922df735c38c80c7ebd708af50815faa", - "symbol": "TBTC", - "decimals": 18, - "name": "tBTC", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x8daebade922df735c38c80c7ebd708af50815faa.png", - "aggregators": [ - "Metamask", - "LiFi", - "TrustWallet", - "Socket", - "Rubic", - "Rango", - "SushiSwap" - ], - "occurrences": 7 - }, - "0x249ca82617ec3dfb2589c4c17ab7ec9765350a18": { - "address": "0x249ca82617ec3dfb2589c4c17ab7ec9765350a18", - "symbol": "VERSE", - "decimals": 18, - "name": "Verse", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x249ca82617ec3dfb2589c4c17ab7ec9765350a18.png", - "aggregators": [ - "Metamask", - "1inch", - "Socket", - "Rubic", - "Rango", - "Sonarwatch", - "SushiSwap" - ], - "occurrences": 7 - }, - "0xdb25f211ab05b1c97d595516f45794528a807ad8": { - "address": "0xdb25f211ab05b1c97d595516f45794528a807ad8", - "symbol": "EURS", - "decimals": 2, - "name": "STASIS EURS Token", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xdb25f211ab05b1c97d595516f45794528a807ad8.png", - "aggregators": [ - "Metamask", - "1inch", - "LiFi", - "Socket", - "Rubic", - "Sonarwatch", - "Bancor" - ], - "occurrences": 7 - }, - "0xf4d861575ecc9493420a3f5a14f85b13f0b50eb3": { - "address": "0xf4d861575ecc9493420a3f5a14f85b13f0b50eb3", - "symbol": "FCL", - "decimals": 18, - "name": "Fractal Protocol", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xf4d861575ecc9493420a3f5a14f85b13f0b50eb3.png", - "aggregators": [ - "Metamask", - "TrustWallet", - "Socket", - "Rubic", - "Rango", - "Sonarwatch", - "SushiSwap" - ], - "occurrences": 7 - }, - "0x1985365e9f78359a9b6ad760e32412f4a445e862": { - "address": "0x1985365e9f78359a9b6ad760e32412f4a445e862", - "symbol": "REP", - "decimals": 18, - "name": "Reputation Old", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x1985365e9f78359a9b6ad760e32412f4a445e862.png", - "aggregators": [ - "Metamask", - "LiFi", - "TrustWallet", - "Socket", - "Rubic", - "Rango" - ], - "occurrences": 6 - }, - "0x71fc860f7d3a592a4a98740e39db31d25db65ae8": { - "address": "0x71fc860f7d3a592a4a98740e39db31d25db65ae8", - "symbol": "AUSDT", - "decimals": 6, - "name": "Aave USDT v1", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x71fc860f7d3a592a4a98740e39db31d25db65ae8.png", - "aggregators": [ - "CoinMarketCap", - "LiFi", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 6 - }, - "0x8ab7404063ec4dbcfd4598215992dc3f8ec853d7": { - "address": "0x8ab7404063ec4dbcfd4598215992dc3f8ec853d7", - "symbol": "AKRO", - "decimals": 18, - "name": "Akropolis", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x8ab7404063ec4dbcfd4598215992dc3f8ec853d7.png", - "aggregators": [ - "CoinMarketCap", - "Socket", - "Rubic", - "Rango", - "Sonarwatch", - "SushiSwap" - ], - "occurrences": 6 - }, - "0x5e74c9036fb86bd7ecdcb084a0673efc32ea31cb": { - "address": "0x5e74c9036fb86bd7ecdcb084a0673efc32ea31cb", - "symbol": "SETH", - "decimals": 18, - "name": "Synth sETH", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x5e74c9036fb86bd7ecdcb084a0673efc32ea31cb.png", - "aggregators": [ - "Metamask", - "LiFi", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 6 - }, - "0x4ddc2d193948926d02f9b1fe9e1daa0718270ed5": { - "address": "0x4ddc2d193948926d02f9b1fe9e1daa0718270ed5", - "symbol": "CETH", - "decimals": 8, - "name": "Compound Ether", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x4ddc2d193948926d02f9b1fe9e1daa0718270ed5.png", - "aggregators": [ - "Metamask", - "LiFi", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 6 - }, - "0x0cec1a9154ff802e7934fc916ed7ca50bde6844e": { - "address": "0x0cec1a9154ff802e7934fc916ed7ca50bde6844e", - "symbol": "POOL", - "decimals": 18, - "name": "PoolTogether", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x0cec1a9154ff802e7934fc916ed7ca50bde6844e.png", - "aggregators": [ - "CoinMarketCap", - "1inch", - "LiFi", - "TrustWallet", - "Socket", - "Rubic", - "Squid", - "Rango", - "Sonarwatch", - "SushiSwap", - "Bancor" - ], - "occurrences": 11 - }, - "0x5f98805a4e8be255a32880fdec7f6728c6568ba0": { - "address": "0x5f98805a4e8be255a32880fdec7f6728c6568ba0", - "symbol": "LUSD", - "decimals": 18, - "name": "Liquity USD", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x5f98805a4e8be255a32880fdec7f6728c6568ba0.png", - "aggregators": [ - "CoinMarketCap", - "1inch", - "LiFi", - "TrustWallet", - "Socket", - "Rubic", - "Squid", - "Rango", - "Sonarwatch", - "SushiSwap" - ], - "occurrences": 10 - }, - "0xc7283b66eb1eb5fb86327f08e1b5816b0720212b": { - "address": "0xc7283b66eb1eb5fb86327f08e1b5816b0720212b", - "symbol": "TRIBE", - "decimals": 18, - "name": "Tribe", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xc7283b66eb1eb5fb86327f08e1b5816b0720212b.png", - "aggregators": [ - "OpenSwap", - "1inch", - "LiFi", - "TrustWallet", - "Socket", - "Rubic", - "Rango", - "Sonarwatch", - "SushiSwap", - "Bancor" - ], - "occurrences": 10 - }, - "0x1337def16f9b486faed0293eb623dc8395dfe46a": { - "address": "0x1337def16f9b486faed0293eb623dc8395dfe46a", - "symbol": "ARMOR", - "decimals": 18, - "name": "ARMOR", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x1337def16f9b486faed0293eb623dc8395dfe46a.png", - "aggregators": [ - "CoinGecko", - "1inch", - "LiFi", - "TrustWallet", - "Socket", - "Rubic", - "Rango", - "Sonarwatch", - "SushiSwap", - "Bancor" - ], - "occurrences": 10 - }, - "0x626e8036deb333b408be468f951bdb42433cbf18": { - "address": "0x626e8036deb333b408be468f951bdb42433cbf18", - "symbol": "AIOZ", - "decimals": 18, - "name": "AIOZ Network", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x626e8036deb333b408be468f951bdb42433cbf18.png", - "aggregators": [ - "OpenSwap", - "1inch", - "LiFi", - "TrustWallet", - "Socket", - "Rubic", - "Squid", - "Rango", - "Sonarwatch" - ], - "occurrences": 9 - }, - "0xbe9895146f7af43049ca1c1ae358b0541ea49704": { - "address": "0xbe9895146f7af43049ca1c1ae358b0541ea49704", - "symbol": "CBETH", - "decimals": 18, - "name": "Coinbase Wrapped Staked ETH", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xbe9895146f7af43049ca1c1ae358b0541ea49704.png", - "aggregators": [ - "CoinMarketCap", - "1inch", - "LiFi", - "Socket", - "Rubic", - "Squid", - "Rango", - "Sonarwatch", - "SushiSwap" - ], - "occurrences": 9 - }, - "0xddb3422497e61e13543bea06989c0789117555c5": { - "address": "0xddb3422497e61e13543bea06989c0789117555c5", - "symbol": "COTI", - "decimals": 18, - "name": "COTI", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xddb3422497e61e13543bea06989c0789117555c5.png", - "aggregators": [ - "OpenSwap", - "1inch", - "LiFi", - "TrustWallet", - "Socket", - "Rubic", - "Squid", - "Rango", - "Sonarwatch" - ], - "occurrences": 9 - }, - "0xcf0c122c6b73ff809c693db761e7baebe62b6a2e": { - "address": "0xcf0c122c6b73ff809c693db761e7baebe62b6a2e", - "symbol": "FLOKI", - "decimals": 9, - "name": "FLOKI", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xcf0c122c6b73ff809c693db761e7baebe62b6a2e.png", - "aggregators": [ - "Metamask", - "1inch", - "TrustWallet", - "Socket", - "Rubic", - "Squid", - "Rango", - "Sonarwatch", - "SushiSwap" - ], - "occurrences": 9 - }, - "0xdd974d5c2e2928dea5f71b9825b8b646686bd200": { - "address": "0xdd974d5c2e2928dea5f71b9825b8b646686bd200", - "symbol": "KNC", - "decimals": 18, - "name": "Kyber Network Crystal", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xdd974d5c2e2928dea5f71b9825b8b646686bd200.png", - "aggregators": [ - "Metamask", - "1inch", - "LiFi", - "Socket", - "Rubic", - "Rango", - "Sonarwatch", - "SushiSwap", - "Bancor" - ], - "occurrences": 9 - }, - "0x320623b8e4ff03373931769a31fc52a4e78b5d70": { - "address": "0x320623b8e4ff03373931769a31fc52a4e78b5d70", - "symbol": "RSR", - "decimals": 18, - "name": "Reserve Rights", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x320623b8e4ff03373931769a31fc52a4e78b5d70.png", - "aggregators": [ - "Metamask", - "1inch", - "LiFi", - "Socket", - "Rubic", - "Squid", - "Rango", - "Sonarwatch", - "Bancor" - ], - "occurrences": 9 - }, - "0x25f8087ead173b73d6e8b84329989a8eea16cf73": { - "address": "0x25f8087ead173b73d6e8b84329989a8eea16cf73", - "symbol": "YGG", - "decimals": 18, - "name": "Yield Guild Games Token", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x25f8087ead173b73d6e8b84329989a8eea16cf73.png", - "aggregators": [ - "CoinMarketCap", - "1inch", - "LiFi", - "Socket", - "Rubic", - "Squid", - "Rango", - "Sonarwatch", - "SushiSwap" - ], - "occurrences": 9 - }, - "0x0000000000095413afc295d19edeb1ad7b71c952": { - "address": "0x0000000000095413afc295d19edeb1ad7b71c952", - "symbol": "LON", - "decimals": 18, - "name": "Tokenlon", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x0000000000095413afc295d19edeb1ad7b71c952.png", - "aggregators": [ - "CoinMarketCap", - "1inch", - "LiFi", - "TrustWallet", - "Socket", - "Rubic", - "Rango", - "Sonarwatch", - "SushiSwap" - ], - "occurrences": 9 - }, - "0xebd9d99a3982d547c5bb4db7e3b1f9f14b67eb83": { - "address": "0xebd9d99a3982d547c5bb4db7e3b1f9f14b67eb83", - "symbol": "ID", - "decimals": 18, - "name": "Everest", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xebd9d99a3982d547c5bb4db7e3b1f9f14b67eb83.png", - "aggregators": [ - "CoinMarketCap", - "1inch", - "TrustWallet", - "Socket", - "Rubic", - "Rango", - "Sonarwatch", - "SushiSwap", - "Bancor" - ], - "occurrences": 9 - }, - "0x66a0f676479cee1d7373f3dc2e2952778bff5bd6": { - "address": "0x66a0f676479cee1d7373f3dc2e2952778bff5bd6", - "symbol": "WISE", - "decimals": 18, - "name": "WISE Token", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x66a0f676479cee1d7373f3dc2e2952778bff5bd6.png", - "aggregators": [ - "Metamask", - "1inch", - "LiFi", - "TrustWallet", - "Socket", - "Rubic", - "Squid", - "Rango", - "Sonarwatch" - ], - "occurrences": 9 - }, - "0xeef9f339514298c6a857efcfc1a762af84438dee": { - "address": "0xeef9f339514298c6a857efcfc1a762af84438dee", - "symbol": "HEZ", - "decimals": 18, - "name": "Hermez Network Token", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xeef9f339514298c6a857efcfc1a762af84438dee.png", - "aggregators": [ - "CoinMarketCap", - "1inch", - "LiFi", - "TrustWallet", - "Socket", - "Rubic", - "Rango", - "Sonarwatch", - "SushiSwap" - ], - "occurrences": 9 - }, - "0x0c7d5ae016f806603cb1782bea29ac69471cab9c": { - "address": "0x0c7d5ae016f806603cb1782bea29ac69471cab9c", - "symbol": "BFC", - "decimals": 18, - "name": "Bifrost", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x0c7d5ae016f806603cb1782bea29ac69471cab9c.png", - "aggregators": [ - "CoinMarketCap", - "1inch", - "LiFi", - "TrustWallet", - "Socket", - "Rubic", - "Rango", - "Sonarwatch", - "SushiSwap" - ], - "occurrences": 9 - }, - "0x44709a920fccf795fbc57baa433cc3dd53c44dbe": { - "address": "0x44709a920fccf795fbc57baa433cc3dd53c44dbe", - "symbol": "RADAR", - "decimals": 18, - "name": "DappRadar", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x44709a920fccf795fbc57baa433cc3dd53c44dbe.png", - "aggregators": [ - "CoinMarketCap", - "1inch", - "LiFi", - "Socket", - "Rubic", - "Squid", - "Rango", - "Sonarwatch", - "SushiSwap" - ], - "occurrences": 9 - }, - "0x7659ce147d0e714454073a5dd7003544234b6aa0": { - "address": "0x7659ce147d0e714454073a5dd7003544234b6aa0", - "symbol": "XCAD", - "decimals": 18, - "name": "XCAD Token", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x7659ce147d0e714454073a5dd7003544234b6aa0.png", - "aggregators": [ - "Metamask", - "1inch", - "LiFi", - "TrustWallet", - "Socket", - "Rubic", - "Rango", - "Sonarwatch", - "SushiSwap" - ], - "occurrences": 9 - }, - "0x903bef1736cddf2a537176cf3c64579c3867a881": { - "address": "0x903bef1736cddf2a537176cf3c64579c3867a881", - "symbol": "ICHI", - "decimals": 9, - "name": "ichifarm", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x903bef1736cddf2a537176cf3c64579c3867a881.png", - "aggregators": [ - "CoinMarketCap", - "LiFi", - "Socket", - "Rubic", - "Squid", - "Rango", - "Sonarwatch", - "SushiSwap", - "Bancor" - ], - "occurrences": 9 - }, - "0x579cea1889991f68acc35ff5c3dd0621ff29b0c9": { - "address": "0x579cea1889991f68acc35ff5c3dd0621ff29b0c9", - "symbol": "IQ", - "decimals": 18, - "name": "Everipedia IQ", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x579cea1889991f68acc35ff5c3dd0621ff29b0c9.png", - "aggregators": [ - "CoinMarketCap", - "1inch", - "LiFi", - "Socket", - "Rubic", - "Squid", - "Rango", - "Sonarwatch", - "SushiSwap" - ], - "occurrences": 9 - }, - "0x419d0d8bdd9af5e606ae2232ed285aff190e711b": { - "address": "0x419d0d8bdd9af5e606ae2232ed285aff190e711b", - "symbol": "FUN", - "decimals": 8, - "name": "FunFair", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x419d0d8bdd9af5e606ae2232ed285aff190e711b.png", - "aggregators": [ - "Metamask", - "1inch", - "LiFi", - "TrustWallet", - "Socket", - "Rubic", - "Squid", - "Rango", - "Sonarwatch" - ], - "occurrences": 9 - }, - "0xf203ca1769ca8e9e8fe1da9d147db68b6c919817": { - "address": "0xf203ca1769ca8e9e8fe1da9d147db68b6c919817", - "symbol": "WNCG", - "decimals": 18, - "name": "Wrapped NCG", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xf203ca1769ca8e9e8fe1da9d147db68b6c919817.png", - "aggregators": [ - "CoinMarketCap", - "1inch", - "LiFi", - "Socket", - "Rubic", - "Squid", - "Rango", - "Sonarwatch", - "SushiSwap" - ], - "occurrences": 9 - }, - "0xcafe001067cdef266afb7eb5a286dcfd277f3de5": { - "address": "0xcafe001067cdef266afb7eb5a286dcfd277f3de5", - "symbol": "PSP", - "decimals": 18, - "name": "ParaSwap", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xcafe001067cdef266afb7eb5a286dcfd277f3de5.png", - "aggregators": [ - "CoinMarketCap", - "1inch", - "LiFi", - "Socket", - "Rubic", - "Rango", - "Sonarwatch", - "SushiSwap", - "Bancor" - ], - "occurrences": 9 - }, - "0xdefa4e8a7bcba345f687a2f1456f5edd9ce97202": { - "address": "0xdefa4e8a7bcba345f687a2f1456f5edd9ce97202", - "symbol": "KNC", - "decimals": 18, - "name": "Kyber Network Crystal v2", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xdefa4e8a7bcba345f687a2f1456f5edd9ce97202.png", - "aggregators": [ - "CoinMarketCap", - "1inch", - "LiFi", - "Socket", - "Rubic", - "Squid", - "Rango", - "Sonarwatch", - "Bancor" - ], - "occurrences": 9 - }, - "0x1796ae0b0fa4862485106a0de9b654efe301d0b2": { - "address": "0x1796ae0b0fa4862485106a0de9b654efe301d0b2", - "symbol": "PMON", - "decimals": 18, - "name": "Polychain Monsters", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x1796ae0b0fa4862485106a0de9b654efe301d0b2.png", - "aggregators": [ - "Metamask", - "1inch", - "LiFi", - "TrustWallet", - "Socket", - "Rubic", - "Rango", - "Sonarwatch", - "SushiSwap" - ], - "occurrences": 9 - }, - "0xe95a203b1a91a908f9b9ce46459d101078c2c3cb": { - "address": "0xe95a203b1a91a908f9b9ce46459d101078c2c3cb", - "symbol": "AETHC", - "decimals": 18, - "name": "ankrETH", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xe95a203b1a91a908f9b9ce46459d101078c2c3cb.png", - "aggregators": [ - "CoinMarketCap", - "1inch", - "LiFi", - "TrustWallet", - "Socket", - "Rubic", - "Rango", - "Sonarwatch", - "SushiSwap" - ], - "occurrences": 9 - }, - "0x21bfbda47a0b4b5b1248c767ee49f7caa9b23697": { - "address": "0x21bfbda47a0b4b5b1248c767ee49f7caa9b23697", - "symbol": "OVR", - "decimals": 18, - "name": "OVR", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x21bfbda47a0b4b5b1248c767ee49f7caa9b23697.png", - "aggregators": [ - "Metamask", - "1inch", - "LiFi", - "TrustWallet", - "Socket", - "Rubic", - "Squid", - "Rango", - "Sonarwatch" - ], - "occurrences": 9 - }, - "0x5f64ab1544d28732f0a24f4713c2c8ec0da089f0": { - "address": "0x5f64ab1544d28732f0a24f4713c2c8ec0da089f0", - "symbol": "DEXTF", - "decimals": 18, - "name": "DEXTF Token", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x5f64ab1544d28732f0a24f4713c2c8ec0da089f0.png", - "aggregators": [ - "CoinMarketCap", - "1inch", - "LiFi", - "TrustWallet", - "Socket", - "Rubic", - "Rango", - "Sonarwatch", - "SushiSwap" - ], - "occurrences": 9 - }, - "0xd23ac27148af6a2f339bd82d0e3cff380b5093de": { - "address": "0xd23ac27148af6a2f339bd82d0e3cff380b5093de", - "symbol": "SI", - "decimals": 18, - "name": "SIREN", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xd23ac27148af6a2f339bd82d0e3cff380b5093de.png", - "aggregators": [ - "CoinMarketCap", - "1inch", - "LiFi", - "TrustWallet", - "Socket", - "Rubic", - "Rango", - "Sonarwatch", - "SushiSwap" - ], - "occurrences": 9 - }, - "0x9ab7bb7fdc60f4357ecfef43986818a2a3569c62": { - "address": "0x9ab7bb7fdc60f4357ecfef43986818a2a3569c62", - "symbol": "GOG", - "decimals": 18, - "name": "Guild of Guardians", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x9ab7bb7fdc60f4357ecfef43986818a2a3569c62.png", - "aggregators": [ - "CoinMarketCap", - "1inch", - "LiFi", - "Socket", - "Rubic", - "Squid", - "Rango", - "Sonarwatch", - "SushiSwap" - ], - "occurrences": 9 - }, - "0x940a2db1b7008b6c776d4faaca729d6d4a4aa551": { - "address": "0x940a2db1b7008b6c776d4faaca729d6d4a4aa551", - "symbol": "DUSK", - "decimals": 18, - "name": "Dusk Network", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x940a2db1b7008b6c776d4faaca729d6d4a4aa551.png", - "aggregators": [ - "CoinMarketCap", - "1inch", - "LiFi", - "Socket", - "Rubic", - "Squid", - "Rango", - "Sonarwatch", - "Bancor" - ], - "occurrences": 9 - }, - "0xdf801468a808a32656d2ed2d2d80b72a129739f4": { - "address": "0xdf801468a808a32656d2ed2d2d80b72a129739f4", - "symbol": "CUBE", - "decimals": 8, - "name": "Somnium Space CUBEs", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xdf801468a808a32656d2ed2d2d80b72a129739f4.png", - "aggregators": [ - "OpenSwap", - "1inch", - "LiFi", - "Socket", - "Rubic", - "Squid", - "Rango", - "Sonarwatch" - ], - "occurrences": 8 - }, - "0x41e5560054824ea6b0732e656e3ad64e20e94e45": { - "address": "0x41e5560054824ea6b0732e656e3ad64e20e94e45", - "symbol": "CVC", - "decimals": 8, - "name": "Civic", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x41e5560054824ea6b0732e656e3ad64e20e94e45.png", - "aggregators": [ - "OpenSwap", - "1inch", - "LiFi", - "Socket", - "Rubic", - "Squid", - "Rango", - "Sonarwatch" - ], - "occurrences": 8 - }, - "0xec53bf9167f50cdeb3ae105f56099aaab9061f83": { - "address": "0xec53bf9167f50cdeb3ae105f56099aaab9061f83", - "symbol": "EIGEN", - "decimals": 18, - "name": "Eigenlayer", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xec53bf9167f50cdeb3ae105f56099aaab9061f83.png", - "aggregators": [ - "CoinMarketCap", - "1inch", - "LiFi", - "Socket", - "Rubic", - "Squid", - "Rango", - "Sonarwatch" - ], - "occurrences": 8 - }, - "0x056fd409e1d7a124bd7017459dfea2f387b6d5cd": { - "address": "0x056fd409e1d7a124bd7017459dfea2f387b6d5cd", - "symbol": "GUSD", - "decimals": 2, - "name": "Gemini Dollar", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x056fd409e1d7a124bd7017459dfea2f387b6d5cd.png", - "aggregators": [ - "Metamask", - "1inch", - "LiFi", - "Socket", - "Rubic", - "Rango", - "Sonarwatch", - "Bancor" - ], - "occurrences": 8 - }, - "0x71ab77b7dbb4fa7e017bc15090b2163221420282": { - "address": "0x71ab77b7dbb4fa7e017bc15090b2163221420282", - "symbol": "HIGH", - "decimals": 18, - "name": "Highstreet", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x71ab77b7dbb4fa7e017bc15090b2163221420282.png", - "aggregators": [ - "OpenSwap", - "1inch", - "LiFi", - "Socket", - "Rubic", - "Squid", - "Rango", - "Sonarwatch" - ], - "occurrences": 8 - }, - "0xf5581dfefd8fb0e4aec526be659cfab1f8c781da": { - "address": "0xf5581dfefd8fb0e4aec526be659cfab1f8c781da", - "symbol": "HOPR", - "decimals": 18, - "name": "HOPR Token", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xf5581dfefd8fb0e4aec526be659cfab1f8c781da.png", - "aggregators": [ - "CoinMarketCap", - "1inch", - "LiFi", - "Socket", - "Rubic", - "Rango", - "Sonarwatch", - "SushiSwap" - ], - "occurrences": 8 - }, - "0x949d48eca67b17269629c7194f4b727d4ef9e5d6": { - "address": "0x949d48eca67b17269629c7194f4b727d4ef9e5d6", - "symbol": "MC", - "decimals": 18, - "name": "Merit Circle", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x949d48eca67b17269629c7194f4b727d4ef9e5d6.png", - "aggregators": [ - "OpenSwap", - "1inch", - "LiFi", - "Socket", - "Rubic", - "Squid", - "Rango", - "Sonarwatch" - ], - "occurrences": 8 - }, - "0x09a3ecafa817268f77be1283176b946c4ff2e608": { - "address": "0x09a3ecafa817268f77be1283176b946c4ff2e608", - "symbol": "MIR", - "decimals": 18, - "name": "Wrapped MIR Token", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x09a3ecafa817268f77be1283176b946c4ff2e608.png", - "aggregators": [ - "Metamask", - "1inch", - "LiFi", - "TrustWallet", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 8 - }, - "0xb6ca7399b4f9ca56fc27cbff44f4d2e4eef1fc81": { - "address": "0xb6ca7399b4f9ca56fc27cbff44f4d2e4eef1fc81", - "symbol": "MUSE", - "decimals": 18, - "name": "Muse DAO", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xb6ca7399b4f9ca56fc27cbff44f4d2e4eef1fc81.png", - "aggregators": [ - "CoinMarketCap", - "1inch", - "LiFi", - "Socket", - "Rubic", - "Squid", - "Rango", - "Sonarwatch" - ], - "occurrences": 8 - }, - "0x6982508145454ce325ddbe47a25d4ec3d2311933": { - "address": "0x6982508145454ce325ddbe47a25d4ec3d2311933", - "symbol": "PEPE", - "decimals": 18, - "name": "Pepe", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x6982508145454ce325ddbe47a25d4ec3d2311933.png", - "aggregators": [ - "CoinMarketCap", - "1inch", - "Socket", - "Rubic", - "Squid", - "Rango", - "Sonarwatch", - "SushiSwap" - ], - "occurrences": 8 - }, - "0x56072c95faa701256059aa122697b133aded9279": { - "address": "0x56072c95faa701256059aa122697b133aded9279", - "symbol": "SKY", - "decimals": 18, - "name": "Sky Ecosystem", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x56072c95faa701256059aa122697b133aded9279.png", - "aggregators": [ - "Metamask", - "1inch", - "LiFi", - "Socket", - "Rubic", - "Squid", - "Rango", - "Sonarwatch" - ], - "occurrences": 8 - }, - "0x23b608675a2b2fb1890d3abbd85c5775c51691d5": { - "address": "0x23b608675a2b2fb1890d3abbd85c5775c51691d5", - "symbol": "SOCKS", - "decimals": 18, - "name": "Unisocks Edition 0", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x23b608675a2b2fb1890d3abbd85c5775c51691d5.png", - "aggregators": [ - "CoinMarketCap", - "1inch", - "LiFi", - "TrustWallet", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 8 - }, - "0x88df592f8eb5d7bd38bfef7deb0fbc02cf3778a0": { - "address": "0x88df592f8eb5d7bd38bfef7deb0fbc02cf3778a0", - "symbol": "TRB", - "decimals": 18, - "name": "Tellor Tributes", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x88df592f8eb5d7bd38bfef7deb0fbc02cf3778a0.png", - "aggregators": [ - "Metamask", - "1inch", - "LiFi", - "Socket", - "Rubic", - "Squid", - "Rango", - "Sonarwatch" - ], - "occurrences": 8 - }, - "0xdc035d45d973e3ec169d2276ddab16f1e407384f": { - "address": "0xdc035d45d973e3ec169d2276ddab16f1e407384f", - "symbol": "USDS", - "decimals": 18, - "name": "Sky Dollar", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xdc035d45d973e3ec169d2276ddab16f1e407384f.png", - "aggregators": [ - "Metamask", - "1inch", - "LiFi", - "Socket", - "Rubic", - "Squid", - "Rango", - "Sonarwatch" - ], - "occurrences": 8 - }, - "0x89ab32156e46f46d02ade3fecbe5fc4243b9aaed": { - "address": "0x89ab32156e46f46d02ade3fecbe5fc4243b9aaed", - "symbol": "PNT", - "decimals": 18, - "name": "pNetwork", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x89ab32156e46f46d02ade3fecbe5fc4243b9aaed.png", - "aggregators": [ - "CoinMarketCap", - "1inch", - "LiFi", - "TrustWallet", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 8 - }, - "0xf4cd3d3fda8d7fd6c5a500203e38640a70bf9577": { - "address": "0xf4cd3d3fda8d7fd6c5a500203e38640a70bf9577", - "symbol": "YF-DAI", - "decimals": 18, - "name": "YfDAI.finance", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xf4cd3d3fda8d7fd6c5a500203e38640a70bf9577.png", - "aggregators": [ - "CoinMarketCap", - "1inch", - "LiFi", - "TrustWallet", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 8 - }, - "0x33d0568941c0c64ff7e0fb4fba0b11bd37deed9f": { - "address": "0x33d0568941c0c64ff7e0fb4fba0b11bd37deed9f", - "symbol": "RAMP", - "decimals": 18, - "name": "RAMP DEFI", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x33d0568941c0c64ff7e0fb4fba0b11bd37deed9f.png", - "aggregators": [ - "CoinMarketCap", - "1inch", - "LiFi", - "TrustWallet", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 8 - }, - "0x95a4492f028aa1fd432ea71146b433e7b4446611": { - "address": "0x95a4492f028aa1fd432ea71146b433e7b4446611", - "symbol": "APY", - "decimals": 18, - "name": "APY.Finance", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x95a4492f028aa1fd432ea71146b433e7b4446611.png", - "aggregators": [ - "CoinMarketCap", - "1inch", - "LiFi", - "TrustWallet", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 8 - }, - "0xa5f2211b9b8170f694421f2046281775e8468044": { - "address": "0xa5f2211b9b8170f694421f2046281775e8468044", - "symbol": "THOR", - "decimals": 18, - "name": "THORSwap Token", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xa5f2211b9b8170f694421f2046281775e8468044.png", - "aggregators": [ - "CoinMarketCap", - "1inch", - "Socket", - "Rubic", - "Squid", - "Rango", - "Sonarwatch", - "SushiSwap" - ], - "occurrences": 8 - }, - "0xf406f7a9046793267bc276908778b29563323996": { - "address": "0xf406f7a9046793267bc276908778b29563323996", - "symbol": "VISION", - "decimals": 18, - "name": "Vision Token", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xf406f7a9046793267bc276908778b29563323996.png", - "aggregators": [ - "CoinMarketCap", - "1inch", - "LiFi", - "Socket", - "Rubic", - "Rango", - "Sonarwatch", - "Bancor" - ], - "occurrences": 8 - }, - "0xaf9f549774ecedbd0966c52f250acc548d3f36e5": { - "address": "0xaf9f549774ecedbd0966c52f250acc548d3f36e5", - "symbol": "RFUEL", - "decimals": 18, - "name": "RFUEL", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xaf9f549774ecedbd0966c52f250acc548d3f36e5.png", - "aggregators": [ - "Metamask", - "1inch", - "LiFi", - "TrustWallet", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 8 - }, - "0x3449fc1cd036255ba1eb19d65ff4ba2b8903a69a": { - "address": "0x3449fc1cd036255ba1eb19d65ff4ba2b8903a69a", - "symbol": "BAC", - "decimals": 18, - "name": "Basis Cash", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x3449fc1cd036255ba1eb19d65ff4ba2b8903a69a.png", - "aggregators": [ - "CoinMarketCap", - "1inch", - "LiFi", - "Socket", - "Rubic", - "Rango", - "Sonarwatch", - "SushiSwap" - ], - "occurrences": 8 - }, - "0x6e0dade58d2d89ebbe7afc384e3e4f15b70b14d8": { - "address": "0x6e0dade58d2d89ebbe7afc384e3e4f15b70b14d8", - "symbol": "QRX", - "decimals": 18, - "name": "QuiverX", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x6e0dade58d2d89ebbe7afc384e3e4f15b70b14d8.png", - "aggregators": [ - "Metamask", - "1inch", - "LiFi", - "TrustWallet", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 8 - }, - "0x6fc13eace26590b80cccab1ba5d51890577d83b2": { - "address": "0x6fc13eace26590b80cccab1ba5d51890577d83b2", - "symbol": "UMB", - "decimals": 18, - "name": "Umbrella Network", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x6fc13eace26590b80cccab1ba5d51890577d83b2.png", - "aggregators": [ - "CoinMarketCap", - "1inch", - "TrustWallet", - "Socket", - "Rubic", - "Rango", - "Sonarwatch", - "SushiSwap" - ], - "occurrences": 8 - }, - "0x7ca4408137eb639570f8e647d9bd7b7e8717514a": { - "address": "0x7ca4408137eb639570f8e647d9bd7b7e8717514a", - "symbol": "ALPA", - "decimals": 18, - "name": "Alpaca", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x7ca4408137eb639570f8e647d9bd7b7e8717514a.png", - "aggregators": [ - "CoinMarketCap", - "1inch", - "LiFi", - "Socket", - "Rubic", - "Rango", - "Sonarwatch", - "SushiSwap" - ], - "occurrences": 8 - }, - "0x163f8c2467924be0ae7b5347228cabf260318753": { - "address": "0x163f8c2467924be0ae7b5347228cabf260318753", - "symbol": "WLD", - "decimals": 18, - "name": "Worldcoin", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x163f8c2467924be0ae7b5347228cabf260318753.png", - "aggregators": [ - "CoinMarketCap", - "1inch", - "LiFi", - "Socket", - "Rubic", - "Squid", - "Rango", - "Sonarwatch" - ], - "occurrences": 8 - }, - "0x06f3c323f0238c72bf35011071f2b5b7f43a054c": { - "address": "0x06f3c323f0238c72bf35011071f2b5b7f43a054c", - "symbol": "MASQ", - "decimals": 18, - "name": "MASQ", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x06f3c323f0238c72bf35011071f2b5b7f43a054c.png", - "aggregators": [ - "CoinMarketCap", - "LiFi", - "Socket", - "Rubic", - "Squid", - "Rango", - "Sonarwatch", - "SushiSwap" - ], - "occurrences": 8 - }, - "0x87d73e916d7057945c9bcd8cdd94e42a6f47f776": { - "address": "0x87d73e916d7057945c9bcd8cdd94e42a6f47f776", - "symbol": "NFTX", - "decimals": 18, - "name": "NFTX", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x87d73e916d7057945c9bcd8cdd94e42a6f47f776.png", - "aggregators": [ - "CoinMarketCap", - "1inch", - "LiFi", - "Socket", - "Rubic", - "Rango", - "Sonarwatch", - "SushiSwap" - ], - "occurrences": 8 - }, - "0xc5102fe9359fd9a28f877a67e36b0f050d81a3cc": { - "address": "0xc5102fe9359fd9a28f877a67e36b0f050d81a3cc", - "symbol": "HOP", - "decimals": 18, - "name": "Hop", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xc5102fe9359fd9a28f877a67e36b0f050d81a3cc.png", - "aggregators": [ - "CoinMarketCap", - "LiFi", - "Socket", - "Rubic", - "Squid", - "Rango", - "Sonarwatch", - "SushiSwap" - ], - "occurrences": 8 - }, - "0xffffffff2ba8f66d4e51811c5190992176930278": { - "address": "0xffffffff2ba8f66d4e51811c5190992176930278", - "symbol": "COMBO", - "decimals": 18, - "name": "Furucombo", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xffffffff2ba8f66d4e51811c5190992176930278.png", - "aggregators": [ - "CoinMarketCap", - "1inch", - "LiFi", - "Socket", - "Rubic", - "Rango", - "Sonarwatch", - "SushiSwap" - ], - "occurrences": 8 - }, - "0xd5f7838f5c461feff7fe49ea5ebaf7728bb0adfa": { - "address": "0xd5f7838f5c461feff7fe49ea5ebaf7728bb0adfa", - "symbol": "METH", - "decimals": 18, - "name": "Mantle Staked Ether", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xd5f7838f5c461feff7fe49ea5ebaf7728bb0adfa.png", - "aggregators": [ - "Metamask", - "1inch", - "LiFi", - "Socket", - "Rubic", - "Squid", - "Rango", - "Sonarwatch" - ], - "occurrences": 8 - }, - "0xff56cc6b1e6ded347aa0b7676c85ab0b3d08b0fa": { - "address": "0xff56cc6b1e6ded347aa0b7676c85ab0b3d08b0fa", - "symbol": "ORBS", - "decimals": 18, - "name": "Orbs", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xff56cc6b1e6ded347aa0b7676c85ab0b3d08b0fa.png", - "aggregators": [ - "Metamask", - "1inch", - "LiFi", - "Socket", - "Rubic", - "Squid", - "Rango", - "Sonarwatch" - ], - "occurrences": 8 - }, - "0x9469d013805bffb7d3debe5e7839237e535ec483": { - "address": "0x9469d013805bffb7d3debe5e7839237e535ec483", - "symbol": "RING", - "decimals": 18, - "name": "Darwinia Network Native Token", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x9469d013805bffb7d3debe5e7839237e535ec483.png", - "aggregators": [ - "Metamask", - "1inch", - "LiFi", - "TrustWallet", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 8 - }, - "0xe0ad1806fd3e7edf6ff52fdb822432e847411033": { - "address": "0xe0ad1806fd3e7edf6ff52fdb822432e847411033", - "symbol": "ONX", - "decimals": 18, - "name": "OnX.finance", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xe0ad1806fd3e7edf6ff52fdb822432e847411033.png", - "aggregators": [ - "CoinMarketCap", - "1inch", - "LiFi", - "Socket", - "Rubic", - "Rango", - "Sonarwatch", - "SushiSwap" - ], - "occurrences": 8 - }, - "0x73968b9a57c6e53d41345fd57a6e6ae27d6cdb2f": { - "address": "0x73968b9a57c6e53d41345fd57a6e6ae27d6cdb2f", - "symbol": "SDT", - "decimals": 18, - "name": "Stake DAO", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x73968b9a57c6e53d41345fd57a6e6ae27d6cdb2f.png", - "aggregators": [ - "CoinMarketCap", - "1inch", - "LiFi", - "Socket", - "Rubic", - "Rango", - "Sonarwatch", - "SushiSwap" - ], - "occurrences": 8 - }, - "0x08c32b0726c5684024ea6e141c50ade9690bbdcc": { - "address": "0x08c32b0726c5684024ea6e141c50ade9690bbdcc", - "symbol": "STOS", - "decimals": 18, - "name": "Stratos Token", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x08c32b0726c5684024ea6e141c50ade9690bbdcc.png", - "aggregators": [ - "Metamask", - "1inch", - "LiFi", - "Socket", - "Rubic", - "Squid", - "Rango", - "Sonarwatch" - ], - "occurrences": 8 - }, - "0xde4ee8057785a7e8e800db58f9784845a5c2cbd6": { - "address": "0xde4ee8057785a7e8e800db58f9784845a5c2cbd6", - "symbol": "DEXE", - "decimals": 18, - "name": "Dexe", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xde4ee8057785a7e8e800db58f9784845a5c2cbd6.png", - "aggregators": [ - "CoinMarketCap", - "1inch", - "Socket", - "Rubic", - "Squid", - "Rango", - "Sonarwatch", - "Bancor" - ], - "occurrences": 8 - }, - "0x3affcca64c2a6f4e3b6bd9c64cd2c969efd1ecbe": { - "address": "0x3affcca64c2a6f4e3b6bd9c64cd2c969efd1ecbe", - "symbol": "DSLA", - "decimals": 18, - "name": "DSLA", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x3affcca64c2a6f4e3b6bd9c64cd2c969efd1ecbe.png", - "aggregators": [ - "CoinMarketCap", - "1inch", - "TrustWallet", - "Socket", - "Rubic", - "Rango", - "Sonarwatch", - "Bancor" - ], - "occurrences": 8 - }, - "0x64aa3364f17a4d01c6f1751fd97c2bd3d7e7f1d5": { - "address": "0x64aa3364f17a4d01c6f1751fd97c2bd3d7e7f1d5", - "symbol": "OHM", - "decimals": 9, - "name": "Olympus", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x64aa3364f17a4d01c6f1751fd97c2bd3d7e7f1d5.png", - "aggregators": [ - "Metamask", - "1inch", - "LiFi", - "Socket", - "Rubic", - "Rango", - "Sonarwatch", - "SushiSwap" - ], - "occurrences": 8 - }, - "0x0aacfbec6a24756c20d41914f2caba817c0d8521": { - "address": "0x0aacfbec6a24756c20d41914f2caba817c0d8521", - "symbol": "YAM", - "decimals": 18, - "name": "YAM", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x0aacfbec6a24756c20d41914f2caba817c0d8521.png", - "aggregators": [ - "CoinMarketCap", - "1inch", - "LiFi", - "Socket", - "Rubic", - "Rango", - "Sonarwatch", - "SushiSwap" - ], - "occurrences": 8 - }, - "0xf16e81dce15b08f326220742020379b855b87df9": { - "address": "0xf16e81dce15b08f326220742020379b855b87df9", - "symbol": "ICE", - "decimals": 18, - "name": "IceToken", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xf16e81dce15b08f326220742020379b855b87df9.png", - "aggregators": [ - "CoinMarketCap", - "1inch", - "LiFi", - "Socket", - "Rubic", - "Squid", - "Sonarwatch", - "SushiSwap" - ], - "occurrences": 8 - }, - "0x64bc2ca1be492be7185faa2c8835d9b824c8a194": { - "address": "0x64bc2ca1be492be7185faa2c8835d9b824c8a194", - "symbol": "BIGTIME", - "decimals": 18, - "name": "Big Time", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x64bc2ca1be492be7185faa2c8835d9b824c8a194.png", - "aggregators": [ - "CoinMarketCap", - "LiFi", - "Socket", - "Rubic", - "Squid", - "Rango", - "Sonarwatch" - ], - "occurrences": 7 - }, - "0x92d6c1e31e14520e676a687f0a93788b716beff5": { - "address": "0x92d6c1e31e14520e676a687f0a93788b716beff5", - "symbol": "DYDX", - "decimals": 18, - "name": "dYdX", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x92d6c1e31e14520e676a687f0a93788b716beff5.png", - "aggregators": [ - "Metamask", - "LiFi", - "Rubic", - "Squid", - "Sonarwatch", - "SushiSwap", - "Bancor" - ], - "occurrences": 7 - }, - "0x6fb3e0a217407efff7ca062d46c26e5d60a14d69": { - "address": "0x6fb3e0a217407efff7ca062d46c26e5d60a14d69", - "symbol": "IOTX", - "decimals": 18, - "name": "IoTeX", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x6fb3e0a217407efff7ca062d46c26e5d60a14d69.png", - "aggregators": [ - "Metamask", - "1inch", - "LiFi", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 7 - }, - "0x7420b4b9a0110cdc71fb720908340c03f9bc03ec": { - "address": "0x7420b4b9a0110cdc71fb720908340c03f9bc03ec", - "symbol": "JASMY", - "decimals": 18, - "name": "JasmyCoin", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x7420b4b9a0110cdc71fb720908340c03f9bc03ec.png", - "aggregators": [ - "Metamask", - "1inch", - "LiFi", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 7 - }, - "0x4cc19356f2d37338b9802aa8e8fc58b0373296e7": { - "address": "0x4cc19356f2d37338b9802aa8e8fc58b0373296e7", - "symbol": "KEY", - "decimals": 18, - "name": "Selfkey", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x4cc19356f2d37338b9802aa8e8fc58b0373296e7.png", - "aggregators": [ - "Metamask", - "LiFi", - "Socket", - "Rubic", - "Rango", - "Sonarwatch", - "Bancor" - ], - "occurrences": 7 - }, - "0x08d967bb0134f2d07f7cfb6e246680c53927dd30": { - "address": "0x08d967bb0134f2d07f7cfb6e246680c53927dd30", - "symbol": "MATH", - "decimals": 18, - "name": "MATH Token", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x08d967bb0134f2d07f7cfb6e246680c53927dd30.png", - "aggregators": [ - "Metamask", - "1inch", - "LiFi", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 7 - }, - "0x9e46a38f5daabe8683e10793b06749eef7d733d1": { - "address": "0x9e46a38f5daabe8683e10793b06749eef7d733d1", - "symbol": "NCT", - "decimals": 18, - "name": "PolySwarm Nectar", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x9e46a38f5daabe8683e10793b06749eef7d733d1.png", - "aggregators": [ - "Metamask", - "LiFi", - "Socket", - "Rubic", - "Rango", - "Sonarwatch", - "Bancor" - ], - "occurrences": 7 - }, - "0x4575f41308ec1483f3d399aa9a2826d74da13deb": { - "address": "0x4575f41308ec1483f3d399aa9a2826d74da13deb", - "symbol": "OXT", - "decimals": 18, - "name": "Orchid", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x4575f41308ec1483f3d399aa9a2826d74da13deb.png", - "aggregators": [ - "Metamask", - "LiFi", - "TrustWallet", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 7 - }, - "0x362bc847a3a9637d3af6624eec853618a43ed7d2": { - "address": "0x362bc847a3a9637d3af6624eec853618a43ed7d2", - "symbol": "PRQ", - "decimals": 18, - "name": "PARSIQ", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x362bc847a3a9637d3af6624eec853618a43ed7d2.png", - "aggregators": [ - "Metamask", - "LiFi", - "TrustWallet", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 7 - }, - "0x31c8eacbffdd875c74b94b077895bd78cf1e64a3": { - "address": "0x31c8eacbffdd875c74b94b077895bd78cf1e64a3", - "symbol": "RAD", - "decimals": 18, - "name": "Radworks", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x31c8eacbffdd875c74b94b077895bd78cf1e64a3.png", - "aggregators": [ - "OpenSwap", - "1inch", - "LiFi", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 7 - }, - "0xca14007eff0db1f8135f4c25b34de49ab0d42766": { - "address": "0xca14007eff0db1f8135f4c25b34de49ab0d42766", - "symbol": "STRK", - "decimals": 18, - "name": "StarkNet Token", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xca14007eff0db1f8135f4c25b34de49ab0d42766.png", - "aggregators": [ - "CoinMarketCap", - "1inch", - "Socket", - "Rubic", - "Rango", - "Sonarwatch", - "SushiSwap" - ], - "occurrences": 7 - }, - "0xf293d23bf2cdc05411ca0eddd588eb1977e8dcd4": { - "address": "0xf293d23bf2cdc05411ca0eddd588eb1977e8dcd4", - "symbol": "SYLO", - "decimals": 18, - "name": "Sylo", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xf293d23bf2cdc05411ca0eddd588eb1977e8dcd4.png", - "aggregators": [ - "Metamask", - "1inch", - "Socket", - "Rubic", - "Squid", - "Rango", - "Sonarwatch" - ], - "occurrences": 7 - }, - "0x030ba81f1c18d280636f32af80b9aad02cf0854e": { - "address": "0x030ba81f1c18d280636f32af80b9aad02cf0854e", - "symbol": "AWETH", - "decimals": 18, - "name": "Aave WETH", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x030ba81f1c18d280636f32af80b9aad02cf0854e.png", - "aggregators": [ - "Metamask", - "1inch", - "LiFi", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 7 - }, - "0x5165d24277cd063f5ac44efd447b27025e888f37": { - "address": "0x5165d24277cd063f5ac44efd447b27025e888f37", - "symbol": "AYFI", - "decimals": 18, - "name": "Aave YFI", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x5165d24277cd063f5ac44efd447b27025e888f37.png", - "aggregators": [ - "Metamask", - "1inch", - "LiFi", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 7 - }, - "0xdf7ff54aacacbff42dfe29dd6144a69b629f8c9e": { - "address": "0xdf7ff54aacacbff42dfe29dd6144a69b629f8c9e", - "symbol": "AZRX", - "decimals": 18, - "name": "Aave ZRX", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xdf7ff54aacacbff42dfe29dd6144a69b629f8c9e.png", - "aggregators": [ - "Metamask", - "1inch", - "LiFi", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 7 - }, - "0xb9d7cb55f463405cdfbe4e90a6d2df01c2b92bf1": { - "address": "0xb9d7cb55f463405cdfbe4e90a6d2df01c2b92bf1", - "symbol": "AUNI", - "decimals": 18, - "name": "Aave UNI", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xb9d7cb55f463405cdfbe4e90a6d2df01c2b92bf1.png", - "aggregators": [ - "Metamask", - "1inch", - "LiFi", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 7 - }, - "0xffc97d72e13e01096502cb8eb52dee56f74dad7b": { - "address": "0xffc97d72e13e01096502cb8eb52dee56f74dad7b", - "symbol": "AAAVE", - "decimals": 18, - "name": "Aave AAVE", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xffc97d72e13e01096502cb8eb52dee56f74dad7b.png", - "aggregators": [ - "Metamask", - "1inch", - "LiFi", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 7 - }, - "0x05ec93c0365baaeabf7aeffb0972ea7ecdd39cf1": { - "address": "0x05ec93c0365baaeabf7aeffb0972ea7ecdd39cf1", - "symbol": "ABAT", - "decimals": 18, - "name": "Aave BAT", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x05ec93c0365baaeabf7aeffb0972ea7ecdd39cf1.png", - "aggregators": [ - "Metamask", - "1inch", - "LiFi", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 7 - }, - "0xa361718326c15715591c299427c62086f69923d9": { - "address": "0xa361718326c15715591c299427c62086f69923d9", - "symbol": "ABUSD", - "decimals": 18, - "name": "Aave BUSD", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xa361718326c15715591c299427c62086f69923d9.png", - "aggregators": [ - "Metamask", - "1inch", - "LiFi", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 7 - }, - "0x028171bca77440897b824ca71d1c56cac55b68a3": { - "address": "0x028171bca77440897b824ca71d1c56cac55b68a3", - "symbol": "ADAI", - "decimals": 18, - "name": "Aave DAI", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x028171bca77440897b824ca71d1c56cac55b68a3.png", - "aggregators": [ - "Metamask", - "1inch", - "LiFi", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 7 - }, - "0x39c6b3e42d6a679d7d776778fe880bc9487c2eda": { - "address": "0x39c6b3e42d6a679d7d776778fe880bc9487c2eda", - "symbol": "AKNC", - "decimals": 18, - "name": "Aave KNC", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x39c6b3e42d6a679d7d776778fe880bc9487c2eda.png", - "aggregators": [ - "Metamask", - "1inch", - "LiFi", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 7 - }, - "0xa685a61171bb30d4072b338c80cb7b2c865c873e": { - "address": "0xa685a61171bb30d4072b338c80cb7b2c865c873e", - "symbol": "AMANA", - "decimals": 18, - "name": "Aave MANA", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xa685a61171bb30d4072b338c80cb7b2c865c873e.png", - "aggregators": [ - "Metamask", - "1inch", - "LiFi", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 7 - }, - "0xc713e5e149d5d0715dcd1c156a020976e7e56b88": { - "address": "0xc713e5e149d5d0715dcd1c156a020976e7e56b88", - "symbol": "AMKR", - "decimals": 18, - "name": "Aave MKR", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xc713e5e149d5d0715dcd1c156a020976e7e56b88.png", - "aggregators": [ - "Metamask", - "1inch", - "LiFi", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 7 - }, - "0xcc12abe4ff81c9378d670de1b57f8e0dd228d77a": { - "address": "0xcc12abe4ff81c9378d670de1b57f8e0dd228d77a", - "symbol": "AREN", - "decimals": 18, - "name": "Aave REN", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xcc12abe4ff81c9378d670de1b57f8e0dd228d77a.png", - "aggregators": [ - "Metamask", - "1inch", - "LiFi", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 7 - }, - "0x35f6b052c598d933d69a4eec4d04c73a191fe6c2": { - "address": "0x35f6b052c598d933d69a4eec4d04c73a191fe6c2", - "symbol": "ASNX", - "decimals": 18, - "name": "Aave SNX", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x35f6b052c598d933d69a4eec4d04c73a191fe6c2.png", - "aggregators": [ - "Metamask", - "1inch", - "LiFi", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 7 - }, - "0x6c5024cd4f8a59110119c56f8933403a539555eb": { - "address": "0x6c5024cd4f8a59110119c56f8933403a539555eb", - "symbol": "ASUSD", - "decimals": 18, - "name": "Aave SUSD", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x6c5024cd4f8a59110119c56f8933403a539555eb.png", - "aggregators": [ - "Metamask", - "1inch", - "LiFi", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 7 - }, - "0x101cc05f4a51c0319f570d5e146a8c625198e636": { - "address": "0x101cc05f4a51c0319f570d5e146a8c625198e636", - "symbol": "ATUSD", - "decimals": 18, - "name": "Aave TUSD", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x101cc05f4a51c0319f570d5e146a8c625198e636.png", - "aggregators": [ - "Metamask", - "1inch", - "LiFi", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 7 - }, - "0x0e29e5abbb5fd88e28b2d355774e73bd47de3bcd": { - "address": "0x0e29e5abbb5fd88e28b2d355774e73bd47de3bcd", - "symbol": "HAKKA", - "decimals": 18, - "name": "Hakka Finance", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x0e29e5abbb5fd88e28b2d355774e73bd47de3bcd.png", - "aggregators": [ - "CoinMarketCap", - "1inch", - "LiFi", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 7 - }, - "0xc12d099be31567add4e4e4d0d45691c3f58f5663": { - "address": "0xc12d099be31567add4e4e4d0d45691c3f58f5663", - "symbol": "AUC", - "decimals": 18, - "name": "Auctus", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xc12d099be31567add4e4e4d0d45691c3f58f5663.png", - "aggregators": [ - "Metamask", - "LiFi", - "Socket", - "Rubic", - "Rango", - "Sonarwatch", - "Bancor" - ], - "occurrences": 7 - }, - "0x5d3a536e4d6dbd6114cc1ead35777bab948e3643": { - "address": "0x5d3a536e4d6dbd6114cc1ead35777bab948e3643", - "symbol": "CDAI", - "decimals": 8, - "name": "Compound Dai", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x5d3a536e4d6dbd6114cc1ead35777bab948e3643.png", - "aggregators": [ - "Metamask", - "1inch", - "LiFi", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 7 - }, - "0x20945ca1df56d237fd40036d47e866c7dccd2114": { - "address": "0x20945ca1df56d237fd40036d47e866c7dccd2114", - "symbol": "NSURE", - "decimals": 18, - "name": "Nsure Network", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x20945ca1df56d237fd40036d47e866c7dccd2114.png", - "aggregators": [ - "CoinMarketCap", - "1inch", - "LiFi", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 7 - }, - "0x28d38df637db75533bd3f71426f3410a82041544": { - "address": "0x28d38df637db75533bd3f71426f3410a82041544", - "symbol": "PROMPT", - "decimals": 18, - "name": "Wayfinder", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x28d38df637db75533bd3f71426f3410a82041544.png", - "aggregators": [ - "CoinMarketCap", - "1inch", - "LiFi", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 7 - }, - "0xeca82185adce47f39c684352b0439f030f860318": { - "address": "0xeca82185adce47f39c684352b0439f030f860318", - "symbol": "PERL", - "decimals": 18, - "name": "Perlin", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xeca82185adce47f39c684352b0439f030f860318.png", - "aggregators": [ - "Metamask", - "1inch", - "LiFi", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 7 - }, - "0xbdf43ecadc5cef51b7d1772f722e40596bc1788b": { - "address": "0xbdf43ecadc5cef51b7d1772f722e40596bc1788b", - "symbol": "SEI", - "decimals": 18, - "name": "LayerZero Bridged Sei", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xbdf43ecadc5cef51b7d1772f722e40596bc1788b.png", - "aggregators": [ - "CoinGecko", - "1inch", - "LiFi", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 7 - }, - "0x61dbbbb552dc893ab3aad09f289f811e67cef285": { - "address": "0x61dbbbb552dc893ab3aad09f289f811e67cef285", - "symbol": "SKATE", - "decimals": 18, - "name": "Skate", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x61dbbbb552dc893ab3aad09f289f811e67cef285.png", - "aggregators": [ - "CoinMarketCap", - "1inch", - "LiFi", - "Socket", - "Rubic", - "Squid", - "Rango" - ], - "occurrences": 7 - }, - "0xdf2c7238198ad8b389666574f2d8bc411a4b7428": { - "address": "0xdf2c7238198ad8b389666574f2d8bc411a4b7428", - "symbol": "MFT", - "decimals": 18, - "name": "Mainframe Token", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xdf2c7238198ad8b389666574f2d8bc411a4b7428.png", - "aggregators": [ - "CoinMarketCap", - "LiFi", - "Socket", - "Rubic", - "Rango", - "Sonarwatch", - "Bancor" - ], - "occurrences": 7 - }, - "0x7a58c0be72be218b41c608b7fe7c5bb630736c71": { - "address": "0x7a58c0be72be218b41c608b7fe7c5bb630736c71", - "symbol": "PEOPLE", - "decimals": 18, - "name": "ConstitutionDAO", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x7a58c0be72be218b41c608b7fe7c5bb630736c71.png", - "aggregators": [ - "Metamask", - "LiFi", - "Socket", - "Rubic", - "Squid", - "Rango", - "Sonarwatch" - ], - "occurrences": 7 - }, - "0x4274cd7277c7bb0806bd5fe84b9adae466a8da0a": { - "address": "0x4274cd7277c7bb0806bd5fe84b9adae466a8da0a", - "symbol": "YUSD", - "decimals": 18, - "name": "Aegis YUSD", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x4274cd7277c7bb0806bd5fe84b9adae466a8da0a.png", - "aggregators": [ - "CoinMarketCap", - "1inch", - "LiFi", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 7 - }, - "0x075f23b9cdfce2cc0ca466f4ee6cb4bd29d83bef": { - "address": "0x075f23b9cdfce2cc0ca466f4ee6cb4bd29d83bef", - "symbol": "PUNDIAI", - "decimals": 18, - "name": "Pundi AI", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x075f23b9cdfce2cc0ca466f4ee6cb4bd29d83bef.png", - "aggregators": [ - "CoinMarketCap", - "LiFi", - "Socket", - "Rubic", - "Squid", - "Rango", - "Sonarwatch" - ], - "occurrences": 7 - }, - "0x0000000000c5dc95539589fbd24be07c6c14eca4": { - "address": "0x0000000000c5dc95539589fbd24be07c6c14eca4", - "symbol": "CULT", - "decimals": 18, - "name": "Milady Cult Coin", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x0000000000c5dc95539589fbd24be07c6c14eca4.png", - "aggregators": [ - "CoinMarketCap", - "1inch", - "Socket", - "Rubic", - "Squid", - "Rango", - "Sonarwatch" - ], - "occurrences": 7 - }, - "0x6710c63432a2de02954fc0f851db07146a6c0312": { - "address": "0x6710c63432a2de02954fc0f851db07146a6c0312", - "symbol": "MFG", - "decimals": 18, - "name": "MFG", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x6710c63432a2de02954fc0f851db07146a6c0312.png", - "aggregators": [ - "Metamask", - "LiFi", - "Socket", - "Rubic", - "Rango", - "Sonarwatch", - "Bancor" - ], - "occurrences": 7 - }, - "0x72f020f8f3e8fd9382705723cd26380f8d0c66bb": { - "address": "0x72f020f8f3e8fd9382705723cd26380f8d0c66bb", - "symbol": "PLOT", - "decimals": 18, - "name": "PLOT", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x72f020f8f3e8fd9382705723cd26380f8d0c66bb.png", - "aggregators": [ - "Metamask", - "1inch", - "LiFi", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 7 - }, - "0x31429d1856ad1377a8a0079410b297e1a9e214c2": { - "address": "0x31429d1856ad1377a8a0079410b297e1a9e214c2", - "symbol": "ANGLE", - "decimals": 18, - "name": "ANGLE", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x31429d1856ad1377a8a0079410b297e1a9e214c2.png", - "aggregators": [ - "Metamask", - "LiFi", - "Socket", - "Rubic", - "Rango", - "Sonarwatch", - "SushiSwap" - ], - "occurrences": 7 - }, - "0x8eef5a82e6aa222a60f009ac18c24ee12dbf4b41": { - "address": "0x8eef5a82e6aa222a60f009ac18c24ee12dbf4b41", - "symbol": "TXL", - "decimals": 18, - "name": "Tixl", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x8eef5a82e6aa222a60f009ac18c24ee12dbf4b41.png", - "aggregators": [ - "Metamask", - "LiFi", - "Socket", - "Rubic", - "Rango", - "Sonarwatch", - "SushiSwap" - ], - "occurrences": 7 - }, - "0x888888435fde8e7d4c54cab67f206e4199454c60": { - "address": "0x888888435fde8e7d4c54cab67f206e4199454c60", - "symbol": "DFX", - "decimals": 18, - "name": "DFX", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x888888435fde8e7d4c54cab67f206e4199454c60.png", - "aggregators": [ - "CoinMarketCap", - "LiFi", - "Socket", - "Rubic", - "Rango", - "Sonarwatch", - "SushiSwap" - ], - "occurrences": 7 - }, - "0x798d1be841a82a273720ce31c822c61a67a601c3": { - "address": "0x798d1be841a82a273720ce31c822c61a67a601c3", - "symbol": "DIGG", - "decimals": 9, - "name": "Digg", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x798d1be841a82a273720ce31c822c61a67a601c3.png", - "aggregators": [ - "CoinMarketCap", - "LiFi", - "Socket", - "Rubic", - "Rango", - "Sonarwatch", - "SushiSwap" - ], - "occurrences": 7 - }, - "0xb8c77482e45f1f44de1745f52c74426c631bdd52": { - "address": "0xb8c77482e45f1f44de1745f52c74426c631bdd52", - "symbol": "BNB", - "decimals": 18, - "name": "Binance Coin", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xb8c77482e45f1f44de1745f52c74426c631bdd52.png", - "aggregators": [ - "Metamask", - "1inch", - "LiFi", - "Socket", - "Rubic", - "Sonarwatch", - "Bancor" - ], - "occurrences": 7 - }, - "0x3e9bc21c9b189c09df3ef1b824798658d5011937": { - "address": "0x3e9bc21c9b189c09df3ef1b824798658d5011937", - "symbol": "LINA", - "decimals": 18, - "name": "Linear Token", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x3e9bc21c9b189c09df3ef1b824798658d5011937.png", - "aggregators": [ - "CoinMarketCap", - "1inch", - "Socket", - "Rubic", - "Rango", - "Sonarwatch", - "SushiSwap" - ], - "occurrences": 7 - }, - "0x544c42fbb96b39b21df61cf322b5edc285ee7429": { - "address": "0x544c42fbb96b39b21df61cf322b5edc285ee7429", - "symbol": "INSUR", - "decimals": 18, - "name": "InsurAce", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x544c42fbb96b39b21df61cf322b5edc285ee7429.png", - "aggregators": [ - "Metamask", - "LiFi", - "Socket", - "Rubic", - "Rango", - "Sonarwatch", - "SushiSwap" - ], - "occurrences": 7 - }, - "0xfe3e6a25e6b192a42a44ecddcd13796471735acf": { - "address": "0xfe3e6a25e6b192a42a44ecddcd13796471735acf", - "symbol": "REEF", - "decimals": 18, - "name": "Reef Finance", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xfe3e6a25e6b192a42a44ecddcd13796471735acf.png", - "aggregators": [ - "Metamask", - "1inch", - "TrustWallet", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 7 - }, - "0xa9b1eb5908cfc3cdf91f9b8b3a74108598009096": { - "address": "0xa9b1eb5908cfc3cdf91f9b8b3a74108598009096", - "symbol": "AUCTION", - "decimals": 18, - "name": "Bounce Token", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xa9b1eb5908cfc3cdf91f9b8b3a74108598009096.png", - "aggregators": [ - "OpenSwap", - "Socket", - "Rubic", - "Rango", - "Sonarwatch", - "SushiSwap" - ], - "occurrences": 6 - }, - "0x33349b282065b0284d756f0577fb39c158f935e6": { - "address": "0x33349b282065b0284d756f0577fb39c158f935e6", - "symbol": "MPL", - "decimals": 18, - "name": "Maple Finance", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x33349b282065b0284d756f0577fb39c158f935e6.png", - "aggregators": [ - "Metamask", - "LiFi", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 6 - }, - "0x0763fdccf1ae541a5961815c0872a8c5bc6de4d7": { - "address": "0x0763fdccf1ae541a5961815c0872a8c5bc6de4d7", - "symbol": "SUKU", - "decimals": 18, - "name": "SUKU", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x0763fdccf1ae541a5961815c0872a8c5bc6de4d7.png", - "aggregators": [ - "OpenSwap", - "LiFi", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 6 - }, - "0xe1ba0fb44ccb0d11b80f92f4f8ed94ca3ff51d00": { - "address": "0xe1ba0fb44ccb0d11b80f92f4f8ed94ca3ff51d00", - "symbol": "ABAT", - "decimals": 18, - "name": "Aave BAT v1", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xe1ba0fb44ccb0d11b80f92f4f8ed94ca3ff51d00.png", - "aggregators": [ - "CoinMarketCap", - "LiFi", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 6 - }, - "0x6fce4a401b6b80ace52baaefe4421bd188e76f6f": { - "address": "0x6fce4a401b6b80ace52baaefe4421bd188e76f6f", - "symbol": "AMANA", - "decimals": 18, - "name": "Aave MANA v1", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x6fce4a401b6b80ace52baaefe4421bd188e76f6f.png", - "aggregators": [ - "CoinMarketCap", - "LiFi", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 6 - }, - "0x9ff58f4ffb29fa2266ab25e75e2a8b3503311656": { - "address": "0x9ff58f4ffb29fa2266ab25e75e2a8b3503311656", - "symbol": "AWBTC", - "decimals": 8, - "name": "Aave WBTC", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x9ff58f4ffb29fa2266ab25e75e2a8b3503311656.png", - "aggregators": [ - "Metamask", - "1inch", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 6 - }, - "0xa06bc25b5805d5f8d82847d191cb4af5a3e873e0": { - "address": "0xa06bc25b5805d5f8d82847d191cb4af5a3e873e0", - "symbol": "ALINK", - "decimals": 18, - "name": "Aave LINK", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xa06bc25b5805d5f8d82847d191cb4af5a3e873e0.png", - "aggregators": [ - "Metamask", - "1inch", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 6 - }, - "0xb8baa0e4287890a5f79863ab62b7f175cecbd433": { - "address": "0xb8baa0e4287890a5f79863ab62b7f175cecbd433", - "symbol": "SWRV", - "decimals": 18, - "name": "Swerve DAO Token", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xb8baa0e4287890a5f79863ab62b7f175cecbd433.png", - "aggregators": [ - "Metamask", - "Socket", - "Rubic", - "Rango", - "Sonarwatch", - "Bancor" - ], - "occurrences": 6 - }, - "0x6c8c6b02e7b2be14d4fa6022dfd6d75921d90e4e": { - "address": "0x6c8c6b02e7b2be14d4fa6022dfd6d75921d90e4e", - "symbol": "CBAT", - "decimals": 8, - "name": "Compound Basic Attention Token", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x6c8c6b02e7b2be14d4fa6022dfd6d75921d90e4e.png", - "aggregators": [ - "Metamask", - "LiFi", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 6 - }, - "0xb3319f5d18bc0d84dd1b4825dcde5d5f7266d407": { - "address": "0xb3319f5d18bc0d84dd1b4825dcde5d5f7266d407", - "symbol": "CZRX", - "decimals": 8, - "name": "Compound 0x", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xb3319f5d18bc0d84dd1b4825dcde5d5f7266d407.png", - "aggregators": [ - "Metamask", - "LiFi", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 6 - }, - "0xca1207647ff814039530d7d35df0e1dd2e91fa84": { - "address": "0xca1207647ff814039530d7d35df0e1dd2e91fa84", - "symbol": "DHT", - "decimals": 18, - "name": "dHEDGE DAO Token", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xca1207647ff814039530d7d35df0e1dd2e91fa84.png", - "aggregators": [ - "Metamask", - "LiFi", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 6 - }, - "0x7240ac91f01233baaf8b064248e80feaa5912ba3": { - "address": "0x7240ac91f01233baaf8b064248e80feaa5912ba3", - "symbol": "OCTO", - "decimals": 18, - "name": "OctoFi", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x7240ac91f01233baaf8b064248e80feaa5912ba3.png", - "aggregators": [ - "Metamask", - "LiFi", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 6 - }, - "0xcb84d72e61e383767c4dfeb2d8ff7f4fb89abc6e": { - "address": "0xcb84d72e61e383767c4dfeb2d8ff7f4fb89abc6e", - "symbol": "VEGA", - "decimals": 18, - "name": "Vega", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xcb84d72e61e383767c4dfeb2d8ff7f4fb89abc6e.png", - "aggregators": [ - "CoinMarketCap", - "Socket", - "Rubic", - "Rango", - "Sonarwatch", - "SushiSwap" - ], - "occurrences": 6 - }, - "0x8642a849d0dcb7a15a974794668adcfbe4794b56": { - "address": "0x8642a849d0dcb7a15a974794668adcfbe4794b56", - "symbol": "PROS", - "decimals": 18, - "name": "Prosper", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x8642a849d0dcb7a15a974794668adcfbe4794b56.png", - "aggregators": [ - "Metamask", - "Socket", - "Rubic", - "Rango", - "Sonarwatch", - "SushiSwap" - ], - "occurrences": 6 - }, - "0x4946fcea7c692606e8908002e55a582af44ac121": { - "address": "0x4946fcea7c692606e8908002e55a582af44ac121", - "symbol": "FOAM", - "decimals": 18, - "name": "FOAM", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x4946fcea7c692606e8908002e55a582af44ac121.png", - "aggregators": [ - "Metamask", - "LiFi", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 6 - }, - "0x7f280dac515121dcda3eac69eb4c13a52392cace": { - "address": "0x7f280dac515121dcda3eac69eb4c13a52392cace", - "symbol": "FNC", - "decimals": 18, - "name": "Fancy Games", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x7f280dac515121dcda3eac69eb4c13a52392cace.png", - "aggregators": [ - "CoinMarketCap", - "LiFi", - "Socket", - "Rubic", - "Rango", - "SushiSwap" - ], - "occurrences": 6 - }, - "0xc11b1268c1a384e55c48c2391d8d480264a3a7f4": { - "address": "0xc11b1268c1a384e55c48c2391d8d480264a3a7f4", - "symbol": "CWBTC", - "decimals": 8, - "name": "Compound Wrapped BTC", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xc11b1268c1a384e55c48c2391d8d480264a3a7f4.png", - "aggregators": ["Metamask", "Socket", "Rubic", "Rango"], - "occurrences": 4 - }, - "0x50d1c9771902476076ecfc8b2a83ad6b9355a4c9": { - "address": "0x50d1c9771902476076ecfc8b2a83ad6b9355a4c9", - "symbol": "FTXTOKEN", - "decimals": 18, - "name": "FTT", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x50d1c9771902476076ecfc8b2a83ad6b9355a4c9.png", - "aggregators": [ - "CoinMarketCap", - "1inch", - "LiFi", - "Socket", - "Rubic", - "Squid", - "Rango", - "Sonarwatch", - "SushiSwap", - "Bancor" - ], - "occurrences": 10 - }, - "0x9e32b13ce7f2e80a01932b42553652e053d6ed8e": { - "address": "0x9e32b13ce7f2e80a01932b42553652e053d6ed8e", - "symbol": "METIS", - "decimals": 18, - "name": "MetisDAO", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x9e32b13ce7f2e80a01932b42553652e053d6ed8e.png", - "aggregators": [ - "CoinMarketCap", - "1inch", - "LiFi", - "TrustWallet", - "Socket", - "Rubic", - "Squid", - "Rango", - "Sonarwatch" - ], - "occurrences": 9 - }, - "0xaf5191b0de278c7286d6c7cc6ab6bb8a73ba2cd6": { - "address": "0xaf5191b0de278c7286d6c7cc6ab6bb8a73ba2cd6", - "symbol": "STG", - "decimals": 18, - "name": "StargateToken", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xaf5191b0de278c7286d6c7cc6ab6bb8a73ba2cd6.png", - "aggregators": [ - "CoinMarketCap", - "1inch", - "LiFi", - "TrustWallet", - "Socket", - "Rubic", - "Rango", - "Sonarwatch", - "SushiSwap" - ], - "occurrences": 9 - }, - "0x18084fba666a33d37592fa2633fd49a74dd93a88": { - "address": "0x18084fba666a33d37592fa2633fd49a74dd93a88", - "symbol": "TBTC", - "decimals": 18, - "name": "tBTC", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x18084fba666a33d37592fa2633fd49a74dd93a88.png", - "aggregators": [ - "CoinMarketCap", - "1inch", - "LiFi", - "Socket", - "Rubic", - "Squid", - "Rango", - "Sonarwatch", - "SushiSwap" - ], - "occurrences": 9 - }, - "0x6985884c4392d348587b19cb9eaaf157f13271cd": { - "address": "0x6985884c4392d348587b19cb9eaaf157f13271cd", - "symbol": "ZRO", - "decimals": 18, - "name": "LayerZero", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x6985884c4392d348587b19cb9eaaf157f13271cd.png", - "aggregators": [ - "CoinMarketCap", - "1inch", - "LiFi", - "Socket", - "Rubic", - "Squid", - "Rango", - "Sonarwatch", - "SushiSwap" - ], - "occurrences": 9 - }, - "0x5228a22e72ccc52d415ecfd199f99d0665e7733b": { - "address": "0x5228a22e72ccc52d415ecfd199f99d0665e7733b", - "symbol": "PBTC", - "decimals": 18, - "name": "pTokens BTC", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x5228a22e72ccc52d415ecfd199f99d0665e7733b.png", - "aggregators": [ - "CoinGecko", - "1inch", - "LiFi", - "TrustWallet", - "Socket", - "Rubic", - "Rango", - "Sonarwatch", - "Bancor" - ], - "occurrences": 9 - }, - "0x24a6a37576377f63f194caa5f518a60f45b42921": { - "address": "0x24a6a37576377f63f194caa5f518a60f45b42921", - "symbol": "BANK", - "decimals": 18, - "name": "Float Bank", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x24a6a37576377f63f194caa5f518a60f45b42921.png", - "aggregators": [ - "CoinGecko", - "1inch", - "LiFi", - "Socket", - "Rubic", - "Squid", - "Rango", - "Sonarwatch", - "SushiSwap" - ], - "occurrences": 9 - }, - "0x7de91b204c1c737bcee6f000aaa6569cf7061cb7": { - "address": "0x7de91b204c1c737bcee6f000aaa6569cf7061cb7", - "symbol": "XRT", - "decimals": 9, - "name": "Robonomics", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x7de91b204c1c737bcee6f000aaa6569cf7061cb7.png", - "aggregators": [ - "CoinMarketCap", - "1inch", - "LiFi", - "TrustWallet", - "Socket", - "Rubic", - "Rango", - "Sonarwatch", - "Bancor" - ], - "occurrences": 9 - }, - "0xc719d010b63e5bbf2c0551872cd5316ed26acd83": { - "address": "0xc719d010b63e5bbf2c0551872cd5316ed26acd83", - "symbol": "DIP", - "decimals": 18, - "name": "Decentralized Insurance Protocol", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xc719d010b63e5bbf2c0551872cd5316ed26acd83.png", - "aggregators": [ - "CoinMarketCap", - "1inch", - "LiFi", - "TrustWallet", - "Socket", - "Rubic", - "Rango", - "Sonarwatch", - "Bancor" - ], - "occurrences": 9 - }, - "0x40d16fc0246ad3160ccc09b8d0d3a2cd28ae6c2f": { - "address": "0x40d16fc0246ad3160ccc09b8d0d3a2cd28ae6c2f", - "symbol": "GHO", - "decimals": 18, - "name": "GHO Token", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x40d16fc0246ad3160ccc09b8d0d3a2cd28ae6c2f.png", - "aggregators": [ - "Metamask", - "1inch", - "LiFi", - "Socket", - "Rubic", - "Squid", - "Rango", - "Sonarwatch", - "SushiSwap" - ], - "occurrences": 9 - }, - "0x07150e919b4de5fd6a63de1f9384828396f25fdc": { - "address": "0x07150e919b4de5fd6a63de1f9384828396f25fdc", - "symbol": "BASE", - "decimals": 9, - "name": "Base Protocol", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x07150e919b4de5fd6a63de1f9384828396f25fdc.png", - "aggregators": [ - "CoinMarketCap", - "1inch", - "LiFi", - "TrustWallet", - "Socket", - "Rubic", - "Rango", - "Sonarwatch", - "SushiSwap" - ], - "occurrences": 9 - }, - "0x1c9922314ed1415c95b9fd453c3818fd41867d0b": { - "address": "0x1c9922314ed1415c95b9fd453c3818fd41867d0b", - "symbol": "TOWER", - "decimals": 18, - "name": "TOWER", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x1c9922314ed1415c95b9fd453c3818fd41867d0b.png", - "aggregators": [ - "CoinMarketCap", - "1inch", - "LiFi", - "TrustWallet", - "Socket", - "Rubic", - "Rango", - "Sonarwatch", - "SushiSwap" - ], - "occurrences": 9 - }, - "0x3b484b82567a09e2588a13d54d032153f0c0aee0": { - "address": "0x3b484b82567a09e2588a13d54d032153f0c0aee0", - "symbol": "SOS", - "decimals": 18, - "name": "OpenDAO", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x3b484b82567a09e2588a13d54d032153f0c0aee0.png", - "aggregators": [ - "CoinMarketCap", - "1inch", - "TrustWallet", - "Socket", - "Rubic", - "Squid", - "Rango", - "Sonarwatch", - "SushiSwap" - ], - "occurrences": 9 - }, - "0x956f47f50a910163d8bf957cf5846d573e7f87ca": { - "address": "0x956f47f50a910163d8bf957cf5846d573e7f87ca", - "symbol": "FEI", - "decimals": 18, - "name": "Fei USD", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x956f47f50a910163d8bf957cf5846d573e7f87ca.png", - "aggregators": [ - "CoinMarketCap", - "1inch", - "LiFi", - "TrustWallet", - "Socket", - "Rubic", - "Rango", - "Sonarwatch", - "SushiSwap" - ], - "occurrences": 9 - }, - "0x85f17cf997934a597031b2e18a9ab6ebd4b9f6a4": { - "address": "0x85f17cf997934a597031b2e18a9ab6ebd4b9f6a4", - "symbol": "NEAR", - "decimals": 24, - "name": "NEAR", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x85f17cf997934a597031b2e18a9ab6ebd4b9f6a4.png", - "aggregators": [ - "Metamask", - "1inch", - "LiFi", - "Socket", - "Rubic", - "Squid", - "Rango", - "Sonarwatch", - "SushiSwap" - ], - "occurrences": 9 - }, - "0x8f693ca8d21b157107184d29d398a8d082b38b76": { - "address": "0x8f693ca8d21b157107184d29d398a8d082b38b76", - "symbol": "DATA", - "decimals": 18, - "name": "Streamr", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x8f693ca8d21b157107184d29d398a8d082b38b76.png", - "aggregators": [ - "Metamask", - "1inch", - "LiFi", - "Socket", - "Rubic", - "Rango", - "Sonarwatch", - "SushiSwap", - "Bancor" - ], - "occurrences": 9 - }, - "0xd13c7342e1ef687c5ad21b27c2b65d772cab5c8c": { - "address": "0xd13c7342e1ef687c5ad21b27c2b65d772cab5c8c", - "symbol": "UOS", - "decimals": 4, - "name": "Ultra Token", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xd13c7342e1ef687c5ad21b27c2b65d772cab5c8c.png", - "aggregators": [ - "CoinMarketCap", - "1inch", - "LiFi", - "Socket", - "Rubic", - "Squid", - "Rango", - "Sonarwatch", - "Bancor" - ], - "occurrences": 9 - }, - "0x44108f0223a3c3028f5fe7aec7f9bb2e66bef82f": { - "address": "0x44108f0223a3c3028f5fe7aec7f9bb2e66bef82f", - "symbol": "ACX", - "decimals": 18, - "name": "Across Protocol Token", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x44108f0223a3c3028f5fe7aec7f9bb2e66bef82f.png", - "aggregators": [ - "CoinMarketCap", - "1inch", - "LiFi", - "Rubic", - "Squid", - "Rango", - "Sonarwatch", - "SushiSwap" - ], - "occurrences": 8 - }, - "0xbe0ed4138121ecfc5c0e56b40517da27e6c5226b": { - "address": "0xbe0ed4138121ecfc5c0e56b40517da27e6c5226b", - "symbol": "ATH", - "decimals": 18, - "name": "Aethir", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xbe0ed4138121ecfc5c0e56b40517da27e6c5226b.png", - "aggregators": [ - "CoinMarketCap", - "1inch", - "LiFi", - "Socket", - "Rubic", - "Squid", - "Rango", - "Sonarwatch" - ], - "occurrences": 8 - }, - "0x467719ad09025fcc6cf6f8311755809d45a5e5f3": { - "address": "0x467719ad09025fcc6cf6f8311755809d45a5e5f3", - "symbol": "AXL", - "decimals": 6, - "name": "Axelar", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x467719ad09025fcc6cf6f8311755809d45a5e5f3.png", - "aggregators": [ - "Metamask", - "1inch", - "LiFi", - "Socket", - "Rubic", - "Squid", - "Rango", - "Sonarwatch" - ], - "occurrences": 8 - }, - "0x42bbfa2e77757c645eeaad1655e0911a7553efbc": { - "address": "0x42bbfa2e77757c645eeaad1655e0911a7553efbc", - "symbol": "BOBA", - "decimals": 18, - "name": "Boba Token", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x42bbfa2e77757c645eeaad1655e0911a7553efbc.png", - "aggregators": [ - "CoinMarketCap", - "1inch", - "LiFi", - "Socket", - "Rubic", - "Rango", - "Sonarwatch", - "Bancor" - ], - "occurrences": 8 - }, - "0xae12c5930881c53715b369cec7606b70d8eb229f": { - "address": "0xae12c5930881c53715b369cec7606b70d8eb229f", - "symbol": "C98", - "decimals": 18, - "name": "Coin98", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xae12c5930881c53715b369cec7606b70d8eb229f.png", - "aggregators": [ - "CoinMarketCap", - "LiFi", - "Socket", - "Rubic", - "Squid", - "Rango", - "Sonarwatch", - "SushiSwap" - ], - "occurrences": 8 - }, - "0xcbb7c0000ab88b473b1f5afd9ef808440eed33bf": { - "address": "0xcbb7c0000ab88b473b1f5afd9ef808440eed33bf", - "symbol": "CBBTC", - "decimals": 8, - "name": "Coinbase Wrapped BTC", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xcbb7c0000ab88b473b1f5afd9ef808440eed33bf.png", - "aggregators": [ - "CoinMarketCap", - "1inch", - "LiFi", - "Socket", - "Rubic", - "Squid", - "Rango", - "Sonarwatch" - ], - "occurrences": 8 - }, - "0xfb7b4564402e5500db5bb6d63ae671302777c75a": { - "address": "0xfb7b4564402e5500db5bb6d63ae671302777c75a", - "symbol": "DEXT", - "decimals": 18, - "name": "DexTools", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xfb7b4564402e5500db5bb6d63ae671302777c75a.png", - "aggregators": [ - "CoinMarketCap", - "1inch", - "LiFi", - "Socket", - "Rubic", - "Squid", - "Rango", - "Sonarwatch" - ], - "occurrences": 8 - }, - "0x761d38e5ddf6ccf6cf7c55759d5210750b5d60f3": { - "address": "0x761d38e5ddf6ccf6cf7c55759d5210750b5d60f3", - "symbol": "ELON", - "decimals": 18, - "name": "Dogelon", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x761d38e5ddf6ccf6cf7c55759d5210750b5d60f3.png", - "aggregators": [ - "OpenSwap", - "1inch", - "TrustWallet", - "Socket", - "Rubic", - "Squid", - "Rango", - "Sonarwatch" - ], - "occurrences": 8 - }, - "0x57e114b691db790c35207b2e685d4a43181e6061": { - "address": "0x57e114b691db790c35207b2e685d4a43181e6061", - "symbol": "ENA", - "decimals": 18, - "name": "Ethena", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x57e114b691db790c35207b2e685d4a43181e6061.png", - "aggregators": [ - "CoinMarketCap", - "1inch", - "LiFi", - "Socket", - "Rubic", - "Squid", - "Rango", - "Sonarwatch" - ], - "occurrences": 8 - }, - "0xfe0c30065b384f05761f15d0cc899d4f9f9cc0eb": { - "address": "0xfe0c30065b384f05761f15d0cc899d4f9f9cc0eb", - "symbol": "ETHFI", - "decimals": 18, - "name": "Ether fi", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xfe0c30065b384f05761f15d0cc899d4f9f9cc0eb.png", - "aggregators": [ - "CoinMarketCap", - "1inch", - "LiFi", - "Socket", - "Rubic", - "Squid", - "Rango", - "Sonarwatch" - ], - "occurrences": 8 - }, - "0x455e53cbb86018ac2b8092fdcd39d8444affc3f6": { - "address": "0x455e53cbb86018ac2b8092fdcd39d8444affc3f6", - "symbol": "POL", - "decimals": 18, - "name": "Polygon Network Token", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x455e53cbb86018ac2b8092fdcd39d8444affc3f6.png", - "aggregators": [ - "Metamask", - "1inch", - "LiFi", - "Socket", - "Rubic", - "Squid", - "Rango", - "Sonarwatch" - ], - "occurrences": 8 - }, - "0x6c3ea9036406852006290770bedfcaba0e23a0e8": { - "address": "0x6c3ea9036406852006290770bedfcaba0e23a0e8", - "symbol": "PYUSD", - "decimals": 6, - "name": "PayPal USD", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x6c3ea9036406852006290770bedfcaba0e23a0e8.png", - "aggregators": [ - "Metamask", - "1inch", - "LiFi", - "Socket", - "Rubic", - "Squid", - "Rango", - "Sonarwatch" - ], - "occurrences": 8 - }, - "0x6de037ef9ad2725eb40118bb1702ebb27e4aeb24": { - "address": "0x6de037ef9ad2725eb40118bb1702ebb27e4aeb24", - "symbol": "RNDR", - "decimals": 18, - "name": "Render Token", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x6de037ef9ad2725eb40118bb1702ebb27e4aeb24.png", - "aggregators": [ - "Metamask", - "1inch", - "LiFi", - "Socket", - "Rubic", - "Squid", - "Rango", - "Sonarwatch" - ], - "occurrences": 8 - }, - "0x8e870d67f660d95d5be530380d0ec0bd388289e1": { - "address": "0x8e870d67f660d95d5be530380d0ec0bd388289e1", - "symbol": "USDP", - "decimals": 18, - "name": "Pax Dollar", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x8e870d67f660d95d5be530380d0ec0bd388289e1.png", - "aggregators": [ - "Metamask", - "1inch", - "LiFi", - "Socket", - "Rubic", - "Rango", - "Sonarwatch", - "SushiSwap" - ], - "occurrences": 8 - }, - "0x44ff8620b8ca30902395a7bd3f2407e1a091bf73": { - "address": "0x44ff8620b8ca30902395a7bd3f2407e1a091bf73", - "symbol": "VIRTUAL", - "decimals": 18, - "name": "Virtuals Protocol", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x44ff8620b8ca30902395a7bd3f2407e1a091bf73.png", - "aggregators": [ - "CoinMarketCap", - "1inch", - "LiFi", - "Socket", - "Rubic", - "Squid", - "Rango", - "Sonarwatch" - ], - "occurrences": 8 - }, - "0x62359ed7505efc61ff1d56fef82158ccaffa23d7": { - "address": "0x62359ed7505efc61ff1d56fef82158ccaffa23d7", - "symbol": "CORE", - "decimals": 18, - "name": "cVault.finance", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x62359ed7505efc61ff1d56fef82158ccaffa23d7.png", - "aggregators": [ - "CoinMarketCap", - "1inch", - "LiFi", - "TrustWallet", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 8 - }, - "0xadb2437e6f65682b85f814fbc12fec0508a7b1d0": { - "address": "0xadb2437e6f65682b85f814fbc12fec0508a7b1d0", - "symbol": "UNCX", - "decimals": 18, - "name": "UniCrypt", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xadb2437e6f65682b85f814fbc12fec0508a7b1d0.png", - "aggregators": [ - "CoinMarketCap", - "1inch", - "LiFi", - "TrustWallet", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 8 - }, - "0x62b9c7356a2dc64a1969e19c23e4f579f9810aa7": { - "address": "0x62b9c7356a2dc64a1969e19c23e4f579f9810aa7", - "symbol": "CVXCRV", - "decimals": 18, - "name": "Convex CRV", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x62b9c7356a2dc64a1969e19c23e4f579f9810aa7.png", - "aggregators": [ - "CoinMarketCap", - "1inch", - "LiFi", - "Socket", - "Rubic", - "Rango", - "Sonarwatch", - "SushiSwap" - ], - "occurrences": 8 - }, - "0xc4c2614e694cf534d407ee49f8e44d125e4681c4": { - "address": "0xc4c2614e694cf534d407ee49f8e44d125e4681c4", - "symbol": "CHAIN", - "decimals": 18, - "name": "Chain Games", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xc4c2614e694cf534d407ee49f8e44d125e4681c4.png", - "aggregators": [ - "CoinMarketCap", - "1inch", - "LiFi", - "TrustWallet", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 8 - }, - "0xbc19712feb3a26080ebf6f2f7849b417fdd792ca": { - "address": "0xbc19712feb3a26080ebf6f2f7849b417fdd792ca", - "symbol": "BORING", - "decimals": 18, - "name": "BoringDAO", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xbc19712feb3a26080ebf6f2f7849b417fdd792ca.png", - "aggregators": [ - "CoinMarketCap", - "1inch", - "LiFi", - "Socket", - "Rubic", - "Rango", - "Sonarwatch", - "Bancor" - ], - "occurrences": 8 - }, - "0x3d3d35bb9bec23b06ca00fe472b50e7a4c692c30": { - "address": "0x3d3d35bb9bec23b06ca00fe472b50e7a4c692c30", - "symbol": "VIDYA", - "decimals": 18, - "name": "Vidya", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x3d3d35bb9bec23b06ca00fe472b50e7a4c692c30.png", - "aggregators": [ - "CoinMarketCap", - "1inch", - "LiFi", - "TrustWallet", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 8 - }, - "0xbc6da0fe9ad5f3b0d58160288917aa56653660e9": { - "address": "0xbc6da0fe9ad5f3b0d58160288917aa56653660e9", - "symbol": "ALUSD", - "decimals": 18, - "name": "Alchemix USD", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xbc6da0fe9ad5f3b0d58160288917aa56653660e9.png", - "aggregators": [ - "CoinMarketCap", - "1inch", - "LiFi", - "Socket", - "Rubic", - "Rango", - "Sonarwatch", - "SushiSwap" - ], - "occurrences": 8 - }, - "0xbaac2b4491727d78d2b78815144570b9f2fe8899": { - "address": "0xbaac2b4491727d78d2b78815144570b9f2fe8899", - "symbol": "DOG", - "decimals": 18, - "name": "The Doge NFT", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xbaac2b4491727d78d2b78815144570b9f2fe8899.png", - "aggregators": [ - "CoinMarketCap", - "LiFi", - "Socket", - "Rubic", - "Squid", - "Rango", - "Sonarwatch", - "SushiSwap" - ], - "occurrences": 8 - }, - "0x990f341946a3fdb507ae7e52d17851b87168017c": { - "address": "0x990f341946a3fdb507ae7e52d17851b87168017c", - "symbol": "STRONG", - "decimals": 18, - "name": "Strong", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x990f341946a3fdb507ae7e52d17851b87168017c.png", - "aggregators": [ - "CoinMarketCap", - "1inch", - "LiFi", - "TrustWallet", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 8 - }, - "0x0ec9f76202a7061eb9b3a7d6b59d36215a7e37da": { - "address": "0x0ec9f76202a7061eb9b3a7d6b59d36215a7e37da", - "symbol": "BPT", - "decimals": 18, - "name": "BlackPool Token", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x0ec9f76202a7061eb9b3a7d6b59d36215a7e37da.png", - "aggregators": [ - "CoinMarketCap", - "LiFi", - "Socket", - "Rubic", - "Squid", - "Rango", - "Sonarwatch", - "SushiSwap" - ], - "occurrences": 8 - }, - "0xbea98c05eeae2f3bc8c3565db7551eb738c8ccab": { - "address": "0xbea98c05eeae2f3bc8c3565db7551eb738c8ccab", - "symbol": "GYSR", - "decimals": 18, - "name": "GYSR", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xbea98c05eeae2f3bc8c3565db7551eb738c8ccab.png", - "aggregators": [ - "CoinMarketCap", - "1inch", - "LiFi", - "TrustWallet", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 8 - }, - "0x865377367054516e17014ccded1e7d814edc9ce4": { - "address": "0x865377367054516e17014ccded1e7d814edc9ce4", - "symbol": "DOLA", - "decimals": 18, - "name": "DOLA USD Stablecoin", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x865377367054516e17014ccded1e7d814edc9ce4.png", - "aggregators": [ - "CoinMarketCap", - "1inch", - "LiFi", - "Socket", - "Rubic", - "Rango", - "Sonarwatch", - "SushiSwap" - ], - "occurrences": 8 - }, - "0xf939e0a03fb07f59a73314e73794be0e57ac1b4e": { - "address": "0xf939e0a03fb07f59a73314e73794be0e57ac1b4e", - "symbol": "CRVUSD", - "decimals": 18, - "name": "Curve.Fi USD Stablecoin", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xf939e0a03fb07f59a73314e73794be0e57ac1b4e.png", - "aggregators": [ - "Metamask", - "1inch", - "LiFi", - "Socket", - "Rubic", - "Squid", - "Rango", - "Sonarwatch" - ], - "occurrences": 8 - }, - "0xa393473d64d2f9f026b60b6df7859a689715d092": { - "address": "0xa393473d64d2f9f026b60b6df7859a689715d092", - "symbol": "LTX", - "decimals": 8, - "name": "Lattice Token", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xa393473d64d2f9f026b60b6df7859a689715d092.png", - "aggregators": [ - "CoinMarketCap", - "1inch", - "LiFi", - "TrustWallet", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 8 - }, - "0x72e9d9038ce484ee986fea183f8d8df93f9ada13": { - "address": "0x72e9d9038ce484ee986fea183f8d8df93f9ada13", - "symbol": "SMARTCREDIT", - "decimals": 18, - "name": "SmartCredit Token", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x72e9d9038ce484ee986fea183f8d8df93f9ada13.png", - "aggregators": [ - "CoinMarketCap", - "1inch", - "TrustWallet", - "Socket", - "Rubic", - "Rango", - "Sonarwatch", - "Bancor" - ], - "occurrences": 8 - }, - "0x674c6ad92fd080e4004b2312b45f796a192d27a0": { - "address": "0x674c6ad92fd080e4004b2312b45f796a192d27a0", - "symbol": "USDN", - "decimals": 18, - "name": "Neutrino USD", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x674c6ad92fd080e4004b2312b45f796a192d27a0.png", - "aggregators": [ - "Metamask", - "1inch", - "LiFi", - "Socket", - "Rubic", - "Rango", - "Sonarwatch", - "SushiSwap" - ], - "occurrences": 8 - }, - "0x77e06c9eccf2e797fd462a92b6d7642ef85b0a44": { - "address": "0x77e06c9eccf2e797fd462a92b6d7642ef85b0a44", - "symbol": "WTAO", - "decimals": 9, - "name": "Wrapped TAO", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x77e06c9eccf2e797fd462a92b6d7642ef85b0a44.png", - "aggregators": [ - "CoinMarketCap", - "1inch", - "LiFi", - "Socket", - "Rubic", - "Squid", - "Rango", - "Sonarwatch" - ], - "occurrences": 8 - }, - "0x2791bfd60d232150bff86b39b7146c0eaaa2ba81": { - "address": "0x2791bfd60d232150bff86b39b7146c0eaaa2ba81", - "symbol": "BIFI", - "decimals": 18, - "name": "BiFi", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x2791bfd60d232150bff86b39b7146c0eaaa2ba81.png", - "aggregators": [ - "CoinMarketCap", - "LiFi", - "Socket", - "Rubic", - "Squid", - "Rango", - "Sonarwatch", - "SushiSwap" - ], - "occurrences": 8 - }, - "0xd478161c952357f05f0292b56012cd8457f1cfbf": { - "address": "0xd478161c952357f05f0292b56012cd8457f1cfbf", - "symbol": "POLK", - "decimals": 18, - "name": "Polkamarkets", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xd478161c952357f05f0292b56012cd8457f1cfbf.png", - "aggregators": [ - "CoinMarketCap", - "1inch", - "LiFi", - "TrustWallet", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 8 - }, - "0x226f7b842e0f0120b7e194d05432b3fd14773a9d": { - "address": "0x226f7b842e0f0120b7e194d05432b3fd14773a9d", - "symbol": "UNN", - "decimals": 18, - "name": "UNION Protocol Governance Token", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x226f7b842e0f0120b7e194d05432b3fd14773a9d.png", - "aggregators": [ - "CoinMarketCap", - "LiFi", - "TrustWallet", - "Socket", - "Rubic", - "Rango", - "Sonarwatch", - "Bancor" - ], - "occurrences": 8 - }, - "0xec213f83defb583af3a000b1c0ada660b1902a0f": { - "address": "0xec213f83defb583af3a000b1c0ada660b1902a0f", - "symbol": "PRE", - "decimals": 18, - "name": "Presearch", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xec213f83defb583af3a000b1c0ada660b1902a0f.png", - "aggregators": [ - "CoinMarketCap", - "1inch", - "LiFi", - "Socket", - "Rubic", - "Rango", - "Sonarwatch", - "SushiSwap" - ], - "occurrences": 8 - }, - "0x6c5ba91642f10282b576d91922ae6448c9d52f4e": { - "address": "0x6c5ba91642f10282b576d91922ae6448c9d52f4e", - "symbol": "PHA", - "decimals": 18, - "name": "PHALA", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x6c5ba91642f10282b576d91922ae6448c9d52f4e.png", - "aggregators": [ - "CoinMarketCap", - "1inch", - "LiFi", - "Socket", - "Rubic", - "Squid", - "Rango", - "Sonarwatch" - ], - "occurrences": 8 - }, - "0x16eccfdbb4ee1a85a33f3a9b21175cd7ae753db4": { - "address": "0x16eccfdbb4ee1a85a33f3a9b21175cd7ae753db4", - "symbol": "ROUTE", - "decimals": 18, - "name": "Route", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x16eccfdbb4ee1a85a33f3a9b21175cd7ae753db4.png", - "aggregators": [ - "Metamask", - "1inch", - "LiFi", - "Socket", - "Rubic", - "Rango", - "Sonarwatch", - "SushiSwap" - ], - "occurrences": 8 - }, - "0x19d97d8fa813ee2f51ad4b4e04ea08baf4dffc28": { - "address": "0x19d97d8fa813ee2f51ad4b4e04ea08baf4dffc28", - "symbol": "BBADGER", - "decimals": 18, - "name": "Badger Sett Badger", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x19d97d8fa813ee2f51ad4b4e04ea08baf4dffc28.png", - "aggregators": [ - "CoinGecko", - "LiFi", - "Socket", - "Rubic", - "Rango", - "Sonarwatch", - "SushiSwap", - "Bancor" - ], - "occurrences": 8 - }, - "0xa1d6df714f91debf4e0802a542e13067f31b8262": { - "address": "0xa1d6df714f91debf4e0802a542e13067f31b8262", - "symbol": "RFOX", - "decimals": 18, - "name": "RFOX", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xa1d6df714f91debf4e0802a542e13067f31b8262.png", - "aggregators": [ - "CoinMarketCap", - "1inch", - "LiFi", - "TrustWallet", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 8 - }, - "0x2b591e99afe9f32eaa6214f7b7629768c40eeb39": { - "address": "0x2b591e99afe9f32eaa6214f7b7629768c40eeb39", - "symbol": "HEX", - "decimals": 8, - "name": "HEX", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x2b591e99afe9f32eaa6214f7b7629768c40eeb39.png", - "aggregators": [ - "Metamask", - "1inch", - "LiFi", - "TrustWallet", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 8 - }, - "0xa02120696c7b8fe16c09c749e4598819b2b0e915": { - "address": "0xa02120696c7b8fe16c09c749e4598819b2b0e915", - "symbol": "WXT", - "decimals": 18, - "name": "Wirex Token", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xa02120696c7b8fe16c09c749e4598819b2b0e915.png", - "aggregators": [ - "CoinMarketCap", - "1inch", - "LiFi", - "Socket", - "Rubic", - "Rango", - "Sonarwatch", - "Bancor" - ], - "occurrences": 8 - }, - "0xd7efb00d12c2c13131fd319336fdf952525da2af": { - "address": "0xd7efb00d12c2c13131fd319336fdf952525da2af", - "symbol": "XPR", - "decimals": 4, - "name": "Proton", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xd7efb00d12c2c13131fd319336fdf952525da2af.png", - "aggregators": [ - "Metamask", - "1inch", - "LiFi", - "Socket", - "Rubic", - "Squid", - "Rango", - "Sonarwatch" - ], - "occurrences": 8 - }, - "0x3af33bef05c2dcb3c7288b77fe1c8d2aeba4d789": { - "address": "0x3af33bef05c2dcb3c7288b77fe1c8d2aeba4d789", - "symbol": "KROM", - "decimals": 18, - "name": "Kromatika", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x3af33bef05c2dcb3c7288b77fe1c8d2aeba4d789.png", - "aggregators": [ - "Metamask", - "1inch", - "LiFi", - "Socket", - "Rubic", - "Squid", - "Rango", - "Sonarwatch" - ], - "occurrences": 8 - }, - "0x8b39b70e39aa811b69365398e0aace9bee238aeb": { - "address": "0x8b39b70e39aa811b69365398e0aace9bee238aeb", - "symbol": "PKF", - "decimals": 18, - "name": "PolkaFoundry", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x8b39b70e39aa811b69365398e0aace9bee238aeb.png", - "aggregators": [ - "Metamask", - "1inch", - "LiFi", - "TrustWallet", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 8 - }, - "0x4c11249814f11b9346808179cf06e71ac328c1b5": { - "address": "0x4c11249814f11b9346808179cf06e71ac328c1b5", - "symbol": "ORAI", - "decimals": 18, - "name": "Oraichain Token", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x4c11249814f11b9346808179cf06e71ac328c1b5.png", - "aggregators": [ - "CoinMarketCap", - "1inch", - "LiFi", - "TrustWallet", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 8 - }, - "0xb9ef770b6a5e12e45983c5d80545258aa38f3b78": { - "address": "0xb9ef770b6a5e12e45983c5d80545258aa38f3b78", - "symbol": "ZCN", - "decimals": 10, - "name": "0chain", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xb9ef770b6a5e12e45983c5d80545258aa38f3b78.png", - "aggregators": [ - "CoinMarketCap", - "LiFi", - "TrustWallet", - "Socket", - "Rubic", - "Rango", - "Sonarwatch", - "Bancor" - ], - "occurrences": 8 - }, - "0x9f9c8ec3534c3ce16f928381372bfbfbfb9f4d24": { - "address": "0x9f9c8ec3534c3ce16f928381372bfbfbfb9f4d24", - "symbol": "GLQ", - "decimals": 18, - "name": "GraphLinq", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x9f9c8ec3534c3ce16f928381372bfbfbfb9f4d24.png", - "aggregators": [ - "Metamask", - "1inch", - "LiFi", - "TrustWallet", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 8 - }, - "0x340d2bde5eb28c1eed91b2f790723e3b160613b7": { - "address": "0x340d2bde5eb28c1eed91b2f790723e3b160613b7", - "symbol": "VEE", - "decimals": 18, - "name": "BLOCKv", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x340d2bde5eb28c1eed91b2f790723e3b160613b7.png", - "aggregators": [ - "CoinMarketCap", - "1inch", - "LiFi", - "Socket", - "Rubic", - "Squid", - "Rango", - "Sonarwatch" - ], - "occurrences": 8 - }, - "0xfd09911130e6930bf87f2b0554c44f400bd80d3e": { - "address": "0xfd09911130e6930bf87f2b0554c44f400bd80d3e", - "symbol": "ETHIX", - "decimals": 18, - "name": "Ethix", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xfd09911130e6930bf87f2b0554c44f400bd80d3e.png", - "aggregators": [ - "CoinMarketCap", - "1inch", - "LiFi", - "Socket", - "Rubic", - "Squid", - "Rango", - "Sonarwatch" - ], - "occurrences": 8 - }, - "0xcd5fe23c85820f7b72d0926fc9b05b43e359b7ee": { - "address": "0xcd5fe23c85820f7b72d0926fc9b05b43e359b7ee", - "symbol": "WEETH", - "decimals": 18, - "name": "Wrapped eETH", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xcd5fe23c85820f7b72d0926fc9b05b43e359b7ee.png", - "aggregators": [ - "Metamask", - "1inch", - "LiFi", - "Socket", - "Rubic", - "Squid", - "Rango", - "Sonarwatch" - ], - "occurrences": 8 - }, - "0x0f7f961648ae6db43c75663ac7e5414eb79b5704": { - "address": "0x0f7f961648ae6db43c75663ac7e5414eb79b5704", - "symbol": "XIO", - "decimals": 18, - "name": "Blockzero Labs", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x0f7f961648ae6db43c75663ac7e5414eb79b5704.png", - "aggregators": [ - "CoinMarketCap", - "1inch", - "LiFi", - "TrustWallet", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 8 - }, - "0x0202be363b8a4820f3f4de7faf5224ff05943ab1": { - "address": "0x0202be363b8a4820f3f4de7faf5224ff05943ab1", - "symbol": "UFT", - "decimals": 18, - "name": "UniLend", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x0202be363b8a4820f3f4de7faf5224ff05943ab1.png", - "aggregators": [ - "CoinMarketCap", - "1inch", - "LiFi", - "TrustWallet", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 8 - }, - "0xf94b5c5651c888d928439ab6514b93944eee6f48": { - "address": "0xf94b5c5651c888d928439ab6514b93944eee6f48", - "symbol": "YLD", - "decimals": 18, - "name": "Yield App", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xf94b5c5651c888d928439ab6514b93944eee6f48.png", - "aggregators": [ - "Metamask", - "LiFi", - "TrustWallet", - "Socket", - "Rubic", - "Rango", - "Sonarwatch", - "SushiSwap" - ], - "occurrences": 8 - }, - "0xeeaa40b28a2d1b0b08f6f97bb1dd4b75316c6107": { - "address": "0xeeaa40b28a2d1b0b08f6f97bb1dd4b75316c6107", - "symbol": "GOVI", - "decimals": 18, - "name": "GOVI", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xeeaa40b28a2d1b0b08f6f97bb1dd4b75316c6107.png", - "aggregators": [ - "CoinMarketCap", - "1inch", - "LiFi", - "TrustWallet", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 8 - }, - "0x9355372396e3f6daf13359b7b607a3374cc638e0": { - "address": "0x9355372396e3f6daf13359b7b607a3374cc638e0", - "symbol": "WHALE", - "decimals": 4, - "name": "WHALE", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x9355372396e3f6daf13359b7b607a3374cc638e0.png", - "aggregators": [ - "CoinMarketCap", - "1inch", - "LiFi", - "TrustWallet", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 8 - }, - "0x63b4f3e3fa4e438698ce330e365e831f7ccd1ef4": { - "address": "0x63b4f3e3fa4e438698ce330e365e831f7ccd1ef4", - "symbol": "CFI", - "decimals": 18, - "name": "CyberFi Token", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x63b4f3e3fa4e438698ce330e365e831f7ccd1ef4.png", - "aggregators": [ - "CoinMarketCap", - "1inch", - "LiFi", - "TrustWallet", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 8 - }, - "0xde5ed76e7c05ec5e4572cfc88d1acea165109e44": { - "address": "0xde5ed76e7c05ec5e4572cfc88d1acea165109e44", - "symbol": "DEUS", - "decimals": 18, - "name": "DEUS Finance", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xde5ed76e7c05ec5e4572cfc88d1acea165109e44.png", - "aggregators": [ - "CoinMarketCap", - "1inch", - "LiFi", - "Socket", - "Rubic", - "Squid", - "Rango", - "Sonarwatch" - ], - "occurrences": 8 - }, - "0xba8a621b4a54e61c442f5ec623687e2a942225ef": { - "address": "0xba8a621b4a54e61c442f5ec623687e2a942225ef", - "symbol": "QUARTZ", - "decimals": 18, - "name": "Sandclock", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xba8a621b4a54e61c442f5ec623687e2a942225ef.png", - "aggregators": [ - "CoinMarketCap", - "LiFi", - "Socket", - "Rubic", - "Squid", - "Rango", - "Sonarwatch", - "SushiSwap" - ], - "occurrences": 8 - }, - "0xf4d2888d29d722226fafa5d9b24f9164c092421e": { - "address": "0xf4d2888d29d722226fafa5d9b24f9164c092421e", - "symbol": "LOOKS", - "decimals": 18, - "name": "LooksRare", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xf4d2888d29d722226fafa5d9b24f9164c092421e.png", - "aggregators": [ - "CoinMarketCap", - "1inch", - "LiFi", - "TrustWallet", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 8 - }, - "0xcf3c8be2e2c42331da80ef210e9b1b307c03d36a": { - "address": "0xcf3c8be2e2c42331da80ef210e9b1b307c03d36a", - "symbol": "BEPRO", - "decimals": 18, - "name": "BEPRO Network", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xcf3c8be2e2c42331da80ef210e9b1b307c03d36a.png", - "aggregators": [ - "CoinMarketCap", - "1inch", - "LiFi", - "TrustWallet", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 8 - }, - "0xb6ff96b8a8d214544ca0dbc9b33f7ad6503efd32": { - "address": "0xb6ff96b8a8d214544ca0dbc9b33f7ad6503efd32", - "symbol": "SYNC", - "decimals": 18, - "name": "SYNC", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xb6ff96b8a8d214544ca0dbc9b33f7ad6503efd32.png", - "aggregators": [ - "CoinMarketCap", - "1inch", - "LiFi", - "TrustWallet", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 8 - }, - "0xc0ba369c8db6eb3924965e5c4fd0b4c1b91e305f": { - "address": "0xc0ba369c8db6eb3924965e5c4fd0b4c1b91e305f", - "symbol": "DUCK", - "decimals": 18, - "name": "DLP Duck Token", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xc0ba369c8db6eb3924965e5c4fd0b4c1b91e305f.png", - "aggregators": [ - "Metamask", - "1inch", - "LiFi", - "TrustWallet", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 8 - }, - "0xd9016a907dc0ecfa3ca425ab20b6b785b42f2373": { - "address": "0xd9016a907dc0ecfa3ca425ab20b6b785b42f2373", - "symbol": "GMEE", - "decimals": 18, - "name": "GAMEE", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xd9016a907dc0ecfa3ca425ab20b6b785b42f2373.png", - "aggregators": [ - "CoinMarketCap", - "1inch", - "LiFi", - "Socket", - "Rubic", - "Rango", - "Sonarwatch", - "SushiSwap" - ], - "occurrences": 8 - }, - "0x374cb8c27130e2c9e04f44303f3c8351b9de61c1": { - "address": "0x374cb8c27130e2c9e04f44303f3c8351b9de61c1", - "symbol": "BAO", - "decimals": 18, - "name": "Bao Finance", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x374cb8c27130e2c9e04f44303f3c8351b9de61c1.png", - "aggregators": [ - "CoinGecko", - "1inch", - "Socket", - "Rubic", - "Squid", - "Rango", - "Sonarwatch", - "SushiSwap" - ], - "occurrences": 8 - }, - "0xd3e4ba569045546d09cf021ecc5dfe42b1d7f6e4": { - "address": "0xd3e4ba569045546d09cf021ecc5dfe42b1d7f6e4", - "symbol": "MNW", - "decimals": 18, - "name": "MorpheusNetwork", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xd3e4ba569045546d09cf021ecc5dfe42b1d7f6e4.png", - "aggregators": [ - "CoinMarketCap", - "1inch", - "LiFi", - "Socket", - "Rubic", - "Rango", - "Sonarwatch", - "Bancor" - ], - "occurrences": 8 - }, - "0x77777feddddffc19ff86db637967013e6c6a116c": { - "address": "0x77777feddddffc19ff86db637967013e6c6a116c", - "symbol": "TORN", - "decimals": 18, - "name": "Tornado Cash", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x77777feddddffc19ff86db637967013e6c6a116c.png", - "aggregators": [ - "CoinMarketCap", - "LiFi", - "TrustWallet", - "Socket", - "Rubic", - "Rango", - "Sonarwatch", - "SushiSwap" - ], - "occurrences": 8 - }, - "0xc0f9bd5fa5698b6505f643900ffa515ea5df54a9": { - "address": "0xc0f9bd5fa5698b6505f643900ffa515ea5df54a9", - "symbol": "DONUT", - "decimals": 18, - "name": "Donut", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xc0f9bd5fa5698b6505f643900ffa515ea5df54a9.png", - "aggregators": [ - "CoinMarketCap", - "1inch", - "LiFi", - "Socket", - "Rubic", - "Rango", - "Sonarwatch", - "SushiSwap" - ], - "occurrences": 8 - }, - "0xa47c8bf37f92abed4a126bda807a7b7498661acd": { - "address": "0xa47c8bf37f92abed4a126bda807a7b7498661acd", - "symbol": "USTC", - "decimals": 18, - "name": "Wrapped USTC Token", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xa47c8bf37f92abed4a126bda807a7b7498661acd.png", - "aggregators": [ - "Metamask", - "1inch", - "LiFi", - "Socket", - "Rubic", - "Rango", - "Sonarwatch", - "SushiSwap" - ], - "occurrences": 8 - }, - "0xb0b195aefa3650a6908f15cdac7d92f8a5791b0b": { - "address": "0xb0b195aefa3650a6908f15cdac7d92f8a5791b0b", - "symbol": "BOB", - "decimals": 18, - "name": "BOB", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xb0b195aefa3650a6908f15cdac7d92f8a5791b0b.png", - "aggregators": [ - "CoinMarketCap", - "1inch", - "LiFi", - "Socket", - "Rubic", - "Rango", - "Sonarwatch", - "SushiSwap" - ], - "occurrences": 8 - }, - "0x5caf454ba92e6f2c929df14667ee360ed9fd5b26": { - "address": "0x5caf454ba92e6f2c929df14667ee360ed9fd5b26", - "symbol": "DEV", - "decimals": 18, - "name": "Dev", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x5caf454ba92e6f2c929df14667ee360ed9fd5b26.png", - "aggregators": [ - "CoinMarketCap", - "1inch", - "LiFi", - "TrustWallet", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 8 - }, - "0x86772b1409b61c639eaac9ba0acfbb6e238e5f83": { - "address": "0x86772b1409b61c639eaac9ba0acfbb6e238e5f83", - "symbol": "NDX", - "decimals": 18, - "name": "Indexed", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x86772b1409b61c639eaac9ba0acfbb6e238e5f83.png", - "aggregators": [ - "CoinMarketCap", - "LiFi", - "Socket", - "Rubic", - "Rango", - "Sonarwatch", - "SushiSwap", - "Bancor" - ], - "occurrences": 8 - }, - "0x1337def18c680af1f9f45cbcab6309562975b1dd": { - "address": "0x1337def18c680af1f9f45cbcab6309562975b1dd", - "symbol": "ARNXM", - "decimals": 18, - "name": "Armor NXM", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x1337def18c680af1f9f45cbcab6309562975b1dd.png", - "aggregators": [ - "CoinMarketCap", - "1inch", - "LiFi", - "TrustWallet", - "Rubic", - "Rango", - "SushiSwap", - "Bancor" - ], - "occurrences": 8 - }, - "0x3593d125a4f7849a1b059e64f4517a86dd60c95d": { - "address": "0x3593d125a4f7849a1b059e64f4517a86dd60c95d", - "symbol": "OM", - "decimals": 18, - "name": "MANTRA", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x3593d125a4f7849a1b059e64f4517a86dd60c95d.png", - "aggregators": [ - "1inch", - "LiFi", - "TrustWallet", - "Socket", - "Rubic", - "Squid", - "Rango", - "Sonarwatch" - ], - "occurrences": 8 - }, - "0x8457ca5040ad67fdebbcc8edce889a335bc0fbfb": { - "address": "0x8457ca5040ad67fdebbcc8edce889a335bc0fbfb", - "symbol": "ALT", - "decimals": 18, - "name": "AltLayer", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x8457ca5040ad67fdebbcc8edce889a335bc0fbfb.png", - "aggregators": [ - "CoinMarketCap", - "1inch", - "LiFi", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 7 - }, - "0x6e2a43be0b1d33b726f0ca3b8de60b3482b8b050": { - "address": "0x6e2a43be0b1d33b726f0ca3b8de60b3482b8b050", - "symbol": "ARKM", - "decimals": 18, - "name": "Arkham", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x6e2a43be0b1d33b726f0ca3b8de60b3482b8b050.png", - "aggregators": [ - "CoinMarketCap", - "1inch", - "LiFi", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 7 - }, - "0x62d0a8458ed7719fdaf978fe5929c6d342b0bfce": { - "address": "0x62d0a8458ed7719fdaf978fe5929c6d342b0bfce", - "symbol": "BEAM", - "decimals": 18, - "name": "Beam", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x62d0a8458ed7719fdaf978fe5929c6d342b0bfce.png", - "aggregators": [ - "CoinMarketCap", - "1inch", - "Socket", - "Rubic", - "Squid", - "Rango", - "Sonarwatch" - ], - "occurrences": 7 - }, - "0x3597bfd533a99c9aa083587b074434e61eb0a258": { - "address": "0x3597bfd533a99c9aa083587b074434e61eb0a258", - "symbol": "DENT", - "decimals": 8, - "name": "Dent", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x3597bfd533a99c9aa083587b074434e61eb0a258.png", - "aggregators": [ - "CoinMarketCap", - "1inch", - "Socket", - "Rubic", - "Squid", - "Rango", - "Sonarwatch" - ], - "occurrences": 7 - }, - "0xd9fcd98c322942075a5c3860693e9f4f03aae07b": { - "address": "0xd9fcd98c322942075a5c3860693e9f4f03aae07b", - "symbol": "EUL", - "decimals": 18, - "name": "Euler", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xd9fcd98c322942075a5c3860693e9f4f03aae07b.png", - "aggregators": [ - "Metamask", - "1inch", - "LiFi", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 7 - }, - "0x1abaea1f7c830bd89acc67ec4af516284b1bc33c": { - "address": "0x1abaea1f7c830bd89acc67ec4af516284b1bc33c", - "symbol": "EURC", - "decimals": 6, - "name": "EURC", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x1abaea1f7c830bd89acc67ec4af516284b1bc33c.png", - "aggregators": [ - "Metamask", - "1inch", - "LiFi", - "Rubic", - "Squid", - "Rango", - "Sonarwatch" - ], - "occurrences": 7 - }, - "0x77fba179c79de5b7653f68b5039af940ada60ce0": { - "address": "0x77fba179c79de5b7653f68b5039af940ada60ce0", - "symbol": "FORTH", - "decimals": 18, - "name": "Ampleforth Governance", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x77fba179c79de5b7653f68b5039af940ada60ce0.png", - "aggregators": [ - "OpenSwap", - "1inch", - "LiFi", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 7 - }, - "0x3f382dbd960e3a9bbceae22651e88158d2791550": { - "address": "0x3f382dbd960e3a9bbceae22651e88158d2791550", - "symbol": "GHST", - "decimals": 18, - "name": "Aavegotchi", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x3f382dbd960e3a9bbceae22651e88158d2791550.png", - "aggregators": [ - "CoinMarketCap", - "1inch", - "LiFi", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 7 - }, - "0xb3999f658c0391d94a37f7ff328f3fec942bcadc": { - "address": "0xb3999f658c0391d94a37f7ff328f3fec942bcadc", - "symbol": "HFT", - "decimals": 18, - "name": "Hashflow", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xb3999f658c0391d94a37f7ff328f3fec942bcadc.png", - "aggregators": [ - "CoinMarketCap", - "1inch", - "LiFi", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 7 - }, - "0x4b1e80cac91e2216eeb63e29b957eb91ae9c2be8": { - "address": "0x4b1e80cac91e2216eeb63e29b957eb91ae9c2be8", - "symbol": "JUP", - "decimals": 18, - "name": "Jupiter", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x4b1e80cac91e2216eeb63e29b957eb91ae9c2be8.png", - "aggregators": [ - "CoinMarketCap", - "1inch", - "TrustWallet", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 7 - }, - "0x037a54aab062628c9bbae1fdb1583c195585fe41": { - "address": "0x037a54aab062628c9bbae1fdb1583c195585fe41", - "symbol": "LCX", - "decimals": 18, - "name": "LCX", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x037a54aab062628c9bbae1fdb1583c195585fe41.png", - "aggregators": [ - "OpenSwap", - "1inch", - "LiFi", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 7 - }, - "0x814e0908b12a99fecf5bc101bb5d0b8b5cdf7d26": { - "address": "0x814e0908b12a99fecf5bc101bb5d0b8b5cdf7d26", - "symbol": "MDT", - "decimals": 18, - "name": "Measurable Data Token", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x814e0908b12a99fecf5bc101bb5d0b8b5cdf7d26.png", - "aggregators": [ - "OpenSwap", - "LiFi", - "Socket", - "Rubic", - "Rango", - "Sonarwatch", - "Bancor" - ], - "occurrences": 7 - }, - "0xb131f4a55907b10d1f0a50d8ab8fa09ec342cd74": { - "address": "0xb131f4a55907b10d1f0a50d8ab8fa09ec342cd74", - "symbol": "MEME", - "decimals": 18, - "name": "Memecoin", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xb131f4a55907b10d1f0a50d8ab8fa09ec342cd74.png", - "aggregators": [ - "CoinMarketCap", - "1inch", - "LiFi", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 7 - }, - "0x6c28aef8977c9b773996d0e8376d2ee379446f2f": { - "address": "0x6c28aef8977c9b773996d0e8376d2ee379446f2f", - "symbol": "QUICK", - "decimals": 18, - "name": "Quickswap", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x6c28aef8977c9b773996d0e8376d2ee379446f2f.png", - "aggregators": [ - "OpenSwap", - "LiFi", - "Socket", - "Rubic", - "Rango", - "Sonarwatch", - "Bancor" - ], - "occurrences": 7 - }, - "0xcc8fa225d80b9c7d42f96e9570156c65d6caaa25": { - "address": "0xcc8fa225d80b9c7d42f96e9570156c65d6caaa25", - "symbol": "SLP", - "decimals": 18, - "name": "Smooth Love Potion", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xcc8fa225d80b9c7d42f96e9570156c65d6caaa25.png", - "aggregators": [ - "Metamask", - "1inch", - "LiFi", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 7 - }, - "0xd31a59c85ae9d8edefec411d448f90841571b89c": { - "address": "0xd31a59c85ae9d8edefec411d448f90841571b89c", - "symbol": "SOL", - "decimals": 9, - "name": "Wormhole Bridged SOL", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xd31a59c85ae9d8edefec411d448f90841571b89c.png", - "aggregators": [ - "OpenSwap", - "1inch", - "LiFi", - "Rubic", - "Squid", - "Rango", - "Sonarwatch" - ], - "occurrences": 7 - }, - "0xd084b83c305dafd76ae3e1b4e1f1fe2ecccb3988": { - "address": "0xd084b83c305dafd76ae3e1b4e1f1fe2ecccb3988", - "symbol": "TVK", - "decimals": 18, - "name": "Terra Virtua Kolect", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xd084b83c305dafd76ae3e1b4e1f1fe2ecccb3988.png", - "aggregators": [ - "CoinGecko", - "LiFi", - "TrustWallet", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 7 - }, - "0xc221b7e65ffc80de234bbb6667abdd46593d34f0": { - "address": "0xc221b7e65ffc80de234bbb6667abdd46593d34f0", - "symbol": "WCFG", - "decimals": 18, - "name": "Wrapped Centrifuge", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xc221b7e65ffc80de234bbb6667abdd46593d34f0.png", - "aggregators": [ - "CoinMarketCap", - "1inch", - "LiFi", - "Rubic", - "Squid", - "Rango", - "Sonarwatch" - ], - "occurrences": 7 - }, - "0xf091867ec603a6628ed83d274e835539d82e9cc8": { - "address": "0xf091867ec603a6628ed83d274e835539d82e9cc8", - "symbol": "ZETA", - "decimals": 18, - "name": "Zeta", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xf091867ec603a6628ed83d274e835539d82e9cc8.png", - "aggregators": [ - "CoinMarketCap", - "LiFi", - "Socket", - "Rubic", - "Rango", - "Sonarwatch", - "SushiSwap" - ], - "occurrences": 7 - }, - "0xbcca60bb61934080951369a648fb03df4f96263c": { - "address": "0xbcca60bb61934080951369a648fb03df4f96263c", - "symbol": "AUSDC", - "decimals": 6, - "name": "Aave USDC", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xbcca60bb61934080951369a648fb03df4f96263c.png", - "aggregators": [ - "Metamask", - "1inch", - "LiFi", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 7 - }, - "0xf80d589b3dbe130c270a69f1a69d050f268786df": { - "address": "0xf80d589b3dbe130c270a69f1a69d050f268786df", - "symbol": "DAM", - "decimals": 18, - "name": "Datamine", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xf80d589b3dbe130c270a69f1a69d050f268786df.png", - "aggregators": [ - "CoinMarketCap", - "LiFi", - "Socket", - "Rubic", - "Rango", - "Sonarwatch", - "SushiSwap" - ], - "occurrences": 7 - }, - "0x4e352cf164e64adcbad318c3a1e222e9eba4ce42": { - "address": "0x4e352cf164e64adcbad318c3a1e222e9eba4ce42", - "symbol": "MCB", - "decimals": 18, - "name": "MCDEX Token", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x4e352cf164e64adcbad318c3a1e222e9eba4ce42.png", - "aggregators": [ - "CoinMarketCap", - "LiFi", - "TrustWallet", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 7 - }, - "0x7968bc6a03017ea2de509aaa816f163db0f35148": { - "address": "0x7968bc6a03017ea2de509aaa816f163db0f35148", - "symbol": "HGET", - "decimals": 6, - "name": "Hedget", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x7968bc6a03017ea2de509aaa816f163db0f35148.png", - "aggregators": [ - "CoinMarketCap", - "1inch", - "LiFi", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 7 - }, - "0xa58a4f5c4bb043d2cc1e170613b74e767c94189b": { - "address": "0xa58a4f5c4bb043d2cc1e170613b74e767c94189b", - "symbol": "UTU", - "decimals": 18, - "name": "UTU Coin", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xa58a4f5c4bb043d2cc1e170613b74e767c94189b.png", - "aggregators": [ - "CoinMarketCap", - "1inch", - "LiFi", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 7 - }, - "0x1beef31946fbbb40b877a72e4ae04a8d1a5cee06": { - "address": "0x1beef31946fbbb40b877a72e4ae04a8d1a5cee06", - "symbol": "PAR", - "decimals": 18, - "name": "Parachute", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x1beef31946fbbb40b877a72e4ae04a8d1a5cee06.png", - "aggregators": [ - "CoinMarketCap", - "1inch", - "Socket", - "Rubic", - "Rango", - "Sonarwatch", - "Bancor" - ], - "occurrences": 7 - }, - "0x9c78ee466d6cb57a4d01fd887d2b5dfb2d46288f": { - "address": "0x9c78ee466d6cb57a4d01fd887d2b5dfb2d46288f", - "symbol": "MUST", - "decimals": 18, - "name": "Must", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x9c78ee466d6cb57a4d01fd887d2b5dfb2d46288f.png", - "aggregators": [ - "CoinMarketCap", - "LiFi", - "Socket", - "Rubic", - "Rango", - "Sonarwatch", - "SushiSwap" - ], - "occurrences": 7 - }, - "0x7866e48c74cbfb8183cd1a929cd9b95a7a5cb4f4": { - "address": "0x7866e48c74cbfb8183cd1a929cd9b95a7a5cb4f4", - "symbol": "KIT", - "decimals": 18, - "name": "DexKit", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x7866e48c74cbfb8183cd1a929cd9b95a7a5cb4f4.png", - "aggregators": [ - "CoinMarketCap", - "1inch", - "LiFi", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 7 - }, - "0xc57d533c50bc22247d49a368880fb49a1caa39f7": { - "address": "0xc57d533c50bc22247d49a368880fb49a1caa39f7", - "symbol": "PTF", - "decimals": 18, - "name": "PowerTrade Fuel", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xc57d533c50bc22247d49a368880fb49a1caa39f7.png", - "aggregators": [ - "CoinMarketCap", - "LiFi", - "TrustWallet", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 7 - }, - "0x6b9f031d718dded0d681c20cb754f97b3bb81b78": { - "address": "0x6b9f031d718dded0d681c20cb754f97b3bb81b78", - "symbol": "GEEQ", - "decimals": 18, - "name": "GEEQ", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x6b9f031d718dded0d681c20cb754f97b3bb81b78.png", - "aggregators": [ - "CoinMarketCap", - "1inch", - "LiFi", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 7 - }, - "0x6b785a0322126826d8226d77e173d75dafb84d11": { - "address": "0x6b785a0322126826d8226d77e173d75dafb84d11", - "symbol": "VLT", - "decimals": 18, - "name": "Bankroll Vault", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x6b785a0322126826d8226d77e173d75dafb84d11.png", - "aggregators": [ - "CoinMarketCap", - "1inch", - "LiFi", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 7 - }, - "0x038a68ff68c393373ec894015816e33ad41bd564": { - "address": "0x038a68ff68c393373ec894015816e33ad41bd564", - "symbol": "GLCH", - "decimals": 18, - "name": "Glitch Protocol", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x038a68ff68c393373ec894015816e33ad41bd564.png", - "aggregators": [ - "CoinMarketCap", - "1inch", - "LiFi", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 7 - }, - "0xdf574c24545e5ffecb9a659c229253d4111d87e1": { - "address": "0xdf574c24545e5ffecb9a659c229253d4111d87e1", - "symbol": "HUSD", - "decimals": 8, - "name": "HUSD", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xdf574c24545e5ffecb9a659c229253d4111d87e1.png", - "aggregators": [ - "Metamask", - "LiFi", - "Socket", - "Rubic", - "Rango", - "Sonarwatch", - "SushiSwap" - ], - "occurrences": 7 - }, - "0x5218e472cfcfe0b64a064f055b43b4cdc9efd3a6": { - "address": "0x5218e472cfcfe0b64a064f055b43b4cdc9efd3a6", - "symbol": "ERSDL", - "decimals": 18, - "name": "unFederalReserve Token", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x5218e472cfcfe0b64a064f055b43b4cdc9efd3a6.png", - "aggregators": [ - "Metamask", - "TrustWallet", - "Socket", - "Rubic", - "Rango", - "Sonarwatch", - "Bancor" - ], - "occurrences": 7 - }, - "0x69fa0fee221ad11012bab0fdb45d444d3d2ce71c": { - "address": "0x69fa0fee221ad11012bab0fdb45d444d3d2ce71c", - "symbol": "XRUNE", - "decimals": 18, - "name": "XRUNE Token", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x69fa0fee221ad11012bab0fdb45d444d3d2ce71c.png", - "aggregators": [ - "CoinMarketCap", - "Socket", - "Rubic", - "Squid", - "Rango", - "Sonarwatch", - "SushiSwap" - ], - "occurrences": 7 - }, - "0xb755506531786c8ac63b756bab1ac387bacb0c04": { - "address": "0xb755506531786c8ac63b756bab1ac387bacb0c04", - "symbol": "ZARP", - "decimals": 18, - "name": "ZARP Stablecoin", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xb755506531786c8ac63b756bab1ac387bacb0c04.png", - "aggregators": [ - "CoinMarketCap", - "1inch", - "Socket", - "Rubic", - "Squid", - "Rango", - "Sonarwatch" - ], - "occurrences": 7 - }, - "0xf411903cbc70a74d22900a5de66a2dda66507255": { - "address": "0xf411903cbc70a74d22900a5de66a2dda66507255", - "symbol": "VRA", - "decimals": 18, - "name": "Verasity", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xf411903cbc70a74d22900a5de66a2dda66507255.png", - "aggregators": [ - "CoinMarketCap", - "1inch", - "TrustWallet", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 7 - }, - "0x6f80310ca7f2c654691d1383149fa1a57d8ab1f8": { - "address": "0x6f80310ca7f2c654691d1383149fa1a57d8ab1f8", - "symbol": "SILO", - "decimals": 18, - "name": "Silo Governance Token", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x6f80310ca7f2c654691d1383149fa1a57d8ab1f8.png", - "aggregators": [ - "CoinGecko", - "LiFi", - "Socket", - "Rubic", - "Rango", - "Sonarwatch", - "Bancor" - ], - "occurrences": 7 - }, - "0xc813ea5e3b48bebeedb796ab42a30c5599b01740": { - "address": "0xc813ea5e3b48bebeedb796ab42a30c5599b01740", - "symbol": "NIOX", - "decimals": 4, - "name": "Autonio", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xc813ea5e3b48bebeedb796ab42a30c5599b01740.png", - "aggregators": [ - "CoinMarketCap", - "1inch", - "LiFi", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 7 - }, - "0xaac41ec512808d64625576eddd580e7ea40ef8b2": { - "address": "0xaac41ec512808d64625576eddd580e7ea40ef8b2", - "symbol": "GSWAP", - "decimals": 18, - "name": "Gameswap", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xaac41ec512808d64625576eddd580e7ea40ef8b2.png", - "aggregators": [ - "CoinMarketCap", - "1inch", - "LiFi", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 7 - }, - "0x0e8d6b471e332f140e7d9dbb99e5e3822f728da6": { - "address": "0x0e8d6b471e332f140e7d9dbb99e5e3822f728da6", - "symbol": "ABYSS", - "decimals": 18, - "name": "Abyss", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x0e8d6b471e332f140e7d9dbb99e5e3822f728da6.png", - "aggregators": [ - "CoinMarketCap", - "1inch", - "LiFi", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 7 - }, - "0x910dfc18d6ea3d6a7124a6f8b5458f281060fa4c": { - "address": "0x910dfc18d6ea3d6a7124a6f8b5458f281060fa4c", - "symbol": "X8X", - "decimals": 18, - "name": "X8XToken", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x910dfc18d6ea3d6a7124a6f8b5458f281060fa4c.png", - "aggregators": [ - "CoinMarketCap", - "LiFi", - "Socket", - "Rubic", - "Rango", - "Sonarwatch", - "Bancor" - ], - "occurrences": 7 - }, - "0xba3335588d9403515223f109edc4eb7269a9ab5d": { - "address": "0xba3335588d9403515223f109edc4eb7269a9ab5d", - "symbol": "GEAR", - "decimals": 18, - "name": "Gearbox", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xba3335588d9403515223f109edc4eb7269a9ab5d.png", - "aggregators": [ - "Metamask", - "1inch", - "LiFi", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 7 - }, - "0x3c8d2fce49906e11e71cb16fa0ffeb2b16c29638": { - "address": "0x3c8d2fce49906e11e71cb16fa0ffeb2b16c29638", - "symbol": "NFTL", - "decimals": 18, - "name": "Nifty League", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x3c8d2fce49906e11e71cb16fa0ffeb2b16c29638.png", - "aggregators": [ - "CoinMarketCap", - "Socket", - "Rubic", - "Squid", - "Rango", - "Sonarwatch", - "SushiSwap" - ], - "occurrences": 7 - }, - "0x9d65ff81a3c488d585bbfb0bfe3c7707c7917f54": { - "address": "0x9d65ff81a3c488d585bbfb0bfe3c7707c7917f54", - "symbol": "SSV", - "decimals": 18, - "name": "SSV Network", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x9d65ff81a3c488d585bbfb0bfe3c7707c7917f54.png", - "aggregators": [ - "CoinMarketCap", - "1inch", - "LiFi", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 7 - }, - "0x6e9730ecffbed43fd876a264c982e254ef05a0de": { - "address": "0x6e9730ecffbed43fd876a264c982e254ef05a0de", - "symbol": "NORD", - "decimals": 18, - "name": "Nord Finance", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x6e9730ecffbed43fd876a264c982e254ef05a0de.png", - "aggregators": [ - "CoinMarketCap", - "1inch", - "LiFi", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 7 - }, - "0x32a7c02e79c4ea1008dd6564b35f131428673c41": { - "address": "0x32a7c02e79c4ea1008dd6564b35f131428673c41", - "symbol": "CRU", - "decimals": 18, - "name": "CRUST", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x32a7c02e79c4ea1008dd6564b35f131428673c41.png", - "aggregators": [ - "Metamask", - "1inch", - "LiFi", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 7 - }, - "0xa1290d69c65a6fe4df752f95823fae25cb99e5a7": { - "address": "0xa1290d69c65a6fe4df752f95823fae25cb99e5a7", - "symbol": "RSETH", - "decimals": 18, - "name": "Kelp DAO Restaked ETH", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xa1290d69c65a6fe4df752f95823fae25cb99e5a7.png", - "aggregators": [ - "CoinMarketCap", - "1inch", - "LiFi", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 7 - }, - "0x2e1e15c44ffe4df6a0cb7371cd00d5028e571d14": { - "address": "0x2e1e15c44ffe4df6a0cb7371cd00d5028e571d14", - "symbol": "MTLX", - "decimals": 18, - "name": "Mettalex", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x2e1e15c44ffe4df6a0cb7371cd00d5028e571d14.png", - "aggregators": [ - "Metamask", - "1inch", - "TrustWallet", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 7 - }, - "0x35fa164735182de50811e8e2e824cfb9b6118ac2": { - "address": "0x35fa164735182de50811e8e2e824cfb9b6118ac2", - "symbol": "EETH", - "decimals": 18, - "name": "ether.fi Staked ETH", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x35fa164735182de50811e8e2e824cfb9b6118ac2.png", - "aggregators": [ - "Metamask", - "1inch", - "LiFi", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 7 - }, - "0x4cf89ca06ad997bc732dc876ed2a7f26a9e7f361": { - "address": "0x4cf89ca06ad997bc732dc876ed2a7f26a9e7f361", - "symbol": "MYST", - "decimals": 18, - "name": "Mysterium", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x4cf89ca06ad997bc732dc876ed2a7f26a9e7f361.png", - "aggregators": [ - "Metamask", - "1inch", - "LiFi", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 7 - }, - "0xb6ed7644c69416d67b522e20bc294a9a9b405b31": { - "address": "0xb6ed7644c69416d67b522e20bc294a9a9b405b31", - "symbol": "0XBTC", - "decimals": 8, - "name": "0xBitcoin Token", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xb6ed7644c69416d67b522e20bc294a9a9b405b31.png", - "aggregators": [ - "Metamask", - "1inch", - "LiFi", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 7 - }, - "0xedf6568618a00c6f0908bf7758a16f76b6e04af9": { - "address": "0xedf6568618a00c6f0908bf7758a16f76b6e04af9", - "symbol": "ARIA20", - "decimals": 18, - "name": "Arianee", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xedf6568618a00c6f0908bf7758a16f76b6e04af9.png", - "aggregators": [ - "Metamask", - "1inch", - "LiFi", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 7 - }, - "0x0488401c3f535193fa8df029d9ffe615a06e74e6": { - "address": "0x0488401c3f535193fa8df029d9ffe615a06e74e6", - "symbol": "SRK", - "decimals": 18, - "name": "SparkPoint", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x0488401c3f535193fa8df029d9ffe615a06e74e6.png", - "aggregators": [ - "CoinMarketCap", - "1inch", - "TrustWallet", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 7 - }, - "0x6f259637dcd74c767781e37bc6133cd6a68aa161": { - "address": "0x6f259637dcd74c767781e37bc6133cd6a68aa161", - "symbol": "HT", - "decimals": 18, - "name": "Huobi", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x6f259637dcd74c767781e37bc6133cd6a68aa161.png", - "aggregators": [ - "CoinMarketCap", - "1inch", - "LiFi", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 7 - }, - "0x0ff6ffcfda92c53f615a4a75d982f399c989366b": { - "address": "0x0ff6ffcfda92c53f615a4a75d982f399c989366b", - "symbol": "LAYER", - "decimals": 18, - "name": "Unilayer", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x0ff6ffcfda92c53f615a4a75d982f399c989366b.png", - "aggregators": [ - "CoinMarketCap", - "LiFi", - "TrustWallet", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 7 - }, - "0x34950ff2b487d9e5282c5ab342d08a2f712eb79f": { - "address": "0x34950ff2b487d9e5282c5ab342d08a2f712eb79f", - "symbol": "WOZX", - "decimals": 18, - "name": "Efforce", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x34950ff2b487d9e5282c5ab342d08a2f712eb79f.png", - "aggregators": [ - "CoinMarketCap", - "1inch", - "LiFi", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 7 - }, - "0x50de6856358cc35f3a9a57eaaa34bd4cb707d2cd": { - "address": "0x50de6856358cc35f3a9a57eaaa34bd4cb707d2cd", - "symbol": "RAZOR", - "decimals": 18, - "name": "Razor Network", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x50de6856358cc35f3a9a57eaaa34bd4cb707d2cd.png", - "aggregators": [ - "CoinMarketCap", - "LiFi", - "TrustWallet", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 7 - }, - "0x16cda4028e9e872a38acb903176719299beaed87": { - "address": "0x16cda4028e9e872a38acb903176719299beaed87", - "symbol": "MARS4", - "decimals": 18, - "name": "MARS4", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x16cda4028e9e872a38acb903176719299beaed87.png", - "aggregators": [ - "CoinMarketCap", - "Socket", - "Rubic", - "Squid", - "Rango", - "Sonarwatch", - "SushiSwap" - ], - "occurrences": 7 - }, - "0x0316eb71485b0ab14103307bf65a021042c6d380": { - "address": "0x0316eb71485b0ab14103307bf65a021042c6d380", - "symbol": "HBTC", - "decimals": 18, - "name": "Huobi BTC", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x0316eb71485b0ab14103307bf65a021042c6d380.png", - "aggregators": [ - "CoinMarketCap", - "LiFi", - "Socket", - "Rubic", - "Rango", - "Sonarwatch", - "SushiSwap" - ], - "occurrences": 7 - }, - "0x62dc4817588d53a056cbbd18231d91ffccd34b2a": { - "address": "0x62dc4817588d53a056cbbd18231d91ffccd34b2a", - "symbol": "DHV", - "decimals": 18, - "name": "DeHive", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x62dc4817588d53a056cbbd18231d91ffccd34b2a.png", - "aggregators": [ - "Metamask", - "1inch", - "LiFi", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 7 - }, - "0x6468e79a80c0eab0f9a2b574c8d5bc374af59414": { - "address": "0x6468e79a80c0eab0f9a2b574c8d5bc374af59414", - "symbol": "EXRD", - "decimals": 18, - "name": "e Radix", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x6468e79a80c0eab0f9a2b574c8d5bc374af59414.png", - "aggregators": [ - "CoinMarketCap", - "1inch", - "LiFi", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 7 - }, - "0xa8b12cc90abf65191532a12bb5394a714a46d358": { - "address": "0xa8b12cc90abf65191532a12bb5394a714a46d358", - "symbol": "PBTC35A", - "decimals": 18, - "name": "pBTC35A", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xa8b12cc90abf65191532a12bb5394a714a46d358.png", - "aggregators": [ - "CoinMarketCap", - "1inch", - "LiFi", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 7 - }, - "0xfe9a29ab92522d14fc65880d817214261d8479ae": { - "address": "0xfe9a29ab92522d14fc65880d817214261d8479ae", - "symbol": "SNOW", - "decimals": 18, - "name": "Snowswap", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xfe9a29ab92522d14fc65880d817214261d8479ae.png", - "aggregators": [ - "CoinMarketCap", - "1inch", - "LiFi", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 7 - }, - "0x0ab87046fbb341d058f17cbc4c1133f25a20a52f": { - "address": "0x0ab87046fbb341d058f17cbc4c1133f25a20a52f", - "symbol": "GOHM", - "decimals": 18, - "name": "Governance OHM", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x0ab87046fbb341d058f17cbc4c1133f25a20a52f.png", - "aggregators": [ - "Metamask", - "1inch", - "LiFi", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 7 - }, - "0xb056c38f6b7dc4064367403e26424cd2c60655e1": { - "address": "0xb056c38f6b7dc4064367403e26424cd2c60655e1", - "symbol": "CEEK", - "decimals": 18, - "name": "CEEK", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xb056c38f6b7dc4064367403e26424cd2c60655e1.png", - "aggregators": [ - "CoinMarketCap", - "LiFi", - "Socket", - "Rubic", - "Rango", - "Sonarwatch", - "Bancor" - ], - "occurrences": 7 - }, - "0xc477d038d5420c6a9e0b031712f61c5120090de9": { - "address": "0xc477d038d5420c6a9e0b031712f61c5120090de9", - "symbol": "BOSON", - "decimals": 18, - "name": "Boson Token", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xc477d038d5420c6a9e0b031712f61c5120090de9.png", - "aggregators": [ - "Metamask", - "1inch", - "LiFi", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 7 - }, - "0x3505f494c3f0fed0b594e01fa41dd3967645ca39": { - "address": "0x3505f494c3f0fed0b594e01fa41dd3967645ca39", - "symbol": "SWM", - "decimals": 18, - "name": "SWARM", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x3505f494c3f0fed0b594e01fa41dd3967645ca39.png", - "aggregators": [ - "Metamask", - "1inch", - "LiFi", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 7 - }, - "0xc28e931814725bbeb9e670676fabbcb694fe7df2": { - "address": "0xc28e931814725bbeb9e670676fabbcb694fe7df2", - "symbol": "EQUAD", - "decimals": 18, - "name": "Quadrant Protocol", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xc28e931814725bbeb9e670676fabbcb694fe7df2.png", - "aggregators": [ - "CoinMarketCap", - "1inch", - "LiFi", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 7 - }, - "0xfbeea1c75e4c4465cb2fccc9c6d6afe984558e20": { - "address": "0xfbeea1c75e4c4465cb2fccc9c6d6afe984558e20", - "symbol": "DDIM", - "decimals": 18, - "name": "DuckDaoDime", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xfbeea1c75e4c4465cb2fccc9c6d6afe984558e20.png", - "aggregators": [ - "Metamask", - "LiFi", - "TrustWallet", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 7 - }, - "0x3c9d6c1c73b31c837832c72e04d3152f051fc1a9": { - "address": "0x3c9d6c1c73b31c837832c72e04d3152f051fc1a9", - "symbol": "BOR", - "decimals": 18, - "name": "BoringDAO", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x3c9d6c1c73b31c837832c72e04d3152f051fc1a9.png", - "aggregators": [ - "CoinMarketCap", - "LiFi", - "Rubic", - "Rango", - "Sonarwatch", - "SushiSwap", - "Bancor" - ], - "occurrences": 7 - }, - "0x70401dfd142a16dc7031c56e862fc88cb9537ce0": { - "address": "0x70401dfd142a16dc7031c56e862fc88cb9537ce0", - "symbol": "BIRD", - "decimals": 18, - "name": "Bird.Money", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x70401dfd142a16dc7031c56e862fc88cb9537ce0.png", - "aggregators": [ - "CoinMarketCap", - "LiFi", - "TrustWallet", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 7 - }, - "0x368b3a58b5f49392e5c9e4c998cb0bb966752e51": { - "address": "0x368b3a58b5f49392e5c9e4c998cb0bb966752e51", - "symbol": "MIC", - "decimals": 18, - "name": "Mithril Cash", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x368b3a58b5f49392e5c9e4c998cb0bb966752e51.png", - "aggregators": [ - "CoinMarketCap", - "1inch", - "LiFi", - "Socket", - "Rubic", - "Rango", - "SushiSwap" - ], - "occurrences": 7 - }, - "0x16c52ceece2ed57dad87319d91b5e3637d50afa4": { - "address": "0x16c52ceece2ed57dad87319d91b5e3637d50afa4", - "symbol": "TCAP", - "decimals": 18, - "name": "TCAP Token", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x16c52ceece2ed57dad87319d91b5e3637d50afa4.png", - "aggregators": [ - "Metamask", - "1inch", - "LiFi", - "Socket", - "Rubic", - "Rango", - "SushiSwap" - ], - "occurrences": 7 - }, - "0x178c820f862b14f316509ec36b13123da19a6054": { - "address": "0x178c820f862b14f316509ec36b13123da19a6054", - "symbol": "EWTB", - "decimals": 18, - "name": "Energy Web Token Bridged", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x178c820f862b14f316509ec36b13123da19a6054.png", - "aggregators": [ - "Metamask", - "1inch", - "LiFi", - "Socket", - "Rubic", - "Rango", - "Bancor" - ], - "occurrences": 7 - }, - "0x3155ba85d5f96b2d030a4966af206230e46849cb": { - "address": "0x3155ba85d5f96b2d030a4966af206230e46849cb", - "symbol": "RUNE", - "decimals": 18, - "name": "THORChain ETHRUNE", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x3155ba85d5f96b2d030a4966af206230e46849cb.png", - "aggregators": [ - "1inch", - "LiFi", - "Rubic", - "Squid", - "Rango", - "SushiSwap", - "Bancor" - ], - "occurrences": 7 - }, - "0xed04915c23f00a313a544955524eb7dbd823143d": { - "address": "0xed04915c23f00a313a544955524eb7dbd823143d", - "symbol": "ACH", - "decimals": 8, - "name": "Alchemy Pay", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xed04915c23f00a313a544955524eb7dbd823143d.png", - "aggregators": [ - "Metamask", - "1inch", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 6 - }, - "0xb528edbef013aff855ac3c50b381f253af13b997": { - "address": "0xb528edbef013aff855ac3c50b381f253af13b997", - "symbol": "AEVO", - "decimals": 18, - "name": "Aevo", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xb528edbef013aff855ac3c50b381f253af13b997.png", - "aggregators": [ - "CoinMarketCap", - "1inch", - "LiFi", - "Socket", - "Rubic", - "Sonarwatch" - ], - "occurrences": 6 - }, - "0xba50933c268f567bdc86e1ac131be072c6b0b71a": { - "address": "0xba50933c268f567bdc86e1ac131be072c6b0b71a", - "symbol": "ARPA", - "decimals": 18, - "name": "ARPA", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xba50933c268f567bdc86e1ac131be072c6b0b71a.png", - "aggregators": [ - "OpenSwap", - "LiFi", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 6 - }, - "0x64d91f12ece7362f91a6f8e7940cd55f05060b92": { - "address": "0x64d91f12ece7362f91a6f8e7940cd55f05060b92", - "symbol": "ASH", - "decimals": 18, - "name": "ASH", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x64d91f12ece7362f91a6f8e7940cd55f05060b92.png", - "aggregators": [ - "OpenSwap", - "1inch", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 6 - }, - "0x80c62fe4487e1351b47ba49809ebd60ed085bf52": { - "address": "0x80c62fe4487e1351b47ba49809ebd60ed085bf52", - "symbol": "CLV", - "decimals": 18, - "name": "Clover Finance", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x80c62fe4487e1351b47ba49809ebd60ed085bf52.png", - "aggregators": [ - "OpenSwap", - "1inch", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 6 - }, - "0x8c15ef5b4b21951d50e53e4fbda8298ffad25057": { - "address": "0x8c15ef5b4b21951d50e53e4fbda8298ffad25057", - "symbol": "FX", - "decimals": 18, - "name": "Function X", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x8c15ef5b4b21951d50e53e4fbda8298ffad25057.png", - "aggregators": [ - "OpenSwap", - "LiFi", - "TrustWallet", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 6 - }, - "0xdab396ccf3d84cf2d07c4454e10c8a6f5b008d2b": { - "address": "0xdab396ccf3d84cf2d07c4454e10c8a6f5b008d2b", - "symbol": "GFI", - "decimals": 18, - "name": "Goldfinch", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xdab396ccf3d84cf2d07c4454e10c8a6f5b008d2b.png", - "aggregators": [ - "OpenSwap", - "1inch", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 6 - }, - "0x1789e0043623282d5dcc7f213d703c6d8bafbb04": { - "address": "0x1789e0043623282d5dcc7f213d703c6d8bafbb04", - "symbol": "LINEA", - "decimals": 18, - "name": "Linea", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x1789e0043623282d5dcc7f213d703c6d8bafbb04.png", - "aggregators": [ - "Metamask", - "1inch", - "LiFi", - "Rubic", - "Squid", - "Rango" - ], - "occurrences": 6 - }, - "0x7c84e62859d0715eb77d1b1c4154ecd6abb21bec": { - "address": "0x7c84e62859d0715eb77d1b1c4154ecd6abb21bec", - "symbol": "SHPING", - "decimals": 18, - "name": "Shping Coin", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x7c84e62859d0715eb77d1b1c4154ecd6abb21bec.png", - "aggregators": [ - "OpenSwap", - "Socket", - "Rubic", - "Rango", - "Sonarwatch", - "SushiSwap" - ], - "occurrences": 6 - }, - "0xc20059e0317de91738d13af027dfc4a50781b066": { - "address": "0xc20059e0317de91738d13af027dfc4a50781b066", - "symbol": "SPARK", - "decimals": 18, - "name": "Spark", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xc20059e0317de91738d13af027dfc4a50781b066.png", - "aggregators": [ - "CoinMarketCap", - "1inch", - "LiFi", - "Socket", - "Rubic", - "Squid" - ], - "occurrences": 6 - }, - "0xfc1e690f61efd961294b3e1ce3313fbd8aa4f85d": { - "address": "0xfc1e690f61efd961294b3e1ce3313fbd8aa4f85d", - "symbol": "ADAI", - "decimals": 18, - "name": "Aave DAI v1", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xfc1e690f61efd961294b3e1ce3313fbd8aa4f85d.png", - "aggregators": [ - "CoinMarketCap", - "LiFi", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 6 - }, - "0x4da9b813057d04baef4e5800e36083717b4a0341": { - "address": "0x4da9b813057d04baef4e5800e36083717b4a0341", - "symbol": "ATUSD", - "decimals": 18, - "name": "Aave TUSD v1", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x4da9b813057d04baef4e5800e36083717b4a0341.png", - "aggregators": [ - "CoinMarketCap", - "LiFi", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 6 - }, - "0xfc4b8ed459e00e5400be803a9bb3954234fd50e3": { - "address": "0xfc4b8ed459e00e5400be803a9bb3954234fd50e3", - "symbol": "AWBTC", - "decimals": 8, - "name": "Aave WBTC v1", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xfc4b8ed459e00e5400be803a9bb3954234fd50e3.png", - "aggregators": [ - "CoinMarketCap", - "LiFi", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 6 - }, - "0x6781a0f84c7e9e846dcb84a9a5bd49333067b104": { - "address": "0x6781a0f84c7e9e846dcb84a9a5bd49333067b104", - "symbol": "ZAP", - "decimals": 18, - "name": "ZAP TOKEN", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x6781a0f84c7e9e846dcb84a9a5bd49333067b104.png", - "aggregators": [ - "Metamask", - "LiFi", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 6 - }, - "0xed0439eacf4c4965ae4613d77a5c2efe10e5f183": { - "address": "0xed0439eacf4c4965ae4613d77a5c2efe10e5f183", - "symbol": "SHROOM", - "decimals": 18, - "name": "Niftyx Protocol", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xed0439eacf4c4965ae4613d77a5c2efe10e5f183.png", - "aggregators": [ - "CoinMarketCap", - "1inch", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 6 - }, - "0x2edf094db69d6dcd487f1b3db9febe2eec0dd4c5": { - "address": "0x2edf094db69d6dcd487f1b3db9febe2eec0dd4c5", - "symbol": "ZEE", - "decimals": 18, - "name": "ZeroSwap", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x2edf094db69d6dcd487f1b3db9febe2eec0dd4c5.png", - "aggregators": [ - "CoinMarketCap", - "TrustWallet", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 6 - }, - "0x0cdf9acd87e940837ff21bb40c9fd55f68bba059": { - "address": "0x0cdf9acd87e940837ff21bb40c9fd55f68bba059", - "symbol": "MINT", - "decimals": 18, - "name": "Public Mint", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x0cdf9acd87e940837ff21bb40c9fd55f68bba059.png", - "aggregators": [ - "CoinMarketCap", - "TrustWallet", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 6 - }, - "0xf0939011a9bb95c3b791f0cb546377ed2693a574": { - "address": "0xf0939011a9bb95c3b791f0cb546377ed2693a574", - "symbol": "ZERO", - "decimals": 18, - "name": "0 exchange", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xf0939011a9bb95c3b791f0cb546377ed2693a574.png", - "aggregators": [ - "CoinMarketCap", - "1inch", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 6 - }, - "0x4156d3342d5c385a87d264f90653733592000581": { - "address": "0x4156d3342d5c385a87d264f90653733592000581", - "symbol": "SALT", - "decimals": 8, - "name": "SALT", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x4156d3342d5c385a87d264f90653733592000581.png", - "aggregators": [ - "CoinMarketCap", - "LiFi", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 6 - }, - "0x5d60d8d7ef6d37e16ebabc324de3be57f135e0bc": { - "address": "0x5d60d8d7ef6d37e16ebabc324de3be57f135e0bc", - "symbol": "MYB", - "decimals": 18, - "name": "MyBit", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x5d60d8d7ef6d37e16ebabc324de3be57f135e0bc.png", - "aggregators": [ - "Metamask", - "Socket", - "Rubic", - "Rango", - "Sonarwatch", - "Bancor" - ], - "occurrences": 6 - }, - "0x9aab071b4129b083b01cb5a0cb513ce7eca26fa5": { - "address": "0x9aab071b4129b083b01cb5a0cb513ce7eca26fa5", - "symbol": "HUNT", - "decimals": 18, - "name": "HUNT Token", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x9aab071b4129b083b01cb5a0cb513ce7eca26fa5.png", - "aggregators": [ - "Metamask", - "1inch", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 6 - }, - "0x6440f144b7e50d6a8439336510312d2f54beb01d": { - "address": "0x6440f144b7e50d6a8439336510312d2f54beb01d", - "symbol": "BOLD", - "decimals": 18, - "name": "Liquity BOLD", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x6440f144b7e50d6a8439336510312d2f54beb01d.png", - "aggregators": [ - "CoinMarketCap", - "1inch", - "LiFi", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 6 - }, - "0xd3fd63209fa2d55b07a0f6db36c2f43900be3094": { - "address": "0xd3fd63209fa2d55b07a0f6db36c2f43900be3094", - "symbol": "WSRUSD", - "decimals": 18, - "name": "Wrapped Savings rUSD", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xd3fd63209fa2d55b07a0f6db36c2f43900be3094.png", - "aggregators": [ - "CoinGecko", - "LiFi", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 6 - }, - "0xea7cc765ebc94c4805e3bff28d7e4ae48d06468a": { - "address": "0xea7cc765ebc94c4805e3bff28d7e4ae48d06468a", - "symbol": "PAD", - "decimals": 18, - "name": "NearPad Token", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xea7cc765ebc94c4805e3bff28d7e4ae48d06468a.png", - "aggregators": [ - "Metamask", - "Socket", - "Rubic", - "Rango", - "Sonarwatch", - "SushiSwap" - ], - "occurrences": 6 - }, - "0x030b69280892c888670edcdcd8b69fd8026a0bf3": { - "address": "0x030b69280892c888670edcdcd8b69fd8026a0bf3", - "symbol": "MMEV", - "decimals": 18, - "name": "Midas mMEV", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x030b69280892c888670edcdcd8b69fd8026a0bf3.png", - "aggregators": [ - "CoinGecko", - "LiFi", - "Rubic", - "Squid", - "Rango", - "Sonarwatch" - ], - "occurrences": 6 - }, - "0x19ebd191f7a24ece672ba13a302212b5ef7f35cb": { - "address": "0x19ebd191f7a24ece672ba13a302212b5ef7f35cb", - "symbol": "YUSD", - "decimals": 18, - "name": "YieldFi yToken", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x19ebd191f7a24ece672ba13a302212b5ef7f35cb.png", - "aggregators": [ - "CoinMarketCap", - "LiFi", - "Rubic", - "Squid", - "Rango", - "Sonarwatch" - ], - "occurrences": 6 - }, - "0x4730fb1463a6f1f44aeb45f6c5c422427f37f4d0": { - "address": "0x4730fb1463a6f1f44aeb45f6c5c422427f37f4d0", - "symbol": "FOUR", - "decimals": 18, - "name": "The 4th Pillar Token", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x4730fb1463a6f1f44aeb45f6c5c422427f37f4d0.png", - "aggregators": [ - "Metamask", - "1inch", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 6 - }, - "0x6bea7cfef803d1e3d5f7c0103f7ded065644e197": { - "address": "0x6bea7cfef803d1e3d5f7c0103f7ded065644e197", - "symbol": "GAMMA", - "decimals": 18, - "name": "Gamma", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x6bea7cfef803d1e3d5f7c0103f7ded065644e197.png", - "aggregators": [ - "Metamask", - "LiFi", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 6 - }, - "0xe868084cf08f3c3db11f4b73a95473762d9463f7": { - "address": "0xe868084cf08f3c3db11f4b73a95473762d9463f7", - "symbol": "YU", - "decimals": 18, - "name": "YU", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xe868084cf08f3c3db11f4b73a95473762d9463f7.png", - "aggregators": [ - "CoinMarketCap", - "LiFi", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 6 - }, - "0x6b7774cb12ed7573a7586e7d0e62a2a563ddd3f0": { - "address": "0x6b7774cb12ed7573a7586e7d0e62a2a563ddd3f0", - "symbol": "SOPH", - "decimals": 18, - "name": "Sophon", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x6b7774cb12ed7573a7586e7d0e62a2a563ddd3f0.png", - "aggregators": [ - "CoinMarketCap", - "1inch", - "Rubic", - "Squid", - "Rango", - "Sonarwatch" - ], - "occurrences": 6 - }, - "0x3231cb76718cdef2155fc47b5286d82e6eda273f": { - "address": "0x3231cb76718cdef2155fc47b5286d82e6eda273f", - "symbol": "EURE", - "decimals": 18, - "name": "Monerium EUR", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x3231cb76718cdef2155fc47b5286d82e6eda273f.png", - "aggregators": [ - "Metamask", - "LiFi", - "Socket", - "Rubic", - "Squid", - "Sonarwatch" - ], - "occurrences": 6 - }, - "0x89bd2e7e388fab44ae88bef4e1ad12b4f1e0911c": { - "address": "0x89bd2e7e388fab44ae88bef4e1ad12b4f1e0911c", - "symbol": "NUX", - "decimals": 18, - "name": "Peanut", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x89bd2e7e388fab44ae88bef4e1ad12b4f1e0911c.png", - "aggregators": [ - "CoinMarketCap", - "1inch", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 6 - }, - "0x5f0e628b693018f639d10e4a4f59bd4d8b2b6b44": { - "address": "0x5f0e628b693018f639d10e4a4f59bd4d8b2b6b44", - "symbol": "WHITE", - "decimals": 18, - "name": "Whiteheart", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x5f0e628b693018f639d10e4a4f59bd4d8b2b6b44.png", - "aggregators": [ - "CoinMarketCap", - "1inch", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 6 - }, - "0x0de05f6447ab4d22c8827449ee4ba2d5c288379b": { - "address": "0x0de05f6447ab4d22c8827449ee4ba2d5c288379b", - "symbol": "OOKI", - "decimals": 18, - "name": "OOKI", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x0de05f6447ab4d22c8827449ee4ba2d5c288379b.png", - "aggregators": [ - "Metamask", - "LiFi", - "Socket", - "Rubic", - "Sonarwatch", - "SushiSwap" - ], - "occurrences": 6 - }, - "0x40fd72257597aa14c7231a7b1aaa29fce868f677": { - "address": "0x40fd72257597aa14c7231a7b1aaa29fce868f677", - "symbol": "XOR", - "decimals": 18, - "name": "SORA", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x40fd72257597aa14c7231a7b1aaa29fce868f677.png", - "aggregators": [ - "Metamask", - "TrustWallet", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 6 - }, - "0x60be1e1fe41c1370adaf5d8e66f07cf1c2df2268": { - "address": "0x60be1e1fe41c1370adaf5d8e66f07cf1c2df2268", - "symbol": "PERC", - "decimals": 18, - "name": "Perion Credits", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x60be1e1fe41c1370adaf5d8e66f07cf1c2df2268.png", - "aggregators": [ - "Metamask", - "Socket", - "Rubic", - "Rango", - "Sonarwatch", - "SushiSwap" - ], - "occurrences": 6 - }, - "0xdd1ad9a21ce722c151a836373babe42c868ce9a4": { - "address": "0xdd1ad9a21ce722c151a836373babe42c868ce9a4", - "symbol": "UBI", - "decimals": 18, - "name": "Universal Basic Income", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xdd1ad9a21ce722c151a836373babe42c868ce9a4.png", - "aggregators": [ - "Metamask", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0xccb365d2e11ae4d6d74715c680f56cf58bf4bf10": { - "address": "0xccb365d2e11ae4d6d74715c680f56cf58bf4bf10", - "symbol": "WEPE", - "decimals": 18, - "name": "Wall Street Pepe", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xccb365d2e11ae4d6d74715c680f56cf58bf4bf10.png", - "aggregators": [ - "CoinMarketCap", - "1inch", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 6 - }, - "0x99999999999999cc837c997b882957dafdcb1af9": { - "address": "0x99999999999999cc837c997b882957dafdcb1af9", - "symbol": "WUSDN", - "decimals": 18, - "name": "SMARDEX WRAPPED USDN", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x99999999999999cc837c997b882957dafdcb1af9.png", - "aggregators": [ - "CoinGecko", - "LiFi", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 6 - }, - "0xf2c88757f8d03634671208935974b60a2a28bdb3": { - "address": "0xf2c88757f8d03634671208935974b60a2a28bdb3", - "symbol": "SHELL", - "decimals": 18, - "name": "MyShell", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xf2c88757f8d03634671208935974b60a2a28bdb3.png", - "aggregators": [ - "CoinMarketCap", - "LiFi", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 6 - }, - "0x0d02755a5700414b26ff040e1de35d337df56218": { - "address": "0x0d02755a5700414b26ff040e1de35d337df56218", - "symbol": "BEND", - "decimals": 18, - "name": "Bend Token", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x0d02755a5700414b26ff040e1de35d337df56218.png", - "aggregators": [ - "Metamask", - "1inch", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 6 - }, - "0xbb51e2a15a9158ebe2b0ceb8678511e063ab7a55": { - "address": "0xbb51e2a15a9158ebe2b0ceb8678511e063ab7a55", - "symbol": "MEDGE", - "decimals": 18, - "name": "Midas mEDGE", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xbb51e2a15a9158ebe2b0ceb8678511e063ab7a55.png", - "aggregators": [ - "CoinGecko", - "LiFi", - "Rubic", - "Squid", - "Rango", - "Sonarwatch" - ], - "occurrences": 6 - }, - "0xe24a3dc889621612422a64e6388927901608b91d": { - "address": "0xe24a3dc889621612422a64e6388927901608b91d", - "symbol": "SUSN", - "decimals": 18, - "name": "Staked USN", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xe24a3dc889621612422a64e6388927901608b91d.png", - "aggregators": [ - "CoinGecko", - "LiFi", - "Rubic", - "Squid", - "Rango", - "Sonarwatch" - ], - "occurrences": 6 - }, - "0x946fb08103b400d1c79e07acccdef5cfd26cd374": { - "address": "0x946fb08103b400d1c79e07acccdef5cfd26cd374", - "symbol": "KIP", - "decimals": 18, - "name": "KIP", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x946fb08103b400d1c79e07acccdef5cfd26cd374.png", - "aggregators": [ - "CoinMarketCap", - "Socket", - "Rubic", - "Squid", - "Rango", - "Sonarwatch" - ], - "occurrences": 6 - }, - "0xd4c435f5b09f855c3317c8524cb1f586e42795fa": { - "address": "0xd4c435f5b09f855c3317c8524cb1f586e42795fa", - "symbol": "CND", - "decimals": 18, - "name": "Cindicator", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xd4c435f5b09f855c3317c8524cb1f586e42795fa.png", - "aggregators": [ - "CoinMarketCap", - "1inch", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 6 - }, - "0xacfa209fb73bf3dd5bbfb1101b9bc999c49062a5": { - "address": "0xacfa209fb73bf3dd5bbfb1101b9bc999c49062a5", - "symbol": "BCDT", - "decimals": 18, - "name": "EvidenZ", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xacfa209fb73bf3dd5bbfb1101b9bc999c49062a5.png", - "aggregators": [ - "CoinMarketCap", - "LiFi", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 6 - }, - "0x86ed939b500e121c0c5f493f399084db596dad20": { - "address": "0x86ed939b500e121c0c5f493f399084db596dad20", - "symbol": "SPC", - "decimals": 18, - "name": "SpaceChain ERC 20", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x86ed939b500e121c0c5f493f399084db596dad20.png", - "aggregators": [ - "CoinMarketCap", - "1inch", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 6 - }, - "0x147faf8de9d8d8daae129b187f0d02d819126750": { - "address": "0x147faf8de9d8d8daae129b187f0d02d819126750", - "symbol": "GEO", - "decimals": 18, - "name": "GeoDB", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x147faf8de9d8d8daae129b187f0d02d819126750.png", - "aggregators": [ - "CoinMarketCap", - "1inch", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 6 - }, - "0x509a38b7a1cc0dcd83aa9d06214663d9ec7c7f4a": { - "address": "0x509a38b7a1cc0dcd83aa9d06214663d9ec7c7f4a", - "symbol": "BST", - "decimals": 18, - "name": "Blocksquare Token", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x509a38b7a1cc0dcd83aa9d06214663d9ec7c7f4a.png", - "aggregators": [ - "Metamask", - "1inch", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 6 - }, - "0xfa1c09fc8b491b6a4d3ff53a10cad29381b3f949": { - "address": "0xfa1c09fc8b491b6a4d3ff53a10cad29381b3f949", - "symbol": "FF", - "decimals": 18, - "name": "Falcon Finance", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xfa1c09fc8b491b6a4d3ff53a10cad29381b3f949.png", - "aggregators": [ - "CoinMarketCap", - "1inch", - "LiFi", - "Socket", - "Rubic", - "Rango" - ], - "occurrences": 6 - }, - "0xe88f8313e61a97cec1871ee37fbbe2a8bf3ed1e4": { - "address": "0xe88f8313e61a97cec1871ee37fbbe2a8bf3ed1e4", - "symbol": "VAL", - "decimals": 18, - "name": "SORA Validator", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xe88f8313e61a97cec1871ee37fbbe2a8bf3ed1e4.png", - "aggregators": [ - "Metamask", - "1inch", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 6 - }, - "0xc5d6a7b61d18afa11435a889557b068bb9f29930": { - "address": "0xc5d6a7b61d18afa11435a889557b068bb9f29930", - "symbol": "SUSDD", - "decimals": 18, - "name": "Savings USDD", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xc5d6a7b61d18afa11435a889557b068bb9f29930.png", - "aggregators": [ - "Metamask", - "1inch", - "LiFi", - "Socket", - "Rubic", - "Rango" - ], - "occurrences": 6 - }, - "0x8c543aed163909142695f2d2acd0d55791a9edb9": { - "address": "0x8c543aed163909142695f2d2acd0d55791a9edb9", - "symbol": "VLX", - "decimals": 18, - "name": "VLX", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x8c543aed163909142695f2d2acd0d55791a9edb9.png", - "aggregators": [ - "CoinMarketCap", - "1inch", - "Socket", - "Rubic", - "Sonarwatch", - "Bancor" - ], - "occurrences": 6 - }, - "0x618679df9efcd19694bb1daa8d00718eacfa2883": { - "address": "0x618679df9efcd19694bb1daa8d00718eacfa2883", - "symbol": "XYZ", - "decimals": 18, - "name": "XYZ Governance Token", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x618679df9efcd19694bb1daa8d00718eacfa2883.png", - "aggregators": [ - "CoinMarketCap", - "Socket", - "Rubic", - "Rango", - "Sonarwatch", - "SushiSwap" - ], - "occurrences": 6 - }, - "0xd58826d2c0babf1a60d8b508160b52e9c19aff07": { - "address": "0xd58826d2c0babf1a60d8b508160b52e9c19aff07", - "symbol": "CYBRO", - "decimals": 18, - "name": "CYBRO", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xd58826d2c0babf1a60d8b508160b52e9c19aff07.png", - "aggregators": [ - "CoinMarketCap", - "LiFi", - "Socket", - "Rubic", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x4f8e5de400de08b164e7421b3ee387f461becd1a": { - "address": "0x4f8e5de400de08b164e7421b3ee387f461becd1a", - "symbol": "USDD", - "decimals": 18, - "name": "Decentralized USD", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x4f8e5de400de08b164e7421b3ee387f461becd1a.png", - "aggregators": [ - "Metamask", - "1inch", - "LiFi", - "Socket", - "Rubic", - "Rango" - ], - "occurrences": 6 - }, - "0xf8e386eda857484f5a12e4b5daa9984e06e73705": { - "address": "0xf8e386eda857484f5a12e4b5daa9984e06e73705", - "symbol": "IND", - "decimals": 18, - "name": "Indorse Token", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xf8e386eda857484f5a12e4b5daa9984e06e73705.png", - "aggregators": [ - "CoinMarketCap", - "1inch", - "LiFi", - "Rubic", - "Rango", - "Bancor" - ], - "occurrences": 6 - }, - "0x543ff227f64aa17ea132bf9886cab5db55dcaddf": { - "address": "0x543ff227f64aa17ea132bf9886cab5db55dcaddf", - "symbol": "GEN", - "decimals": 18, - "name": "DAOstack", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x543ff227f64aa17ea132bf9886cab5db55dcaddf.png", - "aggregators": [ - "Metamask", - "1inch", - "LiFi", - "Socket", - "Rubic", - "Rango" - ], - "occurrences": 6 - }, - "0xb683d83a532e2cb7dfa5275eed3698436371cc9f": { - "address": "0xb683d83a532e2cb7dfa5275eed3698436371cc9f", - "symbol": "BTU", - "decimals": 18, - "name": "BTU", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xb683d83a532e2cb7dfa5275eed3698436371cc9f.png", - "aggregators": [ - "Metamask", - "LiFi", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 6 - }, - "0xdc5864ede28bd4405aa04d93e05a0531797d9d59": { - "address": "0xdc5864ede28bd4405aa04d93e05a0531797d9d59", - "symbol": "FNT", - "decimals": 6, - "name": "Falcon", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xdc5864ede28bd4405aa04d93e05a0531797d9d59.png", - "aggregators": [ - "Metamask", - "1inch", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 6 - }, - "0x36f3fd68e7325a35eb768f1aedaae9ea0689d723": { - "address": "0x36f3fd68e7325a35eb768f1aedaae9ea0689d723", - "symbol": "ESD", - "decimals": 18, - "name": "Empty Set Dollar", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x36f3fd68e7325a35eb768f1aedaae9ea0689d723.png", - "aggregators": [ - "CoinMarketCap", - "LiFi", - "Rubic", - "Rango", - "SushiSwap", - "Bancor" - ], - "occurrences": 6 - }, - "0x26607ac599266b21d13c7acf7942c7701a8b699c": { - "address": "0x26607ac599266b21d13c7acf7942c7701a8b699c", - "symbol": "PIPT", - "decimals": 18, - "name": "Power Index Pool Token", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x26607ac599266b21d13c7acf7942c7701a8b699c.png", - "aggregators": [ - "CoinMarketCap", - "1inch", - "Socket", - "Rubic", - "Rango", - "SushiSwap" - ], - "occurrences": 6 - }, - "0xa0bed124a09ac2bd941b10349d8d224fe3c955eb": { - "address": "0xa0bed124a09ac2bd941b10349d8d224fe3c955eb", - "symbol": "DEPAY", - "decimals": 18, - "name": "DePay", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xa0bed124a09ac2bd941b10349d8d224fe3c955eb.png", - "aggregators": [ - "CoinMarketCap", - "1inch", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 6 - }, - "0x8a9c4dfe8b9d8962b31e4e16f8321c44d48e246e": { - "address": "0x8a9c4dfe8b9d8962b31e4e16f8321c44d48e246e", - "symbol": "NCT", - "decimals": 18, - "name": "NameChangeToken", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x8a9c4dfe8b9d8962b31e4e16f8321c44d48e246e.png", - "aggregators": [ - "CoinMarketCap", - "1inch", - "Socket", - "Rubic", - "Rango", - "SushiSwap" - ], - "occurrences": 6 - }, - "0x7f3edcdd180dbe4819bd98fee8929b5cedb3adeb": { - "address": "0x7f3edcdd180dbe4819bd98fee8929b5cedb3adeb", - "symbol": "XTK", - "decimals": 18, - "name": "xToken", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x7f3edcdd180dbe4819bd98fee8929b5cedb3adeb.png", - "aggregators": [ - "CoinMarketCap", - "TrustWallet", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 6 - }, - "0x1c5db575e2ff833e46a2e9864c22f4b22e0b37c2": { - "address": "0x1c5db575e2ff833e46a2e9864c22f4b22e0b37c2", - "symbol": "RENZEC", - "decimals": 8, - "name": "renZEC", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x1c5db575e2ff833e46a2e9864c22f4b22e0b37c2.png", - "aggregators": [ - "CoinMarketCap", - "1inch", - "LiFi", - "Rubic", - "Rango", - "Bancor" - ], - "occurrences": 6 - }, - "0x9625ce7753ace1fa1865a47aae2c5c2ce4418569": { - "address": "0x9625ce7753ace1fa1865a47aae2c5c2ce4418569", - "symbol": "KAP", - "decimals": 18, - "name": "KAP Games", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x9625ce7753ace1fa1865a47aae2c5c2ce4418569.png", - "aggregators": [ - "Metamask", - "LiFi", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 6 - }, - "0x0c10bf8fcb7bf5412187a595ab97a3609160b5c6": { - "address": "0x0c10bf8fcb7bf5412187a595ab97a3609160b5c6", - "symbol": "USDDOLD", - "decimals": 18, - "name": "USDDOLD (BTTC Bridge)", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x0c10bf8fcb7bf5412187a595ab97a3609160b5c6.png", - "aggregators": [ - "Metamask", - "1inch", - "LiFi", - "Socket", - "Rubic", - "Rango" - ], - "occurrences": 6 - }, - "0x72b886d09c117654ab7da13a14d603001de0b777": { - "address": "0x72b886d09c117654ab7da13a14d603001de0b777", - "symbol": "XDEFI", - "decimals": 18, - "name": "XDEFI", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x72b886d09c117654ab7da13a14d603001de0b777.png", - "aggregators": [ - "LiFi", - "Rubic", - "Squid", - "Rango", - "Sonarwatch", - "SushiSwap" - ], - "occurrences": 6 - }, - "0x799ebfabe77a6e34311eeee9825190b9ece32824": { - "address": "0x799ebfabe77a6e34311eeee9825190b9ece32824", - "symbol": "BTRST", - "decimals": 18, - "name": "Braintrust", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x799ebfabe77a6e34311eeee9825190b9ece32824.png", - "aggregators": [ - "OpenSwap", - "1inch", - "Socket", - "Rubic", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x1fcdce58959f536621d76f5b7ffb955baa5a672f": { - "address": "0x1fcdce58959f536621d76f5b7ffb955baa5a672f", - "symbol": "FOR", - "decimals": 18, - "name": "ForTube", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x1fcdce58959f536621d76f5b7ffb955baa5a672f.png", - "aggregators": [ - "CoinMarketCap", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0xa1d65e8fb6e87b60feccbc582f7f97804b725521": { - "address": "0xa1d65e8fb6e87b60feccbc582f7f97804b725521", - "symbol": "DXD", - "decimals": 18, - "name": "DXdao", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xa1d65e8fb6e87b60feccbc582f7f97804b725521.png", - "aggregators": [ - "CoinMarketCap", - "LiFi", - "Rubic", - "Rango", - "Bancor" - ], - "occurrences": 5 - }, - "0xf650c3d88d12db855b8bf7d11be6c55a4e07dcc9": { - "address": "0xf650c3d88d12db855b8bf7d11be6c55a4e07dcc9", - "symbol": "CUSDT", - "decimals": 8, - "name": "Compound Tether", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xf650c3d88d12db855b8bf7d11be6c55a4e07dcc9.png", - "aggregators": ["Metamask", "1inch", "LiFi", "Rubic", "Rango"], - "occurrences": 5 - }, - "0x43044f861ec040db59a7e324c40507addb673142": { - "address": "0x43044f861ec040db59a7e324c40507addb673142", - "symbol": "CAP", - "decimals": 18, - "name": "Cap", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x43044f861ec040db59a7e324c40507addb673142.png", - "aggregators": [ - "CoinMarketCap", - "LiFi", - "Rubic", - "Rango", - "Bancor" - ], - "occurrences": 5 - }, - "0xad32a8e6220741182940c5abf610bde99e737b2d": { - "address": "0xad32a8e6220741182940c5abf610bde99e737b2d", - "symbol": "DOUGH", - "decimals": 18, - "name": "PieDAO", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xad32a8e6220741182940c5abf610bde99e737b2d.png", - "aggregators": [ - "CoinMarketCap", - "LiFi", - "Rubic", - "Rango", - "SushiSwap" - ], - "occurrences": 5 - }, - "0x70e36f6bf80a52b3b46b3af8e106cc0ed743e8e4": { - "address": "0x70e36f6bf80a52b3b46b3af8e106cc0ed743e8e4", - "symbol": "CCOMP", - "decimals": 8, - "name": "Compound Collateral", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x70e36f6bf80a52b3b46b3af8e106cc0ed743e8e4.png", - "aggregators": [ - "Metamask", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x817bbdbc3e8a1204f3691d14bb44992841e3db35": { - "address": "0x817bbdbc3e8a1204f3691d14bb44992841e3db35", - "symbol": "CUDOS", - "decimals": 18, - "name": "Cudos", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x817bbdbc3e8a1204f3691d14bb44992841e3db35.png", - "aggregators": [ - "CoinMarketCap", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0xdc9ac3c20d1ed0b540df9b1fedc10039df13f99c": { - "address": "0xdc9ac3c20d1ed0b540df9b1fedc10039df13f99c", - "symbol": "UTK", - "decimals": 18, - "name": "xMoney", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xdc9ac3c20d1ed0b540df9b1fedc10039df13f99c.png", - "aggregators": [ - "CoinMarketCap", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x9f284e1337a815fe77d2ff4ae46544645b20c5ff": { - "address": "0x9f284e1337a815fe77d2ff4ae46544645b20c5ff", - "symbol": "KTON", - "decimals": 18, - "name": "Darwinia Commitment Token", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x9f284e1337a815fe77d2ff4ae46544645b20c5ff.png", - "aggregators": [ - "Metamask", - "LiFi", - "Socket", - "Rubic", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x6fe56c0bcdd471359019fcbc48863d6c3e9d4f41": { - "address": "0x6fe56c0bcdd471359019fcbc48863d6c3e9d4f41", - "symbol": "PROPS", - "decimals": 18, - "name": "Props Token", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x6fe56c0bcdd471359019fcbc48863d6c3e9d4f41.png", - "aggregators": ["Metamask", "LiFi", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 5 - }, - "0x4b4d2e899658fb59b1d518b68fe836b100ee8958": { - "address": "0x4b4d2e899658fb59b1d518b68fe836b100ee8958", - "symbol": "MIS", - "decimals": 18, - "name": "Mithril Shares", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x4b4d2e899658fb59b1d518b68fe836b100ee8958.png", - "aggregators": [ - "CoinMarketCap", - "Socket", - "Rubic", - "Rango", - "SushiSwap" - ], - "occurrences": 5 - }, - "0x55c08ca52497e2f1534b59e2917bf524d4765257": { - "address": "0x55c08ca52497e2f1534b59e2917bf524d4765257", - "symbol": "UWU", - "decimals": 18, - "name": "UwU Lend", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x55c08ca52497e2f1534b59e2917bf524d4765257.png", - "aggregators": [ - "CoinMarketCap", - "Rubic", - "Rango", - "Sonarwatch", - "SushiSwap" - ], - "occurrences": 5 - }, - "0xb4272071ecadd69d933adcd19ca99fe80664fc08": { - "address": "0xb4272071ecadd69d933adcd19ca99fe80664fc08", - "symbol": "XCHF", - "decimals": 18, - "name": "CryptoFranc", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xb4272071ecadd69d933adcd19ca99fe80664fc08.png", - "aggregators": ["Metamask", "LiFi", "Socket", "Rubic"], - "occurrences": 4 - }, - "0xe5a3229ccb22b6484594973a03a3851dcd948756": { - "address": "0xe5a3229ccb22b6484594973a03a3851dcd948756", - "symbol": "RAE", - "decimals": 18, - "name": "RAE Token", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xe5a3229ccb22b6484594973a03a3851dcd948756.png", - "aggregators": ["Metamask", "LiFi", "Rubic", "Rango"], - "occurrences": 4 - }, - "0xd1d2eb1b1e90b638588728b4130137d262c87cae": { - "address": "0xd1d2eb1b1e90b638588728b4130137d262c87cae", - "symbol": "GALA", - "decimals": 8, - "name": "Gala", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xd1d2eb1b1e90b638588728b4130137d262c87cae.png", - "aggregators": [ - "CoinMarketCap", - "1inch", - "LiFi", - "TrustWallet", - "Socket", - "Rubic", - "Rango", - "Sonarwatch", - "SushiSwap" - ], - "occurrences": 9 - }, - "0xee2a03aa6dacf51c18679c516ad5283d8e7c2637": { - "address": "0xee2a03aa6dacf51c18679c516ad5283d8e7c2637", - "symbol": "NEIRO", - "decimals": 9, - "name": "Neiro", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xee2a03aa6dacf51c18679c516ad5283d8e7c2637.png", - "aggregators": [ - "CoinMarketCap", - "1inch", - "LiFi", - "Socket", - "Rubic", - "Squid", - "Rango", - "Sonarwatch", - "SushiSwap" - ], - "occurrences": 9 - }, - "0x152649ea73beab28c5b49b26eb48f7ead6d4c898": { - "address": "0x152649ea73beab28c5b49b26eb48f7ead6d4c898", - "symbol": "CAKE", - "decimals": 18, - "name": "PancakeSwap", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x152649ea73beab28c5b49b26eb48f7ead6d4c898.png", - "aggregators": [ - "CoinMarketCap", - "1inch", - "LiFi", - "Socket", - "Rubic", - "Squid", - "Rango", - "Sonarwatch" - ], - "occurrences": 8 - }, - "0x58d97b57bb95320f9a05dc918aef65434969c2b2": { - "address": "0x58d97b57bb95320f9a05dc918aef65434969c2b2", - "symbol": "MORPHO", - "decimals": 18, - "name": "Morpho", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x58d97b57bb95320f9a05dc918aef65434969c2b2.png", - "aggregators": [ - "CoinMarketCap", - "1inch", - "LiFi", - "Socket", - "Rubic", - "Squid", - "Rango", - "Sonarwatch" - ], - "occurrences": 8 - }, - "0x75231f58b43240c9718dd58b4967c5114342a86c": { - "address": "0x75231f58b43240c9718dd58b4967c5114342a86c", - "symbol": "OKB", - "decimals": 18, - "name": "OKB", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x75231f58b43240c9718dd58b4967c5114342a86c.png", - "aggregators": [ - "CoinGecko", - "1inch", - "LiFi", - "Socket", - "Rubic", - "Squid", - "Rango", - "Sonarwatch" - ], - "occurrences": 8 - }, - "0xfaba6f8e4a5e8ab82f62fe7c39859fa577269be3": { - "address": "0xfaba6f8e4a5e8ab82f62fe7c39859fa577269be3", - "symbol": "ONDO", - "decimals": 18, - "name": "Ondo", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xfaba6f8e4a5e8ab82f62fe7c39859fa577269be3.png", - "aggregators": [ - "CoinMarketCap", - "1inch", - "LiFi", - "Socket", - "Rubic", - "Squid", - "Rango", - "Sonarwatch" - ], - "occurrences": 8 - }, - "0x467bccd9d29f223bce8043b84e8c8b282827790f": { - "address": "0x467bccd9d29f223bce8043b84e8c8b282827790f", - "symbol": "TEL", - "decimals": 2, - "name": "Telcoin", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x467bccd9d29f223bce8043b84e8c8b282827790f.png", - "aggregators": [ - "CoinMarketCap", - "1inch", - "LiFi", - "Socket", - "Rubic", - "Squid", - "Rango", - "Sonarwatch" - ], - "occurrences": 8 - }, - "0xa2cd3d43c775978a96bdbf12d733d5a1ed94fb18": { - "address": "0xa2cd3d43c775978a96bdbf12d733d5a1ed94fb18", - "symbol": "XCN", - "decimals": 18, - "name": "Onyxcoin", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xa2cd3d43c775978a96bdbf12d733d5a1ed94fb18.png", - "aggregators": [ - "CoinMarketCap", - "1inch", - "LiFi", - "Socket", - "Rubic", - "Squid", - "Rango", - "Sonarwatch" - ], - "occurrences": 8 - }, - "0xb26631c6dda06ad89b93c71400d25692de89c068": { - "address": "0xb26631c6dda06ad89b93c71400d25692de89c068", - "symbol": "MINDS", - "decimals": 18, - "name": "Minds", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xb26631c6dda06ad89b93c71400d25692de89c068.png", - "aggregators": [ - "Metamask", - "1inch", - "LiFi", - "TrustWallet", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 8 - }, - "0x4c9edd5852cd905f086c759e8383e09bff1e68b3": { - "address": "0x4c9edd5852cd905f086c759e8383e09bff1e68b3", - "symbol": "USDE", - "decimals": 18, - "name": "Ethena USDe", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x4c9edd5852cd905f086c759e8383e09bff1e68b3.png", - "aggregators": [ - "CoinMarketCap", - "1inch", - "LiFi", - "Socket", - "Rubic", - "Squid", - "Rango", - "Sonarwatch" - ], - "occurrences": 8 - }, - "0xa3931d71877c0e7a3148cb7eb4463524fec27fbd": { - "address": "0xa3931d71877c0e7a3148cb7eb4463524fec27fbd", - "symbol": "SUSDS", - "decimals": 18, - "name": "Savings USDS", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xa3931d71877c0e7a3148cb7eb4463524fec27fbd.png", - "aggregators": [ - "Metamask", - "1inch", - "LiFi", - "Socket", - "Rubic", - "Squid", - "Rango", - "Sonarwatch" - ], - "occurrences": 8 - }, - "0x25e1474170c4c0aa64fa98123bdc8db49d7802fa": { - "address": "0x25e1474170c4c0aa64fa98123bdc8db49d7802fa", - "symbol": "BID", - "decimals": 18, - "name": "Bidao", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x25e1474170c4c0aa64fa98123bdc8db49d7802fa.png", - "aggregators": [ - "CoinMarketCap", - "1inch", - "LiFi", - "TrustWallet", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 8 - }, - "0x0fd10b9899882a6f2fcb5c371e17e70fdee00c38": { - "address": "0x0fd10b9899882a6f2fcb5c371e17e70fdee00c38", - "symbol": "PUNDIX", - "decimals": 18, - "name": "Pundi X", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x0fd10b9899882a6f2fcb5c371e17e70fdee00c38.png", - "aggregators": [ - "CoinGecko", - "TrustWallet", - "Socket", - "Rubic", - "Squid", - "Rango", - "Sonarwatch", - "SushiSwap" - ], - "occurrences": 8 - }, - "0x81f8f0bb1cb2a06649e51913a151f0e7ef6fa321": { - "address": "0x81f8f0bb1cb2a06649e51913a151f0e7ef6fa321", - "symbol": "VITA", - "decimals": 18, - "name": "VitaDAO Token", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x81f8f0bb1cb2a06649e51913a151f0e7ef6fa321.png", - "aggregators": [ - "CoinMarketCap", - "1inch", - "LiFi", - "Socket", - "Rubic", - "Rango", - "Sonarwatch", - "Bancor" - ], - "occurrences": 8 - }, - "0x35e78b3982e87ecfd5b3f3265b601c046cdbe232": { - "address": "0x35e78b3982e87ecfd5b3f3265b601c046cdbe232", - "symbol": "XAI", - "decimals": 18, - "name": "SideShift Token", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x35e78b3982e87ecfd5b3f3265b601c046cdbe232.png", - "aggregators": [ - "CoinMarketCap", - "1inch", - "LiFi", - "Socket", - "Rubic", - "Rango", - "Sonarwatch", - "SushiSwap" - ], - "occurrences": 8 - }, - "0xfb782396c9b20e564a64896181c7ac8d8979d5f4": { - "address": "0xfb782396c9b20e564a64896181c7ac8d8979d5f4", - "symbol": "DIVER", - "decimals": 18, - "name": "DivergenceProtocol", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xfb782396c9b20e564a64896181c7ac8d8979d5f4.png", - "aggregators": [ - "CoinMarketCap", - "1inch", - "LiFi", - "Socket", - "Rubic", - "Rango", - "Sonarwatch", - "SushiSwap" - ], - "occurrences": 8 - }, - "0x72e364f2abdc788b7e918bc238b21f109cd634d7": { - "address": "0x72e364f2abdc788b7e918bc238b21f109cd634d7", - "symbol": "MVI", - "decimals": 18, - "name": "Metaverse Index", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x72e364f2abdc788b7e918bc238b21f109cd634d7.png", - "aggregators": [ - "CoinMarketCap", - "1inch", - "LiFi", - "TrustWallet", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 8 - }, - "0x41a3dba3d677e573636ba691a70ff2d606c29666": { - "address": "0x41a3dba3d677e573636ba691a70ff2d606c29666", - "symbol": "BLANK", - "decimals": 18, - "name": "GoBlank", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x41a3dba3d677e573636ba691a70ff2d606c29666.png", - "aggregators": [ - "CoinMarketCap", - "1inch", - "LiFi", - "TrustWallet", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 8 - }, - "0x5de8ab7e27f6e7a1fff3e5b337584aa43961beef": { - "address": "0x5de8ab7e27f6e7a1fff3e5b337584aa43961beef", - "symbol": "SDEX", - "decimals": 18, - "name": "SMARDEX", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x5de8ab7e27f6e7a1fff3e5b337584aa43961beef.png", - "aggregators": [ - "CoinMarketCap", - "1inch", - "LiFi", - "Socket", - "Rubic", - "Squid", - "Rango", - "Sonarwatch" - ], - "occurrences": 8 - }, - "0x5e8422345238f34275888049021821e8e08caa1f": { - "address": "0x5e8422345238f34275888049021821e8e08caa1f", - "symbol": "FRXETH", - "decimals": 18, - "name": "Frax Ether", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x5e8422345238f34275888049021821e8e08caa1f.png", - "aggregators": [ - "CoinMarketCap", - "1inch", - "LiFi", - "Socket", - "Rubic", - "Squid", - "Rango", - "Sonarwatch" - ], - "occurrences": 8 - }, - "0x83f20f44975d03b1b09e64809b757c47f942beea": { - "address": "0x83f20f44975d03b1b09e64809b757c47f942beea", - "symbol": "SDAI", - "decimals": 18, - "name": "Savings Dai", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x83f20f44975d03b1b09e64809b757c47f942beea.png", - "aggregators": [ - "CoinMarketCap", - "1inch", - "LiFi", - "Socket", - "Rubic", - "Squid", - "Rango", - "Sonarwatch" - ], - "occurrences": 8 - }, - "0xbf5495efe5db9ce00f80364c8b423567e58d2110": { - "address": "0xbf5495efe5db9ce00f80364c8b423567e58d2110", - "symbol": "EZETH", - "decimals": 18, - "name": "Renzo Restaked ETH", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xbf5495efe5db9ce00f80364c8b423567e58d2110.png", - "aggregators": [ - "CoinMarketCap", - "1inch", - "LiFi", - "Socket", - "Rubic", - "Squid", - "Rango", - "Sonarwatch" - ], - "occurrences": 8 - }, - "0xa8b919680258d369114910511cc87595aec0be6d": { - "address": "0xa8b919680258d369114910511cc87595aec0be6d", - "symbol": "LYXE", - "decimals": 18, - "name": "LUKSO", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xa8b919680258d369114910511cc87595aec0be6d.png", - "aggregators": [ - "CoinGecko", - "1inch", - "LiFi", - "TrustWallet", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 8 - }, - "0x27c70cd1946795b66be9d954418546998b546634": { - "address": "0x27c70cd1946795b66be9d954418546998b546634", - "symbol": "LEASH", - "decimals": 18, - "name": "DOGE KILLER", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x27c70cd1946795b66be9d954418546998b546634.png", - "aggregators": [ - "CoinMarketCap", - "1inch", - "LiFi", - "TrustWallet", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 8 - }, - "0xab2a7b5876d707e0126b3a75ef7781c77c8877ee": { - "address": "0xab2a7b5876d707e0126b3a75ef7781c77c8877ee", - "symbol": "QUAD", - "decimals": 18, - "name": "Quadency Token", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xab2a7b5876d707e0126b3a75ef7781c77c8877ee.png", - "aggregators": [ - "CoinMarketCap", - "1inch", - "LiFi", - "Socket", - "Rubic", - "Rango", - "Sonarwatch", - "SushiSwap" - ], - "occurrences": 8 - }, - "0x9d39a5de30e57443bff2a8307a4256c8797a3497": { - "address": "0x9d39a5de30e57443bff2a8307a4256c8797a3497", - "symbol": "SUSDE", - "decimals": 18, - "name": "Ethena Staked USDe", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x9d39a5de30e57443bff2a8307a4256c8797a3497.png", - "aggregators": [ - "CoinMarketCap", - "1inch", - "LiFi", - "Socket", - "Rubic", - "Squid", - "Rango", - "Sonarwatch" - ], - "occurrences": 8 - }, - "0xc5f0f7b66764f6ec8c8dff7ba683102295e16409": { - "address": "0xc5f0f7b66764f6ec8c8dff7ba683102295e16409", - "symbol": "FDUSD", - "decimals": 18, - "name": "First Digital USD", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xc5f0f7b66764f6ec8c8dff7ba683102295e16409.png", - "aggregators": [ - "CoinMarketCap", - "1inch", - "LiFi", - "Socket", - "Rubic", - "Squid", - "Rango", - "Sonarwatch" - ], - "occurrences": 8 - }, - "0xa2e3356610840701bdf5611a53974510ae27e2e1": { - "address": "0xa2e3356610840701bdf5611a53974510ae27e2e1", - "symbol": "WBETH", - "decimals": 18, - "name": "Wrapped Beacon ETH", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xa2e3356610840701bdf5611a53974510ae27e2e1.png", - "aggregators": [ - "CoinMarketCap", - "1inch", - "LiFi", - "Socket", - "Rubic", - "Squid", - "Rango", - "Sonarwatch" - ], - "occurrences": 8 - }, - "0x8236a87084f8b84306f72007f36f2618a5634494": { - "address": "0x8236a87084f8b84306f72007f36f2618a5634494", - "symbol": "LBTC", - "decimals": 8, - "name": "Lombard Staked BTC", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x8236a87084f8b84306f72007f36f2618a5634494.png", - "aggregators": [ - "CoinMarketCap", - "1inch", - "LiFi", - "Socket", - "Rubic", - "Squid", - "Rango", - "Sonarwatch" - ], - "occurrences": 8 - }, - "0x6243d8cea23066d098a15582d81a598b4e8391f4": { - "address": "0x6243d8cea23066d098a15582d81a598b4e8391f4", - "symbol": "FLX", - "decimals": 18, - "name": "Reflexer Ungovernance Token", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x6243d8cea23066d098a15582d81a598b4e8391f4.png", - "aggregators": [ - "Metamask", - "1inch", - "LiFi", - "TrustWallet", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 8 - }, - "0x954b890704693af242613edef1b603825afcd708": { - "address": "0x954b890704693af242613edef1b603825afcd708", - "symbol": "CARD", - "decimals": 18, - "name": "Cardstack", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x954b890704693af242613edef1b603825afcd708.png", - "aggregators": [ - "CoinMarketCap", - "1inch", - "LiFi", - "TrustWallet", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 8 - }, - "0x26c8afbbfe1ebaca03c2bb082e69d0476bffe099": { - "address": "0x26c8afbbfe1ebaca03c2bb082e69d0476bffe099", - "symbol": "CELL", - "decimals": 18, - "name": "Cellframe", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x26c8afbbfe1ebaca03c2bb082e69d0476bffe099.png", - "aggregators": [ - "CoinMarketCap", - "1inch", - "LiFi", - "TrustWallet", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 8 - }, - "0x6b4c7a5e3f0b99fcd83e9c089bddd6c7fce5c611": { - "address": "0x6b4c7a5e3f0b99fcd83e9c089bddd6c7fce5c611", - "symbol": "MM", - "decimals": 18, - "name": "Million", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x6b4c7a5e3f0b99fcd83e9c089bddd6c7fce5c611.png", - "aggregators": [ - "Metamask", - "1inch", - "LiFi", - "Socket", - "Rubic", - "Rango", - "Sonarwatch", - "SushiSwap" - ], - "occurrences": 8 - }, - "0xdb5c3c46e28b53a39c255aa39a411dd64e5fed9c": { - "address": "0xdb5c3c46e28b53a39c255aa39a411dd64e5fed9c", - "symbol": "NCR", - "decimals": 18, - "name": "Neos Credits", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xdb5c3c46e28b53a39c255aa39a411dd64e5fed9c.png", - "aggregators": [ - "CoinGecko", - "1inch", - "LiFi", - "Socket", - "Rubic", - "Rango", - "Sonarwatch", - "SushiSwap" - ], - "occurrences": 8 - }, - "0x39fbbabf11738317a448031930706cd3e612e1b9": { - "address": "0x39fbbabf11738317a448031930706cd3e612e1b9", - "symbol": "WXRP", - "decimals": 18, - "name": "Wrapped XRP", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x39fbbabf11738317a448031930706cd3e612e1b9.png", - "aggregators": [ - "Metamask", - "1inch", - "LiFi", - "Socket", - "Rubic", - "Rango", - "Sonarwatch", - "SushiSwap" - ], - "occurrences": 8 - }, - "0xd38bb40815d2b0c2d2c866e0c72c5728ffc76dd9": { - "address": "0xd38bb40815d2b0c2d2c866e0c72c5728ffc76dd9", - "symbol": "SIS", - "decimals": 18, - "name": "Symbiosis", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xd38bb40815d2b0c2d2c866e0c72c5728ffc76dd9.png", - "aggregators": [ - "CoinMarketCap", - "1inch", - "LiFi", - "Socket", - "Rubic", - "Squid", - "Rango", - "Sonarwatch" - ], - "occurrences": 8 - }, - "0x232fb065d9d24c34708eedbf03724f2e95abe768": { - "address": "0x232fb065d9d24c34708eedbf03724f2e95abe768", - "symbol": "SHEESHA", - "decimals": 18, - "name": "Sheesha Finance", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x232fb065d9d24c34708eedbf03724f2e95abe768.png", - "aggregators": [ - "CoinGecko", - "1inch", - "LiFi", - "Socket", - "Rubic", - "Rango", - "Sonarwatch", - "Bancor" - ], - "occurrences": 8 - }, - "0x1e4ede388cbc9f4b5c79681b7f94d36a11abebc9": { - "address": "0x1e4ede388cbc9f4b5c79681b7f94d36a11abebc9", - "symbol": "X2Y2", - "decimals": 18, - "name": "X2Y2Token", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x1e4ede388cbc9f4b5c79681b7f94d36a11abebc9.png", - "aggregators": [ - "CoinMarketCap", - "1inch", - "LiFi", - "TrustWallet", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 8 - }, - "0x98585dfc8d9e7d48f0b1ae47ce33332cf4237d96": { - "address": "0x98585dfc8d9e7d48f0b1ae47ce33332cf4237d96", - "symbol": "NEWO", - "decimals": 18, - "name": "New Order", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x98585dfc8d9e7d48f0b1ae47ce33332cf4237d96.png", - "aggregators": [ - "CoinMarketCap", - "1inch", - "LiFi", - "Socket", - "Rubic", - "Rango", - "Sonarwatch", - "SushiSwap" - ], - "occurrences": 8 - }, - "0xf418588522d5dd018b425e472991e52ebbeeeeee": { - "address": "0xf418588522d5dd018b425e472991e52ebbeeeeee", - "symbol": "PUSH", - "decimals": 18, - "name": "PUSH", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xf418588522d5dd018b425e472991e52ebbeeeeee.png", - "aggregators": [ - "CoinMarketCap", - "1inch", - "LiFi", - "TrustWallet", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 8 - }, - "0xc52c326331e9ce41f04484d3b5e5648158028804": { - "address": "0xc52c326331e9ce41f04484d3b5e5648158028804", - "symbol": "ZCX", - "decimals": 18, - "name": "Unizen", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xc52c326331e9ce41f04484d3b5e5648158028804.png", - "aggregators": [ - "CoinMarketCap", - "1inch", - "LiFi", - "TrustWallet", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 8 - }, - "0xe1b4d34e8754600962cd944b535180bd758e6c2e": { - "address": "0xe1b4d34e8754600962cd944b535180bd758e6c2e", - "symbol": "AGETH", - "decimals": 18, - "name": "Kelp Gain", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xe1b4d34e8754600962cd944b535180bd758e6c2e.png", - "aggregators": [ - "CoinMarketCap", - "1inch", - "LiFi", - "Socket", - "Rubic", - "Squid", - "Rango", - "Sonarwatch" - ], - "occurrences": 8 - }, - "0x24fcfc492c1393274b6bcd568ac9e225bec93584": { - "address": "0x24fcfc492c1393274b6bcd568ac9e225bec93584", - "symbol": "MAVIA", - "decimals": 18, - "name": "Heroes of Mavia", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x24fcfc492c1393274b6bcd568ac9e225bec93584.png", - "aggregators": [ - "CoinMarketCap", - "1inch", - "LiFi", - "Socket", - "Rubic", - "Squid", - "Rango", - "Sonarwatch" - ], - "occurrences": 8 - }, - "0xb0c7a3ba49c7a6eaba6cd4a96c55a1391070ac9a": { - "address": "0xb0c7a3ba49c7a6eaba6cd4a96c55a1391070ac9a", - "symbol": "MAGIC", - "decimals": 18, - "name": "Treasure", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xb0c7a3ba49c7a6eaba6cd4a96c55a1391070ac9a.png", - "aggregators": [ - "Metamask", - "LiFi", - "TrustWallet", - "Socket", - "Rubic", - "Squid", - "Rango", - "Sonarwatch" - ], - "occurrences": 8 - }, - "0xb0ffa8000886e57f86dd5264b9582b2ad87b2b91": { - "address": "0xb0ffa8000886e57f86dd5264b9582b2ad87b2b91", - "symbol": "W", - "decimals": 18, - "name": "Wormhole", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xb0ffa8000886e57f86dd5264b9582b2ad87b2b91.png", - "aggregators": [ - "CoinMarketCap", - "1inch", - "LiFi", - "Socket", - "Rubic", - "Squid", - "Rango", - "Sonarwatch" - ], - "occurrences": 8 - }, - "0x1fe24f25b1cf609b9c4e7e12d802e3640dfa5e43": { - "address": "0x1fe24f25b1cf609b9c4e7e12d802e3640dfa5e43", - "symbol": "CGG", - "decimals": 18, - "name": "ChainGuardians Governance Token", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x1fe24f25b1cf609b9c4e7e12d802e3640dfa5e43.png", - "aggregators": [ - "CoinMarketCap", - "LiFi", - "TrustWallet", - "Socket", - "Rubic", - "Rango", - "Sonarwatch", - "SushiSwap" - ], - "occurrences": 8 - }, - "0x01ba67aac7f75f647d94220cc98fb30fcc5105bf": { - "address": "0x01ba67aac7f75f647d94220cc98fb30fcc5105bf", - "symbol": "LYRA", - "decimals": 18, - "name": "Lyra Token", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x01ba67aac7f75f647d94220cc98fb30fcc5105bf.png", - "aggregators": [ - "CoinMarketCap", - "LiFi", - "Socket", - "Rubic", - "Rango", - "Sonarwatch", - "SushiSwap", - "Bancor" - ], - "occurrences": 8 - }, - "0x1a7e4e63778b4f12a199c062f3efdd288afcbce8": { - "address": "0x1a7e4e63778b4f12a199c062f3efdd288afcbce8", - "symbol": "EURA", - "decimals": 18, - "name": "EURA", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x1a7e4e63778b4f12a199c062f3efdd288afcbce8.png", - "aggregators": [ - "Metamask", - "1inch", - "LiFi", - "Rubic", - "Rango", - "Sonarwatch", - "SushiSwap" - ], - "occurrences": 7 - }, - "0x6b0b3a982b4634ac68dd83a4dbf02311ce324181": { - "address": "0x6b0b3a982b4634ac68dd83a4dbf02311ce324181", - "symbol": "ALI", - "decimals": 18, - "name": "Artificial Liquid Intelligence", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x6b0b3a982b4634ac68dd83a4dbf02311ce324181.png", - "aggregators": [ - "CoinMarketCap", - "1inch", - "LiFi", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 7 - }, - "0x3d658390460295fb963f54dc0899cfb1c30776df": { - "address": "0x3d658390460295fb963f54dc0899cfb1c30776df", - "symbol": "COVAL", - "decimals": 8, - "name": "Circuits of Value", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x3d658390460295fb963f54dc0899cfb1c30776df.png", - "aggregators": [ - "OpenSwap", - "1inch", - "LiFi", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 7 - }, - "0x66761fa41377003622aee3c7675fc7b5c1c2fac5": { - "address": "0x66761fa41377003622aee3c7675fc7b5c1c2fac5", - "symbol": "CPOOL", - "decimals": 18, - "name": "Clearpool", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x66761fa41377003622aee3c7675fc7b5c1c2fac5.png", - "aggregators": [ - "CoinMarketCap", - "1inch", - "LiFi", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 7 - }, - "0x961c8c0b1aad0c0b10a51fef6a867e3091bcef17": { - "address": "0x961c8c0b1aad0c0b10a51fef6a867e3091bcef17", - "symbol": "DYP", - "decimals": 18, - "name": "Dypius OLD", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x961c8c0b1aad0c0b10a51fef6a867e3091bcef17.png", - "aggregators": [ - "CoinGecko", - "1inch", - "LiFi", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 7 - }, - "0xef3a930e1ffffacd2fc13434ac81bd278b0ecc8d": { - "address": "0xef3a930e1ffffacd2fc13434ac81bd278b0ecc8d", - "symbol": "FIS", - "decimals": 18, - "name": "Stafi", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xef3a930e1ffffacd2fc13434ac81bd278b0ecc8d.png", - "aggregators": [ - "CoinMarketCap", - "1inch", - "LiFi", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 7 - }, - "0x41545f8b9472d758bb669ed8eaeeecd7a9c4ec29": { - "address": "0x41545f8b9472d758bb669ed8eaeeecd7a9c4ec29", - "symbol": "FORT", - "decimals": 18, - "name": "Forta", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x41545f8b9472d758bb669ed8eaeeecd7a9c4ec29.png", - "aggregators": [ - "CoinMarketCap", - "1inch", - "LiFi", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 7 - }, - "0xc08512927d12348f6620a698105e1baac6ecd911": { - "address": "0xc08512927d12348f6620a698105e1baac6ecd911", - "symbol": "GYEN", - "decimals": 6, - "name": "GYEN", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xc08512927d12348f6620a698105e1baac6ecd911.png", - "aggregators": [ - "OpenSwap", - "1inch", - "LiFi", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 7 - }, - "0x6033f7f88332b8db6ad452b7c6d5bb643990ae3f": { - "address": "0x6033f7f88332b8db6ad452b7c6d5bb643990ae3f", - "symbol": "LSK", - "decimals": 18, - "name": "Lisk", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x6033f7f88332b8db6ad452b7c6d5bb643990ae3f.png", - "aggregators": [ - "CoinMarketCap", - "1inch", - "LiFi", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 7 - }, - "0xfc98e825a2264d890f9a1e68ed50e1526abccacd": { - "address": "0xfc98e825a2264d890f9a1e68ed50e1526abccacd", - "symbol": "MCO2", - "decimals": 18, - "name": "Moss Carbon Credit", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xfc98e825a2264d890f9a1e68ed50e1526abccacd.png", - "aggregators": [ - "OpenSwap", - "LiFi", - "TrustWallet", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 7 - }, - "0x3c3a81e81dc49a522a592e7622a7e711c06bf354": { - "address": "0x3c3a81e81dc49a522a592e7622a7e711c06bf354", - "symbol": "MNT", - "decimals": 18, - "name": "Mantle", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x3c3a81e81dc49a522a592e7622a7e711c06bf354.png", - "aggregators": [ - "CoinMarketCap", - "1inch", - "LiFi", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 7 - }, - "0x5cf04716ba20127f1e2297addcf4b5035000c9eb": { - "address": "0x5cf04716ba20127f1e2297addcf4b5035000c9eb", - "symbol": "NKN", - "decimals": 18, - "name": "NKN", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x5cf04716ba20127f1e2297addcf4b5035000c9eb.png", - "aggregators": [ - "OpenSwap", - "1inch", - "LiFi", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 7 - }, - "0x226bb599a12c826476e3a771454697ea52e9e220": { - "address": "0x226bb599a12c826476e3a771454697ea52e9e220", - "symbol": "PRO", - "decimals": 8, - "name": "Propy", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x226bb599a12c826476e3a771454697ea52e9e220.png", - "aggregators": [ - "OpenSwap", - "1inch", - "LiFi", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 7 - }, - "0x30d20208d987713f46dfd34ef128bb16c404d10f": { - "address": "0x30d20208d987713f46dfd34ef128bb16c404d10f", - "symbol": "SD", - "decimals": 18, - "name": "Stader", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x30d20208d987713f46dfd34ef128bb16c404d10f.png", - "aggregators": [ - "CoinMarketCap", - "1inch", - "LiFi", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 7 - }, - "0xcdf7028ceab81fa0c6971208e83fa7872994bee5": { - "address": "0xcdf7028ceab81fa0c6971208e83fa7872994bee5", - "symbol": "T", - "decimals": 18, - "name": "Threshold Network", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xcdf7028ceab81fa0c6971208e83fa7872994bee5.png", - "aggregators": [ - "CoinMarketCap", - "1inch", - "LiFi", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 7 - }, - "0x4507cef57c46789ef8d1a19ea45f4216bae2b528": { - "address": "0x4507cef57c46789ef8d1a19ea45f4216bae2b528", - "symbol": "TOKEN", - "decimals": 9, - "name": "TokenFi", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x4507cef57c46789ef8d1a19ea45f4216bae2b528.png", - "aggregators": [ - "Metamask", - "1inch", - "Socket", - "Rubic", - "Squid", - "Rango", - "Sonarwatch" - ], - "occurrences": 7 - }, - "0xa35923162c49cf95e6bf26623385eb431ad920d3": { - "address": "0xa35923162c49cf95e6bf26623385eb431ad920d3", - "symbol": "TURBO", - "decimals": 18, - "name": "Turbo", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xa35923162c49cf95e6bf26623385eb431ad920d3.png", - "aggregators": [ - "CoinMarketCap", - "LiFi", - "Socket", - "Rubic", - "Squid", - "Rango", - "Sonarwatch" - ], - "occurrences": 7 - }, - "0x3ed3b47dd13ec9a98b44e6204a523e766b225811": { - "address": "0x3ed3b47dd13ec9a98b44e6204a523e766b225811", - "symbol": "AUSDT", - "decimals": 6, - "name": "Aave USDT", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x3ed3b47dd13ec9a98b44e6204a523e766b225811.png", - "aggregators": [ - "Metamask", - "1inch", - "LiFi", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 7 - }, - "0x30f271c9e86d2b7d00a6376cd96a1cfbd5f0b9b3": { - "address": "0x30f271c9e86d2b7d00a6376cd96a1cfbd5f0b9b3", - "symbol": "DEC", - "decimals": 18, - "name": "Decentr", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x30f271c9e86d2b7d00a6376cd96a1cfbd5f0b9b3.png", - "aggregators": [ - "CoinMarketCap", - "LiFi", - "TrustWallet", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 7 - }, - "0x9e6be44cc1236eef7e1f197418592d363bedcd5a": { - "address": "0x9e6be44cc1236eef7e1f197418592d363bedcd5a", - "symbol": "AZUR", - "decimals": 18, - "name": "Azuro Protocol", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x9e6be44cc1236eef7e1f197418592d363bedcd5a.png", - "aggregators": [ - "CoinMarketCap", - "1inch", - "LiFi", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 7 - }, - "0x2370f9d504c7a6e775bf6e14b3f12846b594cd53": { - "address": "0x2370f9d504c7a6e775bf6e14b3f12846b594cd53", - "symbol": "JPYC", - "decimals": 18, - "name": "JPY Coin", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x2370f9d504c7a6e775bf6e14b3f12846b594cd53.png", - "aggregators": [ - "CoinMarketCap", - "LiFi", - "Socket", - "Rubic", - "Rango", - "Sonarwatch", - "SushiSwap" - ], - "occurrences": 7 - }, - "0x06450dee7fd2fb8e39061434babcfc05599a6fb8": { - "address": "0x06450dee7fd2fb8e39061434babcfc05599a6fb8", - "symbol": "XEN", - "decimals": 18, - "name": "XEN Crypto", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x06450dee7fd2fb8e39061434babcfc05599a6fb8.png", - "aggregators": [ - "CoinMarketCap", - "1inch", - "Socket", - "Rubic", - "Squid", - "Rango", - "Sonarwatch" - ], - "occurrences": 7 - }, - "0xf3dcbc6d72a4e1892f7917b7c43b74131df8480e": { - "address": "0xf3dcbc6d72a4e1892f7917b7c43b74131df8480e", - "symbol": "BDP", - "decimals": 18, - "name": "Big Data Protocol", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xf3dcbc6d72a4e1892f7917b7c43b74131df8480e.png", - "aggregators": [ - "CoinMarketCap", - "1inch", - "LiFi", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 7 - }, - "0x6c3f90f043a72fa612cbac8115ee7e52bde6e490": { - "address": "0x6c3f90f043a72fa612cbac8115ee7e52bde6e490", - "symbol": "3CRV", - "decimals": 18, - "name": "LP 3pool Curve", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x6c3f90f043a72fa612cbac8115ee7e52bde6e490.png", - "aggregators": [ - "CoinMarketCap", - "1inch", - "LiFi", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 7 - }, - "0x9ed8e7c9604790f7ec589f99b94361d8aab64e5e": { - "address": "0x9ed8e7c9604790f7ec589f99b94361d8aab64e5e", - "symbol": "UNISTAKE", - "decimals": 18, - "name": "Unistake", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x9ed8e7c9604790f7ec589f99b94361d8aab64e5e.png", - "aggregators": [ - "CoinMarketCap", - "1inch", - "TrustWallet", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 7 - }, - "0x469eda64aed3a3ad6f868c44564291aa415cb1d9": { - "address": "0x469eda64aed3a3ad6f868c44564291aa415cb1d9", - "symbol": "FLUX", - "decimals": 18, - "name": "FLUX", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x469eda64aed3a3ad6f868c44564291aa415cb1d9.png", - "aggregators": [ - "CoinMarketCap", - "LiFi", - "Socket", - "Rubic", - "Rango", - "Sonarwatch", - "SushiSwap" - ], - "occurrences": 7 - }, - "0x88acdd2a6425c3faae4bc9650fd7e27e0bebb7ab": { - "address": "0x88acdd2a6425c3faae4bc9650fd7e27e0bebb7ab", - "symbol": "⚗️", - "decimals": 18, - "name": "Alchemist", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x88acdd2a6425c3faae4bc9650fd7e27e0bebb7ab.png", - "aggregators": [ - "CoinMarketCap", - "LiFi", - "TrustWallet", - "Rubic", - "Rango", - "Sonarwatch", - "SushiSwap" - ], - "occurrences": 7 - }, - "0x2f109021afe75b949429fe30523ee7c0d5b27207": { - "address": "0x2f109021afe75b949429fe30523ee7c0d5b27207", - "symbol": "OCC", - "decimals": 18, - "name": "OccamFi", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x2f109021afe75b949429fe30523ee7c0d5b27207.png", - "aggregators": [ - "CoinMarketCap", - "1inch", - "LiFi", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 7 - }, - "0x0f17bc9a994b87b5225cfb6a2cd4d667adb4f20b": { - "address": "0x0f17bc9a994b87b5225cfb6a2cd4d667adb4f20b", - "symbol": "JEUR", - "decimals": 18, - "name": "Jarvis Synthetic Euro", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x0f17bc9a994b87b5225cfb6a2cd4d667adb4f20b.png", - "aggregators": [ - "CoinMarketCap", - "LiFi", - "Socket", - "Rubic", - "Rango", - "Sonarwatch", - "SushiSwap" - ], - "occurrences": 7 - }, - "0xfc979087305a826c2b2a0056cfaba50aad3e6439": { - "address": "0xfc979087305a826c2b2a0056cfaba50aad3e6439", - "symbol": "DAFI", - "decimals": 18, - "name": "Dafi Protocol", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xfc979087305a826c2b2a0056cfaba50aad3e6439.png", - "aggregators": [ - "CoinMarketCap", - "1inch", - "LiFi", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 7 - }, - "0xdfdb7f72c1f195c5951a234e8db9806eb0635346": { - "address": "0xdfdb7f72c1f195c5951a234e8db9806eb0635346", - "symbol": "NFD", - "decimals": 18, - "name": "Feisty Doge NFT", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xdfdb7f72c1f195c5951a234e8db9806eb0635346.png", - "aggregators": [ - "CoinMarketCap", - "Socket", - "Rubic", - "Squid", - "Rango", - "Sonarwatch", - "SushiSwap" - ], - "occurrences": 7 - }, - "0xf3ae5d769e153ef72b4e3591ac004e89f48107a1": { - "address": "0xf3ae5d769e153ef72b4e3591ac004e89f48107a1", - "symbol": "DPR", - "decimals": 18, - "name": "Deeper Network", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xf3ae5d769e153ef72b4e3591ac004e89f48107a1.png", - "aggregators": [ - "CoinMarketCap", - "1inch", - "LiFi", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 7 - }, - "0x505b5eda5e25a67e1c24a2bf1a527ed9eb88bf04": { - "address": "0x505b5eda5e25a67e1c24a2bf1a527ed9eb88bf04", - "symbol": "CWEB", - "decimals": 18, - "name": "Coinweb", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x505b5eda5e25a67e1c24a2bf1a527ed9eb88bf04.png", - "aggregators": [ - "CoinMarketCap", - "1inch", - "LiFi", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 7 - }, - "0x2af1df3ab0ab157e1e2ad8f88a7d04fbea0c7dc6": { - "address": "0x2af1df3ab0ab157e1e2ad8f88a7d04fbea0c7dc6", - "symbol": "BED", - "decimals": 18, - "name": "Bankless BED Index", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x2af1df3ab0ab157e1e2ad8f88a7d04fbea0c7dc6.png", - "aggregators": [ - "CoinMarketCap", - "1inch", - "LiFi", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 7 - }, - "0xaa6e8127831c9de45ae56bb1b0d4d4da6e5665bd": { - "address": "0xaa6e8127831c9de45ae56bb1b0d4d4da6e5665bd", - "symbol": "ETH2X-FLI", - "decimals": 18, - "name": "ETH 2x Flexible Leverage Index", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xaa6e8127831c9de45ae56bb1b0d4d4da6e5665bd.png", - "aggregators": [ - "CoinMarketCap", - "LiFi", - "TrustWallet", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 7 - }, - "0x0b498ff89709d3838a063f1dfa463091f9801c2b": { - "address": "0x0b498ff89709d3838a063f1dfa463091f9801c2b", - "symbol": "BTC2X-FLI", - "decimals": 18, - "name": "BTC 2x Flexible Leverage Index", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x0b498ff89709d3838a063f1dfa463091f9801c2b.png", - "aggregators": [ - "CoinMarketCap", - "LiFi", - "Socket", - "Rubic", - "Rango", - "Sonarwatch", - "SushiSwap" - ], - "occurrences": 7 - }, - "0xd9c2d319cd7e6177336b0a9c93c21cb48d84fb54": { - "address": "0xd9c2d319cd7e6177336b0a9c93c21cb48d84fb54", - "symbol": "HAPI", - "decimals": 18, - "name": "HAPI", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xd9c2d319cd7e6177336b0a9c93c21cb48d84fb54.png", - "aggregators": [ - "CoinMarketCap", - "1inch", - "LiFi", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 7 - }, - "0x892a6f9df0147e5f079b0993f486f9aca3c87881": { - "address": "0x892a6f9df0147e5f079b0993f486f9aca3c87881", - "symbol": "XFUND", - "decimals": 9, - "name": "xFUND", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x892a6f9df0147e5f079b0993f486f9aca3c87881.png", - "aggregators": [ - "CoinMarketCap", - "1inch", - "LiFi", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 7 - }, - "0xac3e018457b222d93114458476f3e3416abbe38f": { - "address": "0xac3e018457b222d93114458476f3e3416abbe38f", - "symbol": "SFRXETH", - "decimals": 18, - "name": "Staked Frax Ether", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xac3e018457b222d93114458476f3e3416abbe38f.png", - "aggregators": [ - "CoinMarketCap", - "LiFi", - "Socket", - "Rubic", - "Squid", - "Rango", - "Sonarwatch" - ], - "occurrences": 7 - }, - "0x3496b523e5c00a4b4150d6721320cddb234c3079": { - "address": "0x3496b523e5c00a4b4150d6721320cddb234c3079", - "symbol": "NUM", - "decimals": 18, - "name": "NUM Token", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x3496b523e5c00a4b4150d6721320cddb234c3079.png", - "aggregators": [ - "CoinMarketCap", - "1inch", - "Socket", - "Rubic", - "Rango", - "Sonarwatch", - "SushiSwap" - ], - "occurrences": 7 - }, - "0x993864e43caa7f7f12953ad6feb1d1ca635b875f": { - "address": "0x993864e43caa7f7f12953ad6feb1d1ca635b875f", - "symbol": "SDAO", - "decimals": 18, - "name": "SingularityDAO", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x993864e43caa7f7f12953ad6feb1d1ca635b875f.png", - "aggregators": [ - "CoinMarketCap", - "1inch", - "LiFi", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 7 - }, - "0xdcee70654261af21c44c093c300ed3bb97b78192": { - "address": "0xdcee70654261af21c44c093c300ed3bb97b78192", - "symbol": "WOETH", - "decimals": 18, - "name": "Wrapped OETH", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xdcee70654261af21c44c093c300ed3bb97b78192.png", - "aggregators": [ - "CoinMarketCap", - "LiFi", - "Socket", - "Rubic", - "Rango", - "Sonarwatch", - "SushiSwap" - ], - "occurrences": 7 - }, - "0x8390a1da07e376ef7add4be859ba74fb83aa02d5": { - "address": "0x8390a1da07e376ef7add4be859ba74fb83aa02d5", - "symbol": "GROK", - "decimals": 9, - "name": "Grok", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x8390a1da07e376ef7add4be859ba74fb83aa02d5.png", - "aggregators": [ - "CoinGecko", - "1inch", - "Socket", - "Rubic", - "Squid", - "Rango", - "Sonarwatch" - ], - "occurrences": 7 - }, - "0x4a615bb7166210cce20e6642a6f8fb5d4d044496": { - "address": "0x4a615bb7166210cce20e6642a6f8fb5d4d044496", - "symbol": "NAOS", - "decimals": 18, - "name": "NAOS Finance", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x4a615bb7166210cce20e6642a6f8fb5d4d044496.png", - "aggregators": [ - "Metamask", - "LiFi", - "Socket", - "Rubic", - "Rango", - "Sonarwatch", - "SushiSwap" - ], - "occurrences": 7 - }, - "0x419c4db4b9e25d6db2ad9691ccb832c8d9fda05e": { - "address": "0x419c4db4b9e25d6db2ad9691ccb832c8d9fda05e", - "symbol": "DRGN", - "decimals": 18, - "name": "Dragon", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x419c4db4b9e25d6db2ad9691ccb832c8d9fda05e.png", - "aggregators": [ - "CoinMarketCap", - "LiFi", - "Socket", - "Rubic", - "Rango", - "Sonarwatch", - "Bancor" - ], - "occurrences": 7 - }, - "0xf1c9acdc66974dfb6decb12aa385b9cd01190e38": { - "address": "0xf1c9acdc66974dfb6decb12aa385b9cd01190e38", - "symbol": "OSETH", - "decimals": 18, - "name": "StakeWise Staked ETH", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xf1c9acdc66974dfb6decb12aa385b9cd01190e38.png", - "aggregators": [ - "CoinMarketCap", - "1inch", - "LiFi", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 7 - }, - "0x470ebf5f030ed85fc1ed4c2d36b9dd02e77cf1b7": { - "address": "0x470ebf5f030ed85fc1ed4c2d36b9dd02e77cf1b7", - "symbol": "TEMPLE", - "decimals": 18, - "name": "Temple", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x470ebf5f030ed85fc1ed4c2d36b9dd02e77cf1b7.png", - "aggregators": [ - "CoinMarketCap", - "LiFi", - "Socket", - "Rubic", - "Rango", - "Sonarwatch", - "SushiSwap" - ], - "occurrences": 7 - }, - "0x59d9356e565ab3a36dd77763fc0d87feaf85508c": { - "address": "0x59d9356e565ab3a36dd77763fc0d87feaf85508c", - "symbol": "USDM", - "decimals": 18, - "name": "Mountain Protocol USD", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x59d9356e565ab3a36dd77763fc0d87feaf85508c.png", - "aggregators": [ - "CoinMarketCap", - "1inch", - "LiFi", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 7 - }, - "0xfd418e42783382e86ae91e445406600ba144d162": { - "address": "0xfd418e42783382e86ae91e445406600ba144d162", - "symbol": "ZRC", - "decimals": 18, - "name": "Zircuit", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xfd418e42783382e86ae91e445406600ba144d162.png", - "aggregators": [ - "CoinMarketCap", - "1inch", - "LiFi", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 7 - }, - "0x385d65ed9241e415cfc689c3e0bcf5ab2f0505c2": { - "address": "0x385d65ed9241e415cfc689c3e0bcf5ab2f0505c2", - "symbol": "MOLLARS", - "decimals": 9, - "name": "MollarsToken", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x385d65ed9241e415cfc689c3e0bcf5ab2f0505c2.png", - "aggregators": [ - "CoinMarketCap", - "LiFi", - "Socket", - "Rubic", - "Squid", - "Rango", - "Sonarwatch" - ], - "occurrences": 7 - }, - "0x8947da500eb47f82df21143d0c01a29862a8c3c5": { - "address": "0x8947da500eb47f82df21143d0c01a29862a8c3c5", - "symbol": "THALES", - "decimals": 18, - "name": "Thales DAO Token", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x8947da500eb47f82df21143d0c01a29862a8c3c5.png", - "aggregators": [ - "CoinMarketCap", - "LiFi", - "Socket", - "Rubic", - "Rango", - "Sonarwatch", - "Bancor" - ], - "occurrences": 7 - }, - "0xf819d9cb1c2a819fd991781a822de3ca8607c3c9": { - "address": "0xf819d9cb1c2a819fd991781a822de3ca8607c3c9", - "symbol": "UNIBOT", - "decimals": 18, - "name": "Unibot", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xf819d9cb1c2a819fd991781a822de3ca8607c3c9.png", - "aggregators": [ - "CoinMarketCap", - "LiFi", - "Socket", - "Rubic", - "Rango", - "Sonarwatch", - "SushiSwap" - ], - "occurrences": 7 - }, - "0x9813037ee2218799597d83d4a5b6f3b6778218d9": { - "address": "0x9813037ee2218799597d83d4a5b6f3b6778218d9", - "symbol": "BONE", - "decimals": 18, - "name": "Bone ShibaSwap", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x9813037ee2218799597d83d4a5b6f3b6778218d9.png", - "aggregators": [ - "CoinMarketCap", - "1inch", - "LiFi", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 7 - }, - "0xf951e335afb289353dc249e82926178eac7ded78": { - "address": "0xf951e335afb289353dc249e82926178eac7ded78", - "symbol": "SWETH", - "decimals": 18, - "name": "Swell Ethereum", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xf951e335afb289353dc249e82926178eac7ded78.png", - "aggregators": [ - "CoinMarketCap", - "1inch", - "LiFi", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 7 - }, - "0x73a15fed60bf67631dc6cd7bc5b6e8da8190acf5": { - "address": "0x73a15fed60bf67631dc6cd7bc5b6e8da8190acf5", - "symbol": "USD0", - "decimals": 18, - "name": "Usual USD", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x73a15fed60bf67631dc6cd7bc5b6e8da8190acf5.png", - "aggregators": [ - "CoinMarketCap", - "1inch", - "LiFi", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 7 - }, - "0xc0c293ce456ff0ed870add98a0828dd4d2903dbf": { - "address": "0xc0c293ce456ff0ed870add98a0828dd4d2903dbf", - "symbol": "AURA", - "decimals": 18, - "name": "Aura Finance", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xc0c293ce456ff0ed870add98a0828dd4d2903dbf.png", - "aggregators": [ - "CoinMarketCap", - "1inch", - "LiFi", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 7 - }, - "0x662b67d00a13faf93254714dd601f5ed49ef2f51": { - "address": "0x662b67d00a13faf93254714dd601f5ed49ef2f51", - "symbol": "ORC", - "decimals": 18, - "name": "Orbit Chain", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x662b67d00a13faf93254714dd601f5ed49ef2f51.png", - "aggregators": [ - "CoinMarketCap", - "1inch", - "LiFi", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 7 - }, - "0x99295f1141d58a99e939f7be6bbe734916a875b8": { - "address": "0x99295f1141d58a99e939f7be6bbe734916a875b8", - "symbol": "LPL", - "decimals": 18, - "name": "LinkPool", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x99295f1141d58a99e939f7be6bbe734916a875b8.png", - "aggregators": [ - "CoinMarketCap", - "LiFi", - "Socket", - "Rubic", - "Rango", - "Sonarwatch", - "Bancor" - ], - "occurrences": 7 - }, - "0x9695e0114e12c0d3a3636fab5a18e6b737529023": { - "address": "0x9695e0114e12c0d3a3636fab5a18e6b737529023", - "symbol": "DFYN", - "decimals": 18, - "name": "Dfyn Network", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x9695e0114e12c0d3a3636fab5a18e6b737529023.png", - "aggregators": [ - "CoinMarketCap", - "1inch", - "LiFi", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 7 - }, - "0xe0b9a2c3e9f40cf74b2c7f591b2b0cca055c3112": { - "address": "0xe0b9a2c3e9f40cf74b2c7f591b2b0cca055c3112", - "symbol": "GS", - "decimals": 18, - "name": "Genesis Shards", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xe0b9a2c3e9f40cf74b2c7f591b2b0cca055c3112.png", - "aggregators": [ - "CoinMarketCap", - "1inch", - "LiFi", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 7 - }, - "0xbd2949f67dcdc549c6ebe98696449fa79d988a9f": { - "address": "0xbd2949f67dcdc549c6ebe98696449fa79d988a9f", - "symbol": "EMTRG", - "decimals": 18, - "name": "Meter Governance mapped by Meter io", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xbd2949f67dcdc549c6ebe98696449fa79d988a9f.png", - "aggregators": [ - "CoinMarketCap", - "1inch", - "LiFi", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 7 - }, - "0xae697f994fc5ebc000f8e22ebffee04612f98a0d": { - "address": "0xae697f994fc5ebc000f8e22ebffee04612f98a0d", - "symbol": "LGCY", - "decimals": 18, - "name": "LGCY Network", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xae697f994fc5ebc000f8e22ebffee04612f98a0d.png", - "aggregators": [ - "CoinMarketCap", - "1inch", - "TrustWallet", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 7 - }, - "0xd9a442856c234a39a81a089c06451ebaa4306a72": { - "address": "0xd9a442856c234a39a81a089c06451ebaa4306a72", - "symbol": "PUFETH", - "decimals": 18, - "name": "pufETH", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xd9a442856c234a39a81a089c06451ebaa4306a72.png", - "aggregators": [ - "CoinMarketCap", - "1inch", - "LiFi", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 7 - }, - "0x4fbb350052bca5417566f188eb2ebce5b19bc964": { - "address": "0x4fbb350052bca5417566f188eb2ebce5b19bc964", - "symbol": "GRG", - "decimals": 18, - "name": "Rigo", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x4fbb350052bca5417566f188eb2ebce5b19bc964.png", - "aggregators": [ - "Metamask", - "LiFi", - "Socket", - "Rubic", - "Rango", - "Sonarwatch", - "Bancor" - ], - "occurrences": 7 - }, - "0xe796d6ca1ceb1b022ece5296226bf784110031cd": { - "address": "0xe796d6ca1ceb1b022ece5296226bf784110031cd", - "symbol": "BLES", - "decimals": 18, - "name": "Blind Boxes", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xe796d6ca1ceb1b022ece5296226bf784110031cd.png", - "aggregators": [ - "CoinMarketCap", - "1inch", - "LiFi", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 7 - }, - "0xa487bf43cf3b10dffc97a9a744cbb7036965d3b9": { - "address": "0xa487bf43cf3b10dffc97a9a744cbb7036965d3b9", - "symbol": "DERI", - "decimals": 18, - "name": "Deri Token", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xa487bf43cf3b10dffc97a9a744cbb7036965d3b9.png", - "aggregators": [ - "CoinGecko", - "LiFi", - "Socket", - "Rubic", - "Rango", - "Sonarwatch", - "SushiSwap" - ], - "occurrences": 7 - }, - "0xb4b9dc1c77bdbb135ea907fd5a08094d98883a35": { - "address": "0xb4b9dc1c77bdbb135ea907fd5a08094d98883a35", - "symbol": "SWEAT", - "decimals": 18, - "name": "SWEAT", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xb4b9dc1c77bdbb135ea907fd5a08094d98883a35.png", - "aggregators": [ - "CoinMarketCap", - "1inch", - "LiFi", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 7 - }, - "0x68d57c9a1c35f63e2c83ee8e49a64e9d70528d25": { - "address": "0x68d57c9a1c35f63e2c83ee8e49a64e9d70528d25", - "symbol": "SRN", - "decimals": 18, - "name": "SIRIN", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x68d57c9a1c35f63e2c83ee8e49a64e9d70528d25.png", - "aggregators": [ - "CoinMarketCap", - "LiFi", - "Socket", - "Rubic", - "Rango", - "Sonarwatch", - "Bancor" - ], - "occurrences": 7 - }, - "0xd559f20296ff4895da39b5bd9add54b442596a61": { - "address": "0xd559f20296ff4895da39b5bd9add54b442596a61", - "symbol": "FTX", - "decimals": 18, - "name": "FintruX Network", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xd559f20296ff4895da39b5bd9add54b442596a61.png", - "aggregators": [ - "CoinMarketCap", - "LiFi", - "Socket", - "Rubic", - "Rango", - "Sonarwatch", - "Bancor" - ], - "occurrences": 7 - }, - "0x0f71b8de197a1c84d31de0f1fa7926c365f052b3": { - "address": "0x0f71b8de197a1c84d31de0f1fa7926c365f052b3", - "symbol": "ARCONA", - "decimals": 18, - "name": "Arcona Distribution Contract", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x0f71b8de197a1c84d31de0f1fa7926c365f052b3.png", - "aggregators": [ - "CoinMarketCap", - "1inch", - "Socket", - "Rubic", - "Rango", - "Sonarwatch", - "Bancor" - ], - "occurrences": 7 - }, - "0xa0cf46eb152656c7090e769916eb44a138aaa406": { - "address": "0xa0cf46eb152656c7090e769916eb44a138aaa406", - "symbol": "SPH", - "decimals": 18, - "name": "Spheroid", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xa0cf46eb152656c7090e769916eb44a138aaa406.png", - "aggregators": [ - "CoinMarketCap", - "LiFi", - "Socket", - "Rubic", - "Rango", - "Sonarwatch", - "Bancor" - ], - "occurrences": 7 - }, - "0x14da7b27b2e0fedefe0a664118b0c9bc68e2e9af": { - "address": "0x14da7b27b2e0fedefe0a664118b0c9bc68e2e9af", - "symbol": "BCUG", - "decimals": 18, - "name": "Blockchain Cuties Universe Governance", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x14da7b27b2e0fedefe0a664118b0c9bc68e2e9af.png", - "aggregators": [ - "CoinMarketCap", - "1inch", - "LiFi", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 7 - }, - "0x68037790a0229e9ce6eaa8a99ea92964106c4703": { - "address": "0x68037790a0229e9ce6eaa8a99ea92964106c4703", - "symbol": "PAR", - "decimals": 18, - "name": "Parallel", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x68037790a0229e9ce6eaa8a99ea92964106c4703.png", - "aggregators": [ - "CoinMarketCap", - "1inch", - "LiFi", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 7 - }, - "0x43a96962254855f16b925556f9e97be436a43448": { - "address": "0x43a96962254855f16b925556f9e97be436a43448", - "symbol": "HORD", - "decimals": 18, - "name": "Hord", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x43a96962254855f16b925556f9e97be436a43448.png", - "aggregators": [ - "CoinMarketCap", - "1inch", - "LiFi", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 7 - }, - "0x48c3399719b582dd63eb5aadf12a40b4c3f52fa2": { - "address": "0x48c3399719b582dd63eb5aadf12a40b4c3f52fa2", - "symbol": "SWISE", - "decimals": 18, - "name": "StakeWise", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x48c3399719b582dd63eb5aadf12a40b4c3f52fa2.png", - "aggregators": [ - "CoinMarketCap", - "1inch", - "LiFi", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 7 - }, - "0x675bbc7514013e2073db7a919f6e4cbef576de37": { - "address": "0x675bbc7514013e2073db7a919f6e4cbef576de37", - "symbol": "CLS", - "decimals": 18, - "name": "Coldstack", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x675bbc7514013e2073db7a919f6e4cbef576de37.png", - "aggregators": [ - "CoinMarketCap", - "1inch", - "LiFi", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 7 - }, - "0x9506d37f70eb4c3d79c398d326c871abbf10521d": { - "address": "0x9506d37f70eb4c3d79c398d326c871abbf10521d", - "symbol": "MLT", - "decimals": 18, - "name": "Media Licensing Token", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x9506d37f70eb4c3d79c398d326c871abbf10521d.png", - "aggregators": [ - "CoinMarketCap", - "1inch", - "LiFi", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 7 - }, - "0xfe2e637202056d30016725477c5da089ab0a043a": { - "address": "0xfe2e637202056d30016725477c5da089ab0a043a", - "symbol": "SETH2", - "decimals": 18, - "name": "sETH2", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xfe2e637202056d30016725477c5da089ab0a043a.png", - "aggregators": [ - "CoinMarketCap", - "1inch", - "LiFi", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 7 - }, - "0x37fe0f067fa808ffbdd12891c0858532cfe7361d": { - "address": "0x37fe0f067fa808ffbdd12891c0858532cfe7361d", - "symbol": "CIV", - "decimals": 18, - "name": "Civilization", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x37fe0f067fa808ffbdd12891c0858532cfe7361d.png", - "aggregators": [ - "CoinMarketCap", - "1inch", - "LiFi", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 7 - }, - "0xe7f58a92476056627f9fdb92286778abd83b285f": { - "address": "0xe7f58a92476056627f9fdb92286778abd83b285f", - "symbol": "DWEB", - "decimals": 18, - "name": "DecentraWeb", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xe7f58a92476056627f9fdb92286778abd83b285f.png", - "aggregators": [ - "CoinMarketCap", - "1inch", - "LiFi", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 7 - }, - "0xaaaaaa20d9e0e2461697782ef11675f668207961": { - "address": "0xaaaaaa20d9e0e2461697782ef11675f668207961", - "symbol": "AURORA", - "decimals": 18, - "name": "Aurora", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xaaaaaa20d9e0e2461697782ef11675f668207961.png", - "aggregators": [ - "CoinMarketCap", - "1inch", - "LiFi", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 7 - }, - "0x73d7c860998ca3c01ce8c808f5577d94d545d1b4": { - "address": "0x73d7c860998ca3c01ce8c808f5577d94d545d1b4", - "symbol": "IXS", - "decimals": 18, - "name": "IXS", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x73d7c860998ca3c01ce8c808f5577d94d545d1b4.png", - "aggregators": [ - "CoinMarketCap", - "1inch", - "LiFi", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 7 - }, - "0xf1376bcef0f78459c0ed0ba5ddce976f1ddf51f4": { - "address": "0xf1376bcef0f78459c0ed0ba5ddce976f1ddf51f4", - "symbol": "UNIETH", - "decimals": 18, - "name": "Universal ETH", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xf1376bcef0f78459c0ed0ba5ddce976f1ddf51f4.png", - "aggregators": [ - "CoinMarketCap", - "LiFi", - "Socket", - "Rubic", - "Rango", - "Sonarwatch", - "SushiSwap" - ], - "occurrences": 7 - }, - "0xe60779cc1b2c1d0580611c526a8df0e3f870ec48": { - "address": "0xe60779cc1b2c1d0580611c526a8df0e3f870ec48", - "symbol": "USH", - "decimals": 18, - "name": "unshETHing_Token", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xe60779cc1b2c1d0580611c526a8df0e3f870ec48.png", - "aggregators": [ - "CoinMarketCap", - "LiFi", - "Socket", - "Rubic", - "Rango", - "Sonarwatch", - "SushiSwap" - ], - "occurrences": 7 - }, - "0x3ebb4a4e91ad83be51f8d596533818b246f4bee1": { - "address": "0x3ebb4a4e91ad83be51f8d596533818b246f4bee1", - "symbol": "SATA", - "decimals": 18, - "name": "Signata", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x3ebb4a4e91ad83be51f8d596533818b246f4bee1.png", - "aggregators": [ - "CoinMarketCap", - "LiFi", - "Socket", - "Rubic", - "Rango", - "Sonarwatch", - "Bancor" - ], - "occurrences": 7 - }, - "0x4f640f2529ee0cf119a2881485845fa8e61a782a": { - "address": "0x4f640f2529ee0cf119a2881485845fa8e61a782a", - "symbol": "ORE", - "decimals": 18, - "name": "ORE Network", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x4f640f2529ee0cf119a2881485845fa8e61a782a.png", - "aggregators": [ - "CoinMarketCap", - "1inch", - "LiFi", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 7 - }, - "0xb1f1ee126e9c96231cc3d3fad7c08b4cf873b1f1": { - "address": "0xb1f1ee126e9c96231cc3d3fad7c08b4cf873b1f1", - "symbol": "BIFI", - "decimals": 18, - "name": "Beefy", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xb1f1ee126e9c96231cc3d3fad7c08b4cf873b1f1.png", - "aggregators": [ - "CoinMarketCap", - "1inch", - "LiFi", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 7 - }, - "0x38e68a37e401f7271568cecaac63c6b1e19130b4": { - "address": "0x38e68a37e401f7271568cecaac63c6b1e19130b4", - "symbol": "BANANA", - "decimals": 18, - "name": "Banana Gun", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x38e68a37e401f7271568cecaac63c6b1e19130b4.png", - "aggregators": [ - "CoinMarketCap", - "1inch", - "Socket", - "Rubic", - "Squid", - "Rango", - "Sonarwatch" - ], - "occurrences": 7 - }, - "0x15e6e0d4ebeac120f9a97e71faa6a0235b85ed12": { - "address": "0x15e6e0d4ebeac120f9a97e71faa6a0235b85ed12", - "symbol": "SAVM", - "decimals": 18, - "name": "SatoshiVM", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x15e6e0d4ebeac120f9a97e71faa6a0235b85ed12.png", - "aggregators": [ - "CoinMarketCap", - "1inch", - "LiFi", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 7 - }, - "0xdbb7a34bf10169d6d2d0d02a6cbb436cf4381bfa": { - "address": "0xdbb7a34bf10169d6d2d0d02a6cbb436cf4381bfa", - "symbol": "ZENT", - "decimals": 18, - "name": "Zentry", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xdbb7a34bf10169d6d2d0d02a6cbb436cf4381bfa.png", - "aggregators": [ - "CoinMarketCap", - "1inch", - "LiFi", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 7 - }, - "0xf944e35f95e819e752f3ccb5faf40957d311e8c5": { - "address": "0xf944e35f95e819e752f3ccb5faf40957d311e8c5", - "symbol": "MOCA", - "decimals": 18, - "name": "Moca Network", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xf944e35f95e819e752f3ccb5faf40957d311e8c5.png", - "aggregators": [ - "CoinMarketCap", - "1inch", - "LiFi", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 7 - }, - "0x15b7c0c907e4c6b9adaaaabc300c08991d6cea05": { - "address": "0x15b7c0c907e4c6b9adaaaabc300c08991d6cea05", - "symbol": "GEL", - "decimals": 18, - "name": "Gelato", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x15b7c0c907e4c6b9adaaaabc300c08991d6cea05.png", - "aggregators": [ - "CoinMarketCap", - "1inch", - "LiFi", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 7 - }, - "0x111111517e4929d3dcbdfa7cce55d30d4b6bc4d6": { - "address": "0x111111517e4929d3dcbdfa7cce55d30d4b6bc4d6", - "symbol": "ICHI", - "decimals": 18, - "name": "ICHI", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x111111517e4929d3dcbdfa7cce55d30d4b6bc4d6.png", - "aggregators": [ - "CoinMarketCap", - "1inch", - "LiFi", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 7 - }, - "0x826180541412d574cf1336d22c0c0a287822678a": { - "address": "0x826180541412d574cf1336d22c0c0a287822678a", - "symbol": "FLIP", - "decimals": 18, - "name": "Chainflip", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x826180541412d574cf1336d22c0c0a287822678a.png", - "aggregators": [ - "CoinMarketCap", - "LiFi", - "Socket", - "Rubic", - "Squid", - "Rango", - "Sonarwatch" - ], - "occurrences": 7 - }, - "0xa35b1b31ce002fbf2058d22f30f95d405200a15b": { - "address": "0xa35b1b31ce002fbf2058d22f30f95d405200a15b", - "symbol": "ETHX", - "decimals": 18, - "name": "Stader ETHx", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xa35b1b31ce002fbf2058d22f30f95d405200a15b.png", - "aggregators": [ - "CoinMarketCap", - "1inch", - "LiFi", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 7 - }, - "0xc98d64da73a6616c42117b582e832812e7b8d57f": { - "address": "0xc98d64da73a6616c42117b582e832812e7b8d57f", - "symbol": "RSS3", - "decimals": 18, - "name": "RSS3", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xc98d64da73a6616c42117b582e832812e7b8d57f.png", - "aggregators": [ - "CoinMarketCap", - "1inch", - "LiFi", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 7 - }, - "0xe6828d65bf5023ae1851d90d8783cc821ba7eee1": { - "address": "0xe6828d65bf5023ae1851d90d8783cc821ba7eee1", - "symbol": "ABOND", - "decimals": 18, - "name": "ApeBond", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xe6828d65bf5023ae1851d90d8783cc821ba7eee1.png", - "aggregators": [ - "CoinMarketCap", - "LiFi", - "Socket", - "Rubic", - "Squid", - "Rango", - "Sonarwatch" - ], - "occurrences": 7 - }, - "0xf99d58e463a2e07e5692127302c20a191861b4d6": { - "address": "0xf99d58e463a2e07e5692127302c20a191861b4d6", - "symbol": "ANY", - "decimals": 18, - "name": "Anyswap", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xf99d58e463a2e07e5692127302c20a191861b4d6.png", - "aggregators": [ - "CoinMarketCap", - "LiFi", - "Socket", - "Rubic", - "Rango", - "Sonarwatch", - "SushiSwap" - ], - "occurrences": 7 - }, - "0xf970b8e36e23f7fc3fd752eea86f8be8d83375a6": { - "address": "0xf970b8e36e23f7fc3fd752eea86f8be8d83375a6", - "symbol": "RCN", - "decimals": 18, - "name": "Ripio Credit Network Token", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xf970b8e36e23f7fc3fd752eea86f8be8d83375a6.png", - "aggregators": [ - "CoinMarketCap", - "LiFi", - "Socket", - "Rubic", - "Rango", - "Sonarwatch", - "Bancor" - ], - "occurrences": 7 - }, - "0xb1191f691a355b43542bea9b8847bc73e7abb137": { - "address": "0xb1191f691a355b43542bea9b8847bc73e7abb137", - "symbol": "KIRO", - "decimals": 18, - "name": "KIRO", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xb1191f691a355b43542bea9b8847bc73e7abb137.png", - "aggregators": [ - "CoinMarketCap", - "1inch", - "LiFi", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 7 - }, - "0xb78b3320493a4efaa1028130c5ba26f0b6085ef8": { - "address": "0xb78b3320493a4efaa1028130c5ba26f0b6085ef8", - "symbol": "DRC", - "decimals": 18, - "name": "Dracula", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xb78b3320493a4efaa1028130c5ba26f0b6085ef8.png", - "aggregators": [ - "Metamask", - "1inch", - "LiFi", - "Socket", - "Rubic", - "Rango", - "SushiSwap" - ], - "occurrences": 7 - }, - "0x515d7e9d75e2b76db60f8a051cd890eba23286bc": { - "address": "0x515d7e9d75e2b76db60f8a051cd890eba23286bc", - "symbol": "GDAO", - "decimals": 18, - "name": "Governor DAO", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x515d7e9d75e2b76db60f8a051cd890eba23286bc.png", - "aggregators": [ - "CoinMarketCap", - "1inch", - "LiFi", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 7 - }, - "0x745407c86df8db893011912d3ab28e68b62e49b0": { - "address": "0x745407c86df8db893011912d3ab28e68b62e49b0", - "symbol": "MAHA", - "decimals": 18, - "name": "MahaDAO", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x745407c86df8db893011912d3ab28e68b62e49b0.png", - "aggregators": [ - "Metamask", - "LiFi", - "TrustWallet", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 7 - }, - "0x10be9a8dae441d276a5027936c3aaded2d82bc15": { - "address": "0x10be9a8dae441d276a5027936c3aaded2d82bc15", - "symbol": "UMX", - "decimals": 18, - "name": "UniMex Network", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x10be9a8dae441d276a5027936c3aaded2d82bc15.png", - "aggregators": [ - "CoinMarketCap", - "1inch", - "LiFi", - "TrustWallet", - "Socket", - "Rubic", - "Rango" - ], - "occurrences": 7 - }, - "0x7697b462a7c4ff5f8b55bdbc2f4076c2af9cf51a": { - "address": "0x7697b462a7c4ff5f8b55bdbc2f4076c2af9cf51a", - "symbol": "SARCO", - "decimals": 18, - "name": "Sarcophagus", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x7697b462a7c4ff5f8b55bdbc2f4076c2af9cf51a.png", - "aggregators": [ - "CoinMarketCap", - "1inch", - "LiFi", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 7 - }, - "0xc36b4311b21fc0c2ead46f1ea6ce97c9c4d98d3d": { - "address": "0xc36b4311b21fc0c2ead46f1ea6ce97c9c4d98d3d", - "symbol": "CRE8", - "decimals": 18, - "name": "Creaticles", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xc36b4311b21fc0c2ead46f1ea6ce97c9c4d98d3d.png", - "aggregators": [ - "CoinMarketCap", - "LiFi", - "Socket", - "Rubic", - "Rango", - "Sonarwatch", - "SushiSwap" - ], - "occurrences": 7 - }, - "0xe80c0cd204d654cebe8dd64a4857cab6be8345a3": { - "address": "0xe80c0cd204d654cebe8dd64a4857cab6be8345a3", - "symbol": "JPEG", - "decimals": 18, - "name": "JPEGd Governance Token", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xe80c0cd204d654cebe8dd64a4857cab6be8345a3.png", - "aggregators": [ - "CoinMarketCap", - "Socket", - "Rubic", - "Squid", - "Rango", - "Sonarwatch", - "SushiSwap" - ], - "occurrences": 7 - }, - "0x15700b564ca08d9439c58ca5053166e8317aa138": { - "address": "0x15700b564ca08d9439c58ca5053166e8317aa138", - "symbol": "DEUSD", - "decimals": 18, - "name": "Elixir deUSD", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x15700b564ca08d9439c58ca5053166e8317aa138.png", - "aggregators": [ - "Metamask", - "LiFi", - "Socket", - "Rubic", - "Squid", - "Rango", - "Sonarwatch" - ], - "occurrences": 7 - }, - "0x960b236a07cf122663c4303350609a66a7b288c0": { - "address": "0x960b236a07cf122663c4303350609a66a7b288c0", - "symbol": "ANTV1", - "decimals": 18, - "name": "Aragon Network Token v1", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x960b236a07cf122663c4303350609a66a7b288c0.png", - "aggregators": [ - "Metamask", - "1inch", - "LiFi", - "Socket", - "Rubic", - "Rango", - "Bancor" - ], - "occurrences": 7 - }, - "0x677ddbd918637e5f2c79e164d402454de7da8619": { - "address": "0x677ddbd918637e5f2c79e164d402454de7da8619", - "symbol": "VUSD", - "decimals": 18, - "name": "VUSD", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x677ddbd918637e5f2c79e164d402454de7da8619.png", - "aggregators": [ - "1inch", - "LiFi", - "Socket", - "Rubic", - "Rango", - "Sonarwatch", - "SushiSwap" - ], - "occurrences": 7 - }, - "0x3e5a19c91266ad8ce2477b91585d1856b84062df": { - "address": "0x3e5a19c91266ad8ce2477b91585d1856b84062df", - "symbol": "A8", - "decimals": 18, - "name": "Ancient8", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x3e5a19c91266ad8ce2477b91585d1856b84062df.png", - "aggregators": [ - "CoinMarketCap", - "1inch", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 6 - }, - "0xb98d4c97425d9908e66e53a6fdf673acca0be986": { - "address": "0xb98d4c97425d9908e66e53a6fdf673acca0be986", - "symbol": "ABT", - "decimals": 18, - "name": "Arcblock", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xb98d4c97425d9908e66e53a6fdf673acca0be986.png", - "aggregators": [ - "CoinMarketCap", - "1inch", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 6 - }, - "0xac51066d7bec65dc4589368da368b212745d63e8": { - "address": "0xac51066d7bec65dc4589368da368b212745d63e8", - "symbol": "ALICE", - "decimals": 6, - "name": "My Neighbor Alice", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xac51066d7bec65dc4589368da368b212745d63e8.png", - "aggregators": [ - "OpenSwap", - "LiFi", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 6 - }, - "0x594daad7d77592a2b97b725a7ad59d7e188b5bfa": { - "address": "0x594daad7d77592a2b97b725a7ad59d7e188b5bfa", - "symbol": "APU", - "decimals": 18, - "name": "Apu Apustaja", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x594daad7d77592a2b97b725a7ad59d7e188b5bfa.png", - "aggregators": [ - "CoinMarketCap", - "1inch", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 6 - }, - "0x4f9254c83eb525f9fcf346490bbb3ed28a81c667": { - "address": "0x4f9254c83eb525f9fcf346490bbb3ed28a81c667", - "symbol": "CELR", - "decimals": 18, - "name": "Celer Network Token", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x4f9254c83eb525f9fcf346490bbb3ed28a81c667.png", - "aggregators": [ - "Metamask", - "LiFi", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 6 - }, - "0x464ebe77c293e473b48cfe96ddcf88fcf7bfdac0": { - "address": "0x464ebe77c293e473b48cfe96ddcf88fcf7bfdac0", - "symbol": "KRL", - "decimals": 18, - "name": "KRYLL", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x464ebe77c293e473b48cfe96ddcf88fcf7bfdac0.png", - "aggregators": [ - "OpenSwap", - "LiFi", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 6 - }, - "0xb59490ab09a0f526cc7305822ac65f2ab12f9723": { - "address": "0xb59490ab09a0f526cc7305822ac65f2ab12f9723", - "symbol": "LIT", - "decimals": 18, - "name": "Litentry", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xb59490ab09a0f526cc7305822ac65f2ab12f9723.png", - "aggregators": [ - "CoinMarketCap", - "LiFi", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 6 - }, - "0xa4e8c3ec456107ea67d3075bf9e3df3a75823db0": { - "address": "0xa4e8c3ec456107ea67d3075bf9e3df3a75823db0", - "symbol": "LOOM", - "decimals": 18, - "name": "Loom Token", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xa4e8c3ec456107ea67d3075bf9e3df3a75823db0.png", - "aggregators": [ - "Metamask", - "LiFi", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 6 - }, - "0x8c1bed5b9a0928467c9b1341da1d7bd5e10b6549": { - "address": "0x8c1bed5b9a0928467c9b1341da1d7bd5e10b6549", - "symbol": "LSETH", - "decimals": 18, - "name": "Liquid Staked ETH", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x8c1bed5b9a0928467c9b1341da1d7bd5e10b6549.png", - "aggregators": [ - "CoinMarketCap", - "LiFi", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 6 - }, - "0xfb5c6815ca3ac72ce9f5006869ae67f18bf77006": { - "address": "0xfb5c6815ca3ac72ce9f5006869ae67f18bf77006", - "symbol": "PSTAKE", - "decimals": 18, - "name": "pSTAKE Finance", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xfb5c6815ca3ac72ce9f5006869ae67f18bf77006.png", - "aggregators": [ - "Metamask", - "Socket", - "Rubic", - "Squid", - "Rango", - "Sonarwatch" - ], - "occurrences": 6 - }, - "0x3b50805453023a91a8bf641e279401a0b23fa6f9": { - "address": "0x3b50805453023a91a8bf641e279401a0b23fa6f9", - "symbol": "REZ", - "decimals": 18, - "name": "Renzo", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x3b50805453023a91a8bf641e279401a0b23fa6f9.png", - "aggregators": [ - "CoinMarketCap", - "1inch", - "LiFi", - "Socket", - "Rubic", - "Sonarwatch" - ], - "occurrences": 6 - }, - "0x441761326490cacf7af299725b6292597ee822c2": { - "address": "0x441761326490cacf7af299725b6292597ee822c2", - "symbol": "UNFI", - "decimals": 18, - "name": "Unifi Protocol DAO", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x441761326490cacf7af299725b6292597ee822c2.png", - "aggregators": [ - "OpenSwap", - "LiFi", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 6 - }, - "0x8de5b80a0c1b02fe4976851d030b36122dbb8624": { - "address": "0x8de5b80a0c1b02fe4976851d030b36122dbb8624", - "symbol": "VANRY", - "decimals": 18, - "name": "Vanar Chain", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x8de5b80a0c1b02fe4976851d030b36122dbb8624.png", - "aggregators": [ - "CoinMarketCap", - "Socket", - "Rubic", - "Squid", - "Rango", - "Sonarwatch" - ], - "occurrences": 6 - }, - "0x9ba00d6856a4edf4665bca2c2309936572473b7e": { - "address": "0x9ba00d6856a4edf4665bca2c2309936572473b7e", - "symbol": "AUSDC", - "decimals": 6, - "name": "Aave v1 USDC", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x9ba00d6856a4edf4665bca2c2309936572473b7e.png", - "aggregators": [ - "CoinGecko", - "LiFi", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 6 - }, - "0x625ae63000f46200499120b906716420bd059240": { - "address": "0x625ae63000f46200499120b906716420bd059240", - "symbol": "ASUSD", - "decimals": 18, - "name": "Aave SUSD v1", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x625ae63000f46200499120b906716420bd059240.png", - "aggregators": [ - "CoinGecko", - "LiFi", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 6 - }, - "0xa64bd6c70cb9051f6a9ba1f163fdc07e0dfb5f84": { - "address": "0xa64bd6c70cb9051f6a9ba1f163fdc07e0dfb5f84", - "symbol": "ALINK", - "decimals": 18, - "name": "Aave LINK v1", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xa64bd6c70cb9051f6a9ba1f163fdc07e0dfb5f84.png", - "aggregators": [ - "CoinGecko", - "LiFi", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 6 - }, - "0x9d91be44c06d373a8a226e1f3b146956083803eb": { - "address": "0x9d91be44c06d373a8a226e1f3b146956083803eb", - "symbol": "AKNC", - "decimals": 18, - "name": "Aave KNC v1", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x9d91be44c06d373a8a226e1f3b146956083803eb.png", - "aggregators": [ - "CoinGecko", - "LiFi", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 6 - }, - "0x7deb5e830be29f91e298ba5ff1356bb7f8146998": { - "address": "0x7deb5e830be29f91e298ba5ff1356bb7f8146998", - "symbol": "AMKR", - "decimals": 18, - "name": "Aave MKR v1", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x7deb5e830be29f91e298ba5ff1356bb7f8146998.png", - "aggregators": [ - "CoinGecko", - "LiFi", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 6 - }, - "0x6fb0855c404e09c47c3fbca25f08d4e41f9f062f": { - "address": "0x6fb0855c404e09c47c3fbca25f08d4e41f9f062f", - "symbol": "AZRX", - "decimals": 18, - "name": "Aave ZRX v1", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x6fb0855c404e09c47c3fbca25f08d4e41f9f062f.png", - "aggregators": [ - "CoinGecko", - "LiFi", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 6 - }, - "0x328c4c80bc7aca0834db37e6600a6c49e12da4de": { - "address": "0x328c4c80bc7aca0834db37e6600a6c49e12da4de", - "symbol": "ASNX", - "decimals": 18, - "name": "Aave SNX v1", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x328c4c80bc7aca0834db37e6600a6c49e12da4de.png", - "aggregators": [ - "CoinGecko", - "LiFi", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 6 - }, - "0x712db54daa836b53ef1ecbb9c6ba3b9efb073f40": { - "address": "0x712db54daa836b53ef1ecbb9c6ba3b9efb073f40", - "symbol": "AENJ", - "decimals": 18, - "name": "Aave ENJ v1", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x712db54daa836b53ef1ecbb9c6ba3b9efb073f40.png", - "aggregators": [ - "CoinMarketCap", - "LiFi", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 6 - }, - "0x69948cc03f478b95283f7dbf1ce764d0fc7ec54c": { - "address": "0x69948cc03f478b95283f7dbf1ce764d0fc7ec54c", - "symbol": "AREN", - "decimals": 18, - "name": "Aave REN v1", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x69948cc03f478b95283f7dbf1ce764d0fc7ec54c.png", - "aggregators": [ - "CoinMarketCap", - "LiFi", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 6 - }, - "0xd7c49cee7e9188cca6ad8ff264c1da2e69d4cf3b": { - "address": "0xd7c49cee7e9188cca6ad8ff264c1da2e69d4cf3b", - "symbol": "NXM", - "decimals": 18, - "name": "Nexus Mutual", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xd7c49cee7e9188cca6ad8ff264c1da2e69d4cf3b.png", - "aggregators": [ - "CoinMarketCap", - "LiFi", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 6 - }, - "0xf5dce57282a584d2746faf1593d3121fcac444dc": { - "address": "0xf5dce57282a584d2746faf1593d3121fcac444dc", - "symbol": "CSAI", - "decimals": 8, - "name": "Compound Sai", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xf5dce57282a584d2746faf1593d3121fcac444dc.png", - "aggregators": [ - "Metamask", - "1inch", - "LiFi", - "Socket", - "Rubic", - "Rango" - ], - "occurrences": 6 - }, - "0x5bc25f649fc4e26069ddf4cf4010f9f706c23831": { - "address": "0x5bc25f649fc4e26069ddf4cf4010f9f706c23831", - "symbol": "DUSD", - "decimals": 18, - "name": "DefiDollar", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x5bc25f649fc4e26069ddf4cf4010f9f706c23831.png", - "aggregators": [ - "CoinMarketCap", - "LiFi", - "Socket", - "Rubic", - "Rango", - "SushiSwap" - ], - "occurrences": 6 - }, - "0xfc05987bd2be489accf0f509e44b0145d68240f7": { - "address": "0xfc05987bd2be489accf0f509e44b0145d68240f7", - "symbol": "ESS", - "decimals": 18, - "name": "Essentia", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xfc05987bd2be489accf0f509e44b0145d68240f7.png", - "aggregators": [ - "CoinMarketCap", - "1inch", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 6 - }, - "0x474021845c4643113458ea4414bdb7fb74a01a77": { - "address": "0x474021845c4643113458ea4414bdb7fb74a01a77", - "symbol": "UNO", - "decimals": 18, - "name": "Lunos", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x474021845c4643113458ea4414bdb7fb74a01a77.png", - "aggregators": [ - "CoinMarketCap", - "1inch", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 6 - }, - "0x3aada3e213abf8529606924d8d1c55cbdc70bf74": { - "address": "0x3aada3e213abf8529606924d8d1c55cbdc70bf74", - "symbol": "XMON", - "decimals": 18, - "name": "XMON", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x3aada3e213abf8529606924d8d1c55cbdc70bf74.png", - "aggregators": [ - "CoinMarketCap", - "1inch", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 6 - }, - "0x697ef32b4a3f5a4c39de1cb7563f24ca7bfc5947": { - "address": "0x697ef32b4a3f5a4c39de1cb7563f24ca7bfc5947", - "symbol": "ISLA", - "decimals": 18, - "name": "Insula Token", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x697ef32b4a3f5a4c39de1cb7563f24ca7bfc5947.png", - "aggregators": [ - "Metamask", - "LiFi", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 6 - }, - "0x73374ea518de7addd4c2b624c0e8b113955ee041": { - "address": "0x73374ea518de7addd4c2b624c0e8b113955ee041", - "symbol": "JGN", - "decimals": 18, - "name": "Juggernaut", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x73374ea518de7addd4c2b624c0e8b113955ee041.png", - "aggregators": [ - "CoinMarketCap", - "1inch", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 6 - }, - "0x2c537e5624e4af88a7ae4060c022609376c8d0eb": { - "address": "0x2c537e5624e4af88a7ae4060c022609376c8d0eb", - "symbol": "TRYB", - "decimals": 6, - "name": "BiLira", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x2c537e5624e4af88a7ae4060c022609376c8d0eb.png", - "aggregators": [ - "CoinMarketCap", - "LiFi", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 6 - }, - "0x35bd01fc9d6d5d81ca9e055db88dc49aa2c699a8": { - "address": "0x35bd01fc9d6d5d81ca9e055db88dc49aa2c699a8", - "symbol": "FWB", - "decimals": 18, - "name": "FWB Pro", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x35bd01fc9d6d5d81ca9e055db88dc49aa2c699a8.png", - "aggregators": [ - "Metamask", - "LiFi", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 6 - }, - "0x53c8395465a84955c95159814461466053dedede": { - "address": "0x53c8395465a84955c95159814461466053dedede", - "symbol": "DG", - "decimals": 18, - "name": "DeGate Token", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x53c8395465a84955c95159814461466053dedede.png", - "aggregators": [ - "Metamask", - "1inch", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 6 - }, - "0xcd2828fc4d8e8a0ede91bb38cf64b1a81de65bf6": { - "address": "0xcd2828fc4d8e8a0ede91bb38cf64b1a81de65bf6", - "symbol": "ODDZ", - "decimals": 18, - "name": "Oddz", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xcd2828fc4d8e8a0ede91bb38cf64b1a81de65bf6.png", - "aggregators": [ - "CoinMarketCap", - "LiFi", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 6 - }, - "0x056c1d42fb1326f57da7f19ebb7dda4673f1ff55": { - "address": "0x056c1d42fb1326f57da7f19ebb7dda4673f1ff55", - "symbol": "GAINS", - "decimals": 18, - "name": "Gains", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x056c1d42fb1326f57da7f19ebb7dda4673f1ff55.png", - "aggregators": [ - "CoinMarketCap", - "1inch", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 6 - }, - "0x0cf0ee63788a0849fe5297f3407f701e122cc023": { - "address": "0x0cf0ee63788a0849fe5297f3407f701e122cc023", - "symbol": "XDATA", - "decimals": 18, - "name": "Streamr (old)", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x0cf0ee63788a0849fe5297f3407f701e122cc023.png", - "aggregators": [ - "Metamask", - "LiFi", - "Socket", - "Rubic", - "Sonarwatch", - "Bancor" - ], - "occurrences": 6 - }, - "0x80d55c03180349fff4a229102f62328220a96444": { - "address": "0x80d55c03180349fff4a229102f62328220a96444", - "symbol": "OPUL", - "decimals": 18, - "name": "Opulous", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x80d55c03180349fff4a229102f62328220a96444.png", - "aggregators": [ - "CoinMarketCap", - "1inch", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 6 - }, - "0x549020a9cb845220d66d3e9c6d9f9ef61c981102": { - "address": "0x549020a9cb845220d66d3e9c6d9f9ef61c981102", - "symbol": "SIDUS", - "decimals": 18, - "name": "Sidus", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x549020a9cb845220d66d3e9c6d9f9ef61c981102.png", - "aggregators": [ - "CoinMarketCap", - "1inch", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 6 - }, - "0x881ba05de1e78f549cc63a8f6cabb1d4ad32250d": { - "address": "0x881ba05de1e78f549cc63a8f6cabb1d4ad32250d", - "symbol": "00", - "decimals": 18, - "name": "00", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x881ba05de1e78f549cc63a8f6cabb1d4ad32250d.png", - "aggregators": [ - "Metamask", - "LiFi", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 6 - }, - "0x9f52c8ecbee10e00d9faaac5ee9ba0ff6550f511": { - "address": "0x9f52c8ecbee10e00d9faaac5ee9ba0ff6550f511", - "symbol": "SIPHER", - "decimals": 18, - "name": "SIPHER", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x9f52c8ecbee10e00d9faaac5ee9ba0ff6550f511.png", - "aggregators": [ - "CoinMarketCap", - "LiFi", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 6 - }, - "0x4740735aa98dc8aa232bd049f8f0210458e7fca3": { - "address": "0x4740735aa98dc8aa232bd049f8f0210458e7fca3", - "symbol": "RDT", - "decimals": 18, - "name": "Ridotto", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x4740735aa98dc8aa232bd049f8f0210458e7fca3.png", - "aggregators": [ - "CoinMarketCap", - "1inch", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 6 - }, - "0x80c8c3dcfb854f9542567c8dac3f44d709ebc1de": { - "address": "0x80c8c3dcfb854f9542567c8dac3f44d709ebc1de", - "symbol": "MILK2", - "decimals": 18, - "name": "Spaceswap MILK2", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x80c8c3dcfb854f9542567c8dac3f44d709ebc1de.png", - "aggregators": [ - "CoinMarketCap", - "1inch", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 6 - }, - "0xed1167b6dc64e8a366db86f2e952a482d0981ebd": { - "address": "0xed1167b6dc64e8a366db86f2e952a482d0981ebd", - "symbol": "LBR", - "decimals": 18, - "name": "Lybra", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xed1167b6dc64e8a366db86f2e952a482d0981ebd.png", - "aggregators": [ - "CoinMarketCap", - "1inch", - "LiFi", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 6 - }, - "0xa41f142b6eb2b164f8164cae0716892ce02f311f": { - "address": "0xa41f142b6eb2b164f8164cae0716892ce02f311f", - "symbol": "AVG", - "decimals": 18, - "name": "Avocado DAO", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xa41f142b6eb2b164f8164cae0716892ce02f311f.png", - "aggregators": [ - "CoinMarketCap", - "1inch", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 6 - }, - "0x850aab69f0e0171a9a49db8be3e71351c8247df4": { - "address": "0x850aab69f0e0171a9a49db8be3e71351c8247df4", - "symbol": "KONO", - "decimals": 18, - "name": "Konomi Network", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x850aab69f0e0171a9a49db8be3e71351c8247df4.png", - "aggregators": [ - "CoinMarketCap", - "1inch", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 6 - }, - "0x8aec4bbdcfb451aa289bfbd3c2f4e34a44ada1be": { - "address": "0x8aec4bbdcfb451aa289bfbd3c2f4e34a44ada1be", - "symbol": "DOGWIFHAT", - "decimals": 9, - "name": "dogwifhat Eth", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x8aec4bbdcfb451aa289bfbd3c2f4e34a44ada1be.png", - "aggregators": [ - "CoinGecko", - "1inch", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 6 - }, - "0x2af5d2ad76741191d15dfe7bf6ac92d4bd912ca3": { - "address": "0x2af5d2ad76741191d15dfe7bf6ac92d4bd912ca3", - "symbol": "LEO", - "decimals": 18, - "name": "LEO Token", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x2af5d2ad76741191d15dfe7bf6ac92d4bd912ca3.png", - "aggregators": [ - "CoinMarketCap", - "LiFi", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 6 - }, - "0xfa14fa6958401314851a17d6c5360ca29f74b57b": { - "address": "0xfa14fa6958401314851a17d6c5360ca29f74b57b", - "symbol": "SAITO", - "decimals": 18, - "name": "Saito", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xfa14fa6958401314851a17d6c5360ca29f74b57b.png", - "aggregators": [ - "CoinMarketCap", - "LiFi", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 6 - }, - "0x6a6c2ada3ce053561c2fbc3ee211f23d9b8c520a": { - "address": "0x6a6c2ada3ce053561c2fbc3ee211f23d9b8c520a", - "symbol": "TON", - "decimals": 18, - "name": "TON Community", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x6a6c2ada3ce053561c2fbc3ee211f23d9b8c520a.png", - "aggregators": [ - "CoinMarketCap", - "LiFi", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 6 - }, - "0x120a3879da835a5af037bb2d1456bebd6b54d4ba": { - "address": "0x120a3879da835a5af037bb2d1456bebd6b54d4ba", - "symbol": "RVST", - "decimals": 18, - "name": "Revest Finance", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x120a3879da835a5af037bb2d1456bebd6b54d4ba.png", - "aggregators": [ - "CoinMarketCap", - "1inch", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 6 - }, - "0x5a9261b023692405f2f680240c6b010638e416dd": { - "address": "0x5a9261b023692405f2f680240c6b010638e416dd", - "symbol": "JAN", - "decimals": 18, - "name": "Storm Warfare", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x5a9261b023692405f2f680240c6b010638e416dd.png", - "aggregators": [ - "CoinMarketCap", - "Socket", - "Rubic", - "Squid", - "Rango", - "Sonarwatch" - ], - "occurrences": 6 - }, - "0x4b9278b94a1112cad404048903b8d343a810b07e": { - "address": "0x4b9278b94a1112cad404048903b8d343a810b07e", - "symbol": "HIFI", - "decimals": 18, - "name": "Hifi Finance", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x4b9278b94a1112cad404048903b8d343a810b07e.png", - "aggregators": [ - "Metamask", - "LiFi", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 6 - }, - "0xa130e3a33a4d84b04c3918c4e5762223ae252f80": { - "address": "0xa130e3a33a4d84b04c3918c4e5762223ae252f80", - "symbol": "SWASH", - "decimals": 18, - "name": "Swash Token", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xa130e3a33a4d84b04c3918c4e5762223ae252f80.png", - "aggregators": [ - "Metamask", - "LiFi", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 6 - }, - "0xba0dda8762c24da9487f5fa026a9b64b695a07ea": { - "address": "0xba0dda8762c24da9487f5fa026a9b64b695a07ea", - "symbol": "OX", - "decimals": 18, - "name": "OX Coin", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xba0dda8762c24da9487f5fa026a9b64b695a07ea.png", - "aggregators": [ - "CoinMarketCap", - "Socket", - "Rubic", - "Squid", - "Rango", - "Sonarwatch" - ], - "occurrences": 6 - }, - "0x4a029f7bcf33acb03547d8fa7be840347973e24e": { - "address": "0x4a029f7bcf33acb03547d8fa7be840347973e24e", - "symbol": "MAZZE", - "decimals": 18, - "name": "Mazze", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x4a029f7bcf33acb03547d8fa7be840347973e24e.png", - "aggregators": [ - "CoinMarketCap", - "1inch", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 6 - }, - "0xff75ced57419bcaebe5f05254983b013b0646ef5": { - "address": "0xff75ced57419bcaebe5f05254983b013b0646ef5", - "symbol": "COOK", - "decimals": 18, - "name": "Cook", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xff75ced57419bcaebe5f05254983b013b0646ef5.png", - "aggregators": [ - "CoinMarketCap", - "1inch", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 6 - }, - "0x35a18000230da775cac24873d00ff85bccded550": { - "address": "0x35a18000230da775cac24873d00ff85bccded550", - "symbol": "CUNI", - "decimals": 8, - "name": "cUNI", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x35a18000230da775cac24873d00ff85bccded550.png", - "aggregators": [ - "CoinMarketCap", - "LiFi", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 6 - }, - "0x8e729198d1c59b82bd6bba579310c40d740a11c2": { - "address": "0x8e729198d1c59b82bd6bba579310c40d740a11c2", - "symbol": "ALVA", - "decimals": 18, - "name": "Alvara Protocol", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x8e729198d1c59b82bd6bba579310c40d740a11c2.png", - "aggregators": [ - "CoinMarketCap", - "Socket", - "Rubic", - "Squid", - "Rango", - "Sonarwatch" - ], - "occurrences": 6 - }, - "0x519c1001d550c0a1dae7d1fc220f7d14c2a521bb": { - "address": "0x519c1001d550c0a1dae7d1fc220f7d14c2a521bb", - "symbol": "PSWAP", - "decimals": 18, - "name": "Polkaswap", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x519c1001d550c0a1dae7d1fc220f7d14c2a521bb.png", - "aggregators": [ - "Metamask", - "LiFi", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 6 - }, - "0xea26c4ac16d4a5a106820bc8aee85fd0b7b2b664": { - "address": "0xea26c4ac16d4a5a106820bc8aee85fd0b7b2b664", - "symbol": "QKC", - "decimals": 18, - "name": "QuarkChain", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xea26c4ac16d4a5a106820bc8aee85fd0b7b2b664.png", - "aggregators": [ - "CoinMarketCap", - "LiFi", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 6 - }, - "0x9ae380f0272e2162340a5bb646c354271c0f5cfc": { - "address": "0x9ae380f0272e2162340a5bb646c354271c0f5cfc", - "symbol": "CNC", - "decimals": 18, - "name": "Conic", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x9ae380f0272e2162340a5bb646c354271c0f5cfc.png", - "aggregators": [ - "CoinMarketCap", - "LiFi", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 6 - }, - "0x76bc677d444f1e9d57daf5187ee2b7dc852745ae": { - "address": "0x76bc677d444f1e9d57daf5187ee2b7dc852745ae", - "symbol": "XFT", - "decimals": 18, - "name": "Offshift", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x76bc677d444f1e9d57daf5187ee2b7dc852745ae.png", - "aggregators": [ - "CoinGecko", - "Socket", - "Rubic", - "Squid", - "Rango", - "Sonarwatch" - ], - "occurrences": 6 - }, - "0x2b89bf8ba858cd2fcee1fada378d5cd6936968be": { - "address": "0x2b89bf8ba858cd2fcee1fada378d5cd6936968be", - "symbol": "WSCRT", - "decimals": 6, - "name": "Wrapped SCRT", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x2b89bf8ba858cd2fcee1fada378d5cd6936968be.png", - "aggregators": [ - "CoinGecko", - "Socket", - "Rubic", - "Rango", - "Sonarwatch", - "SushiSwap" - ], - "occurrences": 6 - }, - "0xcc7ab8d78dba187dc95bf3bb86e65e0c26d0041f": { - "address": "0xcc7ab8d78dba187dc95bf3bb86e65e0c26d0041f", - "symbol": "SPACE", - "decimals": 18, - "name": "Spacelens", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xcc7ab8d78dba187dc95bf3bb86e65e0c26d0041f.png", - "aggregators": [ - "Metamask", - "Socket", - "Rubic", - "Rango", - "Sonarwatch", - "Bancor" - ], - "occurrences": 6 - }, - "0x9ee91f9f426fa633d227f7a9b000e28b9dfd8599": { - "address": "0x9ee91f9f426fa633d227f7a9b000e28b9dfd8599", - "symbol": "STMATIC", - "decimals": 18, - "name": "Liquid staked MATIC", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x9ee91f9f426fa633d227f7a9b000e28b9dfd8599.png", - "aggregators": [ - "Metamask", - "LiFi", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 6 - }, - "0x9a96ec9b57fb64fbc60b423d1f4da7691bd35079": { - "address": "0x9a96ec9b57fb64fbc60b423d1f4da7691bd35079", - "symbol": "AJNA", - "decimals": 18, - "name": "Ajna Protocol", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x9a96ec9b57fb64fbc60b423d1f4da7691bd35079.png", - "aggregators": [ - "CoinMarketCap", - "LiFi", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 6 - }, - "0xfae103dc9cf190ed75350761e95403b7b8afa6c0": { - "address": "0xfae103dc9cf190ed75350761e95403b7b8afa6c0", - "symbol": "RSWETH", - "decimals": 18, - "name": "Restaked Swell ETH", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xfae103dc9cf190ed75350761e95403b7b8afa6c0.png", - "aggregators": [ - "CoinMarketCap", - "1inch", - "LiFi", - "Socket", - "Rubic", - "Sonarwatch" - ], - "occurrences": 6 - }, - "0x42476f744292107e34519f9c357927074ea3f75d": { - "address": "0x42476f744292107e34519f9c357927074ea3f75d", - "symbol": "LOOM", - "decimals": 18, - "name": "Loom", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x42476f744292107e34519f9c357927074ea3f75d.png", - "aggregators": [ - "Metamask", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x2ebd53d035150f328bd754d6dc66b99b0edb89aa": { - "address": "0x2ebd53d035150f328bd754d6dc66b99b0edb89aa", - "symbol": "MET", - "decimals": 18, - "name": "Metronome", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x2ebd53d035150f328bd754d6dc66b99b0edb89aa.png", - "aggregators": [ - "CoinMarketCap", - "1inch", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 6 - }, - "0x5c872500c00565505f3624ab435c222e558e9ff8": { - "address": "0x5c872500c00565505f3624ab435c222e558e9ff8", - "symbol": "COT", - "decimals": 18, - "name": "CoTrader", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x5c872500c00565505f3624ab435c222e558e9ff8.png", - "aggregators": [ - "CoinMarketCap", - "Socket", - "Rubic", - "Rango", - "Sonarwatch", - "Bancor" - ], - "occurrences": 6 - }, - "0xcb8d1260f9c92a3a545d409466280ffdd7af7042": { - "address": "0xcb8d1260f9c92a3a545d409466280ffdd7af7042", - "symbol": "NFT", - "decimals": 18, - "name": "NFT Protocol", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xcb8d1260f9c92a3a545d409466280ffdd7af7042.png", - "aggregators": [ - "CoinMarketCap", - "LiFi", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 6 - }, - "0xc4de189abf94c57f396bd4c52ab13b954febefd8": { - "address": "0xc4de189abf94c57f396bd4c52ab13b954febefd8", - "symbol": "B20", - "decimals": 18, - "name": "B20", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xc4de189abf94c57f396bd4c52ab13b954febefd8.png", - "aggregators": [ - "CoinMarketCap", - "LiFi", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 6 - }, - "0x6df0e641fc9847c0c6fde39be6253045440c14d3": { - "address": "0x6df0e641fc9847c0c6fde39be6253045440c14d3", - "symbol": "DINERO", - "decimals": 18, - "name": "Dinero", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x6df0e641fc9847c0c6fde39be6253045440c14d3.png", - "aggregators": [ - "CoinMarketCap", - "LiFi", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 6 - }, - "0x3b9be07d622accaed78f479bc0edabfd6397e320": { - "address": "0x3b9be07d622accaed78f479bc0edabfd6397e320", - "symbol": "LSS", - "decimals": 18, - "name": "Lossless", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x3b9be07d622accaed78f479bc0edabfd6397e320.png", - "aggregators": [ - "CoinMarketCap", - "1inch", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 6 - }, - "0x03be5c903c727ee2c8c4e9bc0acc860cca4715e2": { - "address": "0x03be5c903c727ee2c8c4e9bc0acc860cca4715e2", - "symbol": "CAPS", - "decimals": 18, - "name": "Ternoa", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x03be5c903c727ee2c8c4e9bc0acc860cca4715e2.png", - "aggregators": [ - "CoinMarketCap", - "1inch", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 6 - }, - "0x2e85ae1c47602f7927bcabc2ff99c40aa222ae15": { - "address": "0x2e85ae1c47602f7927bcabc2ff99c40aa222ae15", - "symbol": "KATA", - "decimals": 18, - "name": "Katana Inu", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x2e85ae1c47602f7927bcabc2ff99c40aa222ae15.png", - "aggregators": [ - "CoinMarketCap", - "Socket", - "Rubic", - "Squid", - "Rango", - "Sonarwatch" - ], - "occurrences": 6 - }, - "0x10633216e7e8281e33c86f02bf8e565a635d9770": { - "address": "0x10633216e7e8281e33c86f02bf8e565a635d9770", - "symbol": "DVI", - "decimals": 18, - "name": "Dvision Network", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x10633216e7e8281e33c86f02bf8e565a635d9770.png", - "aggregators": [ - "Metamask", - "1inch", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 6 - }, - "0x12ef10a4fc6e1ea44b4ca9508760ff51c647bb71": { - "address": "0x12ef10a4fc6e1ea44b4ca9508760ff51c647bb71", - "symbol": "RSTK", - "decimals": 18, - "name": "Restake Finance", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x12ef10a4fc6e1ea44b4ca9508760ff51c647bb71.png", - "aggregators": [ - "CoinMarketCap", - "Socket", - "Rubic", - "Squid", - "Rango", - "Sonarwatch" - ], - "occurrences": 6 - }, - "0x908ddb096bfb3acb19e2280aad858186ea4935c4": { - "address": "0x908ddb096bfb3acb19e2280aad858186ea4935c4", - "symbol": "ESE", - "decimals": 18, - "name": "Eesee", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x908ddb096bfb3acb19e2280aad858186ea4935c4.png", - "aggregators": [ - "CoinMarketCap", - "Socket", - "Rubic", - "Squid", - "Rango", - "Sonarwatch" - ], - "occurrences": 6 - }, - "0x19247618d79e3fc4d4866169789e4b8eedef52e6": { - "address": "0x19247618d79e3fc4d4866169789e4b8eedef52e6", - "symbol": "CAI", - "decimals": 18, - "name": "Chasm", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x19247618d79e3fc4d4866169789e4b8eedef52e6.png", - "aggregators": [ - "CoinMarketCap", - "Socket", - "Rubic", - "Squid", - "Rango", - "Sonarwatch" - ], - "occurrences": 6 - }, - "0x42069026eac8eee0fd9b5f7adfa4f6e6d69a2b39": { - "address": "0x42069026eac8eee0fd9b5f7adfa4f6e6d69a2b39", - "symbol": "MSTR", - "decimals": 9, - "name": "MSTR2100", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x42069026eac8eee0fd9b5f7adfa4f6e6d69a2b39.png", - "aggregators": [ - "CoinMarketCap", - "Socket", - "Rubic", - "Squid", - "Rango", - "Sonarwatch" - ], - "occurrences": 6 - }, - "0x823556202e86763853b40e9cde725f412e294689": { - "address": "0x823556202e86763853b40e9cde725f412e294689", - "symbol": "ASTO", - "decimals": 18, - "name": "Altered State Machine", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x823556202e86763853b40e9cde725f412e294689.png", - "aggregators": [ - "CoinMarketCap", - "1inch", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 6 - }, - "0x4f604735c1cf31399c6e711d5962b2b3e0225ad3": { - "address": "0x4f604735c1cf31399c6e711d5962b2b3e0225ad3", - "symbol": "USDGLO", - "decimals": 18, - "name": "Glo Dollar", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x4f604735c1cf31399c6e711d5962b2b3e0225ad3.png", - "aggregators": [ - "CoinMarketCap", - "Socket", - "Rubic", - "Squid", - "Rango", - "Sonarwatch" - ], - "occurrences": 6 - }, - "0x70bc0dc6414eb8974bc70685f798838a87d8cce4": { - "address": "0x70bc0dc6414eb8974bc70685f798838a87d8cce4", - "symbol": "CHRP", - "decimals": 18, - "name": "Chirpley", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x70bc0dc6414eb8974bc70685f798838a87d8cce4.png", - "aggregators": [ - "CoinMarketCap", - "Socket", - "Rubic", - "Squid", - "Rango", - "Sonarwatch" - ], - "occurrences": 6 - }, - "0x63f88a2298a5c4aee3c216aa6d926b184a4b2437": { - "address": "0x63f88a2298a5c4aee3c216aa6d926b184a4b2437", - "symbol": "GAME", - "decimals": 18, - "name": "GAME Credits", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x63f88a2298a5c4aee3c216aa6d926b184a4b2437.png", - "aggregators": [ - "Metamask", - "LiFi", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 6 - }, - "0xf1290473e210b2108a85237fbcd7b6eb42cc654f": { - "address": "0xf1290473e210b2108a85237fbcd7b6eb42cc654f", - "symbol": "HEDG", - "decimals": 18, - "name": "HedgeTrade", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xf1290473e210b2108a85237fbcd7b6eb42cc654f.png", - "aggregators": [ - "CoinMarketCap", - "Socket", - "Rubic", - "Rango", - "Sonarwatch", - "Bancor" - ], - "occurrences": 6 - }, - "0xf2f9a7e93f845b3ce154efbeb64fb9346fcce509": { - "address": "0xf2f9a7e93f845b3ce154efbeb64fb9346fcce509", - "symbol": "POWER", - "decimals": 18, - "name": "POWER", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xf2f9a7e93f845b3ce154efbeb64fb9346fcce509.png", - "aggregators": [ - "CoinMarketCap", - "1inch", - "LiFi", - "Socket", - "Rubic", - "Rango" - ], - "occurrences": 6 - }, - "0xdfe691f37b6264a90ff507eb359c45d55037951c": { - "address": "0xdfe691f37b6264a90ff507eb359c45d55037951c", - "symbol": "KARMA", - "decimals": 4, - "name": "KARMA", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xdfe691f37b6264a90ff507eb359c45d55037951c.png", - "aggregators": [ - "CoinMarketCap", - "1inch", - "LiFi", - "Socket", - "Rubic", - "Rango" - ], - "occurrences": 6 - }, - "0xc3dd23a0a854b4f9ae80670f528094e9eb607ccb": { - "address": "0xc3dd23a0a854b4f9ae80670f528094e9eb607ccb", - "symbol": "TRND", - "decimals": 18, - "name": "TRND", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xc3dd23a0a854b4f9ae80670f528094e9eb607ccb.png", - "aggregators": [ - "CoinMarketCap", - "1inch", - "LiFi", - "Socket", - "Rubic", - "Rango" - ], - "occurrences": 6 - }, - "0x6a7ef4998eb9d0f706238756949f311a59e05745": { - "address": "0x6a7ef4998eb9d0f706238756949f311a59e05745", - "symbol": "KEN", - "decimals": 18, - "name": "Keysians Network", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x6a7ef4998eb9d0f706238756949f311a59e05745.png", - "aggregators": [ - "CoinMarketCap", - "1inch", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 6 - }, - "0x39795344cbcc76cc3fb94b9d1b15c23c2070c66d": { - "address": "0x39795344cbcc76cc3fb94b9d1b15c23c2070c66d", - "symbol": "SHARE", - "decimals": 9, - "name": "Seigniorage Shares", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x39795344cbcc76cc3fb94b9d1b15c23c2070c66d.png", - "aggregators": [ - "CoinMarketCap", - "1inch", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 6 - }, - "0x177ba0cac51bfc7ea24bad39d81dcefd59d74faa": { - "address": "0x177ba0cac51bfc7ea24bad39d81dcefd59d74faa", - "symbol": "KIF", - "decimals": 18, - "name": "KittenFinance", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x177ba0cac51bfc7ea24bad39d81dcefd59d74faa.png", - "aggregators": [ - "CoinMarketCap", - "LiFi", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 6 - }, - "0x6006fc2a849fedaba8330ce36f5133de01f96189": { - "address": "0x6006fc2a849fedaba8330ce36f5133de01f96189", - "symbol": "SHAKE", - "decimals": 18, - "name": "Spaceswap SHAKE", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x6006fc2a849fedaba8330ce36f5133de01f96189.png", - "aggregators": [ - "CoinMarketCap", - "1inch", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 6 - }, - "0x739763a258640919981f9ba610ae65492455be53": { - "address": "0x739763a258640919981f9ba610ae65492455be53", - "symbol": "NDR", - "decimals": 18, - "name": "NodeRunners", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x739763a258640919981f9ba610ae65492455be53.png", - "aggregators": [ - "CoinMarketCap", - "1inch", - "LiFi", - "Socket", - "Rubic", - "Rango" - ], - "occurrences": 6 - }, - "0x159751323a9e0415dd3d6d42a1212fe9f4a0848c": { - "address": "0x159751323a9e0415dd3d6d42a1212fe9f4a0848c", - "symbol": "INFI", - "decimals": 18, - "name": "INFI", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x159751323a9e0415dd3d6d42a1212fe9f4a0848c.png", - "aggregators": [ - "CoinMarketCap", - "1inch", - "LiFi", - "Socket", - "Rubic", - "Rango" - ], - "occurrences": 6 - }, - "0x945facb997494cc2570096c74b5f66a3507330a1": { - "address": "0x945facb997494cc2570096c74b5f66a3507330a1", - "symbol": "MBTC", - "decimals": 18, - "name": "mStable BTC", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x945facb997494cc2570096c74b5f66a3507330a1.png", - "aggregators": [ - "CoinMarketCap", - "LiFi", - "Socket", - "Rubic", - "Rango", - "SushiSwap" - ], - "occurrences": 6 - }, - "0x6149c26cd2f7b5ccdb32029af817123f6e37df5b": { - "address": "0x6149c26cd2f7b5ccdb32029af817123f6e37df5b", - "symbol": "LPOOL", - "decimals": 18, - "name": "Launchpool", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x6149c26cd2f7b5ccdb32029af817123f6e37df5b.png", - "aggregators": [ - "CoinMarketCap", - "LiFi", - "TrustWallet", - "Socket", - "Rubic", - "Rango" - ], - "occurrences": 6 - }, - "0x1da87b114f35e1dc91f72bf57fc07a768ad40bb0": { - "address": "0x1da87b114f35e1dc91f72bf57fc07a768ad40bb0", - "symbol": "EQZ", - "decimals": 18, - "name": "Equalizer", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x1da87b114f35e1dc91f72bf57fc07a768ad40bb0.png", - "aggregators": [ - "Metamask", - "LiFi", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 6 - }, - "0x46e98ffe40e408ba6412beb670507e083c8b95ff": { - "address": "0x46e98ffe40e408ba6412beb670507e083c8b95ff", - "symbol": "PRIMATE", - "decimals": 18, - "name": "PRIMATE", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x46e98ffe40e408ba6412beb670507e083c8b95ff.png", - "aggregators": [ - "CoinMarketCap", - "LiFi", - "Socket", - "Rubic", - "Sonarwatch", - "SushiSwap" - ], - "occurrences": 6 - }, - "0x30dcba0405004cf124045793e1933c798af9e66a": { - "address": "0x30dcba0405004cf124045793e1933c798af9e66a", - "symbol": "YDF", - "decimals": 18, - "name": "Yieldification", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x30dcba0405004cf124045793e1933c798af9e66a.png", - "aggregators": [ - "CoinMarketCap", - "1inch", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 6 - }, - "0x329c6e459ffa7475718838145e5e85802db2a303": { - "address": "0x329c6e459ffa7475718838145e5e85802db2a303", - "symbol": "EMAID", - "decimals": 18, - "name": "MaidSafeCoin", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x329c6e459ffa7475718838145e5e85802db2a303.png", - "aggregators": [ - "CoinMarketCap", - "LiFi", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 6 - }, - "0x3ba925fdeae6b46d0bb4d424d829982cb2f7309e": { - "address": "0x3ba925fdeae6b46d0bb4d424d829982cb2f7309e", - "symbol": "RBX", - "decimals": 18, - "name": "RabbitX", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x3ba925fdeae6b46d0bb4d424d829982cb2f7309e.png", - "aggregators": [ - "CoinMarketCap", - "Socket", - "Rubic", - "Squid", - "Rango", - "Sonarwatch" - ], - "occurrences": 6 - }, - "0x69a95185ee2a045cdc4bcd1b1df10710395e4e23": { - "address": "0x69a95185ee2a045cdc4bcd1b1df10710395e4e23", - "symbol": "POOLZ", - "decimals": 18, - "name": "$Poolz Finance", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x69a95185ee2a045cdc4bcd1b1df10710395e4e23.png", - "aggregators": [ - "Metamask", - "LiFi", - "Rubic", - "Rango", - "Sonarwatch", - "Bancor" - ], - "occurrences": 6 - }, - "0x1f3f9d3068568f8040775be2e8c03c103c61f3af": { - "address": "0x1f3f9d3068568f8040775be2e8c03c103c61f3af", - "symbol": "ARCH", - "decimals": 18, - "name": "Archer DAO", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x1f3f9d3068568f8040775be2e8c03c103c61f3af.png", - "aggregators": [ - "1inch", - "LiFi", - "Socket", - "Rubic", - "Rango", - "SushiSwap" - ], - "occurrences": 6 - }, - "0x7815bda662050d84718b988735218cffd32f75ea": { - "address": "0x7815bda662050d84718b988735218cffd32f75ea", - "symbol": "YEL", - "decimals": 18, - "name": "YEL Token", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x7815bda662050d84718b988735218cffd32f75ea.png", - "aggregators": [ - "1inch", - "Socket", - "Rubic", - "Squid", - "Rango", - "SushiSwap" - ], - "occurrences": 6 - }, - "0x69bbc3f8787d573f1bbdd0a5f40c7ba0aee9bcc9": { - "address": "0x69bbc3f8787d573f1bbdd0a5f40c7ba0aee9bcc9", - "symbol": "YUP", - "decimals": 18, - "name": "Yup", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x69bbc3f8787d573f1bbdd0a5f40c7ba0aee9bcc9.png", - "aggregators": [ - "LiFi", - "Socket", - "Rubic", - "Squid", - "Rango", - "Sonarwatch" - ], - "occurrences": 6 - }, - "0x8b1484d57abbe239bb280661377363b03c89caea": { - "address": "0x8b1484d57abbe239bb280661377363b03c89caea", - "symbol": "ADI", - "decimals": 18, - "name": "ADI", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x8b1484d57abbe239bb280661377363b03c89caea.png", - "aggregators": ["CoinMarketCap", "1inch", "LiFi", "Rubic", "Rango"], - "occurrences": 5 - }, - "0x4d7078ddd6ccfed2f85db5b7d3ff16828d378d48": { - "address": "0x4d7078ddd6ccfed2f85db5b7d3ff16828d378d48", - "symbol": "AI", - "decimals": 18, - "name": "Gensyn", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x4d7078ddd6ccfed2f85db5b7d3ff16828d378d48.png", - "aggregators": [ - "CoinMarketCap", - "LiFi", - "Socket", - "Rubic", - "Rango" - ], - "occurrences": 5 - }, - "0x2565ae0385659badcada1031db704442e1b69982": { - "address": "0x2565ae0385659badcada1031db704442e1b69982", - "symbol": "ASM", - "decimals": 18, - "name": "Assemble AI", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x2565ae0385659badcada1031db704442e1b69982.png", - "aggregators": [ - "OpenSwap", - "LiFi", - "Socket", - "Rubic", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0xa27ec0006e59f245217ff08cd52a7e8b169e62d2": { - "address": "0xa27ec0006e59f245217ff08cd52a7e8b169e62d2", - "symbol": "AZTEC", - "decimals": 18, - "name": "AZTEC", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xa27ec0006e59f245217ff08cd52a7e8b169e62d2.png", - "aggregators": [ - "CoinMarketCap", - "Socket", - "Rubic", - "Squid", - "Rango" - ], - "occurrences": 5 - }, - "0xf0db65d17e30a966c2ae6a21f6bba71cea6e9754": { - "address": "0xf0db65d17e30a966c2ae6a21f6bba71cea6e9754", - "symbol": "BARD", - "decimals": 18, - "name": "Lombard", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xf0db65d17e30a966c2ae6a21f6bba71cea6e9754.png", - "aggregators": [ - "CoinMarketCap", - "LiFi", - "Socket", - "Rubic", - "Rango" - ], - "occurrences": 5 - }, - "0xb1110919016846972056ab995054d65560d5f05e": { - "address": "0xb1110919016846972056ab995054d65560d5f05e", - "symbol": "BILL", - "decimals": 18, - "name": "Billions", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xb1110919016846972056ab995054d65560d5f05e.png", - "aggregators": [ - "CoinMarketCap", - "LiFi", - "Socket", - "Rubic", - "Rango" - ], - "occurrences": 5 - }, - "0xd8a271974e8edae9d7b58e3370dc1669427503f4": { - "address": "0xd8a271974e8edae9d7b58e3370dc1669427503f4", - "symbol": "BLEND", - "decimals": 18, - "name": "Fluent", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xd8a271974e8edae9d7b58e3370dc1669427503f4.png", - "aggregators": [ - "CoinMarketCap", - "LiFi", - "Socket", - "Rubic", - "Rango" - ], - "occurrences": 5 - }, - "0x08389495d7456e1951ddf7c3a1314a4bfb646d8b": { - "address": "0x08389495d7456e1951ddf7c3a1314a4bfb646d8b", - "symbol": "CRPT", - "decimals": 18, - "name": "Crypterium", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x08389495d7456e1951ddf7c3a1314a4bfb646d8b.png", - "aggregators": [ - "OpenSwap", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x031de51f3e8016514bd0963d0b2ab825a591db9a": { - "address": "0x031de51f3e8016514bd0963d0b2ab825a591db9a", - "symbol": "ESP", - "decimals": 18, - "name": "Espresso", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x031de51f3e8016514bd0963d0b2ab825a591db9a.png", - "aggregators": [ - "CoinMarketCap", - "LiFi", - "Socket", - "Rubic", - "Rango" - ], - "occurrences": 5 - }, - "0x904567252d8f48555b7447c67dca23f0372e16be": { - "address": "0x904567252d8f48555b7447c67dca23f0372e16be", - "symbol": "KITE", - "decimals": 18, - "name": "Kite", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x904567252d8f48555b7447c67dca23f0372e16be.png", - "aggregators": [ - "CoinMarketCap", - "LiFi", - "Socket", - "Rubic", - "Rango" - ], - "occurrences": 5 - }, - "0x6bef15d938d4e72056ac92ea4bdd0d76b1c4ad29": { - "address": "0x6bef15d938d4e72056ac92ea4bdd0d76b1c4ad29", - "symbol": "PROVE", - "decimals": 18, - "name": "Succinct", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x6bef15d938d4e72056ac92ea4bdd0d76b1c4ad29.png", - "aggregators": [ - "CoinMarketCap", - "LiFi", - "Socket", - "Rubic", - "Rango" - ], - "occurrences": 5 - }, - "0x56a3ba04e95d34268a19b2a4474dc979babdaf76": { - "address": "0x56a3ba04e95d34268a19b2a4474dc979babdaf76", - "symbol": "SENT", - "decimals": 18, - "name": "Sentient", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x56a3ba04e95d34268a19b2a4474dc979babdaf76.png", - "aggregators": [ - "CoinMarketCap", - "LiFi", - "Socket", - "Rubic", - "Rango" - ], - "occurrences": 5 - }, - "0x0bb217e40f8a5cb79adf04e1aab60e5abd0dfc1e": { - "address": "0x0bb217e40f8a5cb79adf04e1aab60e5abd0dfc1e", - "symbol": "SWFTC", - "decimals": 8, - "name": "SWFTCOIN", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x0bb217e40f8a5cb79adf04e1aab60e5abd0dfc1e.png", - "aggregators": [ - "CoinMarketCap", - "1inch", - "Socket", - "Rubic", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0xcedbea37c8872c4171259cdfd5255cb8923cf8e7": { - "address": "0xcedbea37c8872c4171259cdfd5255cb8923cf8e7", - "symbol": "XAN", - "decimals": 18, - "name": "Anoma", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xcedbea37c8872c4171259cdfd5255cb8923cf8e7.png", - "aggregators": [ - "CoinMarketCap", - "1inch", - "Socket", - "Rubic", - "Rango" - ], - "occurrences": 5 - }, - "0x01791f726b4103694969820be083196cc7c045ff": { - "address": "0x01791f726b4103694969820be083196cc7c045ff", - "symbol": "YB", - "decimals": 18, - "name": "Yield Basis", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x01791f726b4103694969820be083196cc7c045ff.png", - "aggregators": ["Metamask", "1inch", "Socket", "Rubic", "Rango"], - "occurrences": 5 - }, - "0xa12cc123ba206d4031d1c7f6223d1c2ec249f4f3": { - "address": "0xa12cc123ba206d4031d1c7f6223d1c2ec249f4f3", - "symbol": "ZAMA", - "decimals": 18, - "name": "Zama", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xa12cc123ba206d4031d1c7f6223d1c2ec249f4f3.png", - "aggregators": [ - "CoinMarketCap", - "Socket", - "Rubic", - "Squid", - "Rango" - ], - "occurrences": 5 - }, - "0x3a3a65aab0dd2a17e3f1947ba16138cd37d08c04": { - "address": "0x3a3a65aab0dd2a17e3f1947ba16138cd37d08c04", - "symbol": "AETH", - "decimals": 18, - "name": "AETH", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x3a3a65aab0dd2a17e3f1947ba16138cd37d08c04.png", - "aggregators": [ - "CoinMarketCap", - "LiFi", - "Socket", - "Rubic", - "Rango" - ], - "occurrences": 5 - }, - "0xe1afe1fd76fd88f78cbf599ea1846231b8ba3b6b": { - "address": "0xe1afe1fd76fd88f78cbf599ea1846231b8ba3b6b", - "symbol": "SDEFI", - "decimals": 18, - "name": "Synth sDEFI", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xe1afe1fd76fd88f78cbf599ea1846231b8ba3b6b.png", - "aggregators": ["Synthetix", "LiFi", "Rubic", "Rango", "SushiSwap"], - "occurrences": 5 - }, - "0xc28e27870558cf22add83540d2126da2e4b464c2": { - "address": "0xc28e27870558cf22add83540d2126da2e4b464c2", - "symbol": "SASHIMI", - "decimals": 18, - "name": "Sashimi", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xc28e27870558cf22add83540d2126da2e4b464c2.png", - "aggregators": [ - "CoinMarketCap", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0xa89ac6e529acf391cfbbd377f3ac9d93eae9664e": { - "address": "0xa89ac6e529acf391cfbbd377f3ac9d93eae9664e", - "symbol": "KP4R", - "decimals": 18, - "name": "KP4R", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xa89ac6e529acf391cfbbd377f3ac9d93eae9664e.png", - "aggregators": [ - "CoinMarketCap", - "1inch", - "LiFi", - "Socket", - "Rango" - ], - "occurrences": 5 - }, - "0x20c36f062a31865bed8a5b1e512d9a1a20aa333a": { - "address": "0x20c36f062a31865bed8a5b1e512d9a1a20aa333a", - "symbol": "DFD", - "decimals": 18, - "name": "DefiDollar DAO", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x20c36f062a31865bed8a5b1e512d9a1a20aa333a.png", - "aggregators": [ - "CoinMarketCap", - "Socket", - "Rubic", - "Rango", - "SushiSwap" - ], - "occurrences": 5 - }, - "0x67b66c99d3eb37fa76aa3ed1ff33e8e39f0b9c7a": { - "address": "0x67b66c99d3eb37fa76aa3ed1ff33e8e39f0b9c7a", - "symbol": "IBETH", - "decimals": 18, - "name": "Interest Bearing ETH", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x67b66c99d3eb37fa76aa3ed1ff33e8e39f0b9c7a.png", - "aggregators": [ - "CoinMarketCap", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0xc3eb2622190c57429aac3901808994443b64b466": { - "address": "0xc3eb2622190c57429aac3901808994443b64b466", - "symbol": "ORO", - "decimals": 18, - "name": "ORO", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xc3eb2622190c57429aac3901808994443b64b466.png", - "aggregators": [ - "CoinMarketCap", - "LiFi", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0xd71ecff9342a5ced620049e616c5035f1db98620": { - "address": "0xd71ecff9342a5ced620049e616c5035f1db98620", - "symbol": "SEUR", - "decimals": 18, - "name": "sEUR", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xd71ecff9342a5ced620049e616c5035f1db98620.png", - "aggregators": [ - "Synthetix", - "LiFi", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x01995a697752266d8e748738aaa3f06464b8350b": { - "address": "0x01995a697752266d8e748738aaa3f06464b8350b", - "symbol": "CANA", - "decimals": 18, - "name": "CANA Holdings California Carbon Credits", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x01995a697752266d8e748738aaa3f06464b8350b.png", - "aggregators": ["CoinGecko", "LiFi", "Socket", "Rubic", "Rango"], - "occurrences": 5 - }, - "0x1b1ff83ae0751ffb7ce0224e9c330e859e95dd16": { - "address": "0x1b1ff83ae0751ffb7ce0224e9c330e859e95dd16", - "symbol": "LEGEND", - "decimals": 18, - "name": "Legend", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x1b1ff83ae0751ffb7ce0224e9c330e859e95dd16.png", - "aggregators": ["CoinGecko", "Socket", "Rubic", "Sonarwatch"], - "occurrences": 4 - }, - "0x054d64b73d3d8a21af3d764efd76bcaa774f3bb2": { - "address": "0x054d64b73d3d8a21af3d764efd76bcaa774f3bb2", - "symbol": "PPAY", - "decimals": 18, - "name": "Plasma Finance", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x054d64b73d3d8a21af3d764efd76bcaa774f3bb2.png", - "aggregators": [ - "CoinMarketCap", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x259338656198ec7a76c729514d3cb45dfbf768a1": { - "address": "0x259338656198ec7a76c729514d3cb45dfbf768a1", - "symbol": "RESOLV", - "decimals": 18, - "name": "Resolv", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x259338656198ec7a76c729514d3cb45dfbf768a1.png", - "aggregators": [ - "CoinMarketCap", - "LiFi", - "Socket", - "Rubic", - "Rango" - ], - "occurrences": 5 - }, - "0xe9b076b476d8865cdf79d1cf7df420ee397a7f75": { - "address": "0xe9b076b476d8865cdf79d1cf7df420ee397a7f75", - "symbol": "FUND", - "decimals": 9, - "name": "Unification", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xe9b076b476d8865cdf79d1cf7df420ee397a7f75.png", - "aggregators": [ - "CoinMarketCap", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x10ea9e5303670331bdddfa66a4cea47dae4fcf3b": { - "address": "0x10ea9e5303670331bdddfa66a4cea47dae4fcf3b", - "symbol": "SESH", - "decimals": 9, - "name": "Session Token", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x10ea9e5303670331bdddfa66a4cea47dae4fcf3b.png", - "aggregators": [ - "CoinMarketCap", - "LiFi", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0xaff2565091e7207191dbe340b8528d02fa78d044": { - "address": "0xaff2565091e7207191dbe340b8528d02fa78d044", - "symbol": "ASTEROID", - "decimals": 18, - "name": "Asteroid", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xaff2565091e7207191dbe340b8528d02fa78d044.png", - "aggregators": ["CoinGecko", "LiFi", "Rubic", "Squid", "Rango"], - "occurrences": 5 - }, - "0x4116f14b6d462b32a1c10f98049e4b1765e34fa9": { - "address": "0x4116f14b6d462b32a1c10f98049e4b1765e34fa9", - "symbol": "MOOV", - "decimals": 18, - "name": "Dotmoovs", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x4116f14b6d462b32a1c10f98049e4b1765e34fa9.png", - "aggregators": [ - "Metamask", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0xb33d999469a7e6b9ebc25a3a05248287b855ed46": { - "address": "0xb33d999469a7e6b9ebc25a3a05248287b855ed46", - "symbol": "FLOCK", - "decimals": 18, - "name": "Flockerz", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xb33d999469a7e6b9ebc25a3a05248287b855ed46.png", - "aggregators": [ - "CoinMarketCap", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x066798d9ef0833ccc719076dab77199ecbd178b0": { - "address": "0x066798d9ef0833ccc719076dab77199ecbd178b0", - "symbol": "SAKE", - "decimals": 18, - "name": "SakeSwap", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x066798d9ef0833ccc719076dab77199ecbd178b0.png", - "aggregators": [ - "CoinMarketCap", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0xaacbc3725e0af980e8aa9df4c4441a625b387a91": { - "address": "0xaacbc3725e0af980e8aa9df4c4441a625b387a91", - "symbol": "AETHRA", - "decimals": 18, - "name": "Aethra AI", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xaacbc3725e0af980e8aa9df4c4441a625b387a91.png", - "aggregators": [ - "CoinMarketCap", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0xbc68ff3b062bc588603d71ec8d4273391edf152c": { - "address": "0xbc68ff3b062bc588603d71ec8d4273391edf152c", - "symbol": "OWCT", - "decimals": 18, - "name": "One World Chain", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xbc68ff3b062bc588603d71ec8d4273391edf152c.png", - "aggregators": [ - "CoinGecko", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0xf0b2dd79324a66d2108c961d680f7616e1486bb0": { - "address": "0xf0b2dd79324a66d2108c961d680f7616e1486bb0", - "symbol": "SILO", - "decimals": 18, - "name": "Silo Finance", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xf0b2dd79324a66d2108c961d680f7616e1486bb0.png", - "aggregators": [ - "CoinMarketCap", - "LiFi", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x4ae149fd6059af772b962efac6bf0236872d6940": { - "address": "0x4ae149fd6059af772b962efac6bf0236872d6940", - "symbol": "LBAI", - "decimals": 18, - "name": "Lemmy The Bat", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x4ae149fd6059af772b962efac6bf0236872d6940.png", - "aggregators": [ - "CoinMarketCap", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x3e6a1b21bd267677fa49be6425aebe2fc0f89bde": { - "address": "0x3e6a1b21bd267677fa49be6425aebe2fc0f89bde", - "symbol": "QBIO", - "decimals": 18, - "name": "Quantum Biology DAO", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x3e6a1b21bd267677fa49be6425aebe2fc0f89bde.png", - "aggregators": [ - "CoinGecko", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0xf970706063b7853877f39515c96932d49d5ac9cd": { - "address": "0xf970706063b7853877f39515c96932d49d5ac9cd", - "symbol": "YALA", - "decimals": 18, - "name": "YALA", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xf970706063b7853877f39515c96932d49d5ac9cd.png", - "aggregators": [ - "CoinMarketCap", - "LiFi", - "Socket", - "Rubic", - "Rango" - ], - "occurrences": 5 - }, - "0x17205fab260a7a6383a81452ce6315a39370db97": { - "address": "0x17205fab260a7a6383a81452ce6315a39370db97", - "symbol": "RAVE", - "decimals": 18, - "name": "RaveDAO", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x17205fab260a7a6383a81452ce6315a39370db97.png", - "aggregators": [ - "CoinMarketCap", - "LiFi", - "Socket", - "Rubic", - "Rango" - ], - "occurrences": 5 - }, - "0x672fdba7055bddfa8fd6bd45b1455ce5eb97f499": { - "address": "0x672fdba7055bddfa8fd6bd45b1455ce5eb97f499", - "symbol": "ARC", - "decimals": 18, - "name": "ARC", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x672fdba7055bddfa8fd6bd45b1455ce5eb97f499.png", - "aggregators": [ - "CoinMarketCap", - "1inch", - "Socket", - "Rubic", - "Rango" - ], - "occurrences": 5 - }, - "0x39b8b6385416f4ca36a20319f70d28621895279d": { - "address": "0x39b8b6385416f4ca36a20319f70d28621895279d", - "symbol": "EURE", - "decimals": 18, - "name": "Monerium EUR emoney", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x39b8b6385416f4ca36a20319f70d28621895279d.png", - "aggregators": [ - "CoinMarketCap", - "1inch", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x7204b7dbf9412567835633b6f00c3edc3a8d6330": { - "address": "0x7204b7dbf9412567835633b6f00c3edc3a8d6330", - "symbol": "CSUSDC", - "decimals": 18, - "name": "Coinshift USDC", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x7204b7dbf9412567835633b6f00c3edc3a8d6330.png", - "aggregators": [ - "CoinGecko", - "LiFi", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x23238f20b894f29041f48d88ee91131c395aaa71": { - "address": "0x23238f20b894f29041f48d88ee91131c395aaa71", - "symbol": "USDAT", - "decimals": 6, - "name": "Saturn Dollar", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x23238f20b894f29041f48d88ee91131c395aaa71.png", - "aggregators": ["CoinGecko", "LiFi", "Socket", "Rubic", "Rango"], - "occurrences": 5 - }, - "0xcab84bc21f9092167fcfe0ea60f5ce053ab39a1e": { - "address": "0xcab84bc21f9092167fcfe0ea60f5ce053ab39a1e", - "symbol": "BLOCK", - "decimals": 18, - "name": "Block", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xcab84bc21f9092167fcfe0ea60f5ce053ab39a1e.png", - "aggregators": ["CoinGecko", "1inch", "Socket", "Rubic", "Rango"], - "occurrences": 5 - }, - "0x440017a1b021006d556d7fc06a54c32e42eb745b": { - "address": "0x440017a1b021006d556d7fc06a54c32e42eb745b", - "symbol": "G", - "decimals": 18, - "name": "Graphite Network", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x440017a1b021006d556d7fc06a54c32e42eb745b.png", - "aggregators": [ - "CoinGecko", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x781db9a4d8ae055571e8796dd4423bc13cee5dd6": { - "address": "0x781db9a4d8ae055571e8796dd4423bc13cee5dd6", - "symbol": "DEAI", - "decimals": 18, - "name": "DeCenter AI", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x781db9a4d8ae055571e8796dd4423bc13cee5dd6.png", - "aggregators": [ - "CoinGecko", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x399ef659fdead53b3e7f97e9491e727925667945": { - "address": "0x399ef659fdead53b3e7f97e9491e727925667945", - "symbol": "L1X", - "decimals": 18, - "name": "Layer One X", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x399ef659fdead53b3e7f97e9491e727925667945.png", - "aggregators": [ - "CoinMarketCap", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x2781246fe707bb15cee3e5ea354e2154a2877b16": { - "address": "0x2781246fe707bb15cee3e5ea354e2154a2877b16", - "symbol": "EL", - "decimals": 18, - "name": "ELYSIA", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x2781246fe707bb15cee3e5ea354e2154a2877b16.png", - "aggregators": [ - "Metamask", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x95af4af910c28e8ece4512bfe46f1f33687424ce": { - "address": "0x95af4af910c28e8ece4512bfe46f1f33687424ce", - "symbol": "MANYU", - "decimals": 9, - "name": "Manyu", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x95af4af910c28e8ece4512bfe46f1f33687424ce.png", - "aggregators": ["CoinGecko", "1inch", "Rubic", "Squid", "Rango"], - "occurrences": 5 - }, - "0x39903a1a6f289a67e0de94096915c4ccd506ab2a": { - "address": "0x39903a1a6f289a67e0de94096915c4ccd506ab2a", - "symbol": "MAIV", - "decimals": 18, - "name": "Multi Asset Investment Vehicle", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x39903a1a6f289a67e0de94096915c4ccd506ab2a.png", - "aggregators": [ - "CoinMarketCap", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0xdae0fafd65385e7775cf75b1398735155ef6acd2": { - "address": "0xdae0fafd65385e7775cf75b1398735155ef6acd2", - "symbol": "TRUU", - "decimals": 10, - "name": "Truth", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xdae0fafd65385e7775cf75b1398735155ef6acd2.png", - "aggregators": [ - "CoinMarketCap", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x33b481cbbf3c24f2b3184ee7cb02daad1c4f49a8": { - "address": "0x33b481cbbf3c24f2b3184ee7cb02daad1c4f49a8", - "symbol": "D", - "decimals": 6, - "name": "Dar Open Network", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x33b481cbbf3c24f2b3184ee7cb02daad1c4f49a8.png", - "aggregators": [ - "CoinMarketCap", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0xb31561f0e2aac72406103b1926356d756f07a481": { - "address": "0xb31561f0e2aac72406103b1926356d756f07a481", - "symbol": "VOOI", - "decimals": 18, - "name": "VOOI", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xb31561f0e2aac72406103b1926356d756f07a481.png", - "aggregators": [ - "CoinMarketCap", - "LiFi", - "Socket", - "Rubic", - "Rango" - ], - "occurrences": 5 - }, - "0x156994e6cabea296e7a73cf3742355bf71a64cec": { - "address": "0x156994e6cabea296e7a73cf3742355bf71a64cec", - "symbol": "RANDOM9", - "decimals": 9, - "name": "Elons Gamertag", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x156994e6cabea296e7a73cf3742355bf71a64cec.png", - "aggregators": [ - "CoinGecko", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x5fd48ca1212a409ca1020ea43b49f7ec40010435": { - "address": "0x5fd48ca1212a409ca1020ea43b49f7ec40010435", - "symbol": "ADEX", - "decimals": 18, - "name": "AstraDex AI", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x5fd48ca1212a409ca1020ea43b49f7ec40010435.png", - "aggregators": [ - "CoinGecko", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x76a0e27618462bdac7a29104bdcfff4e6bfcea2d": { - "address": "0x76a0e27618462bdac7a29104bdcfff4e6bfcea2d", - "symbol": "SOSO", - "decimals": 18, - "name": "SoSoValue", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x76a0e27618462bdac7a29104bdcfff4e6bfcea2d.png", - "aggregators": [ - "CoinMarketCap", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x614a48c41be6ba6762b63a92cc33cfb5e8149332": { - "address": "0x614a48c41be6ba6762b63a92cc33cfb5e8149332", - "symbol": "DUSTY", - "decimals": 9, - "name": "Dusty", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x614a48c41be6ba6762b63a92cc33cfb5e8149332.png", - "aggregators": [ - "CoinMarketCap", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x81e32d4652be82ae225dedd1bd0bf3bcba8fee07": { - "address": "0x81e32d4652be82ae225dedd1bd0bf3bcba8fee07", - "symbol": "XRING", - "decimals": 18, - "name": "Darwinia Network xRING", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x81e32d4652be82ae225dedd1bd0bf3bcba8fee07.png", - "aggregators": [ - "CoinGecko", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x4eca7761a516f8300711cbf920c0b85555261993": { - "address": "0x4eca7761a516f8300711cbf920c0b85555261993", - "symbol": "GOATX", - "decimals": 18, - "name": "GOATX", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x4eca7761a516f8300711cbf920c0b85555261993.png", - "aggregators": [ - "CoinGecko", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0xf2fc894381792ded27a7f08d9f0f246363cbe1ea": { - "address": "0xf2fc894381792ded27a7f08d9f0f246363cbe1ea", - "symbol": "MATRIX", - "decimals": 18, - "name": "Matrix Win", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xf2fc894381792ded27a7f08d9f0f246363cbe1ea.png", - "aggregators": [ - "CoinGecko", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x098697ba3fee4ea76294c5d6a466a4e3b3e95fe6": { - "address": "0x098697ba3fee4ea76294c5d6a466a4e3b3e95fe6", - "symbol": "USP", - "decimals": 18, - "name": "USP", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x098697ba3fee4ea76294c5d6a466a4e3b3e95fe6.png", - "aggregators": ["CoinGecko", "1inch", "LiFi", "Rubic", "Rango"], - "occurrences": 5 - }, - "0xca4f53e6117623992126a9a45ce61682fe8678df": { - "address": "0xca4f53e6117623992126a9a45ce61682fe8678df", - "symbol": "POPPY", - "decimals": 9, - "name": "Poppy", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xca4f53e6117623992126a9a45ce61682fe8678df.png", - "aggregators": [ - "CoinMarketCap", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x4dfd742c6e5e28f11bcbcf6c5e51a965d15ea315": { - "address": "0x4dfd742c6e5e28f11bcbcf6c5e51a965d15ea315", - "symbol": "AMINO", - "decimals": 18, - "name": "Amino", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x4dfd742c6e5e28f11bcbcf6c5e51a965d15ea315.png", - "aggregators": [ - "CoinMarketCap", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x00000000000007c8612ba63df8ddefd9e6077c97": { - "address": "0x00000000000007c8612ba63df8ddefd9e6077c97", - "symbol": "⌘", - "decimals": 18, - "name": "NANI", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x00000000000007c8612ba63df8ddefd9e6077c97.png", - "aggregators": [ - "CoinGecko", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x1db1afd9552eeb28e2e36597082440598b7f1320": { - "address": "0x1db1afd9552eeb28e2e36597082440598b7f1320", - "symbol": "XRPL", - "decimals": 18, - "name": "Constellation Staked RPL", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x1db1afd9552eeb28e2e36597082440598b7f1320.png", - "aggregators": [ - "CoinGecko", - "LiFi", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x7636d8722fdf7cd34232a915e48e96aa3eb386bf": { - "address": "0x7636d8722fdf7cd34232a915e48e96aa3eb386bf", - "symbol": "SFI", - "decimals": 18, - "name": "Singularity Finance", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x7636d8722fdf7cd34232a915e48e96aa3eb386bf.png", - "aggregators": [ - "CoinMarketCap", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0xa02c49da76a085e4e1ee60a6b920ddbc8db599f4": { - "address": "0xa02c49da76a085e4e1ee60a6b920ddbc8db599f4", - "symbol": "TREAT", - "decimals": 18, - "name": "Shiba Inu Treat", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xa02c49da76a085e4e1ee60a6b920ddbc8db599f4.png", - "aggregators": [ - "CoinMarketCap", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x957c7fa189a408e78543113412f6ae1a9b4022c4": { - "address": "0x957c7fa189a408e78543113412f6ae1a9b4022c4", - "symbol": "LF", - "decimals": 18, - "name": "LF", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x957c7fa189a408e78543113412f6ae1a9b4022c4.png", - "aggregators": [ - "CoinMarketCap", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0xf8f173e20e15f3b6cb686fb64724d370689de083": { - "address": "0xf8f173e20e15f3b6cb686fb64724d370689de083", - "symbol": "HEI", - "decimals": 18, - "name": "Heima", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xf8f173e20e15f3b6cb686fb64724d370689de083.png", - "aggregators": [ - "CoinMarketCap", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x841a3083074b1a40b644bf2ba2491a731b6da277": { - "address": "0x841a3083074b1a40b644bf2ba2491a731b6da277", - "symbol": "FATAL", - "decimals": 12, - "name": "Fatalismftw", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x841a3083074b1a40b644bf2ba2491a731b6da277.png", - "aggregators": [ - "CoinGecko", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x76887cb94cf29ec539b3219ba62104be04f26a5c": { - "address": "0x76887cb94cf29ec539b3219ba62104be04f26a5c", - "symbol": "NITRO", - "decimals": 18, - "name": "Nitro", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x76887cb94cf29ec539b3219ba62104be04f26a5c.png", - "aggregators": [ - "CoinMarketCap", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0xa62cc35625b0c8dc1faea39d33625bb4c15bd71c": { - "address": "0xa62cc35625b0c8dc1faea39d33625bb4c15bd71c", - "symbol": "STMX", - "decimals": 18, - "name": "StormX", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xa62cc35625b0c8dc1faea39d33625bb4c15bd71c.png", - "aggregators": [ - "Metamask", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0xdac070102b0cfde1493026454c9c608924f6db71": { - "address": "0xdac070102b0cfde1493026454c9c608924f6db71", - "symbol": "POPG", - "decimals": 18, - "name": "POPG", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xdac070102b0cfde1493026454c9c608924f6db71.png", - "aggregators": [ - "CoinMarketCap", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0xf1bb41f9ed87e6c7e1f70e921b7b4bee1df7ae9c": { - "address": "0xf1bb41f9ed87e6c7e1f70e921b7b4bee1df7ae9c", - "symbol": "DCOIN", - "decimals": 18, - "name": "Dogcoin", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xf1bb41f9ed87e6c7e1f70e921b7b4bee1df7ae9c.png", - "aggregators": [ - "CoinMarketCap", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x56cfc19d8cbf7d417d370844249be9cb2d2e19a1": { - "address": "0x56cfc19d8cbf7d417d370844249be9cb2d2e19a1", - "symbol": "DOGECAUCUS", - "decimals": 9, - "name": "Doge Caucus", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x56cfc19d8cbf7d417d370844249be9cb2d2e19a1.png", - "aggregators": [ - "CoinMarketCap", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x4448726b23483927c492f09c1dbfdffd3967b452": { - "address": "0x4448726b23483927c492f09c1dbfdffd3967b452", - "symbol": "PERCY", - "decimals": 9, - "name": "Percy Verence", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x4448726b23483927c492f09c1dbfdffd3967b452.png", - "aggregators": [ - "CoinGecko", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0xca76bf98b6e44df7360da8650e701f6d9d94bb58": { - "address": "0xca76bf98b6e44df7360da8650e701f6d9d94bb58", - "symbol": "MK", - "decimals": 18, - "name": "Memelinked", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xca76bf98b6e44df7360da8650e701f6d9d94bb58.png", - "aggregators": [ - "CoinGecko", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0xfdffb411c4a70aa7c95d5c981a6fb4da867e1111": { - "address": "0xfdffb411c4a70aa7c95d5c981a6fb4da867e1111", - "symbol": "SAHARA", - "decimals": 18, - "name": "Sahara AI", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xfdffb411c4a70aa7c95d5c981a6fb4da867e1111.png", - "aggregators": [ - "CoinMarketCap", - "LiFi", - "Socket", - "Rubic", - "Rango" - ], - "occurrences": 5 - }, - "0xaf0db65b7296c02ab043f5cb17300c8ee949f247": { - "address": "0xaf0db65b7296c02ab043f5cb17300c8ee949f247", - "symbol": "SHAO", - "decimals": 18, - "name": "SHAO", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xaf0db65b7296c02ab043f5cb17300c8ee949f247.png", - "aggregators": [ - "CoinGecko", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x4e9623b7e5b6438542458f5ee828d65c24d3af8c": { - "address": "0x4e9623b7e5b6438542458f5ee828d65c24d3af8c", - "symbol": "JYAI", - "decimals": 18, - "name": "Jerry The Turtle By Matt Furie", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x4e9623b7e5b6438542458f5ee828d65c24d3af8c.png", - "aggregators": [ - "CoinMarketCap", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x282a69142bac47855c3fbe1693fcc4ba3b4d5ed6": { - "address": "0x282a69142bac47855c3fbe1693fcc4ba3b4d5ed6", - "symbol": "CARROT", - "decimals": 18, - "name": "Carrot by Puffer", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x282a69142bac47855c3fbe1693fcc4ba3b4d5ed6.png", - "aggregators": [ - "CoinMarketCap", - "LiFi", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x8074836637eb9cc73a01a65d5700907fc639c4e9": { - "address": "0x8074836637eb9cc73a01a65d5700907fc639c4e9", - "symbol": "DNOW", - "decimals": 18, - "name": "DuelNow", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x8074836637eb9cc73a01a65d5700907fc639c4e9.png", - "aggregators": [ - "CoinMarketCap", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x7ff7fa94b8b66ef313f7970d4eebd2cb3103a2c0": { - "address": "0x7ff7fa94b8b66ef313f7970d4eebd2cb3103a2c0", - "symbol": "VANA", - "decimals": 18, - "name": "VANA", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x7ff7fa94b8b66ef313f7970d4eebd2cb3103a2c0.png", - "aggregators": [ - "CoinMarketCap", - "LiFi", - "Socket", - "Rubic", - "Rango" - ], - "occurrences": 5 - }, - "0x238a700ed6165261cf8b2e544ba797bc11e466ba": { - "address": "0x238a700ed6165261cf8b2e544ba797bc11e466ba", - "symbol": "MF-ONE", - "decimals": 18, - "name": "MF-ONE", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x238a700ed6165261cf8b2e544ba797bc11e466ba.png", - "aggregators": ["CoinGecko", "LiFi", "Rubic", "Squid", "Rango"], - "occurrences": 5 - }, - "0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a": { - "address": "0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a", - "symbol": "PPT", - "decimals": 8, - "name": "Populous", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a.png", - "aggregators": [ - "Metamask", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0xaf04f0912e793620824f4442b03f4d984af29853": { - "address": "0xaf04f0912e793620824f4442b03f4d984af29853", - "symbol": "HYDRA", - "decimals": 18, - "name": "HydraDAO", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xaf04f0912e793620824f4442b03f4d984af29853.png", - "aggregators": [ - "CoinGecko", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0xd89cc9d79ad3c49e2cd477a8bbc8e63dee53f82e": { - "address": "0xd89cc9d79ad3c49e2cd477a8bbc8e63dee53f82e", - "symbol": "KEE", - "decimals": 18, - "name": "Keeshond", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xd89cc9d79ad3c49e2cd477a8bbc8e63dee53f82e.png", - "aggregators": [ - "CoinGecko", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x558e7139800f8bc119f68d23a6126fffd43a66a6": { - "address": "0x558e7139800f8bc119f68d23a6126fffd43a66a6", - "symbol": "U2U", - "decimals": 18, - "name": "U2U Network", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x558e7139800f8bc119f68d23a6126fffd43a66a6.png", - "aggregators": [ - "CoinMarketCap", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x11113ff3a60c2450f4b22515cb760417259ee94b": { - "address": "0x11113ff3a60c2450f4b22515cb760417259ee94b", - "symbol": "NBASIS", - "decimals": 6, - "name": "Nest Basis Vault", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x11113ff3a60c2450f4b22515cb760417259ee94b.png", - "aggregators": [ - "CoinMarketCap", - "LiFi", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x9ea59db651a3c79a8d52a394a49da8e9a214d6ae": { - "address": "0x9ea59db651a3c79a8d52a394a49da8e9a214d6ae", - "symbol": "BALLS", - "decimals": 9, - "name": "Big Balls", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x9ea59db651a3c79a8d52a394a49da8e9a214d6ae.png", - "aggregators": [ - "CoinGecko", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x4d4574f50dd8b9dbe623cf329dcc78d76935e610": { - "address": "0x4d4574f50dd8b9dbe623cf329dcc78d76935e610", - "symbol": "ZEUS", - "decimals": 9, - "name": "Zeus", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x4d4574f50dd8b9dbe623cf329dcc78d76935e610.png", - "aggregators": [ - "CoinGecko", - "1inch", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x0885f91c72a8de62a5349d4c89ca31b4ef650929": { - "address": "0x0885f91c72a8de62a5349d4c89ca31b4ef650929", - "symbol": "ALF", - "decimals": 18, - "name": "ALF TOKEN", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x0885f91c72a8de62a5349d4c89ca31b4ef650929.png", - "aggregators": [ - "CoinMarketCap", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0xae3013789c836345dfd63a9df713e3c23fb3a664": { - "address": "0xae3013789c836345dfd63a9df713e3c23fb3a664", - "symbol": "GEOFF", - "decimals": 18, - "name": "Geoff", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xae3013789c836345dfd63a9df713e3c23fb3a664.png", - "aggregators": [ - "CoinGecko", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0xabab3b0db38f2303acbcab672905e41a18e396d8": { - "address": "0xabab3b0db38f2303acbcab672905e41a18e396d8", - "symbol": "APEMAN", - "decimals": 9, - "name": "Ape Man", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xabab3b0db38f2303acbcab672905e41a18e396d8.png", - "aggregators": [ - "CoinMarketCap", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x65086e9928d297ebae6a7d24d8c3aea6f8f6b5d7": { - "address": "0x65086e9928d297ebae6a7d24d8c3aea6f8f6b5d7", - "symbol": "TOKI", - "decimals": 18, - "name": "Toki", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x65086e9928d297ebae6a7d24d8c3aea6f8f6b5d7.png", - "aggregators": [ - "CoinMarketCap", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x5dd1a7a369e8273371d2dbf9d83356057088082c": { - "address": "0x5dd1a7a369e8273371d2dbf9d83356057088082c", - "symbol": "FT", - "decimals": 18, - "name": "Flying Tulip", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x5dd1a7a369e8273371d2dbf9d83356057088082c.png", - "aggregators": [ - "CoinMarketCap", - "LiFi", - "Socket", - "Rubic", - "Rango" - ], - "occurrences": 5 - }, - "0x2e3c5e514eef46727de1fe44618027a9b70d92fc": { - "address": "0x2e3c5e514eef46727de1fe44618027a9b70d92fc", - "symbol": "VYUSD", - "decimals": 18, - "name": "VYUSD", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x2e3c5e514eef46727de1fe44618027a9b70d92fc.png", - "aggregators": ["CoinMarketCap", "LiFi", "Rubic", "Squid", "Rango"], - "occurrences": 5 - }, - "0xaca92e438df0b2401ff60da7e4337b687a2435da": { - "address": "0xaca92e438df0b2401ff60da7e4337b687a2435da", - "symbol": "MUSD", - "decimals": 6, - "name": "MetaMask USD", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xaca92e438df0b2401ff60da7e4337b687a2435da.png", - "aggregators": ["Metamask", "LiFi", "Socket", "Rubic", "Rango"], - "occurrences": 5 - }, - "0x8e4f1ce473b292d56934c36976356e3e22c35585": { - "address": "0x8e4f1ce473b292d56934c36976356e3e22c35585", - "symbol": "FIAS", - "decimals": 18, - "name": "FIAS", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x8e4f1ce473b292d56934c36976356e3e22c35585.png", - "aggregators": [ - "CoinGecko", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x7dc9748da8e762e569f9269f48f69a1a9f8ea761": { - "address": "0x7dc9748da8e762e569f9269f48f69a1a9f8ea761", - "symbol": "ZEUSD", - "decimals": 6, - "name": "ZeUSD", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x7dc9748da8e762e569f9269f48f69a1a9f8ea761.png", - "aggregators": ["CoinGecko", "LiFi", "Rubic", "Sonarwatch"], - "occurrences": 4 - }, - "0xe7c3d8c9a439fede00d2600032d5db0be71c3c29": { - "address": "0xe7c3d8c9a439fede00d2600032d5db0be71c3c29", - "symbol": "JPYC", - "decimals": 18, - "name": "JPYC", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xe7c3d8c9a439fede00d2600032d5db0be71c3c29.png", - "aggregators": ["CoinGecko", "1inch", "LiFi", "Rubic", "Rango"], - "occurrences": 5 - }, - "0xc50673edb3a7b94e8cad8a7d4e0cd68864e33edf": { - "address": "0xc50673edb3a7b94e8cad8a7d4e0cd68864e33edf", - "symbol": "PNKSTR", - "decimals": 18, - "name": "PunkStrategy", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xc50673edb3a7b94e8cad8a7d4e0cd68864e33edf.png", - "aggregators": ["CoinGecko", "1inch", "Rubic", "Squid", "Rango"], - "occurrences": 5 - }, - "0x699f088b5dddcafb7c4824db5b10b57b37cb0c66": { - "address": "0x699f088b5dddcafb7c4824db5b10b57b37cb0c66", - "symbol": "ENSO", - "decimals": 18, - "name": "Enso", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x699f088b5dddcafb7c4824db5b10b57b37cb0c66.png", - "aggregators": [ - "CoinMarketCap", - "LiFi", - "Socket", - "Rubic", - "Rango" - ], - "occurrences": 5 - }, - "0x4f5fa8f2d12e5eb780f6082dd656c565c48e0f24": { - "address": "0x4f5fa8f2d12e5eb780f6082dd656c565c48e0f24", - "symbol": "GUM", - "decimals": 18, - "name": "Gourmet Galaxy", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x4f5fa8f2d12e5eb780f6082dd656c565c48e0f24.png", - "aggregators": [ - "CoinMarketCap", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0xd19b72e027cd66bde41d8f60a13740a26c4be8f3": { - "address": "0xd19b72e027cd66bde41d8f60a13740a26c4be8f3", - "symbol": "SUIAI", - "decimals": 18, - "name": "SUI Agents", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xd19b72e027cd66bde41d8f60a13740a26c4be8f3.png", - "aggregators": [ - "CoinGecko", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0xdb99b0477574ac0b2d9c8cec56b42277da3fdb82": { - "address": "0xdb99b0477574ac0b2d9c8cec56b42277da3fdb82", - "symbol": "DECT", - "decimals": 18, - "name": "DEC Token", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xdb99b0477574ac0b2d9c8cec56b42277da3fdb82.png", - "aggregators": [ - "CoinGecko", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0xf6b1117ec07684d3958cad8beb1b302bfd21103f": { - "address": "0xf6b1117ec07684d3958cad8beb1b302bfd21103f", - "symbol": "TSLAON", - "decimals": 18, - "name": "Tesla (Ondo Tokenized)", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xf6b1117ec07684d3958cad8beb1b302bfd21103f.png", - "aggregators": ["CoinGecko", "LiFi", "Rubic", "Rango", "Ondo"], - "occurrences": 5, - "rwaData": { - "market": { - "nextOpen": "2026-05-18T20:01:00.000Z", - "nextClose": "2026-05-18T19:59:00.000Z" - }, - "nextPause": { - "start": null, - "end": null - }, - "ticker": "TSLA", - "instrumentType": "stock" - } - }, - "0xfedc5f4a6c38211c1338aa411018dfaf26612c08": { - "address": "0xfedc5f4a6c38211c1338aa411018dfaf26612c08", - "symbol": "SPYON", - "decimals": 18, - "name": "SPDR S&P 500 ETF (Ondo Tokenized)", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xfedc5f4a6c38211c1338aa411018dfaf26612c08.png", - "aggregators": ["CoinGecko", "LiFi", "Rubic", "Rango", "Ondo"], - "occurrences": 5, - "rwaData": { - "market": { - "nextOpen": "2026-05-18T20:01:00.000Z", - "nextClose": "2026-05-18T19:59:00.000Z" - }, - "nextPause": { - "start": null, - "end": null - }, - "ticker": "SPY", - "instrumentType": "stock" - } - }, - "0x0e397938c1aa0680954093495b70a9f5e2249aba": { - "address": "0x0e397938c1aa0680954093495b70a9f5e2249aba", - "symbol": "QQQON", - "decimals": 18, - "name": "Invesco QQQ (Ondo Tokenized)", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x0e397938c1aa0680954093495b70a9f5e2249aba.png", - "aggregators": ["CoinGecko", "LiFi", "Rubic", "Rango", "Ondo"], - "occurrences": 5, - "rwaData": { - "market": { - "nextOpen": "2026-05-18T20:01:00.000Z", - "nextClose": "2026-05-18T19:59:00.000Z" - }, - "nextPause": { - "start": null, - "end": null - }, - "ticker": "QQQ", - "instrumentType": "stock" - } - }, - "0xd166337499e176bbc38a1fbd113ab144e5bd2df7": { - "address": "0xd166337499e176bbc38a1fbd113ab144e5bd2df7", - "symbol": "SUSDAT", - "decimals": 18, - "name": "Saturn sUSDat", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xd166337499e176bbc38a1fbd113ab144e5bd2df7.png", - "aggregators": ["CoinGecko", "LiFi", "Socket", "Rubic", "Rango"], - "occurrences": 5 - }, - "0x488e0369f9bc5c40c002ea7c1fe4fd01a198801c": { - "address": "0x488e0369f9bc5c40c002ea7c1fe4fd01a198801c", - "symbol": "GOF", - "decimals": 18, - "name": "Golff", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x488e0369f9bc5c40c002ea7c1fe4fd01a198801c.png", - "aggregators": [ - "CoinMarketCap", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x668dbf100635f593a3847c0bdaf21f0a09380188": { - "address": "0x668dbf100635f593a3847c0bdaf21f0a09380188", - "symbol": "BNSD", - "decimals": 18, - "name": "BNSD Finance", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x668dbf100635f593a3847c0bdaf21f0a09380188.png", - "aggregators": [ - "CoinMarketCap", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x87de305311d5788e8da38d19bb427645b09cb4e5": { - "address": "0x87de305311d5788e8da38d19bb427645b09cb4e5", - "symbol": "VRX", - "decimals": 18, - "name": "Verox", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x87de305311d5788e8da38d19bb427645b09cb4e5.png", - "aggregators": [ - "CoinMarketCap", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x5d285f735998f36631f678ff41fb56a10a4d0429": { - "address": "0x5d285f735998f36631f678ff41fb56a10a4d0429", - "symbol": "MIX", - "decimals": 18, - "name": "MixMarvel", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x5d285f735998f36631f678ff41fb56a10a4d0429.png", - "aggregators": [ - "CoinMarketCap", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x3bbfb303842dd4a76da4c927be644e9cf3170afd": { - "address": "0x3bbfb303842dd4a76da4c927be644e9cf3170afd", - "symbol": "XCREDI", - "decimals": 18, - "name": "xCREDI", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x3bbfb303842dd4a76da4c927be644e9cf3170afd.png", - "aggregators": [ - "CoinGecko", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x8de39b057cc6522230ab19c0205080a8663331ef": { - "address": "0x8de39b057cc6522230ab19c0205080a8663331ef", - "symbol": "WOJAK", - "decimals": 18, - "name": "wojak", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x8de39b057cc6522230ab19c0205080a8663331ef.png", - "aggregators": ["CoinGecko", "1inch", "Socket", "Rubic", "Rango"], - "occurrences": 5 - }, - "0xddd6a0ecc3c6f6c102e5ea3d8af7b801d1a77ac8": { - "address": "0xddd6a0ecc3c6f6c102e5ea3d8af7b801d1a77ac8", - "symbol": "UNIX", - "decimals": 18, - "name": "UniX", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xddd6a0ecc3c6f6c102e5ea3d8af7b801d1a77ac8.png", - "aggregators": [ - "CoinMarketCap", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x49642110b712c1fd7261bc074105e9e44676c68f": { - "address": "0x49642110b712c1fd7261bc074105e9e44676c68f", - "symbol": "DINO", - "decimals": 18, - "name": "DinoLFG", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x49642110b712c1fd7261bc074105e9e44676c68f.png", - "aggregators": [ - "Metamask", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x487d62468282bd04ddf976631c23128a425555ee": { - "address": "0x487d62468282bd04ddf976631c23128a425555ee", - "symbol": "UPC", - "decimals": 5, - "name": "UPCX", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x487d62468282bd04ddf976631c23128a425555ee.png", - "aggregators": [ - "Metamask", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x781d201db8c837ea2aefea7394554071da45ff0f": { - "address": "0x781d201db8c837ea2aefea7394554071da45ff0f", - "symbol": "ATAI", - "decimals": 18, - "name": "ArtemisAI", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x781d201db8c837ea2aefea7394554071da45ff0f.png", - "aggregators": [ - "CoinGecko", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x808688c820ab080a6ff1019f03e5ec227d9b522b": { - "address": "0x808688c820ab080a6ff1019f03e5ec227d9b522b", - "symbol": "BAG", - "decimals": 18, - "name": "BAG", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x808688c820ab080a6ff1019f03e5ec227d9b522b.png", - "aggregators": [ - "Metamask", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x525574c899a7c877a11865339e57376092168258": { - "address": "0x525574c899a7c877a11865339e57376092168258", - "symbol": "GURU", - "decimals": 18, - "name": "Guru Network", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x525574c899a7c877a11865339e57376092168258.png", - "aggregators": [ - "CoinMarketCap", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x46fdcddfad7c72a621e8298d231033cc00e067c6": { - "address": "0x46fdcddfad7c72a621e8298d231033cc00e067c6", - "symbol": "DOGE", - "decimals": 18, - "name": "Department Of Government Efficiency", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x46fdcddfad7c72a621e8298d231033cc00e067c6.png", - "aggregators": [ - "CoinGecko", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0xe8fc52b1bb3a40fd8889c0f8f75879676310ddf0": { - "address": "0xe8fc52b1bb3a40fd8889c0f8f75879676310ddf0", - "symbol": "XZK", - "decimals": 18, - "name": "ExpandZK Token", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xe8fc52b1bb3a40fd8889c0f8f75879676310ddf0.png", - "aggregators": [ - "Metamask", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x38e382f74dfb84608f3c1f10187f6bef5951de93": { - "address": "0x38e382f74dfb84608f3c1f10187f6bef5951de93", - "symbol": "MUBI", - "decimals": 18, - "name": "MUBI", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x38e382f74dfb84608f3c1f10187f6bef5951de93.png", - "aggregators": [ - "Metamask", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x14778860e937f509e651192a90589de711fb88a9": { - "address": "0x14778860e937f509e651192a90589de711fb88a9", - "symbol": "CYBER", - "decimals": 18, - "name": "Cyber", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x14778860e937f509e651192a90589de711fb88a9.png", - "aggregators": [ - "Metamask", - "LiFi", - "Socket", - "Rubic", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x5026f006b85729a8b14553fae6af249ad16c9aab": { - "address": "0x5026f006b85729a8b14553fae6af249ad16c9aab", - "symbol": "WOJAK", - "decimals": 18, - "name": "Wojak", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x5026f006b85729a8b14553fae6af249ad16c9aab.png", - "aggregators": [ - "CoinGecko", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0xb841f365d5221bed66d60e69094418d8c2aa5a44": { - "address": "0xb841f365d5221bed66d60e69094418d8c2aa5a44", - "symbol": "DSTRX", - "decimals": 18, - "name": "Districts", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xb841f365d5221bed66d60e69094418d8c2aa5a44.png", - "aggregators": [ - "CoinGecko", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x0c1c1c109fe34733fca54b82d7b46b75cfb71f6e": { - "address": "0x0c1c1c109fe34733fca54b82d7b46b75cfb71f6e", - "symbol": "CHIP", - "decimals": 18, - "name": "USD.AI", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x0c1c1c109fe34733fca54b82d7b46b75cfb71f6e.png", - "aggregators": [ - "CoinMarketCap", - "LiFi", - "Socket", - "Rubic", - "Rango" - ], - "occurrences": 5 - }, - "0x53cce6d10e43d1b3d11872ad22ec2acd8d2537b8": { - "address": "0x53cce6d10e43d1b3d11872ad22ec2acd8d2537b8", - "symbol": "SMOL", - "decimals": 18, - "name": "SMOL", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x53cce6d10e43d1b3d11872ad22ec2acd8d2537b8.png", - "aggregators": [ - "CoinGecko", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x0b2b2b2076d95dda7817e785989fe353fe955ef9": { - "address": "0x0b2b2b2076d95dda7817e785989fe353fe955ef9", - "symbol": "SUSDAI", - "decimals": 18, - "name": "Staked USDai", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x0b2b2b2076d95dda7817e785989fe353fe955ef9.png", - "aggregators": ["CoinGecko", "LiFi", "Socket", "Rubic", "Rango"], - "occurrences": 5 - }, - "0xc9b53ab2679f573e480d01e0f49e2b5cfb7a3eab": { - "address": "0xc9b53ab2679f573e480d01e0f49e2b5cfb7a3eab", - "symbol": "WXTZ", - "decimals": 18, - "name": "WXTZ", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xc9b53ab2679f573e480d01e0f49e2b5cfb7a3eab.png", - "aggregators": [ - "CoinMarketCap", - "LiFi", - "Socket", - "Rubic", - "Rango" - ], - "occurrences": 5 - }, - "0x0b3eaead748facdb9d943d3407011f16eb17d0cf": { - "address": "0x0b3eaead748facdb9d943d3407011f16eb17d0cf", - "symbol": "PMX", - "decimals": 18, - "name": "Primex Finance", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x0b3eaead748facdb9d943d3407011f16eb17d0cf.png", - "aggregators": ["CoinGecko", "Socket", "Rubic", "Sonarwatch"], - "occurrences": 4 - }, - "0x6418c0dd099a9fda397c766304cdd918233e8847": { - "address": "0x6418c0dd099a9fda397c766304cdd918233e8847", - "symbol": "PENGU", - "decimals": 18, - "name": "PENGU", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x6418c0dd099a9fda397c766304cdd918233e8847.png", - "aggregators": [ - "CoinMarketCap", - "LiFi", - "Socket", - "Rubic", - "Rango" - ], - "occurrences": 5 - }, - "0x6c76de483f1752ac8473e2b4983a873991e70da7": { - "address": "0x6c76de483f1752ac8473e2b4983a873991e70da7", - "symbol": "BTR", - "decimals": 18, - "name": "Bitlayer", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x6c76de483f1752ac8473e2b4983a873991e70da7.png", - "aggregators": [ - "CoinMarketCap", - "LiFi", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x5fa487bca6158c64046b2813623e20755091da0b": { - "address": "0x5fa487bca6158c64046b2813623e20755091da0b", - "symbol": "THBILL", - "decimals": 6, - "name": "THBILL", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x5fa487bca6158c64046b2813623e20755091da0b.png", - "aggregators": ["CoinGecko", "LiFi", "Socket", "Rubic", "Rango"], - "occurrences": 5 - }, - "0xb4444468e444f89e1c2cac2f1d3ee7e336cbd1f5": { - "address": "0xb4444468e444f89e1c2cac2f1d3ee7e336cbd1f5", - "symbol": "RZR", - "decimals": 18, - "name": "Rezerve.money", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xb4444468e444f89e1c2cac2f1d3ee7e336cbd1f5.png", - "aggregators": [ - "CoinMarketCap", - "LiFi", - "Socket", - "Rubic", - "Rango" - ], - "occurrences": 5 - }, - "0x4b948d64de1f71fcd12fb586f4c776421a35b3ee": { - "address": "0x4b948d64de1f71fcd12fb586f4c776421a35b3ee", - "symbol": "0G", - "decimals": 18, - "name": "0G", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x4b948d64de1f71fcd12fb586f4c776421a35b3ee.png", - "aggregators": [ - "CoinMarketCap", - "LiFi", - "Socket", - "Rubic", - "Rango" - ], - "occurrences": 5 - }, - "0x0a1a1a107e45b7ced86833863f482bc5f4ed82ef": { - "address": "0x0a1a1a107e45b7ced86833863f482bc5f4ed82ef", - "symbol": "USDAI", - "decimals": 18, - "name": "USDai", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x0a1a1a107e45b7ced86833863f482bc5f4ed82ef.png", - "aggregators": ["CoinGecko", "LiFi", "Socket", "Rubic", "Rango"], - "occurrences": 5 - }, - "0xff7f8f301f7a706e3cfd3d2275f5dc0b9ee8009b": { - "address": "0xff7f8f301f7a706e3cfd3d2275f5dc0b9ee8009b", - "symbol": "FOLKS", - "decimals": 6, - "name": "FOLKS", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xff7f8f301f7a706e3cfd3d2275f5dc0b9ee8009b.png", - "aggregators": ["CoinMarketCap", "1inch", "LiFi", "Rubic", "Rango"], - "occurrences": 5 - }, - "0x14862c03a0caccc1ab328b062e64e31b2a1afcd7": { - "address": "0x14862c03a0caccc1ab328b062e64e31b2a1afcd7", - "symbol": "SEDA", - "decimals": 18, - "name": "SEDA", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x14862c03a0caccc1ab328b062e64e31b2a1afcd7.png", - "aggregators": [ - "CoinMarketCap", - "LiFi", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x4d4eb0e8b160f6ebf63cc6d36060ffec09301b42": { - "address": "0x4d4eb0e8b160f6ebf63cc6d36060ffec09301b42", - "symbol": "LITKEY", - "decimals": 18, - "name": "Lit Protocol", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x4d4eb0e8b160f6ebf63cc6d36060ffec09301b42.png", - "aggregators": [ - "CoinMarketCap", - "LiFi", - "Socket", - "Rubic", - "Rango" - ], - "occurrences": 5 - }, - "0x24a3d725c37a8d1a66eb87f0e5d07fe67c120035": { - "address": "0x24a3d725c37a8d1a66eb87f0e5d07fe67c120035", - "symbol": "EDEN", - "decimals": 18, - "name": "EDEN", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x24a3d725c37a8d1a66eb87f0e5d07fe67c120035.png", - "aggregators": [ - "CoinMarketCap", - "LiFi", - "Socket", - "Rubic", - "Rango" - ], - "occurrences": 5 - }, - "0x12b19d3e2ccc14da04fae33e63652ce469b3f2fd": { - "address": "0x12b19d3e2ccc14da04fae33e63652ce469b3f2fd", - "symbol": "GRID", - "decimals": 12, - "name": "GridPlus", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x12b19d3e2ccc14da04fae33e63652ce469b3f2fd.png", - "aggregators": ["Metamask", "LiFi", "Rubic", "Rango", "Bancor"], - "occurrences": 5 - }, - "0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6": { - "address": "0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6", - "symbol": "RDN", - "decimals": 18, - "name": "Raiden Network Token", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6.png", - "aggregators": ["Metamask", "LiFi", "Rubic", "Rango", "Bancor"], - "occurrences": 5 - }, - "0x1234567461d3f8db7496581774bd869c83d51c93": { - "address": "0x1234567461d3f8db7496581774bd869c83d51c93", - "symbol": "CAT", - "decimals": 18, - "name": "BitClave", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x1234567461d3f8db7496581774bd869c83d51c93.png", - "aggregators": ["Metamask", "Socket", "Rubic", "Rango", "Bancor"], - "occurrences": 5 - }, - "0x5adc961d6ac3f7062d2ea45fefb8d8167d44b190": { - "address": "0x5adc961d6ac3f7062d2ea45fefb8d8167d44b190", - "symbol": "DTH", - "decimals": 18, - "name": "Dether", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x5adc961d6ac3f7062d2ea45fefb8d8167d44b190.png", - "aggregators": ["Metamask", "1inch", "LiFi", "Rubic", "Rango"], - "occurrences": 5 - }, - "0xbc86727e770de68b1060c91f6bb6945c73e10388": { - "address": "0xbc86727e770de68b1060c91f6bb6945c73e10388", - "symbol": "XNK", - "decimals": 18, - "name": "Ink Protocol", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xbc86727e770de68b1060c91f6bb6945c73e10388.png", - "aggregators": ["Metamask", "Socket", "Rubic", "Rango", "Bancor"], - "occurrences": 5 - }, - "0xfcf8eda095e37a41e002e266daad7efc1579bc0a": { - "address": "0xfcf8eda095e37a41e002e266daad7efc1579bc0a", - "symbol": "FLEX", - "decimals": 18, - "name": "Flex Coin", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xfcf8eda095e37a41e002e266daad7efc1579bc0a.png", - "aggregators": [ - "CoinMarketCap", - "Socket", - "Rubic", - "Rango", - "SushiSwap" - ], - "occurrences": 5 - }, - "0xe48972fcd82a274411c01834e2f031d4377fa2c0": { - "address": "0xe48972fcd82a274411c01834e2f031d4377fa2c0", - "symbol": "2KEY", - "decimals": 18, - "name": "TwoKeyEconomy", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xe48972fcd82a274411c01834e2f031d4377fa2c0.png", - "aggregators": ["Metamask", "1inch", "LiFi", "Rubic", "Rango"], - "occurrences": 5 - }, - "0x4d953cf077c0c95ba090226e59a18fcf97db44ec": { - "address": "0x4d953cf077c0c95ba090226e59a18fcf97db44ec", - "symbol": "MINI", - "decimals": 18, - "name": "MiniSwap", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x4d953cf077c0c95ba090226e59a18fcf97db44ec.png", - "aggregators": [ - "CoinMarketCap", - "LiFi", - "Socket", - "Rubic", - "Rango" - ], - "occurrences": 5 - }, - "0xb6c4267c4877bb0d6b1685cfd85b0fbe82f105ec": { - "address": "0xb6c4267c4877bb0d6b1685cfd85b0fbe82f105ec", - "symbol": "REL", - "decimals": 18, - "name": "REL", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xb6c4267c4877bb0d6b1685cfd85b0fbe82f105ec.png", - "aggregators": [ - "CoinMarketCap", - "1inch", - "Socket", - "Rubic", - "Rango" - ], - "occurrences": 5 - }, - "0x9c2dc0c3cc2badde84b0025cf4df1c5af288d835": { - "address": "0x9c2dc0c3cc2badde84b0025cf4df1c5af288d835", - "symbol": "COR", - "decimals": 18, - "name": "Coreto", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x9c2dc0c3cc2badde84b0025cf4df1c5af288d835.png", - "aggregators": [ - "Metamask", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x92e187a03b6cd19cb6af293ba17f2745fd2357d5": { - "address": "0x92e187a03b6cd19cb6af293ba17f2745fd2357d5", - "symbol": "DUCK", - "decimals": 18, - "name": "Unit Protocol", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x92e187a03b6cd19cb6af293ba17f2745fd2357d5.png", - "aggregators": [ - "CoinMarketCap", - "Socket", - "Rubic", - "Rango", - "SushiSwap" - ], - "occurrences": 5 - }, - "0xdcb01cc464238396e213a6fdd933e36796eaff9f": { - "address": "0xdcb01cc464238396e213a6fdd933e36796eaff9f", - "symbol": "YLD", - "decimals": 18, - "name": "Yield", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xdcb01cc464238396e213a6fdd933e36796eaff9f.png", - "aggregators": [ - "Metamask", - "LiFi", - "TrustWallet", - "Socket", - "Rubic" - ], - "occurrences": 5 - }, - "0x66c0dded8433c9ea86c8cf91237b14e10b4d70b7": { - "address": "0x66c0dded8433c9ea86c8cf91237b14e10b4d70b7", - "symbol": "MARS", - "decimals": 18, - "name": "MarsToken", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x66c0dded8433c9ea86c8cf91237b14e10b4d70b7.png", - "aggregators": [ - "CoinMarketCap", - "Socket", - "Rubic", - "Rango", - "SushiSwap" - ], - "occurrences": 5 - }, - "0x4c25bdf026ea05f32713f00f73ca55857fbf6342": { - "address": "0x4c25bdf026ea05f32713f00f73ca55857fbf6342", - "symbol": "FONT", - "decimals": 18, - "name": "Font", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x4c25bdf026ea05f32713f00f73ca55857fbf6342.png", - "aggregators": [ - "CoinMarketCap", - "1inch", - "Rubic", - "Rango", - "SushiSwap" - ], - "occurrences": 5 - }, - "0x32e6c34cd57087abbd59b5a4aecc4cb495924356": { - "address": "0x32e6c34cd57087abbd59b5a4aecc4cb495924356", - "symbol": "BTBS", - "decimals": 18, - "name": "BitBase", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x32e6c34cd57087abbd59b5a4aecc4cb495924356.png", - "aggregators": ["Metamask", "1inch", "LiFi", "Rubic", "Rango"], - "occurrences": 5 - }, - "0xa01199c61841fce3b3dafb83fefc1899715c8756": { - "address": "0xa01199c61841fce3b3dafb83fefc1899715c8756", - "symbol": "CIRUS", - "decimals": 18, - "name": "Cirus", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xa01199c61841fce3b3dafb83fefc1899715c8756.png", - "aggregators": [ - "CoinMarketCap", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x000000c396558ffbab5ea628f39658bdf61345b3": { - "address": "0x000000c396558ffbab5ea628f39658bdf61345b3", - "symbol": "BUNNI", - "decimals": 18, - "name": "Bunni", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x000000c396558ffbab5ea628f39658bdf61345b3.png", - "aggregators": [ - "CoinMarketCap", - "LiFi", - "Rubic", - "Squid", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x341c05c0e9b33c0e38d64de76516b2ce970bb3be": { - "address": "0x341c05c0e9b33c0e38d64de76516b2ce970bb3be", - "symbol": "DSETH", - "decimals": 18, - "name": "Diversified Staked ETH Index (dsETH)", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x341c05c0e9b33c0e38d64de76516b2ce970bb3be.png", - "aggregators": [ - "CoinMarketCap", - "LiFi", - "Socket", - "Rubic", - "SushiSwap" - ], - "occurrences": 5 - }, - "0xa9f94f19abf3089d535b1de2cc058a365ea716c7": { - "address": "0xa9f94f19abf3089d535b1de2cc058a365ea716c7", - "symbol": "AITA", - "decimals": 18, - "name": "AITA", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xa9f94f19abf3089d535b1de2cc058a365ea716c7.png", - "aggregators": [ - "Metamask", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0xe07a836f5201a46f376934a8a4a17185df1708c4": { - "address": "0xe07a836f5201a46f376934a8a4a17185df1708c4", - "symbol": "CHAMPZ", - "decimals": 8, - "name": "Champignons of Arborethia", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xe07a836f5201a46f376934a8a4a17185df1708c4.png", - "aggregators": [ - "CoinMarketCap", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x12652c6d93fdb6f4f37d48a8687783c782bb0d10": { - "address": "0x12652c6d93fdb6f4f37d48a8687783c782bb0d10", - "symbol": "NGL", - "decimals": 18, - "name": "Entangle", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x12652c6d93fdb6f4f37d48a8687783c782bb0d10.png", - "aggregators": [ - "Metamask", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0xdc300854b0ef52650057158e8a33afe703525539": { - "address": "0xdc300854b0ef52650057158e8a33afe703525539", - "symbol": "BMR", - "decimals": 18, - "name": "BetMore Casino", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xdc300854b0ef52650057158e8a33afe703525539.png", - "aggregators": [ - "CoinMarketCap", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x2025b2f4c7abe6dcb3843c62c32dfa14990a6269": { - "address": "0x2025b2f4c7abe6dcb3843c62c32dfa14990a6269", - "symbol": "SNEK", - "decimals": 9, - "name": "ETH Snek", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x2025b2f4c7abe6dcb3843c62c32dfa14990a6269.png", - "aggregators": [ - "CoinMarketCap", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0xc04207ebf4bbbd81c14596b78ece7cd8c17fb5cf": { - "address": "0xc04207ebf4bbbd81c14596b78ece7cd8c17fb5cf", - "symbol": "BSEN", - "decimals": 18, - "name": "Baby Sen by Sentio", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xc04207ebf4bbbd81c14596b78ece7cd8c17fb5cf.png", - "aggregators": [ - "CoinMarketCap", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0xd6f8ab9b0f0a06a87ec2599c97e8b867b0fa7814": { - "address": "0xd6f8ab9b0f0a06a87ec2599c97e8b867b0fa7814", - "symbol": "DATBOI", - "decimals": 18, - "name": "Dat Boi", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xd6f8ab9b0f0a06a87ec2599c97e8b867b0fa7814.png", - "aggregators": [ - "CoinMarketCap", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x0f48e776a4d983c0dddf4c0c946d66e3786f134f": { - "address": "0x0f48e776a4d983c0dddf4c0c946d66e3786f134f", - "symbol": "XETRA", - "decimals": 9, - "name": "Xetra AI", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x0f48e776a4d983c0dddf4c0c946d66e3786f134f.png", - "aggregators": [ - "CoinMarketCap", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0xddbcdd8637d5cedd15eeee398108fca05a71b32b": { - "address": "0xddbcdd8637d5cedd15eeee398108fca05a71b32b", - "symbol": "CRAI", - "decimals": 18, - "name": "Cryptify AI", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xddbcdd8637d5cedd15eeee398108fca05a71b32b.png", - "aggregators": [ - "CoinMarketCap", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x247e3866f743cce280433b865a669c9361421ecc": { - "address": "0x247e3866f743cce280433b865a669c9361421ecc", - "symbol": "TXN", - "decimals": 9, - "name": "TXNScan", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x247e3866f743cce280433b865a669c9361421ecc.png", - "aggregators": [ - "CoinMarketCap", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x1010107b4757c915bc2f1ecd08c85d1bb0be92e0": { - "address": "0x1010107b4757c915bc2f1ecd08c85d1bb0be92e0", - "symbol": "BRAIN", - "decimals": 18, - "name": "Brain Frog", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x1010107b4757c915bc2f1ecd08c85d1bb0be92e0.png", - "aggregators": [ - "CoinMarketCap", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0xf2478a732e5232acd0acef5e410e230b49b35a12": { - "address": "0xf2478a732e5232acd0acef5e410e230b49b35a12", - "symbol": "ROUGE", - "decimals": 9, - "name": "Rouge Studio", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xf2478a732e5232acd0acef5e410e230b49b35a12.png", - "aggregators": [ - "CoinMarketCap", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x525536d71848f21b66da0d239546c50ee4c1a358": { - "address": "0x525536d71848f21b66da0d239546c50ee4c1a358", - "symbol": "CTF", - "decimals": 9, - "name": "Crypto Task Force", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x525536d71848f21b66da0d239546c50ee4c1a358.png", - "aggregators": [ - "CoinMarketCap", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x9b79ea20a8258649401f8c58973281081d905b9f": { - "address": "0x9b79ea20a8258649401f8c58973281081d905b9f", - "symbol": "N3", - "decimals": 18, - "name": "Network3", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x9b79ea20a8258649401f8c58973281081d905b9f.png", - "aggregators": [ - "CoinMarketCap", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x1a4e7febd24b6689704b10685857d8b30885f05e": { - "address": "0x1a4e7febd24b6689704b10685857d8b30885f05e", - "symbol": "BEATAI", - "decimals": 9, - "name": "eBeat AI", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x1a4e7febd24b6689704b10685857d8b30885f05e.png", - "aggregators": [ - "CoinMarketCap", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0xafb942e2a12ac0861ad81b5c37682f588912c1d9": { - "address": "0xafb942e2a12ac0861ad81b5c37682f588912c1d9", - "symbol": "PRIVIX", - "decimals": 9, - "name": "Privix", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xafb942e2a12ac0861ad81b5c37682f588912c1d9.png", - "aggregators": [ - "CoinMarketCap", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x44017598f2af1bd733f9d87b5017b4e7c1b28dde": { - "address": "0x44017598f2af1bd733f9d87b5017b4e7c1b28dde", - "symbol": "STKATOM", - "decimals": 6, - "name": "pSTAKE Staked Atom", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x44017598f2af1bd733f9d87b5017b4e7c1b28dde.png", - "aggregators": ["1inch", "Socket", "Rubic", "Rango", "SushiSwap"], - "occurrences": 5 - }, - "0xc5bddf9843308380375a611c18b50fb9341f502a": { - "address": "0xc5bddf9843308380375a611c18b50fb9341f502a", - "symbol": "YVECRV-DAO", - "decimals": 18, - "name": "veCRV-DAO yVault", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xc5bddf9843308380375a611c18b50fb9341f502a.png", - "aggregators": ["1inch", "Socket", "Rubic", "Rango", "SushiSwap"], - "occurrences": 5 - }, - "0xa15c7ebe1f07caf6bff097d8a589fb8ac49ae5b3": { - "address": "0xa15c7ebe1f07caf6bff097d8a589fb8ac49ae5b3", - "symbol": "NPXS", - "decimals": 18, - "name": "Pundi X Token", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xa15c7ebe1f07caf6bff097d8a589fb8ac49ae5b3.png", - "aggregators": ["Socket", "Rubic", "Rango", "Sonarwatch", "Bancor"], - "occurrences": 5 - }, - "0x158079ee67fce2f58472a96584a73c7ab9ac95c1": { - "address": "0x158079ee67fce2f58472a96584a73c7ab9ac95c1", - "symbol": "CREP", - "decimals": 8, - "name": "Compound Augur", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x158079ee67fce2f58472a96584a73c7ab9ac95c1.png", - "aggregators": ["CoinMarketCap", "LiFi", "Rubic", "Rango"], - "occurrences": 4 - }, - "0x83984d6142934bb535793a82adb0a46ef0f66b6d": { - "address": "0x83984d6142934bb535793a82adb0a46ef0f66b6d", - "symbol": "REM", - "decimals": 4, - "name": "REMME token", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x83984d6142934bb535793a82adb0a46ef0f66b6d.png", - "aggregators": ["CoinMarketCap", "Rubic", "Rango", "Bancor"], - "occurrences": 4 - }, - "0xdb05ea0877a2622883941b939f0bb11d1ac7c400": { - "address": "0xdb05ea0877a2622883941b939f0bb11d1ac7c400", - "symbol": "OPCT", - "decimals": 18, - "name": "Opacity", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xdb05ea0877a2622883941b939f0bb11d1ac7c400.png", - "aggregators": ["Metamask", "Socket", "Rubic", "Rango"], - "occurrences": 4 - }, - "0xcbd55d4ffc43467142761a764763652b48b969ff": { - "address": "0xcbd55d4ffc43467142761a764763652b48b969ff", - "symbol": "ASTRO", - "decimals": 18, - "name": "AstroTools", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xcbd55d4ffc43467142761a764763652b48b969ff.png", - "aggregators": ["CoinMarketCap", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0x9a0aba393aac4dfbff4333b06c407458002c6183": { - "address": "0x9a0aba393aac4dfbff4333b06c407458002c6183", - "symbol": "AC", - "decimals": 18, - "name": "ACoconut", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x9a0aba393aac4dfbff4333b06c407458002c6183.png", - "aggregators": ["CoinMarketCap", "LiFi", "Socket", "Rubic"], - "occurrences": 4 - }, - "0xe50e009ddb1a4d8ec668eac9d8b2df1f96348707": { - "address": "0xe50e009ddb1a4d8ec668eac9d8b2df1f96348707", - "symbol": "CTRL", - "decimals": 18, - "name": "Ctrl", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xe50e009ddb1a4d8ec668eac9d8b2df1f96348707.png", - "aggregators": ["CoinMarketCap", "Socket", "Rubic", "Sonarwatch"], - "occurrences": 4 - }, - "0x1614f18fc94f47967a3fbe5ffcd46d4e7da3d787": { - "address": "0x1614f18fc94f47967a3fbe5ffcd46d4e7da3d787", - "symbol": "PAID", - "decimals": 18, - "name": "PAID Network", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x1614f18fc94f47967a3fbe5ffcd46d4e7da3d787.png", - "aggregators": ["LiFi", "TrustWallet", "Rubic", "Rango"], - "occurrences": 4 - }, - "0x94d863173ee77439e4292284ff13fad54b3ba182": { - "address": "0x94d863173ee77439e4292284ff13fad54b3ba182", - "symbol": "ADEL", - "decimals": 18, - "name": "Akropolis Delphi", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x94d863173ee77439e4292284ff13fad54b3ba182.png", - "aggregators": ["CoinMarketCap", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x0d88ed6e74bbfd96b831231638b66c05571e824f": { - "address": "0x0d88ed6e74bbfd96b831231638b66c05571e824f", - "symbol": "AVT", - "decimals": 18, - "name": "Aventus", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x0d88ed6e74bbfd96b831231638b66c05571e824f.png", - "aggregators": ["Metamask", "Socket", "Sonarwatch"], - "occurrences": 3 - }, - "0x0c572544a4ee47904d54aaa6a970af96b6f00e1b": { - "address": "0x0c572544a4ee47904d54aaa6a970af96b6f00e1b", - "symbol": "WAS", - "decimals": 18, - "name": "Wasder", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x0c572544a4ee47904d54aaa6a970af96b6f00e1b.png", - "aggregators": ["CoinMarketCap", "Rubic", "Sonarwatch"], - "occurrences": 3 - }, - "0x70e8de73ce538da2beed35d14187f6959a8eca96": { - "address": "0x70e8de73ce538da2beed35d14187f6959a8eca96", - "symbol": "XSGD", - "decimals": 6, - "name": "XSGD", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x70e8de73ce538da2beed35d14187f6959a8eca96.png", - "aggregators": [ - "CoinMarketCap", - "1inch", - "LiFi", - "TrustWallet", - "Socket", - "Rubic", - "Squid", - "Rango", - "Sonarwatch" - ], - "occurrences": 9 - }, - "0x6f40d4a6237c257fff2db00fa0510deeecd303eb": { - "address": "0x6f40d4a6237c257fff2db00fa0510deeecd303eb", - "symbol": "INST", - "decimals": 18, - "name": "Fluid", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x6f40d4a6237c257fff2db00fa0510deeecd303eb.png", - "aggregators": [ - "CoinMarketCap", - "1inch", - "LiFi", - "Socket", - "Rubic", - "Squid", - "Rango", - "Sonarwatch", - "Bancor" - ], - "occurrences": 9 - }, - "0x5b7533812759b45c2b44c19e320ba2cd2681b542": { - "address": "0x5b7533812759b45c2b44c19e320ba2cd2681b542", - "symbol": "AGIX", - "decimals": 8, - "name": "SingularityNET Token", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x5b7533812759b45c2b44c19e320ba2cd2681b542.png", - "aggregators": [ - "CoinMarketCap", - "1inch", - "LiFi", - "TrustWallet", - "Socket", - "Rubic", - "Squid", - "Rango", - "Sonarwatch" - ], - "occurrences": 9 - }, - "0xb23d80f5fefcddaa212212f028021b41ded428cf": { - "address": "0xb23d80f5fefcddaa212212f028021b41ded428cf", - "symbol": "PRIME", - "decimals": 18, - "name": "Echelon Prime", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xb23d80f5fefcddaa212212f028021b41ded428cf.png", - "aggregators": [ - "CoinGecko", - "1inch", - "LiFi", - "Socket", - "Rubic", - "Squid", - "Rango", - "Sonarwatch" - ], - "occurrences": 8 - }, - "0xe0f63a424a4439cbe457d80e4f4b51ad25b2c56c": { - "address": "0xe0f63a424a4439cbe457d80e4f4b51ad25b2c56c", - "symbol": "SPX", - "decimals": 8, - "name": "SPX6900", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xe0f63a424a4439cbe457d80e4f4b51ad25b2c56c.png", - "aggregators": [ - "CoinMarketCap", - "1inch", - "LiFi", - "Socket", - "Rubic", - "Squid", - "Rango", - "Sonarwatch" - ], - "occurrences": 8 - }, - "0x68749665ff8d2d112fa859aa293f07a622782f38": { - "address": "0x68749665ff8d2d112fa859aa293f07a622782f38", - "symbol": "XAUT", - "decimals": 6, - "name": "Tether Gold", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x68749665ff8d2d112fa859aa293f07a622782f38.png", - "aggregators": [ - "CoinMarketCap", - "1inch", - "LiFi", - "Socket", - "Rubic", - "Squid", - "Rango", - "Sonarwatch" - ], - "occurrences": 8 - }, - "0x06a01a4d579479dd5d884ebf61a31727a3d8d442": { - "address": "0x06a01a4d579479dd5d884ebf61a31727a3d8d442", - "symbol": "SKEY", - "decimals": 8, - "name": "SmartKey", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x06a01a4d579479dd5d884ebf61a31727a3d8d442.png", - "aggregators": [ - "CoinMarketCap", - "1inch", - "LiFi", - "TrustWallet", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 8 - }, - "0x9be89d2a4cd102d8fecc6bf9da793be995c22541": { - "address": "0x9be89d2a4cd102d8fecc6bf9da793be995c22541", - "symbol": "BBTC", - "decimals": 8, - "name": "Binance Wrapped BTC", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x9be89d2a4cd102d8fecc6bf9da793be995c22541.png", - "aggregators": [ - "CoinGecko", - "1inch", - "LiFi", - "TrustWallet", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 8 - }, - "0x9ea3b5b4ec044b70375236a281986106457b20ef": { - "address": "0x9ea3b5b4ec044b70375236a281986106457b20ef", - "symbol": "DELTA", - "decimals": 18, - "name": "Delta Financial", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x9ea3b5b4ec044b70375236a281986106457b20ef.png", - "aggregators": [ - "CoinMarketCap", - "LiFi", - "TrustWallet", - "Socket", - "Rubic", - "Squid", - "Sonarwatch", - "SushiSwap" - ], - "occurrences": 8 - }, - "0x2d94aa3e47d9d5024503ca8491fce9a2fb4da198": { - "address": "0x2d94aa3e47d9d5024503ca8491fce9a2fb4da198", - "symbol": "BANK/BANKLESS", - "decimals": 18, - "name": "Bankless Token", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x2d94aa3e47d9d5024503ca8491fce9a2fb4da198.png", - "aggregators": [ - "CoinMarketCap", - "1inch", - "LiFi", - "Socket", - "Rubic", - "Rango", - "Sonarwatch", - "SushiSwap" - ], - "occurrences": 8 - }, - "0x66a1e37c9b0eaddca17d3662d6c05f4decf3e110": { - "address": "0x66a1e37c9b0eaddca17d3662d6c05f4decf3e110", - "symbol": "USR", - "decimals": 18, - "name": "Resolv USR", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x66a1e37c9b0eaddca17d3662d6c05f4decf3e110.png", - "aggregators": [ - "CoinMarketCap", - "1inch", - "LiFi", - "Socket", - "Rubic", - "Squid", - "Rango", - "Sonarwatch" - ], - "occurrences": 8 - }, - "0x269616d549d7e8eaa82dfb17028d0b212d11232a": { - "address": "0x269616d549d7e8eaa82dfb17028d0b212d11232a", - "symbol": "PUNK", - "decimals": 18, - "name": "Punk Vault NFTX", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x269616d549d7e8eaa82dfb17028d0b212d11232a.png", - "aggregators": [ - "CoinGecko", - "1inch", - "LiFi", - "Socket", - "Rubic", - "Squid", - "Rango", - "Sonarwatch" - ], - "occurrences": 8 - }, - "0x8afe4055ebc86bd2afb3940c0095c9aca511d852": { - "address": "0x8afe4055ebc86bd2afb3940c0095c9aca511d852", - "symbol": "AIUS", - "decimals": 18, - "name": "Arbius", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x8afe4055ebc86bd2afb3940c0095c9aca511d852.png", - "aggregators": [ - "CoinMarketCap", - "LiFi", - "Socket", - "Rubic", - "Squid", - "Rango", - "Sonarwatch", - "SushiSwap" - ], - "occurrences": 8 - }, - "0x8be3460a480c80728a8c4d7a5d5303c85ba7b3b9": { - "address": "0x8be3460a480c80728a8c4d7a5d5303c85ba7b3b9", - "symbol": "SENA", - "decimals": 18, - "name": "Ethena Staked ENA", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x8be3460a480c80728a8c4d7a5d5303c85ba7b3b9.png", - "aggregators": [ - "CoinGecko", - "1inch", - "LiFi", - "Socket", - "Rubic", - "Squid", - "Rango", - "Sonarwatch" - ], - "occurrences": 8 - }, - "0x96f6ef951840721adbf46ac996b59e0235cb985c": { - "address": "0x96f6ef951840721adbf46ac996b59e0235cb985c", - "symbol": "USDY", - "decimals": 18, - "name": "Ondo US Dollar Yield", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x96f6ef951840721adbf46ac996b59e0235cb985c.png", - "aggregators": [ - "CoinMarketCap", - "1inch", - "LiFi", - "Socket", - "Rubic", - "Squid", - "Rango", - "Sonarwatch" - ], - "occurrences": 8 - }, - "0x9ce84f6a69986a83d92c324df10bc8e64771030f": { - "address": "0x9ce84f6a69986a83d92c324df10bc8e64771030f", - "symbol": "CHEX", - "decimals": 18, - "name": "CHEX Token", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x9ce84f6a69986a83d92c324df10bc8e64771030f.png", - "aggregators": [ - "CoinMarketCap", - "1inch", - "LiFi", - "Socket", - "Rubic", - "Squid", - "Rango", - "Sonarwatch" - ], - "occurrences": 8 - }, - "0xa95c5ebb86e0de73b4fb8c47a45b792cfea28c23": { - "address": "0xa95c5ebb86e0de73b4fb8c47a45b792cfea28c23", - "symbol": "SDL", - "decimals": 18, - "name": "stake.link", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xa95c5ebb86e0de73b4fb8c47a45b792cfea28c23.png", - "aggregators": [ - "CoinMarketCap", - "1inch", - "LiFi", - "Socket", - "Rubic", - "Rango", - "Sonarwatch", - "SushiSwap" - ], - "occurrences": 8 - }, - "0xa150db9b1fa65b44799d4dd949d922c0a33ee606": { - "address": "0xa150db9b1fa65b44799d4dd949d922c0a33ee606", - "symbol": "DRC", - "decimals": 0, - "name": "Digital Reserve Currency", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xa150db9b1fa65b44799d4dd949d922c0a33ee606.png", - "aggregators": [ - "CoinMarketCap", - "1inch", - "LiFi", - "Socket", - "Rubic", - "Rango", - "Sonarwatch", - "Bancor" - ], - "occurrences": 8 - }, - "0x8ed97a637a790be1feff5e888d43629dc05408f6": { - "address": "0x8ed97a637a790be1feff5e888d43629dc05408f6", - "symbol": "NPC", - "decimals": 18, - "name": "Non Playable Coin", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x8ed97a637a790be1feff5e888d43629dc05408f6.png", - "aggregators": [ - "CoinMarketCap", - "1inch", - "LiFi", - "Socket", - "Rubic", - "Squid", - "Rango", - "Sonarwatch" - ], - "occurrences": 8 - }, - "0xa8c8cfb141a3bb59fea1e2ea6b79b5ecbcd7b6ca": { - "address": "0xa8c8cfb141a3bb59fea1e2ea6b79b5ecbcd7b6ca", - "symbol": "NOIA", - "decimals": 18, - "name": "Syntropy", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xa8c8cfb141a3bb59fea1e2ea6b79b5ecbcd7b6ca.png", - "aggregators": [ - "CoinMarketCap", - "1inch", - "LiFi", - "TrustWallet", - "Socket", - "Rubic", - "Rango", - "Bancor" - ], - "occurrences": 8 - }, - "0x72e4f9f808c49a2a61de9c5896298920dc4eeea9": { - "address": "0x72e4f9f808c49a2a61de9c5896298920dc4eeea9", - "symbol": "BITCOIN", - "decimals": 8, - "name": "HarryPotterObamaSonic10Inu ETH", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x72e4f9f808c49a2a61de9c5896298920dc4eeea9.png", - "aggregators": [ - "CoinGecko", - "LiFi", - "Socket", - "Rubic", - "Squid", - "Rango", - "Sonarwatch" - ], - "occurrences": 7 - }, - "0xaaee1a9723aadb7afa2810263653a34ba2c21c7a": { - "address": "0xaaee1a9723aadb7afa2810263653a34ba2c21c7a", - "symbol": "MOG", - "decimals": 18, - "name": "Mog Coin", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xaaee1a9723aadb7afa2810263653a34ba2c21c7a.png", - "aggregators": [ - "CoinMarketCap", - "1inch", - "Socket", - "Rubic", - "Squid", - "Rango", - "Sonarwatch" - ], - "occurrences": 7 - }, - "0x3073f7aaa4db83f95e9fff17424f71d4751a3073": { - "address": "0x3073f7aaa4db83f95e9fff17424f71d4751a3073", - "symbol": "MOVE", - "decimals": 8, - "name": "Movement", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x3073f7aaa4db83f95e9fff17424f71d4751a3073.png", - "aggregators": [ - "CoinMarketCap", - "LiFi", - "Socket", - "Rubic", - "Squid", - "Rango", - "Sonarwatch" - ], - "occurrences": 7 - }, - "0x812ba41e071c7b7fa4ebcfb62df5f45f6fa853ee": { - "address": "0x812ba41e071c7b7fa4ebcfb62df5f45f6fa853ee", - "symbol": "NEIRO", - "decimals": 9, - "name": "Neiro", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x812ba41e071c7b7fa4ebcfb62df5f45f6fa853ee.png", - "aggregators": [ - "CoinMarketCap", - "1inch", - "Socket", - "Rubic", - "Squid", - "Rango", - "Sonarwatch" - ], - "occurrences": 7 - }, - "0x7613c48e0cd50e42dd9bf0f6c235063145f6f8dc": { - "address": "0x7613c48e0cd50e42dd9bf0f6c235063145f6f8dc", - "symbol": "PIRATE", - "decimals": 18, - "name": "Pirate Nation Token", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x7613c48e0cd50e42dd9bf0f6c235063145f6f8dc.png", - "aggregators": [ - "CoinMarketCap", - "LiFi", - "Socket", - "Rubic", - "Rango", - "Sonarwatch", - "SushiSwap" - ], - "occurrences": 7 - }, - "0x643c4e15d7d62ad0abec4a9bd4b001aa3ef52d66": { - "address": "0x643c4e15d7d62ad0abec4a9bd4b001aa3ef52d66", - "symbol": "SYRUP", - "decimals": 18, - "name": "Maple Finance", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x643c4e15d7d62ad0abec4a9bd4b001aa3ef52d66.png", - "aggregators": [ - "CoinMarketCap", - "LiFi", - "Socket", - "Rubic", - "Squid", - "Rango", - "Sonarwatch" - ], - "occurrences": 7 - }, - "0x5a666c7d92e5fa7edcb6390e4efd6d0cdd69cf37": { - "address": "0x5a666c7d92e5fa7edcb6390e4efd6d0cdd69cf37", - "symbol": "MARSH", - "decimals": 18, - "name": "UnMarshal", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x5a666c7d92e5fa7edcb6390e4efd6d0cdd69cf37.png", - "aggregators": [ - "CoinMarketCap", - "1inch", - "TrustWallet", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 7 - }, - "0x6f87d756daf0503d08eb8993686c7fc01dc44fb1": { - "address": "0x6f87d756daf0503d08eb8993686c7fc01dc44fb1", - "symbol": "TRADE", - "decimals": 18, - "name": "UniTrade", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x6f87d756daf0503d08eb8993686c7fc01dc44fb1.png", - "aggregators": [ - "CoinMarketCap", - "LiFi", - "TrustWallet", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 7 - }, - "0x5befbb272290dd5b8521d4a938f6c4757742c430": { - "address": "0x5befbb272290dd5b8521d4a938f6c4757742c430", - "symbol": "XFI", - "decimals": 18, - "name": "Xfinance", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x5befbb272290dd5b8521d4a938f6c4757742c430.png", - "aggregators": [ - "CoinMarketCap", - "LiFi", - "TrustWallet", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 7 - }, - "0xa4ef4b0b23c1fc81d3f9ecf93510e64f58a4a016": { - "address": "0xa4ef4b0b23c1fc81d3f9ecf93510e64f58a4a016", - "symbol": "1MIL", - "decimals": 18, - "name": "1MillionNFTs", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xa4ef4b0b23c1fc81d3f9ecf93510e64f58a4a016.png", - "aggregators": [ - "CoinMarketCap", - "1inch", - "LiFi", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 7 - }, - "0xea1ea0972fa092dd463f2968f9bb51cc4c981d71": { - "address": "0xea1ea0972fa092dd463f2968f9bb51cc4c981d71", - "symbol": "MOD", - "decimals": 18, - "name": "Modefi", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xea1ea0972fa092dd463f2968f9bb51cc4c981d71.png", - "aggregators": [ - "CoinMarketCap", - "LiFi", - "TrustWallet", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 7 - }, - "0x16980b3b4a3f9d89e33311b5aa8f80303e5ca4f8": { - "address": "0x16980b3b4a3f9d89e33311b5aa8f80303e5ca4f8", - "symbol": "KEX", - "decimals": 6, - "name": "KIRA Network", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x16980b3b4a3f9d89e33311b5aa8f80303e5ca4f8.png", - "aggregators": [ - "CoinMarketCap", - "1inch", - "TrustWallet", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 7 - }, - "0x491e136ff7ff03e6ab097e54734697bb5802fc1c": { - "address": "0x491e136ff7ff03e6ab097e54734697bb5802fc1c", - "symbol": "KTN", - "decimals": 18, - "name": "Kattana", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x491e136ff7ff03e6ab097e54734697bb5802fc1c.png", - "aggregators": [ - "CoinMarketCap", - "LiFi", - "Socket", - "Rubic", - "Rango", - "Sonarwatch", - "Bancor" - ], - "occurrences": 7 - }, - "0x0100546f2cd4c9d97f798ffc9755e47865ff7ee6": { - "address": "0x0100546f2cd4c9d97f798ffc9755e47865ff7ee6", - "symbol": "ALETH", - "decimals": 18, - "name": "Alchemix ETH", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x0100546f2cd4c9d97f798ffc9755e47865ff7ee6.png", - "aggregators": [ - "CoinGecko", - "1inch", - "LiFi", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 7 - }, - "0x3446dd70b2d52a6bf4a5a192d9b0a161295ab7f9": { - "address": "0x3446dd70b2d52a6bf4a5a192d9b0a161295ab7f9", - "symbol": "SUDO", - "decimals": 18, - "name": "Sudo Governance Token", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x3446dd70b2d52a6bf4a5a192d9b0a161295ab7f9.png", - "aggregators": [ - "CoinMarketCap", - "LiFi", - "Socket", - "Rubic", - "Rango", - "Sonarwatch", - "SushiSwap" - ], - "occurrences": 7 - }, - "0xb58e61c3098d85632df34eecfb899a1ed80921cb": { - "address": "0xb58e61c3098d85632df34eecfb899a1ed80921cb", - "symbol": "ZCHF", - "decimals": 18, - "name": "Frankencoin", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xb58e61c3098d85632df34eecfb899a1ed80921cb.png", - "aggregators": [ - "Metamask", - "1inch", - "LiFi", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 7 - }, - "0x2a3bff78b79a009976eea096a51a948a3dc00e34": { - "address": "0x2a3bff78b79a009976eea096a51a948a3dc00e34", - "symbol": "WILD", - "decimals": 18, - "name": "Wilder World", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x2a3bff78b79a009976eea096a51a948a3dc00e34.png", - "aggregators": [ - "CoinMarketCap", - "1inch", - "LiFi", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 7 - }, - "0x99fe3b1391503a1bc1788051347a1324bff41452": { - "address": "0x99fe3b1391503a1bc1788051347a1324bff41452", - "symbol": "SX", - "decimals": 18, - "name": "SportX", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x99fe3b1391503a1bc1788051347a1324bff41452.png", - "aggregators": [ - "CoinGecko", - "LiFi", - "Socket", - "Rubic", - "Rango", - "Sonarwatch", - "SushiSwap" - ], - "occurrences": 7 - }, - "0xf94e7d0710709388bce3161c32b4eea56d3f91cc": { - "address": "0xf94e7d0710709388bce3161c32b4eea56d3f91cc", - "symbol": "DSYNC", - "decimals": 18, - "name": "Destra Network", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xf94e7d0710709388bce3161c32b4eea56d3f91cc.png", - "aggregators": [ - "CoinMarketCap", - "1inch", - "Socket", - "Rubic", - "Squid", - "Rango", - "Sonarwatch" - ], - "occurrences": 7 - }, - "0x83e9f223e1edb3486f876ee888d76bfba26c475a": { - "address": "0x83e9f223e1edb3486f876ee888d76bfba26c475a", - "symbol": "GUILD", - "decimals": 18, - "name": "BlockchainSpace", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x83e9f223e1edb3486f876ee888d76bfba26c475a.png", - "aggregators": [ - "CoinMarketCap", - "1inch", - "LiFi", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 7 - }, - "0x5ca135cb8527d76e932f34b5145575f9d8cbe08e": { - "address": "0x5ca135cb8527d76e932f34b5145575f9d8cbe08e", - "symbol": "FPI", - "decimals": 18, - "name": "Frax Price Index", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x5ca135cb8527d76e932f34b5145575f9d8cbe08e.png", - "aggregators": [ - "CoinMarketCap", - "LiFi", - "Socket", - "Rubic", - "Squid", - "Rango", - "Sonarwatch" - ], - "occurrences": 7 - }, - "0xa91ac63d040deb1b7a5e4d4134ad23eb0ba07e14": { - "address": "0xa91ac63d040deb1b7a5e4d4134ad23eb0ba07e14", - "symbol": "BEL", - "decimals": 18, - "name": "Bella Protocol", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xa91ac63d040deb1b7a5e4d4134ad23eb0ba07e14.png", - "aggregators": [ - "CoinMarketCap", - "LiFi", - "TrustWallet", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 7 - }, - "0xabd4c63d2616a5201454168269031355f4764337": { - "address": "0xabd4c63d2616a5201454168269031355f4764337", - "symbol": "ORDER", - "decimals": 18, - "name": "Orderly Network", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xabd4c63d2616a5201454168269031355f4764337.png", - "aggregators": [ - "CoinMarketCap", - "LiFi", - "Socket", - "Rubic", - "Squid", - "Rango", - "Sonarwatch" - ], - "occurrences": 7 - }, - "0xb0ac2b5a73da0e67a8e5489ba922b3f8d582e058": { - "address": "0xb0ac2b5a73da0e67a8e5489ba922b3f8d582e058", - "symbol": "SHIRO", - "decimals": 18, - "name": "Shiro Neko", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xb0ac2b5a73da0e67a8e5489ba922b3f8d582e058.png", - "aggregators": [ - "CoinMarketCap", - "1inch", - "Socket", - "Rubic", - "Squid", - "Rango", - "Sonarwatch" - ], - "occurrences": 7 - }, - "0x05d3606d5c81eb9b7b18530995ec9b29da05faba": { - "address": "0x05d3606d5c81eb9b7b18530995ec9b29da05faba", - "symbol": "TOMOE", - "decimals": 18, - "name": "TomoChain", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x05d3606d5c81eb9b7b18530995ec9b29da05faba.png", - "aggregators": [ - "CoinMarketCap", - "Socket", - "Rubic", - "Rango", - "Sonarwatch", - "SushiSwap", - "Bancor" - ], - "occurrences": 7 - }, - "0x15874d65e649880c2614e7a480cb7c9a55787ff6": { - "address": "0x15874d65e649880c2614e7a480cb7c9a55787ff6", - "symbol": "EMAX", - "decimals": 18, - "name": "EthereumMax", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x15874d65e649880c2614e7a480cb7c9a55787ff6.png", - "aggregators": [ - "CoinMarketCap", - "1inch", - "TrustWallet", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 7 - }, - "0x7a2bc711e19ba6aff6ce8246c546e8c4b4944dfd": { - "address": "0x7a2bc711e19ba6aff6ce8246c546e8c4b4944dfd", - "symbol": "WAXE", - "decimals": 8, - "name": "WAXE", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x7a2bc711e19ba6aff6ce8246c546e8c4b4944dfd.png", - "aggregators": [ - "CoinMarketCap", - "1inch", - "TrustWallet", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 7 - }, - "0xee573a945b01b788b9287ce062a0cfc15be9fd86": { - "address": "0xee573a945b01b788b9287ce062a0cfc15be9fd86", - "symbol": "XED", - "decimals": 18, - "name": "Exeedme", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xee573a945b01b788b9287ce062a0cfc15be9fd86.png", - "aggregators": [ - "CoinGecko", - "LiFi", - "TrustWallet", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 7 - }, - "0x365accfca291e7d3914637abf1f7635db165bb09": { - "address": "0x365accfca291e7d3914637abf1f7635db165bb09", - "symbol": "FXN", - "decimals": 18, - "name": "f x Protocol", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x365accfca291e7d3914637abf1f7635db165bb09.png", - "aggregators": [ - "CoinGecko", - "1inch", - "LiFi", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 7 - }, - "0xb17548c7b510427baac4e267bea62e800b247173": { - "address": "0xb17548c7b510427baac4e267bea62e800b247173", - "symbol": "SMT", - "decimals": 18, - "name": "Swarm Markets", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xb17548c7b510427baac4e267bea62e800b247173.png", - "aggregators": [ - "CoinMarketCap", - "LiFi", - "Socket", - "Rubic", - "Squid", - "Rango", - "Sonarwatch" - ], - "occurrences": 7 - }, - "0x9ad37205d608b8b219e6a2573f922094cec5c200": { - "address": "0x9ad37205d608b8b219e6a2573f922094cec5c200", - "symbol": "IZI", - "decimals": 18, - "name": "iZUMi Finance", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x9ad37205d608b8b219e6a2573f922094cec5c200.png", - "aggregators": [ - "CoinMarketCap", - "LiFi", - "Socket", - "Rubic", - "Squid", - "Rango", - "Sonarwatch" - ], - "occurrences": 7 - }, - "0x298d492e8c1d909d3f63bc4a36c66c64acb3d695": { - "address": "0x298d492e8c1d909d3f63bc4a36c66c64acb3d695", - "symbol": "PBR", - "decimals": 18, - "name": "PolkaBridge", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x298d492e8c1d909d3f63bc4a36c66c64acb3d695.png", - "aggregators": [ - "CoinMarketCap", - "1inch", - "LiFi", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 7 - }, - "0xdacd69347de42babfaecd09dc88958378780fb62": { - "address": "0xdacd69347de42babfaecd09dc88958378780fb62", - "symbol": "ATRI", - "decimals": 18, - "name": "Atari Token", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xdacd69347de42babfaecd09dc88958378780fb62.png", - "aggregators": [ - "Metamask", - "LiFi", - "TrustWallet", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 7 - }, - "0xed35af169af46a02ee13b9d79eb57d6d68c1749e": { - "address": "0xed35af169af46a02ee13b9d79eb57d6d68c1749e", - "symbol": "OMI", - "decimals": 18, - "name": "ECOMI", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xed35af169af46a02ee13b9d79eb57d6d68c1749e.png", - "aggregators": [ - "CoinMarketCap", - "LiFi", - "Socket", - "Rubic", - "Squid", - "Rango", - "Sonarwatch" - ], - "occurrences": 7 - }, - "0xfad45e47083e4607302aa43c65fb3106f1cd7607": { - "address": "0xfad45e47083e4607302aa43c65fb3106f1cd7607", - "symbol": "HOGE", - "decimals": 9, - "name": "Hoge Finance", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xfad45e47083e4607302aa43c65fb3106f1cd7607.png", - "aggregators": [ - "Metamask", - "1inch", - "TrustWallet", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 7 - }, - "0xaa4e3edb11afa93c41db59842b29de64b72e355b": { - "address": "0xaa4e3edb11afa93c41db59842b29de64b72e355b", - "symbol": "MFI", - "decimals": 18, - "name": "MarginSwap", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xaa4e3edb11afa93c41db59842b29de64b72e355b.png", - "aggregators": [ - "CoinGecko", - "LiFi", - "Socket", - "Rubic", - "Rango", - "Sonarwatch", - "Bancor" - ], - "occurrences": 7 - }, - "0xb9d99c33ea2d86ec5ec6b8a4dd816ebba64404af": { - "address": "0xb9d99c33ea2d86ec5ec6b8a4dd816ebba64404af", - "symbol": "K21", - "decimals": 18, - "name": "K21", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xb9d99c33ea2d86ec5ec6b8a4dd816ebba64404af.png", - "aggregators": [ - "CoinMarketCap", - "1inch", - "TrustWallet", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 7 - }, - "0x91dfbee3965baaee32784c2d546b7a0c62f268c9": { - "address": "0x91dfbee3965baaee32784c2d546b7a0c62f268c9", - "symbol": "BONDLY", - "decimals": 18, - "name": "Forj", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x91dfbee3965baaee32784c2d546b7a0c62f268c9.png", - "aggregators": [ - "CoinGecko", - "1inch", - "LiFi", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 7 - }, - "0xc581b735a1688071a1746c968e0798d642ede491": { - "address": "0xc581b735a1688071a1746c968e0798d642ede491", - "symbol": "EURT", - "decimals": 6, - "name": "Euro Tether", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xc581b735a1688071a1746c968e0798d642ede491.png", - "aggregators": [ - "CoinMarketCap", - "1inch", - "LiFi", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 7 - }, - "0xcb56b52316041a62b6b5d0583dce4a8ae7a3c629": { - "address": "0xcb56b52316041a62b6b5d0583dce4a8ae7a3c629", - "symbol": "CIG", - "decimals": 18, - "name": "Cigarettes", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xcb56b52316041a62b6b5d0583dce4a8ae7a3c629.png", - "aggregators": [ - "Metamask", - "LiFi", - "Socket", - "Rubic", - "Squid", - "Rango", - "Sonarwatch", - "SushiSwap" - ], - "occurrences": 8 - }, - "0x70bef3bb2f001da2fddb207dae696cd9faff3f5d": { - "address": "0x70bef3bb2f001da2fddb207dae696cd9faff3f5d", - "symbol": "NST", - "decimals": 18, - "name": "Ninja Squad Token", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x70bef3bb2f001da2fddb207dae696cd9faff3f5d.png", - "aggregators": [ - "CoinMarketCap", - "LiFi", - "Socket", - "Rubic", - "Rango", - "Sonarwatch", - "SushiSwap" - ], - "occurrences": 7 - }, - "0xf0f9d895aca5c8678f706fb8216fa22957685a13": { - "address": "0xf0f9d895aca5c8678f706fb8216fa22957685a13", - "symbol": "CULT", - "decimals": 18, - "name": "Cult DAO", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xf0f9d895aca5c8678f706fb8216fa22957685a13.png", - "aggregators": [ - "CoinMarketCap", - "1inch", - "Socket", - "Rubic", - "Squid", - "Rango", - "Sonarwatch" - ], - "occurrences": 7 - }, - "0x04c154b66cb340f3ae24111cc767e0184ed00cc6": { - "address": "0x04c154b66cb340f3ae24111cc767e0184ed00cc6", - "symbol": "PXETH", - "decimals": 18, - "name": "Dinero Staked ETH", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x04c154b66cb340f3ae24111cc767e0184ed00cc6.png", - "aggregators": [ - "CoinGecko", - "1inch", - "LiFi", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 7 - }, - "0x8881562783028f5c1bcb985d2283d5e170d88888": { - "address": "0x8881562783028f5c1bcb985d2283d5e170d88888", - "symbol": "SHFL", - "decimals": 18, - "name": "Shuffle", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x8881562783028f5c1bcb985d2283d5e170d88888.png", - "aggregators": [ - "CoinMarketCap", - "LiFi", - "Socket", - "Rubic", - "Squid", - "Rango", - "Sonarwatch" - ], - "occurrences": 7 - }, - "0x289ff00235d2b98b0145ff5d4435d3e92f9540a6": { - "address": "0x289ff00235d2b98b0145ff5d4435d3e92f9540a6", - "symbol": "BOOE", - "decimals": 18, - "name": "Book of Ethereum", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x289ff00235d2b98b0145ff5d4435d3e92f9540a6.png", - "aggregators": [ - "CoinMarketCap", - "1inch", - "LiFi", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 7 - }, - "0xfeac2eae96899709a43e252b6b92971d32f9c0f9": { - "address": "0xfeac2eae96899709a43e252b6b92971d32f9c0f9", - "symbol": "ANYONE", - "decimals": 18, - "name": "ANyONe Protocol", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xfeac2eae96899709a43e252b6b92971d32f9c0f9.png", - "aggregators": [ - "CoinMarketCap", - "LiFi", - "Socket", - "Rubic", - "Squid", - "Rango", - "Sonarwatch" - ], - "occurrences": 7 - }, - "0x1121acc14c63f3c872bfca497d10926a6098aac5": { - "address": "0x1121acc14c63f3c872bfca497d10926a6098aac5", - "symbol": "DOGE", - "decimals": 18, - "name": "Department Of Government Efficiency", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x1121acc14c63f3c872bfca497d10926a6098aac5.png", - "aggregators": [ - "CoinGecko", - "1inch", - "Socket", - "Rubic", - "Squid", - "Rango", - "Sonarwatch" - ], - "occurrences": 7 - }, - "0xeec2be5c91ae7f8a338e1e5f3b5de49d07afdc81": { - "address": "0xeec2be5c91ae7f8a338e1e5f3b5de49d07afdc81", - "symbol": "DPX", - "decimals": 18, - "name": "Dopex Governance Token", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xeec2be5c91ae7f8a338e1e5f3b5de49d07afdc81.png", - "aggregators": [ - "CoinMarketCap", - "LiFi", - "TrustWallet", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 7 - }, - "0xcfcecfe2bd2fed07a9145222e8a7ad9cf1ccd22a": { - "address": "0xcfcecfe2bd2fed07a9145222e8a7ad9cf1ccd22a", - "symbol": "ADS", - "decimals": 11, - "name": "Adshares", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xcfcecfe2bd2fed07a9145222e8a7ad9cf1ccd22a.png", - "aggregators": [ - "CoinMarketCap", - "1inch", - "LiFi", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 7 - }, - "0x656c00e1bcd96f256f224ad9112ff426ef053733": { - "address": "0x656c00e1bcd96f256f224ad9112ff426ef053733", - "symbol": "EFI", - "decimals": 18, - "name": "Efinity Token", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x656c00e1bcd96f256f224ad9112ff426ef053733.png", - "aggregators": [ - "CoinMarketCap", - "LiFi", - "Socket", - "Rubic", - "Rango", - "Sonarwatch", - "Bancor" - ], - "occurrences": 7 - }, - "0x2dff88a56767223a5529ea5960da7a3f5f766406": { - "address": "0x2dff88a56767223a5529ea5960da7a3f5f766406", - "symbol": "ID", - "decimals": 18, - "name": "SPACE ID", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x2dff88a56767223a5529ea5960da7a3f5f766406.png", - "aggregators": [ - "CoinMarketCap", - "LiFi", - "Socket", - "Rubic", - "Squid", - "Rango", - "Sonarwatch" - ], - "occurrences": 7 - }, - "0xb34e17562e4f1f63a2d4cf684ed8bc124e519771": { - "address": "0xb34e17562e4f1f63a2d4cf684ed8bc124e519771", - "symbol": "NLS", - "decimals": 6, - "name": "Nolus", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xb34e17562e4f1f63a2d4cf684ed8bc124e519771.png", - "aggregators": [ - "CoinGecko", - "LiFi", - "Socket", - "Rubic", - "Squid", - "Rango", - "Sonarwatch" - ], - "occurrences": 7 - }, - "0x26dcfbfa8bc267b250432c01c982eaf81cc5480c": { - "address": "0x26dcfbfa8bc267b250432c01c982eaf81cc5480c", - "symbol": "AMATICC", - "decimals": 18, - "name": "Ankr Reward Bearing MATIC", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x26dcfbfa8bc267b250432c01c982eaf81cc5480c.png", - "aggregators": [ - "CoinMarketCap", - "LiFi", - "Socket", - "Rubic", - "Rango", - "Sonarwatch", - "SushiSwap" - ], - "occurrences": 7 - }, - "0x137ddb47ee24eaa998a535ab00378d6bfa84f893": { - "address": "0x137ddb47ee24eaa998a535ab00378d6bfa84f893", - "symbol": "RDNT", - "decimals": 18, - "name": "Radiant Capital", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x137ddb47ee24eaa998a535ab00378d6bfa84f893.png", - "aggregators": [ - "CoinMarketCap", - "LiFi", - "Socket", - "Rubic", - "Squid", - "Rango", - "Sonarwatch" - ], - "occurrences": 7 - }, - "0xd5525d397898e5502075ea5e830d8914f6f0affe": { - "address": "0xd5525d397898e5502075ea5e830d8914f6f0affe", - "symbol": "MEME", - "decimals": 8, - "name": "MEME", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xd5525d397898e5502075ea5e830d8914f6f0affe.png", - "aggregators": [ - "CoinMarketCap", - "LiFi", - "TrustWallet", - "Socket", - "Rubic", - "Rango", - "SushiSwap" - ], - "occurrences": 7 - }, - "0xb987d48ed8f2c468d52d6405624eadba5e76d723": { - "address": "0xb987d48ed8f2c468d52d6405624eadba5e76d723", - "symbol": "STBZ", - "decimals": 18, - "name": "Stabilize Token", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xb987d48ed8f2c468d52d6405624eadba5e76d723.png", - "aggregators": [ - "CoinMarketCap", - "1inch", - "LiFi", - "TrustWallet", - "Socket", - "Rubic", - "Rango" - ], - "occurrences": 7 - }, - "0xea319e87cf06203dae107dd8e5672175e3ee976c": { - "address": "0xea319e87cf06203dae107dd8e5672175e3ee976c", - "symbol": "SURF", - "decimals": 18, - "name": "SURF Finance", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xea319e87cf06203dae107dd8e5672175e3ee976c.png", - "aggregators": [ - "CoinMarketCap", - "1inch", - "LiFi", - "TrustWallet", - "Socket", - "Rubic", - "Rango" - ], - "occurrences": 7 - }, - "0x67c597624b17b16fb77959217360b7cd18284253": { - "address": "0x67c597624b17b16fb77959217360b7cd18284253", - "symbol": "MARK", - "decimals": 9, - "name": "Benchmark Protocol", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x67c597624b17b16fb77959217360b7cd18284253.png", - "aggregators": [ - "CoinMarketCap", - "1inch", - "LiFi", - "TrustWallet", - "Socket", - "Rubic", - "Rango" - ], - "occurrences": 7 - }, - "0xcb5f72d37685c3d5ad0bb5f982443bc8fcdf570e": { - "address": "0xcb5f72d37685c3d5ad0bb5f982443bc8fcdf570e", - "symbol": "ROOT", - "decimals": 18, - "name": "Rootkit Finance", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xcb5f72d37685c3d5ad0bb5f982443bc8fcdf570e.png", - "aggregators": [ - "CoinMarketCap", - "1inch", - "LiFi", - "TrustWallet", - "Socket", - "Rubic", - "Rango" - ], - "occurrences": 7 - }, - "0xe452e6ea2ddeb012e20db73bf5d3863a3ac8d77a": { - "address": "0xe452e6ea2ddeb012e20db73bf5d3863a3ac8d77a", - "symbol": "WCELO", - "decimals": 18, - "name": "WCELO", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xe452e6ea2ddeb012e20db73bf5d3863a3ac8d77a.png", - "aggregators": [ - "CoinMarketCap", - "LiFi", - "TrustWallet", - "Socket", - "Rubic", - "Rango", - "SushiSwap" - ], - "occurrences": 7 - }, - "0xcbfef8fdd706cde6f208460f2bf39aa9c785f05d": { - "address": "0xcbfef8fdd706cde6f208460f2bf39aa9c785f05d", - "symbol": "KINE", - "decimals": 18, - "name": "Kine Governance Token", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xcbfef8fdd706cde6f208460f2bf39aa9c785f05d.png", - "aggregators": [ - "CoinMarketCap", - "1inch", - "TrustWallet", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 7 - }, - "0x9040e237c3bf18347bb00957dc22167d0f2b999d": { - "address": "0x9040e237c3bf18347bb00957dc22167d0f2b999d", - "symbol": "STND", - "decimals": 18, - "name": "Standard", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x9040e237c3bf18347bb00957dc22167d0f2b999d.png", - "aggregators": [ - "CoinMarketCap", - "LiFi", - "Socket", - "Rubic", - "Rango", - "Sonarwatch", - "SushiSwap" - ], - "occurrences": 7 - }, - "0xe1fc4455f62a6e89476f1072530c20cf1a0622da": { - "address": "0xe1fc4455f62a6e89476f1072530c20cf1a0622da", - "symbol": "PHTR", - "decimals": 18, - "name": "Phuture", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xe1fc4455f62a6e89476f1072530c20cf1a0622da.png", - "aggregators": [ - "CoinMarketCap", - "Socket", - "Rubic", - "Rango", - "Sonarwatch", - "SushiSwap", - "Bancor" - ], - "occurrences": 7 - }, - "0x8d6cebd76f18e1558d4db88138e2defb3909fad6": { - "address": "0x8d6cebd76f18e1558d4db88138e2defb3909fad6", - "symbol": "MAI", - "decimals": 18, - "name": "Mai Stablecoin", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x8d6cebd76f18e1558d4db88138e2defb3909fad6.png", - "aggregators": [ - "CoinMarketCap", - "LiFi", - "Socket", - "Rubic", - "Squid", - "Rango", - "SushiSwap" - ], - "occurrences": 7 - }, - "0x108a850856db3f85d0269a2693d896b394c80325": { - "address": "0x108a850856db3f85d0269a2693d896b394c80325", - "symbol": "TGT", - "decimals": 18, - "name": "THORWallet Governance Token", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x108a850856db3f85d0269a2693d896b394c80325.png", - "aggregators": [ - "CoinMarketCap", - "LiFi", - "Socket", - "Rubic", - "Rango", - "Sonarwatch", - "SushiSwap" - ], - "occurrences": 7 - }, - "0x6bba316c48b49bd1eac44573c5c871ff02958469": { - "address": "0x6bba316c48b49bd1eac44573c5c871ff02958469", - "symbol": "GAS", - "decimals": 18, - "name": "Gas DAO", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x6bba316c48b49bd1eac44573c5c871ff02958469.png", - "aggregators": [ - "CoinMarketCap", - "TrustWallet", - "Socket", - "Rubic", - "Rango", - "Sonarwatch", - "SushiSwap" - ], - "occurrences": 7 - }, - "0x2b1d36f5b61addaf7da7ebbd11b35fd8cfb0de31": { - "address": "0x2b1d36f5b61addaf7da7ebbd11b35fd8cfb0de31", - "symbol": "ITP", - "decimals": 18, - "name": "Interport Token", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x2b1d36f5b61addaf7da7ebbd11b35fd8cfb0de31.png", - "aggregators": [ - "CoinMarketCap", - "Socket", - "Rubic", - "Squid", - "Rango", - "Sonarwatch", - "SushiSwap" - ], - "occurrences": 7 - }, - "0x9d9535dae62f5f12ab83f1183dca1ead244b0db3": { - "address": "0x9d9535dae62f5f12ab83f1183dca1ead244b0db3", - "symbol": "YBR", - "decimals": 18, - "name": "YieldBricks", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x9d9535dae62f5f12ab83f1183dca1ead244b0db3.png", - "aggregators": [ - "CoinMarketCap", - "LiFi", - "Socket", - "Rubic", - "Squid", - "Rango", - "Sonarwatch" - ], - "occurrences": 7 - }, - "0xa2120b9e674d3fc3875f415a7df52e382f141225": { - "address": "0xa2120b9e674d3fc3875f415a7df52e382f141225", - "symbol": "ATA", - "decimals": 18, - "name": "Automata", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xa2120b9e674d3fc3875f415a7df52e382f141225.png", - "aggregators": [ - "CoinMarketCap", - "LiFi", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 6 - }, - "0x4cce605ed955295432958d8951d0b176c10720d5": { - "address": "0x4cce605ed955295432958d8951d0b176c10720d5", - "symbol": "AUDD", - "decimals": 6, - "name": "Novatti Australian Digital Dollar", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x4cce605ed955295432958d8951d0b176c10720d5.png", - "aggregators": [ - "CoinMarketCap", - "Socket", - "Rubic", - "Squid", - "Rango", - "Sonarwatch" - ], - "occurrences": 6 - }, - "0x8a2279d4a90b6fe1c4b30fa660cc9f926797baa2": { - "address": "0x8a2279d4a90b6fe1c4b30fa660cc9f926797baa2", - "symbol": "CHR", - "decimals": 6, - "name": "Chromia", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x8a2279d4a90b6fe1c4b30fa660cc9f926797baa2.png", - "aggregators": [ - "CoinMarketCap", - "LiFi", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 6 - }, - "0xe6fd75ff38adca4b97fbcd938c86b98772431867": { - "address": "0xe6fd75ff38adca4b97fbcd938c86b98772431867", - "symbol": "ELA", - "decimals": 18, - "name": "Elastos", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xe6fd75ff38adca4b97fbcd938c86b98772431867.png", - "aggregators": [ - "CoinMarketCap", - "Socket", - "Rubic", - "Squid", - "Rango", - "Sonarwatch" - ], - "occurrences": 6 - }, - "0x88909d489678dd17aa6d9609f89b0419bf78fd9a": { - "address": "0x88909d489678dd17aa6d9609f89b0419bf78fd9a", - "symbol": "L3", - "decimals": 18, - "name": "Layer3", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x88909d489678dd17aa6d9609f89b0419bf78fd9a.png", - "aggregators": [ - "CoinMarketCap", - "LiFi", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 6 - }, - "0x61e90a50137e1f645c9ef4a0d3a4f01477738406": { - "address": "0x61e90a50137e1f645c9ef4a0d3a4f01477738406", - "symbol": "LOKA", - "decimals": 18, - "name": "League of Kingdoms", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x61e90a50137e1f645c9ef4a0d3a4f01477738406.png", - "aggregators": [ - "CoinMarketCap", - "LiFi", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 6 - }, - "0xa9e8acf069c58aec8825542845fd754e41a9489a": { - "address": "0xa9e8acf069c58aec8825542845fd754e41a9489a", - "symbol": "PEPECOIN", - "decimals": 18, - "name": "PepeCoin", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xa9e8acf069c58aec8825542845fd754e41a9489a.png", - "aggregators": [ - "CoinMarketCap", - "LiFi", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 6 - }, - "0x1bbe973bef3a977fc51cbed703e8ffdefe001fed": { - "address": "0x1bbe973bef3a977fc51cbed703e8ffdefe001fed", - "symbol": "PORTAL", - "decimals": 18, - "name": "Portal", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x1bbe973bef3a977fc51cbed703e8ffdefe001fed.png", - "aggregators": [ - "CoinMarketCap", - "LiFi", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 6 - }, - "0x4d1c297d39c5c1277964d0e3f8aa901493664530": { - "address": "0x4d1c297d39c5c1277964d0e3f8aa901493664530", - "symbol": "PUFFER", - "decimals": 18, - "name": "Puffer", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x4d1c297d39c5c1277964d0e3f8aa901493664530.png", - "aggregators": [ - "CoinMarketCap", - "LiFi", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 6 - }, - "0x0a6e7ba5042b38349e437ec6db6214aec7b35676": { - "address": "0x0a6e7ba5042b38349e437ec6db6214aec7b35676", - "symbol": "SWELL", - "decimals": 18, - "name": "Swell", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x0a6e7ba5042b38349e437ec6db6214aec7b35676.png", - "aggregators": [ - "CoinMarketCap", - "LiFi", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 6 - }, - "0x888888848b652b3e3a0f34c96e00eec0f3a23f72": { - "address": "0x888888848b652b3e3a0f34c96e00eec0f3a23f72", - "symbol": "TLM", - "decimals": 4, - "name": "Alien Worlds", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x888888848b652b3e3a0f34c96e00eec0f3a23f72.png", - "aggregators": [ - "CoinMarketCap", - "LiFi", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 6 - }, - "0xc4441c2be5d8fa8126822b9929ca0b81ea0de38e": { - "address": "0xc4441c2be5d8fa8126822b9929ca0b81ea0de38e", - "symbol": "USUAL", - "decimals": 18, - "name": "Usual", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xc4441c2be5d8fa8126822b9929ca0b81ea0de38e.png", - "aggregators": [ - "CoinMarketCap", - "LiFi", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 6 - }, - "0xedb171c18ce90b633db442f2a6f72874093b49ef": { - "address": "0xedb171c18ce90b633db442f2a6f72874093b49ef", - "symbol": "WAMPL", - "decimals": 18, - "name": "Wrapped Ampleforth", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xedb171c18ce90b633db442f2a6f72874093b49ef.png", - "aggregators": [ - "CoinMarketCap", - "LiFi", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 6 - }, - "0x6ee0f7bb50a54ab5253da0667b0dc2ee526c30a8": { - "address": "0x6ee0f7bb50a54ab5253da0667b0dc2ee526c30a8", - "symbol": "ABUSD", - "decimals": 18, - "name": "Aave BUSD v1", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x6ee0f7bb50a54ab5253da0667b0dc2ee526c30a8.png", - "aggregators": [ - "CoinGecko", - "LiFi", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 6 - }, - "0x8762db106b2c2a0bccb3a80d1ed41273552616e8": { - "address": "0x8762db106b2c2a0bccb3a80d1ed41273552616e8", - "symbol": "RSR", - "decimals": 18, - "name": "Reserve Rights", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x8762db106b2c2a0bccb3a80d1ed41273552616e8.png", - "aggregators": [ - "CMC", - "LiFi", - "Socket", - "Rubic", - "Rango", - "Bancor" - ], - "occurrences": 6 - }, - "0xab37e1358b639fd877f015027bb62d3ddaa7557e": { - "address": "0xab37e1358b639fd877f015027bb62d3ddaa7557e", - "symbol": "LIEN", - "decimals": 8, - "name": "Lien", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xab37e1358b639fd877f015027bb62d3ddaa7557e.png", - "aggregators": [ - "CoinMarketCap", - "LiFi", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 6 - }, - "0x29cbd0510eec0327992cd6006e63f9fa8e7f33b7": { - "address": "0x29cbd0510eec0327992cd6006e63f9fa8e7f33b7", - "symbol": "TIDAL", - "decimals": 18, - "name": "Tidal Finance", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x29cbd0510eec0327992cd6006e63f9fa8e7f33b7.png", - "aggregators": [ - "CoinMarketCap", - "1inch", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 6 - }, - "0xf1f508c7c9f0d1b15a76fba564eef2d956220cf7": { - "address": "0xf1f508c7c9f0d1b15a76fba564eef2d956220cf7", - "symbol": "PPDEX", - "decimals": 18, - "name": "Pepedex", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xf1f508c7c9f0d1b15a76fba564eef2d956220cf7.png", - "aggregators": [ - "CoinMarketCap", - "LiFi", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 6 - }, - "0x1a57367c6194199e5d9aea1ce027431682dfb411": { - "address": "0x1a57367c6194199e5d9aea1ce027431682dfb411", - "symbol": "MDF", - "decimals": 18, - "name": "MatrixETF", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x1a57367c6194199e5d9aea1ce027431682dfb411.png", - "aggregators": [ - "CoinMarketCap", - "LiFi", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 6 - }, - "0xc834fa996fa3bec7aad3693af486ae53d8aa8b50": { - "address": "0xc834fa996fa3bec7aad3693af486ae53d8aa8b50", - "symbol": "CONV", - "decimals": 18, - "name": "Convergence", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xc834fa996fa3bec7aad3693af486ae53d8aa8b50.png", - "aggregators": [ - "CoinMarketCap", - "TrustWallet", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 6 - }, - "0x471d113059324321749e097705197a2b44a070fc": { - "address": "0x471d113059324321749e097705197a2b44a070fc", - "symbol": "KNG", - "decimals": 18, - "name": "Kanga Exchange", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x471d113059324321749e097705197a2b44a070fc.png", - "aggregators": [ - "CoinMarketCap", - "LiFi", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 6 - }, - "0x3010ccb5419f1ef26d40a7cd3f0d707a0fa127dc": { - "address": "0x3010ccb5419f1ef26d40a7cd3f0d707a0fa127dc", - "symbol": "GEMS", - "decimals": 18, - "name": "Gems VIP", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x3010ccb5419f1ef26d40a7cd3f0d707a0fa127dc.png", - "aggregators": [ - "CoinMarketCap", - "LiFi", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 6 - }, - "0xbb1ee07d6c7baeb702949904080eb61f5d5e7732": { - "address": "0xbb1ee07d6c7baeb702949904080eb61f5d5e7732", - "symbol": "DINU", - "decimals": 18, - "name": "Dogey Inu", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xbb1ee07d6c7baeb702949904080eb61f5d5e7732.png", - "aggregators": [ - "CoinMarketCap", - "1inch", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 6 - }, - "0xc40af1e4fecfa05ce6bab79dcd8b373d2e436c4e": { - "address": "0xc40af1e4fecfa05ce6bab79dcd8b373d2e436c4e", - "symbol": "HOKK", - "decimals": 9, - "name": "Hokkaidu Inu", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xc40af1e4fecfa05ce6bab79dcd8b373d2e436c4e.png", - "aggregators": [ - "CoinMarketCap", - "Socket", - "Rubic", - "Squid", - "Rango", - "Sonarwatch" - ], - "occurrences": 6 - }, - "0xf2051511b9b121394fa75b8f7d4e7424337af687": { - "address": "0xf2051511b9b121394fa75b8f7d4e7424337af687", - "symbol": "HAUS", - "decimals": 18, - "name": "DAOhaus", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xf2051511b9b121394fa75b8f7d4e7424337af687.png", - "aggregators": [ - "CoinMarketCap", - "LiFi", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 6 - }, - "0x7a5ce6abd131ea6b148a022cb76fc180ae3315a6": { - "address": "0x7a5ce6abd131ea6b148a022cb76fc180ae3315a6", - "symbol": "BALPHA", - "decimals": 18, - "name": "bAlpha", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x7a5ce6abd131ea6b148a022cb76fc180ae3315a6.png", - "aggregators": [ - "CoinMarketCap", - "1inch", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 6 - }, - "0x4d2ee5dae46c86da2ff521f7657dad98834f97b8": { - "address": "0x4d2ee5dae46c86da2ff521f7657dad98834f97b8", - "symbol": "PPBLZ", - "decimals": 18, - "name": "Pepemon Pepeballs", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x4d2ee5dae46c86da2ff521f7657dad98834f97b8.png", - "aggregators": [ - "CoinMarketCap", - "LiFi", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 6 - }, - "0x666d875c600aa06ac1cf15641361dec3b00432ef": { - "address": "0x666d875c600aa06ac1cf15641361dec3b00432ef", - "symbol": "BTSE", - "decimals": 8, - "name": "BTSE Token", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x666d875c600aa06ac1cf15641361dec3b00432ef.png", - "aggregators": [ - "CoinMarketCap", - "LiFi", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 6 - }, - "0xa19f5264f7d7be11c451c093d8f92592820bea86": { - "address": "0xa19f5264f7d7be11c451c093d8f92592820bea86", - "symbol": "BYTES", - "decimals": 18, - "name": "Neo Tokyo", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xa19f5264f7d7be11c451c093d8f92592820bea86.png", - "aggregators": [ - "CoinMarketCap", - "LiFi", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 6 - }, - "0x56015bbe3c01fe05bc30a8a9a9fd9a88917e7db3": { - "address": "0x56015bbe3c01fe05bc30a8a9a9fd9a88917e7db3", - "symbol": "CAT", - "decimals": 18, - "name": "Mooncat CAT", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x56015bbe3c01fe05bc30a8a9a9fd9a88917e7db3.png", - "aggregators": [ - "CoinMarketCap", - "LiFi", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 6 - }, - "0x667102bd3413bfeaa3dffb48fa8288819e480a88": { - "address": "0x667102bd3413bfeaa3dffb48fa8288819e480a88", - "symbol": "TKX", - "decimals": 8, - "name": "Tokenize Xchange", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x667102bd3413bfeaa3dffb48fa8288819e480a88.png", - "aggregators": [ - "CoinMarketCap", - "1inch", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 6 - }, - "0x1735db6ab5baa19ea55d0adceed7bcdc008b3136": { - "address": "0x1735db6ab5baa19ea55d0adceed7bcdc008b3136", - "symbol": "URQA", - "decimals": 18, - "name": "UREEQA", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x1735db6ab5baa19ea55d0adceed7bcdc008b3136.png", - "aggregators": [ - "CoinMarketCap", - "1inch", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 6 - }, - "0x430ef9263e76dae63c84292c3409d61c598e9682": { - "address": "0x430ef9263e76dae63c84292c3409d61c598e9682", - "symbol": "PYR", - "decimals": 18, - "name": "Vulcan Forged", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x430ef9263e76dae63c84292c3409d61c598e9682.png", - "aggregators": [ - "CoinGecko", - "LiFi", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 6 - }, - "0x24e89bdf2f65326b94e36978a7edeac63623dafa": { - "address": "0x24e89bdf2f65326b94e36978a7edeac63623dafa", - "symbol": "TKING", - "decimals": 18, - "name": "Tiger King Coin", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x24e89bdf2f65326b94e36978a7edeac63623dafa.png", - "aggregators": [ - "CoinMarketCap", - "1inch", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 6 - }, - "0xfa99a87b14b02e2240c79240c5a20f945ca5ef76": { - "address": "0xfa99a87b14b02e2240c79240c5a20f945ca5ef76", - "symbol": "GGTK", - "decimals": 18, - "name": "GG", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xfa99a87b14b02e2240c79240c5a20f945ca5ef76.png", - "aggregators": [ - "CoinMarketCap", - "LiFi", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 6 - }, - "0x777e2ae845272a2f540ebf6a3d03734a5a8f618e": { - "address": "0x777e2ae845272a2f540ebf6a3d03734a5a8f618e", - "symbol": "RYOSHI", - "decimals": 18, - "name": "Ryoshis Vision", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x777e2ae845272a2f540ebf6a3d03734a5a8f618e.png", - "aggregators": [ - "CoinMarketCap", - "1inch", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 6 - }, - "0x1e4e46b7bf03ece908c88ff7cc4975560010893a": { - "address": "0x1e4e46b7bf03ece908c88ff7cc4975560010893a", - "symbol": "IOEN", - "decimals": 18, - "name": "Internet of Energy Network", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x1e4e46b7bf03ece908c88ff7cc4975560010893a.png", - "aggregators": [ - "CoinMarketCap", - "LiFi", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 6 - }, - "0xf655c8567e0f213e6c634cd2a68d992152161dc6": { - "address": "0xf655c8567e0f213e6c634cd2a68d992152161dc6", - "symbol": "IBEX", - "decimals": 18, - "name": "Impermax", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xf655c8567e0f213e6c634cd2a68d992152161dc6.png", - "aggregators": [ - "CoinMarketCap", - "LiFi", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 6 - }, - "0x11eef04c884e24d9b7b4760e7476d06ddf797f36": { - "address": "0x11eef04c884e24d9b7b4760e7476d06ddf797f36", - "symbol": "MX", - "decimals": 18, - "name": "MX", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x11eef04c884e24d9b7b4760e7476d06ddf797f36.png", - "aggregators": [ - "CoinMarketCap", - "LiFi", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 6 - }, - "0x01597e397605bf280674bf292623460b4204c375": { - "address": "0x01597e397605bf280674bf292623460b4204c375", - "symbol": "BENT", - "decimals": 18, - "name": "Bent Finance", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x01597e397605bf280674bf292623460b4204c375.png", - "aggregators": [ - "CoinMarketCap", - "Socket", - "Rubic", - "Rango", - "Sonarwatch", - "SushiSwap" - ], - "occurrences": 6 - }, - "0x09395a2a58db45db0da254c7eaa5ac469d8bdc85": { - "address": "0x09395a2a58db45db0da254c7eaa5ac469d8bdc85", - "symbol": "SQT", - "decimals": 18, - "name": "SubQuery Network", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x09395a2a58db45db0da254c7eaa5ac469d8bdc85.png", - "aggregators": [ - "CoinMarketCap", - "LiFi", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 6 - }, - "0xfeef77d3f69374f66429c91d732a244f074bdf74": { - "address": "0xfeef77d3f69374f66429c91d732a244f074bdf74", - "symbol": "CVXFXS", - "decimals": 18, - "name": "Convex FXS", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xfeef77d3f69374f66429c91d732a244f074bdf74.png", - "aggregators": [ - "CoinMarketCap", - "LiFi", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 6 - }, - "0x28cca76f6e8ec81e4550ecd761f899110b060e97": { - "address": "0x28cca76f6e8ec81e4550ecd761f899110b060e97", - "symbol": "ARGO", - "decimals": 18, - "name": "ArGoApp", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x28cca76f6e8ec81e4550ecd761f899110b060e97.png", - "aggregators": [ - "CoinMarketCap", - "LiFi", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 6 - }, - "0x0001a500a6b18995b03f44bb040a5ffc28e45cb0": { - "address": "0x0001a500a6b18995b03f44bb040a5ffc28e45cb0", - "symbol": "OLAS", - "decimals": 18, - "name": "Autonolas", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x0001a500a6b18995b03f44bb040a5ffc28e45cb0.png", - "aggregators": [ - "CoinMarketCap", - "LiFi", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 6 - }, - "0x2596825a84888e8f24b747df29e11b5dd03c81d7": { - "address": "0x2596825a84888e8f24b747df29e11b5dd03c81d7", - "symbol": "FTRB", - "decimals": 18, - "name": "Faith Tribe", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x2596825a84888e8f24b747df29e11b5dd03c81d7.png", - "aggregators": [ - "CoinMarketCap", - "LiFi", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 6 - }, - "0xa8b61cff52564758a204f841e636265bebc8db9b": { - "address": "0xa8b61cff52564758a204f841e636265bebc8db9b", - "symbol": "YIELD", - "decimals": 18, - "name": "Yield Protocol", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xa8b61cff52564758a204f841e636265bebc8db9b.png", - "aggregators": [ - "CoinMarketCap", - "1inch", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 6 - }, - "0xb2a63a5dd36c91ec2da59b188ff047f66fac122a": { - "address": "0xb2a63a5dd36c91ec2da59b188ff047f66fac122a", - "symbol": "FOLO", - "decimals": 18, - "name": "Alpha Impact", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xb2a63a5dd36c91ec2da59b188ff047f66fac122a.png", - "aggregators": [ - "CoinMarketCap", - "LiFi", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 6 - }, - "0xccba0b2bc4babe4cbfb6bd2f1edc2a9e86b7845f": { - "address": "0xccba0b2bc4babe4cbfb6bd2f1edc2a9e86b7845f", - "symbol": "WINTER", - "decimals": 18, - "name": "Winter", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xccba0b2bc4babe4cbfb6bd2f1edc2a9e86b7845f.png", - "aggregators": [ - "CoinMarketCap", - "LiFi", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 6 - }, - "0xa92e7c82b11d10716ab534051b271d2f6aef7df5": { - "address": "0xa92e7c82b11d10716ab534051b271d2f6aef7df5", - "symbol": "ARA", - "decimals": 18, - "name": "Ara Token", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xa92e7c82b11d10716ab534051b271d2f6aef7df5.png", - "aggregators": [ - "CoinMarketCap", - "Socket", - "Rubic", - "Rango", - "Sonarwatch", - "SushiSwap" - ], - "occurrences": 6 - }, - "0xa52bffad02b1fe3f86a543a4e81962d3b3bb01a7": { - "address": "0xa52bffad02b1fe3f86a543a4e81962d3b3bb01a7", - "symbol": "DUCKER", - "decimals": 18, - "name": "Duckereum", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xa52bffad02b1fe3f86a543a4e81962d3b3bb01a7.png", - "aggregators": [ - "CoinMarketCap", - "1inch", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 6 - }, - "0x6595b8fd9c920c81500dca94e53cdc712513fb1f": { - "address": "0x6595b8fd9c920c81500dca94e53cdc712513fb1f", - "symbol": "OLY", - "decimals": 18, - "name": "Olyverse", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x6595b8fd9c920c81500dca94e53cdc712513fb1f.png", - "aggregators": [ - "CoinMarketCap", - "1inch", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 6 - }, - "0xa49d7499271ae71cd8ab9ac515e6694c755d400c": { - "address": "0xa49d7499271ae71cd8ab9ac515e6694c755d400c", - "symbol": "MUTE", - "decimals": 18, - "name": "Mute", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xa49d7499271ae71cd8ab9ac515e6694c755d400c.png", - "aggregators": [ - "CoinMarketCap", - "LiFi", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 6 - }, - "0x88a9a52f944315d5b4e917b9689e65445c401e83": { - "address": "0x88a9a52f944315d5b4e917b9689e65445c401e83", - "symbol": "FEAR", - "decimals": 18, - "name": "FEAR", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x88a9a52f944315d5b4e917b9689e65445c401e83.png", - "aggregators": [ - "CoinMarketCap", - "LiFi", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 6 - }, - "0xf17a3fe536f8f7847f1385ec1bc967b2ca9cae8d": { - "address": "0xf17a3fe536f8f7847f1385ec1bc967b2ca9cae8d", - "symbol": "AMKT", - "decimals": 18, - "name": "Alongside Crypto Market Index", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xf17a3fe536f8f7847f1385ec1bc967b2ca9cae8d.png", - "aggregators": [ - "CoinMarketCap", - "LiFi", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 6 - }, - "0x67f4c72a50f8df6487720261e188f2abe83f57d7": { - "address": "0x67f4c72a50f8df6487720261e188f2abe83f57d7", - "symbol": "WPOKT", - "decimals": 6, - "name": "Wrapped POKT", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x67f4c72a50f8df6487720261e188f2abe83f57d7.png", - "aggregators": [ - "CoinMarketCap", - "LiFi", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 6 - }, - "0xdd69db25f6d620a7bad3023c5d32761d353d3de9": { - "address": "0xdd69db25f6d620a7bad3023c5d32761d353d3de9", - "symbol": "GETH", - "decimals": 18, - "name": "Goerli ETH", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xdd69db25f6d620a7bad3023c5d32761d353d3de9.png", - "aggregators": [ - "CoinMarketCap", - "LiFi", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 6 - }, - "0x4b520c812e8430659fc9f12f6d0c39026c83588d": { - "address": "0x4b520c812e8430659fc9f12f6d0c39026c83588d", - "symbol": "DG", - "decimals": 18, - "name": "Decentral Games", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x4b520c812e8430659fc9f12f6d0c39026c83588d.png", - "aggregators": [ - "CoinMarketCap", - "LiFi", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 6 - }, - "0xddf7fd345d54ff4b40079579d4c4670415dbfd0a": { - "address": "0xddf7fd345d54ff4b40079579d4c4670415dbfd0a", - "symbol": "SG", - "decimals": 18, - "name": "SocialGood", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xddf7fd345d54ff4b40079579d4c4670415dbfd0a.png", - "aggregators": [ - "CoinMarketCap", - "LiFi", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 6 - }, - "0x2559813bbb508c4c79e9ccce4703bcb1f149edd7": { - "address": "0x2559813bbb508c4c79e9ccce4703bcb1f149edd7", - "symbol": "WAIT", - "decimals": 9, - "name": "Hourglass", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x2559813bbb508c4c79e9ccce4703bcb1f149edd7.png", - "aggregators": [ - "CoinMarketCap", - "LiFi", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 6 - }, - "0x8f3470a7388c05ee4e7af3d01d8c722b0ff52374": { - "address": "0x8f3470a7388c05ee4e7af3d01d8c722b0ff52374", - "symbol": "VERI", - "decimals": 18, - "name": "Veritaseum", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x8f3470a7388c05ee4e7af3d01d8c722b0ff52374.png", - "aggregators": [ - "CoinMarketCap", - "LiFi", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 6 - }, - "0x3ea8ea4237344c9931214796d9417af1a1180770": { - "address": "0x3ea8ea4237344c9931214796d9417af1a1180770", - "symbol": "FLX", - "decimals": 18, - "name": "Flux Protocol", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x3ea8ea4237344c9931214796d9417af1a1180770.png", - "aggregators": [ - "CoinMarketCap", - "1inch", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 6 - }, - "0xb97048628db6b661d4c2aa833e95dbe1a905b280": { - "address": "0xb97048628db6b661d4c2aa833e95dbe1a905b280", - "symbol": "PAY", - "decimals": 18, - "name": "TenX", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xb97048628db6b661d4c2aa833e95dbe1a905b280.png", - "aggregators": [ - "CoinMarketCap", - "LiFi", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 6 - }, - "0xdd66781d0e9a08d4fbb5ec7bac80b691be27f21d": { - "address": "0xdd66781d0e9a08d4fbb5ec7bac80b691be27f21d", - "symbol": "AXGT", - "decimals": 18, - "name": "AxonDAO Governance Token", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xdd66781d0e9a08d4fbb5ec7bac80b691be27f21d.png", - "aggregators": [ - "CoinGecko", - "LiFi", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 6 - }, - "0x40e3d1a4b2c47d9aa61261f5606136ef73e28042": { - "address": "0x40e3d1a4b2c47d9aa61261f5606136ef73e28042", - "symbol": "SERV", - "decimals": 18, - "name": "OpenServ", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x40e3d1a4b2c47d9aa61261f5606136ef73e28042.png", - "aggregators": [ - "CoinMarketCap", - "Socket", - "Rubic", - "Squid", - "Rango", - "Sonarwatch" - ], - "occurrences": 6 - }, - "0xaa8330fb2b4d5d07abfe7a72262752a8505c6b37": { - "address": "0xaa8330fb2b4d5d07abfe7a72262752a8505c6b37", - "symbol": "POLC", - "decimals": 18, - "name": "Polkacity", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xaa8330fb2b4d5d07abfe7a72262752a8505c6b37.png", - "aggregators": [ - "CoinMarketCap", - "1inch", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 6 - }, - "0xda47862a83dac0c112ba89c6abc2159b95afd71c": { - "address": "0xda47862a83dac0c112ba89c6abc2159b95afd71c", - "symbol": "PRISMA", - "decimals": 18, - "name": "Prisma Governance Token", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xda47862a83dac0c112ba89c6abc2159b95afd71c.png", - "aggregators": [ - "CoinMarketCap", - "1inch", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 6 - }, - "0x09db87a538bd693e9d08544577d5ccfaa6373a48": { - "address": "0x09db87a538bd693e9d08544577d5ccfaa6373a48", - "symbol": "YNETH", - "decimals": 18, - "name": "YieldNest Restaked ETH", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x09db87a538bd693e9d08544577d5ccfaa6373a48.png", - "aggregators": [ - "Metamask", - "LiFi", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 6 - }, - "0x7d51888c5abb7cdfa9cdd6a50673c7f8afaccd7f": { - "address": "0x7d51888c5abb7cdfa9cdd6a50673c7f8afaccd7f", - "symbol": "DD", - "decimals": 18, - "name": "DuckDAO Token", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x7d51888c5abb7cdfa9cdd6a50673c7f8afaccd7f.png", - "aggregators": [ - "Metamask", - "LiFi", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 6 - }, - "0xadf7c35560035944e805d98ff17d58cde2449389": { - "address": "0xadf7c35560035944e805d98ff17d58cde2449389", - "symbol": "SPEC", - "decimals": 18, - "name": "Spectral", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xadf7c35560035944e805d98ff17d58cde2449389.png", - "aggregators": [ - "CoinMarketCap", - "LiFi", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 6 - }, - "0x4c3bae16c79c30eeb1004fb03c878d89695e3a99": { - "address": "0x4c3bae16c79c30eeb1004fb03c878d89695e3a99", - "symbol": "AUTUMN", - "decimals": 18, - "name": "Autumn", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x4c3bae16c79c30eeb1004fb03c878d89695e3a99.png", - "aggregators": [ - "CoinMarketCap", - "LiFi", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 6 - }, - "0x9609b540e5dedddb147abbf9812ade06b1e61b2c": { - "address": "0x9609b540e5dedddb147abbf9812ade06b1e61b2c", - "symbol": "MICKEY", - "decimals": 18, - "name": "Steamboat Willie", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x9609b540e5dedddb147abbf9812ade06b1e61b2c.png", - "aggregators": [ - "CoinMarketCap", - "LiFi", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 6 - }, - "0xda30f261a962d5aae94c9ecd170544600d193766": { - "address": "0xda30f261a962d5aae94c9ecd170544600d193766", - "symbol": "ORBR", - "decimals": 18, - "name": "Orbler", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xda30f261a962d5aae94c9ecd170544600d193766.png", - "aggregators": [ - "CoinMarketCap", - "LiFi", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 6 - }, - "0xb14ebf566511b9e6002bb286016ab2497b9b9c9d": { - "address": "0xb14ebf566511b9e6002bb286016ab2497b9b9c9d", - "symbol": "HID", - "decimals": 18, - "name": "Hypersign Identity", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xb14ebf566511b9e6002bb286016ab2497b9b9c9d.png", - "aggregators": [ - "CoinMarketCap", - "LiFi", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 6 - }, - "0xa64dfe8d86963151e6496bee513e366f6e42ed79": { - "address": "0xa64dfe8d86963151e6496bee513e366f6e42ed79", - "symbol": "GOKU", - "decimals": 9, - "name": "Goku", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xa64dfe8d86963151e6496bee513e366f6e42ed79.png", - "aggregators": [ - "CoinMarketCap", - "1inch", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 6 - }, - "0x42c83a91b3a79de5488cd9280a4df564e13a79ee": { - "address": "0x42c83a91b3a79de5488cd9280a4df564e13a79ee", - "symbol": "MIRAI", - "decimals": 18, - "name": "MIRAI", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x42c83a91b3a79de5488cd9280a4df564e13a79ee.png", - "aggregators": [ - "CoinGecko", - "Socket", - "Rubic", - "Squid", - "Rango", - "Sonarwatch" - ], - "occurrences": 6 - }, - "0x841fb148863454a3b3570f515414759be9091465": { - "address": "0x841fb148863454a3b3570f515414759be9091465", - "symbol": "SHIH", - "decimals": 18, - "name": "Shih Tzu", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x841fb148863454a3b3570f515414759be9091465.png", - "aggregators": [ - "CoinMarketCap", - "1inch", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 6 - }, - "0x922d8563631b03c2c4cf817f4d18f6883aba0109": { - "address": "0x922d8563631b03c2c4cf817f4d18f6883aba0109", - "symbol": "LOCK", - "decimals": 18, - "name": "Houdini Swap", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x922d8563631b03c2c4cf817f4d18f6883aba0109.png", - "aggregators": [ - "CoinMarketCap", - "1inch", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 6 - }, - "0x9e20461bc2c4c980f62f1b279d71734207a6a356": { - "address": "0x9e20461bc2c4c980f62f1b279d71734207a6a356", - "symbol": "OMNI", - "decimals": 18, - "name": "OmniCat", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x9e20461bc2c4c980f62f1b279d71734207a6a356.png", - "aggregators": [ - "CoinMarketCap", - "Socket", - "Rubic", - "Rango", - "Sonarwatch", - "SushiSwap" - ], - "occurrences": 6 - }, - "0x046eee2cc3188071c02bfc1745a6b17c656e3f3d": { - "address": "0x046eee2cc3188071c02bfc1745a6b17c656e3f3d", - "symbol": "RLB", - "decimals": 18, - "name": "Rollbit Coin", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x046eee2cc3188071c02bfc1745a6b17c656e3f3d.png", - "aggregators": [ - "CoinMarketCap", - "LiFi", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 6 - }, - "0x887168120cb89fb06f3e74dc4af20d67df0977f6": { - "address": "0x887168120cb89fb06f3e74dc4af20d67df0977f6", - "symbol": "SKRT", - "decimals": 18, - "name": "Sekuritance", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x887168120cb89fb06f3e74dc4af20d67df0977f6.png", - "aggregators": [ - "CoinMarketCap", - "LiFi", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 6 - }, - "0xd85a6ae55a7f33b0ee113c234d2ee308edeaf7fd": { - "address": "0xd85a6ae55a7f33b0ee113c234d2ee308edeaf7fd", - "symbol": "CBK", - "decimals": 18, - "name": "Cobak", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xd85a6ae55a7f33b0ee113c234d2ee308edeaf7fd.png", - "aggregators": [ - "CoinMarketCap", - "LiFi", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 6 - }, - "0xdb82c0d91e057e05600c8f8dc836beb41da6df14": { - "address": "0xdb82c0d91e057e05600c8f8dc836beb41da6df14", - "symbol": "SLN", - "decimals": 18, - "name": "Smart Layer Network", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xdb82c0d91e057e05600c8f8dc836beb41da6df14.png", - "aggregators": [ - "CoinMarketCap", - "LiFi", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 6 - }, - "0x9669890e48f330acd88b78d63e1a6b3482652cd9": { - "address": "0x9669890e48f330acd88b78d63e1a6b3482652cd9", - "symbol": "BCNT", - "decimals": 18, - "name": "Bincentive", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x9669890e48f330acd88b78d63e1a6b3482652cd9.png", - "aggregators": [ - "CoinMarketCap", - "LiFi", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 6 - }, - "0xd5d86fc8d5c0ea1ac1ac5dfab6e529c9967a45e9": { - "address": "0xd5d86fc8d5c0ea1ac1ac5dfab6e529c9967a45e9", - "symbol": "WRLD", - "decimals": 18, - "name": "NFT Worlds", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xd5d86fc8d5c0ea1ac1ac5dfab6e529c9967a45e9.png", - "aggregators": [ - "CoinMarketCap", - "LiFi", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 6 - }, - "0x7138eb0d563f3f6722500936a11dcae99d738a2c": { - "address": "0x7138eb0d563f3f6722500936a11dcae99d738a2c", - "symbol": "LIF3", - "decimals": 18, - "name": "Lif3", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x7138eb0d563f3f6722500936a11dcae99d738a2c.png", - "aggregators": [ - "CoinMarketCap", - "LiFi", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 6 - }, - "0xaaa9214f675316182eaa21c85f0ca99160cc3aaa": { - "address": "0xaaa9214f675316182eaa21c85f0ca99160cc3aaa", - "symbol": "QANX", - "decimals": 18, - "name": "QANplatform", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xaaa9214f675316182eaa21c85f0ca99160cc3aaa.png", - "aggregators": [ - "CoinMarketCap", - "Socket", - "Rubic", - "Squid", - "Rango", - "Sonarwatch" - ], - "occurrences": 6 - }, - "0x5dc60c4d5e75d22588fa17ffeb90a63e535efce0": { - "address": "0x5dc60c4d5e75d22588fa17ffeb90a63e535efce0", - "symbol": "DKA", - "decimals": 18, - "name": "dKargo", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x5dc60c4d5e75d22588fa17ffeb90a63e535efce0.png", - "aggregators": [ - "Metamask", - "LiFi", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 6 - }, - "0x3d1c949a761c11e4cc50c3ae6bdb0f24fd7a39da": { - "address": "0x3d1c949a761c11e4cc50c3ae6bdb0f24fd7a39da", - "symbol": "NEURA", - "decimals": 18, - "name": "Neurahub", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x3d1c949a761c11e4cc50c3ae6bdb0f24fd7a39da.png", - "aggregators": [ - "CoinMarketCap", - "1inch", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 6 - }, - "0x1f557fb2aa33dce484902695ca1374f413875519": { - "address": "0x1f557fb2aa33dce484902695ca1374f413875519", - "symbol": "VES", - "decimals": 18, - "name": "Vestate", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x1f557fb2aa33dce484902695ca1374f413875519.png", - "aggregators": [ - "CoinMarketCap", - "LiFi", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 6 - }, - "0xcbf4d5efa82e32a9187385480a7c74cb062b956c": { - "address": "0xcbf4d5efa82e32a9187385480a7c74cb062b956c", - "symbol": "SATOSHI", - "decimals": 9, - "name": "Satoshi Nakamoto", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xcbf4d5efa82e32a9187385480a7c74cb062b956c.png", - "aggregators": [ - "CoinMarketCap", - "Socket", - "Rubic", - "Squid", - "Rango", - "Sonarwatch" - ], - "occurrences": 6 - }, - "0x3429d03c6f7521aec737a0bbf2e5ddcef2c3ae31": { - "address": "0x3429d03c6f7521aec737a0bbf2e5ddcef2c3ae31", - "symbol": "PIXEL", - "decimals": 18, - "name": "Pixels", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x3429d03c6f7521aec737a0bbf2e5ddcef2c3ae31.png", - "aggregators": [ - "CoinMarketCap", - "1inch", - "LiFi", - "Socket", - "Rubic", - "Sonarwatch" - ], - "occurrences": 6 - }, - "0x7cb683151a83c2b10a30cbb003cda9996228a2ba": { - "address": "0x7cb683151a83c2b10a30cbb003cda9996228a2ba", - "symbol": "IYKYK", - "decimals": 18, - "name": "IYKYK", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x7cb683151a83c2b10a30cbb003cda9996228a2ba.png", - "aggregators": [ - "CoinMarketCap", - "Socket", - "Rubic", - "Squid", - "Rango", - "Sonarwatch" - ], - "occurrences": 6 - }, - "0x3330bfb7332ca23cd071631837dc289b09c33333": { - "address": "0x3330bfb7332ca23cd071631837dc289b09c33333", - "symbol": "RBC", - "decimals": 18, - "name": "Rubic", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x3330bfb7332ca23cd071631837dc289b09c33333.png", - "aggregators": [ - "CoinMarketCap", - "LiFi", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 6 - }, - "0xf03a7eb46d01d9ecaa104558c732cf82f6b6b645": { - "address": "0xf03a7eb46d01d9ecaa104558c732cf82f6b6b645", - "symbol": "MATICX", - "decimals": 18, - "name": "Stader MaticX", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xf03a7eb46d01d9ecaa104558c732cf82f6b6b645.png", - "aggregators": [ - "CoinMarketCap", - "LiFi", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 6 - }, - "0x7448c7456a97769f6cd04f1e83a4a23ccdc46abd": { - "address": "0x7448c7456a97769f6cd04f1e83a4a23ccdc46abd", - "symbol": "MAV", - "decimals": 18, - "name": "Maverick Protocol", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x7448c7456a97769f6cd04f1e83a4a23ccdc46abd.png", - "aggregators": [ - "CoinMarketCap", - "LiFi", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 6 - }, - "0x1a3496c18d558bd9c6c8f609e1b129f67ab08163": { - "address": "0x1a3496c18d558bd9c6c8f609e1b129f67ab08163", - "symbol": "DEP", - "decimals": 18, - "name": "DEAPCOIN", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x1a3496c18d558bd9c6c8f609e1b129f67ab08163.png", - "aggregators": [ - "CoinMarketCap", - "LiFi", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 6 - }, - "0x1f57da732a77636d913c9a75d685b26cc85dcc3a": { - "address": "0x1f57da732a77636d913c9a75d685b26cc85dcc3a", - "symbol": "OL", - "decimals": 18, - "name": "OPENLOOT", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x1f57da732a77636d913c9a75d685b26cc85dcc3a.png", - "aggregators": [ - "CoinMarketCap", - "LiFi", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 6 - }, - "0x54d2252757e1672eead234d27b1270728ff90581": { - "address": "0x54d2252757e1672eead234d27b1270728ff90581", - "symbol": "BGB", - "decimals": 18, - "name": "Bitget Token", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x54d2252757e1672eead234d27b1270728ff90581.png", - "aggregators": [ - "CoinMarketCap", - "Socket", - "Rubic", - "Squid", - "Rango", - "Sonarwatch" - ], - "occurrences": 6 - }, - "0x6dca182ac5e3f99985bc4ee0f726d6472ab1ec55": { - "address": "0x6dca182ac5e3f99985bc4ee0f726d6472ab1ec55", - "symbol": "USHI", - "decimals": 18, - "name": "Ushi", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x6dca182ac5e3f99985bc4ee0f726d6472ab1ec55.png", - "aggregators": [ - "CoinMarketCap", - "1inch", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 6 - }, - "0x614da3b37b6f66f7ce69b4bbbcf9a55ce6168707": { - "address": "0x614da3b37b6f66f7ce69b4bbbcf9a55ce6168707", - "symbol": "MMX", - "decimals": 18, - "name": "MMX", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x614da3b37b6f66f7ce69b4bbbcf9a55ce6168707.png", - "aggregators": [ - "CoinMarketCap", - "LiFi", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 6 - }, - "0x22b6c31c2beb8f2d0d5373146eed41ab9ede3caf": { - "address": "0x22b6c31c2beb8f2d0d5373146eed41ab9ede3caf", - "symbol": "COC", - "decimals": 8, - "name": "The Cocktailbar", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x22b6c31c2beb8f2d0d5373146eed41ab9ede3caf.png", - "aggregators": [ - "CoinMarketCap", - "LiFi", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 6 - }, - "0xe939f011a3d8fc0aa874c97e8156053a903d7176": { - "address": "0xe939f011a3d8fc0aa874c97e8156053a903d7176", - "symbol": "DOLZ", - "decimals": 18, - "name": "DOLZ io", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xe939f011a3d8fc0aa874c97e8156053a903d7176.png", - "aggregators": [ - "CoinMarketCap", - "LiFi", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 6 - }, - "0x900db999074d9277c5da2a43f252d74366230da0": { - "address": "0x900db999074d9277c5da2a43f252d74366230da0", - "symbol": "GIV", - "decimals": 18, - "name": "Giveth", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x900db999074d9277c5da2a43f252d74366230da0.png", - "aggregators": [ - "CoinMarketCap", - "LiFi", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 6 - }, - "0xb6ee9668771a79be7967ee29a63d4184f8097143": { - "address": "0xb6ee9668771a79be7967ee29a63d4184f8097143", - "symbol": "CXO", - "decimals": 18, - "name": "CargoX", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xb6ee9668771a79be7967ee29a63d4184f8097143.png", - "aggregators": [ - "CoinMarketCap", - "LiFi", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 6 - }, - "0x1cf4592ebffd730c7dc92c1bdffdfc3b9efcf29a": { - "address": "0x1cf4592ebffd730c7dc92c1bdffdfc3b9efcf29a", - "symbol": "WAVES", - "decimals": 18, - "name": "WAVES", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x1cf4592ebffd730c7dc92c1bdffdfc3b9efcf29a.png", - "aggregators": [ - "Metamask", - "Socket", - "Rubic", - "Rango", - "Sonarwatch", - "SushiSwap" - ], - "occurrences": 6 - }, - "0xfc82bb4ba86045af6f327323a46e80412b91b27d": { - "address": "0xfc82bb4ba86045af6f327323a46e80412b91b27d", - "symbol": "PROM", - "decimals": 18, - "name": "Prom", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xfc82bb4ba86045af6f327323a46e80412b91b27d.png", - "aggregators": [ - "CoinMarketCap", - "LiFi", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 6 - }, - "0x5e3346444010135322268a4630d2ed5f8d09446c": { - "address": "0x5e3346444010135322268a4630d2ed5f8d09446c", - "symbol": "LOC", - "decimals": 18, - "name": "LockTrip", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x5e3346444010135322268a4630d2ed5f8d09446c.png", - "aggregators": [ - "CoinMarketCap", - "LiFi", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 6 - }, - "0x58cb30368ceb2d194740b144eab4c2da8a917dcb": { - "address": "0x58cb30368ceb2d194740b144eab4c2da8a917dcb", - "symbol": "ZYN", - "decimals": 18, - "name": "ZynCoin", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x58cb30368ceb2d194740b144eab4c2da8a917dcb.png", - "aggregators": [ - "CoinMarketCap", - "Socket", - "Rubic", - "Squid", - "Rango", - "Sonarwatch" - ], - "occurrences": 6 - }, - "0x57b96d4af698605563a4653d882635da59bf11af": { - "address": "0x57b96d4af698605563a4653d882635da59bf11af", - "symbol": "RCH", - "decimals": 18, - "name": "RCH Token", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x57b96d4af698605563a4653d882635da59bf11af.png", - "aggregators": [ - "CoinMarketCap", - "Socket", - "Rubic", - "Squid", - "Rango", - "Sonarwatch" - ], - "occurrences": 6 - }, - "0xfa3e941d1f6b7b10ed84a0c211bfa8aee907965e": { - "address": "0xfa3e941d1f6b7b10ed84a0c211bfa8aee907965e", - "symbol": "HAY", - "decimals": 18, - "name": "HayCoin", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xfa3e941d1f6b7b10ed84a0c211bfa8aee907965e.png", - "aggregators": [ - "CoinMarketCap", - "LiFi", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 6 - }, - "0xd567b5f02b9073ad3a982a099a23bf019ff11d1c": { - "address": "0xd567b5f02b9073ad3a982a099a23bf019ff11d1c", - "symbol": "GAME", - "decimals": 5, - "name": "Gamestarter", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xd567b5f02b9073ad3a982a099a23bf019ff11d1c.png", - "aggregators": [ - "CoinMarketCap", - "LiFi", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 6 - }, - "0xf04af3f4e4929f7cd25a751e6149a3318373d4fe": { - "address": "0xf04af3f4e4929f7cd25a751e6149a3318373d4fe", - "symbol": "SPRING", - "decimals": 18, - "name": "Spring Token", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xf04af3f4e4929f7cd25a751e6149a3318373d4fe.png", - "aggregators": [ - "CoinMarketCap", - "LiFi", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 6 - }, - "0x5b649c07e7ba0a1c529deaabed0b47699919b4a2": { - "address": "0x5b649c07e7ba0a1c529deaabed0b47699919b4a2", - "symbol": "SGT", - "decimals": 8, - "name": "AI Avatar", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x5b649c07e7ba0a1c529deaabed0b47699919b4a2.png", - "aggregators": [ - "CoinMarketCap", - "LiFi", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 6 - }, - "0x6369c3dadfc00054a42ba8b2c09c48131dd4aa38": { - "address": "0x6369c3dadfc00054a42ba8b2c09c48131dd4aa38", - "symbol": "MPH", - "decimals": 18, - "name": "Morpher", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x6369c3dadfc00054a42ba8b2c09c48131dd4aa38.png", - "aggregators": [ - "CoinMarketCap", - "LiFi", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 6 - }, - "0xdc524e3c6910257744c1f93cf15e9f472b5bd236": { - "address": "0xdc524e3c6910257744c1f93cf15e9f472b5bd236", - "symbol": "WITCH", - "decimals": 18, - "name": "Witch Token", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xdc524e3c6910257744c1f93cf15e9f472b5bd236.png", - "aggregators": [ - "CoinMarketCap", - "LiFi", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 6 - }, - "0xadd39272e83895e7d3f244f696b7a25635f34234": { - "address": "0xadd39272e83895e7d3f244f696b7a25635f34234", - "symbol": "PEPU", - "decimals": 18, - "name": "Pepe Unchained", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xadd39272e83895e7d3f244f696b7a25635f34234.png", - "aggregators": [ - "CoinGecko", - "LiFi", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 6 - }, - "0x4d4f3715050571a447fffa2cd4cf091c7014ca5c": { - "address": "0x4d4f3715050571a447fffa2cd4cf091c7014ca5c", - "symbol": "SUMMER", - "decimals": 18, - "name": "Summer", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x4d4f3715050571a447fffa2cd4cf091c7014ca5c.png", - "aggregators": [ - "CoinMarketCap", - "LiFi", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 6 - }, - "0x421b05cf5ce28cb7347e73e2278e84472f0e4a88": { - "address": "0x421b05cf5ce28cb7347e73e2278e84472f0e4a88", - "symbol": "SEN", - "decimals": 18, - "name": "Sentio AI", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x421b05cf5ce28cb7347e73e2278e84472f0e4a88.png", - "aggregators": [ - "CoinMarketCap", - "LiFi", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 6 - }, - "0xd2ba23de8a19316a638dc1e7a9adda1d74233368": { - "address": "0xd2ba23de8a19316a638dc1e7a9adda1d74233368", - "symbol": "QUICK", - "decimals": 18, - "name": "QuickSwap", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xd2ba23de8a19316a638dc1e7a9adda1d74233368.png", - "aggregators": [ - "Metamask", - "LiFi", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 6 - }, - "0x2598c30330d5771ae9f983979209486ae26de875": { - "address": "0x2598c30330d5771ae9f983979209486ae26de875", - "symbol": "AI", - "decimals": 18, - "name": "Any Inu", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x2598c30330d5771ae9f983979209486ae26de875.png", - "aggregators": [ - "CoinMarketCap", - "Socket", - "Rubic", - "Squid", - "Rango", - "Sonarwatch" - ], - "occurrences": 6 - }, - "0x186ef81fd8e77eec8bffc3039e7ec41d5fc0b457": { - "address": "0x186ef81fd8e77eec8bffc3039e7ec41d5fc0b457", - "symbol": "INSP", - "decimals": 18, - "name": "Inspect", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x186ef81fd8e77eec8bffc3039e7ec41d5fc0b457.png", - "aggregators": [ - "CoinMarketCap", - "LiFi", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 6 - }, - "0xfd0205066521550d7d7ab19da8f72bb004b4c341": { - "address": "0xfd0205066521550d7d7ab19da8f72bb004b4c341", - "symbol": "LIT", - "decimals": 18, - "name": "Timeless", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xfd0205066521550d7d7ab19da8f72bb004b4c341.png", - "aggregators": [ - "CoinGecko", - "LiFi", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 6 - }, - "0xacd2c239012d17beb128b0944d49015104113650": { - "address": "0xacd2c239012d17beb128b0944d49015104113650", - "symbol": "KARRAT", - "decimals": 18, - "name": "Karrat", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xacd2c239012d17beb128b0944d49015104113650.png", - "aggregators": [ - "CoinMarketCap", - "LiFi", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 6 - }, - "0x249e38ea4102d0cf8264d3701f1a0e39c4f2dc3b": { - "address": "0x249e38ea4102d0cf8264d3701f1a0e39c4f2dc3b", - "symbol": "UFO", - "decimals": 18, - "name": "UFO Gaming", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x249e38ea4102d0cf8264d3701f1a0e39c4f2dc3b.png", - "aggregators": [ - "CoinMarketCap", - "1inch", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 6 - }, - "0x9343e24716659a3551eb10aff9472a2dcad5db2d": { - "address": "0x9343e24716659a3551eb10aff9472a2dcad5db2d", - "symbol": "STFX", - "decimals": 18, - "name": "STFX", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x9343e24716659a3551eb10aff9472a2dcad5db2d.png", - "aggregators": [ - "CoinMarketCap", - "LiFi", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 6 - }, - "0x02f92800f57bcd74066f5709f1daa1a4302df875": { - "address": "0x02f92800f57bcd74066f5709f1daa1a4302df875", - "symbol": "PEAS", - "decimals": 18, - "name": "Peapods Finance", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x02f92800f57bcd74066f5709f1daa1a4302df875.png", - "aggregators": [ - "CoinMarketCap", - "LiFi", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 6 - }, - "0x33333333fede34409fb7f67c6585047e1f653333": { - "address": "0x33333333fede34409fb7f67c6585047e1f653333", - "symbol": "ORA", - "decimals": 18, - "name": "ORA Coin", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x33333333fede34409fb7f67c6585047e1f653333.png", - "aggregators": [ - "CoinMarketCap", - "LiFi", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 6 - }, - "0xf0d33beda4d734c72684b5f9abbebf715d0a7935": { - "address": "0xf0d33beda4d734c72684b5f9abbebf715d0a7935", - "symbol": "NTX", - "decimals": 6, - "name": "NuNet", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xf0d33beda4d734c72684b5f9abbebf715d0a7935.png", - "aggregators": [ - "CoinMarketCap", - "1inch", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 6 - }, - "0x686f2404e77ab0d9070a46cdfb0b7fecdd2318b0": { - "address": "0x686f2404e77ab0d9070a46cdfb0b7fecdd2318b0", - "symbol": "LORDS", - "decimals": 18, - "name": "LORDS", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x686f2404e77ab0d9070a46cdfb0b7fecdd2318b0.png", - "aggregators": [ - "CoinMarketCap", - "LiFi", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 6 - }, - "0xd13cfd3133239a3c73a9e535a5c4dadee36b395c": { - "address": "0xd13cfd3133239a3c73a9e535a5c4dadee36b395c", - "symbol": "VAI", - "decimals": 18, - "name": "VAIOT", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xd13cfd3133239a3c73a9e535a5c4dadee36b395c.png", - "aggregators": [ - "CoinMarketCap", - "LiFi", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 6 - }, - "0xd807f7e2818db8eda0d28b5be74866338eaedb86": { - "address": "0xd807f7e2818db8eda0d28b5be74866338eaedb86", - "symbol": "JIM", - "decimals": 18, - "name": "jim", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xd807f7e2818db8eda0d28b5be74866338eaedb86.png", - "aggregators": [ - "CoinMarketCap", - "Socket", - "Rubic", - "Rango", - "Sonarwatch", - "SushiSwap" - ], - "occurrences": 6 - }, - "0x6e5970dbd6fc7eb1f29c6d2edf2bc4c36124c0c1": { - "address": "0x6e5970dbd6fc7eb1f29c6d2edf2bc4c36124c0c1", - "symbol": "TRADE", - "decimals": 18, - "name": "Polytrade", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x6e5970dbd6fc7eb1f29c6d2edf2bc4c36124c0c1.png", - "aggregators": [ - "CoinMarketCap", - "LiFi", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 6 - }, - "0x64d0f55cd8c7133a9d7102b13987235f486f2224": { - "address": "0x64d0f55cd8c7133a9d7102b13987235f486f2224", - "symbol": "BORG", - "decimals": 18, - "name": "SwissBorg", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x64d0f55cd8c7133a9d7102b13987235f486f2224.png", - "aggregators": [ - "CoinMarketCap", - "1inch", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 6 - }, - "0x644192291cc835a93d6330b24ea5f5fedd0eef9e": { - "address": "0x644192291cc835a93d6330b24ea5f5fedd0eef9e", - "symbol": "NXRA", - "decimals": 18, - "name": "Nexera", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x644192291cc835a93d6330b24ea5f5fedd0eef9e.png", - "aggregators": [ - "CoinMarketCap", - "LiFi", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 6 - }, - "0x2fb652314c3d850e9049057bbe9813f1eee882d3": { - "address": "0x2fb652314c3d850e9049057bbe9813f1eee882d3", - "symbol": "RVF", - "decimals": 18, - "name": "RocketX Exchange", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x2fb652314c3d850e9049057bbe9813f1eee882d3.png", - "aggregators": [ - "CoinMarketCap", - "LiFi", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 6 - }, - "0x738865301a9b7dd80dc3666dd48cf034ec42bdda": { - "address": "0x738865301a9b7dd80dc3666dd48cf034ec42bdda", - "symbol": "AGRS", - "decimals": 8, - "name": "Agoras Tau Net", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x738865301a9b7dd80dc3666dd48cf034ec42bdda.png", - "aggregators": [ - "CoinMarketCap", - "1inch", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 6 - }, - "0x2c974b2d0ba1716e644c1fc59982a89ddd2ff724": { - "address": "0x2c974b2d0ba1716e644c1fc59982a89ddd2ff724", - "symbol": "VIB", - "decimals": 18, - "name": "Vibe", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x2c974b2d0ba1716e644c1fc59982a89ddd2ff724.png", - "aggregators": [ - "CoinMarketCap", - "Socket", - "Rubic", - "Rango", - "Sonarwatch", - "Bancor" - ], - "occurrences": 6 - }, - "0xac3211a5025414af2866ff09c23fc18bc97e79b1": { - "address": "0xac3211a5025414af2866ff09c23fc18bc97e79b1", - "symbol": "DOV", - "decimals": 18, - "name": "Dovu OLD", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xac3211a5025414af2866ff09c23fc18bc97e79b1.png", - "aggregators": [ - "CoinMarketCap", - "1inch", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 6 - }, - "0xc690f7c7fcffa6a82b79fab7508c466fefdfc8c5": { - "address": "0xc690f7c7fcffa6a82b79fab7508c466fefdfc8c5", - "symbol": "LYM", - "decimals": 18, - "name": "Lympo", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xc690f7c7fcffa6a82b79fab7508c466fefdfc8c5.png", - "aggregators": [ - "CoinMarketCap", - "1inch", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 6 - }, - "0x765f0c16d1ddc279295c1a7c24b0883f62d33f75": { - "address": "0x765f0c16d1ddc279295c1a7c24b0883f62d33f75", - "symbol": "DTX", - "decimals": 18, - "name": "DaTa eXchange DTX", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x765f0c16d1ddc279295c1a7c24b0883f62d33f75.png", - "aggregators": [ - "CoinMarketCap", - "LiFi", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 6 - }, - "0x6226e00bcac68b0fe55583b90a1d727c14fab77f": { - "address": "0x6226e00bcac68b0fe55583b90a1d727c14fab77f", - "symbol": "MTV", - "decimals": 18, - "name": "MultiVAC", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x6226e00bcac68b0fe55583b90a1d727c14fab77f.png", - "aggregators": [ - "CoinMarketCap", - "LiFi", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 6 - }, - "0x04c17b9d3b29a78f7bd062a57cf44fc633e71f85": { - "address": "0x04c17b9d3b29a78f7bd062a57cf44fc633e71f85", - "symbol": "IMPT", - "decimals": 18, - "name": "IMPT", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x04c17b9d3b29a78f7bd062a57cf44fc633e71f85.png", - "aggregators": [ - "CoinMarketCap", - "LiFi", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 6 - }, - "0x83869de76b9ad8125e22b857f519f001588c0f62": { - "address": "0x83869de76b9ad8125e22b857f519f001588c0f62", - "symbol": "EXM", - "decimals": 8, - "name": "EXMO Coin", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x83869de76b9ad8125e22b857f519f001588c0f62.png", - "aggregators": [ - "CoinMarketCap", - "LiFi", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 6 - }, - "0x3301ee63fb29f863f2333bd4466acb46cd8323e6": { - "address": "0x3301ee63fb29f863f2333bd4466acb46cd8323e6", - "symbol": "AKITA", - "decimals": 18, - "name": "Akita Inu", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x3301ee63fb29f863f2333bd4466acb46cd8323e6.png", - "aggregators": [ - "CoinGecko", - "1inch", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 6 - }, - "0xa7de087329bfcda5639247f96140f9dabe3deed1": { - "address": "0xa7de087329bfcda5639247f96140f9dabe3deed1", - "symbol": "STA", - "decimals": 18, - "name": "Statera", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xa7de087329bfcda5639247f96140f9dabe3deed1.png", - "aggregators": [ - "CoinMarketCap", - "LiFi", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 6 - }, - "0xf65b5c5104c4fafd4b709d9d60a185eae063276c": { - "address": "0xf65b5c5104c4fafd4b709d9d60a185eae063276c", - "symbol": "TRU", - "decimals": 18, - "name": "Truebit Protocol", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xf65b5c5104c4fafd4b709d9d60a185eae063276c.png", - "aggregators": [ - "CoinMarketCap", - "LiFi", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 6 - }, - "0xb2617246d0c6c0087f18703d576831899ca94f01": { - "address": "0xb2617246d0c6c0087f18703d576831899ca94f01", - "symbol": "ZIG", - "decimals": 18, - "name": "ZIGChain", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xb2617246d0c6c0087f18703d576831899ca94f01.png", - "aggregators": [ - "CoinMarketCap", - "Socket", - "Rubic", - "Squid", - "Rango", - "Sonarwatch" - ], - "occurrences": 6 - }, - "0xc6dddb5bc6e61e0841c54f3e723ae1f3a807260b": { - "address": "0xc6dddb5bc6e61e0841c54f3e723ae1f3a807260b", - "symbol": "URUS", - "decimals": 18, - "name": "Aurox", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xc6dddb5bc6e61e0841c54f3e723ae1f3a807260b.png", - "aggregators": [ - "CoinMarketCap", - "1inch", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 6 - }, - "0x74232704659ef37c08995e386a2e26cc27a8d7b1": { - "address": "0x74232704659ef37c08995e386a2e26cc27a8d7b1", - "symbol": "STRK", - "decimals": 18, - "name": "Strike Token", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x74232704659ef37c08995e386a2e26cc27a8d7b1.png", - "aggregators": [ - "CoinMarketCap", - "Socket", - "Rubic", - "Rango", - "Sonarwatch", - "SushiSwap" - ], - "occurrences": 6 - }, - "0x9196e18bc349b1f64bc08784eae259525329a1ad": { - "address": "0x9196e18bc349b1f64bc08784eae259525329a1ad", - "symbol": "PUSSY", - "decimals": 18, - "name": "Pussy Financial", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x9196e18bc349b1f64bc08784eae259525329a1ad.png", - "aggregators": [ - "CoinMarketCap", - "Socket", - "Rubic", - "Squid", - "Rango", - "Sonarwatch" - ], - "occurrences": 6 - }, - "0xcda4e840411c00a614ad9205caec807c7458a0e3": { - "address": "0xcda4e840411c00a614ad9205caec807c7458a0e3", - "symbol": "UFI", - "decimals": 18, - "name": "PureFi", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xcda4e840411c00a614ad9205caec807c7458a0e3.png", - "aggregators": [ - "CoinMarketCap", - "LiFi", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 6 - }, - "0x20bc832ca081b91433ff6c17f85701b6e92486c5": { - "address": "0x20bc832ca081b91433ff6c17f85701b6e92486c5", - "symbol": "RETH2", - "decimals": 18, - "name": "rETH2", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x20bc832ca081b91433ff6c17f85701b6e92486c5.png", - "aggregators": [ - "CoinMarketCap", - "LiFi", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 6 - }, - "0x8e6cd950ad6ba651f6dd608dc70e5886b1aa6b24": { - "address": "0x8e6cd950ad6ba651f6dd608dc70e5886b1aa6b24", - "symbol": "STARL", - "decimals": 18, - "name": "StarLink", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x8e6cd950ad6ba651f6dd608dc70e5886b1aa6b24.png", - "aggregators": [ - "CoinMarketCap", - "1inch", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 6 - }, - "0x8db1d28ee0d822367af8d220c0dc7cb6fe9dc442": { - "address": "0x8db1d28ee0d822367af8d220c0dc7cb6fe9dc442", - "symbol": "ETHPAD", - "decimals": 18, - "name": "ETHPad", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x8db1d28ee0d822367af8d220c0dc7cb6fe9dc442.png", - "aggregators": [ - "CoinMarketCap", - "1inch", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 6 - }, - "0xa1a36d3537bbe375cc9694795f663ddc8d516db9": { - "address": "0xa1a36d3537bbe375cc9694795f663ddc8d516db9", - "symbol": "POLI", - "decimals": 18, - "name": "Polinate", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xa1a36d3537bbe375cc9694795f663ddc8d516db9.png", - "aggregators": [ - "CoinMarketCap", - "LiFi", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 6 - }, - "0xb26c4b3ca601136daf98593feaeff9e0ca702a8d": { - "address": "0xb26c4b3ca601136daf98593feaeff9e0ca702a8d", - "symbol": "ALD", - "decimals": 18, - "name": "Aladdin DAO", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xb26c4b3ca601136daf98593feaeff9e0ca702a8d.png", - "aggregators": [ - "CoinMarketCap", - "1inch", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 6 - }, - "0xd502f487e1841fdc805130e13eae80c61186bc98": { - "address": "0xd502f487e1841fdc805130e13eae80c61186bc98", - "symbol": "ITGR", - "decimals": 18, - "name": "Integral", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xd502f487e1841fdc805130e13eae80c61186bc98.png", - "aggregators": [ - "CoinMarketCap", - "LiFi", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 6 - }, - "0xe66747a101bff2dba3697199dcce5b743b454759": { - "address": "0xe66747a101bff2dba3697199dcce5b743b454759", - "symbol": "GT", - "decimals": 18, - "name": "Gate", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xe66747a101bff2dba3697199dcce5b743b454759.png", - "aggregators": [ - "CoinMarketCap", - "LiFi", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 6 - }, - "0x6100dd79fcaa88420750dcee3f735d168abcb771": { - "address": "0x6100dd79fcaa88420750dcee3f735d168abcb771", - "symbol": "OS", - "decimals": 18, - "name": "Ethereans", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x6100dd79fcaa88420750dcee3f735d168abcb771.png", - "aggregators": [ - "CoinMarketCap", - "LiFi", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 6 - }, - "0x710287d1d39dcf62094a83ebb3e736e79400068a": { - "address": "0x710287d1d39dcf62094a83ebb3e736e79400068a", - "symbol": "ENQAI", - "decimals": 18, - "name": "enqAI", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x710287d1d39dcf62094a83ebb3e736e79400068a.png", - "aggregators": [ - "CoinMarketCap", - "LiFi", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 6 - }, - "0x34be5b8c30ee4fde069dc878989686abe9884470": { - "address": "0x34be5b8c30ee4fde069dc878989686abe9884470", - "symbol": "SENATE", - "decimals": 18, - "name": "SENATE", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x34be5b8c30ee4fde069dc878989686abe9884470.png", - "aggregators": [ - "CoinMarketCap", - "LiFi", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 6 - }, - "0xc555d625828c4527d477e595ff1dd5801b4a600e": { - "address": "0xc555d625828c4527d477e595ff1dd5801b4a600e", - "symbol": "MON", - "decimals": 18, - "name": "MON", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xc555d625828c4527d477e595ff1dd5801b4a600e.png", - "aggregators": [ - "CoinMarketCap", - "LiFi", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 6 - }, - "0x5c1d9aa868a30795f92fae903edc9eff269044bf": { - "address": "0x5c1d9aa868a30795f92fae903edc9eff269044bf", - "symbol": "CNG", - "decimals": 18, - "name": "Changer", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x5c1d9aa868a30795f92fae903edc9eff269044bf.png", - "aggregators": [ - "CoinMarketCap", - "LiFi", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 6 - }, - "0x32b86b99441480a7e5bd3a26c124ec2373e3f015": { - "address": "0x32b86b99441480a7e5bd3a26c124ec2373e3f015", - "symbol": "BAD", - "decimals": 18, - "name": "Bad Idea AI", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x32b86b99441480a7e5bd3a26c124ec2373e3f015.png", - "aggregators": [ - "CoinMarketCap", - "1inch", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 6 - }, - "0xae41b275aaaf484b541a5881a2dded9515184cca": { - "address": "0xae41b275aaaf484b541a5881a2dded9515184cca", - "symbol": "CSWAP", - "decimals": 18, - "name": "ChainSwap", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xae41b275aaaf484b541a5881a2dded9515184cca.png", - "aggregators": [ - "CoinMarketCap", - "1inch", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 6 - }, - "0x777172d858dc1599914a1c4c6c9fc48c99a60990": { - "address": "0x777172d858dc1599914a1c4c6c9fc48c99a60990", - "symbol": "SOLID", - "decimals": 18, - "name": "Solidly", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x777172d858dc1599914a1c4c6c9fc48c99a60990.png", - "aggregators": [ - "CoinMarketCap", - "LiFi", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 6 - }, - "0xbcd4d5ac29e06e4973a1ddcd782cd035d04bc0b7": { - "address": "0xbcd4d5ac29e06e4973a1ddcd782cd035d04bc0b7", - "symbol": "QKNTL", - "decimals": 18, - "name": "Quick Intel", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xbcd4d5ac29e06e4973a1ddcd782cd035d04bc0b7.png", - "aggregators": [ - "CoinMarketCap", - "LiFi", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 6 - }, - "0xba386a4ca26b85fd057ab1ef86e3dc7bdeb5ce70": { - "address": "0xba386a4ca26b85fd057ab1ef86e3dc7bdeb5ce70", - "symbol": "JESUS", - "decimals": 18, - "name": "Jesus Coin", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xba386a4ca26b85fd057ab1ef86e3dc7bdeb5ce70.png", - "aggregators": [ - "CoinMarketCap", - "1inch", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 6 - }, - "0x955d5c14c8d4944da1ea7836bd44d54a8ec35ba1": { - "address": "0x955d5c14c8d4944da1ea7836bd44d54a8ec35ba1", - "symbol": "RFD", - "decimals": 18, - "name": "REFUND", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x955d5c14c8d4944da1ea7836bd44d54a8ec35ba1.png", - "aggregators": [ - "CoinMarketCap", - "Socket", - "Rubic", - "Rango", - "Sonarwatch", - "SushiSwap" - ], - "occurrences": 6 - }, - "0xd96e84ddbc7cbe1d73c55b6fe8c64f3a6550deea": { - "address": "0xd96e84ddbc7cbe1d73c55b6fe8c64f3a6550deea", - "symbol": "GMAC", - "decimals": 18, - "name": "Gemach", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xd96e84ddbc7cbe1d73c55b6fe8c64f3a6550deea.png", - "aggregators": [ - "CoinMarketCap", - "LiFi", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 6 - }, - "0xbe042e9d09cb588331ff911c2b46fd833a3e5bd6": { - "address": "0xbe042e9d09cb588331ff911c2b46fd833a3e5bd6", - "symbol": "PEPE", - "decimals": 18, - "name": "Pepe Community", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xbe042e9d09cb588331ff911c2b46fd833a3e5bd6.png", - "aggregators": [ - "Metamask", - "LiFi", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 6 - }, - "0x9ee8c380e1926730ad89e91665ff27063b13c90a": { - "address": "0x9ee8c380e1926730ad89e91665ff27063b13c90a", - "symbol": "CA", - "decimals": 18, - "name": "Coupon Assets", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x9ee8c380e1926730ad89e91665ff27063b13c90a.png", - "aggregators": [ - "CoinMarketCap", - "LiFi", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 6 - }, - "0xbef26bd568e421d6708cca55ad6e35f8bfa0c406": { - "address": "0xbef26bd568e421d6708cca55ad6e35f8bfa0c406", - "symbol": "BCUT", - "decimals": 18, - "name": "bitsCrunch Token", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xbef26bd568e421d6708cca55ad6e35f8bfa0c406.png", - "aggregators": [ - "CoinMarketCap", - "LiFi", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 6 - }, - "0x02d3a27ac3f55d5d91fb0f52759842696a864217": { - "address": "0x02d3a27ac3f55d5d91fb0f52759842696a864217", - "symbol": "IONX", - "decimals": 18, - "name": "Charged Particles", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x02d3a27ac3f55d5d91fb0f52759842696a864217.png", - "aggregators": [ - "CoinMarketCap", - "LiFi", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 6 - }, - "0x19062190b1925b5b6689d7073fdfc8c2976ef8cb": { - "address": "0x19062190b1925b5b6689d7073fdfc8c2976ef8cb", - "symbol": "BZZ", - "decimals": 16, - "name": "Swarm", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x19062190b1925b5b6689d7073fdfc8c2976ef8cb.png", - "aggregators": [ - "Metamask", - "LiFi", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 6 - }, - "0x8af78f0c818302164f73b2365fe152c2d1fe80e1": { - "address": "0x8af78f0c818302164f73b2365fe152c2d1fe80e1", - "symbol": "FNCT", - "decimals": 18, - "name": "Financie Token", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x8af78f0c818302164f73b2365fe152c2d1fe80e1.png", - "aggregators": [ - "CoinMarketCap", - "LiFi", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 6 - }, - "0x82a605d6d9114f4ad6d5ee461027477eeed31e34": { - "address": "0x82a605d6d9114f4ad6d5ee461027477eeed31e34", - "symbol": "SNSY", - "decimals": 18, - "name": "Sensay", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x82a605d6d9114f4ad6d5ee461027477eeed31e34.png", - "aggregators": [ - "CoinMarketCap", - "LiFi", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 6 - }, - "0xc28eb2250d1ae32c7e74cfb6d6b86afc9beb6509": { - "address": "0xc28eb2250d1ae32c7e74cfb6d6b86afc9beb6509", - "symbol": "OPN", - "decimals": 18, - "name": "OPEN Ticketing Ecosystem", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xc28eb2250d1ae32c7e74cfb6d6b86afc9beb6509.png", - "aggregators": [ - "CoinMarketCap", - "LiFi", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 6 - }, - "0x52a8845df664d76c69d2eea607cd793565af42b8": { - "address": "0x52a8845df664d76c69d2eea607cd793565af42b8", - "symbol": "APEX", - "decimals": 18, - "name": "ApeX", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x52a8845df664d76c69d2eea607cd793565af42b8.png", - "aggregators": [ - "CoinMarketCap", - "LiFi", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 6 - }, - "0xd1ba9bac957322d6e8c07a160a3a8da11a0d2867": { - "address": "0xd1ba9bac957322d6e8c07a160a3a8da11a0d2867", - "symbol": "HMT", - "decimals": 18, - "name": "HUMAN Protocol", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xd1ba9bac957322d6e8c07a160a3a8da11a0d2867.png", - "aggregators": [ - "CoinMarketCap", - "LiFi", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 6 - }, - "0x473f4068073cd5b2ab0e4cc8e146f9edc6fb52cc": { - "address": "0x473f4068073cd5b2ab0e4cc8e146f9edc6fb52cc", - "symbol": "NUT", - "decimals": 18, - "name": "NutCoin", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x473f4068073cd5b2ab0e4cc8e146f9edc6fb52cc.png", - "aggregators": [ - "CoinMarketCap", - "Socket", - "Rubic", - "Squid", - "Rango", - "Sonarwatch" - ], - "occurrences": 6 - }, - "0x623cd3a3edf080057892aaf8d773bbb7a5c9b6e9": { - "address": "0x623cd3a3edf080057892aaf8d773bbb7a5c9b6e9", - "symbol": "SKYA", - "decimals": 18, - "name": "Sekuya Multiverse", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x623cd3a3edf080057892aaf8d773bbb7a5c9b6e9.png", - "aggregators": [ - "CoinMarketCap", - "LiFi", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 6 - }, - "0xc96de26018a54d51c097160568752c4e3bd6c364": { - "address": "0xc96de26018a54d51c097160568752c4e3bd6c364", - "symbol": "FBTC", - "decimals": 8, - "name": "Function BTC", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xc96de26018a54d51c097160568752c4e3bd6c364.png", - "aggregators": [ - "CoinMarketCap", - "LiFi", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 6 - }, - "0xeeb4d8400aeefafc1b2953e0094134a887c76bd8": { - "address": "0xeeb4d8400aeefafc1b2953e0094134a887c76bd8", - "symbol": "AVAIL", - "decimals": 18, - "name": "Avail", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xeeb4d8400aeefafc1b2953e0094134a887c76bd8.png", - "aggregators": [ - "CoinMarketCap", - "LiFi", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 6 - }, - "0x20d4db1946859e2adb0e5acc2eac58047ad41395": { - "address": "0x20d4db1946859e2adb0e5acc2eac58047ad41395", - "symbol": "MOONEY", - "decimals": 18, - "name": "Moon DAO", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x20d4db1946859e2adb0e5acc2eac58047ad41395.png", - "aggregators": [ - "CoinMarketCap", - "LiFi", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 6 - }, - "0x569424c5ee13884a193773fdc5d1c5f79c443a51": { - "address": "0x569424c5ee13884a193773fdc5d1c5f79c443a51", - "symbol": "PINE", - "decimals": 18, - "name": "Pine", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x569424c5ee13884a193773fdc5d1c5f79c443a51.png", - "aggregators": [ - "CoinMarketCap", - "LiFi", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 6 - }, - "0x423352f2c6e0e72422b69af03aba259310146d90": { - "address": "0x423352f2c6e0e72422b69af03aba259310146d90", - "symbol": "RMV", - "decimals": 18, - "name": "Reality Metaverse", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x423352f2c6e0e72422b69af03aba259310146d90.png", - "aggregators": [ - "CoinMarketCap", - "LiFi", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 6 - }, - "0xb8647e90c0645152fccf4d9abb6b59eb4aa99052": { - "address": "0xb8647e90c0645152fccf4d9abb6b59eb4aa99052", - "symbol": "KEYFI", - "decimals": 18, - "name": "KeyFi", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xb8647e90c0645152fccf4d9abb6b59eb4aa99052.png", - "aggregators": [ - "CoinMarketCap", - "LiFi", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 6 - }, - "0x391cf4b21f557c935c7f670218ef42c21bd8d686": { - "address": "0x391cf4b21f557c935c7f670218ef42c21bd8d686", - "symbol": "XMW", - "decimals": 18, - "name": "Morphware", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x391cf4b21f557c935c7f670218ef42c21bd8d686.png", - "aggregators": [ - "CoinMarketCap", - "LiFi", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 6 - }, - "0x33f391f4c4fe802b70b77ae37670037a92114a7c": { - "address": "0x33f391f4c4fe802b70b77ae37670037a92114a7c", - "symbol": "BURP", - "decimals": 18, - "name": "Burp", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x33f391f4c4fe802b70b77ae37670037a92114a7c.png", - "aggregators": [ - "CoinMarketCap", - "LiFi", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 6 - }, - "0x5f0bc16d50f72d10b719dbf6845de2e599eb5624": { - "address": "0x5f0bc16d50f72d10b719dbf6845de2e599eb5624", - "symbol": "VENT", - "decimals": 18, - "name": "Vent Finance", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x5f0bc16d50f72d10b719dbf6845de2e599eb5624.png", - "aggregators": [ - "CoinMarketCap", - "LiFi", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 6 - }, - "0x4ec1b60b96193a64acae44778e51f7bff2007831": { - "address": "0x4ec1b60b96193a64acae44778e51f7bff2007831", - "symbol": "EDGE", - "decimals": 18, - "name": "Edge", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x4ec1b60b96193a64acae44778e51f7bff2007831.png", - "aggregators": [ - "CoinMarketCap", - "LiFi", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 6 - }, - "0x1095ae55b62174d9ea3bc6a4136acacad461d7ce": { - "address": "0x1095ae55b62174d9ea3bc6a4136acacad461d7ce", - "symbol": "ITHACA", - "decimals": 18, - "name": "Ithaca Protocol", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x1095ae55b62174d9ea3bc6a4136acacad461d7ce.png", - "aggregators": [ - "CoinMarketCap", - "Socket", - "Rubic", - "Squid", - "Rango", - "Sonarwatch" - ], - "occurrences": 6 - }, - "0xfe18ae03741a5b84e39c295ac9c856ed7991c38e": { - "address": "0xfe18ae03741a5b84e39c295ac9c856ed7991c38e", - "symbol": "CDCETH", - "decimals": 18, - "name": "Crypto com Staked ETH", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xfe18ae03741a5b84e39c295ac9c856ed7991c38e.png", - "aggregators": [ - "CoinMarketCap", - "1inch", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 6 - }, - "0x580e933d90091b9ce380740e3a4a39c67eb85b4c": { - "address": "0x580e933d90091b9ce380740e3a4a39c67eb85b4c", - "symbol": "GSWIFT", - "decimals": 18, - "name": "GameSwift", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x580e933d90091b9ce380740e3a4a39c67eb85b4c.png", - "aggregators": [ - "CoinMarketCap", - "LiFi", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 6 - }, - "0x39d5313c3750140e5042887413ba8aa6145a9bd2": { - "address": "0x39d5313c3750140e5042887413ba8aa6145a9bd2", - "symbol": "EMP", - "decimals": 18, - "name": "Empyreal", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x39d5313c3750140e5042887413ba8aa6145a9bd2.png", - "aggregators": [ - "CoinMarketCap", - "LiFi", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 6 - }, - "0x31e4efe290973ebe91b3a875a7994f650942d28f": { - "address": "0x31e4efe290973ebe91b3a875a7994f650942d28f", - "symbol": "SHRAP", - "decimals": 18, - "name": "Shrapnel", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x31e4efe290973ebe91b3a875a7994f650942d28f.png", - "aggregators": [ - "CoinMarketCap", - "LiFi", - "Socket", - "Rubic", - "Squid", - "Sonarwatch" - ], - "occurrences": 6 - }, - "0xa2c2c937333165d4c5f2dc5f31a43e1239fecfeb": { - "address": "0xa2c2c937333165d4c5f2dc5f31a43e1239fecfeb", - "symbol": "HERA", - "decimals": 18, - "name": "Hera Finance", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xa2c2c937333165d4c5f2dc5f31a43e1239fecfeb.png", - "aggregators": [ - "CoinMarketCap", - "LiFi", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 6 - }, - "0xcdb37a4fbc2da5b78aa4e41a432792f9533e85cc": { - "address": "0xcdb37a4fbc2da5b78aa4e41a432792f9533e85cc", - "symbol": "CDT", - "decimals": 18, - "name": "CheckDot", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xcdb37a4fbc2da5b78aa4e41a432792f9533e85cc.png", - "aggregators": [ - "CoinMarketCap", - "LiFi", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 6 - }, - "0x5fab9761d60419c9eeebe3915a8fa1ed7e8d2e1b": { - "address": "0x5fab9761d60419c9eeebe3915a8fa1ed7e8d2e1b", - "symbol": "DIMO", - "decimals": 18, - "name": "DIMO", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x5fab9761d60419c9eeebe3915a8fa1ed7e8d2e1b.png", - "aggregators": [ - "CoinMarketCap", - "LiFi", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 6 - }, - "0xb712d62fe84258292d1961b5150a19bc4ab49026": { - "address": "0xb712d62fe84258292d1961b5150a19bc4ab49026", - "symbol": "XCHNG", - "decimals": 18, - "name": "Chainge", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xb712d62fe84258292d1961b5150a19bc4ab49026.png", - "aggregators": [ - "CoinMarketCap", - "LiFi", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 6 - }, - "0xfe80d611c6403f70e5b1b9b722d2b3510b740b2b": { - "address": "0xfe80d611c6403f70e5b1b9b722d2b3510b740b2b", - "symbol": "EQB", - "decimals": 18, - "name": "Equilibria Finance", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xfe80d611c6403f70e5b1b9b722d2b3510b740b2b.png", - "aggregators": [ - "CoinMarketCap", - "LiFi", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 6 - }, - "0x9393fdc77090f31c7db989390d43f454b1a6e7f3": { - "address": "0x9393fdc77090f31c7db989390d43f454b1a6e7f3", - "symbol": "DEC", - "decimals": 3, - "name": "Dark Energy Crystals", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x9393fdc77090f31c7db989390d43f454b1a6e7f3.png", - "aggregators": [ - "CoinMarketCap", - "1inch", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 6 - }, - "0x8861cff2366c1128fd699b68304ad99a0764ef9a": { - "address": "0x8861cff2366c1128fd699b68304ad99a0764ef9a", - "symbol": "CYC", - "decimals": 18, - "name": "Cyclone Protocol", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x8861cff2366c1128fd699b68304ad99a0764ef9a.png", - "aggregators": [ - "CoinMarketCap", - "LiFi", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 6 - }, - "0xa693b19d2931d498c5b318df961919bb4aee87a5": { - "address": "0xa693b19d2931d498c5b318df961919bb4aee87a5", - "symbol": "UST", - "decimals": 6, - "name": "UST Token", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xa693b19d2931d498c5b318df961919bb4aee87a5.png", - "aggregators": [ - "Metamask", - "LiFi", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 6 - }, - "0x193f4a4a6ea24102f49b931deeeb931f6e32405d": { - "address": "0x193f4a4a6ea24102f49b931deeeb931f6e32405d", - "symbol": "TLOS", - "decimals": 18, - "name": "Telos", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x193f4a4a6ea24102f49b931deeeb931f6e32405d.png", - "aggregators": [ - "CoinMarketCap", - "LiFi", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 6 - }, - "0xee9801669c6138e84bd50deb500827b776777d28": { - "address": "0xee9801669c6138e84bd50deb500827b776777d28", - "symbol": "O3", - "decimals": 18, - "name": "O3 Swap", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xee9801669c6138e84bd50deb500827b776777d28.png", - "aggregators": [ - "CoinMarketCap", - "LiFi", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 6 - }, - "0xcf67815cce72e682eb4429eca46843bed81ca739": { - "address": "0xcf67815cce72e682eb4429eca46843bed81ca739", - "symbol": "G3", - "decimals": 18, - "name": "GAM3S GG", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xcf67815cce72e682eb4429eca46843bed81ca739.png", - "aggregators": [ - "CoinMarketCap", - "LiFi", - "Socket", - "Rubic", - "Squid", - "Sonarwatch" - ], - "occurrences": 6 - }, - "0x1416946162b1c2c871a73b07e932d2fb6c932069": { - "address": "0x1416946162b1c2c871a73b07e932d2fb6c932069", - "symbol": "NRG", - "decimals": 18, - "name": "Energi", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x1416946162b1c2c871a73b07e932d2fb6c932069.png", - "aggregators": [ - "Metamask", - "LiFi", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 6 - }, - "0xeeeeeb57642040be42185f49c52f7e9b38f8eeee": { - "address": "0xeeeeeb57642040be42185f49c52f7e9b38f8eeee", - "symbol": "ELK", - "decimals": 18, - "name": "Elk Finance", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xeeeeeb57642040be42185f49c52f7e9b38f8eeee.png", - "aggregators": [ - "CoinMarketCap", - "LiFi", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 6 - }, - "0x4563554284aa7148d6e6d0351519e954ba3b6e02": { - "address": "0x4563554284aa7148d6e6d0351519e954ba3b6e02", - "symbol": "RWA", - "decimals": 18, - "name": "Xend Finance", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x4563554284aa7148d6e6d0351519e954ba3b6e02.png", - "aggregators": [ - "CoinMarketCap", - "LiFi", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 6 - }, - "0x3be775b699fee916e7de117994358ff8f48e4569": { - "address": "0x3be775b699fee916e7de117994358ff8f48e4569", - "symbol": "VCNT", - "decimals": 18, - "name": "ViciCoin", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x3be775b699fee916e7de117994358ff8f48e4569.png", - "aggregators": [ - "CoinMarketCap", - "LiFi", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 6 - }, - "0xd3cc9d8f3689b83c91b7b59cab4946b063eb894a": { - "address": "0xd3cc9d8f3689b83c91b7b59cab4946b063eb894a", - "symbol": "XVS", - "decimals": 18, - "name": "Venus", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xd3cc9d8f3689b83c91b7b59cab4946b063eb894a.png", - "aggregators": [ - "CoinMarketCap", - "LiFi", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 6 - }, - "0x42d6622dece394b54999fbd73d108123806f6a18": { - "address": "0x42d6622dece394b54999fbd73d108123806f6a18", - "symbol": "SPANK", - "decimals": 18, - "name": "SPANK", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x42d6622dece394b54999fbd73d108123806f6a18.png", - "aggregators": [ - "Metamask", - "LiFi", - "Socket", - "Rubic", - "Rango", - "SushiSwap" - ], - "occurrences": 6 - }, - "0x3a1bda28adb5b0a812a7cf10a1950c920f79bcd3": { - "address": "0x3a1bda28adb5b0a812a7cf10a1950c920f79bcd3", - "symbol": "FLP", - "decimals": 18, - "name": "Gameflip", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x3a1bda28adb5b0a812a7cf10a1950c920f79bcd3.png", - "aggregators": [ - "CoinMarketCap", - "LiFi", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 6 - }, - "0x38a2fdc11f526ddd5a607c1f251c065f40fbf2f7": { - "address": "0x38a2fdc11f526ddd5a607c1f251c065f40fbf2f7", - "symbol": "PHNX", - "decimals": 18, - "name": "PhoenixDAO", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x38a2fdc11f526ddd5a607c1f251c065f40fbf2f7.png", - "aggregators": [ - "CoinMarketCap", - "LiFi", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 6 - }, - "0x7b123f53421b1bf8533339bfbdc7c98aa94163db": { - "address": "0x7b123f53421b1bf8533339bfbdc7c98aa94163db", - "symbol": "BUIDL", - "decimals": 18, - "name": "DFOhub", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x7b123f53421b1bf8533339bfbdc7c98aa94163db.png", - "aggregators": [ - "CoinMarketCap", - "LiFi", - "TrustWallet", - "Socket", - "Rubic", - "Rango" - ], - "occurrences": 6 - }, - "0x536381a8628dbcc8c70ac9a30a7258442eab4c92": { - "address": "0x536381a8628dbcc8c70ac9a30a7258442eab4c92", - "symbol": "PAN", - "decimals": 8, - "name": "Pantos Token ", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x536381a8628dbcc8c70ac9a30a7258442eab4c92.png", - "aggregators": [ - "Metamask", - "LiFi", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 6 - }, - "0x95172ccbe8344fecd73d0a30f54123652981bd6f": { - "address": "0x95172ccbe8344fecd73d0a30f54123652981bd6f", - "symbol": "LOCK", - "decimals": 18, - "name": "LOCK", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x95172ccbe8344fecd73d0a30f54123652981bd6f.png", - "aggregators": [ - "CoinMarketCap", - "1inch", - "LiFi", - "Socket", - "Rubic", - "Rango" - ], - "occurrences": 6 - }, - "0xfffffffff15abf397da76f1dcc1a1604f45126db": { - "address": "0xfffffffff15abf397da76f1dcc1a1604f45126db", - "symbol": "FSW", - "decimals": 18, - "name": "FalconSwap Token", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xfffffffff15abf397da76f1dcc1a1604f45126db.png", - "aggregators": [ - "CoinMarketCap", - "1inch", - "LiFi", - "TrustWallet", - "Rubic", - "Rango" - ], - "occurrences": 6 - }, - "0x68a3637ba6e75c0f66b61a42639c4e9fcd3d4824": { - "address": "0x68a3637ba6e75c0f66b61a42639c4e9fcd3d4824", - "symbol": "MOON", - "decimals": 18, - "name": "MoonToken", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x68a3637ba6e75c0f66b61a42639c4e9fcd3d4824.png", - "aggregators": [ - "CoinMarketCap", - "1inch", - "LiFi", - "Socket", - "Rubic", - "Rango" - ], - "occurrences": 6 - }, - "0x9d47894f8becb68b9cf3428d256311affe8b068b": { - "address": "0x9d47894f8becb68b9cf3428d256311affe8b068b", - "symbol": "$ROPE", - "decimals": 18, - "name": "$ROPE", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x9d47894f8becb68b9cf3428d256311affe8b068b.png", - "aggregators": [ - "CoinMarketCap", - "1inch", - "LiFi", - "Socket", - "Rubic", - "Rango" - ], - "occurrences": 6 - }, - "0x3383c5a8969dc413bfddc9656eb80a1408e4ba20": { - "address": "0x3383c5a8969dc413bfddc9656eb80a1408e4ba20", - "symbol": "WANATHA", - "decimals": 18, - "name": "Anatha", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x3383c5a8969dc413bfddc9656eb80a1408e4ba20.png", - "aggregators": [ - "CoinMarketCap", - "1inch", - "LiFi", - "TrustWallet", - "Rubic", - "Rango" - ], - "occurrences": 6 - }, - "0xcb0d82f4dfa503c9e3b8abc7a3caa01175b2da39": { - "address": "0xcb0d82f4dfa503c9e3b8abc7a3caa01175b2da39", - "symbol": "AX", - "decimals": 18, - "name": "AurusX", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xcb0d82f4dfa503c9e3b8abc7a3caa01175b2da39.png", - "aggregators": [ - "CoinMarketCap", - "LiFi", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 6 - }, - "0x00aba6fe5557de1a1d565658cbddddf7c710a1eb": { - "address": "0x00aba6fe5557de1a1d565658cbddddf7c710a1eb", - "symbol": "EZ", - "decimals": 18, - "name": "EasyFi V2", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x00aba6fe5557de1a1d565658cbddddf7c710a1eb.png", - "aggregators": [ - "CoinMarketCap", - "LiFi", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 6 - }, - "0x87edffde3e14c7a66c9b9724747a1c5696b742e6": { - "address": "0x87edffde3e14c7a66c9b9724747a1c5696b742e6", - "symbol": "SWAG", - "decimals": 18, - "name": "Swag Finance", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x87edffde3e14c7a66c9b9724747a1c5696b742e6.png", - "aggregators": [ - "CoinMarketCap", - "LiFi", - "Socket", - "Rubic", - "Rango", - "SushiSwap" - ], - "occurrences": 6 - }, - "0xa283aa7cfbb27ef0cfbcb2493dd9f4330e0fd304": { - "address": "0xa283aa7cfbb27ef0cfbcb2493dd9f4330e0fd304", - "symbol": "MM", - "decimals": 18, - "name": "MMToken", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xa283aa7cfbb27ef0cfbcb2493dd9f4330e0fd304.png", - "aggregators": [ - "CoinMarketCap", - "LiFi", - "Socket", - "Rubic", - "Rango", - "SushiSwap" - ], - "occurrences": 6 - }, - "0x4688a8b1f292fdab17e9a90c8bc379dc1dbd8713": { - "address": "0x4688a8b1f292fdab17e9a90c8bc379dc1dbd8713", - "symbol": "COVER", - "decimals": 18, - "name": "Cover Protocol", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x4688a8b1f292fdab17e9a90c8bc379dc1dbd8713.png", - "aggregators": [ - "CoinMarketCap", - "LiFi", - "Socket", - "Rubic", - "Rango", - "SushiSwap" - ], - "occurrences": 6 - }, - "0x3832d2f059e55934220881f831be501d180671a7": { - "address": "0x3832d2f059e55934220881f831be501d180671a7", - "symbol": "RENDOGE", - "decimals": 8, - "name": "renDOGE", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x3832d2f059e55934220881f831be501d180671a7.png", - "aggregators": [ - "CoinMarketCap", - "LiFi", - "Socket", - "Rubic", - "Rango", - "SushiSwap" - ], - "occurrences": 6 - }, - "0x8a40c222996f9f3431f63bf80244c36822060f12": { - "address": "0x8a40c222996f9f3431f63bf80244c36822060f12", - "symbol": "FXF", - "decimals": 18, - "name": "Finxflo", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x8a40c222996f9f3431f63bf80244c36822060f12.png", - "aggregators": [ - "CoinMarketCap", - "LiFi", - "TrustWallet", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 6 - }, - "0x9cea2ed9e47059260c97d697f82b8a14efa61ea5": { - "address": "0x9cea2ed9e47059260c97d697f82b8a14efa61ea5", - "symbol": "PUNK", - "decimals": 18, - "name": "Punk", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x9cea2ed9e47059260c97d697f82b8a14efa61ea5.png", - "aggregators": [ - "CoinMarketCap", - "LiFi", - "Socket", - "Rubic", - "Rango", - "SushiSwap" - ], - "occurrences": 6 - }, - "0x1fbd3df007eb8a7477a1eab2c63483dcc24effd6": { - "address": "0x1fbd3df007eb8a7477a1eab2c63483dcc24effd6", - "symbol": "SCA", - "decimals": 18, - "name": "Scaleswap", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x1fbd3df007eb8a7477a1eab2c63483dcc24effd6.png", - "aggregators": [ - "CoinMarketCap", - "LiFi", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 6 - }, - "0xb2dbf14d0b47ed3ba02bdb7c954e05a72deb7544": { - "address": "0xb2dbf14d0b47ed3ba02bdb7c954e05a72deb7544", - "symbol": "MOFI", - "decimals": 18, - "name": "MobiFi", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xb2dbf14d0b47ed3ba02bdb7c954e05a72deb7544.png", - "aggregators": [ - "CoinMarketCap", - "LiFi", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 6 - }, - "0xf938424f7210f31df2aee3011291b658f872e91e": { - "address": "0xf938424f7210f31df2aee3011291b658f872e91e", - "symbol": "VISR", - "decimals": 18, - "name": "VISOR", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xf938424f7210f31df2aee3011291b658f872e91e.png", - "aggregators": [ - "Metamask", - "LiFi", - "TrustWallet", - "Socket", - "Rubic", - "Rango" - ], - "occurrences": 6 - }, - "0x79126d32a86e6663f3aaac4527732d0701c1ae6c": { - "address": "0x79126d32a86e6663f3aaac4527732d0701c1ae6c", - "symbol": "DMT", - "decimals": 18, - "name": "Dark Matter", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x79126d32a86e6663f3aaac4527732d0701c1ae6c.png", - "aggregators": [ - "CoinMarketCap", - "LiFi", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 6 - }, - "0x69fa8e7f6bf1ca1fb0de61e1366f7412b827cc51": { - "address": "0x69fa8e7f6bf1ca1fb0de61e1366f7412b827cc51", - "symbol": "NRCH", - "decimals": 9, - "name": "Enreach", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x69fa8e7f6bf1ca1fb0de61e1366f7412b827cc51.png", - "aggregators": [ - "CoinMarketCap", - "1inch", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 6 - }, - "0xbc194e6f748a222754c3e8b9946922c09e7d4e91": { - "address": "0xbc194e6f748a222754c3e8b9946922c09e7d4e91", - "symbol": "LEV", - "decimals": 18, - "name": "Lever", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xbc194e6f748a222754c3e8b9946922c09e7d4e91.png", - "aggregators": [ - "CoinMarketCap", - "LiFi", - "Rubic", - "Rango", - "Sonarwatch", - "SushiSwap" - ], - "occurrences": 6 - }, - "0x6bb61215298f296c55b19ad842d3df69021da2ef": { - "address": "0x6bb61215298f296c55b19ad842d3df69021da2ef", - "symbol": "DOP", - "decimals": 18, - "name": "Drops Ownership Power", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x6bb61215298f296c55b19ad842d3df69021da2ef.png", - "aggregators": [ - "CoinMarketCap", - "LiFi", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 6 - }, - "0x42dbbd5ae373fea2fc320f62d44c058522bb3758": { - "address": "0x42dbbd5ae373fea2fc320f62d44c058522bb3758", - "symbol": "MEM", - "decimals": 18, - "name": "Memecoin", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x42dbbd5ae373fea2fc320f62d44c058522bb3758.png", - "aggregators": [ - "CoinMarketCap", - "LiFi", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 6 - }, - "0xa4cb0dce4849bdcad2d553e9e68644cf40e26cce": { - "address": "0xa4cb0dce4849bdcad2d553e9e68644cf40e26cce", - "symbol": "BAKED", - "decimals": 18, - "name": "Baked", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xa4cb0dce4849bdcad2d553e9e68644cf40e26cce.png", - "aggregators": [ - "CoinMarketCap", - "LiFi", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 6 - }, - "0xe9f84de264e91529af07fa2c746e934397810334": { - "address": "0xe9f84de264e91529af07fa2c746e934397810334", - "symbol": "SAK3", - "decimals": 18, - "name": "Sake", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xe9f84de264e91529af07fa2c746e934397810334.png", - "aggregators": [ - "CoinMarketCap", - "LiFi", - "Rubic", - "Squid", - "Rango", - "SushiSwap" - ], - "occurrences": 6 - }, - "0x0b63128c40737b13647552e0c926bcfeccc35f93": { - "address": "0x0b63128c40737b13647552e0c926bcfeccc35f93", - "symbol": "WLITI", - "decimals": 18, - "name": "wLitiCapital", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x0b63128c40737b13647552e0c926bcfeccc35f93.png", - "aggregators": [ - "CoinMarketCap", - "1inch", - "LiFi", - "Socket", - "Rubic", - "Rango" - ], - "occurrences": 6 - }, - "0xf32aa187d5bc16a2c02a6afb7df1459d0d107574": { - "address": "0xf32aa187d5bc16a2c02a6afb7df1459d0d107574", - "symbol": "INU", - "decimals": 18, - "name": "HachikoInu", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xf32aa187d5bc16a2c02a6afb7df1459d0d107574.png", - "aggregators": [ - "CoinMarketCap", - "1inch", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 6 - }, - "0x52662717e448be36cb54588499d5a8328bd95292": { - "address": "0x52662717e448be36cb54588499d5a8328bd95292", - "symbol": "TENSHI", - "decimals": 18, - "name": "Tenshi", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x52662717e448be36cb54588499d5a8328bd95292.png", - "aggregators": [ - "CoinMarketCap", - "1inch", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 6 - }, - "0x9cf98eb8a8b28c83e8612046cf55701ce3eb0063": { - "address": "0x9cf98eb8a8b28c83e8612046cf55701ce3eb0063", - "symbol": "UGT", - "decimals": 18, - "name": "Unreal Finance", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x9cf98eb8a8b28c83e8612046cf55701ce3eb0063.png", - "aggregators": [ - "CoinMarketCap", - "LiFi", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 6 - }, - "0x2610f0bfc21ef389fe4d03cfb7de9ac1e6c99d6e": { - "address": "0x2610f0bfc21ef389fe4d03cfb7de9ac1e6c99d6e", - "symbol": "SKYRIM", - "decimals": 18, - "name": "Skyrim Finance", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x2610f0bfc21ef389fe4d03cfb7de9ac1e6c99d6e.png", - "aggregators": [ - "CoinMarketCap", - "Socket", - "Rubic", - "Rango", - "Sonarwatch", - "SushiSwap" - ], - "occurrences": 6 - }, - "0x7ae1d57b58fa6411f32948314badd83583ee0e8c": { - "address": "0x7ae1d57b58fa6411f32948314badd83583ee0e8c", - "symbol": "PAPER", - "decimals": 18, - "name": "Dope World Paper", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x7ae1d57b58fa6411f32948314badd83583ee0e8c.png", - "aggregators": [ - "CoinMarketCap", - "LiFi", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 6 - }, - "0xc8d3dcb63c38607cb0c9d3f55e8ecce628a01c36": { - "address": "0xc8d3dcb63c38607cb0c9d3f55e8ecce628a01c36", - "symbol": "MATRIX", - "decimals": 18, - "name": "Matrix Labs", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xc8d3dcb63c38607cb0c9d3f55e8ecce628a01c36.png", - "aggregators": [ - "CoinMarketCap", - "LiFi", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 6 - }, - "0x60e683c6514edd5f758a55b6f393bebbafaa8d5e": { - "address": "0x60e683c6514edd5f758a55b6f393bebbafaa8d5e", - "symbol": "PAGE", - "decimals": 8, - "name": "Page", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x60e683c6514edd5f758a55b6f393bebbafaa8d5e.png", - "aggregators": [ - "CoinMarketCap", - "LiFi", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 6 - }, - "0x38d9eb07a7b8df7d86f440a4a5c4a4c1a27e1a08": { - "address": "0x38d9eb07a7b8df7d86f440a4a5c4a4c1a27e1a08", - "symbol": "BLXM", - "decimals": 18, - "name": "bloXmove", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x38d9eb07a7b8df7d86f440a4a5c4a4c1a27e1a08.png", - "aggregators": [ - "CoinMarketCap", - "LiFi", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 6 - }, - "0xf56408077487cb879c992909c5b5c66d68c02eb4": { - "address": "0xf56408077487cb879c992909c5b5c66d68c02eb4", - "symbol": "RIOT", - "decimals": 18, - "name": "Riot Racers", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xf56408077487cb879c992909c5b5c66d68c02eb4.png", - "aggregators": [ - "CoinMarketCap", - "LiFi", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 6 - }, - "0xda0c94c73d127ee191955fb46bacd7ff999b2bcd": { - "address": "0xda0c94c73d127ee191955fb46bacd7ff999b2bcd", - "symbol": "STANDARD", - "decimals": 18, - "name": "Stakeborg Standard", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xda0c94c73d127ee191955fb46bacd7ff999b2bcd.png", - "aggregators": [ - "CoinMarketCap", - "Socket", - "Rubic", - "Rango", - "Sonarwatch", - "SushiSwap" - ], - "occurrences": 6 - }, - "0xdac657ffd44a3b9d8aba8749830bf14beb66ff2d": { - "address": "0xdac657ffd44a3b9d8aba8749830bf14beb66ff2d", - "symbol": "HDAO", - "decimals": 18, - "name": "humanDAO", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xdac657ffd44a3b9d8aba8749830bf14beb66ff2d.png", - "aggregators": [ - "CoinMarketCap", - "LiFi", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 6 - }, - "0x3f5294df68f871241c4b18fcf78ebd8ac18ab654": { - "address": "0x3f5294df68f871241c4b18fcf78ebd8ac18ab654", - "symbol": "STZ", - "decimals": 18, - "name": "99Starz", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x3f5294df68f871241c4b18fcf78ebd8ac18ab654.png", - "aggregators": [ - "CoinMarketCap", - "Socket", - "Rubic", - "Rango", - "Sonarwatch", - "SushiSwap" - ], - "occurrences": 6 - }, - "0x43d4a3cd90ddd2f8f4f693170c9c8098163502ad": { - "address": "0x43d4a3cd90ddd2f8f4f693170c9c8098163502ad", - "symbol": "D2D", - "decimals": 18, - "name": "Prime", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x43d4a3cd90ddd2f8f4f693170c9c8098163502ad.png", - "aggregators": [ - "CoinMarketCap", - "LiFi", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 6 - }, - "0x7f3141c4d6b047fb930991b450f1ed996a51cb26": { - "address": "0x7f3141c4d6b047fb930991b450f1ed996a51cb26", - "symbol": "X", - "decimals": 18, - "name": "X", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x7f3141c4d6b047fb930991b450f1ed996a51cb26.png", - "aggregators": [ - "CoinMarketCap", - "Socket", - "Rubic", - "Rango", - "Sonarwatch", - "SushiSwap" - ], - "occurrences": 6 - }, - "0x6524b87960c2d573ae514fd4181777e7842435d4": { - "address": "0x6524b87960c2d573ae514fd4181777e7842435d4", - "symbol": "BZN", - "decimals": 18, - "name": "Benzene", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x6524b87960c2d573ae514fd4181777e7842435d4.png", - "aggregators": [ - "CoinMarketCap", - "LiFi", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 6 - }, - "0x3541a5c1b04adaba0b83f161747815cd7b1516bc": { - "address": "0x3541a5c1b04adaba0b83f161747815cd7b1516bc", - "symbol": "KNIGHT", - "decimals": 18, - "name": "CitaDAO", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x3541a5c1b04adaba0b83f161747815cd7b1516bc.png", - "aggregators": [ - "CoinMarketCap", - "1inch", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 6 - }, - "0xc55126051b22ebb829d00368f4b12bde432de5da": { - "address": "0xc55126051b22ebb829d00368f4b12bde432de5da", - "symbol": "BTRFLY", - "decimals": 18, - "name": "Redacted", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xc55126051b22ebb829d00368f4b12bde432de5da.png", - "aggregators": [ - "CoinMarketCap", - "LiFi", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 6 - }, - "0x1f7e5118521b550bb1a9b435727c003eb033fc51": { - "address": "0x1f7e5118521b550bb1a9b435727c003eb033fc51", - "symbol": "AGLA", - "decimals": 18, - "name": "Angola", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x1f7e5118521b550bb1a9b435727c003eb033fc51.png", - "aggregators": [ - "CoinMarketCap", - "LiFi", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 6 - }, - "0x45f93404ae1e4f0411a7f42bc6a5dc395792738d": { - "address": "0x45f93404ae1e4f0411a7f42bc6a5dc395792738d", - "symbol": "DGEN", - "decimals": 18, - "name": "DGEN", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x45f93404ae1e4f0411a7f42bc6a5dc395792738d.png", - "aggregators": [ - "CoinMarketCap", - "LiFi", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 6 - }, - "0xd8f1460044925d2d5c723c7054cd9247027415b7": { - "address": "0xd8f1460044925d2d5c723c7054cd9247027415b7", - "symbol": "SAIL", - "decimals": 18, - "name": "SAIL Token", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xd8f1460044925d2d5c723c7054cd9247027415b7.png", - "aggregators": [ - "CoinMarketCap", - "Socket", - "Rubic", - "Rango", - "Sonarwatch", - "SushiSwap" - ], - "occurrences": 6 - }, - "0x0000206329b97db379d5e1bf586bbdb969c63274": { - "address": "0x0000206329b97db379d5e1bf586bbdb969c63274", - "symbol": "USDA", - "decimals": 18, - "name": "USDA", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x0000206329b97db379d5e1bf586bbdb969c63274.png", - "aggregators": [ - "Metamask", - "LiFi", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 6 - }, - "0x06af07097c9eeb7fd685c692751d5c66db49c215": { - "address": "0x06af07097c9eeb7fd685c692751d5c66db49c215", - "symbol": "CHAI", - "decimals": 18, - "name": "Chai", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x06af07097c9eeb7fd685c692751d5c66db49c215.png", - "aggregators": [ - "Metamask", - "1inch", - "LiFi", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 6 - }, - "0xd01409314acb3b245cea9500ece3f6fd4d70ea30": { - "address": "0xd01409314acb3b245cea9500ece3f6fd4d70ea30", - "symbol": "LTO", - "decimals": 8, - "name": "LTO Network Token", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xd01409314acb3b245cea9500ece3f6fd4d70ea30.png", - "aggregators": [ - "Metamask", - "1inch", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 6 - }, - "0x7abc8a5768e6be61a6c693a6e4eacb5b60602c4d": { - "address": "0x7abc8a5768e6be61a6c693a6e4eacb5b60602c4d", - "symbol": "CXT", - "decimals": 18, - "name": "Covalent X Token", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x7abc8a5768e6be61a6c693a6e4eacb5b60602c4d.png", - "aggregators": [ - "CoinMarketCap", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x9c7beba8f6ef6643abd725e45a4e8387ef260649": { - "address": "0x9c7beba8f6ef6643abd725e45a4e8387ef260649", - "symbol": "G", - "decimals": 18, - "name": "Gravity by Galxe", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x9c7beba8f6ef6643abd725e45a4e8387ef260649.png", - "aggregators": [ - "CoinMarketCap", - "LiFi", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x23894dc9da6c94ecb439911caf7d337746575a72": { - "address": "0x23894dc9da6c94ecb439911caf7d337746575a72", - "symbol": "JAM", - "decimals": 18, - "name": "Geojam", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x23894dc9da6c94ecb439911caf7d337746575a72.png", - "aggregators": [ - "CoinMarketCap", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x96543ef8d2c75c26387c1a319ae69c0bee6f3fe7": { - "address": "0x96543ef8d2c75c26387c1a319ae69c0bee6f3fe7", - "symbol": "KUJI", - "decimals": 6, - "name": "Kujira", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x96543ef8d2c75c26387c1a319ae69c0bee6f3fe7.png", - "aggregators": [ - "CoinMarketCap", - "LiFi", - "Socket", - "Rubic", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0xd0a6053f087e87a25dc60701ba6e663b1a548e85": { - "address": "0xd0a6053f087e87a25dc60701ba6e663b1a548e85", - "symbol": "LRDS", - "decimals": 18, - "name": "BLOCKLORDS", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xd0a6053f087e87a25dc60701ba6e663b1a548e85.png", - "aggregators": [ - "CoinMarketCap", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0xf433089366899d83a9f26a773d59ec7ecf30355e": { - "address": "0xf433089366899d83a9f26a773d59ec7ecf30355e", - "symbol": "MTL", - "decimals": 8, - "name": "Metal", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xf433089366899d83a9f26a773d59ec7ecf30355e.png", - "aggregators": ["Metamask", "LiFi", "Rubic", "Rango", "Bancor"], - "occurrences": 5 - }, - "0x36e66fbbce51e4cd5bd3c62b637eb411b18949d4": { - "address": "0x36e66fbbce51e4cd5bd3c62b637eb411b18949d4", - "symbol": "OMNI", - "decimals": 18, - "name": "Omni Network", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x36e66fbbce51e4cd5bd3c62b637eb411b18949d4.png", - "aggregators": [ - "CoinMarketCap", - "1inch", - "Socket", - "Rubic", - "Rango" - ], - "occurrences": 5 - }, - "0x0d3cbed3f69ee050668adf3d9ea57241cba33a2b": { - "address": "0x0d3cbed3f69ee050668adf3d9ea57241cba33a2b", - "symbol": "PDA", - "decimals": 18, - "name": "PlayDapp", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x0d3cbed3f69ee050668adf3d9ea57241cba33a2b.png", - "aggregators": [ - "CoinMarketCap", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0xa4eed63db85311e22df4473f87ccfc3dadcfa3e3": { - "address": "0xa4eed63db85311e22df4473f87ccfc3dadcfa3e3", - "symbol": "RBC", - "decimals": 18, - "name": "Rubic", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xa4eed63db85311e22df4473f87ccfc3dadcfa3e3.png", - "aggregators": [ - "Metamask", - "LiFi", - "TrustWallet", - "Socket", - "Rango" - ], - "occurrences": 5 - }, - "0x006bea43baa3f7a6f765f14f10a1a1b08334ef45": { - "address": "0x006bea43baa3f7a6f765f14f10a1a1b08334ef45", - "symbol": "STX", - "decimals": 18, - "name": "Stox", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x006bea43baa3f7a6f765f14f10a1a1b08334ef45.png", - "aggregators": ["OpenSwap", "LiFi", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 5 - }, - "0x485d17a6f1b8780392d53d64751824253011a260": { - "address": "0x485d17a6f1b8780392d53d64751824253011a260", - "symbol": "TIME", - "decimals": 8, - "name": "chrono tech", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x485d17a6f1b8780392d53d64751824253011a260.png", - "aggregators": [ - "CoinMarketCap", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x70d2b7c19352bb76e4409858ff5746e500f2b67c": { - "address": "0x70d2b7c19352bb76e4409858ff5746e500f2b67c", - "symbol": "UPI", - "decimals": 18, - "name": "Pawtocol", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x70d2b7c19352bb76e4409858ff5746e500f2b67c.png", - "aggregators": [ - "OpenSwap", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0xed91879919b71bb6905f23af0a68d231ecf87b14": { - "address": "0xed91879919b71bb6905f23af0a68d231ecf87b14", - "symbol": "DMG", - "decimals": 18, - "name": "DMM: Governance", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xed91879919b71bb6905f23af0a68d231ecf87b14.png", - "aggregators": [ - "CoinMarketCap", - "LiFi", - "TrustWallet", - "Rubic", - "Rango" - ], - "occurrences": 5 - }, - "0xa3d58c4e56fedcae3a7c43a725aee9a71f0ece4e": { - "address": "0xa3d58c4e56fedcae3a7c43a725aee9a71f0ece4e", - "symbol": "MET", - "decimals": 18, - "name": "Metronome", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xa3d58c4e56fedcae3a7c43a725aee9a71f0ece4e.png", - "aggregators": ["Metamask", "LiFi", "Socket", "Rubic", "Rango"], - "occurrences": 5 - }, - "0x220b71671b649c03714da9c621285943f3cbcdc6": { - "address": "0x220b71671b649c03714da9c621285943f3cbcdc6", - "symbol": "DIS", - "decimals": 18, - "name": "TosDis", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x220b71671b649c03714da9c621285943f3cbcdc6.png", - "aggregators": [ - "CoinMarketCap", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x29ceddcf0da3c1d8068a7dfbd0fb06c2e438ff70": { - "address": "0x29ceddcf0da3c1d8068a7dfbd0fb06c2e438ff70", - "symbol": "FREL", - "decimals": 18, - "name": "Freela", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x29ceddcf0da3c1d8068a7dfbd0fb06c2e438ff70.png", - "aggregators": [ - "CoinMarketCap", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x4955f6641bf9c8c163604c321f4b36e988698f75": { - "address": "0x4955f6641bf9c8c163604c321f4b36e988698f75", - "symbol": "DOGECAST", - "decimals": 9, - "name": "Dogecast", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x4955f6641bf9c8c163604c321f4b36e988698f75.png", - "aggregators": [ - "CoinMarketCap", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0xda31d0d1bc934fc34f7189e38a413ca0a5e8b44f": { - "address": "0xda31d0d1bc934fc34f7189e38a413ca0a5e8b44f", - "symbol": "BSSB", - "decimals": 18, - "name": "BitStable Finance", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xda31d0d1bc934fc34f7189e38a413ca0a5e8b44f.png", - "aggregators": [ - "CoinMarketCap", - "LiFi", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x80ee5c641a8ffc607545219a3856562f56427fe9": { - "address": "0x80ee5c641a8ffc607545219a3856562f56427fe9", - "symbol": "BRETT", - "decimals": 9, - "name": "Brett ETH", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x80ee5c641a8ffc607545219a3856562f56427fe9.png", - "aggregators": [ - "CoinMarketCap", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x9dfad1b7102d46b1b197b90095b5c4e9f5845bba": { - "address": "0x9dfad1b7102d46b1b197b90095b5c4e9f5845bba", - "symbol": "BOTTO", - "decimals": 18, - "name": "Botto", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x9dfad1b7102d46b1b197b90095b5c4e9f5845bba.png", - "aggregators": [ - "CoinMarketCap", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x7d5121505149065b562c789a0145ed750e6e8cdd": { - "address": "0x7d5121505149065b562c789a0145ed750e6e8cdd", - "symbol": "VR", - "decimals": 18, - "name": "Victoria VR", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x7d5121505149065b562c789a0145ed750e6e8cdd.png", - "aggregators": [ - "CoinMarketCap", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0xeeee2a2e650697d2a8e8bc990c2f3d04203be06f": { - "address": "0xeeee2a2e650697d2a8e8bc990c2f3d04203be06f", - "symbol": "FP", - "decimals": 18, - "name": "Forgotten Playland", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xeeee2a2e650697d2a8e8bc990c2f3d04203be06f.png", - "aggregators": [ - "CoinMarketCap", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0xb9d4b6dc1e1ee3577cc442de015cc11f238b35ed": { - "address": "0xb9d4b6dc1e1ee3577cc442de015cc11f238b35ed", - "symbol": "MAG", - "decimals": 18, - "name": "Magnum", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xb9d4b6dc1e1ee3577cc442de015cc11f238b35ed.png", - "aggregators": [ - "CoinGecko", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x3a810ff7211b40c4fa76205a14efe161615d0385": { - "address": "0x3a810ff7211b40c4fa76205a14efe161615d0385", - "symbol": "AIN", - "decimals": 18, - "name": "AI Network", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x3a810ff7211b40c4fa76205a14efe161615d0385.png", - "aggregators": [ - "CoinMarketCap", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x910524678c0b1b23ffb9285a81f99c29c11cbaed": { - "address": "0x910524678c0b1b23ffb9285a81f99c29c11cbaed", - "symbol": "AZUKI", - "decimals": 18, - "name": "Azuki", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x910524678c0b1b23ffb9285a81f99c29c11cbaed.png", - "aggregators": [ - "CoinMarketCap", - "LiFi", - "Socket", - "Rubic", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x191557728e4d8caa4ac94f86af842148c0fa8f7e": { - "address": "0x191557728e4d8caa4ac94f86af842148c0fa8f7e", - "symbol": "ECO", - "decimals": 8, - "name": "Ormeus Ecosystem", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x191557728e4d8caa4ac94f86af842148c0fa8f7e.png", - "aggregators": [ - "CoinMarketCap", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x168e209d7b2f58f1f24b8ae7b7d35e662bbf11cc": { - "address": "0x168e209d7b2f58f1f24b8ae7b7d35e662bbf11cc", - "symbol": "LAI", - "decimals": 18, - "name": "LayerAI", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x168e209d7b2f58f1f24b8ae7b7d35e662bbf11cc.png", - "aggregators": [ - "CoinMarketCap", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x747e550a7b848ace786c3cfe754aa78febc8a022": { - "address": "0x747e550a7b848ace786c3cfe754aa78febc8a022", - "symbol": "DODO", - "decimals": 18, - "name": "DODO", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x747e550a7b848ace786c3cfe754aa78febc8a022.png", - "aggregators": [ - "CoinMarketCap", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x3e5d9d8a63cc8a88748f229999cf59487e90721e": { - "address": "0x3e5d9d8a63cc8a88748f229999cf59487e90721e", - "symbol": "XMT", - "decimals": 18, - "name": "MetalSwap", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x3e5d9d8a63cc8a88748f229999cf59487e90721e.png", - "aggregators": [ - "CoinMarketCap", - "LiFi", - "Socket", - "Rubic", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0xd528cf2e081f72908e086f8800977df826b5a483": { - "address": "0xd528cf2e081f72908e086f8800977df826b5a483", - "symbol": "PBX", - "decimals": 18, - "name": "Paribus", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xd528cf2e081f72908e086f8800977df826b5a483.png", - "aggregators": [ - "CoinMarketCap", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x1bbf25e71ec48b84d773809b4ba55b6f4be946fb": { - "address": "0x1bbf25e71ec48b84d773809b4ba55b6f4be946fb", - "symbol": "VOW", - "decimals": 18, - "name": "Vow", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x1bbf25e71ec48b84d773809b4ba55b6f4be946fb.png", - "aggregators": [ - "CoinMarketCap", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0xd2a08ff5f31d2f2d70c91960323c2ed31268ae25": { - "address": "0xd2a08ff5f31d2f2d70c91960323c2ed31268ae25", - "symbol": "NEOS", - "decimals": 18, - "name": "Neos ai", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xd2a08ff5f31d2f2d70c91960323c2ed31268ae25.png", - "aggregators": [ - "CoinMarketCap", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x1cc7047e15825f639e0752eb1b89e4225f5327f2": { - "address": "0x1cc7047e15825f639e0752eb1b89e4225f5327f2", - "symbol": "PLX", - "decimals": 18, - "name": "Pullix", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x1cc7047e15825f639e0752eb1b89e4225f5327f2.png", - "aggregators": [ - "CoinMarketCap", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x886c869cdc619214138c87f1db0ada522b16dfa3": { - "address": "0x886c869cdc619214138c87f1db0ada522b16dfa3", - "symbol": "WIF", - "decimals": 18, - "name": "WIF on ETH", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x886c869cdc619214138c87f1db0ada522b16dfa3.png", - "aggregators": [ - "CoinMarketCap", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0xe66b3aa360bb78468c00bebe163630269db3324f": { - "address": "0xe66b3aa360bb78468c00bebe163630269db3324f", - "symbol": "MTO", - "decimals": 18, - "name": "Merchant", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xe66b3aa360bb78468c00bebe163630269db3324f.png", - "aggregators": [ - "CoinMarketCap", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x1c4853ec0d55e420002c5efabc7ed8e0ba7a4121": { - "address": "0x1c4853ec0d55e420002c5efabc7ed8e0ba7a4121", - "symbol": "OKINAMI", - "decimals": 9, - "name": "Kanagawa Nami", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x1c4853ec0d55e420002c5efabc7ed8e0ba7a4121.png", - "aggregators": [ - "CoinMarketCap", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0xdc0327d50e6c73db2f8117760592c8bbf1cdcf38": { - "address": "0xdc0327d50e6c73db2f8117760592c8bbf1cdcf38", - "symbol": "STRNGR", - "decimals": 18, - "name": "Stronger", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xdc0327d50e6c73db2f8117760592c8bbf1cdcf38.png", - "aggregators": [ - "CoinMarketCap", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0xeb953eda0dc65e3246f43dc8fa13f35623bdd5ed": { - "address": "0xeb953eda0dc65e3246f43dc8fa13f35623bdd5ed", - "symbol": "RAINI", - "decimals": 18, - "name": "Raini", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xeb953eda0dc65e3246f43dc8fa13f35623bdd5ed.png", - "aggregators": [ - "CoinMarketCap", - "1inch", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0xcf078da6e85389de507ceede0e3d217e457b9d49": { - "address": "0xcf078da6e85389de507ceede0e3d217e457b9d49", - "symbol": "SKAI", - "decimals": 18, - "name": "Skillful AI", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xcf078da6e85389de507ceede0e3d217e457b9d49.png", - "aggregators": [ - "CoinMarketCap", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0xb56aaac80c931161548a49181c9e000a19489c44": { - "address": "0xb56aaac80c931161548a49181c9e000a19489c44", - "symbol": "ABDS", - "decimals": 18, - "name": "ABDS Token", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xb56aaac80c931161548a49181c9e000a19489c44.png", - "aggregators": [ - "CoinMarketCap", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0xc575bd129848ce06a460a19466c30e1d0328f52c": { - "address": "0xc575bd129848ce06a460a19466c30e1d0328f52c", - "symbol": "RAI", - "decimals": 18, - "name": "Reploy", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xc575bd129848ce06a460a19466c30e1d0328f52c.png", - "aggregators": [ - "CoinMarketCap", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0xce391315b414d4c7555956120461d21808a69f3a": { - "address": "0xce391315b414d4c7555956120461d21808a69f3a", - "symbol": "BAO", - "decimals": 18, - "name": "Bao Finance V2", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xce391315b414d4c7555956120461d21808a69f3a.png", - "aggregators": [ - "CoinMarketCap", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x3bd7d4f524d09f4e331577247a048d56e4b67a7f": { - "address": "0x3bd7d4f524d09f4e331577247a048d56e4b67a7f", - "symbol": "5IRE", - "decimals": 18, - "name": "5ire", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x3bd7d4f524d09f4e331577247a048d56e4b67a7f.png", - "aggregators": [ - "CoinMarketCap", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0xa0ef786bf476fe0810408caba05e536ac800ff86": { - "address": "0xa0ef786bf476fe0810408caba05e536ac800ff86", - "symbol": "MYRIA", - "decimals": 18, - "name": "Myria", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xa0ef786bf476fe0810408caba05e536ac800ff86.png", - "aggregators": [ - "CoinMarketCap", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x6bc08509b36a98e829dffad49fde5e412645d0a3": { - "address": "0x6bc08509b36a98e829dffad49fde5e412645d0a3", - "symbol": "WOOF", - "decimals": 18, - "name": "WoofWork io", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x6bc08509b36a98e829dffad49fde5e412645d0a3.png", - "aggregators": [ - "CoinMarketCap", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x86eab36585eddb7a949a0b4771ba733d942a8aa7": { - "address": "0x86eab36585eddb7a949a0b4771ba733d942a8aa7", - "symbol": "REDDIT", - "decimals": 9, - "name": "Reddit", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x86eab36585eddb7a949a0b4771ba733d942a8aa7.png", - "aggregators": [ - "CoinMarketCap", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x3819f64f282bf135d62168c1e513280daf905e06": { - "address": "0x3819f64f282bf135d62168c1e513280daf905e06", - "symbol": "HDRN", - "decimals": 9, - "name": "Hedron", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x3819f64f282bf135d62168c1e513280daf905e06.png", - "aggregators": [ - "CoinMarketCap", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x295b42684f90c77da7ea46336001010f2791ec8c": { - "address": "0x295b42684f90c77da7ea46336001010f2791ec8c", - "symbol": "XI", - "decimals": 18, - "name": "Xi", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x295b42684f90c77da7ea46336001010f2791ec8c.png", - "aggregators": [ - "CoinMarketCap", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x508e00d5cef397b02d260d035e5ee80775e4c821": { - "address": "0x508e00d5cef397b02d260d035e5ee80775e4c821", - "symbol": "1CAT", - "decimals": 18, - "name": "Bitcoin Cats", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x508e00d5cef397b02d260d035e5ee80775e4c821.png", - "aggregators": [ - "CoinMarketCap", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x4f7d2d728ce137dd01ec63ef7b225805c7b54575": { - "address": "0x4f7d2d728ce137dd01ec63ef7b225805c7b54575", - "symbol": "WALLY", - "decimals": 9, - "name": "Emotional Support Alligator", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x4f7d2d728ce137dd01ec63ef7b225805c7b54575.png", - "aggregators": [ - "CoinMarketCap", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x4dd942baa75810a3c1e876e79d5cd35e09c97a76": { - "address": "0x4dd942baa75810a3c1e876e79d5cd35e09c97a76", - "symbol": "D2T", - "decimals": 18, - "name": "Dash 2 Trade", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x4dd942baa75810a3c1e876e79d5cd35e09c97a76.png", - "aggregators": [ - "CoinMarketCap", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x808c16ace7404777fe24a6777a9cb2335aa82451": { - "address": "0x808c16ace7404777fe24a6777a9cb2335aa82451", - "symbol": "JOTCHUA", - "decimals": 18, - "name": "PERRO DINERO", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x808c16ace7404777fe24a6777a9cb2335aa82451.png", - "aggregators": [ - "CoinMarketCap", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0xd7b2c1a7f3c67fb0ea57a7ef29bc1f18d7be3195": { - "address": "0xd7b2c1a7f3c67fb0ea57a7ef29bc1f18d7be3195", - "symbol": "VMINT", - "decimals": 18, - "name": "VoluMint", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xd7b2c1a7f3c67fb0ea57a7ef29bc1f18d7be3195.png", - "aggregators": [ - "CoinMarketCap", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0xea7b7dc089c9a4a916b5a7a37617f59fd54e37e4": { - "address": "0xea7b7dc089c9a4a916b5a7a37617f59fd54e37e4", - "symbol": "HYPC", - "decimals": 6, - "name": "HyperCycle", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xea7b7dc089c9a4a916b5a7a37617f59fd54e37e4.png", - "aggregators": [ - "CoinMarketCap", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x9ff58067bd8d239000010c154c6983a325df138e": { - "address": "0x9ff58067bd8d239000010c154c6983a325df138e", - "symbol": "PROPC", - "decimals": 18, - "name": "Propchain", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x9ff58067bd8d239000010c154c6983a325df138e.png", - "aggregators": [ - "CoinMarketCap", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0xf477ac7719e2e659001455cdda0cc8f3ad10b604": { - "address": "0xf477ac7719e2e659001455cdda0cc8f3ad10b604", - "symbol": "AUTOS", - "decimals": 18, - "name": "CryptoAutos", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xf477ac7719e2e659001455cdda0cc8f3ad10b604.png", - "aggregators": [ - "CoinMarketCap", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0xd8e163967fed76806df0097b704ba721b9b37656": { - "address": "0xd8e163967fed76806df0097b704ba721b9b37656", - "symbol": "COPE", - "decimals": 18, - "name": "Cope", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xd8e163967fed76806df0097b704ba721b9b37656.png", - "aggregators": [ - "Metamask", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x176bc22e1855cd5cf5a840081c6c5b92b55e2210": { - "address": "0x176bc22e1855cd5cf5a840081c6c5b92b55e2210", - "symbol": "GBE", - "decimals": 18, - "name": "Gambex", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x176bc22e1855cd5cf5a840081c6c5b92b55e2210.png", - "aggregators": [ - "CoinMarketCap", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x14da230d6726c50f759bc1838717f8ce6373509c": { - "address": "0x14da230d6726c50f759bc1838717f8ce6373509c", - "symbol": "KAT", - "decimals": 18, - "name": "Kambria", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x14da230d6726c50f759bc1838717f8ce6373509c.png", - "aggregators": [ - "CoinMarketCap", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0xf4308b0263723b121056938c2172868e408079d0": { - "address": "0xf4308b0263723b121056938c2172868e408079d0", - "symbol": "CRYO", - "decimals": 18, - "name": "CryoDAO", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xf4308b0263723b121056938c2172868e408079d0.png", - "aggregators": [ - "CoinMarketCap", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0xed4e879087ebd0e8a77d66870012b5e0dffd0fa4": { - "address": "0xed4e879087ebd0e8a77d66870012b5e0dffd0fa4", - "symbol": "APX", - "decimals": 18, - "name": "AstroPepeX", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xed4e879087ebd0e8a77d66870012b5e0dffd0fa4.png", - "aggregators": [ - "CoinMarketCap", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x7076de6ff1d91e00be7e92458089c833de99e22e": { - "address": "0x7076de6ff1d91e00be7e92458089c833de99e22e", - "symbol": "BONE", - "decimals": 9, - "name": "FLEABONE", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x7076de6ff1d91e00be7e92458089c833de99e22e.png", - "aggregators": [ - "Metamask", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x73c6a7491d0db90bdb0060308cde0f49dfd1d0b0": { - "address": "0x73c6a7491d0db90bdb0060308cde0f49dfd1d0b0", - "symbol": "DOBO", - "decimals": 18, - "name": "DogeBonk", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x73c6a7491d0db90bdb0060308cde0f49dfd1d0b0.png", - "aggregators": [ - "CoinMarketCap", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0xfbd5fd3f85e9f4c5e8b40eec9f8b8ab1caaa146b": { - "address": "0xfbd5fd3f85e9f4c5e8b40eec9f8b8ab1caaa146b", - "symbol": "TREAT", - "decimals": 18, - "name": "Treat Token", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xfbd5fd3f85e9f4c5e8b40eec9f8b8ab1caaa146b.png", - "aggregators": [ - "CoinMarketCap", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x2de7b02ae3b1f11d51ca7b2495e9094874a064c0": { - "address": "0x2de7b02ae3b1f11d51ca7b2495e9094874a064c0", - "symbol": "SHIB2", - "decimals": 18, - "name": "SHIB2", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x2de7b02ae3b1f11d51ca7b2495e9094874a064c0.png", - "aggregators": [ - "CoinMarketCap", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0xff8c479134a18918059493243943150776cf8cf2": { - "address": "0xff8c479134a18918059493243943150776cf8cf2", - "symbol": "RENQ", - "decimals": 18, - "name": "Renq Finance", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xff8c479134a18918059493243943150776cf8cf2.png", - "aggregators": [ - "CoinMarketCap", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x20561172f791f915323241e885b4f7d5187c36e1": { - "address": "0x20561172f791f915323241e885b4f7d5187c36e1", - "symbol": "CAL", - "decimals": 18, - "name": "Calcium", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x20561172f791f915323241e885b4f7d5187c36e1.png", - "aggregators": [ - "CoinMarketCap", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x5aa158404fed6b4730c13f49d3a7f820e14a636f": { - "address": "0x5aa158404fed6b4730c13f49d3a7f820e14a636f", - "symbol": "ULX", - "decimals": 18, - "name": "ULTRON", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x5aa158404fed6b4730c13f49d3a7f820e14a636f.png", - "aggregators": [ - "CoinMarketCap", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x76e222b07c53d28b89b0bac18602810fc22b49a8": { - "address": "0x76e222b07c53d28b89b0bac18602810fc22b49a8", - "symbol": "JOE", - "decimals": 18, - "name": "Joe Coin", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x76e222b07c53d28b89b0bac18602810fc22b49a8.png", - "aggregators": [ - "CoinMarketCap", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x44971abf0251958492fee97da3e5c5ada88b9185": { - "address": "0x44971abf0251958492fee97da3e5c5ada88b9185", - "symbol": "BASEDAI", - "decimals": 18, - "name": "BasedAI", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x44971abf0251958492fee97da3e5c5ada88b9185.png", - "aggregators": [ - "CoinMarketCap", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0xd1f17b7a6bff962659ed608bcd6d318bb5fbb249": { - "address": "0xd1f17b7a6bff962659ed608bcd6d318bb5fbb249", - "symbol": "ZUZALU", - "decimals": 18, - "name": "Zuzalu Inu", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xd1f17b7a6bff962659ed608bcd6d318bb5fbb249.png", - "aggregators": [ - "CoinMarketCap", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0xa0dd6dd7775e93eb842db0aa142c9c581031ed3b": { - "address": "0xa0dd6dd7775e93eb842db0aa142c9c581031ed3b", - "symbol": "MND", - "decimals": 18, - "name": "Mind", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xa0dd6dd7775e93eb842db0aa142c9c581031ed3b.png", - "aggregators": [ - "CoinMarketCap", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x5de869e3e62b0fb2c15573246ba3bb3fd97a2275": { - "address": "0x5de869e3e62b0fb2c15573246ba3bb3fd97a2275", - "symbol": "SHEB", - "decimals": 18, - "name": "Sheboshis", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x5de869e3e62b0fb2c15573246ba3bb3fd97a2275.png", - "aggregators": [ - "CoinMarketCap", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x7163436b8efffb469f6bb81cc908b1661d4795e6": { - "address": "0x7163436b8efffb469f6bb81cc908b1661d4795e6", - "symbol": "ESCO", - "decimals": 18, - "name": "Esco coin", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x7163436b8efffb469f6bb81cc908b1661d4795e6.png", - "aggregators": [ - "Metamask", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0xed9f6aa6532869576211fd6367e3c328810fbeb3": { - "address": "0xed9f6aa6532869576211fd6367e3c328810fbeb3", - "symbol": "GPTPLUS", - "decimals": 18, - "name": "GPTPlus", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xed9f6aa6532869576211fd6367e3c328810fbeb3.png", - "aggregators": [ - "CoinMarketCap", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x8ab2ff0116a279a99950c66a12298962d152b83c": { - "address": "0x8ab2ff0116a279a99950c66a12298962d152b83c", - "symbol": "ORDS", - "decimals": 18, - "name": "Ordiswap", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x8ab2ff0116a279a99950c66a12298962d152b83c.png", - "aggregators": [ - "CoinMarketCap", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x8b9b95292f890df47fff5ac9cbe93d5fc242bd51": { - "address": "0x8b9b95292f890df47fff5ac9cbe93d5fc242bd51", - "symbol": "BEFI", - "decimals": 18, - "name": "BeFi Labs", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x8b9b95292f890df47fff5ac9cbe93d5fc242bd51.png", - "aggregators": [ - "CoinMarketCap", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x943af2ece93118b973c95c2f698ee9d15002e604": { - "address": "0x943af2ece93118b973c95c2f698ee9d15002e604", - "symbol": "DUEL", - "decimals": 18, - "name": "GameGPT", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x943af2ece93118b973c95c2f698ee9d15002e604.png", - "aggregators": [ - "CoinMarketCap", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x069d89974f4edabde69450f9cf5cf7d8cbd2568d": { - "address": "0x069d89974f4edabde69450f9cf5cf7d8cbd2568d", - "symbol": "BVM", - "decimals": 18, - "name": "BVM", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x069d89974f4edabde69450f9cf5cf7d8cbd2568d.png", - "aggregators": [ - "CoinMarketCap", - "LiFi", - "Socket", - "Rubic", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x944824290cc12f31ae18ef51216a223ba4063092": { - "address": "0x944824290cc12f31ae18ef51216a223ba4063092", - "symbol": "MASA", - "decimals": 18, - "name": "Masa", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x944824290cc12f31ae18ef51216a223ba4063092.png", - "aggregators": [ - "CoinMarketCap", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0xb8a87405d9a4f2f866319b77004e88dff66c0d92": { - "address": "0xb8a87405d9a4f2f866319b77004e88dff66c0d92", - "symbol": "SORA", - "decimals": 18, - "name": "Sora AI", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xb8a87405d9a4f2f866319b77004e88dff66c0d92.png", - "aggregators": [ - "CoinMarketCap", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x40a7df3df8b56147b781353d379cb960120211d7": { - "address": "0x40a7df3df8b56147b781353d379cb960120211d7", - "symbol": "MOBY", - "decimals": 18, - "name": "Moby", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x40a7df3df8b56147b781353d379cb960120211d7.png", - "aggregators": [ - "CoinMarketCap", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x1495bc9e44af1f8bcb62278d2bec4540cf0c05ea": { - "address": "0x1495bc9e44af1f8bcb62278d2bec4540cf0c05ea", - "symbol": "DEAI", - "decimals": 18, - "name": "Zero1 Labs", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x1495bc9e44af1f8bcb62278d2bec4540cf0c05ea.png", - "aggregators": [ - "CoinMarketCap", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x9fdfb933ee990955d3219d4f892fd1f786b47c9b": { - "address": "0x9fdfb933ee990955d3219d4f892fd1f786b47c9b", - "symbol": "MK", - "decimals": 18, - "name": "Meme Kombat", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x9fdfb933ee990955d3219d4f892fd1f786b47c9b.png", - "aggregators": [ - "CoinMarketCap", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x0a3bb08b3a15a19b4de82f8acfc862606fb69a2d": { - "address": "0x0a3bb08b3a15a19b4de82f8acfc862606fb69a2d", - "symbol": "IUSD", - "decimals": 18, - "name": "iZUMi Bond USD", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x0a3bb08b3a15a19b4de82f8acfc862606fb69a2d.png", - "aggregators": [ - "CoinMarketCap", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x69457a1c9ec492419344da01daf0df0e0369d5d0": { - "address": "0x69457a1c9ec492419344da01daf0df0e0369d5d0", - "symbol": "FJO", - "decimals": 18, - "name": "Fjord Foundry", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x69457a1c9ec492419344da01daf0df0e0369d5d0.png", - "aggregators": [ - "CoinMarketCap", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x25b4f5d4c314bcd5d7962734936c957b947cb7cf": { - "address": "0x25b4f5d4c314bcd5d7962734936c957b947cb7cf", - "symbol": "TGC", - "decimals": 18, - "name": "TG Casino", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x25b4f5d4c314bcd5d7962734936c957b947cb7cf.png", - "aggregators": [ - "CoinMarketCap", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x4bdcb66b968060d9390c1d12bd29734496205581": { - "address": "0x4bdcb66b968060d9390c1d12bd29734496205581", - "symbol": "ACQ", - "decimals": 18, - "name": "Acquire Fi", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x4bdcb66b968060d9390c1d12bd29734496205581.png", - "aggregators": [ - "CoinMarketCap", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x71da932ccda723ba3ab730c976bc66daaf9c598c": { - "address": "0x71da932ccda723ba3ab730c976bc66daaf9c598c", - "symbol": "MAG", - "decimals": 18, - "name": "Magnify Cash", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x71da932ccda723ba3ab730c976bc66daaf9c598c.png", - "aggregators": [ - "CoinMarketCap", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x9b4a69de6ca0defdd02c0c4ce6cb84de5202944e": { - "address": "0x9b4a69de6ca0defdd02c0c4ce6cb84de5202944e", - "symbol": "PROOF", - "decimals": 9, - "name": "PROOF Platform", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x9b4a69de6ca0defdd02c0c4ce6cb84de5202944e.png", - "aggregators": [ - "Metamask", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x6968676661ac9851c38907bdfcc22d5dd77b564d": { - "address": "0x6968676661ac9851c38907bdfcc22d5dd77b564d", - "symbol": "BOYSCLUB", - "decimals": 18, - "name": "Matt Furie s Boys Club", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x6968676661ac9851c38907bdfcc22d5dd77b564d.png", - "aggregators": [ - "CoinMarketCap", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0xa84f95eb3dabdc1bbd613709ef5f2fd42ce5be8d": { - "address": "0xa84f95eb3dabdc1bbd613709ef5f2fd42ce5be8d", - "symbol": "EAI", - "decimals": 18, - "name": "EternalAI", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xa84f95eb3dabdc1bbd613709ef5f2fd42ce5be8d.png", - "aggregators": [ - "CoinMarketCap", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x0a638f07acc6969abf392bb009f216d22adea36d": { - "address": "0x0a638f07acc6969abf392bb009f216d22adea36d", - "symbol": "BKN", - "decimals": 18, - "name": "Brickken", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x0a638f07acc6969abf392bb009f216d22adea36d.png", - "aggregators": [ - "CoinMarketCap", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x74950fc112473caba58193c6bf6412a6f1e4d7d2": { - "address": "0x74950fc112473caba58193c6bf6412a6f1e4d7d2", - "symbol": "WVTRS", - "decimals": 18, - "name": "Vitreus", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x74950fc112473caba58193c6bf6412a6f1e4d7d2.png", - "aggregators": [ - "CoinMarketCap", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0xcbde0453d4e7d748077c1b0ac2216c011dd2f406": { - "address": "0xcbde0453d4e7d748077c1b0ac2216c011dd2f406", - "symbol": "TERMINUS", - "decimals": 9, - "name": "Terminus", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xcbde0453d4e7d748077c1b0ac2216c011dd2f406.png", - "aggregators": [ - "CoinMarketCap", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x584a4dd38d28fd1ea0e147ba7b70aed29a37e335": { - "address": "0x584a4dd38d28fd1ea0e147ba7b70aed29a37e335", - "symbol": "BTCINU", - "decimals": 18, - "name": "Bitcoin Inu", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x584a4dd38d28fd1ea0e147ba7b70aed29a37e335.png", - "aggregators": [ - "CoinMarketCap", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0xb1c9d42fa4ba691efe21656a7e6953d999b990c4": { - "address": "0xb1c9d42fa4ba691efe21656a7e6953d999b990c4", - "symbol": "KANG", - "decimals": 18, - "name": "Kangamoon", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xb1c9d42fa4ba691efe21656a7e6953d999b990c4.png", - "aggregators": [ - "CoinMarketCap", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0xc55c2175e90a46602fd42e931f62b3acc1a013ca": { - "address": "0xc55c2175e90a46602fd42e931f62b3acc1a013ca", - "symbol": "STARS", - "decimals": 18, - "name": "Mogul Productions OLD", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xc55c2175e90a46602fd42e931f62b3acc1a013ca.png", - "aggregators": [ - "CoinMarketCap", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x8802269d1283cdb2a5a329649e5cb4cdcee91ab6": { - "address": "0x8802269d1283cdb2a5a329649e5cb4cdcee91ab6", - "symbol": "FIGHT", - "decimals": 9, - "name": "Fight to MAGA", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x8802269d1283cdb2a5a329649e5cb4cdcee91ab6.png", - "aggregators": [ - "CoinMarketCap", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x1e18821e69b9faa8e6e75dffe54e7e25754beda0": { - "address": "0x1e18821e69b9faa8e6e75dffe54e7e25754beda0", - "symbol": "KIMCHI", - "decimals": 18, - "name": "KIMCHI finance", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x1e18821e69b9faa8e6e75dffe54e7e25754beda0.png", - "aggregators": [ - "CoinMarketCap", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0xad5fdc8c3c18d50315331fca7f66efe5033f6c4c": { - "address": "0xad5fdc8c3c18d50315331fca7f66efe5033f6c4c", - "symbol": "CRAZY", - "decimals": 18, - "name": "Crazy Frog Coin", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xad5fdc8c3c18d50315331fca7f66efe5033f6c4c.png", - "aggregators": [ - "CoinMarketCap", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x236501327e701692a281934230af0b6be8df3353": { - "address": "0x236501327e701692a281934230af0b6be8df3353", - "symbol": "FLT", - "decimals": 18, - "name": "Fluence", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x236501327e701692a281934230af0b6be8df3353.png", - "aggregators": [ - "CoinMarketCap", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x225e5b78f289c6d7d7757ad2b9d23b6ab31a5eea": { - "address": "0x225e5b78f289c6d7d7757ad2b9d23b6ab31a5eea", - "symbol": "MAGATRUMP", - "decimals": 18, - "name": "MAGA Trump", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x225e5b78f289c6d7d7757ad2b9d23b6ab31a5eea.png", - "aggregators": [ - "CoinMarketCap", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x3802c218221390025bceabbad5d8c59f40eb74b8": { - "address": "0x3802c218221390025bceabbad5d8c59f40eb74b8", - "symbol": "GETH", - "decimals": 18, - "name": "Guarded Ether", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x3802c218221390025bceabbad5d8c59f40eb74b8.png", - "aggregators": [ - "CoinMarketCap", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x243cacb4d5ff6814ad668c3e225246efa886ad5a": { - "address": "0x243cacb4d5ff6814ad668c3e225246efa886ad5a", - "symbol": "SHI", - "decimals": 18, - "name": "Shina Inu", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x243cacb4d5ff6814ad668c3e225246efa886ad5a.png", - "aggregators": [ - "Metamask", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x8dd09822e83313adca54c75696ae80c5429697ff": { - "address": "0x8dd09822e83313adca54c75696ae80c5429697ff", - "symbol": "SIFU", - "decimals": 18, - "name": "Sifu Vision", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x8dd09822e83313adca54c75696ae80c5429697ff.png", - "aggregators": [ - "CoinMarketCap", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x69e15ab0fd240de689d09e4851181a6667968008": { - "address": "0x69e15ab0fd240de689d09e4851181a6667968008", - "symbol": "PEPE", - "decimals": 9, - "name": "El Sapo Pepe", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x69e15ab0fd240de689d09e4851181a6667968008.png", - "aggregators": [ - "CoinMarketCap", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x23fa3aa82858e7ad1f0f04352f4bb7f5e1bbfb68": { - "address": "0x23fa3aa82858e7ad1f0f04352f4bb7f5e1bbfb68", - "symbol": "FRIC", - "decimals": 18, - "name": "Frictionless", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x23fa3aa82858e7ad1f0f04352f4bb7f5e1bbfb68.png", - "aggregators": [ - "CoinMarketCap", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0xc0db17bc219c5ca8746c29ee47862ee3ad742f4a": { - "address": "0xc0db17bc219c5ca8746c29ee47862ee3ad742f4a", - "symbol": "SCOTTY", - "decimals": 18, - "name": "ScottyTheAi", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xc0db17bc219c5ca8746c29ee47862ee3ad742f4a.png", - "aggregators": [ - "CoinMarketCap", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x8be8c50e7d7acff6084899e71a6db085ff7134c8": { - "address": "0x8be8c50e7d7acff6084899e71a6db085ff7134c8", - "symbol": "OPSEC", - "decimals": 18, - "name": "OpSec", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x8be8c50e7d7acff6084899e71a6db085ff7134c8.png", - "aggregators": [ - "CoinMarketCap", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x2c06ba9e7f0daccbc1f6a33ea67e85bb68fbee3a": { - "address": "0x2c06ba9e7f0daccbc1f6a33ea67e85bb68fbee3a", - "symbol": "LENDS", - "decimals": 18, - "name": "Lends", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x2c06ba9e7f0daccbc1f6a33ea67e85bb68fbee3a.png", - "aggregators": [ - "CoinMarketCap", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0xd5fa38027462691769b8a8ba6c444890103b5b94": { - "address": "0xd5fa38027462691769b8a8ba6c444890103b5b94", - "symbol": "DAWG", - "decimals": 9, - "name": "Dawg Coin", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xd5fa38027462691769b8a8ba6c444890103b5b94.png", - "aggregators": [ - "CoinMarketCap", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x1a3a8cf347b2bf5890d3d6a1b981c4f4432c8661": { - "address": "0x1a3a8cf347b2bf5890d3d6a1b981c4f4432c8661", - "symbol": "FAC", - "decimals": 18, - "name": "Flying Avocado Cat", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x1a3a8cf347b2bf5890d3d6a1b981c4f4432c8661.png", - "aggregators": [ - "CoinMarketCap", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0xec9333e7dadeebf82d290d6cb12e66cc30ce46b0": { - "address": "0xec9333e7dadeebf82d290d6cb12e66cc30ce46b0", - "symbol": "LUSH", - "decimals": 18, - "name": "LushAI", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xec9333e7dadeebf82d290d6cb12e66cc30ce46b0.png", - "aggregators": [ - "CoinMarketCap", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x68b36248477277865c64dfc78884ef80577078f3": { - "address": "0x68b36248477277865c64dfc78884ef80577078f3", - "symbol": "HOLD", - "decimals": 18, - "name": "Everybody", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x68b36248477277865c64dfc78884ef80577078f3.png", - "aggregators": [ - "CoinMarketCap", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0xe9732d4b1e7d3789004ff029f032ba3034db059c": { - "address": "0xe9732d4b1e7d3789004ff029f032ba3034db059c", - "symbol": "PATRIOT", - "decimals": 18, - "name": "Patriot", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xe9732d4b1e7d3789004ff029f032ba3034db059c.png", - "aggregators": [ - "CoinMarketCap", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0xdc9cb148ecb70876db0abeb92f515a5e1dc9f580": { - "address": "0xdc9cb148ecb70876db0abeb92f515a5e1dc9f580", - "symbol": "GBTC", - "decimals": 18, - "name": "Green Bitcoin", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xdc9cb148ecb70876db0abeb92f515a5e1dc9f580.png", - "aggregators": [ - "CoinMarketCap", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0xab814ce69e15f6b9660a3b184c0b0c97b9394a6b": { - "address": "0xab814ce69e15f6b9660a3b184c0b0c97b9394a6b", - "symbol": "NEURON", - "decimals": 18, - "name": "Cerebrum DAO", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xab814ce69e15f6b9660a3b184c0b0c97b9394a6b.png", - "aggregators": [ - "CoinMarketCap", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0xd6203889c22d9fe5e938a9200f50fdffe9dd8e02": { - "address": "0xd6203889c22d9fe5e938a9200f50fdffe9dd8e02", - "symbol": "SBR", - "decimals": 9, - "name": "Strategic Bitcoin Reserve", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xd6203889c22d9fe5e938a9200f50fdffe9dd8e02.png", - "aggregators": [ - "CoinMarketCap", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x0000000000ca73a6df4c58b84c5b4b847fe8ff39": { - "address": "0x0000000000ca73a6df4c58b84c5b4b847fe8ff39", - "symbol": "ASTX", - "decimals": 18, - "name": "Asterix", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x0000000000ca73a6df4c58b84c5b4b847fe8ff39.png", - "aggregators": [ - "CoinMarketCap", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x669c01caf0edcad7c2b8dc771474ad937a7ca4af": { - "address": "0x669c01caf0edcad7c2b8dc771474ad937a7ca4af", - "symbol": "WMINIMA", - "decimals": 18, - "name": "Wrapped Minima", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x669c01caf0edcad7c2b8dc771474ad937a7ca4af.png", - "aggregators": [ - "CoinMarketCap", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x590f820444fa3638e022776752c5eef34e2f89a6": { - "address": "0x590f820444fa3638e022776752c5eef34e2f89a6", - "symbol": "ALPH", - "decimals": 18, - "name": "Alephium", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x590f820444fa3638e022776752c5eef34e2f89a6.png", - "aggregators": [ - "CoinMarketCap", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x728f30fa2f100742c7949d1961804fa8e0b1387d": { - "address": "0x728f30fa2f100742c7949d1961804fa8e0b1387d", - "symbol": "GHX", - "decimals": 18, - "name": "GamerCoin", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x728f30fa2f100742c7949d1961804fa8e0b1387d.png", - "aggregators": [ - "CoinMarketCap", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0xb36cf340a35f9860d0bb59afb0355580f0000dad": { - "address": "0xb36cf340a35f9860d0bb59afb0355580f0000dad", - "symbol": "PADRE", - "decimals": 18, - "name": "Padre", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xb36cf340a35f9860d0bb59afb0355580f0000dad.png", - "aggregators": [ - "CoinMarketCap", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x35d8949372d46b7a3d5a56006ae77b215fc69bc0": { - "address": "0x35d8949372d46b7a3d5a56006ae77b215fc69bc0", - "symbol": "USD0++", - "decimals": 18, - "name": "Staked USD0", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x35d8949372d46b7a3d5a56006ae77b215fc69bc0.png", - "aggregators": [ - "CoinMarketCap", - "1inch", - "LiFi", - "Rubic", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x48fd84c0dfc47f1b61ed6a86367895aaa6ad2a45": { - "address": "0x48fd84c0dfc47f1b61ed6a86367895aaa6ad2a45", - "symbol": "TWIN", - "decimals": 18, - "name": "Twin Protocol", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x48fd84c0dfc47f1b61ed6a86367895aaa6ad2a45.png", - "aggregators": [ - "CoinMarketCap", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x04f121600c8c47a754636fc9d75661a9525e05d5": { - "address": "0x04f121600c8c47a754636fc9d75661a9525e05d5", - "symbol": "STARS", - "decimals": 18, - "name": "STARS", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x04f121600c8c47a754636fc9d75661a9525e05d5.png", - "aggregators": [ - "CoinMarketCap", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0xf107edabf59ba696e38de62ad5327415bd4d4236": { - "address": "0xf107edabf59ba696e38de62ad5327415bd4d4236", - "symbol": "SLAP", - "decimals": 18, - "name": "CatSlap", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xf107edabf59ba696e38de62ad5327415bd4d4236.png", - "aggregators": [ - "CoinMarketCap", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x157a6df6b74f4e5e45af4e4615fde7b49225a662": { - "address": "0x157a6df6b74f4e5e45af4e4615fde7b49225a662", - "symbol": "ISLAND", - "decimals": 18, - "name": "ISLAND Token", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x157a6df6b74f4e5e45af4e4615fde7b49225a662.png", - "aggregators": [ - "CoinMarketCap", - "LiFi", - "Socket", - "Rubic", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x51cb253744189f11241becb29bedd3f1b5384fdb": { - "address": "0x51cb253744189f11241becb29bedd3f1b5384fdb", - "symbol": "DMTR", - "decimals": 18, - "name": "Dimitra", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x51cb253744189f11241becb29bedd3f1b5384fdb.png", - "aggregators": [ - "CoinMarketCap", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x5e3f09ab25548616b4b97f6163ff19cf6027930d": { - "address": "0x5e3f09ab25548616b4b97f6163ff19cf6027930d", - "symbol": "USACOIN", - "decimals": 9, - "name": "USAcoin", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x5e3f09ab25548616b4b97f6163ff19cf6027930d.png", - "aggregators": [ - "CoinMarketCap", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0xba41ddf06b7ffd89d1267b5a93bfef2424eb2003": { - "address": "0xba41ddf06b7ffd89d1267b5a93bfef2424eb2003", - "symbol": "MYTH", - "decimals": 18, - "name": "Mythos", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xba41ddf06b7ffd89d1267b5a93bfef2424eb2003.png", - "aggregators": [ - "CoinMarketCap", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0xa3d4bee77b05d4a0c943877558ce21a763c4fa29": { - "address": "0xa3d4bee77b05d4a0c943877558ce21a763c4fa29", - "symbol": "ROOT", - "decimals": 6, - "name": "The Root Network", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xa3d4bee77b05d4a0c943877558ce21a763c4fa29.png", - "aggregators": [ - "CoinMarketCap", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x9cdf242ef7975d8c68d5c1f5b6905801699b1940": { - "address": "0x9cdf242ef7975d8c68d5c1f5b6905801699b1940", - "symbol": "WHITE", - "decimals": 18, - "name": "WhiteRock", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x9cdf242ef7975d8c68d5c1f5b6905801699b1940.png", - "aggregators": [ - "CoinMarketCap", - "LiFi", - "Socket", - "Rubic", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x8248270620aa532e4d64316017be5e873e37cc09": { - "address": "0x8248270620aa532e4d64316017be5e873e37cc09", - "symbol": "DEVVE", - "decimals": 18, - "name": "DevvE", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x8248270620aa532e4d64316017be5e873e37cc09.png", - "aggregators": [ - "CoinMarketCap", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0xc4f6e93aeddc11dc22268488465babcaf09399ac": { - "address": "0xc4f6e93aeddc11dc22268488465babcaf09399ac", - "symbol": "HI", - "decimals": 18, - "name": "hi Dollar", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xc4f6e93aeddc11dc22268488465babcaf09399ac.png", - "aggregators": [ - "CoinMarketCap", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0xc2544a32872a91f4a553b404c6950e89de901fdb": { - "address": "0xc2544a32872a91f4a553b404c6950e89de901fdb", - "symbol": "FPIS", - "decimals": 18, - "name": "Frax Price Index Share", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xc2544a32872a91f4a553b404c6950e89de901fdb.png", - "aggregators": [ - "CoinMarketCap", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x94a8b4ee5cd64c79d0ee816f467ea73009f51aa0": { - "address": "0x94a8b4ee5cd64c79d0ee816f467ea73009f51aa0", - "symbol": "RIO", - "decimals": 18, - "name": "Realio Network Token", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x94a8b4ee5cd64c79d0ee816f467ea73009f51aa0.png", - "aggregators": [ - "CoinMarketCap", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x4e9fcd48af4738e3bf1382009dc1e93ebfce698f": { - "address": "0x4e9fcd48af4738e3bf1382009dc1e93ebfce698f", - "symbol": "TAONU", - "decimals": 18, - "name": "TAO INU", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x4e9fcd48af4738e3bf1382009dc1e93ebfce698f.png", - "aggregators": [ - "CoinMarketCap", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x761a3557184cbc07b7493da0661c41177b2f97fa": { - "address": "0x761a3557184cbc07b7493da0661c41177b2f97fa", - "symbol": "GROW", - "decimals": 18, - "name": "ValleyDAO", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x761a3557184cbc07b7493da0661c41177b2f97fa.png", - "aggregators": [ - "CoinMarketCap", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x8e0e57dcb1ce8d9091df38ec1bfc3b224529754a": { - "address": "0x8e0e57dcb1ce8d9091df38ec1bfc3b224529754a", - "symbol": "CAH", - "decimals": 18, - "name": "Moon Tropica", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x8e0e57dcb1ce8d9091df38ec1bfc3b224529754a.png", - "aggregators": [ - "CoinMarketCap", - "LiFi", - "Socket", - "Rubic", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x58aea10748a00d1781d6651f9d78a414ea32ca46": { - "address": "0x58aea10748a00d1781d6651f9d78a414ea32ca46", - "symbol": "VSG", - "decimals": 18, - "name": "Vector Smart Gas", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x58aea10748a00d1781d6651f9d78a414ea32ca46.png", - "aggregators": [ - "CoinGecko", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0xc666081073e8dff8d3d1c2292a29ae1a2153ec09": { - "address": "0xc666081073e8dff8d3d1c2292a29ae1a2153ec09", - "symbol": "DGTX", - "decimals": 18, - "name": "Digitex", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xc666081073e8dff8d3d1c2292a29ae1a2153ec09.png", - "aggregators": [ - "CoinMarketCap", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0xb17c88bda07d28b3838e0c1de6a30eafbcf52d85": { - "address": "0xb17c88bda07d28b3838e0c1de6a30eafbcf52d85", - "symbol": "SHFT", - "decimals": 18, - "name": "Shyft Network", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xb17c88bda07d28b3838e0c1de6a30eafbcf52d85.png", - "aggregators": [ - "CoinMarketCap", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x5f474906637bdcda05f29c74653f6962bb0f8eda": { - "address": "0x5f474906637bdcda05f29c74653f6962bb0f8eda", - "symbol": "DEFX", - "decimals": 18, - "name": "DeFinity", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x5f474906637bdcda05f29c74653f6962bb0f8eda.png", - "aggregators": [ - "CoinMarketCap", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0xd0929d411954c47438dc1d871dd6081f5c5e149c": { - "address": "0xd0929d411954c47438dc1d871dd6081f5c5e149c", - "symbol": "RFR", - "decimals": 4, - "name": "Refereum", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xd0929d411954c47438dc1d871dd6081f5c5e149c.png", - "aggregators": [ - "Metamask", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x01ff50f8b7f74e4f00580d9596cd3d0d6d6e326f": { - "address": "0x01ff50f8b7f74e4f00580d9596cd3d0d6d6e326f", - "symbol": "BFT", - "decimals": 18, - "name": "BnkToTheFuture", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x01ff50f8b7f74e4f00580d9596cd3d0d6d6e326f.png", - "aggregators": [ - "CoinMarketCap", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0xf1ca9cb74685755965c7458528a36934df52a3ef": { - "address": "0xf1ca9cb74685755965c7458528a36934df52a3ef", - "symbol": "AVINOC", - "decimals": 18, - "name": "AVINOC", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xf1ca9cb74685755965c7458528a36934df52a3ef.png", - "aggregators": [ - "CoinMarketCap", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0xe0c8b298db4cffe05d1bea0bb1ba414522b33c1b": { - "address": "0xe0c8b298db4cffe05d1bea0bb1ba414522b33c1b", - "symbol": "NCDT", - "decimals": 18, - "name": "nuco cloud", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xe0c8b298db4cffe05d1bea0bb1ba414522b33c1b.png", - "aggregators": [ - "CoinMarketCap", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x630d98424efe0ea27fb1b3ab7741907dffeaad78": { - "address": "0x630d98424efe0ea27fb1b3ab7741907dffeaad78", - "symbol": "PEAK", - "decimals": 8, - "name": "PEAKDEFI", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x630d98424efe0ea27fb1b3ab7741907dffeaad78.png", - "aggregators": [ - "CoinMarketCap", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x49e833337ece7afe375e44f4e3e8481029218e5c": { - "address": "0x49e833337ece7afe375e44f4e3e8481029218e5c", - "symbol": "VALUE", - "decimals": 18, - "name": "Value DeFi", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x49e833337ece7afe375e44f4e3e8481029218e5c.png", - "aggregators": [ - "CoinMarketCap", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x45080a6531d671ddff20db42f93792a489685e32": { - "address": "0x45080a6531d671ddff20db42f93792a489685e32", - "symbol": "FVT", - "decimals": 18, - "name": "Finance Vote", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x45080a6531d671ddff20db42f93792a489685e32.png", - "aggregators": [ - "CoinMarketCap", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0xaeb3607ec434454ceb308f5cd540875efb54309a": { - "address": "0xaeb3607ec434454ceb308f5cd540875efb54309a", - "symbol": "STRDY", - "decimals": 18, - "name": "Sturdy", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xaeb3607ec434454ceb308f5cd540875efb54309a.png", - "aggregators": [ - "CoinMarketCap", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x6e765d26388a17a6e86c49a8e41df3f58abcd337": { - "address": "0x6e765d26388a17a6e86c49a8e41df3f58abcd337", - "symbol": "KANGAL", - "decimals": 18, - "name": "Kangal", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x6e765d26388a17a6e86c49a8e41df3f58abcd337.png", - "aggregators": [ - "Metamask", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0xac5b038058bcd0424c9c252c6487c25f032e5ddc": { - "address": "0xac5b038058bcd0424c9c252c6487c25f032e5ddc", - "symbol": "AIEPK", - "decimals": 18, - "name": "EpiK Protocol", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xac5b038058bcd0424c9c252c6487c25f032e5ddc.png", - "aggregators": [ - "CoinMarketCap", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0xc8807f0f5ba3fa45ffbdc66928d71c5289249014": { - "address": "0xc8807f0f5ba3fa45ffbdc66928d71c5289249014", - "symbol": "ISP", - "decimals": 18, - "name": "Ispolink", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xc8807f0f5ba3fa45ffbdc66928d71c5289249014.png", - "aggregators": [ - "CoinMarketCap", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x80008bcd713c38af90a9930288d446bc3bd2e684": { - "address": "0x80008bcd713c38af90a9930288d446bc3bd2e684", - "symbol": "KARATE", - "decimals": 18, - "name": "Karate Combat", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x80008bcd713c38af90a9930288d446bc3bd2e684.png", - "aggregators": [ - "CoinMarketCap", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x2ba8349123de45e931a8c8264c332e6e9cf593f9": { - "address": "0x2ba8349123de45e931a8c8264c332e6e9cf593f9", - "symbol": "BCMC", - "decimals": 18, - "name": "Blockchain Monster Hunt", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x2ba8349123de45e931a8c8264c332e6e9cf593f9.png", - "aggregators": [ - "CoinMarketCap", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x772358ef6ed3e18bde1263f7d229601c5fa81875": { - "address": "0x772358ef6ed3e18bde1263f7d229601c5fa81875", - "symbol": "SNPAD", - "decimals": 18, - "name": "SNPad", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x772358ef6ed3e18bde1263f7d229601c5fa81875.png", - "aggregators": [ - "CoinMarketCap", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x4554cc10898f92d45378b98d6d6c2dd54c687fb2": { - "address": "0x4554cc10898f92d45378b98d6d6c2dd54c687fb2", - "symbol": "JBX", - "decimals": 18, - "name": "Juicebox", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x4554cc10898f92d45378b98d6d6c2dd54c687fb2.png", - "aggregators": [ - "CoinMarketCap", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x8fac8031e079f409135766c7d5de29cf22ef897c": { - "address": "0x8fac8031e079f409135766c7d5de29cf22ef897c", - "symbol": "HEART", - "decimals": 18, - "name": "Humans ai", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x8fac8031e079f409135766c7d5de29cf22ef897c.png", - "aggregators": [ - "CoinMarketCap", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x71fc1f555a39e0b698653ab0b475488ec3c34d57": { - "address": "0x71fc1f555a39e0b698653ab0b475488ec3c34d57", - "symbol": "RAIN", - "decimals": 18, - "name": "Rainmaker Games", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x71fc1f555a39e0b698653ab0b475488ec3c34d57.png", - "aggregators": [ - "CoinMarketCap", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x4da34f8264cb33a5c9f17081b9ef5ff6091116f4": { - "address": "0x4da34f8264cb33a5c9f17081b9ef5ff6091116f4", - "symbol": "ELFI", - "decimals": 18, - "name": "Elyfi", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x4da34f8264cb33a5c9f17081b9ef5ff6091116f4.png", - "aggregators": [ - "Metamask", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x4b5f49487ea7b3609b1ad05459be420548789f1f": { - "address": "0x4b5f49487ea7b3609b1ad05459be420548789f1f", - "symbol": "LEVER", - "decimals": 18, - "name": "LeverFi", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x4b5f49487ea7b3609b1ad05459be420548789f1f.png", - "aggregators": [ - "CoinMarketCap", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x94025780a1ab58868d9b2dbbb775f44b32e8e6e5": { - "address": "0x94025780a1ab58868d9b2dbbb775f44b32e8e6e5", - "symbol": "BETS", - "decimals": 18, - "name": "BetSwirl", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x94025780a1ab58868d9b2dbbb775f44b32e8e6e5.png", - "aggregators": [ - "CoinMarketCap", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x26ebb8213fb8d66156f1af8908d43f7e3e367c1d": { - "address": "0x26ebb8213fb8d66156f1af8908d43f7e3e367c1d", - "symbol": "RETIK", - "decimals": 18, - "name": "Retik Finance", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x26ebb8213fb8d66156f1af8908d43f7e3e367c1d.png", - "aggregators": [ - "CoinMarketCap", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0xfc1c93a2507975e98b9d0e9260ded61a00152bf1": { - "address": "0xfc1c93a2507975e98b9d0e9260ded61a00152bf1", - "symbol": "NAVI", - "decimals": 18, - "name": "Atlas Navi", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xfc1c93a2507975e98b9d0e9260ded61a00152bf1.png", - "aggregators": [ - "CoinMarketCap", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x4385328cc4d643ca98dfea734360c0f596c83449": { - "address": "0x4385328cc4d643ca98dfea734360c0f596c83449", - "symbol": "TOMI", - "decimals": 18, - "name": "TOMI", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x4385328cc4d643ca98dfea734360c0f596c83449.png", - "aggregators": [ - "CoinMarketCap", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0xa31b1767e09f842ecfd4bc471fe44f830e3891aa": { - "address": "0xa31b1767e09f842ecfd4bc471fe44f830e3891aa", - "symbol": "ROOBEE", - "decimals": 18, - "name": "ROOBEE", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xa31b1767e09f842ecfd4bc471fe44f830e3891aa.png", - "aggregators": [ - "Metamask", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0xe0151763455a8a021e64880c238ba1cff3787ff0": { - "address": "0xe0151763455a8a021e64880c238ba1cff3787ff0", - "symbol": "APED", - "decimals": 18, - "name": "Aped", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xe0151763455a8a021e64880c238ba1cff3787ff0.png", - "aggregators": [ - "CoinMarketCap", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0xa444ec96ee01bb219a44b285de47bf33c3447ad5": { - "address": "0xa444ec96ee01bb219a44b285de47bf33c3447ad5", - "symbol": "LEOX", - "decimals": 18, - "name": "LEOX", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xa444ec96ee01bb219a44b285de47bf33c3447ad5.png", - "aggregators": [ - "CoinMarketCap", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x2c95d751da37a5c1d9c5a7fd465c1d50f3d96160": { - "address": "0x2c95d751da37a5c1d9c5a7fd465c1d50f3d96160", - "symbol": "WASSIE", - "decimals": 18, - "name": "WASSIE", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x2c95d751da37a5c1d9c5a7fd465c1d50f3d96160.png", - "aggregators": [ - "Metamask", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0xe9572938bcbf08adcee86fd12a7c0d08dc4ab841": { - "address": "0xe9572938bcbf08adcee86fd12a7c0d08dc4ab841", - "symbol": "INS", - "decimals": 18, - "name": "Inscribe", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xe9572938bcbf08adcee86fd12a7c0d08dc4ab841.png", - "aggregators": [ - "CoinMarketCap", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0xd2bdaaf2b9cc6981fd273dcb7c04023bfbe0a7fe": { - "address": "0xd2bdaaf2b9cc6981fd273dcb7c04023bfbe0a7fe", - "symbol": "AVI", - "decimals": 18, - "name": "Aviator", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xd2bdaaf2b9cc6981fd273dcb7c04023bfbe0a7fe.png", - "aggregators": [ - "CoinMarketCap", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0xccccb68e1a848cbdb5b60a974e07aae143ed40c3": { - "address": "0xccccb68e1a848cbdb5b60a974e07aae143ed40c3", - "symbol": "TOPIA", - "decimals": 18, - "name": "TOPIA", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xccccb68e1a848cbdb5b60a974e07aae143ed40c3.png", - "aggregators": [ - "CoinMarketCap", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0xf9ca9523e5b5a42c3018c62b084db8543478c400": { - "address": "0xf9ca9523e5b5a42c3018c62b084db8543478c400", - "symbol": "LAKE", - "decimals": 18, - "name": "Data Lake", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xf9ca9523e5b5a42c3018c62b084db8543478c400.png", - "aggregators": [ - "CoinMarketCap", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x6bfdb6f4e65ead27118592a41eb927cea6956198": { - "address": "0x6bfdb6f4e65ead27118592a41eb927cea6956198", - "symbol": "FMC", - "decimals": 18, - "name": "FAME AI", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x6bfdb6f4e65ead27118592a41eb927cea6956198.png", - "aggregators": [ - "CoinMarketCap", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x96add417293a49e80f024734e96cfd8b355bcc14": { - "address": "0x96add417293a49e80f024734e96cfd8b355bcc14", - "symbol": "LILA", - "decimals": 18, - "name": "LiquidLayer", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x96add417293a49e80f024734e96cfd8b355bcc14.png", - "aggregators": [ - "CoinMarketCap", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x72fdc31f4a9a1edf6b6132d3c1754f1cdcf5d9b1": { - "address": "0x72fdc31f4a9a1edf6b6132d3c1754f1cdcf5d9b1", - "symbol": "QBX", - "decimals": 18, - "name": "QBX", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x72fdc31f4a9a1edf6b6132d3c1754f1cdcf5d9b1.png", - "aggregators": [ - "CoinMarketCap", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x0800394f6e23dd539929c8b77a3d45c96f76aefc": { - "address": "0x0800394f6e23dd539929c8b77a3d45c96f76aefc", - "symbol": "TURT", - "decimals": 18, - "name": "TurtSat", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x0800394f6e23dd539929c8b77a3d45c96f76aefc.png", - "aggregators": [ - "CoinMarketCap", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0xc434268603ca8854e0be1a3ff15cad73bd6ec49a": { - "address": "0xc434268603ca8854e0be1a3ff15cad73bd6ec49a", - "symbol": "ZAPI", - "decimals": 9, - "name": "Zapicorn", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xc434268603ca8854e0be1a3ff15cad73bd6ec49a.png", - "aggregators": [ - "CoinMarketCap", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x9e9fbde7c7a83c43913bddc8779158f1368f0413": { - "address": "0x9e9fbde7c7a83c43913bddc8779158f1368f0413", - "symbol": "PANDORA", - "decimals": 18, - "name": "Pandora", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x9e9fbde7c7a83c43913bddc8779158f1368f0413.png", - "aggregators": [ - "CoinMarketCap", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x777be1c6075c20184c4fd76344b7b0b7c858fe6b": { - "address": "0x777be1c6075c20184c4fd76344b7b0b7c858fe6b", - "symbol": "BAR", - "decimals": 18, - "name": "Gold Standard", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x777be1c6075c20184c4fd76344b7b0b7c858fe6b.png", - "aggregators": [ - "CoinMarketCap", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x4309e88d1d511f3764ee0f154cee98d783b61f09": { - "address": "0x4309e88d1d511f3764ee0f154cee98d783b61f09", - "symbol": "OCAI", - "decimals": 18, - "name": "Onchain AI", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x4309e88d1d511f3764ee0f154cee98d783b61f09.png", - "aggregators": [ - "CoinMarketCap", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x6b1a8f210ec6b7b6643cea3583fb0c079f367898": { - "address": "0x6b1a8f210ec6b7b6643cea3583fb0c079f367898", - "symbol": "BXX", - "decimals": 18, - "name": "Baanx", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x6b1a8f210ec6b7b6643cea3583fb0c079f367898.png", - "aggregators": [ - "CoinMarketCap", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0xd7f0cc50ad69408ae58be033f4f85d2367c2e468": { - "address": "0xd7f0cc50ad69408ae58be033f4f85d2367c2e468", - "symbol": "VERA", - "decimals": 18, - "name": "Vera", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xd7f0cc50ad69408ae58be033f4f85d2367c2e468.png", - "aggregators": [ - "CoinMarketCap", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x67466be17df832165f8c80a5a120ccc652bd7e69": { - "address": "0x67466be17df832165f8c80a5a120ccc652bd7e69", - "symbol": "WOLF", - "decimals": 18, - "name": "LandWolf", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x67466be17df832165f8c80a5a120ccc652bd7e69.png", - "aggregators": [ - "CoinMarketCap", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0xa059b81568fee88791de88232e838465826cf419": { - "address": "0xa059b81568fee88791de88232e838465826cf419", - "symbol": "THREE", - "decimals": 9, - "name": "THREE", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xa059b81568fee88791de88232e838465826cf419.png", - "aggregators": [ - "CoinMarketCap", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x90685e300a4c4532efcefe91202dfe1dfd572f47": { - "address": "0x90685e300a4c4532efcefe91202dfe1dfd572f47", - "symbol": "CTA", - "decimals": 18, - "name": "Cross The Ages", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x90685e300a4c4532efcefe91202dfe1dfd572f47.png", - "aggregators": [ - "CoinMarketCap", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0xe9689028ede16c2fdfe3d11855d28f8e3fc452a3": { - "address": "0xe9689028ede16c2fdfe3d11855d28f8e3fc452a3", - "symbol": "BUBBLE", - "decimals": 18, - "name": "Imaginary Ones", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xe9689028ede16c2fdfe3d11855d28f8e3fc452a3.png", - "aggregators": [ - "CoinMarketCap", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x9fd9278f04f01c6a39a9d1c1cd79f7782c6ade08": { - "address": "0x9fd9278f04f01c6a39a9d1c1cd79f7782c6ade08", - "symbol": "BIAO", - "decimals": 9, - "name": "Biaoqing", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x9fd9278f04f01c6a39a9d1c1cd79f7782c6ade08.png", - "aggregators": [ - "CoinMarketCap", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x3b991130eae3cca364406d718da22fa1c3e7c256": { - "address": "0x3b991130eae3cca364406d718da22fa1c3e7c256", - "symbol": "SHRUB", - "decimals": 18, - "name": "Shrub", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x3b991130eae3cca364406d718da22fa1c3e7c256.png", - "aggregators": [ - "CoinMarketCap", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x97aee01ed2aabad9f54692f94461ae761d225f17": { - "address": "0x97aee01ed2aabad9f54692f94461ae761d225f17", - "symbol": "DEGA", - "decimals": 18, - "name": "DEGA", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x97aee01ed2aabad9f54692f94461ae761d225f17.png", - "aggregators": [ - "CoinMarketCap", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x5484581038cbf8ef33b7f6daec7a2f01f71db3c2": { - "address": "0x5484581038cbf8ef33b7f6daec7a2f01f71db3c2", - "symbol": "HARAMBEAI", - "decimals": 18, - "name": "Harambe AI", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x5484581038cbf8ef33b7f6daec7a2f01f71db3c2.png", - "aggregators": [ - "CoinMarketCap", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0xcb76314c2540199f4b844d4ebbc7998c604880ca": { - "address": "0xcb76314c2540199f4b844d4ebbc7998c604880ca", - "symbol": "BERRY", - "decimals": 18, - "name": "Strawberry AI", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xcb76314c2540199f4b844d4ebbc7998c604880ca.png", - "aggregators": [ - "CoinMarketCap", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x393f1d49425d94f47b26e591a9d111df5cd61065": { - "address": "0x393f1d49425d94f47b26e591a9d111df5cd61065", - "symbol": "GUA", - "decimals": 18, - "name": "GUA", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x393f1d49425d94f47b26e591a9d111df5cd61065.png", - "aggregators": [ - "CoinMarketCap", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x6942040b6d25d6207e98f8e26c6101755d67ac89": { - "address": "0x6942040b6d25d6207e98f8e26c6101755d67ac89", - "symbol": "MELLOW", - "decimals": 9, - "name": "Mellow Man", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x6942040b6d25d6207e98f8e26c6101755d67ac89.png", - "aggregators": [ - "CoinMarketCap", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0xb72e76ccf005313868db7b48070901a44629da98": { - "address": "0xb72e76ccf005313868db7b48070901a44629da98", - "symbol": "SQGROW", - "decimals": 9, - "name": "SquidGrow", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xb72e76ccf005313868db7b48070901a44629da98.png", - "aggregators": [ - "CoinMarketCap", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0xf8206a19fca5999425358de4e4cdefc7f5c5d4ca": { - "address": "0xf8206a19fca5999425358de4e4cdefc7f5c5d4ca", - "symbol": "WIGL", - "decimals": 9, - "name": "Wigl", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xf8206a19fca5999425358de4e4cdefc7f5c5d4ca.png", - "aggregators": [ - "CoinMarketCap", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0xae6e307c3fe9e922e5674dbd7f830ed49c014c6b": { - "address": "0xae6e307c3fe9e922e5674dbd7f830ed49c014c6b", - "symbol": "CREDI", - "decimals": 18, - "name": "Credefi", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xae6e307c3fe9e922e5674dbd7f830ed49c014c6b.png", - "aggregators": [ - "CoinMarketCap", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x888c1a341ce9d9ae9c2d2a75a72a7f0d2551a2dc": { - "address": "0x888c1a341ce9d9ae9c2d2a75a72a7f0d2551a2dc", - "symbol": "CSI", - "decimals": 18, - "name": "CSI888", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x888c1a341ce9d9ae9c2d2a75a72a7f0d2551a2dc.png", - "aggregators": [ - "CoinMarketCap", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x4c44a8b7823b80161eb5e6d80c014024752607f2": { - "address": "0x4c44a8b7823b80161eb5e6d80c014024752607f2", - "symbol": "PAC", - "decimals": 9, - "name": "America Pac", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x4c44a8b7823b80161eb5e6d80c014024752607f2.png", - "aggregators": [ - "CoinMarketCap", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0xebb66a88cedd12bfe3a289df6dfee377f2963f12": { - "address": "0xebb66a88cedd12bfe3a289df6dfee377f2963f12", - "symbol": "OSCAR", - "decimals": 9, - "name": "OSCAR", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xebb66a88cedd12bfe3a289df6dfee377f2963f12.png", - "aggregators": [ - "CoinMarketCap", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0xebb1afb0a4ddc9b1f84d9aa72ff956cd1c1eb4be": { - "address": "0xebb1afb0a4ddc9b1f84d9aa72ff956cd1c1eb4be", - "symbol": "EMRLD", - "decimals": 18, - "name": "The Emerald Company", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xebb1afb0a4ddc9b1f84d9aa72ff956cd1c1eb4be.png", - "aggregators": [ - "CoinMarketCap", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x628a3b2e302c7e896acc432d2d0dd22b6cb9bc88": { - "address": "0x628a3b2e302c7e896acc432d2d0dd22b6cb9bc88", - "symbol": "LMWR", - "decimals": 18, - "name": "LimeWire", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x628a3b2e302c7e896acc432d2d0dd22b6cb9bc88.png", - "aggregators": [ - "CoinMarketCap", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x22514ffb0d7232a56f0c24090e7b68f179faa940": { - "address": "0x22514ffb0d7232a56f0c24090e7b68f179faa940", - "symbol": "QORPO", - "decimals": 18, - "name": "QORPO WORLD", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x22514ffb0d7232a56f0c24090e7b68f179faa940.png", - "aggregators": [ - "CoinMarketCap", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0xa849eaae994fb86afa73382e9bd88c2b6b18dc71": { - "address": "0xa849eaae994fb86afa73382e9bd88c2b6b18dc71", - "symbol": "MVL", - "decimals": 18, - "name": "Mass Vehicle Ledger", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xa849eaae994fb86afa73382e9bd88c2b6b18dc71.png", - "aggregators": [ - "Metamask", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x188e817b02e635d482ae4d81e25dda98a97c4a42": { - "address": "0x188e817b02e635d482ae4d81e25dda98a97c4a42", - "symbol": "LITH", - "decimals": 18, - "name": "Lithium Finance", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x188e817b02e635d482ae4d81e25dda98a97c4a42.png", - "aggregators": [ - "CoinMarketCap", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x423071774c43c0aaf4210b439e7cda8c797e2f26": { - "address": "0x423071774c43c0aaf4210b439e7cda8c797e2f26", - "symbol": "GALAXIS", - "decimals": 18, - "name": "GALAXIS Token", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x423071774c43c0aaf4210b439e7cda8c797e2f26.png", - "aggregators": [ - "CoinMarketCap", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x764a726d9ced0433a8d7643335919deb03a9a935": { - "address": "0x764a726d9ced0433a8d7643335919deb03a9a935", - "symbol": "POKT", - "decimals": 6, - "name": "Pocket Network", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x764a726d9ced0433a8d7643335919deb03a9a935.png", - "aggregators": [ - "Metamask", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x0921799cb1d702148131024d18fcde022129dc73": { - "address": "0x0921799cb1d702148131024d18fcde022129dc73", - "symbol": "LL", - "decimals": 18, - "name": "LightLink", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x0921799cb1d702148131024d18fcde022129dc73.png", - "aggregators": [ - "CoinMarketCap", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x73fbd93bfda83b111ddc092aa3a4ca77fd30d380": { - "address": "0x73fbd93bfda83b111ddc092aa3a4ca77fd30d380", - "symbol": "SOPH", - "decimals": 18, - "name": "SophiaVerse", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x73fbd93bfda83b111ddc092aa3a4ca77fd30d380.png", - "aggregators": [ - "CoinMarketCap", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x25931894a86d47441213199621f1f2994e1c39aa": { - "address": "0x25931894a86d47441213199621f1f2994e1c39aa", - "symbol": "CGPT", - "decimals": 18, - "name": "ChainGPT", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x25931894a86d47441213199621f1f2994e1c39aa.png", - "aggregators": [ - "CoinMarketCap", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x6b66ccd1340c479b07b390d326eadcbb84e726ba": { - "address": "0x6b66ccd1340c479b07b390d326eadcbb84e726ba", - "symbol": "SEAM", - "decimals": 18, - "name": "Seamless Protocol", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x6b66ccd1340c479b07b390d326eadcbb84e726ba.png", - "aggregators": [ - "CoinMarketCap", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0xd101dcc414f310268c37eeb4cd376ccfa507f571": { - "address": "0xd101dcc414f310268c37eeb4cd376ccfa507f571", - "symbol": "RSC", - "decimals": 18, - "name": "ResearchCoin", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xd101dcc414f310268c37eeb4cd376ccfa507f571.png", - "aggregators": [ - "CoinMarketCap", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x051fb509e4a775fabd257611eea1efaed8f91359": { - "address": "0x051fb509e4a775fabd257611eea1efaed8f91359", - "symbol": "CATE", - "decimals": 9, - "name": "CateCoin", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x051fb509e4a775fabd257611eea1efaed8f91359.png", - "aggregators": [ - "CoinGecko", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x186d0ba3dfc3386c464eecd96a61fbb1e2da00bf": { - "address": "0x186d0ba3dfc3386c464eecd96a61fbb1e2da00bf", - "symbol": "TRAVA", - "decimals": 18, - "name": "Trava Finance", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x186d0ba3dfc3386c464eecd96a61fbb1e2da00bf.png", - "aggregators": [ - "CoinMarketCap", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0xbe03e60757f21f4b6fc8f16676ad9d5b1002e512": { - "address": "0xbe03e60757f21f4b6fc8f16676ad9d5b1002e512", - "symbol": "RST", - "decimals": 18, - "name": "Raini Studios Token", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xbe03e60757f21f4b6fc8f16676ad9d5b1002e512.png", - "aggregators": [ - "CoinMarketCap", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x7b4328c127b85369d9f82ca0503b000d09cf9180": { - "address": "0x7b4328c127b85369d9f82ca0503b000d09cf9180", - "symbol": "DC", - "decimals": 18, - "name": "Dogechain", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x7b4328c127b85369d9f82ca0503b000d09cf9180.png", - "aggregators": [ - "CoinMarketCap", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x12bb890508c125661e03b09ec06e404bc9289040": { - "address": "0x12bb890508c125661e03b09ec06e404bc9289040", - "symbol": "RACA", - "decimals": 18, - "name": "Radio Caca", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x12bb890508c125661e03b09ec06e404bc9289040.png", - "aggregators": [ - "CoinMarketCap", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x968f6f898a6df937fc1859b323ac2f14643e3fed": { - "address": "0x968f6f898a6df937fc1859b323ac2f14643e3fed", - "symbol": "NWC", - "decimals": 18, - "name": "Numerico", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x968f6f898a6df937fc1859b323ac2f14643e3fed.png", - "aggregators": [ - "Metamask", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x45c2f8c9b4c0bdc76200448cc26c48ab6ffef83f": { - "address": "0x45c2f8c9b4c0bdc76200448cc26c48ab6ffef83f", - "symbol": "DOMI", - "decimals": 18, - "name": "Domi", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x45c2f8c9b4c0bdc76200448cc26c48ab6ffef83f.png", - "aggregators": [ - "CoinMarketCap", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0xc17c30e98541188614df99239cabd40280810ca3": { - "address": "0xc17c30e98541188614df99239cabd40280810ca3", - "symbol": "RISE", - "decimals": 18, - "name": "EverRise", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xc17c30e98541188614df99239cabd40280810ca3.png", - "aggregators": [ - "CoinMarketCap", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0xaef420fd77477d9dc8b46d704d44dd09d6c27866": { - "address": "0xaef420fd77477d9dc8b46d704d44dd09d6c27866", - "symbol": "CGV", - "decimals": 6, - "name": "Cogito Finance", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xaef420fd77477d9dc8b46d704d44dd09d6c27866.png", - "aggregators": [ - "CoinMarketCap", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x5b52bfb8062ce664d74bbcd4cd6dc7df53fd7233": { - "address": "0x5b52bfb8062ce664d74bbcd4cd6dc7df53fd7233", - "symbol": "ZENIQ", - "decimals": 18, - "name": "ZENIQ", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x5b52bfb8062ce664d74bbcd4cd6dc7df53fd7233.png", - "aggregators": [ - "CoinMarketCap", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x6b431b8a964bfcf28191b07c91189ff4403957d0": { - "address": "0x6b431b8a964bfcf28191b07c91189ff4403957d0", - "symbol": "CORGIAI", - "decimals": 18, - "name": "CorgiAI", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x6b431b8a964bfcf28191b07c91189ff4403957d0.png", - "aggregators": [ - "CoinMarketCap", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x19373ecbb4b8cc2253d70f2a246fa299303227ba": { - "address": "0x19373ecbb4b8cc2253d70f2a246fa299303227ba", - "symbol": "OCH", - "decimals": 18, - "name": "Orchai", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x19373ecbb4b8cc2253d70f2a246fa299303227ba.png", - "aggregators": [ - "CoinMarketCap", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0xf97e2a78f1f3d1fd438ff7cc3bb7de01e5945b83": { - "address": "0xf97e2a78f1f3d1fd438ff7cc3bb7de01e5945b83", - "symbol": "RIDE", - "decimals": 18, - "name": "holoride", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xf97e2a78f1f3d1fd438ff7cc3bb7de01e5945b83.png", - "aggregators": [ - "CoinMarketCap", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x19e1f2f837a3b90ebd0730cb6111189be0e1b6d6": { - "address": "0x19e1f2f837a3b90ebd0730cb6111189be0e1b6d6", - "symbol": "LAIKA", - "decimals": 18, - "name": "La ka", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x19e1f2f837a3b90ebd0730cb6111189be0e1b6d6.png", - "aggregators": [ - "CoinMarketCap", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0xf469fbd2abcd6b9de8e169d128226c0fc90a012e": { - "address": "0xf469fbd2abcd6b9de8e169d128226c0fc90a012e", - "symbol": "PUMPBTC", - "decimals": 8, - "name": "pumpBTC", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xf469fbd2abcd6b9de8e169d128226c0fc90a012e.png", - "aggregators": [ - "CoinGecko", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x675b68aa4d9c2d3bb3f0397048e62e6b7192079c": { - "address": "0x675b68aa4d9c2d3bb3f0397048e62e6b7192079c", - "symbol": "FUEL", - "decimals": 9, - "name": "Fuel Network", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x675b68aa4d9c2d3bb3f0397048e62e6b7192079c.png", - "aggregators": [ - "CoinMarketCap", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x5ac34c53a04b9aaa0bf047e7291fb4e8a48f2a18": { - "address": "0x5ac34c53a04b9aaa0bf047e7291fb4e8a48f2a18", - "symbol": "NAI", - "decimals": 18, - "name": "Nuklai", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x5ac34c53a04b9aaa0bf047e7291fb4e8a48f2a18.png", - "aggregators": [ - "CoinMarketCap", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x79f05c263055ba20ee0e814acd117c20caa10e0c": { - "address": "0x79f05c263055ba20ee0e814acd117c20caa10e0c", - "symbol": "ICE", - "decimals": 18, - "name": "Ice Open Network", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x79f05c263055ba20ee0e814acd117c20caa10e0c.png", - "aggregators": [ - "CoinGecko", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x667088b212ce3d06a1b553a7221e1fd19000d9af": { - "address": "0x667088b212ce3d06a1b553a7221e1fd19000d9af", - "symbol": "WINGS", - "decimals": 18, - "name": "WINGS", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x667088b212ce3d06a1b553a7221e1fd19000d9af.png", - "aggregators": ["Metamask", "LiFi", "Rubic", "Rango", "Bancor"], - "occurrences": 5 - }, - "0xfa05a73ffe78ef8f1a739473e462c54bae6567d9": { - "address": "0xfa05a73ffe78ef8f1a739473e462c54bae6567d9", - "symbol": "LUN", - "decimals": 18, - "name": "Lunyr Token", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xfa05a73ffe78ef8f1a739473e462c54bae6567d9.png", - "aggregators": [ - "Metamask", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x701c244b988a513c945973defa05de933b23fe1d": { - "address": "0x701c244b988a513c945973defa05de933b23fe1d", - "symbol": "OAX", - "decimals": 18, - "name": "openANX Token", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x701c244b988a513c945973defa05de933b23fe1d.png", - "aggregators": [ - "CoinMarketCap", - "Rubic", - "Rango", - "Sonarwatch", - "Bancor" - ], - "occurrences": 5 - }, - "0x05f4a42e251f2d52b8ed15e9fedaacfcef1fad27": { - "address": "0x05f4a42e251f2d52b8ed15e9fedaacfcef1fad27", - "symbol": "ZIL", - "decimals": 12, - "name": "Zilliqa", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x05f4a42e251f2d52b8ed15e9fedaacfcef1fad27.png", - "aggregators": ["Metamask", "LiFi", "Socket", "Rubic", "Bancor"], - "occurrences": 5 - }, - "0x4f3afec4e5a3f2a6a1a411def7d7dfe50ee057bf": { - "address": "0x4f3afec4e5a3f2a6a1a411def7d7dfe50ee057bf", - "symbol": "DGX", - "decimals": 9, - "name": "Digix Gold Token", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x4f3afec4e5a3f2a6a1a411def7d7dfe50ee057bf.png", - "aggregators": [ - "CoinMarketCap", - "LiFi", - "Socket", - "Rubic", - "Rango" - ], - "occurrences": 5 - }, - "0xadd5e881984783dd432f80381fb52f45b53f3e70": { - "address": "0xadd5e881984783dd432f80381fb52f45b53f3e70", - "symbol": "VITE", - "decimals": 18, - "name": "Vite", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xadd5e881984783dd432f80381fb52f45b53f3e70.png", - "aggregators": [ - "CoinMarketCap", - "Rubic", - "Rango", - "Sonarwatch", - "SushiSwap" - ], - "occurrences": 5 - }, - "0x0a913bead80f321e7ac35285ee10d9d922659cb7": { - "address": "0x0a913bead80f321e7ac35285ee10d9d922659cb7", - "symbol": "DOS", - "decimals": 18, - "name": "DOS Network", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x0a913bead80f321e7ac35285ee10d9d922659cb7.png", - "aggregators": [ - "CoinMarketCap", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0xdfbc9050f5b01df53512dcc39b4f2b2bbacd517a": { - "address": "0xdfbc9050f5b01df53512dcc39b4f2b2bbacd517a", - "symbol": "JOB", - "decimals": 8, - "name": "Jobchain", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xdfbc9050f5b01df53512dcc39b4f2b2bbacd517a.png", - "aggregators": [ - "Metamask", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x035df12e0f3ac6671126525f1015e47d79dfeddf": { - "address": "0x035df12e0f3ac6671126525f1015e47d79dfeddf", - "symbol": "0XMR", - "decimals": 18, - "name": "0xMonero", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x035df12e0f3ac6671126525f1015e47d79dfeddf.png", - "aggregators": [ - "CoinMarketCap", - "LiFi", - "Socket", - "Rubic", - "Rango" - ], - "occurrences": 5 - }, - "0xef9cd7882c067686691b6ff49e650b43afbbcc6b": { - "address": "0xef9cd7882c067686691b6ff49e650b43afbbcc6b", - "symbol": "FNX", - "decimals": 18, - "name": "FinNexus", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xef9cd7882c067686691b6ff49e650b43afbbcc6b.png", - "aggregators": [ - "CoinMarketCap", - "LiFi", - "Rubic", - "Rango", - "SushiSwap" - ], - "occurrences": 5 - }, - "0xf29e46887ffae92f1ff87dfe39713875da541373": { - "address": "0xf29e46887ffae92f1ff87dfe39713875da541373", - "symbol": "UNC", - "decimals": 18, - "name": "UNC", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xf29e46887ffae92f1ff87dfe39713875da541373.png", - "aggregators": ["CoinMarketCap", "1inch", "LiFi", "Rubic", "Rango"], - "occurrences": 5 - }, - "0x57700244b20f84799a31c6c96dadff373ca9d6c5": { - "address": "0x57700244b20f84799a31c6c96dadff373ca9d6c5", - "symbol": "TRUST", - "decimals": 18, - "name": "TRUST", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x57700244b20f84799a31c6c96dadff373ca9d6c5.png", - "aggregators": ["CoinMarketCap", "1inch", "LiFi", "Rubic", "Rango"], - "occurrences": 5 - }, - "0xf911a7ec46a2c6fa49193212fe4a2a9b95851c27": { - "address": "0xf911a7ec46a2c6fa49193212fe4a2a9b95851c27", - "symbol": "XAMP", - "decimals": 9, - "name": "XAMP", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xf911a7ec46a2c6fa49193212fe4a2a9b95851c27.png", - "aggregators": ["CoinMarketCap", "1inch", "LiFi", "Rubic", "Rango"], - "occurrences": 5 - }, - "0x607c794cda77efb21f8848b7910ecf27451ae842": { - "address": "0x607c794cda77efb21f8848b7910ecf27451ae842", - "symbol": "PIE", - "decimals": 18, - "name": "PIE", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x607c794cda77efb21f8848b7910ecf27451ae842.png", - "aggregators": ["CoinMarketCap", "1inch", "LiFi", "Rubic", "Rango"], - "occurrences": 5 - }, - "0x9b53e429b0badd98ef7f01f03702986c516a5715": { - "address": "0x9b53e429b0badd98ef7f01f03702986c516a5715", - "symbol": "HY", - "decimals": 18, - "name": "hybrix hydra", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x9b53e429b0badd98ef7f01f03702986c516a5715.png", - "aggregators": [ - "CoinMarketCap", - "1inch", - "Rubic", - "Rango", - "Bancor" - ], - "occurrences": 5 - }, - "0x9cb2f26a23b8d89973f08c957c4d7cdf75cd341c": { - "address": "0x9cb2f26a23b8d89973f08c957c4d7cdf75cd341c", - "symbol": "DZAR", - "decimals": 6, - "name": "DZAR", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x9cb2f26a23b8d89973f08c957c4d7cdf75cd341c.png", - "aggregators": ["CoinMarketCap", "1inch", "LiFi", "Rubic", "Rango"], - "occurrences": 5 - }, - "0xe17f017475a709de58e976081eb916081ff4c9d5": { - "address": "0xe17f017475a709de58e976081eb916081ff4c9d5", - "symbol": "RMPL", - "decimals": 9, - "name": "RMPL", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xe17f017475a709de58e976081eb916081ff4c9d5.png", - "aggregators": ["CoinMarketCap", "1inch", "LiFi", "Rubic", "Rango"], - "occurrences": 5 - }, - "0xa462d0e6bb788c7807b1b1c96992ce1f7069e195": { - "address": "0xa462d0e6bb788c7807b1b1c96992ce1f7069e195", - "symbol": "EQMT", - "decimals": 18, - "name": "EQMT", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xa462d0e6bb788c7807b1b1c96992ce1f7069e195.png", - "aggregators": ["CoinMarketCap", "1inch", "LiFi", "Rubic", "Rango"], - "occurrences": 5 - }, - "0x8a6f3bf52a26a21531514e23016eeae8ba7e7018": { - "address": "0x8a6f3bf52a26a21531514e23016eeae8ba7e7018", - "symbol": "MXX", - "decimals": 8, - "name": "Multiplier", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x8a6f3bf52a26a21531514e23016eeae8ba7e7018.png", - "aggregators": [ - "CoinMarketCap", - "1inch", - "Socket", - "Rubic", - "Rango" - ], - "occurrences": 5 - }, - "0x4fe5851c9af07df9e5ad8217afae1ea72737ebda": { - "address": "0x4fe5851c9af07df9e5ad8217afae1ea72737ebda", - "symbol": "OPT", - "decimals": 18, - "name": "Open Predict Token", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x4fe5851c9af07df9e5ad8217afae1ea72737ebda.png", - "aggregators": [ - "CoinMarketCap", - "1inch", - "Socket", - "Rubic", - "Rango" - ], - "occurrences": 5 - }, - "0x3e780920601d61cedb860fe9c4a90c9ea6a35e78": { - "address": "0x3e780920601d61cedb860fe9c4a90c9ea6a35e78", - "symbol": "BOOST", - "decimals": 18, - "name": "Boosted Finance", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x3e780920601d61cedb860fe9c4a90c9ea6a35e78.png", - "aggregators": [ - "CoinMarketCap", - "1inch", - "Socket", - "Rubic", - "Rango" - ], - "occurrences": 5 - }, - "0xdf49c9f599a0a9049d97cff34d0c30e468987389": { - "address": "0xdf49c9f599a0a9049d97cff34d0c30e468987389", - "symbol": "SATT", - "decimals": 18, - "name": "SaTT", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xdf49c9f599a0a9049d97cff34d0c30e468987389.png", - "aggregators": [ - "Metamask", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x26cf82e4ae43d31ea51e72b663d26e26a75af729": { - "address": "0x26cf82e4ae43d31ea51e72b663d26e26a75af729", - "symbol": "MBBASED", - "decimals": 18, - "name": "Moonbase", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x26cf82e4ae43d31ea51e72b663d26e26a75af729.png", - "aggregators": [ - "CoinMarketCap", - "LiFi", - "Rubic", - "Rango", - "SushiSwap" - ], - "occurrences": 5 - }, - "0x5d858bcd53e085920620549214a8b27ce2f04670": { - "address": "0x5d858bcd53e085920620549214a8b27ce2f04670", - "symbol": "POP", - "decimals": 18, - "name": "POP Network Token", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x5d858bcd53e085920620549214a8b27ce2f04670.png", - "aggregators": [ - "Metamask", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x3fa729b4548becbad4eab6ef18413470e6d5324c": { - "address": "0x3fa729b4548becbad4eab6ef18413470e6d5324c", - "symbol": "MOVE", - "decimals": 18, - "name": "Mover", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x3fa729b4548becbad4eab6ef18413470e6d5324c.png", - "aggregators": [ - "CoinMarketCap", - "LiFi", - "Socket", - "Rubic", - "Rango" - ], - "occurrences": 5 - }, - "0x4a64515e5e1d1073e83f30cb97bed20400b66e10": { - "address": "0x4a64515e5e1d1073e83f30cb97bed20400b66e10", - "symbol": "WZEC", - "decimals": 18, - "name": "Wrapped ZEC", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x4a64515e5e1d1073e83f30cb97bed20400b66e10.png", - "aggregators": [ - "CoinMarketCap", - "LiFi", - "Rubic", - "Rango", - "SushiSwap" - ], - "occurrences": 5 - }, - "0xbbff34e47e559ef680067a6b1c980639eeb64d24": { - "address": "0xbbff34e47e559ef680067a6b1c980639eeb64d24", - "symbol": "L2", - "decimals": 18, - "name": "Leverj Gluon", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xbbff34e47e559ef680067a6b1c980639eeb64d24.png", - "aggregators": [ - "CoinMarketCap", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x7eaf9c89037e4814dc0d9952ac7f888c784548db": { - "address": "0x7eaf9c89037e4814dc0d9952ac7f888c784548db", - "symbol": "ROYA", - "decimals": 18, - "name": "Royale", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x7eaf9c89037e4814dc0d9952ac7f888c784548db.png", - "aggregators": ["CoinMarketCap", "1inch", "LiFi", "Rubic", "Rango"], - "occurrences": 5 - }, - "0xcb8fb2438a805664cd8c3e640b85ac473da5be87": { - "address": "0xcb8fb2438a805664cd8c3e640b85ac473da5be87", - "symbol": "CTI", - "decimals": 18, - "name": "ClinTex CTi", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xcb8fb2438a805664cd8c3e640b85ac473da5be87.png", - "aggregators": [ - "CoinMarketCap", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x9248c485b0b80f76da451f167a8db30f33c70907": { - "address": "0x9248c485b0b80f76da451f167a8db30f33c70907", - "symbol": "DEBASE", - "decimals": 18, - "name": "Debase", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x9248c485b0b80f76da451f167a8db30f33c70907.png", - "aggregators": [ - "CoinMarketCap", - "1inch", - "Socket", - "Rubic", - "Rango" - ], - "occurrences": 5 - }, - "0xb4bebd34f6daafd808f73de0d10235a92fbb6c3d": { - "address": "0xb4bebd34f6daafd808f73de0d10235a92fbb6c3d", - "symbol": "YETI", - "decimals": 18, - "name": "Yearn Ecosystem Token Index", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xb4bebd34f6daafd808f73de0d10235a92fbb6c3d.png", - "aggregators": [ - "CoinMarketCap", - "LiFi", - "Rubic", - "Rango", - "SushiSwap" - ], - "occurrences": 5 - }, - "0x965697b4ef02f0de01384d0d4f9f782b1670c163": { - "address": "0x965697b4ef02f0de01384d0d4f9f782b1670c163", - "symbol": "OXY", - "decimals": 6, - "name": "Oxygen", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x965697b4ef02f0de01384d0d4f9f782b1670c163.png", - "aggregators": [ - "CoinMarketCap", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x17525e4f4af59fbc29551bc4ece6ab60ed49ce31": { - "address": "0x17525e4f4af59fbc29551bc4ece6ab60ed49ce31", - "symbol": "YPIE", - "decimals": 18, - "name": "PieDAO Yearn Ecosystem Pie", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x17525e4f4af59fbc29551bc4ece6ab60ed49ce31.png", - "aggregators": [ - "CoinMarketCap", - "LiFi", - "Rubic", - "Rango", - "SushiSwap" - ], - "occurrences": 5 - }, - "0x018fb5af9d015af25592a014c4266a84143de7a0": { - "address": "0x018fb5af9d015af25592a014c4266a84143de7a0", - "symbol": "MP3", - "decimals": 18, - "name": "mp3", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x018fb5af9d015af25592a014c4266a84143de7a0.png", - "aggregators": [ - "CoinMarketCap", - "1inch", - "Socket", - "Rubic", - "Rango" - ], - "occurrences": 5 - }, - "0x196c81385bc536467433014042788eb707703934": { - "address": "0x196c81385bc536467433014042788eb707703934", - "symbol": "CTASK", - "decimals": 18, - "name": "CTASK Token", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x196c81385bc536467433014042788eb707703934.png", - "aggregators": [ - "CoinMarketCap", - "1inch", - "Socket", - "Rubic", - "Rango" - ], - "occurrences": 5 - }, - "0x76c5449f4950f6338a393f53cda8b53b0cd3ca3a": { - "address": "0x76c5449f4950f6338a393f53cda8b53b0cd3ca3a", - "symbol": "BT", - "decimals": 18, - "name": "BT.Finance", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x76c5449f4950f6338a393f53cda8b53b0cd3ca3a.png", - "aggregators": [ - "CoinMarketCap", - "1inch", - "Socket", - "Rubic", - "Rango" - ], - "occurrences": 5 - }, - "0x4c6ec08cf3fc987c6c4beb03184d335a2dfc4042": { - "address": "0x4c6ec08cf3fc987c6c4beb03184d335a2dfc4042", - "symbol": "PAINT", - "decimals": 18, - "name": "MurAll", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x4c6ec08cf3fc987c6c4beb03184d335a2dfc4042.png", - "aggregators": [ - "CoinMarketCap", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x358aa737e033f34df7c54306960a38d09aabd523": { - "address": "0x358aa737e033f34df7c54306960a38d09aabd523", - "symbol": "ARES", - "decimals": 18, - "name": "Ares Protocol", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x358aa737e033f34df7c54306960a38d09aabd523.png", - "aggregators": [ - "Metamask", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x59e9261255644c411afdd00bd89162d09d862e38": { - "address": "0x59e9261255644c411afdd00bd89162d09d862e38", - "symbol": "ETHA", - "decimals": 18, - "name": "ETHA Lend", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x59e9261255644c411afdd00bd89162d09d862e38.png", - "aggregators": [ - "CoinMarketCap", - "LiFi", - "Socket", - "Rubic", - "Rango" - ], - "occurrences": 5 - }, - "0x182f4c4c97cd1c24e1df8fc4c053e5c47bf53bef": { - "address": "0x182f4c4c97cd1c24e1df8fc4c053e5c47bf53bef", - "symbol": "TANGO", - "decimals": 18, - "name": "keyTango Token", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x182f4c4c97cd1c24e1df8fc4c053e5c47bf53bef.png", - "aggregators": ["Metamask", "1inch", "Socket", "Rubic", "Rango"], - "occurrences": 5 - }, - "0x33e07f5055173cf8febede8b21b12d1e2b523205": { - "address": "0x33e07f5055173cf8febede8b21b12d1e2b523205", - "symbol": "ELAND", - "decimals": 18, - "name": "Etherland", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x33e07f5055173cf8febede8b21b12d1e2b523205.png", - "aggregators": [ - "CoinMarketCap", - "LiFi", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x4da0c48376c277cdbd7fc6fdc6936dee3e4adf75": { - "address": "0x4da0c48376c277cdbd7fc6fdc6936dee3e4adf75", - "symbol": "EPIK", - "decimals": 18, - "name": "Epik Prime", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x4da0c48376c277cdbd7fc6fdc6936dee3e4adf75.png", - "aggregators": [ - "CoinMarketCap", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x8cb924583681cbfe487a62140a994a49f833c244": { - "address": "0x8cb924583681cbfe487a62140a994a49f833c244", - "symbol": "SWAPP", - "decimals": 18, - "name": "Swapp Token", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x8cb924583681cbfe487a62140a994a49f833c244.png", - "aggregators": [ - "CoinMarketCap", - "1inch", - "Socket", - "Rubic", - "Rango" - ], - "occurrences": 5 - }, - "0x00813e3421e1367353bfe7615c7f7f133c89df74": { - "address": "0x00813e3421e1367353bfe7615c7f7f133c89df74", - "symbol": "SPS", - "decimals": 18, - "name": "Splintershards", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x00813e3421e1367353bfe7615c7f7f133c89df74.png", - "aggregators": [ - "CoinMarketCap", - "LiFi", - "Rubic", - "Rango", - "SushiSwap" - ], - "occurrences": 5 - }, - "0x785c34312dfa6b74f6f1829f79ade39042222168": { - "address": "0x785c34312dfa6b74f6f1829f79ade39042222168", - "symbol": "BUMP", - "decimals": 18, - "name": "Bumper", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x785c34312dfa6b74f6f1829f79ade39042222168.png", - "aggregators": [ - "CoinMarketCap", - "LiFi", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x96610186f3ab8d73ebee1cf950c750f3b1fb79c2": { - "address": "0x96610186f3ab8d73ebee1cf950c750f3b1fb79c2", - "symbol": "EJS", - "decimals": 18, - "name": "Enjinstarter", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x96610186f3ab8d73ebee1cf950c750f3b1fb79c2.png", - "aggregators": [ - "CoinMarketCap", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x97872eafd79940c7b24f7bcc1eadb1457347adc9": { - "address": "0x97872eafd79940c7b24f7bcc1eadb1457347adc9", - "symbol": "STRP", - "decimals": 18, - "name": "Strips Token", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x97872eafd79940c7b24f7bcc1eadb1457347adc9.png", - "aggregators": [ - "CoinMarketCap", - "LiFi", - "Rubic", - "Rango", - "SushiSwap" - ], - "occurrences": 5 - }, - "0x65a8fba02f641a13bb7b01d5e1129b0521004f52": { - "address": "0x65a8fba02f641a13bb7b01d5e1129b0521004f52", - "symbol": "AMAS", - "decimals": 18, - "name": "Amasa", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x65a8fba02f641a13bb7b01d5e1129b0521004f52.png", - "aggregators": [ - "CoinMarketCap", - "LiFi", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0xf8e9f10c22840b613cda05a0c5fdb59a4d6cd7ef": { - "address": "0xf8e9f10c22840b613cda05a0c5fdb59a4d6cd7ef", - "symbol": "DOE", - "decimals": 18, - "name": "Dogs Of Elon", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xf8e9f10c22840b613cda05a0c5fdb59a4d6cd7ef.png", - "aggregators": [ - "CoinMarketCap", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x10010078a54396f62c96df8532dc2b4847d47ed3": { - "address": "0x10010078a54396f62c96df8532dc2b4847d47ed3", - "symbol": "HND", - "decimals": 18, - "name": "Hundred Finance", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x10010078a54396f62c96df8532dc2b4847d47ed3.png", - "aggregators": [ - "CoinMarketCap", - "LiFi", - "Rubic", - "Rango", - "SushiSwap" - ], - "occurrences": 5 - }, - "0x333000333b26ee30214b4af6419d9ab07a450400": { - "address": "0x333000333b26ee30214b4af6419d9ab07a450400", - "symbol": "MELD", - "decimals": 18, - "name": "MELD", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x333000333b26ee30214b4af6419d9ab07a450400.png", - "aggregators": [ - "CoinMarketCap", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x07f9702ce093db82dfdc92c2c6e578d6ea8d5e22": { - "address": "0x07f9702ce093db82dfdc92c2c6e578d6ea8d5e22", - "symbol": "OBT", - "decimals": 18, - "name": "Oobit", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x07f9702ce093db82dfdc92c2c6e578d6ea8d5e22.png", - "aggregators": [ - "CoinMarketCap", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0xa54d2ebfd977ad836203c85f18db2f0a0cf88854": { - "address": "0xa54d2ebfd977ad836203c85f18db2f0a0cf88854", - "symbol": "BACON", - "decimals": 18, - "name": "Bacon", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xa54d2ebfd977ad836203c85f18db2f0a0cf88854.png", - "aggregators": [ - "Metamask", - "Socket", - "Rubic", - "Rango", - "SushiSwap" - ], - "occurrences": 5 - }, - "0x16cc8367055ae7e9157dbcb9d86fd6ce82522b31": { - "address": "0x16cc8367055ae7e9157dbcb9d86fd6ce82522b31", - "symbol": "VXL", - "decimals": 18, - "name": "Voxel X Network", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x16cc8367055ae7e9157dbcb9d86fd6ce82522b31.png", - "aggregators": [ - "CoinMarketCap", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x0335a7610d817aeca1bebbefbd392ecc2ed587b8": { - "address": "0x0335a7610d817aeca1bebbefbd392ecc2ed587b8", - "symbol": "NITRO", - "decimals": 18, - "name": "Nitro League", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x0335a7610d817aeca1bebbefbd392ecc2ed587b8.png", - "aggregators": [ - "CoinMarketCap", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0xf0187b76be05c1fcaa24f39c0a3aab4434099c4f": { - "address": "0xf0187b76be05c1fcaa24f39c0a3aab4434099c4f", - "symbol": "AEG", - "decimals": 18, - "name": "Aether Games", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xf0187b76be05c1fcaa24f39c0a3aab4434099c4f.png", - "aggregators": [ - "CoinMarketCap", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x000000007a58f5f58e697e51ab0357bc9e260a04": { - "address": "0x000000007a58f5f58e697e51ab0357bc9e260a04", - "symbol": "CNV", - "decimals": 18, - "name": "Concave", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x000000007a58f5f58e697e51ab0357bc9e260a04.png", - "aggregators": [ - "CoinMarketCap", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x9c354503c38481a7a7a51629142963f98ecc12d0": { - "address": "0x9c354503c38481a7a7a51629142963f98ecc12d0", - "symbol": "OGV", - "decimals": 18, - "name": "Origin DeFi Governance", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x9c354503c38481a7a7a51629142963f98ecc12d0.png", - "aggregators": ["Metamask", "LiFi", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 5 - }, - "0x0c9c7712c83b3c70e7c5e11100d33d9401bdf9dd": { - "address": "0x0c9c7712c83b3c70e7c5e11100d33d9401bdf9dd", - "symbol": "WOMBAT", - "decimals": 18, - "name": "Wombat", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x0c9c7712c83b3c70e7c5e11100d33d9401bdf9dd.png", - "aggregators": [ - "CoinMarketCap", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x256d1fce1b1221e8398f65f9b36033ce50b2d497": { - "address": "0x256d1fce1b1221e8398f65f9b36033ce50b2d497", - "symbol": "WALV", - "decimals": 18, - "name": "Alvey Chain", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x256d1fce1b1221e8398f65f9b36033ce50b2d497.png", - "aggregators": [ - "CoinMarketCap", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0xb9d7dddca9a4ac480991865efef82e01273f79c3": { - "address": "0xb9d7dddca9a4ac480991865efef82e01273f79c3", - "symbol": "BLUSD", - "decimals": 18, - "name": "LUSD Chicken Bonds", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xb9d7dddca9a4ac480991865efef82e01273f79c3.png", - "aggregators": [ - "CoinMarketCap", - "LiFi", - "Socket", - "Rubic", - "Rango" - ], - "occurrences": 5 - }, - "0x70008f18fc58928dce982b0a69c2c21ff80dca54": { - "address": "0x70008f18fc58928dce982b0a69c2c21ff80dca54", - "symbol": "X7R", - "decimals": 18, - "name": "X7R", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x70008f18fc58928dce982b0a69c2c21ff80dca54.png", - "aggregators": [ - "CoinMarketCap", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x1e4746dc744503b53b4a082cb3607b169a289090": { - "address": "0x1e4746dc744503b53b4a082cb3607b169a289090", - "symbol": "IPOR", - "decimals": 18, - "name": "IPOR", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x1e4746dc744503b53b4a082cb3607b169a289090.png", - "aggregators": [ - "CoinMarketCap", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x02de007d412266a2e0fa9287c103474170f06560": { - "address": "0x02de007d412266a2e0fa9287c103474170f06560", - "symbol": "EXD", - "decimals": 18, - "name": "Exorde", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x02de007d412266a2e0fa9287c103474170f06560.png", - "aggregators": [ - "CoinMarketCap", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0xc4c346edc55504574cceb00aa1091d22404a4bc3": { - "address": "0xc4c346edc55504574cceb00aa1091d22404a4bc3", - "symbol": "MEZZ", - "decimals": 18, - "name": "MEZZ", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xc4c346edc55504574cceb00aa1091d22404a4bc3.png", - "aggregators": [ - "CoinMarketCap", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0xac87d4cbb82ce7f4bcf31dbdc0024306cfd3ec5a": { - "address": "0xac87d4cbb82ce7f4bcf31dbdc0024306cfd3ec5a", - "symbol": "KEI", - "decimals": 18, - "name": "KEI Finance", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xac87d4cbb82ce7f4bcf31dbdc0024306cfd3ec5a.png", - "aggregators": [ - "CoinMarketCap", - "LiFi", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0xf47245e9a3ba3dca8b004e34afc1290b1d435a52": { - "address": "0xf47245e9a3ba3dca8b004e34afc1290b1d435a52", - "symbol": "MBLK", - "decimals": 18, - "name": "Magical Blocks", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xf47245e9a3ba3dca8b004e34afc1290b1d435a52.png", - "aggregators": [ - "CoinMarketCap", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x788d86e00ab31db859c3d6b80d5a9375801d7f2a": { - "address": "0x788d86e00ab31db859c3d6b80d5a9375801d7f2a", - "symbol": "TENET", - "decimals": 18, - "name": "TENET", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x788d86e00ab31db859c3d6b80d5a9375801d7f2a.png", - "aggregators": [ - "CoinMarketCap", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x5582a479f0c403e207d2578963ccef5d03ba636f": { - "address": "0x5582a479f0c403e207d2578963ccef5d03ba636f", - "symbol": "SALD", - "decimals": 18, - "name": "Salad", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x5582a479f0c403e207d2578963ccef5d03ba636f.png", - "aggregators": [ - "CoinMarketCap", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x0ae38f7e10a43b5b2fb064b42a2f4514cba909ef": { - "address": "0x0ae38f7e10a43b5b2fb064b42a2f4514cba909ef", - "symbol": "UNSHETH", - "decimals": 18, - "name": "unshETH Ether", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x0ae38f7e10a43b5b2fb064b42a2f4514cba909ef.png", - "aggregators": [ - "CoinMarketCap", - "LiFi", - "Rubic", - "Rango", - "SushiSwap" - ], - "occurrences": 5 - }, - "0xfe67a4450907459c3e1fff623aa927dd4e28c67a": { - "address": "0xfe67a4450907459c3e1fff623aa927dd4e28c67a", - "symbol": "NEXT", - "decimals": 18, - "name": "Everclear", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xfe67a4450907459c3e1fff623aa927dd4e28c67a.png", - "aggregators": [ - "CoinMarketCap", - "LiFi", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x4c45bbec2ff7810ef4a77ad7bd4757c446fe4155": { - "address": "0x4c45bbec2ff7810ef4a77ad7bd4757c446fe4155", - "symbol": "JNGL", - "decimals": 18, - "name": "Jungle Labz", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x4c45bbec2ff7810ef4a77ad7bd4757c446fe4155.png", - "aggregators": [ - "CoinMarketCap", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0xc9eb61ffb66d5815d643bbb8195e17c49687ae1e": { - "address": "0xc9eb61ffb66d5815d643bbb8195e17c49687ae1e", - "symbol": "MIND", - "decimals": 18, - "name": "Morpheus Infrastructure Node", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xc9eb61ffb66d5815d643bbb8195e17c49687ae1e.png", - "aggregators": [ - "CoinMarketCap", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0xfc10cd3895f2c66d6639ec33ae6360d6cfca7d6d": { - "address": "0xfc10cd3895f2c66d6639ec33ae6360d6cfca7d6d", - "symbol": "YES", - "decimals": 18, - "name": "YES", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xfc10cd3895f2c66d6639ec33ae6360d6cfca7d6d.png", - "aggregators": [ - "CoinMarketCap", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x328a268b191ef593b72498a9e8a481c086eb21be": { - "address": "0x328a268b191ef593b72498a9e8a481c086eb21be", - "symbol": "MZERO", - "decimals": 18, - "name": "MetaZero", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x328a268b191ef593b72498a9e8a481c086eb21be.png", - "aggregators": [ - "CoinMarketCap", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x8fc17671d853341d9e8b001f5fc3c892d09cb53a": { - "address": "0x8fc17671d853341d9e8b001f5fc3c892d09cb53a", - "symbol": "BLOCK", - "decimals": 18, - "name": "BlockGames", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x8fc17671d853341d9e8b001f5fc3c892d09cb53a.png", - "aggregators": [ - "CoinMarketCap", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x7717f2828fe4dac8558d23ee4cdfed9544e9321f": { - "address": "0x7717f2828fe4dac8558d23ee4cdfed9544e9321f", - "symbol": "OTX", - "decimals": 18, - "name": "OTX EXCHANGE", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x7717f2828fe4dac8558d23ee4cdfed9544e9321f.png", - "aggregators": [ - "CoinMarketCap", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x84fad63f8f26335f4f1bebc9fbf5ba277fd23c9e": { - "address": "0x84fad63f8f26335f4f1bebc9fbf5ba277fd23c9e", - "symbol": "AB", - "decimals": 18, - "name": "Arma Block", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x84fad63f8f26335f4f1bebc9fbf5ba277fd23c9e.png", - "aggregators": [ - "CoinMarketCap", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0xe07f9d810a48ab5c3c914ba3ca53af14e4491e8a": { - "address": "0xe07f9d810a48ab5c3c914ba3ca53af14e4491e8a", - "symbol": "GYD", - "decimals": 18, - "name": "Gyroscope GYD", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xe07f9d810a48ab5c3c914ba3ca53af14e4491e8a.png", - "aggregators": ["CoinMarketCap", "1inch", "LiFi", "Rubic", "Rango"], - "occurrences": 5 - }, - "0xda987c655ebc38c801db64a8608bc1aa56cd9a31": { - "address": "0xda987c655ebc38c801db64a8608bc1aa56cd9a31", - "symbol": "SYNT", - "decimals": 18, - "name": "Synternet", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xda987c655ebc38c801db64a8608bc1aa56cd9a31.png", - "aggregators": [ - "CoinMarketCap", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x06561dc5cedcc012a4ea68609b17d41499622e4c": { - "address": "0x06561dc5cedcc012a4ea68609b17d41499622e4c", - "symbol": "NOOB", - "decimals": 18, - "name": "Blast Royale", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x06561dc5cedcc012a4ea68609b17d41499622e4c.png", - "aggregators": [ - "CoinMarketCap", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x5da42c37dea61d1c31e7a810e7d2aff736a41643": { - "address": "0x5da42c37dea61d1c31e7a810e7d2aff736a41643", - "symbol": "YES", - "decimals": 18, - "name": "Yes Chad", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x5da42c37dea61d1c31e7a810e7d2aff736a41643.png", - "aggregators": [ - "CoinMarketCap", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0xaf4144cd943ed5362fed2bae6573184659cbe6ff": { - "address": "0xaf4144cd943ed5362fed2bae6573184659cbe6ff", - "symbol": "LIZ", - "decimals": 18, - "name": "Lizcoin", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xaf4144cd943ed5362fed2bae6573184659cbe6ff.png", - "aggregators": [ - "CoinMarketCap", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x683989afc948477fd38567f8327f501562c955ac": { - "address": "0x683989afc948477fd38567f8327f501562c955ac", - "symbol": "MORPHAI", - "decimals": 9, - "name": "Morph AI", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x683989afc948477fd38567f8327f501562c955ac.png", - "aggregators": [ - "CoinMarketCap", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x6499999951f0b5ba8b9187958884f9f5b50e45fd": { - "address": "0x6499999951f0b5ba8b9187958884f9f5b50e45fd", - "symbol": "ORBIT", - "decimals": 18, - "name": "OrbitAI", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x6499999951f0b5ba8b9187958884f9f5b50e45fd.png", - "aggregators": [ - "CoinMarketCap", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x148255a3b10666d9788ec48bc61ea3e48974bf2c": { - "address": "0x148255a3b10666d9788ec48bc61ea3e48974bf2c", - "symbol": "DMCC", - "decimals": 18, - "name": "DMCCOIN", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x148255a3b10666d9788ec48bc61ea3e48974bf2c.png", - "aggregators": [ - "Metamask", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x77776b40c3d75cb07ce54dea4b2fd1d07f865222": { - "address": "0x77776b40c3d75cb07ce54dea4b2fd1d07f865222", - "symbol": "BBUSD", - "decimals": 18, - "name": "BounceBit USD", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x77776b40c3d75cb07ce54dea4b2fd1d07f865222.png", - "aggregators": [ - "Metamask", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x8d96b4ab6c741a4c8679ae323a100d74f085ba8f": { - "address": "0x8d96b4ab6c741a4c8679ae323a100d74f085ba8f", - "symbol": "BZR", - "decimals": 18, - "name": "Bazaars", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x8d96b4ab6c741a4c8679ae323a100d74f085ba8f.png", - "aggregators": [ - "Metamask", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0xf5e11df1ebcf78b6b6d26e04ff19cd786a1e81dc": { - "address": "0xf5e11df1ebcf78b6b6d26e04ff19cd786a1e81dc", - "symbol": "BBTC", - "decimals": 18, - "name": "BounceBit BTC", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xf5e11df1ebcf78b6b6d26e04ff19cd786a1e81dc.png", - "aggregators": [ - "Metamask", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x8eb24319393716668d768dcec29356ae9cffe285": { - "address": "0x8eb24319393716668d768dcec29356ae9cffe285", - "symbol": "AGI", - "decimals": 8, - "name": "SingularityNET Token", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x8eb24319393716668d768dcec29356ae9cffe285.png", - "aggregators": ["1inch", "LiFi", "Socket", "Rubic", "Rango"], - "occurrences": 5 - }, - "0xcca0c9c383076649604ee31b20248bc04fdf61ca": { - "address": "0xcca0c9c383076649604ee31b20248bc04fdf61ca", - "symbol": "BTMX", - "decimals": 18, - "name": "BitMax token", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xcca0c9c383076649604ee31b20248bc04fdf61ca.png", - "aggregators": ["1inch", "LiFi", "Socket", "Rubic", "Rango"], - "occurrences": 5 - }, - "0xabe580e7ee158da464b51ee1a83ac0289622e6be": { - "address": "0xabe580e7ee158da464b51ee1a83ac0289622e6be", - "symbol": "XFT", - "decimals": 18, - "name": "Offshift", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xabe580e7ee158da464b51ee1a83ac0289622e6be.png", - "aggregators": ["LiFi", "Socket", "Rubic", "Rango", "SushiSwap"], - "occurrences": 5 - }, - "0x4abb9cc67bd3da9eb966d1159a71a0e68bd15432": { - "address": "0x4abb9cc67bd3da9eb966d1159a71a0e68bd15432", - "symbol": "KEL", - "decimals": 18, - "name": "KelVPN", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x4abb9cc67bd3da9eb966d1159a71a0e68bd15432.png", - "aggregators": ["LiFi", "Socket", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 5 - }, - "0xee7527841a932d2912224e20a405e1a1ff747084": { - "address": "0xee7527841a932d2912224e20a405e1a1ff747084", - "symbol": "SHX", - "decimals": 7, - "name": "Stronghold SHx", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xee7527841a932d2912224e20a405e1a1ff747084.png", - "aggregators": [ - "Socket", - "Rubic", - "Rango", - "Sonarwatch", - "SushiSwap" - ], - "occurrences": 5 - }, - "0x21413c119b0c11c5d96ae1bd328917bc5c8ed67e": { - "address": "0x21413c119b0c11c5d96ae1bd328917bc5c8ed67e", - "symbol": "GENE", - "decimals": 18, - "name": "GenomesDAO", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x21413c119b0c11c5d96ae1bd328917bc5c8ed67e.png", - "aggregators": [ - "Socket", - "Rubic", - "Rango", - "Sonarwatch", - "SushiSwap" - ], - "occurrences": 5 - }, - "0x4f2b33840227ddd0e28da8d4185d6fa07adfed87": { - "address": "0x4f2b33840227ddd0e28da8d4185d6fa07adfed87", - "symbol": "BASED", - "decimals": 18, - "name": "Based Token", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x4f2b33840227ddd0e28da8d4185d6fa07adfed87.png", - "aggregators": ["CoinMarketCap", "Socket", "Rubic", "Rango"], - "occurrences": 4 - }, - "0xc9746f73cc33a36c2cd55b8aefd732586946cedd": { - "address": "0xc9746f73cc33a36c2cd55b8aefd732586946cedd", - "symbol": "BOB", - "decimals": 18, - "name": "BOB", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xc9746f73cc33a36c2cd55b8aefd732586946cedd.png", - "aggregators": ["CoinGecko", "LiFi", "Rubic", "Rango"], - "occurrences": 4 - }, - "0x086f405146ce90135750bbec9a063a8b20a8bffb": { - "address": "0x086f405146ce90135750bbec9a063a8b20a8bffb", - "symbol": "BREV", - "decimals": 18, - "name": "Brevis", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x086f405146ce90135750bbec9a063a8b20a8bffb.png", - "aggregators": ["CoinMarketCap", "Socket", "Rubic", "Rango"], - "occurrences": 4 - }, - "0x6af487beb661ccecd1d045e9561a0dac9aa5c7db": { - "address": "0x6af487beb661ccecd1d045e9561a0dac9aa5c7db", - "symbol": "DUAL", - "decimals": 18, - "name": "Dual", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x6af487beb661ccecd1d045e9561a0dac9aa5c7db.png", - "aggregators": ["CoinMarketCap", "LiFi", "Rubic", "Rango"], - "occurrences": 4 - }, - "0xb0076de78dc50581770bba1d211ddc0ad4f2a241": { - "address": "0xb0076de78dc50581770bba1d211ddc0ad4f2a241", - "symbol": "EDGE", - "decimals": 18, - "name": "Edge", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xb0076de78dc50581770bba1d211ddc0ad4f2a241.png", - "aggregators": ["CoinMarketCap", "LiFi", "Rubic", "Rango"], - "occurrences": 4 - }, - "0xe7e7e741c23a4767831a56a8c99f522c5ac1e7e7": { - "address": "0xe7e7e741c23a4767831a56a8c99f522c5ac1e7e7", - "symbol": "EV", - "decimals": 18, - "name": "Everything", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xe7e7e741c23a4767831a56a8c99f522c5ac1e7e7.png", - "aggregators": ["CoinMarketCap", "LiFi", "Rubic", "Rango"], - "occurrences": 4 - }, - "0x2798b1cc5a993085e8a9d46e80499f1b63f42204": { - "address": "0x2798b1cc5a993085e8a9d46e80499f1b63f42204", - "symbol": "GWEI", - "decimals": 18, - "name": "ETHGas", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x2798b1cc5a993085e8a9d46e80499f1b63f42204.png", - "aggregators": ["CoinMarketCap", "Rubic", "Squid", "Rango"], - "occurrences": 4 - }, - "0xfb072b42907da2bf7a8e8cb5dcaa790d45fd81a8": { - "address": "0xfb072b42907da2bf7a8e8cb5dcaa790d45fd81a8", - "symbol": "K", - "decimals": 18, - "name": "Sidekick", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xfb072b42907da2bf7a8e8cb5dcaa790d45fd81a8.png", - "aggregators": ["CoinMarketCap", "Socket", "Rubic", "Rango"], - "occurrences": 4 - }, - "0x5ca381bbfb58f0092df149bd3d243b08b9a8386e": { - "address": "0x5ca381bbfb58f0092df149bd3d243b08b9a8386e", - "symbol": "MXC", - "decimals": 18, - "name": "MXCToken", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x5ca381bbfb58f0092df149bd3d243b08b9a8386e.png", - "aggregators": ["UniswapLabs", "LiFi", "Rubic", "Rango"], - "occurrences": 4 - }, - "0xd0ec028a3d21533fdd200838f39c85b03679285d": { - "address": "0xd0ec028a3d21533fdd200838f39c85b03679285d", - "symbol": "NEWT", - "decimals": 18, - "name": "Newton Protocol", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xd0ec028a3d21533fdd200838f39c85b03679285d.png", - "aggregators": ["CoinMarketCap", "Socket", "Rubic", "Rango"], - "occurrences": 4 - }, - "0x868fced65edbf0056c4163515dd840e9f287a4c3": { - "address": "0x868fced65edbf0056c4163515dd840e9f287a4c3", - "symbol": "SIGN", - "decimals": 18, - "name": "Sign", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x868fced65edbf0056c4163515dd840e9f287a4c3.png", - "aggregators": ["CoinMarketCap", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0x1bab804803159ad84b8854581aa53ac72455614e": { - "address": "0x1bab804803159ad84b8854581aa53ac72455614e", - "symbol": "SYND", - "decimals": 18, - "name": "Syndicate", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x1bab804803159ad84b8854581aa53ac72455614e.png", - "aggregators": ["CoinMarketCap", "Socket", "Rubic", "Rango"], - "occurrences": 4 - }, - "0x77146784315ba81904d654466968e3a7c196d1f3": { - "address": "0x77146784315ba81904d654466968e3a7c196d1f3", - "symbol": "TREE", - "decimals": 18, - "name": "Treehouse Token", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x77146784315ba81904d654466968e3a7c196d1f3.png", - "aggregators": ["CoinMarketCap", "LiFi", "Rubic", "Rango"], - "occurrences": 4 - }, - "0x3c4b6e6e1ea3d4863700d7f76b36b7f3d3f13e3d": { - "address": "0x3c4b6e6e1ea3d4863700d7f76b36b7f3d3f13e3d", - "symbol": "VGX", - "decimals": 8, - "name": "VGX Token", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x3c4b6e6e1ea3d4863700d7f76b36b7f3d3f13e3d.png", - "aggregators": ["OpenSwap", "Socket", "Rubic", "Sonarwatch"], - "occurrences": 4 - }, - "0x000006c2a22ff4a44ff1f5d0f2ed65f781f55555": { - "address": "0x000006c2a22ff4a44ff1f5d0f2ed65f781f55555", - "symbol": "ZKC", - "decimals": 18, - "name": "ZK Coin", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x000006c2a22ff4a44ff1f5d0f2ed65f781f55555.png", - "aggregators": ["CoinMarketCap", "Socket", "Rubic", "Rango"], - "occurrences": 4 - }, - "0xe1be424f442d0687129128c6c38aace44f8c8dbc": { - "address": "0xe1be424f442d0687129128c6c38aace44f8c8dbc", - "symbol": "ZKP", - "decimals": 18, - "name": "zkPass", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xe1be424f442d0687129128c6c38aace44f8c8dbc.png", - "aggregators": ["CoinMarketCap", "Socket", "Rubic", "Rango"], - "occurrences": 4 - }, - "0x12e51e77daaa58aa0e9247db7510ea4b46f9bead": { - "address": "0x12e51e77daaa58aa0e9247db7510ea4b46f9bead", - "symbol": "AYFI", - "decimals": 18, - "name": "Aave Interest bearing YFI", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x12e51e77daaa58aa0e9247db7510ea4b46f9bead.png", - "aggregators": ["CoinMarketCap", "LiFi", "Socket", "Rubic"], - "occurrences": 4 - }, - "0xcc80c051057b774cd75067dc48f8987c4eb97a5e": { - "address": "0xcc80c051057b774cd75067dc48f8987c4eb97a5e", - "symbol": "NEC", - "decimals": 18, - "name": "NEC", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xcc80c051057b774cd75067dc48f8987c4eb97a5e.png", - "aggregators": ["CoinMarketCap", "LiFi", "Rubic", "Rango"], - "occurrences": 4 - }, - "0x196f4727526ea7fb1e17b2071b3d8eaa38486988": { - "address": "0x196f4727526ea7fb1e17b2071b3d8eaa38486988", - "symbol": "RSV", - "decimals": 18, - "name": "Reserve", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x196f4727526ea7fb1e17b2071b3d8eaa38486988.png", - "aggregators": ["Metamask", "LiFi", "Rubic", "Rango"], - "occurrences": 4 - }, - "0x0327112423f3a68efdf1fcf402f6c5cb9f7c33fd": { - "address": "0x0327112423f3a68efdf1fcf402f6c5cb9f7c33fd", - "symbol": "BTC++", - "decimals": 18, - "name": "BTC++", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x0327112423f3a68efdf1fcf402f6c5cb9f7c33fd.png", - "aggregators": ["CoinMarketCap", "LiFi", "Rubic", "Rango"], - "occurrences": 4 - }, - "0xb1dc9124c395c1e97773ab855d66e879f053a289": { - "address": "0xb1dc9124c395c1e97773ab855d66e879f053a289", - "symbol": "YAX", - "decimals": 18, - "name": "yAxis", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xb1dc9124c395c1e97773ab855d66e879f053a289.png", - "aggregators": ["Metamask", "LiFi", "Rubic", "Rango"], - "occurrences": 4 - }, - "0x054f76beed60ab6dbeb23502178c52d6c5debe40": { - "address": "0x054f76beed60ab6dbeb23502178c52d6c5debe40", - "symbol": "FIN", - "decimals": 18, - "name": "DeFiner", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x054f76beed60ab6dbeb23502178c52d6c5debe40.png", - "aggregators": ["CoinMarketCap", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0x44b28991b167582f18ba0259e0173176ca125505": { - "address": "0x44b28991b167582f18ba0259e0173176ca125505", - "symbol": "UPEG", - "decimals": 18, - "name": "Unipeg", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x44b28991b167582f18ba0259e0173176ca125505.png", - "aggregators": ["CoinMarketCap", "Socket", "Rubic", "Rango"], - "occurrences": 4 - }, - "0xace8e719899f6e91831b18ae746c9a965c2119f1": { - "address": "0xace8e719899f6e91831b18ae746c9a965c2119f1", - "symbol": "USDON", - "decimals": 18, - "name": "Ondo U.S. Dollar Token", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xace8e719899f6e91831b18ae746c9a965c2119f1.png", - "aggregators": ["CoinGecko", "Rubic", "Rango", "Ondo"], - "occurrences": 4 - }, - "0x50bd66d59911f5e086ec87ae43c811e0d059dd11": { - "address": "0x50bd66d59911f5e086ec87ae43c811e0d059dd11", - "symbol": "SBOLD", - "decimals": 18, - "name": "sBold", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x50bd66d59911f5e086ec87ae43c811e0d059dd11.png", - "aggregators": ["CoinGecko", "LiFi", "Rubic"], - "occurrences": 3 - }, - "0xb214b79eac9378a56d14d6e6d452150c80d6ad79": { - "address": "0xb214b79eac9378a56d14d6e6d452150c80d6ad79", - "symbol": "MEMEX", - "decimals": 18, - "name": "Meme Index", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xb214b79eac9378a56d14d6e6d452150c80d6ad79.png", - "aggregators": ["CoinMarketCap", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0x9f277edfc463ebaa3d2a6274b01177697e910391": { - "address": "0x9f277edfc463ebaa3d2a6274b01177697e910391", - "symbol": "WOOLLY", - "decimals": 18, - "name": "Miniature Woolly Mammoth", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x9f277edfc463ebaa3d2a6274b01177697e910391.png", - "aggregators": ["CoinMarketCap", "1inch", "Rubic", "Rango"], - "occurrences": 4 - }, - "0x3db228fe836d99ccb25ec4dfdc80ed6d2cddcb4b": { - "address": "0x3db228fe836d99ccb25ec4dfdc80ed6d2cddcb4b", - "symbol": "YNUSDX", - "decimals": 18, - "name": "ynUSD Max", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x3db228fe836d99ccb25ec4dfdc80ed6d2cddcb4b.png", - "aggregators": ["CoinMarketCap", "LiFi", "Rubic"], - "occurrences": 3 - }, - "0x57240c3e140f98abe315ca8e0213c7a77f34a334": { - "address": "0x57240c3e140f98abe315ca8e0213c7a77f34a334", - "symbol": "RDO", - "decimals": 18, - "name": "Reddio", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x57240c3e140f98abe315ca8e0213c7a77f34a334.png", - "aggregators": ["CoinMarketCap", "Rubic", "Sonarwatch"], - "occurrences": 3 - }, - "0x97ccc1c046d067ab945d3cf3cc6920d3b1e54c88": { - "address": "0x97ccc1c046d067ab945d3cf3cc6920d3b1e54c88", - "symbol": "USP", - "decimals": 18, - "name": "USP", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x97ccc1c046d067ab945d3cf3cc6920d3b1e54c88.png", - "aggregators": ["CoinGecko", "LiFi", "Rubic", "Rango"], - "occurrences": 4 - }, - "0x08efcc2f3e61185d0ea7f8830b3fec9bfa2ee313": { - "address": "0x08efcc2f3e61185d0ea7f8830b3fec9bfa2ee313", - "symbol": "SNUSD", - "decimals": 18, - "name": "Staked NUSD", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x08efcc2f3e61185d0ea7f8830b3fec9bfa2ee313.png", - "aggregators": ["CoinGecko", "LiFi", "Rubic"], - "occurrences": 3 - }, - "0xf5f52266a57e6d7312da39bd7ab9527b9e975c40": { - "address": "0xf5f52266a57e6d7312da39bd7ab9527b9e975c40", - "symbol": "AVM", - "decimals": 18, - "name": "Agents Virtual Machine", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xf5f52266a57e6d7312da39bd7ab9527b9e975c40.png", - "aggregators": ["CoinMarketCap", "1inch", "Rubic", "Rango"], - "occurrences": 4 - }, - "0x690f1eef8acead09ac695d9111af081045c6d5b7": { - "address": "0x690f1eef8acead09ac695d9111af081045c6d5b7", - "symbol": "GNET", - "decimals": 18, - "name": "GNET", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x690f1eef8acead09ac695d9111af081045c6d5b7.png", - "aggregators": ["CoinMarketCap", "LiFi", "Rubic"], - "occurrences": 3 - }, - "0x71d24baeb0a033ec5f90ff65c4210545af378d97": { - "address": "0x71d24baeb0a033ec5f90ff65c4210545af378d97", - "symbol": "GMEON", - "decimals": 18, - "name": "GameStop (Ondo Tokenized)", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x71d24baeb0a033ec5f90ff65c4210545af378d97.png", - "aggregators": ["CoinGecko", "Rubic", "Rango", "Ondo"], - "occurrences": 4, - "rwaData": { - "market": { - "nextOpen": "2026-05-18T20:01:00.000Z", - "nextClose": "2026-05-18T19:59:00.000Z" - }, - "nextPause": { - "start": "2026-06-09T09:00:00.000Z", - "end": "2026-06-09T23:30:00.000Z" - }, - "ticker": "GME", - "instrumentType": "stock" - } - }, - "0xecca809227d43b895754382f1fd871628d7e51fb": { - "address": "0xecca809227d43b895754382f1fd871628d7e51fb", - "symbol": "LANLAN", - "decimals": 9, - "name": "LanLan Cat", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xecca809227d43b895754382f1fd871628d7e51fb.png", - "aggregators": ["CoinMarketCap", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0x6133dca8149c0eb57328cf8fa4f212f0241ffbb1": { - "address": "0x6133dca8149c0eb57328cf8fa4f212f0241ffbb1", - "symbol": "CORN", - "decimals": 18, - "name": "Cornbit", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x6133dca8149c0eb57328cf8fa4f212f0241ffbb1.png", - "aggregators": ["CoinGecko", "Rubic", "Sonarwatch"], - "occurrences": 3 - }, - "0x11fa1193743061591cbe47c9e0765eaebaa3a046": { - "address": "0x11fa1193743061591cbe47c9e0765eaebaa3a046", - "symbol": "NKP", - "decimals": 18, - "name": "NonKyotoProtocol", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x11fa1193743061591cbe47c9e0765eaebaa3a046.png", - "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0x9fb442d6b612a6dcd2acc67bb53771ef1d9f661a": { - "address": "0x9fb442d6b612a6dcd2acc67bb53771ef1d9f661a", - "symbol": "MRE7BTC", - "decimals": 18, - "name": "Midas Re7 BTC", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x9fb442d6b612a6dcd2acc67bb53771ef1d9f661a.png", - "aggregators": ["CoinGecko", "LiFi", "Rubic"], - "occurrences": 3 - }, - "0x8cf5f383fd3a5a730813c61371f90b6ecddf2d3e": { - "address": "0x8cf5f383fd3a5a730813c61371f90b6ecddf2d3e", - "symbol": "QU3", - "decimals": 18, - "name": "QU3ai", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x8cf5f383fd3a5a730813c61371f90b6ecddf2d3e.png", - "aggregators": ["CoinMarketCap", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0x2e8fafaf34f610af898d6a5eabcad82417c56ed9": { - "address": "0x2e8fafaf34f610af898d6a5eabcad82417c56ed9", - "symbol": "DEXL", - "decimals": 18, - "name": "Dexlens", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x2e8fafaf34f610af898d6a5eabcad82417c56ed9.png", - "aggregators": ["CoinGecko", "Socket", "Rubic"], - "occurrences": 3 - }, - "0x2f714d7b9a035d4ce24af8d9b6091c07e37f43fb": { - "address": "0x2f714d7b9a035d4ce24af8d9b6091c07e37f43fb", - "symbol": "NODE", - "decimals": 18, - "name": "NODE", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x2f714d7b9a035d4ce24af8d9b6091c07e37f43fb.png", - "aggregators": ["CoinMarketCap", "LiFi", "Rubic", "Rango"], - "occurrences": 4 - }, - "0xa4b855f6713d1a04a2331149db995476dc3e694b": { - "address": "0xa4b855f6713d1a04a2331149db995476dc3e694b", - "symbol": "BABYDOG", - "decimals": 9, - "name": "Babydog", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xa4b855f6713d1a04a2331149db995476dc3e694b.png", - "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0xf816507e690f5aa4e29d164885eb5fa7a5627860": { - "address": "0xf816507e690f5aa4e29d164885eb5fa7a5627860", - "symbol": "RATO", - "decimals": 9, - "name": "Rato The Rat", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xf816507e690f5aa4e29d164885eb5fa7a5627860.png", - "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0x52c7aa73dc430dab948eee73ea253383fd223420": { - "address": "0x52c7aa73dc430dab948eee73ea253383fd223420", - "symbol": "BBBTC", - "decimals": 18, - "name": "Big Back Bitcoin", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x52c7aa73dc430dab948eee73ea253383fd223420.png", - "aggregators": ["CoinMarketCap", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0x5eeaa2dcb23056f4e8654a349e57ebe5e76b5e6e": { - "address": "0x5eeaa2dcb23056f4e8654a349e57ebe5e76b5e6e", - "symbol": "VPP", - "decimals": 18, - "name": "Virtue Poker Points", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x5eeaa2dcb23056f4e8654a349e57ebe5e76b5e6e.png", - "aggregators": ["CoinMarketCap", "Socket", "Rubic", "Sonarwatch"], - "occurrences": 4 - }, - "0x6c0aeceedc55c9d55d8b99216a670d85330941c3": { - "address": "0x6c0aeceedc55c9d55d8b99216a670d85330941c3", - "symbol": "PRL", - "decimals": 18, - "name": "PRL", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x6c0aeceedc55c9d55d8b99216a670d85330941c3.png", - "aggregators": ["CoinMarketCap", "LiFi", "Rubic", "Rango"], - "occurrences": 4 - }, - "0xd014cb8d4bbccb75fc3a7c941528fd5e891259cf": { - "address": "0xd014cb8d4bbccb75fc3a7c941528fd5e891259cf", - "symbol": "L", - "decimals": 18, - "name": "Launch On USD1", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xd014cb8d4bbccb75fc3a7c941528fd5e891259cf.png", - "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0xd588099529386028455ab8d91dc82552e9e5aaf0": { - "address": "0xd588099529386028455ab8d91dc82552e9e5aaf0", - "symbol": "ANJU", - "decimals": 9, - "name": "Anju", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xd588099529386028455ab8d91dc82552e9e5aaf0.png", - "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0x04e69ff14a86e1ca9a155a8563e95887973ee175": { - "address": "0x04e69ff14a86e1ca9a155a8563e95887973ee175", - "symbol": "AITV", - "decimals": 18, - "name": "Agentcoin TV", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x04e69ff14a86e1ca9a155a8563e95887973ee175.png", - "aggregators": ["CoinMarketCap", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0x67d9c7daecc5b87c3e68ac89f33ee924fac88c05": { - "address": "0x67d9c7daecc5b87c3e68ac89f33ee924fac88c05", - "symbol": "MOOCOW", - "decimals": 9, - "name": "Moo Cow", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x67d9c7daecc5b87c3e68ac89f33ee924fac88c05.png", - "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0x666acd390fa42d5bf86e9c42dc2fa6f6b4b2d8ab": { - "address": "0x666acd390fa42d5bf86e9c42dc2fa6f6b4b2d8ab", - "symbol": "GORTH", - "decimals": 18, - "name": "Gorth", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x666acd390fa42d5bf86e9c42dc2fa6f6b4b2d8ab.png", - "aggregators": ["CoinMarketCap", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0xf42845b7fd65709f251146ab373933f20e9d7c41": { - "address": "0xf42845b7fd65709f251146ab373933f20e9d7c41", - "symbol": "FROGO", - "decimals": 18, - "name": "FROGO", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xf42845b7fd65709f251146ab373933f20e9d7c41.png", - "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0x0c8276e4fec072cf7854be69c70f7773d1610857": { - "address": "0x0c8276e4fec072cf7854be69c70f7773d1610857", - "symbol": "COSTON", - "decimals": 18, - "name": "Costco (Ondo Tokenized)", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x0c8276e4fec072cf7854be69c70f7773d1610857.png", - "aggregators": ["CoinGecko", "Rubic", "Rango", "Ondo"], - "occurrences": 4, - "rwaData": { - "market": { - "nextOpen": "2026-05-18T20:01:00.000Z", - "nextClose": "2026-05-18T19:59:00.000Z" - }, - "nextPause": { - "start": "2026-05-28T20:00:00.000Z", - "end": "2026-05-28T23:30:00.000Z" - }, - "ticker": "COST", - "instrumentType": "stock" - } - }, - "0x323c03c48660fe31186fa82c289b0766d331ce21": { - "address": "0x323c03c48660fe31186fa82c289b0766d331ce21", - "symbol": "OPEN", - "decimals": 18, - "name": "Open Stablecoin Index", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x323c03c48660fe31186fa82c289b0766d331ce21.png", - "aggregators": ["CoinGecko", "Rubic", "Sonarwatch"], - "occurrences": 3 - }, - "0xd86571bfb6753c252764c4ae37fd54888774d32e": { - "address": "0xd86571bfb6753c252764c4ae37fd54888774d32e", - "symbol": "KABOSU", - "decimals": 18, - "name": "Kabosu ERC20", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xd86571bfb6753c252764c4ae37fd54888774d32e.png", - "aggregators": ["CoinMarketCap", "Rubic", "Sonarwatch"], - "occurrences": 3 - }, - "0xf30f62963cce132f32306d7f18a8587958b30ea9": { - "address": "0xf30f62963cce132f32306d7f18a8587958b30ea9", - "symbol": "ATVUSDC", - "decimals": 18, - "name": "aarna atv USDC", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xf30f62963cce132f32306d7f18a8587958b30ea9.png", - "aggregators": ["CoinGecko", "LiFi", "Rubic"], - "occurrences": 3 - }, - "0xc7290af237d1d3f6b207b7acb3dd186b868da500": { - "address": "0xc7290af237d1d3f6b207b7acb3dd186b868da500", - "symbol": "BEAT", - "decimals": 18, - "name": "Beat Matchmaker", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xc7290af237d1d3f6b207b7acb3dd186b868da500.png", - "aggregators": ["CoinGecko", "Socket", "Rubic", "Rango"], - "occurrences": 4 - }, - "0x20226607b4fa64228abf3072ce561d6257683464": { - "address": "0x20226607b4fa64228abf3072ce561d6257683464", - "symbol": "MSYRUPUSD", - "decimals": 18, - "name": "syrupUSDC supercharged", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x20226607b4fa64228abf3072ce561d6257683464.png", - "aggregators": ["CoinGecko", "LiFi", "Rubic"], - "occurrences": 3 - }, - "0x6604c7d7e343e2abd10aa66f6c496abee875cf71": { - "address": "0x6604c7d7e343e2abd10aa66f6c496abee875cf71", - "symbol": "LAI", - "decimals": 9, - "name": "Live AI", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x6604c7d7e343e2abd10aa66f6c496abee875cf71.png", - "aggregators": ["CoinGecko", "Socket", "Rubic", "Rango"], - "occurrences": 4 - }, - "0xb6d369faf21cda1b281013ea83badf6bb26b884d": { - "address": "0xb6d369faf21cda1b281013ea83badf6bb26b884d", - "symbol": "MU", - "decimals": 9, - "name": "Mu Chan", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xb6d369faf21cda1b281013ea83badf6bb26b884d.png", - "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0x586675a3a46b008d8408933cf42d8ff6c9cc61a1": { - "address": "0x586675a3a46b008d8408933cf42d8ff6c9cc61a1", - "symbol": "YOGOLD", - "decimals": 6, - "name": "yoGOLD", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x586675a3a46b008d8408933cf42d8ff6c9cc61a1.png", - "aggregators": ["CoinGecko", "LiFi", "Rubic"], - "occurrences": 3 - }, - "0xe6f98920852a360497dbcc8ec895f1bb1f7c8df4": { - "address": "0xe6f98920852a360497dbcc8ec895f1bb1f7c8df4", - "symbol": "VISION", - "decimals": 9, - "name": "OpenVision", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xe6f98920852a360497dbcc8ec895f1bb1f7c8df4.png", - "aggregators": ["CoinMarketCap", "1inch", "Rubic", "Rango"], - "occurrences": 4 - }, - "0x2bbd8602091bd1b90797d894163c0de76045f71c": { - "address": "0x2bbd8602091bd1b90797d894163c0de76045f71c", - "symbol": "END", - "decimals": 18, - "name": "END", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x2bbd8602091bd1b90797d894163c0de76045f71c.png", - "aggregators": ["CoinMarketCap", "Rubic", "Squid", "Rango"], - "occurrences": 4 - }, - "0xe6d07e1a7c9f8f9826aa82e6faf7feab698dd4fe": { - "address": "0xe6d07e1a7c9f8f9826aa82e6faf7feab698dd4fe", - "symbol": "ROCKET", - "decimals": 9, - "name": "Project Rocket", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xe6d07e1a7c9f8f9826aa82e6faf7feab698dd4fe.png", - "aggregators": ["CoinGecko", "Rubic", "Sonarwatch"], - "occurrences": 3 - }, - "0x3859385363f7bb4dfe42811ccf3f294fcd41dd1d": { - "address": "0x3859385363f7bb4dfe42811ccf3f294fcd41dd1d", - "symbol": "ABTON", - "decimals": 18, - "name": "Abbott (Ondo Tokenized)", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x3859385363f7bb4dfe42811ccf3f294fcd41dd1d.png", - "aggregators": ["CoinGecko", "Rubic", "Rango", "Ondo"], - "occurrences": 4, - "rwaData": { - "market": { - "nextOpen": "2026-05-18T20:01:00.000Z", - "nextClose": "2026-05-18T19:59:00.000Z" - }, - "nextPause": { - "start": null, - "end": null - }, - "ticker": "ABT", - "instrumentType": "stock" - } - }, - "0xca468554e5c0423ee858fe3942c9568c51fcaa79": { - "address": "0xca468554e5c0423ee858fe3942c9568c51fcaa79", - "symbol": "HIMSON", - "decimals": 18, - "name": "Hims & Hers Health (Ondo Tokenized)", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xca468554e5c0423ee858fe3942c9568c51fcaa79.png", - "aggregators": ["CoinGecko", "Rubic", "Rango", "Ondo"], - "occurrences": 4, - "rwaData": { - "market": { - "nextOpen": "2026-05-18T20:01:00.000Z", - "nextClose": "2026-05-18T19:59:00.000Z" - }, - "nextPause": { - "start": null, - "end": null - }, - "ticker": "HIMS", - "instrumentType": "stock" - } - }, - "0x1e33e98af620f1d563fcd3cfd3c75ace841204ef": { - "address": "0x1e33e98af620f1d563fcd3cfd3c75ace841204ef", - "symbol": "DUSD", - "decimals": 18, - "name": "Dialectic USD", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x1e33e98af620f1d563fcd3cfd3c75ace841204ef.png", - "aggregators": ["CoinGecko", "LiFi", "Rubic", "Rango"], - "occurrences": 4 - }, - "0xae9f227a68a307afa799fa024198ba6d1d83da4b": { - "address": "0xae9f227a68a307afa799fa024198ba6d1d83da4b", - "symbol": "TARO", - "decimals": 9, - "name": "Taro", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xae9f227a68a307afa799fa024198ba6d1d83da4b.png", - "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0x699ccf919c1dfdfa4c374292f42cadc9899bf753": { - "address": "0x699ccf919c1dfdfa4c374292f42cadc9899bf753", - "symbol": "VSN", - "decimals": 18, - "name": "Vision", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x699ccf919c1dfdfa4c374292f42cadc9899bf753.png", - "aggregators": ["CoinMarketCap", "LiFi", "Rubic", "Rango"], - "occurrences": 4 - }, - "0x61fac5f038515572d6f42d4bcb6b581642753d50": { - "address": "0x61fac5f038515572d6f42d4bcb6b581642753d50", - "symbol": "IN", - "decimals": 18, - "name": "IN", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x61fac5f038515572d6f42d4bcb6b581642753d50.png", - "aggregators": ["CoinMarketCap", "Socket", "Rubic", "Rango"], - "occurrences": 4 - }, - "0x5bcd8195e3ef58f677aef9ebc276b5087c027050": { - "address": "0x5bcd8195e3ef58f677aef9ebc276b5087c027050", - "symbol": "UBERON", - "decimals": 18, - "name": "Uber (Ondo Tokenized)", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x5bcd8195e3ef58f677aef9ebc276b5087c027050.png", - "aggregators": ["CoinGecko", "Rubic", "Rango", "Ondo"], - "occurrences": 4, - "rwaData": { - "market": { - "nextOpen": "2026-05-18T20:01:00.000Z", - "nextClose": "2026-05-18T19:59:00.000Z" - }, - "nextPause": { - "start": null, - "end": null - }, - "ticker": "UBER", - "instrumentType": "stock" - } - }, - "0xe3419710c1f77d44b4dab02316d3f048818c4e59": { - "address": "0xe3419710c1f77d44b4dab02316d3f048818c4e59", - "symbol": "QCOMON", - "decimals": 18, - "name": "Qualcomm (Ondo Tokenized)", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xe3419710c1f77d44b4dab02316d3f048818c4e59.png", - "aggregators": ["CoinGecko", "Rubic", "Rango", "Ondo"], - "occurrences": 4, - "rwaData": { - "market": { - "nextOpen": "2026-05-18T20:01:00.000Z", - "nextClose": "2026-05-18T19:59:00.000Z" - }, - "nextPause": { - "start": "2026-06-03T23:52:00.000Z", - "end": "2026-06-04T00:12:00.000Z" - }, - "ticker": "QCOM", - "instrumentType": "stock" - } - }, - "0x5accb2e5c22d84bc2e34decd9b769a0c46b0deba": { - "address": "0x5accb2e5c22d84bc2e34decd9b769a0c46b0deba", - "symbol": "MIDAS", - "decimals": 18, - "name": "Midas of DeFi", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x5accb2e5c22d84bc2e34decd9b769a0c46b0deba.png", - "aggregators": ["CoinGecko", "Rubic", "Sonarwatch"], - "occurrences": 3 - }, - "0xf0bb20865277abd641a307ece5ee04e79073416c": { - "address": "0xf0bb20865277abd641a307ece5ee04e79073416c", - "symbol": "LIQUIDETH", - "decimals": 18, - "name": "LIQUIDETH", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xf0bb20865277abd641a307ece5ee04e79073416c.png", - "aggregators": ["CoinGecko", "Socket", "Rubic", "Rango"], - "occurrences": 4 - }, - "0x774eaf7a53471628768dc679da945847d34b9a55": { - "address": "0x774eaf7a53471628768dc679da945847d34b9a55", - "symbol": "GASS", - "decimals": 18, - "name": "Gasspas", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x774eaf7a53471628768dc679da945847d34b9a55.png", - "aggregators": ["CoinMarketCap", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0x9cf12ccd6020b6888e4d4c4e4c7aca33c1eb91f8": { - "address": "0x9cf12ccd6020b6888e4d4c4e4c7aca33c1eb91f8", - "symbol": "USDAF", - "decimals": 18, - "name": "USDAF", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x9cf12ccd6020b6888e4d4c4e4c7aca33c1eb91f8.png", - "aggregators": ["CoinGecko", "LiFi", "Rubic", "Rango"], - "occurrences": 4 - }, - "0xdeb6b89088ca9b7d7756087c8a0f7c6df46f319c": { - "address": "0xdeb6b89088ca9b7d7756087c8a0f7c6df46f319c", - "symbol": "JDON", - "decimals": 18, - "name": "JD.com (Ondo Tokenized)", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xdeb6b89088ca9b7d7756087c8a0f7c6df46f319c.png", - "aggregators": ["CoinGecko", "Rubic", "Rango", "Ondo"], - "occurrences": 4, - "rwaData": { - "market": { - "nextOpen": "2026-05-18T20:01:00.000Z", - "nextClose": "2026-05-18T19:59:00.000Z" - }, - "nextPause": { - "start": null, - "end": null - }, - "ticker": "JD", - "instrumentType": "stock" - } - }, - "0x30cbdfdaab4bc15e26caf11e1a4703323d77cd3e": { - "address": "0x30cbdfdaab4bc15e26caf11e1a4703323d77cd3e", - "symbol": "CMX", - "decimals": 18, - "name": "CMX Agent", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x30cbdfdaab4bc15e26caf11e1a4703323d77cd3e.png", - "aggregators": ["CoinMarketCap", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0x593ccca4c4bf58b7526a4c164ceef4003c6388db": { - "address": "0x593ccca4c4bf58b7526a4c164ceef4003c6388db", - "symbol": "NALPHA", - "decimals": 6, - "name": "Nest Alpha Vault", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x593ccca4c4bf58b7526a4c164ceef4003c6388db.png", - "aggregators": ["CoinMarketCap", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0x6a76a004f3bda1447b7d8bbea8355866420b8cb5": { - "address": "0x6a76a004f3bda1447b7d8bbea8355866420b8cb5", - "symbol": "CHARLIE", - "decimals": 8, - "name": "Charlie", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x6a76a004f3bda1447b7d8bbea8355866420b8cb5.png", - "aggregators": ["CoinGecko", "Rubic", "Sonarwatch"], - "occurrences": 3 - }, - "0x6f49ee65d1f7953b8724c0c15e22ad189fecd579": { - "address": "0x6f49ee65d1f7953b8724c0c15e22ad189fecd579", - "symbol": "MIPRAMI", - "decimals": 9, - "name": "Mi Prami Le Kibro", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x6f49ee65d1f7953b8724c0c15e22ad189fecd579.png", - "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0xc7f380530c789f61dff8b022874e5185076cc1fb": { - "address": "0xc7f380530c789f61dff8b022874e5185076cc1fb", - "symbol": "GPECTRA", - "decimals": 9, - "name": "Pectra Giraffe", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xc7f380530c789f61dff8b022874e5185076cc1fb.png", - "aggregators": ["CoinMarketCap", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0xcb69e5750f8dc3b69647b9d8b1f45466ace0a027": { - "address": "0xcb69e5750f8dc3b69647b9d8b1f45466ace0a027", - "symbol": "XIAOBAI", - "decimals": 9, - "name": "XiaoBai", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xcb69e5750f8dc3b69647b9d8b1f45466ace0a027.png", - "aggregators": ["CoinGecko", "Rubic", "Squid", "Rango"], - "occurrences": 4 - }, - "0x7e4c9923fd8f18442532a737365c1bfb52579d2f": { - "address": "0x7e4c9923fd8f18442532a737365c1bfb52579d2f", - "symbol": "ARCOS", - "decimals": 18, - "name": "ArcadiaOS", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x7e4c9923fd8f18442532a737365c1bfb52579d2f.png", - "aggregators": ["CoinMarketCap", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0xa1aa371e450c5aee7fff259cbf5cca9384227272": { - "address": "0xa1aa371e450c5aee7fff259cbf5cca9384227272", - "symbol": "PC", - "decimals": 18, - "name": "PC", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xa1aa371e450c5aee7fff259cbf5cca9384227272.png", - "aggregators": ["CoinMarketCap", "LiFi", "Rubic", "Rango"], - "occurrences": 4 - }, - "0x0994bd54cde8f83eab517d833a581b4be5b6f919": { - "address": "0x0994bd54cde8f83eab517d833a581b4be5b6f919", - "symbol": "PALCOIN", - "decimals": 4, - "name": "PALCOIN Ventures", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x0994bd54cde8f83eab517d833a581b4be5b6f919.png", - "aggregators": ["CoinMarketCap", "Rubic", "Sonarwatch"], - "occurrences": 3 - }, - "0x82106347ddbb23ce44cf4ce4053ef1adf8b9323b": { - "address": "0x82106347ddbb23ce44cf4ce4053ef1adf8b9323b", - "symbol": "WMTON", - "decimals": 18, - "name": "Walmart (Ondo Tokenized)", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x82106347ddbb23ce44cf4ce4053ef1adf8b9323b.png", - "aggregators": ["CoinGecko", "Rubic", "Rango", "Ondo"], - "occurrences": 4, - "rwaData": { - "market": { - "nextOpen": "2026-05-18T20:01:00.000Z", - "nextClose": "2026-05-18T19:59:00.000Z" - }, - "nextPause": { - "start": "2026-05-21T09:00:00.000Z", - "end": "2026-05-21T13:31:00.000Z" - }, - "ticker": "WMT", - "instrumentType": "stock" - } - }, - "0xa9431d354cfad3c6b76e50f0e73b43d48be80cd0": { - "address": "0xa9431d354cfad3c6b76e50f0e73b43d48be80cd0", - "symbol": "RDDTON", - "decimals": 18, - "name": "Reddit (Ondo Tokenized)", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xa9431d354cfad3c6b76e50f0e73b43d48be80cd0.png", - "aggregators": ["CoinGecko", "Rubic", "Rango", "Ondo"], - "occurrences": 4, - "rwaData": { - "market": { - "nextOpen": "2026-05-18T20:01:00.000Z", - "nextClose": "2026-05-18T19:59:00.000Z" - }, - "nextPause": { - "start": null, - "end": null - }, - "ticker": "RDDT", - "instrumentType": "stock" - } - }, - "0xbc843b147db4c7e00721d76037b8b92e13afe13f": { - "address": "0xbc843b147db4c7e00721d76037b8b92e13afe13f", - "symbol": "SPGION", - "decimals": 18, - "name": "S&P Global (Ondo Tokenized)", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xbc843b147db4c7e00721d76037b8b92e13afe13f.png", - "aggregators": ["CoinGecko", "Rubic", "Rango", "Ondo"], - "occurrences": 4, - "rwaData": { - "market": { - "nextOpen": "2026-05-18T20:01:00.000Z", - "nextClose": "2026-05-18T19:59:00.000Z" - }, - "nextPause": { - "start": null, - "end": null - }, - "ticker": "SPGI", - "instrumentType": "stock" - } - }, - "0x51477a3002ee04b7542adfe63ccdb50c00ee5147": { - "address": "0x51477a3002ee04b7542adfe63ccdb50c00ee5147", - "symbol": "SLAY", - "decimals": 6, - "name": "SatLayer", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x51477a3002ee04b7542adfe63ccdb50c00ee5147.png", - "aggregators": ["CoinMarketCap", "Socket", "Rubic"], - "occurrences": 3 - }, - "0xbb8774fb97436d23d74c1b882e8e9a69322cfd31": { - "address": "0xbb8774fb97436d23d74c1b882e8e9a69322cfd31", - "symbol": "AMZNON", - "decimals": 18, - "name": "Amazon (Ondo Tokenized)", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xbb8774fb97436d23d74c1b882e8e9a69322cfd31.png", - "aggregators": ["CoinGecko", "Rubic", "Rango", "Ondo"], - "occurrences": 4, - "rwaData": { - "market": { - "nextOpen": "2026-05-18T20:01:00.000Z", - "nextClose": "2026-05-18T19:59:00.000Z" - }, - "nextPause": { - "start": null, - "end": null - }, - "ticker": "AMZN", - "instrumentType": "stock" - } - }, - "0x01ba69727e2860b37bc1a2bd56999c1afb4c15d8": { - "address": "0x01ba69727e2860b37bc1a2bd56999c1afb4c15d8", - "symbol": "YNRWAX", - "decimals": 18, - "name": "YNRWAX", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x01ba69727e2860b37bc1a2bd56999c1afb4c15d8.png", - "aggregators": ["CoinGecko", "LiFi", "Rubic", "Rango"], - "occurrences": 4 - }, - "0x88887be419578051ff9f4eb6c858a951921d8888": { - "address": "0x88887be419578051ff9f4eb6c858a951921d8888", - "symbol": "STCUSD", - "decimals": 18, - "name": "Staked Cap USD", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x88887be419578051ff9f4eb6c858a951921d8888.png", - "aggregators": ["Metamask", "LiFi", "Rubic", "Rango"], - "occurrences": 4 - }, - "0x25d3f236b2d61656eebdea86ac6d42168e340011": { - "address": "0x25d3f236b2d61656eebdea86ac6d42168e340011", - "symbol": "IBMON", - "decimals": 18, - "name": "IBM (Ondo Tokenized)", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x25d3f236b2d61656eebdea86ac6d42168e340011.png", - "aggregators": ["CoinGecko", "Rubic", "Rango", "Ondo"], - "occurrences": 4, - "rwaData": { - "market": { - "nextOpen": "2026-05-18T20:01:00.000Z", - "nextClose": "2026-05-18T19:59:00.000Z" - }, - "nextPause": { - "start": null, - "end": null - }, - "ticker": "IBM", - "instrumentType": "stock" - } - }, - "0x241958c86c7744d15d5f6314ba1ea4c81dda2896": { - "address": "0x241958c86c7744d15d5f6314ba1ea4c81dda2896", - "symbol": "DASHON", - "decimals": 18, - "name": "DoorDash (Ondo Tokenized)", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x241958c86c7744d15d5f6314ba1ea4c81dda2896.png", - "aggregators": ["CoinGecko", "Rubic", "Rango", "Ondo"], - "occurrences": 4, - "rwaData": { - "market": { - "nextOpen": "2026-05-18T20:01:00.000Z", - "nextClose": "2026-05-18T19:59:00.000Z" - }, - "nextPause": { - "start": null, - "end": null - }, - "ticker": "DASH", - "instrumentType": "stock" - } - }, - "0xfd50fc4e3686a8da814c5c3d6121d8ab98a537f0": { - "address": "0xfd50fc4e3686a8da814c5c3d6121d8ab98a537f0", - "symbol": "IJHON", - "decimals": 18, - "name": "iShares Core S&P MidCap ETF (Ondo Tokenized)", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xfd50fc4e3686a8da814c5c3d6121d8ab98a537f0.png", - "aggregators": ["CoinGecko", "Rubic", "Rango", "Ondo"], - "occurrences": 4, - "rwaData": { - "market": { - "nextOpen": "2026-05-18T20:01:00.000Z", - "nextClose": "2026-05-18T19:59:00.000Z" - }, - "nextPause": { - "start": "2027-06-09T23:50:00.000Z", - "end": "2027-06-11T00:00:00.000Z" - }, - "ticker": "IJH", - "instrumentType": "stock" - } - }, - "0x691b126cf619707ed5d16cab1b27c000aa8de300": { - "address": "0x691b126cf619707ed5d16cab1b27c000aa8de300", - "symbol": "LMTON", - "decimals": 18, - "name": "Lockheed (Ondo Tokenized)", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x691b126cf619707ed5d16cab1b27c000aa8de300.png", - "aggregators": ["CoinGecko", "Rubic", "Rango", "Ondo"], - "occurrences": 4, - "rwaData": { - "market": { - "nextOpen": "2026-05-18T20:01:00.000Z", - "nextClose": "2026-05-18T19:59:00.000Z" - }, - "nextPause": { - "start": "2026-05-31T23:52:00.000Z", - "end": "2026-06-01T00:12:00.000Z" - }, - "ticker": "LMT", - "instrumentType": "stock" - } - }, - "0x93aa0ccd1e5628d3a841c4dbdf602d9eb04085d6": { - "address": "0x93aa0ccd1e5628d3a841c4dbdf602d9eb04085d6", - "symbol": "PEPU", - "decimals": 18, - "name": "Pepe Unchained", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x93aa0ccd1e5628d3a841c4dbdf602d9eb04085d6.png", - "aggregators": ["CoinGecko", "LiFi", "Rubic", "Rango"], - "occurrences": 4 - }, - "0xdb57d9c14e357fc01e49035a808779df41e9b4e2": { - "address": "0xdb57d9c14e357fc01e49035a808779df41e9b4e2", - "symbol": "GSON", - "decimals": 18, - "name": "Goldman Sachs (Ondo Tokenized)", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xdb57d9c14e357fc01e49035a808779df41e9b4e2.png", - "aggregators": ["CoinGecko", "Rubic", "Rango", "Ondo"], - "occurrences": 4, - "rwaData": { - "market": { - "nextOpen": "2026-05-18T20:01:00.000Z", - "nextClose": "2026-05-18T19:59:00.000Z" - }, - "nextPause": { - "start": "2026-05-31T23:52:00.000Z", - "end": "2026-06-01T00:12:00.000Z" - }, - "ticker": "GS", - "instrumentType": "stock" - } - }, - "0xda7ad9dea9397cffddae2f8a052b82f1484252b3": { - "address": "0xda7ad9dea9397cffddae2f8a052b82f1484252b3", - "symbol": "RIVER", - "decimals": 18, - "name": "River", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xda7ad9dea9397cffddae2f8a052b82f1484252b3.png", - "aggregators": ["CoinMarketCap", "Rubic", "Squid", "Rango"], - "occurrences": 4 - }, - "0xb812837b81a3a6b81d7cd74cfb19a7f2784555e5": { - "address": "0xb812837b81a3a6b81d7cd74cfb19a7f2784555e5", - "symbol": "MSFTON", - "decimals": 18, - "name": "Microsoft (Ondo Tokenized)", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xb812837b81a3a6b81d7cd74cfb19a7f2784555e5.png", - "aggregators": ["CoinGecko", "Rubic", "Rango", "Ondo"], - "occurrences": 4, - "rwaData": { - "market": { - "nextOpen": "2026-05-18T20:01:00.000Z", - "nextClose": "2026-05-18T19:59:00.000Z" - }, - "nextPause": { - "start": "2026-05-20T23:52:00.000Z", - "end": "2026-05-21T00:12:00.000Z" - }, - "ticker": "MSFT", - "instrumentType": "stock" - } - }, - "0x000000fa00b200406de700041cfc6b19bbfb4d13": { - "address": "0x000000fa00b200406de700041cfc6b19bbfb4d13", - "symbol": "TOWNS", - "decimals": 18, - "name": "TOWNS", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x000000fa00b200406de700041cfc6b19bbfb4d13.png", - "aggregators": ["CoinMarketCap", "Socket", "Rubic", "Rango"], - "occurrences": 4 - }, - "0x350e52bb0f874f3b558a3679aac24268ee37a699": { - "address": "0x350e52bb0f874f3b558a3679aac24268ee37a699", - "symbol": "SAAS", - "decimals": 18, - "name": "SaaSGo", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x350e52bb0f874f3b558a3679aac24268ee37a699.png", - "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0x890a5122aa1da30fec4286de7904ff808f0bd74a": { - "address": "0x890a5122aa1da30fec4286de7904ff808f0bd74a", - "symbol": "MSY", - "decimals": 18, - "name": "MSY", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x890a5122aa1da30fec4286de7904ff808f0bd74a.png", - "aggregators": ["CoinGecko", "LiFi", "Rubic", "Rango"], - "occurrences": 4 - }, - "0x66d13dc0e8c2428c9ff4bc0bd93e934110d17fce": { - "address": "0x66d13dc0e8c2428c9ff4bc0bd93e934110d17fce", - "symbol": "SNARDLER", - "decimals": 9, - "name": "Snardler Wormfriend", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x66d13dc0e8c2428c9ff4bc0bd93e934110d17fce.png", - "aggregators": ["CoinGecko", "Rubic", "Sonarwatch"], - "occurrences": 3 - }, - "0xe778fd9a8d074e4a808092896b33fe3d3452c125": { - "address": "0xe778fd9a8d074e4a808092896b33fe3d3452c125", - "symbol": "FROGGER", - "decimals": 18, - "name": "FROGGER", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xe778fd9a8d074e4a808092896b33fe3d3452c125.png", - "aggregators": ["CoinMarketCap", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0xb0415d55f2c87b7f99285848bd341c367feac1ea": { - "address": "0xb0415d55f2c87b7f99285848bd341c367feac1ea", - "symbol": "1R0R", - "decimals": 18, - "name": "R0AR Token", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xb0415d55f2c87b7f99285848bd341c367feac1ea.png", - "aggregators": ["CoinMarketCap", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0x0b2fa18342d38909e3e44d7103cf3f37b0a0403a": { - "address": "0x0b2fa18342d38909e3e44d7103cf3f37b0a0403a", - "symbol": "TANUKI", - "decimals": 9, - "name": "TANUKI", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x0b2fa18342d38909e3e44d7103cf3f37b0a0403a.png", - "aggregators": ["CoinMarketCap", "1inch", "Rubic", "Rango"], - "occurrences": 4 - }, - "0xe4ad6e3a254d545215089c972056494dfc12406c": { - "address": "0xe4ad6e3a254d545215089c972056494dfc12406c", - "symbol": "KOLT", - "decimals": 9, - "name": "Kolytics", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xe4ad6e3a254d545215089c972056494dfc12406c.png", - "aggregators": ["CoinGecko", "Rubic", "Sonarwatch"], - "occurrences": 3 - }, - "0x0f7dc5d02cc1e1f5ee47854d534d332a1081ccc8": { - "address": "0x0f7dc5d02cc1e1f5ee47854d534d332a1081ccc8", - "symbol": "ZEUS", - "decimals": 9, - "name": "Pepes Dog", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x0f7dc5d02cc1e1f5ee47854d534d332a1081ccc8.png", - "aggregators": ["CoinMarketCap", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0xfd409bc96d126bc8a56479d4c7672015d539f96c": { - "address": "0xfd409bc96d126bc8a56479d4c7672015d539f96c", - "symbol": "VICE", - "decimals": 18, - "name": "VICE", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xfd409bc96d126bc8a56479d4c7672015d539f96c.png", - "aggregators": ["CoinMarketCap", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0x0a2a015a15a8e019abc386fee88b8a6d7a0d90df": { - "address": "0x0a2a015a15a8e019abc386fee88b8a6d7a0d90df", - "symbol": "MXNA", - "decimals": 18, - "name": "Machina", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x0a2a015a15a8e019abc386fee88b8a6d7a0d90df.png", - "aggregators": ["CoinMarketCap", "Rubic", "Sonarwatch"], - "occurrences": 3 - }, - "0xf7af0a8079f12f19533b0df69ce7ee6718b0c46f": { - "address": "0xf7af0a8079f12f19533b0df69ce7ee6718b0c46f", - "symbol": "STHUSD", - "decimals": 18, - "name": "Staked Tharwa USD", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xf7af0a8079f12f19533b0df69ce7ee6718b0c46f.png", - "aggregators": ["CoinMarketCap", "LiFi", "Rubic"], - "occurrences": 3 - }, - "0xb6c0189080a6441caf056b856dd4d795b909c460": { - "address": "0xb6c0189080a6441caf056b856dd4d795b909c460", - "symbol": "MOON", - "decimals": 18, - "name": "Black Unicorn Corp", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xb6c0189080a6441caf056b856dd4d795b909c460.png", - "aggregators": ["CoinMarketCap", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0xbc4c5dff630a86b864bebf48f55faa626ef12323": { - "address": "0xbc4c5dff630a86b864bebf48f55faa626ef12323", - "symbol": "UNIT", - "decimals": 18, - "name": "UNIT", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xbc4c5dff630a86b864bebf48f55faa626ef12323.png", - "aggregators": ["CoinMarketCap", "Rubic", "Sonarwatch"], - "occurrences": 3 - }, - "0x9fbc367b9bb966a2a537989817a088afcaffdc4c": { - "address": "0x9fbc367b9bb966a2a537989817a088afcaffdc4c", - "symbol": "NELIXIR", - "decimals": 6, - "name": "Nest Elixir Vault", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x9fbc367b9bb966a2a537989817a088afcaffdc4c.png", - "aggregators": ["CoinGecko", "Rubic", "Sonarwatch"], - "occurrences": 3 - }, - "0x41b723c73fe13e8f979d5fa80229ce7f24ebedb8": { - "address": "0x41b723c73fe13e8f979d5fa80229ce7f24ebedb8", - "symbol": "ONTACT", - "decimals": 8, - "name": "OnTact", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x41b723c73fe13e8f979d5fa80229ce7f24ebedb8.png", - "aggregators": ["CoinMarketCap", "Rubic", "Sonarwatch"], - "occurrences": 3 - }, - "0x1db1591540d7a6062be0837ca3c808add28844f6": { - "address": "0x1db1591540d7a6062be0837ca3c808add28844f6", - "symbol": "HOHM", - "decimals": 18, - "name": "Origami hOHM", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x1db1591540d7a6062be0837ca3c808add28844f6.png", - "aggregators": ["CoinGecko", "1inch", "Rubic", "Rango"], - "occurrences": 4 - }, - "0xea87148a703adc0de89db2ac2b6b381093ae8ee0": { - "address": "0xea87148a703adc0de89db2ac2b6b381093ae8ee0", - "symbol": "IRIS", - "decimals": 18, - "name": "I.R.I.S by Virtuals", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xea87148a703adc0de89db2ac2b6b381093ae8ee0.png", - "aggregators": ["CoinGecko", "Socket", "Rubic", "Rango"], - "occurrences": 4 - }, - "0xd86830e9c56785e2b703eb0029ae71a943e4d442": { - "address": "0xd86830e9c56785e2b703eb0029ae71a943e4d442", - "symbol": "KOBUSHI", - "decimals": 9, - "name": "Kobushi", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xd86830e9c56785e2b703eb0029ae71a943e4d442.png", - "aggregators": ["CoinMarketCap", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0x271c616157e69a43b4977412a64183cf110edf16": { - "address": "0x271c616157e69a43b4977412a64183cf110edf16", - "symbol": "SUSP", - "decimals": 18, - "name": "SUSP", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x271c616157e69a43b4977412a64183cf110edf16.png", - "aggregators": ["CoinGecko", "LiFi", "Rubic", "Rango"], - "occurrences": 4 - }, - "0x926759a8eaecfadb5d8bdc7a9c7b193c5085f507": { - "address": "0x926759a8eaecfadb5d8bdc7a9c7b193c5085f507", - "symbol": "NURA", - "decimals": 18, - "name": "Nura Labs", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x926759a8eaecfadb5d8bdc7a9c7b193c5085f507.png", - "aggregators": ["CoinMarketCap", "1inch", "Rubic", "Rango"], - "occurrences": 4 - }, - "0xcdbddbdefb0ee3ef03a89afcd714aa4ef310d567": { - "address": "0xcdbddbdefb0ee3ef03a89afcd714aa4ef310d567", - "symbol": "VERTAI", - "decimals": 18, - "name": "Vertical AI", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xcdbddbdefb0ee3ef03a89afcd714aa4ef310d567.png", - "aggregators": ["CoinMarketCap", "Socket", "Rubic", "Sonarwatch"], - "occurrences": 4 - }, - "0x6243558a24cc6116abe751f27e6d7ede50abfc76": { - "address": "0x6243558a24cc6116abe751f27e6d7ede50abfc76", - "symbol": "LVVA", - "decimals": 18, - "name": "Levva Protocol", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x6243558a24cc6116abe751f27e6d7ede50abfc76.png", - "aggregators": ["CoinMarketCap", "Socket", "Rubic", "Sonarwatch"], - "occurrences": 4 - }, - "0x9dc44ae5be187eca9e2a67e33f27a4c91cea1223": { - "address": "0x9dc44ae5be187eca9e2a67e33f27a4c91cea1223", - "symbol": "POWER", - "decimals": 18, - "name": "Power", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x9dc44ae5be187eca9e2a67e33f27a4c91cea1223.png", - "aggregators": ["CoinMarketCap", "LiFi", "Rubic", "Rango"], - "occurrences": 4 - }, - "0x9e72a0e219cff0011069ae7b0da73fa26280f41b": { - "address": "0x9e72a0e219cff0011069ae7b0da73fa26280f41b", - "symbol": "IZZY", - "decimals": 9, - "name": "Izzy", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x9e72a0e219cff0011069ae7b0da73fa26280f41b.png", - "aggregators": ["CoinMarketCap", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0xbf2e353f5db1a01e4e7f051222c666afc81b2574": { - "address": "0xbf2e353f5db1a01e4e7f051222c666afc81b2574", - "symbol": "THEDOGEFATHER", - "decimals": 9, - "name": "DogeFather", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xbf2e353f5db1a01e4e7f051222c666afc81b2574.png", - "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0x45e02bc2875a2914c4f585bbf92a6f28bc07cb70": { - "address": "0x45e02bc2875a2914c4f585bbf92a6f28bc07cb70", - "symbol": "$MBG", - "decimals": 18, - "name": "$MBG Token", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x45e02bc2875a2914c4f585bbf92a6f28bc07cb70.png", - "aggregators": ["CoinMarketCap", "1inch", "Rubic", "Rango"], - "occurrences": 4 - }, - "0xdfa208bb0b811cfbb5fa3ea98ec37aa86180e668": { - "address": "0xdfa208bb0b811cfbb5fa3ea98ec37aa86180e668", - "symbol": "W🍖", - "decimals": 3, - "name": "Unicorn Meat", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xdfa208bb0b811cfbb5fa3ea98ec37aa86180e668.png", - "aggregators": ["CoinGecko", "Socket", "Rubic", "Rango"], - "occurrences": 4 - }, - "0xfc7ea2eb0e0ba0d1d1951ce0a12999f761cfdb98": { - "address": "0xfc7ea2eb0e0ba0d1d1951ce0a12999f761cfdb98", - "symbol": "MATO", - "decimals": 9, - "name": "Mato The Mouse", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xfc7ea2eb0e0ba0d1d1951ce0a12999f761cfdb98.png", - "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0xf8ea18ca502de3ffaa9b8ed95a21878ee41a2f4a": { - "address": "0xf8ea18ca502de3ffaa9b8ed95a21878ee41a2f4a", - "symbol": "BOOCHIE", - "decimals": 18, - "name": "Boochie by Matt Furie", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xf8ea18ca502de3ffaa9b8ed95a21878ee41a2f4a.png", - "aggregators": ["CoinMarketCap", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0x14cf922aa1512adfc34409b63e18d391e4a86a2f": { - "address": "0x14cf922aa1512adfc34409b63e18d391e4a86a2f", - "symbol": "STRAT", - "decimals": 18, - "name": "STRAT", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x14cf922aa1512adfc34409b63e18d391e4a86a2f.png", - "aggregators": ["CoinGecko", "LiFi", "Rubic", "Rango"], - "occurrences": 4 - }, - "0xde496a902836601e86e79d5b10e713c95580640b": { - "address": "0xde496a902836601e86e79d5b10e713c95580640b", - "symbol": "CLOAK", - "decimals": 18, - "name": "Cloak Network", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xde496a902836601e86e79d5b10e713c95580640b.png", - "aggregators": ["CoinMarketCap", "Rubic", "Sonarwatch"], - "occurrences": 3 - }, - "0x21e133e07b6cb3ff846b5a32fa9869a1e5040da1": { - "address": "0x21e133e07b6cb3ff846b5a32fa9869a1e5040da1", - "symbol": "TOR", - "decimals": 18, - "name": "Syntor Ai", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x21e133e07b6cb3ff846b5a32fa9869a1e5040da1.png", - "aggregators": ["CoinMarketCap", "Rubic", "Sonarwatch"], - "occurrences": 3 - }, - "0x404d3295c8b1c61662068db584125a7ebcc0d651": { - "address": "0x404d3295c8b1c61662068db584125a7ebcc0d651", - "symbol": "MAMBO", - "decimals": 18, - "name": "Mambo", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x404d3295c8b1c61662068db584125a7ebcc0d651.png", - "aggregators": ["CoinMarketCap", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0xbc2ecbe2195114b82f03680ed4270fa7008f3be0": { - "address": "0xbc2ecbe2195114b82f03680ed4270fa7008f3be0", - "symbol": "BTC2", - "decimals": 18, - "name": "Bitcoin 2 0", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xbc2ecbe2195114b82f03680ed4270fa7008f3be0.png", - "aggregators": ["CoinMarketCap", "Rubic", "Sonarwatch"], - "occurrences": 3 - }, - "0x14c3abf95cb9c93a8b82c1cdcb76d72cb87b2d4c": { - "address": "0x14c3abf95cb9c93a8b82c1cdcb76d72cb87b2d4c", - "symbol": "AAPLON", - "decimals": 18, - "name": "Apple (Ondo Tokenized)", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x14c3abf95cb9c93a8b82c1cdcb76d72cb87b2d4c.png", - "aggregators": ["CoinGecko", "Rubic", "Rango", "Ondo"], - "occurrences": 4, - "rwaData": { - "market": { - "nextOpen": "2026-05-18T20:01:00.000Z", - "nextClose": "2026-05-18T19:59:00.000Z" - }, - "nextPause": { - "start": null, - "end": null - }, - "ticker": "AAPL", - "instrumentType": "stock" - } - }, - "0xb035c3d5083bdc80074f380aebc9fcb68aba0a28": { - "address": "0xb035c3d5083bdc80074f380aebc9fcb68aba0a28", - "symbol": "ABNBON", - "decimals": 18, - "name": "Airbnb (Ondo Tokenized)", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xb035c3d5083bdc80074f380aebc9fcb68aba0a28.png", - "aggregators": ["CoinGecko", "Rubic", "Rango", "Ondo"], - "occurrences": 4, - "rwaData": { - "market": { - "nextOpen": "2026-05-18T20:01:00.000Z", - "nextClose": "2026-05-18T19:59:00.000Z" - }, - "nextPause": { - "start": null, - "end": null - }, - "ticker": "ABNB", - "instrumentType": "stock" - } - }, - "0xaba9ae731aad63335c604e5f6e6a5db2e05f549d": { - "address": "0xaba9ae731aad63335c604e5f6e6a5db2e05f549d", - "symbol": "ACNON", - "decimals": 18, - "name": "Accenture (Ondo Tokenized)", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xaba9ae731aad63335c604e5f6e6a5db2e05f549d.png", - "aggregators": ["CoinGecko", "Rubic", "Rango", "Ondo"], - "occurrences": 4, - "rwaData": { - "market": { - "nextOpen": "2026-05-18T20:01:00.000Z", - "nextClose": "2026-05-18T19:59:00.000Z" - }, - "nextPause": { - "start": null, - "end": null - }, - "ticker": "ACN", - "instrumentType": "stock" - } - }, - "0x7042a8ffc7c7049684bfbc2fcb41b72380755a43": { - "address": "0x7042a8ffc7c7049684bfbc2fcb41b72380755a43", - "symbol": "ADBEON", - "decimals": 18, - "name": "Adobe (Ondo Tokenized)", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x7042a8ffc7c7049684bfbc2fcb41b72380755a43.png", - "aggregators": ["CoinGecko", "Rubic", "Rango", "Ondo"], - "occurrences": 4, - "rwaData": { - "market": { - "nextOpen": "2026-05-18T20:01:00.000Z", - "nextClose": "2026-05-18T19:59:00.000Z" - }, - "nextPause": { - "start": "2026-06-11T20:00:00.000Z", - "end": "2026-06-11T23:30:00.000Z" - }, - "ticker": "ADBE", - "instrumentType": "stock" - } - }, - "0xff7cf16aa2ffc463b996db2f7b7cf0130336899d": { - "address": "0xff7cf16aa2ffc463b996db2f7b7cf0130336899d", - "symbol": "AGGON", - "decimals": 18, - "name": "iShares Core US Aggregate Bond ETF (Ondo Tokenized)", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xff7cf16aa2ffc463b996db2f7b7cf0130336899d.png", - "aggregators": ["CoinGecko", "Rubic", "Rango", "Ondo"], - "occurrences": 4, - "rwaData": { - "market": { - "nextOpen": "2026-05-18T20:01:00.000Z", - "nextClose": "2026-05-18T19:59:00.000Z" - }, - "nextPause": { - "start": "2027-06-30T23:50:00.000Z", - "end": "2027-07-02T00:00:00.000Z" - }, - "ticker": "AGG", - "instrumentType": "stock" - } - }, - "0x0c1f3412a44ff99e40bf14e06e5ea321ae7b3938": { - "address": "0x0c1f3412a44ff99e40bf14e06e5ea321ae7b3938", - "symbol": "AMDON", - "decimals": 18, - "name": "AMD (Ondo Tokenized)", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x0c1f3412a44ff99e40bf14e06e5ea321ae7b3938.png", - "aggregators": ["CoinGecko", "Rubic", "Rango", "Ondo"], - "occurrences": 4, - "rwaData": { - "market": { - "nextOpen": "2026-05-18T20:01:00.000Z", - "nextClose": "2026-05-18T19:59:00.000Z" - }, - "nextPause": { - "start": null, - "end": null - }, - "ticker": "AMD", - "instrumentType": "stock" - } - }, - "0x4d21affd27183b07335935f81a5c26b6a5a15355": { - "address": "0x4d21affd27183b07335935f81a5c26b6a5a15355", - "symbol": "APOON", - "decimals": 18, - "name": "Apollo Global Management (Ondo Tokenized)", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x4d21affd27183b07335935f81a5c26b6a5a15355.png", - "aggregators": ["CoinGecko", "Rubic", "Rango", "Ondo"], - "occurrences": 4, - "rwaData": { - "market": { - "nextOpen": "2026-05-18T20:01:00.000Z", - "nextClose": "2026-05-18T19:59:00.000Z" - }, - "nextPause": { - "start": "2026-05-18T23:52:00.000Z", - "end": "2026-05-19T00:12:00.000Z" - }, - "ticker": "APO", - "instrumentType": "stock" - } - }, - "0xe2fc85bfb48c4cf147921fbe110cf92ef9f26f94": { - "address": "0xe2fc85bfb48c4cf147921fbe110cf92ef9f26f94", - "symbol": "XUSD", - "decimals": 6, - "name": "XUSD", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xe2fc85bfb48c4cf147921fbe110cf92ef9f26f94.png", - "aggregators": ["CoinMarketCap", "LiFi", "Rubic", "Rango"], - "occurrences": 4 - }, - "0x7743e50f534a7f9f1791dde7dcd89f7783eefc39": { - "address": "0x7743e50f534a7f9f1791dde7dcd89f7783eefc39", - "symbol": "FXSAVE", - "decimals": 18, - "name": "FXSAVE", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x7743e50f534a7f9f1791dde7dcd89f7783eefc39.png", - "aggregators": ["CoinGecko", "LiFi", "Rubic", "Rango"], - "occurrences": 4 - }, - "0x48f9e38f3070ad8945dfeae3fa70987722e3d89c": { - "address": "0x48f9e38f3070ad8945dfeae3fa70987722e3d89c", - "symbol": "IUSD", - "decimals": 18, - "name": "IUSD", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x48f9e38f3070ad8945dfeae3fa70987722e3d89c.png", - "aggregators": ["CoinGecko", "LiFi", "Rubic", "Rango"], - "occurrences": 4 - }, - "0xd5c5b2883735fa9b658dd52e2fcc8d7c0f1a42ce": { - "address": "0xd5c5b2883735fa9b658dd52e2fcc8d7c0f1a42ce", - "symbol": "APPON", - "decimals": 18, - "name": "AppLovin (Ondo Tokenized)", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xd5c5b2883735fa9b658dd52e2fcc8d7c0f1a42ce.png", - "aggregators": ["CoinGecko", "Rubic", "Rango", "Ondo"], - "occurrences": 4, - "rwaData": { - "market": { - "nextOpen": "2026-05-18T20:01:00.000Z", - "nextClose": "2026-05-18T19:59:00.000Z" - }, - "nextPause": { - "start": null, - "end": null - }, - "ticker": "APP", - "instrumentType": "stock" - } - }, - "0x0aff507ac29b8cea2fb10d2ad14408c2d79a35ad": { - "address": "0x0aff507ac29b8cea2fb10d2ad14408c2d79a35ad", - "symbol": "TALK", - "decimals": 18, - "name": "CrypTalk", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x0aff507ac29b8cea2fb10d2ad14408c2d79a35ad.png", - "aggregators": ["CoinMarketCap", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0x5bf1b2a808598c0ef4af1673a5457d86fe6d7b3d": { - "address": "0x5bf1b2a808598c0ef4af1673a5457d86fe6d7b3d", - "symbol": "ARMON", - "decimals": 18, - "name": "Arm Holdings plc (Ondo Tokenized)", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x5bf1b2a808598c0ef4af1673a5457d86fe6d7b3d.png", - "aggregators": ["CoinGecko", "Rubic", "Rango", "Ondo"], - "occurrences": 4, - "rwaData": { - "market": { - "nextOpen": "2026-05-18T20:01:00.000Z", - "nextClose": "2026-05-18T19:59:00.000Z" - }, - "nextPause": { - "start": null, - "end": null - }, - "ticker": "ARM", - "instrumentType": "stock" - } - }, - "0xe51ba774ebf6392c45bf1d9e6b334d07992460d3": { - "address": "0xe51ba774ebf6392c45bf1d9e6b334d07992460d3", - "symbol": "ASMLON", - "decimals": 18, - "name": "ASML Holding NV (Ondo Tokenized)", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xe51ba774ebf6392c45bf1d9e6b334d07992460d3.png", - "aggregators": ["CoinGecko", "Rubic", "Rango", "Ondo"], - "occurrences": 4, - "rwaData": { - "market": { - "nextOpen": "2026-05-18T20:01:00.000Z", - "nextClose": "2026-05-18T19:59:00.000Z" - }, - "nextPause": { - "start": null, - "end": null - }, - "ticker": "ASML", - "instrumentType": "stock" - } - }, - "0x2ee7097bfdd98fce2ac08a1896038a7cd9aaed81": { - "address": "0x2ee7097bfdd98fce2ac08a1896038a7cd9aaed81", - "symbol": "GAIA", - "decimals": 18, - "name": "GAIA", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x2ee7097bfdd98fce2ac08a1896038a7cd9aaed81.png", - "aggregators": ["CoinMarketCap", "Socket", "Rubic", "Rango"], - "occurrences": 4 - }, - "0x0d54d4279b9e8c54cd8547c2c75a8ee81a0bcae8": { - "address": "0x0d54d4279b9e8c54cd8547c2c75a8ee81a0bcae8", - "symbol": "AVGOON", - "decimals": 18, - "name": "Broadcom (Ondo Tokenized)", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x0d54d4279b9e8c54cd8547c2c75a8ee81a0bcae8.png", - "aggregators": ["CoinGecko", "Rubic", "Rango", "Ondo"], - "occurrences": 4, - "rwaData": { - "market": { - "nextOpen": "2026-05-18T20:01:00.000Z", - "nextClose": "2026-05-18T19:59:00.000Z" - }, - "nextPause": { - "start": "2026-06-03T20:00:00.000Z", - "end": "2026-06-03T23:30:00.000Z" - }, - "ticker": "AVGO", - "instrumentType": "stock" - } - }, - "0x2bc7ff0c5da9f1a4a51f96e77c5b0f7165dc06d2": { - "address": "0x2bc7ff0c5da9f1a4a51f96e77c5b0f7165dc06d2", - "symbol": "AXPON", - "decimals": 18, - "name": "American Express (Ondo Tokenized)", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x2bc7ff0c5da9f1a4a51f96e77c5b0f7165dc06d2.png", - "aggregators": ["CoinGecko", "Rubic", "Rango", "Ondo"], - "occurrences": 4, - "rwaData": { - "market": { - "nextOpen": "2026-05-18T20:01:00.000Z", - "nextClose": "2026-05-18T19:59:00.000Z" - }, - "nextPause": { - "start": null, - "end": null - }, - "ticker": "AXP", - "instrumentType": "stock" - } - }, - "0x41765f0fcddc276309195166c7a62ae522fa09ef": { - "address": "0x41765f0fcddc276309195166c7a62ae522fa09ef", - "symbol": "BABAON", - "decimals": 18, - "name": "Alibaba (Ondo Tokenized)", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x41765f0fcddc276309195166c7a62ae522fa09ef.png", - "aggregators": ["CoinGecko", "Rubic", "Rango", "Ondo"], - "occurrences": 4, - "rwaData": { - "market": { - "nextOpen": "2026-05-18T20:01:00.000Z", - "nextClose": "2026-05-18T19:59:00.000Z" - }, - "nextPause": { - "start": null, - "end": null - }, - "ticker": "BABA", - "instrumentType": "stock" - } - }, - "0x57270d35a840bc5c094da6fbeca033fb71ea6ab0": { - "address": "0x57270d35a840bc5c094da6fbeca033fb71ea6ab0", - "symbol": "BAON", - "decimals": 18, - "name": "Boeing (Ondo Tokenized)", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x57270d35a840bc5c094da6fbeca033fb71ea6ab0.png", - "aggregators": ["CoinGecko", "Rubic", "Rango", "Ondo"], - "occurrences": 4, - "rwaData": { - "market": { - "nextOpen": "2026-05-18T20:01:00.000Z", - "nextClose": "2026-05-18T19:59:00.000Z" - }, - "nextPause": { - "start": null, - "end": null - }, - "ticker": "BA", - "instrumentType": "stock" - } - }, - "0x9d4c6ad12b55e4645b585209f90cc26614061e91": { - "address": "0x9d4c6ad12b55e4645b585209f90cc26614061e91", - "symbol": "BIDUON", - "decimals": 18, - "name": "Baidu (Ondo Tokenized)", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x9d4c6ad12b55e4645b585209f90cc26614061e91.png", - "aggregators": ["CoinGecko", "Rubic", "Rango", "Ondo"], - "occurrences": 4, - "rwaData": { - "market": { - "nextOpen": "2026-05-18T20:01:00.000Z", - "nextClose": "2026-05-18T19:59:00.000Z" - }, - "nextPause": { - "start": null, - "end": null - }, - "ticker": "BIDU", - "instrumentType": "stock" - } - }, - "0x7a0f89c1606f71499950aa2590d547c3975b728e": { - "address": "0x7a0f89c1606f71499950aa2590d547c3975b728e", - "symbol": "BLKON", - "decimals": 18, - "name": "Blackrock, Inc. (Ondo Tokenized)", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x7a0f89c1606f71499950aa2590d547c3975b728e.png", - "aggregators": ["CoinGecko", "Rubic", "Rango", "Ondo"], - "occurrences": 4, - "rwaData": { - "market": { - "nextOpen": "2026-05-18T20:01:00.000Z", - "nextClose": "2026-05-18T19:59:00.000Z" - }, - "nextPause": { - "start": null, - "end": null - }, - "ticker": "BLK", - "instrumentType": "stock" - } - }, - "0x5845684b49aef79a5c0f887f50401c247dca7ac6": { - "address": "0x5845684b49aef79a5c0f887f50401c247dca7ac6", - "symbol": "CYC", - "decimals": 18, - "name": "Cycle Network Token", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x5845684b49aef79a5c0f887f50401c247dca7ac6.png", - "aggregators": ["CoinMarketCap", "Socket", "Rubic"], - "occurrences": 3 - }, - "0x25018520138bbab60684ad7983d4432e8b8e926b": { - "address": "0x25018520138bbab60684ad7983d4432e8b8e926b", - "symbol": "CMGON", - "decimals": 18, - "name": "Chipotle (Ondo Tokenized)", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x25018520138bbab60684ad7983d4432e8b8e926b.png", - "aggregators": ["CoinGecko", "Rubic", "Rango", "Ondo"], - "occurrences": 4, - "rwaData": { - "market": { - "nextOpen": "2026-05-18T20:01:00.000Z", - "nextClose": "2026-05-18T19:59:00.000Z" - }, - "nextPause": { - "start": null, - "end": null - }, - "ticker": "CMG", - "instrumentType": "stock" - } - }, - "0xf042cfa86cf1d598a75bdb55c3507a1f39f9493b": { - "address": "0xf042cfa86cf1d598a75bdb55c3507a1f39f9493b", - "symbol": "COINON", - "decimals": 18, - "name": "Coinbase (Ondo Tokenized)", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xf042cfa86cf1d598a75bdb55c3507a1f39f9493b.png", - "aggregators": ["CoinGecko", "Rubic", "Rango", "Ondo"], - "occurrences": 4, - "rwaData": { - "market": { - "nextOpen": "2026-05-18T20:01:00.000Z", - "nextClose": "2026-05-18T19:59:00.000Z" - }, - "nextPause": { - "start": null, - "end": null - }, - "ticker": "COIN", - "instrumentType": "stock" - } - }, - "0x55720ef5b023fd043ae5f8d2e526030207978950": { - "address": "0x55720ef5b023fd043ae5f8d2e526030207978950", - "symbol": "CRMON", - "decimals": 18, - "name": "Salesforce (Ondo Tokenized)", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x55720ef5b023fd043ae5f8d2e526030207978950.png", - "aggregators": ["CoinGecko", "Rubic", "Rango", "Ondo"], - "occurrences": 4, - "rwaData": { - "market": { - "nextOpen": "2026-05-18T20:01:00.000Z", - "nextClose": "2026-05-18T19:59:00.000Z" - }, - "nextPause": { - "start": "2026-05-27T20:00:00.000Z", - "end": "2026-05-27T23:30:00.000Z" - }, - "ticker": "CRM", - "instrumentType": "stock" - } - }, - "0x3632dea96a953c11dac2f00b4a05a32cd1063fae": { - "address": "0x3632dea96a953c11dac2f00b4a05a32cd1063fae", - "symbol": "CRCLON", - "decimals": 18, - "name": "Circle Internet Group (Ondo Tokenized)", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x3632dea96a953c11dac2f00b4a05a32cd1063fae.png", - "aggregators": ["CoinGecko", "Rubic", "Rango", "Ondo"], - "occurrences": 4, - "rwaData": { - "market": { - "nextOpen": "2026-05-18T20:01:00.000Z", - "nextClose": "2026-05-18T19:59:00.000Z" - }, - "nextPause": { - "start": null, - "end": null - }, - "ticker": "CRCL", - "instrumentType": "stock" - } - }, - "0x980a1001ee94e54142b231f44c7ca7c9df71fbe1": { - "address": "0x980a1001ee94e54142b231f44c7ca7c9df71fbe1", - "symbol": "CSCOON", - "decimals": 18, - "name": "Cisco Systems (Ondo Tokenized)", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x980a1001ee94e54142b231f44c7ca7c9df71fbe1.png", - "aggregators": ["CoinGecko", "Rubic", "Rango", "Ondo"], - "occurrences": 4, - "rwaData": { - "market": { - "nextOpen": "2026-05-18T20:01:00.000Z", - "nextClose": "2026-05-18T19:59:00.000Z" - }, - "nextPause": { - "start": null, - "end": null - }, - "ticker": "CSCO", - "instrumentType": "stock" - } - }, - "0x5a42864b14c0c8241ef5ab62dae975b163a2e0c1": { - "address": "0x5a42864b14c0c8241ef5ab62dae975b163a2e0c1", - "symbol": "MHYPERETH", - "decimals": 18, - "name": "Midas Hyperithm ETH", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x5a42864b14c0c8241ef5ab62dae975b163a2e0c1.png", - "aggregators": ["CoinGecko", "LiFi", "Rubic"], - "occurrences": 3 - }, - "0x8f3e41b378ae010c46d255f36bfc1d303b52dceb": { - "address": "0x8f3e41b378ae010c46d255f36bfc1d303b52dceb", - "symbol": "CVXON", - "decimals": 18, - "name": "Chevron (Ondo Tokenized)", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x8f3e41b378ae010c46d255f36bfc1d303b52dceb.png", - "aggregators": ["CoinGecko", "Rubic", "Rango", "Ondo"], - "occurrences": 4, - "rwaData": { - "market": { - "nextOpen": "2026-05-18T20:01:00.000Z", - "nextClose": "2026-05-18T19:59:00.000Z" - }, - "nextPause": { - "start": "2026-05-18T23:52:00.000Z", - "end": "2026-05-19T00:12:00.000Z" - }, - "ticker": "CVX", - "instrumentType": "stock" - } - }, - "0xc3d93b45249e8e06cfeb01d25a96337e8893265d": { - "address": "0xc3d93b45249e8e06cfeb01d25a96337e8893265d", - "symbol": "DISON", - "decimals": 18, - "name": "Disney (Ondo Tokenized)", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xc3d93b45249e8e06cfeb01d25a96337e8893265d.png", - "aggregators": ["CoinGecko", "Rubic", "Rango", "Ondo"], - "occurrences": 4, - "rwaData": { - "market": { - "nextOpen": "2026-05-18T20:01:00.000Z", - "nextClose": "2026-05-18T19:59:00.000Z" - }, - "nextPause": { - "start": "2026-06-29T23:52:00.000Z", - "end": "2026-06-30T00:12:00.000Z" - }, - "ticker": "DIS", - "instrumentType": "stock" - } - }, - "0x77a1a02e4a888ada8620b93c30de8a41e621126c": { - "address": "0x77a1a02e4a888ada8620b93c30de8a41e621126c", - "symbol": "EEMON", - "decimals": 18, - "name": "iShares MSCI Emerging Markets ETF (Ondo Tokenized)", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x77a1a02e4a888ada8620b93c30de8a41e621126c.png", - "aggregators": ["CoinGecko", "Rubic", "Rango", "Ondo"], - "occurrences": 4, - "rwaData": { - "market": { - "nextOpen": "2026-05-18T20:01:00.000Z", - "nextClose": "2026-05-18T19:59:00.000Z" - }, - "nextPause": { - "start": "2027-06-09T23:50:00.000Z", - "end": "2027-06-11T00:00:00.000Z" - }, - "ticker": "EEM", - "instrumentType": "stock" - } - }, - "0x4111b60bc87f2bd1e81e783e271d7f0ec6ee088b": { - "address": "0x4111b60bc87f2bd1e81e783e271d7f0ec6ee088b", - "symbol": "EFAON", - "decimals": 18, - "name": "iShares MSCI EAFE ETF (Ondo Tokenized)", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x4111b60bc87f2bd1e81e783e271d7f0ec6ee088b.png", - "aggregators": ["CoinGecko", "Rubic", "Rango", "Ondo"], - "occurrences": 4, - "rwaData": { - "market": { - "nextOpen": "2026-05-18T20:01:00.000Z", - "nextClose": "2026-05-18T19:59:00.000Z" - }, - "nextPause": { - "start": "2027-06-09T23:50:00.000Z", - "end": "2027-06-11T00:00:00.000Z" - }, - "ticker": "EFA", - "instrumentType": "stock" - } - }, - "0x73d2ccee12c120e7da265a2de9d9f952a0101b4f": { - "address": "0x73d2ccee12c120e7da265a2de9d9f952a0101b4f", - "symbol": "EQIXON", - "decimals": 18, - "name": "Equinix (Ondo Tokenized)", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x73d2ccee12c120e7da265a2de9d9f952a0101b4f.png", - "aggregators": ["CoinGecko", "Rubic", "Rango", "Ondo"], - "occurrences": 4, - "rwaData": { - "market": { - "nextOpen": "2026-05-18T20:01:00.000Z", - "nextClose": "2026-05-18T19:59:00.000Z" - }, - "nextPause": { - "start": "2026-05-19T23:52:00.000Z", - "end": "2026-05-20T00:12:00.000Z" - }, - "ticker": "EQIX", - "instrumentType": "stock" - } - }, - "0x8464f6ecae1ea58ec816c13f964030eab8ec123a": { - "address": "0x8464f6ecae1ea58ec816c13f964030eab8ec123a", - "symbol": "YETH", - "decimals": 18, - "name": "YieldFi yETH", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x8464f6ecae1ea58ec816c13f964030eab8ec123a.png", - "aggregators": ["CoinGecko", "Rubic", "Squid"], - "occurrences": 3 - }, - "0x073e7a0669833d356fa88ca65cc6d454efaaa3c5": { - "address": "0x073e7a0669833d356fa88ca65cc6d454efaaa3c5", - "symbol": "FIGON", - "decimals": 18, - "name": "Figma (Ondo Tokenized)", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x073e7a0669833d356fa88ca65cc6d454efaaa3c5.png", - "aggregators": ["CoinGecko", "Rubic", "Rango", "Ondo"], - "occurrences": 4, - "rwaData": { - "market": { - "nextOpen": "2026-05-18T20:01:00.000Z", - "nextClose": "2026-05-18T19:59:00.000Z" - }, - "nextPause": { - "start": null, - "end": null - }, - "ticker": "FIG", - "instrumentType": "stock" - } - }, - "0x5ce215d9c37a195df88e294a06b8396c296b4e15": { - "address": "0x5ce215d9c37a195df88e294a06b8396c296b4e15", - "symbol": "FUTUON", - "decimals": 18, - "name": "Futu Holdings (Ondo Tokenized)", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x5ce215d9c37a195df88e294a06b8396c296b4e15.png", - "aggregators": ["CoinGecko", "Rubic", "Rango", "Ondo"], - "occurrences": 4, - "rwaData": { - "market": { - "nextOpen": "2026-05-18T20:01:00.000Z", - "nextClose": "2026-05-18T19:59:00.000Z" - }, - "nextPause": { - "start": "2026-06-04T09:00:00.000Z", - "end": "2026-06-04T23:30:00.000Z" - }, - "ticker": "FUTU", - "instrumentType": "stock" - } - }, - "0xd904bcf89b7cedf5c89f9df7e829191d695f847e": { - "address": "0xd904bcf89b7cedf5c89f9df7e829191d695f847e", - "symbol": "GEON", - "decimals": 18, - "name": "General Electric (Ondo Tokenized)", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xd904bcf89b7cedf5c89f9df7e829191d695f847e.png", - "aggregators": ["CoinGecko", "Rubic", "Rango", "Ondo"], - "occurrences": 4, - "rwaData": { - "market": { - "nextOpen": "2026-05-18T20:01:00.000Z", - "nextClose": "2026-05-18T19:59:00.000Z" - }, - "nextPause": { - "start": null, - "end": null - }, - "ticker": "GE", - "instrumentType": "stock" - } - }, - "0x0fedba9178b70e8b54e2af08ebffcf28a1e5a43b": { - "address": "0x0fedba9178b70e8b54e2af08ebffcf28a1e5a43b", - "symbol": "DAM", - "decimals": 18, - "name": "DAM", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x0fedba9178b70e8b54e2af08ebffcf28a1e5a43b.png", - "aggregators": ["CoinMarketCap", "Socket", "Rubic", "Rango"], - "occurrences": 4 - }, - "0xba47214edd2bb43099611b208f75e4b42fdcfedc": { - "address": "0xba47214edd2bb43099611b208f75e4b42fdcfedc", - "symbol": "GOOGLON", - "decimals": 18, - "name": "Alphabet Class A (Ondo Tokenized)", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xba47214edd2bb43099611b208f75e4b42fdcfedc.png", - "aggregators": ["CoinGecko", "Rubic", "Rango", "Ondo"], - "occurrences": 4, - "rwaData": { - "market": { - "nextOpen": "2026-05-18T20:01:00.000Z", - "nextClose": "2026-05-18T19:59:00.000Z" - }, - "nextPause": { - "start": "2026-06-07T23:52:00.000Z", - "end": "2026-06-08T00:12:00.000Z" - }, - "ticker": "GOOGL", - "instrumentType": "stock" - } - }, - "0x998f02a9e343ef6e3e6f28700d5a20f839fd74e6": { - "address": "0x998f02a9e343ef6e3e6f28700d5a20f839fd74e6", - "symbol": "HOODON", - "decimals": 18, - "name": "Robinhood Markets (Ondo Tokenized)", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x998f02a9e343ef6e3e6f28700d5a20f839fd74e6.png", - "aggregators": ["CoinGecko", "Rubic", "Rango", "Ondo"], - "occurrences": 4, - "rwaData": { - "market": { - "nextOpen": "2026-05-18T20:01:00.000Z", - "nextClose": "2026-05-18T19:59:00.000Z" - }, - "nextPause": { - "start": null, - "end": null - }, - "ticker": "HOOD", - "instrumentType": "stock" - } - }, - "0xed3618bb8778f8ebbe2f241da532227591771d04": { - "address": "0xed3618bb8778f8ebbe2f241da532227591771d04", - "symbol": "HYGON", - "decimals": 18, - "name": "iBoxx $ High Yield Corporate Bond ETF (Ondo Tokenized)", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xed3618bb8778f8ebbe2f241da532227591771d04.png", - "aggregators": ["CoinGecko", "Rubic", "Rango", "Ondo"], - "occurrences": 4, - "rwaData": { - "market": { - "nextOpen": "2026-05-18T20:01:00.000Z", - "nextClose": "2026-05-18T19:59:00.000Z" - }, - "nextPause": { - "start": "2027-06-30T23:50:00.000Z", - "end": "2027-07-02T00:00:00.000Z" - }, - "ticker": "HYG", - "instrumentType": "stock" - } - }, - "0x4f0ca3df1c2e6b943cf82e649d576ffe7b2fabcf": { - "address": "0x4f0ca3df1c2e6b943cf82e649d576ffe7b2fabcf", - "symbol": "IAUON", - "decimals": 18, - "name": "iShares Gold Trust (Ondo Tokenized)", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x4f0ca3df1c2e6b943cf82e649d576ffe7b2fabcf.png", - "aggregators": ["CoinGecko", "Rubic", "Rango", "Ondo"], - "occurrences": 4, - "rwaData": { - "market": { - "nextOpen": "2026-05-18T20:01:00.000Z", - "nextClose": "2026-05-18T19:59:00.000Z" - }, - "nextPause": { - "start": null, - "end": null - }, - "ticker": "IAU", - "instrumentType": "stock" - } - }, - "0xfeff7a377a86462f5a2a872009722c154707f09e": { - "address": "0xfeff7a377a86462f5a2a872009722c154707f09e", - "symbol": "IEFAON", - "decimals": 18, - "name": "iShares Core MSCI EAFE ETF (Ondo Tokenized)", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xfeff7a377a86462f5a2a872009722c154707f09e.png", - "aggregators": ["CoinGecko", "Rubic", "Rango", "Ondo"], - "occurrences": 4, - "rwaData": { - "market": { - "nextOpen": "2026-05-18T20:01:00.000Z", - "nextClose": "2026-05-18T19:59:00.000Z" - }, - "nextPause": { - "start": "2027-06-09T23:50:00.000Z", - "end": "2027-06-11T00:00:00.000Z" - }, - "ticker": "IEFA", - "instrumentType": "stock" - } - }, - "0xcdd60d15125bf3362b6838d2506b0fa33bc1a515": { - "address": "0xcdd60d15125bf3362b6838d2506b0fa33bc1a515", - "symbol": "IEMGON", - "decimals": 18, - "name": "iShares Core MSCI Emerging Markets ETF (Ondo Tokenized)", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xcdd60d15125bf3362b6838d2506b0fa33bc1a515.png", - "aggregators": ["CoinGecko", "Rubic", "Rango", "Ondo"], - "occurrences": 4, - "rwaData": { - "market": { - "nextOpen": "2026-05-18T20:01:00.000Z", - "nextClose": "2026-05-18T19:59:00.000Z" - }, - "nextPause": { - "start": null, - "end": null - }, - "ticker": "IEMG", - "instrumentType": "stock" - } - }, - "0xfda09936dbd717368de0835ba441d9e62069d36f": { - "address": "0xfda09936dbd717368de0835ba441d9e62069d36f", - "symbol": "INTCON", - "decimals": 18, - "name": "Intel (Ondo Tokenized)", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xfda09936dbd717368de0835ba441d9e62069d36f.png", - "aggregators": ["CoinGecko", "Rubic", "Rango", "Ondo"], - "occurrences": 4, - "rwaData": { - "market": { - "nextOpen": "2026-05-18T20:01:00.000Z", - "nextClose": "2026-05-18T19:59:00.000Z" - }, - "nextPause": { - "start": null, - "end": null - }, - "ticker": "INTC", - "instrumentType": "stock" - } - }, - "0x6cc0afd51ce4cb6920b775f3d6376ab82b9a93bb": { - "address": "0x6cc0afd51ce4cb6920b775f3d6376ab82b9a93bb", - "symbol": "INTUON", - "decimals": 18, - "name": "Intuit (Ondo Tokenized)", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x6cc0afd51ce4cb6920b775f3d6376ab82b9a93bb.png", - "aggregators": ["CoinGecko", "Rubic", "Rango", "Ondo"], - "occurrences": 4, - "rwaData": { - "market": { - "nextOpen": "2026-05-18T20:01:00.000Z", - "nextClose": "2026-05-18T19:59:00.000Z" - }, - "nextPause": { - "start": "2026-05-20T20:00:00.000Z", - "end": "2026-05-20T23:30:00.000Z" - }, - "ticker": "INTU", - "instrumentType": "stock" - } - }, - "0x0692481c369e2bdc728a69ae31b848343a4567be": { - "address": "0x0692481c369e2bdc728a69ae31b848343a4567be", - "symbol": "ITOTON", - "decimals": 18, - "name": "iShares Core S&P Total US Stock Market ETF (Ondo Tokenized)", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x0692481c369e2bdc728a69ae31b848343a4567be.png", - "aggregators": ["CoinGecko", "Rubic", "Rango", "Ondo"], - "occurrences": 4, - "rwaData": { - "market": { - "nextOpen": "2026-05-18T20:01:00.000Z", - "nextClose": "2026-05-18T19:59:00.000Z" - }, - "nextPause": { - "start": "2027-06-09T23:50:00.000Z", - "end": "2027-06-11T00:00:00.000Z" - }, - "ticker": "ITOT", - "instrumentType": "stock" - } - }, - "0x62ca254a363dc3c748e7e955c20447ab5bf06ff7": { - "address": "0x62ca254a363dc3c748e7e955c20447ab5bf06ff7", - "symbol": "IVVON", - "decimals": 18, - "name": "iShares Core S&P 500 ETF (Ondo Tokenized)", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x62ca254a363dc3c748e7e955c20447ab5bf06ff7.png", - "aggregators": ["CoinGecko", "Rubic", "Rango", "Ondo"], - "occurrences": 4, - "rwaData": { - "market": { - "nextOpen": "2026-05-18T20:01:00.000Z", - "nextClose": "2026-05-18T19:59:00.000Z" - }, - "nextPause": { - "start": "2027-06-09T23:50:00.000Z", - "end": "2027-06-11T00:00:00.000Z" - }, - "ticker": "IVV", - "instrumentType": "stock" - } - }, - "0xeb964a1a6fab73b8c72a0d15c7337fa4804f484d": { - "address": "0xeb964a1a6fab73b8c72a0d15c7337fa4804f484d", - "symbol": "HEMI", - "decimals": 18, - "name": "Hemi", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xeb964a1a6fab73b8c72a0d15c7337fa4804f484d.png", - "aggregators": ["CoinMarketCap", "LiFi", "Rubic", "Rango"], - "occurrences": 4 - }, - "0x8d05432c2786e3f93f1a9a62b9572dbf54f3ea06": { - "address": "0x8d05432c2786e3f93f1a9a62b9572dbf54f3ea06", - "symbol": "IWFON", - "decimals": 18, - "name": "iShares Russell 1000 Growth ETF (Ondo Tokenized)", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x8d05432c2786e3f93f1a9a62b9572dbf54f3ea06.png", - "aggregators": ["CoinGecko", "Rubic", "Rango", "Ondo"], - "occurrences": 4, - "rwaData": { - "market": { - "nextOpen": "2026-05-18T20:01:00.000Z", - "nextClose": "2026-05-18T19:59:00.000Z" - }, - "nextPause": { - "start": "2027-06-09T23:50:00.000Z", - "end": "2027-06-11T00:00:00.000Z" - }, - "ticker": "IWF", - "instrumentType": "stock" - } - }, - "0xb3b3c527ba57cd61648e2ec2f5e006a0b390a9f8": { - "address": "0xb3b3c527ba57cd61648e2ec2f5e006a0b390a9f8", - "symbol": "SAID", - "decimals": 18, - "name": "Staked AI Dollar", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xb3b3c527ba57cd61648e2ec2f5e006a0b390a9f8.png", - "aggregators": ["CoinGecko", "LiFi", "Rubic"], - "occurrences": 3 - }, - "0x070d79021dd7e841123cb0cf554993bf683c511d": { - "address": "0x070d79021dd7e841123cb0cf554993bf683c511d", - "symbol": "IWMON", - "decimals": 18, - "name": "iShares Russell 2000 ETF (Ondo Tokenized)", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x070d79021dd7e841123cb0cf554993bf683c511d.png", - "aggregators": ["CoinGecko", "Rubic", "Rango", "Ondo"], - "occurrences": 4, - "rwaData": { - "market": { - "nextOpen": "2026-05-18T20:01:00.000Z", - "nextClose": "2026-05-18T19:59:00.000Z" - }, - "nextPause": { - "start": "2027-06-09T23:50:00.000Z", - "end": "2027-06-11T00:00:00.000Z" - }, - "ticker": "IWM", - "instrumentType": "stock" - } - }, - "0x9dcf7f739b8c0270e2fc0cc8d0dabe355a150dba": { - "address": "0x9dcf7f739b8c0270e2fc0cc8d0dabe355a150dba", - "symbol": "IWNON", - "decimals": 18, - "name": "iShares Russell 2000 Value ETF (Ondo Tokenized)", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x9dcf7f739b8c0270e2fc0cc8d0dabe355a150dba.png", - "aggregators": ["CoinGecko", "Rubic", "Rango", "Ondo"], - "occurrences": 4, - "rwaData": { - "market": { - "nextOpen": "2026-05-18T20:01:00.000Z", - "nextClose": "2026-05-18T19:59:00.000Z" - }, - "nextPause": { - "start": "2027-06-09T23:50:00.000Z", - "end": "2027-06-11T00:00:00.000Z" - }, - "ticker": "IWN", - "instrumentType": "stock" - } - }, - "0x03c1ec4ca9dbb168e6db0def827c085999cbffaf": { - "address": "0x03c1ec4ca9dbb168e6db0def827c085999cbffaf", - "symbol": "JPMON", - "decimals": 18, - "name": "JPMorgan Chase (Ondo Tokenized)", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x03c1ec4ca9dbb168e6db0def827c085999cbffaf.png", - "aggregators": ["CoinGecko", "Rubic", "Rango", "Ondo"], - "occurrences": 4, - "rwaData": { - "market": { - "nextOpen": "2026-05-18T20:01:00.000Z", - "nextClose": "2026-05-18T19:59:00.000Z" - }, - "nextPause": { - "start": null, - "end": null - }, - "ticker": "JPM", - "instrumentType": "stock" - } - }, - "0x6505f1cc7c08061c6d77a62f59cb501e7550cd50": { - "address": "0x6505f1cc7c08061c6d77a62f59cb501e7550cd50", - "symbol": "LMGX", - "decimals": 18, - "name": "LMGroupToken", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x6505f1cc7c08061c6d77a62f59cb501e7550cd50.png", - "aggregators": ["CoinGecko", "Rubic", "Sonarwatch"], - "occurrences": 3 - }, - "0x74a03d741226f738098c35da8188e57aca50d146": { - "address": "0x74a03d741226f738098c35da8188e57aca50d146", - "symbol": "KOON", - "decimals": 18, - "name": "Coca-Cola (Ondo Tokenized)", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x74a03d741226f738098c35da8188e57aca50d146.png", - "aggregators": ["CoinGecko", "Rubic", "Rango", "Ondo"], - "occurrences": 4, - "rwaData": { - "market": { - "nextOpen": "2026-05-18T20:01:00.000Z", - "nextClose": "2026-05-18T19:59:00.000Z" - }, - "nextPause": { - "start": "2026-06-14T23:52:00.000Z", - "end": "2026-06-15T00:12:00.000Z" - }, - "ticker": "KO", - "instrumentType": "stock" - } - }, - "0xf192957ae52db3eb088654403cc2eded014ae556": { - "address": "0xf192957ae52db3eb088654403cc2eded014ae556", - "symbol": "LLYON", - "decimals": 18, - "name": "Eli Lilly (Ondo Tokenized)", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xf192957ae52db3eb088654403cc2eded014ae556.png", - "aggregators": ["CoinGecko", "Rubic", "Rango", "Ondo"], - "occurrences": 4, - "rwaData": { - "market": { - "nextOpen": "2026-05-18T20:01:00.000Z", - "nextClose": "2026-05-18T19:59:00.000Z" - }, - "nextPause": { - "start": null, - "end": null - }, - "ticker": "LLY", - "instrumentType": "stock" - } - }, - "0xa29dc2102dfc2a0a4a5dcb84af984315567c9858": { - "address": "0xa29dc2102dfc2a0a4a5dcb84af984315567c9858", - "symbol": "MAON", - "decimals": 18, - "name": "Mastercard (Ondo Tokenized)", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xa29dc2102dfc2a0a4a5dcb84af984315567c9858.png", - "aggregators": ["CoinGecko", "Rubic", "Rango", "Ondo"], - "occurrences": 4, - "rwaData": { - "market": { - "nextOpen": "2026-05-18T20:01:00.000Z", - "nextClose": "2026-05-18T19:59:00.000Z" - }, - "nextPause": { - "start": null, - "end": null - }, - "ticker": "MA", - "instrumentType": "stock" - } - }, - "0x7cf9dec92ca9fd46f8d86e7798b72624bc116c05": { - "address": "0x7cf9dec92ca9fd46f8d86e7798b72624bc116c05", - "symbol": "MAPOLLO", - "decimals": 18, - "name": "MAPOLLO", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x7cf9dec92ca9fd46f8d86e7798b72624bc116c05.png", - "aggregators": ["CoinGecko", "LiFi", "Rubic", "Rango"], - "occurrences": 4 - }, - "0x4604b0b581269843ac7a6b70a5fc019e7762e511": { - "address": "0x4604b0b581269843ac7a6b70a5fc019e7762e511", - "symbol": "MARAON", - "decimals": 18, - "name": "MARA Holdings (Ondo Tokenized)", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x4604b0b581269843ac7a6b70a5fc019e7762e511.png", - "aggregators": ["CoinGecko", "Rubic", "Rango", "Ondo"], - "occurrences": 4, - "rwaData": { - "market": { - "nextOpen": "2026-05-18T20:01:00.000Z", - "nextClose": "2026-05-18T19:59:00.000Z" - }, - "nextPause": { - "start": null, - "end": null - }, - "ticker": "MARA", - "instrumentType": "stock" - } - }, - "0x4c82c8cd9a218612dce60b156b73a36705645e3b": { - "address": "0x4c82c8cd9a218612dce60b156b73a36705645e3b", - "symbol": "MCDON", - "decimals": 18, - "name": "McDonald's (Ondo Tokenized)", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x4c82c8cd9a218612dce60b156b73a36705645e3b.png", - "aggregators": ["CoinGecko", "Rubic", "Rango", "Ondo"], - "occurrences": 4, - "rwaData": { - "market": { - "nextOpen": "2026-05-18T20:01:00.000Z", - "nextClose": "2026-05-18T19:59:00.000Z" - }, - "nextPause": { - "start": null, - "end": null - }, - "ticker": "MCD", - "instrumentType": "stock" - } - }, - "0x4ad2118da8a65eaa81402a3d583fef6ee76bdf3f": { - "address": "0x4ad2118da8a65eaa81402a3d583fef6ee76bdf3f", - "symbol": "WFCON", - "decimals": 18, - "name": "Wells Fargo (Ondo Tokenized)", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x4ad2118da8a65eaa81402a3d583fef6ee76bdf3f.png", - "aggregators": ["CoinGecko", "Rubic", "Rango", "Ondo"], - "occurrences": 4, - "rwaData": { - "market": { - "nextOpen": "2026-05-18T20:01:00.000Z", - "nextClose": "2026-05-18T19:59:00.000Z" - }, - "nextPause": { - "start": null, - "end": null - }, - "ticker": "WFC", - "instrumentType": "stock" - } - }, - "0x188d12eb13a5eadd0867074ce8354b1ad6f4790b": { - "address": "0x188d12eb13a5eadd0867074ce8354b1ad6f4790b", - "symbol": "DFX", - "decimals": 18, - "name": "CoinDesk DeFi Select Index", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x188d12eb13a5eadd0867074ce8354b1ad6f4790b.png", - "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0xac37c20c1d0e5285035e056101a64e263ff94a41": { - "address": "0xac37c20c1d0e5285035e056101a64e263ff94a41", - "symbol": "VON", - "decimals": 18, - "name": "Visa (Ondo Tokenized)", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xac37c20c1d0e5285035e056101a64e263ff94a41.png", - "aggregators": ["CoinGecko", "Rubic", "Rango", "Ondo"], - "occurrences": 4, - "rwaData": { - "market": { - "nextOpen": "2026-05-18T20:01:00.000Z", - "nextClose": "2026-05-18T19:59:00.000Z" - }, - "nextPause": { - "start": null, - "end": null - }, - "ticker": "V", - "instrumentType": "stock" - } - }, - "0xbeef088055857739c12cd3765f20b7679def0f51": { - "address": "0xbeef088055857739c12cd3765f20b7679def0f51", - "symbol": "STEAKUSDC", - "decimals": 18, - "name": "STEAKUSDC", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xbeef088055857739c12cd3765f20b7679def0f51.png", - "aggregators": ["CoinGecko", "LiFi", "Rubic", "Rango"], - "occurrences": 4 - }, - "0xb788144df611029c60b859df47e79b7726c4deba": { - "address": "0xb788144df611029c60b859df47e79b7726c4deba", - "symbol": "VULT", - "decimals": 18, - "name": "Vultisig Token", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xb788144df611029c60b859df47e79b7726c4deba.png", - "aggregators": ["CoinMarketCap", "Socket", "Rubic", "Rango"], - "occurrences": 4 - }, - "0x01b19c68f8a9ee3a480da788ba401cfabdf19b93": { - "address": "0x01b19c68f8a9ee3a480da788ba401cfabdf19b93", - "symbol": "LINON", - "decimals": 18, - "name": "Linde plc (Ondo Tokenized)", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x01b19c68f8a9ee3a480da788ba401cfabdf19b93.png", - "aggregators": ["CoinGecko", "Rubic", "Rango", "Ondo"], - "occurrences": 4, - "rwaData": { - "market": { - "nextOpen": "2026-05-18T20:01:00.000Z", - "nextClose": "2026-05-18T19:59:00.000Z" - }, - "nextPause": { - "start": "2026-06-03T23:52:00.000Z", - "end": "2026-06-04T00:12:00.000Z" - }, - "ticker": "LIN", - "instrumentType": "stock" - } - }, - "0xdbdc1ef57537e34680b898e1febd3d68c7389bcb": { - "address": "0xdbdc1ef57537e34680b898e1febd3d68c7389bcb", - "symbol": "SIUSD", - "decimals": 18, - "name": "Staked infiniFi USD", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xdbdc1ef57537e34680b898e1febd3d68c7389bcb.png", - "aggregators": ["CoinGecko", "LiFi", "Rubic"], - "occurrences": 3 - }, - "0x74697d4fd0536c6885334b11d5c6dbf58729369f": { - "address": "0x74697d4fd0536c6885334b11d5c6dbf58729369f", - "symbol": "NEKO", - "decimals": 9, - "name": "Neko", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x74697d4fd0536c6885334b11d5c6dbf58729369f.png", - "aggregators": ["CoinGecko", "Socket", "Rubic"], - "occurrences": 3 - }, - "0x9b5528528656dbc094765e2abb79f293c21191b9": { - "address": "0x9b5528528656dbc094765e2abb79f293c21191b9", - "symbol": "MHYPER", - "decimals": 18, - "name": "MHYPER", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x9b5528528656dbc094765e2abb79f293c21191b9.png", - "aggregators": ["CoinGecko", "LiFi", "Rubic", "Rango"], - "occurrences": 4 - }, - "0xa19f6e0df08a7917f2f8a33db66d0af31ff5eca6": { - "address": "0xa19f6e0df08a7917f2f8a33db66d0af31ff5eca6", - "symbol": "MFARM", - "decimals": 18, - "name": "Midas Farm Capital", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xa19f6e0df08a7917f2f8a33db66d0af31ff5eca6.png", - "aggregators": ["CoinGecko", "LiFi", "Rubic"], - "occurrences": 3 - }, - "0x66bcf6151d5558afb47c38b20663589843156078": { - "address": "0x66bcf6151d5558afb47c38b20663589843156078", - "symbol": "LIUSD-4W", - "decimals": 18, - "name": "Locked iUSD - 4 weeks", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x66bcf6151d5558afb47c38b20663589843156078.png", - "aggregators": ["CoinGecko", "LiFi", "Rubic"], - "occurrences": 3 - }, - "0x2fe058ccf29f123f9dd2aec0418aa66a877d8e50": { - "address": "0x2fe058ccf29f123f9dd2aec0418aa66a877d8e50", - "symbol": "MSYRUPUSDP", - "decimals": 18, - "name": "MSYRUPUSDP", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x2fe058ccf29f123f9dd2aec0418aa66a877d8e50.png", - "aggregators": ["CoinGecko", "LiFi", "Rubic", "Rango"], - "occurrences": 4 - }, - "0xfdc9d2a3cae56e484a85de3c2e812784a8184d0d": { - "address": "0xfdc9d2a3cae56e484a85de3c2e812784a8184d0d", - "symbol": "YUGE", - "decimals": 18, - "name": "ErectusDAO", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xfdc9d2a3cae56e484a85de3c2e812784a8184d0d.png", - "aggregators": ["CoinGecko", "Socket", "Rubic"], - "occurrences": 3 - }, - "0xe556aba6fe6036275ec1f87eda296be72c811bce": { - "address": "0xe556aba6fe6036275ec1f87eda296be72c811bce", - "symbol": "NUSD", - "decimals": 18, - "name": "NUSD", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xe556aba6fe6036275ec1f87eda296be72c811bce.png", - "aggregators": ["CoinGecko", "LiFi", "Rubic", "Rango"], - "occurrences": 4 - }, - "0x871ab8e36cae9af35c6a3488b049965233deb7ed": { - "address": "0x871ab8e36cae9af35c6a3488b049965233deb7ed", - "symbol": "DETH", - "decimals": 18, - "name": "DETH", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x871ab8e36cae9af35c6a3488b049965233deb7ed.png", - "aggregators": ["CoinGecko", "LiFi", "Rubic", "Rango"], - "occurrences": 4 - }, - "0xe33fbe7584eb79e2673abe576b7ac8c0de62565c": { - "address": "0xe33fbe7584eb79e2673abe576b7ac8c0de62565c", - "symbol": "HPP", - "decimals": 18, - "name": "HousePartyProtocol", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xe33fbe7584eb79e2673abe576b7ac8c0de62565c.png", - "aggregators": ["CoinMarketCap", "LiFi", "Rubic"], - "occurrences": 3 - }, - "0x972966bcc17f7d818de4f27dc146ef539c231bdf": { - "address": "0x972966bcc17f7d818de4f27dc146ef539c231bdf", - "symbol": "DBIT", - "decimals": 18, - "name": "DBIT", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x972966bcc17f7d818de4f27dc146ef539c231bdf.png", - "aggregators": ["CoinGecko", "LiFi", "Rubic", "Rango"], - "occurrences": 4 - }, - "0x66fd8de541c0594b4dccdfc13bf3a390e50d3afd": { - "address": "0x66fd8de541c0594b4dccdfc13bf3a390e50d3afd", - "symbol": "TURTLE", - "decimals": 18, - "name": "TURTLE", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x66fd8de541c0594b4dccdfc13bf3a390e50d3afd.png", - "aggregators": ["CoinMarketCap", "LiFi", "Rubic", "Rango"], - "occurrences": 4 - }, - "0xfe0ccc9942e98c963fe6b4e5194eb6e3baa4cb64": { - "address": "0xfe0ccc9942e98c963fe6b4e5194eb6e3baa4cb64", - "symbol": "SYUSD", - "decimals": 18, - "name": "SYUSD", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xfe0ccc9942e98c963fe6b4e5194eb6e3baa4cb64.png", - "aggregators": ["CoinGecko", "LiFi", "Rubic", "Rango"], - "occurrences": 4 - }, - "0xec1227bfb3e76d7a2a9bca24d9e98f68de8bf808": { - "address": "0xec1227bfb3e76d7a2a9bca24d9e98f68de8bf808", - "symbol": "MPRA", - "decimals": 18, - "name": "Maya Preferred PRA", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xec1227bfb3e76d7a2a9bca24d9e98f68de8bf808.png", - "aggregators": ["CoinMarketCap", "Rubic", "Sonarwatch"], - "occurrences": 3 - }, - "0xfb70859efec2ceb84dd4935a0842aa69290020bc": { - "address": "0xfb70859efec2ceb84dd4935a0842aa69290020bc", - "symbol": "PAIRS", - "decimals": 18, - "name": "Pairs", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xfb70859efec2ceb84dd4935a0842aa69290020bc.png", - "aggregators": ["CoinGecko", "Rubic", "Sonarwatch"], - "occurrences": 3 - }, - "0x075756f3b6381a79633438faa8964946bf40163d": { - "address": "0x075756f3b6381a79633438faa8964946bf40163d", - "symbol": "UNHON", - "decimals": 18, - "name": "UnitedHealth (Ondo Tokenized)", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x075756f3b6381a79633438faa8964946bf40163d.png", - "aggregators": ["CoinGecko", "Rubic", "Rango", "Ondo"], - "occurrences": 4, - "rwaData": { - "market": { - "nextOpen": "2026-05-18T20:01:00.000Z", - "nextClose": "2026-05-18T19:59:00.000Z" - }, - "nextPause": { - "start": null, - "end": null - }, - "ticker": "UNH", - "instrumentType": "stock" - } - }, - "0x3cafdbfe682aec17d5ace2f97a2f3ab3dcf6a4a9": { - "address": "0x3cafdbfe682aec17d5ace2f97a2f3ab3dcf6a4a9", - "symbol": "TSMON", - "decimals": 18, - "name": "Taiwan Semiconductor Manufacturing (Ondo Tokenized)", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x3cafdbfe682aec17d5ace2f97a2f3ab3dcf6a4a9.png", - "aggregators": ["CoinGecko", "Rubic", "Rango", "Ondo"], - "occurrences": 4, - "rwaData": { - "market": { - "nextOpen": "2026-05-18T20:01:00.000Z", - "nextClose": "2026-05-18T19:59:00.000Z" - }, - "nextPause": { - "start": null, - "end": null - }, - "ticker": "TSM", - "instrumentType": "stock" - } - }, - "0xab02fc332e9278ebcbbc6b4a8038050c01d15f69": { - "address": "0xab02fc332e9278ebcbbc6b4a8038050c01d15f69", - "symbol": "TMON", - "decimals": 18, - "name": "Toyota (Ondo Tokenized)", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xab02fc332e9278ebcbbc6b4a8038050c01d15f69.png", - "aggregators": ["CoinGecko", "Rubic", "Rango", "Ondo"], - "occurrences": 4, - "rwaData": { - "market": { - "nextOpen": "2026-05-18T20:01:00.000Z", - "nextClose": "2026-05-18T19:59:00.000Z" - }, - "nextPause": { - "start": null, - "end": null - }, - "ticker": "TM", - "instrumentType": "stock" - } - }, - "0x992651bfeb9a0dcc4457610e284ba66d86489d4d": { - "address": "0x992651bfeb9a0dcc4457610e284ba66d86489d4d", - "symbol": "TLTON", - "decimals": 18, - "name": "iShares 20+ Year Treasury Bond ETF (Ondo Tokenized)", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x992651bfeb9a0dcc4457610e284ba66d86489d4d.png", - "aggregators": ["CoinGecko", "Rubic", "Rango", "Ondo"], - "occurrences": 4, - "rwaData": { - "market": { - "nextOpen": "2026-05-18T20:01:00.000Z", - "nextClose": "2026-05-18T19:59:00.000Z" - }, - "nextPause": { - "start": "2027-06-30T23:50:00.000Z", - "end": "2027-07-02T00:00:00.000Z" - }, - "ticker": "TLT", - "instrumentType": "stock" - } - }, - "0x2df38ca485d01fc15e4fd85847ed26b7ef871c1c": { - "address": "0x2df38ca485d01fc15e4fd85847ed26b7ef871c1c", - "symbol": "TIPON", - "decimals": 18, - "name": "iShares TIPS Bond ETF (Ondo Tokenized)", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x2df38ca485d01fc15e4fd85847ed26b7ef871c1c.png", - "aggregators": ["CoinGecko", "Rubic", "Rango", "Ondo"], - "occurrences": 4, - "rwaData": { - "market": { - "nextOpen": "2026-05-18T20:01:00.000Z", - "nextClose": "2026-05-18T19:59:00.000Z" - }, - "nextPause": { - "start": "2027-06-30T23:50:00.000Z", - "end": "2027-07-02T00:00:00.000Z" - }, - "ticker": "TIP", - "instrumentType": "stock" - } - }, - "0x590f21186489ca1612f49a4b1ff5c66acd6796a9": { - "address": "0x590f21186489ca1612f49a4b1ff5c66acd6796a9", - "symbol": "SPOTON", - "decimals": 18, - "name": "Spotify (Ondo Tokenized)", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x590f21186489ca1612f49a4b1ff5c66acd6796a9.png", - "aggregators": ["CoinGecko", "Rubic", "Rango", "Ondo"], - "occurrences": 4, - "rwaData": { - "market": { - "nextOpen": "2026-05-18T20:01:00.000Z", - "nextClose": "2026-05-18T19:59:00.000Z" - }, - "nextPause": { - "start": null, - "end": null - }, - "ticker": "SPOT", - "instrumentType": "stock" - } - }, - "0x5d1a9a9b118ff19721e0111f094f2360b6ef7a2f": { - "address": "0x5d1a9a9b118ff19721e0111f094f2360b6ef7a2f", - "symbol": "SNOWON", - "decimals": 18, - "name": "Snowflake (Ondo Tokenized)", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x5d1a9a9b118ff19721e0111f094f2360b6ef7a2f.png", - "aggregators": ["CoinGecko", "Rubic", "Rango", "Ondo"], - "occurrences": 4, - "rwaData": { - "market": { - "nextOpen": "2026-05-18T20:01:00.000Z", - "nextClose": "2026-05-18T19:59:00.000Z" - }, - "nextPause": { - "start": "2026-05-27T20:00:00.000Z", - "end": "2026-05-27T23:30:00.000Z" - }, - "ticker": "SNOW", - "instrumentType": "stock" - } - }, - "0x2ca12a3f9635fd69c21580def14f25c210ca9612": { - "address": "0x2ca12a3f9635fd69c21580def14f25c210ca9612", - "symbol": "SMCION", - "decimals": 18, - "name": "Super Micro Computer (Ondo Tokenized)", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x2ca12a3f9635fd69c21580def14f25c210ca9612.png", - "aggregators": ["CoinGecko", "Rubic", "Rango", "Ondo"], - "occurrences": 4, - "rwaData": { - "market": { - "nextOpen": "2026-05-18T20:01:00.000Z", - "nextClose": "2026-05-18T19:59:00.000Z" - }, - "nextPause": { - "start": null, - "end": null - }, - "ticker": "SMCI", - "instrumentType": "stock" - } - }, - "0xf3e4872e6a4cf365888d93b6146a2baa7348f1a4": { - "address": "0xf3e4872e6a4cf365888d93b6146a2baa7348f1a4", - "symbol": "SLVON", - "decimals": 18, - "name": "iShares Silver Trust (Ondo Tokenized)", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xf3e4872e6a4cf365888d93b6146a2baa7348f1a4.png", - "aggregators": ["CoinGecko", "Rubic", "Rango", "Ondo"], - "occurrences": 4, - "rwaData": { - "market": { - "nextOpen": "2026-05-18T20:01:00.000Z", - "nextClose": "2026-05-18T19:59:00.000Z" - }, - "nextPause": { - "start": null, - "end": null - }, - "ticker": "SLV", - "instrumentType": "stock" - } - }, - "0x908266c1192628371cff7ad2f5eba4de061a0ac5": { - "address": "0x908266c1192628371cff7ad2f5eba4de061a0ac5", - "symbol": "SHOPON", - "decimals": 18, - "name": "Shopify (Ondo Tokenized)", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x908266c1192628371cff7ad2f5eba4de061a0ac5.png", - "aggregators": ["CoinGecko", "Rubic", "Rango", "Ondo"], - "occurrences": 4, - "rwaData": { - "market": { - "nextOpen": "2026-05-18T20:01:00.000Z", - "nextClose": "2026-05-18T19:59:00.000Z" - }, - "nextPause": { - "start": null, - "end": null - }, - "ticker": "SHOP", - "instrumentType": "stock" - } - }, - "0xf15fbc1349ab99abad63db3f9a510bf413be3bef": { - "address": "0xf15fbc1349ab99abad63db3f9a510bf413be3bef", - "symbol": "SBUXON", - "decimals": 18, - "name": "Starbucks (Ondo Tokenized)", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xf15fbc1349ab99abad63db3f9a510bf413be3bef.png", - "aggregators": ["CoinGecko", "Rubic", "Rango", "Ondo"], - "occurrences": 4, - "rwaData": { - "market": { - "nextOpen": "2026-05-18T20:01:00.000Z", - "nextClose": "2026-05-18T19:59:00.000Z" - }, - "nextPause": { - "start": null, - "end": null - }, - "ticker": "SBUX", - "instrumentType": "stock" - } - }, - "0xfdb46864a7c476f0914c5e82cded3364a9f56f8a": { - "address": "0xfdb46864a7c476f0914c5e82cded3364a9f56f8a", - "symbol": "SBETON", - "decimals": 18, - "name": "SharpLink Gaming (Ondo Tokenized)", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xfdb46864a7c476f0914c5e82cded3364a9f56f8a.png", - "aggregators": ["CoinGecko", "Rubic", "Rango", "Ondo"], - "occurrences": 4, - "rwaData": { - "market": { - "nextOpen": "2026-05-18T20:01:00.000Z", - "nextClose": "2026-05-18T19:59:00.000Z" - }, - "nextPause": { - "start": null, - "end": null - }, - "ticker": "SBET", - "instrumentType": "stock" - } - }, - "0x21deafd91116fce9fe87c8f15bde03f99a309b72": { - "address": "0x21deafd91116fce9fe87c8f15bde03f99a309b72", - "symbol": "RIOTON", - "decimals": 18, - "name": "Riot Platforms (Ondo Tokenized)", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x21deafd91116fce9fe87c8f15bde03f99a309b72.png", - "aggregators": ["CoinGecko", "Rubic", "Rango", "Ondo"], - "occurrences": 4, - "rwaData": { - "market": { - "nextOpen": "2026-05-18T20:01:00.000Z", - "nextClose": "2026-05-18T19:59:00.000Z" - }, - "nextPause": { - "start": null, - "end": null - }, - "ticker": "RIOT", - "instrumentType": "stock" - } - }, - "0x3807562a482b824c08a564dfefcc471806d3e00a": { - "address": "0x3807562a482b824c08a564dfefcc471806d3e00a", - "symbol": "QBTSON", - "decimals": 18, - "name": "D-Wave Quantum (Ondo Tokenized)", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x3807562a482b824c08a564dfefcc471806d3e00a.png", - "aggregators": ["CoinGecko", "Rubic", "Rango", "Ondo"], - "occurrences": 4, - "rwaData": { - "market": { - "nextOpen": "2026-05-18T20:01:00.000Z", - "nextClose": "2026-05-18T19:59:00.000Z" - }, - "nextPause": { - "start": null, - "end": null - }, - "ticker": "QBTS", - "instrumentType": "stock" - } - }, - "0x4efd92f372898b57f292de69fce377dd7d912bdd": { - "address": "0x4efd92f372898b57f292de69fce377dd7d912bdd", - "symbol": "PYPLON", - "decimals": 18, - "name": "PayPal (Ondo Tokenized)", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x4efd92f372898b57f292de69fce377dd7d912bdd.png", - "aggregators": ["CoinGecko", "Rubic", "Rango", "Ondo"], - "occurrences": 4, - "rwaData": { - "market": { - "nextOpen": "2026-05-18T20:01:00.000Z", - "nextClose": "2026-05-18T19:59:00.000Z" - }, - "nextPause": { - "start": "2026-06-03T23:52:00.000Z", - "end": "2026-06-04T00:12:00.000Z" - }, - "ticker": "PYPL", - "instrumentType": "stock" - } - }, - "0x0c666485b02f7a87d21add7aeb9f5e64975aa490": { - "address": "0x0c666485b02f7a87d21add7aeb9f5e64975aa490", - "symbol": "PLTRON", - "decimals": 18, - "name": "Palantir Technologies (Ondo Tokenized)", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x0c666485b02f7a87d21add7aeb9f5e64975aa490.png", - "aggregators": ["CoinGecko", "Rubic", "Rango", "Ondo"], - "occurrences": 4, - "rwaData": { - "market": { - "nextOpen": "2026-05-18T20:01:00.000Z", - "nextClose": "2026-05-18T19:59:00.000Z" - }, - "nextPause": { - "start": null, - "end": null - }, - "ticker": "PLTR", - "instrumentType": "stock" - } - }, - "0x339ce23a355ed6d513dd3e1462975c4ecd86823a": { - "address": "0x339ce23a355ed6d513dd3e1462975c4ecd86823a", - "symbol": "PGON", - "decimals": 18, - "name": "Procter & Gamble (Ondo Tokenized)", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x339ce23a355ed6d513dd3e1462975c4ecd86823a.png", - "aggregators": ["CoinGecko", "Rubic", "Rango", "Ondo"], - "occurrences": 4, - "rwaData": { - "market": { - "nextOpen": "2026-05-18T20:01:00.000Z", - "nextClose": "2026-05-18T19:59:00.000Z" - }, - "nextPause": { - "start": null, - "end": null - }, - "ticker": "PG", - "instrumentType": "stock" - } - }, - "0x06954faa913fa14c28eb1b2e459594f22f33f3de": { - "address": "0x06954faa913fa14c28eb1b2e459594f22f33f3de", - "symbol": "PFEON", - "decimals": 18, - "name": "Pfizer (Ondo Tokenized)", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x06954faa913fa14c28eb1b2e459594f22f33f3de.png", - "aggregators": ["CoinGecko", "Rubic", "Rango", "Ondo"], - "occurrences": 4, - "rwaData": { - "market": { - "nextOpen": "2026-05-18T20:01:00.000Z", - "nextClose": "2026-05-18T19:59:00.000Z" - }, - "nextPause": { - "start": null, - "end": null - }, - "ticker": "PFE", - "instrumentType": "stock" - } - }, - "0x3ce219d498d807317f840f4cb0f03fa27dd65046": { - "address": "0x3ce219d498d807317f840f4cb0f03fa27dd65046", - "symbol": "PEPON", - "decimals": 18, - "name": "PepsiCo (Ondo Tokenized)", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x3ce219d498d807317f840f4cb0f03fa27dd65046.png", - "aggregators": ["CoinGecko", "Rubic", "Rango", "Ondo"], - "occurrences": 4, - "rwaData": { - "market": { - "nextOpen": "2026-05-18T20:01:00.000Z", - "nextClose": "2026-05-18T19:59:00.000Z" - }, - "nextPause": { - "start": "2026-06-04T23:52:00.000Z", - "end": "2026-06-05T00:12:00.000Z" - }, - "ticker": "PEP", - "instrumentType": "stock" - } - }, - "0xd08ddb436e731f32455fe302723ee0fd2e9e8706": { - "address": "0xd08ddb436e731f32455fe302723ee0fd2e9e8706", - "symbol": "PBRON", - "decimals": 18, - "name": "Petrobras (Ondo Tokenized)", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xd08ddb436e731f32455fe302723ee0fd2e9e8706.png", - "aggregators": ["CoinGecko", "Rubic", "Rango", "Ondo"], - "occurrences": 4, - "rwaData": { - "market": { - "nextOpen": "2026-05-18T20:01:00.000Z", - "nextClose": "2026-05-18T19:59:00.000Z" - }, - "nextPause": { - "start": null, - "end": null - }, - "ticker": "PBR", - "instrumentType": "stock" - } - }, - "0x34bfdff25f0fda6d3ad0c33f1e06c0d40bd68885": { - "address": "0x34bfdff25f0fda6d3ad0c33f1e06c0d40bd68885", - "symbol": "PANWON", - "decimals": 18, - "name": "Palo Alto Networks (Ondo Tokenized)", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x34bfdff25f0fda6d3ad0c33f1e06c0d40bd68885.png", - "aggregators": ["CoinGecko", "Rubic", "Rango", "Ondo"], - "occurrences": 4, - "rwaData": { - "market": { - "nextOpen": "2026-05-18T20:01:00.000Z", - "nextClose": "2026-05-18T19:59:00.000Z" - }, - "nextPause": { - "start": "2026-06-02T20:00:00.000Z", - "end": "2026-06-02T23:30:00.000Z" - }, - "ticker": "PANW", - "instrumentType": "stock" - } - }, - "0x8a23c6baadb88512b30475c83df6a63881e33e1e": { - "address": "0x8a23c6baadb88512b30475c83df6a63881e33e1e", - "symbol": "ORCLON", - "decimals": 18, - "name": "Oracle (Ondo Tokenized)", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x8a23c6baadb88512b30475c83df6a63881e33e1e.png", - "aggregators": ["CoinGecko", "Rubic", "Rango", "Ondo"], - "occurrences": 4, - "rwaData": { - "market": { - "nextOpen": "2026-05-18T20:01:00.000Z", - "nextClose": "2026-05-18T19:59:00.000Z" - }, - "nextPause": { - "start": "2026-06-10T09:00:00.000Z", - "end": "2026-06-10T23:30:00.000Z" - }, - "ticker": "ORCL", - "instrumentType": "stock" - } - }, - "0x28151f5888833d3d767c4d6945a0ee50d1b193e3": { - "address": "0x28151f5888833d3d767c4d6945a0ee50d1b193e3", - "symbol": "NVOON", - "decimals": 18, - "name": "Novo Nordisk (Ondo Tokenized)", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x28151f5888833d3d767c4d6945a0ee50d1b193e3.png", - "aggregators": ["CoinGecko", "Rubic", "Rango", "Ondo"], - "occurrences": 4, - "rwaData": { - "market": { - "nextOpen": "2026-05-18T20:01:00.000Z", - "nextClose": "2026-05-18T19:59:00.000Z" - }, - "nextPause": { - "start": null, - "end": null - }, - "ticker": "NVO", - "instrumentType": "stock" - } - }, - "0x2d1f7226bd1f780af6b9a49dcc0ae00e8df4bdee": { - "address": "0x2d1f7226bd1f780af6b9a49dcc0ae00e8df4bdee", - "symbol": "NVDAON", - "decimals": 18, - "name": "NVIDIA (Ondo Tokenized)", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x2d1f7226bd1f780af6b9a49dcc0ae00e8df4bdee.png", - "aggregators": ["CoinGecko", "Rubic", "Rango", "Ondo"], - "occurrences": 4, - "rwaData": { - "market": { - "nextOpen": "2026-05-18T20:01:00.000Z", - "nextClose": "2026-05-18T19:59:00.000Z" - }, - "nextPause": { - "start": "2026-05-20T20:00:00.000Z", - "end": "2026-05-20T23:30:00.000Z" - }, - "ticker": "NVDA", - "instrumentType": "stock" - } - }, - "0x8bcf9012f4b0c1c3d359edb7133c294f82f80790": { - "address": "0x8bcf9012f4b0c1c3d359edb7133c294f82f80790", - "symbol": "NOWON", - "decimals": 18, - "name": "ServiceNow (Ondo Tokenized)", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x8bcf9012f4b0c1c3d359edb7133c294f82f80790.png", - "aggregators": ["CoinGecko", "Rubic", "Rango", "Ondo"], - "occurrences": 4, - "rwaData": { - "market": { - "nextOpen": "2026-05-18T20:01:00.000Z", - "nextClose": "2026-05-18T19:59:00.000Z" - }, - "nextPause": { - "start": null, - "end": null - }, - "ticker": "NOW", - "instrumentType": "stock" - } - }, - "0x391883a5d2438716796336f2e420a92e52b45efe": { - "address": "0x391883a5d2438716796336f2e420a92e52b45efe", - "symbol": "REMUS", - "decimals": 18, - "name": "New Ancient DNA", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x391883a5d2438716796336f2e420a92e52b45efe.png", - "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0xd8e26fcc879b30cb0a0b543925a2b3500f074d81": { - "address": "0xd8e26fcc879b30cb0a0b543925a2b3500f074d81", - "symbol": "NKEON", - "decimals": 18, - "name": "Nike (Ondo Tokenized)", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xd8e26fcc879b30cb0a0b543925a2b3500f074d81.png", - "aggregators": ["CoinGecko", "Rubic", "Rango", "Ondo"], - "occurrences": 4, - "rwaData": { - "market": { - "nextOpen": "2026-05-18T20:01:00.000Z", - "nextClose": "2026-05-18T19:59:00.000Z" - }, - "nextPause": { - "start": "2026-05-31T23:52:00.000Z", - "end": "2026-06-01T00:12:00.000Z" - }, - "ticker": "NKE", - "instrumentType": "stock" - } - }, - "0x032dec3372f25c41ea8054b4987a7c4832cdb338": { - "address": "0x032dec3372f25c41ea8054b4987a7c4832cdb338", - "symbol": "NFLXON", - "decimals": 18, - "name": "Netflix (Ondo Tokenized)", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x032dec3372f25c41ea8054b4987a7c4832cdb338.png", - "aggregators": ["CoinGecko", "Rubic", "Rango", "Ondo"], - "occurrences": 4, - "rwaData": { - "market": { - "nextOpen": "2026-05-18T20:01:00.000Z", - "nextClose": "2026-05-18T19:59:00.000Z" - }, - "nextPause": { - "start": null, - "end": null - }, - "ticker": "NFLX", - "instrumentType": "stock" - } - }, - "0x050362ab1072cb2ce74d74770e22a3203ad04ee5": { - "address": "0x050362ab1072cb2ce74d74770e22a3203ad04ee5", - "symbol": "MUON", - "decimals": 18, - "name": "Micron Technology (Ondo Tokenized)", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x050362ab1072cb2ce74d74770e22a3203ad04ee5.png", - "aggregators": ["CoinGecko", "Rubic", "Rango", "Ondo"], - "occurrences": 4, - "rwaData": { - "market": { - "nextOpen": "2026-05-18T20:01:00.000Z", - "nextClose": "2026-05-18T19:59:00.000Z" - }, - "nextPause": { - "start": null, - "end": null - }, - "ticker": "MU", - "instrumentType": "stock" - } - }, - "0xcabd955322dfbf94c084929ac5e9eca3feb5556f": { - "address": "0xcabd955322dfbf94c084929ac5e9eca3feb5556f", - "symbol": "MSTRON", - "decimals": 18, - "name": "MicroStrategy (Ondo Tokenized)", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xcabd955322dfbf94c084929ac5e9eca3feb5556f.png", - "aggregators": ["CoinGecko", "Rubic", "Rango", "Ondo"], - "occurrences": 4, - "rwaData": { - "market": { - "nextOpen": "2026-05-18T20:01:00.000Z", - "nextClose": "2026-05-18T19:59:00.000Z" - }, - "nextPause": { - "start": null, - "end": null - }, - "ticker": "MSTR", - "instrumentType": "stock" - } - }, - "0xf404e5f887dbd5508e16a1198fcdd5de1a4296b8": { - "address": "0xf404e5f887dbd5508e16a1198fcdd5de1a4296b8", - "symbol": "MRVLON", - "decimals": 18, - "name": "Marvell Technology (Ondo Tokenized)", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xf404e5f887dbd5508e16a1198fcdd5de1a4296b8.png", - "aggregators": ["CoinGecko", "Rubic", "Rango", "Ondo"], - "occurrences": 4, - "rwaData": { - "market": { - "nextOpen": "2026-05-18T20:01:00.000Z", - "nextClose": "2026-05-18T19:59:00.000Z" - }, - "nextPause": { - "start": "2026-05-27T20:00:00.000Z", - "end": "2026-05-27T23:30:00.000Z" - }, - "ticker": "MRVL", - "instrumentType": "stock" - } - }, - "0x59644165402b611b350645555b50afb581c71eb2": { - "address": "0x59644165402b611b350645555b50afb581c71eb2", - "symbol": "METAON", - "decimals": 18, - "name": "Meta Platforms (Ondo Tokenized)", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x59644165402b611b350645555b50afb581c71eb2.png", - "aggregators": ["CoinGecko", "Rubic", "Rango", "Ondo"], - "occurrences": 4, - "rwaData": { - "market": { - "nextOpen": "2026-05-18T20:01:00.000Z", - "nextClose": "2026-05-18T19:59:00.000Z" - }, - "nextPause": { - "start": null, - "end": null - }, - "ticker": "META", - "instrumentType": "stock" - } - }, - "0x2816169a49953c548bfeb3948dcf05c4a0e4657d": { - "address": "0x2816169a49953c548bfeb3948dcf05c4a0e4657d", - "symbol": "MELION", - "decimals": 18, - "name": "MercadoLibre (Ondo Tokenized)", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x2816169a49953c548bfeb3948dcf05c4a0e4657d.png", - "aggregators": ["CoinGecko", "Rubic", "Rango", "Ondo"], - "occurrences": 4, - "rwaData": { - "market": { - "nextOpen": "2026-05-18T20:01:00.000Z", - "nextClose": "2026-05-18T19:59:00.000Z" - }, - "nextPause": { - "start": null, - "end": null - }, - "ticker": "MELI", - "instrumentType": "stock" - } - }, - "0x92cc36d66e9d739d50673d1f27929a371fb83a67": { - "address": "0x92cc36d66e9d739d50673d1f27929a371fb83a67", - "symbol": "WAGMI", - "decimals": 18, - "name": "Wagmi", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x92cc36d66e9d739d50673d1f27929a371fb83a67.png", - "aggregators": ["CoinGecko", "Socket", "Rubic", "Sonarwatch"], - "occurrences": 4 - }, - "0xdefa1d21c5f1cbeac00eeb54b44c7d86467cc3a3": { - "address": "0xdefa1d21c5f1cbeac00eeb54b44c7d86467cc3a3", - "symbol": "ALMANAK", - "decimals": 18, - "name": "Almanak", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xdefa1d21c5f1cbeac00eeb54b44c7d86467cc3a3.png", - "aggregators": ["CoinMarketCap", "LiFi", "Rubic", "Rango"], - "occurrences": 4 - }, - "0x67e1f506b148d0fc95a4e3ffb49068ceb6855c05": { - "address": "0x67e1f506b148d0fc95a4e3ffb49068ceb6855c05", - "symbol": "MROX", - "decimals": 18, - "name": "Midas Rockaway Market Neutral", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x67e1f506b148d0fc95a4e3ffb49068ceb6855c05.png", - "aggregators": ["CoinGecko", "LiFi", "Rubic"], - "occurrences": 3 - }, - "0x27f6c8289550fce67f6b50bed1f519966afe5287": { - "address": "0x27f6c8289550fce67f6b50bed1f519966afe5287", - "symbol": "TGBP", - "decimals": 18, - "name": "TGBP", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x27f6c8289550fce67f6b50bed1f519966afe5287.png", - "aggregators": ["CoinMarketCap", "LiFi", "Rubic", "Rango"], - "occurrences": 4 - }, - "0x627ea69929212916ec57b1b26d2e1a19f6129b53": { - "address": "0x627ea69929212916ec57b1b26d2e1a19f6129b53", - "symbol": "SRMHYPER", - "decimals": 18, - "name": "Strata Senior mHYPER", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x627ea69929212916ec57b1b26d2e1a19f6129b53.png", - "aggregators": ["CoinGecko", "LiFi", "Rubic"], - "occurrences": 3 - }, - "0xeb205d26e9e605ec82d1c0d652e00037c278714b": { - "address": "0xeb205d26e9e605ec82d1c0d652e00037c278714b", - "symbol": "JRMHYPER", - "decimals": 18, - "name": "Strata Junior mHYPER", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xeb205d26e9e605ec82d1c0d652e00037c278714b.png", - "aggregators": ["CoinGecko", "LiFi", "Rubic"], - "occurrences": 3 - }, - "0x63230728bc219d991d2995ce92e96c16fcf8beb6": { - "address": "0x63230728bc219d991d2995ce92e96c16fcf8beb6", - "symbol": "KCT", - "decimals": 18, - "name": "Konnect", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x63230728bc219d991d2995ce92e96c16fcf8beb6.png", - "aggregators": ["CoinMarketCap", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0x6403af1267cacc0714c1bd916b12f80e179c0558": { - "address": "0x6403af1267cacc0714c1bd916b12f80e179c0558", - "symbol": "HAI", - "decimals": 18, - "name": "HAI", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x6403af1267cacc0714c1bd916b12f80e179c0558.png", - "aggregators": ["CoinMarketCap", "Socket", "Rubic", "Rango"], - "occurrences": 4 - }, - "0x5a0f93d040de44e78f251b03c43be9cf317dcf64": { - "address": "0x5a0f93d040de44e78f251b03c43be9cf317dcf64", - "symbol": "JAAA", - "decimals": 6, - "name": "JAAA", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x5a0f93d040de44e78f251b03c43be9cf317dcf64.png", - "aggregators": ["CoinGecko", "LiFi", "Rubic", "Rango"], - "occurrences": 4 - }, - "0x8c213ee79581ff4984583c6a801e5263418c4b86": { - "address": "0x8c213ee79581ff4984583c6a801e5263418c4b86", - "symbol": "JTRSY", - "decimals": 6, - "name": "JTRSY", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x8c213ee79581ff4984583c6a801e5263418c4b86.png", - "aggregators": ["CoinGecko", "LiFi", "Rubic", "Rango"], - "occurrences": 4 - }, - "0xc477b6dfd26ec2460b3b92de18837fd476ea7549": { - "address": "0xc477b6dfd26ec2460b3b92de18837fd476ea7549", - "symbol": "JCT", - "decimals": 18, - "name": "JCT", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xc477b6dfd26ec2460b3b92de18837fd476ea7549.png", - "aggregators": ["CoinMarketCap", "LiFi", "Rubic", "Rango"], - "occurrences": 4 - }, - "0x8c7ac134ed985367eadc6f727d79e8295e11435c": { - "address": "0x8c7ac134ed985367eadc6f727d79e8295e11435c", - "symbol": "KEKEC", - "decimals": 18, - "name": "The Balkan Dwarf", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x8c7ac134ed985367eadc6f727d79e8295e11435c.png", - "aggregators": ["CoinMarketCap", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0x962c8a85f500519266269f77dffba4cea0b46da1": { - "address": "0x962c8a85f500519266269f77dffba4cea0b46da1", - "symbol": "BERRY", - "decimals": 9, - "name": "Strawberry In Bloom", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x962c8a85f500519266269f77dffba4cea0b46da1.png", - "aggregators": ["CoinMarketCap", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0xe0b7ad7f8f26e2b00c8b47b5df370f15f90fcf48": { - "address": "0xe0b7ad7f8f26e2b00c8b47b5df370f15f90fcf48", - "symbol": "SOLX", - "decimals": 18, - "name": "Solaxy", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xe0b7ad7f8f26e2b00c8b47b5df370f15f90fcf48.png", - "aggregators": ["CoinMarketCap", "1inch", "Rubic", "Rango"], - "occurrences": 4 - }, - "0x18f52b3fb465118731d9e0d276d4eb3599d57596": { - "address": "0x18f52b3fb465118731d9e0d276d4eb3599d57596", - "symbol": "AID", - "decimals": 18, - "name": "AI Dollar", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x18f52b3fb465118731d9e0d276d4eb3599d57596.png", - "aggregators": ["CoinGecko", "LiFi", "Rubic"], - "occurrences": 3 - }, - "0x5422374b27757da72d5265cc745ea906e0446634": { - "address": "0x5422374b27757da72d5265cc745ea906e0446634", - "symbol": "USDCV", - "decimals": 18, - "name": "USDCV", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x5422374b27757da72d5265cc745ea906e0446634.png", - "aggregators": ["CoinMarketCap", "1inch", "Rubic", "Rango"], - "occurrences": 4 - }, - "0xbba39fd2935d5769116ce38d46a71bde9cf03099": { - "address": "0xbba39fd2935d5769116ce38d46a71bde9cf03099", - "symbol": "CHO", - "decimals": 18, - "name": "Choise ai", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xbba39fd2935d5769116ce38d46a71bde9cf03099.png", - "aggregators": ["CoinMarketCap", "Socket", "Rubic", "Sonarwatch"], - "occurrences": 4 - }, - "0xb17be9a85d1e04d1aa6ea4b83c0bb6a2030c261f": { - "address": "0xb17be9a85d1e04d1aa6ea4b83c0bb6a2030c261f", - "symbol": "QBIT", - "decimals": 18, - "name": "Qubit", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xb17be9a85d1e04d1aa6ea4b83c0bb6a2030c261f.png", - "aggregators": ["CoinMarketCap", "1inch", "Rubic", "Rango"], - "occurrences": 4 - }, - "0xb4c6fedd984bc983b1a758d0875f1ea34f81a6af": { - "address": "0xb4c6fedd984bc983b1a758d0875f1ea34f81a6af", - "symbol": "OVPP", - "decimals": 9, - "name": "OpenVPP", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xb4c6fedd984bc983b1a758d0875f1ea34f81a6af.png", - "aggregators": ["CoinMarketCap", "1inch", "Rubic", "Rango"], - "occurrences": 4 - }, - "0xc19d38925f9f645337b1d1f37baf3c0647a48e50": { - "address": "0xc19d38925f9f645337b1d1f37baf3c0647a48e50", - "symbol": "GAIB", - "decimals": 18, - "name": "GAIB", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xc19d38925f9f645337b1d1f37baf3c0647a48e50.png", - "aggregators": ["CoinMarketCap", "Socket", "Rubic", "Rango"], - "occurrences": 4 - }, - "0x3d7d6fdf07ee548b939a80edbc9b2256d0cdc003": { - "address": "0x3d7d6fdf07ee548b939a80edbc9b2256d0cdc003", - "symbol": "SRUSDE", - "decimals": 18, - "name": "SRUSDE", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x3d7d6fdf07ee548b939a80edbc9b2256d0cdc003.png", - "aggregators": ["CoinGecko", "LiFi", "Rubic", "Rango"], - "occurrences": 4 - }, - "0x0d45b129dc868963025db79a9074ea9c9e32cae4": { - "address": "0x0d45b129dc868963025db79a9074ea9c9e32cae4", - "symbol": "SUSDP", - "decimals": 18, - "name": "SUSDP", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x0d45b129dc868963025db79a9074ea9c9e32cae4.png", - "aggregators": ["CoinGecko", "LiFi", "Rubic", "Rango"], - "occurrences": 4 - }, - "0x5f342382d5f77f0f99e8f26161e689df6c7cded3": { - "address": "0x5f342382d5f77f0f99e8f26161e689df6c7cded3", - "symbol": "GTWETHB", - "decimals": 18, - "name": "Gauntlet WETH Balanced", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x5f342382d5f77f0f99e8f26161e689df6c7cded3.png", - "aggregators": ["CoinGecko", "LiFi", "Rubic"], - "occurrences": 3 - }, - "0x5791254f5d7a4d7ce4dda0391ce15812b65ac2a2": { - "address": "0x5791254f5d7a4d7ce4dda0391ce15812b65ac2a2", - "symbol": "SLUGLORD", - "decimals": 9, - "name": "G O", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x5791254f5d7a4d7ce4dda0391ce15812b65ac2a2.png", - "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0x6b0faca7ba905a86f221ceb5ca404f605e5b3131": { - "address": "0x6b0faca7ba905a86f221ceb5ca404f605e5b3131", - "symbol": "DEFI", - "decimals": 18, - "name": "DeFi", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x6b0faca7ba905a86f221ceb5ca404f605e5b3131.png", - "aggregators": ["CoinMarketCap", "Socket", "Rubic", "Sonarwatch"], - "occurrences": 4 - }, - "0x140007c65535aa9c3801ea3bbd3f83c378c7f457": { - "address": "0x140007c65535aa9c3801ea3bbd3f83c378c7f457", - "symbol": "X", - "decimals": 9, - "name": "Free Speech", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x140007c65535aa9c3801ea3bbd3f83c378c7f457.png", - "aggregators": ["CoinMarketCap", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0xc58d044404d8b14e953c115e67823784dea53d8f": { - "address": "0xc58d044404d8b14e953c115e67823784dea53d8f", - "symbol": "JRUSDE", - "decimals": 18, - "name": "JRUSDE", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xc58d044404d8b14e953c115e67823784dea53d8f.png", - "aggregators": ["CoinGecko", "LiFi", "Rubic", "Rango"], - "occurrences": 4 - }, - "0xcccc62962d17b8914c62d74ffb843d73b2a3cccc": { - "address": "0xcccc62962d17b8914c62d74ffb843d73b2a3cccc", - "symbol": "CUSD", - "decimals": 18, - "name": "Cap USD", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xcccc62962d17b8914c62d74ffb843d73b2a3cccc.png", - "aggregators": ["Metamask", "LiFi", "Rubic", "Rango"], - "occurrences": 4 - }, - "0xb64c014307622eb15046c66ff71d04258f5963dc": { - "address": "0xb64c014307622eb15046c66ff71d04258f5963dc", - "symbol": "MEVBTC", - "decimals": 18, - "name": "Bitcoin MEV Capital", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xb64c014307622eb15046c66ff71d04258f5963dc.png", - "aggregators": ["CoinGecko", "LiFi", "Rubic"], - "occurrences": 3 - }, - "0xecabe1ff8a9e1dc55899cf58dac8497ece5ae84c": { - "address": "0xecabe1ff8a9e1dc55899cf58dac8497ece5ae84c", - "symbol": "STRCON", - "decimals": 18, - "name": "Strategy Stretch Preferred (Ondo Tokenized)", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xecabe1ff8a9e1dc55899cf58dac8497ece5ae84c.png", - "aggregators": ["CoinGecko", "Rubic", "Rango", "Ondo"], - "occurrences": 4, - "rwaData": { - "market": { - "nextOpen": "2026-05-18T20:01:00.000Z", - "nextClose": "2026-05-18T19:59:00.000Z" - }, - "nextPause": { - "start": null, - "end": null - }, - "ticker": "STRC", - "instrumentType": "stock" - } - }, - "0x769916a66fdac0e3d57363129caac59386ea622b": { - "address": "0x769916a66fdac0e3d57363129caac59386ea622b", - "symbol": "TEER", - "decimals": 12, - "name": "Integritee", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x769916a66fdac0e3d57363129caac59386ea622b.png", - "aggregators": ["CoinMarketCap", "Rubic", "Sonarwatch"], - "occurrences": 3 - }, - "0x70be40667385500c5da7f108a022e21b606045dd": { - "address": "0x70be40667385500c5da7f108a022e21b606045dd", - "symbol": "ST", - "decimals": 18, - "name": "Sentio Token", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x70be40667385500c5da7f108a022e21b606045dd.png", - "aggregators": ["CoinMarketCap", "Socket", "Rubic", "Rango"], - "occurrences": 4 - }, - "0x9b61879e91a0b1322f3d61c23aaf936231882096": { - "address": "0x9b61879e91a0b1322f3d61c23aaf936231882096", - "symbol": "BR", - "decimals": 18, - "name": "BR", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x9b61879e91a0b1322f3d61c23aaf936231882096.png", - "aggregators": ["CoinMarketCap", "LiFi", "Rubic", "Rango"], - "occurrences": 4 - }, - "0xecedb6f8108b9f7bbf499da843dced6c2bb6e270": { - "address": "0xecedb6f8108b9f7bbf499da843dced6c2bb6e270", - "symbol": "USDUC", - "decimals": 18, - "name": "USDUC", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xecedb6f8108b9f7bbf499da843dced6c2bb6e270.png", - "aggregators": ["CoinGecko", "Socket", "Rubic", "Rango"], - "occurrences": 4 - }, - "0xc845b2894dbddd03858fd2d643b4ef725fe0849d": { - "address": "0xc845b2894dbddd03858fd2d643b4ef725fe0849d", - "symbol": "NVDAX", - "decimals": 18, - "name": "NVIDIA xStock", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xc845b2894dbddd03858fd2d643b4ef725fe0849d.png", - "aggregators": ["CoinGecko", "LiFi", "Rubic", "Rango"], - "occurrences": 4 - }, - "0xe94db607eba8f76a377d9bcc327c9856ed90fbde": { - "address": "0xe94db607eba8f76a377d9bcc327c9856ed90fbde", - "symbol": "NINA", - "decimals": 9, - "name": "Nina", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xe94db607eba8f76a377d9bcc327c9856ed90fbde.png", - "aggregators": ["CoinMarketCap", "Rubic", "Sonarwatch"], - "occurrences": 3 - }, - "0x1e44f98cc78d505a61f63b26d13b116cf51dbb87": { - "address": "0x1e44f98cc78d505a61f63b26d13b116cf51dbb87", - "symbol": "RBTC", - "decimals": 18, - "name": "RBTC", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x1e44f98cc78d505a61f63b26d13b116cf51dbb87.png", - "aggregators": ["CoinMarketCap", "Socket", "Rubic", "Rango"], - "occurrences": 4 - }, - "0x3157874a7508fcf972379d24590c6806522b784f": { - "address": "0x3157874a7508fcf972379d24590c6806522b784f", - "symbol": "PFVS", - "decimals": 18, - "name": "Puffverse", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x3157874a7508fcf972379d24590c6806522b784f.png", - "aggregators": ["CoinMarketCap", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0x4af322ff4a6f2858f6b51e546b9ec499654493c5": { - "address": "0x4af322ff4a6f2858f6b51e546b9ec499654493c5", - "symbol": "OBT", - "decimals": 18, - "name": "OBT", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x4af322ff4a6f2858f6b51e546b9ec499654493c5.png", - "aggregators": ["CoinMarketCap", "LiFi", "Rubic", "Rango"], - "occurrences": 4 - }, - "0x856d602e73545deaa1491a3726cf628d49f74f51": { - "address": "0x856d602e73545deaa1491a3726cf628d49f74f51", - "symbol": "GRAMPUS", - "decimals": 18, - "name": "GRAM Ecosystem", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x856d602e73545deaa1491a3726cf628d49f74f51.png", - "aggregators": ["CoinGecko", "Rubic", "Sonarwatch"], - "occurrences": 3 - }, - "0x93a2db22b7c736b341c32ff666307f4a9ed910f5": { - "address": "0x93a2db22b7c736b341c32ff666307f4a9ed910f5", - "symbol": "HYPER", - "decimals": 18, - "name": "Hyperlane", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x93a2db22b7c736b341c32ff666307f4a9ed910f5.png", - "aggregators": ["CoinMarketCap", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0x90a2a4c76b5d8c0bc892a69ea28aa775a8f2dd48": { - "address": "0x90a2a4c76b5d8c0bc892a69ea28aa775a8f2dd48", - "symbol": "SPYX", - "decimals": 18, - "name": "SP500 xStock", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x90a2a4c76b5d8c0bc892a69ea28aa775a8f2dd48.png", - "aggregators": ["CoinGecko", "LiFi", "Rubic", "Rango"], - "occurrences": 4 - }, - "0xa753a7395cae905cd615da0b82a53e0560f250af": { - "address": "0xa753a7395cae905cd615da0b82a53e0560f250af", - "symbol": "QQQX", - "decimals": 18, - "name": "Nasdaq xStock", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xa753a7395cae905cd615da0b82a53e0560f250af.png", - "aggregators": ["CoinGecko", "LiFi", "Rubic", "Rango"], - "occurrences": 4 - }, - "0x9f1e8f87c6321b84bad7dda7dfb86d5115a47605": { - "address": "0x9f1e8f87c6321b84bad7dda7dfb86d5115a47605", - "symbol": "RIZE", - "decimals": 18, - "name": "RIZE", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x9f1e8f87c6321b84bad7dda7dfb86d5115a47605.png", - "aggregators": ["CoinMarketCap", "LiFi", "Rubic", "Rango"], - "occurrences": 4 - }, - "0xbc33b4d48f76d17a1800afcb730e8a6aaada7fe5": { - "address": "0xbc33b4d48f76d17a1800afcb730e8a6aaada7fe5", - "symbol": "VDOT", - "decimals": 18, - "name": "Voucher DOT", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xbc33b4d48f76d17a1800afcb730e8a6aaada7fe5.png", - "aggregators": ["CoinGecko", "Rubic", "Sonarwatch"], - "occurrences": 3 - }, - "0x0f13fc8a93ab8edc9fde0a1e19aac693161599a5": { - "address": "0x0f13fc8a93ab8edc9fde0a1e19aac693161599a5", - "symbol": "SCAI", - "decimals": 18, - "name": "SecureChain AI", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x0f13fc8a93ab8edc9fde0a1e19aac693161599a5.png", - "aggregators": ["CoinGecko", "Rubic", "Sonarwatch"], - "occurrences": 3 - }, - "0x0e7779e698052f8fe56c415c3818fcf89de9ac6d": { - "address": "0x0e7779e698052f8fe56c415c3818fcf89de9ac6d", - "symbol": "ULTI", - "decimals": 18, - "name": "Ultiverse", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x0e7779e698052f8fe56c415c3818fcf89de9ac6d.png", - "aggregators": ["CoinMarketCap", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0xd2e57e7019a8faea8b3e4a3738ee5b269975008a": { - "address": "0xd2e57e7019a8faea8b3e4a3738ee5b269975008a", - "symbol": "THAT", - "decimals": 18, - "name": "THAT", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xd2e57e7019a8faea8b3e4a3738ee5b269975008a.png", - "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0x7528bd0f620d1568c307cc8d5db481a29e8d4e37": { - "address": "0x7528bd0f620d1568c307cc8d5db481a29e8d4e37", - "symbol": "P33L", - "decimals": 18, - "name": "THE P33L", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x7528bd0f620d1568c307cc8d5db481a29e8d4e37.png", - "aggregators": ["CoinMarketCap", "Socket", "Rubic"], - "occurrences": 3 - }, - "0x0d37af9d8ae74f35f3a38bd2a08fcb29890ca6d2": { - "address": "0x0d37af9d8ae74f35f3a38bd2a08fcb29890ca6d2", - "symbol": "AIXBT", - "decimals": 18, - "name": "AIXBT", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x0d37af9d8ae74f35f3a38bd2a08fcb29890ca6d2.png", - "aggregators": ["CoinMarketCap", "Socket", "Rubic", "Rango"], - "occurrences": 4 - }, - "0x78d11e37e890af4589fc9d0f6f884fd165c5aa0a": { - "address": "0x78d11e37e890af4589fc9d0f6f884fd165c5aa0a", - "symbol": "CRYPTO", - "decimals": 18, - "name": "CRYPTO", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x78d11e37e890af4589fc9d0f6f884fd165c5aa0a.png", - "aggregators": ["CoinMarketCap", "LiFi", "Rubic", "Rango"], - "occurrences": 4 - }, - "0x01b603be3d545f096015741e6503440282bf45fb": { - "address": "0x01b603be3d545f096015741e6503440282bf45fb", - "symbol": "RIF", - "decimals": 18, - "name": "RIF", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x01b603be3d545f096015741e6503440282bf45fb.png", - "aggregators": ["CoinMarketCap", "Socket", "Rubic", "Rango"], - "occurrences": 4 - }, - "0xb45ffb51984d626ee758b336c61cf20990c6bf13": { - "address": "0xb45ffb51984d626ee758b336c61cf20990c6bf13", - "symbol": "RBNT", - "decimals": 18, - "name": "Redbelly Network", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xb45ffb51984d626ee758b336c61cf20990c6bf13.png", - "aggregators": ["CoinMarketCap", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0x6bf7788eaa948d9ffba7e9bb386e2d3c9810e0fc": { - "address": "0x6bf7788eaa948d9ffba7e9bb386e2d3c9810e0fc", - "symbol": "SIERRA", - "decimals": 6, - "name": "SIERRA", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x6bf7788eaa948d9ffba7e9bb386e2d3c9810e0fc.png", - "aggregators": ["CoinGecko", "LiFi", "Rubic", "Rango"], - "occurrences": 4 - }, - "0x9b3a8f7cec208e247d97dee13313690977e24459": { - "address": "0x9b3a8f7cec208e247d97dee13313690977e24459", - "symbol": "USDP", - "decimals": 18, - "name": "USDP", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x9b3a8f7cec208e247d97dee13313690977e24459.png", - "aggregators": ["CoinGecko", "LiFi", "Rubic", "Rango"], - "occurrences": 4 - }, - "0x8ad3c73f833d3f9a523ab01476625f269aeb7cf0": { - "address": "0x8ad3c73f833d3f9a523ab01476625f269aeb7cf0", - "symbol": "TSLAX", - "decimals": 18, - "name": "Tesla xStock", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x8ad3c73f833d3f9a523ab01476625f269aeb7cf0.png", - "aggregators": ["CoinGecko", "LiFi", "Rubic", "Rango"], - "occurrences": 4 - }, - "0x04acaf8d2865c0714f79da09645c13fd2888977f": { - "address": "0x04acaf8d2865c0714f79da09645c13fd2888977f", - "symbol": "WFRAX", - "decimals": 18, - "name": "WFRAX", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x04acaf8d2865c0714f79da09645c13fd2888977f.png", - "aggregators": ["CoinMarketCap", "Socket", "Rubic", "Rango"], - "occurrences": 4 - }, - "0xae2f842ef90c0d5213259ab82639d5bbf649b08e": { - "address": "0xae2f842ef90c0d5213259ab82639d5bbf649b08e", - "symbol": "MSTRX", - "decimals": 18, - "name": "MicroStrategy xStock", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xae2f842ef90c0d5213259ab82639d5bbf649b08e.png", - "aggregators": ["CoinGecko", "LiFi", "Rubic", "Rango"], - "occurrences": 4 - }, - "0x4ba01f22827018b4772cd326c7627fb4956a7c00": { - "address": "0x4ba01f22827018b4772cd326c7627fb4956a7c00", - "symbol": "MSUSD", - "decimals": 18, - "name": "MSUSD", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x4ba01f22827018b4772cd326c7627fb4956a7c00.png", - "aggregators": ["CoinGecko", "LiFi", "Rubic", "Rango"], - "occurrences": 4 - }, - "0x01a8b61e7b03891a736b5df865e0ef9c511850ad": { - "address": "0x01a8b61e7b03891a736b5df865e0ef9c511850ad", - "symbol": "SYBTC", - "decimals": 8, - "name": "SYBTC", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x01a8b61e7b03891a736b5df865e0ef9c511850ad.png", - "aggregators": ["CoinGecko", "LiFi", "Rubic", "Rango"], - "occurrences": 4 - }, - "0x356b8d89c1e1239cbbb9de4815c39a1474d5ba7d": { - "address": "0x356b8d89c1e1239cbbb9de4815c39a1474d5ba7d", - "symbol": "SYRUPUSDT", - "decimals": 6, - "name": "SYRUPUSDT", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x356b8d89c1e1239cbbb9de4815c39a1474d5ba7d.png", - "aggregators": ["CoinMarketCap", "LiFi", "Rubic", "Rango"], - "occurrences": 4 - }, - "0xe7c253ead50976caf7b0c2cbca569146a7741b50": { - "address": "0xe7c253ead50976caf7b0c2cbca569146a7741b50", - "symbol": "SOLVBTC.BERA", - "decimals": 18, - "name": "SolvBTC Bera Vault", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xe7c253ead50976caf7b0c2cbca569146a7741b50.png", - "aggregators": ["CoinGecko", "LiFi", "Rubic"], - "occurrences": 3 - }, - "0xd9343a049d5dbd89cd19dc6bca8c48fb3a0a42a7": { - "address": "0xd9343a049d5dbd89cd19dc6bca8c48fb3a0a42a7", - "symbol": "LUMIA", - "decimals": 18, - "name": "LUMIA", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xd9343a049d5dbd89cd19dc6bca8c48fb3a0a42a7.png", - "aggregators": ["CoinMarketCap", "Socket", "Rubic", "Rango"], - "occurrences": 4 - }, - "0x833e53f1e2d320e0768671dee5cec88b2d93330f": { - "address": "0x833e53f1e2d320e0768671dee5cec88b2d93330f", - "symbol": "CAPX", - "decimals": 18, - "name": "CAPX", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x833e53f1e2d320e0768671dee5cec88b2d93330f.png", - "aggregators": ["CoinGecko", "LiFi", "Rubic", "Rango"], - "occurrences": 4 - }, - "0x4ed257678fc4e76df9642a416b223729fdedbefd": { - "address": "0x4ed257678fc4e76df9642a416b223729fdedbefd", - "symbol": "STRX", - "decimals": 18, - "name": "STRX", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x4ed257678fc4e76df9642a416b223729fdedbefd.png", - "aggregators": ["CoinMarketCap", "Rubic", "Squid", "Rango"], - "occurrences": 4 - }, - "0x8d010bf9c26881788b4e6bf5fd1bdc358c8f90b8": { - "address": "0x8d010bf9c26881788b4e6bf5fd1bdc358c8f90b8", - "symbol": "DOT", - "decimals": 18, - "name": "Polkadot Token (Relay Chain)", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x8d010bf9c26881788b4e6bf5fd1bdc358c8f90b8.png", - "aggregators": ["CoinMarketCap", "LiFi", "Rubic", "Rango"], - "occurrences": 4 - }, - "0x516d31321928700c6b4fb0db0c8c6bc5d6799787": { - "address": "0x516d31321928700c6b4fb0db0c8c6bc5d6799787", - "symbol": "SHX", - "decimals": 7, - "name": "SHX", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x516d31321928700c6b4fb0db0c8c6bc5d6799787.png", - "aggregators": ["CoinMarketCap", "Rubic", "Squid", "Rango"], - "occurrences": 4 - }, - "0x6a89228055c7c28430692e342f149f37462b478b": { - "address": "0x6a89228055c7c28430692e342f149f37462b478b", - "symbol": "SPECTRA", - "decimals": 18, - "name": "Spectra", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x6a89228055c7c28430692e342f149f37462b478b.png", - "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0xea17df5cf6d172224892b5477a16acb111182478": { - "address": "0xea17df5cf6d172224892b5477a16acb111182478", - "symbol": "ELIZAOS", - "decimals": 9, - "name": "ELIZAOS", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xea17df5cf6d172224892b5477a16acb111182478.png", - "aggregators": ["CoinMarketCap", "1inch", "Rubic", "Rango"], - "occurrences": 4 - }, - "0x20f7a3ddf244dc9299975b4da1c39f8d5d75f05a": { - "address": "0x20f7a3ddf244dc9299975b4da1c39f8d5d75f05a", - "symbol": "SPN", - "decimals": 6, - "name": "Sapien Network Token", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x20f7a3ddf244dc9299975b4da1c39f8d5d75f05a.png", - "aggregators": ["Metamask", "Socket", "Rubic", "Rango"], - "occurrences": 4 - }, - "0x8971f9fd7196e5cee2c1032b50f656855af7dd26": { - "address": "0x8971f9fd7196e5cee2c1032b50f656855af7dd26", - "symbol": "LAMB", - "decimals": 18, - "name": "Lambda", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x8971f9fd7196e5cee2c1032b50f656855af7dd26.png", - "aggregators": ["Metamask", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0xe5b826ca2ca02f09c1725e9bd98d9a8874c30532": { - "address": "0xe5b826ca2ca02f09c1725e9bd98d9a8874c30532", - "symbol": "ZEON", - "decimals": 18, - "name": "ZEON", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xe5b826ca2ca02f09c1725e9bd98d9a8874c30532.png", - "aggregators": ["Metamask", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0x297e4e5e59ad72b1b0a2fd446929e76117be0e0a": { - "address": "0x297e4e5e59ad72b1b0a2fd446929e76117be0e0a", - "symbol": "VALOR", - "decimals": 18, - "name": "Smart Valor", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x297e4e5e59ad72b1b0a2fd446929e76117be0e0a.png", - "aggregators": ["CoinMarketCap", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0x1c48f86ae57291f7686349f12601910bd8d470bb": { - "address": "0x1c48f86ae57291f7686349f12601910bd8d470bb", - "symbol": "USDK", - "decimals": 18, - "name": "USDK", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x1c48f86ae57291f7686349f12601910bd8d470bb.png", - "aggregators": ["CoinMarketCap", "LiFi", "Socket", "Rubic"], - "occurrences": 4 - }, - "0xeb269732ab75a6fd61ea60b06fe994cd32a83549": { - "address": "0xeb269732ab75a6fd61ea60b06fe994cd32a83549", - "symbol": "USDX", - "decimals": 18, - "name": "dForce USDx", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xeb269732ab75a6fd61ea60b06fe994cd32a83549.png", - "aggregators": ["Metamask", "LiFi", "Socket", "Rubic"], - "occurrences": 4 - }, - "0x48f07301e9e29c3c38a80ae8d9ae771f224f1054": { - "address": "0x48f07301e9e29c3c38a80ae8d9ae771f224f1054", - "symbol": "XZAR", - "decimals": 18, - "name": "South African Tether", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x48f07301e9e29c3c38a80ae8d9ae771f224f1054.png", - "aggregators": ["CoinMarketCap", "LiFi", "Rubic", "Bancor"], - "occurrences": 4 - }, - "0x6c972b70c533e2e045f333ee28b9ffb8d717be69": { - "address": "0x6c972b70c533e2e045f333ee28b9ffb8d717be69", - "symbol": "FRY", - "decimals": 18, - "name": "Foundry Logistics Token", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x6c972b70c533e2e045f333ee28b9ffb8d717be69.png", - "aggregators": ["CoinMarketCap", "LiFi", "Socket", "Rubic"], - "occurrences": 4 - }, - "0x34612903db071e888a4dadcaa416d3ee263a87b9": { - "address": "0x34612903db071e888a4dadcaa416d3ee263a87b9", - "symbol": "ARTE", - "decimals": 18, - "name": "ethart", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x34612903db071e888a4dadcaa416d3ee263a87b9.png", - "aggregators": ["CoinMarketCap", "LiFi", "Socket", "Rubic"], - "occurrences": 4 - }, - "0x1a5f9352af8af974bfc03399e3767df6370d82e4": { - "address": "0x1a5f9352af8af974bfc03399e3767df6370d82e4", - "symbol": "OWL", - "decimals": 18, - "name": "OWL", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x1a5f9352af8af974bfc03399e3767df6370d82e4.png", - "aggregators": ["CoinMarketCap", "LiFi", "Rubic", "Rango"], - "occurrences": 4 - }, - "0xf552b656022c218c26dad43ad88881fc04116f76": { - "address": "0xf552b656022c218c26dad43ad88881fc04116f76", - "symbol": "MORK", - "decimals": 4, - "name": "Mork", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xf552b656022c218c26dad43ad88881fc04116f76.png", - "aggregators": ["CoinMarketCap", "LiFi", "Socket", "Rubic"], - "occurrences": 4 - }, - "0x87b008e57f640d94ee44fd893f0323af933f9195": { - "address": "0x87b008e57f640d94ee44fd893f0323af933f9195", - "symbol": "COIN", - "decimals": 18, - "name": "coin_artist", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x87b008e57f640d94ee44fd893f0323af933f9195.png", - "aggregators": ["CoinMarketCap", "LiFi", "Socket", "Rubic"], - "occurrences": 4 - }, - "0xad6a626ae2b43dcb1b39430ce496d2fa0365ba9c": { - "address": "0xad6a626ae2b43dcb1b39430ce496d2fa0365ba9c", - "symbol": "DEFI+S", - "decimals": 18, - "name": "PieDAO DEFI Small Cap", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xad6a626ae2b43dcb1b39430ce496d2fa0365ba9c.png", - "aggregators": ["CoinMarketCap", "LiFi", "Socket", "Rubic"], - "occurrences": 4 - }, - "0x00000000441378008ea67f4284a57932b1c000a5": { - "address": "0x00000000441378008ea67f4284a57932b1c000a5", - "symbol": "TGBP", - "decimals": 18, - "name": "TrueGBP", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x00000000441378008ea67f4284a57932b1c000a5.png", - "aggregators": ["Metamask", "Rubic", "Rango", "SushiSwap"], - "occurrences": 4 - }, - "0x6d0f5149c502faf215c89ab306ec3e50b15e2892": { - "address": "0x6d0f5149c502faf215c89ab306ec3e50b15e2892", - "symbol": "PRT", - "decimals": 18, - "name": "Portion Token", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x6d0f5149c502faf215c89ab306ec3e50b15e2892.png", - "aggregators": ["Metamask", "1inch", "Rubic", "Rango"], - "occurrences": 4 - }, - "0xa10740ff9ff6852eac84cdcff9184e1d6d27c057": { - "address": "0xa10740ff9ff6852eac84cdcff9184e1d6d27c057", - "symbol": "WG0", - "decimals": 18, - "name": "Wrapped Gen 0", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xa10740ff9ff6852eac84cdcff9184e1d6d27c057.png", - "aggregators": ["CoinMarketCap", "LiFi", "Socket", "Rubic"], - "occurrences": 4 - }, - "0x4cff49d0a19ed6ff845a9122fa912abcfb1f68a6": { - "address": "0x4cff49d0a19ed6ff845a9122fa912abcfb1f68a6", - "symbol": "WTK", - "decimals": 18, - "name": "WadzPay", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x4cff49d0a19ed6ff845a9122fa912abcfb1f68a6.png", - "aggregators": ["CoinMarketCap", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0xe4ae84448db5cfe1daf1e6fb172b469c161cb85f": { - "address": "0xe4ae84448db5cfe1daf1e6fb172b469c161cb85f", - "symbol": "UOP", - "decimals": 18, - "name": "Utopia Genesis Foundation", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xe4ae84448db5cfe1daf1e6fb172b469c161cb85f.png", - "aggregators": ["CoinMarketCap", "Rubic", "Rango", "SushiSwap"], - "occurrences": 4 - }, - "0xea6412fb370e8d1605e6aeeaa21ad07c3c7e9f24": { - "address": "0xea6412fb370e8d1605e6aeeaa21ad07c3c7e9f24", - "symbol": "MUSH", - "decimals": 18, - "name": "MUSH", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xea6412fb370e8d1605e6aeeaa21ad07c3c7e9f24.png", - "aggregators": ["CoinMarketCap", "Rubic", "SushiSwap", "Bancor"], - "occurrences": 4 - }, - "0x7777777777697cfeecf846a76326da79cc606517": { - "address": "0x7777777777697cfeecf846a76326da79cc606517", - "symbol": "SIG", - "decimals": 18, - "name": "xSigma", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x7777777777697cfeecf846a76326da79cc606517.png", - "aggregators": ["CoinMarketCap", "1inch", "Rubic", "Rango"], - "occurrences": 4 - }, - "0x0e192d382a36de7011f795acc4391cd302003606": { - "address": "0x0e192d382a36de7011f795acc4391cd302003606", - "symbol": "FST", - "decimals": 18, - "name": "Futureswap", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x0e192d382a36de7011f795acc4391cd302003606.png", - "aggregators": ["CoinMarketCap", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0x90de74265a416e1393a450752175aed98fe11517": { - "address": "0x90de74265a416e1393a450752175aed98fe11517", - "symbol": "UDT", - "decimals": 18, - "name": "Unlock Protocol", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x90de74265a416e1393a450752175aed98fe11517.png", - "aggregators": ["CoinMarketCap", "LiFi", "Rubic", "Rango"], - "occurrences": 4 - }, - "0xe516d78d784c77d479977be58905b3f2b1111126": { - "address": "0xe516d78d784c77d479977be58905b3f2b1111126", - "symbol": "SPWN", - "decimals": 18, - "name": "Bitspawn", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xe516d78d784c77d479977be58905b3f2b1111126.png", - "aggregators": ["Metamask", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0x21381e026ad6d8266244f2a583b35f9e4413fa2a": { - "address": "0x21381e026ad6d8266244f2a583b35f9e4413fa2a", - "symbol": "FORM", - "decimals": 18, - "name": "Formation Finance", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x21381e026ad6d8266244f2a583b35f9e4413fa2a.png", - "aggregators": ["Metamask", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0xe94b97b6b43639e238c851a7e693f50033efd75c": { - "address": "0xe94b97b6b43639e238c851a7e693f50033efd75c", - "symbol": "RNBW", - "decimals": 18, - "name": "Rainbow Token", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xe94b97b6b43639e238c851a7e693f50033efd75c.png", - "aggregators": ["Metamask", "Socket", "Rubic", "Rango"], - "occurrences": 4 - }, - "0x1321f1f1aa541a56c31682c57b80ecfccd9bb288": { - "address": "0x1321f1f1aa541a56c31682c57b80ecfccd9bb288", - "symbol": "ARCX", - "decimals": 18, - "name": "ARC Governance", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x1321f1f1aa541a56c31682c57b80ecfccd9bb288.png", - "aggregators": ["CoinMarketCap", "Rubic", "Rango", "SushiSwap"], - "occurrences": 4 - }, - "0x8355dbe8b0e275abad27eb843f3eaf3fc855e525": { - "address": "0x8355dbe8b0e275abad27eb843f3eaf3fc855e525", - "symbol": "WOOL", - "decimals": 18, - "name": "Wolf Game Wool", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x8355dbe8b0e275abad27eb843f3eaf3fc855e525.png", - "aggregators": ["CoinMarketCap", "Socket", "Rubic", "Sonarwatch"], - "occurrences": 4 - }, - "0x1117ac6ad6cdf1a3bc543bad3b133724620522d5": { - "address": "0x1117ac6ad6cdf1a3bc543bad3b133724620522d5", - "symbol": "MODA", - "decimals": 18, - "name": "moda", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x1117ac6ad6cdf1a3bc543bad3b133724620522d5.png", - "aggregators": ["CoinMarketCap", "Rubic", "Rango", "SushiSwap"], - "occurrences": 4 - }, - "0x77777777772cf0455fb38ee0e75f38034dfa50de": { - "address": "0x77777777772cf0455fb38ee0e75f38034dfa50de", - "symbol": "XY", - "decimals": 18, - "name": "XY Finance", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x77777777772cf0455fb38ee0e75f38034dfa50de.png", - "aggregators": ["CoinMarketCap", "LiFi", "Rubic", "Rango"], - "occurrences": 4 - }, - "0x2f9411088cef82fd9fb904eb8092f28eb485c8f6": { - "address": "0x2f9411088cef82fd9fb904eb8092f28eb485c8f6", - "symbol": "ATH", - "decimals": 18, - "name": "Athens", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x2f9411088cef82fd9fb904eb8092f28eb485c8f6.png", - "aggregators": ["CoinMarketCap", "Socket", "Rubic", "Rango"], - "occurrences": 4 - }, - "0xe2cfbbedbce1bd59b1b799c44282e6396d692b84": { - "address": "0xe2cfbbedbce1bd59b1b799c44282e6396d692b84", - "symbol": "DEXIO", - "decimals": 18, - "name": "Dexioprotocol", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xe2cfbbedbce1bd59b1b799c44282e6396d692b84.png", - "aggregators": ["CoinMarketCap", "Socket", "Rubic", "Rango"], - "occurrences": 4 - }, - "0x7105e64bf67eca3ae9b123f0e5ca2b83b2ef2da0": { - "address": "0x7105e64bf67eca3ae9b123f0e5ca2b83b2ef2da0", - "symbol": "X7DAO", - "decimals": 18, - "name": "X7DAO", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x7105e64bf67eca3ae9b123f0e5ca2b83b2ef2da0.png", - "aggregators": ["CoinMarketCap", "Socket", "Rubic", "Rango"], - "occurrences": 4 - }, - "0x045da4bfe02b320f4403674b3b7d121737727a36": { - "address": "0x045da4bfe02b320f4403674b3b7d121737727a36", - "symbol": "DCHF", - "decimals": 18, - "name": "DeFi Franc", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x045da4bfe02b320f4403674b3b7d121737727a36.png", - "aggregators": ["CoinMarketCap", "Socket", "Rubic", "Rango"], - "occurrences": 4 - }, - "0x3a872ae95f645acdd17db8aa961f4d39e0f5bc39": { - "address": "0x3a872ae95f645acdd17db8aa961f4d39e0f5bc39", - "symbol": "BRLN", - "decimals": 18, - "name": "Brillion", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x3a872ae95f645acdd17db8aa961f4d39e0f5bc39.png", - "aggregators": ["CoinMarketCap", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0xbb556b0ee2cbd89ed95ddea881477723a3aa8f8b": { - "address": "0xbb556b0ee2cbd89ed95ddea881477723a3aa8f8b", - "symbol": "ALCA", - "decimals": 18, - "name": "AliceNet", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xbb556b0ee2cbd89ed95ddea881477723a3aa8f8b.png", - "aggregators": ["CoinMarketCap", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0x8f828a0644f12fa352888e645a90333d30f6fd7d": { - "address": "0x8f828a0644f12fa352888e645a90333d30f6fd7d", - "symbol": "RINIA", - "decimals": 9, - "name": "Rinia Inu", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x8f828a0644f12fa352888e645a90333d30f6fd7d.png", - "aggregators": ["CoinMarketCap", "Socket", "Rubic", "Rango"], - "occurrences": 4 - }, - "0x9559aaa82d9649c7a7b220e7c461d2e74c9a3593": { - "address": "0x9559aaa82d9649c7a7b220e7c461d2e74c9a3593", - "symbol": "RETH", - "decimals": 18, - "name": "StaFi", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x9559aaa82d9649c7a7b220e7c461d2e74c9a3593.png", - "aggregators": ["CoinMarketCap", "LiFi", "Rubic", "Rango"], - "occurrences": 4 - }, - "0xb9d27bc093ed0a3b7c18366266704cfe5e7af77b": { - "address": "0xb9d27bc093ed0a3b7c18366266704cfe5e7af77b", - "symbol": "CBY", - "decimals": 18, - "name": "Carbify", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xb9d27bc093ed0a3b7c18366266704cfe5e7af77b.png", - "aggregators": ["CoinMarketCap", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0x982b50e55394641ca975a0eec630b120b671391a": { - "address": "0x982b50e55394641ca975a0eec630b120b671391a", - "symbol": "ECOTERRA", - "decimals": 9, - "name": "Ecoterra", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x982b50e55394641ca975a0eec630b120b671391a.png", - "aggregators": ["CoinMarketCap", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0x1294f4183763743c7c9519bec51773fb3acd78fd": { - "address": "0x1294f4183763743c7c9519bec51773fb3acd78fd", - "symbol": "FI", - "decimals": 18, - "name": "Fideum", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x1294f4183763743c7c9519bec51773fb3acd78fd.png", - "aggregators": ["CoinMarketCap", "Socket", "Rubic", "Rango"], - "occurrences": 4 - }, - "0xce6e54daa1ea95fb3530859d69d4bdb978dd821b": { - "address": "0xce6e54daa1ea95fb3530859d69d4bdb978dd821b", - "symbol": "ORBK", - "decimals": 18, - "name": "Ordibank", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xce6e54daa1ea95fb3530859d69d4bdb978dd821b.png", - "aggregators": ["CoinMarketCap", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0x55a05cf8898dd1c582eef939df645d5d235c6f74": { - "address": "0x55a05cf8898dd1c582eef939df645d5d235c6f74", - "symbol": "COSMIC", - "decimals": 18, - "name": "Cosmic Network", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x55a05cf8898dd1c582eef939df645d5d235c6f74.png", - "aggregators": ["CoinMarketCap", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0x97a9a15168c22b3c137e6381037e1499c8ad0978": { - "address": "0x97a9a15168c22b3c137e6381037e1499c8ad0978", - "symbol": "DOP", - "decimals": 18, - "name": "Data Ownership Protocol", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x97a9a15168c22b3c137e6381037e1499c8ad0978.png", - "aggregators": ["CoinMarketCap", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0xb67cf01958b1a06c330f5a46501fe1fb2ec82aaa": { - "address": "0xb67cf01958b1a06c330f5a46501fe1fb2ec82aaa", - "symbol": "OPTION", - "decimals": 18, - "name": "OptionsAI", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xb67cf01958b1a06c330f5a46501fe1fb2ec82aaa.png", - "aggregators": ["CoinMarketCap", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0x04cd37283e0f921b4a8838fee72e4264c87a692b": { - "address": "0x04cd37283e0f921b4a8838fee72e4264c87a692b", - "symbol": "STAR", - "decimals": 18, - "name": "Sponstar", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x04cd37283e0f921b4a8838fee72e4264c87a692b.png", - "aggregators": ["CoinMarketCap", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0x60d95823f795f1972dbdbcd886955095e36e04cd": { - "address": "0x60d95823f795f1972dbdbcd886955095e36e04cd", - "symbol": "GENIE", - "decimals": 18, - "name": "GENIE AI", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x60d95823f795f1972dbdbcd886955095e36e04cd.png", - "aggregators": ["CoinMarketCap", "Socket", "Rubic", "Sonarwatch"], - "occurrences": 4 - }, - "0x6a1d6a577b17b425f3437c8a7c2c4d3a161816d8": { - "address": "0x6a1d6a577b17b425f3437c8a7c2c4d3a161816d8", - "symbol": "PILLAR", - "decimals": 18, - "name": "PillarFi", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x6a1d6a577b17b425f3437c8a7c2c4d3a161816d8.png", - "aggregators": ["CoinMarketCap", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0xfa1b1f13080857bf373de0de93970c96d2c29fd0": { - "address": "0xfa1b1f13080857bf373de0de93970c96d2c29fd0", - "symbol": "ONDOAI", - "decimals": 18, - "name": "Ondo DeFAI", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xfa1b1f13080857bf373de0de93970c96d2c29fd0.png", - "aggregators": ["CoinMarketCap", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0xf38deb975d9a34bc2b8f678de0c1d53692363851": { - "address": "0xf38deb975d9a34bc2b8f678de0c1d53692363851", - "symbol": "BRAWL", - "decimals": 18, - "name": "Metabrawl", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xf38deb975d9a34bc2b8f678de0c1d53692363851.png", - "aggregators": ["CoinMarketCap", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0x12c88a3c30a7aabc1dd7f2c08a97145f5dccd830": { - "address": "0x12c88a3c30a7aabc1dd7f2c08a97145f5dccd830", - "symbol": "G7", - "decimals": 18, - "name": "Game7", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x12c88a3c30a7aabc1dd7f2c08a97145f5dccd830.png", - "aggregators": ["CoinMarketCap", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0x63f718c15f4500326dd5015f95ccbde770ad21af": { - "address": "0x63f718c15f4500326dd5015f95ccbde770ad21af", - "symbol": "EEFS", - "decimals": 18, - "name": "Eefs", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x63f718c15f4500326dd5015f95ccbde770ad21af.png", - "aggregators": ["CoinMarketCap", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0xc71104001a3ccda1bef1177d765831bd1bfe8ee6": { - "address": "0xc71104001a3ccda1bef1177d765831bd1bfe8ee6", - "symbol": "NDEPS", - "decimals": 18, - "name": "Native Decentralized Euro Protocol Shar", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xc71104001a3ccda1bef1177d765831bd1bfe8ee6.png", - "aggregators": ["CoinMarketCap", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0x9e3b5582b22e3835896368017baff6d942a41cd9": { - "address": "0x9e3b5582b22e3835896368017baff6d942a41cd9", - "symbol": "H1", - "decimals": 18, - "name": "Haven1", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x9e3b5582b22e3835896368017baff6d942a41cd9.png", - "aggregators": ["CoinMarketCap", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0x92d3447e956613ee066ad5b4077a8c6e66424d5d": { - "address": "0x92d3447e956613ee066ad5b4077a8c6e66424d5d", - "symbol": "AIAF", - "decimals": 18, - "name": "AI Agent Factory", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x92d3447e956613ee066ad5b4077a8c6e66424d5d.png", - "aggregators": ["CoinMarketCap", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0x4f1aac70b303818ddd0823570af3bb46681d9bd8": { - "address": "0x4f1aac70b303818ddd0823570af3bb46681d9bd8", - "symbol": "SBET", - "decimals": 9, - "name": "SharpLink Gaming", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x4f1aac70b303818ddd0823570af3bb46681d9bd8.png", - "aggregators": ["Metamask", "1inch", "Rubic", "Rango"], - "occurrences": 4 - }, - "0x7bef710a5759d197ec0bf621c3df802c2d60d848": { - "address": "0x7bef710a5759d197ec0bf621c3df802c2d60d848", - "symbol": "SHOPX", - "decimals": 18, - "name": "SHOPX", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x7bef710a5759d197ec0bf621c3df802c2d60d848.png", - "aggregators": ["Metamask", "Socket", "Rubic", "Rango"], - "occurrences": 4 - }, - "0x90b831fa3bebf58e9744a14d638e25b4ee06f9bc": { - "address": "0x90b831fa3bebf58e9744a14d638e25b4ee06f9bc", - "symbol": "MIMO", - "decimals": 18, - "name": "MIMO Parallel Governance Token", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x90b831fa3bebf58e9744a14d638e25b4ee06f9bc.png", - "aggregators": ["LiFi", "Socket", "Rubic", "Rango"], - "occurrences": 4 - }, - "0x7b0c06043468469967dba22d1af33d77d44056c8": { - "address": "0x7b0c06043468469967dba22d1af33d77d44056c8", - "symbol": "MRPH", - "decimals": 4, - "name": "MorpheusNetwork", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x7b0c06043468469967dba22d1af33d77d44056c8.png", - "aggregators": ["LiFi", "Socket", "Rubic", "Bancor"], - "occurrences": 4 - }, - "0x1c9b158e71bc274ea5519ca57a73e337cac72b3a": { - "address": "0x1c9b158e71bc274ea5519ca57a73e337cac72b3a", - "symbol": "GROWAI", - "decimals": 18, - "name": "SocialGrowAI", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x1c9b158e71bc274ea5519ca57a73e337cac72b3a.png", - "aggregators": ["Socket", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0x0f719591e2bcb6fcc3e68b16d2a88c89c6ae0d42": { - "address": "0x0f719591e2bcb6fcc3e68b16d2a88c89c6ae0d42", - "symbol": "EVOLVE", - "decimals": 18, - "name": "Evolve Network", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x0f719591e2bcb6fcc3e68b16d2a88c89c6ae0d42.png", - "aggregators": ["Socket", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0x5dbcf33d8c2e976c6b560249878e6f1491bca25c": { - "address": "0x5dbcf33d8c2e976c6b560249878e6f1491bca25c", - "symbol": "YUSD", - "decimals": 18, - "name": "yearn Curve", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x5dbcf33d8c2e976c6b560249878e6f1491bca25c.png", - "aggregators": ["Socket", "Rubic", "Rango", "SushiSwap"], - "occurrences": 4 - }, - "0xe0bceef36f3a6efdd5eebfacd591423f8549b9d5": { - "address": "0xe0bceef36f3a6efdd5eebfacd591423f8549b9d5", - "symbol": "FACTR", - "decimals": 18, - "name": "Defactor", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xe0bceef36f3a6efdd5eebfacd591423f8549b9d5.png", - "aggregators": ["Socket", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0x28cfe98c33b8a8bb5f5ac5068a95d9db6bee5ffd": { - "address": "0x28cfe98c33b8a8bb5f5ac5068a95d9db6bee5ffd", - "symbol": "SOUP", - "decimals": 18, - "name": "soup game", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x28cfe98c33b8a8bb5f5ac5068a95d9db6bee5ffd.png", - "aggregators": ["Socket", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0xa11bd36801d8fa4448f0ac4ea7a62e3634ce8c7c": { - "address": "0xa11bd36801d8fa4448f0ac4ea7a62e3634ce8c7c", - "symbol": "ABR", - "decimals": 18, - "name": "Allbridge", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xa11bd36801d8fa4448f0ac4ea7a62e3634ce8c7c.png", - "aggregators": ["Socket", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0xd98f75b1a3261dab9eed4956c93f33749027a964": { - "address": "0xd98f75b1a3261dab9eed4956c93f33749027a964", - "symbol": "SHR", - "decimals": 2, - "name": "Share", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xd98f75b1a3261dab9eed4956c93f33749027a964.png", - "aggregators": ["Socket", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0x07c8b9deae988726fd443ea8c3c1367f98a31f9c": { - "address": "0x07c8b9deae988726fd443ea8c3c1367f98a31f9c", - "symbol": "BIOHACK", - "decimals": 18, - "name": "BiohackerDAO", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x07c8b9deae988726fd443ea8c3c1367f98a31f9c.png", - "aggregators": ["Socket", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0xddf7d080c82b8048baae54e376a3406572429b4e": { - "address": "0xddf7d080c82b8048baae54e376a3406572429b4e", - "symbol": "OOOOOO", - "decimals": 18, - "name": "GODDOG", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xddf7d080c82b8048baae54e376a3406572429b4e.png", - "aggregators": ["Socket", "Rubic", "Squid", "Rango"], - "occurrences": 4 - }, - "0x784f4004cffdf43d13e490f81bcbd762b60d0e21": { - "address": "0x784f4004cffdf43d13e490f81bcbd762b60d0e21", - "symbol": "AX", - "decimals": 9, - "name": "Axoria", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x784f4004cffdf43d13e490f81bcbd762b60d0e21.png", - "aggregators": ["Socket", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0x6f2ee0e1ebfa00015d3040760f6c039f46b6c662": { - "address": "0x6f2ee0e1ebfa00015d3040760f6c039f46b6c662", - "symbol": "OMNIT", - "decimals": 18, - "name": "OmniTensor", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x6f2ee0e1ebfa00015d3040760f6c039f46b6c662.png", - "aggregators": ["Socket", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0xe021baa5b70c62a9ab2468490d3f8ce0afdd88df": { - "address": "0xe021baa5b70c62a9ab2468490d3f8ce0afdd88df", - "symbol": "SOR", - "decimals": 18, - "name": "Sorra", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xe021baa5b70c62a9ab2468490d3f8ce0afdd88df.png", - "aggregators": ["Socket", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0xbf358f7023d6fd0d11ac284eb47b877c1af635aa": { - "address": "0xbf358f7023d6fd0d11ac284eb47b877c1af635aa", - "symbol": "ARCA", - "decimals": 18, - "name": "ArcheriumAi", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xbf358f7023d6fd0d11ac284eb47b877c1af635aa.png", - "aggregators": ["Socket", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0xb6182b03d9aea18b6b2a0e5e41d99f0f7f2e5ee9": { - "address": "0xb6182b03d9aea18b6b2a0e5e41d99f0f7f2e5ee9", - "symbol": "DEXED", - "decimals": 9, - "name": "DEXED", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xb6182b03d9aea18b6b2a0e5e41d99f0f7f2e5ee9.png", - "aggregators": ["Socket", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0x86b874397ecc811c5d9c1db2d8b68f3425d61a61": { - "address": "0x86b874397ecc811c5d9c1db2d8b68f3425d61a61", - "symbol": "PAUL", - "decimals": 9, - "name": "Paul", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x86b874397ecc811c5d9c1db2d8b68f3425d61a61.png", - "aggregators": ["Socket", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0x5e3d723c0cb363127d4a6ab5d43d504a17a5c05d": { - "address": "0x5e3d723c0cb363127d4a6ab5d43d504a17a5c05d", - "symbol": "ERC-AI", - "decimals": 9, - "name": "Euruka Tech", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x5e3d723c0cb363127d4a6ab5d43d504a17a5c05d.png", - "aggregators": ["Socket", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0x770880c3927e63e31d4b90314f7a37e09fbbf2fd": { - "address": "0x770880c3927e63e31d4b90314f7a37e09fbbf2fd", - "symbol": "EVOAI", - "decimals": 18, - "name": "EvolvAi", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x770880c3927e63e31d4b90314f7a37e09fbbf2fd.png", - "aggregators": ["Socket", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0xcac88fbd9b3fb2b018be2b68e3c55aa90628be6e": { - "address": "0xcac88fbd9b3fb2b018be2b68e3c55aa90628be6e", - "symbol": "ARBX", - "decimals": 9, - "name": "Arbitrax AI", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xcac88fbd9b3fb2b018be2b68e3c55aa90628be6e.png", - "aggregators": ["Socket", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0x3e43efbfa058d351a926fc611e997f2338adc2a4": { - "address": "0x3e43efbfa058d351a926fc611e997f2338adc2a4", - "symbol": "ORI", - "decimals": 9, - "name": "Origent Ai", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x3e43efbfa058d351a926fc611e997f2338adc2a4.png", - "aggregators": ["Socket", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0xb28a3778e1a78a8c327693516ed4f5b11db41306": { - "address": "0xb28a3778e1a78a8c327693516ed4f5b11db41306", - "symbol": "CTRL", - "decimals": 9, - "name": "AltCTRL", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xb28a3778e1a78a8c327693516ed4f5b11db41306.png", - "aggregators": ["Socket", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0x95ad53e32942c0cf9fd60208964782af8bedb709": { - "address": "0x95ad53e32942c0cf9fd60208964782af8bedb709", - "symbol": "KUMA", - "decimals": 9, - "name": "Kuma", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x95ad53e32942c0cf9fd60208964782af8bedb709.png", - "aggregators": ["Socket", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0x782f97c02c6ace8a3677c4a4c495d048ad67dba2": { - "address": "0x782f97c02c6ace8a3677c4a4c495d048ad67dba2", - "symbol": "LENS", - "decimals": 18, - "name": "Social Lens Ai", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x782f97c02c6ace8a3677c4a4c495d048ad67dba2.png", - "aggregators": ["Socket", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0xd8a2f109bec88d9c9df6f4958c3301bd9d1929fd": { - "address": "0xd8a2f109bec88d9c9df6f4958c3301bd9d1929fd", - "symbol": "CLX", - "decimals": 9, - "name": "CloneX AI", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xd8a2f109bec88d9c9df6f4958c3301bd9d1929fd.png", - "aggregators": ["Socket", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0x5c2d8b2c6c0289aa514f42e0b5423f20b99177ac": { - "address": "0x5c2d8b2c6c0289aa514f42e0b5423f20b99177ac", - "symbol": "MEGA", - "decimals": 18, - "name": "MEGAonEth", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x5c2d8b2c6c0289aa514f42e0b5423f20b99177ac.png", - "aggregators": ["Socket", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0xa579472f17b6e1b6c5ded2a785067a89ec536ce8": { - "address": "0xa579472f17b6e1b6c5ded2a785067a89ec536ce8", - "symbol": "ADDON", - "decimals": 18, - "name": "AddOn Ai", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xa579472f17b6e1b6c5ded2a785067a89ec536ce8.png", - "aggregators": ["Socket", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0x6aaeb26b663e37c4d0c995758c69d5e54bbe9984": { - "address": "0x6aaeb26b663e37c4d0c995758c69d5e54bbe9984", - "symbol": "ONAI", - "decimals": 18, - "name": "Onchain AI", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x6aaeb26b663e37c4d0c995758c69d5e54bbe9984.png", - "aggregators": ["Socket", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0x2893a91b29b80ab62deffff6eb135f32dda8e1d3": { - "address": "0x2893a91b29b80ab62deffff6eb135f32dda8e1d3", - "symbol": "FAI", - "decimals": 18, - "name": "FORTIFY AI", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x2893a91b29b80ab62deffff6eb135f32dda8e1d3.png", - "aggregators": ["Socket", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0xb5274d9f803b4b15607c6e180ef8f68fe990f73b": { - "address": "0xb5274d9f803b4b15607c6e180ef8f68fe990f73b", - "symbol": "VOX", - "decimals": 9, - "name": "Neuravox", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xb5274d9f803b4b15607c6e180ef8f68fe990f73b.png", - "aggregators": ["Socket", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0x9d409a0a012cfba9b15f6d4b36ac57a46966ab9a": { - "address": "0x9d409a0a012cfba9b15f6d4b36ac57a46966ab9a", - "symbol": "YVBOOST", - "decimals": 18, - "name": "Yearn Compounding veCRV yVault", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x9d409a0a012cfba9b15f6d4b36ac57a46966ab9a.png", - "aggregators": ["Rubic", "Rango", "Sonarwatch", "SushiSwap"], - "occurrences": 4 - }, - "0xb1f66997a5760428d3a87d68b90bfe0ae64121cc": { - "address": "0xb1f66997a5760428d3a87d68b90bfe0ae64121cc", - "symbol": "LUA", - "decimals": 18, - "name": "LuaToken", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xb1f66997a5760428d3a87d68b90bfe0ae64121cc.png", - "aggregators": ["CoinMarketCap", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x2c4e8f2d746113d0696ce89b35f0d8bf88e0aeca": { - "address": "0x2c4e8f2d746113d0696ce89b35f0d8bf88e0aeca", - "symbol": "OST", - "decimals": 18, - "name": "Open Simple Token", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x2c4e8f2d746113d0696ce89b35f0d8bf88e0aeca.png", - "aggregators": ["Metamask", "Rubic", "Rango"], - "occurrences": 3 - }, - "0xa1afffe3f4d611d252010e3eaf6f4d77088b0cd7": { - "address": "0xa1afffe3f4d611d252010e3eaf6f4d77088b0cd7", - "symbol": "RFI", - "decimals": 9, - "name": "Reflect Finance", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xa1afffe3f4d611d252010e3eaf6f4d77088b0cd7.png", - "aggregators": ["Metamask", "Socket", "Rubic"], - "occurrences": 3 - }, - "0x17c50d62e6e8d20d2dc18e9ad79c43263d0720d9": { - "address": "0x17c50d62e6e8d20d2dc18e9ad79c43263d0720d9", - "symbol": "NFAI", - "decimals": 18, - "name": "Not Financial Advice", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x17c50d62e6e8d20d2dc18e9ad79c43263d0720d9.png", - "aggregators": ["CoinMarketCap", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x9bf1d7d63dd7a4ce167cf4866388226eeefa702e": { - "address": "0x9bf1d7d63dd7a4ce167cf4866388226eeefa702e", - "symbol": "BEN", - "decimals": 18, - "name": "Ben Coin", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x9bf1d7d63dd7a4ce167cf4866388226eeefa702e.png", - "aggregators": ["Metamask", "Rubic", "Rango"], - "occurrences": 3 - }, - "0xd979c468a68062e7bdff4ba6df7842dfd3492e0f": { - "address": "0xd979c468a68062e7bdff4ba6df7842dfd3492e0f", - "symbol": "BBL", - "decimals": 18, - "name": "Beoble", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xd979c468a68062e7bdff4ba6df7842dfd3492e0f.png", - "aggregators": ["CoinMarketCap", "Rubic", "Sonarwatch"], - "occurrences": 3 - }, - "0xcdb4a8742ed7d0259b51e3454c46c9d6c48d5e88": { - "address": "0xcdb4a8742ed7d0259b51e3454c46c9d6c48d5e88", - "symbol": "GPT", - "decimals": 18, - "name": "GPT Protocol", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xcdb4a8742ed7d0259b51e3454c46c9d6c48d5e88.png", - "aggregators": ["CoinMarketCap", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x15d4c048f83bd7e37d49ea4c83a07267ec4203da": { - "address": "0x15d4c048f83bd7e37d49ea4c83a07267ec4203da", - "symbol": "GALA", - "decimals": 8, - "name": "Gala", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x15d4c048f83bd7e37d49ea4c83a07267ec4203da.png", - "aggregators": ["Metamask", "Socket", "Rubic"], - "occurrences": 3 - }, - "0xedadeb5faa413e6c8623461849dfd0b7c3790c32": { - "address": "0xedadeb5faa413e6c8623461849dfd0b7c3790c32", - "symbol": "OBOT", - "decimals": 18, - "name": "OBORTECH", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xedadeb5faa413e6c8623461849dfd0b7c3790c32.png", - "aggregators": ["LiFi", "Rubic", "Rango"], - "occurrences": 3 - }, - "0xd9ec3ff1f8be459bb9369b4e79e9ebcf7141c093": { - "address": "0xd9ec3ff1f8be459bb9369b4e79e9ebcf7141c093", - "symbol": "KAI", - "decimals": 18, - "name": "KardiaChain Token", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xd9ec3ff1f8be459bb9369b4e79e9ebcf7141c093.png", - "aggregators": ["LiFi", "Socket", "Rubic"], - "occurrences": 3 - }, - "0xc82e3db60a52cf7529253b4ec688f631aad9e7c2": { - "address": "0xc82e3db60a52cf7529253b4ec688f631aad9e7c2", - "symbol": "ARC", - "decimals": 18, - "name": "Arc", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xc82e3db60a52cf7529253b4ec688f631aad9e7c2.png", - "aggregators": ["Socket", "Rubic", "Sonarwatch"], - "occurrences": 3 - }, - "0x672f4fa517894496b8a958b4b3fca068ce513a39": { - "address": "0x672f4fa517894496b8a958b4b3fca068ce513a39", - "symbol": "DCK", - "decimals": 18, - "name": "DexCheck AI", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x672f4fa517894496b8a958b4b3fca068ce513a39.png", - "aggregators": ["Rubic", "Rango", "Sonarwatch"], - "occurrences": 3 - }, - "0xb4357054c3da8d46ed642383f03139ac7f090343": { - "address": "0xb4357054c3da8d46ed642383f03139ac7f090343", - "symbol": "PORT3", - "decimals": 18, - "name": "Port3 Network", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xb4357054c3da8d46ed642383f03139ac7f090343.png", - "aggregators": ["Rubic", "Rango", "Sonarwatch"], - "occurrences": 3 - }, - "0x560363bda52bc6a44ca6c8c9b4a5fadbda32fa60": { - "address": "0x560363bda52bc6a44ca6c8c9b4a5fadbda32fa60", - "symbol": "SFUND", - "decimals": 18, - "name": "Seedify fund", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x560363bda52bc6a44ca6c8c9b4a5fadbda32fa60.png", - "aggregators": ["Rubic", "Rango", "Sonarwatch"], - "occurrences": 3 - }, - "0x1a2eb478fa07125c9935a77b3c03a82470801e30": { - "address": "0x1a2eb478fa07125c9935a77b3c03a82470801e30", - "symbol": "AMO", - "decimals": 18, - "name": "Amino OLD", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x1a2eb478fa07125c9935a77b3c03a82470801e30.png", - "aggregators": ["Rubic", "Rango", "Sonarwatch"], - "occurrences": 3 - }, - "0xcb1592591996765ec0efc1f92599a19767ee5ffa": { - "address": "0xcb1592591996765ec0efc1f92599a19767ee5ffa", - "symbol": "BIO", - "decimals": 18, - "name": "Bio Protocol", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xcb1592591996765ec0efc1f92599a19767ee5ffa.png", - "aggregators": [ - "CoinMarketCap", - "1inch", - "LiFi", - "Socket", - "Rubic", - "Squid", - "Rango", - "Sonarwatch" - ], - "occurrences": 8 - }, - "0x4d5f47fa6a74757f35c14fd3a6ef8e3c9bc514e8": { - "address": "0x4d5f47fa6a74757f35c14fd3a6ef8e3c9bc514e8", - "symbol": "AWETH", - "decimals": 18, - "name": "Aave v3 WETH", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x4d5f47fa6a74757f35c14fd3a6ef8e3c9bc514e8.png", - "aggregators": [ - "CoinMarketCap", - "1inch", - "LiFi", - "Socket", - "Rubic", - "Squid", - "Rango", - "Sonarwatch" - ], - "occurrences": 8 - }, - "0x5a3e6a77ba2f983ec0d371ea3b475f8bc0811ad5": { - "address": "0x5a3e6a77ba2f983ec0d371ea3b475f8bc0811ad5", - "symbol": "0X0", - "decimals": 9, - "name": "0x0 ai AI Smart Contract", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x5a3e6a77ba2f983ec0d371ea3b475f8bc0811ad5.png", - "aggregators": [ - "CoinMarketCap", - "1inch", - "LiFi", - "Socket", - "Rubic", - "Squid", - "Rango", - "Sonarwatch" - ], - "occurrences": 8 - }, - "0xb90b2a35c65dbc466b04240097ca756ad2005295": { - "address": "0xb90b2a35c65dbc466b04240097ca756ad2005295", - "symbol": "BOBO", - "decimals": 18, - "name": "BOBO", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xb90b2a35c65dbc466b04240097ca756ad2005295.png", - "aggregators": [ - "CoinMarketCap", - "1inch", - "LiFi", - "Socket", - "Rubic", - "Rango", - "Sonarwatch", - "SushiSwap" - ], - "occurrences": 8 - }, - "0x98c23e9d8f34fefb1b7bd6a91b7ff122f4e16f5c": { - "address": "0x98c23e9d8f34fefb1b7bd6a91b7ff122f4e16f5c", - "symbol": "AUSDC", - "decimals": 6, - "name": "Aave v3 USDC", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x98c23e9d8f34fefb1b7bd6a91b7ff122f4e16f5c.png", - "aggregators": [ - "Metamask", - "1inch", - "LiFi", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 7 - }, - "0x031b8d752d73d7fe9678acef26e818280d0646b4": { - "address": "0x031b8d752d73d7fe9678acef26e818280d0646b4", - "symbol": "SOVRN", - "decimals": 18, - "name": "Sovrun", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x031b8d752d73d7fe9678acef26e818280d0646b4.png", - "aggregators": [ - "CoinMarketCap", - "LiFi", - "Socket", - "Rubic", - "Squid", - "Rango", - "Sonarwatch" - ], - "occurrences": 7 - }, - "0x5c147e74d63b1d31aa3fd78eb229b65161983b2b": { - "address": "0x5c147e74d63b1d31aa3fd78eb229b65161983b2b", - "symbol": "WFLOW", - "decimals": 18, - "name": "Wrapped Flow", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x5c147e74d63b1d31aa3fd78eb229b65161983b2b.png", - "aggregators": [ - "CoinMarketCap", - "1inch", - "LiFi", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 7 - }, - "0x5ee5bf7ae06d1be5997a1a72006fe6c607ec6de8": { - "address": "0x5ee5bf7ae06d1be5997a1a72006fe6c607ec6de8", - "symbol": "AWBTC", - "decimals": 8, - "name": "Aave v3 WBTC", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x5ee5bf7ae06d1be5997a1a72006fe6c607ec6de8.png", - "aggregators": [ - "CoinGecko", - "1inch", - "LiFi", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 7 - }, - "0x23878914efe38d27c4d67ab83ed1b93a74d4086a": { - "address": "0x23878914efe38d27c4d67ab83ed1b93a74d4086a", - "symbol": "AUSDT", - "decimals": 6, - "name": "Aave v3 USDT", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x23878914efe38d27c4d67ab83ed1b93a74d4086a.png", - "aggregators": [ - "Metamask", - "1inch", - "LiFi", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 7 - }, - "0xcc9ee9483f662091a1de4795249e24ac0ac2630f": { - "address": "0xcc9ee9483f662091a1de4795249e24ac0ac2630f", - "symbol": "ARETH", - "decimals": 18, - "name": "Aave v3 rETH", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xcc9ee9483f662091a1de4795249e24ac0ac2630f.png", - "aggregators": [ - "CoinGecko", - "1inch", - "LiFi", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 7 - }, - "0x018008bfb33d285247a21d44e50697654f754e63": { - "address": "0x018008bfb33d285247a21d44e50697654f754e63", - "symbol": "ADAI", - "decimals": 18, - "name": "Aave v3 DAI", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x018008bfb33d285247a21d44e50697654f754e63.png", - "aggregators": [ - "Metamask", - "1inch", - "LiFi", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 7 - }, - "0xf6d2224916ddfbbab6e6bd0d1b7034f4ae0cab18": { - "address": "0xf6d2224916ddfbbab6e6bd0d1b7034f4ae0cab18", - "symbol": "AUNI", - "decimals": 18, - "name": "Aave v3 UNI", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xf6d2224916ddfbbab6e6bd0d1b7034f4ae0cab18.png", - "aggregators": [ - "CoinGecko", - "1inch", - "LiFi", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 7 - }, - "0x9a44fd41566876a39655f74971a3a6ea0a17a454": { - "address": "0x9a44fd41566876a39655f74971a3a6ea0a17a454", - "symbol": "ALDO", - "decimals": 18, - "name": "Aave v3 LDO", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x9a44fd41566876a39655f74971a3a6ea0a17a454.png", - "aggregators": [ - "CoinGecko", - "1inch", - "LiFi", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 7 - }, - "0x7b95ec873268a6bfc6427e7a28e396db9d0ebc65": { - "address": "0x7b95ec873268a6bfc6427e7a28e396db9d0ebc65", - "symbol": "ACRV", - "decimals": 18, - "name": "Aave v3 CRV", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x7b95ec873268a6bfc6427e7a28e396db9d0ebc65.png", - "aggregators": [ - "CoinGecko", - "1inch", - "LiFi", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 7 - }, - "0xc7b4c17861357b8abb91f25581e7263e08dcb59c": { - "address": "0xc7b4c17861357b8abb91f25581e7263e08dcb59c", - "symbol": "ASNX", - "decimals": 18, - "name": "Aave v3 SNX", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xc7b4c17861357b8abb91f25581e7263e08dcb59c.png", - "aggregators": [ - "CoinGecko", - "1inch", - "LiFi", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 7 - }, - "0x2516e7b3f76294e03c42aa4c5b5b4dce9c436fb8": { - "address": "0x2516e7b3f76294e03c42aa4c5b5b4dce9c436fb8", - "symbol": "ABAL", - "decimals": 18, - "name": "Aave v3 BAL", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x2516e7b3f76294e03c42aa4c5b5b4dce9c436fb8.png", - "aggregators": [ - "CoinGecko", - "1inch", - "LiFi", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 7 - }, - "0xd4e245848d6e1220dbe62e155d89fa327e43cb06": { - "address": "0xd4e245848d6e1220dbe62e155d89fa327e43cb06", - "symbol": "AFRAX", - "decimals": 18, - "name": "Aave v3 FRAX", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xd4e245848d6e1220dbe62e155d89fa327e43cb06.png", - "aggregators": [ - "CoinGecko", - "1inch", - "LiFi", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 7 - }, - "0x71aef7b30728b9bb371578f36c5a1f1502a5723e": { - "address": "0x71aef7b30728b9bb371578f36c5a1f1502a5723e", - "symbol": "A1INCH", - "decimals": 18, - "name": "Aave v3 1INCH", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x71aef7b30728b9bb371578f36c5a1f1502a5723e.png", - "aggregators": [ - "CoinGecko", - "1inch", - "LiFi", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 7 - }, - "0x545bd6c032efdde65a377a6719def2796c8e0f2e": { - "address": "0x545bd6c032efdde65a377a6719def2796c8e0f2e", - "symbol": "AENS", - "decimals": 18, - "name": "Aave v3 ENS", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x545bd6c032efdde65a377a6719def2796c8e0f2e.png", - "aggregators": [ - "CoinGecko", - "1inch", - "LiFi", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 7 - }, - "0xb76cf92076adbf1d9c39294fa8e7a67579fde357": { - "address": "0xb76cf92076adbf1d9c39294fa8e7a67579fde357", - "symbol": "ARPL", - "decimals": 18, - "name": "Aave v3 RPL", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xb76cf92076adbf1d9c39294fa8e7a67579fde357.png", - "aggregators": [ - "CoinGecko", - "1inch", - "LiFi", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 7 - }, - "0xa700b4eb416be35b2911fd5dee80678ff64ff6c9": { - "address": "0xa700b4eb416be35b2911fd5dee80678ff64ff6c9", - "symbol": "AAAVE", - "decimals": 18, - "name": "Aave v3 AAVE", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xa700b4eb416be35b2911fd5dee80678ff64ff6c9.png", - "aggregators": [ - "CoinGecko", - "1inch", - "LiFi", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 7 - }, - "0xe063f04f280c60aeca68b38341c2eecbec703ae2": { - "address": "0xe063f04f280c60aeca68b38341c2eecbec703ae2", - "symbol": "XETH", - "decimals": 18, - "name": "f x Protocol Leveraged ETH", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xe063f04f280c60aeca68b38341c2eecbec703ae2.png", - "aggregators": [ - "CoinGecko", - "1inch", - "LiFi", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 7 - }, - "0x02e7f808990638e9e67e1f00313037ede2362361": { - "address": "0x02e7f808990638e9e67e1f00313037ede2362361", - "symbol": "KIBSHI", - "decimals": 18, - "name": "KiboShib", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x02e7f808990638e9e67e1f00313037ede2362361.png", - "aggregators": [ - "CoinMarketCap", - "1inch", - "Socket", - "Rubic", - "Squid", - "Rango", - "Sonarwatch" - ], - "occurrences": 7 - }, - "0x4c612e3b15b96ff9a6faed838f8d07d479a8dd4c": { - "address": "0x4c612e3b15b96ff9a6faed838f8d07d479a8dd4c", - "symbol": "ASDAI", - "decimals": 18, - "name": "Aave v3 sDAI", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x4c612e3b15b96ff9a6faed838f8d07d479a8dd4c.png", - "aggregators": [ - "CoinGecko", - "1inch", - "LiFi", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 7 - }, - "0x5e8c8a7243651db1384c0ddfdbe39761e8e7e51a": { - "address": "0x5e8c8a7243651db1384c0ddfdbe39761e8e7e51a", - "symbol": "ALINK", - "decimals": 18, - "name": "Aave v3 LINK", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x5e8c8a7243651db1384c0ddfdbe39761e8e7e51a.png", - "aggregators": [ - "CoinGecko", - "1inch", - "LiFi", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 7 - }, - "0xd2af830e8cbdfed6cc11bab697bb25496ed6fa62": { - "address": "0xd2af830e8cbdfed6cc11bab697bb25496ed6fa62", - "symbol": "WOUSD", - "decimals": 18, - "name": "Wrapped OUSD", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xd2af830e8cbdfed6cc11bab697bb25496ed6fa62.png", - "aggregators": [ - "CoinMarketCap", - "1inch", - "LiFi", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 7 - }, - "0xf3b9569f82b18aef890de263b84189bd33ebe452": { - "address": "0xf3b9569f82b18aef890de263b84189bd33ebe452", - "symbol": "CAW", - "decimals": 18, - "name": "A Hunters Dream", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xf3b9569f82b18aef890de263b84189bd33ebe452.png", - "aggregators": [ - "CoinGecko", - "1inch", - "Socket", - "Rubic", - "Squid", - "Rango", - "Sonarwatch" - ], - "occurrences": 7 - }, - "0x657e8c867d8b37dcc18fa4caead9c45eb088c642": { - "address": "0x657e8c867d8b37dcc18fa4caead9c45eb088c642", - "symbol": "EBTC", - "decimals": 8, - "name": "ether.fi Staked BTC", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x657e8c867d8b37dcc18fa4caead9c45eb088c642.png", - "aggregators": [ - "Metamask", - "LiFi", - "Socket", - "Rubic", - "Squid", - "Rango", - "Sonarwatch" - ], - "occurrences": 7 - }, - "0xbe1a001fe942f96eea22ba08783140b9dcc09d28": { - "address": "0xbe1a001fe942f96eea22ba08783140b9dcc09d28", - "symbol": "BETA", - "decimals": 18, - "name": "Beta Finance", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xbe1a001fe942f96eea22ba08783140b9dcc09d28.png", - "aggregators": [ - "CoinMarketCap", - "LiFi", - "Socket", - "Rubic", - "Squid", - "Rango", - "Sonarwatch" - ], - "occurrences": 7 - }, - "0x3fe6a295459fae07df8a0cecc36f37160fe86aa9": { - "address": "0x3fe6a295459fae07df8a0cecc36f37160fe86aa9", - "symbol": "ALUSD", - "decimals": 18, - "name": "Aave v3 LUSD", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x3fe6a295459fae07df8a0cecc36f37160fe86aa9.png", - "aggregators": [ - "CoinGecko", - "1inch", - "LiFi", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 7 - }, - "0x1151cb3d861920e07a38e03eead12c32178567f6": { - "address": "0x1151cb3d861920e07a38e03eead12c32178567f6", - "symbol": "BONK", - "decimals": 5, - "name": "Bonk", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x1151cb3d861920e07a38e03eead12c32178567f6.png", - "aggregators": [ - "CoinMarketCap", - "1inch", - "Socket", - "Rubic", - "Squid", - "Rango", - "Sonarwatch" - ], - "occurrences": 7 - }, - "0x977b6fc5de62598b08c85ac8cf2b745874e8b78c": { - "address": "0x977b6fc5de62598b08c85ac8cf2b745874e8b78c", - "symbol": "ACBETH", - "decimals": 18, - "name": "Aave v3 cbETH", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x977b6fc5de62598b08c85ac8cf2b745874e8b78c.png", - "aggregators": [ - "CoinGecko", - "1inch", - "LiFi", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 7 - }, - "0xcbb8f1bda10b9696c57e13bc128fe674769dcec0": { - "address": "0xcbb8f1bda10b9696c57e13bc128fe674769dcec0", - "symbol": "MOR", - "decimals": 18, - "name": "MorpheusAI", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xcbb8f1bda10b9696c57e13bc128fe674769dcec0.png", - "aggregators": [ - "CoinMarketCap", - "LiFi", - "Socket", - "Rubic", - "Squid", - "Rango", - "Sonarwatch" - ], - "occurrences": 7 - }, - "0xac57de9c1a09fec648e93eb98875b212db0d460b": { - "address": "0xac57de9c1a09fec648e93eb98875b212db0d460b", - "symbol": "BABYDOGE", - "decimals": 9, - "name": "Baby Doge Coin", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xac57de9c1a09fec648e93eb98875b212db0d460b.png", - "aggregators": [ - "CoinMarketCap", - "1inch", - "Socket", - "Rubic", - "Squid", - "Rango", - "Sonarwatch" - ], - "occurrences": 7 - }, - "0x50327c6c5a14dcade707abad2e27eb517df87ab5": { - "address": "0x50327c6c5a14dcade707abad2e27eb517df87ab5", - "symbol": "TRX", - "decimals": 6, - "name": "TRON", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x50327c6c5a14dcade707abad2e27eb517df87ab5.png", - "aggregators": [ - "CoinMarketCap", - "LiFi", - "Socket", - "Rubic", - "Rango", - "Sonarwatch", - "SushiSwap" - ], - "occurrences": 7 - }, - "0x9d79d5b61de59d882ce90125b18f74af650acb93": { - "address": "0x9d79d5b61de59d882ce90125b18f74af650acb93", - "symbol": "NSBT", - "decimals": 6, - "name": "Neutrino System Base Token", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x9d79d5b61de59d882ce90125b18f74af650acb93.png", - "aggregators": [ - "CoinMarketCap", - "LiFi", - "Socket", - "Rubic", - "Rango", - "Sonarwatch", - "SushiSwap" - ], - "occurrences": 7 - }, - "0x1456688345527be1f37e9e627da0837d6f08c925": { - "address": "0x1456688345527be1f37e9e627da0837d6f08c925", - "symbol": "USDP", - "decimals": 18, - "name": "USDP Stablecoin", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x1456688345527be1f37e9e627da0837d6f08c925.png", - "aggregators": [ - "CoinMarketCap", - "1inch", - "LiFi", - "Socket", - "Rubic", - "Rango", - "SushiSwap" - ], - "occurrences": 7 - }, - "0x0e573ce2736dd9637a0b21058352e1667925c7a8": { - "address": "0x0e573ce2736dd9637a0b21058352e1667925c7a8", - "symbol": "USDV", - "decimals": 6, - "name": "USDV", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x0e573ce2736dd9637a0b21058352e1667925c7a8.png", - "aggregators": [ - "CoinMarketCap", - "LiFi", - "Socket", - "Rubic", - "Rango", - "Sonarwatch", - "SushiSwap" - ], - "occurrences": 7 - }, - "0x081131434f93063751813c619ecca9c4dc7862a3": { - "address": "0x081131434f93063751813c619ecca9c4dc7862a3", - "symbol": "DAR", - "decimals": 6, - "name": "Mines of Dalarnia", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x081131434f93063751813c619ecca9c4dc7862a3.png", - "aggregators": [ - "CoinGecko", - "LiFi", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 6 - }, - "0xb1d1eae60eea9525032a6dcb4c1ce336a1de71be": { - "address": "0xb1d1eae60eea9525032a6dcb4c1ce336a1de71be", - "symbol": "DRV", - "decimals": 18, - "name": "Derive", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xb1d1eae60eea9525032a6dcb4c1ce336a1de71be.png", - "aggregators": [ - "CoinMarketCap", - "LiFi", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 6 - }, - "0x5faa989af96af85384b8a938c2ede4a7378d9875": { - "address": "0x5faa989af96af85384b8a938c2ede4a7378d9875", - "symbol": "GAL", - "decimals": 18, - "name": "GAL migrated to Gravity G", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x5faa989af96af85384b8a938c2ede4a7378d9875.png", - "aggregators": [ - "CoinGecko", - "LiFi", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 6 - }, - "0xae788f80f2756a86aa2f410c651f2af83639b95b": { - "address": "0xae788f80f2756a86aa2f410c651f2af83639b95b", - "symbol": "MV", - "decimals": 18, - "name": "GensoKishi Metaverse", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xae788f80f2756a86aa2f410c651f2af83639b95b.png", - "aggregators": [ - "CoinMarketCap", - "LiFi", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 6 - }, - "0x431d5dff03120afa4bdf332c61a6e1766ef37bdb": { - "address": "0x431d5dff03120afa4bdf332c61a6e1766ef37bdb", - "symbol": "JPYC", - "decimals": 18, - "name": "JPY Coin", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x431d5dff03120afa4bdf332c61a6e1766ef37bdb.png", - "aggregators": [ - "CoinMarketCap", - "LiFi", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 6 - }, - "0xbe428c3867f05dea2a89fc76a102b544eac7f772": { - "address": "0xbe428c3867f05dea2a89fc76a102b544eac7f772", - "symbol": "CVT", - "decimals": 18, - "name": "CyberVein", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xbe428c3867f05dea2a89fc76a102b544eac7f772.png", - "aggregators": [ - "CoinMarketCap", - "LiFi", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 6 - }, - "0x6e98e5401adcb0d76f4debfc3d794b3031f48790": { - "address": "0x6e98e5401adcb0d76f4debfc3d794b3031f48790", - "symbol": "AUR", - "decimals": 18, - "name": "Aurix", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x6e98e5401adcb0d76f4debfc3d794b3031f48790.png", - "aggregators": [ - "CoinMarketCap", - "LiFi", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 6 - }, - "0xc52fafdc900cb92ae01e6e4f8979af7f436e2eb2": { - "address": "0xc52fafdc900cb92ae01e6e4f8979af7f436e2eb2", - "symbol": "SEXY", - "decimals": 18, - "name": "Settled ETHXY Token", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xc52fafdc900cb92ae01e6e4f8979af7f436e2eb2.png", - "aggregators": [ - "CoinMarketCap", - "Socket", - "Rubic", - "Rango", - "Sonarwatch", - "SushiSwap" - ], - "occurrences": 6 - }, - "0x97a9bac06f90940bce9caec2b880ff17707519e4": { - "address": "0x97a9bac06f90940bce9caec2b880ff17707519e4", - "symbol": "MNTO", - "decimals": 18, - "name": "Minato", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x97a9bac06f90940bce9caec2b880ff17707519e4.png", - "aggregators": [ - "CoinMarketCap", - "LiFi", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 6 - }, - "0x217ddead61a42369a266f1fb754eb5d3ebadc88a": { - "address": "0x217ddead61a42369a266f1fb754eb5d3ebadc88a", - "symbol": "DON", - "decimals": 18, - "name": "Don key", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x217ddead61a42369a266f1fb754eb5d3ebadc88a.png", - "aggregators": [ - "CoinMarketCap", - "LiFi", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 6 - }, - "0x6c3fe25a4de7fa243c653cfe1f165bf11d99704e": { - "address": "0x6c3fe25a4de7fa243c653cfe1f165bf11d99704e", - "symbol": "HILO", - "decimals": 18, - "name": "Hilo", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x6c3fe25a4de7fa243c653cfe1f165bf11d99704e.png", - "aggregators": [ - "CoinMarketCap", - "LiFi", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 6 - }, - "0x7122985656e38bdc0302db86685bb972b145bd3c": { - "address": "0x7122985656e38bdc0302db86685bb972b145bd3c", - "symbol": "STONE", - "decimals": 18, - "name": "StakeStone ETH", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x7122985656e38bdc0302db86685bb972b145bd3c.png", - "aggregators": [ - "CoinGecko", - "LiFi", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 6 - }, - "0xeabb8996ea1662cad2f7fb715127852cd3262ae9": { - "address": "0xeabb8996ea1662cad2f7fb715127852cd3262ae9", - "symbol": "CNFI", - "decimals": 18, - "name": "Connect Financial", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xeabb8996ea1662cad2f7fb715127852cd3262ae9.png", - "aggregators": [ - "CoinMarketCap", - "LiFi", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 6 - }, - "0x5833dbb0749887174b254ba4a5df747ff523a905": { - "address": "0x5833dbb0749887174b254ba4a5df747ff523a905", - "symbol": "XRUN", - "decimals": 18, - "name": "XRun", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x5833dbb0749887174b254ba4a5df747ff523a905.png", - "aggregators": [ - "CoinGecko", - "LiFi", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 6 - }, - "0x3d26dcd840fcc8e4b2193ace8a092e4a65832f9f": { - "address": "0x3d26dcd840fcc8e4b2193ace8a092e4a65832f9f", - "symbol": "AAMMUNIUNIWETH", - "decimals": 18, - "name": "Aave AMM UniUNIWETH", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x3d26dcd840fcc8e4b2193ace8a092e4a65832f9f.png", - "aggregators": [ - "CoinGecko", - "LiFi", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 6 - }, - "0xe0a189c975e4928222978a74517442239a0b86ff": { - "address": "0xe0a189c975e4928222978a74517442239a0b86ff", - "symbol": "KEYS", - "decimals": 9, - "name": "Keys", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xe0a189c975e4928222978a74517442239a0b86ff.png", - "aggregators": [ - "CoinMarketCap", - "1inch", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 6 - }, - "0xee06a81a695750e71a662b51066f2c74cf4478a0": { - "address": "0xee06a81a695750e71a662b51066f2c74cf4478a0", - "symbol": "DG", - "decimals": 18, - "name": "decentral.games", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xee06a81a695750e71a662b51066f2c74cf4478a0.png", - "aggregators": [ - "CoinGecko", - "LiFi", - "Rubic", - "Rango", - "Sonarwatch", - "SushiSwap" - ], - "occurrences": 6 - }, - "0x7ce89243cc0d9e746609c57845eccbd9bb4b7315": { - "address": "0x7ce89243cc0d9e746609c57845eccbd9bb4b7315", - "symbol": "LILY", - "decimals": 18, - "name": "Lily s Coin", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x7ce89243cc0d9e746609c57845eccbd9bb4b7315.png", - "aggregators": [ - "CoinMarketCap", - "LiFi", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 6 - }, - "0xe03b2642a5111ad0efc0cbce766498c2dd562ae9": { - "address": "0xe03b2642a5111ad0efc0cbce766498c2dd562ae9", - "symbol": "BC", - "decimals": 9, - "name": "Old Bitcoin", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xe03b2642a5111ad0efc0cbce766498c2dd562ae9.png", - "aggregators": [ - "CoinMarketCap", - "LiFi", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 6 - }, - "0x2653891204f463fb2a2f4f412564b19e955166ae": { - "address": "0x2653891204f463fb2a2f4f412564b19e955166ae", - "symbol": "NGL", - "decimals": 18, - "name": "Gold Fever Native Gold", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x2653891204f463fb2a2f4f412564b19e955166ae.png", - "aggregators": [ - "CoinMarketCap", - "LiFi", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 6 - }, - "0xbe9f61555f50dd6167f2772e9cf7519790d96624": { - "address": "0xbe9f61555f50dd6167f2772e9cf7519790d96624", - "symbol": "SX", - "decimals": 18, - "name": "SX Network", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xbe9f61555f50dd6167f2772e9cf7519790d96624.png", - "aggregators": [ - "CoinMarketCap", - "LiFi", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 6 - }, - "0x4b1d0b9f081468d780ca1d5d79132b64301085d1": { - "address": "0x4b1d0b9f081468d780ca1d5d79132b64301085d1", - "symbol": "LMR", - "decimals": 8, - "name": "Lumerin", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x4b1d0b9f081468d780ca1d5d79132b64301085d1.png", - "aggregators": [ - "CoinMarketCap", - "LiFi", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 6 - }, - "0xf1b99e3e573a1a9c5e6b2ce818b617f0e664e86b": { - "address": "0xf1b99e3e573a1a9c5e6b2ce818b617f0e664e86b", - "symbol": "OSQTH", - "decimals": 18, - "name": "Opyn Squeeth", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xf1b99e3e573a1a9c5e6b2ce818b617f0e664e86b.png", - "aggregators": [ - "CoinMarketCap", - "LiFi", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 6 - }, - "0x721a1b990699ee9d90b6327faad0a3e840ae8335": { - "address": "0x721a1b990699ee9d90b6327faad0a3e840ae8335", - "symbol": "LOOT", - "decimals": 18, - "name": "Lootex", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x721a1b990699ee9d90b6327faad0a3e840ae8335.png", - "aggregators": [ - "CoinMarketCap", - "LiFi", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 6 - }, - "0xb90cb79b72eb10c39cbdf86e50b1c89f6a235f2e": { - "address": "0xb90cb79b72eb10c39cbdf86e50b1c89f6a235f2e", - "symbol": "AUDT", - "decimals": 18, - "name": "Auditchain", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xb90cb79b72eb10c39cbdf86e50b1c89f6a235f2e.png", - "aggregators": [ - "CoinMarketCap", - "LiFi", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 6 - }, - "0x8503a7b00b4b52692cc6c14e5b96f142e30547b7": { - "address": "0x8503a7b00b4b52692cc6c14e5b96f142e30547b7", - "symbol": "MEED", - "decimals": 18, - "name": "Meeds DAO", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x8503a7b00b4b52692cc6c14e5b96f142e30547b7.png", - "aggregators": [ - "CoinMarketCap", - "LiFi", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 6 - }, - "0x9e5bd9d9fad182ff0a93ba8085b664bcab00fa68": { - "address": "0x9e5bd9d9fad182ff0a93ba8085b664bcab00fa68", - "symbol": "DINGER", - "decimals": 9, - "name": "Dinger", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x9e5bd9d9fad182ff0a93ba8085b664bcab00fa68.png", - "aggregators": [ - "CoinMarketCap", - "1inch", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 6 - }, - "0x427a03fb96d9a94a6727fbcfbba143444090dd64": { - "address": "0x427a03fb96d9a94a6727fbcfbba143444090dd64", - "symbol": "PIXL", - "decimals": 18, - "name": "PIXL", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x427a03fb96d9a94a6727fbcfbba143444090dd64.png", - "aggregators": [ - "CoinGecko", - "LiFi", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 6 - }, - "0x2d80f5f5328fdcb6eceb7cacf5dd8aedaec94e20": { - "address": "0x2d80f5f5328fdcb6eceb7cacf5dd8aedaec94e20", - "symbol": "AGA", - "decimals": 4, - "name": "AGA", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x2d80f5f5328fdcb6eceb7cacf5dd8aedaec94e20.png", - "aggregators": [ - "CoinMarketCap", - "LiFi", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 6 - }, - "0xdc349913d53b446485e98b76800b6254f43df695": { - "address": "0xdc349913d53b446485e98b76800b6254f43df695", - "symbol": "BEZOGE", - "decimals": 9, - "name": "Bezoge Earth", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xdc349913d53b446485e98b76800b6254f43df695.png", - "aggregators": [ - "CoinMarketCap", - "1inch", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 6 - }, - "0x712bd4beb54c6b958267d9db0259abdbb0bff606": { - "address": "0x712bd4beb54c6b958267d9db0259abdbb0bff606", - "symbol": "UDS", - "decimals": 18, - "name": "Undeads Games", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x712bd4beb54c6b958267d9db0259abdbb0bff606.png", - "aggregators": [ - "CoinMarketCap", - "Socket", - "Rubic", - "Squid", - "Rango", - "Sonarwatch" - ], - "occurrences": 6 - }, - "0x5dd57da40e6866c9fcc34f4b6ddc89f1ba740dfe": { - "address": "0x5dd57da40e6866c9fcc34f4b6ddc89f1ba740dfe", - "symbol": "BRIGHT", - "decimals": 18, - "name": "BrightID", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x5dd57da40e6866c9fcc34f4b6ddc89f1ba740dfe.png", - "aggregators": [ - "CoinMarketCap", - "LiFi", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 6 - }, - "0x8e0eef788350f40255d86dfe8d91ec0ad3a4547f": { - "address": "0x8e0eef788350f40255d86dfe8d91ec0ad3a4547f", - "symbol": "COR", - "decimals": 18, - "name": "Cortensor", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x8e0eef788350f40255d86dfe8d91ec0ad3a4547f.png", - "aggregators": [ - "CoinMarketCap", - "LiFi", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 6 - }, - "0x5eed99d066a8caf10f3e4327c1b3d8b673485eed": { - "address": "0x5eed99d066a8caf10f3e4327c1b3d8b673485eed", - "symbol": "SEED", - "decimals": 18, - "name": "SEED", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x5eed99d066a8caf10f3e4327c1b3d8b673485eed.png", - "aggregators": [ - "Metamask", - "LiFi", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 6 - }, - "0xa354f35829ae975e850e23e9615b11da1b3dc4de": { - "address": "0xa354f35829ae975e850e23e9615b11da1b3dc4de", - "symbol": "YVUSDC", - "decimals": 6, - "name": "USDC yVault", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xa354f35829ae975e850e23e9615b11da1b3dc4de.png", - "aggregators": [ - "CoinGecko", - "LiFi", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 6 - }, - "0xc97d6c52f3add91fa1c5287a453d7444aecbca83": { - "address": "0xc97d6c52f3add91fa1c5287a453d7444aecbca83", - "symbol": "DZOO", - "decimals": 18, - "name": "Degen Zoo", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xc97d6c52f3add91fa1c5287a453d7444aecbca83.png", - "aggregators": [ - "CoinMarketCap", - "LiFi", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 6 - }, - "0xf66cd2f8755a21d3c8683a10269f795c0532dd58": { - "address": "0xf66cd2f8755a21d3c8683a10269f795c0532dd58", - "symbol": "COREDAO", - "decimals": 18, - "name": "coreDAO", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xf66cd2f8755a21d3c8683a10269f795c0532dd58.png", - "aggregators": [ - "CoinMarketCap", - "LiFi", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 6 - }, - "0x8a458a9dc9048e005d22849f470891b840296619": { - "address": "0x8a458a9dc9048e005d22849f470891b840296619", - "symbol": "AMKR", - "decimals": 18, - "name": "Aave v3 MKR", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x8a458a9dc9048e005d22849f470891b840296619.png", - "aggregators": [ - "CoinGecko", - "1inch", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 6 - }, - "0x4bb3205bf648b7f59ef90dee0f1b62f6116bc7ca": { - "address": "0x4bb3205bf648b7f59ef90dee0f1b62f6116bc7ca", - "symbol": "BYN", - "decimals": 18, - "name": "NBX", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x4bb3205bf648b7f59ef90dee0f1b62f6116bc7ca.png", - "aggregators": [ - "CoinMarketCap", - "LiFi", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 6 - }, - "0xd1b5651e55d4ceed36251c61c50c889b36f6abb5": { - "address": "0xd1b5651e55d4ceed36251c61c50c889b36f6abb5", - "symbol": "SDCRV", - "decimals": 18, - "name": "Stake DAO CRV", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xd1b5651e55d4ceed36251c61c50c889b36f6abb5.png", - "aggregators": [ - "CoinMarketCap", - "LiFi", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 6 - }, - "0x610dbd98a28ebba525e9926b6aaf88f9159edbfd": { - "address": "0x610dbd98a28ebba525e9926b6aaf88f9159edbfd", - "symbol": "NSTR", - "decimals": 18, - "name": "Nostra", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x610dbd98a28ebba525e9926b6aaf88f9159edbfd.png", - "aggregators": [ - "CoinMarketCap", - "LiFi", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 6 - }, - "0x9b3a8159e119eb09822115ae08ee1526849e1116": { - "address": "0x9b3a8159e119eb09822115ae08ee1526849e1116", - "symbol": "MMA", - "decimals": 9, - "name": "Meme Alliance", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x9b3a8159e119eb09822115ae08ee1526849e1116.png", - "aggregators": [ - "CoinMarketCap", - "Socket", - "Rubic", - "Squid", - "Rango", - "Sonarwatch" - ], - "occurrences": 6 - }, - "0xe7976c4efc60d9f4c200cc1bcef1a1e3b02c73e7": { - "address": "0xe7976c4efc60d9f4c200cc1bcef1a1e3b02c73e7", - "symbol": "MAX", - "decimals": 18, - "name": "MAX", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xe7976c4efc60d9f4c200cc1bcef1a1e3b02c73e7.png", - "aggregators": [ - "CoinMarketCap", - "LiFi", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 6 - }, - "0xf7413489c474ca4399eee604716c72879eea3615": { - "address": "0xf7413489c474ca4399eee604716c72879eea3615", - "symbol": "APYS", - "decimals": 18, - "name": "APYSwap", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xf7413489c474ca4399eee604716c72879eea3615.png", - "aggregators": [ - "CoinMarketCap", - "LiFi", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 6 - }, - "0x482df7483a52496f4c65ab499966dfcdf4ddfdbc": { - "address": "0x482df7483a52496f4c65ab499966dfcdf4ddfdbc", - "symbol": "LDY", - "decimals": 18, - "name": "Ledgity Token", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x482df7483a52496f4c65ab499966dfcdf4ddfdbc.png", - "aggregators": [ - "CoinMarketCap", - "LiFi", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 6 - }, - "0x8fe815417913a93ea99049fc0718ee1647a2a07c": { - "address": "0x8fe815417913a93ea99049fc0718ee1647a2a07c", - "symbol": "XSWAP", - "decimals": 18, - "name": "XSwap", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x8fe815417913a93ea99049fc0718ee1647a2a07c.png", - "aggregators": [ - "CoinMarketCap", - "LiFi", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 6 - }, - "0x49fb8ad7578148e17c3ef0c344ce23a66ed372c4": { - "address": "0x49fb8ad7578148e17c3ef0c344ce23a66ed372c4", - "symbol": "TAOBOT", - "decimals": 18, - "name": "tao bot", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x49fb8ad7578148e17c3ef0c344ce23a66ed372c4.png", - "aggregators": [ - "CoinMarketCap", - "Socket", - "Rubic", - "Squid", - "Rango", - "Sonarwatch" - ], - "occurrences": 6 - }, - "0x35ca1e5a9b1c09fa542fa18d1ba4d61c8edff852": { - "address": "0x35ca1e5a9b1c09fa542fa18d1ba4d61c8edff852", - "symbol": "SCHRODI", - "decimals": 18, - "name": "Schrodi", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x35ca1e5a9b1c09fa542fa18d1ba4d61c8edff852.png", - "aggregators": [ - "CoinMarketCap", - "LiFi", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 6 - }, - "0xde342a3e269056fc3305f9e315f4c40d917ba521": { - "address": "0xde342a3e269056fc3305f9e315f4c40d917ba521", - "symbol": "BYTE", - "decimals": 9, - "name": "Byte", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xde342a3e269056fc3305f9e315f4c40d917ba521.png", - "aggregators": [ - "CoinMarketCap", - "1inch", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 6 - }, - "0xe86df1970055e9caee93dae9b7d5fd71595d0e18": { - "address": "0xe86df1970055e9caee93dae9b7d5fd71595d0e18", - "symbol": "BTC20", - "decimals": 18, - "name": "Bitcoin20", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xe86df1970055e9caee93dae9b7d5fd71595d0e18.png", - "aggregators": [ - "CoinGecko", - "LiFi", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 6 - }, - "0xcfeaead4947f0705a14ec42ac3d44129e1ef3ed5": { - "address": "0xcfeaead4947f0705a14ec42ac3d44129e1ef3ed5", - "symbol": "NOTE", - "decimals": 8, - "name": "Notional Finance", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xcfeaead4947f0705a14ec42ac3d44129e1ef3ed5.png", - "aggregators": [ - "CoinMarketCap", - "LiFi", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 6 - }, - "0x30ae41d5f9988d359c733232c6c693c0e645c77e": { - "address": "0x30ae41d5f9988d359c733232c6c693c0e645c77e", - "symbol": "WAAC", - "decimals": 0, - "name": "Wrapped AyeAyeCoin", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x30ae41d5f9988d359c733232c6c693c0e645c77e.png", - "aggregators": [ - "CoinGecko", - "LiFi", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 6 - }, - "0x8e57c27761ebbd381b0f9d09bb92ceb51a358abb": { - "address": "0x8e57c27761ebbd381b0f9d09bb92ceb51a358abb", - "symbol": "XDNA", - "decimals": 18, - "name": "extraDNA", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x8e57c27761ebbd381b0f9d09bb92ceb51a358abb.png", - "aggregators": [ - "CoinMarketCap", - "LiFi", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 6 - }, - "0x825459139c897d769339f295e962396c4f9e4a4d": { - "address": "0x825459139c897d769339f295e962396c4f9e4a4d", - "symbol": "GAME", - "decimals": 18, - "name": "GameBuild", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x825459139c897d769339f295e962396c4f9e4a4d.png", - "aggregators": [ - "CoinMarketCap", - "LiFi", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 6 - }, - "0xc1abb8c93be6811affc70675b0432926c4bfbb5d": { - "address": "0xc1abb8c93be6811affc70675b0432926c4bfbb5d", - "symbol": "UERII", - "decimals": 18, - "name": "UERII", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xc1abb8c93be6811affc70675b0432926c4bfbb5d.png", - "aggregators": [ - "CoinGecko", - "LiFi", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 6 - }, - "0x82d09e30d5d682d69b4a5d97c61b7ba651457625": { - "address": "0x82d09e30d5d682d69b4a5d97c61b7ba651457625", - "symbol": "TKN", - "decimals": 18, - "name": "Token Name Service", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x82d09e30d5d682d69b4a5d97c61b7ba651457625.png", - "aggregators": [ - "CoinGecko", - "LiFi", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 6 - }, - "0x917cee801a67f933f2e6b33fc0cd1ed2d5909d88": { - "address": "0x917cee801a67f933f2e6b33fc0cd1ed2d5909d88", - "symbol": "WEETHS", - "decimals": 18, - "name": "ether fi weETHs", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x917cee801a67f933f2e6b33fc0cd1ed2d5909d88.png", - "aggregators": [ - "CoinGecko", - "LiFi", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 6 - }, - "0xc9bca88b04581699fab5aa276ccaff7df957cbbf": { - "address": "0xc9bca88b04581699fab5aa276ccaff7df957cbbf", - "symbol": "VISTA", - "decimals": 18, - "name": "Ethervista", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xc9bca88b04581699fab5aa276ccaff7df957cbbf.png", - "aggregators": [ - "CoinMarketCap", - "LiFi", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 6 - }, - "0x32b77729cd87f1ef2bea4c650c16f89f08472c69": { - "address": "0x32b77729cd87f1ef2bea4c650c16f89f08472c69", - "symbol": "BOX", - "decimals": 18, - "name": "DeBox", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x32b77729cd87f1ef2bea4c650c16f89f08472c69.png", - "aggregators": [ - "CoinMarketCap", - "LiFi", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 6 - }, - "0x3a707d56d538e85b783e8ce12b346e7fb6511f90": { - "address": "0x3a707d56d538e85b783e8ce12b346e7fb6511f90", - "symbol": "IETHV", - "decimals": 18, - "name": "Inverse Ethereum Volatility Index Token", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x3a707d56d538e85b783e8ce12b346e7fb6511f90.png", - "aggregators": [ - "CoinGecko", - "LiFi", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 6 - }, - "0x3391bc034f2935ef0e1e41619445f998b2680d35": { - "address": "0x3391bc034f2935ef0e1e41619445f998b2680d35", - "symbol": "IDLEUSDCSAFE", - "decimals": 18, - "name": "IdleUSDC Risk Adjusted", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x3391bc034f2935ef0e1e41619445f998b2680d35.png", - "aggregators": [ - "CoinGecko", - "LiFi", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 6 - }, - "0xa21af1050f7b26e0cff45ee51548254c41ed6b5c": { - "address": "0xa21af1050f7b26e0cff45ee51548254c41ed6b5c", - "symbol": "OSAK", - "decimals": 18, - "name": "Osaka Protocol", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xa21af1050f7b26e0cff45ee51548254c41ed6b5c.png", - "aggregators": [ - "CoinMarketCap", - "Socket", - "Rubic", - "Rango", - "Sonarwatch", - "SushiSwap" - ], - "occurrences": 6 - }, - "0x0789dbae94fb18e5789b8e4489bcb7a1adb58622": { - "address": "0x0789dbae94fb18e5789b8e4489bcb7a1adb58622", - "symbol": "FSCC", - "decimals": 8, - "name": "FISCO Coin", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x0789dbae94fb18e5789b8e4489bcb7a1adb58622.png", - "aggregators": [ - "CoinMarketCap", - "LiFi", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 6 - }, - "0x94804dc4948184ffd7355f62ccbb221c9765886f": { - "address": "0x94804dc4948184ffd7355f62ccbb221c9765886f", - "symbol": "RAGE", - "decimals": 18, - "name": "Rage Fan", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x94804dc4948184ffd7355f62ccbb221c9765886f.png", - "aggregators": [ - "CoinMarketCap", - "LiFi", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 6 - }, - "0xab93df617f51e1e415b5b4f8111f122d6b48e55c": { - "address": "0xab93df617f51e1e415b5b4f8111f122d6b48e55c", - "symbol": "DETO", - "decimals": 18, - "name": "Delta Exchange", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xab93df617f51e1e415b5b4f8111f122d6b48e55c.png", - "aggregators": [ - "CoinMarketCap", - "LiFi", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 6 - }, - "0x65ccd72c0813ce6f2703593b633202a0f3ca6a0c": { - "address": "0x65ccd72c0813ce6f2703593b633202a0f3ca6a0c", - "symbol": "EGG", - "decimals": 18, - "name": "Nestree", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x65ccd72c0813ce6f2703593b633202a0f3ca6a0c.png", - "aggregators": [ - "CoinMarketCap", - "LiFi", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 6 - }, - "0x7f792db54b0e580cdc755178443f0430cf799aca": { - "address": "0x7f792db54b0e580cdc755178443f0430cf799aca", - "symbol": "VOLT", - "decimals": 9, - "name": "Volt Inu", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x7f792db54b0e580cdc755178443f0430cf799aca.png", - "aggregators": [ - "CoinMarketCap", - "Socket", - "Rubic", - "Squid", - "Rango", - "Sonarwatch" - ], - "occurrences": 6 - }, - "0x80ce3027a70e0a928d9268994e9b85d03bd4cdcf": { - "address": "0x80ce3027a70e0a928d9268994e9b85d03bd4cdcf", - "symbol": "LKR", - "decimals": 18, - "name": "Lokr", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x80ce3027a70e0a928d9268994e9b85d03bd4cdcf.png", - "aggregators": [ - "CoinMarketCap", - "LiFi", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 6 - }, - "0xef53462838000184f35f7d991452e5f25110b207": { - "address": "0xef53462838000184f35f7d991452e5f25110b207", - "symbol": "KFT", - "decimals": 18, - "name": "Knit Finance", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xef53462838000184f35f7d991452e5f25110b207.png", - "aggregators": [ - "CoinMarketCap", - "LiFi", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 6 - }, - "0x418d75f65a02b3d53b2418fb8e1fe493759c7605": { - "address": "0x418d75f65a02b3d53b2418fb8e1fe493759c7605", - "symbol": "BNB", - "decimals": 18, - "name": "Binance Coin Wormhole", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x418d75f65a02b3d53b2418fb8e1fe493759c7605.png", - "aggregators": [ - "CoinMarketCap", - "1inch", - "LiFi", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 6 - }, - "0xa2b4c0af19cc16a6cfacce81f192b024d625817d": { - "address": "0xa2b4c0af19cc16a6cfacce81f192b024d625817d", - "symbol": "KISHU", - "decimals": 9, - "name": "Kishu Inu", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xa2b4c0af19cc16a6cfacce81f192b024d625817d.png", - "aggregators": [ - "CoinMarketCap", - "1inch", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 6 - }, - "0xd69f306549e9d96f183b1aeca30b8f4353c2ecc3": { - "address": "0xd69f306549e9d96f183b1aeca30b8f4353c2ecc3", - "symbol": "MCHC", - "decimals": 18, - "name": "MCH Coin", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xd69f306549e9d96f183b1aeca30b8f4353c2ecc3.png", - "aggregators": [ - "CoinMarketCap", - "LiFi", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 6 - }, - "0x2e44f3f609ff5aa4819b323fd74690f07c3607c4": { - "address": "0x2e44f3f609ff5aa4819b323fd74690f07c3607c4", - "symbol": "PIN", - "decimals": 18, - "name": "PinLink", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x2e44f3f609ff5aa4819b323fd74690f07c3607c4.png", - "aggregators": [ - "CoinMarketCap", - "1inch", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 6 - }, - "0x06b964d96f5dcf7eae9d7c559b09edce244d4b8e": { - "address": "0x06b964d96f5dcf7eae9d7c559b09edce244d4b8e", - "symbol": "USUALX", - "decimals": 18, - "name": "USUALx", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x06b964d96f5dcf7eae9d7c559b09edce244d4b8e.png", - "aggregators": [ - "CoinGecko", - "LiFi", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 6 - }, - "0x7a56e1c57c7475ccf742a1832b028f0456652f97": { - "address": "0x7a56e1c57c7475ccf742a1832b028f0456652f97", - "symbol": "SOLVBTC", - "decimals": 18, - "name": "Solv Protocol BTC", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x7a56e1c57c7475ccf742a1832b028f0456652f97.png", - "aggregators": [ - "CoinMarketCap", - "LiFi", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 6 - }, - "0x1982b2f5814301d4e9a8b0201555376e62f82428": { - "address": "0x1982b2f5814301d4e9a8b0201555376e62f82428", - "symbol": "ASTETH", - "decimals": 18, - "name": "Aave Interest Bearing STETH", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x1982b2f5814301d4e9a8b0201555376e62f82428.png", - "aggregators": [ - "CoinGecko", - "LiFi", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 6 - }, - "0x87b46212e805a3998b7e8077e9019c90759ea88c": { - "address": "0x87b46212e805a3998b7e8077e9019c90759ea88c", - "symbol": "AGA", - "decimals": 18, - "name": "AgoraHub", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x87b46212e805a3998b7e8077e9019c90759ea88c.png", - "aggregators": [ - "CoinMarketCap", - "LiFi", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 6 - }, - "0xa5f1dbb0e55bc31f32c6d032bee330288490e722": { - "address": "0xa5f1dbb0e55bc31f32c6d032bee330288490e722", - "symbol": "DBD", - "decimals": 18, - "name": "Day By Day", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xa5f1dbb0e55bc31f32c6d032bee330288490e722.png", - "aggregators": [ - "CoinMarketCap", - "LiFi", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 6 - }, - "0x1571ed0bed4d987fe2b498ddbae7dfa19519f651": { - "address": "0x1571ed0bed4d987fe2b498ddbae7dfa19519f651", - "symbol": "IFARM", - "decimals": 18, - "name": "iFARM", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x1571ed0bed4d987fe2b498ddbae7dfa19519f651.png", - "aggregators": [ - "CoinGecko", - "LiFi", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 6 - }, - "0x0655977feb2f289a4ab78af67bab0d17aab84367": { - "address": "0x0655977feb2f289a4ab78af67bab0d17aab84367", - "symbol": "SCRVUSD", - "decimals": 18, - "name": "Savings crvUSD", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x0655977feb2f289a4ab78af67bab0d17aab84367.png", - "aggregators": [ - "Metamask", - "1inch", - "LiFi", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 6 - }, - "0xa4cf2afd3b165975afffbf7e487cdd40c894ab6b": { - "address": "0xa4cf2afd3b165975afffbf7e487cdd40c894ab6b", - "symbol": "SHIBAKEN", - "decimals": 0, - "name": "Shibaken Finance", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xa4cf2afd3b165975afffbf7e487cdd40c894ab6b.png", - "aggregators": [ - "CoinGecko", - "1inch", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 6 - }, - "0x3540abe4f288b280a0740ad5121aec337c404d15": { - "address": "0x3540abe4f288b280a0740ad5121aec337c404d15", - "symbol": "TPRO", - "decimals": 18, - "name": "TPRO Network", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x3540abe4f288b280a0740ad5121aec337c404d15.png", - "aggregators": [ - "CoinMarketCap", - "LiFi", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 6 - }, - "0x1d96fd43ee07aa79f8fd003cbdf404fb5ce41ad2": { - "address": "0x1d96fd43ee07aa79f8fd003cbdf404fb5ce41ad2", - "symbol": "QWLA", - "decimals": 18, - "name": "Qawalla", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x1d96fd43ee07aa79f8fd003cbdf404fb5ce41ad2.png", - "aggregators": [ - "CoinMarketCap", - "LiFi", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 6 - }, - "0xe3944ab788a60ca266f1eec3c26925b95f6370ad": { - "address": "0xe3944ab788a60ca266f1eec3c26925b95f6370ad", - "symbol": "RAIN", - "decimals": 18, - "name": "Precipitate ai", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xe3944ab788a60ca266f1eec3c26925b95f6370ad.png", - "aggregators": [ - "CoinMarketCap", - "LiFi", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 6 - }, - "0x48fb253446873234f2febbf9bdeaa72d9d387f94": { - "address": "0x48fb253446873234f2febbf9bdeaa72d9d387f94", - "symbol": "VBNT", - "decimals": 18, - "name": "Bancor Governance Token", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x48fb253446873234f2febbf9bdeaa72d9d387f94.png", - "aggregators": [ - "CoinGecko", - "Socket", - "Rubic", - "Rango", - "Sonarwatch", - "Bancor" - ], - "occurrences": 6 - }, - "0x243c9be13faba09f945ccc565547293337da0ad7": { - "address": "0x243c9be13faba09f945ccc565547293337da0ad7", - "symbol": "TRUF", - "decimals": 18, - "name": "TRUF Network", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x243c9be13faba09f945ccc565547293337da0ad7.png", - "aggregators": [ - "CoinMarketCap", - "LiFi", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 6 - }, - "0xe485e2f1bab389c08721b291f6b59780fec83fd7": { - "address": "0xe485e2f1bab389c08721b291f6b59780fec83fd7", - "symbol": "SHU", - "decimals": 18, - "name": "Shutter", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xe485e2f1bab389c08721b291f6b59780fec83fd7.png", - "aggregators": [ - "CoinGecko", - "LiFi", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 6 - }, - "0xaa95f26e30001251fb905d264aa7b00ee9df6c18": { - "address": "0xaa95f26e30001251fb905d264aa7b00ee9df6c18", - "symbol": "KENDU", - "decimals": 18, - "name": "Kendu Inu", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xaa95f26e30001251fb905d264aa7b00ee9df6c18.png", - "aggregators": [ - "CoinMarketCap", - "Socket", - "Rubic", - "Squid", - "Rango", - "Sonarwatch" - ], - "occurrences": 6 - }, - "0xf63e309818e4ea13782678ce6c31c1234fa61809": { - "address": "0xf63e309818e4ea13782678ce6c31c1234fa61809", - "symbol": "JANET", - "decimals": 8, - "name": "Janet", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xf63e309818e4ea13782678ce6c31c1234fa61809.png", - "aggregators": [ - "CoinMarketCap", - "LiFi", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 6 - }, - "0x0bc37bea9068a86c221b8bd71ea6228260dad5a2": { - "address": "0x0bc37bea9068a86c221b8bd71ea6228260dad5a2", - "symbol": "SPARKLET", - "decimals": 18, - "name": "Upland", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x0bc37bea9068a86c221b8bd71ea6228260dad5a2.png", - "aggregators": [ - "CoinGecko", - "LiFi", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 6 - }, - "0xf9fbe825bfb2bf3e387af0dc18cac8d87f29dea8": { - "address": "0xf9fbe825bfb2bf3e387af0dc18cac8d87f29dea8", - "symbol": "RADAR", - "decimals": 18, - "name": "Radar", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xf9fbe825bfb2bf3e387af0dc18cac8d87f29dea8.png", - "aggregators": [ - "CoinMarketCap", - "1inch", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 6 - }, - "0xc064f4f215b6a1e4e7f39bd8530c4de0fc43ee9d": { - "address": "0xc064f4f215b6a1e4e7f39bd8530c4de0fc43ee9d", - "symbol": "LM", - "decimals": 18, - "name": "LeisureMeta", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xc064f4f215b6a1e4e7f39bd8530c4de0fc43ee9d.png", - "aggregators": [ - "CoinMarketCap", - "LiFi", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 6 - }, - "0xe9a95d175a5f4c9369f3b74222402eb1b837693b": { - "address": "0xe9a95d175a5f4c9369f3b74222402eb1b837693b", - "symbol": "NOW", - "decimals": 8, - "name": "ChangeNOW", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xe9a95d175a5f4c9369f3b74222402eb1b837693b.png", - "aggregators": [ - "CoinMarketCap", - "1inch", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 6 - }, - "0x36ac219f90f5a6a3c77f2a7b660e3cc701f68e25": { - "address": "0x36ac219f90f5a6a3c77f2a7b660e3cc701f68e25", - "symbol": "XCM", - "decimals": 18, - "name": "Coinmetro", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x36ac219f90f5a6a3c77f2a7b660e3cc701f68e25.png", - "aggregators": [ - "CoinMarketCap", - "LiFi", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 6 - }, - "0x246908bff0b1ba6ecadcf57fb94f6ae2fcd43a77": { - "address": "0x246908bff0b1ba6ecadcf57fb94f6ae2fcd43a77", - "symbol": "DIVI", - "decimals": 8, - "name": "Divi", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x246908bff0b1ba6ecadcf57fb94f6ae2fcd43a77.png", - "aggregators": [ - "CoinMarketCap", - "LiFi", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 6 - }, - "0x446c9033e7516d820cc9a2ce2d0b7328b579406f": { - "address": "0x446c9033e7516d820cc9a2ce2d0b7328b579406f", - "symbol": "SOLVE", - "decimals": 8, - "name": "SOLVE", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x446c9033e7516d820cc9a2ce2d0b7328b579406f.png", - "aggregators": [ - "CoinMarketCap", - "LiFi", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 6 - }, - "0x09617f6fd6cf8a71278ec86e23bbab29c04353a7": { - "address": "0x09617f6fd6cf8a71278ec86e23bbab29c04353a7", - "symbol": "ULT", - "decimals": 18, - "name": "Shardus", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x09617f6fd6cf8a71278ec86e23bbab29c04353a7.png", - "aggregators": [ - "CoinMarketCap", - "LiFi", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 6 - }, - "0x3d3af44cf092a49280e316f09c8f20ecf97bc933": { - "address": "0x3d3af44cf092a49280e316f09c8f20ecf97bc933", - "symbol": "UCX", - "decimals": 18, - "name": "UCX", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x3d3af44cf092a49280e316f09c8f20ecf97bc933.png", - "aggregators": [ - "CoinMarketCap", - "LiFi", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 6 - }, - "0x155ff1a85f440ee0a382ea949f24ce4e0b751c65": { - "address": "0x155ff1a85f440ee0a382ea949f24ce4e0b751c65", - "symbol": "EYE", - "decimals": 18, - "name": "Behodler", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x155ff1a85f440ee0a382ea949f24ce4e0b751c65.png", - "aggregators": [ - "CoinMarketCap", - "LiFi", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 6 - }, - "0xa2085073878152ac3090ea13d1e41bd69e60dc99": { - "address": "0xa2085073878152ac3090ea13d1e41bd69e60dc99", - "symbol": "ELG", - "decimals": 18, - "name": "EscoinToken", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xa2085073878152ac3090ea13d1e41bd69e60dc99.png", - "aggregators": [ - "CoinMarketCap", - "LiFi", - "Rubic", - "Rango", - "Sonarwatch", - "Bancor" - ], - "occurrences": 6 - }, - "0x12e2b8033420270db2f3b328e32370cb5b2ca134": { - "address": "0x12e2b8033420270db2f3b328e32370cb5b2ca134", - "symbol": "SFP", - "decimals": 18, - "name": "SafePal", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x12e2b8033420270db2f3b328e32370cb5b2ca134.png", - "aggregators": [ - "CoinMarketCap", - "1inch", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 6 - }, - "0xcd7492db29e2ab436e819b249452ee1bbdf52214": { - "address": "0xcd7492db29e2ab436e819b249452ee1bbdf52214", - "symbol": "SMI", - "decimals": 8, - "name": "SafeMoon Inu", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xcd7492db29e2ab436e819b249452ee1bbdf52214.png", - "aggregators": [ - "CoinMarketCap", - "1inch", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 6 - }, - "0x8cc0f052fff7ead7f2edcccac895502e884a8a71": { - "address": "0x8cc0f052fff7ead7f2edcccac895502e884a8a71", - "symbol": "ARTH", - "decimals": 18, - "name": "ARTH Valuecoin", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x8cc0f052fff7ead7f2edcccac895502e884a8a71.png", - "aggregators": [ - "Metamask", - "LiFi", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 6 - }, - "0x72e5390edb7727e3d4e3436451dadaff675dbcc0": { - "address": "0x72e5390edb7727e3d4e3436451dadaff675dbcc0", - "symbol": "HANU", - "decimals": 12, - "name": "Hanu Yokia", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x72e5390edb7727e3d4e3436451dadaff675dbcc0.png", - "aggregators": [ - "CoinMarketCap", - "1inch", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 6 - }, - "0xf519381791c03dd7666c142d4e49fd94d3536011": { - "address": "0xf519381791c03dd7666c142d4e49fd94d3536011", - "symbol": "ASIA", - "decimals": 18, - "name": "Asia Coin", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xf519381791c03dd7666c142d4e49fd94d3536011.png", - "aggregators": [ - "CoinMarketCap", - "LiFi", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 6 - }, - "0xd43be54c1aedf7ee4099104f2dae4ea88b18a249": { - "address": "0xd43be54c1aedf7ee4099104f2dae4ea88b18a249", - "symbol": "TRAXX", - "decimals": 18, - "name": "Traxx", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xd43be54c1aedf7ee4099104f2dae4ea88b18a249.png", - "aggregators": [ - "CoinMarketCap", - "LiFi", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 6 - }, - "0x94e496474f1725f1c1824cb5bdb92d7691a4f03a": { - "address": "0x94e496474f1725f1c1824cb5bdb92d7691a4f03a", - "symbol": "BANANA", - "decimals": 18, - "name": "Banana", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x94e496474f1725f1c1824cb5bdb92d7691a4f03a.png", - "aggregators": [ - "CoinMarketCap", - "LiFi", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 6 - }, - "0xc5fb36dd2fb59d3b98deff88425a3f425ee469ed": { - "address": "0xc5fb36dd2fb59d3b98deff88425a3f425ee469ed", - "symbol": "TSUKA", - "decimals": 9, - "name": "Dejitaru Tsuka", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xc5fb36dd2fb59d3b98deff88425a3f425ee469ed.png", - "aggregators": [ - "CoinMarketCap", - "LiFi", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 6 - }, - "0x616e8bfa43f920657b3497dbf40d6b1a02d4608d": { - "address": "0x616e8bfa43f920657b3497dbf40d6b1a02d4608d", - "symbol": "AURABAL", - "decimals": 18, - "name": "Aura BAL", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x616e8bfa43f920657b3497dbf40d6b1a02d4608d.png", - "aggregators": [ - "CoinMarketCap", - "LiFi", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 6 - }, - "0x0c90c57aaf95a3a87eadda6ec3974c99d786511f": { - "address": "0x0c90c57aaf95a3a87eadda6ec3974c99d786511f", - "symbol": "HAN", - "decimals": 18, - "name": "HanChain", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x0c90c57aaf95a3a87eadda6ec3974c99d786511f.png", - "aggregators": [ - "CoinMarketCap", - "LiFi", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 6 - }, - "0x525a8f6f3ba4752868cde25164382bfbae3990e1": { - "address": "0x525a8f6f3ba4752868cde25164382bfbae3990e1", - "symbol": "NYM", - "decimals": 6, - "name": "Nym", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x525a8f6f3ba4752868cde25164382bfbae3990e1.png", - "aggregators": [ - "CoinMarketCap", - "Socket", - "Rubic", - "Squid", - "Rango", - "Sonarwatch" - ], - "occurrences": 6 - }, - "0x4f08705fb8f33affc231ed66e626b40e84a71870": { - "address": "0x4f08705fb8f33affc231ed66e626b40e84a71870", - "symbol": "FLUT", - "decimals": 11, - "name": "Flute", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x4f08705fb8f33affc231ed66e626b40e84a71870.png", - "aggregators": [ - "CoinMarketCap", - "LiFi", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 6 - }, - "0x68a47fe1cf42eba4a030a10cd4d6a1031ca3ca0a": { - "address": "0x68a47fe1cf42eba4a030a10cd4d6a1031ca3ca0a", - "symbol": "TET", - "decimals": 8, - "name": "Tectum", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x68a47fe1cf42eba4a030a10cd4d6a1031ca3ca0a.png", - "aggregators": [ - "CoinMarketCap", - "LiFi", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 6 - }, - "0x15f74458ae0bfdaa1a96ca1aa779d715cc1eefe4": { - "address": "0x15f74458ae0bfdaa1a96ca1aa779d715cc1eefe4", - "symbol": "GRAI", - "decimals": 18, - "name": "Grai", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x15f74458ae0bfdaa1a96ca1aa779d715cc1eefe4.png", - "aggregators": [ - "CoinMarketCap", - "LiFi", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 6 - }, - "0x5aef5bba19e6a1644805bd4f5c93c8557b87c62c": { - "address": "0x5aef5bba19e6a1644805bd4f5c93c8557b87c62c", - "symbol": "FAKEAI", - "decimals": 18, - "name": "DeepFakeAI", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x5aef5bba19e6a1644805bd4f5c93c8557b87c62c.png", - "aggregators": [ - "CoinMarketCap", - "LiFi", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 6 - }, - "0x08a1c30bbb26425c1031ee9e43fa0b9960742539": { - "address": "0x08a1c30bbb26425c1031ee9e43fa0b9960742539", - "symbol": "LNDX", - "decimals": 6, - "name": "LandX Governance Token", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x08a1c30bbb26425c1031ee9e43fa0b9960742539.png", - "aggregators": [ - "CoinMarketCap", - "LiFi", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 6 - }, - "0x7fd4d7737597e7b4ee22acbf8d94362343ae0a79": { - "address": "0x7fd4d7737597e7b4ee22acbf8d94362343ae0a79", - "symbol": "WMC", - "decimals": 2, - "name": "Wrapped MistCoin", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x7fd4d7737597e7b4ee22acbf8d94362343ae0a79.png", - "aggregators": [ - "CoinMarketCap", - "LiFi", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 6 - }, - "0xad038eb671c44b853887a7e32528fab35dc5d710": { - "address": "0xad038eb671c44b853887a7e32528fab35dc5d710", - "symbol": "DBR", - "decimals": 18, - "name": "DOLA Borrowing Right", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xad038eb671c44b853887a7e32528fab35dc5d710.png", - "aggregators": [ - "CoinMarketCap", - "LiFi", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 6 - }, - "0x2da719db753dfa10a62e140f436e1d67f2ddb0d6": { - "address": "0x2da719db753dfa10a62e140f436e1d67f2ddb0d6", - "symbol": "CERE", - "decimals": 10, - "name": "Cere Network", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x2da719db753dfa10a62e140f436e1d67f2ddb0d6.png", - "aggregators": [ - "CoinMarketCap", - "LiFi", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 6 - }, - "0xa469b7ee9ee773642b3e93e842e5d9b5baa10067": { - "address": "0xa469b7ee9ee773642b3e93e842e5d9b5baa10067", - "symbol": "USDZ", - "decimals": 18, - "name": "Anzen USDz", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xa469b7ee9ee773642b3e93e842e5d9b5baa10067.png", - "aggregators": [ - "CoinGecko", - "LiFi", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 6 - }, - "0x3ffeea07a27fab7ad1df5297fa75e77a43cb5790": { - "address": "0x3ffeea07a27fab7ad1df5297fa75e77a43cb5790", - "symbol": "PEIPEI", - "decimals": 18, - "name": "PeiPei", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x3ffeea07a27fab7ad1df5297fa75e77a43cb5790.png", - "aggregators": [ - "CoinGecko", - "1inch", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 6 - }, - "0x6e15a54b5ecac17e58dadeddbe8506a7560252f9": { - "address": "0x6e15a54b5ecac17e58dadeddbe8506a7560252f9", - "symbol": "F", - "decimals": 18, - "name": "SynFutures", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x6e15a54b5ecac17e58dadeddbe8506a7560252f9.png", - "aggregators": [ - "CoinMarketCap", - "LiFi", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 6 - }, - "0x5cac718a3ae330d361e39244bf9e67ab17514ce8": { - "address": "0x5cac718a3ae330d361e39244bf9e67ab17514ce8", - "symbol": "COT", - "decimals": 18, - "name": "Cosplay Token", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x5cac718a3ae330d361e39244bf9e67ab17514ce8.png", - "aggregators": [ - "CoinMarketCap", - "LiFi", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 6 - }, - "0x28561b8a2360f463011c16b6cc0b0cbef8dbbcad": { - "address": "0x28561b8a2360f463011c16b6cc0b0cbef8dbbcad", - "symbol": "MOODENG", - "decimals": 9, - "name": "MOO DENG", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x28561b8a2360f463011c16b6cc0b0cbef8dbbcad.png", - "aggregators": [ - "CoinGecko", - "1inch", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 6 - }, - "0xc08e7e23c235073c6807c2efe7021304cb7c2815": { - "address": "0xc08e7e23c235073c6807c2efe7021304cb7c2815", - "symbol": "XUSD", - "decimals": 6, - "name": "StraitsX XUSD", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xc08e7e23c235073c6807c2efe7021304cb7c2815.png", - "aggregators": [ - "CoinMarketCap", - "Socket", - "Rubic", - "Squid", - "Rango", - "Sonarwatch" - ], - "occurrences": 6 - }, - "0x4aa41bc1649c9c3177ed16caaa11482295fc7441": { - "address": "0x4aa41bc1649c9c3177ed16caaa11482295fc7441", - "symbol": "XFIT", - "decimals": 18, - "name": "XFai", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x4aa41bc1649c9c3177ed16caaa11482295fc7441.png", - "aggregators": [ - "CoinMarketCap", - "Socket", - "Rubic", - "Squid", - "Rango", - "Sonarwatch" - ], - "occurrences": 6 - }, - "0x292fcdd1b104de5a00250febba9bc6a5092a0076": { - "address": "0x292fcdd1b104de5a00250febba9bc6a5092a0076", - "symbol": "HASHAI", - "decimals": 18, - "name": "HashAI", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x292fcdd1b104de5a00250febba9bc6a5092a0076.png", - "aggregators": [ - "CoinMarketCap", - "1inch", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 6 - }, - "0x5ee3188a3f8adee1d736edd4ae85000105c88f66": { - "address": "0x5ee3188a3f8adee1d736edd4ae85000105c88f66", - "symbol": "PEN", - "decimals": 18, - "name": "Pentagon Games", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x5ee3188a3f8adee1d736edd4ae85000105c88f66.png", - "aggregators": [ - "CoinMarketCap", - "LiFi", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 6 - }, - "0xea81dab2e0ecbc6b5c4172de4c22b6ef6e55bd8f": { - "address": "0xea81dab2e0ecbc6b5c4172de4c22b6ef6e55bd8f", - "symbol": "PLEB", - "decimals": 18, - "name": "Plebbit", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xea81dab2e0ecbc6b5c4172de4c22b6ef6e55bd8f.png", - "aggregators": [ - "CoinGecko", - "1inch", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 6 - }, - "0x9e91f79070926a191e41367d40ad582686f9e66d": { - "address": "0x9e91f79070926a191e41367d40ad582686f9e66d", - "symbol": "STYLE", - "decimals": 18, - "name": "STYLE Token", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x9e91f79070926a191e41367d40ad582686f9e66d.png", - "aggregators": [ - "CoinMarketCap", - "LiFi", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 6 - }, - "0x97ad75064b20fb2b2447fed4fa953bf7f007a706": { - "address": "0x97ad75064b20fb2b2447fed4fa953bf7f007a706", - "symbol": "BERASTONE", - "decimals": 18, - "name": "StakeStone Berachain Vault Token", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x97ad75064b20fb2b2447fed4fa953bf7f007a706.png", - "aggregators": [ - "CoinGecko", - "1inch", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 6 - }, - "0x968be3f7bfef0f8edc3c1ad90232ebb0da0867aa": { - "address": "0x968be3f7bfef0f8edc3c1ad90232ebb0da0867aa", - "symbol": "SWORLD", - "decimals": 18, - "name": "Seedworld", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x968be3f7bfef0f8edc3c1ad90232ebb0da0867aa.png", - "aggregators": [ - "CoinMarketCap", - "Socket", - "Rubic", - "Squid", - "Rango", - "Sonarwatch" - ], - "occurrences": 6 - }, - "0x3a856d4effa670c54585a5d523e96513e148e95d": { - "address": "0x3a856d4effa670c54585a5d523e96513e148e95d", - "symbol": "TRIAS", - "decimals": 18, - "name": "TriasLab", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x3a856d4effa670c54585a5d523e96513e148e95d.png", - "aggregators": [ - "CoinGecko", - "LiFi", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 6 - }, - "0x0b925ed163218f6662a35e0f0371ac234f9e9371": { - "address": "0x0b925ed163218f6662a35e0f0371ac234f9e9371", - "symbol": "AWSTETH", - "decimals": 18, - "name": "Aave v3 wstETH", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x0b925ed163218f6662a35e0f0371ac234f9e9371.png", - "aggregators": [ - "CoinGecko", - "1inch", - "LiFi", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 6 - }, - "0xf33893de6eb6ae9a67442e066ae9abd228f5290c": { - "address": "0xf33893de6eb6ae9a67442e066ae9abd228f5290c", - "symbol": "GRV", - "decimals": 8, - "name": "GroveCoin", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xf33893de6eb6ae9a67442e066ae9abd228f5290c.png", - "aggregators": [ - "CoinMarketCap", - "LiFi", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 6 - }, - "0x0b7f0e51cd1739d6c96982d55ad8fa634dd43a9c": { - "address": "0x0b7f0e51cd1739d6c96982d55ad8fa634dd43a9c", - "symbol": "DMT", - "decimals": 18, - "name": "Dream Machine Token", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x0b7f0e51cd1739d6c96982d55ad8fa634dd43a9c.png", - "aggregators": [ - "CoinGecko", - "LiFi", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 6 - }, - "0x0a5e677a6a24b2f1a2bf4f3bffc443231d2fdec8": { - "address": "0x0a5e677a6a24b2f1a2bf4f3bffc443231d2fdec8", - "symbol": "USX", - "decimals": 18, - "name": "dForce USD", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x0a5e677a6a24b2f1a2bf4f3bffc443231d2fdec8.png", - "aggregators": [ - "CoinMarketCap", - "LiFi", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 6 - }, - "0xb01cf1be9568f09449382a47cd5bf58e2a9d5922": { - "address": "0xb01cf1be9568f09449382a47cd5bf58e2a9d5922", - "symbol": "SPEED", - "decimals": 18, - "name": "Lightspeed", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xb01cf1be9568f09449382a47cd5bf58e2a9d5922.png", - "aggregators": [ - "CoinGecko", - "Socket", - "Rubic", - "Squid", - "Rango", - "Sonarwatch" - ], - "occurrences": 6 - }, - "0x6dc02164d75651758ac74435806093e421b64605": { - "address": "0x6dc02164d75651758ac74435806093e421b64605", - "symbol": "WCHI", - "decimals": 8, - "name": "XAYA", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x6dc02164d75651758ac74435806093e421b64605.png", - "aggregators": [ - "CoinMarketCap", - "LiFi", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 6 - }, - "0x31f69de127c8a0ff10819c0955490a4ae46fcc2a": { - "address": "0x31f69de127c8a0ff10819c0955490a4ae46fcc2a", - "symbol": "GBYTE", - "decimals": 18, - "name": "Obyte", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x31f69de127c8a0ff10819c0955490a4ae46fcc2a.png", - "aggregators": [ - "CoinMarketCap", - "LiFi", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 6 - }, - "0x9ac07635ddbde5db18648c360defb00f5f22537e": { - "address": "0x9ac07635ddbde5db18648c360defb00f5f22537e", - "symbol": "MOCA", - "decimals": 18, - "name": "Museum of Crypto Art", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x9ac07635ddbde5db18648c360defb00f5f22537e.png", - "aggregators": [ - "CoinGecko", - "LiFi", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 6 - }, - "0xc669928185dbce49d2230cc9b0979be6dc797957": { - "address": "0xc669928185dbce49d2230cc9b0979be6dc797957", - "symbol": "BTT", - "decimals": 18, - "name": "BitTorrent", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xc669928185dbce49d2230cc9b0979be6dc797957.png", - "aggregators": [ - "CoinGecko", - "1inch", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 6 - }, - "0x7825e833d495f3d1c28872415a4aee339d26ac88": { - "address": "0x7825e833d495f3d1c28872415a4aee339d26ac88", - "symbol": "TLOS", - "decimals": 18, - "name": "Telos", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x7825e833d495f3d1c28872415a4aee339d26ac88.png", - "aggregators": [ - "CoinGecko", - "Socket", - "Rubic", - "Rango", - "Sonarwatch", - "SushiSwap" - ], - "occurrences": 6 - }, - "0xd3c51de3e6dd9b53d7f37699afb3ee3bf9b9b3f4": { - "address": "0xd3c51de3e6dd9b53d7f37699afb3ee3bf9b9b3f4", - "symbol": "MCONTENT", - "decimals": 6, - "name": "MContent", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xd3c51de3e6dd9b53d7f37699afb3ee3bf9b9b3f4.png", - "aggregators": [ - "CoinMarketCap", - "1inch", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 6 - }, - "0x5052fa4a2a147eaaa4c0242e9cc54a10a4f42070": { - "address": "0x5052fa4a2a147eaaa4c0242e9cc54a10a4f42070", - "symbol": "HANEP", - "decimals": 18, - "name": "HANePlatform", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x5052fa4a2a147eaaa4c0242e9cc54a10a4f42070.png", - "aggregators": [ - "CoinGecko", - "LiFi", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 6 - }, - "0x8fc8f8269ebca376d046ce292dc7eac40c8d358a": { - "address": "0x8fc8f8269ebca376d046ce292dc7eac40c8d358a", - "symbol": "DFI", - "decimals": 8, - "name": "DeFiChain", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x8fc8f8269ebca376d046ce292dc7eac40c8d358a.png", - "aggregators": [ - "CoinMarketCap", - "LiFi", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 6 - }, - "0x88536c9b2c4701b8db824e6a16829d5b5eb84440": { - "address": "0x88536c9b2c4701b8db824e6a16829d5b5eb84440", - "symbol": "USV", - "decimals": 9, - "name": "Universal Store of Value", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x88536c9b2c4701b8db824e6a16829d5b5eb84440.png", - "aggregators": [ - "CoinMarketCap", - "Socket", - "Rubic", - "Rango", - "Sonarwatch", - "SushiSwap" - ], - "occurrences": 6 - }, - "0xe3c408bd53c31c085a1746af401a4042954ff740": { - "address": "0xe3c408bd53c31c085a1746af401a4042954ff740", - "symbol": "GMT", - "decimals": 8, - "name": "GMT", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xe3c408bd53c31c085a1746af401a4042954ff740.png", - "aggregators": [ - "CoinMarketCap", - "LiFi", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 6 - }, - "0x3b79a28264fc52c7b4cea90558aa0b162f7faf57": { - "address": "0x3b79a28264fc52c7b4cea90558aa0b162f7faf57", - "symbol": "WMEMO", - "decimals": 18, - "name": "Wonderful Memories", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x3b79a28264fc52c7b4cea90558aa0b162f7faf57.png", - "aggregators": [ - "CoinMarketCap", - "LiFi", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 6 - }, - "0xa80505c408c4defd9522981cd77e026f5a49fe63": { - "address": "0xa80505c408c4defd9522981cd77e026f5a49fe63", - "symbol": "NEUY", - "decimals": 18, - "name": "NEUY", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xa80505c408c4defd9522981cd77e026f5a49fe63.png", - "aggregators": [ - "CoinGecko", - "LiFi", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 6 - }, - "0xb299751b088336e165da313c33e3195b8c6663a6": { - "address": "0xb299751b088336e165da313c33e3195b8c6663a6", - "symbol": "STAR", - "decimals": 18, - "name": "StarHeroes", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xb299751b088336e165da313c33e3195b8c6663a6.png", - "aggregators": [ - "CoinMarketCap", - "LiFi", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 6 - }, - "0x31b6100f5f4466e6daeb1edb2f2ce6e548cf8938": { - "address": "0x31b6100f5f4466e6daeb1edb2f2ce6e548cf8938", - "symbol": "PUFF", - "decimals": 18, - "name": "Puff The Dragon", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x31b6100f5f4466e6daeb1edb2f2ce6e548cf8938.png", - "aggregators": [ - "CoinMarketCap", - "LiFi", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 6 - }, - "0x38f9bf9dce51833ec7f03c9dc218197999999999": { - "address": "0x38f9bf9dce51833ec7f03c9dc218197999999999", - "symbol": "NYA", - "decimals": 18, - "name": "Nya", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x38f9bf9dce51833ec7f03c9dc218197999999999.png", - "aggregators": [ - "CoinMarketCap", - "Socket", - "Rubic", - "Squid", - "Rango", - "Sonarwatch" - ], - "occurrences": 6 - }, - "0xe2dc070524a6e305ddb64d8513dc444b6a1ec845": { - "address": "0xe2dc070524a6e305ddb64d8513dc444b6a1ec845", - "symbol": "NEX", - "decimals": 8, - "name": "Nash", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xe2dc070524a6e305ddb64d8513dc444b6a1ec845.png", - "aggregators": [ - "CoinMarketCap", - "LiFi", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 6 - }, - "0xb4a3b0faf0ab53df58001804dda5bfc6a3d59008": { - "address": "0xb4a3b0faf0ab53df58001804dda5bfc6a3d59008", - "symbol": "SPA", - "decimals": 18, - "name": "Sperax", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xb4a3b0faf0ab53df58001804dda5bfc6a3d59008.png", - "aggregators": [ - "CoinMarketCap", - "LiFi", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 6 - }, - "0x08d32b0da63e2c3bcf8019c9c5d849d7a9d791e6": { - "address": "0x08d32b0da63e2c3bcf8019c9c5d849d7a9d791e6", - "symbol": "DCN", - "decimals": 18, - "name": "Dentacoin Token", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x08d32b0da63e2c3bcf8019c9c5d849d7a9d791e6.png", - "aggregators": [ - "Metamask", - "Socket", - "Rubic", - "Rango", - "Sonarwatch", - "Bancor" - ], - "occurrences": 6 - }, - "0xf04a8ac553fcedb5ba99a64799155826c136b0be": { - "address": "0xf04a8ac553fcedb5ba99a64799155826c136b0be", - "symbol": "FLIXX", - "decimals": 18, - "name": "Flixx", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xf04a8ac553fcedb5ba99a64799155826c136b0be.png", - "aggregators": [ - "CoinMarketCap", - "LiFi", - "Socket", - "Rubic", - "Rango", - "Bancor" - ], - "occurrences": 6 - }, - "0x4824a7b64e3966b0133f4f4ffb1b9d6beb75fff7": { - "address": "0x4824a7b64e3966b0133f4f4ffb1b9d6beb75fff7", - "symbol": "TCT", - "decimals": 18, - "name": "TokenClub", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x4824a7b64e3966b0133f4f4ffb1b9d6beb75fff7.png", - "aggregators": [ - "CoinMarketCap", - "LiFi", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 6 - }, - "0x4cf488387f035ff08c371515562cba712f9015d4": { - "address": "0x4cf488387f035ff08c371515562cba712f9015d4", - "symbol": "WPR", - "decimals": 18, - "name": "WePower", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x4cf488387f035ff08c371515562cba712f9015d4.png", - "aggregators": [ - "CoinMarketCap", - "LiFi", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 6 - }, - "0x3fd8f39a962efda04956981c31ab89fab5fb8bc8": { - "address": "0x3fd8f39a962efda04956981c31ab89fab5fb8bc8", - "symbol": "RTH", - "decimals": 18, - "name": "Rotharium", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x3fd8f39a962efda04956981c31ab89fab5fb8bc8.png", - "aggregators": [ - "CoinMarketCap", - "LiFi", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 6 - }, - "0xe4a6f23fb9e00fca037aa0ea0a6954de0a6c53bf": { - "address": "0xe4a6f23fb9e00fca037aa0ea0a6954de0a6c53bf", - "symbol": "TXAU", - "decimals": 18, - "name": "tGOLD", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xe4a6f23fb9e00fca037aa0ea0a6954de0a6c53bf.png", - "aggregators": [ - "CoinMarketCap", - "LiFi", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 6 - }, - "0x15b543e986b8c34074dfc9901136d9355a537e7e": { - "address": "0x15b543e986b8c34074dfc9901136d9355a537e7e", - "symbol": "STC", - "decimals": 18, - "name": "Student Coin", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x15b543e986b8c34074dfc9901136d9355a537e7e.png", - "aggregators": [ - "CoinMarketCap", - "LiFi", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 6 - }, - "0x88303fed02b31db9c7a9eafb711da9ef4a03e5d3": { - "address": "0x88303fed02b31db9c7a9eafb711da9ef4a03e5d3", - "symbol": "ZIK", - "decimals": 18, - "name": "Ziktalk", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x88303fed02b31db9c7a9eafb711da9ef4a03e5d3.png", - "aggregators": [ - "CoinMarketCap", - "LiFi", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 6 - }, - "0x106538cc16f938776c7c180186975bca23875287": { - "address": "0x106538cc16f938776c7c180186975bca23875287", - "symbol": "BASV2", - "decimals": 18, - "name": "BASv2", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x106538cc16f938776c7c180186975bca23875287.png", - "aggregators": [ - "CoinMarketCap", - "1inch", - "LiFi", - "Socket", - "Rubic", - "Rango" - ], - "occurrences": 6 - }, - "0x21ca39943e91d704678f5d00b6616650f066fd63": { - "address": "0x21ca39943e91d704678f5d00b6616650f066fd63", - "symbol": "MTSLA", - "decimals": 18, - "name": "Mirrored Tesla", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x21ca39943e91d704678f5d00b6616650f066fd63.png", - "aggregators": [ - "CoinMarketCap", - "LiFi", - "Socket", - "Rubic", - "Rango", - "SushiSwap" - ], - "occurrences": 6 - }, - "0xcaeaf8381d4b20b43afa42061d6f80319a8881f6": { - "address": "0xcaeaf8381d4b20b43afa42061d6f80319a8881f6", - "symbol": "R34P", - "decimals": 8, - "name": "R34P", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xcaeaf8381d4b20b43afa42061d6f80319a8881f6.png", - "aggregators": [ - "CoinMarketCap", - "LiFi", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 6 - }, - "0x93dfaf57d986b9ca77df9376c50878e013d9c7c8": { - "address": "0x93dfaf57d986b9ca77df9376c50878e013d9c7c8", - "symbol": "RARE", - "decimals": 18, - "name": "Unique One", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x93dfaf57d986b9ca77df9376c50878e013d9c7c8.png", - "aggregators": [ - "CoinMarketCap", - "LiFi", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 6 - }, - "0xaa602de53347579f86b996d2add74bb6f79462b2": { - "address": "0xaa602de53347579f86b996d2add74bb6f79462b2", - "symbol": "ZMT", - "decimals": 18, - "name": "Zipmex", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xaa602de53347579f86b996d2add74bb6f79462b2.png", - "aggregators": [ - "CoinMarketCap", - "LiFi", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 6 - }, - "0x297d33e17e61c2ddd812389c2105193f8348188a": { - "address": "0x297d33e17e61c2ddd812389c2105193f8348188a", - "symbol": "TRDL", - "decimals": 18, - "name": "Strudel Finance", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x297d33e17e61c2ddd812389c2105193f8348188a.png", - "aggregators": [ - "CoinMarketCap", - "LiFi", - "Socket", - "Rubic", - "Rango", - "SushiSwap" - ], - "occurrences": 6 - }, - "0x9f9913853f749b3fe6d6d4e16a1cc3c1656b6d51": { - "address": "0x9f9913853f749b3fe6d6d4e16a1cc3c1656b6d51", - "symbol": "BITT", - "decimals": 18, - "name": "BITT", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x9f9913853f749b3fe6d6d4e16a1cc3c1656b6d51.png", - "aggregators": [ - "CoinMarketCap", - "LiFi", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 6 - }, - "0x0f3adc247e91c3c50bc08721355a41037e89bc20": { - "address": "0x0f3adc247e91c3c50bc08721355a41037e89bc20", - "symbol": "ANC", - "decimals": 18, - "name": "Anchor Protocol", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x0f3adc247e91c3c50bc08721355a41037e89bc20.png", - "aggregators": [ - "CoinMarketCap", - "LiFi", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 6 - }, - "0x17ac188e09a7890a1844e5e65471fe8b0ccfadf3": { - "address": "0x17ac188e09a7890a1844e5e65471fe8b0ccfadf3", - "symbol": "CC10", - "decimals": 18, - "name": "Cryptocurrency Top 10 Tokens Index", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x17ac188e09a7890a1844e5e65471fe8b0ccfadf3.png", - "aggregators": [ - "CoinMarketCap", - "LiFi", - "TrustWallet", - "Socket", - "Rubic", - "Rango" - ], - "occurrences": 6 - }, - "0x33840024177a7daca3468912363bed8b425015c5": { - "address": "0x33840024177a7daca3468912363bed8b425015c5", - "symbol": "EBOX", - "decimals": 18, - "name": "ethbox Token", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x33840024177a7daca3468912363bed8b425015c5.png", - "aggregators": [ - "CoinMarketCap", - "LiFi", - "Socket", - "Rubic", - "Rango", - "Bancor" - ], - "occurrences": 6 - }, - "0xf59ae934f6fe444afc309586cc60a84a0f89aaea": { - "address": "0xf59ae934f6fe444afc309586cc60a84a0f89aaea", - "symbol": "PDEX", - "decimals": 18, - "name": "Polkadex", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xf59ae934f6fe444afc309586cc60a84a0f89aaea.png", - "aggregators": [ - "CoinMarketCap", - "LiFi", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 6 - }, - "0x5d30ad9c6374bf925d0a75454fa327aacf778492": { - "address": "0x5d30ad9c6374bf925d0a75454fa327aacf778492", - "symbol": "PERI", - "decimals": 18, - "name": "PERI Finance", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x5d30ad9c6374bf925d0a75454fa327aacf778492.png", - "aggregators": [ - "CoinMarketCap", - "LiFi", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 6 - }, - "0x33e18a092a93ff21ad04746c7da12e35d34dc7c4": { - "address": "0x33e18a092a93ff21ad04746c7da12e35d34dc7c4", - "symbol": "PLAY", - "decimals": 18, - "name": "Metaverse NFT Index", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x33e18a092a93ff21ad04746c7da12e35d34dc7c4.png", - "aggregators": [ - "CoinMarketCap", - "LiFi", - "Socket", - "Rubic", - "Rango", - "SushiSwap" - ], - "occurrences": 6 - }, - "0xf55a93b613d172b86c2ba3981a849dae2aecde2f": { - "address": "0xf55a93b613d172b86c2ba3981a849dae2aecde2f", - "symbol": "YFX", - "decimals": 18, - "name": "Your Futures Exchange", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xf55a93b613d172b86c2ba3981a849dae2aecde2f.png", - "aggregators": [ - "CoinMarketCap", - "LiFi", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 6 - }, - "0xa67e9f021b9d208f7e3365b2a155e3c55b27de71": { - "address": "0xa67e9f021b9d208f7e3365b2a155e3c55b27de71", - "symbol": "KLEE", - "decimals": 9, - "name": "KleeKai", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xa67e9f021b9d208f7e3365b2a155e3c55b27de71.png", - "aggregators": [ - "CoinMarketCap", - "1inch", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 6 - }, - "0xbeab712832112bd7664226db7cd025b153d3af55": { - "address": "0xbeab712832112bd7664226db7cd025b153d3af55", - "symbol": "BRIGHT", - "decimals": 18, - "name": "Bright Union", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xbeab712832112bd7664226db7cd025b153d3af55.png", - "aggregators": [ - "CoinMarketCap", - "LiFi", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 6 - }, - "0xe33ae4e795114279721047484e5ad5cc7df24fcb": { - "address": "0xe33ae4e795114279721047484e5ad5cc7df24fcb", - "symbol": "MCF", - "decimals": 10, - "name": "MCFinance", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xe33ae4e795114279721047484e5ad5cc7df24fcb.png", - "aggregators": [ - "CoinMarketCap", - "LiFi", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 6 - }, - "0x72377f31e30a405282b522d588aebbea202b4f23": { - "address": "0x72377f31e30a405282b522d588aebbea202b4f23", - "symbol": "VRN", - "decimals": 18, - "name": "Varen", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x72377f31e30a405282b522d588aebbea202b4f23.png", - "aggregators": [ - "CoinMarketCap", - "Socket", - "Rubic", - "Rango", - "Sonarwatch", - "SushiSwap" - ], - "occurrences": 6 - }, - "0x33d63ba1e57e54779f7ddaeaa7109349344cf5f1": { - "address": "0x33d63ba1e57e54779f7ddaeaa7109349344cf5f1", - "symbol": "DATA/INDEX", - "decimals": 18, - "name": "Data Economy Index", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x33d63ba1e57e54779f7ddaeaa7109349344cf5f1.png", - "aggregators": [ - "CoinMarketCap", - "LiFi", - "Socket", - "Rubic", - "Rango", - "SushiSwap" - ], - "occurrences": 6 - }, - "0x1f19f83fc9a25f3c861260143e36c17706257986": { - "address": "0x1f19f83fc9a25f3c861260143e36c17706257986", - "symbol": "VEST", - "decimals": 18, - "name": "DAO Invest", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x1f19f83fc9a25f3c861260143e36c17706257986.png", - "aggregators": [ - "CoinMarketCap", - "LiFi", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 6 - }, - "0xbd9908b0cdd50386f92efcc8e1d71766c2782df0": { - "address": "0xbd9908b0cdd50386f92efcc8e1d71766c2782df0", - "symbol": "RICE", - "decimals": 18, - "name": "DAOSquare", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xbd9908b0cdd50386f92efcc8e1d71766c2782df0.png", - "aggregators": [ - "CoinMarketCap", - "LiFi", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 6 - }, - "0x3ef389f264e07fff3106a3926f2a166d1393086f": { - "address": "0x3ef389f264e07fff3106a3926f2a166d1393086f", - "symbol": "SAO", - "decimals": 9, - "name": "Sator", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x3ef389f264e07fff3106a3926f2a166d1393086f.png", - "aggregators": [ - "CoinMarketCap", - "Socket", - "Rubic", - "Rango", - "Sonarwatch", - "Bancor" - ], - "occurrences": 6 - }, - "0xaaef88cea01475125522e117bfe45cf32044e238": { - "address": "0xaaef88cea01475125522e117bfe45cf32044e238", - "symbol": "GF", - "decimals": 18, - "name": "GuildFi", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xaaef88cea01475125522e117bfe45cf32044e238.png", - "aggregators": [ - "CoinMarketCap", - "LiFi", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 6 - }, - "0xe6602b34d8510b033e000975b3322537c7172441": { - "address": "0xe6602b34d8510b033e000975b3322537c7172441", - "symbol": "FRR", - "decimals": 18, - "name": "Frontrow", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xe6602b34d8510b033e000975b3322537c7172441.png", - "aggregators": [ - "CoinMarketCap", - "LiFi", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 6 - }, - "0xc0d4ceb216b3ba9c3701b291766fdcba977cec3a": { - "address": "0xc0d4ceb216b3ba9c3701b291766fdcba977cec3a", - "symbol": "BTRFLY", - "decimals": 9, - "name": "Redacted Cartel", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xc0d4ceb216b3ba9c3701b291766fdcba977cec3a.png", - "aggregators": [ - "CoinMarketCap", - "LiFi", - "Socket", - "Rubic", - "Rango", - "SushiSwap" - ], - "occurrences": 6 - }, - "0x84342e932797fc62814189f01f0fb05f52519708": { - "address": "0x84342e932797fc62814189f01f0fb05f52519708", - "symbol": "NHT", - "decimals": 18, - "name": "Neighbourhoods", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x84342e932797fc62814189f01f0fb05f52519708.png", - "aggregators": [ - "CoinMarketCap", - "LiFi", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 6 - }, - "0xa68dd8cb83097765263adad881af6eed479c4a33": { - "address": "0xa68dd8cb83097765263adad881af6eed479c4a33", - "symbol": "WTF", - "decimals": 18, - "name": "fees.wtf", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xa68dd8cb83097765263adad881af6eed479c4a33.png", - "aggregators": [ - "CoinMarketCap", - "1inch", - "LiFi", - "Socket", - "Rubic", - "Rango" - ], - "occurrences": 6 - }, - "0x3e828ac5c480069d4765654fb4b8733b910b13b2": { - "address": "0x3e828ac5c480069d4765654fb4b8733b910b13b2", - "symbol": "CLNY", - "decimals": 18, - "name": "Colony Network Token", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x3e828ac5c480069d4765654fb4b8733b910b13b2.png", - "aggregators": [ - "CoinMarketCap", - "LiFi", - "Rubic", - "Rango", - "Sonarwatch", - "SushiSwap" - ], - "occurrences": 6 - }, - "0xab846fb6c81370327e784ae7cbb6d6a6af6ff4bf": { - "address": "0xab846fb6c81370327e784ae7cbb6d6a6af6ff4bf", - "symbol": "PAL", - "decimals": 18, - "name": "Paladin", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xab846fb6c81370327e784ae7cbb6d6a6af6ff4bf.png", - "aggregators": [ - "CoinMarketCap", - "LiFi", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 6 - }, - "0x2a7cad775fd9c5c43f996a948660ffc21b4e628c": { - "address": "0x2a7cad775fd9c5c43f996a948660ffc21b4e628c", - "symbol": "DOP", - "decimals": 18, - "name": "D Drops", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x2a7cad775fd9c5c43f996a948660ffc21b4e628c.png", - "aggregators": [ - "CoinMarketCap", - "LiFi", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 6 - }, - "0x64b78325d7495d6d4be92f234fa3f3b8d8964b8b": { - "address": "0x64b78325d7495d6d4be92f234fa3f3b8d8964b8b", - "symbol": "SHOP", - "decimals": 18, - "name": "Shopping io", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x64b78325d7495d6d4be92f234fa3f3b8d8964b8b.png", - "aggregators": [ - "CoinMarketCap", - "LiFi", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 6 - }, - "0x57f12fe6a4e5fe819eec699fadf9db2d06606bb4": { - "address": "0x57f12fe6a4e5fe819eec699fadf9db2d06606bb4", - "symbol": "NPM", - "decimals": 18, - "name": "Neptune Mutual", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x57f12fe6a4e5fe819eec699fadf9db2d06606bb4.png", - "aggregators": [ - "CoinMarketCap", - "LiFi", - "Socket", - "Rubic", - "Rango", - "SushiSwap" - ], - "occurrences": 6 - }, - "0xf98ab0874b13a7fdc39d7295dedd49850a5d426b": { - "address": "0xf98ab0874b13a7fdc39d7295dedd49850a5d426b", - "symbol": "KIRA", - "decimals": 8, - "name": "KIRA", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xf98ab0874b13a7fdc39d7295dedd49850a5d426b.png", - "aggregators": [ - "CoinMarketCap", - "Rubic", - "Squid", - "Rango", - "Sonarwatch", - "SushiSwap" - ], - "occurrences": 6 - }, - "0xa735a3af76cc30791c61c10d585833829d36cbe0": { - "address": "0xa735a3af76cc30791c61c10d585833829d36cbe0", - "symbol": "IMGNAI", - "decimals": 9, - "name": "imgnAI", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xa735a3af76cc30791c61c10d585833829d36cbe0.png", - "aggregators": [ - "CoinMarketCap", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x820802fa8a99901f52e39acd21177b0be6ee2974": { - "address": "0x820802fa8a99901f52e39acd21177b0be6ee2974", - "symbol": "EUROE", - "decimals": 6, - "name": "EUROe Stablecoin", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x820802fa8a99901f52e39acd21177b0be6ee2974.png", - "aggregators": [ - "CoinMarketCap", - "LiFi", - "Rubic", - "Rango", - "Sonarwatch", - "SushiSwap" - ], - "occurrences": 6 - }, - "0x78a0a62fba6fb21a83fe8a3433d44c73a4017a6f": { - "address": "0x78a0a62fba6fb21a83fe8a3433d44c73a4017a6f", - "symbol": "OXOLD", - "decimals": 18, - "name": "Open Exchange Token", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x78a0a62fba6fb21a83fe8a3433d44c73a4017a6f.png", - "aggregators": [ - "CoinMarketCap", - "LiFi", - "Socket", - "Rubic", - "Squid", - "Sonarwatch" - ], - "occurrences": 6 - }, - "0x72a9b1c9b191781bb15f1b98f443a1d916557c92": { - "address": "0x72a9b1c9b191781bb15f1b98f443a1d916557c92", - "symbol": "FFM", - "decimals": 18, - "name": "Florence Finance Medici", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x72a9b1c9b191781bb15f1b98f443a1d916557c92.png", - "aggregators": [ - "CoinMarketCap", - "LiFi", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 6 - }, - "0x0e4e7f2aecf408aff4f82f067677050239bdc58a": { - "address": "0x0e4e7f2aecf408aff4f82f067677050239bdc58a", - "symbol": "FUNG", - "decimals": 18, - "name": "Fungify Token", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x0e4e7f2aecf408aff4f82f067677050239bdc58a.png", - "aggregators": [ - "CoinMarketCap", - "LiFi", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 6 - }, - "0x906c012fa4c30d580537c2b72d1789f56f488a80": { - "address": "0x906c012fa4c30d580537c2b72d1789f56f488a80", - "symbol": "POGS", - "decimals": 18, - "name": "Pog Coin", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x906c012fa4c30d580537c2b72d1789f56f488a80.png", - "aggregators": [ - "CoinMarketCap", - "LiFi", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 6 - }, - "0x0bbcefa5f3630cae34842cb9d9b36bc0d4257a0d": { - "address": "0x0bbcefa5f3630cae34842cb9d9b36bc0d4257a0d", - "symbol": "KAI", - "decimals": 18, - "name": "Kinetix Finance Token", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x0bbcefa5f3630cae34842cb9d9b36bc0d4257a0d.png", - "aggregators": [ - "CoinMarketCap", - "LiFi", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 6 - }, - "0xbdc7c08592ee4aa51d06c27ee23d5087d65adbcd": { - "address": "0xbdc7c08592ee4aa51d06c27ee23d5087d65adbcd", - "symbol": "USDL", - "decimals": 18, - "name": "Lift Dollar", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xbdc7c08592ee4aa51d06c27ee23d5087d65adbcd.png", - "aggregators": [ - "CoinMarketCap", - "1inch", - "LiFi", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 6 - }, - "0x299a1503e88433c0fd1bd68625c25c5a703eb64f": { - "address": "0x299a1503e88433c0fd1bd68625c25c5a703eb64f", - "symbol": "TEAR", - "decimals": 18, - "name": "TEAR", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x299a1503e88433c0fd1bd68625c25c5a703eb64f.png", - "aggregators": [ - "LiFi", - "Socket", - "Rubic", - "Squid", - "Rango", - "Sonarwatch" - ], - "occurrences": 6 - }, - "0x3294395e62f4eb6af3f1fcf89f5602d90fb3ef69": { - "address": "0x3294395e62f4eb6af3f1fcf89f5602d90fb3ef69", - "symbol": "CELO", - "decimals": 18, - "name": "Celo Wormhole", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x3294395e62f4eb6af3f1fcf89f5602d90fb3ef69.png", - "aggregators": [ - "UniswapLabs", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0xd417144312dbf50465b1c641d016962017ef6240": { - "address": "0xd417144312dbf50465b1c641d016962017ef6240", - "symbol": "CQT", - "decimals": 18, - "name": "Covalent Query Token", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xd417144312dbf50465b1c641d016962017ef6240.png", - "aggregators": [ - "CoinMarketCap", - "LiFi", - "Rubic", - "Rango", - "SushiSwap" - ], - "occurrences": 5 - }, - "0x2ab6bb8408ca3199b8fa6c92d5b455f820af03c4": { - "address": "0x2ab6bb8408ca3199b8fa6c92d5b455f820af03c4", - "symbol": "TONE", - "decimals": 18, - "name": "TE FOOD", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x2ab6bb8408ca3199b8fa6c92d5b455f820af03c4.png", - "aggregators": [ - "CoinMarketCap", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0xc83e27f270cce0a3a3a29521173a83f402c1768b": { - "address": "0xc83e27f270cce0a3a3a29521173a83f402c1768b", - "symbol": "USDQ", - "decimals": 6, - "name": "Quantoz USDQ", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xc83e27f270cce0a3a3a29521173a83f402c1768b.png", - "aggregators": [ - "CoinMarketCap", - "1inch", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x9af839687f6c94542ac5ece2e317daae355493a1": { - "address": "0x9af839687f6c94542ac5ece2e317daae355493a1", - "symbol": "HOT", - "decimals": 18, - "name": "Hydro Protocol Token", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x9af839687f6c94542ac5ece2e317daae355493a1.png", - "aggregators": [ - "CoinMarketCap", - "Socket", - "Rubic", - "Rango", - "Bancor" - ], - "occurrences": 5 - }, - "0x2baecdf43734f22fd5c152db08e3c27233f0c7d2": { - "address": "0x2baecdf43734f22fd5c152db08e3c27233f0c7d2", - "symbol": "OM", - "decimals": 18, - "name": "OM", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x2baecdf43734f22fd5c152db08e3c27233f0c7d2.png", - "aggregators": ["CMC", "LiFi", "Socket", "Rubic", "Rango"], - "occurrences": 5 - }, - "0xf8e57ac2730d3088d98b79209739b0d5ba085a03": { - "address": "0xf8e57ac2730d3088d98b79209739b0d5ba085a03", - "symbol": "OPAI", - "decimals": 18, - "name": "Optopia AI", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xf8e57ac2730d3088d98b79209739b0d5ba085a03.png", - "aggregators": [ - "CoinMarketCap", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x19848077f45356b21164c412eff3d3e4ff6ebc31": { - "address": "0x19848077f45356b21164c412eff3d3e4ff6ebc31", - "symbol": "SPIKE", - "decimals": 9, - "name": "Spike", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x19848077f45356b21164c412eff3d3e4ff6ebc31.png", - "aggregators": [ - "CoinMarketCap", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x471a202f69d6e975da55e363dab1bdb2e86e0c0f": { - "address": "0x471a202f69d6e975da55e363dab1bdb2e86e0c0f", - "symbol": "GEKE", - "decimals": 18, - "name": "Geke", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x471a202f69d6e975da55e363dab1bdb2e86e0c0f.png", - "aggregators": [ - "CoinMarketCap", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x723cbfc05e2cfcc71d3d89e770d32801a5eef5ab": { - "address": "0x723cbfc05e2cfcc71d3d89e770d32801a5eef5ab", - "symbol": "BTCP", - "decimals": 8, - "name": "Bitcoin Pro", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x723cbfc05e2cfcc71d3d89e770d32801a5eef5ab.png", - "aggregators": [ - "CoinMarketCap", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0xd7c1eb0fe4a30d3b2a846c04aa6300888f087a5f": { - "address": "0xd7c1eb0fe4a30d3b2a846c04aa6300888f087a5f", - "symbol": "POINTS", - "decimals": 18, - "name": "Points", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xd7c1eb0fe4a30d3b2a846c04aa6300888f087a5f.png", - "aggregators": [ - "CoinGecko", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x2f42b7d686ca3effc69778b6ed8493a7787b4d6e": { - "address": "0x2f42b7d686ca3effc69778b6ed8493a7787b4d6e", - "symbol": "TARA", - "decimals": 18, - "name": "Taraxa", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x2f42b7d686ca3effc69778b6ed8493a7787b4d6e.png", - "aggregators": [ - "CoinMarketCap", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0xec21890967a8ceb3e55a3f79dac4e90673ba3c2e": { - "address": "0xec21890967a8ceb3e55a3f79dac4e90673ba3c2e", - "symbol": "BEBE", - "decimals": 8, - "name": "BEBE", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xec21890967a8ceb3e55a3f79dac4e90673ba3c2e.png", - "aggregators": [ - "CoinMarketCap", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x2de509bf0014ddf697b220be628213034d320ece": { - "address": "0x2de509bf0014ddf697b220be628213034d320ece", - "symbol": "DBI", - "decimals": 18, - "name": "Don t Buy Inu", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x2de509bf0014ddf697b220be628213034d320ece.png", - "aggregators": [ - "CoinMarketCap", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x2602278ee1882889b946eb11dc0e810075650983": { - "address": "0x2602278ee1882889b946eb11dc0e810075650983", - "symbol": "VADER", - "decimals": 18, - "name": "Vader Protocol", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x2602278ee1882889b946eb11dc0e810075650983.png", - "aggregators": [ - "CoinMarketCap", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x20c3fa331a385b63ee39137e99d0cf2db142fce1": { - "address": "0x20c3fa331a385b63ee39137e99d0cf2db142fce1", - "symbol": "SHIL", - "decimals": 18, - "name": "Shila Inu", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x20c3fa331a385b63ee39137e99d0cf2db142fce1.png", - "aggregators": [ - "CoinMarketCap", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x7f0c8b125040f707441cad9e5ed8a8408673b455": { - "address": "0x7f0c8b125040f707441cad9e5ed8a8408673b455", - "symbol": "NEBO", - "decimals": 18, - "name": "Kinetic Kollective", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x7f0c8b125040f707441cad9e5ed8a8408673b455.png", - "aggregators": [ - "CoinMarketCap", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x6f222e04f6c53cc688ffb0abe7206aac66a8ff98": { - "address": "0x6f222e04f6c53cc688ffb0abe7206aac66a8ff98", - "symbol": "ROKO", - "decimals": 18, - "name": "Roko Network", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x6f222e04f6c53cc688ffb0abe7206aac66a8ff98.png", - "aggregators": [ - "CoinMarketCap", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x411099c0b413f4feddb10edf6a8be63bd321311c": { - "address": "0x411099c0b413f4feddb10edf6a8be63bd321311c", - "symbol": "HELLO", - "decimals": 18, - "name": "HELLO", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x411099c0b413f4feddb10edf6a8be63bd321311c.png", - "aggregators": [ - "CoinMarketCap", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0xf921ae2dac5fa128dc0f6168bf153ea0943d2d43": { - "address": "0xf921ae2dac5fa128dc0f6168bf153ea0943d2d43", - "symbol": "FIRE", - "decimals": 8, - "name": "Fire Protocol", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xf921ae2dac5fa128dc0f6168bf153ea0943d2d43.png", - "aggregators": [ - "CoinMarketCap", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x82d36570842fc1ac2a3b4dbe0e7c5c0e2e665090": { - "address": "0x82d36570842fc1ac2a3b4dbe0e7c5c0e2e665090", - "symbol": "NFNT", - "decimals": 18, - "name": "nfinityAI", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x82d36570842fc1ac2a3b4dbe0e7c5c0e2e665090.png", - "aggregators": [ - "CoinMarketCap", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0xd1b89856d82f978d049116eba8b7f9df2f342ff3": { - "address": "0xd1b89856d82f978d049116eba8b7f9df2f342ff3", - "symbol": "PEPO", - "decimals": 9, - "name": "Peepo", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xd1b89856d82f978d049116eba8b7f9df2f342ff3.png", - "aggregators": [ - "CoinMarketCap", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x03042482d64577a7bdb282260e2ea4c8a89c064b": { - "address": "0x03042482d64577a7bdb282260e2ea4c8a89c064b", - "symbol": "CNTR", - "decimals": 18, - "name": "Centaur", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x03042482d64577a7bdb282260e2ea4c8a89c064b.png", - "aggregators": [ - "CoinMarketCap", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x069f01cdd1e32d7bab5fc81527df191835136c9d": { - "address": "0x069f01cdd1e32d7bab5fc81527df191835136c9d", - "symbol": "APUGURL", - "decimals": 9, - "name": "Apu Gurl", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x069f01cdd1e32d7bab5fc81527df191835136c9d.png", - "aggregators": [ - "CoinMarketCap", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0xe8ff5c9c75deb346acac493c463c8950be03dfba": { - "address": "0xe8ff5c9c75deb346acac493c463c8950be03dfba", - "symbol": "VIBE", - "decimals": 18, - "name": "VIBE", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xe8ff5c9c75deb346acac493c463c8950be03dfba.png", - "aggregators": [ - "CoinMarketCap", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0xaec613188b1e178d42a05d352044d54854c3196a": { - "address": "0xaec613188b1e178d42a05d352044d54854c3196a", - "symbol": "DESCI", - "decimals": 18, - "name": "SUI Desci Agents", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xaec613188b1e178d42a05d352044d54854c3196a.png", - "aggregators": [ - "CoinMarketCap", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0xc07a150ecadf2cc352f5586396e344a6b17625eb": { - "address": "0xc07a150ecadf2cc352f5586396e344a6b17625eb", - "symbol": "BIOT", - "decimals": 9, - "name": "Bio Passport", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xc07a150ecadf2cc352f5586396e344a6b17625eb.png", - "aggregators": [ - "CoinMarketCap", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0xf8ad7dfe656188a23e89da09506adf7ad9290d5d": { - "address": "0xf8ad7dfe656188a23e89da09506adf7ad9290d5d", - "symbol": "BLY", - "decimals": 18, - "name": "Blocery Token", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xf8ad7dfe656188a23e89da09506adf7ad9290d5d.png", - "aggregators": [ - "CoinMarketCap", - "Rubic", - "Rango", - "Sonarwatch", - "Bancor" - ], - "occurrences": 5 - }, - "0xb19dd661f076998e3b0456935092a233e12c2280": { - "address": "0xb19dd661f076998e3b0456935092a233e12c2280", - "symbol": "UM", - "decimals": 18, - "name": "Continuum World", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xb19dd661f076998e3b0456935092a233e12c2280.png", - "aggregators": [ - "CoinMarketCap", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x55a380d134d722006a5ce2d510562e1239d225b1": { - "address": "0x55a380d134d722006a5ce2d510562e1239d225b1", - "symbol": "MARVIN", - "decimals": 18, - "name": "Marvin Inu", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x55a380d134d722006a5ce2d510562e1239d225b1.png", - "aggregators": [ - "CoinMarketCap", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0xa0bbbe391b0d0957f1d013381b643041d2ca4022": { - "address": "0xa0bbbe391b0d0957f1d013381b643041d2ca4022", - "symbol": "SHIN", - "decimals": 18, - "name": "Shina Inu", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xa0bbbe391b0d0957f1d013381b643041d2ca4022.png", - "aggregators": [ - "CoinMarketCap", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0xe3b9cfb8ea8a4f1279fbc28d3e15b4d2d86f18a0": { - "address": "0xe3b9cfb8ea8a4f1279fbc28d3e15b4d2d86f18a0", - "symbol": "FOTTIE", - "decimals": 9, - "name": "Fottie", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xe3b9cfb8ea8a4f1279fbc28d3e15b4d2d86f18a0.png", - "aggregators": [ - "CoinMarketCap", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0xd7c302fc3ac829c7e896a32c4bd126f3e8bd0a1f": { - "address": "0xd7c302fc3ac829c7e896a32c4bd126f3e8bd0a1f", - "symbol": "B2M", - "decimals": 18, - "name": "Bit2Me", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xd7c302fc3ac829c7e896a32c4bd126f3e8bd0a1f.png", - "aggregators": [ - "CoinMarketCap", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x4297394c20800e8a38a619a243e9bbe7681ff24e": { - "address": "0x4297394c20800e8a38a619a243e9bbe7681ff24e", - "symbol": "HOTCROSS", - "decimals": 18, - "name": "Hot Cross", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x4297394c20800e8a38a619a243e9bbe7681ff24e.png", - "aggregators": [ - "CoinMarketCap", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x2077d81d0c5258230d5a195233941547cb5f0989": { - "address": "0x2077d81d0c5258230d5a195233941547cb5f0989", - "symbol": "TROG", - "decimals": 9, - "name": "Trog", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x2077d81d0c5258230d5a195233941547cb5f0989.png", - "aggregators": [ - "CoinMarketCap", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x6c936d4ae98e6d2172db18c16c4b601c99918ee6": { - "address": "0x6c936d4ae98e6d2172db18c16c4b601c99918ee6", - "symbol": "LIFE", - "decimals": 18, - "name": "Life Crypto", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x6c936d4ae98e6d2172db18c16c4b601c99918ee6.png", - "aggregators": [ - "CoinMarketCap", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0xb53ecf1345cabee6ea1a65100ebb153cebcac40f": { - "address": "0xb53ecf1345cabee6ea1a65100ebb153cebcac40f", - "symbol": "O", - "decimals": 18, - "name": "Childhoods End", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xb53ecf1345cabee6ea1a65100ebb153cebcac40f.png", - "aggregators": [ - "CoinMarketCap", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x9f4909cc95fb870bf48c128c1fdbb5f482797632": { - "address": "0x9f4909cc95fb870bf48c128c1fdbb5f482797632", - "symbol": "GZLR", - "decimals": 18, - "name": "Guzzler", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x9f4909cc95fb870bf48c128c1fdbb5f482797632.png", - "aggregators": [ - "CoinMarketCap", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x85614a474dbeed440d5bbdb8ac50b0f22367f997": { - "address": "0x85614a474dbeed440d5bbdb8ac50b0f22367f997", - "symbol": "XVG", - "decimals": 18, - "name": "Verge ETH", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x85614a474dbeed440d5bbdb8ac50b0f22367f997.png", - "aggregators": [ - "CoinGecko", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0xa5c45d48d36607741e90c0cca29545a46f5ee121": { - "address": "0xa5c45d48d36607741e90c0cca29545a46f5ee121", - "symbol": "CHIB", - "decimals": 9, - "name": "Chiba Wan", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xa5c45d48d36607741e90c0cca29545a46f5ee121.png", - "aggregators": [ - "CoinMarketCap", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x52498f8d9791736f1d6398fe95ba3bd868114d10": { - "address": "0x52498f8d9791736f1d6398fe95ba3bd868114d10", - "symbol": "NETVR", - "decimals": 18, - "name": "Netvrk", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x52498f8d9791736f1d6398fe95ba3bd868114d10.png", - "aggregators": [ - "CoinMarketCap", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x4dfae3690b93c47470b03036a17b23c1be05127c": { - "address": "0x4dfae3690b93c47470b03036a17b23c1be05127c", - "symbol": "PEPE", - "decimals": 18, - "name": "The Original Pepe", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x4dfae3690b93c47470b03036a17b23c1be05127c.png", - "aggregators": [ - "CoinGecko", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0xb8a914a00664e9361eae187468eff94905dfbc15": { - "address": "0xb8a914a00664e9361eae187468eff94905dfbc15", - "symbol": "DRIP", - "decimals": 9, - "name": "DRIP", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xb8a914a00664e9361eae187468eff94905dfbc15.png", - "aggregators": [ - "CoinMarketCap", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0xe75f2acafba1ad56c5ed712ffbc1d31910e74396": { - "address": "0xe75f2acafba1ad56c5ed712ffbc1d31910e74396", - "symbol": "KAI", - "decimals": 18, - "name": "Komputai", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xe75f2acafba1ad56c5ed712ffbc1d31910e74396.png", - "aggregators": [ - "CoinGecko", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x3175df0976dfa876431c2e9ee6bc45b65d3473cc": { - "address": "0x3175df0976dfa876431c2e9ee6bc45b65d3473cc", - "symbol": "CRVFRAX", - "decimals": 18, - "name": "Curve fi FRAX USDC", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x3175df0976dfa876431c2e9ee6bc45b65d3473cc.png", - "aggregators": [ - "CoinMarketCap", - "LiFi", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x68aaa0d94ea163b9bbf659dc3766defb4c0ac7be": { - "address": "0x68aaa0d94ea163b9bbf659dc3766defb4c0ac7be", - "symbol": "ANDYMAN", - "decimals": 9, - "name": "Andyman", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x68aaa0d94ea163b9bbf659dc3766defb4c0ac7be.png", - "aggregators": [ - "CoinMarketCap", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x393bf304dd474f48210f5ce741f19a2a851703ca": { - "address": "0x393bf304dd474f48210f5ce741f19a2a851703ca", - "symbol": "BALL", - "decimals": 18, - "name": "Game 5 BALL", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x393bf304dd474f48210f5ce741f19a2a851703ca.png", - "aggregators": [ - "CoinMarketCap", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0xd7fa4cfc22ea07dfced53033fbe59d8b62b8ee9e": { - "address": "0xd7fa4cfc22ea07dfced53033fbe59d8b62b8ee9e", - "symbol": "VYPER", - "decimals": 18, - "name": "VYPER WIN", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xd7fa4cfc22ea07dfced53033fbe59d8b62b8ee9e.png", - "aggregators": [ - "CoinMarketCap", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x4ade2b180f65ed752b6f1296d0418ad21eb578c0": { - "address": "0x4ade2b180f65ed752b6f1296d0418ad21eb578c0", - "symbol": "KEK", - "decimals": 9, - "name": "Kekistan", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x4ade2b180f65ed752b6f1296d0418ad21eb578c0.png", - "aggregators": [ - "CoinMarketCap", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0xf4172630a656a47ece8616e75791290446fa41a0": { - "address": "0xf4172630a656a47ece8616e75791290446fa41a0", - "symbol": "PEPPA", - "decimals": 2, - "name": "PEPPA", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xf4172630a656a47ece8616e75791290446fa41a0.png", - "aggregators": [ - "CoinMarketCap", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x420110d74c4c3ea14043a09e81fad53e1932f54c": { - "address": "0x420110d74c4c3ea14043a09e81fad53e1932f54c", - "symbol": "GROGGO", - "decimals": 18, - "name": "Groggo By Matt Furie", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x420110d74c4c3ea14043a09e81fad53e1932f54c.png", - "aggregators": [ - "CoinMarketCap", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0xc9bd7011ee97a13dc07087e01499a769ab7e75b4": { - "address": "0xc9bd7011ee97a13dc07087e01499a769ab7e75b4", - "symbol": "PEEZY", - "decimals": 9, - "name": "Peezy", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xc9bd7011ee97a13dc07087e01499a769ab7e75b4.png", - "aggregators": [ - "CoinMarketCap", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0xfe8526a77a2c3590e5973ba81308b90bea21fbff": { - "address": "0xfe8526a77a2c3590e5973ba81308b90bea21fbff", - "symbol": "WAI", - "decimals": 18, - "name": "WienerAI", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xfe8526a77a2c3590e5973ba81308b90bea21fbff.png", - "aggregators": [ - "CoinMarketCap", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x6e79b51959cf968d87826592f46f819f92466615": { - "address": "0x6e79b51959cf968d87826592f46f819f92466615", - "symbol": "HOPPY", - "decimals": 9, - "name": "Hoppy", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x6e79b51959cf968d87826592f46f819f92466615.png", - "aggregators": [ - "Metamask", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x6ef6610d24593805144d73b13d4405e00a4e4ac7": { - "address": "0x6ef6610d24593805144d73b13d4405e00a4e4ac7", - "symbol": "DIE", - "decimals": 18, - "name": "Die Protocol", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x6ef6610d24593805144d73b13d4405e00a4e4ac7.png", - "aggregators": [ - "CoinMarketCap", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x668c50b1c7f46effbe3f242687071d7908aab00a": { - "address": "0x668c50b1c7f46effbe3f242687071d7908aab00a", - "symbol": "COSHI", - "decimals": 9, - "name": "CoShi Inu", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x668c50b1c7f46effbe3f242687071d7908aab00a.png", - "aggregators": [ - "CoinMarketCap", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x2b7c0fa747611d4412b54076c62119926474edb3": { - "address": "0x2b7c0fa747611d4412b54076c62119926474edb3", - "symbol": "NCAT", - "decimals": 9, - "name": "Neuracat", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x2b7c0fa747611d4412b54076c62119926474edb3.png", - "aggregators": [ - "CoinMarketCap", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0xc8388e437031b09b2c61fc4277469091382a1b13": { - "address": "0xc8388e437031b09b2c61fc4277469091382a1b13", - "symbol": "SHOG", - "decimals": 18, - "name": "SHOG", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xc8388e437031b09b2c61fc4277469091382a1b13.png", - "aggregators": [ - "CoinMarketCap", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x48c276e8d03813224bb1e55f953adb6d02fd3e02": { - "address": "0x48c276e8d03813224bb1e55f953adb6d02fd3e02", - "symbol": "KUMA", - "decimals": 18, - "name": "Kuma Inu", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x48c276e8d03813224bb1e55f953adb6d02fd3e02.png", - "aggregators": [ - "CoinMarketCap", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x535887989b9edffb63b1fd5c6b99a4d45443b49a": { - "address": "0x535887989b9edffb63b1fd5c6b99a4d45443b49a", - "symbol": "TRUMP47", - "decimals": 9, - "name": "47th POTUS", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x535887989b9edffb63b1fd5c6b99a4d45443b49a.png", - "aggregators": [ - "CoinMarketCap", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0xda23d301761e4e2bf474951f978f6dfb6f3c9f14": { - "address": "0xda23d301761e4e2bf474951f978f6dfb6f3c9f14", - "symbol": "TKINU", - "decimals": 9, - "name": "Tsuki Inu", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xda23d301761e4e2bf474951f978f6dfb6f3c9f14.png", - "aggregators": [ - "CoinMarketCap", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0xb612bfc5ce2fb1337bd29f5af24ca85dbb181ce2": { - "address": "0xb612bfc5ce2fb1337bd29f5af24ca85dbb181ce2", - "symbol": "KLAUS", - "decimals": 9, - "name": "KLAUS", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xb612bfc5ce2fb1337bd29f5af24ca85dbb181ce2.png", - "aggregators": [ - "CoinMarketCap", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x97b65710d03e12775189f0d113202cc1443b0aa2": { - "address": "0x97b65710d03e12775189f0d113202cc1443b0aa2", - "symbol": "ELONONE", - "decimals": 9, - "name": "AstroElon", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x97b65710d03e12775189f0d113202cc1443b0aa2.png", - "aggregators": [ - "CoinMarketCap", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x03d1e72765545729a035e909edd9371a405f77fb": { - "address": "0x03d1e72765545729a035e909edd9371a405f77fb", - "symbol": "NABOX", - "decimals": 18, - "name": "Nabox", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x03d1e72765545729a035e909edd9371a405f77fb.png", - "aggregators": [ - "CoinMarketCap", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x1341a2257fa7b770420ef70616f888056f90926c": { - "address": "0x1341a2257fa7b770420ef70616f888056f90926c", - "symbol": "ZOOT", - "decimals": 9, - "name": "Zoo", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x1341a2257fa7b770420ef70616f888056f90926c.png", - "aggregators": [ - "CoinMarketCap", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0xf10da48d4aaa8d784c5e369cb998e263cfe32aa8": { - "address": "0xf10da48d4aaa8d784c5e369cb998e263cfe32aa8", - "symbol": "BMONEY", - "decimals": 9, - "name": "B MONEY", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xf10da48d4aaa8d784c5e369cb998e263cfe32aa8.png", - "aggregators": [ - "CoinMarketCap", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0xea4a2327e75252517535fd013b7c6706609819db": { - "address": "0xea4a2327e75252517535fd013b7c6706609819db", - "symbol": "SNS", - "decimals": 18, - "name": "Shibarium Name Service", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xea4a2327e75252517535fd013b7c6706609819db.png", - "aggregators": [ - "CoinMarketCap", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0xf1a7000000950c7ad8aff13118bb7ab561a448ee": { - "address": "0xf1a7000000950c7ad8aff13118bb7ab561a448ee", - "symbol": "FLAY", - "decimals": 18, - "name": "Flayer", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xf1a7000000950c7ad8aff13118bb7ab561a448ee.png", - "aggregators": [ - "CoinMarketCap", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0xe7c6bf469e97eeb0bfb74c8dbff5bd47d4c1c98a": { - "address": "0xe7c6bf469e97eeb0bfb74c8dbff5bd47d4c1c98a", - "symbol": "HSK", - "decimals": 18, - "name": "HashKey Platform Token", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xe7c6bf469e97eeb0bfb74c8dbff5bd47d4c1c98a.png", - "aggregators": [ - "CoinMarketCap", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0xc5b3d3231001a776123194cf1290068e8b0c783b": { - "address": "0xc5b3d3231001a776123194cf1290068e8b0c783b", - "symbol": "LIT", - "decimals": 18, - "name": "LIT", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xc5b3d3231001a776123194cf1290068e8b0c783b.png", - "aggregators": [ - "CoinMarketCap", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x1fac00ccee478eced6a120a50ed2ab28ee7fe32b": { - "address": "0x1fac00ccee478eced6a120a50ed2ab28ee7fe32b", - "symbol": "TUNE", - "decimals": 18, - "name": "Bitune", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x1fac00ccee478eced6a120a50ed2ab28ee7fe32b.png", - "aggregators": [ - "CoinMarketCap", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0xf4b5470523ccd314c6b9da041076e7d79e0df267": { - "address": "0xf4b5470523ccd314c6b9da041076e7d79e0df267", - "symbol": "BBANK", - "decimals": 18, - "name": "blockbank", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xf4b5470523ccd314c6b9da041076e7d79e0df267.png", - "aggregators": [ - "CoinMarketCap", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x2e2e7a1f05946ecb2b43b99e3fc2984fa7d7e3bc": { - "address": "0x2e2e7a1f05946ecb2b43b99e3fc2984fa7d7e3bc", - "symbol": "ANDWU", - "decimals": 9, - "name": "Chinese Andy", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x2e2e7a1f05946ecb2b43b99e3fc2984fa7d7e3bc.png", - "aggregators": [ - "CoinMarketCap", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x8530b66ca3ddf50e0447eae8ad7ea7d5e62762ed": { - "address": "0x8530b66ca3ddf50e0447eae8ad7ea7d5e62762ed", - "symbol": "METADOGE", - "decimals": 18, - "name": "Meta Doge", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x8530b66ca3ddf50e0447eae8ad7ea7d5e62762ed.png", - "aggregators": [ - "CoinMarketCap", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x9be776559fed779cabd67042a7b8987aae592541": { - "address": "0x9be776559fed779cabd67042a7b8987aae592541", - "symbol": "BULL", - "decimals": 18, - "name": "Bull Market", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x9be776559fed779cabd67042a7b8987aae592541.png", - "aggregators": [ - "CoinMarketCap", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x5f944b0c4315cb7c3a846b025ab4045da44abf6c": { - "address": "0x5f944b0c4315cb7c3a846b025ab4045da44abf6c", - "symbol": "GCAKE", - "decimals": 18, - "name": "Pancake Games", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x5f944b0c4315cb7c3a846b025ab4045da44abf6c.png", - "aggregators": [ - "CoinMarketCap", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x38a94e92a19e970c144ded0b2dd47278ca11cc1f": { - "address": "0x38a94e92a19e970c144ded0b2dd47278ca11cc1f", - "symbol": "F9", - "decimals": 9, - "name": "Falcon Nine", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x38a94e92a19e970c144ded0b2dd47278ca11cc1f.png", - "aggregators": [ - "CoinMarketCap", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x9e04f519b094f5f8210441e285f603f4d2b50084": { - "address": "0x9e04f519b094f5f8210441e285f603f4d2b50084", - "symbol": "1EARTH", - "decimals": 18, - "name": "EarthFund", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x9e04f519b094f5f8210441e285f603f4d2b50084.png", - "aggregators": [ - "CoinMarketCap", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0xa1817b6d8d890f3943b61648992730373b71f156": { - "address": "0xa1817b6d8d890f3943b61648992730373b71f156", - "symbol": "MONGOOSE", - "decimals": 9, - "name": "Mongoose", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xa1817b6d8d890f3943b61648992730373b71f156.png", - "aggregators": [ - "CoinMarketCap", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x2f141ce366a2462f02cea3d12cf93e4dca49e4fd": { - "address": "0x2f141ce366a2462f02cea3d12cf93e4dca49e4fd", - "symbol": "FREE", - "decimals": 18, - "name": "FREEdom coin", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x2f141ce366a2462f02cea3d12cf93e4dca49e4fd.png", - "aggregators": [ - "CoinMarketCap", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0xda7c0810ce6f8329786160bb3d1734cf6661ca6e": { - "address": "0xda7c0810ce6f8329786160bb3d1734cf6661ca6e", - "symbol": "JAY", - "decimals": 18, - "name": "Jaypeggers", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xda7c0810ce6f8329786160bb3d1734cf6661ca6e.png", - "aggregators": [ - "CoinMarketCap", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x70edf1c215d0ce69e7f16fd4e6276ba0d99d4de7": { - "address": "0x70edf1c215d0ce69e7f16fd4e6276ba0d99d4de7", - "symbol": "CHEQ", - "decimals": 9, - "name": "CHEQD Network", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x70edf1c215d0ce69e7f16fd4e6276ba0d99d4de7.png", - "aggregators": [ - "CoinMarketCap", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x62f03b52c377fea3eb71d451a95ad86c818755d1": { - "address": "0x62f03b52c377fea3eb71d451a95ad86c818755d1", - "symbol": "DOGEVERSE", - "decimals": 18, - "name": "DogeVerse", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x62f03b52c377fea3eb71d451a95ad86c818755d1.png", - "aggregators": [ - "CoinMarketCap", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0xaee9ba9ce49fe810417a36408e34d9962b653e78": { - "address": "0xaee9ba9ce49fe810417a36408e34d9962b653e78", - "symbol": "SNIBBU", - "decimals": 9, - "name": "Snibbu", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xaee9ba9ce49fe810417a36408e34d9962b653e78.png", - "aggregators": [ - "CoinGecko", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0xdda31d354a519ecfb0bc2a536b5e7be147c0f7f4": { - "address": "0xdda31d354a519ecfb0bc2a536b5e7be147c0f7f4", - "symbol": "ELDG", - "decimals": 18, - "name": "Everlodge", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xdda31d354a519ecfb0bc2a536b5e7be147c0f7f4.png", - "aggregators": [ - "CoinGecko", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x39207d2e2feef178fbda8083914554c59d9f8c00": { - "address": "0x39207d2e2feef178fbda8083914554c59d9f8c00", - "symbol": "INUS", - "decimals": 18, - "name": "MultiPlanetary Inus", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x39207d2e2feef178fbda8083914554c59d9f8c00.png", - "aggregators": [ - "CoinMarketCap", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x2d8ea194902bc55431420bd26be92b0782dce91d": { - "address": "0x2d8ea194902bc55431420bd26be92b0782dce91d", - "symbol": "ZND", - "decimals": 18, - "name": "ZND Token", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x2d8ea194902bc55431420bd26be92b0782dce91d.png", - "aggregators": [ - "CoinMarketCap", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0xc9b6a17ebb43491635f603a01f8bb3e4b5d22228": { - "address": "0xc9b6a17ebb43491635f603a01f8bb3e4b5d22228", - "symbol": "MAGA", - "decimals": 9, - "name": "MAGA Coin ETH", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xc9b6a17ebb43491635f603a01f8bb3e4b5d22228.png", - "aggregators": [ - "CoinMarketCap", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x88800092ff476844f74dc2fc427974bbee2794ae": { - "address": "0x88800092ff476844f74dc2fc427974bbee2794ae", - "symbol": "WALLET", - "decimals": 18, - "name": "Ambire Wallet", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x88800092ff476844f74dc2fc427974bbee2794ae.png", - "aggregators": [ - "CoinMarketCap", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x986ee2b944c42d017f52af21c4c69b84dbea35d8": { - "address": "0x986ee2b944c42d017f52af21c4c69b84dbea35d8", - "symbol": "BMC", - "decimals": 18, - "name": "BitMartToken", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x986ee2b944c42d017f52af21c4c69b84dbea35d8.png", - "aggregators": [ - "Metamask", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x59d1e836f7b7210a978b25a855085cc46fd090b5": { - "address": "0x59d1e836f7b7210a978b25a855085cc46fd090b5", - "symbol": "JUSTICE", - "decimals": 18, - "name": "AssangeDAO", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x59d1e836f7b7210a978b25a855085cc46fd090b5.png", - "aggregators": [ - "CoinMarketCap", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x3927fb89f34bbee63351a6340558eebf51a19fb8": { - "address": "0x3927fb89f34bbee63351a6340558eebf51a19fb8", - "symbol": "SPURDO", - "decimals": 18, - "name": "SPURDO ON ETH", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x3927fb89f34bbee63351a6340558eebf51a19fb8.png", - "aggregators": [ - "CoinMarketCap", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0xa6586e19ef681b1ac0ed3d46413d199a555dbb95": { - "address": "0xa6586e19ef681b1ac0ed3d46413d199a555dbb95", - "symbol": "LETSGO", - "decimals": 18, - "name": "Lets Go Brandon", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xa6586e19ef681b1ac0ed3d46413d199a555dbb95.png", - "aggregators": [ - "CoinMarketCap", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x069e4aa272d17d9625aa3b6f863c7ef6cfb96713": { - "address": "0x069e4aa272d17d9625aa3b6f863c7ef6cfb96713", - "symbol": "BULEI", - "decimals": 9, - "name": "Bulei", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x069e4aa272d17d9625aa3b6f863c7ef6cfb96713.png", - "aggregators": [ - "CoinMarketCap", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x4ff57e25eeb7affbbb060e0bad2e1759efc8bec4": { - "address": "0x4ff57e25eeb7affbbb060e0bad2e1759efc8bec4", - "symbol": "BLOCX", - "decimals": 18, - "name": "BLOCX", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x4ff57e25eeb7affbbb060e0bad2e1759efc8bec4.png", - "aggregators": [ - "CoinMarketCap", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x489d79959e6ad1e3fef7c939a2d889deff1668a8": { - "address": "0x489d79959e6ad1e3fef7c939a2d889deff1668a8", - "symbol": "HOTTIE", - "decimals": 18, - "name": "Hottie Froggie", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x489d79959e6ad1e3fef7c939a2d889deff1668a8.png", - "aggregators": [ - "CoinGecko", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0xb44377b74ef1773639b663d0754cb8410a847d02": { - "address": "0xb44377b74ef1773639b663d0754cb8410a847d02", - "symbol": "DREAM", - "decimals": 18, - "name": "Dream", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xb44377b74ef1773639b663d0754cb8410a847d02.png", - "aggregators": [ - "CoinMarketCap", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0xa71d0588eaf47f12b13cf8ec750430d21df04974": { - "address": "0xa71d0588eaf47f12b13cf8ec750430d21df04974", - "symbol": "QOM", - "decimals": 18, - "name": "Shiba Predator", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xa71d0588eaf47f12b13cf8ec750430d21df04974.png", - "aggregators": [ - "CoinMarketCap", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x104f3152d8ebfc3f679392977356962ff36566ac": { - "address": "0x104f3152d8ebfc3f679392977356962ff36566ac", - "symbol": "PORTX", - "decimals": 18, - "name": "ChainPort", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x104f3152d8ebfc3f679392977356962ff36566ac.png", - "aggregators": [ - "CoinMarketCap", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0xc1f33e0cf7e40a67375007104b929e49a581bafe": { - "address": "0xc1f33e0cf7e40a67375007104b929e49a581bafe", - "symbol": "SPOT", - "decimals": 9, - "name": "Spot", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xc1f33e0cf7e40a67375007104b929e49a581bafe.png", - "aggregators": [ - "CoinMarketCap", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x77f9cf0bd8c500cffdf420e72343893aecc2ec0b": { - "address": "0x77f9cf0bd8c500cffdf420e72343893aecc2ec0b", - "symbol": "LAIKA", - "decimals": 18, - "name": "Laika", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x77f9cf0bd8c500cffdf420e72343893aecc2ec0b.png", - "aggregators": [ - "CoinMarketCap", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x2d9996f3b9d2e73540fdbfdfe81d71e9e08cbf03": { - "address": "0x2d9996f3b9d2e73540fdbfdfe81d71e9e08cbf03", - "symbol": "BOYSCLUB", - "decimals": 9, - "name": "BoysClub", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x2d9996f3b9d2e73540fdbfdfe81d71e9e08cbf03.png", - "aggregators": [ - "CoinMarketCap", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x3c48ca59bf2699e51d4974d4b6d284ae52076e5e": { - "address": "0x3c48ca59bf2699e51d4974d4b6d284ae52076e5e", - "symbol": "CDS", - "decimals": 18, - "name": "Capital DAO Starter", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x3c48ca59bf2699e51d4974d4b6d284ae52076e5e.png", - "aggregators": [ - "CoinMarketCap", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x33f289d91286535c47270c8479f6776fb3adeb3e": { - "address": "0x33f289d91286535c47270c8479f6776fb3adeb3e", - "symbol": "BXBT", - "decimals": 18, - "name": "BoxBet", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x33f289d91286535c47270c8479f6776fb3adeb3e.png", - "aggregators": [ - "CoinMarketCap", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x6a8fee0e33cb65a7e8d21badca62e87639ef74b3": { - "address": "0x6a8fee0e33cb65a7e8d21badca62e87639ef74b3", - "symbol": "PDX", - "decimals": 18, - "name": "PDX Coin", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x6a8fee0e33cb65a7e8d21badca62e87639ef74b3.png", - "aggregators": [ - "CoinGecko", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x19e2a43fbbc643c3b2d9667d858d49cad17bc2b5": { - "address": "0x19e2a43fbbc643c3b2d9667d858d49cad17bc2b5", - "symbol": "BNS", - "decimals": 8, - "name": "BNS", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x19e2a43fbbc643c3b2d9667d858d49cad17bc2b5.png", - "aggregators": [ - "CoinGecko", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x4521c9ad6a3d4230803ab752ed238be11f8b342f": { - "address": "0x4521c9ad6a3d4230803ab752ed238be11f8b342f", - "symbol": "SANI", - "decimals": 18, - "name": "Sanin Inu", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x4521c9ad6a3d4230803ab752ed238be11f8b342f.png", - "aggregators": [ - "CoinMarketCap", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x602f65bb8b8098ad804e99db6760fd36208cd967": { - "address": "0x602f65bb8b8098ad804e99db6760fd36208cd967", - "symbol": "MOPS", - "decimals": 18, - "name": "Mops", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x602f65bb8b8098ad804e99db6760fd36208cd967.png", - "aggregators": [ - "CoinMarketCap", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x24ccedebf841544c9e6a62af4e8c2fa6e5a46fde": { - "address": "0x24ccedebf841544c9e6a62af4e8c2fa6e5a46fde", - "symbol": "BLUESPARROW", - "decimals": 9, - "name": "BlueSparrow", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x24ccedebf841544c9e6a62af4e8c2fa6e5a46fde.png", - "aggregators": [ - "CoinMarketCap", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0xea60cd69f2b9fd6eb067bddbbf86a5bdeffbbc55": { - "address": "0xea60cd69f2b9fd6eb067bddbbf86a5bdeffbbc55", - "symbol": "WECAN", - "decimals": 18, - "name": "Wecan", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xea60cd69f2b9fd6eb067bddbbf86a5bdeffbbc55.png", - "aggregators": [ - "CoinMarketCap", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0xfd2cf2202f049064865dc32c6cf81eeb34074b39": { - "address": "0xfd2cf2202f049064865dc32c6cf81eeb34074b39", - "symbol": "DGH", - "decimals": 18, - "name": "DigiHealth", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xfd2cf2202f049064865dc32c6cf81eeb34074b39.png", - "aggregators": [ - "CoinMarketCap", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x998ffe1e43facffb941dc337dd0468d52ba5b48a": { - "address": "0x998ffe1e43facffb941dc337dd0468d52ba5b48a", - "symbol": "IDRT", - "decimals": 2, - "name": "Rupiah Token", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x998ffe1e43facffb941dc337dd0468d52ba5b48a.png", - "aggregators": [ - "Metamask", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x5d0ebc4ec5ac18d30512fb6287886245061b3dbd": { - "address": "0x5d0ebc4ec5ac18d30512fb6287886245061b3dbd", - "symbol": "GATSBY", - "decimals": 9, - "name": "Gatsby Inu", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x5d0ebc4ec5ac18d30512fb6287886245061b3dbd.png", - "aggregators": [ - "CoinMarketCap", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x59a529070fbb61e6d6c91f952ccb7f35c34cf8aa": { - "address": "0x59a529070fbb61e6d6c91f952ccb7f35c34cf8aa", - "symbol": "ASF", - "decimals": 18, - "name": "Asymmetry Finance", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x59a529070fbb61e6d6c91f952ccb7f35c34cf8aa.png", - "aggregators": [ - "CoinMarketCap", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0xd5930c307d7395ff807f2921f12c5eb82131a789": { - "address": "0xd5930c307d7395ff807f2921f12c5eb82131a789", - "symbol": "BOLT", - "decimals": 18, - "name": "Bolt", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xd5930c307d7395ff807f2921f12c5eb82131a789.png", - "aggregators": [ - "CoinMarketCap", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x53fd2342b43ecd24aef1535bc3797f509616ce8c": { - "address": "0x53fd2342b43ecd24aef1535bc3797f509616ce8c", - "symbol": "ANARCHY", - "decimals": 9, - "name": "Anarchy", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x53fd2342b43ecd24aef1535bc3797f509616ce8c.png", - "aggregators": [ - "CoinMarketCap", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x9a7703338730b82a803ba050df55f9b3959f3fb2": { - "address": "0x9a7703338730b82a803ba050df55f9b3959f3fb2", - "symbol": "CHIKUN", - "decimals": 9, - "name": "Arise Chikun", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x9a7703338730b82a803ba050df55f9b3959f3fb2.png", - "aggregators": [ - "CoinMarketCap", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x6a445e9f40e0b97c92d0b8a3366cef1d67f700bf": { - "address": "0x6a445e9f40e0b97c92d0b8a3366cef1d67f700bf", - "symbol": "FIDU", - "decimals": 18, - "name": "Fidu", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x6a445e9f40e0b97c92d0b8a3366cef1d67f700bf.png", - "aggregators": [ - "CoinGecko", - "Rubic", - "Squid", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x678e840c640f619e17848045d23072844224dd37": { - "address": "0x678e840c640f619e17848045d23072844224dd37", - "symbol": "CRTS", - "decimals": 18, - "name": "Cratos", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x678e840c640f619e17848045d23072844224dd37.png", - "aggregators": [ - "CoinMarketCap", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0xbd1848e1491d4308ad18287a745dd4db2a4bd55b": { - "address": "0xbd1848e1491d4308ad18287a745dd4db2a4bd55b", - "symbol": "MOMA", - "decimals": 18, - "name": "Mochi Market", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xbd1848e1491d4308ad18287a745dd4db2a4bd55b.png", - "aggregators": [ - "CoinMarketCap", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0xbe92b510007bd3ec0adb3d1fca338dd631e98de7": { - "address": "0xbe92b510007bd3ec0adb3d1fca338dd631e98de7", - "symbol": "DEGEN", - "decimals": 18, - "name": "DegensTogether", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xbe92b510007bd3ec0adb3d1fca338dd631e98de7.png", - "aggregators": [ - "CoinMarketCap", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x4b7c762af92dbd917d159eb282b85aa13e955739": { - "address": "0x4b7c762af92dbd917d159eb282b85aa13e955739", - "symbol": "POODL", - "decimals": 18, - "name": "Poodl Inu", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x4b7c762af92dbd917d159eb282b85aa13e955739.png", - "aggregators": [ - "CoinMarketCap", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x6b32022693210cd2cfc466b9ac0085de8fc34ea6": { - "address": "0x6b32022693210cd2cfc466b9ac0085de8fc34ea6", - "symbol": "DECI", - "decimals": 8, - "name": "Maximus DECI", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x6b32022693210cd2cfc466b9ac0085de8fc34ea6.png", - "aggregators": [ - "CoinMarketCap", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x599955aa9fbc197a1b717d8da6a7012cafe70ab3": { - "address": "0x599955aa9fbc197a1b717d8da6a7012cafe70ab3", - "symbol": "BOPE", - "decimals": 9, - "name": "Book of Pepe", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x599955aa9fbc197a1b717d8da6a7012cafe70ab3.png", - "aggregators": [ - "CoinMarketCap", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0xac1d3d7a8878e655cbb063d58e453540641f4117": { - "address": "0xac1d3d7a8878e655cbb063d58e453540641f4117", - "symbol": "TOAD", - "decimals": 18, - "name": "Acid Toad", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xac1d3d7a8878e655cbb063d58e453540641f4117.png", - "aggregators": [ - "CoinMarketCap", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x5ee84583f67d5ecea5420dbb42b462896e7f8d06": { - "address": "0x5ee84583f67d5ecea5420dbb42b462896e7f8d06", - "symbol": "PLSB", - "decimals": 12, - "name": "PulseBitcoin", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x5ee84583f67d5ecea5420dbb42b462896e7f8d06.png", - "aggregators": [ - "CoinMarketCap", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x505a84a03e382331a1be487b632cf357748b65d6": { - "address": "0x505a84a03e382331a1be487b632cf357748b65d6", - "symbol": "SHIBGF", - "decimals": 18, - "name": "SHIBGF", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x505a84a03e382331a1be487b632cf357748b65d6.png", - "aggregators": [ - "CoinMarketCap", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0xd794dd1cada4cf79c9eebaab8327a1b0507ef7d4": { - "address": "0xd794dd1cada4cf79c9eebaab8327a1b0507ef7d4", - "symbol": "HYVE", - "decimals": 18, - "name": "Hyve", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xd794dd1cada4cf79c9eebaab8327a1b0507ef7d4.png", - "aggregators": [ - "CoinMarketCap", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x9e10f61749c4952c320412a6b26901605ff6da1d": { - "address": "0x9e10f61749c4952c320412a6b26901605ff6da1d", - "symbol": "THEOS", - "decimals": 18, - "name": "Theos", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x9e10f61749c4952c320412a6b26901605ff6da1d.png", - "aggregators": [ - "CoinMarketCap", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0xab85fc558d722a2b7c040ffb77db676bd9e7d322": { - "address": "0xab85fc558d722a2b7c040ffb77db676bd9e7d322", - "symbol": "MOROS", - "decimals": 18, - "name": "MOROS NET", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xab85fc558d722a2b7c040ffb77db676bd9e7d322.png", - "aggregators": [ - "CoinMarketCap", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0xef6344de1fcfc5f48c30234c16c1389e8cdc572c": { - "address": "0xef6344de1fcfc5f48c30234c16c1389e8cdc572c", - "symbol": "DNA", - "decimals": 18, - "name": "EncrypGen", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xef6344de1fcfc5f48c30234c16c1389e8cdc572c.png", - "aggregators": [ - "CoinMarketCap", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x187df9748016da82578c83a61c3b3093ac6b8669": { - "address": "0x187df9748016da82578c83a61c3b3093ac6b8669", - "symbol": "KRAZY", - "decimals": 18, - "name": "krazy n d", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x187df9748016da82578c83a61c3b3093ac6b8669.png", - "aggregators": [ - "CoinMarketCap", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x2a961d752eaa791cbff05991e4613290aec0d9ac": { - "address": "0x2a961d752eaa791cbff05991e4613290aec0d9ac", - "symbol": "PATTON", - "decimals": 9, - "name": "Patton", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x2a961d752eaa791cbff05991e4613290aec0d9ac.png", - "aggregators": [ - "CoinMarketCap", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0xa876f27f13a9eb6e621202cefdd5afc4a90e6457": { - "address": "0xa876f27f13a9eb6e621202cefdd5afc4a90e6457", - "symbol": "IC", - "decimals": 9, - "name": "Icy", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xa876f27f13a9eb6e621202cefdd5afc4a90e6457.png", - "aggregators": [ - "CoinMarketCap", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0xf7554eac0bf20d702e69d08c425e817abb976aea": { - "address": "0xf7554eac0bf20d702e69d08c425e817abb976aea", - "symbol": "MAHA", - "decimals": 18, - "name": "Make America Healthy Again", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xf7554eac0bf20d702e69d08c425e817abb976aea.png", - "aggregators": [ - "CoinMarketCap", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0xbdcd291c32e06bbf2d7b1ffc823959e3258e3583": { - "address": "0xbdcd291c32e06bbf2d7b1ffc823959e3258e3583", - "symbol": "WASD", - "decimals": 9, - "name": "WASD Studios", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xbdcd291c32e06bbf2d7b1ffc823959e3258e3583.png", - "aggregators": [ - "CoinMarketCap", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x6c22910c6f75f828b305e57c6a54855d8adeabf8": { - "address": "0x6c22910c6f75f828b305e57c6a54855d8adeabf8", - "symbol": "SATS", - "decimals": 9, - "name": "Satoshis Vision", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x6c22910c6f75f828b305e57c6a54855d8adeabf8.png", - "aggregators": [ - "CoinMarketCap", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0xc4ee0aa2d993ca7c9263ecfa26c6f7e13009d2b6": { - "address": "0xc4ee0aa2d993ca7c9263ecfa26c6f7e13009d2b6", - "symbol": "HOICHI", - "decimals": 18, - "name": "Hoichi", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xc4ee0aa2d993ca7c9263ecfa26c6f7e13009d2b6.png", - "aggregators": [ - "CoinMarketCap", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0xeb575c45004bd7b61c6a8d3446a62a05a6ce18d8": { - "address": "0xeb575c45004bd7b61c6a8d3446a62a05a6ce18d8", - "symbol": "ELS", - "decimals": 18, - "name": "Ethlas", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xeb575c45004bd7b61c6a8d3446a62a05a6ce18d8.png", - "aggregators": [ - "CoinMarketCap", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0xc3681a720605bd6f8fe9a2fabff6a7cdecdc605d": { - "address": "0xc3681a720605bd6f8fe9a2fabff6a7cdecdc605d", - "symbol": "NIHAO", - "decimals": 18, - "name": "Nihao", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xc3681a720605bd6f8fe9a2fabff6a7cdecdc605d.png", - "aggregators": [ - "CoinMarketCap", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x13dbd5394c2c7e4bdb85b1838286faa66532a262": { - "address": "0x13dbd5394c2c7e4bdb85b1838286faa66532a262", - "symbol": "TZU", - "decimals": 18, - "name": "Sun Tzu", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x13dbd5394c2c7e4bdb85b1838286faa66532a262.png", - "aggregators": [ - "CoinMarketCap", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0xb939da54f9748440a1b279d42be1296942732288": { - "address": "0xb939da54f9748440a1b279d42be1296942732288", - "symbol": "FONZY", - "decimals": 18, - "name": "Fonzy", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xb939da54f9748440a1b279d42be1296942732288.png", - "aggregators": [ - "CoinMarketCap", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x7da2641000cbb407c329310c461b2cb9c70c3046": { - "address": "0x7da2641000cbb407c329310c461b2cb9c70c3046", - "symbol": "AGI", - "decimals": 18, - "name": "Delysium", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x7da2641000cbb407c329310c461b2cb9c70c3046.png", - "aggregators": [ - "CoinMarketCap", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0xad1a5b8538a866ecd56ddd328b50ed57ced5d936": { - "address": "0xad1a5b8538a866ecd56ddd328b50ed57ced5d936", - "symbol": "GENSLR", - "decimals": 18, - "name": "Good Gensler", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xad1a5b8538a866ecd56ddd328b50ed57ced5d936.png", - "aggregators": [ - "CoinMarketCap", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x80f0c1c49891dcfdd40b6e0f960f84e6042bcb6f": { - "address": "0x80f0c1c49891dcfdd40b6e0f960f84e6042bcb6f", - "symbol": "DXN", - "decimals": 18, - "name": "DBXen", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x80f0c1c49891dcfdd40b6e0f960f84e6042bcb6f.png", - "aggregators": [ - "CoinMarketCap", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x0d505c03d30e65f6e9b4ef88855a47a89e4b7676": { - "address": "0x0d505c03d30e65f6e9b4ef88855a47a89e4b7676", - "symbol": "ZOOMER", - "decimals": 18, - "name": "Zoomer", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x0d505c03d30e65f6e9b4ef88855a47a89e4b7676.png", - "aggregators": [ - "CoinMarketCap", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x577fee283e776eec29c9e4d258431982780a38a8": { - "address": "0x577fee283e776eec29c9e4d258431982780a38a8", - "symbol": "PEPA", - "decimals": 9, - "name": "Pepa ERC", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x577fee283e776eec29c9e4d258431982780a38a8.png", - "aggregators": [ - "CoinMarketCap", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0xee772cec929d8430b4fa7a01cd7fbd159a68aa83": { - "address": "0xee772cec929d8430b4fa7a01cd7fbd159a68aa83", - "symbol": "SHANG", - "decimals": 18, - "name": "Shanghai Inu", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xee772cec929d8430b4fa7a01cd7fbd159a68aa83.png", - "aggregators": [ - "CoinMarketCap", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0xad8d0de33c43eefe104a279cdb6ae250c12e6214": { - "address": "0xad8d0de33c43eefe104a279cdb6ae250c12e6214", - "symbol": "NARUTO", - "decimals": 9, - "name": "Naruto", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xad8d0de33c43eefe104a279cdb6ae250c12e6214.png", - "aggregators": [ - "CoinMarketCap", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0xe46091dce9c67691bcf22768bbee0bc9e20d4beb": { - "address": "0xe46091dce9c67691bcf22768bbee0bc9e20d4beb", - "symbol": "WSBC", - "decimals": 9, - "name": "WSB Classic", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xe46091dce9c67691bcf22768bbee0bc9e20d4beb.png", - "aggregators": [ - "CoinMarketCap", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x4c6e2c495b974b8d4220e370f23c7e0e1da9b644": { - "address": "0x4c6e2c495b974b8d4220e370f23c7e0e1da9b644", - "symbol": "SMILEY", - "decimals": 9, - "name": "Smiley Coin", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x4c6e2c495b974b8d4220e370f23c7e0e1da9b644.png", - "aggregators": [ - "CoinMarketCap", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x553afe6468949e0685959022217336717df5fbe8": { - "address": "0x553afe6468949e0685959022217336717df5fbe8", - "symbol": "PLT", - "decimals": 18, - "name": "Palette", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x553afe6468949e0685959022217336717df5fbe8.png", - "aggregators": [ - "CoinMarketCap", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x244b797d622d4dee8b188b03546acaabd0cf91a0": { - "address": "0x244b797d622d4dee8b188b03546acaabd0cf91a0", - "symbol": "FOUR", - "decimals": 18, - "name": "FourCoin", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x244b797d622d4dee8b188b03546acaabd0cf91a0.png", - "aggregators": [ - "CoinMarketCap", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x15f20f9dfdf96ccf6ac96653b7c0abfe4a9c9f0f": { - "address": "0x15f20f9dfdf96ccf6ac96653b7c0abfe4a9c9f0f", - "symbol": "WSB", - "decimals": 18, - "name": "Wall Street Baby", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x15f20f9dfdf96ccf6ac96653b7c0abfe4a9c9f0f.png", - "aggregators": [ - "CoinMarketCap", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0xb8c55c80a1cb7394088a36c6b634dc2bf3c6fb67": { - "address": "0xb8c55c80a1cb7394088a36c6b634dc2bf3c6fb67", - "symbol": "PEPEDOGE", - "decimals": 18, - "name": "Pepe Doge", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xb8c55c80a1cb7394088a36c6b634dc2bf3c6fb67.png", - "aggregators": [ - "CoinMarketCap", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x8a7b7b9b2f7d0c63f66171721339705a6188a7d5": { - "address": "0x8a7b7b9b2f7d0c63f66171721339705a6188a7d5", - "symbol": "EDOGE", - "decimals": 18, - "name": "EtherDoge", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x8a7b7b9b2f7d0c63f66171721339705a6188a7d5.png", - "aggregators": [ - "CoinMarketCap", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x2c7f442aab99d5e18cfae2291c507c0b5f3c1eb5": { - "address": "0x2c7f442aab99d5e18cfae2291c507c0b5f3c1eb5", - "symbol": "KEKO", - "decimals": 18, - "name": "Keko", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x2c7f442aab99d5e18cfae2291c507c0b5f3c1eb5.png", - "aggregators": [ - "CoinMarketCap", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x0414d8c87b271266a5864329fb4932bbe19c0c49": { - "address": "0x0414d8c87b271266a5864329fb4932bbe19c0c49", - "symbol": "WSB", - "decimals": 18, - "name": "WSB Coin", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x0414d8c87b271266a5864329fb4932bbe19c0c49.png", - "aggregators": [ - "CoinMarketCap", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0xd87d72248093597df8d56d2a53c1ab7c1a0cc8da": { - "address": "0xd87d72248093597df8d56d2a53c1ab7c1a0cc8da", - "symbol": "HAHA", - "decimals": 18, - "name": "HAHA", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xd87d72248093597df8d56d2a53c1ab7c1a0cc8da.png", - "aggregators": [ - "CoinMarketCap", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x586a7cfe21e55ec0e24f0bfb118f77fe4ca87bab": { - "address": "0x586a7cfe21e55ec0e24f0bfb118f77fe4ca87bab", - "symbol": "CRYPTO", - "decimals": 18, - "name": "BetbuInu", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x586a7cfe21e55ec0e24f0bfb118f77fe4ca87bab.png", - "aggregators": [ - "CoinMarketCap", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0xe9da5e227e3fa4fc933b5f540be021e7ecc3fd81": { - "address": "0xe9da5e227e3fa4fc933b5f540be021e7ecc3fd81", - "symbol": "GMFAM", - "decimals": 18, - "name": "GMFAM", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xe9da5e227e3fa4fc933b5f540be021e7ecc3fd81.png", - "aggregators": [ - "CoinMarketCap", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0xd4f4d0a10bcae123bb6655e8fe93a30d01eebd04": { - "address": "0xd4f4d0a10bcae123bb6655e8fe93a30d01eebd04", - "symbol": "LNQ", - "decimals": 18, - "name": "LinqAI", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xd4f4d0a10bcae123bb6655e8fe93a30d01eebd04.png", - "aggregators": [ - "CoinMarketCap", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x378e1be15be6d6d1f23cfe7090b6a77660dbf14d": { - "address": "0x378e1be15be6d6d1f23cfe7090b6a77660dbf14d", - "symbol": "FOXE", - "decimals": 18, - "name": "FOXE", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x378e1be15be6d6d1f23cfe7090b6a77660dbf14d.png", - "aggregators": [ - "CoinMarketCap", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0xc961da88bb5e8ee2ba7dfd4c62a875ef80f7202f": { - "address": "0xc961da88bb5e8ee2ba7dfd4c62a875ef80f7202f", - "symbol": "HARAM", - "decimals": 9, - "name": "Haram", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xc961da88bb5e8ee2ba7dfd4c62a875ef80f7202f.png", - "aggregators": [ - "CoinMarketCap", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x4fe8d4775b7cb2546b9ee86182081cdf8f77b053": { - "address": "0x4fe8d4775b7cb2546b9ee86182081cdf8f77b053", - "symbol": "KAIJU", - "decimals": 18, - "name": "KAIJUNO8", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x4fe8d4775b7cb2546b9ee86182081cdf8f77b053.png", - "aggregators": [ - "CoinMarketCap", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0xc092a137df3cf2b9e5971ba1874d26487c12626d": { - "address": "0xc092a137df3cf2b9e5971ba1874d26487c12626d", - "symbol": "RING", - "decimals": 18, - "name": "Ring AI", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xc092a137df3cf2b9e5971ba1874d26487c12626d.png", - "aggregators": [ - "CoinMarketCap", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x8013266cb5c9dd48be3ad7d1ce832874d64b3ce1": { - "address": "0x8013266cb5c9dd48be3ad7d1ce832874d64b3ce1", - "symbol": "BOOP", - "decimals": 18, - "name": "Boop", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x8013266cb5c9dd48be3ad7d1ce832874d64b3ce1.png", - "aggregators": [ - "CoinMarketCap", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0xcae3faa4b6cf660aef18474074949ba0948bc025": { - "address": "0xcae3faa4b6cf660aef18474074949ba0948bc025", - "symbol": "GEN", - "decimals": 18, - "name": "Generational Wealth", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xcae3faa4b6cf660aef18474074949ba0948bc025.png", - "aggregators": [ - "CoinMarketCap", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x3007083eaa95497cd6b2b809fb97b6a30bdf53d3": { - "address": "0x3007083eaa95497cd6b2b809fb97b6a30bdf53d3", - "symbol": "PSYOP", - "decimals": 18, - "name": "PSYOP", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x3007083eaa95497cd6b2b809fb97b6a30bdf53d3.png", - "aggregators": [ - "CoinMarketCap", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x9d7630adf7ab0b0cb00af747db76864df0ec82e4": { - "address": "0x9d7630adf7ab0b0cb00af747db76864df0ec82e4", - "symbol": "GATE", - "decimals": 18, - "name": "GATENet", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x9d7630adf7ab0b0cb00af747db76864df0ec82e4.png", - "aggregators": [ - "CoinMarketCap", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x4ad434b8cdc3aa5ac97932d6bd18b5d313ab0f6f": { - "address": "0x4ad434b8cdc3aa5ac97932d6bd18b5d313ab0f6f", - "symbol": "EVERMOON", - "decimals": 18, - "name": "EverMoon ERC", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x4ad434b8cdc3aa5ac97932d6bd18b5d313ab0f6f.png", - "aggregators": [ - "CoinMarketCap", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x369733153e6e08d38f2bc72ae2432e855cfbe221": { - "address": "0x369733153e6e08d38f2bc72ae2432e855cfbe221", - "symbol": "XALPHA", - "decimals": 18, - "name": "XALPHA AI", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x369733153e6e08d38f2bc72ae2432e855cfbe221.png", - "aggregators": [ - "CoinMarketCap", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x7a8adcf432ebcc2311b955d176ee4bfed13bb9a7": { - "address": "0x7a8adcf432ebcc2311b955d176ee4bfed13bb9a7", - "symbol": "MANDOX", - "decimals": 9, - "name": "MandoX", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x7a8adcf432ebcc2311b955d176ee4bfed13bb9a7.png", - "aggregators": [ - "CoinMarketCap", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0xda8263d8ce3f726233f8b5585bcb86a3120a58b6": { - "address": "0xda8263d8ce3f726233f8b5585bcb86a3120a58b6", - "symbol": "DOGC", - "decimals": 18, - "name": "DogeClub", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xda8263d8ce3f726233f8b5585bcb86a3120a58b6.png", - "aggregators": [ - "CoinMarketCap", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x445bd590a01fe6709d4f13a8f579c1e4846921db": { - "address": "0x445bd590a01fe6709d4f13a8f579c1e4846921db", - "symbol": "DUMMY", - "decimals": 18, - "name": "DUMMY", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x445bd590a01fe6709d4f13a8f579c1e4846921db.png", - "aggregators": [ - "CoinMarketCap", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x18cc2ba8995c6307e355726244adb023cf00522f": { - "address": "0x18cc2ba8995c6307e355726244adb023cf00522f", - "symbol": "MONKE", - "decimals": 9, - "name": "Monke", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x18cc2ba8995c6307e355726244adb023cf00522f.png", - "aggregators": [ - "CoinMarketCap", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x5fa20d59d2a907e5fed9fb80b4a8d9f0d069a48d": { - "address": "0x5fa20d59d2a907e5fed9fb80b4a8d9f0d069a48d", - "symbol": "NOGS", - "decimals": 18, - "name": "Noggles", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x5fa20d59d2a907e5fed9fb80b4a8d9f0d069a48d.png", - "aggregators": [ - "CoinMarketCap", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x112b08621e27e10773ec95d250604a041f36c582": { - "address": "0x112b08621e27e10773ec95d250604a041f36c582", - "symbol": "KAS", - "decimals": 8, - "name": "Wrapped Kaspa", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x112b08621e27e10773ec95d250604a041f36c582.png", - "aggregators": [ - "CoinMarketCap", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x2c623d3cc9a2cc158951b8093cb94e80cf56deea": { - "address": "0x2c623d3cc9a2cc158951b8093cb94e80cf56deea", - "symbol": "NEX", - "decimals": 18, - "name": "NexAI", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x2c623d3cc9a2cc158951b8093cb94e80cf56deea.png", - "aggregators": [ - "CoinMarketCap", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0xb3912b20b3abc78c15e85e13ec0bf334fbb924f7": { - "address": "0xb3912b20b3abc78c15e85e13ec0bf334fbb924f7", - "symbol": "HANA", - "decimals": 9, - "name": "Hana", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xb3912b20b3abc78c15e85e13ec0bf334fbb924f7.png", - "aggregators": [ - "CoinMarketCap", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x423f4e6138e475d85cf7ea071ac92097ed631eea": { - "address": "0x423f4e6138e475d85cf7ea071ac92097ed631eea", - "symbol": "PNDC", - "decimals": 18, - "name": "PondCoin", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x423f4e6138e475d85cf7ea071ac92097ed631eea.png", - "aggregators": [ - "CoinMarketCap", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0xabec00542d141bddf58649bfe860c6449807237c": { - "address": "0xabec00542d141bddf58649bfe860c6449807237c", - "symbol": "X", - "decimals": 18, - "name": "CruxDecussata", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xabec00542d141bddf58649bfe860c6449807237c.png", - "aggregators": [ - "CoinMarketCap", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x018dd3a0dd7f213cc822076b3800816d3ce1ed86": { - "address": "0x018dd3a0dd7f213cc822076b3800816d3ce1ed86", - "symbol": "HOTKEY", - "decimals": 18, - "name": "HotKeySwap", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x018dd3a0dd7f213cc822076b3800816d3ce1ed86.png", - "aggregators": [ - "CoinMarketCap", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x00c5ca160a968f47e7272a0cfcda36428f386cb6": { - "address": "0x00c5ca160a968f47e7272a0cfcda36428f386cb6", - "symbol": "USDEBT", - "decimals": 18, - "name": "USDEBT", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x00c5ca160a968f47e7272a0cfcda36428f386cb6.png", - "aggregators": [ - "CoinMarketCap", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x081f67afa0ccf8c7b17540767bbe95df2ba8d97f": { - "address": "0x081f67afa0ccf8c7b17540767bbe95df2ba8d97f", - "symbol": "CET", - "decimals": 18, - "name": "CoinEx", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x081f67afa0ccf8c7b17540767bbe95df2ba8d97f.png", - "aggregators": [ - "CoinMarketCap", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0xa0117792d4b100fd329b37e8ab4181df8a5b3326": { - "address": "0xa0117792d4b100fd329b37e8ab4181df8a5b3326", - "symbol": "BREPE", - "decimals": 18, - "name": "BREPE", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xa0117792d4b100fd329b37e8ab4181df8a5b3326.png", - "aggregators": [ - "CoinMarketCap", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x8353b92201f19b4812eee32efd325f7ede123718": { - "address": "0x8353b92201f19b4812eee32efd325f7ede123718", - "symbol": "SCM", - "decimals": 18, - "name": "ScamFari", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x8353b92201f19b4812eee32efd325f7ede123718.png", - "aggregators": [ - "CoinMarketCap", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x9863bcc2fb23dfdf5fe275aa4c5575a32a580911": { - "address": "0x9863bcc2fb23dfdf5fe275aa4c5575a32a580911", - "symbol": "PEPURAI", - "decimals": 18, - "name": "PEPURAI", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x9863bcc2fb23dfdf5fe275aa4c5575a32a580911.png", - "aggregators": [ - "CoinMarketCap", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x75c97384ca209f915381755c582ec0e2ce88c1ba": { - "address": "0x75c97384ca209f915381755c582ec0e2ce88c1ba", - "symbol": "FINE", - "decimals": 18, - "name": "FINE", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x75c97384ca209f915381755c582ec0e2ce88c1ba.png", - "aggregators": [ - "CoinMarketCap", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x4fbaf51b95b024d0d7cab575be2a1f0afedc9b64": { - "address": "0x4fbaf51b95b024d0d7cab575be2a1f0afedc9b64", - "symbol": "BONK", - "decimals": 18, - "name": "BONK on ETH", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x4fbaf51b95b024d0d7cab575be2a1f0afedc9b64.png", - "aggregators": [ - "CoinMarketCap", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x1aa51bc7eb181ce48ce626bf62f8956fa9555136": { - "address": "0x1aa51bc7eb181ce48ce626bf62f8956fa9555136", - "symbol": "PAW", - "decimals": 18, - "name": "PAWZONE", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x1aa51bc7eb181ce48ce626bf62f8956fa9555136.png", - "aggregators": [ - "CoinMarketCap", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0xc744df3419a8c9bd4d6b9852a503eb1c5308a326": { - "address": "0xc744df3419a8c9bd4d6b9852a503eb1c5308a326", - "symbol": "RED", - "decimals": 18, - "name": "RED TOKEN", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xc744df3419a8c9bd4d6b9852a503eb1c5308a326.png", - "aggregators": [ - "CoinMarketCap", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0xb48eb8368c9c6e9b0734de1ef4ceb9f484b80b9c": { - "address": "0xb48eb8368c9c6e9b0734de1ef4ceb9f484b80b9c", - "symbol": "VMPX", - "decimals": 18, - "name": "VMPX", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xb48eb8368c9c6e9b0734de1ef4ceb9f484b80b9c.png", - "aggregators": ["CoinGecko", "Socket", "Rubic", "Sonarwatch"], - "occurrences": 4 - }, - "0xfd1450a131599ff34f3be1775d8c8bf79e353d8c": { - "address": "0xfd1450a131599ff34f3be1775d8c8bf79e353d8c", - "symbol": "SHIBA", - "decimals": 18, - "name": "Shiba", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xfd1450a131599ff34f3be1775d8c8bf79e353d8c.png", - "aggregators": [ - "CoinMarketCap", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0xf017d3690346eb8234b85f74cee5e15821fee1f4": { - "address": "0xf017d3690346eb8234b85f74cee5e15821fee1f4", - "symbol": "GEKKO", - "decimals": 18, - "name": "GEKKO", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xf017d3690346eb8234b85f74cee5e15821fee1f4.png", - "aggregators": [ - "CoinMarketCap", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0xae3359ed3c567482fb0102c584c23daa2693eacf": { - "address": "0xae3359ed3c567482fb0102c584c23daa2693eacf", - "symbol": "DORK", - "decimals": 18, - "name": "DORK", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xae3359ed3c567482fb0102c584c23daa2693eacf.png", - "aggregators": [ - "CoinMarketCap", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x4c746edf20762dc201ac40135e0c13e400d23d58": { - "address": "0x4c746edf20762dc201ac40135e0c13e400d23d58", - "symbol": "GOD", - "decimals": 9, - "name": "GOD Coin", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x4c746edf20762dc201ac40135e0c13e400d23d58.png", - "aggregators": [ - "CoinMarketCap", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x23f3d4625aef6f0b84d50db1d53516e6015c0c9b": { - "address": "0x23f3d4625aef6f0b84d50db1d53516e6015c0c9b", - "symbol": "NUTS", - "decimals": 18, - "name": "Thetanuts Finance", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x23f3d4625aef6f0b84d50db1d53516e6015c0c9b.png", - "aggregators": [ - "CoinMarketCap", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x973e52691176d36453868d9d86572788d27041a9": { - "address": "0x973e52691176d36453868d9d86572788d27041a9", - "symbol": "DX", - "decimals": 18, - "name": "DxChain", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x973e52691176d36453868d9d86572788d27041a9.png", - "aggregators": [ - "CoinMarketCap", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x420b879b0d18cc182e7e82ad16a13877c3a88420": { - "address": "0x420b879b0d18cc182e7e82ad16a13877c3a88420", - "symbol": "BUD", - "decimals": 9, - "name": "Big Bud", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x420b879b0d18cc182e7e82ad16a13877c3a88420.png", - "aggregators": [ - "CoinMarketCap", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0xd08623fb2a1f044025eec65886011cf5d0f06b01": { - "address": "0xd08623fb2a1f044025eec65886011cf5d0f06b01", - "symbol": "LARRY", - "decimals": 18, - "name": "Larry", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xd08623fb2a1f044025eec65886011cf5d0f06b01.png", - "aggregators": [ - "CoinMarketCap", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x6900f7b42fb4abb615c938db6a26d73a9afbed69": { - "address": "0x6900f7b42fb4abb615c938db6a26d73a9afbed69", - "symbol": "DXY", - "decimals": 18, - "name": "US Degen Index 6900", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x6900f7b42fb4abb615c938db6a26d73a9afbed69.png", - "aggregators": [ - "CoinMarketCap", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0xab5d6508e4726141d29c6074ab366afa03f4ec8d": { - "address": "0xab5d6508e4726141d29c6074ab366afa03f4ec8d", - "symbol": "TRUCK", - "decimals": 18, - "name": "Cybertruck", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xab5d6508e4726141d29c6074ab366afa03f4ec8d.png", - "aggregators": [ - "CoinMarketCap", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x9cf0ed013e67db12ca3af8e7506fe401aa14dad6": { - "address": "0x9cf0ed013e67db12ca3af8e7506fe401aa14dad6", - "symbol": "SPECTRE", - "decimals": 18, - "name": "Spectre AI", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x9cf0ed013e67db12ca3af8e7506fe401aa14dad6.png", - "aggregators": [ - "Metamask", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0xc8168d5665f4418353728ac970713e09c0b7c20e": { - "address": "0xc8168d5665f4418353728ac970713e09c0b7c20e", - "symbol": "MONKE", - "decimals": 18, - "name": "Monke", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xc8168d5665f4418353728ac970713e09c0b7c20e.png", - "aggregators": [ - "CoinMarketCap", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x85225ed797fd4128ac45a992c46ea4681a7a15da": { - "address": "0x85225ed797fd4128ac45a992c46ea4681a7a15da", - "symbol": "HYPE", - "decimals": 18, - "name": "Hyperbolic Protocol", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x85225ed797fd4128ac45a992c46ea4681a7a15da.png", - "aggregators": [ - "CoinMarketCap", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0xbb3d7f42c58abd83616ad7c8c72473ee46df2678": { - "address": "0xbb3d7f42c58abd83616ad7c8c72473ee46df2678", - "symbol": "CHAT", - "decimals": 18, - "name": "VectorChat ai", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xbb3d7f42c58abd83616ad7c8c72473ee46df2678.png", - "aggregators": [ - "CoinMarketCap", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x7c68e725b0b2ffcba8947fded4198c3d1db041e6": { - "address": "0x7c68e725b0b2ffcba8947fded4198c3d1db041e6", - "symbol": "PONGO", - "decimals": 9, - "name": "Pongo", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x7c68e725b0b2ffcba8947fded4198c3d1db041e6.png", - "aggregators": [ - "CoinMarketCap", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0xb970e14df2161c0a2f32eba35901f2446581b482": { - "address": "0xb970e14df2161c0a2f32eba35901f2446581b482", - "symbol": "RKR", - "decimals": 9, - "name": "Reaktor", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xb970e14df2161c0a2f32eba35901f2446581b482.png", - "aggregators": [ - "CoinMarketCap", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x6942806d1b2d5886d95ce2f04314ece8eb825833": { - "address": "0x6942806d1b2d5886d95ce2f04314ece8eb825833", - "symbol": "GROYPER", - "decimals": 18, - "name": "Groyper", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x6942806d1b2d5886d95ce2f04314ece8eb825833.png", - "aggregators": [ - "CoinGecko", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x2d869ae129e308f94cc47e66eaefb448cee0d03e": { - "address": "0x2d869ae129e308f94cc47e66eaefb448cee0d03e", - "symbol": "ORAIX", - "decimals": 18, - "name": "OraiDEX", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x2d869ae129e308f94cc47e66eaefb448cee0d03e.png", - "aggregators": [ - "CoinMarketCap", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x600d601d8b9eb5de5ac90fefc68d0d08801bfd3f": { - "address": "0x600d601d8b9eb5de5ac90fefc68d0d08801bfd3f", - "symbol": "ELMT", - "decimals": 8, - "name": "Element", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x600d601d8b9eb5de5ac90fefc68d0d08801bfd3f.png", - "aggregators": [ - "CoinMarketCap", - "LiFi", - "Socket", - "Rubic", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0xa4ffdf3208f46898ce063e25c1c43056fa754739": { - "address": "0xa4ffdf3208f46898ce063e25c1c43056fa754739", - "symbol": "ATH", - "decimals": 18, - "name": "AthenaDAO", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xa4ffdf3208f46898ce063e25c1c43056fa754739.png", - "aggregators": [ - "CoinGecko", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0xd795eb12034c2b77d787a22292c26fab5f5c70aa": { - "address": "0xd795eb12034c2b77d787a22292c26fab5f5c70aa", - "symbol": "PIXFI", - "decimals": 18, - "name": "Pixelverse", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xd795eb12034c2b77d787a22292c26fab5f5c70aa.png", - "aggregators": [ - "CoinMarketCap", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0xcc9e0bd9438ca0056653d134de794abeaff8c676": { - "address": "0xcc9e0bd9438ca0056653d134de794abeaff8c676", - "symbol": "LESLIE", - "decimals": 9, - "name": "Leslie", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xcc9e0bd9438ca0056653d134de794abeaff8c676.png", - "aggregators": [ - "CoinMarketCap", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x43fe2b0c5485c10e772a1843e32a7642ace5b88c": { - "address": "0x43fe2b0c5485c10e772a1843e32a7642ace5b88c", - "symbol": "RPILL", - "decimals": 18, - "name": "Red Pill", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x43fe2b0c5485c10e772a1843e32a7642ace5b88c.png", - "aggregators": [ - "CoinMarketCap", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x66bff695f3b16a824869a8018a3a6e3685241269": { - "address": "0x66bff695f3b16a824869a8018a3a6e3685241269", - "symbol": "BRETT", - "decimals": 18, - "name": "Bretter Brett", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x66bff695f3b16a824869a8018a3a6e3685241269.png", - "aggregators": [ - "CoinMarketCap", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x89d584a1edb3a70b3b07963f9a3ea5399e38b136": { - "address": "0x89d584a1edb3a70b3b07963f9a3ea5399e38b136", - "symbol": "AIT", - "decimals": 18, - "name": "AIT Protocol", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x89d584a1edb3a70b3b07963f9a3ea5399e38b136.png", - "aggregators": [ - "CoinMarketCap", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x00c2999c8b2adf4abc835cc63209533973718eb1": { - "address": "0x00c2999c8b2adf4abc835cc63209533973718eb1", - "symbol": "STATE", - "decimals": 18, - "name": "New World Order", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x00c2999c8b2adf4abc835cc63209533973718eb1.png", - "aggregators": [ - "CoinMarketCap", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x8a0a9b663693a22235b896f70a229c4a22597623": { - "address": "0x8a0a9b663693a22235b896f70a229c4a22597623", - "symbol": "SCALE", - "decimals": 18, - "name": "Scalia Infrastructure", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x8a0a9b663693a22235b896f70a229c4a22597623.png", - "aggregators": [ - "CoinMarketCap", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x89fb927240750c1b15d4743cd58440fc5f14a11c": { - "address": "0x89fb927240750c1b15d4743cd58440fc5f14a11c", - "symbol": "ATT", - "decimals": 18, - "name": "Attila", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x89fb927240750c1b15d4743cd58440fc5f14a11c.png", - "aggregators": [ - "CoinMarketCap", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x420698cfdeddea6bc78d59bc17798113ad278f9d": { - "address": "0x420698cfdeddea6bc78d59bc17798113ad278f9d", - "symbol": "TOWELI", - "decimals": 18, - "name": "Towelie", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x420698cfdeddea6bc78d59bc17798113ad278f9d.png", - "aggregators": [ - "CoinMarketCap", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0xa562912e1328eea987e04c2650efb5703757850c": { - "address": "0xa562912e1328eea987e04c2650efb5703757850c", - "symbol": "DROPS", - "decimals": 18, - "name": "Drops", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xa562912e1328eea987e04c2650efb5703757850c.png", - "aggregators": [ - "CoinMarketCap", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0xd47bdf574b4f76210ed503e0efe81b58aa061f3d": { - "address": "0xd47bdf574b4f76210ed503e0efe81b58aa061f3d", - "symbol": "TRVL", - "decimals": 18, - "name": "Dtravel", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xd47bdf574b4f76210ed503e0efe81b58aa061f3d.png", - "aggregators": [ - "CoinGecko", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0xde5d2530a877871f6f0fc240b9fce117246dadae": { - "address": "0xde5d2530a877871f6f0fc240b9fce117246dadae", - "symbol": "JUICE", - "decimals": 18, - "name": "Juice", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xde5d2530a877871f6f0fc240b9fce117246dadae.png", - "aggregators": [ - "CoinMarketCap", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0xbdbe9f26918918bd3f43a0219d54e5fda9ce1bb3": { - "address": "0xbdbe9f26918918bd3f43a0219d54e5fda9ce1bb3", - "symbol": "MOLLY", - "decimals": 9, - "name": "Molly", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xbdbe9f26918918bd3f43a0219d54e5fda9ce1bb3.png", - "aggregators": [ - "CoinMarketCap", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0xd555498a524612c67f286df0e0a9a64a73a7cdc7": { - "address": "0xd555498a524612c67f286df0e0a9a64a73a7cdc7", - "symbol": "DEFROGS", - "decimals": 18, - "name": "DeFrogs", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xd555498a524612c67f286df0e0a9a64a73a7cdc7.png", - "aggregators": [ - "CoinMarketCap", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0xbb126042235e6bd38b17744cb31a8bf4a206c045": { - "address": "0xbb126042235e6bd38b17744cb31a8bf4a206c045", - "symbol": "FANC", - "decimals": 18, - "name": "fanC", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xbb126042235e6bd38b17744cb31a8bf4a206c045.png", - "aggregators": [ - "CoinMarketCap", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x6019dcb2d0b3e0d1d8b0ce8d16191b3a4f93703d": { - "address": "0x6019dcb2d0b3e0d1d8b0ce8d16191b3a4f93703d", - "symbol": "QF", - "decimals": 18, - "name": "Quantum Fusion", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x6019dcb2d0b3e0d1d8b0ce8d16191b3a4f93703d.png", - "aggregators": [ - "CoinMarketCap", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0xfc385a1df85660a7e041423db512f779070fcede": { - "address": "0xfc385a1df85660a7e041423db512f779070fcede", - "symbol": "ZKL", - "decimals": 18, - "name": "zkLink", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xfc385a1df85660a7e041423db512f779070fcede.png", - "aggregators": [ - "CoinMarketCap", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x42069d11a2cc72388a2e06210921e839cfbd3280": { - "address": "0x42069d11a2cc72388a2e06210921e839cfbd3280", - "symbol": "GNOME", - "decimals": 18, - "name": "GnomeLand", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x42069d11a2cc72388a2e06210921e839cfbd3280.png", - "aggregators": [ - "CoinMarketCap", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x6d7497751656618fc38cfb5478994a20f7e235df": { - "address": "0x6d7497751656618fc38cfb5478994a20f7e235df", - "symbol": "SPYRO", - "decimals": 18, - "name": "SPYRO", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x6d7497751656618fc38cfb5478994a20f7e235df.png", - "aggregators": [ - "CoinMarketCap", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0xffe203b59393593965842439ce1e7d7c78109b46": { - "address": "0xffe203b59393593965842439ce1e7d7c78109b46", - "symbol": "DOGE-1", - "decimals": 18, - "name": "Satellite Doge 1 Mission", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xffe203b59393593965842439ce1e7d7c78109b46.png", - "aggregators": [ - "CoinMarketCap", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0xeb51b8dc2d43469c0f0b7365c8a18438907bdf21": { - "address": "0xeb51b8dc2d43469c0f0b7365c8a18438907bdf21", - "symbol": "SHIV", - "decimals": 18, - "name": "Shiva Inu", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xeb51b8dc2d43469c0f0b7365c8a18438907bdf21.png", - "aggregators": [ - "CoinMarketCap", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x478156deabfac918369044d52a6bdb5cc5597994": { - "address": "0x478156deabfac918369044d52a6bdb5cc5597994", - "symbol": "SGR", - "decimals": 8, - "name": "Schrodinger", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x478156deabfac918369044d52a6bdb5cc5597994.png", - "aggregators": [ - "CoinMarketCap", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x5832fbf930dacbdd9a1697dca7b3c518277ff0b0": { - "address": "0x5832fbf930dacbdd9a1697dca7b3c518277ff0b0", - "symbol": "DDBAM", - "decimals": 8, - "name": "Didi Bam Bam", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x5832fbf930dacbdd9a1697dca7b3c518277ff0b0.png", - "aggregators": [ - "CoinMarketCap", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0xd55210bb6898c021a19de1f58d27b71f095921ee": { - "address": "0xd55210bb6898c021a19de1f58d27b71f095921ee", - "symbol": "CHKN", - "decimals": 18, - "name": "Chickencoin", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xd55210bb6898c021a19de1f58d27b71f095921ee.png", - "aggregators": [ - "CoinMarketCap", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x433f62964edd67d7349088fe44544f822f863a6c": { - "address": "0x433f62964edd67d7349088fe44544f822f863a6c", - "symbol": "MOGE", - "decimals": 9, - "name": "Moge", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x433f62964edd67d7349088fe44544f822f863a6c.png", - "aggregators": [ - "CoinMarketCap", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0xad913dcd987fe54ce823e4b755f90598cd62bb15": { - "address": "0xad913dcd987fe54ce823e4b755f90598cd62bb15", - "symbol": "MFERS", - "decimals": 18, - "name": "MFERS", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xad913dcd987fe54ce823e4b755f90598cd62bb15.png", - "aggregators": [ - "CoinMarketCap", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x85e0b9d3e7e4dba7e59090c533906d0e9211d8b6": { - "address": "0x85e0b9d3e7e4dba7e59090c533906d0e9211d8b6", - "symbol": "ISHI", - "decimals": 9, - "name": "Ishi", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x85e0b9d3e7e4dba7e59090c533906d0e9211d8b6.png", - "aggregators": [ - "CoinMarketCap", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x05fe069626543842439ef90d9fa1633640c50cf1": { - "address": "0x05fe069626543842439ef90d9fa1633640c50cf1", - "symbol": "EVEAI", - "decimals": 18, - "name": "Eve AI", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x05fe069626543842439ef90d9fa1633640c50cf1.png", - "aggregators": [ - "CoinMarketCap", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x52a047ee205701895ee06a375492490ec9c597ce": { - "address": "0x52a047ee205701895ee06a375492490ec9c597ce", - "symbol": "PULSE", - "decimals": 18, - "name": "PulseMarkets", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x52a047ee205701895ee06a375492490ec9c597ce.png", - "aggregators": [ - "CoinMarketCap", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x740a5ac14d0096c81d331adc1611cf2fd28ae317": { - "address": "0x740a5ac14d0096c81d331adc1611cf2fd28ae317", - "symbol": "PLEB", - "decimals": 9, - "name": "Plebz", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x740a5ac14d0096c81d331adc1611cf2fd28ae317.png", - "aggregators": [ - "CoinMarketCap", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x004626a008b1acdc4c74ab51644093b155e59a23": { - "address": "0x004626a008b1acdc4c74ab51644093b155e59a23", - "symbol": "STEUR", - "decimals": 18, - "name": "Staked EURA", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x004626a008b1acdc4c74ab51644093b155e59a23.png", - "aggregators": ["Metamask", "LiFi", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 5 - }, - "0x725024200cd4e1f259fcf2b7153d37fb477e139c": { - "address": "0x725024200cd4e1f259fcf2b7153d37fb477e139c", - "symbol": "FLOVI", - "decimals": 9, - "name": "Flovi Inu", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x725024200cd4e1f259fcf2b7153d37fb477e139c.png", - "aggregators": [ - "CoinMarketCap", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x346b46280f559def274f80c5d16471b4b7ef2f14": { - "address": "0x346b46280f559def274f80c5d16471b4b7ef2f14", - "symbol": "WSTOR", - "decimals": 18, - "name": "StorageChain", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x346b46280f559def274f80c5d16471b4b7ef2f14.png", - "aggregators": [ - "CoinMarketCap", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x2a7e415c169ce3a580c6f374dc26f6aaad1eccfe": { - "address": "0x2a7e415c169ce3a580c6f374dc26f6aaad1eccfe", - "symbol": "HACHI", - "decimals": 18, - "name": "Hachi", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x2a7e415c169ce3a580c6f374dc26f6aaad1eccfe.png", - "aggregators": [ - "CoinMarketCap", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0xca530408c3e552b020a2300debc7bd18820fb42f": { - "address": "0xca530408c3e552b020a2300debc7bd18820fb42f", - "symbol": "RYU", - "decimals": 18, - "name": "RyuJin", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xca530408c3e552b020a2300debc7bd18820fb42f.png", - "aggregators": [ - "CoinMarketCap", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0xfbe44cae91d7df8382208fcdc1fe80e40fbc7e9a": { - "address": "0xfbe44cae91d7df8382208fcdc1fe80e40fbc7e9a", - "symbol": "GEMAI", - "decimals": 18, - "name": "The Next Gem AI", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xfbe44cae91d7df8382208fcdc1fe80e40fbc7e9a.png", - "aggregators": [ - "CoinMarketCap", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0xc5ba042bf8832999b17c9036e8212f49dce0501a": { - "address": "0xc5ba042bf8832999b17c9036e8212f49dce0501a", - "symbol": "YOURAI", - "decimals": 18, - "name": "YOUR AI", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xc5ba042bf8832999b17c9036e8212f49dce0501a.png", - "aggregators": [ - "CoinMarketCap", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x50739bd5b6aff093ba2371365727c48a420a060d": { - "address": "0x50739bd5b6aff093ba2371365727c48a420a060d", - "symbol": "CRGPT", - "decimals": 18, - "name": "CryptoGPT", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x50739bd5b6aff093ba2371365727c48a420a060d.png", - "aggregators": [ - "CoinMarketCap", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0xea3665e272f14052442e433fb0059424d16cc6c7": { - "address": "0xea3665e272f14052442e433fb0059424d16cc6c7", - "symbol": "SMIDGE", - "decimals": 18, - "name": "Smidge", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xea3665e272f14052442e433fb0059424d16cc6c7.png", - "aggregators": [ - "CoinMarketCap", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x814a870726edb7dfc4798300ae1ce3e5da0ac467": { - "address": "0x814a870726edb7dfc4798300ae1ce3e5da0ac467", - "symbol": "DACAT", - "decimals": 18, - "name": "daCat", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x814a870726edb7dfc4798300ae1ce3e5da0ac467.png", - "aggregators": [ - "CoinMarketCap", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0xe635efcfac44c5f44508f4d17c3a96cb4ce421dd": { - "address": "0xe635efcfac44c5f44508f4d17c3a96cb4ce421dd", - "symbol": "SPOT", - "decimals": 18, - "name": "Defispot", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xe635efcfac44c5f44508f4d17c3a96cb4ce421dd.png", - "aggregators": [ - "CoinMarketCap", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x0b452278223d3954f4ac050949d7998e373e7e43": { - "address": "0x0b452278223d3954f4ac050949d7998e373e7e43", - "symbol": "SUZUME", - "decimals": 18, - "name": "Shita kiri Suzume", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x0b452278223d3954f4ac050949d7998e373e7e43.png", - "aggregators": [ - "CoinMarketCap", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x6e0615a03ed9527a6013fcd5b556e36ef4dab1ff": { - "address": "0x6e0615a03ed9527a6013fcd5b556e36ef4dab1ff", - "symbol": "HNB", - "decimals": 18, - "name": "HNB Protocol", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x6e0615a03ed9527a6013fcd5b556e36ef4dab1ff.png", - "aggregators": [ - "CoinMarketCap", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0xc06bf3589345a81f0c2845e4db76bdb64bbbbc9d": { - "address": "0xc06bf3589345a81f0c2845e4db76bdb64bbbbc9d", - "symbol": "MEGA", - "decimals": 18, - "name": "Make ETH Great Again", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xc06bf3589345a81f0c2845e4db76bdb64bbbbc9d.png", - "aggregators": [ - "CoinGecko", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x7eeab3de47a475fd2dec438aef05b128887c6105": { - "address": "0x7eeab3de47a475fd2dec438aef05b128887c6105", - "symbol": "TROPPY", - "decimals": 11, - "name": "TROPPY", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x7eeab3de47a475fd2dec438aef05b128887c6105.png", - "aggregators": [ - "CoinMarketCap", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x17d2628d30f8e9e966c9ba831c9b9b01ea8ea75c": { - "address": "0x17d2628d30f8e9e966c9ba831c9b9b01ea8ea75c", - "symbol": "ISK", - "decimals": 18, - "name": "ISKRA Token", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x17d2628d30f8e9e966c9ba831c9b9b01ea8ea75c.png", - "aggregators": [ - "CoinMarketCap", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x6630e3a2ec1e7e0a2f9f1d2289a9a89b0551683a": { - "address": "0x6630e3a2ec1e7e0a2f9f1d2289a9a89b0551683a", - "symbol": "WIFSA", - "decimals": 18, - "name": "dogwifsaudihat", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x6630e3a2ec1e7e0a2f9f1d2289a9a89b0551683a.png", - "aggregators": [ - "CoinMarketCap", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0xfc4913214444af5c715cc9f7b52655e788a569ed": { - "address": "0xfc4913214444af5c715cc9f7b52655e788a569ed", - "symbol": "ICSA", - "decimals": 9, - "name": "Icosa ETH", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xfc4913214444af5c715cc9f7b52655e788a569ed.png", - "aggregators": [ - "CoinMarketCap", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x8e7bd91f7d51d58145365341fdb37e0edfc8397f": { - "address": "0x8e7bd91f7d51d58145365341fdb37e0edfc8397f", - "symbol": "MAGAPEPE", - "decimals": 9, - "name": "MAGA PEPE ETH", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x8e7bd91f7d51d58145365341fdb37e0edfc8397f.png", - "aggregators": [ - "CoinMarketCap", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x1f70300bce8c2302780bd0a153ebb75b8ca7efcb": { - "address": "0x1f70300bce8c2302780bd0a153ebb75b8ca7efcb", - "symbol": "BARRON", - "decimals": 9, - "name": "Mini Donald", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x1f70300bce8c2302780bd0a153ebb75b8ca7efcb.png", - "aggregators": [ - "CoinMarketCap", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0xbc61e13ca6830fc7f035fd0e90a01cd08be6dcaa": { - "address": "0xbc61e13ca6830fc7f035fd0e90a01cd08be6dcaa", - "symbol": "SHOOT", - "decimals": 18, - "name": "SHOOT", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xbc61e13ca6830fc7f035fd0e90a01cd08be6dcaa.png", - "aggregators": [ - "CoinMarketCap", - "Rubic", - "Rango", - "Sonarwatch", - "SushiSwap" - ], - "occurrences": 5 - }, - "0x07040971246a73ebda9cf29ea1306bb47c7c4e76": { - "address": "0x07040971246a73ebda9cf29ea1306bb47c7c4e76", - "symbol": "USPEPE", - "decimals": 9, - "name": "American Pepe", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x07040971246a73ebda9cf29ea1306bb47c7c4e76.png", - "aggregators": [ - "CoinMarketCap", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0xa6422e3e219ee6d4c1b18895275fe43556fd50ed": { - "address": "0xa6422e3e219ee6d4c1b18895275fe43556fd50ed", - "symbol": "STBU", - "decimals": 18, - "name": "Stobox Token", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xa6422e3e219ee6d4c1b18895275fe43556fd50ed.png", - "aggregators": [ - "CoinMarketCap", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x7137e8a3b069c3f787c4ffbb901b91e4ba47d082": { - "address": "0x7137e8a3b069c3f787c4ffbb901b91e4ba47d082", - "symbol": "ZEUS", - "decimals": 9, - "name": "Zeus", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x7137e8a3b069c3f787c4ffbb901b91e4ba47d082.png", - "aggregators": [ - "CoinGecko", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0xc668695dcbcf682de106da94bde65c9bc79362d3": { - "address": "0xc668695dcbcf682de106da94bde65c9bc79362d3", - "symbol": "SVPN", - "decimals": 18, - "name": "Shadow Node", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xc668695dcbcf682de106da94bde65c9bc79362d3.png", - "aggregators": [ - "CoinMarketCap", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0xaf75d880b3128981d1fed3292fc02e3fb37acd53": { - "address": "0xaf75d880b3128981d1fed3292fc02e3fb37acd53", - "symbol": "TRUTH", - "decimals": 9, - "name": "TruthGPT", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xaf75d880b3128981d1fed3292fc02e3fb37acd53.png", - "aggregators": [ - "CoinMarketCap", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0xf6ce4be313ead51511215f1874c898239a331e37": { - "address": "0xf6ce4be313ead51511215f1874c898239a331e37", - "symbol": "BIRDDOG", - "decimals": 9, - "name": "Bird Dog", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xf6ce4be313ead51511215f1874c898239a331e37.png", - "aggregators": [ - "CoinMarketCap", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x8bcbef61acd66537362f38167f11875134ffcd63": { - "address": "0x8bcbef61acd66537362f38167f11875134ffcd63", - "symbol": "PEPEG", - "decimals": 18, - "name": "Pepe Girl", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x8bcbef61acd66537362f38167f11875134ffcd63.png", - "aggregators": [ - "CoinMarketCap", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0xabd0e3535ecfbf6959b1798220335faf1b7ada3a": { - "address": "0xabd0e3535ecfbf6959b1798220335faf1b7ada3a", - "symbol": "PREAI", - "decimals": 18, - "name": "Predict Crypto", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xabd0e3535ecfbf6959b1798220335faf1b7ada3a.png", - "aggregators": [ - "CoinMarketCap", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x53250b5dfa8c911547afeaf18db025024c8e919a": { - "address": "0x53250b5dfa8c911547afeaf18db025024c8e919a", - "symbol": "KERMIT", - "decimals": 9, - "name": "Kermit", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x53250b5dfa8c911547afeaf18db025024c8e919a.png", - "aggregators": [ - "CoinMarketCap", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x748509433ef209c4d11ada51347d5724a5da0ca5": { - "address": "0x748509433ef209c4d11ada51347d5724a5da0ca5", - "symbol": "ANDY", - "decimals": 9, - "name": "Andy on ETH", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x748509433ef209c4d11ada51347d5724a5da0ca5.png", - "aggregators": [ - "CoinGecko", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x68bbed6a47194eff1cf514b50ea91895597fc91e": { - "address": "0x68bbed6a47194eff1cf514b50ea91895597fc91e", - "symbol": "ANDY", - "decimals": 18, - "name": "ANDY ETH", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x68bbed6a47194eff1cf514b50ea91895597fc91e.png", - "aggregators": [ - "CoinGecko", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x830a8512db4f6fca51968593e2667156c2c483a8": { - "address": "0x830a8512db4f6fca51968593e2667156c2c483a8", - "symbol": "WEN", - "decimals": 18, - "name": "WEN Token", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x830a8512db4f6fca51968593e2667156c2c483a8.png", - "aggregators": [ - "CoinMarketCap", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x94be6962be41377d5beda8dfe1b100f3bf0eacf3": { - "address": "0x94be6962be41377d5beda8dfe1b100f3bf0eacf3", - "symbol": "DORKL", - "decimals": 18, - "name": "DORK LORD ETH", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x94be6962be41377d5beda8dfe1b100f3bf0eacf3.png", - "aggregators": [ - "CoinMarketCap", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x699ec925118567b6475fe495327ba0a778234aaa": { - "address": "0x699ec925118567b6475fe495327ba0a778234aaa", - "symbol": "DUCKY", - "decimals": 9, - "name": "Ducky", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x699ec925118567b6475fe495327ba0a778234aaa.png", - "aggregators": [ - "CoinGecko", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0xc56c7a0eaa804f854b536a5f3d5f49d2ec4b12b8": { - "address": "0xc56c7a0eaa804f854b536a5f3d5f49d2ec4b12b8", - "symbol": "GME", - "decimals": 9, - "name": "GME Ethereum", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xc56c7a0eaa804f854b536a5f3d5f49d2ec4b12b8.png", - "aggregators": [ - "CoinGecko", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x87904be82bc1c29e94a0b99474d183b4e08a7e47": { - "address": "0x87904be82bc1c29e94a0b99474d183b4e08a7e47", - "symbol": "AICM", - "decimals": 9, - "name": "AICM Marketplace", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x87904be82bc1c29e94a0b99474d183b4e08a7e47.png", - "aggregators": [ - "CoinMarketCap", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x8a001303158670e284950565164933372807cd48": { - "address": "0x8a001303158670e284950565164933372807cd48", - "symbol": "WFAI", - "decimals": 18, - "name": "WaifuAI", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x8a001303158670e284950565164933372807cd48.png", - "aggregators": [ - "CoinMarketCap", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x1fdd61ef9a5c31b9a2abc7d39c139c779e8412af": { - "address": "0x1fdd61ef9a5c31b9a2abc7d39c139c779e8412af", - "symbol": "JJ", - "decimals": 9, - "name": "JEJE", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x1fdd61ef9a5c31b9a2abc7d39c139c779e8412af.png", - "aggregators": [ - "CoinMarketCap", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x382ea807a61a418479318efd96f1efbc5c1f2c21": { - "address": "0x382ea807a61a418479318efd96f1efbc5c1f2c21", - "symbol": "PEW", - "decimals": 18, - "name": "pepe in a memes world", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x382ea807a61a418479318efd96f1efbc5c1f2c21.png", - "aggregators": [ - "CoinMarketCap", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0xa589d8868607b8d79ee4288ce192796051263b64": { - "address": "0xa589d8868607b8d79ee4288ce192796051263b64", - "symbol": "TATE", - "decimals": 18, - "name": "TATE", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xa589d8868607b8d79ee4288ce192796051263b64.png", - "aggregators": [ - "CoinMarketCap", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0xd8695414822e25ab796c1d360914ddf510a01138": { - "address": "0xd8695414822e25ab796c1d360914ddf510a01138", - "symbol": "KAI", - "decimals": 18, - "name": "Kreaitor", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xd8695414822e25ab796c1d360914ddf510a01138.png", - "aggregators": [ - "CoinMarketCap", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x5a858d94011566f7d53f92feb54aff9ee3785db1": { - "address": "0x5a858d94011566f7d53f92feb54aff9ee3785db1", - "symbol": "FEFE", - "decimals": 9, - "name": "Fefe", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x5a858d94011566f7d53f92feb54aff9ee3785db1.png", - "aggregators": [ - "CoinMarketCap", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x1776b223ff636d0d76adf2290821f176421dd889": { - "address": "0x1776b223ff636d0d76adf2290821f176421dd889", - "symbol": "AMERICA", - "decimals": 9, - "name": "America1776", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x1776b223ff636d0d76adf2290821f176421dd889.png", - "aggregators": [ - "CoinMarketCap", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x9afc975edb8a0b57f066e8e0a72a5e2adbdcb605": { - "address": "0x9afc975edb8a0b57f066e8e0a72a5e2adbdcb605", - "symbol": "FSN", - "decimals": 18, - "name": "FUSION", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x9afc975edb8a0b57f066e8e0a72a5e2adbdcb605.png", - "aggregators": [ - "CoinMarketCap", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x01eeffcd9a10266ed00946121df097eed173b43d": { - "address": "0x01eeffcd9a10266ed00946121df097eed173b43d", - "symbol": "XD", - "decimals": 18, - "name": "XDoge", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x01eeffcd9a10266ed00946121df097eed173b43d.png", - "aggregators": [ - "CoinMarketCap", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x53206bf5b6b8872c1bb0b3c533e06fde2f7e22e4": { - "address": "0x53206bf5b6b8872c1bb0b3c533e06fde2f7e22e4", - "symbol": "BLEPE", - "decimals": 18, - "name": "Blepe", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x53206bf5b6b8872c1bb0b3c533e06fde2f7e22e4.png", - "aggregators": [ - "CoinMarketCap", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x6d68015171eaa7af9a5a0a103664cf1e506ff699": { - "address": "0x6d68015171eaa7af9a5a0a103664cf1e506ff699", - "symbol": "TUZKI", - "decimals": 9, - "name": "Tuzki", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x6d68015171eaa7af9a5a0a103664cf1e506ff699.png", - "aggregators": [ - "CoinMarketCap", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x8eedefe828a0f16c8fc80e46a87bc0f1de2d960c": { - "address": "0x8eedefe828a0f16c8fc80e46a87bc0f1de2d960c", - "symbol": "DGMV", - "decimals": 18, - "name": "DigiMetaverse", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x8eedefe828a0f16c8fc80e46a87bc0f1de2d960c.png", - "aggregators": [ - "CoinMarketCap", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0xa44136dc2e7a1543abbbf1c2a97e57c8d885e0be": { - "address": "0xa44136dc2e7a1543abbbf1c2a97e57c8d885e0be", - "symbol": "PFROG", - "decimals": 9, - "name": "Peace Frog", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xa44136dc2e7a1543abbbf1c2a97e57c8d885e0be.png", - "aggregators": [ - "CoinMarketCap", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x6942016b8de9d18a5831eeda915e48b27cc8e23d": { - "address": "0x6942016b8de9d18a5831eeda915e48b27cc8e23d", - "symbol": "PICKLE", - "decimals": 9, - "name": "Pickle", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x6942016b8de9d18a5831eeda915e48b27cc8e23d.png", - "aggregators": [ - "CoinMarketCap", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x8808434a831efea81170a56a9ddc57cc9e6de1d8": { - "address": "0x8808434a831efea81170a56a9ddc57cc9e6de1d8", - "symbol": "BORK", - "decimals": 18, - "name": "Bork on Ethereum", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x8808434a831efea81170a56a9ddc57cc9e6de1d8.png", - "aggregators": [ - "CoinMarketCap", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0xa0385e7283c83e2871e9af49eec0966088421ddd": { - "address": "0xa0385e7283c83e2871e9af49eec0966088421ddd", - "symbol": "APE", - "decimals": 18, - "name": "Ape", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xa0385e7283c83e2871e9af49eec0966088421ddd.png", - "aggregators": [ - "CoinMarketCap", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0xc5d27f27f08d1fd1e3ebbaa50b3442e6c0d50439": { - "address": "0xc5d27f27f08d1fd1e3ebbaa50b3442e6c0d50439", - "symbol": "APP", - "decimals": 18, - "name": "RWAX", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xc5d27f27f08d1fd1e3ebbaa50b3442e6c0d50439.png", - "aggregators": [ - "CoinMarketCap", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x25cbb21a9da7c3c63bb77ccca5b2e2482aedb710": { - "address": "0x25cbb21a9da7c3c63bb77ccca5b2e2482aedb710", - "symbol": "HOBA", - "decimals": 9, - "name": "Honey Badger", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x25cbb21a9da7c3c63bb77ccca5b2e2482aedb710.png", - "aggregators": [ - "CoinMarketCap", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x3300b02efa180c99a2f61f4731665b51e4e254c4": { - "address": "0x3300b02efa180c99a2f61f4731665b51e4e254c4", - "symbol": "HMKR", - "decimals": 9, - "name": "Hitmakr", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x3300b02efa180c99a2f61f4731665b51e4e254c4.png", - "aggregators": [ - "CoinMarketCap", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0xcc54ac31164b5b3c39db4eef26d89275c468ec9d": { - "address": "0xcc54ac31164b5b3c39db4eef26d89275c468ec9d", - "symbol": "FUELX", - "decimals": 18, - "name": "Fuel", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xcc54ac31164b5b3c39db4eef26d89275c468ec9d.png", - "aggregators": [ - "CoinMarketCap", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0xd4419c2d3daa986dc30444fa333a846be44fd1eb": { - "address": "0xd4419c2d3daa986dc30444fa333a846be44fd1eb", - "symbol": "ZIK", - "decimals": 18, - "name": "ZIK coin", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xd4419c2d3daa986dc30444fa333a846be44fd1eb.png", - "aggregators": [ - "CoinMarketCap", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x6439221d2b06a4cdf38f52a55294ddc28e1bed08": { - "address": "0x6439221d2b06a4cdf38f52a55294ddc28e1bed08", - "symbol": "GNOMY", - "decimals": 18, - "name": "Gnomy", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x6439221d2b06a4cdf38f52a55294ddc28e1bed08.png", - "aggregators": [ - "CoinMarketCap", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0xfd4f2caf941b6d737382dce420b368de3fc7f2d4": { - "address": "0xfd4f2caf941b6d737382dce420b368de3fc7f2d4", - "symbol": "PATEX", - "decimals": 18, - "name": "Patex", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xfd4f2caf941b6d737382dce420b368de3fc7f2d4.png", - "aggregators": [ - "CoinMarketCap", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x508df5aa4746be37b5b6a69684dfd8bdc322219d": { - "address": "0x508df5aa4746be37b5b6a69684dfd8bdc322219d", - "symbol": "CRF", - "decimals": 18, - "name": "Crafting Finance", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x508df5aa4746be37b5b6a69684dfd8bdc322219d.png", - "aggregators": [ - "CoinMarketCap", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x5c559f3ee9a81da83e069c0093471cb05d84052a": { - "address": "0x5c559f3ee9a81da83e069c0093471cb05d84052a", - "symbol": "BABYPEPE", - "decimals": 18, - "name": "BabyPepe", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x5c559f3ee9a81da83e069c0093471cb05d84052a.png", - "aggregators": [ - "CoinMarketCap", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x9eec1a4814323a7396c938bc86aec46b97f1bd82": { - "address": "0x9eec1a4814323a7396c938bc86aec46b97f1bd82", - "symbol": "TOKU", - "decimals": 18, - "name": "Toku", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x9eec1a4814323a7396c938bc86aec46b97f1bd82.png", - "aggregators": [ - "CoinMarketCap", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x1a963df363d01eebb2816b366d61c917f20e1ebe": { - "address": "0x1a963df363d01eebb2816b366d61c917f20e1ebe", - "symbol": "MEMEME", - "decimals": 18, - "name": "MEMEME", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x1a963df363d01eebb2816b366d61c917f20e1ebe.png", - "aggregators": [ - "CoinMarketCap", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x590246bfbf89b113d8ac36faeea12b7589f7fe5b": { - "address": "0x590246bfbf89b113d8ac36faeea12b7589f7fe5b", - "symbol": "FLAPPY", - "decimals": 9, - "name": "Flappy", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x590246bfbf89b113d8ac36faeea12b7589f7fe5b.png", - "aggregators": [ - "CoinMarketCap", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x85f7cfe910393fb5593c65230622aa597e4223f1": { - "address": "0x85f7cfe910393fb5593c65230622aa597e4223f1", - "symbol": "NITEFEEDER", - "decimals": 9, - "name": "Nitefeeder", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x85f7cfe910393fb5593c65230622aa597e4223f1.png", - "aggregators": [ - "CoinMarketCap", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x82a77710495a35549d2add797412b4a4497d33ef": { - "address": "0x82a77710495a35549d2add797412b4a4497d33ef", - "symbol": "DOGZ", - "decimals": 18, - "name": "Dogz", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x82a77710495a35549d2add797412b4a4497d33ef.png", - "aggregators": [ - "CoinMarketCap", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x83249c6794bca5a77eb8c0af9f1a86e055459cea": { - "address": "0x83249c6794bca5a77eb8c0af9f1a86e055459cea", - "symbol": "GIGA", - "decimals": 9, - "name": "GigaSwap", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x83249c6794bca5a77eb8c0af9f1a86e055459cea.png", - "aggregators": [ - "CoinMarketCap", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x426a688ee72811773eb64f5717a32981b56f10c1": { - "address": "0x426a688ee72811773eb64f5717a32981b56f10c1", - "symbol": "AMC", - "decimals": 18, - "name": "AMC", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x426a688ee72811773eb64f5717a32981b56f10c1.png", - "aggregators": [ - "CoinMarketCap", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x07ddacf367f0d40bd68b4b80b4709a37bdc9f847": { - "address": "0x07ddacf367f0d40bd68b4b80b4709a37bdc9f847", - "symbol": "MOJO", - "decimals": 18, - "name": "Mojo", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x07ddacf367f0d40bd68b4b80b4709a37bdc9f847.png", - "aggregators": [ - "CoinMarketCap", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0xc328a59e7321747aebbc49fd28d1b32c1af8d3b2": { - "address": "0xc328a59e7321747aebbc49fd28d1b32c1af8d3b2", - "symbol": "PHIL", - "decimals": 18, - "name": "Phil", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xc328a59e7321747aebbc49fd28d1b32c1af8d3b2.png", - "aggregators": [ - "CoinMarketCap", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x5efcea234f7547de4569aad1215fa5d2adaced38": { - "address": "0x5efcea234f7547de4569aad1215fa5d2adaced38", - "symbol": "HONK", - "decimals": 18, - "name": "Clown Pepe", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x5efcea234f7547de4569aad1215fa5d2adaced38.png", - "aggregators": [ - "CoinMarketCap", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x724313985dcb55d432d3888ddc0b9e3d3859e86d": { - "address": "0x724313985dcb55d432d3888ddc0b9e3d3859e86d", - "symbol": "BRUNE", - "decimals": 18, - "name": "BitRunes", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x724313985dcb55d432d3888ddc0b9e3d3859e86d.png", - "aggregators": [ - "CoinMarketCap", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x69ee720c120ec7c9c52a625c04414459b3185f23": { - "address": "0x69ee720c120ec7c9c52a625c04414459b3185f23", - "symbol": "PEEZY", - "decimals": 18, - "name": "Young Peezy", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x69ee720c120ec7c9c52a625c04414459b3185f23.png", - "aggregators": [ - "CoinMarketCap", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x00282fd551d03dc033256c4bf119532e8c735d8a": { - "address": "0x00282fd551d03dc033256c4bf119532e8c735d8a", - "symbol": "BIAO", - "decimals": 2, - "name": "Biaocoin", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x00282fd551d03dc033256c4bf119532e8c735d8a.png", - "aggregators": [ - "CoinMarketCap", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x70fd93fb088150e203d2243b9bd3190276f80c70": { - "address": "0x70fd93fb088150e203d2243b9bd3190276f80c70", - "symbol": "BIRDDOG", - "decimals": 9, - "name": "Birddog", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x70fd93fb088150e203d2243b9bd3190276f80c70.png", - "aggregators": [ - "CoinMarketCap", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x910812c44ed2a3b611e4b051d9d83a88d652e2dd": { - "address": "0x910812c44ed2a3b611e4b051d9d83a88d652e2dd", - "symbol": "PLEDGE", - "decimals": 18, - "name": "Pledge", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x910812c44ed2a3b611e4b051d9d83a88d652e2dd.png", - "aggregators": [ - "CoinGecko", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0xbd32bec7c76d28aa054fc0c907d601b9263e22c7": { - "address": "0xbd32bec7c76d28aa054fc0c907d601b9263e22c7", - "symbol": "PE", - "decimals": 18, - "name": "PE", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xbd32bec7c76d28aa054fc0c907d601b9263e22c7.png", - "aggregators": [ - "CoinMarketCap", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0xaaf449bf8a33a32575c31ba8cbb90612dd95acfa": { - "address": "0xaaf449bf8a33a32575c31ba8cbb90612dd95acfa", - "symbol": "MBD", - "decimals": 18, - "name": "MBD Financials", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xaaf449bf8a33a32575c31ba8cbb90612dd95acfa.png", - "aggregators": [ - "CoinMarketCap", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x0c2e08e459fc43ddd1e2718c122f566473f59665": { - "address": "0x0c2e08e459fc43ddd1e2718c122f566473f59665", - "symbol": "BURGER", - "decimals": 9, - "name": "Crypto Burger", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x0c2e08e459fc43ddd1e2718c122f566473f59665.png", - "aggregators": [ - "CoinMarketCap", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x09d92c109b475dd513292c76544b4e250da13faa": { - "address": "0x09d92c109b475dd513292c76544b4e250da13faa", - "symbol": "DOGGY", - "decimals": 18, - "name": "DOGGY COIN", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x09d92c109b475dd513292c76544b4e250da13faa.png", - "aggregators": [ - "CoinMarketCap", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0xc76d53f988820fe70e01eccb0248b312c2f1c7ca": { - "address": "0xc76d53f988820fe70e01eccb0248b312c2f1c7ca", - "symbol": "INU", - "decimals": 18, - "name": "Inu Token", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xc76d53f988820fe70e01eccb0248b312c2f1c7ca.png", - "aggregators": [ - "CoinMarketCap", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0xc77336fdd91e22c737b0f5ec33f4c429caa1d13b": { - "address": "0xc77336fdd91e22c737b0f5ec33f4c429caa1d13b", - "symbol": "BALTO", - "decimals": 9, - "name": "BALTO", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xc77336fdd91e22c737b0f5ec33f4c429caa1d13b.png", - "aggregators": [ - "CoinMarketCap", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0xaf05ce8a2cef336006e933c02fc89887f5b3c726": { - "address": "0xaf05ce8a2cef336006e933c02fc89887f5b3c726", - "symbol": "LMI", - "decimals": 18, - "name": "Lockheed Martin Inu", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xaf05ce8a2cef336006e933c02fc89887f5b3c726.png", - "aggregators": [ - "CoinMarketCap", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x490bd60a5d3e1207fba9b699017561434cc8c675": { - "address": "0x490bd60a5d3e1207fba9b699017561434cc8c675", - "symbol": "BUGS", - "decimals": 18, - "name": "Bugs Bunny", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x490bd60a5d3e1207fba9b699017561434cc8c675.png", - "aggregators": [ - "CoinMarketCap", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x85d19fb57ca7da715695fcf347ca2169144523a7": { - "address": "0x85d19fb57ca7da715695fcf347ca2169144523a7", - "symbol": "CONAN", - "decimals": 9, - "name": "Conan", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x85d19fb57ca7da715695fcf347ca2169144523a7.png", - "aggregators": [ - "CoinMarketCap", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x067def80d66fb69c276e53b641f37ff7525162f6": { - "address": "0x067def80d66fb69c276e53b641f37ff7525162f6", - "symbol": "OGPU", - "decimals": 18, - "name": "OPEN GPU", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x067def80d66fb69c276e53b641f37ff7525162f6.png", - "aggregators": [ - "CoinMarketCap", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x616254b3c79639f89e756495ac687735b27b5e17": { - "address": "0x616254b3c79639f89e756495ac687735b27b5e17", - "symbol": "RINO", - "decimals": 18, - "name": "Rino", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x616254b3c79639f89e756495ac687735b27b5e17.png", - "aggregators": [ - "CoinMarketCap", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0xad86b91a1d1db15a4cd34d0634bbd4ecacb5b61a": { - "address": "0xad86b91a1d1db15a4cd34d0634bbd4ecacb5b61a", - "symbol": "DARAM", - "decimals": 18, - "name": "Daram", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xad86b91a1d1db15a4cd34d0634bbd4ecacb5b61a.png", - "aggregators": [ - "CoinMarketCap", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x73e0c0d45e048d25fc26fa3159b0aa04bfa4db98": { - "address": "0x73e0c0d45e048d25fc26fa3159b0aa04bfa4db98", - "symbol": "KBTC", - "decimals": 8, - "name": "Kraken Wrapped BTC", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x73e0c0d45e048d25fc26fa3159b0aa04bfa4db98.png", - "aggregators": [ - "CoinMarketCap", - "1inch", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x88417754ff7062c10f4e3a4ab7e9f9d9cbda6023": { - "address": "0x88417754ff7062c10f4e3a4ab7e9f9d9cbda6023", - "symbol": "PEEPA", - "decimals": 18, - "name": "Peepa", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x88417754ff7062c10f4e3a4ab7e9f9d9cbda6023.png", - "aggregators": [ - "CoinMarketCap", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x54012cdf4119de84218f7eb90eeb87e25ae6ebd7": { - "address": "0x54012cdf4119de84218f7eb90eeb87e25ae6ebd7", - "symbol": "LUFFY", - "decimals": 9, - "name": "Luffy", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x54012cdf4119de84218f7eb90eeb87e25ae6ebd7.png", - "aggregators": [ - "CoinMarketCap", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x2541a36be4cd39286ed61a3e6afc2307602489d6": { - "address": "0x2541a36be4cd39286ed61a3e6afc2307602489d6", - "symbol": "DOGE20", - "decimals": 18, - "name": "Dogecoin20", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x2541a36be4cd39286ed61a3e6afc2307602489d6.png", - "aggregators": [ - "CoinMarketCap", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x42069f39c71816cea208451598425b492dd2b380": { - "address": "0x42069f39c71816cea208451598425b492dd2b380", - "symbol": "GOOMPY", - "decimals": 9, - "name": "Goompy", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x42069f39c71816cea208451598425b492dd2b380.png", - "aggregators": [ - "CoinMarketCap", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x2282c726f54c93193e6b8e5bf1b82303dc11d36e": { - "address": "0x2282c726f54c93193e6b8e5bf1b82303dc11d36e", - "symbol": "DAY", - "decimals": 6, - "name": "Dayhub", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x2282c726f54c93193e6b8e5bf1b82303dc11d36e.png", - "aggregators": [ - "CoinMarketCap", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x396c95abe154b3b2ed204cf45c8726aa7ad47a4d": { - "address": "0x396c95abe154b3b2ed204cf45c8726aa7ad47a4d", - "symbol": "GDT", - "decimals": 18, - "name": "Gradient Protocol", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x396c95abe154b3b2ed204cf45c8726aa7ad47a4d.png", - "aggregators": [ - "CoinMarketCap", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x7a65cb87f596caf31a4932f074c59c0592be77d7": { - "address": "0x7a65cb87f596caf31a4932f074c59c0592be77d7", - "symbol": "ZYPTO", - "decimals": 18, - "name": "Zypto Token", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x7a65cb87f596caf31a4932f074c59c0592be77d7.png", - "aggregators": [ - "CoinMarketCap", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x5888641e3e6cbea6d84ba81edb217bd691d3be38": { - "address": "0x5888641e3e6cbea6d84ba81edb217bd691d3be38", - "symbol": "BOBO", - "decimals": 9, - "name": "Bobo", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x5888641e3e6cbea6d84ba81edb217bd691d3be38.png", - "aggregators": [ - "CoinMarketCap", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x26e550ac11b26f78a04489d5f20f24e3559f7dd9": { - "address": "0x26e550ac11b26f78a04489d5f20f24e3559f7dd9", - "symbol": "KEKIUS", - "decimals": 9, - "name": "Kekius Maximus", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x26e550ac11b26f78a04489d5f20f24e3559f7dd9.png", - "aggregators": [ - "CoinGecko", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x70ef0df8b656403fc8c632c52661f19fc9934471": { - "address": "0x70ef0df8b656403fc8c632c52661f19fc9934471", - "symbol": "SKULL", - "decimals": 18, - "name": "Wolf Skull", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x70ef0df8b656403fc8c632c52661f19fc9934471.png", - "aggregators": [ - "CoinMarketCap", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0xf4b7b9ab55a2eeb3bd6123b8f45b0abffd5089c7": { - "address": "0xf4b7b9ab55a2eeb3bd6123b8f45b0abffd5089c7", - "symbol": "SHIB", - "decimals": 9, - "name": "Strategic Hub for Innovation in Blockch", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xf4b7b9ab55a2eeb3bd6123b8f45b0abffd5089c7.png", - "aggregators": [ - "CoinMarketCap", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0xc01154b4ccb518232d6bbfc9b9e6c5068b766f82": { - "address": "0xc01154b4ccb518232d6bbfc9b9e6c5068b766f82", - "symbol": "NEX", - "decimals": 18, - "name": "NEXUS", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xc01154b4ccb518232d6bbfc9b9e6c5068b766f82.png", - "aggregators": [ - "CoinMarketCap", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x6c38f26eaee4e1bdf7d2b4d42467b7a8a6082f5a": { - "address": "0x6c38f26eaee4e1bdf7d2b4d42467b7a8a6082f5a", - "symbol": "SHIRO", - "decimals": 9, - "name": "Shiro Neko CTO", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x6c38f26eaee4e1bdf7d2b4d42467b7a8a6082f5a.png", - "aggregators": [ - "CoinGecko", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x90e3532cf06d567ef7e6385be532311f10c30096": { - "address": "0x90e3532cf06d567ef7e6385be532311f10c30096", - "symbol": "RSP", - "decimals": 18, - "name": "Reality Spiral", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x90e3532cf06d567ef7e6385be532311f10c30096.png", - "aggregators": [ - "CoinMarketCap", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x9a0df129e798438a8ad995368bd82baa7eee8913": { - "address": "0x9a0df129e798438a8ad995368bd82baa7eee8913", - "symbol": "BEEP", - "decimals": 18, - "name": "BEEP Coin", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x9a0df129e798438a8ad995368bd82baa7eee8913.png", - "aggregators": [ - "CoinMarketCap", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x252b9f56359901a0bde52d0675b1f1130d86f471": { - "address": "0x252b9f56359901a0bde52d0675b1f1130d86f471", - "symbol": "PANDO", - "decimals": 18, - "name": "Pando", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x252b9f56359901a0bde52d0675b1f1130d86f471.png", - "aggregators": [ - "CoinMarketCap", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0xd2b274cfbf9534f56b59ad0fb7e645e0354f4941": { - "address": "0xd2b274cfbf9534f56b59ad0fb7e645e0354f4941", - "symbol": "XDOGE", - "decimals": 8, - "name": "XDOGE", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xd2b274cfbf9534f56b59ad0fb7e645e0354f4941.png", - "aggregators": [ - "CoinMarketCap", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x6f2dec5da475333b0af4a3ffc9a33b0211a9a452": { - "address": "0x6f2dec5da475333b0af4a3ffc9a33b0211a9a452", - "symbol": "CT", - "decimals": 18, - "name": "CryptoTwitter", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x6f2dec5da475333b0af4a3ffc9a33b0211a9a452.png", - "aggregators": [ - "CoinMarketCap", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x7d3e4165fd7d8590fb2a415a550f7bdece5c4f52": { - "address": "0x7d3e4165fd7d8590fb2a415a550f7bdece5c4f52", - "symbol": "DNA", - "decimals": 18, - "name": "Muhdo Hub", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x7d3e4165fd7d8590fb2a415a550f7bdece5c4f52.png", - "aggregators": [ - "CoinMarketCap", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x99c6e435ec259a7e8d65e1955c9423db624ba54c": { - "address": "0x99c6e435ec259a7e8d65e1955c9423db624ba54c", - "symbol": "FMT", - "decimals": 18, - "name": "Finminity", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x99c6e435ec259a7e8d65e1955c9423db624ba54c.png", - "aggregators": [ - "CoinMarketCap", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x9727eaf447203be268e5d471b6503bf47a71ea72": { - "address": "0x9727eaf447203be268e5d471b6503bf47a71ea72", - "symbol": "ARKY", - "decimals": 9, - "name": "Arky", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x9727eaf447203be268e5d471b6503bf47a71ea72.png", - "aggregators": [ - "CoinMarketCap", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x9783b81438c24848f85848f8df31845097341771": { - "address": "0x9783b81438c24848f85848f8df31845097341771", - "symbol": "COLLAR", - "decimals": 18, - "name": "Dog Collar", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x9783b81438c24848f85848f8df31845097341771.png", - "aggregators": [ - "CoinMarketCap", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x420fbb6006fb251318414ffa530590c3d7618e33": { - "address": "0x420fbb6006fb251318414ffa530590c3d7618e33", - "symbol": "ICELAND", - "decimals": 9, - "name": "ICE LAND on ETH", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x420fbb6006fb251318414ffa530590c3d7618e33.png", - "aggregators": [ - "CoinMarketCap", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x2817cecf94465a9f7becf43d9b7c8025e88a4213": { - "address": "0x2817cecf94465a9f7becf43d9b7c8025e88a4213", - "symbol": "WX", - "decimals": 18, - "name": "Weave6", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x2817cecf94465a9f7becf43d9b7c8025e88a4213.png", - "aggregators": [ - "CoinMarketCap", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x6d57b2e05f26c26b549231c866bdd39779e4a488": { - "address": "0x6d57b2e05f26c26b549231c866bdd39779e4a488", - "symbol": "VNXAU", - "decimals": 18, - "name": "VNX Gold", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x6d57b2e05f26c26b549231c866bdd39779e4a488.png", - "aggregators": [ - "CoinMarketCap", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0xc06caead870d3a8af2504637b6c5b7248bed6116": { - "address": "0xc06caead870d3a8af2504637b6c5b7248bed6116", - "symbol": "BUSINESS", - "decimals": 8, - "name": "Business Coin", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xc06caead870d3a8af2504637b6c5b7248bed6116.png", - "aggregators": [ - "CoinGecko", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0xc5190e7fec4d97a3a3b1ab42dfedac608e2d0793": { - "address": "0xc5190e7fec4d97a3a3b1ab42dfedac608e2d0793", - "symbol": "FXI", - "decimals": 18, - "name": "FX1Sports", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xc5190e7fec4d97a3a3b1ab42dfedac608e2d0793.png", - "aggregators": [ - "CoinMarketCap", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0xa6c0c097741d55ecd9a3a7def3a8253fd022ceb9": { - "address": "0xa6c0c097741d55ecd9a3a7def3a8253fd022ceb9", - "symbol": "AVA", - "decimals": 18, - "name": "AVA Travala", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xa6c0c097741d55ecd9a3a7def3a8253fd022ceb9.png", - "aggregators": [ - "CoinGecko", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0xf19308f923582a6f7c465e5ce7a9dc1bec6665b1": { - "address": "0xf19308f923582a6f7c465e5ce7a9dc1bec6665b1", - "symbol": "TITANX", - "decimals": 18, - "name": "TitanX", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xf19308f923582a6f7c465e5ce7a9dc1bec6665b1.png", - "aggregators": [ - "CoinMarketCap", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x17a79792fe6fe5c95dfe95fe3fcee3caf4fe4cb7": { - "address": "0x17a79792fe6fe5c95dfe95fe3fcee3caf4fe4cb7", - "symbol": "AAMMUSDT", - "decimals": 6, - "name": "Aave AMM USDT", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x17a79792fe6fe5c95dfe95fe3fcee3caf4fe4cb7.png", - "aggregators": [ - "CoinMarketCap", - "LiFi", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x083d41d6dd21ee938f0c055ca4fb12268df0efac": { - "address": "0x083d41d6dd21ee938f0c055ca4fb12268df0efac", - "symbol": "GOL", - "decimals": 4, - "name": "GogolCoin", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x083d41d6dd21ee938f0c055ca4fb12268df0efac.png", - "aggregators": [ - "Metamask", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x6096b8765eb48cd2193f840a977f3727e7800356": { - "address": "0x6096b8765eb48cd2193f840a977f3727e7800356", - "symbol": "CRAB", - "decimals": 18, - "name": "CRABBY", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x6096b8765eb48cd2193f840a977f3727e7800356.png", - "aggregators": [ - "CoinMarketCap", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x1a11ea9d61588d756d9f1014c3cf0d226aedd279": { - "address": "0x1a11ea9d61588d756d9f1014c3cf0d226aedd279", - "symbol": "MILEI", - "decimals": 18, - "name": "MILEI Token", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x1a11ea9d61588d756d9f1014c3cf0d226aedd279.png", - "aggregators": [ - "CoinMarketCap", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x1b54a6fa1360bd71a0f28f77a1d6fba215d498c3": { - "address": "0x1b54a6fa1360bd71a0f28f77a1d6fba215d498c3", - "symbol": "CASINU", - "decimals": 9, - "name": "Casinu Inu", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x1b54a6fa1360bd71a0f28f77a1d6fba215d498c3.png", - "aggregators": [ - "CoinMarketCap", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x21cd589a989615a9e901328d3c089bbca16d00b2": { - "address": "0x21cd589a989615a9e901328d3c089bbca16d00b2", - "symbol": "XMONEY", - "decimals": 9, - "name": "X Money", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x21cd589a989615a9e901328d3c089bbca16d00b2.png", - "aggregators": [ - "CoinMarketCap", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0xd8dd38ca016f3e0b3bc545d33cce72af274ce075": { - "address": "0xd8dd38ca016f3e0b3bc545d33cce72af274ce075", - "symbol": "SWING", - "decimals": 18, - "name": "Swing xyz", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xd8dd38ca016f3e0b3bc545d33cce72af274ce075.png", - "aggregators": [ - "CoinMarketCap", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0xf70ce9ee486106882d3dc43ddbd84e0fa71ac2a5": { - "address": "0xf70ce9ee486106882d3dc43ddbd84e0fa71ac2a5", - "symbol": "DUCKER", - "decimals": 18, - "name": "Ducker", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xf70ce9ee486106882d3dc43ddbd84e0fa71ac2a5.png", - "aggregators": [ - "CoinMarketCap", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x2be056e595110b30ddd5eaf674bdac54615307d9": { - "address": "0x2be056e595110b30ddd5eaf674bdac54615307d9", - "symbol": "APUFF", - "decimals": 18, - "name": "Airpuff", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x2be056e595110b30ddd5eaf674bdac54615307d9.png", - "aggregators": [ - "CoinGecko", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x425087bf4969f45818c225ae30f8560ce518582e": { - "address": "0x425087bf4969f45818c225ae30f8560ce518582e", - "symbol": "LFDOG", - "decimals": 18, - "name": "lifedog", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x425087bf4969f45818c225ae30f8560ce518582e.png", - "aggregators": [ - "CoinMarketCap", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x9db0fb0aebe6a925b7838d16e3993a3976a64aab": { - "address": "0x9db0fb0aebe6a925b7838d16e3993a3976a64aab", - "symbol": "BAM", - "decimals": 18, - "name": "Bambi", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x9db0fb0aebe6a925b7838d16e3993a3976a64aab.png", - "aggregators": [ - "CoinMarketCap", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x5f5166c4fdb9055efb24a7e75cc1a21ca8ca61a3": { - "address": "0x5f5166c4fdb9055efb24a7e75cc1a21ca8ca61a3", - "symbol": "X", - "decimals": 9, - "name": "AI X", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x5f5166c4fdb9055efb24a7e75cc1a21ca8ca61a3.png", - "aggregators": [ - "CoinMarketCap", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x1f19d846d99a0e75581913b64510fe0e18bbc31f": { - "address": "0x1f19d846d99a0e75581913b64510fe0e18bbc31f", - "symbol": "FGM", - "decimals": 18, - "name": "Feels Good Man", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x1f19d846d99a0e75581913b64510fe0e18bbc31f.png", - "aggregators": [ - "CoinMarketCap", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x9194337c06405623c0f374e63fa1cc94e2788c58": { - "address": "0x9194337c06405623c0f374e63fa1cc94e2788c58", - "symbol": "CYBONK", - "decimals": 18, - "name": "CYBONK", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x9194337c06405623c0f374e63fa1cc94e2788c58.png", - "aggregators": [ - "CoinMarketCap", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x285db79fa7e0e89e822786f48a7c98c6c1dc1c7d": { - "address": "0x285db79fa7e0e89e822786f48a7c98c6c1dc1c7d", - "symbol": "MIC", - "decimals": 18, - "name": "Magic Internet Cash", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x285db79fa7e0e89e822786f48a7c98c6c1dc1c7d.png", - "aggregators": [ - "CoinMarketCap", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x0cba60ca5ef4d42f92a5070a8fedd13be93e2861": { - "address": "0x0cba60ca5ef4d42f92a5070a8fedd13be93e2861", - "symbol": "THE", - "decimals": 18, - "name": "The Protocol", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x0cba60ca5ef4d42f92a5070a8fedd13be93e2861.png", - "aggregators": [ - "CoinMarketCap", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x6afcff9189e8ed3fcc1cffa184feb1276f6a82a5": { - "address": "0x6afcff9189e8ed3fcc1cffa184feb1276f6a82a5", - "symbol": "PETS", - "decimals": 18, - "name": "PolkaPet World", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x6afcff9189e8ed3fcc1cffa184feb1276f6a82a5.png", - "aggregators": [ - "CoinMarketCap", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x60f67e1015b3f069dd4358a78c38f83fe3a667a9": { - "address": "0x60f67e1015b3f069dd4358a78c38f83fe3a667a9", - "symbol": "ROUTE", - "decimals": 18, - "name": "Router Protocol", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x60f67e1015b3f069dd4358a78c38f83fe3a667a9.png", - "aggregators": [ - "CoinGecko", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x6b985d38b1fc891bb57bff59573626b1896d4aa1": { - "address": "0x6b985d38b1fc891bb57bff59573626b1896d4aa1", - "symbol": "FIDO", - "decimals": 9, - "name": "Fido", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x6b985d38b1fc891bb57bff59573626b1896d4aa1.png", - "aggregators": [ - "CoinMarketCap", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x419777d3e39aa9b00405724eace5ea57620c9062": { - "address": "0x419777d3e39aa9b00405724eace5ea57620c9062", - "symbol": "PAW", - "decimals": 18, - "name": "PAW", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x419777d3e39aa9b00405724eace5ea57620c9062.png", - "aggregators": [ - "CoinMarketCap", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0xb9d09bc374577dac1ab853de412a903408204ea8": { - "address": "0xb9d09bc374577dac1ab853de412a903408204ea8", - "symbol": "SHEI", - "decimals": 18, - "name": "SheiShei", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xb9d09bc374577dac1ab853de412a903408204ea8.png", - "aggregators": [ - "CoinMarketCap", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x973e00eee6d180b5a0eb08ce3047ac4ea7a45cd5": { - "address": "0x973e00eee6d180b5a0eb08ce3047ac4ea7a45cd5", - "symbol": "TOTO", - "decimals": 9, - "name": "TOTO", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x973e00eee6d180b5a0eb08ce3047ac4ea7a45cd5.png", - "aggregators": [ - "CoinMarketCap", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x8f1cece048cade6b8a05dfa2f90ee4025f4f2662": { - "address": "0x8f1cece048cade6b8a05dfa2f90ee4025f4f2662", - "symbol": "GFOX", - "decimals": 18, - "name": "Galaxy Fox", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x8f1cece048cade6b8a05dfa2f90ee4025f4f2662.png", - "aggregators": [ - "CoinMarketCap", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0xe19f85c920b572ca48942315b06d6cac86585c87": { - "address": "0xe19f85c920b572ca48942315b06d6cac86585c87", - "symbol": "PLEB", - "decimals": 18, - "name": "PLEB Token", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xe19f85c920b572ca48942315b06d6cac86585c87.png", - "aggregators": [ - "CoinMarketCap", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x6f3277ad0782a7da3eb676b85a8346a100bf9c1c": { - "address": "0x6f3277ad0782a7da3eb676b85a8346a100bf9c1c", - "symbol": "DOGPAD", - "decimals": 18, - "name": "DogPad Finance", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x6f3277ad0782a7da3eb676b85a8346a100bf9c1c.png", - "aggregators": [ - "CoinMarketCap", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0xc64500dd7b0f1794807e67802f8abbf5f8ffb054": { - "address": "0xc64500dd7b0f1794807e67802f8abbf5f8ffb054", - "symbol": "LOCUS", - "decimals": 18, - "name": "Locus Chain", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xc64500dd7b0f1794807e67802f8abbf5f8ffb054.png", - "aggregators": [ - "CoinMarketCap", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x5d942f9872863645bcb181aba66c7d9646a91378": { - "address": "0x5d942f9872863645bcb181aba66c7d9646a91378", - "symbol": "ASI", - "decimals": 18, - "name": "AltSignals", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x5d942f9872863645bcb181aba66c7d9646a91378.png", - "aggregators": [ - "CoinMarketCap", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x8c130499d33097d4d000d3332e1672f75b431543": { - "address": "0x8c130499d33097d4d000d3332e1672f75b431543", - "symbol": "HOPPY", - "decimals": 8, - "name": "Hoppy Token", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x8c130499d33097d4d000d3332e1672f75b431543.png", - "aggregators": [ - "CoinMarketCap", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x60f5672a271c7e39e787427a18353ba59a4a3578": { - "address": "0x60f5672a271c7e39e787427a18353ba59a4a3578", - "symbol": "PIKA", - "decimals": 18, - "name": "Pika", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x60f5672a271c7e39e787427a18353ba59a4a3578.png", - "aggregators": [ - "CoinMarketCap", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0xdc7ac5d5d4a9c3b5d8f3183058a92776dc12f4f3": { - "address": "0xdc7ac5d5d4a9c3b5d8f3183058a92776dc12f4f3", - "symbol": "MONKAS", - "decimals": 9, - "name": "Monkas", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xdc7ac5d5d4a9c3b5d8f3183058a92776dc12f4f3.png", - "aggregators": [ - "CoinMarketCap", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0xaee5913ffd19dbca4fd1ef6f3925ed0414407d37": { - "address": "0xaee5913ffd19dbca4fd1ef6f3925ed0414407d37", - "symbol": "YLAY", - "decimals": 18, - "name": "Yelay", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xaee5913ffd19dbca4fd1ef6f3925ed0414407d37.png", - "aggregators": [ - "CoinMarketCap", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x2b81945875f892aff04af0a298d35fb2cf848c7b": { - "address": "0x2b81945875f892aff04af0a298d35fb2cf848c7b", - "symbol": "WEB", - "decimals": 9, - "name": "Web", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x2b81945875f892aff04af0a298d35fb2cf848c7b.png", - "aggregators": [ - "CoinMarketCap", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0xbeef698bd78139829e540622d5863e723e8715f1": { - "address": "0xbeef698bd78139829e540622d5863e723e8715f1", - "symbol": "BEEF", - "decimals": 9, - "name": "PepeBull", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xbeef698bd78139829e540622d5863e723e8715f1.png", - "aggregators": [ - "CoinMarketCap", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0xbadff0ef41d2a68f22de21eabca8a59aaf495cf0": { - "address": "0xbadff0ef41d2a68f22de21eabca8a59aaf495cf0", - "symbol": "KABOSU", - "decimals": 18, - "name": "Kabosu Inu", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xbadff0ef41d2a68f22de21eabca8a59aaf495cf0.png", - "aggregators": [ - "CoinMarketCap", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x6d614686550b9e1c1df4b2cd8f91c9d4df66c810": { - "address": "0x6d614686550b9e1c1df4b2cd8f91c9d4df66c810", - "symbol": "SKEB", - "decimals": 18, - "name": "Skeb", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x6d614686550b9e1c1df4b2cd8f91c9d4df66c810.png", - "aggregators": [ - "CoinMarketCap", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0xf03d5fc6e08de6ad886fca34abf9a59ef633b78a": { - "address": "0xf03d5fc6e08de6ad886fca34abf9a59ef633b78a", - "symbol": "CAPY", - "decimals": 18, - "name": "Capybara Token", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xf03d5fc6e08de6ad886fca34abf9a59ef633b78a.png", - "aggregators": [ - "CoinGecko", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x3e362038fd3d08887d498944d489af7909619a9b": { - "address": "0x3e362038fd3d08887d498944d489af7909619a9b", - "symbol": "CHOW", - "decimals": 18, - "name": "CHOW CHOW", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x3e362038fd3d08887d498944d489af7909619a9b.png", - "aggregators": [ - "CoinMarketCap", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x4da08a1bff50be96bded5c7019227164b49c2bfc": { - "address": "0x4da08a1bff50be96bded5c7019227164b49c2bfc", - "symbol": "MONONOKE-INU", - "decimals": 9, - "name": "Mononoke Inu", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x4da08a1bff50be96bded5c7019227164b49c2bfc.png", - "aggregators": [ - "CoinMarketCap", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x64c5cba9a1bfbd2a5faf601d91beff2dcac2c974": { - "address": "0x64c5cba9a1bfbd2a5faf601d91beff2dcac2c974", - "symbol": "MYSTERY", - "decimals": 18, - "name": "Mystery", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x64c5cba9a1bfbd2a5faf601d91beff2dcac2c974.png", - "aggregators": [ - "CoinMarketCap", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0xf56842af3b56fd72d17cb103f92d027bba912e89": { - "address": "0xf56842af3b56fd72d17cb103f92d027bba912e89", - "symbol": "BAMBOO", - "decimals": 18, - "name": "Bamboo DeFi", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xf56842af3b56fd72d17cb103f92d027bba912e89.png", - "aggregators": [ - "CoinMarketCap", - "LiFi", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x68b429161ec09a6c1d65ba70727ab1faa5bc4026": { - "address": "0x68b429161ec09a6c1d65ba70727ab1faa5bc4026", - "symbol": "ODOGE", - "decimals": 18, - "name": "Ordinal Doge", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x68b429161ec09a6c1d65ba70727ab1faa5bc4026.png", - "aggregators": [ - "CoinMarketCap", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0xc91b523a59acc63a64f61fc7bbfb4bfc82dd25f2": { - "address": "0xc91b523a59acc63a64f61fc7bbfb4bfc82dd25f2", - "symbol": "AI", - "decimals": 18, - "name": "Multiverse", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xc91b523a59acc63a64f61fc7bbfb4bfc82dd25f2.png", - "aggregators": [ - "CoinMarketCap", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x375abb85c329753b1ba849a601438ae77eec9893": { - "address": "0x375abb85c329753b1ba849a601438ae77eec9893", - "symbol": "PDT", - "decimals": 18, - "name": "ParagonsDAO", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x375abb85c329753b1ba849a601438ae77eec9893.png", - "aggregators": [ - "CoinMarketCap", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x74d2d73b455540b037298c0e0925bc702aedbe4a": { - "address": "0x74d2d73b455540b037298c0e0925bc702aedbe4a", - "symbol": "MEOW", - "decimals": 9, - "name": "Schrodinger", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x74d2d73b455540b037298c0e0925bc702aedbe4a.png", - "aggregators": [ - "CoinMarketCap", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x2196b84eace74867b73fb003aff93c11fce1d47a": { - "address": "0x2196b84eace74867b73fb003aff93c11fce1d47a", - "symbol": "PSY", - "decimals": 18, - "name": "PsyDAO", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x2196b84eace74867b73fb003aff93c11fce1d47a.png", - "aggregators": [ - "CoinGecko", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x95ed629b028cf6aadd1408bb988c6d1daabe4767": { - "address": "0x95ed629b028cf6aadd1408bb988c6d1daabe4767", - "symbol": "DORKY", - "decimals": 9, - "name": "Dork Lord", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x95ed629b028cf6aadd1408bb988c6d1daabe4767.png", - "aggregators": [ - "CoinMarketCap", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0xf5cfbc74057c610c8ef151a439252680ac68c6dc": { - "address": "0xf5cfbc74057c610c8ef151a439252680ac68c6dc", - "symbol": "OCT", - "decimals": 18, - "name": "Octopus Network", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xf5cfbc74057c610c8ef151a439252680ac68c6dc.png", - "aggregators": [ - "CoinMarketCap", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x2cc7a972ebc1865b346085655f929abfa74cd4dc": { - "address": "0x2cc7a972ebc1865b346085655f929abfa74cd4dc", - "symbol": "SHIFU", - "decimals": 18, - "name": "Shifu", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x2cc7a972ebc1865b346085655f929abfa74cd4dc.png", - "aggregators": [ - "CoinMarketCap", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x21e5c85a5b1f38bddde68307af77e38f747cd530": { - "address": "0x21e5c85a5b1f38bddde68307af77e38f747cd530", - "symbol": "DOGS", - "decimals": 9, - "name": "Doggensnout Skeptic", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x21e5c85a5b1f38bddde68307af77e38f747cd530.png", - "aggregators": [ - "CoinMarketCap", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0xf2dfdbe1ea71bbdcb5a4662a16dbf5e487be3ebe": { - "address": "0xf2dfdbe1ea71bbdcb5a4662a16dbf5e487be3ebe", - "symbol": "CLOUD", - "decimals": 18, - "name": "DeCloud", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xf2dfdbe1ea71bbdcb5a4662a16dbf5e487be3ebe.png", - "aggregators": [ - "CoinMarketCap", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0xd5eb7e91ae88ea2550f9bfd04208399c95df4dc7": { - "address": "0xd5eb7e91ae88ea2550f9bfd04208399c95df4dc7", - "symbol": "DOGL", - "decimals": 18, - "name": "DogLibre", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xd5eb7e91ae88ea2550f9bfd04208399c95df4dc7.png", - "aggregators": [ - "CoinMarketCap", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x1b6e9c73bee68102d9dd4a2627f97bff4183ab0a": { - "address": "0x1b6e9c73bee68102d9dd4a2627f97bff4183ab0a", - "symbol": "OLE", - "decimals": 18, - "name": "OpenLeverage", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x1b6e9c73bee68102d9dd4a2627f97bff4183ab0a.png", - "aggregators": [ - "CoinMarketCap", - "LiFi", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0xaada04204e9e1099daf67cf3d5d137e84e41cf41": { - "address": "0xaada04204e9e1099daf67cf3d5d137e84e41cf41", - "symbol": "PEEPO", - "decimals": 18, - "name": "Peepo", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xaada04204e9e1099daf67cf3d5d137e84e41cf41.png", - "aggregators": [ - "CoinMarketCap", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0xc40629464351c37c1e1f47b3640ea2e7aec31ea5": { - "address": "0xc40629464351c37c1e1f47b3640ea2e7aec31ea5", - "symbol": "HTS", - "decimals": 18, - "name": "Home3", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xc40629464351c37c1e1f47b3640ea2e7aec31ea5.png", - "aggregators": [ - "CoinMarketCap", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x18bc66f0c15e27179dd8e2277c1c9c056df0a14d": { - "address": "0x18bc66f0c15e27179dd8e2277c1c9c056df0a14d", - "symbol": "DEEPAI", - "decimals": 18, - "name": "Deep Whales AI", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x18bc66f0c15e27179dd8e2277c1c9c056df0a14d.png", - "aggregators": [ - "CoinMarketCap", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x3850952491606a0e420eb929b1a2e1a450d013f1": { - "address": "0x3850952491606a0e420eb929b1a2e1a450d013f1", - "symbol": "PANO", - "decimals": 18, - "name": "PanoVerse", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x3850952491606a0e420eb929b1a2e1a450d013f1.png", - "aggregators": [ - "CoinMarketCap", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0xe5097d9baeafb89f9bcb78c9290d545db5f9e9cb": { - "address": "0xe5097d9baeafb89f9bcb78c9290d545db5f9e9cb", - "symbol": "HBOT", - "decimals": 18, - "name": "Hummingbot", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xe5097d9baeafb89f9bcb78c9290d545db5f9e9cb.png", - "aggregators": [ - "CoinMarketCap", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0xf8428a5a99cb452ea50b6ea70b052daa3df4934f": { - "address": "0xf8428a5a99cb452ea50b6ea70b052daa3df4934f", - "symbol": "ZERC", - "decimals": 18, - "name": "zkRace", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xf8428a5a99cb452ea50b6ea70b052daa3df4934f.png", - "aggregators": [ - "CoinMarketCap", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0xaa3acc21d184cef6f7fc3385fbdb79575231afba": { - "address": "0xaa3acc21d184cef6f7fc3385fbdb79575231afba", - "symbol": "HSAI", - "decimals": 18, - "name": "HealthSci AI", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xaa3acc21d184cef6f7fc3385fbdb79575231afba.png", - "aggregators": [ - "CoinMarketCap", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x71297312753ea7a2570a5a3278ed70d9a75f4f44": { - "address": "0x71297312753ea7a2570a5a3278ed70d9a75f4f44", - "symbol": "EBULL", - "decimals": 9, - "name": "ETHEREUM IS GOOD", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x71297312753ea7a2570a5a3278ed70d9a75f4f44.png", - "aggregators": [ - "CoinMarketCap", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x9ce115f0341ae5dabc8b477b74e83db2018a6f42": { - "address": "0x9ce115f0341ae5dabc8b477b74e83db2018a6f42", - "symbol": "HAIR", - "decimals": 18, - "name": "HairDAO", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x9ce115f0341ae5dabc8b477b74e83db2018a6f42.png", - "aggregators": [ - "CoinMarketCap", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x91f322e0d0bd688acd511a789431a2b672a28013": { - "address": "0x91f322e0d0bd688acd511a789431a2b672a28013", - "symbol": "FTP", - "decimals": 18, - "name": "Fisttrumppump", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x91f322e0d0bd688acd511a789431a2b672a28013.png", - "aggregators": [ - "CoinMarketCap", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x6fd46112c8ec76e7940dbfdc150774ee6eff27b2": { - "address": "0x6fd46112c8ec76e7940dbfdc150774ee6eff27b2", - "symbol": "RUNNER", - "decimals": 18, - "name": "Runner on ETH", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x6fd46112c8ec76e7940dbfdc150774ee6eff27b2.png", - "aggregators": [ - "CoinMarketCap", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x1fdb29ad49330b07ae5a87483f598aa6b292039e": { - "address": "0x1fdb29ad49330b07ae5a87483f598aa6b292039e", - "symbol": "LTD", - "decimals": 18, - "name": "Living the Dream", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x1fdb29ad49330b07ae5a87483f598aa6b292039e.png", - "aggregators": [ - "CoinMarketCap", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x0e9cc0f7e550bd43bd2af2214563c47699f96479": { - "address": "0x0e9cc0f7e550bd43bd2af2214563c47699f96479", - "symbol": "UNLEASH", - "decimals": 18, - "name": "UnleashClub", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x0e9cc0f7e550bd43bd2af2214563c47699f96479.png", - "aggregators": [ - "CoinMarketCap", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0xe56a10448c632e44605dcc5201c36122ff9d0250": { - "address": "0xe56a10448c632e44605dcc5201c36122ff9d0250", - "symbol": "HEDGE", - "decimals": 18, - "name": "HedgeFi", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xe56a10448c632e44605dcc5201c36122ff9d0250.png", - "aggregators": [ - "CoinMarketCap", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0xd3c5bdbc6de5ea3899a28f6cd419f29c09fa749f": { - "address": "0xd3c5bdbc6de5ea3899a28f6cd419f29c09fa749f", - "symbol": "SANIN", - "decimals": 9, - "name": "Sanin", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xd3c5bdbc6de5ea3899a28f6cd419f29c09fa749f.png", - "aggregators": [ - "CoinMarketCap", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0xe1bad922f84b198a08292fb600319300ae32471b": { - "address": "0xe1bad922f84b198a08292fb600319300ae32471b", - "symbol": "FCT", - "decimals": 18, - "name": "Firmachain", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xe1bad922f84b198a08292fb600319300ae32471b.png", - "aggregators": [ - "CoinMarketCap", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x85122dc2c0ac24e8aacaff4a4ccfcbdf36e80f60": { - "address": "0x85122dc2c0ac24e8aacaff4a4ccfcbdf36e80f60", - "symbol": "DOPE", - "decimals": 9, - "name": "Decentralization obligatory practicali", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x85122dc2c0ac24e8aacaff4a4ccfcbdf36e80f60.png", - "aggregators": [ - "CoinGecko", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0xf8ebf4849f1fa4faf0dff2106a173d3a6cb2eb3a": { - "address": "0xf8ebf4849f1fa4faf0dff2106a173d3a6cb2eb3a", - "symbol": "TROLL", - "decimals": 18, - "name": "Troll", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xf8ebf4849f1fa4faf0dff2106a173d3a6cb2eb3a.png", - "aggregators": [ - "CoinGecko", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0xe6705367880b4d5d1aeae948fd620f55ef7413e4": { - "address": "0xe6705367880b4d5d1aeae948fd620f55ef7413e4", - "symbol": "DOGEI", - "decimals": 9, - "name": "Dogei", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xe6705367880b4d5d1aeae948fd620f55ef7413e4.png", - "aggregators": [ - "CoinMarketCap", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x694200465963898a9fef06a5b778d9e65721685c": { - "address": "0x694200465963898a9fef06a5b778d9e65721685c", - "symbol": "GECKY", - "decimals": 9, - "name": "Gecky", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x694200465963898a9fef06a5b778d9e65721685c.png", - "aggregators": [ - "CoinMarketCap", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x5f4ab80c2c7755d565371236f090597921d18ee5": { - "address": "0x5f4ab80c2c7755d565371236f090597921d18ee5", - "symbol": "WAGMI", - "decimals": 9, - "name": "WAGMICOIN", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x5f4ab80c2c7755d565371236f090597921d18ee5.png", - "aggregators": [ - "CoinMarketCap", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x426fc8be95573230f6e6bc4af91873f0c67b21b4": { - "address": "0x426fc8be95573230f6e6bc4af91873f0c67b21b4", - "symbol": "BPLC", - "decimals": 18, - "name": "BlackPearl", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x426fc8be95573230f6e6bc4af91873f0c67b21b4.png", - "aggregators": [ - "CoinMarketCap", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x4bd70556ae3f8a6ec6c4080a0c327b24325438f3": { - "address": "0x4bd70556ae3f8a6ec6c4080a0c327b24325438f3", - "symbol": "HXRO", - "decimals": 18, - "name": "HXRO", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x4bd70556ae3f8a6ec6c4080a0c327b24325438f3.png", - "aggregators": [ - "CoinMarketCap", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0xa1f410f13b6007fca76833ee7eb58478d47bc5ef": { - "address": "0xa1f410f13b6007fca76833ee7eb58478d47bc5ef", - "symbol": "RJV", - "decimals": 6, - "name": "Rejuve AI", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xa1f410f13b6007fca76833ee7eb58478d47bc5ef.png", - "aggregators": [ - "CoinMarketCap", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0xbb3a8fd6ec4bf0fdc6cd2739b1e41192d12b1873": { - "address": "0xbb3a8fd6ec4bf0fdc6cd2739b1e41192d12b1873", - "symbol": "OBI", - "decimals": 18, - "name": "Orbofi AI", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xbb3a8fd6ec4bf0fdc6cd2739b1e41192d12b1873.png", - "aggregators": [ - "CoinMarketCap", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x8ae4bf2c33a8e667de34b54938b0ccd03eb8cc06": { - "address": "0x8ae4bf2c33a8e667de34b54938b0ccd03eb8cc06", - "symbol": "PTOY", - "decimals": 8, - "name": "Patientory", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x8ae4bf2c33a8e667de34b54938b0ccd03eb8cc06.png", - "aggregators": [ - "CoinMarketCap", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0xf4134146af2d511dd5ea8cdb1c4ac88c57d60404": { - "address": "0xf4134146af2d511dd5ea8cdb1c4ac88c57d60404", - "symbol": "SNC", - "decimals": 18, - "name": "SunContract", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xf4134146af2d511dd5ea8cdb1c4ac88c57d60404.png", - "aggregators": [ - "CoinMarketCap", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x8806926ab68eb5a7b909dcaf6fdbe5d93271d6e2": { - "address": "0x8806926ab68eb5a7b909dcaf6fdbe5d93271d6e2", - "symbol": "UQC", - "decimals": 18, - "name": "Uquid Coin", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x8806926ab68eb5a7b909dcaf6fdbe5d93271d6e2.png", - "aggregators": [ - "CoinMarketCap", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0xd1f2586790a5bd6da1e443441df53af6ec213d83": { - "address": "0xd1f2586790a5bd6da1e443441df53af6ec213d83", - "symbol": "LEDGER", - "decimals": 18, - "name": "Ledger AI", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xd1f2586790a5bd6da1e443441df53af6ec213d83.png", - "aggregators": [ - "CoinMarketCap", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0xf920e4f3fbef5b3ad0a25017514b769bdc4ac135": { - "address": "0xf920e4f3fbef5b3ad0a25017514b769bdc4ac135", - "symbol": "BAX", - "decimals": 18, - "name": "BABB", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xf920e4f3fbef5b3ad0a25017514b769bdc4ac135.png", - "aggregators": [ - "CoinMarketCap", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x1e053d89e08c24aa2ce5c5b4206744dc2d7bd8f5": { - "address": "0x1e053d89e08c24aa2ce5c5b4206744dc2d7bd8f5", - "symbol": "TT", - "decimals": 18, - "name": "ThunderCore", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x1e053d89e08c24aa2ce5c5b4206744dc2d7bd8f5.png", - "aggregators": [ - "CoinMarketCap", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0xbd356a39bff2cada8e9248532dd879147221cf76": { - "address": "0xbd356a39bff2cada8e9248532dd879147221cf76", - "symbol": "WOM", - "decimals": 18, - "name": "WOM Protocol", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xbd356a39bff2cada8e9248532dd879147221cf76.png", - "aggregators": [ - "CoinMarketCap", - "Rubic", - "Rango", - "Sonarwatch", - "SushiSwap" - ], - "occurrences": 5 - }, - "0xb1f871ae9462f1b2c6826e88a7827e76f86751d4": { - "address": "0xb1f871ae9462f1b2c6826e88a7827e76f86751d4", - "symbol": "GNY", - "decimals": 18, - "name": "GNY", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xb1f871ae9462f1b2c6826e88a7827e76f86751d4.png", - "aggregators": [ - "CoinMarketCap", - "1inch", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0xef8e456967122db4c3c160314bde8d2602ad6199": { - "address": "0xef8e456967122db4c3c160314bde8d2602ad6199", - "symbol": "WAGMI", - "decimals": 9, - "name": "Wagmi Coin", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xef8e456967122db4c3c160314bde8d2602ad6199.png", - "aggregators": [ - "CoinMarketCap", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0xcb86c6a22cb56b6cf40cafedb06ba0df188a416e": { - "address": "0xcb86c6a22cb56b6cf40cafedb06ba0df188a416e", - "symbol": "SURE", - "decimals": 18, - "name": "inSure DeFi", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xcb86c6a22cb56b6cf40cafedb06ba0df188a416e.png", - "aggregators": [ - "CoinMarketCap", - "LiFi", - "Socket", - "Rubic", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x8dce83eca4af45dbe618da1779f9aaca43201084": { - "address": "0x8dce83eca4af45dbe618da1779f9aaca43201084", - "symbol": "AIKEK", - "decimals": 18, - "name": "AlphaKEK AI", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x8dce83eca4af45dbe618da1779f9aaca43201084.png", - "aggregators": [ - "CoinMarketCap", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0xc9fe6e1c76210be83dc1b5b20ec7fd010b0b1d15": { - "address": "0xc9fe6e1c76210be83dc1b5b20ec7fd010b0b1d15", - "symbol": "FRIN", - "decimals": 18, - "name": "Fringe Finance", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xc9fe6e1c76210be83dc1b5b20ec7fd010b0b1d15.png", - "aggregators": [ - "CoinMarketCap", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0xc314b0e758d5ff74f63e307a86ebfe183c95767b": { - "address": "0xc314b0e758d5ff74f63e307a86ebfe183c95767b", - "symbol": "ADP", - "decimals": 18, - "name": "Adappter", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xc314b0e758d5ff74f63e307a86ebfe183c95767b.png", - "aggregators": [ - "CoinMarketCap", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x85f6eb2bd5a062f5f8560be93fb7147e16c81472": { - "address": "0x85f6eb2bd5a062f5f8560be93fb7147e16c81472", - "symbol": "FLY", - "decimals": 4, - "name": "Franklin", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x85f6eb2bd5a062f5f8560be93fb7147e16c81472.png", - "aggregators": [ - "CoinMarketCap", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x5cb3ce6d081fb00d5f6677d196f2d70010ea3f4a": { - "address": "0x5cb3ce6d081fb00d5f6677d196f2d70010ea3f4a", - "symbol": "BUSY", - "decimals": 18, - "name": "Busy", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x5cb3ce6d081fb00d5f6677d196f2d70010ea3f4a.png", - "aggregators": [ - "CoinMarketCap", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x20a62aca58526836165ca53fe67dd884288c8abf": { - "address": "0x20a62aca58526836165ca53fe67dd884288c8abf", - "symbol": "RNB", - "decimals": 18, - "name": "Rentible", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x20a62aca58526836165ca53fe67dd884288c8abf.png", - "aggregators": [ - "CoinMarketCap", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x93c9175e26f57d2888c7df8b470c9eea5c0b0a93": { - "address": "0x93c9175e26f57d2888c7df8b470c9eea5c0b0a93", - "symbol": "BCUBE", - "decimals": 18, - "name": "B cube ai", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x93c9175e26f57d2888c7df8b470c9eea5c0b0a93.png", - "aggregators": [ - "CoinMarketCap", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x470c8950c0c3aa4b09654bc73b004615119a44b5": { - "address": "0x470c8950c0c3aa4b09654bc73b004615119a44b5", - "symbol": "KIZUNA", - "decimals": 18, - "name": "Kizuna", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x470c8950c0c3aa4b09654bc73b004615119a44b5.png", - "aggregators": [ - "CoinMarketCap", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x4947b72fed037ade3365da050a9be5c063e605a7": { - "address": "0x4947b72fed037ade3365da050a9be5c063e605a7", - "symbol": "PEANUT", - "decimals": 9, - "name": "Peanut", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x4947b72fed037ade3365da050a9be5c063e605a7.png", - "aggregators": [ - "CoinGecko", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x131157c6760f78f7ddf877c0019eba175ba4b6f6": { - "address": "0x131157c6760f78f7ddf877c0019eba175ba4b6f6", - "symbol": "BIGSB", - "decimals": 18, - "name": "BigShortBets", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x131157c6760f78f7ddf877c0019eba175ba4b6f6.png", - "aggregators": [ - "CoinMarketCap", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x1a688d3d294ee7bcc1f59011de93d608dc21c377": { - "address": "0x1a688d3d294ee7bcc1f59011de93d608dc21c377", - "symbol": "UCO", - "decimals": 8, - "name": "Archethic", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x1a688d3d294ee7bcc1f59011de93d608dc21c377.png", - "aggregators": [ - "CoinMarketCap", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0xf9c53268e9de692ae1b2ea5216e24e1c3ad7cb1e": { - "address": "0xf9c53268e9de692ae1b2ea5216e24e1c3ad7cb1e", - "symbol": "IDO", - "decimals": 18, - "name": "Idexo", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xf9c53268e9de692ae1b2ea5216e24e1c3ad7cb1e.png", - "aggregators": [ - "CoinMarketCap", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x727f064a78dc734d33eec18d5370aef32ffd46e4": { - "address": "0x727f064a78dc734d33eec18d5370aef32ffd46e4", - "symbol": "ORION", - "decimals": 18, - "name": "Orion Money", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x727f064a78dc734d33eec18d5370aef32ffd46e4.png", - "aggregators": [ - "CoinMarketCap", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x4674a4f24c5f63d53f22490fb3a08eaaad739ff8": { - "address": "0x4674a4f24c5f63d53f22490fb3a08eaaad739ff8", - "symbol": "BRKL", - "decimals": 18, - "name": "Brokoli", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x4674a4f24c5f63d53f22490fb3a08eaaad739ff8.png", - "aggregators": [ - "CoinMarketCap", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0xa5ef74068d04ba0809b7379dd76af5ce34ab7c57": { - "address": "0xa5ef74068d04ba0809b7379dd76af5ce34ab7c57", - "symbol": "LUCHOW", - "decimals": 18, - "name": "LunaChow", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xa5ef74068d04ba0809b7379dd76af5ce34ab7c57.png", - "aggregators": [ - "CoinMarketCap", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x4cd0c43b0d53bc318cc5342b77eb6f124e47f526": { - "address": "0x4cd0c43b0d53bc318cc5342b77eb6f124e47f526", - "symbol": "FREE", - "decimals": 18, - "name": "FreeRossDAO", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x4cd0c43b0d53bc318cc5342b77eb6f124e47f526.png", - "aggregators": [ - "CoinMarketCap", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0xea3983fc6d0fbbc41fb6f6091f68f3e08894dc06": { - "address": "0xea3983fc6d0fbbc41fb6f6091f68f3e08894dc06", - "symbol": "UDO", - "decimals": 18, - "name": "Unido", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xea3983fc6d0fbbc41fb6f6091f68f3e08894dc06.png", - "aggregators": [ - "CoinMarketCap", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x8bbe1a2961b41340468d0548c2cd5b7dfa9b684c": { - "address": "0x8bbe1a2961b41340468d0548c2cd5b7dfa9b684c", - "symbol": "HANDY", - "decimals": 18, - "name": "Handy", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x8bbe1a2961b41340468d0548c2cd5b7dfa9b684c.png", - "aggregators": [ - "CoinMarketCap", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0xf34b1db61aca1a371fe97bad2606c9f534fb9d7d": { - "address": "0xf34b1db61aca1a371fe97bad2606c9f534fb9d7d", - "symbol": "RBIS", - "decimals": 18, - "name": "ArbiSmart", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xf34b1db61aca1a371fe97bad2606c9f534fb9d7d.png", - "aggregators": [ - "CoinMarketCap", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x73a83269b9bbafc427e76be0a2c1a1db2a26f4c2": { - "address": "0x73a83269b9bbafc427e76be0a2c1a1db2a26f4c2", - "symbol": "0NE", - "decimals": 18, - "name": "Civfund Stone", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x73a83269b9bbafc427e76be0a2c1a1db2a26f4c2.png", - "aggregators": [ - "CoinMarketCap", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0xd721706581d97ecd202bbab5c71b5a85f0f78e69": { - "address": "0xd721706581d97ecd202bbab5c71b5a85f0f78e69", - "symbol": "DOGE1", - "decimals": 9, - "name": "DOGE 1", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xd721706581d97ecd202bbab5c71b5a85f0f78e69.png", - "aggregators": [ - "CoinGecko", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0xfb130d93e49dca13264344966a611dc79a456bc5": { - "address": "0xfb130d93e49dca13264344966a611dc79a456bc5", - "symbol": "DOGEGF", - "decimals": 18, - "name": "DogeGF", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xfb130d93e49dca13264344966a611dc79a456bc5.png", - "aggregators": [ - "CoinMarketCap", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x050d94685c6b0477e1fc555888af6e2bb8dfbda5": { - "address": "0x050d94685c6b0477e1fc555888af6e2bb8dfbda5", - "symbol": "INU", - "decimals": 18, - "name": "Inu", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x050d94685c6b0477e1fc555888af6e2bb8dfbda5.png", - "aggregators": [ - "CoinMarketCap", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x7051faed0775f664a0286af4f75ef5ed74e02754": { - "address": "0x7051faed0775f664a0286af4f75ef5ed74e02754", - "symbol": "CHANGE", - "decimals": 18, - "name": "Changex", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x7051faed0775f664a0286af4f75ef5ed74e02754.png", - "aggregators": [ - "CoinMarketCap", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x3f5dd1a1538a4f9f82e543098f01f22480b0a3a8": { - "address": "0x3f5dd1a1538a4f9f82e543098f01f22480b0a3a8", - "symbol": "DKUMA", - "decimals": 18, - "name": "KumaDex Token", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x3f5dd1a1538a4f9f82e543098f01f22480b0a3a8.png", - "aggregators": [ - "CoinMarketCap", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x8c088775e4139af116ac1fa6f281bbf71e8c1c73": { - "address": "0x8c088775e4139af116ac1fa6f281bbf71e8c1c73", - "symbol": "PUMLX", - "decimals": 18, - "name": "PUMLx", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x8c088775e4139af116ac1fa6f281bbf71e8c1c73.png", - "aggregators": [ - "CoinMarketCap", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x64df3aab3b21cc275bb76c4a581cf8b726478ee0": { - "address": "0x64df3aab3b21cc275bb76c4a581cf8b726478ee0", - "symbol": "CRAMER", - "decimals": 18, - "name": "Cramer Coin", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x64df3aab3b21cc275bb76c4a581cf8b726478ee0.png", - "aggregators": [ - "CoinMarketCap", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x0ebe30595a44e5288c24161ddfc1e9fa08e33a0c": { - "address": "0x0ebe30595a44e5288c24161ddfc1e9fa08e33a0c", - "symbol": "NYAN", - "decimals": 18, - "name": "Nyan Meme Coin", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x0ebe30595a44e5288c24161ddfc1e9fa08e33a0c.png", - "aggregators": [ - "CoinMarketCap", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x72953a5c32413614d24c29c84a66ae4b59581bbf": { - "address": "0x72953a5c32413614d24c29c84a66ae4b59581bbf", - "symbol": "CLEV", - "decimals": 18, - "name": "CLever", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x72953a5c32413614d24c29c84a66ae4b59581bbf.png", - "aggregators": [ - "CoinMarketCap", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0xf31698ddad0d11160fe85c500397a470cd3d492e": { - "address": "0xf31698ddad0d11160fe85c500397a470cd3d492e", - "symbol": "WEXO", - "decimals": 18, - "name": "Wexo", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xf31698ddad0d11160fe85c500397a470cd3d492e.png", - "aggregators": [ - "CoinMarketCap", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x24da31e7bb182cb2cabfef1d88db19c2ae1f5572": { - "address": "0x24da31e7bb182cb2cabfef1d88db19c2ae1f5572", - "symbol": "SHIK", - "decimals": 18, - "name": "Shikoku", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x24da31e7bb182cb2cabfef1d88db19c2ae1f5572.png", - "aggregators": [ - "CoinMarketCap", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0xcbe771323587ea16dacb6016e269d7f08a7acc4e": { - "address": "0xcbe771323587ea16dacb6016e269d7f08a7acc4e", - "symbol": "SPO", - "decimals": 18, - "name": "Spores Network", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xcbe771323587ea16dacb6016e269d7f08a7acc4e.png", - "aggregators": [ - "CoinMarketCap", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0xdb298285fe4c5410b05390ca80e8fbe9de1f259b": { - "address": "0xdb298285fe4c5410b05390ca80e8fbe9de1f259b", - "symbol": "FOREX", - "decimals": 18, - "name": "handle fi", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xdb298285fe4c5410b05390ca80e8fbe9de1f259b.png", - "aggregators": [ - "CoinMarketCap", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x6bf765c43030387a983f429c1438e9d2025b7e12": { - "address": "0x6bf765c43030387a983f429c1438e9d2025b7e12", - "symbol": "PEPES", - "decimals": 18, - "name": "McPepe s", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x6bf765c43030387a983f429c1438e9d2025b7e12.png", - "aggregators": [ - "CoinMarketCap", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x0ba74fb26ca523f2dc22fa4318581cc2452eaba1": { - "address": "0x0ba74fb26ca523f2dc22fa4318581cc2452eaba1", - "symbol": "BOG", - "decimals": 18, - "name": "Bogdanoff", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x0ba74fb26ca523f2dc22fa4318581cc2452eaba1.png", - "aggregators": [ - "CoinMarketCap", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x7d8daff6d70cead12c6f077048552cf89130a2b1": { - "address": "0x7d8daff6d70cead12c6f077048552cf89130a2b1", - "symbol": "ARX", - "decimals": 18, - "name": "ARCS", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x7d8daff6d70cead12c6f077048552cf89130a2b1.png", - "aggregators": [ - "CoinMarketCap", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x766d2fcece1e3eef32aae8711ab886ee95fd5b2a": { - "address": "0x766d2fcece1e3eef32aae8711ab886ee95fd5b2a", - "symbol": "MVP", - "decimals": 18, - "name": "MAGA VP", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x766d2fcece1e3eef32aae8711ab886ee95fd5b2a.png", - "aggregators": [ - "CoinMarketCap", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x2f573070e6090b3264fe707e2c9f201716f123c7": { - "address": "0x2f573070e6090b3264fe707e2c9f201716f123c7", - "symbol": "MUMU", - "decimals": 18, - "name": "Mumu", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x2f573070e6090b3264fe707e2c9f201716f123c7.png", - "aggregators": [ - "CoinMarketCap", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0xb69753c06bb5c366be51e73bfc0cc2e3dc07e371": { - "address": "0xb69753c06bb5c366be51e73bfc0cc2e3dc07e371", - "symbol": "POOH", - "decimals": 18, - "name": "POOH", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xb69753c06bb5c366be51e73bfc0cc2e3dc07e371.png", - "aggregators": [ - "CoinMarketCap", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0xb794ad95317f75c44090f64955954c3849315ffe": { - "address": "0xb794ad95317f75c44090f64955954c3849315ffe", - "symbol": "RIBBIT", - "decimals": 18, - "name": "Ribbit Meme", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xb794ad95317f75c44090f64955954c3849315ffe.png", - "aggregators": [ - "CoinMarketCap", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0xf831938caf837cd505de196bbb408d81a06376ab": { - "address": "0xf831938caf837cd505de196bbb408d81a06376ab", - "symbol": "JEFF", - "decimals": 18, - "name": "Jeff", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xf831938caf837cd505de196bbb408d81a06376ab.png", - "aggregators": [ - "CoinMarketCap", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x335f4e66b9b61cee5ceade4e727fcec20156b2f0": { - "address": "0x335f4e66b9b61cee5ceade4e727fcec20156b2f0", - "symbol": "ELMO", - "decimals": 18, - "name": "Elmo", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x335f4e66b9b61cee5ceade4e727fcec20156b2f0.png", - "aggregators": [ - "CoinMarketCap", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0xbddf903f43dc7d9801f3f0034ba306169074ef8e": { - "address": "0xbddf903f43dc7d9801f3f0034ba306169074ef8e", - "symbol": "AGB", - "decimals": 18, - "name": "Apes Go Bananas", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xbddf903f43dc7d9801f3f0034ba306169074ef8e.png", - "aggregators": [ - "CoinMarketCap", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x2ad9addd0d97ec3cdba27f92bf6077893b76ab0b": { - "address": "0x2ad9addd0d97ec3cdba27f92bf6077893b76ab0b", - "symbol": "PLANET", - "decimals": 18, - "name": "Planet Token", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x2ad9addd0d97ec3cdba27f92bf6077893b76ab0b.png", - "aggregators": [ - "CoinMarketCap", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x43d7e65b8ff49698d9550a7f315c87e67344fb59": { - "address": "0x43d7e65b8ff49698d9550a7f315c87e67344fb59", - "symbol": "SHIA", - "decimals": 18, - "name": "Shiba Saga", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x43d7e65b8ff49698d9550a7f315c87e67344fb59.png", - "aggregators": [ - "CoinMarketCap", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0xc32db1d3282e872d98f6437d3bcfa57801ca6d5c": { - "address": "0xc32db1d3282e872d98f6437d3bcfa57801ca6d5c", - "symbol": "ETHEREUM", - "decimals": 18, - "name": "VoldemortTrumpRobotnik 10Neko", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xc32db1d3282e872d98f6437d3bcfa57801ca6d5c.png", - "aggregators": [ - "CoinMarketCap", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0xec70ff4a5b09110e4d20ada4f2db4a86ec61fac6": { - "address": "0xec70ff4a5b09110e4d20ada4f2db4a86ec61fac6", - "symbol": "GRP", - "decimals": 18, - "name": "Grape", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xec70ff4a5b09110e4d20ada4f2db4a86ec61fac6.png", - "aggregators": [ - "CoinMarketCap", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x3ee4b152824b657644c7a9b50694787e80eb8f4a": { - "address": "0x3ee4b152824b657644c7a9b50694787e80eb8f4a", - "symbol": "BAZED", - "decimals": 18, - "name": "Bazed Games", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x3ee4b152824b657644c7a9b50694787e80eb8f4a.png", - "aggregators": [ - "CoinMarketCap", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x3d806324b6df5af3c1a81acba14a8a62fe6d643f": { - "address": "0x3d806324b6df5af3c1a81acba14a8a62fe6d643f", - "symbol": "SOLANA", - "decimals": 18, - "name": "BarbieCrashBandicootRFK88", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x3d806324b6df5af3c1a81acba14a8a62fe6d643f.png", - "aggregators": [ - "CoinMarketCap", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0xd0d56273290d339aaf1417d9bfa1bb8cfe8a0933": { - "address": "0xd0d56273290d339aaf1417d9bfa1bb8cfe8a0933", - "symbol": "FOOM", - "decimals": 18, - "name": "Foom", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xd0d56273290d339aaf1417d9bfa1bb8cfe8a0933.png", - "aggregators": [ - "CoinMarketCap", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x24249b5a869a445c9b0ce269a08d73c618df9d21": { - "address": "0x24249b5a869a445c9b0ce269a08d73c618df9d21", - "symbol": "ETHEREUM", - "decimals": 8, - "name": "HarryPotterTrumpHomerSimpson777Inu", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x24249b5a869a445c9b0ce269a08d73c618df9d21.png", - "aggregators": [ - "CoinMarketCap", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x00000000051b48047be6dc0ada6de5c3de86a588": { - "address": "0x00000000051b48047be6dc0ada6de5c3de86a588", - "symbol": "BABYSHIB", - "decimals": 18, - "name": "Baby Shiba Inu", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x00000000051b48047be6dc0ada6de5c3de86a588.png", - "aggregators": [ - "CoinMarketCap", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0xfcaf0e4498e78d65526a507360f755178b804ba8": { - "address": "0xfcaf0e4498e78d65526a507360f755178b804ba8", - "symbol": "SHIB", - "decimals": 18, - "name": "NicCageWaluigiElmo42069Inu", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xfcaf0e4498e78d65526a507360f755178b804ba8.png", - "aggregators": [ - "CoinMarketCap", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0xa9049425b938c46ac3e312d4cdaeccb26282aeb2": { - "address": "0xa9049425b938c46ac3e312d4cdaeccb26282aeb2", - "symbol": "WIK", - "decimals": 18, - "name": "WickedBet Casino", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xa9049425b938c46ac3e312d4cdaeccb26282aeb2.png", - "aggregators": [ - "CoinMarketCap", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x9e18d5bab2fa94a6a95f509ecb38f8f68322abd3": { - "address": "0x9e18d5bab2fa94a6a95f509ecb38f8f68322abd3", - "symbol": "OMIKAMI", - "decimals": 9, - "name": "AMATERASU OMIKAMI", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x9e18d5bab2fa94a6a95f509ecb38f8f68322abd3.png", - "aggregators": [ - "CoinMarketCap", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0xe2432110c32d0717e33c245fe0cfa2b26c07f47a": { - "address": "0xe2432110c32d0717e33c245fe0cfa2b26c07f47a", - "symbol": "AGX", - "decimals": 18, - "name": "AGIX", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xe2432110c32d0717e33c245fe0cfa2b26c07f47a.png", - "aggregators": [ - "CoinMarketCap", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0xa9d54f37ebb99f83b603cc95fc1a5f3907aaccfd": { - "address": "0xa9d54f37ebb99f83b603cc95fc1a5f3907aaccfd", - "symbol": "PIKA", - "decimals": 18, - "name": "Pikaboss", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xa9d54f37ebb99f83b603cc95fc1a5f3907aaccfd.png", - "aggregators": [ - "CoinMarketCap", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x7d4a7be025652995364e0e232063abd9e8d65e6e": { - "address": "0x7d4a7be025652995364e0e232063abd9e8d65e6e", - "symbol": "MONOPOLY", - "decimals": 18, - "name": "Meta Monopoly", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x7d4a7be025652995364e0e232063abd9e8d65e6e.png", - "aggregators": [ - "CoinMarketCap", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0xa2fe5e51729be71261bcf42854012827bc44c044": { - "address": "0xa2fe5e51729be71261bcf42854012827bc44c044", - "symbol": "BURN", - "decimals": 18, - "name": "BURN", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xa2fe5e51729be71261bcf42854012827bc44c044.png", - "aggregators": [ - "CoinMarketCap", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x0aa8a7d1fb4c64b3b1dcea9a7ade81c59c25b95b": { - "address": "0x0aa8a7d1fb4c64b3b1dcea9a7ade81c59c25b95b", - "symbol": "ASTRA", - "decimals": 18, - "name": "AstraAI", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x0aa8a7d1fb4c64b3b1dcea9a7ade81c59c25b95b.png", - "aggregators": [ - "CoinMarketCap", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x55a8f6c6b3aa58ad6d1f26f6afeded78f32e19f4": { - "address": "0x55a8f6c6b3aa58ad6d1f26f6afeded78f32e19f4", - "symbol": "AEGIS", - "decimals": 9, - "name": "Aegis Ai", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x55a8f6c6b3aa58ad6d1f26f6afeded78f32e19f4.png", - "aggregators": [ - "CoinMarketCap", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0xbc544207ff1c5b2bc47a35f745010b603b97e99e": { - "address": "0xbc544207ff1c5b2bc47a35f745010b603b97e99e", - "symbol": "AI", - "decimals": 18, - "name": "AI PIN", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xbc544207ff1c5b2bc47a35f745010b603b97e99e.png", - "aggregators": [ - "CoinMarketCap", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x695d38eb4e57e0f137e36df7c1f0f2635981246b": { - "address": "0x695d38eb4e57e0f137e36df7c1f0f2635981246b", - "symbol": "MEMEAI", - "decimals": 9, - "name": "Meme AI Coin", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x695d38eb4e57e0f137e36df7c1f0f2635981246b.png", - "aggregators": [ - "CoinMarketCap", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x443459d45c30a03f90037d011cbe22e2183d3b12": { - "address": "0x443459d45c30a03f90037d011cbe22e2183d3b12", - "symbol": "TYPE", - "decimals": 18, - "name": "TypeAI", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x443459d45c30a03f90037d011cbe22e2183d3b12.png", - "aggregators": [ - "CoinMarketCap", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x7d225c4cc612e61d26523b099b0718d03152edef": { - "address": "0x7d225c4cc612e61d26523b099b0718d03152edef", - "symbol": "FORK", - "decimals": 18, - "name": "FlokiFork", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x7d225c4cc612e61d26523b099b0718d03152edef.png", - "aggregators": [ - "CoinMarketCap", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0xd015422879a1308ba557510345e944b912b9ab73": { - "address": "0xd015422879a1308ba557510345e944b912b9ab73", - "symbol": "TRUMP", - "decimals": 18, - "name": "FreeTrump", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xd015422879a1308ba557510345e944b912b9ab73.png", - "aggregators": [ - "CoinMarketCap", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0xe92344b4edf545f3209094b192e46600a19e7c2d": { - "address": "0xe92344b4edf545f3209094b192e46600a19e7c2d", - "symbol": "ZKML", - "decimals": 18, - "name": "zKML", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xe92344b4edf545f3209094b192e46600a19e7c2d.png", - "aggregators": [ - "CoinMarketCap", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x1258d60b224c0c5cd888d37bbf31aa5fcfb7e870": { - "address": "0x1258d60b224c0c5cd888d37bbf31aa5fcfb7e870", - "symbol": "GPU", - "decimals": 18, - "name": "NodeAI", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x1258d60b224c0c5cd888d37bbf31aa5fcfb7e870.png", - "aggregators": [ - "CoinMarketCap", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0xeff9cdb294872b6553f4e9631fb4d1fa4f9c5e6b": { - "address": "0xeff9cdb294872b6553f4e9631fb4d1fa4f9c5e6b", - "symbol": "BUILD", - "decimals": 18, - "name": "BuildAI", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xeff9cdb294872b6553f4e9631fb4d1fa4f9c5e6b.png", - "aggregators": [ - "CoinMarketCap", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x033bbde722ea3cdcec73cffea6581df9f9c257de": { - "address": "0x033bbde722ea3cdcec73cffea6581df9f9c257de", - "symbol": "VELAR", - "decimals": 6, - "name": "Velar", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x033bbde722ea3cdcec73cffea6581df9f9c257de.png", - "aggregators": [ - "CoinMarketCap", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x84018071282d4b2996272659d9c01cb08dd7327f": { - "address": "0x84018071282d4b2996272659d9c01cb08dd7327f", - "symbol": "BLENDR", - "decimals": 18, - "name": "Blendr Network", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x84018071282d4b2996272659d9c01cb08dd7327f.png", - "aggregators": [ - "CoinMarketCap", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x1ae7e1d0ce06364ced9ad58225a1705b3e5db92b": { - "address": "0x1ae7e1d0ce06364ced9ad58225a1705b3e5db92b", - "symbol": "LMEOW", - "decimals": 9, - "name": "lmeow", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x1ae7e1d0ce06364ced9ad58225a1705b3e5db92b.png", - "aggregators": [ - "CoinGecko", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x91fbb2503ac69702061f1ac6885759fc853e6eae": { - "address": "0x91fbb2503ac69702061f1ac6885759fc853e6eae", - "symbol": "KNINE", - "decimals": 18, - "name": "K9 Finance DAO", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x91fbb2503ac69702061f1ac6885759fc853e6eae.png", - "aggregators": [ - "CoinMarketCap", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0xc61edb127f58f42f47a8be8aebe83cf602a53878": { - "address": "0xc61edb127f58f42f47a8be8aebe83cf602a53878", - "symbol": "COBE", - "decimals": 18, - "name": "Castle Of Blackwater", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xc61edb127f58f42f47a8be8aebe83cf602a53878.png", - "aggregators": [ - "CoinMarketCap", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x793a5d8b30aab326f83d20a9370c827fea8fdc51": { - "address": "0x793a5d8b30aab326f83d20a9370c827fea8fdc51", - "symbol": "GIAC", - "decimals": 18, - "name": "Gorilla In A Coupe", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x793a5d8b30aab326f83d20a9370c827fea8fdc51.png", - "aggregators": [ - "CoinMarketCap", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x7039cd6d7966672f194e8139074c3d5c4e6dcf65": { - "address": "0x7039cd6d7966672f194e8139074c3d5c4e6dcf65", - "symbol": "STRUMP", - "decimals": 9, - "name": "Super Trump", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x7039cd6d7966672f194e8139074c3d5c4e6dcf65.png", - "aggregators": [ - "CoinMarketCap", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0xbe8eff45293598919c99d1cbe5297f2a6935bc64": { - "address": "0xbe8eff45293598919c99d1cbe5297f2a6935bc64", - "symbol": "TIGRA", - "decimals": 18, - "name": "Tigra", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xbe8eff45293598919c99d1cbe5297f2a6935bc64.png", - "aggregators": [ - "CoinMarketCap", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x722a89f1b925fe41883978219c2176aecc7d6699": { - "address": "0x722a89f1b925fe41883978219c2176aecc7d6699", - "symbol": "XNK", - "decimals": 18, - "name": "Kinka", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x722a89f1b925fe41883978219c2176aecc7d6699.png", - "aggregators": [ - "CoinMarketCap", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x32b053f2cba79f80ada5078cb6b305da92bde6e1": { - "address": "0x32b053f2cba79f80ada5078cb6b305da92bde6e1", - "symbol": "NEURAL", - "decimals": 18, - "name": "NEURALAI", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x32b053f2cba79f80ada5078cb6b305da92bde6e1.png", - "aggregators": [ - "CoinMarketCap", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x6e8908cfa881c9f6f2c64d3436e7b80b1bf0093f": { - "address": "0x6e8908cfa881c9f6f2c64d3436e7b80b1bf0093f", - "symbol": "BIST", - "decimals": 18, - "name": "Bistroo", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x6e8908cfa881c9f6f2c64d3436e7b80b1bf0093f.png", - "aggregators": [ - "CoinMarketCap", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x60e254e35dd712394b3aba7a1d19114732e143dd": { - "address": "0x60e254e35dd712394b3aba7a1d19114732e143dd", - "symbol": "RIVUS", - "decimals": 18, - "name": "RivusDAO", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x60e254e35dd712394b3aba7a1d19114732e143dd.png", - "aggregators": [ - "CoinMarketCap", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x857ffc55b1aa61a7ff847c82072790cae73cd883": { - "address": "0x857ffc55b1aa61a7ff847c82072790cae73cd883", - "symbol": "EEFI", - "decimals": 18, - "name": "Elastic Finance Token", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x857ffc55b1aa61a7ff847c82072790cae73cd883.png", - "aggregators": [ - "CoinGecko", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x16c22a91c705ec3c2d5945dbe2aca37924f1d2ed": { - "address": "0x16c22a91c705ec3c2d5945dbe2aca37924f1d2ed", - "symbol": "ERIC", - "decimals": 9, - "name": "Elon s Pet Fish ERIC", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x16c22a91c705ec3c2d5945dbe2aca37924f1d2ed.png", - "aggregators": [ - "CoinMarketCap", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x059956483753947536204e89bfad909e1a434cc6": { - "address": "0x059956483753947536204e89bfad909e1a434cc6", - "symbol": "ML", - "decimals": 18, - "name": "Mintlayer", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x059956483753947536204e89bfad909e1a434cc6.png", - "aggregators": [ - "CoinMarketCap", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x69420e3a3aa9e17dea102bb3a9b3b73dcddb9528": { - "address": "0x69420e3a3aa9e17dea102bb3a9b3b73dcddb9528", - "symbol": "ELON", - "decimals": 9, - "name": "Elon", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x69420e3a3aa9e17dea102bb3a9b3b73dcddb9528.png", - "aggregators": [ - "CoinMarketCap", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x69a1e699f562d7af66fc6cc473d99f4430c3acd2": { - "address": "0x69a1e699f562d7af66fc6cc473d99f4430c3acd2", - "symbol": "PARAM", - "decimals": 18, - "name": "Param", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x69a1e699f562d7af66fc6cc473d99f4430c3acd2.png", - "aggregators": [ - "CoinMarketCap", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0xbddc20ed7978b7d59ef190962f441cd18c14e19f": { - "address": "0xbddc20ed7978b7d59ef190962f441cd18c14e19f", - "symbol": "CAGA", - "decimals": 18, - "name": "Crypto Asset Governance Alliance", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xbddc20ed7978b7d59ef190962f441cd18c14e19f.png", - "aggregators": [ - "CoinMarketCap", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x3bb1be077f3f96722ae92ec985ab37fd0a0c4c51": { - "address": "0x3bb1be077f3f96722ae92ec985ab37fd0a0c4c51", - "symbol": "MARV", - "decimals": 18, - "name": "Marv", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x3bb1be077f3f96722ae92ec985ab37fd0a0c4c51.png", - "aggregators": [ - "CoinMarketCap", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x0a2c375553e6965b42c135bb8b15a8914b08de0c": { - "address": "0x0a2c375553e6965b42c135bb8b15a8914b08de0c", - "symbol": "FROG", - "decimals": 9, - "name": "Frog on ETH", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x0a2c375553e6965b42c135bb8b15a8914b08de0c.png", - "aggregators": [ - "CoinMarketCap", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x636bd98fc13908e475f56d8a38a6e03616ec5563": { - "address": "0x636bd98fc13908e475f56d8a38a6e03616ec5563", - "symbol": "WAT", - "decimals": 18, - "name": "Wat", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x636bd98fc13908e475f56d8a38a6e03616ec5563.png", - "aggregators": [ - "CoinMarketCap", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0xe79031b5aaeb3ee8d0145e3d75b81b36bffe341d": { - "address": "0xe79031b5aaeb3ee8d0145e3d75b81b36bffe341d", - "symbol": "BOPPY", - "decimals": 9, - "name": "Boppy The Bat", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xe79031b5aaeb3ee8d0145e3d75b81b36bffe341d.png", - "aggregators": [ - "CoinMarketCap", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x683a4ac99e65200921f556a19dadf4b0214b5938": { - "address": "0x683a4ac99e65200921f556a19dadf4b0214b5938", - "symbol": "MAPE", - "decimals": 9, - "name": "MAGA Pepe", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x683a4ac99e65200921f556a19dadf4b0214b5938.png", - "aggregators": [ - "CoinMarketCap", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0xa0084063ea01d5f09e56ef3ff6232a9e18b0bacd": { - "address": "0xa0084063ea01d5f09e56ef3ff6232a9e18b0bacd", - "symbol": "CYDX", - "decimals": 18, - "name": "CyberDEX", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xa0084063ea01d5f09e56ef3ff6232a9e18b0bacd.png", - "aggregators": [ - "CoinGecko", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x3567aa22cd3ab9aef23d7e18ee0d7cf16974d7e6": { - "address": "0x3567aa22cd3ab9aef23d7e18ee0d7cf16974d7e6", - "symbol": "SAI", - "decimals": 18, - "name": "Sharpe AI", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x3567aa22cd3ab9aef23d7e18ee0d7cf16974d7e6.png", - "aggregators": [ - "CoinMarketCap", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x7777cec341e7434126864195adef9b05dcc3489c": { - "address": "0x7777cec341e7434126864195adef9b05dcc3489c", - "symbol": "ONI", - "decimals": 18, - "name": "Onigiri", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x7777cec341e7434126864195adef9b05dcc3489c.png", - "aggregators": [ - "CoinMarketCap", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x7316d973b0269863bbfed87302e11334e25ea565": { - "address": "0x7316d973b0269863bbfed87302e11334e25ea565", - "symbol": "KEN", - "decimals": 9, - "name": "Ken", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x7316d973b0269863bbfed87302e11334e25ea565.png", - "aggregators": [ - "CoinMarketCap", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0xc2eb40516ecaac04ae9964934983d1e9ebdf51fd": { - "address": "0xc2eb40516ecaac04ae9964934983d1e9ebdf51fd", - "symbol": "99BTC", - "decimals": 18, - "name": "99 Bitcoins", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xc2eb40516ecaac04ae9964934983d1e9ebdf51fd.png", - "aggregators": [ - "CoinMarketCap", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0xfefe157c9d0ae025213092ff9a5cb56ab492bab8": { - "address": "0xfefe157c9d0ae025213092ff9a5cb56ab492bab8", - "symbol": "FEFE", - "decimals": 9, - "name": "Fefe", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xfefe157c9d0ae025213092ff9a5cb56ab492bab8.png", - "aggregators": [ - "CoinMarketCap", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0xd09eb9099fac55edcbf4965e0a866779ca365a0c": { - "address": "0xd09eb9099fac55edcbf4965e0a866779ca365a0c", - "symbol": "COLON", - "decimals": 9, - "name": "Colon", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xd09eb9099fac55edcbf4965e0a866779ca365a0c.png", - "aggregators": [ - "CoinMarketCap", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0xb5d730d442e1d5b119fb4e5c843c48a64202ef92": { - "address": "0xb5d730d442e1d5b119fb4e5c843c48a64202ef92", - "symbol": "SABAI", - "decimals": 18, - "name": "Sabai Protocol", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xb5d730d442e1d5b119fb4e5c843c48a64202ef92.png", - "aggregators": [ - "CoinMarketCap", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x64945165255bcb83f2ef9f31a575975832ca4db4": { - "address": "0x64945165255bcb83f2ef9f31a575975832ca4db4", - "symbol": "KAGE", - "decimals": 18, - "name": "KAGE NETWORK", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x64945165255bcb83f2ef9f31a575975832ca4db4.png", - "aggregators": [ - "CoinMarketCap", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x0590cc9232ebf68d81f6707a119898219342ecb9": { - "address": "0x0590cc9232ebf68d81f6707a119898219342ecb9", - "symbol": "BCAT", - "decimals": 9, - "name": "BananaCat", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x0590cc9232ebf68d81f6707a119898219342ecb9.png", - "aggregators": [ - "CoinGecko", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x306fd3e7b169aa4ee19412323e1a5995b8c1a1f4": { - "address": "0x306fd3e7b169aa4ee19412323e1a5995b8c1a1f4", - "symbol": "FTW", - "decimals": 18, - "name": "Black Agnus", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x306fd3e7b169aa4ee19412323e1a5995b8c1a1f4.png", - "aggregators": [ - "CoinMarketCap", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x1b3be8fcd2e7c5ce9c5c242e0066fdd9740220d0": { - "address": "0x1b3be8fcd2e7c5ce9c5c242e0066fdd9740220d0", - "symbol": "LICKER", - "decimals": 9, - "name": "Licker", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x1b3be8fcd2e7c5ce9c5c242e0066fdd9740220d0.png", - "aggregators": [ - "CoinMarketCap", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x8e42fe26fc1697f57076c9f2a8d1ff69cf7f6fda": { - "address": "0x8e42fe26fc1697f57076c9f2a8d1ff69cf7f6fda", - "symbol": "AGURI", - "decimals": 9, - "name": "Aguri Chan", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x8e42fe26fc1697f57076c9f2a8d1ff69cf7f6fda.png", - "aggregators": [ - "CoinMarketCap", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x696733ce8f387c7a648443d9e21c6c1ee8519b94": { - "address": "0x696733ce8f387c7a648443d9e21c6c1ee8519b94", - "symbol": "SUKI", - "decimals": 9, - "name": "SUKI", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x696733ce8f387c7a648443d9e21c6c1ee8519b94.png", - "aggregators": [ - "CoinMarketCap", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x1bb4afbf2ce0c9ec86e6414ad4ba4d9aab1c0de4": { - "address": "0x1bb4afbf2ce0c9ec86e6414ad4ba4d9aab1c0de4", - "symbol": "TORA", - "decimals": 9, - "name": "TORA NEKO", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x1bb4afbf2ce0c9ec86e6414ad4ba4d9aab1c0de4.png", - "aggregators": [ - "CoinMarketCap", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x04c293144acc45a19da9c2817c08d1352e5be70e": { - "address": "0x04c293144acc45a19da9c2817c08d1352e5be70e", - "symbol": "MUGI", - "decimals": 9, - "name": "Mugi", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x04c293144acc45a19da9c2817c08d1352e5be70e.png", - "aggregators": [ - "CoinGecko", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x8baf5d75cae25c7df6d1e0d26c52d19ee848301a": { - "address": "0x8baf5d75cae25c7df6d1e0d26c52d19ee848301a", - "symbol": "CATALORIAN", - "decimals": 18, - "name": "Catalorian", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x8baf5d75cae25c7df6d1e0d26c52d19ee848301a.png", - "aggregators": [ - "CoinGecko", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x375e104af98872e5b4fe951919e504a47db1757c": { - "address": "0x375e104af98872e5b4fe951919e504a47db1757c", - "symbol": "GINNAN", - "decimals": 9, - "name": "Ginnan Doge s Brother", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x375e104af98872e5b4fe951919e504a47db1757c.png", - "aggregators": [ - "CoinMarketCap", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x8bd35250918ed056304fa8641e083be2c42308bb": { - "address": "0x8bd35250918ed056304fa8641e083be2c42308bb", - "symbol": "ESTEE", - "decimals": 18, - "name": "Kaga No Fuuka Go Sapporo Kagasou", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x8bd35250918ed056304fa8641e083be2c42308bb.png", - "aggregators": [ - "CoinMarketCap", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x41b1f9dcd5923c9542b6957b9b72169595acbc5c": { - "address": "0x41b1f9dcd5923c9542b6957b9b72169595acbc5c", - "symbol": "CHEEMS", - "decimals": 18, - "name": "Cheems CTO", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x41b1f9dcd5923c9542b6957b9b72169595acbc5c.png", - "aggregators": [ - "CoinMarketCap", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x13e4b8cffe704d3de6f19e52b201d92c21ec18bd": { - "address": "0x13e4b8cffe704d3de6f19e52b201d92c21ec18bd", - "symbol": "PAI", - "decimals": 18, - "name": "ParallelAI", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x13e4b8cffe704d3de6f19e52b201d92c21ec18bd.png", - "aggregators": [ - "CoinMarketCap", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x4298e4ad48be89bf63a6fdc470a4b4fe9ce633b1": { - "address": "0x4298e4ad48be89bf63a6fdc470a4b4fe9ce633b1", - "symbol": "ESTEE", - "decimals": 9, - "name": "Estee", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x4298e4ad48be89bf63a6fdc470a4b4fe9ce633b1.png", - "aggregators": [ - "CoinMarketCap", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x0ccae1bc46fb018dd396ed4c45565d4cb9d41098": { - "address": "0x0ccae1bc46fb018dd396ed4c45565d4cb9d41098", - "symbol": "MISHA", - "decimals": 9, - "name": "MISHA", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x0ccae1bc46fb018dd396ed4c45565d4cb9d41098.png", - "aggregators": [ - "CoinMarketCap", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x70c29e99ca32592c0e88bb571b87444bb0e08e33": { - "address": "0x70c29e99ca32592c0e88bb571b87444bb0e08e33", - "symbol": "MARVIN", - "decimals": 9, - "name": "The Martian Dog", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x70c29e99ca32592c0e88bb571b87444bb0e08e33.png", - "aggregators": [ - "CoinMarketCap", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x66b5228cfd34d9f4d9f03188d67816286c7c0b74": { - "address": "0x66b5228cfd34d9f4d9f03188d67816286c7c0b74", - "symbol": "VOLT", - "decimals": 18, - "name": "VOLT WIN", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x66b5228cfd34d9f4d9f03188d67816286c7c0b74.png", - "aggregators": [ - "CoinMarketCap", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x44e18207b6e98f4a786957954e462ed46b8c95be": { - "address": "0x44e18207b6e98f4a786957954e462ed46b8c95be", - "symbol": "TERMINUS", - "decimals": 9, - "name": "Terminus", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x44e18207b6e98f4a786957954e462ed46b8c95be.png", - "aggregators": [ - "CoinMarketCap", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x6969f3a3754ab674b48b7829a8572360e98132ba": { - "address": "0x6969f3a3754ab674b48b7829a8572360e98132ba", - "symbol": "IZZY", - "decimals": 9, - "name": "Izzy", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x6969f3a3754ab674b48b7829a8572360e98132ba.png", - "aggregators": [ - "CoinMarketCap", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x00f116ac0c304c570daaa68fa6c30a86a04b5c5f": { - "address": "0x00f116ac0c304c570daaa68fa6c30a86a04b5c5f", - "symbol": "INF", - "decimals": 18, - "name": "INFERNO", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x00f116ac0c304c570daaa68fa6c30a86a04b5c5f.png", - "aggregators": [ - "CoinMarketCap", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x3739426e21d912b604c106f852d136ba58f61517": { - "address": "0x3739426e21d912b604c106f852d136ba58f61517", - "symbol": "DOGGO", - "decimals": 18, - "name": "Doggo Inu", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x3739426e21d912b604c106f852d136ba58f61517.png", - "aggregators": [ - "CoinMarketCap", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x2597342ff387b63846eb456419590781c4bfcdaf": { - "address": "0x2597342ff387b63846eb456419590781c4bfcdaf", - "symbol": "TAXI", - "decimals": 18, - "name": "Robotaxi", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x2597342ff387b63846eb456419590781c4bfcdaf.png", - "aggregators": [ - "CoinMarketCap", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0xed2d1ef84a6a07dd49e8ca934908e9de005b7824": { - "address": "0xed2d1ef84a6a07dd49e8ca934908e9de005b7824", - "symbol": "WICKED", - "decimals": 18, - "name": "Wicked", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xed2d1ef84a6a07dd49e8ca934908e9de005b7824.png", - "aggregators": [ - "CoinMarketCap", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x7e7ef0ee0305c1c195fcae22fd7b207a813eef86": { - "address": "0x7e7ef0ee0305c1c195fcae22fd7b207a813eef86", - "symbol": "FIONA", - "decimals": 9, - "name": "Fiona", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x7e7ef0ee0305c1c195fcae22fd7b207a813eef86.png", - "aggregators": [ - "CoinMarketCap", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x103143acf2e717acf8f021823e86a1dbfe944fb5": { - "address": "0x103143acf2e717acf8f021823e86a1dbfe944fb5", - "symbol": "CHEESEBALL", - "decimals": 9, - "name": "Cheeseball the Wizard", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x103143acf2e717acf8f021823e86a1dbfe944fb5.png", - "aggregators": [ - "CoinMarketCap", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0xd0ebfe04adb5ef449ec5874e450810501dc53ed5": { - "address": "0xd0ebfe04adb5ef449ec5874e450810501dc53ed5", - "symbol": "BRUME", - "decimals": 18, - "name": "Brume", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xd0ebfe04adb5ef449ec5874e450810501dc53ed5.png", - "aggregators": [ - "CoinGecko", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x9f278dc799bbc61ecb8e5fb8035cbfa29803623b": { - "address": "0x9f278dc799bbc61ecb8e5fb8035cbfa29803623b", - "symbol": "BDX", - "decimals": 18, - "name": "Baby DragonX", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x9f278dc799bbc61ecb8e5fb8035cbfa29803623b.png", - "aggregators": [ - "CoinMarketCap", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x283d480dfd6921055e9c335fc177bf8cb9c94184": { - "address": "0x283d480dfd6921055e9c335fc177bf8cb9c94184", - "symbol": "VIX", - "decimals": 8, - "name": "VIX777", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x283d480dfd6921055e9c335fc177bf8cb9c94184.png", - "aggregators": [ - "CoinMarketCap", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0xa3bc09171c009f05df7f0b8aaa818ee42d8a91bc": { - "address": "0xa3bc09171c009f05df7f0b8aaa818ee42d8a91bc", - "symbol": "TSLA", - "decimals": 9, - "name": "TSLA6900", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xa3bc09171c009f05df7f0b8aaa818ee42d8a91bc.png", - "aggregators": [ - "CoinMarketCap", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x5981e98440e41fa993b26912b080922b8ed023c3": { - "address": "0x5981e98440e41fa993b26912b080922b8ed023c3", - "symbol": "MIHARU", - "decimals": 18, - "name": "Smiling Dolphin", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x5981e98440e41fa993b26912b080922b8ed023c3.png", - "aggregators": [ - "CoinGecko", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x11a7c8c9e9d5fc47134c305c59cebfcd1a4a9943": { - "address": "0x11a7c8c9e9d5fc47134c305c59cebfcd1a4a9943", - "symbol": "BOG", - "decimals": 18, - "name": "Bog", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x11a7c8c9e9d5fc47134c305c59cebfcd1a4a9943.png", - "aggregators": [ - "CoinMarketCap", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x1e762e1fac176bbb341656035daf5601b1c69be5": { - "address": "0x1e762e1fac176bbb341656035daf5601b1c69be5", - "symbol": "WEL", - "decimals": 18, - "name": "Welshare Health Token", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x1e762e1fac176bbb341656035daf5601b1c69be5.png", - "aggregators": [ - "CoinMarketCap", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x089453742936dd35134383aee9d78bee63a69b01": { - "address": "0x089453742936dd35134383aee9d78bee63a69b01", - "symbol": "GOLD", - "decimals": 18, - "name": "Gold", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x089453742936dd35134383aee9d78bee63a69b01.png", - "aggregators": [ - "CoinMarketCap", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0xeaa63125dd63f10874f99cdbbb18410e7fc79dd3": { - "address": "0xeaa63125dd63f10874f99cdbbb18410e7fc79dd3", - "symbol": "HEMULE", - "decimals": 18, - "name": "Hemule", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xeaa63125dd63f10874f99cdbbb18410e7fc79dd3.png", - "aggregators": [ - "CoinMarketCap", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0xff44b937788215eca197baaf9af69dbdc214aa04": { - "address": "0xff44b937788215eca197baaf9af69dbdc214aa04", - "symbol": "ROCKI", - "decimals": 18, - "name": "Rocki", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xff44b937788215eca197baaf9af69dbdc214aa04.png", - "aggregators": [ - "CoinMarketCap", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0xad996a45fd2373ed0b10efa4a8ecb9de445a4302": { - "address": "0xad996a45fd2373ed0b10efa4a8ecb9de445a4302", - "symbol": "SHI", - "decimals": 18, - "name": "Shirtum", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xad996a45fd2373ed0b10efa4a8ecb9de445a4302.png", - "aggregators": [ - "CoinMarketCap", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x6b89b97169a797d94f057f4a0b01e2ca303155e4": { - "address": "0x6b89b97169a797d94f057f4a0b01e2ca303155e4", - "symbol": "CHAD", - "decimals": 18, - "name": "Chad Coin", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x6b89b97169a797d94f057f4a0b01e2ca303155e4.png", - "aggregators": [ - "CoinMarketCap", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x80122c6a83c8202ea365233363d3f4837d13e888": { - "address": "0x80122c6a83c8202ea365233363d3f4837d13e888", - "symbol": "M87", - "decimals": 18, - "name": "MESSIER", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x80122c6a83c8202ea365233363d3f4837d13e888.png", - "aggregators": [ - "CoinMarketCap", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0xb9f599ce614feb2e1bbe58f180f370d05b39344e": { - "address": "0xb9f599ce614feb2e1bbe58f180f370d05b39344e", - "symbol": "PORK", - "decimals": 18, - "name": "PepeFork", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xb9f599ce614feb2e1bbe58f180f370d05b39344e.png", - "aggregators": [ - "CoinMarketCap", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x3b604747ad1720c01ded0455728b62c0d2f100f0": { - "address": "0x3b604747ad1720c01ded0455728b62c0d2f100f0", - "symbol": "WAGMIGAMES", - "decimals": 18, - "name": "WAGMI Games", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x3b604747ad1720c01ded0455728b62c0d2f100f0.png", - "aggregators": [ - "CoinMarketCap", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x7dedbce5a2e31e4c75f87fea60bf796c17718715": { - "address": "0x7dedbce5a2e31e4c75f87fea60bf796c17718715", - "symbol": "PNP", - "decimals": 18, - "name": "Penpie", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x7dedbce5a2e31e4c75f87fea60bf796c17718715.png", - "aggregators": [ - "CoinMarketCap", - "LiFi", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x44a023a4c32bdd2c89ee87ee76a2332b1a883012": { - "address": "0x44a023a4c32bdd2c89ee87ee76a2332b1a883012", - "symbol": "ZAZZLES", - "decimals": 9, - "name": "Zazzles", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x44a023a4c32bdd2c89ee87ee76a2332b1a883012.png", - "aggregators": [ - "CoinMarketCap", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0xf2a22b900dde3ba18ec2aef67d4c8c1a0dab6aac": { - "address": "0xf2a22b900dde3ba18ec2aef67d4c8c1a0dab6aac", - "symbol": "MONKEYS", - "decimals": 9, - "name": "Monkeys", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xf2a22b900dde3ba18ec2aef67d4c8c1a0dab6aac.png", - "aggregators": [ - "CoinMarketCap", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x064797ac7f833d01faeeae0e69f3af5a52a91fc8": { - "address": "0x064797ac7f833d01faeeae0e69f3af5a52a91fc8", - "symbol": "SU", - "decimals": 9, - "name": "Smol Su", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x064797ac7f833d01faeeae0e69f3af5a52a91fc8.png", - "aggregators": [ - "CoinMarketCap", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x0a58153a0cd1cfaea94ce1f7fdc5d7e679eca936": { - "address": "0x0a58153a0cd1cfaea94ce1f7fdc5d7e679eca936", - "symbol": "IM", - "decimals": 18, - "name": "Internet Money ETH", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x0a58153a0cd1cfaea94ce1f7fdc5d7e679eca936.png", - "aggregators": [ - "CoinMarketCap", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x1864ce27e9f7517047933caae530674e8c70b8a7": { - "address": "0x1864ce27e9f7517047933caae530674e8c70b8a7", - "symbol": "PIB", - "decimals": 18, - "name": "Pibble", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x1864ce27e9f7517047933caae530674e8c70b8a7.png", - "aggregators": [ - "CoinMarketCap", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x9afa9999e45484adf5d8eed8d9dfe0693bacd838": { - "address": "0x9afa9999e45484adf5d8eed8d9dfe0693bacd838", - "symbol": "EVERY", - "decimals": 18, - "name": "Everyworld", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x9afa9999e45484adf5d8eed8d9dfe0693bacd838.png", - "aggregators": [ - "CoinMarketCap", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x013062189dc3dcc99e9cee714c513033b8d99e3c": { - "address": "0x013062189dc3dcc99e9cee714c513033b8d99e3c", - "symbol": "INFRA", - "decimals": 18, - "name": "Bware", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x013062189dc3dcc99e9cee714c513033b8d99e3c.png", - "aggregators": [ - "CoinMarketCap", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0xa0f0546eb5e3ee7e8cfc5da12e5949f3ae622675": { - "address": "0xa0f0546eb5e3ee7e8cfc5da12e5949f3ae622675", - "symbol": "TOKO", - "decimals": 18, - "name": "Tokoin", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xa0f0546eb5e3ee7e8cfc5da12e5949f3ae622675.png", - "aggregators": [ - "CoinMarketCap", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0xb1a822ce8c799b0777ed1f260113819247e1bf26": { - "address": "0xb1a822ce8c799b0777ed1f260113819247e1bf26", - "symbol": "FTX", - "decimals": 18, - "name": "HairyPlotterFTX", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xb1a822ce8c799b0777ed1f260113819247e1bf26.png", - "aggregators": [ - "CoinMarketCap", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x66f73d0fd4161cfad4302dc145ff994375c13475": { - "address": "0x66f73d0fd4161cfad4302dc145ff994375c13475", - "symbol": "DXGM", - "decimals": 18, - "name": "DexGame", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x66f73d0fd4161cfad4302dc145ff994375c13475.png", - "aggregators": [ - "CoinMarketCap", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x357c915d7c12dc506d13332bb06c932af13e99a0": { - "address": "0x357c915d7c12dc506d13332bb06c932af13e99a0", - "symbol": "LUCKYSLP", - "decimals": 18, - "name": "LuckysLeprecoin", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x357c915d7c12dc506d13332bb06c932af13e99a0.png", - "aggregators": [ - "CoinMarketCap", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0xc6bdb96e29c38dc43f014eed44de4106a6a8eb5f": { - "address": "0xc6bdb96e29c38dc43f014eed44de4106a6a8eb5f", - "symbol": "INUINU", - "decimals": 18, - "name": "Inu Inu", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xc6bdb96e29c38dc43f014eed44de4106a6a8eb5f.png", - "aggregators": [ - "CoinMarketCap", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x2a79324c19ef2b89ea98b23bc669b7e7c9f8a517": { - "address": "0x2a79324c19ef2b89ea98b23bc669b7e7c9f8a517", - "symbol": "WAXP", - "decimals": 8, - "name": "WAX", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x2a79324c19ef2b89ea98b23bc669b7e7c9f8a517.png", - "aggregators": [ - "CoinMarketCap", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0xd105c45bcc7211f847ae73b187a41b7d8184ade2": { - "address": "0xd105c45bcc7211f847ae73b187a41b7d8184ade2", - "symbol": "NCASH", - "decimals": 18, - "name": "Nutcash", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xd105c45bcc7211f847ae73b187a41b7d8184ade2.png", - "aggregators": [ - "CoinMarketCap", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x9d1a7a3191102e9f900faa10540837ba84dcbae7": { - "address": "0x9d1a7a3191102e9f900faa10540837ba84dcbae7", - "symbol": "EURI", - "decimals": 18, - "name": "Eurite", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x9d1a7a3191102e9f900faa10540837ba84dcbae7.png", - "aggregators": [ - "CoinMarketCap", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x89e8e084cc60e6988527f0904b4be71656e8bfa9": { - "address": "0x89e8e084cc60e6988527f0904b4be71656e8bfa9", - "symbol": "SMOG", - "decimals": 6, - "name": "Smog", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x89e8e084cc60e6988527f0904b4be71656e8bfa9.png", - "aggregators": [ - "CoinMarketCap", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x6aa56e1d98b3805921c170eb4b3fe7d4fda6d89b": { - "address": "0x6aa56e1d98b3805921c170eb4b3fe7d4fda6d89b", - "symbol": "TRUMP", - "decimals": 9, - "name": "MAGA", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x6aa56e1d98b3805921c170eb4b3fe7d4fda6d89b.png", - "aggregators": [ - "CoinGecko", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x50d5118fb90d572b9d42ba65e0addc4900867809": { - "address": "0x50d5118fb90d572b9d42ba65e0addc4900867809", - "symbol": "OSEAN", - "decimals": 18, - "name": "Osean", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x50d5118fb90d572b9d42ba65e0addc4900867809.png", - "aggregators": [ - "CoinMarketCap", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x4e9e4ab99cfc14b852f552f5fb3aa68617825b6c": { - "address": "0x4e9e4ab99cfc14b852f552f5fb3aa68617825b6c", - "symbol": "SLR", - "decimals": 18, - "name": "Solarcoin", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x4e9e4ab99cfc14b852f552f5fb3aa68617825b6c.png", - "aggregators": [ - "CoinMarketCap", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x054c9d4c6f4ea4e14391addd1812106c97d05690": { - "address": "0x054c9d4c6f4ea4e14391addd1812106c97d05690", - "symbol": "LLD", - "decimals": 18, - "name": "Liberland LLD", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x054c9d4c6f4ea4e14391addd1812106c97d05690.png", - "aggregators": [ - "CoinMarketCap", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x75d86078625d1e2f612de2627d34c7bc411c18b8": { - "address": "0x75d86078625d1e2f612de2627d34c7bc411c18b8", - "symbol": "AGII", - "decimals": 18, - "name": "AGII", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x75d86078625d1e2f612de2627d34c7bc411c18b8.png", - "aggregators": [ - "CoinMarketCap", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x8db4beaccd1698892821a9a0dc367792c0cb9940": { - "address": "0x8db4beaccd1698892821a9a0dc367792c0cb9940", - "symbol": "4TOKEN", - "decimals": 18, - "name": "Ignore Fud", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x8db4beaccd1698892821a9a0dc367792c0cb9940.png", - "aggregators": [ - "CoinMarketCap", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0xc0b314a8c08637685fc3dafc477b92028c540cfb": { - "address": "0xc0b314a8c08637685fc3dafc477b92028c540cfb", - "symbol": "WOM", - "decimals": 18, - "name": "Wombat Exchange", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xc0b314a8c08637685fc3dafc477b92028c540cfb.png", - "aggregators": [ - "CoinMarketCap", - "LiFi", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x6731827cb6879a2091ce3ab3423f7bf20539b579": { - "address": "0x6731827cb6879a2091ce3ab3423f7bf20539b579", - "symbol": "MPWR", - "decimals": 18, - "name": "Empower", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x6731827cb6879a2091ce3ab3423f7bf20539b579.png", - "aggregators": [ - "CoinMarketCap", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0xe55d97a97ae6a17706ee281486e98a84095d8aaf": { - "address": "0xe55d97a97ae6a17706ee281486e98a84095d8aaf", - "symbol": "AIPAD", - "decimals": 18, - "name": "AIPad", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xe55d97a97ae6a17706ee281486e98a84095d8aaf.png", - "aggregators": [ - "CoinMarketCap", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x66d79b8f60ec93bfce0b56f5ac14a2714e509a99": { - "address": "0x66d79b8f60ec93bfce0b56f5ac14a2714e509a99", - "symbol": "MAPO", - "decimals": 18, - "name": "MAP Protocol", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x66d79b8f60ec93bfce0b56f5ac14a2714e509a99.png", - "aggregators": [ - "CoinMarketCap", - "LiFi", - "Socket", - "Rubic", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x3b9b5ad79cbb7649143decd5afc749a75f8e6c7f": { - "address": "0x3b9b5ad79cbb7649143decd5afc749a75f8e6c7f", - "symbol": "GORA", - "decimals": 18, - "name": "Gora", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x3b9b5ad79cbb7649143decd5afc749a75f8e6c7f.png", - "aggregators": [ - "CoinMarketCap", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x8287c7b963b405b7b8d467db9d79eec40625b13a": { - "address": "0x8287c7b963b405b7b8d467db9d79eec40625b13a", - "symbol": "SWINGBY", - "decimals": 18, - "name": "Swingby", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x8287c7b963b405b7b8d467db9d79eec40625b13a.png", - "aggregators": [ - "CoinMarketCap", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0xe0b0c16038845bed3fcf70304d3e167df81ce225": { - "address": "0xe0b0c16038845bed3fcf70304d3e167df81ce225", - "symbol": "CSWAP", - "decimals": 18, - "name": "CrossSwap", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xe0b0c16038845bed3fcf70304d3e167df81ce225.png", - "aggregators": [ - "CoinMarketCap", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x939b462ee3311f8926c047d2b576c389092b1649": { - "address": "0x939b462ee3311f8926c047d2b576c389092b1649", - "symbol": "DAPP", - "decimals": 4, - "name": "DAPP TOKEN", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x939b462ee3311f8926c047d2b576c389092b1649.png", - "aggregators": [ - "CoinMarketCap", - "Rubic", - "Rango", - "Sonarwatch", - "Bancor" - ], - "occurrences": 5 - }, - "0xf6719e1a8fcbb1b9c290019e37e004966a8916c9": { - "address": "0xf6719e1a8fcbb1b9c290019e37e004966a8916c9", - "symbol": "PGEN", - "decimals": 18, - "name": "Polygen", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xf6719e1a8fcbb1b9c290019e37e004966a8916c9.png", - "aggregators": [ - "CoinMarketCap", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x42baf1f659d765c65ade5bb7e08eb2c680360d9d": { - "address": "0x42baf1f659d765c65ade5bb7e08eb2c680360d9d", - "symbol": "COPI", - "decimals": 18, - "name": "Cornucopias", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x42baf1f659d765c65ade5bb7e08eb2c680360d9d.png", - "aggregators": [ - "CoinGecko", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x446f2a8a39cc730ef378be759a3c57f1a3fe824c": { - "address": "0x446f2a8a39cc730ef378be759a3c57f1a3fe824c", - "symbol": "NBT", - "decimals": 18, - "name": "NanoByte", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x446f2a8a39cc730ef378be759a3c57f1a3fe824c.png", - "aggregators": [ - "CoinMarketCap", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x345887cdb19e12833ed376bbf8b8b38269f5f5c8": { - "address": "0x345887cdb19e12833ed376bbf8b8b38269f5f5c8", - "symbol": "CSIX", - "decimals": 18, - "name": "Carbon Browser", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x345887cdb19e12833ed376bbf8b8b38269f5f5c8.png", - "aggregators": [ - "CoinMarketCap", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0xe636f94a71ec52cc61ef21787ae351ad832347b7": { - "address": "0xe636f94a71ec52cc61ef21787ae351ad832347b7", - "symbol": "CREO", - "decimals": 18, - "name": "Creo Engine", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xe636f94a71ec52cc61ef21787ae351ad832347b7.png", - "aggregators": [ - "CoinMarketCap", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x1901f826dfcbfd9d3138936932366b3493a50893": { - "address": "0x1901f826dfcbfd9d3138936932366b3493a50893", - "symbol": "SPHYNX", - "decimals": 18, - "name": "Sphynx Labs", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x1901f826dfcbfd9d3138936932366b3493a50893.png", - "aggregators": [ - "CoinMarketCap", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0xdb0170e2d0c1cc1b2e7a90313d9b9afa4f250289": { - "address": "0xdb0170e2d0c1cc1b2e7a90313d9b9afa4f250289", - "symbol": "ADAPAD", - "decimals": 18, - "name": "ADAPad", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xdb0170e2d0c1cc1b2e7a90313d9b9afa4f250289.png", - "aggregators": [ - "CoinMarketCap", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0xd373576a9e738f37dc6882328358ff69c4caf4c6": { - "address": "0xd373576a9e738f37dc6882328358ff69c4caf4c6", - "symbol": "ZAM", - "decimals": 18, - "name": "Zam io", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xd373576a9e738f37dc6882328358ff69c4caf4c6.png", - "aggregators": [ - "CoinMarketCap", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x2b867efd2de4ad2b583ca0cb3df9c4040ef4d329": { - "address": "0x2b867efd2de4ad2b583ca0cb3df9c4040ef4d329", - "symbol": "LBLOCK", - "decimals": 9, - "name": "Lucky Block", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x2b867efd2de4ad2b583ca0cb3df9c4040ef4d329.png", - "aggregators": [ - "CoinMarketCap", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x61ec85ab89377db65762e234c946b5c25a56e99e": { - "address": "0x61ec85ab89377db65762e234c946b5c25a56e99e", - "symbol": "HTX", - "decimals": 18, - "name": "HTX DAO", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x61ec85ab89377db65762e234c946b5c25a56e99e.png", - "aggregators": [ - "CoinMarketCap", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0xc36983d3d9d379ddfb306dfb919099cb6730e355": { - "address": "0xc36983d3d9d379ddfb306dfb919099cb6730e355", - "symbol": "COLLE", - "decimals": 18, - "name": "Colle AI", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xc36983d3d9d379ddfb306dfb919099cb6730e355.png", - "aggregators": [ - "CoinMarketCap", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0xa10bf0aba0c7953f279c4cb8192d3b5de5ea56e8": { - "address": "0xa10bf0aba0c7953f279c4cb8192d3b5de5ea56e8", - "symbol": "TAROT", - "decimals": 18, - "name": "Tarot", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xa10bf0aba0c7953f279c4cb8192d3b5de5ea56e8.png", - "aggregators": [ - "CoinMarketCap", - "LiFi", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x901a020915bc3577d85d29f68024b4c5e240b8cd": { - "address": "0x901a020915bc3577d85d29f68024b4c5e240b8cd", - "symbol": "BLASTUP", - "decimals": 18, - "name": "BlastUP", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x901a020915bc3577d85d29f68024b4c5e240b8cd.png", - "aggregators": [ - "CoinMarketCap", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0xe04f47ff45576249bc5083dfdf987e03d0550113": { - "address": "0xe04f47ff45576249bc5083dfdf987e03d0550113", - "symbol": "SAMA", - "decimals": 18, - "name": "Moonsama", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xe04f47ff45576249bc5083dfdf987e03d0550113.png", - "aggregators": [ - "CoinMarketCap", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x48b847cf774a5710f36f594b11fc10e2e59bba72": { - "address": "0x48b847cf774a5710f36f594b11fc10e2e59bba72", - "symbol": "UNIT0", - "decimals": 18, - "name": "Unit0", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x48b847cf774a5710f36f594b11fc10e2e59bba72.png", - "aggregators": [ - "CoinMarketCap", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x791a5c2261823dbf69b27b63e851b7745532cfa2": { - "address": "0x791a5c2261823dbf69b27b63e851b7745532cfa2", - "symbol": "TUA", - "decimals": 18, - "name": "Atua AI", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x791a5c2261823dbf69b27b63e851b7745532cfa2.png", - "aggregators": [ - "CoinMarketCap", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x0a77ef9bf662d62fbf9ba4cf861eaa83f9cc4fec": { - "address": "0x0a77ef9bf662d62fbf9ba4cf861eaa83f9cc4fec", - "symbol": "XWG", - "decimals": 18, - "name": "X World Games", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x0a77ef9bf662d62fbf9ba4cf861eaa83f9cc4fec.png", - "aggregators": [ - "CoinMarketCap", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0xb2492e97a68a6e4b9e9a11b99f6c42e5accd38c7": { - "address": "0xb2492e97a68a6e4b9e9a11b99f6c42e5accd38c7", - "symbol": "VEXT", - "decimals": 18, - "name": "Veloce", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xb2492e97a68a6e4b9e9a11b99f6c42e5accd38c7.png", - "aggregators": [ - "CoinMarketCap", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x56c03b8c4fa80ba37f5a7b60caaaef749bb5b220": { - "address": "0x56c03b8c4fa80ba37f5a7b60caaaef749bb5b220", - "symbol": "CANTO", - "decimals": 18, - "name": "CANTO", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x56c03b8c4fa80ba37f5a7b60caaaef749bb5b220.png", - "aggregators": [ - "CoinMarketCap", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0xb63b606ac810a52cca15e44bb630fd42d8d1d83d": { - "address": "0xb63b606ac810a52cca15e44bb630fd42d8d1d83d", - "symbol": "MCO", - "decimals": 8, - "name": "MCO", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xb63b606ac810a52cca15e44bb630fd42d8d1d83d.png", - "aggregators": [ - "CoinMarketCap", - "LiFi", - "Socket", - "Rubic", - "Rango" - ], - "occurrences": 5 - }, - "0xc237868a9c5729bdf3173dddacaa336a0a5bb6e0": { - "address": "0xc237868a9c5729bdf3173dddacaa336a0a5bb6e0", - "symbol": "WGR", - "decimals": 8, - "name": "Wagerr", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xc237868a9c5729bdf3173dddacaa336a0a5bb6e0.png", - "aggregators": [ - "CoinMarketCap", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0xfca47962d45adfdfd1ab2d972315db4ce7ccf094": { - "address": "0xfca47962d45adfdfd1ab2d972315db4ce7ccf094", - "symbol": "IXT", - "decimals": 8, - "name": "iXledger", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xfca47962d45adfdfd1ab2d972315db4ce7ccf094.png", - "aggregators": [ - "CoinMarketCap", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x3d1ba9be9f66b8ee101911bc36d3fb562eac2244": { - "address": "0x3d1ba9be9f66b8ee101911bc36d3fb562eac2244", - "symbol": "RVT", - "decimals": 18, - "name": "RvT", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x3d1ba9be9f66b8ee101911bc36d3fb562eac2244.png", - "aggregators": [ - "CoinMarketCap", - "LiFi", - "Rubic", - "Rango", - "Bancor" - ], - "occurrences": 5 - }, - "0x4a8f5f96d5436e43112c2fbc6a9f70da9e4e16d4": { - "address": "0x4a8f5f96d5436e43112c2fbc6a9f70da9e4e16d4", - "symbol": "INXT", - "decimals": 8, - "name": "Internxt", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x4a8f5f96d5436e43112c2fbc6a9f70da9e4e16d4.png", - "aggregators": [ - "CoinMarketCap", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x0c37bcf456bc661c14d596683325623076d7e283": { - "address": "0x0c37bcf456bc661c14d596683325623076d7e283", - "symbol": "ARNX", - "decimals": 18, - "name": "Aeron", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x0c37bcf456bc661c14d596683325623076d7e283.png", - "aggregators": [ - "CoinMarketCap", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x618e75ac90b12c6049ba3b27f5d5f8651b0037f6": { - "address": "0x618e75ac90b12c6049ba3b27f5d5f8651b0037f6", - "symbol": "QASH", - "decimals": 6, - "name": "QASH", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x618e75ac90b12c6049ba3b27f5d5f8651b0037f6.png", - "aggregators": [ - "CoinMarketCap", - "Socket", - "Rubic", - "Rango", - "Bancor" - ], - "occurrences": 5 - }, - "0x558ec3152e2eb2174905cd19aea4e34a23de9ad6": { - "address": "0x558ec3152e2eb2174905cd19aea4e34a23de9ad6", - "symbol": "BRD", - "decimals": 18, - "name": "Bread", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x558ec3152e2eb2174905cd19aea4e34a23de9ad6.png", - "aggregators": [ - "CoinMarketCap", - "LiFi", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0xd2d6158683aee4cc838067727209a0aaf4359de3": { - "address": "0xd2d6158683aee4cc838067727209a0aaf4359de3", - "symbol": "BNTY", - "decimals": 18, - "name": "Bounty0x Token", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xd2d6158683aee4cc838067727209a0aaf4359de3.png", - "aggregators": [ - "CoinMarketCap", - "LiFi", - "Socket", - "Rubic", - "Rango" - ], - "occurrences": 5 - }, - "0xe477292f1b3268687a29376116b0ed27a9c76170": { - "address": "0xe477292f1b3268687a29376116b0ed27a9c76170", - "symbol": "PLAY", - "decimals": 18, - "name": "Herocoin", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xe477292f1b3268687a29376116b0ed27a9c76170.png", - "aggregators": ["Metamask", "LiFi", "Socket", "Rubic", "Rango"], - "occurrences": 5 - }, - "0xb70835d7822ebb9426b56543e391846c107bd32c": { - "address": "0xb70835d7822ebb9426b56543e391846c107bd32c", - "symbol": "GTC", - "decimals": 18, - "name": "Game", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xb70835d7822ebb9426b56543e391846c107bd32c.png", - "aggregators": [ - "CoinMarketCap", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x79650799e7899a802cb96c0bc33a6a8d4ce4936c": { - "address": "0x79650799e7899a802cb96c0bc33a6a8d4ce4936c", - "symbol": "AIT", - "decimals": 18, - "name": "AICHAIN", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x79650799e7899a802cb96c0bc33a6a8d4ce4936c.png", - "aggregators": [ - "CoinMarketCap", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x3a92bd396aef82af98ebc0aa9030d25a23b11c6b": { - "address": "0x3a92bd396aef82af98ebc0aa9030d25a23b11c6b", - "symbol": "TBX", - "decimals": 18, - "name": "Tokenbox", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x3a92bd396aef82af98ebc0aa9030d25a23b11c6b.png", - "aggregators": [ - "CoinMarketCap", - "LiFi", - "Rubic", - "Rango", - "Bancor" - ], - "occurrences": 5 - }, - "0xd49ff13661451313ca1553fd6954bd1d9b6e02b9": { - "address": "0xd49ff13661451313ca1553fd6954bd1d9b6e02b9", - "symbol": "ELEC", - "decimals": 18, - "name": "Electrify Asia", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xd49ff13661451313ca1553fd6954bd1d9b6e02b9.png", - "aggregators": [ - "CoinMarketCap", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0xa13f0743951b4f6e3e3aa039f682e17279f52bc3": { - "address": "0xa13f0743951b4f6e3e3aa039f682e17279f52bc3", - "symbol": "SENC", - "decimals": 18, - "name": "Sentinel Chain", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xa13f0743951b4f6e3e3aa039f682e17279f52bc3.png", - "aggregators": [ - "CoinMarketCap", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0xfe5f141bf94fe84bc28ded0ab966c16b17490657": { - "address": "0xfe5f141bf94fe84bc28ded0ab966c16b17490657", - "symbol": "LBA", - "decimals": 18, - "name": "Libra Credit", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xfe5f141bf94fe84bc28ded0ab966c16b17490657.png", - "aggregators": [ - "CoinMarketCap", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x0f8c45b896784a1e408526b9300519ef8660209c": { - "address": "0x0f8c45b896784a1e408526b9300519ef8660209c", - "symbol": "XMX", - "decimals": 8, - "name": "XMax", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x0f8c45b896784a1e408526b9300519ef8660209c.png", - "aggregators": [ - "CoinMarketCap", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x846c66cf71c43f80403b51fe3906b3599d63336f": { - "address": "0x846c66cf71c43f80403b51fe3906b3599d63336f", - "symbol": "PMA", - "decimals": 18, - "name": "PumaPay", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x846c66cf71c43f80403b51fe3906b3599d63336f.png", - "aggregators": [ - "CoinMarketCap", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x0b5326da634f9270fb84481dd6f94d3dc2ca7096": { - "address": "0x0b5326da634f9270fb84481dd6f94d3dc2ca7096", - "symbol": "ETHO", - "decimals": 18, - "name": "Etho Protocol", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x0b5326da634f9270fb84481dd6f94d3dc2ca7096.png", - "aggregators": [ - "CoinMarketCap", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0xfe39c384d702914127a005523f9915addb9bd59b": { - "address": "0xfe39c384d702914127a005523f9915addb9bd59b", - "symbol": "HPO", - "decimals": 18, - "name": "Hippocrat", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xfe39c384d702914127a005523f9915addb9bd59b.png", - "aggregators": [ - "CoinMarketCap", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0xa4bdb11dc0a2bec88d24a3aa1e6bb17201112ebe": { - "address": "0xa4bdb11dc0a2bec88d24a3aa1e6bb17201112ebe", - "symbol": "USDS", - "decimals": 6, - "name": "StableUSD", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xa4bdb11dc0a2bec88d24a3aa1e6bb17201112ebe.png", - "aggregators": ["Metamask", "LiFi", "Socket", "Rubic", "Rango"], - "occurrences": 5 - }, - "0xaec7d1069e3a914a3eb50f0bfb1796751f2ce48a": { - "address": "0xaec7d1069e3a914a3eb50f0bfb1796751f2ce48a", - "symbol": "S4F", - "decimals": 18, - "name": "S4FE", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xaec7d1069e3a914a3eb50f0bfb1796751f2ce48a.png", - "aggregators": [ - "CoinMarketCap", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x4a57e687b9126435a9b19e4a802113e266adebde": { - "address": "0x4a57e687b9126435a9b19e4a802113e266adebde", - "symbol": "FXC", - "decimals": 18, - "name": "Flexacoin", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x4a57e687b9126435a9b19e4a802113e266adebde.png", - "aggregators": [ - "CoinMarketCap", - "LiFi", - "Rubic", - "Rango", - "Bancor" - ], - "occurrences": 5 - }, - "0x115ec79f1de567ec68b7ae7eda501b406626478e": { - "address": "0x115ec79f1de567ec68b7ae7eda501b406626478e", - "symbol": "CRE", - "decimals": 18, - "name": "Carry", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x115ec79f1de567ec68b7ae7eda501b406626478e.png", - "aggregators": [ - "CoinMarketCap", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0xd31695a1d35e489252ce57b129fd4b1b05e6acac": { - "address": "0xd31695a1d35e489252ce57b129fd4b1b05e6acac", - "symbol": "TKP", - "decimals": 18, - "name": "TOKPIE", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xd31695a1d35e489252ce57b129fd4b1b05e6acac.png", - "aggregators": [ - "CoinMarketCap", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0xc03fbf20a586fa89c2a5f6f941458e1fbc40c661": { - "address": "0xc03fbf20a586fa89c2a5f6f941458e1fbc40c661", - "symbol": "COMBO", - "decimals": 18, - "name": "COMBO", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xc03fbf20a586fa89c2a5f6f941458e1fbc40c661.png", - "aggregators": [ - "CoinMarketCap", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x42a501903afaa1086b5975773375c80e363f4063": { - "address": "0x42a501903afaa1086b5975773375c80e363f4063", - "symbol": "CTK", - "decimals": 8, - "name": "Cryptyk", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x42a501903afaa1086b5975773375c80e363f4063.png", - "aggregators": [ - "CoinMarketCap", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0xe0b9bcd54bf8a730ea5d3f1ffce0885e911a502c": { - "address": "0xe0b9bcd54bf8a730ea5d3f1ffce0885e911a502c", - "symbol": "ZUM", - "decimals": 8, - "name": "ZUM", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xe0b9bcd54bf8a730ea5d3f1ffce0885e911a502c.png", - "aggregators": [ - "CoinMarketCap", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x5b322514ff727253292637d9054301600c2c81e8": { - "address": "0x5b322514ff727253292637d9054301600c2c81e8", - "symbol": "DAD", - "decimals": 9, - "name": "DAD", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x5b322514ff727253292637d9054301600c2c81e8.png", - "aggregators": [ - "CoinMarketCap", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x9b9647431632af44be02ddd22477ed94d14aacaa": { - "address": "0x9b9647431632af44be02ddd22477ed94d14aacaa", - "symbol": "KOK", - "decimals": 18, - "name": "KOK", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x9b9647431632af44be02ddd22477ed94d14aacaa.png", - "aggregators": [ - "CoinMarketCap", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0xcd62b1c403fa761baadfc74c525ce2b51780b184": { - "address": "0xcd62b1c403fa761baadfc74c525ce2b51780b184", - "symbol": "ANJ", - "decimals": 18, - "name": "ANJ", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xcd62b1c403fa761baadfc74c525ce2b51780b184.png", - "aggregators": ["CoinMarketCap", "1inch", "LiFi", "Rubic", "Rango"], - "occurrences": 5 - }, - "0x8185bc4757572da2a610f887561c32298f1a5748": { - "address": "0x8185bc4757572da2a610f887561c32298f1a5748", - "symbol": "ALN", - "decimals": 18, - "name": "Aluna", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x8185bc4757572da2a610f887561c32298f1a5748.png", - "aggregators": [ - "CoinMarketCap", - "LiFi", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0xf5238462e7235c7b62811567e63dd17d12c2eaa0": { - "address": "0xf5238462e7235c7b62811567e63dd17d12c2eaa0", - "symbol": "CGT", - "decimals": 8, - "name": "CACHE Gold", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xf5238462e7235c7b62811567e63dd17d12c2eaa0.png", - "aggregators": [ - "CoinMarketCap", - "LiFi", - "Socket", - "Rubic", - "Bancor" - ], - "occurrences": 5 - }, - "0x4168bbc34baea34e55721809911bca5baaef6ba6": { - "address": "0x4168bbc34baea34e55721809911bca5baaef6ba6", - "symbol": "CEP", - "decimals": 18, - "name": "CEREAL", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x4168bbc34baea34e55721809911bca5baaef6ba6.png", - "aggregators": [ - "CoinMarketCap", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0xcd6926193308d3b371fdd6a6219067e550000000": { - "address": "0xcd6926193308d3b371fdd6a6219067e550000000", - "symbol": "NEST", - "decimals": 18, - "name": "Nest Protocol", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xcd6926193308d3b371fdd6a6219067e550000000.png", - "aggregators": [ - "CoinMarketCap", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0xeeeeeeeee2af8d0e1940679860398308e0ef24d6": { - "address": "0xeeeeeeeee2af8d0e1940679860398308e0ef24d6", - "symbol": "ETHV", - "decimals": 18, - "name": "ETHV", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xeeeeeeeee2af8d0e1940679860398308e0ef24d6.png", - "aggregators": [ - "CoinMarketCap", - "LiFi", - "Socket", - "Rubic", - "Rango" - ], - "occurrences": 5 - }, - "0x39d30828a163713d91c4eadbba2c497a9139ec5c": { - "address": "0x39d30828a163713d91c4eadbba2c497a9139ec5c", - "symbol": "HBDC", - "decimals": 18, - "name": "Happy Birthday Coin", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x39d30828a163713d91c4eadbba2c497a9139ec5c.png", - "aggregators": [ - "CoinMarketCap", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0xba21ef4c9f433ede00badefcc2754b8e74bd538a": { - "address": "0xba21ef4c9f433ede00badefcc2754b8e74bd538a", - "symbol": "SWFL", - "decimals": 18, - "name": "Swapfolio", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xba21ef4c9f433ede00badefcc2754b8e74bd538a.png", - "aggregators": [ - "CoinMarketCap", - "1inch", - "TrustWallet", - "Rubic", - "Rango" - ], - "occurrences": 5 - }, - "0xe63684bcf2987892cefb4caa79bd21b34e98a291": { - "address": "0xe63684bcf2987892cefb4caa79bd21b34e98a291", - "symbol": "KFC", - "decimals": 18, - "name": "Chicken", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xe63684bcf2987892cefb4caa79bd21b34e98a291.png", - "aggregators": [ - "CoinMarketCap", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x3a8cccb969a61532d1e6005e2ce12c200caece87": { - "address": "0x3a8cccb969a61532d1e6005e2ce12c200caece87", - "symbol": "TITAN", - "decimals": 18, - "name": "TitanSwap", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x3a8cccb969a61532d1e6005e2ce12c200caece87.png", - "aggregators": [ - "CoinMarketCap", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x78f225869c08d478c34e5f645d07a87d3fe8eb78": { - "address": "0x78f225869c08d478c34e5f645d07a87d3fe8eb78", - "symbol": "DEFI+L", - "decimals": 18, - "name": "PieDAO DEFI Large Cap", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x78f225869c08d478c34e5f645d07a87d3fe8eb78.png", - "aggregators": [ - "CoinMarketCap", - "LiFi", - "Rubic", - "Rango", - "SushiSwap" - ], - "occurrences": 5 - }, - "0x9ceb84f92a0561fa3cc4132ab9c0b76a59787544": { - "address": "0x9ceb84f92a0561fa3cc4132ab9c0b76a59787544", - "symbol": "DOKI", - "decimals": 18, - "name": "Doki Doki Finance", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x9ceb84f92a0561fa3cc4132ab9c0b76a59787544.png", - "aggregators": [ - "CoinMarketCap", - "LiFi", - "TrustWallet", - "Socket", - "Rubic" - ], - "occurrences": 5 - }, - "0x1cbb83ebcd552d5ebf8131ef8c9cd9d9bab342bc": { - "address": "0x1cbb83ebcd552d5ebf8131ef8c9cd9d9bab342bc", - "symbol": "NFY", - "decimals": 18, - "name": "Non-Fungible Yearn", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x1cbb83ebcd552d5ebf8131ef8c9cd9d9bab342bc.png", - "aggregators": [ - "CoinMarketCap", - "1inch", - "TrustWallet", - "Rubic", - "Rango" - ], - "occurrences": 5 - }, - "0xb1e9157c2fdcc5a856c8da8b2d89b6c32b3c1229": { - "address": "0xb1e9157c2fdcc5a856c8da8b2d89b6c32b3c1229", - "symbol": "ZEFU", - "decimals": 18, - "name": "Zenfuse", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xb1e9157c2fdcc5a856c8da8b2d89b6c32b3c1229.png", - "aggregators": [ - "CoinMarketCap", - "LiFi", - "TrustWallet", - "Socket", - "Rubic" - ], - "occurrences": 5 - }, - "0xa8e7ad77c60ee6f30bac54e2e7c0617bd7b5a03e": { - "address": "0xa8e7ad77c60ee6f30bac54e2e7c0617bd7b5a03e", - "symbol": "ZLOT", - "decimals": 18, - "name": "zLot Finance", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xa8e7ad77c60ee6f30bac54e2e7c0617bd7b5a03e.png", - "aggregators": [ - "CoinMarketCap", - "LiFi", - "Rubic", - "Rango", - "SushiSwap" - ], - "occurrences": 5 - }, - "0xca3fe04c7ee111f0bbb02c328c699226acf9fd33": { - "address": "0xca3fe04c7ee111f0bbb02c328c699226acf9fd33", - "symbol": "SEEN", - "decimals": 18, - "name": "seen.haus", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xca3fe04c7ee111f0bbb02c328c699226acf9fd33.png", - "aggregators": [ - "CoinMarketCap", - "LiFi", - "Rubic", - "Rango", - "SushiSwap" - ], - "occurrences": 5 - }, - "0x72630b1e3b42874bf335020ba0249e3e9e47bafc": { - "address": "0x72630b1e3b42874bf335020ba0249e3e9e47bafc", - "symbol": "EPAN", - "decimals": 18, - "name": "Paypolitan Token", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x72630b1e3b42874bf335020ba0249e3e9e47bafc.png", - "aggregators": [ - "CoinMarketCap", - "TrustWallet", - "Socket", - "Rubic", - "Rango" - ], - "occurrences": 5 - }, - "0xec681f28f4561c2a9534799aa38e0d36a83cf478": { - "address": "0xec681f28f4561c2a9534799aa38e0d36a83cf478", - "symbol": "YVS", - "decimals": 18, - "name": "YVS.Finance", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xec681f28f4561c2a9534799aa38e0d36a83cf478.png", - "aggregators": ["CoinMarketCap", "1inch", "LiFi", "Rubic", "Rango"], - "occurrences": 5 - }, - "0xd90e69f67203ebe02c917b5128629e77b4cd92dc": { - "address": "0xd90e69f67203ebe02c917b5128629e77b4cd92dc", - "symbol": "ONC", - "decimals": 18, - "name": "One Cash", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xd90e69f67203ebe02c917b5128629e77b4cd92dc.png", - "aggregators": [ - "CoinMarketCap", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x9b02dd390a603add5c07f9fd9175b7dabe8d63b7": { - "address": "0x9b02dd390a603add5c07f9fd9175b7dabe8d63b7", - "symbol": "SPI", - "decimals": 18, - "name": "Shopping.io", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x9b02dd390a603add5c07f9fd9175b7dabe8d63b7.png", - "aggregators": [ - "CoinMarketCap", - "LiFi", - "TrustWallet", - "Socket", - "Rubic" - ], - "occurrences": 5 - }, - "0xad3e3fc59dff318beceaab7d00eb4f68b1ecf195": { - "address": "0xad3e3fc59dff318beceaab7d00eb4f68b1ecf195", - "symbol": "WCUSD", - "decimals": 18, - "name": "Wrapped Celo Dollar", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xad3e3fc59dff318beceaab7d00eb4f68b1ecf195.png", - "aggregators": [ - "CoinMarketCap", - "LiFi", - "Rubic", - "Rango", - "SushiSwap" - ], - "occurrences": 5 - }, - "0x6d52dfefb16bb9cdc78bfca09061e44574886626": { - "address": "0x6d52dfefb16bb9cdc78bfca09061e44574886626", - "symbol": "CPU", - "decimals": 18, - "name": "CPUcoin", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x6d52dfefb16bb9cdc78bfca09061e44574886626.png", - "aggregators": [ - "CoinMarketCap", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x3a8d5bc8a8948b68dfc0ce9c14ac4150e083518c": { - "address": "0x3a8d5bc8a8948b68dfc0ce9c14ac4150e083518c", - "symbol": "PARA", - "decimals": 18, - "name": "Paralink Network", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x3a8d5bc8a8948b68dfc0ce9c14ac4150e083518c.png", - "aggregators": [ - "CoinMarketCap", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0xe4f726adc8e89c6a6017f01eada77865db22da14": { - "address": "0xe4f726adc8e89c6a6017f01eada77865db22da14", - "symbol": "BCP", - "decimals": 18, - "name": "PieDAO Balance Crypto Pie", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xe4f726adc8e89c6a6017f01eada77865db22da14.png", - "aggregators": [ - "CoinMarketCap", - "LiFi", - "Rubic", - "Rango", - "SushiSwap" - ], - "occurrences": 5 - }, - "0x69d9905b2e5f6f5433212b7f3c954433f23c1572": { - "address": "0x69d9905b2e5f6f5433212b7f3c954433f23c1572", - "symbol": "OOKS", - "decimals": 18, - "name": "Onooks", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x69d9905b2e5f6f5433212b7f3c954433f23c1572.png", - "aggregators": [ - "CoinMarketCap", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0xf680429328caaacabee69b7a9fdb21a71419c063": { - "address": "0xf680429328caaacabee69b7a9fdb21a71419c063", - "symbol": "BFLY", - "decimals": 18, - "name": "Butterfly Protocol Governance Token", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xf680429328caaacabee69b7a9fdb21a71419c063.png", - "aggregators": [ - "CoinMarketCap", - "LiFi", - "Socket", - "Rubic", - "Rango" - ], - "occurrences": 5 - }, - "0xfa6de2697d59e88ed7fc4dfe5a33dac43565ea41": { - "address": "0xfa6de2697d59e88ed7fc4dfe5a33dac43565ea41", - "symbol": "DEFI5", - "decimals": 18, - "name": "DEFI Top 5 Tokens Index", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xfa6de2697d59e88ed7fc4dfe5a33dac43565ea41.png", - "aggregators": [ - "CoinMarketCap", - "LiFi", - "Socket", - "Rubic", - "Rango" - ], - "occurrences": 5 - }, - "0x831091da075665168e01898c6dac004a867f1e1b": { - "address": "0x831091da075665168e01898c6dac004a867f1e1b", - "symbol": "GFARM2", - "decimals": 18, - "name": "Gains Farm v2", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x831091da075665168e01898c6dac004a867f1e1b.png", - "aggregators": [ - "CoinMarketCap", - "LiFi", - "Rubic", - "Rango", - "SushiSwap" - ], - "occurrences": 5 - }, - "0x7f1f2d3dfa99678675ece1c243d3f7bc3746db5d": { - "address": "0x7f1f2d3dfa99678675ece1c243d3f7bc3746db5d", - "symbol": "TAP", - "decimals": 18, - "name": "TAP", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x7f1f2d3dfa99678675ece1c243d3f7bc3746db5d.png", - "aggregators": [ - "CoinMarketCap", - "LiFi", - "Socket", - "Rubic", - "Rango" - ], - "occurrences": 5 - }, - "0x2af72850c504ddd3c1876c66a914caee7ff8a46a": { - "address": "0x2af72850c504ddd3c1876c66a914caee7ff8a46a", - "symbol": "WHL", - "decimals": 18, - "name": "WhaleRoom", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x2af72850c504ddd3c1876c66a914caee7ff8a46a.png", - "aggregators": [ - "CoinMarketCap", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x657b83a0336561c8f64389a6f5ade675c04b0c3b": { - "address": "0x657b83a0336561c8f64389a6f5ade675c04b0c3b", - "symbol": "PCNT", - "decimals": 18, - "name": "Playcent", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x657b83a0336561c8f64389a6f5ade675c04b0c3b.png", - "aggregators": [ - "CoinMarketCap", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0xb20043f149817bff5322f1b928e89abfc65a9925": { - "address": "0xb20043f149817bff5322f1b928e89abfc65a9925", - "symbol": "EXRT", - "decimals": 8, - "name": "EXRT", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xb20043f149817bff5322f1b928e89abfc65a9925.png", - "aggregators": [ - "CoinMarketCap", - "1inch", - "Socket", - "Rubic", - "Rango" - ], - "occurrences": 5 - }, - "0xfa2562da1bba7b954f26c74725df51fb62646313": { - "address": "0xfa2562da1bba7b954f26c74725df51fb62646313", - "symbol": "ASSY", - "decimals": 18, - "name": "ASSY Index", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xfa2562da1bba7b954f26c74725df51fb62646313.png", - "aggregators": [ - "CoinMarketCap", - "LiFi", - "Rubic", - "Rango", - "SushiSwap" - ], - "occurrences": 5 - }, - "0xa42f266684ac2ad6ecb00df95b1c76efbb6f136c": { - "address": "0xa42f266684ac2ad6ecb00df95b1c76efbb6f136c", - "symbol": "CATE", - "decimals": 18, - "name": "Cash Tech", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xa42f266684ac2ad6ecb00df95b1c76efbb6f136c.png", - "aggregators": [ - "CoinMarketCap", - "1inch", - "Socket", - "Rubic", - "Rango" - ], - "occurrences": 5 - }, - "0xbed4ab0019ff361d83ddeb74883dac8a70f5ea1e": { - "address": "0xbed4ab0019ff361d83ddeb74883dac8a70f5ea1e", - "symbol": "MRCH", - "decimals": 18, - "name": "MerchDAO", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xbed4ab0019ff361d83ddeb74883dac8a70f5ea1e.png", - "aggregators": [ - "CoinMarketCap", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x0b6f3c17e1626a7cbfa4302ce4e3c45522d23a83": { - "address": "0x0b6f3c17e1626a7cbfa4302ce4e3c45522d23a83", - "symbol": "WAD", - "decimals": 18, - "name": "WardenSwap", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x0b6f3c17e1626a7cbfa4302ce4e3c45522d23a83.png", - "aggregators": [ - "CoinMarketCap", - "LiFi", - "Socket", - "Rubic", - "Rango" - ], - "occurrences": 5 - }, - "0x896e145568624a498c5a909187363ae947631503": { - "address": "0x896e145568624a498c5a909187363ae947631503", - "symbol": "WASABI", - "decimals": 18, - "name": "Wasabi", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x896e145568624a498c5a909187363ae947631503.png", - "aggregators": [ - "CoinMarketCap", - "LiFi", - "Rubic", - "Rango", - "SushiSwap" - ], - "occurrences": 5 - }, - "0x06677dc4fe12d3ba3c7ccfd0df8cd45e4d4095bf": { - "address": "0x06677dc4fe12d3ba3c7ccfd0df8cd45e4d4095bf", - "symbol": "WQT", - "decimals": 18, - "name": "Work Quest", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x06677dc4fe12d3ba3c7ccfd0df8cd45e4d4095bf.png", - "aggregators": [ - "CoinMarketCap", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x5eaa69b29f99c84fe5de8200340b4e9b4ab38eac": { - "address": "0x5eaa69b29f99c84fe5de8200340b4e9b4ab38eac", - "symbol": "RAZE", - "decimals": 18, - "name": "Raze Network", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x5eaa69b29f99c84fe5de8200340b4e9b4ab38eac.png", - "aggregators": [ - "CoinMarketCap", - "LiFi", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x944eee930933be5e23b690c8589021ec8619a301": { - "address": "0x944eee930933be5e23b690c8589021ec8619a301", - "symbol": "MUNCH", - "decimals": 9, - "name": "MUNCH Token", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x944eee930933be5e23b690c8589021ec8619a301.png", - "aggregators": [ - "CoinMarketCap", - "1inch", - "Socket", - "Rubic", - "Rango" - ], - "occurrences": 5 - }, - "0x1f8a626883d7724dbd59ef51cbd4bf1cf2016d13": { - "address": "0x1f8a626883d7724dbd59ef51cbd4bf1cf2016d13", - "symbol": "STAK", - "decimals": 18, - "name": "Jigstack", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x1f8a626883d7724dbd59ef51cbd4bf1cf2016d13.png", - "aggregators": [ - "CoinMarketCap", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0xd714d91a169127e11d8fab3665d72e8b7ef9dbe2": { - "address": "0xd714d91a169127e11d8fab3665d72e8b7ef9dbe2", - "symbol": "BLACK", - "decimals": 18, - "name": "BlackHole Protocol", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xd714d91a169127e11d8fab3665d72e8b7ef9dbe2.png", - "aggregators": [ - "CoinMarketCap", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x60eb57d085c59932d5faa6c6026268a4386927d0": { - "address": "0x60eb57d085c59932d5faa6c6026268a4386927d0", - "symbol": "LOCG", - "decimals": 18, - "name": "LOCG", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x60eb57d085c59932d5faa6c6026268a4386927d0.png", - "aggregators": [ - "CoinMarketCap", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x8848812bd31aeee33313c10a840ffc3169078c5b": { - "address": "0x8848812bd31aeee33313c10a840ffc3169078c5b", - "symbol": "CRFI", - "decimals": 18, - "name": "CrossFi", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x8848812bd31aeee33313c10a840ffc3169078c5b.png", - "aggregators": [ - "CoinMarketCap", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0xd6a5ab46ead26f49b03bbb1f9eb1ad5c1767974a": { - "address": "0xd6a5ab46ead26f49b03bbb1f9eb1ad5c1767974a", - "symbol": "EMON", - "decimals": 18, - "name": "Ethermon", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xd6a5ab46ead26f49b03bbb1f9eb1ad5c1767974a.png", - "aggregators": [ - "CoinMarketCap", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x852e5427c86a3b46dd25e5fe027bb15f53c4bcb8": { - "address": "0x852e5427c86a3b46dd25e5fe027bb15f53c4bcb8", - "symbol": "NIIFI", - "decimals": 15, - "name": "NiiFi", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x852e5427c86a3b46dd25e5fe027bb15f53c4bcb8.png", - "aggregators": [ - "CoinMarketCap", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x7645ddfeeceda57e41f92679c4acd83c56a81d14": { - "address": "0x7645ddfeeceda57e41f92679c4acd83c56a81d14", - "symbol": "FLUX", - "decimals": 18, - "name": "Flux Protocol", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x7645ddfeeceda57e41f92679c4acd83c56a81d14.png", - "aggregators": [ - "CoinMarketCap", - "LiFi", - "Socket", - "Rubic", - "Rango" - ], - "occurrences": 5 - }, - "0xd81b71cbb89b2800cdb000aa277dc1491dc923c3": { - "address": "0xd81b71cbb89b2800cdb000aa277dc1491dc923c3", - "symbol": "NMT", - "decimals": 18, - "name": "NFTMart Token", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xd81b71cbb89b2800cdb000aa277dc1491dc923c3.png", - "aggregators": [ - "CoinMarketCap", - "LiFi", - "Socket", - "Rubic", - "Rango" - ], - "occurrences": 5 - }, - "0x2620638eda99f9e7e902ea24a285456ee9438861": { - "address": "0x2620638eda99f9e7e902ea24a285456ee9438861", - "symbol": "CSM", - "decimals": 18, - "name": "Crust Shadow", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x2620638eda99f9e7e902ea24a285456ee9438861.png", - "aggregators": [ - "CoinMarketCap", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0xd6327ce1fb9d6020e8c2c0e124a1ec23dcab7536": { - "address": "0xd6327ce1fb9d6020e8c2c0e124a1ec23dcab7536", - "symbol": "CUMINU", - "decimals": 18, - "name": "Cuminu", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xd6327ce1fb9d6020e8c2c0e124a1ec23dcab7536.png", - "aggregators": [ - "CoinMarketCap", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0xbdbf245c690d54b67c6e610a28486a2c6de08be6": { - "address": "0xbdbf245c690d54b67c6e610a28486a2c6de08be6", - "symbol": "SUNDER", - "decimals": 18, - "name": "Sunder Goverance Token", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xbdbf245c690d54b67c6e610a28486a2c6de08be6.png", - "aggregators": [ - "CoinMarketCap", - "LiFi", - "Rubic", - "Rango", - "SushiSwap" - ], - "occurrences": 5 - }, - "0x923b83c26b3809d960ff80332ed00aa46d7ed375": { - "address": "0x923b83c26b3809d960ff80332ed00aa46d7ed375", - "symbol": "CTR", - "decimals": 18, - "name": "Creator Platform", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x923b83c26b3809d960ff80332ed00aa46d7ed375.png", - "aggregators": [ - "CoinMarketCap", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x5166e09628b696285e3a151e84fb977736a83575": { - "address": "0x5166e09628b696285e3a151e84fb977736a83575", - "symbol": "VOL", - "decimals": 18, - "name": "Volatility Protocol Token", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x5166e09628b696285e3a151e84fb977736a83575.png", - "aggregators": [ - "CoinMarketCap", - "Socket", - "Rubic", - "Rango", - "SushiSwap" - ], - "occurrences": 5 - }, - "0xbd3de9a069648c84d27d74d701c9fa3253098b15": { - "address": "0xbd3de9a069648c84d27d74d701c9fa3253098b15", - "symbol": "EQX", - "decimals": 18, - "name": "EQIFi", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xbd3de9a069648c84d27d74d701c9fa3253098b15.png", - "aggregators": [ - "CoinMarketCap", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x34f797e7190c131cf630524655a618b5bd8738e7": { - "address": "0x34f797e7190c131cf630524655a618b5bd8738e7", - "symbol": "BACON", - "decimals": 18, - "name": "BaconDAO", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x34f797e7190c131cf630524655a618b5bd8738e7.png", - "aggregators": [ - "CoinMarketCap", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x9a2af0abb12bee5369b180976be01e8c80d0e7b6": { - "address": "0x9a2af0abb12bee5369b180976be01e8c80d0e7b6", - "symbol": "EMPIRE", - "decimals": 9, - "name": "Empire", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x9a2af0abb12bee5369b180976be01e8c80d0e7b6.png", - "aggregators": [ - "CoinMarketCap", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x2e95cea14dd384429eb3c4331b776c4cfbb6fcd9": { - "address": "0x2e95cea14dd384429eb3c4331b776c4cfbb6fcd9", - "symbol": "THN", - "decimals": 18, - "name": "Throne", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x2e95cea14dd384429eb3c4331b776c4cfbb6fcd9.png", - "aggregators": [ - "CoinMarketCap", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x76417e660df3e5c90c0361674c192da152a806e4": { - "address": "0x76417e660df3e5c90c0361674c192da152a806e4", - "symbol": "ZUSD", - "decimals": 18, - "name": "Zerogoki USD", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x76417e660df3e5c90c0361674c192da152a806e4.png", - "aggregators": [ - "CoinMarketCap", - "1inch", - "Socket", - "Rubic", - "Rango" - ], - "occurrences": 5 - }, - "0x20a8cec5fffea65be7122bcab2ffe32ed4ebf03a": { - "address": "0x20a8cec5fffea65be7122bcab2ffe32ed4ebf03a", - "symbol": "DNXC", - "decimals": 18, - "name": "DinoX", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x20a8cec5fffea65be7122bcab2ffe32ed4ebf03a.png", - "aggregators": [ - "CoinMarketCap", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x8c6bf16c273636523c29db7db04396143770f6a0": { - "address": "0x8c6bf16c273636523c29db7db04396143770f6a0", - "symbol": "AAA", - "decimals": 18, - "name": "Moon Rabbit", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x8c6bf16c273636523c29db7db04396143770f6a0.png", - "aggregators": [ - "CoinMarketCap", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0xa2881f7f441267042f9778ffa0d4f834693426be": { - "address": "0xa2881f7f441267042f9778ffa0d4f834693426be", - "symbol": "HUSL", - "decimals": 18, - "name": "The HUSL", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xa2881f7f441267042f9778ffa0d4f834693426be.png", - "aggregators": [ - "CoinMarketCap", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0xd7dcd9b99787c619b4d57979521258d1a7267ad7": { - "address": "0xd7dcd9b99787c619b4d57979521258d1a7267ad7", - "symbol": "EVRY", - "decimals": 18, - "name": "Evrynet", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xd7dcd9b99787c619b4d57979521258d1a7267ad7.png", - "aggregators": [ - "CoinMarketCap", - "LiFi", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x6286a9e6f7e745a6d884561d88f94542d6715698": { - "address": "0x6286a9e6f7e745a6d884561d88f94542d6715698", - "symbol": "TECH", - "decimals": 18, - "name": "Cryptomeda", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x6286a9e6f7e745a6d884561d88f94542d6715698.png", - "aggregators": [ - "CoinMarketCap", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x97abee33cd075c58bfdd174e0885e08e8f03556f": { - "address": "0x97abee33cd075c58bfdd174e0885e08e8f03556f", - "symbol": "SENT", - "decimals": 18, - "name": "Sentiment", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x97abee33cd075c58bfdd174e0885e08e8f03556f.png", - "aggregators": [ - "CoinMarketCap", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x44e2dec86b9f0e0266e9aa66e10323a2bd69cf9a": { - "address": "0x44e2dec86b9f0e0266e9aa66e10323a2bd69cf9a", - "symbol": "ATTR", - "decimals": 18, - "name": "Attrace", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x44e2dec86b9f0e0266e9aa66e10323a2bd69cf9a.png", - "aggregators": ["Metamask", "LiFi", "Rubic", "Rango", "SushiSwap"], - "occurrences": 5 - }, - "0xcfa0885131f602d11d4da248d2c65a62063567a9": { - "address": "0xcfa0885131f602d11d4da248d2c65a62063567a9", - "symbol": "TORG", - "decimals": 18, - "name": "TORG", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xcfa0885131f602d11d4da248d2c65a62063567a9.png", - "aggregators": [ - "CoinMarketCap", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x464fdb8affc9bac185a7393fd4298137866dcfb8": { - "address": "0x464fdb8affc9bac185a7393fd4298137866dcfb8", - "symbol": "REALM", - "decimals": 18, - "name": "Realm", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x464fdb8affc9bac185a7393fd4298137866dcfb8.png", - "aggregators": [ - "CoinMarketCap", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x3079f61704e9efa2bcf1db412f735d8d4cfa26f4": { - "address": "0x3079f61704e9efa2bcf1db412f735d8d4cfa26f4", - "symbol": "HAPPY", - "decimals": 18, - "name": "HappyFans", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x3079f61704e9efa2bcf1db412f735d8d4cfa26f4.png", - "aggregators": [ - "CoinMarketCap", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x0ff5a8451a839f5f0bb3562689d9a44089738d11": { - "address": "0x0ff5a8451a839f5f0bb3562689d9a44089738d11", - "symbol": "RDPX", - "decimals": 18, - "name": "Dopex Rebate", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x0ff5a8451a839f5f0bb3562689d9a44089738d11.png", - "aggregators": [ - "CoinMarketCap", - "LiFi", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x9b17baadf0f21f03e35249e0e59723f34994f806": { - "address": "0x9b17baadf0f21f03e35249e0e59723f34994f806", - "symbol": "GEM", - "decimals": 18, - "name": "NFTmall", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x9b17baadf0f21f03e35249e0e59723f34994f806.png", - "aggregators": [ - "CoinMarketCap", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x8e0fe2947752be0d5acf73aae77362daf79cb379": { - "address": "0x8e0fe2947752be0d5acf73aae77362daf79cb379", - "symbol": "NFTD", - "decimals": 18, - "name": "NFTrade", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x8e0fe2947752be0d5acf73aae77362daf79cb379.png", - "aggregators": [ - "CoinMarketCap", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x7ae0d42f23c33338de15bfa89c7405c068d9dc0a": { - "address": "0x7ae0d42f23c33338de15bfa89c7405c068d9dc0a", - "symbol": "VERSE", - "decimals": 18, - "name": "Shibaverse", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x7ae0d42f23c33338de15bfa89c7405c068d9dc0a.png", - "aggregators": [ - "CoinMarketCap", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0xd779eea9936b4e323cddff2529eb6f13d0a4d66e": { - "address": "0xd779eea9936b4e323cddff2529eb6f13d0a4d66e", - "symbol": "ENTR", - "decimals": 18, - "name": "ENTER Governance Token", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xd779eea9936b4e323cddff2529eb6f13d0a4d66e.png", - "aggregators": [ - "CoinMarketCap", - "Rubic", - "Rango", - "Sonarwatch", - "SushiSwap" - ], - "occurrences": 5 - }, - "0xdd2a36ae937bc134ea694d77fc7e2e36f5d86de0": { - "address": "0xdd2a36ae937bc134ea694d77fc7e2e36f5d86de0", - "symbol": "WELD", - "decimals": 18, - "name": "WELD", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xdd2a36ae937bc134ea694d77fc7e2e36f5d86de0.png", - "aggregators": [ - "CoinMarketCap", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x9c4a4204b79dd291d6b6571c5be8bbcd0622f050": { - "address": "0x9c4a4204b79dd291d6b6571c5be8bbcd0622f050", - "symbol": "TCR", - "decimals": 18, - "name": "Tracer", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x9c4a4204b79dd291d6b6571c5be8bbcd0622f050.png", - "aggregators": [ - "CoinMarketCap", - "LiFi", - "Rubic", - "Rango", - "SushiSwap" - ], - "occurrences": 5 - }, - "0x6cacdb97e3fc8136805a9e7c342d866ab77d0957": { - "address": "0x6cacdb97e3fc8136805a9e7c342d866ab77d0957", - "symbol": "SWPR", - "decimals": 18, - "name": "Swapr", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x6cacdb97e3fc8136805a9e7c342d866ab77d0957.png", - "aggregators": [ - "CoinMarketCap", - "LiFi", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0xcdb9d30a3ba48cdfcb0ecbe19317e6cf783672f1": { - "address": "0xcdb9d30a3ba48cdfcb0ecbe19317e6cf783672f1", - "symbol": "MNDCC", - "decimals": 18, - "name": "Mondo Community Coin", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xcdb9d30a3ba48cdfcb0ecbe19317e6cf783672f1.png", - "aggregators": [ - "CoinMarketCap", - "LiFi", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0xe1d7c7a4596b038ced2a84bf65b8647271c53208": { - "address": "0xe1d7c7a4596b038ced2a84bf65b8647271c53208", - "symbol": "NFTY", - "decimals": 18, - "name": "NFTY", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xe1d7c7a4596b038ced2a84bf65b8647271c53208.png", - "aggregators": [ - "CoinMarketCap", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x61107a409fffe1965126aa456af679719695c69c": { - "address": "0x61107a409fffe1965126aa456af679719695c69c", - "symbol": "UMI", - "decimals": 18, - "name": "Umi Digital", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x61107a409fffe1965126aa456af679719695c69c.png", - "aggregators": [ - "CoinMarketCap", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0xaee433adebe0fbb88daa47ef0c1a513caa52ef02": { - "address": "0xaee433adebe0fbb88daa47ef0c1a513caa52ef02", - "symbol": "TOON", - "decimals": 18, - "name": "Pontoon", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xaee433adebe0fbb88daa47ef0c1a513caa52ef02.png", - "aggregators": [ - "CoinMarketCap", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x8254e26e453eb5abd29b3c37ac9e8da32e5d3299": { - "address": "0x8254e26e453eb5abd29b3c37ac9e8da32e5d3299", - "symbol": "RBX", - "decimals": 18, - "name": "RBX", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x8254e26e453eb5abd29b3c37ac9e8da32e5d3299.png", - "aggregators": [ - "CoinMarketCap", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0xfb40e79e56cc7d406707b66c4fd175e07eb2ae3c": { - "address": "0xfb40e79e56cc7d406707b66c4fd175e07eb2ae3c", - "symbol": "ROTTS", - "decimals": 9, - "name": "ROTTSCHILD.com", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xfb40e79e56cc7d406707b66c4fd175e07eb2ae3c.png", - "aggregators": [ - "CoinMarketCap", - "1inch", - "Socket", - "Rubic", - "Rango" - ], - "occurrences": 5 - }, - "0x37fc4b48ce93469dbea9918468993c735049642a": { - "address": "0x37fc4b48ce93469dbea9918468993c735049642a", - "symbol": "CBX", - "decimals": 18, - "name": "CropBytes", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x37fc4b48ce93469dbea9918468993c735049642a.png", - "aggregators": [ - "CoinMarketCap", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0xc6e145421fd494b26dcf2bfeb1b02b7c5721978f": { - "address": "0xc6e145421fd494b26dcf2bfeb1b02b7c5721978f", - "symbol": "CRPX", - "decimals": 18, - "name": "Crypto Perx", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xc6e145421fd494b26dcf2bfeb1b02b7c5721978f.png", - "aggregators": [ - "CoinMarketCap", - "Rubic", - "Rango", - "Sonarwatch", - "SushiSwap" - ], - "occurrences": 5 - }, - "0x005d1123878fc55fbd56b54c73963b234a64af3c": { - "address": "0x005d1123878fc55fbd56b54c73963b234a64af3c", - "symbol": "KIBA", - "decimals": 18, - "name": "Kiba Inu", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x005d1123878fc55fbd56b54c73963b234a64af3c.png", - "aggregators": [ - "CoinMarketCap", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x916c5de09cf63f6602d1e1793fb41f6437814a62": { - "address": "0x916c5de09cf63f6602d1e1793fb41f6437814a62", - "symbol": "JACY", - "decimals": 9, - "name": "Jacy", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x916c5de09cf63f6602d1e1793fb41f6437814a62.png", - "aggregators": [ - "CoinMarketCap", - "1inch", - "Socket", - "Rubic", - "Rango" - ], - "occurrences": 5 - }, - "0x64a77277e37d44957fe5815d6ff442ab8b16cc29": { - "address": "0x64a77277e37d44957fe5815d6ff442ab8b16cc29", - "symbol": "DAWGS", - "decimals": 9, - "name": "SpaceDawgs", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x64a77277e37d44957fe5815d6ff442ab8b16cc29.png", - "aggregators": [ - "CoinMarketCap", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0xd0cd466b34a24fcb2f87676278af2005ca8a78c4": { - "address": "0xd0cd466b34a24fcb2f87676278af2005ca8a78c4", - "symbol": "POP", - "decimals": 18, - "name": "Popcorn", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xd0cd466b34a24fcb2f87676278af2005ca8a78c4.png", - "aggregators": [ - "CoinMarketCap", - "LiFi", - "Socket", - "Rubic", - "Rango" - ], - "occurrences": 5 - }, - "0x92868a5255c628da08f550a858a802f5351c5223": { - "address": "0x92868a5255c628da08f550a858a802f5351c5223", - "symbol": "BRIDGE", - "decimals": 18, - "name": "Cross Chain Bridge", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x92868a5255c628da08f550a858a802f5351c5223.png", - "aggregators": [ - "CoinMarketCap", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0xf1dc500fde233a4055e25e5bbf516372bc4f6871": { - "address": "0xf1dc500fde233a4055e25e5bbf516372bc4f6871", - "symbol": "SDL", - "decimals": 18, - "name": "Saddle DAO", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xf1dc500fde233a4055e25e5bbf516372bc4f6871.png", - "aggregators": [ - "CoinMarketCap", - "Socket", - "Rubic", - "Rango", - "SushiSwap" - ], - "occurrences": 5 - }, - "0x7118057ff0f4fd0994fb9d2d94de8231d5cca79e": { - "address": "0x7118057ff0f4fd0994fb9d2d94de8231d5cca79e", - "symbol": "SOURCE", - "decimals": 18, - "name": "Source", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x7118057ff0f4fd0994fb9d2d94de8231d5cca79e.png", - "aggregators": [ - "CoinMarketCap", - "Rubic", - "Rango", - "Sonarwatch", - "SushiSwap" - ], - "occurrences": 5 - }, - "0xb1a88c33091490218965787919fcc9862c1798ee": { - "address": "0xb1a88c33091490218965787919fcc9862c1798ee", - "symbol": "SHIBLI", - "decimals": 9, - "name": "Studio Shibli", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xb1a88c33091490218965787919fcc9862c1798ee.png", - "aggregators": [ - "CoinMarketCap", - "1inch", - "Socket", - "Rubic", - "Rango" - ], - "occurrences": 5 - }, - "0x5ba19d656b65f1684cfea4af428c23b9f3628f97": { - "address": "0x5ba19d656b65f1684cfea4af428c23b9f3628f97", - "symbol": "AAG", - "decimals": 18, - "name": "AAG", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x5ba19d656b65f1684cfea4af428c23b9f3628f97.png", - "aggregators": [ - "CoinMarketCap", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x25b24b3c47918b7962b3e49c4f468367f73cc0e0": { - "address": "0x25b24b3c47918b7962b3e49c4f468367f73cc0e0", - "symbol": "AXL", - "decimals": 18, - "name": "AXL INU", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x25b24b3c47918b7962b3e49c4f468367f73cc0e0.png", - "aggregators": [ - "CoinMarketCap", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x4daeb4a06f70f4b1a5c329115731fe4b89c0b227": { - "address": "0x4daeb4a06f70f4b1a5c329115731fe4b89c0b227", - "symbol": "QUA", - "decimals": 18, - "name": "Quasacoin", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x4daeb4a06f70f4b1a5c329115731fe4b89c0b227.png", - "aggregators": [ - "CoinMarketCap", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x612e1726435fe38dd49a0b35b4065b56f49c8f11": { - "address": "0x612e1726435fe38dd49a0b35b4065b56f49c8f11", - "symbol": "CCV2", - "decimals": 18, - "name": "CryptoCart V2", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x612e1726435fe38dd49a0b35b4065b56f49c8f11.png", - "aggregators": [ - "CoinMarketCap", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0xbd100d061e120b2c67a24453cf6368e63f1be056": { - "address": "0xbd100d061e120b2c67a24453cf6368e63f1be056", - "symbol": "IDYP", - "decimals": 18, - "name": "iDypius", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xbd100d061e120b2c67a24453cf6368e63f1be056.png", - "aggregators": [ - "CoinMarketCap", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0xb49fa25978abf9a248b8212ab4b87277682301c0": { - "address": "0xb49fa25978abf9a248b8212ab4b87277682301c0", - "symbol": "SOFI", - "decimals": 18, - "name": "RAI Finance", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xb49fa25978abf9a248b8212ab4b87277682301c0.png", - "aggregators": [ - "CoinMarketCap", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0xe7eaec9bca79d537539c00c58ae93117fb7280b9": { - "address": "0xe7eaec9bca79d537539c00c58ae93117fb7280b9", - "symbol": "DOGEP", - "decimals": 18, - "name": "Doge Protocol", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xe7eaec9bca79d537539c00c58ae93117fb7280b9.png", - "aggregators": [ - "CoinMarketCap", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x47110d43175f7f2c2425e7d15792acc5817eb44f": { - "address": "0x47110d43175f7f2c2425e7d15792acc5817eb44f", - "symbol": "GMI", - "decimals": 18, - "name": "Bankless DeFi Innovation Index", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x47110d43175f7f2c2425e7d15792acc5817eb44f.png", - "aggregators": [ - "CoinMarketCap", - "LiFi", - "Rubic", - "Rango", - "SushiSwap" - ], - "occurrences": 5 - }, - "0xd7d8f3b8bc8bc48d3acc37879eaba7b85889fa52": { - "address": "0xd7d8f3b8bc8bc48d3acc37879eaba7b85889fa52", - "symbol": "CLH", - "decimals": 18, - "name": "ClearDAO", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xd7d8f3b8bc8bc48d3acc37879eaba7b85889fa52.png", - "aggregators": [ - "CoinMarketCap", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x1e9d0bb190ac34492aa11b80d28c1c86487a341f": { - "address": "0x1e9d0bb190ac34492aa11b80d28c1c86487a341f", - "symbol": "NEKO", - "decimals": 18, - "name": "The Neko", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x1e9d0bb190ac34492aa11b80d28c1c86487a341f.png", - "aggregators": [ - "CoinMarketCap", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x5027fc44a7ba114b8f494b1e4970900c6652fedf": { - "address": "0x5027fc44a7ba114b8f494b1e4970900c6652fedf", - "symbol": "XAR", - "decimals": 18, - "name": "Arcana Network", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x5027fc44a7ba114b8f494b1e4970900c6652fedf.png", - "aggregators": [ - "CoinMarketCap", - "LiFi", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x9f7fc686cfd64aa5ae15b351d03071e91533094b": { - "address": "0x9f7fc686cfd64aa5ae15b351d03071e91533094b", - "symbol": "TRACE", - "decimals": 18, - "name": "Trace Network Labs", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x9f7fc686cfd64aa5ae15b351d03071e91533094b.png", - "aggregators": [ - "CoinMarketCap", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x6069c9223e8a5da1ec49ac5525d4bb757af72cd8": { - "address": "0x6069c9223e8a5da1ec49ac5525d4bb757af72cd8", - "symbol": "MUSK", - "decimals": 18, - "name": "MUSK Gold", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x6069c9223e8a5da1ec49ac5525d4bb757af72cd8.png", - "aggregators": [ - "CoinMarketCap", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x8162b5bc8f651007cc38a09f557bab2bf4cefb5b": { - "address": "0x8162b5bc8f651007cc38a09f557bab2bf4cefb5b", - "symbol": "STRM", - "decimals": 18, - "name": "Streamer Inu", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x8162b5bc8f651007cc38a09f557bab2bf4cefb5b.png", - "aggregators": [ - "CoinMarketCap", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x40803cea2b2a32bda1be61d3604af6a814e70976": { - "address": "0x40803cea2b2a32bda1be61d3604af6a814e70976", - "symbol": "SPOOL", - "decimals": 18, - "name": "Spool", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x40803cea2b2a32bda1be61d3604af6a814e70976.png", - "aggregators": [ - "CoinMarketCap", - "LiFi", - "Socket", - "Rubic", - "Rango" - ], - "occurrences": 5 - }, - "0x3c917054e03485808137eb306eafa8da0ab695cd": { - "address": "0x3c917054e03485808137eb306eafa8da0ab695cd", - "symbol": "ORB", - "decimals": 18, - "name": "Deroute AI", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x3c917054e03485808137eb306eafa8da0ab695cd.png", - "aggregators": [ - "CoinMarketCap", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x6988a804c74fd04f37da1ea4781cea68c9c00f86": { - "address": "0x6988a804c74fd04f37da1ea4781cea68c9c00f86", - "symbol": "TRIBL", - "decimals": 18, - "name": "Tribal Token", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x6988a804c74fd04f37da1ea4781cea68c9c00f86.png", - "aggregators": [ - "CoinMarketCap", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0xd16fd95d949f996e3808eeea0e3881c59e76ef1e": { - "address": "0xd16fd95d949f996e3808eeea0e3881c59e76ef1e", - "symbol": "PARA", - "decimals": 18, - "name": "Para", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xd16fd95d949f996e3808eeea0e3881c59e76ef1e.png", - "aggregators": [ - "CoinMarketCap", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x0a44a7ccea34a7563ba1d45a5f757d0b02281124": { - "address": "0x0a44a7ccea34a7563ba1d45a5f757d0b02281124", - "symbol": "BBL", - "decimals": 18, - "name": "BlockBlend", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x0a44a7ccea34a7563ba1d45a5f757d0b02281124.png", - "aggregators": [ - "CoinMarketCap", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x333a4823466879eef910a04d473505da62142069": { - "address": "0x333a4823466879eef910a04d473505da62142069", - "symbol": "NATION", - "decimals": 18, - "name": "Nation3", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x333a4823466879eef910a04d473505da62142069.png", - "aggregators": [ - "CoinMarketCap", - "LiFi", - "Socket", - "Rubic", - "Rango" - ], - "occurrences": 5 - }, - "0x0d86eb9f43c57f6ff3bc9e23d8f9d82503f0e84b": { - "address": "0x0d86eb9f43c57f6ff3bc9e23d8f9d82503f0e84b", - "symbol": "MAXI", - "decimals": 8, - "name": "Maximus DAO", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x0d86eb9f43c57f6ff3bc9e23d8f9d82503f0e84b.png", - "aggregators": [ - "CoinMarketCap", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x207e14389183a94343942de7afbc607f57460618": { - "address": "0x207e14389183a94343942de7afbc607f57460618", - "symbol": "THOL", - "decimals": 18, - "name": "AngelBlock", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x207e14389183a94343942de7afbc607f57460618.png", - "aggregators": [ - "CoinMarketCap", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0xb81408a1cc2f4be70a6a3178d351ca95a77c5a06": { - "address": "0xb81408a1cc2f4be70a6a3178d351ca95a77c5a06", - "symbol": "XODEX", - "decimals": 18, - "name": "XODEX", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xb81408a1cc2f4be70a6a3178d351ca95a77c5a06.png", - "aggregators": [ - "CoinMarketCap", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x632806bf5c8f062932dd121244c9fbe7becb8b48": { - "address": "0x632806bf5c8f062932dd121244c9fbe7becb8b48", - "symbol": "PDI", - "decimals": 18, - "name": "Phuture DeFi Index", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x632806bf5c8f062932dd121244c9fbe7becb8b48.png", - "aggregators": [ - "CoinMarketCap", - "LiFi", - "Socket", - "Rubic", - "Bancor" - ], - "occurrences": 5 - }, - "0xc4c75f2a0cb1a9acc33929512dc9733ea1fd6fde": { - "address": "0xc4c75f2a0cb1a9acc33929512dc9733ea1fd6fde", - "symbol": "MSI", - "decimals": 18, - "name": "Martin Shkreli Inu", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xc4c75f2a0cb1a9acc33929512dc9733ea1fd6fde.png", - "aggregators": [ - "CoinMarketCap", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x57b59f981730c6257df57cf6f0d98283749a9eeb": { - "address": "0x57b59f981730c6257df57cf6f0d98283749a9eeb", - "symbol": "BUILD", - "decimals": 18, - "name": "BUILD", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x57b59f981730c6257df57cf6f0d98283749a9eeb.png", - "aggregators": [ - "CoinMarketCap", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0xe8e8486228753e01dbc222da262aa706bd67e601": { - "address": "0xe8e8486228753e01dbc222da262aa706bd67e601", - "symbol": "WEB3", - "decimals": 18, - "name": "Arch Ethereum Web3", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xe8e8486228753e01dbc222da262aa706bd67e601.png", - "aggregators": [ - "CoinMarketCap", - "LiFi", - "Socket", - "Rubic", - "Rango" - ], - "occurrences": 5 - }, - "0x205ed31c867bf715e4182137af95afe9177cd8e7": { - "address": "0x205ed31c867bf715e4182137af95afe9177cd8e7", - "symbol": "DEFY", - "decimals": 18, - "name": "DEFY", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x205ed31c867bf715e4182137af95afe9177cd8e7.png", - "aggregators": [ - "CoinMarketCap", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x992d339532a9c42f1b0e59a57e95f38da38c66f6": { - "address": "0x992d339532a9c42f1b0e59a57e95f38da38c66f6", - "symbol": "SOUL", - "decimals": 18, - "name": "Soulsaver", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x992d339532a9c42f1b0e59a57e95f38da38c66f6.png", - "aggregators": [ - "CoinMarketCap", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x8ee325ae3e54e83956ef2d5952d3c8bc1fa6ec27": { - "address": "0x8ee325ae3e54e83956ef2d5952d3c8bc1fa6ec27", - "symbol": "TYRANT", - "decimals": 9, - "name": "Fable Of The Dragon", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x8ee325ae3e54e83956ef2d5952d3c8bc1fa6ec27.png", - "aggregators": [ - "CoinMarketCap", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x259ce0cb3581995d40cbb03fd4badeaaba1edaff": { - "address": "0x259ce0cb3581995d40cbb03fd4badeaaba1edaff", - "symbol": "SXS", - "decimals": 18, - "name": "SphereSXS", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x259ce0cb3581995d40cbb03fd4badeaaba1edaff.png", - "aggregators": [ - "CoinMarketCap", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0xd3cc3b3e226cf187181c57f8bcc2fa84250df651": { - "address": "0xd3cc3b3e226cf187181c57f8bcc2fa84250df651", - "symbol": "UPLOAD", - "decimals": 18, - "name": "UPLOAD", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xd3cc3b3e226cf187181c57f8bcc2fa84250df651.png", - "aggregators": [ - "CoinMarketCap", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0xda4dd9586d27202a338843dd6b9824d267006783": { - "address": "0xda4dd9586d27202a338843dd6b9824d267006783", - "symbol": "ECT", - "decimals": 9, - "name": "Echain Network", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xda4dd9586d27202a338843dd6b9824d267006783.png", - "aggregators": [ - "CoinMarketCap", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0xcccd1ba9f7acd6117834e0d28f25645decb1736a": { - "address": "0xcccd1ba9f7acd6117834e0d28f25645decb1736a", - "symbol": "ECOX", - "decimals": 18, - "name": "ECOx", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xcccd1ba9f7acd6117834e0d28f25645decb1736a.png", - "aggregators": [ - "CoinMarketCap", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x149d8290f653deb8e34c037d239d3d8eee9de5ad": { - "address": "0x149d8290f653deb8e34c037d239d3d8eee9de5ad", - "symbol": "KING", - "decimals": 18, - "name": "Kingdomverse", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x149d8290f653deb8e34c037d239d3d8eee9de5ad.png", - "aggregators": [ - "CoinMarketCap", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x7e77dcb127f99ece88230a64db8d595f31f1b068": { - "address": "0x7e77dcb127f99ece88230a64db8d595f31f1b068", - "symbol": "SILV2", - "decimals": 18, - "name": "Escrowed Illuvium 2", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x7e77dcb127f99ece88230a64db8d595f31f1b068.png", - "aggregators": [ - "CoinMarketCap", - "Rubic", - "Squid", - "Sonarwatch", - "SushiSwap" - ], - "occurrences": 5 - }, - "0x73c69d24ad28e2d43d03cbf35f79fe26ebde1011": { - "address": "0x73c69d24ad28e2d43d03cbf35f79fe26ebde1011", - "symbol": "ARCH", - "decimals": 18, - "name": "Archimedes Finance", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x73c69d24ad28e2d43d03cbf35f79fe26ebde1011.png", - "aggregators": [ - "CoinMarketCap", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0xbe00734799a67a62af2819825580318ac1b1e4ec": { - "address": "0xbe00734799a67a62af2819825580318ac1b1e4ec", - "symbol": "ORD", - "decimals": 18, - "name": "ordinex", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xbe00734799a67a62af2819825580318ac1b1e4ec.png", - "aggregators": [ - "CoinMarketCap", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x0d8ca4b20b115d4da5c13dc45dd582a5de3e78bf": { - "address": "0x0d8ca4b20b115d4da5c13dc45dd582a5de3e78bf", - "symbol": "GAI", - "decimals": 18, - "name": "Generaitiv", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x0d8ca4b20b115d4da5c13dc45dd582a5de3e78bf.png", - "aggregators": [ - "CoinMarketCap", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x17837004ea685690b32dbead02a274ec4333a26a": { - "address": "0x17837004ea685690b32dbead02a274ec4333a26a", - "symbol": "BEAR", - "decimals": 18, - "name": "Bear Inu", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x17837004ea685690b32dbead02a274ec4333a26a.png", - "aggregators": [ - "CoinMarketCap", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0xe632ea2ef2cfd8fc4a2731c76f99078aef6a4b31": { - "address": "0xe632ea2ef2cfd8fc4a2731c76f99078aef6a4b31", - "symbol": "THX", - "decimals": 18, - "name": "THX Network", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xe632ea2ef2cfd8fc4a2731c76f99078aef6a4b31.png", - "aggregators": [ - "CoinMarketCap", - "LiFi", - "Socket", - "Rubic", - "Rango" - ], - "occurrences": 5 - }, - "0x2c5bc2ba3614fd27fcc7022ea71d9172e2632c16": { - "address": "0x2c5bc2ba3614fd27fcc7022ea71d9172e2632c16", - "symbol": "SOV", - "decimals": 18, - "name": "Shib Original Vision", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x2c5bc2ba3614fd27fcc7022ea71d9172e2632c16.png", - "aggregators": [ - "CoinMarketCap", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0xfca89d55a768375ab7ca04485a35a964bea828dd": { - "address": "0xfca89d55a768375ab7ca04485a35a964bea828dd", - "symbol": "DELREY", - "decimals": 18, - "name": "Delrey Inu", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xfca89d55a768375ab7ca04485a35a964bea828dd.png", - "aggregators": [ - "CoinMarketCap", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x5f18ea482ad5cc6bc65803817c99f477043dce85": { - "address": "0x5f18ea482ad5cc6bc65803817c99f477043dce85", - "symbol": "AGI", - "decimals": 18, - "name": "Agility", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x5f18ea482ad5cc6bc65803817c99f477043dce85.png", - "aggregators": [ - "CoinMarketCap", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x3d9a4d8ab4f5bd1d5d08ae3a95e8ed8bb4d7e3b9": { - "address": "0x3d9a4d8ab4f5bd1d5d08ae3a95e8ed8bb4d7e3b9", - "symbol": "STONKS", - "decimals": 18, - "name": "STONKSDAO", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x3d9a4d8ab4f5bd1d5d08ae3a95e8ed8bb4d7e3b9.png", - "aggregators": [ - "CoinMarketCap", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x7690202e2c2297bcd03664e31116d1dffe7e3b73": { - "address": "0x7690202e2c2297bcd03664e31116d1dffe7e3b73", - "symbol": "BOXETH", - "decimals": 18, - "name": "Cat in a Box Ether", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x7690202e2c2297bcd03664e31116d1dffe7e3b73.png", - "aggregators": [ - "CoinMarketCap", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0xab306326bc72c2335bd08f42cbec383691ef8446": { - "address": "0xab306326bc72c2335bd08f42cbec383691ef8446", - "symbol": "PPIZZA", - "decimals": 18, - "name": "PPizza", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xab306326bc72c2335bd08f42cbec383691ef8446.png", - "aggregators": [ - "CoinMarketCap", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x878fcc2bdcccff8c56812607b9a58f29b274c4f0": { - "address": "0x878fcc2bdcccff8c56812607b9a58f29b274c4f0", - "symbol": "DERP", - "decimals": 18, - "name": "Derp Coin", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x878fcc2bdcccff8c56812607b9a58f29b274c4f0.png", - "aggregators": [ - "CoinMarketCap", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x0d248ce39e26fb00f911fb1e7a45a00d8c94341c": { - "address": "0x0d248ce39e26fb00f911fb1e7a45a00d8c94341c", - "symbol": "BUTTER", - "decimals": 18, - "name": "Butter", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x0d248ce39e26fb00f911fb1e7a45a00d8c94341c.png", - "aggregators": [ - "CoinMarketCap", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0xc57f1d079c862b70aa12faab19293f827187aaf6": { - "address": "0xc57f1d079c862b70aa12faab19293f827187aaf6", - "symbol": "GLG", - "decimals": 18, - "name": "Gilgeous", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xc57f1d079c862b70aa12faab19293f827187aaf6.png", - "aggregators": [ - "CoinMarketCap", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x9dcd367e2afa8d6e5d6cf0306094e3eb7bbaaf4d": { - "address": "0x9dcd367e2afa8d6e5d6cf0306094e3eb7bbaaf4d", - "symbol": "BROS", - "decimals": 18, - "name": "Crypto Bros", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x9dcd367e2afa8d6e5d6cf0306094e3eb7bbaaf4d.png", - "aggregators": [ - "CoinMarketCap", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x77571a64342667f7818520ef004b2b91f47a266b": { - "address": "0x77571a64342667f7818520ef004b2b91f47a266b", - "symbol": "SNM", - "decimals": 18, - "name": "SnailMoon", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x77571a64342667f7818520ef004b2b91f47a266b.png", - "aggregators": [ - "CoinMarketCap", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0xffd822149fa6749176c7a1424e71a417f26189c8": { - "address": "0xffd822149fa6749176c7a1424e71a417f26189c8", - "symbol": "THING", - "decimals": 18, - "name": "Nothing Token", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xffd822149fa6749176c7a1424e71a417f26189c8.png", - "aggregators": [ - "CoinMarketCap", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x049e9f5369358786a1ce6483d668d062cfe547ec": { - "address": "0x049e9f5369358786a1ce6483d668d062cfe547ec", - "symbol": "CHECKS", - "decimals": 18, - "name": "Checks Token", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x049e9f5369358786a1ce6483d668d062cfe547ec.png", - "aggregators": [ - "CoinMarketCap", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x4743a7a193cdf202035e9bc6830a07f1607630c4": { - "address": "0x4743a7a193cdf202035e9bc6830a07f1607630c4", - "symbol": "GUY", - "decimals": 18, - "name": "Family Guy", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x4743a7a193cdf202035e9bc6830a07f1607630c4.png", - "aggregators": [ - "CoinMarketCap", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x5dcd6272c3cbb250823f0b7e6c618bce11b21f90": { - "address": "0x5dcd6272c3cbb250823f0b7e6c618bce11b21f90", - "symbol": "PEAR", - "decimals": 18, - "name": "Pear Swap", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x5dcd6272c3cbb250823f0b7e6c618bce11b21f90.png", - "aggregators": [ - "CoinMarketCap", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0xcba78d126f0b1feda0c538bcaf4c852a7a171099": { - "address": "0xcba78d126f0b1feda0c538bcaf4c852a7a171099", - "symbol": "MOE", - "decimals": 18, - "name": "MOE", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xcba78d126f0b1feda0c538bcaf4c852a7a171099.png", - "aggregators": [ - "CoinMarketCap", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x70881d5c8a5950ceedf1f1b4b5d4105718642548": { - "address": "0x70881d5c8a5950ceedf1f1b4b5d4105718642548", - "symbol": "BAG", - "decimals": 18, - "name": "Bagholder", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x70881d5c8a5950ceedf1f1b4b5d4105718642548.png", - "aggregators": [ - "CoinMarketCap", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x551d0501cd5df92663c3d12c3201c9d70ba79998": { - "address": "0x551d0501cd5df92663c3d12c3201c9d70ba79998", - "symbol": "YOBASE", - "decimals": 18, - "name": "All Your Base", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x551d0501cd5df92663c3d12c3201c9d70ba79998.png", - "aggregators": [ - "CoinMarketCap", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x2ecba91da63c29ea80fbe7b52632ca2d1f8e5be0": { - "address": "0x2ecba91da63c29ea80fbe7b52632ca2d1f8e5be0", - "symbol": "FERC", - "decimals": 18, - "name": "FairERC20", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x2ecba91da63c29ea80fbe7b52632ca2d1f8e5be0.png", - "aggregators": [ - "CoinMarketCap", - "LiFi", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x52284158e02425290f6b627aeb5fff65edf058ad": { - "address": "0x52284158e02425290f6b627aeb5fff65edf058ad", - "symbol": "FMB", - "decimals": 18, - "name": "FlappyMoonbird", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x52284158e02425290f6b627aeb5fff65edf058ad.png", - "aggregators": [ - "CoinMarketCap", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x8526be2379e853d5cf02f9823bb9690e1a6ff9e2": { - "address": "0x8526be2379e853d5cf02f9823bb9690e1a6ff9e2", - "symbol": "HABIBI", - "decimals": 18, - "name": "Habibi", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x8526be2379e853d5cf02f9823bb9690e1a6ff9e2.png", - "aggregators": [ - "CoinMarketCap", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0xf4a509313437dfc64e2efed14e2b607b1aed30c5": { - "address": "0xf4a509313437dfc64e2efed14e2b607b1aed30c5", - "symbol": "FETS", - "decimals": 18, - "name": "FE TECH", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xf4a509313437dfc64e2efed14e2b607b1aed30c5.png", - "aggregators": [ - "CoinMarketCap", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x7f4c5447af6a96d8eeaee1d932338cfc57890dbd": { - "address": "0x7f4c5447af6a96d8eeaee1d932338cfc57890dbd", - "symbol": "DAVE", - "decimals": 18, - "name": "Dave Coin", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x7f4c5447af6a96d8eeaee1d932338cfc57890dbd.png", - "aggregators": [ - "CoinMarketCap", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x113c65707c530502fef959308197353f6df97867": { - "address": "0x113c65707c530502fef959308197353f6df97867", - "symbol": "JOKER", - "decimals": 18, - "name": "The Joker Coin", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x113c65707c530502fef959308197353f6df97867.png", - "aggregators": [ - "CoinMarketCap", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0xaa247c0d81b83812e1abf8bab078e4540d87e3fb": { - "address": "0xaa247c0d81b83812e1abf8bab078e4540d87e3fb", - "symbol": "MSN", - "decimals": 18, - "name": "Meson Network", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xaa247c0d81b83812e1abf8bab078e4540d87e3fb.png", - "aggregators": [ - "CoinMarketCap", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x38f9bb135ea88033f4377b9ea0fb5cfb773fec2f": { - "address": "0x38f9bb135ea88033f4377b9ea0fb5cfb773fec2f", - "symbol": "ALPHA", - "decimals": 18, - "name": "Alpha Shards", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x38f9bb135ea88033f4377b9ea0fb5cfb773fec2f.png", - "aggregators": [ - "CoinMarketCap", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x4c5cb5d87709387f8821709f7a6664f00dcf0c93": { - "address": "0x4c5cb5d87709387f8821709f7a6664f00dcf0c93", - "symbol": "RAFT", - "decimals": 18, - "name": "Raft", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x4c5cb5d87709387f8821709f7a6664f00dcf0c93.png", - "aggregators": [ - "CoinMarketCap", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x23d894fb4a0f551f2f923fc85e09819d1f3894b2": { - "address": "0x23d894fb4a0f551f2f923fc85e09819d1f3894b2", - "symbol": "ITX", - "decimals": 18, - "name": "Intellix", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x23d894fb4a0f551f2f923fc85e09819d1f3894b2.png", - "aggregators": [ - "CoinMarketCap", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0xd0b3a986fff305854a7238a8e099cce1ced01a3d": { - "address": "0xd0b3a986fff305854a7238a8e099cce1ced01a3d", - "symbol": "NOVA", - "decimals": 18, - "name": "Nova", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xd0b3a986fff305854a7238a8e099cce1ced01a3d.png", - "aggregators": [ - "CoinMarketCap", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x7bd44cf5c0566aab26150a0cd5c3d20c5535686f": { - "address": "0x7bd44cf5c0566aab26150a0cd5c3d20c5535686f", - "symbol": "EVILPEPE", - "decimals": 18, - "name": "Evil Pepe", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x7bd44cf5c0566aab26150a0cd5c3d20c5535686f.png", - "aggregators": [ - "CoinMarketCap", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0xc740181345c65552333e1edc797e03f11852b1c8": { - "address": "0xc740181345c65552333e1edc797e03f11852b1c8", - "symbol": "KNTO", - "decimals": 18, - "name": "Kento", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xc740181345c65552333e1edc797e03f11852b1c8.png", - "aggregators": [ - "CoinMarketCap", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0xcc8e21f599995d1c8367054841b8af5024ddf01b": { - "address": "0xcc8e21f599995d1c8367054841b8af5024ddf01b", - "symbol": "AG", - "decimals": 18, - "name": "Alpha Gardeners", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xcc8e21f599995d1c8367054841b8af5024ddf01b.png", - "aggregators": [ - "CoinMarketCap", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x3e34eabf5858a126cb583107e643080cee20ca64": { - "address": "0x3e34eabf5858a126cb583107e643080cee20ca64", - "symbol": "LINQ", - "decimals": 18, - "name": "Linq", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x3e34eabf5858a126cb583107e643080cee20ca64.png", - "aggregators": [ - "CoinMarketCap", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x59c6766de1dc50a9c9db86cb0461b5ce07408ab7": { - "address": "0x59c6766de1dc50a9c9db86cb0461b5ce07408ab7", - "symbol": "SPURDO", - "decimals": 8, - "name": "Spurdo", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x59c6766de1dc50a9c9db86cb0461b5ce07408ab7.png", - "aggregators": [ - "CoinMarketCap", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0xc14b4d4ca66f40f352d7a50fd230ef8b2fb3b8d4": { - "address": "0xc14b4d4ca66f40f352d7a50fd230ef8b2fb3b8d4", - "symbol": "TOOLS", - "decimals": 18, - "name": "Blocktools", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xc14b4d4ca66f40f352d7a50fd230ef8b2fb3b8d4.png", - "aggregators": [ - "CoinMarketCap", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x354c8cda7e3b737d360513a0dc5abcee8ee1cea3": { - "address": "0x354c8cda7e3b737d360513a0dc5abcee8ee1cea3", - "symbol": "BABYTRUMP", - "decimals": 18, - "name": "BABYTRUMP", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x354c8cda7e3b737d360513a0dc5abcee8ee1cea3.png", - "aggregators": [ - "CoinMarketCap", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x2f8221e82e0d4669ad66eabf02a5baed43ea49e7": { - "address": "0x2f8221e82e0d4669ad66eabf02a5baed43ea49e7", - "symbol": "NEWS", - "decimals": 18, - "name": "Newsly", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x2f8221e82e0d4669ad66eabf02a5baed43ea49e7.png", - "aggregators": [ - "CoinMarketCap", - "Socket", - "Rubic", - "Rango", - "SushiSwap" - ], - "occurrences": 5 - }, - "0x0b0a8c7c34374c1d0c649917a97eee6c6c929b1b": { - "address": "0x0b0a8c7c34374c1d0c649917a97eee6c6c929b1b", - "symbol": "SHEPE", - "decimals": 9, - "name": "Shiba V Pepe", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x0b0a8c7c34374c1d0c649917a97eee6c6c929b1b.png", - "aggregators": [ - "CoinMarketCap", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0xabd601423a2cd5723cb546acc5c40fb01c3422cf": { - "address": "0xabd601423a2cd5723cb546acc5c40fb01c3422cf", - "symbol": "BABYX", - "decimals": 9, - "name": "Baby X", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xabd601423a2cd5723cb546acc5c40fb01c3422cf.png", - "aggregators": [ - "CoinMarketCap", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x1123d17fcf93ed2b41440317503346a0fdfe3ed7": { - "address": "0x1123d17fcf93ed2b41440317503346a0fdfe3ed7", - "symbol": "PMPY", - "decimals": 18, - "name": "Prometheum Prodigy", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x1123d17fcf93ed2b41440317503346a0fdfe3ed7.png", - "aggregators": [ - "CoinMarketCap", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0xb61ebb6bceb7635ecd7e59884ee2e2bcdfd810ba": { - "address": "0xb61ebb6bceb7635ecd7e59884ee2e2bcdfd810ba", - "symbol": "XSHIB", - "decimals": 9, - "name": "XSHIB", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xb61ebb6bceb7635ecd7e59884ee2e2bcdfd810ba.png", - "aggregators": [ - "CoinMarketCap", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x667210a731447f8b385e068205759be2311b86d4": { - "address": "0x667210a731447f8b385e068205759be2311b86d4", - "symbol": "ETF", - "decimals": 18, - "name": "ETF The Token", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x667210a731447f8b385e068205759be2311b86d4.png", - "aggregators": [ - "CoinMarketCap", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x313cae7ad4454aac7b208c1f089da2b0e5825e46": { - "address": "0x313cae7ad4454aac7b208c1f089da2b0e5825e46", - "symbol": "RPK", - "decimals": 18, - "name": "RepubliK", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x313cae7ad4454aac7b208c1f089da2b0e5825e46.png", - "aggregators": [ - "CoinMarketCap", - "LiFi", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x5dfc78c4d073fd343bc6661668948178522a0de5": { - "address": "0x5dfc78c4d073fd343bc6661668948178522a0de5", - "symbol": "DERP", - "decimals": 18, - "name": "Derp", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x5dfc78c4d073fd343bc6661668948178522a0de5.png", - "aggregators": [ - "CoinMarketCap", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x3001f57f8308b189eb412a64322aad5ef9951290": { - "address": "0x3001f57f8308b189eb412a64322aad5ef9951290", - "symbol": "GEC", - "decimals": 18, - "name": "Geometric Energy Corporation", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x3001f57f8308b189eb412a64322aad5ef9951290.png", - "aggregators": [ - "CoinMarketCap", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x59a73bef0f729761bc3b9aa7f41872077e4bf300": { - "address": "0x59a73bef0f729761bc3b9aa7f41872077e4bf300", - "symbol": "SECT", - "decimals": 18, - "name": "SECT BOT", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x59a73bef0f729761bc3b9aa7f41872077e4bf300.png", - "aggregators": [ - "CoinMarketCap", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x7b37a55ffb30c11d95f943672ae98f28cfb7b087": { - "address": "0x7b37a55ffb30c11d95f943672ae98f28cfb7b087", - "symbol": "FUFU", - "decimals": 2, - "name": "Fufu Token", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x7b37a55ffb30c11d95f943672ae98f28cfb7b087.png", - "aggregators": [ - "CoinMarketCap", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x0257ffd7ea2ebba4aaa090c7adbdd032a08c1f74": { - "address": "0x0257ffd7ea2ebba4aaa090c7adbdd032a08c1f74", - "symbol": "ZELIX", - "decimals": 18, - "name": "ZELIX", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x0257ffd7ea2ebba4aaa090c7adbdd032a08c1f74.png", - "aggregators": [ - "CoinMarketCap", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x01e1d7cbd3bc0eb1030485f33708421011459459": { - "address": "0x01e1d7cbd3bc0eb1030485f33708421011459459", - "symbol": "TOAD", - "decimals": 18, - "name": "TOAD", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x01e1d7cbd3bc0eb1030485f33708421011459459.png", - "aggregators": [ - "CoinMarketCap", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0xc9f00080d96cea3ef92d2e2e563d4cd41fb5bb36": { - "address": "0xc9f00080d96cea3ef92d2e2e563d4cd41fb5bb36", - "symbol": "BLOX", - "decimals": 18, - "name": "BLOX", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xc9f00080d96cea3ef92d2e2e563d4cd41fb5bb36.png", - "aggregators": [ - "CoinMarketCap", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0xa41d2f8ee4f47d3b860a149765a7df8c3287b7f0": { - "address": "0xa41d2f8ee4f47d3b860a149765a7df8c3287b7f0", - "symbol": "SYNC", - "decimals": 9, - "name": "Syncus", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xa41d2f8ee4f47d3b860a149765a7df8c3287b7f0.png", - "aggregators": [ - "CoinMarketCap", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0xce246eea10988c495b4a90a905ee9237a0f91543": { - "address": "0xce246eea10988c495b4a90a905ee9237a0f91543", - "symbol": "VCX", - "decimals": 18, - "name": "VaultCraft", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xce246eea10988c495b4a90a905ee9237a0f91543.png", - "aggregators": [ - "CoinMarketCap", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x5516ac1aaca7bb2fd5b7bdde1549ef1ea242953d": { - "address": "0x5516ac1aaca7bb2fd5b7bdde1549ef1ea242953d", - "symbol": "DETF", - "decimals": 18, - "name": "Decentralized ETF", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x5516ac1aaca7bb2fd5b7bdde1549ef1ea242953d.png", - "aggregators": [ - "CoinMarketCap", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x60158131416f5e53d55d73a11be2e203cb26abcc": { - "address": "0x60158131416f5e53d55d73a11be2e203cb26abcc", - "symbol": "EON", - "decimals": 8, - "name": "Hyper", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x60158131416f5e53d55d73a11be2e203cb26abcc.png", - "aggregators": [ - "CoinMarketCap", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0xee3c722d177559f73288cec91fa3e4bbfd8c27fc": { - "address": "0xee3c722d177559f73288cec91fa3e4bbfd8c27fc", - "symbol": "HHGTTG", - "decimals": 9, - "name": "Douglas Adams", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xee3c722d177559f73288cec91fa3e4bbfd8c27fc.png", - "aggregators": [ - "CoinMarketCap", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x455ad1bc4e18fd4e369234b6e11d88acbc416758": { - "address": "0x455ad1bc4e18fd4e369234b6e11d88acbc416758", - "symbol": "BRCT", - "decimals": 18, - "name": "BRC App", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x455ad1bc4e18fd4e369234b6e11d88acbc416758.png", - "aggregators": [ - "CoinMarketCap", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0xe453c3409f8ad2b1fe1ed08e189634d359705a5b": { - "address": "0xe453c3409f8ad2b1fe1ed08e189634d359705a5b", - "symbol": "DGI", - "decimals": 18, - "name": "DGI Game", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xe453c3409f8ad2b1fe1ed08e189634d359705a5b.png", - "aggregators": [ - "CoinMarketCap", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x4e4990e997e1df3f6b39ff49384e2e7e99bc55fe": { - "address": "0x4e4990e997e1df3f6b39ff49384e2e7e99bc55fe", - "symbol": "SAUDIBONK", - "decimals": 18, - "name": "Saudi Bonk", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x4e4990e997e1df3f6b39ff49384e2e7e99bc55fe.png", - "aggregators": [ - "CoinMarketCap", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0xb9f69c75a3b67425474f8bcab9a3626d8b8249e1": { - "address": "0xb9f69c75a3b67425474f8bcab9a3626d8b8249e1", - "symbol": "TOYBOX", - "decimals": 18, - "name": "Memefi Toybox 404", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xb9f69c75a3b67425474f8bcab9a3626d8b8249e1.png", - "aggregators": [ - "CoinMarketCap", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x6930450a416252c7206fbce76c01ecc850a36cb9": { - "address": "0x6930450a416252c7206fbce76c01ecc850a36cb9", - "symbol": "SHEB", - "decimals": 9, - "name": "SHEBOSHIS", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x6930450a416252c7206fbce76c01ecc850a36cb9.png", - "aggregators": [ - "CoinMarketCap", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x6c10d1611a5a95cb967e4bcab5791fd101194949": { - "address": "0x6c10d1611a5a95cb967e4bcab5791fd101194949", - "symbol": "XERS", - "decimals": 18, - "name": "X Project ERC", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x6c10d1611a5a95cb967e4bcab5791fd101194949.png", - "aggregators": [ - "CoinMarketCap", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x99a01a4d6a4d621094983050d9a2f10b2912e53d": { - "address": "0x99a01a4d6a4d621094983050d9a2f10b2912e53d", - "symbol": "VRSW", - "decimals": 18, - "name": "VirtuSwap", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x99a01a4d6a4d621094983050d9a2f10b2912e53d.png", - "aggregators": [ - "CoinMarketCap", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x95ccffae3eb8767d4a941ec43280961dde89f4de": { - "address": "0x95ccffae3eb8767d4a941ec43280961dde89f4de", - "symbol": "TBANK", - "decimals": 18, - "name": "TaoBank", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x95ccffae3eb8767d4a941ec43280961dde89f4de.png", - "aggregators": [ - "CoinMarketCap", - "LiFi", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0xa76cec201e939660f8afb1fb8d5865d069df0750": { - "address": "0xa76cec201e939660f8afb1fb8d5865d069df0750", - "symbol": "WANNA", - "decimals": 18, - "name": "Wanna Bot", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xa76cec201e939660f8afb1fb8d5865d069df0750.png", - "aggregators": [ - "CoinMarketCap", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x72f713d11480dcf08b37e1898670e736688d218d": { - "address": "0x72f713d11480dcf08b37e1898670e736688d218d", - "symbol": "NAO", - "decimals": 18, - "name": "Nettensor", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x72f713d11480dcf08b37e1898670e736688d218d.png", - "aggregators": [ - "CoinMarketCap", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0xb7037457de15fed6cbecc0c62d5d610834b958ec": { - "address": "0xb7037457de15fed6cbecc0c62d5d610834b958ec", - "symbol": "WHIRL", - "decimals": 18, - "name": "Whirl", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xb7037457de15fed6cbecc0c62d5d610834b958ec.png", - "aggregators": [ - "CoinMarketCap", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0xf938346d7117534222b48d09325a6b8162b3a9e7": { - "address": "0xf938346d7117534222b48d09325a6b8162b3a9e7", - "symbol": "CHOPPY", - "decimals": 9, - "name": "Choppy", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xf938346d7117534222b48d09325a6b8162b3a9e7.png", - "aggregators": [ - "CoinMarketCap", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x000000000503be77a5ed27bef2c19943a8b5ae73": { - "address": "0x000000000503be77a5ed27bef2c19943a8b5ae73", - "symbol": "XTREME", - "decimals": 18, - "name": "Xtremeverse", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x000000000503be77a5ed27bef2c19943a8b5ae73.png", - "aggregators": [ - "CoinMarketCap", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x68f108fb7141ffe36b832c5c225d9e7e474bd664": { - "address": "0x68f108fb7141ffe36b832c5c225d9e7e474bd664", - "symbol": "PEPINU", - "decimals": 18, - "name": "Pepinu", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x68f108fb7141ffe36b832c5c225d9e7e474bd664.png", - "aggregators": [ - "CoinMarketCap", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x451fd37983d494bce294295f78a426832376b7df": { - "address": "0x451fd37983d494bce294295f78a426832376b7df", - "symbol": "XENO", - "decimals": 9, - "name": "Xeno", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x451fd37983d494bce294295f78a426832376b7df.png", - "aggregators": [ - "CoinMarketCap", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x0138f5e99cfdffbacf36e543800c19ef16fa294b": { - "address": "0x0138f5e99cfdffbacf36e543800c19ef16fa294b", - "symbol": "PROPHT", - "decimals": 18, - "name": "Prophet", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x0138f5e99cfdffbacf36e543800c19ef16fa294b.png", - "aggregators": [ - "CoinMarketCap", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x3c0bb14e8367c384885a97bac6d5cceab474ed75": { - "address": "0x3c0bb14e8367c384885a97bac6d5cceab474ed75", - "symbol": "AII", - "decimals": 18, - "name": "Artificial idiot", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x3c0bb14e8367c384885a97bac6d5cceab474ed75.png", - "aggregators": [ - "CoinMarketCap", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x255f1b39172f65dc6406b8bee8b08155c45fe1b6": { - "address": "0x255f1b39172f65dc6406b8bee8b08155c45fe1b6", - "symbol": "HARAMBE", - "decimals": 18, - "name": "HarambeCoin", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x255f1b39172f65dc6406b8bee8b08155c45fe1b6.png", - "aggregators": [ - "CoinMarketCap", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0xbc188b5dbb155b6ea693d46d98bf60b8482939b9": { - "address": "0xbc188b5dbb155b6ea693d46d98bf60b8482939b9", - "symbol": "FTW", - "decimals": 18, - "name": "Apollo FTW", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xbc188b5dbb155b6ea693d46d98bf60b8482939b9.png", - "aggregators": [ - "CoinMarketCap", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0xb549116ac57b47c1b365a890e1d04fd547dfff97": { - "address": "0xb549116ac57b47c1b365a890e1d04fd547dfff97", - "symbol": "MDAI", - "decimals": 18, - "name": "MindAI", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xb549116ac57b47c1b365a890e1d04fd547dfff97.png", - "aggregators": [ - "CoinMarketCap", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0xeb935deb517e4c2abc282e5e251ed4d05db79e93": { - "address": "0xeb935deb517e4c2abc282e5e251ed4d05db79e93", - "symbol": "FBG", - "decimals": 18, - "name": "Fort Block Games", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xeb935deb517e4c2abc282e5e251ed4d05db79e93.png", - "aggregators": [ - "CoinMarketCap", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x00b78238925c320159023c2ac9ef89da8f16d007": { - "address": "0x00b78238925c320159023c2ac9ef89da8f16d007", - "symbol": "VPS", - "decimals": 18, - "name": "VPS Ai", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x00b78238925c320159023c2ac9ef89da8f16d007.png", - "aggregators": [ - "CoinMarketCap", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0xe5ef42d0e5e4aa6b36c613d00db8dad303d505f3": { - "address": "0xe5ef42d0e5e4aa6b36c613d00db8dad303d505f3", - "symbol": "MSOT", - "decimals": 18, - "name": "Btour Chain", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xe5ef42d0e5e4aa6b36c613d00db8dad303d505f3.png", - "aggregators": [ - "CoinMarketCap", - "LiFi", - "Socket", - "Rubic", - "Rango" - ], - "occurrences": 5 - }, - "0xf02c2dc9b3cb7f1ba21ccd82dff4ebc92da8996f": { - "address": "0xf02c2dc9b3cb7f1ba21ccd82dff4ebc92da8996f", - "symbol": "TSA", - "decimals": 18, - "name": "TensorScan AI", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xf02c2dc9b3cb7f1ba21ccd82dff4ebc92da8996f.png", - "aggregators": [ - "CoinMarketCap", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x6715515f5aa98e8bd3624922e1ba91e6f5fc4402": { - "address": "0x6715515f5aa98e8bd3624922e1ba91e6f5fc4402", - "symbol": "SSNC", - "decimals": 18, - "name": "SatoshiSync", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x6715515f5aa98e8bd3624922e1ba91e6f5fc4402.png", - "aggregators": [ - "CoinMarketCap", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x564a80d0123bdd750fb6a9993834968fc595c09a": { - "address": "0x564a80d0123bdd750fb6a9993834968fc595c09a", - "symbol": "SUBF", - "decimals": 18, - "name": "Super Best Friends", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x564a80d0123bdd750fb6a9993834968fc595c09a.png", - "aggregators": [ - "CoinMarketCap", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x2903bd7db50f300b0884f7a15904baffc77f3ec7": { - "address": "0x2903bd7db50f300b0884f7a15904baffc77f3ec7", - "symbol": "ARC", - "decimals": 18, - "name": "Arcade", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x2903bd7db50f300b0884f7a15904baffc77f3ec7.png", - "aggregators": [ - "CoinMarketCap", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0xa0e7626287bd02cbe3531c65148261bf0c0ed98b": { - "address": "0xa0e7626287bd02cbe3531c65148261bf0c0ed98b", - "symbol": "SGT", - "decimals": 18, - "name": "Shill Guard Token", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xa0e7626287bd02cbe3531c65148261bf0c0ed98b.png", - "aggregators": [ - "CoinMarketCap", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x420698ebc9b7c225731c02d887d0729057339d39": { - "address": "0x420698ebc9b7c225731c02d887d0729057339d39", - "symbol": "CHUCK", - "decimals": 18, - "name": "Chuck", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x420698ebc9b7c225731c02d887d0729057339d39.png", - "aggregators": [ - "CoinMarketCap", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0xa1e349fac47e50b42cd323c4285ef4622b60a5e0": { - "address": "0xa1e349fac47e50b42cd323c4285ef4622b60a5e0", - "symbol": "PEPY", - "decimals": 18, - "name": "Pepy coin", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xa1e349fac47e50b42cd323c4285ef4622b60a5e0.png", - "aggregators": [ - "CoinMarketCap", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0xbf5badfae2d219943dcd9652d1ce65960b8a1e0c": { - "address": "0xbf5badfae2d219943dcd9652d1ce65960b8a1e0c", - "symbol": "EARTH", - "decimals": 18, - "name": "PaleBlueDot", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xbf5badfae2d219943dcd9652d1ce65960b8a1e0c.png", - "aggregators": ["CoinMarketCap", "LiFi", "Rubic", "Squid", "Rango"], - "occurrences": 5 - }, - "0x9e22b4f836a461ddc7765e5fad693688e76e6069": { - "address": "0x9e22b4f836a461ddc7765e5fad693688e76e6069", - "symbol": "CHAD", - "decimals": 9, - "name": "Chad Frog", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x9e22b4f836a461ddc7765e5fad693688e76e6069.png", - "aggregators": [ - "CoinMarketCap", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0xa89b728708be04f57c7a33c6f790b6f077298e26": { - "address": "0xa89b728708be04f57c7a33c6f790b6f077298e26", - "symbol": "BART", - "decimals": 18, - "name": "ReptilianZuckerBidenBartcoin", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xa89b728708be04f57c7a33c6f790b6f077298e26.png", - "aggregators": [ - "CoinMarketCap", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0xcd24ba0e3364233ee9301c1d608a14753c8739c5": { - "address": "0xcd24ba0e3364233ee9301c1d608a14753c8739c5", - "symbol": "SOUTH", - "decimals": 18, - "name": "DeepSouth AI", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xcd24ba0e3364233ee9301c1d608a14753c8739c5.png", - "aggregators": [ - "CoinMarketCap", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x195be8ee12aa1591902c4232b5b25017a9cbbdea": { - "address": "0x195be8ee12aa1591902c4232b5b25017a9cbbdea", - "symbol": "POPO", - "decimals": 18, - "name": "POPO", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x195be8ee12aa1591902c4232b5b25017a9cbbdea.png", - "aggregators": [ - "CoinMarketCap", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0xa1d23bbef17f88fefc2ada631738e4c42e906a2e": { - "address": "0xa1d23bbef17f88fefc2ada631738e4c42e906a2e", - "symbol": "EGOD", - "decimals": 9, - "name": "EgodCoin", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xa1d23bbef17f88fefc2ada631738e4c42e906a2e.png", - "aggregators": [ - "CoinMarketCap", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x8b95fe1c06e58c269f1267e0f0093b7b26b85481": { - "address": "0x8b95fe1c06e58c269f1267e0f0093b7b26b85481", - "symbol": "MOJO", - "decimals": 18, - "name": "MOJO The Gorilla", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x8b95fe1c06e58c269f1267e0f0093b7b26b85481.png", - "aggregators": [ - "CoinMarketCap", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x67859a9314b9dca2642023ad8231beaa6cbf1933": { - "address": "0x67859a9314b9dca2642023ad8231beaa6cbf1933", - "symbol": "WOLF", - "decimals": 18, - "name": "Landwolf", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x67859a9314b9dca2642023ad8231beaa6cbf1933.png", - "aggregators": [ - "CoinMarketCap", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x7c5b267ed81009aa7374b5ca7e5137da47045ba8": { - "address": "0x7c5b267ed81009aa7374b5ca7e5137da47045ba8", - "symbol": "TKAI", - "decimals": 18, - "name": "TAIKAI", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x7c5b267ed81009aa7374b5ca7e5137da47045ba8.png", - "aggregators": [ - "CoinMarketCap", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0xd3999188ff689b99d8097a4876f61e70b22f7881": { - "address": "0xd3999188ff689b99d8097a4876f61e70b22f7881", - "symbol": "SPURDO", - "decimals": 18, - "name": "Spurdo Sp rde", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xd3999188ff689b99d8097a4876f61e70b22f7881.png", - "aggregators": [ - "CoinMarketCap", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0xb9eb6f357f040be1d2a3d6b4ba750d1ab8a4233c": { - "address": "0xb9eb6f357f040be1d2a3d6b4ba750d1ab8a4233c", - "symbol": "FRESCO", - "decimals": 9, - "name": "Fresco", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xb9eb6f357f040be1d2a3d6b4ba750d1ab8a4233c.png", - "aggregators": [ - "CoinMarketCap", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x276105758dfb270f5cd845aa04a6ba09c88699ca": { - "address": "0x276105758dfb270f5cd845aa04a6ba09c88699ca", - "symbol": "G", - "decimals": 9, - "name": "G", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x276105758dfb270f5cd845aa04a6ba09c88699ca.png", - "aggregators": [ - "CoinMarketCap", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x3ada3bf9a5c5c59523d6193381c0d14787070e54": { - "address": "0x3ada3bf9a5c5c59523d6193381c0d14787070e54", - "symbol": "NEVA", - "decimals": 18, - "name": "Neva", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x3ada3bf9a5c5c59523d6193381c0d14787070e54.png", - "aggregators": [ - "CoinMarketCap", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x5daa087714cb169f605c673a00aef62a9a7236a6": { - "address": "0x5daa087714cb169f605c673a00aef62a9a7236a6", - "symbol": "RWD", - "decimals": 18, - "name": "REWARD", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x5daa087714cb169f605c673a00aef62a9a7236a6.png", - "aggregators": [ - "CoinMarketCap", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x9a0d1b52e0684ab42aa0c2613abb4c04217e8aa6": { - "address": "0x9a0d1b52e0684ab42aa0c2613abb4c04217e8aa6", - "symbol": "MUNCHY", - "decimals": 9, - "name": "Boys Club Munchy", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x9a0d1b52e0684ab42aa0c2613abb4c04217e8aa6.png", - "aggregators": [ - "CoinMarketCap", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x69bb12b8ee418e4833b8debe4a2bb997ab9ce18e": { - "address": "0x69bb12b8ee418e4833b8debe4a2bb997ab9ce18e", - "symbol": "SALMAN", - "decimals": 9, - "name": "Mohameme Bit Salman", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x69bb12b8ee418e4833b8debe4a2bb997ab9ce18e.png", - "aggregators": [ - "CoinMarketCap", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x3256cade5f8cb1256ac2bd1e2d854dec6d667bdf": { - "address": "0x3256cade5f8cb1256ac2bd1e2d854dec6d667bdf", - "symbol": "MOGU", - "decimals": 18, - "name": "Mogutou", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x3256cade5f8cb1256ac2bd1e2d854dec6d667bdf.png", - "aggregators": [ - "CoinMarketCap", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0xa2b8e02ce95b54362f8db7273015478dd725d7e7": { - "address": "0xa2b8e02ce95b54362f8db7273015478dd725d7e7", - "symbol": "MEMECUP", - "decimals": 8, - "name": "MEME CUP", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xa2b8e02ce95b54362f8db7273015478dd725d7e7.png", - "aggregators": [ - "CoinMarketCap", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0xb69100340a5947e856d873463694ae2186146c43": { - "address": "0xb69100340a5947e856d873463694ae2186146c43", - "symbol": "PEPER", - "decimals": 9, - "name": "Baby Pepe on ETH", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xb69100340a5947e856d873463694ae2186146c43.png", - "aggregators": [ - "CoinMarketCap", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x45e82579792dddf08cb3a037086604c262d78065": { - "address": "0x45e82579792dddf08cb3a037086604c262d78065", - "symbol": "IX", - "decimals": 18, - "name": "illumineX", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x45e82579792dddf08cb3a037086604c262d78065.png", - "aggregators": [ - "CoinMarketCap", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0xdb0238975ce84f89212ffa56c64c0f2b47f8f153": { - "address": "0xdb0238975ce84f89212ffa56c64c0f2b47f8f153", - "symbol": "FLORK", - "decimals": 18, - "name": "Flork", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xdb0238975ce84f89212ffa56c64c0f2b47f8f153.png", - "aggregators": [ - "CoinMarketCap", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x4abd5745f326932b1b673bfa592a20d7bb6bc455": { - "address": "0x4abd5745f326932b1b673bfa592a20d7bb6bc455", - "symbol": "FROGLIC", - "decimals": 18, - "name": "Pink Hood Froglicker", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x4abd5745f326932b1b673bfa592a20d7bb6bc455.png", - "aggregators": [ - "CoinMarketCap", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x2be8e422cb4a5a7f217a8f1b0658952a79132f28": { - "address": "0x2be8e422cb4a5a7f217a8f1b0658952a79132f28", - "symbol": "MSI", - "decimals": 18, - "name": "Monkey Shit Inu", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x2be8e422cb4a5a7f217a8f1b0658952a79132f28.png", - "aggregators": [ - "CoinMarketCap", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0xba00357fd9348da1adbae9b2867b6b596eba4f24": { - "address": "0xba00357fd9348da1adbae9b2867b6b596eba4f24", - "symbol": "LCR", - "decimals": 18, - "name": "LaunchR", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xba00357fd9348da1adbae9b2867b6b596eba4f24.png", - "aggregators": [ - "CoinMarketCap", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x7087c92ec764e75e7be7701eba15cd95d90f501f": { - "address": "0x7087c92ec764e75e7be7701eba15cd95d90f501f", - "symbol": "MATT", - "decimals": 18, - "name": "MATT", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x7087c92ec764e75e7be7701eba15cd95d90f501f.png", - "aggregators": [ - "CoinMarketCap", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x80810a9c31e7243a0bfb9919b0b4020378d1c134": { - "address": "0x80810a9c31e7243a0bfb9919b0b4020378d1c134", - "symbol": "GOP", - "decimals": 9, - "name": "The Republican Party", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x80810a9c31e7243a0bfb9919b0b4020378d1c134.png", - "aggregators": [ - "CoinMarketCap", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x26869045311fc5e5353eadcfa654cd47ddc20356": { - "address": "0x26869045311fc5e5353eadcfa654cd47ddc20356", - "symbol": "QTDAO", - "decimals": 18, - "name": "Quantum DAO", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x26869045311fc5e5353eadcfa654cd47ddc20356.png", - "aggregators": [ - "CoinMarketCap", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0xd7d9babf56a66daff2ac5dc96f7e886c05124676": { - "address": "0xd7d9babf56a66daff2ac5dc96f7e886c05124676", - "symbol": "OMZ", - "decimals": 18, - "name": "Open Meta City", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xd7d9babf56a66daff2ac5dc96f7e886c05124676.png", - "aggregators": [ - "CoinMarketCap", - "LiFi", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x90edf25b14393350f0c1b5b12b6cb3cd3781fb4a": { - "address": "0x90edf25b14393350f0c1b5b12b6cb3cd3781fb4a", - "symbol": "CORE", - "decimals": 18, - "name": "CoreConnect", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x90edf25b14393350f0c1b5b12b6cb3cd3781fb4a.png", - "aggregators": [ - "CoinMarketCap", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x4c1b1302220d7de5c22b495e78b72f2dd2457d45": { - "address": "0x4c1b1302220d7de5c22b495e78b72f2dd2457d45", - "symbol": "BUFFI", - "decimals": 9, - "name": "Bufficorn", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x4c1b1302220d7de5c22b495e78b72f2dd2457d45.png", - "aggregators": [ - "CoinMarketCap", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0xd7cfdb3cdc33dbeb9e9a4c95b61953cf12a008b3": { - "address": "0xd7cfdb3cdc33dbeb9e9a4c95b61953cf12a008b3", - "symbol": "BRUH", - "decimals": 18, - "name": "Bruh", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xd7cfdb3cdc33dbeb9e9a4c95b61953cf12a008b3.png", - "aggregators": [ - "CoinMarketCap", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0xaa6624d7363ef8284aa8ce4e18146ded5f421b2c": { - "address": "0xaa6624d7363ef8284aa8ce4e18146ded5f421b2c", - "symbol": "0DOG", - "decimals": 18, - "name": "Bitcoin Dogs", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xaa6624d7363ef8284aa8ce4e18146ded5f421b2c.png", - "aggregators": [ - "CoinMarketCap", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x01aac2b594f7bdbec740f0f1aa22910ebb4b74ab": { - "address": "0x01aac2b594f7bdbec740f0f1aa22910ebb4b74ab", - "symbol": "UNIO", - "decimals": 18, - "name": "Unio Coin", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x01aac2b594f7bdbec740f0f1aa22910ebb4b74ab.png", - "aggregators": [ - "CoinMarketCap", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x88ce174c655b6d11210a069b2c106632dabdb068": { - "address": "0x88ce174c655b6d11210a069b2c106632dabdb068", - "symbol": "YAWN", - "decimals": 18, - "name": "Yawn s World", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x88ce174c655b6d11210a069b2c106632dabdb068.png", - "aggregators": [ - "CoinMarketCap", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x2156cd781c5e77323d92a4487a0ec45f128e165e": { - "address": "0x2156cd781c5e77323d92a4487a0ec45f128e165e", - "symbol": "BL00P", - "decimals": 18, - "name": "BL00P", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x2156cd781c5e77323d92a4487a0ec45f128e165e.png", - "aggregators": [ - "CoinMarketCap", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x898843fb909e3562c82f2b96f4e3d0693af041df": { - "address": "0x898843fb909e3562c82f2b96f4e3d0693af041df", - "symbol": "LEMON", - "decimals": 18, - "name": "Lemonrocks", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x898843fb909e3562c82f2b96f4e3d0693af041df.png", - "aggregators": [ - "CoinMarketCap", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0xfc21540d6b89667d167d42086e1feb04da3e9b21": { - "address": "0xfc21540d6b89667d167d42086e1feb04da3e9b21", - "symbol": "INFI", - "decimals": 18, - "name": "Infinet", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xfc21540d6b89667d167d42086e1feb04da3e9b21.png", - "aggregators": [ - "CoinMarketCap", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x7e331b55e4fbba7cb9c1fc855ed0dac2983e7798": { - "address": "0x7e331b55e4fbba7cb9c1fc855ed0dac2983e7798", - "symbol": "KOAI", - "decimals": 18, - "name": "KOI", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x7e331b55e4fbba7cb9c1fc855ed0dac2983e7798.png", - "aggregators": [ - "CoinMarketCap", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0xa71261c2b51cb8030700f5601ca597c522dc232e": { - "address": "0xa71261c2b51cb8030700f5601ca597c522dc232e", - "symbol": "SAGE", - "decimals": 18, - "name": "Sage Market", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xa71261c2b51cb8030700f5601ca597c522dc232e.png", - "aggregators": [ - "CoinMarketCap", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x2de1218c31a04e1040fc5501b89e3a58793b3ddf": { - "address": "0x2de1218c31a04e1040fc5501b89e3a58793b3ddf", - "symbol": "3AC", - "decimals": 18, - "name": "Three Arrowz Capitel", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x2de1218c31a04e1040fc5501b89e3a58793b3ddf.png", - "aggregators": [ - "CoinMarketCap", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0xd9641fc2826ecc9bebf4f3852fe4ed92a5239f02": { - "address": "0xd9641fc2826ecc9bebf4f3852fe4ed92a5239f02", - "symbol": "AVENT", - "decimals": 18, - "name": "Aventa", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xd9641fc2826ecc9bebf4f3852fe4ed92a5239f02.png", - "aggregators": [ - "CoinMarketCap", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x968496dd59efc1caa11e94fda99ea67db7be5cd9": { - "address": "0x968496dd59efc1caa11e94fda99ea67db7be5cd9", - "symbol": "DJT", - "decimals": 18, - "name": "TrumpChain", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x968496dd59efc1caa11e94fda99ea67db7be5cd9.png", - "aggregators": [ - "CoinMarketCap", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x89c1da46d692d09814a88a27270d0dca21e4734d": { - "address": "0x89c1da46d692d09814a88a27270d0dca21e4734d", - "symbol": "GM", - "decimals": 10, - "name": "GM Frens", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x89c1da46d692d09814a88a27270d0dca21e4734d.png", - "aggregators": [ - "CoinMarketCap", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0xcb43c88c980ff3a2c3f45f125d9886e7aabcd017": { - "address": "0xcb43c88c980ff3a2c3f45f125d9886e7aabcd017", - "symbol": "FREAK", - "decimals": 18, - "name": "Freakoff", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xcb43c88c980ff3a2c3f45f125d9886e7aabcd017.png", - "aggregators": [ - "CoinMarketCap", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0xe52a736828c782c2a4a345bbe8052aed010fc82d": { - "address": "0xe52a736828c782c2a4a345bbe8052aed010fc82d", - "symbol": "HLT", - "decimals": 2, - "name": "Huanghuali Token", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xe52a736828c782c2a4a345bbe8052aed010fc82d.png", - "aggregators": [ - "CoinMarketCap", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x83389cb4e4f0bff39915efa839cb827460e70d26": { - "address": "0x83389cb4e4f0bff39915efa839cb827460e70d26", - "symbol": "ADX", - "decimals": 9, - "name": "AnyDex", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x83389cb4e4f0bff39915efa839cb827460e70d26.png", - "aggregators": [ - "CoinMarketCap", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x5becd80848e096d065f27c3b1498553c705c77ed": { - "address": "0x5becd80848e096d065f27c3b1498553c705c77ed", - "symbol": "TAI", - "decimals": 18, - "name": "TaiNet", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x5becd80848e096d065f27c3b1498553c705c77ed.png", - "aggregators": [ - "CoinMarketCap", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x49d1372124f9b018f32f13b81de6f4c83d89fcc3": { - "address": "0x49d1372124f9b018f32f13b81de6f4c83d89fcc3", - "symbol": "CGPU", - "decimals": 18, - "name": "CloudGPU", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x49d1372124f9b018f32f13b81de6f4c83d89fcc3.png", - "aggregators": [ - "CoinMarketCap", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0xfe402841227213adebd67ec42921bf7b76415f6c": { - "address": "0xfe402841227213adebd67ec42921bf7b76415f6c", - "symbol": "GOLDN", - "decimals": 18, - "name": "GoLondon", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xfe402841227213adebd67ec42921bf7b76415f6c.png", - "aggregators": [ - "CoinMarketCap", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0xd4fcde9bb1d746dd7e5463b01dd819ee06af25db": { - "address": "0xd4fcde9bb1d746dd7e5463b01dd819ee06af25db", - "symbol": "EZEIGEN", - "decimals": 18, - "name": "Renzo Restaked EIGEN", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xd4fcde9bb1d746dd7e5463b01dd819ee06af25db.png", - "aggregators": [ - "CoinMarketCap", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x01043bf843b88e1182b1db27bdcc93999aa74c56": { - "address": "0x01043bf843b88e1182b1db27bdcc93999aa74c56", - "symbol": "TAOTOOLS", - "decimals": 18, - "name": "TAOTools", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x01043bf843b88e1182b1db27bdcc93999aa74c56.png", - "aggregators": [ - "CoinMarketCap", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x1f38d22f4ec3479c8268c85476b9418716bdb115": { - "address": "0x1f38d22f4ec3479c8268c85476b9418716bdb115", - "symbol": "MEH", - "decimals": 9, - "name": "Meh", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x1f38d22f4ec3479c8268c85476b9418716bdb115.png", - "aggregators": [ - "CoinMarketCap", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0xc4b9e3aa1071741220a548832c887b39cb621970": { - "address": "0xc4b9e3aa1071741220a548832c887b39cb621970", - "symbol": "FUG", - "decimals": 18, - "name": "FUG", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xc4b9e3aa1071741220a548832c887b39cb621970.png", - "aggregators": [ - "CoinMarketCap", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x69420cb71f5fa439a84545e79557977c0600c46e": { - "address": "0x69420cb71f5fa439a84545e79557977c0600c46e", - "symbol": "TRUMP", - "decimals": 9, - "name": "TrumpEffect69420", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x69420cb71f5fa439a84545e79557977c0600c46e.png", - "aggregators": [ - "CoinMarketCap", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0xd05d90a656fc375ac1478689d7bcd31098f2dd1f": { - "address": "0xd05d90a656fc375ac1478689d7bcd31098f2dd1f", - "symbol": "FACTORY", - "decimals": 18, - "name": "ChainFactory", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xd05d90a656fc375ac1478689d7bcd31098f2dd1f.png", - "aggregators": [ - "CoinMarketCap", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x641c0f8b889f8336a69f464ddae3733e3de3788a": { - "address": "0x641c0f8b889f8336a69f464ddae3733e3de3788a", - "symbol": "DAETA", - "decimals": 18, - "name": "D TA", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x641c0f8b889f8336a69f464ddae3733e3de3788a.png", - "aggregators": [ - "CoinMarketCap", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x516d339afa72f6959b8e06a31fbc32da3e49348b": { - "address": "0x516d339afa72f6959b8e06a31fbc32da3e49348b", - "symbol": "CNCT", - "decimals": 18, - "name": "Connect", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x516d339afa72f6959b8e06a31fbc32da3e49348b.png", - "aggregators": [ - "CoinMarketCap", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0xd61a8bbd5c6d8cd9690a89616b33dc939c9fbda9": { - "address": "0xd61a8bbd5c6d8cd9690a89616b33dc939c9fbda9", - "symbol": "SOLO", - "decimals": 18, - "name": "Solo", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xd61a8bbd5c6d8cd9690a89616b33dc939c9fbda9.png", - "aggregators": [ - "CoinMarketCap", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0xc29bbe89e98250ee2eee3ac677bbed542a049efb": { - "address": "0xc29bbe89e98250ee2eee3ac677bbed542a049efb", - "symbol": "CDN", - "decimals": 18, - "name": "CEDEN", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xc29bbe89e98250ee2eee3ac677bbed542a049efb.png", - "aggregators": [ - "CoinMarketCap", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x0000003ceede5c40e5187784d3e8dd5b43dc85f6": { - "address": "0x0000003ceede5c40e5187784d3e8dd5b43dc85f6", - "symbol": "CULTEL", - "decimals": 9, - "name": "Cultel", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x0000003ceede5c40e5187784d3e8dd5b43dc85f6.png", - "aggregators": [ - "CoinMarketCap", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0xcff252a3299be44fa73402966f30a0159308b2ad": { - "address": "0xcff252a3299be44fa73402966f30a0159308b2ad", - "symbol": "ENVOY", - "decimals": 9, - "name": "Envoy A I", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xcff252a3299be44fa73402966f30a0159308b2ad.png", - "aggregators": [ - "CoinMarketCap", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0xd699b83e43415b774b6ed4ce9999680f049af2ab": { - "address": "0xd699b83e43415b774b6ed4ce9999680f049af2ab", - "symbol": "BUBSY", - "decimals": 18, - "name": "Bubsy AI", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xd699b83e43415b774b6ed4ce9999680f049af2ab.png", - "aggregators": [ - "CoinMarketCap", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x68e2e5c9dff32419a108713f83274a4fb5e194ca": { - "address": "0x68e2e5c9dff32419a108713f83274a4fb5e194ca", - "symbol": "GLS", - "decimals": 18, - "name": "Glacier Network", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x68e2e5c9dff32419a108713f83274a4fb5e194ca.png", - "aggregators": [ - "CoinMarketCap", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x48129b305a94d68ce4773ca1f0b55782ac735eac": { - "address": "0x48129b305a94d68ce4773ca1f0b55782ac735eac", - "symbol": "SUDO", - "decimals": 18, - "name": "Sudo Labs", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x48129b305a94d68ce4773ca1f0b55782ac735eac.png", - "aggregators": [ - "CoinMarketCap", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x62b6d83d5afbf395ece55136e7161c119a8fd80c": { - "address": "0x62b6d83d5afbf395ece55136e7161c119a8fd80c", - "symbol": "HOODRAT", - "decimals": 18, - "name": "Hoodrat", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x62b6d83d5afbf395ece55136e7161c119a8fd80c.png", - "aggregators": [ - "CoinMarketCap", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x877f035c83df617b6c901891f90eebc78f8ce050": { - "address": "0x877f035c83df617b6c901891f90eebc78f8ce050", - "symbol": "SENTAI", - "decimals": 18, - "name": "SentAI", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x877f035c83df617b6c901891f90eebc78f8ce050.png", - "aggregators": [ - "CoinMarketCap", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x32f4768fc4a238a58fc9da408d9a0da4333012e4": { - "address": "0x32f4768fc4a238a58fc9da408d9a0da4333012e4", - "symbol": "NAI", - "decimals": 18, - "name": "Nimbus AI", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x32f4768fc4a238a58fc9da408d9a0da4333012e4.png", - "aggregators": [ - "CoinMarketCap", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x0022228a2cc5e7ef0274a7baa600d44da5ab5776": { - "address": "0x0022228a2cc5e7ef0274a7baa600d44da5ab5776", - "symbol": "STUSD", - "decimals": 18, - "name": "Staked USDA", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x0022228a2cc5e7ef0274a7baa600d44da5ab5776.png", - "aggregators": ["Metamask", "LiFi", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 5 - }, - "0x011e128ec62840186f4a07e85e3ace28858c5606": { - "address": "0x011e128ec62840186f4a07e85e3ace28858c5606", - "symbol": "VAL", - "decimals": 18, - "name": "Valeria", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x011e128ec62840186f4a07e85e3ace28858c5606.png", - "aggregators": [ - "Metamask", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x746dda2ea243400d5a63e0700f190ab79f06489e": { - "address": "0x746dda2ea243400d5a63e0700f190ab79f06489e", - "symbol": "BOA", - "decimals": 7, - "name": "BOSAGORA", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x746dda2ea243400d5a63e0700f190ab79f06489e.png", - "aggregators": [ - "Metamask", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x9b99cca871be05119b2012fd4474731dd653febe": { - "address": "0x9b99cca871be05119b2012fd4474731dd653febe", - "symbol": "MATTER", - "decimals": 18, - "name": "Antimatter", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x9b99cca871be05119b2012fd4474731dd653febe.png", - "aggregators": ["Metamask", "1inch", "LiFi", "Rubic", "Rango"], - "occurrences": 5 - }, - "0xc18b4c1e0b4d4d0f1e9627f25399f5073079ac3d": { - "address": "0xc18b4c1e0b4d4d0f1e9627f25399f5073079ac3d", - "symbol": "BOOH", - "decimals": 18, - "name": "BOOH", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xc18b4c1e0b4d4d0f1e9627f25399f5073079ac3d.png", - "aggregators": [ - "Metamask", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0xaedf386b755465871ff874e3e37af5976e247064": { - "address": "0xaedf386b755465871ff874e3e37af5976e247064", - "symbol": "FTN", - "decimals": 18, - "name": "Fasttoken", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xaedf386b755465871ff874e3e37af5976e247064.png", - "aggregators": [ - "Metamask", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0xba9d4199fab4f26efe3551d490e3821486f135ba": { - "address": "0xba9d4199fab4f26efe3551d490e3821486f135ba", - "symbol": "CHSB", - "decimals": 8, - "name": "SwissBorg", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xba9d4199fab4f26efe3551d490e3821486f135ba.png", - "aggregators": ["Metamask", "LiFi", "Socket", "Rubic", "Rango"], - "occurrences": 5 - }, - "0x252231882fb38481497f3c767469106297c8d93b": { - "address": "0x252231882fb38481497f3c767469106297c8d93b", - "symbol": "STATAETHWETH", - "decimals": 18, - "name": "Static Aave Ethereum WETH", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x252231882fb38481497f3c767469106297c8d93b.png", - "aggregators": ["1inch", "LiFi", "Socket", "Rubic", "Rango"], - "occurrences": 5 - }, - "0x00f2a835758b33f3ac53516ebd69f3dc77b0d152": { - "address": "0x00f2a835758b33f3ac53516ebd69f3dc77b0d152", - "symbol": "STATAETHPYUSD", - "decimals": 6, - "name": "Static Aave Ethereum PYUSD", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x00f2a835758b33f3ac53516ebd69f3dc77b0d152.png", - "aggregators": ["1inch", "LiFi", "Socket", "Rubic", "Rango"], - "occurrences": 5 - }, - "0x848107491e029afde0ac543779c7790382f15929": { - "address": "0x848107491e029afde0ac543779c7790382f15929", - "symbol": "STATAETHCRVUSD", - "decimals": 18, - "name": "Static Aave Ethereum crvUSD", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x848107491e029afde0ac543779c7790382f15929.png", - "aggregators": ["1inch", "LiFi", "Socket", "Rubic", "Rango"], - "occurrences": 5 - }, - "0xb82fa9f31612989525992fcfbb09ab22eff5c85a": { - "address": "0xb82fa9f31612989525992fcfbb09ab22eff5c85a", - "symbol": "AETHCRVUSD", - "decimals": 18, - "name": "Aave Ethereum crvUSD", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xb82fa9f31612989525992fcfbb09ab22eff5c85a.png", - "aggregators": ["1inch", "LiFi", "Socket", "Rubic", "Rango"], - "occurrences": 5 - }, - "0xdbf5e36569798d1e39ee9d7b1c61a7409a74f23a": { - "address": "0xdbf5e36569798d1e39ee9d7b1c61a7409a74f23a", - "symbol": "STATAETHLUSD", - "decimals": 18, - "name": "Static Aave Ethereum LUSD", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xdbf5e36569798d1e39ee9d7b1c61a7409a74f23a.png", - "aggregators": ["1inch", "LiFi", "Socket", "Rubic", "Rango"], - "occurrences": 5 - }, - "0x73eddfa87c71addc275c2b9890f5c3a8480bc9e6": { - "address": "0x73eddfa87c71addc275c2b9890f5c3a8480bc9e6", - "symbol": "STATAETHUSDC", - "decimals": 6, - "name": "Static Aave Ethereum USDC", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x73eddfa87c71addc275c2b9890f5c3a8480bc9e6.png", - "aggregators": ["1inch", "LiFi", "Socket", "Rubic", "Rango"], - "occurrences": 5 - }, - "0xceb286c9604c542d3cc08b41aa6c9675b078a832": { - "address": "0xceb286c9604c542d3cc08b41aa6c9675b078a832", - "symbol": "VTX", - "decimals": 18, - "name": "Vortex DeFi", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xceb286c9604c542d3cc08b41aa6c9675b078a832.png", - "aggregators": ["1inch", "LiFi", "Socket", "Rubic", "Rango"], - "occurrences": 5 - }, - "0x7c07f7abe10ce8e33dc6c5ad68fe033085256a84": { - "address": "0x7c07f7abe10ce8e33dc6c5ad68fe033085256a84", - "symbol": "ICETH", - "decimals": 18, - "name": "Interest Compounding ETH Index", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x7c07f7abe10ce8e33dc6c5ad68fe033085256a84.png", - "aggregators": ["1inch", "LiFi", "Socket", "Rubic", "Rango"], - "occurrences": 5 - }, - "0x36c833eed0d376f75d1ff9dfdee260191336065e": { - "address": "0x36c833eed0d376f75d1ff9dfdee260191336065e", - "symbol": "GTCETH", - "decimals": 18, - "name": "Gitcoin Staked ETH Index (gtcETH)", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x36c833eed0d376f75d1ff9dfdee260191336065e.png", - "aggregators": ["1inch", "Socket", "Rubic", "Rango", "SushiSwap"], - "occurrences": 5 - }, - "0xaf270c38ff895ea3f95ed488ceace2386f038249": { - "address": "0xaf270c38ff895ea3f95ed488ceace2386f038249", - "symbol": "STATAETHDAI", - "decimals": 18, - "name": "Static Aave Ethereum DAI", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xaf270c38ff895ea3f95ed488ceace2386f038249.png", - "aggregators": ["1inch", "LiFi", "Socket", "Rubic", "Rango"], - "occurrences": 5 - }, - "0x862c57d48becb45583aeba3f489696d22466ca1b": { - "address": "0x862c57d48becb45583aeba3f489696d22466ca1b", - "symbol": "STATAETHUSDT", - "decimals": 6, - "name": "Static Aave Ethereum USDT", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x862c57d48becb45583aeba3f489696d22466ca1b.png", - "aggregators": ["1inch", "LiFi", "Socket", "Rubic", "Rango"], - "occurrences": 5 - }, - "0xb29130cbcc3f791f077eade0266168e808e5151e": { - "address": "0xb29130cbcc3f791f077eade0266168e808e5151e", - "symbol": "A1INCH", - "decimals": 18, - "name": "Aave interest bearing 1INCH", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xb29130cbcc3f791f077eade0266168e808e5151e.png", - "aggregators": ["1inch", "LiFi", "Socket", "Rubic", "Rango"], - "occurrences": 5 - }, - "0x22fc5a29bd3d6cce19a06f844019fd506fce4455": { - "address": "0x22fc5a29bd3d6cce19a06f844019fd506fce4455", - "symbol": "EPENDLE", - "decimals": 18, - "name": "Equilibria Finance ePENDLE", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x22fc5a29bd3d6cce19a06f844019fd506fce4455.png", - "aggregators": ["LiFi", "Socket", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 5 - }, - "0xc4e15973e6ff2a35cc804c2cf9d2a1b817a8b40f": { - "address": "0xc4e15973e6ff2a35cc804c2cf9d2a1b817a8b40f", - "symbol": "IBBTC", - "decimals": 18, - "name": "Interest-Bearing BTC", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xc4e15973e6ff2a35cc804c2cf9d2a1b817a8b40f.png", - "aggregators": ["LiFi", "Socket", "Rubic", "Rango", "SushiSwap"], - "occurrences": 5 - }, - "0xbe9375c6a420d2eeb258962efb95551a5b722803": { - "address": "0xbe9375c6a420d2eeb258962efb95551a5b722803", - "symbol": "STMX", - "decimals": 18, - "name": "StormX", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xbe9375c6a420d2eeb258962efb95551a5b722803.png", - "aggregators": ["LiFi", "Socket", "Rubic", "Rango", "SushiSwap"], - "occurrences": 5 - }, - "0x9657477ac915f56ca87c253db1320218ec2d5ddd": { - "address": "0x9657477ac915f56ca87c253db1320218ec2d5ddd", - "symbol": "JNE", - "decimals": 18, - "name": "Jake Newman Enterprises", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x9657477ac915f56ca87c253db1320218ec2d5ddd.png", - "aggregators": ["LiFi", "Socket", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 5 - }, - "0x7e7e112a68d8d2e221e11047a72ffc1065c38e1a": { - "address": "0x7e7e112a68d8d2e221e11047a72ffc1065c38e1a", - "symbol": "BDIGG", - "decimals": 18, - "name": "Badger Sett Digg", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x7e7e112a68d8d2e221e11047a72ffc1065c38e1a.png", - "aggregators": ["LiFi", "Rubic", "Rango", "SushiSwap", "Bancor"], - "occurrences": 5 - }, - "0x6b5204b0be36771253cc38e88012e02b752f0f36": { - "address": "0x6b5204b0be36771253cc38e88012e02b752f0f36", - "symbol": "ZUN", - "decimals": 18, - "name": "Zunami Governance Token", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x6b5204b0be36771253cc38e88012e02b752f0f36.png", - "aggregators": ["LiFi", "Socket", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 5 - }, - "0x2aeccb42482cc64e087b6d2e5da39f5a7a7001f8": { - "address": "0x2aeccb42482cc64e087b6d2e5da39f5a7a7001f8", - "symbol": "RULER", - "decimals": 18, - "name": "RULER", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x2aeccb42482cc64e087b6d2e5da39f5a7a7001f8.png", - "aggregators": ["LiFi", "Socket", "Rubic", "Rango", "SushiSwap"], - "occurrences": 5 - }, - "0xc36824905dff2eaaee7ecc09fcc63abc0af5abc5": { - "address": "0xc36824905dff2eaaee7ecc09fcc63abc0af5abc5", - "symbol": "BAB", - "decimals": 18, - "name": "Basis Bond", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xc36824905dff2eaaee7ecc09fcc63abc0af5abc5.png", - "aggregators": ["LiFi", "Socket", "Rubic", "Rango", "SushiSwap"], - "occurrences": 5 - }, - "0x8c0d76c9b18779665475f3e212d9ca1ed6a1a0e6": { - "address": "0x8c0d76c9b18779665475f3e212d9ca1ed6a1a0e6", - "symbol": "ZUNUSD", - "decimals": 18, - "name": "Zunami USD", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x8c0d76c9b18779665475f3e212d9ca1ed6a1a0e6.png", - "aggregators": ["LiFi", "Socket", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 5 - }, - "0xae1eaae3f627aaca434127644371b67b18444051": { - "address": "0xae1eaae3f627aaca434127644371b67b18444051", - "symbol": "YOP", - "decimals": 8, - "name": "YOP", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xae1eaae3f627aaca434127644371b67b18444051.png", - "aggregators": [ - "TrustWallet", - "Socket", - "Rubic", - "Rango", - "SushiSwap" - ], - "occurrences": 5 - }, - "0x845576c64f9754cf09d87e45b720e82f3eef522c": { - "address": "0x845576c64f9754cf09d87e45b720e82f3eef522c", - "symbol": "AVT", - "decimals": 18, - "name": "ArtVerse Token", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x845576c64f9754cf09d87e45b720e82f3eef522c.png", - "aggregators": ["OpenSwap", "Socket", "Rubic", "Rango"], - "occurrences": 4 - }, - "0x8df723295214ea6f21026eeeb4382d475f146f9f": { - "address": "0x8df723295214ea6f21026eeeb4382d475f146f9f", - "symbol": "EURQ", - "decimals": 6, - "name": "Quantoz EURQ", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x8df723295214ea6f21026eeeb4382d475f146f9f.png", - "aggregators": ["CoinMarketCap", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0x0fc2a55d5bd13033f1ee0cdd11f60f7efe66f467": { - "address": "0x0fc2a55d5bd13033f1ee0cdd11f60f7efe66f467", - "symbol": "LA", - "decimals": 18, - "name": "Lagrange", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x0fc2a55d5bd13033f1ee0cdd11f60f7efe66f467.png", - "aggregators": ["CoinMarketCap", "Socket", "Rubic", "Rango"], - "occurrences": 4 - }, - "0x7d2d3688df45ce7c552e19c27e007673da9204b8": { - "address": "0x7d2d3688df45ce7c552e19c27e007673da9204b8", - "symbol": "ALEND", - "decimals": 18, - "name": "Aave Interest bearing LEND", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x7d2d3688df45ce7c552e19c27e007673da9204b8.png", - "aggregators": ["CoinMarketCap", "LiFi", "Socket", "Rubic"], - "occurrences": 4 - }, - "0x71010a9d003445ac60c4e6a7017c1e89a477b438": { - "address": "0x71010a9d003445ac60c4e6a7017c1e89a477b438", - "symbol": "AREP", - "decimals": 18, - "name": "AREP", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x71010a9d003445ac60c4e6a7017c1e89a477b438.png", - "aggregators": ["Aave", "LiFi", "Rubic", "Rango"], - "occurrences": 4 - }, - "0xba3d9687cf50fe253cd2e1cfeede1d6787344ed5": { - "address": "0xba3d9687cf50fe253cd2e1cfeede1d6787344ed5", - "symbol": "AAAVE", - "decimals": 18, - "name": "Aave Interest bearing Aave Token", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xba3d9687cf50fe253cd2e1cfeede1d6787344ed5.png", - "aggregators": ["Aave", "LiFi", "Socket", "Rubic"], - "occurrences": 4 - }, - "0xb124541127a0a657f056d9dd06188c4f1b0e5aab": { - "address": "0xb124541127a0a657f056d9dd06188c4f1b0e5aab", - "symbol": "AUNI", - "decimals": 18, - "name": "Aave Interest bearing Uniswap", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xb124541127a0a657f056d9dd06188c4f1b0e5aab.png", - "aggregators": ["Aave", "LiFi", "Socket", "Rubic"], - "occurrences": 4 - }, - "0xc75f15ada581219c95485c578e124df3985e4ce0": { - "address": "0xc75f15ada581219c95485c578e124df3985e4ce0", - "symbol": "ZZZ", - "decimals": 18, - "name": "ZZZ", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xc75f15ada581219c95485c578e124df3985e4ce0.png", - "aggregators": ["CoinMarketCap", "LiFi", "Rubic", "Rango"], - "occurrences": 4 - }, - "0x4fc15c91a9c4a9efb404174464687e8e128730c2": { - "address": "0x4fc15c91a9c4a9efb404174464687e8e128730c2", - "symbol": "STAT", - "decimals": 18, - "name": "STAT", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x4fc15c91a9c4a9efb404174464687e8e128730c2.png", - "aggregators": ["Metamask", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0xd37ee7e4f452c6638c96536e68090de8cbcdb583": { - "address": "0xd37ee7e4f452c6638c96536e68090de8cbcdb583", - "symbol": "AGUSD", - "decimals": 2, - "name": "Aave GUSD", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xd37ee7e4f452c6638c96536e68090de8cbcdb583.png", - "aggregators": ["Metamask", "LiFi", "Rubic", "Sonarwatch"], - "occurrences": 4 - }, - "0x4e107a0000db66f0e9fd2039288bf811dd1f9c74": { - "address": "0x4e107a0000db66f0e9fd2039288bf811dd1f9c74", - "symbol": "VLR", - "decimals": 18, - "name": "Velora", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x4e107a0000db66f0e9fd2039288bf811dd1f9c74.png", - "aggregators": ["CoinMarketCap", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0x2e516ba5bf3b7ee47fb99b09eadb60bde80a82e0": { - "address": "0x2e516ba5bf3b7ee47fb99b09eadb60bde80a82e0", - "symbol": "EGGS", - "decimals": 18, - "name": "Eggs", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x2e516ba5bf3b7ee47fb99b09eadb60bde80a82e0.png", - "aggregators": ["CoinMarketCap", "Socket", "Rubic", "Sonarwatch"], - "occurrences": 4 - }, - "0xbe6be64e9e5042b6e84e4c27956cce6353efa5f5": { - "address": "0xbe6be64e9e5042b6e84e4c27956cce6353efa5f5", - "symbol": "BEG", - "decimals": 18, - "name": "Beg", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xbe6be64e9e5042b6e84e4c27956cce6353efa5f5.png", - "aggregators": ["CoinMarketCap", "Socket", "Rubic", "Sonarwatch"], - "occurrences": 4 - }, - "0x7714f320adca62b149df2579361afec729c5fe6a": { - "address": "0x7714f320adca62b149df2579361afec729c5fe6a", - "symbol": "TUP", - "decimals": 18, - "name": "Tenup", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x7714f320adca62b149df2579361afec729c5fe6a.png", - "aggregators": ["CoinMarketCap", "Socket", "Rubic", "Sonarwatch"], - "occurrences": 4 - }, - "0x1aad217b8f78dba5e6693460e8470f8b1a3977f3": { - "address": "0x1aad217b8f78dba5e6693460e8470f8b1a3977f3", - "symbol": "STRCX", - "decimals": 18, - "name": "Strategy PP Variable xStock", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x1aad217b8f78dba5e6693460e8470f8b1a3977f3.png", - "aggregators": ["CoinGecko", "LiFi", "Rubic", "Rango"], - "occurrences": 4 - }, - "0x96a5399d07896f757bd4c6ef56461f58db951862": { - "address": "0x96a5399d07896f757bd4c6ef56461f58db951862", - "symbol": "DRAGONX", - "decimals": 18, - "name": "DragonX win", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x96a5399d07896f757bd4c6ef56461f58db951862.png", - "aggregators": ["CoinMarketCap", "Socket", "Rubic", "Sonarwatch"], - "occurrences": 4 - }, - "0xc7a2572fa8fdb0f7e81d6d3c4e3ccf78fb0dc374": { - "address": "0xc7a2572fa8fdb0f7e81d6d3c4e3ccf78fb0dc374", - "symbol": "FINALE", - "decimals": 18, - "name": "Bens Finale", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xc7a2572fa8fdb0f7e81d6d3c4e3ccf78fb0dc374.png", - "aggregators": ["Metamask", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0x6aeb95f06cda84ca345c2de0f3b7f96923a44f4c": { - "address": "0x6aeb95f06cda84ca345c2de0f3b7f96923a44f4c", - "symbol": "BERRY", - "decimals": 14, - "name": "Rentberry", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x6aeb95f06cda84ca345c2de0f3b7f96923a44f4c.png", - "aggregators": ["CoinMarketCap", "Socket", "Rubic", "Sonarwatch"], - "occurrences": 4 - }, - "0x03aa6298f1370642642415edc0db8b957783e8d6": { - "address": "0x03aa6298f1370642642415edc0db8b957783e8d6", - "symbol": "NMT", - "decimals": 18, - "name": "NetMind Token", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x03aa6298f1370642642415edc0db8b957783e8d6.png", - "aggregators": ["CoinMarketCap", "Socket", "Rubic", "Sonarwatch"], - "occurrences": 4 - }, - "0x97de57ec338ab5d51557da3434828c5dbfada371": { - "address": "0x97de57ec338ab5d51557da3434828c5dbfada371", - "symbol": "EUSD", - "decimals": 18, - "name": "eUSD OLD", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x97de57ec338ab5d51557da3434828c5dbfada371.png", - "aggregators": ["CoinMarketCap", "Socket", "Rubic", "Sonarwatch"], - "occurrences": 4 - }, - "0x12970e6868f88f6557b76120662c1b3e50a646bf": { - "address": "0x12970e6868f88f6557b76120662c1b3e50a646bf", - "symbol": "LADYS", - "decimals": 18, - "name": "Milady Meme Coin", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x12970e6868f88f6557b76120662c1b3e50a646bf.png", - "aggregators": ["CoinMarketCap", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0x465dbc39f46f9d43c581a5d90a43e4a0f2a6ff2d": { - "address": "0x465dbc39f46f9d43c581a5d90a43e4a0f2a6ff2d", - "symbol": "ITO", - "decimals": 9, - "name": "ITO", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x465dbc39f46f9d43c581a5d90a43e4a0f2a6ff2d.png", - "aggregators": ["CoinMarketCap", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0x3235b13708f178af6f110de7177ed5de10c1093d": { - "address": "0x3235b13708f178af6f110de7177ed5de10c1093d", - "symbol": "MNFT", - "decimals": 18, - "name": "MNFT", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x3235b13708f178af6f110de7177ed5de10c1093d.png", - "aggregators": ["CoinMarketCap", "Socket", "Rubic", "Rango"], - "occurrences": 4 - }, - "0x524d524b4c9366be706d3a90dcf70076ca037ae3": { - "address": "0x524d524b4c9366be706d3a90dcf70076ca037ae3", - "symbol": "RMRK", - "decimals": 18, - "name": "RMRK", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x524d524b4c9366be706d3a90dcf70076ca037ae3.png", - "aggregators": ["CoinMarketCap", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0x92df60c51c710a1b1c20e42d85e221f3a1bfc7f2": { - "address": "0x92df60c51c710a1b1c20e42d85e221f3a1bfc7f2", - "symbol": "BANANA", - "decimals": 18, - "name": "ApeSwap", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x92df60c51c710a1b1c20e42d85e221f3a1bfc7f2.png", - "aggregators": ["CoinMarketCap", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0x4b19c70da4c6fa4baa0660825e889d2f7eabc279": { - "address": "0x4b19c70da4c6fa4baa0660825e889d2f7eabc279", - "symbol": "GMM", - "decimals": 18, - "name": "Gamium", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x4b19c70da4c6fa4baa0660825e889d2f7eabc279.png", - "aggregators": ["CoinMarketCap", "Socket", "Rubic", "Sonarwatch"], - "occurrences": 4 - }, - "0x55af5865807b196bd0197e0902746f31fbccfa58": { - "address": "0x55af5865807b196bd0197e0902746f31fbccfa58", - "symbol": "BOO", - "decimals": 18, - "name": "Spookyswap", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x55af5865807b196bd0197e0902746f31fbccfa58.png", - "aggregators": ["CoinMarketCap", "Socket", "Rubic", "Sonarwatch"], - "occurrences": 4 - }, - "0x809e130e10e787139c54e1d12d3d1971b7a675bf": { - "address": "0x809e130e10e787139c54e1d12d3d1971b7a675bf", - "symbol": "MTD", - "decimals": 18, - "name": "Minted", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x809e130e10e787139c54e1d12d3d1971b7a675bf.png", - "aggregators": ["CoinMarketCap", "Socket", "Rubic", "Sonarwatch"], - "occurrences": 4 - }, - "0x839e71613f9aa06e5701cf6de63e303616b0dde3": { - "address": "0x839e71613f9aa06e5701cf6de63e303616b0dde3", - "symbol": "VVS", - "decimals": 18, - "name": "VVS Finance", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x839e71613f9aa06e5701cf6de63e303616b0dde3.png", - "aggregators": ["CoinMarketCap", "Socket", "Rubic", "Sonarwatch"], - "occurrences": 4 - }, - "0x2f32b39023da7d6a6486a85d12b346eb9c2a0d19": { - "address": "0x2f32b39023da7d6a6486a85d12b346eb9c2a0d19", - "symbol": "FER", - "decimals": 18, - "name": "Ferro", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x2f32b39023da7d6a6486a85d12b346eb9c2a0d19.png", - "aggregators": ["CoinMarketCap", "Socket", "Rubic", "Sonarwatch"], - "occurrences": 4 - }, - "0xcb94be6f13a1182e4a4b6140cb7bf2025d28e41b": { - "address": "0xcb94be6f13a1182e4a4b6140cb7bf2025d28e41b", - "symbol": "TRST", - "decimals": 6, - "name": "Trustcoin", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xcb94be6f13a1182e4a4b6140cb7bf2025d28e41b.png", - "aggregators": ["Metamask", "LiFi", "Rubic", "Bancor"], - "occurrences": 4 - }, - "0x8727c112c712c4a03371ac87a74dd6ab104af768": { - "address": "0x8727c112c712c4a03371ac87a74dd6ab104af768", - "symbol": "JET", - "decimals": 18, - "name": "Jetcoin", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x8727c112c712c4a03371ac87a74dd6ab104af768.png", - "aggregators": ["CoinMarketCap", "Socket", "Rubic", "Rango"], - "occurrences": 4 - }, - "0x65be44c747988fbf606207698c944df4442efe19": { - "address": "0x65be44c747988fbf606207698c944df4442efe19", - "symbol": "FUCK", - "decimals": 4, - "name": "Finally Usable Crypto Karma", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x65be44c747988fbf606207698c944df4442efe19.png", - "aggregators": ["CoinMarketCap", "LiFi", "Socket", "Rubic"], - "occurrences": 4 - }, - "0xb7cb1c96db6b22b0d3d9536e0108d062bd488f74": { - "address": "0xb7cb1c96db6b22b0d3d9536e0108d062bd488f74", - "symbol": "WTC", - "decimals": 18, - "name": "Walton Token", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xb7cb1c96db6b22b0d3d9536e0108d062bd488f74.png", - "aggregators": ["Metamask", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0x07e3c70653548b04f0a75970c1f81b4cbbfb606f": { - "address": "0x07e3c70653548b04f0a75970c1f81b4cbbfb606f", - "symbol": "DLT", - "decimals": 18, - "name": "Agrello", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x07e3c70653548b04f0a75970c1f81b4cbbfb606f.png", - "aggregators": ["CoinMarketCap", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0xc0eb85285d83217cd7c891702bcbc0fc401e2d9d": { - "address": "0xc0eb85285d83217cd7c891702bcbc0fc401e2d9d", - "symbol": "HVN", - "decimals": 8, - "name": "Hiveterminal", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xc0eb85285d83217cd7c891702bcbc0fc401e2d9d.png", - "aggregators": ["CoinMarketCap", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0x8d75959f1e61ec2571aa72798237101f084de63a": { - "address": "0x8d75959f1e61ec2571aa72798237101f084de63a", - "symbol": "SUB", - "decimals": 18, - "name": "Substratum", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x8d75959f1e61ec2571aa72798237101f084de63a.png", - "aggregators": ["CoinMarketCap", "Socket", "Rubic", "Rango"], - "occurrences": 4 - }, - "0xf0ee6b27b759c9893ce4f094b49ad28fd15a23e4": { - "address": "0xf0ee6b27b759c9893ce4f094b49ad28fd15a23e4", - "symbol": "ENG", - "decimals": 8, - "name": "Enigma", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xf0ee6b27b759c9893ce4f094b49ad28fd15a23e4.png", - "aggregators": ["Metamask", "LiFi", "Rubic", "Rango"], - "occurrences": 4 - }, - "0x9af4f26941677c706cfecf6d3379ff01bb85d5ab": { - "address": "0x9af4f26941677c706cfecf6d3379ff01bb85d5ab", - "symbol": "DRT", - "decimals": 8, - "name": "DomRaiderToken", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x9af4f26941677c706cfecf6d3379ff01bb85d5ab.png", - "aggregators": ["Metamask", "Rubic", "Rango", "Bancor"], - "occurrences": 4 - }, - "0x2ef52ed7de8c5ce03a4ef0efbe9b7450f2d7edc9": { - "address": "0x2ef52ed7de8c5ce03a4ef0efbe9b7450f2d7edc9", - "symbol": "REV", - "decimals": 6, - "name": "Revain", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x2ef52ed7de8c5ce03a4ef0efbe9b7450f2d7edc9.png", - "aggregators": ["CoinMarketCap", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0xada86b1b313d1d5267e3fc0bb303f0a2b66d0ea7": { - "address": "0xada86b1b313d1d5267e3fc0bb303f0a2b66d0ea7", - "symbol": "COV", - "decimals": 18, - "name": "Covesting", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xada86b1b313d1d5267e3fc0bb303f0a2b66d0ea7.png", - "aggregators": ["CoinMarketCap", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0x4092678e4e78230f46a1534c0fbc8fa39780892b": { - "address": "0x4092678e4e78230f46a1534c0fbc8fa39780892b", - "symbol": "OCN", - "decimals": 18, - "name": "Odyssey", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x4092678e4e78230f46a1534c0fbc8fa39780892b.png", - "aggregators": ["CoinMarketCap", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0x83cee9e086a77e492ee0bb93c2b0437ad6fdeccc": { - "address": "0x83cee9e086a77e492ee0bb93c2b0437ad6fdeccc", - "symbol": "MNTP", - "decimals": 18, - "name": "MNTP", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x83cee9e086a77e492ee0bb93c2b0437ad6fdeccc.png", - "aggregators": ["CoinMarketCap", "LiFi", "Rubic", "Rango"], - "occurrences": 4 - }, - "0xeda8b016efa8b1161208cf041cd86972eee0f31e": { - "address": "0xeda8b016efa8b1161208cf041cd86972eee0f31e", - "symbol": "IHT", - "decimals": 18, - "name": "IHT Real Estate Protocol", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xeda8b016efa8b1161208cf041cd86972eee0f31e.png", - "aggregators": ["CoinMarketCap", "Socket", "Rubic", "Rango"], - "occurrences": 4 - }, - "0x6ba460ab75cd2c56343b3517ffeba60748654d26": { - "address": "0x6ba460ab75cd2c56343b3517ffeba60748654d26", - "symbol": "UP", - "decimals": 8, - "name": "UP", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x6ba460ab75cd2c56343b3517ffeba60748654d26.png", - "aggregators": ["CoinMarketCap", "Socket", "Rubic", "Rango"], - "occurrences": 4 - }, - "0x28b5e12cce51f15594b0b91d5b5adaa70f684a02": { - "address": "0x28b5e12cce51f15594b0b91d5b5adaa70f684a02", - "symbol": "NPX", - "decimals": 2, - "name": "NaPoleonX", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x28b5e12cce51f15594b0b91d5b5adaa70f684a02.png", - "aggregators": ["CoinMarketCap", "Socket", "Rubic", "Rango"], - "occurrences": 4 - }, - "0x3893b9422cd5d70a81edeffe3d5a1c6a978310bb": { - "address": "0x3893b9422cd5d70a81edeffe3d5a1c6a978310bb", - "symbol": "MITH", - "decimals": 18, - "name": "Mithril", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x3893b9422cd5d70a81edeffe3d5a1c6a978310bb.png", - "aggregators": ["Metamask", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0x4de2573e27e648607b50e1cfff921a33e4a34405": { - "address": "0x4de2573e27e648607b50e1cfff921a33e4a34405", - "symbol": "LST", - "decimals": 18, - "name": "LST", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x4de2573e27e648607b50e1cfff921a33e4a34405.png", - "aggregators": ["CoinMarketCap", "1inch", "Rubic", "Rango"], - "occurrences": 4 - }, - "0x28dee01d53fed0edf5f6e310bf8ef9311513ae40": { - "address": "0x28dee01d53fed0edf5f6e310bf8ef9311513ae40", - "symbol": "XBP", - "decimals": 18, - "name": "BlitzPredict", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x28dee01d53fed0edf5f6e310bf8ef9311513ae40.png", - "aggregators": ["Metamask", "Rubic", "Rango", "Bancor"], - "occurrences": 4 - }, - "0x737f98ac8ca59f2c68ad658e3c3d8c8963e40a4c": { - "address": "0x737f98ac8ca59f2c68ad658e3c3d8c8963e40a4c", - "symbol": "AMN", - "decimals": 18, - "name": "Amon", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x737f98ac8ca59f2c68ad658e3c3d8c8963e40a4c.png", - "aggregators": ["CoinMarketCap", "Rubic", "Rango", "Bancor"], - "occurrences": 4 - }, - "0xedd7c94fd7b4971b916d15067bc454b9e1bad980": { - "address": "0xedd7c94fd7b4971b916d15067bc454b9e1bad980", - "symbol": "ZIPT", - "decimals": 18, - "name": "Zippie", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xedd7c94fd7b4971b916d15067bc454b9e1bad980.png", - "aggregators": ["CoinMarketCap", "Rubic", "Rango", "Bancor"], - "occurrences": 4 - }, - "0x048fe49be32adfc9ed68c37d32b5ec9df17b3603": { - "address": "0x048fe49be32adfc9ed68c37d32b5ec9df17b3603", - "symbol": "SKM", - "decimals": 18, - "name": "Skrumble Network V2", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x048fe49be32adfc9ed68c37d32b5ec9df17b3603.png", - "aggregators": ["Metamask", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0x63f584fa56e60e4d0fe8802b27c7e6e3b33e007f": { - "address": "0x63f584fa56e60e4d0fe8802b27c7e6e3b33e007f", - "symbol": "BOX", - "decimals": 18, - "name": "BOX Token", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x63f584fa56e60e4d0fe8802b27c7e6e3b33e007f.png", - "aggregators": ["CoinMarketCap", "Socket", "Rubic", "Rango"], - "occurrences": 4 - }, - "0xe530441f4f73bdb6dc2fa5af7c3fc5fd551ec838": { - "address": "0xe530441f4f73bdb6dc2fa5af7c3fc5fd551ec838", - "symbol": "GSE", - "decimals": 4, - "name": "GSENetwork", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xe530441f4f73bdb6dc2fa5af7c3fc5fd551ec838.png", - "aggregators": ["CoinMarketCap", "Socket", "Rubic", "Rango"], - "occurrences": 4 - }, - "0xee4458e052b533b1aabd493b5f8c4d85d7b263dc": { - "address": "0xee4458e052b533b1aabd493b5f8c4d85d7b263dc", - "symbol": "PASS", - "decimals": 6, - "name": "Blockpass", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xee4458e052b533b1aabd493b5f8c4d85d7b263dc.png", - "aggregators": ["CoinMarketCap", "LiFi", "Socket", "Rubic"], - "occurrences": 4 - }, - "0xba745513acebcbb977497c569d4f7d340f2a936b": { - "address": "0xba745513acebcbb977497c569d4f7d340f2a936b", - "symbol": "MFTU", - "decimals": 18, - "name": "Mainstream For The Underground", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xba745513acebcbb977497c569d4f7d340f2a936b.png", - "aggregators": ["CoinMarketCap", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0xeaf61fc150cd5c3bea75744e830d916e60ea5a9f": { - "address": "0xeaf61fc150cd5c3bea75744e830d916e60ea5a9f", - "symbol": "TYPE", - "decimals": 4, - "name": "Typerium", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xeaf61fc150cd5c3bea75744e830d916e60ea5a9f.png", - "aggregators": ["CoinMarketCap", "Socket", "Rubic", "Sonarwatch"], - "occurrences": 4 - }, - "0x4d807509aece24c0fa5a102b6a3b059ec6e14392": { - "address": "0x4d807509aece24c0fa5a102b6a3b059ec6e14392", - "symbol": "ONE", - "decimals": 18, - "name": "Menlo One", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x4d807509aece24c0fa5a102b6a3b059ec6e14392.png", - "aggregators": ["CoinMarketCap", "LiFi", "Socket", "Rubic"], - "occurrences": 4 - }, - "0xfef4185594457050cc9c23980d301908fe057bb1": { - "address": "0xfef4185594457050cc9c23980d301908fe057bb1", - "symbol": "VIDT-OLD", - "decimals": 18, - "name": "VIDT Datalink", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xfef4185594457050cc9c23980d301908fe057bb1.png", - "aggregators": ["Metamask", "LiFi", "Socket", "Rubic"], - "occurrences": 4 - }, - "0x5b71bee9d961b1b848f8485eec8d8787f80217f5": { - "address": "0x5b71bee9d961b1b848f8485eec8d8787f80217f5", - "symbol": "BF", - "decimals": 18, - "name": "BitForex Token", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x5b71bee9d961b1b848f8485eec8d8787f80217f5.png", - "aggregators": ["CoinMarketCap", "Socket", "Rubic", "Rango"], - "occurrences": 4 - }, - "0x309627af60f0926daa6041b8279484312f2bf060": { - "address": "0x309627af60f0926daa6041b8279484312f2bf060", - "symbol": "USDB", - "decimals": 18, - "name": "Bancor USD Token", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x309627af60f0926daa6041b8279484312f2bf060.png", - "aggregators": ["CoinMarketCap", "Rubic", "Rango", "Bancor"], - "occurrences": 4 - }, - "0x580c8520deda0a441522aeae0f9f7a5f29629afa": { - "address": "0x580c8520deda0a441522aeae0f9f7a5f29629afa", - "symbol": "DAWN", - "decimals": 18, - "name": "Dawn Protocol", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x580c8520deda0a441522aeae0f9f7a5f29629afa.png", - "aggregators": ["CoinMarketCap", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0x0000000000b3f879cb30fe243b4dfee438691c04": { - "address": "0x0000000000b3f879cb30fe243b4dfee438691c04", - "symbol": "GST2", - "decimals": 2, - "name": "GST2", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x0000000000b3f879cb30fe243b4dfee438691c04.png", - "aggregators": ["CoinMarketCap", "LiFi", "Rubic", "Rango"], - "occurrences": 4 - }, - "0x635d081fd8f6670135d8a3640e2cf78220787d56": { - "address": "0x635d081fd8f6670135d8a3640e2cf78220787d56", - "symbol": "ADD", - "decimals": 18, - "name": "ADD", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x635d081fd8f6670135d8a3640e2cf78220787d56.png", - "aggregators": ["CoinMarketCap", "LiFi", "Socket", "Rubic"], - "occurrences": 4 - }, - "0xeabacd844a196d7faf3ce596edebf9900341b420": { - "address": "0xeabacd844a196d7faf3ce596edebf9900341b420", - "symbol": "SCEX", - "decimals": 18, - "name": "Synth sCEX", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xeabacd844a196d7faf3ce596edebf9900341b420.png", - "aggregators": ["CoinMarketCap", "Rubic", "Rango", "SushiSwap"], - "occurrences": 4 - }, - "0xf29992d7b589a0a6bd2de7be29a97a6eb73eaf85": { - "address": "0xf29992d7b589a0a6bd2de7be29a97a6eb73eaf85", - "symbol": "DMST", - "decimals": 18, - "name": "DMScript", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xf29992d7b589a0a6bd2de7be29a97a6eb73eaf85.png", - "aggregators": ["Metamask", "LiFi", "Rubic", "Rango"], - "occurrences": 4 - }, - "0x8888889213dd4da823ebdd1e235b09590633c150": { - "address": "0x8888889213dd4da823ebdd1e235b09590633c150", - "symbol": "MBC", - "decimals": 18, - "name": "Marblecoin", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x8888889213dd4da823ebdd1e235b09590633c150.png", - "aggregators": ["CoinMarketCap", "LiFi", "Socket", "Rubic"], - "occurrences": 4 - }, - "0xacfe45c352c902ae3a3f9b6bfe6ec994c5d791bf": { - "address": "0xacfe45c352c902ae3a3f9b6bfe6ec994c5d791bf", - "symbol": "MBONK", - "decimals": 18, - "name": "megaBONK", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xacfe45c352c902ae3a3f9b6bfe6ec994c5d791bf.png", - "aggregators": ["CoinMarketCap", "LiFi", "Socket", "Rubic"], - "occurrences": 4 - }, - "0xf5717f5df41ea67ef67dfd3c1d02f9940bcf5d08": { - "address": "0xf5717f5df41ea67ef67dfd3c1d02f9940bcf5d08", - "symbol": "SNN", - "decimals": 3, - "name": "SeChain", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xf5717f5df41ea67ef67dfd3c1d02f9940bcf5d08.png", - "aggregators": ["CoinMarketCap", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0xa2b0fde6d710e201d0d608e924a484d1a5fed57c": { - "address": "0xa2b0fde6d710e201d0d608e924a484d1a5fed57c", - "symbol": "SXRP", - "decimals": 18, - "name": "Synth XRP", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xa2b0fde6d710e201d0d608e924a484d1a5fed57c.png", - "aggregators": ["CoinMarketCap", "Rubic", "Rango", "SushiSwap"], - "occurrences": 4 - }, - "0xd15ecdcf5ea68e3995b2d0527a0ae0a3258302f8": { - "address": "0xd15ecdcf5ea68e3995b2d0527a0ae0a3258302f8", - "symbol": "MCX", - "decimals": 18, - "name": "MCX", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xd15ecdcf5ea68e3995b2d0527a0ae0a3258302f8.png", - "aggregators": ["CoinMarketCap", "LiFi", "Rubic", "Rango"], - "occurrences": 4 - }, - "0xb2279b6769cfba691416f00609b16244c0cf4b20": { - "address": "0xb2279b6769cfba691416f00609b16244c0cf4b20", - "symbol": "WAIF", - "decimals": 18, - "name": "Waifu", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xb2279b6769cfba691416f00609b16244c0cf4b20.png", - "aggregators": ["CoinMarketCap", "LiFi", "Socket", "Rubic"], - "occurrences": 4 - }, - "0x4ecb692b0fedecd7b486b4c99044392784877e8c": { - "address": "0x4ecb692b0fedecd7b486b4c99044392784877e8c", - "symbol": "CHERRY", - "decimals": 4, - "name": "Cherry", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x4ecb692b0fedecd7b486b4c99044392784877e8c.png", - "aggregators": ["CoinMarketCap", "LiFi", "Socket", "Rubic"], - "occurrences": 4 - }, - "0x26e43759551333e57f073bb0772f50329a957b30": { - "address": "0x26e43759551333e57f073bb0772f50329a957b30", - "symbol": "DGVC", - "decimals": 18, - "name": "DegenVC", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x26e43759551333e57f073bb0772f50329a957b30.png", - "aggregators": ["CoinMarketCap", "LiFi", "TrustWallet", "Rubic"], - "occurrences": 4 - }, - "0x31fdd1c6607f47c14a2821f599211c67ac20fa96": { - "address": "0x31fdd1c6607f47c14a2821f599211c67ac20fa96", - "symbol": "BUY", - "decimals": 18, - "name": "Burency", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x31fdd1c6607f47c14a2821f599211c67ac20fa96.png", - "aggregators": ["CoinMarketCap", "Socket", "Rubic", "Rango"], - "occurrences": 4 - }, - "0x73ee6d7e6b203125add89320e9f343d65ec7c39a": { - "address": "0x73ee6d7e6b203125add89320e9f343d65ec7c39a", - "symbol": "AXI", - "decimals": 18, - "name": "Axioms", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x73ee6d7e6b203125add89320e9f343d65ec7c39a.png", - "aggregators": ["CoinMarketCap", "LiFi", "Socket", "Rubic"], - "occurrences": 4 - }, - "0x0ada190c81b814548ddc2f6adc4a689ce7c1fe73": { - "address": "0x0ada190c81b814548ddc2f6adc4a689ce7c1fe73", - "symbol": "YAXIS", - "decimals": 18, - "name": "yAxis", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x0ada190c81b814548ddc2f6adc4a689ce7c1fe73.png", - "aggregators": ["Metamask", "Socket", "Rubic", "Rango"], - "occurrences": 4 - }, - "0xc22b30e4cce6b78aaaadae91e44e73593929a3e9": { - "address": "0xc22b30e4cce6b78aaaadae91e44e73593929a3e9", - "symbol": "RAC", - "decimals": 18, - "name": "RAC", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xc22b30e4cce6b78aaaadae91e44e73593929a3e9.png", - "aggregators": ["CoinMarketCap", "LiFi", "Socket", "Rubic"], - "occurrences": 4 - }, - "0x83f873388cd14b83a9f47fabde3c9850b5c74548": { - "address": "0x83f873388cd14b83a9f47fabde3c9850b5c74548", - "symbol": "ZUT", - "decimals": 18, - "name": "ZeroUtility", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x83f873388cd14b83a9f47fabde3c9850b5c74548.png", - "aggregators": ["CoinMarketCap", "LiFi", "Socket", "Rubic"], - "occurrences": 4 - }, - "0x3218a02f8f8b5c3894ce30eb255f10bcba13e654": { - "address": "0x3218a02f8f8b5c3894ce30eb255f10bcba13e654", - "symbol": "MEGA", - "decimals": 18, - "name": "MegaCryptoPolis $MEGA Token (MEGA)", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x3218a02f8f8b5c3894ce30eb255f10bcba13e654.png", - "aggregators": ["CoinMarketCap", "LiFi", "Socket", "Rubic"], - "occurrences": 4 - }, - "0x20e7125677311fca903a8897042b9983f22ea295": { - "address": "0x20e7125677311fca903a8897042b9983f22ea295", - "symbol": "FWT", - "decimals": 18, - "name": "Freeway", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x20e7125677311fca903a8897042b9983f22ea295.png", - "aggregators": ["CoinMarketCap", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0xe1b583dc66e0a24fd9af2dc665f6f5e48978e106": { - "address": "0xe1b583dc66e0a24fd9af2dc665f6f5e48978e106", - "symbol": "MEE", - "decimals": 18, - "name": "MEE Token", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xe1b583dc66e0a24fd9af2dc665f6f5e48978e106.png", - "aggregators": ["CoinMarketCap", "LiFi", "Socket", "Rubic"], - "occurrences": 4 - }, - "0x69e8b9528cabda89fe846c67675b5d73d463a916": { - "address": "0x69e8b9528cabda89fe846c67675b5d73d463a916", - "symbol": "OPEN", - "decimals": 18, - "name": "OPEN Governance Token", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x69e8b9528cabda89fe846c67675b5d73d463a916.png", - "aggregators": ["CoinMarketCap", "Socket", "Rubic", "Rango"], - "occurrences": 4 - }, - "0x8db253a1943dddf1af9bcf8706ac9a0ce939d922": { - "address": "0x8db253a1943dddf1af9bcf8706ac9a0ce939d922", - "symbol": "UNB", - "decimals": 18, - "name": "Unbound", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x8db253a1943dddf1af9bcf8706ac9a0ce939d922.png", - "aggregators": ["CoinMarketCap", "LiFi", "Rubic", "Rango"], - "occurrences": 4 - }, - "0x167e2a574669b0eeb552aaf3da47c728cb348a41": { - "address": "0x167e2a574669b0eeb552aaf3da47c728cb348a41", - "symbol": "300", - "decimals": 7, - "name": "Spartan", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x167e2a574669b0eeb552aaf3da47c728cb348a41.png", - "aggregators": ["CoinMarketCap", "LiFi", "Socket", "Rubic"], - "occurrences": 4 - }, - "0xbd2f0cd039e0bfcf88901c98c0bfac5ab27566e3": { - "address": "0xbd2f0cd039e0bfcf88901c98c0bfac5ab27566e3", - "symbol": "DSD", - "decimals": 18, - "name": "Dynamic Set Dollar", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xbd2f0cd039e0bfcf88901c98c0bfac5ab27566e3.png", - "aggregators": ["CoinMarketCap", "Rubic", "Rango", "SushiSwap"], - "occurrences": 4 - }, - "0xbbbbbbbb46a1da0f0c3f64522c275baa4c332636": { - "address": "0xbbbbbbbb46a1da0f0c3f64522c275baa4c332636", - "symbol": "ZKB", - "decimals": 18, - "name": "ZKBase", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xbbbbbbbb46a1da0f0c3f64522c275baa4c332636.png", - "aggregators": ["CoinMarketCap", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0x465e07d6028830124be2e4aa551fbe12805db0f5": { - "address": "0x465e07d6028830124be2e4aa551fbe12805db0f5", - "symbol": "WXMR", - "decimals": 18, - "name": "Wrapped XMR", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x465e07d6028830124be2e4aa551fbe12805db0f5.png", - "aggregators": ["CoinMarketCap", "Rubic", "Rango", "SushiSwap"], - "occurrences": 4 - }, - "0x947aeb02304391f8fbe5b25d7d98d649b57b1788": { - "address": "0x947aeb02304391f8fbe5b25d7d98d649b57b1788", - "symbol": "MDX", - "decimals": 18, - "name": "Mandala Exchange Token", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x947aeb02304391f8fbe5b25d7d98d649b57b1788.png", - "aggregators": ["Metamask", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0xed40834a13129509a89be39a9be9c0e96a0ddd71": { - "address": "0xed40834a13129509a89be39a9be9c0e96a0ddd71", - "symbol": "WARP", - "decimals": 18, - "name": "Warp Finance", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xed40834a13129509a89be39a9be9c0e96a0ddd71.png", - "aggregators": ["CoinMarketCap", "1inch", "Rubic", "Rango"], - "occurrences": 4 - }, - "0x6e742e29395cf5736c358538f0f1372ab3dfe731": { - "address": "0x6e742e29395cf5736c358538f0f1372ab3dfe731", - "symbol": "TME", - "decimals": 18, - "name": "TAMA EGG NiftyGotchi", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x6e742e29395cf5736c358538f0f1372ab3dfe731.png", - "aggregators": ["CoinMarketCap", "LiFi", "Socket", "Rubic"], - "occurrences": 4 - }, - "0x07bac35846e5ed502aa91adf6a9e7aa210f2dcbe": { - "address": "0x07bac35846e5ed502aa91adf6a9e7aa210f2dcbe", - "symbol": "EROWAN", - "decimals": 18, - "name": "Sifchain", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x07bac35846e5ed502aa91adf6a9e7aa210f2dcbe.png", - "aggregators": ["CoinMarketCap", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0xe0955f26515d22e347b17669993fcefcc73c3a0a": { - "address": "0xe0955f26515d22e347b17669993fcefcc73c3a0a", - "symbol": "STACK", - "decimals": 18, - "name": "Stacker Ventures Token", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xe0955f26515d22e347b17669993fcefcc73c3a0a.png", - "aggregators": ["CoinMarketCap", "LiFi", "Socket", "Rubic"], - "occurrences": 4 - }, - "0x661ab0ed68000491d98c796146bcf28c20d7c559": { - "address": "0x661ab0ed68000491d98c796146bcf28c20d7c559", - "symbol": "DOWS", - "decimals": 18, - "name": "DOWS", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x661ab0ed68000491d98c796146bcf28c20d7c559.png", - "aggregators": ["CoinMarketCap", "LiFi", "Rubic", "Rango"], - "occurrences": 4 - }, - "0x0275e1001e293c46cfe158b3702aade0b99f88a5": { - "address": "0x0275e1001e293c46cfe158b3702aade0b99f88a5", - "symbol": "OIL", - "decimals": 18, - "name": "Oiler", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x0275e1001e293c46cfe158b3702aade0b99f88a5.png", - "aggregators": ["Metamask", "LiFi", "Rubic", "Rango"], - "occurrences": 4 - }, - "0x8dbf9a4c99580fc7fd4024ee08f3994420035727": { - "address": "0x8dbf9a4c99580fc7fd4024ee08f3994420035727", - "symbol": "ECO", - "decimals": 18, - "name": "ECO", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x8dbf9a4c99580fc7fd4024ee08f3994420035727.png", - "aggregators": ["CoinMarketCap", "Socket", "Rubic", "Rango"], - "occurrences": 4 - }, - "0x15f0eedf9ce24fc4b6826e590a8292ce5524a1da": { - "address": "0x15f0eedf9ce24fc4b6826e590a8292ce5524a1da", - "symbol": "DENA", - "decimals": 18, - "name": "Decentralized Nations", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x15f0eedf9ce24fc4b6826e590a8292ce5524a1da.png", - "aggregators": ["CoinMarketCap", "LiFi", "Socket", "Rubic"], - "occurrences": 4 - }, - "0x04b5e13000c6e9a3255dc057091f3e3eeee7b0f0": { - "address": "0x04b5e13000c6e9a3255dc057091f3e3eeee7b0f0", - "symbol": "IFUND", - "decimals": 18, - "name": "UNIFUND", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x04b5e13000c6e9a3255dc057091f3e3eeee7b0f0.png", - "aggregators": ["CoinMarketCap", "LiFi", "Socket", "Rubic"], - "occurrences": 4 - }, - "0x06a00715e6f92210af9d7680b584931faf71a833": { - "address": "0x06a00715e6f92210af9d7680b584931faf71a833", - "symbol": "XNL", - "decimals": 18, - "name": "Chronicle", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x06a00715e6f92210af9d7680b584931faf71a833.png", - "aggregators": ["CoinMarketCap", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0x29fa1fee0f4f0ab0e36ef7ab8d7a35439ec6be75": { - "address": "0x29fa1fee0f4f0ab0e36ef7ab8d7a35439ec6be75", - "symbol": "DVT", - "decimals": 18, - "name": "SafeStake", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x29fa1fee0f4f0ab0e36ef7ab8d7a35439ec6be75.png", - "aggregators": ["CoinMarketCap", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0x7fbec0bb6a7152e77c30d005b5d49cbc08a602c3": { - "address": "0x7fbec0bb6a7152e77c30d005b5d49cbc08a602c3", - "symbol": "DDOS", - "decimals": 18, - "name": "Disbalancer", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x7fbec0bb6a7152e77c30d005b5d49cbc08a602c3.png", - "aggregators": ["CoinMarketCap", "Socket", "Rubic", "Rango"], - "occurrences": 4 - }, - "0x741b0428efdf4372a8df6fb54b018db5e5ab7710": { - "address": "0x741b0428efdf4372a8df6fb54b018db5e5ab7710", - "symbol": "ARTX", - "decimals": 18, - "name": "ARTX", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x741b0428efdf4372a8df6fb54b018db5e5ab7710.png", - "aggregators": ["CoinMarketCap", "Socket", "Rubic", "Rango"], - "occurrences": 4 - }, - "0xe87e15b9c7d989474cb6d8c56b3db4efad5b21e8": { - "address": "0xe87e15b9c7d989474cb6d8c56b3db4efad5b21e8", - "symbol": "HOKK", - "decimals": 18, - "name": "HOKK Finance", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xe87e15b9c7d989474cb6d8c56b3db4efad5b21e8.png", - "aggregators": ["CoinMarketCap", "Socket", "Rubic", "Sonarwatch"], - "occurrences": 4 - }, - "0x35872fea6a4843facbcdbce99e3b69596a3680b8": { - "address": "0x35872fea6a4843facbcdbce99e3b69596a3680b8", - "symbol": "1337", - "decimals": 4, - "name": "1337", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x35872fea6a4843facbcdbce99e3b69596a3680b8.png", - "aggregators": ["CoinMarketCap", "LiFi", "Socket", "Rubic"], - "occurrences": 4 - }, - "0x9af15d7b8776fa296019979e70a5be53c714a7ec": { - "address": "0x9af15d7b8776fa296019979e70a5be53c714a7ec", - "symbol": "EVN", - "decimals": 18, - "name": "Evn Token", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x9af15d7b8776fa296019979e70a5be53c714a7ec.png", - "aggregators": ["CoinMarketCap", "1inch", "Rubic", "Rango"], - "occurrences": 4 - }, - "0xedeec5691f23e4914cf0183a4196bbeb30d027a0": { - "address": "0xedeec5691f23e4914cf0183a4196bbeb30d027a0", - "symbol": "WSTA", - "decimals": 18, - "name": "Wrapped Statera", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xedeec5691f23e4914cf0183a4196bbeb30d027a0.png", - "aggregators": ["CoinMarketCap", "Socket", "Rubic", "Rango"], - "occurrences": 4 - }, - "0xaf691508ba57d416f895e32a1616da1024e882d2": { - "address": "0xaf691508ba57d416f895e32a1616da1024e882d2", - "symbol": "PNODE", - "decimals": 18, - "name": "Pinknode Token", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xaf691508ba57d416f895e32a1616da1024e882d2.png", - "aggregators": ["CoinMarketCap", "LiFi", "Socket", "Rubic"], - "occurrences": 4 - }, - "0xec5483804e637d45cde22fa0869656b64b5ab1ab": { - "address": "0xec5483804e637d45cde22fa0869656b64b5ab1ab", - "symbol": "ACE", - "decimals": 18, - "name": "Acent", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xec5483804e637d45cde22fa0869656b64b5ab1ab.png", - "aggregators": ["CoinMarketCap", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0x94e0bab2f6ab1f19f4750e42d7349f2740513ad5": { - "address": "0x94e0bab2f6ab1f19f4750e42d7349f2740513ad5", - "symbol": "UNIC", - "decimals": 18, - "name": "UNIC", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x94e0bab2f6ab1f19f4750e42d7349f2740513ad5.png", - "aggregators": ["CoinMarketCap", "LiFi", "Socket", "Rubic"], - "occurrences": 4 - }, - "0x01e0e2e61f554ecaaec0cc933e739ad90f24a86d": { - "address": "0x01e0e2e61f554ecaaec0cc933e739ad90f24a86d", - "symbol": "GTON", - "decimals": 18, - "name": "GTON", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x01e0e2e61f554ecaaec0cc933e739ad90f24a86d.png", - "aggregators": ["Metamask", "Rubic", "Rango", "SushiSwap"], - "occurrences": 4 - }, - "0x456d8f0d25a4e787ee60c401f8b963a465148f70": { - "address": "0x456d8f0d25a4e787ee60c401f8b963a465148f70", - "symbol": "CAVA", - "decimals": 9, - "name": "Cavapoo", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x456d8f0d25a4e787ee60c401f8b963a465148f70.png", - "aggregators": ["CoinMarketCap", "1inch", "Rubic", "Rango"], - "occurrences": 4 - }, - "0x5c8c8d560048f34e5f7f8ad71f2f81a89dbd273e": { - "address": "0x5c8c8d560048f34e5f7f8ad71f2f81a89dbd273e", - "symbol": "CART", - "decimals": 18, - "name": "CryptoArt.Ai", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x5c8c8d560048f34e5f7f8ad71f2f81a89dbd273e.png", - "aggregators": ["CoinMarketCap", "Socket", "Rubic", "Rango"], - "occurrences": 4 - }, - "0x62959c699a52ec647622c91e79ce73344e4099f5": { - "address": "0x62959c699a52ec647622c91e79ce73344e4099f5", - "symbol": "DFA", - "decimals": 18, - "name": "DeFine", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x62959c699a52ec647622c91e79ce73344e4099f5.png", - "aggregators": ["CoinMarketCap", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0x5d843fa9495d23de997c394296ac7b4d721e841c": { - "address": "0x5d843fa9495d23de997c394296ac7b4d721e841c", - "symbol": "RELAY", - "decimals": 18, - "name": "Relay Token", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x5d843fa9495d23de997c394296ac7b4d721e841c.png", - "aggregators": ["CoinMarketCap", "LiFi", "Rubic", "Rango"], - "occurrences": 4 - }, - "0x3f9bec82c776c47405bcb38070d2395fd18f89d3": { - "address": "0x3f9bec82c776c47405bcb38070d2395fd18f89d3", - "symbol": "PHM", - "decimals": 18, - "name": "Phantom Protocol", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x3f9bec82c776c47405bcb38070d2395fd18f89d3.png", - "aggregators": ["CoinMarketCap", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0xaec65404ddc3af3c897ad89571d5772c1a695f22": { - "address": "0xaec65404ddc3af3c897ad89571d5772c1a695f22", - "symbol": "PHX", - "decimals": 18, - "name": "Phoenix Token", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xaec65404ddc3af3c897ad89571d5772c1a695f22.png", - "aggregators": ["CoinMarketCap", "Socket", "Rubic", "Rango"], - "occurrences": 4 - }, - "0xda9fdab21bc4a5811134a6e0ba6ca06624e67c07": { - "address": "0xda9fdab21bc4a5811134a6e0ba6ca06624e67c07", - "symbol": "QUIDD", - "decimals": 18, - "name": "Quidd", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xda9fdab21bc4a5811134a6e0ba6ca06624e67c07.png", - "aggregators": ["CoinMarketCap", "Socket", "Rubic", "Sonarwatch"], - "occurrences": 4 - }, - "0xc7ff1e126cc81e816915ff48c940ed9d4e6d05d6": { - "address": "0xc7ff1e126cc81e816915ff48c940ed9d4e6d05d6", - "symbol": "IJC", - "decimals": 18, - "name": "Ijas Coin", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xc7ff1e126cc81e816915ff48c940ed9d4e6d05d6.png", - "aggregators": ["CoinMarketCap", "Socket", "Rubic", "Rango"], - "occurrences": 4 - }, - "0xdf290b162a7d3e0a328cf198308d421954f08b94": { - "address": "0xdf290b162a7d3e0a328cf198308d421954f08b94", - "symbol": "BP", - "decimals": 18, - "name": "Beyond Protocol", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xdf290b162a7d3e0a328cf198308d421954f08b94.png", - "aggregators": ["CoinMarketCap", "Socket", "Rubic", "Rango"], - "occurrences": 4 - }, - "0xb31ef9e52d94d4120eb44fe1ddfde5b4654a6515": { - "address": "0xb31ef9e52d94d4120eb44fe1ddfde5b4654a6515", - "symbol": "DOSE", - "decimals": 18, - "name": "DOSE", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xb31ef9e52d94d4120eb44fe1ddfde5b4654a6515.png", - "aggregators": ["CoinMarketCap", "Socket", "Rubic", "Sonarwatch"], - "occurrences": 4 - }, - "0x58f9102bf53cf186682bd9a281d3cd3c616eec41": { - "address": "0x58f9102bf53cf186682bd9a281d3cd3c616eec41", - "symbol": "TRL", - "decimals": 18, - "name": "Triall", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x58f9102bf53cf186682bd9a281d3cd3c616eec41.png", - "aggregators": ["CoinMarketCap", "Socket", "Rubic", "Rango"], - "occurrences": 4 - }, - "0x0aa7efe4945db24d95ca6e117bba65ed326e291a": { - "address": "0x0aa7efe4945db24d95ca6e117bba65ed326e291a", - "symbol": "OJA", - "decimals": 18, - "name": "Ojamu", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x0aa7efe4945db24d95ca6e117bba65ed326e291a.png", - "aggregators": ["CoinMarketCap", "Socket", "Rubic", "Rango"], - "occurrences": 4 - }, - "0x61a35258107563f6b6f102ae25490901c8760b12": { - "address": "0x61a35258107563f6b6f102ae25490901c8760b12", - "symbol": "KITTY", - "decimals": 18, - "name": "Kitty Inu", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x61a35258107563f6b6f102ae25490901c8760b12.png", - "aggregators": ["CoinMarketCap", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0x187eff9690e1f1a61d578c7c492296eaab82701a": { - "address": "0x187eff9690e1f1a61d578c7c492296eaab82701a", - "symbol": "MOAR", - "decimals": 18, - "name": "MOAR Finance", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x187eff9690e1f1a61d578c7c492296eaab82701a.png", - "aggregators": ["CoinMarketCap", "LiFi", "Socket", "Rubic"], - "occurrences": 4 - }, - "0x0c3685559af6f3d20c501b1076a8056a0a14426a": { - "address": "0x0c3685559af6f3d20c501b1076a8056a0a14426a", - "symbol": "MINISAITAMA", - "decimals": 9, - "name": "mini SAITAMA", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x0c3685559af6f3d20c501b1076a8056a0a14426a.png", - "aggregators": ["CoinMarketCap", "1inch", "Socket", "Rubic"], - "occurrences": 4 - }, - "0x20a68f9e34076b2dc15ce726d7eebb83b694702d": { - "address": "0x20a68f9e34076b2dc15ce726d7eebb83b694702d", - "symbol": "ISLA", - "decimals": 18, - "name": "Defiville Island Token", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x20a68f9e34076b2dc15ce726d7eebb83b694702d.png", - "aggregators": ["CoinMarketCap", "LiFi", "Socket", "Rubic"], - "occurrences": 4 - }, - "0x08ba718f288c3b12b01146816bef9fa03cc635bc": { - "address": "0x08ba718f288c3b12b01146816bef9fa03cc635bc", - "symbol": "CENT", - "decimals": 18, - "name": "Centaurify", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x08ba718f288c3b12b01146816bef9fa03cc635bc.png", - "aggregators": ["CoinMarketCap", "Socket", "Rubic", "Rango"], - "occurrences": 4 - }, - "0x65def5029a0e7591e46b38742bfedd1fb7b24436": { - "address": "0x65def5029a0e7591e46b38742bfedd1fb7b24436", - "symbol": "KAE", - "decimals": 18, - "name": "Kanpeki", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x65def5029a0e7591e46b38742bfedd1fb7b24436.png", - "aggregators": ["Metamask", "Rubic", "Rango", "SushiSwap"], - "occurrences": 4 - }, - "0xfbcb5cbedeebcc55dcd136d34db1daaf74cf67e8": { - "address": "0xfbcb5cbedeebcc55dcd136d34db1daaf74cf67e8", - "symbol": "ANIM", - "decimals": 18, - "name": "Animalia", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xfbcb5cbedeebcc55dcd136d34db1daaf74cf67e8.png", - "aggregators": ["CoinMarketCap", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0x56694577564fdd577a0abb20fe95c1e2756c2a11": { - "address": "0x56694577564fdd577a0abb20fe95c1e2756c2a11", - "symbol": "ASW", - "decimals": 18, - "name": "AdaSwap", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x56694577564fdd577a0abb20fe95c1e2756c2a11.png", - "aggregators": ["CoinMarketCap", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0xb5c578947de0fd71303f71f2c3d41767438bd0de": { - "address": "0xb5c578947de0fd71303f71f2c3d41767438bd0de", - "symbol": "DEVT", - "decimals": 18, - "name": "Decentralized Eternal Virtual Traveller", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xb5c578947de0fd71303f71f2c3d41767438bd0de.png", - "aggregators": ["CoinMarketCap", "Socket", "Rubic", "Rango"], - "occurrences": 4 - }, - "0x9d71ce49ab8a0e6d2a1e7bfb89374c9392fd6804": { - "address": "0x9d71ce49ab8a0e6d2a1e7bfb89374c9392fd6804", - "symbol": "NVIR", - "decimals": 18, - "name": "NvirWorld", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x9d71ce49ab8a0e6d2a1e7bfb89374c9392fd6804.png", - "aggregators": ["CoinMarketCap", "Socket", "Rubic", "Sonarwatch"], - "occurrences": 4 - }, - "0xbc6e06778708177a18210181b073da747c88490a": { - "address": "0xbc6e06778708177a18210181b073da747c88490a", - "symbol": "SYNR", - "decimals": 18, - "name": "MOBLAND", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xbc6e06778708177a18210181b073da747c88490a.png", - "aggregators": ["CoinMarketCap", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0x9b83f827928abdf18cf1f7e67053572b9bceff3a": { - "address": "0x9b83f827928abdf18cf1f7e67053572b9bceff3a", - "symbol": "ARTEM", - "decimals": 18, - "name": "Artem", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x9b83f827928abdf18cf1f7e67053572b9bceff3a.png", - "aggregators": ["CoinMarketCap", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0x758b4684be769e92eefea93f60dda0181ea303ec": { - "address": "0x758b4684be769e92eefea93f60dda0181ea303ec", - "symbol": "PHONON", - "decimals": 18, - "name": "Phonon DAO", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x758b4684be769e92eefea93f60dda0181ea303ec.png", - "aggregators": ["CoinMarketCap", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0xba6b0dbb2ba8daa8f5d6817946393aef8d3a4487": { - "address": "0xba6b0dbb2ba8daa8f5d6817946393aef8d3a4487", - "symbol": "HSF", - "decimals": 18, - "name": "Hillstone Finance", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xba6b0dbb2ba8daa8f5d6817946393aef8d3a4487.png", - "aggregators": ["CoinMarketCap", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0x02e7ac540409d32c90bfb51114003a9e1ff0249c": { - "address": "0x02e7ac540409d32c90bfb51114003a9e1ff0249c", - "symbol": "JPG", - "decimals": 18, - "name": "JPG NFT Index", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x02e7ac540409d32c90bfb51114003a9e1ff0249c.png", - "aggregators": ["CoinMarketCap", "LiFi", "Socket", "Rubic"], - "occurrences": 4 - }, - "0x3fab0bbaa03bceaf7c49e2b12877db0142be65fc": { - "address": "0x3fab0bbaa03bceaf7c49e2b12877db0142be65fc", - "symbol": "CAST", - "decimals": 8, - "name": "Castello Coin", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x3fab0bbaa03bceaf7c49e2b12877db0142be65fc.png", - "aggregators": ["CoinMarketCap", "LiFi", "Rubic", "Rango"], - "occurrences": 4 - }, - "0xf5f06ffa53ad7f5914f493f16e57b56c8dd2ea80": { - "address": "0xf5f06ffa53ad7f5914f493f16e57b56c8dd2ea80", - "symbol": "JELLY", - "decimals": 18, - "name": "Jelly Token", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xf5f06ffa53ad7f5914f493f16e57b56c8dd2ea80.png", - "aggregators": ["CoinMarketCap", "Rubic", "Rango", "SushiSwap"], - "occurrences": 4 - }, - "0x71a28feaee902966dc8d355e7b8aa427d421e7e0": { - "address": "0x71a28feaee902966dc8d355e7b8aa427d421e7e0", - "symbol": "LUNCH", - "decimals": 18, - "name": "LunchDao", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x71a28feaee902966dc8d355e7b8aa427d421e7e0.png", - "aggregators": ["CoinMarketCap", "Socket", "Rubic", "Rango"], - "occurrences": 4 - }, - "0xf9d4daae1300cff251979722c4a3c45857973079": { - "address": "0xf9d4daae1300cff251979722c4a3c45857973079", - "symbol": "CASTLE", - "decimals": 18, - "name": "bitcastle", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xf9d4daae1300cff251979722c4a3c45857973079.png", - "aggregators": ["CoinMarketCap", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0x0000000000300dd8b0230efcfef136ecdf6abcde": { - "address": "0x0000000000300dd8b0230efcfef136ecdf6abcde", - "symbol": "DGNX", - "decimals": 18, - "name": "DegenX", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x0000000000300dd8b0230efcfef136ecdf6abcde.png", - "aggregators": ["CoinMarketCap", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0xe4dae00bc1c46ea2f44ae71b1beb8b171c15d812": { - "address": "0xe4dae00bc1c46ea2f44ae71b1beb8b171c15d812", - "symbol": "PRMX", - "decimals": 18, - "name": "PREMA", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xe4dae00bc1c46ea2f44ae71b1beb8b171c15d812.png", - "aggregators": ["Metamask", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0x3be7bf1a5f23bd8336787d0289b70602f1940875": { - "address": "0x3be7bf1a5f23bd8336787d0289b70602f1940875", - "symbol": "VIDT", - "decimals": 18, - "name": "VIDT DAO", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x3be7bf1a5f23bd8336787d0289b70602f1940875.png", - "aggregators": ["Metamask", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0xd7c9f0e536dc865ae858b0c0453fe76d13c3beac": { - "address": "0xd7c9f0e536dc865ae858b0c0453fe76d13c3beac", - "symbol": "XAI", - "decimals": 18, - "name": "XAI Stablecoin", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xd7c9f0e536dc865ae858b0c0453fe76d13c3beac.png", - "aggregators": ["CoinMarketCap", "Socket", "Rubic", "Rango"], - "occurrences": 4 - }, - "0x9d9e399e5385e2b9a58d4f775a1e16441b571afb": { - "address": "0x9d9e399e5385e2b9a58d4f775a1e16441b571afb", - "symbol": "METANO", - "decimals": 18, - "name": "Metano", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x9d9e399e5385e2b9a58d4f775a1e16441b571afb.png", - "aggregators": ["CoinMarketCap", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0x9b110fda4e20db18ad7052f8468a455de7449eb6": { - "address": "0x9b110fda4e20db18ad7052f8468a455de7449eb6", - "symbol": "RIA", - "decimals": 18, - "name": "Calvaria DoE", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x9b110fda4e20db18ad7052f8468a455de7449eb6.png", - "aggregators": ["CoinMarketCap", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0x41c21693e60fc1a5dbb7c50e54e7a6016aa44c99": { - "address": "0x41c21693e60fc1a5dbb7c50e54e7a6016aa44c99", - "symbol": "SIMP", - "decimals": 18, - "name": "SO-COL", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x41c21693e60fc1a5dbb7c50e54e7a6016aa44c99.png", - "aggregators": ["CoinMarketCap", "Socket", "Rubic", "Rango"], - "occurrences": 4 - }, - "0xe7ef051c6ea1026a70967e8f04da143c67fa4e1f": { - "address": "0xe7ef051c6ea1026a70967e8f04da143c67fa4e1f", - "symbol": "VETME", - "decimals": 9, - "name": "VetMe", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xe7ef051c6ea1026a70967e8f04da143c67fa4e1f.png", - "aggregators": ["CoinMarketCap", "Socket", "Rubic", "Sonarwatch"], - "occurrences": 4 - }, - "0x4236f8aaf2b1f3a28420eb15b8e0ddf63201a95e": { - "address": "0x4236f8aaf2b1f3a28420eb15b8e0ddf63201a95e", - "symbol": "BMDA", - "decimals": 18, - "name": "Bermuda", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x4236f8aaf2b1f3a28420eb15b8e0ddf63201a95e.png", - "aggregators": ["CoinMarketCap", "1inch", "Socket", "Rubic"], - "occurrences": 4 - }, - "0x628ebc64a38269e031afbdd3c5ba857483b5d048": { - "address": "0x628ebc64a38269e031afbdd3c5ba857483b5d048", - "symbol": "LSETH", - "decimals": 18, - "name": "Liquid Staked ETH", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x628ebc64a38269e031afbdd3c5ba857483b5d048.png", - "aggregators": ["CoinMarketCap", "LiFi", "Socket", "Rubic"], - "occurrences": 4 - }, - "0xa89bf95c5f15a847c8eb8d348cd7fed719ad7d80": { - "address": "0xa89bf95c5f15a847c8eb8d348cd7fed719ad7d80", - "symbol": "AI", - "decimals": 18, - "name": "Chat AI", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xa89bf95c5f15a847c8eb8d348cd7fed719ad7d80.png", - "aggregators": ["CoinMarketCap", "Socket", "Rubic", "Rango"], - "occurrences": 4 - }, - "0x574d22e2555cac0ce71e44778f6de2e7487ae229": { - "address": "0x574d22e2555cac0ce71e44778f6de2e7487ae229", - "symbol": "SOON", - "decimals": 18, - "name": "SoonSwap", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x574d22e2555cac0ce71e44778f6de2e7487ae229.png", - "aggregators": ["CoinMarketCap", "Socket", "Rubic", "Rango"], - "occurrences": 4 - }, - "0xfac77a24e52b463ba9857d6b758ba41ae20e31ff": { - "address": "0xfac77a24e52b463ba9857d6b758ba41ae20e31ff", - "symbol": "LSD", - "decimals": 18, - "name": "LSDx Finance", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xfac77a24e52b463ba9857d6b758ba41ae20e31ff.png", - "aggregators": ["CoinMarketCap", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0x81994b9607e06ab3d5cf3afff9a67374f05f27d7": { - "address": "0x81994b9607e06ab3d5cf3afff9a67374f05f27d7", - "symbol": "FUSDT", - "decimals": 8, - "name": "Flux USDT", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x81994b9607e06ab3d5cf3afff9a67374f05f27d7.png", - "aggregators": ["CoinMarketCap", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0xe973e453977195422b48e1852a207b7ee9c913c7": { - "address": "0xe973e453977195422b48e1852a207b7ee9c913c7", - "symbol": "AD", - "decimals": 18, - "name": "ADreward", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xe973e453977195422b48e1852a207b7ee9c913c7.png", - "aggregators": ["CoinMarketCap", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0xa15865d9de09cb96aaa3a9081b3dfc8481f07d33": { - "address": "0xa15865d9de09cb96aaa3a9081b3dfc8481f07d33", - "symbol": "POPE", - "decimals": 18, - "name": "Popecoin", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xa15865d9de09cb96aaa3a9081b3dfc8481f07d33.png", - "aggregators": ["CoinMarketCap", "Socket", "Rubic", "Rango"], - "occurrences": 4 - }, - "0x44aad22afbb2606d7828ca1f8f9e5af00e779ae1": { - "address": "0x44aad22afbb2606d7828ca1f8f9e5af00e779ae1", - "symbol": "SIMPSON", - "decimals": 9, - "name": "Homer", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x44aad22afbb2606d7828ca1f8f9e5af00e779ae1.png", - "aggregators": ["CoinMarketCap", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0xf0edac27aa3e85e2d176f689b0025f90c154393a": { - "address": "0xf0edac27aa3e85e2d176f689b0025f90c154393a", - "symbol": "LOVESNOOPY", - "decimals": 18, - "name": "I LOVE SNOOPY", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xf0edac27aa3e85e2d176f689b0025f90c154393a.png", - "aggregators": ["CoinMarketCap", "Socket", "Rubic", "Sonarwatch"], - "occurrences": 4 - }, - "0x9c0bd34bebc33a0e898554cfc91e8a84c728bf9f": { - "address": "0x9c0bd34bebc33a0e898554cfc91e8a84c728bf9f", - "symbol": "PISS", - "decimals": 18, - "name": "Piss Coin", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x9c0bd34bebc33a0e898554cfc91e8a84c728bf9f.png", - "aggregators": ["CoinMarketCap", "Socket", "Rubic", "Rango"], - "occurrences": 4 - }, - "0xb44b653f147569d88a684cbf6549e1968e8b2a1d": { - "address": "0xb44b653f147569d88a684cbf6549e1968e8b2a1d", - "symbol": "2DAI", - "decimals": 18, - "name": "2DAI io", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xb44b653f147569d88a684cbf6549e1968e8b2a1d.png", - "aggregators": ["CoinMarketCap", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0xddf688e96cb2531a69bf6347c02f069266c1aa81": { - "address": "0xddf688e96cb2531a69bf6347c02f069266c1aa81", - "symbol": "MMVG", - "decimals": 18, - "name": "MEMEVENGERS", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xddf688e96cb2531a69bf6347c02f069266c1aa81.png", - "aggregators": ["CoinMarketCap", "Socket", "Rubic", "Rango"], - "occurrences": 4 - }, - "0x84412819ae69b10250d0d54d58f454018f1c8a42": { - "address": "0x84412819ae69b10250d0d54d58f454018f1c8a42", - "symbol": "DUNG", - "decimals": 18, - "name": "Scarab Tools", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x84412819ae69b10250d0d54d58f454018f1c8a42.png", - "aggregators": ["CoinMarketCap", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0x5eca7b975e34567d9460fa613013a7a6993ad185": { - "address": "0x5eca7b975e34567d9460fa613013a7a6993ad185", - "symbol": "BS", - "decimals": 18, - "name": "Blacksmith Token", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x5eca7b975e34567d9460fa613013a7a6993ad185.png", - "aggregators": ["CoinMarketCap", "Socket", "Rubic", "Rango"], - "occurrences": 4 - }, - "0x8b227d72570d3ead66014bca8305cbef7f90d1ee": { - "address": "0x8b227d72570d3ead66014bca8305cbef7f90d1ee", - "symbol": "LIZA", - "decimals": 18, - "name": "Liza", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x8b227d72570d3ead66014bca8305cbef7f90d1ee.png", - "aggregators": ["CoinMarketCap", "Socket", "Rubic", "Rango"], - "occurrences": 4 - }, - "0xb459f7204a8ac84f9e7758d6d839ebd01670e35c": { - "address": "0xb459f7204a8ac84f9e7758d6d839ebd01670e35c", - "symbol": "LOTTY", - "decimals": 18, - "name": "Lotty", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xb459f7204a8ac84f9e7758d6d839ebd01670e35c.png", - "aggregators": ["CoinMarketCap", "Socket", "Rubic", "Rango"], - "occurrences": 4 - }, - "0x0c48250eb1f29491f1efbeec0261eb556f0973c7": { - "address": "0x0c48250eb1f29491f1efbeec0261eb556f0973c7", - "symbol": "AIMBOT", - "decimals": 18, - "name": "Aimbot AI", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x0c48250eb1f29491f1efbeec0261eb556f0973c7.png", - "aggregators": ["CoinMarketCap", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0xa3cb87080e68ad54d00573983d935fa85d168fde": { - "address": "0xa3cb87080e68ad54d00573983d935fa85d168fde", - "symbol": "IBIT", - "decimals": 8, - "name": "InfinityBit Token", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xa3cb87080e68ad54d00573983d935fa85d168fde.png", - "aggregators": ["CoinMarketCap", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0xf62ac0fcae17f9195280ced4de978313effe2daa": { - "address": "0xf62ac0fcae17f9195280ced4de978313effe2daa", - "symbol": "CHART", - "decimals": 18, - "name": "Nchart Token", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xf62ac0fcae17f9195280ced4de978313effe2daa.png", - "aggregators": ["CoinMarketCap", "Socket", "Rubic", "Rango"], - "occurrences": 4 - }, - "0x7b744eea1deca2f1b7b31f15ba036fa1759452d7": { - "address": "0x7b744eea1deca2f1b7b31f15ba036fa1759452d7", - "symbol": "HIPP", - "decimals": 18, - "name": "El Hippo", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x7b744eea1deca2f1b7b31f15ba036fa1759452d7.png", - "aggregators": ["CoinMarketCap", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0x000000e29fa2bd3e5c215ffc71aa66b29c9769a2": { - "address": "0x000000e29fa2bd3e5c215ffc71aa66b29c9769a2", - "symbol": "ETE", - "decimals": 18, - "name": "Ethereum Express", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x000000e29fa2bd3e5c215ffc71aa66b29c9769a2.png", - "aggregators": ["CoinMarketCap", "Socket", "Rubic", "Rango"], - "occurrences": 4 - }, - "0x9b06f3c5de42d4623d7a2bd940ec735103c68a76": { - "address": "0x9b06f3c5de42d4623d7a2bd940ec735103c68a76", - "symbol": "VOLTA", - "decimals": 18, - "name": "Volta Club", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x9b06f3c5de42d4623d7a2bd940ec735103c68a76.png", - "aggregators": ["CoinMarketCap", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0x3ec15c4745e21ab3831d1f51c492e3b5582d6239": { - "address": "0x3ec15c4745e21ab3831d1f51c492e3b5582d6239", - "symbol": "PICKLE", - "decimals": 18, - "name": "PICKLE", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x3ec15c4745e21ab3831d1f51c492e3b5582d6239.png", - "aggregators": ["CoinMarketCap", "Socket", "Rubic", "Rango"], - "occurrences": 4 - }, - "0x017e9db34fc69af0dc7c7b4b33511226971cddc7": { - "address": "0x017e9db34fc69af0dc7c7b4b33511226971cddc7", - "symbol": "OCD", - "decimals": 18, - "name": "On Chain Dynamics", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x017e9db34fc69af0dc7c7b4b33511226971cddc7.png", - "aggregators": ["CoinMarketCap", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0x4501a82790ef2587dfeb93dc038541228e516597": { - "address": "0x4501a82790ef2587dfeb93dc038541228e516597", - "symbol": "HYDRA", - "decimals": 18, - "name": "Hydra", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x4501a82790ef2587dfeb93dc038541228e516597.png", - "aggregators": ["CoinMarketCap", "Socket", "Rubic", "Rango"], - "occurrences": 4 - }, - "0xb504035a11e672e12a099f32b1672b9c4a78b22f": { - "address": "0xb504035a11e672e12a099f32b1672b9c4a78b22f", - "symbol": "SAFEREUM", - "decimals": 18, - "name": "Safereum", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xb504035a11e672e12a099f32b1672b9c4a78b22f.png", - "aggregators": ["CoinMarketCap", "Socket", "Rubic", "Rango"], - "occurrences": 4 - }, - "0x7cdbfc86a0bfa20f133748b0cf5cea5b787b182c": { - "address": "0x7cdbfc86a0bfa20f133748b0cf5cea5b787b182c", - "symbol": "TKST", - "decimals": 18, - "name": "TokenSight", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x7cdbfc86a0bfa20f133748b0cf5cea5b787b182c.png", - "aggregators": ["CoinMarketCap", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0xf0dc9fc0669f068e04ad79f7d70618d3f9aad439": { - "address": "0xf0dc9fc0669f068e04ad79f7d70618d3f9aad439", - "symbol": "OASIS", - "decimals": 18, - "name": "Oasis Metaverse", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xf0dc9fc0669f068e04ad79f7d70618d3f9aad439.png", - "aggregators": ["CoinMarketCap", "Socket", "Rubic", "Rango"], - "occurrences": 4 - }, - "0x5da151b95657e788076d04d56234bd93e409cb09": { - "address": "0x5da151b95657e788076d04d56234bd93e409cb09", - "symbol": "OTSEA", - "decimals": 18, - "name": "OTSea", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x5da151b95657e788076d04d56234bd93e409cb09.png", - "aggregators": ["CoinMarketCap", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0x4f4a556361b8b4869f97b8709ff47c1b057ea13b": { - "address": "0x4f4a556361b8b4869f97b8709ff47c1b057ea13b", - "symbol": "TRUMP", - "decimals": 9, - "name": "MAGA", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x4f4a556361b8b4869f97b8709ff47c1b057ea13b.png", - "aggregators": ["CoinMarketCap", "Socket", "Rubic", "Rango"], - "occurrences": 4 - }, - "0xbfb2b6870501a6ff17121d676a0a45a38c9eed1e": { - "address": "0xbfb2b6870501a6ff17121d676a0a45a38c9eed1e", - "symbol": "TOAD", - "decimals": 9, - "name": "LuckyToadv3", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xbfb2b6870501a6ff17121d676a0a45a38c9eed1e.png", - "aggregators": ["CoinMarketCap", "Socket", "Rubic", "Rango"], - "occurrences": 4 - }, - "0xb281d84989c06e2a6ccdc5ea7bf1663c79a1c31a": { - "address": "0xb281d84989c06e2a6ccdc5ea7bf1663c79a1c31a", - "symbol": "ZETA", - "decimals": 18, - "name": "stoicDAO", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xb281d84989c06e2a6ccdc5ea7bf1663c79a1c31a.png", - "aggregators": ["CoinMarketCap", "Socket", "Rubic", "Rango"], - "occurrences": 4 - }, - "0xf7498c98789957f4ee53b3e37ff5b7ef8a6cfc7b": { - "address": "0xf7498c98789957f4ee53b3e37ff5b7ef8a6cfc7b", - "symbol": "0XDEV", - "decimals": 18, - "name": "DEVAI", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xf7498c98789957f4ee53b3e37ff5b7ef8a6cfc7b.png", - "aggregators": ["CoinMarketCap", "Socket", "Rubic", "Sonarwatch"], - "occurrences": 4 - }, - "0x20fcefa41045080764c48c2b9429e44c644e5dea": { - "address": "0x20fcefa41045080764c48c2b9429e44c644e5dea", - "symbol": "FOOX", - "decimals": 18, - "name": "Foox", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x20fcefa41045080764c48c2b9429e44c644e5dea.png", - "aggregators": ["CoinMarketCap", "Socket", "Rubic", "Rango"], - "occurrences": 4 - }, - "0x5713c26280647adad2f25bb54376943ecaa9d8e3": { - "address": "0x5713c26280647adad2f25bb54376943ecaa9d8e3", - "symbol": "XMAS", - "decimals": 9, - "name": "Elon Xmas", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x5713c26280647adad2f25bb54376943ecaa9d8e3.png", - "aggregators": ["CoinMarketCap", "Socket", "Rubic", "Rango"], - "occurrences": 4 - }, - "0x6553565eac5daa9bfc5e2892b36291634c9b2ad6": { - "address": "0x6553565eac5daa9bfc5e2892b36291634c9b2ad6", - "symbol": "RAKE", - "decimals": 18, - "name": "Rake com", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x6553565eac5daa9bfc5e2892b36291634c9b2ad6.png", - "aggregators": ["CoinMarketCap", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0x4c4a50a61bed3b9024d8ffc1f1d168dc8cb1c689": { - "address": "0x4c4a50a61bed3b9024d8ffc1f1d168dc8cb1c689", - "symbol": "BARC", - "decimals": 9, - "name": "The Blu Arctic Water Company", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x4c4a50a61bed3b9024d8ffc1f1d168dc8cb1c689.png", - "aggregators": ["CoinMarketCap", "Socket", "Rubic", "Rango"], - "occurrences": 4 - }, - "0x3a97e00b48d56bd5e0502e1a2a8c036a040e1b99": { - "address": "0x3a97e00b48d56bd5e0502e1a2a8c036a040e1b99", - "symbol": "JBOT", - "decimals": 9, - "name": "JACKBOT", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x3a97e00b48d56bd5e0502e1a2a8c036a040e1b99.png", - "aggregators": ["CoinMarketCap", "Socket", "Rubic", "Rango"], - "occurrences": 4 - }, - "0x912529007bc0d2a5464a6a211ebfe217dfb75dff": { - "address": "0x912529007bc0d2a5464a6a211ebfe217dfb75dff", - "symbol": "CAD", - "decimals": 18, - "name": "CAD", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x912529007bc0d2a5464a6a211ebfe217dfb75dff.png", - "aggregators": ["CoinMarketCap", "Socket", "Rubic", "Rango"], - "occurrences": 4 - }, - "0x18e5f92103d1b34623738ee79214b1659f2ee109": { - "address": "0x18e5f92103d1b34623738ee79214b1659f2ee109", - "symbol": "WCELL", - "decimals": 18, - "name": "Wrapped CellMates", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x18e5f92103d1b34623738ee79214b1659f2ee109.png", - "aggregators": ["CoinMarketCap", "Socket", "Rubic", "Rango"], - "occurrences": 4 - }, - "0x3250577e12b9469915c1fa3a71c22817ca44c4d9": { - "address": "0x3250577e12b9469915c1fa3a71c22817ca44c4d9", - "symbol": "SOC", - "decimals": 18, - "name": "SOC", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x3250577e12b9469915c1fa3a71c22817ca44c4d9.png", - "aggregators": ["CoinMarketCap", "Socket", "Rubic", "Rango"], - "occurrences": 4 - }, - "0x65e9ed59a6c03e97ae984b6c4ff912448ebd3566": { - "address": "0x65e9ed59a6c03e97ae984b6c4ff912448ebd3566", - "symbol": "RYOSHI", - "decimals": 18, - "name": "Ryoshi", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x65e9ed59a6c03e97ae984b6c4ff912448ebd3566.png", - "aggregators": ["CoinMarketCap", "Socket", "Rubic", "Rango"], - "occurrences": 4 - }, - "0x72831eebef4e3f3697a6b216e3713958210ae8cd": { - "address": "0x72831eebef4e3f3697a6b216e3713958210ae8cd", - "symbol": "BLOB", - "decimals": 18, - "name": "Blob", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x72831eebef4e3f3697a6b216e3713958210ae8cd.png", - "aggregators": ["CoinMarketCap", "Socket", "Rubic", "Rango"], - "occurrences": 4 - }, - "0x3cb48aeb3d1abadc23d2d8a6894b3a68338381c2": { - "address": "0x3cb48aeb3d1abadc23d2d8a6894b3a68338381c2", - "symbol": "PALAI", - "decimals": 9, - "name": "PaladinAI", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x3cb48aeb3d1abadc23d2d8a6894b3a68338381c2.png", - "aggregators": ["CoinMarketCap", "Socket", "Rubic", "Sonarwatch"], - "occurrences": 4 - }, - "0x891de5f139791ddf9dbabf519cfe2a049f8fc6d3": { - "address": "0x891de5f139791ddf9dbabf519cfe2a049f8fc6d3", - "symbol": "DIBBLE", - "decimals": 18, - "name": "Dibbles", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x891de5f139791ddf9dbabf519cfe2a049f8fc6d3.png", - "aggregators": ["CoinMarketCap", "Socket", "Rubic", "Rango"], - "occurrences": 4 - }, - "0x23b586c0e79fb291ccb0244d468847eae9bb90f6": { - "address": "0x23b586c0e79fb291ccb0244d468847eae9bb90f6", - "symbol": "R4RE", - "decimals": 18, - "name": "R4RE Token", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x23b586c0e79fb291ccb0244d468847eae9bb90f6.png", - "aggregators": ["CoinMarketCap", "Socket", "Rubic", "Rango"], - "occurrences": 4 - }, - "0x03a9d7c8caf836de35666c5f7e317306b54fdd4e": { - "address": "0x03a9d7c8caf836de35666c5f7e317306b54fdd4e", - "symbol": "JCC", - "decimals": 18, - "name": "JC Coin", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x03a9d7c8caf836de35666c5f7e317306b54fdd4e.png", - "aggregators": ["CoinMarketCap", "Socket", "Rubic", "Rango"], - "occurrences": 4 - }, - "0x9c2b4b0da5ebd20c29ef20758064554a55a88b68": { - "address": "0x9c2b4b0da5ebd20c29ef20758064554a55a88b68", - "symbol": "BYTE", - "decimals": 18, - "name": "ByteAI", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x9c2b4b0da5ebd20c29ef20758064554a55a88b68.png", - "aggregators": ["CoinMarketCap", "Socket", "Rubic", "Sonarwatch"], - "occurrences": 4 - }, - "0x857de36f92330e1b9a21e8745c692f2ce13866cb": { - "address": "0x857de36f92330e1b9a21e8745c692f2ce13866cb", - "symbol": "MEMAGX", - "decimals": 18, - "name": "Meta Masters Guild Games", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x857de36f92330e1b9a21e8745c692f2ce13866cb.png", - "aggregators": ["CoinMarketCap", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0x96884fcaac082db4b32601ada5b177fd6cbffa88": { - "address": "0x96884fcaac082db4b32601ada5b177fd6cbffa88", - "symbol": "ZKLK", - "decimals": 18, - "name": "ZkLock", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x96884fcaac082db4b32601ada5b177fd6cbffa88.png", - "aggregators": ["CoinMarketCap", "Socket", "Rubic", "Rango"], - "occurrences": 4 - }, - "0xfea156a736dee69da8740185f7d38e14f2d99ae7": { - "address": "0xfea156a736dee69da8740185f7d38e14f2d99ae7", - "symbol": "QRO", - "decimals": 18, - "name": "Querio", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xfea156a736dee69da8740185f7d38e14f2d99ae7.png", - "aggregators": ["CoinMarketCap", "Socket", "Rubic", "Rango"], - "occurrences": 4 - }, - "0x9028c2a7f8c8530450549915c5338841db2a5fea": { - "address": "0x9028c2a7f8c8530450549915c5338841db2a5fea", - "symbol": "FOMO", - "decimals": 18, - "name": "FOMO Network", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x9028c2a7f8c8530450549915c5338841db2a5fea.png", - "aggregators": ["CoinMarketCap", "Socket", "Rubic", "Rango"], - "occurrences": 4 - }, - "0x6efb32bc7893b793603e39643d86594ce3638157": { - "address": "0x6efb32bc7893b793603e39643d86594ce3638157", - "symbol": "CNDL", - "decimals": 18, - "name": "CandleAI", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x6efb32bc7893b793603e39643d86594ce3638157.png", - "aggregators": ["CoinMarketCap", "Socket", "Rubic", "Rango"], - "occurrences": 4 - }, - "0x9c4cf40b5b5c3a58761683e65a87902130eb1b7c": { - "address": "0x9c4cf40b5b5c3a58761683e65a87902130eb1b7c", - "symbol": "TME", - "decimals": 9, - "name": "Tate Stop", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x9c4cf40b5b5c3a58761683e65a87902130eb1b7c.png", - "aggregators": ["CoinMarketCap", "Socket", "Rubic", "Rango"], - "occurrences": 4 - }, - "0x9ebb0895bd9c7c9dfab0d8d877c66ba613ac98ea": { - "address": "0x9ebb0895bd9c7c9dfab0d8d877c66ba613ac98ea", - "symbol": "MAGAA", - "decimals": 18, - "name": "MAGA Again", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x9ebb0895bd9c7c9dfab0d8d877c66ba613ac98ea.png", - "aggregators": ["CoinMarketCap", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0xd05f33b4fa630d6ba8a3ce75f7785439e6a3bb00": { - "address": "0xd05f33b4fa630d6ba8a3ce75f7785439e6a3bb00", - "symbol": "FLOCHI", - "decimals": 18, - "name": "Flochi INU", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xd05f33b4fa630d6ba8a3ce75f7785439e6a3bb00.png", - "aggregators": ["CoinMarketCap", "Socket", "Rubic", "Rango"], - "occurrences": 4 - }, - "0x2b8aac1630f7bc0c4b1ed8036c0fe0d71cb44709": { - "address": "0x2b8aac1630f7bc0c4b1ed8036c0fe0d71cb44709", - "symbol": "MASK", - "decimals": 9, - "name": "Wojak Mask", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x2b8aac1630f7bc0c4b1ed8036c0fe0d71cb44709.png", - "aggregators": ["CoinMarketCap", "Socket", "Rubic", "Sonarwatch"], - "occurrences": 4 - }, - "0x6b6ee7393f07b3dd1427b6848d3576f31c313127": { - "address": "0x6b6ee7393f07b3dd1427b6848d3576f31c313127", - "symbol": "BOMB", - "decimals": 18, - "name": "LollyBomb", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x6b6ee7393f07b3dd1427b6848d3576f31c313127.png", - "aggregators": ["CoinMarketCap", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0x974d796e0bea47038f39c3f98b1aa2c5240b5495": { - "address": "0x974d796e0bea47038f39c3f98b1aa2c5240b5495", - "symbol": "EAVE", - "decimals": 18, - "name": "EaveAI", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x974d796e0bea47038f39c3f98b1aa2c5240b5495.png", - "aggregators": ["CoinMarketCap", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0x426aedbed16726e3f220cb4fed4d4060b95cca46": { - "address": "0x426aedbed16726e3f220cb4fed4d4060b95cca46", - "symbol": "BAHAMAS", - "decimals": 18, - "name": "Bahamas", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x426aedbed16726e3f220cb4fed4d4060b95cca46.png", - "aggregators": ["CoinMarketCap", "Socket", "Rubic", "Rango"], - "occurrences": 4 - }, - "0x8c024cd50a94978537bde537a1fa25ad89444222": { - "address": "0x8c024cd50a94978537bde537a1fa25ad89444222", - "symbol": "PC", - "decimals": 18, - "name": "Peace Coin", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x8c024cd50a94978537bde537a1fa25ad89444222.png", - "aggregators": ["CoinMarketCap", "Socket", "Rubic", "Rango"], - "occurrences": 4 - }, - "0x03dcee0d21ab39614c768dab67bfc33b0fc0a047": { - "address": "0x03dcee0d21ab39614c768dab67bfc33b0fc0a047", - "symbol": "TRUMPCOIN", - "decimals": 18, - "name": "MAGA Fight for Trump", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x03dcee0d21ab39614c768dab67bfc33b0fc0a047.png", - "aggregators": ["CoinMarketCap", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0x15c12530382e8653904e81b8aad7ffdef55b0256": { - "address": "0x15c12530382e8653904e81b8aad7ffdef55b0256", - "symbol": "ACL", - "decimals": 18, - "name": "Auction Light", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x15c12530382e8653904e81b8aad7ffdef55b0256.png", - "aggregators": ["CoinMarketCap", "Socket", "Rubic", "Rango"], - "occurrences": 4 - }, - "0x181f2cbda1ad44de56baacbb41c8fe448a2036fe": { - "address": "0x181f2cbda1ad44de56baacbb41c8fe448a2036fe", - "symbol": "WIWI", - "decimals": 18, - "name": "Wiggly Willy", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x181f2cbda1ad44de56baacbb41c8fe448a2036fe.png", - "aggregators": ["CoinMarketCap", "Socket", "Rubic", "Rango"], - "occurrences": 4 - }, - "0x5b342f03d126314d925fa57a45654f92905e6451": { - "address": "0x5b342f03d126314d925fa57a45654f92905e6451", - "symbol": "MNTA", - "decimals": 18, - "name": "Moneta", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x5b342f03d126314d925fa57a45654f92905e6451.png", - "aggregators": ["CoinMarketCap", "Socket", "Rubic", "Sonarwatch"], - "occurrences": 4 - }, - "0x16950673c9817537e7cda10b482b90c0584c9101": { - "address": "0x16950673c9817537e7cda10b482b90c0584c9101", - "symbol": "TALES", - "decimals": 18, - "name": "Tales of Pepe", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x16950673c9817537e7cda10b482b90c0584c9101.png", - "aggregators": ["CoinMarketCap", "Socket", "Rubic", "Rango"], - "occurrences": 4 - }, - "0x0bffdd787c83235f6f0afa0faed42061a4619b7a": { - "address": "0x0bffdd787c83235f6f0afa0faed42061a4619b7a", - "symbol": "VUSD", - "decimals": 6, - "name": "Virtual USD", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x0bffdd787c83235f6f0afa0faed42061a4619b7a.png", - "aggregators": ["CoinMarketCap", "Socket", "Rubic", "Rango"], - "occurrences": 4 - }, - "0xc5f3bc77d4762258c99b8a80677d27f71b519398": { - "address": "0xc5f3bc77d4762258c99b8a80677d27f71b519398", - "symbol": "APE", - "decimals": 18, - "name": "Ape", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xc5f3bc77d4762258c99b8a80677d27f71b519398.png", - "aggregators": ["CoinMarketCap", "Socket", "Rubic", "Rango"], - "occurrences": 4 - }, - "0xd3c68968137317a57a9babeacc7707ec433548b4": { - "address": "0xd3c68968137317a57a9babeacc7707ec433548b4", - "symbol": "SOCIAL", - "decimals": 18, - "name": "Phavercoin", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xd3c68968137317a57a9babeacc7707ec433548b4.png", - "aggregators": ["CoinMarketCap", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0x72d4bc91fbd9b257eae62a5758288d9797c9a76a": { - "address": "0x72d4bc91fbd9b257eae62a5758288d9797c9a76a", - "symbol": "RUNEVM", - "decimals": 9, - "name": "RUNEVM", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x72d4bc91fbd9b257eae62a5758288d9797c9a76a.png", - "aggregators": ["CoinMarketCap", "Socket", "Rubic", "Rango"], - "occurrences": 4 - }, - "0x6494eaa7df086ad6c9a8a27341a8dc09d47305ba": { - "address": "0x6494eaa7df086ad6c9a8a27341a8dc09d47305ba", - "symbol": "SMOL", - "decimals": 18, - "name": "smol.game", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x6494eaa7df086ad6c9a8a27341a8dc09d47305ba.png", - "aggregators": ["CoinMarketCap", "Socket", "Rubic", "Rango"], - "occurrences": 4 - }, - "0xbbbbbbe1da5eab142b32f8887ee8d3872d847c20": { - "address": "0xbbbbbbe1da5eab142b32f8887ee8d3872d847c20", - "symbol": "BBONK", - "decimals": 18, - "name": "BitBonk", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xbbbbbbe1da5eab142b32f8887ee8d3872d847c20.png", - "aggregators": ["CoinMarketCap", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0x41d06390b935356b46ad6750bda30148ad2044a4": { - "address": "0x41d06390b935356b46ad6750bda30148ad2044a4", - "symbol": "HUSBY", - "decimals": 18, - "name": "HUSBY", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x41d06390b935356b46ad6750bda30148ad2044a4.png", - "aggregators": ["CoinMarketCap", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0x17b51b1da73a02db9dc20a71684dc3ea70a0dded": { - "address": "0x17b51b1da73a02db9dc20a71684dc3ea70a0dded", - "symbol": "FOXXY", - "decimals": 18, - "name": "FOXXY", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x17b51b1da73a02db9dc20a71684dc3ea70a0dded.png", - "aggregators": ["CoinMarketCap", "Socket", "Rubic", "Rango"], - "occurrences": 4 - }, - "0xd0dfca0b404e866dc9a3038bd2a545c6735d9fa9": { - "address": "0xd0dfca0b404e866dc9a3038bd2a545c6735d9fa9", - "symbol": "ABE", - "decimals": 18, - "name": "ABE", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xd0dfca0b404e866dc9a3038bd2a545c6735d9fa9.png", - "aggregators": ["CoinMarketCap", "Socket", "Rubic", "Rango"], - "occurrences": 4 - }, - "0x518c54fdc12ba593617160eca423f4c2cd3ecac3": { - "address": "0x518c54fdc12ba593617160eca423f4c2cd3ecac3", - "symbol": "STI", - "decimals": 18, - "name": "STI6900", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x518c54fdc12ba593617160eca423f4c2cd3ecac3.png", - "aggregators": ["CoinMarketCap", "Socket", "Rubic", "Rango"], - "occurrences": 4 - }, - "0x1caf237d7a2d103e3e9b1855988c01ac10344600": { - "address": "0x1caf237d7a2d103e3e9b1855988c01ac10344600", - "symbol": "LEXI", - "decimals": 9, - "name": "LexiAI", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x1caf237d7a2d103e3e9b1855988c01ac10344600.png", - "aggregators": ["CoinMarketCap", "Socket", "Rubic", "Sonarwatch"], - "occurrences": 4 - }, - "0x3d288a54e08fe41796556efdfc24c015fe47f74e": { - "address": "0x3d288a54e08fe41796556efdfc24c015fe47f74e", - "symbol": "WOLT", - "decimals": 18, - "name": "Wolt", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x3d288a54e08fe41796556efdfc24c015fe47f74e.png", - "aggregators": ["CoinMarketCap", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0x93181f0625329fc0f5c35d1670ceb541867acc65": { - "address": "0x93181f0625329fc0f5c35d1670ceb541867acc65", - "symbol": "STRA", - "decimals": 9, - "name": "Sentra", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x93181f0625329fc0f5c35d1670ceb541867acc65.png", - "aggregators": ["CoinMarketCap", "Socket", "Rubic", "Sonarwatch"], - "occurrences": 4 - }, - "0xffb1018eff5fc021e15215290732f02a89b008e7": { - "address": "0xffb1018eff5fc021e15215290732f02a89b008e7", - "symbol": "NOTI", - "decimals": 18, - "name": "Noti", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xffb1018eff5fc021e15215290732f02a89b008e7.png", - "aggregators": ["CoinMarketCap", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0x4b41a481a7a3e0396751aa49bee970b842fdaede": { - "address": "0x4b41a481a7a3e0396751aa49bee970b842fdaede", - "symbol": "KYRA", - "decimals": 9, - "name": "KYRA", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x4b41a481a7a3e0396751aa49bee970b842fdaede.png", - "aggregators": ["CoinMarketCap", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0xbb712c77b69256934cdf2f630a2317ac82570388": { - "address": "0xbb712c77b69256934cdf2f630a2317ac82570388", - "symbol": "CRIPPL", - "decimals": 18, - "name": "Wheelchair Cat", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xbb712c77b69256934cdf2f630a2317ac82570388.png", - "aggregators": ["CoinMarketCap", "Socket", "Rubic", "Rango"], - "occurrences": 4 - }, - "0xcc42b2b6d90e3747c2b8e62581183a88e3ca093a": { - "address": "0xcc42b2b6d90e3747c2b8e62581183a88e3ca093a", - "symbol": "LOTUS", - "decimals": 18, - "name": "LOTUS", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xcc42b2b6d90e3747c2b8e62581183a88e3ca093a.png", - "aggregators": ["CoinMarketCap", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0xfe4ee5ea324cda81fef5973f3cfc0a213879f2b2": { - "address": "0xfe4ee5ea324cda81fef5973f3cfc0a213879f2b2", - "symbol": "MEOW", - "decimals": 18, - "name": "Meow", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xfe4ee5ea324cda81fef5973f3cfc0a213879f2b2.png", - "aggregators": ["CoinMarketCap", "Socket", "Rubic", "Rango"], - "occurrences": 4 - }, - "0x81ad60e5dd6bd97edaa4adcc7237978b14adf4e6": { - "address": "0x81ad60e5dd6bd97edaa4adcc7237978b14adf4e6", - "symbol": "O", - "decimals": 18, - "name": "o.xyz", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x81ad60e5dd6bd97edaa4adcc7237978b14adf4e6.png", - "aggregators": ["CoinMarketCap", "Socket", "Rubic", "Rango"], - "occurrences": 4 - }, - "0x6cb25129314123bcd5adcdc844ceaeead65a0896": { - "address": "0x6cb25129314123bcd5adcdc844ceaeead65a0896", - "symbol": "CULTUR", - "decimals": 9, - "name": "CULTUR", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x6cb25129314123bcd5adcdc844ceaeead65a0896.png", - "aggregators": ["CoinMarketCap", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0x06113abcef9d163c026441b112e70c82ee1c4a79": { - "address": "0x06113abcef9d163c026441b112e70c82ee1c4a79", - "symbol": "OMIRA", - "decimals": 18, - "name": "Omira", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x06113abcef9d163c026441b112e70c82ee1c4a79.png", - "aggregators": ["CoinMarketCap", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0x78965b1c638a7ff408d1697a96d7b8e47bb7c75f": { - "address": "0x78965b1c638a7ff408d1697a96d7b8e47bb7c75f", - "symbol": "CPAL", - "decimals": 18, - "name": "Chainpal", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x78965b1c638a7ff408d1697a96d7b8e47bb7c75f.png", - "aggregators": ["CoinMarketCap", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0x5c162ec1c1679c67728d824defc0b415a97539e5": { - "address": "0x5c162ec1c1679c67728d824defc0b415a97539e5", - "symbol": "CRAZE", - "decimals": 18, - "name": "Craze", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x5c162ec1c1679c67728d824defc0b415a97539e5.png", - "aggregators": ["CoinMarketCap", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0x9a0242b7a33dacbe40edb927834f96eb39f8fbcb": { - "address": "0x9a0242b7a33dacbe40edb927834f96eb39f8fbcb", - "symbol": "BAX", - "decimals": 18, - "name": "BABB", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x9a0242b7a33dacbe40edb927834f96eb39f8fbcb.png", - "aggregators": ["Metamask", "Socket", "Rubic", "Bancor"], - "occurrences": 4 - }, - "0xfa1a856cfa3409cfa145fa4e20eb270df3eb21ab": { - "address": "0xfa1a856cfa3409cfa145fa4e20eb270df3eb21ab", - "symbol": "IOST", - "decimals": 18, - "name": "IOST", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xfa1a856cfa3409cfa145fa4e20eb270df3eb21ab.png", - "aggregators": ["Metamask", "Socket", "Rango", "SushiSwap"], - "occurrences": 4 - }, - "0xf21661d0d1d76d3ecb8e1b9f1c923dbfffae4097": { - "address": "0xf21661d0d1d76d3ecb8e1b9f1c923dbfffae4097", - "symbol": "RIO", - "decimals": 18, - "name": "Realio Network", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xf21661d0d1d76d3ecb8e1b9f1c923dbfffae4097.png", - "aggregators": ["Metamask", "Socket", "Rubic", "Rango"], - "occurrences": 4 - }, - "0xf5d669627376ebd411e34b98f19c868c8aba5ada": { - "address": "0xf5d669627376ebd411e34b98f19c868c8aba5ada", - "symbol": "AXS (LEGACY)", - "decimals": 18, - "name": "Axie Infinity Shard", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xf5d669627376ebd411e34b98f19c868c8aba5ada.png", - "aggregators": ["LiFi", "Socket", "Rubic", "Bancor"], - "occurrences": 4 - }, - "0xb4efd85c19999d84251304bda99e90b92300bd93": { - "address": "0xb4efd85c19999d84251304bda99e90b92300bd93", - "symbol": "RPL", - "decimals": 18, - "name": "Rocket Pool", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xb4efd85c19999d84251304bda99e90b92300bd93.png", - "aggregators": ["LiFi", "Socket", "Rubic", "Bancor"], - "occurrences": 4 - }, - "0x8db2350d78abc13f5673a411d4700bcf87864dde": { - "address": "0x8db2350d78abc13f5673a411d4700bcf87864dde", - "symbol": "SWBTC", - "decimals": 8, - "name": "Swell Restaked BTC", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x8db2350d78abc13f5673a411d4700bcf87864dde.png", - "aggregators": ["LiFi", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0xf9fa60ef4f23f00cce403cc4d2c11baf4880a0d6": { - "address": "0xf9fa60ef4f23f00cce403cc4d2c11baf4880a0d6", - "symbol": "FAR", - "decimals": 18, - "name": "FARCANA", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xf9fa60ef4f23f00cce403cc4d2c11baf4880a0d6.png", - "aggregators": ["LiFi", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0x459086f2376525bdceba5bdda135e4e9d3fef5bf": { - "address": "0x459086f2376525bdceba5bdda135e4e9d3fef5bf", - "symbol": "RENBCH", - "decimals": 8, - "name": "renBCH", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x459086f2376525bdceba5bdda135e4e9d3fef5bf.png", - "aggregators": ["LiFi", "Rubic", "Rango", "SushiSwap"], - "occurrences": 4 - }, - "0xad4f86a25bbc20ffb751f2fac312a0b4d8f88c64": { - "address": "0xad4f86a25bbc20ffb751f2fac312a0b4d8f88c64", - "symbol": "ROOM", - "decimals": 18, - "name": "OptionRoom Token", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xad4f86a25bbc20ffb751f2fac312a0b4d8f88c64.png", - "aggregators": ["LiFi", "TrustWallet", "Socket", "Rubic"], - "occurrences": 4 - }, - "0xc8dfb57d83bf561457b1a3f6ce22956bb554bcab": { - "address": "0xc8dfb57d83bf561457b1a3f6ce22956bb554bcab", - "symbol": "TRDM", - "decimals": 18, - "name": "TradeMaster ninja", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xc8dfb57d83bf561457b1a3f6ce22956bb554bcab.png", - "aggregators": ["LiFi", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0x6e1a19f235be7ed8e3369ef73b196c07257494de": { - "address": "0x6e1a19f235be7ed8e3369ef73b196c07257494de", - "symbol": "WFIL", - "decimals": 18, - "name": "Wrapped Filecoin", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x6e1a19f235be7ed8e3369ef73b196c07257494de.png", - "aggregators": ["LiFi", "Rubic", "Rango", "SushiSwap"], - "occurrences": 4 - }, - "0xac0104cca91d167873b8601d2e71eb3d4d8c33e0": { - "address": "0xac0104cca91d167873b8601d2e71eb3d4d8c33e0", - "symbol": "CWS", - "decimals": 18, - "name": "Crowns", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xac0104cca91d167873b8601d2e71eb3d4d8c33e0.png", - "aggregators": ["LiFi", "TrustWallet", "Rubic", "Rango"], - "occurrences": 4 - }, - "0x126c121f99e1e211df2e5f8de2d96fa36647c855": { - "address": "0x126c121f99e1e211df2e5f8de2d96fa36647c855", - "symbol": "DEGEN", - "decimals": 18, - "name": "DEGEN Index", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x126c121f99e1e211df2e5f8de2d96fa36647c855.png", - "aggregators": ["Socket", "Rubic", "Rango", "SushiSwap"], - "occurrences": 4 - }, - "0xd1e64bcc904cfdc19d0faba155a9edc69b4bcdae": { - "address": "0xd1e64bcc904cfdc19d0faba155a9edc69b4bcdae", - "symbol": "PIKA", - "decimals": 9, - "name": "Pikamoon", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xd1e64bcc904cfdc19d0faba155a9edc69b4bcdae.png", - "aggregators": ["Socket", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0x88b9f5c66342ebaf661b3e2836b807c8cb1b3195": { - "address": "0x88b9f5c66342ebaf661b3e2836b807c8cb1b3195", - "symbol": "NOBL", - "decimals": 18, - "name": "NobleBlocks", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x88b9f5c66342ebaf661b3e2836b807c8cb1b3195.png", - "aggregators": ["Socket", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0xf3768d6e78e65fc64b8f12ffc824452130bd5394": { - "address": "0xf3768d6e78e65fc64b8f12ffc824452130bd5394", - "symbol": "KEROSENE", - "decimals": 18, - "name": "Kerosene", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xf3768d6e78e65fc64b8f12ffc824452130bd5394.png", - "aggregators": ["Socket", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0xe5018913f2fdf33971864804ddb5fca25c539032": { - "address": "0xe5018913f2fdf33971864804ddb5fca25c539032", - "symbol": "OLM", - "decimals": 18, - "name": "OpenLM RevShare Token", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xe5018913f2fdf33971864804ddb5fca25c539032.png", - "aggregators": ["Socket", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0x1c43cd666f22878ee902769fccda61f401814efb": { - "address": "0x1c43cd666f22878ee902769fccda61f401814efb", - "symbol": "INCEPT", - "decimals": 18, - "name": "Incept", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x1c43cd666f22878ee902769fccda61f401814efb.png", - "aggregators": ["Socket", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0x807534b396919783b7e30383fe57d857bc084338": { - "address": "0x807534b396919783b7e30383fe57d857bc084338", - "symbol": "TEST", - "decimals": 18, - "name": "Test", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x807534b396919783b7e30383fe57d857bc084338.png", - "aggregators": ["Socket", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0xb8a4350edafd7af34164dd5870e49e28393ff3ec": { - "address": "0xb8a4350edafd7af34164dd5870e49e28393ff3ec", - "symbol": "MMTR", - "decimals": 18, - "name": "Memeinator", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xb8a4350edafd7af34164dd5870e49e28393ff3ec.png", - "aggregators": ["Socket", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0x6b15602f008a05d9694d777dead2f05586216cb4": { - "address": "0x6b15602f008a05d9694d777dead2f05586216cb4", - "symbol": "CYG", - "decimals": 18, - "name": "Cyclix Games", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x6b15602f008a05d9694d777dead2f05586216cb4.png", - "aggregators": ["Socket", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0x69d26c4901765ffa6d7716045b680c9574cb00b5": { - "address": "0x69d26c4901765ffa6d7716045b680c9574cb00b5", - "symbol": "HONKLER", - "decimals": 18, - "name": "Honkler", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x69d26c4901765ffa6d7716045b680c9574cb00b5.png", - "aggregators": ["Socket", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0xaddb6dc7e2f7caea67621dd3ca2e8321ade33286": { - "address": "0xaddb6dc7e2f7caea67621dd3ca2e8321ade33286", - "symbol": "SHARP", - "decimals": 18, - "name": "Sharp AI OLD", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xaddb6dc7e2f7caea67621dd3ca2e8321ade33286.png", - "aggregators": ["Socket", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0x75fa2a76e5ec2269cf507b9296ac108373c72a6e": { - "address": "0x75fa2a76e5ec2269cf507b9296ac108373c72a6e", - "symbol": "NUGX", - "decimals": 18, - "name": "Nugget Rush", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x75fa2a76e5ec2269cf507b9296ac108373c72a6e.png", - "aggregators": ["Socket", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0x989fa855ce126275bc269e0ec8f04a57b4af02b4": { - "address": "0x989fa855ce126275bc269e0ec8f04a57b4af02b4", - "symbol": "XBLAZE", - "decimals": 18, - "name": "Trailblaze", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x989fa855ce126275bc269e0ec8f04a57b4af02b4.png", - "aggregators": ["Socket", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0x05fb86775fd5c16290f1e838f5caaa7342bd9a63": { - "address": "0x05fb86775fd5c16290f1e838f5caaa7342bd9a63", - "symbol": "HAI", - "decimals": 8, - "name": "Hacken", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x05fb86775fd5c16290f1e838f5caaa7342bd9a63.png", - "aggregators": ["Socket", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0x06e0feb0d74106c7ada8497754074d222ec6bcdf": { - "address": "0x06e0feb0d74106c7ada8497754074d222ec6bcdf", - "symbol": "BTB", - "decimals": 18, - "name": "Bitball", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x06e0feb0d74106c7ada8497754074d222ec6bcdf.png", - "aggregators": ["Socket", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0xb87b96868644d99cc70a8565ba7311482edebf6e": { - "address": "0xb87b96868644d99cc70a8565ba7311482edebf6e", - "symbol": "OCP404", - "decimals": 18, - "name": "OnChain Pepe 404", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xb87b96868644d99cc70a8565ba7311482edebf6e.png", - "aggregators": ["Socket", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0x8c19f7854b27758ddffdcdc8908f22bf55e00736": { - "address": "0x8c19f7854b27758ddffdcdc8908f22bf55e00736", - "symbol": "YIELD", - "decimals": 18, - "name": "YieldStone", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x8c19f7854b27758ddffdcdc8908f22bf55e00736.png", - "aggregators": ["Socket", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0xdffa3a7f5b40789c7a437dbe7b31b47f9b08fe75": { - "address": "0xdffa3a7f5b40789c7a437dbe7b31b47f9b08fe75", - "symbol": "HOODIE", - "decimals": 18, - "name": "CryptoPunk 7171", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xdffa3a7f5b40789c7a437dbe7b31b47f9b08fe75.png", - "aggregators": ["Socket", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0x209a78d23f825950a5df4d6d21288e5212b44f2c": { - "address": "0x209a78d23f825950a5df4d6d21288e5212b44f2c", - "symbol": "ANVA", - "decimals": 18, - "name": "AlphaNova", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x209a78d23f825950a5df4d6d21288e5212b44f2c.png", - "aggregators": ["Socket", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0xbdeb4b83251fb146687fa19d1c660f99411eefe3": { - "address": "0xbdeb4b83251fb146687fa19d1c660f99411eefe3", - "symbol": "SVD", - "decimals": 18, - "name": "na", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xbdeb4b83251fb146687fa19d1c660f99411eefe3.png", - "aggregators": ["Socket", "Rubic", "Rango", "Bancor"], - "occurrences": 4 - }, - "0xb58e26ac9cc14c0422c2b419b0ca555ee4dcb7cb": { - "address": "0xb58e26ac9cc14c0422c2b419b0ca555ee4dcb7cb", - "symbol": "NIZA", - "decimals": 9, - "name": "Niza Global", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xb58e26ac9cc14c0422c2b419b0ca555ee4dcb7cb.png", - "aggregators": ["Socket", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0x8408d45b61f5823298f19a09b53b7339c0280489": { - "address": "0x8408d45b61f5823298f19a09b53b7339c0280489", - "symbol": "ALLO", - "decimals": 18, - "name": "Allora", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x8408d45b61f5823298f19a09b53b7339c0280489.png", - "aggregators": ["CoinMarketCap", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x5a9610919f5e81183823a2be4bd1beb2b4da2a20": { - "address": "0x5a9610919f5e81183823a2be4bd1beb2b4da2a20", - "symbol": "APR", - "decimals": 18, - "name": "aPriori", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x5a9610919f5e81183823a2be4bd1beb2b4da2a20.png", - "aggregators": ["CoinMarketCap", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x99e980265bf36516c442be982df1772a6ccb3233": { - "address": "0x99e980265bf36516c442be982df1772a6ccb3233", - "symbol": "ASSET", - "decimals": 18, - "name": "REAL", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x99e980265bf36516c442be982df1772a6ccb3233.png", - "aggregators": ["CoinMarketCap", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x3ab6ed69ef663bd986ee59205ccad8a20f98b4c2": { - "address": "0x3ab6ed69ef663bd986ee59205ccad8a20f98b4c2", - "symbol": "DREP", - "decimals": 18, - "name": "Drep", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x3ab6ed69ef663bd986ee59205ccad8a20f98b4c2.png", - "aggregators": ["UniswapLabs", "Rubic", "Sonarwatch"], - "occurrences": 3 - }, - "0xe2ad0bf751834f2fbdc62a41014f84d67ca1de2a": { - "address": "0xe2ad0bf751834f2fbdc62a41014f84d67ca1de2a", - "symbol": "ERA", - "decimals": 18, - "name": "Caldera", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xe2ad0bf751834f2fbdc62a41014f84d67ca1de2a.png", - "aggregators": ["CoinMarketCap", "Rubic", "Rango"], - "occurrences": 3 - }, - "0xb48c6b24f36307c7a1f2a9281e978a9ef2902ba5": { - "address": "0xb48c6b24f36307c7a1f2a9281e978a9ef2902ba5", - "symbol": "IMU", - "decimals": 18, - "name": "Immunefi", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xb48c6b24f36307c7a1f2a9281e978a9ef2902ba5.png", - "aggregators": ["CoinMarketCap", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x50f41f589afaca2ef41fdf590fe7b90cd26dee64": { - "address": "0x50f41f589afaca2ef41fdf590fe7b90cd26dee64", - "symbol": "IRYS", - "decimals": 18, - "name": "Irys", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x50f41f589afaca2ef41fdf590fe7b90cd26dee64.png", - "aggregators": ["CoinMarketCap", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x00bac91fd8f5b4a0dc03c8021139b76f6549ee7e": { - "address": "0x00bac91fd8f5b4a0dc03c8021139b76f6549ee7e", - "symbol": "KAIO", - "decimals": 18, - "name": "KAIO", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x00bac91fd8f5b4a0dc03c8021139b76f6549ee7e.png", - "aggregators": ["CoinMarketCap", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x232ce3bd40fcd6f80f3d55a522d03f25df784ee2": { - "address": "0x232ce3bd40fcd6f80f3d55a522d03f25df784ee2", - "symbol": "LIT", - "decimals": 18, - "name": "Lighter", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x232ce3bd40fcd6f80f3d55a522d03f25df784ee2.png", - "aggregators": ["CoinMarketCap", "Rubic", "Rango"], - "occurrences": 3 - }, - "0xf57d49646621f563b0b905afc8336923ac569ec5": { - "address": "0xf57d49646621f563b0b905afc8336923ac569ec5", - "symbol": "NEX", - "decimals": 18, - "name": "Nexus", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xf57d49646621f563b0b905afc8336923ac569ec5.png", - "aggregators": ["CoinMarketCap", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x6e6f6d696e61decd6605bd4a57836c5db6923340": { - "address": "0x6e6f6d696e61decd6605bd4a57836c5db6923340", - "symbol": "NOM", - "decimals": 18, - "name": "Nomina", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x6e6f6d696e61decd6605bd4a57836c5db6923340.png", - "aggregators": ["Metamask", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x30a25cc9c9eade4d4d9e9349be6e68c3411367d3": { - "address": "0x30a25cc9c9eade4d4d9e9349be6e68c3411367d3", - "symbol": "PTB", - "decimals": 18, - "name": "Portal To Bitcoin", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x30a25cc9c9eade4d4d9e9349be6e68c3411367d3.png", - "aggregators": ["CoinMarketCap", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x99ea4db9ee77acd40b119bd1dc4e33e1c070b80d": { - "address": "0x99ea4db9ee77acd40b119bd1dc4e33e1c070b80d", - "symbol": "QSP", - "decimals": 18, - "name": "Quantstamp", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x99ea4db9ee77acd40b119bd1dc4e33e1c070b80d.png", - "aggregators": ["Metamask", "Rubic", "Rango"], - "occurrences": 3 - }, - "0xb5f7b021a78f470d31d762c1dda05ea549904fbd": { - "address": "0xb5f7b021a78f470d31d762c1dda05ea549904fbd", - "symbol": "RLS", - "decimals": 18, - "name": "Rayls", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xb5f7b021a78f470d31d762c1dda05ea549904fbd.png", - "aggregators": ["CoinMarketCap", "Rubic", "Rango"], - "occurrences": 3 - }, - "0xaffbe9a60f1f45e057fd9b6dc70004bb0ccc8b99": { - "address": "0xaffbe9a60f1f45e057fd9b6dc70004bb0ccc8b99", - "symbol": "THQ", - "decimals": 18, - "name": "Theoriq Token", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xaffbe9a60f1f45e057fd9b6dc70004bb0ccc8b99.png", - "aggregators": ["CoinMarketCap", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x6c28f8cab28121ed757edb36201511aa18cdd187": { - "address": "0x6c28f8cab28121ed757edb36201511aa18cdd187", - "symbol": "WFB", - "decimals": 8, - "name": "Wrapped FB", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x6c28f8cab28121ed757edb36201511aa18cdd187.png", - "aggregators": ["UniswapLabs", "LiFi", "Rango"], - "occurrences": 3 - }, - "0xa9859874e1743a32409f75bb11549892138bba1e": { - "address": "0xa9859874e1743a32409f75bb11549892138bba1e", - "symbol": "IETH", - "decimals": 18, - "name": "IETH", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xa9859874e1743a32409f75bb11549892138bba1e.png", - "aggregators": ["CoinMarketCap", "Rubic", "Rango"], - "occurrences": 3 - }, - "0xd8e154ede9401dabb860fe84fecd2761b895bc50": { - "address": "0xd8e154ede9401dabb860fe84fecd2761b895bc50", - "symbol": "IOTAI", - "decimals": 18, - "name": "IoTAI", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xd8e154ede9401dabb860fe84fecd2761b895bc50.png", - "aggregators": ["CoinMarketCap", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x7cfd34ca2dceca6c835adc7e61409a089cfff14a": { - "address": "0x7cfd34ca2dceca6c835adc7e61409a089cfff14a", - "symbol": "DAWAE", - "decimals": 18, - "name": "DaWae", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x7cfd34ca2dceca6c835adc7e61409a089cfff14a.png", - "aggregators": ["CoinMarketCap", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x9fbb27bf81efded7b134d40aca9d49d6134368cb": { - "address": "0x9fbb27bf81efded7b134d40aca9d49d6134368cb", - "symbol": "ASTROID", - "decimals": 9, - "name": "Astroid", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x9fbb27bf81efded7b134d40aca9d49d6134368cb.png", - "aggregators": ["CoinGecko", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x00869e8e2e0343edd11314e6ccb0d78d51547ee5": { - "address": "0x00869e8e2e0343edd11314e6ccb0d78d51547ee5", - "symbol": "SUPERGROK", - "decimals": 18, - "name": "SuperGrok", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x00869e8e2e0343edd11314e6ccb0d78d51547ee5.png", - "aggregators": ["CoinMarketCap", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x79d464248516bc6977ca2069ba15d8d1044479d8": { - "address": "0x79d464248516bc6977ca2069ba15d8d1044479d8", - "symbol": "GPU", - "decimals": 18, - "name": "GPUnet", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x79d464248516bc6977ca2069ba15d8d1044479d8.png", - "aggregators": ["CoinMarketCap", "Rubic", "Rango"], - "occurrences": 3 - }, - "0xfdd070e34cbd0923d307f3af481be5bddac4f487": { - "address": "0xfdd070e34cbd0923d307f3af481be5bddac4f487", - "symbol": "SMPL", - "decimals": 18, - "name": "SimpleAI", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xfdd070e34cbd0923d307f3af481be5bddac4f487.png", - "aggregators": ["CoinGecko", "Rubic", "Rango"], - "occurrences": 3 - }, - "0xc77867d630dbe567d219a86fddbe7ef1f0670fdc": { - "address": "0xc77867d630dbe567d219a86fddbe7ef1f0670fdc", - "symbol": "ALIENS", - "decimals": 9, - "name": "Aliens", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xc77867d630dbe567d219a86fddbe7ef1f0670fdc.png", - "aggregators": ["CoinGecko", "Rubic", "Rango"], - "occurrences": 3 - }, - "0xd4c4407f3afb48d7d4ad954572f155f9237ae335": { - "address": "0xd4c4407f3afb48d7d4ad954572f155f9237ae335", - "symbol": "BRCG", - "decimals": 9, - "name": "Bitcoin Roller Coaster Guy", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xd4c4407f3afb48d7d4ad954572f155f9237ae335.png", - "aggregators": ["CoinMarketCap", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x9abfcacee1fe43f6fd8f5a8351b1c66950cfc9fe": { - "address": "0x9abfcacee1fe43f6fd8f5a8351b1c66950cfc9fe", - "symbol": "EPEP", - "decimals": 18, - "name": "EPEP", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x9abfcacee1fe43f6fd8f5a8351b1c66950cfc9fe.png", - "aggregators": ["CoinGecko", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x52dd39e5d1a5f4b8a622466bbe880b5427bf038e": { - "address": "0x52dd39e5d1a5f4b8a622466bbe880b5427bf038e", - "symbol": "CASE", - "decimals": 9, - "name": "CASE", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x52dd39e5d1a5f4b8a622466bbe880b5427bf038e.png", - "aggregators": ["CoinGecko", "Rubic", "Rango"], - "occurrences": 3 - }, - "0xc114d80a2a188f30400b3cd545c5e296f0b04c3f": { - "address": "0xc114d80a2a188f30400b3cd545c5e296f0b04c3f", - "symbol": "RITA", - "decimals": 9, - "name": "Rita Elite Order", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xc114d80a2a188f30400b3cd545c5e296f0b04c3f.png", - "aggregators": ["CoinMarketCap", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x420658a1d8b8f5c36ddaf1bb828f347ba9011969": { - "address": "0x420658a1d8b8f5c36ddaf1bb828f347ba9011969", - "symbol": "DEGEN", - "decimals": 18, - "name": "Degen Arena", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x420658a1d8b8f5c36ddaf1bb828f347ba9011969.png", - "aggregators": ["CoinGecko", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x6b6ed968c266de0e9b24ed055f5eaf44072c1730": { - "address": "0x6b6ed968c266de0e9b24ed055f5eaf44072c1730", - "symbol": "STACK", - "decimals": 18, - "name": "StratoStack", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x6b6ed968c266de0e9b24ed055f5eaf44072c1730.png", - "aggregators": ["CoinGecko", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x14913815bcfde78baead2111f463d038ac9c2949": { - "address": "0x14913815bcfde78baead2111f463d038ac9c2949", - "symbol": "EUSD", - "decimals": 6, - "name": "EUSD", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x14913815bcfde78baead2111f463d038ac9c2949.png", - "aggregators": ["CoinMarketCap", "Rubic", "Rango"], - "occurrences": 3 - }, - "0xc114cf69972e3c1b4b529e0418012c01fcf9e725": { - "address": "0xc114cf69972e3c1b4b529e0418012c01fcf9e725", - "symbol": "BEAR", - "decimals": 9, - "name": "Bearly Legal", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xc114cf69972e3c1b4b529e0418012c01fcf9e725.png", - "aggregators": ["CoinMarketCap", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x9d08946ca5856f882a56c29042fbedc5142663b9": { - "address": "0x9d08946ca5856f882a56c29042fbedc5142663b9", - "symbol": "NMNRL", - "decimals": 6, - "name": "NMNRL", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x9d08946ca5856f882a56c29042fbedc5142663b9.png", - "aggregators": ["CoinGecko", "Rubic", "Rango"], - "occurrences": 3 - }, - "0xb8cc0a0d0dbe23894afa7d35168976aed1048c89": { - "address": "0xb8cc0a0d0dbe23894afa7d35168976aed1048c89", - "symbol": "TOTAKEKE", - "decimals": 9, - "name": "Totakeke", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xb8cc0a0d0dbe23894afa7d35168976aed1048c89.png", - "aggregators": ["CoinGecko", "Rubic", "Rango"], - "occurrences": 3 - }, - "0xe507c2043ef812e95648d1454276387e3b39950b": { - "address": "0xe507c2043ef812e95648d1454276387e3b39950b", - "symbol": "IYO", - "decimals": 9, - "name": "IYO-CHAN", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xe507c2043ef812e95648d1454276387e3b39950b.png", - "aggregators": ["CoinGecko", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x806a72273b961145cf5c5f040ad1fcd112b3f11a": { - "address": "0x806a72273b961145cf5c5f040ad1fcd112b3f11a", - "symbol": "OWO", - "decimals": 9, - "name": "Owo", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x806a72273b961145cf5c5f040ad1fcd112b3f11a.png", - "aggregators": ["CoinMarketCap", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x7beb8f36650e9327d8c52735e3b3c9d1521576e3": { - "address": "0x7beb8f36650e9327d8c52735e3b3c9d1521576e3", - "symbol": "KEK", - "decimals": 18, - "name": "kek", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x7beb8f36650e9327d8c52735e3b3c9d1521576e3.png", - "aggregators": ["CoinMarketCap", "Rubic", "Rango"], - "occurrences": 3 - }, - "0xb8c35e66b4faafdccace27e8b5062f45cb381e31": { - "address": "0xb8c35e66b4faafdccace27e8b5062f45cb381e31", - "symbol": "MOANER", - "decimals": 18, - "name": "Moaner by Matt Furie", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xb8c35e66b4faafdccace27e8b5062f45cb381e31.png", - "aggregators": ["CoinMarketCap", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x0e60ce572a5456b6974d5e7507cc07110dd062a4": { - "address": "0x0e60ce572a5456b6974d5e7507cc07110dd062a4", - "symbol": "PUPPIES", - "decimals": 2, - "name": "I love puppies", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x0e60ce572a5456b6974d5e7507cc07110dd062a4.png", - "aggregators": ["CoinMarketCap", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x74023ba6cb9e085eb563e55243c2fa858b6900b9": { - "address": "0x74023ba6cb9e085eb563e55243c2fa858b6900b9", - "symbol": "MOANER", - "decimals": 9, - "name": "Moaner Melter Slime", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x74023ba6cb9e085eb563e55243c2fa858b6900b9.png", - "aggregators": ["CoinGecko", "Rubic", "Rango"], - "occurrences": 3 - }, - "0xbe370ad45d44eb45174c4ec60b88839fef32c077": { - "address": "0xbe370ad45d44eb45174c4ec60b88839fef32c077", - "symbol": "PHT", - "decimals": 18, - "name": "PHT", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xbe370ad45d44eb45174c4ec60b88839fef32c077.png", - "aggregators": ["CoinGecko", "Rubic", "Rango"], - "occurrences": 3 - }, - "0xe533c2480983e46664b15717d6fc02c0a1dad537": { - "address": "0xe533c2480983e46664b15717d6fc02c0a1dad537", - "symbol": "TAIKI", - "decimals": 18, - "name": "TAIKI INU", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xe533c2480983e46664b15717d6fc02c0a1dad537.png", - "aggregators": ["CoinGecko", "Rubic", "Rango"], - "occurrences": 3 - }, - "0xb03eef386a61b5b462051636001485fffdd3d843": { - "address": "0xb03eef386a61b5b462051636001485fffdd3d843", - "symbol": "AMERICA", - "decimals": 18, - "name": "America Party", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xb03eef386a61b5b462051636001485fffdd3d843.png", - "aggregators": ["CoinMarketCap", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x6dcc10db1b1a7f7a49f6cd3669114aff053295fc": { - "address": "0x6dcc10db1b1a7f7a49f6cd3669114aff053295fc", - "symbol": "VALENTINE", - "decimals": 9, - "name": "Valentine", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x6dcc10db1b1a7f7a49f6cd3669114aff053295fc.png", - "aggregators": ["CoinMarketCap", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x371d62f8ac252db7f88786e39f0880c35146c6c5": { - "address": "0x371d62f8ac252db7f88786e39f0880c35146c6c5", - "symbol": "LOOP", - "decimals": 9, - "name": "Workloop AI", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x371d62f8ac252db7f88786e39f0880c35146c6c5.png", - "aggregators": ["CoinMarketCap", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x341ea9d0e5c9a2a7781aff398117846ea2fff2ab": { - "address": "0x341ea9d0e5c9a2a7781aff398117846ea2fff2ab", - "symbol": "KU-CHAN", - "decimals": 9, - "name": "KURUMI", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x341ea9d0e5c9a2a7781aff398117846ea2fff2ab.png", - "aggregators": ["CoinGecko", "Rubic", "Rango"], - "occurrences": 3 - }, - "0xb40865a6ed718f57468cd3f4f60825a130b89a51": { - "address": "0xb40865a6ed718f57468cd3f4f60825a130b89a51", - "symbol": "DESU", - "decimals": 9, - "name": "DESU", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xb40865a6ed718f57468cd3f4f60825a130b89a51.png", - "aggregators": ["CoinGecko", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x66bff0d18513c648690edcdf5993c9da8c632ec8": { - "address": "0x66bff0d18513c648690edcdf5993c9da8c632ec8", - "symbol": "BRETTWU", - "decimals": 9, - "name": "Brettwu", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x66bff0d18513c648690edcdf5993c9da8c632ec8.png", - "aggregators": ["CoinGecko", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x64ab176c545bb85eca75d53c3ffcb361deafb855": { - "address": "0x64ab176c545bb85eca75d53c3ffcb361deafb855", - "symbol": "INALPHA", - "decimals": 6, - "name": "INALPHA", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x64ab176c545bb85eca75d53c3ffcb361deafb855.png", - "aggregators": ["CoinGecko", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x83e8fb8d8176224fcc828edc73e152ec1818a2da": { - "address": "0x83e8fb8d8176224fcc828edc73e152ec1818a2da", - "symbol": "CHI", - "decimals": 18, - "name": "CHI", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x83e8fb8d8176224fcc828edc73e152ec1818a2da.png", - "aggregators": ["CoinGecko", "Rubic", "Rango"], - "occurrences": 3 - }, - "0xaeeaa594e7dc112d67b8547fe9767a02c15b5597": { - "address": "0xaeeaa594e7dc112d67b8547fe9767a02c15b5597", - "symbol": "ANVL", - "decimals": 18, - "name": "ANVL", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xaeeaa594e7dc112d67b8547fe9767a02c15b5597.png", - "aggregators": ["CoinMarketCap", "Rubic", "Rango"], - "occurrences": 3 - }, - "0xe60e9bd04ccc0a394f1fdf29874e35a773cb07f4": { - "address": "0xe60e9bd04ccc0a394f1fdf29874e35a773cb07f4", - "symbol": "AP", - "decimals": 18, - "name": "America Party", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xe60e9bd04ccc0a394f1fdf29874e35a773cb07f4.png", - "aggregators": ["CoinMarketCap", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x3ca20831ebea5c99aa6e574d83f0a7c733f7e4d0": { - "address": "0x3ca20831ebea5c99aa6e574d83f0a7c733f7e4d0", - "symbol": "CHMPSTR", - "decimals": 18, - "name": "CHMPSTR", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x3ca20831ebea5c99aa6e574d83f0a7c733f7e4d0.png", - "aggregators": ["CoinGecko", "Rubic", "Rango"], - "occurrences": 3 - }, - "0xae1e1b4d8f590371b77bee27257ef038d4b835a1": { - "address": "0xae1e1b4d8f590371b77bee27257ef038d4b835a1", - "symbol": "CLT", - "decimals": 18, - "name": "ChicagoCoin", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xae1e1b4d8f590371b77bee27257ef038d4b835a1.png", - "aggregators": ["CoinGecko", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x0007efdf427313313c904ad88cba4d00a672e327": { - "address": "0x0007efdf427313313c904ad88cba4d00a672e327", - "symbol": "ISHI", - "decimals": 9, - "name": "Ishi Go", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x0007efdf427313313c904ad88cba4d00a672e327.png", - "aggregators": ["CoinMarketCap", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x999903502c1c7fea3591fb17315544c6bdde7699": { - "address": "0x999903502c1c7fea3591fb17315544c6bdde7699", - "symbol": "XAU", - "decimals": 9, - "name": "XAU9999", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x999903502c1c7fea3591fb17315544c6bdde7699.png", - "aggregators": ["CoinMarketCap", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x38778e6d4d0dbe9becef3ae8b938570209efa48b": { - "address": "0x38778e6d4d0dbe9becef3ae8b938570209efa48b", - "symbol": "PAST", - "decimals": 18, - "name": "Punk Auction Strategy Token", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x38778e6d4d0dbe9becef3ae8b938570209efa48b.png", - "aggregators": ["CoinGecko", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x2e7775964554e0eb6400c00ce342fe06e1000935": { - "address": "0x2e7775964554e0eb6400c00ce342fe06e1000935", - "symbol": "89", - "decimals": 9, - "name": "The Official 89 Coin", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x2e7775964554e0eb6400c00ce342fe06e1000935.png", - "aggregators": ["CoinGecko", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x70bb8bcfafcf60446d5071d4427da8e99f0168aa": { - "address": "0x70bb8bcfafcf60446d5071d4427da8e99f0168aa", - "symbol": "BIRDEI", - "decimals": 9, - "name": "Birdei", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x70bb8bcfafcf60446d5071d4427da8e99f0168aa.png", - "aggregators": ["CoinMarketCap", "Rubic", "Rango"], - "occurrences": 3 - }, - "0xc0fe7f77ed2f522978b719372282ca89de8cf3e4": { - "address": "0xc0fe7f77ed2f522978b719372282ca89de8cf3e4", - "symbol": "CATCOIN", - "decimals": 18, - "name": "Catcoin", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xc0fe7f77ed2f522978b719372282ca89de8cf3e4.png", - "aggregators": ["CoinGecko", "Rubic", "Rango"], - "occurrences": 3 - }, - "0xf245964bd0a73128e10c4f7c96d0664ea2e436d8": { - "address": "0xf245964bd0a73128e10c4f7c96d0664ea2e436d8", - "symbol": "MAXI", - "decimals": 9, - "name": "Maxi Doge", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xf245964bd0a73128e10c4f7c96d0664ea2e436d8.png", - "aggregators": ["CoinGecko", "Rubic", "Rango"], - "occurrences": 3 - }, - "0xaccfd598ef801178ed6c816c234b16ec51ae9f32": { - "address": "0xaccfd598ef801178ed6c816c234b16ec51ae9f32", - "symbol": "SATOSHIT", - "decimals": 18, - "name": "SatoshitCoin", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xaccfd598ef801178ed6c816c234b16ec51ae9f32.png", - "aggregators": ["CoinGecko", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x9e59a081320ddb046d74a106335ca6b84eadc067": { - "address": "0x9e59a081320ddb046d74a106335ca6b84eadc067", - "symbol": "BIDEN", - "decimals": 18, - "name": "Biden Coin", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x9e59a081320ddb046d74a106335ca6b84eadc067.png", - "aggregators": ["CoinMarketCap", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x81987681443c156f881b70875724cc78b08ada26": { - "address": "0x81987681443c156f881b70875724cc78b08ada26", - "symbol": "MIRAI", - "decimals": 9, - "name": "Mirai", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x81987681443c156f881b70875724cc78b08ada26.png", - "aggregators": ["CoinGecko", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x72943fb986c7cc044740ff7bbf4ec722cd7d5436": { - "address": "0x72943fb986c7cc044740ff7bbf4ec722cd7d5436", - "symbol": "SANKE", - "decimals": 18, - "name": "Sanke Wallet", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x72943fb986c7cc044740ff7bbf4ec722cd7d5436.png", - "aggregators": ["CoinGecko", "Rubic", "Rango"], - "occurrences": 3 - }, - "0xda5d03f441e13ad74876e5fa1851cbfadab1f332": { - "address": "0xda5d03f441e13ad74876e5fa1851cbfadab1f332", - "symbol": "TRIX", - "decimals": 18, - "name": "TRIX", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xda5d03f441e13ad74876e5fa1851cbfadab1f332.png", - "aggregators": ["CoinMarketCap", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x42069e779838929495ed0152ffc27145ce5c7f98": { - "address": "0x42069e779838929495ed0152ffc27145ce5c7f98", - "symbol": "SPURDO", - "decimals": 9, - "name": "Spurdo", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x42069e779838929495ed0152ffc27145ce5c7f98.png", - "aggregators": ["CoinMarketCap", "Rubic", "Rango"], - "occurrences": 3 - }, - "0xe6f4567c330625f3488ec69266f5ddd3f3841f33": { - "address": "0xe6f4567c330625f3488ec69266f5ddd3f3841f33", - "symbol": "MARU", - "decimals": 9, - "name": "Marutaro", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xe6f4567c330625f3488ec69266f5ddd3f3841f33.png", - "aggregators": ["CoinMarketCap", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x11dfc652eb62c723ad8c2ae731fcede58ab07564": { - "address": "0x11dfc652eb62c723ad8c2ae731fcede58ab07564", - "symbol": "LIQUID", - "decimals": 18, - "name": "Liquid Agent", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x11dfc652eb62c723ad8c2ae731fcede58ab07564.png", - "aggregators": ["CoinMarketCap", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x1c13522ca36e5e13c591c0803083d5bb9282fe48": { - "address": "0x1c13522ca36e5e13c591c0803083d5bb9282fe48", - "symbol": "Z", - "decimals": 18, - "name": "zkCLOB", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x1c13522ca36e5e13c591c0803083d5bb9282fe48.png", - "aggregators": ["CoinGecko", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x468eabcb5c914ac59e72691f8fc970880a94f4b3": { - "address": "0x468eabcb5c914ac59e72691f8fc970880a94f4b3", - "symbol": "EMDR", - "decimals": 18, - "name": "Ethereum MDR", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x468eabcb5c914ac59e72691f8fc970880a94f4b3.png", - "aggregators": ["CoinMarketCap", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x4ba765ee44597d4986c3fbe9eab1535de3b3c3b6": { - "address": "0x4ba765ee44597d4986c3fbe9eab1535de3b3c3b6", - "symbol": "MXY", - "decimals": 9, - "name": "MXY6900", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x4ba765ee44597d4986c3fbe9eab1535de3b3c3b6.png", - "aggregators": ["CoinGecko", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x491b67a94ec0a59b81b784f4719d0387c4510c36": { - "address": "0x491b67a94ec0a59b81b784f4719d0387c4510c36", - "symbol": "PF", - "decimals": 18, - "name": "Purple Frog", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x491b67a94ec0a59b81b784f4719d0387c4510c36.png", - "aggregators": ["CoinMarketCap", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x74c00c26e0ace673313aebf749a1a9644eeefdea": { - "address": "0x74c00c26e0ace673313aebf749a1a9644eeefdea", - "symbol": "SPURDO", - "decimals": 18, - "name": "SPURDO", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x74c00c26e0ace673313aebf749a1a9644eeefdea.png", - "aggregators": ["CoinGecko", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x2a9db31f0f0329b03ddd7a8a4b5297815bba0124": { - "address": "0x2a9db31f0f0329b03ddd7a8a4b5297815bba0124", - "symbol": "SNIBBU", - "decimals": 9, - "name": "Snibbu", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x2a9db31f0f0329b03ddd7a8a4b5297815bba0124.png", - "aggregators": ["CoinMarketCap", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x2b566950ba2298acef3c730cc0129b2f4fbd30a3": { - "address": "0x2b566950ba2298acef3c730cc0129b2f4fbd30a3", - "symbol": "KIMCHI", - "decimals": 9, - "name": "Kimchi", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x2b566950ba2298acef3c730cc0129b2f4fbd30a3.png", - "aggregators": ["CoinGecko", "Rubic", "Rango"], - "occurrences": 3 - }, - "0xe6e079e961ee2cba8fc67762eb138144c882367f": { - "address": "0xe6e079e961ee2cba8fc67762eb138144c882367f", - "symbol": "DRMUTANT", - "decimals": 9, - "name": "Doctor Mutant", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xe6e079e961ee2cba8fc67762eb138144c882367f.png", - "aggregators": ["CoinGecko", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x465ac9ca56f340bc5b96b02c065ae80f3d893eec": { - "address": "0x465ac9ca56f340bc5b96b02c065ae80f3d893eec", - "symbol": "BOATKID", - "decimals": 2, - "name": "BoatKid", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x465ac9ca56f340bc5b96b02c065ae80f3d893eec.png", - "aggregators": ["CoinMarketCap", "Rubic", "Rango"], - "occurrences": 3 - }, - "0xea36af87df952fd4c9a05cd792d370909bbda8db": { - "address": "0xea36af87df952fd4c9a05cd792d370909bbda8db", - "symbol": "KPOP", - "decimals": 18, - "name": "OFFICIAL K-POP", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xea36af87df952fd4c9a05cd792d370909bbda8db.png", - "aggregators": ["CoinMarketCap", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x95ae252633e9ea03bdfe67874b349b41163464ce": { - "address": "0x95ae252633e9ea03bdfe67874b349b41163464ce", - "symbol": "BIGGIE", - "decimals": 9, - "name": "Biggie", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x95ae252633e9ea03bdfe67874b349b41163464ce.png", - "aggregators": ["CoinMarketCap", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x0f6f1818019d656ea5651e913adf8a26e178c09f": { - "address": "0x0f6f1818019d656ea5651e913adf8a26e178c09f", - "symbol": "EAGLE", - "decimals": 18, - "name": "Bald Eagle", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x0f6f1818019d656ea5651e913adf8a26e178c09f.png", - "aggregators": ["CoinGecko", "Rubic", "Rango"], - "occurrences": 3 - }, - "0xa3c1b11a1c788f41b7e3bd3afc45cdec87d31afb": { - "address": "0xa3c1b11a1c788f41b7e3bd3afc45cdec87d31afb", - "symbol": "WABUU", - "decimals": 9, - "name": "Wabuu", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xa3c1b11a1c788f41b7e3bd3afc45cdec87d31afb.png", - "aggregators": ["CoinGecko", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x69a80a841f3385ec8ddc6c24d2ad2f615d2ad1f2": { - "address": "0x69a80a841f3385ec8ddc6c24d2ad2f615d2ad1f2", - "symbol": "TOTAKEKE", - "decimals": 10, - "name": "Totakeke", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x69a80a841f3385ec8ddc6c24d2ad2f615d2ad1f2.png", - "aggregators": ["CoinMarketCap", "Rubic", "Rango"], - "occurrences": 3 - }, - "0xbe445f5ef7edb8829203ab0a3298d9eff4560616": { - "address": "0xbe445f5ef7edb8829203ab0a3298d9eff4560616", - "symbol": "$RIPPER", - "decimals": 9, - "name": "bush ripper 𝓜𝓪𝓽𝓽 𝓕𝓾𝓻𝓲𝓮", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xbe445f5ef7edb8829203ab0a3298d9eff4560616.png", - "aggregators": ["CoinGecko", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x44e22c1b859a3f613276a0ff28af1a4d1a3b5c5e": { - "address": "0x44e22c1b859a3f613276a0ff28af1a4d1a3b5c5e", - "symbol": "RENC", - "decimals": 18, - "name": "RegularEverydayNormalCoin", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x44e22c1b859a3f613276a0ff28af1a4d1a3b5c5e.png", - "aggregators": ["CoinGecko", "Rubic", "Rango"], - "occurrences": 3 - }, - "0xaa9806c938836627ed1a41ae871c7e1889ae02ca": { - "address": "0xaa9806c938836627ed1a41ae871c7e1889ae02ca", - "symbol": "EDGEN", - "decimals": 18, - "name": "LayerEdge", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xaa9806c938836627ed1a41ae871c7e1889ae02ca.png", - "aggregators": ["CoinMarketCap", "Rubic", "Rango"], - "occurrences": 3 - }, - "0xba83b5ed3f12bfa44f066f03ee0433419b74f469": { - "address": "0xba83b5ed3f12bfa44f066f03ee0433419b74f469", - "symbol": "BEST", - "decimals": 18, - "name": "Best Wallet Token", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xba83b5ed3f12bfa44f066f03ee0433419b74f469.png", - "aggregators": ["CoinMarketCap", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x7607546645655d4e93ea6839a55339263b3e4986": { - "address": "0x7607546645655d4e93ea6839a55339263b3e4986", - "symbol": "FUSAKA", - "decimals": 9, - "name": "Fusaka", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x7607546645655d4e93ea6839a55339263b3e4986.png", - "aggregators": ["CoinMarketCap", "Rubic", "Rango"], - "occurrences": 3 - }, - "0xf92927eca847da7fc2b1b47d0c09a101dee6cdaf": { - "address": "0xf92927eca847da7fc2b1b47d0c09a101dee6cdaf", - "symbol": "BABYWLFI", - "decimals": 18, - "name": "Baby World Liberty Financial", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xf92927eca847da7fc2b1b47d0c09a101dee6cdaf.png", - "aggregators": ["CoinMarketCap", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x081599e4936d12c46bd48913b2329115cd26cbdd": { - "address": "0x081599e4936d12c46bd48913b2329115cd26cbdd", - "symbol": "AUDM", - "decimals": 18, - "name": "AUDM", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x081599e4936d12c46bd48913b2329115cd26cbdd.png", - "aggregators": ["CoinMarketCap", "Rubic", "Rango"], - "occurrences": 3 - }, - "0xc0c17dd08263c16f6b64e772fb9b723bf1344ddf": { - "address": "0xc0c17dd08263c16f6b64e772fb9b723bf1344ddf", - "symbol": "PMUSD", - "decimals": 18, - "name": "Precious Metals USD", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xc0c17dd08263c16f6b64e772fb9b723bf1344ddf.png", - "aggregators": ["CoinMarketCap", "Rubic", "Rango"], - "occurrences": 3 - }, - "0xfd36fa88bb3fea8d1264fc89d70723b6a2b56958": { - "address": "0xfd36fa88bb3fea8d1264fc89d70723b6a2b56958", - "symbol": "WXTM", - "decimals": 18, - "name": "WXTM", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xfd36fa88bb3fea8d1264fc89d70723b6a2b56958.png", - "aggregators": ["CoinMarketCap", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x8bbfe65e31b348cd823c62e02ad8c19a84dd0dab": { - "address": "0x8bbfe65e31b348cd823c62e02ad8c19a84dd0dab", - "symbol": "MOC", - "decimals": 18, - "name": "MOC", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x8bbfe65e31b348cd823c62e02ad8c19a84dd0dab.png", - "aggregators": ["CoinMarketCap", "Rubic", "Rango"], - "occurrences": 3 - }, - "0xda891afeb0c9ff9377a05cd91d8eac1dd8331cfd": { - "address": "0xda891afeb0c9ff9377a05cd91d8eac1dd8331cfd", - "symbol": "AROS", - "decimals": 9, - "name": "Aros", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xda891afeb0c9ff9377a05cd91d8eac1dd8331cfd.png", - "aggregators": ["CoinMarketCap", "Rubic", "Rango"], - "occurrences": 3 - }, - "0xed93a0bcbd7793b4dd6ca0033b813344512c106d": { - "address": "0xed93a0bcbd7793b4dd6ca0033b813344512c106d", - "symbol": "TUGGIN", - "decimals": 9, - "name": "Tuggin", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xed93a0bcbd7793b4dd6ca0033b813344512c106d.png", - "aggregators": ["CoinGecko", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x08dcb9b5989fb09ef80e85567ec1f49577a70d29": { - "address": "0x08dcb9b5989fb09ef80e85567ec1f49577a70d29", - "symbol": "A2Z", - "decimals": 18, - "name": "A2Z", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x08dcb9b5989fb09ef80e85567ec1f49577a70d29.png", - "aggregators": ["CoinMarketCap", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x8080779e8366ea28cd1c99bd66ac6d04fce73bf9": { - "address": "0x8080779e8366ea28cd1c99bd66ac6d04fce73bf9", - "symbol": "TAP", - "decimals": 9, - "name": "The America Party", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x8080779e8366ea28cd1c99bd66ac6d04fce73bf9.png", - "aggregators": ["CoinMarketCap", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x3a7ed34c31e88a65184de33ea217226e9245cb40": { - "address": "0x3a7ed34c31e88a65184de33ea217226e9245cb40", - "symbol": "UTA", - "decimals": 9, - "name": "Japanese Pygmy Hippo", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x3a7ed34c31e88a65184de33ea217226e9245cb40.png", - "aggregators": ["CoinGecko", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x10ee9f68ee4e4d311e854ae14c53f5b25a917f85": { - "address": "0x10ee9f68ee4e4d311e854ae14c53f5b25a917f85", - "symbol": "MHRD", - "decimals": 18, - "name": "MacroHard", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x10ee9f68ee4e4d311e854ae14c53f5b25a917f85.png", - "aggregators": ["CoinMarketCap", "Rubic", "Rango"], - "occurrences": 3 - }, - "0xd2d576903f590c93050e695097b026dd3e9582b5": { - "address": "0xd2d576903f590c93050e695097b026dd3e9582b5", - "symbol": "SCAMMAN", - "decimals": 18, - "name": "Scam Altman", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xd2d576903f590c93050e695097b026dd3e9582b5.png", - "aggregators": ["CoinGecko", "Rubic", "Rango"], - "occurrences": 3 - }, - "0xd400a048b726eba969449b342dc7c0e74187c0de": { - "address": "0xd400a048b726eba969449b342dc7c0e74187c0de", - "symbol": "UNICURVE", - "decimals": 18, - "name": "UNICURVE", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xd400a048b726eba969449b342dc7c0e74187c0de.png", - "aggregators": ["CoinGecko", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x7c9f94a79b6b859dfb1d3312fc2311b39f89c677": { - "address": "0x7c9f94a79b6b859dfb1d3312fc2311b39f89c677", - "symbol": "SOMETHING", - "decimals": 9, - "name": "believe in somETHing", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x7c9f94a79b6b859dfb1d3312fc2311b39f89c677.png", - "aggregators": ["CoinGecko", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x07c3e739c65f81ea79d19a88d27de4c9f15f8df0": { - "address": "0x07c3e739c65f81ea79d19a88d27de4c9f15f8df0", - "symbol": "SEEK", - "decimals": 18, - "name": "Talisman", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x07c3e739c65f81ea79d19a88d27de4c9f15f8df0.png", - "aggregators": ["CoinMarketCap", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x4c3e9772698084b00b413106723e700797921c6b": { - "address": "0x4c3e9772698084b00b413106723e700797921c6b", - "symbol": "DILDO", - "decimals": 18, - "name": "Green Dildo Coin", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x4c3e9772698084b00b413106723e700797921c6b.png", - "aggregators": ["CoinMarketCap", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x51c2d74017390cbbd30550179a16a1c28f7210fc": { - "address": "0x51c2d74017390cbbd30550179a16a1c28f7210fc", - "symbol": "STAC", - "decimals": 6, - "name": "STAC", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x51c2d74017390cbbd30550179a16a1c28f7210fc.png", - "aggregators": ["CoinGecko", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x76b6f7bd8857195c5165a49a6ff75f84a3f081ca": { - "address": "0x76b6f7bd8857195c5165a49a6ff75f84a3f081ca", - "symbol": "BLOCKYBOY", - "decimals": 9, - "name": "Blockyboy by Matt Furie", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x76b6f7bd8857195c5165a49a6ff75f84a3f081ca.png", - "aggregators": ["CoinGecko", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x98931a97a62ff3a8e2b42b7ea186cff193c2a67f": { - "address": "0x98931a97a62ff3a8e2b42b7ea186cff193c2a67f", - "symbol": "YOBI", - "decimals": 9, - "name": "Yobi", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x98931a97a62ff3a8e2b42b7ea186cff193c2a67f.png", - "aggregators": ["CoinGecko", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x45547ab0100f5e8b158258b6d94d7586de69fc21": { - "address": "0x45547ab0100f5e8b158258b6d94d7586de69fc21", - "symbol": "MYSTERY", - "decimals": 18, - "name": "Mystery", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x45547ab0100f5e8b158258b6d94d7586de69fc21.png", - "aggregators": ["CoinGecko", "Rubic", "Rango"], - "occurrences": 3 - }, - "0xb8f28c60dd8240141185a192fa4156a23e189305": { - "address": "0xb8f28c60dd8240141185a192fa4156a23e189305", - "symbol": "KYO", - "decimals": 18, - "name": "Kyo", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xb8f28c60dd8240141185a192fa4156a23e189305.png", - "aggregators": ["CoinGecko", "Rubic", "Rango"], - "occurrences": 3 - }, - "0xe15ed6cad89cb6d71b1f18eff938c65fbc59b371": { - "address": "0xe15ed6cad89cb6d71b1f18eff938c65fbc59b371", - "symbol": "STRAYDOG", - "decimals": 9, - "name": "Stray Dog", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xe15ed6cad89cb6d71b1f18eff938c65fbc59b371.png", - "aggregators": ["CoinMarketCap", "Rubic", "Rango"], - "occurrences": 3 - }, - "0xb74f399aac8335e44a50ffb8f7ece74b9db8c30e": { - "address": "0xb74f399aac8335e44a50ffb8f7ece74b9db8c30e", - "symbol": "NALA", - "decimals": 18, - "name": "NALA", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xb74f399aac8335e44a50ffb8f7ece74b9db8c30e.png", - "aggregators": ["CoinMarketCap", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x255494b830bd4fe7220b3ec4842cba75600b6c80": { - "address": "0x255494b830bd4fe7220b3ec4842cba75600b6c80", - "symbol": "BEAST", - "decimals": 9, - "name": "Beast Seller", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x255494b830bd4fe7220b3ec4842cba75600b6c80.png", - "aggregators": ["CoinGecko", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x139450c2dcef827c9a2a0bb1cb5506260940c9fd": { - "address": "0x139450c2dcef827c9a2a0bb1cb5506260940c9fd", - "symbol": "SSUPERUSD", - "decimals": 6, - "name": "SSUPERUSD", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x139450c2dcef827c9a2a0bb1cb5506260940c9fd.png", - "aggregators": ["CoinGecko", "Rubic", "Rango"], - "occurrences": 3 - }, - "0xefc814a4c676a7314a13954e283de6cef597e6b2": { - "address": "0xefc814a4c676a7314a13954e283de6cef597e6b2", - "symbol": "MIND", - "decimals": 18, - "name": "Mind of Pepe", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xefc814a4c676a7314a13954e283de6cef597e6b2.png", - "aggregators": ["CoinMarketCap", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x8ada9bf2d08b484cb9dee67caccd04b991d88145": { - "address": "0x8ada9bf2d08b484cb9dee67caccd04b991d88145", - "symbol": "HYPR", - "decimals": 9, - "name": "Hypr", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x8ada9bf2d08b484cb9dee67caccd04b991d88145.png", - "aggregators": ["CoinMarketCap", "Rubic", "Rango"], - "occurrences": 3 - }, - "0xf9ff95468cb9a0cd57b8542bbc4c148e290ff465": { - "address": "0xf9ff95468cb9a0cd57b8542bbc4c148e290ff465", - "symbol": "THINK", - "decimals": 18, - "name": "THINK Token", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xf9ff95468cb9a0cd57b8542bbc4c148e290ff465.png", - "aggregators": ["CoinMarketCap", "Rubic", "Rango"], - "occurrences": 3 - }, - "0xd073e6341a3aa6c4d94c4f8f20fbd1ede572b0da": { - "address": "0xd073e6341a3aa6c4d94c4f8f20fbd1ede572b0da", - "symbol": "MAK", - "decimals": 18, - "name": "MetaCene", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xd073e6341a3aa6c4d94c4f8f20fbd1ede572b0da.png", - "aggregators": ["CoinMarketCap", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x6967b9a8c0b14849cfe8f9e5732b401433fd2898": { - "address": "0x6967b9a8c0b14849cfe8f9e5732b401433fd2898", - "symbol": "NAKA", - "decimals": 18, - "name": "Naka Go", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x6967b9a8c0b14849cfe8f9e5732b401433fd2898.png", - "aggregators": ["CoinMarketCap", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x226676c9e15be689817f5ae44863f0811181a5ae": { - "address": "0x226676c9e15be689817f5ae44863f0811181a5ae", - "symbol": "DEWA", - "decimals": 9, - "name": "Dewa Go", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x226676c9e15be689817f5ae44863f0811181a5ae.png", - "aggregators": ["CoinGecko", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x3991b07b2951a4300da8c76e7d2c7edde861fef3": { - "address": "0x3991b07b2951a4300da8c76e7d2c7edde861fef3", - "symbol": "UXLINK", - "decimals": 18, - "name": "UXLINK", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x3991b07b2951a4300da8c76e7d2c7edde861fef3.png", - "aggregators": ["CoinGecko", "Rubic", "Rango"], - "occurrences": 3 - }, - "0xebd3f05f77c456d59852da12ac764dc975eca91b": { - "address": "0xebd3f05f77c456d59852da12ac764dc975eca91b", - "symbol": "KORO", - "decimals": 9, - "name": "Koro Go", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xebd3f05f77c456d59852da12ac764dc975eca91b.png", - "aggregators": ["CoinGecko", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x61c8e619ae7c8cbefbcceb9fb718135afb5d0d93": { - "address": "0x61c8e619ae7c8cbefbcceb9fb718135afb5d0d93", - "symbol": "ANGL", - "decimals": 18, - "name": "Angel Token", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x61c8e619ae7c8cbefbcceb9fb718135afb5d0d93.png", - "aggregators": ["CoinMarketCap", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x7b10d50b5885be4c7985a88408265c109bd1eec8": { - "address": "0x7b10d50b5885be4c7985a88408265c109bd1eec8", - "symbol": "TRWA", - "decimals": 18, - "name": "TRWA", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x7b10d50b5885be4c7985a88408265c109bd1eec8.png", - "aggregators": ["CoinMarketCap", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x9f49034409ae6813d2c70ae5117fd23cdff2d190": { - "address": "0x9f49034409ae6813d2c70ae5117fd23cdff2d190", - "symbol": "PRXS", - "decimals": 18, - "name": "Praxis", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x9f49034409ae6813d2c70ae5117fd23cdff2d190.png", - "aggregators": ["CoinGecko", "Rubic", "Rango"], - "occurrences": 3 - }, - "0xb015701c17830aa4a4c96f7bc1a57c3a5edd7c86": { - "address": "0xb015701c17830aa4a4c96f7bc1a57c3a5edd7c86", - "symbol": "MARTIN", - "decimals": 9, - "name": "Martin", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xb015701c17830aa4a4c96f7bc1a57c3a5edd7c86.png", - "aggregators": ["CoinGecko", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x6d44ddba07a9373d665ce636f639e1c46565a349": { - "address": "0x6d44ddba07a9373d665ce636f639e1c46565a349", - "symbol": "FOMO", - "decimals": 18, - "name": "FOMO", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x6d44ddba07a9373d665ce636f639e1c46565a349.png", - "aggregators": ["CoinMarketCap", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x3103cd1602d5fa8f4b9283f9d5a7fa2290795d51": { - "address": "0x3103cd1602d5fa8f4b9283f9d5a7fa2290795d51", - "symbol": "PEPI", - "decimals": 9, - "name": "PEPi", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x3103cd1602d5fa8f4b9283f9d5a7fa2290795d51.png", - "aggregators": ["CoinMarketCap", "Rubic", "Rango"], - "occurrences": 3 - }, - "0xfc60fc0145d7330e5abcfc52af7b043a1ce18e7d": { - "address": "0xfc60fc0145d7330e5abcfc52af7b043a1ce18e7d", - "symbol": "GVNR", - "decimals": 18, - "name": "GVNR", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xfc60fc0145d7330e5abcfc52af7b043a1ce18e7d.png", - "aggregators": ["CoinMarketCap", "Rubic", "Rango"], - "occurrences": 3 - }, - "0xbe7e12b2e128bc955a0130ffb168f031d7dd8d58": { - "address": "0xbe7e12b2e128bc955a0130ffb168f031d7dd8d58", - "symbol": "BOOST", - "decimals": 18, - "name": "Boost", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xbe7e12b2e128bc955a0130ffb168f031d7dd8d58.png", - "aggregators": ["CoinMarketCap", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x1e8e148055cbd5a02ea75eed79da7ce4b91108b9": { - "address": "0x1e8e148055cbd5a02ea75eed79da7ce4b91108b9", - "symbol": "FART", - "decimals": 9, - "name": "FartCoin", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x1e8e148055cbd5a02ea75eed79da7ce4b91108b9.png", - "aggregators": ["CoinGecko", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x696a1012a7f694a6f34a95872f806eda633ea463": { - "address": "0x696a1012a7f694a6f34a95872f806eda633ea463", - "symbol": "SLIPPY", - "decimals": 18, - "name": "SLIPPY", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x696a1012a7f694a6f34a95872f806eda633ea463.png", - "aggregators": ["CoinMarketCap", "Rubic", "Rango"], - "occurrences": 3 - }, - "0xc3f822e94c321dd3ee53ca46b78098ea79b7ec8d": { - "address": "0xc3f822e94c321dd3ee53ca46b78098ea79b7ec8d", - "symbol": "BTCBULL", - "decimals": 18, - "name": "BTC Bull", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xc3f822e94c321dd3ee53ca46b78098ea79b7ec8d.png", - "aggregators": ["CoinMarketCap", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x4ff23cf2804e777c233890119b881cab7fd60652": { - "address": "0x4ff23cf2804e777c233890119b881cab7fd60652", - "symbol": "BABYETH", - "decimals": 9, - "name": "Baby Ethereum", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x4ff23cf2804e777c233890119b881cab7fd60652.png", - "aggregators": ["CoinMarketCap", "Rubic", "Rango"], - "occurrences": 3 - }, - "0xe6f2e92dfb7ac55a13b2056fc0b37dbc9fcee733": { - "address": "0xe6f2e92dfb7ac55a13b2056fc0b37dbc9fcee733", - "symbol": "AMERICA", - "decimals": 9, - "name": "America Party", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xe6f2e92dfb7ac55a13b2056fc0b37dbc9fcee733.png", - "aggregators": ["CoinGecko", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x1b379a79c91a540b2bcd612b4d713f31de1b80cc": { - "address": "0x1b379a79c91a540b2bcd612b4d713f31de1b80cc", - "symbol": "NAORIS", - "decimals": 18, - "name": "Naoris Protocol", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x1b379a79c91a540b2bcd612b4d713f31de1b80cc.png", - "aggregators": ["CoinMarketCap", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x8d33f0ae6d111212d9d64b0821c7cf09e6270c27": { - "address": "0x8d33f0ae6d111212d9d64b0821c7cf09e6270c27", - "symbol": "FOREST", - "decimals": 18, - "name": "FOREST", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x8d33f0ae6d111212d9d64b0821c7cf09e6270c27.png", - "aggregators": ["CoinMarketCap", "Rubic", "Rango"], - "occurrences": 3 - }, - "0xbbcdc8eb044bf661eabfa07b93909a76ebdb1100": { - "address": "0xbbcdc8eb044bf661eabfa07b93909a76ebdb1100", - "symbol": "ELP", - "decimals": 18, - "name": "ELP", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xbbcdc8eb044bf661eabfa07b93909a76ebdb1100.png", - "aggregators": ["CoinMarketCap", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x553f4cb7256d8fc038e91d36cb63fa7c13b624ab": { - "address": "0x553f4cb7256d8fc038e91d36cb63fa7c13b624ab", - "symbol": "TANSSI", - "decimals": 12, - "name": "TANSSI", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x553f4cb7256d8fc038e91d36cb63fa7c13b624ab.png", - "aggregators": ["CoinMarketCap", "Rubic", "Rango"], - "occurrences": 3 - }, - "0xe6423de1f06e3f0af27d3ca776e9446ecbdc354b": { - "address": "0xe6423de1f06e3f0af27d3ca776e9446ecbdc354b", - "symbol": "CTOC", - "decimals": 18, - "name": "CTOC", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xe6423de1f06e3f0af27d3ca776e9446ecbdc354b.png", - "aggregators": ["CoinGecko", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x407eca46ff515cde14410cdc868c7f82e8c4f41d": { - "address": "0x407eca46ff515cde14410cdc868c7f82e8c4f41d", - "symbol": "MARS", - "decimals": 9, - "name": "Mars the hippo", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x407eca46ff515cde14410cdc868c7f82e8c4f41d.png", - "aggregators": ["CoinMarketCap", "Rubic", "Rango"], - "occurrences": 3 - }, - "0xfa63503f9e61fd59cbea137c122fa55c2daff14a": { - "address": "0xfa63503f9e61fd59cbea137c122fa55c2daff14a", - "symbol": "LITAS", - "decimals": 18, - "name": "LITAS", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xfa63503f9e61fd59cbea137c122fa55c2daff14a.png", - "aggregators": ["CoinGecko", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x78cbec65c55f143a9178b63243119806a659d2ef": { - "address": "0x78cbec65c55f143a9178b63243119806a659d2ef", - "symbol": "MINDFAK", - "decimals": 18, - "name": "Mindfak By Matt Furie", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x78cbec65c55f143a9178b63243119806a659d2ef.png", - "aggregators": ["CoinMarketCap", "Rubic", "Rango"], - "occurrences": 3 - }, - "0xba5ed44733953d79717f6269357c77718c8ba5ed": { - "address": "0xba5ed44733953d79717f6269357c77718c8ba5ed", - "symbol": "U", - "decimals": 18, - "name": "U", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xba5ed44733953d79717f6269357c77718c8ba5ed.png", - "aggregators": ["CoinMarketCap", "Rubic", "Rango"], - "occurrences": 3 - }, - "0xccccc74ac972e08a0f4c62e9369576a6f6722002": { - "address": "0xccccc74ac972e08a0f4c62e9369576a6f6722002", - "symbol": "NOBIKO", - "decimals": 9, - "name": "Longcat", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xccccc74ac972e08a0f4c62e9369576a6f6722002.png", - "aggregators": ["CoinMarketCap", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x65b3f4a4694b125ada8f9ebc2b79d6c7d4015d1b": { - "address": "0x65b3f4a4694b125ada8f9ebc2b79d6c7d4015d1b", - "symbol": "STM", - "decimals": 18, - "name": "STM", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x65b3f4a4694b125ada8f9ebc2b79d6c7d4015d1b.png", - "aggregators": ["CoinMarketCap", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x48d41fc014865c32be82c50ee647b6a4bfab38a8": { - "address": "0x48d41fc014865c32be82c50ee647b6a4bfab38a8", - "symbol": "KUMANEENE", - "decimals": 9, - "name": "Kumaneene", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x48d41fc014865c32be82c50ee647b6a4bfab38a8.png", - "aggregators": ["CoinGecko", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x9acb099a6460dead936fe7e591d2c875ae4d84b8": { - "address": "0x9acb099a6460dead936fe7e591d2c875ae4d84b8", - "symbol": "TOKABU", - "decimals": 2, - "name": "Tokabu", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x9acb099a6460dead936fe7e591d2c875ae4d84b8.png", - "aggregators": ["CoinMarketCap", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x99420584706e47b1c5198cd80fef64d09f94adf1": { - "address": "0x99420584706e47b1c5198cd80fef64d09f94adf1", - "symbol": "FORG", - "decimals": 9, - "name": "Forg", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x99420584706e47b1c5198cd80fef64d09f94adf1.png", - "aggregators": ["CoinGecko", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x2328434559f7dec44373822cf68052de0d671b7f": { - "address": "0x2328434559f7dec44373822cf68052de0d671b7f", - "symbol": "SIMON", - "decimals": 9, - "name": "Simon the Gator", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x2328434559f7dec44373822cf68052de0d671b7f.png", - "aggregators": ["CoinMarketCap", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x005e6fd1610302018dcd9caf29b8bc38ff6efd98": { - "address": "0x005e6fd1610302018dcd9caf29b8bc38ff6efd98", - "symbol": "FOX", - "decimals": 9, - "name": "Metafox", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x005e6fd1610302018dcd9caf29b8bc38ff6efd98.png", - "aggregators": ["CoinGecko", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x4f2cef6f39114ade3d8af4020fa1de1d064cadaf": { - "address": "0x4f2cef6f39114ade3d8af4020fa1de1d064cadaf", - "symbol": "HOKK", - "decimals": 18, - "name": "Hokkaidu Inu", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x4f2cef6f39114ade3d8af4020fa1de1d064cadaf.png", - "aggregators": ["CoinMarketCap", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x5bad3b350252b52bc26515e0603c52c0c699a7ad": { - "address": "0x5bad3b350252b52bc26515e0603c52c0c699a7ad", - "symbol": "SHRUB", - "decimals": 9, - "name": "Elon's Hedgehog", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x5bad3b350252b52bc26515e0603c52c0c699a7ad.png", - "aggregators": ["CoinGecko", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x84eaac1b2dc3f84d92ff84c3ec205b1fa74671fc": { - "address": "0x84eaac1b2dc3f84d92ff84c3ec205b1fa74671fc", - "symbol": "CAMP", - "decimals": 18, - "name": "Camp", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x84eaac1b2dc3f84d92ff84c3ec205b1fa74671fc.png", - "aggregators": ["CoinMarketCap", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x2c431766e48ec4a17dc052d9d3fef6b6a9ae8d62": { - "address": "0x2c431766e48ec4a17dc052d9d3fef6b6a9ae8d62", - "symbol": "RBR", - "decimals": 18, - "name": "Robora", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x2c431766e48ec4a17dc052d9d3fef6b6a9ae8d62.png", - "aggregators": ["CoinMarketCap", "Rubic", "Rango"], - "occurrences": 3 - }, - "0xbd821d84770b65f679a47452367258cf86579d02": { - "address": "0xbd821d84770b65f679a47452367258cf86579d02", - "symbol": "KOHAKU", - "decimals": 9, - "name": "KOHAKU", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xbd821d84770b65f679a47452367258cf86579d02.png", - "aggregators": ["CoinGecko", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x9ebf91b8d6ff68aa05545301a3d0984eaee54a03": { - "address": "0x9ebf91b8d6ff68aa05545301a3d0984eaee54a03", - "symbol": "APESTR", - "decimals": 18, - "name": "ApeStrategy", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x9ebf91b8d6ff68aa05545301a3d0984eaee54a03.png", - "aggregators": ["CoinGecko", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x6bcba7cd81a5f12c10ca1bf9b36761cc382658e8": { - "address": "0x6bcba7cd81a5f12c10ca1bf9b36761cc382658e8", - "symbol": "BIRBSTR", - "decimals": 18, - "name": "BirbStrategy", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x6bcba7cd81a5f12c10ca1bf9b36761cc382658e8.png", - "aggregators": ["CoinGecko", "Rubic", "Rango"], - "occurrences": 3 - }, - "0xc9b2c00f31b210fcea1242d91307a5b1e3b2be68": { - "address": "0xc9b2c00f31b210fcea1242d91307a5b1e3b2be68", - "symbol": "MEEBSTR", - "decimals": 18, - "name": "MeebitStrategy", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xc9b2c00f31b210fcea1242d91307a5b1e3b2be68.png", - "aggregators": ["CoinGecko", "Rubic", "Rango"], - "occurrences": 3 - }, - "0xb3d6e9e142a785ea8a4f0050fee73bcc3438c5c5": { - "address": "0xb3d6e9e142a785ea8a4f0050fee73bcc3438c5c5", - "symbol": "PUDGYSTR", - "decimals": 18, - "name": "PudgyStrategy", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xb3d6e9e142a785ea8a4f0050fee73bcc3438c5c5.png", - "aggregators": ["CoinGecko", "Rubic", "Rango"], - "occurrences": 3 - }, - "0xdf4c0665e67cf0698447ca9e454ed56cc6f2df1e": { - "address": "0xdf4c0665e67cf0698447ca9e454ed56cc6f2df1e", - "symbol": "T6900", - "decimals": 18, - "name": "Token6900", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xdf4c0665e67cf0698447ca9e454ed56cc6f2df1e.png", - "aggregators": ["CoinMarketCap", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x8680acfacb3fed5408764343fc7e8358e8c85a4c": { - "address": "0x8680acfacb3fed5408764343fc7e8358e8c85a4c", - "symbol": "DICKSTR", - "decimals": 18, - "name": "DickStrategy", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x8680acfacb3fed5408764343fc7e8358e8c85a4c.png", - "aggregators": ["CoinGecko", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x742fd09cbbeb1ec4e3d6404dfc959a324deb50e6": { - "address": "0x742fd09cbbeb1ec4e3d6404dfc959a324deb50e6", - "symbol": "SQUIGSTR", - "decimals": 18, - "name": "SquiggleStrategy", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x742fd09cbbeb1ec4e3d6404dfc959a324deb50e6.png", - "aggregators": ["CoinGecko", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x8d548dbc4c689cfa5e5925d52b9ac358b3913653": { - "address": "0x8d548dbc4c689cfa5e5925d52b9ac358b3913653", - "symbol": "DOGENARII", - "decimals": 12, - "name": "DOGENARII", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x8d548dbc4c689cfa5e5925d52b9ac358b3913653.png", - "aggregators": ["CoinMarketCap", "Rubic", "Rango"], - "occurrences": 3 - }, - "0xd7075f79df19c279ba5a9eb04a00474c43a3d73e": { - "address": "0xd7075f79df19c279ba5a9eb04a00474c43a3d73e", - "symbol": "DAIFUKU", - "decimals": 9, - "name": "Daifuku", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xd7075f79df19c279ba5a9eb04a00474c43a3d73e.png", - "aggregators": ["CoinMarketCap", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x8db036f007841c21b97eff7dfc2c187241d59baf": { - "address": "0x8db036f007841c21b97eff7dfc2c187241d59baf", - "symbol": "KONG", - "decimals": 18, - "name": "CyberKongz", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x8db036f007841c21b97eff7dfc2c187241d59baf.png", - "aggregators": ["CoinGecko", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x48ab4e39ac59f4e88974804b04a991b3a402717f": { - "address": "0x48ab4e39ac59f4e88974804b04a991b3a402717f", - "symbol": "FDIT", - "decimals": 18, - "name": "FDIT", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x48ab4e39ac59f4e88974804b04a991b3a402717f.png", - "aggregators": ["CoinGecko", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x2fd23a21c52fff0535328a7177da1fb31b8a819e": { - "address": "0x2fd23a21c52fff0535328a7177da1fb31b8a819e", - "symbol": "SΞR", - "decimals": 18, - "name": "Strategic ETH Reserve", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x2fd23a21c52fff0535328a7177da1fb31b8a819e.png", - "aggregators": ["CoinGecko", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x12b004719fb632f1e7c010c6f5d6009fb4258442": { - "address": "0x12b004719fb632f1e7c010c6f5d6009fb4258442", - "symbol": "LIUSD-1W", - "decimals": 18, - "name": "LIUSD-1W", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x12b004719fb632f1e7c010c6f5d6009fb4258442.png", - "aggregators": ["CoinGecko", "Rubic", "Rango"], - "occurrences": 3 - }, - "0xd70030cb861be7a7788f699e4f5ca8d51b31102d": { - "address": "0xd70030cb861be7a7788f699e4f5ca8d51b31102d", - "symbol": "STAX", - "decimals": 9, - "name": "STAX", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xd70030cb861be7a7788f699e4f5ca8d51b31102d.png", - "aggregators": ["CoinMarketCap", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x92cedfdbce6e87b595e4a529afa2905480368af4": { - "address": "0x92cedfdbce6e87b595e4a529afa2905480368af4", - "symbol": "TOADSTR", - "decimals": 18, - "name": "ToadzStrategy", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x92cedfdbce6e87b595e4a529afa2905480368af4.png", - "aggregators": ["CoinGecko", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x936facdf10c8c36294e7b9d28345255539d81bc7": { - "address": "0x936facdf10c8c36294e7b9d28345255539d81bc7", - "symbol": "ROCK.RETH", - "decimals": 18, - "name": "ROCK.RETH", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x936facdf10c8c36294e7b9d28345255539d81bc7.png", - "aggregators": ["CoinGecko", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x7575c2e267a1a2ff98ac65bc26d40c948989031b": { - "address": "0x7575c2e267a1a2ff98ac65bc26d40c948989031b", - "symbol": "INC", - "decimals": 18, - "name": "INC", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x7575c2e267a1a2ff98ac65bc26d40c948989031b.png", - "aggregators": ["CoinMarketCap", "Rubic", "Rango"], - "occurrences": 3 - }, - "0xaeb681b69e5094e04d11bcef51a71358a374c3ed": { - "address": "0xaeb681b69e5094e04d11bcef51a71358a374c3ed", - "symbol": "BMNRX", - "decimals": 18, - "name": "Bitmine xStock", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xaeb681b69e5094e04d11bcef51a71358a374c3ed.png", - "aggregators": ["CoinGecko", "Rubic", "Rango"], - "occurrences": 3 - }, - "0xd0cc2b0efb168bfe1f94a948d8df70fa10257196": { - "address": "0xd0cc2b0efb168bfe1f94a948d8df70fa10257196", - "symbol": "VIBESTR", - "decimals": 18, - "name": "VIBESTR", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xd0cc2b0efb168bfe1f94a948d8df70fa10257196.png", - "aggregators": ["CoinGecko", "Rubic", "Rango"], - "occurrences": 3 - }, - "0xa37db5456b5938aa50b33575ae2eb8048ca5959b": { - "address": "0xa37db5456b5938aa50b33575ae2eb8048ca5959b", - "symbol": "DOP", - "decimals": 18, - "name": "DOP", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xa37db5456b5938aa50b33575ae2eb8048ca5959b.png", - "aggregators": ["CoinMarketCap", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x632f25855c7f98af1c036724fd3dc93d6571932f": { - "address": "0x632f25855c7f98af1c036724fd3dc93d6571932f", - "symbol": "BABYMANYU", - "decimals": 9, - "name": "BabyManyu", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x632f25855c7f98af1c036724fd3dc93d6571932f.png", - "aggregators": ["CoinGecko", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x199e2cfaf8b4f2cc5423971ef3749d1c89cf815c": { - "address": "0x199e2cfaf8b4f2cc5423971ef3749d1c89cf815c", - "symbol": "OPAL", - "decimals": 18, - "name": "OPAL", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x199e2cfaf8b4f2cc5423971ef3749d1c89cf815c.png", - "aggregators": ["CoinMarketCap", "Rubic", "Rango"], - "occurrences": 3 - }, - "0xae53d5bdc95e83e956a2f29771b18175abb8273f": { - "address": "0xae53d5bdc95e83e956a2f29771b18175abb8273f", - "symbol": "POFU", - "decimals": 18, - "name": "POFU", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xae53d5bdc95e83e956a2f29771b18175abb8273f.png", - "aggregators": ["CoinMarketCap", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x13239c268beddd88ad0cb02050d3ff6a9d00de6d": { - "address": "0x13239c268beddd88ad0cb02050d3ff6a9d00de6d", - "symbol": "BOS", - "decimals": 18, - "name": "BOS", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x13239c268beddd88ad0cb02050d3ff6a9d00de6d.png", - "aggregators": ["CoinMarketCap", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x249130f5e2dd4cf278180c0df8273f3592ad1247": { - "address": "0x249130f5e2dd4cf278180c0df8273f3592ad1247", - "symbol": "DMT-NAT", - "decimals": 0, - "name": "dmt-nat", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x249130f5e2dd4cf278180c0df8273f3592ad1247.png", - "aggregators": ["CoinGecko", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x58412ae274f2764b71c66315d97662d47d930d94": { - "address": "0x58412ae274f2764b71c66315d97662d47d930d94", - "symbol": "NEX", - "decimals": 18, - "name": "NEX", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x58412ae274f2764b71c66315d97662d47d930d94.png", - "aggregators": ["CoinMarketCap", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x00000000000050806673b532d7486ac114c1de3f": { - "address": "0x00000000000050806673b532d7486ac114c1de3f", - "symbol": "LO0P", - "decimals": 18, - "name": "LO0P", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x00000000000050806673b532d7486ac114c1de3f.png", - "aggregators": ["CoinGecko", "Rubic", "Rango"], - "occurrences": 3 - }, - "0xcb20b537f5df50bccc00fe6a8eb4d57b14a89a03": { - "address": "0xcb20b537f5df50bccc00fe6a8eb4d57b14a89a03", - "symbol": "ORTA", - "decimals": 18, - "name": "Orta Chain", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xcb20b537f5df50bccc00fe6a8eb4d57b14a89a03.png", - "aggregators": ["CoinMarketCap", "Rubic", "Rango"], - "occurrences": 3 - }, - "0xc07e1300dc138601fa6b0b59f8d0fa477e690589": { - "address": "0xc07e1300dc138601fa6b0b59f8d0fa477e690589", - "symbol": "Q", - "decimals": 18, - "name": "Q", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xc07e1300dc138601fa6b0b59f8d0fa477e690589.png", - "aggregators": ["CoinMarketCap", "Rubic", "Rango"], - "occurrences": 3 - }, - "0xfccd6fbca272b4cc11069402f4123b070b7838f9": { - "address": "0xfccd6fbca272b4cc11069402f4123b070b7838f9", - "symbol": "KIMCHI", - "decimals": 9, - "name": "Kimchi Coin", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xfccd6fbca272b4cc11069402f4123b070b7838f9.png", - "aggregators": ["CoinMarketCap", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x4933a85b5b5466fbaf179f72d3de273c287ec2c2": { - "address": "0x4933a85b5b5466fbaf179f72d3de273c287ec2c2", - "symbol": "EURAU", - "decimals": 6, - "name": "AllUnity EUR", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x4933a85b5b5466fbaf179f72d3de273c287ec2c2.png", - "aggregators": ["CoinMarketCap", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x4647e1fe715c9e23959022c2416c71867f5a6e80": { - "address": "0x4647e1fe715c9e23959022c2416c71867f5a6e80", - "symbol": "WOCT", - "decimals": 6, - "name": "Wrapped Octra", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x4647e1fe715c9e23959022c2416c71867f5a6e80.png", - "aggregators": ["Metamask", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x999b49c0d1612e619a4a4f6280733184da025108": { - "address": "0x999b49c0d1612e619a4a4f6280733184da025108", - "symbol": "SLOP", - "decimals": 18, - "name": "SLOP", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x999b49c0d1612e619a4a4f6280733184da025108.png", - "aggregators": ["CoinGecko", "Rubic", "Rango"], - "occurrences": 3 - }, - "0xe3872dd4eba50598c54b2aa21b04c71fc37b000b": { - "address": "0xe3872dd4eba50598c54b2aa21b04c71fc37b000b", - "symbol": "NEXI", - "decimals": 18, - "name": "Nexira DAEP", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xe3872dd4eba50598c54b2aa21b04c71fc37b000b.png", - "aggregators": ["CoinGecko", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x21f5b2bacb67c94aa0982ce7428f7d1b3c9ceb53": { - "address": "0x21f5b2bacb67c94aa0982ce7428f7d1b3c9ceb53", - "symbol": "SNORT", - "decimals": 18, - "name": "Snorter", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x21f5b2bacb67c94aa0982ce7428f7d1b3c9ceb53.png", - "aggregators": ["CoinMarketCap", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x0dc4f92879b7670e5f4e4e6e3c801d229129d90d": { - "address": "0x0dc4f92879b7670e5f4e4e6e3c801d229129d90d", - "symbol": "WARS", - "decimals": 18, - "name": "Argentine Peso", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x0dc4f92879b7670e5f4e4e6e3c801d229129d90d.png", - "aggregators": ["Metamask", "Rubic"], - "occurrences": 2 - }, - "0x76e46becff74f5f1d3ef96d7574230aeba73e5d8": { - "address": "0x76e46becff74f5f1d3ef96d7574230aeba73e5d8", - "symbol": "YEE", - "decimals": 2, - "name": "YEE", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x76e46becff74f5f1d3ef96d7574230aeba73e5d8.png", - "aggregators": ["CoinMarketCap", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x6112c3509a8a787df576028450febb3786a2274d": { - "address": "0x6112c3509a8a787df576028450febb3786a2274d", - "symbol": "AXGT", - "decimals": 18, - "name": "AxonDAO Governance Token", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x6112c3509a8a787df576028450febb3786a2274d.png", - "aggregators": ["Metamask", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x45510db2481353178db5abb87c96805fadad0724": { - "address": "0x45510db2481353178db5abb87c96805fadad0724", - "symbol": "FTMX", - "decimals": 18, - "name": "FUCK THE MATRIX", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x45510db2481353178db5abb87c96805fadad0724.png", - "aggregators": ["CoinMarketCap", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x3522513e5f146a2006e2901b05f16b2821485e19": { - "address": "0x3522513e5f146a2006e2901b05f16b2821485e19", - "symbol": "AMDX", - "decimals": 18, - "name": "AMD xStock", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x3522513e5f146a2006e2901b05f16b2821485e19.png", - "aggregators": ["CoinGecko", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x6d5edeebbc6a4099eb8bb289eb3b80d799f7b28c": { - "address": "0x6d5edeebbc6a4099eb8bb289eb3b80d799f7b28c", - "symbol": "VTX", - "decimals": 18, - "name": "Vanguard Total World xStock", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x6d5edeebbc6a4099eb8bb289eb3b80d799f7b28c.png", - "aggregators": ["CoinGecko", "Rubic", "Rango"], - "occurrences": 3 - }, - "0xdadfb355c6110eda0908740d52c834d6c2bcddc7": { - "address": "0xdadfb355c6110eda0908740d52c834d6c2bcddc7", - "symbol": "IWMX", - "decimals": 18, - "name": "Russell 2000 xStock", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xdadfb355c6110eda0908740d52c834d6c2bcddc7.png", - "aggregators": ["CoinGecko", "Rubic", "Rango"], - "occurrences": 3 - }, - "0xca5e50710f656f2e537ce2fc8504db6e24ed3515": { - "address": "0xca5e50710f656f2e537ce2fc8504db6e24ed3515", - "symbol": "XCL", - "decimals": 18, - "name": "Xcellar", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xca5e50710f656f2e537ce2fc8504db6e24ed3515.png", - "aggregators": ["CoinMarketCap", "Rubic", "Rango"], - "occurrences": 3 - }, - "0xa776a95223c500e81cb0937b291140ff550ac3e4": { - "address": "0xa776a95223c500e81cb0937b291140ff550ac3e4", - "symbol": "GRAY", - "decimals": 18, - "name": "Gradient", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xa776a95223c500e81cb0937b291140ff550ac3e4.png", - "aggregators": ["CoinMarketCap", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x4b6d60361faebf0cfe06c442cd0eb151bc261a7a": { - "address": "0x4b6d60361faebf0cfe06c442cd0eb151bc261a7a", - "symbol": "MSIA", - "decimals": 18, - "name": "Messiah", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x4b6d60361faebf0cfe06c442cd0eb151bc261a7a.png", - "aggregators": ["CoinMarketCap", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x4f33acf823e6eeb697180d553ce0c710124c8d59": { - "address": "0x4f33acf823e6eeb697180d553ce0c710124c8d59", - "symbol": "SPKCC", - "decimals": 5, - "name": "SPKCC", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x4f33acf823e6eeb697180d553ce0c710124c8d59.png", - "aggregators": ["CoinGecko", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x0511df77e420c9c37b065ddb7973d0f81430a092": { - "address": "0x0511df77e420c9c37b065ddb7973d0f81430a092", - "symbol": "ENX", - "decimals": 18, - "name": "Enigma", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x0511df77e420c9c37b065ddb7973d0f81430a092.png", - "aggregators": ["CoinMarketCap", "Rubic", "Rango"], - "occurrences": 3 - }, - "0xe95ab205e333443d7970336d5fd827ef9ed97608": { - "address": "0xe95ab205e333443d7970336d5fd827ef9ed97608", - "symbol": "TONXX", - "decimals": 18, - "name": "TON xStock", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xe95ab205e333443d7970336d5fd827ef9ed97608.png", - "aggregators": ["CoinGecko", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x3910210d206295ca14f30e493607c40abc0d90aa": { - "address": "0x3910210d206295ca14f30e493607c40abc0d90aa", - "symbol": "BURGLAR", - "decimals": 9, - "name": "Burglar", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x3910210d206295ca14f30e493607c40abc0d90aa.png", - "aggregators": ["CoinGecko", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x87acfa3fd7a6e0d48677d070644d76905c2bdc00": { - "address": "0x87acfa3fd7a6e0d48677d070644d76905c2bdc00", - "symbol": "SPACE", - "decimals": 18, - "name": "SPACE", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x87acfa3fd7a6e0d48677d070644d76905c2bdc00.png", - "aggregators": ["CoinMarketCap", "Rubic", "Rango"], - "occurrences": 3 - }, - "0xd1bb58e1f2ee11ff62aea1225a6f210467863031": { - "address": "0xd1bb58e1f2ee11ff62aea1225a6f210467863031", - "symbol": "WLF", - "decimals": 18, - "name": "WLF TOKEN", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xd1bb58e1f2ee11ff62aea1225a6f210467863031.png", - "aggregators": ["CoinMarketCap", "Rubic", "Rango"], - "occurrences": 3 - }, - "0xfc8dcfca8a37a855e352098af205b3a537b6b026": { - "address": "0xfc8dcfca8a37a855e352098af205b3a537b6b026", - "symbol": "PLLD", - "decimals": 18, - "name": "PLLD", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xfc8dcfca8a37a855e352098af205b3a537b6b026.png", - "aggregators": ["CoinGecko", "Rubic", "Rango"], - "occurrences": 3 - }, - "0xd687759f35bb747a29246a4b9495c8f52c49e00c": { - "address": "0xd687759f35bb747a29246a4b9495c8f52c49e00c", - "symbol": "AUDX", - "decimals": 18, - "name": "AUDX", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xd687759f35bb747a29246a4b9495c8f52c49e00c.png", - "aggregators": ["CoinMarketCap", "Rubic", "Rango"], - "occurrences": 3 - }, - "0xfab99fcf605fd8f4593edb70a43ba56542777777": { - "address": "0xfab99fcf605fd8f4593edb70a43ba56542777777", - "symbol": "ZBT", - "decimals": 18, - "name": "ZBT", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xfab99fcf605fd8f4593edb70a43ba56542777777.png", - "aggregators": ["CoinMarketCap", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x4ea40dcee961675683e0a2e1721bd49cb9bca913": { - "address": "0x4ea40dcee961675683e0a2e1721bd49cb9bca913", - "symbol": "USDR", - "decimals": 18, - "name": "USDR", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x4ea40dcee961675683e0a2e1721bd49cb9bca913.png", - "aggregators": ["CoinGecko", "Rubic", "Rango"], - "occurrences": 3 - }, - "0xf6d87e523512704c29e9b7ca3e9e6226bdce3ea1": { - "address": "0xf6d87e523512704c29e9b7ca3e9e6226bdce3ea1", - "symbol": "SCHFX", - "decimals": 18, - "name": "Schwab International Equity xStock", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xf6d87e523512704c29e9b7ca3e9e6226bdce3ea1.png", - "aggregators": ["CoinGecko", "Rubic", "Rango"], - "occurrences": 3 - }, - "0xbbfc8683c8fe8cf73777fede7ab9574935fea0a4": { - "address": "0xbbfc8683c8fe8cf73777fede7ab9574935fea0a4", - "symbol": "EARNETH", - "decimals": 18, - "name": "earnETH", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xbbfc8683c8fe8cf73777fede7ab9574935fea0a4.png", - "aggregators": ["Metamask", "Rubic"], - "occurrences": 2 - }, - "0x19222eb4bb885ad990d8df2a2ad3f6e64cbebf00": { - "address": "0x19222eb4bb885ad990d8df2a2ad3f6e64cbebf00", - "symbol": "AYYLIEN", - "decimals": 18, - "name": "Ayy Lmao", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x19222eb4bb885ad990d8df2a2ad3f6e64cbebf00.png", - "aggregators": ["CoinGecko", "Rubic", "Rango"], - "occurrences": 3 - }, - "0xe430a5152d594e16344a28a04b7e40c3f8450838": { - "address": "0xe430a5152d594e16344a28a04b7e40c3f8450838", - "symbol": "BASTEROID", - "decimals": 2, - "name": "Baby Asteroid", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xe430a5152d594e16344a28a04b7e40c3f8450838.png", - "aggregators": ["CoinGecko", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x041ff0e49f6f774e7dc7bd10ee4a14c00b1d80b2": { - "address": "0x041ff0e49f6f774e7dc7bd10ee4a14c00b1d80b2", - "symbol": "ASE", - "decimals": 18, - "name": "Asentum", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x041ff0e49f6f774e7dc7bd10ee4a14c00b1d80b2.png", - "aggregators": ["CoinMarketCap", "Rubic", "Rango"], - "occurrences": 3 - }, - "0xfc9d98cdb3529f32cd7fb02d175547641e145b29": { - "address": "0xfc9d98cdb3529f32cd7fb02d175547641e145b29", - "symbol": "WORM", - "decimals": 18, - "name": "WORM", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xfc9d98cdb3529f32cd7fb02d175547641e145b29.png", - "aggregators": ["CoinGecko", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x196c20da81fbc324ecdf55501e95ce9f0bd84d14": { - "address": "0x196c20da81fbc324ecdf55501e95ce9f0bd84d14", - "symbol": "DOT", - "decimals": 10, - "name": "DOT", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x196c20da81fbc324ecdf55501e95ce9f0bd84d14.png", - "aggregators": ["CoinGecko", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x6a668332825450acd2e449372057d31b3de16a1e": { - "address": "0x6a668332825450acd2e449372057d31b3de16a1e", - "symbol": "IEMGX", - "decimals": 18, - "name": "Core MSCI Emerging Markets xStock", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x6a668332825450acd2e449372057d31b3de16a1e.png", - "aggregators": ["CoinGecko", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x38e0445308e7fcd5230f2df6b52b36dd4ff313b6": { - "address": "0x38e0445308e7fcd5230f2df6b52b36dd4ff313b6", - "symbol": "STRKX", - "decimals": 18, - "name": "Strategy PP Fixed xStock", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x38e0445308e7fcd5230f2df6b52b36dd4ff313b6.png", - "aggregators": ["CoinGecko", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x2a49e6146fb9aad418943f77c79da6c371514889": { - "address": "0x2a49e6146fb9aad418943f77c79da6c371514889", - "symbol": "NOORUNG", - "decimals": 9, - "name": "마라도의 파수꾼 (The Guardian of Marado)", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x2a49e6146fb9aad418943f77c79da6c371514889.png", - "aggregators": ["CoinGecko", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x3e76dd57e649a263a532cc9bcc58b32a065fb2a4": { - "address": "0x3e76dd57e649a263a532cc9bcc58b32a065fb2a4", - "symbol": "ACN", - "decimals": 18, - "name": "AITECH Cloud Network", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x3e76dd57e649a263a532cc9bcc58b32a065fb2a4.png", - "aggregators": ["CoinMarketCap", "Rubic", "Rango"], - "occurrences": 3 - }, - "0xf8750b54d86be7ae9e32b4a0c826811198d63313": { - "address": "0xf8750b54d86be7ae9e32b4a0c826811198d63313", - "symbol": "USDX", - "decimals": 18, - "name": "USDX", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xf8750b54d86be7ae9e32b4a0c826811198d63313.png", - "aggregators": ["CoinGecko", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x6f0066f9df5abf780cfc69ebe50b71fc4cdb08b0": { - "address": "0x6f0066f9df5abf780cfc69ebe50b71fc4cdb08b0", - "symbol": "DANKDOGE", - "decimals": 9, - "name": "DANK DOGE", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x6f0066f9df5abf780cfc69ebe50b71fc4cdb08b0.png", - "aggregators": ["CoinGecko", "Rubic", "Rango"], - "occurrences": 3 - }, - "0xfabd8d91c9c0cd3f852466bada03673918de5284": { - "address": "0xfabd8d91c9c0cd3f852466bada03673918de5284", - "symbol": "我的刀盾", - "decimals": 18, - "name": "What the dog doing?", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xfabd8d91c9c0cd3f852466bada03673918de5284.png", - "aggregators": ["CoinGecko", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x0a26c80be4e060e688d7c23addb92cbb5d2c9eca": { - "address": "0x0a26c80be4e060e688d7c23addb92cbb5d2c9eca", - "symbol": "NOX", - "decimals": 18, - "name": "NONOS", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x0a26c80be4e060e688d7c23addb92cbb5d2c9eca.png", - "aggregators": ["CoinGecko", "Rubic", "Rango"], - "occurrences": 3 - }, - "0xcf5104d094e3864cfcbda43b82e1cefd26a016eb": { - "address": "0xcf5104d094e3864cfcbda43b82e1cefd26a016eb", - "symbol": "H", - "decimals": 18, - "name": "H", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xcf5104d094e3864cfcbda43b82e1cefd26a016eb.png", - "aggregators": ["CoinMarketCap", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x4ce1ac8f43e0e5bd7a346a98af777bf8fbea1981": { - "address": "0x4ce1ac8f43e0e5bd7a346a98af777bf8fbea1981", - "symbol": "EARNUSD", - "decimals": 18, - "name": "earnUSD", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x4ce1ac8f43e0e5bd7a346a98af777bf8fbea1981.png", - "aggregators": ["Metamask", "Rubic"], - "occurrences": 2 - }, - "0xb3a0f70c913aa04404bd177be9e20b47613830b6": { - "address": "0xb3a0f70c913aa04404bd177be9e20b47613830b6", - "symbol": "AIB", - "decimals": 9, - "name": "America is Back", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xb3a0f70c913aa04404bd177be9e20b47613830b6.png", - "aggregators": ["CoinGecko", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x3009b6833f8925b7985c2408c49160dd1ab317ca": { - "address": "0x3009b6833f8925b7985c2408c49160dd1ab317ca", - "symbol": "RIZO", - "decimals": 9, - "name": "Haha Yes Hedgehog", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x3009b6833f8925b7985c2408c49160dd1ab317ca.png", - "aggregators": ["CoinMarketCap", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x609e79a9fb9a71655b017f637a962b9962f4a9fc": { - "address": "0x609e79a9fb9a71655b017f637a962b9962f4a9fc", - "symbol": "OXN", - "decimals": 18, - "name": "Orexn", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x609e79a9fb9a71655b017f637a962b9962f4a9fc.png", - "aggregators": ["CoinGecko", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x214151022c2a5e380ab80cdac31f23ae554a7345": { - "address": "0x214151022c2a5e380ab80cdac31f23ae554a7345", - "symbol": "CRWDX", - "decimals": 18, - "name": "CrowdStrike xStock", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x214151022c2a5e380ab80cdac31f23ae554a7345.png", - "aggregators": ["CoinGecko", "Rubic", "Rango"], - "occurrences": 3 - }, - "0xd76f5faf6888e24d9f04bf92a0c8b921fe4390e0": { - "address": "0xd76f5faf6888e24d9f04bf92a0c8b921fe4390e0", - "symbol": "WBRL", - "decimals": 18, - "name": "Brazilian Real", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xd76f5faf6888e24d9f04bf92a0c8b921fe4390e0.png", - "aggregators": ["Metamask", "Rubic"], - "occurrences": 2 - }, - "0x7cf9a80db3b29ee8efe3710aadb7b95270572d47": { - "address": "0x7cf9a80db3b29ee8efe3710aadb7b95270572d47", - "symbol": "NIL", - "decimals": 18, - "name": "Nillion", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x7cf9a80db3b29ee8efe3710aadb7b95270572d47.png", - "aggregators": ["CoinMarketCap", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x66a5cfb2e9c529f14fe6364ad1075df3a649c0a5": { - "address": "0x66a5cfb2e9c529f14fe6364ad1075df3a649c0a5", - "symbol": "ZK", - "decimals": 18, - "name": "ZK", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x66a5cfb2e9c529f14fe6364ad1075df3a649c0a5.png", - "aggregators": ["CoinGecko", "Rubic", "Rango"], - "occurrences": 3 - }, - "0xb253ade07051c71be64c235f38fdd5db6753f3bd": { - "address": "0xb253ade07051c71be64c235f38fdd5db6753f3bd", - "symbol": "GAPPY", - "decimals": 18, - "name": "Gap Tooth Lizard", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xb253ade07051c71be64c235f38fdd5db6753f3bd.png", - "aggregators": ["CoinGecko", "Rubic", "Rango"], - "occurrences": 3 - }, - "0xbee6b69345f376598fe16abd5592c6f844825e66": { - "address": "0xbee6b69345f376598fe16abd5592c6f844825e66", - "symbol": "OPENX", - "decimals": 18, - "name": "OPEN xStock", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xbee6b69345f376598fe16abd5592c6f844825e66.png", - "aggregators": ["CoinGecko", "Rubic", "Rango"], - "occurrences": 3 - }, - "0xd05001db979ff2f1a3b2105875d3454e90dd2961": { - "address": "0xd05001db979ff2f1a3b2105875d3454e90dd2961", - "symbol": "SUP", - "decimals": 18, - "name": "Superfluid Token", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xd05001db979ff2f1a3b2105875d3454e90dd2961.png", - "aggregators": ["Metamask", "Rubic", "Rango"], - "occurrences": 3 - }, - "0xe90fe2de4a415ad48b6dcec08ba6ae98231948ac": { - "address": "0xe90fe2de4a415ad48b6dcec08ba6ae98231948ac", - "symbol": "TREVEE", - "decimals": 18, - "name": "TREVEE", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xe90fe2de4a415ad48b6dcec08ba6ae98231948ac.png", - "aggregators": ["CoinGecko", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x69b1ac639c0153b8eae75e4c19a176d07071683c": { - "address": "0x69b1ac639c0153b8eae75e4c19a176d07071683c", - "symbol": "XAVIER", - "decimals": 18, - "name": "Xavier: Renegade Angel", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x69b1ac639c0153b8eae75e4c19a176d07071683c.png", - "aggregators": ["CoinMarketCap", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x00f3c42833c3170159af4e92dbb451fb3f708917": { - "address": "0x00f3c42833c3170159af4e92dbb451fb3f708917", - "symbol": "ICP", - "decimals": 8, - "name": "Internet Computer", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x00f3c42833c3170159af4e92dbb451fb3f708917.png", - "aggregators": ["CoinMarketCap", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x521860bb5df5468358875266b89bfe90d990c6e7": { - "address": "0x521860bb5df5468358875266b89bfe90d990c6e7", - "symbol": "DFDVX", - "decimals": 18, - "name": "DFDV xStock", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x521860bb5df5468358875266b89bfe90d990c6e7.png", - "aggregators": ["CoinGecko", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x6944e1df6bf5972305f9ab25df47ef10de01bcc8": { - "address": "0x6944e1df6bf5972305f9ab25df47ef10de01bcc8", - "symbol": "UB", - "decimals": 18, - "name": "UB", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x6944e1df6bf5972305f9ab25df47ef10de01bcc8.png", - "aggregators": ["CoinMarketCap", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x1eef208926667594e5136e89d0e9dd6907959197": { - "address": "0x1eef208926667594e5136e89d0e9dd6907959197", - "symbol": "PEAQ", - "decimals": 18, - "name": "PEAQ", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x1eef208926667594e5136e89d0e9dd6907959197.png", - "aggregators": ["CoinMarketCap", "Rubic", "Rango"], - "occurrences": 3 - }, - "0xa0c56a8c0692bd10b3fa8f8ba79cf5332b7107f9": { - "address": "0xa0c56a8c0692bd10b3fa8f8ba79cf5332b7107f9", - "symbol": "MERL", - "decimals": 18, - "name": "MERL", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xa0c56a8c0692bd10b3fa8f8ba79cf5332b7107f9.png", - "aggregators": ["CoinMarketCap", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x4cbf89ed7bb30b8a860fa86d3c96e9c72931299b": { - "address": "0x4cbf89ed7bb30b8a860fa86d3c96e9c72931299b", - "symbol": "TBLLX", - "decimals": 18, - "name": "TBLL xStock", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x4cbf89ed7bb30b8a860fa86d3c96e9c72931299b.png", - "aggregators": ["CoinGecko", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x1b0f6590d21dc02b92ad3a7d00f8884dc4f1aed9": { - "address": "0x1b0f6590d21dc02b92ad3a7d00f8884dc4f1aed9", - "symbol": "SOMI", - "decimals": 18, - "name": "Somnia", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x1b0f6590d21dc02b92ad3a7d00f8884dc4f1aed9.png", - "aggregators": ["Metamask", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x167a6375da1efc4a5be0f470e73ecefd66245048": { - "address": "0x167a6375da1efc4a5be0f470e73ecefd66245048", - "symbol": "UNHX", - "decimals": 18, - "name": "UnitedHealth xStock", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x167a6375da1efc4a5be0f470e73ecefd66245048.png", - "aggregators": ["CoinGecko", "Rubic", "Rango"], - "occurrences": 3 - }, - "0xeedb0273c5af792745180e9ff568cd01550ffa13": { - "address": "0xeedb0273c5af792745180e9ff568cd01550ffa13", - "symbol": "XOMX", - "decimals": 18, - "name": "Exxon Mobil xStock", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xeedb0273c5af792745180e9ff568cd01550ffa13.png", - "aggregators": ["CoinGecko", "Rubic", "Rango"], - "occurrences": 3 - }, - "0xdb0482cfad4789798623e64b15eeba01b16e917c": { - "address": "0xdb0482cfad4789798623e64b15eeba01b16e917c", - "symbol": "JNJX", - "decimals": 18, - "name": "Johnson & Johnson xStock", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xdb0482cfad4789798623e64b15eeba01b16e917c.png", - "aggregators": ["CoinGecko", "Rubic", "Rango"], - "occurrences": 3 - }, - "0xd9fc3e075d45254a1d834fea18af8041207dea0a": { - "address": "0xd9fc3e075d45254a1d834fea18af8041207dea0a", - "symbol": "JPMX", - "decimals": 18, - "name": "JPMorgan Chase xStock", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xd9fc3e075d45254a1d834fea18af8041207dea0a.png", - "aggregators": ["CoinGecko", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x2363fd1235c1b6d3a5088ddf8df3a0b3a30c5293": { - "address": "0x2363fd1235c1b6d3a5088ddf8df3a0b3a30c5293", - "symbol": "VX", - "decimals": 18, - "name": "Visa xStock", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x2363fd1235c1b6d3a5088ddf8df3a0b3a30c5293.png", - "aggregators": ["CoinGecko", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x19c41ea77b34bbdee61c3a87a75d1abda2ed0be4": { - "address": "0x19c41ea77b34bbdee61c3a87a75d1abda2ed0be4", - "symbol": "LLYX", - "decimals": 18, - "name": "Eli Lilly xStock", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x19c41ea77b34bbdee61c3a87a75d1abda2ed0be4.png", - "aggregators": ["CoinGecko", "Rubic", "Rango"], - "occurrences": 3 - }, - "0xb365cd2588065f522d379ad19e903304f6b622c6": { - "address": "0xb365cd2588065f522d379ad19e903304f6b622c6", - "symbol": "MAX", - "decimals": 18, - "name": "Mastercard xStock", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xb365cd2588065f522d379ad19e903304f6b622c6.png", - "aggregators": ["CoinGecko", "Rubic", "Rango"], - "occurrences": 3 - }, - "0xa90424d5d3e770e8644103ab503ed775dd1318fd": { - "address": "0xa90424d5d3e770e8644103ab503ed775dd1318fd", - "symbol": "PGX", - "decimals": 18, - "name": "Procter & Gamble xStock", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xa90424d5d3e770e8644103ab503ed775dd1318fd.png", - "aggregators": ["CoinGecko", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x766b0cd6ed6d90b5d49d2c36a3761e9728501ba9": { - "address": "0x766b0cd6ed6d90b5d49d2c36a3761e9728501ba9", - "symbol": "HDX", - "decimals": 18, - "name": "Home Depot xStock", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x766b0cd6ed6d90b5d49d2c36a3761e9728501ba9.png", - "aggregators": ["CoinGecko", "Rubic", "Rango"], - "occurrences": 3 - }, - "0xad5cdc3340904285b8159089974a99a1a09eb4c0": { - "address": "0xad5cdc3340904285b8159089974a99a1a09eb4c0", - "symbol": "CVXX", - "decimals": 18, - "name": "Chevron xStock", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xad5cdc3340904285b8159089974a99a1a09eb4c0.png", - "aggregators": ["CoinGecko", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x1ac765b5bea23184802c7d2d497f7c33f1444a9e": { - "address": "0x1ac765b5bea23184802c7d2d497f7c33f1444a9e", - "symbol": "PFEX", - "decimals": 18, - "name": "Pfizer xStock", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x1ac765b5bea23184802c7d2d497f7c33f1444a9e.png", - "aggregators": ["CoinGecko", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x17d8186ed8f68059124190d147174d0f6697dc40": { - "address": "0x17d8186ed8f68059124190d147174d0f6697dc40", - "symbol": "MRKX", - "decimals": 18, - "name": "Merck xStock", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x17d8186ed8f68059124190d147174d0f6697dc40.png", - "aggregators": ["CoinGecko", "Rubic", "Rango"], - "occurrences": 3 - }, - "0xfbf2398df672cee4afcc2a4a733222331c742a6a": { - "address": "0xfbf2398df672cee4afcc2a4a733222331c742a6a", - "symbol": "ABBVX", - "decimals": 18, - "name": "AbbVie xStock", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xfbf2398df672cee4afcc2a4a733222331c742a6a.png", - "aggregators": ["CoinGecko", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x36c424a6ec0e264b1616102ad63ed2ad7857413e": { - "address": "0x36c424a6ec0e264b1616102ad63ed2ad7857413e", - "symbol": "PEPX", - "decimals": 18, - "name": "PepsiCo xStock", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x36c424a6ec0e264b1616102ad63ed2ad7857413e.png", - "aggregators": ["CoinGecko", "Rubic", "Rango"], - "occurrences": 3 - }, - "0xdcc1a2699441079da889b1f49e12b69cc791129b": { - "address": "0xdcc1a2699441079da889b1f49e12b69cc791129b", - "symbol": "KOX", - "decimals": 18, - "name": "Coca-Cola xStock", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xdcc1a2699441079da889b1f49e12b69cc791129b.png", - "aggregators": ["CoinGecko", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x7aefc9965699fbea943e03264d96e50cd4a97b21": { - "address": "0x7aefc9965699fbea943e03264d96e50cd4a97b21", - "symbol": "WMTX", - "decimals": 18, - "name": "Walmart xStock", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x7aefc9965699fbea943e03264d96e50cd4a97b21.png", - "aggregators": ["CoinGecko", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x053c784cd87b74f42e0c089f98643e79c1a3ff16": { - "address": "0x053c784cd87b74f42e0c089f98643e79c1a3ff16", - "symbol": "CSCOX", - "decimals": 18, - "name": "Cisco xStock", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x053c784cd87b74f42e0c089f98643e79c1a3ff16.png", - "aggregators": ["CoinGecko", "Rubic", "Rango"], - "occurrences": 3 - }, - "0xf9523e369c5f55ad72dbaa75b0a9b92b3d8b147e": { - "address": "0xf9523e369c5f55ad72dbaa75b0a9b92b3d8b147e", - "symbol": "NVOX", - "decimals": 18, - "name": "Novo Nordisk xStock", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xf9523e369c5f55ad72dbaa75b0a9b92b3d8b147e.png", - "aggregators": ["CoinGecko", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x548308e91ec9f285c7bff05295badbd56a6e4971": { - "address": "0x548308e91ec9f285c7bff05295badbd56a6e4971", - "symbol": "ORCLX", - "decimals": 18, - "name": "Oracle xStock", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x548308e91ec9f285c7bff05295badbd56a6e4971.png", - "aggregators": ["CoinGecko", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x3ee7e9b3a992fd23cd1c363b0e296856b04ab149": { - "address": "0x3ee7e9b3a992fd23cd1c363b0e296856b04ab149", - "symbol": "GSX", - "decimals": 18, - "name": "Goldman Sachs xStock", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x3ee7e9b3a992fd23cd1c363b0e296856b04ab149.png", - "aggregators": ["CoinGecko", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x364f210f430ec2448fc68a49203040f6124096f0": { - "address": "0x364f210f430ec2448fc68a49203040f6124096f0", - "symbol": "COINX", - "decimals": 18, - "name": "Coinbase xStock", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x364f210f430ec2448fc68a49203040f6124096f0.png", - "aggregators": ["CoinGecko", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x2380f2673c640fb67e2d6b55b44c62f0e0e69da9": { - "address": "0x2380f2673c640fb67e2d6b55b44c62f0e0e69da9", - "symbol": "GLDX", - "decimals": 18, - "name": "Gold xStock", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x2380f2673c640fb67e2d6b55b44c62f0e0e69da9.png", - "aggregators": ["CoinGecko", "Rubic", "Rango"], - "occurrences": 3 - }, - "0xfdddb57878ef9d6f681ec4381dcb626b9e69ac86": { - "address": "0xfdddb57878ef9d6f681ec4381dcb626b9e69ac86", - "symbol": "TQQQX", - "decimals": 18, - "name": "TQQQ xStock", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xfdddb57878ef9d6f681ec4381dcb626b9e69ac86.png", - "aggregators": ["CoinGecko", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x2f9a35ab5ddfbc49927bfdeab98a86c53dc6e763": { - "address": "0x2f9a35ab5ddfbc49927bfdeab98a86c53dc6e763", - "symbol": "AMBRX", - "decimals": 18, - "name": "Amber xStock", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x2f9a35ab5ddfbc49927bfdeab98a86c53dc6e763.png", - "aggregators": ["CoinGecko", "Rubic", "Rango"], - "occurrences": 3 - }, - "0xfebded1b0986a8ee107f5ab1a1c5a813491deceb": { - "address": "0xfebded1b0986a8ee107f5ab1a1c5a813491deceb", - "symbol": "CRCLX", - "decimals": 18, - "name": "CRCLx xStock", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xfebded1b0986a8ee107f5ab1a1c5a813491deceb.png", - "aggregators": ["CoinGecko", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x2efa572467c50c04a6eed6742196c0d0d287c1bb": { - "address": "0x2efa572467c50c04a6eed6742196c0d0d287c1bb", - "symbol": "CHAD", - "decimals": 18, - "name": "Based Chad", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x2efa572467c50c04a6eed6742196c0d0d287c1bb.png", - "aggregators": ["CoinMarketCap", "Rubic", "Sonarwatch"], - "occurrences": 3 - }, - "0xc210b2cb65ed3484892167f5e05f7ab496ab0598": { - "address": "0xc210b2cb65ed3484892167f5e05f7ab496ab0598", - "symbol": "LYX", - "decimals": 18, - "name": "Bridged LUKSO (Hyperlane)", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xc210b2cb65ed3484892167f5e05f7ab496ab0598.png", - "aggregators": ["Metamask", "Rubic", "Rango"], - "occurrences": 3 - }, - "0xda2ffa104356688e74d9340519b8c17f00d7752e": { - "address": "0xda2ffa104356688e74d9340519b8c17f00d7752e", - "symbol": "HLSCOPE", - "decimals": 6, - "name": "HLSCOPE", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xda2ffa104356688e74d9340519b8c17f00d7752e.png", - "aggregators": ["CoinGecko", "Rubic", "Rango"], - "occurrences": 3 - }, - "0xf72ae3e0da743033abd7a407557d684c1ae66aed": { - "address": "0xf72ae3e0da743033abd7a407557d684c1ae66aed", - "symbol": "XL1", - "decimals": 18, - "name": "XL1", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xf72ae3e0da743033abd7a407557d684c1ae66aed.png", - "aggregators": ["CoinMarketCap", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x1c3547dfa9ce7acd9c54ae49244575fa65bc75e2": { - "address": "0x1c3547dfa9ce7acd9c54ae49244575fa65bc75e2", - "symbol": "IMAGE", - "decimals": 18, - "name": "IMAGE", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x1c3547dfa9ce7acd9c54ae49244575fa65bc75e2.png", - "aggregators": ["CoinMarketCap", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x840b20fa3d48ac709fd841fcd878c3e8aabd7087": { - "address": "0x840b20fa3d48ac709fd841fcd878c3e8aabd7087", - "symbol": "GLUE", - "decimals": 18, - "name": "GLUE", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x840b20fa3d48ac709fd841fcd878c3e8aabd7087.png", - "aggregators": ["CoinMarketCap", "Rubic", "Rango"], - "occurrences": 3 - }, - "0xecc5f868add75f4ff9fd00bbbde12c35ba2c9c89": { - "address": "0xecc5f868add75f4ff9fd00bbbde12c35ba2c9c89", - "symbol": "BOB", - "decimals": 8, - "name": "BOB", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xecc5f868add75f4ff9fd00bbbde12c35ba2c9c89.png", - "aggregators": ["CoinGecko", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x0a9e3dde12e4519c9d89df69bd738490c9466bf4": { - "address": "0x0a9e3dde12e4519c9d89df69bd738490c9466bf4", - "symbol": "MD", - "decimals": 18, - "name": "Market Dominance", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x0a9e3dde12e4519c9d89df69bd738490c9466bf4.png", - "aggregators": ["CoinGecko", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x17cdb2a01e7a34cbb3dd4b83260b05d0274c8dab": { - "address": "0x17cdb2a01e7a34cbb3dd4b83260b05d0274c8dab", - "symbol": "CNGN", - "decimals": 6, - "name": "CNGN", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x17cdb2a01e7a34cbb3dd4b83260b05d0274c8dab.png", - "aggregators": ["CoinMarketCap", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x9d275685dc284c8eb1c79f6aba7a63dc75ec890a": { - "address": "0x9d275685dc284c8eb1c79f6aba7a63dc75ec890a", - "symbol": "AAPLX", - "decimals": 18, - "name": "Apple xStock", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x9d275685dc284c8eb1c79f6aba7a63dc75ec890a.png", - "aggregators": ["CoinGecko", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x5621737f42dae558b81269fcb9e9e70c19aa6b35": { - "address": "0x5621737f42dae558b81269fcb9e9e70c19aa6b35", - "symbol": "MSFTX", - "decimals": 18, - "name": "Microsoft xStock", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x5621737f42dae558b81269fcb9e9e70c19aa6b35.png", - "aggregators": ["CoinGecko", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x2925ac3be7d585874b88ea51ed50add376ad8239": { - "address": "0x2925ac3be7d585874b88ea51ed50add376ad8239", - "symbol": "AXCNH", - "decimals": 6, - "name": "AXCNH", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x2925ac3be7d585874b88ea51ed50add376ad8239.png", - "aggregators": ["CoinMarketCap", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x3557ba345b01efa20a1bddc61f573bfd87195081": { - "address": "0x3557ba345b01efa20a1bddc61f573bfd87195081", - "symbol": "AMZNX", - "decimals": 18, - "name": "Amazon xStock", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x3557ba345b01efa20a1bddc61f573bfd87195081.png", - "aggregators": ["CoinGecko", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x96702be57cd9777f835117a809c7124fe4ec989a": { - "address": "0x96702be57cd9777f835117a809c7124fe4ec989a", - "symbol": "METAX", - "decimals": 18, - "name": "Meta xStock", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x96702be57cd9777f835117a809c7124fe4ec989a.png", - "aggregators": ["CoinGecko", "Rubic", "Rango"], - "occurrences": 3 - }, - "0xe92f673ca36c5e2efd2de7628f815f84807e803f": { - "address": "0xe92f673ca36c5e2efd2de7628f815f84807e803f", - "symbol": "GOOGLX", - "decimals": 18, - "name": "Alphabet xStock", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xe92f673ca36c5e2efd2de7628f815f84807e803f.png", - "aggregators": ["CoinGecko", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x38bac69cbbd28156796e4163b2b6dcb81e336565": { - "address": "0x38bac69cbbd28156796e4163b2b6dcb81e336565", - "symbol": "AVGOX", - "decimals": 18, - "name": "Broadcom xStock", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x38bac69cbbd28156796e4163b2b6dcb81e336565.png", - "aggregators": ["CoinGecko", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x12992613fdd35abe95dec5a4964331b1ee23b50d": { - "address": "0x12992613fdd35abe95dec5a4964331b1ee23b50d", - "symbol": "BRK.BX", - "decimals": 18, - "name": "Berkshire Hathaway xStock", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x12992613fdd35abe95dec5a4964331b1ee23b50d.png", - "aggregators": ["CoinGecko", "Rubic", "Rango"], - "occurrences": 3 - }, - "0xf0b9889cdb70a716bf72e37ef626f08d9f14c180": { - "address": "0xf0b9889cdb70a716bf72e37ef626f08d9f14c180", - "symbol": "VMANTA", - "decimals": 18, - "name": "VMANTA", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xf0b9889cdb70a716bf72e37ef626f08d9f14c180.png", - "aggregators": ["CoinGecko", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x0581ccdf2d9bca21baeff8b32b2551fd49cf70aa": { - "address": "0x0581ccdf2d9bca21baeff8b32b2551fd49cf70aa", - "symbol": "AT", - "decimals": 18, - "name": "AT", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x0581ccdf2d9bca21baeff8b32b2551fd49cf70aa.png", - "aggregators": ["CoinMarketCap", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x33f6be84becff45ea6aa2952d7ef890b44bfb59d": { - "address": "0x33f6be84becff45ea6aa2952d7ef890b44bfb59d", - "symbol": "ON", - "decimals": 18, - "name": "ON", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x33f6be84becff45ea6aa2952d7ef890b44bfb59d.png", - "aggregators": ["CoinMarketCap", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x337e7456b420bd3481e7fa61fa9850343d610d34": { - "address": "0x337e7456b420bd3481e7fa61fa9850343d610d34", - "symbol": "WMXN", - "decimals": 18, - "name": "Mexican Peso", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x337e7456b420bd3481e7fa61fa9850343d610d34.png", - "aggregators": ["Metamask", "Rubic"], - "occurrences": 2 - }, - "0x15059c599c16fd8f70b633ade165502d6402cd49": { - "address": "0x15059c599c16fd8f70b633ade165502d6402cd49", - "symbol": "LINX", - "decimals": 18, - "name": "Linde xStock", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x15059c599c16fd8f70b633ade165502d6402cd49.png", - "aggregators": ["CoinGecko", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x4a4073f2eaf299a1be22254dcd2c41727f6f54a2": { - "address": "0x4a4073f2eaf299a1be22254dcd2c41727f6f54a2", - "symbol": "CRMX", - "decimals": 18, - "name": "Salesforce xStock", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x4a4073f2eaf299a1be22254dcd2c41727f6f54a2.png", - "aggregators": ["CoinGecko", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x314938c596f5ce31c3f75307d2979338c346d7f2": { - "address": "0x314938c596f5ce31c3f75307d2979338c346d7f2", - "symbol": "BACX", - "decimals": 18, - "name": "Bank of America xStock", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x314938c596f5ce31c3f75307d2979338c346d7f2.png", - "aggregators": ["CoinGecko", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x8a1d45e102e886510e891d2ec656a708991e2d76": { - "address": "0x8a1d45e102e886510e891d2ec656a708991e2d76", - "symbol": "WCOP", - "decimals": 18, - "name": "Colombian Peso", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x8a1d45e102e886510e891d2ec656a708991e2d76.png", - "aggregators": ["Metamask", "Rubic"], - "occurrences": 2 - }, - "0xaf072f109a2c173d822a4fe9af311a1b18f83d19": { - "address": "0xaf072f109a2c173d822a4fe9af311a1b18f83d19", - "symbol": "TMOX", - "decimals": 18, - "name": "Thermo Fisher xStock", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xaf072f109a2c173d822a4fe9af311a1b18f83d19.png", - "aggregators": ["CoinGecko", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x89233399708c18ac6887f90a2b4cd8ba5fedd06e": { - "address": "0x89233399708c18ac6887f90a2b4cd8ba5fedd06e", - "symbol": "ABTX", - "decimals": 18, - "name": "Abbott xStock", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x89233399708c18ac6887f90a2b4cd8ba5fedd06e.png", - "aggregators": ["CoinGecko", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x1f7fd18926a9646f4ff62952706dfcaed7b544bb": { - "address": "0x1f7fd18926a9646f4ff62952706dfcaed7b544bb", - "symbol": "BTC.ℏ", - "decimals": 8, - "name": "BTC.ℏ", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x1f7fd18926a9646f4ff62952706dfcaed7b544bb.png", - "aggregators": ["CoinGecko", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x80a77a372c1e12accda84299492f404902e2da67": { - "address": "0x80a77a372c1e12accda84299492f404902e2da67", - "symbol": "MCDX", - "decimals": 18, - "name": "McDonald's xStock", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x80a77a372c1e12accda84299492f404902e2da67.png", - "aggregators": ["CoinGecko", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x0e63b9c287e32a05e6b9ab8ee8df88a2760225a9": { - "address": "0x0e63b9c287e32a05e6b9ab8ee8df88a2760225a9", - "symbol": "PIEVERSE", - "decimals": 18, - "name": "PIEVERSE", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x0e63b9c287e32a05e6b9ab8ee8df88a2760225a9.png", - "aggregators": ["CoinMarketCap", "Rubic", "Rango"], - "occurrences": 3 - }, - "0xdba228936f4079daf9aa906fd48a87f2300405f4": { - "address": "0xdba228936f4079daf9aa906fd48a87f2300405f4", - "symbol": "DHRX", - "decimals": 18, - "name": "Danaher xStock", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xdba228936f4079daf9aa906fd48a87f2300405f4.png", - "aggregators": ["CoinGecko", "Rubic", "Rango"], - "occurrences": 3 - }, - "0xbc7170a1280be28513b4e940c681537eb25e39f4": { - "address": "0xbc7170a1280be28513b4e940c681537eb25e39f4", - "symbol": "CMCSAX", - "decimals": 18, - "name": "Comcast xStock", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xbc7170a1280be28513b4e940c681537eb25e39f4.png", - "aggregators": ["CoinGecko", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x216b3643ff8b7bb30d8a48e9f1bd550126202add": { - "address": "0x216b3643ff8b7bb30d8a48e9f1bd550126202add", - "symbol": "ACU", - "decimals": 12, - "name": "ACU", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x216b3643ff8b7bb30d8a48e9f1bd550126202add.png", - "aggregators": ["CoinMarketCap", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x6d482cec5f9dd1f05ccee9fd3ff79b246170f8e2": { - "address": "0x6d482cec5f9dd1f05ccee9fd3ff79b246170f8e2", - "symbol": "PLTRX", - "decimals": 18, - "name": "Palantir xStock", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x6d482cec5f9dd1f05ccee9fd3ff79b246170f8e2.png", - "aggregators": ["CoinGecko", "Rubic", "Rango"], - "occurrences": 3 - }, - "0xe1385fdd5ffb10081cd52c56584f25efa9084015": { - "address": "0xe1385fdd5ffb10081cd52c56584f25efa9084015", - "symbol": "HOODX", - "decimals": 18, - "name": "Robinhood xStock", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xe1385fdd5ffb10081cd52c56584f25efa9084015.png", - "aggregators": ["CoinGecko", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x61d450a098b6a7f69fc4b98ce68198fe59768651": { - "address": "0x61d450a098b6a7f69fc4b98ce68198fe59768651", - "symbol": "WCLP", - "decimals": 18, - "name": "Chilean Peso", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x61d450a098b6a7f69fc4b98ce68198fe59768651.png", - "aggregators": ["Metamask", "Rubic"], - "occurrences": 2 - }, - "0xd9913208647671fe0f48f7f260076b2c6f310aac": { - "address": "0xd9913208647671fe0f48f7f260076b2c6f310aac", - "symbol": "IBMX", - "decimals": 18, - "name": "International Business Machines xStock", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xd9913208647671fe0f48f7f260076b2c6f310aac.png", - "aggregators": ["CoinGecko", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x6ad12e761b438bea3ea09f6c6266556bb24c2181": { - "address": "0x6ad12e761b438bea3ea09f6c6266556bb24c2181", - "symbol": "BDX", - "decimals": 9, - "name": "BDX", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x6ad12e761b438bea3ea09f6c6266556bb24c2181.png", - "aggregators": ["CoinMarketCap", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x62a48560861b0b451654bfffdb5be6e47aa8ff1b": { - "address": "0x62a48560861b0b451654bfffdb5be6e47aa8ff1b", - "symbol": "HONX", - "decimals": 18, - "name": "Honeywell xStock", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x62a48560861b0b451654bfffdb5be6e47aa8ff1b.png", - "aggregators": ["CoinGecko", "Rubic", "Rango"], - "occurrences": 3 - }, - "0xf8a80d1cb9cfd70d03d655d9df42339846f3b3c8": { - "address": "0xf8a80d1cb9cfd70d03d655d9df42339846f3b3c8", - "symbol": "INTCX", - "decimals": 18, - "name": "Intel xStock", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xf8a80d1cb9cfd70d03d655d9df42339846f3b3c8.png", - "aggregators": ["CoinGecko", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x50a1291f69d9d3853def8209cfb1af0b46927be1": { - "address": "0x50a1291f69d9d3853def8209cfb1af0b46927be1", - "symbol": "APPX", - "decimals": 18, - "name": "AppLovin xStock", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x50a1291f69d9d3853def8209cfb1af0b46927be1.png", - "aggregators": ["CoinGecko", "Rubic", "Rango"], - "occurrences": 3 - }, - "0xeaad46f4146ded5a47b55aa7f6c48c191deaec88": { - "address": "0xeaad46f4146ded5a47b55aa7f6c48c191deaec88", - "symbol": "MRVLX", - "decimals": 18, - "name": "Marvell xStock", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xeaad46f4146ded5a47b55aa7f6c48c191deaec88.png", - "aggregators": ["CoinGecko", "Rubic", "Rango"], - "occurrences": 3 - }, - "0xe5f6d3b2405abdfe6f660e63202b25d23763160d": { - "address": "0xe5f6d3b2405abdfe6f660e63202b25d23763160d", - "symbol": "GMEX", - "decimals": 18, - "name": "Gamestop xStock", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xe5f6d3b2405abdfe6f660e63202b25d23763160d.png", - "aggregators": ["CoinGecko", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x0588e851ec0418d660bee81230d6c678daf21d46": { - "address": "0x0588e851ec0418d660bee81230d6c678daf21d46", - "symbol": "MDTX", - "decimals": 18, - "name": "Medtronic xStock", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x0588e851ec0418d660bee81230d6c678daf21d46.png", - "aggregators": ["CoinGecko", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x03183ce31b1656b72a55fa6056e287f50c35bbeb": { - "address": "0x03183ce31b1656b72a55fa6056e287f50c35bbeb", - "symbol": "ACNX", - "decimals": 18, - "name": "Accenture xStock", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x03183ce31b1656b72a55fa6056e287f50c35bbeb.png", - "aggregators": ["CoinGecko", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x1958853a8be062dc4f401750eb233f5850f0d0d2": { - "address": "0x1958853a8be062dc4f401750eb233f5850f0d0d2", - "symbol": "SATUSD", - "decimals": 18, - "name": "SATUSD", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x1958853a8be062dc4f401750eb233f5850f0d0d2.png", - "aggregators": ["CoinGecko", "Rubic", "Rango"], - "occurrences": 3 - }, - "0xa227cc36938f0c9e09ce0e64dfab226cad739447": { - "address": "0xa227cc36938f0c9e09ce0e64dfab226cad739447", - "symbol": "OPEN", - "decimals": 18, - "name": "OPEN", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xa227cc36938f0c9e09ce0e64dfab226cad739447.png", - "aggregators": ["CoinMarketCap", "Rubic", "Rango"], - "occurrences": 3 - }, - "0xbd730e618bcd88c82ddee52e10275cf2f88a4777": { - "address": "0xbd730e618bcd88c82ddee52e10275cf2f88a4777", - "symbol": "VTIX", - "decimals": 18, - "name": "Vanguard xStock", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xbd730e618bcd88c82ddee52e10275cf2f88a4777.png", - "aggregators": ["CoinGecko", "Rubic", "Rango"], - "occurrences": 3 - }, - "0xa6a65ac27e76cd53cb790473e4345c46e5ebf961": { - "address": "0xa6a65ac27e76cd53cb790473e4345c46e5ebf961", - "symbol": "NFLXX", - "decimals": 18, - "name": "Netflix xStock", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xa6a65ac27e76cd53cb790473e4345c46e5ebf961.png", - "aggregators": ["CoinGecko", "Rubic", "Rango"], - "occurrences": 3 - }, - "0xc9faeba86e8567477783b8432945f131d84e3fda": { - "address": "0xc9faeba86e8567477783b8432945f131d84e3fda", - "symbol": "CLONE", - "decimals": 18, - "name": "Confidential Layer", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xc9faeba86e8567477783b8432945f131d84e3fda.png", - "aggregators": ["CoinMarketCap", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x02a6c1789c3b4fdb1a7a3dfa39f90e5d3c94f4f9": { - "address": "0x02a6c1789c3b4fdb1a7a3dfa39f90e5d3c94f4f9", - "symbol": "PMX", - "decimals": 18, - "name": "Philip Morris xStock", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x02a6c1789c3b4fdb1a7a3dfa39f90e5d3c94f4f9.png", - "aggregators": ["CoinGecko", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x5d642505fe1a28897eb3baba665f454755d8daa2": { - "address": "0x5d642505fe1a28897eb3baba665f454755d8daa2", - "symbol": "AZNX", - "decimals": 18, - "name": "AstraZeneca xStock", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x5d642505fe1a28897eb3baba665f454755d8daa2.png", - "aggregators": ["CoinGecko", "Rubic", "Rango"], - "occurrences": 3 - }, - "0xe820c06321e60d36257c666643fa5436643445e3": { - "address": "0xe820c06321e60d36257c666643fa5436643445e3", - "symbol": "USDKG", - "decimals": 6, - "name": "USDKG", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xe820c06321e60d36257c666643fa5436643445e3.png", - "aggregators": ["CoinMarketCap", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x59db93d135f16585ed90b8c942d4f8ae0dcfbfc0": { - "address": "0x59db93d135f16585ed90b8c942d4f8ae0dcfbfc0", - "symbol": "RAIN", - "decimals": 18, - "name": "RAIN", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x59db93d135f16585ed90b8c942d4f8ae0dcfbfc0.png", - "aggregators": ["CoinMarketCap", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x4f34c8b3b5fb6d98da888f0fea543d4d9c9f2ebe": { - "address": "0x4f34c8b3b5fb6d98da888f0fea543d4d9c9f2ebe", - "symbol": "WPEN", - "decimals": 18, - "name": "Peruvian Sol", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x4f34c8b3b5fb6d98da888f0fea543d4d9c9f2ebe.png", - "aggregators": ["Metamask", "Rubic"], - "occurrences": 2 - }, - "0xc2d09cf86b9ff43cb29ef8ddca57a4eb4410d5f3": { - "address": "0xc2d09cf86b9ff43cb29ef8ddca57a4eb4410d5f3", - "symbol": "GTBTC", - "decimals": 8, - "name": "GTBTC", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xc2d09cf86b9ff43cb29ef8ddca57a4eb4410d5f3.png", - "aggregators": ["CoinMarketCap", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x373f323d21b38004d17386c18680c57657f78040": { - "address": "0x373f323d21b38004d17386c18680c57657f78040", - "symbol": "NIZA", - "decimals": 18, - "name": "NIZA", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x373f323d21b38004d17386c18680c57657f78040.png", - "aggregators": ["CoinMarketCap", "Rubic", "Rango"], - "occurrences": 3 - }, - "0xe0b7927c4af23765cb51314a0e0521a9645f0e2a": { - "address": "0xe0b7927c4af23765cb51314a0e0521a9645f0e2a", - "symbol": "DGD", - "decimals": 9, - "name": "na", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xe0b7927c4af23765cb51314a0e0521a9645f0e2a.png", - "aggregators": ["CoinMarketCap", "Rubic", "Bancor"], - "occurrences": 3 - }, - "0x7296eaa225804451a91616b29d040cab05435f0d": { - "address": "0x7296eaa225804451a91616b29d040cab05435f0d", - "symbol": "WAVES", - "decimals": 8, - "name": "WAVES", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x7296eaa225804451a91616b29d040cab05435f0d.png", - "aggregators": ["CoinMarketCap", "Socket", "Rubic"], - "occurrences": 3 - }, - "0xfec0cf7fe078a500abf15f1284958f22049c2c7e": { - "address": "0xfec0cf7fe078a500abf15f1284958f22049c2c7e", - "symbol": "ART", - "decimals": 18, - "name": "Maecenas ART Token", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xfec0cf7fe078a500abf15f1284958f22049c2c7e.png", - "aggregators": ["Metamask", "Socket", "Rubic"], - "occurrences": 3 - }, - "0x859a9c0b44cb7066d956a958b0b82e54c9e44b4b": { - "address": "0x859a9c0b44cb7066d956a958b0b82e54c9e44b4b", - "symbol": "IETH", - "decimals": 8, - "name": "iEthereum", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x859a9c0b44cb7066d956a958b0b82e54c9e44b4b.png", - "aggregators": ["CoinMarketCap", "Socket", "Rubic"], - "occurrences": 3 - }, - "0xf70a642bd387f94380ffb90451c2c81d4eb82cbc": { - "address": "0xf70a642bd387f94380ffb90451c2c81d4eb82cbc", - "symbol": "STAR", - "decimals": 18, - "name": "Starbase", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xf70a642bd387f94380ffb90451c2c81d4eb82cbc.png", - "aggregators": ["Metamask", "Socket", "Rubic"], - "occurrences": 3 - }, - "0x26e75307fc0c021472feb8f727839531f112f317": { - "address": "0x26e75307fc0c021472feb8f727839531f112f317", - "symbol": "C20", - "decimals": 18, - "name": "Crypto20", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x26e75307fc0c021472feb8f727839531f112f317.png", - "aggregators": ["Metamask", "Rubic", "Bancor"], - "occurrences": 3 - }, - "0x50bc2ecc0bfdf5666640048038c1aba7b7525683": { - "address": "0x50bc2ecc0bfdf5666640048038c1aba7b7525683", - "symbol": "CV", - "decimals": 18, - "name": "carVertical", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x50bc2ecc0bfdf5666640048038c1aba7b7525683.png", - "aggregators": ["CoinMarketCap", "Rubic", "Rango"], - "occurrences": 3 - }, - "0xea5f88e54d982cbb0c441cde4e79bc305e5b43bc": { - "address": "0xea5f88e54d982cbb0c441cde4e79bc305e5b43bc", - "symbol": "PARETO", - "decimals": 18, - "name": "Pareto Network Token", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xea5f88e54d982cbb0c441cde4e79bc305e5b43bc.png", - "aggregators": ["Metamask", "Rubic", "Rango"], - "occurrences": 3 - }, - "0xffe02ee4c69edf1b340fcad64fbd6b37a7b9e265": { - "address": "0xffe02ee4c69edf1b340fcad64fbd6b37a7b9e265", - "symbol": "NANJ", - "decimals": 8, - "name": "NANJCOIN", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xffe02ee4c69edf1b340fcad64fbd6b37a7b9e265.png", - "aggregators": ["Metamask", "Socket", "Rubic"], - "occurrences": 3 - }, - "0x0a50c93c762fdd6e56d86215c24aaad43ab629aa": { - "address": "0x0a50c93c762fdd6e56d86215c24aaad43ab629aa", - "symbol": "LGO", - "decimals": 8, - "name": "LGO Token", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x0a50c93c762fdd6e56d86215c24aaad43ab629aa.png", - "aggregators": ["CoinMarketCap", "TrustWallet", "Rubic"], - "occurrences": 3 - }, - "0x6888a16ea9792c15a4dcf2f6c623d055c8ede792": { - "address": "0x6888a16ea9792c15a4dcf2f6c623d055c8ede792", - "symbol": "SIG", - "decimals": 18, - "name": "Spectiv Signal Token", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x6888a16ea9792c15a4dcf2f6c623d055c8ede792.png", - "aggregators": ["Metamask", "Rubic", "Bancor"], - "occurrences": 3 - }, - "0xbb1f24c0c1554b9990222f036b0aad6ee4caec29": { - "address": "0xbb1f24c0c1554b9990222f036b0aad6ee4caec29", - "symbol": "SOUL", - "decimals": 18, - "name": "CryptoSoul", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xbb1f24c0c1554b9990222f036b0aad6ee4caec29.png", - "aggregators": ["Metamask", "Socket", "Rubic"], - "occurrences": 3 - }, - "0x4954db6391f4feb5468b6b943d4935353596aec9": { - "address": "0x4954db6391f4feb5468b6b943d4935353596aec9", - "symbol": "USDQ", - "decimals": 18, - "name": "USDQ Stablecoin by Q DAO v1.0", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x4954db6391f4feb5468b6b943d4935353596aec9.png", - "aggregators": ["CoinMarketCap", "Socket", "Rubic"], - "occurrences": 3 - }, - "0x51bd4f39803fcaeff3ef45aae2c3aaff0b9fadcb": { - "address": "0x51bd4f39803fcaeff3ef45aae2c3aaff0b9fadcb", - "symbol": "BOA", - "decimals": 7, - "name": "BOSagora", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x51bd4f39803fcaeff3ef45aae2c3aaff0b9fadcb.png", - "aggregators": ["CoinMarketCap", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x8e30ea2329d95802fd804f4291220b0e2f579812": { - "address": "0x8e30ea2329d95802fd804f4291220b0e2f579812", - "symbol": "DVP", - "decimals": 18, - "name": "Decentralized Vulnerability Platform", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x8e30ea2329d95802fd804f4291220b0e2f579812.png", - "aggregators": ["CoinMarketCap", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x66fd97a78d8854fec445cd1c80a07896b0b4851f": { - "address": "0x66fd97a78d8854fec445cd1c80a07896b0b4851f", - "symbol": "LMY", - "decimals": 18, - "name": "Lunch Money", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x66fd97a78d8854fec445cd1c80a07896b0b4851f.png", - "aggregators": ["Metamask", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x8c4e7f814d40f8929f9112c5d09016f923d34472": { - "address": "0x8c4e7f814d40f8929f9112c5d09016f923d34472", - "symbol": "XLAB", - "decimals": 18, - "name": "XcelToken Plus", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x8c4e7f814d40f8929f9112c5d09016f923d34472.png", - "aggregators": ["CoinMarketCap", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x679131f591b4f369acb8cd8c51e68596806c3916": { - "address": "0x679131f591b4f369acb8cd8c51e68596806c3916", - "symbol": "TLN", - "decimals": 18, - "name": "Trustlines Network Token", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x679131f591b4f369acb8cd8c51e68596806c3916.png", - "aggregators": ["CoinMarketCap", "LiFi", "Rubic"], - "occurrences": 3 - }, - "0xcee1d3c3a02267e37e6b373060f79d5d7b9e1669": { - "address": "0xcee1d3c3a02267e37e6b373060f79d5d7b9e1669", - "symbol": "YFFI", - "decimals": 18, - "name": "yffi.finance", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xcee1d3c3a02267e37e6b373060f79d5d7b9e1669.png", - "aggregators": ["CoinMarketCap", "LiFi", "Rubic"], - "occurrences": 3 - }, - "0x309013d55fb0e8c17363bcc79f25d92f711a5802": { - "address": "0x309013d55fb0e8c17363bcc79f25d92f711a5802", - "symbol": "SBTC", - "decimals": 9, - "name": "Soft Bitcoin", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x309013d55fb0e8c17363bcc79f25d92f711a5802.png", - "aggregators": ["CoinMarketCap", "Socket", "Rubic"], - "occurrences": 3 - }, - "0x28cb7e841ee97947a86b06fa4090c8451f64c0be": { - "address": "0x28cb7e841ee97947a86b06fa4090c8451f64c0be", - "symbol": "YFL", - "decimals": 18, - "name": "YF Link", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x28cb7e841ee97947a86b06fa4090c8451f64c0be.png", - "aggregators": ["Metamask", "Rubic", "Rango"], - "occurrences": 3 - }, - "0xc4cb5793bd58bad06bf51fb37717b86b02cbe8a4": { - "address": "0xc4cb5793bd58bad06bf51fb37717b86b02cbe8a4", - "symbol": "CREDIT", - "decimals": 18, - "name": "CREDIT", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xc4cb5793bd58bad06bf51fb37717b86b02cbe8a4.png", - "aggregators": ["CoinMarketCap", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x9e78b8274e1d6a76a0dbbf90418894df27cbceb5": { - "address": "0x9e78b8274e1d6a76a0dbbf90418894df27cbceb5", - "symbol": "UNIFI", - "decimals": 18, - "name": "UniFi", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x9e78b8274e1d6a76a0dbbf90418894df27cbceb5.png", - "aggregators": ["CoinMarketCap", "Rubic", "Rango"], - "occurrences": 3 - }, - "0xd7b7d3c0bda57723fb54ab95fd8f9ea033af37f2": { - "address": "0xd7b7d3c0bda57723fb54ab95fd8f9ea033af37f2", - "symbol": "PYLON", - "decimals": 18, - "name": "PYLON", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xd7b7d3c0bda57723fb54ab95fd8f9ea033af37f2.png", - "aggregators": ["CoinMarketCap", "Socket", "Rubic"], - "occurrences": 3 - }, - "0x00a8b738e453ffd858a7edf03bccfe20412f0eb0": { - "address": "0x00a8b738e453ffd858a7edf03bccfe20412f0eb0", - "symbol": "ALBT", - "decimals": 18, - "name": "AllianceBlock Token", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x00a8b738e453ffd858a7edf03bccfe20412f0eb0.png", - "aggregators": ["CoinMarketCap", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x556148562d5ddeb72545d7ec4b3ec8edc8f55ba7": { - "address": "0x556148562d5ddeb72545d7ec4b3ec8edc8f55ba7", - "symbol": "PRDX", - "decimals": 18, - "name": "Predix Network", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x556148562d5ddeb72545d7ec4b3ec8edc8f55ba7.png", - "aggregators": ["CoinMarketCap", "Socket", "Rubic"], - "occurrences": 3 - }, - "0x44ea84a85616f8e9cd719fc843de31d852ad7240": { - "address": "0x44ea84a85616f8e9cd719fc843de31d852ad7240", - "symbol": "NTRUMP", - "decimals": 15, - "name": "NO Donald Trump", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x44ea84a85616f8e9cd719fc843de31d852ad7240.png", - "aggregators": ["CoinMarketCap", "LiFi", "Rubic"], - "occurrences": 3 - }, - "0xefc1c73a3d8728dc4cf2a18ac5705fe93e5914ac": { - "address": "0xefc1c73a3d8728dc4cf2a18ac5705fe93e5914ac", - "symbol": "METRIC", - "decimals": 18, - "name": "Metric.exchange", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xefc1c73a3d8728dc4cf2a18ac5705fe93e5914ac.png", - "aggregators": ["CoinMarketCap", "LiFi", "Rubic"], - "occurrences": 3 - }, - "0x4674672bcddda2ea5300f5207e1158185c944bc0": { - "address": "0x4674672bcddda2ea5300f5207e1158185c944bc0", - "symbol": "GXT", - "decimals": 18, - "name": "Gem Exchange and Trading", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x4674672bcddda2ea5300f5207e1158185c944bc0.png", - "aggregators": ["CoinMarketCap", "Rubic", "Rango"], - "occurrences": 3 - }, - "0xd82bb924a1707950903e2c0a619824024e254cd1": { - "address": "0xd82bb924a1707950903e2c0a619824024e254cd1", - "symbol": "DAOFI", - "decimals": 18, - "name": "DAOfi", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xd82bb924a1707950903e2c0a619824024e254cd1.png", - "aggregators": ["CoinMarketCap", "Socket", "Rubic"], - "occurrences": 3 - }, - "0x8d3e855f3f55109d473735ab76f753218400fe96": { - "address": "0x8d3e855f3f55109d473735ab76f753218400fe96", - "symbol": "BUND", - "decimals": 18, - "name": "Bundles", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x8d3e855f3f55109d473735ab76f753218400fe96.png", - "aggregators": ["CoinMarketCap", "Rubic", "Rango"], - "occurrences": 3 - }, - "0xba358b6f5b4c0215650444b8c30d870b55050d2d": { - "address": "0xba358b6f5b4c0215650444b8c30d870b55050d2d", - "symbol": "HUB", - "decimals": 18, - "name": "Hub Token", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xba358b6f5b4c0215650444b8c30d870b55050d2d.png", - "aggregators": ["Metamask", "Socket", "Rubic"], - "occurrences": 3 - }, - "0x7b3d36eb606f873a75a6ab68f8c999848b04f935": { - "address": "0x7b3d36eb606f873a75a6ab68f8c999848b04f935", - "symbol": "LOOT", - "decimals": 18, - "name": "NFTLootBox.com", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x7b3d36eb606f873a75a6ab68f8c999848b04f935.png", - "aggregators": ["CoinMarketCap", "Socket", "Rubic"], - "occurrences": 3 - }, - "0x0fe629d1e84e171f8ff0c1ded2cc2221caa48a3f": { - "address": "0x0fe629d1e84e171f8ff0c1ded2cc2221caa48a3f", - "symbol": "MASK", - "decimals": 18, - "name": "Mask", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x0fe629d1e84e171f8ff0c1ded2cc2221caa48a3f.png", - "aggregators": ["CoinMarketCap", "LiFi", "Rubic"], - "occurrences": 3 - }, - "0x2b4200a8d373d484993c37d63ee14aee0096cd12": { - "address": "0x2b4200a8d373d484993c37d63ee14aee0096cd12", - "symbol": "USDFL", - "decimals": 18, - "name": "USDFreeLiquidity", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x2b4200a8d373d484993c37d63ee14aee0096cd12.png", - "aggregators": ["CoinMarketCap", "Socket", "Rubic"], - "occurrences": 3 - }, - "0x0fcbc31c503b4a9ed90e87f8ff46c318a4a14260": { - "address": "0x0fcbc31c503b4a9ed90e87f8ff46c318a4a14260", - "symbol": "QTF", - "decimals": 8, - "name": "Quantfury Token", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x0fcbc31c503b4a9ed90e87f8ff46c318a4a14260.png", - "aggregators": ["CoinMarketCap", "Rubic", "Rango"], - "occurrences": 3 - }, - "0xe6c3502997f97f9bde34cb165fbce191065e068f": { - "address": "0xe6c3502997f97f9bde34cb165fbce191065e068f", - "symbol": "KBTC", - "decimals": 18, - "name": "KBTC", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xe6c3502997f97f9bde34cb165fbce191065e068f.png", - "aggregators": ["CoinMarketCap", "Socket", "Rubic"], - "occurrences": 3 - }, - "0x75739d5944534115d7c54ee8c73f186d793bae02": { - "address": "0x75739d5944534115d7c54ee8c73f186d793bae02", - "symbol": "CO2", - "decimals": 18, - "name": "Collective", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x75739d5944534115d7c54ee8c73f186d793bae02.png", - "aggregators": ["CoinMarketCap", "LiFi", "Rubic"], - "occurrences": 3 - }, - "0xeb58343b36c7528f23caae63a150240241310049": { - "address": "0xeb58343b36c7528f23caae63a150240241310049", - "symbol": "NBU", - "decimals": 18, - "name": "NBU", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xeb58343b36c7528f23caae63a150240241310049.png", - "aggregators": ["Metamask", "Socket", "Rubic"], - "occurrences": 3 - }, - "0x40986a85b4cfcdb054a6cbfb1210194fee51af88": { - "address": "0x40986a85b4cfcdb054a6cbfb1210194fee51af88", - "symbol": "UFARM", - "decimals": 18, - "name": "UniFarm", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x40986a85b4cfcdb054a6cbfb1210194fee51af88.png", - "aggregators": ["CoinMarketCap", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x6c7b97c7e09e790d161769a52f155125fac6d5a1": { - "address": "0x6c7b97c7e09e790d161769a52f155125fac6d5a1", - "symbol": "ANGEL", - "decimals": 18, - "name": "Angel", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x6c7b97c7e09e790d161769a52f155125fac6d5a1.png", - "aggregators": ["CoinMarketCap", "Socket", "Rubic"], - "occurrences": 3 - }, - "0x65f9a292f1aeed5d755aa2fd2fb17ab2e9431447": { - "address": "0x65f9a292f1aeed5d755aa2fd2fb17ab2e9431447", - "symbol": "SOMEE", - "decimals": 18, - "name": "SoMee.Social", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x65f9a292f1aeed5d755aa2fd2fb17ab2e9431447.png", - "aggregators": ["CoinMarketCap", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x853bb55c1f469902f088a629db8c8803a9be3857": { - "address": "0x853bb55c1f469902f088a629db8c8803a9be3857", - "symbol": "ONE1INCH", - "decimals": 18, - "name": "one1INCH", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x853bb55c1f469902f088a629db8c8803a9be3857.png", - "aggregators": ["CoinMarketCap", "Socket", "Rubic"], - "occurrences": 3 - }, - "0xc3d088842dcf02c13699f936bb83dfbbc6f721ab": { - "address": "0xc3d088842dcf02c13699f936bb83dfbbc6f721ab", - "symbol": "VETH", - "decimals": 18, - "name": "Voucher Ethereum", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xc3d088842dcf02c13699f936bb83dfbbc6f721ab.png", - "aggregators": ["CoinMarketCap", "Socket", "Rubic"], - "occurrences": 3 - }, - "0xc40f23a3e9613e012944f7957edce97899fa920d": { - "address": "0xc40f23a3e9613e012944f7957edce97899fa920d", - "symbol": "DHP", - "decimals": 18, - "name": "dHealth", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xc40f23a3e9613e012944f7957edce97899fa920d.png", - "aggregators": ["CoinMarketCap", "Socket", "Rubic"], - "occurrences": 3 - }, - "0xa23c1194d421f252b4e6d5edcc3205f7650a4ebe": { - "address": "0xa23c1194d421f252b4e6d5edcc3205f7650a4ebe", - "symbol": "LBP", - "decimals": 18, - "name": "Launch Block", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xa23c1194d421f252b4e6d5edcc3205f7650a4ebe.png", - "aggregators": ["CoinMarketCap", "Rubic", "Rango"], - "occurrences": 3 - }, - "0xe803178b48a0e560c2b19f3b3d4e504f79d229ce": { - "address": "0xe803178b48a0e560c2b19f3b3d4e504f79d229ce", - "symbol": "BOBC", - "decimals": 18, - "name": "bobcoin", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xe803178b48a0e560c2b19f3b3d4e504f79d229ce.png", - "aggregators": ["CoinMarketCap", "Rubic", "Rango"], - "occurrences": 3 - }, - "0xb620be8a1949aa9532e6a3510132864ef9bc3f82": { - "address": "0xb620be8a1949aa9532e6a3510132864ef9bc3f82", - "symbol": "LFT", - "decimals": 18, - "name": "LendFlare DAO Token", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xb620be8a1949aa9532e6a3510132864ef9bc3f82.png", - "aggregators": ["CoinMarketCap", "LiFi", "Rubic"], - "occurrences": 3 - }, - "0x3cbb7f5d7499af626026e96a2f05df806f2200dc": { - "address": "0x3cbb7f5d7499af626026e96a2f05df806f2200dc", - "symbol": "PANDA", - "decimals": 18, - "name": "Panda DAO", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x3cbb7f5d7499af626026e96a2f05df806f2200dc.png", - "aggregators": ["CoinMarketCap", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x4e4a47cac6a28a62dcc20990ed2cda9bc659469f": { - "address": "0x4e4a47cac6a28a62dcc20990ed2cda9bc659469f", - "symbol": "SHIT", - "decimals": 18, - "name": "ShitCoin", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x4e4a47cac6a28a62dcc20990ed2cda9bc659469f.png", - "aggregators": ["CoinMarketCap", "Rubic", "Rango"], - "occurrences": 3 - }, - "0xc91a71a1ffa3d8b22ba615ba1b9c01b2bbbf55ad": { - "address": "0xc91a71a1ffa3d8b22ba615ba1b9c01b2bbbf55ad", - "symbol": "ZZ", - "decimals": 18, - "name": "ZigZag", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xc91a71a1ffa3d8b22ba615ba1b9c01b2bbbf55ad.png", - "aggregators": ["CoinMarketCap", "LiFi", "Rubic"], - "occurrences": 3 - }, - "0xf941d3aabf2ee0f5589e68ba6047b8329592b366": { - "address": "0xf941d3aabf2ee0f5589e68ba6047b8329592b366", - "symbol": "HEEL", - "decimals": 9, - "name": "Good Dog", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xf941d3aabf2ee0f5589e68ba6047b8329592b366.png", - "aggregators": ["CoinMarketCap", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x44f5909e97e1cbf5fbbdf0fc92fd83cde5d5c58a": { - "address": "0x44f5909e97e1cbf5fbbdf0fc92fd83cde5d5c58a", - "symbol": "ACRIA", - "decimals": 18, - "name": "Acria Token", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x44f5909e97e1cbf5fbbdf0fc92fd83cde5d5c58a.png", - "aggregators": ["CoinMarketCap", "Rubic", "Rango"], - "occurrences": 3 - }, - "0xcedefe438860d2789da6419b3a19cece2a41038d": { - "address": "0xcedefe438860d2789da6419b3a19cece2a41038d", - "symbol": "LHINU", - "decimals": 18, - "name": "Love Hate Inu", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xcedefe438860d2789da6419b3a19cece2a41038d.png", - "aggregators": ["CoinMarketCap", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x4216663ddc7bd10eaf44609df4dd0f91cd2be7f2": { - "address": "0x4216663ddc7bd10eaf44609df4dd0f91cd2be7f2", - "symbol": "MPEPE", - "decimals": 18, - "name": "MicroPepe", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x4216663ddc7bd10eaf44609df4dd0f91cd2be7f2.png", - "aggregators": ["CoinMarketCap", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x8aa9381b2544b48c26f3b850f6e07e2c5161eb3e": { - "address": "0x8aa9381b2544b48c26f3b850f6e07e2c5161eb3e", - "symbol": "WDOGE", - "decimals": 8, - "name": "Wrapped DOGE", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x8aa9381b2544b48c26f3b850f6e07e2c5161eb3e.png", - "aggregators": ["CoinMarketCap", "Rubic", "Squid"], - "occurrences": 3 - }, - "0xf10c41ca085fc8d9326a65408d14dae28a3e69a5": { - "address": "0xf10c41ca085fc8d9326a65408d14dae28a3e69a5", - "symbol": "ISLM", - "decimals": 18, - "name": "Islamic Coin", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xf10c41ca085fc8d9326a65408d14dae28a3e69a5.png", - "aggregators": ["CoinMarketCap", "Rubic", "Squid"], - "occurrences": 3 - }, - "0x6ad9a31f02f1e790ff85584ea3c3d0001e45cd64": { - "address": "0x6ad9a31f02f1e790ff85584ea3c3d0001e45cd64", - "symbol": "C2H6", - "decimals": 9, - "name": "Ethane", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x6ad9a31f02f1e790ff85584ea3c3d0001e45cd64.png", - "aggregators": ["CoinMarketCap", "Rubic", "Sonarwatch"], - "occurrences": 3 - }, - "0x41ea5d41eeacc2d5c4072260945118a13bb7ebce": { - "address": "0x41ea5d41eeacc2d5c4072260945118a13bb7ebce", - "symbol": "CRE", - "decimals": 18, - "name": "CRESO", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x41ea5d41eeacc2d5c4072260945118a13bb7ebce.png", - "aggregators": ["CoinMarketCap", "Rubic", "Rango"], - "occurrences": 3 - }, - "0xd9adfb67381d392c6e9671f64cdd9014bfcd74f2": { - "address": "0xd9adfb67381d392c6e9671f64cdd9014bfcd74f2", - "symbol": "MORRA", - "decimals": 18, - "name": "Morra", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xd9adfb67381d392c6e9671f64cdd9014bfcd74f2.png", - "aggregators": ["CoinMarketCap", "Rubic", "Sonarwatch"], - "occurrences": 3 - }, - "0xb71bdc7014f3740d0267d41d632cab8371f8ba3c": { - "address": "0xb71bdc7014f3740d0267d41d632cab8371f8ba3c", - "symbol": "MILEI", - "decimals": 18, - "name": "MILEI", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xb71bdc7014f3740d0267d41d632cab8371f8ba3c.png", - "aggregators": ["CoinMarketCap", "Socket", "Rubic"], - "occurrences": 3 - }, - "0xd3210f246ae54c5a45a7b4a83315bf718f591bfc": { - "address": "0xd3210f246ae54c5a45a7b4a83315bf718f591bfc", - "symbol": "ARKI", - "decimals": 9, - "name": "ArkiTech", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xd3210f246ae54c5a45a7b4a83315bf718f591bfc.png", - "aggregators": ["Metamask", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x7ab7d54f8cb054141142f04ba0b3d41ac4c4d61c": { - "address": "0x7ab7d54f8cb054141142f04ba0b3d41ac4c4d61c", - "symbol": "NOTHING", - "decimals": 18, - "name": "NOTHING", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x7ab7d54f8cb054141142f04ba0b3d41ac4c4d61c.png", - "aggregators": ["CoinMarketCap", "Rubic", "Rango"], - "occurrences": 3 - }, - "0xfc5e4ed56153b57aa8ef769eba3e79e58e19be93": { - "address": "0xfc5e4ed56153b57aa8ef769eba3e79e58e19be93", - "symbol": "SOLAV", - "decimals": 18, - "name": "SOLAV TOKEN", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xfc5e4ed56153b57aa8ef769eba3e79e58e19be93.png", - "aggregators": ["CoinMarketCap", "Rubic", "Rango"], - "occurrences": 3 - }, - "0xde8cd13b812bcd82218754a740b27e76ec1e86ad": { - "address": "0xde8cd13b812bcd82218754a740b27e76ec1e86ad", - "symbol": "TRESTLE", - "decimals": 18, - "name": "Trestle", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xde8cd13b812bcd82218754a740b27e76ec1e86ad.png", - "aggregators": ["CoinMarketCap", "Rubic", "Rango"], - "occurrences": 3 - }, - "0xe97f6dde78b11b58cb3e394f15ab592cb2acd290": { - "address": "0xe97f6dde78b11b58cb3e394f15ab592cb2acd290", - "symbol": "MUNITY", - "decimals": 18, - "name": "Metahorse Unity Token", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xe97f6dde78b11b58cb3e394f15ab592cb2acd290.png", - "aggregators": ["CoinMarketCap", "Rubic", "Squid"], - "occurrences": 3 - }, - "0x06d6f0dd6703a1cfe16025dcc55f36f017887627": { - "address": "0x06d6f0dd6703a1cfe16025dcc55f36f017887627", - "symbol": "MTGX", - "decimals": 18, - "name": "Montage Token", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x06d6f0dd6703a1cfe16025dcc55f36f017887627.png", - "aggregators": ["CoinMarketCap", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x02020595e6a34a03a8e9c1f5624b1b7713810083": { - "address": "0x02020595e6a34a03a8e9c1f5624b1b7713810083", - "symbol": "SPCT", - "decimals": 18, - "name": "Spectra Chain", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x02020595e6a34a03a8e9c1f5624b1b7713810083.png", - "aggregators": ["CoinMarketCap", "Socket", "Rubic"], - "occurrences": 3 - }, - "0xfb0489e9753b045ddb35e39c6b0cc02ec6b99ac5": { - "address": "0xfb0489e9753b045ddb35e39c6b0cc02ec6b99ac5", - "symbol": "AGG", - "decimals": 18, - "name": "AGG", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xfb0489e9753b045ddb35e39c6b0cc02ec6b99ac5.png", - "aggregators": ["CoinMarketCap", "Rubic", "Rango"], - "occurrences": 3 - }, - "0xe91598331a36a78f7fefe277ce7c1915da0afb93": { - "address": "0xe91598331a36a78f7fefe277ce7c1915da0afb93", - "symbol": "RB", - "decimals": 18, - "name": "RunesBridge", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xe91598331a36a78f7fefe277ce7c1915da0afb93.png", - "aggregators": ["CoinMarketCap", "Socket", "Rubic"], - "occurrences": 3 - }, - "0xb2a25f7d864636e44bc1bf7a316897652bf07463": { - "address": "0xb2a25f7d864636e44bc1bf7a316897652bf07463", - "symbol": "LEGION", - "decimals": 18, - "name": "LEGION", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xb2a25f7d864636e44bc1bf7a316897652bf07463.png", - "aggregators": ["CoinMarketCap", "Rubic", "Rango"], - "occurrences": 3 - }, - "0xa4fc78495d545fd0991a4bc86a0fe01cda4422bd": { - "address": "0xa4fc78495d545fd0991a4bc86a0fe01cda4422bd", - "symbol": "KETAMINE", - "decimals": 18, - "name": "Ketamine", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xa4fc78495d545fd0991a4bc86a0fe01cda4422bd.png", - "aggregators": ["CoinMarketCap", "Rubic", "Rango"], - "occurrences": 3 - }, - "0xa462bde22d98335e18a21555b6752db93a937cff": { - "address": "0xa462bde22d98335e18a21555b6752db93a937cff", - "symbol": "BOBBY", - "decimals": 18, - "name": "Kennedy Memecoin", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xa462bde22d98335e18a21555b6752db93a937cff.png", - "aggregators": ["CoinMarketCap", "Rubic", "Sonarwatch"], - "occurrences": 3 - }, - "0x1842f548295b222c56939745d8ddf74981d40030": { - "address": "0x1842f548295b222c56939745d8ddf74981d40030", - "symbol": "QUDEFI", - "decimals": 18, - "name": "Qudefi", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x1842f548295b222c56939745d8ddf74981d40030.png", - "aggregators": ["CoinMarketCap", "Rubic", "Sonarwatch"], - "occurrences": 3 - }, - "0x88ee7a3537667958d040216d9dc1752d1274d838": { - "address": "0x88ee7a3537667958d040216d9dc1752d1274d838", - "symbol": "MMC", - "decimals": 6, - "name": "MoveMoveCoin", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x88ee7a3537667958d040216d9dc1752d1274d838.png", - "aggregators": ["CoinMarketCap", "Rubic", "Rango"], - "occurrences": 3 - }, - "0xd0054b65b683dbdd324b51f5f1f16aadeb99a74b": { - "address": "0xd0054b65b683dbdd324b51f5f1f16aadeb99a74b", - "symbol": "HEM", - "decimals": 18, - "name": "Hemera", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xd0054b65b683dbdd324b51f5f1f16aadeb99a74b.png", - "aggregators": ["CoinMarketCap", "Rubic", "Rango"], - "occurrences": 3 - }, - "0xf986408a1788ceb3bb4b4be4aa96a43914168554": { - "address": "0xf986408a1788ceb3bb4b4be4aa96a43914168554", - "symbol": "FASTAI", - "decimals": 18, - "name": "Fast And AI", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xf986408a1788ceb3bb4b4be4aa96a43914168554.png", - "aggregators": ["CoinMarketCap", "Socket", "Rubic"], - "occurrences": 3 - }, - "0xae5b2aa98532c0c27c88f2085d66b5263f4b9fee": { - "address": "0xae5b2aa98532c0c27c88f2085d66b5263f4b9fee", - "symbol": "ISEC", - "decimals": 9, - "name": "IntelliSecure Systems", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xae5b2aa98532c0c27c88f2085d66b5263f4b9fee.png", - "aggregators": ["CoinMarketCap", "Socket", "Rubic"], - "occurrences": 3 - }, - "0xe683d3bda5ae110497aae63f2561694a4374f2ae": { - "address": "0xe683d3bda5ae110497aae63f2561694a4374f2ae", - "symbol": "TRUMPSFIGHT", - "decimals": 18, - "name": "TrumpsFight", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xe683d3bda5ae110497aae63f2561694a4374f2ae.png", - "aggregators": ["CoinMarketCap", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x79874e049a65c330b23f99cf09dd93e58b1f46ad": { - "address": "0x79874e049a65c330b23f99cf09dd93e58b1f46ad", - "symbol": "BBL", - "decimals": 18, - "name": "Babble AI", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x79874e049a65c330b23f99cf09dd93e58b1f46ad.png", - "aggregators": ["CoinMarketCap", "Socket", "Rubic"], - "occurrences": 3 - }, - "0x5f8b6827ec4c0de4787e19c30d9eda1e264a7858": { - "address": "0x5f8b6827ec4c0de4787e19c30d9eda1e264a7858", - "symbol": "CRYPT", - "decimals": 18, - "name": "Cryptify", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x5f8b6827ec4c0de4787e19c30d9eda1e264a7858.png", - "aggregators": ["CoinMarketCap", "Rubic", "Sonarwatch"], - "occurrences": 3 - }, - "0xf1eccd41cce1f4beb8c5ca87de7949816ce05a45": { - "address": "0xf1eccd41cce1f4beb8c5ca87de7949816ce05a45", - "symbol": "MOCK", - "decimals": 18, - "name": "Mock Capital", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xf1eccd41cce1f4beb8c5ca87de7949816ce05a45.png", - "aggregators": ["CoinMarketCap", "Socket", "Rubic"], - "occurrences": 3 - }, - "0xd166b7d9824cc5359360b47389aba9341ce12619": { - "address": "0xd166b7d9824cc5359360b47389aba9341ce12619", - "symbol": "PNX", - "decimals": 9, - "name": "Phenx", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xd166b7d9824cc5359360b47389aba9341ce12619.png", - "aggregators": ["CoinMarketCap", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x84f171f4c7b43966231847cc6e60416e6c3a7360": { - "address": "0x84f171f4c7b43966231847cc6e60416e6c3a7360", - "symbol": "EVAI", - "decimals": 18, - "name": "EVA Intelligence", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x84f171f4c7b43966231847cc6e60416e6c3a7360.png", - "aggregators": ["CoinMarketCap", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x7099ab9e42fa7327a6b15e0a0c120c3e50d11bec": { - "address": "0x7099ab9e42fa7327a6b15e0a0c120c3e50d11bec", - "symbol": "BTC", - "decimals": 9, - "name": "HarryPotterTrumpSonic100Inu", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x7099ab9e42fa7327a6b15e0a0c120c3e50d11bec.png", - "aggregators": ["CoinMarketCap", "Socket", "Rubic"], - "occurrences": 3 - }, - "0x41a1ef3d81d091465f22e8ed2a7e06d59a8532b7": { - "address": "0x41a1ef3d81d091465f22e8ed2a7e06d59a8532b7", - "symbol": "FCO", - "decimals": 18, - "name": "Fanatico", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x41a1ef3d81d091465f22e8ed2a7e06d59a8532b7.png", - "aggregators": ["CoinMarketCap", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x90f29ccd18c9181a9243eff8f7546eef4b64994c": { - "address": "0x90f29ccd18c9181a9243eff8f7546eef4b64994c", - "symbol": "SIMAI", - "decimals": 18, - "name": "Simian AI", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x90f29ccd18c9181a9243eff8f7546eef4b64994c.png", - "aggregators": ["CoinMarketCap", "Rubic", "Sonarwatch"], - "occurrences": 3 - }, - "0x6f365eb3686ee95bdefbae71f1728d62c0af7ab1": { - "address": "0x6f365eb3686ee95bdefbae71f1728d62c0af7ab1", - "symbol": "AITHER", - "decimals": 18, - "name": "Aither", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x6f365eb3686ee95bdefbae71f1728d62c0af7ab1.png", - "aggregators": ["CoinMarketCap", "Rubic", "Sonarwatch"], - "occurrences": 3 - }, - "0xc7068fff81f3a5b8c49cf6d35b3bc524c3f045e9": { - "address": "0xc7068fff81f3a5b8c49cf6d35b3bc524c3f045e9", - "symbol": "MYST", - "decimals": 18, - "name": "MYST", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xc7068fff81f3a5b8c49cf6d35b3bc524c3f045e9.png", - "aggregators": ["CoinMarketCap", "Rubic", "Sonarwatch"], - "occurrences": 3 - }, - "0x15cdf971fb7b5074b497add287185ab64cc0c375": { - "address": "0x15cdf971fb7b5074b497add287185ab64cc0c375", - "symbol": "HOODRAT", - "decimals": 9, - "name": "Hoodrat", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x15cdf971fb7b5074b497add287185ab64cc0c375.png", - "aggregators": ["CoinMarketCap", "Socket", "Rubic"], - "occurrences": 3 - }, - "0x4bd4a35b73c8f5db09ed0b6e2f9ae8999b5971b0": { - "address": "0x4bd4a35b73c8f5db09ed0b6e2f9ae8999b5971b0", - "symbol": "FAI", - "decimals": 18, - "name": "Freelance AI", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x4bd4a35b73c8f5db09ed0b6e2f9ae8999b5971b0.png", - "aggregators": ["CoinMarketCap", "Socket", "Rubic"], - "occurrences": 3 - }, - "0xaac37daf4aa8048d59e2172b519ec50fce47f8e4": { - "address": "0xaac37daf4aa8048d59e2172b519ec50fce47f8e4", - "symbol": "ARA", - "decimals": 9, - "name": "Ara", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xaac37daf4aa8048d59e2172b519ec50fce47f8e4.png", - "aggregators": ["CoinMarketCap", "Socket", "Rubic"], - "occurrences": 3 - }, - "0x24ace0aa510a4cf8d892e70d538001f84f5b5f3a": { - "address": "0x24ace0aa510a4cf8d892e70d538001f84f5b5f3a", - "symbol": "LUDUS", - "decimals": 18, - "name": "Ludus", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x24ace0aa510a4cf8d892e70d538001f84f5b5f3a.png", - "aggregators": ["CoinMarketCap", "Rubic", "Sonarwatch"], - "occurrences": 3 - }, - "0x418e9cdd368818334d2a97470f77e0ebf1b8224a": { - "address": "0x418e9cdd368818334d2a97470f77e0ebf1b8224a", - "symbol": "AGI", - "decimals": 18, - "name": "Ambient AGI", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x418e9cdd368818334d2a97470f77e0ebf1b8224a.png", - "aggregators": ["CoinMarketCap", "Rubic", "Sonarwatch"], - "occurrences": 3 - }, - "0xcaa1e525acb44aec4e0d17a0e2467aa3ea7ee3a6": { - "address": "0xcaa1e525acb44aec4e0d17a0e2467aa3ea7ee3a6", - "symbol": "MARIE", - "decimals": 9, - "name": "Marie Rose", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xcaa1e525acb44aec4e0d17a0e2467aa3ea7ee3a6.png", - "aggregators": ["CoinMarketCap", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x809b05ff167c7d70425951753bc0eb0fcc8e491f": { - "address": "0x809b05ff167c7d70425951753bc0eb0fcc8e491f", - "symbol": "COMMS", - "decimals": 9, - "name": "CallofMeme", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x809b05ff167c7d70425951753bc0eb0fcc8e491f.png", - "aggregators": ["CoinMarketCap", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x5bc93bab1291885a76644a49f52050cf73e1dca8": { - "address": "0x5bc93bab1291885a76644a49f52050cf73e1dca8", - "symbol": "MMON", - "decimals": 18, - "name": "Multiverse Monkey", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x5bc93bab1291885a76644a49f52050cf73e1dca8.png", - "aggregators": ["CoinMarketCap", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x108f9fe948e7f07a42bf8957de773f5d2c97a00d": { - "address": "0x108f9fe948e7f07a42bf8957de773f5d2c97a00d", - "symbol": "MEMECOIN", - "decimals": 2, - "name": "just memecoin", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x108f9fe948e7f07a42bf8957de773f5d2c97a00d.png", - "aggregators": ["CoinMarketCap", "Rubic", "Rango"], - "occurrences": 3 - }, - "0xcf07d861eb77a0e4c0fd68d7d95ca929a4d56a2e": { - "address": "0xcf07d861eb77a0e4c0fd68d7d95ca929a4d56a2e", - "symbol": "EFLOKI", - "decimals": 9, - "name": "EtherFloki", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xcf07d861eb77a0e4c0fd68d7d95ca929a4d56a2e.png", - "aggregators": ["CoinMarketCap", "Rubic", "Rango"], - "occurrences": 3 - }, - "0xd843713a7e6b3627cca4e7f70d34318d72708152": { - "address": "0xd843713a7e6b3627cca4e7f70d34318d72708152", - "symbol": "FURO", - "decimals": 18, - "name": "Furo", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xd843713a7e6b3627cca4e7f70d34318d72708152.png", - "aggregators": ["CoinMarketCap", "Rubic", "Rango"], - "occurrences": 3 - }, - "0xe226b7ae83a44bb98f67bea28c4ad73b0925c49e": { - "address": "0xe226b7ae83a44bb98f67bea28c4ad73b0925c49e", - "symbol": "QLK", - "decimals": 18, - "name": "Quantlink", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xe226b7ae83a44bb98f67bea28c4ad73b0925c49e.png", - "aggregators": ["CoinMarketCap", "Rubic", "Rango"], - "occurrences": 3 - }, - "0xb160fb3265be197287e647c82fef7913d5491e11": { - "address": "0xb160fb3265be197287e647c82fef7913d5491e11", - "symbol": "SCALR", - "decimals": 18, - "name": "Scalr", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xb160fb3265be197287e647c82fef7913d5491e11.png", - "aggregators": ["CoinMarketCap", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x787b197f793f7d04366536f6a7a56a799868a64b": { - "address": "0x787b197f793f7d04366536f6a7a56a799868a64b", - "symbol": "DISCO", - "decimals": 18, - "name": "Disco By Matt Furie", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x787b197f793f7d04366536f6a7a56a799868a64b.png", - "aggregators": ["CoinMarketCap", "Rubic", "Rango"], - "occurrences": 3 - }, - "0xed3d4e446a96dc3b181b64b75c3c70da41dc3cbe": { - "address": "0xed3d4e446a96dc3b181b64b75c3c70da41dc3cbe", - "symbol": "VDR", - "decimals": 18, - "name": "Vodra", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xed3d4e446a96dc3b181b64b75c3c70da41dc3cbe.png", - "aggregators": ["Metamask", "Rubic", "Rango"], - "occurrences": 3 - }, - "0xf3c7cecf8cbc3066f9a87b310cebe198d00479ac": { - "address": "0xf3c7cecf8cbc3066f9a87b310cebe198d00479ac", - "symbol": "FEG", - "decimals": 18, - "name": "FEG Token", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xf3c7cecf8cbc3066f9a87b310cebe198d00479ac.png", - "aggregators": ["Metamask", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x99cd4ec3f88a45940936f469e4bb72a2a701eeb9": { - "address": "0x99cd4ec3f88a45940936f469e4bb72a2a701eeb9", - "symbol": "STUSDS", - "decimals": 18, - "name": "Staked USDS", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x99cd4ec3f88a45940936f469e4bb72a2a701eeb9.png", - "aggregators": ["1inch", "LiFi", "Rango"], - "occurrences": 3 - }, - "0x3b4f7cb9e60362a49dd04eb0091a374d340e3efd": { - "address": "0x3b4f7cb9e60362a49dd04eb0091a374d340e3efd", - "symbol": "ITAM", - "decimals": 18, - "name": "ITAM", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x3b4f7cb9e60362a49dd04eb0091a374d340e3efd.png", - "aggregators": ["LiFi", "Rubic", "Rango"], - "occurrences": 3 - }, - "0xc4c7ea4fab34bd9fb9a5e1b1a98df76e26e6407c": { - "address": "0xc4c7ea4fab34bd9fb9a5e1b1a98df76e26e6407c", - "symbol": "COCOS", - "decimals": 18, - "name": "COCOS", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xc4c7ea4fab34bd9fb9a5e1b1a98df76e26e6407c.png", - "aggregators": ["LiFi", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x695106ad73f506f9d0a9650a78019a93149ae07c": { - "address": "0x695106ad73f506f9d0a9650a78019a93149ae07c", - "symbol": "BNS", - "decimals": 8, - "name": "BNS Token", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x695106ad73f506f9d0a9650a78019a93149ae07c.png", - "aggregators": ["LiFi", "Socket", "Rubic"], - "occurrences": 3 - }, - "0x68bb81b3f67f7aab5fd1390ecb0b8e1a806f2465": { - "address": "0x68bb81b3f67f7aab5fd1390ecb0b8e1a806f2465", - "symbol": "NFTP", - "decimals": 18, - "name": "NFT Platform Index", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x68bb81b3f67f7aab5fd1390ecb0b8e1a806f2465.png", - "aggregators": ["LiFi", "Socket", "Rubic"], - "occurrences": 3 - }, - "0x1287c0509df9a475ef178471ab2132b9dfd312b3": { - "address": "0x1287c0509df9a475ef178471ab2132b9dfd312b3", - "symbol": "LADZ", - "decimals": 4, - "name": "LADZ", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x1287c0509df9a475ef178471ab2132b9dfd312b3.png", - "aggregators": ["LiFi", "Socket", "Rubic"], - "occurrences": 3 - }, - "0x84810bcf08744d5862b8181f12d17bfd57d3b078": { - "address": "0x84810bcf08744d5862b8181f12d17bfd57d3b078", - "symbol": "SGT", - "decimals": 18, - "name": "SharedStake Governance Token", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x84810bcf08744d5862b8181f12d17bfd57d3b078.png", - "aggregators": ["LiFi", "Socket", "Rubic"], - "occurrences": 3 - }, - "0xe1ca72ff3434b131765c62cbcbc26060f7aba03d": { - "address": "0xe1ca72ff3434b131765c62cbcbc26060f7aba03d", - "symbol": "MOON", - "decimals": 18, - "name": "MOONs on Ethereum", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xe1ca72ff3434b131765c62cbcbc26060f7aba03d.png", - "aggregators": ["LiFi", "Socket", "Rubic"], - "occurrences": 3 - }, - "0x6c249b6f6492864d914361308601a7abb32e68f8": { - "address": "0x6c249b6f6492864d914361308601a7abb32e68f8", - "symbol": "DUA", - "decimals": 18, - "name": "DUA", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x6c249b6f6492864d914361308601a7abb32e68f8.png", - "aggregators": ["LiFi", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x527856315a4bcd2f428ea7fa05ea251f7e96a50a": { - "address": "0x527856315a4bcd2f428ea7fa05ea251f7e96a50a", - "symbol": "CDFI", - "decimals": 18, - "name": "CeDeFiAi", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x527856315a4bcd2f428ea7fa05ea251f7e96a50a.png", - "aggregators": ["LiFi", "Rubic", "Rango"], - "occurrences": 3 - }, - "0xc8cf6d7991f15525488b2a83df53468d682ba4b0": { - "address": "0xc8cf6d7991f15525488b2a83df53468d682ba4b0", - "symbol": "SUSDF", - "decimals": 18, - "name": "Staked Falcon USD", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xc8cf6d7991f15525488b2a83df53468d682ba4b0.png", - "aggregators": ["LiFi", "Rubic", "Squid"], - "occurrences": 3 - }, - "0x00da8466b296e382e5da2bf20962d0cb87200c78": { - "address": "0x00da8466b296e382e5da2bf20962d0cb87200c78", - "symbol": "NOVA", - "decimals": 18, - "name": "SUPERNOVA", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x00da8466b296e382e5da2bf20962d0cb87200c78.png", - "aggregators": ["LiFi", "Socket", "Rango"], - "occurrences": 3 - }, - "0x3f66ae0c8e9fb57f661af4ba8c8445d36ec5d7f7": { - "address": "0x3f66ae0c8e9fb57f661af4ba8c8445d36ec5d7f7", - "symbol": "CRAI", - "decimals": 18, - "name": "Cryptify AI", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x3f66ae0c8e9fb57f661af4ba8c8445d36ec5d7f7.png", - "aggregators": ["Socket", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x16594930d16f3970e1a4317c6016555cb2e7b7fc": { - "address": "0x16594930d16f3970e1a4317c6016555cb2e7b7fc", - "symbol": "TKB", - "decimals": 18, - "name": "TokenBot", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x16594930d16f3970e1a4317c6016555cb2e7b7fc.png", - "aggregators": ["Socket", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x99bb69ee1bbfc7706c3ebb79b21c5b698fe58ec0": { - "address": "0x99bb69ee1bbfc7706c3ebb79b21c5b698fe58ec0", - "symbol": "DHB", - "decimals": 18, - "name": "DeHub", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x99bb69ee1bbfc7706c3ebb79b21c5b698fe58ec0.png", - "aggregators": ["Socket", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x4af8aa621df6dd3e2d653188a357fc2b35c6a037": { - "address": "0x4af8aa621df6dd3e2d653188a357fc2b35c6a037", - "symbol": "SELF", - "decimals": 18, - "name": "SELF Crypto", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x4af8aa621df6dd3e2d653188a357fc2b35c6a037.png", - "aggregators": ["Socket", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x9ef3da23c304d88f856f2928b0be17d9f5d0752f": { - "address": "0x9ef3da23c304d88f856f2928b0be17d9f5d0752f", - "symbol": "MUL", - "decimals": 18, - "name": "Multipool", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x9ef3da23c304d88f856f2928b0be17d9f5d0752f.png", - "aggregators": ["Socket", "Rubic", "Rango"], - "occurrences": 3 - }, - "0xc283c54df1d858570071a053057806ae73cb6a64": { - "address": "0xc283c54df1d858570071a053057806ae73cb6a64", - "symbol": "MAK", - "decimals": 18, - "name": "MetaCene", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xc283c54df1d858570071a053057806ae73cb6a64.png", - "aggregators": ["Socket", "Rubic", "Sonarwatch"], - "occurrences": 3 - }, - "0x4c601dc69affb0d4fc8de1ac303705e432a4a27e": { - "address": "0x4c601dc69affb0d4fc8de1ac303705e432a4a27e", - "symbol": "KCT", - "decimals": 18, - "name": "Konnect", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x4c601dc69affb0d4fc8de1ac303705e432a4a27e.png", - "aggregators": ["Socket", "Rubic", "Rango"], - "occurrences": 3 - }, - "0xc15c94f460c6a01a93b8f9ba919fadcec9310f54": { - "address": "0xc15c94f460c6a01a93b8f9ba919fadcec9310f54", - "symbol": "XAI", - "decimals": 18, - "name": "Xspectra Ai", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xc15c94f460c6a01a93b8f9ba919fadcec9310f54.png", - "aggregators": ["Socket", "Rubic", "Sonarwatch"], - "occurrences": 3 - }, - "0xce9dcc28791a98edfd4175a7d55da9f86c560199": { - "address": "0xce9dcc28791a98edfd4175a7d55da9f86c560199", - "symbol": "ARAI", - "decimals": 18, - "name": "Archi AI", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xce9dcc28791a98edfd4175a7d55da9f86c560199.png", - "aggregators": ["Socket", "Rubic", "Sonarwatch"], - "occurrences": 3 - }, - "0x31ef6148cae611421c5d5c58649faf6b412f6422": { - "address": "0x31ef6148cae611421c5d5c58649faf6b412f6422", - "symbol": "AGV", - "decimals": 8, - "name": "AgentVerse", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x31ef6148cae611421c5d5c58649faf6b412f6422.png", - "aggregators": ["Socket", "Rubic", "Sonarwatch"], - "occurrences": 3 - }, - "0xdb9bd37c6d5fe195923d7487ad50a1e3c5b9bd42": { - "address": "0xdb9bd37c6d5fe195923d7487ad50a1e3c5b9bd42", - "symbol": "HGAI", - "decimals": 18, - "name": "Hygea AI", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xdb9bd37c6d5fe195923d7487ad50a1e3c5b9bd42.png", - "aggregators": ["Socket", "Rubic", "Sonarwatch"], - "occurrences": 3 - }, - "0x3f31f59f7307a0468501f39b6c1175ff9b6cd927": { - "address": "0x3f31f59f7307a0468501f39b6c1175ff9b6cd927", - "symbol": "ZORA", - "decimals": 18, - "name": "Zora AI", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x3f31f59f7307a0468501f39b6c1175ff9b6cd927.png", - "aggregators": ["Socket", "Rubic", "Sonarwatch"], - "occurrences": 3 - }, - "0x3ce1f6bd6b0aa7520a14018dcc2261b1371d7c1a": { - "address": "0x3ce1f6bd6b0aa7520a14018dcc2261b1371d7c1a", - "symbol": "CORN", - "decimals": 18, - "name": "Corn", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x3ce1f6bd6b0aa7520a14018dcc2261b1371d7c1a.png", - "aggregators": ["Socket", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x97d0cfeb4fde54b430307c9482d6f79c761fe9b6": { - "address": "0x97d0cfeb4fde54b430307c9482d6f79c761fe9b6", - "symbol": "EPOCH", - "decimals": 18, - "name": "Epoch", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x97d0cfeb4fde54b430307c9482d6f79c761fe9b6.png", - "aggregators": ["Socket", "Rubic", "Rango"], - "occurrences": 3 - }, - "0xfefe274de1983102d4565b7f14018602d2c830b9": { - "address": "0xfefe274de1983102d4565b7f14018602d2c830b9", - "symbol": "SIKA", - "decimals": 18, - "name": "SikaSwap", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xfefe274de1983102d4565b7f14018602d2c830b9.png", - "aggregators": ["Rubic", "Rango", "Sonarwatch"], - "occurrences": 3 - }, - "0x1b887c8621ed207d831b846951a80474fb17a31d": { - "address": "0x1b887c8621ed207d831b846951a80474fb17a31d", - "symbol": "GUP", - "decimals": 18, - "name": "GearUp", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x1b887c8621ed207d831b846951a80474fb17a31d.png", - "aggregators": ["Rubic", "Rango", "Sonarwatch"], - "occurrences": 3 - }, - "0x498a2e9aaf2309e279b5fcda420cc3ccf16341e4": { - "address": "0x498a2e9aaf2309e279b5fcda420cc3ccf16341e4", - "symbol": "CTAX", - "decimals": 9, - "name": "Cryptax AI", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x498a2e9aaf2309e279b5fcda420cc3ccf16341e4.png", - "aggregators": ["Rubic", "Rango", "Sonarwatch"], - "occurrences": 3 - }, - "0x9ba77c059b5a59a220aa648a6bd97986fb1bf0a9": { - "address": "0x9ba77c059b5a59a220aa648a6bd97986fb1bf0a9", - "symbol": "AGSYS", - "decimals": 18, - "name": "AGENTSYS AI", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x9ba77c059b5a59a220aa648a6bd97986fb1bf0a9.png", - "aggregators": ["Rubic", "Rango", "Sonarwatch"], - "occurrences": 3 - }, - "0x0575bf910466b306afb07e4544203d9e21413c56": { - "address": "0x0575bf910466b306afb07e4544203d9e21413c56", - "symbol": "NOAI", - "decimals": 18, - "name": "Nord Ai", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x0575bf910466b306afb07e4544203d9e21413c56.png", - "aggregators": ["Rubic", "Rango", "Sonarwatch"], - "occurrences": 3 - }, - "0xf190dbd849e372ff824e631a1fdf199f38358bcf": { - "address": "0xf190dbd849e372ff824e631a1fdf199f38358bcf", - "symbol": "BARA", - "decimals": 18, - "name": "Capybara Memecoin", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xf190dbd849e372ff824e631a1fdf199f38358bcf.png", - "aggregators": ["Rubic", "Rango", "Sonarwatch"], - "occurrences": 3 - }, - "0xc8ef4398664b2eed5ee560544f659083d98a3888": { - "address": "0xc8ef4398664b2eed5ee560544f659083d98a3888", - "symbol": "CTM", - "decimals": 18, - "name": "c8ntinuum", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xc8ef4398664b2eed5ee560544f659083d98a3888.png", - "aggregators": ["Rubic", "Rango", "Sonarwatch"], - "occurrences": 3 - }, - "0x7ceec758dfe5ef8c32cde7b2259cc79b1891e8ed": { - "address": "0x7ceec758dfe5ef8c32cde7b2259cc79b1891e8ed", - "symbol": "EVIRE", - "decimals": 18, - "name": "Evire", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x7ceec758dfe5ef8c32cde7b2259cc79b1891e8ed.png", - "aggregators": ["Rubic", "Rango", "Sonarwatch"], - "occurrences": 3 - }, - "0x88fd59e1dd3715a98bb66149da9c944d9e795c12": { - "address": "0x88fd59e1dd3715a98bb66149da9c944d9e795c12", - "symbol": "MOGUL", - "decimals": 18, - "name": "Mogul Productions", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x88fd59e1dd3715a98bb66149da9c944d9e795c12.png", - "aggregators": ["Rubic", "Rango", "Sonarwatch"], - "occurrences": 3 - }, - "0xec2fbe79236fa86bf2aa5d674dea20e2a1e7b01a": { - "address": "0xec2fbe79236fa86bf2aa5d674dea20e2a1e7b01a", - "symbol": "MVRK", - "decimals": 6, - "name": "Mavryk Network", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xec2fbe79236fa86bf2aa5d674dea20e2a1e7b01a.png", - "aggregators": ["Rubic", "Rango", "Sonarwatch"], - "occurrences": 3 - }, - "0x4cf896ac977d07d91626fed71c20f3185b0cb177": { - "address": "0x4cf896ac977d07d91626fed71c20f3185b0cb177", - "symbol": "BCB", - "decimals": 18, - "name": "Bitcoin Bit", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x4cf896ac977d07d91626fed71c20f3185b0cb177.png", - "aggregators": ["Rubic", "Rango", "Sonarwatch"], - "occurrences": 3 - }, - "0x6af53c6ec427525f7240e211941223288a0e7c66": { - "address": "0x6af53c6ec427525f7240e211941223288a0e7c66", - "symbol": "WARPED", - "decimals": 18, - "name": "Warped Games", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x6af53c6ec427525f7240e211941223288a0e7c66.png", - "aggregators": ["Rubic", "Rango", "Sonarwatch"], - "occurrences": 3 - }, - "0x03049b395147713ae53c0617093675b4b86dde78": { - "address": "0x03049b395147713ae53c0617093675b4b86dde78", - "symbol": "PSPS", - "decimals": 18, - "name": "BobaCat", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x03049b395147713ae53c0617093675b4b86dde78.png", - "aggregators": ["Rubic", "Rango", "Sonarwatch"], - "occurrences": 3 - }, - "0x5f973ffd42499224b0a7a16dffb3abc25f04ef24": { - "address": "0x5f973ffd42499224b0a7a16dffb3abc25f04ef24", - "symbol": "LAB", - "decimals": 9, - "name": "Labda", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x5f973ffd42499224b0a7a16dffb3abc25f04ef24.png", - "aggregators": ["Rubic", "Rango", "Sonarwatch"], - "occurrences": 3 - }, - "0x6a8b188fadbe8b52a2c23ea2d0df74f8956e7730": { - "address": "0x6a8b188fadbe8b52a2c23ea2d0df74f8956e7730", - "symbol": "QSWAP", - "decimals": 18, - "name": "Quantum Network", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x6a8b188fadbe8b52a2c23ea2d0df74f8956e7730.png", - "aggregators": ["Rubic", "Rango", "Sonarwatch"], - "occurrences": 3 - }, - "0x8a6d4c8735371ebaf8874fbd518b56edd66024eb": { - "address": "0x8a6d4c8735371ebaf8874fbd518b56edd66024eb", - "symbol": "BLOCKS", - "decimals": 18, - "name": "Blocks Dao", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x8a6d4c8735371ebaf8874fbd518b56edd66024eb.png", - "aggregators": ["Rubic", "Rango", "SushiSwap"], - "occurrences": 3 - }, - "0x1de6289894e1763b6ea01401ed638dc1184b0e9b": { - "address": "0x1de6289894e1763b6ea01401ed638dc1184b0e9b", - "symbol": "INFY", - "decimals": 18, - "name": "Infinity AI", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x1de6289894e1763b6ea01401ed638dc1184b0e9b.png", - "aggregators": ["Rubic", "Rango", "Sonarwatch"], - "occurrences": 3 - }, - "0xf23114fa21af278fa342d980740cb8b89fc82105": { - "address": "0xf23114fa21af278fa342d980740cb8b89fc82105", - "symbol": "ARG", - "decimals": 18, - "name": "Aragon Protocol", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xf23114fa21af278fa342d980740cb8b89fc82105.png", - "aggregators": ["Rubic", "Rango", "Sonarwatch"], - "occurrences": 3 - }, - "0x736ecc5237b31edec6f1ab9a396fae2416b1d96e": { - "address": "0x736ecc5237b31edec6f1ab9a396fae2416b1d96e", - "symbol": "GASP", - "decimals": 18, - "name": "GASP", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x736ecc5237b31edec6f1ab9a396fae2416b1d96e.png", - "aggregators": ["Rubic", "Rango", "Sonarwatch"], - "occurrences": 3 - }, - "0x2fa39203cb335d08e0af7731a8b9ae23d5a59449": { - "address": "0x2fa39203cb335d08e0af7731a8b9ae23d5a59449", - "symbol": "SCRATCH", - "decimals": 18, - "name": "Scratch", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x2fa39203cb335d08e0af7731a8b9ae23d5a59449.png", - "aggregators": ["Rubic", "Rango", "Sonarwatch"], - "occurrences": 3 - }, - "0xec12e2d7acd850fe3953d1dbf860f523914654a7": { - "address": "0xec12e2d7acd850fe3953d1dbf860f523914654a7", - "symbol": "MIRX", - "decimals": 18, - "name": "Mirada AI", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xec12e2d7acd850fe3953d1dbf860f523914654a7.png", - "aggregators": ["Rubic", "Rango", "Sonarwatch"], - "occurrences": 3 - }, - "0xfa955ec865f51c55e3b6ce02528a6844c2eb9c26": { - "address": "0xfa955ec865f51c55e3b6ce02528a6844c2eb9c26", - "symbol": "OPENLI", - "decimals": 9, - "name": "OpenLiquidity", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xfa955ec865f51c55e3b6ce02528a6844c2eb9c26.png", - "aggregators": ["Rubic", "Rango", "Sonarwatch"], - "occurrences": 3 - }, - "0x0cf7356e2d13ae2b57e77286284984a5fc8f88b3": { - "address": "0x0cf7356e2d13ae2b57e77286284984a5fc8f88b3", - "symbol": "SCOT", - "decimals": 18, - "name": "Scotcoin", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x0cf7356e2d13ae2b57e77286284984a5fc8f88b3.png", - "aggregators": ["Rubic", "Rango", "Sonarwatch"], - "occurrences": 3 - }, - "0xe51b8ab09008285a0380dd2680cd9dd5e13924d3": { - "address": "0xe51b8ab09008285a0380dd2680cd9dd5e13924d3", - "symbol": "BSP", - "decimals": 18, - "name": "BallSwap", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xe51b8ab09008285a0380dd2680cd9dd5e13924d3.png", - "aggregators": ["Rubic", "Rango", "Sonarwatch"], - "occurrences": 3 - }, - "0x73c9275c3a2dd84b5741fd59aebf102c91eb033f": { - "address": "0x73c9275c3a2dd84b5741fd59aebf102c91eb033f", - "symbol": "BTRS", - "decimals": 18, - "name": "Bitball Treasure", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x73c9275c3a2dd84b5741fd59aebf102c91eb033f.png", - "aggregators": ["Rubic", "Rango", "Sonarwatch"], - "occurrences": 3 - }, - "0x696969ade0cc455414fc4800ebea505d690b2429": { - "address": "0x696969ade0cc455414fc4800ebea505d690b2429", - "symbol": "PEPENOMICS", - "decimals": 9, - "name": "Pepenomics", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x696969ade0cc455414fc4800ebea505d690b2429.png", - "aggregators": ["Rubic", "Rango", "Sonarwatch"], - "occurrences": 3 - }, - "0x1d2b8fa9b730fa7eb0fbf0f3c527b2381beed2b2": { - "address": "0x1d2b8fa9b730fa7eb0fbf0f3c527b2381beed2b2", - "symbol": "QMIND", - "decimals": 18, - "name": "QMind", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x1d2b8fa9b730fa7eb0fbf0f3c527b2381beed2b2.png", - "aggregators": ["Rubic", "Rango", "Sonarwatch"], - "occurrences": 3 - }, - "0xa26b04b41162b0d7c2e1e2f9a33b752e28304a49": { - "address": "0xa26b04b41162b0d7c2e1e2f9a33b752e28304a49", - "symbol": "AUDAI", - "decimals": 18, - "name": "AuditAI", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xa26b04b41162b0d7c2e1e2f9a33b752e28304a49.png", - "aggregators": ["Rubic", "Rango", "Sonarwatch"], - "occurrences": 3 - }, - "0x1ce9345d16cd3f9332438fc2c18dfa6556c5658e": { - "address": "0x1ce9345d16cd3f9332438fc2c18dfa6556c5658e", - "symbol": "LYLO", - "decimals": 18, - "name": "Lylo ai", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x1ce9345d16cd3f9332438fc2c18dfa6556c5658e.png", - "aggregators": ["Rubic", "Rango", "Sonarwatch"], - "occurrences": 3 - }, - "0x0f79dff082b6f4324528f5ded2d6b8aa6d576277": { - "address": "0x0f79dff082b6f4324528f5ded2d6b8aa6d576277", - "symbol": "USAM", - "decimals": 8, - "name": "Uncle Sam", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x0f79dff082b6f4324528f5ded2d6b8aa6d576277.png", - "aggregators": ["Rubic", "Rango", "Sonarwatch"], - "occurrences": 3 - }, - "0xd347514c12d6acbbec08ceea127bc5e57ddb2847": { - "address": "0xd347514c12d6acbbec08ceea127bc5e57ddb2847", - "symbol": "AVER", - "decimals": 18, - "name": "Aver AI", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xd347514c12d6acbbec08ceea127bc5e57ddb2847.png", - "aggregators": ["Rubic", "Rango", "Sonarwatch"], - "occurrences": 3 - }, - "0xed291c4ea45be02481e7f8359caada27d5909f42": { - "address": "0xed291c4ea45be02481e7f8359caada27d5909f42", - "symbol": "TOAI", - "decimals": 18, - "name": "Traceon AI", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xed291c4ea45be02481e7f8359caada27d5909f42.png", - "aggregators": ["Rubic", "Rango", "Sonarwatch"], - "occurrences": 3 - }, - "0x0d262e5dc4a06a0f1c90ce79c7a60c09dfc884e4": { - "address": "0x0d262e5dc4a06a0f1c90ce79c7a60c09dfc884e4", - "symbol": "J8T", - "decimals": 8, - "name": "JET8 Token", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x0d262e5dc4a06a0f1c90ce79c7a60c09dfc884e4.png", - "aggregators": ["Metamask", "Bancor"], - "occurrences": 2 - }, - "0x00000100f2a2bd000715001920eb70d229700085": { - "address": "0x00000100f2a2bd000715001920eb70d229700085", - "symbol": "TCAD", - "decimals": 18, - "name": "TrueCAD", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x00000100f2a2bd000715001920eb70d229700085.png", - "aggregators": ["Metamask", "Rubic"], - "occurrences": 2 - }, - "0x00006100f7090010005f1bd7ae6122c3c2cf0090": { - "address": "0x00006100f7090010005f1bd7ae6122c3c2cf0090", - "symbol": "TAUD", - "decimals": 18, - "name": "TrueAUD", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x00006100f7090010005f1bd7ae6122c3c2cf0090.png", - "aggregators": ["Metamask", "Rubic"], - "occurrences": 2 - }, - "0xcc665390b03c5d324d8faf81c15ecee29a73bcb4": { - "address": "0xcc665390b03c5d324d8faf81c15ecee29a73bcb4", - "symbol": "ASAP", - "decimals": 18, - "name": "ChainSwap.com Governance Token", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xcc665390b03c5d324d8faf81c15ecee29a73bcb4.png", - "aggregators": ["Metamask", "Rubic"], - "occurrences": 2 - }, - "0x347a96a5bd06d2e15199b032f46fb724d6c73047": { - "address": "0x347a96a5bd06d2e15199b032f46fb724d6c73047", - "symbol": "ASIC", - "decimals": 12, - "name": "Application Specific Internet Coin", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x347a96a5bd06d2e15199b032f46fb724d6c73047.png", - "aggregators": ["Metamask", "Rubic"], - "occurrences": 2 - }, - "0x261b45d85ccfeabb11f022eba346ee8d1cd488c0": { - "address": "0x261b45d85ccfeabb11f022eba346ee8d1cd488c0", - "symbol": "RDAI", - "decimals": 18, - "name": "rDAI", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x261b45d85ccfeabb11f022eba346ee8d1cd488c0.png", - "aggregators": ["Metamask"], - "occurrences": 1 - }, - "0x8292bb45bf1ee4d140127049757c2e0ff06317ed": { - "address": "0x8292bb45bf1ee4d140127049757c2e0ff06317ed", - "symbol": "RLUSD", - "decimals": 18, - "name": "Ripple USD", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x8292bb45bf1ee4d140127049757c2e0ff06317ed.png", - "aggregators": [ - "CoinMarketCap", - "1inch", - "LiFi", - "Socket", - "Rubic", - "Squid", - "Rango", - "Sonarwatch" - ], - "occurrences": 8 - }, - "0x383518188c0c6d7730d91b2c03a03c837814a899": { - "address": "0x383518188c0c6d7730d91b2c03a03c837814a899", - "symbol": "OHM", - "decimals": 9, - "name": "OlympusDAO", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x383518188c0c6d7730d91b2c03a03c837814a899.png", - "aggregators": [ - "CoinMarketCap", - "LiFi", - "TrustWallet", - "Socket", - "Rubic", - "Rango", - "Sonarwatch", - "SushiSwap" - ], - "occurrences": 8 - }, - "0xcccccccccc33d538dbc2ee4feab0a7a1ff4e8a94": { - "address": "0xcccccccccc33d538dbc2ee4feab0a7a1ff4e8a94", - "symbol": "CFG", - "decimals": 18, - "name": "Centrifuge", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xcccccccccc33d538dbc2ee4feab0a7a1ff4e8a94.png", - "aggregators": [ - "CoinMarketCap", - "1inch", - "LiFi", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 7 - }, - "0xe72b141df173b999ae7c1adcbf60cc9833ce56a8": { - "address": "0xe72b141df173b999ae7c1adcbf60cc9833ce56a8", - "symbol": "ETH+", - "decimals": 18, - "name": "ETHPlus", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xe72b141df173b999ae7c1adcbf60cc9833ce56a8.png", - "aggregators": [ - "CoinGecko", - "1inch", - "LiFi", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 7 - }, - "0x1ba9843bd4327c6c77011406de5fa8749f7e3479": { - "address": "0x1ba9843bd4327c6c77011406de5fa8749f7e3479", - "symbol": "ASTG", - "decimals": 18, - "name": "Aave v3 STG", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x1ba9843bd4327c6c77011406de5fa8749f7e3479.png", - "aggregators": [ - "CoinGecko", - "1inch", - "LiFi", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 7 - }, - "0x5b502e3796385e1e9755d7043b9c945c3accec9c": { - "address": "0x5b502e3796385e1e9755d7043b9c945c3accec9c", - "symbol": "AKNC", - "decimals": 18, - "name": "Aave v3 KNC", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x5b502e3796385e1e9755d7043b9c945c3accec9c.png", - "aggregators": [ - "CoinGecko", - "1inch", - "LiFi", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 7 - }, - "0x57f5e098cad7a3d1eed53991d4d66c45c9af7812": { - "address": "0x57f5e098cad7a3d1eed53991d4d66c45c9af7812", - "symbol": "WUSDM", - "decimals": 18, - "name": "Wrapped USDM", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x57f5e098cad7a3d1eed53991d4d66c45c9af7812.png", - "aggregators": [ - "CoinGecko", - "LiFi", - "Socket", - "Rubic", - "Squid", - "Rango", - "Sonarwatch" - ], - "occurrences": 7 - }, - "0x004e9c3ef86bc1ca1f0bb5c7662861ee93350568": { - "address": "0x004e9c3ef86bc1ca1f0bb5c7662861ee93350568", - "symbol": "UNIBTC", - "decimals": 8, - "name": "Universal BTC", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x004e9c3ef86bc1ca1f0bb5c7662861ee93350568.png", - "aggregators": [ - "CoinMarketCap", - "LiFi", - "Socket", - "Rubic", - "Squid", - "Rango", - "Sonarwatch" - ], - "occurrences": 7 - }, - "0xdd3b11ef34cd511a2da159034a05fcb94d806686": { - "address": "0xdd3b11ef34cd511a2da159034a05fcb94d806686", - "symbol": "REKT", - "decimals": 18, - "name": "Rekt", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xdd3b11ef34cd511a2da159034a05fcb94d806686.png", - "aggregators": [ - "CoinGecko", - "1inch", - "Socket", - "Rubic", - "Squid", - "Rango", - "Sonarwatch" - ], - "occurrences": 7 - }, - "0xd11c452fc99cf405034ee446803b6f6c1f6d5ed8": { - "address": "0xd11c452fc99cf405034ee446803b6f6c1f6d5ed8", - "symbol": "TETH", - "decimals": 18, - "name": "Treehouse ETH", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xd11c452fc99cf405034ee446803b6f6c1f6d5ed8.png", - "aggregators": [ - "CoinMarketCap", - "LiFi", - "Socket", - "Rubic", - "Squid", - "Rango", - "Sonarwatch" - ], - "occurrences": 7 - }, - "0xdbb5cf12408a3ac17d668037ce289f9ea75439d7": { - "address": "0xdbb5cf12408a3ac17d668037ce289f9ea75439d7", - "symbol": "WMTX", - "decimals": 6, - "name": "World Mobile Token", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xdbb5cf12408a3ac17d668037ce289f9ea75439d7.png", - "aggregators": [ - "Metamask", - "LiFi", - "Socket", - "Rubic", - "Squid", - "Rango", - "Sonarwatch" - ], - "occurrences": 7 - }, - "0xb7109df1a93f8fe2b8162c6207c9b846c1c68090": { - "address": "0xb7109df1a93f8fe2b8162c6207c9b846c1c68090", - "symbol": "MAX", - "decimals": 18, - "name": "Matr1x", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xb7109df1a93f8fe2b8162c6207c9b846c1c68090.png", - "aggregators": [ - "CoinMarketCap", - "LiFi", - "Socket", - "Rubic", - "Squid", - "Rango", - "Sonarwatch" - ], - "occurrences": 7 - }, - "0x79bbf4508b1391af3a0f4b30bb5fc4aa9ab0e07c": { - "address": "0x79bbf4508b1391af3a0f4b30bb5fc4aa9ab0e07c", - "symbol": "ANON", - "decimals": 18, - "name": "Hey Anon", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x79bbf4508b1391af3a0f4b30bb5fc4aa9ab0e07c.png", - "aggregators": [ - "CoinMarketCap", - "LiFi", - "Socket", - "Rubic", - "Squid", - "Rango", - "Sonarwatch" - ], - "occurrences": 7 - }, - "0x582d872a1b094fc48f5de31d3b73f2d9be47def1": { - "address": "0x582d872a1b094fc48f5de31d3b73f2d9be47def1", - "symbol": "TON", - "decimals": 9, - "name": "Toncoin", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x582d872a1b094fc48f5de31d3b73f2d9be47def1.png", - "aggregators": [ - "CoinMarketCap", - "1inch", - "LiFi", - "Rubic", - "Squid", - "Rango", - "Sonarwatch" - ], - "occurrences": 7 - }, - "0x9d1089802ee608ba84c5c98211afe5f37f96b36c": { - "address": "0x9d1089802ee608ba84c5c98211afe5f37f96b36c", - "symbol": "FUSDC", - "decimals": 6, - "name": "Fluid USDC", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x9d1089802ee608ba84c5c98211afe5f37f96b36c.png", - "aggregators": [ - "CoinGecko", - "LiFi", - "Socket", - "Rubic", - "Rango", - "Sonarwatch", - "SushiSwap" - ], - "occurrences": 7 - }, - "0x9f0c013016e8656bc256f948cd4b79ab25c7b94d": { - "address": "0x9f0c013016e8656bc256f948cd4b79ab25c7b94d", - "symbol": "COOK", - "decimals": 18, - "name": "mETH Protocol", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x9f0c013016e8656bc256f948cd4b79ab25c7b94d.png", - "aggregators": [ - "CoinMarketCap", - "LiFi", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 6 - }, - "0x0f81001ef0a83ecce5ccebf63eb302c70a39a654": { - "address": "0x0f81001ef0a83ecce5ccebf63eb302c70a39a654", - "symbol": "DOLO", - "decimals": 18, - "name": "Dolomite", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x0f81001ef0a83ecce5ccebf63eb302c70a39a654.png", - "aggregators": [ - "CoinMarketCap", - "1inch", - "LiFi", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 6 - }, - "0x4da27a545c0c5b758a6ba100e3a049001de870f5": { - "address": "0x4da27a545c0c5b758a6ba100e3a049001de870f5", - "symbol": "STAAVE", - "decimals": 18, - "name": "Staked Aave", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x4da27a545c0c5b758a6ba100e3a049001de870f5.png", - "aggregators": [ - "Metamask", - "1inch", - "LiFi", - "Socket", - "Rubic", - "Rango" - ], - "occurrences": 6 - }, - "0xfcc5c47be19d06bf83eb04298b026f81069ff65b": { - "address": "0xfcc5c47be19d06bf83eb04298b026f81069ff65b", - "symbol": "YCRV", - "decimals": 18, - "name": "Yearn CRV", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xfcc5c47be19d06bf83eb04298b026f81069ff65b.png", - "aggregators": [ - "CoinGecko", - "LiFi", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 6 - }, - "0xdd629e5241cbc5919847783e6c96b2de4754e438": { - "address": "0xdd629e5241cbc5919847783e6c96b2de4754e438", - "symbol": "MTBILL", - "decimals": 18, - "name": "Midas mTBILL", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xdd629e5241cbc5919847783e6c96b2de4754e438.png", - "aggregators": [ - "CoinGecko", - "LiFi", - "Rubic", - "Squid", - "Rango", - "Sonarwatch" - ], - "occurrences": 6 - }, - "0x16587cf43f044aba0165ffa00acf412631194e4b": { - "address": "0x16587cf43f044aba0165ffa00acf412631194e4b", - "symbol": "SRC", - "decimals": 18, - "name": "Simracer Coin", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x16587cf43f044aba0165ffa00acf412631194e4b.png", - "aggregators": [ - "CoinGecko", - "LiFi", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 6 - }, - "0xdfc5964141c018485b4d017634660f85aa667714": { - "address": "0xdfc5964141c018485b4d017634660f85aa667714", - "symbol": "ODIN", - "decimals": 18, - "name": "Odin Liquidity Network", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xdfc5964141c018485b4d017634660f85aa667714.png", - "aggregators": [ - "CoinGecko", - "LiFi", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 6 - }, - "0xcadc0acd4b445166f12d2c07eac6e2544fbe2eef": { - "address": "0xcadc0acd4b445166f12d2c07eac6e2544fbe2eef", - "symbol": "CADC", - "decimals": 18, - "name": "CAD Coin", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xcadc0acd4b445166f12d2c07eac6e2544fbe2eef.png", - "aggregators": [ - "CoinMarketCap", - "LiFi", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 6 - }, - "0x08037036451c768465369431da5c671ad9b37dbc": { - "address": "0x08037036451c768465369431da5c671ad9b37dbc", - "symbol": "NFTS", - "decimals": 18, - "name": "NFT Stars", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x08037036451c768465369431da5c671ad9b37dbc.png", - "aggregators": [ - "CoinMarketCap", - "LiFi", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 6 - }, - "0x641927e970222b10b2e8cdbc96b1b4f427316f16": { - "address": "0x641927e970222b10b2e8cdbc96b1b4f427316f16", - "symbol": "MEEB", - "decimals": 18, - "name": "MEEB Vault NFTX", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x641927e970222b10b2e8cdbc96b1b4f427316f16.png", - "aggregators": [ - "CoinGecko", - "Socket", - "Rubic", - "Squid", - "Rango", - "Sonarwatch" - ], - "occurrences": 6 - }, - "0x085780639cc2cacd35e474e71f4d000e2405d8f6": { - "address": "0x085780639cc2cacd35e474e71f4d000e2405d8f6", - "symbol": "FXUSD", - "decimals": 18, - "name": "f x Protocol fxUSD", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x085780639cc2cacd35e474e71f4d000e2405d8f6.png", - "aggregators": [ - "CoinGecko", - "LiFi", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 6 - }, - "0xd6c7bb8531295e88d364ea67d5d1acc7d3f87454": { - "address": "0xd6c7bb8531295e88d364ea67d5d1acc7d3f87454", - "symbol": "FTR", - "decimals": 18, - "name": "Fautor", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xd6c7bb8531295e88d364ea67d5d1acc7d3f87454.png", - "aggregators": [ - "CoinMarketCap", - "LiFi", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 6 - }, - "0x8c9532a60e0e7c6bbd2b2c1303f63ace1c3e9811": { - "address": "0x8c9532a60e0e7c6bbd2b2c1303f63ace1c3e9811", - "symbol": "PZETH", - "decimals": 18, - "name": "Renzo Restaked LST", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x8c9532a60e0e7c6bbd2b2c1303f63ace1c3e9811.png", - "aggregators": [ - "CoinMarketCap", - "LiFi", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 6 - }, - "0x227c7df69d3ed1ae7574a1a7685fded90292eb48": { - "address": "0x227c7df69d3ed1ae7574a1a7685fded90292eb48", - "symbol": "MILADY", - "decimals": 18, - "name": "Milady Vault NFTX", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x227c7df69d3ed1ae7574a1a7685fded90292eb48.png", - "aggregators": [ - "CoinGecko", - "Socket", - "Rubic", - "Squid", - "Rango", - "Sonarwatch" - ], - "occurrences": 6 - }, - "0xf197ffc28c23e0309b5559e7a166f2c6164c80aa": { - "address": "0xf197ffc28c23e0309b5559e7a166f2c6164c80aa", - "symbol": "MXNB", - "decimals": 6, - "name": "MXNB", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xf197ffc28c23e0309b5559e7a166f2c6164c80aa.png", - "aggregators": [ - "CoinMarketCap", - "LiFi", - "Rubic", - "Squid", - "Rango", - "Sonarwatch" - ], - "occurrences": 6 - }, - "0xd2877702675e6ceb975b4a1dff9fb7baf4c91ea9": { - "address": "0xd2877702675e6ceb975b4a1dff9fb7baf4c91ea9", - "symbol": "LUNC", - "decimals": 18, - "name": "Wrapped LUNC Token", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xd2877702675e6ceb975b4a1dff9fb7baf4c91ea9.png", - "aggregators": [ - "Metamask", - "TrustWallet", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 6 - }, - "0x136471a34f6ef19fe571effc1ca711fdb8e49f2b": { - "address": "0x136471a34f6ef19fe571effc1ca711fdb8e49f2b", - "symbol": "USYC", - "decimals": 6, - "name": "Circle USYC", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x136471a34f6ef19fe571effc1ca711fdb8e49f2b.png", - "aggregators": [ - "CoinMarketCap", - "LiFi", - "Rubic", - "Squid", - "Rango", - "Sonarwatch" - ], - "occurrences": 6 - }, - "0x1a88df1cfe15af22b3c4c783d4e6f7f9e0c1885d": { - "address": "0x1a88df1cfe15af22b3c4c783d4e6f7f9e0c1885d", - "symbol": "STKGHO", - "decimals": 18, - "name": "Staked GHO Token", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x1a88df1cfe15af22b3c4c783d4e6f7f9e0c1885d.png", - "aggregators": [ - "Metamask", - "LiFi", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 6 - }, - "0x4b6d036d0bc62a633acca6d10956e9dbbb16748f": { - "address": "0x4b6d036d0bc62a633acca6d10956e9dbbb16748f", - "symbol": "BC", - "decimals": 18, - "name": "Blood Crystal", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x4b6d036d0bc62a633acca6d10956e9dbbb16748f.png", - "aggregators": [ - "CoinGecko", - "LiFi", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 6 - }, - "0xba25b2281214300e4e649fead9a6d6acd25f1c0a": { - "address": "0xba25b2281214300e4e649fead9a6d6acd25f1c0a", - "symbol": "TREE", - "decimals": 18, - "name": "Tree", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xba25b2281214300e4e649fead9a6d6acd25f1c0a.png", - "aggregators": [ - "CoinMarketCap", - "LiFi", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 6 - }, - "0x8b12bd54ca9b2311960057c8f3c88013e79316e3": { - "address": "0x8b12bd54ca9b2311960057c8f3c88013e79316e3", - "symbol": "REACH", - "decimals": 18, - "name": "Reach", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x8b12bd54ca9b2311960057c8f3c88013e79316e3.png", - "aggregators": [ - "CoinMarketCap", - "LiFi", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 6 - }, - "0x01d33fd36ec67c6ada32cf36b31e88ee190b1839": { - "address": "0x01d33fd36ec67c6ada32cf36b31e88ee190b1839", - "symbol": "BRZ", - "decimals": 18, - "name": "Brazilian Digital", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x01d33fd36ec67c6ada32cf36b31e88ee190b1839.png", - "aggregators": [ - "CoinMarketCap", - "LiFi", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 6 - }, - "0xf3617e8a04265160b9ee10253a2c78565571cb76": { - "address": "0xf3617e8a04265160b9ee10253a2c78565571cb76", - "symbol": "BLEPE", - "decimals": 18, - "name": "Blepe the Blue", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xf3617e8a04265160b9ee10253a2c78565571cb76.png", - "aggregators": [ - "CoinGecko", - "Socket", - "Rubic", - "Squid", - "Rango", - "Sonarwatch" - ], - "occurrences": 6 - }, - "0xc53342fd7575f572b0ff4569e31941a5b821ac76": { - "address": "0xc53342fd7575f572b0ff4569e31941a5b821ac76", - "symbol": "ETHV", - "decimals": 18, - "name": "Ethereum Volatility Index Token", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xc53342fd7575f572b0ff4569e31941a5b821ac76.png", - "aggregators": [ - "CoinGecko", - "LiFi", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 6 - }, - "0xb45ad160634c528cc3d2926d9807104fa3157305": { - "address": "0xb45ad160634c528cc3d2926d9807104fa3157305", - "symbol": "SDOLA", - "decimals": 18, - "name": "sDOLA", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xb45ad160634c528cc3d2926d9807104fa3157305.png", - "aggregators": [ - "CoinGecko", - "LiFi", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 6 - }, - "0x5f7827fdeb7c20b443265fc2f40845b715385ff2": { - "address": "0x5f7827fdeb7c20b443265fc2f40845b715385ff2", - "symbol": "EURCV", - "decimals": 18, - "name": "EUR CoinVertible", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x5f7827fdeb7c20b443265fc2f40845b715385ff2.png", - "aggregators": [ - "CoinMarketCap", - "1inch", - "LiFi", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 6 - }, - "0xa0d69e286b938e21cbf7e51d71f6a4c8918f482f": { - "address": "0xa0d69e286b938e21cbf7e51d71f6a4c8918f482f", - "symbol": "EUSD", - "decimals": 18, - "name": "Electronic USD", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xa0d69e286b938e21cbf7e51d71f6a4c8918f482f.png", - "aggregators": [ - "CoinMarketCap", - "LiFi", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 6 - }, - "0xce682c89c63d2850cb2ca898e44d6c7c30d897a6": { - "address": "0xce682c89c63d2850cb2ca898e44d6c7c30d897a6", - "symbol": "YUM", - "decimals": 18, - "name": "Yum", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xce682c89c63d2850cb2ca898e44d6c7c30d897a6.png", - "aggregators": [ - "CoinGecko", - "LiFi", - "Rubic", - "Squid", - "Rango", - "Sonarwatch" - ], - "occurrences": 6 - }, - "0x67c5870b4a41d4ebef24d2456547a03f1f3e094b": { - "address": "0x67c5870b4a41d4ebef24d2456547a03f1f3e094b", - "symbol": "G$", - "decimals": 2, - "name": "GoodDollar", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x67c5870b4a41d4ebef24d2456547a03f1f3e094b.png", - "aggregators": [ - "CoinMarketCap", - "LiFi", - "Rubic", - "Rango", - "Sonarwatch", - "SushiSwap" - ], - "occurrences": 6 - }, - "0xe77f6acd24185e149e329c1c0f479201b9ec2f4b": { - "address": "0xe77f6acd24185e149e329c1c0f479201b9ec2f4b", - "symbol": "ZBU", - "decimals": 18, - "name": "Zeebu", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xe77f6acd24185e149e329c1c0f479201b9ec2f4b.png", - "aggregators": [ - "CoinMarketCap", - "LiFi", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 6 - }, - "0x0af55d5ff28a3269d69b98680fd034f115dd53ac": { - "address": "0x0af55d5ff28a3269d69b98680fd034f115dd53ac", - "symbol": "BSL", - "decimals": 8, - "name": "BankSocial", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x0af55d5ff28a3269d69b98680fd034f115dd53ac.png", - "aggregators": [ - "CoinGecko", - "LiFi", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 6 - }, - "0x32c6f1c1731ff8f98ee2ede8954f696446307846": { - "address": "0x32c6f1c1731ff8f98ee2ede8954f696446307846", - "symbol": "BEARDY", - "decimals": 18, - "name": "Bearded Dragon", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x32c6f1c1731ff8f98ee2ede8954f696446307846.png", - "aggregators": [ - "CoinGecko", - "Socket", - "Rubic", - "Rango", - "Sonarwatch", - "SushiSwap" - ], - "occurrences": 6 - }, - "0xc71b5f631354be6853efe9c3ab6b9590f8302e81": { - "address": "0xc71b5f631354be6853efe9c3ab6b9590f8302e81", - "symbol": "ZKJ", - "decimals": 18, - "name": "Polyhedra Network", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xc71b5f631354be6853efe9c3ab6b9590f8302e81.png", - "aggregators": [ - "CoinMarketCap", - "1inch", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 6 - }, - "0x3742f3fcc56b2d46c7b8ca77c23be60cd43ca80a": { - "address": "0x3742f3fcc56b2d46c7b8ca77c23be60cd43ca80a", - "symbol": "STAVAIL", - "decimals": 18, - "name": "Deq Staked AVAIL", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x3742f3fcc56b2d46c7b8ca77c23be60cd43ca80a.png", - "aggregators": [ - "CoinGecko", - "LiFi", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 6 - }, - "0x3d000462fb9826804a45c0ea869b83b69587f2db": { - "address": "0x3d000462fb9826804a45c0ea869b83b69587f2db", - "symbol": "CMPT", - "decimals": 18, - "name": "Spatial Computing", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x3d000462fb9826804a45c0ea869b83b69587f2db.png", - "aggregators": [ - "CoinMarketCap", - "LiFi", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 6 - }, - "0x8a60e489004ca22d775c5f2c657598278d17d9c2": { - "address": "0x8a60e489004ca22d775c5f2c657598278d17d9c2", - "symbol": "USDA", - "decimals": 18, - "name": "USDa", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x8a60e489004ca22d775c5f2c657598278d17d9c2.png", - "aggregators": [ - "CoinGecko", - "LiFi", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 6 - }, - "0x4956b52ae2ff65d74ca2d61207523288e4528f96": { - "address": "0x4956b52ae2ff65d74ca2d61207523288e4528f96", - "symbol": "RLP", - "decimals": 18, - "name": "Resolv RLP", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x4956b52ae2ff65d74ca2d61207523288e4528f96.png", - "aggregators": [ - "CoinMarketCap", - "LiFi", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 6 - }, - "0x824e35f7a75324f99300afac75ecf7354e17ea26": { - "address": "0x824e35f7a75324f99300afac75ecf7354e17ea26", - "symbol": "TIA", - "decimals": 9, - "name": "Tiamonds OLD", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x824e35f7a75324f99300afac75ecf7354e17ea26.png", - "aggregators": [ - "CoinGecko", - "LiFi", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 6 - }, - "0xe6829d9a7ee3040e1276fa75293bde931859e8fa": { - "address": "0xe6829d9a7ee3040e1276fa75293bde931859e8fa", - "symbol": "CMETH", - "decimals": 18, - "name": "Mantle Restaked ETH", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xe6829d9a7ee3040e1276fa75293bde931859e8fa.png", - "aggregators": [ - "CoinMarketCap", - "LiFi", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 6 - }, - "0x8f08b70456eb22f6109f57b8fafe862ed28e6040": { - "address": "0x8f08b70456eb22f6109f57b8fafe862ed28e6040", - "symbol": "KING", - "decimals": 18, - "name": "King Protocol", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x8f08b70456eb22f6109f57b8fafe862ed28e6040.png", - "aggregators": [ - "CoinMarketCap", - "LiFi", - "Rubic", - "Squid", - "Rango", - "Sonarwatch" - ], - "occurrences": 6 - }, - "0x657d9aba1dbb59e53f9f3ecaa878447dcfc96dcb": { - "address": "0x657d9aba1dbb59e53f9f3ecaa878447dcfc96dcb", - "symbol": "YNETHX", - "decimals": 18, - "name": "ynETH MAX", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x657d9aba1dbb59e53f9f3ecaa878447dcfc96dcb.png", - "aggregators": [ - "CoinMarketCap", - "LiFi", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 6 - }, - "0x59f4f336bf3d0c49dbfba4a74ebd2a6ace40539a": { - "address": "0x59f4f336bf3d0c49dbfba4a74ebd2a6ace40539a", - "symbol": "CAT", - "decimals": 9, - "name": "Catcoin", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x59f4f336bf3d0c49dbfba4a74ebd2a6ace40539a.png", - "aggregators": [ - "CoinGecko", - "Socket", - "Rubic", - "Squid", - "Rango", - "Sonarwatch" - ], - "occurrences": 6 - }, - "0x590830dfdf9a3f68afcdde2694773debdf267774": { - "address": "0x590830dfdf9a3f68afcdde2694773debdf267774", - "symbol": "GIZA", - "decimals": 18, - "name": "GIZA", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x590830dfdf9a3f68afcdde2694773debdf267774.png", - "aggregators": [ - "CoinMarketCap", - "LiFi", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 6 - }, - "0x2a8c22e3b10036f3aef5875d04f8441d4188b656": { - "address": "0x2a8c22e3b10036f3aef5875d04f8441d4188b656", - "symbol": "MBASIS", - "decimals": 18, - "name": "Midas mBASIS", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x2a8c22e3b10036f3aef5875d04f8441d4188b656.png", - "aggregators": [ - "CoinGecko", - "LiFi", - "Rubic", - "Squid", - "Rango", - "Sonarwatch" - ], - "occurrences": 6 - }, - "0x1e0b2992079b620aa13a7c2e7c88d2e1e18e46e9": { - "address": "0x1e0b2992079b620aa13a7c2e7c88d2e1e18e46e9", - "symbol": "KOMPETE", - "decimals": 10, - "name": "KOMPETE", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x1e0b2992079b620aa13a7c2e7c88d2e1e18e46e9.png", - "aggregators": [ - "CoinMarketCap", - "LiFi", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 6 - }, - "0x6307b25a665efc992ec1c1bc403c38f3ddd7c661": { - "address": "0x6307b25a665efc992ec1c1bc403c38f3ddd7c661", - "symbol": "GCR", - "decimals": 4, - "name": "Global Coin Research", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x6307b25a665efc992ec1c1bc403c38f3ddd7c661.png", - "aggregators": [ - "CoinMarketCap", - "LiFi", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 6 - }, - "0x240d6faf8c3b1a7394e371792a3bf9d28dd65515": { - "address": "0x240d6faf8c3b1a7394e371792a3bf9d28dd65515", - "symbol": "BRETT", - "decimals": 9, - "name": "Brett ETH", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x240d6faf8c3b1a7394e371792a3bf9d28dd65515.png", - "aggregators": [ - "CoinGecko", - "LiFi", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 6 - }, - "0x7ca5af5ba3472af6049f63c1abc324475d44efc1": { - "address": "0x7ca5af5ba3472af6049f63c1abc324475d44efc1", - "symbol": "KNDX", - "decimals": 9, - "name": "KONDUX", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x7ca5af5ba3472af6049f63c1abc324475d44efc1.png", - "aggregators": [ - "CoinMarketCap", - "LiFi", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 6 - }, - "0xa2762ba628b962f93498d8893b6e4346140fe96d": { - "address": "0xa2762ba628b962f93498d8893b6e4346140fe96d", - "symbol": "INT", - "decimals": 18, - "name": "Intrepid Token", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xa2762ba628b962f93498d8893b6e4346140fe96d.png", - "aggregators": [ - "CoinGecko", - "LiFi", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 6 - }, - "0xcb69b067d9d8d6dd1209fe4557c43586e54f9045": { - "address": "0xcb69b067d9d8d6dd1209fe4557c43586e54f9045", - "symbol": "PSM", - "decimals": 18, - "name": "Possum", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xcb69b067d9d8d6dd1209fe4557c43586e54f9045.png", - "aggregators": [ - "CoinGecko", - "LiFi", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 6 - }, - "0x0563dce613d559a47877ffd1593549fb9d3510d6": { - "address": "0x0563dce613d559a47877ffd1593549fb9d3510d6", - "symbol": "SUPERBID", - "decimals": 18, - "name": "SuperBid", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x0563dce613d559a47877ffd1593549fb9d3510d6.png", - "aggregators": [ - "CoinGecko", - "LiFi", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 6 - }, - "0xf280b16ef293d8e534e370794ef26bf312694126": { - "address": "0xf280b16ef293d8e534e370794ef26bf312694126", - "symbol": "ASTEROID", - "decimals": 9, - "name": "Asteroid Shiba", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xf280b16ef293d8e534e370794ef26bf312694126.png", - "aggregators": [ - "CoinGecko", - "LiFi", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 6 - }, - "0x85cf7f10683c73359e7b06c082eef5851ff2956d": { - "address": "0x85cf7f10683c73359e7b06c082eef5851ff2956d", - "symbol": "LILAI", - "decimals": 18, - "name": "LilAI", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x85cf7f10683c73359e7b06c082eef5851ff2956d.png", - "aggregators": [ - "CoinGecko", - "LiFi", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 6 - }, - "0xfee293840d23b0b2de8c55e1cf7a9f01c157767c": { - "address": "0xfee293840d23b0b2de8c55e1cf7a9f01c157767c", - "symbol": "DEGEN", - "decimals": 18, - "name": "Degen", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xfee293840d23b0b2de8c55e1cf7a9f01c157767c.png", - "aggregators": [ - "CoinMarketCap", - "LiFi", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 6 - }, - "0x9f90b457dea25ef802e38d470dda7343691d8fe1": { - "address": "0x9f90b457dea25ef802e38d470dda7343691d8fe1", - "symbol": "CIOTX", - "decimals": 18, - "name": "Crosschain IOTX", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x9f90b457dea25ef802e38d470dda7343691d8fe1.png", - "aggregators": [ - "CoinMarketCap", - "LiFi", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 6 - }, - "0xbd8fdda057de7e0162b7a386bec253844b5e07a5": { - "address": "0xbd8fdda057de7e0162b7a386bec253844b5e07a5", - "symbol": "JARVIS", - "decimals": 18, - "name": "Jarvis", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xbd8fdda057de7e0162b7a386bec253844b5e07a5.png", - "aggregators": [ - "CoinGecko", - "LiFi", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 6 - }, - "0xc285b7e09a4584d027e5bc36571785b515898246": { - "address": "0xc285b7e09a4584d027e5bc36571785b515898246", - "symbol": "CUSD", - "decimals": 18, - "name": "Coin98 Dollar", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xc285b7e09a4584d027e5bc36571785b515898246.png", - "aggregators": [ - "CoinMarketCap", - "LiFi", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 6 - }, - "0x92e52a1a235d9a103d970901066ce910aacefd37": { - "address": "0x92e52a1a235d9a103d970901066ce910aacefd37", - "symbol": "UCASH", - "decimals": 8, - "name": "U CASH", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x92e52a1a235d9a103d970901066ce910aacefd37.png", - "aggregators": [ - "CoinMarketCap", - "LiFi", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 6 - }, - "0x26946ada5ecb57f3a1f91605050ce45c482c9eb1": { - "address": "0x26946ada5ecb57f3a1f91605050ce45c482c9eb1", - "symbol": "BSOV", - "decimals": 8, - "name": "BitcoinSoV", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x26946ada5ecb57f3a1f91605050ce45c482c9eb1.png", - "aggregators": [ - "CoinMarketCap", - "LiFi", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 6 - }, - "0x1b073382e63411e3bcffe90ac1b9a43fefa1ec6f": { - "address": "0x1b073382e63411e3bcffe90ac1b9a43fefa1ec6f", - "symbol": "BEST", - "decimals": 8, - "name": "Bitpanda Ecosystem", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x1b073382e63411e3bcffe90ac1b9a43fefa1ec6f.png", - "aggregators": [ - "CoinMarketCap", - "LiFi", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 6 - }, - "0x24c19f7101c1731b85f1127eaa0407732e36ecdd": { - "address": "0x24c19f7101c1731b85f1127eaa0407732e36ecdd", - "symbol": "SGT", - "decimals": 18, - "name": "Sharedstake.finance", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x24c19f7101c1731b85f1127eaa0407732e36ecdd.png", - "aggregators": [ - "Metamask", - "LiFi", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 6 - }, - "0xc56c2b7e71b54d38aab6d52e94a04cbfa8f604fa": { - "address": "0xc56c2b7e71b54d38aab6d52e94a04cbfa8f604fa", - "symbol": "ZUSD", - "decimals": 6, - "name": "ZUSD", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xc56c2b7e71b54d38aab6d52e94a04cbfa8f604fa.png", - "aggregators": [ - "CoinMarketCap", - "LiFi", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 6 - }, - "0xd0660cd418a64a1d44e9214ad8e459324d8157f1": { - "address": "0xd0660cd418a64a1d44e9214ad8e459324d8157f1", - "symbol": "WOOFY", - "decimals": 12, - "name": "Woofy", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xd0660cd418a64a1d44e9214ad8e459324d8157f1.png", - "aggregators": [ - "CoinMarketCap", - "LiFi", - "Socket", - "Rubic", - "Rango", - "SushiSwap" - ], - "occurrences": 6 - }, - "0x8b3870df408ff4d7c3a26df852d41034eda11d81": { - "address": "0x8b3870df408ff4d7c3a26df852d41034eda11d81", - "symbol": "IOI", - "decimals": 6, - "name": "IOI Token", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x8b3870df408ff4d7c3a26df852d41034eda11d81.png", - "aggregators": [ - "CoinMarketCap", - "LiFi", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 6 - }, - "0x2c4f1df9c7de0c59778936c9b145ff56813f3295": { - "address": "0x2c4f1df9c7de0c59778936c9b145ff56813f3295", - "symbol": "MNTL", - "decimals": 6, - "name": "AssetMantle", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x2c4f1df9c7de0c59778936c9b145ff56813f3295.png", - "aggregators": [ - "CoinMarketCap", - "LiFi", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 6 - }, - "0x8e964e35a76103af4c7d7318e1b1a82c682ae296": { - "address": "0x8e964e35a76103af4c7d7318e1b1a82c682ae296", - "symbol": "FLZ", - "decimals": 18, - "name": "Fellaz", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x8e964e35a76103af4c7d7318e1b1a82c682ae296.png", - "aggregators": [ - "CoinMarketCap", - "LiFi", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 6 - }, - "0xf8173a39c56a554837c4c7f104153a005d284d11": { - "address": "0xf8173a39c56a554837c4c7f104153a005d284d11", - "symbol": "EDU", - "decimals": 18, - "name": "EDU Coin", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xf8173a39c56a554837c4c7f104153a005d284d11.png", - "aggregators": [ - "CoinMarketCap", - "LiFi", - "Socket", - "Rubic", - "Rango", - "SushiSwap" - ], - "occurrences": 6 - }, - "0xa663b02cf0a4b149d2ad41910cb81e23e1c41c32": { - "address": "0xa663b02cf0a4b149d2ad41910cb81e23e1c41c32", - "symbol": "SFRAX", - "decimals": 18, - "name": "Staked FRAX", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xa663b02cf0a4b149d2ad41910cb81e23e1c41c32.png", - "aggregators": [ - "CoinMarketCap", - "LiFi", - "Rubic", - "Squid", - "Rango", - "Sonarwatch" - ], - "occurrences": 6 - }, - "0x53dfea0a8cc2a2a2e425e1c174bc162999723ea0": { - "address": "0x53dfea0a8cc2a2a2e425e1c174bc162999723ea0", - "symbol": "JCHF", - "decimals": 18, - "name": "Jarvis Synthetic Swiss Franc", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x53dfea0a8cc2a2a2e425e1c174bc162999723ea0.png", - "aggregators": [ - "LiFi", - "Socket", - "Rubic", - "Rango", - "Sonarwatch", - "SushiSwap" - ], - "occurrences": 6 - }, - "0x720cd16b011b987da3518fbf38c3071d4f0d1495": { - "address": "0x720cd16b011b987da3518fbf38c3071d4f0d1495", - "symbol": "FLUX", - "decimals": 8, - "name": "Flux", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x720cd16b011b987da3518fbf38c3071d4f0d1495.png", - "aggregators": [ - "CoinMarketCap", - "LiFi", - "Socket", - "Rubic", - "Rango" - ], - "occurrences": 5 - }, - "0x4123a133ae3c521fd134d7b13a2dec35b56c2463": { - "address": "0x4123a133ae3c521fd134d7b13a2dec35b56c2463", - "symbol": "OPEN", - "decimals": 8, - "name": "Open Custody Protocol", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x4123a133ae3c521fd134d7b13a2dec35b56c2463.png", - "aggregators": [ - "CoinMarketCap", - "LiFi", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x32b4d049fe4c888d2b92eecaf729f44df6b1f36e": { - "address": "0x32b4d049fe4c888d2b92eecaf729f44df6b1f36e", - "symbol": "ROBO", - "decimals": 18, - "name": "Fabric Protocol", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x32b4d049fe4c888d2b92eecaf729f44df6b1f36e.png", - "aggregators": [ - "CoinMarketCap", - "Socket", - "Rubic", - "Squid", - "Rango" - ], - "occurrences": 5 - }, - "0x925206b8a707096ed26ae47c84747fe0bb734f59": { - "address": "0x925206b8a707096ed26ae47c84747fe0bb734f59", - "symbol": "WBT", - "decimals": 8, - "name": "WhiteBIT Coin", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x925206b8a707096ed26ae47c84747fe0bb734f59.png", - "aggregators": [ - "CoinMarketCap", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0xb478c6245e3d85d6ec3486b62ea872128d562541": { - "address": "0xb478c6245e3d85d6ec3486b62ea872128d562541", - "symbol": "LOOT", - "decimals": 18, - "name": "LootBot", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xb478c6245e3d85d6ec3486b62ea872128d562541.png", - "aggregators": [ - "CoinMarketCap", - "LiFi", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x104e363ac6521e55a24ae724855362acec3febe6": { - "address": "0x104e363ac6521e55a24ae724855362acec3febe6", - "symbol": "ACP", - "decimals": 18, - "name": "Arena Of Faith", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x104e363ac6521e55a24ae724855362acec3febe6.png", - "aggregators": ["CoinGecko", "Rubic", "Squid", "Sonarwatch"], - "occurrences": 4 - }, - "0x1a91b61e884ddd93a0aa83cd6908a4bc07e6f3eb": { - "address": "0x1a91b61e884ddd93a0aa83cd6908a4bc07e6f3eb", - "symbol": "ATN", - "decimals": 9, - "name": "Athene Network", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x1a91b61e884ddd93a0aa83cd6908a4bc07e6f3eb.png", - "aggregators": [ - "CoinGecko", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0xd31e53966bf212e860d48a3a8651a23d09a7fdc3": { - "address": "0xd31e53966bf212e860d48a3a8651a23d09a7fdc3", - "symbol": "DOGEAI", - "decimals": 18, - "name": "DogeAi", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xd31e53966bf212e860d48a3a8651a23d09a7fdc3.png", - "aggregators": [ - "CoinGecko", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0xd109b2a304587569c84308c55465cd9ff0317bfb": { - "address": "0xd109b2a304587569c84308c55465cd9ff0317bfb", - "symbol": "AAMMBPTBALWETH", - "decimals": 18, - "name": "Aave AMM BptBALWETH", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xd109b2a304587569c84308c55465cd9ff0317bfb.png", - "aggregators": [ - "CoinGecko", - "LiFi", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x24d73bca2bd9c3a61e99dfc7cb86d3c379ebded7": { - "address": "0x24d73bca2bd9c3a61e99dfc7cb86d3c379ebded7", - "symbol": "MAI", - "decimals": 18, - "name": "Micro AI", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x24d73bca2bd9c3a61e99dfc7cb86d3c379ebded7.png", - "aggregators": [ - "CoinGecko", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0xade6fdaba1643e4d1eef68da7170f234470938c6": { - "address": "0xade6fdaba1643e4d1eef68da7170f234470938c6", - "symbol": "HARAMBE", - "decimals": 18, - "name": "Harambe", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xade6fdaba1643e4d1eef68da7170f234470938c6.png", - "aggregators": [ - "CoinGecko", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x444444444444c1a66f394025ac839a535246fcc8": { - "address": "0x444444444444c1a66f394025ac839a535246fcc8", - "symbol": "GENI", - "decimals": 9, - "name": "Genius", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x444444444444c1a66f394025ac839a535246fcc8.png", - "aggregators": [ - "CoinMarketCap", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x2614f29c39de46468a921fd0b41fdd99a01f2edf": { - "address": "0x2614f29c39de46468a921fd0b41fdd99a01f2edf", - "symbol": "HLX", - "decimals": 18, - "name": "HELIOS", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x2614f29c39de46468a921fd0b41fdd99a01f2edf.png", - "aggregators": [ - "CoinGecko", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x0b9ae6b1d4f0eeed904d1cef68b9bd47499f3fff": { - "address": "0x0b9ae6b1d4f0eeed904d1cef68b9bd47499f3fff", - "symbol": "NATI", - "decimals": 18, - "name": "IlluminatiCoin", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x0b9ae6b1d4f0eeed904d1cef68b9bd47499f3fff.png", - "aggregators": [ - "CoinGecko", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0xb2e96a63479c2edd2fd62b382c89d5ca79f572d3": { - "address": "0xb2e96a63479c2edd2fd62b382c89d5ca79f572d3", - "symbol": "ZNN", - "decimals": 8, - "name": "Zenon", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xb2e96a63479c2edd2fd62b382c89d5ca79f572d3.png", - "aggregators": [ - "CoinMarketCap", - "1inch", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x6adb2e268de2aa1abf6578e4a8119b960e02928f": { - "address": "0x6adb2e268de2aa1abf6578e4a8119b960e02928f", - "symbol": "SHIBDOGE", - "decimals": 9, - "name": "ShibaDoge", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x6adb2e268de2aa1abf6578e4a8119b960e02928f.png", - "aggregators": [ - "CoinMarketCap", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x1780933e83b09371cf716f3630fe5a422a66a39e": { - "address": "0x1780933e83b09371cf716f3630fe5a422a66a39e", - "symbol": "QDX", - "decimals": 18, - "name": "Quidax", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x1780933e83b09371cf716f3630fe5a422a66a39e.png", - "aggregators": [ - "CoinMarketCap", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0xe77076518a813616315eaaba6ca8e595e845eee9": { - "address": "0xe77076518a813616315eaaba6ca8e595e845eee9", - "symbol": "EEIGEN", - "decimals": 18, - "name": "ether fi Staked EIGEN", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xe77076518a813616315eaaba6ca8e595e845eee9.png", - "aggregators": [ - "CoinGecko", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x9634bdb20bbab07bb52d279fa6e0c53ccc89c879": { - "address": "0x9634bdb20bbab07bb52d279fa6e0c53ccc89c879", - "symbol": "PEPEGA", - "decimals": 9, - "name": "Pepega", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x9634bdb20bbab07bb52d279fa6e0c53ccc89c879.png", - "aggregators": [ - "CoinMarketCap", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x1900e8b5619a3596745f715d0427fe617c729ba9": { - "address": "0x1900e8b5619a3596745f715d0427fe617c729ba9", - "symbol": "CBG", - "decimals": 18, - "name": "Chainbing", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x1900e8b5619a3596745f715d0427fe617c729ba9.png", - "aggregators": [ - "CoinMarketCap", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x965d79f1a1016b574a62986e13ca8ab04dfdd15c": { - "address": "0x965d79f1a1016b574a62986e13ca8ab04dfdd15c", - "symbol": "M2", - "decimals": 18, - "name": "M2", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x965d79f1a1016b574a62986e13ca8ab04dfdd15c.png", - "aggregators": [ - "CoinGecko", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x98968f0747e0a261532cacc0be296375f5c08398": { - "address": "0x98968f0747e0a261532cacc0be296375f5c08398", - "symbol": "MOONCAT", - "decimals": 18, - "name": "MOONCAT Vault NFTX", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x98968f0747e0a261532cacc0be296375f5c08398.png", - "aggregators": [ - "CoinGecko", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x2255718832bc9fd3be1caf75084f4803da14ff01": { - "address": "0x2255718832bc9fd3be1caf75084f4803da14ff01", - "symbol": "VBILL", - "decimals": 6, - "name": "VanEck Treasury Fund", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x2255718832bc9fd3be1caf75084f4803da14ff01.png", - "aggregators": [ - "CoinGecko", - "LiFi", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x303c89f3a4a58872d8b6a3e64c14fdd9ec669c99": { - "address": "0x303c89f3a4a58872d8b6a3e64c14fdd9ec669c99", - "symbol": "BABYNEIRO", - "decimals": 18, - "name": "Baby Neiro", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x303c89f3a4a58872d8b6a3e64c14fdd9ec669c99.png", - "aggregators": [ - "CoinGecko", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x0aee8703d34dd9ae107386d3eff22ae75dd616d1": { - "address": "0x0aee8703d34dd9ae107386d3eff22ae75dd616d1", - "symbol": "SLICE", - "decimals": 18, - "name": "Tranche Finance", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x0aee8703d34dd9ae107386d3eff22ae75dd616d1.png", - "aggregators": [ - "CoinMarketCap", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0xf89674f18309a2e97843c6e9b19c07c22caef6d5": { - "address": "0xf89674f18309a2e97843c6e9b19c07c22caef6d5", - "symbol": "GAMER", - "decimals": 9, - "name": "cyb3rgam3r420", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xf89674f18309a2e97843c6e9b19c07c22caef6d5.png", - "aggregators": [ - "CoinGecko", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x77791a1f85b8c67f17c43ba4a324f9bcd6e83113": { - "address": "0x77791a1f85b8c67f17c43ba4a324f9bcd6e83113", - "symbol": "WAGMI", - "decimals": 18, - "name": "WAGMI", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x77791a1f85b8c67f17c43ba4a324f9bcd6e83113.png", - "aggregators": [ - "CoinGecko", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x50b0696468f42cab1ddc76413a1312aff3cabdf6": { - "address": "0x50b0696468f42cab1ddc76413a1312aff3cabdf6", - "symbol": "CLOSEDAI", - "decimals": 18, - "name": "ClosedAI", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x50b0696468f42cab1ddc76413a1312aff3cabdf6.png", - "aggregators": [ - "CoinGecko", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0xe59d2ff6995a926a574390824a657eed36801e55": { - "address": "0xe59d2ff6995a926a574390824a657eed36801e55", - "symbol": "AAMMUNIAAVEWETH", - "decimals": 18, - "name": "Aave AMM UniAAVEWETH", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xe59d2ff6995a926a574390824a657eed36801e55.png", - "aggregators": [ - "CoinGecko", - "LiFi", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0xf0acf8949e705e0ebb6cb42c2164b0b986454223": { - "address": "0xf0acf8949e705e0ebb6cb42c2164b0b986454223", - "symbol": "BRTR", - "decimals": 8, - "name": "Barter", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xf0acf8949e705e0ebb6cb42c2164b0b986454223.png", - "aggregators": [ - "CoinGecko", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0xdbcd57cc74b180f928258f7b1a32f6f7e64bf12e": { - "address": "0xdbcd57cc74b180f928258f7b1a32f6f7e64bf12e", - "symbol": "BEPE", - "decimals": 18, - "name": "Baby Pepe Token", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xdbcd57cc74b180f928258f7b1a32f6f7e64bf12e.png", - "aggregators": [ - "CoinGecko", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x661c70333aa1850ccdbae82776bb436a0fcfeefb": { - "address": "0x661c70333aa1850ccdbae82776bb436a0fcfeefb", - "symbol": "EBTC", - "decimals": 18, - "name": "eBTC", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x661c70333aa1850ccdbae82776bb436a0fcfeefb.png", - "aggregators": [ - "CoinGecko", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x87931e7ad81914e7898d07c68f145fc0a553d8fb": { - "address": "0x87931e7ad81914e7898d07c68f145fc0a553d8fb", - "symbol": "WIZARD", - "decimals": 18, - "name": "WIZARD Vault NFTX", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x87931e7ad81914e7898d07c68f145fc0a553d8fb.png", - "aggregators": [ - "CoinGecko", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0xb39185e33e8c28e0bb3dbbce24da5dea6379ae91": { - "address": "0xb39185e33e8c28e0bb3dbbce24da5dea6379ae91", - "symbol": "PHUNK", - "decimals": 18, - "name": "PHUNK Vault NFTX", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xb39185e33e8c28e0bb3dbbce24da5dea6379ae91.png", - "aggregators": [ - "CoinGecko", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0xc67b12049c2d0cf6e476bc64c7f82fc6c63cffc5": { - "address": "0xc67b12049c2d0cf6e476bc64c7f82fc6c63cffc5", - "symbol": "GDT", - "decimals": 8, - "name": "Globe Derivative Exchange", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xc67b12049c2d0cf6e476bc64c7f82fc6c63cffc5.png", - "aggregators": [ - "CoinMarketCap", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x32e7c8a6e920a3cf224b678112ac78fdc0fb09d1": { - "address": "0x32e7c8a6e920a3cf224b678112ac78fdc0fb09d1", - "symbol": "BOO", - "decimals": 18, - "name": "BOO", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x32e7c8a6e920a3cf224b678112ac78fdc0fb09d1.png", - "aggregators": [ - "CoinGecko", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x13b2f6928d7204328b0e8e4bcd0379aa06ea21fa": { - "address": "0x13b2f6928d7204328b0e8e4bcd0379aa06ea21fa", - "symbol": "AAMMWBTC", - "decimals": 8, - "name": "Aave AMM WBTC", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x13b2f6928d7204328b0e8e4bcd0379aa06ea21fa.png", - "aggregators": [ - "CoinGecko", - "LiFi", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x3d2b66bc4f9d6388bd2d97b95b565be1686aefb3": { - "address": "0x3d2b66bc4f9d6388bd2d97b95b565be1686aefb3", - "symbol": "LAMBO", - "decimals": 18, - "name": "LAMBO", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x3d2b66bc4f9d6388bd2d97b95b565be1686aefb3.png", - "aggregators": [ - "CoinGecko", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0xd24946147829deaa935be2ad85a3291dbf109c80": { - "address": "0xd24946147829deaa935be2ad85a3291dbf109c80", - "symbol": "AAMMUSDC", - "decimals": 6, - "name": "Aave AMM USDC", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xd24946147829deaa935be2ad85a3291dbf109c80.png", - "aggregators": [ - "CoinGecko", - "LiFi", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0xc58f53a8adff2fb4eb16ed56635772075e2ee123": { - "address": "0xc58f53a8adff2fb4eb16ed56635772075e2ee123", - "symbol": "AAMMUNIWBTCWETH", - "decimals": 18, - "name": "Aave AMM UniWBTCWETH", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xc58f53a8adff2fb4eb16ed56635772075e2ee123.png", - "aggregators": [ - "CoinGecko", - "LiFi", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x450e7f6e3a2f247a51b98c39297a9a5bfbdb3170": { - "address": "0x450e7f6e3a2f247a51b98c39297a9a5bfbdb3170", - "symbol": "EGT", - "decimals": 9, - "name": "Elon GOAT", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x450e7f6e3a2f247a51b98c39297a9a5bfbdb3170.png", - "aggregators": [ - "CoinMarketCap", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0xc9bc48c72154ef3e5425641a3c747242112a46af": { - "address": "0xc9bc48c72154ef3e5425641a3c747242112a46af", - "symbol": "ARAI", - "decimals": 18, - "name": "Aave RAI", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xc9bc48c72154ef3e5425641a3c747242112a46af.png", - "aggregators": [ - "CoinGecko", - "LiFi", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x8dae6cb04688c62d939ed9b68d32bc62e49970b1": { - "address": "0x8dae6cb04688c62d939ed9b68d32bc62e49970b1", - "symbol": "ACRV", - "decimals": 18, - "name": "Aave CRV", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x8dae6cb04688c62d939ed9b68d32bc62e49970b1.png", - "aggregators": [ - "CoinGecko", - "LiFi", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x692accdd8b86692427e0aa4752ae917df01cc56f": { - "address": "0x692accdd8b86692427e0aa4752ae917df01cc56f", - "symbol": "SUNC", - "decimals": 18, - "name": "Sunrise", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x692accdd8b86692427e0aa4752ae917df01cc56f.png", - "aggregators": [ - "CoinGecko", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0xf256cc7847e919fac9b808cc216cac87ccf2f47a": { - "address": "0xf256cc7847e919fac9b808cc216cac87ccf2f47a", - "symbol": "AXSUSHI", - "decimals": 18, - "name": "Aave XSUSHI", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xf256cc7847e919fac9b808cc216cac87ccf2f47a.png", - "aggregators": [ - "CoinGecko", - "LiFi", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x3bbbb6a231d0a1a12c6b79ba5bc2ed6358db5160": { - "address": "0x3bbbb6a231d0a1a12c6b79ba5bc2ed6358db5160", - "symbol": "ZEN", - "decimals": 18, - "name": "Zenith", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x3bbbb6a231d0a1a12c6b79ba5bc2ed6358db5160.png", - "aggregators": [ - "CoinGecko", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0xf5b5efc906513b4344ebabcf47a04901f99f09f3": { - "address": "0xf5b5efc906513b4344ebabcf47a04901f99f09f3", - "symbol": "UBX", - "decimals": 0, - "name": "UBIX Network", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xf5b5efc906513b4344ebabcf47a04901f99f09f3.png", - "aggregators": [ - "CoinMarketCap", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0xb475332d25d34b59176f5c1d94cb9bc9b5e3954a": { - "address": "0xb475332d25d34b59176f5c1d94cb9bc9b5e3954a", - "symbol": "HOBBES", - "decimals": 9, - "name": "Hobbes", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xb475332d25d34b59176f5c1d94cb9bc9b5e3954a.png", - "aggregators": [ - "CoinMarketCap", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x17418038ecf73ba4026c4f428547bf099706f27b": { - "address": "0x17418038ecf73ba4026c4f428547bf099706f27b", - "symbol": "ACRED", - "decimals": 6, - "name": "Apollo Diversified Credit Securitize Fu", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x17418038ecf73ba4026c4f428547bf099706f27b.png", - "aggregators": [ - "CoinGecko", - "LiFi", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0xe9a53c43a0b58706e67341c4055de861e29ee943": { - "address": "0xe9a53c43a0b58706e67341c4055de861e29ee943", - "symbol": "ELMNT", - "decimals": 18, - "name": "Element 280", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xe9a53c43a0b58706e67341c4055de861e29ee943.png", - "aggregators": [ - "CoinGecko", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x809826cceab68c387726af962713b64cb5cb3cca": { - "address": "0x809826cceab68c387726af962713b64cb5cb3cca", - "symbol": "NCASH", - "decimals": 18, - "name": "Nucleus Vision", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x809826cceab68c387726af962713b64cb5cb3cca.png", - "aggregators": [ - "CoinGecko", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x69cbaf6c147086c3c234385556f8a0c6488d3420": { - "address": "0x69cbaf6c147086c3c234385556f8a0c6488d3420", - "symbol": "69420", - "decimals": 9, - "name": "69420", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x69cbaf6c147086c3c234385556f8a0c6488d3420.png", - "aggregators": [ - "CoinGecko", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x69b14e8d3cebfdd8196bfe530954a0c226e5008e": { - "address": "0x69b14e8d3cebfdd8196bfe530954a0c226e5008e", - "symbol": "SPACEPI", - "decimals": 9, - "name": "SpacePi Token", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x69b14e8d3cebfdd8196bfe530954a0c226e5008e.png", - "aggregators": [ - "CoinGecko", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x961d4921e1718e633bac8ded88c4a1cae44b785a": { - "address": "0x961d4921e1718e633bac8ded88c4a1cae44b785a", - "symbol": "STFLIP", - "decimals": 18, - "name": "Thunderhead Staked FLIP", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x961d4921e1718e633bac8ded88c4a1cae44b785a.png", - "aggregators": [ - "CoinGecko", - "LiFi", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0xc353bf07405304aeab75f4c2fac7e88d6a68f98e": { - "address": "0xc353bf07405304aeab75f4c2fac7e88d6a68f98e", - "symbol": "HOPE", - "decimals": 18, - "name": "Hope money", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xc353bf07405304aeab75f4c2fac7e88d6a68f98e.png", - "aggregators": [ - "CoinMarketCap", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x58b9cb810a68a7f3e1e4f8cb45d1b9b3c79705e8": { - "address": "0x58b9cb810a68a7f3e1e4f8cb45d1b9b3c79705e8", - "symbol": "CLEAR", - "decimals": 18, - "name": "Everclear", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x58b9cb810a68a7f3e1e4f8cb45d1b9b3c79705e8.png", - "aggregators": [ - "CoinMarketCap", - "LiFi", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x8484e645a054586a6d6af60c0ee911d7b5180e64": { - "address": "0x8484e645a054586a6d6af60c0ee911d7b5180e64", - "symbol": "DYOR", - "decimals": 18, - "name": "DYOR", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x8484e645a054586a6d6af60c0ee911d7b5180e64.png", - "aggregators": [ - "CoinGecko", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x11ebe21e9d7bf541a18e1e3ac94939018ce88f0b": { - "address": "0x11ebe21e9d7bf541a18e1e3ac94939018ce88f0b", - "symbol": "PITCHFXS", - "decimals": 18, - "name": "Pitch FXS", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x11ebe21e9d7bf541a18e1e3ac94939018ce88f0b.png", - "aggregators": [ - "CoinGecko", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x244f09d92971d03a779aa66d310579a6517ab9a4": { - "address": "0x244f09d92971d03a779aa66d310579a6517ab9a4", - "symbol": "HARAMBE", - "decimals": 18, - "name": "CTO Harambe", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x244f09d92971d03a779aa66d310579a6517ab9a4.png", - "aggregators": [ - "CoinGecko", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x864cb5194722d5a1596f4be8b899916d30dad8d8": { - "address": "0x864cb5194722d5a1596f4be8b899916d30dad8d8", - "symbol": "DOG", - "decimals": 18, - "name": "LEDOG DOG", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x864cb5194722d5a1596f4be8b899916d30dad8d8.png", - "aggregators": [ - "CoinGecko", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0xcae0dd4bda7ff3e700355c7629b24d5d728bd2ce": { - "address": "0xcae0dd4bda7ff3e700355c7629b24d5d728bd2ce", - "symbol": "BOWIE", - "decimals": 18, - "name": "Bowie", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xcae0dd4bda7ff3e700355c7629b24d5d728bd2ce.png", - "aggregators": [ - "CoinGecko", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x1bfce574deff725a3f483c334b790e25c8fa9779": { - "address": "0x1bfce574deff725a3f483c334b790e25c8fa9779", - "symbol": "CETI", - "decimals": 18, - "name": "Tao Ce i", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x1bfce574deff725a3f483c334b790e25c8fa9779.png", - "aggregators": [ - "CoinGecko", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x09675e24ca1eb06023451ac8088eca1040f47585": { - "address": "0x09675e24ca1eb06023451ac8088eca1040f47585", - "symbol": "APES", - "decimals": 18, - "name": "ApeScreener", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x09675e24ca1eb06023451ac8088eca1040f47585.png", - "aggregators": [ - "CoinGecko", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x2bc46eb4ae80ddd9c8a6e064c74327c8244d88e2": { - "address": "0x2bc46eb4ae80ddd9c8a6e064c74327c8244d88e2", - "symbol": "SVM", - "decimals": 18, - "name": "StratoVM", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x2bc46eb4ae80ddd9c8a6e064c74327c8244d88e2.png", - "aggregators": [ - "CoinGecko", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0xe9514a6eba63a0bbbe2faea919e773ebe0f527c1": { - "address": "0xe9514a6eba63a0bbbe2faea919e773ebe0f527c1", - "symbol": "KEK", - "decimals": 18, - "name": "Kekcoin ETH", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xe9514a6eba63a0bbbe2faea919e773ebe0f527c1.png", - "aggregators": [ - "CoinGecko", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0xa0ed3c520dc0632657ad2eaaf19e26c4fd431a84": { - "address": "0xa0ed3c520dc0632657ad2eaaf19e26c4fd431a84", - "symbol": "HPO", - "decimals": 18, - "name": "Hippopotamus", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xa0ed3c520dc0632657ad2eaaf19e26c4fd431a84.png", - "aggregators": [ - "CoinGecko", - "Rubic", - "Rango", - "Sonarwatch", - "SushiSwap" - ], - "occurrences": 5 - }, - "0x66e564819340cc2f54abceb4e49941fa07e426b4": { - "address": "0x66e564819340cc2f54abceb4e49941fa07e426b4", - "symbol": "BRETT", - "decimals": 9, - "name": "BRETT0X66", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x66e564819340cc2f54abceb4e49941fa07e426b4.png", - "aggregators": [ - "CoinGecko", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x1d88713b483a8e45cff0e5cd7c2e15e5fab4534d": { - "address": "0x1d88713b483a8e45cff0e5cd7c2e15e5fab4534d", - "symbol": "STO", - "decimals": 18, - "name": "StakeStone", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x1d88713b483a8e45cff0e5cd7c2e15e5fab4534d.png", - "aggregators": [ - "CoinMarketCap", - "LiFi", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x74e9fee3fcb56bccac22e726cce7a78ca90185e1": { - "address": "0x74e9fee3fcb56bccac22e726cce7a78ca90185e1", - "symbol": "RIZO", - "decimals": 18, - "name": "Rizo", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x74e9fee3fcb56bccac22e726cce7a78ca90185e1.png", - "aggregators": [ - "CoinGecko", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x89deb6c8918a42457bd6ddbcaaf979216c4d774c": { - "address": "0x89deb6c8918a42457bd6ddbcaaf979216c4d774c", - "symbol": "HAI", - "decimals": 18, - "name": "HapticAI", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x89deb6c8918a42457bd6ddbcaaf979216c4d774c.png", - "aggregators": [ - "CoinGecko", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x4591dbff62656e7859afe5e45f6f47d3669fbb28": { - "address": "0x4591dbff62656e7859afe5e45f6f47d3669fbb28", - "symbol": "MKUSD", - "decimals": 18, - "name": "Prisma mkUSD", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x4591dbff62656e7859afe5e45f6f47d3669fbb28.png", - "aggregators": [ - "CoinMarketCap", - "LiFi", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0xcfcffe432a48db53f59c301422d2edd77b2a88d7": { - "address": "0xcfcffe432a48db53f59c301422d2edd77b2a88d7", - "symbol": "TEXAN", - "decimals": 18, - "name": "Texan", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xcfcffe432a48db53f59c301422d2edd77b2a88d7.png", - "aggregators": [ - "CoinGecko", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x50d7ee9708fec39673c92e1aae048eb3685eea9b": { - "address": "0x50d7ee9708fec39673c92e1aae048eb3685eea9b", - "symbol": "GINNAN", - "decimals": 9, - "name": "Ginnan", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x50d7ee9708fec39673c92e1aae048eb3685eea9b.png", - "aggregators": [ - "CoinGecko", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0xdb25ca703181e7484a155dd612b06f57e12be5f0": { - "address": "0xdb25ca703181e7484a155dd612b06f57e12be5f0", - "symbol": "YVYFI", - "decimals": 18, - "name": "YFI yVault", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xdb25ca703181e7484a155dd612b06f57e12be5f0.png", - "aggregators": [ - "CoinGecko", - "LiFi", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x777b6d4730a8a890dc64bf202514ce03ab001c02": { - "address": "0x777b6d4730a8a890dc64bf202514ce03ab001c02", - "symbol": "BARS", - "decimals": 18, - "name": "Silver Standard", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x777b6d4730a8a890dc64bf202514ce03ab001c02.png", - "aggregators": [ - "CoinGecko", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x235c8ee913d93c68d2902a8e0b5a643755705726": { - "address": "0x235c8ee913d93c68d2902a8e0b5a643755705726", - "symbol": "BAG", - "decimals": 18, - "name": "tehBag", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x235c8ee913d93c68d2902a8e0b5a643755705726.png", - "aggregators": [ - "CoinMarketCap", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x4581af35199bbde87a89941220e04e27ce4b0099": { - "address": "0x4581af35199bbde87a89941220e04e27ce4b0099", - "symbol": "PARTY", - "decimals": 18, - "name": "Maximus Pool Party", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x4581af35199bbde87a89941220e04e27ce4b0099.png", - "aggregators": [ - "CoinGecko", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x0c5cb676e38d6973837b9496f6524835208145a2": { - "address": "0x0c5cb676e38d6973837b9496f6524835208145a2", - "symbol": "KABO", - "decimals": 18, - "name": "KaboChan", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x0c5cb676e38d6973837b9496f6524835208145a2.png", - "aggregators": [ - "CoinGecko", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x9ce07410673206c693bcec9b07710767637a564c": { - "address": "0x9ce07410673206c693bcec9b07710767637a564c", - "symbol": "MONKEYS", - "decimals": 9, - "name": "Monkeys Token", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x9ce07410673206c693bcec9b07710767637a564c.png", - "aggregators": [ - "CoinGecko", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x51a59a02ba906194285e81eb1f98ffa28e7cf4c9": { - "address": "0x51a59a02ba906194285e81eb1f98ffa28e7cf4c9", - "symbol": "PEPE", - "decimals": 9, - "name": "Pepe King Prawn", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x51a59a02ba906194285e81eb1f98ffa28e7cf4c9.png", - "aggregators": [ - "CoinGecko", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x81fcc294d91bd8ffc8a822d7df0e2fd2f8526c39": { - "address": "0x81fcc294d91bd8ffc8a822d7df0e2fd2f8526c39", - "symbol": "DOGE", - "decimals": 9, - "name": "Department Of Government Efficiency", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x81fcc294d91bd8ffc8a822d7df0e2fd2f8526c39.png", - "aggregators": [ - "CoinGecko", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0xcfc5bd99915aaa815401c5a41a927ab7a38d29cf": { - "address": "0xcfc5bd99915aaa815401c5a41a927ab7a38d29cf", - "symbol": "THUSD", - "decimals": 18, - "name": "Threshold USD", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xcfc5bd99915aaa815401c5a41a927ab7a38d29cf.png", - "aggregators": [ - "CoinGecko", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x7dd7d5ca67df3e0f5a7f004af3653444b1fcfb76": { - "address": "0x7dd7d5ca67df3e0f5a7f004af3653444b1fcfb76", - "symbol": "BRRR", - "decimals": 18, - "name": "Brrr de Money", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x7dd7d5ca67df3e0f5a7f004af3653444b1fcfb76.png", - "aggregators": [ - "CoinGecko", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x516e2758b044433371076a48127b8cfa7b0bdb43": { - "address": "0x516e2758b044433371076a48127b8cfa7b0bdb43", - "symbol": "SMUDGE", - "decimals": 18, - "name": "Smudge Lord", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x516e2758b044433371076a48127b8cfa7b0bdb43.png", - "aggregators": [ - "CoinMarketCap", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x0f5def84ced3e9e295dae28df96d0b846de92c1a": { - "address": "0x0f5def84ced3e9e295dae28df96d0b846de92c1a", - "symbol": "SDG", - "decimals": 18, - "name": "Crypto SDG", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x0f5def84ced3e9e295dae28df96d0b846de92c1a.png", - "aggregators": [ - "CoinMarketCap", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x14bfc34b292aa3f8afa0c366244ffb77f72761f6": { - "address": "0x14bfc34b292aa3f8afa0c366244ffb77f72761f6", - "symbol": "TNR", - "decimals": 9, - "name": "The Night Riders", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x14bfc34b292aa3f8afa0c366244ffb77f72761f6.png", - "aggregators": [ - "CoinGecko", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0xb7b37b81d4497ab317fc9d4a370cf243043d6bbe": { - "address": "0xb7b37b81d4497ab317fc9d4a370cf243043d6bbe", - "symbol": "VAIX", - "decimals": 18, - "name": "Vectorspace AI X", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xb7b37b81d4497ab317fc9d4a370cf243043d6bbe.png", - "aggregators": [ - "CoinMarketCap", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x8578a8716013c390b95db73065922f512783e2cf": { - "address": "0x8578a8716013c390b95db73065922f512783e2cf", - "symbol": "VIVEK", - "decimals": 9, - "name": "Head of D O G E", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x8578a8716013c390b95db73065922f512783e2cf.png", - "aggregators": [ - "CoinGecko", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x56de8bc61346321d4f2211e3ac3c0a7f00db9b76": { - "address": "0x56de8bc61346321d4f2211e3ac3c0a7f00db9b76", - "symbol": "RENA", - "decimals": 18, - "name": "RENA Finance", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x56de8bc61346321d4f2211e3ac3c0a7f00db9b76.png", - "aggregators": [ - "CoinMarketCap", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0xb1c064c3f2908f741c9dea4afc5773238b53e6cc": { - "address": "0xb1c064c3f2908f741c9dea4afc5773238b53e6cc", - "symbol": "XRP", - "decimals": 9, - "name": "WarioXRPDumbledoreYugioh69Inu", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xb1c064c3f2908f741c9dea4afc5773238b53e6cc.png", - "aggregators": [ - "CoinGecko", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0xbd7e92cf6f857be8541fca6abfb72aef8e16c307": { - "address": "0xbd7e92cf6f857be8541fca6abfb72aef8e16c307", - "symbol": "PRO", - "decimals": 18, - "name": "Prodigy Bot", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xbd7e92cf6f857be8541fca6abfb72aef8e16c307.png", - "aggregators": [ - "CoinGecko", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x9138c8779a0ac8a84d69617d5715bd8afa23c650": { - "address": "0x9138c8779a0ac8a84d69617d5715bd8afa23c650", - "symbol": "FLRBRG", - "decimals": 18, - "name": "Floor Cheese Burger", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x9138c8779a0ac8a84d69617d5715bd8afa23c650.png", - "aggregators": [ - "CoinGecko", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x32462ba310e447ef34ff0d15bce8613aa8c4a244": { - "address": "0x32462ba310e447ef34ff0d15bce8613aa8c4a244", - "symbol": "DHN", - "decimals": 18, - "name": "Dohrnii", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x32462ba310e447ef34ff0d15bce8613aa8c4a244.png", - "aggregators": [ - "CoinMarketCap", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x38b0e3a59183814957d83df2a97492aed1f003e2": { - "address": "0x38b0e3a59183814957d83df2a97492aed1f003e2", - "symbol": "ANML", - "decimals": 18, - "name": "Animal Concerts", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x38b0e3a59183814957d83df2a97492aed1f003e2.png", - "aggregators": [ - "CoinMarketCap", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x69cd13d248830602a60b1f20ab11f5049385877d": { - "address": "0x69cd13d248830602a60b1f20ab11f5049385877d", - "symbol": "BABYPEPE", - "decimals": 18, - "name": "Baby Pepe", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x69cd13d248830602a60b1f20ab11f5049385877d.png", - "aggregators": [ - "CoinGecko", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x7ad16874759348f04b6b6119463d66c07ae54899": { - "address": "0x7ad16874759348f04b6b6119463d66c07ae54899", - "symbol": "PIRB", - "decimals": 18, - "name": "PIRB", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x7ad16874759348f04b6b6119463d66c07ae54899.png", - "aggregators": [ - "CoinGecko", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x776280f68ad33c4d49e6846507b7dbaf7811c89f": { - "address": "0x776280f68ad33c4d49e6846507b7dbaf7811c89f", - "symbol": "ZETH", - "decimals": 18, - "name": "ZeroLiquid ETH", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x776280f68ad33c4d49e6846507b7dbaf7811c89f.png", - "aggregators": [ - "CoinGecko", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x95af148dcdc6b36b977addf7ea2599c5e0483263": { - "address": "0x95af148dcdc6b36b977addf7ea2599c5e0483263", - "symbol": "HACHI", - "decimals": 18, - "name": "Hachiko Inu", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x95af148dcdc6b36b977addf7ea2599c5e0483263.png", - "aggregators": [ - "CoinGecko", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x9f891b5ecbd89dd8a5ee4d1d80efc3fe78b306cb": { - "address": "0x9f891b5ecbd89dd8a5ee4d1d80efc3fe78b306cb", - "symbol": "SONIK", - "decimals": 18, - "name": "SONIK", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x9f891b5ecbd89dd8a5ee4d1d80efc3fe78b306cb.png", - "aggregators": [ - "CoinGecko", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x3f817b28da4940f018c6b5c0a11c555ebb1264f9": { - "address": "0x3f817b28da4940f018c6b5c0a11c555ebb1264f9", - "symbol": "A3A", - "decimals": 18, - "name": "3A", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x3f817b28da4940f018c6b5c0a11c555ebb1264f9.png", - "aggregators": [ - "CoinGecko", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0xe2cfd7a01ec63875cd9da6c7c1b7025166c2fa2f": { - "address": "0xe2cfd7a01ec63875cd9da6c7c1b7025166c2fa2f", - "symbol": "HYPER", - "decimals": 18, - "name": "Hyper", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xe2cfd7a01ec63875cd9da6c7c1b7025166c2fa2f.png", - "aggregators": [ - "CoinGecko", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x616ef40d55c0d2c506f4d6873bda8090b79bf8fc": { - "address": "0x616ef40d55c0d2c506f4d6873bda8090b79bf8fc", - "symbol": "KTO", - "decimals": 9, - "name": "Kounotori", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x616ef40d55c0d2c506f4d6873bda8090b79bf8fc.png", - "aggregators": [ - "CoinMarketCap", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x3419875b4d3bca7f3fdda2db7a476a79fd31b4fe": { - "address": "0x3419875b4d3bca7f3fdda2db7a476a79fd31b4fe", - "symbol": "DZHV", - "decimals": 18, - "name": "DizzyHavoc", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x3419875b4d3bca7f3fdda2db7a476a79fd31b4fe.png", - "aggregators": [ - "CoinGecko", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0xf6afc05fccea5a53f22a3e39ffee861e016bd9a0": { - "address": "0xf6afc05fccea5a53f22a3e39ffee861e016bd9a0", - "symbol": "WOLF", - "decimals": 18, - "name": "LandWolf", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xf6afc05fccea5a53f22a3e39ffee861e016bd9a0.png", - "aggregators": [ - "CoinGecko", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x642ac912a58428767fa14a26a749f9a1b001ba92": { - "address": "0x642ac912a58428767fa14a26a749f9a1b001ba92", - "symbol": "XX", - "decimals": 9, - "name": "XX", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x642ac912a58428767fa14a26a749f9a1b001ba92.png", - "aggregators": [ - "CoinGecko", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x356e17967206efb413b60ab0ba44e269063a26c9": { - "address": "0x356e17967206efb413b60ab0ba44e269063a26c9", - "symbol": "OCISLY", - "decimals": 9, - "name": "Of Course I Still Love You", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x356e17967206efb413b60ab0ba44e269063a26c9.png", - "aggregators": [ - "CoinGecko", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x170dec83c7753aaad20c01a0016b5a2e143990d4": { - "address": "0x170dec83c7753aaad20c01a0016b5a2e143990d4", - "symbol": "WIGGER", - "decimals": 18, - "name": "Wigger", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x170dec83c7753aaad20c01a0016b5a2e143990d4.png", - "aggregators": [ - "CoinGecko", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x67c4d14861f9c975d004cfb3ac305bee673e996e": { - "address": "0x67c4d14861f9c975d004cfb3ac305bee673e996e", - "symbol": "LANDWU", - "decimals": 9, - "name": "Land Wu", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x67c4d14861f9c975d004cfb3ac305bee673e996e.png", - "aggregators": [ - "CoinMarketCap", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x0ee27a1f959ea7ea2aa171a7e2e48fd9f17bb8eb": { - "address": "0x0ee27a1f959ea7ea2aa171a7e2e48fd9f17bb8eb", - "symbol": "GROK", - "decimals": 9, - "name": "First GROK AI", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x0ee27a1f959ea7ea2aa171a7e2e48fd9f17bb8eb.png", - "aggregators": [ - "CoinGecko", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0xd939212f16560447ed82ce46ca40a63db62419b5": { - "address": "0xd939212f16560447ed82ce46ca40a63db62419b5", - "symbol": "MYC", - "decimals": 18, - "name": "Mega Yacht Cult", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xd939212f16560447ed82ce46ca40a63db62419b5.png", - "aggregators": [ - "CoinGecko", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x1a8a39f2986cf9688f6dc9e5ee0cc0bc8d5edd67": { - "address": "0x1a8a39f2986cf9688f6dc9e5ee0cc0bc8d5edd67", - "symbol": "DOGGA", - "decimals": 9, - "name": "Doggacoin", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x1a8a39f2986cf9688f6dc9e5ee0cc0bc8d5edd67.png", - "aggregators": [ - "CoinGecko", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x6ae2a128cd07d672164ca9f2712ea737d198dd41": { - "address": "0x6ae2a128cd07d672164ca9f2712ea737d198dd41", - "symbol": "GOAT", - "decimals": 18, - "name": "Goat Trading", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x6ae2a128cd07d672164ca9f2712ea737d198dd41.png", - "aggregators": [ - "CoinGecko", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x683c8e87e74f3f8f27c0d2ebd4350fe4dba814ef": { - "address": "0x683c8e87e74f3f8f27c0d2ebd4350fe4dba814ef", - "symbol": "XGN", - "decimals": 18, - "name": "0xGen", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x683c8e87e74f3f8f27c0d2ebd4350fe4dba814ef.png", - "aggregators": [ - "CoinGecko", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x1e971b5b21367888239f00da16f0a6b0effecb03": { - "address": "0x1e971b5b21367888239f00da16f0a6b0effecb03", - "symbol": "LEEROY", - "decimals": 18, - "name": "LEEROY JENKINS", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x1e971b5b21367888239f00da16f0a6b0effecb03.png", - "aggregators": [ - "CoinGecko", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x569d0e52c3dbe95983bcc2434cb9f69d905be919": { - "address": "0x569d0e52c3dbe95983bcc2434cb9f69d905be919", - "symbol": "ROAR", - "decimals": 9, - "name": "Roaring Kitty", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x569d0e52c3dbe95983bcc2434cb9f69d905be919.png", - "aggregators": [ - "CoinGecko", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x055999b83f9cade9e3988a0f34ef72817566800d": { - "address": "0x055999b83f9cade9e3988a0f34ef72817566800d", - "symbol": "RTB", - "decimals": 18, - "name": "Roundtable", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x055999b83f9cade9e3988a0f34ef72817566800d.png", - "aggregators": [ - "CoinGecko", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x0b61c4f33bcdef83359ab97673cb5961c6435f4e": { - "address": "0x0b61c4f33bcdef83359ab97673cb5961c6435f4e", - "symbol": "EARN", - "decimals": 18, - "name": "HOLD", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x0b61c4f33bcdef83359ab97673cb5961c6435f4e.png", - "aggregators": [ - "CoinMarketCap", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x716bb5e0839451068885250442a5b8377f582933": { - "address": "0x716bb5e0839451068885250442a5b8377f582933", - "symbol": "FOFAR", - "decimals": 9, - "name": "Fofar0x71", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x716bb5e0839451068885250442a5b8377f582933.png", - "aggregators": [ - "CoinGecko", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0xf1df7305e4bab3885cab5b1e4dfc338452a67891": { - "address": "0xf1df7305e4bab3885cab5b1e4dfc338452a67891", - "symbol": "PALM", - "decimals": 9, - "name": "PaLM AI", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xf1df7305e4bab3885cab5b1e4dfc338452a67891.png", - "aggregators": [ - "CoinMarketCap", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x68592c5c98c4f4a8a4bc6da2121e65da3d1c0917": { - "address": "0x68592c5c98c4f4a8a4bc6da2121e65da3d1c0917", - "symbol": "USDLR", - "decimals": 6, - "name": "Stable USDLR", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x68592c5c98c4f4a8a4bc6da2121e65da3d1c0917.png", - "aggregators": [ - "CoinGecko", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0xb7bda6a89e724f63572ce68fddc1a6d1d5d24bcf": { - "address": "0xb7bda6a89e724f63572ce68fddc1a6d1d5d24bcf", - "symbol": "OGZ", - "decimals": 18, - "name": "OGzClub", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xb7bda6a89e724f63572ce68fddc1a6d1d5d24bcf.png", - "aggregators": [ - "CoinMarketCap", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x79349edd0b8e83ffaa1af2e6ba0c8ce87731c267": { - "address": "0x79349edd0b8e83ffaa1af2e6ba0c8ce87731c267", - "symbol": "WCD", - "decimals": 9, - "name": "WcDonalds", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x79349edd0b8e83ffaa1af2e6ba0c8ce87731c267.png", - "aggregators": [ - "CoinGecko", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x5408d3883ec28c2de205064ae9690142b035fed2": { - "address": "0x5408d3883ec28c2de205064ae9690142b035fed2", - "symbol": "RASTO", - "decimals": 9, - "name": "Rastopyry", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x5408d3883ec28c2de205064ae9690142b035fed2.png", - "aggregators": [ - "CoinGecko", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0xeeecd285f60e802ecb6d8d8d37790c887f9a4b33": { - "address": "0xeeecd285f60e802ecb6d8d8d37790c887f9a4b33", - "symbol": "TOM", - "decimals": 9, - "name": "Big Tom", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xeeecd285f60e802ecb6d8d8d37790c887f9a4b33.png", - "aggregators": [ - "CoinGecko", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x7567d006f6be77e3d87aa831855cb4102e37b17d": { - "address": "0x7567d006f6be77e3d87aa831855cb4102e37b17d", - "symbol": "THND", - "decimals": 18, - "name": "Three Hundred AI", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x7567d006f6be77e3d87aa831855cb4102e37b17d.png", - "aggregators": [ - "CoinGecko", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x0808e6c4400bde1d70db0d02170b67de05e07ef5": { - "address": "0x0808e6c4400bde1d70db0d02170b67de05e07ef5", - "symbol": "WLYX", - "decimals": 18, - "name": "Wrapped LYX SigmaSwap", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x0808e6c4400bde1d70db0d02170b67de05e07ef5.png", - "aggregators": [ - "CoinGecko", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0xc5170dd7386247cdb8c48545c803f5d0e3347022": { - "address": "0xc5170dd7386247cdb8c48545c803f5d0e3347022", - "symbol": "TI", - "decimals": 18, - "name": "Titanium22", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xc5170dd7386247cdb8c48545c803f5d0e3347022.png", - "aggregators": [ - "CoinMarketCap", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x61b57bdc01e3072fab3e9e2f3c7b88d482734e05": { - "address": "0x61b57bdc01e3072fab3e9e2f3c7b88d482734e05", - "symbol": "MZM", - "decimals": 18, - "name": "MetaZooMee", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x61b57bdc01e3072fab3e9e2f3c7b88d482734e05.png", - "aggregators": [ - "CoinMarketCap", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x698b1d54e936b9f772b8f58447194bbc82ec1933": { - "address": "0x698b1d54e936b9f772b8f58447194bbc82ec1933", - "symbol": "PEEZY", - "decimals": 9, - "name": "Peezy peezy vip", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x698b1d54e936b9f772b8f58447194bbc82ec1933.png", - "aggregators": [ - "CoinMarketCap", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x7ae4f8885f6cfa41a692cb9da3789cfa6a83e9f2": { - "address": "0x7ae4f8885f6cfa41a692cb9da3789cfa6a83e9f2", - "symbol": "GENOME", - "decimals": 18, - "name": "GenomesDAO GENOME", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x7ae4f8885f6cfa41a692cb9da3789cfa6a83e9f2.png", - "aggregators": [ - "CoinGecko", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x576e2bed8f7b46d34016198911cdf9886f78bea7": { - "address": "0x576e2bed8f7b46d34016198911cdf9886f78bea7", - "symbol": "TRUMP", - "decimals": 9, - "name": "MAGA", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x576e2bed8f7b46d34016198911cdf9886f78bea7.png", - "aggregators": [ - "CoinGecko", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0xe4042c7c1bf740b8ddb2ab43df6d9ed766b2513e": { - "address": "0xe4042c7c1bf740b8ddb2ab43df6d9ed766b2513e", - "symbol": "BADCAT", - "decimals": 9, - "name": "Andy Alter Ego", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xe4042c7c1bf740b8ddb2ab43df6d9ed766b2513e.png", - "aggregators": [ - "CoinGecko", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0xe340b25fe32b1011616bb8ec495a4d503e322177": { - "address": "0xe340b25fe32b1011616bb8ec495a4d503e322177", - "symbol": "AAMMUNIDAIUSDC", - "decimals": 18, - "name": "Aave AMM UniDAIUSDC", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xe340b25fe32b1011616bb8ec495a4d503e322177.png", - "aggregators": [ - "CoinGecko", - "LiFi", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0xe831f96a7a1dce1aa2eb760b1e296c6a74caa9d5": { - "address": "0xe831f96a7a1dce1aa2eb760b1e296c6a74caa9d5", - "symbol": "NEXM", - "decimals": 8, - "name": "Nexum Coin", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xe831f96a7a1dce1aa2eb760b1e296c6a74caa9d5.png", - "aggregators": ["Metamask", "LiFi", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 5 - }, - "0x16a3543fa6b32cac3b0a755f64a729e84f89a75c": { - "address": "0x16a3543fa6b32cac3b0a755f64a729e84f89a75c", - "symbol": "TENSOR", - "decimals": 18, - "name": "Wrapped Hypertensor", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x16a3543fa6b32cac3b0a755f64a729e84f89a75c.png", - "aggregators": [ - "CoinGecko", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0xa045fe936e26e1e1e1fb27c1f2ae3643acde0171": { - "address": "0xa045fe936e26e1e1e1fb27c1f2ae3643acde0171", - "symbol": "KAI", - "decimals": 9, - "name": "Kai Ken", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xa045fe936e26e1e1e1fb27c1f2ae3643acde0171.png", - "aggregators": [ - "CoinMarketCap", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x9c7d4fb43919def524c1a9d92fe836169eaf0615": { - "address": "0x9c7d4fb43919def524c1a9d92fe836169eaf0615", - "symbol": "WOLF", - "decimals": 18, - "name": "Landwolf", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x9c7d4fb43919def524c1a9d92fe836169eaf0615.png", - "aggregators": [ - "CoinGecko", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0xbabe3ce7835665464228df00b03246115c30730a": { - "address": "0xbabe3ce7835665464228df00b03246115c30730a", - "symbol": "BABYNEIRO", - "decimals": 9, - "name": "Baby Neiro Token", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xbabe3ce7835665464228df00b03246115c30730a.png", - "aggregators": [ - "CoinMarketCap", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0xb60acd2057067dc9ed8c083f5aa227a244044fd6": { - "address": "0xb60acd2057067dc9ed8c083f5aa227a244044fd6", - "symbol": "STTAO", - "decimals": 9, - "name": "Tensorplex Staked TAO", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xb60acd2057067dc9ed8c083f5aa227a244044fd6.png", - "aggregators": [ - "CoinGecko", - "LiFi", - "Socket", - "Rubic", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0xd6175692026bcd7cb12a515e39cf0256ef35cb86": { - "address": "0xd6175692026bcd7cb12a515e39cf0256ef35cb86", - "symbol": "BONZI", - "decimals": 18, - "name": "Bonzi", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xd6175692026bcd7cb12a515e39cf0256ef35cb86.png", - "aggregators": [ - "CoinGecko", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0xcf91b70017eabde82c9671e30e5502d312ea6eb2": { - "address": "0xcf91b70017eabde82c9671e30e5502d312ea6eb2", - "symbol": "PUPPIES", - "decimals": 9, - "name": "I love puppies", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xcf91b70017eabde82c9671e30e5502d312ea6eb2.png", - "aggregators": [ - "CoinMarketCap", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x6abaf438f098f75c5892e1fabf08b1896c805967": { - "address": "0x6abaf438f098f75c5892e1fabf08b1896c805967", - "symbol": "BLOOD", - "decimals": 9, - "name": "Bloodboy", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x6abaf438f098f75c5892e1fabf08b1896c805967.png", - "aggregators": [ - "CoinGecko", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0xda251891e21e6edb0e6828e77621c7b98ea4e8ba": { - "address": "0xda251891e21e6edb0e6828e77621c7b98ea4e8ba", - "symbol": "MGLS", - "decimals": 18, - "name": "Meme Moguls", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xda251891e21e6edb0e6828e77621c7b98ea4e8ba.png", - "aggregators": [ - "CoinGecko", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x571d9b73dc04ed88b4e273e048c8d4848f83b779": { - "address": "0x571d9b73dc04ed88b4e273e048c8d4848f83b779", - "symbol": "CLOSEDAI", - "decimals": 9, - "name": "Super Closed Source", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x571d9b73dc04ed88b4e273e048c8d4848f83b779.png", - "aggregators": [ - "CoinGecko", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0xe842e272a18625319cc36f64eb9f97e5ad0c32af": { - "address": "0xe842e272a18625319cc36f64eb9f97e5ad0c32af", - "symbol": "YAK", - "decimals": 9, - "name": "YAK", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xe842e272a18625319cc36f64eb9f97e5ad0c32af.png", - "aggregators": [ - "CoinGecko", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x6977597bbbdcc453636bd67a161a96d85098f327": { - "address": "0x6977597bbbdcc453636bd67a161a96d85098f327", - "symbol": "PIPI", - "decimals": 9, - "name": "Pipi on ETH", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x6977597bbbdcc453636bd67a161a96d85098f327.png", - "aggregators": [ - "CoinGecko", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x518b63da813d46556fea041a88b52e3caa8c16a8": { - "address": "0x518b63da813d46556fea041a88b52e3caa8c16a8", - "symbol": "ATF", - "decimals": 18, - "name": "Antfarm Token", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x518b63da813d46556fea041a88b52e3caa8c16a8.png", - "aggregators": [ - "CoinMarketCap", - "LiFi", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0xccc80ce58995baae4e5867e5cde3bd9f8b242376": { - "address": "0xccc80ce58995baae4e5867e5cde3bd9f8b242376", - "symbol": "GOE", - "decimals": 9, - "name": "God Of Ethereum", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xccc80ce58995baae4e5867e5cde3bd9f8b242376.png", - "aggregators": [ - "CoinGecko", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x477a3d269266994f15e9c43a8d9c0561c4928088": { - "address": "0x477a3d269266994f15e9c43a8d9c0561c4928088", - "symbol": "YAI", - "decimals": 18, - "name": "Ÿ", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x477a3d269266994f15e9c43a8d9c0561c4928088.png", - "aggregators": [ - "CoinGecko", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x7022fe5fedbd54b40fdc52be30c1c578fb55c2bf": { - "address": "0x7022fe5fedbd54b40fdc52be30c1c578fb55c2bf", - "symbol": "SKULL", - "decimals": 18, - "name": "WOLF SKULL", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x7022fe5fedbd54b40fdc52be30c1c578fb55c2bf.png", - "aggregators": [ - "CoinGecko", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x7b66e84be78772a3afaf5ba8c1993a1b5d05f9c2": { - "address": "0x7b66e84be78772a3afaf5ba8c1993a1b5d05f9c2", - "symbol": "VITARNA", - "decimals": 18, - "name": "VitaRNA", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x7b66e84be78772a3afaf5ba8c1993a1b5d05f9c2.png", - "aggregators": [ - "CoinGecko", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0xf14dd7b286ce197019cba54b189d2b883e70f761": { - "address": "0xf14dd7b286ce197019cba54b189d2b883e70f761", - "symbol": "PEEZY", - "decimals": 9, - "name": "Young Peezy", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xf14dd7b286ce197019cba54b189d2b883e70f761.png", - "aggregators": [ - "CoinGecko", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0xd1a6616f56221a9f27eb9476867b5bdb2b2d101d": { - "address": "0xd1a6616f56221a9f27eb9476867b5bdb2b2d101d", - "symbol": "AGI", - "decimals": 18, - "name": "Artificial General Intelligence", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xd1a6616f56221a9f27eb9476867b5bdb2b2d101d.png", - "aggregators": [ - "CoinGecko", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0xe5c6f5fef89b64f36bfccb063962820136bac42f": { - "address": "0xe5c6f5fef89b64f36bfccb063962820136bac42f", - "symbol": "HOPPY", - "decimals": 9, - "name": "Hoppy The Frog", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xe5c6f5fef89b64f36bfccb063962820136bac42f.png", - "aggregators": [ - "CoinGecko", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0xb10cc888cb2cce7036f4c7ecad8a57da16161338": { - "address": "0xb10cc888cb2cce7036f4c7ecad8a57da16161338", - "symbol": "SWITCH", - "decimals": 8, - "name": "Switch Token", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xb10cc888cb2cce7036f4c7ecad8a57da16161338.png", - "aggregators": [ - "CoinMarketCap", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0xfc4b4ec763722b71eb1d729749b447a9645f5f30": { - "address": "0xfc4b4ec763722b71eb1d729749b447a9645f5f30", - "symbol": "GME", - "decimals": 9, - "name": "DumbMoney", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xfc4b4ec763722b71eb1d729749b447a9645f5f30.png", - "aggregators": [ - "CoinGecko", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0xb29dc1703facd2967bb8ade2e392385644c6dca9": { - "address": "0xb29dc1703facd2967bb8ade2e392385644c6dca9", - "symbol": "GAGA", - "decimals": 18, - "name": "Gaga Pepe", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xb29dc1703facd2967bb8ade2e392385644c6dca9.png", - "aggregators": [ - "CoinGecko", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x55c3a56e638e96c91f98735cc86f60a6820e6a44": { - "address": "0x55c3a56e638e96c91f98735cc86f60a6820e6a44", - "symbol": "GAV", - "decimals": 9, - "name": "GavCoin", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x55c3a56e638e96c91f98735cc86f60a6820e6a44.png", - "aggregators": [ - "CoinGecko", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x206a5ec55c531574130691cf9ada0fd711d5f710": { - "address": "0x206a5ec55c531574130691cf9ada0fd711d5f710", - "symbol": "REMILIA", - "decimals": 9, - "name": "Charlotte Fang", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x206a5ec55c531574130691cf9ada0fd711d5f710.png", - "aggregators": [ - "CoinGecko", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0xf5d791eebfc229c4fe976e8328ed2c261690cb34": { - "address": "0xf5d791eebfc229c4fe976e8328ed2c261690cb34", - "symbol": "BOOB", - "decimals": 9, - "name": "Book Of Bitcoin", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xf5d791eebfc229c4fe976e8328ed2c261690cb34.png", - "aggregators": [ - "CoinGecko", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0xe4b4c008ff36e3c50c4299c223504a480de9c833": { - "address": "0xe4b4c008ff36e3c50c4299c223504a480de9c833", - "symbol": "SS", - "decimals": 9, - "name": "Secret Society", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xe4b4c008ff36e3c50c4299c223504a480de9c833.png", - "aggregators": [ - "CoinGecko", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x80034f803afb1c6864e3ca481ef1362c54d094b9": { - "address": "0x80034f803afb1c6864e3ca481ef1362c54d094b9", - "symbol": "NPI", - "decimals": 9, - "name": "Non Playable Inu", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x80034f803afb1c6864e3ca481ef1362c54d094b9.png", - "aggregators": [ - "CoinGecko", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x5ff46696d6e4896137acb1628b06e28c10ee9634": { - "address": "0x5ff46696d6e4896137acb1628b06e28c10ee9634", - "symbol": "JANNY", - "decimals": 9, - "name": "Janny", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x5ff46696d6e4896137acb1628b06e28c10ee9634.png", - "aggregators": [ - "CoinGecko", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x049715c70fdbdd2be4814f76a53dc3d6f4367756": { - "address": "0x049715c70fdbdd2be4814f76a53dc3d6f4367756", - "symbol": "NEZUKO", - "decimals": 18, - "name": "Nezuko", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x049715c70fdbdd2be4814f76a53dc3d6f4367756.png", - "aggregators": [ - "CoinMarketCap", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0xd29da236dd4aac627346e1bba06a619e8c22d7c5": { - "address": "0xd29da236dd4aac627346e1bba06a619e8c22d7c5", - "symbol": "MAGA", - "decimals": 9, - "name": "MAGA Hat", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xd29da236dd4aac627346e1bba06a619e8c22d7c5.png", - "aggregators": [ - "CoinGecko", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x0113c07b3b8e4f41b62d713b5b12616bf2856585": { - "address": "0x0113c07b3b8e4f41b62d713b5b12616bf2856585", - "symbol": "HINU", - "decimals": 9, - "name": "Hokkaido Inu Token", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x0113c07b3b8e4f41b62d713b5b12616bf2856585.png", - "aggregators": [ - "CoinGecko", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x31c5dec1f10dc084b95c239734dea0adb9c97c9c": { - "address": "0x31c5dec1f10dc084b95c239734dea0adb9c97c9c", - "symbol": "OJEE", - "decimals": 18, - "name": "VIMworld OJEE", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x31c5dec1f10dc084b95c239734dea0adb9c97c9c.png", - "aggregators": [ - "CoinGecko", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x47da5456bc2e1ce391b645ce80f2e97192e4976a": { - "address": "0x47da5456bc2e1ce391b645ce80f2e97192e4976a", - "symbol": "PLUG", - "decimals": 18, - "name": "PL Gnet", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x47da5456bc2e1ce391b645ce80f2e97192e4976a.png", - "aggregators": [ - "CoinGecko", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x9303eabc860a743aabcc3a1629014cabcc3f8d36": { - "address": "0x9303eabc860a743aabcc3a1629014cabcc3f8d36", - "symbol": "AAMMUNIDAIWETH", - "decimals": 18, - "name": "Aave AMM UniDAIWETH", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x9303eabc860a743aabcc3a1629014cabcc3f8d36.png", - "aggregators": [ - "CoinGecko", - "LiFi", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0xde654f497a563dd7a121c176a125dd2f11f13a83": { - "address": "0xde654f497a563dd7a121c176a125dd2f11f13a83", - "symbol": "WXM", - "decimals": 18, - "name": "WeatherXM", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xde654f497a563dd7a121c176a125dd2f11f13a83.png", - "aggregators": [ - "CoinMarketCap", - "LiFi", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x9b7331c6e98bad1dc8f096ff3d98c93b3b9b1173": { - "address": "0x9b7331c6e98bad1dc8f096ff3d98c93b3b9b1173", - "symbol": "BULL", - "decimals": 18, - "name": "Mumu the Bull", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x9b7331c6e98bad1dc8f096ff3d98c93b3b9b1173.png", - "aggregators": [ - "CoinGecko", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0xc4058f6a829ddd684e1b7589b33312827f0a47bb": { - "address": "0xc4058f6a829ddd684e1b7589b33312827f0a47bb", - "symbol": "ANDY", - "decimals": 18, - "name": "aNDY", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xc4058f6a829ddd684e1b7589b33312827f0a47bb.png", - "aggregators": [ - "CoinGecko", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0xce176825afc335d9759cb4e323ee8b31891de747": { - "address": "0xce176825afc335d9759cb4e323ee8b31891de747", - "symbol": "CHWY", - "decimals": 9, - "name": "CHWY", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xce176825afc335d9759cb4e323ee8b31891de747.png", - "aggregators": [ - "CoinGecko", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x381491960c37b65862819ced0e35385f04b2c78b": { - "address": "0x381491960c37b65862819ced0e35385f04b2c78b", - "symbol": "HACHIKO", - "decimals": 9, - "name": "Hachiko", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x381491960c37b65862819ced0e35385f04b2c78b.png", - "aggregators": [ - "CoinGecko", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x3e985250cb137fc1ff55922116934c5982d29f85": { - "address": "0x3e985250cb137fc1ff55922116934c5982d29f85", - "symbol": "ZENT", - "decimals": 18, - "name": "ZENTU", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x3e985250cb137fc1ff55922116934c5982d29f85.png", - "aggregators": [ - "CoinGecko", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0xeeacc51af745846ddf46012b46c6910ea9b12898": { - "address": "0xeeacc51af745846ddf46012b46c6910ea9b12898", - "symbol": "DOGC", - "decimals": 18, - "name": "DOGC", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xeeacc51af745846ddf46012b46c6910ea9b12898.png", - "aggregators": [ - "CoinGecko", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x1039bae6254178ee2f6123cd64cde9e4ca79d779": { - "address": "0x1039bae6254178ee2f6123cd64cde9e4ca79d779", - "symbol": "WUKONG", - "decimals": 18, - "name": "Wukong Musk", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x1039bae6254178ee2f6123cd64cde9e4ca79d779.png", - "aggregators": [ - "CoinGecko", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x0f6d4d4643a514132f84f4a270946db3c7cb701c": { - "address": "0x0f6d4d4643a514132f84f4a270946db3c7cb701c", - "symbol": "LOVELY", - "decimals": 18, - "name": "Lovely Inu Finance", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x0f6d4d4643a514132f84f4a270946db3c7cb701c.png", - "aggregators": [ - "CoinGecko", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0xa1abecc1b3958da78259fa2793653fc48e976420": { - "address": "0xa1abecc1b3958da78259fa2793653fc48e976420", - "symbol": "DOGGGO", - "decimals": 18, - "name": "Dogggo", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xa1abecc1b3958da78259fa2793653fc48e976420.png", - "aggregators": [ - "CoinMarketCap", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0xb369daca21ee035312176eb8cf9d88ce97e0aa95": { - "address": "0xb369daca21ee035312176eb8cf9d88ce97e0aa95", - "symbol": "SKOL", - "decimals": 18, - "name": "Skol", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xb369daca21ee035312176eb8cf9d88ce97e0aa95.png", - "aggregators": [ - "CoinGecko", - "LiFi", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x9f04c2bd696a6191246144ba762456a24c457520": { - "address": "0x9f04c2bd696a6191246144ba762456a24c457520", - "symbol": "AITAX", - "decimals": 18, - "name": "AITaxBot", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x9f04c2bd696a6191246144ba762456a24c457520.png", - "aggregators": [ - "CoinGecko", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x436da116249044e8b4464f0cf21dd93311d88190": { - "address": "0x436da116249044e8b4464f0cf21dd93311d88190", - "symbol": "ZEUM", - "decimals": 18, - "name": "Colizeum", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x436da116249044e8b4464f0cf21dd93311d88190.png", - "aggregators": [ - "CoinMarketCap", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x5274891bec421b39d23760c04a6755ecb444797c": { - "address": "0x5274891bec421b39d23760c04a6755ecb444797c", - "symbol": "IDLEUSDCYIELD", - "decimals": 18, - "name": "IdleUSDC Yield", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x5274891bec421b39d23760c04a6755ecb444797c.png", - "aggregators": [ - "CoinGecko", - "LiFi", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0xf43f21384d03b5cbbddd58d2de64071e4ce76ab0": { - "address": "0xf43f21384d03b5cbbddd58d2de64071e4ce76ab0", - "symbol": "GIGACHAD", - "decimals": 18, - "name": "GigaChad", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xf43f21384d03b5cbbddd58d2de64071e4ce76ab0.png", - "aggregators": [ - "CoinGecko", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x358bd0d980e031e23eba9aa793926857703783bd": { - "address": "0x358bd0d980e031e23eba9aa793926857703783bd", - "symbol": "AAMMBPTWBTCWETH", - "decimals": 18, - "name": "Aave AMM BptWBTCWETH", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x358bd0d980e031e23eba9aa793926857703783bd.png", - "aggregators": [ - "CoinGecko", - "LiFi", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0xcdd0d11de0225b528b3a20d6436392c8260969d0": { - "address": "0xcdd0d11de0225b528b3a20d6436392c8260969d0", - "symbol": "ONIC", - "decimals": 18, - "name": "Trade Bionic", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xcdd0d11de0225b528b3a20d6436392c8260969d0.png", - "aggregators": [ - "CoinGecko", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x786f112c9a6bc840cdc07cfd840105efd6ef2d4b": { - "address": "0x786f112c9a6bc840cdc07cfd840105efd6ef2d4b", - "symbol": "EDOGE", - "decimals": 9, - "name": "Ethereum Doge", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x786f112c9a6bc840cdc07cfd840105efd6ef2d4b.png", - "aggregators": [ - "CoinGecko", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x0b2acaaf45fc201d239c5915572730f4bff1999f": { - "address": "0x0b2acaaf45fc201d239c5915572730f4bff1999f", - "symbol": "GOOSE", - "decimals": 18, - "name": "Goose", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x0b2acaaf45fc201d239c5915572730f4bff1999f.png", - "aggregators": [ - "CoinGecko", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x5483dc6abda5f094865120b2d251b5744fc2ecb5": { - "address": "0x5483dc6abda5f094865120b2d251b5744fc2ecb5", - "symbol": "TPAD", - "decimals": 18, - "name": "TaoPad", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x5483dc6abda5f094865120b2d251b5744fc2ecb5.png", - "aggregators": [ - "CoinMarketCap", - "LiFi", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x8c444197d64e079323a1eb8d40655910b052f85a": { - "address": "0x8c444197d64e079323a1eb8d40655910b052f85a", - "symbol": "EQ9", - "decimals": 18, - "name": "EQ9", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x8c444197d64e079323a1eb8d40655910b052f85a.png", - "aggregators": [ - "CoinGecko", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x0101013d11e4320d29759f40508c61110f525211": { - "address": "0x0101013d11e4320d29759f40508c61110f525211", - "symbol": "FROG", - "decimals": 9, - "name": "Beer Frog", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x0101013d11e4320d29759f40508c61110f525211.png", - "aggregators": [ - "CoinGecko", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x5e432eecd01c12ee7071ee9219c2477a347da192": { - "address": "0x5e432eecd01c12ee7071ee9219c2477a347da192", - "symbol": "ARQX", - "decimals": 18, - "name": "ARQx AI", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x5e432eecd01c12ee7071ee9219c2477a347da192.png", - "aggregators": [ - "CoinGecko", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0xaade1d6701173bd924c9de2d56a00ef4e3d9de4d": { - "address": "0xaade1d6701173bd924c9de2d56a00ef4e3d9de4d", - "symbol": "BWS", - "decimals": 9, - "name": "Blockchain Web Services", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xaade1d6701173bd924c9de2d56a00ef4e3d9de4d.png", - "aggregators": [ - "CoinGecko", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x7afd0d633e0a2b1db97506d97cadc880c894eca9": { - "address": "0x7afd0d633e0a2b1db97506d97cadc880c894eca9", - "symbol": "MARU", - "decimals": 9, - "name": "Marutaro", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x7afd0d633e0a2b1db97506d97cadc880c894eca9.png", - "aggregators": [ - "CoinGecko", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x6c060ba738af39a09f3b45ac6487dfc9ebb885f6": { - "address": "0x6c060ba738af39a09f3b45ac6487dfc9ebb885f6", - "symbol": "RSERG", - "decimals": 9, - "name": "rsERG", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x6c060ba738af39a09f3b45ac6487dfc9ebb885f6.png", - "aggregators": [ - "CoinGecko", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x0ea20e7ffb006d4cfe84df2f72d8c7bd89247db0": { - "address": "0x0ea20e7ffb006d4cfe84df2f72d8c7bd89247db0", - "symbol": "AAMMUNICRVWETH", - "decimals": 18, - "name": "Aave AMM UniCRVWETH", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x0ea20e7ffb006d4cfe84df2f72d8c7bd89247db0.png", - "aggregators": [ - "CoinGecko", - "LiFi", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0xb8db81b84d30e2387de0ff330420a4aaa6688134": { - "address": "0xb8db81b84d30e2387de0ff330420a4aaa6688134", - "symbol": "AAMMUNILINKWETH", - "decimals": 18, - "name": "Aave AMM UniLINKWETH", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xb8db81b84d30e2387de0ff330420a4aaa6688134.png", - "aggregators": [ - "CoinGecko", - "LiFi", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0xcb39637e7c03c2ac25405adb8d95035f2668b0d6": { - "address": "0xcb39637e7c03c2ac25405adb8d95035f2668b0d6", - "symbol": "ALGT", - "decimals": 18, - "name": "AlgoTrade", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xcb39637e7c03c2ac25405adb8d95035f2668b0d6.png", - "aggregators": [ - "CoinGecko", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x92f419fb7a750aed295b0ddf536276bf5a40124f": { - "address": "0x92f419fb7a750aed295b0ddf536276bf5a40124f", - "symbol": "TATSU", - "decimals": 18, - "name": "Tatsu", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x92f419fb7a750aed295b0ddf536276bf5a40124f.png", - "aggregators": [ - "CoinGecko", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0xc25a3a3b969415c80451098fa907ec722572917f": { - "address": "0xc25a3a3b969415c80451098fa907ec722572917f", - "symbol": "SCURVE", - "decimals": 18, - "name": "LP sCurve", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xc25a3a3b969415c80451098fa907ec722572917f.png", - "aggregators": [ - "CoinMarketCap", - "LiFi", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0xc73c167e7a4ba109e4052f70d5466d0c312a344d": { - "address": "0xc73c167e7a4ba109e4052f70d5466d0c312a344d", - "symbol": "SANSHU", - "decimals": 9, - "name": "Sanshu Inu OLD", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xc73c167e7a4ba109e4052f70d5466d0c312a344d.png", - "aggregators": [ - "CoinGecko", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x272f97b7a56a387ae942350bbc7df5700f8a4576": { - "address": "0x272f97b7a56a387ae942350bbc7df5700f8a4576", - "symbol": "ABAL", - "decimals": 18, - "name": "Aave BAL", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x272f97b7a56a387ae942350bbc7df5700f8a4576.png", - "aggregators": [ - "CoinGecko", - "LiFi", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x4687f007da484efe20d7a17e5b1d105cdbfca0eb": { - "address": "0x4687f007da484efe20d7a17e5b1d105cdbfca0eb", - "symbol": "MORPH", - "decimals": 18, - "name": "Morpheus", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x4687f007da484efe20d7a17e5b1d105cdbfca0eb.png", - "aggregators": [ - "CoinGecko", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0xf5809f3348ff40906bb509f936aba43e6d1961ab": { - "address": "0xf5809f3348ff40906bb509f936aba43e6d1961ab", - "symbol": "LESTER", - "decimals": 9, - "name": "Lester", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xf5809f3348ff40906bb509f936aba43e6d1961ab.png", - "aggregators": [ - "CoinGecko", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0xf9fb4ad91812b704ba883b11d2b576e890a6730a": { - "address": "0xf9fb4ad91812b704ba883b11d2b576e890a6730a", - "symbol": "AAMMWETH", - "decimals": 18, - "name": "Aave AMM WETH", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xf9fb4ad91812b704ba883b11d2b576e890a6730a.png", - "aggregators": [ - "CoinGecko", - "LiFi", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x69babe9811cc86dcfc3b8f9a14de6470dd18eda4": { - "address": "0x69babe9811cc86dcfc3b8f9a14de6470dd18eda4", - "symbol": "BABYPEPE", - "decimals": 9, - "name": "Baby Pepe", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x69babe9811cc86dcfc3b8f9a14de6470dd18eda4.png", - "aggregators": [ - "CoinMarketCap", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x47000bd34d9a7b7cdbeef4ec2ae452e73280a8b5": { - "address": "0x47000bd34d9a7b7cdbeef4ec2ae452e73280a8b5", - "symbol": "SHRUBIUS", - "decimals": 9, - "name": "Shrubius Maximus", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x47000bd34d9a7b7cdbeef4ec2ae452e73280a8b5.png", - "aggregators": [ - "CoinMarketCap", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x81db1949d0e888557bc632f7c0f6698b1f8c9106": { - "address": "0x81db1949d0e888557bc632f7c0f6698b1f8c9106", - "symbol": "D/ACC", - "decimals": 9, - "name": "d acc", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x81db1949d0e888557bc632f7c0f6698b1f8c9106.png", - "aggregators": [ - "CoinGecko", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x391e86e2c002c70dee155eaceb88f7a3c38f5976": { - "address": "0x391e86e2c002c70dee155eaceb88f7a3c38f5976", - "symbol": "AAMMUNIUSDCWETH", - "decimals": 18, - "name": "Aave AMM UniUSDCWETH", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x391e86e2c002c70dee155eaceb88f7a3c38f5976.png", - "aggregators": [ - "CoinGecko", - "LiFi", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x9562e2063122eaa4d7c2d786e7ca2610d70ca8b8": { - "address": "0x9562e2063122eaa4d7c2d786e7ca2610d70ca8b8", - "symbol": "SHIBC", - "decimals": 18, - "name": "Shiba Classic", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x9562e2063122eaa4d7c2d786e7ca2610d70ca8b8.png", - "aggregators": [ - "CoinGecko", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x28ae7b2ebd6f10f4393f410f6b7896380a949d62": { - "address": "0x28ae7b2ebd6f10f4393f410f6b7896380a949d62", - "symbol": "CREA", - "decimals": 9, - "name": "CoinCreate", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x28ae7b2ebd6f10f4393f410f6b7896380a949d62.png", - "aggregators": [ - "CoinGecko", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x2a414884a549ef5716bc1a4e648d3dc03f08b2cf": { - "address": "0x2a414884a549ef5716bc1a4e648d3dc03f08b2cf", - "symbol": "PERQ", - "decimals": 18, - "name": "PERQ", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x2a414884a549ef5716bc1a4e648d3dc03f08b2cf.png", - "aggregators": [ - "CoinGecko", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0xbea269038eb75bdab47a9c04d0f5c572d94b93d5": { - "address": "0xbea269038eb75bdab47a9c04d0f5c572d94b93d5", - "symbol": "WFIO", - "decimals": 9, - "name": "Wrapped FIO", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xbea269038eb75bdab47a9c04d0f5c572d94b93d5.png", - "aggregators": [ - "CoinMarketCap", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x4e09ac09eb332f4dd167b8bfb90c7f247f7350ac": { - "address": "0x4e09ac09eb332f4dd167b8bfb90c7f247f7350ac", - "symbol": "MIKO", - "decimals": 18, - "name": "MemeCoinGirl", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x4e09ac09eb332f4dd167b8bfb90c7f247f7350ac.png", - "aggregators": [ - "CoinGecko", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0xeda8db2f0f8f00f0aedd6fdd756402ed86cd002f": { - "address": "0xeda8db2f0f8f00f0aedd6fdd756402ed86cd002f", - "symbol": "OPM", - "decimals": 9, - "name": "OpMentis", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xeda8db2f0f8f00f0aedd6fdd756402ed86cd002f.png", - "aggregators": [ - "CoinMarketCap", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0xb893a8049f250b57efa8c62d51527a22404d7c9a": { - "address": "0xb893a8049f250b57efa8c62d51527a22404d7c9a", - "symbol": "USHIBA", - "decimals": 9, - "name": "American Shiba", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xb893a8049f250b57efa8c62d51527a22404d7c9a.png", - "aggregators": [ - "CoinMarketCap", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x79be75ffc64dd58e66787e4eae470c8a1fd08ba4": { - "address": "0x79be75ffc64dd58e66787e4eae470c8a1fd08ba4", - "symbol": "AAMMDAI", - "decimals": 18, - "name": "Aave AMM DAI", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x79be75ffc64dd58e66787e4eae470c8a1fd08ba4.png", - "aggregators": [ - "CoinGecko", - "LiFi", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0xe355de6a6043b0580ff5a26b46051a4809b12793": { - "address": "0xe355de6a6043b0580ff5a26b46051a4809b12793", - "symbol": "4EVER", - "decimals": 18, - "name": "4EVERLAND", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xe355de6a6043b0580ff5a26b46051a4809b12793.png", - "aggregators": [ - "CoinMarketCap", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x819c1a1568934ee59d9f3c8b9640908556c44140": { - "address": "0x819c1a1568934ee59d9f3c8b9640908556c44140", - "symbol": "HOBBES", - "decimals": 18, - "name": "Hobbes OLD", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x819c1a1568934ee59d9f3c8b9640908556c44140.png", - "aggregators": [ - "CoinGecko", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0xe4ab0be415e277d82c38625b72bd7dea232c2e7d": { - "address": "0xe4ab0be415e277d82c38625b72bd7dea232c2e7d", - "symbol": "XRP20", - "decimals": 18, - "name": "XRP20", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xe4ab0be415e277d82c38625b72bd7dea232c2e7d.png", - "aggregators": [ - "CoinGecko", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0xff931a7946d2fa11cf9123ef0dc6f6c7c6cb60c4": { - "address": "0xff931a7946d2fa11cf9123ef0dc6f6c7c6cb60c4", - "symbol": "BABY", - "decimals": 9, - "name": "Dancing Baby", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xff931a7946d2fa11cf9123ef0dc6f6c7c6cb60c4.png", - "aggregators": [ - "CoinGecko", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x6ef69ba2d051761afd38f218f0a3cf517d64a760": { - "address": "0x6ef69ba2d051761afd38f218f0a3cf517d64a760", - "symbol": "CPAI", - "decimals": 18, - "name": "Moontax", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x6ef69ba2d051761afd38f218f0a3cf517d64a760.png", - "aggregators": [ - "CoinMarketCap", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0xb15a5aab2a65745314fcd0d7f5080bfa65bd7c03": { - "address": "0xb15a5aab2a65745314fcd0d7f5080bfa65bd7c03", - "symbol": "TUPELO", - "decimals": 9, - "name": "tupelothedog", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xb15a5aab2a65745314fcd0d7f5080bfa65bd7c03.png", - "aggregators": [ - "CoinGecko", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x5d56b6581d2e7e7574adce2dc593f499a53d7505": { - "address": "0x5d56b6581d2e7e7574adce2dc593f499a53d7505", - "symbol": "MACHINA", - "decimals": 18, - "name": "Church of the Machina", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x5d56b6581d2e7e7574adce2dc593f499a53d7505.png", - "aggregators": [ - "CoinGecko", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0xcfd16933cb1579eee9fe6031686534e87353b148": { - "address": "0xcfd16933cb1579eee9fe6031686534e87353b148", - "symbol": "AIMR", - "decimals": 18, - "name": "MeromAI", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xcfd16933cb1579eee9fe6031686534e87353b148.png", - "aggregators": [ - "CoinMarketCap", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x915424ac489433130d92b04096f3b96c82e92a9d": { - "address": "0x915424ac489433130d92b04096f3b96c82e92a9d", - "symbol": "PROS", - "decimals": 18, - "name": "Prosper", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x915424ac489433130d92b04096f3b96c82e92a9d.png", - "aggregators": [ - "Metamask", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x792833b894775bd769b3c602ba7172e59a83ab3f": { - "address": "0x792833b894775bd769b3c602ba7172e59a83ab3f", - "symbol": "TOONS", - "decimals": 18, - "name": "City Boys", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x792833b894775bd769b3c602ba7172e59a83ab3f.png", - "aggregators": [ - "CoinGecko", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0xba62856e16cb3283d3b8e670b196b9bb02902f30": { - "address": "0xba62856e16cb3283d3b8e670b196b9bb02902f30", - "symbol": "LUCE", - "decimals": 9, - "name": "Vatican Mascot", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xba62856e16cb3283d3b8e670b196b9bb02902f30.png", - "aggregators": [ - "CoinGecko", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0xf257a2783f6633a149b5966e32432b5bb3462c96": { - "address": "0xf257a2783f6633a149b5966e32432b5bb3462c96", - "symbol": "DOGECOIN", - "decimals": 8, - "name": "RagingElonMarsCoin", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xf257a2783f6633a149b5966e32432b5bb3462c96.png", - "aggregators": [ - "CoinGecko", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x19af07b52e5faa0c2b1e11721c52aa23172fe2f5": { - "address": "0x19af07b52e5faa0c2b1e11721c52aa23172fe2f5", - "symbol": "MEMES", - "decimals": 9, - "name": "Memes Street", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x19af07b52e5faa0c2b1e11721c52aa23172fe2f5.png", - "aggregators": [ - "CoinGecko", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x2c0687215aca7f5e2792d956e170325e92a02aca": { - "address": "0x2c0687215aca7f5e2792d956e170325e92a02aca", - "symbol": "ESS", - "decimals": 18, - "name": "Earth 2 Essence", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x2c0687215aca7f5e2792d956e170325e92a02aca.png", - "aggregators": [ - "CoinGecko", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0xc65d8d96cdddb31328186efa113a460b0af9ec63": { - "address": "0xc65d8d96cdddb31328186efa113a460b0af9ec63", - "symbol": "PELL", - "decimals": 18, - "name": "Pell Network Token", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xc65d8d96cdddb31328186efa113a460b0af9ec63.png", - "aggregators": ["CoinMarketCap", "Rubic", "Squid", "Sonarwatch"], - "occurrences": 4 - }, - "0x2001f2a0cf801ecfda622f6c28fb6e10d803d969": { - "address": "0x2001f2a0cf801ecfda622f6c28fb6e10d803d969", - "symbol": "CLT", - "decimals": 8, - "name": "CoinLoan", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x2001f2a0cf801ecfda622f6c28fb6e10d803d969.png", - "aggregators": [ - "CoinMarketCap", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x92d5942f468447f1f21c2092580f15544923b434": { - "address": "0x92d5942f468447f1f21c2092580f15544923b434", - "symbol": "VSTR", - "decimals": 18, - "name": "Vestra DAO", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x92d5942f468447f1f21c2092580f15544923b434.png", - "aggregators": [ - "CoinGecko", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0xddfbe9173c90deb428fdd494cb16125653172919": { - "address": "0xddfbe9173c90deb428fdd494cb16125653172919", - "symbol": "SWK", - "decimals": 18, - "name": "Sowaka", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xddfbe9173c90deb428fdd494cb16125653172919.png", - "aggregators": [ - "CoinGecko", - "LiFi", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0xd075e95423c5c4ba1e122cae0f4cdfa19b82881b": { - "address": "0xd075e95423c5c4ba1e122cae0f4cdfa19b82881b", - "symbol": "WPE", - "decimals": 18, - "name": "OpesAI", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xd075e95423c5c4ba1e122cae0f4cdfa19b82881b.png", - "aggregators": [ - "CoinGecko", - "LiFi", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0xec463d00aa4da76fb112cd2e4ac1c6bef02da6ea": { - "address": "0xec463d00aa4da76fb112cd2e4ac1c6bef02da6ea", - "symbol": "HEU", - "decimals": 18, - "name": "Heurist", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xec463d00aa4da76fb112cd2e4ac1c6bef02da6ea.png", - "aggregators": [ - "CoinMarketCap", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0xd536e7a9543cf9867a580b45cec7f748a1fe11ec": { - "address": "0xd536e7a9543cf9867a580b45cec7f748a1fe11ec", - "symbol": "ORX", - "decimals": 18, - "name": "Ouroboros", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xd536e7a9543cf9867a580b45cec7f748a1fe11ec.png", - "aggregators": [ - "CoinGecko", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0xd888a5460fffa4b14340dd9fe2710cbabd520659": { - "address": "0xd888a5460fffa4b14340dd9fe2710cbabd520659", - "symbol": "KOL", - "decimals": 18, - "name": "ProtoKOLs", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xd888a5460fffa4b14340dd9fe2710cbabd520659.png", - "aggregators": [ - "CoinGecko", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x5959e94661e1203e0c8ef84095a7846bacc6a94f": { - "address": "0x5959e94661e1203e0c8ef84095a7846bacc6a94f", - "symbol": "ZKAI", - "decimals": 18, - "name": "ZKCrypt AI", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x5959e94661e1203e0c8ef84095a7846bacc6a94f.png", - "aggregators": [ - "CoinMarketCap", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0xb2e0f591191ee5f6fb8a7f1777a733b6aa92bb55": { - "address": "0xb2e0f591191ee5f6fb8a7f1777a733b6aa92bb55", - "symbol": "WOPE", - "decimals": 9, - "name": "WojakPepe", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xb2e0f591191ee5f6fb8a7f1777a733b6aa92bb55.png", - "aggregators": [ - "CoinGecko", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0xaa7d24c3e14491abac746a98751a4883e9b70843": { - "address": "0xaa7d24c3e14491abac746a98751a4883e9b70843", - "symbol": "GURU", - "decimals": 18, - "name": "Guru", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xaa7d24c3e14491abac746a98751a4883e9b70843.png", - "aggregators": [ - "CoinGecko", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x6602e9319f2c5ec0ba31ffcdc4301d7ef03b709e": { - "address": "0x6602e9319f2c5ec0ba31ffcdc4301d7ef03b709e", - "symbol": "WBRGE", - "decimals": 18, - "name": "Wrapped OrdBridge", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x6602e9319f2c5ec0ba31ffcdc4301d7ef03b709e.png", - "aggregators": [ - "CoinMarketCap", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x4e51a6b3cc6d5ae69a0d44db9de846aeb5a582dd": { - "address": "0x4e51a6b3cc6d5ae69a0d44db9de846aeb5a582dd", - "symbol": "GYOZA", - "decimals": 9, - "name": "Gyoza", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x4e51a6b3cc6d5ae69a0d44db9de846aeb5a582dd.png", - "aggregators": [ - "CoinGecko", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0xc3d2b3e23855001508e460a6dbe9f9e3116201af": { - "address": "0xc3d2b3e23855001508e460a6dbe9f9e3116201af", - "symbol": "MARS", - "decimals": 9, - "name": "GATEWAY TO MARS", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xc3d2b3e23855001508e460a6dbe9f9e3116201af.png", - "aggregators": [ - "CoinGecko", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0xfe3f988a90dea3ee537bb43ec1aca7337a15d002": { - "address": "0xfe3f988a90dea3ee537bb43ec1aca7337a15d002", - "symbol": "PHX", - "decimals": 18, - "name": "PHOENIX", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xfe3f988a90dea3ee537bb43ec1aca7337a15d002.png", - "aggregators": [ - "CoinGecko", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x164f12c8d7d16b905cc4f11e819a9fc5b183ef71": { - "address": "0x164f12c8d7d16b905cc4f11e819a9fc5b183ef71", - "symbol": "DMP", - "decimals": 9, - "name": "Dmarketplace", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x164f12c8d7d16b905cc4f11e819a9fc5b183ef71.png", - "aggregators": [ - "CoinGecko", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x3106a0a076bedae847652f42ef07fd58589e001f": { - "address": "0x3106a0a076bedae847652f42ef07fd58589e001f", - "symbol": "ADS", - "decimals": 18, - "name": "Alkimi", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x3106a0a076bedae847652f42ef07fd58589e001f.png", - "aggregators": [ - "CoinMarketCap", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0xf0430bd971ee4a63674a2103e21129e9ccf29686": { - "address": "0xf0430bd971ee4a63674a2103e21129e9ccf29686", - "symbol": "GARY", - "decimals": 9, - "name": "Elons Pet Snail", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xf0430bd971ee4a63674a2103e21129e9ccf29686.png", - "aggregators": [ - "CoinGecko", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0xbbbb2d4d765c1e455e4896a64ba3883e914abbbb": { - "address": "0xbbbb2d4d765c1e455e4896a64ba3883e914abbbb", - "symbol": "BMP", - "decimals": 18, - "name": "BitmapPunks", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xbbbb2d4d765c1e455e4896a64ba3883e914abbbb.png", - "aggregators": [ - "CoinGecko", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x9a594f5ed8d119b73525dfe23adbceca77fd828d": { - "address": "0x9a594f5ed8d119b73525dfe23adbceca77fd828d", - "symbol": "TRIANGLE", - "decimals": 18, - "name": "dancing triangle", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x9a594f5ed8d119b73525dfe23adbceca77fd828d.png", - "aggregators": [ - "CoinGecko", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0xe69ccaaaea33ebfe5b76e0dd373cd9a1a31fd410": { - "address": "0xe69ccaaaea33ebfe5b76e0dd373cd9a1a31fd410", - "symbol": "PNUT", - "decimals": 9, - "name": "Peanut", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xe69ccaaaea33ebfe5b76e0dd373cd9a1a31fd410.png", - "aggregators": [ - "CoinMarketCap", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x4957805230831401caad5b690aa138143b711358": { - "address": "0x4957805230831401caad5b690aa138143b711358", - "symbol": "DORA", - "decimals": 18, - "name": "Dora Factory", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x4957805230831401caad5b690aa138143b711358.png", - "aggregators": [ - "CoinGecko", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x362033a25b37603d4c99442501fa7b2852ddb435": { - "address": "0x362033a25b37603d4c99442501fa7b2852ddb435", - "symbol": "MATRIX", - "decimals": 9, - "name": "MATRIX", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x362033a25b37603d4c99442501fa7b2852ddb435.png", - "aggregators": [ - "CoinGecko", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0xe34ba9cbdf45c9d5dcc80e96424337365b6fe889": { - "address": "0xe34ba9cbdf45c9d5dcc80e96424337365b6fe889", - "symbol": "MEDUSA", - "decimals": 9, - "name": "Medusa", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xe34ba9cbdf45c9d5dcc80e96424337365b6fe889.png", - "aggregators": [ - "CoinGecko", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x109ba5f0230b7b39e4a8ab56e7361db89fa0e108": { - "address": "0x109ba5f0230b7b39e4a8ab56e7361db89fa0e108", - "symbol": "TURBO", - "decimals": 18, - "name": "TURBO WIN", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x109ba5f0230b7b39e4a8ab56e7361db89fa0e108.png", - "aggregators": [ - "CoinGecko", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x079d0150cc21e127898db0f51f18ca54db56b1ba": { - "address": "0x079d0150cc21e127898db0f51f18ca54db56b1ba", - "symbol": "BTCACT", - "decimals": 9, - "name": "BITCOIN Act", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x079d0150cc21e127898db0f51f18ca54db56b1ba.png", - "aggregators": [ - "CoinGecko", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x6ee2f71049dde9a93b7c0ee1091b72acf9b46810": { - "address": "0x6ee2f71049dde9a93b7c0ee1091b72acf9b46810", - "symbol": "MERC", - "decimals": 18, - "name": "Liquid Mercury", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x6ee2f71049dde9a93b7c0ee1091b72acf9b46810.png", - "aggregators": [ - "CoinMarketCap", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x270ca21eb1a37cfe0e9a0e7582d8f897e013cdff": { - "address": "0x270ca21eb1a37cfe0e9a0e7582d8f897e013cdff", - "symbol": "DOGIUS", - "decimals": 18, - "name": "Dogius Maximus", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x270ca21eb1a37cfe0e9a0e7582d8f897e013cdff.png", - "aggregators": [ - "CoinGecko", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x96c645d3d3706f793ef52c19bbace441900ed47d": { - "address": "0x96c645d3d3706f793ef52c19bbace441900ed47d", - "symbol": "MPS", - "decimals": 0, - "name": "Mt Pelerin Shares", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x96c645d3d3706f793ef52c19bbace441900ed47d.png", - "aggregators": [ - "CoinMarketCap", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0xa150376112dd24e873086b51347eddd5f2e147d5": { - "address": "0xa150376112dd24e873086b51347eddd5f2e147d5", - "symbol": "GRIX", - "decimals": 18, - "name": "Grix", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xa150376112dd24e873086b51347eddd5f2e147d5.png", - "aggregators": [ - "CoinGecko", - "LiFi", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x8052327f1baf94a9dc8b26b9100f211ee3774f54": { - "address": "0x8052327f1baf94a9dc8b26b9100f211ee3774f54", - "symbol": "ATD", - "decimals": 18, - "name": "A2DAO", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x8052327f1baf94a9dc8b26b9100f211ee3774f54.png", - "aggregators": [ - "CoinGecko", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x6a43795941113c2f58eb487001f4f8ee74b6938a": { - "address": "0x6a43795941113c2f58eb487001f4f8ee74b6938a", - "symbol": "STABUL", - "decimals": 18, - "name": "Stabull Finance", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x6a43795941113c2f58eb487001f4f8ee74b6938a.png", - "aggregators": ["CoinMarketCap", "LiFi", "Rubic", "Sonarwatch"], - "occurrences": 4 - }, - "0xdd16ec0f66e54d453e6756713e533355989040e4": { - "address": "0xdd16ec0f66e54d453e6756713e533355989040e4", - "symbol": "TEN", - "decimals": 18, - "name": "Tokenomy", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xdd16ec0f66e54d453e6756713e533355989040e4.png", - "aggregators": [ - "CoinMarketCap", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x5fe72ed557d8a02fff49b3b826792c765d5ce162": { - "address": "0x5fe72ed557d8a02fff49b3b826792c765d5ce162", - "symbol": "SHEZMU", - "decimals": 18, - "name": "Shezmu", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x5fe72ed557d8a02fff49b3b826792c765d5ce162.png", - "aggregators": [ - "CoinGecko", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x47fe8ab9ee47dd65c24df52324181790b9f47efc": { - "address": "0x47fe8ab9ee47dd65c24df52324181790b9f47efc", - "symbol": "AWETH", - "decimals": 18, - "name": "Alpha WETH Vault", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x47fe8ab9ee47dd65c24df52324181790b9f47efc.png", - "aggregators": ["CoinGecko", "LiFi", "Rubic", "Sonarwatch"], - "occurrences": 4 - }, - "0x1e2f15302b90edde696593607b6bd444b64e8f02": { - "address": "0x1e2f15302b90edde696593607b6bd444b64e8f02", - "symbol": "SHIRYO-INU", - "decimals": 9, - "name": "Shiryo", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x1e2f15302b90edde696593607b6bd444b64e8f02.png", - "aggregators": [ - "CoinMarketCap", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x0ec78ed49c2d27b315d462d43b5bab94d2c79bf8": { - "address": "0x0ec78ed49c2d27b315d462d43b5bab94d2c79bf8", - "symbol": "MEOW", - "decimals": 18, - "name": "MEOW", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x0ec78ed49c2d27b315d462d43b5bab94d2c79bf8.png", - "aggregators": [ - "CoinMarketCap", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0xb113c6cf239f60d380359b762e95c13817275277": { - "address": "0xb113c6cf239f60d380359b762e95c13817275277", - "symbol": "BMEX", - "decimals": 6, - "name": "BitMEX", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xb113c6cf239f60d380359b762e95c13817275277.png", - "aggregators": [ - "CoinMarketCap", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x3914bdb4130306f80f5d8ee099c180442d19680d": { - "address": "0x3914bdb4130306f80f5d8ee099c180442d19680d", - "symbol": "DEPLOY", - "decimals": 18, - "name": "Deployyyyer", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x3914bdb4130306f80f5d8ee099c180442d19680d.png", - "aggregators": [ - "CoinGecko", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0xb131f337c45d386ceec234e194b2663d5c3d9dcf": { - "address": "0xb131f337c45d386ceec234e194b2663d5c3d9dcf", - "symbol": "ICOM", - "decimals": 18, - "name": "iCommunity", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xb131f337c45d386ceec234e194b2663d5c3d9dcf.png", - "aggregators": [ - "CoinMarketCap", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x310c8f00b9de3c31ab95ea68feb6c877538f7947": { - "address": "0x310c8f00b9de3c31ab95ea68feb6c877538f7947", - "symbol": "UNDEAD", - "decimals": 18, - "name": "Undead Blocks", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x310c8f00b9de3c31ab95ea68feb6c877538f7947.png", - "aggregators": [ - "CoinMarketCap", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x78132543d8e20d2417d8a07d9ae199d458a0d581": { - "address": "0x78132543d8e20d2417d8a07d9ae199d458a0d581", - "symbol": "LINU", - "decimals": 18, - "name": "Luna Inu", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x78132543d8e20d2417d8a07d9ae199d458a0d581.png", - "aggregators": [ - "CoinGecko", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0xac9518ba93eeb2336a03137d254d8cc2e4d0fa38": { - "address": "0xac9518ba93eeb2336a03137d254d8cc2e4d0fa38", - "symbol": "EDUM", - "decimals": 18, - "name": "EDUM", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xac9518ba93eeb2336a03137d254d8cc2e4d0fa38.png", - "aggregators": [ - "CoinMarketCap", - "LiFi", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x9b2b931d6ab97b6a887b2c5d8529537e6fe73ebe": { - "address": "0x9b2b931d6ab97b6a887b2c5d8529537e6fe73ebe", - "symbol": "ALLIN", - "decimals": 9, - "name": "All In", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x9b2b931d6ab97b6a887b2c5d8529537e6fe73ebe.png", - "aggregators": [ - "CoinMarketCap", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x2d886570a0da04885bfd6eb48ed8b8ff01a0eb7e": { - "address": "0x2d886570a0da04885bfd6eb48ed8b8ff01a0eb7e", - "symbol": "BCB", - "decimals": 9, - "name": "Blockchain Bets", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x2d886570a0da04885bfd6eb48ed8b8ff01a0eb7e.png", - "aggregators": [ - "CoinMarketCap", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0xeff49b0f56a97c7fd3b51f0ecd2ce999a7861420": { - "address": "0xeff49b0f56a97c7fd3b51f0ecd2ce999a7861420", - "symbol": "FOFAR", - "decimals": 9, - "name": "Fofar", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xeff49b0f56a97c7fd3b51f0ecd2ce999a7861420.png", - "aggregators": [ - "CoinGecko", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0xf7168c8abb0ff80116413a8d95396bbdc318a3ff": { - "address": "0xf7168c8abb0ff80116413a8d95396bbdc318a3ff", - "symbol": "KEKE", - "decimals": 7, - "name": "KEK", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xf7168c8abb0ff80116413a8d95396bbdc318a3ff.png", - "aggregators": [ - "CoinMarketCap", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0xe0a458bf4acf353cb45e211281a334bb1d837885": { - "address": "0xe0a458bf4acf353cb45e211281a334bb1d837885", - "symbol": "4CHAN", - "decimals": 9, - "name": "4Chan", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xe0a458bf4acf353cb45e211281a334bb1d837885.png", - "aggregators": [ - "CoinMarketCap", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x370a366f402e2e41cdbbe54ecec12aae0cce1955": { - "address": "0x370a366f402e2e41cdbbe54ecec12aae0cce1955", - "symbol": "TOAD", - "decimals": 18, - "name": "Toad Killer", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x370a366f402e2e41cdbbe54ecec12aae0cce1955.png", - "aggregators": [ - "CoinMarketCap", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x7a786dac1f315c8a0e9962172ad8ae0c04d9c9b6": { - "address": "0x7a786dac1f315c8a0e9962172ad8ae0c04d9c9b6", - "symbol": "MEMD", - "decimals": 18, - "name": "MemeDAO", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x7a786dac1f315c8a0e9962172ad8ae0c04d9c9b6.png", - "aggregators": [ - "CoinMarketCap", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0xa62894d5196bc44e4c3978400ad07e7b30352372": { - "address": "0xa62894d5196bc44e4c3978400ad07e7b30352372", - "symbol": "X", - "decimals": 9, - "name": "X", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xa62894d5196bc44e4c3978400ad07e7b30352372.png", - "aggregators": [ - "CoinMarketCap", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x07e0edf8ce600fb51d44f51e3348d77d67f298ae": { - "address": "0x07e0edf8ce600fb51d44f51e3348d77d67f298ae", - "symbol": "XRP", - "decimals": 8, - "name": "HarryPotterObamaPacMan8Inu", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x07e0edf8ce600fb51d44f51e3348d77d67f298ae.png", - "aggregators": [ - "CoinMarketCap", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x5362ca75aa3c0e714bc628296640c43dc5cb9ed6": { - "address": "0x5362ca75aa3c0e714bc628296640c43dc5cb9ed6", - "symbol": "HOSHI", - "decimals": 9, - "name": "Dejitaru Hoshi", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x5362ca75aa3c0e714bc628296640c43dc5cb9ed6.png", - "aggregators": [ - "CoinMarketCap", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x8365332d4baf69bc24ca2401b90c3853ab9f818e": { - "address": "0x8365332d4baf69bc24ca2401b90c3853ab9f818e", - "symbol": "WOLF", - "decimals": 18, - "name": "Wolf of Wall Street", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x8365332d4baf69bc24ca2401b90c3853ab9f818e.png", - "aggregators": [ - "CoinMarketCap", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0xd87996ff3d06858bfc20989aef50cc5fcd4d84ca": { - "address": "0xd87996ff3d06858bfc20989aef50cc5fcd4d84ca", - "symbol": "GOLDEN", - "decimals": 9, - "name": "Golden Inu", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xd87996ff3d06858bfc20989aef50cc5fcd4d84ca.png", - "aggregators": [ - "CoinMarketCap", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0xb551b43af192965f74e3dfaa476c890b403cad95": { - "address": "0xb551b43af192965f74e3dfaa476c890b403cad95", - "symbol": "DATA", - "decimals": 9, - "name": "Databot", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xb551b43af192965f74e3dfaa476c890b403cad95.png", - "aggregators": [ - "Metamask", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0xff836a5821e69066c87e268bc51b849fab94240c": { - "address": "0xff836a5821e69066c87e268bc51b849fab94240c", - "symbol": "SMURFCAT", - "decimals": 18, - "name": "Real Smurf Cat", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xff836a5821e69066c87e268bc51b849fab94240c.png", - "aggregators": [ - "CoinMarketCap", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x9778ac3d5a2f916aa9abf1eb85c207d990ca2655": { - "address": "0x9778ac3d5a2f916aa9abf1eb85c207d990ca2655", - "symbol": "OGSM", - "decimals": 18, - "name": "OG SMINEM", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x9778ac3d5a2f916aa9abf1eb85c207d990ca2655.png", - "aggregators": [ - "CoinMarketCap", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0xf538296e7dd856af7044deec949489e2f25705bc": { - "address": "0xf538296e7dd856af7044deec949489e2f25705bc", - "symbol": "MILK", - "decimals": 18, - "name": "Illumicati", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xf538296e7dd856af7044deec949489e2f25705bc.png", - "aggregators": [ - "CoinGecko", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x6034e0d6999741f07cb6fb1162cbaa46a1d33d36": { - "address": "0x6034e0d6999741f07cb6fb1162cbaa46a1d33d36", - "symbol": "VITA-FAST", - "decimals": 18, - "name": "Molecules of Korolchuk IP NFT", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x6034e0d6999741f07cb6fb1162cbaa46a1d33d36.png", - "aggregators": [ - "CoinGecko", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0xcab254f1a32343f11ab41fbde90ecb410cde348a": { - "address": "0xcab254f1a32343f11ab41fbde90ecb410cde348a", - "symbol": "FROGE", - "decimals": 18, - "name": "Froge", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xcab254f1a32343f11ab41fbde90ecb410cde348a.png", - "aggregators": [ - "CoinGecko", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x2d9d7c64f6c00e16c28595ec4ebe4065ef3a250b": { - "address": "0x2d9d7c64f6c00e16c28595ec4ebe4065ef3a250b", - "symbol": "GFY", - "decimals": 9, - "name": "go fu k yourself", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x2d9d7c64f6c00e16c28595ec4ebe4065ef3a250b.png", - "aggregators": [ - "CoinGecko", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x96e61422b6a9ba0e068b6c5add4ffabc6a4aae27": { - "address": "0x96e61422b6a9ba0e068b6c5add4ffabc6a4aae27", - "symbol": "IBEUR", - "decimals": 18, - "name": "Iron Bank EUR", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x96e61422b6a9ba0e068b6c5add4ffabc6a4aae27.png", - "aggregators": [ - "CoinGecko", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0xcd4ee6c8052df6742e4b342cf720ff3ac74f415e": { - "address": "0xcd4ee6c8052df6742e4b342cf720ff3ac74f415e", - "symbol": "STELAI", - "decimals": 9, - "name": "StellaryAI", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xcd4ee6c8052df6742e4b342cf720ff3ac74f415e.png", - "aggregators": [ - "CoinGecko", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x33abe795f9c1b6136608c36db211bd7590f5fdae": { - "address": "0x33abe795f9c1b6136608c36db211bd7590f5fdae", - "symbol": "WOLF", - "decimals": 18, - "name": "Landwolf", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x33abe795f9c1b6136608c36db211bd7590f5fdae.png", - "aggregators": [ - "CoinGecko", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0xb60fdf036f2ad584f79525b5da76c5c531283a1b": { - "address": "0xb60fdf036f2ad584f79525b5da76c5c531283a1b", - "symbol": "NEMO", - "decimals": 9, - "name": "Nemo Sum", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xb60fdf036f2ad584f79525b5da76c5c531283a1b.png", - "aggregators": [ - "CoinGecko", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x8cedb0680531d26e62abdbd0f4c5428b7fdc26d5": { - "address": "0x8cedb0680531d26e62abdbd0f4c5428b7fdc26d5", - "symbol": "MICRO", - "decimals": 18, - "name": "Micro GPT", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x8cedb0680531d26e62abdbd0f4c5428b7fdc26d5.png", - "aggregators": [ - "CoinMarketCap", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x740df024ce73f589acd5e8756b377ef8c6558bab": { - "address": "0x740df024ce73f589acd5e8756b377ef8c6558bab", - "symbol": "HLG", - "decimals": 18, - "name": "Holograph", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x740df024ce73f589acd5e8756b377ef8c6558bab.png", - "aggregators": [ - "CoinGecko", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x3b37a9caf74ead14e521d46af0bf00737d827828": { - "address": "0x3b37a9caf74ead14e521d46af0bf00737d827828", - "symbol": "HOPE", - "decimals": 18, - "name": "History of Pepe", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x3b37a9caf74ead14e521d46af0bf00737d827828.png", - "aggregators": [ - "CoinGecko", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x0d86883faf4ffd7aeb116390af37746f45b6f378": { - "address": "0x0d86883faf4ffd7aeb116390af37746f45b6f378", - "symbol": "USD3", - "decimals": 18, - "name": "Web 3 Dollar", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x0d86883faf4ffd7aeb116390af37746f45b6f378.png", - "aggregators": [ - "CoinGecko", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x6987e0304d1b26a311e68e3f3da26b1c885a4e83": { - "address": "0x6987e0304d1b26a311e68e3f3da26b1c885a4e83", - "symbol": "KAERU", - "decimals": 18, - "name": "Kaeru The Frog", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x6987e0304d1b26a311e68e3f3da26b1c885a4e83.png", - "aggregators": [ - "CoinGecko", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0xd8e8438cf7beed13cfabc82f300fb6573962c9e3": { - "address": "0xd8e8438cf7beed13cfabc82f300fb6573962c9e3", - "symbol": "HONK", - "decimals": 9, - "name": "Pepoclown", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xd8e8438cf7beed13cfabc82f300fb6573962c9e3.png", - "aggregators": [ - "CoinMarketCap", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x7d4a23832fad83258b32ce4fd3109ceef4332af4": { - "address": "0x7d4a23832fad83258b32ce4fd3109ceef4332af4", - "symbol": "STONKS", - "decimals": 9, - "name": "Stonks on ETH", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x7d4a23832fad83258b32ce4fd3109ceef4332af4.png", - "aggregators": [ - "CoinMarketCap", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0xd12a99dbc40036cec6f1b776dccd2d36f5953b94": { - "address": "0xd12a99dbc40036cec6f1b776dccd2d36f5953b94", - "symbol": "DRAGGY", - "decimals": 9, - "name": "Draggy CTO", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xd12a99dbc40036cec6f1b776dccd2d36f5953b94.png", - "aggregators": [ - "CoinMarketCap", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0xfcd7ccee4071aa4ecfac1683b7cc0afecaf42a36": { - "address": "0xfcd7ccee4071aa4ecfac1683b7cc0afecaf42a36", - "symbol": "BLAZE", - "decimals": 18, - "name": "Titan Blaze", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xfcd7ccee4071aa4ecfac1683b7cc0afecaf42a36.png", - "aggregators": [ - "CoinGecko", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0xf3c3745894d979f8f85761bd060520bddbc464e9": { - "address": "0xf3c3745894d979f8f85761bd060520bddbc464e9", - "symbol": "LION", - "decimals": 9, - "name": "King Of Meme", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xf3c3745894d979f8f85761bd060520bddbc464e9.png", - "aggregators": [ - "CoinMarketCap", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x790814cd782983fab4d7b92cf155187a865d9f18": { - "address": "0x790814cd782983fab4d7b92cf155187a865d9f18", - "symbol": "MATT", - "decimals": 9, - "name": "Matt Furie", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x790814cd782983fab4d7b92cf155187a865d9f18.png", - "aggregators": [ - "CoinMarketCap", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x89fd2d8fd8d937f55c89b7da3ceed44fa27e4a81": { - "address": "0x89fd2d8fd8d937f55c89b7da3ceed44fa27e4a81", - "symbol": "BUG", - "decimals": 9, - "name": "Bug", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x89fd2d8fd8d937f55c89b7da3ceed44fa27e4a81.png", - "aggregators": [ - "CoinGecko", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0xba2ae4e0a9c6ecaf172015aa2cdd70a21f5a290b": { - "address": "0xba2ae4e0a9c6ecaf172015aa2cdd70a21f5a290b", - "symbol": "IRO", - "decimals": 9, - "name": "Iro Chan", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xba2ae4e0a9c6ecaf172015aa2cdd70a21f5a290b.png", - "aggregators": [ - "CoinMarketCap", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x283344eea472f0fe04d6f722595a2fffefe1901a": { - "address": "0x283344eea472f0fe04d6f722595a2fffefe1901a", - "symbol": "CODE", - "decimals": 13, - "name": "Code Token", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x283344eea472f0fe04d6f722595a2fffefe1901a.png", - "aggregators": [ - "CoinMarketCap", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0xa4bc2b90743294e5e6fd3321a9a131947f7785db": { - "address": "0xa4bc2b90743294e5e6fd3321a9a131947f7785db", - "symbol": "JEST", - "decimals": 9, - "name": "Jester", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xa4bc2b90743294e5e6fd3321a9a131947f7785db.png", - "aggregators": [ - "CoinGecko", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x2e6a60492fb5b58f5b5d08c7cafc75e740e6dc8e": { - "address": "0x2e6a60492fb5b58f5b5d08c7cafc75e740e6dc8e", - "symbol": "TSUJI", - "decimals": 9, - "name": "Tsutsuji Doge s Sister", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x2e6a60492fb5b58f5b5d08c7cafc75e740e6dc8e.png", - "aggregators": [ - "CoinGecko", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x1001271083c249bd771e1bb76c22d935809a61ee": { - "address": "0x1001271083c249bd771e1bb76c22d935809a61ee", - "symbol": "FUKU", - "decimals": 9, - "name": "Fuku Kun", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x1001271083c249bd771e1bb76c22d935809a61ee.png", - "aggregators": [ - "CoinMarketCap", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0xed89fc0f41d8be2c98b13b7e3cd3e876d73f1d30": { - "address": "0xed89fc0f41d8be2c98b13b7e3cd3e876d73f1d30", - "symbol": "GOU", - "decimals": 9, - "name": "Gou", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xed89fc0f41d8be2c98b13b7e3cd3e876d73f1d30.png", - "aggregators": [ - "CoinMarketCap", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x6a159543abfc7baf816fdbc99efd48e4ee7acc63": { - "address": "0x6a159543abfc7baf816fdbc99efd48e4ee7acc63", - "symbol": "FUKU", - "decimals": 9, - "name": "FUKU", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x6a159543abfc7baf816fdbc99efd48e4ee7acc63.png", - "aggregators": [ - "CoinGecko", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x3fa55eb91be2c5d72890da11a4c0269e7f786555": { - "address": "0x3fa55eb91be2c5d72890da11a4c0269e7f786555", - "symbol": "PROPHET", - "decimals": 18, - "name": "Prophet of Ethereum", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x3fa55eb91be2c5d72890da11a4c0269e7f786555.png", - "aggregators": [ - "CoinGecko", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0xc0cfbe1602dd586349f60e4681bf4badca584ec9": { - "address": "0xc0cfbe1602dd586349f60e4681bf4badca584ec9", - "symbol": "E", - "decimals": 9, - "name": "Etheism", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xc0cfbe1602dd586349f60e4681bf4badca584ec9.png", - "aggregators": [ - "CoinGecko", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0xcdb8fc4ef27dfeaba9b31899a9d165398bf97b9e": { - "address": "0xcdb8fc4ef27dfeaba9b31899a9d165398bf97b9e", - "symbol": "ETHOS", - "decimals": 18, - "name": "Ethos", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xcdb8fc4ef27dfeaba9b31899a9d165398bf97b9e.png", - "aggregators": [ - "CoinGecko", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0xdb04fb08378129621634c151e9b61fef56947920": { - "address": "0xdb04fb08378129621634c151e9b61fef56947920", - "symbol": "LGNDX", - "decimals": 18, - "name": "LegendX", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xdb04fb08378129621634c151e9b61fef56947920.png", - "aggregators": [ - "CoinGecko", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0xa4fb6e1781fbcc921df51352af4cc83ff6c1308f": { - "address": "0xa4fb6e1781fbcc921df51352af4cc83ff6c1308f", - "symbol": "DOGE", - "decimals": 9, - "name": "Department Of Government Efficiency", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xa4fb6e1781fbcc921df51352af4cc83ff6c1308f.png", - "aggregators": [ - "CoinGecko", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x1d4fb9bfa1967be6ca74819e28b98c2aa5ae8b59": { - "address": "0x1d4fb9bfa1967be6ca74819e28b98c2aa5ae8b59", - "symbol": "NEIREI", - "decimals": 9, - "name": "Neirei", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x1d4fb9bfa1967be6ca74819e28b98c2aa5ae8b59.png", - "aggregators": [ - "CoinGecko", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x0db56f603e754f3539157e2b207eff10a4ebd641": { - "address": "0x0db56f603e754f3539157e2b207eff10a4ebd641", - "symbol": "DCAY", - "decimals": 9, - "name": "Whispers Of Decay", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x0db56f603e754f3539157e2b207eff10a4ebd641.png", - "aggregators": [ - "CoinGecko", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x53229609f907be495704fca99ad0835c5f3abd3a": { - "address": "0x53229609f907be495704fca99ad0835c5f3abd3a", - "symbol": "RINTARO", - "decimals": 9, - "name": "Rintaro", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x53229609f907be495704fca99ad0835c5f3abd3a.png", - "aggregators": [ - "CoinGecko", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0xcc7ed2ab6c3396ddbc4316d2d7c1b59ff9d2091f": { - "address": "0xcc7ed2ab6c3396ddbc4316d2d7c1b59ff9d2091f", - "symbol": "HYDRA", - "decimals": 18, - "name": "HYDRA", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xcc7ed2ab6c3396ddbc4316d2d7c1b59ff9d2091f.png", - "aggregators": [ - "CoinGecko", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x85bea4ee627b795a79583fcede229e198aa57055": { - "address": "0x85bea4ee627b795a79583fcede229e198aa57055", - "symbol": "MARVIN", - "decimals": 18, - "name": "Marvin Inu", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x85bea4ee627b795a79583fcede229e198aa57055.png", - "aggregators": [ - "CoinGecko", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x240cd7b53d364a208ed41f8ced4965d11f571b7a": { - "address": "0x240cd7b53d364a208ed41f8ced4965d11f571b7a", - "symbol": "DOGGO", - "decimals": 9, - "name": "Doggo", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x240cd7b53d364a208ed41f8ced4965d11f571b7a.png", - "aggregators": [ - "CoinGecko", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0xedc3be0080f65c628964f44ba3f2b6057e60f8dc": { - "address": "0xedc3be0080f65c628964f44ba3f2b6057e60f8dc", - "symbol": "DASH", - "decimals": 18, - "name": "DASH", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xedc3be0080f65c628964f44ba3f2b6057e60f8dc.png", - "aggregators": [ - "CoinGecko", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0xb8d6196d71cdd7d90a053a7769a077772aaac464": { - "address": "0xb8d6196d71cdd7d90a053a7769a077772aaac464", - "symbol": "MARS", - "decimals": 9, - "name": "Mars", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xb8d6196d71cdd7d90a053a7769a077772aaac464.png", - "aggregators": [ - "CoinMarketCap", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x3566c8ee9780245e974e759a7716ea6ba0702588": { - "address": "0x3566c8ee9780245e974e759a7716ea6ba0702588", - "symbol": "EVA", - "decimals": 9, - "name": "eVa ai", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x3566c8ee9780245e974e759a7716ea6ba0702588.png", - "aggregators": [ - "CoinMarketCap", - "LiFi", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x616bbb932602a9c9871e99806bdb63c9e6da9f8b": { - "address": "0x616bbb932602a9c9871e99806bdb63c9e6da9f8b", - "symbol": "CNET", - "decimals": 18, - "name": "ChainNet", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x616bbb932602a9c9871e99806bdb63c9e6da9f8b.png", - "aggregators": [ - "CoinGecko", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x0da2082905583cedfffd4847879d0f1cf3d25c36": { - "address": "0x0da2082905583cedfffd4847879d0f1cf3d25c36", - "symbol": "MELO", - "decimals": 9, - "name": "Melo", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x0da2082905583cedfffd4847879d0f1cf3d25c36.png", - "aggregators": [ - "CoinMarketCap", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x284b25d8f199125da962abc9ee6e6b1b6715cae3": { - "address": "0x284b25d8f199125da962abc9ee6e6b1b6715cae3", - "symbol": "SNAP", - "decimals": 9, - "name": "Snap first space coin", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x284b25d8f199125da962abc9ee6e6b1b6715cae3.png", - "aggregators": [ - "CoinGecko", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x355c46eebbcbe1fc2844ade63ee565204addd37c": { - "address": "0x355c46eebbcbe1fc2844ade63ee565204addd37c", - "symbol": "URANUS", - "decimals": 9, - "name": "URANUS", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x355c46eebbcbe1fc2844ade63ee565204addd37c.png", - "aggregators": [ - "CoinGecko", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0xb29e475b69f843046a757747943c00dce8a3d982": { - "address": "0xb29e475b69f843046a757747943c00dce8a3d982", - "symbol": "SPCTR", - "decimals": 9, - "name": "Spectre", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xb29e475b69f843046a757747943c00dce8a3d982.png", - "aggregators": [ - "CoinGecko", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x6969e5cfe7578ac5f06d313c1a25578927a5bbc9": { - "address": "0x6969e5cfe7578ac5f06d313c1a25578927a5bbc9", - "symbol": "MORTI", - "decimals": 18, - "name": "Morti", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x6969e5cfe7578ac5f06d313c1a25578927a5bbc9.png", - "aggregators": [ - "CoinGecko", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0xff284f2e8cce4cd2f4537d8a9369482b545908fb": { - "address": "0xff284f2e8cce4cd2f4537d8a9369482b545908fb", - "symbol": "NODE", - "decimals": 9, - "name": "NodelyAI", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xff284f2e8cce4cd2f4537d8a9369482b545908fb.png", - "aggregators": [ - "CoinMarketCap", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x5640e0560e6afd6a9f4ddb41230d0201d181fea7": { - "address": "0x5640e0560e6afd6a9f4ddb41230d0201d181fea7", - "symbol": "DMAGA", - "decimals": 9, - "name": "dark maga", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x5640e0560e6afd6a9f4ddb41230d0201d181fea7.png", - "aggregators": [ - "CoinGecko", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x582dd5e7c8af79d45a96de4af5d1152a061abb50": { - "address": "0x582dd5e7c8af79d45a96de4af5d1152a061abb50", - "symbol": "RIZZ", - "decimals": 9, - "name": "Rizz", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x582dd5e7c8af79d45a96de4af5d1152a061abb50.png", - "aggregators": [ - "CoinMarketCap", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x18a8d75f70eaead79b5a55903d036ce337f623a5": { - "address": "0x18a8d75f70eaead79b5a55903d036ce337f623a5", - "symbol": "SIGMA", - "decimals": 18, - "name": "SIGMA", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x18a8d75f70eaead79b5a55903d036ce337f623a5.png", - "aggregators": [ - "CoinGecko", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x4e6221c07dae8d3460a46fa01779cf17fdd72ad8": { - "address": "0x4e6221c07dae8d3460a46fa01779cf17fdd72ad8", - "symbol": "POCHITA", - "decimals": 9, - "name": "Pochita on Ethereum", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x4e6221c07dae8d3460a46fa01779cf17fdd72ad8.png", - "aggregators": [ - "CoinGecko", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0xa99afcc6aa4530d01dfff8e55ec66e4c424c048c": { - "address": "0xa99afcc6aa4530d01dfff8e55ec66e4c424c048c", - "symbol": "AWX", - "decimals": 18, - "name": "AwesomeX", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xa99afcc6aa4530d01dfff8e55ec66e4c424c048c.png", - "aggregators": [ - "CoinGecko", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x92d001c60df1c2248ae9020bbac559331cefcdec": { - "address": "0x92d001c60df1c2248ae9020bbac559331cefcdec", - "symbol": "POCHITA", - "decimals": 9, - "name": "Pochita", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x92d001c60df1c2248ae9020bbac559331cefcdec.png", - "aggregators": [ - "CoinGecko", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x1634e10c9155be623b5a52d6ca01c7a904d89b0a": { - "address": "0x1634e10c9155be623b5a52d6ca01c7a904d89b0a", - "symbol": "FINE", - "decimals": 18, - "name": "This Is Fine Ethereum", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x1634e10c9155be623b5a52d6ca01c7a904d89b0a.png", - "aggregators": [ - "CoinGecko", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x723abbea6e985fb21c57f550d9cceba1c676a6a9": { - "address": "0x723abbea6e985fb21c57f550d9cceba1c676a6a9", - "symbol": "SCF", - "decimals": 9, - "name": "Smoking Chicken Fish", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x723abbea6e985fb21c57f550d9cceba1c676a6a9.png", - "aggregators": [ - "CoinGecko", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x381ab19e04bd9dc333794a9f4d343daeee3b7069": { - "address": "0x381ab19e04bd9dc333794a9f4d343daeee3b7069", - "symbol": "DOLAN", - "decimals": 9, - "name": "Dolan Duk", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x381ab19e04bd9dc333794a9f4d343daeee3b7069.png", - "aggregators": [ - "CoinGecko", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x3e66c9a569efcf704391b54fd1eebd8ca0556960": { - "address": "0x3e66c9a569efcf704391b54fd1eebd8ca0556960", - "symbol": "FUBAO", - "decimals": 18, - "name": "Fu Bao", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x3e66c9a569efcf704391b54fd1eebd8ca0556960.png", - "aggregators": [ - "CoinGecko", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x846e57af29fd21391919318a044191b8725822c2": { - "address": "0x846e57af29fd21391919318a044191b8725822c2", - "symbol": "ETHARDIO", - "decimals": 9, - "name": "ETHARDIO", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x846e57af29fd21391919318a044191b8725822c2.png", - "aggregators": [ - "CoinGecko", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0xa6180029845469e89c507fe3eafedfa242687822": { - "address": "0xa6180029845469e89c507fe3eafedfa242687822", - "symbol": "NEIRO", - "decimals": 9, - "name": "Neiro", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xa6180029845469e89c507fe3eafedfa242687822.png", - "aggregators": [ - "CoinGecko", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x5200b34e6a519f289f5258de4554ebd3db12e822": { - "address": "0x5200b34e6a519f289f5258de4554ebd3db12e822", - "symbol": "GOAT", - "decimals": 9, - "name": "Goatseus Maximus", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x5200b34e6a519f289f5258de4554ebd3db12e822.png", - "aggregators": [ - "CoinGecko", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0xb3e41d6e0ea14b43bc5de3c314a408af171b03dd": { - "address": "0xb3e41d6e0ea14b43bc5de3c314a408af171b03dd", - "symbol": "KABOSU", - "decimals": 9, - "name": "Kabosu", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xb3e41d6e0ea14b43bc5de3c314a408af171b03dd.png", - "aggregators": [ - "CoinGecko", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0xcd17fa52528f37facb3028688e62ec82d9417581": { - "address": "0xcd17fa52528f37facb3028688e62ec82d9417581", - "symbol": "MTRM", - "decimals": 0, - "name": "Materium", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xcd17fa52528f37facb3028688e62ec82d9417581.png", - "aggregators": [ - "CoinMarketCap", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x4b91dfa774acde7ed70e93a6438363feaaa40f54": { - "address": "0x4b91dfa774acde7ed70e93a6438363feaaa40f54", - "symbol": "SPE", - "decimals": 9, - "name": "SavePlanetEarth", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x4b91dfa774acde7ed70e93a6438363feaaa40f54.png", - "aggregators": [ - "CoinMarketCap", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x75858677e27c930fb622759feaffee2b754af07f": { - "address": "0x75858677e27c930fb622759feaffee2b754af07f", - "symbol": "SOUL", - "decimals": 8, - "name": "Phantasma", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x75858677e27c930fb622759feaffee2b754af07f.png", - "aggregators": [ - "CoinMarketCap", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0xd43fba1f38d9b306aeef9d78ad177d51ef802b46": { - "address": "0xd43fba1f38d9b306aeef9d78ad177d51ef802b46", - "symbol": "GONDOLA", - "decimals": 9, - "name": "Gondola", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xd43fba1f38d9b306aeef9d78ad177d51ef802b46.png", - "aggregators": [ - "CoinMarketCap", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x7ddc52c4de30e94be3a6a0a2b259b2850f421989": { - "address": "0x7ddc52c4de30e94be3a6a0a2b259b2850f421989", - "symbol": "GOMINING", - "decimals": 18, - "name": "GoMining Token", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x7ddc52c4de30e94be3a6a0a2b259b2850f421989.png", - "aggregators": [ - "CoinGecko", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x6d3d490964205c8bc8ded39e48e88e8fde45b41f": { - "address": "0x6d3d490964205c8bc8ded39e48e88e8fde45b41f", - "symbol": "GOOCH", - "decimals": 18, - "name": "Gooch", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x6d3d490964205c8bc8ded39e48e88e8fde45b41f.png", - "aggregators": [ - "CoinMarketCap", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x06b884e60794ce02aafab13791b59a2e6a07442f": { - "address": "0x06b884e60794ce02aafab13791b59a2e6a07442f", - "symbol": "UNBNK", - "decimals": 18, - "name": "Unbanked", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x06b884e60794ce02aafab13791b59a2e6a07442f.png", - "aggregators": [ - "CoinMarketCap", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x3cbc780d2934d55a06069e837fabd3e6fc23dab0": { - "address": "0x3cbc780d2934d55a06069e837fabd3e6fc23dab0", - "symbol": "DBX", - "decimals": 18, - "name": "DBX", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x3cbc780d2934d55a06069e837fabd3e6fc23dab0.png", - "aggregators": [ - "CoinMarketCap", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x7f9b09f4717072cf4dc18b95d1b09e2b30c76790": { - "address": "0x7f9b09f4717072cf4dc18b95d1b09e2b30c76790", - "symbol": "VAULT", - "decimals": 18, - "name": "Vault AI", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x7f9b09f4717072cf4dc18b95d1b09e2b30c76790.png", - "aggregators": [ - "CoinMarketCap", - "LiFi", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x909e34d3f6124c324ac83dcca84b74398a6fa173": { - "address": "0x909e34d3f6124c324ac83dcca84b74398a6fa173", - "symbol": "$ZKP", - "decimals": 18, - "name": "Panther", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x909e34d3f6124c324ac83dcca84b74398a6fa173.png", - "aggregators": ["Metamask", "LiFi", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 5 - }, - "0x60215db40b04fe029c42c56ff2e02221c1f288ef": { - "address": "0x60215db40b04fe029c42c56ff2e02221c1f288ef", - "symbol": "CHILLGUY", - "decimals": 9, - "name": "Just a chill guy ETH", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x60215db40b04fe029c42c56ff2e02221c1f288ef.png", - "aggregators": [ - "CoinGecko", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x7483e83b481c69a93cb025395194e0dc4f32d9c4": { - "address": "0x7483e83b481c69a93cb025395194e0dc4f32d9c4", - "symbol": "RUBI", - "decimals": 18, - "name": "Rubicon", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x7483e83b481c69a93cb025395194e0dc4f32d9c4.png", - "aggregators": ["CoinGecko", "LiFi", "Rubic", "Sonarwatch"], - "occurrences": 4 - }, - "0x5e7f6e008c6d9d7ad4c7eb75bd4ce62864cc7454": { - "address": "0x5e7f6e008c6d9d7ad4c7eb75bd4ce62864cc7454", - "symbol": "TAPBITCOIN", - "decimals": 18, - "name": "Tapify", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x5e7f6e008c6d9d7ad4c7eb75bd4ce62864cc7454.png", - "aggregators": [ - "CoinMarketCap", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0xfab13732ae25267a5f47f6f31660c9a82b5fa9f1": { - "address": "0xfab13732ae25267a5f47f6f31660c9a82b5fa9f1", - "symbol": "SKIBIDI", - "decimals": 6, - "name": "Skibidi Dop Dop", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xfab13732ae25267a5f47f6f31660c9a82b5fa9f1.png", - "aggregators": [ - "CoinGecko", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0xf5207ac91c9e7ec7ebb03e93cbcbcad10878ac79": { - "address": "0xf5207ac91c9e7ec7ebb03e93cbcbcad10878ac79", - "symbol": "MIRA", - "decimals": 2, - "name": "Chains of War", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xf5207ac91c9e7ec7ebb03e93cbcbcad10878ac79.png", - "aggregators": [ - "CoinMarketCap", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x5aa7b9be58d4001a7065718641ce7b121b41ef9b": { - "address": "0x5aa7b9be58d4001a7065718641ce7b121b41ef9b", - "symbol": "APAD", - "decimals": 18, - "name": "AlphPad", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x5aa7b9be58d4001a7065718641ce7b121b41ef9b.png", - "aggregators": [ - "CoinGecko", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0xd454b59f16d42667be2fa55292d16647e27f40c4": { - "address": "0xd454b59f16d42667be2fa55292d16647e27f40c4", - "symbol": "XPRT", - "decimals": 6, - "name": "Persistence One", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xd454b59f16d42667be2fa55292d16647e27f40c4.png", - "aggregators": [ - "CoinMarketCap", - "Rubic", - "Squid", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x4af1bc87e43ddb22188bb3791ae00341586fe8fc": { - "address": "0x4af1bc87e43ddb22188bb3791ae00341586fe8fc", - "symbol": "CHAMP", - "decimals": 18, - "name": "Super Champs", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x4af1bc87e43ddb22188bb3791ae00341586fe8fc.png", - "aggregators": [ - "CoinMarketCap", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0xf2b2f7b47715256ce4ea43363a867fdce9353e3a": { - "address": "0xf2b2f7b47715256ce4ea43363a867fdce9353e3a", - "symbol": "BRISE", - "decimals": 9, - "name": "Bitgert", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xf2b2f7b47715256ce4ea43363a867fdce9353e3a.png", - "aggregators": [ - "CoinMarketCap", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0xd459eceddafcc1d876a3be7290a2e16e801073a3": { - "address": "0xd459eceddafcc1d876a3be7290a2e16e801073a3", - "symbol": "BB", - "decimals": 18, - "name": "BounceBit", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xd459eceddafcc1d876a3be7290a2e16e801073a3.png", - "aggregators": [ - "CoinMarketCap", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x04c46e830bb56ce22735d5d8fc9cb90309317d0f": { - "address": "0x04c46e830bb56ce22735d5d8fc9cb90309317d0f", - "symbol": "EKUBO", - "decimals": 18, - "name": "Ekubo Protocol", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x04c46e830bb56ce22735d5d8fc9cb90309317d0f.png", - "aggregators": [ - "CoinMarketCap", - "LiFi", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x91a69021b0baef3445e51726458a0ce601471846": { - "address": "0x91a69021b0baef3445e51726458a0ce601471846", - "symbol": "ERN", - "decimals": 18, - "name": "Ethos Reserve Note", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x91a69021b0baef3445e51726458a0ce601471846.png", - "aggregators": [ - "CoinGecko", - "Rubic", - "Squid", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x490e3f4af13e1616ec97a8c6600c1061a8d0253e": { - "address": "0x490e3f4af13e1616ec97a8c6600c1061a8d0253e", - "symbol": "TRR", - "decimals": 18, - "name": "Terran Coin", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x490e3f4af13e1616ec97a8c6600c1061a8d0253e.png", - "aggregators": [ - "CoinMarketCap", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x395e925834996e558bdec77cd648435d620afb5b": { - "address": "0x395e925834996e558bdec77cd648435d620afb5b", - "symbol": "TFT", - "decimals": 7, - "name": "ThreeFold", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x395e925834996e558bdec77cd648435d620afb5b.png", - "aggregators": [ - "CoinGecko", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0xe28027c99c7746ffb56b0113e5d9708ac86fae8f": { - "address": "0xe28027c99c7746ffb56b0113e5d9708ac86fae8f", - "symbol": "KING", - "decimals": 9, - "name": "KING Coin", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xe28027c99c7746ffb56b0113e5d9708ac86fae8f.png", - "aggregators": [ - "CoinMarketCap", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0xa670d7237398238de01267472c6f13e5b8010fd1": { - "address": "0xa670d7237398238de01267472c6f13e5b8010fd1", - "symbol": "SOMM", - "decimals": 6, - "name": "Sommelier", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xa670d7237398238de01267472c6f13e5b8010fd1.png", - "aggregators": [ - "CoinMarketCap", - "LiFi", - "Socket", - "Rubic", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x06ddb3a8bc0abc14f85e974cf1a93a6f8d4909d9": { - "address": "0x06ddb3a8bc0abc14f85e974cf1a93a6f8d4909d9", - "symbol": "8PAY", - "decimals": 18, - "name": "8Pay", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x06ddb3a8bc0abc14f85e974cf1a93a6f8d4909d9.png", - "aggregators": [ - "CoinMarketCap", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x438e48ed4ce6beecf503d43b9dbd3c30d516e7fd": { - "address": "0x438e48ed4ce6beecf503d43b9dbd3c30d516e7fd", - "symbol": "UWON", - "decimals": 18, - "name": "UWON", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x438e48ed4ce6beecf503d43b9dbd3c30d516e7fd.png", - "aggregators": [ - "CoinGecko", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x180dae91d6d56235453a892d2e56a3e40ba81df8": { - "address": "0x180dae91d6d56235453a892d2e56a3e40ba81df8", - "symbol": "DOJO", - "decimals": 18, - "name": "DOJO", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x180dae91d6d56235453a892d2e56a3e40ba81df8.png", - "aggregators": [ - "CoinGecko", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0xdb726152680ece3c9291f1016f1d36f3995f6941": { - "address": "0xdb726152680ece3c9291f1016f1d36f3995f6941", - "symbol": "MEDIA", - "decimals": 6, - "name": "Media Network Token", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xdb726152680ece3c9291f1016f1d36f3995f6941.png", - "aggregators": [ - "CoinGecko", - "Rubic", - "Rango", - "Sonarwatch", - "SushiSwap" - ], - "occurrences": 5 - }, - "0x154e35c2b0024b3e079c5c5e4fc31c979c189ccb": { - "address": "0x154e35c2b0024b3e079c5c5e4fc31c979c189ccb", - "symbol": "RAID", - "decimals": 18, - "name": "Raid", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x154e35c2b0024b3e079c5c5e4fc31c979c189ccb.png", - "aggregators": [ - "CoinMarketCap", - "LiFi", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x3405a1bd46b85c5c029483fbecf2f3e611026e45": { - "address": "0x3405a1bd46b85c5c029483fbecf2f3e611026e45", - "symbol": "WOW", - "decimals": 18, - "name": "WOWSwap", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x3405a1bd46b85c5c029483fbecf2f3e611026e45.png", - "aggregators": [ - "CoinGecko", - "Rubic", - "Rango", - "Sonarwatch", - "SushiSwap" - ], - "occurrences": 5 - }, - "0x288741b45ad4042f7b124e38b53cec5e9cca0376": { - "address": "0x288741b45ad4042f7b124e38b53cec5e9cca0376", - "symbol": "KOLZ", - "decimals": 18, - "name": "KOLZ", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x288741b45ad4042f7b124e38b53cec5e9cca0376.png", - "aggregators": ["CoinMarketCap", "Socket", "Rubic", "Sonarwatch"], - "occurrences": 4 - }, - "0xe1590a6fa0cff9c960181cb77d8a873601772f64": { - "address": "0xe1590a6fa0cff9c960181cb77d8a873601772f64", - "symbol": "WSB", - "decimals": 18, - "name": "WallStreetBets DApp", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xe1590a6fa0cff9c960181cb77d8a873601772f64.png", - "aggregators": [ - "CoinMarketCap", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0xd4b92b1700615afae333b9d16d28eb55e8e689b8": { - "address": "0xd4b92b1700615afae333b9d16d28eb55e8e689b8", - "symbol": "CATS", - "decimals": 9, - "name": "CatCoin Token", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xd4b92b1700615afae333b9d16d28eb55e8e689b8.png", - "aggregators": [ - "CoinMarketCap", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x9ab70e92319f0b9127df78868fd3655fb9f1e322": { - "address": "0x9ab70e92319f0b9127df78868fd3655fb9f1e322", - "symbol": "WWY", - "decimals": 18, - "name": "WeWay", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x9ab70e92319f0b9127df78868fd3655fb9f1e322.png", - "aggregators": [ - "CoinGecko", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x198d14f2ad9ce69e76ea330b374de4957c3f850a": { - "address": "0x198d14f2ad9ce69e76ea330b374de4957c3f850a", - "symbol": "NFT", - "decimals": 6, - "name": "APENFT", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x198d14f2ad9ce69e76ea330b374de4957c3f850a.png", - "aggregators": [ - "CoinMarketCap", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x983d8edb44ca96c0595f3c456ebdd47855911f34": { - "address": "0x983d8edb44ca96c0595f3c456ebdd47855911f34", - "symbol": "WAR", - "decimals": 18, - "name": "War Legends", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x983d8edb44ca96c0595f3c456ebdd47855911f34.png", - "aggregators": [ - "CoinGecko", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x967fb0d760ed3ce53afe2f0a071674cccae73550": { - "address": "0x967fb0d760ed3ce53afe2f0a071674cccae73550", - "symbol": "XETA", - "decimals": 18, - "name": "XANA", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x967fb0d760ed3ce53afe2f0a071674cccae73550.png", - "aggregators": [ - "CoinMarketCap", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0xc3589f56b6869824804a5ea29f2c9886af1b0fce": { - "address": "0xc3589f56b6869824804a5ea29f2c9886af1b0fce", - "symbol": "HNY", - "decimals": 18, - "name": "Honey", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xc3589f56b6869824804a5ea29f2c9886af1b0fce.png", - "aggregators": [ - "CoinGecko", - "LiFi", - "Socket", - "Rubic", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x62760e76dce6b500349ec5f6119228d047913350": { - "address": "0x62760e76dce6b500349ec5f6119228d047913350", - "symbol": "TWIF", - "decimals": 9, - "name": "Tomwifhat", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x62760e76dce6b500349ec5f6119228d047913350.png", - "aggregators": [ - "CoinMarketCap", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x798bcb35d2d48c8ce7ef8171860b8d53a98b361d": { - "address": "0x798bcb35d2d48c8ce7ef8171860b8d53a98b361d", - "symbol": "MPDAO", - "decimals": 6, - "name": "Meta Pool DAO", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x798bcb35d2d48c8ce7ef8171860b8d53a98b361d.png", - "aggregators": [ - "CoinMarketCap", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x614d7f40701132e25fe6fc17801fbd34212d2eda": { - "address": "0x614d7f40701132e25fe6fc17801fbd34212d2eda", - "symbol": "BLAST", - "decimals": 9, - "name": "SafeBlast", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x614d7f40701132e25fe6fc17801fbd34212d2eda.png", - "aggregators": [ - "CoinMarketCap", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x614577036f0a024dbc1c88ba616b394dd65d105a": { - "address": "0x614577036f0a024dbc1c88ba616b394dd65d105a", - "symbol": "GNUS", - "decimals": 18, - "name": "GENIUS AI", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x614577036f0a024dbc1c88ba616b394dd65d105a.png", - "aggregators": [ - "CoinMarketCap", - "Rubic", - "Squid", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x3f67093dffd4f0af4f2918703c92b60acb7ad78b": { - "address": "0x3f67093dffd4f0af4f2918703c92b60acb7ad78b", - "symbol": "21BTC", - "decimals": 8, - "name": "21 co Wrapped BTC", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x3f67093dffd4f0af4f2918703c92b60acb7ad78b.png", - "aggregators": [ - "CoinGecko", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x68449870eea84453044bd430822827e21fd8f101": { - "address": "0x68449870eea84453044bd430822827e21fd8f101", - "symbol": "ZAI", - "decimals": 18, - "name": "Zaibot", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x68449870eea84453044bd430822827e21fd8f101.png", - "aggregators": [ - "CoinGecko", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x2ef8a2ccb058915e00e16aa13cc6e36f19d8893b": { - "address": "0x2ef8a2ccb058915e00e16aa13cc6e36f19d8893b", - "symbol": "VDO", - "decimals": 18, - "name": "ValiDAO", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x2ef8a2ccb058915e00e16aa13cc6e36f19d8893b.png", - "aggregators": [ - "CoinGecko", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x7a78c790250fef60ce7e8ef85557d67cc4216a52": { - "address": "0x7a78c790250fef60ce7e8ef85557d67cc4216a52", - "symbol": "GLUTEU", - "decimals": 18, - "name": "Gluteus Maximus by Virtuals", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x7a78c790250fef60ce7e8ef85557d67cc4216a52.png", - "aggregators": [ - "CoinGecko", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x975da7b2325f815f1de23c8b68f721fb483b8071": { - "address": "0x975da7b2325f815f1de23c8b68f721fb483b8071", - "symbol": "LOOPIN", - "decimals": 18, - "name": "LooPIN Network", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x975da7b2325f815f1de23c8b68f721fb483b8071.png", - "aggregators": [ - "CoinGecko", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x6551698ee65f5db726e49f9ab0ff1ce9419003a7": { - "address": "0x6551698ee65f5db726e49f9ab0ff1ce9419003a7", - "symbol": "PLAY", - "decimals": 18, - "name": "Playdoge", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x6551698ee65f5db726e49f9ab0ff1ce9419003a7.png", - "aggregators": [ - "CoinGecko", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x95987b0cdc7f65d989a30b3b7132a38388c548eb": { - "address": "0x95987b0cdc7f65d989a30b3b7132a38388c548eb", - "symbol": "PURSE", - "decimals": 18, - "name": "Pundi X PURSE", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x95987b0cdc7f65d989a30b3b7132a38388c548eb.png", - "aggregators": [ - "CoinGecko", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0xbbcb0356bb9e6b3faa5cbf9e5f36185d53403ac9": { - "address": "0xbbcb0356bb9e6b3faa5cbf9e5f36185d53403ac9", - "symbol": "BCOIN", - "decimals": 18, - "name": "Backed Coinbase Global", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xbbcb0356bb9e6b3faa5cbf9e5f36185d53403ac9.png", - "aggregators": [ - "CoinMarketCap", - "LiFi", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0xe20b9e246db5a0d21bf9209e4858bc9a3ff7a034": { - "address": "0xe20b9e246db5a0d21bf9209e4858bc9a3ff7a034", - "symbol": "WBAN", - "decimals": 18, - "name": "Wrapped Banano", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xe20b9e246db5a0d21bf9209e4858bc9a3ff7a034.png", - "aggregators": [ - "CoinMarketCap", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x6ab4ce36260f201e4e2391eca2fd7538f71e4131": { - "address": "0x6ab4ce36260f201e4e2391eca2fd7538f71e4131", - "symbol": "AI", - "decimals": 18, - "name": "Flourishing AI", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x6ab4ce36260f201e4e2391eca2fd7538f71e4131.png", - "aggregators": [ - "CoinMarketCap", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0xcbcc0f036ed4788f63fc0fee32873d6a7487b908": { - "address": "0xcbcc0f036ed4788f63fc0fee32873d6a7487b908", - "symbol": "HMQ", - "decimals": 8, - "name": "Humaniq", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xcbcc0f036ed4788f63fc0fee32873d6a7487b908.png", - "aggregators": [ - "CoinMarketCap", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0xd7631787b4dcc87b1254cfd1e5ce48e96823dee8": { - "address": "0xd7631787b4dcc87b1254cfd1e5ce48e96823dee8", - "symbol": "SCL", - "decimals": 8, - "name": "SOCIAL", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xd7631787b4dcc87b1254cfd1e5ce48e96823dee8.png", - "aggregators": [ - "CoinMarketCap", - "LiFi", - "Rubic", - "Rango", - "Bancor" - ], - "occurrences": 5 - }, - "0x27f610bf36eca0939093343ac28b1534a721dbb4": { - "address": "0x27f610bf36eca0939093343ac28b1534a721dbb4", - "symbol": "WAND", - "decimals": 18, - "name": "Wand Token", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x27f610bf36eca0939093343ac28b1534a721dbb4.png", - "aggregators": [ - "CoinMarketCap", - "LiFi", - "Rubic", - "Rango", - "Bancor" - ], - "occurrences": 5 - }, - "0x9f5f3cfd7a32700c93f971637407ff17b91c7342": { - "address": "0x9f5f3cfd7a32700c93f971637407ff17b91c7342", - "symbol": "DDD", - "decimals": 18, - "name": "Scry info", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x9f5f3cfd7a32700c93f971637407ff17b91c7342.png", - "aggregators": [ - "CoinMarketCap", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x37e8789bb9996cac9156cd5f5fd32599e6b91289": { - "address": "0x37e8789bb9996cac9156cd5f5fd32599e6b91289", - "symbol": "AID", - "decimals": 18, - "name": "AidCoin", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x37e8789bb9996cac9156cd5f5fd32599e6b91289.png", - "aggregators": [ - "CoinMarketCap", - "LiFi", - "Rubic", - "Rango", - "Bancor" - ], - "occurrences": 5 - }, - "0xfc2c4d8f95002c14ed0a7aa65102cac9e5953b5e": { - "address": "0xfc2c4d8f95002c14ed0a7aa65102cac9e5953b5e", - "symbol": "RBLX", - "decimals": 18, - "name": "Rublix", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xfc2c4d8f95002c14ed0a7aa65102cac9e5953b5e.png", - "aggregators": [ - "CoinMarketCap", - "LiFi", - "Rubic", - "Rango", - "Bancor" - ], - "occurrences": 5 - }, - "0x4aac461c86abfa71e9d00d9a2cde8d74e4e1aeea": { - "address": "0x4aac461c86abfa71e9d00d9a2cde8d74e4e1aeea", - "symbol": "ZINC", - "decimals": 18, - "name": "ZINC", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x4aac461c86abfa71e9d00d9a2cde8d74e4e1aeea.png", - "aggregators": [ - "CoinMarketCap", - "LiFi", - "Rubic", - "Rango", - "Bancor" - ], - "occurrences": 5 - }, - "0x6c37bf4f042712c978a73e3fd56d1f5738dd7c43": { - "address": "0x6c37bf4f042712c978a73e3fd56d1f5738dd7c43", - "symbol": "ELET", - "decimals": 18, - "name": "Elementeum", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x6c37bf4f042712c978a73e3fd56d1f5738dd7c43.png", - "aggregators": [ - "CoinMarketCap", - "LiFi", - "Rubic", - "Rango", - "Bancor" - ], - "occurrences": 5 - }, - "0x6e605c269e0c92e70beeb85486f1fc550f9380bd": { - "address": "0x6e605c269e0c92e70beeb85486f1fc550f9380bd", - "symbol": "CATT", - "decimals": 18, - "name": "Catex", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x6e605c269e0c92e70beeb85486f1fc550f9380bd.png", - "aggregators": [ - "CoinMarketCap", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x3166c570935a7d8554c8f4ea792ff965d2efe1f2": { - "address": "0x3166c570935a7d8554c8f4ea792ff965d2efe1f2", - "symbol": "QDAO", - "decimals": 18, - "name": "Q DAO Governance token v10", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x3166c570935a7d8554c8f4ea792ff965d2efe1f2.png", - "aggregators": [ - "CoinMarketCap", - "LiFi", - "Rubic", - "Rango", - "Bancor" - ], - "occurrences": 5 - }, - "0xa7fc5d2453e3f68af0cc1b78bcfee94a1b293650": { - "address": "0xa7fc5d2453e3f68af0cc1b78bcfee94a1b293650", - "symbol": "SPIKE", - "decimals": 10, - "name": "SPIKE", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xa7fc5d2453e3f68af0cc1b78bcfee94a1b293650.png", - "aggregators": [ - "CoinMarketCap", - "LiFi", - "Socket", - "Rubic", - "Rango" - ], - "occurrences": 5 - }, - "0x62199b909fb8b8cf870f97bef2ce6783493c4908": { - "address": "0x62199b909fb8b8cf870f97bef2ce6783493c4908", - "symbol": "PBTC", - "decimals": 18, - "name": "PBTC", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x62199b909fb8b8cf870f97bef2ce6783493c4908.png", - "aggregators": [ - "CoinMarketCap", - "LiFi", - "Socket", - "Rubic", - "Rango" - ], - "occurrences": 5 - }, - "0xf063fe1ab7a291c5d06a86e14730b00bf24cb589": { - "address": "0xf063fe1ab7a291c5d06a86e14730b00bf24cb589", - "symbol": "SALE", - "decimals": 18, - "name": "DxSale Network", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xf063fe1ab7a291c5d06a86e14730b00bf24cb589.png", - "aggregators": [ - "CoinMarketCap", - "LiFi", - "TrustWallet", - "Socket", - "Rubic" - ], - "occurrences": 5 - }, - "0x1dd80016e3d4ae146ee2ebb484e8edd92dacc4ce": { - "address": "0x1dd80016e3d4ae146ee2ebb484e8edd92dacc4ce", - "symbol": "LEAD", - "decimals": 18, - "name": "Lead Wallet", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x1dd80016e3d4ae146ee2ebb484e8edd92dacc4ce.png", - "aggregators": [ - "CoinMarketCap", - "LiFi", - "TrustWallet", - "Rubic", - "Rango" - ], - "occurrences": 5 - }, - "0xdb0f18081b505a7de20b18ac41856bcb4ba86a1a": { - "address": "0xdb0f18081b505a7de20b18ac41856bcb4ba86a1a", - "symbol": "PWING", - "decimals": 9, - "name": "Poly Ontology Wing Token", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xdb0f18081b505a7de20b18ac41856bcb4ba86a1a.png", - "aggregators": [ - "CoinMarketCap", - "LiFi", - "Rubic", - "Rango", - "SushiSwap" - ], - "occurrences": 5 - }, - "0x12d102f06da35cc0111eb58017fd2cd28537d0e1": { - "address": "0x12d102f06da35cc0111eb58017fd2cd28537d0e1", - "symbol": "VOX", - "decimals": 18, - "name": "Vox.Finance", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x12d102f06da35cc0111eb58017fd2cd28537d0e1.png", - "aggregators": [ - "CoinMarketCap", - "LiFi", - "Socket", - "Rubic", - "Rango" - ], - "occurrences": 5 - }, - "0x5dc02ea99285e17656b8350722694c35154db1e8": { - "address": "0x5dc02ea99285e17656b8350722694c35154db1e8", - "symbol": "BOND", - "decimals": 8, - "name": "BOND", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x5dc02ea99285e17656b8350722694c35154db1e8.png", - "aggregators": [ - "CoinMarketCap", - "TrustWallet", - "Socket", - "Rubic", - "Rango" - ], - "occurrences": 5 - }, - "0x0829d2d5cc09d3d341e813c821b0cfae272d9fb2": { - "address": "0x0829d2d5cc09d3d341e813c821b0cfae272d9fb2", - "symbol": "ROCKS", - "decimals": 18, - "name": "ROCKS", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x0829d2d5cc09d3d341e813c821b0cfae272d9fb2.png", - "aggregators": [ - "CoinMarketCap", - "LiFi", - "Socket", - "Rubic", - "Rango" - ], - "occurrences": 5 - }, - "0x59a921db27dd6d4d974745b7ffc5c33932653442": { - "address": "0x59a921db27dd6d4d974745b7ffc5c33932653442", - "symbol": "MGOOGL", - "decimals": 18, - "name": "M Google", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x59a921db27dd6d4d974745b7ffc5c33932653442.png", - "aggregators": [ - "CoinMarketCap", - "LiFi", - "Rubic", - "Rango", - "SushiSwap" - ], - "occurrences": 5 - }, - "0x0cae9e4d663793c2a2a0b211c1cf4bbca2b9caa7": { - "address": "0x0cae9e4d663793c2a2a0b211c1cf4bbca2b9caa7", - "symbol": "MAMZN", - "decimals": 18, - "name": "Mirrored Amazon", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x0cae9e4d663793c2a2a0b211c1cf4bbca2b9caa7.png", - "aggregators": [ - "CoinMarketCap", - "LiFi", - "Rubic", - "Rango", - "SushiSwap" - ], - "occurrences": 5 - }, - "0x41bbedd7286daab5910a1f15d12cbda839852bd7": { - "address": "0x41bbedd7286daab5910a1f15d12cbda839852bd7", - "symbol": "MMSFT", - "decimals": 18, - "name": "Mirrored Microsoft", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x41bbedd7286daab5910a1f15d12cbda839852bd7.png", - "aggregators": [ - "CoinMarketCap", - "LiFi", - "Rubic", - "Rango", - "SushiSwap" - ], - "occurrences": 5 - }, - "0x13b02c8de71680e71f0820c996e4be43c2f57d15": { - "address": "0x13b02c8de71680e71f0820c996e4be43c2f57d15", - "symbol": "MQQQ", - "decimals": 18, - "name": "Wrapped Mirror QQQ Token", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x13b02c8de71680e71f0820c996e4be43c2f57d15.png", - "aggregators": [ - "CoinMarketCap", - "LiFi", - "Rubic", - "Rango", - "SushiSwap" - ], - "occurrences": 5 - }, - "0x31c63146a635eb7465e5853020b39713ac356991": { - "address": "0x31c63146a635eb7465e5853020b39713ac356991", - "symbol": "MUSO", - "decimals": 18, - "name": "M US Oil", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x31c63146a635eb7465e5853020b39713ac356991.png", - "aggregators": [ - "CoinMarketCap", - "LiFi", - "Rubic", - "Rango", - "SushiSwap" - ], - "occurrences": 5 - }, - "0xce593a29905951e8fc579bc092eca72577da575c": { - "address": "0xce593a29905951e8fc579bc092eca72577da575c", - "symbol": "GR", - "decimals": 6, - "name": "GROM", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xce593a29905951e8fc579bc092eca72577da575c.png", - "aggregators": [ - "CoinMarketCap", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x0e99cc0535bb6251f6679fa6e65d6d3b430e840b": { - "address": "0x0e99cc0535bb6251f6679fa6e65d6d3b430e840b", - "symbol": "MFB", - "decimals": 18, - "name": "Mirrored Facebook", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x0e99cc0535bb6251f6679fa6e65d6d3b430e840b.png", - "aggregators": [ - "CoinMarketCap", - "LiFi", - "Rubic", - "Rango", - "SushiSwap" - ], - "occurrences": 5 - }, - "0xb1f1f47061a7be15c69f378cb3f69423bd58f2f8": { - "address": "0xb1f1f47061a7be15c69f378cb3f69423bd58f2f8", - "symbol": "FLASH", - "decimals": 18, - "name": "Flashstake", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xb1f1f47061a7be15c69f378cb3f69423bd58f2f8.png", - "aggregators": [ - "CoinMarketCap", - "LiFi", - "Socket", - "Rubic", - "Rango" - ], - "occurrences": 5 - }, - "0x31b595e7cfdb624d10a3e7a562ed98c3567e3865": { - "address": "0x31b595e7cfdb624d10a3e7a562ed98c3567e3865", - "symbol": "STZEN", - "decimals": 8, - "name": "stakedZEN", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x31b595e7cfdb624d10a3e7a562ed98c3567e3865.png", - "aggregators": [ - "CoinMarketCap", - "LiFi", - "Rubic", - "Rango", - "SushiSwap" - ], - "occurrences": 5 - }, - "0x0309c98b1bffa350bcb3f9fb9780970ca32a5060": { - "address": "0x0309c98b1bffa350bcb3f9fb9780970ca32a5060", - "symbol": "BDI", - "decimals": 18, - "name": "BasketDAO DeFi Index", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x0309c98b1bffa350bcb3f9fb9780970ca32a5060.png", - "aggregators": [ - "CoinMarketCap", - "LiFi", - "Rubic", - "Rango", - "SushiSwap" - ], - "occurrences": 5 - }, - "0x2aa5ce395b00cc486159adbdd97c55b535cf2cf9": { - "address": "0x2aa5ce395b00cc486159adbdd97c55b535cf2cf9", - "symbol": "EGT", - "decimals": 18, - "name": "Elastic Governance", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x2aa5ce395b00cc486159adbdd97c55b535cf2cf9.png", - "aggregators": [ - "CoinMarketCap", - "LiFi", - "Socket", - "Rubic", - "SushiSwap" - ], - "occurrences": 5 - }, - "0xa704fce7b309ec09df16e2f5ab8caf6fe8a4baa9": { - "address": "0xa704fce7b309ec09df16e2f5ab8caf6fe8a4baa9", - "symbol": "AGRI", - "decimals": 18, - "name": "AgriChain Utility Token", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xa704fce7b309ec09df16e2f5ab8caf6fe8a4baa9.png", - "aggregators": [ - "CoinMarketCap", - "LiFi", - "Rubic", - "Rango", - "Bancor" - ], - "occurrences": 5 - }, - "0x5fa54fddf1870c344dbfabb37dfab8700ec0def1": { - "address": "0x5fa54fddf1870c344dbfabb37dfab8700ec0def1", - "symbol": "FROGEX", - "decimals": 9, - "name": "FrogeX", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x5fa54fddf1870c344dbfabb37dfab8700ec0def1.png", - "aggregators": [ - "CoinMarketCap", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x7b35ce522cb72e4077baeb96cb923a5529764a00": { - "address": "0x7b35ce522cb72e4077baeb96cb923a5529764a00", - "symbol": "IMX", - "decimals": 18, - "name": "Impermax", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x7b35ce522cb72e4077baeb96cb923a5529764a00.png", - "aggregators": [ - "CoinMarketCap", - "LiFi", - "Socket", - "Rubic", - "Rango" - ], - "occurrences": 5 - }, - "0x34abce75d2f8f33940c721dca0f562617787bff3": { - "address": "0x34abce75d2f8f33940c721dca0f562617787bff3", - "symbol": "TXAG", - "decimals": 18, - "name": "tSILVER", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x34abce75d2f8f33940c721dca0f562617787bff3.png", - "aggregators": [ - "CoinMarketCap", - "LiFi", - "Socket", - "Rubic", - "Rango" - ], - "occurrences": 5 - }, - "0xb05097849bca421a3f51b249ba6cca4af4b97cb9": { - "address": "0xb05097849bca421a3f51b249ba6cca4af4b97cb9", - "symbol": "FLOAT", - "decimals": 18, - "name": "Float FLOAT", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xb05097849bca421a3f51b249ba6cca4af4b97cb9.png", - "aggregators": [ - "CoinMarketCap", - "LiFi", - "Rubic", - "Rango", - "SushiSwap" - ], - "occurrences": 5 - }, - "0x8a0cdfab62ed35b836dc0633482798421c81b3ec": { - "address": "0x8a0cdfab62ed35b836dc0633482798421c81b3ec", - "symbol": "SPHRI", - "decimals": 18, - "name": "Spherium", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x8a0cdfab62ed35b836dc0633482798421c81b3ec.png", - "aggregators": [ - "CoinMarketCap", - "LiFi", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x1681bcb589b3cfcf0c0616b0ce9b19b240643dc1": { - "address": "0x1681bcb589b3cfcf0c0616b0ce9b19b240643dc1", - "symbol": "ISLE", - "decimals": 9, - "name": "Island", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x1681bcb589b3cfcf0c0616b0ce9b19b240643dc1.png", - "aggregators": [ - "CoinMarketCap", - "1inch", - "Socket", - "Rubic", - "Rango" - ], - "occurrences": 5 - }, - "0xaaca86b876ca011844b5798eca7a67591a9743c8": { - "address": "0xaaca86b876ca011844b5798eca7a67591a9743c8", - "symbol": "BIOS", - "decimals": 18, - "name": "BIOS", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xaaca86b876ca011844b5798eca7a67591a9743c8.png", - "aggregators": [ - "CoinMarketCap", - "LiFi", - "Rubic", - "Rango", - "SushiSwap" - ], - "occurrences": 5 - }, - "0xdddddd4301a082e62e84e43f474f044423921918": { - "address": "0xdddddd4301a082e62e84e43f474f044423921918", - "symbol": "DVF", - "decimals": 18, - "name": "DeversiFi Token", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xdddddd4301a082e62e84e43f474f044423921918.png", - "aggregators": [ - "CoinMarketCap", - "LiFi", - "Rubic", - "Rango", - "SushiSwap" - ], - "occurrences": 5 - }, - "0x4af698b479d0098229dc715655c667ceb6cd8433": { - "address": "0x4af698b479d0098229dc715655c667ceb6cd8433", - "symbol": "MAID", - "decimals": 18, - "name": "MaidCoin", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x4af698b479d0098229dc715655c667ceb6cd8433.png", - "aggregators": [ - "CoinMarketCap", - "LiFi", - "Rubic", - "Rango", - "SushiSwap" - ], - "occurrences": 5 - }, - "0x4463e6a3ded0dbe3f6e15bc8420dfc55e5fea830": { - "address": "0x4463e6a3ded0dbe3f6e15bc8420dfc55e5fea830", - "symbol": "TXA", - "decimals": 18, - "name": "TXA", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x4463e6a3ded0dbe3f6e15bc8420dfc55e5fea830.png", - "aggregators": [ - "CoinMarketCap", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0xd5cd84d6f044abe314ee7e414d37cae8773ef9d3": { - "address": "0xd5cd84d6f044abe314ee7e414d37cae8773ef9d3", - "symbol": "1ONE", - "decimals": 18, - "name": "Harmony ONE", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xd5cd84d6f044abe314ee7e414d37cae8773ef9d3.png", - "aggregators": [ - "CoinMarketCap", - "Rubic", - "Rango", - "SushiSwap", - "Bancor" - ], - "occurrences": 5 - }, - "0x65e6b60ea01668634d68d0513fe814679f925bad": { - "address": "0x65e6b60ea01668634d68d0513fe814679f925bad", - "symbol": "PIXEL", - "decimals": 18, - "name": "PixelVerse", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x65e6b60ea01668634d68d0513fe814679f925bad.png", - "aggregators": [ - "CoinMarketCap", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x3a1311b8c404629e38f61d566cefefed083b9670": { - "address": "0x3a1311b8c404629e38f61d566cefefed083b9670", - "symbol": "PINU", - "decimals": 9, - "name": "Piccolo Inu", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x3a1311b8c404629e38f61d566cefefed083b9670.png", - "aggregators": [ - "CoinMarketCap", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x9d3ee6b64e69ebe12a4bf0b01d031cb80f556ee4": { - "address": "0x9d3ee6b64e69ebe12a4bf0b01d031cb80f556ee4", - "symbol": "PECO", - "decimals": 18, - "name": "Polygon Ecosystem Index", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x9d3ee6b64e69ebe12a4bf0b01d031cb80f556ee4.png", - "aggregators": [ - "CoinMarketCap", - "LiFi", - "Rubic", - "Rango", - "SushiSwap" - ], - "occurrences": 5 - }, - "0x009178997aff09a67d4caccfeb897fb79d036214": { - "address": "0x009178997aff09a67d4caccfeb897fb79d036214", - "symbol": "1SOL", - "decimals": 18, - "name": "1Sol", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x009178997aff09a67d4caccfeb897fb79d036214.png", - "aggregators": [ - "CoinMarketCap", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x8765b1a0eb57ca49be7eacd35b24a574d0203656": { - "address": "0x8765b1a0eb57ca49be7eacd35b24a574d0203656", - "symbol": "MGH", - "decimals": 18, - "name": "MetaGameHub DAO", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x8765b1a0eb57ca49be7eacd35b24a574d0203656.png", - "aggregators": [ - "CoinMarketCap", - "LiFi", - "Socket", - "Rubic", - "Rango" - ], - "occurrences": 5 - }, - "0x4a1d542b52a95ad01ddc70c2e7df0c7bbaadc56f": { - "address": "0x4a1d542b52a95ad01ddc70c2e7df0c7bbaadc56f", - "symbol": "NIFT", - "decimals": 18, - "name": "Niftify", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x4a1d542b52a95ad01ddc70c2e7df0c7bbaadc56f.png", - "aggregators": [ - "CoinMarketCap", - "LiFi", - "Socket", - "Rubic", - "Rango" - ], - "occurrences": 5 - }, - "0x2920f7d6134f4669343e70122ca9b8f19ef8fa5d": { - "address": "0x2920f7d6134f4669343e70122ca9b8f19ef8fa5d", - "symbol": "MONO", - "decimals": 18, - "name": "MonoX Protocol", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x2920f7d6134f4669343e70122ca9b8f19ef8fa5d.png", - "aggregators": [ - "CoinMarketCap", - "LiFi", - "Socket", - "Rubic", - "Rango" - ], - "occurrences": 5 - }, - "0xebf2096e01455108badcbaf86ce30b6e5a72aa52": { - "address": "0xebf2096e01455108badcbaf86ce30b6e5a72aa52", - "symbol": "XIDR", - "decimals": 6, - "name": "XIDR", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xebf2096e01455108badcbaf86ce30b6e5a72aa52.png", - "aggregators": [ - "CoinMarketCap", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0xd52aae39a2b5cc7812f7b9450ebb61dfef702b15": { - "address": "0xd52aae39a2b5cc7812f7b9450ebb61dfef702b15", - "symbol": "MAGE", - "decimals": 18, - "name": "MetaBrands", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xd52aae39a2b5cc7812f7b9450ebb61dfef702b15.png", - "aggregators": [ - "CoinMarketCap", - "LiFi", - "Socket", - "Rubic", - "Rango" - ], - "occurrences": 5 - }, - "0xa350da05405cc204e551c4eed19c3039646528d5": { - "address": "0xa350da05405cc204e551c4eed19c3039646528d5", - "symbol": "BSPT", - "decimals": 18, - "name": "Blocksport", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xa350da05405cc204e551c4eed19c3039646528d5.png", - "aggregators": [ - "CoinMarketCap", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0xc5bcc8ba3f33ab0d64f3473e861bdc0685b19ef5": { - "address": "0xc5bcc8ba3f33ab0d64f3473e861bdc0685b19ef5", - "symbol": "MECHA", - "decimals": 18, - "name": "Mechanium", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xc5bcc8ba3f33ab0d64f3473e861bdc0685b19ef5.png", - "aggregators": [ - "CoinMarketCap", - "LiFi", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x70c4430f9d98b4184a4ef3e44ce10c320a8b7383": { - "address": "0x70c4430f9d98b4184a4ef3e44ce10c320a8b7383", - "symbol": "GYFI", - "decimals": 18, - "name": "Gyroscope", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x70c4430f9d98b4184a4ef3e44ce10c320a8b7383.png", - "aggregators": [ - "CoinMarketCap", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x259ab9b9eab62b0fd98729b97be121073d5b3479": { - "address": "0x259ab9b9eab62b0fd98729b97be121073d5b3479", - "symbol": "EST", - "decimals": 18, - "name": "Erica Social Token", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x259ab9b9eab62b0fd98729b97be121073d5b3479.png", - "aggregators": [ - "CoinMarketCap", - "LiFi", - "Socket", - "Rubic", - "Rango" - ], - "occurrences": 5 - }, - "0x4086e77c5e993fdb90a406285d00111a974f877a": { - "address": "0x4086e77c5e993fdb90a406285d00111a974f877a", - "symbol": "BRWL", - "decimals": 4, - "name": "Blockchain Brawlers", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x4086e77c5e993fdb90a406285d00111a974f877a.png", - "aggregators": [ - "CoinMarketCap", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x299698b4b44bd6d023981a7317798dee12860834": { - "address": "0x299698b4b44bd6d023981a7317798dee12860834", - "symbol": "NFP", - "decimals": 9, - "name": "New Frontier Presents", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x299698b4b44bd6d023981a7317798dee12860834.png", - "aggregators": [ - "CoinMarketCap", - "Socket", - "Rubic", - "Rango", - "SushiSwap" - ], - "occurrences": 5 - }, - "0xbe1dbe6741fb988fb571ab1e28cffb36e3c62629": { - "address": "0xbe1dbe6741fb988fb571ab1e28cffb36e3c62629", - "symbol": "MAV", - "decimals": 18, - "name": "Massive Protocol", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xbe1dbe6741fb988fb571ab1e28cffb36e3c62629.png", - "aggregators": [ - "CoinMarketCap", - "LiFi", - "Socket", - "Rubic", - "Rango" - ], - "occurrences": 5 - }, - "0xd909c5862cdb164adb949d92622082f0092efc3d": { - "address": "0xd909c5862cdb164adb949d92622082f0092efc3d", - "symbol": "IPT", - "decimals": 18, - "name": "Interest Protocol", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xd909c5862cdb164adb949d92622082f0092efc3d.png", - "aggregators": [ - "CoinMarketCap", - "LiFi", - "Socket", - "Rubic", - "Rango" - ], - "occurrences": 5 - }, - "0x8e01397163b21f64cec1f06ca6cc7d9aa8f718e9": { - "address": "0x8e01397163b21f64cec1f06ca6cc7d9aa8f718e9", - "symbol": "LSHARE", - "decimals": 18, - "name": "LIF3 LSHARE", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x8e01397163b21f64cec1f06ca6cc7d9aa8f718e9.png", - "aggregators": [ - "CoinMarketCap", - "LiFi", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x8a7adc1b690e81c758f1bd0f72dfe27ae6ec56a5": { - "address": "0x8a7adc1b690e81c758f1bd0f72dfe27ae6ec56a5", - "symbol": "BLID", - "decimals": 18, - "name": "BLID", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x8a7adc1b690e81c758f1bd0f72dfe27ae6ec56a5.png", - "aggregators": [ - "CoinMarketCap", - "LiFi", - "Socket", - "Rubic", - "Rango" - ], - "occurrences": 5 - }, - "0xb51b97dd5569fab69495316b5a065cccff4b829d": { - "address": "0xb51b97dd5569fab69495316b5a065cccff4b829d", - "symbol": "ASTRAFER", - "decimals": 18, - "name": "Astrafer", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xb51b97dd5569fab69495316b5a065cccff4b829d.png", - "aggregators": [ - "CoinMarketCap", - "LiFi", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0xc18c07a18198a6340cf4d94855fe5eb6dd33b46e": { - "address": "0xc18c07a18198a6340cf4d94855fe5eb6dd33b46e", - "symbol": "QLINDO", - "decimals": 0, - "name": "QLINDO", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xc18c07a18198a6340cf4d94855fe5eb6dd33b46e.png", - "aggregators": [ - "CoinMarketCap", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x968cbe62c830a0ccf4381614662398505657a2a9": { - "address": "0x968cbe62c830a0ccf4381614662398505657a2a9", - "symbol": "TPY", - "decimals": 8, - "name": "Thrupenny", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x968cbe62c830a0ccf4381614662398505657a2a9.png", - "aggregators": [ - "CoinMarketCap", - "LiFi", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0xaa0c5b3567fd1bac8a2a11eb16c3f81a49eea90f": { - "address": "0xaa0c5b3567fd1bac8a2a11eb16c3f81a49eea90f", - "symbol": "MMAI", - "decimals": 7, - "name": "MetamonkeyAi", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xaa0c5b3567fd1bac8a2a11eb16c3f81a49eea90f.png", - "aggregators": [ - "CoinMarketCap", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x5de597849cf72c72f073e9085bdd0dadd8e6c199": { - "address": "0x5de597849cf72c72f073e9085bdd0dadd8e6c199", - "symbol": "FBX", - "decimals": 18, - "name": "Finblox", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x5de597849cf72c72f073e9085bdd0dadd8e6c199.png", - "aggregators": [ - "CoinMarketCap", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x09f098b155d561fc9f7bccc97038b7e3d20baf74": { - "address": "0x09f098b155d561fc9f7bccc97038b7e3d20baf74", - "symbol": "ZOO", - "decimals": 18, - "name": "ZooDAO", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x09f098b155d561fc9f7bccc97038b7e3d20baf74.png", - "aggregators": [ - "CoinMarketCap", - "LiFi", - "Socket", - "Rubic", - "Rango" - ], - "occurrences": 5 - }, - "0xb012be90957d70d9a070918027655f998c123a88": { - "address": "0xb012be90957d70d9a070918027655f998c123a88", - "symbol": "HMX", - "decimals": 18, - "name": "Hermes DAO", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xb012be90957d70d9a070918027655f998c123a88.png", - "aggregators": [ - "CoinMarketCap", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x3dbb00c9be5a327e25caf4f650844c5dba81e34b": { - "address": "0x3dbb00c9be5a327e25caf4f650844c5dba81e34b", - "symbol": "RMATIC", - "decimals": 18, - "name": "StaFi Staked MATIC", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x3dbb00c9be5a327e25caf4f650844c5dba81e34b.png", - "aggregators": [ - "CoinMarketCap", - "LiFi", - "Socket", - "Rubic", - "Rango" - ], - "occurrences": 5 - }, - "0x8442e0e292186854bb6875b2a0fc1308b9ded793": { - "address": "0x8442e0e292186854bb6875b2a0fc1308b9ded793", - "symbol": "PP", - "decimals": 9, - "name": "Print The Pepe", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x8442e0e292186854bb6875b2a0fc1308b9ded793.png", - "aggregators": [ - "CoinMarketCap", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x8929e9dbd2785e3ba16175e596cdd61520fee0d1": { - "address": "0x8929e9dbd2785e3ba16175e596cdd61520fee0d1", - "symbol": "ALTD", - "decimals": 18, - "name": "Altitude", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x8929e9dbd2785e3ba16175e596cdd61520fee0d1.png", - "aggregators": [ - "CoinMarketCap", - "LiFi", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x8a944bb731e302fdb3571350513f149f15fcbe34": { - "address": "0x8a944bb731e302fdb3571350513f149f15fcbe34", - "symbol": "RIZZ", - "decimals": 18, - "name": "RIZZ", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x8a944bb731e302fdb3571350513f149f15fcbe34.png", - "aggregators": [ - "CoinMarketCap", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0xecbee2fae67709f718426ddc3bf770b26b95ed20": { - "address": "0xecbee2fae67709f718426ddc3bf770b26b95ed20", - "symbol": "CLIPS", - "decimals": 18, - "name": "Clips", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xecbee2fae67709f718426ddc3bf770b26b95ed20.png", - "aggregators": [ - "CoinMarketCap", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0xb2ee0adbe0ef1281025d0676511bb1df14600f4d": { - "address": "0xb2ee0adbe0ef1281025d0676511bb1df14600f4d", - "symbol": "FORE", - "decimals": 18, - "name": "FORE Protocol", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xb2ee0adbe0ef1281025d0676511bb1df14600f4d.png", - "aggregators": [ - "CoinMarketCap", - "LiFi", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0xebb82c932759b515b2efc1cfbb6bf2f6dbace404": { - "address": "0xebb82c932759b515b2efc1cfbb6bf2f6dbace404", - "symbol": "SHARES", - "decimals": 18, - "name": "shares finance", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xebb82c932759b515b2efc1cfbb6bf2f6dbace404.png", - "aggregators": [ - "CoinMarketCap", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0xe2512a2f19f0388ad3d7a5263eaa82acd564827b": { - "address": "0xe2512a2f19f0388ad3d7a5263eaa82acd564827b", - "symbol": "SHIDO", - "decimals": 18, - "name": "Shido Network", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xe2512a2f19f0388ad3d7a5263eaa82acd564827b.png", - "aggregators": [ - "CoinMarketCap", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x102c776ddb30c754ded4fdcc77a19230a60d4e4f": { - "address": "0x102c776ddb30c754ded4fdcc77a19230a60d4e4f", - "symbol": "FLC", - "decimals": 18, - "name": "Floor Protocol", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x102c776ddb30c754ded4fdcc77a19230a60d4e4f.png", - "aggregators": [ - "CoinMarketCap", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x33c04bed4533e31f2afb8ac4a61a48eda38c4fa0": { - "address": "0x33c04bed4533e31f2afb8ac4a61a48eda38c4fa0", - "symbol": "GORILLA", - "decimals": 9, - "name": "Gorilla", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x33c04bed4533e31f2afb8ac4a61a48eda38c4fa0.png", - "aggregators": [ - "CoinMarketCap", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x31ea904a7eca45122890deb8da3473a2081bc9d1": { - "address": "0x31ea904a7eca45122890deb8da3473a2081bc9d1", - "symbol": "SEED", - "decimals": 18, - "name": "Bonsai3", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x31ea904a7eca45122890deb8da3473a2081bc9d1.png", - "aggregators": [ - "CoinMarketCap", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x8e3fa615392688ddd9bf8f25d1f8dc744ac1a12c": { - "address": "0x8e3fa615392688ddd9bf8f25d1f8dc744ac1a12c", - "symbol": "GME", - "decimals": 9, - "name": "DumbMoney", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x8e3fa615392688ddd9bf8f25d1f8dc744ac1a12c.png", - "aggregators": [ - "CoinMarketCap", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x82967568a57625675b260ebab1294038c9accc6e": { - "address": "0x82967568a57625675b260ebab1294038c9accc6e", - "symbol": "NOVA", - "decimals": 18, - "name": "Nova DAO", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x82967568a57625675b260ebab1294038c9accc6e.png", - "aggregators": [ - "CoinMarketCap", - "LiFi", - "Socket", - "Rubic", - "Rango" - ], - "occurrences": 5 - }, - "0x57b49219614859176ddb029298486b6c30193cbd": { - "address": "0x57b49219614859176ddb029298486b6c30193cbd", - "symbol": "ORACLE", - "decimals": 18, - "name": "Oracle AI", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x57b49219614859176ddb029298486b6c30193cbd.png", - "aggregators": [ - "CoinMarketCap", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x014337b35167b3711195361bb85259009e50a8a4": { - "address": "0x014337b35167b3711195361bb85259009e50a8a4", - "symbol": "DNODE", - "decimals": 9, - "name": "DecentraNode", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x014337b35167b3711195361bb85259009e50a8a4.png", - "aggregators": [ - "CoinMarketCap", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0xe9eccde9d26fcbb5e93f536cfc4510a7f46274f8": { - "address": "0xe9eccde9d26fcbb5e93f536cfc4510a7f46274f8", - "symbol": "INFRA", - "decimals": 9, - "name": "infraX", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xe9eccde9d26fcbb5e93f536cfc4510a7f46274f8.png", - "aggregators": [ - "CoinMarketCap", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x504624040e0642921c2c266a9ac37cafbd8cda4e": { - "address": "0x504624040e0642921c2c266a9ac37cafbd8cda4e", - "symbol": "LOVE", - "decimals": 18, - "name": "Love Power Coin", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x504624040e0642921c2c266a9ac37cafbd8cda4e.png", - "aggregators": [ - "CoinMarketCap", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0xdaa7699352ac8709f3d2fd092226d3dd7da40474": { - "address": "0xdaa7699352ac8709f3d2fd092226d3dd7da40474", - "symbol": "OPCAT", - "decimals": 18, - "name": "OPCAT", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xdaa7699352ac8709f3d2fd092226d3dd7da40474.png", - "aggregators": [ - "CoinMarketCap", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x49446a0874197839d15395b908328a74ccc96bc0": { - "address": "0x49446a0874197839d15395b908328a74ccc96bc0", - "symbol": "MSTETH", - "decimals": 18, - "name": "Eigenpie mstETH", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x49446a0874197839d15395b908328a74ccc96bc0.png", - "aggregators": [ - "CoinMarketCap", - "LiFi", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x328ea6e5ba4cc4b58799f2aec3d8ba839f4314ba": { - "address": "0x328ea6e5ba4cc4b58799f2aec3d8ba839f4314ba", - "symbol": "TRUMAGA", - "decimals": 18, - "name": "TrumpMAGA", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x328ea6e5ba4cc4b58799f2aec3d8ba839f4314ba.png", - "aggregators": [ - "CoinMarketCap", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0xd9ebbc7970e26b4eced7323b9331763e8272d011": { - "address": "0xd9ebbc7970e26b4eced7323b9331763e8272d011", - "symbol": "TYBENG", - "decimals": 18, - "name": "TYBENG", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xd9ebbc7970e26b4eced7323b9331763e8272d011.png", - "aggregators": [ - "CoinMarketCap", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x9cbefeec232cdbe428ec59ce310c6febc01d6163": { - "address": "0x9cbefeec232cdbe428ec59ce310c6febc01d6163", - "symbol": "FLOCHI", - "decimals": 18, - "name": "Flochi", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x9cbefeec232cdbe428ec59ce310c6febc01d6163.png", - "aggregators": [ - "CoinMarketCap", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0xa7d48da33cf6ac74ed2ba71b7e33005dc51adbb7": { - "address": "0xa7d48da33cf6ac74ed2ba71b7e33005dc51adbb7", - "symbol": "KAAI", - "decimals": 9, - "name": "KanzzAI", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xa7d48da33cf6ac74ed2ba71b7e33005dc51adbb7.png", - "aggregators": [ - "CoinMarketCap", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0xe5db5128935e3a8a8eaeabe4577fac2b353ae9fa": { - "address": "0xe5db5128935e3a8a8eaeabe4577fac2b353ae9fa", - "symbol": "AURK", - "decimals": 18, - "name": "Aurk AI", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xe5db5128935e3a8a8eaeabe4577fac2b353ae9fa.png", - "aggregators": [ - "CoinMarketCap", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0xb868cca38a8e6348d8d299c9b3c80e63d45abe4c": { - "address": "0xb868cca38a8e6348d8d299c9b3c80e63d45abe4c", - "symbol": "FUSION", - "decimals": 9, - "name": "Fusion AI", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xb868cca38a8e6348d8d299c9b3c80e63d45abe4c.png", - "aggregators": [ - "CoinMarketCap", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x733fd1b5aa477d55070546922ba1bd3751c167c7": { - "address": "0x733fd1b5aa477d55070546922ba1bd3751c167c7", - "symbol": "ZKGPT", - "decimals": 18, - "name": "ZKGPT", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x733fd1b5aa477d55070546922ba1bd3751c167c7.png", - "aggregators": [ - "CoinMarketCap", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0xc5b1aa70410a86383f93d807d02b75f1c34cddb8": { - "address": "0xc5b1aa70410a86383f93d807d02b75f1c34cddb8", - "symbol": "PULSE", - "decimals": 18, - "name": "Pulse3D", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xc5b1aa70410a86383f93d807d02b75f1c34cddb8.png", - "aggregators": [ - "CoinMarketCap", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x384efd1e8b05c23dc392a40cb4e515e2229a5243": { - "address": "0x384efd1e8b05c23dc392a40cb4e515e2229a5243", - "symbol": "HXAI", - "decimals": 9, - "name": "Healix AI", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x384efd1e8b05c23dc392a40cb4e515e2229a5243.png", - "aggregators": [ - "CoinMarketCap", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x123fb3dfa7d082291d822ceedaabe3aa0c3f7758": { - "address": "0x123fb3dfa7d082291d822ceedaabe3aa0c3f7758", - "symbol": "QAI", - "decimals": 9, - "name": "QuantaAI", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x123fb3dfa7d082291d822ceedaabe3aa0c3f7758.png", - "aggregators": [ - "CoinMarketCap", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0xf453579d18a6f8ca07db9250e0e0100eb8ccb206": { - "address": "0xf453579d18a6f8ca07db9250e0e0100eb8ccb206", - "symbol": "CIPHER", - "decimals": 18, - "name": "Cipher Protocol", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xf453579d18a6f8ca07db9250e0e0100eb8ccb206.png", - "aggregators": [ - "CoinMarketCap", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x5485a469faea1492191cfce7528ab6e58135aa4d": { - "address": "0x5485a469faea1492191cfce7528ab6e58135aa4d", - "symbol": "OSMI", - "decimals": 18, - "name": "OSMI", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x5485a469faea1492191cfce7528ab6e58135aa4d.png", - "aggregators": [ - "CoinMarketCap", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0xb8690004604b0352b3832408ba7e02fe717e9cfd": { - "address": "0xb8690004604b0352b3832408ba7e02fe717e9cfd", - "symbol": "AGI", - "decimals": 9, - "name": "Agently", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xb8690004604b0352b3832408ba7e02fe717e9cfd.png", - "aggregators": [ - "CoinMarketCap", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0xec2bc2b25ab6ed8e669e202cd0ee533e24c9a068": { - "address": "0xec2bc2b25ab6ed8e669e202cd0ee533e24c9a068", - "symbol": "ZKEX", - "decimals": 18, - "name": "zkExchange", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xec2bc2b25ab6ed8e669e202cd0ee533e24c9a068.png", - "aggregators": [ - "CoinMarketCap", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x89ca762f778c82120c13c79a9bfbdf6e8e663ab4": { - "address": "0x89ca762f778c82120c13c79a9bfbdf6e8e663ab4", - "symbol": "RISE", - "decimals": 18, - "name": "AdRise", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x89ca762f778c82120c13c79a9bfbdf6e8e663ab4.png", - "aggregators": [ - "CoinMarketCap", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x4e241a9ec66832a16bceaeb9156e524487f061d7": { - "address": "0x4e241a9ec66832a16bceaeb9156e524487f061d7", - "symbol": "ETF", - "decimals": 18, - "name": "ETF Rocks", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x4e241a9ec66832a16bceaeb9156e524487f061d7.png", - "aggregators": [ - "Metamask", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x00907f9921424583e7ffbfedf84f92b7b2be4977": { - "address": "0x00907f9921424583e7ffbfedf84f92b7b2be4977", - "symbol": "AETHGHO", - "decimals": 18, - "name": "Aave Ethereum GHO", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x00907f9921424583e7ffbfedf84f92b7b2be4977.png", - "aggregators": ["1inch", "LiFi", "Socket", "Rubic", "Rango"], - "occurrences": 5 - }, - "0xd6ad7a6750a7593e092a9b218d66c0a814a3436e": { - "address": "0xd6ad7a6750a7593e092a9b218d66c0a814a3436e", - "symbol": "YUSDC", - "decimals": 6, - "name": "iearn USDC", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xd6ad7a6750a7593e092a9b218d66c0a814a3436e.png", - "aggregators": ["1inch", "LiFi", "Socket", "Rubic", "Rango"], - "occurrences": 5 - }, - "0xc2cb1040220768554cf699b0d863a3cd4324ce32": { - "address": "0xc2cb1040220768554cf699b0d863a3cd4324ce32", - "symbol": "YDAI", - "decimals": 18, - "name": "iearn DAI", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xc2cb1040220768554cf699b0d863a3cd4324ce32.png", - "aggregators": ["1inch", "LiFi", "Socket", "Rubic", "Rango"], - "occurrences": 5 - }, - "0x26ea744e5b887e5205727f55dfbe8685e3b21951": { - "address": "0x26ea744e5b887e5205727f55dfbe8685e3b21951", - "symbol": "YUSDC", - "decimals": 6, - "name": "iearn USDC", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x26ea744e5b887e5205727f55dfbe8685e3b21951.png", - "aggregators": ["1inch", "LiFi", "Socket", "Rubic", "Rango"], - "occurrences": 5 - }, - "0x16de59092dae5ccf4a1e6439d611fd0653f0bd01": { - "address": "0x16de59092dae5ccf4a1e6439d611fd0653f0bd01", - "symbol": "YDAI", - "decimals": 18, - "name": "iearn DAI", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x16de59092dae5ccf4a1e6439d611fd0653f0bd01.png", - "aggregators": ["1inch", "LiFi", "Socket", "Rubic", "Rango"], - "occurrences": 5 - }, - "0x865ec58b06bf6305b886793aa20a2da31d034e68": { - "address": "0x865ec58b06bf6305b886793aa20a2da31d034e68", - "symbol": "MOC", - "decimals": 18, - "name": "Mossland", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x865ec58b06bf6305b886793aa20a2da31d034e68.png", - "aggregators": ["LiFi", "Socket", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 5 - }, - "0x43e54c2e7b3e294de3a155785f52ab49d87b9922": { - "address": "0x43e54c2e7b3e294de3a155785f52ab49d87b9922", - "symbol": "ASDCRV", - "decimals": 18, - "name": "Aladdin sdCRV", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x43e54c2e7b3e294de3a155785f52ab49d87b9922.png", - "aggregators": ["LiFi", "Socket", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 5 - }, - "0xbc4171f45ef0ef66e76f979df021a34b46dcc81d": { - "address": "0xbc4171f45ef0ef66e76f979df021a34b46dcc81d", - "symbol": "DORA", - "decimals": 18, - "name": "Dora Factory OLD", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xbc4171f45ef0ef66e76f979df021a34b46dcc81d.png", - "aggregators": ["LiFi", "Socket", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 5 - }, - "0xa43a7c62d56df036c187e1966c03e2799d8987ed": { - "address": "0xa43a7c62d56df036c187e1966c03e2799d8987ed", - "symbol": "TRUMATIC", - "decimals": 18, - "name": "TruFin Staked MATIC", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xa43a7c62d56df036c187e1966c03e2799d8987ed.png", - "aggregators": ["LiFi", "Socket", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 5 - }, - "0xc5bbae50781be1669306b9e001eff57a2957b09d": { - "address": "0xc5bbae50781be1669306b9e001eff57a2957b09d", - "symbol": "GTO", - "decimals": 5, - "name": "Gifto", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xc5bbae50781be1669306b9e001eff57a2957b09d.png", - "aggregators": ["LiFi", "Socket", "Rubic", "Rango", "Bancor"], - "occurrences": 5 - }, - "0xb624fde1a972b1c89ec1dad691442d5e8e891469": { - "address": "0xb624fde1a972b1c89ec1dad691442d5e8e891469", - "symbol": "SPORK", - "decimals": 18, - "name": "SporkDAO", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xb624fde1a972b1c89ec1dad691442d5e8e891469.png", - "aggregators": ["LiFi", "Socket", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 5 - }, - "0xdf35988d795d90711e785b488bb2127692e6f956": { - "address": "0xdf35988d795d90711e785b488bb2127692e6f956", - "symbol": "BABYFLOKI", - "decimals": 9, - "name": "BabyFloki", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xdf35988d795d90711e785b488bb2127692e6f956.png", - "aggregators": ["LiFi", "Socket", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 5 - }, - "0xf88baf18fab7e330fa0c4f83949e23f52fececce": { - "address": "0xf88baf18fab7e330fa0c4f83949e23f52fececce", - "symbol": "GRAIN", - "decimals": 18, - "name": "Granary", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xf88baf18fab7e330fa0c4f83949e23f52fececce.png", - "aggregators": ["LiFi", "Rubic", "Squid", "Rango", "Sonarwatch"], - "occurrences": 5 - }, - "0xa80f2c8f61c56546001f5fc2eb8d6e4e72c45d4c": { - "address": "0xa80f2c8f61c56546001f5fc2eb8d6e4e72c45d4c", - "symbol": "UNQT", - "decimals": 18, - "name": "Unique Utility", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xa80f2c8f61c56546001f5fc2eb8d6e4e72c45d4c.png", - "aggregators": ["LiFi", "Socket", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 5 - }, - "0x9348e94a447bf8b2ec11f374d3f055fd47d936df": { - "address": "0x9348e94a447bf8b2ec11f374d3f055fd47d936df", - "symbol": "FLAG", - "decimals": 18, - "name": "For Loot And Glory", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x9348e94a447bf8b2ec11f374d3f055fd47d936df.png", - "aggregators": ["LiFi", "Socket", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 5 - }, - "0xd3043d66afe00344c115f7f81d18277c5c718ff8": { - "address": "0xd3043d66afe00344c115f7f81d18277c5c718ff8", - "symbol": "OMUSD", - "decimals": 6, - "name": "OpenMoney USD", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xd3043d66afe00344c115f7f81d18277c5c718ff8.png", - "aggregators": ["LiFi", "Socket", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 5 - }, - "0xc2e660c62f72c2ad35ace6db78a616215e2f2222": { - "address": "0xc2e660c62f72c2ad35ace6db78a616215e2f2222", - "symbol": "ZUNETH", - "decimals": 18, - "name": "Zunami ETH", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xc2e660c62f72c2ad35ace6db78a616215e2f2222.png", - "aggregators": ["LiFi", "Socket", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 5 - }, - "0xbc138bd20c98186cc0342c8e380953af0cb48ba8": { - "address": "0xbc138bd20c98186cc0342c8e380953af0cb48ba8", - "symbol": "CNDL", - "decimals": 18, - "name": "Candle", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xbc138bd20c98186cc0342c8e380953af0cb48ba8.png", - "aggregators": ["Socket", "Rubic", "Rango", "SushiSwap", "Bancor"], - "occurrences": 5 - }, - "0x44f49ff0da2498bcb1d3dc7c0f999578f67fd8c6": { - "address": "0x44f49ff0da2498bcb1d3dc7c0f999578f67fd8c6", - "symbol": "CORN", - "decimals": 18, - "name": "Corn", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x44f49ff0da2498bcb1d3dc7c0f999578f67fd8c6.png", - "aggregators": ["CoinMarketCap", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0xa3ee21c306a700e682abcdfe9baa6a08f3820419": { - "address": "0xa3ee21c306a700e682abcdfe9baa6a08f3820419", - "symbol": "CTC", - "decimals": 18, - "name": "Creditcoin", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xa3ee21c306a700e682abcdfe9baa6a08f3820419.png", - "aggregators": ["CoinMarketCap", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0x3212b29e33587a00fb1c83346f5dbfa69a458923": { - "address": "0x3212b29e33587a00fb1c83346f5dbfa69a458923", - "symbol": "IMBTC", - "decimals": 8, - "name": "The Tokenized Bitcoin", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x3212b29e33587a00fb1c83346f5dbfa69a458923.png", - "aggregators": ["CoinMarketCap", "LiFi", "Rubic", "Rango"], - "occurrences": 4 - }, - "0x913d8adf7ce6986a8cbfee5a54725d9eea4f0729": { - "address": "0x913d8adf7ce6986a8cbfee5a54725d9eea4f0729", - "symbol": "EASY", - "decimals": 18, - "name": "EASY", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x913d8adf7ce6986a8cbfee5a54725d9eea4f0729.png", - "aggregators": ["CMC", "LiFi", "Rubic", "Rango"], - "occurrences": 4 - }, - "0x77c6e4a580c0dce4e5c7a17d0bc077188a83a059": { - "address": "0x77c6e4a580c0dce4e5c7a17d0bc077188a83a059", - "symbol": "SWUSD", - "decimals": 18, - "name": "Swerve fi USD", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x77c6e4a580c0dce4e5c7a17d0bc077188a83a059.png", - "aggregators": ["CoinMarketCap", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0xd5e0eda0214f1d05af466e483d9376a77a67448b": { - "address": "0xd5e0eda0214f1d05af466e483d9376a77a67448b", - "symbol": "TRALA", - "decimals": 18, - "name": "TRALA TOKEN", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xd5e0eda0214f1d05af466e483d9376a77a67448b.png", - "aggregators": ["CoinMarketCap", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0xbdab72602e9ad40fc6a6852caf43258113b8f7a5": { - "address": "0xbdab72602e9ad40fc6a6852caf43258113b8f7a5", - "symbol": "SOV", - "decimals": 18, - "name": "Sovryn", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xbdab72602e9ad40fc6a6852caf43258113b8f7a5.png", - "aggregators": ["CoinMarketCap", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0xea01906843ea8d910658a2c485ffce7c104ab2b6": { - "address": "0xea01906843ea8d910658a2c485ffce7c104ab2b6", - "symbol": "QTO", - "decimals": 18, - "name": "Qtoken", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xea01906843ea8d910658a2c485ffce7c104ab2b6.png", - "aggregators": ["CoinMarketCap", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0xbf776e4fca664d791c4ee3a71e2722990e003283": { - "address": "0xbf776e4fca664d791c4ee3a71e2722990e003283", - "symbol": "SMTY", - "decimals": 18, - "name": "Smoothy", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xbf776e4fca664d791c4ee3a71e2722990e003283.png", - "aggregators": ["CoinMarketCap", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0x9a64977ebf739dff35ed4281a4b5e833bfdb1314": { - "address": "0x9a64977ebf739dff35ed4281a4b5e833bfdb1314", - "symbol": "NFTFN", - "decimals": 18, - "name": "NFTFN", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x9a64977ebf739dff35ed4281a4b5e833bfdb1314.png", - "aggregators": ["CoinMarketCap", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0x75ecb52e403c617679fbd3e77a50f9d10a842387": { - "address": "0x75ecb52e403c617679fbd3e77a50f9d10a842387", - "symbol": "CSR", - "decimals": 18, - "name": "CSR", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x75ecb52e403c617679fbd3e77a50f9d10a842387.png", - "aggregators": ["CoinMarketCap", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0x92d529163c5e880b9de86f01de0cb8924d790357": { - "address": "0x92d529163c5e880b9de86f01de0cb8924d790357", - "symbol": "EYE", - "decimals": 18, - "name": "Eyeverse", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x92d529163c5e880b9de86f01de0cb8924d790357.png", - "aggregators": ["CoinMarketCap", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0x940bdcb99a0ee5fb008a606778ae87ed9789f257": { - "address": "0x940bdcb99a0ee5fb008a606778ae87ed9789f257", - "symbol": "JFIN", - "decimals": 18, - "name": "JFIN Coin", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x940bdcb99a0ee5fb008a606778ae87ed9789f257.png", - "aggregators": ["CoinMarketCap", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0xface851a4921ce59e912d19329929ce6da6eb0c7": { - "address": "0xface851a4921ce59e912d19329929ce6da6eb0c7", - "symbol": "CLINK", - "decimals": 8, - "name": "cLINK", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xface851a4921ce59e912d19329929ce6da6eb0c7.png", - "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0x8bc2bcb1b1896291942c36f3cca3c1afa0aaa7fd": { - "address": "0x8bc2bcb1b1896291942c36f3cca3c1afa0aaa7fd", - "symbol": "PACE", - "decimals": 18, - "name": "3SPACE ART", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x8bc2bcb1b1896291942c36f3cca3c1afa0aaa7fd.png", - "aggregators": ["Metamask", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0x744030ad4e6c10faf5483b62473d88a254d62261": { - "address": "0x744030ad4e6c10faf5483b62473d88a254d62261", - "symbol": "NLK", - "decimals": 18, - "name": "NuLink", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x744030ad4e6c10faf5483b62473d88a254d62261.png", - "aggregators": ["CoinMarketCap", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0x03042ae6fcfd53e3a0baa1fab5ce70e0cb74e6fb": { - "address": "0x03042ae6fcfd53e3a0baa1fab5ce70e0cb74e6fb", - "symbol": "TBC", - "decimals": 18, - "name": "Ten Best Coins", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x03042ae6fcfd53e3a0baa1fab5ce70e0cb74e6fb.png", - "aggregators": ["CoinMarketCap", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0x213c53c96a01a89e6dcc5683cf16473203e17513": { - "address": "0x213c53c96a01a89e6dcc5683cf16473203e17513", - "symbol": "DSS", - "decimals": 18, - "name": "Defi Shopping Stake", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x213c53c96a01a89e6dcc5683cf16473203e17513.png", - "aggregators": ["CoinMarketCap", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0x25c7b64a93eb1261e130ec21a3e9918caa38b611": { - "address": "0x25c7b64a93eb1261e130ec21a3e9918caa38b611", - "symbol": "WVG0", - "decimals": 18, - "name": "Wrapped Virgin Gen 0 CryptoKittties", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x25c7b64a93eb1261e130ec21a3e9918caa38b611.png", - "aggregators": ["CoinMarketCap", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0x6876eba317272fe221c67405c5e8eb3b24535547": { - "address": "0x6876eba317272fe221c67405c5e8eb3b24535547", - "symbol": "MCT", - "decimals": 18, - "name": "MicroTuber", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x6876eba317272fe221c67405c5e8eb3b24535547.png", - "aggregators": ["CoinMarketCap", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0x3e9c3dc19efe4271d1a65facfca55906045f7b08": { - "address": "0x3e9c3dc19efe4271d1a65facfca55906045f7b08", - "symbol": "FROGS", - "decimals": 18, - "name": "Frogs", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x3e9c3dc19efe4271d1a65facfca55906045f7b08.png", - "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0x6368e1e18c4c419ddfc608a0bed1ccb87b9250fc": { - "address": "0x6368e1e18c4c419ddfc608a0bed1ccb87b9250fc", - "symbol": "XTP", - "decimals": 18, - "name": "Tap", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x6368e1e18c4c419ddfc608a0bed1ccb87b9250fc.png", - "aggregators": ["CoinMarketCap", "LiFi", "Socket", "Rubic"], - "occurrences": 4 - }, - "0x7a41e0517a5eca4fdbc7fbeba4d4c47b9ff6dc63": { - "address": "0x7a41e0517a5eca4fdbc7fbeba4d4c47b9ff6dc63", - "symbol": "ZSC", - "decimals": 18, - "name": "Zeusshield", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x7a41e0517a5eca4fdbc7fbeba4d4c47b9ff6dc63.png", - "aggregators": ["CoinMarketCap", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0xe7f72bc0252ca7b16dbb72eeee1afcdb2429f2dd": { - "address": "0xe7f72bc0252ca7b16dbb72eeee1afcdb2429f2dd", - "symbol": "NFTL", - "decimals": 18, - "name": "NFTLaunch", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xe7f72bc0252ca7b16dbb72eeee1afcdb2429f2dd.png", - "aggregators": ["CoinMarketCap", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0xc8495eaff71d3a563b906295fcf2f685b1783085": { - "address": "0xc8495eaff71d3a563b906295fcf2f685b1783085", - "symbol": "MHYPERBTC", - "decimals": 18, - "name": "Midas Hyperithm BTC", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xc8495eaff71d3a563b906295fcf2f685b1783085.png", - "aggregators": ["CoinGecko", "LiFi", "Rubic"], - "occurrences": 3 - }, - "0x910c4da718caf4ee38ce5c2490cddaeca689204e": { - "address": "0x910c4da718caf4ee38ce5c2490cddaeca689204e", - "symbol": "WACO", - "decimals": 18, - "name": "Waste Digital Coin", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x910c4da718caf4ee38ce5c2490cddaeca689204e.png", - "aggregators": ["CoinMarketCap", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0x5c697fee285b513711a816018dbb34dc0cfc4875": { - "address": "0x5c697fee285b513711a816018dbb34dc0cfc4875", - "symbol": "MNTX", - "decimals": 18, - "name": "Minutes Network Token", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x5c697fee285b513711a816018dbb34dc0cfc4875.png", - "aggregators": ["CoinMarketCap", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0x337af08bb6980ecb68389c5ed8876d08643abf8a": { - "address": "0x337af08bb6980ecb68389c5ed8876d08643abf8a", - "symbol": "VACHI", - "decimals": 18, - "name": "NOVAWCHI", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x337af08bb6980ecb68389c5ed8876d08643abf8a.png", - "aggregators": ["CoinMarketCap", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0x0000000005c6b7c1fd10915a05f034f90d524d6e": { - "address": "0x0000000005c6b7c1fd10915a05f034f90d524d6e", - "symbol": "TRYC", - "decimals": 6, - "name": "TRYC", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x0000000005c6b7c1fd10915a05f034f90d524d6e.png", - "aggregators": ["CoinMarketCap", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0xc502002aeb1b9309fccb016adf50507987fc6c2b": { - "address": "0xc502002aeb1b9309fccb016adf50507987fc6c2b", - "symbol": "GNFT", - "decimals": 18, - "name": "GNFT", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xc502002aeb1b9309fccb016adf50507987fc6c2b.png", - "aggregators": ["CoinMarketCap", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0x1045f5ccb01daea4f8eab055f5fcbb7c0e7c89f0": { - "address": "0x1045f5ccb01daea4f8eab055f5fcbb7c0e7c89f0", - "symbol": "DFIAT", - "decimals": 18, - "name": "DeFiato", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x1045f5ccb01daea4f8eab055f5fcbb7c0e7c89f0.png", - "aggregators": ["CoinMarketCap", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0xde2f7766c8bf14ca67193128535e5c7454f8387c": { - "address": "0xde2f7766c8bf14ca67193128535e5c7454f8387c", - "symbol": "META", - "decimals": 18, - "name": "Metadium", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xde2f7766c8bf14ca67193128535e5c7454f8387c.png", - "aggregators": ["CoinMarketCap", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0xd87de4ccef2c2fe651bc4d130cb1a365248f21fa": { - "address": "0xd87de4ccef2c2fe651bc4d130cb1a365248f21fa", - "symbol": "LYFE", - "decimals": 18, - "name": "Lyfe", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xd87de4ccef2c2fe651bc4d130cb1a365248f21fa.png", - "aggregators": ["CoinMarketCap", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0x547b2f82cecfab9c2b1d36fdda96ef9f58c63b8c": { - "address": "0x547b2f82cecfab9c2b1d36fdda96ef9f58c63b8c", - "symbol": "TXT", - "decimals": 18, - "name": "Taxa Network", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x547b2f82cecfab9c2b1d36fdda96ef9f58c63b8c.png", - "aggregators": ["CoinMarketCap", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0x0262e9374e95b9667b78136c3897cb4e4ef7f0c2": { - "address": "0x0262e9374e95b9667b78136c3897cb4e4ef7f0c2", - "symbol": "FAKT", - "decimals": 18, - "name": "Medifakt", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x0262e9374e95b9667b78136c3897cb4e4ef7f0c2.png", - "aggregators": ["CoinMarketCap", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0x4d4d883f920f7c0c36a1be71a02aa0cde2aa22d1": { - "address": "0x4d4d883f920f7c0c36a1be71a02aa0cde2aa22d1", - "symbol": "OPCH", - "decimals": 18, - "name": "Opticash", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x4d4d883f920f7c0c36a1be71a02aa0cde2aa22d1.png", - "aggregators": ["CoinMarketCap", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0x74b1af114274335598da72f5c6ed7b954a016eed": { - "address": "0x74b1af114274335598da72f5c6ed7b954a016eed", - "symbol": "HIT", - "decimals": 18, - "name": "HitBTC", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x74b1af114274335598da72f5c6ed7b954a016eed.png", - "aggregators": ["CoinMarketCap", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0x116c4b65e14449947bc6fa1bbe844cb16a162d53": { - "address": "0x116c4b65e14449947bc6fa1bbe844cb16a162d53", - "symbol": "BMAX", - "decimals": 18, - "name": "BMAX", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x116c4b65e14449947bc6fa1bbe844cb16a162d53.png", - "aggregators": ["CoinMarketCap", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0xbd04ccc050058a6a422851fa6c0f92bb65eb06ca": { - "address": "0xbd04ccc050058a6a422851fa6c0f92bb65eb06ca", - "symbol": "PRTG", - "decimals": 18, - "name": "Pre Retogeum", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xbd04ccc050058a6a422851fa6c0f92bb65eb06ca.png", - "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0xe9f84d418b008888a992ff8c6d22389c2c3504e0": { - "address": "0xe9f84d418b008888a992ff8c6d22389c2c3504e0", - "symbol": "BASE", - "decimals": 8, - "name": "Maximus BASE", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xe9f84d418b008888a992ff8c6d22389c2c3504e0.png", - "aggregators": ["CoinMarketCap", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0xf55cd1e399e1cc3d95303048897a680be3313308": { - "address": "0xf55cd1e399e1cc3d95303048897a680be3313308", - "symbol": "TRIO", - "decimals": 8, - "name": "Maximus TRIO", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xf55cd1e399e1cc3d95303048897a680be3313308.png", - "aggregators": ["CoinMarketCap", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0x6b0956258ff7bd7645aa35369b55b61b8e6d6140": { - "address": "0x6b0956258ff7bd7645aa35369b55b61b8e6d6140", - "symbol": "LUCKY", - "decimals": 8, - "name": "Maximus LUCKY", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x6b0956258ff7bd7645aa35369b55b61b8e6d6140.png", - "aggregators": ["CoinMarketCap", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0x56978e609f2cab06f77c5c8fd75166fcd8f09bd8": { - "address": "0x56978e609f2cab06f77c5c8fd75166fcd8f09bd8", - "symbol": "GENIE", - "decimals": 18, - "name": "GenieBot", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x56978e609f2cab06f77c5c8fd75166fcd8f09bd8.png", - "aggregators": ["CoinMarketCap", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0xba58444c8050ed9385b7417533a73644036d21eb": { - "address": "0xba58444c8050ed9385b7417533a73644036d21eb", - "symbol": "LOGT", - "decimals": 18, - "name": "Lord of Dragons", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xba58444c8050ed9385b7417533a73644036d21eb.png", - "aggregators": ["CoinMarketCap", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0x94d40b49f020bfebba1a80a0191eb3737b90e8d3": { - "address": "0x94d40b49f020bfebba1a80a0191eb3737b90e8d3", - "symbol": "MNTE", - "decimals": 18, - "name": "Mintera", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x94d40b49f020bfebba1a80a0191eb3737b90e8d3.png", - "aggregators": ["CoinMarketCap", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0xf6ccfd6ef2850e84b73adeace9a075526c5910d4": { - "address": "0xf6ccfd6ef2850e84b73adeace9a075526c5910d4", - "symbol": "RUNIX", - "decimals": 18, - "name": "THE RUNIX TOKEN", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xf6ccfd6ef2850e84b73adeace9a075526c5910d4.png", - "aggregators": ["CoinMarketCap", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0x2a304fda5a85182dca1d03741bb2f07881b9e095": { - "address": "0x2a304fda5a85182dca1d03741bb2f07881b9e095", - "symbol": "DCO", - "decimals": 8, - "name": "DCOMY", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x2a304fda5a85182dca1d03741bb2f07881b9e095.png", - "aggregators": ["CoinMarketCap", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0x7ee089ebb18771caf5bf483a4ee49c4de04295f2": { - "address": "0x7ee089ebb18771caf5bf483a4ee49c4de04295f2", - "symbol": "KEKIUSA", - "decimals": 9, - "name": "Kekius Maximusa", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x7ee089ebb18771caf5bf483a4ee49c4de04295f2.png", - "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0x7c95e7ad2b349dc2f82d0f1117a44b561fa2699a": { - "address": "0x7c95e7ad2b349dc2f82d0f1117a44b561fa2699a", - "symbol": "GRACY", - "decimals": 18, - "name": "Gracy", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x7c95e7ad2b349dc2f82d0f1117a44b561fa2699a.png", - "aggregators": ["CoinMarketCap", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0x6ef460eb3563cfcc73f8147b0a77daffee71f867": { - "address": "0x6ef460eb3563cfcc73f8147b0a77daffee71f867", - "symbol": "ZEUS", - "decimals": 18, - "name": "Zeus AI", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x6ef460eb3563cfcc73f8147b0a77daffee71f867.png", - "aggregators": ["CoinMarketCap", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0x9ca8530ca349c966fe9ef903df17a75b8a778927": { - "address": "0x9ca8530ca349c966fe9ef903df17a75b8a778927", - "symbol": "LCAI", - "decimals": 18, - "name": "Lightchain AI", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x9ca8530ca349c966fe9ef903df17a75b8a778927.png", - "aggregators": ["CoinMarketCap", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0xf3bb9f16677f2b86efd1dfca1c141a99783fde58": { - "address": "0xf3bb9f16677f2b86efd1dfca1c141a99783fde58", - "symbol": "CROWN", - "decimals": 18, - "name": "Crown Token", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xf3bb9f16677f2b86efd1dfca1c141a99783fde58.png", - "aggregators": ["CoinMarketCap", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0x1c9a2d6b33b4826757273d47ebee0e2dddcd978b": { - "address": "0x1c9a2d6b33b4826757273d47ebee0e2dddcd978b", - "symbol": "FFRAX", - "decimals": 8, - "name": "Flux FRAX", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x1c9a2d6b33b4826757273d47ebee0e2dddcd978b.png", - "aggregators": ["CoinMarketCap", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0x666cbfaa3baa2faccfac8854fea1e5db140fb104": { - "address": "0x666cbfaa3baa2faccfac8854fea1e5db140fb104", - "symbol": "PLUMS", - "decimals": 18, - "name": "PLUMS", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x666cbfaa3baa2faccfac8854fea1e5db140fb104.png", - "aggregators": ["CoinMarketCap", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0x8e235f491ae66b82296d58332adc2a021c449c10": { - "address": "0x8e235f491ae66b82296d58332adc2a021c449c10", - "symbol": "TIPJA", - "decimals": 18, - "name": "Tipja", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x8e235f491ae66b82296d58332adc2a021c449c10.png", - "aggregators": ["CoinMarketCap", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0x2f123cf3f37ce3328cc9b5b8415f9ec5109b45e7": { - "address": "0x2f123cf3f37ce3328cc9b5b8415f9ec5109b45e7", - "symbol": "BC3M", - "decimals": 18, - "name": "Backed GOVIES 0 6 months EURO", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x2f123cf3f37ce3328cc9b5b8415f9ec5109b45e7.png", - "aggregators": ["CoinMarketCap", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0x58083b54013631bacc0bbb6d4efa543fee1d9ce0": { - "address": "0x58083b54013631bacc0bbb6d4efa543fee1d9ce0", - "symbol": "FRC", - "decimals": 18, - "name": "Force", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x58083b54013631bacc0bbb6d4efa543fee1d9ce0.png", - "aggregators": ["CoinMarketCap", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0x34bc13de8e5124a7c47d4b7ff7c5ade6ee34faba": { - "address": "0x34bc13de8e5124a7c47d4b7ff7c5ade6ee34faba", - "symbol": "DOJO", - "decimals": 18, - "name": "Project Dojo", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x34bc13de8e5124a7c47d4b7ff7c5ade6ee34faba.png", - "aggregators": ["CoinMarketCap", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0x4db57d585fa82ca32d25086ddc069d899f08d455": { - "address": "0x4db57d585fa82ca32d25086ddc069d899f08d455", - "symbol": "ENOCH", - "decimals": 18, - "name": "Enoch", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x4db57d585fa82ca32d25086ddc069d899f08d455.png", - "aggregators": ["CoinMarketCap", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0xbdbdbdd0c22888e63cb9098ad6d68439197cb091": { - "address": "0xbdbdbdd0c22888e63cb9098ad6d68439197cb091", - "symbol": "BDXN", - "decimals": 18, - "name": "Bondex", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xbdbdbdd0c22888e63cb9098ad6d68439197cb091.png", - "aggregators": ["CoinMarketCap", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0x848896470d989f30503d8f883c331f63b73b66ea": { - "address": "0x848896470d989f30503d8f883c331f63b73b66ea", - "symbol": "MDI", - "decimals": 18, - "name": "Medicle", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x848896470d989f30503d8f883c331f63b73b66ea.png", - "aggregators": ["CoinMarketCap", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0x1cdd2eab61112697626f7b4bb0e23da4febf7b7c": { - "address": "0x1cdd2eab61112697626f7b4bb0e23da4febf7b7c", - "symbol": "USDTSO", - "decimals": 6, - "name": "Bridged Tether Wormhole", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x1cdd2eab61112697626f7b4bb0e23da4febf7b7c.png", - "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0xa40640458fbc27b6eefedea1e9c9e17d4cee7a21": { - "address": "0xa40640458fbc27b6eefedea1e9c9e17d4cee7a21", - "symbol": "AEUR", - "decimals": 18, - "name": "Anchored Coins AEUR", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xa40640458fbc27b6eefedea1e9c9e17d4cee7a21.png", - "aggregators": ["CoinMarketCap", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0x55b2cfcfe99110c773f00b023560dd9ef6c8a13b": { - "address": "0x55b2cfcfe99110c773f00b023560dd9ef6c8a13b", - "symbol": "CDETI", - "decimals": 18, - "name": "Index Coop CoinDesk ETH Trend Index", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x55b2cfcfe99110c773f00b023560dd9ef6c8a13b.png", - "aggregators": ["CoinMarketCap", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0x901ea3606d567f9f1e964639d5cbb8659080be8a": { - "address": "0x901ea3606d567f9f1e964639d5cbb8659080be8a", - "symbol": "CWT", - "decimals": 18, - "name": "CoinW", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x901ea3606d567f9f1e964639d5cbb8659080be8a.png", - "aggregators": ["CoinMarketCap", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0x5c59a5b139b0538cb106d775a022cad98dd14b5a": { - "address": "0x5c59a5b139b0538cb106d775a022cad98dd14b5a", - "symbol": "ORT", - "decimals": 18, - "name": "XREATORS", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x5c59a5b139b0538cb106d775a022cad98dd14b5a.png", - "aggregators": ["CoinMarketCap", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0xdc5e9445169c73cf21e1da0b270e8433cac69959": { - "address": "0xdc5e9445169c73cf21e1da0b270e8433cac69959", - "symbol": "ETHEREUM", - "decimals": 9, - "name": "Ketaicoin", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xdc5e9445169c73cf21e1da0b270e8433cac69959.png", - "aggregators": ["CoinMarketCap", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0x34dce75a3d1910cc9d188aa5a75fb9addcae0fcc": { - "address": "0x34dce75a3d1910cc9d188aa5a75fb9addcae0fcc", - "symbol": "XV", - "decimals": 18, - "name": "XV", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x34dce75a3d1910cc9d188aa5a75fb9addcae0fcc.png", - "aggregators": ["CoinMarketCap", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0x7cd017ca5ddb86861fa983a34b5f495c6f898c41": { - "address": "0x7cd017ca5ddb86861fa983a34b5f495c6f898c41", - "symbol": "WUSD", - "decimals": 18, - "name": "Worldwide USD", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x7cd017ca5ddb86861fa983a34b5f495c6f898c41.png", - "aggregators": ["CoinMarketCap", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0x8ab98330473101309db94b625f9997366a518223": { - "address": "0x8ab98330473101309db94b625f9997366a518223", - "symbol": "PTH", - "decimals": 18, - "name": "PlasticHero", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x8ab98330473101309db94b625f9997366a518223.png", - "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0x7ecbb21346c501fd07eb165e406120fa32381c16": { - "address": "0x7ecbb21346c501fd07eb165e406120fa32381c16", - "symbol": "ECOREAL", - "decimals": 18, - "name": "Ecoreal Estate", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x7ecbb21346c501fd07eb165e406120fa32381c16.png", - "aggregators": ["CoinMarketCap", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0x97d2fc7d16bc34121c3311f2e2e05d298c19956f": { - "address": "0x97d2fc7d16bc34121c3311f2e2e05d298c19956f", - "symbol": "WFO", - "decimals": 18, - "name": "WoofOracle", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x97d2fc7d16bc34121c3311f2e2e05d298c19956f.png", - "aggregators": ["CoinMarketCap", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0x3eb9c7ee5f72e51f61e832137719fe8d1e53a2ce": { - "address": "0x3eb9c7ee5f72e51f61e832137719fe8d1e53a2ce", - "symbol": "DMIND", - "decimals": 9, - "name": "DecentraMind", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x3eb9c7ee5f72e51f61e832137719fe8d1e53a2ce.png", - "aggregators": ["CoinMarketCap", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0x50b806c5fe274c07e46b96be8c68d2fd2d9597b4": { - "address": "0x50b806c5fe274c07e46b96be8c68d2fd2d9597b4", - "symbol": "TUCKER", - "decimals": 18, - "name": "TUCKER CARLSON", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x50b806c5fe274c07e46b96be8c68d2fd2d9597b4.png", - "aggregators": ["CoinMarketCap", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0xe1a3864dbf62fb94834b108ff6bf439ce70183ac": { - "address": "0xe1a3864dbf62fb94834b108ff6bf439ce70183ac", - "symbol": "VXDEFI", - "decimals": 18, - "name": "vXDEFI", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xe1a3864dbf62fb94834b108ff6bf439ce70183ac.png", - "aggregators": ["CoinMarketCap", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0x8143182a775c54578c8b7b3ef77982498866945d": { - "address": "0x8143182a775c54578c8b7b3ef77982498866945d", - "symbol": "QUIL", - "decimals": 8, - "name": "Wrapped QUIL", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x8143182a775c54578c8b7b3ef77982498866945d.png", - "aggregators": ["CoinMarketCap", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0x04c618cdbc1d59142dfeb4b9864835a06983ec2d": { - "address": "0x04c618cdbc1d59142dfeb4b9864835a06983ec2d", - "symbol": "JSM", - "decimals": 18, - "name": "Joseon Mun", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x04c618cdbc1d59142dfeb4b9864835a06983ec2d.png", - "aggregators": ["CoinMarketCap", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0xdea736937d464d288ec80138bcd1a2e109a200e3": { - "address": "0xdea736937d464d288ec80138bcd1a2e109a200e3", - "symbol": "NETF", - "decimals": 6, - "name": "Nest ETF Vault", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xdea736937d464d288ec80138bcd1a2e109a200e3.png", - "aggregators": ["CoinGecko", "Rubic", "Sonarwatch"], - "occurrences": 3 - }, - "0x750c3a0a0ce9984eeb8c5d146dff024b584e5e33": { - "address": "0x750c3a0a0ce9984eeb8c5d146dff024b584e5e33", - "symbol": "ZKHIVE", - "decimals": 18, - "name": "zkHive", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x750c3a0a0ce9984eeb8c5d146dff024b584e5e33.png", - "aggregators": ["CoinMarketCap", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0xc3cc3076cb304494775b3193ef1aa080ba6bf962": { - "address": "0xc3cc3076cb304494775b3193ef1aa080ba6bf962", - "symbol": "ODGN", - "decimals": 18, - "name": "OrdiGen", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xc3cc3076cb304494775b3193ef1aa080ba6bf962.png", - "aggregators": ["CoinMarketCap", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0x77be1ba1cd2d7a63bffc772d361168cc327dd8bc": { - "address": "0x77be1ba1cd2d7a63bffc772d361168cc327dd8bc", - "symbol": "MEOW", - "decimals": 9, - "name": "Meow Meow Coin", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x77be1ba1cd2d7a63bffc772d361168cc327dd8bc.png", - "aggregators": ["Metamask", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0xe96edd48cf0c6e930ce55f171a721017b28e0f08": { - "address": "0xe96edd48cf0c6e930ce55f171a721017b28e0f08", - "symbol": "NEXUSAI", - "decimals": 9, - "name": "NexusAI", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xe96edd48cf0c6e930ce55f171a721017b28e0f08.png", - "aggregators": ["CoinMarketCap", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0x93b1e78a3e652cd2e71c4a767595b77282344932": { - "address": "0x93b1e78a3e652cd2e71c4a767595b77282344932", - "symbol": "BITO", - "decimals": 18, - "name": "BITO Coin", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x93b1e78a3e652cd2e71c4a767595b77282344932.png", - "aggregators": ["CoinMarketCap", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0x6a9da2d710bb9b700acde7cb81f10f1ff8c89041": { - "address": "0x6a9da2d710bb9b700acde7cb81f10f1ff8c89041", - "symbol": "BUIDL-I", - "decimals": 6, - "name": "BlackRock USD Institutional Digital Liq", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x6a9da2d710bb9b700acde7cb81f10f1ff8c89041.png", - "aggregators": ["CoinGecko", "Rubic", "Sonarwatch"], - "occurrences": 3 - }, - "0x2f57430a6ceda85a67121757785877b4a71b8e6d": { - "address": "0x2f57430a6ceda85a67121757785877b4a71b8e6d", - "symbol": "DFP2", - "decimals": 18, - "name": "DefiPlaza", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x2f57430a6ceda85a67121757785877b4a71b8e6d.png", - "aggregators": ["CoinMarketCap", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0xef3daa5fda8ad7aabff4658f1f78061fd626b8f0": { - "address": "0xef3daa5fda8ad7aabff4658f1f78061fd626b8f0", - "symbol": "MUZZ", - "decimals": 18, - "name": "MUZZLE", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xef3daa5fda8ad7aabff4658f1f78061fd626b8f0.png", - "aggregators": ["CoinMarketCap", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0x550775e17ed6767621a1aed580e6eb29ede981e9": { - "address": "0x550775e17ed6767621a1aed580e6eb29ede981e9", - "symbol": "AGN", - "decimals": 18, - "name": "Agnus AI", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x550775e17ed6767621a1aed580e6eb29ede981e9.png", - "aggregators": ["CoinMarketCap", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0x2103e845c5e135493bb6c2a4f0b8651956ea8682": { - "address": "0x2103e845c5e135493bb6c2a4f0b8651956ea8682", - "symbol": "XAUM", - "decimals": 18, - "name": "Matrixdock Gold", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x2103e845c5e135493bb6c2a4f0b8651956ea8682.png", - "aggregators": ["CoinMarketCap", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0x41b13e815308485f7f1af5afcc64a01519085609": { - "address": "0x41b13e815308485f7f1af5afcc64a01519085609", - "symbol": "KBT", - "decimals": 8, - "name": "KoinBay Token", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x41b13e815308485f7f1af5afcc64a01519085609.png", - "aggregators": ["CoinMarketCap", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0x9d14bce1daddf408d77295bb1be9b343814f44de": { - "address": "0x9d14bce1daddf408d77295bb1be9b343814f44de", - "symbol": "KOI", - "decimals": 18, - "name": "Koi", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x9d14bce1daddf408d77295bb1be9b343814f44de.png", - "aggregators": ["CoinMarketCap", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0x2ae21de576e0fe0367651ddcf76e04dd0608c076": { - "address": "0x2ae21de576e0fe0367651ddcf76e04dd0608c076", - "symbol": "GAMBIT", - "decimals": 18, - "name": "Gambit", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x2ae21de576e0fe0367651ddcf76e04dd0608c076.png", - "aggregators": ["CoinMarketCap", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0x3f91ad19af450b44cf5176b4de719d77cb19eec7": { - "address": "0x3f91ad19af450b44cf5176b4de719d77cb19eec7", - "symbol": "LTT", - "decimals": 18, - "name": "Luxury Travel Token", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x3f91ad19af450b44cf5176b4de719d77cb19eec7.png", - "aggregators": ["CoinMarketCap", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0x2a92525fda8d3ab481f8e2a913b64b64bd1c9fdd": { - "address": "0x2a92525fda8d3ab481f8e2a913b64b64bd1c9fdd", - "symbol": "WELF", - "decimals": 18, - "name": "WELF", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x2a92525fda8d3ab481f8e2a913b64b64bd1c9fdd.png", - "aggregators": ["CoinMarketCap", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0x66e535e8d2ebf13f49f3d49e5c50395a97c137b1": { - "address": "0x66e535e8d2ebf13f49f3d49e5c50395a97c137b1", - "symbol": "MOLTEN", - "decimals": 18, - "name": "Molten", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x66e535e8d2ebf13f49f3d49e5c50395a97c137b1.png", - "aggregators": ["CoinMarketCap", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0x60d91f6d394c5004a782e0d175e2b839e078fb83": { - "address": "0x60d91f6d394c5004a782e0d175e2b839e078fb83", - "symbol": "FDM", - "decimals": 18, - "name": "Freedom", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x60d91f6d394c5004a782e0d175e2b839e078fb83.png", - "aggregators": ["CoinMarketCap", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0x737d461917ccf0fa28a52da30672e2ddc214f0bf": { - "address": "0x737d461917ccf0fa28a52da30672e2ddc214f0bf", - "symbol": "OZK", - "decimals": 18, - "name": "OpenZK Network", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x737d461917ccf0fa28a52da30672e2ddc214f0bf.png", - "aggregators": ["CoinMarketCap", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0x5019fe1867d8ccfd76d8d5abd85db5efce548fba": { - "address": "0x5019fe1867d8ccfd76d8d5abd85db5efce548fba", - "symbol": "INT", - "decimals": 18, - "name": "InteNet", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x5019fe1867d8ccfd76d8d5abd85db5efce548fba.png", - "aggregators": ["CoinGecko", "Rubic", "Sonarwatch"], - "occurrences": 3 - }, - "0x9eead9ce15383caeed975427340b3a369410cfbf": { - "address": "0x9eead9ce15383caeed975427340b3a369410cfbf", - "symbol": "AUSDT", - "decimals": 6, - "name": "Alloy Tether", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x9eead9ce15383caeed975427340b3a369410cfbf.png", - "aggregators": ["CoinMarketCap", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0xbb97e381f1d1e94ffa2a5844f6875e6146981009": { - "address": "0xbb97e381f1d1e94ffa2a5844f6875e6146981009", - "symbol": "WBX", - "decimals": 18, - "name": "Wibx", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xbb97e381f1d1e94ffa2a5844f6875e6146981009.png", - "aggregators": ["CoinMarketCap", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0x9b0b23b35ad8136e6181f22b346134ce5f426090": { - "address": "0x9b0b23b35ad8136e6181f22b346134ce5f426090", - "symbol": "CINO", - "decimals": 18, - "name": "Cinogames", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x9b0b23b35ad8136e6181f22b346134ce5f426090.png", - "aggregators": ["CoinMarketCap", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0x84d821f7fbdd595c4c4a50842913e6b1e07d7a53": { - "address": "0x84d821f7fbdd595c4c4a50842913e6b1e07d7a53", - "symbol": "BNPL", - "decimals": 18, - "name": "BNPL Pay", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x84d821f7fbdd595c4c4a50842913e6b1e07d7a53.png", - "aggregators": ["CoinMarketCap", "Rubic", "Rango", "SushiSwap"], - "occurrences": 4 - }, - "0x927402ab67c0cda3c187e9dfe34554ac581441f2": { - "address": "0x927402ab67c0cda3c187e9dfe34554ac581441f2", - "symbol": "SAITABIT", - "decimals": 18, - "name": "SaitaBit", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x927402ab67c0cda3c187e9dfe34554ac581441f2.png", - "aggregators": ["CoinMarketCap", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0x294b9da569c0d694870239813bbe7b5824fd2339": { - "address": "0x294b9da569c0d694870239813bbe7b5824fd2339", - "symbol": "AIR", - "decimals": 18, - "name": "AIRian", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x294b9da569c0d694870239813bbe7b5824fd2339.png", - "aggregators": ["CoinMarketCap", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0x8ccedbae4916b79da7f3f612efb2eb93a2bfd6cf": { - "address": "0x8ccedbae4916b79da7f3f612efb2eb93a2bfd6cf", - "symbol": "MNEE", - "decimals": 18, - "name": "MNEE USD Stablecoin", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x8ccedbae4916b79da7f3f612efb2eb93a2bfd6cf.png", - "aggregators": ["CoinMarketCap", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0x63696fc66795b51d02c1590b536484a41fbddf9a": { - "address": "0x63696fc66795b51d02c1590b536484a41fbddf9a", - "symbol": "WELL", - "decimals": 18, - "name": "WELL3", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x63696fc66795b51d02c1590b536484a41fbddf9a.png", - "aggregators": ["CoinMarketCap", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0x36c7188d64c44301272db3293899507eabb8ed43": { - "address": "0x36c7188d64c44301272db3293899507eabb8ed43", - "symbol": "SWAG", - "decimals": 9, - "name": "Swag", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x36c7188d64c44301272db3293899507eabb8ed43.png", - "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0x4c7fe8f97db97cbccc76989ab742afc66ca6e75c": { - "address": "0x4c7fe8f97db97cbccc76989ab742afc66ca6e75c", - "symbol": "RYO", - "decimals": 18, - "name": "RYO Coin", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x4c7fe8f97db97cbccc76989ab742afc66ca6e75c.png", - "aggregators": ["CoinMarketCap", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0x1223334444a7466fbf985b14e1f4edaf3883bca6": { - "address": "0x1223334444a7466fbf985b14e1f4edaf3883bca6", - "symbol": "GROW", - "decimals": 18, - "name": "Grow", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x1223334444a7466fbf985b14e1f4edaf3883bca6.png", - "aggregators": ["CoinMarketCap", "Socket", "Rubic", "Rango"], - "occurrences": 4 - }, - "0x939069722d568b5498ccba4356e800eaefefd2a5": { - "address": "0x939069722d568b5498ccba4356e800eaefefd2a5", - "symbol": "FNXAI", - "decimals": 18, - "name": "Finanx AI", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x939069722d568b5498ccba4356e800eaefefd2a5.png", - "aggregators": ["CoinMarketCap", "Rubic", "Sonarwatch"], - "occurrences": 3 - }, - "0x0176b898e92e814c06cc379e508ceb571f70bd40": { - "address": "0x0176b898e92e814c06cc379e508ceb571f70bd40", - "symbol": "TIP", - "decimals": 18, - "name": "Tipcoin", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x0176b898e92e814c06cc379e508ceb571f70bd40.png", - "aggregators": ["CoinMarketCap", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0xf7e945fce8f19302aacc7e1418b0a0bdef89327b": { - "address": "0xf7e945fce8f19302aacc7e1418b0a0bdef89327b", - "symbol": "IZE", - "decimals": 8, - "name": "Galvan", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xf7e945fce8f19302aacc7e1418b0a0bdef89327b.png", - "aggregators": ["CoinMarketCap", "Socket", "Rubic", "Sonarwatch"], - "occurrences": 4 - }, - "0x95e40e065afb3059dcabe4aaf404c1f92756603a": { - "address": "0x95e40e065afb3059dcabe4aaf404c1f92756603a", - "symbol": "KDAG", - "decimals": 18, - "name": "King DAG", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x95e40e065afb3059dcabe4aaf404c1f92756603a.png", - "aggregators": ["CoinMarketCap", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0xf6ad4965f7779c6b8ae4d25bf2a2e009a47c3dae": { - "address": "0xf6ad4965f7779c6b8ae4d25bf2a2e009a47c3dae", - "symbol": "LEARN", - "decimals": 18, - "name": "Brainedge", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xf6ad4965f7779c6b8ae4d25bf2a2e009a47c3dae.png", - "aggregators": ["CoinMarketCap", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0xeed3ae7b0f8b5b9bb8c035a9941382b1822671cd": { - "address": "0xeed3ae7b0f8b5b9bb8c035a9941382b1822671cd", - "symbol": "EVY", - "decimals": 12, - "name": "EveryCoin", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xeed3ae7b0f8b5b9bb8c035a9941382b1822671cd.png", - "aggregators": ["CoinMarketCap", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0x2c2f7e7c5604d162d75641256b80f1bf6f4dc796": { - "address": "0x2c2f7e7c5604d162d75641256b80f1bf6f4dc796", - "symbol": "PRARE", - "decimals": 18, - "name": "Polkarare", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x2c2f7e7c5604d162d75641256b80f1bf6f4dc796.png", - "aggregators": ["CoinMarketCap", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0x93c5a00b41fb5f3906b421b2399ac64b79fdbd42": { - "address": "0x93c5a00b41fb5f3906b421b2399ac64b79fdbd42", - "symbol": "VDZ", - "decimals": 18, - "name": "Voidz", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x93c5a00b41fb5f3906b421b2399ac64b79fdbd42.png", - "aggregators": ["CoinMarketCap", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0xef19f4e48830093ce5bc8b3ff7f903a0ae3e9fa1": { - "address": "0xef19f4e48830093ce5bc8b3ff7f903a0ae3e9fa1", - "symbol": "BOTX", - "decimals": 18, - "name": "BOTXCOIN", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xef19f4e48830093ce5bc8b3ff7f903a0ae3e9fa1.png", - "aggregators": ["CoinMarketCap", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0x5fc111f3fa4c6b32eaf65659cfebdeed57234069": { - "address": "0x5fc111f3fa4c6b32eaf65659cfebdeed57234069", - "symbol": "0XGAS", - "decimals": 18, - "name": "0xGasless", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x5fc111f3fa4c6b32eaf65659cfebdeed57234069.png", - "aggregators": ["CoinMarketCap", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0x5319e86f0e41a06e49eb37046b8c11d78bcad68c": { - "address": "0x5319e86f0e41a06e49eb37046b8c11d78bcad68c", - "symbol": "ZLW", - "decimals": 18, - "name": "Zelwin", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x5319e86f0e41a06e49eb37046b8c11d78bcad68c.png", - "aggregators": ["CoinMarketCap", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0x4bcea5e4d0f6ed53cf45e7a28febb2d3621d7438": { - "address": "0x4bcea5e4d0f6ed53cf45e7a28febb2d3621d7438", - "symbol": "MODEX", - "decimals": 18, - "name": "Modex", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x4bcea5e4d0f6ed53cf45e7a28febb2d3621d7438.png", - "aggregators": ["CoinMarketCap", "Socket", "Rubic", "Sonarwatch"], - "occurrences": 4 - }, - "0x9ac9468e7e3e1d194080827226b45d0b892c77fd": { - "address": "0x9ac9468e7e3e1d194080827226b45d0b892c77fd", - "symbol": "YEE", - "decimals": 9, - "name": "Yee Token", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x9ac9468e7e3e1d194080827226b45d0b892c77fd.png", - "aggregators": ["CoinMarketCap", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0x2a9bdcff37ab68b95a53435adfd8892e86084f93": { - "address": "0x2a9bdcff37ab68b95a53435adfd8892e86084f93", - "symbol": "AQT", - "decimals": 18, - "name": "Alpha Quark", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x2a9bdcff37ab68b95a53435adfd8892e86084f93.png", - "aggregators": ["CoinMarketCap", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0xc78b628b060258300218740b1a7a5b3c82b3bd9f": { - "address": "0xc78b628b060258300218740b1a7a5b3c82b3bd9f", - "symbol": "COMAI", - "decimals": 18, - "name": "Commune AI", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xc78b628b060258300218740b1a7a5b3c82b3bd9f.png", - "aggregators": ["CoinMarketCap", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0x49849c98ae39fff122806c06791fa73784fb3675": { - "address": "0x49849c98ae39fff122806c06791fa73784fb3675", - "symbol": "RENBTCCURVE", - "decimals": 18, - "name": "LP renBTC Curve", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x49849c98ae39fff122806c06791fa73784fb3675.png", - "aggregators": ["CoinMarketCap", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0x2e3cfe45e3ee7c017277f22e35d2f29edc99d570": { - "address": "0x2e3cfe45e3ee7c017277f22e35d2f29edc99d570", - "symbol": "WDAG", - "decimals": 8, - "name": "Wrapped DAG", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x2e3cfe45e3ee7c017277f22e35d2f29edc99d570.png", - "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0x4159862bcf6b4393a80550b1ed03dffa6f90533c": { - "address": "0x4159862bcf6b4393a80550b1ed03dffa6f90533c", - "symbol": "OHMI", - "decimals": 18, - "name": "One Hundred Million Inu", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x4159862bcf6b4393a80550b1ed03dffa6f90533c.png", - "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0x4308135e3d92eeea3235085a1dd36b7293336938": { - "address": "0x4308135e3d92eeea3235085a1dd36b7293336938", - "symbol": "CRADLE", - "decimals": 18, - "name": "Cradle Games", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x4308135e3d92eeea3235085a1dd36b7293336938.png", - "aggregators": ["CoinMarketCap", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0xfa93660c3f6a848556bb8e265f994160a1f2b289": { - "address": "0xfa93660c3f6a848556bb8e265f994160a1f2b289", - "symbol": "CBT", - "decimals": 18, - "name": "Community Business Token", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xfa93660c3f6a848556bb8e265f994160a1f2b289.png", - "aggregators": ["CoinMarketCap", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0xc7f950271d118a5bdf250dffc39128dcced8472c": { - "address": "0xc7f950271d118a5bdf250dffc39128dcced8472c", - "symbol": "ARCHIVE", - "decimals": 18, - "name": "Chainback", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xc7f950271d118a5bdf250dffc39128dcced8472c.png", - "aggregators": ["CoinMarketCap", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0x946551dd05c5abd7cc808927480225ce36d8c475": { - "address": "0x946551dd05c5abd7cc808927480225ce36d8c475", - "symbol": "ONE", - "decimals": 18, - "name": "One", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x946551dd05c5abd7cc808927480225ce36d8c475.png", - "aggregators": ["CoinMarketCap", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0xd9812f24f34e0d727bbf6ea7caaee05b7f7a2603": { - "address": "0xd9812f24f34e0d727bbf6ea7caaee05b7f7a2603", - "symbol": "TPU", - "decimals": 18, - "name": "TensorSpace", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xd9812f24f34e0d727bbf6ea7caaee05b7f7a2603.png", - "aggregators": ["CoinMarketCap", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0x8ccd897ca6160ed76755383b201c1948394328c7": { - "address": "0x8ccd897ca6160ed76755383b201c1948394328c7", - "symbol": "BAI", - "decimals": 9, - "name": "Balance AI", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x8ccd897ca6160ed76755383b201c1948394328c7.png", - "aggregators": ["CoinMarketCap", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0xa2a54f1ec1f09316ef12c1770d32ed8f21b1fb6a": { - "address": "0xa2a54f1ec1f09316ef12c1770d32ed8f21b1fb6a", - "symbol": "DFT", - "decimals": 8, - "name": "DigiFinex", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xa2a54f1ec1f09316ef12c1770d32ed8f21b1fb6a.png", - "aggregators": ["CoinMarketCap", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0xaf2ca40d3fc4459436d11b94d21fa4b8a89fb51d": { - "address": "0xaf2ca40d3fc4459436d11b94d21fa4b8a89fb51d", - "symbol": "GCOTI", - "decimals": 18, - "name": "COTI Governance Token", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xaf2ca40d3fc4459436d11b94d21fa4b8a89fb51d.png", - "aggregators": ["CoinMarketCap", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0xcbe7142f5c16755d8683ba329efa1abf7b54482d": { - "address": "0xcbe7142f5c16755d8683ba329efa1abf7b54482d", - "symbol": "MVEDA", - "decimals": 8, - "name": "MedicalVeda", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xcbe7142f5c16755d8683ba329efa1abf7b54482d.png", - "aggregators": ["CoinMarketCap", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0x2730d6fdc86c95a74253beffaa8306b40fedecbb": { - "address": "0x2730d6fdc86c95a74253beffaa8306b40fedecbb", - "symbol": "UNI", - "decimals": 8, - "name": "UNICORN", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x2730d6fdc86c95a74253beffaa8306b40fedecbb.png", - "aggregators": ["CoinMarketCap", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0x68ad75469db9181a1144e769c16adf47f2f32cae": { - "address": "0x68ad75469db9181a1144e769c16adf47f2f32cae", - "symbol": "MAXETH", - "decimals": 18, - "name": "Max on ETH", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x68ad75469db9181a1144e769c16adf47f2f32cae.png", - "aggregators": ["CoinMarketCap", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0xea3eed8616877f5d3c4aebf5a799f2e8d6de9a5e": { - "address": "0xea3eed8616877f5d3c4aebf5a799f2e8d6de9a5e", - "symbol": "RFRM", - "decimals": 18, - "name": "Reform DAO", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xea3eed8616877f5d3c4aebf5a799f2e8d6de9a5e.png", - "aggregators": ["CoinMarketCap", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0xce872db165d4f5623af9c29e03afd416bc5f67bc": { - "address": "0xce872db165d4f5623af9c29e03afd416bc5f67bc", - "symbol": "SVN", - "decimals": 18, - "name": "StakeVault Network", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xce872db165d4f5623af9c29e03afd416bc5f67bc.png", - "aggregators": ["CoinMarketCap", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0x98509e66fbf5a68d18ebb01dc4a52ce020fc8d1f": { - "address": "0x98509e66fbf5a68d18ebb01dc4a52ce020fc8d1f", - "symbol": "MCTP", - "decimals": 18, - "name": "MUMUBIT TOKEN", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x98509e66fbf5a68d18ebb01dc4a52ce020fc8d1f.png", - "aggregators": ["CoinGecko", "Rubic", "Sonarwatch"], - "occurrences": 3 - }, - "0x5d43b66da68706d39f6c97f7f1415615672b446b": { - "address": "0x5d43b66da68706d39f6c97f7f1415615672b446b", - "symbol": "ROG", - "decimals": 18, - "name": "ROGin AI", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x5d43b66da68706d39f6c97f7f1415615672b446b.png", - "aggregators": ["CoinMarketCap", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0x046bad07658f3b6cad9a396cfcbc1243af452ec1": { - "address": "0x046bad07658f3b6cad9a396cfcbc1243af452ec1", - "symbol": "AL", - "decimals": 18, - "name": "ArchLoot", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x046bad07658f3b6cad9a396cfcbc1243af452ec1.png", - "aggregators": ["CoinMarketCap", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0xf4fb9bf10e489ea3edb03e094939341399587b0c": { - "address": "0xf4fb9bf10e489ea3edb03e094939341399587b0c", - "symbol": "AMB", - "decimals": 18, - "name": "AirDAO", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xf4fb9bf10e489ea3edb03e094939341399587b0c.png", - "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0x4be10da47a07716af28ad199fbe020501bddd7af": { - "address": "0x4be10da47a07716af28ad199fbe020501bddd7af", - "symbol": "XT", - "decimals": 18, - "name": "XT com", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x4be10da47a07716af28ad199fbe020501bddd7af.png", - "aggregators": ["CoinMarketCap", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0x02cdb5ccc97d5dc7ed2747831b516669eb635706": { - "address": "0x02cdb5ccc97d5dc7ed2747831b516669eb635706", - "symbol": "NBTC", - "decimals": 8, - "name": "Nest BTC Vault", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x02cdb5ccc97d5dc7ed2747831b516669eb635706.png", - "aggregators": ["CoinGecko", "Rubic", "Sonarwatch"], - "occurrences": 3 - }, - "0x1b19c19393e2d034d8ff31ff34c81252fcbbee92": { - "address": "0x1b19c19393e2d034d8ff31ff34c81252fcbbee92", - "symbol": "OUSG", - "decimals": 18, - "name": "OUSG", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x1b19c19393e2d034d8ff31ff34c81252fcbbee92.png", - "aggregators": ["CoinMarketCap", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0xe571b648569619566cf6ce1060c97b621cb635d3": { - "address": "0xe571b648569619566cf6ce1060c97b621cb635d3", - "symbol": "GTUSDTB", - "decimals": 18, - "name": "Gauntlet USDT Balanced", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xe571b648569619566cf6ce1060c97b621cb635d3.png", - "aggregators": ["CoinGecko", "LiFi", "Rubic"], - "occurrences": 3 - }, - "0x615987d46003cc37387dbe544ff4f16fa1200077": { - "address": "0x615987d46003cc37387dbe544ff4f16fa1200077", - "symbol": "NASDAQ420", - "decimals": 9, - "name": "Nasdaq420", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x615987d46003cc37387dbe544ff4f16fa1200077.png", - "aggregators": ["CoinMarketCap", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0xaa19961b6b858d9f18a115f25aa1d98abc1fdba8": { - "address": "0xaa19961b6b858d9f18a115f25aa1d98abc1fdba8", - "symbol": "LCS", - "decimals": 18, - "name": "LocalCoinSwap", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xaa19961b6b858d9f18a115f25aa1d98abc1fdba8.png", - "aggregators": ["CoinMarketCap", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0x435f6a29b100123ae46a3e8bf0541ab402949243": { - "address": "0x435f6a29b100123ae46a3e8bf0541ab402949243", - "symbol": "CTB", - "decimals": 18, - "name": "Content Bitcoin", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x435f6a29b100123ae46a3e8bf0541ab402949243.png", - "aggregators": ["CoinMarketCap", "Rubic", "Sonarwatch"], - "occurrences": 3 - }, - "0xe50365f5d679cb98a1dd62d6f6e58e59321bcddf": { - "address": "0xe50365f5d679cb98a1dd62d6f6e58e59321bcddf", - "symbol": "LA", - "decimals": 18, - "name": "LA", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xe50365f5d679cb98a1dd62d6f6e58e59321bcddf.png", - "aggregators": ["CoinMarketCap", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0x1410434b0346f5be678d0fb554e5c7ab620f8f4a": { - "address": "0x1410434b0346f5be678d0fb554e5c7ab620f8f4a", - "symbol": "KAN", - "decimals": 18, - "name": "BitKan", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x1410434b0346f5be678d0fb554e5c7ab620f8f4a.png", - "aggregators": ["CoinMarketCap", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0xff742d05420b6aca4481f635ad8341f81a6300c2": { - "address": "0xff742d05420b6aca4481f635ad8341f81a6300c2", - "symbol": "ASD", - "decimals": 18, - "name": "AscendEx", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xff742d05420b6aca4481f635ad8341f81a6300c2.png", - "aggregators": ["CoinMarketCap", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0xe8663a64a96169ff4d95b4299e7ae9a76b905b31": { - "address": "0xe8663a64a96169ff4d95b4299e7ae9a76b905b31", - "symbol": "RATING", - "decimals": 8, - "name": "DPRating", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xe8663a64a96169ff4d95b4299e7ae9a76b905b31.png", - "aggregators": ["CoinMarketCap", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0x5d929aa919e489505ccaad8a199619c6dca0c2de": { - "address": "0x5d929aa919e489505ccaad8a199619c6dca0c2de", - "symbol": "BAAS", - "decimals": 18, - "name": "BaaSid", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x5d929aa919e489505ccaad8a199619c6dca0c2de.png", - "aggregators": ["CoinMarketCap", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0xd433138d12beb9929ff6fd583dc83663eea6aaa5": { - "address": "0xd433138d12beb9929ff6fd583dc83663eea6aaa5", - "symbol": "BTR", - "decimals": 18, - "name": "Bitrue Coin", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xd433138d12beb9929ff6fd583dc83663eea6aaa5.png", - "aggregators": ["CoinMarketCap", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0x3da932456d082cba208feb0b096d49b202bf89c8": { - "address": "0x3da932456d082cba208feb0b096d49b202bf89c8", - "symbol": "DEGO", - "decimals": 18, - "name": "Dego Finance", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x3da932456d082cba208feb0b096d49b202bf89c8.png", - "aggregators": ["CoinMarketCap", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0x581911b360b6eb3a14ef295a83a91dc2bce2d6f7": { - "address": "0x581911b360b6eb3a14ef295a83a91dc2bce2d6f7", - "symbol": "MVC", - "decimals": 18, - "name": "MileVerse", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x581911b360b6eb3a14ef295a83a91dc2bce2d6f7.png", - "aggregators": ["CoinMarketCap", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0xa92c49c403386111c1629aee00936eed2a9e74a6": { - "address": "0xa92c49c403386111c1629aee00936eed2a9e74a6", - "symbol": "KLTR", - "decimals": 18, - "name": "Kollector", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xa92c49c403386111c1629aee00936eed2a9e74a6.png", - "aggregators": ["CoinMarketCap", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0x949185d3be66775ea648f4a306740ea9eff9c567": { - "address": "0x949185d3be66775ea648f4a306740ea9eff9c567", - "symbol": "YEL", - "decimals": 18, - "name": "Yel Finance", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x949185d3be66775ea648f4a306740ea9eff9c567.png", - "aggregators": ["CoinMarketCap", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0xcaabcaa4ca42e1d86de1a201c818639def0ba7a7": { - "address": "0xcaabcaa4ca42e1d86de1a201c818639def0ba7a7", - "symbol": "TALK", - "decimals": 18, - "name": "Talken", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xcaabcaa4ca42e1d86de1a201c818639def0ba7a7.png", - "aggregators": ["CoinMarketCap", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0xd50b9bbf136d1bd5cd5ac6ed9b3f26c458a6d4a6": { - "address": "0xd50b9bbf136d1bd5cd5ac6ed9b3f26c458a6d4a6", - "symbol": "AUSDC", - "decimals": 18, - "name": "Alpha USDC Vault", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xd50b9bbf136d1bd5cd5ac6ed9b3f26c458a6d4a6.png", - "aggregators": ["CoinGecko", "Rubic", "Sonarwatch"], - "occurrences": 3 - }, - "0x3a0b022f32b3191d44e5847da12dc0b63fb07c91": { - "address": "0x3a0b022f32b3191d44e5847da12dc0b63fb07c91", - "symbol": "SPELLFIRE", - "decimals": 18, - "name": "Spellfire", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x3a0b022f32b3191d44e5847da12dc0b63fb07c91.png", - "aggregators": ["CoinMarketCap", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0xeae00d6f9b16deb1bd584c7965e4c7d762f178a1": { - "address": "0xeae00d6f9b16deb1bd584c7965e4c7d762f178a1", - "symbol": "XBG", - "decimals": 18, - "name": "XBorg", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xeae00d6f9b16deb1bd584c7965e4c7d762f178a1.png", - "aggregators": ["CoinMarketCap", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0xd88611a629265c9af294ffdd2e7fa4546612273e": { - "address": "0xd88611a629265c9af294ffdd2e7fa4546612273e", - "symbol": "MPRO", - "decimals": 18, - "name": "Metapro", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xd88611a629265c9af294ffdd2e7fa4546612273e.png", - "aggregators": ["CoinMarketCap", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0xb5b1b659da79a2507c27aad509f15b4874edc0cc": { - "address": "0xb5b1b659da79a2507c27aad509f15b4874edc0cc", - "symbol": "DUST", - "decimals": 9, - "name": "Dust Protocol", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xb5b1b659da79a2507c27aad509f15b4874edc0cc.png", - "aggregators": ["CoinMarketCap", "Socket", "Rubic", "Sonarwatch"], - "occurrences": 4 - }, - "0x50614cc8e44f7814549c223aa31db9296e58057c": { - "address": "0x50614cc8e44f7814549c223aa31db9296e58057c", - "symbol": "ALIGN", - "decimals": 18, - "name": "Aligned", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x50614cc8e44f7814549c223aa31db9296e58057c.png", - "aggregators": ["CoinMarketCap", "Rubic", "Sonarwatch"], - "occurrences": 3 - }, - "0xb3ad645db386d7f6d753b2b9c3f4b853da6890b8": { - "address": "0xb3ad645db386d7f6d753b2b9c3f4b853da6890b8", - "symbol": "CTR", - "decimals": 18, - "name": "Concentrator", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xb3ad645db386d7f6d753b2b9c3f4b853da6890b8.png", - "aggregators": ["CoinMarketCap", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0x294559fa758c88d639fd085751e463fee7806eab": { - "address": "0x294559fa758c88d639fd085751e463fee7806eab", - "symbol": "METAL", - "decimals": 18, - "name": "Metal Blockchain", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x294559fa758c88d639fd085751e463fee7806eab.png", - "aggregators": ["CoinMarketCap", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0x93eeb426782bd88fcd4b48d7b0368cf061044928": { - "address": "0x93eeb426782bd88fcd4b48d7b0368cf061044928", - "symbol": "TRG", - "decimals": 18, - "name": "The Rug Game", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x93eeb426782bd88fcd4b48d7b0368cf061044928.png", - "aggregators": ["CoinMarketCap", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0xd076c4ba62c57b3fa10800bcfd8da66742110e0e": { - "address": "0xd076c4ba62c57b3fa10800bcfd8da66742110e0e", - "symbol": "HVH", - "decimals": 18, - "name": "HAVAH", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xd076c4ba62c57b3fa10800bcfd8da66742110e0e.png", - "aggregators": ["CoinMarketCap", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0x7d8146cf21e8d7cbe46054e01588207b51198729": { - "address": "0x7d8146cf21e8d7cbe46054e01588207b51198729", - "symbol": "BOB", - "decimals": 18, - "name": "BOB Token", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x7d8146cf21e8d7cbe46054e01588207b51198729.png", - "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0xc8c424b91d8ce0137bab4b832b7f7d154156ba6c": { - "address": "0xc8c424b91d8ce0137bab4b832b7f7d154156ba6c", - "symbol": "APM", - "decimals": 18, - "name": "apM Coin", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xc8c424b91d8ce0137bab4b832b7f7d154156ba6c.png", - "aggregators": ["CoinMarketCap", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0xd2c869382c7ac9f87ff73548d029d67c0f9dee31": { - "address": "0xd2c869382c7ac9f87ff73548d029d67c0f9dee31", - "symbol": "WAGIEBOT", - "decimals": 9, - "name": "Wagie Bot", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xd2c869382c7ac9f87ff73548d029d67c0f9dee31.png", - "aggregators": ["CoinMarketCap", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0x01824357d7d7eaf4677bc17786abd26cbdec9ad7": { - "address": "0x01824357d7d7eaf4677bc17786abd26cbdec9ad7", - "symbol": "FORWARD", - "decimals": 18, - "name": "Forward", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x01824357d7d7eaf4677bc17786abd26cbdec9ad7.png", - "aggregators": ["CoinMarketCap", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0x2be5e8c109e2197d077d13a82daead6a9b3433c5": { - "address": "0x2be5e8c109e2197d077d13a82daead6a9b3433c5", - "symbol": "TON", - "decimals": 18, - "name": "Tokamak Network Token", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x2be5e8c109e2197d077d13a82daead6a9b3433c5.png", - "aggregators": ["Metamask", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0x397deb686c72384fad502a81f4d7fdb89e1f1280": { - "address": "0x397deb686c72384fad502a81f4d7fdb89e1f1280", - "symbol": "XELS", - "decimals": 8, - "name": "XELS", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x397deb686c72384fad502a81f4d7fdb89e1f1280.png", - "aggregators": ["CoinMarketCap", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0x23d7ff057c696fee679c60cef61fee6614218f04": { - "address": "0x23d7ff057c696fee679c60cef61fee6614218f04", - "symbol": "UNP", - "decimals": 18, - "name": "Unipoly", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x23d7ff057c696fee679c60cef61fee6614218f04.png", - "aggregators": ["CoinMarketCap", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0xc691bc298a304d591ad9b352c7a8d216de9f2ced": { - "address": "0xc691bc298a304d591ad9b352c7a8d216de9f2ced", - "symbol": "POLA", - "decimals": 18, - "name": "Polaris Share", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xc691bc298a304d591ad9b352c7a8d216de9f2ced.png", - "aggregators": ["CoinMarketCap", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0xd8c978de79e12728e38aa952a6cb4166f891790f": { - "address": "0xd8c978de79e12728e38aa952a6cb4166f891790f", - "symbol": "ROAR", - "decimals": 18, - "name": "Roaring Kitty", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xd8c978de79e12728e38aa952a6cb4166f891790f.png", - "aggregators": ["CoinMarketCap", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0x2d81f9460bd21e8578350a4f06e62848ed4bb27e": { - "address": "0x2d81f9460bd21e8578350a4f06e62848ed4bb27e", - "symbol": "OWN", - "decimals": 18, - "name": "Otherworld", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x2d81f9460bd21e8578350a4f06e62848ed4bb27e.png", - "aggregators": ["CoinMarketCap", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0x10dea67478c5f8c5e2d90e5e9b26dbe60c54d800": { - "address": "0x10dea67478c5f8c5e2d90e5e9b26dbe60c54d800", - "symbol": "TAIKO", - "decimals": 18, - "name": "Taiko", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x10dea67478c5f8c5e2d90e5e9b26dbe60c54d800.png", - "aggregators": ["CoinMarketCap", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0x1c00c3e03c3a10a0c1d9b6d1a42e797d7cb4147a": { - "address": "0x1c00c3e03c3a10a0c1d9b6d1a42e797d7cb4147a", - "symbol": "ARCA", - "decimals": 18, - "name": "Legend of Arcadia", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x1c00c3e03c3a10a0c1d9b6d1a42e797d7cb4147a.png", - "aggregators": ["CoinMarketCap", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0x0501b9188436e35bb10f35998c40adc079003866": { - "address": "0x0501b9188436e35bb10f35998c40adc079003866", - "symbol": "AIAT", - "decimals": 18, - "name": "AI Analysis Token", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x0501b9188436e35bb10f35998c40adc079003866.png", - "aggregators": ["CoinMarketCap", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0xc8f69a9b46b235de8d0b77c355fff7994f1b090f": { - "address": "0xc8f69a9b46b235de8d0b77c355fff7994f1b090f", - "symbol": "SPEEDY", - "decimals": 18, - "name": "Speedy", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xc8f69a9b46b235de8d0b77c355fff7994f1b090f.png", - "aggregators": ["CoinMarketCap", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0xa1b014878d47c0836ed79163ddec55985adb7023": { - "address": "0xa1b014878d47c0836ed79163ddec55985adb7023", - "symbol": "OISHII", - "decimals": 18, - "name": "Dog Food Token", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xa1b014878d47c0836ed79163ddec55985adb7023.png", - "aggregators": ["CoinGecko", "Socket", "Rubic", "Rango"], - "occurrences": 4 - }, - "0xc11158c5da9db1d553ed28f0c2ba1cbedd42cfcb": { - "address": "0xc11158c5da9db1d553ed28f0c2ba1cbedd42cfcb", - "symbol": "WPAW", - "decimals": 18, - "name": "Wrapped PAW", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xc11158c5da9db1d553ed28f0c2ba1cbedd42cfcb.png", - "aggregators": ["Metamask", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0x0828096494ad6252f0f853abfc5b6ec9dfe9fdad": { - "address": "0x0828096494ad6252f0f853abfc5b6ec9dfe9fdad", - "symbol": "TST", - "decimals": 18, - "name": "Teleport System Token", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x0828096494ad6252f0f853abfc5b6ec9dfe9fdad.png", - "aggregators": ["CoinMarketCap", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0xe9fa21e671bcfb04e6868784b89c19d5aa2424ea": { - "address": "0xe9fa21e671bcfb04e6868784b89c19d5aa2424ea", - "symbol": "ECTE", - "decimals": 18, - "name": "EurocoinToken", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xe9fa21e671bcfb04e6868784b89c19d5aa2424ea.png", - "aggregators": ["CoinMarketCap", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0x8c213ae332274e6314bf4cf989604e7f61162967": { - "address": "0x8c213ae332274e6314bf4cf989604e7f61162967", - "symbol": "DONGO", - "decimals": 9, - "name": "Dongo AI", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x8c213ae332274e6314bf4cf989604e7f61162967.png", - "aggregators": ["CoinMarketCap", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0xc8de43bfe33ff496fa14c270d9cb29bda196b9b5": { - "address": "0xc8de43bfe33ff496fa14c270d9cb29bda196b9b5", - "symbol": "BIG", - "decimals": 18, - "name": "Big Eyes", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xc8de43bfe33ff496fa14c270d9cb29bda196b9b5.png", - "aggregators": ["CoinMarketCap", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0xed0d5747a9ab03a75fbfec3228cd55848245b75d": { - "address": "0xed0d5747a9ab03a75fbfec3228cd55848245b75d", - "symbol": "NGM", - "decimals": 6, - "name": "e Money", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xed0d5747a9ab03a75fbfec3228cd55848245b75d.png", - "aggregators": ["CoinMarketCap", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0x60f63b76e2fc1649e57a3489162732a90acf59fe": { - "address": "0x60f63b76e2fc1649e57a3489162732a90acf59fe", - "symbol": "FLURRY", - "decimals": 18, - "name": "Flurry Finance", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x60f63b76e2fc1649e57a3489162732a90acf59fe.png", - "aggregators": ["CoinMarketCap", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0x38d64ce1bdf1a9f24e0ec469c9cade61236fb4a0": { - "address": "0x38d64ce1bdf1a9f24e0ec469c9cade61236fb4a0", - "symbol": "VETH", - "decimals": 18, - "name": "Vector ETH", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x38d64ce1bdf1a9f24e0ec469c9cade61236fb4a0.png", - "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0x9928a8600d14ac22c0be1e8d58909834d7ceaf13": { - "address": "0x9928a8600d14ac22c0be1e8d58909834d7ceaf13", - "symbol": "DNX", - "decimals": 9, - "name": "Dynex", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x9928a8600d14ac22c0be1e8d58909834d7ceaf13.png", - "aggregators": ["CoinMarketCap", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0x5b685863494c33f344081f75e5430c260c224a32": { - "address": "0x5b685863494c33f344081f75e5430c260c224a32", - "symbol": "CMCX", - "decimals": 18, - "name": "CORE MultiChain", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x5b685863494c33f344081f75e5430c260c224a32.png", - "aggregators": ["CoinMarketCap", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0x0b6f3ea2814f3fff804ba5d5c237aebbc364fba9": { - "address": "0x0b6f3ea2814f3fff804ba5d5c237aebbc364fba9", - "symbol": "UNA", - "decimals": 18, - "name": "Unagi Token", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x0b6f3ea2814f3fff804ba5d5c237aebbc364fba9.png", - "aggregators": ["CoinMarketCap", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0xd444b0d1dceedd7b0993ed04351a491d47048fc4": { - "address": "0xd444b0d1dceedd7b0993ed04351a491d47048fc4", - "symbol": "SUIRWAPIN", - "decimals": 18, - "name": "RWADepin Protocol", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xd444b0d1dceedd7b0993ed04351a491d47048fc4.png", - "aggregators": ["CoinGecko", "Rubic", "Sonarwatch"], - "occurrences": 3 - }, - "0x96c3530bfd0a906a123a4e26cebb635636b41f9d": { - "address": "0x96c3530bfd0a906a123a4e26cebb635636b41f9d", - "symbol": "HYDRA", - "decimals": 18, - "name": "HYDRA", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x96c3530bfd0a906a123a4e26cebb635636b41f9d.png", - "aggregators": ["CoinMarketCap", "Socket", "Rubic"], - "occurrences": 3 - }, - "0x7404ac09adf614603d9c16a7ce85a1101f3514ba": { - "address": "0x7404ac09adf614603d9c16a7ce85a1101f3514ba", - "symbol": "PLAY", - "decimals": 18, - "name": "PLAY", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x7404ac09adf614603d9c16a7ce85a1101f3514ba.png", - "aggregators": ["CoinMarketCap", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0x8f006d1e1d9dc6c98996f50a4c810f17a47fbf19": { - "address": "0x8f006d1e1d9dc6c98996f50a4c810f17a47fbf19", - "symbol": "NSFW", - "decimals": 18, - "name": "Pleasure Coin", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x8f006d1e1d9dc6c98996f50a4c810f17a47fbf19.png", - "aggregators": ["CoinMarketCap", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0xffa188493c15dfaf2c206c97d8633377847b6a52": { - "address": "0xffa188493c15dfaf2c206c97d8633377847b6a52", - "symbol": "WEFI", - "decimals": 18, - "name": "Wefi", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xffa188493c15dfaf2c206c97d8633377847b6a52.png", - "aggregators": ["CoinMarketCap", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0xd6b48ccf41a62eb3891e58d0f006b19b01d50cca": { - "address": "0xd6b48ccf41a62eb3891e58d0f006b19b01d50cca", - "symbol": "SERAPH", - "decimals": 18, - "name": "Seraph", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xd6b48ccf41a62eb3891e58d0f006b19b01d50cca.png", - "aggregators": ["CoinMarketCap", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0x25ec98773d7b4ced4cafab96a2a1c0945f145e10": { - "address": "0x25ec98773d7b4ced4cafab96a2a1c0945f145e10", - "symbol": "STUSDT", - "decimals": 18, - "name": "Staked USDT", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x25ec98773d7b4ced4cafab96a2a1c0945f145e10.png", - "aggregators": ["CoinMarketCap", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0xc08cd26474722ce93f4d0c34d16201461c10aa8c": { - "address": "0xc08cd26474722ce93f4d0c34d16201461c10aa8c", - "symbol": "CARV", - "decimals": 18, - "name": "CARV", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xc08cd26474722ce93f4d0c34d16201461c10aa8c.png", - "aggregators": ["CoinMarketCap", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0xa3f4341c3fef5963ab04135d2014ac7d68222e19": { - "address": "0xa3f4341c3fef5963ab04135d2014ac7d68222e19", - "symbol": "LOGX", - "decimals": 18, - "name": "LogX Network", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xa3f4341c3fef5963ab04135d2014ac7d68222e19.png", - "aggregators": ["CoinMarketCap", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0x510975eda48a97e0ca228dd04d1217292487bea6": { - "address": "0x510975eda48a97e0ca228dd04d1217292487bea6", - "symbol": "GXE", - "decimals": 18, - "name": "PROJECT XENO", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x510975eda48a97e0ca228dd04d1217292487bea6.png", - "aggregators": ["CoinMarketCap", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0x667fd83e24ca1d935d36717d305d54fa0cac991c": { - "address": "0x667fd83e24ca1d935d36717d305d54fa0cac991c", - "symbol": "AGS", - "decimals": 18, - "name": "Collector Coin", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x667fd83e24ca1d935d36717d305d54fa0cac991c.png", - "aggregators": ["CoinMarketCap", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0x9fda7ceec4c18008096c2fe2b85f05dc300f94d0": { - "address": "0x9fda7ceec4c18008096c2fe2b85f05dc300f94d0", - "symbol": "GAJ", - "decimals": 18, - "name": "Gaj Finance", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x9fda7ceec4c18008096c2fe2b85f05dc300f94d0.png", - "aggregators": ["CoinMarketCap", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0xdf09a216fac5adc3e640db418c0b956076509503": { - "address": "0xdf09a216fac5adc3e640db418c0b956076509503", - "symbol": "PKN", - "decimals": 18, - "name": "Poken", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xdf09a216fac5adc3e640db418c0b956076509503.png", - "aggregators": ["CoinMarketCap", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0x77a1f4e744d810239f465043e35d067ca33de259": { - "address": "0x77a1f4e744d810239f465043e35d067ca33de259", - "symbol": "VST", - "decimals": 18, - "name": "Voice Street", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x77a1f4e744d810239f465043e35d067ca33de259.png", - "aggregators": ["CoinMarketCap", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0x85f138bfee4ef8e540890cfb48f620571d67eda3": { - "address": "0x85f138bfee4ef8e540890cfb48f620571d67eda3", - "symbol": "AVAX", - "decimals": 18, - "name": "Avalanche Wormhole", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x85f138bfee4ef8e540890cfb48f620571d67eda3.png", - "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0x2217e5921b7edfb4bb193a6228459974010d2198": { - "address": "0x2217e5921b7edfb4bb193a6228459974010d2198", - "symbol": "QMALL", - "decimals": 18, - "name": "Qmall", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x2217e5921b7edfb4bb193a6228459974010d2198.png", - "aggregators": ["CoinMarketCap", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0x1f36fb2d91d9951cf58ae4c1956c0b77e224f1e9": { - "address": "0x1f36fb2d91d9951cf58ae4c1956c0b77e224f1e9", - "symbol": "VCG", - "decimals": 18, - "name": "VCGamers", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x1f36fb2d91d9951cf58ae4c1956c0b77e224f1e9.png", - "aggregators": ["CoinMarketCap", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0x1ab43204a195a0fd37edec621482afd3792ef90b": { - "address": "0x1ab43204a195a0fd37edec621482afd3792ef90b", - "symbol": "PLY", - "decimals": 18, - "name": "Aurigami", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x1ab43204a195a0fd37edec621482afd3792ef90b.png", - "aggregators": ["CoinMarketCap", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0x420a24c9c65bd44c48bfb1cc8d6cd1ea8b1ac840": { - "address": "0x420a24c9c65bd44c48bfb1cc8d6cd1ea8b1ac840", - "symbol": "JMPT", - "decimals": 18, - "name": "JumpToken", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x420a24c9c65bd44c48bfb1cc8d6cd1ea8b1ac840.png", - "aggregators": ["CoinMarketCap", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0x4550003152f12014558e5ce025707e4dd841100f": { - "address": "0x4550003152f12014558e5ce025707e4dd841100f", - "symbol": "KZEN", - "decimals": 18, - "name": "Kaizen Finance", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x4550003152f12014558e5ce025707e4dd841100f.png", - "aggregators": ["CoinMarketCap", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0xb92ba0a6a843379499770de82aa936d6ba0fd8ca": { - "address": "0xb92ba0a6a843379499770de82aa936d6ba0fd8ca", - "symbol": "YOU", - "decimals": 18, - "name": "Youwho", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xb92ba0a6a843379499770de82aa936d6ba0fd8ca.png", - "aggregators": ["CoinMarketCap", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0xd3c325848d7c6e29b574cb0789998b2ff901f17e": { - "address": "0xd3c325848d7c6e29b574cb0789998b2ff901f17e", - "symbol": "1ART", - "decimals": 18, - "name": "OneArt", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xd3c325848d7c6e29b574cb0789998b2ff901f17e.png", - "aggregators": ["CoinMarketCap", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0x69c2fcae7e30b429166bd616a322e32bec036bcf": { - "address": "0x69c2fcae7e30b429166bd616a322e32bec036bcf", - "symbol": "MURATIAI", - "decimals": 18, - "name": "MuratiAI", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x69c2fcae7e30b429166bd616a322e32bec036bcf.png", - "aggregators": ["CoinMarketCap", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0xe2dca969624795985f2f083bcd0b674337ba130a": { - "address": "0xe2dca969624795985f2f083bcd0b674337ba130a", - "symbol": "SKR", - "decimals": 18, - "name": "Saakuru", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xe2dca969624795985f2f083bcd0b674337ba130a.png", - "aggregators": ["CoinMarketCap", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0xb8e3bb633f7276cc17735d86154e0ad5ec9928c0": { - "address": "0xb8e3bb633f7276cc17735d86154e0ad5ec9928c0", - "symbol": "VLXPAD", - "decimals": 18, - "name": "VelasPad", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xb8e3bb633f7276cc17735d86154e0ad5ec9928c0.png", - "aggregators": ["CoinMarketCap", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0x7a5d3a9dcd33cb8d527f7b5f96eb4fef43d55636": { - "address": "0x7a5d3a9dcd33cb8d527f7b5f96eb4fef43d55636", - "symbol": "RADIO", - "decimals": 18, - "name": "RadioShack", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x7a5d3a9dcd33cb8d527f7b5f96eb4fef43d55636.png", - "aggregators": ["CoinMarketCap", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0x40fed5691e547885cabd7a2990de719dcc8497fc": { - "address": "0x40fed5691e547885cabd7a2990de719dcc8497fc", - "symbol": "SHA", - "decimals": 18, - "name": "Safe Haven", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x40fed5691e547885cabd7a2990de719dcc8497fc.png", - "aggregators": ["CoinMarketCap", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0x4c3a8eceb656ec63eae80a4ebd565e4887db6160": { - "address": "0x4c3a8eceb656ec63eae80a4ebd565e4887db6160", - "symbol": "SOKU", - "decimals": 18, - "name": "SokuSwap", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x4c3a8eceb656ec63eae80a4ebd565e4887db6160.png", - "aggregators": ["CoinMarketCap", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0x2f11eeee0bf21e7661a22dbbbb9068f4ad191b86": { - "address": "0x2f11eeee0bf21e7661a22dbbbb9068f4ad191b86", - "symbol": "BNIU", - "decimals": 18, - "name": "Backed NIU Technologies", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x2f11eeee0bf21e7661a22dbbbb9068f4ad191b86.png", - "aggregators": ["CoinMarketCap", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0xa608512bbc9934e4b1ddecf0f5fb38b6ad93308d": { - "address": "0xa608512bbc9934e4b1ddecf0f5fb38b6ad93308d", - "symbol": "GUD", - "decimals": 18, - "name": "Gud Tech", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xa608512bbc9934e4b1ddecf0f5fb38b6ad93308d.png", - "aggregators": ["CoinMarketCap", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0xfa704148d516b209d52c2d75f239274c8f8eaf1a": { - "address": "0xfa704148d516b209d52c2d75f239274c8f8eaf1a", - "symbol": "OCTA", - "decimals": 18, - "name": "OctaSpace", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xfa704148d516b209d52c2d75f239274c8f8eaf1a.png", - "aggregators": ["CoinMarketCap", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0x499568c250ab2a42292261d6121525d70691894b": { - "address": "0x499568c250ab2a42292261d6121525d70691894b", - "symbol": "KRW", - "decimals": 18, - "name": "KROWN", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x499568c250ab2a42292261d6121525d70691894b.png", - "aggregators": ["CoinMarketCap", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0x2c2d8a078b33bf7782a16acce2c5ba6653a90d5f": { - "address": "0x2c2d8a078b33bf7782a16acce2c5ba6653a90d5f", - "symbol": "L3USD", - "decimals": 18, - "name": "L3USD", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x2c2d8a078b33bf7782a16acce2c5ba6653a90d5f.png", - "aggregators": ["CoinMarketCap", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0xd3ac016b1b8c80eeadde4d186a9138c9324e4189": { - "address": "0xd3ac016b1b8c80eeadde4d186a9138c9324e4189", - "symbol": "OK", - "decimals": 18, - "name": "Okcash", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xd3ac016b1b8c80eeadde4d186a9138c9324e4189.png", - "aggregators": ["CoinMarketCap", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0x07fff99e1664d9b116fbc158c0e99785f81ca236": { - "address": "0x07fff99e1664d9b116fbc158c0e99785f81ca236", - "symbol": "DUSD", - "decimals": 18, - "name": "DUSD", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x07fff99e1664d9b116fbc158c0e99785f81ca236.png", - "aggregators": ["CoinGecko", "LiFi", "Rubic", "Rango"], - "occurrences": 4 - }, - "0x7cb20517776636ed76b68edb3d99dcce356abf02": { - "address": "0x7cb20517776636ed76b68edb3d99dcce356abf02", - "symbol": "SDUSD", - "decimals": 18, - "name": "Staked dUSD", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x7cb20517776636ed76b68edb3d99dcce356abf02.png", - "aggregators": ["CoinGecko", "LiFi", "Rubic"], - "occurrences": 3 - }, - "0x45df9fb545eca3a16982dccc0b8a21d0489a0047": { - "address": "0x45df9fb545eca3a16982dccc0b8a21d0489a0047", - "symbol": "VOY", - "decimals": 18, - "name": "Voy Finance", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x45df9fb545eca3a16982dccc0b8a21d0489a0047.png", - "aggregators": ["CoinMarketCap", "Rubic", "Sonarwatch"], - "occurrences": 3 - }, - "0x426ca1ea2406c07d75db9585f22781c096e3d0e0": { - "address": "0x426ca1ea2406c07d75db9585f22781c096e3d0e0", - "symbol": "MNE", - "decimals": 8, - "name": "Minereum", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x426ca1ea2406c07d75db9585f22781c096e3d0e0.png", - "aggregators": ["CoinMarketCap", "LiFi", "Socket", "Rubic"], - "occurrences": 4 - }, - "0xd3c00772b24d997a812249ca637a921e81357701": { - "address": "0xd3c00772b24d997a812249ca637a921e81357701", - "symbol": "WILD", - "decimals": 18, - "name": "WILD Token", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xd3c00772b24d997a812249ca637a921e81357701.png", - "aggregators": ["CoinMarketCap", "LiFi", "Socket", "Rubic"], - "occurrences": 4 - }, - "0x9214ec02cb71cba0ada6896b8da260736a67ab10": { - "address": "0x9214ec02cb71cba0ada6896b8da260736a67ab10", - "symbol": "REAL", - "decimals": 18, - "name": "Real Estate Asset Ledger", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x9214ec02cb71cba0ada6896b8da260736a67ab10.png", - "aggregators": ["CoinMarketCap", "Rubic", "Rango", "Bancor"], - "occurrences": 4 - }, - "0x539efe69bcdd21a83efd9122571a64cc25e0282b": { - "address": "0x539efe69bcdd21a83efd9122571a64cc25e0282b", - "symbol": "BLUE", - "decimals": 8, - "name": "Ethereum Blue", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x539efe69bcdd21a83efd9122571a64cc25e0282b.png", - "aggregators": ["CoinMarketCap", "LiFi", "Socket", "Rubic"], - "occurrences": 4 - }, - "0xea38eaa3c86c8f9b751533ba2e562deb9acded40": { - "address": "0xea38eaa3c86c8f9b751533ba2e562deb9acded40", - "symbol": "FUEL", - "decimals": 18, - "name": "Etherparty", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xea38eaa3c86c8f9b751533ba2e562deb9acded40.png", - "aggregators": ["CoinMarketCap", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0x6c2adc2073994fb2ccc5032cc2906fa221e9b391": { - "address": "0x6c2adc2073994fb2ccc5032cc2906fa221e9b391", - "symbol": "DPY", - "decimals": 18, - "name": "Delphy", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x6c2adc2073994fb2ccc5032cc2906fa221e9b391.png", - "aggregators": ["CoinMarketCap", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0xea097a2b1db00627b2fa17460ad260c016016977": { - "address": "0xea097a2b1db00627b2fa17460ad260c016016977", - "symbol": "UFR", - "decimals": 18, - "name": "Upfiring", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xea097a2b1db00627b2fa17460ad260c016016977.png", - "aggregators": ["CoinMarketCap", "LiFi", "Socket", "Rubic"], - "occurrences": 4 - }, - "0x1e797ce986c3cff4472f7d38d5c4aba55dfefe40": { - "address": "0x1e797ce986c3cff4472f7d38d5c4aba55dfefe40", - "symbol": "BCDN", - "decimals": 15, - "name": "BlockCDN", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x1e797ce986c3cff4472f7d38d5c4aba55dfefe40.png", - "aggregators": ["CoinMarketCap", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0x72dd4b6bd852a3aa172be4d6c5a6dbec588cf131": { - "address": "0x72dd4b6bd852a3aa172be4d6c5a6dbec588cf131", - "symbol": "NGC", - "decimals": 18, - "name": "NAGA", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x72dd4b6bd852a3aa172be4d6c5a6dbec588cf131.png", - "aggregators": ["CoinMarketCap", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0x009c43b42aefac590c719e971020575974122803": { - "address": "0x009c43b42aefac590c719e971020575974122803", - "symbol": "BIX", - "decimals": 18, - "name": "Bibox", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x009c43b42aefac590c719e971020575974122803.png", - "aggregators": ["CoinMarketCap", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0xfa3118b34522580c35ae27f6cf52da1dbb756288": { - "address": "0xfa3118b34522580c35ae27f6cf52da1dbb756288", - "symbol": "LET", - "decimals": 6, - "name": "Linkeye", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xfa3118b34522580c35ae27f6cf52da1dbb756288.png", - "aggregators": ["CoinMarketCap", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0xf278c1ca969095ffddded020290cf8b5c424ace2": { - "address": "0xf278c1ca969095ffddded020290cf8b5c424ace2", - "symbol": "RUFF", - "decimals": 18, - "name": "Ruff", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xf278c1ca969095ffddded020290cf8b5c424ace2.png", - "aggregators": ["CoinMarketCap", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0x41dbecc1cdc5517c6f76f6a6e836adbee2754de3": { - "address": "0x41dbecc1cdc5517c6f76f6a6e836adbee2754de3", - "symbol": "MTN", - "decimals": 18, - "name": "Medicalchain", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x41dbecc1cdc5517c6f76f6a6e836adbee2754de3.png", - "aggregators": ["CoinMarketCap", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0x9c23d67aea7b95d80942e3836bcdf7e708a747c2": { - "address": "0x9c23d67aea7b95d80942e3836bcdf7e708a747c2", - "symbol": "LOCI", - "decimals": 18, - "name": "LOCIcoin", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x9c23d67aea7b95d80942e3836bcdf7e708a747c2.png", - "aggregators": ["CoinMarketCap", "LiFi", "Rango", "Bancor"], - "occurrences": 4 - }, - "0x6758b7d441a9739b98552b373703d8d3d14f9e62": { - "address": "0x6758b7d441a9739b98552b373703d8d3d14f9e62", - "symbol": "POA20", - "decimals": 18, - "name": "POA ERC20 on Foundation", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x6758b7d441a9739b98552b373703d8d3d14f9e62.png", - "aggregators": ["CoinMarketCap", "LiFi", "Rubic", "Bancor"], - "occurrences": 4 - }, - "0xe25b0bba01dc5630312b6a21927e578061a13f55": { - "address": "0xe25b0bba01dc5630312b6a21927e578061a13f55", - "symbol": "SHIP", - "decimals": 18, - "name": "SHIP", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xe25b0bba01dc5630312b6a21927e578061a13f55.png", - "aggregators": ["CoinMarketCap", "LiFi", "Rubic", "Rango"], - "occurrences": 4 - }, - "0xbf52f2ab39e26e0951d2a02b49b7702abe30406a": { - "address": "0xbf52f2ab39e26e0951d2a02b49b7702abe30406a", - "symbol": "ODE", - "decimals": 18, - "name": "ODEM", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xbf52f2ab39e26e0951d2a02b49b7702abe30406a.png", - "aggregators": ["CoinMarketCap", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0x7e9e431a0b8c4d532c745b1043c7fa29a48d4fba": { - "address": "0x7e9e431a0b8c4d532c745b1043c7fa29a48d4fba", - "symbol": "EOSDAC", - "decimals": 18, - "name": "eosDAC", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x7e9e431a0b8c4d532c745b1043c7fa29a48d4fba.png", - "aggregators": ["CoinMarketCap", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0xb0280743b44bf7db4b6be482b2ba7b75e5da096c": { - "address": "0xb0280743b44bf7db4b6be482b2ba7b75e5da096c", - "symbol": "TNS", - "decimals": 18, - "name": "Transcodium", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xb0280743b44bf7db4b6be482b2ba7b75e5da096c.png", - "aggregators": ["CoinMarketCap", "Rubic", "Rango", "Bancor"], - "occurrences": 4 - }, - "0xfb1e5f5e984c28ad7e228cdaa1f8a0919bb6a09b": { - "address": "0xfb1e5f5e984c28ad7e228cdaa1f8a0919bb6a09b", - "symbol": "GES", - "decimals": 18, - "name": "Galaxy eSolutions", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xfb1e5f5e984c28ad7e228cdaa1f8a0919bb6a09b.png", - "aggregators": ["CoinMarketCap", "Rubic", "Rango", "Bancor"], - "occurrences": 4 - }, - "0xc20464e0c373486d2b3335576e83a218b1618a5e": { - "address": "0xc20464e0c373486d2b3335576e83a218b1618a5e", - "symbol": "DTRC", - "decimals": 18, - "name": "Datarius Credit", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xc20464e0c373486d2b3335576e83a218b1618a5e.png", - "aggregators": ["CoinMarketCap", "Rubic", "Rango", "Bancor"], - "occurrences": 4 - }, - "0x1dea979ae76f26071870f824088da78979eb91c8": { - "address": "0x1dea979ae76f26071870f824088da78979eb91c8", - "symbol": "SPD", - "decimals": 18, - "name": "SPINDLE", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x1dea979ae76f26071870f824088da78979eb91c8.png", - "aggregators": ["CoinMarketCap", "Rubic", "Rango", "Bancor"], - "occurrences": 4 - }, - "0x943ed852dadb5c3938ecdc6883718df8142de4c8": { - "address": "0x943ed852dadb5c3938ecdc6883718df8142de4c8", - "symbol": "FTI", - "decimals": 18, - "name": "FansTime", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x943ed852dadb5c3938ecdc6883718df8142de4c8.png", - "aggregators": ["CoinMarketCap", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0x076641af1b8f06b7f8c92587156143c109002cbe": { - "address": "0x076641af1b8f06b7f8c92587156143c109002cbe", - "symbol": "SOP", - "decimals": 18, - "name": "SoPay", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x076641af1b8f06b7f8c92587156143c109002cbe.png", - "aggregators": ["CoinMarketCap", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0xc05d14442a510de4d3d71a3d316585aa0ce32b50": { - "address": "0xc05d14442a510de4d3d71a3d316585aa0ce32b50", - "symbol": "LINA", - "decimals": 18, - "name": "LINA", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xc05d14442a510de4d3d71a3d316585aa0ce32b50.png", - "aggregators": ["CoinMarketCap", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0x9a794dc1939f1d78fa48613b89b8f9d0a20da00e": { - "address": "0x9a794dc1939f1d78fa48613b89b8f9d0a20da00e", - "symbol": "ABX", - "decimals": 18, - "name": "ABX Token", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x9a794dc1939f1d78fa48613b89b8f9d0a20da00e.png", - "aggregators": ["CoinMarketCap", "LiFi", "Rubic", "Bancor"], - "occurrences": 4 - }, - "0x7995ab36bb307afa6a683c24a25d90dc1ea83566": { - "address": "0x7995ab36bb307afa6a683c24a25d90dc1ea83566", - "symbol": "HIT", - "decimals": 6, - "name": "HitChain", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x7995ab36bb307afa6a683c24a25d90dc1ea83566.png", - "aggregators": ["CoinMarketCap", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0xcaaa93712bdac37f736c323c93d4d5fdefcc31cc": { - "address": "0xcaaa93712bdac37f736c323c93d4d5fdefcc31cc", - "symbol": "CRD", - "decimals": 18, - "name": "CRD Network", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xcaaa93712bdac37f736c323c93d4d5fdefcc31cc.png", - "aggregators": ["CoinMarketCap", "Rubic", "Rango", "SushiSwap"], - "occurrences": 4 - }, - "0x04a020325024f130988782bd5276e53595e8d16e": { - "address": "0x04a020325024f130988782bd5276e53595e8d16e", - "symbol": "HERB", - "decimals": 8, - "name": "Herbalist", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x04a020325024f130988782bd5276e53595e8d16e.png", - "aggregators": ["CoinMarketCap", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0x6c3be406174349cfa4501654313d97e6a31072e1": { - "address": "0x6c3be406174349cfa4501654313d97e6a31072e1", - "symbol": "CNNS", - "decimals": 18, - "name": "CNNS", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x6c3be406174349cfa4501654313d97e6a31072e1.png", - "aggregators": ["CoinMarketCap", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0x5aaefe84e0fb3dd1f0fcff6fa7468124986b91bd": { - "address": "0x5aaefe84e0fb3dd1f0fcff6fa7468124986b91bd", - "symbol": "EVED", - "decimals": 18, - "name": "Evedo Token", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x5aaefe84e0fb3dd1f0fcff6fa7468124986b91bd.png", - "aggregators": ["CoinMarketCap", "Rubic", "Rango", "Bancor"], - "occurrences": 4 - }, - "0x893700a1a86ee68b92536bf6fd4d3200d7369f7d": { - "address": "0x893700a1a86ee68b92536bf6fd4d3200d7369f7d", - "symbol": "EMT", - "decimals": 18, - "name": "Emanate", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x893700a1a86ee68b92536bf6fd4d3200d7369f7d.png", - "aggregators": ["CoinMarketCap", "Rubic", "Rango", "SushiSwap"], - "occurrences": 4 - }, - "0x3a9fff453d50d4ac52a6890647b823379ba36b9e": { - "address": "0x3a9fff453d50d4ac52a6890647b823379ba36b9e", - "symbol": "SHUF", - "decimals": 18, - "name": "SHUF", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x3a9fff453d50d4ac52a6890647b823379ba36b9e.png", - "aggregators": ["CoinMarketCap", "LiFi", "Rubic", "Rango"], - "occurrences": 4 - }, - "0xc77b230f31b517f1ef362e59c173c2be6540b5e8": { - "address": "0xc77b230f31b517f1ef362e59c173c2be6540b5e8", - "symbol": "VIDY", - "decimals": 18, - "name": "VIDY", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xc77b230f31b517f1ef362e59c173c2be6540b5e8.png", - "aggregators": ["CoinMarketCap", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0x6e109e9dd7fa1a58bc3eff667e8e41fc3cc07aef": { - "address": "0x6e109e9dd7fa1a58bc3eff667e8e41fc3cc07aef", - "symbol": "CNHT", - "decimals": 6, - "name": "CNH Tether", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x6e109e9dd7fa1a58bc3eff667e8e41fc3cc07aef.png", - "aggregators": ["CoinMarketCap", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0xfb559ce67ff522ec0b9ba7f5dc9dc7ef6c139803": { - "address": "0xfb559ce67ff522ec0b9ba7f5dc9dc7ef6c139803", - "symbol": "PROB", - "decimals": 18, - "name": "Probit", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xfb559ce67ff522ec0b9ba7f5dc9dc7ef6c139803.png", - "aggregators": ["CoinMarketCap", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0x00059ae69c1622a7542edc15e8d17b060fe307b6": { - "address": "0x00059ae69c1622a7542edc15e8d17b060fe307b6", - "symbol": "AMON", - "decimals": 18, - "name": "AmonD", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x00059ae69c1622a7542edc15e8d17b060fe307b6.png", - "aggregators": ["CoinMarketCap", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0x2fe39f22eac6d3c1c86dd9d143640ebb94609fce": { - "address": "0x2fe39f22eac6d3c1c86dd9d143640ebb94609fce", - "symbol": "JDC", - "decimals": 18, - "name": "JD Coin", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x2fe39f22eac6d3c1c86dd9d143640ebb94609fce.png", - "aggregators": ["CoinMarketCap", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0xb67718b98d52318240c52e71a898335da4a28c42": { - "address": "0xb67718b98d52318240c52e71a898335da4a28c42", - "symbol": "INNBC", - "decimals": 6, - "name": "Innovative Bioresearch Coin", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xb67718b98d52318240c52e71a898335da4a28c42.png", - "aggregators": ["CoinMarketCap", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0x0e22734e078d6e399bcee40a549db591c4ea46cb": { - "address": "0x0e22734e078d6e399bcee40a549db591c4ea46cb", - "symbol": "STM", - "decimals": 18, - "name": "Streamity", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x0e22734e078d6e399bcee40a549db591c4ea46cb.png", - "aggregators": ["CoinMarketCap", "Socket", "Rubic", "Bancor"], - "occurrences": 4 - }, - "0x3c45b24359fb0e107a4eaa56bd0f2ce66c99a0e5": { - "address": "0x3c45b24359fb0e107a4eaa56bd0f2ce66c99a0e5", - "symbol": "ANK", - "decimals": 18, - "name": "Apple Network", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x3c45b24359fb0e107a4eaa56bd0f2ce66c99a0e5.png", - "aggregators": ["CoinMarketCap", "Rubic", "Rango", "Bancor"], - "occurrences": 4 - }, - "0x13339fd07934cd674269726edf3b5ccee9dd93de": { - "address": "0x13339fd07934cd674269726edf3b5ccee9dd93de", - "symbol": "CUR", - "decimals": 18, - "name": "CUR", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x13339fd07934cd674269726edf3b5ccee9dd93de.png", - "aggregators": ["CoinMarketCap", "LiFi", "Rubic", "Rango"], - "occurrences": 4 - }, - "0xfd6c31bb6f05fc8db64f4b740ab758605c271fd8": { - "address": "0xfd6c31bb6f05fc8db64f4b740ab758605c271fd8", - "symbol": "CTCN", - "decimals": 18, - "name": "Contracoin", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xfd6c31bb6f05fc8db64f4b740ab758605c271fd8.png", - "aggregators": ["CoinMarketCap", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0x9cb1aeafcc8a9406632c5b084246ea72f62d37b6": { - "address": "0x9cb1aeafcc8a9406632c5b084246ea72f62d37b6", - "symbol": "LBK", - "decimals": 8, - "name": "LBK", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x9cb1aeafcc8a9406632c5b084246ea72f62d37b6.png", - "aggregators": ["CoinMarketCap", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0x58002a6b6e659a16de9f02f529b10536e307b0d9": { - "address": "0x58002a6b6e659a16de9f02f529b10536e307b0d9", - "symbol": "CHFT", - "decimals": 18, - "name": "Crypto Holding Frank", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x58002a6b6e659a16de9f02f529b10536e307b0d9.png", - "aggregators": ["CoinMarketCap", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0x10bc518c32fbae5e38ecb50a612160571bd81e44": { - "address": "0x10bc518c32fbae5e38ecb50a612160571bd81e44", - "symbol": "VRO", - "decimals": 8, - "name": "VeraOne", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x10bc518c32fbae5e38ecb50a612160571bd81e44.png", - "aggregators": ["CoinMarketCap", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0xee059f0ca1507e4e20c689b20cff71b5e924f7bd": { - "address": "0xee059f0ca1507e4e20c689b20cff71b5e924f7bd", - "symbol": "LSV", - "decimals": 18, - "name": "Litecoin SV", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xee059f0ca1507e4e20c689b20cff71b5e924f7bd.png", - "aggregators": ["CoinMarketCap", "LiFi", "Socket", "Rubic"], - "occurrences": 4 - }, - "0x53884b61963351c283118a8e1fc05ba464a11959": { - "address": "0x53884b61963351c283118a8e1fc05ba464a11959", - "symbol": "MNS", - "decimals": 18, - "name": "Monnos", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x53884b61963351c283118a8e1fc05ba464a11959.png", - "aggregators": ["CoinMarketCap", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0x14d10003807ac60d07bb0ba82caeac8d2087c157": { - "address": "0x14d10003807ac60d07bb0ba82caeac8d2087c157", - "symbol": "IDEFI", - "decimals": 18, - "name": "IDEFI", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x14d10003807ac60d07bb0ba82caeac8d2087c157.png", - "aggregators": ["CoinMarketCap", "LiFi", "Rubic", "Rango"], - "occurrences": 4 - }, - "0xc76fb75950536d98fa62ea968e1d6b45ffea2a55": { - "address": "0xc76fb75950536d98fa62ea968e1d6b45ffea2a55", - "symbol": "COL", - "decimals": 18, - "name": "COL", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xc76fb75950536d98fa62ea968e1d6b45ffea2a55.png", - "aggregators": ["CoinMarketCap", "LiFi", "Rubic", "Rango"], - "occurrences": 4 - }, - "0x7533d63a2558965472398ef473908e1320520ae2": { - "address": "0x7533d63a2558965472398ef473908e1320520ae2", - "symbol": "INTX", - "decimals": 9, - "name": "INTEXCOIN", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x7533d63a2558965472398ef473908e1320520ae2.png", - "aggregators": ["CoinMarketCap", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0x1453dbb8a29551ade11d89825ca812e05317eaeb": { - "address": "0x1453dbb8a29551ade11d89825ca812e05317eaeb", - "symbol": "TEND", - "decimals": 18, - "name": "TEND", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x1453dbb8a29551ade11d89825ca812e05317eaeb.png", - "aggregators": ["CoinMarketCap", "LiFi", "Rubic", "Rango"], - "occurrences": 4 - }, - "0x0417912b3a7af768051765040a55bb0925d4ddcf": { - "address": "0x0417912b3a7af768051765040a55bb0925d4ddcf", - "symbol": "LID", - "decimals": 18, - "name": "LID", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x0417912b3a7af768051765040a55bb0925d4ddcf.png", - "aggregators": ["CoinMarketCap", "LiFi", "Rubic", "Rango"], - "occurrences": 4 - }, - "0x49184e6dae8c8ecd89d8bdc1b950c597b8167c90": { - "address": "0x49184e6dae8c8ecd89d8bdc1b950c597b8167c90", - "symbol": "LIBERTAS", - "decimals": 2, - "name": "LIBERTAS", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x49184e6dae8c8ecd89d8bdc1b950c597b8167c90.png", - "aggregators": ["CoinMarketCap", "LiFi", "Rubic", "Rango"], - "occurrences": 4 - }, - "0x7a939bb714fd2a48ebeb1e495aa9aaa74ba9fa68": { - "address": "0x7a939bb714fd2a48ebeb1e495aa9aaa74ba9fa68", - "symbol": "EVZ", - "decimals": 18, - "name": "Electric Vehicle Zone", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x7a939bb714fd2a48ebeb1e495aa9aaa74ba9fa68.png", - "aggregators": ["CoinMarketCap", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0x1b980e05943de3db3a459c72325338d327b6f5a9": { - "address": "0x1b980e05943de3db3a459c72325338d327b6f5a9", - "symbol": "GEAR", - "decimals": 18, - "name": "Bitgear", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x1b980e05943de3db3a459c72325338d327b6f5a9.png", - "aggregators": ["CoinMarketCap", "LiFi", "Socket", "Rubic"], - "occurrences": 4 - }, - "0x130914e1b240a7f4c5d460b7d3a2fd3846b576fa": { - "address": "0x130914e1b240a7f4c5d460b7d3a2fd3846b576fa", - "symbol": "ANG", - "decimals": 18, - "name": "Aureus Nummus Gold", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x130914e1b240a7f4c5d460b7d3a2fd3846b576fa.png", - "aggregators": ["CoinMarketCap", "Socket", "Rubic", "Rango"], - "occurrences": 4 - }, - "0xecc0f1f860a82ab3b442382d93853c02d6384389": { - "address": "0xecc0f1f860a82ab3b442382d93853c02d6384389", - "symbol": "AXIS", - "decimals": 18, - "name": "Axis DeFi", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xecc0f1f860a82ab3b442382d93853c02d6384389.png", - "aggregators": ["CoinMarketCap", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0x9aeb50f542050172359a0e1a25a9933bc8c01259": { - "address": "0x9aeb50f542050172359a0e1a25a9933bc8c01259", - "symbol": "OIN", - "decimals": 8, - "name": "oinfinance", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x9aeb50f542050172359a0e1a25a9933bc8c01259.png", - "aggregators": ["CoinMarketCap", "1inch", "Rubic", "Rango"], - "occurrences": 4 - }, - "0x012ba3ae1074ae43a34a14bca5c4ed0af01b6e53": { - "address": "0x012ba3ae1074ae43a34a14bca5c4ed0af01b6e53", - "symbol": "TRUMP", - "decimals": 18, - "name": "YUGE", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x012ba3ae1074ae43a34a14bca5c4ed0af01b6e53.png", - "aggregators": ["CoinMarketCap", "LiFi", "Socket", "Rubic"], - "occurrences": 4 - }, - "0xf1f5de69c9c8d9be8a7b01773cc1166d4ec6ede2": { - "address": "0xf1f5de69c9c8d9be8a7b01773cc1166d4ec6ede2", - "symbol": "DFX", - "decimals": 18, - "name": "Definitex", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xf1f5de69c9c8d9be8a7b01773cc1166d4ec6ede2.png", - "aggregators": ["CoinMarketCap", "LiFi", "Socket", "Rubic"], - "occurrences": 4 - }, - "0x468ab3b1f63a1c14b361bc367c3cc92277588da1": { - "address": "0x468ab3b1f63a1c14b361bc367c3cc92277588da1", - "symbol": "YELD", - "decimals": 18, - "name": "YELD", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x468ab3b1f63a1c14b361bc367c3cc92277588da1.png", - "aggregators": ["CoinMarketCap", "LiFi", "Socket", "Rubic"], - "occurrences": 4 - }, - "0x821144518dfe9e7b44fcf4d0824e15e8390d4637": { - "address": "0x821144518dfe9e7b44fcf4d0824e15e8390d4637", - "symbol": "ATIS", - "decimals": 18, - "name": "ATIS", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x821144518dfe9e7b44fcf4d0824e15e8390d4637.png", - "aggregators": ["CoinMarketCap", "LiFi", "Rubic", "Rango"], - "occurrences": 4 - }, - "0xdea67845a51e24461d5fed8084e69b426af3d5db": { - "address": "0xdea67845a51e24461d5fed8084e69b426af3d5db", - "symbol": "HTRE", - "decimals": 18, - "name": "HodlTree", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xdea67845a51e24461d5fed8084e69b426af3d5db.png", - "aggregators": ["CoinMarketCap", "1inch", "Rubic", "Rango"], - "occurrences": 4 - }, - "0xcad2d4c4469ff09ab24d02a63bcedfcd44be0645": { - "address": "0xcad2d4c4469ff09ab24d02a63bcedfcd44be0645", - "symbol": "ACPT", - "decimals": 18, - "name": "Crypto Accept", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xcad2d4c4469ff09ab24d02a63bcedfcd44be0645.png", - "aggregators": ["CoinMarketCap", "LiFi", "Rubic", "Bancor"], - "occurrences": 4 - }, - "0x8a6aca71a218301c7081d4e96d64292d3b275ce0": { - "address": "0x8a6aca71a218301c7081d4e96d64292d3b275ce0", - "symbol": "SFG", - "decimals": 18, - "name": "S Finance", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x8a6aca71a218301c7081d4e96d64292d3b275ce0.png", - "aggregators": ["CoinMarketCap", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0x2904b9b16652d7d0408eccfa23a19d4a3358230f": { - "address": "0x2904b9b16652d7d0408eccfa23a19d4a3358230f", - "symbol": "PURE", - "decimals": 18, - "name": "Puriever", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x2904b9b16652d7d0408eccfa23a19d4a3358230f.png", - "aggregators": ["CoinMarketCap", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0x3108ccfd96816f9e663baa0e8c5951d229e8c6da": { - "address": "0x3108ccfd96816f9e663baa0e8c5951d229e8c6da", - "symbol": "DARK", - "decimals": 18, - "name": "DarkToken", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x3108ccfd96816f9e663baa0e8c5951d229e8c6da.png", - "aggregators": ["CoinMarketCap", "LiFi", "Socket", "Rubic"], - "occurrences": 4 - }, - "0x2e2364966267b5d7d2ce6cd9a9b5bd19d9c7c6a9": { - "address": "0x2e2364966267b5d7d2ce6cd9a9b5bd19d9c7c6a9", - "symbol": "VOICE", - "decimals": 18, - "name": "Voice Token", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x2e2364966267b5d7d2ce6cd9a9b5bd19d9c7c6a9.png", - "aggregators": ["CoinMarketCap", "1inch", "Rubic", "Rango"], - "occurrences": 4 - }, - "0x02eca910cb3a7d43ebc7e8028652ed5c6b70259b": { - "address": "0x02eca910cb3a7d43ebc7e8028652ed5c6b70259b", - "symbol": "PTERIA", - "decimals": 18, - "name": "Pteria", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x02eca910cb3a7d43ebc7e8028652ed5c6b70259b.png", - "aggregators": ["CoinMarketCap", "LiFi", "Socket", "Rubic"], - "occurrences": 4 - }, - "0x84c722e6f1363e8d5c6db3ea600bef9a006da824": { - "address": "0x84c722e6f1363e8d5c6db3ea600bef9a006da824", - "symbol": "MSB", - "decimals": 18, - "name": "Misbloc", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x84c722e6f1363e8d5c6db3ea600bef9a006da824.png", - "aggregators": ["CoinMarketCap", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0x1fc5ef0337aea85c5f9198853a6e3a579a7a6987": { - "address": "0x1fc5ef0337aea85c5f9198853a6e3a579a7a6987", - "symbol": "REAP", - "decimals": 18, - "name": "ReapChain", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x1fc5ef0337aea85c5f9198853a6e3a579a7a6987.png", - "aggregators": ["CoinMarketCap", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0xdecade1c6bf2cd9fb89afad73e4a519c867adcf5": { - "address": "0xdecade1c6bf2cd9fb89afad73e4a519c867adcf5", - "symbol": "WIS", - "decimals": 18, - "name": "Experty Wisdom Token", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xdecade1c6bf2cd9fb89afad73e4a519c867adcf5.png", - "aggregators": ["Metamask", "LiFi", "Rubic", "Rango"], - "occurrences": 4 - }, - "0x53bd789f2cdb846b227d8ffc7b46ed4263231fdf": { - "address": "0x53bd789f2cdb846b227d8ffc7b46ed4263231fdf", - "symbol": "SMBSWAP", - "decimals": 18, - "name": "SimbCoin Swap", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x53bd789f2cdb846b227d8ffc7b46ed4263231fdf.png", - "aggregators": ["CoinMarketCap", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0xe1c7e30c42c24582888c758984f6e382096786bd": { - "address": "0xe1c7e30c42c24582888c758984f6e382096786bd", - "symbol": "XCUR", - "decimals": 8, - "name": "Curate", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xe1c7e30c42c24582888c758984f6e382096786bd.png", - "aggregators": ["CoinMarketCap", "TrustWallet", "Rubic", "Rango"], - "occurrences": 4 - }, - "0xb29663aa4e2e81e425294193616c1b102b70a158": { - "address": "0xb29663aa4e2e81e425294193616c1b102b70a158", - "symbol": "LDN", - "decimals": 18, - "name": "Ludena Protocol", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xb29663aa4e2e81e425294193616c1b102b70a158.png", - "aggregators": ["CoinMarketCap", "Rubic", "Rango", "SushiSwap"], - "occurrences": 4 - }, - "0xb5fe099475d3030dde498c3bb6f3854f762a48ad": { - "address": "0xb5fe099475d3030dde498c3bb6f3854f762a48ad", - "symbol": "FNK", - "decimals": 18, - "name": "Finiko", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xb5fe099475d3030dde498c3bb6f3854f762a48ad.png", - "aggregators": ["CoinMarketCap", "LiFi", "Rubic", "Rango"], - "occurrences": 4 - }, - "0x9d1555d8cb3c846bb4f7d5b1b1080872c3166676": { - "address": "0x9d1555d8cb3c846bb4f7d5b1b1080872c3166676", - "symbol": "MSLV", - "decimals": 18, - "name": "Mirrored iShares Si", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x9d1555d8cb3c846bb4f7d5b1b1080872c3166676.png", - "aggregators": ["CoinMarketCap", "Rubic", "Rango", "SushiSwap"], - "occurrences": 4 - }, - "0xf72fcd9dcf0190923fadd44811e240ef4533fc86": { - "address": "0xf72fcd9dcf0190923fadd44811e240ef4533fc86", - "symbol": "MVIXY", - "decimals": 18, - "name": "Mirrored ProShares", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xf72fcd9dcf0190923fadd44811e240ef4533fc86.png", - "aggregators": ["CoinMarketCap", "Rubic", "Rango", "SushiSwap"], - "occurrences": 4 - }, - "0xf0c6521b1f8ad9c33a99aaf056f6c6247a3862ba": { - "address": "0xf0c6521b1f8ad9c33a99aaf056f6c6247a3862ba", - "symbol": "ELD", - "decimals": 18, - "name": "ETH.limiteD", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xf0c6521b1f8ad9c33a99aaf056f6c6247a3862ba.png", - "aggregators": ["CoinMarketCap", "LiFi", "Socket", "Rubic"], - "occurrences": 4 - }, - "0xc0a25a24cce412e2fb407c08e3785437fee9ad1d": { - "address": "0xc0a25a24cce412e2fb407c08e3785437fee9ad1d", - "symbol": "OFT", - "decimals": 18, - "name": "Orient", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xc0a25a24cce412e2fb407c08e3785437fee9ad1d.png", - "aggregators": ["CoinMarketCap", "LiFi", "Socket", "Rubic"], - "occurrences": 4 - }, - "0xf058501585023d040ea9493134ed72c083553eed": { - "address": "0xf058501585023d040ea9493134ed72c083553eed", - "symbol": "DMX", - "decimals": 18, - "name": "Dymmax", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xf058501585023d040ea9493134ed72c083553eed.png", - "aggregators": ["CoinMarketCap", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0x0e186357c323c806c1efdad36d217f7a54b63d18": { - "address": "0x0e186357c323c806c1efdad36d217f7a54b63d18", - "symbol": "CGT", - "decimals": 18, - "name": "Curio Gas Token", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x0e186357c323c806c1efdad36d217f7a54b63d18.png", - "aggregators": ["CoinMarketCap", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0x5bb29c33c4a3c29f56f8aca40b4db91d8a5fe2c5": { - "address": "0x5bb29c33c4a3c29f56f8aca40b4db91d8a5fe2c5", - "symbol": "ONS", - "decimals": 18, - "name": "One Share", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x5bb29c33c4a3c29f56f8aca40b4db91d8a5fe2c5.png", - "aggregators": ["CoinMarketCap", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0x2b915b505c017abb1547aa5ab355fbe69865cc6d": { - "address": "0x2b915b505c017abb1547aa5ab355fbe69865cc6d", - "symbol": "MAPS", - "decimals": 6, - "name": "Maps.me Token", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x2b915b505c017abb1547aa5ab355fbe69865cc6d.png", - "aggregators": ["CoinMarketCap", "LiFi", "Socket", "Rubic"], - "occurrences": 4 - }, - "0x0e1fe60bc4ac0e3102343752ae7e49d01d444c0b": { - "address": "0x0e1fe60bc4ac0e3102343752ae7e49d01d444c0b", - "symbol": "HXN", - "decimals": 18, - "name": "Havens Nook", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x0e1fe60bc4ac0e3102343752ae7e49d01d444c0b.png", - "aggregators": ["CoinMarketCap", "LiFi", "Socket", "Rubic"], - "occurrences": 4 - }, - "0xbae5f2d8a1299e5c4963eaff3312399253f27ccb": { - "address": "0xbae5f2d8a1299e5c4963eaff3312399253f27ccb", - "symbol": "SOAR", - "decimals": 9, - "name": "SOAR.FI", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xbae5f2d8a1299e5c4963eaff3312399253f27ccb.png", - "aggregators": ["CoinMarketCap", "LiFi", "Socket", "Rubic"], - "occurrences": 4 - }, - "0x455f7ef6d8bcfc35f9337e85aee1b0600a59fabe": { - "address": "0x455f7ef6d8bcfc35f9337e85aee1b0600a59fabe", - "symbol": "ALOHA", - "decimals": 18, - "name": "ALOHA", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x455f7ef6d8bcfc35f9337e85aee1b0600a59fabe.png", - "aggregators": ["CoinMarketCap", "LiFi", "Socket", "Rubic"], - "occurrences": 4 - }, - "0x1d7ca62f6af49ec66f6680b8606e634e55ef22c1": { - "address": "0x1d7ca62f6af49ec66f6680b8606e634e55ef22c1", - "symbol": "START", - "decimals": 18, - "name": "Starter xyz", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x1d7ca62f6af49ec66f6680b8606e634e55ef22c1.png", - "aggregators": ["CoinMarketCap", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0x45448e05020576929fcdeabc228e35b420098840": { - "address": "0x45448e05020576929fcdeabc228e35b420098840", - "symbol": "IDV", - "decimals": 18, - "name": "Idavoll DAO", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x45448e05020576929fcdeabc228e35b420098840.png", - "aggregators": ["CoinMarketCap", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0xa4bbe66f151b22b167127c770016b15ff97dd35c": { - "address": "0xa4bbe66f151b22b167127c770016b15ff97dd35c", - "symbol": "UMBR", - "decimals": 18, - "name": "UmbriaToken", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xa4bbe66f151b22b167127c770016b15ff97dd35c.png", - "aggregators": ["CoinMarketCap", "LiFi", "Socket", "Rubic"], - "occurrences": 4 - }, - "0xbc81bf5b3173bccdbe62dba5f5b695522ad63559": { - "address": "0xbc81bf5b3173bccdbe62dba5f5b695522ad63559", - "symbol": "XPB", - "decimals": 18, - "name": "Lead Token", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xbc81bf5b3173bccdbe62dba5f5b695522ad63559.png", - "aggregators": ["CoinMarketCap", "LiFi", "Socket", "Rubic"], - "occurrences": 4 - }, - "0xfbbe9b1142c699512545f47937ee6fae0e4b0aa9": { - "address": "0xfbbe9b1142c699512545f47937ee6fae0e4b0aa9", - "symbol": "EDDA", - "decimals": 18, - "name": "EDDASwap", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xfbbe9b1142c699512545f47937ee6fae0e4b0aa9.png", - "aggregators": ["CoinMarketCap", "1inch", "Rubic", "Rango"], - "occurrences": 4 - }, - "0x84bb947fcedba6b9c7dcead42df07e113bb03007": { - "address": "0x84bb947fcedba6b9c7dcead42df07e113bb03007", - "symbol": "STR", - "decimals": 18, - "name": "Stater", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x84bb947fcedba6b9c7dcead42df07e113bb03007.png", - "aggregators": ["CoinMarketCap", "LiFi", "Socket", "Rubic"], - "occurrences": 4 - }, - "0xb870679a7fa65b924026f496de7f27c1dd0e5c5f": { - "address": "0xb870679a7fa65b924026f496de7f27c1dd0e5c5f", - "symbol": "PET", - "decimals": 18, - "name": "Hello Pets", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xb870679a7fa65b924026f496de7f27c1dd0e5c5f.png", - "aggregators": ["CoinMarketCap", "LiFi", "Rubic", "Rango"], - "occurrences": 4 - }, - "0x4d75d9e37667a2d4677ec3d74bdd9049326ad8d6": { - "address": "0x4d75d9e37667a2d4677ec3d74bdd9049326ad8d6", - "symbol": "WAR", - "decimals": 18, - "name": "NFT WARS", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x4d75d9e37667a2d4677ec3d74bdd9049326ad8d6.png", - "aggregators": ["CoinMarketCap", "LiFi", "Socket", "Rubic"], - "occurrences": 4 - }, - "0xd487892bb4c57edbe7ab401d9fe801c8fe6473f5": { - "address": "0xd487892bb4c57edbe7ab401d9fe801c8fe6473f5", - "symbol": "HVE2", - "decimals": 18, - "name": "Uhive", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xd487892bb4c57edbe7ab401d9fe801c8fe6473f5.png", - "aggregators": ["CoinMarketCap", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0xe63d6b308bce0f6193aec6b7e6eba005f41e36ab": { - "address": "0xe63d6b308bce0f6193aec6b7e6eba005f41e36ab", - "symbol": "STN", - "decimals": 18, - "name": "STN", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xe63d6b308bce0f6193aec6b7e6eba005f41e36ab.png", - "aggregators": ["CoinMarketCap", "LiFi", "Rubic", "Rango"], - "occurrences": 4 - }, - "0x5de7cc4bcbca31c473f6d2f27825cfb09cc0bb16": { - "address": "0x5de7cc4bcbca31c473f6d2f27825cfb09cc0bb16", - "symbol": "XBE", - "decimals": 18, - "name": "XBE", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x5de7cc4bcbca31c473f6d2f27825cfb09cc0bb16.png", - "aggregators": ["CoinMarketCap", "Rubic", "Rango", "SushiSwap"], - "occurrences": 4 - }, - "0xc12ecee46ed65d970ee5c899fcc7ae133aff9b03": { - "address": "0xc12ecee46ed65d970ee5c899fcc7ae133aff9b03", - "symbol": "TRY", - "decimals": 18, - "name": "TRYfinance", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xc12ecee46ed65d970ee5c899fcc7ae133aff9b03.png", - "aggregators": ["CoinMarketCap", "Rubic", "Rango", "SushiSwap"], - "occurrences": 4 - }, - "0x04969cd041c0cafb6ac462bd65b536a5bdb3a670": { - "address": "0x04969cd041c0cafb6ac462bd65b536a5bdb3a670", - "symbol": "WOMI", - "decimals": 18, - "name": "Wrapped OMI Token", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x04969cd041c0cafb6ac462bd65b536a5bdb3a670.png", - "aggregators": ["CoinMarketCap", "LiFi", "Rubic", "Rango"], - "occurrences": 4 - }, - "0x4af5ff1a60a6ef6c7c8f9c4e304cd9051fca3ec0": { - "address": "0x4af5ff1a60a6ef6c7c8f9c4e304cd9051fca3ec0", - "symbol": "RGP", - "decimals": 18, - "name": "Rigel Protocol", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x4af5ff1a60a6ef6c7c8f9c4e304cd9051fca3ec0.png", - "aggregators": ["CoinMarketCap", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0x5a705745373a780814c379ef17810630d529efe0": { - "address": "0x5a705745373a780814c379ef17810630d529efe0", - "symbol": "SENPAI", - "decimals": 18, - "name": "ProjectSenpai", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x5a705745373a780814c379ef17810630d529efe0.png", - "aggregators": ["CoinMarketCap", "LiFi", "Socket", "Rubic"], - "occurrences": 4 - }, - "0xacbd826394189cf2623c6df98a18b41fc8ffc16d": { - "address": "0xacbd826394189cf2623c6df98a18b41fc8ffc16d", - "symbol": "N1", - "decimals": 18, - "name": "NFTify", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xacbd826394189cf2623c6df98a18b41fc8ffc16d.png", - "aggregators": ["CoinMarketCap", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0xaa99199d1e9644b588796f3215089878440d58e0": { - "address": "0xaa99199d1e9644b588796f3215089878440d58e0", - "symbol": "ALPHR", - "decimals": 18, - "name": "Alphr", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xaa99199d1e9644b588796f3215089878440d58e0.png", - "aggregators": ["CoinMarketCap", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0xf45f6c8bb3d77ea762175b8f7ca4d251941649fa": { - "address": "0xf45f6c8bb3d77ea762175b8f7ca4d251941649fa", - "symbol": "LEMD", - "decimals": 18, - "name": "Lemond", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xf45f6c8bb3d77ea762175b8f7ca4d251941649fa.png", - "aggregators": ["CoinMarketCap", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0x327673ae6b33bd3d90f0096870059994f30dc8af": { - "address": "0x327673ae6b33bd3d90f0096870059994f30dc8af", - "symbol": "LMT", - "decimals": 18, - "name": "Lympo Market", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x327673ae6b33bd3d90f0096870059994f30dc8af.png", - "aggregators": ["CoinMarketCap", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0xb8fa12f8409da31a4fc43d15c4c78c33d8213b9b": { - "address": "0xb8fa12f8409da31a4fc43d15c4c78c33d8213b9b", - "symbol": "CALI", - "decimals": 18, - "name": "CaliCoin", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xb8fa12f8409da31a4fc43d15c4c78c33d8213b9b.png", - "aggregators": ["CoinMarketCap", "Socket", "Rubic", "Rango"], - "occurrences": 4 - }, - "0x34965f73cfa05bf8d8af37cb4af64fa950605ea8": { - "address": "0x34965f73cfa05bf8d8af37cb4af64fa950605ea8", - "symbol": "COW", - "decimals": 18, - "name": "CoinWind", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x34965f73cfa05bf8d8af37cb4af64fa950605ea8.png", - "aggregators": ["CoinMarketCap", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0x58fad9e3c3ae54c9ba98c3f0e4bf88ab3e8cf3c5": { - "address": "0x58fad9e3c3ae54c9ba98c3f0e4bf88ab3e8cf3c5", - "symbol": "SPAY", - "decimals": 18, - "name": "SpaceY 2025", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x58fad9e3c3ae54c9ba98c3f0e4bf88ab3e8cf3c5.png", - "aggregators": ["CoinMarketCap", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0x634239cfa331df0291653139d1a6083b9cf705e3": { - "address": "0x634239cfa331df0291653139d1a6083b9cf705e3", - "symbol": "DES", - "decimals": 18, - "name": "DeSpace Protocol", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x634239cfa331df0291653139d1a6083b9cf705e3.png", - "aggregators": ["CoinMarketCap", "LiFi", "Rubic", "Rango"], - "occurrences": 4 - }, - "0x106552c11272420aad5d7e94f8acab9095a6c952": { - "address": "0x106552c11272420aad5d7e94f8acab9095a6c952", - "symbol": "KEANU", - "decimals": 9, - "name": "Keanu Inu", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x106552c11272420aad5d7e94f8acab9095a6c952.png", - "aggregators": ["CoinMarketCap", "1inch", "Rubic", "Rango"], - "occurrences": 4 - }, - "0x00d8318e44780edeefcf3020a5448f636788883c": { - "address": "0x00d8318e44780edeefcf3020a5448f636788883c", - "symbol": "DAPPX", - "decimals": 18, - "name": "dAppstore", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x00d8318e44780edeefcf3020a5448f636788883c.png", - "aggregators": ["CoinMarketCap", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0x68cfb82eacb9f198d508b514d898a403c449533e": { - "address": "0x68cfb82eacb9f198d508b514d898a403c449533e", - "symbol": "CMK", - "decimals": 18, - "name": "Credmark", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x68cfb82eacb9f198d508b514d898a403c449533e.png", - "aggregators": ["CoinMarketCap", "Rubic", "Rango", "SushiSwap"], - "occurrences": 4 - }, - "0xbbbbbbb5aa847a2003fbc6b5c16df0bd1e725f61": { - "address": "0xbbbbbbb5aa847a2003fbc6b5c16df0bd1e725f61", - "symbol": "BPRO", - "decimals": 18, - "name": "BProtocol", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xbbbbbbb5aa847a2003fbc6b5c16df0bd1e725f61.png", - "aggregators": ["CoinMarketCap", "LiFi", "Rubic", "Bancor"], - "occurrences": 4 - }, - "0x639ae8f3eed18690bf451229d14953a5a5627b72": { - "address": "0x639ae8f3eed18690bf451229d14953a5a5627b72", - "symbol": "GNBU", - "decimals": 18, - "name": "Nimbus Governance Token", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x639ae8f3eed18690bf451229d14953a5a5627b72.png", - "aggregators": ["CoinMarketCap", "LiFi", "Socket", "Rubic"], - "occurrences": 4 - }, - "0xd6caf5bd23cf057f5fccce295dcc50c01c198707": { - "address": "0xd6caf5bd23cf057f5fccce295dcc50c01c198707", - "symbol": "EVA", - "decimals": 18, - "name": "Evanesco Network", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xd6caf5bd23cf057f5fccce295dcc50c01c198707.png", - "aggregators": ["CoinMarketCap", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0x043c308bb8a5ae96d0093444be7f56459f1340b1": { - "address": "0x043c308bb8a5ae96d0093444be7f56459f1340b1", - "symbol": "SUM", - "decimals": 18, - "name": "SumSwap", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x043c308bb8a5ae96d0093444be7f56459f1340b1.png", - "aggregators": ["CoinMarketCap", "LiFi", "Rubic", "Rango"], - "occurrences": 4 - }, - "0x650f44ed6f1fe0e1417cb4b3115d52494b4d9b6d": { - "address": "0x650f44ed6f1fe0e1417cb4b3115d52494b4d9b6d", - "symbol": "MEOW", - "decimals": 18, - "name": "Meowshi", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x650f44ed6f1fe0e1417cb4b3115d52494b4d9b6d.png", - "aggregators": ["CoinMarketCap", "Rubic", "Rango", "SushiSwap"], - "occurrences": 4 - }, - "0xc4170fd71eced3c80badca77f4e12e8aac1e3436": { - "address": "0xc4170fd71eced3c80badca77f4e12e8aac1e3436", - "symbol": "KMON", - "decimals": 18, - "name": "Kryptomon", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xc4170fd71eced3c80badca77f4e12e8aac1e3436.png", - "aggregators": ["CoinMarketCap", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0x3757232b55e60da4a8793183ac030cfce4c3865d": { - "address": "0x3757232b55e60da4a8793183ac030cfce4c3865d", - "symbol": "YDR", - "decimals": 18, - "name": "YDragon", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x3757232b55e60da4a8793183ac030cfce4c3865d.png", - "aggregators": ["CoinMarketCap", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0x2f75113b13d136f861d212fa9b572f2c79ac81c4": { - "address": "0x2f75113b13d136f861d212fa9b572f2c79ac81c4", - "symbol": "EKTA", - "decimals": 18, - "name": "Ekta", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x2f75113b13d136f861d212fa9b572f2c79ac81c4.png", - "aggregators": ["CoinMarketCap", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0x58fcaa970339a9b1f8c0a5b4f3fcd7af2ba3075e": { - "address": "0x58fcaa970339a9b1f8c0a5b4f3fcd7af2ba3075e", - "symbol": "POLAR", - "decimals": 18, - "name": "Polar Sync", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x58fcaa970339a9b1f8c0a5b4f3fcd7af2ba3075e.png", - "aggregators": ["CoinMarketCap", "Socket", "Rubic", "Rango"], - "occurrences": 4 - }, - "0xffbf315f70e458e49229654dea4ce192d26f9b25": { - "address": "0xffbf315f70e458e49229654dea4ce192d26f9b25", - "symbol": "VOLT", - "decimals": 18, - "name": "VOLTAGE", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xffbf315f70e458e49229654dea4ce192d26f9b25.png", - "aggregators": ["CoinMarketCap", "LiFi", "Socket", "Rubic"], - "occurrences": 4 - }, - "0x0343131c0257ac21ea5a8dc83841f071efd9285c": { - "address": "0x0343131c0257ac21ea5a8dc83841f071efd9285c", - "symbol": "ZENITH", - "decimals": 18, - "name": "Zenith Chain", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x0343131c0257ac21ea5a8dc83841f071efd9285c.png", - "aggregators": ["CoinMarketCap", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0x1cc30e2eac975416060ec6fe682041408420d414": { - "address": "0x1cc30e2eac975416060ec6fe682041408420d414", - "symbol": "KOL", - "decimals": 18, - "name": "KOL", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x1cc30e2eac975416060ec6fe682041408420d414.png", - "aggregators": ["CoinMarketCap", "Socket", "Rubic", "Rango"], - "occurrences": 4 - }, - "0x1f16d41f9b3db03b462bdd6c92245ee708d1c103": { - "address": "0x1f16d41f9b3db03b462bdd6c92245ee708d1c103", - "symbol": "RPG", - "decimals": 18, - "name": "Rangers Protocol Gas", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x1f16d41f9b3db03b462bdd6c92245ee708d1c103.png", - "aggregators": ["CoinMarketCap", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0x3ec8798b81485a254928b70cda1cf0a2bb0b74d7": { - "address": "0x3ec8798b81485a254928b70cda1cf0a2bb0b74d7", - "symbol": "GRO", - "decimals": 18, - "name": "Gro DAO Token", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x3ec8798b81485a254928b70cda1cf0a2bb0b74d7.png", - "aggregators": ["CoinMarketCap", "1inch", "Rubic", "Rango"], - "occurrences": 4 - }, - "0xdc47f2ba852669b178699449e50682d6ceaf8c07": { - "address": "0xdc47f2ba852669b178699449e50682d6ceaf8c07", - "symbol": "STON", - "decimals": 18, - "name": "Ston", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xdc47f2ba852669b178699449e50682d6ceaf8c07.png", - "aggregators": ["CoinMarketCap", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0xbafdabadcf19d0cfbbe0ab9c69cf050d86ff888c": { - "address": "0xbafdabadcf19d0cfbbe0ab9c69cf050d86ff888c", - "symbol": "ZEDXION", - "decimals": 18, - "name": "Zedxion", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xbafdabadcf19d0cfbbe0ab9c69cf050d86ff888c.png", - "aggregators": ["CoinMarketCap", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0xd8c1232fcd219286e341271385bd70601503b3d7": { - "address": "0xd8c1232fcd219286e341271385bd70601503b3d7", - "symbol": "DOGIRA", - "decimals": 9, - "name": "Dogira", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xd8c1232fcd219286e341271385bd70601503b3d7.png", - "aggregators": ["CoinMarketCap", "Socket", "Rubic", "Rango"], - "occurrences": 4 - }, - "0x332e824e46fceeb9e59ba9491b80d3e6d42b0b59": { - "address": "0x332e824e46fceeb9e59ba9491b80d3e6d42b0b59", - "symbol": "CHEESE", - "decimals": 18, - "name": "CheeseFry", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x332e824e46fceeb9e59ba9491b80d3e6d42b0b59.png", - "aggregators": ["CoinMarketCap", "Rubic", "Rango", "SushiSwap"], - "occurrences": 4 - }, - "0x15ee120fd69bec86c1d38502299af7366a41d1a6": { - "address": "0x15ee120fd69bec86c1d38502299af7366a41d1a6", - "symbol": "BITANT", - "decimals": 18, - "name": "BitANT", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x15ee120fd69bec86c1d38502299af7366a41d1a6.png", - "aggregators": ["CoinMarketCap", "Socket", "Rubic", "Rango"], - "occurrences": 4 - }, - "0x0fd67b4ceb9b607ef206904ec73459c4880132c9": { - "address": "0x0fd67b4ceb9b607ef206904ec73459c4880132c9", - "symbol": "SHOE", - "decimals": 18, - "name": "ShoeFy", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x0fd67b4ceb9b607ef206904ec73459c4880132c9.png", - "aggregators": ["CoinMarketCap", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0x513c3200f227ebb62e3b3d00b7a83779643a71cf": { - "address": "0x513c3200f227ebb62e3b3d00b7a83779643a71cf", - "symbol": "LIFT", - "decimals": 18, - "name": "Uplift", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x513c3200f227ebb62e3b3d00b7a83779643a71cf.png", - "aggregators": ["CoinMarketCap", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0x2162f572b25f7358db9376ab58a947a4e45cede1": { - "address": "0x2162f572b25f7358db9376ab58a947a4e45cede1", - "symbol": "LBL", - "decimals": 18, - "name": "LABEL AI", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x2162f572b25f7358db9376ab58a947a4e45cede1.png", - "aggregators": ["CoinMarketCap", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0xdd2e93924bdd4e20c3cf4a8736e5955224fa450e": { - "address": "0xdd2e93924bdd4e20c3cf4a8736e5955224fa450e", - "symbol": "FOHO", - "decimals": 8, - "name": "FOHO Coin", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xdd2e93924bdd4e20c3cf4a8736e5955224fa450e.png", - "aggregators": ["CoinMarketCap", "LiFi", "Rubic", "Rango"], - "occurrences": 4 - }, - "0xc0b68eb52c89e3fffa62d78012ac8b661bfaa323": { - "address": "0xc0b68eb52c89e3fffa62d78012ac8b661bfaa323", - "symbol": "VIX", - "decimals": 18, - "name": "VIXCO", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xc0b68eb52c89e3fffa62d78012ac8b661bfaa323.png", - "aggregators": ["CoinMarketCap", "Socket", "Rubic", "Rango"], - "occurrences": 4 - }, - "0x0dc7d0192c148d7d2d6fa32dc280f953c0ad6a34": { - "address": "0x0dc7d0192c148d7d2d6fa32dc280f953c0ad6a34", - "symbol": "METACAT", - "decimals": 18, - "name": "MetaCat", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x0dc7d0192c148d7d2d6fa32dc280f953c0ad6a34.png", - "aggregators": ["CoinMarketCap", "Rubic", "Rango", "SushiSwap"], - "occurrences": 4 - }, - "0x21ad647b8f4fe333212e735bfc1f36b4941e6ad2": { - "address": "0x21ad647b8f4fe333212e735bfc1f36b4941e6ad2", - "symbol": "SQUID", - "decimals": 9, - "name": "Squid", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x21ad647b8f4fe333212e735bfc1f36b4941e6ad2.png", - "aggregators": ["CoinMarketCap", "Rubic", "Rango", "SushiSwap"], - "occurrences": 4 - }, - "0xa36fdbbae3c9d55a1d67ee5821d53b50b63a1ab9": { - "address": "0xa36fdbbae3c9d55a1d67ee5821d53b50b63a1ab9", - "symbol": "TEMP", - "decimals": 18, - "name": "Tempus", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xa36fdbbae3c9d55a1d67ee5821d53b50b63a1ab9.png", - "aggregators": ["CoinMarketCap", "LiFi", "Rubic", "Bancor"], - "occurrences": 4 - }, - "0x7b39917f9562c8bc83c7a6c2950ff571375d505d": { - "address": "0x7b39917f9562c8bc83c7a6c2950ff571375d505d", - "symbol": "LEAG", - "decimals": 18, - "name": "LeagueDAO Governance Token", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x7b39917f9562c8bc83c7a6c2950ff571375d505d.png", - "aggregators": ["CoinMarketCap", "Rubic", "Rango", "SushiSwap"], - "occurrences": 4 - }, - "0xbc7250c8c3eca1dfc1728620af835fca489bfdf3": { - "address": "0xbc7250c8c3eca1dfc1728620af835fca489bfdf3", - "symbol": "GM", - "decimals": 9, - "name": "GM", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xbc7250c8c3eca1dfc1728620af835fca489bfdf3.png", - "aggregators": ["CoinMarketCap", "Socket", "Rubic", "Rango"], - "occurrences": 4 - }, - "0x3f68e7b44e9bcb486c2feadb7a2289d9cdfc9088": { - "address": "0x3f68e7b44e9bcb486c2feadb7a2289d9cdfc9088", - "symbol": "ICONS", - "decimals": 18, - "name": "SportsIcon", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x3f68e7b44e9bcb486c2feadb7a2289d9cdfc9088.png", - "aggregators": ["CoinMarketCap", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0x7f0693074f8064cfbcf9fa6e5a3fa0e4f58ccccf": { - "address": "0x7f0693074f8064cfbcf9fa6e5a3fa0e4f58ccccf", - "symbol": "GM", - "decimals": 18, - "name": "we love gm", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x7f0693074f8064cfbcf9fa6e5a3fa0e4f58ccccf.png", - "aggregators": ["CoinMarketCap", "Rubic", "Rango", "SushiSwap"], - "occurrences": 4 - }, - "0xac0968a3e2020ac8ca83e60ccf69081ebc6d3bc3": { - "address": "0xac0968a3e2020ac8ca83e60ccf69081ebc6d3bc3", - "symbol": "CIND", - "decimals": 18, - "name": "Cindrum", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xac0968a3e2020ac8ca83e60ccf69081ebc6d3bc3.png", - "aggregators": ["CoinMarketCap", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0x8d610e20481f4c4f3acb87bba9c46bef7795fdfe": { - "address": "0x8d610e20481f4c4f3acb87bba9c46bef7795fdfe", - "symbol": "UNT", - "decimals": 18, - "name": "Unity Network", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x8d610e20481f4c4f3acb87bba9c46bef7795fdfe.png", - "aggregators": ["CoinMarketCap", "LiFi", "Rubic", "Rango"], - "occurrences": 4 - }, - "0xe2e109f1b4eaa8915655fe8fdefc112a34acc5f0": { - "address": "0xe2e109f1b4eaa8915655fe8fdefc112a34acc5f0", - "symbol": "DUST", - "decimals": 18, - "name": "DUST Token", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xe2e109f1b4eaa8915655fe8fdefc112a34acc5f0.png", - "aggregators": ["CoinMarketCap", "LiFi", "Socket", "Rubic"], - "occurrences": 4 - }, - "0x6a969d379700b2e5ea4e684d273d63c1c050ba49": { - "address": "0x6a969d379700b2e5ea4e684d273d63c1c050ba49", - "symbol": "PAF", - "decimals": 18, - "name": "Pacific", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x6a969d379700b2e5ea4e684d273d63c1c050ba49.png", - "aggregators": ["CoinMarketCap", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0x7237c0b30b1355f1b76355582f182f6f04b08740": { - "address": "0x7237c0b30b1355f1b76355582f182f6f04b08740", - "symbol": "MGG", - "decimals": 18, - "name": "MetaGaming Guild", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x7237c0b30b1355f1b76355582f182f6f04b08740.png", - "aggregators": ["CoinMarketCap", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0x31c2415c946928e9fd1af83cdfa38d3edbd4326f": { - "address": "0x31c2415c946928e9fd1af83cdfa38d3edbd4326f", - "symbol": "UMAD", - "decimals": 8, - "name": "MADworld", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x31c2415c946928e9fd1af83cdfa38d3edbd4326f.png", - "aggregators": ["CoinMarketCap", "Socket", "Rubic", "Rango"], - "occurrences": 4 - }, - "0xdec41db0c33f3f6f3cb615449c311ba22d418a8d": { - "address": "0xdec41db0c33f3f6f3cb615449c311ba22d418a8d", - "symbol": "LOBI", - "decimals": 9, - "name": "Lobi", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xdec41db0c33f3f6f3cb615449c311ba22d418a8d.png", - "aggregators": ["CoinMarketCap", "Rubic", "Rango", "SushiSwap"], - "occurrences": 4 - }, - "0x0e6fa9c050c8a707e7f56a2b3695665e4f9eac9b": { - "address": "0x0e6fa9c050c8a707e7f56a2b3695665e4f9eac9b", - "symbol": "RBIF", - "decimals": 9, - "name": "ROBO INU", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x0e6fa9c050c8a707e7f56a2b3695665e4f9eac9b.png", - "aggregators": ["CoinMarketCap", "Socket", "Rubic", "Rango"], - "occurrences": 4 - }, - "0xa1e770be76bde604f8ebb66f640250a787b9422b": { - "address": "0xa1e770be76bde604f8ebb66f640250a787b9422b", - "symbol": "DEB", - "decimals": 18, - "name": "AndUsChain", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xa1e770be76bde604f8ebb66f640250a787b9422b.png", - "aggregators": ["CoinMarketCap", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0x31ea0de8119307aa264bb4b38727aab4e36b074f": { - "address": "0x31ea0de8119307aa264bb4b38727aab4e36b074f", - "symbol": "STORE", - "decimals": 18, - "name": "Bit Store", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x31ea0de8119307aa264bb4b38727aab4e36b074f.png", - "aggregators": ["CoinMarketCap", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0xbba6c7c7d673c48d90069ad2e9d2fe587fcb6bc3": { - "address": "0xbba6c7c7d673c48d90069ad2e9d2fe587fcb6bc3", - "symbol": "LEPA", - "decimals": 18, - "name": "Lepasa", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xbba6c7c7d673c48d90069ad2e9d2fe587fcb6bc3.png", - "aggregators": ["CoinMarketCap", "LiFi", "Socket", "Rubic"], - "occurrences": 4 - }, - "0x4184aa04215e5d716dd4c213fed519acadc68f92": { - "address": "0x4184aa04215e5d716dd4c213fed519acadc68f92", - "symbol": "ONUS", - "decimals": 18, - "name": "ONUS", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x4184aa04215e5d716dd4c213fed519acadc68f92.png", - "aggregators": ["CoinMarketCap", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0xaf9db9e362e306688af48c4acb9618c06db38ac3": { - "address": "0xaf9db9e362e306688af48c4acb9618c06db38ac3", - "symbol": "ACY", - "decimals": 18, - "name": "ACY", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xaf9db9e362e306688af48c4acb9618c06db38ac3.png", - "aggregators": ["CoinMarketCap", "LiFi", "Socket", "Rubic"], - "occurrences": 4 - }, - "0xf61bf4d1a948487d61b8fa63808aac06bda55f98": { - "address": "0xf61bf4d1a948487d61b8fa63808aac06bda55f98", - "symbol": "TR3", - "decimals": 18, - "name": "Tr3zor", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xf61bf4d1a948487d61b8fa63808aac06bda55f98.png", - "aggregators": ["CoinMarketCap", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0x0acc0fee1d86d2cd5af372615bf59b298d50cd69": { - "address": "0x0acc0fee1d86d2cd5af372615bf59b298d50cd69", - "symbol": "ILSI", - "decimals": 18, - "name": "Invest Like Stakeborg Index", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x0acc0fee1d86d2cd5af372615bf59b298d50cd69.png", - "aggregators": ["CoinMarketCap", "Rubic", "Rango", "SushiSwap"], - "occurrences": 4 - }, - "0x2a03a891add2dc6d0f7b94419086630ba5cb65b6": { - "address": "0x2a03a891add2dc6d0f7b94419086630ba5cb65b6", - "symbol": "DV", - "decimals": 18, - "name": "Dreamverse", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x2a03a891add2dc6d0f7b94419086630ba5cb65b6.png", - "aggregators": ["CoinMarketCap", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0x52f4d5ee6c91e01be67ca1f64b11ed0ee370817d": { - "address": "0x52f4d5ee6c91e01be67ca1f64b11ed0ee370817d", - "symbol": "CIA", - "decimals": 9, - "name": "CIA", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x52f4d5ee6c91e01be67ca1f64b11ed0ee370817d.png", - "aggregators": ["CoinMarketCap", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0x76ff2ab6b34142421f44a68cc8dd08f45f9ee2f2": { - "address": "0x76ff2ab6b34142421f44a68cc8dd08f45f9ee2f2", - "symbol": "PIP", - "decimals": 9, - "name": "PIP", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x76ff2ab6b34142421f44a68cc8dd08f45f9ee2f2.png", - "aggregators": ["CoinMarketCap", "Socket", "Rubic", "Rango"], - "occurrences": 4 - }, - "0x9c32185b81766a051e08de671207b34466dd1021": { - "address": "0x9c32185b81766a051e08de671207b34466dd1021", - "symbol": "BTCPX", - "decimals": 8, - "name": "BTC Proxy", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x9c32185b81766a051e08de671207b34466dd1021.png", - "aggregators": ["CoinMarketCap", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0x47252a63c723889814aebcac0683e615624cec64": { - "address": "0x47252a63c723889814aebcac0683e615624cec64", - "symbol": "NIL", - "decimals": 18, - "name": "nil", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x47252a63c723889814aebcac0683e615624cec64.png", - "aggregators": ["CoinMarketCap", "Rubic", "Rango", "SushiSwap"], - "occurrences": 4 - }, - "0x203aad20f51bbe43e650d3ceea88d43dd6c817c1": { - "address": "0x203aad20f51bbe43e650d3ceea88d43dd6c817c1", - "symbol": "GM", - "decimals": 8, - "name": "GhostMarket Token", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x203aad20f51bbe43e650d3ceea88d43dd6c817c1.png", - "aggregators": ["CoinMarketCap", "Socket", "Rubic", "Rango"], - "occurrences": 4 - }, - "0x6c862f803ff42a97d4a483ab761256ad8c90f4f8": { - "address": "0x6c862f803ff42a97d4a483ab761256ad8c90f4f8", - "symbol": "XLS", - "decimals": 18, - "name": "ELIS", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x6c862f803ff42a97d4a483ab761256ad8c90f4f8.png", - "aggregators": ["CoinMarketCap", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0x5b1d655c93185b06b00f7925791106132cb3ad75": { - "address": "0x5b1d655c93185b06b00f7925791106132cb3ad75", - "symbol": "DMT", - "decimals": 18, - "name": "DarkMatter", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x5b1d655c93185b06b00f7925791106132cb3ad75.png", - "aggregators": ["CoinMarketCap", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0x6dda263994aab33f5ed612294e26f2a13df0da05": { - "address": "0x6dda263994aab33f5ed612294e26f2a13df0da05", - "symbol": "QHUB", - "decimals": 18, - "name": "QHUB", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x6dda263994aab33f5ed612294e26f2a13df0da05.png", - "aggregators": ["CoinMarketCap", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0x00281dfce4cfd72c0b6fda2aaaf077258743f9e8": { - "address": "0x00281dfce4cfd72c0b6fda2aaaf077258743f9e8", - "symbol": "NRFB", - "decimals": 0, - "name": "NuriFootball", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x00281dfce4cfd72c0b6fda2aaaf077258743f9e8.png", - "aggregators": ["CoinMarketCap", "Socket", "Rubic", "Rango"], - "occurrences": 4 - }, - "0x1afb69dbc9f54d08dab1bd3436f8da1af819e647": { - "address": "0x1afb69dbc9f54d08dab1bd3436f8da1af819e647", - "symbol": "MELOS", - "decimals": 18, - "name": "Melos Studio", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x1afb69dbc9f54d08dab1bd3436f8da1af819e647.png", - "aggregators": ["CoinMarketCap", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0xf725f73caee250ae384ec38bb2c77c38ef2cccea": { - "address": "0xf725f73caee250ae384ec38bb2c77c38ef2cccea", - "symbol": "AIR", - "decimals": 18, - "name": "Ape In Records", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xf725f73caee250ae384ec38bb2c77c38ef2cccea.png", - "aggregators": ["CoinMarketCap", "Socket", "Rubic", "Rango"], - "occurrences": 4 - }, - "0x60bb16c4a931b1a0b8a7d945c651dd90f41d42cf": { - "address": "0x60bb16c4a931b1a0b8a7d945c651dd90f41d42cf", - "symbol": "FBX", - "decimals": 18, - "name": "Finance Blocks", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x60bb16c4a931b1a0b8a7d945c651dd90f41d42cf.png", - "aggregators": ["CoinMarketCap", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0x1c7e83f8c581a967940dbfa7984744646ae46b29": { - "address": "0x1c7e83f8c581a967940dbfa7984744646ae46b29", - "symbol": "RND", - "decimals": 18, - "name": "random", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x1c7e83f8c581a967940dbfa7984744646ae46b29.png", - "aggregators": ["CoinMarketCap", "Socket", "Rubic", "Rango"], - "occurrences": 4 - }, - "0xb2606492712d311be8f41d940afe8ce742a52d44": { - "address": "0xb2606492712d311be8f41d940afe8ce742a52d44", - "symbol": "ZEND", - "decimals": 18, - "name": "zkLend", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xb2606492712d311be8f41d940afe8ce742a52d44.png", - "aggregators": ["CoinMarketCap", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0x6570ffe19da7e2b425329b157d9109b87f18304b": { - "address": "0x6570ffe19da7e2b425329b157d9109b87f18304b", - "symbol": "UNM", - "decimals": 18, - "name": "UNIUM", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x6570ffe19da7e2b425329b157d9109b87f18304b.png", - "aggregators": ["CoinMarketCap", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0xde075d9adbd0240b4462f124af926452ad0bac91": { - "address": "0xde075d9adbd0240b4462f124af926452ad0bac91", - "symbol": "BBF", - "decimals": 18, - "name": "Bubblefong", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xde075d9adbd0240b4462f124af926452ad0bac91.png", - "aggregators": ["CoinMarketCap", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0x27778e14ce36d3b85e1effeb43816a17bbb7088a": { - "address": "0x27778e14ce36d3b85e1effeb43816a17bbb7088a", - "symbol": "LGOLD", - "decimals": 18, - "name": "Lyfe Gold", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x27778e14ce36d3b85e1effeb43816a17bbb7088a.png", - "aggregators": ["CoinMarketCap", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0xb840d10d840ef47c233fec1fd040f5b145a6dfa5": { - "address": "0xb840d10d840ef47c233fec1fd040f5b145a6dfa5", - "symbol": "STREETH", - "decimals": 18, - "name": "STREETH", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xb840d10d840ef47c233fec1fd040f5b145a6dfa5.png", - "aggregators": ["CoinMarketCap", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0x36919a60a2b67b6d2329863093d180d23d5a0308": { - "address": "0x36919a60a2b67b6d2329863093d180d23d5a0308", - "symbol": "KUSUNOKI", - "decimals": 18, - "name": "Kusunoki Samurai", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x36919a60a2b67b6d2329863093d180d23d5a0308.png", - "aggregators": ["CoinMarketCap", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0x3209d14ff61766359e64aceff91877cec2ad968e": { - "address": "0x3209d14ff61766359e64aceff91877cec2ad968e", - "symbol": "CUP", - "decimals": 18, - "name": "CouponBay", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x3209d14ff61766359e64aceff91877cec2ad968e.png", - "aggregators": ["CoinMarketCap", "Socket", "Rubic", "Rango"], - "occurrences": 4 - }, - "0xb009bfaaf85e53f55d8657781eb69feaaed83672": { - "address": "0xb009bfaaf85e53f55d8657781eb69feaaed83672", - "symbol": "EGS", - "decimals": 18, - "name": "EdgeSwap", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xb009bfaaf85e53f55d8657781eb69feaaed83672.png", - "aggregators": ["CoinMarketCap", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0xa16a609ff4e1a15b6ccb469e7a5dd14e89305283": { - "address": "0xa16a609ff4e1a15b6ccb469e7a5dd14e89305283", - "symbol": "SPUME", - "decimals": 18, - "name": "Spume", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xa16a609ff4e1a15b6ccb469e7a5dd14e89305283.png", - "aggregators": ["CoinMarketCap", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0x20cd2e7ec8f5d8b337fe46a4f565ccef1561b9a9": { - "address": "0x20cd2e7ec8f5d8b337fe46a4f565ccef1561b9a9", - "symbol": "ESG", - "decimals": 18, - "name": "ESG", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x20cd2e7ec8f5d8b337fe46a4f565ccef1561b9a9.png", - "aggregators": ["CoinMarketCap", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0x9802296cc5b76ff2fc6dd6de372f47f96bc0347a": { - "address": "0x9802296cc5b76ff2fc6dd6de372f47f96bc0347a", - "symbol": "KALIS", - "decimals": 18, - "name": "Kalichain", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x9802296cc5b76ff2fc6dd6de372f47f96bc0347a.png", - "aggregators": ["CoinMarketCap", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0xa5b947687163fe88c3e6af5b17ae69896f4abccf": { - "address": "0xa5b947687163fe88c3e6af5b17ae69896f4abccf", - "symbol": "PSDN", - "decimals": 18, - "name": "Poseidon", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xa5b947687163fe88c3e6af5b17ae69896f4abccf.png", - "aggregators": ["CoinMarketCap", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0x830eb1204380e9c44434db8700257025358707c6": { - "address": "0x830eb1204380e9c44434db8700257025358707c6", - "symbol": "GOB", - "decimals": 18, - "name": "Goons of Balatroon", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x830eb1204380e9c44434db8700257025358707c6.png", - "aggregators": ["CoinMarketCap", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0xacf8d5e515ed005655dfefa09c22673a37a7cdee": { - "address": "0xacf8d5e515ed005655dfefa09c22673a37a7cdee", - "symbol": "FNF", - "decimals": 18, - "name": "FunFi", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xacf8d5e515ed005655dfefa09c22673a37a7cdee.png", - "aggregators": ["CoinMarketCap", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0x188fb5f5ae5bbe4154d5778f2bbb2fb985c94d25": { - "address": "0x188fb5f5ae5bbe4154d5778f2bbb2fb985c94d25", - "symbol": "OBX", - "decimals": 18, - "name": "OpenBlox", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x188fb5f5ae5bbe4154d5778f2bbb2fb985c94d25.png", - "aggregators": ["CoinMarketCap", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0x4fd51cb87ffefdf1711112b5bd8ab682e54988ea": { - "address": "0x4fd51cb87ffefdf1711112b5bd8ab682e54988ea", - "symbol": "WPT", - "decimals": 18, - "name": "WPT Investing Corp", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x4fd51cb87ffefdf1711112b5bd8ab682e54988ea.png", - "aggregators": ["CoinMarketCap", "Socket", "Rubic", "Rango"], - "occurrences": 4 - }, - "0x7707aada3ce7722ac63b91727daf1999849f6835": { - "address": "0x7707aada3ce7722ac63b91727daf1999849f6835", - "symbol": "BNK", - "decimals": 8, - "name": "Bankera", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x7707aada3ce7722ac63b91727daf1999849f6835.png", - "aggregators": ["CoinMarketCap", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0x68ccaca9adf1552b3316d6067690ec27397c8ea8": { - "address": "0x68ccaca9adf1552b3316d6067690ec27397c8ea8", - "symbol": "TOS", - "decimals": 18, - "name": "Cryptopia", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x68ccaca9adf1552b3316d6067690ec27397c8ea8.png", - "aggregators": ["CoinMarketCap", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0x171d76d931529384639bc9aad5b77b77041ed604": { - "address": "0x171d76d931529384639bc9aad5b77b77041ed604", - "symbol": "MOTG", - "decimals": 18, - "name": "MetaOctagon", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x171d76d931529384639bc9aad5b77b77041ed604.png", - "aggregators": ["CoinMarketCap", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0x1c3d163219bb74f430411b95d66b72056f366ec1": { - "address": "0x1c3d163219bb74f430411b95d66b72056f366ec1", - "symbol": "ENO", - "decimals": 18, - "name": "ENO", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x1c3d163219bb74f430411b95d66b72056f366ec1.png", - "aggregators": ["CoinMarketCap", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0xe67f943af5eb6051ef56f05979cc30b732717fa6": { - "address": "0xe67f943af5eb6051ef56f05979cc30b732717fa6", - "symbol": "WATT", - "decimals": 4, - "name": "WATTTON", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xe67f943af5eb6051ef56f05979cc30b732717fa6.png", - "aggregators": ["CoinMarketCap", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0xee9e7bb7e55bbc86414047b61d65c9c0d91ffbd0": { - "address": "0xee9e7bb7e55bbc86414047b61d65c9c0d91ffbd0", - "symbol": "FT", - "decimals": 18, - "name": "Fracton Protocol", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xee9e7bb7e55bbc86414047b61d65c9c0d91ffbd0.png", - "aggregators": ["CoinMarketCap", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0x99f618edcfedca1fcc8302e14daa84802114a8c5": { - "address": "0x99f618edcfedca1fcc8302e14daa84802114a8c5", - "symbol": "DBNB", - "decimals": 9, - "name": "DecentraBNB", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x99f618edcfedca1fcc8302e14daa84802114a8c5.png", - "aggregators": ["CoinMarketCap", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0x4a27e9aab8f8ba9de06766c8476ed1d16494e35f": { - "address": "0x4a27e9aab8f8ba9de06766c8476ed1d16494e35f", - "symbol": "PEPE", - "decimals": 18, - "name": "PEPEGOLD", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x4a27e9aab8f8ba9de06766c8476ed1d16494e35f.png", - "aggregators": ["CoinMarketCap", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0x434cb4fc4b952872967914d430878eee53ebd502": { - "address": "0x434cb4fc4b952872967914d430878eee53ebd502", - "symbol": "APCG", - "decimals": 18, - "name": "ALL Pay Coin", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x434cb4fc4b952872967914d430878eee53ebd502.png", - "aggregators": ["CoinMarketCap", "LiFi", "Socket", "Rubic"], - "occurrences": 4 - }, - "0xb24cd494fae4c180a89975f1328eab2a7d5d8f11": { - "address": "0xb24cd494fae4c180a89975f1328eab2a7d5d8f11", - "symbol": "CODE", - "decimals": 18, - "name": "Developer DAO", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xb24cd494fae4c180a89975f1328eab2a7d5d8f11.png", - "aggregators": ["CoinMarketCap", "LiFi", "Socket", "Rubic"], - "occurrences": 4 - }, - "0x5bb15141bb6def6d2bafeed8ff84bf889c0c573b": { - "address": "0x5bb15141bb6def6d2bafeed8ff84bf889c0c573b", - "symbol": "LVM", - "decimals": 18, - "name": "LakeViewMeta", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x5bb15141bb6def6d2bafeed8ff84bf889c0c573b.png", - "aggregators": ["CoinMarketCap", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0xaa2d8c9a8bd0f7945143bfd509be3ff23dd78918": { - "address": "0xaa2d8c9a8bd0f7945143bfd509be3ff23dd78918", - "symbol": "ATNT", - "decimals": 3, - "name": "Artizen", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xaa2d8c9a8bd0f7945143bfd509be3ff23dd78918.png", - "aggregators": ["CoinMarketCap", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0x1b3c515f58857e141a966b33182f2f3feecc10e9": { - "address": "0x1b3c515f58857e141a966b33182f2f3feecc10e9", - "symbol": "USK", - "decimals": 6, - "name": "USK", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x1b3c515f58857e141a966b33182f2f3feecc10e9.png", - "aggregators": ["CoinMarketCap", "LiFi", "Rubic", "Sonarwatch"], - "occurrences": 4 - }, - "0x461b71cff4d4334bba09489ace4b5dc1a1813445": { - "address": "0x461b71cff4d4334bba09489ace4b5dc1a1813445", - "symbol": "HRD", - "decimals": 9, - "name": "Hoard", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x461b71cff4d4334bba09489ace4b5dc1a1813445.png", - "aggregators": ["CoinMarketCap", "1inch", "Rubic", "Rango"], - "occurrences": 4 - }, - "0x291aa47c58558adfc2bcd6f060578fdae1f6570c": { - "address": "0x291aa47c58558adfc2bcd6f060578fdae1f6570c", - "symbol": "MBASE", - "decimals": 18, - "name": "Minebase", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x291aa47c58558adfc2bcd6f060578fdae1f6570c.png", - "aggregators": ["CoinMarketCap", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0x5891599664ed15c6e88041b4f5bc08594f026f0e": { - "address": "0x5891599664ed15c6e88041b4f5bc08594f026f0e", - "symbol": "JPGC", - "decimals": 18, - "name": "JPGold Coin", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x5891599664ed15c6e88041b4f5bc08594f026f0e.png", - "aggregators": ["CoinMarketCap", "Socket", "Rubic", "Rango"], - "occurrences": 4 - }, - "0xa888d9616c2222788fa19f05f77221a290eef704": { - "address": "0xa888d9616c2222788fa19f05f77221a290eef704", - "symbol": "DARUMA", - "decimals": 9, - "name": "Daruma", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xa888d9616c2222788fa19f05f77221a290eef704.png", - "aggregators": ["CoinMarketCap", "Socket", "Rubic", "Rango"], - "occurrences": 4 - }, - "0xe5a733681bbe6cd8c764bb8078ef8e13a576dd78": { - "address": "0xe5a733681bbe6cd8c764bb8078ef8e13a576dd78", - "symbol": "DPAY", - "decimals": 18, - "name": "Devour", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xe5a733681bbe6cd8c764bb8078ef8e13a576dd78.png", - "aggregators": ["CoinMarketCap", "1inch", "Rubic", "Rango"], - "occurrences": 4 - }, - "0x095797fd4297fb79883cc912a5ba6313b15c445d": { - "address": "0x095797fd4297fb79883cc912a5ba6313b15c445d", - "symbol": "GOLC", - "decimals": 18, - "name": "GOLCOIN", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x095797fd4297fb79883cc912a5ba6313b15c445d.png", - "aggregators": ["CoinMarketCap", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0xba93ef534094f8b7001ece2691168140965341ab": { - "address": "0xba93ef534094f8b7001ece2691168140965341ab", - "symbol": "LOTT", - "decimals": 18, - "name": "Beauty Bakery Linked Operation Transact", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xba93ef534094f8b7001ece2691168140965341ab.png", - "aggregators": ["CoinMarketCap", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0x9008064e6cf73e27a3aba4b10e69f855a4f8efcc": { - "address": "0x9008064e6cf73e27a3aba4b10e69f855a4f8efcc", - "symbol": "GEM", - "decimals": 18, - "name": "GemieToken", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x9008064e6cf73e27a3aba4b10e69f855a4f8efcc.png", - "aggregators": ["CoinMarketCap", "Socket", "Rubic", "Rango"], - "occurrences": 4 - }, - "0x1d6405138a335ce5fd7364086334efb3e4f28b59": { - "address": "0x1d6405138a335ce5fd7364086334efb3e4f28b59", - "symbol": "CCX", - "decimals": 18, - "name": "ClearCryptos", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x1d6405138a335ce5fd7364086334efb3e4f28b59.png", - "aggregators": ["CoinMarketCap", "Socket", "Rubic", "Rango"], - "occurrences": 4 - }, - "0x7495e5cc8f27e0bd5bd4cb86d17f0d841ca58ee4": { - "address": "0x7495e5cc8f27e0bd5bd4cb86d17f0d841ca58ee4", - "symbol": "ARNC", - "decimals": 18, - "name": "Arnoya classic", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x7495e5cc8f27e0bd5bd4cb86d17f0d841ca58ee4.png", - "aggregators": ["CoinMarketCap", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0x329cf160f30d21006bcd24b67eade561e54cde4c": { - "address": "0x329cf160f30d21006bcd24b67eade561e54cde4c", - "symbol": "CARE", - "decimals": 18, - "name": "CareCoin", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x329cf160f30d21006bcd24b67eade561e54cde4c.png", - "aggregators": ["CoinMarketCap", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0x8790f2fc7ca2e7db841307fb3f4e72a03baf7b47": { - "address": "0x8790f2fc7ca2e7db841307fb3f4e72a03baf7b47", - "symbol": "SPILLWAYS", - "decimals": 18, - "name": "Spillways", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x8790f2fc7ca2e7db841307fb3f4e72a03baf7b47.png", - "aggregators": ["CoinMarketCap", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0x5abf88cf3444611d13f6d1b39f3f3ee8575c91a2": { - "address": "0x5abf88cf3444611d13f6d1b39f3f3ee8575c91a2", - "symbol": "SAT", - "decimals": 18, - "name": "Super Athletes Token", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x5abf88cf3444611d13f6d1b39f3f3ee8575c91a2.png", - "aggregators": ["CoinMarketCap", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0x6d60a8dfb16d09f67d46fcd36a0cd310078257ca": { - "address": "0x6d60a8dfb16d09f67d46fcd36a0cd310078257ca", - "symbol": "CIX", - "decimals": 18, - "name": "Centurion Invest", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x6d60a8dfb16d09f67d46fcd36a0cd310078257ca.png", - "aggregators": ["CoinMarketCap", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0xcf4c68db4c2fa0bf58df07b14f45ce7709a716ac": { - "address": "0xcf4c68db4c2fa0bf58df07b14f45ce7709a716ac", - "symbol": "SHIELD", - "decimals": 18, - "name": "Dejitaru Shirudo", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xcf4c68db4c2fa0bf58df07b14f45ce7709a716ac.png", - "aggregators": ["CoinMarketCap", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0x2be1e42bf263aab47d27ba92e72c14823e101d7c": { - "address": "0x2be1e42bf263aab47d27ba92e72c14823e101d7c", - "symbol": "FFRAX", - "decimals": 18, - "name": "Fluid FRAX", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x2be1e42bf263aab47d27ba92e72c14823e101d7c.png", - "aggregators": ["CoinMarketCap", "Rubic", "Rango", "SushiSwap"], - "occurrences": 4 - }, - "0x922e2708462c7a3d014d8344f7c4d92b27ecf332": { - "address": "0x922e2708462c7a3d014d8344f7c4d92b27ecf332", - "symbol": "NEURONI", - "decimals": 18, - "name": "Neuroni AI", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x922e2708462c7a3d014d8344f7c4d92b27ecf332.png", - "aggregators": ["CoinMarketCap", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0x8b937af714ac7e2129bd33d93641f52b665ca352": { - "address": "0x8b937af714ac7e2129bd33d93641f52b665ca352", - "symbol": "JIZZ", - "decimals": 18, - "name": "JizzRocket", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x8b937af714ac7e2129bd33d93641f52b665ca352.png", - "aggregators": ["CoinMarketCap", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0x2f4404c4012476929b6503e1397707480bf23b7f": { - "address": "0x2f4404c4012476929b6503e1397707480bf23b7f", - "symbol": "TAI", - "decimals": 9, - "name": "AITravis", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x2f4404c4012476929b6503e1397707480bf23b7f.png", - "aggregators": ["CoinMarketCap", "Socket", "Rubic", "Rango"], - "occurrences": 4 - }, - "0xc6cc3d07c705e39d11c7f60d8836c7c78d4ac5f1": { - "address": "0xc6cc3d07c705e39d11c7f60d8836c7c78d4ac5f1", - "symbol": "OLEA", - "decimals": 18, - "name": "Olea Token", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xc6cc3d07c705e39d11c7f60d8836c7c78d4ac5f1.png", - "aggregators": ["CoinMarketCap", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0x1a6658f40e51b372e593b7d2144c1402d5cf33e8": { - "address": "0x1a6658f40e51b372e593b7d2144c1402d5cf33e8", - "symbol": "PUBLX", - "decimals": 18, - "name": "PUBLC", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x1a6658f40e51b372e593b7d2144c1402d5cf33e8.png", - "aggregators": ["CoinMarketCap", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0x08f40811c7d6c013744166f3d4cb1a9a92d3d54e": { - "address": "0x08f40811c7d6c013744166f3d4cb1a9a92d3d54e", - "symbol": "NVG", - "decimals": 18, - "name": "NightVerse Game", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x08f40811c7d6c013744166f3d4cb1a9a92d3d54e.png", - "aggregators": ["CoinMarketCap", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0xa48f322f8b3edff967629af79e027628b9dd1298": { - "address": "0xa48f322f8b3edff967629af79e027628b9dd1298", - "symbol": "DUSD", - "decimals": 18, - "name": "Davos xyz USD", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xa48f322f8b3edff967629af79e027628b9dd1298.png", - "aggregators": ["CoinMarketCap", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0xce20bb92ccf9bbf5091ef85649e71e552819ad8c": { - "address": "0xce20bb92ccf9bbf5091ef85649e71e552819ad8c", - "symbol": "SMART", - "decimals": 18, - "name": "Smart Game Finance", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xce20bb92ccf9bbf5091ef85649e71e552819ad8c.png", - "aggregators": ["CoinMarketCap", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0x0018d5e01e53878f90feab02f1b2019a21adf8b1": { - "address": "0x0018d5e01e53878f90feab02f1b2019a21adf8b1", - "symbol": "SHADOWCATS", - "decimals": 18, - "name": "Shadowcats", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x0018d5e01e53878f90feab02f1b2019a21adf8b1.png", - "aggregators": ["CoinMarketCap", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0x97d4f49eeb0e2c96d5ebaa71ab8418e563ecd9fd": { - "address": "0x97d4f49eeb0e2c96d5ebaa71ab8418e563ecd9fd", - "symbol": "LSD", - "decimals": 9, - "name": "Liquid Staking Derivative", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x97d4f49eeb0e2c96d5ebaa71ab8418e563ecd9fd.png", - "aggregators": ["CoinMarketCap", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0x3442fbf264b6d723e01775a710850dcef6e6847c": { - "address": "0x3442fbf264b6d723e01775a710850dcef6e6847c", - "symbol": "VNN", - "decimals": 18, - "name": "VINU Network", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x3442fbf264b6d723e01775a710850dcef6e6847c.png", - "aggregators": ["CoinMarketCap", "LiFi", "Socket", "Rubic"], - "occurrences": 4 - }, - "0x42b91f1d05afea671a2da3c780eda2abf0a2a366": { - "address": "0x42b91f1d05afea671a2da3c780eda2abf0a2a366", - "symbol": "MNB", - "decimals": 18, - "name": "Mineable", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x42b91f1d05afea671a2da3c780eda2abf0a2a366.png", - "aggregators": ["CoinMarketCap", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0xaf8942831f3a096f708b8b31f191b8958cf176c5": { - "address": "0xaf8942831f3a096f708b8b31f191b8958cf176c5", - "symbol": "NERF", - "decimals": 18, - "name": "Neural Radiance Field", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xaf8942831f3a096f708b8b31f191b8958cf176c5.png", - "aggregators": ["CoinMarketCap", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0x198065e69a86cb8a9154b333aad8efe7a3c256f8": { - "address": "0x198065e69a86cb8a9154b333aad8efe7a3c256f8", - "symbol": "KOY", - "decimals": 18, - "name": "Koyo", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x198065e69a86cb8a9154b333aad8efe7a3c256f8.png", - "aggregators": ["CoinMarketCap", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0xd54619e0b9899d74cc9b981354eb6b59732c43b1": { - "address": "0xd54619e0b9899d74cc9b981354eb6b59732c43b1", - "symbol": "N", - "decimals": 18, - "name": "Ncoin", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xd54619e0b9899d74cc9b981354eb6b59732c43b1.png", - "aggregators": ["CoinMarketCap", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0x9ed7e4b1bff939ad473da5e7a218c771d1569456": { - "address": "0x9ed7e4b1bff939ad473da5e7a218c771d1569456", - "symbol": "REUNI", - "decimals": 6, - "name": "Reunit Wallet", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x9ed7e4b1bff939ad473da5e7a218c771d1569456.png", - "aggregators": ["CoinMarketCap", "LiFi", "Rubic", "Rango"], - "occurrences": 4 - }, - "0xe9b7b5d5e8d2bcc78884f9f9099bfa42a9e5c1a5": { - "address": "0xe9b7b5d5e8d2bcc78884f9f9099bfa42a9e5c1a5", - "symbol": "ZENF", - "decimals": 18, - "name": "Zenland", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xe9b7b5d5e8d2bcc78884f9f9099bfa42a9e5c1a5.png", - "aggregators": ["CoinMarketCap", "LiFi", "Rubic", "Rango"], - "occurrences": 4 - }, - "0xec505c81d6a7567b5bde804870b1038832fe6da1": { - "address": "0xec505c81d6a7567b5bde804870b1038832fe6da1", - "symbol": "CND", - "decimals": 18, - "name": "Coinhound", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xec505c81d6a7567b5bde804870b1038832fe6da1.png", - "aggregators": ["CoinMarketCap", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0x823e1b82ce1dc147bbdb25a203f046afab1ce918": { - "address": "0x823e1b82ce1dc147bbdb25a203f046afab1ce918", - "symbol": "COIL", - "decimals": 18, - "name": "SpiralDAO Coil", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x823e1b82ce1dc147bbdb25a203f046afab1ce918.png", - "aggregators": ["CoinMarketCap", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0x46cca329970b33e1a007dd4ef0594a1cedb3e72a": { - "address": "0x46cca329970b33e1a007dd4ef0594a1cedb3e72a", - "symbol": "YESP", - "decimals": 18, - "name": "Yesports", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x46cca329970b33e1a007dd4ef0594a1cedb3e72a.png", - "aggregators": ["CoinMarketCap", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0x8260328d0c405d9ca061d80199102ddc9089e43c": { - "address": "0x8260328d0c405d9ca061d80199102ddc9089e43c", - "symbol": "DOJO", - "decimals": 9, - "name": "Dojo Supercomputer", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x8260328d0c405d9ca061d80199102ddc9089e43c.png", - "aggregators": ["CoinMarketCap", "Socket", "Rubic", "Rango"], - "occurrences": 4 - }, - "0xb076bda1abc154ddb4ccd9be45542a823aee290e": { - "address": "0xb076bda1abc154ddb4ccd9be45542a823aee290e", - "symbol": "FLEX", - "decimals": 18, - "name": "FlexMeme", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xb076bda1abc154ddb4ccd9be45542a823aee290e.png", - "aggregators": ["CoinMarketCap", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0x1f17d72cbe65df609315df5c4f5f729efbd00ade": { - "address": "0x1f17d72cbe65df609315df5c4f5f729efbd00ade", - "symbol": "GYOSHI", - "decimals": 18, - "name": "GYOSHI", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x1f17d72cbe65df609315df5c4f5f729efbd00ade.png", - "aggregators": ["CoinMarketCap", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0xe1ec350ea16d1ddaff57f31387b2d9708eb7ce28": { - "address": "0xe1ec350ea16d1ddaff57f31387b2d9708eb7ce28", - "symbol": "PC", - "decimals": 9, - "name": "Pepechain", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xe1ec350ea16d1ddaff57f31387b2d9708eb7ce28.png", - "aggregators": ["CoinMarketCap", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0x99b600d0a4abdbc4a6796225a160bcf3d5ce2a89": { - "address": "0x99b600d0a4abdbc4a6796225a160bcf3d5ce2a89", - "symbol": "SRM", - "decimals": 18, - "name": "Solareum", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x99b600d0a4abdbc4a6796225a160bcf3d5ce2a89.png", - "aggregators": ["CoinMarketCap", "Socket", "Rubic", "Rango"], - "occurrences": 4 - }, - "0x8666cb197af5103f7a3a0295b50efea47f3df78b": { - "address": "0x8666cb197af5103f7a3a0295b50efea47f3df78b", - "symbol": "DUCKS", - "decimals": 18, - "name": "Ducks", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x8666cb197af5103f7a3a0295b50efea47f3df78b.png", - "aggregators": ["CoinMarketCap", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0x8c223a82e07fecb49d602150d7c2b3a4c9630310": { - "address": "0x8c223a82e07fecb49d602150d7c2b3a4c9630310", - "symbol": "NFTE", - "decimals": 18, - "name": "NFTEarthOFT", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x8c223a82e07fecb49d602150d7c2b3a4c9630310.png", - "aggregators": ["CoinMarketCap", "Rubic", "Rango", "SushiSwap"], - "occurrences": 4 - }, - "0x02d7a93829b365b7ad4c582dace1493aac50a290": { - "address": "0x02d7a93829b365b7ad4c582dace1493aac50a290", - "symbol": "CAT", - "decimals": 18, - "name": "Scat", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x02d7a93829b365b7ad4c582dace1493aac50a290.png", - "aggregators": ["CoinMarketCap", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0xeee0fe52299f2de8e2ed5111cd521ab67dcf0faf": { - "address": "0xeee0fe52299f2de8e2ed5111cd521ab67dcf0faf", - "symbol": "QWAN", - "decimals": 18, - "name": "The QWAN", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xeee0fe52299f2de8e2ed5111cd521ab67dcf0faf.png", - "aggregators": ["CoinMarketCap", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0x7340ea46360576dc46ef49bce99bc5072c32421d": { - "address": "0x7340ea46360576dc46ef49bce99bc5072c32421d", - "symbol": "DSQ", - "decimals": 18, - "name": "DollarSqueeze", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x7340ea46360576dc46ef49bce99bc5072c32421d.png", - "aggregators": ["CoinMarketCap", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0x27f103f86070cc639fef262787a16887d22d8415": { - "address": "0x27f103f86070cc639fef262787a16887d22d8415", - "symbol": "FOFO", - "decimals": 18, - "name": "FOFO Token", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x27f103f86070cc639fef262787a16887d22d8415.png", - "aggregators": ["CoinMarketCap", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0xe18ab3568fa19e0ed38bc1d974eddd501e61e12d": { - "address": "0xe18ab3568fa19e0ed38bc1d974eddd501e61e12d", - "symbol": "BANK", - "decimals": 18, - "name": "BANK AI", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xe18ab3568fa19e0ed38bc1d974eddd501e61e12d.png", - "aggregators": ["CoinMarketCap", "Socket", "Rubic", "Sonarwatch"], - "occurrences": 4 - }, - "0x02795795196f563fdafce8dd97fca4871ded51c3": { - "address": "0x02795795196f563fdafce8dd97fca4871ded51c3", - "symbol": "WNZ", - "decimals": 18, - "name": "Winnerz", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x02795795196f563fdafce8dd97fca4871ded51c3.png", - "aggregators": ["CoinMarketCap", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0xa922a70569a7555518bf4ded5094661a965e23ca": { - "address": "0xa922a70569a7555518bf4ded5094661a965e23ca", - "symbol": "MNB", - "decimals": 8, - "name": "MN Bridge", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xa922a70569a7555518bf4ded5094661a965e23ca.png", - "aggregators": ["CoinMarketCap", "Socket", "Rubic", "Rango"], - "occurrences": 4 - }, - "0xe45dfc26215312edc131e34ea9299fbca53275ca": { - "address": "0xe45dfc26215312edc131e34ea9299fbca53275ca", - "symbol": "REL", - "decimals": 18, - "name": "Relation Native Token", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xe45dfc26215312edc131e34ea9299fbca53275ca.png", - "aggregators": ["CoinMarketCap", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0x267eb2a9a13dc304a9deff4277abe850d0852c5f": { - "address": "0x267eb2a9a13dc304a9deff4277abe850d0852c5f", - "symbol": "TAI", - "decimals": 8, - "name": "Trace AI", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x267eb2a9a13dc304a9deff4277abe850d0852c5f.png", - "aggregators": ["CoinMarketCap", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0xe0a6136f866684c0f19936c0c42a8c181c066f1b": { - "address": "0xe0a6136f866684c0f19936c0c42a8c181c066f1b", - "symbol": "TIDE", - "decimals": 18, - "name": "Tidalflats", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xe0a6136f866684c0f19936c0c42a8c181c066f1b.png", - "aggregators": ["CoinMarketCap", "Socket", "Rubic", "Rango"], - "occurrences": 4 - }, - "0x40a9a694197a0b4b92f2aad48da6bc1b6ff194e9": { - "address": "0x40a9a694197a0b4b92f2aad48da6bc1b6ff194e9", - "symbol": "LFG", - "decimals": 18, - "name": "LFG", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x40a9a694197a0b4b92f2aad48da6bc1b6ff194e9.png", - "aggregators": ["CoinMarketCap", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0x03dde9e5bb31ee40a471476e2fccf75c67921062": { - "address": "0x03dde9e5bb31ee40a471476e2fccf75c67921062", - "symbol": "EML", - "decimals": 18, - "name": "EML Protocol", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x03dde9e5bb31ee40a471476e2fccf75c67921062.png", - "aggregators": ["CoinMarketCap", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0x4b7ffcb2b92fb4890f22f62a52fb7a180eab818e": { - "address": "0x4b7ffcb2b92fb4890f22f62a52fb7a180eab818e", - "symbol": "DIVA", - "decimals": 18, - "name": "DIVA Protocol", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x4b7ffcb2b92fb4890f22f62a52fb7a180eab818e.png", - "aggregators": ["CoinMarketCap", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0x8ed955a2b7d2c3a17a9d05daca95e01818f8c11e": { - "address": "0x8ed955a2b7d2c3a17a9d05daca95e01818f8c11e", - "symbol": "APFC", - "decimals": 18, - "name": "APF coin", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x8ed955a2b7d2c3a17a9d05daca95e01818f8c11e.png", - "aggregators": ["CoinMarketCap", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0x1e3778dd6dbfdc1c5b89f95f7c098b21e80ec4fa": { - "address": "0x1e3778dd6dbfdc1c5b89f95f7c098b21e80ec4fa", - "symbol": "VIC", - "decimals": 18, - "name": "Victory Impact", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x1e3778dd6dbfdc1c5b89f95f7c098b21e80ec4fa.png", - "aggregators": ["CoinMarketCap", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0x4f311c430540db1d64e635eb55f969f1660b2016": { - "address": "0x4f311c430540db1d64e635eb55f969f1660b2016", - "symbol": "PC", - "decimals": 9, - "name": "Pepe Chain", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x4f311c430540db1d64e635eb55f969f1660b2016.png", - "aggregators": ["CoinMarketCap", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0xcb50350ab555ed5d56265e096288536e8cac41eb": { - "address": "0xcb50350ab555ed5d56265e096288536e8cac41eb", - "symbol": "COCO", - "decimals": 18, - "name": "0xCoco", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xcb50350ab555ed5d56265e096288536e8cac41eb.png", - "aggregators": ["CoinMarketCap", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0xdd1b6b259986571a85da82a84f461e1c212591c0": { - "address": "0xdd1b6b259986571a85da82a84f461e1c212591c0", - "symbol": "BLAZEX", - "decimals": 9, - "name": "BlazeX", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xdd1b6b259986571a85da82a84f461e1c212591c0.png", - "aggregators": ["CoinMarketCap", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0xc47ef9b19c3e29317a50f5fbe594eba361dada4a": { - "address": "0xc47ef9b19c3e29317a50f5fbe594eba361dada4a", - "symbol": "EDLC", - "decimals": 6, - "name": "Edelcoin", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xc47ef9b19c3e29317a50f5fbe594eba361dada4a.png", - "aggregators": ["CoinMarketCap", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0x1063181dc986f76f7ea2dd109e16fc596d0f522a": { - "address": "0x1063181dc986f76f7ea2dd109e16fc596d0f522a", - "symbol": "CYBA", - "decimals": 9, - "name": "Cybria", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x1063181dc986f76f7ea2dd109e16fc596d0f522a.png", - "aggregators": ["CoinMarketCap", "Socket", "Rubic", "Sonarwatch"], - "occurrences": 4 - }, - "0x36737b4ac153c762d6a767056e1af7b17573a6b9": { - "address": "0x36737b4ac153c762d6a767056e1af7b17573a6b9", - "symbol": "GOLD", - "decimals": 9, - "name": "GOLD", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x36737b4ac153c762d6a767056e1af7b17573a6b9.png", - "aggregators": ["CoinMarketCap", "Socket", "Rubic", "Rango"], - "occurrences": 4 - }, - "0x8cc379a292a47cb8406fb1bd8a6d98f442275f0e": { - "address": "0x8cc379a292a47cb8406fb1bd8a6d98f442275f0e", - "symbol": "U", - "decimals": 18, - "name": "Uranium3o8", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x8cc379a292a47cb8406fb1bd8a6d98f442275f0e.png", - "aggregators": ["CoinMarketCap", "LiFi", "Rubic", "Rango"], - "occurrences": 4 - }, - "0x4e452b391a86c9240e98df7277ce0bea5be08e43": { - "address": "0x4e452b391a86c9240e98df7277ce0bea5be08e43", - "symbol": "PAXU", - "decimals": 18, - "name": "Pax Unitas", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x4e452b391a86c9240e98df7277ce0bea5be08e43.png", - "aggregators": ["CoinMarketCap", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0xb17d69c91135516b0256c67e8bd32cd238b56161": { - "address": "0xb17d69c91135516b0256c67e8bd32cd238b56161", - "symbol": "GRAVITAS", - "decimals": 9, - "name": "Gravitas", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xb17d69c91135516b0256c67e8bd32cd238b56161.png", - "aggregators": ["CoinMarketCap", "Socket", "Rubic", "Rango"], - "occurrences": 4 - }, - "0x85516e8862ab543ea15972b7809256efec0696ea": { - "address": "0x85516e8862ab543ea15972b7809256efec0696ea", - "symbol": "ROCK", - "decimals": 18, - "name": "ROCK", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x85516e8862ab543ea15972b7809256efec0696ea.png", - "aggregators": ["CoinMarketCap", "Socket", "Rubic", "Rango"], - "occurrences": 4 - }, - "0x2c540c3c7be7af98278dc6963e092cd450009d1f": { - "address": "0x2c540c3c7be7af98278dc6963e092cd450009d1f", - "symbol": "SPARKO", - "decimals": 18, - "name": "Sparko", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x2c540c3c7be7af98278dc6963e092cd450009d1f.png", - "aggregators": ["CoinMarketCap", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0x4eea762311be76f9071aa01058c047ad12a017a1": { - "address": "0x4eea762311be76f9071aa01058c047ad12a017a1", - "symbol": "GBURN", - "decimals": 18, - "name": "GBURN", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x4eea762311be76f9071aa01058c047ad12a017a1.png", - "aggregators": ["CoinMarketCap", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0xf327c89bf0769f0f2e99e50232557f03aad6cc17": { - "address": "0xf327c89bf0769f0f2e99e50232557f03aad6cc17", - "symbol": "PEIPEI", - "decimals": 18, - "name": "PEIPEI", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xf327c89bf0769f0f2e99e50232557f03aad6cc17.png", - "aggregators": ["CoinMarketCap", "Socket", "Rubic", "Rango"], - "occurrences": 4 - }, - "0x1a8b8e526d093476ac5c488a3ea057f8de9c0dee": { - "address": "0x1a8b8e526d093476ac5c488a3ea057f8de9c0dee", - "symbol": "JEFF", - "decimals": 18, - "name": "JEFFWorld Token", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x1a8b8e526d093476ac5c488a3ea057f8de9c0dee.png", - "aggregators": ["CoinMarketCap", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0x617ead3c59ded3ea1bb17881118cf310144b450f": { - "address": "0x617ead3c59ded3ea1bb17881118cf310144b450f", - "symbol": "TSC", - "decimals": 18, - "name": "The Secret Coin", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x617ead3c59ded3ea1bb17881118cf310144b450f.png", - "aggregators": ["CoinMarketCap", "Socket", "Rubic", "Rango"], - "occurrences": 4 - }, - "0xb244b3574a5627849fca2057e3854340def63071": { - "address": "0xb244b3574a5627849fca2057e3854340def63071", - "symbol": "VEIL", - "decimals": 18, - "name": "Veil Exchange", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xb244b3574a5627849fca2057e3854340def63071.png", - "aggregators": ["CoinMarketCap", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0x320ed4c7243e35a00f9ca30a1ae60929d15eae37": { - "address": "0x320ed4c7243e35a00f9ca30a1ae60929d15eae37", - "symbol": "BLOX", - "decimals": 18, - "name": "The Blox Project", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x320ed4c7243e35a00f9ca30a1ae60929d15eae37.png", - "aggregators": ["CoinMarketCap", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0x60927b83ddd2096f38f22a8a2d84cf863402d1a1": { - "address": "0x60927b83ddd2096f38f22a8a2d84cf863402d1a1", - "symbol": "MIND", - "decimals": 18, - "name": "Eternal AI", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x60927b83ddd2096f38f22a8a2d84cf863402d1a1.png", - "aggregators": ["CoinMarketCap", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0x12ed0641242e4c6c220e3ca8f616e9d5470ac99a": { - "address": "0x12ed0641242e4c6c220e3ca8f616e9d5470ac99a", - "symbol": "EARN", - "decimals": 18, - "name": "Earn Network", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x12ed0641242e4c6c220e3ca8f616e9d5470ac99a.png", - "aggregators": ["CoinMarketCap", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0xac506c7dc601500e997cad42ea446624ed40c743": { - "address": "0xac506c7dc601500e997cad42ea446624ed40c743", - "symbol": "XCEPT", - "decimals": 18, - "name": "XCeption", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xac506c7dc601500e997cad42ea446624ed40c743.png", - "aggregators": ["CoinMarketCap", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0x15f73a3ab443ee6ebf36c605c7868159ce5d028c": { - "address": "0x15f73a3ab443ee6ebf36c605c7868159ce5d028c", - "symbol": "SST", - "decimals": 9, - "name": "SmartsetToken", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x15f73a3ab443ee6ebf36c605c7868159ce5d028c.png", - "aggregators": ["CoinMarketCap", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0xd624e5c89466a15812c1d45ce1533be1f16c1702": { - "address": "0xd624e5c89466a15812c1d45ce1533be1f16c1702", - "symbol": "UBDN", - "decimals": 18, - "name": "UBD Network", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xd624e5c89466a15812c1d45ce1533be1f16c1702.png", - "aggregators": ["CoinMarketCap", "LiFi", "Rubic", "Rango"], - "occurrences": 4 - }, - "0xdefb0b264032e4e128b00d02b3fd0aa00331237b": { - "address": "0xdefb0b264032e4e128b00d02b3fd0aa00331237b", - "symbol": "BUDDHA", - "decimals": 18, - "name": "Buddha", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xdefb0b264032e4e128b00d02b3fd0aa00331237b.png", - "aggregators": ["CoinMarketCap", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0xa0cc4428fbb652c396f28dce8868b8743742a71c": { - "address": "0xa0cc4428fbb652c396f28dce8868b8743742a71c", - "symbol": "PAI", - "decimals": 18, - "name": "Purple AI", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xa0cc4428fbb652c396f28dce8868b8743742a71c.png", - "aggregators": ["CoinMarketCap", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0x40a32606a4ce9b4f350421642ebf65c052d5389b": { - "address": "0x40a32606a4ce9b4f350421642ebf65c052d5389b", - "symbol": "UP", - "decimals": 18, - "name": "TonUP", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x40a32606a4ce9b4f350421642ebf65c052d5389b.png", - "aggregators": ["CoinMarketCap", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0x0f5c78f152152dda52a2ea45b0a8c10733010748": { - "address": "0x0f5c78f152152dda52a2ea45b0a8c10733010748", - "symbol": "XOX", - "decimals": 18, - "name": "XOX Labs", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x0f5c78f152152dda52a2ea45b0a8c10733010748.png", - "aggregators": ["CoinMarketCap", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0x83d6c8c06ac276465e4c92e7ac8c23740f435140": { - "address": "0x83d6c8c06ac276465e4c92e7ac8c23740f435140", - "symbol": "HMX", - "decimals": 18, - "name": "HMX", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x83d6c8c06ac276465e4c92e7ac8c23740f435140.png", - "aggregators": ["CoinMarketCap", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0xc3f8143212871014b472ea83285af7f25928dee4": { - "address": "0xc3f8143212871014b472ea83285af7f25928dee4", - "symbol": "SOHOT", - "decimals": 9, - "name": "SOHOTRN", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xc3f8143212871014b472ea83285af7f25928dee4.png", - "aggregators": ["CoinMarketCap", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0x174c47d6a4e548ed2b7d369dc0ffb2e60a6ac0f8": { - "address": "0x174c47d6a4e548ed2b7d369dc0ffb2e60a6ac0f8", - "symbol": "AMU", - "decimals": 9, - "name": "Amulet Protocol", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x174c47d6a4e548ed2b7d369dc0ffb2e60a6ac0f8.png", - "aggregators": ["CoinMarketCap", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0xcefde37817da4fc51ddc24e3820ad316784ee04b": { - "address": "0xcefde37817da4fc51ddc24e3820ad316784ee04b", - "symbol": "SONA", - "decimals": 18, - "name": "Sonata Network", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xcefde37817da4fc51ddc24e3820ad316784ee04b.png", - "aggregators": ["CoinMarketCap", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0xc7937b44532bf4c0a1f0de3a46c79dddb6dd169d": { - "address": "0xc7937b44532bf4c0a1f0de3a46c79dddb6dd169d", - "symbol": "DN", - "decimals": 18, - "name": "Deez Nuts", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xc7937b44532bf4c0a1f0de3a46c79dddb6dd169d.png", - "aggregators": ["CoinMarketCap", "Rubic", "Rango", "SushiSwap"], - "occurrences": 4 - }, - "0xb39364b51d2c97b62b838bc5213b8627eb469101": { - "address": "0xb39364b51d2c97b62b838bc5213b8627eb469101", - "symbol": "SWOT", - "decimals": 18, - "name": "Swot AI", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xb39364b51d2c97b62b838bc5213b8627eb469101.png", - "aggregators": ["CoinMarketCap", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0xddcc69879e1d2376ce799051afa98c689f234cca": { - "address": "0xddcc69879e1d2376ce799051afa98c689f234cca", - "symbol": "SMRT", - "decimals": 18, - "name": "SmartMoney", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xddcc69879e1d2376ce799051afa98c689f234cca.png", - "aggregators": ["CoinMarketCap", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0xb533687ef77459093368c43e95f8df1c2b5a1f7a": { - "address": "0xb533687ef77459093368c43e95f8df1c2b5a1f7a", - "symbol": "ASG", - "decimals": 18, - "name": "Nekoverse City of Greed Anima Spirit G", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xb533687ef77459093368c43e95f8df1c2b5a1f7a.png", - "aggregators": ["CoinMarketCap", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0xe99379955b676d5a7ebe3f42f2b684796e48d437": { - "address": "0xe99379955b676d5a7ebe3f42f2b684796e48d437", - "symbol": "EGG", - "decimals": 18, - "name": "EGG ETH", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xe99379955b676d5a7ebe3f42f2b684796e48d437.png", - "aggregators": ["CoinMarketCap", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0x2f3d0d2317802a65faac6e4cd94067c37b4d4804": { - "address": "0x2f3d0d2317802a65faac6e4cd94067c37b4d4804", - "symbol": "DCARD", - "decimals": 9, - "name": "DECENTRACARD", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x2f3d0d2317802a65faac6e4cd94067c37b4d4804.png", - "aggregators": ["CoinMarketCap", "Socket", "Rubic", "Rango"], - "occurrences": 4 - }, - "0x312d43881860807fa04b193d69744d087fc3308a": { - "address": "0x312d43881860807fa04b193d69744d087fc3308a", - "symbol": "BD20", - "decimals": 18, - "name": "BRC 20 DEX", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x312d43881860807fa04b193d69744d087fc3308a.png", - "aggregators": ["CoinMarketCap", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0x5cc5e64ab764a0f1e97f23984e20fd4528356a6a": { - "address": "0x5cc5e64ab764a0f1e97f23984e20fd4528356a6a", - "symbol": "XRGB", - "decimals": 18, - "name": "XRGB", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x5cc5e64ab764a0f1e97f23984e20fd4528356a6a.png", - "aggregators": ["CoinMarketCap", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0x97effb790f2fbb701d88f89db4521348a2b77be8": { - "address": "0x97effb790f2fbb701d88f89db4521348a2b77be8", - "symbol": "CVG", - "decimals": 18, - "name": "Convergence Finance", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x97effb790f2fbb701d88f89db4521348a2b77be8.png", - "aggregators": ["CoinMarketCap", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0x3f57c35633cb29834bb7577ba8052eab90f52a02": { - "address": "0x3f57c35633cb29834bb7577ba8052eab90f52a02", - "symbol": "DFNDR", - "decimals": 18, - "name": "Defender Bot", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x3f57c35633cb29834bb7577ba8052eab90f52a02.png", - "aggregators": ["CoinMarketCap", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0x07e128e823d2b9b22edbda43820aa1a72de99613": { - "address": "0x07e128e823d2b9b22edbda43820aa1a72de99613", - "symbol": "HOSTAI", - "decimals": 18, - "name": "Host AI", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x07e128e823d2b9b22edbda43820aa1a72de99613.png", - "aggregators": ["CoinMarketCap", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0xe469699f617bfd0fbffcd575970d34c2cecffa9f": { - "address": "0xe469699f617bfd0fbffcd575970d34c2cecffa9f", - "symbol": "VUZZ", - "decimals": 9, - "name": "VuzzMind", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xe469699f617bfd0fbffcd575970d34c2cecffa9f.png", - "aggregators": ["CoinMarketCap", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0x07b701ac44aacb03d8bed42eb85ec38210bdf513": { - "address": "0x07b701ac44aacb03d8bed42eb85ec38210bdf513", - "symbol": "TAPROOT", - "decimals": 6, - "name": "Taproot", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x07b701ac44aacb03d8bed42eb85ec38210bdf513.png", - "aggregators": ["CoinMarketCap", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0x4c73c1c8c95de5674d53604b15d968485414cb32": { - "address": "0x4c73c1c8c95de5674d53604b15d968485414cb32", - "symbol": "BOOM", - "decimals": 18, - "name": "Bomb Shelter Inu", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x4c73c1c8c95de5674d53604b15d968485414cb32.png", - "aggregators": ["CoinMarketCap", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0xd561a593d9dd8b9a0e3a487dfb517c9371d6dda7": { - "address": "0xd561a593d9dd8b9a0e3a487dfb517c9371d6dda7", - "symbol": "MEOW", - "decimals": 18, - "name": "Meow Meme", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xd561a593d9dd8b9a0e3a487dfb517c9371d6dda7.png", - "aggregators": ["CoinMarketCap", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0xec12ba5ac0f259e9ac6fc9a3bc23a76ad2fde5d9": { - "address": "0xec12ba5ac0f259e9ac6fc9a3bc23a76ad2fde5d9", - "symbol": "HUGE", - "decimals": 18, - "name": "HugeWin", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xec12ba5ac0f259e9ac6fc9a3bc23a76ad2fde5d9.png", - "aggregators": ["CoinMarketCap", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0x1e354f9ab5bcc9fb981f31b794c5fe13f7a89218": { - "address": "0x1e354f9ab5bcc9fb981f31b794c5fe13f7a89218", - "symbol": "NTD", - "decimals": 18, - "name": "Neural Tensor Dynamics", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x1e354f9ab5bcc9fb981f31b794c5fe13f7a89218.png", - "aggregators": ["CoinMarketCap", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0x668d78571f124415581b38d32fa9a16f1aaa8417": { - "address": "0x668d78571f124415581b38d32fa9a16f1aaa8417", - "symbol": "1EX", - "decimals": 18, - "name": "1ex", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x668d78571f124415581b38d32fa9a16f1aaa8417.png", - "aggregators": ["CoinMarketCap", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0x87c22db324b8b0637c8f09d2670ae7777651dbb8": { - "address": "0x87c22db324b8b0637c8f09d2670ae7777651dbb8", - "symbol": "ISME", - "decimals": 18, - "name": "Root Protocol", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x87c22db324b8b0637c8f09d2670ae7777651dbb8.png", - "aggregators": ["CoinMarketCap", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0xf67366e83cc9b115ef8cca93baed1f03e6d3ca9a": { - "address": "0xf67366e83cc9b115ef8cca93baed1f03e6d3ca9a", - "symbol": "MVERSE", - "decimals": 18, - "name": "MindVerse", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xf67366e83cc9b115ef8cca93baed1f03e6d3ca9a.png", - "aggregators": ["CoinMarketCap", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0xc01b1979e2244dc94e67891df0af4f7885e57fd4": { - "address": "0xc01b1979e2244dc94e67891df0af4f7885e57fd4", - "symbol": "LAN", - "decimals": 18, - "name": "Lanify", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xc01b1979e2244dc94e67891df0af4f7885e57fd4.png", - "aggregators": ["CoinMarketCap", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0xe6f4a40156c9e8c7addda66848bbb99fdedecf84": { - "address": "0xe6f4a40156c9e8c7addda66848bbb99fdedecf84", - "symbol": "DETENSOR", - "decimals": 18, - "name": "DeTensor", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xe6f4a40156c9e8c7addda66848bbb99fdedecf84.png", - "aggregators": ["CoinMarketCap", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0xcdbb2498fa9e7b5849bed5d3661386d0ce2733b2": { - "address": "0xcdbb2498fa9e7b5849bed5d3661386d0ce2733b2", - "symbol": "FAI", - "decimals": 18, - "name": "FuturesAI", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xcdbb2498fa9e7b5849bed5d3661386d0ce2733b2.png", - "aggregators": ["CoinMarketCap", "Socket", "Rubic", "Rango"], - "occurrences": 4 - }, - "0x58c896fa6857a9d67d02bc264c2b04cea47e20e7": { - "address": "0x58c896fa6857a9d67d02bc264c2b04cea47e20e7", - "symbol": "GHUB", - "decimals": 9, - "name": "The GameHub", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x58c896fa6857a9d67d02bc264c2b04cea47e20e7.png", - "aggregators": ["CoinMarketCap", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0x607496f14918891594177c24a983e901c1896e63": { - "address": "0x607496f14918891594177c24a983e901c1896e63", - "symbol": "GOLDCAT", - "decimals": 9, - "name": "GOLD CAT", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x607496f14918891594177c24a983e901c1896e63.png", - "aggregators": ["CoinMarketCap", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0x622984873c958e00aa0f004cbdd2b5301cf0b132": { - "address": "0x622984873c958e00aa0f004cbdd2b5301cf0b132", - "symbol": "GAUSS", - "decimals": 9, - "name": "Gauss0x", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x622984873c958e00aa0f004cbdd2b5301cf0b132.png", - "aggregators": ["CoinMarketCap", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0x1131d427ecd794714ed00733ac0f851e904c8398": { - "address": "0x1131d427ecd794714ed00733ac0f851e904c8398", - "symbol": "GENAI", - "decimals": 18, - "name": "GenBox", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x1131d427ecd794714ed00733ac0f851e904c8398.png", - "aggregators": ["CoinMarketCap", "Socket", "Rubic", "Rango"], - "occurrences": 4 - }, - "0x2e1cb26689a0b8763d15ffe9d7b1c637cd9282d4": { - "address": "0x2e1cb26689a0b8763d15ffe9d7b1c637cd9282d4", - "symbol": "OPTA", - "decimals": 18, - "name": "OPTA Global", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x2e1cb26689a0b8763d15ffe9d7b1c637cd9282d4.png", - "aggregators": ["CoinMarketCap", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0x730bcbe5cdc1a3061dfe700774b7b8dd1d4173db": { - "address": "0x730bcbe5cdc1a3061dfe700774b7b8dd1d4173db", - "symbol": "WTF", - "decimals": 18, - "name": "DaVinci", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x730bcbe5cdc1a3061dfe700774b7b8dd1d4173db.png", - "aggregators": ["CoinMarketCap", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0xcfffcd2c6294bbb01ca55cbb4a281bdcf532c1ce": { - "address": "0xcfffcd2c6294bbb01ca55cbb4a281bdcf532c1ce", - "symbol": "DIAMOND", - "decimals": 9, - "name": "Diamond Inu", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xcfffcd2c6294bbb01ca55cbb4a281bdcf532c1ce.png", - "aggregators": ["CoinMarketCap", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0xa7f3508cfcf054cc9cf1440580b78784e07382db": { - "address": "0xa7f3508cfcf054cc9cf1440580b78784e07382db", - "symbol": "PAIRED", - "decimals": 18, - "name": "Paired", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xa7f3508cfcf054cc9cf1440580b78784e07382db.png", - "aggregators": ["CoinMarketCap", "Socket", "Rubic", "Rango"], - "occurrences": 4 - }, - "0xfc70cbb442d5c115ee1497d22b421b1f9bd9f3da": { - "address": "0xfc70cbb442d5c115ee1497d22b421b1f9bd9f3da", - "symbol": "BTRU", - "decimals": 18, - "name": "Biblical Truth", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xfc70cbb442d5c115ee1497d22b421b1f9bd9f3da.png", - "aggregators": ["CoinMarketCap", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0x0e7375c46a0552520ce6c976dc268ae1b341f45f": { - "address": "0x0e7375c46a0552520ce6c976dc268ae1b341f45f", - "symbol": "MTK", - "decimals": 18, - "name": "MetaToken", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x0e7375c46a0552520ce6c976dc268ae1b341f45f.png", - "aggregators": ["CoinMarketCap", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0x0a907b0bbff60702b29a36b19718d99253cfbd9f": { - "address": "0x0a907b0bbff60702b29a36b19718d99253cfbd9f", - "symbol": "QLIX", - "decimals": 18, - "name": "QLix", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x0a907b0bbff60702b29a36b19718d99253cfbd9f.png", - "aggregators": ["CoinMarketCap", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0xd722424cf94b583752dfc80c08e2531ab3b762dc": { - "address": "0xd722424cf94b583752dfc80c08e2531ab3b762dc", - "symbol": "HERE", - "decimals": 18, - "name": "SphereX Token", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xd722424cf94b583752dfc80c08e2531ab3b762dc.png", - "aggregators": ["CoinMarketCap", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0xb27782fdb56352a684686a852374ef20910457e2": { - "address": "0xb27782fdb56352a684686a852374ef20910457e2", - "symbol": "DSAI", - "decimals": 18, - "name": "DeSend Ai", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xb27782fdb56352a684686a852374ef20910457e2.png", - "aggregators": ["CoinMarketCap", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0x0632aff522a581b9ffdec2fc2b0e99245a917057": { - "address": "0x0632aff522a581b9ffdec2fc2b0e99245a917057", - "symbol": "CANDY", - "decimals": 18, - "name": "Andy s Cat", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x0632aff522a581b9ffdec2fc2b0e99245a917057.png", - "aggregators": ["CoinMarketCap", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0x80a88dc663fa256e34ecb5a47314702313b162a5": { - "address": "0x80a88dc663fa256e34ecb5a47314702313b162a5", - "symbol": "CYPEPE", - "decimals": 18, - "name": "CyPepe", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x80a88dc663fa256e34ecb5a47314702313b162a5.png", - "aggregators": ["CoinMarketCap", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0xd37ae8c16449e7ef858652e02555c51d2572552b": { - "address": "0xd37ae8c16449e7ef858652e02555c51d2572552b", - "symbol": "INSP", - "decimals": 18, - "name": "INSPAD", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xd37ae8c16449e7ef858652e02555c51d2572552b.png", - "aggregators": ["CoinMarketCap", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0xd2aa35f6d376a9f1cc391db157e3eeb08819479c": { - "address": "0xd2aa35f6d376a9f1cc391db157e3eeb08819479c", - "symbol": "BRAIN", - "decimals": 18, - "name": "BrAIngent", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xd2aa35f6d376a9f1cc391db157e3eeb08819479c.png", - "aggregators": ["CoinMarketCap", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0x6953f27db0701e22616e701dba91acc2e4b6deca": { - "address": "0x6953f27db0701e22616e701dba91acc2e4b6deca", - "symbol": "STAR", - "decimals": 18, - "name": "Starbot", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x6953f27db0701e22616e701dba91acc2e4b6deca.png", - "aggregators": ["CoinMarketCap", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0xa672b803e807ab9b7cb8514350523cd6d2e4d5cc": { - "address": "0xa672b803e807ab9b7cb8514350523cd6d2e4d5cc", - "symbol": "NIHAO", - "decimals": 9, - "name": "Nihao Coin", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xa672b803e807ab9b7cb8514350523cd6d2e4d5cc.png", - "aggregators": ["CoinMarketCap", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0x6873c95307e13beb58fb8fcddf9a99667655c9e4": { - "address": "0x6873c95307e13beb58fb8fcddf9a99667655c9e4", - "symbol": "ZKGUN", - "decimals": 18, - "name": "zkGUN", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x6873c95307e13beb58fb8fcddf9a99667655c9e4.png", - "aggregators": ["CoinMarketCap", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0xda8a1f5eccabc80c26ec9ab493715d5b9ce8fef9": { - "address": "0xda8a1f5eccabc80c26ec9ab493715d5b9ce8fef9", - "symbol": "BOOM", - "decimals": 18, - "name": "BOOM", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xda8a1f5eccabc80c26ec9ab493715d5b9ce8fef9.png", - "aggregators": ["CoinMarketCap", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0x9df03fba103491fffde4fbc5fea15efaa43c67a5": { - "address": "0x9df03fba103491fffde4fbc5fea15efaa43c67a5", - "symbol": "NFM", - "decimals": 18, - "name": "NFMart", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x9df03fba103491fffde4fbc5fea15efaa43c67a5.png", - "aggregators": ["CoinMarketCap", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0xd7fc610f6595b3aa6e24466b5ca166d10a0fbdcb": { - "address": "0xd7fc610f6595b3aa6e24466b5ca166d10a0fbdcb", - "symbol": "KERN", - "decimals": 18, - "name": "Kernel", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xd7fc610f6595b3aa6e24466b5ca166d10a0fbdcb.png", - "aggregators": ["CoinMarketCap", "Socket", "Rubic", "Rango"], - "occurrences": 4 - }, - "0x54b2b9e2f5418db7f8aad6ccb495a0d2a1418e82": { - "address": "0x54b2b9e2f5418db7f8aad6ccb495a0d2a1418e82", - "symbol": "BART", - "decimals": 18, - "name": "Ballswapper Accelerator Reflection Token", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x54b2b9e2f5418db7f8aad6ccb495a0d2a1418e82.png", - "aggregators": ["CoinMarketCap", "Socket", "Rubic", "Rango"], - "occurrences": 4 - }, - "0x6bec5f1c594af73202cd3e5c1f699d440959954c": { - "address": "0x6bec5f1c594af73202cd3e5c1f699d440959954c", - "symbol": "HFUN", - "decimals": 18, - "name": "Hold fun", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x6bec5f1c594af73202cd3e5c1f699d440959954c.png", - "aggregators": ["CoinMarketCap", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0xbbcc7c16d56fc3b0c0a9a2ced36c74bcf73e683e": { - "address": "0xbbcc7c16d56fc3b0c0a9a2ced36c74bcf73e683e", - "symbol": "BBCC", - "decimals": 18, - "name": "Bitcoin Black Credit Card", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xbbcc7c16d56fc3b0c0a9a2ced36c74bcf73e683e.png", - "aggregators": ["CoinMarketCap", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0x69000dfd5025e82f48eb28325a2b88a241182ced": { - "address": "0x69000dfd5025e82f48eb28325a2b88a241182ced", - "symbol": "ZAI", - "decimals": 18, - "name": "ZAI Stablecoin", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x69000dfd5025e82f48eb28325a2b88a241182ced.png", - "aggregators": ["CoinMarketCap", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0x8f2bf2f59cdf7be4aee71500b9419623202b8636": { - "address": "0x8f2bf2f59cdf7be4aee71500b9419623202b8636", - "symbol": "CHEF", - "decimals": 18, - "name": "Chefdotfun", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x8f2bf2f59cdf7be4aee71500b9419623202b8636.png", - "aggregators": ["CoinMarketCap", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0xcf01a5c02c9b9dd5bf73a5a56bcdbc9dca483d43": { - "address": "0xcf01a5c02c9b9dd5bf73a5a56bcdbc9dca483d43", - "symbol": "TRUMP", - "decimals": 18, - "name": "BOME TRUMP", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xcf01a5c02c9b9dd5bf73a5a56bcdbc9dca483d43.png", - "aggregators": ["CoinMarketCap", "LiFi", "Socket", "Rubic"], - "occurrences": 4 - }, - "0xa00453052a36d43a99ac1ca145dfe4a952ca33b8": { - "address": "0xa00453052a36d43a99ac1ca145dfe4a952ca33b8", - "symbol": "CATE", - "decimals": 9, - "name": "Cate", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xa00453052a36d43a99ac1ca145dfe4a952ca33b8.png", - "aggregators": ["CoinMarketCap", "Socket", "Rubic", "Rango"], - "occurrences": 4 - }, - "0xefb2beb3b6325855bc257bad9166bf2687c68cc1": { - "address": "0xefb2beb3b6325855bc257bad9166bf2687c68cc1", - "symbol": "MD", - "decimals": 18, - "name": "MetaDeck", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xefb2beb3b6325855bc257bad9166bf2687c68cc1.png", - "aggregators": ["CoinMarketCap", "Socket", "Rubic", "Rango"], - "occurrences": 4 - }, - "0xe07710cdcd1c9f0fb04bfd013f9854e4552671ce": { - "address": "0xe07710cdcd1c9f0fb04bfd013f9854e4552671ce", - "symbol": "U", - "decimals": 18, - "name": "U Coin", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xe07710cdcd1c9f0fb04bfd013f9854e4552671ce.png", - "aggregators": ["CoinMarketCap", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0x0bcc26e40d87873615e082c1b5df15e487f94737": { - "address": "0x0bcc26e40d87873615e082c1b5df15e487f94737", - "symbol": "SMETX", - "decimals": 18, - "name": "SpecialMetalX", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x0bcc26e40d87873615e082c1b5df15e487f94737.png", - "aggregators": ["CoinMarketCap", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0x2c3b62cdeab213ff58ad24fe8bbdf224c7f66dce": { - "address": "0x2c3b62cdeab213ff58ad24fe8bbdf224c7f66dce", - "symbol": "MSM", - "decimals": 18, - "name": "MusmeCoin", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x2c3b62cdeab213ff58ad24fe8bbdf224c7f66dce.png", - "aggregators": ["CoinMarketCap", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0x6a4402a535d74bd0c9cdb5ce2d51822fc9f6620e": { - "address": "0x6a4402a535d74bd0c9cdb5ce2d51822fc9f6620e", - "symbol": "TOMO", - "decimals": 18, - "name": "Tomo Cat", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x6a4402a535d74bd0c9cdb5ce2d51822fc9f6620e.png", - "aggregators": ["CoinMarketCap", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0x06904a21f2db805487fcbdc3b3fe9607daaa5d54": { - "address": "0x06904a21f2db805487fcbdc3b3fe9607daaa5d54", - "symbol": "MNRY", - "decimals": 18, - "name": "Moonray", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x06904a21f2db805487fcbdc3b3fe9607daaa5d54.png", - "aggregators": ["CoinMarketCap", "Socket", "Rubic", "Sonarwatch"], - "occurrences": 4 - }, - "0xd0e6d04c2f105344860d07912a857ad21204fc97": { - "address": "0xd0e6d04c2f105344860d07912a857ad21204fc97", - "symbol": "NEOT", - "decimals": 18, - "name": "NeoTech", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xd0e6d04c2f105344860d07912a857ad21204fc97.png", - "aggregators": ["CoinMarketCap", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0x49218282042072e054afdc90e552e832735f8316": { - "address": "0x49218282042072e054afdc90e552e832735f8316", - "symbol": "CRX", - "decimals": 18, - "name": "Cerebro", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x49218282042072e054afdc90e552e832735f8316.png", - "aggregators": ["CoinMarketCap", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0x77b1183e730275f6a8024ce53d54bcc12b368f60": { - "address": "0x77b1183e730275f6a8024ce53d54bcc12b368f60", - "symbol": "EZREZ", - "decimals": 18, - "name": "Renzo Restaked REZ", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x77b1183e730275f6a8024ce53d54bcc12b368f60.png", - "aggregators": ["CoinMarketCap", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0xe0396ef787f8b0385f0e73d30acf8b922b1761f1": { - "address": "0xe0396ef787f8b0385f0e73d30acf8b922b1761f1", - "symbol": "OCAI", - "decimals": 9, - "name": "OcNest AI", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xe0396ef787f8b0385f0e73d30acf8b922b1761f1.png", - "aggregators": ["CoinMarketCap", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0x3db6ba6ab6f95efed1a6e794cad492faaabf294d": { - "address": "0x3db6ba6ab6f95efed1a6e794cad492faaabf294d", - "symbol": "LTOOLD", - "decimals": 8, - "name": "LTO Network Token (old)", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x3db6ba6ab6f95efed1a6e794cad492faaabf294d.png", - "aggregators": ["Metamask", "LiFi", "Socket", "Rubic"], - "occurrences": 4 - }, - "0xbbc7f7a6aadac103769c66cbc69ab720f7f9eae3": { - "address": "0xbbc7f7a6aadac103769c66cbc69ab720f7f9eae3", - "symbol": "INX", - "decimals": 18, - "name": "INX Token", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xbbc7f7a6aadac103769c66cbc69ab720f7f9eae3.png", - "aggregators": ["Metamask", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0xde16ce60804a881e9f8c4ebb3824646edecd478d": { - "address": "0xde16ce60804a881e9f8c4ebb3824646edecd478d", - "symbol": "MCRT", - "decimals": 9, - "name": "MagicCraft", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xde16ce60804a881e9f8c4ebb3824646edecd478d.png", - "aggregators": ["Metamask", "Socket", "Rubic", "Rango"], - "occurrences": 4 - }, - "0xa17581a9e3356d9a858b789d68b4d866e593ae94": { - "address": "0xa17581a9e3356d9a858b789d68b4d866e593ae94", - "symbol": "CWETHV3", - "decimals": 18, - "name": "Compound WETH", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xa17581a9e3356d9a858b789d68b4d866e593ae94.png", - "aggregators": ["1inch", "Socket", "Rubic", "Rango"], - "occurrences": 4 - }, - "0x83f798e925bcd4017eb265844fddabb448f1707d": { - "address": "0x83f798e925bcd4017eb265844fddabb448f1707d", - "symbol": "YUSDT", - "decimals": 6, - "name": "iearn USDT", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x83f798e925bcd4017eb265844fddabb448f1707d.png", - "aggregators": ["1inch", "Socket", "Rubic", "Rango"], - "occurrences": 4 - }, - "0xc3d688b66703497daa19211eedff47f25384cdc3": { - "address": "0xc3d688b66703497daa19211eedff47f25384cdc3", - "symbol": "CUSDCV3", - "decimals": 6, - "name": "Compound USDC", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xc3d688b66703497daa19211eedff47f25384cdc3.png", - "aggregators": ["1inch", "Socket", "Rubic", "Rango"], - "occurrences": 4 - }, - "0x0c0d01abf3e6adfca0989ebba9d6e85dd58eab1e": { - "address": "0x0c0d01abf3e6adfca0989ebba9d6e85dd58eab1e", - "symbol": "AETHPYUSD", - "decimals": 6, - "name": "Aave Ethereum PYUSD", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x0c0d01abf3e6adfca0989ebba9d6e85dd58eab1e.png", - "aggregators": ["1inch", "LiFi", "Socket", "Rango"], - "occurrences": 4 - }, - "0x04aa51bbcb46541455ccf1b8bef2ebc5d3787ec9": { - "address": "0x04aa51bbcb46541455ccf1b8bef2ebc5d3787ec9", - "symbol": "YWTBC", - "decimals": 8, - "name": "iearn wBTC", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x04aa51bbcb46541455ccf1b8bef2ebc5d3787ec9.png", - "aggregators": ["1inch", "Socket", "Rubic", "Rango"], - "occurrences": 4 - }, - "0x50026ad58b338cf3eccc2b422deb8faa725f377f": { - "address": "0x50026ad58b338cf3eccc2b422deb8faa725f377f", - "symbol": "STEP", - "decimals": 8, - "name": "1Step.finance", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x50026ad58b338cf3eccc2b422deb8faa725f377f.png", - "aggregators": ["1inch", "Socket", "Rubic", "Rango"], - "occurrences": 4 - }, - "0xed30dd7e50edf3581ad970efc5d9379ce2614adb": { - "address": "0xed30dd7e50edf3581ad970efc5d9379ce2614adb", - "symbol": "ARCX", - "decimals": 18, - "name": "ARC Governance Token", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xed30dd7e50edf3581ad970efc5d9379ce2614adb.png", - "aggregators": ["1inch", "Socket", "Rubic", "Rango"], - "occurrences": 4 - }, - "0xcd91538b91b4ba7797d39a2f66e63810b50a33d0": { - "address": "0xcd91538b91b4ba7797d39a2f66e63810b50a33d0", - "symbol": "STABLEX", - "decimals": 18, - "name": "ARC STABLEx", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xcd91538b91b4ba7797d39a2f66e63810b50a33d0.png", - "aggregators": ["1inch", "Socket", "Rubic", "Rango"], - "occurrences": 4 - }, - "0x5b09a0371c1da44a8e24d36bf5deb1141a84d875": { - "address": "0x5b09a0371c1da44a8e24d36bf5deb1141a84d875", - "symbol": "MAD", - "decimals": 18, - "name": "MADToken", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x5b09a0371c1da44a8e24d36bf5deb1141a84d875.png", - "aggregators": ["1inch", "Rubic", "Rango", "Bancor"], - "occurrences": 4 - }, - "0x44564d0bd94343f72e3c8a0d22308b7fa71db0bb": { - "address": "0x44564d0bd94343f72e3c8a0d22308b7fa71db0bb", - "symbol": "BASK", - "decimals": 18, - "name": "BasketDAO Gov", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x44564d0bd94343f72e3c8a0d22308b7fa71db0bb.png", - "aggregators": ["1inch", "Rubic", "Rango", "SushiSwap"], - "occurrences": 4 - }, - "0xa3c4dc4a9ce2a6b40b57f25f8b50decc2c64dec2": { - "address": "0xa3c4dc4a9ce2a6b40b57f25f8b50decc2c64dec2", - "symbol": "SNFT", - "decimals": 18, - "name": "SeedSwap Token", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xa3c4dc4a9ce2a6b40b57f25f8b50decc2c64dec2.png", - "aggregators": ["1inch", "Socket", "Rubic", "Rango"], - "occurrences": 4 - }, - "0x9fa69536d1cda4a04cfb50688294de75b505a9ae": { - "address": "0x9fa69536d1cda4a04cfb50688294de75b505a9ae", - "symbol": "DERC", - "decimals": 18, - "name": "DeRace Token", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x9fa69536d1cda4a04cfb50688294de75b505a9ae.png", - "aggregators": ["1inch", "LiFi", "Rubic", "Rango"], - "occurrences": 4 - }, - "0x7d29a64504629172a429e64183d6673b9dacbfce": { - "address": "0x7d29a64504629172a429e64183d6673b9dacbfce", - "symbol": "VXV", - "decimals": 18, - "name": "VectorspaceAI", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x7d29a64504629172a429e64183d6673b9dacbfce.png", - "aggregators": ["1inch", "LiFi", "Rubic", "Rango"], - "occurrences": 4 - }, - "0x0e5c8c387c5eba2ecbc137ad012aed5fe729e251": { - "address": "0x0e5c8c387c5eba2ecbc137ad012aed5fe729e251", - "symbol": "RPG", - "decimals": 18, - "name": "Rangers Protocol Gas", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x0e5c8c387c5eba2ecbc137ad012aed5fe729e251.png", - "aggregators": ["1inch", "Socket", "Rubic", "Rango"], - "occurrences": 4 - }, - "0x82f9c5ad306bba1ad0de49bb5fa6f01bf61085ef": { - "address": "0x82f9c5ad306bba1ad0de49bb5fa6f01bf61085ef", - "symbol": "AETHFXS", - "decimals": 18, - "name": "Aave Ethereum FXS", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x82f9c5ad306bba1ad0de49bb5fa6f01bf61085ef.png", - "aggregators": ["1inch", "LiFi", "Socket", "Rango"], - "occurrences": 4 - }, - "0x322aa5f5be95644d6c36544b6c5061f072d16df5": { - "address": "0x322aa5f5be95644d6c36544b6c5061f072d16df5", - "symbol": "STATAETHWSTETH", - "decimals": 18, - "name": "Static Aave Ethereum wstETH", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x322aa5f5be95644d6c36544b6c5061f072d16df5.png", - "aggregators": ["1inch", "LiFi", "Socket", "Rango"], - "occurrences": 4 - }, - "0xee66abd4d0f9908a48e08ae354b0f425de3e237e": { - "address": "0xee66abd4d0f9908a48e08ae354b0f425de3e237e", - "symbol": "STATAETHFRAX", - "decimals": 18, - "name": "Static Aave Ethereum FRAX", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xee66abd4d0f9908a48e08ae354b0f425de3e237e.png", - "aggregators": ["1inch", "Socket", "Rubic", "Rango"], - "occurrences": 4 - }, - "0xe6354ed5bc4b393a5aad09f21c46e101e692d447": { - "address": "0xe6354ed5bc4b393a5aad09f21c46e101e692d447", - "symbol": "YUSDT", - "decimals": 6, - "name": "iearn USDT", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xe6354ed5bc4b393a5aad09f21c46e101e692d447.png", - "aggregators": ["1inch", "Socket", "Rubic", "Rango"], - "occurrences": 4 - }, - "0xbd6467a31899590474ce1e84f70594c53d628e46": { - "address": "0xbd6467a31899590474ce1e84f70594c53d628e46", - "symbol": "KAI", - "decimals": 18, - "name": "KAI", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xbd6467a31899590474ce1e84f70594c53d628e46.png", - "aggregators": ["LiFi", "Socket", "Rubic", "Rango"], - "occurrences": 4 - }, - "0xcbc1065255cbc3ab41a6868c22d1f1c573ab89fd": { - "address": "0xcbc1065255cbc3ab41a6868c22d1f1c573ab89fd", - "symbol": "CRETH2", - "decimals": 18, - "name": "Cream ETH 2", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xcbc1065255cbc3ab41a6868c22d1f1c573ab89fd.png", - "aggregators": ["LiFi", "Rubic", "Rango", "SushiSwap"], - "occurrences": 4 - }, - "0x5d3a4f62124498092ce665f865e0b38ff6f5fbea": { - "address": "0x5d3a4f62124498092ce665f865e0b38ff6f5fbea", - "symbol": "IDEA", - "decimals": 18, - "name": "Ideaology", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x5d3a4f62124498092ce665f865e0b38ff6f5fbea.png", - "aggregators": ["LiFi", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0xa44e5137293e855b1b7bc7e2c6f8cd796ffcb037": { - "address": "0xa44e5137293e855b1b7bc7e2c6f8cd796ffcb037", - "symbol": "SENT", - "decimals": 8, - "name": "SENTinel", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xa44e5137293e855b1b7bc7e2c6f8cd796ffcb037.png", - "aggregators": ["LiFi", "Socket", "Rubic", "Rango"], - "occurrences": 4 - }, - "0x48afbbd342f64ef8a9ab1c143719b63c2ad81710": { - "address": "0x48afbbd342f64ef8a9ab1c143719b63c2ad81710", - "symbol": "MPETH", - "decimals": 18, - "name": "mpETH", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x48afbbd342f64ef8a9ab1c143719b63c2ad81710.png", - "aggregators": ["LiFi", "Socket", "Rubic", "Rango"], - "occurrences": 4 - }, - "0x2b95a1dcc3d405535f9ed33c219ab38e8d7e0884": { - "address": "0x2b95a1dcc3d405535f9ed33c219ab38e8d7e0884", - "symbol": "ACRV", - "decimals": 18, - "name": "Aladdin cvxCRV", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x2b95a1dcc3d405535f9ed33c219ab38e8d7e0884.png", - "aggregators": ["LiFi", "Socket", "Rubic", "Rango"], - "occurrences": 4 - }, - "0xd341d1680eeee3255b8c4c75bcce7eb57f144dae": { - "address": "0xd341d1680eeee3255b8c4c75bcce7eb57f144dae", - "symbol": "ONG", - "decimals": 18, - "name": "onG", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xd341d1680eeee3255b8c4c75bcce7eb57f144dae.png", - "aggregators": ["LiFi", "Rubic", "Rango", "Bancor"], - "occurrences": 4 - }, - "0x6c05b8141cefb64502b6dfcaae7c77babbac18fa": { - "address": "0x6c05b8141cefb64502b6dfcaae7c77babbac18fa", - "symbol": "FU", - "decimals": 18, - "name": "FU Money", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x6c05b8141cefb64502b6dfcaae7c77babbac18fa.png", - "aggregators": ["LiFi", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0x0f17eeccc84739b9450c88de0429020e2dec05eb": { - "address": "0x0f17eeccc84739b9450c88de0429020e2dec05eb", - "symbol": "OTACON", - "decimals": 18, - "name": "Otacon AI", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x0f17eeccc84739b9450c88de0429020e2dec05eb.png", - "aggregators": ["LiFi", "Socket", "Rubic", "Rango"], - "occurrences": 4 - }, - "0x6a68de599e8e0b1856e322ce5bd11c5c3c79712b": { - "address": "0x6a68de599e8e0b1856e322ce5bd11c5c3c79712b", - "symbol": "IBY", - "decimals": 18, - "name": "I Bet You", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x6a68de599e8e0b1856e322ce5bd11c5c3c79712b.png", - "aggregators": ["LiFi", "Rubic", "Rango", "SushiSwap"], - "occurrences": 4 - }, - "0x1fee5588cb1de19c70b6ad5399152d8c643fae7b": { - "address": "0x1fee5588cb1de19c70b6ad5399152d8c643fae7b", - "symbol": "PHTK", - "decimals": 18, - "name": "PhunToken", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x1fee5588cb1de19c70b6ad5399152d8c643fae7b.png", - "aggregators": ["LiFi", "Socket", "Rubic", "Rango"], - "occurrences": 4 - }, - "0xc0134b5b924c2fca106efb33c45446c466fbe03e": { - "address": "0xc0134b5b924c2fca106efb33c45446c466fbe03e", - "symbol": "ALEPH", - "decimals": 18, - "name": "ALEPH", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xc0134b5b924c2fca106efb33c45446c466fbe03e.png", - "aggregators": ["LiFi", "Socket", "Rubic", "Rango"], - "occurrences": 4 - }, - "0x9ba60ba98413a60db4c651d4afe5c937bbd8044b": { - "address": "0x9ba60ba98413a60db4c651d4afe5c937bbd8044b", - "symbol": "YLA", - "decimals": 18, - "name": "Yearn Lazy Ape Index", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x9ba60ba98413a60db4c651d4afe5c937bbd8044b.png", - "aggregators": ["LiFi", "Rubic", "Rango", "SushiSwap"], - "occurrences": 4 - }, - "0xf073bac22dab7faf4a3dd6c6189a70d54110525c": { - "address": "0xf073bac22dab7faf4a3dd6c6189a70d54110525c", - "symbol": "INETH", - "decimals": 18, - "name": "Inception Restaked ETH", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xf073bac22dab7faf4a3dd6c6189a70d54110525c.png", - "aggregators": ["LiFi", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0xe1406825186d63980fd6e2ec61888f7b91c4bae4": { - "address": "0xe1406825186d63980fd6e2ec61888f7b91c4bae4", - "symbol": "VBTC", - "decimals": 18, - "name": "vBTC", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xe1406825186d63980fd6e2ec61888f7b91c4bae4.png", - "aggregators": ["LiFi", "Rubic", "Rango", "SushiSwap"], - "occurrences": 4 - }, - "0xd56dac73a4d6766464b38ec6d91eb45ce7457c44": { - "address": "0xd56dac73a4d6766464b38ec6d91eb45ce7457c44", - "symbol": "PAN", - "decimals": 18, - "name": "PAN", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xd56dac73a4d6766464b38ec6d91eb45ce7457c44.png", - "aggregators": ["LiFi", "Socket", "Rubic", "Rango"], - "occurrences": 4 - }, - "0x2a039b1d9bbdccbb91be28691b730ca893e5e743": { - "address": "0x2a039b1d9bbdccbb91be28691b730ca893e5e743", - "symbol": "RNB", - "decimals": 18, - "name": "Rentible", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x2a039b1d9bbdccbb91be28691b730ca893e5e743.png", - "aggregators": ["LiFi", "Socket", "Rubic", "Bancor"], - "occurrences": 4 - }, - "0x78da5799cf427fee11e9996982f4150ece7a99a7": { - "address": "0x78da5799cf427fee11e9996982f4150ece7a99a7", - "symbol": "RGUSD", - "decimals": 18, - "name": "rgUSD", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x78da5799cf427fee11e9996982f4150ece7a99a7.png", - "aggregators": ["LiFi", "Socket", "Rubic", "Rango"], - "occurrences": 4 - }, - "0x67b6d479c7bb412c54e03dca8e1bc6740ce6b99c": { - "address": "0x67b6d479c7bb412c54e03dca8e1bc6740ce6b99c", - "symbol": "KYL", - "decimals": 18, - "name": "Kylin", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x67b6d479c7bb412c54e03dca8e1bc6740ce6b99c.png", - "aggregators": ["TrustWallet", "Socket", "Rubic", "Rango"], - "occurrences": 4 - }, - "0x39b46b212bdf15b42b166779b9d1787a68b9d0c3": { - "address": "0x39b46b212bdf15b42b166779b9d1787a68b9d0c3", - "symbol": "DYP", - "decimals": 18, - "name": "Dypius", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x39b46b212bdf15b42b166779b9d1787a68b9d0c3.png", - "aggregators": ["Socket", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0x1bed97cbc3c24a4fb5c069c6e311a967386131f7": { - "address": "0x1bed97cbc3c24a4fb5c069c6e311a967386131f7", - "symbol": "YETH", - "decimals": 18, - "name": "Yearn Ether", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x1bed97cbc3c24a4fb5c069c6e311a967386131f7.png", - "aggregators": ["Socket", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0x8b802513d4aa6f349b197a4ea4c26563cd6fd5b2": { - "address": "0x8b802513d4aa6f349b197a4ea4c26563cd6fd5b2", - "symbol": "HIGHER", - "decimals": 18, - "name": "HIgher IMO", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x8b802513d4aa6f349b197a4ea4c26563cd6fd5b2.png", - "aggregators": ["Socket", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0x6dc469a3ef387ad9619df7774388ae26439ac8d4": { - "address": "0x6dc469a3ef387ad9619df7774388ae26439ac8d4", - "symbol": "PAPI", - "decimals": 9, - "name": "PAPI ETH", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x6dc469a3ef387ad9619df7774388ae26439ac8d4.png", - "aggregators": ["Socket", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0xbeef01060047522408756e0000a90ce195a70000": { - "address": "0xbeef01060047522408756e0000a90ce195a70000", - "symbol": "APTR", - "decimals": 6, - "name": "Aperture Finance", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xbeef01060047522408756e0000a90ce195a70000.png", - "aggregators": ["Socket", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0xc4bb7277a74678f053259cb1f96140347efbfd46": { - "address": "0xc4bb7277a74678f053259cb1f96140347efbfd46", - "symbol": "COC", - "decimals": 18, - "name": "Coin of the champions", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xc4bb7277a74678f053259cb1f96140347efbfd46.png", - "aggregators": ["Socket", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0xd4342a57ecf2fe7ffa37c33cb8f63b1500e575e6": { - "address": "0xd4342a57ecf2fe7ffa37c33cb8f63b1500e575e6", - "symbol": "APN", - "decimals": 18, - "name": "Apron", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xd4342a57ecf2fe7ffa37c33cb8f63b1500e575e6.png", - "aggregators": ["Socket", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0xe3dbc4f88eaa632ddf9708732e2832eeaa6688ab": { - "address": "0xe3dbc4f88eaa632ddf9708732e2832eeaa6688ab", - "symbol": "AIUS", - "decimals": 18, - "name": "Arbius", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xe3dbc4f88eaa632ddf9708732e2832eeaa6688ab.png", - "aggregators": ["Socket", "Rubic", "SushiSwap"], - "occurrences": 3 - }, - "0x8c282c35b5e1088bb208991c151182a782637699": { - "address": "0x8c282c35b5e1088bb208991c151182a782637699", - "symbol": "MONAI", - "decimals": 18, - "name": "Monai", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x8c282c35b5e1088bb208991c151182a782637699.png", - "aggregators": ["Socket", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0x28e67eb7aaa8f5dd9cb7be2b2e3dad6b25edb1ab": { - "address": "0x28e67eb7aaa8f5dd9cb7be2b2e3dad6b25edb1ab", - "symbol": "KEKE", - "decimals": 18, - "name": "Freaky KEKE", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x28e67eb7aaa8f5dd9cb7be2b2e3dad6b25edb1ab.png", - "aggregators": ["Socket", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0xe1e1e2dd585c0b10995c4ef292aa9a0795f95811": { - "address": "0xe1e1e2dd585c0b10995c4ef292aa9a0795f95811", - "symbol": "ELE", - "decimals": 18, - "name": "EigenElephant", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xe1e1e2dd585c0b10995c4ef292aa9a0795f95811.png", - "aggregators": ["Socket", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0xec56840be7c495cbf98c0157b458cd207ff85da1": { - "address": "0xec56840be7c495cbf98c0157b458cd207ff85da1", - "symbol": "WRUNI", - "decimals": 6, - "name": "Wrapped RUNI", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xec56840be7c495cbf98c0157b458cd207ff85da1.png", - "aggregators": ["Socket", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0x433fce7dfbec729a79999eaf056cb073b2153eba": { - "address": "0x433fce7dfbec729a79999eaf056cb073b2153eba", - "symbol": "CNW", - "decimals": 6, - "name": "CoinWealth", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x433fce7dfbec729a79999eaf056cb073b2153eba.png", - "aggregators": ["Socket", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0x888888ae2c4a298efd66d162ffc53b3f2a869888": { - "address": "0x888888ae2c4a298efd66d162ffc53b3f2a869888", - "symbol": "OMOCHI", - "decimals": 9, - "name": "Omochi the Frog", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x888888ae2c4a298efd66d162ffc53b3f2a869888.png", - "aggregators": ["Socket", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0xe0797ec1d0bb0bec541a82c5262c3b0f93f68bfe": { - "address": "0xe0797ec1d0bb0bec541a82c5262c3b0f93f68bfe", - "symbol": "JOKER", - "decimals": 15, - "name": "Joker", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xe0797ec1d0bb0bec541a82c5262c3b0f93f68bfe.png", - "aggregators": ["Socket", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0x4d67edef87a5ff910954899f4e5a0aaf107afd42": { - "address": "0x4d67edef87a5ff910954899f4e5a0aaf107afd42", - "symbol": "BLUESPARROW", - "decimals": 9, - "name": "BlueSparrow OLD", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x4d67edef87a5ff910954899f4e5a0aaf107afd42.png", - "aggregators": ["Socket", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0x755f57af4c14aabfe5fbc92b27b015dcdbd30c15": { - "address": "0x755f57af4c14aabfe5fbc92b27b015dcdbd30c15", - "symbol": "ACCORD", - "decimals": 18, - "name": "Accord AI", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x755f57af4c14aabfe5fbc92b27b015dcdbd30c15.png", - "aggregators": ["Socket", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0xbfde5ac4f5adb419a931a5bf64b0f3bb5a623d06": { - "address": "0xbfde5ac4f5adb419a931a5bf64b0f3bb5a623d06", - "symbol": "FLUX", - "decimals": 18, - "name": "Flux", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xbfde5ac4f5adb419a931a5bf64b0f3bb5a623d06.png", - "aggregators": ["Socket", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0xc135a4bbf0d5005f4db3b79b84e8861d22003752": { - "address": "0xc135a4bbf0d5005f4db3b79b84e8861d22003752", - "symbol": "TITAN", - "decimals": 9, - "name": "Titan", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xc135a4bbf0d5005f4db3b79b84e8861d22003752.png", - "aggregators": ["Socket", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0x044a3bad20573bbe5895b873ecbfd4e283bc9102": { - "address": "0x044a3bad20573bbe5895b873ecbfd4e283bc9102", - "symbol": "KND", - "decimals": 18, - "name": "Kindred", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x044a3bad20573bbe5895b873ecbfd4e283bc9102.png", - "aggregators": ["Socket", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0x320aebbdca1397f2e3c7f1e482e104a7d9ec97e4": { - "address": "0x320aebbdca1397f2e3c7f1e482e104a7d9ec97e4", - "symbol": "AYIN", - "decimals": 18, - "name": "Ayin", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x320aebbdca1397f2e3c7f1e482e104a7d9ec97e4.png", - "aggregators": ["Socket", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0x5972169d49654dda92af57d11d4362fa72c15b03": { - "address": "0x5972169d49654dda92af57d11d4362fa72c15b03", - "symbol": "ZGEN", - "decimals": 18, - "name": "Zegent AI", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x5972169d49654dda92af57d11d4362fa72c15b03.png", - "aggregators": ["Socket", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0x3abe404faa776d2a833d554a068ef1a58193f080": { - "address": "0x3abe404faa776d2a833d554a068ef1a58193f080", - "symbol": "KOZUE", - "decimals": 9, - "name": "Kozue", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x3abe404faa776d2a833d554a068ef1a58193f080.png", - "aggregators": ["Socket", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0xc289c2d57e2ba371f40d594705dbf9331a2da47d": { - "address": "0xc289c2d57e2ba371f40d594705dbf9331a2da47d", - "symbol": "LOLCAT", - "decimals": 9, - "name": "First Meme", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xc289c2d57e2ba371f40d594705dbf9331a2da47d.png", - "aggregators": ["Socket", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0xf5e63b4c9db61c35bb66462745f9a5e64604f0a9": { - "address": "0xf5e63b4c9db61c35bb66462745f9a5e64604f0a9", - "symbol": "LAPUTA", - "decimals": 9, - "name": "Ethereum Origins", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xf5e63b4c9db61c35bb66462745f9a5e64604f0a9.png", - "aggregators": ["Socket", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0x0c21638d4bcb88568f88bc84a50e317715f8de8a": { - "address": "0x0c21638d4bcb88568f88bc84a50e317715f8de8a", - "symbol": "GDX", - "decimals": 18, - "name": "GrokDogeX", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x0c21638d4bcb88568f88bc84a50e317715f8de8a.png", - "aggregators": ["Socket", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0x06576eb3b212d605b797dc15523d9dc9f4f66db4": { - "address": "0x06576eb3b212d605b797dc15523d9dc9f4f66db4", - "symbol": "TCP", - "decimals": 18, - "name": "The Crypto Prophecies", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x06576eb3b212d605b797dc15523d9dc9f4f66db4.png", - "aggregators": ["Socket", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0x68aae81b4241ffe03d3552d42a69940604fe28bf": { - "address": "0x68aae81b4241ffe03d3552d42a69940604fe28bf", - "symbol": "MUFFIN", - "decimals": 9, - "name": "Muffin", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x68aae81b4241ffe03d3552d42a69940604fe28bf.png", - "aggregators": ["Socket", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0xa13edd1a27ab4fb8982c033acb082cdb5f98b79b": { - "address": "0xa13edd1a27ab4fb8982c033acb082cdb5f98b79b", - "symbol": "DEW", - "decimals": 9, - "name": "doge in a memes world", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xa13edd1a27ab4fb8982c033acb082cdb5f98b79b.png", - "aggregators": ["Socket", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0x9bd69bc59118ce0fbce9b03551a765a779bd25cf": { - "address": "0x9bd69bc59118ce0fbce9b03551a765a779bd25cf", - "symbol": "ZKE", - "decimals": 18, - "name": "zkEra Finance", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x9bd69bc59118ce0fbce9b03551a765a779bd25cf.png", - "aggregators": ["Socket", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0xb49bf1dbdc567b997733093880734f030174474c": { - "address": "0xb49bf1dbdc567b997733093880734f030174474c", - "symbol": "FREEDOM", - "decimals": 18, - "name": "FREEDOM", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xb49bf1dbdc567b997733093880734f030174474c.png", - "aggregators": ["Socket", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0x2a762b4587197119539ca675f7c8b214cf9eda73": { - "address": "0x2a762b4587197119539ca675f7c8b214cf9eda73", - "symbol": "UNAI", - "decimals": 18, - "name": "Unknown AI", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x2a762b4587197119539ca675f7c8b214cf9eda73.png", - "aggregators": ["Socket", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0x1122b6a0e00dce0563082b6e2953f3a943855c1f": { - "address": "0x1122b6a0e00dce0563082b6e2953f3a943855c1f", - "symbol": "CENNZ", - "decimals": 18, - "name": "CENNZnet", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x1122b6a0e00dce0563082b6e2953f3a943855c1f.png", - "aggregators": ["Socket", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0x35f3bad2fcc8053869086885f7898a3d4309db4e": { - "address": "0x35f3bad2fcc8053869086885f7898a3d4309db4e", - "symbol": "EMBER", - "decimals": 18, - "name": "Ember Sword", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x35f3bad2fcc8053869086885f7898a3d4309db4e.png", - "aggregators": ["Socket", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0xb94acdf8662cd955f137e0c9c9fba535c87b57b4": { - "address": "0xb94acdf8662cd955f137e0c9c9fba535c87b57b4", - "symbol": "LISA", - "decimals": 18, - "name": "Mona Token", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xb94acdf8662cd955f137e0c9c9fba535c87b57b4.png", - "aggregators": ["Socket", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0x95392f142af1c12f6e39897ff9b09c599666b50c": { - "address": "0x95392f142af1c12f6e39897ff9b09c599666b50c", - "symbol": "BLOOD", - "decimals": 18, - "name": "Impostors Blood", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x95392f142af1c12f6e39897ff9b09c599666b50c.png", - "aggregators": ["Socket", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0xad5fe5b0b8ec8ff4565204990e4405b2da117d8e": { - "address": "0xad5fe5b0b8ec8ff4565204990e4405b2da117d8e", - "symbol": "TRXC", - "decimals": 0, - "name": "TronClassic", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xad5fe5b0b8ec8ff4565204990e4405b2da117d8e.png", - "aggregators": ["Socket", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0xe2311ae37502105b442bbef831e9b53c5d2e9b3b": { - "address": "0xe2311ae37502105b442bbef831e9b53c5d2e9b3b", - "symbol": "BANANA", - "decimals": 18, - "name": "Banana", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xe2311ae37502105b442bbef831e9b53c5d2e9b3b.png", - "aggregators": ["Socket", "Rubic", "Rango", "SushiSwap"], - "occurrences": 4 - }, - "0xe1c8d908f0e495cf6d8459547d1d28b72bf04bf2": { - "address": "0xe1c8d908f0e495cf6d8459547d1d28b72bf04bf2", - "symbol": "TSAI", - "decimals": 18, - "name": "TesseractAI", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xe1c8d908f0e495cf6d8459547d1d28b72bf04bf2.png", - "aggregators": ["Socket", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0x13063bed4bebbe542005e191c459d2cfa96b98e1": { - "address": "0x13063bed4bebbe542005e191c459d2cfa96b98e1", - "symbol": "IZUMI", - "decimals": 9, - "name": "Izumi chan", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x13063bed4bebbe542005e191c459d2cfa96b98e1.png", - "aggregators": ["Socket", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0xafe53eea0cfe20198328890b69107d5fd8159a77": { - "address": "0xafe53eea0cfe20198328890b69107d5fd8159a77", - "symbol": "X", - "decimals": 9, - "name": "XAI", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xafe53eea0cfe20198328890b69107d5fd8159a77.png", - "aggregators": ["Socket", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0xad78d154baec2e9b4e78182d02388981b5093f80": { - "address": "0xad78d154baec2e9b4e78182d02388981b5093f80", - "symbol": "SOY", - "decimals": 18, - "name": "Soyjak", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xad78d154baec2e9b4e78182d02388981b5093f80.png", - "aggregators": ["Socket", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0x34df29dd880e9fe2cec0f85f7658b75606fb2870": { - "address": "0x34df29dd880e9fe2cec0f85f7658b75606fb2870", - "symbol": "NAVYSEAL", - "decimals": 9, - "name": "Navy seal", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x34df29dd880e9fe2cec0f85f7658b75606fb2870.png", - "aggregators": ["Socket", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0x8baef8c9568c21b1a2b2fd048f8b4da835691fd0": { - "address": "0x8baef8c9568c21b1a2b2fd048f8b4da835691fd0", - "symbol": "USDZ", - "decimals": 18, - "name": "USD ZEE", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x8baef8c9568c21b1a2b2fd048f8b4da835691fd0.png", - "aggregators": ["Socket", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0x9f5e508182e1cbd23ea5ef65d1d6c342beb7d6d3": { - "address": "0x9f5e508182e1cbd23ea5ef65d1d6c342beb7d6d3", - "symbol": "JONES", - "decimals": 9, - "name": "JONES", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x9f5e508182e1cbd23ea5ef65d1d6c342beb7d6d3.png", - "aggregators": ["Socket", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0x4594cffbfc09bc5e7ecf1c2e1c1e24f0f7d29036": { - "address": "0x4594cffbfc09bc5e7ecf1c2e1c1e24f0f7d29036", - "symbol": "0KN", - "decimals": 18, - "name": "0 Knowledge Network", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x4594cffbfc09bc5e7ecf1c2e1c1e24f0f7d29036.png", - "aggregators": ["Socket", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0x7e877b99897d514da01bd1d177e693ec639961af": { - "address": "0x7e877b99897d514da01bd1d177e693ec639961af", - "symbol": "OGGY", - "decimals": 9, - "name": "Oggy Inu ETH", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x7e877b99897d514da01bd1d177e693ec639961af.png", - "aggregators": ["Socket", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0x7434a5066dc317fa5b4d31aaded5088b9c54d667": { - "address": "0x7434a5066dc317fa5b4d31aaded5088b9c54d667", - "symbol": "CULT", - "decimals": 18, - "name": "CULT", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x7434a5066dc317fa5b4d31aaded5088b9c54d667.png", - "aggregators": ["Socket", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0xff00644ca76def7a3f7501a281ffe45934aefbfe": { - "address": "0xff00644ca76def7a3f7501a281ffe45934aefbfe", - "symbol": "GANG", - "decimals": 9, - "name": "Shadow Wizard Money Gang", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xff00644ca76def7a3f7501a281ffe45934aefbfe.png", - "aggregators": ["Socket", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0xf3e66b03d098d0482be9cb3d6999787231a93ed9": { - "address": "0xf3e66b03d098d0482be9cb3d6999787231a93ed9", - "symbol": "PROMPTIDE", - "decimals": 9, - "name": "PromptIDE", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xf3e66b03d098d0482be9cb3d6999787231a93ed9.png", - "aggregators": ["Socket", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0x99cffb50aad37d17955253f3a4070556b5127a0b": { - "address": "0x99cffb50aad37d17955253f3a4070556b5127a0b", - "symbol": "MEGA", - "decimals": 18, - "name": "MEGALODON", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x99cffb50aad37d17955253f3a4070556b5127a0b.png", - "aggregators": ["Socket", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0xdb81f7b3f0b2baebd5009cddade5c9a9c82378bb": { - "address": "0xdb81f7b3f0b2baebd5009cddade5c9a9c82378bb", - "symbol": "JJ", - "decimals": 18, - "name": "Jjmoji", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xdb81f7b3f0b2baebd5009cddade5c9a9c82378bb.png", - "aggregators": ["Socket", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0xbcbda13bd60bc0e91745186e274d1445078d6b33": { - "address": "0xbcbda13bd60bc0e91745186e274d1445078d6b33", - "symbol": "FERRET", - "decimals": 18, - "name": "Ferret AI", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xbcbda13bd60bc0e91745186e274d1445078d6b33.png", - "aggregators": ["Socket", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0x0880164084017b8d49baa0a33f545ad55914e9fd": { - "address": "0x0880164084017b8d49baa0a33f545ad55914e9fd", - "symbol": "DTI", - "decimals": 9, - "name": "DT Inu", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x0880164084017b8d49baa0a33f545ad55914e9fd.png", - "aggregators": ["Socket", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0x40c3b81fb887016c0ad02436309c2b265d069a05": { - "address": "0x40c3b81fb887016c0ad02436309c2b265d069a05", - "symbol": "CTO", - "decimals": 18, - "name": "Chief Troll Officer", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x40c3b81fb887016c0ad02436309c2b265d069a05.png", - "aggregators": ["Socket", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0x46305b2ebcd92809d5fcef577c20c28a185af03c": { - "address": "0x46305b2ebcd92809d5fcef577c20c28a185af03c", - "symbol": "SHADOW", - "decimals": 18, - "name": "Shadowladys DN404", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x46305b2ebcd92809d5fcef577c20c28a185af03c.png", - "aggregators": ["Socket", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0xbb63a9b64a80e9338b8ea298c51765e57c4f159c": { - "address": "0xbb63a9b64a80e9338b8ea298c51765e57c4f159c", - "symbol": "PICA", - "decimals": 12, - "name": "Picasso", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xbb63a9b64a80e9338b8ea298c51765e57c4f159c.png", - "aggregators": ["Socket", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0x4f14ba78a51925ee934c373a2cf56b2d8da63f7f": { - "address": "0x4f14ba78a51925ee934c373a2cf56b2d8da63f7f", - "symbol": "EBIT", - "decimals": 18, - "name": "eBit", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x4f14ba78a51925ee934c373a2cf56b2d8da63f7f.png", - "aggregators": ["Socket", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0xbec771d15f7e67bc0bb4571c7eb409228cc6fef9": { - "address": "0xbec771d15f7e67bc0bb4571c7eb409228cc6fef9", - "symbol": "BRAI", - "decimals": 18, - "name": "BribeAI", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xbec771d15f7e67bc0bb4571c7eb409228cc6fef9.png", - "aggregators": ["Socket", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0x68d009f251ff3a271477f77acb704c3b0f32a0c0": { - "address": "0x68d009f251ff3a271477f77acb704c3b0f32a0c0", - "symbol": "CHAD", - "decimals": 18, - "name": "CHAD", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x68d009f251ff3a271477f77acb704c3b0f32a0c0.png", - "aggregators": ["Socket", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0xd78cb66b3affd27569782737fa5b842277e1add7": { - "address": "0xd78cb66b3affd27569782737fa5b842277e1add7", - "symbol": "GTROK", - "decimals": 9, - "name": "GTROK", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xd78cb66b3affd27569782737fa5b842277e1add7.png", - "aggregators": ["Socket", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0x78e3b2ee11950df78a35fd924e92fbb8d1403780": { - "address": "0x78e3b2ee11950df78a35fd924e92fbb8d1403780", - "symbol": "HELGA", - "decimals": 18, - "name": "Helga Inu", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x78e3b2ee11950df78a35fd924e92fbb8d1403780.png", - "aggregators": ["Socket", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0x122303734c898e9d233affc234271f04e42e77ad": { - "address": "0x122303734c898e9d233affc234271f04e42e77ad", - "symbol": "CAT", - "decimals": 18, - "name": "Maxwell the spinning cat", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x122303734c898e9d233affc234271f04e42e77ad.png", - "aggregators": ["Socket", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0xf857c938829c2a53557fb3fbb1c85d10a5227e03": { - "address": "0xf857c938829c2a53557fb3fbb1c85d10a5227e03", - "symbol": "ECL", - "decimals": 18, - "name": "ECL", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xf857c938829c2a53557fb3fbb1c85d10a5227e03.png", - "aggregators": ["Socket", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0x337c8a3f0cd0580b29e9ee5d7829645709c8f6d2": { - "address": "0x337c8a3f0cd0580b29e9ee5d7829645709c8f6d2", - "symbol": "BOBA", - "decimals": 9, - "name": "BOBA", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x337c8a3f0cd0580b29e9ee5d7829645709c8f6d2.png", - "aggregators": ["Socket", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0xb624960aaad05d433075a5c9e760adec26036934": { - "address": "0xb624960aaad05d433075a5c9e760adec26036934", - "symbol": "MONKE", - "decimals": 9, - "name": "Monke Coin", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xb624960aaad05d433075a5c9e760adec26036934.png", - "aggregators": ["Socket", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0x9749ac257e5c7ee59a87cd1a2e93fdb9678a64e6": { - "address": "0x9749ac257e5c7ee59a87cd1a2e93fdb9678a64e6", - "symbol": "RETARD", - "decimals": 18, - "name": "Retard Coin", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x9749ac257e5c7ee59a87cd1a2e93fdb9678a64e6.png", - "aggregators": ["Socket", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0xcf4c91ecafc43c9f382db723ba20b82efa852821": { - "address": "0xcf4c91ecafc43c9f382db723ba20b82efa852821", - "symbol": "TRUTH", - "decimals": 18, - "name": "Truth Inu", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xcf4c91ecafc43c9f382db723ba20b82efa852821.png", - "aggregators": ["Socket", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0xd59d7d2e955533fcd21641da8a70eae9624a3c49": { - "address": "0xd59d7d2e955533fcd21641da8a70eae9624a3c49", - "symbol": "MRING", - "decimals": 18, - "name": "MagicRing", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xd59d7d2e955533fcd21641da8a70eae9624a3c49.png", - "aggregators": ["Socket", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0xd749b369d361396286f8cc28a99dd3425ac05619": { - "address": "0xd749b369d361396286f8cc28a99dd3425ac05619", - "symbol": "BRETTEI", - "decimals": 18, - "name": "Brettei", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xd749b369d361396286f8cc28a99dd3425ac05619.png", - "aggregators": ["Socket", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0xa247c6d23c8c7d223420700d16d189cff9357f38": { - "address": "0xa247c6d23c8c7d223420700d16d189cff9357f38", - "symbol": "CHEESED", - "decimals": 9, - "name": "Cheesed", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xa247c6d23c8c7d223420700d16d189cff9357f38.png", - "aggregators": ["Socket", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0x29e9b047d506f75085533b7b7f53e8de6b43b86f": { - "address": "0x29e9b047d506f75085533b7b7f53e8de6b43b86f", - "symbol": "DOKEN", - "decimals": 9, - "name": "Hokkaido Ken", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x29e9b047d506f75085533b7b7f53e8de6b43b86f.png", - "aggregators": ["Socket", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0x724af984b63fd53fdedb5ded17063001e3afc3e5": { - "address": "0x724af984b63fd53fdedb5ded17063001e3afc3e5", - "symbol": "ROCK", - "decimals": 18, - "name": "ROCK", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x724af984b63fd53fdedb5ded17063001e3afc3e5.png", - "aggregators": ["Socket", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0xcf16287a869ac8397815aba9b8c962c0f18ba6ea": { - "address": "0xcf16287a869ac8397815aba9b8c962c0f18ba6ea", - "symbol": "VXR", - "decimals": 4, - "name": "Vox Royale", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xcf16287a869ac8397815aba9b8c962c0f18ba6ea.png", - "aggregators": ["Socket", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0xbfa7cb34879167e982206fabf6ced5e2ba5cd496": { - "address": "0xbfa7cb34879167e982206fabf6ced5e2ba5cd496", - "symbol": "SQUIRRY", - "decimals": 9, - "name": "Squirry", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xbfa7cb34879167e982206fabf6ced5e2ba5cd496.png", - "aggregators": ["Socket", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0x30303101104100c397c069e0642acac518420205": { - "address": "0x30303101104100c397c069e0642acac518420205", - "symbol": "PC", - "decimals": 9, - "name": "Playable Coin", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x30303101104100c397c069e0642acac518420205.png", - "aggregators": ["Socket", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0x0000bdaa645097ef80f9d475f341d0d107a45b3a": { - "address": "0x0000bdaa645097ef80f9d475f341d0d107a45b3a", - "symbol": "BRAINLET", - "decimals": 18, - "name": "BRAINLET", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x0000bdaa645097ef80f9d475f341d0d107a45b3a.png", - "aggregators": ["Socket", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0x7b0df1cd724ec34ec9bc4bd19749b01afb490761": { - "address": "0x7b0df1cd724ec34ec9bc4bd19749b01afb490761", - "symbol": "KOIN", - "decimals": 9, - "name": "Kittekoin", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x7b0df1cd724ec34ec9bc4bd19749b01afb490761.png", - "aggregators": ["Socket", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0xb39a0dae3c2afd1f3c55ad47d1c7a0bb6c1ca260": { - "address": "0xb39a0dae3c2afd1f3c55ad47d1c7a0bb6c1ca260", - "symbol": "UNREAL", - "decimals": 9, - "name": "Unreal AI", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xb39a0dae3c2afd1f3c55ad47d1c7a0bb6c1ca260.png", - "aggregators": ["Socket", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0x6db6fdb5182053eecec778afec95e0814172a474": { - "address": "0x6db6fdb5182053eecec778afec95e0814172a474", - "symbol": "FARM", - "decimals": 18, - "name": "TaxFarm ing", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x6db6fdb5182053eecec778afec95e0814172a474.png", - "aggregators": ["Socket", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0x27c78a7c10a0673c3509ccf63044aab92e09edac": { - "address": "0x27c78a7c10a0673c3509ccf63044aab92e09edac", - "symbol": "FLY", - "decimals": 18, - "name": "Butterfly Ai", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x27c78a7c10a0673c3509ccf63044aab92e09edac.png", - "aggregators": ["Socket", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0x1580bfe88f772116fd59b042189746af8f78f00d": { - "address": "0x1580bfe88f772116fd59b042189746af8f78f00d", - "symbol": "DEGEN", - "decimals": 18, - "name": "Degen Food", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x1580bfe88f772116fd59b042189746af8f78f00d.png", - "aggregators": ["Socket", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0xa426660830ed887a25c1c6158ca348038e1a37cb": { - "address": "0xa426660830ed887a25c1c6158ca348038e1a37cb", - "symbol": "CTO", - "decimals": 18, - "name": "Chief Troll Officer", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xa426660830ed887a25c1c6158ca348038e1a37cb.png", - "aggregators": ["Socket", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0x5a12975bf0158c9c3b23622f44917d113f31842d": { - "address": "0x5a12975bf0158c9c3b23622f44917d113f31842d", - "symbol": "KOMA", - "decimals": 9, - "name": "Komari", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x5a12975bf0158c9c3b23622f44917d113f31842d.png", - "aggregators": ["Socket", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0x93c2bd80cadcfeb541eb5af4052375bde8d6f24f": { - "address": "0x93c2bd80cadcfeb541eb5af4052375bde8d6f24f", - "symbol": "SASHA", - "decimals": 18, - "name": "Bitcoin Cat", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x93c2bd80cadcfeb541eb5af4052375bde8d6f24f.png", - "aggregators": ["Socket", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0x124386504d774979e1e9d2d19c6188391d7af8e3": { - "address": "0x124386504d774979e1e9d2d19c6188391d7af8e3", - "symbol": "HANABI", - "decimals": 9, - "name": "Hanabi chan", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x124386504d774979e1e9d2d19c6188391d7af8e3.png", - "aggregators": ["Socket", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0xaf8b894229bc800658ab0faf744e97c8c74c4321": { - "address": "0xaf8b894229bc800658ab0faf744e97c8c74c4321", - "symbol": "LEMON", - "decimals": 18, - "name": "Black Lemon AI", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xaf8b894229bc800658ab0faf744e97c8c74c4321.png", - "aggregators": ["Socket", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0x2bcbec0296cddda988ea88031e43fe247fa6d341": { - "address": "0x2bcbec0296cddda988ea88031e43fe247fa6d341", - "symbol": "MOOTUN", - "decimals": 9, - "name": "Moo Tun", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x2bcbec0296cddda988ea88031e43fe247fa6d341.png", - "aggregators": ["Socket", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0x46b7cb31a4a6375c69a6d0b9ed9261fb649adb83": { - "address": "0x46b7cb31a4a6375c69a6d0b9ed9261fb649adb83", - "symbol": "0XP", - "decimals": 9, - "name": "0xPrivacy", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x46b7cb31a4a6375c69a6d0b9ed9261fb649adb83.png", - "aggregators": ["Socket", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0x896c767371e2d2255f1c33301d29e5577a7aca11": { - "address": "0x896c767371e2d2255f1c33301d29e5577a7aca11", - "symbol": "BULLA", - "decimals": 9, - "name": "BULLA", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x896c767371e2d2255f1c33301d29e5577a7aca11.png", - "aggregators": ["Socket", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0xc0e10854ab40b2e59a5519c481161a090f1162a0": { - "address": "0xc0e10854ab40b2e59a5519c481161a090f1162a0", - "symbol": "CAIRO", - "decimals": 9, - "name": "Cairo", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xc0e10854ab40b2e59a5519c481161a090f1162a0.png", - "aggregators": ["Socket", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0x4a7c9897ae01ff08d6e3820507a6b967bdbffa29": { - "address": "0x4a7c9897ae01ff08d6e3820507a6b967bdbffa29", - "symbol": "WIZARD", - "decimals": 18, - "name": "Wizard Cat", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x4a7c9897ae01ff08d6e3820507a6b967bdbffa29.png", - "aggregators": ["Socket", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0x2ca9242c1810029efed539f1c60d68b63ad01bfc": { - "address": "0x2ca9242c1810029efed539f1c60d68b63ad01bfc", - "symbol": "ANVL", - "decimals": 18, - "name": "Anvil", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x2ca9242c1810029efed539f1c60d68b63ad01bfc.png", - "aggregators": ["Socket", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0x8b8f9419ed9fd8c168128bf05c5d5fe7b17fe11d": { - "address": "0x8b8f9419ed9fd8c168128bf05c5d5fe7b17fe11d", - "symbol": "MILO", - "decimals": 18, - "name": "Milo Token", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x8b8f9419ed9fd8c168128bf05c5d5fe7b17fe11d.png", - "aggregators": ["Socket", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0xd692cb29aa3958a7f5c583323be2990903a57977": { - "address": "0xd692cb29aa3958a7f5c583323be2990903a57977", - "symbol": "QUANT", - "decimals": 18, - "name": "QUANT", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xd692cb29aa3958a7f5c583323be2990903a57977.png", - "aggregators": ["Socket", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0x70054a18e57bd9e21e8b6361f6a8dfcd86cdc7d0": { - "address": "0x70054a18e57bd9e21e8b6361f6a8dfcd86cdc7d0", - "symbol": "TMNS", - "decimals": 9, - "name": "Terminus", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x70054a18e57bd9e21e8b6361f6a8dfcd86cdc7d0.png", - "aggregators": ["Socket", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0xd537e3fc08f6d966a0f024c924f358fb15ed2dd9": { - "address": "0xd537e3fc08f6d966a0f024c924f358fb15ed2dd9", - "symbol": "UHOSU", - "decimals": 9, - "name": "Uhosu", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xd537e3fc08f6d966a0f024c924f358fb15ed2dd9.png", - "aggregators": ["Socket", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0xde7e34ad87bfc5d5906f334661110eb438af718b": { - "address": "0xde7e34ad87bfc5d5906f334661110eb438af718b", - "symbol": "OF", - "decimals": 18, - "name": "OceanFund", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xde7e34ad87bfc5d5906f334661110eb438af718b.png", - "aggregators": ["Socket", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0xde0a515d133397d62eb3fcdfcc68ba4904ac49c0": { - "address": "0xde0a515d133397d62eb3fcdfcc68ba4904ac49c0", - "symbol": "SHNJ", - "decimals": 9, - "name": "Shinji", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xde0a515d133397d62eb3fcdfcc68ba4904ac49c0.png", - "aggregators": ["Socket", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0x37dba54fdc402aff647ce06c66972f5d662c326d": { - "address": "0x37dba54fdc402aff647ce06c66972f5d662c326d", - "symbol": "MELON", - "decimals": 18, - "name": "MELON", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x37dba54fdc402aff647ce06c66972f5d662c326d.png", - "aggregators": ["Socket", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0xf995771a957c19319a7d8d58b4082b049420340f": { - "address": "0xf995771a957c19319a7d8d58b4082b049420340f", - "symbol": "BONKI", - "decimals": 9, - "name": "BONK Inu", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xf995771a957c19319a7d8d58b4082b049420340f.png", - "aggregators": ["Socket", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0xcaeda9650ccd356af7776057a105f9e6ffe68213": { - "address": "0xcaeda9650ccd356af7776057a105f9e6ffe68213", - "symbol": "LOONG", - "decimals": 18, - "name": "Loong", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xcaeda9650ccd356af7776057a105f9e6ffe68213.png", - "aggregators": ["Socket", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0x561cf9121e89926c27fa1cfc78dfcc4c422937a4": { - "address": "0x561cf9121e89926c27fa1cfc78dfcc4c422937a4", - "symbol": "SQUID", - "decimals": 18, - "name": "Squid Game", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x561cf9121e89926c27fa1cfc78dfcc4c422937a4.png", - "aggregators": ["Socket", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0x249fc40d68a3a55dac335550b64c1a03b4c0ed72": { - "address": "0x249fc40d68a3a55dac335550b64c1a03b4c0ed72", - "symbol": "DINOSHI", - "decimals": 18, - "name": "DINOSHI", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x249fc40d68a3a55dac335550b64c1a03b4c0ed72.png", - "aggregators": ["Socket", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0x7f75aa2274273f4d41267a0e2cd6c9b96c5b7510": { - "address": "0x7f75aa2274273f4d41267a0e2cd6c9b96c5b7510", - "symbol": "POP", - "decimals": 18, - "name": "Proof of Pepe Art", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x7f75aa2274273f4d41267a0e2cd6c9b96c5b7510.png", - "aggregators": ["Socket", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0x0447d3454b25935eed47f65b4bd22b9b23be326a": { - "address": "0x0447d3454b25935eed47f65b4bd22b9b23be326a", - "symbol": "GEM", - "decimals": 18, - "name": "Opal", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x0447d3454b25935eed47f65b4bd22b9b23be326a.png", - "aggregators": ["Socket", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0xed11c9bcf69fdd2eefd9fe751bfca32f171d53ae": { - "address": "0xed11c9bcf69fdd2eefd9fe751bfca32f171d53ae", - "symbol": "KOIN", - "decimals": 8, - "name": "Koinos", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xed11c9bcf69fdd2eefd9fe751bfca32f171d53ae.png", - "aggregators": ["Socket", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0x46c0f8259c4e4d50320124e52f3040cb9e4d04c7": { - "address": "0x46c0f8259c4e4d50320124e52f3040cb9e4d04c7", - "symbol": "SHIELD", - "decimals": 18, - "name": "Chatter Shield", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x46c0f8259c4e4d50320124e52f3040cb9e4d04c7.png", - "aggregators": ["Socket", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0x963cd3e835d81ce8e4ae4836e654336dab4298e9": { - "address": "0x963cd3e835d81ce8e4ae4836e654336dab4298e9", - "symbol": "TUIT", - "decimals": 18, - "name": "Tuition Coin", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x963cd3e835d81ce8e4ae4836e654336dab4298e9.png", - "aggregators": ["Socket", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0x2fb3842189fc7a699d047d9e647474f27779331d": { - "address": "0x2fb3842189fc7a699d047d9e647474f27779331d", - "symbol": "PEPE", - "decimals": 18, - "name": "Pepe 2nd Chance", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x2fb3842189fc7a699d047d9e647474f27779331d.png", - "aggregators": ["Socket", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0xeec2e29ff5cd4cecea61de09e9f28fae74c70ddd": { - "address": "0xeec2e29ff5cd4cecea61de09e9f28fae74c70ddd", - "symbol": "AITT", - "decimals": 8, - "name": "Aittcoin", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xeec2e29ff5cd4cecea61de09e9f28fae74c70ddd.png", - "aggregators": ["Socket", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0x8854d278bdb3140c161bf011888d9dc7a5918e77": { - "address": "0x8854d278bdb3140c161bf011888d9dc7a5918e77", - "symbol": "YUGE", - "decimals": 9, - "name": "Yuge", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x8854d278bdb3140c161bf011888d9dc7a5918e77.png", - "aggregators": ["Socket", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0x100891bf73ba8274c234aa34621bc626ed6eca8e": { - "address": "0x100891bf73ba8274c234aa34621bc626ed6eca8e", - "symbol": "HACHI", - "decimals": 9, - "name": "HACHI KUN", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x100891bf73ba8274c234aa34621bc626ed6eca8e.png", - "aggregators": ["Socket", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0x435cbf7c09e01d6a07b9997770f7b9d1ab754020": { - "address": "0x435cbf7c09e01d6a07b9997770f7b9d1ab754020", - "symbol": "MAGIC", - "decimals": 9, - "name": "Magnificent 7777", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x435cbf7c09e01d6a07b9997770f7b9d1ab754020.png", - "aggregators": ["Socket", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0xca7af58da871736994ce360f51ec6cd28351a3df": { - "address": "0xca7af58da871736994ce360f51ec6cd28351a3df", - "symbol": "GATSBY", - "decimals": 18, - "name": "GATSBY", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xca7af58da871736994ce360f51ec6cd28351a3df.png", - "aggregators": ["Socket", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0x554fb3b6c1cf4a3cef49779ced321ca51c667d7d": { - "address": "0x554fb3b6c1cf4a3cef49779ced321ca51c667d7d", - "symbol": "ARATA", - "decimals": 18, - "name": "Arata AGI", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x554fb3b6c1cf4a3cef49779ced321ca51c667d7d.png", - "aggregators": ["Socket", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0x294d44386c9ff8c38659511297a2e08d829f9336": { - "address": "0x294d44386c9ff8c38659511297a2e08d829f9336", - "symbol": "ARMY", - "decimals": 18, - "name": "Army", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x294d44386c9ff8c38659511297a2e08d829f9336.png", - "aggregators": ["Socket", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0x6953dcedb9fdfa31fe630d3dd1e9bcf893060260": { - "address": "0x6953dcedb9fdfa31fe630d3dd1e9bcf893060260", - "symbol": "GOATSEUS", - "decimals": 18, - "name": "Goatseus Act II", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x6953dcedb9fdfa31fe630d3dd1e9bcf893060260.png", - "aggregators": ["Socket", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0x9b0e1c344141fb361b842d397df07174e1cdb988": { - "address": "0x9b0e1c344141fb361b842d397df07174e1cdb988", - "symbol": "EMOTI", - "decimals": 9, - "name": "EmotiCoin", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x9b0e1c344141fb361b842d397df07174e1cdb988.png", - "aggregators": ["Socket", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0x1e33dba7cd47e79c4385ba39442a693b910a0a8a": { - "address": "0x1e33dba7cd47e79c4385ba39442a693b910a0a8a", - "symbol": "CELO", - "decimals": 18, - "name": "Celo native", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x1e33dba7cd47e79c4385ba39442a693b910a0a8a.png", - "aggregators": ["Socket", "Rubic", "Rango", "SushiSwap"], - "occurrences": 4 - }, - "0x329cae8c175ac6773d5e79bd30624b953c68a308": { - "address": "0x329cae8c175ac6773d5e79bd30624b953c68a308", - "symbol": "MISTY", - "decimals": 18, - "name": "Misty Meets Pepe", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x329cae8c175ac6773d5e79bd30624b953c68a308.png", - "aggregators": ["Socket", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0xd76050f75627e508fa14b84036fbf40b8cc549bd": { - "address": "0xd76050f75627e508fa14b84036fbf40b8cc549bd", - "symbol": "SCRIV", - "decimals": 8, - "name": "SCRIV", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xd76050f75627e508fa14b84036fbf40b8cc549bd.png", - "aggregators": ["Socket", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0x6e068796ba34613eb9b285affe0283fef3f4d66f": { - "address": "0x6e068796ba34613eb9b285affe0283fef3f4d66f", - "symbol": "STEVE", - "decimals": 18, - "name": "Steve", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x6e068796ba34613eb9b285affe0283fef3f4d66f.png", - "aggregators": ["Socket", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0xa57ed6e54be8125bbe45d6ca330e45ebb71ef11e": { - "address": "0xa57ed6e54be8125bbe45d6ca330e45ebb71ef11e", - "symbol": "PEPE", - "decimals": 18, - "name": "NEWPEPE", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xa57ed6e54be8125bbe45d6ca330e45ebb71ef11e.png", - "aggregators": ["Socket", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0x3f98ee6644b2c68a800c08fefa97e6ecfbdba248": { - "address": "0x3f98ee6644b2c68a800c08fefa97e6ecfbdba248", - "symbol": "WHAT", - "decimals": 18, - "name": "WhatAI", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x3f98ee6644b2c68a800c08fefa97e6ecfbdba248.png", - "aggregators": ["Socket", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0xe46a1d19962ea120765d3139c588ffd617be04a8": { - "address": "0xe46a1d19962ea120765d3139c588ffd617be04a8", - "symbol": "EETH", - "decimals": 18, - "name": "EverETH", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xe46a1d19962ea120765d3139c588ffd617be04a8.png", - "aggregators": ["Socket", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0x520140d71129434635899eca07f845bb23b27987": { - "address": "0x520140d71129434635899eca07f845bb23b27987", - "symbol": "VIRTU", - "decimals": 18, - "name": "Virtu Network", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x520140d71129434635899eca07f845bb23b27987.png", - "aggregators": ["Socket", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0xb646c4fe0090bf6fdba226d3ccd8f775b30fdbb5": { - "address": "0xb646c4fe0090bf6fdba226d3ccd8f775b30fdbb5", - "symbol": "CULO", - "decimals": 18, - "name": "Culo ETH", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xb646c4fe0090bf6fdba226d3ccd8f775b30fdbb5.png", - "aggregators": ["Socket", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0x37f5ac1b0c1a07d19270983d6889c181a0a3d6f7": { - "address": "0x37f5ac1b0c1a07d19270983d6889c181a0a3d6f7", - "symbol": "KRON", - "decimals": 18, - "name": "Kronos Bot", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x37f5ac1b0c1a07d19270983d6889c181a0a3d6f7.png", - "aggregators": ["Socket", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0xb4c42d3ecb9cf5811e7cf21a81d0bf3fee21a6f3": { - "address": "0xb4c42d3ecb9cf5811e7cf21a81d0bf3fee21a6f3", - "symbol": "NWO", - "decimals": 9, - "name": "NEW WORLD ORDER", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xb4c42d3ecb9cf5811e7cf21a81d0bf3fee21a6f3.png", - "aggregators": ["Socket", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0xdc69c06e796ddbe2ca5e3d99f6fd8c40dfd9584a": { - "address": "0xdc69c06e796ddbe2ca5e3d99f6fd8c40dfd9584a", - "symbol": "DUCKEY", - "decimals": 9, - "name": "Duckey", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xdc69c06e796ddbe2ca5e3d99f6fd8c40dfd9584a.png", - "aggregators": ["Socket", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0xe657d49abae3ea21618bb481f1dab4322855f60e": { - "address": "0xe657d49abae3ea21618bb481f1dab4322855f60e", - "symbol": "RAINBOW", - "decimals": 18, - "name": "Rainbow", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xe657d49abae3ea21618bb481f1dab4322855f60e.png", - "aggregators": ["Socket", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0x000000000a1c6659ac226dbb1c5bdc648df72e9e": { - "address": "0x000000000a1c6659ac226dbb1c5bdc648df72e9e", - "symbol": "LOOTER", - "decimals": 18, - "name": "Looter", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x000000000a1c6659ac226dbb1c5bdc648df72e9e.png", - "aggregators": ["Socket", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0x1032abe2902a23ddcbab085c20e0e69c33ceb8fa": { - "address": "0x1032abe2902a23ddcbab085c20e0e69c33ceb8fa", - "symbol": "SNAKE", - "decimals": 18, - "name": "Pepe Predator", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x1032abe2902a23ddcbab085c20e0e69c33ceb8fa.png", - "aggregators": ["Socket", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0x4278a8944cf63753b13e9f726bbc1192412988d8": { - "address": "0x4278a8944cf63753b13e9f726bbc1192412988d8", - "symbol": "1984", - "decimals": 18, - "name": "1984", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x4278a8944cf63753b13e9f726bbc1192412988d8.png", - "aggregators": ["Socket", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0xc033f6932f71c6ff1de3177f90dff24b70e50618": { - "address": "0xc033f6932f71c6ff1de3177f90dff24b70e50618", - "symbol": "SANDY", - "decimals": 9, - "name": "SANDY", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xc033f6932f71c6ff1de3177f90dff24b70e50618.png", - "aggregators": ["Socket", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0x5fa3418d828e5cd3c61a66e0fc7fa4a35dadf960": { - "address": "0x5fa3418d828e5cd3c61a66e0fc7fa4a35dadf960", - "symbol": "AVATLY", - "decimals": 18, - "name": "Avatly", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x5fa3418d828e5cd3c61a66e0fc7fa4a35dadf960.png", - "aggregators": ["Socket", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0x352a4b34b8e9f43b869f6f80728978cccdced406": { - "address": "0x352a4b34b8e9f43b869f6f80728978cccdced406", - "symbol": "SDLX", - "decimals": 18, - "name": "SoundLinX", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x352a4b34b8e9f43b869f6f80728978cccdced406.png", - "aggregators": ["Socket", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0x382e57ca8e4c4db9649884ca77b0a355692d14ac": { - "address": "0x382e57ca8e4c4db9649884ca77b0a355692d14ac", - "symbol": "XYXYX", - "decimals": 18, - "name": "Xyxyx", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x382e57ca8e4c4db9649884ca77b0a355692d14ac.png", - "aggregators": ["Socket", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0x680c89c40de9d14aa608a1122363cad18783f837": { - "address": "0x680c89c40de9d14aa608a1122363cad18783f837", - "symbol": "EPIC", - "decimals": 18, - "name": "EPICBOTS", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x680c89c40de9d14aa608a1122363cad18783f837.png", - "aggregators": ["Socket", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0x3c1e2cce6af05d4adf0a9d40a64f1a3dbb47a7b0": { - "address": "0x3c1e2cce6af05d4adf0a9d40a64f1a3dbb47a7b0", - "symbol": "PIZZA", - "decimals": 18, - "name": "Pizza", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x3c1e2cce6af05d4adf0a9d40a64f1a3dbb47a7b0.png", - "aggregators": ["Socket", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0x31b2c59d760058cfe57e59472e7542f776d987fb": { - "address": "0x31b2c59d760058cfe57e59472e7542f776d987fb", - "symbol": "EDEN", - "decimals": 18, - "name": "EDEN", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x31b2c59d760058cfe57e59472e7542f776d987fb.png", - "aggregators": ["Socket", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0xb30240d48c05a4b950c470e2d6aefc9117a50624": { - "address": "0xb30240d48c05a4b950c470e2d6aefc9117a50624", - "symbol": "RUBY", - "decimals": 18, - "name": "Ruby Protocol", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xb30240d48c05a4b950c470e2d6aefc9117a50624.png", - "aggregators": ["Socket", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0xf23e25286b7abf0458746c098a847fdba3dd9633": { - "address": "0xf23e25286b7abf0458746c098a847fdba3dd9633", - "symbol": "HORUS", - "decimals": 9, - "name": "HORUS", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xf23e25286b7abf0458746c098a847fdba3dd9633.png", - "aggregators": ["Socket", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0x09d6f0f5a21f5be4f59e209747e2d07f50bc694c": { - "address": "0x09d6f0f5a21f5be4f59e209747e2d07f50bc694c", - "symbol": "NFTFI", - "decimals": 18, - "name": "NFTFI", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x09d6f0f5a21f5be4f59e209747e2d07f50bc694c.png", - "aggregators": ["Socket", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0xd00065a096ff5fbaeaec726cdef3414d2c8a5116": { - "address": "0xd00065a096ff5fbaeaec726cdef3414d2c8a5116", - "symbol": "MAGNUS", - "decimals": 9, - "name": "Emotional Support Dog", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xd00065a096ff5fbaeaec726cdef3414d2c8a5116.png", - "aggregators": ["Socket", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0x6e6b7adfc7db9feeb8896418ac3422966f65d0a5": { - "address": "0x6e6b7adfc7db9feeb8896418ac3422966f65d0a5", - "symbol": "NET", - "decimals": 18, - "name": "Nektar Network", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x6e6b7adfc7db9feeb8896418ac3422966f65d0a5.png", - "aggregators": ["Socket", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0xdb2f2bcce3efa95eda95a233af45f3e0d4f00e2a": { - "address": "0xdb2f2bcce3efa95eda95a233af45f3e0d4f00e2a", - "symbol": "AGS", - "decimals": 8, - "name": "Aegis", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xdb2f2bcce3efa95eda95a233af45f3e0d4f00e2a.png", - "aggregators": ["Socket", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0xbe56ab825fd35678a32dc35bc4eb17e238e1404f": { - "address": "0xbe56ab825fd35678a32dc35bc4eb17e238e1404f", - "symbol": "DIGITS", - "decimals": 18, - "name": "Digits DAO", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xbe56ab825fd35678a32dc35bc4eb17e238e1404f.png", - "aggregators": ["Socket", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0xf5264e1673c9365e7c5d4d1d8b440bbf131ff435": { - "address": "0xf5264e1673c9365e7c5d4d1d8b440bbf131ff435", - "symbol": "VITALEK", - "decimals": 18, - "name": "vitalek buteren", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xf5264e1673c9365e7c5d4d1d8b440bbf131ff435.png", - "aggregators": ["Socket", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0x5c2975269e74cb3a8514e5b800a1e66c694d4df8": { - "address": "0x5c2975269e74cb3a8514e5b800a1e66c694d4df8", - "symbol": "HER", - "decimals": 18, - "name": "Caroline", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x5c2975269e74cb3a8514e5b800a1e66c694d4df8.png", - "aggregators": ["Socket", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0x8bf30e9f44e5d068a9d0c20da22660997a532e33": { - "address": "0x8bf30e9f44e5d068a9d0c20da22660997a532e33", - "symbol": "GDAG", - "decimals": 18, - "name": "GhostDAG org", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x8bf30e9f44e5d068a9d0c20da22660997a532e33.png", - "aggregators": ["Socket", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0xf12ccd17759367cf139776710b47b00c43d1ac2b": { - "address": "0xf12ccd17759367cf139776710b47b00c43d1ac2b", - "symbol": "EMOJI", - "decimals": 9, - "name": "emoji ERC20", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xf12ccd17759367cf139776710b47b00c43d1ac2b.png", - "aggregators": ["Socket", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0x00000000e88649dd6aab90088ca25d772d4607d0": { - "address": "0x00000000e88649dd6aab90088ca25d772d4607d0", - "symbol": "UDW", - "decimals": 18, - "name": "Underworld", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x00000000e88649dd6aab90088ca25d772d4607d0.png", - "aggregators": ["Socket", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0xdf8ef8fef6fa5489d097652dedfb6617ce28a0d6": { - "address": "0xdf8ef8fef6fa5489d097652dedfb6617ce28a0d6", - "symbol": "DUMP", - "decimals": 18, - "name": "dump trade", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xdf8ef8fef6fa5489d097652dedfb6617ce28a0d6.png", - "aggregators": ["Socket", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0xab0ceb816ad51168ea61545316ee0b3387122243": { - "address": "0xab0ceb816ad51168ea61545316ee0b3387122243", - "symbol": "SPEC", - "decimals": 18, - "name": "Speculate DAO", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xab0ceb816ad51168ea61545316ee0b3387122243.png", - "aggregators": ["Socket", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0x3b24ed67481a80609af2f8913a45da2049547cfd": { - "address": "0x3b24ed67481a80609af2f8913a45da2049547cfd", - "symbol": "NODE", - "decimals": 18, - "name": "Nodez", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x3b24ed67481a80609af2f8913a45da2049547cfd.png", - "aggregators": ["Socket", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0xe27f31b020f95f90f0db2ae0a5fae3b505df7a3e": { - "address": "0xe27f31b020f95f90f0db2ae0a5fae3b505df7a3e", - "symbol": "STEALTH", - "decimals": 18, - "name": "Stealth AI", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xe27f31b020f95f90f0db2ae0a5fae3b505df7a3e.png", - "aggregators": ["Socket", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0x93d91003af5e6beffd574036f98d166c12ae6e32": { - "address": "0x93d91003af5e6beffd574036f98d166c12ae6e32", - "symbol": "REV", - "decimals": 9, - "name": "REV", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x93d91003af5e6beffd574036f98d166c12ae6e32.png", - "aggregators": ["Socket", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0x6d06426a477200c385843a9ac4d4fd55346f2b7b": { - "address": "0x6d06426a477200c385843a9ac4d4fd55346f2b7b", - "symbol": "GINNAN", - "decimals": 9, - "name": "Ginnan Neko", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x6d06426a477200c385843a9ac4d4fd55346f2b7b.png", - "aggregators": ["Socket", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0x0b1bd555adf860d4d51c9caba48d756e224451bf": { - "address": "0x0b1bd555adf860d4d51c9caba48d756e224451bf", - "symbol": "ESPORT", - "decimals": 18, - "name": "Esportplayer", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x0b1bd555adf860d4d51c9caba48d756e224451bf.png", - "aggregators": ["Socket", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0xbb8ecf8d1342e086c9a751ee1b31a8320007379f": { - "address": "0xbb8ecf8d1342e086c9a751ee1b31a8320007379f", - "symbol": "NXR", - "decimals": 18, - "name": "Nexara", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xbb8ecf8d1342e086c9a751ee1b31a8320007379f.png", - "aggregators": ["Socket", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0x8c41455aaa8d6aba3150058d4964349294bf78a3": { - "address": "0x8c41455aaa8d6aba3150058d4964349294bf78a3", - "symbol": "BULL", - "decimals": 9, - "name": "ETH BULL", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x8c41455aaa8d6aba3150058d4964349294bf78a3.png", - "aggregators": ["Socket", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0x3902d5f4213a6b8c434a470026e0c23709a5bb39": { - "address": "0x3902d5f4213a6b8c434a470026e0c23709a5bb39", - "symbol": "SCINET", - "decimals": 18, - "name": "SciNet", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x3902d5f4213a6b8c434a470026e0c23709a5bb39.png", - "aggregators": ["Socket", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0x544f7ba526dc4e835f674c585a478c142dd8cca1": { - "address": "0x544f7ba526dc4e835f674c585a478c142dd8cca1", - "symbol": "SFAI", - "decimals": 9, - "name": "SupportFi AI", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x544f7ba526dc4e835f674c585a478c142dd8cca1.png", - "aggregators": ["Socket", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0x8004c2935cbf88a318c0cf3a2f6458361d2f7015": { - "address": "0x8004c2935cbf88a318c0cf3a2f6458361d2f7015", - "symbol": "DRAFT", - "decimals": 18, - "name": "Draft", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x8004c2935cbf88a318c0cf3a2f6458361d2f7015.png", - "aggregators": ["Socket", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0xf59c6767dfb5aa9e908cb8d1831d02e53312e8ff": { - "address": "0xf59c6767dfb5aa9e908cb8d1831d02e53312e8ff", - "symbol": "EYZ", - "decimals": 18, - "name": "EyzoAI", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xf59c6767dfb5aa9e908cb8d1831d02e53312e8ff.png", - "aggregators": ["Socket", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0x2232f65655c7c41d8b6c8592da3a0e32586273ea": { - "address": "0x2232f65655c7c41d8b6c8592da3a0e32586273ea", - "symbol": "DRX", - "decimals": 9, - "name": "DREYERX NETWORK", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x2232f65655c7c41d8b6c8592da3a0e32586273ea.png", - "aggregators": ["Socket", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0x004f747a91e05d0e2fbe8bf3cd39cdb2bcfab02c": { - "address": "0x004f747a91e05d0e2fbe8bf3cd39cdb2bcfab02c", - "symbol": "TWEET", - "decimals": 18, - "name": "TWEET", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x004f747a91e05d0e2fbe8bf3cd39cdb2bcfab02c.png", - "aggregators": ["Socket", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0x3f962f6325e61b90bae9971f110863c4e67036e2": { - "address": "0x3f962f6325e61b90bae9971f110863c4e67036e2", - "symbol": "SQUARES", - "decimals": 18, - "name": "SquaresAI", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x3f962f6325e61b90bae9971f110863c4e67036e2.png", - "aggregators": ["Socket", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0xdaedbc924dbbccef96c25bb84806e794a4ff3140": { - "address": "0xdaedbc924dbbccef96c25bb84806e794a4ff3140", - "symbol": "BIO", - "decimals": 9, - "name": "Bionergy", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xdaedbc924dbbccef96c25bb84806e794a4ff3140.png", - "aggregators": ["Socket", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0x334bd3375fe5bb8aa003e0e6ce880abada57ac89": { - "address": "0x334bd3375fe5bb8aa003e0e6ce880abada57ac89", - "symbol": "MBERRY", - "decimals": 18, - "name": "MicroBerry", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x334bd3375fe5bb8aa003e0e6ce880abada57ac89.png", - "aggregators": ["Socket", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0x28e58ee9932697f610de907a279684d30c407ba9": { - "address": "0x28e58ee9932697f610de907a279684d30c407ba9", - "symbol": "DEPIN", - "decimals": 9, - "name": "Depinet", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x28e58ee9932697f610de907a279684d30c407ba9.png", - "aggregators": ["Socket", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0x5d19d39852bf99bc4344483cbce3c9ff8f026b43": { - "address": "0x5d19d39852bf99bc4344483cbce3c9ff8f026b43", - "symbol": "AURA", - "decimals": 9, - "name": "Aura AI", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x5d19d39852bf99bc4344483cbce3c9ff8f026b43.png", - "aggregators": ["Socket", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0xa79aceef0a240d651948fbecfa38966ad18b446d": { - "address": "0xa79aceef0a240d651948fbecfa38966ad18b446d", - "symbol": "SEDGE", - "decimals": 18, - "name": "Social Edge", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xa79aceef0a240d651948fbecfa38966ad18b446d.png", - "aggregators": ["Socket", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0x3b6564b5da73a41d3a66e6558a98fd0e9e1e77ad": { - "address": "0x3b6564b5da73a41d3a66e6558a98fd0e9e1e77ad", - "symbol": "UTS", - "decimals": 18, - "name": "Unitus", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x3b6564b5da73a41d3a66e6558a98fd0e9e1e77ad.png", - "aggregators": ["Socket", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0xffb032d971469fd358f11a4192c4e0b852df5190": { - "address": "0xffb032d971469fd358f11a4192c4e0b852df5190", - "symbol": "PEPETR", - "decimals": 9, - "name": "Pepe Treasure", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xffb032d971469fd358f11a4192c4e0b852df5190.png", - "aggregators": ["Socket", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0xdee6cdd28da9f51e3a8421395973894a884f3b2d": { - "address": "0xdee6cdd28da9f51e3a8421395973894a884f3b2d", - "symbol": "HOODRAT", - "decimals": 9, - "name": "Hoodrat", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xdee6cdd28da9f51e3a8421395973894a884f3b2d.png", - "aggregators": ["Socket", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0x938f2774e307a71882009a27e0e40e615415fe54": { - "address": "0x938f2774e307a71882009a27e0e40e615415fe54", - "symbol": "OPRV", - "decimals": 18, - "name": "Opriva AI", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x938f2774e307a71882009a27e0e40e615415fe54.png", - "aggregators": ["Socket", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0x8f66cf0f1db84f8ee2a46352409370a69ae4e059": { - "address": "0x8f66cf0f1db84f8ee2a46352409370a69ae4e059", - "symbol": "KHAMOO", - "decimals": 9, - "name": "Khamoo", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x8f66cf0f1db84f8ee2a46352409370a69ae4e059.png", - "aggregators": ["Socket", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0xa110260a67fbbb6226f563844eeaf29e8c018bb7": { - "address": "0xa110260a67fbbb6226f563844eeaf29e8c018bb7", - "symbol": "CHDD", - "decimals": 18, - "name": "CHEDDA", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xa110260a67fbbb6226f563844eeaf29e8c018bb7.png", - "aggregators": ["Socket", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0xd20523b39faf1d6e9023a4d6085f87b7b0de7926": { - "address": "0xd20523b39faf1d6e9023a4d6085f87b7b0de7926", - "symbol": "OATH", - "decimals": 18, - "name": "OATH", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xd20523b39faf1d6e9023a4d6085f87b7b0de7926.png", - "aggregators": ["Rubic", "Squid", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0x1db06f39c14d813d7b1ccb275a93f5b052de1cac": { - "address": "0x1db06f39c14d813d7b1ccb275a93f5b052de1cac", - "symbol": "XAV", - "decimals": 18, - "name": "Xave", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x1db06f39c14d813d7b1ccb275a93f5b052de1cac.png", - "aggregators": ["Rubic", "Squid", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0xb5b29320d2dde5ba5bafa1ebcd270052070483ec": { - "address": "0xb5b29320d2dde5ba5bafa1ebcd270052070483ec", - "symbol": "YIELDETH", - "decimals": 18, - "name": "YieldETH Sommelier", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xb5b29320d2dde5ba5bafa1ebcd270052070483ec.png", - "aggregators": ["Rubic", "Squid", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0xdcb2fa7eab2507613417bb9762efa73093fc6b65": { - "address": "0xdcb2fa7eab2507613417bb9762efa73093fc6b65", - "symbol": "UNV", - "decimals": 18, - "name": "Unvest", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xdcb2fa7eab2507613417bb9762efa73093fc6b65.png", - "aggregators": ["Rubic", "Squid", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0xc88f47067db2e25851317a2fdae73a22c0777c37": { - "address": "0xc88f47067db2e25851317a2fdae73a22c0777c37", - "symbol": "ONEBTC", - "decimals": 9, - "name": "oneBTC", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xc88f47067db2e25851317a2fdae73a22c0777c37.png", - "aggregators": ["Rubic", "Squid", "Rango", "SushiSwap"], - "occurrences": 4 - }, - "0x7c135549504245b5eae64fc0e99fa5ebabb8e35d": { - "address": "0x7c135549504245b5eae64fc0e99fa5ebabb8e35d", - "symbol": "FIDD", - "decimals": 18, - "name": "Fidelity Digital Dollar", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x7c135549504245b5eae64fc0e99fa5ebabb8e35d.png", - "aggregators": ["CoinMarketCap", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x8e4cbbcc33db6c0a18561fde1f6ba35906d4848b": { - "address": "0x8e4cbbcc33db6c0a18561fde1f6ba35906d4848b", - "symbol": "MEZO", - "decimals": 18, - "name": "Mezo", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x8e4cbbcc33db6c0a18561fde1f6ba35906d4848b.png", - "aggregators": ["CoinMarketCap", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x6f59e0461ae5e2799f1fb3847f05a63b16d0dbf8": { - "address": "0x6f59e0461ae5e2799f1fb3847f05a63b16d0dbf8", - "symbol": "ORCA", - "decimals": 18, - "name": "ORCA Token", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x6f59e0461ae5e2799f1fb3847f05a63b16d0dbf8.png", - "aggregators": ["OpenSwap", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x4be40bc9681d0a7c24a99b4c92f85b9053fc2a45": { - "address": "0x4be40bc9681d0a7c24a99b4c92f85b9053fc2a45", - "symbol": "YFIII", - "decimals": 18, - "name": "YFIII", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x4be40bc9681d0a7c24a99b4c92f85b9053fc2a45.png", - "aggregators": ["CoinMarketCap", "Rubic", "Rango"], - "occurrences": 3 - }, - "0xd04785c4d8195e4a54d9dec3a9043872875ae9e2": { - "address": "0xd04785c4d8195e4a54d9dec3a9043872875ae9e2", - "symbol": "ROT", - "decimals": 18, - "name": "ROT", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xd04785c4d8195e4a54d9dec3a9043872875ae9e2.png", - "aggregators": ["CoinMarketCap", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x492798fb464e77cb3cda62b9a2c3c65162db198e": { - "address": "0x492798fb464e77cb3cda62b9a2c3c65162db198e", - "symbol": "AGG", - "decimals": 18, - "name": "AmpliFi DAO", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x492798fb464e77cb3cda62b9a2c3c65162db198e.png", - "aggregators": ["CoinMarketCap", "Rubic", "Sonarwatch"], - "occurrences": 3 - }, - "0x62d3c05b9c3d916fbc111819bbd3cee52906c1ae": { - "address": "0x62d3c05b9c3d916fbc111819bbd3cee52906c1ae", - "symbol": "EGAME", - "decimals": 18, - "name": "Every Game", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x62d3c05b9c3d916fbc111819bbd3cee52906c1ae.png", - "aggregators": ["CoinMarketCap", "Rubic", "Sonarwatch"], - "occurrences": 3 - }, - "0xa6089dbfed19d1bcd43146bbdca2b8f9d9f84a9a": { - "address": "0xa6089dbfed19d1bcd43146bbdca2b8f9d9f84a9a", - "symbol": "UGOLD", - "decimals": 18, - "name": "UGOLD Inc", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xa6089dbfed19d1bcd43146bbdca2b8f9d9f84a9a.png", - "aggregators": ["CoinGecko", "Rubic", "Sonarwatch"], - "occurrences": 3 - }, - "0x87c22615435998d69aca34889d03155b694a94fc": { - "address": "0x87c22615435998d69aca34889d03155b694a94fc", - "symbol": "DLB", - "decimals": 18, - "name": "DiemLibre", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x87c22615435998d69aca34889d03155b694a94fc.png", - "aggregators": ["Metamask", "Rubic", "Rango"], - "occurrences": 3 - }, - "0xb62e24b747eaa41454857cf6011832117df59cb8": { - "address": "0xb62e24b747eaa41454857cf6011832117df59cb8", - "symbol": "EPIKO", - "decimals": 18, - "name": "Epiko", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xb62e24b747eaa41454857cf6011832117df59cb8.png", - "aggregators": ["CoinMarketCap", "Rubic", "Rango"], - "occurrences": 3 - }, - "0xfd957f21bd95e723645c07c48a2d8acb8ffb3794": { - "address": "0xfd957f21bd95e723645c07c48a2d8acb8ffb3794", - "symbol": "ETHM", - "decimals": 18, - "name": "Ethereum Meta", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xfd957f21bd95e723645c07c48a2d8acb8ffb3794.png", - "aggregators": ["CoinGecko", "Socket", "Sonarwatch"], - "occurrences": 3 - }, - "0x46f84dc6564cdd93922f7bfb88b03d35308d87c9": { - "address": "0x46f84dc6564cdd93922f7bfb88b03d35308d87c9", - "symbol": "WVENOM", - "decimals": 9, - "name": "WVENOM", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x46f84dc6564cdd93922f7bfb88b03d35308d87c9.png", - "aggregators": ["CoinMarketCap", "Rubic", "Rango"], - "occurrences": 3 - }, - "0xa3eb7a9e57fca4e40b79e394ed5eb37fed205a24": { - "address": "0xa3eb7a9e57fca4e40b79e394ed5eb37fed205a24", - "symbol": "BFUSD", - "decimals": 6, - "name": "BFUSD", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xa3eb7a9e57fca4e40b79e394ed5eb37fed205a24.png", - "aggregators": ["CoinGecko", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x07041776f5007aca2a54844f50503a18a72a8b68": { - "address": "0x07041776f5007aca2a54844f50503a18a72a8b68", - "symbol": "USAT", - "decimals": 6, - "name": "USAT", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x07041776f5007aca2a54844f50503a18a72a8b68.png", - "aggregators": ["CoinMarketCap", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x0affa06e7fbe5bc9a764c979aa66e8256a631f02": { - "address": "0x0affa06e7fbe5bc9a764c979aa66e8256a631f02", - "symbol": "PLBT", - "decimals": 6, - "name": "Polybius Token", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x0affa06e7fbe5bc9a764c979aa66e8256a631f02.png", - "aggregators": ["CoinMarketCap", "LiFi", "Rubic"], - "occurrences": 3 - }, - "0x51db5ad35c671a87207d88fc11d593ac0c8415bd": { - "address": "0x51db5ad35c671a87207d88fc11d593ac0c8415bd", - "symbol": "MDA", - "decimals": 18, - "name": "Moeda Loyalty Points", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x51db5ad35c671a87207d88fc11d593ac0c8415bd.png", - "aggregators": ["CoinMarketCap", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x7d4b8cce0591c9044a22ee543533b72e976e36c3": { - "address": "0x7d4b8cce0591c9044a22ee543533b72e976e36c3", - "symbol": "CAG", - "decimals": 18, - "name": "Change", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x7d4b8cce0591c9044a22ee543533b72e976e36c3.png", - "aggregators": ["Metamask", "Rubic", "Rango"], - "occurrences": 3 - }, - "0xf34960d9d60be18cc1d5afc1a6f012a723a28811": { - "address": "0xf34960d9d60be18cc1d5afc1a6f012a723a28811", - "symbol": "KCS", - "decimals": 6, - "name": "KuCoin Token", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xf34960d9d60be18cc1d5afc1a6f012a723a28811.png", - "aggregators": ["CoinMarketCap", "Rubic", "Squid"], - "occurrences": 3 - }, - "0x1500205f50bf3fd976466d0662905c9ff254fc9c": { - "address": "0x1500205f50bf3fd976466d0662905c9ff254fc9c", - "symbol": "BBT", - "decimals": 4, - "name": "BitBoost Tokens", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x1500205f50bf3fd976466d0662905c9ff254fc9c.png", - "aggregators": ["CoinMarketCap", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x66186008c1050627f979d464eabb258860563dbe": { - "address": "0x66186008c1050627f979d464eabb258860563dbe", - "symbol": "MDS", - "decimals": 18, - "name": "MediShares Token", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x66186008c1050627f979d464eabb258860563dbe.png", - "aggregators": ["CoinMarketCap", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x6ec8a24cabdc339a06a172f8223ea557055adaa5": { - "address": "0x6ec8a24cabdc339a06a172f8223ea557055adaa5", - "symbol": "GNX", - "decimals": 9, - "name": "Genaro Network", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x6ec8a24cabdc339a06a172f8223ea557055adaa5.png", - "aggregators": ["CoinMarketCap", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x107c4504cd79c5d2696ea0030a8dd4e92601b82e": { - "address": "0x107c4504cd79c5d2696ea0030a8dd4e92601b82e", - "symbol": "BLT", - "decimals": 18, - "name": "Bloom", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x107c4504cd79c5d2696ea0030a8dd4e92601b82e.png", - "aggregators": ["CoinMarketCap", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x1d462414fe14cf489c7a21cac78509f4bf8cd7c0": { - "address": "0x1d462414fe14cf489c7a21cac78509f4bf8cd7c0", - "symbol": "CAN", - "decimals": 6, - "name": "CanYaCoin", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x1d462414fe14cf489c7a21cac78509f4bf8cd7c0.png", - "aggregators": ["Metamask", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x1a7a8bd9106f2b8d977e08582dc7d24c723ab0db": { - "address": "0x1a7a8bd9106f2b8d977e08582dc7d24c723ab0db", - "symbol": "APPC", - "decimals": 18, - "name": "AppCoins", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x1a7a8bd9106f2b8d977e08582dc7d24c723ab0db.png", - "aggregators": ["Metamask", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x1063ce524265d5a3a624f4914acd573dd89ce988": { - "address": "0x1063ce524265d5a3a624f4914acd573dd89ce988", - "symbol": "AIX", - "decimals": 18, - "name": "Aigang", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x1063ce524265d5a3a624f4914acd573dd89ce988.png", - "aggregators": ["CoinMarketCap", "Rubic", "Bancor"], - "occurrences": 3 - }, - "0x1cf3e03f7360288dd01d0a9cfab266cfcdb3e0c1": { - "address": "0x1cf3e03f7360288dd01d0a9cfab266cfcdb3e0c1", - "symbol": "EKO", - "decimals": 18, - "name": "EchoLinkV2", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x1cf3e03f7360288dd01d0a9cfab266cfcdb3e0c1.png", - "aggregators": ["CoinMarketCap", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x89303500a7abfb178b274fd89f2469c264951e1f": { - "address": "0x89303500a7abfb178b274fd89f2469c264951e1f", - "symbol": "REF", - "decimals": 8, - "name": "RefToken", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x89303500a7abfb178b274fd89f2469c264951e1f.png", - "aggregators": ["CoinMarketCap", "Rubic", "Bancor"], - "occurrences": 3 - }, - "0x3136ef851592acf49ca4c825131e364170fa32b3": { - "address": "0x3136ef851592acf49ca4c825131e364170fa32b3", - "symbol": "COFI", - "decimals": 18, - "name": "CoinFi", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x3136ef851592acf49ca4c825131e364170fa32b3.png", - "aggregators": ["CoinMarketCap", "Rubic", "Rango"], - "occurrences": 3 - }, - "0xe8a1df958be379045e2b46a31a98b93a2ecdfded": { - "address": "0xe8a1df958be379045e2b46a31a98b93a2ecdfded", - "symbol": "ESZ", - "decimals": 18, - "name": "ESZCoin", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xe8a1df958be379045e2b46a31a98b93a2ecdfded.png", - "aggregators": ["CoinMarketCap", "Rubic", "Bancor"], - "occurrences": 3 - }, - "0xc7bba5b765581efb2cdd2679db5bea9ee79b201f": { - "address": "0xc7bba5b765581efb2cdd2679db5bea9ee79b201f", - "symbol": "GEM", - "decimals": 18, - "name": "Gems Token", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xc7bba5b765581efb2cdd2679db5bea9ee79b201f.png", - "aggregators": ["CoinMarketCap", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x9a005c9a89bd72a4bd27721e7a09a3c11d2b03c4": { - "address": "0x9a005c9a89bd72a4bd27721e7a09a3c11d2b03c4", - "symbol": "STAC", - "decimals": 18, - "name": "StarterCoin", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x9a005c9a89bd72a4bd27721e7a09a3c11d2b03c4.png", - "aggregators": ["CoinMarketCap", "Rubic", "Bancor"], - "occurrences": 3 - }, - "0xca0e7269600d353f70b14ad118a49575455c0f2f": { - "address": "0xca0e7269600d353f70b14ad118a49575455c0f2f", - "symbol": "AMLT", - "decimals": 18, - "name": "AMLT", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xca0e7269600d353f70b14ad118a49575455c0f2f.png", - "aggregators": ["CoinMarketCap", "Rubic", "Rango"], - "occurrences": 3 - }, - "0xc81978862b6ce566400579a5f8975732d42bd410": { - "address": "0xc81978862b6ce566400579a5f8975732d42bd410", - "symbol": "DVPN", - "decimals": 6, - "name": "Sentinel", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xc81978862b6ce566400579a5f8975732d42bd410.png", - "aggregators": ["CoinMarketCap", "Socket", "Rubic"], - "occurrences": 3 - }, - "0xccbf21ba6ef00802ab06637896b799f7101f54a2": { - "address": "0xccbf21ba6ef00802ab06637896b799f7101f54a2", - "symbol": "BUBO", - "decimals": 18, - "name": "Bubo", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xccbf21ba6ef00802ab06637896b799f7101f54a2.png", - "aggregators": ["CoinMarketCap", "LiFi", "Rubic"], - "occurrences": 3 - }, - "0x763186eb8d4856d536ed4478302971214febc6a9": { - "address": "0x763186eb8d4856d536ed4478302971214febc6a9", - "symbol": "BETR", - "decimals": 18, - "name": "Better Betting", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x763186eb8d4856d536ed4478302971214febc6a9.png", - "aggregators": ["CoinMarketCap", "Rubic", "Bancor"], - "occurrences": 3 - }, - "0x47bc01597798dcd7506dcca36ac4302fc93a8cfb": { - "address": "0x47bc01597798dcd7506dcca36ac4302fc93a8cfb", - "symbol": "CMCT", - "decimals": 8, - "name": "Crowd Machine Compute Token", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x47bc01597798dcd7506dcca36ac4302fc93a8cfb.png", - "aggregators": ["CoinMarketCap", "Rubic", "Bancor"], - "occurrences": 3 - }, - "0x9b4e2b4b13d125238aa0480dd42b4f6fc71b37cc": { - "address": "0x9b4e2b4b13d125238aa0480dd42b4f6fc71b37cc", - "symbol": "MT", - "decimals": 18, - "name": "MyToken", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x9b4e2b4b13d125238aa0480dd42b4f6fc71b37cc.png", - "aggregators": ["CoinMarketCap", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x4cd988afbad37289baaf53c13e98e2bd46aaea8c": { - "address": "0x4cd988afbad37289baaf53c13e98e2bd46aaea8c", - "symbol": "0", - "decimals": 18, - "name": "0", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x4cd988afbad37289baaf53c13e98e2bd46aaea8c.png", - "aggregators": ["CoinMarketCap", "Socket", "Rubic"], - "occurrences": 3 - }, - "0x9d86b1b2554ec410eccffbf111a6994910111340": { - "address": "0x9d86b1b2554ec410eccffbf111a6994910111340", - "symbol": "OPENC", - "decimals": 8, - "name": "OPEN Chain", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x9d86b1b2554ec410eccffbf111a6994910111340.png", - "aggregators": ["CoinMarketCap", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x88d50b466be55222019d71f9e8fae17f5f45fca1": { - "address": "0x88d50b466be55222019d71f9e8fae17f5f45fca1", - "symbol": "CPT", - "decimals": 8, - "name": "Cryptaur", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x88d50b466be55222019d71f9e8fae17f5f45fca1.png", - "aggregators": ["CoinMarketCap", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x76960dccd5a1fe799f7c29be9f19ceb4627aeb2f": { - "address": "0x76960dccd5a1fe799f7c29be9f19ceb4627aeb2f", - "symbol": "RED", - "decimals": 18, - "name": "Red Community Token", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x76960dccd5a1fe799f7c29be9f19ceb4627aeb2f.png", - "aggregators": ["CoinMarketCap", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x84f7c44b6fed1080f647e354d552595be2cc602f": { - "address": "0x84f7c44b6fed1080f647e354d552595be2cc602f", - "symbol": "BBO", - "decimals": 18, - "name": "Bigbom", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x84f7c44b6fed1080f647e354d552595be2cc602f.png", - "aggregators": ["CoinMarketCap", "Rubic", "Bancor"], - "occurrences": 3 - }, - "0x2bba3cf6de6058cc1b4457ce00deb359e2703d7f": { - "address": "0x2bba3cf6de6058cc1b4457ce00deb359e2703d7f", - "symbol": "HSC", - "decimals": 18, - "name": "HashCoin", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x2bba3cf6de6058cc1b4457ce00deb359e2703d7f.png", - "aggregators": ["CoinMarketCap", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x5c64031c62061865e5fd0f53d3cdaef80f72e99d": { - "address": "0x5c64031c62061865e5fd0f53d3cdaef80f72e99d", - "symbol": "GARD", - "decimals": 18, - "name": "HASHGARD", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x5c64031c62061865e5fd0f53d3cdaef80f72e99d.png", - "aggregators": ["CoinMarketCap", "Socket", "Rubic"], - "occurrences": 3 - }, - "0x05aaaa829afa407d83315cded1d45eb16025910c": { - "address": "0x05aaaa829afa407d83315cded1d45eb16025910c", - "symbol": "SPX", - "decimals": 18, - "name": "SP8DE Token", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x05aaaa829afa407d83315cded1d45eb16025910c.png", - "aggregators": ["CoinMarketCap", "Socket", "Rubic"], - "occurrences": 3 - }, - "0x60c24407d01782c2175d32fe7c8921ed732371d1": { - "address": "0x60c24407d01782c2175d32fe7c8921ed732371d1", - "symbol": "LEMO", - "decimals": 18, - "name": "LemoChain", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x60c24407d01782c2175d32fe7c8921ed732371d1.png", - "aggregators": ["CoinMarketCap", "Rubic", "Rango"], - "occurrences": 3 - }, - "0xb5b8f5616fe42d5ceca3e87f3fddbdd8f496d760": { - "address": "0xb5b8f5616fe42d5ceca3e87f3fddbdd8f496d760", - "symbol": "ZPR", - "decimals": 18, - "name": "ZperToken", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xb5b8f5616fe42d5ceca3e87f3fddbdd8f496d760.png", - "aggregators": ["CoinMarketCap", "Socket", "Rubic"], - "occurrences": 3 - }, - "0x4a6058666cf1057eac3cd3a5a614620547559fc9": { - "address": "0x4a6058666cf1057eac3cd3a5a614620547559fc9", - "symbol": "BBK", - "decimals": 18, - "name": "Brickblock", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x4a6058666cf1057eac3cd3a5a614620547559fc9.png", - "aggregators": ["Metamask", "LiFi", "Rubic"], - "occurrences": 3 - }, - "0x9c794f933b4dd8b49031a79b0f924d68bef43992": { - "address": "0x9c794f933b4dd8b49031a79b0f924d68bef43992", - "symbol": "XTRD", - "decimals": 18, - "name": "XTRD", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x9c794f933b4dd8b49031a79b0f924d68bef43992.png", - "aggregators": ["CoinMarketCap", "Rubic", "Bancor"], - "occurrences": 3 - }, - "0x245ef47d4d0505ecf3ac463f4d81f41ade8f1fd1": { - "address": "0x245ef47d4d0505ecf3ac463f4d81f41ade8f1fd1", - "symbol": "NUG", - "decimals": 18, - "name": "Nuggets", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x245ef47d4d0505ecf3ac463f4d81f41ade8f1fd1.png", - "aggregators": ["CoinMarketCap", "Socket", "Rubic"], - "occurrences": 3 - }, - "0x02f2d4a04e6e01ace88bd2cd632875543b2ef577": { - "address": "0x02f2d4a04e6e01ace88bd2cd632875543b2ef577", - "symbol": "PKG", - "decimals": 18, - "name": "PKG Token", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x02f2d4a04e6e01ace88bd2cd632875543b2ef577.png", - "aggregators": ["CoinMarketCap", "Rubic", "Bancor"], - "occurrences": 3 - }, - "0xbb1fa4fdeb3459733bf67ebc6f893003fa976a82": { - "address": "0xbb1fa4fdeb3459733bf67ebc6f893003fa976a82", - "symbol": "PAT", - "decimals": 18, - "name": "Pangea Arbitration Token", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xbb1fa4fdeb3459733bf67ebc6f893003fa976a82.png", - "aggregators": ["CoinMarketCap", "Rubic", "Bancor"], - "occurrences": 3 - }, - "0xff19138b039d938db46bdda0067dc4ba132ec71c": { - "address": "0xff19138b039d938db46bdda0067dc4ba132ec71c", - "symbol": "SNET", - "decimals": 8, - "name": "Snetwork", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xff19138b039d938db46bdda0067dc4ba132ec71c.png", - "aggregators": ["CoinMarketCap", "Rubic", "Rango"], - "occurrences": 3 - }, - "0xca2796f9f61dc7b238aab043971e49c6164df375": { - "address": "0xca2796f9f61dc7b238aab043971e49c6164df375", - "symbol": "YEED", - "decimals": 18, - "name": "YGGDRASH", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xca2796f9f61dc7b238aab043971e49c6164df375.png", - "aggregators": ["CoinMarketCap", "LiFi", "Rubic"], - "occurrences": 3 - }, - "0x37f04733c7e1c762f0ed86533c9052be5822c1fd": { - "address": "0x37f04733c7e1c762f0ed86533c9052be5822c1fd", - "symbol": "ETHM", - "decimals": 18, - "name": "Ethereum Meta", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x37f04733c7e1c762f0ed86533c9052be5822c1fd.png", - "aggregators": ["CoinMarketCap", "Socket", "Rubic"], - "occurrences": 3 - }, - "0x12f649a9e821f90bb143089a6e56846945892ffb": { - "address": "0x12f649a9e821f90bb143089a6e56846945892ffb", - "symbol": "UDOO", - "decimals": 18, - "name": "UDOO", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x12f649a9e821f90bb143089a6e56846945892ffb.png", - "aggregators": ["CoinMarketCap", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x3c6a7ab47b5f058be0e7c7fe1a4b7925b8aca40e": { - "address": "0x3c6a7ab47b5f058be0e7c7fe1a4b7925b8aca40e", - "symbol": "CAJ", - "decimals": 18, - "name": "Cajutel", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x3c6a7ab47b5f058be0e7c7fe1a4b7925b8aca40e.png", - "aggregators": ["CoinMarketCap", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x8d983cb9388eac77af0474fa441c4815500cb7bb": { - "address": "0x8d983cb9388eac77af0474fa441c4815500cb7bb", - "symbol": "ATOM", - "decimals": 6, - "name": "Cosmos", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x8d983cb9388eac77af0474fa441c4815500cb7bb.png", - "aggregators": ["CoinMarketCap", "LiFi", "Rubic"], - "occurrences": 3 - }, - "0x763fa6806e1acf68130d2d0f0df754c93cc546b2": { - "address": "0x763fa6806e1acf68130d2d0f0df754c93cc546b2", - "symbol": "LIT", - "decimals": 18, - "name": "LITION", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x763fa6806e1acf68130d2d0f0df754c93cc546b2.png", - "aggregators": ["CoinMarketCap", "Socket", "Rubic"], - "occurrences": 3 - }, - "0x7865af71cf0b288b4e7f654f4f7851eb46a2b7f8": { - "address": "0x7865af71cf0b288b4e7f654f4f7851eb46a2b7f8", - "symbol": "SNTVT", - "decimals": 18, - "name": "Sentivate", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x7865af71cf0b288b4e7f654f4f7851eb46a2b7f8.png", - "aggregators": ["Metamask", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x8ffe40a3d0f80c0ce6b203d5cdc1a6a86d9acaea": { - "address": "0x8ffe40a3d0f80c0ce6b203d5cdc1a6a86d9acaea", - "symbol": "IGG", - "decimals": 6, - "name": "IG Gold", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x8ffe40a3d0f80c0ce6b203d5cdc1a6a86d9acaea.png", - "aggregators": ["CoinMarketCap", "Socket", "Rubic"], - "occurrences": 3 - }, - "0xd6a55c63865affd67e2fb9f284f87b7a9e5ff3bd": { - "address": "0xd6a55c63865affd67e2fb9f284f87b7a9e5ff3bd", - "symbol": "ESH", - "decimals": 18, - "name": "ESH", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xd6a55c63865affd67e2fb9f284f87b7a9e5ff3bd.png", - "aggregators": ["CoinMarketCap", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x28ea81fac7b1719138cbf61267198155b433e00e": { - "address": "0x28ea81fac7b1719138cbf61267198155b433e00e", - "symbol": "CPC", - "decimals": 8, - "name": "Cashpayz Token", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x28ea81fac7b1719138cbf61267198155b433e00e.png", - "aggregators": ["CoinMarketCap", "LiFi", "Socket"], - "occurrences": 3 - }, - "0x3b7f247f21bf3a07088c2d3423f64233d4b069f7": { - "address": "0x3b7f247f21bf3a07088c2d3423f64233d4b069f7", - "symbol": "DYNMT", - "decimals": 2, - "name": "Dynamite", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x3b7f247f21bf3a07088c2d3423f64233d4b069f7.png", - "aggregators": ["CoinMarketCap", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x07597255910a51509ca469568b048f2597e72504": { - "address": "0x07597255910a51509ca469568b048f2597e72504", - "symbol": "1UP", - "decimals": 18, - "name": "1UP", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x07597255910a51509ca469568b048f2597e72504.png", - "aggregators": ["CoinMarketCap", "Rubic", "Rango"], - "occurrences": 3 - }, - "0xa8262eb913fccea4c3f77fc95b8b4043b384cfbb": { - "address": "0xa8262eb913fccea4c3f77fc95b8b4043b384cfbb", - "symbol": "KGC", - "decimals": 18, - "name": "Krypton Galaxy Coin", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xa8262eb913fccea4c3f77fc95b8b4043b384cfbb.png", - "aggregators": ["CoinMarketCap", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x24b47299e756af0571f512232a3629e0dabb52ed": { - "address": "0x24b47299e756af0571f512232a3629e0dabb52ed", - "symbol": "CVT", - "decimals": 18, - "name": "concertVR-Token", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x24b47299e756af0571f512232a3629e0dabb52ed.png", - "aggregators": ["CoinMarketCap", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x9b6443b0fb9c241a7fdac375595cea13e6b7807a": { - "address": "0x9b6443b0fb9c241a7fdac375595cea13e6b7807a", - "symbol": "RCC", - "decimals": 18, - "name": "Reality Clash Coin", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x9b6443b0fb9c241a7fdac375595cea13e6b7807a.png", - "aggregators": ["CoinMarketCap", "LiFi", "Socket"], - "occurrences": 3 - }, - "0x2822f6d1b2f41f93f33d937bc7d84a8dfa4f4c21": { - "address": "0x2822f6d1b2f41f93f33d937bc7d84a8dfa4f4c21", - "symbol": "QQQ", - "decimals": 18, - "name": "QQQ Token", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x2822f6d1b2f41f93f33d937bc7d84a8dfa4f4c21.png", - "aggregators": ["CoinMarketCap", "LiFi", "Rubic"], - "occurrences": 3 - }, - "0x301c755ba0fca00b1923768fffb3df7f4e63af31": { - "address": "0x301c755ba0fca00b1923768fffb3df7f4e63af31", - "symbol": "GDC", - "decimals": 18, - "name": "GDC", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x301c755ba0fca00b1923768fffb3df7f4e63af31.png", - "aggregators": ["CoinMarketCap", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x7c8155909cd385f120a56ef90728dd50f9ccbe52": { - "address": "0x7c8155909cd385f120a56ef90728dd50f9ccbe52", - "symbol": "NII", - "decimals": 15, - "name": "Nahmii", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x7c8155909cd385f120a56ef90728dd50f9ccbe52.png", - "aggregators": ["CoinMarketCap", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x38a0df9a08d18dc06cd91fc7ec94a0acdf28d994": { - "address": "0x38a0df9a08d18dc06cd91fc7ec94a0acdf28d994", - "symbol": "HTX", - "decimals": 2, - "name": "Huptex", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x38a0df9a08d18dc06cd91fc7ec94a0acdf28d994.png", - "aggregators": ["CoinMarketCap", "Socket", "Rubic"], - "occurrences": 3 - }, - "0xb4a677b0e363c3815d46326954a4e4d2b1ace357": { - "address": "0xb4a677b0e363c3815d46326954a4e4d2b1ace357", - "symbol": "THE", - "decimals": 18, - "name": "THENODE", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xb4a677b0e363c3815d46326954a4e4d2b1ace357.png", - "aggregators": ["CoinMarketCap", "Rubic", "Rango"], - "occurrences": 3 - }, - "0xc538143202f3b11382d8606aae90a96b042a19db": { - "address": "0xc538143202f3b11382d8606aae90a96b042a19db", - "symbol": "CNB", - "decimals": 18, - "name": "Coinsbit Token", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xc538143202f3b11382d8606aae90a96b042a19db.png", - "aggregators": ["CoinMarketCap", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x14cc8dfaf2258e1b8b2869300dba1b734dc0fe43": { - "address": "0x14cc8dfaf2258e1b8b2869300dba1b734dc0fe43", - "symbol": "KTT", - "decimals": 18, - "name": "K-Tune", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x14cc8dfaf2258e1b8b2869300dba1b734dc0fe43.png", - "aggregators": ["CoinMarketCap", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x6226caa1857afbc6dfb6ca66071eb241228031a1": { - "address": "0x6226caa1857afbc6dfb6ca66071eb241228031a1", - "symbol": "LAR", - "decimals": 18, - "name": "LAR", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x6226caa1857afbc6dfb6ca66071eb241228031a1.png", - "aggregators": ["CoinMarketCap", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x5c406d99e04b8494dc253fcc52943ef82bca7d75": { - "address": "0x5c406d99e04b8494dc253fcc52943ef82bca7d75", - "symbol": "CUSD", - "decimals": 6, - "name": "cUSD Currency", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x5c406d99e04b8494dc253fcc52943ef82bca7d75.png", - "aggregators": ["CoinMarketCap", "Rubic", "Bancor"], - "occurrences": 3 - }, - "0x4e12eb8e506ccd1427f6b8f7faa3e88fb698eb28": { - "address": "0x4e12eb8e506ccd1427f6b8f7faa3e88fb698eb28", - "symbol": "JACK", - "decimals": 18, - "name": "Jack Token", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x4e12eb8e506ccd1427f6b8f7faa3e88fb698eb28.png", - "aggregators": ["CoinMarketCap", "Socket", "Rubic"], - "occurrences": 3 - }, - "0xffe510a92434a0df346c5e72a3494b043cf249eb": { - "address": "0xffe510a92434a0df346c5e72a3494b043cf249eb", - "symbol": "LBXC", - "decimals": 18, - "name": "Lux Bio Cell", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xffe510a92434a0df346c5e72a3494b043cf249eb.png", - "aggregators": ["CoinMarketCap", "Rubic", "Rango"], - "occurrences": 3 - }, - "0xbe5b336ef62d1626940363cf34be079e0ab89f20": { - "address": "0xbe5b336ef62d1626940363cf34be079e0ab89f20", - "symbol": "BNC", - "decimals": 18, - "name": "BNC TOKEN", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xbe5b336ef62d1626940363cf34be079e0ab89f20.png", - "aggregators": ["CoinMarketCap", "Rubic", "Bancor"], - "occurrences": 3 - }, - "0xb83cd8d39462b761bb0092437d38b37812dd80a2": { - "address": "0xb83cd8d39462b761bb0092437d38b37812dd80a2", - "symbol": "GRT", - "decimals": 18, - "name": "GoldenRatio", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xb83cd8d39462b761bb0092437d38b37812dd80a2.png", - "aggregators": ["CoinMarketCap", "Socket", "Rubic"], - "occurrences": 3 - }, - "0xf0fac7104aac544e4a7ce1a55adf2b5a25c65bd1": { - "address": "0xf0fac7104aac544e4a7ce1a55adf2b5a25c65bd1", - "symbol": "PAMP", - "decimals": 18, - "name": "PAMP", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xf0fac7104aac544e4a7ce1a55adf2b5a25c65bd1.png", - "aggregators": ["CoinMarketCap", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x4485561db76614ff727f8e0a3ea95690b8b16022": { - "address": "0x4485561db76614ff727f8e0a3ea95690b8b16022", - "symbol": "INVOX", - "decimals": 18, - "name": "Invox Finance Token", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x4485561db76614ff727f8e0a3ea95690b8b16022.png", - "aggregators": ["CoinMarketCap", "Rubic", "Bancor"], - "occurrences": 3 - }, - "0x5c84bc60a796534bfec3439af0e6db616a966335": { - "address": "0x5c84bc60a796534bfec3439af0e6db616a966335", - "symbol": "BONE", - "decimals": 18, - "name": "Bone", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x5c84bc60a796534bfec3439af0e6db616a966335.png", - "aggregators": ["CoinMarketCap", "Socket", "Rubic"], - "occurrences": 3 - }, - "0x2bf91c18cd4ae9c2f2858ef9fe518180f7b5096d": { - "address": "0x2bf91c18cd4ae9c2f2858ef9fe518180f7b5096d", - "symbol": "KIWI", - "decimals": 8, - "name": "KIWI Token", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x2bf91c18cd4ae9c2f2858ef9fe518180f7b5096d.png", - "aggregators": ["CoinMarketCap", "Socket", "Rubic"], - "occurrences": 3 - }, - "0x456ae45c0ce901e2e7c99c0718031cec0a7a59ff": { - "address": "0x456ae45c0ce901e2e7c99c0718031cec0a7a59ff", - "symbol": "VSN", - "decimals": 18, - "name": "VSN", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x456ae45c0ce901e2e7c99c0718031cec0a7a59ff.png", - "aggregators": ["CoinMarketCap", "Rubic", "Rango"], - "occurrences": 3 - }, - "0xbecaea7aa3629d4b7ddccf3a973bef09ff34d4b6": { - "address": "0xbecaea7aa3629d4b7ddccf3a973bef09ff34d4b6", - "symbol": "REALTOKEN-15634-LIBERAL-ST-DETROIT-MI", - "decimals": 18, - "name": "RealToken 15634 Liberal Street Detroit MI", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xbecaea7aa3629d4b7ddccf3a973bef09ff34d4b6.png", - "aggregators": ["CoinMarketCap", "Socket", "Rubic"], - "occurrences": 3 - }, - "0x22cabb38295eaeccfede4e99af508052e3b74ca0": { - "address": "0x22cabb38295eaeccfede4e99af508052e3b74ca0", - "symbol": "REALTOKEN-18900-MANSFIELD-ST-DETROIT-MI", - "decimals": 18, - "name": "RealToken 18900 Mansfield Street Detroit MI", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x22cabb38295eaeccfede4e99af508052e3b74ca0.png", - "aggregators": ["CoinMarketCap", "Socket", "Rubic"], - "occurrences": 3 - }, - "0x5807ca447851c98569c567963b25b1c83d41bebc": { - "address": "0x5807ca447851c98569c567963b25b1c83d41bebc", - "symbol": "REALTOKEN-10024-10028-APPOLINE-ST-DETROIT-MI", - "decimals": 18, - "name": "RealToken 10024-10028 Appoline Street Detroit MI", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x5807ca447851c98569c567963b25b1c83d41bebc.png", - "aggregators": ["CoinMarketCap", "Socket", "Rubic"], - "occurrences": 3 - }, - "0x22c8ecf727c23422f47093b562ec53c139805301": { - "address": "0x22c8ecf727c23422f47093b562ec53c139805301", - "symbol": "REALTOKEN-16200-FULLERTON-AVE-DETROIT-MI", - "decimals": 18, - "name": "RealToken 16200 Fullerton Ave Detroit MI", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x22c8ecf727c23422f47093b562ec53c139805301.png", - "aggregators": ["CoinMarketCap", "Socket", "Rubic"], - "occurrences": 3 - }, - "0xfc89f1b932079b462ef9c8757de5a28e387b847b": { - "address": "0xfc89f1b932079b462ef9c8757de5a28e387b847b", - "symbol": "REALTOKEN-18276-APPOLINE-ST-DETROIT-MI", - "decimals": 18, - "name": "RealToken 18276 Appoline Street Detroit MI", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xfc89f1b932079b462ef9c8757de5a28e387b847b.png", - "aggregators": ["CoinMarketCap", "Socket", "Rubic"], - "occurrences": 3 - }, - "0x395c47a421c254ae42253764a7f56e0ee0cddac5": { - "address": "0x395c47a421c254ae42253764a7f56e0ee0cddac5", - "symbol": "REALTOKEN-20200-LESURE-ST-DETROIT-MI", - "decimals": 18, - "name": "RealToken 20200 Lesure Street Detroit MI", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x395c47a421c254ae42253764a7f56e0ee0cddac5.png", - "aggregators": ["CoinMarketCap", "Socket", "Rubic"], - "occurrences": 3 - }, - "0x74d2cb65b1158300c3e6bea149d68509c7b2425d": { - "address": "0x74d2cb65b1158300c3e6bea149d68509c7b2425d", - "symbol": "REALTOKEN-25097-ANDOVER-DR-DEARBORN-MI", - "decimals": 18, - "name": "RealToken 25097 Andover Drive Detroit MI", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x74d2cb65b1158300c3e6bea149d68509c7b2425d.png", - "aggregators": ["CoinMarketCap", "Socket", "Rubic"], - "occurrences": 3 - }, - "0x43688910273f199b8ae2ca018c13918fb3d37b58": { - "address": "0x43688910273f199b8ae2ca018c13918fb3d37b58", - "symbol": "REALTOKEN-5942-AUDUBON-RD-DETROIT-MI", - "decimals": 18, - "name": "RealToken 5942 Audubon Road Detroit MI", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x43688910273f199b8ae2ca018c13918fb3d37b58.png", - "aggregators": ["CoinMarketCap", "Socket", "Rubic"], - "occurrences": 3 - }, - "0x6fd016ccc4611f7bab1dd3267334cb0216ef47f9": { - "address": "0x6fd016ccc4611f7bab1dd3267334cb0216ef47f9", - "symbol": "REALTOKEN-8342-SCHAEFER-HWY-DETROIT-MI", - "decimals": 18, - "name": "RealToken 8342 Schaefer Hwy Detroit MI", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x6fd016ccc4611f7bab1dd3267334cb0216ef47f9.png", - "aggregators": ["CoinMarketCap", "Socket", "Rubic"], - "occurrences": 3 - }, - "0xed42cedcadbfbcaa3e6f411b09567c2c0b5ad28f": { - "address": "0xed42cedcadbfbcaa3e6f411b09567c2c0b5ad28f", - "symbol": "REALTOKEN-9336-PATTON-ST-DETROIT-MI", - "decimals": 18, - "name": "RealToken 9336 Patton Street Detroit MI", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xed42cedcadbfbcaa3e6f411b09567c2c0b5ad28f.png", - "aggregators": ["CoinMarketCap", "Socket", "Rubic"], - "occurrences": 3 - }, - "0x19f4a2f8e21915376f1429c26a3a9b9b1db5ff5a": { - "address": "0x19f4a2f8e21915376f1429c26a3a9b9b1db5ff5a", - "symbol": "CHADLINK", - "decimals": 18, - "name": "Chad Link Set", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x19f4a2f8e21915376f1429c26a3a9b9b1db5ff5a.png", - "aggregators": ["CoinMarketCap", "LiFi", "Rubic"], - "occurrences": 3 - }, - "0x09e4bdfb273245063ef5e800d891eff7d04f9b83": { - "address": "0x09e4bdfb273245063ef5e800d891eff7d04f9b83", - "symbol": "ETHPA", - "decimals": 18, - "name": "ETH Price Action Candlestick Set", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x09e4bdfb273245063ef5e800d891eff7d04f9b83.png", - "aggregators": ["CoinMarketCap", "LiFi", "Rubic"], - "occurrences": 3 - }, - "0xd32641191578ea9b208125ddd4ec5e7b84fcab4c": { - "address": "0xd32641191578ea9b208125ddd4ec5e7b84fcab4c", - "symbol": "TMED", - "decimals": 18, - "name": "MDsquare", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xd32641191578ea9b208125ddd4ec5e7b84fcab4c.png", - "aggregators": ["CoinMarketCap", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x3c6ff50c9ec362efa359317009428d52115fe643": { - "address": "0x3c6ff50c9ec362efa359317009428d52115fe643", - "symbol": "PERX", - "decimals": 18, - "name": "PERX", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x3c6ff50c9ec362efa359317009428d52115fe643.png", - "aggregators": ["CoinMarketCap", "Rubic", "Rango"], - "occurrences": 3 - }, - "0xcc0014ccb39f6e86b1be0f17859a783b6722722f": { - "address": "0xcc0014ccb39f6e86b1be0f17859a783b6722722f", - "symbol": "SHO", - "decimals": 18, - "name": "Showcase Token", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xcc0014ccb39f6e86b1be0f17859a783b6722722f.png", - "aggregators": ["CoinMarketCap", "Socket", "Rubic"], - "occurrences": 3 - }, - "0x00d1793d7c3aae506257ba985b34c76aaf642557": { - "address": "0x00d1793d7c3aae506257ba985b34c76aaf642557", - "symbol": "TACO", - "decimals": 18, - "name": "Tacos", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x00d1793d7c3aae506257ba985b34c76aaf642557.png", - "aggregators": ["CoinMarketCap", "LiFi", "Rubic"], - "occurrences": 3 - }, - "0x54c9ea2e9c9e8ed865db4a4ce6711c2a0d5063ba": { - "address": "0x54c9ea2e9c9e8ed865db4a4ce6711c2a0d5063ba", - "symbol": "BART", - "decimals": 18, - "name": "BarterTrade", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x54c9ea2e9c9e8ed865db4a4ce6711c2a0d5063ba.png", - "aggregators": ["CoinMarketCap", "TrustWallet", "Rubic"], - "occurrences": 3 - }, - "0x6251e725cd45fb1af99354035a414a2c0890b929": { - "address": "0x6251e725cd45fb1af99354035a414a2c0890b929", - "symbol": "MXT", - "decimals": 18, - "name": "MXT", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x6251e725cd45fb1af99354035a414a2c0890b929.png", - "aggregators": ["CoinMarketCap", "Rubic", "Rango"], - "occurrences": 3 - }, - "0xb8e103b60a33597136ea9511f46b6dbeb643a3a5": { - "address": "0xb8e103b60a33597136ea9511f46b6dbeb643a3a5", - "symbol": "SBTC", - "decimals": 18, - "name": "Siambitcoin", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xb8e103b60a33597136ea9511f46b6dbeb643a3a5.png", - "aggregators": ["CoinMarketCap", "Socket", "Rubic"], - "occurrences": 3 - }, - "0x9b9087756eca997c5d595c840263001c9a26646d": { - "address": "0x9b9087756eca997c5d595c840263001c9a26646d", - "symbol": "DOGEFI", - "decimals": 18, - "name": "DOGEFI", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x9b9087756eca997c5d595c840263001c9a26646d.png", - "aggregators": ["CoinMarketCap", "LiFi", "Rubic"], - "occurrences": 3 - }, - "0xa7a5c1058194af8f00c187adb7fcc0c95f1c6c2d": { - "address": "0xa7a5c1058194af8f00c187adb7fcc0c95f1c6c2d", - "symbol": "SPIZ", - "decimals": 18, - "name": "SPACE-iZ", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xa7a5c1058194af8f00c187adb7fcc0c95f1c6c2d.png", - "aggregators": ["CoinMarketCap", "Rubic", "Rango"], - "occurrences": 3 - }, - "0xaba8cac6866b83ae4eec97dd07ed254282f6ad8a": { - "address": "0xaba8cac6866b83ae4eec97dd07ed254282f6ad8a", - "symbol": "YAMV2", - "decimals": 24, - "name": "YAMv2", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xaba8cac6866b83ae4eec97dd07ed254282f6ad8a.png", - "aggregators": ["CoinMarketCap", "LiFi", "Rubic"], - "occurrences": 3 - }, - "0x6bff2fe249601ed0db3a87424a2e923118bb0312": { - "address": "0x6bff2fe249601ed0db3a87424a2e923118bb0312", - "symbol": "FYZ", - "decimals": 18, - "name": "Fyooz", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x6bff2fe249601ed0db3a87424a2e923118bb0312.png", - "aggregators": ["CoinMarketCap", "TrustWallet", "Rubic"], - "occurrences": 3 - }, - "0x9903a4cd589da8e434f264deafc406836418578e": { - "address": "0x9903a4cd589da8e434f264deafc406836418578e", - "symbol": "FIRST", - "decimals": 4, - "name": "Harrison First", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x9903a4cd589da8e434f264deafc406836418578e.png", - "aggregators": ["CoinMarketCap", "LiFi", "Rubic"], - "occurrences": 3 - }, - "0xd379700999f4805ce80aa32db46a94df64561108": { - "address": "0xd379700999f4805ce80aa32db46a94df64561108", - "symbol": "DETS", - "decimals": 18, - "name": "Dextrust", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xd379700999f4805ce80aa32db46a94df64561108.png", - "aggregators": ["CoinMarketCap", "TrustWallet", "Rubic"], - "occurrences": 3 - }, - "0x428dc22668e6f3468273634067e5545ed5417a3e": { - "address": "0x428dc22668e6f3468273634067e5545ed5417a3e", - "symbol": "MQL", - "decimals": 18, - "name": "MiraQle", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x428dc22668e6f3468273634067e5545ed5417a3e.png", - "aggregators": ["CoinMarketCap", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x3aef8e803bd9be47e69b9f36487748d30d940b96": { - "address": "0x3aef8e803bd9be47e69b9f36487748d30d940b96", - "symbol": "VESTA", - "decimals": 18, - "name": "vesta", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x3aef8e803bd9be47e69b9f36487748d30d940b96.png", - "aggregators": ["CoinMarketCap", "LiFi", "Rubic"], - "occurrences": 3 - }, - "0x5580ab97f226c324c671746a1787524aef42e415": { - "address": "0x5580ab97f226c324c671746a1787524aef42e415", - "symbol": "JUL", - "decimals": 18, - "name": "JUL", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x5580ab97f226c324c671746a1787524aef42e415.png", - "aggregators": ["CoinMarketCap", "LiFi", "Rubic"], - "occurrences": 3 - }, - "0x6e36556b3ee5aa28def2a8ec3dae30ec2b208739": { - "address": "0x6e36556b3ee5aa28def2a8ec3dae30ec2b208739", - "symbol": "BUILD", - "decimals": 18, - "name": "BUILD Finance", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x6e36556b3ee5aa28def2a8ec3dae30ec2b208739.png", - "aggregators": ["CoinMarketCap", "Socket", "Rubic"], - "occurrences": 3 - }, - "0x90f62b96a62801488b151ff3c65eac5fae21a962": { - "address": "0x90f62b96a62801488b151ff3c65eac5fae21a962", - "symbol": "GEM", - "decimals": 18, - "name": "GemToken", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x90f62b96a62801488b151ff3c65eac5fae21a962.png", - "aggregators": ["CoinMarketCap", "Socket", "Rubic"], - "occurrences": 3 - }, - "0x174897edd3ce414084a009d22db31c7b7826400d": { - "address": "0x174897edd3ce414084a009d22db31c7b7826400d", - "symbol": "JOON", - "decimals": 4, - "name": "JOON", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x174897edd3ce414084a009d22db31c7b7826400d.png", - "aggregators": ["CoinMarketCap", "LiFi", "Rubic"], - "occurrences": 3 - }, - "0x2216e873ea4282ebef7a02ac5aea220be6391a7c": { - "address": "0x2216e873ea4282ebef7a02ac5aea220be6391a7c", - "symbol": "SMOL", - "decimals": 18, - "name": "smol", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x2216e873ea4282ebef7a02ac5aea220be6391a7c.png", - "aggregators": ["CoinMarketCap", "LiFi", "Rubic"], - "occurrences": 3 - }, - "0xeaccb6e0f24d66cf4aa6cbda33971b9231d332a1": { - "address": "0xeaccb6e0f24d66cf4aa6cbda33971b9231d332a1", - "symbol": "PGT", - "decimals": 18, - "name": "Polyient Games Governance Token", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xeaccb6e0f24d66cf4aa6cbda33971b9231d332a1.png", - "aggregators": ["CoinMarketCap", "LiFi", "Rubic"], - "occurrences": 3 - }, - "0x1a23a6bfbadb59fa563008c0fb7cf96dfcf34ea1": { - "address": "0x1a23a6bfbadb59fa563008c0fb7cf96dfcf34ea1", - "symbol": "COFI", - "decimals": 18, - "name": "CoFi Token", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x1a23a6bfbadb59fa563008c0fb7cf96dfcf34ea1.png", - "aggregators": ["CoinMarketCap", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x31735f0292d42801dce3b0f83b0d9a09bff75b07": { - "address": "0x31735f0292d42801dce3b0f83b0d9a09bff75b07", - "symbol": "WEFI", - "decimals": 18, - "name": "Wolfage Finance Governance", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x31735f0292d42801dce3b0f83b0d9a09bff75b07.png", - "aggregators": ["CoinMarketCap", "Socket", "Rubic"], - "occurrences": 3 - }, - "0x260e63d91fccc499606bae3fe945c4ed1cf56a56": { - "address": "0x260e63d91fccc499606bae3fe945c4ed1cf56a56", - "symbol": "MOONS", - "decimals": 18, - "name": "MoonTools.io", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x260e63d91fccc499606bae3fe945c4ed1cf56a56.png", - "aggregators": ["CoinMarketCap", "LiFi", "Rubic"], - "occurrences": 3 - }, - "0x71ba91dc68c6a206db0a6a92b4b1de3f9271432d": { - "address": "0x71ba91dc68c6a206db0a6a92b4b1de3f9271432d", - "symbol": "WMBX", - "decimals": 18, - "name": "wMBX Token", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x71ba91dc68c6a206db0a6a92b4b1de3f9271432d.png", - "aggregators": ["CoinMarketCap", "Socket", "Rubic"], - "occurrences": 3 - }, - "0x81b1bfd6cb9ad42db395c2a27f73d4dcf5777e2d": { - "address": "0x81b1bfd6cb9ad42db395c2a27f73d4dcf5777e2d", - "symbol": "RARE", - "decimals": 4, - "name": "Rare", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x81b1bfd6cb9ad42db395c2a27f73d4dcf5777e2d.png", - "aggregators": ["CoinMarketCap", "Socket", "Rubic"], - "occurrences": 3 - }, - "0x84679bc467dc6c2c40ab04538813aff3796351f1": { - "address": "0x84679bc467dc6c2c40ab04538813aff3796351f1", - "symbol": "CHONK", - "decimals": 18, - "name": "CHONK", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x84679bc467dc6c2c40ab04538813aff3796351f1.png", - "aggregators": ["CoinMarketCap", "LiFi", "Rubic"], - "occurrences": 3 - }, - "0x39fa206c1648944f92e8f7b626e1cbdf78d7e9db": { - "address": "0x39fa206c1648944f92e8f7b626e1cbdf78d7e9db", - "symbol": "DXY", - "decimals": 18, - "name": "DXY.FINANCE", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x39fa206c1648944f92e8f7b626e1cbdf78d7e9db.png", - "aggregators": ["CoinMarketCap", "Socket", "Rubic"], - "occurrences": 3 - }, - "0x837010619aeb2ae24141605afc8f66577f6fb2e7": { - "address": "0x837010619aeb2ae24141605afc8f66577f6fb2e7", - "symbol": "ZHEGIC", - "decimals": 18, - "name": "zHEGIC", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x837010619aeb2ae24141605afc8f66577f6fb2e7.png", - "aggregators": ["CoinMarketCap", "LiFi", "Rubic"], - "occurrences": 3 - }, - "0xa8b0f154a688c22142e361707df64277e0a0be66": { - "address": "0xa8b0f154a688c22142e361707df64277e0a0be66", - "symbol": "RAK", - "decimals": 18, - "name": "Rake Finance", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xa8b0f154a688c22142e361707df64277e0a0be66.png", - "aggregators": ["CoinMarketCap", "Rubic", "Rango"], - "occurrences": 3 - }, - "0xdbdd6f355a37b94e6c7d32fef548e98a280b8df5": { - "address": "0xdbdd6f355a37b94e6c7d32fef548e98a280b8df5", - "symbol": "UWL", - "decimals": 18, - "name": "UniWhales.io", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xdbdd6f355a37b94e6c7d32fef548e98a280b8df5.png", - "aggregators": ["CoinMarketCap", "LiFi", "Rubic"], - "occurrences": 3 - }, - "0x8064d9ae6cdf087b1bcd5bdf3531bd5d8c537a68": { - "address": "0x8064d9ae6cdf087b1bcd5bdf3531bd5d8c537a68", - "symbol": "OBTC", - "decimals": 18, - "name": "BoringDAO BTC", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x8064d9ae6cdf087b1bcd5bdf3531bd5d8c537a68.png", - "aggregators": ["CoinMarketCap", "LiFi", "Rubic"], - "occurrences": 3 - }, - "0xa456b515303b2ce344e9d2601f91270f8c2fea5e": { - "address": "0xa456b515303b2ce344e9d2601f91270f8c2fea5e", - "symbol": "CORN", - "decimals": 18, - "name": "Cornichon", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xa456b515303b2ce344e9d2601f91270f8c2fea5e.png", - "aggregators": ["CoinMarketCap", "Socket", "Rubic"], - "occurrences": 3 - }, - "0xa0afaa285ce85974c3c881256cb7f225e3a1178a": { - "address": "0xa0afaa285ce85974c3c881256cb7f225e3a1178a", - "symbol": "WCRES", - "decimals": 18, - "name": "Wrapped CrescoFin", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xa0afaa285ce85974c3c881256cb7f225e3a1178a.png", - "aggregators": ["CoinMarketCap", "TrustWallet", "Rubic"], - "occurrences": 3 - }, - "0xd8e3fb3b08eba982f2754988d70d57edc0055ae6": { - "address": "0xd8e3fb3b08eba982f2754988d70d57edc0055ae6", - "symbol": "ZORA", - "decimals": 9, - "name": "Zoracles", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xd8e3fb3b08eba982f2754988d70d57edc0055ae6.png", - "aggregators": ["Metamask", "LiFi", "Rubic"], - "occurrences": 3 - }, - "0x6589fe1271a0f29346796c6baf0cdf619e25e58e": { - "address": "0x6589fe1271a0f29346796c6baf0cdf619e25e58e", - "symbol": "GRAIN", - "decimals": 18, - "name": "GRAIN Token", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x6589fe1271a0f29346796c6baf0cdf619e25e58e.png", - "aggregators": ["CoinMarketCap", "Socket", "Rubic"], - "occurrences": 3 - }, - "0xd5147bc8e386d91cc5dbe72099dac6c9b99276f5": { - "address": "0xd5147bc8e386d91cc5dbe72099dac6c9b99276f5", - "symbol": "RENFIL", - "decimals": 18, - "name": "renFIL", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xd5147bc8e386d91cc5dbe72099dac6c9b99276f5.png", - "aggregators": ["CoinMarketCap", "LiFi", "Rubic"], - "occurrences": 3 - }, - "0x6faa826af0568d1866fca570da79b318ef114dab": { - "address": "0x6faa826af0568d1866fca570da79b318ef114dab", - "symbol": "B21", - "decimals": 18, - "name": "B21 Token", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x6faa826af0568d1866fca570da79b318ef114dab.png", - "aggregators": ["CoinMarketCap", "LiFi", "Rubic"], - "occurrences": 3 - }, - "0xd7f5cabdf696d7d1bf384d7688926a4bdb092c67": { - "address": "0xd7f5cabdf696d7d1bf384d7688926a4bdb092c67", - "symbol": "DRC", - "decimals": 18, - "name": "Dream Car", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xd7f5cabdf696d7d1bf384d7688926a4bdb092c67.png", - "aggregators": ["CoinMarketCap", "Socket", "Rubic"], - "occurrences": 3 - }, - "0x0c93b616933b0cd03b201b29cd8a22681dd9e0d9": { - "address": "0x0c93b616933b0cd03b201b29cd8a22681dd9e0d9", - "symbol": "HGOLD", - "decimals": 8, - "name": "HollyGold", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x0c93b616933b0cd03b201b29cd8a22681dd9e0d9.png", - "aggregators": ["CoinMarketCap", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x7bce667ef12023dc5f8577d015a2f09d99a5ef58": { - "address": "0x7bce667ef12023dc5f8577d015a2f09d99a5ef58", - "symbol": "BDT", - "decimals": 18, - "name": "Block Duelers", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x7bce667ef12023dc5f8577d015a2f09d99a5ef58.png", - "aggregators": ["CoinMarketCap", "Socket", "Rubic"], - "occurrences": 3 - }, - "0x3c03b4ec9477809072ff9cc9292c9b25d4a8e6c6": { - "address": "0x3c03b4ec9477809072ff9cc9292c9b25d4a8e6c6", - "symbol": "CVR", - "decimals": 18, - "name": "CoverCompared", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x3c03b4ec9477809072ff9cc9292c9b25d4a8e6c6.png", - "aggregators": ["CoinMarketCap", "Rubic", "Rango"], - "occurrences": 3 - }, - "0xdfe66b14d37c77f4e9b180ceb433d1b164f0281d": { - "address": "0xdfe66b14d37c77f4e9b180ceb433d1b164f0281d", - "symbol": "STETH", - "decimals": 18, - "name": "stakedETH", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xdfe66b14d37c77f4e9b180ceb433d1b164f0281d.png", - "aggregators": ["CoinMarketCap", "LiFi", "Rubic"], - "occurrences": 3 - }, - "0x672ef7e4fe230b5ca1466c5fdd40588d30fdf90a": { - "address": "0x672ef7e4fe230b5ca1466c5fdd40588d30fdf90a", - "symbol": "WOWS", - "decimals": 18, - "name": "Wolves Of Wall Street", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x672ef7e4fe230b5ca1466c5fdd40588d30fdf90a.png", - "aggregators": ["CoinMarketCap", "LiFi", "Rubic"], - "occurrences": 3 - }, - "0x0020d80229877b495d2bf3269a4c13f6f1e1b9d3": { - "address": "0x0020d80229877b495d2bf3269a4c13f6f1e1b9d3", - "symbol": "DEXM", - "decimals": 18, - "name": "Dexmex", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x0020d80229877b495d2bf3269a4c13f6f1e1b9d3.png", - "aggregators": ["CoinMarketCap", "LiFi", "Rubic"], - "occurrences": 3 - }, - "0xf136d7b0b7ae5b86d21e7b78dfa95375a7360f19": { - "address": "0xf136d7b0b7ae5b86d21e7b78dfa95375a7360f19", - "symbol": "TOSHI", - "decimals": 18, - "name": "Toshi Token", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xf136d7b0b7ae5b86d21e7b78dfa95375a7360f19.png", - "aggregators": ["CoinMarketCap", "LiFi", "Rubic"], - "occurrences": 3 - }, - "0x36b679bd64ed73dbfd88909cdcb892cb66bd4cbb": { - "address": "0x36b679bd64ed73dbfd88909cdcb892cb66bd4cbb", - "symbol": "XMARK", - "decimals": 9, - "name": "Standard", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x36b679bd64ed73dbfd88909cdcb892cb66bd4cbb.png", - "aggregators": ["CoinMarketCap", "LiFi", "Rubic"], - "occurrences": 3 - }, - "0xee1cea7665ba7aa97e982edeaecb26b59a04d035": { - "address": "0xee1cea7665ba7aa97e982edeaecb26b59a04d035", - "symbol": "ORAO", - "decimals": 18, - "name": "ORAO Network", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xee1cea7665ba7aa97e982edeaecb26b59a04d035.png", - "aggregators": ["CoinMarketCap", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x0ace32f6e87ac1457a5385f8eb0208f37263b415": { - "address": "0x0ace32f6e87ac1457a5385f8eb0208f37263b415", - "symbol": "HBT", - "decimals": 10, - "name": "Habitat Token", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x0ace32f6e87ac1457a5385f8eb0208f37263b415.png", - "aggregators": ["CoinMarketCap", "Socket", "Rubic"], - "occurrences": 3 - }, - "0xdcfe18bc46f5a0cd0d3af0c2155d2bcb5ade2fc5": { - "address": "0xdcfe18bc46f5a0cd0d3af0c2155d2bcb5ade2fc5", - "symbol": "HUE", - "decimals": 4, - "name": "Hue", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xdcfe18bc46f5a0cd0d3af0c2155d2bcb5ade2fc5.png", - "aggregators": ["CoinMarketCap", "LiFi", "Rubic"], - "occurrences": 3 - }, - "0xe6f1966d04cfcb9cd1b1dc4e8256d8b501b11cba": { - "address": "0xe6f1966d04cfcb9cd1b1dc4e8256d8b501b11cba", - "symbol": "SAFEEARTH", - "decimals": 9, - "name": "SafeEarth", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xe6f1966d04cfcb9cd1b1dc4e8256d8b501b11cba.png", - "aggregators": ["CoinMarketCap", "Socket", "Rubic"], - "occurrences": 3 - }, - "0xa1c7d450130bb77c6a23ddfaecbc4a060215384b": { - "address": "0xa1c7d450130bb77c6a23ddfaecbc4a060215384b", - "symbol": "XRGE", - "decimals": 18, - "name": "RougeCoin", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xa1c7d450130bb77c6a23ddfaecbc4a060215384b.png", - "aggregators": ["CoinMarketCap", "Socket", "Rubic"], - "occurrences": 3 - }, - "0x84ba4aecfde39d69686a841bab434c32d179a169": { - "address": "0x84ba4aecfde39d69686a841bab434c32d179a169", - "symbol": "MTHD", - "decimals": 18, - "name": "Method", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x84ba4aecfde39d69686a841bab434c32d179a169.png", - "aggregators": ["CoinMarketCap", "LiFi", "Rubic"], - "occurrences": 3 - }, - "0x2c31b10ca416b82cec4c5e93c615ca851213d48d": { - "address": "0x2c31b10ca416b82cec4c5e93c615ca851213d48d", - "symbol": "FORCE", - "decimals": 18, - "name": "Force DAO", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x2c31b10ca416b82cec4c5e93c615ca851213d48d.png", - "aggregators": ["CoinMarketCap", "Socket", "Rubic"], - "occurrences": 3 - }, - "0xbfd815347d024f449886c171f78fa5b8e6790811": { - "address": "0xbfd815347d024f449886c171f78fa5b8e6790811", - "symbol": "AAPX", - "decimals": 18, - "name": "AMPnet APX Token", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xbfd815347d024f449886c171f78fa5b8e6790811.png", - "aggregators": ["CoinMarketCap", "LiFi", "Rubic"], - "occurrences": 3 - }, - "0x17ef75aa22dd5f6c2763b8304ab24f40ee54d48a": { - "address": "0x17ef75aa22dd5f6c2763b8304ab24f40ee54d48a", - "symbol": "RVP", - "decimals": 18, - "name": "RevolutionPopuli ERC20 Token", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x17ef75aa22dd5f6c2763b8304ab24f40ee54d48a.png", - "aggregators": ["CoinMarketCap", "LiFi", "Rubic"], - "occurrences": 3 - }, - "0x28a06c02287e657ec3f8e151a13c36a1d43814b0": { - "address": "0x28a06c02287e657ec3f8e151a13c36a1d43814b0", - "symbol": "BAG", - "decimals": 18, - "name": "BondAppetit Governance", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x28a06c02287e657ec3f8e151a13c36a1d43814b0.png", - "aggregators": ["CoinMarketCap", "Socket", "Rubic"], - "occurrences": 3 - }, - "0x8f12dfc7981de79a8a34070a732471f2d335eece": { - "address": "0x8f12dfc7981de79a8a34070a732471f2d335eece", - "symbol": "CE", - "decimals": 18, - "name": "Crypto Excellence", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x8f12dfc7981de79a8a34070a732471f2d335eece.png", - "aggregators": ["CoinMarketCap", "LiFi", "Rubic"], - "occurrences": 3 - }, - "0x7d4b1d793239707445305d8d2456d2c735f6b25b": { - "address": "0x7d4b1d793239707445305d8d2456d2c735f6b25b", - "symbol": "CBSN", - "decimals": 18, - "name": "BSNcommunitynet", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x7d4b1d793239707445305d8d2456d2c735f6b25b.png", - "aggregators": ["CoinMarketCap", "LiFi", "Rubic"], - "occurrences": 3 - }, - "0x7e6c38d007740931e4b419bf15a68c79a0fb0c66": { - "address": "0x7e6c38d007740931e4b419bf15a68c79a0fb0c66", - "symbol": "UDOKI", - "decimals": 18, - "name": "Doki Doki Official Collection", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x7e6c38d007740931e4b419bf15a68c79a0fb0c66.png", - "aggregators": ["CoinMarketCap", "Socket", "Rubic"], - "occurrences": 3 - }, - "0x65e3c4a750a2e7cc7cce86d01587bbcbbe99042e": { - "address": "0x65e3c4a750a2e7cc7cce86d01587bbcbbe99042e", - "symbol": "OPU", - "decimals": 18, - "name": "Opu Coin", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x65e3c4a750a2e7cc7cce86d01587bbcbbe99042e.png", - "aggregators": ["CoinMarketCap", "LiFi", "Socket"], - "occurrences": 3 - }, - "0xed0889f7e1c7c7267407222be277e1f1ef4d4892": { - "address": "0xed0889f7e1c7c7267407222be277e1f1ef4d4892", - "symbol": "MEL", - "decimals": 18, - "name": "Melalie", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xed0889f7e1c7c7267407222be277e1f1ef4d4892.png", - "aggregators": ["CoinMarketCap", "Socket", "Rubic"], - "occurrences": 3 - }, - "0xd2adc1c84443ad06f0017adca346bd9b6fc52cab": { - "address": "0xd2adc1c84443ad06f0017adca346bd9b6fc52cab", - "symbol": "DFND", - "decimals": 18, - "name": "dFund", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xd2adc1c84443ad06f0017adca346bd9b6fc52cab.png", - "aggregators": ["CoinMarketCap", "Rubic", "Sonarwatch"], - "occurrences": 3 - }, - "0xc8ff6772f605a139c40b32d5d87d54994c705c6b": { - "address": "0xc8ff6772f605a139c40b32d5d87d54994c705c6b", - "symbol": "LION", - "decimals": 18, - "name": "Lion Token", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xc8ff6772f605a139c40b32d5d87d54994c705c6b.png", - "aggregators": ["CoinMarketCap", "Socket", "Rubic"], - "occurrences": 3 - }, - "0x752efadc0a7e05ad1bcccda22c141d01a75ef1e4": { - "address": "0x752efadc0a7e05ad1bcccda22c141d01a75ef1e4", - "symbol": "COMFI", - "decimals": 18, - "name": "CompliFi", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x752efadc0a7e05ad1bcccda22c141d01a75ef1e4.png", - "aggregators": ["CoinMarketCap", "LiFi", "Rubic"], - "occurrences": 3 - }, - "0xdb0acc14396d108b3c5574483acb817855c9dc8d": { - "address": "0xdb0acc14396d108b3c5574483acb817855c9dc8d", - "symbol": "EMB", - "decimals": 8, - "name": "Emblem", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xdb0acc14396d108b3c5574483acb817855c9dc8d.png", - "aggregators": ["CoinMarketCap", "Socket", "Rubic"], - "occurrences": 3 - }, - "0x3a82d3111ab5faf39d847d46023d9090261a658f": { - "address": "0x3a82d3111ab5faf39d847d46023d9090261a658f", - "symbol": "TYC", - "decimals": 18, - "name": "Tycoon", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x3a82d3111ab5faf39d847d46023d9090261a658f.png", - "aggregators": ["CoinMarketCap", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x368c5290b13caa10284db58b4ad4f3e9ee8bf4c9": { - "address": "0x368c5290b13caa10284db58b4ad4f3e9ee8bf4c9", - "symbol": "KKO", - "decimals": 18, - "name": "Kineko", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x368c5290b13caa10284db58b4ad4f3e9ee8bf4c9.png", - "aggregators": ["CoinMarketCap", "Rango", "SushiSwap"], - "occurrences": 3 - }, - "0x04e0af0af1b7f0023c6b12af5a94df59b0e8cf59": { - "address": "0x04e0af0af1b7f0023c6b12af5a94df59b0e8cf59", - "symbol": "SETS", - "decimals": 18, - "name": "Sensitrust", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x04e0af0af1b7f0023c6b12af5a94df59b0e8cf59.png", - "aggregators": ["CoinMarketCap", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x514cdb9cd8a2fb2bdcf7a3b8ddd098caf466e548": { - "address": "0x514cdb9cd8a2fb2bdcf7a3b8ddd098caf466e548", - "symbol": "REDPANDA", - "decimals": 9, - "name": "Red Panda", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x514cdb9cd8a2fb2bdcf7a3b8ddd098caf466e548.png", - "aggregators": ["CoinMarketCap", "Socket", "Rubic"], - "occurrences": 3 - }, - "0x286c0936c7eaf6651099ab5dab9ee5a6cb5d229d": { - "address": "0x286c0936c7eaf6651099ab5dab9ee5a6cb5d229d", - "symbol": "KWIK", - "decimals": 18, - "name": "Kwikswap", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x286c0936c7eaf6651099ab5dab9ee5a6cb5d229d.png", - "aggregators": ["CoinMarketCap", "LiFi", "Rubic"], - "occurrences": 3 - }, - "0x40955d77f87123b71b145098358a60573ac7be96": { - "address": "0x40955d77f87123b71b145098358a60573ac7be96", - "symbol": "DAISY", - "decimals": 18, - "name": "Daisy Launch Pad", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x40955d77f87123b71b145098358a60573ac7be96.png", - "aggregators": ["CoinMarketCap", "Rubic", "Rango"], - "occurrences": 3 - }, - "0xb53de031602cd825febe9f2eedf962cd8cc3805d": { - "address": "0xb53de031602cd825febe9f2eedf962cd8cc3805d", - "symbol": "CHAOS", - "decimals": 18, - "name": "ZKCHAOS", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xb53de031602cd825febe9f2eedf962cd8cc3805d.png", - "aggregators": ["CoinMarketCap", "LiFi", "Rubic"], - "occurrences": 3 - }, - "0xd85ad783cc94bd04196a13dc042a3054a9b52210": { - "address": "0xd85ad783cc94bd04196a13dc042a3054a9b52210", - "symbol": "HAKA", - "decimals": 18, - "name": "TribeOne", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xd85ad783cc94bd04196a13dc042a3054a9b52210.png", - "aggregators": ["CoinMarketCap", "Rubic", "Rango"], - "occurrences": 3 - }, - "0xc9f1016d336ef77aee75fc11ad64c5ecf9121332": { - "address": "0xc9f1016d336ef77aee75fc11ad64c5ecf9121332", - "symbol": "SAT", - "decimals": 18, - "name": "SoMee Advertising Token V2", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xc9f1016d336ef77aee75fc11ad64c5ecf9121332.png", - "aggregators": ["CoinMarketCap", "Socket", "Rubic"], - "occurrences": 3 - }, - "0x88cb253d4c8cab8cdf7948a9251db85a13669e23": { - "address": "0x88cb253d4c8cab8cdf7948a9251db85a13669e23", - "symbol": "YLDY", - "decimals": 18, - "name": "Yieldly", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x88cb253d4c8cab8cdf7948a9251db85a13669e23.png", - "aggregators": ["CoinMarketCap", "LiFi", "Rubic"], - "occurrences": 3 - }, - "0x72a66e54b66892ae3bbe54df7bb7dd5ae927a6f9": { - "address": "0x72a66e54b66892ae3bbe54df7bb7dd5ae927a6f9", - "symbol": "CVAG", - "decimals": 18, - "name": "Crypto Village Accelerator", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x72a66e54b66892ae3bbe54df7bb7dd5ae927a6f9.png", - "aggregators": ["CoinMarketCap", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x9b31bb425d8263fa1b8b9d090b83cf0c31665355": { - "address": "0x9b31bb425d8263fa1b8b9d090b83cf0c31665355", - "symbol": "CPD", - "decimals": 18, - "name": "Coinspaid", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x9b31bb425d8263fa1b8b9d090b83cf0c31665355.png", - "aggregators": ["CoinMarketCap", "LiFi", "Rubic"], - "occurrences": 3 - }, - "0xb0e1fc65c1a741b4662b813eb787d369b8614af1": { - "address": "0xb0e1fc65c1a741b4662b813eb787d369b8614af1", - "symbol": "IF", - "decimals": 18, - "name": "Impossible Finance", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xb0e1fc65c1a741b4662b813eb787d369b8614af1.png", - "aggregators": ["CoinMarketCap", "LiFi", "Rubic"], - "occurrences": 3 - }, - "0xac8e13ecc30da7ff04b842f21a62a1fb0f10ebd5": { - "address": "0xac8e13ecc30da7ff04b842f21a62a1fb0f10ebd5", - "symbol": "BABYDOGE", - "decimals": 9, - "name": "BabyDoge Coin", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xac8e13ecc30da7ff04b842f21a62a1fb0f10ebd5.png", - "aggregators": ["CoinMarketCap", "Socket", "Rubic"], - "occurrences": 3 - }, - "0xda007777d86ac6d989cc9f79a73261b3fc5e0da0": { - "address": "0xda007777d86ac6d989cc9f79a73261b3fc5e0da0", - "symbol": "NODE", - "decimals": 18, - "name": "DAppNode DAO Token", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xda007777d86ac6d989cc9f79a73261b3fc5e0da0.png", - "aggregators": ["CoinMarketCap", "Socket", "Rubic"], - "occurrences": 3 - }, - "0x403d512ab96103562dcafe4635545e8ee2753f6e": { - "address": "0x403d512ab96103562dcafe4635545e8ee2753f6e", - "symbol": "WILD", - "decimals": 18, - "name": "WILD", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x403d512ab96103562dcafe4635545e8ee2753f6e.png", - "aggregators": ["CoinMarketCap", "Socket", "Rubic"], - "occurrences": 3 - }, - "0xc382e04099a435439725bb40647e2b32dc136806": { - "address": "0xc382e04099a435439725bb40647e2b32dc136806", - "symbol": "COGE", - "decimals": 18, - "name": "Cogecoin", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xc382e04099a435439725bb40647e2b32dc136806.png", - "aggregators": ["CoinMarketCap", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x969786c4a8884013d1c9ff18dcca2aedbbbfaa8f": { - "address": "0x969786c4a8884013d1c9ff18dcca2aedbbbfaa8f", - "symbol": "LFG", - "decimals": 18, - "name": "LFG Token [via ChainPort.io]", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x969786c4a8884013d1c9ff18dcca2aedbbbfaa8f.png", - "aggregators": ["CoinMarketCap", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x302cae5dcf8f051d0177043c3438020b89b33218": { - "address": "0x302cae5dcf8f051d0177043c3438020b89b33218", - "symbol": "BOOST", - "decimals": 18, - "name": "Boost Coin", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x302cae5dcf8f051d0177043c3438020b89b33218.png", - "aggregators": ["CoinMarketCap", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x4fadc7a98f2dc96510e42dd1a74141eeae0c1543": { - "address": "0x4fadc7a98f2dc96510e42dd1a74141eeae0c1543", - "symbol": "WAR", - "decimals": 12, - "name": "Wrapped AR", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x4fadc7a98f2dc96510e42dd1a74141eeae0c1543.png", - "aggregators": ["CoinMarketCap", "Socket", "Rubic"], - "occurrences": 3 - }, - "0x4455ef8b4b4a007a93daa12de63a47eeac700d9d": { - "address": "0x4455ef8b4b4a007a93daa12de63a47eeac700d9d", - "symbol": "KNIGHT", - "decimals": 18, - "name": "Forest Knight", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x4455ef8b4b4a007a93daa12de63a47eeac700d9d.png", - "aggregators": ["CoinMarketCap", "Socket", "Rubic"], - "occurrences": 3 - }, - "0x0000000de40dfa9b17854cbc7869d80f9f98d823": { - "address": "0x0000000de40dfa9b17854cbc7869d80f9f98d823", - "symbol": "DLTA", - "decimals": 18, - "name": "delta.theta", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x0000000de40dfa9b17854cbc7869d80f9f98d823.png", - "aggregators": ["CoinMarketCap", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x0a0e3bfd5a8ce610e735d4469bc1b3b130402267": { - "address": "0x0a0e3bfd5a8ce610e735d4469bc1b3b130402267", - "symbol": "ERP", - "decimals": 18, - "name": "Entropy", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x0a0e3bfd5a8ce610e735d4469bc1b3b130402267.png", - "aggregators": ["CoinMarketCap", "LiFi", "Rubic"], - "occurrences": 3 - }, - "0xf009f5531de69067435e32c4b9d36077f4c4a673": { - "address": "0xf009f5531de69067435e32c4b9d36077f4c4a673", - "symbol": "UNV", - "decimals": 18, - "name": "Unvest", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xf009f5531de69067435e32c4b9d36077f4c4a673.png", - "aggregators": ["CoinMarketCap", "Socket", "Rubic"], - "occurrences": 3 - }, - "0xeb494890465f49c2b94457d9b61811392e5b1fea": { - "address": "0xeb494890465f49c2b94457d9b61811392e5b1fea", - "symbol": "SLAB", - "decimals": 9, - "name": "SLINK LABS", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xeb494890465f49c2b94457d9b61811392e5b1fea.png", - "aggregators": ["CoinMarketCap", "Socket", "Rubic"], - "occurrences": 3 - }, - "0xf6e06b54855eff198a2d9a8686113665499a6134": { - "address": "0xf6e06b54855eff198a2d9a8686113665499a6134", - "symbol": "CELT", - "decimals": 18, - "name": "Celestial", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xf6e06b54855eff198a2d9a8686113665499a6134.png", - "aggregators": ["CoinMarketCap", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x28c5805b64d163588a909012a628b5a03c1041f9": { - "address": "0x28c5805b64d163588a909012a628b5a03c1041f9", - "symbol": "CHOPPER", - "decimals": 9, - "name": "CHOPPER INU", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x28c5805b64d163588a909012a628b5a03c1041f9.png", - "aggregators": ["CoinMarketCap", "Socket", "Rubic"], - "occurrences": 3 - }, - "0x5c761c1a21637362374204000e383204d347064c": { - "address": "0x5c761c1a21637362374204000e383204d347064c", - "symbol": "CHIZ", - "decimals": 18, - "name": "SRSC Chiz Token", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x5c761c1a21637362374204000e383204d347064c.png", - "aggregators": ["CoinMarketCap", "LiFi", "Rubic"], - "occurrences": 3 - }, - "0xfa898efdb91e35bd311c45b9b955f742b6719aa2": { - "address": "0xfa898efdb91e35bd311c45b9b955f742b6719aa2", - "symbol": "APED", - "decimals": 18, - "name": "Baddest Alpha Ape Bundle", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xfa898efdb91e35bd311c45b9b955f742b6719aa2.png", - "aggregators": ["CoinMarketCap", "Socket", "Rubic"], - "occurrences": 3 - }, - "0xc6065b9fc8171ad3d29bad510709249681758972": { - "address": "0xc6065b9fc8171ad3d29bad510709249681758972", - "symbol": "WFAIR", - "decimals": 18, - "name": "WFAIR Token", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xc6065b9fc8171ad3d29bad510709249681758972.png", - "aggregators": ["CoinMarketCap", "LiFi", "Rubic"], - "occurrences": 3 - }, - "0x71dc40668682a124231301414167e4cf7f55383c": { - "address": "0x71dc40668682a124231301414167e4cf7f55383c", - "symbol": "MIMIR", - "decimals": 18, - "name": "Mimir Token", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x71dc40668682a124231301414167e4cf7f55383c.png", - "aggregators": ["CoinMarketCap", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x296233e84c1d7bff11121bf6d60f0ffa39c3f0cf": { - "address": "0x296233e84c1d7bff11121bf6d60f0ffa39c3f0cf", - "symbol": "NOONE", - "decimals": 9, - "name": "No one", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x296233e84c1d7bff11121bf6d60f0ffa39c3f0cf.png", - "aggregators": ["CoinMarketCap", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x3085154623f51b00dedfc6ceeb5197277a66b17b": { - "address": "0x3085154623f51b00dedfc6ceeb5197277a66b17b", - "symbol": "NFTY", - "decimals": 18, - "name": "NIFTY", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x3085154623f51b00dedfc6ceeb5197277a66b17b.png", - "aggregators": ["Metamask", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x8281ee37f164c0e26e6b6f87e7695baac256df07": { - "address": "0x8281ee37f164c0e26e6b6f87e7695baac256df07", - "symbol": "DAC", - "decimals": 18, - "name": "DegenArts.com Coin", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x8281ee37f164c0e26e6b6f87e7695baac256df07.png", - "aggregators": ["CoinMarketCap", "LiFi", "Rubic"], - "occurrences": 3 - }, - "0x12b54baa8ffcfd6679ccf1ae618ca3006cfcc2ac": { - "address": "0x12b54baa8ffcfd6679ccf1ae618ca3006cfcc2ac", - "symbol": "CHLI", - "decimals": 18, - "name": "ChilliSwap Token", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x12b54baa8ffcfd6679ccf1ae618ca3006cfcc2ac.png", - "aggregators": ["CoinMarketCap", "LiFi", "Rubic"], - "occurrences": 3 - }, - "0x714bfd06da6eb24fac379f0d9debfa85261bf439": { - "address": "0x714bfd06da6eb24fac379f0d9debfa85261bf439", - "symbol": "EEUR", - "decimals": 6, - "name": "e-Money EUR", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x714bfd06da6eb24fac379f0d9debfa85261bf439.png", - "aggregators": ["CoinMarketCap", "Socket", "Rubic"], - "occurrences": 3 - }, - "0x06874f973dc3c96dc22a10ef0d0609f877f335ea": { - "address": "0x06874f973dc3c96dc22a10ef0d0609f877f335ea", - "symbol": "STA", - "decimals": 18, - "name": "STA", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x06874f973dc3c96dc22a10ef0d0609f877f335ea.png", - "aggregators": ["CoinMarketCap", "Rubic", "Rango"], - "occurrences": 3 - }, - "0xc229c69eb3bb51828d0caa3509a05a51083898dd": { - "address": "0xc229c69eb3bb51828d0caa3509a05a51083898dd", - "symbol": "PTU", - "decimals": 18, - "name": "Pintu Token", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xc229c69eb3bb51828d0caa3509a05a51083898dd.png", - "aggregators": ["CoinMarketCap", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x47b9f01b16e9c9cb99191dca68c9cc5bf6403957": { - "address": "0x47b9f01b16e9c9cb99191dca68c9cc5bf6403957", - "symbol": "ONSTON", - "decimals": 18, - "name": "ONSTON", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x47b9f01b16e9c9cb99191dca68c9cc5bf6403957.png", - "aggregators": ["CoinMarketCap", "Rubic", "Rango"], - "occurrences": 3 - }, - "0xf6650117017ffd48b725b4ec5a00b414097108a7": { - "address": "0xf6650117017ffd48b725b4ec5a00b414097108a7", - "symbol": "XIDO", - "decimals": 18, - "name": "XIDO FINANCE", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xf6650117017ffd48b725b4ec5a00b414097108a7.png", - "aggregators": ["CoinMarketCap", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x2a2550e0a75acec6d811ae3930732f7f3ad67588": { - "address": "0x2a2550e0a75acec6d811ae3930732f7f3ad67588", - "symbol": "PATH", - "decimals": 18, - "name": "PathDao", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x2a2550e0a75acec6d811ae3930732f7f3ad67588.png", - "aggregators": ["CoinMarketCap", "Rubic", "Bancor"], - "occurrences": 3 - }, - "0x93ad9b819c88d98b4c9641470a96e24769ae7922": { - "address": "0x93ad9b819c88d98b4c9641470a96e24769ae7922", - "symbol": "KRX", - "decimals": 9, - "name": "KRYZA Exchange", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x93ad9b819c88d98b4c9641470a96e24769ae7922.png", - "aggregators": ["CoinMarketCap", "Rubic", "Rango"], - "occurrences": 3 - }, - "0xc84d8d03aa41ef941721a4d77b24bb44d7c7ac55": { - "address": "0xc84d8d03aa41ef941721a4d77b24bb44d7c7ac55", - "symbol": "ECC", - "decimals": 9, - "name": "Empire Capital", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xc84d8d03aa41ef941721a4d77b24bb44d7c7ac55.png", - "aggregators": ["CoinMarketCap", "Socket", "Rubic"], - "occurrences": 3 - }, - "0x4fee21439f2b95b72da2f9f901b3956f27fe91d5": { - "address": "0x4fee21439f2b95b72da2f9f901b3956f27fe91d5", - "symbol": "FROG", - "decimals": 18, - "name": "FrogSwap", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x4fee21439f2b95b72da2f9f901b3956f27fe91d5.png", - "aggregators": ["CoinMarketCap", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x443b29fc978058abe3fc2f4c3c6b76c57fdecc02": { - "address": "0x443b29fc978058abe3fc2f4c3c6b76c57fdecc02", - "symbol": "IDEAS", - "decimals": 18, - "name": "IDEAS", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x443b29fc978058abe3fc2f4c3c6b76c57fdecc02.png", - "aggregators": ["CoinMarketCap", "Socket", "Rubic"], - "occurrences": 3 - }, - "0xd1b624f07a4d9b3e3746e33cb58f42df079b5444": { - "address": "0xd1b624f07a4d9b3e3746e33cb58f42df079b5444", - "symbol": "NKCLC", - "decimals": 18, - "name": "NKCL Classic", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xd1b624f07a4d9b3e3746e33cb58f42df079b5444.png", - "aggregators": ["CoinMarketCap", "Rubic", "Rango"], - "occurrences": 3 - }, - "0xa808b22ffd2c472ad1278088f16d4010e6a54d5f": { - "address": "0xa808b22ffd2c472ad1278088f16d4010e6a54d5f", - "symbol": "REFI", - "decimals": 18, - "name": "ReFi", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xa808b22ffd2c472ad1278088f16d4010e6a54d5f.png", - "aggregators": ["CoinMarketCap", "LiFi", "Rubic"], - "occurrences": 3 - }, - "0x0944d5848bd9f60a34ba92aea300d4286696eb76": { - "address": "0x0944d5848bd9f60a34ba92aea300d4286696eb76", - "symbol": "PLT", - "decimals": 18, - "name": "Palette Token", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x0944d5848bd9f60a34ba92aea300d4286696eb76.png", - "aggregators": ["CoinMarketCap", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x95b4e47025372ded4b73f9b5f0671b94a81445bc": { - "address": "0x95b4e47025372ded4b73f9b5f0671b94a81445bc", - "symbol": "PLAY", - "decimals": 9, - "name": "InfinityGaming", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x95b4e47025372ded4b73f9b5f0671b94a81445bc.png", - "aggregators": ["CoinMarketCap", "Socket", "Rubic"], - "occurrences": 3 - }, - "0xd15a1a2a3211b58113e45809f05934252e34e2f8": { - "address": "0xd15a1a2a3211b58113e45809f05934252e34e2f8", - "symbol": "WZM", - "decimals": 18, - "name": "Woozoo Music", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xd15a1a2a3211b58113e45809f05934252e34e2f8.png", - "aggregators": ["CoinMarketCap", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x67cc621ab2d086a101cff3340df0a065ac75827c": { - "address": "0x67cc621ab2d086a101cff3340df0a065ac75827c", - "symbol": "FLOKI", - "decimals": 18, - "name": "Floki Musk", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x67cc621ab2d086a101cff3340df0a065ac75827c.png", - "aggregators": ["CoinMarketCap", "Socket", "Rubic"], - "occurrences": 3 - }, - "0x89509aa1d14a8e1e5364ec4c3b041213bcdbe08d": { - "address": "0x89509aa1d14a8e1e5364ec4c3b041213bcdbe08d", - "symbol": "ZURR", - "decimals": 18, - "name": "ZURRENCY", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x89509aa1d14a8e1e5364ec4c3b041213bcdbe08d.png", - "aggregators": ["CoinMarketCap", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x19ac2659599fd01c853de846919544276ad26f50": { - "address": "0x19ac2659599fd01c853de846919544276ad26f50", - "symbol": "COVN", - "decimals": 18, - "name": "Covenant", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x19ac2659599fd01c853de846919544276ad26f50.png", - "aggregators": ["CoinMarketCap", "Rubic", "Rango"], - "occurrences": 3 - }, - "0xbe9ab37a414c517b2be2bfa5945665bb07379054": { - "address": "0xbe9ab37a414c517b2be2bfa5945665bb07379054", - "symbol": "TOMS", - "decimals": 18, - "name": "TomTomCoin", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xbe9ab37a414c517b2be2bfa5945665bb07379054.png", - "aggregators": ["CoinMarketCap", "Rubic", "Rango"], - "occurrences": 3 - }, - "0xed025a9fe4b30bcd68460bca42583090c2266468": { - "address": "0xed025a9fe4b30bcd68460bca42583090c2266468", - "symbol": "RPC", - "decimals": 18, - "name": "Ripio Coin", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xed025a9fe4b30bcd68460bca42583090c2266468.png", - "aggregators": ["CoinMarketCap", "LiFi", "Rubic"], - "occurrences": 3 - }, - "0x822757d09a8d5db5874be7f367eafae2af32d64b": { - "address": "0x822757d09a8d5db5874be7f367eafae2af32d64b", - "symbol": "ONI", - "decimals": 18, - "name": "ONINO", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x822757d09a8d5db5874be7f367eafae2af32d64b.png", - "aggregators": ["CoinMarketCap", "Socket", "Rubic"], - "occurrences": 3 - }, - "0xd4e12b224c316664ebb647f69abc1fb8bb2697c7": { - "address": "0xd4e12b224c316664ebb647f69abc1fb8bb2697c7", - "symbol": "BRIBE", - "decimals": 18, - "name": "Bribe Token", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xd4e12b224c316664ebb647f69abc1fb8bb2697c7.png", - "aggregators": ["CoinMarketCap", "Socket", "Rubic"], - "occurrences": 3 - }, - "0x882e5b370d595e50c24b2a0e7a94e87cc32adda1": { - "address": "0x882e5b370d595e50c24b2a0e7a94e87cc32adda1", - "symbol": "GAME", - "decimals": 18, - "name": "Game", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x882e5b370d595e50c24b2a0e7a94e87cc32adda1.png", - "aggregators": ["CoinMarketCap", "Socket", "Rubic"], - "occurrences": 3 - }, - "0xb5f1457d6fba1956fb8d31b0b7caca14bde0be4b": { - "address": "0xb5f1457d6fba1956fb8d31b0b7caca14bde0be4b", - "symbol": "STILT", - "decimals": 9, - "name": "Stilton", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xb5f1457d6fba1956fb8d31b0b7caca14bde0be4b.png", - "aggregators": ["CoinMarketCap", "Rubic", "Rango"], - "occurrences": 3 - }, - "0xfe459828c90c0ba4bc8b42f5c5d44f316700b430": { - "address": "0xfe459828c90c0ba4bc8b42f5c5d44f316700b430", - "symbol": "BBS", - "decimals": 18, - "name": "BBS", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xfe459828c90c0ba4bc8b42f5c5d44f316700b430.png", - "aggregators": ["CoinMarketCap", "Rubic", "Bancor"], - "occurrences": 3 - }, - "0x6f9c26fa731c7ea4139fa669962cf8f1ce6c8b0b": { - "address": "0x6f9c26fa731c7ea4139fa669962cf8f1ce6c8b0b", - "symbol": "OATH", - "decimals": 18, - "name": "Oath Token", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x6f9c26fa731c7ea4139fa669962cf8f1ce6c8b0b.png", - "aggregators": ["CoinMarketCap", "Socket", "Rubic"], - "occurrences": 3 - }, - "0x5380442d3c4ec4f5777f551f5edd2fa0f691a27c": { - "address": "0x5380442d3c4ec4f5777f551f5edd2fa0f691a27c", - "symbol": "LOVE", - "decimals": 18, - "name": "UkraineDAO Flag NFT", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x5380442d3c4ec4f5777f551f5edd2fa0f691a27c.png", - "aggregators": ["CoinMarketCap", "Socket", "Rubic"], - "occurrences": 3 - }, - "0x8df586aa346c3d9d1c99a21316a2735d71355ec8": { - "address": "0x8df586aa346c3d9d1c99a21316a2735d71355ec8", - "symbol": "WSB", - "decimals": 18, - "name": "Wallstreetbets", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x8df586aa346c3d9d1c99a21316a2735d71355ec8.png", - "aggregators": ["CoinMarketCap", "Socket", "Rubic"], - "occurrences": 3 - }, - "0x234d51ee02be808a0160b19b689660fb7bfa871b": { - "address": "0x234d51ee02be808a0160b19b689660fb7bfa871b", - "symbol": "SCAN", - "decimals": 9, - "name": "CoinScan", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x234d51ee02be808a0160b19b689660fb7bfa871b.png", - "aggregators": ["CoinMarketCap", "Socket", "Rubic"], - "occurrences": 3 - }, - "0x6dde4ffd6db302bc9a46850f61399e082f6c2122": { - "address": "0x6dde4ffd6db302bc9a46850f61399e082f6c2122", - "symbol": "IAI", - "decimals": 18, - "name": "inheritance Art", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x6dde4ffd6db302bc9a46850f61399e082f6c2122.png", - "aggregators": ["CoinMarketCap", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x00e679ba63b509182c349f5614f0a07cdd0ce0c5": { - "address": "0x00e679ba63b509182c349f5614f0a07cdd0ce0c5", - "symbol": "DAMEX", - "decimals": 18, - "name": "Damex Token", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x00e679ba63b509182c349f5614f0a07cdd0ce0c5.png", - "aggregators": ["CoinMarketCap", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x22987407fd1fc5a971e3fda3b3e74c88666cda91": { - "address": "0x22987407fd1fc5a971e3fda3b3e74c88666cda91", - "symbol": "SRT", - "decimals": 18, - "name": "Smart Reward Token", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x22987407fd1fc5a971e3fda3b3e74c88666cda91.png", - "aggregators": ["CoinMarketCap", "Rubic", "Rango"], - "occurrences": 3 - }, - "0xf81421fc15300c5a8cca9afe12f5cbad502fa756": { - "address": "0xf81421fc15300c5a8cca9afe12f5cbad502fa756", - "symbol": "CRDC", - "decimals": 18, - "name": "Cardiocoin", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xf81421fc15300c5a8cca9afe12f5cbad502fa756.png", - "aggregators": ["CoinMarketCap", "Rubic", "Rango"], - "occurrences": 3 - }, - "0xce108380c39e4fe9dace9d5597e048bcc5ef743b": { - "address": "0xce108380c39e4fe9dace9d5597e048bcc5ef743b", - "symbol": "BLUES", - "decimals": 18, - "name": "Blueshift", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xce108380c39e4fe9dace9d5597e048bcc5ef743b.png", - "aggregators": ["CoinMarketCap", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x559ebc30b0e58a45cc9ff573f77ef1e5eb1b3e18": { - "address": "0x559ebc30b0e58a45cc9ff573f77ef1e5eb1b3e18", - "symbol": "VOLT", - "decimals": 18, - "name": "VOLT", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x559ebc30b0e58a45cc9ff573f77ef1e5eb1b3e18.png", - "aggregators": ["CoinMarketCap", "LiFi", "Socket"], - "occurrences": 3 - }, - "0x5a56da75c50aa2733f5fa9a2442aaefcbc60b2e6": { - "address": "0x5a56da75c50aa2733f5fa9a2442aaefcbc60b2e6", - "symbol": "CXD", - "decimals": 18, - "name": "Cortex DAO Token", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x5a56da75c50aa2733f5fa9a2442aaefcbc60b2e6.png", - "aggregators": ["CoinMarketCap", "Socket", "Rubic"], - "occurrences": 3 - }, - "0xb668473944d2e25b6af6d46917eb0233dbac53ae": { - "address": "0xb668473944d2e25b6af6d46917eb0233dbac53ae", - "symbol": "NTO", - "decimals": 18, - "name": "Neton", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xb668473944d2e25b6af6d46917eb0233dbac53ae.png", - "aggregators": ["CoinMarketCap", "Rubic", "Rango"], - "occurrences": 3 - }, - "0xb7c2fcd6d7922eddd2a7a9b0524074a60d5b472c": { - "address": "0xb7c2fcd6d7922eddd2a7a9b0524074a60d5b472c", - "symbol": "VST", - "decimals": 18, - "name": "VentiSwap Token", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xb7c2fcd6d7922eddd2a7a9b0524074a60d5b472c.png", - "aggregators": ["CoinMarketCap", "Socket", "Rubic"], - "occurrences": 3 - }, - "0x22b48e1f20043d1db5f2a11cbf1d520a4f20b198": { - "address": "0x22b48e1f20043d1db5f2a11cbf1d520a4f20b198", - "symbol": "XOT", - "decimals": 18, - "name": "Okuru", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x22b48e1f20043d1db5f2a11cbf1d520a4f20b198.png", - "aggregators": ["CoinMarketCap", "Rubic", "Rango"], - "occurrences": 3 - }, - "0xb8919522331c59f5c16bdfaa6a121a6e03a91f62": { - "address": "0xb8919522331c59f5c16bdfaa6a121a6e03a91f62", - "symbol": "HOME", - "decimals": 6, - "name": "Home", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xb8919522331c59f5c16bdfaa6a121a6e03a91f62.png", - "aggregators": ["Metamask", "LiFi", "Rubic"], - "occurrences": 3 - }, - "0xceeb07dd26b36287b6d109f0b06d7e8202ce8c1d": { - "address": "0xceeb07dd26b36287b6d109f0b06d7e8202ce8c1d", - "symbol": "GOTG", - "decimals": 18, - "name": "Got Guaranteed", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xceeb07dd26b36287b6d109f0b06d7e8202ce8c1d.png", - "aggregators": ["CoinMarketCap", "Rubic", "Rango"], - "occurrences": 3 - }, - "0xb70eaf5d316192881aac8786c90b7907b83f02e8": { - "address": "0xb70eaf5d316192881aac8786c90b7907b83f02e8", - "symbol": "RESET", - "decimals": 18, - "name": "MetaReset", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xb70eaf5d316192881aac8786c90b7907b83f02e8.png", - "aggregators": ["CoinMarketCap", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x4b13006980acb09645131b91d259eaa111eaf5ba": { - "address": "0x4b13006980acb09645131b91d259eaa111eaf5ba", - "symbol": "MYC", - "decimals": 18, - "name": "Mycelium", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x4b13006980acb09645131b91d259eaa111eaf5ba.png", - "aggregators": ["CoinMarketCap", "Socket", "Rubic"], - "occurrences": 3 - }, - "0x63f7b1b538a78cb699e5399621b3d2e047c40de4": { - "address": "0x63f7b1b538a78cb699e5399621b3d2e047c40de4", - "symbol": "MAX", - "decimals": 18, - "name": "Maxity", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x63f7b1b538a78cb699e5399621b3d2e047c40de4.png", - "aggregators": ["CoinMarketCap", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x3c4008eca800ec1283e4cf500e68d06bfabc00a8": { - "address": "0x3c4008eca800ec1283e4cf500e68d06bfabc00a8", - "symbol": "HAO", - "decimals": 18, - "name": "HistoryDAO", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x3c4008eca800ec1283e4cf500e68d06bfabc00a8.png", - "aggregators": ["CoinMarketCap", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x67954768e721fad0f0f21e33e874497c73ed6a82": { - "address": "0x67954768e721fad0f0f21e33e874497c73ed6a82", - "symbol": "KEK", - "decimals": 18, - "name": "KeKChain", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x67954768e721fad0f0f21e33e874497c73ed6a82.png", - "aggregators": ["CoinMarketCap", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x6ccf1c009416b57bc19218db3a4ebbf7afd52afd": { - "address": "0x6ccf1c009416b57bc19218db3a4ebbf7afd52afd", - "symbol": "SHIBC", - "decimals": 18, - "name": "Shiba Classic", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x6ccf1c009416b57bc19218db3a4ebbf7afd52afd.png", - "aggregators": ["CoinMarketCap", "Socket", "Rubic"], - "occurrences": 3 - }, - "0x1ea48b9965bb5086f3b468e50ed93888a661fc17": { - "address": "0x1ea48b9965bb5086f3b468e50ed93888a661fc17", - "symbol": "MON", - "decimals": 18, - "name": "Moneta", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x1ea48b9965bb5086f3b468e50ed93888a661fc17.png", - "aggregators": ["CoinMarketCap", "Socket", "Rubic"], - "occurrences": 3 - }, - "0xc5a9bc46a7dbe1c6de493e84a18f02e70e2c5a32": { - "address": "0xc5a9bc46a7dbe1c6de493e84a18f02e70e2c5a32", - "symbol": "WCI", - "decimals": 9, - "name": "WORLD CUP INU", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xc5a9bc46a7dbe1c6de493e84a18f02e70e2c5a32.png", - "aggregators": ["CoinMarketCap", "Socket", "Rubic"], - "occurrences": 3 - }, - "0xa719cb79af39a9c10eda2755e0938bce35e9de24": { - "address": "0xa719cb79af39a9c10eda2755e0938bce35e9de24", - "symbol": "SEAN", - "decimals": 18, - "name": "Starfish Finance", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xa719cb79af39a9c10eda2755e0938bce35e9de24.png", - "aggregators": ["CoinMarketCap", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x849c479d7a90eb378dbd00e8f166371176244eb1": { - "address": "0x849c479d7a90eb378dbd00e8f166371176244eb1", - "symbol": "MUU", - "decimals": 9, - "name": "MUU", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x849c479d7a90eb378dbd00e8f166371176244eb1.png", - "aggregators": ["CoinMarketCap", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x508626d9a29d13eba26f843a2bd7bf7b00a45be5": { - "address": "0x508626d9a29d13eba26f843a2bd7bf7b00a45be5", - "symbol": "KALE", - "decimals": 18, - "name": "Kale Currency", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x508626d9a29d13eba26f843a2bd7bf7b00a45be5.png", - "aggregators": ["CoinMarketCap", "Socket", "Rubic"], - "occurrences": 3 - }, - "0x9565c2036963697786705120fc59310f747bcfd0": { - "address": "0x9565c2036963697786705120fc59310f747bcfd0", - "symbol": "PP", - "decimals": 18, - "name": "PoorPleb", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x9565c2036963697786705120fc59310f747bcfd0.png", - "aggregators": ["CoinMarketCap", "Socket", "Rubic"], - "occurrences": 3 - }, - "0x9d93692e826a4bd9e903e2a27d7fbd1e116efdad": { - "address": "0x9d93692e826a4bd9e903e2a27d7fbd1e116efdad", - "symbol": "POLY", - "decimals": 9, - "name": "Poly Maximus", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x9d93692e826a4bd9e903e2a27d7fbd1e116efdad.png", - "aggregators": ["CoinMarketCap", "Socket", "Rubic"], - "occurrences": 3 - }, - "0xfeeeef4d7b4bf3cc8bd012d02d32ba5fd3d51e31": { - "address": "0xfeeeef4d7b4bf3cc8bd012d02d32ba5fd3d51e31", - "symbol": "TAIL", - "decimals": 18, - "name": "Tail", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xfeeeef4d7b4bf3cc8bd012d02d32ba5fd3d51e31.png", - "aggregators": ["CoinMarketCap", "Rubic", "Rango"], - "occurrences": 3 - }, - "0xa3ad8c7ab6b731045b5b16e3fdf77975c71abe79": { - "address": "0xa3ad8c7ab6b731045b5b16e3fdf77975c71abe79", - "symbol": "DINERO", - "decimals": 18, - "name": "DINERO", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xa3ad8c7ab6b731045b5b16e3fdf77975c71abe79.png", - "aggregators": ["CoinMarketCap", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x2ffde077455f81e28baa675a46b9c085740216d4": { - "address": "0x2ffde077455f81e28baa675a46b9c085740216d4", - "symbol": "TCGC", - "decimals": 18, - "name": "TCGCoin", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x2ffde077455f81e28baa675a46b9c085740216d4.png", - "aggregators": ["CoinMarketCap", "Socket", "Rubic"], - "occurrences": 3 - }, - "0xd79f43113b22d1ea9f29cfcc7bb287489f8ee5e0": { - "address": "0xd79f43113b22d1ea9f29cfcc7bb287489f8ee5e0", - "symbol": "ZRO", - "decimals": 18, - "name": "PROTOCOL ZERO", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xd79f43113b22d1ea9f29cfcc7bb287489f8ee5e0.png", - "aggregators": ["CoinMarketCap", "Socket", "Rubic"], - "occurrences": 3 - }, - "0x5f190f9082878ca141f858c1c90b4c59fe2782c5": { - "address": "0x5f190f9082878ca141f858c1c90b4c59fe2782c5", - "symbol": "KDOE", - "decimals": 18, - "name": "Kudoe", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x5f190f9082878ca141f858c1c90b4c59fe2782c5.png", - "aggregators": ["CoinMarketCap", "LiFi", "Rubic"], - "occurrences": 3 - }, - "0xd4126f195a8de772eeffa61a4ab6dd43462f4e39": { - "address": "0xd4126f195a8de772eeffa61a4ab6dd43462f4e39", - "symbol": "HIKARI", - "decimals": 18, - "name": "Hikari Protocol", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xd4126f195a8de772eeffa61a4ab6dd43462f4e39.png", - "aggregators": ["CoinMarketCap", "Rubic", "Sonarwatch"], - "occurrences": 3 - }, - "0x7d8d7c26179b7a6aebbf66a91c38ed92d5b4996b": { - "address": "0x7d8d7c26179b7a6aebbf66a91c38ed92d5b4996b", - "symbol": "FUND", - "decimals": 18, - "name": "Teh Fund", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x7d8d7c26179b7a6aebbf66a91c38ed92d5b4996b.png", - "aggregators": ["CoinMarketCap", "Rubic", "Rango"], - "occurrences": 3 - }, - "0xb8fda5aee55120247f16225feff266dfdb381d4c": { - "address": "0xb8fda5aee55120247f16225feff266dfdb381d4c", - "symbol": "0X0", - "decimals": 18, - "name": "0x0 Token", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xb8fda5aee55120247f16225feff266dfdb381d4c.png", - "aggregators": ["CoinMarketCap", "Socket", "Rubic"], - "occurrences": 3 - }, - "0x4384b85fe228ae727b129230211194e4a50877c4": { - "address": "0x4384b85fe228ae727b129230211194e4a50877c4", - "symbol": "TAIL", - "decimals": 9, - "name": "Tail Finance", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x4384b85fe228ae727b129230211194e4a50877c4.png", - "aggregators": ["CoinMarketCap", "Socket", "Rubic"], - "occurrences": 3 - }, - "0xc89d9aa9d9e54bb196319c6195aea1038d2bc936": { - "address": "0xc89d9aa9d9e54bb196319c6195aea1038d2bc936", - "symbol": "TRENDX", - "decimals": 18, - "name": "Trend X", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xc89d9aa9d9e54bb196319c6195aea1038d2bc936.png", - "aggregators": ["CoinMarketCap", "Rubic", "Rango"], - "occurrences": 3 - }, - "0xd38b305cac06990c0887032a02c03d6839f770a8": { - "address": "0xd38b305cac06990c0887032a02c03d6839f770a8", - "symbol": "LGCT", - "decimals": 18, - "name": "Legacy Token", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xd38b305cac06990c0887032a02c03d6839f770a8.png", - "aggregators": ["CoinMarketCap", "Rubic", "Sonarwatch"], - "occurrences": 3 - }, - "0x20cdecbf5d56870b4068a255580a58d068446c92": { - "address": "0x20cdecbf5d56870b4068a255580a58d068446c92", - "symbol": "MONKEYS", - "decimals": 9, - "name": "Monkeys Token", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x20cdecbf5d56870b4068a255580a58d068446c92.png", - "aggregators": ["CoinMarketCap", "Socket", "Rubic"], - "occurrences": 3 - }, - "0x0f1e49d6dcfc9eefcce9d5ae3c660f8ead75061a": { - "address": "0x0f1e49d6dcfc9eefcce9d5ae3c660f8ead75061a", - "symbol": "VINLINK", - "decimals": 9, - "name": "VINLINK", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x0f1e49d6dcfc9eefcce9d5ae3c660f8ead75061a.png", - "aggregators": ["CoinMarketCap", "Rubic", "Rango"], - "occurrences": 3 - }, - "0xfe8546f4ac4180638edbc9ef9a5820450788e2ea": { - "address": "0xfe8546f4ac4180638edbc9ef9a5820450788e2ea", - "symbol": "POPO", - "decimals": 18, - "name": "Popo", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xfe8546f4ac4180638edbc9ef9a5820450788e2ea.png", - "aggregators": ["CoinMarketCap", "Socket", "Rubic"], - "occurrences": 3 - }, - "0x7bdf3ff2513a4f467bc25b7fd4b8404ad8126cb3": { - "address": "0x7bdf3ff2513a4f467bc25b7fd4b8404ad8126cb3", - "symbol": "MUSK", - "decimals": 18, - "name": "Elon Musk", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x7bdf3ff2513a4f467bc25b7fd4b8404ad8126cb3.png", - "aggregators": ["CoinMarketCap", "Socket", "Rubic"], - "occurrences": 3 - }, - "0x25722cd432d02895d9be45f5deb60fc479c8781e": { - "address": "0x25722cd432d02895d9be45f5deb60fc479c8781e", - "symbol": "SPONGE", - "decimals": 18, - "name": "Sponge OLD", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x25722cd432d02895d9be45f5deb60fc479c8781e.png", - "aggregators": ["CoinMarketCap", "Rubic", "Sonarwatch"], - "occurrences": 3 - }, - "0x4ffe9cc172527df1e40d0b2efe1e9f05884a13da": { - "address": "0x4ffe9cc172527df1e40d0b2efe1e9f05884a13da", - "symbol": "USA", - "decimals": 18, - "name": "DEDPRZ", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x4ffe9cc172527df1e40d0b2efe1e9f05884a13da.png", - "aggregators": ["CoinMarketCap", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x238cefec182679c27a3035713416fa0a8198b302": { - "address": "0x238cefec182679c27a3035713416fa0a8198b302", - "symbol": "GMEME", - "decimals": 18, - "name": "GoodMeme", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x238cefec182679c27a3035713416fa0a8198b302.png", - "aggregators": ["CoinMarketCap", "Rubic", "Rango"], - "occurrences": 3 - }, - "0xddd5592cf4759313c649eb4e624a79541ed222ed": { - "address": "0xddd5592cf4759313c649eb4e624a79541ed222ed", - "symbol": "PEPEXL", - "decimals": 18, - "name": "PepeXL", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xddd5592cf4759313c649eb4e624a79541ed222ed.png", - "aggregators": ["CoinMarketCap", "Rubic", "Rango"], - "occurrences": 3 - }, - "0xfe1ef2b469846d1832b25095ff51b004f090e0c6": { - "address": "0xfe1ef2b469846d1832b25095ff51b004f090e0c6", - "symbol": "PEPE", - "decimals": 18, - "name": "Pepe Coin", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xfe1ef2b469846d1832b25095ff51b004f090e0c6.png", - "aggregators": ["CoinMarketCap", "Socket", "Rubic"], - "occurrences": 3 - }, - "0xfe60fba03048effb4acf3f0088ec2f53d779d3bb": { - "address": "0xfe60fba03048effb4acf3f0088ec2f53d779d3bb", - "symbol": "3D3D", - "decimals": 18, - "name": "3d3d", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xfe60fba03048effb4acf3f0088ec2f53d779d3bb.png", - "aggregators": ["CoinMarketCap", "Rubic", "Rango"], - "occurrences": 3 - }, - "0xb435a47ecea7f5366b2520e45b9bed7e01d2ffae": { - "address": "0xb435a47ecea7f5366b2520e45b9bed7e01d2ffae", - "symbol": "NEMS", - "decimals": 18, - "name": "The Nemesis", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xb435a47ecea7f5366b2520e45b9bed7e01d2ffae.png", - "aggregators": ["CoinMarketCap", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x51fe05eac152494908ff1ebbd50e116e960baf64": { - "address": "0x51fe05eac152494908ff1ebbd50e116e960baf64", - "symbol": "XGPT", - "decimals": 18, - "name": "XGPT AI", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x51fe05eac152494908ff1ebbd50e116e960baf64.png", - "aggregators": ["CoinMarketCap", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x3267c5b73cc15e253b1a90c01366b17d560bc6fb": { - "address": "0x3267c5b73cc15e253b1a90c01366b17d560bc6fb", - "symbol": "RON", - "decimals": 9, - "name": "President Ron DeSantis", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x3267c5b73cc15e253b1a90c01366b17d560bc6fb.png", - "aggregators": ["CoinMarketCap", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x693c216aa181ebf776730d16c7ba06842548415e": { - "address": "0x693c216aa181ebf776730d16c7ba06842548415e", - "symbol": "PAPI", - "decimals": 18, - "name": "Papi", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x693c216aa181ebf776730d16c7ba06842548415e.png", - "aggregators": ["CoinMarketCap", "Socket", "Rubic"], - "occurrences": 3 - }, - "0x699060b76f0269c19171b4e193c0a792fa25cad7": { - "address": "0x699060b76f0269c19171b4e193c0a792fa25cad7", - "symbol": "RAGE", - "decimals": 18, - "name": "Rage", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x699060b76f0269c19171b4e193c0a792fa25cad7.png", - "aggregators": ["CoinMarketCap", "Socket", "Rubic"], - "occurrences": 3 - }, - "0xb22c05cedbf879a661fcc566b5a759d005cf7b4c": { - "address": "0xb22c05cedbf879a661fcc566b5a759d005cf7b4c", - "symbol": "LOVE", - "decimals": 18, - "name": "Love", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xb22c05cedbf879a661fcc566b5a759d005cf7b4c.png", - "aggregators": ["CoinMarketCap", "Socket", "Rubic"], - "occurrences": 3 - }, - "0x7c84d7e3829e004a49204d650883697bc7f06748": { - "address": "0x7c84d7e3829e004a49204d650883697bc7f06748", - "symbol": "TRUMP", - "decimals": 18, - "name": "Trump", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x7c84d7e3829e004a49204d650883697bc7f06748.png", - "aggregators": ["CoinMarketCap", "Socket", "Rubic"], - "occurrences": 3 - }, - "0x21b8bfbbefc9e2b9a994871ecd742a5132b98aed": { - "address": "0x21b8bfbbefc9e2b9a994871ecd742a5132b98aed", - "symbol": "CRE", - "decimals": 18, - "name": "Crypto Real Estate", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x21b8bfbbefc9e2b9a994871ecd742a5132b98aed.png", - "aggregators": ["CoinMarketCap", "Rubic", "Rango"], - "occurrences": 3 - }, - "0xfa46b726733559c3cbf27a54435a579db91cd7bf": { - "address": "0xfa46b726733559c3cbf27a54435a579db91cd7bf", - "symbol": "DON", - "decimals": 9, - "name": "President Donald Trump", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xfa46b726733559c3cbf27a54435a579db91cd7bf.png", - "aggregators": ["CoinMarketCap", "Socket", "Rubic"], - "occurrences": 3 - }, - "0xd8684adc4664bc2a0c78ddc8657dc005e804af15": { - "address": "0xd8684adc4664bc2a0c78ddc8657dc005e804af15", - "symbol": "CCD", - "decimals": 18, - "name": "CopyCat DAO", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xd8684adc4664bc2a0c78ddc8657dc005e804af15.png", - "aggregators": ["CoinMarketCap", "Rubic", "Rango"], - "occurrences": 3 - }, - "0xe1283567345349942acdfad3692924a1b16cf3cc": { - "address": "0xe1283567345349942acdfad3692924a1b16cf3cc", - "symbol": "AI", - "decimals": 18, - "name": "AiDoge", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xe1283567345349942acdfad3692924a1b16cf3cc.png", - "aggregators": ["CoinMarketCap", "Socket", "Rubic"], - "occurrences": 3 - }, - "0xa8388b8334beb4840d65ed80f858b080dffd7e2b": { - "address": "0xa8388b8334beb4840d65ed80f858b080dffd7e2b", - "symbol": "SOP", - "decimals": 18, - "name": "Son Of Pepe", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xa8388b8334beb4840d65ed80f858b080dffd7e2b.png", - "aggregators": ["CoinMarketCap", "Socket", "Rubic"], - "occurrences": 3 - }, - "0x265f542c1e78068f13d87c6fe0df54f3e9562a48": { - "address": "0x265f542c1e78068f13d87c6fe0df54f3e9562a48", - "symbol": "POP", - "decimals": 9, - "name": "Proof Of Pepe", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x265f542c1e78068f13d87c6fe0df54f3e9562a48.png", - "aggregators": ["CoinMarketCap", "Rubic", "Sonarwatch"], - "occurrences": 3 - }, - "0x089729b0786c8803cff972c16e402f3344d079ea": { - "address": "0x089729b0786c8803cff972c16e402f3344d079ea", - "symbol": "BGPT", - "decimals": 18, - "name": "BlockGPT", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x089729b0786c8803cff972c16e402f3344d079ea.png", - "aggregators": ["CoinMarketCap", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x695afdb42edff97af470a15920a66df81a234c0e": { - "address": "0x695afdb42edff97af470a15920a66df81a234c0e", - "symbol": "WMOXY", - "decimals": 18, - "name": "Moxy", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x695afdb42edff97af470a15920a66df81a234c0e.png", - "aggregators": ["CoinMarketCap", "Rubic", "Rango"], - "occurrences": 3 - }, - "0xca4b70beccabce29efa5bc5c86311e5d38461842": { - "address": "0xca4b70beccabce29efa5bc5c86311e5d38461842", - "symbol": "SYBL", - "decimals": 18, - "name": "Sybulls", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xca4b70beccabce29efa5bc5c86311e5d38461842.png", - "aggregators": ["CoinMarketCap", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x6fa5e1c43b5a466cbd1cae7993b67c982400d481": { - "address": "0x6fa5e1c43b5a466cbd1cae7993b67c982400d481", - "symbol": "COINBT", - "decimals": 18, - "name": "CoinBot", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x6fa5e1c43b5a466cbd1cae7993b67c982400d481.png", - "aggregators": ["CoinMarketCap", "Rubic", "Sonarwatch"], - "occurrences": 3 - }, - "0xb3fcdfb6db85847619e3dc20084faba152ffeafa": { - "address": "0xb3fcdfb6db85847619e3dc20084faba152ffeafa", - "symbol": "GBTC", - "decimals": 18, - "name": "Grayscale BTC Trust", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xb3fcdfb6db85847619e3dc20084faba152ffeafa.png", - "aggregators": ["CoinMarketCap", "Socket", "Rubic"], - "occurrences": 3 - }, - "0x70b790d0948a760e80bc3f892b142f7779b538b2": { - "address": "0x70b790d0948a760e80bc3f892b142f7779b538b2", - "symbol": "DORA", - "decimals": 18, - "name": "Dorayaki", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x70b790d0948a760e80bc3f892b142f7779b538b2.png", - "aggregators": ["CoinMarketCap", "Socket", "Rubic"], - "occurrences": 3 - }, - "0x226d6d842d49b4d757bef1632053a198d5d9c8aa": { - "address": "0x226d6d842d49b4d757bef1632053a198d5d9c8aa", - "symbol": "BLOCK", - "decimals": 18, - "name": "Block Browser", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x226d6d842d49b4d757bef1632053a198d5d9c8aa.png", - "aggregators": ["CoinMarketCap", "Rubic", "Sonarwatch"], - "occurrences": 3 - }, - "0x530824da86689c9c17cdc2871ff29b058345b44a": { - "address": "0x530824da86689c9c17cdc2871ff29b058345b44a", - "symbol": "STBT", - "decimals": 18, - "name": "Short-term Treasury Bill Token", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x530824da86689c9c17cdc2871ff29b058345b44a.png", - "aggregators": ["CoinMarketCap", "Socket", "Rubic"], - "occurrences": 3 - }, - "0xd27b128dc6536309cdebf7f1aff0cb7717bc0268": { - "address": "0xd27b128dc6536309cdebf7f1aff0cb7717bc0268", - "symbol": "ETE", - "decimals": 18, - "name": "EtherEmpires", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xd27b128dc6536309cdebf7f1aff0cb7717bc0268.png", - "aggregators": ["CoinMarketCap", "Rubic", "Rango"], - "occurrences": 3 - }, - "0xd66c27518e72be89999ab1e53c3d9ff73f7f2858": { - "address": "0xd66c27518e72be89999ab1e53c3d9ff73f7f2858", - "symbol": "TETHER", - "decimals": 8, - "name": "HermioneGrangerClintonAmberAmyRose9Inu", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xd66c27518e72be89999ab1e53c3d9ff73f7f2858.png", - "aggregators": ["CoinMarketCap", "Socket", "Rubic"], - "occurrences": 3 - }, - "0x60a26c05c5372dcded66940d2b56076bce925152": { - "address": "0x60a26c05c5372dcded66940d2b56076bce925152", - "symbol": "SILVER", - "decimals": 9, - "name": "SILVER", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x60a26c05c5372dcded66940d2b56076bce925152.png", - "aggregators": ["CoinMarketCap", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x3e8203e0b1d56984abc66f183a8d0b1a09a7e607": { - "address": "0x3e8203e0b1d56984abc66f183a8d0b1a09a7e607", - "symbol": "LP", - "decimals": 9, - "name": "Liquid Protocol", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x3e8203e0b1d56984abc66f183a8d0b1a09a7e607.png", - "aggregators": ["CoinMarketCap", "Rubic", "Rango"], - "occurrences": 3 - }, - "0xa338b5a4bbd8053994bb6c55d770fc2447d66b88": { - "address": "0xa338b5a4bbd8053994bb6c55d770fc2447d66b88", - "symbol": "EAG", - "decimals": 18, - "name": "Emerging Assets Group", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xa338b5a4bbd8053994bb6c55d770fc2447d66b88.png", - "aggregators": ["CoinMarketCap", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x0b5a91a43cb798c45fd56bfb5d41c13c42a7afa8": { - "address": "0x0b5a91a43cb798c45fd56bfb5d41c13c42a7afa8", - "symbol": "APU", - "decimals": 18, - "name": "APU", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x0b5a91a43cb798c45fd56bfb5d41c13c42a7afa8.png", - "aggregators": ["CoinMarketCap", "Socket", "Rubic"], - "occurrences": 3 - }, - "0xe2f98dd7506807ef82d1988aa77c320bc52f8df4": { - "address": "0xe2f98dd7506807ef82d1988aa77c320bc52f8df4", - "symbol": "HODL", - "decimals": 9, - "name": "Hold On for Dear Life", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xe2f98dd7506807ef82d1988aa77c320bc52f8df4.png", - "aggregators": ["CoinMarketCap", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x23a2164d482fd2fec9c2d0b66528d42fee7b8817": { - "address": "0x23a2164d482fd2fec9c2d0b66528d42fee7b8817", - "symbol": "METAMEME", - "decimals": 9, - "name": "met a meta metameme", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x23a2164d482fd2fec9c2d0b66528d42fee7b8817.png", - "aggregators": ["CoinMarketCap", "Rubic", "Rango"], - "occurrences": 3 - }, - "0xed1273928ba97eed7b49e82c2f39d512d7591112": { - "address": "0xed1273928ba97eed7b49e82c2f39d512d7591112", - "symbol": "NERD", - "decimals": 18, - "name": "NerdBot", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xed1273928ba97eed7b49e82c2f39d512d7591112.png", - "aggregators": ["CoinMarketCap", "Rubic", "Sonarwatch"], - "occurrences": 3 - }, - "0xd01d133166820557db7138963bcd9009c54e4c33": { - "address": "0xd01d133166820557db7138963bcd9009c54e4c33", - "symbol": "CEX", - "decimals": 18, - "name": "ChainEx", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xd01d133166820557db7138963bcd9009c54e4c33.png", - "aggregators": ["CoinMarketCap", "Rubic", "Sonarwatch"], - "occurrences": 3 - }, - "0xf25304e75026e6a35fedca3b0889ae5c4d3c55d8": { - "address": "0xf25304e75026e6a35fedca3b0889ae5c4d3c55d8", - "symbol": "VRD", - "decimals": 18, - "name": "Viridis Network", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xf25304e75026e6a35fedca3b0889ae5c4d3c55d8.png", - "aggregators": ["CoinMarketCap", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x8df5066cf67d909eb67b82854cf54026d31fffae": { - "address": "0x8df5066cf67d909eb67b82854cf54026d31fffae", - "symbol": "KOI", - "decimals": 18, - "name": "Koi Token", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x8df5066cf67d909eb67b82854cf54026d31fffae.png", - "aggregators": ["CoinMarketCap", "Socket", "Rubic"], - "occurrences": 3 - }, - "0xfd26e39807772251c3bb90fb1fcd9ce5b80c5c24": { - "address": "0xfd26e39807772251c3bb90fb1fcd9ce5b80c5c24", - "symbol": "CODEX", - "decimals": 9, - "name": "Codex Multichain", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xfd26e39807772251c3bb90fb1fcd9ce5b80c5c24.png", - "aggregators": ["CoinMarketCap", "Rubic", "Sonarwatch"], - "occurrences": 3 - }, - "0xb7cfe05915ef0c040c6dde2007c9ddab26259e04": { - "address": "0xb7cfe05915ef0c040c6dde2007c9ddab26259e04", - "symbol": "MOLLY", - "decimals": 18, - "name": "Molly", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xb7cfe05915ef0c040c6dde2007c9ddab26259e04.png", - "aggregators": ["CoinMarketCap", "Socket", "Rubic"], - "occurrences": 3 - }, - "0x185ece9bc75164f9fc0fbe44738e8dd1863f8464": { - "address": "0x185ece9bc75164f9fc0fbe44738e8dd1863f8464", - "symbol": "UNDX", - "decimals": 18, - "name": "UNODEX", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x185ece9bc75164f9fc0fbe44738e8dd1863f8464.png", - "aggregators": ["CoinMarketCap", "Rubic", "Rango"], - "occurrences": 3 - }, - "0xfb09122d1e17170c1807bfc1ef3c614bd85e1b6e": { - "address": "0xfb09122d1e17170c1807bfc1ef3c614bd85e1b6e", - "symbol": "CCC", - "decimals": 18, - "name": "Cyber Crowd Chain", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xfb09122d1e17170c1807bfc1ef3c614bd85e1b6e.png", - "aggregators": ["CoinMarketCap", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x435998003ccb7abeaa392494c89f7799fe241db5": { - "address": "0x435998003ccb7abeaa392494c89f7799fe241db5", - "symbol": "INTERN", - "decimals": 18, - "name": "Interns", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x435998003ccb7abeaa392494c89f7799fe241db5.png", - "aggregators": ["CoinMarketCap", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x5ca83216fae72717332469e6a2eb28c4bf9af9ec": { - "address": "0x5ca83216fae72717332469e6a2eb28c4bf9af9ec", - "symbol": "0XC", - "decimals": 18, - "name": "0xCalls", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x5ca83216fae72717332469e6a2eb28c4bf9af9ec.png", - "aggregators": ["CoinMarketCap", "Rubic", "Sonarwatch"], - "occurrences": 3 - }, - "0x25d01b5b39e58843291586a5d8afddf744bdeb13": { - "address": "0x25d01b5b39e58843291586a5d8afddf744bdeb13", - "symbol": "MAGA", - "decimals": 9, - "name": "Make America Great Again", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x25d01b5b39e58843291586a5d8afddf744bdeb13.png", - "aggregators": ["CoinMarketCap", "Socket", "Rubic"], - "occurrences": 3 - }, - "0x177c3973b16c16fb5d934ca92b6e6afb03383268": { - "address": "0x177c3973b16c16fb5d934ca92b6e6afb03383268", - "symbol": "P404", - "decimals": 18, - "name": "Potion 404", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x177c3973b16c16fb5d934ca92b6e6afb03383268.png", - "aggregators": ["CoinMarketCap", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x9a52590bce99dcab5c6dc83b8da08974eeeaa06b": { - "address": "0x9a52590bce99dcab5c6dc83b8da08974eeeaa06b", - "symbol": "BABYTRUMP", - "decimals": 9, - "name": "Baby Trump", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x9a52590bce99dcab5c6dc83b8da08974eeeaa06b.png", - "aggregators": ["CoinMarketCap", "Socket", "Rubic"], - "occurrences": 3 - }, - "0x954a75564cb355ea2d6fccc6c1212fd01fdcb06f": { - "address": "0x954a75564cb355ea2d6fccc6c1212fd01fdcb06f", - "symbol": "LOONG", - "decimals": 18, - "name": "PLUMPY DRAGONS", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x954a75564cb355ea2d6fccc6c1212fd01fdcb06f.png", - "aggregators": ["CoinMarketCap", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x62126ec407eae34393ab88b1f5d57e8566e570be": { - "address": "0x62126ec407eae34393ab88b1f5d57e8566e570be", - "symbol": "MATE", - "decimals": 18, - "name": "VIRTUMATE", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x62126ec407eae34393ab88b1f5d57e8566e570be.png", - "aggregators": ["CoinMarketCap", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x8b8aa7777e18408c07b0ed52ca3dd5bdab34eb7e": { - "address": "0x8b8aa7777e18408c07b0ed52ca3dd5bdab34eb7e", - "symbol": "PDX", - "decimals": 18, - "name": "Paradox", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x8b8aa7777e18408c07b0ed52ca3dd5bdab34eb7e.png", - "aggregators": ["CoinMarketCap", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x179f782d7fbe745f40b20e0c7dbb6205d43fa4b9": { - "address": "0x179f782d7fbe745f40b20e0c7dbb6205d43fa4b9", - "symbol": "INSP", - "decimals": 9, - "name": "Inspire AI", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x179f782d7fbe745f40b20e0c7dbb6205d43fa4b9.png", - "aggregators": ["CoinMarketCap", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x35282d87011f87508d457f08252bc5bfa52e10a0": { - "address": "0x35282d87011f87508d457f08252bc5bfa52e10a0", - "symbol": "ULTRA", - "decimals": 18, - "name": "ULTRA Prisma Finance", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x35282d87011f87508d457f08252bc5bfa52e10a0.png", - "aggregators": ["CoinMarketCap", "Rubic", "Rango"], - "occurrences": 3 - }, - "0xa74a05b17d72e9b0781d973e7963dfaacd266b94": { - "address": "0xa74a05b17d72e9b0781d973e7963dfaacd266b94", - "symbol": "OASIS", - "decimals": 18, - "name": "OASIS", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xa74a05b17d72e9b0781d973e7963dfaacd266b94.png", - "aggregators": ["CoinMarketCap", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x01194726b1b55bbf99cb083ba8e5dcc0834adbc3": { - "address": "0x01194726b1b55bbf99cb083ba8e5dcc0834adbc3", - "symbol": "ARCADE", - "decimals": 9, - "name": "ArcadeFi", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x01194726b1b55bbf99cb083ba8e5dcc0834adbc3.png", - "aggregators": ["CoinMarketCap", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x62431de84c503e152a8957ff51c8945aaaa7d929": { - "address": "0x62431de84c503e152a8957ff51c8945aaaa7d929", - "symbol": "BLAST", - "decimals": 9, - "name": "BlastAI", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x62431de84c503e152a8957ff51c8945aaaa7d929.png", - "aggregators": ["CoinMarketCap", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x9012744b7a564623b6c3e40b144fc196bdedf1a9": { - "address": "0x9012744b7a564623b6c3e40b144fc196bdedf1a9", - "symbol": "OXN", - "decimals": 18, - "name": "0xNumber", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x9012744b7a564623b6c3e40b144fc196bdedf1a9.png", - "aggregators": ["CoinMarketCap", "Rubic", "Sonarwatch"], - "occurrences": 3 - }, - "0xa6ac7dea007df1b6a62c9d8695936051647e30bc": { - "address": "0xa6ac7dea007df1b6a62c9d8695936051647e30bc", - "symbol": "SORA", - "decimals": 9, - "name": "SORA", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xa6ac7dea007df1b6a62c9d8695936051647e30bc.png", - "aggregators": ["CoinMarketCap", "Socket", "Rubic"], - "occurrences": 3 - }, - "0xe13cf110176e0dd6590536cd391b8a3522475f82": { - "address": "0xe13cf110176e0dd6590536cd391b8a3522475f82", - "symbol": "RENT", - "decimals": 9, - "name": "RentAI", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xe13cf110176e0dd6590536cd391b8a3522475f82.png", - "aggregators": ["CoinMarketCap", "Rubic", "Sonarwatch"], - "occurrences": 3 - }, - "0xf86cfce1e746456135d7face48c2916d7d3cb676": { - "address": "0xf86cfce1e746456135d7face48c2916d7d3cb676", - "symbol": "EFT", - "decimals": 18, - "name": "Everflow", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xf86cfce1e746456135d7face48c2916d7d3cb676.png", - "aggregators": ["CoinMarketCap", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x74fe27e70db10147f8b6b38b3c9d12bbdcf3b5af": { - "address": "0x74fe27e70db10147f8b6b38b3c9d12bbdcf3b5af", - "symbol": "IRYDE", - "decimals": 18, - "name": "iRYDE COIN", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x74fe27e70db10147f8b6b38b3c9d12bbdcf3b5af.png", - "aggregators": ["CoinMarketCap", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x78ba134c3ace18e69837b01703d07f0db6fb0a60": { - "address": "0x78ba134c3ace18e69837b01703d07f0db6fb0a60", - "symbol": "SNT", - "decimals": 18, - "name": "Sentinel Bot AI", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x78ba134c3ace18e69837b01703d07f0db6fb0a60.png", - "aggregators": ["CoinMarketCap", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x5044d567f7b30891639d982a05726a6bfe8bae6a": { - "address": "0x5044d567f7b30891639d982a05726a6bfe8bae6a", - "symbol": "BRAINERS", - "decimals": 18, - "name": "Brainers", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x5044d567f7b30891639d982a05726a6bfe8bae6a.png", - "aggregators": ["CoinMarketCap", "Rubic", "Rango"], - "occurrences": 3 - }, - "0xc6221ac4e99066ea5443acd67d6108f874e2533d": { - "address": "0xc6221ac4e99066ea5443acd67d6108f874e2533d", - "symbol": "DCI", - "decimals": 18, - "name": "Decentralized Cloud Infrastructure", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xc6221ac4e99066ea5443acd67d6108f874e2533d.png", - "aggregators": ["CoinMarketCap", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x72a93697a5ac73cfee39ff87298220f77c538611": { - "address": "0x72a93697a5ac73cfee39ff87298220f77c538611", - "symbol": "DARE", - "decimals": 18, - "name": "The Dare", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x72a93697a5ac73cfee39ff87298220f77c538611.png", - "aggregators": ["CoinMarketCap", "Rubic", "Rango"], - "occurrences": 3 - }, - "0xf898bae008cd85046431ab0a75f00689d6aa1b1c": { - "address": "0xf898bae008cd85046431ab0a75f00689d6aa1b1c", - "symbol": "VPN", - "decimals": 18, - "name": "0xVPN.org", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xf898bae008cd85046431ab0a75f00689d6aa1b1c.png", - "aggregators": ["CoinMarketCap", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x76aab5fd2243d99eac92d4d9ebf23525d3ace4ec": { - "address": "0x76aab5fd2243d99eac92d4d9ebf23525d3ace4ec", - "symbol": "GGMT", - "decimals": 18, - "name": "GG MetaGame", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x76aab5fd2243d99eac92d4d9ebf23525d3ace4ec.png", - "aggregators": ["CoinMarketCap", "Rubic", "Rango"], - "occurrences": 3 - }, - "0xd1679946ba555ebf5cb38e8b089ef1e1e5d2abb1": { - "address": "0xd1679946ba555ebf5cb38e8b089ef1e1e5d2abb1", - "symbol": "GUARDAI", - "decimals": 18, - "name": "GuardAI", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xd1679946ba555ebf5cb38e8b089ef1e1e5d2abb1.png", - "aggregators": ["CoinMarketCap", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x102dc1840f0c3c179670f21fa63597e82df34e60": { - "address": "0x102dc1840f0c3c179670f21fa63597e82df34e60", - "symbol": "VIRTU", - "decimals": 18, - "name": "VIRTUCLOUD", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x102dc1840f0c3c179670f21fa63597e82df34e60.png", - "aggregators": ["CoinMarketCap", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x00199c511dc889b8155fa425fc0363ed481e8f48": { - "address": "0x00199c511dc889b8155fa425fc0363ed481e8f48", - "symbol": "BRICK", - "decimals": 18, - "name": "Brick Block", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x00199c511dc889b8155fa425fc0363ed481e8f48.png", - "aggregators": ["CoinMarketCap", "Rubic", "Sonarwatch"], - "occurrences": 3 - }, - "0x3d234a9d23f01c5556ad3dfa88f470f8982ab1b4": { - "address": "0x3d234a9d23f01c5556ad3dfa88f470f8982ab1b4", - "symbol": "VATR", - "decimals": 18, - "name": "Vatra INU", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x3d234a9d23f01c5556ad3dfa88f470f8982ab1b4.png", - "aggregators": ["CoinMarketCap", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x401e6d25c2991824299aa5dbe67c82486a64381d": { - "address": "0x401e6d25c2991824299aa5dbe67c82486a64381d", - "symbol": "BNSAI", - "decimals": 18, - "name": "bonsAI Network", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x401e6d25c2991824299aa5dbe67c82486a64381d.png", - "aggregators": ["CoinMarketCap", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x4cb1e6c430bb4b874869fd6049ed07ae975b02f1": { - "address": "0x4cb1e6c430bb4b874869fd6049ed07ae975b02f1", - "symbol": "$SWIPES", - "decimals": 9, - "name": "BNDR", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x4cb1e6c430bb4b874869fd6049ed07ae975b02f1.png", - "aggregators": ["CoinMarketCap", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x1888847b50bc1833e268348896dee58701fc06a9": { - "address": "0x1888847b50bc1833e268348896dee58701fc06a9", - "symbol": "PIZZA", - "decimals": 18, - "name": "Bitcoin Pizza Day", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x1888847b50bc1833e268348896dee58701fc06a9.png", - "aggregators": ["CoinMarketCap", "Socket", "Rubic"], - "occurrences": 3 - }, - "0x9361adf2b72f413d96f81ff40d794b47ce13b331": { - "address": "0x9361adf2b72f413d96f81ff40d794b47ce13b331", - "symbol": "BARRON", - "decimals": 9, - "name": "Son of Trump", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x9361adf2b72f413d96f81ff40d794b47ce13b331.png", - "aggregators": ["CoinMarketCap", "Socket", "Rubic"], - "occurrences": 3 - }, - "0x449a917fb4910cb2f57335d619e71674ffb8bc44": { - "address": "0x449a917fb4910cb2f57335d619e71674ffb8bc44", - "symbol": "MEGA", - "decimals": 9, - "name": "MEGA", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x449a917fb4910cb2f57335d619e71674ffb8bc44.png", - "aggregators": ["CoinMarketCap", "Socket", "Rubic"], - "occurrences": 3 - }, - "0x0f8958c757b65881cec98028cae0c4ee45726eae": { - "address": "0x0f8958c757b65881cec98028cae0c4ee45726eae", - "symbol": "DCN", - "decimals": 18, - "name": "Compute Network", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x0f8958c757b65881cec98028cae0c4ee45726eae.png", - "aggregators": ["CoinMarketCap", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x83578055e28c626d36ed7015541641825a3e6e54": { - "address": "0x83578055e28c626d36ed7015541641825a3e6e54", - "symbol": "MAGA", - "decimals": 9, - "name": "Simpson MAGA", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x83578055e28c626d36ed7015541641825a3e6e54.png", - "aggregators": ["CoinMarketCap", "Socket", "Rubic"], - "occurrences": 3 - }, - "0x6d5e345796f6fc568798aac6e8704e736cc1bf2b": { - "address": "0x6d5e345796f6fc568798aac6e8704e736cc1bf2b", - "symbol": "VALU", - "decimals": 18, - "name": "Value", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x6d5e345796f6fc568798aac6e8704e736cc1bf2b.png", - "aggregators": ["CoinMarketCap", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x5fde99e121f3ac02e7d6acb081db1f89c1e93c17": { - "address": "0x5fde99e121f3ac02e7d6acb081db1f89c1e93c17", - "symbol": "MYT", - "decimals": 18, - "name": "MYSO Token", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x5fde99e121f3ac02e7d6acb081db1f89c1e93c17.png", - "aggregators": ["CoinMarketCap", "Rubic", "Rango"], - "occurrences": 3 - }, - "0xa3889a5f5f84f4296ff734081ad6d333838a56b5": { - "address": "0xa3889a5f5f84f4296ff734081ad6d333838a56b5", - "symbol": "WIZ", - "decimals": 9, - "name": "Wizard", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xa3889a5f5f84f4296ff734081ad6d333838a56b5.png", - "aggregators": ["CoinMarketCap", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x86b69f38bea3e02f68ff88534bc61ec60e772b19": { - "address": "0x86b69f38bea3e02f68ff88534bc61ec60e772b19", - "symbol": "TRUMP", - "decimals": 9, - "name": "NEVER SURRENDER", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x86b69f38bea3e02f68ff88534bc61ec60e772b19.png", - "aggregators": ["CoinMarketCap", "Socket", "Rubic"], - "occurrences": 3 - }, - "0x32f0d04b48427a14fb3cbc73db869e691a9fec6f": { - "address": "0x32f0d04b48427a14fb3cbc73db869e691a9fec6f", - "symbol": "ECI", - "decimals": 18, - "name": "Euro Cup Inu", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x32f0d04b48427a14fb3cbc73db869e691a9fec6f.png", - "aggregators": ["CoinMarketCap", "Rubic", "Rango"], - "occurrences": 3 - }, - "0xb3a3606ea55fe45e6635b221592674f5dbda3292": { - "address": "0xb3a3606ea55fe45e6635b221592674f5dbda3292", - "symbol": "TRUMP", - "decimals": 9, - "name": "MAGA", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xb3a3606ea55fe45e6635b221592674f5dbda3292.png", - "aggregators": ["CoinMarketCap", "Socket", "Rubic"], - "occurrences": 3 - }, - "0xf5adf74eeca8b91a4a72298ba260b14d9b6a89cd": { - "address": "0xf5adf74eeca8b91a4a72298ba260b14d9b6a89cd", - "symbol": "DJT", - "decimals": 9, - "name": "Trump Media", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xf5adf74eeca8b91a4a72298ba260b14d9b6a89cd.png", - "aggregators": ["CoinMarketCap", "Socket", "Rubic"], - "occurrences": 3 - }, - "0x53288aa471511fb0de8bfe17923f8eca64607a54": { - "address": "0x53288aa471511fb0de8bfe17923f8eca64607a54", - "symbol": "STRUMP", - "decimals": 9, - "name": "Super Trump", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x53288aa471511fb0de8bfe17923f8eca64607a54.png", - "aggregators": ["CoinMarketCap", "Socket", "Rubic"], - "occurrences": 3 - }, - "0xaed18826655bf9167a377c8647132a937d6a4f36": { - "address": "0xaed18826655bf9167a377c8647132a937d6a4f36", - "symbol": "TBD", - "decimals": 18, - "name": "THE BIG DEBATE", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xaed18826655bf9167a377c8647132a937d6a4f36.png", - "aggregators": ["CoinMarketCap", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x62e3b3c557c792c4a70765b3cdb5b56b1879f82d": { - "address": "0x62e3b3c557c792c4a70765b3cdb5b56b1879f82d", - "symbol": "FOX", - "decimals": 9, - "name": "Fox", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x62e3b3c557c792c4a70765b3cdb5b56b1879f82d.png", - "aggregators": ["CoinMarketCap", "Socket", "Rubic"], - "occurrences": 3 - }, - "0xe6d6043d19e7479d1ffe76dddc7f68467234462b": { - "address": "0xe6d6043d19e7479d1ffe76dddc7f68467234462b", - "symbol": "FOUR", - "decimals": 18, - "name": "4", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xe6d6043d19e7479d1ffe76dddc7f68467234462b.png", - "aggregators": ["CoinMarketCap", "Socket", "Rubic"], - "occurrences": 3 - }, - "0x1776c8ba4883b7e8f710e8f7b68646788340c177": { - "address": "0x1776c8ba4883b7e8f710e8f7b68646788340c177", - "symbol": "PTC", - "decimals": 18, - "name": "Patriots Coin", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x1776c8ba4883b7e8f710e8f7b68646788340c177.png", - "aggregators": ["CoinMarketCap", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x71cd2559d123fbe4b6743dbae076f2cd1016936c": { - "address": "0x71cd2559d123fbe4b6743dbae076f2cd1016936c", - "symbol": "DUCKY", - "decimals": 18, - "name": "Ducky", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x71cd2559d123fbe4b6743dbae076f2cd1016936c.png", - "aggregators": ["CoinMarketCap", "Socket", "Rubic"], - "occurrences": 3 - }, - "0x43fd9de06bb69ad771556e171f960a91c42d2955": { - "address": "0x43fd9de06bb69ad771556e171f960a91c42d2955", - "symbol": "BTC", - "decimals": 9, - "name": "Bullish Trump Coin", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x43fd9de06bb69ad771556e171f960a91c42d2955.png", - "aggregators": ["CoinMarketCap", "Socket", "Rubic"], - "occurrences": 3 - }, - "0xcab66bc319c96a2921caed30e990b20f2322357e": { - "address": "0xcab66bc319c96a2921caed30e990b20f2322357e", - "symbol": "TRUMP", - "decimals": 9, - "name": "Simpson Trump", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xcab66bc319c96a2921caed30e990b20f2322357e.png", - "aggregators": ["CoinMarketCap", "Socket", "Rubic"], - "occurrences": 3 - }, - "0x42069cc15f5befb510430d22ff1c9a1b3ae22cfe": { - "address": "0x42069cc15f5befb510430d22ff1c9a1b3ae22cfe", - "symbol": "RARE", - "decimals": 18, - "name": "Rare Pepe", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x42069cc15f5befb510430d22ff1c9a1b3ae22cfe.png", - "aggregators": ["CoinMarketCap", "Socket", "Rubic"], - "occurrences": 3 - }, - "0xf2c5780e2dda407781c0c5eccc9320d5988ea0a6": { - "address": "0xf2c5780e2dda407781c0c5eccc9320d5988ea0a6", - "symbol": "DCE", - "decimals": 9, - "name": "Decentra Ecosystem", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xf2c5780e2dda407781c0c5eccc9320d5988ea0a6.png", - "aggregators": ["CoinMarketCap", "Rubic", "Rango"], - "occurrences": 3 - }, - "0xa28cbb24313df3907b8d87685bab2c1d0bd46b60": { - "address": "0xa28cbb24313df3907b8d87685bab2c1d0bd46b60", - "symbol": "ATX", - "decimals": 18, - "name": "AUTOMATIX", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xa28cbb24313df3907b8d87685bab2c1d0bd46b60.png", - "aggregators": ["CoinMarketCap", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x99999999999997fceb5549c58ab66df52385ca4d": { - "address": "0x99999999999997fceb5549c58ab66df52385ca4d", - "symbol": "GEN", - "decimals": 18, - "name": "Genesis", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x99999999999997fceb5549c58ab66df52385ca4d.png", - "aggregators": ["CoinMarketCap", "Socket", "Rubic"], - "occurrences": 3 - }, - "0x180000dda70eb7fb7f3e10e52e88ce88f46e3b3a": { - "address": "0x180000dda70eb7fb7f3e10e52e88ce88f46e3b3a", - "symbol": "KABOSU", - "decimals": 9, - "name": "KABOSU", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x180000dda70eb7fb7f3e10e52e88ce88f46e3b3a.png", - "aggregators": ["CoinMarketCap", "Socket", "Rubic"], - "occurrences": 3 - }, - "0x8a13f32e2a556830f3a5e97a96ae941abfcb1d5c": { - "address": "0x8a13f32e2a556830f3a5e97a96ae941abfcb1d5c", - "symbol": "ELF", - "decimals": 18, - "name": "ELF", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x8a13f32e2a556830f3a5e97a96ae941abfcb1d5c.png", - "aggregators": ["CoinMarketCap", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x8b68f1d0246320d5caf8cd9828faab28d66ba749": { - "address": "0x8b68f1d0246320d5caf8cd9828faab28d66ba749", - "symbol": "SMART", - "decimals": 9, - "name": "SmartHub", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x8b68f1d0246320d5caf8cd9828faab28d66ba749.png", - "aggregators": ["CoinMarketCap", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x52e6654aee5d59e13ae30b48f8f5dbeb97f708cd": { - "address": "0x52e6654aee5d59e13ae30b48f8f5dbeb97f708cd", - "symbol": "TSUJI", - "decimals": 9, - "name": "Tsutsuji", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x52e6654aee5d59e13ae30b48f8f5dbeb97f708cd.png", - "aggregators": ["CoinMarketCap", "Socket", "Rubic"], - "occurrences": 3 - }, - "0x07e98f367aade7f81ddc90189d5d045c78e611d5": { - "address": "0x07e98f367aade7f81ddc90189d5d045c78e611d5", - "symbol": "VISTADOG", - "decimals": 18, - "name": "VISTADOG", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x07e98f367aade7f81ddc90189d5d045c78e611d5.png", - "aggregators": ["CoinMarketCap", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x69d0981fadffd225b93936d7436a412fa9821652": { - "address": "0x69d0981fadffd225b93936d7436a412fa9821652", - "symbol": "POPO", - "decimals": 18, - "name": "Popo", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x69d0981fadffd225b93936d7436a412fa9821652.png", - "aggregators": ["CoinMarketCap", "Socket", "Rubic"], - "occurrences": 3 - }, - "0x7391425ca7cee3ee03e09794b819291a572af83e": { - "address": "0x7391425ca7cee3ee03e09794b819291a572af83e", - "symbol": "MOG", - "decimals": 18, - "name": "MOG CAT", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x7391425ca7cee3ee03e09794b819291a572af83e.png", - "aggregators": ["CoinMarketCap", "Socket", "Rubic"], - "occurrences": 3 - }, - "0x2e8f3ebc2aacc6df50823da82fc63b253a2272d1": { - "address": "0x2e8f3ebc2aacc6df50823da82fc63b253a2272d1", - "symbol": "KERMIT", - "decimals": 18, - "name": "Kermit", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x2e8f3ebc2aacc6df50823da82fc63b253a2272d1.png", - "aggregators": ["CoinMarketCap", "Socket", "Rubic"], - "occurrences": 3 - }, - "0x4cd27e18757baa3a4fe7b0ab7db083002637a6c5": { - "address": "0x4cd27e18757baa3a4fe7b0ab7db083002637a6c5", - "symbol": "LAIKA", - "decimals": 18, - "name": "laikaCTO", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x4cd27e18757baa3a4fe7b0ab7db083002637a6c5.png", - "aggregators": ["CoinMarketCap", "Socket", "Rubic"], - "occurrences": 3 - }, - "0x339058ca41e17b55b6dd295373c5d3cbe8000cd9": { - "address": "0x339058ca41e17b55b6dd295373c5d3cbe8000cd9", - "symbol": "NEIRO", - "decimals": 18, - "name": "Neiro Pump", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x339058ca41e17b55b6dd295373c5d3cbe8000cd9.png", - "aggregators": ["CoinMarketCap", "Socket", "Rubic"], - "occurrences": 3 - }, - "0x78e927fcfb062599d8295163f0808a6fcda7db24": { - "address": "0x78e927fcfb062599d8295163f0808a6fcda7db24", - "symbol": "TURBO", - "decimals": 18, - "name": "Turbo Browser", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x78e927fcfb062599d8295163f0808a6fcda7db24.png", - "aggregators": ["CoinMarketCap", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x2637ffece0217ae626529f6775167020f1c17d83": { - "address": "0x2637ffece0217ae626529f6775167020f1c17d83", - "symbol": "PAL", - "decimals": 18, - "name": "Pal", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x2637ffece0217ae626529f6775167020f1c17d83.png", - "aggregators": ["CoinMarketCap", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x2bb84fd8f7ed0ffae3da36ad60d4d7840bdeeada": { - "address": "0x2bb84fd8f7ed0ffae3da36ad60d4d7840bdeeada", - "symbol": "GROK", - "decimals": 18, - "name": "SORA GROK", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x2bb84fd8f7ed0ffae3da36ad60d4d7840bdeeada.png", - "aggregators": ["CoinMarketCap", "Socket", "Rubic"], - "occurrences": 3 - }, - "0x9b69667f602f15ef2d09a9a18489c788e327461e": { - "address": "0x9b69667f602f15ef2d09a9a18489c788e327461e", - "symbol": "DOGS", - "decimals": 18, - "name": "TRUMP DOGS", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x9b69667f602f15ef2d09a9a18489c788e327461e.png", - "aggregators": ["CoinMarketCap", "Socket", "Rubic"], - "occurrences": 3 - }, - "0xda2e903b0b67f30bf26bd3464f9ee1a383bbbe5f": { - "address": "0xda2e903b0b67f30bf26bd3464f9ee1a383bbbe5f", - "symbol": "MAGA", - "decimals": 18, - "name": "PEPE MAGA", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xda2e903b0b67f30bf26bd3464f9ee1a383bbbe5f.png", - "aggregators": ["CoinMarketCap", "Socket", "Rubic"], - "occurrences": 3 - }, - "0xb843ce5f8c8a3d0d72e089194f5d9f9df0df74e5": { - "address": "0xb843ce5f8c8a3d0d72e089194f5d9f9df0df74e5", - "symbol": "PEEZY", - "decimals": 8, - "name": "Young Peezy", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xb843ce5f8c8a3d0d72e089194f5d9f9df0df74e5.png", - "aggregators": ["CoinMarketCap", "Socket", "Rubic"], - "occurrences": 3 - }, - "0x555907a0b5c32df0feb35401187aed60a9191d74": { - "address": "0x555907a0b5c32df0feb35401187aed60a9191d74", - "symbol": "TRUMP", - "decimals": 18, - "name": "trumpwifhat", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x555907a0b5c32df0feb35401187aed60a9191d74.png", - "aggregators": ["CoinMarketCap", "Socket", "Rubic"], - "occurrences": 3 - }, - "0x694209b7612a6219eac9446d5718fe23599a991b": { - "address": "0x694209b7612a6219eac9446d5718fe23599a991b", - "symbol": "SMIDGE ", - "decimals": 9, - "name": "Smidge", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x694209b7612a6219eac9446d5718fe23599a991b.png", - "aggregators": ["CoinMarketCap", "Socket", "Rubic"], - "occurrences": 3 - }, - "0x5ff0d2de4cd862149c6672c99b7edf3b092667a3": { - "address": "0x5ff0d2de4cd862149c6672c99b7edf3b092667a3", - "symbol": "SPX", - "decimals": 18, - "name": "SPX69000", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x5ff0d2de4cd862149c6672c99b7edf3b092667a3.png", - "aggregators": ["CoinMarketCap", "Socket", "Rubic"], - "occurrences": 3 - }, - "0x5a59dd979754b09ea686ce93c98d4ce8bdcb43f2": { - "address": "0x5a59dd979754b09ea686ce93c98d4ce8bdcb43f2", - "symbol": "CROS", - "decimals": 18, - "name": "Cros", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x5a59dd979754b09ea686ce93c98d4ce8bdcb43f2.png", - "aggregators": ["CoinMarketCap", "Rubic", "Sonarwatch"], - "occurrences": 3 - }, - "0x37d299d9900209c3566254cfe59bfe6ff8f8c295": { - "address": "0x37d299d9900209c3566254cfe59bfe6ff8f8c295", - "symbol": "BITCOIN", - "decimals": 18, - "name": "HarryPotterObamaSonic10Inu 2.0", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x37d299d9900209c3566254cfe59bfe6ff8f8c295.png", - "aggregators": ["CoinMarketCap", "Socket", "Rubic"], - "occurrences": 3 - }, - "0x6a9b3fdb4a3296ecba1ebfa2cf4a8b16032a769c": { - "address": "0x6a9b3fdb4a3296ecba1ebfa2cf4a8b16032a769c", - "symbol": "SMILE", - "decimals": 18, - "name": "bitSmiley", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x6a9b3fdb4a3296ecba1ebfa2cf4a8b16032a769c.png", - "aggregators": ["CoinMarketCap", "Rubic", "Sonarwatch"], - "occurrences": 3 - }, - "0x8cb8c4263eb26b2349d74ea2cb1b27bc40709e12": { - "address": "0x8cb8c4263eb26b2349d74ea2cb1b27bc40709e12", - "symbol": "EYWA", - "decimals": 18, - "name": "EYWA", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x8cb8c4263eb26b2349d74ea2cb1b27bc40709e12.png", - "aggregators": ["CoinMarketCap", "Rubic", "Sonarwatch"], - "occurrences": 3 - }, - "0x67de8414db712c1c21f23ba611785cfcb94b8135": { - "address": "0x67de8414db712c1c21f23ba611785cfcb94b8135", - "symbol": "MEGA", - "decimals": 18, - "name": "Make Ethereum Great Again", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x67de8414db712c1c21f23ba611785cfcb94b8135.png", - "aggregators": ["CoinMarketCap", "Socket", "Rubic"], - "occurrences": 3 - }, - "0xeda7d2c70cd75d06947b7d0b0b0910ca9b07148a": { - "address": "0xeda7d2c70cd75d06947b7d0b0b0910ca9b07148a", - "symbol": "GATSBY", - "decimals": 9, - "name": "Elon Musks dog", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xeda7d2c70cd75d06947b7d0b0b0910ca9b07148a.png", - "aggregators": ["CoinMarketCap", "Socket", "Rubic"], - "occurrences": 3 - }, - "0x698e222aaa7082bdae18cb4722bc5aebb31c2002": { - "address": "0x698e222aaa7082bdae18cb4722bc5aebb31c2002", - "symbol": "GNOME", - "decimals": 9, - "name": "GNOME CHILD", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x698e222aaa7082bdae18cb4722bc5aebb31c2002.png", - "aggregators": ["CoinMarketCap", "Socket", "Rubic"], - "occurrences": 3 - }, - "0xe0805c80588913c1c2c89ea4a8dcf485d4038a3e": { - "address": "0xe0805c80588913c1c2c89ea4a8dcf485d4038a3e", - "symbol": "CARD", - "decimals": 9, - "name": "BitcoinBlack", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xe0805c80588913c1c2c89ea4a8dcf485d4038a3e.png", - "aggregators": ["CoinMarketCap", "Socket", "Rubic"], - "occurrences": 3 - }, - "0x36e45dcfe1d3d85a78c65c3bad4068dee4f2a25e": { - "address": "0x36e45dcfe1d3d85a78c65c3bad4068dee4f2a25e", - "symbol": "TRRUE", - "decimals": 18, - "name": "TRRUE", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x36e45dcfe1d3d85a78c65c3bad4068dee4f2a25e.png", - "aggregators": ["CoinMarketCap", "Rubic", "Sonarwatch"], - "occurrences": 3 - }, - "0x8a462e6a0051d006e33152fbeadfb9a14198de30": { - "address": "0x8a462e6a0051d006e33152fbeadfb9a14198de30", - "symbol": "FYDE", - "decimals": 18, - "name": "Fyde", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x8a462e6a0051d006e33152fbeadfb9a14198de30.png", - "aggregators": ["CoinMarketCap", "Rubic", "Sonarwatch"], - "occurrences": 3 - }, - "0xedbf98724a86f92baefac101082c366e96f1e9d9": { - "address": "0xedbf98724a86f92baefac101082c366e96f1e9d9", - "symbol": "BFT", - "decimals": 18, - "name": "BiFinance Token", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xedbf98724a86f92baefac101082c366e96f1e9d9.png", - "aggregators": ["CoinMarketCap", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x3a4f40631a4f906c2bad353ed06de7a5d3fcb430": { - "address": "0x3a4f40631a4f906c2bad353ed06de7a5d3fcb430", - "symbol": "PLA", - "decimals": 18, - "name": "PlayDapp Token", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x3a4f40631a4f906c2bad353ed06de7a5d3fcb430.png", - "aggregators": ["Metamask", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x08711d3b02c8758f2fb3ab4e80228418a7f8e39c": { - "address": "0x08711d3b02c8758f2fb3ab4e80228418a7f8e39c", - "symbol": "EDG", - "decimals": 18, - "name": "Edgeless", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x08711d3b02c8758f2fb3ab4e80228418a7f8e39c.png", - "aggregators": ["Metamask", "Rubic", "Bancor"], - "occurrences": 3 - }, - "0x39bb259f66e1c59d5abef88375979b4d20d98022": { - "address": "0x39bb259f66e1c59d5abef88375979b4d20d98022", - "symbol": "WAX", - "decimals": 8, - "name": "WAX Token", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x39bb259f66e1c59d5abef88375979b4d20d98022.png", - "aggregators": ["Metamask", "Rubic", "Bancor"], - "occurrences": 3 - }, - "0xf50a07e4ff052a14f3f608da8936d8ae0ed5be50": { - "address": "0xf50a07e4ff052a14f3f608da8936d8ae0ed5be50", - "symbol": "FLOKIPUP", - "decimals": 9, - "name": "Floki Pup", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xf50a07e4ff052a14f3f608da8936d8ae0ed5be50.png", - "aggregators": ["1inch", "Rubic", "Rango"], - "occurrences": 3 - }, - "0xc50ef449171a51fbeafd7c562b064b6471c36caa": { - "address": "0xc50ef449171a51fbeafd7c562b064b6471c36caa", - "symbol": "ZINU", - "decimals": 9, - "name": "ZINU", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xc50ef449171a51fbeafd7c562b064b6471c36caa.png", - "aggregators": ["1inch", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x1e31b601488e97bc247c57af7b6aa336edbc5477": { - "address": "0x1e31b601488e97bc247c57af7b6aa336edbc5477", - "symbol": "UP", - "decimals": 18, - "name": "Unicorn Power", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x1e31b601488e97bc247c57af7b6aa336edbc5477.png", - "aggregators": ["1inch", "Socket", "Rubic"], - "occurrences": 3 - }, - "0x9a0c8ff858d273f57072d714bca7411d717501d7": { - "address": "0x9a0c8ff858d273f57072d714bca7411d717501d7", - "symbol": "ST1INCH", - "decimals": 18, - "name": "Staking 1INCH v2", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x9a0c8ff858d273f57072d714bca7411d717501d7.png", - "aggregators": ["1inch", "Socket", "Rubic"], - "occurrences": 3 - }, - "0xaccfac2339e16dc80c50d2fa81b5c2b049b4f947": { - "address": "0xaccfac2339e16dc80c50d2fa81b5c2b049b4f947", - "symbol": "DST1INCH", - "decimals": 18, - "name": "Delegated st1INCH", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xaccfac2339e16dc80c50d2fa81b5c2b049b4f947.png", - "aggregators": ["1inch", "Socket", "Rubic"], - "occurrences": 3 - }, - "0x5af2be193a6abca9c8817001f45744777db30756": { - "address": "0x5af2be193a6abca9c8817001f45744777db30756", - "symbol": "VGX", - "decimals": 8, - "name": "Voyager", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x5af2be193a6abca9c8817001f45744777db30756.png", - "aggregators": ["LiFi", "Socket", "Rubic"], - "occurrences": 3 - }, - "0xb5a4ac5b04e777230ba3381195eff6a60c3934f2": { - "address": "0xb5a4ac5b04e777230ba3381195eff6a60c3934f2", - "symbol": "SURE", - "decimals": 18, - "name": "inSure", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xb5a4ac5b04e777230ba3381195eff6a60c3934f2.png", - "aggregators": ["LiFi", "Socket", "Rubic"], - "occurrences": 3 - }, - "0xcf8f9555d55ce45a3a33a81d6ef99a2a2e71dee2": { - "address": "0xcf8f9555d55ce45a3a33a81d6ef99a2a2e71dee2", - "symbol": "CBIX7", - "decimals": 18, - "name": "CBIX7", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xcf8f9555d55ce45a3a33a81d6ef99a2a2e71dee2.png", - "aggregators": ["LiFi", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x07c44b5ac257c2255aa0933112c3b75a6bff3cb1": { - "address": "0x07c44b5ac257c2255aa0933112c3b75a6bff3cb1", - "symbol": "OLTC", - "decimals": 18, - "name": "BoringDAO LTC", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x07c44b5ac257c2255aa0933112c3b75a6bff3cb1.png", - "aggregators": ["LiFi", "Socket", "Rubic"], - "occurrences": 3 - }, - "0xbb22d59b73d7a6f3a8a83a214becc67eb3b511fe": { - "address": "0xbb22d59b73d7a6f3a8a83a214becc67eb3b511fe", - "symbol": "XRETH", - "decimals": 18, - "name": "Constellation Staked ETH", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xbb22d59b73d7a6f3a8a83a214becc67eb3b511fe.png", - "aggregators": ["LiFi", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x0000000000071821e8033345a7be174647be0706": { - "address": "0x0000000000071821e8033345a7be174647be0706", - "symbol": "SCRY", - "decimals": 18, - "name": "Scry Protocol", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x0000000000071821e8033345a7be174647be0706.png", - "aggregators": ["LiFi", "Socket", "Rango"], - "occurrences": 3 - }, - "0xb4d930279552397bba2ee473229f89ec245bc365": { - "address": "0xb4d930279552397bba2ee473229f89ec245bc365", - "symbol": "MAHA", - "decimals": 18, - "name": "MahaDAO", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xb4d930279552397bba2ee473229f89ec245bc365.png", - "aggregators": ["LiFi", "Socket", "Rubic"], - "occurrences": 3 - }, - "0x533e90705c0d1a364eb63d620ea16c8478179894": { - "address": "0x533e90705c0d1a364eb63d620ea16c8478179894", - "symbol": "TOMI", - "decimals": 18, - "name": "TOMI", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x533e90705c0d1a364eb63d620ea16c8478179894.png", - "aggregators": ["LiFi", "Socket", "Rubic"], - "occurrences": 3 - }, - "0x92b767185fb3b04f881e3ac8e5b0662a027a1d9f": { - "address": "0x92b767185fb3b04f881e3ac8e5b0662a027a1d9f", - "symbol": "CRDAI", - "decimals": 8, - "name": "Cream Dai Stablecoin", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x92b767185fb3b04f881e3ac8e5b0662a027a1d9f.png", - "aggregators": ["LiFi", "Socket", "Rubic"], - "occurrences": 3 - }, - "0x77a4b0bfe5c7257f67a1de1b99aa7e157035b1b2": { - "address": "0x77a4b0bfe5c7257f67a1de1b99aa7e157035b1b2", - "symbol": "7007", - "decimals": 18, - "name": "Token7007", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x77a4b0bfe5c7257f67a1de1b99aa7e157035b1b2.png", - "aggregators": ["LiFi", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x79c75e2e8720b39e258f41c37cc4f309e0b0ff80": { - "address": "0x79c75e2e8720b39e258f41c37cc4f309e0b0ff80", - "symbol": "SOUL", - "decimals": 8, - "name": "Phantasma Stake", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x79c75e2e8720b39e258f41c37cc4f309e0b0ff80.png", - "aggregators": ["LiFi", "Socket", "Rubic"], - "occurrences": 3 - }, - "0x53805a76e1f5ebbfe7115f16f9c87c2f7e633726": { - "address": "0x53805a76e1f5ebbfe7115f16f9c87c2f7e633726", - "symbol": "FETH", - "decimals": 18, - "name": "f(x) Protocol Fractional ETH", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x53805a76e1f5ebbfe7115f16f9c87c2f7e633726.png", - "aggregators": ["LiFi", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x155040625d7ae3e9cada9a73e3e44f76d3ed1409": { - "address": "0x155040625d7ae3e9cada9a73e3e44f76d3ed1409", - "symbol": "REVO", - "decimals": 18, - "name": "REVO", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x155040625d7ae3e9cada9a73e3e44f76d3ed1409.png", - "aggregators": ["LiFi", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x5dfe42eea70a3e6f93ee54ed9c321af07a85535c": { - "address": "0x5dfe42eea70a3e6f93ee54ed9c321af07a85535c", - "symbol": "UNION", - "decimals": 18, - "name": "Union Finance", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x5dfe42eea70a3e6f93ee54ed9c321af07a85535c.png", - "aggregators": ["LiFi", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x9c306a78b1a904e83115c05ac67c1ef07c653651": { - "address": "0x9c306a78b1a904e83115c05ac67c1ef07c653651", - "symbol": "ODOGE", - "decimals": 18, - "name": "BoringDAO DOGE", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x9c306a78b1a904e83115c05ac67c1ef07c653651.png", - "aggregators": ["LiFi", "Socket", "Rubic"], - "occurrences": 3 - }, - "0x8fb00fdebb4e83f2c58b3bcd6732ac1b6a7b7221": { - "address": "0x8fb00fdebb4e83f2c58b3bcd6732ac1b6a7b7221", - "symbol": "OORN", - "decimals": 8, - "name": "OORN", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x8fb00fdebb4e83f2c58b3bcd6732ac1b6a7b7221.png", - "aggregators": ["LiFi", "Rubic", "Rango"], - "occurrences": 3 - }, - "0xdc8af07a7861bedd104b8093ae3e9376fc8596d2": { - "address": "0xdc8af07a7861bedd104b8093ae3e9376fc8596d2", - "symbol": "RVF", - "decimals": 18, - "name": "Rocket Vault", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xdc8af07a7861bedd104b8093ae3e9376fc8596d2.png", - "aggregators": ["LiFi", "Socket", "Rubic"], - "occurrences": 3 - }, - "0xe18841d7a75866688e291703bde66c3378bd74a3": { - "address": "0xe18841d7a75866688e291703bde66c3378bd74a3", - "symbol": "VERSE", - "decimals": 18, - "name": "Verse", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xe18841d7a75866688e291703bde66c3378bd74a3.png", - "aggregators": ["LiFi", "Socket", "Rubic"], - "occurrences": 3 - }, - "0x3516415161c478df10adbb8bb884cc83fbd5f11a": { - "address": "0x3516415161c478df10adbb8bb884cc83fbd5f11a", - "symbol": "DEX", - "decimals": 18, - "name": "AlphaDex", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x3516415161c478df10adbb8bb884cc83fbd5f11a.png", - "aggregators": ["LiFi", "Socket", "Rubic"], - "occurrences": 3 - }, - "0xea4170a365952c666a9f34950771e51841732de9": { - "address": "0xea4170a365952c666a9f34950771e51841732de9", - "symbol": "FILTER", - "decimals": 18, - "name": "Filter AI [OLD]", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xea4170a365952c666a9f34950771e51841732de9.png", - "aggregators": ["LiFi", "Rubic", "Rango"], - "occurrences": 3 - }, - "0xaec7e1f531bb09115103c53ba76829910ec48966": { - "address": "0xaec7e1f531bb09115103c53ba76829910ec48966", - "symbol": "BLANK", - "decimals": 18, - "name": "Blank Token", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xaec7e1f531bb09115103c53ba76829910ec48966.png", - "aggregators": ["LiFi", "Socket", "Rubic"], - "occurrences": 3 - }, - "0x3d6f0dea3ac3c607b3998e6ce14b6350721752d9": { - "address": "0x3d6f0dea3ac3c607b3998e6ce14b6350721752d9", - "symbol": "CARDS", - "decimals": 18, - "name": "CARD.STARTER", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x3d6f0dea3ac3c607b3998e6ce14b6350721752d9.png", - "aggregators": ["LiFi", "Socket", "Rubic"], - "occurrences": 3 - }, - "0x30cf203b48edaa42c3b4918e955fed26cd012a3f": { - "address": "0x30cf203b48edaa42c3b4918e955fed26cd012a3f", - "symbol": "SEED", - "decimals": 18, - "name": "Seed", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x30cf203b48edaa42c3b4918e955fed26cd012a3f.png", - "aggregators": ["LiFi", "Socket", "Rubic"], - "occurrences": 3 - }, - "0x22222c03318440305ac3e8a7820563d6a9fd777f": { - "address": "0x22222c03318440305ac3e8a7820563d6a9fd777f", - "symbol": "CLV", - "decimals": 6, - "name": "Clover", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x22222c03318440305ac3e8a7820563d6a9fd777f.png", - "aggregators": ["LiFi", "Socket", "Rubic"], - "occurrences": 3 - }, - "0x88ef27e69108b2633f8e1c184cc37940a075cc02": { - "address": "0x88ef27e69108b2633f8e1c184cc37940a075cc02", - "symbol": "DEGO", - "decimals": 18, - "name": "dego.finance", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x88ef27e69108b2633f8e1c184cc37940a075cc02.png", - "aggregators": ["LiFi", "Socket", "Rubic"], - "occurrences": 3 - }, - "0x6c5fbc90e4d78f70cc5025db005b39b03914fc0c": { - "address": "0x6c5fbc90e4d78f70cc5025db005b39b03914fc0c", - "symbol": "URUS", - "decimals": 18, - "name": "Aurox Token", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x6c5fbc90e4d78f70cc5025db005b39b03914fc0c.png", - "aggregators": ["LiFi", "Socket", "Rubic"], - "occurrences": 3 - }, - "0x32bd822d615a3658a68b6fdd30c2fcb2c996d678": { - "address": "0x32bd822d615a3658a68b6fdd30c2fcb2c996d678", - "symbol": "MSWETH", - "decimals": 18, - "name": "mswETH", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x32bd822d615a3658a68b6fdd30c2fcb2c996d678.png", - "aggregators": ["LiFi", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x38b7bf4eecf3eb530b1529c9401fc37d2a71a912": { - "address": "0x38b7bf4eecf3eb530b1529c9401fc37d2a71a912", - "symbol": "CSMATIC", - "decimals": 18, - "name": "ClayStack Staked MATIC", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x38b7bf4eecf3eb530b1529c9401fc37d2a71a912.png", - "aggregators": ["LiFi", "Socket", "Rubic"], - "occurrences": 3 - }, - "0xeea3311250fe4c3268f8e684f7c87a82ff183ec1": { - "address": "0xeea3311250fe4c3268f8e684f7c87a82ff183ec1", - "symbol": "IBETHV2", - "decimals": 8, - "name": "Interest Bearing Ether v2", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xeea3311250fe4c3268f8e684f7c87a82ff183ec1.png", - "aggregators": ["LiFi", "Rango", "SushiSwap"], - "occurrences": 3 - }, - "0x61cc6af18c351351148815c5f4813a16dee7a7e4": { - "address": "0x61cc6af18c351351148815c5f4813a16dee7a7e4", - "symbol": "WCT", - "decimals": 18, - "name": "WalletConnect", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x61cc6af18c351351148815c5f4813a16dee7a7e4.png", - "aggregators": ["Socket", "Rubic", "Rango"], - "occurrences": 3 - }, - "0xcb9f85730f57732fc899fb158164b9ed60c77d49": { - "address": "0xcb9f85730f57732fc899fb158164b9ed60c77d49", - "symbol": "STKLYRA", - "decimals": 18, - "name": "Staked Lyra", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xcb9f85730f57732fc899fb158164b9ed60c77d49.png", - "aggregators": ["Socket", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x2f65c4c067a9d65875ba60b078ac7c17d522fcca": { - "address": "0x2f65c4c067a9d65875ba60b078ac7c17d522fcca", - "symbol": "TSAI", - "decimals": 9, - "name": "TaxSolutions AI", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x2f65c4c067a9d65875ba60b078ac7c17d522fcca.png", - "aggregators": ["Socket", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x3f14920c99beb920afa163031c4e47a3e03b3e4a": { - "address": "0x3f14920c99beb920afa163031c4e47a3e03b3e4a", - "symbol": "SEND", - "decimals": 0, - "name": "Send Token", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x3f14920c99beb920afa163031c4e47a3e03b3e4a.png", - "aggregators": ["Socket", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x38547d918b9645f2d94336b6b61aeb08053e142c": { - "address": "0x38547d918b9645f2d94336b6b61aeb08053e142c", - "symbol": "USC", - "decimals": 18, - "name": "USC", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x38547d918b9645f2d94336b6b61aeb08053e142c.png", - "aggregators": ["Socket", "Rubic", "Rango"], - "occurrences": 3 - }, - "0xa665fed1b0c9da00e91ca582f77df36e325048c5": { - "address": "0xa665fed1b0c9da00e91ca582f77df36e325048c5", - "symbol": "YFM", - "decimals": 18, - "name": "yfarmfinance", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xa665fed1b0c9da00e91ca582f77df36e325048c5.png", - "aggregators": ["Socket", "Rubic", "Bancor"], - "occurrences": 3 - }, - "0x24ae124c4cc33d6791f8e8b63520ed7107ac8b3e": { - "address": "0x24ae124c4cc33d6791f8e8b63520ed7107ac8b3e", - "symbol": "ESS", - "decimals": 18, - "name": "Empty Set Share", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x24ae124c4cc33d6791f8e8b63520ed7107ac8b3e.png", - "aggregators": ["Socket", "Rubic", "Rango"], - "occurrences": 3 - }, - "0xb28f803a8772e6584a65ab6dfc535ae6fef8a0b2": { - "address": "0xb28f803a8772e6584a65ab6dfc535ae6fef8a0b2", - "symbol": "LFI", - "decimals": 18, - "name": "LunaFi", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xb28f803a8772e6584a65ab6dfc535ae6fef8a0b2.png", - "aggregators": ["Socket", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x6ad2d2c22bb58ea94be18cff11ef67e8bb97b652": { - "address": "0x6ad2d2c22bb58ea94be18cff11ef67e8bb97b652", - "symbol": "WTIA", - "decimals": 18, - "name": "Wrapped TIA", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x6ad2d2c22bb58ea94be18cff11ef67e8bb97b652.png", - "aggregators": ["Socket", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x3392d8a60b77f8d3eaa4fb58f09d835bd31add29": { - "address": "0x3392d8a60b77f8d3eaa4fb58f09d835bd31add29", - "symbol": "INDI", - "decimals": 18, - "name": "IndiGG", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x3392d8a60b77f8d3eaa4fb58f09d835bd31add29.png", - "aggregators": ["Socket", "Rubic", "Rango"], - "occurrences": 3 - }, - "0xf385905e56db4d8a208b20aa8a88dbb225f773d4": { - "address": "0xf385905e56db4d8a208b20aa8a88dbb225f773d4", - "symbol": "BN", - "decimals": 18, - "name": "TNA Protocol", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xf385905e56db4d8a208b20aa8a88dbb225f773d4.png", - "aggregators": ["Socket", "Rubic", "Sonarwatch"], - "occurrences": 3 - }, - "0xa728aa2de568766e2fa4544ec7a77f79c0bf9f97": { - "address": "0xa728aa2de568766e2fa4544ec7a77f79c0bf9f97", - "symbol": "JOK", - "decimals": 18, - "name": "JokInTheBox", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xa728aa2de568766e2fa4544ec7a77f79c0bf9f97.png", - "aggregators": ["Socket", "Rubic", "Sonarwatch"], - "occurrences": 3 - }, - "0x82e229f145aa61000e523f97e5e8174107414897": { - "address": "0x82e229f145aa61000e523f97e5e8174107414897", - "symbol": "RYNO", - "decimals": 9, - "name": "Ryno AI", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x82e229f145aa61000e523f97e5e8174107414897.png", - "aggregators": ["Socket", "Rubic", "Rango"], - "occurrences": 3 - }, - "0xe729b15de141944abcea3cceb8e4407ce0dafa08": { - "address": "0xe729b15de141944abcea3cceb8e4407ce0dafa08", - "symbol": "MOJO", - "decimals": 18, - "name": "MOJO", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xe729b15de141944abcea3cceb8e4407ce0dafa08.png", - "aggregators": ["Socket", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x6dc6a27822ae2ca3a47da39a2f2bbd525dd693f8": { - "address": "0x6dc6a27822ae2ca3a47da39a2f2bbd525dd693f8", - "symbol": "CYDOGE", - "decimals": 18, - "name": "CYBERDOGE", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x6dc6a27822ae2ca3a47da39a2f2bbd525dd693f8.png", - "aggregators": ["Socket", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x1e7572fb16e176d40d28090e51a7a9ea08f68199": { - "address": "0x1e7572fb16e176d40d28090e51a7a9ea08f68199", - "symbol": "MEOW", - "decimals": 9, - "name": "MEOW COIN", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x1e7572fb16e176d40d28090e51a7a9ea08f68199.png", - "aggregators": ["Socket", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x138c2f1123cf3f82e4596d097c118eac6684940b": { - "address": "0x138c2f1123cf3f82e4596d097c118eac6684940b", - "symbol": "ALPHA", - "decimals": 18, - "name": "Alpha", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x138c2f1123cf3f82e4596d097c118eac6684940b.png", - "aggregators": ["Socket", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x0000000000004946c0e9f43f4dee607b0ef1fa1c": { - "address": "0x0000000000004946c0e9f43f4dee607b0ef1fa1c", - "symbol": "CHI", - "decimals": 0, - "name": "Chi Gastoken by 1inch", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x0000000000004946c0e9f43f4dee607b0ef1fa1c.png", - "aggregators": ["Socket", "Rubic", "Rango"], - "occurrences": 3 - }, - "0xed1aecc815c00073ba6707b1cd4bd7f833da7a38": { - "address": "0xed1aecc815c00073ba6707b1cd4bd7f833da7a38", - "symbol": "INTX", - "decimals": 18, - "name": "Intel X", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xed1aecc815c00073ba6707b1cd4bd7f833da7a38.png", - "aggregators": ["Socket", "Rubic", "Rango"], - "occurrences": 3 - }, - "0xadd353fb2e2c563383ff3272a500f3e7134dafe4": { - "address": "0xadd353fb2e2c563383ff3272a500f3e7134dafe4", - "symbol": "TUNA", - "decimals": 18, - "name": "Tuna Chain", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xadd353fb2e2c563383ff3272a500f3e7134dafe4.png", - "aggregators": ["Socket", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x77d0cb0ab54f9e74b9405a5b3f60da06a78f1aad": { - "address": "0x77d0cb0ab54f9e74b9405a5b3f60da06a78f1aad", - "symbol": "WMLX", - "decimals": 0, - "name": "WrappedMillix", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x77d0cb0ab54f9e74b9405a5b3f60da06a78f1aad.png", - "aggregators": ["Socket", "Rubic", "Rango"], - "occurrences": 3 - }, - "0xb8e3e431ffb17dac4bedec04b901a3c03179fd1b": { - "address": "0xb8e3e431ffb17dac4bedec04b901a3c03179fd1b", - "symbol": "DOPE", - "decimals": 8, - "name": "DogePepe", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xb8e3e431ffb17dac4bedec04b901a3c03179fd1b.png", - "aggregators": ["Socket", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x94e9eb8b5ab9fd6b9ea3169d55ffade62a01702e": { - "address": "0x94e9eb8b5ab9fd6b9ea3169d55ffade62a01702e", - "symbol": "BREED", - "decimals": 18, - "name": "BreederDAO", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x94e9eb8b5ab9fd6b9ea3169d55ffade62a01702e.png", - "aggregators": ["Socket", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x38fb3406532398bc3ec391b5ebeb833cc4c89d58": { - "address": "0x38fb3406532398bc3ec391b5ebeb833cc4c89d58", - "symbol": "VBELLS", - "decimals": 18, - "name": "Vaulted Bellscoin", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x38fb3406532398bc3ec391b5ebeb833cc4c89d58.png", - "aggregators": ["Socket", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x7c5095bb2dae81bb9a21ee9f1b7815cd710194e5": { - "address": "0x7c5095bb2dae81bb9a21ee9f1b7815cd710194e5", - "symbol": "OBX", - "decimals": 18, - "name": "Obama6900", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x7c5095bb2dae81bb9a21ee9f1b7815cd710194e5.png", - "aggregators": ["Socket", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x162bb2bb5fb03976a69dd25bb9afce6140db1433": { - "address": "0x162bb2bb5fb03976a69dd25bb9afce6140db1433", - "symbol": "DOG", - "decimals": 9, - "name": "dog", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x162bb2bb5fb03976a69dd25bb9afce6140db1433.png", - "aggregators": ["Socket", "Rubic", "Rango"], - "occurrences": 3 - }, - "0xc3960227e41c3f54e9b399ce216149dea5315c34": { - "address": "0xc3960227e41c3f54e9b399ce216149dea5315c34", - "symbol": "CZ", - "decimals": 9, - "name": "Changpeng Zhao", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xc3960227e41c3f54e9b399ce216149dea5315c34.png", - "aggregators": ["Socket", "Rubic", "Rango"], - "occurrences": 3 - }, - "0xe3f03cef497c81d2b28a2fae63ae84b373028718": { - "address": "0xe3f03cef497c81d2b28a2fae63ae84b373028718", - "symbol": "MARVIN", - "decimals": 9, - "name": "MARVIN", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xe3f03cef497c81d2b28a2fae63ae84b373028718.png", - "aggregators": ["Socket", "Rubic", "Rango"], - "occurrences": 3 - }, - "0xd2960d83c53085b5631f4d0be4916806e40ef1f3": { - "address": "0xd2960d83c53085b5631f4d0be4916806e40ef1f3", - "symbol": "OOFP", - "decimals": 18, - "name": "OOFP", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xd2960d83c53085b5631f4d0be4916806e40ef1f3.png", - "aggregators": ["Socket", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x72fc1c1c926bd26712f62e7485392cd405478f05": { - "address": "0x72fc1c1c926bd26712f62e7485392cd405478f05", - "symbol": "BARK", - "decimals": 9, - "name": "Bark Gas Token", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x72fc1c1c926bd26712f62e7485392cd405478f05.png", - "aggregators": ["Socket", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x4206931337dc273a630d328da6441786bfad668f": { - "address": "0x4206931337dc273a630d328da6441786bfad668f", - "symbol": "DOGE", - "decimals": 8, - "name": "Dogecoin", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x4206931337dc273a630d328da6441786bfad668f.png", - "aggregators": ["Socket", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x2cb5d9fd89d48c516f11904117c57e3934f39524": { - "address": "0x2cb5d9fd89d48c516f11904117c57e3934f39524", - "symbol": "CUTE", - "decimals": 18, - "name": "PEPE UWU", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x2cb5d9fd89d48c516f11904117c57e3934f39524.png", - "aggregators": ["Socket", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x03cce75a4795c1cfab8b7c0a1fb38df46d2f4159": { - "address": "0x03cce75a4795c1cfab8b7c0a1fb38df46d2f4159", - "symbol": "MAJOR", - "decimals": 9, - "name": "Major", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x03cce75a4795c1cfab8b7c0a1fb38df46d2f4159.png", - "aggregators": ["Socket", "Rubic", "Rango"], - "occurrences": 3 - }, - "0xf74751c07c92b668f02527d0e1384ee6d68ac90e": { - "address": "0xf74751c07c92b668f02527d0e1384ee6d68ac90e", - "symbol": "CTRL", - "decimals": 9, - "name": "AltCTRL", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xf74751c07c92b668f02527d0e1384ee6d68ac90e.png", - "aggregators": ["Socket", "Rubic", "Rango"], - "occurrences": 3 - }, - "0xc256f81d35a54c3599b424171d719e9ae87b2e9b": { - "address": "0xc256f81d35a54c3599b424171d719e9ae87b2e9b", - "symbol": "ZOOA", - "decimals": 18, - "name": "ZOOA", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xc256f81d35a54c3599b424171d719e9ae87b2e9b.png", - "aggregators": ["Socket", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x837ee5a664d51bc2e7d26eb63cffeb48e037bde2": { - "address": "0x837ee5a664d51bc2e7d26eb63cffeb48e037bde2", - "symbol": "NMAI", - "decimals": 18, - "name": "NomotaAI", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x837ee5a664d51bc2e7d26eb63cffeb48e037bde2.png", - "aggregators": ["Socket", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x95ac17ce4021417e25b8edf807366fc3be091b5e": { - "address": "0x95ac17ce4021417e25b8edf807366fc3be091b5e", - "symbol": "ZAAR", - "decimals": 18, - "name": "Zaar", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x95ac17ce4021417e25b8edf807366fc3be091b5e.png", - "aggregators": ["Socket", "Rubic", "Rango"], - "occurrences": 3 - }, - "0xed40ab79a3225902435c26233ed84fb74bd8ffb8": { - "address": "0xed40ab79a3225902435c26233ed84fb74bd8ffb8", - "symbol": "GSLAM", - "decimals": 18, - "name": "GramSlams", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xed40ab79a3225902435c26233ed84fb74bd8ffb8.png", - "aggregators": ["Socket", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x494930dabcfa57748a4c4788c0054f723a789047": { - "address": "0x494930dabcfa57748a4c4788c0054f723a789047", - "symbol": "COOMER", - "decimals": 9, - "name": "COOMER", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x494930dabcfa57748a4c4788c0054f723a789047.png", - "aggregators": ["Socket", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x9e566e28c61690f8afe0468f523e137b1ff29f01": { - "address": "0x9e566e28c61690f8afe0468f523e137b1ff29f01", - "symbol": "GNCAT", - "decimals": 9, - "name": "GanNamCAT", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x9e566e28c61690f8afe0468f523e137b1ff29f01.png", - "aggregators": ["Socket", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x2cc774364ec2d4cf53433c76dad287b743b17441": { - "address": "0x2cc774364ec2d4cf53433c76dad287b743b17441", - "symbol": "AGURI", - "decimals": 9, - "name": "Aguri", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x2cc774364ec2d4cf53433c76dad287b743b17441.png", - "aggregators": ["Socket", "Rubic", "Rango"], - "occurrences": 3 - }, - "0xb538d9f3e1ae450827618519acd96086fc4c0a59": { - "address": "0xb538d9f3e1ae450827618519acd96086fc4c0a59", - "symbol": "GIZMO", - "decimals": 18, - "name": "GIZMO", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xb538d9f3e1ae450827618519acd96086fc4c0a59.png", - "aggregators": ["Socket", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x94c6625371a59f3abe3b810c5d6f4e7c965d1b88": { - "address": "0x94c6625371a59f3abe3b810c5d6f4e7c965d1b88", - "symbol": "INSORA", - "decimals": 18, - "name": "INSORA AI", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x94c6625371a59f3abe3b810c5d6f4e7c965d1b88.png", - "aggregators": ["Socket", "Rubic", "Sonarwatch"], - "occurrences": 3 - }, - "0x541f9ac587be412ba0486ea3dbcf09dc11db76ce": { - "address": "0x541f9ac587be412ba0486ea3dbcf09dc11db76ce", - "symbol": "NEBULA", - "decimals": 18, - "name": "Nebula", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x541f9ac587be412ba0486ea3dbcf09dc11db76ce.png", - "aggregators": ["Socket", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x70734a09b7a89f8ec3558d432fcb518dcc3c0fa0": { - "address": "0x70734a09b7a89f8ec3558d432fcb518dcc3c0fa0", - "symbol": "KABOSU", - "decimals": 18, - "name": "Kabosu", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x70734a09b7a89f8ec3558d432fcb518dcc3c0fa0.png", - "aggregators": ["Socket", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x1945e804b8a25b98ab140e58295404d768ca3f6b": { - "address": "0x1945e804b8a25b98ab140e58295404d768ca3f6b", - "symbol": "MOTION", - "decimals": 18, - "name": "MOTION", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x1945e804b8a25b98ab140e58295404d768ca3f6b.png", - "aggregators": ["Socket", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x45b6d1cfcc0218f4d57db1a2895c0f14c8c3cf96": { - "address": "0x45b6d1cfcc0218f4d57db1a2895c0f14c8c3cf96", - "symbol": "PTKN", - "decimals": 18, - "name": "Panda", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x45b6d1cfcc0218f4d57db1a2895c0f14c8c3cf96.png", - "aggregators": ["Socket", "Rubic", "Rango"], - "occurrences": 3 - }, - "0xfeff7b68bc540826da22b296c82a4b8b6b845f41": { - "address": "0xfeff7b68bc540826da22b296c82a4b8b6b845f41", - "symbol": "UEFN", - "decimals": 18, - "name": "UEFN", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xfeff7b68bc540826da22b296c82a4b8b6b845f41.png", - "aggregators": ["Socket", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x1b900b2cde13b384f89d6dd697dc03ac61c702bb": { - "address": "0x1b900b2cde13b384f89d6dd697dc03ac61c702bb", - "symbol": "WHAT", - "decimals": 18, - "name": "What the Duck", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x1b900b2cde13b384f89d6dd697dc03ac61c702bb.png", - "aggregators": ["Socket", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x7ca9403ba20ac9e649c8dba53f920663540985a9": { - "address": "0x7ca9403ba20ac9e649c8dba53f920663540985a9", - "symbol": "NEXIS", - "decimals": 18, - "name": "Nexis Tools", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x7ca9403ba20ac9e649c8dba53f920663540985a9.png", - "aggregators": ["Socket", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x7db5af2b9624e1b3b4bb69d6debd9ad1016a58ac": { - "address": "0x7db5af2b9624e1b3b4bb69d6debd9ad1016a58ac", - "symbol": "VOLT", - "decimals": 9, - "name": "VOLT", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x7db5af2b9624e1b3b4bb69d6debd9ad1016a58ac.png", - "aggregators": ["Socket", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x95640a134721475bc78594c8ea66c0182c7b9a50": { - "address": "0x95640a134721475bc78594c8ea66c0182c7b9a50", - "symbol": "MXH", - "decimals": 9, - "name": "Metroxynth", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x95640a134721475bc78594c8ea66c0182c7b9a50.png", - "aggregators": ["Socket", "Rubic", "Rango"], - "occurrences": 3 - }, - "0xce9de5365739b1bed5c8546867aee4209fbb8538": { - "address": "0xce9de5365739b1bed5c8546867aee4209fbb8538", - "symbol": "THUG", - "decimals": 18, - "name": "Thug Life Token", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xce9de5365739b1bed5c8546867aee4209fbb8538.png", - "aggregators": ["Socket", "Rubic", "Rango"], - "occurrences": 3 - }, - "0xc7c53760375530e5af29fded5e13989325299382": { - "address": "0xc7c53760375530e5af29fded5e13989325299382", - "symbol": "WPC", - "decimals": 9, - "name": "WORLD PEACE COIN", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xc7c53760375530e5af29fded5e13989325299382.png", - "aggregators": ["Socket", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x84dad4e4a4d1510052d39e916330372db8cd1238": { - "address": "0x84dad4e4a4d1510052d39e916330372db8cd1238", - "symbol": "DEEZNUTS", - "decimals": 18, - "name": "DEEZ NUTS", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x84dad4e4a4d1510052d39e916330372db8cd1238.png", - "aggregators": ["Socket", "Rubic", "Rango"], - "occurrences": 3 - }, - "0xfe3aaf3b1dd087331ec68c4dd86e8fe542598d5e": { - "address": "0xfe3aaf3b1dd087331ec68c4dd86e8fe542598d5e", - "symbol": "AKEN", - "decimals": 18, - "name": "ALTOKEN", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xfe3aaf3b1dd087331ec68c4dd86e8fe542598d5e.png", - "aggregators": ["Socket", "Rubic", "Rango"], - "occurrences": 3 - }, - "0xcf01d4485398f3b8a0b177c5225402e2fdb4f997": { - "address": "0xcf01d4485398f3b8a0b177c5225402e2fdb4f997", - "symbol": "UNCLE", - "decimals": 18, - "name": "PEPE UNCLE", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xcf01d4485398f3b8a0b177c5225402e2fdb4f997.png", - "aggregators": ["Socket", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x1ee2b89458eb12f93f7f01972c39589b99a8ed5a": { - "address": "0x1ee2b89458eb12f93f7f01972c39589b99a8ed5a", - "symbol": "SENDR", - "decimals": 18, - "name": "Sendr", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x1ee2b89458eb12f93f7f01972c39589b99a8ed5a.png", - "aggregators": ["Socket", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x4166673521e31ed98801e45e8b068b4bc227a110": { - "address": "0x4166673521e31ed98801e45e8b068b4bc227a110", - "symbol": "PONZIE", - "decimals": 18, - "name": "Ponzi Express", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x4166673521e31ed98801e45e8b068b4bc227a110.png", - "aggregators": ["Socket", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x5a1bcfa16e3edff07dfa60427bd0b51736ea8d37": { - "address": "0x5a1bcfa16e3edff07dfa60427bd0b51736ea8d37", - "symbol": "MGGA", - "decimals": 18, - "name": "Mgga", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x5a1bcfa16e3edff07dfa60427bd0b51736ea8d37.png", - "aggregators": ["Socket", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x4096fc7119040175589387656f7c6073265f4096": { - "address": "0x4096fc7119040175589387656f7c6073265f4096", - "symbol": "4096", - "decimals": 0, - "name": "4096", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x4096fc7119040175589387656f7c6073265f4096.png", - "aggregators": ["Socket", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x7f5e1a2424ebdd141b0df15f974ddcb87751a012": { - "address": "0x7f5e1a2424ebdd141b0df15f974ddcb87751a012", - "symbol": "LLM", - "decimals": 18, - "name": "LLM", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x7f5e1a2424ebdd141b0df15f974ddcb87751a012.png", - "aggregators": ["Socket", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x880eeea0637f91bb259dfd7bb261638a42bddb25": { - "address": "0x880eeea0637f91bb259dfd7bb261638a42bddb25", - "symbol": "BIAI", - "decimals": 9, - "name": "BlockInsightAI", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x880eeea0637f91bb259dfd7bb261638a42bddb25.png", - "aggregators": ["Socket", "Rubic", "Sonarwatch"], - "occurrences": 3 - }, - "0x665f4709940f557e9dde63df0fd9cf6425852b4d": { - "address": "0x665f4709940f557e9dde63df0fd9cf6425852b4d", - "symbol": "HALVING", - "decimals": 9, - "name": "Halving", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x665f4709940f557e9dde63df0fd9cf6425852b4d.png", - "aggregators": ["Socket", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x001823d353a2d71ad744599390cbb2f8240afda9": { - "address": "0x001823d353a2d71ad744599390cbb2f8240afda9", - "symbol": "CHERRY", - "decimals": 18, - "name": "cherrypicksAI", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x001823d353a2d71ad744599390cbb2f8240afda9.png", - "aggregators": ["Socket", "Rubic", "Rango"], - "occurrences": 3 - }, - "0xe8b1e79d937c648ce1fe96e6739ddb2714058a18": { - "address": "0xe8b1e79d937c648ce1fe96e6739ddb2714058a18", - "symbol": "GTM", - "decimals": 18, - "name": "ColonizeMars", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xe8b1e79d937c648ce1fe96e6739ddb2714058a18.png", - "aggregators": ["Socket", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x0d3e106b9555c8c7052da0e7909956d640ac2c69": { - "address": "0x0d3e106b9555c8c7052da0e7909956d640ac2c69", - "symbol": "POPKAT", - "decimals": 8, - "name": "POPKAT", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x0d3e106b9555c8c7052da0e7909956d640ac2c69.png", - "aggregators": ["Socket", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x77777bf11ab5b96753ea48e0401667a70675841e": { - "address": "0x77777bf11ab5b96753ea48e0401667a70675841e", - "symbol": "PYRA", - "decimals": 18, - "name": "Pyramid Financial", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x77777bf11ab5b96753ea48e0401667a70675841e.png", - "aggregators": ["Socket", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x4346139e71ba7b4b6abd405782703006cc180988": { - "address": "0x4346139e71ba7b4b6abd405782703006cc180988", - "symbol": "TGPU", - "decimals": 18, - "name": "TonGPU", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x4346139e71ba7b4b6abd405782703006cc180988.png", - "aggregators": ["Socket", "Rubic", "Rango"], - "occurrences": 3 - }, - "0xc7af7dc0a7a7e47e21eb50433a903d742370fffb": { - "address": "0xc7af7dc0a7a7e47e21eb50433a903d742370fffb", - "symbol": "DOGE-1", - "decimals": 18, - "name": "DOGE-1", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xc7af7dc0a7a7e47e21eb50433a903d742370fffb.png", - "aggregators": ["Socket", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x0e5f00da8aaef196a719d045db89b5da8f371b32": { - "address": "0x0e5f00da8aaef196a719d045db89b5da8f371b32", - "symbol": "CNTM", - "decimals": 18, - "name": "Connectome", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x0e5f00da8aaef196a719d045db89b5da8f371b32.png", - "aggregators": ["Socket", "Rubic", "Rango"], - "occurrences": 3 - }, - "0xac9d70aebd49555b033751e311044becf3513c0f": { - "address": "0xac9d70aebd49555b033751e311044becf3513c0f", - "symbol": "MTK", - "decimals": 18, - "name": "Moonland Metaverse Token", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xac9d70aebd49555b033751e311044becf3513c0f.png", - "aggregators": ["Socket", "Rubic", "Sonarwatch"], - "occurrences": 3 - }, - "0x90d1964873ddd741f49ed3ca9c47ceb470313a09": { - "address": "0x90d1964873ddd741f49ed3ca9c47ceb470313a09", - "symbol": "HENLO", - "decimals": 18, - "name": "Henlo", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x90d1964873ddd741f49ed3ca9c47ceb470313a09.png", - "aggregators": ["Socket", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x0c7ecdb459111cd806e54adc9da1f4a03b43b64a": { - "address": "0x0c7ecdb459111cd806e54adc9da1f4a03b43b64a", - "symbol": "GG", - "decimals": 18, - "name": "GrimGold", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x0c7ecdb459111cd806e54adc9da1f4a03b43b64a.png", - "aggregators": ["Socket", "Rubic", "Rango"], - "occurrences": 3 - }, - "0xc4c244f1dbca07083fee35220d2169957c275e68": { - "address": "0xc4c244f1dbca07083fee35220d2169957c275e68", - "symbol": "STEAK", - "decimals": 18, - "name": "Steak", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xc4c244f1dbca07083fee35220d2169957c275e68.png", - "aggregators": ["Socket", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x4022754bf8857395383c63326391f289d1bb14b9": { - "address": "0x4022754bf8857395383c63326391f289d1bb14b9", - "symbol": "DRV3", - "decimals": 18, - "name": "DRIVE3 PROTOCOL", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x4022754bf8857395383c63326391f289d1bb14b9.png", - "aggregators": ["Socket", "Rubic", "Rango"], - "occurrences": 3 - }, - "0xb146823fb8ea064d14ba1a52e3e55cde09afff2d": { - "address": "0xb146823fb8ea064d14ba1a52e3e55cde09afff2d", - "symbol": "EYE", - "decimals": 18, - "name": "ChartAI", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xb146823fb8ea064d14ba1a52e3e55cde09afff2d.png", - "aggregators": ["Socket", "Rubic", "Rango"], - "occurrences": 3 - }, - "0xb14df3954fcb59a2b3c7fad1e9a24988e339ff78": { - "address": "0xb14df3954fcb59a2b3c7fad1e9a24988e339ff78", - "symbol": "O3D", - "decimals": 18, - "name": "Origin3D", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xb14df3954fcb59a2b3c7fad1e9a24988e339ff78.png", - "aggregators": ["Socket", "Rubic", "Sonarwatch"], - "occurrences": 3 - }, - "0x5138ebe7acaae209d6f0b651e4d02a67ef61f436": { - "address": "0x5138ebe7acaae209d6f0b651e4d02a67ef61f436", - "symbol": "GRAF", - "decimals": 18, - "name": "Graffiti", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x5138ebe7acaae209d6f0b651e4d02a67ef61f436.png", - "aggregators": ["Socket", "Rubic", "Rango"], - "occurrences": 3 - }, - "0xcda2f16c6aa895d533506b426aff827b709c87f5": { - "address": "0xcda2f16c6aa895d533506b426aff827b709c87f5", - "symbol": "FAI", - "decimals": 18, - "name": "Fairum Community", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xcda2f16c6aa895d533506b426aff827b709c87f5.png", - "aggregators": ["Socket", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x6d3f7af0ba8003a2de0335bccd957921380b2d9e": { - "address": "0x6d3f7af0ba8003a2de0335bccd957921380b2d9e", - "symbol": "LIMON", - "decimals": 9, - "name": "LimoncelloAI", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x6d3f7af0ba8003a2de0335bccd957921380b2d9e.png", - "aggregators": ["Socket", "Rubic", "Sonarwatch"], - "occurrences": 3 - }, - "0xc106b98c4d0b3f1c92da0e9a6089e9c63ceacbb0": { - "address": "0xc106b98c4d0b3f1c92da0e9a6089e9c63ceacbb0", - "symbol": "TRND", - "decimals": 9, - "name": "TrendAppend", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xc106b98c4d0b3f1c92da0e9a6089e9c63ceacbb0.png", - "aggregators": ["Socket", "Rubic", "Rango"], - "occurrences": 3 - }, - "0xcdf6b7657b8f26c396293417d713b7fc6b8304d9": { - "address": "0xcdf6b7657b8f26c396293417d713b7fc6b8304d9", - "symbol": "ATHENA", - "decimals": 18, - "name": "Project Athena", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xcdf6b7657b8f26c396293417d713b7fc6b8304d9.png", - "aggregators": ["Socket", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x984ac33e3c6031b7190444aed92d617b92ef2c37": { - "address": "0x984ac33e3c6031b7190444aed92d617b92ef2c37", - "symbol": "BOTON", - "decimals": 9, - "name": "Boton AI", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x984ac33e3c6031b7190444aed92d617b92ef2c37.png", - "aggregators": ["Socket", "Rubic", "Sonarwatch"], - "occurrences": 3 - }, - "0xa849cd6239906f23b63ba34441b73a5c6eba8a00": { - "address": "0xa849cd6239906f23b63ba34441b73a5c6eba8a00", - "symbol": "HASH", - "decimals": 18, - "name": "HASHMIND", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xa849cd6239906f23b63ba34441b73a5c6eba8a00.png", - "aggregators": ["Socket", "Rubic", "Rango"], - "occurrences": 3 - }, - "0xbd617a1359086e33ff339ea0b9c6de479a3f5943": { - "address": "0xbd617a1359086e33ff339ea0b9c6de479a3f5943", - "symbol": "IDE", - "decimals": 9, - "name": "ide.x.ai", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xbd617a1359086e33ff339ea0b9c6de479a3f5943.png", - "aggregators": ["Socket", "Rubic", "Rango"], - "occurrences": 3 - }, - "0xd836d22531d810f192ba6bd0ba3c28c35d4606c2": { - "address": "0xd836d22531d810f192ba6bd0ba3c28c35d4606c2", - "symbol": "BONKBEST", - "decimals": 9, - "name": "BONKBEST", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xd836d22531d810f192ba6bd0ba3c28c35d4606c2.png", - "aggregators": ["Socket", "Rubic", "Rango"], - "occurrences": 3 - }, - "0xa069add2d093f9df0e82ab64ec7dd0320cb4f65d": { - "address": "0xa069add2d093f9df0e82ab64ec7dd0320cb4f65d", - "symbol": "GPUBOT", - "decimals": 18, - "name": "GPUBot", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xa069add2d093f9df0e82ab64ec7dd0320cb4f65d.png", - "aggregators": ["Socket", "Rubic", "Rango"], - "occurrences": 3 - }, - "0xd775997452923437ca96065ba15ed02f4a33ed39": { - "address": "0xd775997452923437ca96065ba15ed02f4a33ed39", - "symbol": "DWIF", - "decimals": 18, - "name": "DRAGONWIFHAT", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xd775997452923437ca96065ba15ed02f4a33ed39.png", - "aggregators": ["Socket", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x1f7505f486c22f4338ac2bde67a3e93a547644b9": { - "address": "0x1f7505f486c22f4338ac2bde67a3e93a547644b9", - "symbol": "CIA", - "decimals": 18, - "name": "Cat Intelligence Agency", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x1f7505f486c22f4338ac2bde67a3e93a547644b9.png", - "aggregators": ["Socket", "Rubic", "Rango"], - "occurrences": 3 - }, - "0xa187927c9185108458647aeec193ef4a62d3bd80": { - "address": "0xa187927c9185108458647aeec193ef4a62d3bd80", - "symbol": "MMG", - "decimals": 18, - "name": "Meta Minigames", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xa187927c9185108458647aeec193ef4a62d3bd80.png", - "aggregators": ["Socket", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x7d64bde04e64be1c4cae808719c1127f2ccc252b": { - "address": "0x7d64bde04e64be1c4cae808719c1127f2ccc252b", - "symbol": "BULLY", - "decimals": 9, - "name": "bully ze bull", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x7d64bde04e64be1c4cae808719c1127f2ccc252b.png", - "aggregators": ["Socket", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x6fcd2db93082e85d662173a70feaf59b97860c3e": { - "address": "0x6fcd2db93082e85d662173a70feaf59b97860c3e", - "symbol": "SEAI", - "decimals": 9, - "name": "ServeFi AI", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x6fcd2db93082e85d662173a70feaf59b97860c3e.png", - "aggregators": ["Socket", "Rubic", "Sonarwatch"], - "occurrences": 3 - }, - "0x735acdedd91a80334ff72f07bff41e1eecf26677": { - "address": "0x735acdedd91a80334ff72f07bff41e1eecf26677", - "symbol": "EUUS", - "decimals": 18, - "name": "EUUS", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x735acdedd91a80334ff72f07bff41e1eecf26677.png", - "aggregators": ["Socket", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x716457d3ee671231e3a9fd320940e88ac247a733": { - "address": "0x716457d3ee671231e3a9fd320940e88ac247a733", - "symbol": "MAAI", - "decimals": 9, - "name": "Mars AI", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x716457d3ee671231e3a9fd320940e88ac247a733.png", - "aggregators": ["Socket", "Rubic", "Sonarwatch"], - "occurrences": 3 - }, - "0x1d64231e179f074baa3f22d44a6ca3a2670b2709": { - "address": "0x1d64231e179f074baa3f22d44a6ca3a2670b2709", - "symbol": "FIAS", - "decimals": 18, - "name": "Fias", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x1d64231e179f074baa3f22d44a6ca3a2670b2709.png", - "aggregators": ["Socket", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x4e0fca55a6c3a94720ded91153a27f60e26b9aa8": { - "address": "0x4e0fca55a6c3a94720ded91153a27f60e26b9aa8", - "symbol": "BOOST", - "decimals": 18, - "name": "Boost", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x4e0fca55a6c3a94720ded91153a27f60e26b9aa8.png", - "aggregators": ["Socket", "Rubic", "Rango"], - "occurrences": 3 - }, - "0xf1182229b71e79e504b1d2bf076c15a277311e05": { - "address": "0xf1182229b71e79e504b1d2bf076c15a277311e05", - "symbol": "LBR", - "decimals": 18, - "name": "LBR", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xf1182229b71e79e504b1d2bf076c15a277311e05.png", - "aggregators": ["Socket", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x3595e426a7808e2482667ee4e453ef280fbb9cf4": { - "address": "0x3595e426a7808e2482667ee4e453ef280fbb9cf4", - "symbol": "COCAINE", - "decimals": 9, - "name": "Nose Candy", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x3595e426a7808e2482667ee4e453ef280fbb9cf4.png", - "aggregators": ["Rubic", "Rango", "Sonarwatch"], - "occurrences": 3 - }, - "0x048d07bd350ba516b84587e147284881b593eb86": { - "address": "0x048d07bd350ba516b84587e147284881b593eb86", - "symbol": "SYNK", - "decimals": 18, - "name": "Synk", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x048d07bd350ba516b84587e147284881b593eb86.png", - "aggregators": ["Rubic", "Rango", "Sonarwatch"], - "occurrences": 3 - }, - "0x9bbe8f42b9c2333fe2a80323028ab107379646c7": { - "address": "0x9bbe8f42b9c2333fe2a80323028ab107379646c7", - "symbol": "POWER", - "decimals": 18, - "name": "Power Play", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x9bbe8f42b9c2333fe2a80323028ab107379646c7.png", - "aggregators": ["Rubic", "Rango", "Sonarwatch"], - "occurrences": 3 - }, - "0x20910e5b5f087f6439dfcb0dda4e27d1014ac2b8": { - "address": "0x20910e5b5f087f6439dfcb0dda4e27d1014ac2b8", - "symbol": "BNA", - "decimals": 18, - "name": "BananaTok", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x20910e5b5f087f6439dfcb0dda4e27d1014ac2b8.png", - "aggregators": ["Rubic", "Rango", "Sonarwatch"], - "occurrences": 3 - }, - "0x61b34a012646cd7357f58ee9c0160c6d0021fa41": { - "address": "0x61b34a012646cd7357f58ee9c0160c6d0021fa41", - "symbol": "ELO", - "decimals": 18, - "name": "Elosys", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x61b34a012646cd7357f58ee9c0160c6d0021fa41.png", - "aggregators": ["Rubic", "Rango", "Sonarwatch"], - "occurrences": 3 - }, - "0x503cd987998824192578d0d7950148445667287c": { - "address": "0x503cd987998824192578d0d7950148445667287c", - "symbol": "FOG", - "decimals": 18, - "name": "FOGnet", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x503cd987998824192578d0d7950148445667287c.png", - "aggregators": ["Rubic", "Rango", "Sonarwatch"], - "occurrences": 3 - }, - "0x2c8ea636345a231e4b1a28f6eeb2072ed909c406": { - "address": "0x2c8ea636345a231e4b1a28f6eeb2072ed909c406", - "symbol": "MEMELON", - "decimals": 18, - "name": "Meme Elon Doge Floki", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x2c8ea636345a231e4b1a28f6eeb2072ed909c406.png", - "aggregators": ["Rubic", "Rango", "Sonarwatch"], - "occurrences": 3 - }, - "0xebe4a49df7885d015329c919bf43e6460a858f1e": { - "address": "0xebe4a49df7885d015329c919bf43e6460a858f1e", - "symbol": "SHK", - "decimals": 18, - "name": "iShook", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xebe4a49df7885d015329c919bf43e6460a858f1e.png", - "aggregators": ["Rubic", "Rango", "Sonarwatch"], - "occurrences": 3 - }, - "0xcb21311d3b91b5324f6c11b4f5a656fcacbff122": { - "address": "0xcb21311d3b91b5324f6c11b4f5a656fcacbff122", - "symbol": "QAI", - "decimals": 18, - "name": "QuantixAI", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xcb21311d3b91b5324f6c11b4f5a656fcacbff122.png", - "aggregators": ["Rubic", "Rango", "Sonarwatch"], - "occurrences": 3 - }, - "0x1f3f677ecc58f6a1f9e2cf410df4776a8546b5de": { - "address": "0x1f3f677ecc58f6a1f9e2cf410df4776a8546b5de", - "symbol": "VNDC", - "decimals": 0, - "name": "VNDC", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x1f3f677ecc58f6a1f9e2cf410df4776a8546b5de.png", - "aggregators": ["Rubic", "Rango", "Sonarwatch"], - "occurrences": 3 - }, - "0x4161725d019690a3e0de50f6be67b07a86a9fae1": { - "address": "0x4161725d019690a3e0de50f6be67b07a86a9fae1", - "symbol": "TPT", - "decimals": 4, - "name": "TokenPocket Token", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x4161725d019690a3e0de50f6be67b07a86a9fae1.png", - "aggregators": ["Rubic", "Rango", "Sonarwatch"], - "occurrences": 3 - }, - "0xe344fb85b4fab79e0ef32ce77c00732ce8566244": { - "address": "0xe344fb85b4fab79e0ef32ce77c00732ce8566244", - "symbol": "FILM", - "decimals": 8, - "name": "Gala Film", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xe344fb85b4fab79e0ef32ce77c00732ce8566244.png", - "aggregators": ["Rubic", "Rango", "Sonarwatch"], - "occurrences": 3 - }, - "0x364c65347bdd77e6196fad96d42dbbd6d55cf719": { - "address": "0x364c65347bdd77e6196fad96d42dbbd6d55cf719", - "symbol": "BRK", - "decimals": 18, - "name": "BRK690k", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x364c65347bdd77e6196fad96d42dbbd6d55cf719.png", - "aggregators": ["Rubic", "Rango", "Sonarwatch"], - "occurrences": 3 - }, - "0x070e984fda37dd942f5c953f6b2375339adac308": { - "address": "0x070e984fda37dd942f5c953f6b2375339adac308", - "symbol": "AXE", - "decimals": 18, - "name": "Axe Cap", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x070e984fda37dd942f5c953f6b2375339adac308.png", - "aggregators": ["Rubic", "Rango", "Sonarwatch"], - "occurrences": 3 - }, - "0x7468d234a8db6f1085dbf4e403553bfed41df95c": { - "address": "0x7468d234a8db6f1085dbf4e403553bfed41df95c", - "symbol": "IO", - "decimals": 18, - "name": "Ideal Opportunities", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x7468d234a8db6f1085dbf4e403553bfed41df95c.png", - "aggregators": ["Rubic", "Rango", "Sonarwatch"], - "occurrences": 3 - }, - "0xc539f8e194569b3db935d70fa2e7cadd7dad7f35": { - "address": "0xc539f8e194569b3db935d70fa2e7cadd7dad7f35", - "symbol": "CZAR", - "decimals": 18, - "name": "Crypto Czar", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xc539f8e194569b3db935d70fa2e7cadd7dad7f35.png", - "aggregators": ["Rubic", "Rango", "Sonarwatch"], - "occurrences": 3 - }, - "0x1142866f451d9d5281c5c8349a332bd338e552a1": { - "address": "0x1142866f451d9d5281c5c8349a332bd338e552a1", - "symbol": "SILKROAD", - "decimals": 18, - "name": "SuperMarioPorsche911Inu", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x1142866f451d9d5281c5c8349a332bd338e552a1.png", - "aggregators": ["Rubic", "Rango", "Sonarwatch"], - "occurrences": 3 - }, - "0xfd03723a9a3abe0562451496a9a394d2c4bad4ab": { - "address": "0xfd03723a9a3abe0562451496a9a394d2c4bad4ab", - "symbol": "DYAD", - "decimals": 18, - "name": "Dyad", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xfd03723a9a3abe0562451496a9a394d2c4bad4ab.png", - "aggregators": ["Rubic", "Rango", "Sonarwatch"], - "occurrences": 3 - }, - "0xe925aa77d51746b865e5c05165a879820cb4b720": { - "address": "0xe925aa77d51746b865e5c05165a879820cb4b720", - "symbol": "CCASH", - "decimals": 18, - "name": "C Cash", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xe925aa77d51746b865e5c05165a879820cb4b720.png", - "aggregators": ["Rubic", "Rango", "Sonarwatch"], - "occurrences": 3 - }, - "0xb5ce43fe2fcffffb2eece95ec413d08def28046f": { - "address": "0xb5ce43fe2fcffffb2eece95ec413d08def28046f", - "symbol": "PELO", - "decimals": 18, - "name": "PepElon", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xb5ce43fe2fcffffb2eece95ec413d08def28046f.png", - "aggregators": ["Rubic", "Rango", "Sonarwatch"], - "occurrences": 3 - }, - "0xf222b0e892f419c35e61892cddf0a8ec190c4b9d": { - "address": "0xf222b0e892f419c35e61892cddf0a8ec190c4b9d", - "symbol": "RDX", - "decimals": 18, - "name": "RandomDEX", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xf222b0e892f419c35e61892cddf0a8ec190c4b9d.png", - "aggregators": ["Rubic", "Squid", "Sonarwatch"], - "occurrences": 3 - }, - "0xc5842df170b8c8d09eb851a8d5db3dfa00669e3f": { - "address": "0xc5842df170b8c8d09eb851a8d5db3dfa00669e3f", - "symbol": "XEROAI", - "decimals": 9, - "name": "Xero AI", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xc5842df170b8c8d09eb851a8d5db3dfa00669e3f.png", - "aggregators": ["Rubic", "Rango", "Sonarwatch"], - "occurrences": 3 - }, - "0x5245c0249e5eeb2a0838266800471fd32adb1089": { - "address": "0x5245c0249e5eeb2a0838266800471fd32adb1089", - "symbol": "RAY", - "decimals": 6, - "name": "Raydium", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x5245c0249e5eeb2a0838266800471fd32adb1089.png", - "aggregators": ["Rubic", "Rango", "SushiSwap"], - "occurrences": 3 - }, - "0x69570f3e84f51ea70b7b68055c8d667e77735a25": { - "address": "0x69570f3e84f51ea70b7b68055c8d667e77735a25", - "symbol": "BSGG", - "decimals": 18, - "name": "Betswap.gg", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x69570f3e84f51ea70b7b68055c8d667e77735a25.png", - "aggregators": ["Rubic", "Rango", "SushiSwap"], - "occurrences": 3 - }, - "0xdd3878ac92166d6c4e46b26ddd162b72c00d1623": { - "address": "0xdd3878ac92166d6c4e46b26ddd162b72c00d1623", - "symbol": "EON", - "decimals": 18, - "name": "Pantheon", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xdd3878ac92166d6c4e46b26ddd162b72c00d1623.png", - "aggregators": ["Rubic", "Rango", "Sonarwatch"], - "occurrences": 3 - }, - "0xd0623da373f754c4b6762209ea77de59b21dd667": { - "address": "0xd0623da373f754c4b6762209ea77de59b21dd667", - "symbol": "OXYZ", - "decimals": 18, - "name": "Oxya Origin", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xd0623da373f754c4b6762209ea77de59b21dd667.png", - "aggregators": ["Rubic", "Rango", "Sonarwatch"], - "occurrences": 3 - }, - "0x8d137e3337eb1b58a222fef2b2cc7c423903d9cf": { - "address": "0x8d137e3337eb1b58a222fef2b2cc7c423903d9cf", - "symbol": "SQGL", - "decimals": 18, - "name": "Chromie Squiggle", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x8d137e3337eb1b58a222fef2b2cc7c423903d9cf.png", - "aggregators": ["Rubic", "Rango", "SushiSwap"], - "occurrences": 3 - }, - "0xd585aaafa2b58b1cd75092b51ade9fa4ce52f247": { - "address": "0xd585aaafa2b58b1cd75092b51ade9fa4ce52f247", - "symbol": "PEUSD", - "decimals": 18, - "name": "peg eUSD", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xd585aaafa2b58b1cd75092b51ade9fa4ce52f247.png", - "aggregators": ["Rubic", "Rango", "Sonarwatch"], - "occurrences": 3 - }, - "0x6923f9b683111dcc0e20124e9a031deeae5dad93": { - "address": "0x6923f9b683111dcc0e20124e9a031deeae5dad93", - "symbol": "HUB", - "decimals": 18, - "name": "Crypto Hub", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x6923f9b683111dcc0e20124e9a031deeae5dad93.png", - "aggregators": ["Rubic", "Rango", "Sonarwatch"], - "occurrences": 3 - }, - "0xdf87270e04bc5ac140e93571d0dd0c6f4a058b41": { - "address": "0xdf87270e04bc5ac140e93571d0dd0c6f4a058b41", - "symbol": "MLH", - "decimals": 18, - "name": "Moolahverse", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xdf87270e04bc5ac140e93571d0dd0c6f4a058b41.png", - "aggregators": ["Rubic", "Rango", "Sonarwatch"], - "occurrences": 3 - }, - "0x690031313d70c2545357f4487c6a3f134c434507": { - "address": "0x690031313d70c2545357f4487c6a3f134c434507", - "symbol": "QQQ", - "decimals": 9, - "name": "QQQ6900", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x690031313d70c2545357f4487c6a3f134c434507.png", - "aggregators": ["Rubic", "Rango", "Sonarwatch"], - "occurrences": 3 - }, - "0x79c6ffe2ccbca761e9e289a69432bffb0b744876": { - "address": "0x79c6ffe2ccbca761e9e289a69432bffb0b744876", - "symbol": "PINEOWL", - "decimals": 9, - "name": "Pineapple Owl", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x79c6ffe2ccbca761e9e289a69432bffb0b744876.png", - "aggregators": ["Rubic", "Rango", "Sonarwatch"], - "occurrences": 3 - }, - "0x6965fb688861c004f4f0117980c519b342419941": { - "address": "0x6965fb688861c004f4f0117980c519b342419941", - "symbol": "NUMBER", - "decimals": 18, - "name": "NUMBER", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x6965fb688861c004f4f0117980c519b342419941.png", - "aggregators": ["Rubic", "Rango", "Sonarwatch"], - "occurrences": 3 - }, - "0xdd468a1ddc392dcdbef6db6e34e89aa338f9f186": { - "address": "0xdd468a1ddc392dcdbef6db6e34e89aa338f9f186", - "symbol": "MEZOUSD", - "decimals": 18, - "name": "Mezo USD", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xdd468a1ddc392dcdbef6db6e34e89aa338f9f186.png", - "aggregators": ["Metamask", "Rubic"], - "occurrences": 2 - }, - "0x4df812f6064def1e5e029f1ca858777cc98d2d81": { - "address": "0x4df812f6064def1e5e029f1ca858777cc98d2d81", - "symbol": "XAUR", - "decimals": 8, - "name": "Xaurum", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x4df812f6064def1e5e029f1ca858777cc98d2d81.png", - "aggregators": ["Metamask", "Rubic"], - "occurrences": 2 - }, - "0xb9e7f8568e08d5659f5d29c4997173d84cdf2607": { - "address": "0xb9e7f8568e08d5659f5d29c4997173d84cdf2607", - "symbol": "SWT", - "decimals": 18, - "name": "Swarm City Token", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xb9e7f8568e08d5659f5d29c4997173d84cdf2607.png", - "aggregators": ["Metamask", "Rubic"], - "occurrences": 2 - }, - "0xf7b098298f7c69fc14610bf71d5e02c60792894c": { - "address": "0xf7b098298f7c69fc14610bf71d5e02c60792894c", - "symbol": "GUPPY", - "decimals": 3, - "name": "Guppy", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xf7b098298f7c69fc14610bf71d5e02c60792894c.png", - "aggregators": ["Metamask", "Rubic"], - "occurrences": 2 - }, - "0xe814aee960a85208c3db542c53e7d4a6c8d5f60f": { - "address": "0xe814aee960a85208c3db542c53e7d4a6c8d5f60f", - "symbol": "DAY", - "decimals": 18, - "name": "DAY", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xe814aee960a85208c3db542c53e7d4a6c8d5f60f.png", - "aggregators": ["Metamask", "Rubic"], - "occurrences": 2 - }, - "0x1c4481750daa5ff521a2a7490d9981ed46465dbd": { - "address": "0x1c4481750daa5ff521a2a7490d9981ed46465dbd", - "symbol": "BCPT", - "decimals": 18, - "name": "BlockMason Credit Protocol Token", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x1c4481750daa5ff521a2a7490d9981ed46465dbd.png", - "aggregators": ["Metamask", "Rubic"], - "occurrences": 2 - }, - "0x2604fa406be957e542beb89e6754fcde6815e83f": { - "address": "0x2604fa406be957e542beb89e6754fcde6815e83f", - "symbol": "PKT", - "decimals": 18, - "name": "Playkey Token", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x2604fa406be957e542beb89e6754fcde6815e83f.png", - "aggregators": ["Metamask", "Rubic"], - "occurrences": 2 - }, - "0xa823e6722006afe99e91c30ff5295052fe6b8e32": { - "address": "0xa823e6722006afe99e91c30ff5295052fe6b8e32", - "symbol": "NEU", - "decimals": 18, - "name": "Neumark", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xa823e6722006afe99e91c30ff5295052fe6b8e32.png", - "aggregators": ["Metamask", "Rubic"], - "occurrences": 2 - }, - "0x317eb4ad9cfac6232f0046831322e895507bcbeb": { - "address": "0x317eb4ad9cfac6232f0046831322e895507bcbeb", - "symbol": "TDX", - "decimals": 18, - "name": "Tidex Token", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x317eb4ad9cfac6232f0046831322e895507bcbeb.png", - "aggregators": ["Metamask", "Rubic"], - "occurrences": 2 - }, - "0xdf347911910b6c9a4286ba8e2ee5ea4a39eb2134": { - "address": "0xdf347911910b6c9a4286ba8e2ee5ea4a39eb2134", - "symbol": "BOB", - "decimals": 18, - "name": "BOB Token", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xdf347911910b6c9a4286ba8e2ee5ea4a39eb2134.png", - "aggregators": ["Metamask", "Rubic"], - "occurrences": 2 - }, - "0xa95592dcffa3c080b4b40e459c5f5692f67db7f8": { - "address": "0xa95592dcffa3c080b4b40e459c5f5692f67db7f8", - "symbol": "ELY", - "decimals": 18, - "name": "Elycoin", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xa95592dcffa3c080b4b40e459c5f5692f67db7f8.png", - "aggregators": ["Metamask", "Rubic"], - "occurrences": 2 - }, - "0xfef3884b603c33ef8ed4183346e093a173c94da6": { - "address": "0xfef3884b603c33ef8ed4183346e093a173c94da6", - "symbol": "METM", - "decimals": 18, - "name": "Metamorph", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xfef3884b603c33ef8ed4183346e093a173c94da6.png", - "aggregators": ["Metamask", "Rubic"], - "occurrences": 2 - }, - "0x16484d73ac08d2355f466d448d2b79d2039f6ebb": { - "address": "0x16484d73ac08d2355f466d448d2b79d2039f6ebb", - "symbol": "FKX", - "decimals": 18, - "name": "FortKnoxster", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x16484d73ac08d2355f466d448d2b79d2039f6ebb.png", - "aggregators": ["Metamask", "Rubic"], - "occurrences": 2 - }, - "0x48ff53777f747cfb694101222a944de070c15d36": { - "address": "0x48ff53777f747cfb694101222a944de070c15d36", - "symbol": "IMP", - "decimals": 7, - "name": "Ether Kingdoms Token", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x48ff53777f747cfb694101222a944de070c15d36.png", - "aggregators": ["Metamask", "Rubic"], - "occurrences": 2 - }, - "0x0db8d8b76bc361bacbb72e2c491e06085a97ab31": { - "address": "0x0db8d8b76bc361bacbb72e2c491e06085a97ab31", - "symbol": "IQN", - "decimals": 18, - "name": "IQeon", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x0db8d8b76bc361bacbb72e2c491e06085a97ab31.png", - "aggregators": ["Metamask", "Rubic"], - "occurrences": 2 - }, - "0x92a5b04d0ed5d94d7a193d1d334d3d16996f4e13": { - "address": "0x92a5b04d0ed5d94d7a193d1d334d3d16996f4e13", - "symbol": "ERT", - "decimals": 18, - "name": "Eristica", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x92a5b04d0ed5d94d7a193d1d334d3d16996f4e13.png", - "aggregators": ["Metamask", "Rubic"], - "occurrences": 2 - }, - "0x14c926f2290044b647e1bf2072e67b495eff1905": { - "address": "0x14c926f2290044b647e1bf2072e67b495eff1905", - "symbol": "BETHER", - "decimals": 18, - "name": "Bethereum", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x14c926f2290044b647e1bf2072e67b495eff1905.png", - "aggregators": ["Metamask", "Rubic"], - "occurrences": 2 - }, - "0x2ecb13a8c458c379c4d9a7259e202de03c8f3d19": { - "address": "0x2ecb13a8c458c379c4d9a7259e202de03c8f3d19", - "symbol": "BC", - "decimals": 18, - "name": "Block-Chain.com Token", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x2ecb13a8c458c379c4d9a7259e202de03c8f3d19.png", - "aggregators": ["Metamask", "Rubic"], - "occurrences": 2 - }, - "0x8b79656fc38a04044e495e22fad747126ca305c4": { - "address": "0x8b79656fc38a04044e495e22fad747126ca305c4", - "symbol": "AGVC", - "decimals": 18, - "name": "AgaveCoin", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x8b79656fc38a04044e495e22fad747126ca305c4.png", - "aggregators": ["Metamask", "Rubic"], - "occurrences": 2 - }, - "0xdcd85914b8ae28c1e62f1c488e1d968d5aaffe2b": { - "address": "0xdcd85914b8ae28c1e62f1c488e1d968d5aaffe2b", - "symbol": "TOP", - "decimals": 18, - "name": "TOP Network Token", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xdcd85914b8ae28c1e62f1c488e1d968d5aaffe2b.png", - "aggregators": ["Metamask", "Rubic"], - "occurrences": 2 - }, - "0x82f4ded9cec9b5750fbff5c2185aee35afc16587": { - "address": "0x82f4ded9cec9b5750fbff5c2185aee35afc16587", - "symbol": "DREAM", - "decimals": 6, - "name": "DreamTeam Token", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x82f4ded9cec9b5750fbff5c2185aee35afc16587.png", - "aggregators": ["Metamask", "Rubic"], - "occurrences": 2 - }, - "0xff0e5e014cf97e0615cb50f6f39da6388e2fae6e": { - "address": "0xff0e5e014cf97e0615cb50f6f39da6388e2fae6e", - "symbol": "OGO", - "decimals": 18, - "name": "Origo", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xff0e5e014cf97e0615cb50f6f39da6388e2fae6e.png", - "aggregators": ["Metamask", "Rubic"], - "occurrences": 2 - }, - "0x5f778ec4b31a506c1dfd8b06f131e9b451a61d39": { - "address": "0x5f778ec4b31a506c1dfd8b06f131e9b451a61d39", - "symbol": "UPX", - "decimals": 18, - "name": "UPX Token", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x5f778ec4b31a506c1dfd8b06f131e9b451a61d39.png", - "aggregators": ["Metamask", "Rubic"], - "occurrences": 2 - }, - "0xf25c91c87e0b1fd9b4064af0f427157aab0193a7": { - "address": "0xf25c91c87e0b1fd9b4064af0f427157aab0193a7", - "symbol": "BASIC", - "decimals": 18, - "name": "BASIC Token", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xf25c91c87e0b1fd9b4064af0f427157aab0193a7.png", - "aggregators": ["Metamask", "Rubic"], - "occurrences": 2 - }, - "0xc7e43a1c8e118aa2965f5eabe0e718d83db7a63c": { - "address": "0xc7e43a1c8e118aa2965f5eabe0e718d83db7a63c", - "symbol": "ZCRT", - "decimals": 18, - "name": "ZCore Token", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xc7e43a1c8e118aa2965f5eabe0e718d83db7a63c.png", - "aggregators": ["Metamask", "Rubic"], - "occurrences": 2 - }, - "0xc8cac7672f4669685817cf332a33eb249f085475": { - "address": "0xc8cac7672f4669685817cf332a33eb249f085475", - "symbol": "LVN", - "decimals": 18, - "name": "LivenCoin", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xc8cac7672f4669685817cf332a33eb249f085475.png", - "aggregators": ["Metamask", "Rubic"], - "occurrences": 2 - }, - "0xb72b31907c1c95f3650b64b2469e08edacee5e8f": { - "address": "0xb72b31907c1c95f3650b64b2469e08edacee5e8f", - "symbol": "VBZRX", - "decimals": 18, - "name": "bZx Vesting Token (vBZRX)", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xb72b31907c1c95f3650b64b2469e08edacee5e8f.png", - "aggregators": ["Metamask", "Rubic"], - "occurrences": 2 - }, - "0x5150956e082c748ca837a5dfa0a7c10ca4697f9c": { - "address": "0x5150956e082c748ca837a5dfa0a7c10ca4697f9c", - "symbol": "ZDEX", - "decimals": 18, - "name": "Zeedex", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x5150956e082c748ca837a5dfa0a7c10ca4697f9c.png", - "aggregators": ["Metamask", "Rubic"], - "occurrences": 2 - }, - "0x8282df223ac402d04b2097d16f758af4f70e7db0": { - "address": "0x8282df223ac402d04b2097d16f758af4f70e7db0", - "symbol": "SYFL", - "decimals": 18, - "name": "YFLink Synthetic", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x8282df223ac402d04b2097d16f758af4f70e7db0.png", - "aggregators": ["Metamask", "Rubic"], - "occurrences": 2 - }, - "0x0bead9a1bcc1b84d06e3f2df67e3549fd55ab054": { - "address": "0x0bead9a1bcc1b84d06e3f2df67e3549fd55ab054", - "symbol": "EURXB", - "decimals": 18, - "name": "EURxb", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x0bead9a1bcc1b84d06e3f2df67e3549fd55ab054.png", - "aggregators": ["Metamask", "Rubic"], - "occurrences": 2 - }, - "0xd3c625f54dec647db8780dbbe0e880ef21ba4329": { - "address": "0xd3c625f54dec647db8780dbbe0e880ef21ba4329", - "symbol": "XHT", - "decimals": 18, - "name": "HollaEx Token", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xd3c625f54dec647db8780dbbe0e880ef21ba4329.png", - "aggregators": ["Metamask", "Rubic"], - "occurrences": 2 - }, - "0x75387e1287dd85482ab66102da9f6577e027f609": { - "address": "0x75387e1287dd85482ab66102da9f6577e027f609", - "symbol": "MAI", - "decimals": 18, - "name": "MindsyncAI", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x75387e1287dd85482ab66102da9f6577e027f609.png", - "aggregators": ["Metamask", "Rubic"], - "occurrences": 2 - }, - "0xb16e967ff83de3f1e9fceafbc2c28c1c5c56ef91": { - "address": "0xb16e967ff83de3f1e9fceafbc2c28c1c5c56ef91", - "symbol": "PDOG", - "decimals": 18, - "name": "Polkadog", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xb16e967ff83de3f1e9fceafbc2c28c1c5c56ef91.png", - "aggregators": ["Metamask", "Rubic"], - "occurrences": 2 - }, - "0x9d38f670d15c14716be1f109a4f453e966a2b6d4": { - "address": "0x9d38f670d15c14716be1f109a4f453e966a2b6d4", - "symbol": "QUID", - "decimals": 9, - "name": "Quid Ika", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x9d38f670d15c14716be1f109a4f453e966a2b6d4.png", - "aggregators": ["Metamask", "Rubic"], - "occurrences": 2 - }, - "0xc7d9c108d4e1dd1484d3e2568d7f74bfd763d356": { - "address": "0xc7d9c108d4e1dd1484d3e2568d7f74bfd763d356", - "symbol": "XSTUSD", - "decimals": 18, - "name": "SORA Synthetic USD", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xc7d9c108d4e1dd1484d3e2568d7f74bfd763d356.png", - "aggregators": ["Metamask", "Rubic"], - "occurrences": 2 - }, - "0xae0585a259a3bcab258d6ee02fb583f7b33c2a12": { - "address": "0xae0585a259a3bcab258d6ee02fb583f7b33c2a12", - "symbol": "TEM", - "decimals": 18, - "name": "TempleCoin", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xae0585a259a3bcab258d6ee02fb583f7b33c2a12.png", - "aggregators": ["Metamask", "Rubic"], - "occurrences": 2 - }, - "0xceba2a8f6ec221aeb5f3a7bcd15cbc7e6a387bfb": { - "address": "0xceba2a8f6ec221aeb5f3a7bcd15cbc7e6a387bfb", - "symbol": "PAN", - "decimals": 18, - "name": "Peter Pan", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xceba2a8f6ec221aeb5f3a7bcd15cbc7e6a387bfb.png", - "aggregators": ["Metamask", "TrustWallet"], - "occurrences": 2 - }, - "0x2013c72c04d3071be73f0af6edc909f659656bda": { - "address": "0x2013c72c04d3071be73f0af6edc909f659656bda", - "symbol": "SHIBADOG", - "decimals": 18, - "name": "Shiba San", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x2013c72c04d3071be73f0af6edc909f659656bda.png", - "aggregators": ["Metamask", "Rubic"], - "occurrences": 2 - }, - "0x0000852600ceb001e08e00bc008be620d60031f2": { - "address": "0x0000852600ceb001e08e00bc008be620d60031f2", - "symbol": "THKD", - "decimals": 18, - "name": "TrueHKD", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x0000852600ceb001e08e00bc008be620d60031f2.png", - "aggregators": ["Metamask", "Rubic"], - "occurrences": 2 - }, - "0x06325440d014e39736583c165c2963ba99faf14e": { - "address": "0x06325440d014e39736583c165c2963ba99faf14e", - "symbol": "STECRV", - "decimals": 18, - "name": "Curve.fi ETH/stETH", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x06325440d014e39736583c165c2963ba99faf14e.png", - "aggregators": ["Metamask", "LiFi"], - "occurrences": 2 - }, - "0x3fa400483487a489ec9b1db29c4129063eec4654": { - "address": "0x3fa400483487a489ec9b1db29c4129063eec4654", - "symbol": "KEK", - "decimals": 18, - "name": "Cryptokek.com", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x3fa400483487a489ec9b1db29c4129063eec4654.png", - "aggregators": ["Metamask", "Rubic"], - "occurrences": 2 - }, - "0x6aa030a9710cad6e719a4ec0a85260eb3f4f86c1": { - "address": "0x6aa030a9710cad6e719a4ec0a85260eb3f4f86c1", - "symbol": "RWA", - "decimals": 18, - "name": "Real World Asset", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x6aa030a9710cad6e719a4ec0a85260eb3f4f86c1.png", - "aggregators": ["Metamask", "Socket"], - "occurrences": 2 - }, - "0xb1cd6e4153b2a390cf00a6556b0fc1458c4a5533": { - "address": "0xb1cd6e4153b2a390cf00a6556b0fc1458c4a5533", - "symbol": "ETHBNT", - "decimals": 18, - "name": "ETHBNT Liquidity Pool", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xb1cd6e4153b2a390cf00a6556b0fc1458c4a5533.png", - "aggregators": ["Metamask", "Rubic"], - "occurrences": 2 - }, - "0xaf30d2a7e90d7dc361c8c4585e9bb7d2f6f15bc7": { - "address": "0xaf30d2a7e90d7dc361c8c4585e9bb7d2f6f15bc7", - "symbol": "1ST", - "decimals": 18, - "name": "FirstBlood Token", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xaf30d2a7e90d7dc361c8c4585e9bb7d2f6f15bc7.png", - "aggregators": ["Metamask"], - "occurrences": 1 - }, - "0x71d01db8d6a2fbea7f8d434599c237980c234e4c": { - "address": "0x71d01db8d6a2fbea7f8d434599c237980c234e4c", - "symbol": "GLA", - "decimals": 8, - "name": "Gladius", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x71d01db8d6a2fbea7f8d434599c237980c234e4c.png", - "aggregators": ["Metamask"], - "occurrences": 1 - }, - "0x4d8fc1453a0f359e99c9675954e656d80d996fbf": { - "address": "0x4d8fc1453a0f359e99c9675954e656d80d996fbf", - "symbol": "BEE", - "decimals": 18, - "name": "BEE Token", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x4d8fc1453a0f359e99c9675954e656d80d996fbf.png", - "aggregators": ["Metamask"], - "occurrences": 1 - }, - "0xf03f8d65bafa598611c3495124093c56e8f638f0": { - "address": "0xf03f8d65bafa598611c3495124093c56e8f638f0", - "symbol": "VIEW", - "decimals": 18, - "name": "Viewly", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xf03f8d65bafa598611c3495124093c56e8f638f0.png", - "aggregators": ["Metamask"], - "occurrences": 1 - }, - "0x93a7174dafd31d13400cd9fa01f4e5b5baa00d39": { - "address": "0x93a7174dafd31d13400cd9fa01f4e5b5baa00d39", - "symbol": "HAK", - "decimals": 18, - "name": "Shaka", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x93a7174dafd31d13400cd9fa01f4e5b5baa00d39.png", - "aggregators": ["Metamask"], - "occurrences": 1 - }, - "0x7b760d06e401f85545f3b50c44bf5b05308b7b62": { - "address": "0x7b760d06e401f85545f3b50c44bf5b05308b7b62", - "symbol": "YFLUSD", - "decimals": 18, - "name": "YFLink USD", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x7b760d06e401f85545f3b50c44bf5b05308b7b62.png", - "aggregators": ["Metamask"], - "occurrences": 1 - }, - "0x07c52c2537d84e532a9f15d32e152c8b94d2b232": { - "address": "0x07c52c2537d84e532a9f15d32e152c8b94d2b232", - "symbol": "ZKT", - "decimals": 18, - "name": "ZkTube", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x07c52c2537d84e532a9f15d32e152c8b94d2b232.png", - "aggregators": ["Metamask"], - "occurrences": 1 - }, - "0x8b385ca3592a5efc34e0c9fe663de56897f1751f": { - "address": "0x8b385ca3592a5efc34e0c9fe663de56897f1751f", - "symbol": "IBIT", - "decimals": 18, - "name": "INFibit", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x8b385ca3592a5efc34e0c9fe663de56897f1751f.png", - "aggregators": ["Metamask"], - "occurrences": 1 - }, - "0x252739487c1fa66eaeae7ced41d6358ab2a6bca9": { - "address": "0x252739487c1fa66eaeae7ced41d6358ab2a6bca9", - "symbol": "RCOIN", - "decimals": 8, - "name": "ArCoin", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x252739487c1fa66eaeae7ced41d6358ab2a6bca9.png", - "aggregators": ["Metamask"], - "occurrences": 1 - }, - "0x4dc26fc5854e7648a064a4abd590bbe71724c277": { - "address": "0x4dc26fc5854e7648a064a4abd590bbe71724c277", - "symbol": "ANIME", - "decimals": 18, - "name": "Animecoin", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x4dc26fc5854e7648a064a4abd590bbe71724c277.png", - "aggregators": [ - "CoinMarketCap", - "1inch", - "LiFi", - "Socket", - "Rubic", - "Squid", - "Rango", - "Sonarwatch" - ], - "occurrences": 8 - }, - "0x4c1746a800d224393fe2470c70a35717ed4ea5f1": { - "address": "0x4c1746a800d224393fe2470c70a35717ed4ea5f1", - "symbol": "PLUME", - "decimals": 18, - "name": "Plume", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x4c1746a800d224393fe2470c70a35717ed4ea5f1.png", - "aggregators": [ - "CoinMarketCap", - "1inch", - "LiFi", - "Rubic", - "Squid", - "Rango", - "Sonarwatch" - ], - "occurrences": 7 - }, - "0xda5e1988097297dcdc1f90d4dfe7909e847cbef6": { - "address": "0xda5e1988097297dcdc1f90d4dfe7909e847cbef6", - "symbol": "WLFI", - "decimals": 18, - "name": "World Liberty Financial", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xda5e1988097297dcdc1f90d4dfe7909e847cbef6.png", - "aggregators": [ - "CoinMarketCap", - "1inch", - "LiFi", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 7 - }, - "0xcacd6fd266af91b8aed52accc382b4e165586e29": { - "address": "0xcacd6fd266af91b8aed52accc382b4e165586e29", - "symbol": "FRXUSD", - "decimals": 18, - "name": "Frax USD", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xcacd6fd266af91b8aed52accc382b4e165586e29.png", - "aggregators": [ - "CoinMarketCap", - "1inch", - "LiFi", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 7 - }, - "0xcf62f905562626cfcdd2261162a51fd02fc9c5b6": { - "address": "0xcf62f905562626cfcdd2261162a51fd02fc9c5b6", - "symbol": "SFRXUSD", - "decimals": 18, - "name": "Staked Frax USD", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xcf62f905562626cfcdd2261162a51fd02fc9c5b6.png", - "aggregators": [ - "CoinMarketCap", - "LiFi", - "Socket", - "Rubic", - "Squid", - "Rango", - "Sonarwatch" - ], - "occurrences": 7 - }, - "0x888883b5f5d21fb10dfeb70e8f9722b9fb0e5e51": { - "address": "0x888883b5f5d21fb10dfeb70e8f9722b9fb0e5e51", - "symbol": "EUROP", - "decimals": 6, - "name": "EUR P", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x888883b5f5d21fb10dfeb70e8f9722b9fb0e5e51.png", - "aggregators": [ - "CoinMarketCap", - "LiFi", - "Rubic", - "Squid", - "Rango", - "Sonarwatch" - ], - "occurrences": 6 - }, - "0x3f80b1c54ae920be41a77f8b902259d48cf24ccf": { - "address": "0x3f80b1c54ae920be41a77f8b902259d48cf24ccf", - "symbol": "KERNEL", - "decimals": 18, - "name": "KernelDAO", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x3f80b1c54ae920be41a77f8b902259d48cf24ccf.png", - "aggregators": [ - "CoinMarketCap", - "Socket", - "Rubic", - "Squid", - "Rango", - "Sonarwatch" - ], - "occurrences": 6 - }, - "0xc43c6bfeda065fe2c4c11765bf838789bd0bb5de": { - "address": "0xc43c6bfeda065fe2c4c11765bf838789bd0bb5de", - "symbol": "RED", - "decimals": 18, - "name": "RedStone", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xc43c6bfeda065fe2c4c11765bf838789bd0bb5de.png", - "aggregators": [ - "CoinMarketCap", - "LiFi", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 6 - }, - "0x007115416ab6c266329a03b09a8aa39ac2ef7d9d": { - "address": "0x007115416ab6c266329a03b09a8aa39ac2ef7d9d", - "symbol": "MBTC", - "decimals": 18, - "name": "Midas mBTC", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x007115416ab6c266329a03b09a8aa39ac2ef7d9d.png", - "aggregators": [ - "CoinGecko", - "LiFi", - "Rubic", - "Squid", - "Rango", - "Sonarwatch" - ], - "occurrences": 6 - }, - "0xb8b295df2cd735b15be5eb419517aa626fc43cd5": { - "address": "0xb8b295df2cd735b15be5eb419517aa626fc43cd5", - "symbol": "STLINK", - "decimals": 18, - "name": "Staked LINK", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xb8b295df2cd735b15be5eb419517aa626fc43cd5.png", - "aggregators": [ - "CoinGecko", - "LiFi", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 6 - }, - "0x09d4214c03d01f49544c0448dbe3a27f768f2b34": { - "address": "0x09d4214c03d01f49544c0448dbe3a27f768f2b34", - "symbol": "RUSD", - "decimals": 18, - "name": "Reservoir rUSD", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x09d4214c03d01f49544c0448dbe3a27f768f2b34.png", - "aggregators": [ - "CoinGecko", - "LiFi", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 6 - }, - "0xda67b4284609d2d48e5d10cfac411572727dc1ed": { - "address": "0xda67b4284609d2d48e5d10cfac411572727dc1ed", - "symbol": "USN", - "decimals": 18, - "name": "Noon USN", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xda67b4284609d2d48e5d10cfac411572727dc1ed.png", - "aggregators": [ - "CoinGecko", - "LiFi", - "Rubic", - "Squid", - "Rango", - "Sonarwatch" - ], - "occurrences": 6 - }, - "0xad55aebc9b8c03fc43cd9f62260391c13c23e7c0": { - "address": "0xad55aebc9b8c03fc43cd9f62260391c13c23e7c0", - "symbol": "CUSDO", - "decimals": 18, - "name": "Compounding OpenDollar", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xad55aebc9b8c03fc43cd9f62260391c13c23e7c0.png", - "aggregators": [ - "CoinMarketCap", - "1inch", - "LiFi", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 6 - }, - "0xc139190f447e929f090edeb554d95abb8b18ac1c": { - "address": "0xc139190f447e929f090edeb554d95abb8b18ac1c", - "symbol": "USDTB", - "decimals": 18, - "name": "USDtb", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xc139190f447e929f090edeb554d95abb8b18ac1c.png", - "aggregators": [ - "CoinGecko", - "LiFi", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 6 - }, - "0x6e7f11641c1ec71591828e531334192d622703f7": { - "address": "0x6e7f11641c1ec71591828e531334192d622703f7", - "symbol": "OIK", - "decimals": 18, - "name": "Space Nation Oikos", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x6e7f11641c1ec71591828e531334192d622703f7.png", - "aggregators": [ - "CoinMarketCap", - "Socket", - "Rubic", - "Squid", - "Rango", - "Sonarwatch" - ], - "occurrences": 6 - }, - "0x547213367cfb08ab418e7b54d7883b2c2aa27fd7": { - "address": "0x547213367cfb08ab418e7b54d7883b2c2aa27fd7", - "symbol": "SUSDZ", - "decimals": 18, - "name": "Anzen Staked USDz", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x547213367cfb08ab418e7b54d7883b2c2aa27fd7.png", - "aggregators": [ - "CoinGecko", - "LiFi", - "Rubic", - "Squid", - "Rango", - "Sonarwatch" - ], - "occurrences": 6 - }, - "0xde17a000ba631c5d7c2bd9fb692efea52d90dee2": { - "address": "0xde17a000ba631c5d7c2bd9fb692efea52d90dee2", - "symbol": "USDN", - "decimals": 18, - "name": "SMARDEX USDN", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xde17a000ba631c5d7c2bd9fb692efea52d90dee2.png", - "aggregators": [ - "CoinMarketCap", - "1inch", - "LiFi", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 6 - }, - "0x00000000efe302beaa2b3e6e1b18d08d69a9012a": { - "address": "0x00000000efe302beaa2b3e6e1b18d08d69a9012a", - "symbol": "AUSD", - "decimals": 6, - "name": "AUSD", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x00000000efe302beaa2b3e6e1b18d08d69a9012a.png", - "aggregators": [ - "CoinMarketCap", - "LiFi", - "Rubic", - "Squid", - "Rango", - "Sonarwatch" - ], - "occurrences": 6 - }, - "0x4eddb15a0abfa2c349e8065af9214e942d9a6d36": { - "address": "0x4eddb15a0abfa2c349e8065af9214e942d9a6d36", - "symbol": "XYRO", - "decimals": 18, - "name": "XYRO", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x4eddb15a0abfa2c349e8065af9214e942d9a6d36.png", - "aggregators": [ - "CoinMarketCap", - "LiFi", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 6 - }, - "0x87c9053c819bb28e0d73d33059e1b3da80afb0cf": { - "address": "0x87c9053c819bb28e0d73d33059e1b3da80afb0cf", - "symbol": "MRE7YIELD", - "decimals": 18, - "name": "Midas mRe7YIELD", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x87c9053c819bb28e0d73d33059e1b3da80afb0cf.png", - "aggregators": [ - "CoinGecko", - "LiFi", - "Rubic", - "Squid", - "Rango", - "Sonarwatch" - ], - "occurrences": 6 - }, - "0x437cc33344a0b27a429f795ff6b469c72698b291": { - "address": "0x437cc33344a0b27a429f795ff6b469c72698b291", - "symbol": "WM", - "decimals": 6, - "name": "WrappedM by M 0", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x437cc33344a0b27a429f795ff6b469c72698b291.png", - "aggregators": [ - "CoinGecko", - "Socket", - "Rubic", - "Squid", - "Rango", - "Sonarwatch" - ], - "occurrences": 6 - }, - "0x14fee680690900ba0cccfc76ad70fd1b95d10e16": { - "address": "0x14fee680690900ba0cccfc76ad70fd1b95d10e16", - "symbol": "PAAL", - "decimals": 9, - "name": "PAAL AI", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x14fee680690900ba0cccfc76ad70fd1b95d10e16.png", - "aggregators": [ - "CoinMarketCap", - "1inch", - "LiFi", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 6 - }, - "0x13d074303c95a34d304f29928dc8a16dec797e9e": { - "address": "0x13d074303c95a34d304f29928dc8a16dec797e9e", - "symbol": "LAK3", - "decimals": 18, - "name": "LAKE", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x13d074303c95a34d304f29928dc8a16dec797e9e.png", - "aggregators": [ - "CoinMarketCap", - "LiFi", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 6 - }, - "0x738d1115b90efa71ae468f1287fc864775e23a31": { - "address": "0x738d1115b90efa71ae468f1287fc864775e23a31", - "symbol": "SRUSD", - "decimals": 18, - "name": "Reservoir srUSD", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x738d1115b90efa71ae468f1287fc864775e23a31.png", - "aggregators": [ - "CoinGecko", - "LiFi", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 6 - }, - "0x80ac24aa929eaf5013f6436cda2a7ba190f5cc0b": { - "address": "0x80ac24aa929eaf5013f6436cda2a7ba190f5cc0b", - "symbol": "SYRUPUSDC", - "decimals": 6, - "name": "SyrupUSDC", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x80ac24aa929eaf5013f6436cda2a7ba190f5cc0b.png", - "aggregators": [ - "CoinMarketCap", - "LiFi", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 6 - }, - "0x57ab1e0003f623289cd798b1824be09a793e4bec": { - "address": "0x57ab1e0003f623289cd798b1824be09a793e4bec", - "symbol": "REUSD", - "decimals": 18, - "name": "Resupply USD", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x57ab1e0003f623289cd798b1824be09a793e4bec.png", - "aggregators": [ - "CoinGecko", - "1inch", - "LiFi", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 6 - }, - "0x79d4f0232a66c4c91b89c76362016a1707cfbf4f": { - "address": "0x79d4f0232a66c4c91b89c76362016a1707cfbf4f", - "symbol": "VCHF", - "decimals": 18, - "name": "VNX Swiss Franc", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x79d4f0232a66c4c91b89c76362016a1707cfbf4f.png", - "aggregators": [ - "CoinMarketCap", - "LiFi", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 6 - }, - "0x1202f5c7b4b9e47a1a484e8b270be34dbbc75055": { - "address": "0x1202f5c7b4b9e47a1a484e8b270be34dbbc75055", - "symbol": "WSTUSR", - "decimals": 18, - "name": "Resolv wstUSR", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x1202f5c7b4b9e47a1a484e8b270be34dbbc75055.png", - "aggregators": [ - "CoinGecko", - "LiFi", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 6 - }, - "0x54991328ab43c7d5d31c19d1b9fa048e77b5cd16": { - "address": "0x54991328ab43c7d5d31c19d1b9fa048e77b5cd16", - "symbol": "SOIL", - "decimals": 18, - "name": "Soil", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x54991328ab43c7d5d31c19d1b9fa048e77b5cd16.png", - "aggregators": [ - "CoinMarketCap", - "LiFi", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 6 - }, - "0xdec933e2392ad908263e70a386fbf34e703ffe8f": { - "address": "0xdec933e2392ad908263e70a386fbf34e703ffe8f", - "symbol": "WBCOIN", - "decimals": 18, - "name": "Wrapped Backed Coinbase Global", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xdec933e2392ad908263e70a386fbf34e703ffe8f.png", - "aggregators": [ - "CoinGecko", - "LiFi", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 6 - }, - "0x5651fa7a726b9ec0cad00ee140179912b6e73599": { - "address": "0x5651fa7a726b9ec0cad00ee140179912b6e73599", - "symbol": "OORT", - "decimals": 18, - "name": "OORT", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x5651fa7a726b9ec0cad00ee140179912b6e73599.png", - "aggregators": [ - "CoinMarketCap", - "LiFi", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 6 - }, - "0x64d3cae387405d91f7b0d91fb1d824a281719500": { - "address": "0x64d3cae387405d91f7b0d91fb1d824a281719500", - "symbol": "GS", - "decimals": 18, - "name": "GammaSwap", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x64d3cae387405d91f7b0d91fb1d824a281719500.png", - "aggregators": [ - "CoinMarketCap", - "LiFi", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 6 - }, - "0xa7a0b3fe94121e366d774d60d075f6386f750884": { - "address": "0xa7a0b3fe94121e366d774d60d075f6386f750884", - "symbol": "USDFI", - "decimals": 18, - "name": "USDFI", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xa7a0b3fe94121e366d774d60d075f6386f750884.png", - "aggregators": [ - "CoinGecko", - "LiFi", - "Rubic", - "Squid", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0xc0041ef357b183448b235a8ea73ce4e4ec8c265f": { - "address": "0xc0041ef357b183448b235a8ea73ce4e4ec8c265f", - "symbol": "COOKIE", - "decimals": 18, - "name": "Cookie DAO", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xc0041ef357b183448b235a8ea73ce4e4ec8c265f.png", - "aggregators": [ - "CoinGecko", - "LiFi", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 6 - }, - "0xd9d920aa40f578ab794426f5c90f6c731d159def": { - "address": "0xd9d920aa40f578ab794426f5c90f6c731d159def", - "symbol": "XSOLVBTC", - "decimals": 18, - "name": "Solv Protocol Staked BTC", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xd9d920aa40f578ab794426f5c90f6c731d159def.png", - "aggregators": [ - "CoinMarketCap", - "LiFi", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 6 - }, - "0xdf4ef6ee483953fe3b84abd08c6a060445c01170": { - "address": "0xdf4ef6ee483953fe3b84abd08c6a060445c01170", - "symbol": "WACME", - "decimals": 8, - "name": "Wrapped Accumulate", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xdf4ef6ee483953fe3b84abd08c6a060445c01170.png", - "aggregators": [ - "CoinMarketCap", - "LiFi", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 6 - }, - "0xca9b8d6df0729d85dcfc8ef8bb18af1ad1990786": { - "address": "0xca9b8d6df0729d85dcfc8ef8bb18af1ad1990786", - "symbol": "CATBOY", - "decimals": 18, - "name": "Catboy", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xca9b8d6df0729d85dcfc8ef8bb18af1ad1990786.png", - "aggregators": [ - "CoinMarketCap", - "LiFi", - "Rubic", - "Squid", - "Rango", - "Sonarwatch" - ], - "occurrences": 6 - }, - "0xb5130f4767ab0acc579f25a76e8f9e977cb3f948": { - "address": "0xb5130f4767ab0acc579f25a76e8f9e977cb3f948", - "symbol": "GOD", - "decimals": 18, - "name": "Godcoin", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xb5130f4767ab0acc579f25a76e8f9e977cb3f948.png", - "aggregators": [ - "CoinMarketCap", - "LiFi", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 6 - }, - "0x98a878b1cd98131b271883b390f68d2c90674665": { - "address": "0x98a878b1cd98131b271883b390f68d2c90674665", - "symbol": "APXUSD", - "decimals": 18, - "name": "apxUSD", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x98a878b1cd98131b271883b390f68d2c90674665.png", - "aggregators": ["CoinGecko", "LiFi", "Rubic", "Squid", "Rango"], - "occurrences": 5 - }, - "0x6055dc6ff1077eebe5e6d2ba1a1f53d7ef8430de": { - "address": "0x6055dc6ff1077eebe5e6d2ba1a1f53d7ef8430de", - "symbol": "ES", - "decimals": 6, - "name": "Eclipse", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x6055dc6ff1077eebe5e6d2ba1a1f53d7ef8430de.png", - "aggregators": [ - "CoinMarketCap", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x50753cfaf86c094925bf976f218d043f8791e408": { - "address": "0x50753cfaf86c094925bf976f218d043f8791e408", - "symbol": "EURR", - "decimals": 6, - "name": "StablR Euro", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x50753cfaf86c094925bf976f218d043f8791e408.png", - "aggregators": [ - "CoinMarketCap", - "LiFi", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0xe6bfd33f52d82ccb5b37e16d3dd81f9ffdabb195": { - "address": "0xe6bfd33f52d82ccb5b37e16d3dd81f9ffdabb195", - "symbol": "SXT", - "decimals": 18, - "name": "Space and Time", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xe6bfd33f52d82ccb5b37e16d3dd81f9ffdabb195.png", - "aggregators": [ - "CoinMarketCap", - "LiFi", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0xe343167631d89b6ffc58b88d6b7fb0228795491d": { - "address": "0xe343167631d89b6ffc58b88d6b7fb0228795491d", - "symbol": "USDG", - "decimals": 6, - "name": "Global Dollar", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xe343167631d89b6ffc58b88d6b7fb0228795491d.png", - "aggregators": [ - "Metamask", - "LiFi", - "Socket", - "Rubic", - "Squid", - "Rango" - ], - "occurrences": 6 - }, - "0xef4461891dfb3ac8572ccf7c794664a8dd927945": { - "address": "0xef4461891dfb3ac8572ccf7c794664a8dd927945", - "symbol": "WCT", - "decimals": 18, - "name": "WalletConnect Token", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xef4461891dfb3ac8572ccf7c794664a8dd927945.png", - "aggregators": [ - "Metamask", - "1inch", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0xe07ecc676daf0b24b24a1c46c966d9c463984b38": { - "address": "0xe07ecc676daf0b24b24a1c46c966d9c463984b38", - "symbol": "USEU", - "decimals": 18, - "name": "Nexus Pro USEU", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xe07ecc676daf0b24b24a1c46c966d9c463984b38.png", - "aggregators": [ - "CoinGecko", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x5394794be8b6ed5572fcd6b27103f46b5f390e8f": { - "address": "0x5394794be8b6ed5572fcd6b27103f46b5f390e8f", - "symbol": "AAMMUNIYFIWETH", - "decimals": 18, - "name": "Aave AMM UniYFIWETH", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x5394794be8b6ed5572fcd6b27103f46b5f390e8f.png", - "aggregators": [ - "CoinGecko", - "LiFi", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0xf0610eb7d8ee12d59412da32625d5e273e78ff0b": { - "address": "0xf0610eb7d8ee12d59412da32625d5e273e78ff0b", - "symbol": "MDEX", - "decimals": 18, - "name": "MasterDEX", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xf0610eb7d8ee12d59412da32625d5e273e78ff0b.png", - "aggregators": [ - "CoinGecko", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x370adc71f67f581158dc56f539df5f399128ddf9": { - "address": "0x370adc71f67f581158dc56f539df5f399128ddf9", - "symbol": "AAMMUNIMKRWETH", - "decimals": 18, - "name": "Aave AMM UniMKRWETH", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x370adc71f67f581158dc56f539df5f399128ddf9.png", - "aggregators": [ - "CoinGecko", - "LiFi", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x14d60e7fdc0d71d8611742720e4c50e7a974020c": { - "address": "0x14d60e7fdc0d71d8611742720e4c50e7a974020c", - "symbol": "USCC", - "decimals": 6, - "name": "Superstate USCC", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x14d60e7fdc0d71d8611742720e4c50e7a974020c.png", - "aggregators": [ - "CoinGecko", - "LiFi", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x0557e0d15aec0b9026dd17aa874fdf7d182a2ceb": { - "address": "0x0557e0d15aec0b9026dd17aa874fdf7d182a2ceb", - "symbol": "CFXQ", - "decimals": 6, - "name": "CFX Quantum", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x0557e0d15aec0b9026dd17aa874fdf7d182a2ceb.png", - "aggregators": [ - "CoinMarketCap", - "LiFi", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x7159cc276d7d17ab4b3beb19959e1f39368a45ba": { - "address": "0x7159cc276d7d17ab4b3beb19959e1f39368a45ba", - "symbol": "YND", - "decimals": 18, - "name": "YieldNest", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x7159cc276d7d17ab4b3beb19959e1f39368a45ba.png", - "aggregators": ["CoinMarketCap", "LiFi", "Socket", "Rubic"], - "occurrences": 4 - }, - "0x9a8bc3b04b7f3d87cfc09ba407dced575f2d61d8": { - "address": "0x9a8bc3b04b7f3d87cfc09ba407dced575f2d61d8", - "symbol": "MCWETH", - "decimals": 18, - "name": "MEV Capital wETH", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x9a8bc3b04b7f3d87cfc09ba407dced575f2d61d8.png", - "aggregators": [ - "CoinGecko", - "LiFi", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0xe5e0b73380181273abcfd88695f52c4d0c825661": { - "address": "0xe5e0b73380181273abcfd88695f52c4d0c825661", - "symbol": "ICNT", - "decimals": 18, - "name": "Impossible Cloud Network Token", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xe5e0b73380181273abcfd88695f52c4d0c825661.png", - "aggregators": [ - "CoinMarketCap", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0xaf4dce16da2877f8c9e00544c93b62ac40631f16": { - "address": "0xaf4dce16da2877f8c9e00544c93b62ac40631f16", - "symbol": "MTH", - "decimals": 5, - "name": "Monetha", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xaf4dce16da2877f8c9e00544c93b62ac40631f16.png", - "aggregators": [ - "CoinMarketCap", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x72b658bd674f9c2b4954682f517c17d14476e417": { - "address": "0x72b658bd674f9c2b4954682f517c17d14476e417", - "symbol": "OPTR", - "decimals": 18, - "name": "opTrade AI", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x72b658bd674f9c2b4954682f517c17d14476e417.png", - "aggregators": [ - "CoinGecko", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0xa1b0edf4460cc4d8bfaa18ed871bff15e5b57eb4": { - "address": "0xa1b0edf4460cc4d8bfaa18ed871bff15e5b57eb4", - "symbol": "AAMMUNIBATWETH", - "decimals": 18, - "name": "Aave AMM UniBATWETH", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xa1b0edf4460cc4d8bfaa18ed871bff15e5b57eb4.png", - "aggregators": [ - "CoinGecko", - "LiFi", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x38e491a71291cd43e8de63b7253e482622184894": { - "address": "0x38e491a71291cd43e8de63b7253e482622184894", - "symbol": "AAMMUNISNXWETH", - "decimals": 18, - "name": "Aave AMM UniSNXWETH", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x38e491a71291cd43e8de63b7253e482622184894.png", - "aggregators": [ - "CoinGecko", - "LiFi", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x230ea9aed5d08afdb22cd3c06c47cf24ad501301": { - "address": "0x230ea9aed5d08afdb22cd3c06c47cf24ad501301", - "symbol": "SPX20", - "decimals": 18, - "name": "SPX6900 2 0", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x230ea9aed5d08afdb22cd3c06c47cf24ad501301.png", - "aggregators": [ - "CoinGecko", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0xb4371da53140417cbb3362055374b10d97e420bb": { - "address": "0xb4371da53140417cbb3362055374b10d97e420bb", - "symbol": "SWTH", - "decimals": 8, - "name": "Carbon Protocol", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xb4371da53140417cbb3362055374b10d97e420bb.png", - "aggregators": [ - "CoinMarketCap", - "LiFi", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x45e412e1878080815d6d51d47b83d17869433459": { - "address": "0x45e412e1878080815d6d51d47b83d17869433459", - "symbol": "CTO", - "decimals": 18, - "name": "Chief Troll Officer", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x45e412e1878080815d6d51d47b83d17869433459.png", - "aggregators": [ - "CoinGecko", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0xd94a8f9caed25e63ecc90edfefaf3635ea1e182a": { - "address": "0xd94a8f9caed25e63ecc90edfefaf3635ea1e182a", - "symbol": "SCOMP", - "decimals": 18, - "name": "Stablecomp", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xd94a8f9caed25e63ecc90edfefaf3635ea1e182a.png", - "aggregators": [ - "CoinGecko", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x8a053350ca5f9352a16ded26ab333e2d251dad7c": { - "address": "0x8a053350ca5f9352a16ded26ab333e2d251dad7c", - "symbol": "MMETH", - "decimals": 18, - "name": "Eigenpie mETH", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x8a053350ca5f9352a16ded26ab333e2d251dad7c.png", - "aggregators": [ - "CoinGecko", - "LiFi", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0xe46a5e19b19711332e33f33c2db3ea143e86bc10": { - "address": "0xe46a5e19b19711332e33f33c2db3ea143e86bc10", - "symbol": "MWBETH", - "decimals": 18, - "name": "Eigenpie wBETH", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xe46a5e19b19711332e33f33c2db3ea143e86bc10.png", - "aggregators": [ - "CoinGecko", - "LiFi", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0xf587f2e8aff7d76618d3b6b4626621860fbd54e3": { - "address": "0xf587f2e8aff7d76618d3b6b4626621860fbd54e3", - "symbol": "GTCBBTCC", - "decimals": 18, - "name": "cbBTC Core Morpho Vault", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xf587f2e8aff7d76618d3b6b4626621860fbd54e3.png", - "aggregators": [ - "CoinGecko", - "LiFi", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0xe0c98605f279e4d7946d25b75869c69802823763": { - "address": "0xe0c98605f279e4d7946d25b75869c69802823763", - "symbol": "RE7WBTC", - "decimals": 18, - "name": "Re7 WBTC Morpho Vault", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xe0c98605f279e4d7946d25b75869c69802823763.png", - "aggregators": [ - "CoinGecko", - "LiFi", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0xd63070114470f685b75b74d60eec7c1113d33a3d": { - "address": "0xd63070114470f685b75b74d60eec7c1113d33a3d", - "symbol": "USUALUSDC+", - "decimals": 18, - "name": "MEV Capital Usual Boosted USDC Morpho V", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xd63070114470f685b75b74d60eec7c1113d33a3d.png", - "aggregators": [ - "CoinGecko", - "LiFi", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x90ce5720c17587d28e4af120ae2d313b3bad1722": { - "address": "0x90ce5720c17587d28e4af120ae2d313b3bad1722", - "symbol": "OVER", - "decimals": 18, - "name": "Overtime", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x90ce5720c17587d28e4af120ae2d313b3bad1722.png", - "aggregators": [ - "CoinMarketCap", - "LiFi", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0xbeefc011e94f43b8b7b455ebab290c7ab4e216f1": { - "address": "0xbeefc011e94f43b8b7b455ebab290c7ab4e216f1", - "symbol": "CSUSDL", - "decimals": 18, - "name": "Coinshift USDL Morpho Vault", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xbeefc011e94f43b8b7b455ebab290c7ab4e216f1.png", - "aggregators": [ - "CoinGecko", - "LiFi", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x7c1156e515aa1a2e851674120074968c905aaf37": { - "address": "0x7c1156e515aa1a2e851674120074968c905aaf37", - "symbol": "LVLUSD", - "decimals": 18, - "name": "Level USD", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x7c1156e515aa1a2e851674120074968c905aaf37.png", - "aggregators": [ - "CoinGecko", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0xe2616122ed554bd693335e9143c47df187a86ef3": { - "address": "0xe2616122ed554bd693335e9143c47df187a86ef3", - "symbol": "IMT", - "decimals": 18, - "name": "Immortal Token", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xe2616122ed554bd693335e9143c47df187a86ef3.png", - "aggregators": [ - "CoinMarketCap", - "Rubic", - "Squid", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x87d907568a0761ea45d2917e324557920668f224": { - "address": "0x87d907568a0761ea45d2917e324557920668f224", - "symbol": "GROK20", - "decimals": 18, - "name": "Grok2 0", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x87d907568a0761ea45d2917e324557920668f224.png", - "aggregators": [ - "CoinGecko", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x4f460bb11cf958606c69a963b4a17f9daeeea8b6": { - "address": "0x4f460bb11cf958606c69a963b4a17f9daeeea8b6", - "symbol": "FXUSDC", - "decimals": 18, - "name": "f x Protocol Morpho USDC", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x4f460bb11cf958606c69a963b4a17f9daeeea8b6.png", - "aggregators": [ - "CoinGecko", - "LiFi", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0xbe40491f3261fd42724f1aeb465796eb11c06ddf": { - "address": "0xbe40491f3261fd42724f1aeb465796eb11c06ddf", - "symbol": "RE7FRAX", - "decimals": 18, - "name": "Re7 FRAX", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xbe40491f3261fd42724f1aeb465796eb11c06ddf.png", - "aggregators": ["CoinGecko", "LiFi", "Rubic", "Sonarwatch"], - "occurrences": 4 - }, - "0xe07c41e9cdf7e0a7800e4bbf90d414654fd6413d": { - "address": "0xe07c41e9cdf7e0a7800e4bbf90d414654fd6413d", - "symbol": "CBDC", - "decimals": 9, - "name": "CBDC", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xe07c41e9cdf7e0a7800e4bbf90d414654fd6413d.png", - "aggregators": [ - "CoinGecko", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x43c5034469bce262d32f64c5e7f9f359f5b1495f": { - "address": "0x43c5034469bce262d32f64c5e7f9f359f5b1495f", - "symbol": "DOPE", - "decimals": 9, - "name": "Department Of Propaganda Everywhere", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x43c5034469bce262d32f64c5e7f9f359f5b1495f.png", - "aggregators": [ - "CoinGecko", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0xc7bb03ddd9311fc0338be013e7b523254092fda9": { - "address": "0xc7bb03ddd9311fc0338be013e7b523254092fda9", - "symbol": "N", - "decimals": 18, - "name": "nsurance", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xc7bb03ddd9311fc0338be013e7b523254092fda9.png", - "aggregators": [ - "CoinGecko", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0xdf3ac4f479375802a821f7b7b46cd7eb5e4262cc": { - "address": "0xdf3ac4f479375802a821f7b7b46cd7eb5e4262cc", - "symbol": "EUSD", - "decimals": 18, - "name": "eUSD", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xdf3ac4f479375802a821f7b7b46cd7eb5e4262cc.png", - "aggregators": [ - "CoinGecko", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x015628ce9150db1bce2fbb717a09e846f8a32436": { - "address": "0x015628ce9150db1bce2fbb717a09e846f8a32436", - "symbol": "BBC", - "decimals": 18, - "name": "Big Bonus Coin ETH", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x015628ce9150db1bce2fbb717a09e846f8a32436.png", - "aggregators": [ - "CoinGecko", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0xf2ec4a773ef90c58d98ea734c0ebdb538519b988": { - "address": "0xf2ec4a773ef90c58d98ea734c0ebdb538519b988", - "symbol": "DOGE20", - "decimals": 9, - "name": "Doge 2 0", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xf2ec4a773ef90c58d98ea734c0ebdb538519b988.png", - "aggregators": [ - "CoinGecko", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x8238884ec9668ef77b90c6dff4d1a9f4f4823bfe": { - "address": "0x8238884ec9668ef77b90c6dff4d1a9f4f4823bfe", - "symbol": "USDO", - "decimals": 18, - "name": "OpenEden OpenDollar", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x8238884ec9668ef77b90c6dff4d1a9f4f4823bfe.png", - "aggregators": [ - "CoinMarketCap", - "LiFi", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x904f36d74bed2ef2729eaa1c7a5b70dea2966a02": { - "address": "0x904f36d74bed2ef2729eaa1c7a5b70dea2966a02", - "symbol": "BLB", - "decimals": 18, - "name": "Blueberry", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x904f36d74bed2ef2729eaa1c7a5b70dea2966a02.png", - "aggregators": [ - "CoinGecko", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x27b5739e22ad9033bcbf192059122d163b60349d": { - "address": "0x27b5739e22ad9033bcbf192059122d163b60349d", - "symbol": "ST-YCRV", - "decimals": 18, - "name": "Staked Yearn CRV Vault", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x27b5739e22ad9033bcbf192059122d163b60349d.png", - "aggregators": [ - "CoinGecko", - "LiFi", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x3feb4fea5132695542f8ede5076ac43296d17c6d": { - "address": "0x3feb4fea5132695542f8ede5076ac43296d17c6d", - "symbol": "BTC20", - "decimals": 8, - "name": "Bitcoin 2 0", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x3feb4fea5132695542f8ede5076ac43296d17c6d.png", - "aggregators": [ - "CoinGecko", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x0305f515fa978cf87226cf8a9776d25bcfb2cc0b": { - "address": "0x0305f515fa978cf87226cf8a9776d25bcfb2cc0b", - "symbol": "PEPE20", - "decimals": 18, - "name": "Pepe 2 0", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x0305f515fa978cf87226cf8a9776d25bcfb2cc0b.png", - "aggregators": [ - "CoinGecko", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x4737d9b4592b40d51e110b94c9c043c6654067ae": { - "address": "0x4737d9b4592b40d51e110b94c9c043c6654067ae", - "symbol": "SLVLUSD", - "decimals": 18, - "name": "Staked Level USD", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x4737d9b4592b40d51e110b94c9c043c6654067ae.png", - "aggregators": [ - "CoinGecko", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x775f661b0bd1739349b9a2a3ef60be277c5d2d29": { - "address": "0x775f661b0bd1739349b9a2a3ef60be277c5d2d29", - "symbol": "WAETHLIDOWSTETH", - "decimals": 18, - "name": "Wrapped Aave Ethereum Lido wstETH", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x775f661b0bd1739349b9a2a3ef60be277c5d2d29.png", - "aggregators": ["CoinGecko", "1inch", "LiFi", "Rubic", "Rango"], - "occurrences": 5 - }, - "0x0fe906e030a44ef24ca8c7dc7b7c53a6c4f00ce9": { - "address": "0x0fe906e030a44ef24ca8c7dc7b7c53a6c4f00ce9", - "symbol": "WAETHLIDOWETH", - "decimals": 18, - "name": "Wrapped Aave Ethereum Lido WETH", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x0fe906e030a44ef24ca8c7dc7b7c53a6c4f00ce9.png", - "aggregators": ["CoinGecko", "1inch", "LiFi", "Rubic", "Rango"], - "occurrences": 5 - }, - "0x65d72aa8da931f047169112fcf34f52dbaae7d18": { - "address": "0x65d72aa8da931f047169112fcf34f52dbaae7d18", - "symbol": "RUSD", - "decimals": 18, - "name": "f x rUSD", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x65d72aa8da931f047169112fcf34f52dbaae7d18.png", - "aggregators": [ - "CoinGecko", - "LiFi", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x7bc3485026ac48b6cf9baf0a377477fff5703af8": { - "address": "0x7bc3485026ac48b6cf9baf0a377477fff5703af8", - "symbol": "WAETHUSDT", - "decimals": 6, - "name": "WAETHUSDT", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x7bc3485026ac48b6cf9baf0a377477fff5703af8.png", - "aggregators": ["CoinGecko", "1inch", "LiFi", "Rubic", "Rango"], - "occurrences": 5 - }, - "0x1c530d6de70c05a81bf1670157b9d928e9699089": { - "address": "0x1c530d6de70c05a81bf1670157b9d928e9699089", - "symbol": "MCWBTC", - "decimals": 18, - "name": "MEV Capital WBTC", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x1c530d6de70c05a81bf1670157b9d928e9699089.png", - "aggregators": ["CoinGecko", "LiFi", "Rubic", "Sonarwatch"], - "occurrences": 4 - }, - "0xd4fa2d31b7968e448877f69a96de69f5de8cd23e": { - "address": "0xd4fa2d31b7968e448877f69a96de69f5de8cd23e", - "symbol": "WAETHUSDC", - "decimals": 6, - "name": "WAETHUSDC", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xd4fa2d31b7968e448877f69a96de69f5de8cd23e.png", - "aggregators": ["CoinGecko", "1inch", "LiFi", "Rubic", "Rango"], - "occurrences": 5 - }, - "0xe020b01b6fbd83066aa2e8ee0ccd1eb8d9cc70bf": { - "address": "0xe020b01b6fbd83066aa2e8ee0ccd1eb8d9cc70bf", - "symbol": "ARCD", - "decimals": 18, - "name": "Arcade", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xe020b01b6fbd83066aa2e8ee0ccd1eb8d9cc70bf.png", - "aggregators": [ - "CoinGecko", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x0f359fd18bda75e9c49bc027e7da59a4b01bf32a": { - "address": "0x0f359fd18bda75e9c49bc027e7da59a4b01bf32a", - "symbol": "REUSDC", - "decimals": 18, - "name": "Relend USDC", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x0f359fd18bda75e9c49bc027e7da59a4b01bf32a.png", - "aggregators": [ - "CoinGecko", - "LiFi", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x2411802d8bea09be0af8fd8d08314a63e706b29c": { - "address": "0x2411802d8bea09be0af8fd8d08314a63e706b29c", - "symbol": "FWSTETH", - "decimals": 18, - "name": "Fluid Wrapped Staked ETH", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x2411802d8bea09be0af8fd8d08314a63e706b29c.png", - "aggregators": [ - "CoinGecko", - "LiFi", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x90551c1795392094fe6d29b758eccd233cfaa260": { - "address": "0x90551c1795392094fe6d29b758eccd233cfaa260", - "symbol": "FWETH", - "decimals": 18, - "name": "Fluid Wrapped Ether", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x90551c1795392094fe6d29b758eccd233cfaa260.png", - "aggregators": [ - "CoinGecko", - "LiFi", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0xbeef02e5e13584ab96848af90261f0c8ee04722a": { - "address": "0xbeef02e5e13584ab96848af90261f0c8ee04722a", - "symbol": "STEAKPYUSD", - "decimals": 18, - "name": "Steakhouse PYUSD Morpho Vault", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xbeef02e5e13584ab96848af90261f0c8ee04722a.png", - "aggregators": [ - "CoinGecko", - "LiFi", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x98cf0b67da0f16e1f8f1a1d23ad8dc64c0c70e0b": { - "address": "0x98cf0b67da0f16e1f8f1a1d23ad8dc64c0c70e0b", - "symbol": "MCCBBTC", - "decimals": 18, - "name": "MEV Capital cbBTC", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x98cf0b67da0f16e1f8f1a1d23ad8dc64c0c70e0b.png", - "aggregators": ["CoinGecko", "LiFi", "Rubic", "Sonarwatch"], - "occurrences": 4 - }, - "0xbeef047a543e45807105e51a8bbefcc5950fcfba": { - "address": "0xbeef047a543e45807105e51a8bbefcc5950fcfba", - "symbol": "STEAKUSDT", - "decimals": 18, - "name": "Steakhouse USDT Morpho Vault", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xbeef047a543e45807105e51a8bbefcc5950fcfba.png", - "aggregators": ["CoinGecko", "LiFi", "Rubic", "Sonarwatch"], - "occurrences": 4 - }, - "0x60d715515d4411f7f43e4206dc5d4a3677f0ec78": { - "address": "0x60d715515d4411f7f43e4206dc5d4a3677f0ec78", - "symbol": "RE7USDC", - "decimals": 18, - "name": "Re7 USDC", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x60d715515d4411f7f43e4206dc5d4a3677f0ec78.png", - "aggregators": ["CoinGecko", "LiFi", "Rubic", "Sonarwatch"], - "occurrences": 4 - }, - "0x1265a81d42d513df40d0031f8f2e1346954d665a": { - "address": "0x1265a81d42d513df40d0031f8f2e1346954d665a", - "symbol": "MCEUSDC", - "decimals": 18, - "name": "MEV Capital Elixir USDC", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x1265a81d42d513df40d0031f8f2e1346954d665a.png", - "aggregators": ["CoinGecko", "LiFi", "Rubic", "Sonarwatch"], - "occurrences": 4 - }, - "0x2f1abb81ed86be95bcf8178ba62c8e72d6834775": { - "address": "0x2f1abb81ed86be95bcf8178ba62c8e72d6834775", - "symbol": "PWBTC", - "decimals": 18, - "name": "MEV Capital Pendle WBTC", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x2f1abb81ed86be95bcf8178ba62c8e72d6834775.png", - "aggregators": ["CoinGecko", "LiFi", "Rubic", "Sonarwatch"], - "occurrences": 4 - }, - "0x47000a7b27a75d44ffadfe9d0b97fa04d569b323": { - "address": "0x47000a7b27a75d44ffadfe9d0b97fa04d569b323", - "symbol": "TRUMPIUS", - "decimals": 9, - "name": "Trumpius Maximus", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x47000a7b27a75d44ffadfe9d0b97fa04d569b323.png", - "aggregators": [ - "CoinMarketCap", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0xa9e201a4e269d6cd5e9f0fcbcb78520cf815878b": { - "address": "0xa9e201a4e269d6cd5e9f0fcbcb78520cf815878b", - "symbol": "AAMMUNIRENWETH", - "decimals": 18, - "name": "Aave AMM UniRENWETH", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xa9e201a4e269d6cd5e9f0fcbcb78520cf815878b.png", - "aggregators": [ - "CoinGecko", - "LiFi", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0xea50f402653c41cadbafd1f788341db7b7f37816": { - "address": "0xea50f402653c41cadbafd1f788341db7b7f37816", - "symbol": "SGYD", - "decimals": 18, - "name": "sGYD", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xea50f402653c41cadbafd1f788341db7b7f37816.png", - "aggregators": ["CoinGecko", "LiFi", "Rubic", "Sonarwatch"], - "occurrences": 4 - }, - "0xfbdee8670b273e12b019210426e70091464b02ab": { - "address": "0xfbdee8670b273e12b019210426e70091464b02ab", - "symbol": "MCWM", - "decimals": 18, - "name": "MEV Capital M 0 Morpho Vault", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xfbdee8670b273e12b019210426e70091464b02ab.png", - "aggregators": ["CoinGecko", "LiFi", "Rubic", "Sonarwatch"], - "occurrences": 4 - }, - "0x78fc2c2ed1a4cdb5402365934ae5648adad094d0": { - "address": "0x78fc2c2ed1a4cdb5402365934ae5648adad094d0", - "symbol": "RE7WETH", - "decimals": 18, - "name": "Re7 WETH Morpho Vault", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x78fc2c2ed1a4cdb5402365934ae5648adad094d0.png", - "aggregators": ["CoinGecko", "LiFi", "Rubic", "Sonarwatch"], - "occurrences": 4 - }, - "0x89d80f5e9bc88d8021b352064ae73f0eaf79ebd8": { - "address": "0x89d80f5e9bc88d8021b352064ae73f0eaf79ebd8", - "symbol": "RE7USDA", - "decimals": 18, - "name": "Re7 USDA", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x89d80f5e9bc88d8021b352064ae73f0eaf79ebd8.png", - "aggregators": ["CoinGecko", "LiFi", "Rubic", "Sonarwatch"], - "occurrences": 4 - }, - "0x43fd147d5319b8cf39a6e57143684efca9cf3613": { - "address": "0x43fd147d5319b8cf39a6e57143684efca9cf3613", - "symbol": "RE7TBTC", - "decimals": 18, - "name": "Re7 tBTC", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x43fd147d5319b8cf39a6e57143684efca9cf3613.png", - "aggregators": ["CoinGecko", "LiFi", "Rubic", "Sonarwatch"], - "occurrences": 4 - }, - "0x607f451f850cb612a07b37b6315be23f55165610": { - "address": "0x607f451f850cb612a07b37b6315be23f55165610", - "symbol": "AVRK", - "decimals": 18, - "name": "Avarik Saga", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x607f451f850cb612a07b37b6315be23f55165610.png", - "aggregators": ["CoinMarketCap", "LiFi", "Rubic", "Sonarwatch"], - "occurrences": 4 - }, - "0x4d0528598f916fd1d8dc80e5f54a8feedcfd4b18": { - "address": "0x4d0528598f916fd1d8dc80e5f54a8feedcfd4b18", - "symbol": "ATOS", - "decimals": 18, - "name": "Atoshi", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x4d0528598f916fd1d8dc80e5f54a8feedcfd4b18.png", - "aggregators": ["Metamask", "LiFi", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 5 - }, - "0x0a13a5929e5f0ff0eaba4bd9e9512c91fce40280": { - "address": "0x0a13a5929e5f0ff0eaba4bd9e9512c91fce40280", - "symbol": "XAI", - "decimals": 9, - "name": "XAI Corp", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x0a13a5929e5f0ff0eaba4bd9e9512c91fce40280.png", - "aggregators": [ - "CoinMarketCap", - "LiFi", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x2365a4890ed8965e564b7e2d27c38ba67fec4c6f": { - "address": "0x2365a4890ed8965e564b7e2d27c38ba67fec4c6f", - "symbol": "AAMMUNIWBTCUSDC", - "decimals": 18, - "name": "Aave AMM UniWBTCUSDC", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x2365a4890ed8965e564b7e2d27c38ba67fec4c6f.png", - "aggregators": [ - "CoinGecko", - "LiFi", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0xc21db71648b18c5b9e038d88393c9b254cf8eac8": { - "address": "0xc21db71648b18c5b9e038d88393c9b254cf8eac8", - "symbol": "ERY", - "decimals": 18, - "name": "EURe Real Yield Morpho Vault", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xc21db71648b18c5b9e038d88393c9b254cf8eac8.png", - "aggregators": ["CoinGecko", "LiFi", "Rubic", "Sonarwatch"], - "occurrences": 4 - }, - "0xac6708e83698d34cd5c09d48249b0239008d0ccf": { - "address": "0xac6708e83698d34cd5c09d48249b0239008d0ccf", - "symbol": "FORTKNOX", - "decimals": 18, - "name": "Fort Knox", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xac6708e83698d34cd5c09d48249b0239008d0ccf.png", - "aggregators": [ - "CoinMarketCap", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x429f0d8233e517f9acf6f0c8293bf35804063a83": { - "address": "0x429f0d8233e517f9acf6f0c8293bf35804063a83", - "symbol": "POWER", - "decimals": 18, - "name": "Powerloom", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x429f0d8233e517f9acf6f0c8293bf35804063a83.png", - "aggregators": [ - "CoinMarketCap", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x08d23468a467d2bb86fae0e32f247a26c7e2e994": { - "address": "0x08d23468a467d2bb86fae0e32f247a26c7e2e994", - "symbol": "SINV", - "decimals": 18, - "name": "Staked INV", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x08d23468a467d2bb86fae0e32f247a26c7e2e994.png", - "aggregators": ["CoinGecko", "LiFi", "Rubic", "Sonarwatch"], - "occurrences": 4 - }, - "0xc0bc84e95864bdfdcd1ccfb8a3aa522e79ca1410": { - "address": "0xc0bc84e95864bdfdcd1ccfb8a3aa522e79ca1410", - "symbol": "BTCE", - "decimals": 8, - "name": "bitcoin 2015 Wrapper Meme", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xc0bc84e95864bdfdcd1ccfb8a3aa522e79ca1410.png", - "aggregators": [ - "CoinGecko", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0xef7f7820a001aabac5e0979b175c9ff8af3dd4ec": { - "address": "0xef7f7820a001aabac5e0979b175c9ff8af3dd4ec", - "symbol": "XED", - "decimals": 18, - "name": "Exeedme", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xef7f7820a001aabac5e0979b175c9ff8af3dd4ec.png", - "aggregators": [ - "CoinMarketCap", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0xde6aceaf7f2dceb3d425643c5f85351f2b38fcde": { - "address": "0xde6aceaf7f2dceb3d425643c5f85351f2b38fcde", - "symbol": "HQ", - "decimals": 18, - "name": "HQ", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xde6aceaf7f2dceb3d425643c5f85351f2b38fcde.png", - "aggregators": [ - "CoinMarketCap", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x706987611c5d2052541d64ef8f036916807c916a": { - "address": "0x706987611c5d2052541d64ef8f036916807c916a", - "symbol": "BOYS", - "decimals": 18, - "name": "Boys Club", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x706987611c5d2052541d64ef8f036916807c916a.png", - "aggregators": [ - "CoinMarketCap", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x8730762cad4a27816a467fac54e3dd1e2e9617a1": { - "address": "0x8730762cad4a27816a467fac54e3dd1e2e9617a1", - "symbol": "GX", - "decimals": 18, - "name": "Grindery X", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x8730762cad4a27816a467fac54e3dd1e2e9617a1.png", - "aggregators": [ - "CoinGecko", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x195f5c217b96cd3dd75d39327161b8911a42e509": { - "address": "0x195f5c217b96cd3dd75d39327161b8911a42e509", - "symbol": "NUTS", - "decimals": 18, - "name": "Squirrel Wallet", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x195f5c217b96cd3dd75d39327161b8911a42e509.png", - "aggregators": ["CoinMarketCap", "Rubic", "Squid", "Sonarwatch"], - "occurrences": 4 - }, - "0x559b7bfc48a5274754b08819f75c5f27af53d53b": { - "address": "0x559b7bfc48a5274754b08819f75c5f27af53d53b", - "symbol": "QI", - "decimals": 18, - "name": "Qi Dao", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x559b7bfc48a5274754b08819f75c5f27af53d53b.png", - "aggregators": [ - "CoinGecko", - "LiFi", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x2ec37d45fcae65d9787ecf71dc85a444968f6646": { - "address": "0x2ec37d45fcae65d9787ecf71dc85a444968f6646", - "symbol": "BRBTC", - "decimals": 8, - "name": "Bedrock BTC", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x2ec37d45fcae65d9787ecf71dc85a444968f6646.png", - "aggregators": [ - "CoinGecko", - "LiFi", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0xba3f535bbcccca2a154b573ca6c5a49baae0a3ea": { - "address": "0xba3f535bbcccca2a154b573ca6c5a49baae0a3ea", - "symbol": "DEURO", - "decimals": 18, - "name": "Decentralized Euro", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xba3f535bbcccca2a154b573ca6c5a49baae0a3ea.png", - "aggregators": [ - "CoinMarketCap", - "LiFi", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x95eef579155cd2c5510f312c8fa39208c3be01a8": { - "address": "0x95eef579155cd2c5510f312c8fa39208c3be01a8", - "symbol": "RE7USDT", - "decimals": 18, - "name": "Re7 USDT Morpho Vault", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x95eef579155cd2c5510f312c8fa39208c3be01a8.png", - "aggregators": [ - "CoinGecko", - "LiFi", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x4604151d4c98d1eea200b0d6bffb79a2613182aa": { - "address": "0x4604151d4c98d1eea200b0d6bffb79a2613182aa", - "symbol": "UNO", - "decimals": 9, - "name": "Uno", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x4604151d4c98d1eea200b0d6bffb79a2613182aa.png", - "aggregators": [ - "CoinGecko", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x98e1f56b334438e3f0bde22d92f5bfd746e0631f": { - "address": "0x98e1f56b334438e3f0bde22d92f5bfd746e0631f", - "symbol": "ILUM", - "decimals": 18, - "name": "Illuminati", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x98e1f56b334438e3f0bde22d92f5bfd746e0631f.png", - "aggregators": [ - "CoinGecko", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0xa02f5e93f783baf150aa1f8b341ae90fe0a772f7": { - "address": "0xa02f5e93f783baf150aa1f8b341ae90fe0a772f7", - "symbol": "RE7CBBTC", - "decimals": 18, - "name": "Re7 cbBTC", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xa02f5e93f783baf150aa1f8b341ae90fe0a772f7.png", - "aggregators": ["CoinGecko", "LiFi", "Rubic", "Sonarwatch"], - "occurrences": 4 - }, - "0x4cd1b2874e020c5bf08c4be18ab69ca86ec25fef": { - "address": "0x4cd1b2874e020c5bf08c4be18ab69ca86ec25fef", - "symbol": "CRYORAT", - "decimals": 18, - "name": "CRYORAT", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x4cd1b2874e020c5bf08c4be18ab69ca86ec25fef.png", - "aggregators": [ - "CoinGecko", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x89a8c847f41c0dfa6c8b88638bacca8a0b777da7": { - "address": "0x89a8c847f41c0dfa6c8b88638bacca8a0b777da7", - "symbol": "ELX", - "decimals": 18, - "name": "Elixir", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x89a8c847f41c0dfa6c8b88638bacca8a0b777da7.png", - "aggregators": [ - "Metamask", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x81de7654a08b0a37d136eb6e31a54543cdabeb15": { - "address": "0x81de7654a08b0a37d136eb6e31a54543cdabeb15", - "symbol": "ODDS", - "decimals": 9, - "name": "OddsNotify", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x81de7654a08b0a37d136eb6e31a54543cdabeb15.png", - "aggregators": [ - "CoinGecko", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x83e817e1574e2201a005ec0f7e700ed5606f555e": { - "address": "0x83e817e1574e2201a005ec0f7e700ed5606f555e", - "symbol": "MPENDLE", - "decimals": 18, - "name": "mPendle", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x83e817e1574e2201a005ec0f7e700ed5606f555e.png", - "aggregators": [ - "CoinGecko", - "LiFi", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0xd55c9fb62e176a8eb6968f32958fefdd0962727e": { - "address": "0xd55c9fb62e176a8eb6968f32958fefdd0962727e", - "symbol": "FHE", - "decimals": 18, - "name": "Mind Network", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xd55c9fb62e176a8eb6968f32958fefdd0962727e.png", - "aggregators": [ - "CoinMarketCap", - "LiFi", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x1fc122fe8b6fa6b8598799baf687539b5d3b2783": { - "address": "0x1fc122fe8b6fa6b8598799baf687539b5d3b2783", - "symbol": "QUEST", - "decimals": 6, - "name": "RavenQuest", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x1fc122fe8b6fa6b8598799baf687539b5d3b2783.png", - "aggregators": [ - "CoinGecko", - "Rubic", - "Squid", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0xa93d86af16fe83f064e3c0e2f3d129f7b7b002b0": { - "address": "0xa93d86af16fe83f064e3c0e2f3d129f7b7b002b0", - "symbol": "COCORO", - "decimals": 9, - "name": "Cocoro", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xa93d86af16fe83f064e3c0e2f3d129f7b7b002b0.png", - "aggregators": [ - "CoinMarketCap", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x129e5915326ed86f831b0e035acda34b209633d5": { - "address": "0x129e5915326ed86f831b0e035acda34b209633d5", - "symbol": "PAPPLE", - "decimals": 9, - "name": "Pineapple", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x129e5915326ed86f831b0e035acda34b209633d5.png", - "aggregators": [ - "CoinMarketCap", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x044d078f1c86508e13328842cc75ac021b272958": { - "address": "0x044d078f1c86508e13328842cc75ac021b272958", - "symbol": "PPC", - "decimals": 6, - "name": "Peercoin", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x044d078f1c86508e13328842cc75ac021b272958.png", - "aggregators": [ - "CoinMarketCap", - "LiFi", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x44e3ae622c1570dc6e492adb8de92d01ca923d26": { - "address": "0x44e3ae622c1570dc6e492adb8de92d01ca923d26", - "symbol": "RYZE", - "decimals": 18, - "name": "Ryze", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x44e3ae622c1570dc6e492adb8de92d01ca923d26.png", - "aggregators": [ - "CoinGecko", - "LiFi", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x000000000000012def132e61759048be5b5c6033": { - "address": "0x000000000000012def132e61759048be5b5c6033", - "symbol": "CX", - "decimals": 18, - "name": "Cortex", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x000000000000012def132e61759048be5b5c6033.png", - "aggregators": [ - "CoinMarketCap", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0xdd0f28e19c1780eb6396170735d45153d261490d": { - "address": "0xdd0f28e19c1780eb6396170735d45153d261490d", - "symbol": "GTUSDC", - "decimals": 18, - "name": "Gauntlet USDC Prime Morpho Vault", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xdd0f28e19c1780eb6396170735d45153d261490d.png", - "aggregators": [ - "CoinGecko", - "LiFi", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0xfa7ed49eb24a6117d8a3168eee69d26b45c40c63": { - "address": "0xfa7ed49eb24a6117d8a3168eee69d26b45c40c63", - "symbol": "AZCHF", - "decimals": 18, - "name": "Alpha ZCHF Vault", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xfa7ed49eb24a6117d8a3168eee69d26b45c40c63.png", - "aggregators": ["CoinGecko", "LiFi", "Rubic", "Sonarwatch"], - "occurrences": 4 - }, - "0x0b010000b7624eb9b3dfbc279673c76e9d29d5f7": { - "address": "0x0b010000b7624eb9b3dfbc279673c76e9d29d5f7", - "symbol": "OBOL", - "decimals": 18, - "name": "Obol", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x0b010000b7624eb9b3dfbc279673c76e9d29d5f7.png", - "aggregators": [ - "CoinMarketCap", - "LiFi", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x5c8d0c48810fd37a0a824d074ee290e64f7a8fa2": { - "address": "0x5c8d0c48810fd37a0a824d074ee290e64f7a8fa2", - "symbol": "AVL", - "decimals": 18, - "name": "Avalon", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x5c8d0c48810fd37a0a824d074ee290e64f7a8fa2.png", - "aggregators": [ - "CoinGecko", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x1e2c4fb7ede391d116e6b41cd0608260e8801d59": { - "address": "0x1e2c4fb7ede391d116e6b41cd0608260e8801d59", - "symbol": "BCSPX", - "decimals": 18, - "name": "Backed CSPX Core S P 500", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x1e2c4fb7ede391d116e6b41cd0608260e8801d59.png", - "aggregators": [ - "CoinGecko", - "LiFi", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x562e362876c8aee4744fc2c6aac8394c312d215d": { - "address": "0x562e362876c8aee4744fc2c6aac8394c312d215d", - "symbol": "OPTI", - "decimals": 9, - "name": "Optimus AI", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x562e362876c8aee4744fc2c6aac8394c312d215d.png", - "aggregators": [ - "CoinMarketCap", - "LiFi", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x67f3086f7823eaf35f5aaadfb2e9b9c5b09578cf": { - "address": "0x67f3086f7823eaf35f5aaadfb2e9b9c5b09578cf", - "symbol": "INX", - "decimals": 18, - "name": "InsightX", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x67f3086f7823eaf35f5aaadfb2e9b9c5b09578cf.png", - "aggregators": [ - "CoinGecko", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x9abfc0f085c82ec1be31d30843965fcc63053ffe": { - "address": "0x9abfc0f085c82ec1be31d30843965fcc63053ffe", - "symbol": "Q", - "decimals": 9, - "name": "QSTAR", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x9abfc0f085c82ec1be31d30843965fcc63053ffe.png", - "aggregators": [ - "CoinGecko", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0xddc0f880ff6e4e22e4b74632fbb43ce4df6ccc5a": { - "address": "0xddc0f880ff6e4e22e4b74632fbb43ce4df6ccc5a", - "symbol": "REUSDE", - "decimals": 18, - "name": "Re Protocol reUSDe", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xddc0f880ff6e4e22e4b74632fbb43ce4df6ccc5a.png", - "aggregators": [ - "CoinGecko", - "LiFi", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0xbeef050ecd6a16c4e7bffbb52ebba7846c4b8cd4": { - "address": "0xbeef050ecd6a16c4e7bffbb52ebba7846c4b8cd4", - "symbol": "STEAKETH", - "decimals": 18, - "name": "Steakhouse ETH Morpho Vault", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xbeef050ecd6a16c4e7bffbb52ebba7846c4b8cd4.png", - "aggregators": [ - "CoinGecko", - "LiFi", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x38eeb52f0771140d10c4e9a9a72349a329fe8a6a": { - "address": "0x38eeb52f0771140d10c4e9a9a72349a329fe8a6a", - "symbol": "APYUSD", - "decimals": 18, - "name": "apyUSD", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x38eeb52f0771140d10c4e9a9a72349a329fe8a6a.png", - "aggregators": ["CoinGecko", "LiFi", "Rubic", "Squid"], - "occurrences": 4 - }, - "0x76c4ec0068923da13ee11527d6cf9b7521000049": { - "address": "0x76c4ec0068923da13ee11527d6cf9b7521000049", - "symbol": "HAT", - "decimals": 18, - "name": "Hat", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x76c4ec0068923da13ee11527d6cf9b7521000049.png", - "aggregators": [ - "CoinGecko", - "LiFi", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0xbeef01735c132ada46aa9aa4c54623caa92a64cb": { - "address": "0xbeef01735c132ada46aa9aa4c54623caa92a64cb", - "symbol": "STEAKUSDC", - "decimals": 18, - "name": "Steakhouse USDC Morpho Vault", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xbeef01735c132ada46aa9aa4c54623caa92a64cb.png", - "aggregators": [ - "CoinGecko", - "LiFi", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x43415eb6ff9db7e26a15b704e7a3edce97d31c4e": { - "address": "0x43415eb6ff9db7e26a15b704e7a3edce97d31c4e", - "symbol": "USTB", - "decimals": 6, - "name": "Superstate Short Duration U S Governme", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x43415eb6ff9db7e26a15b704e7a3edce97d31c4e.png", - "aggregators": [ - "CoinGecko", - "LiFi", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0xbeef094333aedd535c130958c204e84f681fd9fa": { - "address": "0xbeef094333aedd535c130958c204e84f681fd9fa", - "symbol": "STEAKWBTC", - "decimals": 18, - "name": "Steakhouse WBTC Morpho Vault", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xbeef094333aedd535c130958c204e84f681fd9fa.png", - "aggregators": ["CoinGecko", "LiFi", "Rubic", "Sonarwatch"], - "occurrences": 4 - }, - "0xbeef11ecb698f4b5378685c05a210bdf71093521": { - "address": "0xbeef11ecb698f4b5378685c05a210bdf71093521", - "symbol": "STEAKRUSD", - "decimals": 18, - "name": "Steakhouse RUSD Morpho Vault", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xbeef11ecb698f4b5378685c05a210bdf71093521.png", - "aggregators": ["CoinGecko", "LiFi", "Rubic", "Sonarwatch"], - "occurrences": 4 - }, - "0x0aa1e96d2a46ec6beb2923de1e61addf5f5f1dce": { - "address": "0x0aa1e96d2a46ec6beb2923de1e61addf5f5f1dce", - "symbol": "REG", - "decimals": 18, - "name": "RealToken Ecosystem Governance", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x0aa1e96d2a46ec6beb2923de1e61addf5f5f1dce.png", - "aggregators": [ - "CoinMarketCap", - "LiFi", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x817162975186d4d53dbf5a7377dd45376e2d2fc5": { - "address": "0x817162975186d4d53dbf5a7377dd45376e2d2fc5", - "symbol": "REACT", - "decimals": 18, - "name": "Reactive Network", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x817162975186d4d53dbf5a7377dd45376e2d2fc5.png", - "aggregators": [ - "CoinMarketCap", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x20157dbabb84e3bbfe68c349d0d44e48ae7b5ad2": { - "address": "0x20157dbabb84e3bbfe68c349d0d44e48ae7b5ad2", - "symbol": "IBTC", - "decimals": 8, - "name": "iBTC Network", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x20157dbabb84e3bbfe68c349d0d44e48ae7b5ad2.png", - "aggregators": [ - "CoinMarketCap", - "LiFi", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x1a4f71b0ff3c22540887bcf83b50054a213c673d": { - "address": "0x1a4f71b0ff3c22540887bcf83b50054a213c673d", - "symbol": "WBMSTR", - "decimals": 18, - "name": "Wrapped bMSTR", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x1a4f71b0ff3c22540887bcf83b50054a213c673d.png", - "aggregators": ["CoinGecko", "LiFi", "Rubic", "Sonarwatch"], - "occurrences": 4 - }, - "0x2a897de60073e13c1f34f672033c1c1d08657fbb": { - "address": "0x2a897de60073e13c1f34f672033c1c1d08657fbb", - "symbol": "DAWAE", - "decimals": 9, - "name": "Dawae", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x2a897de60073e13c1f34f672033c1c1d08657fbb.png", - "aggregators": [ - "CoinGecko", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x7e8101a1c322d394b3961498c7d40d2dfa94c392": { - "address": "0x7e8101a1c322d394b3961498c7d40d2dfa94c392", - "symbol": "WBNVDA", - "decimals": 18, - "name": "Wrapped bNVDA", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x7e8101a1c322d394b3961498c7d40d2dfa94c392.png", - "aggregators": ["CoinGecko", "LiFi", "Rubic", "Sonarwatch"], - "occurrences": 4 - }, - "0xf27441230eadeac85b764610325cc9a0d7859689": { - "address": "0xf27441230eadeac85b764610325cc9a0d7859689", - "symbol": "ASTR", - "decimals": 18, - "name": "Astar", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xf27441230eadeac85b764610325cc9a0d7859689.png", - "aggregators": [ - "CoinGecko", - "LiFi", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x1f82284c1658ad71c576f7230e6c2dee7901c1fa": { - "address": "0x1f82284c1658ad71c576f7230e6c2dee7901c1fa", - "symbol": "WBTSLA", - "decimals": 18, - "name": "Wrapped bTSLA", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x1f82284c1658ad71c576f7230e6c2dee7901c1fa.png", - "aggregators": ["CoinGecko", "LiFi", "Rubic", "Sonarwatch"], - "occurrences": 4 - }, - "0x7bbcf1b600565ae023a1806ef637af4739de3255": { - "address": "0x7bbcf1b600565ae023a1806ef637af4739de3255", - "symbol": "PRFI", - "decimals": 18, - "name": "Prime Numbers Labs", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x7bbcf1b600565ae023a1806ef637af4739de3255.png", - "aggregators": [ - "CoinGecko", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0xb2490e357980ce57bf5745e181e537a64eb367b1": { - "address": "0xb2490e357980ce57bf5745e181e537a64eb367b1", - "symbol": "MOON", - "decimals": 18, - "name": "r CryptoCurrency Moons", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xb2490e357980ce57bf5745e181e537a64eb367b1.png", - "aggregators": [ - "CoinGecko", - "LiFi", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0xa34c5e0abe843e10461e2c9586ea03e55dbcc495": { - "address": "0xa34c5e0abe843e10461e2c9586ea03e55dbcc495", - "symbol": "BNVDA", - "decimals": 18, - "name": "Backed NVIDIA", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xa34c5e0abe843e10461e2c9586ea03e55dbcc495.png", - "aggregators": [ - "CoinGecko", - "LiFi", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x911d86c72155c33993d594b0ec7e6206b4c803da": { - "address": "0x911d86c72155c33993d594b0ec7e6206b4c803da", - "symbol": "WSTLINK", - "decimals": 18, - "name": "Wrapped Staked LINK", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x911d86c72155c33993d594b0ec7e6206b4c803da.png", - "aggregators": [ - "CoinGecko", - "LiFi", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x60b9c41d99fe3eb64ecc1344bad31d87f1bced6d": { - "address": "0x60b9c41d99fe3eb64ecc1344bad31d87f1bced6d", - "symbol": "STABLE", - "decimals": 18, - "name": "Stable", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x60b9c41d99fe3eb64ecc1344bad31d87f1bced6d.png", - "aggregators": [ - "CoinGecko", - "Rubic", - "Squid", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x2f913c820ed3beb3a67391a6eff64e70c4b20b19": { - "address": "0x2f913c820ed3beb3a67391a6eff64e70c4b20b19", - "symbol": "M-BTC", - "decimals": 18, - "name": "Merlin s Seal BTC", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x2f913c820ed3beb3a67391a6eff64e70c4b20b19.png", - "aggregators": [ - "CoinGecko", - "Rubic", - "Squid", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0xfb62ae373aca027177d1c18ee0862817f9080d08": { - "address": "0xfb62ae373aca027177d1c18ee0862817f9080d08", - "symbol": "DPET", - "decimals": 18, - "name": "My DeFi Pet", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xfb62ae373aca027177d1c18ee0862817f9080d08.png", - "aggregators": [ - "CoinGecko", - "LiFi", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0xe95076d9fe7155c17b455ac49497e78912c4ab65": { - "address": "0xe95076d9fe7155c17b455ac49497e78912c4ab65", - "symbol": "DOLLAR", - "decimals": 6, - "name": "Dollar", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xe95076d9fe7155c17b455ac49497e78912c4ab65.png", - "aggregators": [ - "CoinMarketCap", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0xb6dd77fd132dcaa10f1858734e838a0fa7431580": { - "address": "0xb6dd77fd132dcaa10f1858734e838a0fa7431580", - "symbol": "FCP", - "decimals": 18, - "name": "Filipcoin", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xb6dd77fd132dcaa10f1858734e838a0fa7431580.png", - "aggregators": [ - "CoinGecko", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0xbc0899e527007f1b8ced694508fcb7a2b9a46f53": { - "address": "0xbc0899e527007f1b8ced694508fcb7a2b9a46f53", - "symbol": "BSKT", - "decimals": 5, - "name": "Basket", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xbc0899e527007f1b8ced694508fcb7a2b9a46f53.png", - "aggregators": [ - "CoinGecko", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0xac28c9178acc8ba4a11a29e013a3a2627086e422": { - "address": "0xac28c9178acc8ba4a11a29e013a3a2627086e422", - "symbol": "BMSTR", - "decimals": 18, - "name": "Backed MicroStrategy", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xac28c9178acc8ba4a11a29e013a3a2627086e422.png", - "aggregators": [ - "CoinGecko", - "LiFi", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x9deb0fc809955b79c85e82918e8586d3b7d2695a": { - "address": "0x9deb0fc809955b79c85e82918e8586d3b7d2695a", - "symbol": "GOLD", - "decimals": 18, - "name": "GoldenBoys", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x9deb0fc809955b79c85e82918e8586d3b7d2695a.png", - "aggregators": [ - "CoinGecko", - "LiFi", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x14a5f2872396802c3cc8942a39ab3e4118ee5038": { - "address": "0x14a5f2872396802c3cc8942a39ab3e4118ee5038", - "symbol": "BTSLA", - "decimals": 18, - "name": "Backed Tesla", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x14a5f2872396802c3cc8942a39ab3e4118ee5038.png", - "aggregators": [ - "CoinGecko", - "LiFi", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0xc53ac24320e3a54c7211e4993c8095078a0cb3cf": { - "address": "0xc53ac24320e3a54c7211e4993c8095078a0cb3cf", - "symbol": "WGC", - "decimals": 6, - "name": "Wild Goat Coin", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xc53ac24320e3a54c7211e4993c8095078a0cb3cf.png", - "aggregators": ["CoinGecko", "Socket", "Rubic", "Sonarwatch"], - "occurrences": 4 - }, - "0x570f09ac53b96929e3868f71864e36ff6b1b67d7": { - "address": "0x570f09ac53b96929e3868f71864e36ff6b1b67d7", - "symbol": "ARCAS", - "decimals": 17, - "name": "Arcas", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x570f09ac53b96929e3868f71864e36ff6b1b67d7.png", - "aggregators": [ - "CoinMarketCap", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0xf3527ef8de265eaa3716fb312c12847bfba66cef": { - "address": "0xf3527ef8de265eaa3716fb312c12847bfba66cef", - "symbol": "USDX", - "decimals": 18, - "name": "Stables Labs USDX", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xf3527ef8de265eaa3716fb312c12847bfba66cef.png", - "aggregators": [ - "CoinGecko", - "LiFi", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x177d39ac676ed1c67a2b268ad7f1e58826e5b0af": { - "address": "0x177d39ac676ed1c67a2b268ad7f1e58826e5b0af", - "symbol": "CDT", - "decimals": 18, - "name": "CoinDash Token", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x177d39ac676ed1c67a2b268ad7f1e58826e5b0af.png", - "aggregators": [ - "CoinMarketCap", - "LiFi", - "Socket", - "Rubic", - "Rango" - ], - "occurrences": 5 - }, - "0x9041fe5b3fdea0f5e4afdc17e75180738d877a01": { - "address": "0x9041fe5b3fdea0f5e4afdc17e75180738d877a01", - "symbol": "PRO", - "decimals": 18, - "name": "PRO", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x9041fe5b3fdea0f5e4afdc17e75180738d877a01.png", - "aggregators": [ - "CoinMarketCap", - "LiFi", - "Socket", - "Rubic", - "Rango" - ], - "occurrences": 5 - }, - "0xcb46c550539ac3db72dc7af7c89b11c306c727c2": { - "address": "0xcb46c550539ac3db72dc7af7c89b11c306c727c2", - "symbol": "PONT", - "decimals": 9, - "name": "Poly Ontology Token", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xcb46c550539ac3db72dc7af7c89b11c306c727c2.png", - "aggregators": [ - "CoinMarketCap", - "LiFi", - "Rubic", - "Rango", - "SushiSwap" - ], - "occurrences": 5 - }, - "0x159a1dfae19057de57dfffcbb3da1ae784678965": { - "address": "0x159a1dfae19057de57dfffcbb3da1ae784678965", - "symbol": "RFX", - "decimals": 8, - "name": "Reflex", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x159a1dfae19057de57dfffcbb3da1ae784678965.png", - "aggregators": [ - "CoinMarketCap", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0xe61fdaf474fac07063f2234fb9e60c1163cfa850": { - "address": "0xe61fdaf474fac07063f2234fb9e60c1163cfa850", - "symbol": "COIN", - "decimals": 18, - "name": "COIN", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xe61fdaf474fac07063f2234fb9e60c1163cfa850.png", - "aggregators": [ - "CoinMarketCap", - "LiFi", - "TrustWallet", - "Socket", - "Rubic" - ], - "occurrences": 5 - }, - "0x8f081eb884fd47b79536d28e2dd9d4886773f783": { - "address": "0x8f081eb884fd47b79536d28e2dd9d4886773f783", - "symbol": "BECOIN", - "decimals": 6, - "name": "bePAY Finance", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x8f081eb884fd47b79536d28e2dd9d4886773f783.png", - "aggregators": [ - "CoinMarketCap", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0xb399511642fe1666c6a07f83483e6e4feaed9a00": { - "address": "0xb399511642fe1666c6a07f83483e6e4feaed9a00", - "symbol": "EUROS", - "decimals": 18, - "name": "The Standard EURO", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xb399511642fe1666c6a07f83483e6e4feaed9a00.png", - "aggregators": [ - "CoinMarketCap", - "LiFi", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0xc0200b1c6598a996a339196259ffdc30c1f44339": { - "address": "0xc0200b1c6598a996a339196259ffdc30c1f44339", - "symbol": "KEK", - "decimals": 9, - "name": "El Risitas", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xc0200b1c6598a996a339196259ffdc30c1f44339.png", - "aggregators": [ - "CoinMarketCap", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x416cdaf616a82d7dd46e0dbf36e7d6fe412bc40e": { - "address": "0x416cdaf616a82d7dd46e0dbf36e7d6fe412bc40e", - "symbol": "LUNA", - "decimals": 18, - "name": "Luna28", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x416cdaf616a82d7dd46e0dbf36e7d6fe412bc40e.png", - "aggregators": [ - "CoinMarketCap", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x64d93cf499054170f4c211f91f867f902afaece6": { - "address": "0x64d93cf499054170f4c211f91f867f902afaece6", - "symbol": "QAI", - "decimals": 18, - "name": "Quant AI", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x64d93cf499054170f4c211f91f867f902afaece6.png", - "aggregators": [ - "CoinMarketCap", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0xd152e68e055021fac32818c68601e437eb4105a6": { - "address": "0xd152e68e055021fac32818c68601e437eb4105a6", - "symbol": "BEAN", - "decimals": 18, - "name": "BloomBeans BEAN", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xd152e68e055021fac32818c68601e437eb4105a6.png", - "aggregators": [ - "CoinMarketCap", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0xb01dd87b29d187f3e3a4bf6cdaebfb97f3d9ab98": { - "address": "0xb01dd87b29d187f3e3a4bf6cdaebfb97f3d9ab98", - "symbol": "BOLD", - "decimals": 18, - "name": "Legacy BOLD", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xb01dd87b29d187f3e3a4bf6cdaebfb97f3d9ab98.png", - "aggregators": ["LiFi", "Socket", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 5 - }, - "0x2aeabde1ab736c59e9a19bed67681869eef39526": { - "address": "0x2aeabde1ab736c59e9a19bed67681869eef39526", - "symbol": "DOVU", - "decimals": 8, - "name": "DOVU", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x2aeabde1ab736c59e9a19bed67681869eef39526.png", - "aggregators": ["CoinMarketCap", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0xdef1b2d939edc0e4d35806c59b3166f790175afe": { - "address": "0xdef1b2d939edc0e4d35806c59b3166f790175afe", - "symbol": "INX", - "decimals": 18, - "name": "Infinex", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xdef1b2d939edc0e4d35806c59b3166f790175afe.png", - "aggregators": ["CoinMarketCap", "LiFi", "Rubic", "Rango"], - "occurrences": 4 - }, - "0xc1d204d77861def49b6e769347a883b15ec397ff": { - "address": "0xc1d204d77861def49b6e769347a883b15ec397ff", - "symbol": "PAX", - "decimals": 18, - "name": "PayperEx", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xc1d204d77861def49b6e769347a883b15ec397ff.png", - "aggregators": ["OpenSwap", "LiFi", "Rubic", "Rango"], - "occurrences": 4 - }, - "0xc3d21f79c3120a4ffda7a535f8005a7c297799bf": { - "address": "0xc3d21f79c3120a4ffda7a535f8005a7c297799bf", - "symbol": "TERM", - "decimals": 18, - "name": "Term Finance", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xc3d21f79c3120a4ffda7a535f8005a7c297799bf.png", - "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0x228bec415ade4b61d7caf0adf8c91eac587ba369": { - "address": "0x228bec415ade4b61d7caf0adf8c91eac587ba369", - "symbol": "TRIA", - "decimals": 18, - "name": "Tria", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x228bec415ade4b61d7caf0adf8c91eac587ba369.png", - "aggregators": ["CoinMarketCap", "LiFi", "Rubic", "Rango"], - "occurrences": 4 - }, - "0x7b43e3875440b44613dc3bc08e7763e6da63c8f8": { - "address": "0x7b43e3875440b44613dc3bc08e7763e6da63c8f8", - "symbol": "USDR", - "decimals": 6, - "name": "StablR USD", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x7b43e3875440b44613dc3bc08e7763e6da63c8f8.png", - "aggregators": ["CoinMarketCap", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0xf983da3ca66964c02628189ea8ca99fa9e24f66c": { - "address": "0xf983da3ca66964c02628189ea8ca99fa9e24f66c", - "symbol": "WANLOG", - "decimals": 12, - "name": "Wrapped Analog One Token", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xf983da3ca66964c02628189ea8ca99fa9e24f66c.png", - "aggregators": ["CoinMarketCap", "LiFi", "Rubic", "Rango"], - "occurrences": 4 - }, - "0x77607588222e01bf892a29abab45796a2047fc7b": { - "address": "0x77607588222e01bf892a29abab45796a2047fc7b", - "symbol": "UETH", - "decimals": 18, - "name": "Unagii ETH", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x77607588222e01bf892a29abab45796a2047fc7b.png", - "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0x20c64dee8fda5269a78f2d5bdba861ca1d83df7a": { - "address": "0x20c64dee8fda5269a78f2d5bdba861ca1d83df7a", - "symbol": "BHIGH", - "decimals": 18, - "name": "Backed HIGH High Yield Corp Bond", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x20c64dee8fda5269a78f2d5bdba861ca1d83df7a.png", - "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0xa5ca62d95d24a4a350983d5b8ac4eb8638887396": { - "address": "0xa5ca62d95d24a4a350983d5b8ac4eb8638887396", - "symbol": "YVSUSD", - "decimals": 18, - "name": "sUSD yVault", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xa5ca62d95d24a4a350983d5b8ac4eb8638887396.png", - "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0x378cb52b00f9d0921cb46dfc099cff73b42419dc": { - "address": "0x378cb52b00f9d0921cb46dfc099cff73b42419dc", - "symbol": "YVLUSD", - "decimals": 18, - "name": "LUSD yVault", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x378cb52b00f9d0921cb46dfc099cff73b42419dc.png", - "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0x6d765cbe5bc922694afe112c140b8878b9fb0390": { - "address": "0x6d765cbe5bc922694afe112c140b8878b9fb0390", - "symbol": "YVSUSHI", - "decimals": 18, - "name": "SUSHI yVault", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x6d765cbe5bc922694afe112c140b8878b9fb0390.png", - "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0xfd0877d9095789caf24c98f7cce092fa8e120775": { - "address": "0xfd0877d9095789caf24c98f7cce092fa8e120775", - "symbol": "YVTUSD", - "decimals": 18, - "name": "TUSD yVault", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xfd0877d9095789caf24c98f7cce092fa8e120775.png", - "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0x671a912c10bba0cfa74cfc2d6fba9ba1ed9530b2": { - "address": "0x671a912c10bba0cfa74cfc2d6fba9ba1ed9530b2", - "symbol": "YVLINK", - "decimals": 18, - "name": "LINK yVault", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x671a912c10bba0cfa74cfc2d6fba9ba1ed9530b2.png", - "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0x873fb544277fd7b977b196a826459a69e27ea4ea": { - "address": "0x873fb544277fd7b977b196a826459a69e27ea4ea", - "symbol": "YVRAI", - "decimals": 18, - "name": "RAI yVault", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x873fb544277fd7b977b196a826459a69e27ea4ea.png", - "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0xdcb5645eda1ed34c5641d81b927d33ebae9cf2a4": { - "address": "0xdcb5645eda1ed34c5641d81b927d33ebae9cf2a4", - "symbol": "PAYB", - "decimals": 18, - "name": "PayB", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xdcb5645eda1ed34c5641d81b927d33ebae9cf2a4.png", - "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0xa258c4606ca8206d8aa700ce2143d7db854d168c": { - "address": "0xa258c4606ca8206d8aa700ce2143d7db854d168c", - "symbol": "YVWETH", - "decimals": 18, - "name": "WETH yVault", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xa258c4606ca8206d8aa700ce2143d7db854d168c.png", - "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0xb8c3b7a2a618c552c23b1e4701109a9e756bab67": { - "address": "0xb8c3b7a2a618c552c23b1e4701109a9e756bab67", - "symbol": "YV1INCH", - "decimals": 18, - "name": "1INCH yVault", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xb8c3b7a2a618c552c23b1e4701109a9e756bab67.png", - "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0xa696a63cc78dffa1a63e9e50587c197387ff6c7e": { - "address": "0xa696a63cc78dffa1a63e9e50587c197387ff6c7e", - "symbol": "YVWBTC", - "decimals": 8, - "name": "WBTC yVault", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xa696a63cc78dffa1a63e9e50587c197387ff6c7e.png", - "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0xf29ae508698bdef169b89834f76704c3b205aedf": { - "address": "0xf29ae508698bdef169b89834f76704c3b205aedf", - "symbol": "YVSNX", - "decimals": 18, - "name": "SNX yVault", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xf29ae508698bdef169b89834f76704c3b205aedf.png", - "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0x5c6ee304399dbdb9c8ef030ab642b10820db8f56": { - "address": "0x5c6ee304399dbdb9c8ef030ab642b10820db8f56", - "symbol": "B-80BAL-20WETH", - "decimals": 18, - "name": "Balancer 80 BAL 20 WETH", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x5c6ee304399dbdb9c8ef030ab642b10820db8f56.png", - "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0xe11ba472f74869176652c35d30db89854b5ae84d": { - "address": "0xe11ba472f74869176652c35d30db89854b5ae84d", - "symbol": "YVHEGIC", - "decimals": 18, - "name": "HEGIC yVault", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xe11ba472f74869176652c35d30db89854b5ae84d.png", - "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0x05a275ed9edf4378ac54928379ee6bc6e8900e4c": { - "address": "0x05a275ed9edf4378ac54928379ee6bc6e8900e4c", - "symbol": "USDV", - "decimals": 18, - "name": "USDV", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x05a275ed9edf4378ac54928379ee6bc6e8900e4c.png", - "aggregators": ["CoinGecko", "Rubic", "Sonarwatch"], - "occurrences": 3 - }, - "0xef89c37fe9e5c906b404cd7edae4a2992b5d25fa": { - "address": "0xef89c37fe9e5c906b404cd7edae4a2992b5d25fa", - "symbol": "TIME", - "decimals": 18, - "name": "Time Alliance Guild Time", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xef89c37fe9e5c906b404cd7edae4a2992b5d25fa.png", - "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0xc8871267e07408b89aa5aecc58adca5e574557f8": { - "address": "0xc8871267e07408b89aa5aecc58adca5e574557f8", - "symbol": "IUSDC", - "decimals": 6, - "name": "Instadapp USDC", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xc8871267e07408b89aa5aecc58adca5e574557f8.png", - "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0xf98ec282300892b3518b5cb996012b18d9b7d435": { - "address": "0xf98ec282300892b3518b5cb996012b18d9b7d435", - "symbol": "URAON", - "decimals": 18, - "name": "Global X Uranium ETF (Ondo Tokenized)", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xf98ec282300892b3518b5cb996012b18d9b7d435.png", - "aggregators": ["CoinGecko", "Rubic", "Rango", "Ondo"], - "occurrences": 4, - "rwaData": { - "market": { - "nextOpen": "2026-05-18T20:01:00.000Z", - "nextClose": "2026-05-18T19:59:00.000Z" - }, - "nextPause": { - "start": null, - "end": null - }, - "ticker": "URA", - "instrumentType": "stock" - } - }, - "0x7c488cfc874ca9f34e7bdbd0410c27ce6d6af5f9": { - "address": "0x7c488cfc874ca9f34e7bdbd0410c27ce6d6af5f9", - "symbol": "UNGON", - "decimals": 18, - "name": "US Natural Gas Fund (Ondo Tokenized)", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x7c488cfc874ca9f34e7bdbd0410c27ce6d6af5f9.png", - "aggregators": ["CoinGecko", "Rubic", "Rango", "Ondo"], - "occurrences": 4, - "rwaData": { - "market": { - "nextOpen": "2026-05-18T20:01:00.000Z", - "nextClose": "2026-05-18T19:59:00.000Z" - }, - "nextPause": { - "start": null, - "end": null - }, - "ticker": "UNG", - "instrumentType": "stock" - } - }, - "0xd4c6cce0cadf2fe4c0af9ee6777989efd8fb7670": { - "address": "0xd4c6cce0cadf2fe4c0af9ee6777989efd8fb7670", - "symbol": "PAVEON", - "decimals": 18, - "name": "Global X US Infrastructure Development ETF (Ondo Tokenized)", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xd4c6cce0cadf2fe4c0af9ee6777989efd8fb7670.png", - "aggregators": ["CoinGecko", "Rubic", "Rango", "Ondo"], - "occurrences": 4, - "rwaData": { - "market": { - "nextOpen": "2026-05-18T20:01:00.000Z", - "nextClose": "2026-05-18T19:59:00.000Z" - }, - "nextPause": { - "start": null, - "end": null - }, - "ticker": "PAVE", - "instrumentType": "stock" - } - }, - "0xf434908dcf8206691bb99cae9232d4833ec257d4": { - "address": "0xf434908dcf8206691bb99cae9232d4833ec257d4", - "symbol": "JACK", - "decimals": 18, - "name": "Blackjack fun", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xf434908dcf8206691bb99cae9232d4833ec257d4.png", - "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0x41a08648c3766f9f9d85598ff102a08f4ef84f84": { - "address": "0x41a08648c3766f9f9d85598ff102a08f4ef84f84", - "symbol": "ABPT", - "decimals": 18, - "name": "Aave Balancer Pool Token", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x41a08648c3766f9f9d85598ff102a08f4ef84f84.png", - "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0xa1116930326d21fb917d5a27f1e9943a9595fb47": { - "address": "0xa1116930326d21fb917d5a27f1e9943a9595fb47", - "symbol": "STKABPT", - "decimals": 18, - "name": "Staked Aave Balance Pool Token", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xa1116930326d21fb917d5a27f1e9943a9595fb47.png", - "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0x6d4ca1177087924edfe0908ef655169ea766fdc3": { - "address": "0x6d4ca1177087924edfe0908ef655169ea766fdc3", - "symbol": "HEDGEHOG", - "decimals": 18, - "name": "Hedgehog", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x6d4ca1177087924edfe0908ef655169ea766fdc3.png", - "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0xda6a3876ad460194cd7ba28062d838c98ee2fd1d": { - "address": "0xda6a3876ad460194cd7ba28062d838c98ee2fd1d", - "symbol": "KEL", - "decimals": 18, - "name": "KelVPN v2", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xda6a3876ad460194cd7ba28062d838c98ee2fd1d.png", - "aggregators": ["CoinMarketCap", "Socket", "Rubic"], - "occurrences": 3 - }, - "0x77163c968c2506077dbe74838dea72314a2d5760": { - "address": "0x77163c968c2506077dbe74838dea72314a2d5760", - "symbol": "SOMA", - "decimals": 18, - "name": "SOMA finance", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x77163c968c2506077dbe74838dea72314a2d5760.png", - "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0x5fbc2ffe91ac74e3e286bd7504b233f0e5291c69": { - "address": "0x5fbc2ffe91ac74e3e286bd7504b233f0e5291c69", - "symbol": "EBET", - "decimals": 8, - "name": "EarnBet", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x5fbc2ffe91ac74e3e286bd7504b233f0e5291c69.png", - "aggregators": ["CoinMarketCap", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0xe38149abc673a117abeb8af7d1ff3d0d1aa5af15": { - "address": "0xe38149abc673a117abeb8af7d1ff3d0d1aa5af15", - "symbol": "RCBETH", - "decimals": 18, - "name": "Astrid Restaked cbETH", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xe38149abc673a117abeb8af7d1ff3d0d1aa5af15.png", - "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0x1c95b093d6c236d3ef7c796fe33f9cc6b8606714": { - "address": "0x1c95b093d6c236d3ef7c796fe33f9cc6b8606714", - "symbol": "BOMB", - "decimals": 0, - "name": "BOMB", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x1c95b093d6c236d3ef7c796fe33f9cc6b8606714.png", - "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0x58a2edf0169ede82904e47a0e2a3a4008edebb60": { - "address": "0x58a2edf0169ede82904e47a0e2a3a4008edebb60", - "symbol": "LUNRON", - "decimals": 18, - "name": "Intuitive Machines (Ondo Tokenized)", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x58a2edf0169ede82904e47a0e2a3a4008edebb60.png", - "aggregators": ["CoinGecko", "Rubic", "Rango", "Ondo"], - "occurrences": 4, - "rwaData": { - "market": { - "nextOpen": "2026-05-18T20:01:00.000Z", - "nextClose": "2026-05-18T19:59:00.000Z" - }, - "nextPause": { - "start": null, - "end": null - }, - "ticker": "LUNR", - "instrumentType": "stock" - } - }, - "0xb2f79d891f11bc8e9805db135defc04ead8d780e": { - "address": "0xb2f79d891f11bc8e9805db135defc04ead8d780e", - "symbol": "AIO", - "decimals": 18, - "name": "All In One Wallet", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xb2f79d891f11bc8e9805db135defc04ead8d780e.png", - "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0x28ff2e4dd1b58efeb0fc138602a28d5ae81e44e2": { - "address": "0x28ff2e4dd1b58efeb0fc138602a28d5ae81e44e2", - "symbol": "ZKCRO", - "decimals": 18, - "name": "Cronos zkEVM CRO", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x28ff2e4dd1b58efeb0fc138602a28d5ae81e44e2.png", - "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0x37cfc2e83665d49364670dfea6d2dd4cb1215f22": { - "address": "0x37cfc2e83665d49364670dfea6d2dd4cb1215f22", - "symbol": "RRETH", - "decimals": 18, - "name": "Astrid Restaked rETH", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x37cfc2e83665d49364670dfea6d2dd4cb1215f22.png", - "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0x4b0181102a0112a2ef11abee5563bb4a3176c9d7": { - "address": "0x4b0181102a0112a2ef11abee5563bb4a3176c9d7", - "symbol": "CSUSHI", - "decimals": 8, - "name": "cSUSHI", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x4b0181102a0112a2ef11abee5563bb4a3176c9d7.png", - "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0x178bf8fd04b47d2de3ef3f6b3d112106375ad584": { - "address": "0x178bf8fd04b47d2de3ef3f6b3d112106375ad584", - "symbol": "UUSDT", - "decimals": 6, - "name": "Unagii Tether USD", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x178bf8fd04b47d2de3ef3f6b3d112106375ad584.png", - "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0x4ad0b81f92b16624bbcf46fc0030cfbbf8d02376": { - "address": "0x4ad0b81f92b16624bbcf46fc0030cfbbf8d02376", - "symbol": "UDAI", - "decimals": 18, - "name": "Unagii Dai", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x4ad0b81f92b16624bbcf46fc0030cfbbf8d02376.png", - "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0xdddd73f5df1f0dc31373357beac77545dc5a6f3f": { - "address": "0xdddd73f5df1f0dc31373357beac77545dc5a6f3f", - "symbol": "PUSD", - "decimals": 6, - "name": "Plume USD", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xdddd73f5df1f0dc31373357beac77545dc5a6f3f.png", - "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0x0352557b007a4aae1511c114409b932f06f9e2f4": { - "address": "0x0352557b007a4aae1511c114409b932f06f9e2f4", - "symbol": "SRUNE", - "decimals": 18, - "name": "sRUNE", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x0352557b007a4aae1511c114409b932f06f9e2f4.png", - "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0x997507cc49fbf0cd6ce5e1ee543218556fafdebc": { - "address": "0x997507cc49fbf0cd6ce5e1ee543218556fafdebc", - "symbol": "BT", - "decimals": 18, - "name": "Bitenium", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x997507cc49fbf0cd6ce5e1ee543218556fafdebc.png", - "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0xc8bf8bc34874e07f6a0d4abc8be22ba9e372631b": { - "address": "0xc8bf8bc34874e07f6a0d4abc8be22ba9e372631b", - "symbol": "SWGT", - "decimals": 8, - "name": "SmartWorld Global Token", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xc8bf8bc34874e07f6a0d4abc8be22ba9e372631b.png", - "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0x2f2e4b09b99fbf018f600e031aafd9da6347cc75": { - "address": "0x2f2e4b09b99fbf018f600e031aafd9da6347cc75", - "symbol": "IONQON", - "decimals": 18, - "name": "IonQ (Ondo Tokenized)", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x2f2e4b09b99fbf018f600e031aafd9da6347cc75.png", - "aggregators": ["CoinGecko", "Rubic", "Rango", "Ondo"], - "occurrences": 4, - "rwaData": { - "market": { - "nextOpen": "2026-05-18T20:01:00.000Z", - "nextClose": "2026-05-18T19:59:00.000Z" - }, - "nextPause": { - "start": null, - "end": null - }, - "ticker": "IONQ", - "instrumentType": "stock" - } - }, - "0x5c424b9b60383fce7fe7069d2a2b1047bcd04a73": { - "address": "0x5c424b9b60383fce7fe7069d2a2b1047bcd04a73", - "symbol": "SHYON", - "decimals": 18, - "name": "iShares 1-3 Year Treasury Bond ETF (Ondo Tokenized)", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x5c424b9b60383fce7fe7069d2a2b1047bcd04a73.png", - "aggregators": ["CoinGecko", "Rubic", "Rango", "Ondo"], - "occurrences": 4, - "rwaData": { - "market": { - "nextOpen": "2026-05-18T20:01:00.000Z", - "nextClose": "2026-05-18T19:59:00.000Z" - }, - "nextPause": { - "start": null, - "end": null - }, - "ticker": "SHY", - "instrumentType": "stock" - } - }, - "0xe19d1c837b8a1c83a56cd9165b2c0256d39653ad": { - "address": "0xe19d1c837b8a1c83a56cd9165b2c0256d39653ad", - "symbol": "SDFXN", - "decimals": 18, - "name": "Stake DAO FXN", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xe19d1c837b8a1c83a56cd9165b2c0256d39653ad.png", - "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0x2c9aceb63181cd08a093d052ec041e191f229692": { - "address": "0x2c9aceb63181cd08a093d052ec041e191f229692", - "symbol": "ANB", - "decimals": 18, - "name": "Angryb", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x2c9aceb63181cd08a093d052ec041e191f229692.png", - "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0xa2ec76139028f279a1c790d323c57cc4158098d6": { - "address": "0xa2ec76139028f279a1c790d323c57cc4158098d6", - "symbol": "IEFON", - "decimals": 18, - "name": "iShares 7-10 Year Treasury Bond ETF (Ondo Tokenized)", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xa2ec76139028f279a1c790d323c57cc4158098d6.png", - "aggregators": ["CoinGecko", "Rubic", "Rango", "Ondo"], - "occurrences": 4, - "rwaData": { - "market": { - "nextOpen": "2026-05-18T20:01:00.000Z", - "nextClose": "2026-05-18T19:59:00.000Z" - }, - "nextPause": { - "start": null, - "end": null - }, - "ticker": "IEF", - "instrumentType": "stock" - } - }, - "0x87a92428bbc876d463c21c8e51b903f127d9a9f4": { - "address": "0x87a92428bbc876d463c21c8e51b903f127d9a9f4", - "symbol": "AUC", - "decimals": 18, - "name": "Advanced United Continent", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x87a92428bbc876d463c21c8e51b903f127d9a9f4.png", - "aggregators": ["CoinMarketCap", "Rubic", "Sonarwatch"], - "occurrences": 3 - }, - "0x26a604dffe3ddab3bee816097f81d3c4a2a4cf97": { - "address": "0x26a604dffe3ddab3bee816097f81d3c4a2a4cf97", - "symbol": "CORX", - "decimals": 8, - "name": "CorionX", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x26a604dffe3ddab3bee816097f81d3c4a2a4cf97.png", - "aggregators": ["CoinMarketCap", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0x122940c4c5f9ccfae7fa86455a42d3ec140855ce": { - "address": "0x122940c4c5f9ccfae7fa86455a42d3ec140855ce", - "symbol": "IBITON", - "decimals": 18, - "name": "iShares Bitcoin Trust (Ondo Tokenized)", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x122940c4c5f9ccfae7fa86455a42d3ec140855ce.png", - "aggregators": ["CoinGecko", "Rubic", "Rango", "Ondo"], - "occurrences": 4, - "rwaData": { - "market": { - "nextOpen": "2026-05-18T20:01:00.000Z", - "nextClose": "2026-05-18T19:59:00.000Z" - }, - "nextPause": { - "start": null, - "end": null - }, - "ticker": "IBIT", - "instrumentType": "stock" - } - }, - "0x2dd57b497c777d9825a5902114be81df98ede958": { - "address": "0x2dd57b497c777d9825a5902114be81df98ede958", - "symbol": "FXION", - "decimals": 18, - "name": "iShares China Large-Cap ETF (Ondo Tokenized)", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x2dd57b497c777d9825a5902114be81df98ede958.png", - "aggregators": ["CoinGecko", "Rubic", "Rango", "Ondo"], - "occurrences": 4, - "rwaData": { - "market": { - "nextOpen": "2026-05-18T20:01:00.000Z", - "nextClose": "2026-05-18T19:59:00.000Z" - }, - "nextPause": { - "start": null, - "end": null - }, - "ticker": "FXI", - "instrumentType": "stock" - } - }, - "0x1b8568fbb47708e9e9d31ff303254f748805bf21": { - "address": "0x1b8568fbb47708e9e9d31ff303254f748805bf21", - "symbol": "SCX", - "decimals": 18, - "name": "Scarcity", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x1b8568fbb47708e9e9d31ff303254f748805bf21.png", - "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0x1da4858ad385cc377165a298cc2ce3fce0c5fd31": { - "address": "0x1da4858ad385cc377165a298cc2ce3fce0c5fd31", - "symbol": "CCS", - "decimals": 0, - "name": "CloutContracts", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x1da4858ad385cc377165a298cc2ce3fce0c5fd31.png", - "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0x98284fbc11edd7540e29b896a49817bbe52ddcbd": { - "address": "0x98284fbc11edd7540e29b896a49817bbe52ddcbd", - "symbol": "ETHAON", - "decimals": 18, - "name": "iShares Ethereum Trust ETF (Ondo Tokenized)", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x98284fbc11edd7540e29b896a49817bbe52ddcbd.png", - "aggregators": ["CoinGecko", "Rubic", "Rango", "Ondo"], - "occurrences": 4, - "rwaData": { - "market": { - "nextOpen": "2026-05-18T20:01:00.000Z", - "nextClose": "2026-05-18T19:59:00.000Z" - }, - "nextPause": { - "start": null, - "end": null - }, - "ticker": "ETHA", - "instrumentType": "stock" - } - }, - "0x259b0f9494b3f02c652fa11417b94cb700f1f7d8": { - "address": "0x259b0f9494b3f02c652fa11417b94cb700f1f7d8", - "symbol": "CVPAD", - "decimals": 18, - "name": "CV Pad", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x259b0f9494b3f02c652fa11417b94cb700f1f7d8.png", - "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0x54021fde36b7c4c4f9c35b02fb9a153ed8f5938a": { - "address": "0x54021fde36b7c4c4f9c35b02fb9a153ed8f5938a", - "symbol": "EWZON", - "decimals": 18, - "name": "iShares MSCI Brazil ETF (Ondo Tokenized)", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x54021fde36b7c4c4f9c35b02fb9a153ed8f5938a.png", - "aggregators": ["CoinGecko", "Rubic", "Rango", "Ondo"], - "occurrences": 4, - "rwaData": { - "market": { - "nextOpen": "2026-05-18T20:01:00.000Z", - "nextClose": "2026-05-18T19:59:00.000Z" - }, - "nextPause": { - "start": null, - "end": null - }, - "ticker": "EWZ", - "instrumentType": "stock" - } - }, - "0x07d1718ff05a8c53c8f05adaed57c0d672945f9a": { - "address": "0x07d1718ff05a8c53c8f05adaed57c0d672945f9a", - "symbol": "ARUSD", - "decimals": 18, - "name": "Aladdin rUSD", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x07d1718ff05a8c53c8f05adaed57c0d672945f9a.png", - "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0xda816459f1ab5631232fe5e97a05bbbb94970c95": { - "address": "0xda816459f1ab5631232fe5e97a05bbbb94970c95", - "symbol": "YVDAI", - "decimals": 18, - "name": "yvDAI", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xda816459f1ab5631232fe5e97a05bbbb94970c95.png", - "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0x74c8f41f57948bfd8aa0d48c882d69d12d1cc579": { - "address": "0x74c8f41f57948bfd8aa0d48c882d69d12d1cc579", - "symbol": "ECHON", - "decimals": 18, - "name": "iShares MSCI Chile ETF (Ondo Tokenized)", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x74c8f41f57948bfd8aa0d48c882d69d12d1cc579.png", - "aggregators": ["CoinGecko", "Rubic", "Rango", "Ondo"], - "occurrences": 4, - "rwaData": { - "market": { - "nextOpen": "2026-05-19T08:01:00.000Z", - "nextClose": "2026-05-18T19:59:00.000Z" - }, - "nextPause": { - "start": null, - "end": null - }, - "ticker": "ECH", - "instrumentType": "stock" - } - }, - "0xa6cdb19b22b03e03ea89e133a8a46adc3017aa6d": { - "address": "0xa6cdb19b22b03e03ea89e133a8a46adc3017aa6d", - "symbol": "INDAON", - "decimals": 18, - "name": "iShares MSCI India ETF (Ondo Tokenized)", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xa6cdb19b22b03e03ea89e133a8a46adc3017aa6d.png", - "aggregators": ["CoinGecko", "Rubic", "Rango", "Ondo"], - "occurrences": 4, - "rwaData": { - "market": { - "nextOpen": "2026-05-18T20:01:00.000Z", - "nextClose": "2026-05-18T19:59:00.000Z" - }, - "nextPause": { - "start": null, - "end": null - }, - "ticker": "INDA", - "instrumentType": "stock" - } - }, - "0x625fb557cad6d4638dae420626f3f08a485b43a8": { - "address": "0x625fb557cad6d4638dae420626f3f08a485b43a8", - "symbol": "EWJON", - "decimals": 18, - "name": "iShares MSCI Japan ETF (Ondo Tokenized)", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x625fb557cad6d4638dae420626f3f08a485b43a8.png", - "aggregators": ["CoinGecko", "Rubic", "Rango", "Ondo"], - "occurrences": 4, - "rwaData": { - "market": { - "nextOpen": "2026-05-18T20:01:00.000Z", - "nextClose": "2026-05-18T19:59:00.000Z" - }, - "nextPause": { - "start": null, - "end": null - }, - "ticker": "EWJ", - "instrumentType": "stock" - } - }, - "0xdadb4ae5b5d3099dd1f586f990b845f2404a1c4c": { - "address": "0xdadb4ae5b5d3099dd1f586f990b845f2404a1c4c", - "symbol": "(͡°͜ʖ͡°)", - "decimals": 18, - "name": "Lenny Face", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xdadb4ae5b5d3099dd1f586f990b845f2404a1c4c.png", - "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0x1fe2126bc05e4bb0468c4a198e930c889e1054a3": { - "address": "0x1fe2126bc05e4bb0468c4a198e930c889e1054a3", - "symbol": "SOXXON", - "decimals": 18, - "name": "iShares Semiconductor ETF (Ondo Tokenized)", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x1fe2126bc05e4bb0468c4a198e930c889e1054a3.png", - "aggregators": ["CoinGecko", "Rubic", "Rango", "Ondo"], - "occurrences": 4, - "rwaData": { - "market": { - "nextOpen": "2026-05-18T20:01:00.000Z", - "nextClose": "2026-05-18T19:59:00.000Z" - }, - "nextPause": { - "start": null, - "end": null - }, - "ticker": "SOXX", - "instrumentType": "stock" - } - }, - "0xb3cb8d5aeff0f4d1f432f353309f47b885e404e3": { - "address": "0xb3cb8d5aeff0f4d1f432f353309f47b885e404e3", - "symbol": "MEV", - "decimals": 18, - "name": "MEVerse", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xb3cb8d5aeff0f4d1f432f353309f47b885e404e3.png", - "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0x68622855dcf14ced1b0cc2a69cc34843708e2e0f": { - "address": "0x68622855dcf14ced1b0cc2a69cc34843708e2e0f", - "symbol": "ITAON", - "decimals": 18, - "name": "iShares US Aerospace and Defense ETF (Ondo Tokenized)", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x68622855dcf14ced1b0cc2a69cc34843708e2e0f.png", - "aggregators": ["CoinGecko", "Rubic", "Rango", "Ondo"], - "occurrences": 4, - "rwaData": { - "market": { - "nextOpen": "2026-05-18T20:01:00.000Z", - "nextClose": "2026-05-18T19:59:00.000Z" - }, - "nextPause": { - "start": null, - "end": null - }, - "ticker": "ITA", - "instrumentType": "stock" - } - }, - "0xeaa2287290544ed9f481012aa348619a4d2f9e51": { - "address": "0xeaa2287290544ed9f481012aa348619a4d2f9e51", - "symbol": "KWEBON", - "decimals": 18, - "name": "KraneShares CSI China Internet ETF (Ondo Tokenized)", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xeaa2287290544ed9f481012aa348619a4d2f9e51.png", - "aggregators": ["CoinGecko", "Rubic", "Rango", "Ondo"], - "occurrences": 4, - "rwaData": { - "market": { - "nextOpen": "2026-05-18T20:01:00.000Z", - "nextClose": "2026-05-18T19:59:00.000Z" - }, - "nextPause": { - "start": null, - "end": null - }, - "ticker": "KWEB", - "instrumentType": "stock" - } - }, - "0xc383a3833a87009fd9597f8184979af5edfad019": { - "address": "0xc383a3833a87009fd9597f8184979af5edfad019", - "symbol": "IETH", - "decimals": 18, - "name": "iETH v1", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xc383a3833a87009fd9597f8184979af5edfad019.png", - "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0x508b27902c6c14972a10a4e413b9cfa449e9cedb": { - "address": "0x508b27902c6c14972a10a4e413b9cfa449e9cedb", - "symbol": "AISIG", - "decimals": 18, - "name": "AISignal", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x508b27902c6c14972a10a4e413b9cfa449e9cedb.png", - "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0x95b4ef2869ebd94beb4eee400a99824bf5dc325b": { - "address": "0x95b4ef2869ebd94beb4eee400a99824bf5dc325b", - "symbol": "CMKR", - "decimals": 8, - "name": "cMKR", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x95b4ef2869ebd94beb4eee400a99824bf5dc325b.png", - "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0xe5acbb03d73267c03349c76ead672ee4d941f499": { - "address": "0xe5acbb03d73267c03349c76ead672ee4d941f499", - "symbol": "BEAM", - "decimals": 8, - "name": "BEAM", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xe5acbb03d73267c03349c76ead672ee4d941f499.png", - "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0x3f95aa88ddbb7d9d484aa3d482bf0a80009c52c9": { - "address": "0x3f95aa88ddbb7d9d484aa3d482bf0a80009c52c9", - "symbol": "BERNX", - "decimals": 18, - "name": "Backed ERNX Bond", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x3f95aa88ddbb7d9d484aa3d482bf0a80009c52c9.png", - "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0xe4babaa960ba7d37860f3fe00d7b95d3868e8edc": { - "address": "0xe4babaa960ba7d37860f3fe00d7b95d3868e8edc", - "symbol": "NBISON", - "decimals": 18, - "name": "Nebius Group (Ondo Tokenized)", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xe4babaa960ba7d37860f3fe00d7b95d3868e8edc.png", - "aggregators": ["CoinGecko", "Rubic", "Rango", "Ondo"], - "occurrences": 4, - "rwaData": { - "market": { - "nextOpen": "2026-05-18T20:01:00.000Z", - "nextClose": "2026-05-18T19:59:00.000Z" - }, - "nextPause": { - "start": null, - "end": null - }, - "ticker": "NBIS", - "instrumentType": "stock" - } - }, - "0x0c802acb21cb2aadb2eb5e5090868e1361b26b69": { - "address": "0x0c802acb21cb2aadb2eb5e5090868e1361b26b69", - "symbol": "NEMON", - "decimals": 18, - "name": "Newmont (Ondo Tokenized)", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x0c802acb21cb2aadb2eb5e5090868e1361b26b69.png", - "aggregators": ["CoinGecko", "Rubic", "Rango", "Ondo"], - "occurrences": 4, - "rwaData": { - "market": { - "nextOpen": "2026-05-18T20:01:00.000Z", - "nextClose": "2026-05-18T19:59:00.000Z" - }, - "nextPause": { - "start": "2026-05-26T23:52:00.000Z", - "end": "2026-05-27T00:12:00.000Z" - }, - "ticker": "NEM", - "instrumentType": "stock" - } - }, - "0x8ce34f749796f82a6990ffa2d80622ef75ca7ad5": { - "address": "0x8ce34f749796f82a6990ffa2d80622ef75ca7ad5", - "symbol": "NOCON", - "decimals": 18, - "name": "Northrop Grumman (Ondo Tokenized)", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x8ce34f749796f82a6990ffa2d80622ef75ca7ad5.png", - "aggregators": ["CoinGecko", "Rubic", "Rango", "Ondo"], - "occurrences": 4, - "rwaData": { - "market": { - "nextOpen": "2026-05-18T20:01:00.000Z", - "nextClose": "2026-05-18T19:59:00.000Z" - }, - "nextPause": { - "start": null, - "end": null - }, - "ticker": "NOC", - "instrumentType": "stock" - } - }, - "0x7712c34205737192402172409a8f7ccef8aa2aec": { - "address": "0x7712c34205737192402172409a8f7ccef8aa2aec", - "symbol": "BUIDL", - "decimals": 6, - "name": "BlackRock USD Institutional Digital Liq", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x7712c34205737192402172409a8f7ccef8aa2aec.png", - "aggregators": ["CoinMarketCap", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0x1ffefd8036409cb6d652bd610de465933b226917": { - "address": "0x1ffefd8036409cb6d652bd610de465933b226917", - "symbol": "EVER", - "decimals": 9, - "name": "Everscale", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x1ffefd8036409cb6d652bd610de465933b226917.png", - "aggregators": ["CoinMarketCap", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0x0ede75b5f548e0d37f494368f4fa4982b6d0630a": { - "address": "0x0ede75b5f548e0d37f494368f4fa4982b6d0630a", - "symbol": "MEG", - "decimals": 18, - "name": "Meg4mint", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x0ede75b5f548e0d37f494368f4fa4982b6d0630a.png", - "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0xd05728038681bcc79b2d5aeb4d9b002e66c93a40": { - "address": "0xd05728038681bcc79b2d5aeb4d9b002e66c93a40", - "symbol": "MRETH", - "decimals": 18, - "name": "Eigenpie rETH", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xd05728038681bcc79b2d5aeb4d9b002e66c93a40.png", - "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0xa0769f7a8fc65e47de93797b4e21c073c117fc80": { - "address": "0xa0769f7a8fc65e47de93797b4e21c073c117fc80", - "symbol": "EUTBL", - "decimals": 5, - "name": "Spiko EU T Bills Money Market Fund", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xa0769f7a8fc65e47de93797b4e21c073c117fc80.png", - "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0x879054273cb2dad631980fa4efe6d25eefe08aa4": { - "address": "0x879054273cb2dad631980fa4efe6d25eefe08aa4", - "symbol": "MSFRXETH", - "decimals": 18, - "name": "Eigenpie frxETH", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x879054273cb2dad631980fa4efe6d25eefe08aa4.png", - "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0x556d4f40982cb95e0714989e0c229c42be8b1499": { - "address": "0x556d4f40982cb95e0714989e0c229c42be8b1499", - "symbol": "GLTM", - "decimals": 18, - "name": "Golteum", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x556d4f40982cb95e0714989e0c229c42be8b1499.png", - "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0xc97232527b62efb0d8ed38cf3ea103a6cca4037e": { - "address": "0xc97232527b62efb0d8ed38cf3ea103a6cca4037e", - "symbol": "LP-YCRV", - "decimals": 18, - "name": "LP Yearn CRV Vault", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xc97232527b62efb0d8ed38cf3ea103a6cca4037e.png", - "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0xca30c93b02514f86d5c86a6e375e3a330b435fb5": { - "address": "0xca30c93b02514f86d5c86a6e375e3a330b435fb5", - "symbol": "BIB01", - "decimals": 18, - "name": "Backed IB01 Treasury Bond 0 1yr", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xca30c93b02514f86d5c86a6e375e3a330b435fb5.png", - "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0x244517dc59943e8cdfbd424bdb3262c5f04a1387": { - "address": "0x244517dc59943e8cdfbd424bdb3262c5f04a1387", - "symbol": "FDAI", - "decimals": 6, - "name": "Fluid DAI", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x244517dc59943e8cdfbd424bdb3262c5f04a1387.png", - "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0x0b319db00d07c8fadfaaef13c910141a5da0aa8f": { - "address": "0x0b319db00d07c8fadfaaef13c910141a5da0aa8f", - "symbol": "FTUSD", - "decimals": 18, - "name": "Fluid TUSD", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x0b319db00d07c8fadfaaef13c910141a5da0aa8f.png", - "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0x63898b3b6ef3d39332082178656e9862bee45c57": { - "address": "0x63898b3b6ef3d39332082178656e9862bee45c57", - "symbol": "XOGN", - "decimals": 18, - "name": "Staked OGN", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x63898b3b6ef3d39332082178656e9862bee45c57.png", - "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0xf9902edfca4f49dcaebc335c73aebd82c79c2886": { - "address": "0xf9902edfca4f49dcaebc335c73aebd82c79c2886", - "symbol": "ADO", - "decimals": 18, - "name": "ADO Protocol", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xf9902edfca4f49dcaebc335c73aebd82c79c2886.png", - "aggregators": ["CoinMarketCap", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0xe2ba8693ce7474900a045757fe0efca900f6530b": { - "address": "0xe2ba8693ce7474900a045757fe0efca900f6530b", - "symbol": "FDAI", - "decimals": 8, - "name": "Flux DAI", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xe2ba8693ce7474900a045757fe0efca900f6530b.png", - "aggregators": ["CoinMarketCap", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0x36f8d0d0573ae92326827c4a82fe4ce4c244cab6": { - "address": "0x36f8d0d0573ae92326827c4a82fe4ce4c244cab6", - "symbol": "MADAI", - "decimals": 18, - "name": "Morpho Aave Dai Stablecoin", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x36f8d0d0573ae92326827c4a82fe4ce4c244cab6.png", - "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0xa5269a8e31b93ff27b887b56720a25f844db0529": { - "address": "0xa5269a8e31b93ff27b887b56720a25f844db0529", - "symbol": "MAUSDC", - "decimals": 18, - "name": "Morpho Aave USD Coin", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xa5269a8e31b93ff27b887b56720a25f844db0529.png", - "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0x1376a81fe3ee7d0e431f1ac24286b00f3ccf44e7": { - "address": "0x1376a81fe3ee7d0e431f1ac24286b00f3ccf44e7", - "symbol": "WELLE", - "decimals": 18, - "name": "Welle", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x1376a81fe3ee7d0e431f1ac24286b00f3ccf44e7.png", - "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0x03ee5026c07d85ff8ae791370dd0f4c1ae6c97fc": { - "address": "0x03ee5026c07d85ff8ae791370dd0f4c1ae6c97fc", - "symbol": "OXL", - "decimals": 18, - "name": "0x Leverage", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x03ee5026c07d85ff8ae791370dd0f4c1ae6c97fc.png", - "aggregators": ["CoinMarketCap", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0x1c91d9482c4802315e617267bb3ef50c0aa15c41": { - "address": "0x1c91d9482c4802315e617267bb3ef50c0aa15c41", - "symbol": "SDUSD", - "decimals": 18, - "name": "Davos Protocol Staked DUSD", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x1c91d9482c4802315e617267bb3ef50c0aa15c41.png", - "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0xa0d3707c569ff8c87fa923d3823ec5d81c98be78": { - "address": "0xa0d3707c569ff8c87fa923d3823ec5d81c98be78", - "symbol": "IETHV2", - "decimals": 18, - "name": "Instadapp ETH v2", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xa0d3707c569ff8c87fa923d3823ec5d81c98be78.png", - "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0x970a341b4e311a5c7248dc9c3d8d4f35fedfa73e": { - "address": "0x970a341b4e311a5c7248dc9c3d8d4f35fedfa73e", - "symbol": "HLS", - "decimals": 18, - "name": "HLS", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x970a341b4e311a5c7248dc9c3d8d4f35fedfa73e.png", - "aggregators": ["CoinMarketCap", "LiFi", "Rubic", "Rango"], - "occurrences": 4 - }, - "0x2c2f0ffbfa1b8b9c85400f1726e1bc0892e63d9f": { - "address": "0x2c2f0ffbfa1b8b9c85400f1726e1bc0892e63d9f", - "symbol": "RFSTETH", - "decimals": 18, - "name": "Return Finance Lido stETH", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x2c2f0ffbfa1b8b9c85400f1726e1bc0892e63d9f.png", - "aggregators": ["CoinGecko", "Rubic", "Sonarwatch"], - "occurrences": 3 - }, - "0x4b6d20acfc764ef6b60f0339e7cbad83284e7d6e": { - "address": "0x4b6d20acfc764ef6b60f0339e7cbad83284e7d6e", - "symbol": "YBTC", - "decimals": 8, - "name": "pSTAKE Staked Bitcoin", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x4b6d20acfc764ef6b60f0339e7cbad83284e7d6e.png", - "aggregators": ["CoinGecko", "Rubic", "Sonarwatch"], - "occurrences": 3 - }, - "0x571042b7138ee957a96a6820fce79c48fe2da816": { - "address": "0x571042b7138ee957a96a6820fce79c48fe2da816", - "symbol": "ESLBR", - "decimals": 18, - "name": "Escrowed LBR", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x571042b7138ee957a96a6820fce79c48fe2da816.png", - "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0x0af0e83d064f160376303ac67dd9a7971af88d4c": { - "address": "0x0af0e83d064f160376303ac67dd9a7971af88d4c", - "symbol": "MESLBR", - "decimals": 18, - "name": "Match Finance esLBR", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x0af0e83d064f160376303ac67dd9a7971af88d4c.png", - "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0xd9788f3931ede4d5018184e198699dc6d66c1915": { - "address": "0xd9788f3931ede4d5018184e198699dc6d66c1915", - "symbol": "YVAAVE", - "decimals": 18, - "name": "Aave yVault", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xd9788f3931ede4d5018184e198699dc6d66c1915.png", - "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0x4a3fe75762017db0ed73a71c9a06db7768db5e66": { - "address": "0x4a3fe75762017db0ed73a71c9a06db7768db5e66", - "symbol": "YVCOMP", - "decimals": 18, - "name": "COMP yVault", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x4a3fe75762017db0ed73a71c9a06db7768db5e66.png", - "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0x3b27f92c0e212c671ea351827edf93db27cc0c65": { - "address": "0x3b27f92c0e212c671ea351827edf93db27cc0c65", - "symbol": "YVUSDT", - "decimals": 6, - "name": "USDT yVault", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x3b27f92c0e212c671ea351827edf93db27cc0c65.png", - "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0xfbeb78a723b8087fd2ea7ef1afec93d35e8bed42": { - "address": "0xfbeb78a723b8087fd2ea7ef1afec93d35e8bed42", - "symbol": "YVUNI", - "decimals": 18, - "name": "UNI yVault", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xfbeb78a723b8087fd2ea7ef1afec93d35e8bed42.png", - "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0x8e0b3e3cb4468b6aa07a64e69deb72aea8eddc6f": { - "address": "0x8e0b3e3cb4468b6aa07a64e69deb72aea8eddc6f", - "symbol": "SANJI", - "decimals": 18, - "name": "Sanji", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x8e0b3e3cb4468b6aa07a64e69deb72aea8eddc6f.png", - "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0x5ac83bfbfcebb3397a40fd259dbe7a4be04237d3": { - "address": "0x5ac83bfbfcebb3397a40fd259dbe7a4be04237d3", - "symbol": "LBT", - "decimals": 18, - "name": "Lyfebloc", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x5ac83bfbfcebb3397a40fd259dbe7a4be04237d3.png", - "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0x7b67d8b4da0b17a9b98eddc21230b60c8ede69a4": { - "address": "0x7b67d8b4da0b17a9b98eddc21230b60c8ede69a4", - "symbol": "ZULU", - "decimals": 18, - "name": "Zulu Network", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x7b67d8b4da0b17a9b98eddc21230b60c8ede69a4.png", - "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0x48a612a6da945205a221e94bb9f40b0550cd2c4e": { - "address": "0x48a612a6da945205a221e94bb9f40b0550cd2c4e", - "symbol": "STTIA", - "decimals": 6, - "name": "Bridged stTIA Hyperlane", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x48a612a6da945205a221e94bb9f40b0550cd2c4e.png", - "aggregators": ["CoinGecko", "Rubic", "Sonarwatch"], - "occurrences": 3 - }, - "0xafe7131a57e44f832cb2de78ade38cad644aac2f": { - "address": "0xafe7131a57e44f832cb2de78ade38cad644aac2f", - "symbol": "MAUSDT", - "decimals": 18, - "name": "Morpho Aave Tether USD", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xafe7131a57e44f832cb2de78ade38cad644aac2f.png", - "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0xc8020985a6b30773d866cbef65a7a11f96773413": { - "address": "0xc8020985a6b30773d866cbef65a7a11f96773413", - "symbol": "ENVI", - "decimals": 18, - "name": "Envi Coin", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xc8020985a6b30773d866cbef65a7a11f96773413.png", - "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0x65278f702019078e9ab196c0da0a6ee55e7248b7": { - "address": "0x65278f702019078e9ab196c0da0a6ee55e7248b7", - "symbol": "DIONE", - "decimals": 18, - "name": "Wrapped Dione", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x65278f702019078e9ab196c0da0a6ee55e7248b7.png", - "aggregators": ["CoinMarketCap", "Socket", "Rubic", "Rango"], - "occurrences": 4 - }, - "0x9dc7094530cb1bcf5442c3b9389ee386738a190c": { - "address": "0x9dc7094530cb1bcf5442c3b9389ee386738a190c", - "symbol": "MACRV", - "decimals": 18, - "name": "Morpho Aave Curve DAO Token", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x9dc7094530cb1bcf5442c3b9389ee386738a190c.png", - "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0x2047ab3072b52561596ce5e0131bdbb7c848538d": { - "address": "0x2047ab3072b52561596ce5e0131bdbb7c848538d", - "symbol": "BORED", - "decimals": 9, - "name": "Bored Token", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x2047ab3072b52561596ce5e0131bdbb7c848538d.png", - "aggregators": ["CoinMarketCap", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0xbbb32f99e6f2cb29337eebaa43c5069386de6e6c": { - "address": "0xbbb32f99e6f2cb29337eebaa43c5069386de6e6c", - "symbol": "PT", - "decimals": 18, - "name": "Phemex Token", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xbbb32f99e6f2cb29337eebaa43c5069386de6e6c.png", - "aggregators": ["CoinMarketCap", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0xab5eb14c09d416f0ac63661e57edb7aecdb9befa": { - "address": "0xab5eb14c09d416f0ac63661e57edb7aecdb9befa", - "symbol": "MSUSD", - "decimals": 18, - "name": "MSUSD", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xab5eb14c09d416f0ac63661e57edb7aecdb9befa.png", - "aggregators": ["CoinGecko", "LiFi", "Rubic", "Rango"], - "occurrences": 4 - }, - "0x64351fc9810adad17a690e4e1717df5e7e085160": { - "address": "0x64351fc9810adad17a690e4e1717df5e7e085160", - "symbol": "MSETH", - "decimals": 18, - "name": "MSETH", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x64351fc9810adad17a690e4e1717df5e7e085160.png", - "aggregators": ["CoinGecko", "LiFi", "Rubic", "Rango"], - "occurrences": 4 - }, - "0x94314a14df63779c99c0764a30e0cd22fa78fc0e": { - "address": "0x94314a14df63779c99c0764a30e0cd22fa78fc0e", - "symbol": "EPIC", - "decimals": 18, - "name": "Epic Chain", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x94314a14df63779c99c0764a30e0cd22fa78fc0e.png", - "aggregators": ["Metamask", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0xda5fab7affc6dffd24d60e23153d241a3d9f9603": { - "address": "0xda5fab7affc6dffd24d60e23153d241a3d9f9603", - "symbol": "CRYPTIQ", - "decimals": 18, - "name": "Cryptiq browser", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xda5fab7affc6dffd24d60e23153d241a3d9f9603.png", - "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0xe0c28a5a2da3920946e8bf821f61f7bea311048b": { - "address": "0xe0c28a5a2da3920946e8bf821f61f7bea311048b", - "symbol": "KETH", - "decimals": 18, - "name": "Stakehouse kETH", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xe0c28a5a2da3920946e8bf821f61f7bea311048b.png", - "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0xecf3672a6d2147e2a77f07069fb48d8cf6f6fbf9": { - "address": "0xecf3672a6d2147e2a77f07069fb48d8cf6f6fbf9", - "symbol": "INMETH", - "decimals": 18, - "name": "Inception mETH", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xecf3672a6d2147e2a77f07069fb48d8cf6f6fbf9.png", - "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0xfd07fd5ebea6f24888a397997e262179bf494336": { - "address": "0xfd07fd5ebea6f24888a397997e262179bf494336", - "symbol": "INOSETH", - "decimals": 18, - "name": "Inception osETH", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xfd07fd5ebea6f24888a397997e262179bf494336.png", - "aggregators": ["CoinGecko", "Rubic", "Sonarwatch"], - "occurrences": 3 - }, - "0xf31826269ac7f452b1274cc884812f426c18ddca": { - "address": "0xf31826269ac7f452b1274cc884812f426c18ddca", - "symbol": "MILK", - "decimals": 18, - "name": "MILK Coin", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xf31826269ac7f452b1274cc884812f426c18ddca.png", - "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0x3127294f1fd3c097ef31e54301069346b29d0209": { - "address": "0x3127294f1fd3c097ef31e54301069346b29d0209", - "symbol": "BLAST", - "decimals": 18, - "name": "Blast Inu", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x3127294f1fd3c097ef31e54301069346b29d0209.png", - "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0x27cf096db452425c51daa356e7d9c574c75e8737": { - "address": "0x27cf096db452425c51daa356e7d9c574c75e8737", - "symbol": "PTC", - "decimals": 18, - "name": "PATIC", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x27cf096db452425c51daa356e7d9c574c75e8737.png", - "aggregators": ["CoinMarketCap", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0x0c08638473cafbca3beb113616a1871f4bfad4f9": { - "address": "0x0c08638473cafbca3beb113616a1871f4bfad4f9", - "symbol": "ZOO", - "decimals": 18, - "name": "ZooCoin", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x0c08638473cafbca3beb113616a1871f4bfad4f9.png", - "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0xb446566d6d644249d5d82aab5fea8a5b7da3f691": { - "address": "0xb446566d6d644249d5d82aab5fea8a5b7da3f691", - "symbol": "TBOS", - "decimals": 0, - "name": "Aktionariat TBo c o Comon Accelerator H", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xb446566d6d644249d5d82aab5fea8a5b7da3f691.png", - "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0x94b888e11a9e960a9c3b3528eb6ac807b27ca62e": { - "address": "0x94b888e11a9e960a9c3b3528eb6ac807b27ca62e", - "symbol": "INLSETH", - "decimals": 18, - "name": "Inception lsETH", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x94b888e11a9e960a9c3b3528eb6ac807b27ca62e.png", - "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0xe1a70b24e109f7a8b39806c554e123efc6769e91": { - "address": "0xe1a70b24e109f7a8b39806c554e123efc6769e91", - "symbol": "LSDAI", - "decimals": 18, - "name": "Liquid Savings DAI", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xe1a70b24e109f7a8b39806c554e123efc6769e91.png", - "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0x1a44e35d5451e0b78621a1b3e7a53dfaa306b1d0": { - "address": "0x1a44e35d5451e0b78621a1b3e7a53dfaa306b1d0", - "symbol": "B-BAOETH-ETH-BPT", - "decimals": 18, - "name": "baoETH ETH StablePool", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x1a44e35d5451e0b78621a1b3e7a53dfaa306b1d0.png", - "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0xa9ad6830180f9c150349f2cecadd710586e35cb7": { - "address": "0xa9ad6830180f9c150349f2cecadd710586e35cb7", - "symbol": "ETHS", - "decimals": 18, - "name": "ETH Stable", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xa9ad6830180f9c150349f2cecadd710586e35cb7.png", - "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0xacb3604aadf26e6c0bb8c720420380629a328d2c": { - "address": "0xacb3604aadf26e6c0bb8c720420380629a328d2c", - "symbol": "XEETH", - "decimals": 18, - "name": "Leveraged eETH", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xacb3604aadf26e6c0bb8c720420380629a328d2c.png", - "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0x9baa12a9e3b9dc355f162082762f95626367d087": { - "address": "0x9baa12a9e3b9dc355f162082762f95626367d087", - "symbol": "HANDZ", - "decimals": 18, - "name": "Handz of Gods", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x9baa12a9e3b9dc355f162082762f95626367d087.png", - "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0x2e5a5af7ee900d34bcfb70c47023bf1d6be35cf5": { - "address": "0x2e5a5af7ee900d34bcfb70c47023bf1d6be35cf5", - "symbol": "XEZETH", - "decimals": 18, - "name": "Leveraged ezETH", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x2e5a5af7ee900d34bcfb70c47023bf1d6be35cf5.png", - "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0x80795a7bb55f003b1572411a271e31f73e03dd73": { - "address": "0x80795a7bb55f003b1572411a271e31f73e03dd73", - "symbol": "DAUMEN", - "decimals": 9, - "name": "daumenfrosch", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x80795a7bb55f003b1572411a271e31f73e03dd73.png", - "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0x9d5963ba32e877871dff3e2e697283dc64066271": { - "address": "0x9d5963ba32e877871dff3e2e697283dc64066271", - "symbol": "EDC", - "decimals": 18, - "name": "Edcoin", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x9d5963ba32e877871dff3e2e697283dc64066271.png", - "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0xbfabde619ed5c4311811cf422562709710db587d": { - "address": "0xbfabde619ed5c4311811cf422562709710db587d", - "symbol": "DIVA", - "decimals": 18, - "name": "Diva Staking", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xbfabde619ed5c4311811cf422562709710db587d.png", - "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0x1b66474c8eca3827f16202907f41f63785579716": { - "address": "0x1b66474c8eca3827f16202907f41f63785579716", - "symbol": "WXT", - "decimals": 6, - "name": "WEEX Token", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x1b66474c8eca3827f16202907f41f63785579716.png", - "aggregators": ["CoinMarketCap", "Rubic", "Sonarwatch"], - "occurrences": 3 - }, - "0x47b751e318fe7e9769f4b56fabbffb05d530a88c": { - "address": "0x47b751e318fe7e9769f4b56fabbffb05d530a88c", - "symbol": "PMW", - "decimals": 18, - "name": "Photon Milky Way", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x47b751e318fe7e9769f4b56fabbffb05d530a88c.png", - "aggregators": ["CoinGecko", "Rubic", "Sonarwatch"], - "occurrences": 3 - }, - "0x1903be033d3e436dd79a8cf9030675bcf97ab589": { - "address": "0x1903be033d3e436dd79a8cf9030675bcf97ab589", - "symbol": "BJK", - "decimals": 6, - "name": "Be ikta", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x1903be033d3e436dd79a8cf9030675bcf97ab589.png", - "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0x32fd949e1953b21b7a8232ef4259cd708b4e0847": { - "address": "0x32fd949e1953b21b7a8232ef4259cd708b4e0847", - "symbol": "HBT", - "decimals": 18, - "name": "HyperBC", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x32fd949e1953b21b7a8232ef4259cd708b4e0847.png", - "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0x653aab62056b92641116d63927de6141d780e596": { - "address": "0x653aab62056b92641116d63927de6141d780e596", - "symbol": "ACHF", - "decimals": 18, - "name": "Anchored Coins ACHF", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x653aab62056b92641116d63927de6141d780e596.png", - "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0xd09124e8a1e3d620e8807ad1d968021a5495cee8": { - "address": "0xd09124e8a1e3d620e8807ad1d968021a5495cee8", - "symbol": "MCBETH", - "decimals": 18, - "name": "Eigenpie cbETH", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xd09124e8a1e3d620e8807ad1d968021a5495cee8.png", - "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0x1236ea13c7339287cd00ab196aaa8217006b04dc": { - "address": "0x1236ea13c7339287cd00ab196aaa8217006b04dc", - "symbol": "EPL", - "decimals": 18, - "name": "Epic League", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x1236ea13c7339287cd00ab196aaa8217006b04dc.png", - "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0x583019ff0f430721ada9cfb4fac8f06ca104d0b4": { - "address": "0x583019ff0f430721ada9cfb4fac8f06ca104d0b4", - "symbol": "ST-YETH", - "decimals": 18, - "name": "Staked Yearn Ether", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x583019ff0f430721ada9cfb4fac8f06ca104d0b4.png", - "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0x8f0f56472c3e5730b1ea2f444e7829288da261e6": { - "address": "0x8f0f56472c3e5730b1ea2f444e7829288da261e6", - "symbol": "RMAV", - "decimals": 18, - "name": "Rogue MAV", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x8f0f56472c3e5730b1ea2f444e7829288da261e6.png", - "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0x201332bd45c8628d814f870bfb584b385a7c351e": { - "address": "0x201332bd45c8628d814f870bfb584b385a7c351e", - "symbol": "ASTRA", - "decimals": 18, - "name": "Astra Protocol", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x201332bd45c8628d814f870bfb584b385a7c351e.png", - "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0xcac1277aa6ecb68b84fad070910d37029e810b79": { - "address": "0xcac1277aa6ecb68b84fad070910d37029e810b79", - "symbol": "BDT", - "decimals": 18, - "name": "BitDelta", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xcac1277aa6ecb68b84fad070910d37029e810b79.png", - "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0x7a8946eda77817126ffe301249f6dc4c7df293c3": { - "address": "0x7a8946eda77817126ffe301249f6dc4c7df293c3", - "symbol": "DYL", - "decimals": 18, - "name": "Dyl", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x7a8946eda77817126ffe301249f6dc4c7df293c3.png", - "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0x7df18e4efd6e6f73cfb462937dac40fe42533016": { - "address": "0x7df18e4efd6e6f73cfb462937dac40fe42533016", - "symbol": "ZKITTY", - "decimals": 18, - "name": "ZKitty Bot", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x7df18e4efd6e6f73cfb462937dac40fe42533016.png", - "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0x4e1a609ec87cf6477613f515f6eb64ef2d31089a": { - "address": "0x4e1a609ec87cf6477613f515f6eb64ef2d31089a", - "symbol": "DGCS", - "decimals": 0, - "name": "Aktionariat Green Consensus AG Tokenize", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x4e1a609ec87cf6477613f515f6eb64ef2d31089a.png", - "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0x183395dbd0b5e93323a7286d1973150697fffcb3": { - "address": "0x183395dbd0b5e93323a7286d1973150697fffcb3", - "symbol": "CVXFXN", - "decimals": 18, - "name": "Convex FXN", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x183395dbd0b5e93323a7286d1973150697fffcb3.png", - "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0x9a1722b1f4a1bb2f271211ade8e851afc54f77e5": { - "address": "0x9a1722b1f4a1bb2f271211ade8e851afc54f77e5", - "symbol": "METHX", - "decimals": 18, - "name": "Eigenpie ETHx", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x9a1722b1f4a1bb2f271211ade8e851afc54f77e5.png", - "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0xacdbfcbd4d6d4e9fe72c3ba4280d728ab2ace30f": { - "address": "0xacdbfcbd4d6d4e9fe72c3ba4280d728ab2ace30f", - "symbol": "TWB", - "decimals": 18, - "name": "TargetWatch Bot", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xacdbfcbd4d6d4e9fe72c3ba4280d728ab2ace30f.png", - "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0xbf40440703a3f7092b2e73c2f7868727275dbbda": { - "address": "0xbf40440703a3f7092b2e73c2f7868727275dbbda", - "symbol": "KEEP", - "decimals": 18, - "name": "Keep Finance", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xbf40440703a3f7092b2e73c2f7868727275dbbda.png", - "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0xe90ce7764d8401d19ed3733a211bd3b06c631bc0": { - "address": "0xe90ce7764d8401d19ed3733a211bd3b06c631bc0", - "symbol": "POD", - "decimals": 18, - "name": "The Other Party", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xe90ce7764d8401d19ed3733a211bd3b06c631bc0.png", - "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0x5a4a503f4745c06a07e29d9a9dd88ab52f7a505b": { - "address": "0x5a4a503f4745c06a07e29d9a9dd88ab52f7a505b", - "symbol": "MANKRETH", - "decimals": 18, - "name": "Eigenpie ankrETH", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x5a4a503f4745c06a07e29d9a9dd88ab52f7a505b.png", - "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0x310718274509a38cc5559a1ff48c5edbe75a382b": { - "address": "0x310718274509a38cc5559a1ff48c5edbe75a382b", - "symbol": "MOETH", - "decimals": 18, - "name": "Eigenpie oETH", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x310718274509a38cc5559a1ff48c5edbe75a382b.png", - "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0x1d00e86748573c322f4cc41518aa0e77bd912eb4": { - "address": "0x1d00e86748573c322f4cc41518aa0e77bd912eb4", - "symbol": "USDE", - "decimals": 18, - "name": "Ethereum Reserve Dollar USDE", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x1d00e86748573c322f4cc41518aa0e77bd912eb4.png", - "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0xec363faa5c4dd0e51f3d9b5d0101263760e7cdeb": { - "address": "0xec363faa5c4dd0e51f3d9b5d0101263760e7cdeb", - "symbol": "IWBTC", - "decimals": 8, - "name": "Instadapp WBTC", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xec363faa5c4dd0e51f3d9b5d0101263760e7cdeb.png", - "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0x40a9d39aa50871df092538c5999b107f34409061": { - "address": "0x40a9d39aa50871df092538c5999b107f34409061", - "symbol": "IDAI", - "decimals": 18, - "name": "Instadapp DAI", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x40a9d39aa50871df092538c5999b107f34409061.png", - "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0xedb73d4ed90be7a49d06d0d940055e6d181d22fa": { - "address": "0xedb73d4ed90be7a49d06d0d940055e6d181d22fa", - "symbol": "OBLUE", - "decimals": 18, - "name": "Blueprint oBLUE", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xedb73d4ed90be7a49d06d0d940055e6d181d22fa.png", - "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0x8d9d725aaa3f6236763ff548051657a342c37623": { - "address": "0x8d9d725aaa3f6236763ff548051657a342c37623", - "symbol": "NED", - "decimals": 18, - "name": "NED", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x8d9d725aaa3f6236763ff548051657a342c37623.png", - "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0x218de5e6324c5351c3a2bf0c40d76f585b8de04d": { - "address": "0x218de5e6324c5351c3a2bf0c40d76f585b8de04d", - "symbol": "STPETH", - "decimals": 18, - "name": "Stake Together", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x218de5e6324c5351c3a2bf0c40d76f585b8de04d.png", - "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0x619e398858a3110df4d89056a15a40338a01e65f": { - "address": "0x619e398858a3110df4d89056a15a40338a01e65f", - "symbol": "GARBAGE", - "decimals": 18, - "name": "Garbage", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x619e398858a3110df4d89056a15a40338a01e65f.png", - "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0xa1f3aca66403d29b909605040c30ae1f1245d14c": { - "address": "0xa1f3aca66403d29b909605040c30ae1f1245d14c", - "symbol": "TFBILL", - "decimals": 6, - "name": "Adapt3r Digital Treasury Bill Fund", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xa1f3aca66403d29b909605040c30ae1f1245d14c.png", - "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0xe138fda441fc31b36171122397a8a11d6cd2c479": { - "address": "0xe138fda441fc31b36171122397a8a11d6cd2c479", - "symbol": "GTC", - "decimals": 0, - "name": "Global Trust Coin", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xe138fda441fc31b36171122397a8a11d6cd2c479.png", - "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0xd69a0a9682f679f50e34de40105a93bebb2ff43d": { - "address": "0xd69a0a9682f679f50e34de40105a93bebb2ff43d", - "symbol": "MACKE", - "decimals": 18, - "name": "Mackerel", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xd69a0a9682f679f50e34de40105a93bebb2ff43d.png", - "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0x149cac67f1cd5d80651e7c9bb359ec285d821a05": { - "address": "0x149cac67f1cd5d80651e7c9bb359ec285d821a05", - "symbol": "MINTY", - "decimals": 18, - "name": "Minterest", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x149cac67f1cd5d80651e7c9bb359ec285d821a05.png", - "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0x2fc246aa66f0da5bb1368f688548ecbbe9bdee5d": { - "address": "0x2fc246aa66f0da5bb1368f688548ecbbe9bdee5d", - "symbol": "TEMCO", - "decimals": 18, - "name": "TEMCO", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x2fc246aa66f0da5bb1368f688548ecbbe9bdee5d.png", - "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0x4b7265d153886a7dc717e815862acde6ff7b5bc8": { - "address": "0x4b7265d153886a7dc717e815862acde6ff7b5bc8", - "symbol": "DENCH", - "decimals": 18, - "name": "DENCHCOIN", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x4b7265d153886a7dc717e815862acde6ff7b5bc8.png", - "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0xc71ea051a5f82c67adcf634c36ffe6334793d24c": { - "address": "0xc71ea051a5f82c67adcf634c36ffe6334793d24c", - "symbol": "WAETHLIDOGHO", - "decimals": 18, - "name": "WAETHLIDOGHO", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xc71ea051a5f82c67adcf634c36ffe6334793d24c.png", - "aggregators": ["CoinGecko", "1inch", "Rubic", "Rango"], - "occurrences": 4 - }, - "0x352a3144e88d23427993938cfd780291d95ef091": { - "address": "0x352a3144e88d23427993938cfd780291d95ef091", - "symbol": "MOSETH", - "decimals": 18, - "name": "Eigenpie OsETH", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x352a3144e88d23427993938cfd780291d95ef091.png", - "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0x9f23562ec47249761222ef7ac02b327a8c45ba7d": { - "address": "0x9f23562ec47249761222ef7ac02b327a8c45ba7d", - "symbol": "XWBTC", - "decimals": 18, - "name": "Leverage WBTC", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x9f23562ec47249761222ef7ac02b327a8c45ba7d.png", - "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0xa939c02dba8f237b40d2a3e96ad4252b00bb8a72": { - "address": "0xa939c02dba8f237b40d2a3e96ad4252b00bb8a72", - "symbol": "MLSETH", - "decimals": 18, - "name": "Eigenpie LsETH", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xa939c02dba8f237b40d2a3e96ad4252b00bb8a72.png", - "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0x93109af5638be68ed2d0e094f618777ff1051d28": { - "address": "0x93109af5638be68ed2d0e094f618777ff1051d28", - "symbol": "UN", - "decimals": 18, - "name": "UNIT DAO", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x93109af5638be68ed2d0e094f618777ff1051d28.png", - "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0x64d3c2817a22b78cacabe4baa2525065ebdf4012": { - "address": "0x64d3c2817a22b78cacabe4baa2525065ebdf4012", - "symbol": "SHARX", - "decimals": 18, - "name": "RaidSharksBot", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x64d3c2817a22b78cacabe4baa2525065ebdf4012.png", - "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0xb80a1d87654bef7ad8eb6bbda3d2309e31d4e598": { - "address": "0xb80a1d87654bef7ad8eb6bbda3d2309e31d4e598", - "symbol": "21SOL", - "decimals": 9, - "name": "21 co Wrapped SOL", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xb80a1d87654bef7ad8eb6bbda3d2309e31d4e598.png", - "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0x1be9d03bfc211d83cff3abdb94a75f9db46e1334": { - "address": "0x1be9d03bfc211d83cff3abdb94a75f9db46e1334", - "symbol": "21BNB", - "decimals": 8, - "name": "21 co Wrapped BNB", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x1be9d03bfc211d83cff3abdb94a75f9db46e1334.png", - "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0x399508a43d7e2b4451cd344633108b4d84b33b03": { - "address": "0x399508a43d7e2b4451cd344633108b4d84b33b03", - "symbol": "21AVAX", - "decimals": 18, - "name": "21 co Wrapped AVAX", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x399508a43d7e2b4451cd344633108b4d84b33b03.png", - "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0xff4927e04c6a01868284f5c3fb9cba7f7ca4aec0": { - "address": "0xff4927e04c6a01868284f5c3fb9cba7f7ca4aec0", - "symbol": "21BCH", - "decimals": 8, - "name": "21 co Wrapped BCH", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xff4927e04c6a01868284f5c3fb9cba7f7ca4aec0.png", - "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0x6d0bb9b6ce385e28ea4ebb7d76dcb3a1aaf7bc4b": { - "address": "0x6d0bb9b6ce385e28ea4ebb7d76dcb3a1aaf7bc4b", - "symbol": "CRET", - "decimals": 18, - "name": "CREAT OR", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x6d0bb9b6ce385e28ea4ebb7d76dcb3a1aaf7bc4b.png", - "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0xe304283c3e60cefaf7ea514007cf4e8fdc3d869d": { - "address": "0xe304283c3e60cefaf7ea514007cf4e8fdc3d869d", - "symbol": "GEC", - "decimals": 18, - "name": "Gecoin", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xe304283c3e60cefaf7ea514007cf4e8fdc3d869d.png", - "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0x5a097b014c547718e79030a077a91ae37679eff5": { - "address": "0x5a097b014c547718e79030a077a91ae37679eff5", - "symbol": "XSTETH", - "decimals": 18, - "name": "Leveraged stETH", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x5a097b014c547718e79030a077a91ae37679eff5.png", - "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0x0e6641e62baa87d77e01ab1c7e9d2f323f26942b": { - "address": "0x0e6641e62baa87d77e01ab1c7e9d2f323f26942b", - "symbol": "ASET", - "decimals": 18, - "name": "AssetLink", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x0e6641e62baa87d77e01ab1c7e9d2f323f26942b.png", - "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0xa89e2871a850e0e6fd8f0018ec1fc62fa75440d4": { - "address": "0xa89e2871a850e0e6fd8f0018ec1fc62fa75440d4", - "symbol": "RTF", - "decimals": 18, - "name": "Ready to Fight", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xa89e2871a850e0e6fd8f0018ec1fc62fa75440d4.png", - "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0x5ce6f2c0e2a1b4540894f286254bf13b1110d240": { - "address": "0x5ce6f2c0e2a1b4540894f286254bf13b1110d240", - "symbol": "BRX", - "decimals": 18, - "name": "Bricks", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x5ce6f2c0e2a1b4540894f286254bf13b1110d240.png", - "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0xd0a265a32d0211a7f61f11de014b854f7ce716f8": { - "address": "0xd0a265a32d0211a7f61f11de014b854f7ce716f8", - "symbol": "GLTRON", - "decimals": 18, - "name": "abrdn Physical Precious Metals Basket Shares ETF (Ondo Tokenized)", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xd0a265a32d0211a7f61f11de014b854f7ce716f8.png", - "aggregators": ["CoinGecko", "Rubic", "Rango", "Ondo"], - "occurrences": 4, - "rwaData": { - "market": { - "nextOpen": "2026-05-18T20:01:00.000Z", - "nextClose": "2026-05-18T19:59:00.000Z" - }, - "nextPause": { - "start": null, - "end": null - }, - "ticker": "GLTR", - "instrumentType": "stock" - } - }, - "0x1b468d5535ed7c19ce42f0073db7fdf441028131": { - "address": "0x1b468d5535ed7c19ce42f0073db7fdf441028131", - "symbol": "ALBON", - "decimals": 18, - "name": "Albemarle (Ondo Tokenized)", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x1b468d5535ed7c19ce42f0073db7fdf441028131.png", - "aggregators": ["CoinGecko", "Rubic", "Rango", "Ondo"], - "occurrences": 4, - "rwaData": { - "market": { - "nextOpen": "2026-05-18T20:01:00.000Z", - "nextClose": "2026-05-18T19:59:00.000Z" - }, - "nextPause": { - "start": "2026-06-11T23:52:00.000Z", - "end": "2026-06-12T00:12:00.000Z" - }, - "ticker": "ALB", - "instrumentType": "stock" - } - }, - "0xbeef8e0982874e0292e6c5751c5a4092b3e1beef": { - "address": "0xbeef8e0982874e0292e6c5751c5a4092b3e1beef", - "symbol": "MOOBIFI", - "decimals": 18, - "name": "Staked BIFI", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xbeef8e0982874e0292e6c5751c5a4092b3e1beef.png", - "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0xd2a530170d71a9cfe1651fb468e2b98f7ed7456b": { - "address": "0xd2a530170d71a9cfe1651fb468e2b98f7ed7456b", - "symbol": "AUDF", - "decimals": 6, - "name": "Forte AUD", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xd2a530170d71a9cfe1651fb468e2b98f7ed7456b.png", - "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0x318dcb4f07c3e6ccecc12a252100fb3bf76eeb02": { - "address": "0x318dcb4f07c3e6ccecc12a252100fb3bf76eeb02", - "symbol": "APLDON", - "decimals": 18, - "name": "Applied Digital (Ondo Tokenized)", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x318dcb4f07c3e6ccecc12a252100fb3bf76eeb02.png", - "aggregators": ["CoinGecko", "Rubic", "Rango", "Ondo"], - "occurrences": 4, - "rwaData": { - "market": { - "nextOpen": "2026-05-18T20:01:00.000Z", - "nextClose": "2026-05-18T19:59:00.000Z" - }, - "nextPause": { - "start": null, - "end": null - }, - "ticker": "APLD", - "instrumentType": "stock" - } - }, - "0x0d1fa4e1e3719945899ef7b02840627df46af44a": { - "address": "0x0d1fa4e1e3719945899ef7b02840627df46af44a", - "symbol": "ASTSON", - "decimals": 18, - "name": "AST SpaceMobile (Ondo Tokenized)", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x0d1fa4e1e3719945899ef7b02840627df46af44a.png", - "aggregators": ["CoinGecko", "Rubic", "Rango", "Ondo"], - "occurrences": 4, - "rwaData": { - "market": { - "nextOpen": "2026-05-18T20:01:00.000Z", - "nextClose": "2026-05-18T19:59:00.000Z" - }, - "nextPause": { - "start": null, - "end": null - }, - "ticker": "ASTS", - "instrumentType": "stock" - } - }, - "0x70ec0f5b23404c0cd6f29ce88f4af00a0b0d895d": { - "address": "0x70ec0f5b23404c0cd6f29ce88f4af00a0b0d895d", - "symbol": "CAPRON", - "decimals": 18, - "name": "Capricor Therapeutics (Ondo Tokenized)", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x70ec0f5b23404c0cd6f29ce88f4af00a0b0d895d.png", - "aggregators": ["CoinGecko", "Rubic", "Rango", "Ondo"], - "occurrences": 4, - "rwaData": { - "market": { - "nextOpen": "2026-05-19T13:31:00.000Z", - "nextClose": "2026-05-18T19:59:00.000Z" - }, - "nextPause": { - "start": null, - "end": null - }, - "ticker": "CAPR", - "instrumentType": "stock" - } - }, - "0x2b7727076b9c9b1834a2f95b81f12eedd30db9f1": { - "address": "0x2b7727076b9c9b1834a2f95b81f12eedd30db9f1", - "symbol": "COHRON", - "decimals": 18, - "name": "Coherent (Ondo Tokenized)", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x2b7727076b9c9b1834a2f95b81f12eedd30db9f1.png", - "aggregators": ["CoinGecko", "Rubic", "Rango", "Ondo"], - "occurrences": 4, - "rwaData": { - "market": { - "nextOpen": "2026-05-18T20:01:00.000Z", - "nextClose": "2026-05-18T19:59:00.000Z" - }, - "nextPause": { - "start": null, - "end": null - }, - "ticker": "COHR", - "instrumentType": "stock" - } - }, - "0x32fb7d6e0cbeb9433772689aa4647828cc7cbba8": { - "address": "0x32fb7d6e0cbeb9433772689aa4647828cc7cbba8", - "symbol": "COVE", - "decimals": 18, - "name": "Cove DAO", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x32fb7d6e0cbeb9433772689aa4647828cc7cbba8.png", - "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0xdfddf7a69716124bc346ba556d4b9f9e74c4a8bc": { - "address": "0xdfddf7a69716124bc346ba556d4b9f9e74c4a8bc", - "symbol": "SCCN", - "decimals": 18, - "name": "Succession", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xdfddf7a69716124bc346ba556d4b9f9e74c4a8bc.png", - "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0x9b56f5ed5a94ae3266b7ff21953e6626f94008f1": { - "address": "0x9b56f5ed5a94ae3266b7ff21953e6626f94008f1", - "symbol": "ETNON", - "decimals": 18, - "name": "Eaton (Ondo Tokenized)", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x9b56f5ed5a94ae3266b7ff21953e6626f94008f1.png", - "aggregators": ["CoinGecko", "Rubic", "Rango", "Ondo"], - "occurrences": 4, - "rwaData": { - "market": { - "nextOpen": "2026-05-18T20:01:00.000Z", - "nextClose": "2026-05-18T19:59:00.000Z" - }, - "nextPause": { - "start": null, - "end": null - }, - "ticker": "ETN", - "instrumentType": "stock" - } - }, - "0xc4e6e80295154d3968519851f73f8dc1a227286f": { - "address": "0xc4e6e80295154d3968519851f73f8dc1a227286f", - "symbol": "ENLVON", - "decimals": 18, - "name": "Enlivex Therapeutics (Ondo Tokenized)", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xc4e6e80295154d3968519851f73f8dc1a227286f.png", - "aggregators": ["CoinGecko", "Rubic", "Rango", "Ondo"], - "occurrences": 4, - "rwaData": { - "market": { - "nextOpen": "2026-05-19T13:31:00.000Z", - "nextClose": "2026-05-18T19:59:00.000Z" - }, - "nextPause": { - "start": "2026-05-29T09:00:00.000Z", - "end": "2026-05-29T23:30:00.000Z" - }, - "ticker": "ENLV", - "instrumentType": "stock" - } - }, - "0xb0ed164f6e3c6a4153eeb43bf9674955a259ec45": { - "address": "0xb0ed164f6e3c6a4153eeb43bf9674955a259ec45", - "symbol": "ABE", - "decimals": 18, - "name": "Aboard", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xb0ed164f6e3c6a4153eeb43bf9674955a259ec45.png", - "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0x4f3b49ac895a29c0908c57538932967cdc8e3c80": { - "address": "0x4f3b49ac895a29c0908c57538932967cdc8e3c80", - "symbol": "ENPHON", - "decimals": 18, - "name": "Enphase Energy (Ondo Tokenized)", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x4f3b49ac895a29c0908c57538932967cdc8e3c80.png", - "aggregators": ["CoinGecko", "Rubic", "Rango", "Ondo"], - "occurrences": 4, - "rwaData": { - "market": { - "nextOpen": "2026-05-18T20:01:00.000Z", - "nextClose": "2026-05-18T19:59:00.000Z" - }, - "nextPause": { - "start": null, - "end": null - }, - "ticker": "ENPH", - "instrumentType": "stock" - } - }, - "0x185e5fa1b84f94d46ef2a33052ad39bd5f326fd8": { - "address": "0x185e5fa1b84f94d46ef2a33052ad39bd5f326fd8", - "symbol": "EXODON", - "decimals": 18, - "name": "Exodus Movement (Ondo Tokenized)", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x185e5fa1b84f94d46ef2a33052ad39bd5f326fd8.png", - "aggregators": ["CoinGecko", "Rubic", "Rango", "Ondo"], - "occurrences": 4, - "rwaData": { - "market": { - "nextOpen": "2026-05-19T13:31:00.000Z", - "nextClose": "2026-05-18T19:59:00.000Z" - }, - "nextPause": { - "start": null, - "end": null - }, - "ticker": "EXOD", - "instrumentType": "stock" - } - }, - "0x224b381cfae8ccaf2e4d32d827467c2331ce04be": { - "address": "0x224b381cfae8ccaf2e4d32d827467c2331ce04be", - "symbol": "FSOLON", - "decimals": 18, - "name": "Fidelity Solana Fund (Ondo Tokenized)", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x224b381cfae8ccaf2e4d32d827467c2331ce04be.png", - "aggregators": ["CoinGecko", "Rubic", "Rango", "Ondo"], - "occurrences": 4, - "rwaData": { - "market": { - "nextOpen": "2026-05-18T20:01:00.000Z", - "nextClose": "2026-05-18T19:59:00.000Z" - }, - "nextPause": { - "start": null, - "end": null - }, - "ticker": "FSOL", - "instrumentType": "stock" - } - }, - "0x42d6e274b8631e5289a8f853e8d1a7baeff3c8d1": { - "address": "0x42d6e274b8631e5289a8f853e8d1a7baeff3c8d1", - "symbol": "CIBRON", - "decimals": 18, - "name": "First Trust NASDAQ Cybersecurity ETF (Ondo Tokenized)", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x42d6e274b8631e5289a8f853e8d1a7baeff3c8d1.png", - "aggregators": ["CoinGecko", "Rubic", "Rango", "Ondo"], - "occurrences": 4, - "rwaData": { - "market": { - "nextOpen": "2026-05-19T00:05:00.000Z", - "nextClose": "2026-05-18T19:59:00.000Z" - }, - "nextPause": { - "start": null, - "end": null - }, - "ticker": "CIBR", - "instrumentType": "stock" - } - }, - "0x70b4082f4e3f9067db9a2aa7520c77719e8626ee": { - "address": "0x70b4082f4e3f9067db9a2aa7520c77719e8626ee", - "symbol": "FFOGON", - "decimals": 18, - "name": "Franklin Focused Growth ETF (Ondo Tokenized)", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x70b4082f4e3f9067db9a2aa7520c77719e8626ee.png", - "aggregators": ["CoinGecko", "Rubic", "Rango", "Ondo"], - "occurrences": 4, - "rwaData": { - "market": { - "nextOpen": "2026-05-19T13:31:00.000Z", - "nextClose": "2026-05-18T19:59:00.000Z" - }, - "nextPause": { - "start": null, - "end": null - }, - "ticker": "FFOG", - "instrumentType": "stock" - } - }, - "0x3261902514414a131202e792a5ef763db795e639": { - "address": "0x3261902514414a131202e792a5ef763db795e639", - "symbol": "REPX", - "decimals": 18, - "name": "RepoSwap", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x3261902514414a131202e792a5ef763db795e639.png", - "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0xf96d4b1e0a0b129e1471e88df6f1281b933bc474": { - "address": "0xf96d4b1e0a0b129e1471e88df6f1281b933bc474", - "symbol": "SPETH", - "decimals": 18, - "name": "Spectrum ETH", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xf96d4b1e0a0b129e1471e88df6f1281b933bc474.png", - "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0x37a2f8701856a78de92dbe35df2200c355eae090": { - "address": "0x37a2f8701856a78de92dbe35df2200c355eae090", - "symbol": "QNS", - "decimals": 18, - "name": "QuantoSwap", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x37a2f8701856a78de92dbe35df2200c355eae090.png", - "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0xc278041fdd8249fe4c1aad1193876857eea3d68c": { - "address": "0xc278041fdd8249fe4c1aad1193876857eea3d68c", - "symbol": "IDLETUSDYIELD", - "decimals": 18, - "name": "IdleTUSD Best Yield", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xc278041fdd8249fe4c1aad1193876857eea3d68c.png", - "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0xf52cdcd458bf455aed77751743180ec4a595fd3f": { - "address": "0xf52cdcd458bf455aed77751743180ec4a595fd3f", - "symbol": "IDLESUSDYIELD", - "decimals": 18, - "name": "IdleSUSD Yield", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xf52cdcd458bf455aed77751743180ec4a595fd3f.png", - "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0x4349929808e515936a68903f6085f5e2b143ff3d": { - "address": "0x4349929808e515936a68903f6085f5e2b143ff3d", - "symbol": "CAD", - "decimals": 18, - "name": "Caduceus Protocol", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x4349929808e515936a68903f6085f5e2b143ff3d.png", - "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0xd9b9f72d6f5cdec754243d7d3cefd5b4370af094": { - "address": "0xd9b9f72d6f5cdec754243d7d3cefd5b4370af094", - "symbol": "LGAS", - "decimals": 18, - "name": "Laser Gas", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xd9b9f72d6f5cdec754243d7d3cefd5b4370af094.png", - "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0x7d36f7d8e9220f021305b8f13414c87df688aa8b": { - "address": "0x7d36f7d8e9220f021305b8f13414c87df688aa8b", - "symbol": "SMP", - "decimals": 18, - "name": "Seamoon Protocol", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x7d36f7d8e9220f021305b8f13414c87df688aa8b.png", - "aggregators": ["CoinGecko", "Rubic", "Sonarwatch"], - "occurrences": 3 - }, - "0x5ea630e00d6ee438d3dea1556a110359acdc10a9": { - "address": "0x5ea630e00d6ee438d3dea1556a110359acdc10a9", - "symbol": "SDPENDLE", - "decimals": 18, - "name": "Stake DAO sdPENDLE", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x5ea630e00d6ee438d3dea1556a110359acdc10a9.png", - "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0x6d3c9269bd1bc9426798a752ecebbd749e5edaa8": { - "address": "0x6d3c9269bd1bc9426798a752ecebbd749e5edaa8", - "symbol": "LNEX", - "decimals": 18, - "name": "Lunex Network", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x6d3c9269bd1bc9426798a752ecebbd749e5edaa8.png", - "aggregators": ["CoinGecko", "Rubic", "Sonarwatch"], - "occurrences": 3 - }, - "0xc53d2e7321ab83b28af2360559aa303676a23f98": { - "address": "0xc53d2e7321ab83b28af2360559aa303676a23f98", - "symbol": "FLQLON", - "decimals": 18, - "name": "Franklin US Large Cap Multifactor Index ETF (Ondo Tokenized)", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xc53d2e7321ab83b28af2360559aa303676a23f98.png", - "aggregators": ["CoinGecko", "Rubic", "Rango", "Ondo"], - "occurrences": 4, - "rwaData": { - "market": { - "nextOpen": "2026-05-19T13:31:00.000Z", - "nextClose": "2026-05-18T19:59:00.000Z" - }, - "nextPause": { - "start": null, - "end": null - }, - "ticker": "FLQL", - "instrumentType": "stock" - } - }, - "0x6fba952443be1de22232c824eb8d976b426b3c38": { - "address": "0x6fba952443be1de22232c824eb8d976b426b3c38", - "symbol": "KOCHI", - "decimals": 9, - "name": "Kochi Ken ETH", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x6fba952443be1de22232c824eb8d976b426b3c38.png", - "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0x79eddec7f9648cf9953db39507efa9f772c83c6e": { - "address": "0x79eddec7f9648cf9953db39507efa9f772c83c6e", - "symbol": "MOKA", - "decimals": 18, - "name": "Mokens League", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x79eddec7f9648cf9953db39507efa9f772c83c6e.png", - "aggregators": ["CoinGecko", "Rubic", "Sonarwatch"], - "occurrences": 3 - }, - "0x2bb0c32101456f5960d4e994bac183fe0dc6c82c": { - "address": "0x2bb0c32101456f5960d4e994bac183fe0dc6c82c", - "symbol": "XFRXETH", - "decimals": 18, - "name": "Leveraged frxETH", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x2bb0c32101456f5960d4e994bac183fe0dc6c82c.png", - "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0xb90d347e10a085b591955cbd0603ac7866fcadc8": { - "address": "0xb90d347e10a085b591955cbd0603ac7866fcadc8", - "symbol": "XCVX", - "decimals": 18, - "name": "Leveraged CVX", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xb90d347e10a085b591955cbd0603ac7866fcadc8.png", - "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0x394d14d78850e516fa5eb88f843ef43196e136b0": { - "address": "0x394d14d78850e516fa5eb88f843ef43196e136b0", - "symbol": "DIGAU", - "decimals": 18, - "name": "Dignity Gold", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x394d14d78850e516fa5eb88f843ef43196e136b0.png", - "aggregators": ["CoinMarketCap", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0xe668e08a6f5792cef0e63e9d98524968fdb5882f": { - "address": "0xe668e08a6f5792cef0e63e9d98524968fdb5882f", - "symbol": "GLXYON", - "decimals": 18, - "name": "Galaxy Digital (Ondo Tokenized)", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xe668e08a6f5792cef0e63e9d98524968fdb5882f.png", - "aggregators": ["CoinGecko", "Rubic", "Rango", "Ondo"], - "occurrences": 4, - "rwaData": { - "market": { - "nextOpen": "2026-05-19T00:05:00.000Z", - "nextClose": "2026-05-18T19:59:00.000Z" - }, - "nextPause": { - "start": null, - "end": null - }, - "ticker": "GLXY", - "instrumentType": "stock" - } - }, - "0xa043fdc5a6e2e381e3532d5a97404b82fb7a0af8": { - "address": "0xa043fdc5a6e2e381e3532d5a97404b82fb7a0af8", - "symbol": "GEVON", - "decimals": 18, - "name": "GE Vernova (Ondo Tokenized)", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xa043fdc5a6e2e381e3532d5a97404b82fb7a0af8.png", - "aggregators": ["CoinGecko", "Rubic", "Rango", "Ondo"], - "occurrences": 4, - "rwaData": { - "market": { - "nextOpen": "2026-05-18T20:01:00.000Z", - "nextClose": "2026-05-18T19:59:00.000Z" - }, - "nextPause": { - "start": null, - "end": null - }, - "ticker": "GEV", - "instrumentType": "stock" - } - }, - "0xa14ea0e11121e6e951e87c66afe460a00bcd6a16": { - "address": "0xa14ea0e11121e6e951e87c66afe460a00bcd6a16", - "symbol": "IDLEDAISAFE", - "decimals": 18, - "name": "IdleDAI Risk Adjusted", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xa14ea0e11121e6e951e87c66afe460a00bcd6a16.png", - "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0x1aee5ec60fc79b669f11fe368fde789e267649e2": { - "address": "0x1aee5ec60fc79b669f11fe368fde789e267649e2", - "symbol": "INTBTC", - "decimals": 18, - "name": "Inception Restaked tBTC", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x1aee5ec60fc79b669f11fe368fde789e267649e2.png", - "aggregators": ["CoinGecko", "Rubic", "Sonarwatch"], - "occurrences": 3 - }, - "0xf21014b114bb976f890e15c19900ce9be5fb1e12": { - "address": "0xf21014b114bb976f890e15c19900ce9be5fb1e12", - "symbol": "INEIGEN", - "decimals": 18, - "name": "Inception Restaked EIGEN", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xf21014b114bb976f890e15c19900ce9be5fb1e12.png", - "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0x3fe7940616e5bc47b0775a0dccf6237893353bb4": { - "address": "0x3fe7940616e5bc47b0775a0dccf6237893353bb4", - "symbol": "IDLEDAIYIELD", - "decimals": 18, - "name": "IdleDAI Best Yield", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x3fe7940616e5bc47b0775a0dccf6237893353bb4.png", - "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0x2e7e487d84b5baba5878a9833fb394bc89633fd7": { - "address": "0x2e7e487d84b5baba5878a9833fb394bc89633fd7", - "symbol": "OMNIA", - "decimals": 18, - "name": "Omnia Protocol", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x2e7e487d84b5baba5878a9833fb394bc89633fd7.png", - "aggregators": ["CoinMarketCap", "Rubic", "Sonarwatch"], - "occurrences": 3 - }, - "0x74ab072c91bf33479f959ce70561e785fd7391fd": { - "address": "0x74ab072c91bf33479f959ce70561e785fd7391fd", - "symbol": "GBTC", - "decimals": 9, - "name": "GBTC6900", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x74ab072c91bf33479f959ce70561e785fd7391fd.png", - "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0xd85a68faa78b4431dce816c157b66fc9911b3612": { - "address": "0xd85a68faa78b4431dce816c157b66fc9911b3612", - "symbol": "INF", - "decimals": 18, - "name": "Infinaeon", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xd85a68faa78b4431dce816c157b66fc9911b3612.png", - "aggregators": ["CoinMarketCap", "Rubic", "Sonarwatch"], - "occurrences": 3 - }, - "0xf34842d05a1c888ca02769a633df37177415c2f8": { - "address": "0xf34842d05a1c888ca02769a633df37177415c2f8", - "symbol": "IDLEUSDTYIELD", - "decimals": 18, - "name": "IdleUSDT Yield", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xf34842d05a1c888ca02769a633df37177415c2f8.png", - "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0x18e1b6aa7ef866eba192f2817d43bae92d75c817": { - "address": "0x18e1b6aa7ef866eba192f2817d43bae92d75c817", - "symbol": "OPZ", - "decimals": 18, - "name": "OPZ", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x18e1b6aa7ef866eba192f2817d43bae92d75c817.png", - "aggregators": ["CoinGecko", "Rubic", "Sonarwatch"], - "occurrences": 3 - }, - "0x225c119ffaf1caddcfcdb493283edf4b816bf773": { - "address": "0x225c119ffaf1caddcfcdb493283edf4b816bf773", - "symbol": "USUALUSDT", - "decimals": 18, - "name": "MEV Capital Usual Boosted USDT", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x225c119ffaf1caddcfcdb493283edf4b816bf773.png", - "aggregators": ["CoinGecko", "Rubic", "Sonarwatch"], - "occurrences": 3 - }, - "0x64d5fea7d2d600918b76159285994d6ed218f264": { - "address": "0x64d5fea7d2d600918b76159285994d6ed218f264", - "symbol": "TAS", - "decimals": 18, - "name": "Tao Accounting System", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x64d5fea7d2d600918b76159285994d6ed218f264.png", - "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0x562e12e1e792643d168c1fa01c1b7198a0f83c9f": { - "address": "0x562e12e1e792643d168c1fa01c1b7198a0f83c9f", - "symbol": "BB", - "decimals": 18, - "name": "BookieBot", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x562e12e1e792643d168c1fa01c1b7198a0f83c9f.png", - "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0x8c81121b15197fa0eeaee1dc75533419dcfd3151": { - "address": "0x8c81121b15197fa0eeaee1dc75533419dcfd3151", - "symbol": "IDLEWBTCYIELD", - "decimals": 18, - "name": "IdleWBTC Best Yield", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x8c81121b15197fa0eeaee1dc75533419dcfd3151.png", - "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0x28fac5334c9f7262b3a3fe707e250e01053e07b5": { - "address": "0x28fac5334c9f7262b3a3fe707e250e01053e07b5", - "symbol": "IDLEUSDTSAFE", - "decimals": 18, - "name": "IdleUSDT Risk Adjusted", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x28fac5334c9f7262b3a3fe707e250e01053e07b5.png", - "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0xc0a14627d6a23f70c809777ced873238581c1032": { - "address": "0xc0a14627d6a23f70c809777ced873238581c1032", - "symbol": "MCUSD0", - "decimals": 18, - "name": "MEV Capital USD0 Morpho Vault", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xc0a14627d6a23f70c809777ced873238581c1032.png", - "aggregators": ["CoinGecko", "Rubic", "Sonarwatch"], - "occurrences": 3 - }, - "0xfbb4f63821e706daf801e440a5893be59094f5cc": { - "address": "0xfbb4f63821e706daf801e440a5893be59094f5cc", - "symbol": "FBB4", - "decimals": 18, - "name": "FBB4", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xfbb4f63821e706daf801e440a5893be59094f5cc.png", - "aggregators": ["CoinGecko", "Socket", "Rubic", "Rango"], - "occurrences": 4 - }, - "0xbfc5770631641719cd1cf809d8325b146aed19de": { - "address": "0xbfc5770631641719cd1cf809d8325b146aed19de", - "symbol": "NINSTO", - "decimals": 6, - "name": "Nest Institutional Vault", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xbfc5770631641719cd1cf809d8325b146aed19de.png", - "aggregators": ["CoinMarketCap", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0x9994e35db50125e0df82e4c2dde62496ce330999": { - "address": "0x9994e35db50125e0df82e4c2dde62496ce330999", - "symbol": "MORPHO", - "decimals": 18, - "name": "Legacy Morpho", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x9994e35db50125e0df82e4c2dde62496ce330999.png", - "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0xa5f78b2a0ab85429d2dfbf8b60abc70f4cec066c": { - "address": "0xa5f78b2a0ab85429d2dfbf8b60abc70f4cec066c", - "symbol": "NCREDIT", - "decimals": 6, - "name": "Nest Credit Vault", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xa5f78b2a0ab85429d2dfbf8b60abc70f4cec066c.png", - "aggregators": ["CoinGecko", "Rubic", "Sonarwatch"], - "occurrences": 3 - }, - "0x3361a73262199873b74d6835760a59b8817fa592": { - "address": "0x3361a73262199873b74d6835760a59b8817fa592", - "symbol": "TON", - "decimals": 18, - "name": "AT&T (Ondo Tokenized)", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x3361a73262199873b74d6835760a59b8817fa592.png", - "aggregators": ["CoinGecko", "Rubic", "Rango", "Ondo"], - "occurrences": 4, - "rwaData": { - "market": { - "nextOpen": "2026-05-18T20:01:00.000Z", - "nextClose": "2026-05-18T19:59:00.000Z" - }, - "nextPause": { - "start": null, - "end": null - }, - "ticker": "T", - "instrumentType": "stock" - } - }, - "0xe65cdb6479bac1e22340e4e755fae7e509ecd06c": { - "address": "0xe65cdb6479bac1e22340e4e755fae7e509ecd06c", - "symbol": "CAAVE", - "decimals": 8, - "name": "cAAVE", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xe65cdb6479bac1e22340e4e755fae7e509ecd06c.png", - "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0x697a79af2de4af9e9aa0d08905374556ad1353bb": { - "address": "0x697a79af2de4af9e9aa0d08905374556ad1353bb", - "symbol": "NINA", - "decimals": 18, - "name": "NinaPumps", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x697a79af2de4af9e9aa0d08905374556ad1353bb.png", - "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0x50253dc4a01c6408fab9646e804fcbfdb74e3e4c": { - "address": "0x50253dc4a01c6408fab9646e804fcbfdb74e3e4c", - "symbol": "INSFRAX", - "decimals": 18, - "name": "Inception Restaked sFRAX", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x50253dc4a01c6408fab9646e804fcbfdb74e3e4c.png", - "aggregators": ["CoinGecko", "Rubic", "Sonarwatch"], - "occurrences": 3 - }, - "0x74d1984a64f447371be4019920180b52a33adadd": { - "address": "0x74d1984a64f447371be4019920180b52a33adadd", - "symbol": "INSLISBNB", - "decimals": 18, - "name": "Inception Restaked slisBNB", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x74d1984a64f447371be4019920180b52a33adadd.png", - "aggregators": ["CoinGecko", "Rubic", "Sonarwatch"], - "occurrences": 3 - }, - "0x3d07c3161f355cb9e5b524bef8d113c96e0263ab": { - "address": "0x3d07c3161f355cb9e5b524bef8d113c96e0263ab", - "symbol": "COFON", - "decimals": 18, - "name": "Capital One (Ondo Tokenized)", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x3d07c3161f355cb9e5b524bef8d113c96e0263ab.png", - "aggregators": ["CoinGecko", "Rubic", "Rango", "Ondo"], - "occurrences": 4, - "rwaData": { - "market": { - "nextOpen": "2026-05-18T20:01:00.000Z", - "nextClose": "2026-05-18T19:59:00.000Z" - }, - "nextPause": { - "start": "2026-05-18T23:52:00.000Z", - "end": "2026-05-19T00:12:00.000Z" - }, - "ticker": "COF", - "instrumentType": "stock" - } - }, - "0xf719b02079e0faa5450392da2d3e11a1e5b0eadb": { - "address": "0xf719b02079e0faa5450392da2d3e11a1e5b0eadb", - "symbol": "CATON", - "decimals": 18, - "name": "Caterpillar (Ondo Tokenized)", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xf719b02079e0faa5450392da2d3e11a1e5b0eadb.png", - "aggregators": ["CoinGecko", "Rubic", "Rango", "Ondo"], - "occurrences": 4, - "rwaData": { - "market": { - "nextOpen": "2026-05-18T20:01:00.000Z", - "nextClose": "2026-05-18T19:59:00.000Z" - }, - "nextPause": { - "start": null, - "end": null - }, - "ticker": "CAT", - "instrumentType": "stock" - } - }, - "0x24e5bc45d5b6cef6f38989ac33df587a3fc850cf": { - "address": "0x24e5bc45d5b6cef6f38989ac33df587a3fc850cf", - "symbol": "CIFRON", - "decimals": 18, - "name": "Cipher Mining (Ondo Tokenized)", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x24e5bc45d5b6cef6f38989ac33df587a3fc850cf.png", - "aggregators": ["CoinGecko", "Rubic", "Rango", "Ondo"], - "occurrences": 4, - "rwaData": { - "market": { - "nextOpen": "2026-05-19T13:31:00.000Z", - "nextClose": "2026-05-18T19:59:00.000Z" - }, - "nextPause": { - "start": null, - "end": null - }, - "ticker": "CIFR", - "instrumentType": "stock" - } - }, - "0x36a0e44c73e5a6a7727817377c0127f320a9456e": { - "address": "0x36a0e44c73e5a6a7727817377c0127f320a9456e", - "symbol": "WMPC", - "decimals": 4, - "name": "Wrapped MPC", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x36a0e44c73e5a6a7727817377c0127f320a9456e.png", - "aggregators": ["CoinGecko", "Rubic", "Sonarwatch"], - "occurrences": 3 - }, - "0xc46e7ef70d7cf8c17863a6b0b9be2af6a4c41abe": { - "address": "0xc46e7ef70d7cf8c17863a6b0b9be2af6a4c41abe", - "symbol": "CON", - "decimals": 18, - "name": "Citigroup (Ondo Tokenized)", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xc46e7ef70d7cf8c17863a6b0b9be2af6a4c41abe.png", - "aggregators": ["CoinGecko", "Rubic", "Rango", "Ondo"], - "occurrences": 4, - "rwaData": { - "market": { - "nextOpen": "2026-05-18T20:01:00.000Z", - "nextClose": "2026-05-18T19:59:00.000Z" - }, - "nextPause": { - "start": null, - "end": null - }, - "ticker": "C", - "instrumentType": "stock" - } - }, - "0xd3bfd6e6187444170a1674c494e55171587b5641": { - "address": "0xd3bfd6e6187444170a1674c494e55171587b5641", - "symbol": "INELIXIR", - "decimals": 6, - "name": "Nest Elixir Vault LP", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xd3bfd6e6187444170a1674c494e55171587b5641.png", - "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0x80a2ae356fc9ef4305676f7a3e2ed04e12c33946": { - "address": "0x80a2ae356fc9ef4305676f7a3e2ed04e12c33946", - "symbol": "CYFI", - "decimals": 8, - "name": "cYFI", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x80a2ae356fc9ef4305676f7a3e2ed04e12c33946.png", - "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0x060505527c83e8bfeb9b4ff08248b82e688800f1": { - "address": "0x060505527c83e8bfeb9b4ff08248b82e688800f1", - "symbol": "CEGON", - "decimals": 18, - "name": "Constellation Energy (Ondo Tokenized)", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x060505527c83e8bfeb9b4ff08248b82e688800f1.png", - "aggregators": ["CoinGecko", "Rubic", "Rango", "Ondo"], - "occurrences": 4, - "rwaData": { - "market": { - "nextOpen": "2026-05-18T20:01:00.000Z", - "nextClose": "2026-05-18T19:59:00.000Z" - }, - "nextPause": { - "start": null, - "end": null - }, - "ticker": "CEG", - "instrumentType": "stock" - } - }, - "0xc2dbfe026f17e7bbc17a9e41f9b8d69531887d47": { - "address": "0xc2dbfe026f17e7bbc17a9e41f9b8d69531887d47", - "symbol": "FIGRON", - "decimals": 18, - "name": "Figure Technology Solutions (Ondo Tokenized)", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xc2dbfe026f17e7bbc17a9e41f9b8d69531887d47.png", - "aggregators": ["CoinGecko", "Rubic", "Rango", "Ondo"], - "occurrences": 4, - "rwaData": { - "market": { - "nextOpen": "2026-05-19T13:31:00.000Z", - "nextClose": "2026-05-18T19:59:00.000Z" - }, - "nextPause": { - "start": null, - "end": null - }, - "ticker": "FIGR", - "instrumentType": "stock" - } - }, - "0xb52b090837a035f93a84487e5a7d3719c32aa8a9": { - "address": "0xb52b090837a035f93a84487e5a7d3719c32aa8a9", - "symbol": "NPAYFI", - "decimals": 6, - "name": "Nest PayFi Vault", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xb52b090837a035f93a84487e5a7d3719c32aa8a9.png", - "aggregators": ["CoinGecko", "Rubic", "Sonarwatch"], - "occurrences": 3 - }, - "0xbeef0075e03a5ce0d84d4accf3481363e0584f5c": { - "address": "0xbeef0075e03a5ce0d84d4accf3481363e0584f5c", - "symbol": "STEAKM", - "decimals": 18, - "name": "Steakhouse M Morpho Vault", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xbeef0075e03a5ce0d84d4accf3481363e0584f5c.png", - "aggregators": ["CoinGecko", "Rubic", "Sonarwatch"], - "occurrences": 3 - }, - "0xbeef07e929f84466a591de130e4154667214f491": { - "address": "0xbeef07e929f84466a591de130e4154667214f491", - "symbol": "STEAKEURCV", - "decimals": 18, - "name": "Steakhouse EURCV Morpho Vault", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xbeef07e929f84466a591de130e4154667214f491.png", - "aggregators": ["CoinGecko", "Rubic", "Sonarwatch"], - "occurrences": 3 - }, - "0xbeefd1c0c6c1f7c94dc6b989dba2e983a47a26a8": { - "address": "0xbeefd1c0c6c1f7c94dc6b989dba2e983a47a26a8", - "symbol": "STEAKUSDL", - "decimals": 18, - "name": "Steakhouse USDL Morpho Vault", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xbeefd1c0c6c1f7c94dc6b989dba2e983a47a26a8.png", - "aggregators": ["CoinGecko", "Rubic", "Sonarwatch"], - "occurrences": 3 - }, - "0x094b360ae512a65584d4f5be33d68b2e08677b89": { - "address": "0x094b360ae512a65584d4f5be33d68b2e08677b89", - "symbol": "USUAL", - "decimals": 18, - "name": "USUAL Star", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x094b360ae512a65584d4f5be33d68b2e08677b89.png", - "aggregators": ["CoinGecko", "Rubic", "Sonarwatch"], - "occurrences": 3 - }, - "0x0bfc9d54fc184518a81162f8fb99c2eaca081202": { - "address": "0x0bfc9d54fc184518a81162f8fb99c2eaca081202", - "symbol": "WAETHWETH", - "decimals": 18, - "name": "WAETHWETH", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x0bfc9d54fc184518a81162f8fb99c2eaca081202.png", - "aggregators": ["CoinGecko", "1inch", "Rubic", "Rango"], - "occurrences": 4 - }, - "0xf72936fa8afc808c99eb76e620a98ddc6a7a53d1": { - "address": "0xf72936fa8afc808c99eb76e620a98ddc6a7a53d1", - "symbol": "FON", - "decimals": 18, - "name": "Ford Motor (Ondo Tokenized)", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xf72936fa8afc808c99eb76e620a98ddc6a7a53d1.png", - "aggregators": ["CoinGecko", "Rubic", "Rango", "Ondo"], - "occurrences": 4, - "rwaData": { - "market": { - "nextOpen": "2026-05-18T20:01:00.000Z", - "nextClose": "2026-05-18T19:59:00.000Z" - }, - "nextPause": { - "start": null, - "end": null - }, - "ticker": "F", - "instrumentType": "stock" - } - }, - "0x8cefd49b703de9c0486d9bf6cb559f0895268ee8": { - "address": "0x8cefd49b703de9c0486d9bf6cb559f0895268ee8", - "symbol": "CLOAON", - "decimals": 18, - "name": "iShares AAA CLO Active ETF (Ondo Tokenized)", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x8cefd49b703de9c0486d9bf6cb559f0895268ee8.png", - "aggregators": ["CoinGecko", "Rubic", "Rango", "Ondo"], - "occurrences": 4, - "rwaData": { - "market": { - "nextOpen": "2026-05-19T13:31:00.000Z", - "nextClose": "2026-05-18T19:59:00.000Z" - }, - "nextPause": { - "start": null, - "end": null - }, - "ticker": "CLOA", - "instrumentType": "stock" - } - }, - "0x9471d30d78a3c9f076ce206d14867a8d8be1efde": { - "address": "0x9471d30d78a3c9f076ce206d14867a8d8be1efde", - "symbol": "ZNX", - "decimals": 6, - "name": "ZENEX", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x9471d30d78a3c9f076ce206d14867a8d8be1efde.png", - "aggregators": ["CoinMarketCap", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0x9f2e3eb0160117c56b07652fe66a08a48b5bd7b5": { - "address": "0x9f2e3eb0160117c56b07652fe66a08a48b5bd7b5", - "symbol": "SOFION", - "decimals": 18, - "name": "SoFi Technologies (Ondo Tokenized)", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x9f2e3eb0160117c56b07652fe66a08a48b5bd7b5.png", - "aggregators": ["CoinGecko", "Rubic", "Rango", "Ondo"], - "occurrences": 4, - "rwaData": { - "market": { - "nextOpen": "2026-05-18T20:01:00.000Z", - "nextClose": "2026-05-18T19:59:00.000Z" - }, - "nextPause": { - "start": null, - "end": null - }, - "ticker": "SOFI", - "instrumentType": "stock" - } - }, - "0x8bb97a618211695f5a6a889fac3546d1a573ea77": { - "address": "0x8bb97a618211695f5a6a889fac3546d1a573ea77", - "symbol": "NBTC", - "decimals": 8, - "name": "NexusBTC", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x8bb97a618211695f5a6a889fac3546d1a573ea77.png", - "aggregators": ["CoinGecko", "Rubic", "Sonarwatch"], - "occurrences": 3 - }, - "0x3af5ba94c29a8407785f5f6d90ef5d69a8eb2436": { - "address": "0x3af5ba94c29a8407785f5f6d90ef5d69a8eb2436", - "symbol": "UWBTC", - "decimals": 8, - "name": "Unagii Wrapped Bitcoin", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x3af5ba94c29a8407785f5f6d90ef5d69a8eb2436.png", - "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0xbc5991ccd8caceba01edc44c2bb9832712c29cab": { - "address": "0xbc5991ccd8caceba01edc44c2bb9832712c29cab", - "symbol": "UUSDC", - "decimals": 6, - "name": "Unagii USD Coin", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xbc5991ccd8caceba01edc44c2bb9832712c29cab.png", - "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0x6b4bcfeccf80ab79eae40475af34cd986e583090": { - "address": "0x6b4bcfeccf80ab79eae40475af34cd986e583090", - "symbol": "UOMI", - "decimals": 18, - "name": "UOMI", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x6b4bcfeccf80ab79eae40475af34cd986e583090.png", - "aggregators": ["CoinGecko", "Socket", "Rubic"], - "occurrences": 3 - }, - "0x99aa107e55250a9fe52bb4b5541a59239eb6d974": { - "address": "0x99aa107e55250a9fe52bb4b5541a59239eb6d974", - "symbol": "SOON", - "decimals": 18, - "name": "Southern (Ondo Tokenized)", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x99aa107e55250a9fe52bb4b5541a59239eb6d974.png", - "aggregators": ["CoinGecko", "Rubic", "Rango", "Ondo"], - "occurrences": 4, - "rwaData": { - "market": { - "nextOpen": "2026-05-19T13:31:00.000Z", - "nextClose": "2026-05-18T19:59:00.000Z" - }, - "nextPause": { - "start": "2026-05-17T23:52:00.000Z", - "end": "2026-05-18T13:40:00.000Z" - }, - "ticker": "SO", - "instrumentType": "stock" - } - }, - "0xdeb3c23f93349229823a006657cfe1a6552b6340": { - "address": "0xdeb3c23f93349229823a006657cfe1a6552b6340", - "symbol": "TMUSON", - "decimals": 18, - "name": "T-Mobile US (Ondo Tokenized)", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xdeb3c23f93349229823a006657cfe1a6552b6340.png", - "aggregators": ["CoinGecko", "Rubic", "Rango", "Ondo"], - "occurrences": 4, - "rwaData": { - "market": { - "nextOpen": "2026-05-18T20:01:00.000Z", - "nextClose": "2026-05-18T19:59:00.000Z" - }, - "nextPause": { - "start": "2026-05-28T23:52:00.000Z", - "end": "2026-05-29T08:10:00.000Z" - }, - "ticker": "TMUS", - "instrumentType": "stock" - } - }, - "0xc80c91bc6215e1333ea98314b8671d6e26c58470": { - "address": "0xc80c91bc6215e1333ea98314b8671d6e26c58470", - "symbol": "TLNON", - "decimals": 18, - "name": "Talen Energy (Ondo Tokenized)", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xc80c91bc6215e1333ea98314b8671d6e26c58470.png", - "aggregators": ["CoinGecko", "Rubic", "Rango", "Ondo"], - "occurrences": 4, - "rwaData": { - "market": { - "nextOpen": "2026-05-19T13:31:00.000Z", - "nextClose": "2026-05-18T19:59:00.000Z" - }, - "nextPause": { - "start": null, - "end": null - }, - "ticker": "TLN", - "instrumentType": "stock" - } - }, - "0x60808f2a0d035e16f57e9043842bd1bfbda24fa2": { - "address": "0x60808f2a0d035e16f57e9043842bd1bfbda24fa2", - "symbol": "TMOON", - "decimals": 18, - "name": "Thermo Fisher Scientific (Ondo Tokenized)", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x60808f2a0d035e16f57e9043842bd1bfbda24fa2.png", - "aggregators": ["CoinGecko", "Rubic", "Rango", "Ondo"], - "occurrences": 4, - "rwaData": { - "market": { - "nextOpen": "2026-05-18T20:01:00.000Z", - "nextClose": "2026-05-18T19:59:00.000Z" - }, - "nextPause": { - "start": null, - "end": null - }, - "ticker": "TMO", - "instrumentType": "stock" - } - }, - "0xfb19075d77a0f111796fb259819830f4780f1429": { - "address": "0xfb19075d77a0f111796fb259819830f4780f1429", - "symbol": "FB", - "decimals": 6, - "name": "Fenerbah e", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xfb19075d77a0f111796fb259819830f4780f1429.png", - "aggregators": ["CoinMarketCap", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0x6247c86b016bc4d9ae141849c0a9eb38c004b742": { - "address": "0x6247c86b016bc4d9ae141849c0a9eb38c004b742", - "symbol": "HTL", - "decimals": 18, - "name": "Hotelium", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x6247c86b016bc4d9ae141849c0a9eb38c004b742.png", - "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0x398f7f759380f3d309b9fc0e6cb3d36e0d67818d": { - "address": "0x398f7f759380f3d309b9fc0e6cb3d36e0d67818d", - "symbol": "TCOMON", - "decimals": 18, - "name": "Trip.com Group (Ondo Tokenized)", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x398f7f759380f3d309b9fc0e6cb3d36e0d67818d.png", - "aggregators": ["CoinGecko", "Rubic", "Rango", "Ondo"], - "occurrences": 4, - "rwaData": { - "market": { - "nextOpen": "2026-05-18T20:01:00.000Z", - "nextClose": "2026-05-18T19:59:00.000Z" - }, - "nextPause": { - "start": "2026-05-18T09:00:00.000Z", - "end": "2026-05-18T23:30:00.000Z" - }, - "ticker": "TCOM", - "instrumentType": "stock" - } - }, - "0x47e5c76f155083f1aee39578311a2a5faa938a82": { - "address": "0x47e5c76f155083f1aee39578311a2a5faa938a82", - "symbol": "TNQ", - "decimals": 6, - "name": "TNQ", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x47e5c76f155083f1aee39578311a2a5faa938a82.png", - "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0x9a1741e151233a82cf69209a2f1bc7442b1fb29c": { - "address": "0x9a1741e151233a82cf69209a2f1bc7442b1fb29c", - "symbol": "DGI", - "decimals": 18, - "name": "DeFi Growth Index", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x9a1741e151233a82cf69209a2f1bc7442b1fb29c.png", - "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0xe8b09e8175aecb35a171fa059647434fe47f114c": { - "address": "0xe8b09e8175aecb35a171fa059647434fe47f114c", - "symbol": "CLOION", - "decimals": 18, - "name": "VanEck CLO ETF (Ondo Tokenized)", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xe8b09e8175aecb35a171fa059647434fe47f114c.png", - "aggregators": ["CoinGecko", "Rubic", "Rango", "Ondo"], - "occurrences": 4, - "rwaData": { - "market": { - "nextOpen": "2026-05-19T13:31:00.000Z", - "nextClose": "2026-05-18T19:59:00.000Z" - }, - "nextPause": { - "start": null, - "end": null - }, - "ticker": "CLOI", - "instrumentType": "stock" - } - }, - "0xc014186cf1ba36032aaec7f96088f09eb3934347": { - "address": "0xc014186cf1ba36032aaec7f96088f09eb3934347", - "symbol": "WCX", - "decimals": 18, - "name": "WeCoOwn", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xc014186cf1ba36032aaec7f96088f09eb3934347.png", - "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0x0341d2c2ce65b62af8887e905245b8cfea2a3b97": { - "address": "0x0341d2c2ce65b62af8887e905245b8cfea2a3b97", - "symbol": "YAYAGETH", - "decimals": 18, - "name": "Yay Kelp DAO s Airdrop Gain ETH", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x0341d2c2ce65b62af8887e905245b8cfea2a3b97.png", - "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0xc19b6a4ac7c7cc24459f08984bbd09664af17bd1": { - "address": "0xc19b6a4ac7c7cc24459f08984bbd09664af17bd1", - "symbol": "SENSO", - "decimals": 0, - "name": "SENSO", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xc19b6a4ac7c7cc24459f08984bbd09664af17bd1.png", - "aggregators": ["CoinMarketCap", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0xd3dce716f3ef535c5ff8d041c1a41c3bd89b97ae": { - "address": "0xd3dce716f3ef535c5ff8d041c1a41c3bd89b97ae", - "symbol": "SCUSD", - "decimals": 6, - "name": "Rings scUSD", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xd3dce716f3ef535c5ff8d041c1a41c3bd89b97ae.png", - "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0x075b1bb99792c9e1041ba13afef80c91a1e70fb3": { - "address": "0x075b1bb99792c9e1041ba13afef80c91a1e70fb3", - "symbol": "CRVRENWSBTC", - "decimals": 18, - "name": "Curve fi renBTC wBTC sBTC", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x075b1bb99792c9e1041ba13afef80c91a1e70fb3.png", - "aggregators": ["CoinMarketCap", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0x83f4389ccce1cc044dd7441add33c4f28b967434": { - "address": "0x83f4389ccce1cc044dd7441add33c4f28b967434", - "symbol": "DRX", - "decimals": 18, - "name": "DRX Token", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x83f4389ccce1cc044dd7441add33c4f28b967434.png", - "aggregators": ["Metamask", "Rubic", "Sonarwatch"], - "occurrences": 3 - }, - "0x4527a3b4a8a150403090a99b87effc96f2195047": { - "address": "0x4527a3b4a8a150403090a99b87effc96f2195047", - "symbol": "P2PS", - "decimals": 8, - "name": "P2P solutions foundation", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x4527a3b4a8a150403090a99b87effc96f2195047.png", - "aggregators": ["CoinMarketCap", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0xa877d5bb0274dccba8556154a30e1ca4021a275f": { - "address": "0xa877d5bb0274dccba8556154a30e1ca4021a275f", - "symbol": "KPK_EURC_YIELDV2", - "decimals": 18, - "name": "kpk EURC Yield V2", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xa877d5bb0274dccba8556154a30e1ca4021a275f.png", - "aggregators": ["CoinGecko", "LiFi", "Rubic"], - "occurrences": 3 - }, - "0xa6345ffadfa23dfc9014bce72ff2fa8712e54231": { - "address": "0xa6345ffadfa23dfc9014bce72ff2fa8712e54231", - "symbol": "KEK", - "decimals": 9, - "name": "Pepe Prophet", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xa6345ffadfa23dfc9014bce72ff2fa8712e54231.png", - "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0x2105465ab589b74747b01afdaf606d058fb082be": { - "address": "0x2105465ab589b74747b01afdaf606d058fb082be", - "symbol": "HIXOKDKEKJCJDKSICND", - "decimals": 18, - "name": "DEV SMASHED HIS KEYBOARD", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x2105465ab589b74747b01afdaf606d058fb082be.png", - "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0xf028adee51533b1b47beaa890feb54a457f51e89": { - "address": "0xf028adee51533b1b47beaa890feb54a457f51e89", - "symbol": "BMT", - "decimals": 18, - "name": "BMCHAIN", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xf028adee51533b1b47beaa890feb54a457f51e89.png", - "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0x96cc63eef1f63cde9acd69061bfb7606887f26d8": { - "address": "0x96cc63eef1f63cde9acd69061bfb7606887f26d8", - "symbol": "BVR", - "decimals": 18, - "name": "Basketballverse", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x96cc63eef1f63cde9acd69061bfb7606887f26d8.png", - "aggregators": ["CoinGecko", "Rubic", "Sonarwatch"], - "occurrences": 3 - }, - "0x42726d074bba68ccc15200442b72afa2d495a783": { - "address": "0x42726d074bba68ccc15200442b72afa2d495a783", - "symbol": "ISIKC", - "decimals": 4, - "name": "Isiklar Coin", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x42726d074bba68ccc15200442b72afa2d495a783.png", - "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0xccf4429db6322d5c611ee964527d42e5d685dd6a": { - "address": "0xccf4429db6322d5c611ee964527d42e5d685dd6a", - "symbol": "CWBTC", - "decimals": 8, - "name": "cWBTC", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xccf4429db6322d5c611ee964527d42e5d685dd6a.png", - "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0xe86142af1321eaac4270422081c1eda31eecff0c": { - "address": "0xe86142af1321eaac4270422081c1eda31eecff0c", - "symbol": "YAYSTONE", - "decimals": 18, - "name": "Yay StakeStone Ether", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xe86142af1321eaac4270422081c1eda31eecff0c.png", - "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0xfbcb83037d770b28f758530022897362521b6141": { - "address": "0xfbcb83037d770b28f758530022897362521b6141", - "symbol": "BYB", - "decimals": 9, - "name": "BiorBank", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xfbcb83037d770b28f758530022897362521b6141.png", - "aggregators": ["CoinMarketCap", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0x19640000000ba88d36206beb10d0e86011c8d08c": { - "address": "0x19640000000ba88d36206beb10d0e86011c8d08c", - "symbol": "RALLY", - "decimals": 18, - "name": "Rally", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x19640000000ba88d36206beb10d0e86011c8d08c.png", - "aggregators": ["CoinMarketCap", "Socket", "Rubic", "Rango"], - "occurrences": 4 - }, - "0x34635280737b5bfe6c7dc2fc3065d60d66e78185": { - "address": "0x34635280737b5bfe6c7dc2fc3065d60d66e78185", - "symbol": "CVXPRISMA", - "decimals": 18, - "name": "Convex Prisma", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x34635280737b5bfe6c7dc2fc3065d60d66e78185.png", - "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0xa29c9a740de8194e4016747e9a04a84946ada0a5": { - "address": "0xa29c9a740de8194e4016747e9a04a84946ada0a5", - "symbol": "NUMI", - "decimals": 18, - "name": "NUMINE Token", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xa29c9a740de8194e4016747e9a04a84946ada0a5.png", - "aggregators": ["CoinMarketCap", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0xc214a0b73ce4c30594b4173219e885691254801b": { - "address": "0xc214a0b73ce4c30594b4173219e885691254801b", - "symbol": "TOTO", - "decimals": 9, - "name": "Tiamonds", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xc214a0b73ce4c30594b4173219e885691254801b.png", - "aggregators": ["CoinMarketCap", "Rubic", "Sonarwatch"], - "occurrences": 3 - }, - "0x26827f7f51769ea21f94ba98ba64f5d0dc8988f9": { - "address": "0x26827f7f51769ea21f94ba98ba64f5d0dc8988f9", - "symbol": "FAME", - "decimals": 18, - "name": "FAME Rumble Kong League", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x26827f7f51769ea21f94ba98ba64f5d0dc8988f9.png", - "aggregators": ["CoinMarketCap", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0xa5cdea03b11042fc10b52af9eca48bb17a2107d2": { - "address": "0xa5cdea03b11042fc10b52af9eca48bb17a2107d2", - "symbol": "MVRWA", - "decimals": 18, - "name": "RWA Index", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xa5cdea03b11042fc10b52af9eca48bb17a2107d2.png", - "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0xbbaec992fc2d637151daf40451f160bf85f3c8c1": { - "address": "0xbbaec992fc2d637151daf40451f160bf85f3c8c1", - "symbol": "USDM", - "decimals": 6, - "name": "USD Mapped Token", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xbbaec992fc2d637151daf40451f160bf85f3c8c1.png", - "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0x53be7be0ce7f92bcbd2138305735160fb799be4f": { - "address": "0x53be7be0ce7f92bcbd2138305735160fb799be4f", - "symbol": "NTMPI", - "decimals": 6, - "name": "Neutaro", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x53be7be0ce7f92bcbd2138305735160fb799be4f.png", - "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0xe4880249745eac5f1ed9d8f7df844792d560e750": { - "address": "0xe4880249745eac5f1ed9d8f7df844792d560e750", - "symbol": "USTBL", - "decimals": 5, - "name": "Spiko US T Bills Money Market Fund", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xe4880249745eac5f1ed9d8f7df844792d560e750.png", - "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0xb10cb07ca2cdac77fbb5707f6690301f9d036f45": { - "address": "0xb10cb07ca2cdac77fbb5707f6690301f9d036f45", - "symbol": "WIN", - "decimals": 8, - "name": "WIN", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xb10cb07ca2cdac77fbb5707f6690301f9d036f45.png", - "aggregators": ["CoinMarketCap", "Socket", "Rubic", "Rango"], - "occurrences": 4 - }, - "0x85b78aca6deae198fbf201c82daf6ca21942acc6": { - "address": "0x85b78aca6deae198fbf201c82daf6ca21942acc6", - "symbol": "ARM-WETH-STETH", - "decimals": 18, - "name": "Lido ARM", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x85b78aca6deae198fbf201c82daf6ca21942acc6.png", - "aggregators": ["CoinGecko", "LiFi", "Rubic", "Rango"], - "occurrences": 4 - }, - "0x671b710a006040cd82a8070abd497a7215ce6f67": { - "address": "0x671b710a006040cd82a8070abd497a7215ce6f67", - "symbol": "NTH", - "decimals": 18, - "name": "NTH", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x671b710a006040cd82a8070abd497a7215ce6f67.png", - "aggregators": ["CoinGecko", "LiFi", "Rubic"], - "occurrences": 3 - }, - "0x05be1d4c307c19450a6fd7ce7307ce72a3829a60": { - "address": "0x05be1d4c307c19450a6fd7ce7307ce72a3829a60", - "symbol": "IMF", - "decimals": 18, - "name": "International Meme Fund", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x05be1d4c307c19450a6fd7ce7307ce72a3829a60.png", - "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0x00f5b16c8d28e20dac8674fc96b232b72c6c6cfa": { - "address": "0x00f5b16c8d28e20dac8674fc96b232b72c6c6cfa", - "symbol": "MARVIN", - "decimals": 18, - "name": "Marvin The Robot", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x00f5b16c8d28e20dac8674fc96b232b72c6c6cfa.png", - "aggregators": ["CoinGecko", "Socket", "Rubic"], - "occurrences": 3 - }, - "0x81eb954936a7062d1758fc0e6e3b88d42d9c361c": { - "address": "0x81eb954936a7062d1758fc0e6e3b88d42d9c361c", - "symbol": "DGRWON", - "decimals": 18, - "name": "WisdomTree US Quality Dividend Growth Fund (Ondo Tokenized)", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x81eb954936a7062d1758fc0e6e3b88d42d9c361c.png", - "aggregators": ["CoinGecko", "Rubic", "Rango", "Ondo"], - "occurrences": 4, - "rwaData": { - "market": { - "nextOpen": "2026-05-19T13:31:00.000Z", - "nextClose": "2026-05-18T19:59:00.000Z" - }, - "nextPause": { - "start": null, - "end": null - }, - "ticker": "DGRW", - "instrumentType": "stock" - } - }, - "0x9af595c8fc201e82db65faef71d51365d7f11b5f": { - "address": "0x9af595c8fc201e82db65faef71d51365d7f11b5f", - "symbol": "CAPTAIN", - "decimals": 9, - "name": "Captain Ethereum", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x9af595c8fc201e82db65faef71d51365d7f11b5f.png", - "aggregators": ["CoinGecko", "Socket", "Rubic", "Rango"], - "occurrences": 4 - }, - "0x69d29f1b0cc37d8d3b61583c99ad0ab926142069": { - "address": "0x69d29f1b0cc37d8d3b61583c99ad0ab926142069", - "symbol": "ƎԀƎԀ", - "decimals": 9, - "name": "Pepe Inverted", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x69d29f1b0cc37d8d3b61583c99ad0ab926142069.png", - "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0x5dd8bfa6c5c68d05d25ef6143e05c11e26c4cdb7": { - "address": "0x5dd8bfa6c5c68d05d25ef6143e05c11e26c4cdb7", - "symbol": "YOUSD EDGE", - "decimals": 6, - "name": "yoUSD Edge", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x5dd8bfa6c5c68d05d25ef6143e05c11e26c4cdb7.png", - "aggregators": ["CoinGecko", "LiFi", "Rubic"], - "occurrences": 3 - }, - "0x792905a8b7c0a22d56e78e849f95c162018a4e2d": { - "address": "0x792905a8b7c0a22d56e78e849f95c162018a4e2d", - "symbol": "RENTA", - "decimals": 18, - "name": "Renta Network", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x792905a8b7c0a22d56e78e849f95c162018a4e2d.png", - "aggregators": ["CoinMarketCap", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0x1c95519d3fc922fc04fcf5d099be4a1ed8b15240": { - "address": "0x1c95519d3fc922fc04fcf5d099be4a1ed8b15240", - "symbol": "GROK", - "decimals": 9, - "name": "My life as Grok", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x1c95519d3fc922fc04fcf5d099be4a1ed8b15240.png", - "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0x7c7378143a9c8839e0502e2178f058f46c6ea504": { - "address": "0x7c7378143a9c8839e0502e2178f058f46c6ea504", - "symbol": "ABBVON", - "decimals": 18, - "name": "AbbVie (Ondo Tokenized)", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x7c7378143a9c8839e0502e2178f058f46c6ea504.png", - "aggregators": ["CoinGecko", "Rubic", "Rango", "Ondo"], - "occurrences": 4, - "rwaData": { - "market": { - "nextOpen": "2026-05-18T20:01:00.000Z", - "nextClose": "2026-05-18T19:59:00.000Z" - }, - "nextPause": { - "start": null, - "end": null - }, - "ticker": "ABBV", - "instrumentType": "stock" - } - }, - "0x0ce36d199bd6851788e03392568849394cbde722": { - "address": "0x0ce36d199bd6851788e03392568849394cbde722", - "symbol": "PALLON", - "decimals": 18, - "name": "abrdn Physical Palladium Shares ETF (Ondo Tokenized)", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x0ce36d199bd6851788e03392568849394cbde722.png", - "aggregators": ["CoinGecko", "Rubic", "Rango", "Ondo"], - "occurrences": 4, - "rwaData": { - "market": { - "nextOpen": "2026-05-18T20:01:00.000Z", - "nextClose": "2026-05-18T19:59:00.000Z" - }, - "nextPause": { - "start": "2026-05-17T23:50:00.000Z", - "end": "2026-05-18T17:00:00.000Z" - }, - "ticker": "PALL", - "instrumentType": "stock" - } - }, - "0x592643a667633bca51cb2387c98b6de6ce549a45": { - "address": "0x592643a667633bca51cb2387c98b6de6ce549a45", - "symbol": "AMCON", - "decimals": 18, - "name": "AMC Entertainment (Ondo Tokenized)", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x592643a667633bca51cb2387c98b6de6ce549a45.png", - "aggregators": ["CoinGecko", "Rubic", "Rango", "Ondo"], - "occurrences": 4, - "rwaData": { - "market": { - "nextOpen": "2026-05-19T13:31:00.000Z", - "nextClose": "2026-05-18T19:59:00.000Z" - }, - "nextPause": { - "start": null, - "end": null - }, - "ticker": "AMC", - "instrumentType": "stock" - } - }, - "0x1c5fa55eade69ae98571059332520f73733c2d82": { - "address": "0x1c5fa55eade69ae98571059332520f73733c2d82", - "symbol": "AMGNON", - "decimals": 18, - "name": "Amgen (Ondo Tokenized)", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x1c5fa55eade69ae98571059332520f73733c2d82.png", - "aggregators": ["CoinGecko", "Rubic", "Rango", "Ondo"], - "occurrences": 4, - "rwaData": { - "market": { - "nextOpen": "2026-05-18T20:01:00.000Z", - "nextClose": "2026-05-18T19:59:00.000Z" - }, - "nextPause": { - "start": null, - "end": null - }, - "ticker": "AMGN", - "instrumentType": "stock" - } - }, - "0x2ddc2391cc89e3e716a938f089ae755174cfdf1f": { - "address": "0x2ddc2391cc89e3e716a938f089ae755174cfdf1f", - "symbol": "ADION", - "decimals": 18, - "name": "Analog Devices (Ondo Tokenized)", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x2ddc2391cc89e3e716a938f089ae755174cfdf1f.png", - "aggregators": ["CoinGecko", "Rubic", "Rango", "Ondo"], - "occurrences": 4, - "rwaData": { - "market": { - "nextOpen": "2026-05-18T20:01:00.000Z", - "nextClose": "2026-05-18T19:59:00.000Z" - }, - "nextPause": { - "start": "2026-05-20T09:00:00.000Z", - "end": "2026-05-20T13:31:00.000Z" - }, - "ticker": "ADI", - "instrumentType": "stock" - } - }, - "0x9cfa08002d606e638fe91941be725e1b970b84a6": { - "address": "0x9cfa08002d606e638fe91941be725e1b970b84a6", - "symbol": "ACHRON", - "decimals": 18, - "name": "Archer Aviation (Ondo Tokenized)", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x9cfa08002d606e638fe91941be725e1b970b84a6.png", - "aggregators": ["CoinGecko", "Rubic", "Rango", "Ondo"], - "occurrences": 4, - "rwaData": { - "market": { - "nextOpen": "2026-05-18T20:01:00.000Z", - "nextClose": "2026-05-18T19:59:00.000Z" - }, - "nextPause": { - "start": null, - "end": null - }, - "ticker": "ACHR", - "instrumentType": "stock" - } - }, - "0x8ac6ad49b3344024834f373f3ca491f22ceb952e": { - "address": "0x8ac6ad49b3344024834f373f3ca491f22ceb952e", - "symbol": "BTGON", - "decimals": 18, - "name": "B2Gold (Ondo Tokenized)", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x8ac6ad49b3344024834f373f3ca491f22ceb952e.png", - "aggregators": ["CoinGecko", "Rubic", "Rango", "Ondo"], - "occurrences": 4, - "rwaData": { - "market": { - "nextOpen": "2026-05-19T13:31:00.000Z", - "nextClose": "2026-05-18T19:59:00.000Z" - }, - "nextPause": { - "start": "2026-06-09T23:52:00.000Z", - "end": "2026-06-10T13:40:00.000Z" - }, - "ticker": "BTG", - "instrumentType": "stock" - } - }, - "0x20e113e9235df6a2a9bfc6f244c2ccc380c8f546": { - "address": "0x20e113e9235df6a2a9bfc6f244c2ccc380c8f546", - "symbol": "ANETON", - "decimals": 18, - "name": "Arista Networks (Ondo Tokenized)", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x20e113e9235df6a2a9bfc6f244c2ccc380c8f546.png", - "aggregators": ["CoinGecko", "Rubic", "Rango", "Ondo"], - "occurrences": 4, - "rwaData": { - "market": { - "nextOpen": "2026-05-18T20:01:00.000Z", - "nextClose": "2026-05-18T19:59:00.000Z" - }, - "nextPause": { - "start": null, - "end": null - }, - "ticker": "ANET", - "instrumentType": "stock" - } - }, - "0x1b8d3e59b31981385c066ee0916ec964628ff1f9": { - "address": "0x1b8d3e59b31981385c066ee0916ec964628ff1f9", - "symbol": "BBAION", - "decimals": 18, - "name": "BigBear.ai Holdings (Ondo Tokenized)", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x1b8d3e59b31981385c066ee0916ec964628ff1f9.png", - "aggregators": ["CoinGecko", "Rubic", "Rango", "Ondo"], - "occurrences": 4, - "rwaData": { - "market": { - "nextOpen": "2026-05-18T20:01:00.000Z", - "nextClose": "2026-05-18T19:59:00.000Z" - }, - "nextPause": { - "start": null, - "end": null - }, - "ticker": "BBAI", - "instrumentType": "stock" - } - }, - "0x33483a58079b4225b10e57958ca28ad7b9cdbaf7": { - "address": "0x33483a58079b4225b10e57958ca28ad7b9cdbaf7", - "symbol": "BMNRON", - "decimals": 18, - "name": "BitMine Immersion Technologies (Ondo Tokenized)", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x33483a58079b4225b10e57958ca28ad7b9cdbaf7.png", - "aggregators": ["CoinGecko", "Rubic", "Rango", "Ondo"], - "occurrences": 4, - "rwaData": { - "market": { - "nextOpen": "2026-05-18T20:01:00.000Z", - "nextClose": "2026-05-18T19:59:00.000Z" - }, - "nextPause": { - "start": null, - "end": null - }, - "ticker": "BMNR", - "instrumentType": "stock" - } - }, - "0x6cc41275ef02b4eeccc04fc4424849a96f3272aa": { - "address": "0x6cc41275ef02b4eeccc04fc4424849a96f3272aa", - "symbol": "XYZON", - "decimals": 18, - "name": "Block (Ondo Tokenized)", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x6cc41275ef02b4eeccc04fc4424849a96f3272aa.png", - "aggregators": ["CoinGecko", "Rubic", "Rango", "Ondo"], - "occurrences": 4, - "rwaData": { - "market": { - "nextOpen": "2026-05-19T00:05:00.000Z", - "nextClose": "2026-05-18T19:59:00.000Z" - }, - "nextPause": { - "start": null, - "end": null - }, - "ticker": "XYZ", - "instrumentType": "stock" - } - }, - "0x334ccd8df4013bac99af8c5c61d3605b315302a0": { - "address": "0x334ccd8df4013bac99af8c5c61d3605b315302a0", - "symbol": "BLSHON", - "decimals": 18, - "name": "Bullish (Ondo Tokenized)", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x334ccd8df4013bac99af8c5c61d3605b315302a0.png", - "aggregators": ["CoinGecko", "Rubic", "Rango", "Ondo"], - "occurrences": 4, - "rwaData": { - "market": { - "nextOpen": "2026-05-19T13:31:00.000Z", - "nextClose": "2026-05-18T19:59:00.000Z" - }, - "nextPause": { - "start": null, - "end": null - }, - "ticker": "BLSH", - "instrumentType": "stock" - } - }, - "0xfe4ec50e0413148021d2f50d114cc44de6ffbf23": { - "address": "0xfe4ec50e0413148021d2f50d114cc44de6ffbf23", - "symbol": "CVNAON", - "decimals": 18, - "name": "Carvana (Ondo Tokenized)", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xfe4ec50e0413148021d2f50d114cc44de6ffbf23.png", - "aggregators": ["CoinGecko", "Rubic", "Rango", "Ondo"], - "occurrences": 4, - "rwaData": { - "market": { - "nextOpen": "2026-05-18T20:01:00.000Z", - "nextClose": "2026-05-18T19:59:00.000Z" - }, - "nextPause": { - "start": null, - "end": null - }, - "ticker": "CVNA", - "instrumentType": "stock" - } - }, - "0xe737f948bdfe3beae9423292853ec0579173cebb": { - "address": "0xe737f948bdfe3beae9423292853ec0579173cebb", - "symbol": "SCHWON", - "decimals": 18, - "name": "Charles Schwab (Ondo Tokenized)", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xe737f948bdfe3beae9423292853ec0579173cebb.png", - "aggregators": ["CoinGecko", "Rubic", "Rango", "Ondo"], - "occurrences": 4, - "rwaData": { - "market": { - "nextOpen": "2026-05-19T00:05:00.000Z", - "nextClose": "2026-05-18T19:59:00.000Z" - }, - "nextPause": { - "start": null, - "end": null - }, - "ticker": "SCHW", - "instrumentType": "stock" - } - }, - "0x8e6a5338eac4b6fe8d51a7653fad3b9da755eea6": { - "address": "0x8e6a5338eac4b6fe8d51a7653fad3b9da755eea6", - "symbol": "COPON", - "decimals": 18, - "name": "ConocoPhillips (Ondo Tokenized)", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x8e6a5338eac4b6fe8d51a7653fad3b9da755eea6.png", - "aggregators": ["CoinGecko", "Rubic", "Rango", "Ondo"], - "occurrences": 4, - "rwaData": { - "market": { - "nextOpen": "2026-05-18T20:01:00.000Z", - "nextClose": "2026-05-18T19:59:00.000Z" - }, - "nextPause": { - "start": null, - "end": null - }, - "ticker": "COP", - "instrumentType": "stock" - } - }, - "0xfa9f0bf8baa9a3d5e0a8e5c0aeaf186acabef63d": { - "address": "0xfa9f0bf8baa9a3d5e0a8e5c0aeaf186acabef63d", - "symbol": "CPNGON", - "decimals": 18, - "name": "Coupang (Ondo Tokenized)", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xfa9f0bf8baa9a3d5e0a8e5c0aeaf186acabef63d.png", - "aggregators": ["CoinGecko", "Rubic", "Rango", "Ondo"], - "occurrences": 4, - "rwaData": { - "market": { - "nextOpen": "2026-05-18T20:01:00.000Z", - "nextClose": "2026-05-18T19:59:00.000Z" - }, - "nextPause": { - "start": null, - "end": null - }, - "ticker": "CPNG", - "instrumentType": "stock" - } - }, - "0xcac9aafb2cf51645ae1ab4fb1f35f07d42437f80": { - "address": "0xcac9aafb2cf51645ae1ab4fb1f35f07d42437f80", - "symbol": "CRWDON", - "decimals": 18, - "name": "CrowdStrike (Ondo Tokenized)", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xcac9aafb2cf51645ae1ab4fb1f35f07d42437f80.png", - "aggregators": ["CoinGecko", "Rubic", "Rango", "Ondo"], - "occurrences": 4, - "rwaData": { - "market": { - "nextOpen": "2026-05-18T20:01:00.000Z", - "nextClose": "2026-05-18T19:59:00.000Z" - }, - "nextPause": { - "start": "2026-06-03T20:00:00.000Z", - "end": "2026-06-03T23:30:00.000Z" - }, - "ticker": "CRWD", - "instrumentType": "stock" - } - }, - "0x32d7c413fd3477e86b8ec6b0bb8f3ac510eafaae": { - "address": "0x32d7c413fd3477e86b8ec6b0bb8f3ac510eafaae", - "symbol": "DEON", - "decimals": 18, - "name": "Deere (Ondo Tokenized)", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x32d7c413fd3477e86b8ec6b0bb8f3ac510eafaae.png", - "aggregators": ["CoinGecko", "Rubic", "Rango", "Ondo"], - "occurrences": 4, - "rwaData": { - "market": { - "nextOpen": "2026-05-18T20:01:00.000Z", - "nextClose": "2026-05-18T19:59:00.000Z" - }, - "nextPause": { - "start": "2026-05-21T09:00:00.000Z", - "end": "2026-05-21T13:31:00.000Z" - }, - "ticker": "DE", - "instrumentType": "stock" - } - }, - "0x7aa59a63d1d0c435a08bc96e11bef2e95ab66c40": { - "address": "0x7aa59a63d1d0c435a08bc96e11bef2e95ab66c40", - "symbol": "DNNON", - "decimals": 18, - "name": "Denison Mines (Ondo Tokenized)", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x7aa59a63d1d0c435a08bc96e11bef2e95ab66c40.png", - "aggregators": ["CoinGecko", "Rubic", "Rango", "Ondo"], - "occurrences": 4, - "rwaData": { - "market": { - "nextOpen": "2026-05-19T13:31:00.000Z", - "nextClose": "2026-05-18T19:59:00.000Z" - }, - "nextPause": { - "start": null, - "end": null - }, - "ticker": "DNN", - "instrumentType": "stock" - } - }, - "0xf05ad9840924ea6f977ebccb3b1da87e31dcd0b4": { - "address": "0xf05ad9840924ea6f977ebccb3b1da87e31dcd0b4", - "symbol": "XOMON", - "decimals": 18, - "name": "Exxon Mobil (Ondo Tokenized)", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xf05ad9840924ea6f977ebccb3b1da87e31dcd0b4.png", - "aggregators": ["CoinGecko", "Rubic", "Rango", "Ondo"], - "occurrences": 4, - "rwaData": { - "market": { - "nextOpen": "2026-05-18T20:01:00.000Z", - "nextClose": "2026-05-18T19:59:00.000Z" - }, - "nextPause": { - "start": null, - "end": null - }, - "ticker": "XOM", - "instrumentType": "stock" - } - }, - "0xacf3fecaa787f268351a86409c3bd3b96ef924fb": { - "address": "0xacf3fecaa787f268351a86409c3bd3b96ef924fb", - "symbol": "FTGCON", - "decimals": 18, - "name": "First Trust Global Tactical Commodity Strategy Fund (Ondo Tokenized)", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xacf3fecaa787f268351a86409c3bd3b96ef924fb.png", - "aggregators": ["CoinGecko", "Rubic", "Rango", "Ondo"], - "occurrences": 4, - "rwaData": { - "market": { - "nextOpen": "2026-05-19T13:31:00.000Z", - "nextClose": "2026-05-18T19:59:00.000Z" - }, - "nextPause": { - "start": null, - "end": null - }, - "ticker": "FTGC", - "instrumentType": "stock" - } - }, - "0xb51db25c920c16f2865c37011c3eec91db946b07": { - "address": "0xb51db25c920c16f2865c37011c3eec91db946b07", - "symbol": "GEMION", - "decimals": 18, - "name": "Gemini Space Station (Ondo Tokenized)", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xb51db25c920c16f2865c37011c3eec91db946b07.png", - "aggregators": ["CoinGecko", "Rubic", "Rango", "Ondo"], - "occurrences": 4, - "rwaData": { - "market": { - "nextOpen": "2026-05-19T13:31:00.000Z", - "nextClose": "2026-05-18T19:59:00.000Z" - }, - "nextPause": { - "start": null, - "end": null - }, - "ticker": "GEMI", - "instrumentType": "stock" - } - }, - "0x1c174711f3fd63c4165d6f296b3eb19d17fde94a": { - "address": "0x1c174711f3fd63c4165d6f296b3eb19d17fde94a", - "symbol": "GRABON", - "decimals": 18, - "name": "Grab Holdings (Ondo Tokenized)", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x1c174711f3fd63c4165d6f296b3eb19d17fde94a.png", - "aggregators": ["CoinGecko", "Rubic", "Rango", "Ondo"], - "occurrences": 4, - "rwaData": { - "market": { - "nextOpen": "2026-05-19T13:31:00.000Z", - "nextClose": "2026-05-18T19:59:00.000Z" - }, - "nextPause": { - "start": null, - "end": null - }, - "ticker": "GRAB", - "instrumentType": "stock" - } - }, - "0xe5b26ba77e6a4d79a7c54a5296d81254269d9700": { - "address": "0xe5b26ba77e6a4d79a7c54a5296d81254269d9700", - "symbol": "GRNDON", - "decimals": 18, - "name": "Grindr (Ondo Tokenized)", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xe5b26ba77e6a4d79a7c54a5296d81254269d9700.png", - "aggregators": ["CoinGecko", "Rubic", "Rango", "Ondo"], - "occurrences": 4, - "rwaData": { - "market": { - "nextOpen": "2026-05-19T13:31:00.000Z", - "nextClose": "2026-05-18T19:59:00.000Z" - }, - "nextPause": { - "start": null, - "end": null - }, - "ticker": "GRND", - "instrumentType": "stock" - } - }, - "0x7dbd435aa4ecab5471cfcef4527a022fef0b7e1c": { - "address": "0x7dbd435aa4ecab5471cfcef4527a022fef0b7e1c", - "symbol": "HDON", - "decimals": 18, - "name": "Home Depot (Ondo Tokenized)", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x7dbd435aa4ecab5471cfcef4527a022fef0b7e1c.png", - "aggregators": ["CoinGecko", "Rubic", "Rango", "Ondo"], - "occurrences": 4, - "rwaData": { - "market": { - "nextOpen": "2026-05-19T13:31:00.000Z", - "nextClose": "2026-05-18T19:59:00.000Z" - }, - "nextPause": { - "start": "2026-05-19T09:00:00.000Z", - "end": "2026-05-19T13:31:00.000Z" - }, - "ticker": "HD", - "instrumentType": "stock" - } - }, - "0x2691b13fca1e02322685b9554b5ae0f5f3f05c55": { - "address": "0x2691b13fca1e02322685b9554b5ae0f5f3f05c55", - "symbol": "ISRGON", - "decimals": 18, - "name": "Intuitive Surgical (Ondo Tokenized)", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x2691b13fca1e02322685b9554b5ae0f5f3f05c55.png", - "aggregators": ["CoinGecko", "Rubic", "Rango", "Ondo"], - "occurrences": 4, - "rwaData": { - "market": { - "nextOpen": "2026-05-18T20:01:00.000Z", - "nextClose": "2026-05-18T19:59:00.000Z" - }, - "nextPause": { - "start": null, - "end": null - }, - "ticker": "ISRG", - "instrumentType": "stock" - } - }, - "0x20224080ad516769723c9a4a18325fc4e8c9ab5d": { - "address": "0x20224080ad516769723c9a4a18325fc4e8c9ab5d", - "symbol": "DBCON", - "decimals": 18, - "name": "Invesco DB Commodity Index Tracking Fund (Ondo Tokenized)", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x20224080ad516769723c9a4a18325fc4e8c9ab5d.png", - "aggregators": ["CoinGecko", "Rubic", "Rango", "Ondo"], - "occurrences": 4, - "rwaData": { - "market": { - "nextOpen": "2026-05-19T13:31:00.000Z", - "nextClose": "2026-05-18T19:59:00.000Z" - }, - "nextPause": { - "start": null, - "end": null - }, - "ticker": "DBC", - "instrumentType": "stock" - } - }, - "0x423a63dfe8d82cd9c6568c92210aa537d8ef6885": { - "address": "0x423a63dfe8d82cd9c6568c92210aa537d8ef6885", - "symbol": "COPXON", - "decimals": 18, - "name": "Global X Copper Miners ETF (Ondo Tokenized)", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x423a63dfe8d82cd9c6568c92210aa537d8ef6885.png", - "aggregators": ["CoinGecko", "Rubic", "Rango", "Ondo"], - "occurrences": 4, - "rwaData": { - "market": { - "nextOpen": "2026-05-18T20:01:00.000Z", - "nextClose": "2026-05-18T19:59:00.000Z" - }, - "nextPause": { - "start": null, - "end": null - }, - "ticker": "COPX", - "instrumentType": "stock" - } - }, - "0x46c0a02a877c1412cb32b57028b2f771c0364a7e": { - "address": "0x46c0a02a877c1412cb32b57028b2f771c0364a7e", - "symbol": "PDBCON", - "decimals": 18, - "name": "Invesco Optimum Yld Dvsfd Cmd Str No K-1 ETF (Ondo Tokenized)", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x46c0a02a877c1412cb32b57028b2f771c0364a7e.png", - "aggregators": ["CoinGecko", "Rubic", "Rango", "Ondo"], - "occurrences": 4, - "rwaData": { - "market": { - "nextOpen": "2026-05-19T13:31:00.000Z", - "nextClose": "2026-05-18T19:59:00.000Z" - }, - "nextPause": { - "start": null, - "end": null - }, - "ticker": "PDBC", - "instrumentType": "stock" - } - }, - "0x0b59fdb1a233a7477ea14061004b9dd776e73cb3": { - "address": "0x0b59fdb1a233a7477ea14061004b9dd776e73cb3", - "symbol": "IRENON", - "decimals": 18, - "name": "IREN (Ondo Tokenized)", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x0b59fdb1a233a7477ea14061004b9dd776e73cb3.png", - "aggregators": ["CoinGecko", "Rubic", "Rango", "Ondo"], - "occurrences": 4, - "rwaData": { - "market": { - "nextOpen": "2026-05-18T20:01:00.000Z", - "nextClose": "2026-05-18T19:59:00.000Z" - }, - "nextPause": { - "start": null, - "end": null - }, - "ticker": "IREN", - "instrumentType": "stock" - } - }, - "0x8de5d49725550f7b318b2fa0f1b1f118e98e8d0f": { - "address": "0x8de5d49725550f7b318b2fa0f1b1f118e98e8d0f", - "symbol": "SGOVON", - "decimals": 18, - "name": "iShares 0-3 Month Treasury Bond ETF (Ondo Tokenized)", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x8de5d49725550f7b318b2fa0f1b1f118e98e8d0f.png", - "aggregators": ["CoinGecko", "Rubic", "Rango", "Ondo"], - "occurrences": 4, - "rwaData": { - "market": { - "nextOpen": "2026-05-18T20:01:00.000Z", - "nextClose": "2026-05-18T19:59:00.000Z" - }, - "nextPause": { - "start": null, - "end": null - }, - "ticker": "SGOV", - "instrumentType": "stock" - } - }, - "0x88703c1e71f44a2d329c99e8e112f7a4e7dd6312": { - "address": "0x88703c1e71f44a2d329c99e8e112f7a4e7dd6312", - "symbol": "BINCON", - "decimals": 18, - "name": "iShares Flexible Income Active ETF (Ondo Tokenized)", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x88703c1e71f44a2d329c99e8e112f7a4e7dd6312.png", - "aggregators": ["CoinGecko", "Rubic", "Rango", "Ondo"], - "occurrences": 4, - "rwaData": { - "market": { - "nextOpen": "2026-05-18T20:01:00.000Z", - "nextClose": "2026-05-18T19:59:00.000Z" - }, - "nextPause": { - "start": null, - "end": null - }, - "ticker": "BINC", - "instrumentType": "stock" - } - }, - "0x219a1b27baa08d72fac836665a3b752f3c9acbbc": { - "address": "0x219a1b27baa08d72fac836665a3b752f3c9acbbc", - "symbol": "JAAAON", - "decimals": 18, - "name": "Janus Henderson AAA CLO ETF (Ondo Tokenized)", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x219a1b27baa08d72fac836665a3b752f3c9acbbc.png", - "aggregators": ["CoinGecko", "Rubic", "Rango", "Ondo"], - "occurrences": 4, - "rwaData": { - "market": { - "nextOpen": "2026-05-18T20:01:00.000Z", - "nextClose": "2026-05-18T19:59:00.000Z" - }, - "nextPause": { - "start": null, - "end": null - }, - "ticker": "JAAA", - "instrumentType": "stock" - } - }, - "0xdd0e1e6162666a210905ffe8d368661b313c00e9": { - "address": "0xdd0e1e6162666a210905ffe8d368661b313c00e9", - "symbol": "JNJON", - "decimals": 18, - "name": "Johnson & Johnson (Ondo Tokenized)", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xdd0e1e6162666a210905ffe8d368661b313c00e9.png", - "aggregators": ["CoinGecko", "Rubic", "Rango", "Ondo"], - "occurrences": 4, - "rwaData": { - "market": { - "nextOpen": "2026-05-18T20:01:00.000Z", - "nextClose": "2026-05-18T19:59:00.000Z" - }, - "nextPause": { - "start": "2026-05-25T23:52:00.000Z", - "end": "2026-05-26T00:12:00.000Z" - }, - "ticker": "JNJ", - "instrumentType": "stock" - } - }, - "0x858e985126543b5a066c4e8a5dab0249c1d683f7": { - "address": "0x858e985126543b5a066c4e8a5dab0249c1d683f7", - "symbol": "BZON", - "decimals": 18, - "name": "Kanzhun (Ondo Tokenized)", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x858e985126543b5a066c4e8a5dab0249c1d683f7.png", - "aggregators": ["CoinGecko", "Rubic", "Rango", "Ondo"], - "occurrences": 4, - "rwaData": { - "market": { - "nextOpen": "2026-05-19T13:31:00.000Z", - "nextClose": "2026-05-18T19:59:00.000Z" - }, - "nextPause": { - "start": "2026-05-20T09:00:00.000Z", - "end": "2026-05-20T13:31:00.000Z" - }, - "ticker": "BZ", - "instrumentType": "stock" - } - }, - "0x7e08ce07aca80cefe61ebbfa0cedfe5c7b07edb9": { - "address": "0x7e08ce07aca80cefe61ebbfa0cedfe5c7b07edb9", - "symbol": "BILION", - "decimals": 18, - "name": "Bilibili (Ondo Tokenized)", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x7e08ce07aca80cefe61ebbfa0cedfe5c7b07edb9.png", - "aggregators": ["CoinGecko", "Rubic", "Rango", "Ondo"], - "occurrences": 4, - "rwaData": { - "market": { - "nextOpen": "2026-05-18T20:01:00.000Z", - "nextClose": "2026-05-18T19:59:00.000Z" - }, - "nextPause": { - "start": "2026-05-19T09:00:00.000Z", - "end": "2026-05-19T13:31:00.000Z" - }, - "ticker": "BILI", - "instrumentType": "stock" - } - }, - "0xbe8eb7b51a08f9d52bb6c8c7eca699f0f89bfc02": { - "address": "0xbe8eb7b51a08f9d52bb6c8c7eca699f0f89bfc02", - "symbol": "AALON", - "decimals": 18, - "name": "American Airlines Group (Ondo Tokenized)", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xbe8eb7b51a08f9d52bb6c8c7eca699f0f89bfc02.png", - "aggregators": ["CoinGecko", "Rubic", "Rango", "Ondo"], - "occurrences": 4, - "rwaData": { - "market": { - "nextOpen": "2026-05-18T20:01:00.000Z", - "nextClose": "2026-05-18T19:59:00.000Z" - }, - "nextPause": { - "start": null, - "end": null - }, - "ticker": "AAL", - "instrumentType": "stock" - } - }, - "0x576e9ca70e3a040c00d8139b0665a2b7b7b64844": { - "address": "0x576e9ca70e3a040c00d8139b0665a2b7b7b64844", - "symbol": "BACON", - "decimals": 18, - "name": "Bank of America (Ondo Tokenized)", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x576e9ca70e3a040c00d8139b0665a2b7b7b64844.png", - "aggregators": ["CoinGecko", "Rubic", "Rango", "Ondo"], - "occurrences": 4, - "rwaData": { - "market": { - "nextOpen": "2026-05-18T20:01:00.000Z", - "nextClose": "2026-05-18T19:59:00.000Z" - }, - "nextPause": { - "start": "2026-06-04T23:52:00.000Z", - "end": "2026-06-05T00:12:00.000Z" - }, - "ticker": "BAC", - "instrumentType": "stock" - } - }, - "0x6be935eadc71c49c414b1175985946ee40365c67": { - "address": "0x6be935eadc71c49c414b1175985946ee40365c67", - "symbol": "AMATON", - "decimals": 18, - "name": "Applied Materials (Ondo Tokenized)", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x6be935eadc71c49c414b1175985946ee40365c67.png", - "aggregators": ["CoinGecko", "Rubic", "Rango", "Ondo"], - "occurrences": 4, - "rwaData": { - "market": { - "nextOpen": "2026-05-18T20:01:00.000Z", - "nextClose": "2026-05-18T19:59:00.000Z" - }, - "nextPause": { - "start": "2026-05-20T23:52:00.000Z", - "end": "2026-05-21T00:12:00.000Z" - }, - "ticker": "AMAT", - "instrumentType": "stock" - } - }, - "0xa637ae510cb50e61236a89ac480b93b8c3bccc46": { - "address": "0xa637ae510cb50e61236a89ac480b93b8c3bccc46", - "symbol": "KLACON", - "decimals": 18, - "name": "KLA (Ondo Tokenized)", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xa637ae510cb50e61236a89ac480b93b8c3bccc46.png", - "aggregators": ["CoinGecko", "Rubic", "Rango", "Ondo"], - "occurrences": 4, - "rwaData": { - "market": { - "nextOpen": "2026-05-18T20:01:00.000Z", - "nextClose": "2026-05-18T19:59:00.000Z" - }, - "nextPause": { - "start": "2026-06-11T23:50:00.000Z", - "end": "2026-06-12T17:00:00.000Z" - }, - "ticker": "KLAC", - "instrumentType": "stock" - } - }, - "0x21be23f5bf87a749670c088f6dee26760f1ab80f": { - "address": "0x21be23f5bf87a749670c088f6dee26760f1ab80f", - "symbol": "LRCXON", - "decimals": 18, - "name": "Lam Research (Ondo Tokenized)", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x21be23f5bf87a749670c088f6dee26760f1ab80f.png", - "aggregators": ["CoinGecko", "Rubic", "Rango", "Ondo"], - "occurrences": 4, - "rwaData": { - "market": { - "nextOpen": "2026-05-18T20:01:00.000Z", - "nextClose": "2026-05-18T19:59:00.000Z" - }, - "nextPause": { - "start": null, - "end": null - }, - "ticker": "LRCX", - "instrumentType": "stock" - } - }, - "0xb6e362a39db703f0f7cf582c9fc043a51624e53d": { - "address": "0xb6e362a39db703f0f7cf582c9fc043a51624e53d", - "symbol": "LION", - "decimals": 18, - "name": "Li Auto (Ondo Tokenized)", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xb6e362a39db703f0f7cf582c9fc043a51624e53d.png", - "aggregators": ["CoinGecko", "Rubic", "Rango", "Ondo"], - "occurrences": 4, - "rwaData": { - "market": { - "nextOpen": "2026-05-19T00:05:00.000Z", - "nextClose": "2026-05-18T19:59:00.000Z" - }, - "nextPause": { - "start": "2026-05-28T09:00:00.000Z", - "end": "2026-05-28T13:31:00.000Z" - }, - "ticker": "LI", - "instrumentType": "stock" - } - }, - "0x84328d8b85019fdcecf4c82fbe076bf350fc0cab": { - "address": "0x84328d8b85019fdcecf4c82fbe076bf350fc0cab", - "symbol": "LOWON", - "decimals": 18, - "name": "Lowe's (Ondo Tokenized)", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x84328d8b85019fdcecf4c82fbe076bf350fc0cab.png", - "aggregators": ["CoinGecko", "Rubic", "Rango", "Ondo"], - "occurrences": 4, - "rwaData": { - "market": { - "nextOpen": "2026-05-19T13:31:00.000Z", - "nextClose": "2026-05-18T19:59:00.000Z" - }, - "nextPause": { - "start": "2026-05-20T09:00:00.000Z", - "end": "2026-05-20T13:31:00.000Z" - }, - "ticker": "LOW", - "instrumentType": "stock" - } - }, - "0x5cb95099a2c7e3c8187fbca6efe5ba222b5ba820": { - "address": "0x5cb95099a2c7e3c8187fbca6efe5ba222b5ba820", - "symbol": "MTZON", - "decimals": 18, - "name": "MasTec (Ondo Tokenized)", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x5cb95099a2c7e3c8187fbca6efe5ba222b5ba820.png", - "aggregators": ["CoinGecko", "Rubic", "Rango", "Ondo"], - "occurrences": 4, - "rwaData": { - "market": { - "nextOpen": "2026-05-19T13:31:00.000Z", - "nextClose": "2026-05-18T19:59:00.000Z" - }, - "nextPause": { - "start": null, - "end": null - }, - "ticker": "MTZ", - "instrumentType": "stock" - } - }, - "0xdc8a7db05ea704227d56f5d4a4b77a2d1bba29c0": { - "address": "0xdc8a7db05ea704227d56f5d4a4b77a2d1bba29c0", - "symbol": "MRKON", - "decimals": 18, - "name": "Merck (Ondo Tokenized)", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xdc8a7db05ea704227d56f5d4a4b77a2d1bba29c0.png", - "aggregators": ["CoinGecko", "Rubic", "Rango", "Ondo"], - "occurrences": 4, - "rwaData": { - "market": { - "nextOpen": "2026-05-18T20:01:00.000Z", - "nextClose": "2026-05-18T19:59:00.000Z" - }, - "nextPause": { - "start": null, - "end": null - }, - "ticker": "MRK", - "instrumentType": "stock" - } - }, - "0xa2c1c0b4683a871187d4565eb63abf9aef5947ee": { - "address": "0xa2c1c0b4683a871187d4565eb63abf9aef5947ee", - "symbol": "MRNAON", - "decimals": 18, - "name": "Moderna (Ondo Tokenized)", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xa2c1c0b4683a871187d4565eb63abf9aef5947ee.png", - "aggregators": ["CoinGecko", "Rubic", "Rango", "Ondo"], - "occurrences": 4, - "rwaData": { - "market": { - "nextOpen": "2026-05-18T20:01:00.000Z", - "nextClose": "2026-05-18T19:59:00.000Z" - }, - "nextPause": { - "start": null, - "end": null - }, - "ticker": "MRNA", - "instrumentType": "stock" - } - }, - "0x75846a2b2eeee6575ac775f9984be54fd1d08189": { - "address": "0x75846a2b2eeee6575ac775f9984be54fd1d08189", - "symbol": "MPON", - "decimals": 18, - "name": "MP Materials (Ondo Tokenized)", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x75846a2b2eeee6575ac775f9984be54fd1d08189.png", - "aggregators": ["CoinGecko", "Rubic", "Rango", "Ondo"], - "occurrences": 4, - "rwaData": { - "market": { - "nextOpen": "2026-05-18T20:01:00.000Z", - "nextClose": "2026-05-18T19:59:00.000Z" - }, - "nextPause": { - "start": null, - "end": null - }, - "ticker": "MP", - "instrumentType": "stock" - } - }, - "0x3d1cf8692a6f2fc9048a9cc1a06abf77f3465f0a": { - "address": "0x3d1cf8692a6f2fc9048a9cc1a06abf77f3465f0a", - "symbol": "NTESON", - "decimals": 18, - "name": "NetEase (Ondo Tokenized)", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x3d1cf8692a6f2fc9048a9cc1a06abf77f3465f0a.png", - "aggregators": ["CoinGecko", "Rubic", "Rango", "Ondo"], - "occurrences": 4, - "rwaData": { - "market": { - "nextOpen": "2026-05-19T13:31:00.000Z", - "nextClose": "2026-05-18T19:59:00.000Z" - }, - "nextPause": { - "start": "2026-05-21T09:00:00.000Z", - "end": "2026-05-21T13:31:00.000Z" - }, - "ticker": "NTES", - "instrumentType": "stock" - } - }, - "0xf46ba88694cd7933ca28be84ee787ad5732e856b": { - "address": "0xf46ba88694cd7933ca28be84ee787ad5732e856b", - "symbol": "NEEON", - "decimals": 18, - "name": "NextEra Energy (Ondo Tokenized)", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xf46ba88694cd7933ca28be84ee787ad5732e856b.png", - "aggregators": ["CoinGecko", "Rubic", "Rango", "Ondo"], - "occurrences": 4, - "rwaData": { - "market": { - "nextOpen": "2026-05-19T13:31:00.000Z", - "nextClose": "2026-05-18T19:59:00.000Z" - }, - "nextPause": { - "start": null, - "end": null - }, - "ticker": "NEE", - "instrumentType": "stock" - } - }, - "0xee2542f442a5ed8008e2fe3590e14f90db69f70d": { - "address": "0xee2542f442a5ed8008e2fe3590e14f90db69f70d", - "symbol": "NIOON", - "decimals": 18, - "name": "NIO (Ondo Tokenized)", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xee2542f442a5ed8008e2fe3590e14f90db69f70d.png", - "aggregators": ["CoinGecko", "Rubic", "Rango", "Ondo"], - "occurrences": 4, - "rwaData": { - "market": { - "nextOpen": "2026-05-18T20:01:00.000Z", - "nextClose": "2026-05-18T19:59:00.000Z" - }, - "nextPause": { - "start": "2026-05-21T09:00:00.000Z", - "end": "2026-05-21T13:31:00.000Z" - }, - "ticker": "NIO", - "instrumentType": "stock" - } - }, - "0x2008e3057bd734e10ad13c9eae45ff132abc1722": { - "address": "0x2008e3057bd734e10ad13c9eae45ff132abc1722", - "symbol": "ZCO", - "decimals": 8, - "name": "Zebi", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x2008e3057bd734e10ad13c9eae45ff132abc1722.png", - "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0xeedc48205852e9d83ea5ca92fa8656597788601f": { - "address": "0xeedc48205852e9d83ea5ca92fa8656597788601f", - "symbol": "OXYON", - "decimals": 18, - "name": "Occidental Petroleum (Ondo Tokenized)", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xeedc48205852e9d83ea5ca92fa8656597788601f.png", - "aggregators": ["CoinGecko", "Rubic", "Rango", "Ondo"], - "occurrences": 4, - "rwaData": { - "market": { - "nextOpen": "2026-05-18T20:01:00.000Z", - "nextClose": "2026-05-18T19:59:00.000Z" - }, - "nextPause": { - "start": "2026-06-09T23:52:00.000Z", - "end": "2026-06-10T08:10:00.000Z" - }, - "ticker": "OXY", - "instrumentType": "stock" - } - }, - "0xf0372e226553af4f343b44111a789f87a9fa427a": { - "address": "0xf0372e226553af4f343b44111a789f87a9fa427a", - "symbol": "OKLOON", - "decimals": 18, - "name": "Oklo (Ondo Tokenized)", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xf0372e226553af4f343b44111a789f87a9fa427a.png", - "aggregators": ["CoinGecko", "Rubic", "Rango", "Ondo"], - "occurrences": 4, - "rwaData": { - "market": { - "nextOpen": "2026-05-18T20:01:00.000Z", - "nextClose": "2026-05-18T19:59:00.000Z" - }, - "nextPause": { - "start": null, - "end": null - }, - "ticker": "OKLO", - "instrumentType": "stock" - } - }, - "0xa52b2d6ca1cd9b1e8b931645428380c340caef9a": { - "address": "0xa52b2d6ca1cd9b1e8b931645428380c340caef9a", - "symbol": "ONON", - "decimals": 18, - "name": "ON Semiconductor (Ondo Tokenized)", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xa52b2d6ca1cd9b1e8b931645428380c340caef9a.png", - "aggregators": ["CoinGecko", "Rubic", "Rango", "Ondo"], - "occurrences": 4, - "rwaData": { - "market": { - "nextOpen": "2026-05-19T13:31:00.000Z", - "nextClose": "2026-05-18T19:59:00.000Z" - }, - "nextPause": { - "start": null, - "end": null - }, - "ticker": "ON", - "instrumentType": "stock" - } - }, - "0xb22d83e228c4266075ec75c32acc3bc059b6f248": { - "address": "0xb22d83e228c4266075ec75c32acc3bc059b6f248", - "symbol": "OPENON", - "decimals": 18, - "name": "Opendoor Technologies (Ondo Tokenized)", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xb22d83e228c4266075ec75c32acc3bc059b6f248.png", - "aggregators": ["CoinGecko", "Rubic", "Rango", "Ondo"], - "occurrences": 4, - "rwaData": { - "market": { - "nextOpen": "2026-05-19T13:31:00.000Z", - "nextClose": "2026-05-18T19:59:00.000Z" - }, - "nextPause": { - "start": null, - "end": null - }, - "ticker": "OPEN", - "instrumentType": "stock" - } - }, - "0xb40afd1d55ea61fc1a6fbe093b817b673c8e78d7": { - "address": "0xb40afd1d55ea61fc1a6fbe093b817b673c8e78d7", - "symbol": "OPRAON", - "decimals": 18, - "name": "Opera (Ondo Tokenized)", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xb40afd1d55ea61fc1a6fbe093b817b673c8e78d7.png", - "aggregators": ["CoinGecko", "Rubic", "Rango", "Ondo"], - "occurrences": 4, - "rwaData": { - "market": { - "nextOpen": "2026-05-19T13:31:00.000Z", - "nextClose": "2026-05-18T19:59:00.000Z" - }, - "nextPause": { - "start": null, - "end": null - }, - "ticker": "OPRA", - "instrumentType": "stock" - } - }, - "0x244efb92f76a57da49b5f71045dce3e546e13106": { - "address": "0x244efb92f76a57da49b5f71045dce3e546e13106", - "symbol": "OSCRON", - "decimals": 18, - "name": "Oscar Health (Ondo Tokenized)", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x244efb92f76a57da49b5f71045dce3e546e13106.png", - "aggregators": ["CoinGecko", "Rubic", "Rango", "Ondo"], - "occurrences": 4, - "rwaData": { - "market": { - "nextOpen": "2026-05-19T13:31:00.000Z", - "nextClose": "2026-05-18T19:59:00.000Z" - }, - "nextPause": { - "start": null, - "end": null - }, - "ticker": "OSCR", - "instrumentType": "stock" - } - }, - "0xcc40965d3621362c3ee1dd946ba98d6a708ea86b": { - "address": "0xcc40965d3621362c3ee1dd946ba98d6a708ea86b", - "symbol": "PDDON", - "decimals": 18, - "name": "PDD Holdings (Ondo Tokenized)", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xcc40965d3621362c3ee1dd946ba98d6a708ea86b.png", - "aggregators": ["CoinGecko", "Rubic", "Rango", "Ondo"], - "occurrences": 4, - "rwaData": { - "market": { - "nextOpen": "2026-05-18T20:01:00.000Z", - "nextClose": "2026-05-18T19:59:00.000Z" - }, - "nextPause": { - "start": "2026-05-26T09:00:00.000Z", - "end": "2026-05-26T23:30:00.000Z" - }, - "ticker": "PDD", - "instrumentType": "stock" - } - }, - "0x193fdf644451cc394b28b9cec2f5d32e2b4de515": { - "address": "0x193fdf644451cc394b28b9cec2f5d32e2b4de515", - "symbol": "PCGON", - "decimals": 18, - "name": "PG&E (Ondo Tokenized)", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x193fdf644451cc394b28b9cec2f5d32e2b4de515.png", - "aggregators": ["CoinGecko", "Rubic", "Rango", "Ondo"], - "occurrences": 4, - "rwaData": { - "market": { - "nextOpen": "2026-05-19T13:31:00.000Z", - "nextClose": "2026-05-18T19:59:00.000Z" - }, - "nextPause": { - "start": null, - "end": null - }, - "ticker": "PCG", - "instrumentType": "stock" - } - }, - "0xc017c622cd05698580e2decd0f97d4a17dab70f9": { - "address": "0xc017c622cd05698580e2decd0f97d4a17dab70f9", - "symbol": "PINSON", - "decimals": 18, - "name": "Pinterest (Ondo Tokenized)", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xc017c622cd05698580e2decd0f97d4a17dab70f9.png", - "aggregators": ["CoinGecko", "Rubic", "Rango", "Ondo"], - "occurrences": 4, - "rwaData": { - "market": { - "nextOpen": "2026-05-18T20:01:00.000Z", - "nextClose": "2026-05-18T19:59:00.000Z" - }, - "nextPause": { - "start": null, - "end": null - }, - "ticker": "PINS", - "instrumentType": "stock" - } - }, - "0xe7ee911172bdd557b9ab6be7701f86bbc8fd772e": { - "address": "0xe7ee911172bdd557b9ab6be7701f86bbc8fd772e", - "symbol": "PLUGON", - "decimals": 18, - "name": "Plug Power (Ondo Tokenized)", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xe7ee911172bdd557b9ab6be7701f86bbc8fd772e.png", - "aggregators": ["CoinGecko", "Rubic", "Rango", "Ondo"], - "occurrences": 4, - "rwaData": { - "market": { - "nextOpen": "2026-05-18T20:01:00.000Z", - "nextClose": "2026-05-18T19:59:00.000Z" - }, - "nextPause": { - "start": null, - "end": null - }, - "ticker": "PLUG", - "instrumentType": "stock" - } - }, - "0x64a60493d888728cf42616e034a0dfeae38efcf0": { - "address": "0x64a60493d888728cf42616e034a0dfeae38efcf0", - "symbol": "OLT", - "decimals": 18, - "name": "OneLedger", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x64a60493d888728cf42616e034a0dfeae38efcf0.png", - "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0xa45cd7ac9865b9539166ebaf2abc362df4736580": { - "address": "0xa45cd7ac9865b9539166ebaf2abc362df4736580", - "symbol": "TQQQON", - "decimals": 18, - "name": "ProShares UltraPro QQQ (Ondo Tokenized)", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xa45cd7ac9865b9539166ebaf2abc362df4736580.png", - "aggregators": ["CoinGecko", "Rubic", "Rango", "Ondo"], - "occurrences": 4, - "rwaData": { - "market": { - "nextOpen": "2026-05-18T20:01:00.000Z", - "nextClose": "2026-05-18T19:59:00.000Z" - }, - "nextPause": { - "start": null, - "end": null - }, - "ticker": "TQQQ", - "instrumentType": "stock" - } - }, - "0x9ebd34d99cc3a45b39cafc14ad7994263fa2be56": { - "address": "0x9ebd34d99cc3a45b39cafc14ad7994263fa2be56", - "symbol": "PSQON", - "decimals": 18, - "name": "ProShares Short QQQ (Ondo Tokenized)", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x9ebd34d99cc3a45b39cafc14ad7994263fa2be56.png", - "aggregators": ["CoinGecko", "Rubic", "Rango", "Ondo"], - "occurrences": 4, - "rwaData": { - "market": { - "nextOpen": "2026-05-18T20:01:00.000Z", - "nextClose": "2026-05-18T19:59:00.000Z" - }, - "nextPause": { - "start": null, - "end": null - }, - "ticker": "PSQ", - "instrumentType": "stock" - } - }, - "0xfdfdf5db2f4a72cb754ffa8896ea012dc2cc0f5e": { - "address": "0xfdfdf5db2f4a72cb754ffa8896ea012dc2cc0f5e", - "symbol": "RGTION", - "decimals": 18, - "name": "Rigetti Computing (Ondo Tokenized)", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xfdfdf5db2f4a72cb754ffa8896ea012dc2cc0f5e.png", - "aggregators": ["CoinGecko", "Rubic", "Rango", "Ondo"], - "occurrences": 4, - "rwaData": { - "market": { - "nextOpen": "2026-05-18T20:01:00.000Z", - "nextClose": "2026-05-18T19:59:00.000Z" - }, - "nextPause": { - "start": null, - "end": null - }, - "ticker": "RGTI", - "instrumentType": "stock" - } - }, - "0x67c5902f5210f62f37157cd9c735c693164c1378": { - "address": "0x67c5902f5210f62f37157cd9c735c693164c1378", - "symbol": "RTXON", - "decimals": 18, - "name": "RTX (Ondo Tokenized)", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x67c5902f5210f62f37157cd9c735c693164c1378.png", - "aggregators": ["CoinGecko", "Rubic", "Rango", "Ondo"], - "occurrences": 4, - "rwaData": { - "market": { - "nextOpen": "2026-05-18T20:01:00.000Z", - "nextClose": "2026-05-18T19:59:00.000Z" - }, - "nextPause": { - "start": "2026-05-21T23:52:00.000Z", - "end": "2026-05-22T08:10:00.000Z" - }, - "ticker": "RTX", - "instrumentType": "stock" - } - }, - "0xb2924278cc92e60db9b673d6a311d7a331dd703d": { - "address": "0xb2924278cc92e60db9b673d6a311d7a331dd703d", - "symbol": "SNAPON", - "decimals": 18, - "name": "Snap (Ondo Tokenized)", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xb2924278cc92e60db9b673d6a311d7a331dd703d.png", - "aggregators": ["CoinGecko", "Rubic", "Rango", "Ondo"], - "occurrences": 4, - "rwaData": { - "market": { - "nextOpen": "2026-05-19T13:31:00.000Z", - "nextClose": "2026-05-18T19:59:00.000Z" - }, - "nextPause": { - "start": null, - "end": null - }, - "ticker": "SNAP", - "instrumentType": "stock" - } - }, - "0x04d94914cd1d7ff749efedee764335777225b962": { - "address": "0x04d94914cd1d7ff749efedee764335777225b962", - "symbol": "RIVNON", - "decimals": 18, - "name": "Rivian Automotive (Ondo Tokenized)", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x04d94914cd1d7ff749efedee764335777225b962.png", - "aggregators": ["CoinGecko", "Rubic", "Rango", "Ondo"], - "occurrences": 4, - "rwaData": { - "market": { - "nextOpen": "2026-05-18T20:01:00.000Z", - "nextClose": "2026-05-18T19:59:00.000Z" - }, - "nextPause": { - "start": null, - "end": null - }, - "ticker": "RIVN", - "instrumentType": "stock" - } - }, - "0x5e29cf3e3fed4df50acab95f8268e9ee26ea36f2": { - "address": "0x5e29cf3e3fed4df50acab95f8268e9ee26ea36f2", - "symbol": "DXI", - "decimals": 18, - "name": "Dacxi", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x5e29cf3e3fed4df50acab95f8268e9ee26ea36f2.png", - "aggregators": ["CoinMarketCap", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0x966db065199a3edea2228c6e5eb6ac49ff251acc": { - "address": "0x966db065199a3edea2228c6e5eb6ac49ff251acc", - "symbol": "SOUNON", - "decimals": 18, - "name": "SoundHound AI (Ondo Tokenized)", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x966db065199a3edea2228c6e5eb6ac49ff251acc.png", - "aggregators": ["CoinGecko", "Rubic", "Rango", "Ondo"], - "occurrences": 4, - "rwaData": { - "market": { - "nextOpen": "2026-05-18T20:01:00.000Z", - "nextClose": "2026-05-18T19:59:00.000Z" - }, - "nextPause": { - "start": null, - "end": null - }, - "ticker": "SOUN", - "instrumentType": "stock" - } - }, - "0x423d42e505e64f99b6e277eb7ed324cc5606f139": { - "address": "0x423d42e505e64f99b6e277eb7ed324cc5606f139", - "symbol": "GLDON", - "decimals": 18, - "name": "SPDR Gold Shares (Ondo Tokenized)", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x423d42e505e64f99b6e277eb7ed324cc5606f139.png", - "aggregators": ["CoinGecko", "Rubic", "Rango", "Ondo"], - "occurrences": 4, - "rwaData": { - "market": { - "nextOpen": "2026-05-18T20:01:00.000Z", - "nextClose": "2026-05-18T19:59:00.000Z" - }, - "nextPause": { - "start": null, - "end": null - }, - "ticker": "GLD", - "instrumentType": "stock" - } - }, - "0xbf54eb503bb350583d11f4348086dc3608fa245c": { - "address": "0xbf54eb503bb350583d11f4348086dc3608fa245c", - "symbol": "NIKLON", - "decimals": 18, - "name": "Sprott Nickel Miners ETF (Ondo Tokenized)", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xbf54eb503bb350583d11f4348086dc3608fa245c.png", - "aggregators": ["CoinGecko", "Rubic", "Rango", "Ondo"], - "occurrences": 4, - "rwaData": { - "market": { - "nextOpen": "2026-05-19T13:31:00.000Z", - "nextClose": "2026-05-18T19:59:00.000Z" - }, - "nextPause": { - "start": null, - "end": null - }, - "ticker": "NIKL", - "instrumentType": "stock" - } - }, - "0x110cae53912c2ed9bf279cd70b3b699e26c79e58": { - "address": "0x110cae53912c2ed9bf279cd70b3b699e26c79e58", - "symbol": "WULFON", - "decimals": 18, - "name": "Terawulf (Ondo Tokenized)", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x110cae53912c2ed9bf279cd70b3b699e26c79e58.png", - "aggregators": ["CoinGecko", "Rubic", "Rango", "Ondo"], - "occurrences": 4, - "rwaData": { - "market": { - "nextOpen": "2026-05-19T13:31:00.000Z", - "nextClose": "2026-05-18T19:59:00.000Z" - }, - "nextPause": { - "start": null, - "end": null - }, - "ticker": "WULF", - "instrumentType": "stock" - } - }, - "0x58fc9d573ea773ef9a25c3de66f990b87ee5f50e": { - "address": "0x58fc9d573ea773ef9a25c3de66f990b87ee5f50e", - "symbol": "TXNON", - "decimals": 18, - "name": "Texas Instruments (Ondo Tokenized)", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x58fc9d573ea773ef9a25c3de66f990b87ee5f50e.png", - "aggregators": ["CoinGecko", "Rubic", "Rango", "Ondo"], - "occurrences": 4, - "rwaData": { - "market": { - "nextOpen": "2026-05-18T20:01:00.000Z", - "nextClose": "2026-05-18T19:59:00.000Z" - }, - "nextPause": { - "start": null, - "end": null - }, - "ticker": "TXN", - "instrumentType": "stock" - } - }, - "0x52928c95c4c7e934e0efcfab08853a0e4558861d": { - "address": "0x52928c95c4c7e934e0efcfab08853a0e4558861d", - "symbol": "HART", - "decimals": 18, - "name": "Hara", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x52928c95c4c7e934e0efcfab08853a0e4558861d.png", - "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0x1f5fc5c3c8b0f15c7e21af623936ff2b210b6415": { - "address": "0x1f5fc5c3c8b0f15c7e21af623936ff2b210b6415", - "symbol": "USOON", - "decimals": 18, - "name": "United States Oil Fund (Ondo Tokenized)", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x1f5fc5c3c8b0f15c7e21af623936ff2b210b6415.png", - "aggregators": ["CoinGecko", "Rubic", "Rango", "Ondo"], - "occurrences": 4, - "rwaData": { - "market": { - "nextOpen": "2026-05-18T20:01:00.000Z", - "nextClose": "2026-05-18T19:59:00.000Z" - }, - "nextPause": { - "start": null, - "end": null - }, - "ticker": "USO", - "instrumentType": "stock" - } - }, - "0x1140043f02d8ee34b10eae2e32ae921cda1459ee": { - "address": "0x1140043f02d8ee34b10eae2e32ae921cda1459ee", - "symbol": "REMXON", - "decimals": 18, - "name": "VanEck Rare Earth and Strategic Metals ETF (Ondo Tokenized)", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x1140043f02d8ee34b10eae2e32ae921cda1459ee.png", - "aggregators": ["CoinGecko", "Rubic", "Rango", "Ondo"], - "occurrences": 4, - "rwaData": { - "market": { - "nextOpen": "2026-05-19T13:31:00.000Z", - "nextClose": "2026-05-18T19:59:00.000Z" - }, - "nextPause": { - "start": null, - "end": null - }, - "ticker": "REMX", - "instrumentType": "stock" - } - }, - "0x57b392146848c6321bb2a3d4358df1bdeacdc62a": { - "address": "0x57b392146848c6321bb2a3d4358df1bdeacdc62a", - "symbol": "VTION", - "decimals": 18, - "name": "Vanguard Total Stock Market ETF (Ondo Tokenized)", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x57b392146848c6321bb2a3d4358df1bdeacdc62a.png", - "aggregators": ["CoinGecko", "Rubic", "Rango", "Ondo"], - "occurrences": 4, - "rwaData": { - "market": { - "nextOpen": "2026-05-18T20:01:00.000Z", - "nextClose": "2026-05-18T19:59:00.000Z" - }, - "nextPause": { - "start": null, - "end": null - }, - "ticker": "VTI", - "instrumentType": "stock" - } - }, - "0x84e8f1b9b40dd1832925702459d12ffb14d97bf3": { - "address": "0x84e8f1b9b40dd1832925702459d12ffb14d97bf3", - "symbol": "VTVON", - "decimals": 18, - "name": "Vanguard Value ETF (Ondo Tokenized)", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x84e8f1b9b40dd1832925702459d12ffb14d97bf3.png", - "aggregators": ["CoinGecko", "Rubic", "Rango", "Ondo"], - "occurrences": 4, - "rwaData": { - "market": { - "nextOpen": "2026-05-18T20:01:00.000Z", - "nextClose": "2026-05-18T19:59:00.000Z" - }, - "nextPause": { - "start": null, - "end": null - }, - "ticker": "VTV", - "instrumentType": "stock" - } - }, - "0x0e3d889d5b857c3e6eb361b9c9ae35bb7ddbd254": { - "address": "0x0e3d889d5b857c3e6eb361b9c9ae35bb7ddbd254", - "symbol": "VZON", - "decimals": 18, - "name": "Verizon (Ondo Tokenized)", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x0e3d889d5b857c3e6eb361b9c9ae35bb7ddbd254.png", - "aggregators": ["CoinGecko", "Rubic", "Rango", "Ondo"], - "occurrences": 4, - "rwaData": { - "market": { - "nextOpen": "2026-05-18T20:01:00.000Z", - "nextClose": "2026-05-18T19:59:00.000Z" - }, - "nextPause": { - "start": null, - "end": null - }, - "ticker": "VZ", - "instrumentType": "stock" - } - }, - "0x0752163d221d3d5d4b6e98bd616b22bd2b453964": { - "address": "0x0752163d221d3d5d4b6e98bd616b22bd2b453964", - "symbol": "VRTON", - "decimals": 18, - "name": "Vertiv (Ondo Tokenized)", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x0752163d221d3d5d4b6e98bd616b22bd2b453964.png", - "aggregators": ["CoinGecko", "Rubic", "Rango", "Ondo"], - "occurrences": 4, - "rwaData": { - "market": { - "nextOpen": "2026-05-18T20:01:00.000Z", - "nextClose": "2026-05-18T19:59:00.000Z" - }, - "nextPause": { - "start": null, - "end": null - }, - "ticker": "VRT", - "instrumentType": "stock" - } - }, - "0xf1573edddb75bf7ce165f142a17ed6b5e7f5aa13": { - "address": "0xf1573edddb75bf7ce165f142a17ed6b5e7f5aa13", - "symbol": "VSTON", - "decimals": 18, - "name": "Vistra (Ondo Tokenized)", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xf1573edddb75bf7ce165f142a17ed6b5e7f5aa13.png", - "aggregators": ["CoinGecko", "Rubic", "Rango", "Ondo"], - "occurrences": 4, - "rwaData": { - "market": { - "nextOpen": "2026-05-18T20:01:00.000Z", - "nextClose": "2026-05-18T19:59:00.000Z" - }, - "nextPause": { - "start": "2026-06-21T23:52:00.000Z", - "end": "2026-06-22T08:10:00.000Z" - }, - "ticker": "VST", - "instrumentType": "stock" - } - }, - "0xfb82561a955bf59b9263301126af490d3799e231": { - "address": "0xfb82561a955bf59b9263301126af490d3799e231", - "symbol": "USFRON", - "decimals": 18, - "name": "WisdomTree Floating Rate Treasury Fund (Ondo Tokenized)", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xfb82561a955bf59b9263301126af490d3799e231.png", - "aggregators": ["CoinGecko", "Rubic", "Rango", "Ondo"], - "occurrences": 4, - "rwaData": { - "market": { - "nextOpen": "2026-05-18T20:01:00.000Z", - "nextClose": "2026-05-18T19:59:00.000Z" - }, - "nextPause": { - "start": null, - "end": null - }, - "ticker": "USFR", - "instrumentType": "stock" - } - }, - "0x818234860a647d480b9bbcc9a47a23889f2ec900": { - "address": "0x818234860a647d480b9bbcc9a47a23889f2ec900", - "symbol": "ONDSON", - "decimals": 18, - "name": "Ondas Holdings (Ondo Tokenized)", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x818234860a647d480b9bbcc9a47a23889f2ec900.png", - "aggregators": ["CoinGecko", "Rubic", "Rango", "Ondo"], - "occurrences": 4, - "rwaData": { - "market": { - "nextOpen": "2026-05-18T20:01:00.000Z", - "nextClose": "2026-05-18T19:59:00.000Z" - }, - "nextPause": { - "start": null, - "end": null - }, - "ticker": "ONDS", - "instrumentType": "stock" - } - }, - "0xec169f9ac2161723a2d4febd9748bb529d6c12b5": { - "address": "0xec169f9ac2161723a2d4febd9748bb529d6c12b5", - "symbol": "HYSON", - "decimals": 18, - "name": "PIMCO 0-5 Year High Yield Corporate Bond Index ETF (Ondo Tokenized)", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xec169f9ac2161723a2d4febd9748bb529d6c12b5.png", - "aggregators": ["CoinGecko", "Rubic", "Rango", "Ondo"], - "occurrences": 4, - "rwaData": { - "market": { - "nextOpen": "2026-05-18T20:01:00.000Z", - "nextClose": "2026-05-18T19:59:00.000Z" - }, - "nextPause": { - "start": null, - "end": null - }, - "ticker": "HYS", - "instrumentType": "stock" - } - }, - "0xb6c3dc857845a713d3531cea5ac546f6767992f4": { - "address": "0xb6c3dc857845a713d3531cea5ac546f6767992f4", - "symbol": "ADCO", - "decimals": 6, - "name": "Advertise Coin", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xb6c3dc857845a713d3531cea5ac546f6767992f4.png", - "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0xd945d2031b4c63c0e363304fb771f709b502dc0a": { - "address": "0xd945d2031b4c63c0e363304fb771f709b502dc0a", - "symbol": "BMC", - "decimals": 18, - "name": "BountyMarketCap", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xd945d2031b4c63c0e363304fb771f709b502dc0a.png", - "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0xc95c9e3fa311664b5e744b3c2716547bec2ba7da": { - "address": "0xc95c9e3fa311664b5e744b3c2716547bec2ba7da", - "symbol": "QUBTON", - "decimals": 18, - "name": "Quantum Computing (Ondo Tokenized)", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xc95c9e3fa311664b5e744b3c2716547bec2ba7da.png", - "aggregators": ["CoinGecko", "Rubic", "Rango", "Ondo"], - "occurrences": 4, - "rwaData": { - "market": { - "nextOpen": "2026-05-19T00:05:00.000Z", - "nextClose": "2026-05-18T19:59:00.000Z" - }, - "nextPause": { - "start": null, - "end": null - }, - "ticker": "QUBT", - "instrumentType": "stock" - } - }, - "0x3a16af9ef328d087cc781053a2a2a27549ae6768": { - "address": "0x3a16af9ef328d087cc781053a2a2a27549ae6768", - "symbol": "RDWON", - "decimals": 18, - "name": "Redwire (Ondo Tokenized)", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x3a16af9ef328d087cc781053a2a2a27549ae6768.png", - "aggregators": ["CoinGecko", "Rubic", "Rango", "Ondo"], - "occurrences": 4, - "rwaData": { - "market": { - "nextOpen": "2026-05-18T20:01:00.000Z", - "nextClose": "2026-05-18T19:59:00.000Z" - }, - "nextPause": { - "start": null, - "end": null - }, - "ticker": "RDW", - "instrumentType": "stock" - } - }, - "0x5086bf358635b81d8c47c66d1c8b9e567db70c72": { - "address": "0x5086bf358635b81d8c47c66d1c8b9e567db70c72", - "symbol": "REUSD", - "decimals": 18, - "name": "REUSD", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x5086bf358635b81d8c47c66d1c8b9e567db70c72.png", - "aggregators": ["CoinGecko", "LiFi", "Rubic", "Rango"], - "occurrences": 4 - }, - "0x33ac34da58168de69ce74a66fbad81a88f974bd5": { - "address": "0x33ac34da58168de69ce74a66fbad81a88f974bd5", - "symbol": "REGNON", - "decimals": 18, - "name": "Regeneron Pharmaceuticals (Ondo Tokenized)", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x33ac34da58168de69ce74a66fbad81a88f974bd5.png", - "aggregators": ["CoinGecko", "Rubic", "Rango", "Ondo"], - "occurrences": 4, - "rwaData": { - "market": { - "nextOpen": "2026-05-18T20:01:00.000Z", - "nextClose": "2026-05-18T19:59:00.000Z" - }, - "nextPause": { - "start": "2026-05-19T23:52:00.000Z", - "end": "2026-05-20T00:12:00.000Z" - }, - "ticker": "REGN", - "instrumentType": "stock" - } - }, - "0x36e3b8d9aad0e51ac08e56a75a8f6005bf68535b": { - "address": "0x36e3b8d9aad0e51ac08e56a75a8f6005bf68535b", - "symbol": "RKLBON", - "decimals": 18, - "name": "Rocket Lab (Ondo Tokenized)", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x36e3b8d9aad0e51ac08e56a75a8f6005bf68535b.png", - "aggregators": ["CoinGecko", "Rubic", "Rango", "Ondo"], - "occurrences": 4, - "rwaData": { - "market": { - "nextOpen": "2026-05-18T20:01:00.000Z", - "nextClose": "2026-05-18T19:59:00.000Z" - }, - "nextPause": { - "start": null, - "end": null - }, - "ticker": "RKLB", - "instrumentType": "stock" - } - }, - "0x71e2400cf1cb83204f33794ed326636a71a9aafc": { - "address": "0x71e2400cf1cb83204f33794ed326636a71a9aafc", - "symbol": "SNDKON", - "decimals": 18, - "name": "SanDisk (Ondo Tokenized)", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x71e2400cf1cb83204f33794ed326636a71a9aafc.png", - "aggregators": ["CoinGecko", "Rubic", "Rango", "Ondo"], - "occurrences": 4, - "rwaData": { - "market": { - "nextOpen": "2026-05-18T20:01:00.000Z", - "nextClose": "2026-05-18T19:59:00.000Z" - }, - "nextPause": { - "start": null, - "end": null - }, - "ticker": "SNDK", - "instrumentType": "stock" - } - }, - "0xb53894f82a6b2d3b7365f24932b5bde1c5fb51ff": { - "address": "0xb53894f82a6b2d3b7365f24932b5bde1c5fb51ff", - "symbol": "STXON", - "decimals": 18, - "name": "Seagate (Ondo Tokenized)", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xb53894f82a6b2d3b7365f24932b5bde1c5fb51ff.png", - "aggregators": ["CoinGecko", "Rubic", "Rango", "Ondo"], - "occurrences": 4, - "rwaData": { - "market": { - "nextOpen": "2026-05-18T20:01:00.000Z", - "nextClose": "2026-05-18T19:59:00.000Z" - }, - "nextPause": { - "start": "2026-06-23T23:52:00.000Z", - "end": "2026-06-24T00:12:00.000Z" - }, - "ticker": "STX", - "instrumentType": "stock" - } - }, - "0x8e82a0d7347329703fb6c6a745b1c2b3abb1658c": { - "address": "0x8e82a0d7347329703fb6c6a745b1c2b3abb1658c", - "symbol": "SEDGON", - "decimals": 18, - "name": "SolarEdge Technologies (Ondo Tokenized)", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x8e82a0d7347329703fb6c6a745b1c2b3abb1658c.png", - "aggregators": ["CoinGecko", "Rubic", "Rango", "Ondo"], - "occurrences": 4, - "rwaData": { - "market": { - "nextOpen": "2026-05-19T13:31:00.000Z", - "nextClose": "2026-05-18T19:59:00.000Z" - }, - "nextPause": { - "start": null, - "end": null - }, - "ticker": "SEDG", - "instrumentType": "stock" - } - }, - "0xda81da76070a7377eaeeb2978f0e13c5d57fadb7": { - "address": "0xda81da76070a7377eaeeb2978f0e13c5d57fadb7", - "symbol": "SCCOON", - "decimals": 18, - "name": "Southern Copper (Ondo Tokenized)", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xda81da76070a7377eaeeb2978f0e13c5d57fadb7.png", - "aggregators": ["CoinGecko", "Rubic", "Rango", "Ondo"], - "occurrences": 4, - "rwaData": { - "market": { - "nextOpen": "2026-05-18T20:01:00.000Z", - "nextClose": "2026-05-18T19:59:00.000Z" - }, - "nextPause": { - "start": null, - "end": null - }, - "ticker": "SCCO", - "instrumentType": "stock" - } - }, - "0x39930751d4569f7dd45d1ba46e82cd3680ec2e0a": { - "address": "0x39930751d4569f7dd45d1ba46e82cd3680ec2e0a", - "symbol": "UNPON", - "decimals": 18, - "name": "Union Pacific Corporation (Ondo Tokenized)", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x39930751d4569f7dd45d1ba46e82cd3680ec2e0a.png", - "aggregators": ["CoinGecko", "Rubic", "Rango", "Ondo"], - "occurrences": 4, - "rwaData": { - "market": { - "nextOpen": "2026-05-18T20:01:00.000Z", - "nextClose": "2026-05-18T19:59:00.000Z" - }, - "nextPause": { - "start": "2026-05-28T23:52:00.000Z", - "end": "2026-05-29T00:12:00.000Z" - }, - "ticker": "UNP", - "instrumentType": "stock" - } - }, - "0x0f8887772262c449793890dcd3bf320308db423b": { - "address": "0x0f8887772262c449793890dcd3bf320308db423b", - "symbol": "UECON", - "decimals": 18, - "name": "Uranium Energy (Ondo Tokenized)", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x0f8887772262c449793890dcd3bf320308db423b.png", - "aggregators": ["CoinGecko", "Rubic", "Rango", "Ondo"], - "occurrences": 4, - "rwaData": { - "market": { - "nextOpen": "2026-05-19T08:01:00.000Z", - "nextClose": "2026-05-18T19:59:00.000Z" - }, - "nextPause": { - "start": "2026-06-01T09:00:00.000Z", - "end": "2026-06-01T23:30:00.000Z" - }, - "ticker": "UEC", - "instrumentType": "stock" - } - }, - "0x9ddb2524782684942fad28b44e76552cb7f3f548": { - "address": "0x9ddb2524782684942fad28b44e76552cb7f3f548", - "symbol": "BNOON", - "decimals": 18, - "name": "US Brent Oil Fund (Ondo Tokenized)", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x9ddb2524782684942fad28b44e76552cb7f3f548.png", - "aggregators": ["CoinGecko", "Rubic", "Rango", "Ondo"], - "occurrences": 4, - "rwaData": { - "market": { - "nextOpen": "2026-05-18T20:01:00.000Z", - "nextClose": "2026-05-18T19:59:00.000Z" - }, - "nextPause": { - "start": null, - "end": null - }, - "ticker": "BNO", - "instrumentType": "stock" - } - }, - "0xbca31049ab4782f0ffa9cffcb2cf48e8d6de4fb8": { - "address": "0xbca31049ab4782f0ffa9cffcb2cf48e8d6de4fb8", - "symbol": "OIHON", - "decimals": 18, - "name": "VanEck Oil Services ETF (Ondo Tokenized)", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xbca31049ab4782f0ffa9cffcb2cf48e8d6de4fb8.png", - "aggregators": ["CoinGecko", "Rubic", "Rango", "Ondo"], - "occurrences": 4, - "rwaData": { - "market": { - "nextOpen": "2026-05-18T20:01:00.000Z", - "nextClose": "2026-05-18T19:59:00.000Z" - }, - "nextPause": { - "start": null, - "end": null - }, - "ticker": "OIH", - "instrumentType": "stock" - } - }, - "0xccae8843e26259278c200c6506f6e5a3bdd524cd": { - "address": "0xccae8843e26259278c200c6506f6e5a3bdd524cd", - "symbol": "VNQON", - "decimals": 18, - "name": "Vanguard Real Estate ETF (Ondo Tokenized)", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xccae8843e26259278c200c6506f6e5a3bdd524cd.png", - "aggregators": ["CoinGecko", "Rubic", "Rango", "Ondo"], - "occurrences": 4, - "rwaData": { - "market": { - "nextOpen": "2026-05-18T20:01:00.000Z", - "nextClose": "2026-05-18T19:59:00.000Z" - }, - "nextPause": { - "start": null, - "end": null - }, - "ticker": "VNQ", - "instrumentType": "stock" - } - }, - "0xfc003a764a7b5054cc6fdb6b511f35dec8022751": { - "address": "0xfc003a764a7b5054cc6fdb6b511f35dec8022751", - "symbol": "VRTXON", - "decimals": 18, - "name": "Vertex Pharmaceuticals (Ondo Tokenized)", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xfc003a764a7b5054cc6fdb6b511f35dec8022751.png", - "aggregators": ["CoinGecko", "Rubic", "Rango", "Ondo"], - "occurrences": 4, - "rwaData": { - "market": { - "nextOpen": "2026-05-18T20:01:00.000Z", - "nextClose": "2026-05-18T19:59:00.000Z" - }, - "nextPause": { - "start": null, - "end": null - }, - "ticker": "VRTX", - "instrumentType": "stock" - } - }, - "0xbfe6e76a2fe099392064fbb3e868558c82beb917": { - "address": "0xbfe6e76a2fe099392064fbb3e868558c82beb917", - "symbol": "VFSON", - "decimals": 18, - "name": "VinFast Auto (Ondo Tokenized)", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xbfe6e76a2fe099392064fbb3e868558c82beb917.png", - "aggregators": ["CoinGecko", "Rubic", "Rango", "Ondo"], - "occurrences": 4, - "rwaData": { - "market": { - "nextOpen": "2026-05-19T13:31:00.000Z", - "nextClose": "2026-05-18T19:59:00.000Z" - }, - "nextPause": { - "start": "2026-06-08T09:00:00.000Z", - "end": "2026-06-08T23:30:00.000Z" - }, - "ticker": "VFS", - "instrumentType": "stock" - } - }, - "0x1fb5a8dcd70be750a97eaf8a47bbe74ab7d3183e": { - "address": "0x1fb5a8dcd70be750a97eaf8a47bbe74ab7d3183e", - "symbol": "WMON", - "decimals": 18, - "name": "Waste Management (Ondo Tokenized)", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x1fb5a8dcd70be750a97eaf8a47bbe74ab7d3183e.png", - "aggregators": ["CoinGecko", "Rubic", "Rango", "Ondo"], - "occurrences": 4, - "rwaData": { - "market": { - "nextOpen": "2026-05-18T20:01:00.000Z", - "nextClose": "2026-05-18T19:59:00.000Z" - }, - "nextPause": { - "start": "2026-06-04T23:52:00.000Z", - "end": "2026-06-05T00:12:00.000Z" - }, - "ticker": "WM", - "instrumentType": "stock" - } - }, - "0x44e89d34601b8d0155e16634d2553ef7f54dbab2": { - "address": "0x44e89d34601b8d0155e16634d2553ef7f54dbab2", - "symbol": "WDCON", - "decimals": 18, - "name": "Western Digital (Ondo Tokenized)", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x44e89d34601b8d0155e16634d2553ef7f54dbab2.png", - "aggregators": ["CoinGecko", "Rubic", "Rango", "Ondo"], - "occurrences": 4, - "rwaData": { - "market": { - "nextOpen": "2026-05-18T20:01:00.000Z", - "nextClose": "2026-05-18T19:59:00.000Z" - }, - "nextPause": { - "start": "2026-06-04T23:52:00.000Z", - "end": "2026-06-05T00:12:00.000Z" - }, - "ticker": "WDC", - "instrumentType": "stock" - } - }, - "0x52d134c6db5889fad3542a09eaf7aa90c0fdf9e4": { - "address": "0x52d134c6db5889fad3542a09eaf7aa90c0fdf9e4", - "symbol": "BIBTA", - "decimals": 18, - "name": "Backed IBTA Treasury Bond 1 3yr", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x52d134c6db5889fad3542a09eaf7aa90c0fdf9e4.png", - "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0xfa690b2b6f6b4da518035f1d0aa8b968c23341bb": { - "address": "0xfa690b2b6f6b4da518035f1d0aa8b968c23341bb", - "symbol": "INCEON", - "decimals": 18, - "name": "Franklin Income Equity Focus ETF (Ondo Tokenized)", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xfa690b2b6f6b4da518035f1d0aa8b968c23341bb.png", - "aggregators": ["CoinGecko", "Rubic", "Rango", "Ondo"], - "occurrences": 4, - "rwaData": { - "market": { - "nextOpen": "2026-05-19T13:31:00.000Z", - "nextClose": "2026-05-18T19:59:00.000Z" - }, - "nextPause": { - "start": null, - "end": null - }, - "ticker": "INCE", - "instrumentType": "stock" - } - }, - "0x1cb673005fc58447d881486919c14d8e7c741bb1": { - "address": "0x1cb673005fc58447d881486919c14d8e7c741bb1", - "symbol": "FGDLON", - "decimals": 18, - "name": "Franklin Responsibly Sourced Gold ETF (Ondo Tokenized)", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x1cb673005fc58447d881486919c14d8e7c741bb1.png", - "aggregators": ["CoinGecko", "Rubic", "Rango", "Ondo"], - "occurrences": 4, - "rwaData": { - "market": { - "nextOpen": "2026-05-19T08:01:00.000Z", - "nextClose": "2026-05-18T19:59:00.000Z" - }, - "nextPause": { - "start": null, - "end": null - }, - "ticker": "FGDL", - "instrumentType": "stock" - } - }, - "0x54c1ff361b402f66c13107421e6a431c3375ef24": { - "address": "0x54c1ff361b402f66c13107421e6a431c3375ef24", - "symbol": "FLHYON", - "decimals": 18, - "name": "Franklin High Yield Corporate ETF (Ondo Tokenized)", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x54c1ff361b402f66c13107421e6a431c3375ef24.png", - "aggregators": ["CoinGecko", "Rubic", "Rango", "Ondo"], - "occurrences": 4, - "rwaData": { - "market": { - "nextOpen": "2026-05-19T13:31:00.000Z", - "nextClose": "2026-05-18T19:59:00.000Z" - }, - "nextPause": { - "start": null, - "end": null - }, - "ticker": "FLHY", - "instrumentType": "stock" - } - }, - "0x65a44528e8868166401ea08b549e19552af589db": { - "address": "0x65a44528e8868166401ea08b549e19552af589db", - "symbol": "SRNUSD", - "decimals": 18, - "name": "Strata Senior NUSD", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x65a44528e8868166401ea08b549e19552af589db.png", - "aggregators": ["CoinGecko", "LiFi", "Rubic"], - "occurrences": 3 - }, - "0xfc807058a352b61aeef6a38e2d0fc3990225e772": { - "address": "0xfc807058a352b61aeef6a38e2d0fc3990225e772", - "symbol": "JRNUSD", - "decimals": 18, - "name": "Strata Junior NUSD", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xfc807058a352b61aeef6a38e2d0fc3990225e772.png", - "aggregators": ["CoinGecko", "LiFi", "Rubic"], - "occurrences": 3 - }, - "0x2ed2cc2c858a8a8219fd2f2d9e170285dbd02756": { - "address": "0x2ed2cc2c858a8a8219fd2f2d9e170285dbd02756", - "symbol": "SBET", - "decimals": 18, - "name": "Sports Bet", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x2ed2cc2c858a8a8219fd2f2d9e170285dbd02756.png", - "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0x5dbf760b4fd0cddde0366b33aeb338b2a6d77725": { - "address": "0x5dbf760b4fd0cddde0366b33aeb338b2a6d77725", - "symbol": "KPK_ETH_YIELDV2", - "decimals": 18, - "name": "kpk ETH Yield V2", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x5dbf760b4fd0cddde0366b33aeb338b2a6d77725.png", - "aggregators": ["CoinGecko", "LiFi", "Rubic"], - "occurrences": 3 - }, - "0xbfc66d8cce39e668fd5d3c10fd1b1eabb82c27b7": { - "address": "0xbfc66d8cce39e668fd5d3c10fd1b1eabb82c27b7", - "symbol": "OVO", - "decimals": 18, - "name": "OVO", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xbfc66d8cce39e668fd5d3c10fd1b1eabb82c27b7.png", - "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0xbb50a5341368751024ddf33385ba8cf61fe65ff9": { - "address": "0xbb50a5341368751024ddf33385ba8cf61fe65ff9", - "symbol": "KPK_ETH_PRIMEV2", - "decimals": 18, - "name": "kpk ETH Prime V2", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xbb50a5341368751024ddf33385ba8cf61fe65ff9.png", - "aggregators": ["CoinGecko", "LiFi", "Rubic"], - "occurrences": 3 - }, - "0x4ef53d2caa51c447fdfeeedee8f07fd1962c9ee6": { - "address": "0x4ef53d2caa51c447fdfeeedee8f07fd1962c9ee6", - "symbol": "KPK_USDC_PRIMEV2", - "decimals": 18, - "name": "kpk USDC Prime V2", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x4ef53d2caa51c447fdfeeedee8f07fd1962c9ee6.png", - "aggregators": ["CoinGecko", "LiFi", "Rubic"], - "occurrences": 3 - }, - "0x1ce270557c1f68cfb577b856766310bf8b47fd9c": { - "address": "0x1ce270557c1f68cfb577b856766310bf8b47fd9c", - "symbol": "MONG", - "decimals": 18, - "name": "MongCoin", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x1ce270557c1f68cfb577b856766310bf8b47fd9c.png", - "aggregators": ["CoinMarketCap", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0xde67d97b8770dc98c746a3fc0093c538666eb493": { - "address": "0xde67d97b8770dc98c746a3fc0093c538666eb493", - "symbol": "BROCK", - "decimals": 9, - "name": "Bitrock", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xde67d97b8770dc98c746a3fc0093c538666eb493.png", - "aggregators": ["CoinMarketCap", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0xae4533189c7281501f04ba4b7c37e3aded402902": { - "address": "0xae4533189c7281501f04ba4b7c37e3aded402902", - "symbol": "WFCA", - "decimals": 18, - "name": "World Friendship Cash", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xae4533189c7281501f04ba4b7c37e3aded402902.png", - "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0x8c106eedad96553e64287a5a6839c3cc78afa3d0": { - "address": "0x8c106eedad96553e64287a5a6839c3cc78afa3d0", - "symbol": "GTUSDCP", - "decimals": 18, - "name": "GTUSDCP", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x8c106eedad96553e64287a5a6839c3cc78afa3d0.png", - "aggregators": ["CoinGecko", "LiFi", "Rubic", "Rango"], - "occurrences": 4 - }, - "0xa3c31927a092bd54eb9a0b5dfe01d9db5028bd4f": { - "address": "0xa3c31927a092bd54eb9a0b5dfe01d9db5028bd4f", - "symbol": "ESPR", - "decimals": 9, - "name": "Espresso Bot", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xa3c31927a092bd54eb9a0b5dfe01d9db5028bd4f.png", - "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0x43fcd85e8d9d003d515f886891b7c742ac9f92da": { - "address": "0x43fcd85e8d9d003d515f886891b7c742ac9f92da", - "symbol": "GTWETHP", - "decimals": 18, - "name": "Gauntlet WETH Prime", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x43fcd85e8d9d003d515f886891b7c742ac9f92da.png", - "aggregators": ["CoinGecko", "LiFi", "Rubic"], - "occurrences": 3 - }, - "0xf3557ad5e984211ac8a0874a670344f2c3376471": { - "address": "0xf3557ad5e984211ac8a0874a670344f2c3376471", - "symbol": "GTUSDTP", - "decimals": 18, - "name": "Gauntlet USDT Prime", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xf3557ad5e984211ac8a0874a670344f2c3376471.png", - "aggregators": ["CoinGecko", "LiFi", "Rubic"], - "occurrences": 3 - }, - "0xbeef00b5d83c1188f07a5184230a805639c39f04": { - "address": "0xbeef00b5d83c1188f07a5184230a805639c39f04", - "symbol": "STEAKPYUSD", - "decimals": 18, - "name": "Steakhouse Prime Instant", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xbeef00b5d83c1188f07a5184230a805639c39f04.png", - "aggregators": ["CoinGecko", "LiFi", "Rubic"], - "occurrences": 3 - }, - "0x1cfa5641c01406ab8ac350ded7d735ec41298372": { - "address": "0x1cfa5641c01406ab8ac350ded7d735ec41298372", - "symbol": "CJPY", - "decimals": 18, - "name": "Convertible JPY Token", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x1cfa5641c01406ab8ac350ded7d735ec41298372.png", - "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0xbeef0046fcab1de47e41fb75bb3dc4dfc94108e3": { - "address": "0xbeef0046fcab1de47e41fb75bb3dc4dfc94108e3", - "symbol": "STEAKETH", - "decimals": 18, - "name": "STEAKETH", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xbeef0046fcab1de47e41fb75bb3dc4dfc94108e3.png", - "aggregators": ["CoinGecko", "LiFi", "Rubic", "Rango"], - "occurrences": 4 - }, - "0xbeef003c68896c7d2c3c60d363e8d71a49ab2bf9": { - "address": "0xbeef003c68896c7d2c3c60d363e8d71a49ab2bf9", - "symbol": "STEAKUSDT", - "decimals": 18, - "name": "STEAKUSDT", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xbeef003c68896c7d2c3c60d363e8d71a49ab2bf9.png", - "aggregators": ["CoinGecko", "LiFi", "Rubic", "Rango"], - "occurrences": 4 - }, - "0xf9fb20b8e097904f0ab7d12e9dbee88f2dcd0f16": { - "address": "0xf9fb20b8e097904f0ab7d12e9dbee88f2dcd0f16", - "symbol": "SBC", - "decimals": 18, - "name": "SBC", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xf9fb20b8e097904f0ab7d12e9dbee88f2dcd0f16.png", - "aggregators": ["CoinMarketCap", "Socket", "Rubic", "Rango"], - "occurrences": 4 - }, - "0x66908813cd7676269494b2c6f6dbab8b4f9e95df": { - "address": "0x66908813cd7676269494b2c6f6dbab8b4f9e95df", - "symbol": "CRWVON", - "decimals": 18, - "name": "CoreWeave (Ondo Tokenized)", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x66908813cd7676269494b2c6f6dbab8b4f9e95df.png", - "aggregators": ["CoinGecko", "Rubic", "Rango", "Ondo"], - "occurrences": 4, - "rwaData": { - "market": { - "nextOpen": "2026-05-18T20:01:00.000Z", - "nextClose": "2026-05-18T19:59:00.000Z" - }, - "nextPause": { - "start": null, - "end": null - }, - "ticker": "CRWV", - "instrumentType": "stock" - } - }, - "0x69cade383df52ec02562869da8aa146be08c5c3c": { - "address": "0x69cade383df52ec02562869da8aa146be08c5c3c", - "symbol": "VTRADING", - "decimals": 18, - "name": "Vtrading", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x69cade383df52ec02562869da8aa146be08c5c3c.png", - "aggregators": ["CoinMarketCap", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0xbd660e96d45e7c175512d1ed0ccc119cb980b81a": { - "address": "0xbd660e96d45e7c175512d1ed0ccc119cb980b81a", - "symbol": "EWYON", - "decimals": 18, - "name": "iShares MSCI South Korea ETF (Ondo Tokenized)", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xbd660e96d45e7c175512d1ed0ccc119cb980b81a.png", - "aggregators": ["CoinGecko", "Rubic", "Rango", "Ondo"], - "occurrences": 4, - "rwaData": { - "market": { - "nextOpen": "2026-05-18T20:01:00.000Z", - "nextClose": "2026-05-18T19:59:00.000Z" - }, - "nextPause": { - "start": null, - "end": null - }, - "ticker": "EWY", - "instrumentType": "stock" - } - }, - "0xa7f4195f10f1a62b102bd683eab131d657a6c6e4": { - "address": "0xa7f4195f10f1a62b102bd683eab131d657a6c6e4", - "symbol": "MBAG", - "decimals": 18, - "name": "MoonBag", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xa7f4195f10f1a62b102bd683eab131d657a6c6e4.png", - "aggregators": ["CoinMarketCap", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0x510dd21055188eda378714de3bb5591ffa0cc468": { - "address": "0x510dd21055188eda378714de3bb5591ffa0cc468", - "symbol": "BTGOON", - "decimals": 18, - "name": "BitGo Holdings (Ondo Tokenized)", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x510dd21055188eda378714de3bb5591ffa0cc468.png", - "aggregators": ["CoinGecko", "Rubic", "Rango", "Ondo"], - "occurrences": 4, - "rwaData": { - "market": { - "nextOpen": "2026-05-18T20:01:00.000Z", - "nextClose": "2026-05-18T19:59:00.000Z" - }, - "nextPause": { - "start": null, - "end": null - }, - "ticker": "BTGO", - "instrumentType": "stock" - } - }, - "0xdb85f6685950e285b1e611037bebe5b34e2b7d78": { - "address": "0xdb85f6685950e285b1e611037bebe5b34e2b7d78", - "symbol": "WZANO", - "decimals": 18, - "name": "Wrapped Zano", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xdb85f6685950e285b1e611037bebe5b34e2b7d78.png", - "aggregators": ["CoinGecko", "Socket", "Rubic", "Rango"], - "occurrences": 4 - }, - "0x0a00c19246fc41b2524d56c87ec44ce8b30ba0f8": { - "address": "0x0a00c19246fc41b2524d56c87ec44ce8b30ba0f8", - "symbol": "SQQQON", - "decimals": 18, - "name": "ProShares UltraPro Short QQQ (Ondo Tokenized)", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x0a00c19246fc41b2524d56c87ec44ce8b30ba0f8.png", - "aggregators": ["CoinGecko", "Rubic", "Rango", "Ondo"], - "occurrences": 4, - "rwaData": { - "market": { - "nextOpen": "2026-05-18T20:01:00.000Z", - "nextClose": "2026-05-18T19:59:00.000Z" - }, - "nextPause": { - "start": null, - "end": null - }, - "ticker": "SQQQ", - "instrumentType": "stock" - } - }, - "0x171120219d3223e008558654ec3254a0f206edb2": { - "address": "0x171120219d3223e008558654ec3254a0f206edb2", - "symbol": "XX", - "decimals": 9, - "name": "XX Network", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x171120219d3223e008558654ec3254a0f206edb2.png", - "aggregators": ["CoinMarketCap", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0xd5cce260e7a755ddf0fb9cdf06443d593aaeaa13": { - "address": "0xd5cce260e7a755ddf0fb9cdf06443d593aaeaa13", - "symbol": "KPK_USDC_YIELDV2", - "decimals": 18, - "name": "kpk USDC Yield V2", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xd5cce260e7a755ddf0fb9cdf06443d593aaeaa13.png", - "aggregators": ["CoinGecko", "LiFi", "Rubic"], - "occurrences": 3 - }, - "0xb7b1570e26315baad369b8ea0a943b7f140db9eb": { - "address": "0xb7b1570e26315baad369b8ea0a943b7f140db9eb", - "symbol": "DPS", - "decimals": 9, - "name": "DEEPSPACE", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xb7b1570e26315baad369b8ea0a943b7f140db9eb.png", - "aggregators": ["CoinMarketCap", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0x419905009e4656fdc02418c7df35b1e61ed5f726": { - "address": "0x419905009e4656fdc02418c7df35b1e61ed5f726", - "symbol": "RSUP", - "decimals": 18, - "name": "Resupply", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x419905009e4656fdc02418c7df35b1e61ed5f726.png", - "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0xe72fe64840f4ef80e3ec73a1c749491b5c938cb9": { - "address": "0xe72fe64840f4ef80e3ec73a1c749491b5c938cb9", - "symbol": "NTBILL", - "decimals": 6, - "name": "Nest Treasury Vault", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xe72fe64840f4ef80e3ec73a1c749491b5c938cb9.png", - "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0xdfc3829b127761a3218bfcee7fc92e1232c9d116": { - "address": "0xdfc3829b127761a3218bfcee7fc92e1232c9d116", - "symbol": "PRCY", - "decimals": 8, - "name": "PRivaCY Coin", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xdfc3829b127761a3218bfcee7fc92e1232c9d116.png", - "aggregators": ["CoinMarketCap", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0xeb08d539be0f6a6c90ea24276196e348f5688a02": { - "address": "0xeb08d539be0f6a6c90ea24276196e348f5688a02", - "symbol": "FCXON", - "decimals": 18, - "name": "Freeport-McMoRan (Ondo Tokenized)", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xeb08d539be0f6a6c90ea24276196e348f5688a02.png", - "aggregators": ["CoinGecko", "Rubic", "Rango", "Ondo"], - "occurrences": 4, - "rwaData": { - "market": { - "nextOpen": "2026-05-18T20:01:00.000Z", - "nextClose": "2026-05-18T19:59:00.000Z" - }, - "nextPause": { - "start": null, - "end": null - }, - "ticker": "FCX", - "instrumentType": "stock" - } - }, - "0xf1883461ec7bd883a3668749c5cf5f351080d059": { - "address": "0xf1883461ec7bd883a3668749c5cf5f351080d059", - "symbol": "PPLTON", - "decimals": 18, - "name": "abrdn Physical Platinum Shares ETF (Ondo Tokenized)", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xf1883461ec7bd883a3668749c5cf5f351080d059.png", - "aggregators": ["CoinGecko", "Rubic", "Rango", "Ondo"], - "occurrences": 4, - "rwaData": { - "market": { - "nextOpen": "2026-05-18T20:01:00.000Z", - "nextClose": "2026-05-18T19:59:00.000Z" - }, - "nextPause": { - "start": "2026-05-17T23:50:00.000Z", - "end": "2026-05-18T17:00:00.000Z" - }, - "ticker": "PPLT", - "instrumentType": "stock" - } - }, - "0xec3e2998c87ac9bced45381f84932c877cad6930": { - "address": "0xec3e2998c87ac9bced45381f84932c877cad6930", - "symbol": "MCDD", - "decimals": 18, - "name": "Dinari MCD", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xec3e2998c87ac9bced45381f84932c877cad6930.png", - "aggregators": ["CoinGecko", "Rubic", "Sonarwatch"], - "occurrences": 3 - }, - "0xf7248e588f88655d4a5230c4cec2db2cf4438ff0": { - "address": "0xf7248e588f88655d4a5230c4cec2db2cf4438ff0", - "symbol": "TQQQD", - "decimals": 18, - "name": "Dinari TQQQ", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xf7248e588f88655d4a5230c4cec2db2cf4438ff0.png", - "aggregators": ["CoinGecko", "Rubic", "Sonarwatch"], - "occurrences": 3 - }, - "0x4026f916beda6ca2b347c44517a83f5efab3f569": { - "address": "0x4026f916beda6ca2b347c44517a83f5efab3f569", - "symbol": "JPMD", - "decimals": 18, - "name": "Dinari JPM", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x4026f916beda6ca2b347c44517a83f5efab3f569.png", - "aggregators": ["CoinGecko", "Rubic", "Sonarwatch"], - "occurrences": 3 - }, - "0x33e5b290badbd8ba868b51a72ab6062601f9e9b2": { - "address": "0x33e5b290badbd8ba868b51a72ab6062601f9e9b2", - "symbol": "FBTCD", - "decimals": 18, - "name": "Dinari FBTC", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x33e5b290badbd8ba868b51a72ab6062601f9e9b2.png", - "aggregators": ["CoinGecko", "Rubic", "Sonarwatch"], - "occurrences": 3 - }, - "0xf0d7ee633636bae1d502a96f1130b00deaf06dc4": { - "address": "0xf0d7ee633636bae1d502a96f1130b00deaf06dc4", - "symbol": "ARKXD", - "decimals": 18, - "name": "Dinari ARKX", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xf0d7ee633636bae1d502a96f1130b00deaf06dc4.png", - "aggregators": ["CoinGecko", "Rubic", "Sonarwatch"], - "occurrences": 3 - }, - "0x67637766495858fd3c0a0e65a1feb91f78479753": { - "address": "0x67637766495858fd3c0a0e65a1feb91f78479753", - "symbol": "BAD", - "decimals": 18, - "name": "Dinari BA", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x67637766495858fd3c0a0e65a1feb91f78479753.png", - "aggregators": ["CoinGecko", "Rubic", "Sonarwatch"], - "occurrences": 3 - }, - "0xf12a38e6e51913ea04d70dba97d7420a13fd7941": { - "address": "0xf12a38e6e51913ea04d70dba97d7420a13fd7941", - "symbol": "BRRRD", - "decimals": 18, - "name": "Dinari BRRR", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xf12a38e6e51913ea04d70dba97d7420a13fd7941.png", - "aggregators": ["CoinGecko", "Rubic", "Sonarwatch"], - "occurrences": 3 - }, - "0x0c7ec64a7b3416bc3578e02d4b1e5763da756183": { - "address": "0x0c7ec64a7b3416bc3578e02d4b1e5763da756183", - "symbol": "BTCOD", - "decimals": 18, - "name": "Dinari BTCO", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x0c7ec64a7b3416bc3578e02d4b1e5763da756183.png", - "aggregators": ["CoinGecko", "Rubic", "Sonarwatch"], - "occurrences": 3 - }, - "0x084382d1cc4f4dfd1769b1cc1ac2a9b1f8365e90": { - "address": "0x084382d1cc4f4dfd1769b1cc1ac2a9b1f8365e90", - "symbol": "MODE", - "decimals": 18, - "name": "MODE", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x084382d1cc4f4dfd1769b1cc1ac2a9b1f8365e90.png", - "aggregators": ["CoinGecko", "Socket", "Rubic", "Rango"], - "occurrences": 4 - }, - "0x6c1aa3dd4195522ffd963215a13416324eaf9216": { - "address": "0x6c1aa3dd4195522ffd963215a13416324eaf9216", - "symbol": "BACD", - "decimals": 18, - "name": "Dinari BAC", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x6c1aa3dd4195522ffd963215a13416324eaf9216.png", - "aggregators": ["CoinGecko", "Rubic", "Sonarwatch"], - "occurrences": 3 - }, - "0x18c278edc2ed4ed9d23a8a73a3a6ed014094b784": { - "address": "0x18c278edc2ed4ed9d23a8a73a3a6ed014094b784", - "symbol": "BTCWD", - "decimals": 18, - "name": "Dinari BTCW", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x18c278edc2ed4ed9d23a8a73a3a6ed014094b784.png", - "aggregators": ["CoinGecko", "Rubic", "Sonarwatch"], - "occurrences": 3 - }, - "0x4cfba646ca9c05ad653fea94d485d15cfc449b2d": { - "address": "0x4cfba646ca9c05ad653fea94d485d15cfc449b2d", - "symbol": "CATD", - "decimals": 18, - "name": "Dinari CAT", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x4cfba646ca9c05ad653fea94d485d15cfc449b2d.png", - "aggregators": ["CoinGecko", "Rubic", "Sonarwatch"], - "occurrences": 3 - }, - "0x81b11d330d9af45599be0580b9bcba7f4e57bd35": { - "address": "0x81b11d330d9af45599be0580b9bcba7f4e57bd35", - "symbol": "DEFID", - "decimals": 18, - "name": "Dinari DEFI", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x81b11d330d9af45599be0580b9bcba7f4e57bd35.png", - "aggregators": ["CoinGecko", "Rubic", "Sonarwatch"], - "occurrences": 3 - }, - "0xaedc5e1e05c2fb8840f6d6df4e8f63e983c32bd5": { - "address": "0xaedc5e1e05c2fb8840f6d6df4e8f63e983c32bd5", - "symbol": "HODLD", - "decimals": 18, - "name": "Dinari HODL", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xaedc5e1e05c2fb8840f6d6df4e8f63e983c32bd5.png", - "aggregators": ["CoinGecko", "Rubic", "Sonarwatch"], - "occurrences": 3 - }, - "0x103d7c5c657cb92f4acec796da416d52a6a86bf6": { - "address": "0x103d7c5c657cb92f4acec796da416d52a6a86bf6", - "symbol": "AZND", - "decimals": 18, - "name": "Dinari AZN", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x103d7c5c657cb92f4acec796da416d52a6a86bf6.png", - "aggregators": ["CoinGecko", "Rubic", "Sonarwatch"], - "occurrences": 3 - }, - "0xcc195aa6859fbbe792b9e0b18c74c00a0e90c1f8": { - "address": "0xcc195aa6859fbbe792b9e0b18c74c00a0e90c1f8", - "symbol": "HOODD", - "decimals": 18, - "name": "Dinari HOOD", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xcc195aa6859fbbe792b9e0b18c74c00a0e90c1f8.png", - "aggregators": ["CoinGecko", "Rubic", "Sonarwatch"], - "occurrences": 3 - }, - "0x47db0ac0d6ad7765007f983184b12ae137f8ccac": { - "address": "0x47db0ac0d6ad7765007f983184b12ae137f8ccac", - "symbol": "HUTD", - "decimals": 18, - "name": "Dinari HUT", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x47db0ac0d6ad7765007f983184b12ae137f8ccac.png", - "aggregators": ["CoinGecko", "Rubic", "Sonarwatch"], - "occurrences": 3 - }, - "0x4be7aeda82870609cd934babc3a11b886b8cdb02": { - "address": "0x4be7aeda82870609cd934babc3a11b886b8cdb02", - "symbol": "IAUD", - "decimals": 18, - "name": "Dinari IAU", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x4be7aeda82870609cd934babc3a11b886b8cdb02.png", - "aggregators": ["CoinGecko", "Rubic", "Sonarwatch"], - "occurrences": 3 - }, - "0x842227039640c7d38e3b307a3ab556a7baeee730": { - "address": "0x842227039640c7d38e3b307a3ab556a7baeee730", - "symbol": "VD", - "decimals": 18, - "name": "Dinari V", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x842227039640c7d38e3b307a3ab556a7baeee730.png", - "aggregators": ["CoinGecko", "Rubic", "Sonarwatch"], - "occurrences": 3 - }, - "0x9f9e5c45d95d66e85e8a878007bf27ca2d987394": { - "address": "0x9f9e5c45d95d66e85e8a878007bf27ca2d987394", - "symbol": "VWOD", - "decimals": 18, - "name": "Dinari VWO", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x9f9e5c45d95d66e85e8a878007bf27ca2d987394.png", - "aggregators": ["CoinGecko", "Rubic", "Sonarwatch"], - "occurrences": 3 - }, - "0xc114678c6e4654d041b2006c90f08478b444c4e2": { - "address": "0xc114678c6e4654d041b2006c90f08478b444c4e2", - "symbol": "EDX", - "decimals": 18, - "name": "edeXa", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xc114678c6e4654d041b2006c90f08478b444c4e2.png", - "aggregators": ["CoinMarketCap", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0x05fed61f7a3eca96dc7f9a41b38fa7c5f0e62158": { - "address": "0x05fed61f7a3eca96dc7f9a41b38fa7c5f0e62158", - "symbol": "KOD", - "decimals": 18, - "name": "Dinari KO", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x05fed61f7a3eca96dc7f9a41b38fa7c5f0e62158.png", - "aggregators": ["CoinGecko", "Rubic", "Sonarwatch"], - "occurrences": 3 - }, - "0x251530c7f24d6904a31425b9afa24b0e1e5aafde": { - "address": "0x251530c7f24d6904a31425b9afa24b0e1e5aafde", - "symbol": "PHOD", - "decimals": 18, - "name": "Dinari PHO", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x251530c7f24d6904a31425b9afa24b0e1e5aafde.png", - "aggregators": ["CoinGecko", "Rubic", "Sonarwatch"], - "occurrences": 3 - }, - "0x0af5b873df94efeba34c0b0a9fa34a8c13e078cd": { - "address": "0x0af5b873df94efeba34c0b0a9fa34a8c13e078cd", - "symbol": "YUMD", - "decimals": 18, - "name": "Dinari YUM", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x0af5b873df94efeba34c0b0a9fa34a8c13e078cd.png", - "aggregators": ["CoinGecko", "Rubic", "Sonarwatch"], - "occurrences": 3 - }, - "0x058d411ab9911f90c74f471bdc9d2bb4cf9b309c": { - "address": "0x058d411ab9911f90c74f471bdc9d2bb4cf9b309c", - "symbol": "RIZ", - "decimals": 8, - "name": "Rivalz Network", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x058d411ab9911f90c74f471bdc9d2bb4cf9b309c.png", - "aggregators": ["CoinMarketCap", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0x51129dad3db1c28d693616308ae1062e43280ed7": { - "address": "0x51129dad3db1c28d693616308ae1062e43280ed7", - "symbol": "ZAI", - "decimals": 18, - "name": "Zesh AI Layer", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x51129dad3db1c28d693616308ae1062e43280ed7.png", - "aggregators": ["CoinGecko", "Rubic", "Sonarwatch"], - "occurrences": 3 - }, - "0xaa88ab7413f909eef5bd69bb2a2b6f97dc6743b8": { - "address": "0xaa88ab7413f909eef5bd69bb2a2b6f97dc6743b8", - "symbol": "PGD", - "decimals": 18, - "name": "Dinari PG", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xaa88ab7413f909eef5bd69bb2a2b6f97dc6743b8.png", - "aggregators": ["CoinGecko", "Rubic", "Sonarwatch"], - "occurrences": 3 - }, - "0x328a9bc033b22de0b82762c49762ce1440b45d4b": { - "address": "0x328a9bc033b22de0b82762c49762ce1440b45d4b", - "symbol": "PALLD", - "decimals": 18, - "name": "Dinari PALL", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x328a9bc033b22de0b82762c49762ce1440b45d4b.png", - "aggregators": ["CoinGecko", "Rubic", "Sonarwatch"], - "occurrences": 3 - }, - "0x09de9c8fbe90271e8886b55d66e3b37130e3a3da": { - "address": "0x09de9c8fbe90271e8886b55d66e3b37130e3a3da", - "symbol": "CCLD", - "decimals": 18, - "name": "Dinari CCL", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x09de9c8fbe90271e8886b55d66e3b37130e3a3da.png", - "aggregators": ["CoinGecko", "Rubic", "Sonarwatch"], - "occurrences": 3 - }, - "0x9ba08fa0428db35dde85d6c515184642c6301199": { - "address": "0x9ba08fa0428db35dde85d6c515184642c6301199", - "symbol": "FD", - "decimals": 18, - "name": "Dinari F", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x9ba08fa0428db35dde85d6c515184642c6301199.png", - "aggregators": ["CoinGecko", "Rubic", "Sonarwatch"], - "occurrences": 3 - }, - "0xc3260a0e1dd1f7ac6508ae29cb00f4fa4b544ba7": { - "address": "0xc3260a0e1dd1f7ac6508ae29cb00f4fa4b544ba7", - "symbol": "RKLBD", - "decimals": 18, - "name": "Dinari RKLB", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xc3260a0e1dd1f7ac6508ae29cb00f4fa4b544ba7.png", - "aggregators": ["CoinGecko", "Rubic", "Sonarwatch"], - "occurrences": 3 - }, - "0x52926f7f983d3d7ddcbe644a809d67bbe4a9e785": { - "address": "0x52926f7f983d3d7ddcbe644a809d67bbe4a9e785", - "symbol": "XOMD", - "decimals": 18, - "name": "Dinari XOM", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x52926f7f983d3d7ddcbe644a809d67bbe4a9e785.png", - "aggregators": ["CoinGecko", "Rubic", "Sonarwatch"], - "occurrences": 3 - }, - "0x9c879a1c2021bd0594750c148f37176395be0b8f": { - "address": "0x9c879a1c2021bd0594750c148f37176395be0b8f", - "symbol": "SPSKD", - "decimals": 18, - "name": "Dinari SPSK", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x9c879a1c2021bd0594750c148f37176395be0b8f.png", - "aggregators": ["CoinGecko", "Rubic", "Sonarwatch"], - "occurrences": 3 - }, - "0x5e796f7e42117ca82b1db3eb227bef11b7a48aa0": { - "address": "0x5e796f7e42117ca82b1db3eb227bef11b7a48aa0", - "symbol": "WALRFD", - "decimals": 18, - "name": "Dinari WALRF", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x5e796f7e42117ca82b1db3eb227bef11b7a48aa0.png", - "aggregators": ["CoinGecko", "Rubic", "Sonarwatch"], - "occurrences": 3 - }, - "0xe5ad37798daa0231279859d4699cf8f466e8b020": { - "address": "0xe5ad37798daa0231279859d4699cf8f466e8b020", - "symbol": "COSTD", - "decimals": 18, - "name": "Dinari COST", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xe5ad37798daa0231279859d4699cf8f466e8b020.png", - "aggregators": ["CoinGecko", "Rubic", "Sonarwatch"], - "occurrences": 3 - }, - "0x0a27c31f087cd3d30cdad339731bede4194531a4": { - "address": "0x0a27c31f087cd3d30cdad339731bede4194531a4", - "symbol": "CSCOD", - "decimals": 18, - "name": "Dinari CSCO", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x0a27c31f087cd3d30cdad339731bede4194531a4.png", - "aggregators": ["CoinGecko", "Rubic", "Sonarwatch"], - "occurrences": 3 - }, - "0x993d9ca16686746fef44e320e7f091578710cd18": { - "address": "0x993d9ca16686746fef44e320e7f091578710cd18", - "symbol": "ITAD", - "decimals": 18, - "name": "Dinari ITA", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x993d9ca16686746fef44e320e7f091578710cd18.png", - "aggregators": ["CoinGecko", "Rubic", "Sonarwatch"], - "occurrences": 3 - }, - "0xc4c6213024d9adc5132707942905918df7fbbbe8": { - "address": "0xc4c6213024d9adc5132707942905918df7fbbbe8", - "symbol": "EZBCD", - "decimals": 18, - "name": "Dinari EZBC", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xc4c6213024d9adc5132707942905918df7fbbbe8.png", - "aggregators": ["CoinGecko", "Rubic", "Sonarwatch"], - "occurrences": 3 - }, - "0xcf5905de7d83dce7cd109485c42723bb76eba5a6": { - "address": "0xcf5905de7d83dce7cd109485c42723bb76eba5a6", - "symbol": "EROD", - "decimals": 18, - "name": "Dinari ERO", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xcf5905de7d83dce7cd109485c42723bb76eba5a6.png", - "aggregators": ["CoinGecko", "Rubic", "Sonarwatch"], - "occurrences": 3 - }, - "0xe36fb561dcc177492da42a6ba5fd4a9d0987bfe2": { - "address": "0xe36fb561dcc177492da42a6ba5fd4a9d0987bfe2", - "symbol": "SIVRD", - "decimals": 18, - "name": "Dinari SIVR", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xe36fb561dcc177492da42a6ba5fd4a9d0987bfe2.png", - "aggregators": ["CoinGecko", "Rubic", "Sonarwatch"], - "occurrences": 3 - }, - "0xb49e40e97b41b253ecfe6b01a11f1a4f021724f9": { - "address": "0xb49e40e97b41b253ecfe6b01a11f1a4f021724f9", - "symbol": "SONYD", - "decimals": 18, - "name": "Dinari SONY", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xb49e40e97b41b253ecfe6b01a11f1a4f021724f9.png", - "aggregators": ["CoinGecko", "Rubic", "Sonarwatch"], - "occurrences": 3 - }, - "0xf373c3d96996ede40ea161f6929fd457cda8111c": { - "address": "0xf373c3d96996ede40ea161f6929fd457cda8111c", - "symbol": "DALD", - "decimals": 18, - "name": "Dinari DAL", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xf373c3d96996ede40ea161f6929fd457cda8111c.png", - "aggregators": ["CoinGecko", "Rubic", "Sonarwatch"], - "occurrences": 3 - }, - "0xe7ae30c03395d66f30a26c49c91edae151747911": { - "address": "0xe7ae30c03395d66f30a26c49c91edae151747911", - "symbol": "CLBTC", - "decimals": 18, - "name": "clBTC", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xe7ae30c03395d66f30a26c49c91edae151747911.png", - "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0x86ccbf2471be7ebca2c2c92a12fcf7089a44b4df": { - "address": "0x86ccbf2471be7ebca2c2c92a12fcf7089a44b4df", - "symbol": "SBUXD", - "decimals": 18, - "name": "Dinari SBUX", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x86ccbf2471be7ebca2c2c92a12fcf7089a44b4df.png", - "aggregators": ["CoinGecko", "Rubic", "Sonarwatch"], - "occurrences": 3 - }, - "0x088828f0a8e2dc8511e957230f4681371451fa1d": { - "address": "0x088828f0a8e2dc8511e957230f4681371451fa1d", - "symbol": "BOXXD", - "decimals": 18, - "name": "Dinari BOXX", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x088828f0a8e2dc8511e957230f4681371451fa1d.png", - "aggregators": ["CoinGecko", "Rubic", "Sonarwatch"], - "occurrences": 3 - }, - "0x2711018a5489df0d9816bdb7670d58ba23fb2d5e": { - "address": "0x2711018a5489df0d9816bdb7670d58ba23fb2d5e", - "symbol": "SPTED", - "decimals": 18, - "name": "Dinari SPTE", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x2711018a5489df0d9816bdb7670d58ba23fb2d5e.png", - "aggregators": ["CoinGecko", "Rubic", "Sonarwatch"], - "occurrences": 3 - }, - "0xc580919e2e4b083321f9e4c5ed56bc862f275916": { - "address": "0xc580919e2e4b083321f9e4c5ed56bc862f275916", - "symbol": "SOXLD", - "decimals": 18, - "name": "Dinari SOXL", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xc580919e2e4b083321f9e4c5ed56bc862f275916.png", - "aggregators": ["CoinGecko", "Rubic", "Sonarwatch"], - "occurrences": 3 - }, - "0xdf9be795fee855aaeb82dc112b0f27b62524a17b": { - "address": "0xdf9be795fee855aaeb82dc112b0f27b62524a17b", - "symbol": "SPUSD", - "decimals": 18, - "name": "Dinari SPUS", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xdf9be795fee855aaeb82dc112b0f27b62524a17b.png", - "aggregators": ["CoinGecko", "Rubic", "Sonarwatch"], - "occurrences": 3 - }, - "0x43c72ea1736072f42f785e704e5244cc5b9a6779": { - "address": "0x43c72ea1736072f42f785e704e5244cc5b9a6779", - "symbol": "GLDD", - "decimals": 18, - "name": "Dinari GLD", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x43c72ea1736072f42f785e704e5244cc5b9a6779.png", - "aggregators": ["CoinGecko", "Rubic", "Sonarwatch"], - "occurrences": 3 - }, - "0xc49da7892155ccc603f0b88eaedaa3b57910096f": { - "address": "0xc49da7892155ccc603f0b88eaedaa3b57910096f", - "symbol": "CVXD", - "decimals": 18, - "name": "Dinari CVX", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xc49da7892155ccc603f0b88eaedaa3b57910096f.png", - "aggregators": ["CoinGecko", "Rubic", "Sonarwatch"], - "occurrences": 3 - }, - "0xf0e9e98ef4b78ddfbbfafba519345d877eb7a81e": { - "address": "0xf0e9e98ef4b78ddfbbfafba519345d877eb7a81e", - "symbol": "EEMD", - "decimals": 18, - "name": "Dinari EEM", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xf0e9e98ef4b78ddfbbfafba519345d877eb7a81e.png", - "aggregators": ["CoinGecko", "Rubic", "Sonarwatch"], - "occurrences": 3 - }, - "0x88cee7bf66435f6fdbb681a6a522f26598fe39a2": { - "address": "0x88cee7bf66435f6fdbb681a6a522f26598fe39a2", - "symbol": "HYMBD", - "decimals": 18, - "name": "Dinari HYMB", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x88cee7bf66435f6fdbb681a6a522f26598fe39a2.png", - "aggregators": ["CoinGecko", "Rubic", "Sonarwatch"], - "occurrences": 3 - }, - "0x52bd2411f090af9b1fc688fcf3c4242ab0e7ddaf": { - "address": "0x52bd2411f090af9b1fc688fcf3c4242ab0e7ddaf", - "symbol": "MELID", - "decimals": 18, - "name": "Dinari MELI", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x52bd2411f090af9b1fc688fcf3c4242ab0e7ddaf.png", - "aggregators": ["CoinGecko", "Rubic", "Sonarwatch"], - "occurrences": 3 - }, - "0x3482968ed0e10bf7446706a6680e8a8f486f61b0": { - "address": "0x3482968ed0e10bf7446706a6680e8a8f486f61b0", - "symbol": "SNOWD", - "decimals": 18, - "name": "Dinari SNOW", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x3482968ed0e10bf7446706a6680e8a8f486f61b0.png", - "aggregators": ["CoinGecko", "Rubic", "Sonarwatch"], - "occurrences": 3 - }, - "0xfae8f97cafea5133159992e83a4b30e1aae88328": { - "address": "0xfae8f97cafea5133159992e83a4b30e1aae88328", - "symbol": "SPWOD", - "decimals": 18, - "name": "Dinari SPWO", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xfae8f97cafea5133159992e83a4b30e1aae88328.png", - "aggregators": ["CoinGecko", "Rubic", "Sonarwatch"], - "occurrences": 3 - }, - "0x1194e99f23c8b99cb55a328160aeb0bb010bf0c3": { - "address": "0x1194e99f23c8b99cb55a328160aeb0bb010bf0c3", - "symbol": "UFOD", - "decimals": 18, - "name": "Dinari UFO", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x1194e99f23c8b99cb55a328160aeb0bb010bf0c3.png", - "aggregators": ["CoinGecko", "Rubic", "Sonarwatch"], - "occurrences": 3 - }, - "0x90fa6faf82ddcbbbd48f66ee70b8515a7a626ac3": { - "address": "0x90fa6faf82ddcbbbd48f66ee70b8515a7a626ac3", - "symbol": "TJXD", - "decimals": 18, - "name": "Dinari TJX", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x90fa6faf82ddcbbbd48f66ee70b8515a7a626ac3.png", - "aggregators": ["CoinGecko", "Rubic", "Sonarwatch"], - "occurrences": 3 - }, - "0x24d7ad9402717f429a81925fe7643b78918eda8b": { - "address": "0x24d7ad9402717f429a81925fe7643b78918eda8b", - "symbol": "XION", - "decimals": 6, - "name": "XION", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x24d7ad9402717f429a81925fe7643b78918eda8b.png", - "aggregators": ["CoinMarketCap", "Rubic", "Squid", "Sonarwatch"], - "occurrences": 4 - }, - "0x5197ab79b03f1479cbf391a2030b8883546ff251": { - "address": "0x5197ab79b03f1479cbf391a2030b8883546ff251", - "symbol": "SOR", - "decimals": 18, - "name": "Sorcery Finance", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x5197ab79b03f1479cbf391a2030b8883546ff251.png", - "aggregators": ["CoinMarketCap", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0xaf614642e58c65b71a3aaab2d3afc20e5cb93246": { - "address": "0xaf614642e58c65b71a3aaab2d3afc20e5cb93246", - "symbol": "WEATD", - "decimals": 18, - "name": "Dinari WEAT", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xaf614642e58c65b71a3aaab2d3afc20e5cb93246.png", - "aggregators": ["CoinGecko", "Rubic", "Sonarwatch"], - "occurrences": 3 - }, - "0x3bce5cb273f0f148010bbea2470e7b5df84c7812": { - "address": "0x3bce5cb273f0f148010bbea2470e7b5df84c7812", - "symbol": "SCETH", - "decimals": 18, - "name": "Rings scETH", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x3bce5cb273f0f148010bbea2470e7b5df84c7812.png", - "aggregators": ["CoinGecko", "Rubic", "Sonarwatch"], - "occurrences": 3 - }, - "0x9e6dbde4211e6853b33b8bcd5ce82144997c63ba": { - "address": "0x9e6dbde4211e6853b33b8bcd5ce82144997c63ba", - "symbol": "SQD", - "decimals": 18, - "name": "Dinari SQ", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x9e6dbde4211e6853b33b8bcd5ce82144997c63ba.png", - "aggregators": ["CoinGecko", "Rubic", "Sonarwatch"], - "occurrences": 3 - }, - "0x461ad31f69e694e2e20b2070d8be1105626110c3": { - "address": "0x461ad31f69e694e2e20b2070d8be1105626110c3", - "symbol": "RBLXD", - "decimals": 18, - "name": "Dinari RBLX", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x461ad31f69e694e2e20b2070d8be1105626110c3.png", - "aggregators": ["CoinGecko", "Rubic", "Sonarwatch"], - "occurrences": 3 - }, - "0x92217ccaedbdbc54c76c15fea18823db1558fdc9": { - "address": "0x92217ccaedbdbc54c76c15fea18823db1558fdc9", - "symbol": "FULA", - "decimals": 18, - "name": "Functionland", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x92217ccaedbdbc54c76c15fea18823db1558fdc9.png", - "aggregators": ["CoinMarketCap", "Rubic", "Sonarwatch"], - "occurrences": 3 - }, - "0xd71b200bf061509b85df50cc0d8cdee8818a4577": { - "address": "0xd71b200bf061509b85df50cc0d8cdee8818a4577", - "symbol": "COIND", - "decimals": 18, - "name": "Dinari COIN", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xd71b200bf061509b85df50cc0d8cdee8818a4577.png", - "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0xff33a6b3dc0127862eedd3978609404b22298a54": { - "address": "0xff33a6b3dc0127862eedd3978609404b22298a54", - "symbol": "GORPLES", - "decimals": 18, - "name": "GorplesCoin", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xff33a6b3dc0127862eedd3978609404b22298a54.png", - "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0x76bf2d1e6dfda645c0c17440b17eccc181dfc351": { - "address": "0x76bf2d1e6dfda645c0c17440b17eccc181dfc351", - "symbol": "YBETH", - "decimals": 18, - "name": "Veno Yield Bearing ETH", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x76bf2d1e6dfda645c0c17440b17eccc181dfc351.png", - "aggregators": ["CoinGecko", "Rubic", "Sonarwatch"], - "occurrences": 3 - }, - "0xf3e07812ebc8604fddb0aa35ff79a03f48f48948": { - "address": "0xf3e07812ebc8604fddb0aa35ff79a03f48f48948", - "symbol": "JART", - "decimals": 18, - "name": "JournArt OLD", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xf3e07812ebc8604fddb0aa35ff79a03f48f48948.png", - "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0xfa59075dfce274e028b58bddfcc3d709960f594a": { - "address": "0xfa59075dfce274e028b58bddfcc3d709960f594a", - "symbol": "YBUSD", - "decimals": 18, - "name": "Veno Yield Bearing USD", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xfa59075dfce274e028b58bddfcc3d709960f594a.png", - "aggregators": ["CoinGecko", "Rubic", "Sonarwatch"], - "occurrences": 3 - }, - "0x90b7e285ab6cf4e3a2487669dba3e339db8a3320": { - "address": "0x90b7e285ab6cf4e3a2487669dba3e339db8a3320", - "symbol": "DUCKIES", - "decimals": 8, - "name": "Yellow Duckies", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x90b7e285ab6cf4e3a2487669dba3e339db8a3320.png", - "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0x572975ff6d5136c81c8d7448b6361ef9eefe1ab0": { - "address": "0x572975ff6d5136c81c8d7448b6361ef9eefe1ab0", - "symbol": "WSTUSDT", - "decimals": 18, - "name": "Wrapped Staked USDT", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x572975ff6d5136c81c8d7448b6361ef9eefe1ab0.png", - "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0x6967f0974d76d34e140cae27efea32cdf546b58e": { - "address": "0x6967f0974d76d34e140cae27efea32cdf546b58e", - "symbol": "GMRT", - "decimals": 18, - "name": "The Game Company", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x6967f0974d76d34e140cae27efea32cdf546b58e.png", - "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0xade6057fcafa57d6d51ffa341c64ce4814995995": { - "address": "0xade6057fcafa57d6d51ffa341c64ce4814995995", - "symbol": "BZPR1", - "decimals": 18, - "name": "Backed ZPR1 1 3 Month T Bill", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xade6057fcafa57d6d51ffa341c64ce4814995995.png", - "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0xb55ee890426341fe45ee6dc788d2d93d25b59063": { - "address": "0xb55ee890426341fe45ee6dc788d2d93d25b59063", - "symbol": "LOVE", - "decimals": 18, - "name": "Love io", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xb55ee890426341fe45ee6dc788d2d93d25b59063.png", - "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0x31a2e08f4232329e4eddb025c0275f43c9cd56d7": { - "address": "0x31a2e08f4232329e4eddb025c0275f43c9cd56d7", - "symbol": "LUSD", - "decimals": 18, - "name": "LUSD", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x31a2e08f4232329e4eddb025c0275f43c9cd56d7.png", - "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0x735fa792e731a2e8f83f32eb539841b7b72e6d8f": { - "address": "0x735fa792e731a2e8f83f32eb539841b7b72e6d8f", - "symbol": "EEUR", - "decimals": 18, - "name": "ARYZE eEUR", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x735fa792e731a2e8f83f32eb539841b7b72e6d8f.png", - "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0x5b8650cd999b23cf39ab12e3213fbc8709c7f5cb": { - "address": "0x5b8650cd999b23cf39ab12e3213fbc8709c7f5cb", - "symbol": "MAZI", - "decimals": 18, - "name": "MaziMatic", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x5b8650cd999b23cf39ab12e3213fbc8709c7f5cb.png", - "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0x26aad156ba8efa501b32b42ffcdc8413f90e9c99": { - "address": "0x26aad156ba8efa501b32b42ffcdc8413f90e9c99", - "symbol": "EDU", - "decimals": 18, - "name": "Open Campus", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x26aad156ba8efa501b32b42ffcdc8413f90e9c99.png", - "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0x837d904a3799c0769079be9ecbaddf1abd4ccd6e": { - "address": "0x837d904a3799c0769079be9ecbaddf1abd4ccd6e", - "symbol": "TAROT", - "decimals": 18, - "name": "Tarot V1", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x837d904a3799c0769079be9ecbaddf1abd4ccd6e.png", - "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0xa4335da338ec4c07c391fc1a9bf75f306adadc08": { - "address": "0xa4335da338ec4c07c391fc1a9bf75f306adadc08", - "symbol": "EUSD", - "decimals": 18, - "name": "ARYZE eUSD", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xa4335da338ec4c07c391fc1a9bf75f306adadc08.png", - "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0x7df4122d3eae29fc8fb6be58d9177e8e560be4fb": { - "address": "0x7df4122d3eae29fc8fb6be58d9177e8e560be4fb", - "symbol": "XCCX", - "decimals": 6, - "name": "BlockChainCoinX", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x7df4122d3eae29fc8fb6be58d9177e8e560be4fb.png", - "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0x800ee7b69dce0f6649bb0c879b468a665b1a44ce": { - "address": "0x800ee7b69dce0f6649bb0c879b468a665b1a44ce", - "symbol": "AMCD", - "decimals": 18, - "name": "Dinari AMC", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x800ee7b69dce0f6649bb0c879b468a665b1a44ce.png", - "aggregators": ["CoinGecko", "Rubic", "Sonarwatch"], - "occurrences": 3 - }, - "0x1d1498166ddceee616a6d99868e1e0677300056f": { - "address": "0x1d1498166ddceee616a6d99868e1e0677300056f", - "symbol": "SPACE", - "decimals": 18, - "name": "Space Token", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x1d1498166ddceee616a6d99868e1e0677300056f.png", - "aggregators": ["CoinMarketCap", "Rubic", "Sonarwatch"], - "occurrences": 3 - }, - "0xab5bff303312e24dc77bb71a451343f9feb20093": { - "address": "0xab5bff303312e24dc77bb71a451343f9feb20093", - "symbol": "GULL", - "decimals": 18, - "name": "GULL", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xab5bff303312e24dc77bb71a451343f9feb20093.png", - "aggregators": ["CoinGecko", "Rubic", "Sonarwatch"], - "occurrences": 3 - }, - "0x92a42db88ed0f02c71d439e55962ca7cab0168b5": { - "address": "0x92a42db88ed0f02c71d439e55962ca7cab0168b5", - "symbol": "TRDG", - "decimals": 9, - "name": "TRDGtoken", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x92a42db88ed0f02c71d439e55962ca7cab0168b5.png", - "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0x388d819724dd6d71760a38f00dc01d310d879771": { - "address": "0x388d819724dd6d71760a38f00dc01d310d879771", - "symbol": "JM", - "decimals": 8, - "name": "JustMoney", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x388d819724dd6d71760a38f00dc01d310d879771.png", - "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0x396ec402b42066864c406d1ac3bc86b575003ed8": { - "address": "0x396ec402b42066864c406d1ac3bc86b575003ed8", - "symbol": "BUY", - "decimals": 2, - "name": "Buying com", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x396ec402b42066864c406d1ac3bc86b575003ed8.png", - "aggregators": ["CoinMarketCap", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0xca1262e77fb25c0a4112cfc9bad3ff54f617f2e6": { - "address": "0xca1262e77fb25c0a4112cfc9bad3ff54f617f2e6", - "symbol": "WJXN", - "decimals": 0, - "name": "Jax Network", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xca1262e77fb25c0a4112cfc9bad3ff54f617f2e6.png", - "aggregators": ["CoinMarketCap", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0xbd31ea8212119f94a611fa969881cba3ea06fa3d": { - "address": "0xbd31ea8212119f94a611fa969881cba3ea06fa3d", - "symbol": "LUNA", - "decimals": 6, - "name": "LUNA Token", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xbd31ea8212119f94a611fa969881cba3ea06fa3d.png", - "aggregators": ["Metamask", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0xa831a4e181f25d3b35949e582ff27cc44e703f37": { - "address": "0xa831a4e181f25d3b35949e582ff27cc44e703f37", - "symbol": "ALEX", - "decimals": 18, - "name": "ALEX Lab", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xa831a4e181f25d3b35949e582ff27cc44e703f37.png", - "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0x7c9f4c87d911613fe9ca58b579f737911aad2d43": { - "address": "0x7c9f4c87d911613fe9ca58b579f737911aad2d43", - "symbol": "MATICPO", - "decimals": 18, - "name": "MATIC Wormhole", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x7c9f4c87d911613fe9ca58b579f737911aad2d43.png", - "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0x845e2e8b42dced7dedcdba9bde32c9e338224f97": { - "address": "0x845e2e8b42dced7dedcdba9bde32c9e338224f97", - "symbol": "SATOZ", - "decimals": 8, - "name": "Satozhi", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x845e2e8b42dced7dedcdba9bde32c9e338224f97.png", - "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0x6325cf7b3b645de6355e37e0e88f6ff0030f9e97": { - "address": "0x6325cf7b3b645de6355e37e0e88f6ff0030f9e97", - "symbol": "CROW", - "decimals": 18, - "name": "CROW", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x6325cf7b3b645de6355e37e0e88f6ff0030f9e97.png", - "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0x5d7bb43885988eb8bfb9d854077e7ccfd6bf8c50": { - "address": "0x5d7bb43885988eb8bfb9d854077e7ccfd6bf8c50", - "symbol": "ADBED", - "decimals": 18, - "name": "Dinari ADBE", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x5d7bb43885988eb8bfb9d854077e7ccfd6bf8c50.png", - "aggregators": ["CoinGecko", "Rubic", "Sonarwatch"], - "occurrences": 3 - }, - "0xdd13dedecebda566322195bc4451d672a148752c": { - "address": "0xdd13dedecebda566322195bc4451d672a148752c", - "symbol": "PRIMAL", - "decimals": 18, - "name": "PRIMAL", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xdd13dedecebda566322195bc4451d672a148752c.png", - "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0xc7026a20a640bc71b9074f7aed52a00cd9147091": { - "address": "0xc7026a20a640bc71b9074f7aed52a00cd9147091", - "symbol": "TGR", - "decimals": 18, - "name": "Tegro", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xc7026a20a640bc71b9074f7aed52a00cd9147091.png", - "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0xb990d93c308a31c737aa91839e8ba8eaf4017d7a": { - "address": "0xb990d93c308a31c737aa91839e8ba8eaf4017d7a", - "symbol": "PIRATE", - "decimals": 8, - "name": "PirateCash", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xb990d93c308a31c737aa91839e8ba8eaf4017d7a.png", - "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0x9b25889c493ae6df34ceef1ecb10d77c1ba73318": { - "address": "0x9b25889c493ae6df34ceef1ecb10d77c1ba73318", - "symbol": "MEAN", - "decimals": 6, - "name": "Mean DAO", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x9b25889c493ae6df34ceef1ecb10d77c1ba73318.png", - "aggregators": ["CoinMarketCap", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0xc2708a3a4ba7f64bddc1a49f92f941bc77cad23a": { - "address": "0xc2708a3a4ba7f64bddc1a49f92f941bc77cad23a", - "symbol": "EGG", - "decimals": 18, - "name": "Waves Ducks", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xc2708a3a4ba7f64bddc1a49f92f941bc77cad23a.png", - "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0x15fa5d3dbd11a831b72b92c1705bc9f801e233cb": { - "address": "0x15fa5d3dbd11a831b72b92c1705bc9f801e233cb", - "symbol": "PXP", - "decimals": 18, - "name": "PointPay", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x15fa5d3dbd11a831b72b92c1705bc9f801e233cb.png", - "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0x57d579f483854c62fef850b8a5332b0d8424b7e2": { - "address": "0x57d579f483854c62fef850b8a5332b0d8424b7e2", - "symbol": "OPENX", - "decimals": 18, - "name": "OpenSwap One", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x57d579f483854c62fef850b8a5332b0d8424b7e2.png", - "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0xd7b675cd5c84a13d1d0f84509345530f6421b57c": { - "address": "0xd7b675cd5c84a13d1d0f84509345530f6421b57c", - "symbol": "OOOI", - "decimals": 18, - "name": "Corridor Finance", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xd7b675cd5c84a13d1d0f84509345530f6421b57c.png", - "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0x0f76d32cdccdcbd602a55af23eaf58fd1ee17245": { - "address": "0x0f76d32cdccdcbd602a55af23eaf58fd1ee17245", - "symbol": "BERNA", - "decimals": 18, - "name": "Backed ERNA Bond", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x0f76d32cdccdcbd602a55af23eaf58fd1ee17245.png", - "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0xd8c0b13b551718b808fc97ead59499d5ef862775": { - "address": "0xd8c0b13b551718b808fc97ead59499d5ef862775", - "symbol": "MUSIC", - "decimals": 8, - "name": "Gala Music", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xd8c0b13b551718b808fc97ead59499d5ef862775.png", - "aggregators": ["CoinMarketCap", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0x9482c407d32204462d8cbbc0755e96c39b79878e": { - "address": "0x9482c407d32204462d8cbbc0755e96c39b79878e", - "symbol": "ARC", - "decimals": 18, - "name": "Archly Finance", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x9482c407d32204462d8cbbc0755e96c39b79878e.png", - "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0x1155db64b59265f57533bc0f9ae012fffd34eb7f": { - "address": "0x1155db64b59265f57533bc0f9ae012fffd34eb7f", - "symbol": "YAKU", - "decimals": 9, - "name": "Yaku", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x1155db64b59265f57533bc0f9ae012fffd34eb7f.png", - "aggregators": ["CoinMarketCap", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0xf1264873436a0771e440e2b28072fafcc5eebd01": { - "address": "0xf1264873436a0771e440e2b28072fafcc5eebd01", - "symbol": "KNS", - "decimals": 18, - "name": "Kenshi", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xf1264873436a0771e440e2b28072fafcc5eebd01.png", - "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0xaf6a1125d4cc55a4110dc63cd2ff6e005afb8676": { - "address": "0xaf6a1125d4cc55a4110dc63cd2ff6e005afb8676", - "symbol": "PUNK", - "decimals": 18, - "name": "PunkCity", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xaf6a1125d4cc55a4110dc63cd2ff6e005afb8676.png", - "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0x2cad08360009226261ab4d32684aacdbbec3f8da": { - "address": "0x2cad08360009226261ab4d32684aacdbbec3f8da", - "symbol": "NLYD", - "decimals": 18, - "name": "Dinari NLY", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x2cad08360009226261ab4d32684aacdbbec3f8da.png", - "aggregators": ["CoinGecko", "Rubic", "Sonarwatch"], - "occurrences": 3 - }, - "0xd0f48caf8fdb1e7b1fb8b08b914e0b44ed0aade0": { - "address": "0xd0f48caf8fdb1e7b1fb8b08b914e0b44ed0aade0", - "symbol": "GBTCD", - "decimals": 18, - "name": "Dinari GBTC", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xd0f48caf8fdb1e7b1fb8b08b914e0b44ed0aade0.png", - "aggregators": ["CoinGecko", "Rubic", "Sonarwatch"], - "occurrences": 3 - }, - "0xd2a64bb1776f02e6b2b5503fe6a8ca6bf1f46d07": { - "address": "0xd2a64bb1776f02e6b2b5503fe6a8ca6bf1f46d07", - "symbol": "WOODD", - "decimals": 18, - "name": "Dinari WOOD", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xd2a64bb1776f02e6b2b5503fe6a8ca6bf1f46d07.png", - "aggregators": ["CoinGecko", "Rubic", "Sonarwatch"], - "occurrences": 3 - }, - "0x0ecb3513ebf1e62be765452900608aa957dbd13d": { - "address": "0x0ecb3513ebf1e62be765452900608aa957dbd13d", - "symbol": "SLXD", - "decimals": 18, - "name": "Dinari SLX", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x0ecb3513ebf1e62be765452900608aa957dbd13d.png", - "aggregators": ["CoinGecko", "Rubic", "Sonarwatch"], - "occurrences": 3 - }, - "0xa974c709cfb4566686553a20790685a47aceaa33": { - "address": "0xa974c709cfb4566686553a20790685a47aceaa33", - "symbol": "XIN", - "decimals": 18, - "name": "Mixin", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xa974c709cfb4566686553a20790685a47aceaa33.png", - "aggregators": ["CoinMarketCap", "Socket", "Rubic"], - "occurrences": 3 - }, - "0xd8b95b1987741849ca7e71e976aeb535fd2e55a2": { - "address": "0xd8b95b1987741849ca7e71e976aeb535fd2e55a2", - "symbol": "BCSBGC3", - "decimals": 18, - "name": "Backed Swiss Domestic Government Bond 0", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xd8b95b1987741849ca7e71e976aeb535fd2e55a2.png", - "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0xcd7c6ed75151745c893dfc1dca1daa1d55034e67": { - "address": "0xcd7c6ed75151745c893dfc1dca1daa1d55034e67", - "symbol": "RIOTD", - "decimals": 18, - "name": "Dinari RIOT", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xcd7c6ed75151745c893dfc1dca1daa1d55034e67.png", - "aggregators": ["CoinGecko", "Rubic", "Sonarwatch"], - "occurrences": 3 - }, - "0x7fb5da212239593f4bf544fbe2ec70ce91f0afdb": { - "address": "0x7fb5da212239593f4bf544fbe2ec70ce91f0afdb", - "symbol": "GMED", - "decimals": 18, - "name": "Dinari GME", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x7fb5da212239593f4bf544fbe2ec70ce91f0afdb.png", - "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0xec2af1c8b110a61fd9c3fa6a554a031ca9943926": { - "address": "0xec2af1c8b110a61fd9c3fa6a554a031ca9943926", - "symbol": "USDM", - "decimals": 18, - "name": "MegaUSD", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xec2af1c8b110a61fd9c3fa6a554a031ca9943926.png", - "aggregators": ["Metamask", "LiFi", "Rubic"], - "occurrences": 3 - }, - "0x374a457967ba24fd3ae66294cab08244185574b0": { - "address": "0x374a457967ba24fd3ae66294cab08244185574b0", - "symbol": "BMSFT", - "decimals": 18, - "name": "Backed Microsoft", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x374a457967ba24fd3ae66294cab08244185574b0.png", - "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0xebee37aaf2905b7bda7e3b928043862e982e8f32": { - "address": "0xebee37aaf2905b7bda7e3b928043862e982e8f32", - "symbol": "BGOOGL", - "decimals": 18, - "name": "Backed Alphabet Class A", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xebee37aaf2905b7bda7e3b928043862e982e8f32.png", - "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0x7212088a11b4d8f6fc90fbb3dfe793b45dd72323": { - "address": "0x7212088a11b4d8f6fc90fbb3dfe793b45dd72323", - "symbol": "BGME", - "decimals": 18, - "name": "Backed GameStop Corp", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x7212088a11b4d8f6fc90fbb3dfe793b45dd72323.png", - "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0x872952d3c1caf944852c5adda65633f1ef218a26": { - "address": "0x872952d3c1caf944852c5adda65633f1ef218a26", - "symbol": "LQDX", - "decimals": 18, - "name": "Reddex", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x872952d3c1caf944852c5adda65633f1ef218a26.png", - "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0x53aff1d59ea64f7f836670e33e99a0443f0ef25c": { - "address": "0x53aff1d59ea64f7f836670e33e99a0443f0ef25c", - "symbol": "AVGOD", - "decimals": 18, - "name": "Dinari AVGO", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x53aff1d59ea64f7f836670e33e99a0443f0ef25c.png", - "aggregators": ["CoinGecko", "Rubic", "Sonarwatch"], - "occurrences": 3 - }, - "0x75cb71325a44fb102a742626b723054acb7e1394": { - "address": "0x75cb71325a44fb102a742626b723054acb7e1394", - "symbol": "ANI", - "decimals": 18, - "name": "Anime", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x75cb71325a44fb102a742626b723054acb7e1394.png", - "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0x0123b0a381348f3ba793091923daeb7356ec5862": { - "address": "0x0123b0a381348f3ba793091923daeb7356ec5862", - "symbol": "VXXD", - "decimals": 18, - "name": "Dinari VXX", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x0123b0a381348f3ba793091923daeb7356ec5862.png", - "aggregators": ["CoinGecko", "Rubic", "Sonarwatch"], - "occurrences": 3 - }, - "0xd711d7d893de57dc13ff465763218770bd42db1d": { - "address": "0xd711d7d893de57dc13ff465763218770bd42db1d", - "symbol": "EGBP", - "decimals": 18, - "name": "ARYZE eGBP", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xd711d7d893de57dc13ff465763218770bd42db1d.png", - "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0xd16acb3147bcafd8469ffb288f45db52cc04ae68": { - "address": "0xd16acb3147bcafd8469ffb288f45db52cc04ae68", - "symbol": "USHYD", - "decimals": 18, - "name": "Dinari USHY", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xd16acb3147bcafd8469ffb288f45db52cc04ae68.png", - "aggregators": ["CoinGecko", "Rubic", "Sonarwatch"], - "occurrences": 3 - }, - "0xa882606494d86804b5514e07e6bd2d6a6ee6d68a": { - "address": "0xa882606494d86804b5514e07e6bd2d6a6ee6d68a", - "symbol": "WPLS", - "decimals": 18, - "name": "WPLS", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xa882606494d86804b5514e07e6bd2d6a6ee6d68a.png", - "aggregators": ["CoinGecko", "Socket", "Rubic", "Rango"], - "occurrences": 4 - }, - "0xa64c9f707bbb4cbc4e22f596a53d85b3ab7000f8": { - "address": "0xa64c9f707bbb4cbc4e22f596a53d85b3ab7000f8", - "symbol": "ARKBD", - "decimals": 18, - "name": "Dinari ARKB", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xa64c9f707bbb4cbc4e22f596a53d85b3ab7000f8.png", - "aggregators": ["CoinGecko", "Rubic", "Sonarwatch"], - "occurrences": 3 - }, - "0x4e4016eb5014468f3dba5883c70f9997026ea11e": { - "address": "0x4e4016eb5014468f3dba5883c70f9997026ea11e", - "symbol": "ETHED", - "decimals": 18, - "name": "Dinari ETHE", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x4e4016eb5014468f3dba5883c70f9997026ea11e.png", - "aggregators": ["CoinGecko", "Rubic", "Sonarwatch"], - "occurrences": 3 - }, - "0x3c4024408efac2dbf7ed453c95d9d97889e4846a": { - "address": "0x3c4024408efac2dbf7ed453c95d9d97889e4846a", - "symbol": "IBITD", - "decimals": 18, - "name": "Dinari IBIT", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x3c4024408efac2dbf7ed453c95d9d97889e4846a.png", - "aggregators": ["CoinGecko", "Rubic", "Sonarwatch"], - "occurrences": 3 - }, - "0x97e4db79d2924f1c5ce2a821e7d5b111f9925e70": { - "address": "0x97e4db79d2924f1c5ce2a821e7d5b111f9925e70", - "symbol": "JNJD", - "decimals": 18, - "name": "Dinari JNJ", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x97e4db79d2924f1c5ce2a821e7d5b111f9925e70.png", - "aggregators": ["CoinGecko", "Rubic", "Sonarwatch"], - "occurrences": 3 - }, - "0xac20315350d7b59cbe846144f5eb8a6d1df1f5fc": { - "address": "0xac20315350d7b59cbe846144f5eb8a6d1df1f5fc", - "symbol": "RDDTD", - "decimals": 18, - "name": "Dinari RDDT", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xac20315350d7b59cbe846144f5eb8a6d1df1f5fc.png", - "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0xc4a217a8b2cdf85eb8206391ae3723d72b3a4e04": { - "address": "0xc4a217a8b2cdf85eb8206391ae3723d72b3a4e04", - "symbol": "BITBD", - "decimals": 18, - "name": "Dinari BITB", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xc4a217a8b2cdf85eb8206391ae3723d72b3a4e04.png", - "aggregators": ["CoinGecko", "Rubic", "Sonarwatch"], - "occurrences": 3 - }, - "0xf5cb350b40726b5bcf170d12e162b6193b291b41": { - "address": "0xf5cb350b40726b5bcf170d12e162b6193b291b41", - "symbol": "BIS", - "decimals": 8, - "name": "Bismuth", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xf5cb350b40726b5bcf170d12e162b6193b291b41.png", - "aggregators": ["CoinMarketCap", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0x039d2e8f097331278bd6c1415d839310e0d5ece4": { - "address": "0x039d2e8f097331278bd6c1415d839310e0d5ece4", - "symbol": "LINDA", - "decimals": 18, - "name": "Linda", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x039d2e8f097331278bd6c1415d839310e0d5ece4.png", - "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0x5102791ca02fc3595398400bfe0e33d7b6c82267": { - "address": "0x5102791ca02fc3595398400bfe0e33d7b6c82267", - "symbol": "LDC", - "decimals": 18, - "name": "LDC", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x5102791ca02fc3595398400bfe0e33d7b6c82267.png", - "aggregators": ["CoinMarketCap", "LiFi", "Rubic", "Rango"], - "occurrences": 4 - }, - "0x86efc496dca70bcfd92d19194290e8457a375773": { - "address": "0x86efc496dca70bcfd92d19194290e8457a375773", - "symbol": "UBSN", - "decimals": 0, - "name": "Silent Notary", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x86efc496dca70bcfd92d19194290e8457a375773.png", - "aggregators": ["CoinMarketCap", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0x74faab6986560fd1140508e4266d8a7b87274ffd": { - "address": "0x74faab6986560fd1140508e4266d8a7b87274ffd", - "symbol": "HDAO", - "decimals": 18, - "name": "HyperDao", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x74faab6986560fd1140508e4266d8a7b87274ffd.png", - "aggregators": ["CoinMarketCap", "Socket", "Rubic", "Rango"], - "occurrences": 4 - }, - "0xcef46305d096fa876dd23048bf80f9345282e3fc": { - "address": "0xcef46305d096fa876dd23048bf80f9345282e3fc", - "symbol": "CBU", - "decimals": 0, - "name": "Banque Universal", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xcef46305d096fa876dd23048bf80f9345282e3fc.png", - "aggregators": ["CoinMarketCap", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0xd6c67b93a7b248df608a653d82a100556144c5da": { - "address": "0xd6c67b93a7b248df608a653d82a100556144c5da", - "symbol": "EXNT", - "decimals": 16, - "name": "ExNetwork Token", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xd6c67b93a7b248df608a653d82a100556144c5da.png", - "aggregators": ["CoinMarketCap", "LiFi", "TrustWallet", "Rubic"], - "occurrences": 4 - }, - "0x9b62ec1453cea5dde760aaf662048ca6eeb66e7f": { - "address": "0x9b62ec1453cea5dde760aaf662048ca6eeb66e7f", - "symbol": "ECELL", - "decimals": 2, - "name": "ECELL", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x9b62ec1453cea5dde760aaf662048ca6eeb66e7f.png", - "aggregators": ["CoinMarketCap", "LiFi", "Rubic", "Rango"], - "occurrences": 4 - }, - "0x8dcaec45365e5ada5676073a07b418c2f538145a": { - "address": "0x8dcaec45365e5ada5676073a07b418c2f538145a", - "symbol": "SHELL", - "decimals": 18, - "name": "Shell", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x8dcaec45365e5ada5676073a07b418c2f538145a.png", - "aggregators": ["CoinMarketCap", "LiFi", "Rubic", "Rango"], - "occurrences": 4 - }, - "0x9f7229af0c4b9740e207ea283b9094983f78ba04": { - "address": "0x9f7229af0c4b9740e207ea283b9094983f78ba04", - "symbol": "TAD", - "decimals": 18, - "name": "Tadpole", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x9f7229af0c4b9740e207ea283b9094983f78ba04.png", - "aggregators": ["CoinMarketCap", "LiFi", "TrustWallet", "Rubic"], - "occurrences": 4 - }, - "0x65d9bc970aa9b2413027fa339f7f179b3f3f2604": { - "address": "0x65d9bc970aa9b2413027fa339f7f179b3f3f2604", - "symbol": "KUN", - "decimals": 18, - "name": "QIAN governance token", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x65d9bc970aa9b2413027fa339f7f179b3f3f2604.png", - "aggregators": ["CoinMarketCap", "LiFi", "Rubic", "Rango"], - "occurrences": 4 - }, - "0x7e291890b01e5181f7ecc98d79ffbe12ad23df9e": { - "address": "0x7e291890b01e5181f7ecc98d79ffbe12ad23df9e", - "symbol": "NIF", - "decimals": 18, - "name": "Unifty", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x7e291890b01e5181f7ecc98d79ffbe12ad23df9e.png", - "aggregators": ["CoinMarketCap", "LiFi", "Rubic", "Rango"], - "occurrences": 4 - }, - "0x3c81d482172cc273c3b91dd9d8eb212023d00521": { - "address": "0x3c81d482172cc273c3b91dd9d8eb212023d00521", - "symbol": "PRY", - "decimals": 18, - "name": "PRY", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x3c81d482172cc273c3b91dd9d8eb212023d00521.png", - "aggregators": ["CoinMarketCap", "LiFi", "Rubic", "Rango"], - "occurrences": 4 - }, - "0xc775c0c30840cb9f51e21061b054ebf1a00acc29": { - "address": "0xc775c0c30840cb9f51e21061b054ebf1a00acc29", - "symbol": "PSL", - "decimals": 5, - "name": "Pastel", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xc775c0c30840cb9f51e21061b054ebf1a00acc29.png", - "aggregators": ["CoinMarketCap", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0x5f6c5c2fb289db2228d159c69621215e354218d7": { - "address": "0x5f6c5c2fb289db2228d159c69621215e354218d7", - "symbol": "DMOD", - "decimals": 18, - "name": "DMOD", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x5f6c5c2fb289db2228d159c69621215e354218d7.png", - "aggregators": ["CoinMarketCap", "LiFi", "Rubic", "Rango"], - "occurrences": 4 - }, - "0x429876c4a6f89fb470e92456b8313879df98b63c": { - "address": "0x429876c4a6f89fb470e92456b8313879df98b63c", - "symbol": "CNT", - "decimals": 18, - "name": "Cryption Network", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x429876c4a6f89fb470e92456b8313879df98b63c.png", - "aggregators": ["CoinMarketCap", "LiFi", "Rubic", "Rango"], - "occurrences": 4 - }, - "0x7bd82b320ebc28d8eb3c4f5fa2af7b14da5b90c3": { - "address": "0x7bd82b320ebc28d8eb3c4f5fa2af7b14da5b90c3", - "symbol": "MOZ", - "decimals": 18, - "name": "MOZ", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x7bd82b320ebc28d8eb3c4f5fa2af7b14da5b90c3.png", - "aggregators": ["CoinMarketCap", "LiFi", "Rubic", "Rango"], - "occurrences": 4 - }, - "0x8bcd06492416a749c9369009b3429861b7f27f6e": { - "address": "0x8bcd06492416a749c9369009b3429861b7f27f6e", - "symbol": "BLKC", - "decimals": 8, - "name": "BlackHat Coin", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x8bcd06492416a749c9369009b3429861b7f27f6e.png", - "aggregators": ["CoinMarketCap", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0x37c997b35c619c21323f3518b9357914e8b99525": { - "address": "0x37c997b35c619c21323f3518b9357914e8b99525", - "symbol": "PILOT", - "decimals": 18, - "name": "Unipilot", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x37c997b35c619c21323f3518b9357914e8b99525.png", - "aggregators": ["CoinMarketCap", "LiFi", "Rubic", "Rango"], - "occurrences": 4 - }, - "0x4ece5c5cfb9b960a49aae739e15cdb6cfdcc5782": { - "address": "0x4ece5c5cfb9b960a49aae739e15cdb6cfdcc5782", - "symbol": "DBUY", - "decimals": 9, - "name": "Doont Buy", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x4ece5c5cfb9b960a49aae739e15cdb6cfdcc5782.png", - "aggregators": ["CoinMarketCap", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0x948c70dc6169bfb10028fdbe96cbc72e9562b2ac": { - "address": "0x948c70dc6169bfb10028fdbe96cbc72e9562b2ac", - "symbol": "XP", - "decimals": 18, - "name": "PolkaFantasy", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x948c70dc6169bfb10028fdbe96cbc72e9562b2ac.png", - "aggregators": ["CoinMarketCap", "LiFi", "Rubic", "Rango"], - "occurrences": 4 - }, - "0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab": { - "address": "0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab", - "symbol": "BEAN", - "decimals": 6, - "name": "Bean", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab.png", - "aggregators": ["CoinMarketCap", "Socket", "Rubic", "Rango"], - "occurrences": 4 - }, - "0x866f8a50a64e68ca66e97e032c5da99538b3f942": { - "address": "0x866f8a50a64e68ca66e97e032c5da99538b3f942", - "symbol": "EBSO", - "decimals": 4, - "name": "eBlockStock", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x866f8a50a64e68ca66e97e032c5da99538b3f942.png", - "aggregators": ["CoinMarketCap", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0xa87135285ae208e22068acdbff64b11ec73eaa5a": { - "address": "0xa87135285ae208e22068acdbff64b11ec73eaa5a", - "symbol": "LUNR", - "decimals": 4, - "name": "LunarCrush", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xa87135285ae208e22068acdbff64b11ec73eaa5a.png", - "aggregators": ["CoinMarketCap", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0x5167f7cdeb771417d8722e654ccc3e1734a01878": { - "address": "0x5167f7cdeb771417d8722e654ccc3e1734a01878", - "symbol": "BLAST", - "decimals": 9, - "name": "Blastoise Inu", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x5167f7cdeb771417d8722e654ccc3e1734a01878.png", - "aggregators": ["CoinMarketCap", "LiFi", "Socket", "Rubic"], - "occurrences": 4 - }, - "0x849a226f327b89e3133d9930d927f9eb9346f8c9": { - "address": "0x849a226f327b89e3133d9930d927f9eb9346f8c9", - "symbol": "CGU", - "decimals": 8, - "name": "Crypto Global United", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x849a226f327b89e3133d9930d927f9eb9346f8c9.png", - "aggregators": ["CoinMarketCap", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0x2223bf1d7c19ef7c06dab88938ec7b85952ccd89": { - "address": "0x2223bf1d7c19ef7c06dab88938ec7b85952ccd89", - "symbol": "KXA", - "decimals": 18, - "name": "Kryxivia Coin", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x2223bf1d7c19ef7c06dab88938ec7b85952ccd89.png", - "aggregators": ["CoinMarketCap", "LiFi", "Rubic", "Rango"], - "occurrences": 4 - }, - "0x6bd361e10c1afed0d95259e7c0115f3a60e4ea99": { - "address": "0x6bd361e10c1afed0d95259e7c0115f3a60e4ea99", - "symbol": "BOLLY", - "decimals": 18, - "name": "Bollycoin", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x6bd361e10c1afed0d95259e7c0115f3a60e4ea99.png", - "aggregators": ["CoinMarketCap", "LiFi", "Rubic", "Rango"], - "occurrences": 4 - }, - "0x965b85d4674f64422c4898c8f8083187f02b32c0": { - "address": "0x965b85d4674f64422c4898c8f8083187f02b32c0", - "symbol": "SFIL", - "decimals": 8, - "name": "Filecoin Standard Full Hashrate", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x965b85d4674f64422c4898c8f8083187f02b32c0.png", - "aggregators": ["CoinMarketCap", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0x9fd22a17b4a96da3f83797d122172c450381fb88": { - "address": "0x9fd22a17b4a96da3f83797d122172c450381fb88", - "symbol": "JEFE", - "decimals": 9, - "name": "Jefe", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x9fd22a17b4a96da3f83797d122172c450381fb88.png", - "aggregators": ["CoinMarketCap", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0xbf0b8b7475edb32d103001efd19fdd2753d7b76d": { - "address": "0xbf0b8b7475edb32d103001efd19fdd2753d7b76d", - "symbol": "ABI", - "decimals": 18, - "name": "Abachi", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xbf0b8b7475edb32d103001efd19fdd2753d7b76d.png", - "aggregators": ["CoinMarketCap", "LiFi", "Rubic", "Rango"], - "occurrences": 4 - }, - "0x5afff9876c1f98b7d2b53bcb69eb57e92408319f": { - "address": "0x5afff9876c1f98b7d2b53bcb69eb57e92408319f", - "symbol": "MESA", - "decimals": 18, - "name": "metavisa", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x5afff9876c1f98b7d2b53bcb69eb57e92408319f.png", - "aggregators": ["CoinMarketCap", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0x788b6d2b37aa51d916f2837ae25b05f0e61339d1": { - "address": "0x788b6d2b37aa51d916f2837ae25b05f0e61339d1", - "symbol": "MVD", - "decimals": 9, - "name": "Metavault DAO", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x788b6d2b37aa51d916f2837ae25b05f0e61339d1.png", - "aggregators": ["CoinMarketCap", "LiFi", "Rubic", "Rango"], - "occurrences": 4 - }, - "0xc31cebf8f9e825d1d1244d73d0a65e44bd5210db": { - "address": "0xc31cebf8f9e825d1d1244d73d0a65e44bd5210db", - "symbol": "CRYN", - "decimals": 8, - "name": "CRYN", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xc31cebf8f9e825d1d1244d73d0a65e44bd5210db.png", - "aggregators": ["CoinMarketCap", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0xe0c05ec44775e4ad62cdc2eecdf337aa7a143363": { - "address": "0xe0c05ec44775e4ad62cdc2eecdf337aa7a143363", - "symbol": "MANC", - "decimals": 2, - "name": "Mancium", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xe0c05ec44775e4ad62cdc2eecdf337aa7a143363.png", - "aggregators": ["CoinMarketCap", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0xd2e5decc08a80be6538f89f9ab8ff296e2f724df": { - "address": "0xd2e5decc08a80be6538f89f9ab8ff296e2f724df", - "symbol": "STIMA", - "decimals": 6, - "name": "STIMA", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xd2e5decc08a80be6538f89f9ab8ff296e2f724df.png", - "aggregators": ["CoinMarketCap", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0xed03ed872159e199065401b6d0d487d78d9464aa": { - "address": "0xed03ed872159e199065401b6d0d487d78d9464aa", - "symbol": "MXNT", - "decimals": 6, - "name": "Mexican Peso Tether", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xed03ed872159e199065401b6d0d487d78d9464aa.png", - "aggregators": ["CoinMarketCap", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0x86b4dbe5d203e634a12364c0e428fa242a3fba98": { - "address": "0x86b4dbe5d203e634a12364c0e428fa242a3fba98", - "symbol": "GBPT", - "decimals": 18, - "name": "poundtoken", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x86b4dbe5d203e634a12364c0e428fa242a3fba98.png", - "aggregators": ["CoinMarketCap", "LiFi", "Socket", "Rubic"], - "occurrences": 4 - }, - "0x71eeba415a523f5c952cc2f06361d5443545ad28": { - "address": "0x71eeba415a523f5c952cc2f06361d5443545ad28", - "symbol": "XDAO", - "decimals": 18, - "name": "XDAO", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x71eeba415a523f5c952cc2f06361d5443545ad28.png", - "aggregators": ["CoinMarketCap", "LiFi", "Rubic", "Rango"], - "occurrences": 4 - }, - "0x93581991f68dbae1ea105233b67f7fa0d6bdee7b": { - "address": "0x93581991f68dbae1ea105233b67f7fa0d6bdee7b", - "symbol": "WEVMOS", - "decimals": 18, - "name": "Wrapped Evmos", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x93581991f68dbae1ea105233b67f7fa0d6bdee7b.png", - "aggregators": ["CoinMarketCap", "LiFi", "Rubic", "Rango"], - "occurrences": 4 - }, - "0x486f4641ef2b50cc130dadbd27b6f271723873b8": { - "address": "0x486f4641ef2b50cc130dadbd27b6f271723873b8", - "symbol": "GOLD", - "decimals": 18, - "name": "Adventurer Gold", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x486f4641ef2b50cc130dadbd27b6f271723873b8.png", - "aggregators": ["CoinMarketCap", "LiFi", "Rubic", "Rango"], - "occurrences": 4 - }, - "0x0bf43350076f95e0d16120b4d6bdfa1c9d50bdbd": { - "address": "0x0bf43350076f95e0d16120b4d6bdfa1c9d50bdbd", - "symbol": "AGT", - "decimals": 18, - "name": "Antfarm Governance Token", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x0bf43350076f95e0d16120b4d6bdfa1c9d50bdbd.png", - "aggregators": ["CoinMarketCap", "LiFi", "Rubic", "Rango"], - "occurrences": 4 - }, - "0xb25ea095997f5bbaa6cea962c4fbf3bfc3c09776": { - "address": "0xb25ea095997f5bbaa6cea962c4fbf3bfc3c09776", - "symbol": "FIRE", - "decimals": 9, - "name": "Promethios", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xb25ea095997f5bbaa6cea962c4fbf3bfc3c09776.png", - "aggregators": ["CoinMarketCap", "LiFi", "Socket", "Rubic"], - "occurrences": 4 - }, - "0xf8c76dbea329ec4fa987afc514f805b21b249d79": { - "address": "0xf8c76dbea329ec4fa987afc514f805b21b249d79", - "symbol": "L", - "decimals": 18, - "name": "L", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xf8c76dbea329ec4fa987afc514f805b21b249d79.png", - "aggregators": ["CoinMarketCap", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0x5ad02305ba9a4985390170337582986e419f1a2c": { - "address": "0x5ad02305ba9a4985390170337582986e419f1a2c", - "symbol": "CX", - "decimals": 9, - "name": "Crypto X", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x5ad02305ba9a4985390170337582986e419f1a2c.png", - "aggregators": ["CoinMarketCap", "Socket", "Rubic", "Rango"], - "occurrences": 4 - }, - "0x75ce16d11b83605aa039d40d7d846ff23064fb65": { - "address": "0x75ce16d11b83605aa039d40d7d846ff23064fb65", - "symbol": "DUB", - "decimals": 9, - "name": "DUBX", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x75ce16d11b83605aa039d40d7d846ff23064fb65.png", - "aggregators": ["CoinMarketCap", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0xca7013ba4bf76bcdc3ffc71735896682644f47c2": { - "address": "0xca7013ba4bf76bcdc3ffc71735896682644f47c2", - "symbol": "DGN", - "decimals": 18, - "name": "Degen", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xca7013ba4bf76bcdc3ffc71735896682644f47c2.png", - "aggregators": ["CoinMarketCap", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0xa067237f8016d5e3770cf08b20e343ab9ee813d5": { - "address": "0xa067237f8016d5e3770cf08b20e343ab9ee813d5", - "symbol": "GRL", - "decimals": 9, - "name": "Greelance", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xa067237f8016d5e3770cf08b20e343ab9ee813d5.png", - "aggregators": ["CoinMarketCap", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0x4e47951508fd4a4126f8ff9cf5e6fa3b7cc8e073": { - "address": "0x4e47951508fd4a4126f8ff9cf5e6fa3b7cc8e073", - "symbol": "FLUID", - "decimals": 18, - "name": "Fluid", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x4e47951508fd4a4126f8ff9cf5e6fa3b7cc8e073.png", - "aggregators": ["CoinMarketCap", "LiFi", "Rubic", "Rango"], - "occurrences": 4 - }, - "0x1f0efa15e9cb7ea9596257da63fecc36ba469b30": { - "address": "0x1f0efa15e9cb7ea9596257da63fecc36ba469b30", - "symbol": "ANON", - "decimals": 18, - "name": "Anon", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x1f0efa15e9cb7ea9596257da63fecc36ba469b30.png", - "aggregators": ["CoinMarketCap", "Socket", "Rubic", "Rango"], - "occurrences": 4 - }, - "0x10703ca5e253306e2ababd68e963198be8887c81": { - "address": "0x10703ca5e253306e2ababd68e963198be8887c81", - "symbol": "SCAN", - "decimals": 18, - "name": "0xScans", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x10703ca5e253306e2ababd68e963198be8887c81.png", - "aggregators": ["CoinMarketCap", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0xf42fcffc27a5b8d0afec45659407b82f9f32fa98": { - "address": "0xf42fcffc27a5b8d0afec45659407b82f9f32fa98", - "symbol": "AXLSAGA", - "decimals": 6, - "name": "AXLSAGA", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xf42fcffc27a5b8d0afec45659407b82f9f32fa98.png", - "aggregators": ["CoinMarketCap", "Rubic", "Squid", "Rango"], - "occurrences": 4 - }, - "0x1db11e86fa9b9a87813a4dd3f747eef12ed55a55": { - "address": "0x1db11e86fa9b9a87813a4dd3f747eef12ed55a55", - "symbol": "DAR", - "decimals": 18, - "name": "Digital Asset Rights Token", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x1db11e86fa9b9a87813a4dd3f747eef12ed55a55.png", - "aggregators": ["CoinMarketCap", "LiFi", "Rubic", "Rango"], - "occurrences": 4 - }, - "0x6b448aeb3bfd1dcbe337d59f6dee159daab52768": { - "address": "0x6b448aeb3bfd1dcbe337d59f6dee159daab52768", - "symbol": "TOR", - "decimals": 18, - "name": "Resistor AI", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x6b448aeb3bfd1dcbe337d59f6dee159daab52768.png", - "aggregators": ["CoinMarketCap", "Socket", "Rubic", "Rango"], - "occurrences": 4 - }, - "0x5189688ac92a1eba1710bcba94ab25c695a4dfa2": { - "address": "0x5189688ac92a1eba1710bcba94ab25c695a4dfa2", - "symbol": "BARS", - "decimals": 6, - "name": "Banksters", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x5189688ac92a1eba1710bcba94ab25c695a4dfa2.png", - "aggregators": ["CoinMarketCap", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0x96e99106d9c58573171dd6c19d767d2ae7ec0435": { - "address": "0x96e99106d9c58573171dd6c19d767d2ae7ec0435", - "symbol": "PYGES", - "decimals": 9, - "name": "Pyges", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x96e99106d9c58573171dd6c19d767d2ae7ec0435.png", - "aggregators": ["CoinMarketCap", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0xdbde08d475bd50e2d1a6af34c7b10dd430d8396e": { - "address": "0xdbde08d475bd50e2d1a6af34c7b10dd430d8396e", - "symbol": "CGX", - "decimals": 18, - "name": "Forkast", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xdbde08d475bd50e2d1a6af34c7b10dd430d8396e.png", - "aggregators": ["CoinMarketCap", "LiFi", "Rubic", "Sonarwatch"], - "occurrences": 4 - }, - "0xe7dee4823ee18f1347f1cf7997f70b94efde2e1f": { - "address": "0xe7dee4823ee18f1347f1cf7997f70b94efde2e1f", - "symbol": "FORM", - "decimals": 18, - "name": "Form", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xe7dee4823ee18f1347f1cf7997f70b94efde2e1f.png", - "aggregators": ["CoinMarketCap", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0x4c6dfa353b67832a23d26e17b0737819c624437c": { - "address": "0x4c6dfa353b67832a23d26e17b0737819c624437c", - "symbol": "MRT", - "decimals": 18, - "name": "Meana Raptor", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x4c6dfa353b67832a23d26e17b0737819c624437c.png", - "aggregators": ["CoinMarketCap", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0xbad6c59d72d44512616f25b3d160c79db5a69ddf": { - "address": "0xbad6c59d72d44512616f25b3d160c79db5a69ddf", - "symbol": "VATAN", - "decimals": 18, - "name": "Vatan", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xbad6c59d72d44512616f25b3d160c79db5a69ddf.png", - "aggregators": ["CoinMarketCap", "Socket", "Rubic", "Sonarwatch"], - "occurrences": 4 - }, - "0xca9de1f80df74331c5fcb7eee2d05e746d47bfb2": { - "address": "0xca9de1f80df74331c5fcb7eee2d05e746d47bfb2", - "symbol": "RSVETH", - "decimals": 18, - "name": "Reddio Vault Ethereum", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xca9de1f80df74331c5fcb7eee2d05e746d47bfb2.png", - "aggregators": ["CoinMarketCap", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0x3d7975eccfc61a2102b08925cbba0a4d4dbb6555": { - "address": "0x3d7975eccfc61a2102b08925cbba0a4d4dbb6555", - "symbol": "USDD", - "decimals": 18, - "name": "USDD (BTTC bridge)", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x3d7975eccfc61a2102b08925cbba0a4d4dbb6555.png", - "aggregators": ["Metamask", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0x866a2bf4e572cbcf37d5071a7a58503bfb36be1b": { - "address": "0x866a2bf4e572cbcf37d5071a7a58503bfb36be1b", - "symbol": "M", - "decimals": 6, - "name": "M by M^0", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x866a2bf4e572cbcf37d5071a7a58503bfb36be1b.png", - "aggregators": ["Metamask", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0x0a6e18fb2842855c3af925310b0f50a4bfa17909": { - "address": "0x0a6e18fb2842855c3af925310b0f50a4bfa17909", - "symbol": "CHP", - "decimals": 18, - "name": "CoinPoker Chips", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x0a6e18fb2842855c3af925310b0f50a4bfa17909.png", - "aggregators": ["LiFi", "Socket", "Rubic", "Rango"], - "occurrences": 4 - }, - "0xbdf245957992bfbc62b07e344128a1eec7b7ee3f": { - "address": "0xbdf245957992bfbc62b07e344128a1eec7b7ee3f", - "symbol": "MBTC", - "decimals": 8, - "name": "Babypie Wrapped BTC", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xbdf245957992bfbc62b07e344128a1eec7b7ee3f.png", - "aggregators": ["LiFi", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0x2b66aade1e9c062ff411bd47c44e0ad696d43bd9": { - "address": "0x2b66aade1e9c062ff411bd47c44e0ad696d43bd9", - "symbol": "SUSDA", - "decimals": 18, - "name": "sUSDa", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x2b66aade1e9c062ff411bd47c44e0ad696d43bd9.png", - "aggregators": ["LiFi", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0xc824a08db624942c5e5f330d56530cd1598859fd": { - "address": "0xc824a08db624942c5e5f330d56530cd1598859fd", - "symbol": "HGETH", - "decimals": 18, - "name": "High Growth ETH", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xc824a08db624942c5e5f330d56530cd1598859fd.png", - "aggregators": ["LiFi", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0x888cea2bbdd5d47a4032cf63668d7525c74af57a": { - "address": "0x888cea2bbdd5d47a4032cf63668d7525c74af57a", - "symbol": "POOF", - "decimals": 18, - "name": "POOF", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x888cea2bbdd5d47a4032cf63668d7525c74af57a.png", - "aggregators": ["LiFi", "Socket", "Rubic", "Rango"], - "occurrences": 4 - }, - "0x56a86d648c435dc707c8405b78e2ae8eb4e60ba4": { - "address": "0x56a86d648c435dc707c8405b78e2ae8eb4e60ba4", - "symbol": "STACK", - "decimals": 18, - "name": "STACK", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x56a86d648c435dc707c8405b78e2ae8eb4e60ba4.png", - "aggregators": ["LiFi", "Socket", "Rubic", "Rango"], - "occurrences": 4 - }, - "0xf0655dcee37e5c0b70fffd70d85f88f8edf0aff6": { - "address": "0xf0655dcee37e5c0b70fffd70d85f88f8edf0aff6", - "symbol": "UNIDX", - "decimals": 18, - "name": "UniDex", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xf0655dcee37e5c0b70fffd70d85f88f8edf0aff6.png", - "aggregators": ["LiFi", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0xdda9ff241c7160be8295ef9eca2e782361467666": { - "address": "0xdda9ff241c7160be8295ef9eca2e782361467666", - "symbol": "BONZAI", - "decimals": 18, - "name": "BonzAI DePIN", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xdda9ff241c7160be8295ef9eca2e782361467666.png", - "aggregators": ["LiFi", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0x7788a3538c5fc7f9c7c8a74eac4c898fc8d87d92": { - "address": "0x7788a3538c5fc7f9c7c8a74eac4c898fc8d87d92", - "symbol": "SUSDX", - "decimals": 18, - "name": "Stables Labs Staked USDX", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x7788a3538c5fc7f9c7c8a74eac4c898fc8d87d92.png", - "aggregators": ["LiFi", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0x33e80a92a9ea73dd02f6e732d1702d58c68388ca": { - "address": "0x33e80a92a9ea73dd02f6e732d1702d58c68388ca", - "symbol": "XB", - "decimals": 2, - "name": "XBANKING", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x33e80a92a9ea73dd02f6e732d1702d58c68388ca.png", - "aggregators": ["LiFi", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0x06301057d77d54b6e14c7faffb11ffc7cab4eaa7": { - "address": "0x06301057d77d54b6e14c7faffb11ffc7cab4eaa7", - "symbol": "MDAI", - "decimals": 18, - "name": "MDAI", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x06301057d77d54b6e14c7faffb11ffc7cab4eaa7.png", - "aggregators": ["LiFi", "Socket", "Rubic", "Rango"], - "occurrences": 4 - }, - "0x8a3d77e9d6968b780564936d15b09805827c21fa": { - "address": "0x8a3d77e9d6968b780564936d15b09805827c21fa", - "symbol": "UCO", - "decimals": 18, - "name": "UnirisToken", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x8a3d77e9d6968b780564936d15b09805827c21fa.png", - "aggregators": ["LiFi", "Socket", "Rubic", "Rango"], - "occurrences": 4 - }, - "0x2b117f0a9a56dddaaf0257b476bfc39ca7e6fda1": { - "address": "0x2b117f0a9a56dddaaf0257b476bfc39ca7e6fda1", - "symbol": "CONWAI", - "decimals": 18, - "name": "Conwai", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x2b117f0a9a56dddaaf0257b476bfc39ca7e6fda1.png", - "aggregators": ["LiFi", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0x8e0789d39db454dbe9f4a77acef6dc7c69f6d552": { - "address": "0x8e0789d39db454dbe9f4a77acef6dc7c69f6d552", - "symbol": "INWSTETHS", - "decimals": 18, - "name": "Inception Restaked stETH Symbiotic", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x8e0789d39db454dbe9f4a77acef6dc7c69f6d552.png", - "aggregators": ["LiFi", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0x9534ad65fb398e27ac8f4251dae1780b989d136e": { - "address": "0x9534ad65fb398e27ac8f4251dae1780b989d136e", - "symbol": "PYR", - "decimals": 18, - "name": "PYR", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x9534ad65fb398e27ac8f4251dae1780b989d136e.png", - "aggregators": ["LiFi", "Socket", "Rubic", "Rango"], - "occurrences": 4 - }, - "0xdf9307dff0a1b57660f60f9457d32027a55ca0b2": { - "address": "0xdf9307dff0a1b57660f60f9457d32027a55ca0b2", - "symbol": "METH", - "decimals": 18, - "name": "METH", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xdf9307dff0a1b57660f60f9457d32027a55ca0b2.png", - "aggregators": ["LiFi", "Socket", "Rubic", "Rango"], - "occurrences": 4 - }, - "0x5c5b196abe0d54485975d1ec29617d42d9198326": { - "address": "0x5c5b196abe0d54485975d1ec29617d42d9198326", - "symbol": "SDEUSD", - "decimals": 18, - "name": "Elixir Staked deUSD", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x5c5b196abe0d54485975d1ec29617d42d9198326.png", - "aggregators": ["LiFi", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0x95d8bf2f57cf973251972b496dc6b1d9c6b5bce3": { - "address": "0x95d8bf2f57cf973251972b496dc6b1d9c6b5bce3", - "symbol": "BLUE", - "decimals": 18, - "name": "BLUE", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x95d8bf2f57cf973251972b496dc6b1d9c6b5bce3.png", - "aggregators": ["LiFi", "Socket", "Rubic", "Rango"], - "occurrences": 4 - }, - "0x378e97d19cf319eb311748ff4d9971dc349c8ad4": { - "address": "0x378e97d19cf319eb311748ff4d9971dc349c8ad4", - "symbol": "ASCN", - "decimals": 18, - "name": "AlphaScan AI", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x378e97d19cf319eb311748ff4d9971dc349c8ad4.png", - "aggregators": ["LiFi", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0x8f041a3940a5e6fb580075c3774e15fcfa0e1618": { - "address": "0x8f041a3940a5e6fb580075c3774e15fcfa0e1618", - "symbol": "ONEWING", - "decimals": 9, - "name": "oneWING", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x8f041a3940a5e6fb580075c3774e15fcfa0e1618.png", - "aggregators": ["LiFi", "Rubic", "Rango", "SushiSwap"], - "occurrences": 4 - }, - "0x128ad1ad707c3b36e6f2ac9739f9df7516fdb592": { - "address": "0x128ad1ad707c3b36e6f2ac9739f9df7516fdb592", - "symbol": "ALFA", - "decimals": 18, - "name": "alfa society", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x128ad1ad707c3b36e6f2ac9739f9df7516fdb592.png", - "aggregators": ["LiFi", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0xa88920b4a35f7d0e81bc586ce1875036fced9154": { - "address": "0xa88920b4a35f7d0e81bc586ce1875036fced9154", - "symbol": "KBC", - "decimals": 18, - "name": "Kabuni Coin", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xa88920b4a35f7d0e81bc586ce1875036fced9154.png", - "aggregators": ["LiFi", "Socket", "Rubic", "Rango"], - "occurrences": 4 - }, - "0xf67e2dc041b8a3c39d066037d29f500757b1e886": { - "address": "0xf67e2dc041b8a3c39d066037d29f500757b1e886", - "symbol": "SUSDN", - "decimals": 18, - "name": "seed USDN", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xf67e2dc041b8a3c39d066037d29f500757b1e886.png", - "aggregators": ["LiFi", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0xf134519cbe2042b06ee7ce20df51d09b55559896": { - "address": "0xf134519cbe2042b06ee7ce20df51d09b55559896", - "symbol": "MOCHI", - "decimals": 18, - "name": "Mochi", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xf134519cbe2042b06ee7ce20df51d09b55559896.png", - "aggregators": ["LiFi", "Socket", "Rubic", "Rango"], - "occurrences": 4 - }, - "0xd38e031f4529a07996aab977d2b79f0e00656c56": { - "address": "0xd38e031f4529a07996aab977d2b79f0e00656c56", - "symbol": "WTBT", - "decimals": 18, - "name": "wTBT Pool", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xd38e031f4529a07996aab977d2b79f0e00656c56.png", - "aggregators": ["LiFi", "Socket", "Rubic", "Rango"], - "occurrences": 4 - }, - "0x325dc9ebcec31940c658acaca45f8293418d811e": { - "address": "0x325dc9ebcec31940c658acaca45f8293418d811e", - "symbol": "SOLVBTCENA", - "decimals": 18, - "name": "Solv Protocol SolvBTC ENA", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x325dc9ebcec31940c658acaca45f8293418d811e.png", - "aggregators": ["LiFi", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0x19b22dbadc298c359a1d1b59e35f352a2b40e33c": { - "address": "0x19b22dbadc298c359a1d1b59e35f352a2b40e33c", - "symbol": "TXPT", - "decimals": 18, - "name": "tPLATINUM", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x19b22dbadc298c359a1d1b59e35f352a2b40e33c.png", - "aggregators": ["LiFi", "Socket", "Rubic", "Rango"], - "occurrences": 4 - }, - "0x2a95fe4c7e64e09856989f9ea0b57b9ab5f770cb": { - "address": "0x2a95fe4c7e64e09856989f9ea0b57b9ab5f770cb", - "symbol": "WSPA", - "decimals": 18, - "name": "Wrapped Sperax", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x2a95fe4c7e64e09856989f9ea0b57b9ab5f770cb.png", - "aggregators": ["LiFi", "Socket", "Rubic", "Rango"], - "occurrences": 4 - }, - "0x5c7cc28ff152c397dc2e17349661db67113d6ce3": { - "address": "0x5c7cc28ff152c397dc2e17349661db67113d6ce3", - "symbol": "VRTX", - "decimals": 18, - "name": "VORTEX", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x5c7cc28ff152c397dc2e17349661db67113d6ce3.png", - "aggregators": ["Socket", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0x456ff1fbb87ec74165a11460f9d1864775dc227a": { - "address": "0x456ff1fbb87ec74165a11460f9d1864775dc227a", - "symbol": "MOXI", - "decimals": 18, - "name": "MOX AI", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x456ff1fbb87ec74165a11460f9d1864775dc227a.png", - "aggregators": ["Socket", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0xe1be5d3f34e89de342ee97e6e90d405884da6c67": { - "address": "0xe1be5d3f34e89de342ee97e6e90d405884da6c67", - "symbol": "TRX", - "decimals": 6, - "name": "TRON", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xe1be5d3f34e89de342ee97e6e90d405884da6c67.png", - "aggregators": ["Socket", "Rubic", "Rango", "SushiSwap"], - "occurrences": 4 - }, - "0x6522f491df42651cf5e6636b7261adaa096d095f": { - "address": "0x6522f491df42651cf5e6636b7261adaa096d095f", - "symbol": "ASAP", - "decimals": 18, - "name": "Asap Sniper Bot", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x6522f491df42651cf5e6636b7261adaa096d095f.png", - "aggregators": ["Socket", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0x62dc60b69b650290b0d5b993e145e0e87892be14": { - "address": "0x62dc60b69b650290b0d5b993e145e0e87892be14", - "symbol": "DRAGGY0X62", - "decimals": 9, - "name": "Draggy 0x62", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x62dc60b69b650290b0d5b993e145e0e87892be14.png", - "aggregators": ["Socket", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0xa73b792906c79509d73fdfaaa78561e195010706": { - "address": "0xa73b792906c79509d73fdfaaa78561e195010706", - "symbol": "PIPO", - "decimals": 18, - "name": "Pipo", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xa73b792906c79509d73fdfaaa78561e195010706.png", - "aggregators": ["Socket", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0x4d243e8f511045f0d5f9d0288bc628737b10c079": { - "address": "0x4d243e8f511045f0d5f9d0288bc628737b10c079", - "symbol": "JASON", - "decimals": 9, - "name": "Jason Eth", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x4d243e8f511045f0d5f9d0288bc628737b10c079.png", - "aggregators": ["Socket", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0x5cb888182fbffdb62c08fb4b5a343914f00fdfee": { - "address": "0x5cb888182fbffdb62c08fb4b5a343914f00fdfee", - "symbol": "BIPS", - "decimals": 18, - "name": "Moneybrain BiPS", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x5cb888182fbffdb62c08fb4b5a343914f00fdfee.png", - "aggregators": ["Socket", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0x8b7cf3a97c1f840bcf490dfd7d6a16a96dd5dd0c": { - "address": "0x8b7cf3a97c1f840bcf490dfd7d6a16a96dd5dd0c", - "symbol": "QS", - "decimals": 9, - "name": "Quick Sync", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x8b7cf3a97c1f840bcf490dfd7d6a16a96dd5dd0c.png", - "aggregators": ["Socket", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0xa6c1a66a3ac742f1885207253fc776d94c8beed5": { - "address": "0xa6c1a66a3ac742f1885207253fc776d94c8beed5", - "symbol": "TRN", - "decimals": 9, - "name": "Tereon", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xa6c1a66a3ac742f1885207253fc776d94c8beed5.png", - "aggregators": ["Socket", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0x3d330b8d4eb25b0933e564d7284d462346d453ef": { - "address": "0x3d330b8d4eb25b0933e564d7284d462346d453ef", - "symbol": "GROQ", - "decimals": 9, - "name": "GROQ", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x3d330b8d4eb25b0933e564d7284d462346d453ef.png", - "aggregators": ["Socket", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0x7aa2f174fbc4d0a17b34adfb9b3e1dc029b46d76": { - "address": "0x7aa2f174fbc4d0a17b34adfb9b3e1dc029b46d76", - "symbol": "RADA", - "decimals": 18, - "name": "RADA Foundation", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x7aa2f174fbc4d0a17b34adfb9b3e1dc029b46d76.png", - "aggregators": ["Socket", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0x1814b8a33446549ed5766ab3250b670498699bd6": { - "address": "0x1814b8a33446549ed5766ab3250b670498699bd6", - "symbol": "INVA", - "decimals": 18, - "name": "InnoviaTrust", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x1814b8a33446549ed5766ab3250b670498699bd6.png", - "aggregators": ["Socket", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0x8805792d41facb22b6f47d468b06af36ff3fc1c5": { - "address": "0x8805792d41facb22b6f47d468b06af36ff3fc1c5", - "symbol": "MAX", - "decimals": 18, - "name": "UPMAX", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x8805792d41facb22b6f47d468b06af36ff3fc1c5.png", - "aggregators": ["Socket", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0x8888888888888e0ff220b240499e30430458e568": { - "address": "0x8888888888888e0ff220b240499e30430458e568", - "symbol": "GEN", - "decimals": 18, - "name": "Genesis", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x8888888888888e0ff220b240499e30430458e568.png", - "aggregators": ["Socket", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0x0b49707fb9706428d1bb51a2906617aeaba82346": { - "address": "0x0b49707fb9706428d1bb51a2906617aeaba82346", - "symbol": "PFT", - "decimals": 18, - "name": "PolarFighters", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x0b49707fb9706428d1bb51a2906617aeaba82346.png", - "aggregators": ["Socket", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0xf75302720787c2a2176c87b1919059c4eaac8b98": { - "address": "0xf75302720787c2a2176c87b1919059c4eaac8b98", - "symbol": "CFGI", - "decimals": 18, - "name": "CFGI", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xf75302720787c2a2176c87b1919059c4eaac8b98.png", - "aggregators": ["Socket", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0xf33136452828e8f2dd2b9d8d591ca692f8edaf3c": { - "address": "0xf33136452828e8f2dd2b9d8d591ca692f8edaf3c", - "symbol": "GATE", - "decimals": 9, - "name": "NexGATE", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xf33136452828e8f2dd2b9d8d591ca692f8edaf3c.png", - "aggregators": ["Socket", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0x65e3fa51c4ce0af1b9cd5cbc7c5fdb80a09d431d": { - "address": "0x65e3fa51c4ce0af1b9cd5cbc7c5fdb80a09d431d", - "symbol": "AXLTIA", - "decimals": 6, - "name": "Axelar Wrapped TIA", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x65e3fa51c4ce0af1b9cd5cbc7c5fdb80a09d431d.png", - "aggregators": ["Rubic", "Squid", "Rango", "SushiSwap"], - "occurrences": 4 - }, - "0x3e417231aa72f57512cdb446b15d9682c12ba3ec": { - "address": "0x3e417231aa72f57512cdb446b15d9682c12ba3ec", - "symbol": "TSUKI", - "decimals": 18, - "name": "Tsuki", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x3e417231aa72f57512cdb446b15d9682c12ba3ec.png", - "aggregators": ["CoinGecko", "Rubic", "Rango"], - "occurrences": 3 - }, - "0xad22f63404f7305e4713ccbd4f296f34770513f4": { - "address": "0xad22f63404f7305e4713ccbd4f296f34770513f4", - "symbol": "AWC", - "decimals": 8, - "name": "AWC", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xad22f63404f7305e4713ccbd4f296f34770513f4.png", - "aggregators": ["CoinMarketCap", "Rubic", "Rango"], - "occurrences": 3 - }, - "0xd460a96231e2aa497eca601f526913654fbd4977": { - "address": "0xd460a96231e2aa497eca601f526913654fbd4977", - "symbol": "MANYU", - "decimals": 18, - "name": "LilManyu", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xd460a96231e2aa497eca601f526913654fbd4977.png", - "aggregators": ["CoinGecko", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x90a1717e0dabe37693f79afe43ae236dc3b65957": { - "address": "0x90a1717e0dabe37693f79afe43ae236dc3b65957", - "symbol": "USDM1", - "decimals": 18, - "name": "USDM1", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x90a1717e0dabe37693f79afe43ae236dc3b65957.png", - "aggregators": ["CoinGecko", "Rubic", "Rango"], - "occurrences": 3 - }, - "0xb2089a7069861c8d90c8da3aacab8e9188c0c531": { - "address": "0xb2089a7069861c8d90c8da3aacab8e9188c0c531", - "symbol": "GREEN", - "decimals": 8, - "name": "GREEN", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xb2089a7069861c8d90c8da3aacab8e9188c0c531.png", - "aggregators": ["CoinMarketCap", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x7cc97bf17c5adabe25f9d19d15a1ec8a1ad65f14": { - "address": "0x7cc97bf17c5adabe25f9d19d15a1ec8a1ad65f14", - "symbol": "WOLVERINU", - "decimals": 18, - "name": "Wolverinu", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x7cc97bf17c5adabe25f9d19d15a1ec8a1ad65f14.png", - "aggregators": ["CoinGecko", "Rubic", "Sonarwatch"], - "occurrences": 3 - }, - "0x9b6a1d4fa5d90e5f2d34130053978d14cd301d58": { - "address": "0x9b6a1d4fa5d90e5f2d34130053978d14cd301d58", - "symbol": "DN", - "decimals": 18, - "name": "DN", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x9b6a1d4fa5d90e5f2d34130053978d14cd301d58.png", - "aggregators": ["CoinMarketCap", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x11a001dc777f5bf8a5d63f246664d3bb67be496c": { - "address": "0x11a001dc777f5bf8a5d63f246664d3bb67be496c", - "symbol": "OGGIE", - "decimals": 9, - "name": "Oggie", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x11a001dc777f5bf8a5d63f246664d3bb67be496c.png", - "aggregators": ["CoinMarketCap", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x961dd84059505d59f82ce4fb87d3c09bec65301d": { - "address": "0x961dd84059505d59f82ce4fb87d3c09bec65301d", - "symbol": "TXJP", - "decimals": 8, - "name": "TXJP", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x961dd84059505d59f82ce4fb87d3c09bec65301d.png", - "aggregators": ["CoinGecko", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x734eec7930bc84ec5732022b9eb949a81fb89abe": { - "address": "0x734eec7930bc84ec5732022b9eb949a81fb89abe", - "symbol": "ETH0", - "decimals": 18, - "name": "ETH0", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x734eec7930bc84ec5732022b9eb949a81fb89abe.png", - "aggregators": ["CoinGecko", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x755d61b9acbc7fcc935e280291cd86cc1913af93": { - "address": "0x755d61b9acbc7fcc935e280291cd86cc1913af93", - "symbol": "$MEDXT", - "decimals": 18, - "name": "MedXT", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x755d61b9acbc7fcc935e280291cd86cc1913af93.png", - "aggregators": ["CoinMarketCap", "Rubic", "Rango"], - "occurrences": 3 - }, - "0xf9962329a1e9fa84836d2f37640d7012fb588e9d": { - "address": "0xf9962329a1e9fa84836d2f37640d7012fb588e9d", - "symbol": "DOGS", - "decimals": 9, - "name": "We Love Dogs", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xf9962329a1e9fa84836d2f37640d7012fb588e9d.png", - "aggregators": ["CoinGecko", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x58f7345b5295e43aa454911571f13be186655be9": { - "address": "0x58f7345b5295e43aa454911571f13be186655be9", - "symbol": "GRLC", - "decimals": 8, - "name": "Garlicoin", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x58f7345b5295e43aa454911571f13be186655be9.png", - "aggregators": ["CoinMarketCap", "Rubic", "Sonarwatch"], - "occurrences": 3 - }, - "0xa9299c296d7830a99414d1e5546f5171fa01e9c8": { - "address": "0xa9299c296d7830a99414d1e5546f5171fa01e9c8", - "symbol": "DGLD", - "decimals": 18, - "name": "DGLD", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xa9299c296d7830a99414d1e5546f5171fa01e9c8.png", - "aggregators": ["CoinMarketCap", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x4951bec6f4dfc23935c0ec8af92f231f4c20ea03": { - "address": "0x4951bec6f4dfc23935c0ec8af92f231f4c20ea03", - "symbol": "BTM", - "decimals": 8, - "name": "BTM", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x4951bec6f4dfc23935c0ec8af92f231f4c20ea03.png", - "aggregators": ["CoinMarketCap", "Rubic", "Rango"], - "occurrences": 3 - }, - "0xbe1936a67f503e0eaf2434b0cf9f4e3d7100008a": { - "address": "0xbe1936a67f503e0eaf2434b0cf9f4e3d7100008a", - "symbol": "PROS", - "decimals": 18, - "name": "PROS", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xbe1936a67f503e0eaf2434b0cf9f4e3d7100008a.png", - "aggregators": ["CoinMarketCap", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x949bed886c739f1a3273629b3320db0c5024c719": { - "address": "0x949bed886c739f1a3273629b3320db0c5024c719", - "symbol": "AMIS", - "decimals": 9, - "name": "AMIS", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x949bed886c739f1a3273629b3320db0c5024c719.png", - "aggregators": ["CoinMarketCap", "LiFi", "Rubic"], - "occurrences": 3 - }, - "0x0e0989b1f9b8a38983c2ba8053269ca62ec9b195": { - "address": "0x0e0989b1f9b8a38983c2ba8053269ca62ec9b195", - "symbol": "POE", - "decimals": 8, - "name": "Po.et", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x0e0989b1f9b8a38983c2ba8053269ca62ec9b195.png", - "aggregators": ["CoinMarketCap", "Rubic", "Rango"], - "occurrences": 3 - }, - "0xc96df921009b790dffca412375251ed1a2b75c60": { - "address": "0xc96df921009b790dffca412375251ed1a2b75c60", - "symbol": "ORME", - "decimals": 8, - "name": "Ormeus Coin", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xc96df921009b790dffca412375251ed1a2b75c60.png", - "aggregators": ["CoinMarketCap", "Rubic", "Rango"], - "occurrences": 3 - }, - "0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8": { - "address": "0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8", - "symbol": "EVX", - "decimals": 4, - "name": "Everex", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8.png", - "aggregators": ["CoinMarketCap", "Rubic", "Rango"], - "occurrences": 3 - }, - "0xff18dbc487b4c2e3222d115952babfda8ba52f5f": { - "address": "0xff18dbc487b4c2e3222d115952babfda8ba52f5f", - "symbol": "LIFE", - "decimals": 18, - "name": "PureLifeCoin", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xff18dbc487b4c2e3222d115952babfda8ba52f5f.png", - "aggregators": ["CoinMarketCap", "Socket", "Rubic"], - "occurrences": 3 - }, - "0xa2791bdf2d5055cda4d46ec17f9f429568275047": { - "address": "0xa2791bdf2d5055cda4d46ec17f9f429568275047", - "symbol": "NULS", - "decimals": 8, - "name": "Nuls", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xa2791bdf2d5055cda4d46ec17f9f429568275047.png", - "aggregators": ["CoinMarketCap", "Socket", "Rubic"], - "occurrences": 3 - }, - "0x679badc551626e01b23ceecefbc9b877ea18fc46": { - "address": "0x679badc551626e01b23ceecefbc9b877ea18fc46", - "symbol": "CCO", - "decimals": 18, - "name": "Ccore", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x679badc551626e01b23ceecefbc9b877ea18fc46.png", - "aggregators": ["CoinMarketCap", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x11613b1f840bb5a40f8866d857e24da126b79d73": { - "address": "0x11613b1f840bb5a40f8866d857e24da126b79d73", - "symbol": "CAPP", - "decimals": 2, - "name": "CAPP Token", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x11613b1f840bb5a40f8866d857e24da126b79d73.png", - "aggregators": ["CoinMarketCap", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x8b1f49491477e0fb46a29fef53f1ea320d13c349": { - "address": "0x8b1f49491477e0fb46a29fef53f1ea320d13c349", - "symbol": "AMM", - "decimals": 6, - "name": "MicroMoney", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x8b1f49491477e0fb46a29fef53f1ea320d13c349.png", - "aggregators": ["CoinMarketCap", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x72adadb447784dd7ab1f472467750fc485e4cb2d": { - "address": "0x72adadb447784dd7ab1f472467750fc485e4cb2d", - "symbol": "WRC", - "decimals": 6, - "name": "Worldcore", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x72adadb447784dd7ab1f472467750fc485e4cb2d.png", - "aggregators": ["CoinMarketCap", "Rubic", "Rango"], - "occurrences": 3 - }, - "0xd8924385cd46e6af6f377871c732bde2f8e9dd18": { - "address": "0xd8924385cd46e6af6f377871c732bde2f8e9dd18", - "symbol": "PYLNT", - "decimals": 18, - "name": "PYLNT", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xd8924385cd46e6af6f377871c732bde2f8e9dd18.png", - "aggregators": ["CoinMarketCap", "LiFi", "Rubic"], - "occurrences": 3 - }, - "0xbe038a2fdfec62cf1bed852f141a43005035edcc": { - "address": "0xbe038a2fdfec62cf1bed852f141a43005035edcc", - "symbol": "INT", - "decimals": 18, - "name": "Internet Node Token", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xbe038a2fdfec62cf1bed852f141a43005035edcc.png", - "aggregators": ["CoinMarketCap", "Socket", "Rubic"], - "occurrences": 3 - }, - "0xe75ad3aab14e4b0df8c5da4286608dabb21bd864": { - "address": "0xe75ad3aab14e4b0df8c5da4286608dabb21bd864", - "symbol": "AAC", - "decimals": 5, - "name": "AcuteAngleCoin", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xe75ad3aab14e4b0df8c5da4286608dabb21bd864.png", - "aggregators": ["CoinMarketCap", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x5136c98a80811c3f46bdda8b5c4555cfd9f812f0": { - "address": "0x5136c98a80811c3f46bdda8b5c4555cfd9f812f0", - "symbol": "IDH", - "decimals": 6, - "name": "indaHash Coin", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x5136c98a80811c3f46bdda8b5c4555cfd9f812f0.png", - "aggregators": ["CoinMarketCap", "LiFi", "Rubic"], - "occurrences": 3 - }, - "0xfae4ee59cdd86e3be9e8b90b53aa866327d7c090": { - "address": "0xfae4ee59cdd86e3be9e8b90b53aa866327d7c090", - "symbol": "CPC", - "decimals": 18, - "name": "CPChain", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xfae4ee59cdd86e3be9e8b90b53aa866327d7c090.png", - "aggregators": ["CoinMarketCap", "LiFi", "Rubic"], - "occurrences": 3 - }, - "0x2ccbff3a042c68716ed2a2cb0c544a9f1d1935e1": { - "address": "0x2ccbff3a042c68716ed2a2cb0c544a9f1d1935e1", - "symbol": "DMT", - "decimals": 8, - "name": "DMarket Token", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x2ccbff3a042c68716ed2a2cb0c544a9f1d1935e1.png", - "aggregators": ["CoinMarketCap", "Socket", "Rubic"], - "occurrences": 3 - }, - "0x0b4bdc478791897274652dc15ef5c135cae61e60": { - "address": "0x0b4bdc478791897274652dc15ef5c135cae61e60", - "symbol": "DAX", - "decimals": 18, - "name": "DAEX Token", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x0b4bdc478791897274652dc15ef5c135cae61e60.png", - "aggregators": ["CoinMarketCap", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x4a527d8fc13c5203ab24ba0944f4cb14658d1db6": { - "address": "0x4a527d8fc13c5203ab24ba0944f4cb14658d1db6", - "symbol": "MITX", - "decimals": 18, - "name": "Morpheus Infrastructure Token", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x4a527d8fc13c5203ab24ba0944f4cb14658d1db6.png", - "aggregators": ["CoinMarketCap", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x9c38688e5acb9ed6049c8502650db5ac8ef96465": { - "address": "0x9c38688e5acb9ed6049c8502650db5ac8ef96465", - "symbol": "LIF", - "decimals": 18, - "name": "LifToken", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x9c38688e5acb9ed6049c8502650db5ac8ef96465.png", - "aggregators": ["CoinMarketCap", "LiFi", "Rubic"], - "occurrences": 3 - }, - "0x228ba514309ffdf03a81a205a6d040e429d6e80c": { - "address": "0x228ba514309ffdf03a81a205a6d040e429d6e80c", - "symbol": "GSC", - "decimals": 18, - "name": "Global Social Chain", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x228ba514309ffdf03a81a205a6d040e429d6e80c.png", - "aggregators": ["CoinMarketCap", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x624d520bab2e4ad83935fa503fb130614374e850": { - "address": "0x624d520bab2e4ad83935fa503fb130614374e850", - "symbol": "SSP", - "decimals": 4, - "name": "smartshare token", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x624d520bab2e4ad83935fa503fb130614374e850.png", - "aggregators": ["CoinMarketCap", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x9ab165d795019b6d8b3e971dda91071421305e5a": { - "address": "0x9ab165d795019b6d8b3e971dda91071421305e5a", - "symbol": "AOA", - "decimals": 18, - "name": "Aurora", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x9ab165d795019b6d8b3e971dda91071421305e5a.png", - "aggregators": ["CoinMarketCap", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x37e1160184f7dd29f00b78c050bf13224780b0b0": { - "address": "0x37e1160184f7dd29f00b78c050bf13224780b0b0", - "symbol": "YCC", - "decimals": 8, - "name": "Yuan Chain New", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x37e1160184f7dd29f00b78c050bf13224780b0b0.png", - "aggregators": ["CoinMarketCap", "LiFi", "Rubic"], - "occurrences": 3 - }, - "0xefd720c94659f2ccb767809347245f917a145ed8": { - "address": "0xefd720c94659f2ccb767809347245f917a145ed8", - "symbol": "QUO", - "decimals": 18, - "name": "Quoxent", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xefd720c94659f2ccb767809347245f917a145ed8.png", - "aggregators": ["CoinMarketCap", "LiFi", "Rubic"], - "occurrences": 3 - }, - "0x89020f0d5c5af4f3407eb5fe185416c457b0e93e": { - "address": "0x89020f0d5c5af4f3407eb5fe185416c457b0e93e", - "symbol": "EDN", - "decimals": 18, - "name": "Eden Coin", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x89020f0d5c5af4f3407eb5fe185416c457b0e93e.png", - "aggregators": ["CoinMarketCap", "LiFi", "Rubic"], - "occurrences": 3 - }, - "0x8578530205cecbe5db83f7f29ecfeec860c297c2": { - "address": "0x8578530205cecbe5db83f7f29ecfeec860c297c2", - "symbol": "AOG", - "decimals": 18, - "name": "smARTOFGIVING", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x8578530205cecbe5db83f7f29ecfeec860c297c2.png", - "aggregators": ["CoinMarketCap", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x574f84108a98c575794f75483d801d1d5dc861a5": { - "address": "0x574f84108a98c575794f75483d801d1d5dc861a5", - "symbol": "ROX", - "decimals": 18, - "name": "Robotina token", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x574f84108a98c575794f75483d801d1d5dc861a5.png", - "aggregators": ["CoinMarketCap", "Socket", "Rubic"], - "occurrences": 3 - }, - "0x77761e63c05aee6648fdaeaa9b94248351af9bcd": { - "address": "0x77761e63c05aee6648fdaeaa9b94248351af9bcd", - "symbol": "PASS", - "decimals": 18, - "name": "PASS Token", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x77761e63c05aee6648fdaeaa9b94248351af9bcd.png", - "aggregators": ["CoinMarketCap", "Socket", "Rango"], - "occurrences": 3 - }, - "0xa0d440c6da37892dc06ee7930b2eede0634fd681": { - "address": "0xa0d440c6da37892dc06ee7930b2eede0634fd681", - "symbol": "MASH", - "decimals": 8, - "name": "MasterNet", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xa0d440c6da37892dc06ee7930b2eede0634fd681.png", - "aggregators": ["CoinMarketCap", "LiFi", "Rubic"], - "occurrences": 3 - }, - "0xb3e2cb7cccfe139f8ff84013823bf22da6b6390a": { - "address": "0xb3e2cb7cccfe139f8ff84013823bf22da6b6390a", - "symbol": "ICNQ", - "decimals": 18, - "name": "Iconiq Lab Token", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xb3e2cb7cccfe139f8ff84013823bf22da6b6390a.png", - "aggregators": ["CoinMarketCap", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x47e67ba66b0699500f18a53f94e2b9db3d47437e": { - "address": "0x47e67ba66b0699500f18a53f94e2b9db3d47437e", - "symbol": "PXG", - "decimals": 18, - "name": "PlayGame", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x47e67ba66b0699500f18a53f94e2b9db3d47437e.png", - "aggregators": ["CoinMarketCap", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x32c4adb9cf57f972bc375129de91c897b4f364f1": { - "address": "0x32c4adb9cf57f972bc375129de91c897b4f364f1", - "symbol": "FLC", - "decimals": 18, - "name": "Flowchain", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x32c4adb9cf57f972bc375129de91c897b4f364f1.png", - "aggregators": ["CoinMarketCap", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x996229d0c6a485c7f4b52e092eaa907cb2def5c6": { - "address": "0x996229d0c6a485c7f4b52e092eaa907cb2def5c6", - "symbol": "BHIG", - "decimals": 18, - "name": "BuckHathCoin", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x996229d0c6a485c7f4b52e092eaa907cb2def5c6.png", - "aggregators": ["CoinMarketCap", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x00e150d741eda1d49d341189cae4c08a73a49c95": { - "address": "0x00e150d741eda1d49d341189cae4c08a73a49c95", - "symbol": "INF", - "decimals": 18, - "name": "InfinitusTokens", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x00e150d741eda1d49d341189cae4c08a73a49c95.png", - "aggregators": ["CoinMarketCap", "Socket", "Rubic"], - "occurrences": 3 - }, - "0x76c4a2b59523eae19594c630aab43288dbb1463f": { - "address": "0x76c4a2b59523eae19594c630aab43288dbb1463f", - "symbol": "IRIS", - "decimals": 6, - "name": "IRISnet", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x76c4a2b59523eae19594c630aab43288dbb1463f.png", - "aggregators": ["CoinMarketCap", "LiFi", "Rubic"], - "occurrences": 3 - }, - "0xbdfa65533074b0b23ebc18c7190be79fa74b30c2": { - "address": "0xbdfa65533074b0b23ebc18c7190be79fa74b30c2", - "symbol": "ZDR", - "decimals": 18, - "name": "Zloadr Token", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xbdfa65533074b0b23ebc18c7190be79fa74b30c2.png", - "aggregators": ["CoinMarketCap", "LiFi", "Rubic"], - "occurrences": 3 - }, - "0xee9e5eff401ee921b138490d00ca8d1f13f67a72": { - "address": "0xee9e5eff401ee921b138490d00ca8d1f13f67a72", - "symbol": "AFIN", - "decimals": 8, - "name": "Asian Fintech", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xee9e5eff401ee921b138490d00ca8d1f13f67a72.png", - "aggregators": ["CoinMarketCap", "Rubic", "Rango"], - "occurrences": 3 - }, - "0xae353daeed8dcc7a9a12027f7e070c0a50b7b6a4": { - "address": "0xae353daeed8dcc7a9a12027f7e070c0a50b7b6a4", - "symbol": "MINX", - "decimals": 6, - "name": "InnovaMinex", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xae353daeed8dcc7a9a12027f7e070c0a50b7b6a4.png", - "aggregators": ["CoinMarketCap", "LiFi", "Rubic"], - "occurrences": 3 - }, - "0x187d1018e8ef879be4194d6ed7590987463ead85": { - "address": "0x187d1018e8ef879be4194d6ed7590987463ead85", - "symbol": "FUZE", - "decimals": 18, - "name": "FUZE Token", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x187d1018e8ef879be4194d6ed7590987463ead85.png", - "aggregators": ["CoinMarketCap", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x34d6a0f5c2f5d0082141fe73d93b9dd00ca7ce11": { - "address": "0x34d6a0f5c2f5d0082141fe73d93b9dd00ca7ce11", - "symbol": "GOLD", - "decimals": 18, - "name": "GOLDEN TOKEN", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x34d6a0f5c2f5d0082141fe73d93b9dd00ca7ce11.png", - "aggregators": ["CoinMarketCap", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x122f96d596384885b54bccdddf2125018c421d83": { - "address": "0x122f96d596384885b54bccdddf2125018c421d83", - "symbol": "CBIX", - "decimals": 8, - "name": "Cubiex", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x122f96d596384885b54bccdddf2125018c421d83.png", - "aggregators": ["CoinMarketCap", "LiFi", "Rubic"], - "occurrences": 3 - }, - "0x4057db5bd9f67a566aa10e5587b1a964affc6a16": { - "address": "0x4057db5bd9f67a566aa10e5587b1a964affc6a16", - "symbol": "TFBX", - "decimals": 18, - "name": "TrueFeedBack", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x4057db5bd9f67a566aa10e5587b1a964affc6a16.png", - "aggregators": ["CoinMarketCap", "Rubic", "Rango"], - "occurrences": 3 - }, - "0xcb39c3502415152b2ec90ff07ee18cc94f681a72": { - "address": "0xcb39c3502415152b2ec90ff07ee18cc94f681a72", - "symbol": "STO", - "decimals": 18, - "name": "storeum", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xcb39c3502415152b2ec90ff07ee18cc94f681a72.png", - "aggregators": ["CoinMarketCap", "Socket", "Rubic"], - "occurrences": 3 - }, - "0x35b08722aa26be119c1608029ccbc976ac5c1082": { - "address": "0x35b08722aa26be119c1608029ccbc976ac5c1082", - "symbol": "EM", - "decimals": 8, - "name": "Eminer", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x35b08722aa26be119c1608029ccbc976ac5c1082.png", - "aggregators": ["CoinMarketCap", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x72e203a17add19a3099137c9d7015fd3e2b7dba9": { - "address": "0x72e203a17add19a3099137c9d7015fd3e2b7dba9", - "symbol": "BCP", - "decimals": 18, - "name": "BlockchainPoland", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x72e203a17add19a3099137c9d7015fd3e2b7dba9.png", - "aggregators": ["CoinMarketCap", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x00fc270c9cc13e878ab5363d00354bebf6f05c15": { - "address": "0x00fc270c9cc13e878ab5363d00354bebf6f05c15", - "symbol": "VNXLU", - "decimals": 18, - "name": "VNX Exchange", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x00fc270c9cc13e878ab5363d00354bebf6f05c15.png", - "aggregators": ["CoinMarketCap", "LiFi", "Rubic"], - "occurrences": 3 - }, - "0xd9a8cfe21c232d485065cb62a96866799d4645f7": { - "address": "0xd9a8cfe21c232d485065cb62a96866799d4645f7", - "symbol": "FGP", - "decimals": 18, - "name": "FingerPrint", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xd9a8cfe21c232d485065cb62a96866799d4645f7.png", - "aggregators": ["CoinMarketCap", "LiFi", "Rubic"], - "occurrences": 3 - }, - "0x6be61833fc4381990e82d7d4a9f4c9b3f67ea941": { - "address": "0x6be61833fc4381990e82d7d4a9f4c9b3f67ea941", - "symbol": "HTB", - "decimals": 18, - "name": "Hotbit Token", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x6be61833fc4381990e82d7d4a9f4c9b3f67ea941.png", - "aggregators": ["CoinMarketCap", "LiFi", "Rubic"], - "occurrences": 3 - }, - "0x777fd20c983d6658c1d50b3958b3a1733d1cd1e1": { - "address": "0x777fd20c983d6658c1d50b3958b3a1733d1cd1e1", - "symbol": "NEWS", - "decimals": 9, - "name": "PUBLISH", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x777fd20c983d6658c1d50b3958b3a1733d1cd1e1.png", - "aggregators": ["Metamask", "Rubic", "Rango"], - "occurrences": 3 - }, - "0xaa2ce7ae64066175e0b90497ce7d9c190c315db4": { - "address": "0xaa2ce7ae64066175e0b90497ce7d9c190c315db4", - "symbol": "SUTER", - "decimals": 18, - "name": "Suterusu", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xaa2ce7ae64066175e0b90497ce7d9c190c315db4.png", - "aggregators": ["CoinMarketCap", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x4574562e9310a94f9ca962bd23168d8a06875b1a": { - "address": "0x4574562e9310a94f9ca962bd23168d8a06875b1a", - "symbol": "TROY", - "decimals": 18, - "name": "TROY", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x4574562e9310a94f9ca962bd23168d8a06875b1a.png", - "aggregators": ["CoinMarketCap", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x208bbb6bcea22ef2011789331405347394ebaa51": { - "address": "0x208bbb6bcea22ef2011789331405347394ebaa51", - "symbol": "1AI", - "decimals": 18, - "name": "AI", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x208bbb6bcea22ef2011789331405347394ebaa51.png", - "aggregators": ["CoinMarketCap", "LiFi", "Rubic"], - "occurrences": 3 - }, - "0x016ee7373248a80bde1fd6baa001311d233b3cfa": { - "address": "0x016ee7373248a80bde1fd6baa001311d233b3cfa", - "symbol": "BEAR", - "decimals": 18, - "name": "3X Short Bitcoin Token", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x016ee7373248a80bde1fd6baa001311d233b3cfa.png", - "aggregators": ["CoinMarketCap", "LiFi", "Rubic"], - "occurrences": 3 - }, - "0x3c2a309d9005433c1bc2c92ef1be06489e5bf258": { - "address": "0x3c2a309d9005433c1bc2c92ef1be06489e5bf258", - "symbol": "WPCI", - "decimals": 8, - "name": "Paycoin", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x3c2a309d9005433c1bc2c92ef1be06489e5bf258.png", - "aggregators": ["CoinMarketCap", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x51bc0deaf7bbe82bc9006b0c3531668a4206d27f": { - "address": "0x51bc0deaf7bbe82bc9006b0c3531668a4206d27f", - "symbol": "RAKU", - "decimals": 18, - "name": "RAKUN", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x51bc0deaf7bbe82bc9006b0c3531668a4206d27f.png", - "aggregators": ["CoinMarketCap", "LiFi", "Rubic"], - "occurrences": 3 - }, - "0xd9bae39c725a1864b1133ad0ef1640d02f79b78c": { - "address": "0xd9bae39c725a1864b1133ad0ef1640d02f79b78c", - "symbol": "TST", - "decimals": 18, - "name": "Touch Smart Token", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xd9bae39c725a1864b1133ad0ef1640d02f79b78c.png", - "aggregators": ["CoinMarketCap", "Socket", "Rubic"], - "occurrences": 3 - }, - "0xe0a16435df493bd17a58cb2ee58675f5ea069517": { - "address": "0xe0a16435df493bd17a58cb2ee58675f5ea069517", - "symbol": "GREEN", - "decimals": 18, - "name": "Green Token", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xe0a16435df493bd17a58cb2ee58675f5ea069517.png", - "aggregators": ["CoinMarketCap", "Socket", "Rubic"], - "occurrences": 3 - }, - "0x0d15009896efe9972f8e086bdd3bcba5c1f74bf3": { - "address": "0x0d15009896efe9972f8e086bdd3bcba5c1f74bf3", - "symbol": "SONO", - "decimals": 8, - "name": "SonoCoin", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x0d15009896efe9972f8e086bdd3bcba5c1f74bf3.png", - "aggregators": ["CoinMarketCap", "Rubic", "Rango"], - "occurrences": 3 - }, - "0xcfd6ae8bf13f42de14867351eaff7a8a3b9fbbe7": { - "address": "0xcfd6ae8bf13f42de14867351eaff7a8a3b9fbbe7", - "symbol": "SNG", - "decimals": 8, - "name": "SINERGIA", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xcfd6ae8bf13f42de14867351eaff7a8a3b9fbbe7.png", - "aggregators": ["CoinMarketCap", "LiFi", "Rubic"], - "occurrences": 3 - }, - "0x8fc9b6354e839ab1c8b31f4afa53607092b8c2e5": { - "address": "0x8fc9b6354e839ab1c8b31f4afa53607092b8c2e5", - "symbol": "ECU", - "decimals": 18, - "name": "ECOSCU", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x8fc9b6354e839ab1c8b31f4afa53607092b8c2e5.png", - "aggregators": ["CoinMarketCap", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x16b0a1a87ae8af5c792fabc429c4fe248834842b": { - "address": "0x16b0a1a87ae8af5c792fabc429c4fe248834842b", - "symbol": "ALG", - "decimals": 18, - "name": "Algory", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x16b0a1a87ae8af5c792fabc429c4fe248834842b.png", - "aggregators": ["CoinMarketCap", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x61bfc979ea8160ede9b862798b7833a97bafa02a": { - "address": "0x61bfc979ea8160ede9b862798b7833a97bafa02a", - "symbol": "REL", - "decimals": 18, - "name": "RELEASE COIN", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x61bfc979ea8160ede9b862798b7833a97bafa02a.png", - "aggregators": ["CoinMarketCap", "Socket", "Rubic"], - "occurrences": 3 - }, - "0xc4199fb6ffdb30a829614beca030f9042f1c3992": { - "address": "0xc4199fb6ffdb30a829614beca030f9042f1c3992", - "symbol": "SGT", - "decimals": 18, - "name": "snglsDAO Governance Token", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xc4199fb6ffdb30a829614beca030f9042f1c3992.png", - "aggregators": ["CoinMarketCap", "Socket", "Rubic"], - "occurrences": 3 - }, - "0x400b1d8a7dd8c471026b2c8cbe1062b27d120538": { - "address": "0x400b1d8a7dd8c471026b2c8cbe1062b27d120538", - "symbol": "LIMEX", - "decimals": 8, - "name": "Limestone Network", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x400b1d8a7dd8c471026b2c8cbe1062b27d120538.png", - "aggregators": ["CoinMarketCap", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x4599836c212cd988eaccc54c820ee9261cdaac71": { - "address": "0x4599836c212cd988eaccc54c820ee9261cdaac71", - "symbol": "CID", - "decimals": 18, - "name": "Cryptid", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x4599836c212cd988eaccc54c820ee9261cdaac71.png", - "aggregators": ["CoinMarketCap", "LiFi", "Rubic"], - "occurrences": 3 - }, - "0xe64b47931f28f89cc7a0c6965ecf89eadb4975f5": { - "address": "0xe64b47931f28f89cc7a0c6965ecf89eadb4975f5", - "symbol": "LUD", - "decimals": 18, - "name": "Ludos Protocol", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xe64b47931f28f89cc7a0c6965ecf89eadb4975f5.png", - "aggregators": ["CoinMarketCap", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x68a118ef45063051eac49c7e647ce5ace48a68a5": { - "address": "0x68a118ef45063051eac49c7e647ce5ace48a68a5", - "symbol": "$BASED", - "decimals": 18, - "name": "$BASED", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x68a118ef45063051eac49c7e647ce5ace48a68a5.png", - "aggregators": ["CoinMarketCap", "LiFi", "Rubic"], - "occurrences": 3 - }, - "0xfab5a05c933f1a2463e334e011992e897d56ef0a": { - "address": "0xfab5a05c933f1a2463e334e011992e897d56ef0a", - "symbol": "DOTX", - "decimals": 18, - "name": "DeFi Of Thrones", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xfab5a05c933f1a2463e334e011992e897d56ef0a.png", - "aggregators": ["CoinMarketCap", "LiFi", "Rubic"], - "occurrences": 3 - }, - "0x035bfe6057e15ea692c0dfdcab3bb41a64dd2ad4": { - "address": "0x035bfe6057e15ea692c0dfdcab3bb41a64dd2ad4", - "symbol": "ULU", - "decimals": 18, - "name": "Universal Liquidity Union", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x035bfe6057e15ea692c0dfdcab3bb41a64dd2ad4.png", - "aggregators": ["CoinMarketCap", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x1788430620960f9a70e3dc14202a3a35dde1a316": { - "address": "0x1788430620960f9a70e3dc14202a3a35dde1a316", - "symbol": "OAP", - "decimals": 18, - "name": "Open Alexa Protocol", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x1788430620960f9a70e3dc14202a3a35dde1a316.png", - "aggregators": ["CoinMarketCap", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x69692d3345010a207b759a7d1af6fc7f38b35c5e": { - "address": "0x69692d3345010a207b759a7d1af6fc7f38b35c5e", - "symbol": "CHADS", - "decimals": 18, - "name": "chads.vc", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x69692d3345010a207b759a7d1af6fc7f38b35c5e.png", - "aggregators": ["CoinMarketCap", "TrustWallet", "Rubic"], - "occurrences": 3 - }, - "0x5c4ac68aac56ebe098d621cd8ce9f43270aaa355": { - "address": "0x5c4ac68aac56ebe098d621cd8ce9f43270aaa355", - "symbol": "BXIOT", - "decimals": 6, - "name": "bXIOT Token", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x5c4ac68aac56ebe098d621cd8ce9f43270aaa355.png", - "aggregators": ["CoinMarketCap", "LiFi", "Rubic"], - "occurrences": 3 - }, - "0xe6410569602124506658ff992f258616ea2d4a3d": { - "address": "0xe6410569602124506658ff992f258616ea2d4a3d", - "symbol": "KATANA", - "decimals": 18, - "name": "KatanaToken", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xe6410569602124506658ff992f258616ea2d4a3d.png", - "aggregators": ["CoinMarketCap", "LiFi", "Rubic"], - "occurrences": 3 - }, - "0xe09216f1d343dd39d6aa732a08036fee48555af0": { - "address": "0xe09216f1d343dd39d6aa732a08036fee48555af0", - "symbol": "TRIB", - "decimals": 18, - "name": "Contribute", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xe09216f1d343dd39d6aa732a08036fee48555af0.png", - "aggregators": ["CoinMarketCap", "LiFi", "Rubic"], - "occurrences": 3 - }, - "0xbcd9e216200369803ed059b7744f6fb4cf3887c7": { - "address": "0xbcd9e216200369803ed059b7744f6fb4cf3887c7", - "symbol": "EPIC", - "decimals": 18, - "name": "Epic", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xbcd9e216200369803ed059b7744f6fb4cf3887c7.png", - "aggregators": ["CoinMarketCap", "Socket", "Rubic"], - "occurrences": 3 - }, - "0xed7fa212e100dfb3b13b834233e4b680332a3420": { - "address": "0xed7fa212e100dfb3b13b834233e4b680332a3420", - "symbol": "CRED", - "decimals": 18, - "name": "Street Cred", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xed7fa212e100dfb3b13b834233e4b680332a3420.png", - "aggregators": ["CoinMarketCap", "LiFi", "Rubic"], - "occurrences": 3 - }, - "0xb4fbed161bebcb37afb1cb4a6f7ca18b977ccb25": { - "address": "0xb4fbed161bebcb37afb1cb4a6f7ca18b977ccb25", - "symbol": "DOGES", - "decimals": 18, - "name": "DOGEswap", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xb4fbed161bebcb37afb1cb4a6f7ca18b977ccb25.png", - "aggregators": ["CoinMarketCap", "Rubic", "Rango"], - "occurrences": 3 - }, - "0xdd039990bd551ce7437d3bf54d155220b7988b71": { - "address": "0xdd039990bd551ce7437d3bf54d155220b7988b71", - "symbol": "DEGENS", - "decimals": 18, - "name": "Degens Token", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xdd039990bd551ce7437d3bf54d155220b7988b71.png", - "aggregators": ["CoinMarketCap", "LiFi", "Rubic"], - "occurrences": 3 - }, - "0x160b1e5aabfd70b2fc40af815014925d71ceed7e": { - "address": "0x160b1e5aabfd70b2fc40af815014925d71ceed7e", - "symbol": "STFIRO", - "decimals": 8, - "name": "stakedFiro", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x160b1e5aabfd70b2fc40af815014925d71ceed7e.png", - "aggregators": ["CoinMarketCap", "LiFi", "Rubic"], - "occurrences": 3 - }, - "0x79ba92dda26fce15e1e9af47d5cfdfd2a093e000": { - "address": "0x79ba92dda26fce15e1e9af47d5cfdfd2a093e000", - "symbol": "SERGS", - "decimals": 18, - "name": "SERGS", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x79ba92dda26fce15e1e9af47d5cfdfd2a093e000.png", - "aggregators": ["CoinMarketCap", "LiFi", "Rubic"], - "occurrences": 3 - }, - "0x21686f8ce003a95c99acd297e302faacf742f7d4": { - "address": "0x21686f8ce003a95c99acd297e302faacf742f7d4", - "symbol": "WCCX", - "decimals": 6, - "name": "Conceal - Wrapped CCX", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x21686f8ce003a95c99acd297e302faacf742f7d4.png", - "aggregators": ["CoinMarketCap", "LiFi", "Rubic"], - "occurrences": 3 - }, - "0x1368452bfb5cd127971c8de22c58fbe89d35a6bf": { - "address": "0x1368452bfb5cd127971c8de22c58fbe89d35a6bf", - "symbol": "JNTRE", - "decimals": 18, - "name": "JNTRe", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x1368452bfb5cd127971c8de22c58fbe89d35a6bf.png", - "aggregators": ["CoinMarketCap", "Rubic", "Bancor"], - "occurrences": 3 - }, - "0x2e2f3246b6c65ccc4239c9ee556ec143a7e5de2c": { - "address": "0x2e2f3246b6c65ccc4239c9ee556ec143a7e5de2c", - "symbol": "YFIM", - "decimals": 18, - "name": "Yfi.mobi", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x2e2f3246b6c65ccc4239c9ee556ec143a7e5de2c.png", - "aggregators": ["CoinMarketCap", "TrustWallet", "Rubic"], - "occurrences": 3 - }, - "0xbd434a09191d401da3283a5545bb3515d033b8c4": { - "address": "0xbd434a09191d401da3283a5545bb3515d033b8c4", - "symbol": "GIX", - "decimals": 18, - "name": "GoldFinX", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xbd434a09191d401da3283a5545bb3515d033b8c4.png", - "aggregators": ["CoinMarketCap", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x2f4eb47a1b1f4488c71fc10e39a4aa56af33dd49": { - "address": "0x2f4eb47a1b1f4488c71fc10e39a4aa56af33dd49", - "symbol": "UNCL", - "decimals": 18, - "name": "UNCL", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x2f4eb47a1b1f4488c71fc10e39a4aa56af33dd49.png", - "aggregators": ["CoinMarketCap", "LiFi", "Rubic"], - "occurrences": 3 - }, - "0xd1420af453fd7bf940573431d416cace7ff8280c": { - "address": "0xd1420af453fd7bf940573431d416cace7ff8280c", - "symbol": "AGOV", - "decimals": 18, - "name": "ANSWER Governance", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xd1420af453fd7bf940573431d416cace7ff8280c.png", - "aggregators": ["CoinMarketCap", "Rubic", "Rango"], - "occurrences": 3 - }, - "0xa8580f3363684d76055bdc6660caefe8709744e1": { - "address": "0xa8580f3363684d76055bdc6660caefe8709744e1", - "symbol": "FOL", - "decimals": 18, - "name": "Folder Coin", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xa8580f3363684d76055bdc6660caefe8709744e1.png", - "aggregators": ["CoinMarketCap", "LiFi", "Rubic"], - "occurrences": 3 - }, - "0xc626e0619ac79afea9281c8eb9b1a9f9d3fab532": { - "address": "0xc626e0619ac79afea9281c8eb9b1a9f9d3fab532", - "symbol": "FR", - "decimals": 18, - "name": "Freedom Reserve", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xc626e0619ac79afea9281c8eb9b1a9f9d3fab532.png", - "aggregators": ["CoinMarketCap", "LiFi", "Rubic"], - "occurrences": 3 - }, - "0xf7970499814654cd13cb7b6e7634a12a7a8a9abc": { - "address": "0xf7970499814654cd13cb7b6e7634a12a7a8a9abc", - "symbol": "TOM", - "decimals": 18, - "name": "TOM", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xf7970499814654cd13cb7b6e7634a12a7a8a9abc.png", - "aggregators": ["CoinMarketCap", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x8d5db0c1f0681071cb38a382ae6704588d9da587": { - "address": "0x8d5db0c1f0681071cb38a382ae6704588d9da587", - "symbol": "PROPHET", - "decimals": 9, - "name": "prophet.finance", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x8d5db0c1f0681071cb38a382ae6704588d9da587.png", - "aggregators": ["CoinMarketCap", "LiFi", "Rubic"], - "occurrences": 3 - }, - "0x8d1ce361eb68e9e05573443c407d4a3bed23b033": { - "address": "0x8d1ce361eb68e9e05573443c407d4a3bed23b033", - "symbol": "DEFI++", - "decimals": 18, - "name": "PieDAO DEFI++", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x8d1ce361eb68e9e05573443c407d4a3bed23b033.png", - "aggregators": ["CoinMarketCap", "LiFi", "Rubic"], - "occurrences": 3 - }, - "0x3aa5f749d4a6bcf67dac1091ceb69d1f5d86fa53": { - "address": "0x3aa5f749d4a6bcf67dac1091ceb69d1f5d86fa53", - "symbol": "DEFLCT", - "decimals": 9, - "name": "Deflect Protocol", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x3aa5f749d4a6bcf67dac1091ceb69d1f5d86fa53.png", - "aggregators": ["CoinMarketCap", "LiFi", "Rubic"], - "occurrences": 3 - }, - "0x47e820df943170b0e31f9e18ecd5bdd67b77ff1f": { - "address": "0x47e820df943170b0e31f9e18ecd5bdd67b77ff1f", - "symbol": "PIGX", - "decimals": 18, - "name": "PIGX", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x47e820df943170b0e31f9e18ecd5bdd67b77ff1f.png", - "aggregators": ["CoinMarketCap", "LiFi", "Rubic"], - "occurrences": 3 - }, - "0xd36932143f6ebdedd872d5fb0651f4b72fd15a84": { - "address": "0xd36932143f6ebdedd872d5fb0651f4b72fd15a84", - "symbol": "MAAPL", - "decimals": 18, - "name": "Wrapped Mirror AAPL Token", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xd36932143f6ebdedd872d5fb0651f4b72fd15a84.png", - "aggregators": ["CoinMarketCap", "LiFi", "Rubic"], - "occurrences": 3 - }, - "0xc8d674114bac90148d11d3c1d33c61835a0f9dcd": { - "address": "0xc8d674114bac90148d11d3c1d33c61835a0f9dcd", - "symbol": "MNFLX", - "decimals": 18, - "name": "Wrapped Mirror NFLX Token", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xc8d674114bac90148d11d3c1d33c61835a0f9dcd.png", - "aggregators": ["CoinMarketCap", "LiFi", "Rubic"], - "occurrences": 3 - }, - "0x56aa298a19c93c6801fdde870fa63ef75cc0af72": { - "address": "0x56aa298a19c93c6801fdde870fa63ef75cc0af72", - "symbol": "MBABA", - "decimals": 18, - "name": "Wrapped Mirror BABA Token", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x56aa298a19c93c6801fdde870fa63ef75cc0af72.png", - "aggregators": ["CoinMarketCap", "LiFi", "Rubic"], - "occurrences": 3 - }, - "0xedb0414627e6f1e3f082de65cd4f9c693d78cca9": { - "address": "0xedb0414627e6f1e3f082de65cd4f9c693d78cca9", - "symbol": "MTWTR", - "decimals": 18, - "name": "Wrapped Mirror TWTR Token", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xedb0414627e6f1e3f082de65cd4f9c693d78cca9.png", - "aggregators": ["CoinMarketCap", "LiFi", "Rubic"], - "occurrences": 3 - }, - "0x32c868f6318d6334b2250f323d914bc2239e4eee": { - "address": "0x32c868f6318d6334b2250f323d914bc2239e4eee", - "symbol": "N3RDZ", - "decimals": 18, - "name": "N3RD.FINANCE", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x32c868f6318d6334b2250f323d914bc2239e4eee.png", - "aggregators": ["CoinMarketCap", "LiFi", "Rubic"], - "occurrences": 3 - }, - "0x1d350417d9787e000cc1b95d70e9536dcd91f373": { - "address": "0x1d350417d9787e000cc1b95d70e9536dcd91f373", - "symbol": "MIAU", - "decimals": 18, - "name": "Wrapped Mirror IAU Token", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x1d350417d9787e000cc1b95d70e9536dcd91f373.png", - "aggregators": ["CoinMarketCap", "LiFi", "Rubic"], - "occurrences": 3 - }, - "0x56b4f8c39e07d4d5d91692acf9d0f6d4d3493763": { - "address": "0x56b4f8c39e07d4d5d91692acf9d0f6d4d3493763", - "symbol": "TRISM", - "decimals": 18, - "name": "Trism", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x56b4f8c39e07d4d5d91692acf9d0f6d4d3493763.png", - "aggregators": ["CoinMarketCap", "LiFi", "Rubic"], - "occurrences": 3 - }, - "0x17c090f9a17e4e5a8ceb23bbe7e7e28e3c4ca196": { - "address": "0x17c090f9a17e4e5a8ceb23bbe7e7e28e3c4ca196", - "symbol": "DNS", - "decimals": 18, - "name": "BitDNS", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x17c090f9a17e4e5a8ceb23bbe7e7e28e3c4ca196.png", - "aggregators": ["CoinMarketCap", "LiFi", "Rubic"], - "occurrences": 3 - }, - "0x861b2456ac1a6ab5fb5c72aa456091f23ddec1cc": { - "address": "0x861b2456ac1a6ab5fb5c72aa456091f23ddec1cc", - "symbol": "VAULTZ", - "decimals": 18, - "name": "VAULTZ", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x861b2456ac1a6ab5fb5c72aa456091f23ddec1cc.png", - "aggregators": ["CoinMarketCap", "LiFi", "Rubic"], - "occurrences": 3 - }, - "0xb453f1f2ee776daf2586501361c457db70e1ca0f": { - "address": "0xb453f1f2ee776daf2586501361c457db70e1ca0f", - "symbol": "AGAR", - "decimals": 8, - "name": "AGA Rewards", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xb453f1f2ee776daf2586501361c457db70e1ca0f.png", - "aggregators": ["CoinMarketCap", "LiFi", "Rubic"], - "occurrences": 3 - }, - "0x9048c33c7bae0bbe9ad702b17b4453a83900d154": { - "address": "0x9048c33c7bae0bbe9ad702b17b4453a83900d154", - "symbol": "ELX", - "decimals": 18, - "name": "Energy Ledger", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x9048c33c7bae0bbe9ad702b17b4453a83900d154.png", - "aggregators": ["CoinMarketCap", "Socket", "Rubic"], - "occurrences": 3 - }, - "0xbf494f02ee3fde1f20bee6242bce2d1ed0c15e47": { - "address": "0xbf494f02ee3fde1f20bee6242bce2d1ed0c15e47", - "symbol": "WORLD", - "decimals": 18, - "name": "World Token", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xbf494f02ee3fde1f20bee6242bce2d1ed0c15e47.png", - "aggregators": ["CoinMarketCap", "TrustWallet", "Rubic"], - "occurrences": 3 - }, - "0x7671904eed7f10808b664fc30bb8693fd7237abf": { - "address": "0x7671904eed7f10808b664fc30bb8693fd7237abf", - "symbol": "BBR", - "decimals": 18, - "name": "Boolberry", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x7671904eed7f10808b664fc30bb8693fd7237abf.png", - "aggregators": ["CoinMarketCap", "TrustWallet", "Rubic"], - "occurrences": 3 - }, - "0x3fa807b6f8d4c407e6e605368f4372d14658b38c": { - "address": "0x3fa807b6f8d4c407e6e605368f4372d14658b38c", - "symbol": "RISE", - "decimals": 9, - "name": "Rise Protocol", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x3fa807b6f8d4c407e6e605368f4372d14658b38c.png", - "aggregators": ["CoinMarketCap", "Socket", "Rubic"], - "occurrences": 3 - }, - "0x77dce26c03a9b833fc2d7c31c22da4f42e9d9582": { - "address": "0x77dce26c03a9b833fc2d7c31c22da4f42e9d9582", - "symbol": "DVD", - "decimals": 18, - "name": "DAOventuresDeFi", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x77dce26c03a9b833fc2d7c31c22da4f42e9d9582.png", - "aggregators": ["CoinMarketCap", "LiFi", "Rubic"], - "occurrences": 3 - }, - "0x44f262622248027f8e2a8fb1090c4cf85072392c": { - "address": "0x44f262622248027f8e2a8fb1090c4cf85072392c", - "symbol": "XIV", - "decimals": 18, - "name": "INVERSE", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x44f262622248027f8e2a8fb1090c4cf85072392c.png", - "aggregators": ["CoinMarketCap", "LiFi", "Rubic"], - "occurrences": 3 - }, - "0xf0c5831ec3da15f3696b4dad8b21c7ce2f007f28": { - "address": "0xf0c5831ec3da15f3696b4dad8b21c7ce2f007f28", - "symbol": "AXIS", - "decimals": 8, - "name": "AXIS Token", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xf0c5831ec3da15f3696b4dad8b21c7ce2f007f28.png", - "aggregators": ["CoinMarketCap", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x11003e410ca3fcd220765b3d2f343433a0b2bffd": { - "address": "0x11003e410ca3fcd220765b3d2f343433a0b2bffd", - "symbol": "METH", - "decimals": 18, - "name": "Farming Bad", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x11003e410ca3fcd220765b3d2f343433a0b2bffd.png", - "aggregators": ["CoinMarketCap", "Socket", "Rubic"], - "occurrences": 3 - }, - "0x957891c11616d3e0b0a76a76fb42724c382e0ef3": { - "address": "0x957891c11616d3e0b0a76a76fb42724c382e0ef3", - "symbol": "COLL", - "decimals": 18, - "name": "Collateral", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x957891c11616d3e0b0a76a76fb42724c382e0ef3.png", - "aggregators": ["CoinMarketCap", "LiFi", "Rubic"], - "occurrences": 3 - }, - "0x65ad6a2288b2dd23e466226397c8f5d1794e58fc": { - "address": "0x65ad6a2288b2dd23e466226397c8f5d1794e58fc", - "symbol": "GFX", - "decimals": 18, - "name": "GamyFi Platform", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x65ad6a2288b2dd23e466226397c8f5d1794e58fc.png", - "aggregators": ["CoinMarketCap", "Rubic", "Rango"], - "occurrences": 3 - }, - "0xa15690e9205de386ce849889831c1668c300c1ad": { - "address": "0xa15690e9205de386ce849889831c1668c300c1ad", - "symbol": "PETH18C", - "decimals": 18, - "name": "pETH18C", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xa15690e9205de386ce849889831c1668c300c1ad.png", - "aggregators": ["CoinMarketCap", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x202f1877e1db1120ca3e9a98c5d505e7f035c249": { - "address": "0x202f1877e1db1120ca3e9a98c5d505e7f035c249", - "symbol": "ZUZ", - "decimals": 18, - "name": "Zeus", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x202f1877e1db1120ca3e9a98c5d505e7f035c249.png", - "aggregators": ["CoinMarketCap", "LiFi", "Rubic"], - "occurrences": 3 - }, - "0x0e58ed58e150dba5fd8e5d4a49f54c7e1e880124": { - "address": "0x0e58ed58e150dba5fd8e5d4a49f54c7e1e880124", - "symbol": "RELI", - "decimals": 18, - "name": "Relite", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x0e58ed58e150dba5fd8e5d4a49f54c7e1e880124.png", - "aggregators": ["CoinMarketCap", "LiFi", "Rubic"], - "occurrences": 3 - }, - "0x817e2addceaa4907623666a7800b1553ca21192d": { - "address": "0x817e2addceaa4907623666a7800b1553ca21192d", - "symbol": "UBA", - "decimals": 18, - "name": "Unbox.Art", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x817e2addceaa4907623666a7800b1553ca21192d.png", - "aggregators": ["CoinMarketCap", "LiFi", "Rubic"], - "occurrences": 3 - }, - "0xd0f05d3d4e4d1243ac826d8c6171180c58eaa9bc": { - "address": "0xd0f05d3d4e4d1243ac826d8c6171180c58eaa9bc", - "symbol": "VNTW", - "decimals": 18, - "name": "Value Network Token", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xd0f05d3d4e4d1243ac826d8c6171180c58eaa9bc.png", - "aggregators": ["CoinMarketCap", "LiFi", "Rubic"], - "occurrences": 3 - }, - "0xf3eb8b90c763b8b2b53e7819ac27eca8f94c8ec2": { - "address": "0xf3eb8b90c763b8b2b53e7819ac27eca8f94c8ec2", - "symbol": "ETM", - "decimals": 18, - "name": "ethersmart", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xf3eb8b90c763b8b2b53e7819ac27eca8f94c8ec2.png", - "aggregators": ["CoinMarketCap", "LiFi", "Rubic"], - "occurrences": 3 - }, - "0xe0bdfe2ce51f44556309665d59818ccb541ff067": { - "address": "0xe0bdfe2ce51f44556309665d59818ccb541ff067", - "symbol": "CPTE", - "decimals": 18, - "name": "Crypto puzzles", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xe0bdfe2ce51f44556309665d59818ccb541ff067.png", - "aggregators": ["CoinMarketCap", "LiFi", "Rubic"], - "occurrences": 3 - }, - "0x734c90044a0ba31b3f2e640c10dc5d3540499bfd": { - "address": "0x734c90044a0ba31b3f2e640c10dc5d3540499bfd", - "symbol": "TSX", - "decimals": 18, - "name": "TradeStars", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x734c90044a0ba31b3f2e640c10dc5d3540499bfd.png", - "aggregators": ["CoinMarketCap", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x7e9d8f07a64e363e97a648904a89fb4cd5fb94cd": { - "address": "0x7e9d8f07a64e363e97a648904a89fb4cd5fb94cd", - "symbol": "FF", - "decimals": 18, - "name": "Forefront", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x7e9d8f07a64e363e97a648904a89fb4cd5fb94cd.png", - "aggregators": ["CoinMarketCap", "Socket", "Rubic"], - "occurrences": 3 - }, - "0xbf6ff49ffd3d104302ef0ab0f10f5a84324c091c": { - "address": "0xbf6ff49ffd3d104302ef0ab0f10f5a84324c091c", - "symbol": "NFTFY", - "decimals": 18, - "name": "Nftfy Token", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xbf6ff49ffd3d104302ef0ab0f10f5a84324c091c.png", - "aggregators": ["CoinMarketCap", "LiFi", "Rubic"], - "occurrences": 3 - }, - "0x537edd52ebcb9f48ff2f8a28c51fcdb9d6a6e0d4": { - "address": "0x537edd52ebcb9f48ff2f8a28c51fcdb9d6a6e0d4", - "symbol": "SDOG", - "decimals": 18, - "name": "SDOG", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x537edd52ebcb9f48ff2f8a28c51fcdb9d6a6e0d4.png", - "aggregators": ["CoinMarketCap", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x9fadea1aff842d407893e21dbd0e2017b4c287b6": { - "address": "0x9fadea1aff842d407893e21dbd0e2017b4c287b6", - "symbol": "PGF7T", - "decimals": 18, - "name": "PGF500 Token", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x9fadea1aff842d407893e21dbd0e2017b4c287b6.png", - "aggregators": ["CoinMarketCap", "LiFi", "Rubic"], - "occurrences": 3 - }, - "0x556938621c19e5eae58c94a806da9d237b969bd8": { - "address": "0x556938621c19e5eae58c94a806da9d237b969bd8", - "symbol": "LOCC", - "decimals": 18, - "name": "Low Orbit Crypto Cannon", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x556938621c19e5eae58c94a806da9d237b969bd8.png", - "aggregators": ["CoinMarketCap", "LiFi", "Rubic"], - "occurrences": 3 - }, - "0x2ecc48ba346a73d7d55aa5a46b5e314d9daa6161": { - "address": "0x2ecc48ba346a73d7d55aa5a46b5e314d9daa6161", - "symbol": "SSGT", - "decimals": 18, - "name": "SafeSwap", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x2ecc48ba346a73d7d55aa5a46b5e314d9daa6161.png", - "aggregators": ["CoinMarketCap", "LiFi", "Rubic"], - "occurrences": 3 - }, - "0xce3f6f6672616c39d8b6858f8dac9902eca42c84": { - "address": "0xce3f6f6672616c39d8b6858f8dac9902eca42c84", - "symbol": "DAO1", - "decimals": 18, - "name": "DAO1", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xce3f6f6672616c39d8b6858f8dac9902eca42c84.png", - "aggregators": ["CoinMarketCap", "LiFi", "Rubic"], - "occurrences": 3 - }, - "0xabafa52d3d5a2c18a4c1ae24480d22b831fc0413": { - "address": "0xabafa52d3d5a2c18a4c1ae24480d22b831fc0413", - "symbol": "FFF", - "decimals": 18, - "name": "Future of Finance Fund", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xabafa52d3d5a2c18a4c1ae24480d22b831fc0413.png", - "aggregators": ["CoinMarketCap", "LiFi", "Rubic"], - "occurrences": 3 - }, - "0xc8ef1460277ea47d179dec66d1c5f8b7f7ae5a28": { - "address": "0xc8ef1460277ea47d179dec66d1c5f8b7f7ae5a28", - "symbol": "RIFI", - "decimals": 18, - "name": "Rikkei Finance", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xc8ef1460277ea47d179dec66d1c5f8b7f7ae5a28.png", - "aggregators": ["CoinMarketCap", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x356a5160f2b34bc8d88fb084745465ebbbed0174": { - "address": "0x356a5160f2b34bc8d88fb084745465ebbbed0174", - "symbol": "INVI", - "decimals": 13, - "name": "Invitoken", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x356a5160f2b34bc8d88fb084745465ebbbed0174.png", - "aggregators": ["CoinMarketCap", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x5a75a093747b72a0e14056352751edf03518031d": { - "address": "0x5a75a093747b72a0e14056352751edf03518031d", - "symbol": "ESW", - "decimals": 18, - "name": "EmiSwap - EmiDao Token", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x5a75a093747b72a0e14056352751edf03518031d.png", - "aggregators": ["CoinMarketCap", "LiFi", "Rubic"], - "occurrences": 3 - }, - "0xc631120155621ee625835ec810b9885cdd764cd6": { - "address": "0xc631120155621ee625835ec810b9885cdd764cd6", - "symbol": "GLDX", - "decimals": 8, - "name": "Goldex Token", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xc631120155621ee625835ec810b9885cdd764cd6.png", - "aggregators": ["CoinMarketCap", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x9681ee0d91e737c3b60aceba7fbdae61b5462f42": { - "address": "0x9681ee0d91e737c3b60aceba7fbdae61b5462f42", - "symbol": "CYCE", - "decimals": 6, - "name": "Crypto Carbon Energy", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x9681ee0d91e737c3b60aceba7fbdae61b5462f42.png", - "aggregators": ["CoinMarketCap", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x36ce7a52cda404b8fa87a98d0d17ec7dd0b144ed": { - "address": "0x36ce7a52cda404b8fa87a98d0d17ec7dd0b144ed", - "symbol": "PSLIP", - "decimals": 18, - "name": "Pinkslip Finance", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x36ce7a52cda404b8fa87a98d0d17ec7dd0b144ed.png", - "aggregators": ["CoinMarketCap", "LiFi", "Rubic"], - "occurrences": 3 - }, - "0xc1d9b5a0776d7c8b98b8a838e5a0dd1bc5fdd53c": { - "address": "0xc1d9b5a0776d7c8b98b8a838e5a0dd1bc5fdd53c", - "symbol": "ZONE", - "decimals": 18, - "name": "GridZone.io", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xc1d9b5a0776d7c8b98b8a838e5a0dd1bc5fdd53c.png", - "aggregators": ["CoinMarketCap", "LiFi", "Rubic"], - "occurrences": 3 - }, - "0x79c7ef95ad32dcd5ecadb231568bb03df7824815": { - "address": "0x79c7ef95ad32dcd5ecadb231568bb03df7824815", - "symbol": "ARV", - "decimals": 8, - "name": "ARV", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x79c7ef95ad32dcd5ecadb231568bb03df7824815.png", - "aggregators": ["CoinMarketCap", "Rubic", "Rango"], - "occurrences": 3 - }, - "0xa00055e6ee4d1f4169096ecb682f70caa8c29987": { - "address": "0xa00055e6ee4d1f4169096ecb682f70caa8c29987", - "symbol": "WIVA", - "decimals": 18, - "name": "WIVA", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xa00055e6ee4d1f4169096ecb682f70caa8c29987.png", - "aggregators": ["CoinMarketCap", "LiFi", "Rubic"], - "occurrences": 3 - }, - "0xc242eb8e4e27eae6a2a728a41201152f19595c83": { - "address": "0xc242eb8e4e27eae6a2a728a41201152f19595c83", - "symbol": "ECO", - "decimals": 18, - "name": "EcoFi Token", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xc242eb8e4e27eae6a2a728a41201152f19595c83.png", - "aggregators": ["CoinMarketCap", "Socket", "Rubic"], - "occurrences": 3 - }, - "0xf88b137cfa667065955abd17525e89edcf4d6426": { - "address": "0xf88b137cfa667065955abd17525e89edcf4d6426", - "symbol": "$ITG", - "decimals": 18, - "name": "iTrust Governance Token", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xf88b137cfa667065955abd17525e89edcf4d6426.png", - "aggregators": ["CoinMarketCap", "LiFi", "Rubic"], - "occurrences": 3 - }, - "0x9ac5c63ddcb93612e316ab31dfc8192bc8961988": { - "address": "0x9ac5c63ddcb93612e316ab31dfc8192bc8961988", - "symbol": "ARA", - "decimals": 18, - "name": "Adora", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x9ac5c63ddcb93612e316ab31dfc8192bc8961988.png", - "aggregators": ["CoinMarketCap", "Socket", "Rubic"], - "occurrences": 3 - }, - "0x09ce2b746c32528b7d864a1e3979bd97d2f095ab": { - "address": "0x09ce2b746c32528b7d864a1e3979bd97d2f095ab", - "symbol": "DFL", - "decimals": 18, - "name": "DeFIL-V2", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x09ce2b746c32528b7d864a1e3979bd97d2f095ab.png", - "aggregators": ["CoinMarketCap", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x4b7ee45f30767f36f06f79b32bf1fca6f726deda": { - "address": "0x4b7ee45f30767f36f06f79b32bf1fca6f726deda", - "symbol": "EFIL", - "decimals": 18, - "name": "Ethereum Wrapped Filecoin", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x4b7ee45f30767f36f06f79b32bf1fca6f726deda.png", - "aggregators": ["CoinMarketCap", "LiFi", "Rubic"], - "occurrences": 3 - }, - "0x1f4cb968b76931c494ff92ed80ccb169ad641cb1": { - "address": "0x1f4cb968b76931c494ff92ed80ccb169ad641cb1", - "symbol": "STF", - "decimals": 18, - "name": "Structure finance", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x1f4cb968b76931c494ff92ed80ccb169ad641cb1.png", - "aggregators": ["CoinMarketCap", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x6c16119b20fa52600230f074b349da3cb861a7e3": { - "address": "0x6c16119b20fa52600230f074b349da3cb861a7e3", - "symbol": "ALK", - "decimals": 18, - "name": "Alkemi_Network_DAO_Token", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x6c16119b20fa52600230f074b349da3cb861a7e3.png", - "aggregators": ["CoinMarketCap", "LiFi", "Rubic"], - "occurrences": 3 - }, - "0xefe2afb5f2a9ea8ec6d8a57fe88febcfe29db813": { - "address": "0xefe2afb5f2a9ea8ec6d8a57fe88febcfe29db813", - "symbol": "BUKH", - "decimals": 18, - "name": "bUKHI", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xefe2afb5f2a9ea8ec6d8a57fe88febcfe29db813.png", - "aggregators": ["CoinMarketCap", "LiFi", "Rubic"], - "occurrences": 3 - }, - "0x57db3ffca78dbbe0efa0ec745d55f62aa0cbd345": { - "address": "0x57db3ffca78dbbe0efa0ec745d55f62aa0cbd345", - "symbol": "SYMM", - "decimals": 18, - "name": "Symmetric", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x57db3ffca78dbbe0efa0ec745d55f62aa0cbd345.png", - "aggregators": ["CoinMarketCap", "LiFi", "Rubic"], - "occurrences": 3 - }, - "0x00a55375002f3cda400383f479e7cd57bad029a9": { - "address": "0x00a55375002f3cda400383f479e7cd57bad029a9", - "symbol": "CNJ", - "decimals": 18, - "name": "Conjure", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x00a55375002f3cda400383f479e7cd57bad029a9.png", - "aggregators": ["CoinMarketCap", "LiFi", "Rubic"], - "occurrences": 3 - }, - "0x1e05f68b29b286fb3bbad3c688d7e2abda549b80": { - "address": "0x1e05f68b29b286fb3bbad3c688d7e2abda549b80", - "symbol": "PICIPO", - "decimals": 18, - "name": "PICIPO", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x1e05f68b29b286fb3bbad3c688d7e2abda549b80.png", - "aggregators": ["CoinMarketCap", "LiFi", "Rubic"], - "occurrences": 3 - }, - "0x4fb721ef3bf99e0f2c193847afa296b9257d3c30": { - "address": "0x4fb721ef3bf99e0f2c193847afa296b9257d3c30", - "symbol": "TOK", - "decimals": 8, - "name": "TOK", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x4fb721ef3bf99e0f2c193847afa296b9257d3c30.png", - "aggregators": ["CoinMarketCap", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x7728cd70b3dd86210e2bd321437f448231b81733": { - "address": "0x7728cd70b3dd86210e2bd321437f448231b81733", - "symbol": "NIFTSY", - "decimals": 18, - "name": "NIFTSY", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x7728cd70b3dd86210e2bd321437f448231b81733.png", - "aggregators": ["CoinMarketCap", "LiFi", "Rubic"], - "occurrences": 3 - }, - "0x320d31183100280ccdf69366cd56180ea442a3e8": { - "address": "0x320d31183100280ccdf69366cd56180ea442a3e8", - "symbol": "LHC", - "decimals": 8, - "name": "Lightcoin", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x320d31183100280ccdf69366cd56180ea442a3e8.png", - "aggregators": ["CoinMarketCap", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x8a74bc8c372bc7f0e9ca3f6ac0df51be15aec47a": { - "address": "0x8a74bc8c372bc7f0e9ca3f6ac0df51be15aec47a", - "symbol": "PLSPAD", - "decimals": 18, - "name": "PULSEPAD.io", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x8a74bc8c372bc7f0e9ca3f6ac0df51be15aec47a.png", - "aggregators": ["CoinMarketCap", "LiFi", "Rubic"], - "occurrences": 3 - }, - "0xde1e704dae0b4051e80dabb26ab6ad6c12262da0": { - "address": "0xde1e704dae0b4051e80dabb26ab6ad6c12262da0", - "symbol": "DEI", - "decimals": 18, - "name": "DEI", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xde1e704dae0b4051e80dabb26ab6ad6c12262da0.png", - "aggregators": ["CoinMarketCap", "LiFi", "Rubic"], - "occurrences": 3 - }, - "0xb1db366890eeb8f28c2813c6a6084353e0b90713": { - "address": "0xb1db366890eeb8f28c2813c6a6084353e0b90713", - "symbol": "UCD", - "decimals": 18, - "name": "UniCandy", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xb1db366890eeb8f28c2813c6a6084353e0b90713.png", - "aggregators": ["CoinMarketCap", "LiFi", "Rubic"], - "occurrences": 3 - }, - "0xff0a024b66739357c4ed231fb3dbc0c8c22749f5": { - "address": "0xff0a024b66739357c4ed231fb3dbc0c8c22749f5", - "symbol": "BWRX", - "decimals": 8, - "name": "Binance Wrapped WRX", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xff0a024b66739357c4ed231fb3dbc0c8c22749f5.png", - "aggregators": ["CoinMarketCap", "LiFi", "Rubic"], - "occurrences": 3 - }, - "0x069f967be0ca21c7d793d8c343f71e597d9a49b3": { - "address": "0x069f967be0ca21c7d793d8c343f71e597d9a49b3", - "symbol": "HZM", - "decimals": 8, - "name": "HZMCOIN", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x069f967be0ca21c7d793d8c343f71e597d9a49b3.png", - "aggregators": ["CoinMarketCap", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x507bde03a87a6aa134d16634545e3d79c11c137d": { - "address": "0x507bde03a87a6aa134d16634545e3d79c11c137d", - "symbol": "UART", - "decimals": 12, - "name": "UniArts Network Token", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x507bde03a87a6aa134d16634545e3d79c11c137d.png", - "aggregators": ["CoinMarketCap", "LiFi", "Rubic"], - "occurrences": 3 - }, - "0x2d5c73f3597b07f23c2bb3f2422932e67eca4543": { - "address": "0x2d5c73f3597b07f23c2bb3f2422932e67eca4543", - "symbol": "IMP", - "decimals": 18, - "name": "Imperial Obelisk", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x2d5c73f3597b07f23c2bb3f2422932e67eca4543.png", - "aggregators": ["CoinMarketCap", "Rubic", "Squid"], - "occurrences": 3 - }, - "0xf1d1a5306daae314af6c5d027a492b313e07e1a0": { - "address": "0xf1d1a5306daae314af6c5d027a492b313e07e1a0", - "symbol": "ENV", - "decimals": 18, - "name": "ENVOY", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xf1d1a5306daae314af6c5d027a492b313e07e1a0.png", - "aggregators": ["CoinMarketCap", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x31903e333809897ee57af57567f4377a1a78756c": { - "address": "0x31903e333809897ee57af57567f4377a1a78756c", - "symbol": "PUN", - "decimals": 18, - "name": "CRYPTOPUNT Token", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x31903e333809897ee57af57567f4377a1a78756c.png", - "aggregators": ["CoinMarketCap", "LiFi", "Rubic"], - "occurrences": 3 - }, - "0x504cde95dbc5d90d09b802f43b371971adbecf79": { - "address": "0x504cde95dbc5d90d09b802f43b371971adbecf79", - "symbol": "CENX", - "decimals": 18, - "name": "Centralex Token", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x504cde95dbc5d90d09b802f43b371971adbecf79.png", - "aggregators": ["CoinMarketCap", "LiFi", "Rubic"], - "occurrences": 3 - }, - "0x98504c8afa7c74c87a0641a7bb0f7968d4e8f471": { - "address": "0x98504c8afa7c74c87a0641a7bb0f7968d4e8f471", - "symbol": "LQDR.AXL", - "decimals": 18, - "name": " Lqdr (Axelar)", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x98504c8afa7c74c87a0641a7bb0f7968d4e8f471.png", - "aggregators": ["CoinMarketCap", "Rubic", "Squid"], - "occurrences": 3 - }, - "0x148958884544a8ad7c4895e6ffe2723932e0523a": { - "address": "0x148958884544a8ad7c4895e6ffe2723932e0523a", - "symbol": "LORC", - "decimals": 18, - "name": "LandOrc", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x148958884544a8ad7c4895e6ffe2723932e0523a.png", - "aggregators": ["CoinMarketCap", "LiFi", "Rubic"], - "occurrences": 3 - }, - "0x3dd98c8a089dbcff7e8fc8d4f532bd493501ab7f": { - "address": "0x3dd98c8a089dbcff7e8fc8d4f532bd493501ab7f", - "symbol": "TOWN", - "decimals": 8, - "name": "TownCoin", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x3dd98c8a089dbcff7e8fc8d4f532bd493501ab7f.png", - "aggregators": ["CoinMarketCap", "Rubic", "Rango"], - "occurrences": 3 - }, - "0xb06b8186cc008a79fd6722b1eefad07c14e97da0": { - "address": "0xb06b8186cc008a79fd6722b1eefad07c14e97da0", - "symbol": "SIGN", - "decimals": 18, - "name": "SIGN", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xb06b8186cc008a79fd6722b1eefad07c14e97da0.png", - "aggregators": ["CoinMarketCap", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x5aa7c403c7de4b3bb0cc07079a03e389671a4771": { - "address": "0x5aa7c403c7de4b3bb0cc07079a03e389671a4771", - "symbol": "IBZ", - "decimals": 18, - "name": "IBIZA Token", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x5aa7c403c7de4b3bb0cc07079a03e389671a4771.png", - "aggregators": ["CoinMarketCap", "LiFi", "Rubic"], - "occurrences": 3 - }, - "0xf33121a2209609cadc7349acc9c40e41ce21c730": { - "address": "0xf33121a2209609cadc7349acc9c40e41ce21c730", - "symbol": "BAG", - "decimals": 18, - "name": "Blockchain Adventurers Guild", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xf33121a2209609cadc7349acc9c40e41ce21c730.png", - "aggregators": ["CoinMarketCap", "Socket", "Rubic"], - "occurrences": 3 - }, - "0x3a4cab3dcfab144fe7eb2b5a3e288cc03dc07659": { - "address": "0x3a4cab3dcfab144fe7eb2b5a3e288cc03dc07659", - "symbol": "FTG", - "decimals": 18, - "name": "fantomGO", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x3a4cab3dcfab144fe7eb2b5a3e288cc03dc07659.png", - "aggregators": ["CoinMarketCap", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x7162469321ae5880f077d250b626f3271b21b903": { - "address": "0x7162469321ae5880f077d250b626f3271b21b903", - "symbol": "KSW", - "decimals": 18, - "name": "KillSwitchToken", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x7162469321ae5880f077d250b626f3271b21b903.png", - "aggregators": ["CoinMarketCap", "LiFi", "Rubic"], - "occurrences": 3 - }, - "0xc5019e129b75d380d3d837b8e609dec6c8f5d044": { - "address": "0xc5019e129b75d380d3d837b8e609dec6c8f5d044", - "symbol": "GN", - "decimals": 9, - "name": "GN", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xc5019e129b75d380d3d837b8e609dec6c8f5d044.png", - "aggregators": ["CoinMarketCap", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x37c430c2b5f9ff85e534873c715871818ab1623e": { - "address": "0x37c430c2b5f9ff85e534873c715871818ab1623e", - "symbol": "AXC", - "decimals": 18, - "name": "AXIA Coin", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x37c430c2b5f9ff85e534873c715871818ab1623e.png", - "aggregators": ["CoinMarketCap", "LiFi", "Rubic"], - "occurrences": 3 - }, - "0x4c584cd339bdde73b7f5210486dd8bbeee3fde6d": { - "address": "0x4c584cd339bdde73b7f5210486dd8bbeee3fde6d", - "symbol": "SHIBELON", - "decimals": 9, - "name": "ShibElon", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x4c584cd339bdde73b7f5210486dd8bbeee3fde6d.png", - "aggregators": ["CoinMarketCap", "Rubic", "Rango"], - "occurrences": 3 - }, - "0xa64c3a85ddc4cd351eeb7aecebc6a44a64a76392": { - "address": "0xa64c3a85ddc4cd351eeb7aecebc6a44a64a76392", - "symbol": "RICE", - "decimals": 18, - "name": "RICE", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xa64c3a85ddc4cd351eeb7aecebc6a44a64a76392.png", - "aggregators": ["CoinMarketCap", "LiFi", "Rubic"], - "occurrences": 3 - }, - "0xc944273b805debd35c63011943abc5ab9eddb8e3": { - "address": "0xc944273b805debd35c63011943abc5ab9eddb8e3", - "symbol": "SHIELD", - "decimals": 18, - "name": "Crypto Shield", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xc944273b805debd35c63011943abc5ab9eddb8e3.png", - "aggregators": ["CoinMarketCap", "Socket", "Rubic"], - "occurrences": 3 - }, - "0x1c7ede23b1361acc098a1e357c9085d131b34a01": { - "address": "0x1c7ede23b1361acc098a1e357c9085d131b34a01", - "symbol": "SHN", - "decimals": 18, - "name": "Shine", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x1c7ede23b1361acc098a1e357c9085d131b34a01.png", - "aggregators": ["CoinMarketCap", "LiFi", "Rubic"], - "occurrences": 3 - }, - "0x9f6f91078a5072a8b54695dafa2374ab3ccd603b": { - "address": "0x9f6f91078a5072a8b54695dafa2374ab3ccd603b", - "symbol": "KRAUSE", - "decimals": 18, - "name": "KRAUSE", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x9f6f91078a5072a8b54695dafa2374ab3ccd603b.png", - "aggregators": ["CoinMarketCap", "LiFi", "Rubic"], - "occurrences": 3 - }, - "0xf4f618eff5ef36cde2fca4fbd86554c62fb1382b": { - "address": "0xf4f618eff5ef36cde2fca4fbd86554c62fb1382b", - "symbol": "AGV", - "decimals": 18, - "name": "Astra Guild Ventures Token", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xf4f618eff5ef36cde2fca4fbd86554c62fb1382b.png", - "aggregators": ["CoinMarketCap", "Socket", "Rubic"], - "occurrences": 3 - }, - "0x4e08f03079c5cd3083ea331ec61bcc87538b7665": { - "address": "0x4e08f03079c5cd3083ea331ec61bcc87538b7665", - "symbol": "DODI", - "decimals": 18, - "name": "DoubleDice Token", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x4e08f03079c5cd3083ea331ec61bcc87538b7665.png", - "aggregators": ["CoinMarketCap", "LiFi", "Rubic"], - "occurrences": 3 - }, - "0xcf8829ae9384540c886a151fac3a865794cb9a01": { - "address": "0xcf8829ae9384540c886a151fac3a865794cb9a01", - "symbol": "SDG", - "decimals": 18, - "name": "SyncDAO Governance", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xcf8829ae9384540c886a151fac3a865794cb9a01.png", - "aggregators": ["CoinMarketCap", "Socket", "Rubic"], - "occurrences": 3 - }, - "0xfee5f54e1070e7ed31be341e0a5b1e847f6a84ab": { - "address": "0xfee5f54e1070e7ed31be341e0a5b1e847f6a84ab", - "symbol": "ZUG", - "decimals": 18, - "name": "ZUG", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xfee5f54e1070e7ed31be341e0a5b1e847f6a84ab.png", - "aggregators": ["CoinMarketCap", "LiFi", "Rubic"], - "occurrences": 3 - }, - "0x501ace9c35e60f03a2af4d484f49f9b1efde9f40": { - "address": "0x501ace9c35e60f03a2af4d484f49f9b1efde9f40", - "symbol": "SOLACE", - "decimals": 18, - "name": "solace", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x501ace9c35e60f03a2af4d484f49f9b1efde9f40.png", - "aggregators": ["CoinMarketCap", "LiFi", "Rubic"], - "occurrences": 3 - }, - "0xc01a327e30b0fbf32861333f238b5c36a60abc09": { - "address": "0xc01a327e30b0fbf32861333f238b5c36a60abc09", - "symbol": "AGAIN", - "decimals": 18, - "name": "AGAIN", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xc01a327e30b0fbf32861333f238b5c36a60abc09.png", - "aggregators": ["CoinMarketCap", "LiFi", "Rubic"], - "occurrences": 3 - }, - "0x621879c6239d8ab9b82712fb56e7be880ce0c6ee": { - "address": "0x621879c6239d8ab9b82712fb56e7be880ce0c6ee", - "symbol": "$OMNIX", - "decimals": 18, - "name": "OmniBotX", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x621879c6239d8ab9b82712fb56e7be880ce0c6ee.png", - "aggregators": ["CoinMarketCap", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x15492208ef531ee413bd24f609846489a082f74c": { - "address": "0x15492208ef531ee413bd24f609846489a082f74c", - "symbol": "TREKS", - "decimals": 18, - "name": "TREKS", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x15492208ef531ee413bd24f609846489a082f74c.png", - "aggregators": ["CoinMarketCap", "LiFi", "Rubic"], - "occurrences": 3 - }, - "0x86d49fbd3b6f989d641e700a15599d3b165002ab": { - "address": "0x86d49fbd3b6f989d641e700a15599d3b165002ab", - "symbol": "HUH", - "decimals": 9, - "name": "HUH_Token", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x86d49fbd3b6f989d641e700a15599d3b165002ab.png", - "aggregators": ["CoinMarketCap", "Socket", "Rubic"], - "occurrences": 3 - }, - "0xccb4dfdb4f95697ab5c389185f0ba9042a78576f": { - "address": "0xccb4dfdb4f95697ab5c389185f0ba9042a78576f", - "symbol": "NFTK", - "decimals": 18, - "name": "NFTWiki Token", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xccb4dfdb4f95697ab5c389185f0ba9042a78576f.png", - "aggregators": ["CoinMarketCap", "LiFi", "Rubic"], - "occurrences": 3 - }, - "0x9767203e89dcd34851240b3919d4900d3e5069f1": { - "address": "0x9767203e89dcd34851240b3919d4900d3e5069f1", - "symbol": "A4", - "decimals": 6, - "name": "A4 Finance", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x9767203e89dcd34851240b3919d4900d3e5069f1.png", - "aggregators": ["CoinMarketCap", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x19ebaa7f212b09de2aee2a32d40338553c70e2e3": { - "address": "0x19ebaa7f212b09de2aee2a32d40338553c70e2e3", - "symbol": "ARTM", - "decimals": 18, - "name": "ARTM", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x19ebaa7f212b09de2aee2a32d40338553c70e2e3.png", - "aggregators": ["CoinMarketCap", "LiFi", "Rubic"], - "occurrences": 3 - }, - "0xefc996ce8341cd36c55412b51df5bbca429a7617": { - "address": "0xefc996ce8341cd36c55412b51df5bbca429a7617", - "symbol": "METAI", - "decimals": 18, - "name": "Metaverse Index Token", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xefc996ce8341cd36c55412b51df5bbca429a7617.png", - "aggregators": ["CoinMarketCap", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x43ab765ee05075d78ad8aa79dcb1978ca3079258": { - "address": "0x43ab765ee05075d78ad8aa79dcb1978ca3079258", - "symbol": "POW", - "decimals": 18, - "name": "POW", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x43ab765ee05075d78ad8aa79dcb1978ca3079258.png", - "aggregators": ["CoinMarketCap", "Rubic", "Rango"], - "occurrences": 3 - }, - "0xda16cf041e2780618c49dbae5d734b89a6bac9b3": { - "address": "0xda16cf041e2780618c49dbae5d734b89a6bac9b3", - "symbol": "BSGG", - "decimals": 18, - "name": "Betswap.gg", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xda16cf041e2780618c49dbae5d734b89a6bac9b3.png", - "aggregators": ["CoinMarketCap", "Rubic", "Rango"], - "occurrences": 3 - }, - "0xaa61d5dec73971cd4a026ef2820bb87b4a4ed8d6": { - "address": "0xaa61d5dec73971cd4a026ef2820bb87b4a4ed8d6", - "symbol": "CRE8R", - "decimals": 18, - "name": "CRE8R DAO", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xaa61d5dec73971cd4a026ef2820bb87b4a4ed8d6.png", - "aggregators": ["CoinMarketCap", "LiFi", "Rubic"], - "occurrences": 3 - }, - "0xd049206fb408a611e543791f2d8f102a8bc253dc": { - "address": "0xd049206fb408a611e543791f2d8f102a8bc253dc", - "symbol": "NAO", - "decimals": 18, - "name": "NFTDAO", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xd049206fb408a611e543791f2d8f102a8bc253dc.png", - "aggregators": ["CoinMarketCap", "Socket", "Rubic"], - "occurrences": 3 - }, - "0x6628606c321faf52b7230a57b26c01b19aa68e82": { - "address": "0x6628606c321faf52b7230a57b26c01b19aa68e82", - "symbol": "BT", - "decimals": 18, - "name": "BitHash Token", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x6628606c321faf52b7230a57b26c01b19aa68e82.png", - "aggregators": ["CoinMarketCap", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x9e8bfe46f9af27c5ea5c9c72b86d71bb86953a0c": { - "address": "0x9e8bfe46f9af27c5ea5c9c72b86d71bb86953a0c", - "symbol": "EZX", - "decimals": 18, - "name": "EZDEX", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x9e8bfe46f9af27c5ea5c9c72b86d71bb86953a0c.png", - "aggregators": ["CoinMarketCap", "LiFi", "Rubic"], - "occurrences": 3 - }, - "0xe580074a10360404af3abfe2d524d5806d993ea3": { - "address": "0xe580074a10360404af3abfe2d524d5806d993ea3", - "symbol": "PAY", - "decimals": 18, - "name": "PayBolt", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xe580074a10360404af3abfe2d524d5806d993ea3.png", - "aggregators": ["CoinMarketCap", "Rubic", "Rango"], - "occurrences": 3 - }, - "0xa4c7963b98838e8f958cf7b87a039249044fe2db": { - "address": "0xa4c7963b98838e8f958cf7b87a039249044fe2db", - "symbol": "LTR", - "decimals": 18, - "name": "LogiTron", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xa4c7963b98838e8f958cf7b87a039249044fe2db.png", - "aggregators": ["CoinMarketCap", "LiFi", "Rubic"], - "occurrences": 3 - }, - "0x3b0fccbd5dae0570a70f1fb6d8d666a33c89d71e": { - "address": "0x3b0fccbd5dae0570a70f1fb6d8d666a33c89d71e", - "symbol": "FLOOR", - "decimals": 18, - "name": "Floor", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x3b0fccbd5dae0570a70f1fb6d8d666a33c89d71e.png", - "aggregators": ["CoinMarketCap", "Rubic", "Rango"], - "occurrences": 3 - }, - "0xd75f1f81b69bdd4df8efbb70e9c6f4609009d753": { - "address": "0xd75f1f81b69bdd4df8efbb70e9c6f4609009d753", - "symbol": "YASHA", - "decimals": 18, - "name": "YASHA", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xd75f1f81b69bdd4df8efbb70e9c6f4609009d753.png", - "aggregators": ["CoinMarketCap", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x0bf0d26a527384bcc4072a6e2bca3fc79e49fa2d": { - "address": "0x0bf0d26a527384bcc4072a6e2bca3fc79e49fa2d", - "symbol": "MYT", - "decimals": 18, - "name": "Mytrade Token", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x0bf0d26a527384bcc4072a6e2bca3fc79e49fa2d.png", - "aggregators": ["CoinMarketCap", "LiFi", "Rubic"], - "occurrences": 3 - }, - "0x3f17cfad23c2014c5a32722557df87dff46819da": { - "address": "0x3f17cfad23c2014c5a32722557df87dff46819da", - "symbol": "AMPT", - "decimals": 18, - "name": "Amplify Token", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x3f17cfad23c2014c5a32722557df87dff46819da.png", - "aggregators": ["CoinMarketCap", "LiFi", "Rubic"], - "occurrences": 3 - }, - "0x4fabf135bcf8111671870d4399af739683198f96": { - "address": "0x4fabf135bcf8111671870d4399af739683198f96", - "symbol": "XVC", - "decimals": 18, - "name": "Xave Coin", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x4fabf135bcf8111671870d4399af739683198f96.png", - "aggregators": ["CoinMarketCap", "Rubic", "Rango"], - "occurrences": 3 - }, - "0xea068fba19ce95f12d252ad8cb2939225c4ea02d": { - "address": "0xea068fba19ce95f12d252ad8cb2939225c4ea02d", - "symbol": "FIEF", - "decimals": 18, - "name": "Fief", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xea068fba19ce95f12d252ad8cb2939225c4ea02d.png", - "aggregators": ["CoinMarketCap", "LiFi", "Rubic"], - "occurrences": 3 - }, - "0xf1e345ea7c33fd6c05f5512a780eb5839ee31674": { - "address": "0xf1e345ea7c33fd6c05f5512a780eb5839ee31674", - "symbol": "TELE", - "decimals": 18, - "name": "Telefy", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xf1e345ea7c33fd6c05f5512a780eb5839ee31674.png", - "aggregators": ["CoinMarketCap", "Rubic", "Rango"], - "occurrences": 3 - }, - "0xf0dc76c22139ab22618ddfb498be1283254612b1": { - "address": "0xf0dc76c22139ab22618ddfb498be1283254612b1", - "symbol": "WSTR", - "decimals": 18, - "name": "WrappedStar", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xf0dc76c22139ab22618ddfb498be1283254612b1.png", - "aggregators": ["CoinMarketCap", "LiFi", "Rubic"], - "occurrences": 3 - }, - "0xb487d0328b109e302b9d817b6f46cbd738ea08c2": { - "address": "0xb487d0328b109e302b9d817b6f46cbd738ea08c2", - "symbol": "TAT2", - "decimals": 18, - "name": "TattooMoney", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xb487d0328b109e302b9d817b6f46cbd738ea08c2.png", - "aggregators": ["CoinMarketCap", "LiFi", "Rubic"], - "occurrences": 3 - }, - "0xfceb206e1a80527908521121358b5e26caabaa75": { - "address": "0xfceb206e1a80527908521121358b5e26caabaa75", - "symbol": "MAIN", - "decimals": 18, - "name": "MAIN", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xfceb206e1a80527908521121358b5e26caabaa75.png", - "aggregators": ["CoinMarketCap", "Rubic", "Rango"], - "occurrences": 3 - }, - "0xcc6f1e1b87cfcbe9221808d2d85c501aab0b5192": { - "address": "0xcc6f1e1b87cfcbe9221808d2d85c501aab0b5192", - "symbol": "DMAIL", - "decimals": 18, - "name": "Dmail Network", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xcc6f1e1b87cfcbe9221808d2d85c501aab0b5192.png", - "aggregators": ["CoinMarketCap", "LiFi", "Rubic"], - "occurrences": 3 - }, - "0x5f018e73c185ab23647c82bd039e762813877f0e": { - "address": "0x5f018e73c185ab23647c82bd039e762813877f0e", - "symbol": "SHACK", - "decimals": 18, - "name": "Shack Token", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x5f018e73c185ab23647c82bd039e762813877f0e.png", - "aggregators": ["CoinMarketCap", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x84f20bf5bb4be345d3ab37c565f732753435dbe3": { - "address": "0x84f20bf5bb4be345d3ab37c565f732753435dbe3", - "symbol": "JCR", - "decimals": 18, - "name": "JustCarbon Removal Token", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x84f20bf5bb4be345d3ab37c565f732753435dbe3.png", - "aggregators": ["CoinMarketCap", "LiFi", "Rubic"], - "occurrences": 3 - }, - "0x88aa4a6c5050b9a1b2aa7e34d0582025ca6ab745": { - "address": "0x88aa4a6c5050b9a1b2aa7e34d0582025ca6ab745", - "symbol": "DXP", - "decimals": 18, - "name": "Dexpools Token", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x88aa4a6c5050b9a1b2aa7e34d0582025ca6ab745.png", - "aggregators": ["CoinMarketCap", "LiFi", "Rubic"], - "occurrences": 3 - }, - "0x45fdb1b92a649fb6a64ef1511d3ba5bf60044838": { - "address": "0x45fdb1b92a649fb6a64ef1511d3ba5bf60044838", - "symbol": "USDS", - "decimals": 18, - "name": "Spice USD", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x45fdb1b92a649fb6a64ef1511d3ba5bf60044838.png", - "aggregators": ["CoinMarketCap", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x0c9b3ab1bd0cf0745625381f5c3aa1cd9bbc7abb": { - "address": "0x0c9b3ab1bd0cf0745625381f5c3aa1cd9bbc7abb", - "symbol": "EXN", - "decimals": 18, - "name": "EXENO COIN", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x0c9b3ab1bd0cf0745625381f5c3aa1cd9bbc7abb.png", - "aggregators": ["CoinMarketCap", "LiFi", "Rubic"], - "occurrences": 3 - }, - "0xadc3f2c3d728202658930860158c726d8180a38f": { - "address": "0xadc3f2c3d728202658930860158c726d8180a38f", - "symbol": "SMETA", - "decimals": 18, - "name": "StarkMeta", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xadc3f2c3d728202658930860158c726d8180a38f.png", - "aggregators": ["CoinMarketCap", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x549e4d92285ff5a16c9484ff79211e4358b1f202": { - "address": "0x549e4d92285ff5a16c9484ff79211e4358b1f202", - "symbol": "TIC", - "decimals": 18, - "name": "Token of Infinite Choice", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x549e4d92285ff5a16c9484ff79211e4358b1f202.png", - "aggregators": ["CoinMarketCap", "LiFi", "Rubic"], - "occurrences": 3 - }, - "0x30b593f8c3ab37615359b4e0e6df2e06d55bb55d": { - "address": "0x30b593f8c3ab37615359b4e0e6df2e06d55bb55d", - "symbol": "FXDX", - "decimals": 18, - "name": "FXDX", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x30b593f8c3ab37615359b4e0e6df2e06d55bb55d.png", - "aggregators": ["CoinMarketCap", "Rubic", "Rango"], - "occurrences": 3 - }, - "0xa80221d067603e30060f75e2458aa361f8ee5402": { - "address": "0xa80221d067603e30060f75e2458aa361f8ee5402", - "symbol": "IRL", - "decimals": 18, - "name": "Rebase", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xa80221d067603e30060f75e2458aa361f8ee5402.png", - "aggregators": ["CoinMarketCap", "LiFi", "Rubic"], - "occurrences": 3 - }, - "0xcc503242b574bc01145da7e2a743b43fb395ec91": { - "address": "0xcc503242b574bc01145da7e2a743b43fb395ec91", - "symbol": "ROVI", - "decimals": 18, - "name": "ROVI Token", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xcc503242b574bc01145da7e2a743b43fb395ec91.png", - "aggregators": ["CoinMarketCap", "LiFi", "Rubic"], - "occurrences": 3 - }, - "0x3a529a8d4f2ea64d206339fa12a3af4d431f53c3": { - "address": "0x3a529a8d4f2ea64d206339fa12a3af4d431f53c3", - "symbol": "VENDETTA", - "decimals": 18, - "name": "VEN", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x3a529a8d4f2ea64d206339fa12a3af4d431f53c3.png", - "aggregators": ["CoinMarketCap", "LiFi", "Rubic"], - "occurrences": 3 - }, - "0xb2d2e1309db33b38a19ee2a7cd9cb5de39d76663": { - "address": "0xb2d2e1309db33b38a19ee2a7cd9cb5de39d76663", - "symbol": "COLR", - "decimals": 18, - "name": "colR", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xb2d2e1309db33b38a19ee2a7cd9cb5de39d76663.png", - "aggregators": ["CoinMarketCap", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x355a824bea1adc22733978a3748271e1bbb34130": { - "address": "0x355a824bea1adc22733978a3748271e1bbb34130", - "symbol": "NEPT", - "decimals": 18, - "name": "NEPT", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x355a824bea1adc22733978a3748271e1bbb34130.png", - "aggregators": ["CoinMarketCap", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x00a7ec2f2b451cb0233e8adbf4c9a951027c2b02": { - "address": "0x00a7ec2f2b451cb0233e8adbf4c9a951027c2b02", - "symbol": "HIENS4", - "decimals": 18, - "name": "hiENS4", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x00a7ec2f2b451cb0233e8adbf4c9a951027c2b02.png", - "aggregators": ["CoinMarketCap", "Rubic", "Rango"], - "occurrences": 3 - }, - "0xd23367155b55d67492dfdc0fc7f8bb1df7114fd9": { - "address": "0xd23367155b55d67492dfdc0fc7f8bb1df7114fd9", - "symbol": "AMPLIFI", - "decimals": 18, - "name": "Amplifi", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xd23367155b55d67492dfdc0fc7f8bb1df7114fd9.png", - "aggregators": ["CoinMarketCap", "LiFi", "Rubic"], - "occurrences": 3 - }, - "0xc66cdac744916afb6811c71c277d88de90ce8d5b": { - "address": "0xc66cdac744916afb6811c71c277d88de90ce8d5b", - "symbol": "MCD", - "decimals": 18, - "name": "CDbio", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xc66cdac744916afb6811c71c277d88de90ce8d5b.png", - "aggregators": ["CoinMarketCap", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x869dbe51dc214fcb663604b0f7b548592f8c71f5": { - "address": "0x869dbe51dc214fcb663604b0f7b548592f8c71f5", - "symbol": "DOKI", - "decimals": 9, - "name": "Okidoki Social", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x869dbe51dc214fcb663604b0f7b548592f8c71f5.png", - "aggregators": ["CoinMarketCap", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x1ccf27211e8bf052f6255329ed641b4e94e80603": { - "address": "0x1ccf27211e8bf052f6255329ed641b4e94e80603", - "symbol": "BABY", - "decimals": 18, - "name": "meta baby", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x1ccf27211e8bf052f6255329ed641b4e94e80603.png", - "aggregators": ["CoinMarketCap", "Rubic", "Rango"], - "occurrences": 3 - }, - "0xa4be4cdc552891a6702e1ae9645ef445179a4463": { - "address": "0xa4be4cdc552891a6702e1ae9645ef445179a4463", - "symbol": "FON", - "decimals": 18, - "name": "INOFI", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xa4be4cdc552891a6702e1ae9645ef445179a4463.png", - "aggregators": ["CoinMarketCap", "Rubic", "Rango"], - "occurrences": 3 - }, - "0xa88842ae47dbe87116cf7001dddd1b246fcd8262": { - "address": "0xa88842ae47dbe87116cf7001dddd1b246fcd8262", - "symbol": "HIENS3", - "decimals": 18, - "name": "hiENS3", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xa88842ae47dbe87116cf7001dddd1b246fcd8262.png", - "aggregators": ["CoinMarketCap", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x33bd66c334274989b673a8e8c8d1a3f1b8de5889": { - "address": "0x33bd66c334274989b673a8e8c8d1a3f1b8de5889", - "symbol": "HIODBS", - "decimals": 18, - "name": "hiODBS", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x33bd66c334274989b673a8e8c8d1a3f1b8de5889.png", - "aggregators": ["CoinMarketCap", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x4ce4c025692b3142dbde1cd432ef55b9a8d18701": { - "address": "0x4ce4c025692b3142dbde1cd432ef55b9a8d18701", - "symbol": "DCNT", - "decimals": 9, - "name": "Decanect", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x4ce4c025692b3142dbde1cd432ef55b9a8d18701.png", - "aggregators": ["CoinMarketCap", "Rubic", "Rango"], - "occurrences": 3 - }, - "0xa6a1cc527d48585538b137e6abc14b2a55489d11": { - "address": "0xa6a1cc527d48585538b137e6abc14b2a55489d11", - "symbol": "LWC", - "decimals": 8, - "name": "Linework Coin", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xa6a1cc527d48585538b137e6abc14b2a55489d11.png", - "aggregators": ["CoinMarketCap", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x9d7107c8e30617cadc11f9692a19c82ae8bba938": { - "address": "0x9d7107c8e30617cadc11f9692a19c82ae8bba938", - "symbol": "ROO", - "decimals": 18, - "name": "LUCKY ROO", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x9d7107c8e30617cadc11f9692a19c82ae8bba938.png", - "aggregators": ["CoinMarketCap", "Rubic", "Rango"], - "occurrences": 3 - }, - "0xb045f7f363fe4949954811b113bd56d208c67b23": { - "address": "0xb045f7f363fe4949954811b113bd56d208c67b23", - "symbol": "SILK", - "decimals": 8, - "name": "Silk", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xb045f7f363fe4949954811b113bd56d208c67b23.png", - "aggregators": ["CoinMarketCap", "Rubic", "Rango"], - "occurrences": 3 - }, - "0xfeb6d5238ed8f1d59dcab2db381aa948e625966d": { - "address": "0xfeb6d5238ed8f1d59dcab2db381aa948e625966d", - "symbol": "DGTV", - "decimals": 18, - "name": "Doge-TV", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xfeb6d5238ed8f1d59dcab2db381aa948e625966d.png", - "aggregators": ["CoinMarketCap", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x456125cd98107ae0480ba566f1b716d48ba31453": { - "address": "0x456125cd98107ae0480ba566f1b716d48ba31453", - "symbol": "CHAMP", - "decimals": 18, - "name": "Ultimate Champions Token", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x456125cd98107ae0480ba566f1b716d48ba31453.png", - "aggregators": ["CoinMarketCap", "LiFi", "Rubic"], - "occurrences": 3 - }, - "0x981dc247745800bd2ca28a4bf147f0385eaa0bc0": { - "address": "0x981dc247745800bd2ca28a4bf147f0385eaa0bc0", - "symbol": "NUTS", - "decimals": 18, - "name": "NutsDAO", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x981dc247745800bd2ca28a4bf147f0385eaa0bc0.png", - "aggregators": ["CoinMarketCap", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x6d6554939d646f274d0fc3cecb7dab5d76bc908f": { - "address": "0x6d6554939d646f274d0fc3cecb7dab5d76bc908f", - "symbol": "MS", - "decimals": 18, - "name": "Morphswap", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x6d6554939d646f274d0fc3cecb7dab5d76bc908f.png", - "aggregators": ["CoinMarketCap", "LiFi", "Rubic"], - "occurrences": 3 - }, - "0x7a3f7f6675514d4d611b442a4b76752f6ab77670": { - "address": "0x7a3f7f6675514d4d611b442a4b76752f6ab77670", - "symbol": "TORA", - "decimals": 18, - "name": "Tora Inu", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x7a3f7f6675514d4d611b442a4b76752f6ab77670.png", - "aggregators": ["CoinMarketCap", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x96eb50804d0ef2790f2e1a33670feff6040cf89d": { - "address": "0x96eb50804d0ef2790f2e1a33670feff6040cf89d", - "symbol": "SX", - "decimals": 18, - "name": "SX Token", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x96eb50804d0ef2790f2e1a33670feff6040cf89d.png", - "aggregators": ["CoinMarketCap", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x669db4c47f89f21554ebd825a744888725fd9491": { - "address": "0x669db4c47f89f21554ebd825a744888725fd9491", - "symbol": "HIPENGUINS", - "decimals": 18, - "name": "hiPENGUINS", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x669db4c47f89f21554ebd825a744888725fd9491.png", - "aggregators": ["CoinMarketCap", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x1892f6ff5fbe11c31158f8c6f6f6e33106c5b10e": { - "address": "0x1892f6ff5fbe11c31158f8c6f6f6e33106c5b10e", - "symbol": "MEGA", - "decimals": 18, - "name": "MegaWorld $MEGA Token", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x1892f6ff5fbe11c31158f8c6f6f6e33106c5b10e.png", - "aggregators": ["CoinMarketCap", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x8326bf664704966c984a3a46fa37d7a80a52dcf4": { - "address": "0x8326bf664704966c984a3a46fa37d7a80a52dcf4", - "symbol": "DOGU", - "decimals": 18, - "name": "Dogu Inu", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x8326bf664704966c984a3a46fa37d7a80a52dcf4.png", - "aggregators": ["CoinMarketCap", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x757da0e5c253082b0f2bd5105119f71817fe0911": { - "address": "0x757da0e5c253082b0f2bd5105119f71817fe0911", - "symbol": "VITO", - "decimals": 18, - "name": "Very Special Dragon", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x757da0e5c253082b0f2bd5105119f71817fe0911.png", - "aggregators": ["CoinMarketCap", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x69e37422cb87d963367f73a119c8ce9a4d529b72": { - "address": "0x69e37422cb87d963367f73a119c8ce9a4d529b72", - "symbol": "ADVT", - "decimals": 9, - "name": "Advantis", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x69e37422cb87d963367f73a119c8ce9a4d529b72.png", - "aggregators": ["CoinMarketCap", "Rubic", "Rango"], - "occurrences": 3 - }, - "0xedc1004886d010751f74ec0ad223819f9f3b1910": { - "address": "0xedc1004886d010751f74ec0ad223819f9f3b1910", - "symbol": "AGN", - "decimals": 18, - "name": "AgriNode", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xedc1004886d010751f74ec0ad223819f9f3b1910.png", - "aggregators": ["CoinMarketCap", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x79c9e0410b6615e7ba9dd69614b0519325a2b047": { - "address": "0x79c9e0410b6615e7ba9dd69614b0519325a2b047", - "symbol": "HIFLUF", - "decimals": 18, - "name": "hiFLUF", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x79c9e0410b6615e7ba9dd69614b0519325a2b047.png", - "aggregators": ["CoinMarketCap", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x0a7b89e66a1dc16633abdfd132bae05827d3bfa5": { - "address": "0x0a7b89e66a1dc16633abdfd132bae05827d3bfa5", - "symbol": "HIMOONBIRDS", - "decimals": 18, - "name": "hiMOONBIRDS", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x0a7b89e66a1dc16633abdfd132bae05827d3bfa5.png", - "aggregators": ["CoinMarketCap", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x5dd0d493ea59d512efc13d5c1f9d325775192877": { - "address": "0x5dd0d493ea59d512efc13d5c1f9d325775192877", - "symbol": "PUSUKE", - "decimals": 18, - "name": "Pusuke Inu", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x5dd0d493ea59d512efc13d5c1f9d325775192877.png", - "aggregators": ["CoinMarketCap", "Rubic", "Rango"], - "occurrences": 3 - }, - "0xb4615aad766f6de3c55330099e907ff7f13f1582": { - "address": "0xb4615aad766f6de3c55330099e907ff7f13f1582", - "symbol": "ONIGI", - "decimals": 9, - "name": "Onigiri Neko", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xb4615aad766f6de3c55330099e907ff7f13f1582.png", - "aggregators": ["CoinMarketCap", "LiFi", "Rubic"], - "occurrences": 3 - }, - "0x848578e351d25b6ec0d486e42677891521c3d743": { - "address": "0x848578e351d25b6ec0d486e42677891521c3d743", - "symbol": "MOSOLID", - "decimals": 18, - "name": "moSOLID", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x848578e351d25b6ec0d486e42677891521c3d743.png", - "aggregators": ["CoinMarketCap", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x79b87d52a03ed26a19c1914be4ce37f812e2056c": { - "address": "0x79b87d52a03ed26a19c1914be4ce37f812e2056c", - "symbol": "USP", - "decimals": 18, - "name": "USP Token", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x79b87d52a03ed26a19c1914be4ce37f812e2056c.png", - "aggregators": ["CoinMarketCap", "Rubic", "Rango"], - "occurrences": 3 - }, - "0xb755d5bc7de83232b9df1886bd5cdb38895933b0": { - "address": "0xb755d5bc7de83232b9df1886bd5cdb38895933b0", - "symbol": "HIMFERS", - "decimals": 18, - "name": "hiMFERS", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xb755d5bc7de83232b9df1886bd5cdb38895933b0.png", - "aggregators": ["CoinMarketCap", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x8dfc8cc3201425669fae803e1eb125cddd4189ec": { - "address": "0x8dfc8cc3201425669fae803e1eb125cddd4189ec", - "symbol": "OKAGE", - "decimals": 18, - "name": "Okage Inu", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x8dfc8cc3201425669fae803e1eb125cddd4189ec.png", - "aggregators": ["CoinMarketCap", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x967b0c95295ead8faef70d26a7846aecd349aaff": { - "address": "0x967b0c95295ead8faef70d26a7846aecd349aaff", - "symbol": "$HACHI", - "decimals": 18, - "name": "HACHI", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x967b0c95295ead8faef70d26a7846aecd349aaff.png", - "aggregators": ["CoinMarketCap", "LiFi", "Rubic"], - "occurrences": 3 - }, - "0x05030203674173fa6df6f9f7e34d6e70e9a761d7": { - "address": "0x05030203674173fa6df6f9f7e34d6e70e9a761d7", - "symbol": "MU", - "decimals": 18, - "name": "Muverse Token", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x05030203674173fa6df6f9f7e34d6e70e9a761d7.png", - "aggregators": ["CoinMarketCap", "Rubic", "Rango"], - "occurrences": 3 - }, - "0xd346e8ada104093adcf5f4186087e1ad309bb3b3": { - "address": "0xd346e8ada104093adcf5f4186087e1ad309bb3b3", - "symbol": "SHIBN", - "decimals": 18, - "name": "Shibnaut", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xd346e8ada104093adcf5f4186087e1ad309bb3b3.png", - "aggregators": ["CoinMarketCap", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x5c8190b76e90b4dd0702740cf6eb0f7ee01ab5e9": { - "address": "0x5c8190b76e90b4dd0702740cf6eb0f7ee01ab5e9", - "symbol": "ARCAI", - "decimals": 9, - "name": "Archive AI", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x5c8190b76e90b4dd0702740cf6eb0f7ee01ab5e9.png", - "aggregators": ["CoinMarketCap", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x8793fb615eb92822f482f88b3137b00aad4c00d2": { - "address": "0x8793fb615eb92822f482f88b3137b00aad4c00d2", - "symbol": "REVOAI", - "decimals": 9, - "name": "revoAI", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x8793fb615eb92822f482f88b3137b00aad4c00d2.png", - "aggregators": ["CoinMarketCap", "Rubic", "Rango"], - "occurrences": 3 - }, - "0xa848a1d33d8ef1633397a6acf617620fab8e5da8": { - "address": "0xa848a1d33d8ef1633397a6acf617620fab8e5da8", - "symbol": "MOUSEWORM", - "decimals": 6, - "name": "MouseWorm", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xa848a1d33d8ef1633397a6acf617620fab8e5da8.png", - "aggregators": ["CoinMarketCap", "LiFi", "Rubic"], - "occurrences": 3 - }, - "0x70d0ff0d3b3f5e69220c09befc70606fa5f89293": { - "address": "0x70d0ff0d3b3f5e69220c09befc70606fa5f89293", - "symbol": "HIUNDEAD", - "decimals": 18, - "name": "hiUNDEAD", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x70d0ff0d3b3f5e69220c09befc70606fa5f89293.png", - "aggregators": ["CoinMarketCap", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x337dd23d05c27bff099d3604938bfc23a9b25820": { - "address": "0x337dd23d05c27bff099d3604938bfc23a9b25820", - "symbol": "MFC", - "decimals": 18, - "name": "Marshall Fighting Championship", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x337dd23d05c27bff099d3604938bfc23a9b25820.png", - "aggregators": ["CoinMarketCap", "Rubic", "Rango"], - "occurrences": 3 - }, - "0xeb2f5a4e1441df330670dc7b0cf4eac0f7ab5fa5": { - "address": "0xeb2f5a4e1441df330670dc7b0cf4eac0f7ab5fa5", - "symbol": "HIFRIENDS", - "decimals": 18, - "name": "hiFRIENDS", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xeb2f5a4e1441df330670dc7b0cf4eac0f7ab5fa5.png", - "aggregators": ["CoinMarketCap", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x9c6666d5ff4b53b5eb3bd866664c15d0bfcecaa7": { - "address": "0x9c6666d5ff4b53b5eb3bd866664c15d0bfcecaa7", - "symbol": "ZENI", - "decimals": 18, - "name": "Zeni", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x9c6666d5ff4b53b5eb3bd866664c15d0bfcecaa7.png", - "aggregators": ["CoinMarketCap", "Rubic", "Rango"], - "occurrences": 3 - }, - "0xb04bf60e468743418e87291d7c9301a5299d984d": { - "address": "0xb04bf60e468743418e87291d7c9301a5299d984d", - "symbol": "4SHIBA", - "decimals": 18, - "name": "FOREVER SHIBA", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xb04bf60e468743418e87291d7c9301a5299d984d.png", - "aggregators": ["CoinMarketCap", "Rubic", "Rango"], - "occurrences": 3 - }, - "0xb685145d7f127b9093d7f9278bae902ef59ff486": { - "address": "0xb685145d7f127b9093d7f9278bae902ef59ff486", - "symbol": "FREQAI", - "decimals": 18, - "name": "FREQAI", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xb685145d7f127b9093d7f9278bae902ef59ff486.png", - "aggregators": ["CoinMarketCap", "Rubic", "Rango"], - "occurrences": 3 - }, - "0xf7de6def3d319811418d69bf56c532a815fc47e8": { - "address": "0xf7de6def3d319811418d69bf56c532a815fc47e8", - "symbol": "TWOPAW", - "decimals": 18, - "name": "TWOPAW Token", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xf7de6def3d319811418d69bf56c532a815fc47e8.png", - "aggregators": ["CoinMarketCap", "LiFi", "Rubic"], - "occurrences": 3 - }, - "0x87869a9789291a6cec99f3c3ef2ff71fceb12a8e": { - "address": "0x87869a9789291a6cec99f3c3ef2ff71fceb12a8e", - "symbol": "CMOS", - "decimals": 9, - "name": "CoinMerge OS", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x87869a9789291a6cec99f3c3ef2ff71fceb12a8e.png", - "aggregators": ["CoinMarketCap", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x7616113782aadab041d7b10d474f8a0c04eff258": { - "address": "0x7616113782aadab041d7b10d474f8a0c04eff258", - "symbol": "VEE", - "decimals": 18, - "name": "Vee Token", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x7616113782aadab041d7b10d474f8a0c04eff258.png", - "aggregators": ["CoinMarketCap", "LiFi", "Rubic"], - "occurrences": 3 - }, - "0x286f851b049ccce1419e09b6468dc3297f86a703": { - "address": "0x286f851b049ccce1419e09b6468dc3297f86a703", - "symbol": "HISEALS", - "decimals": 18, - "name": "hiSEALS", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x286f851b049ccce1419e09b6468dc3297f86a703.png", - "aggregators": ["CoinMarketCap", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x8954d907520532c1f0d89d42569232fd0f995fdf": { - "address": "0x8954d907520532c1f0d89d42569232fd0f995fdf", - "symbol": "TX", - "decimals": 8, - "name": "Tradix", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x8954d907520532c1f0d89d42569232fd0f995fdf.png", - "aggregators": ["CoinMarketCap", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x517abf1fcdbd76bc75b532683ada9113e313a128": { - "address": "0x517abf1fcdbd76bc75b532683ada9113e313a128", - "symbol": "DOKE", - "decimals": 9, - "name": "Doke Inu", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x517abf1fcdbd76bc75b532683ada9113e313a128.png", - "aggregators": ["CoinMarketCap", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x6f8b23296394d20ec048fbdec8ebc0ca90f5c8f1": { - "address": "0x6f8b23296394d20ec048fbdec8ebc0ca90f5c8f1", - "symbol": "TUF", - "decimals": 18, - "name": "TUF Token", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x6f8b23296394d20ec048fbdec8ebc0ca90f5c8f1.png", - "aggregators": ["CoinMarketCap", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x8b0fde007458ee153bd0f66cd448af5fb3d99b43": { - "address": "0x8b0fde007458ee153bd0f66cd448af5fb3d99b43", - "symbol": "MASTERMIND", - "decimals": 18, - "name": "Mastermind", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x8b0fde007458ee153bd0f66cd448af5fb3d99b43.png", - "aggregators": ["CoinMarketCap", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x23ddbd36547d43627afa9b42d4e9fb0515f48b09": { - "address": "0x23ddbd36547d43627afa9b42d4e9fb0515f48b09", - "symbol": "HIBEANZ", - "decimals": 18, - "name": "hiBEANZ", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x23ddbd36547d43627afa9b42d4e9fb0515f48b09.png", - "aggregators": ["CoinMarketCap", "Rubic", "Rango"], - "occurrences": 3 - }, - "0xc2456d2118299a2efdfe6522ff79aa48fc5d2b00": { - "address": "0xc2456d2118299a2efdfe6522ff79aa48fc5d2b00", - "symbol": "MARU", - "decimals": 9, - "name": "MaruTaro", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xc2456d2118299a2efdfe6522ff79aa48fc5d2b00.png", - "aggregators": ["CoinMarketCap", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x2c022e58c5e3ee213f06f975fd8a0d3a6fe9ca1c": { - "address": "0x2c022e58c5e3ee213f06f975fd8a0d3a6fe9ca1c", - "symbol": "FINU", - "decimals": 18, - "name": "Formula Inu", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x2c022e58c5e3ee213f06f975fd8a0d3a6fe9ca1c.png", - "aggregators": ["CoinMarketCap", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x53340a1ef3a0ddeba1d94bbd1e2ff55936f0ea60": { - "address": "0x53340a1ef3a0ddeba1d94bbd1e2ff55936f0ea60", - "symbol": "BARK", - "decimals": 18, - "name": "Bark", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x53340a1ef3a0ddeba1d94bbd1e2ff55936f0ea60.png", - "aggregators": ["CoinMarketCap", "Rubic", "Rango"], - "occurrences": 3 - }, - "0xd1cd47746b8e72359b28c1c84a4f6a19dc1a0ee5": { - "address": "0xd1cd47746b8e72359b28c1c84a4f6a19dc1a0ee5", - "symbol": "SONIC", - "decimals": 18, - "name": "Sonic", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xd1cd47746b8e72359b28c1c84a4f6a19dc1a0ee5.png", - "aggregators": ["CoinMarketCap", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x6e39a587691b8c9d4341ce0a960998ed6f537af6": { - "address": "0x6e39a587691b8c9d4341ce0a960998ed6f537af6", - "symbol": "MEMAG", - "decimals": 18, - "name": "Meta Masters Guild", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x6e39a587691b8c9d4341ce0a960998ed6f537af6.png", - "aggregators": ["CoinMarketCap", "LiFi", "Rubic"], - "occurrences": 3 - }, - "0xf5d126077096e5b01bc30ffa5d9324d7202d7cb3": { - "address": "0xf5d126077096e5b01bc30ffa5d9324d7202d7cb3", - "symbol": "CHEW", - "decimals": 18, - "name": "CHEW", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xf5d126077096e5b01bc30ffa5d9324d7202d7cb3.png", - "aggregators": ["CoinMarketCap", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x3540dfcad7cf102a2e44aa0e2132fab1c89d7eae": { - "address": "0x3540dfcad7cf102a2e44aa0e2132fab1c89d7eae", - "symbol": "SWAI", - "decimals": 18, - "name": "SchwiftAI", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x3540dfcad7cf102a2e44aa0e2132fab1c89d7eae.png", - "aggregators": ["CoinMarketCap", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x6fdb90535c09b82825e38d41edf5e66211d4b442": { - "address": "0x6fdb90535c09b82825e38d41edf5e66211d4b442", - "symbol": "MAGNET", - "decimals": 18, - "name": "Yield Magnet", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x6fdb90535c09b82825e38d41edf5e66211d4b442.png", - "aggregators": ["CoinMarketCap", "Rubic", "Rango"], - "occurrences": 3 - }, - "0xfac0403a24229d7e2edd994d50f5940624cbeac2": { - "address": "0xfac0403a24229d7e2edd994d50f5940624cbeac2", - "symbol": "THEO", - "decimals": 9, - "name": "Theopetra", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xfac0403a24229d7e2edd994d50f5940624cbeac2.png", - "aggregators": ["CoinMarketCap", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x719e7f0dadfdea25b78595da944f44d15d7e6795": { - "address": "0x719e7f0dadfdea25b78595da944f44d15d7e6795", - "symbol": "MUSK", - "decimals": 18, - "name": "MUSK", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x719e7f0dadfdea25b78595da944f44d15d7e6795.png", - "aggregators": ["CoinMarketCap", "Rubic", "Rango"], - "occurrences": 3 - }, - "0xfd414e39155f91e94443a9fe97e856569d0f5eec": { - "address": "0xfd414e39155f91e94443a9fe97e856569d0f5eec", - "symbol": "SERP", - "decimals": 9, - "name": "SHIBARIUM PERPETUALS", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xfd414e39155f91e94443a9fe97e856569d0f5eec.png", - "aggregators": ["CoinMarketCap", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x1936c91190e901b7dd55229a574ae22b58ff498a": { - "address": "0x1936c91190e901b7dd55229a574ae22b58ff498a", - "symbol": "MEVFREE", - "decimals": 18, - "name": "MEVFREE", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x1936c91190e901b7dd55229a574ae22b58ff498a.png", - "aggregators": ["CoinMarketCap", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x4e4bffaa8df6f0dc3e5600bbacf7da55f37134fc": { - "address": "0x4e4bffaa8df6f0dc3e5600bbacf7da55f37134fc", - "symbol": "BST", - "decimals": 18, - "name": "BlockStar Token", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x4e4bffaa8df6f0dc3e5600bbacf7da55f37134fc.png", - "aggregators": ["CoinMarketCap", "Rubic", "Rango"], - "occurrences": 3 - }, - "0xb186035490c8602ead853ec98be05e3461521ab2": { - "address": "0xb186035490c8602ead853ec98be05e3461521ab2", - "symbol": "PACK", - "decimals": 18, - "name": "Pack", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xb186035490c8602ead853ec98be05e3461521ab2.png", - "aggregators": ["CoinMarketCap", "Rubic", "Rango"], - "occurrences": 3 - }, - "0xa7fbd9254f10f8e20a31a593c9e8bc0d041e15f6": { - "address": "0xa7fbd9254f10f8e20a31a593c9e8bc0d041e15f6", - "symbol": "ORBN", - "decimals": 9, - "name": "Orbeon Protocol", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xa7fbd9254f10f8e20a31a593c9e8bc0d041e15f6.png", - "aggregators": ["CoinMarketCap", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x5919dea604631016c15c805e3d948a0384879892": { - "address": "0x5919dea604631016c15c805e3d948a0384879892", - "symbol": "PEEP$", - "decimals": 9, - "name": "The Peoples Coin", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x5919dea604631016c15c805e3d948a0384879892.png", - "aggregators": ["CoinMarketCap", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x776aaca47ee579ff63f6c00a921377eb21359e59": { - "address": "0x776aaca47ee579ff63f6c00a921377eb21359e59", - "symbol": "CRST", - "decimals": 18, - "name": "Coorest", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x776aaca47ee579ff63f6c00a921377eb21359e59.png", - "aggregators": ["CoinMarketCap", "LiFi", "Rubic"], - "occurrences": 3 - }, - "0x4561de8e0c2bba725d38d266ef62426e62678d82": { - "address": "0x4561de8e0c2bba725d38d266ef62426e62678d82", - "symbol": "CONI", - "decimals": 18, - "name": "ConiToken", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x4561de8e0c2bba725d38d266ef62426e62678d82.png", - "aggregators": ["CoinMarketCap", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x6ba75d640bebfe5da1197bb5a2aff3327789b5d3": { - "address": "0x6ba75d640bebfe5da1197bb5a2aff3327789b5d3", - "symbol": "VEUR", - "decimals": 18, - "name": "VNX Euro", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x6ba75d640bebfe5da1197bb5a2aff3327789b5d3.png", - "aggregators": ["CoinMarketCap", "Rubic", "Rango"], - "occurrences": 3 - }, - "0xd5df655087d99b7b720a5bc8711f296180a4f44b": { - "address": "0xd5df655087d99b7b720a5bc8711f296180a4f44b", - "symbol": "OPTIG", - "decimals": 18, - "name": "Catgirl Optimus", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xd5df655087d99b7b720a5bc8711f296180a4f44b.png", - "aggregators": ["CoinMarketCap", "Rubic", "Rango"], - "occurrences": 3 - }, - "0xd01cb3d113a864763dd3977fe1e725860013b0ed": { - "address": "0xd01cb3d113a864763dd3977fe1e725860013b0ed", - "symbol": "RATOM", - "decimals": 18, - "name": "StaFi", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xd01cb3d113a864763dd3977fe1e725860013b0ed.png", - "aggregators": ["CoinMarketCap", "LiFi", "Rubic"], - "occurrences": 3 - }, - "0x0fe0ed7f146cb12e4b9759aff4fa8d34571802ca": { - "address": "0x0fe0ed7f146cb12e4b9759aff4fa8d34571802ca", - "symbol": "PARTY", - "decimals": 18, - "name": "PoolParty", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x0fe0ed7f146cb12e4b9759aff4fa8d34571802ca.png", - "aggregators": ["CoinMarketCap", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x045109cf1be9edec048aa0b3d7a323154a1aea65": { - "address": "0x045109cf1be9edec048aa0b3d7a323154a1aea65", - "symbol": "ELEV", - "decimals": 18, - "name": "Elevate", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x045109cf1be9edec048aa0b3d7a323154a1aea65.png", - "aggregators": ["CoinMarketCap", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x247dc9cbbaadabce6e30e2a84ec6c53a419913ad": { - "address": "0x247dc9cbbaadabce6e30e2a84ec6c53a419913ad", - "symbol": "EMS", - "decimals": 18, - "name": "Ethereum Message Service", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x247dc9cbbaadabce6e30e2a84ec6c53a419913ad.png", - "aggregators": ["CoinMarketCap", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x50eec6d765792dcfb0913c8403ef2a12e1b861a6": { - "address": "0x50eec6d765792dcfb0913c8403ef2a12e1b861a6", - "symbol": "Z3", - "decimals": 18, - "name": "Z-Cubed", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x50eec6d765792dcfb0913c8403ef2a12e1b861a6.png", - "aggregators": ["CoinMarketCap", "Rubic", "Rango"], - "occurrences": 3 - }, - "0xbd15ad921e1b480209af549874a2fcb80dc312bf": { - "address": "0xbd15ad921e1b480209af549874a2fcb80dc312bf", - "symbol": "HRP", - "decimals": 18, - "name": "Harpoon", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xbd15ad921e1b480209af549874a2fcb80dc312bf.png", - "aggregators": ["CoinMarketCap", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x5f9123d661459af6f398b6f1566f53222612541e": { - "address": "0x5f9123d661459af6f398b6f1566f53222612541e", - "symbol": "MARAN", - "decimals": 18, - "name": "MaranBet", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x5f9123d661459af6f398b6f1566f53222612541e.png", - "aggregators": ["CoinMarketCap", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x1a3cbda3853494acab67648ee59afeb7ec3e9334": { - "address": "0x1a3cbda3853494acab67648ee59afeb7ec3e9334", - "symbol": "COLT", - "decimals": 18, - "name": "Collateral Network", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x1a3cbda3853494acab67648ee59afeb7ec3e9334.png", - "aggregators": ["CoinMarketCap", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x67d85a291fcdc862a78812a3c26d55e28ffb2701": { - "address": "0x67d85a291fcdc862a78812a3c26d55e28ffb2701", - "symbol": "ASX", - "decimals": 18, - "name": "Asymetrix", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x67d85a291fcdc862a78812a3c26d55e28ffb2701.png", - "aggregators": ["CoinMarketCap", "Rubic", "Rango"], - "occurrences": 3 - }, - "0xe7ac8545e34771de3706598abb3db9a19af2a07f": { - "address": "0xe7ac8545e34771de3706598abb3db9a19af2a07f", - "symbol": "MONKED", - "decimals": 8, - "name": "MONKED", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xe7ac8545e34771de3706598abb3db9a19af2a07f.png", - "aggregators": ["CoinMarketCap", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x6c059413686565d5ad6cce6eed7742c42dbc44ca": { - "address": "0x6c059413686565d5ad6cce6eed7742c42dbc44ca", - "symbol": "LAELAPS", - "decimals": 18, - "name": "Laelaps", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x6c059413686565d5ad6cce6eed7742c42dbc44ca.png", - "aggregators": ["CoinMarketCap", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x3bf954e809620bf2f1fcb667f1c7d2d2e94350d1": { - "address": "0x3bf954e809620bf2f1fcb667f1c7d2d2e94350d1", - "symbol": "VIZ", - "decimals": 9, - "name": "Vision City", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x3bf954e809620bf2f1fcb667f1c7d2d2e94350d1.png", - "aggregators": ["CoinMarketCap", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x15a3081b541e8dad25c4a5e0c4c4b4e8d105b2e8": { - "address": "0x15a3081b541e8dad25c4a5e0c4c4b4e8d105b2e8", - "symbol": "$POV", - "decimals": 18, - "name": "Pepe Original Version", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x15a3081b541e8dad25c4a5e0c4c4b4e8d105b2e8.png", - "aggregators": ["CoinMarketCap", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x62d04c79c1f3a2d7230ffcd3ab01794e1d153239": { - "address": "0x62d04c79c1f3a2d7230ffcd3ab01794e1d153239", - "symbol": "OGMF", - "decimals": 18, - "name": "CryptoPirates", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x62d04c79c1f3a2d7230ffcd3ab01794e1d153239.png", - "aggregators": ["CoinMarketCap", "Rubic", "Rango"], - "occurrences": 3 - }, - "0xdd50c053c096cb04a3e3362e2b622529ec5f2e8a": { - "address": "0xdd50c053c096cb04a3e3362e2b622529ec5f2e8a", - "symbol": "TBILL", - "decimals": 6, - "name": "OpenEden T-Bills", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xdd50c053c096cb04a3e3362e2b622529ec5f2e8a.png", - "aggregators": ["CoinMarketCap", "LiFi", "Rubic"], - "occurrences": 3 - }, - "0x5bbe36152d3cd3eb7183a82470b39b29eedf068b": { - "address": "0x5bbe36152d3cd3eb7183a82470b39b29eedf068b", - "symbol": "HETH", - "decimals": 18, - "name": "HordETH", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x5bbe36152d3cd3eb7183a82470b39b29eedf068b.png", - "aggregators": ["CoinMarketCap", "Socket", "Rubic"], - "occurrences": 3 - }, - "0x6732efaf6f39926346bef8b821a04b6361c4f3e5": { - "address": "0x6732efaf6f39926346bef8b821a04b6361c4f3e5", - "symbol": "SAFETH", - "decimals": 18, - "name": "Simple Asymmetry ETH", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x6732efaf6f39926346bef8b821a04b6361c4f3e5.png", - "aggregators": ["CoinMarketCap", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x5c0217e4e126d501896594bec409898a9afc5970": { - "address": "0x5c0217e4e126d501896594bec409898a9afc5970", - "symbol": "FRENS", - "decimals": 18, - "name": "Frens", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x5c0217e4e126d501896594bec409898a9afc5970.png", - "aggregators": ["CoinMarketCap", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x37f678ad6221a0fd71cda0eca19c8802f4cabf44": { - "address": "0x37f678ad6221a0fd71cda0eca19c8802f4cabf44", - "symbol": "YUKKY", - "decimals": 18, - "name": "YUKKY", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x37f678ad6221a0fd71cda0eca19c8802f4cabf44.png", - "aggregators": ["CoinMarketCap", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x524ebc93beef838f70b4ae54b675d3e971d5884e": { - "address": "0x524ebc93beef838f70b4ae54b675d3e971d5884e", - "symbol": "HERO", - "decimals": 9, - "name": "Challenge Coin", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x524ebc93beef838f70b4ae54b675d3e971d5884e.png", - "aggregators": ["CoinMarketCap", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x4be2b2c45b432ba362f198c08094017b61e3bdc6": { - "address": "0x4be2b2c45b432ba362f198c08094017b61e3bdc6", - "symbol": "MSWAP", - "decimals": 18, - "name": "MARSWAP", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x4be2b2c45b432ba362f198c08094017b61e3bdc6.png", - "aggregators": ["CoinMarketCap", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x66861d5f0fbfb7b2711712fef2172c560d08d0ab": { - "address": "0x66861d5f0fbfb7b2711712fef2172c560d08d0ab", - "symbol": "AFB", - "decimals": 18, - "name": "A Fund Baby", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x66861d5f0fbfb7b2711712fef2172c560d08d0ab.png", - "aggregators": ["CoinMarketCap", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x3b0b09f5b14f6d50e6672ae158f9d71893feca18": { - "address": "0x3b0b09f5b14f6d50e6672ae158f9d71893feca18", - "symbol": "HIBAKC", - "decimals": 18, - "name": "hiBAKC", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x3b0b09f5b14f6d50e6672ae158f9d71893feca18.png", - "aggregators": ["CoinMarketCap", "Rubic", "Rango"], - "occurrences": 3 - }, - "0xdb8d6d3ac21e4efe3675bbb18514010ac9c5558f": { - "address": "0xdb8d6d3ac21e4efe3675bbb18514010ac9c5558f", - "symbol": "EGRN", - "decimals": 18, - "name": "Energreen", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xdb8d6d3ac21e4efe3675bbb18514010ac9c5558f.png", - "aggregators": ["CoinMarketCap", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x15c1cab705b9ddb9ffeeea608ed8bafcdd4c0396": { - "address": "0x15c1cab705b9ddb9ffeeea608ed8bafcdd4c0396", - "symbol": "HXA", - "decimals": 18, - "name": "HXAcoin", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x15c1cab705b9ddb9ffeeea608ed8bafcdd4c0396.png", - "aggregators": ["CoinMarketCap", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x75430d0782a443bd4f1c92c69009599dea53a206": { - "address": "0x75430d0782a443bd4f1c92c69009599dea53a206", - "symbol": "RICK", - "decimals": 9, - "name": "Pick Or Rick", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x75430d0782a443bd4f1c92c69009599dea53a206.png", - "aggregators": ["CoinMarketCap", "Rubic", "Rango"], - "occurrences": 3 - }, - "0xbc8e35221904f61b4200ca44a08e4dac387ac83a": { - "address": "0xbc8e35221904f61b4200ca44a08e4dac387ac83a", - "symbol": "BERC", - "decimals": 18, - "name": "Fair BERC20", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xbc8e35221904f61b4200ca44a08e4dac387ac83a.png", - "aggregators": ["CoinMarketCap", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x733b5056a0697e7a4357305fe452999a0c409feb": { - "address": "0x733b5056a0697e7a4357305fe452999a0c409feb", - "symbol": "VCORE", - "decimals": 18, - "name": "VCORE", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x733b5056a0697e7a4357305fe452999a0c409feb.png", - "aggregators": ["CoinMarketCap", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x9f94b198ce85c19a846c2b1a4d523f40a747a850": { - "address": "0x9f94b198ce85c19a846c2b1a4d523f40a747a850", - "symbol": "HAVOC", - "decimals": 9, - "name": "havoc", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x9f94b198ce85c19a846c2b1a4d523f40a747a850.png", - "aggregators": ["CoinMarketCap", "Rubic", "Rango"], - "occurrences": 3 - }, - "0xe08ef9206a8a7c9337cc6611b4f5226fdafc4772": { - "address": "0xe08ef9206a8a7c9337cc6611b4f5226fdafc4772", - "symbol": "MESSI", - "decimals": 9, - "name": "MESSI COIN", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xe08ef9206a8a7c9337cc6611b4f5226fdafc4772.png", - "aggregators": ["CoinMarketCap", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x3f17f64f682019599ba51638f74e4b6c127fe725": { - "address": "0x3f17f64f682019599ba51638f74e4b6c127fe725", - "symbol": "REVIVE", - "decimals": 18, - "name": "Revive", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x3f17f64f682019599ba51638f74e4b6c127fe725.png", - "aggregators": ["CoinMarketCap", "Rubic", "Rango"], - "occurrences": 3 - }, - "0xaa68fd12a3b0f7aea66fe8f7111ae3f8d9ac5058": { - "address": "0xaa68fd12a3b0f7aea66fe8f7111ae3f8d9ac5058", - "symbol": "TWEETY", - "decimals": 9, - "name": "Tweety", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xaa68fd12a3b0f7aea66fe8f7111ae3f8d9ac5058.png", - "aggregators": ["CoinMarketCap", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x2890df158d76e584877a1d17a85fea3aeeb85aa6": { - "address": "0x2890df158d76e584877a1d17a85fea3aeeb85aa6", - "symbol": "FUMO", - "decimals": 18, - "name": "Alien Milady Fumo", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x2890df158d76e584877a1d17a85fea3aeeb85aa6.png", - "aggregators": ["CoinMarketCap", "LiFi", "Rubic"], - "occurrences": 3 - }, - "0xb81914f05daf95802eb30726a399733e0696cd79": { - "address": "0xb81914f05daf95802eb30726a399733e0696cd79", - "symbol": "$HOLA", - "decimals": 18, - "name": "HOLA", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xb81914f05daf95802eb30726a399733e0696cd79.png", - "aggregators": ["CoinMarketCap", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x01bf66becdcfd6d59a5ca18869f494fea086cdfd": { - "address": "0x01bf66becdcfd6d59a5ca18869f494fea086cdfd", - "symbol": "USK", - "decimals": 18, - "name": "US KUMA Interest Bearing Token", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x01bf66becdcfd6d59a5ca18869f494fea086cdfd.png", - "aggregators": ["CoinMarketCap", "Rubic", "Rango"], - "occurrences": 3 - }, - "0xc9d21e5a24110b67af31af464edfdc2dae5ec7d5": { - "address": "0xc9d21e5a24110b67af31af464edfdc2dae5ec7d5", - "symbol": "BTM", - "decimals": 18, - "name": "BitMeme", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xc9d21e5a24110b67af31af464edfdc2dae5ec7d5.png", - "aggregators": ["CoinMarketCap", "Socket", "Rubic"], - "occurrences": 3 - }, - "0x4ebe70cb942d5af0a18b9126762637e7098ff5fd": { - "address": "0x4ebe70cb942d5af0a18b9126762637e7098ff5fd", - "symbol": "G", - "decimals": 9, - "name": "G Revolution", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x4ebe70cb942d5af0a18b9126762637e7098ff5fd.png", - "aggregators": ["CoinMarketCap", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x36880f14af2e85cae8e467827fa077d6bf12ea56": { - "address": "0x36880f14af2e85cae8e467827fa077d6bf12ea56", - "symbol": "JARED", - "decimals": 18, - "name": "Jared From Subway", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x36880f14af2e85cae8e467827fa077d6bf12ea56.png", - "aggregators": ["CoinMarketCap", "Rubic", "Rango"], - "occurrences": 3 - }, - "0xa34ee6108fe427f91edce0d6520d9fec0e64f67b": { - "address": "0xa34ee6108fe427f91edce0d6520d9fec0e64f67b", - "symbol": "$PLPC", - "decimals": 9, - "name": "Pepe Le Pew Coin", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xa34ee6108fe427f91edce0d6520d9fec0e64f67b.png", - "aggregators": ["CoinMarketCap", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x0981d9774a59a703db85f5eaa23672283ea31106": { - "address": "0x0981d9774a59a703db85f5eaa23672283ea31106", - "symbol": "PEPINU", - "decimals": 18, - "name": "Pepe Inu", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x0981d9774a59a703db85f5eaa23672283ea31106.png", - "aggregators": ["CoinMarketCap", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x3f2d4708f75de6fb60b687fed326697634774deb": { - "address": "0x3f2d4708f75de6fb60b687fed326697634774deb", - "symbol": "NEOBOT", - "decimals": 18, - "name": "NeoBot", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x3f2d4708f75de6fb60b687fed326697634774deb.png", - "aggregators": ["CoinMarketCap", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x330528172778cc5196d5f6742886c72505e0613d": { - "address": "0x330528172778cc5196d5f6742886c72505e0613d", - "symbol": "XBOT", - "decimals": 18, - "name": "XBot", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x330528172778cc5196d5f6742886c72505e0613d.png", - "aggregators": ["CoinMarketCap", "LiFi", "Rubic"], - "occurrences": 3 - }, - "0x6eff556748ee452cbdaf31bcb8c76a28651509bd": { - "address": "0x6eff556748ee452cbdaf31bcb8c76a28651509bd", - "symbol": "TIUSD", - "decimals": 18, - "name": "TiUSD", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x6eff556748ee452cbdaf31bcb8c76a28651509bd.png", - "aggregators": ["CoinMarketCap", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x6230f552a1c825d02e1140ccc0d3f5eeec81ca84": { - "address": "0x6230f552a1c825d02e1140ccc0d3f5eeec81ca84", - "symbol": "FUSION", - "decimals": 9, - "name": "FusionBot", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x6230f552a1c825d02e1140ccc0d3f5eeec81ca84.png", - "aggregators": ["CoinMarketCap", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x38cf11283de05cf1823b7804bc75068bd6296957": { - "address": "0x38cf11283de05cf1823b7804bc75068bd6296957", - "symbol": "MBOT", - "decimals": 18, - "name": "MOONBOT", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x38cf11283de05cf1823b7804bc75068bd6296957.png", - "aggregators": ["CoinMarketCap", "Rubic", "Rango"], - "occurrences": 3 - }, - "0xc3071803b9d23460820b516673fd3cec0415d0ed": { - "address": "0xc3071803b9d23460820b516673fd3cec0415d0ed", - "symbol": "KUKU", - "decimals": 9, - "name": "KuKu", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xc3071803b9d23460820b516673fd3cec0415d0ed.png", - "aggregators": ["CoinMarketCap", "Socket", "Rubic"], - "occurrences": 3 - }, - "0xbb19da2482308ec02a242aced4fe0f09d06b12a7": { - "address": "0xbb19da2482308ec02a242aced4fe0f09d06b12a7", - "symbol": "FLASH", - "decimals": 18, - "name": "Flash 3.0", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xbb19da2482308ec02a242aced4fe0f09d06b12a7.png", - "aggregators": ["CoinMarketCap", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x2654e753424a9f02df31cfbc6c5af14a87b6cab5": { - "address": "0x2654e753424a9f02df31cfbc6c5af14a87b6cab5", - "symbol": "KEN", - "decimals": 18, - "name": "Kendoll Janner", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x2654e753424a9f02df31cfbc6c5af14a87b6cab5.png", - "aggregators": ["CoinMarketCap", "Rubic", "Rango"], - "occurrences": 3 - }, - "0xfbbe098ee65238e4d9f771404edddcbf89cd689b": { - "address": "0xfbbe098ee65238e4d9f771404edddcbf89cd689b", - "symbol": "TREE", - "decimals": 18, - "name": "TREEMEISTER", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xfbbe098ee65238e4d9f771404edddcbf89cd689b.png", - "aggregators": ["CoinMarketCap", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x01e87d74b11f656a673a3e7c441425816213eb0c": { - "address": "0x01e87d74b11f656a673a3e7c441425816213eb0c", - "symbol": "HOTDOG", - "decimals": 18, - "name": "Sonic", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x01e87d74b11f656a673a3e7c441425816213eb0c.png", - "aggregators": ["CoinMarketCap", "LiFi", "Rubic"], - "occurrences": 3 - }, - "0x8423b76be8ef6ca7400a6b4c334d29c1d5d4572c": { - "address": "0x8423b76be8ef6ca7400a6b4c334d29c1d5d4572c", - "symbol": "INU", - "decimals": 8, - "name": "HarryPotterObamaInu", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x8423b76be8ef6ca7400a6b4c334d29c1d5d4572c.png", - "aggregators": ["CoinMarketCap", "Rubic", "Rango"], - "occurrences": 3 - }, - "0xbc953fccbcc9e95dafb35d46992cee966aa972cd": { - "address": "0xbc953fccbcc9e95dafb35d46992cee966aa972cd", - "symbol": "DAWAE", - "decimals": 18, - "name": "Dawae", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xbc953fccbcc9e95dafb35d46992cee966aa972cd.png", - "aggregators": ["CoinMarketCap", "Socket", "Rubic"], - "occurrences": 3 - }, - "0x8a3c710e41cd95799c535f22dbae371d7c858651": { - "address": "0x8a3c710e41cd95799c535f22dbae371d7c858651", - "symbol": "XLRT", - "decimals": 18, - "name": "Xccelerate", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x8a3c710e41cd95799c535f22dbae371d7c858651.png", - "aggregators": ["CoinMarketCap", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x3408636a7825e894ac5521ca55494f89f96df240": { - "address": "0x3408636a7825e894ac5521ca55494f89f96df240", - "symbol": "PYME", - "decimals": 18, - "name": "PymeDAO", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x3408636a7825e894ac5521ca55494f89f96df240.png", - "aggregators": ["CoinMarketCap", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x52d30b949bdbc63780e5a263cf436d4df983fe58": { - "address": "0x52d30b949bdbc63780e5a263cf436d4df983fe58", - "symbol": "ZW", - "decimals": 18, - "name": "Zenith Wallet", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x52d30b949bdbc63780e5a263cf436d4df983fe58.png", - "aggregators": ["CoinMarketCap", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x42e70913b53cfcc38b18ffbd124e8f65c706deaf": { - "address": "0x42e70913b53cfcc38b18ffbd124e8f65c706deaf", - "symbol": "SALLY", - "decimals": 9, - "name": "SALAMANDER", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x42e70913b53cfcc38b18ffbd124e8f65c706deaf.png", - "aggregators": ["CoinMarketCap", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x66a3a58f812d0f433daaf1d96e14fd72d1d03d67": { - "address": "0x66a3a58f812d0f433daaf1d96e14fd72d1d03d67", - "symbol": "YAMA", - "decimals": 18, - "name": "yama", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x66a3a58f812d0f433daaf1d96e14fd72d1d03d67.png", - "aggregators": ["CoinMarketCap", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x64c79c8c59a2be17c8d651f73e5ee7942eebdc9e": { - "address": "0x64c79c8c59a2be17c8d651f73e5ee7942eebdc9e", - "symbol": "SCHRODINGE", - "decimals": 18, - "name": "Elon Cat", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x64c79c8c59a2be17c8d651f73e5ee7942eebdc9e.png", - "aggregators": ["CoinMarketCap", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x544d230f0362f3843fda5caa99b94cb2b336e384": { - "address": "0x544d230f0362f3843fda5caa99b94cb2b336e384", - "symbol": "MAG", - "decimals": 9, - "name": "Magnesium", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x544d230f0362f3843fda5caa99b94cb2b336e384.png", - "aggregators": ["CoinMarketCap", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x76af4cb74c8d4da51403d672a799e94b5958c230": { - "address": "0x76af4cb74c8d4da51403d672a799e94b5958c230", - "symbol": "GOOD", - "decimals": 9, - "name": "Feels Good Man", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x76af4cb74c8d4da51403d672a799e94b5958c230.png", - "aggregators": ["CoinMarketCap", "Rubic", "Rango"], - "occurrences": 3 - }, - "0xad6eefb4f4a6ce3e2cd2049c3104f5ce5ed082f0": { - "address": "0xad6eefb4f4a6ce3e2cd2049c3104f5ce5ed082f0", - "symbol": "SIMPSON690", - "decimals": 9, - "name": "Simpson6900", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xad6eefb4f4a6ce3e2cd2049c3104f5ce5ed082f0.png", - "aggregators": ["CoinMarketCap", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x29d7139271398d0c2e22523fda06e023dcb07f8f": { - "address": "0x29d7139271398d0c2e22523fda06e023dcb07f8f", - "symbol": "KLUB", - "decimals": 18, - "name": "Klub Coin", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x29d7139271398d0c2e22523fda06e023dcb07f8f.png", - "aggregators": ["CoinMarketCap", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x47879db9e657e644082071b48e2f33d80f369f02": { - "address": "0x47879db9e657e644082071b48e2f33d80f369f02", - "symbol": "XINU", - "decimals": 9, - "name": "XINU", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x47879db9e657e644082071b48e2f33d80f369f02.png", - "aggregators": ["CoinMarketCap", "Rubic", "Rango"], - "occurrences": 3 - }, - "0xcd54df3c19a7ae672897f2a09821d2c287d36326": { - "address": "0xcd54df3c19a7ae672897f2a09821d2c287d36326", - "symbol": "BABYMEME", - "decimals": 9, - "name": "Baby Memecoin", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xcd54df3c19a7ae672897f2a09821d2c287d36326.png", - "aggregators": ["CoinMarketCap", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x3e2c956b4ab4807b2f942235c9074d9bd069e9f0": { - "address": "0x3e2c956b4ab4807b2f942235c9074d9bd069e9f0", - "symbol": "IPV", - "decimals": 18, - "name": "IPVERSE", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x3e2c956b4ab4807b2f942235c9074d9bd069e9f0.png", - "aggregators": ["CoinMarketCap", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x10f2cf6ef155460c5b716080eb57928652867f2e": { - "address": "0x10f2cf6ef155460c5b716080eb57928652867f2e", - "symbol": "MUSK", - "decimals": 18, - "name": "Musk", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x10f2cf6ef155460c5b716080eb57928652867f2e.png", - "aggregators": ["CoinMarketCap", "Rubic", "Rango"], - "occurrences": 3 - }, - "0xdeadface8503399df4b083ef42fa8e02fd39dead": { - "address": "0xdeadface8503399df4b083ef42fa8e02fd39dead", - "symbol": "TRIBE", - "decimals": 18, - "name": "The Tribe", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xdeadface8503399df4b083ef42fa8e02fd39dead.png", - "aggregators": ["CoinMarketCap", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x31adda225642a8f4d7e90d4152be6661ab22a5a2": { - "address": "0x31adda225642a8f4d7e90d4152be6661ab22a5a2", - "symbol": "HYPR", - "decimals": 18, - "name": "HYPR", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x31adda225642a8f4d7e90d4152be6661ab22a5a2.png", - "aggregators": ["CoinMarketCap", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x1c001d1c9e8c7b8dc717c714d30b31480ab360f5": { - "address": "0x1c001d1c9e8c7b8dc717c714d30b31480ab360f5", - "symbol": "GTX", - "decimals": 18, - "name": "Gigantix Wallet Token", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x1c001d1c9e8c7b8dc717c714d30b31480ab360f5.png", - "aggregators": ["CoinMarketCap", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x273b8e7adddcb4de101416300fcd3688c0612a27": { - "address": "0x273b8e7adddcb4de101416300fcd3688c0612a27", - "symbol": "RAIT", - "decimals": 18, - "name": "Rabbitgame", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x273b8e7adddcb4de101416300fcd3688c0612a27.png", - "aggregators": ["CoinMarketCap", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x74588af8de14287e91d89758636d277d66f217b6": { - "address": "0x74588af8de14287e91d89758636d277d66f217b6", - "symbol": "0XOS", - "decimals": 18, - "name": "0xOS AI", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x74588af8de14287e91d89758636d277d66f217b6.png", - "aggregators": ["CoinMarketCap", "Rubic", "Rango"], - "occurrences": 3 - }, - "0xcb19b6b4971bd4206bab176c75b1efe3e28ee5a8": { - "address": "0xcb19b6b4971bd4206bab176c75b1efe3e28ee5a8", - "symbol": "SEN", - "decimals": 18, - "name": "Seneca", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xcb19b6b4971bd4206bab176c75b1efe3e28ee5a8.png", - "aggregators": ["CoinMarketCap", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x30d0e4e6fb0330e45a13e1e06260837f27015de5": { - "address": "0x30d0e4e6fb0330e45a13e1e06260837f27015de5", - "symbol": "YOD", - "decimals": 18, - "name": "Year of the Dragon", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x30d0e4e6fb0330e45a13e1e06260837f27015de5.png", - "aggregators": ["CoinMarketCap", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x9dc9d1c18060b45f3dc15fb8d6ab1895022c63b3": { - "address": "0x9dc9d1c18060b45f3dc15fb8d6ab1895022c63b3", - "symbol": "BBB", - "decimals": 18, - "name": "BitBullBot", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x9dc9d1c18060b45f3dc15fb8d6ab1895022c63b3.png", - "aggregators": ["CoinMarketCap", "Rubic", "Rango"], - "occurrences": 3 - }, - "0xc1ecfaf43c53bec9b9143ab274f35603fd10b886": { - "address": "0xc1ecfaf43c53bec9b9143ab274f35603fd10b886", - "symbol": "SSHIP", - "decimals": 18, - "name": "StarShip", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xc1ecfaf43c53bec9b9143ab274f35603fd10b886.png", - "aggregators": ["CoinMarketCap", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x60c0d11c10a0c04acb47c6296156bdffac62ef97": { - "address": "0x60c0d11c10a0c04acb47c6296156bdffac62ef97", - "symbol": "BBCG", - "decimals": 4, - "name": "BBC Gold Coin", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x60c0d11c10a0c04acb47c6296156bdffac62ef97.png", - "aggregators": ["CoinMarketCap", "Rubic", "Rango"], - "occurrences": 3 - }, - "0xebdb54e76bfec9ab4e06ccf6e484e4126f81befc": { - "address": "0xebdb54e76bfec9ab4e06ccf6e484e4126f81befc", - "symbol": "HON", - "decimals": 18, - "name": "Soul Society", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xebdb54e76bfec9ab4e06ccf6e484e4126f81befc.png", - "aggregators": ["CoinMarketCap", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x2a85556a6701a02e75bc4de8ec340c6de1b29f72": { - "address": "0x2a85556a6701a02e75bc4de8ec340c6de1b29f72", - "symbol": "TOKA", - "decimals": 18, - "name": "Tonka Finance", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x2a85556a6701a02e75bc4de8ec340c6de1b29f72.png", - "aggregators": ["CoinMarketCap", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x00000000ba2ca30042001abc545871380f570b1f": { - "address": "0x00000000ba2ca30042001abc545871380f570b1f", - "symbol": "ATF", - "decimals": 18, - "name": "ArithFi", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x00000000ba2ca30042001abc545871380f570b1f.png", - "aggregators": ["CoinMarketCap", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x2f1ee92524285012c02a4e638ec010fa7f61fd94": { - "address": "0x2f1ee92524285012c02a4e638ec010fa7f61fd94", - "symbol": "SLS", - "decimals": 18, - "name": "Siphon Life Spell", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x2f1ee92524285012c02a4e638ec010fa7f61fd94.png", - "aggregators": ["CoinMarketCap", "Rubic", "Rango"], - "occurrences": 3 - }, - "0xf4cccfda0781ae019a9d4e1853dcd3e288daaa89": { - "address": "0xf4cccfda0781ae019a9d4e1853dcd3e288daaa89", - "symbol": "$PINCHI", - "decimals": 9, - "name": "da Pinchi", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xf4cccfda0781ae019a9d4e1853dcd3e288daaa89.png", - "aggregators": ["CoinMarketCap", "Rubic", "Rango"], - "occurrences": 3 - }, - "0xf2fdd9c25d7bc8002ce89716d1be484b2d976944": { - "address": "0xf2fdd9c25d7bc8002ce89716d1be484b2d976944", - "symbol": "𝕏PAY", - "decimals": 18, - "name": "𝕏 Payments", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xf2fdd9c25d7bc8002ce89716d1be484b2d976944.png", - "aggregators": ["CoinMarketCap", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x1bb9b64927e0c5e207c9db4093b3738eef5d8447": { - "address": "0x1bb9b64927e0c5e207c9db4093b3738eef5d8447", - "symbol": "VEC", - "decimals": 9, - "name": "Vector", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x1bb9b64927e0c5e207c9db4093b3738eef5d8447.png", - "aggregators": ["CoinMarketCap", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x926ff6584b5905cc793cfb19bfc0ad6443671f47": { - "address": "0x926ff6584b5905cc793cfb19bfc0ad6443671f47", - "symbol": "PABLO", - "decimals": 18, - "name": "PABLO DEFI", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x926ff6584b5905cc793cfb19bfc0ad6443671f47.png", - "aggregators": ["CoinMarketCap", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x0aa1582bebf8d96ea384b6829a5d41278579cd88": { - "address": "0x0aa1582bebf8d96ea384b6829a5d41278579cd88", - "symbol": "LYVE", - "decimals": 18, - "name": "Lyve Finance", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x0aa1582bebf8d96ea384b6829a5d41278579cd88.png", - "aggregators": ["CoinMarketCap", "Rubic", "Rango"], - "occurrences": 3 - }, - "0xbe59baad09b07086ee6c39bd0fc234c157c31ccc": { - "address": "0xbe59baad09b07086ee6c39bd0fc234c157c31ccc", - "symbol": "LONG", - "decimals": 18, - "name": "LONG Token", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xbe59baad09b07086ee6c39bd0fc234c157c31ccc.png", - "aggregators": ["CoinMarketCap", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x39a9728fb398583154e6cc5e3defa60908f58e2f": { - "address": "0x39a9728fb398583154e6cc5e3defa60908f58e2f", - "symbol": "BEFY", - "decimals": 18, - "name": "Befy Protocol", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x39a9728fb398583154e6cc5e3defa60908f58e2f.png", - "aggregators": ["CoinMarketCap", "Rubic", "Rango"], - "occurrences": 3 - }, - "0xd289ea09aeece390629e9414d41b4d9d9bf43fd9": { - "address": "0xd289ea09aeece390629e9414d41b4d9d9bf43fd9", - "symbol": "AITEK", - "decimals": 18, - "name": "AI Technology", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xd289ea09aeece390629e9414d41b4d9d9bf43fd9.png", - "aggregators": ["CoinMarketCap", "Rubic", "Rango"], - "occurrences": 3 - }, - "0xb5c457ddb4ce3312a6c5a2b056a1652bd542a208": { - "address": "0xb5c457ddb4ce3312a6c5a2b056a1652bd542a208", - "symbol": "ROCK", - "decimals": 18, - "name": "EtherRock404", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xb5c457ddb4ce3312a6c5a2b056a1652bd542a208.png", - "aggregators": ["CoinMarketCap", "Rubic", "Rango"], - "occurrences": 3 - }, - "0xbe33f57f41a20b2f00dec91dcc1169597f36221f": { - "address": "0xbe33f57f41a20b2f00dec91dcc1169597f36221f", - "symbol": "RUG", - "decimals": 18, - "name": "Rug", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xbe33f57f41a20b2f00dec91dcc1169597f36221f.png", - "aggregators": ["CoinMarketCap", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x559cc0850361afe1973c0ba5d0a3446c8a5ad678": { - "address": "0x559cc0850361afe1973c0ba5d0a3446c8a5ad678", - "symbol": "AVATAR", - "decimals": 18, - "name": "Avatar", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x559cc0850361afe1973c0ba5d0a3446c8a5ad678.png", - "aggregators": ["CoinMarketCap", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x6c061d18d2b5bbfbe8a8d1eeb9ee27efd544cc5d": { - "address": "0x6c061d18d2b5bbfbe8a8d1eeb9ee27efd544cc5d", - "symbol": "MNRCH", - "decimals": 18, - "name": "Monarch", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x6c061d18d2b5bbfbe8a8d1eeb9ee27efd544cc5d.png", - "aggregators": ["CoinMarketCap", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x45b3cf56896c4547426a4145ad1d0ae971120214": { - "address": "0x45b3cf56896c4547426a4145ad1d0ae971120214", - "symbol": "404BLOCKS", - "decimals": 18, - "name": "404Blocks", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x45b3cf56896c4547426a4145ad1d0ae971120214.png", - "aggregators": ["CoinMarketCap", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x038ed1383763d704d4271fe856ac96b4557e9d06": { - "address": "0x038ed1383763d704d4271fe856ac96b4557e9d06", - "symbol": "ALPHABET", - "decimals": 18, - "name": "Alphabet", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x038ed1383763d704d4271fe856ac96b4557e9d06.png", - "aggregators": ["CoinMarketCap", "Rubic", "Rango"], - "occurrences": 3 - }, - "0xbc391e78b0ea0d1db04890732742494e7fbfc118": { - "address": "0xbc391e78b0ea0d1db04890732742494e7fbfc118", - "symbol": "VANA ", - "decimals": 18, - "name": "Vana", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xbc391e78b0ea0d1db04890732742494e7fbfc118.png", - "aggregators": ["CoinMarketCap", "Rubic", "Rango"], - "occurrences": 3 - }, - "0xe4129c7b229812212f88d1bd6a223c45622e6b85": { - "address": "0xe4129c7b229812212f88d1bd6a223c45622e6b85", - "symbol": "LOOT", - "decimals": 9, - "name": "Looted Network", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xe4129c7b229812212f88d1bd6a223c45622e6b85.png", - "aggregators": ["CoinMarketCap", "Rubic", "Rango"], - "occurrences": 3 - }, - "0xc73abe8d7a0da644743fe2ad24f4e16bb7ed43f8": { - "address": "0xc73abe8d7a0da644743fe2ad24f4e16bb7ed43f8", - "symbol": "WEBAI", - "decimals": 9, - "name": "Website AI", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xc73abe8d7a0da644743fe2ad24f4e16bb7ed43f8.png", - "aggregators": ["CoinMarketCap", "Rubic", "Rango"], - "occurrences": 3 - }, - "0xb813322cd994a2f7808c340ea12e0a2283a7a757": { - "address": "0xb813322cd994a2f7808c340ea12e0a2283a7a757", - "symbol": "CBABY", - "decimals": 18, - "name": "Cosmo Baby", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xb813322cd994a2f7808c340ea12e0a2283a7a757.png", - "aggregators": ["CoinMarketCap", "Rubic", "Rango"], - "occurrences": 3 - }, - "0xafa42b8ba6ba9dace46dae129a2a1ef54b73fa8b": { - "address": "0xafa42b8ba6ba9dace46dae129a2a1ef54b73fa8b", - "symbol": "MODAI", - "decimals": 18, - "name": "Modai", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xafa42b8ba6ba9dace46dae129a2a1ef54b73fa8b.png", - "aggregators": ["CoinMarketCap", "Rubic", "Rango"], - "occurrences": 3 - }, - "0xa406844323f1603701e6ad95adc8a082213a68ce": { - "address": "0xa406844323f1603701e6ad95adc8a082213a68ce", - "symbol": "PBT", - "decimals": 18, - "name": "PolyBet", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xa406844323f1603701e6ad95adc8a082213a68ce.png", - "aggregators": ["CoinMarketCap", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x1f769203d2abcb78f5a77dd15c0078c50fb13287": { - "address": "0x1f769203d2abcb78f5a77dd15c0078c50fb13287", - "symbol": "AZURE", - "decimals": 18, - "name": "AZURE WALLET", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x1f769203d2abcb78f5a77dd15c0078c50fb13287.png", - "aggregators": ["CoinMarketCap", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x6d48206b97b164555c8fc7a40d59a7230e055166": { - "address": "0x6d48206b97b164555c8fc7a40d59a7230e055166", - "symbol": "SEND", - "decimals": 18, - "name": "Sendpicks", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x6d48206b97b164555c8fc7a40d59a7230e055166.png", - "aggregators": ["CoinMarketCap", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x8e3a59427b1d87db234dd4ff63b25e4bf94672f4": { - "address": "0x8e3a59427b1d87db234dd4ff63b25e4bf94672f4", - "symbol": "KEP", - "decimals": 18, - "name": "Kelp Earned Point", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x8e3a59427b1d87db234dd4ff63b25e4bf94672f4.png", - "aggregators": ["CoinMarketCap", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x3a645ff83560231aab0f9c830ba108b06c94e34a": { - "address": "0x3a645ff83560231aab0f9c830ba108b06c94e34a", - "symbol": "LUNAR", - "decimals": 9, - "name": "Lunar", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x3a645ff83560231aab0f9c830ba108b06c94e34a.png", - "aggregators": ["CoinMarketCap", "Rubic", "Rango"], - "occurrences": 3 - }, - "0xdd4ce03b97085e5023d3a5fbff6e4f2c4dffb7c3": { - "address": "0xdd4ce03b97085e5023d3a5fbff6e4f2c4dffb7c3", - "symbol": "PORA", - "decimals": 18, - "name": "PORA AI", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xdd4ce03b97085e5023d3a5fbff6e4f2c4dffb7c3.png", - "aggregators": ["CoinMarketCap", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x95b4b8cad3567b5d7ef7399c2ae1d7070692ab0d": { - "address": "0x95b4b8cad3567b5d7ef7399c2ae1d7070692ab0d", - "symbol": "APRS", - "decimals": 18, - "name": "Aperios", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x95b4b8cad3567b5d7ef7399c2ae1d7070692ab0d.png", - "aggregators": ["CoinMarketCap", "LiFi", "Rubic"], - "occurrences": 3 - }, - "0x29ffeffcd2154824c6e645afeacca4bd95c893d2": { - "address": "0x29ffeffcd2154824c6e645afeacca4bd95c893d2", - "symbol": "ALGO", - "decimals": 18, - "name": "Algowave", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x29ffeffcd2154824c6e645afeacca4bd95c893d2.png", - "aggregators": ["CoinMarketCap", "Rubic", "Rango"], - "occurrences": 3 - }, - "0xb9edbe853ddccb4baaf49201be6c39ee1816e120": { - "address": "0xb9edbe853ddccb4baaf49201be6c39ee1816e120", - "symbol": "RDDT", - "decimals": 18, - "name": "Reddit", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xb9edbe853ddccb4baaf49201be6c39ee1816e120.png", - "aggregators": ["CoinMarketCap", "Rubic", "Rango"], - "occurrences": 3 - }, - "0xd488321ef57ab16b4f334558b1fc4e0213c82db1": { - "address": "0xd488321ef57ab16b4f334558b1fc4e0213c82db1", - "symbol": "WCT", - "decimals": 18, - "name": "WCTrades", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xd488321ef57ab16b4f334558b1fc4e0213c82db1.png", - "aggregators": ["CoinMarketCap", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x9caae40dcf950afea443119e51e821d6fe2437ca": { - "address": "0x9caae40dcf950afea443119e51e821d6fe2437ca", - "symbol": "BJ", - "decimals": 18, - "name": "Blocjerk", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x9caae40dcf950afea443119e51e821d6fe2437ca.png", - "aggregators": ["CoinMarketCap", "LiFi", "Rubic"], - "occurrences": 3 - }, - "0xb418ded94300913fccbef784a49150f46f0fb827": { - "address": "0xb418ded94300913fccbef784a49150f46f0fb827", - "symbol": "BULL", - "decimals": 18, - "name": "TERRIER", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xb418ded94300913fccbef784a49150f46f0fb827.png", - "aggregators": ["CoinMarketCap", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x405154cfaf5ea4ef57b65b86959c73dd079fa312": { - "address": "0x405154cfaf5ea4ef57b65b86959c73dd079fa312", - "symbol": "ALICE", - "decimals": 18, - "name": "Alice AI", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x405154cfaf5ea4ef57b65b86959c73dd079fa312.png", - "aggregators": ["CoinMarketCap", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x55ff0f50f639e7acfe06694e6d018bd7678e6da9": { - "address": "0x55ff0f50f639e7acfe06694e6d018bd7678e6da9", - "symbol": "MNS", - "decimals": 9, - "name": "MINESHIELD", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x55ff0f50f639e7acfe06694e6d018bd7678e6da9.png", - "aggregators": ["CoinMarketCap", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x13f7b4581df403542286563c2f762077b2a368da": { - "address": "0x13f7b4581df403542286563c2f762077b2a368da", - "symbol": "CLOAK", - "decimals": 18, - "name": "Cloak", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x13f7b4581df403542286563c2f762077b2a368da.png", - "aggregators": ["CoinMarketCap", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x8f43ee50942e96d84052253ab13f59c1d942fb98": { - "address": "0x8f43ee50942e96d84052253ab13f59c1d942fb98", - "symbol": "PARA", - "decimals": 9, - "name": "Paragon Network", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x8f43ee50942e96d84052253ab13f59c1d942fb98.png", - "aggregators": ["CoinMarketCap", "Rubic", "Rango"], - "occurrences": 3 - }, - "0xda63feff6e6d75cd7a862cd56c625045dcf26e88": { - "address": "0xda63feff6e6d75cd7a862cd56c625045dcf26e88", - "symbol": "CMINER", - "decimals": 9, - "name": "ChainMiner", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xda63feff6e6d75cd7a862cd56c625045dcf26e88.png", - "aggregators": ["CoinMarketCap", "Rubic", "Rango"], - "occurrences": 3 - }, - "0xced6a1b885ee79899422d3a2f61fa9c77282c573": { - "address": "0xced6a1b885ee79899422d3a2f61fa9c77282c573", - "symbol": "$CODEG", - "decimals": 18, - "name": "CodeGenie", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xced6a1b885ee79899422d3a2f61fa9c77282c573.png", - "aggregators": ["CoinMarketCap", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x71b3a0566f4bf80331d115d8026a7022bf670cce": { - "address": "0x71b3a0566f4bf80331d115d8026a7022bf670cce", - "symbol": "DD", - "decimals": 6, - "name": "Diment Dollar", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x71b3a0566f4bf80331d115d8026a7022bf670cce.png", - "aggregators": ["CoinMarketCap", "Rubic", "Rango"], - "occurrences": 3 - }, - "0xee372d2b7e7c83de7e345267b5e4efc1899a4fab": { - "address": "0xee372d2b7e7c83de7e345267b5e4efc1899a4fab", - "symbol": "XTRACK", - "decimals": 18, - "name": "Xtrack AI", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xee372d2b7e7c83de7e345267b5e4efc1899a4fab.png", - "aggregators": ["CoinMarketCap", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x134359b7c852c82e4ebdd16a61020e6b81dd6a6b": { - "address": "0x134359b7c852c82e4ebdd16a61020e6b81dd6a6b", - "symbol": "BETZ", - "decimals": 18, - "name": "Bet Lounge", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x134359b7c852c82e4ebdd16a61020e6b81dd6a6b.png", - "aggregators": ["CoinMarketCap", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x781fbc4c6edf7a37dcc08a3b323f122e8a09eac5": { - "address": "0x781fbc4c6edf7a37dcc08a3b323f122e8a09eac5", - "symbol": "OAT", - "decimals": 18, - "name": "OAT Network", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x781fbc4c6edf7a37dcc08a3b323f122e8a09eac5.png", - "aggregators": ["CoinMarketCap", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x8dba4bc68126bd186fbb62c976539d1558c9fe73": { - "address": "0x8dba4bc68126bd186fbb62c976539d1558c9fe73", - "symbol": "PEPEBOMB", - "decimals": 18, - "name": "pepe", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x8dba4bc68126bd186fbb62c976539d1558c9fe73.png", - "aggregators": ["CoinMarketCap", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x34b64fd41675520bf5098bbcc37c679ca55fb5df": { - "address": "0x34b64fd41675520bf5098bbcc37c679ca55fb5df", - "symbol": "HYPERAI", - "decimals": 9, - "name": "HyperHash AI", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x34b64fd41675520bf5098bbcc37c679ca55fb5df.png", - "aggregators": ["CoinMarketCap", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x5ea49ff332b7ad99c486347c1c2bcc73d1e22b9b": { - "address": "0x5ea49ff332b7ad99c486347c1c2bcc73d1e22b9b", - "symbol": "SAI", - "decimals": 18, - "name": "SyntheticAI", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x5ea49ff332b7ad99c486347c1c2bcc73d1e22b9b.png", - "aggregators": ["CoinMarketCap", "Rubic", "Rango"], - "occurrences": 3 - }, - "0xf3d74182247ef963e0de37e3f2e174e98dcbfae1": { - "address": "0xf3d74182247ef963e0de37e3f2e174e98dcbfae1", - "symbol": "$VOIP", - "decimals": 18, - "name": "VoIP Finance", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xf3d74182247ef963e0de37e3f2e174e98dcbfae1.png", - "aggregators": ["CoinMarketCap", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x663962c0d2b624776d6fd1bf6ba41236761e76a9": { - "address": "0x663962c0d2b624776d6fd1bf6ba41236761e76a9", - "symbol": "IVEX", - "decimals": 21, - "name": "IVEX Financial", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x663962c0d2b624776d6fd1bf6ba41236761e76a9.png", - "aggregators": ["CoinMarketCap", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x7c851d60b26a4f2a6f2c628ef3b65ed282c54e52": { - "address": "0x7c851d60b26a4f2a6f2c628ef3b65ed282c54e52", - "symbol": "RESCUE", - "decimals": 18, - "name": "Rescue", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x7c851d60b26a4f2a6f2c628ef3b65ed282c54e52.png", - "aggregators": ["CoinMarketCap", "Rubic", "Rango"], - "occurrences": 3 - }, - "0xb8176a66c0d0a84cfd4e403c89cf3416b1e798ad": { - "address": "0xb8176a66c0d0a84cfd4e403c89cf3416b1e798ad", - "symbol": "BITBEDR", - "decimals": 18, - "name": "BITBEDR", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xb8176a66c0d0a84cfd4e403c89cf3416b1e798ad.png", - "aggregators": ["CoinMarketCap", "Rubic", "Sonarwatch"], - "occurrences": 3 - }, - "0x300e0d87f8c95d90cfe4b809baa3a6c90e83b850": { - "address": "0x300e0d87f8c95d90cfe4b809baa3a6c90e83b850", - "symbol": "BTC", - "decimals": 9, - "name": "Boost Trump Campaign", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x300e0d87f8c95d90cfe4b809baa3a6c90e83b850.png", - "aggregators": ["CoinMarketCap", "Socket", "Rubic"], - "occurrences": 3 - }, - "0xa2ce8366603f3fffc460bef0fb90e980c9337967": { - "address": "0xa2ce8366603f3fffc460bef0fb90e980c9337967", - "symbol": "BOOST", - "decimals": 18, - "name": "Boost AI", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xa2ce8366603f3fffc460bef0fb90e980c9337967.png", - "aggregators": ["CoinMarketCap", "Rubic", "Rango"], - "occurrences": 3 - }, - "0xf792851286fc963535fa9894573b83845bd4c1c2": { - "address": "0xf792851286fc963535fa9894573b83845bd4c1c2", - "symbol": "$SIA", - "decimals": 18, - "name": "SIA AI", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xf792851286fc963535fa9894573b83845bd4c1c2.png", - "aggregators": ["CoinMarketCap", "Rubic", "Rango"], - "occurrences": 3 - }, - "0xac6db8954b73ebf10e84278ac8b9b22a781615d9": { - "address": "0xac6db8954b73ebf10e84278ac8b9b22a781615d9", - "symbol": "BWB", - "decimals": 18, - "name": "Bitget Wallet Token", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xac6db8954b73ebf10e84278ac8b9b22a781615d9.png", - "aggregators": ["CoinMarketCap", "Rubic", "Rango"], - "occurrences": 3 - }, - "0xbfae33128ecf041856378b57adf0449181fffde7": { - "address": "0xbfae33128ecf041856378b57adf0449181fffde7", - "symbol": "WIF", - "decimals": 9, - "name": "Wif on ETH", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xbfae33128ecf041856378b57adf0449181fffde7.png", - "aggregators": ["CoinMarketCap", "Socket", "Rubic"], - "occurrences": 3 - }, - "0x22c5ff2999bd728eaa91f8a25e9515adec2ee20a": { - "address": "0x22c5ff2999bd728eaa91f8a25e9515adec2ee20a", - "symbol": "NAT", - "decimals": 18, - "name": "NatCoin", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x22c5ff2999bd728eaa91f8a25e9515adec2ee20a.png", - "aggregators": ["CoinMarketCap", "Rubic", "Rango"], - "occurrences": 3 - }, - "0xb91d822dfef943165f368d92c16bac9bd5ec6842": { - "address": "0xb91d822dfef943165f368d92c16bac9bd5ec6842", - "symbol": "ZKX", - "decimals": 18, - "name": "ZKX", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xb91d822dfef943165f368d92c16bac9bd5ec6842.png", - "aggregators": ["CoinMarketCap", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x12996c7b23c4012149bf9f5663ff9aa08a9cf2e4": { - "address": "0x12996c7b23c4012149bf9f5663ff9aa08a9cf2e4", - "symbol": "WSH", - "decimals": 18, - "name": "White Yorkshire", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x12996c7b23c4012149bf9f5663ff9aa08a9cf2e4.png", - "aggregators": ["CoinMarketCap", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x7e744bbb1a49a44dfcc795014a4ba618e418fbbe": { - "address": "0x7e744bbb1a49a44dfcc795014a4ba618e418fbbe", - "symbol": "MAGANOMICS", - "decimals": 9, - "name": "Maganomics", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x7e744bbb1a49a44dfcc795014a4ba618e418fbbe.png", - "aggregators": ["CoinMarketCap", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x3590801ecfdf8c2f5e7a4fd171c2e3af964f8b0d": { - "address": "0x3590801ecfdf8c2f5e7a4fd171c2e3af964f8b0d", - "symbol": "DGTA", - "decimals": 8, - "name": "Digitra.com", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x3590801ecfdf8c2f5e7a4fd171c2e3af964f8b0d.png", - "aggregators": ["CoinMarketCap", "LiFi", "Rubic"], - "occurrences": 3 - }, - "0x15f9eb4b9beafa9db35341c5694c0b6573809808": { - "address": "0x15f9eb4b9beafa9db35341c5694c0b6573809808", - "symbol": "DEDA", - "decimals": 8, - "name": "DedaCoin", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x15f9eb4b9beafa9db35341c5694c0b6573809808.png", - "aggregators": ["CoinMarketCap", "Rubic", "Sonarwatch"], - "occurrences": 3 - }, - "0xe54613083f60bbabde389320074953053562c685": { - "address": "0xe54613083f60bbabde389320074953053562c685", - "symbol": "META", - "decimals": 18, - "name": "Metaverse convergence", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xe54613083f60bbabde389320074953053562c685.png", - "aggregators": ["CoinMarketCap", "LiFi", "Rubic"], - "occurrences": 3 - }, - "0x128f3e482f5bd5f08fe1b216e60ec0a6013deab9": { - "address": "0x128f3e482f5bd5f08fe1b216e60ec0a6013deab9", - "symbol": "DARAM", - "decimals": 12, - "name": "DARAM AI", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x128f3e482f5bd5f08fe1b216e60ec0a6013deab9.png", - "aggregators": ["CoinMarketCap", "Socket", "Rubic"], - "occurrences": 3 - }, - "0x556c3cbdca77a7f21afe15b17e644e0e98e64df4": { - "address": "0x556c3cbdca77a7f21afe15b17e644e0e98e64df4", - "symbol": "MAO", - "decimals": 18, - "name": "Mao", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x556c3cbdca77a7f21afe15b17e644e0e98e64df4.png", - "aggregators": ["CoinMarketCap", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x810296898a4f870619b015c0b13c8c6e65b305e3": { - "address": "0x810296898a4f870619b015c0b13c8c6e65b305e3", - "symbol": "NGTG", - "decimals": 2, - "name": "Nugget Trap Gold Token", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x810296898a4f870619b015c0b13c8c6e65b305e3.png", - "aggregators": ["CoinMarketCap", "Rubic", "Sonarwatch"], - "occurrences": 3 - }, - "0x25d29fa7cf5cd5a11102b793f1a0149546e026e4": { - "address": "0x25d29fa7cf5cd5a11102b793f1a0149546e026e4", - "symbol": "ZON", - "decimals": 18, - "name": "ZON ", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x25d29fa7cf5cd5a11102b793f1a0149546e026e4.png", - "aggregators": ["CoinMarketCap", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x9c94e82d8751f16953f9c86e13ed9cd0414e6e97": { - "address": "0x9c94e82d8751f16953f9c86e13ed9cd0414e6e97", - "symbol": "VOLS", - "decimals": 18, - "name": "Volaris Games", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x9c94e82d8751f16953f9c86e13ed9cd0414e6e97.png", - "aggregators": ["CoinMarketCap", "Rubic", "Squid"], - "occurrences": 3 - }, - "0xd0f3c49297a85c81bfe98bc0bdc966964c0e7173": { - "address": "0xd0f3c49297a85c81bfe98bc0bdc966964c0e7173", - "symbol": "VMC", - "decimals": 18, - "name": "VMS Classic", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xd0f3c49297a85c81bfe98bc0bdc966964c0e7173.png", - "aggregators": ["CoinMarketCap", "Rubic", "Sonarwatch"], - "occurrences": 3 - }, - "0x68614481aef06e53d23bbe0772343fb555ac40c8": { - "address": "0x68614481aef06e53d23bbe0772343fb555ac40c8", - "symbol": "PLMS", - "decimals": 18, - "name": "Polemos", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x68614481aef06e53d23bbe0772343fb555ac40c8.png", - "aggregators": ["CoinMarketCap", "Socket", "Rubic"], - "occurrences": 3 - }, - "0xa3b71add41c9e4e1034fe665f946baebfe9c07c4": { - "address": "0xa3b71add41c9e4e1034fe665f946baebfe9c07c4", - "symbol": "LEGAL", - "decimals": 18, - "name": "LEGAL", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xa3b71add41c9e4e1034fe665f946baebfe9c07c4.png", - "aggregators": ["CoinMarketCap", "Rubic", "Sonarwatch"], - "occurrences": 3 - }, - "0x9b784f7fd6c888463666eb2c05aa6e61628e06b2": { - "address": "0x9b784f7fd6c888463666eb2c05aa6e61628e06b2", - "symbol": "BFTOKEN", - "decimals": 18, - "name": "BOSS FIGHTERS Token", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x9b784f7fd6c888463666eb2c05aa6e61628e06b2.png", - "aggregators": ["CoinMarketCap", "Rubic", "Sonarwatch"], - "occurrences": 3 - }, - "0xb7d29ec03d87dcd5d6f6ea39a855d5566e6c8f36": { - "address": "0xb7d29ec03d87dcd5d6f6ea39a855d5566e6c8f36", - "symbol": "GX3", - "decimals": 9, - "name": "GX3 A", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xb7d29ec03d87dcd5d6f6ea39a855d5566e6c8f36.png", - "aggregators": ["CoinMarketCap", "Rubic", "Sonarwatch"], - "occurrences": 3 - }, - "0x5ca9a71b1d01849c0a95490cc00559717fcf0d1d": { - "address": "0x5ca9a71b1d01849c0a95490cc00559717fcf0d1d", - "symbol": "AE", - "decimals": 18, - "name": "Aeternity", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x5ca9a71b1d01849c0a95490cc00559717fcf0d1d.png", - "aggregators": ["Metamask", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x71f85b2e46976bd21302b64329868fd15eb0d127": { - "address": "0x71f85b2e46976bd21302b64329868fd15eb0d127", - "symbol": "AXN", - "decimals": 18, - "name": "Axion", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x71f85b2e46976bd21302b64329868fd15eb0d127.png", - "aggregators": ["Metamask", "TrustWallet", "Rubic"], - "occurrences": 3 - }, - "0xcd1faff6e578fa5cac469d2418c95671ba1a62fe": { - "address": "0xcd1faff6e578fa5cac469d2418c95671ba1a62fe", - "symbol": "XTM", - "decimals": 18, - "name": "Torum Token", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xcd1faff6e578fa5cac469d2418c95671ba1a62fe.png", - "aggregators": ["Metamask", "LiFi", "Rubic"], - "occurrences": 3 - }, - "0x2d62109243b87c4ba3ee7ba1d91b0dd0a074d7b1": { - "address": "0x2d62109243b87c4ba3ee7ba1d91b0dd0a074d7b1", - "symbol": "AETHRSETH", - "decimals": 18, - "name": "Aave Ethereum rsETH", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x2d62109243b87c4ba3ee7ba1d91b0dd0a074d7b1.png", - "aggregators": ["1inch", "LiFi", "Rango"], - "occurrences": 3 - }, - "0x149ee12310d499f701b6a5714edad2c832008fd2": { - "address": "0x149ee12310d499f701b6a5714edad2c832008fd2", - "symbol": "STATAETHCRV", - "decimals": 18, - "name": "Static Aave Ethereum CRV", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x149ee12310d499f701b6a5714edad2c832008fd2.png", - "aggregators": ["1inch", "LiFi", "Rango"], - "occurrences": 3 - }, - "0xb07e357cc262e92eee03d8b81464d596b258ea7a": { - "address": "0xb07e357cc262e92eee03d8b81464d596b258ea7a", - "symbol": "STATAETHWBTC", - "decimals": 8, - "name": "Static Aave Ethereum WBTC", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xb07e357cc262e92eee03d8b81464d596b258ea7a.png", - "aggregators": ["1inch", "LiFi", "Rango"], - "occurrences": 3 - }, - "0xbdfa7b7893081b35fb54027489e2bc7a38275129": { - "address": "0xbdfa7b7893081b35fb54027489e2bc7a38275129", - "symbol": "AETHWEETH", - "decimals": 18, - "name": "Aave Ethereum weETH", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xbdfa7b7893081b35fb54027489e2bc7a38275129.png", - "aggregators": ["1inch", "LiFi", "Rango"], - "occurrences": 3 - }, - "0x10ac93971cdb1f5c778144084242374473c350da": { - "address": "0x10ac93971cdb1f5c778144084242374473c350da", - "symbol": "AETHTBTC", - "decimals": 18, - "name": "Aave Ethereum tBTC", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x10ac93971cdb1f5c778144084242374473c350da.png", - "aggregators": ["1inch", "LiFi", "Rango"], - "occurrences": 3 - }, - "0x5c647ce0ae10658ec44fa4e11a51c96e94efd1dd": { - "address": "0x5c647ce0ae10658ec44fa4e11a51c96e94efd1dd", - "symbol": "AETHCBBTC", - "decimals": 8, - "name": "Aave Ethereum cbBTC", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x5c647ce0ae10658ec44fa4e11a51c96e94efd1dd.png", - "aggregators": ["1inch", "LiFi", "Rango"], - "occurrences": 3 - }, - "0x65906988adee75306021c417a1a3458040239602": { - "address": "0x65906988adee75306021c417a1a3458040239602", - "symbol": "AETHLBTC", - "decimals": 8, - "name": "Aave Ethereum LBTC", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x65906988adee75306021c417a1a3458040239602.png", - "aggregators": ["1inch", "LiFi", "Rubic"], - "occurrences": 3 - }, - "0x5fefd7069a7d91d01f269dade14526ccf3487810": { - "address": "0x5fefd7069a7d91d01f269dade14526ccf3487810", - "symbol": "AETHEBTC", - "decimals": 8, - "name": "Aave Ethereum eBTC", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x5fefd7069a7d91d01f269dade14526ccf3487810.png", - "aggregators": ["1inch", "LiFi", "Rango"], - "occurrences": 3 - }, - "0x867cf025b5da438c4e215c60b59bbb3afe896fda": { - "address": "0x867cf025b5da438c4e215c60b59bbb3afe896fda", - "symbol": "STATAETHRETH", - "decimals": 18, - "name": "Static Aave Ethereum rETH", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x867cf025b5da438c4e215c60b59bbb3afe896fda.png", - "aggregators": ["1inch", "LiFi", "Rango"], - "occurrences": 3 - }, - "0xfeb859a50f92c6d5ad7c9ef7c2c060d164b3280f": { - "address": "0xfeb859a50f92c6d5ad7c9ef7c2c060d164b3280f", - "symbol": "STATAETHAAVE", - "decimals": 18, - "name": "Static Aave Ethereum AAVE", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xfeb859a50f92c6d5ad7c9ef7c2c060d164b3280f.png", - "aggregators": ["1inch", "LiFi", "Rango"], - "occurrences": 3 - }, - "0x78fb5e79d5cb59729d0cd72bea7879ad2683454d": { - "address": "0x78fb5e79d5cb59729d0cd72bea7879ad2683454d", - "symbol": "STATAETHUNI", - "decimals": 18, - "name": "Static Aave Ethereum UNI", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x78fb5e79d5cb59729d0cd72bea7879ad2683454d.png", - "aggregators": ["1inch", "LiFi", "Rango"], - "occurrences": 3 - }, - "0xaafd07d53a7365d3e9fb6f3a3b09ec19676b73ce": { - "address": "0xaafd07d53a7365d3e9fb6f3a3b09ec19676b73ce", - "symbol": "STKWAETHWETH.V1", - "decimals": 18, - "name": "Umbrella Stake Wrapped Aave Ethereum WETH v1", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xaafd07d53a7365d3e9fb6f3a3b09ec19676b73ce.png", - "aggregators": ["1inch", "LiFi", "Rango"], - "occurrences": 3 - }, - "0x32a6268f9ba3642dda7892add74f1d34469a4259": { - "address": "0x32a6268f9ba3642dda7892add74f1d34469a4259", - "symbol": "AETHUSDS", - "decimals": 18, - "name": "Aave Ethereum USDS", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x32a6268f9ba3642dda7892add74f1d34469a4259.png", - "aggregators": ["1inch", "LiFi", "Rango"], - "occurrences": 3 - }, - "0x4f5923fc5fd4a93352581b38b7cd26943012decf": { - "address": "0x4f5923fc5fd4a93352581b38b7cd26943012decf", - "symbol": "AETHUSDE", - "decimals": 18, - "name": "Aave Ethereum USDe", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x4f5923fc5fd4a93352581b38b7cd26943012decf.png", - "aggregators": ["1inch", "LiFi", "Rango"], - "occurrences": 3 - }, - "0x5f9d59db355b4a60501544637b00e94082ca575b": { - "address": "0x5f9d59db355b4a60501544637b00e94082ca575b", - "symbol": "WAETHUSDE", - "decimals": 18, - "name": "Wrapped Aave Ethereum USDe", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x5f9d59db355b4a60501544637b00e94082ca575b.png", - "aggregators": ["1inch", "LiFi", "Rango"], - "occurrences": 3 - }, - "0x46e5d6a33c8bd8ed38f3c95991c78c9b2ff3bc99": { - "address": "0x46e5d6a33c8bd8ed38f3c95991c78c9b2ff3bc99", - "symbol": "STATAETHUSDE", - "decimals": 18, - "name": "Static Aave Ethereum USDe", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x46e5d6a33c8bd8ed38f3c95991c78c9b2ff3bc99.png", - "aggregators": ["1inch", "LiFi", "Rango"], - "occurrences": 3 - }, - "0xfa82580c16a31d0c1bc632a36f82e83efef3eec0": { - "address": "0xfa82580c16a31d0c1bc632a36f82e83efef3eec0", - "symbol": "AETHRLUSD", - "decimals": 18, - "name": "Aave Ethereum RLUSD", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xfa82580c16a31d0c1bc632a36f82e83efef3eec0.png", - "aggregators": ["1inch", "LiFi", "Rango"], - "occurrences": 3 - }, - "0xb51edddd8c47856d81c8681ea71404cec93e92c6": { - "address": "0xb51edddd8c47856d81c8681ea71404cec93e92c6", - "symbol": "WAETHPYUSD", - "decimals": 6, - "name": "Wrapped Aave Ethereum PYUSD", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xb51edddd8c47856d81c8681ea71404cec93e92c6.png", - "aggregators": ["1inch", "LiFi", "Rango"], - "occurrences": 3 - }, - "0x6a1792a91c08e9f0bfe7a990871b786643237f0f": { - "address": "0x6a1792a91c08e9f0bfe7a990871b786643237f0f", - "symbol": "WAETHRLUSD", - "decimals": 18, - "name": "Wrapped Aave Ethereum RLUSD", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x6a1792a91c08e9f0bfe7a990871b786643237f0f.png", - "aggregators": ["1inch", "LiFi", "Rango"], - "occurrences": 3 - }, - "0xaecc217a749c2405b5ebc9857a16d58bdc1c367f": { - "address": "0xaecc217a749c2405b5ebc9857a16d58bdc1c367f", - "symbol": "PAWTH", - "decimals": 9, - "name": "Pawthereum", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xaecc217a749c2405b5ebc9857a16d58bdc1c367f.png", - "aggregators": ["1inch", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x2767c27eeaf3566082e74b963b6a0f5c9a46c8a1": { - "address": "0x2767c27eeaf3566082e74b963b6a0f5c9a46c8a1", - "symbol": "STATAETHENS", - "decimals": 18, - "name": "Static Aave Ethereum ENS", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x2767c27eeaf3566082e74b963b6a0f5c9a46c8a1.png", - "aggregators": ["1inch", "LiFi", "Rango"], - "occurrences": 3 - }, - "0xfa7e3571786ce9489bbc58d9cb8ece8aae6b56f3": { - "address": "0xfa7e3571786ce9489bbc58d9cb8ece8aae6b56f3", - "symbol": "STATAETHSDAI", - "decimals": 18, - "name": "Static Aave Ethereum sDAI", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xfa7e3571786ce9489bbc58d9cb8ece8aae6b56f3.png", - "aggregators": ["1inch", "LiFi", "Rango"], - "occurrences": 3 - }, - "0x1ea6e1ba21601258401d0b9db24ea0a07948458e": { - "address": "0x1ea6e1ba21601258401d0b9db24ea0a07948458e", - "symbol": "STATAETHLDO", - "decimals": 18, - "name": "Static Aave Ethereum LDO", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x1ea6e1ba21601258401d0b9db24ea0a07948458e.png", - "aggregators": ["1inch", "LiFi", "Rango"], - "occurrences": 3 - }, - "0xb490ff18e55b8881c9527fe7e358dd363780449f": { - "address": "0xb490ff18e55b8881c9527fe7e358dd363780449f", - "symbol": "STATAETH1INCH", - "decimals": 18, - "name": "Static Aave Ethereum 1INCH", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xb490ff18e55b8881c9527fe7e358dd363780449f.png", - "aggregators": ["1inch", "LiFi", "Rango"], - "occurrences": 3 - }, - "0x91ad1f5443cf356010d2171d6d26b11c309c4b16": { - "address": "0x91ad1f5443cf356010d2171d6d26b11c309c4b16", - "symbol": "WAETHRPL", - "decimals": 18, - "name": "Wrapped Aave Ethereum RPL", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x91ad1f5443cf356010d2171d6d26b11c309c4b16.png", - "aggregators": ["1inch", "LiFi", "Rango"], - "occurrences": 3 - }, - "0x867b0cdc4b39a19945e616c29639b0390b39db3b": { - "address": "0x867b0cdc4b39a19945e616c29639b0390b39db3b", - "symbol": "STATAETHWEETH", - "decimals": 18, - "name": "Static Aave Ethereum weETH", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x867b0cdc4b39a19945e616c29639b0390b39db3b.png", - "aggregators": ["1inch", "LiFi", "Rango"], - "occurrences": 3 - }, - "0x5caf5a86f39073637ac7c8a7b5290871de80cb9b": { - "address": "0x5caf5a86f39073637ac7c8a7b5290871de80cb9b", - "symbol": "WAETHDAI", - "decimals": 18, - "name": "Wrapped Aave Ethereum DAI", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x5caf5a86f39073637ac7c8a7b5290871de80cb9b.png", - "aggregators": ["1inch", "LiFi", "Rango"], - "occurrences": 3 - }, - "0xbb9bc244d798123fde783fcc1c72d3bb8c189413": { - "address": "0xbb9bc244d798123fde783fcc1c72d3bb8c189413", - "symbol": "THEDAO", - "decimals": 16, - "name": "\u0001", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xbb9bc244d798123fde783fcc1c72d3bb8c189413.png", - "aggregators": ["LiFi", "Socket", "Rango"], - "occurrences": 3 - }, - "0xe0cca86b254005889ac3a81e737f56a14f4a38f5": { - "address": "0xe0cca86b254005889ac3a81e737f56a14f4a38f5", - "symbol": "ALTA", - "decimals": 18, - "name": "Alta Finance", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xe0cca86b254005889ac3a81e737f56a14f4a38f5.png", - "aggregators": ["LiFi", "Rubic", "Bancor"], - "occurrences": 3 - }, - "0xb6c6920327b33f8eec26786c7462c5f4098d47e3": { - "address": "0xb6c6920327b33f8eec26786c7462c5f4098d47e3", - "symbol": "MINTY", - "decimals": 18, - "name": "Minty Art", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xb6c6920327b33f8eec26786c7462c5f4098d47e3.png", - "aggregators": ["LiFi", "Socket", "Rubic"], - "occurrences": 3 - }, - "0xdeeb6091a5adc78fa0332bee5a38a8908b6b566e": { - "address": "0xdeeb6091a5adc78fa0332bee5a38a8908b6b566e", - "symbol": "TAC", - "decimals": 18, - "name": "Taekwondo Access Credit", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xdeeb6091a5adc78fa0332bee5a38a8908b6b566e.png", - "aggregators": ["LiFi", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x6fcb6408499a7c0f242e32d77eb51ffa1dd28a7e": { - "address": "0x6fcb6408499a7c0f242e32d77eb51ffa1dd28a7e", - "symbol": "XHDX", - "decimals": 12, - "name": "xHDX", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x6fcb6408499a7c0f242e32d77eb51ffa1dd28a7e.png", - "aggregators": ["LiFi", "Socket", "Rubic"], - "occurrences": 3 - }, - "0x9b85babc0cc89899ccd47e9226a0b1fae577b19e": { - "address": "0x9b85babc0cc89899ccd47e9226a0b1fae577b19e", - "symbol": "PPB", - "decimals": 18, - "name": "PPB", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x9b85babc0cc89899ccd47e9226a0b1fae577b19e.png", - "aggregators": ["LiFi", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x3883f5e181fccaf8410fa61e12b59bad963fb645": { - "address": "0x3883f5e181fccaf8410fa61e12b59bad963fb645", - "symbol": "THETA", - "decimals": 18, - "name": "Theta Token", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x3883f5e181fccaf8410fa61e12b59bad963fb645.png", - "aggregators": ["LiFi", "Socket", "Rubic"], - "occurrences": 3 - }, - "0x4f81c790581b240a5c948afd173620ecc8c71c8d": { - "address": "0x4f81c790581b240a5c948afd173620ecc8c71c8d", - "symbol": "XDG", - "decimals": 18, - "name": "Decentral Games Governance", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x4f81c790581b240a5c948afd173620ecc8c71c8d.png", - "aggregators": ["LiFi", "Socket", "Rubic"], - "occurrences": 3 - }, - "0xbcd515d6c5de70d3a31d999a7fa6a299657de294": { - "address": "0xbcd515d6c5de70d3a31d999a7fa6a299657de294", - "symbol": "RICE", - "decimals": 18, - "name": "RICE", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xbcd515d6c5de70d3a31d999a7fa6a299657de294.png", - "aggregators": ["LiFi", "Rubic", "Rango"], - "occurrences": 3 - }, - "0xfb0bdc444c8ae7e9b5beea5e4d1e8de93879e487": { - "address": "0xfb0bdc444c8ae7e9b5beea5e4d1e8de93879e487", - "symbol": "SPRING", - "decimals": 18, - "name": "SPRING Token", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xfb0bdc444c8ae7e9b5beea5e4d1e8de93879e487.png", - "aggregators": ["LiFi", "Socket", "Rubic"], - "occurrences": 3 - }, - "0x3642c0680329ae3e103e2b5ab29ddfed4d43cbe5": { - "address": "0x3642c0680329ae3e103e2b5ab29ddfed4d43cbe5", - "symbol": "PL2", - "decimals": 18, - "name": "Plenny", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x3642c0680329ae3e103e2b5ab29ddfed4d43cbe5.png", - "aggregators": ["LiFi", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x7bec98609cb6378d6f995e8f8097ee78376fbec9": { - "address": "0x7bec98609cb6378d6f995e8f8097ee78376fbec9", - "symbol": "LM", - "decimals": 18, - "name": "LeisureMeta", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x7bec98609cb6378d6f995e8f8097ee78376fbec9.png", - "aggregators": ["LiFi", "Socket", "Rubic"], - "occurrences": 3 - }, - "0x7a4effd87c2f3c55ca251080b1343b605f327e3a": { - "address": "0x7a4effd87c2f3c55ca251080b1343b605f327e3a", - "symbol": "RSTETH", - "decimals": 18, - "name": "RSTETH", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x7a4effd87c2f3c55ca251080b1343b605f327e3a.png", - "aggregators": ["LiFi", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x6ef3d766dfe02dc4bf04aae9122eb9a0ded25615": { - "address": "0x6ef3d766dfe02dc4bf04aae9122eb9a0ded25615", - "symbol": "PRIMEETH", - "decimals": 18, - "name": "Prime Staked ETH", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x6ef3d766dfe02dc4bf04aae9122eb9a0ded25615.png", - "aggregators": ["LiFi", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x6619078bdd8324e01e9a8d4b3d761b050e5ecf06": { - "address": "0x6619078bdd8324e01e9a8d4b3d761b050e5ecf06", - "symbol": "MAL", - "decimals": 18, - "name": "My Alpha Leaderboard", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x6619078bdd8324e01e9a8d4b3d761b050e5ecf06.png", - "aggregators": ["LiFi", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x7d647b1a0dcd5525e9c6b3d14be58f27674f8c95": { - "address": "0x7d647b1a0dcd5525e9c6b3d14be58f27674f8c95", - "symbol": "BYTES", - "decimals": 18, - "name": "BYTES", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x7d647b1a0dcd5525e9c6b3d14be58f27674f8c95.png", - "aggregators": ["LiFi", "Socket", "Rubic"], - "occurrences": 3 - }, - "0x605d26fbd5be761089281d5cec2ce86eea667109": { - "address": "0x605d26fbd5be761089281d5cec2ce86eea667109", - "symbol": "DSU", - "decimals": 18, - "name": "Digital Standard Unit", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x605d26fbd5be761089281d5cec2ce86eea667109.png", - "aggregators": ["LiFi", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x4c327471c44b2dacd6e90525f9d629bd2e4f662c": { - "address": "0x4c327471c44b2dacd6e90525f9d629bd2e4f662c", - "symbol": "GHOST", - "decimals": 18, - "name": "GHOST", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x4c327471c44b2dacd6e90525f9d629bd2e4f662c.png", - "aggregators": ["LiFi", "Rubic", "Rango"], - "occurrences": 3 - }, - "0xd6929179d752d5d25c5efe2d9729eb77d7138a80": { - "address": "0xd6929179d752d5d25c5efe2d9729eb77d7138a80", - "symbol": "GOB", - "decimals": 18, - "name": "Goons of Balatroon", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xd6929179d752d5d25c5efe2d9729eb77d7138a80.png", - "aggregators": ["LiFi", "Socket", "Rubic"], - "occurrences": 3 - }, - "0xa8006c4ca56f24d6836727d106349320db7fef82": { - "address": "0xa8006c4ca56f24d6836727d106349320db7fef82", - "symbol": "INXT", - "decimals": 8, - "name": "Internxt", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xa8006c4ca56f24d6836727d106349320db7fef82.png", - "aggregators": ["LiFi", "Socket", "Rubic"], - "occurrences": 3 - }, - "0x7778360f035c589fce2f4ea5786cbd8b36e5396b": { - "address": "0x7778360f035c589fce2f4ea5786cbd8b36e5396b", - "symbol": "OOE", - "decimals": 18, - "name": "OpenOcean", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x7778360f035c589fce2f4ea5786cbd8b36e5396b.png", - "aggregators": ["LiFi", "Socket", "Rubic"], - "occurrences": 3 - }, - "0xf8a4a419c2d7140e49ef952a7e7ae1bd4a8b6b9c": { - "address": "0xf8a4a419c2d7140e49ef952a7e7ae1bd4a8b6b9c", - "symbol": "LITH", - "decimals": 18, - "name": "Lith Token", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xf8a4a419c2d7140e49ef952a7e7ae1bd4a8b6b9c.png", - "aggregators": ["LiFi", "Socket", "Rubic"], - "occurrences": 3 - }, - "0xb89903dde3899f0280b99913168ee833a7896b93": { - "address": "0xb89903dde3899f0280b99913168ee833a7896b93", - "symbol": "AWS", - "decimals": 18, - "name": "AurusSILVER", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xb89903dde3899f0280b99913168ee833a7896b93.png", - "aggregators": ["LiFi", "Socket", "Rubic"], - "occurrences": 3 - }, - "0xa0b93b9e90ab887e53f9fb8728c009746e989b53": { - "address": "0xa0b93b9e90ab887e53f9fb8728c009746e989b53", - "symbol": "TST", - "decimals": 18, - "name": "Standard Token", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xa0b93b9e90ab887e53f9fb8728c009746e989b53.png", - "aggregators": ["LiFi", "Socket", "Rubic"], - "occurrences": 3 - }, - "0xc86d054809623432210c107af2e3f619dcfbf652": { - "address": "0xc86d054809623432210c107af2e3f619dcfbf652", - "symbol": "UPP", - "decimals": 18, - "name": "SENTINEL PROTOCOL", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xc86d054809623432210c107af2e3f619dcfbf652.png", - "aggregators": ["LiFi", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x0000a1c00009a619684135b824ba02f7fbf3a572": { - "address": "0x0000a1c00009a619684135b824ba02f7fbf3a572", - "symbol": "ALCH", - "decimals": 18, - "name": "Alchemy", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x0000a1c00009a619684135b824ba02f7fbf3a572.png", - "aggregators": ["LiFi", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x7ff4169a6b5122b664c51c95727d87750ec07c84": { - "address": "0x7ff4169a6b5122b664c51c95727d87750ec07c84", - "symbol": "10SET", - "decimals": 18, - "name": "Tenset", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x7ff4169a6b5122b664c51c95727d87750ec07c84.png", - "aggregators": ["LiFi", "TrustWallet", "Rubic"], - "occurrences": 3 - }, - "0x420412e765bfa6d85aaac94b4f7b708c89be2e2b": { - "address": "0x420412e765bfa6d85aaac94b4f7b708c89be2e2b", - "symbol": "BRZ", - "decimals": 4, - "name": "BRZ", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x420412e765bfa6d85aaac94b4f7b708c89be2e2b.png", - "aggregators": ["LiFi", "Socket", "Rubic"], - "occurrences": 3 - }, - "0x08a75dbc7167714ceac1a8e43a8d643a4edd625a": { - "address": "0x08a75dbc7167714ceac1a8e43a8d643a4edd625a", - "symbol": "WILD", - "decimals": 18, - "name": "Wild Credit", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x08a75dbc7167714ceac1a8e43a8d643a4edd625a.png", - "aggregators": ["LiFi", "Socket", "Rubic"], - "occurrences": 3 - }, - "0x4a6ab9792e9f046c3ab22d8602450de5186be9a7": { - "address": "0x4a6ab9792e9f046c3ab22d8602450de5186be9a7", - "symbol": "POLVEN", - "decimals": 18, - "name": "POLVEN", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x4a6ab9792e9f046c3ab22d8602450de5186be9a7.png", - "aggregators": ["LiFi", "Socket", "Rubic"], - "occurrences": 3 - }, - "0xeea9ae787f3a620072d13b2cdc8cabffb9c0ab96": { - "address": "0xeea9ae787f3a620072d13b2cdc8cabffb9c0ab96", - "symbol": "YSEC", - "decimals": 18, - "name": "YearnSecure", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xeea9ae787f3a620072d13b2cdc8cabffb9c0ab96.png", - "aggregators": ["LiFi", "Rubic", "Rango"], - "occurrences": 3 - }, - "0xe4815ae53b124e7263f08dcdbbb757d41ed658c6": { - "address": "0xe4815ae53b124e7263f08dcdbbb757d41ed658c6", - "symbol": "ZKS", - "decimals": 18, - "name": "Zks", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xe4815ae53b124e7263f08dcdbbb757d41ed658c6.png", - "aggregators": ["LiFi", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x4efe8665e564bf454ccf5c90ee16817f7485d5cf": { - "address": "0x4efe8665e564bf454ccf5c90ee16817f7485d5cf", - "symbol": "BDT", - "decimals": 18, - "name": "BlackDragon Token", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x4efe8665e564bf454ccf5c90ee16817f7485d5cf.png", - "aggregators": ["LiFi", "Socket", "Rubic"], - "occurrences": 3 - }, - "0x4e568ab95f029e8df1e39b30c9d6d076eaa15945": { - "address": "0x4e568ab95f029e8df1e39b30c9d6d076eaa15945", - "symbol": "FLY", - "decimals": 18, - "name": "FlyCoin", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x4e568ab95f029e8df1e39b30c9d6d076eaa15945.png", - "aggregators": ["LiFi", "Socket", "Rubic"], - "occurrences": 3 - }, - "0x780116d91e5592e58a3b3c76a351571b39abcec6": { - "address": "0x780116d91e5592e58a3b3c76a351571b39abcec6", - "symbol": "BOXX", - "decimals": 15, - "name": "BOXX", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x780116d91e5592e58a3b3c76a351571b39abcec6.png", - "aggregators": ["LiFi", "Rubic", "Rango"], - "occurrences": 3 - }, - "0xc27a2f05fa577a83ba0fdb4c38443c0718356501": { - "address": "0xc27a2f05fa577a83ba0fdb4c38443c0718356501", - "symbol": "TAU", - "decimals": 18, - "name": "TAU", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xc27a2f05fa577a83ba0fdb4c38443c0718356501.png", - "aggregators": ["LiFi", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x06147110022b768ba8f99a8f385df11a151a9cc8": { - "address": "0x06147110022b768ba8f99a8f385df11a151a9cc8", - "symbol": "ACE", - "decimals": 0, - "name": "ACE", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x06147110022b768ba8f99a8f385df11a151a9cc8.png", - "aggregators": ["LiFi", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x068e3563b1c19590f822c0e13445c4fa1b9eefa5": { - "address": "0x068e3563b1c19590f822c0e13445c4fa1b9eefa5", - "symbol": "WUSD", - "decimals": 18, - "name": "Wrapped USD", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x068e3563b1c19590f822c0e13445c4fa1b9eefa5.png", - "aggregators": ["LiFi", "Rubic", "Rango"], - "occurrences": 3 - }, - "0xcbba83a4d3f35d294a26012ac54e9ab6627da018": { - "address": "0xcbba83a4d3f35d294a26012ac54e9ab6627da018", - "symbol": "ROAR", - "decimals": 18, - "name": "Roar Token", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xcbba83a4d3f35d294a26012ac54e9ab6627da018.png", - "aggregators": ["LiFi", "Socket", "Rubic"], - "occurrences": 3 - }, - "0x35ec69a77b79c255e5d47d5a3bdbefefe342630c": { - "address": "0x35ec69a77b79c255e5d47d5a3bdbefefe342630c", - "symbol": "YNLSDE", - "decimals": 18, - "name": "YieldNest Restaked LSD Eigenlayer", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x35ec69a77b79c255e5d47d5a3bdbefefe342630c.png", - "aggregators": ["LiFi", "Rubic", "Sonarwatch"], - "occurrences": 3 - }, - "0x3258cd8134b6b28e814772dd91d5ecceea512818": { - "address": "0x3258cd8134b6b28e814772dd91d5ecceea512818", - "symbol": "LAND", - "decimals": 18, - "name": "Land", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x3258cd8134b6b28e814772dd91d5ecceea512818.png", - "aggregators": ["LiFi", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x2369686fc9fb6e1fdc46541891568c2f341906ef": { - "address": "0x2369686fc9fb6e1fdc46541891568c2f341906ef", - "symbol": "DRK", - "decimals": 18, - "name": "Drakoin", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x2369686fc9fb6e1fdc46541891568c2f341906ef.png", - "aggregators": ["LiFi", "Socket", "Rubic"], - "occurrences": 3 - }, - "0x92ef4ffbfe0df030837b65d7fccfe1abd6549579": { - "address": "0x92ef4ffbfe0df030837b65d7fccfe1abd6549579", - "symbol": "SWG", - "decimals": 18, - "name": "SWG", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x92ef4ffbfe0df030837b65d7fccfe1abd6549579.png", - "aggregators": ["LiFi", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x6807d7f7df53b7739f6438eabd40ab8c262c0aa8": { - "address": "0x6807d7f7df53b7739f6438eabd40ab8c262c0aa8", - "symbol": "FORCE", - "decimals": 18, - "name": "FORCE", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x6807d7f7df53b7739f6438eabd40ab8c262c0aa8.png", - "aggregators": ["LiFi", "Socket", "Rubic"], - "occurrences": 3 - }, - "0xd41f3d112cb8695c7a8992e4055bd273f3ce8729": { - "address": "0xd41f3d112cb8695c7a8992e4055bd273f3ce8729", - "symbol": "SYNTH", - "decimals": 18, - "name": "Synth", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xd41f3d112cb8695c7a8992e4055bd273f3ce8729.png", - "aggregators": ["LiFi", "Socket", "Rango"], - "occurrences": 3 - }, - "0x1c79ab32c66acaa1e9e81952b8aaa581b43e54e7": { - "address": "0x1c79ab32c66acaa1e9e81952b8aaa581b43e54e7", - "symbol": "TEAM", - "decimals": 4, - "name": "TEAM", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x1c79ab32c66acaa1e9e81952b8aaa581b43e54e7.png", - "aggregators": ["LiFi", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x84cffa78b2fbbeec8c37391d2b12a04d2030845e": { - "address": "0x84cffa78b2fbbeec8c37391d2b12a04d2030845e", - "symbol": "DEFIT", - "decimals": 18, - "name": "DIGITAL FITNESS", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x84cffa78b2fbbeec8c37391d2b12a04d2030845e.png", - "aggregators": ["LiFi", "Rubic", "Bancor"], - "occurrences": 3 - }, - "0x46b2deae6eff3011008ea27ea36b7c27255ddfa9": { - "address": "0x46b2deae6eff3011008ea27ea36b7c27255ddfa9", - "symbol": "WETHDYDX", - "decimals": 18, - "name": "dYdX", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x46b2deae6eff3011008ea27ea36b7c27255ddfa9.png", - "aggregators": ["LiFi", "Rubic", "Rango"], - "occurrences": 3 - }, - "0xc8d9871a79551ab4439c9e08f12962e3785f0437": { - "address": "0xc8d9871a79551ab4439c9e08f12962e3785f0437", - "symbol": "COC", - "decimals": 18, - "name": "CryptoOracle Collective", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xc8d9871a79551ab4439c9e08f12962e3785f0437.png", - "aggregators": ["LiFi", "Socket", "Rango"], - "occurrences": 3 - }, - "0x0bfec35a1a3550deed3f6fc76dde7fc412729a91": { - "address": "0x0bfec35a1a3550deed3f6fc76dde7fc412729a91", - "symbol": "XKNCA", - "decimals": 18, - "name": "xKNC", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x0bfec35a1a3550deed3f6fc76dde7fc412729a91.png", - "aggregators": ["LiFi", "Rubic", "Rango"], - "occurrences": 3 - }, - "0xe3cb486f3f5c639e98ccbaf57d95369375687f80": { - "address": "0xe3cb486f3f5c639e98ccbaf57d95369375687f80", - "symbol": "RENDGB", - "decimals": 8, - "name": "renDGB", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xe3cb486f3f5c639e98ccbaf57d95369375687f80.png", - "aggregators": ["LiFi", "Rango", "SushiSwap"], - "occurrences": 3 - }, - "0x87761e886399ef8e1624cb0db3230b075a322c88": { - "address": "0x87761e886399ef8e1624cb0db3230b075a322c88", - "symbol": "CBK", - "decimals": 18, - "name": "Crossing the Yellow Blocks", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x87761e886399ef8e1624cb0db3230b075a322c88.png", - "aggregators": ["LiFi", "Socket", "Rubic"], - "occurrences": 3 - }, - "0xe4fa3c576c31696322e8d7165c5965d5a1f6a1a5": { - "address": "0xe4fa3c576c31696322e8d7165c5965d5a1f6a1a5", - "symbol": "GFX", - "decimals": 18, - "name": "GamyFi", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xe4fa3c576c31696322e8d7165c5965d5a1f6a1a5.png", - "aggregators": ["LiFi", "Socket", "Rubic"], - "occurrences": 3 - }, - "0x94ca37d108e89775dc8ae65f51ae28c2d9599f9a": { - "address": "0x94ca37d108e89775dc8ae65f51ae28c2d9599f9a", - "symbol": "CRTS", - "decimals": 9, - "name": "Cryptotipsfr Token V2", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x94ca37d108e89775dc8ae65f51ae28c2d9599f9a.png", - "aggregators": ["LiFi", "Socket", "Rubic"], - "occurrences": 3 - }, - "0x25377ddb16c79c93b0cbf46809c8de8765f03fcd": { - "address": "0x25377ddb16c79c93b0cbf46809c8de8765f03fcd", - "symbol": "SBREE", - "decimals": 18, - "name": "SBREE", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x25377ddb16c79c93b0cbf46809c8de8765f03fcd.png", - "aggregators": ["LiFi", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x04ab43d32d0172c76f5287b6619f0aa50af89303": { - "address": "0x04ab43d32d0172c76f5287b6619f0aa50af89303", - "symbol": "UNL", - "decimals": 18, - "name": "unilock.network", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x04ab43d32d0172c76f5287b6619f0aa50af89303.png", - "aggregators": ["LiFi", "Socket", "Rubic"], - "occurrences": 3 - }, - "0xf83ae621a52737e3ef9307af91df834ed8431ac3": { - "address": "0xf83ae621a52737e3ef9307af91df834ed8431ac3", - "symbol": "UVWFI", - "decimals": 18, - "name": "UVWFI", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xf83ae621a52737e3ef9307af91df834ed8431ac3.png", - "aggregators": ["LiFi", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x11b0a8c0fa626627601ed518c3538a39d92d609e": { - "address": "0x11b0a8c0fa626627601ed518c3538a39d92d609e", - "symbol": "YGY", - "decimals": 6, - "name": "Generation of Yield", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x11b0a8c0fa626627601ed518c3538a39d92d609e.png", - "aggregators": ["LiFi", "Socket", "Rubic"], - "occurrences": 3 - }, - "0x77f973fcaf871459aa58cd81881ce453759281bc": { - "address": "0x77f973fcaf871459aa58cd81881ce453759281bc", - "symbol": "IETH", - "decimals": 18, - "name": "IETH", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x77f973fcaf871459aa58cd81881ce453759281bc.png", - "aggregators": ["LiFi", "Rubic", "Rango"], - "occurrences": 3 - }, - "0xeb9951021698b42e4399f9cbb6267aa35f82d59d": { - "address": "0xeb9951021698b42e4399f9cbb6267aa35f82d59d", - "symbol": "0", - "decimals": 0, - "name": "0", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xeb9951021698b42e4399f9cbb6267aa35f82d59d.png", - "aggregators": ["LiFi", "Socket", "Rubic"], - "occurrences": 3 - }, - "0x69000405f9dce69bd4cbf4f2865b79144a69bfe0": { - "address": "0x69000405f9dce69bd4cbf4f2865b79144a69bfe0", - "symbol": "USDZ", - "decimals": 18, - "name": "ZAI Stablecoin", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x69000405f9dce69bd4cbf4f2865b79144a69bfe0.png", - "aggregators": ["LiFi", "Rubic", "Rango"], - "occurrences": 3 - }, - "0xbeef69ac7870777598a04b2bd4771c71212e6abc": { - "address": "0xbeef69ac7870777598a04b2bd4771c71212e6abc", - "symbol": "STEAKLRT", - "decimals": 18, - "name": "Steakhouse Resteaking Vault", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xbeef69ac7870777598a04b2bd4771c71212e6abc.png", - "aggregators": ["LiFi", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x4c406c068106375724275cbff028770c544a1333": { - "address": "0x4c406c068106375724275cbff028770c544a1333", - "symbol": "SCWETHV2", - "decimals": 18, - "name": "Sandclock WETH Vault v2", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x4c406c068106375724275cbff028770c544a1333.png", - "aggregators": ["LiFi", "Socket", "Rango"], - "occurrences": 3 - }, - "0xb986f3a2d91d3704dc974a24fb735dcc5e3c1e70": { - "address": "0xb986f3a2d91d3704dc974a24fb735dcc5e3c1e70", - "symbol": "EUX", - "decimals": 18, - "name": "dForce EUR", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xb986f3a2d91d3704dc974a24fb735dcc5e3c1e70.png", - "aggregators": ["LiFi", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x442b153f6f61c0c99a33aa4170dcb31e1abda1d0": { - "address": "0x442b153f6f61c0c99a33aa4170dcb31e1abda1d0", - "symbol": "AVA", - "decimals": 18, - "name": "Travala.com Token", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x442b153f6f61c0c99a33aa4170dcb31e1abda1d0.png", - "aggregators": ["LiFi", "Socket", "Rubic"], - "occurrences": 3 - }, - "0x6a4ffaafa8dd400676df8076ad6c724867b0e2e8": { - "address": "0x6a4ffaafa8dd400676df8076ad6c724867b0e2e8", - "symbol": "BDAI", - "decimals": 18, - "name": "BDAI", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x6a4ffaafa8dd400676df8076ad6c724867b0e2e8.png", - "aggregators": ["LiFi", "Rubic", "Rango"], - "occurrences": 3 - }, - "0xa18a0be599366c8e2ffffd83a2418a3ccb825d7f": { - "address": "0xa18a0be599366c8e2ffffd83a2418a3ccb825d7f", - "symbol": "SONG", - "decimals": 18, - "name": "Beatify", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xa18a0be599366c8e2ffffd83a2418a3ccb825d7f.png", - "aggregators": ["LiFi", "Socket", "Rubic"], - "occurrences": 3 - }, - "0x5c20b550819128074fd538edf79791733ccedd18": { - "address": "0x5c20b550819128074fd538edf79791733ccedd18", - "symbol": "FUSDT", - "decimals": 6, - "name": "Fluid Tether USD", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x5c20b550819128074fd538edf79791733ccedd18.png", - "aggregators": ["LiFi", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x9fb7b4477576fe5b32be4c1843afb1e55f251b33": { - "address": "0x9fb7b4477576fe5b32be4c1843afb1e55f251b33", - "symbol": "FUSDC", - "decimals": 6, - "name": "Fluid USD Coin", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x9fb7b4477576fe5b32be4c1843afb1e55f251b33.png", - "aggregators": ["LiFi", "Rubic", "Rango"], - "occurrences": 3 - }, - "0xc4506022fb8090774e8a628d5084eed61d9b99ee": { - "address": "0xc4506022fb8090774e8a628d5084eed61d9b99ee", - "symbol": "HYETH", - "decimals": 18, - "name": "High Yield ETH Index", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xc4506022fb8090774e8a628d5084eed61d9b99ee.png", - "aggregators": ["LiFi", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x0ecdd783dc7bf820614044b51862ed29714d2ba5": { - "address": "0x0ecdd783dc7bf820614044b51862ed29714d2ba5", - "symbol": "MDZA", - "decimals": 18, - "name": "MEDOOZA Ecosystem v20", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x0ecdd783dc7bf820614044b51862ed29714d2ba5.png", - "aggregators": ["LiFi", "Rubic", "Bancor"], - "occurrences": 3 - }, - "0x29502fe4d233ef0b45c3647101fa1252ce0634bd": { - "address": "0x29502fe4d233ef0b45c3647101fa1252ce0634bd", - "symbol": "FROGE", - "decimals": 9, - "name": "Froge Finance", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x29502fe4d233ef0b45c3647101fa1252ce0634bd.png", - "aggregators": ["TrustWallet", "Socket", "Rubic"], - "occurrences": 3 - }, - "0x9d7b68970d2be6dc93124477b4e2e1c9a6b180aa": { - "address": "0x9d7b68970d2be6dc93124477b4e2e1c9a6b180aa", - "symbol": "DEDE", - "decimals": 9, - "name": "Dede", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x9d7b68970d2be6dc93124477b4e2e1c9a6b180aa.png", - "aggregators": ["Socket", "Rubic", "Rango"], - "occurrences": 3 - }, - "0xfc2189d367d8d3d7cca1af43ff6169197dc7351e": { - "address": "0xfc2189d367d8d3d7cca1af43ff6169197dc7351e", - "symbol": "CHI", - "decimals": 18, - "name": "Chi USD", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xfc2189d367d8d3d7cca1af43ff6169197dc7351e.png", - "aggregators": ["Socket", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x5fc429110a64bc51b57ca86dce1714fd0fbec303": { - "address": "0x5fc429110a64bc51b57ca86dce1714fd0fbec303", - "symbol": "DAPP", - "decimals": 18, - "name": "Pencils Protocol", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x5fc429110a64bc51b57ca86dce1714fd0fbec303.png", - "aggregators": ["Socket", "Rubic", "Sonarwatch"], - "occurrences": 3 - }, - "0x18fa05ee5e478eed8925946abb41d09aec5d34d6": { - "address": "0x18fa05ee5e478eed8925946abb41d09aec5d34d6", - "symbol": "PUFF", - "decimals": 18, - "name": "Puff", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x18fa05ee5e478eed8925946abb41d09aec5d34d6.png", - "aggregators": ["Socket", "Rubic", "Rango"], - "occurrences": 3 - }, - "0xd2aee1ce2b4459de326971de036e82f1318270af": { - "address": "0xd2aee1ce2b4459de326971de036e82f1318270af", - "symbol": "21DOGE", - "decimals": 8, - "name": "21.co Wrapped Dogecoin", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xd2aee1ce2b4459de326971de036e82f1318270af.png", - "aggregators": ["Socket", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x91b08f4a7c1251dfccf5440f8894f8daa10c8de5": { - "address": "0x91b08f4a7c1251dfccf5440f8894f8daa10c8de5", - "symbol": "BAXA", - "decimals": 18, - "name": "BAXagent Coin", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x91b08f4a7c1251dfccf5440f8894f8daa10c8de5.png", - "aggregators": ["Socket", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x102e941b77bcaa7e35d368cafe51ef8f79c8d1ef": { - "address": "0x102e941b77bcaa7e35d368cafe51ef8f79c8d1ef", - "symbol": "LIZ", - "decimals": 18, - "name": "Theranos Coin", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x102e941b77bcaa7e35d368cafe51ef8f79c8d1ef.png", - "aggregators": ["Socket", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x3650b69f86cb593f116e276c30666834336c0647": { - "address": "0x3650b69f86cb593f116e276c30666834336c0647", - "symbol": "LPF", - "decimals": 18, - "name": "Loopfi", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x3650b69f86cb593f116e276c30666834336c0647.png", - "aggregators": ["Socket", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x1351986732367ff6b51784c6a75f63502de13a9a": { - "address": "0x1351986732367ff6b51784c6a75f63502de13a9a", - "symbol": "MOM", - "decimals": 18, - "name": "Monetum", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x1351986732367ff6b51784c6a75f63502de13a9a.png", - "aggregators": ["Socket", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x07fa101efde726e0956edd2c4d5c8d3d1a5e9c53": { - "address": "0x07fa101efde726e0956edd2c4d5c8d3d1a5e9c53", - "symbol": "RFWSTETH", - "decimals": 18, - "name": "Respawn Finance Wrapped Staked Ethereum", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x07fa101efde726e0956edd2c4d5c8d3d1a5e9c53.png", - "aggregators": ["Socket", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x6789d8a7a7871923fc6430432a602879ecb6520a": { - "address": "0x6789d8a7a7871923fc6430432a602879ecb6520a", - "symbol": "VEKWENTA", - "decimals": 18, - "name": "veKwenta", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x6789d8a7a7871923fc6430432a602879ecb6520a.png", - "aggregators": ["Socket", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x32ea3dc70e2962334864a9665254d2433e4ddbfd": { - "address": "0x32ea3dc70e2962334864a9665254d2433e4ddbfd", - "symbol": "SPN", - "decimals": 18, - "name": "Sportzchain", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x32ea3dc70e2962334864a9665254d2433e4ddbfd.png", - "aggregators": ["Socket", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x38c2a4a7330b22788374b8ff70bba513c8d848ca": { - "address": "0x38c2a4a7330b22788374b8ff70bba513c8d848ca", - "symbol": "TRUF", - "decimals": 18, - "name": "Truflation", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x38c2a4a7330b22788374b8ff70bba513c8d848ca.png", - "aggregators": ["Socket", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x1e87d63d11d1c16052bbca06d43ba4ceb4ee686c": { - "address": "0x1e87d63d11d1c16052bbca06d43ba4ceb4ee686c", - "symbol": "BRC20", - "decimals": 9, - "name": "BRC20", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x1e87d63d11d1c16052bbca06d43ba4ceb4ee686c.png", - "aggregators": ["Socket", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x24ec2ca132abf8f6f8a6e24a1b97943e31f256a7": { - "address": "0x24ec2ca132abf8f6f8a6e24a1b97943e31f256a7", - "symbol": "MOOV", - "decimals": 18, - "name": "MOOV", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x24ec2ca132abf8f6f8a6e24a1b97943e31f256a7.png", - "aggregators": ["Socket", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x6a7eff1e2c355ad6eb91bebb5ded49257f3fed98": { - "address": "0x6a7eff1e2c355ad6eb91bebb5ded49257f3fed98", - "symbol": "OPSEC", - "decimals": 18, - "name": "OpSec", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x6a7eff1e2c355ad6eb91bebb5ded49257f3fed98.png", - "aggregators": ["Socket", "Rubic", "Rango"], - "occurrences": 3 - }, - "0xdc247546a6551117c8ea82db2cc0ad6e048e5f6e": { - "address": "0xdc247546a6551117c8ea82db2cc0ad6e048e5f6e", - "symbol": "LUSH", - "decimals": 18, - "name": "Lush AI", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xdc247546a6551117c8ea82db2cc0ad6e048e5f6e.png", - "aggregators": ["Socket", "Rubic", "Rango"], - "occurrences": 3 - }, - "0xe1cad79759243934db8e36c605261f37f9b141bd": { - "address": "0xe1cad79759243934db8e36c605261f37f9b141bd", - "symbol": "PCH", - "decimals": 18, - "name": "Peach", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xe1cad79759243934db8e36c605261f37f9b141bd.png", - "aggregators": ["Socket", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x2f4eb21acd80a596bcca596ab40bad928f5d2bcf": { - "address": "0x2f4eb21acd80a596bcca596ab40bad928f5d2bcf", - "symbol": "BEANS", - "decimals": 18, - "name": "Dancing Beans", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x2f4eb21acd80a596bcca596ab40bad928f5d2bcf.png", - "aggregators": ["Socket", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x73454acfddb7a36a3cd8eb171fbea86c6a55e550": { - "address": "0x73454acfddb7a36a3cd8eb171fbea86c6a55e550", - "symbol": "BUILD", - "decimals": 9, - "name": "BuildAI", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x73454acfddb7a36a3cd8eb171fbea86c6a55e550.png", - "aggregators": ["Socket", "Rubic", "Rango"], - "occurrences": 3 - }, - "0xf161cdb9aa33b2f48be273dae3f3bbb2330ad3e5": { - "address": "0xf161cdb9aa33b2f48be273dae3f3bbb2330ad3e5", - "symbol": "AZUR", - "decimals": 18, - "name": "AZUR Token", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xf161cdb9aa33b2f48be273dae3f3bbb2330ad3e5.png", - "aggregators": ["Socket", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x66d28cb58487a7609877550e1a34691810a6b9fc": { - "address": "0x66d28cb58487a7609877550e1a34691810a6b9fc", - "symbol": "KOIN", - "decimals": 8, - "name": "Koinos", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x66d28cb58487a7609877550e1a34691810a6b9fc.png", - "aggregators": ["Socket", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x571e21a545842c6ce596663cda5caa8196ac1c7a": { - "address": "0x571e21a545842c6ce596663cda5caa8196ac1c7a", - "symbol": "CHAMPZ", - "decimals": 8, - "name": "Champignons of Arborethia", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x571e21a545842c6ce596663cda5caa8196ac1c7a.png", - "aggregators": ["Socket", "Rubic", "Rango"], - "occurrences": 3 - }, - "0xf05897cfe3ce9bbbfe0751cbe6b1b2c686848dcb": { - "address": "0xf05897cfe3ce9bbbfe0751cbe6b1b2c686848dcb", - "symbol": "CATE", - "decimals": 9, - "name": "Catecoin", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xf05897cfe3ce9bbbfe0751cbe6b1b2c686848dcb.png", - "aggregators": ["Socket", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x9fd5555d0360adc2b5d92179e9bc36802bba8621": { - "address": "0x9fd5555d0360adc2b5d92179e9bc36802bba8621", - "symbol": "APES", - "decimals": 18, - "name": "APES", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x9fd5555d0360adc2b5d92179e9bc36802bba8621.png", - "aggregators": ["Socket", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x50b275a15e4f5004aa96f972a30e6a9c718b203f": { - "address": "0x50b275a15e4f5004aa96f972a30e6a9c718b203f", - "symbol": "WSTOR", - "decimals": 18, - "name": "StorageChain", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x50b275a15e4f5004aa96f972a30e6a9c718b203f.png", - "aggregators": ["Socket", "Rubic", "Rango"], - "occurrences": 3 - }, - "0xf1102d6d2a531124fa043d18a06c394a81aaa866": { - "address": "0xf1102d6d2a531124fa043d18a06c394a81aaa866", - "symbol": "SHIBC", - "decimals": 18, - "name": "Shiba Inu Classic", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xf1102d6d2a531124fa043d18a06c394a81aaa866.png", - "aggregators": ["Socket", "Rubic", "Rango"], - "occurrences": 3 - }, - "0xf2041be4ea84599818799eed882389a8a30d2226": { - "address": "0xf2041be4ea84599818799eed882389a8a30d2226", - "symbol": "NEURAL", - "decimals": 9, - "name": "NEURAL", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xf2041be4ea84599818799eed882389a8a30d2226.png", - "aggregators": ["Socket", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x1a59eec501745ad6bdfc37558ddacb38ca5a8c48": { - "address": "0x1a59eec501745ad6bdfc37558ddacb38ca5a8c48", - "symbol": "COSMIC", - "decimals": 18, - "name": "Cosmic", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x1a59eec501745ad6bdfc37558ddacb38ca5a8c48.png", - "aggregators": ["Socket", "Rubic", "Rango"], - "occurrences": 3 - }, - "0xfeea0bdd3d07eb6fe305938878c0cadbfa169042": { - "address": "0xfeea0bdd3d07eb6fe305938878c0cadbfa169042", - "symbol": "8PAY", - "decimals": 18, - "name": "8PAY", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xfeea0bdd3d07eb6fe305938878c0cadbfa169042.png", - "aggregators": ["Socket", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x6bdde71cf0c751eb6d5edb8418e43d3d9427e436": { - "address": "0x6bdde71cf0c751eb6d5edb8418e43d3d9427e436", - "symbol": "BTREE", - "decimals": 18, - "name": "BTREE", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x6bdde71cf0c751eb6d5edb8418e43d3d9427e436.png", - "aggregators": ["Socket", "Rubic", "Rango"], - "occurrences": 3 - }, - "0xbb9fd9fa4863c03c574007ff3370787b9ce65ff6": { - "address": "0xbb9fd9fa4863c03c574007ff3370787b9ce65ff6", - "symbol": "HILO", - "decimals": 18, - "name": "HILO", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xbb9fd9fa4863c03c574007ff3370787b9ce65ff6.png", - "aggregators": ["Socket", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x966f17cd63c93c39f38897e5c633e59cef0591f1": { - "address": "0x966f17cd63c93c39f38897e5c633e59cef0591f1", - "symbol": "BOME", - "decimals": 6, - "name": "BOOK OF MEME", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x966f17cd63c93c39f38897e5c633e59cef0591f1.png", - "aggregators": ["Socket", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x9ca98c8b217c3b45074834908555d36af2ac6449": { - "address": "0x9ca98c8b217c3b45074834908555d36af2ac6449", - "symbol": "SABR", - "decimals": 18, - "name": "SatsBridge", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x9ca98c8b217c3b45074834908555d36af2ac6449.png", - "aggregators": ["Socket", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x6f91d21de4e40b3b80636b6b3ba425b636b798cf": { - "address": "0x6f91d21de4e40b3b80636b6b3ba425b636b798cf", - "symbol": "WSB", - "decimals": 9, - "name": "Wall Street Bets", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x6f91d21de4e40b3b80636b6b3ba425b636b798cf.png", - "aggregators": ["Socket", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x390e61f798267fe7aa9bbe61be8bb1776250d44c": { - "address": "0x390e61f798267fe7aa9bbe61be8bb1776250d44c", - "symbol": "T2T2", - "decimals": 18, - "name": "T2T2", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x390e61f798267fe7aa9bbe61be8bb1776250d44c.png", - "aggregators": ["Socket", "Rubic", "Rango"], - "occurrences": 3 - }, - "0xe2353069f71a27bbbe66eeabff05de109c7d5e19": { - "address": "0xe2353069f71a27bbbe66eeabff05de109c7d5e19", - "symbol": "SEED", - "decimals": 18, - "name": "Bonsai3", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xe2353069f71a27bbbe66eeabff05de109c7d5e19.png", - "aggregators": ["Socket", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x8e81d527f8fa05d82c514401c8144275174557cd": { - "address": "0x8e81d527f8fa05d82c514401c8144275174557cd", - "symbol": "CCB", - "decimals": 18, - "name": "鸡鸡币", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x8e81d527f8fa05d82c514401c8144275174557cd.png", - "aggregators": ["Socket", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x266b4d1c60634c5ab2b9f5117888a4850d87c4c0": { - "address": "0x266b4d1c60634c5ab2b9f5117888a4850d87c4c0", - "symbol": "SSAI", - "decimals": 18, - "name": "Shelter Secure AI", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x266b4d1c60634c5ab2b9f5117888a4850d87c4c0.png", - "aggregators": ["Socket", "Rubic", "Rango"], - "occurrences": 3 - }, - "0xf97b5aa4593c333fd2451bd85085a14720aa2a4f": { - "address": "0xf97b5aa4593c333fd2451bd85085a14720aa2a4f", - "symbol": "TALK", - "decimals": 18, - "name": "Talk AI", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xf97b5aa4593c333fd2451bd85085a14720aa2a4f.png", - "aggregators": ["Socket", "Rubic", "Rango"], - "occurrences": 3 - }, - "0xc60a9145d9e9f1152218e7da6df634b7a74ae444": { - "address": "0xc60a9145d9e9f1152218e7da6df634b7a74ae444", - "symbol": "CGETHHASHKEY", - "decimals": 18, - "name": "cgETH Hashkey Cloud", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xc60a9145d9e9f1152218e7da6df634b7a74ae444.png", - "aggregators": ["Rubic", "Rango", "Sonarwatch"], - "occurrences": 3 - }, - "0xba7970f10d9f0531941dced1dda7ef3016b24e5b": { - "address": "0xba7970f10d9f0531941dced1dda7ef3016b24e5b", - "symbol": "BGLD", - "decimals": 18, - "name": "Based Gold", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xba7970f10d9f0531941dced1dda7ef3016b24e5b.png", - "aggregators": ["Rubic", "Rango", "SushiSwap"], - "occurrences": 3 - }, - "0x1ed5cf624240296d941796970ac745bc24bd4a06": { - "address": "0x1ed5cf624240296d941796970ac745bc24bd4a06", - "symbol": "POSHI", - "decimals": 18, - "name": "Poshi World", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x1ed5cf624240296d941796970ac745bc24bd4a06.png", - "aggregators": ["Rubic", "Rango", "Sonarwatch"], - "occurrences": 3 - }, - "0x36905fc93280f52362a1cbab151f25dc46742fb5": { - "address": "0x36905fc93280f52362a1cbab151f25dc46742fb5", - "symbol": "BTO", - "decimals": 18, - "name": "Bottos", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x36905fc93280f52362a1cbab151f25dc46742fb5.png", - "aggregators": ["Rubic", "Rango", "Sonarwatch"], - "occurrences": 3 - }, - "0x210028b5a1e9effb93ce31006a18629f31131093": { - "address": "0x210028b5a1e9effb93ce31006a18629f31131093", - "symbol": "BLK", - "decimals": 9, - "name": "BLK2100", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x210028b5a1e9effb93ce31006a18629f31131093.png", - "aggregators": ["Rubic", "Rango", "Sonarwatch"], - "occurrences": 3 - }, - "0x8eb94a06b4716093dbfe335cbdb098deb2dcde1b": { - "address": "0x8eb94a06b4716093dbfe335cbdb098deb2dcde1b", - "symbol": "SHIB05", - "decimals": 18, - "name": "Half Shiba Inu", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x8eb94a06b4716093dbfe335cbdb098deb2dcde1b.png", - "aggregators": ["Rubic", "Rango", "Sonarwatch"], - "occurrences": 3 - }, - "0xd2b69d3518c3820e97ea910a4a22d699a6c39272": { - "address": "0xd2b69d3518c3820e97ea910a4a22d699a6c39272", - "symbol": "CHICKENUS", - "decimals": 9, - "name": "Chickenus Maximus", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xd2b69d3518c3820e97ea910a4a22d699a6c39272.png", - "aggregators": ["Rubic", "Rango", "Sonarwatch"], - "occurrences": 3 - }, - "0x42a7797351dfd281a80807196c8508eb70bb2af9": { - "address": "0x42a7797351dfd281a80807196c8508eb70bb2af9", - "symbol": "AIS", - "decimals": 18, - "name": "AISociety", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x42a7797351dfd281a80807196c8508eb70bb2af9.png", - "aggregators": ["Rubic", "Rango", "Sonarwatch"], - "occurrences": 3 - }, - "0xf90924b4064d88fdf9189d6ffd737ed85c01b9b7": { - "address": "0xf90924b4064d88fdf9189d6ffd737ed85c01b9b7", - "symbol": "GFN", - "decimals": 18, - "name": "GameFinity", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xf90924b4064d88fdf9189d6ffd737ed85c01b9b7.png", - "aggregators": ["Rubic", "Rango", "Sonarwatch"], - "occurrences": 3 - }, - "0x2e5d4e2a2336045471bfe446caa407f0c3a2419c": { - "address": "0x2e5d4e2a2336045471bfe446caa407f0c3a2419c", - "symbol": "RSVUSDT", - "decimals": 6, - "name": "RedSonic Vault Tether USD", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x2e5d4e2a2336045471bfe446caa407f0c3a2419c.png", - "aggregators": ["Rubic", "Rango", "Sonarwatch"], - "occurrences": 3 - }, - "0xbb6cf73a00f480d0951ba979a7606857cdde626b": { - "address": "0xbb6cf73a00f480d0951ba979a7606857cdde626b", - "symbol": "ARIX", - "decimals": 18, - "name": "Arix", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xbb6cf73a00f480d0951ba979a7606857cdde626b.png", - "aggregators": ["Rubic", "Rango", "Sonarwatch"], - "occurrences": 3 - }, - "0x686d1596e5632fe0471961e7977e8efe371b0b21": { - "address": "0x686d1596e5632fe0471961e7977e8efe371b0b21", - "symbol": "AZEE", - "decimals": 18, - "name": "SurrealVerse", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x686d1596e5632fe0471961e7977e8efe371b0b21.png", - "aggregators": ["Rubic", "Rango", "Sonarwatch"], - "occurrences": 3 - }, - "0x3973c606b493eee0e14b2b5654d5c4049ce9c2d9": { - "address": "0x3973c606b493eee0e14b2b5654d5c4049ce9c2d9", - "symbol": "BITG", - "decimals": 18, - "name": "BitGate", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x3973c606b493eee0e14b2b5654d5c4049ce9c2d9.png", - "aggregators": ["Rubic", "Rango", "Sonarwatch"], - "occurrences": 3 - }, - "0xff9c1f21c621696c4f91cf781ec31bd913ee2c26": { - "address": "0xff9c1f21c621696c4f91cf781ec31bd913ee2c26", - "symbol": "COM", - "decimals": 18, - "name": "com Ordinals", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xff9c1f21c621696c4f91cf781ec31bd913ee2c26.png", - "aggregators": ["Rubic", "Rango", "Sonarwatch"], - "occurrences": 3 - }, - "0x76fca1adb104770b38581b64d55e67fa5a0f3966": { - "address": "0x76fca1adb104770b38581b64d55e67fa5a0f3966", - "symbol": "ZKT", - "decimals": 9, - "name": "ZkTsunami", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x76fca1adb104770b38581b64d55e67fa5a0f3966.png", - "aggregators": ["Rubic", "Rango", "Sonarwatch"], - "occurrences": 3 - }, - "0x1bd9abf284e893705104e64b564b414620b722f1": { - "address": "0x1bd9abf284e893705104e64b564b414620b722f1", - "symbol": "ACM", - "decimals": 18, - "name": "acmFinance", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x1bd9abf284e893705104e64b564b414620b722f1.png", - "aggregators": ["Rubic", "Rango", "Sonarwatch"], - "occurrences": 3 - }, - "0x565d3902d6a5a2d5ce28ff427423e88933334dd2": { - "address": "0x565d3902d6a5a2d5ce28ff427423e88933334dd2", - "symbol": "ADULT", - "decimals": 18, - "name": "Adult Playground", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x565d3902d6a5a2d5ce28ff427423e88933334dd2.png", - "aggregators": ["Rubic", "Rango", "Sonarwatch"], - "occurrences": 3 - }, - "0x56528c1df17fd5451451eb6efde297758bc8f9a1": { - "address": "0x56528c1df17fd5451451eb6efde297758bc8f9a1", - "symbol": "AFS", - "decimals": 0, - "name": "Aktionariat Alan Frei Company Tokenized", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x56528c1df17fd5451451eb6efde297758bc8f9a1.png", - "aggregators": ["Rubic", "Rango", "Sonarwatch"], - "occurrences": 3 - }, - "0x9d1a74967eca155782edf8e84782c74db33fc499": { - "address": "0x9d1a74967eca155782edf8e84782c74db33fc499", - "symbol": "AICOM", - "decimals": 9, - "name": "AI COM", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x9d1a74967eca155782edf8e84782c74db33fc499.png", - "aggregators": ["Rubic", "Rango", "Sonarwatch"], - "occurrences": 3 - }, - "0x24bff4fe25b5807bad49b2c08d79bb271766e68a": { - "address": "0x24bff4fe25b5807bad49b2c08d79bb271766e68a", - "symbol": "ALEA", - "decimals": 18, - "name": "Alea", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x24bff4fe25b5807bad49b2c08d79bb271766e68a.png", - "aggregators": ["Rubic", "Rango", "Sonarwatch"], - "occurrences": 3 - }, - "0xf2cdf38e24738ba379ffa38d47bc88a941df5627": { - "address": "0xf2cdf38e24738ba379ffa38d47bc88a941df5627", - "symbol": "ALY", - "decimals": 2, - "name": "Ally", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xf2cdf38e24738ba379ffa38d47bc88a941df5627.png", - "aggregators": ["Rubic", "Rango", "Sonarwatch"], - "occurrences": 3 - }, - "0xca6e4ac78cd8f0226faeabf3b1a3500af2ebff2b": { - "address": "0xca6e4ac78cd8f0226faeabf3b1a3500af2ebff2b", - "symbol": "ART", - "decimals": 18, - "name": "Genify ART", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xca6e4ac78cd8f0226faeabf3b1a3500af2ebff2b.png", - "aggregators": ["Rubic", "Rango", "Sonarwatch"], - "occurrences": 3 - }, - "0xa20f77b7ad5a88badc48800c56507b7274c06fdc": { - "address": "0xa20f77b7ad5a88badc48800c56507b7274c06fdc", - "symbol": "CHER", - "decimals": 18, - "name": "Cherry Network", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xa20f77b7ad5a88badc48800c56507b7274c06fdc.png", - "aggregators": ["Rubic", "Rango", "Sonarwatch"], - "occurrences": 3 - }, - "0x7efbac35b65e73484764fd00f18e64929e782855": { - "address": "0x7efbac35b65e73484764fd00f18e64929e782855", - "symbol": "CIFI", - "decimals": 18, - "name": "CIFI", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x7efbac35b65e73484764fd00f18e64929e782855.png", - "aggregators": ["Rubic", "Rango", "Sonarwatch"], - "occurrences": 3 - }, - "0x6cadf6abbceb53e631c288778daacf125481c1bb": { - "address": "0x6cadf6abbceb53e631c288778daacf125481c1bb", - "symbol": "CITADEL", - "decimals": 18, - "name": "The Citadel", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x6cadf6abbceb53e631c288778daacf125481c1bb.png", - "aggregators": ["Rubic", "Rango", "Sonarwatch"], - "occurrences": 3 - }, - "0x08f7be99ed83369541501d60f4e66f8e34c3f736": { - "address": "0x08f7be99ed83369541501d60f4e66f8e34c3f736", - "symbol": "CKU", - "decimals": 18, - "name": "Cryptoku", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x08f7be99ed83369541501d60f4e66f8e34c3f736.png", - "aggregators": ["Rubic", "Rango", "Sonarwatch"], - "occurrences": 3 - }, - "0x230f5ed78a45452f726365b8ad1d6866f5faa68f": { - "address": "0x230f5ed78a45452f726365b8ad1d6866f5faa68f", - "symbol": "COF", - "decimals": 9, - "name": "Cryptoforce", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x230f5ed78a45452f726365b8ad1d6866f5faa68f.png", - "aggregators": ["Rubic", "Rango", "Sonarwatch"], - "occurrences": 3 - }, - "0x5bdc32663ec75e85ff4abc2cae7ae8b606a2cfca": { - "address": "0x5bdc32663ec75e85ff4abc2cae7ae8b606a2cfca", - "symbol": "CP", - "decimals": 18, - "name": "Cookies Protocol", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x5bdc32663ec75e85ff4abc2cae7ae8b606a2cfca.png", - "aggregators": ["Rubic", "Rango", "Sonarwatch"], - "occurrences": 3 - }, - "0x1c92c0295807f1f7c0726cf51a1d26298563f14a": { - "address": "0x1c92c0295807f1f7c0726cf51a1d26298563f14a", - "symbol": "CRACER", - "decimals": 18, - "name": "Coinracer Reloaded", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x1c92c0295807f1f7c0726cf51a1d26298563f14a.png", - "aggregators": ["Rubic", "Rango", "Sonarwatch"], - "occurrences": 3 - }, - "0xf1acfb5d95bc090bc55d8ae58a8df4081d73e009": { - "address": "0xf1acfb5d95bc090bc55d8ae58a8df4081d73e009", - "symbol": "CTOK", - "decimals": 18, - "name": "Codyfight", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xf1acfb5d95bc090bc55d8ae58a8df4081d73e009.png", - "aggregators": ["Rubic", "Rango", "Sonarwatch"], - "occurrences": 3 - }, - "0xbb63e6be33bc5b5386d7ab0529dc6c400f2ac2ec": { - "address": "0xbb63e6be33bc5b5386d7ab0529dc6c400f2ac2ec", - "symbol": "CUCK", - "decimals": 18, - "name": "Cuckadoodledoo", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xbb63e6be33bc5b5386d7ab0529dc6c400f2ac2ec.png", - "aggregators": ["Rubic", "Rango", "Sonarwatch"], - "occurrences": 3 - }, - "0x4a621d9f1b19296d1c0f87637b3a8d4978e9bf82": { - "address": "0x4a621d9f1b19296d1c0f87637b3a8d4978e9bf82", - "symbol": "CYFM", - "decimals": 18, - "name": "CyberFM", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x4a621d9f1b19296d1c0f87637b3a8d4978e9bf82.png", - "aggregators": ["Rubic", "Rango", "Sonarwatch"], - "occurrences": 3 - }, - "0x1981e32c2154936741ab6541a737b87c68f13ce1": { - "address": "0x1981e32c2154936741ab6541a737b87c68f13ce1", - "symbol": "DAII", - "decimals": 18, - "name": "DAII", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x1981e32c2154936741ab6541a737b87c68f13ce1.png", - "aggregators": ["Rubic", "Rango", "Sonarwatch"], - "occurrences": 3 - }, - "0x7135b32e9903bdb4e19a8b1d22fc2038964b8451": { - "address": "0x7135b32e9903bdb4e19a8b1d22fc2038964b8451", - "symbol": "EARLY", - "decimals": 18, - "name": "EarlyFans", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x7135b32e9903bdb4e19a8b1d22fc2038964b8451.png", - "aggregators": ["Rubic", "Rango", "Sonarwatch"], - "occurrences": 3 - }, - "0x07c904d8c04323ef9fe6bf13aaeba05b62c54825": { - "address": "0x07c904d8c04323ef9fe6bf13aaeba05b62c54825", - "symbol": "EEYOR", - "decimals": 18, - "name": "Eeyor", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x07c904d8c04323ef9fe6bf13aaeba05b62c54825.png", - "aggregators": ["Rubic", "Rango", "Sonarwatch"], - "occurrences": 3 - }, - "0x65c4c0517025ec0843c9146af266a2c5a2d148a2": { - "address": "0x65c4c0517025ec0843c9146af266a2c5a2d148a2", - "symbol": "ETH2X", - "decimals": 18, - "name": "Index Coop Ethereum 2x Index", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x65c4c0517025ec0843c9146af266a2c5a2d148a2.png", - "aggregators": ["Rubic", "Rango", "Sonarwatch"], - "occurrences": 3 - }, - "0x1ef846ce0da79d8d4e111bf8c5117cd1209a0478": { - "address": "0x1ef846ce0da79d8d4e111bf8c5117cd1209a0478", - "symbol": "ETHINU", - "decimals": 8, - "name": "Ethereum Inu", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x1ef846ce0da79d8d4e111bf8c5117cd1209a0478.png", - "aggregators": ["Rubic", "Rango", "Sonarwatch"], - "occurrences": 3 - }, - "0xcf9560b9e952b195d408be966e4f6cf4ab8206e5": { - "address": "0xcf9560b9e952b195d408be966e4f6cf4ab8206e5", - "symbol": "EVIL", - "decimals": 18, - "name": "Doctor Evil", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xcf9560b9e952b195d408be966e4f6cf4ab8206e5.png", - "aggregators": ["Rubic", "Rango", "Sonarwatch"], - "occurrences": 3 - }, - "0x5277f67a2be2e1a241613c357f26ae12458bf2c9": { - "address": "0x5277f67a2be2e1a241613c357f26ae12458bf2c9", - "symbol": "FATGUY", - "decimals": 18, - "name": "FAT GUY", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x5277f67a2be2e1a241613c357f26ae12458bf2c9.png", - "aggregators": ["Rubic", "Rango", "Sonarwatch"], - "occurrences": 3 - }, - "0xd4318fa09c45cfb6355ded6085b0d698b64ec1cd": { - "address": "0xd4318fa09c45cfb6355ded6085b0d698b64ec1cd", - "symbol": "FEDAI", - "decimals": 8, - "name": "Federal AI", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xd4318fa09c45cfb6355ded6085b0d698b64ec1cd.png", - "aggregators": ["Rubic", "Rango", "Sonarwatch"], - "occurrences": 3 - }, - "0xaf91e8afbe87642dc628786188a54b78580a4d76": { - "address": "0xaf91e8afbe87642dc628786188a54b78580a4d76", - "symbol": "FOY", - "decimals": 18, - "name": "Fund Of Yours", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xaf91e8afbe87642dc628786188a54b78580a4d76.png", - "aggregators": ["Rubic", "Rango", "Sonarwatch"], - "occurrences": 3 - }, - "0xa78bcbb74b822e74a847897d2d1d2d5ee2c76bd8": { - "address": "0xa78bcbb74b822e74a847897d2d1d2d5ee2c76bd8", - "symbol": "GOLD", - "decimals": 18, - "name": "Swords Dungeons GOLD", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xa78bcbb74b822e74a847897d2d1d2d5ee2c76bd8.png", - "aggregators": ["Rubic", "Rango", "Sonarwatch"], - "occurrences": 3 - }, - "0x274e7eb07b485cfde53d02270555213447570ac6": { - "address": "0x274e7eb07b485cfde53d02270555213447570ac6", - "symbol": "GOV", - "decimals": 18, - "name": "SubDAO", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x274e7eb07b485cfde53d02270555213447570ac6.png", - "aggregators": ["Rubic", "Rango", "Sonarwatch"], - "occurrences": 3 - }, - "0x7fa768e035f956c41d6aeaa3bd857e7e5141cad5": { - "address": "0x7fa768e035f956c41d6aeaa3bd857e7e5141cad5", - "symbol": "INSTETH", - "decimals": 18, - "name": "Inception stETH", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x7fa768e035f956c41d6aeaa3bd857e7e5141cad5.png", - "aggregators": ["Rubic", "Rango", "Sonarwatch"], - "occurrences": 3 - }, - "0xb40c535c8899f95e3b722df2f0619ebd28c4a4ea": { - "address": "0xb40c535c8899f95e3b722df2f0619ebd28c4a4ea", - "symbol": "KNDA", - "decimals": 18, - "name": "Kenda", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xb40c535c8899f95e3b722df2f0619ebd28c4a4ea.png", - "aggregators": ["Rubic", "Rango", "Sonarwatch"], - "occurrences": 3 - }, - "0x7b7983967409fce461ea8bbdf9ed37631b1d59c9": { - "address": "0x7b7983967409fce461ea8bbdf9ed37631b1d59c9", - "symbol": "KPOP", - "decimals": 18, - "name": "KPOP Coin", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x7b7983967409fce461ea8bbdf9ed37631b1d59c9.png", - "aggregators": ["Rubic", "Rango", "Sonarwatch"], - "occurrences": 3 - }, - "0x27206f5a9afd0c51da95f20972885545d3b33647": { - "address": "0x27206f5a9afd0c51da95f20972885545d3b33647", - "symbol": "KUKU", - "decimals": 0, - "name": "KuKu", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x27206f5a9afd0c51da95f20972885545d3b33647.png", - "aggregators": ["Rubic", "Rango", "Sonarwatch"], - "occurrences": 3 - }, - "0xc3c221fe28c33814c28c822b631fd76047ef1a63": { - "address": "0xc3c221fe28c33814c28c822b631fd76047ef1a63", - "symbol": "MM", - "decimals": 18, - "name": "Millimeter", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xc3c221fe28c33814c28c822b631fd76047ef1a63.png", - "aggregators": ["Rubic", "Rango", "Sonarwatch"], - "occurrences": 3 - }, - "0xed2d13a70acbd61074fc56bd0d0845e35f793e5e": { - "address": "0xed2d13a70acbd61074fc56bd0d0845e35f793e5e", - "symbol": "MOJO", - "decimals": 18, - "name": "Planet Mojo", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xed2d13a70acbd61074fc56bd0d0845e35f793e5e.png", - "aggregators": ["Rubic", "Rango", "Sonarwatch"], - "occurrences": 3 - }, - "0x28b7f370a2b0fd04a9f420c8863b12f35c0f791a": { - "address": "0x28b7f370a2b0fd04a9f420c8863b12f35c0f791a", - "symbol": "MONKEI", - "decimals": 9, - "name": "Monkei", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x28b7f370a2b0fd04a9f420c8863b12f35c0f791a.png", - "aggregators": ["Rubic", "Rango", "Sonarwatch"], - "occurrences": 3 - }, - "0x7d3b4f8d5dd14a0c263c4bee7be434c15e188d3e": { - "address": "0x7d3b4f8d5dd14a0c263c4bee7be434c15e188d3e", - "symbol": "MOE", - "decimals": 18, - "name": "Moe", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x7d3b4f8d5dd14a0c263c4bee7be434c15e188d3e.png", - "aggregators": ["Rubic", "Rango", "Sonarwatch"], - "occurrences": 3 - }, - "0x7865ec47bef9823ad0010c4970ed90a5e8107e53": { - "address": "0x7865ec47bef9823ad0010c4970ed90a5e8107e53", - "symbol": "NAAI", - "decimals": 18, - "name": "NeoAudit AI", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x7865ec47bef9823ad0010c4970ed90a5e8107e53.png", - "aggregators": ["Rubic", "Rango", "Sonarwatch"], - "occurrences": 3 - }, - "0x6431fa4b812a2dcc062a38cb55cc7d18135adead": { - "address": "0x6431fa4b812a2dcc062a38cb55cc7d18135adead", - "symbol": "RANKER", - "decimals": 18, - "name": "RankerDao", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x6431fa4b812a2dcc062a38cb55cc7d18135adead.png", - "aggregators": ["Rubic", "Rango", "Sonarwatch"], - "occurrences": 3 - }, - "0x902169d471b62f22ffadc690ca292ec454d0b260": { - "address": "0x902169d471b62f22ffadc690ca292ec454d0b260", - "symbol": "RBT", - "decimals": 18, - "name": "Reboot World", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x902169d471b62f22ffadc690ca292ec454d0b260.png", - "aggregators": ["Rubic", "Rango", "Sonarwatch"], - "occurrences": 3 - }, - "0x8c85f830bea7d21c71cbd0047aa6de0d7acf3262": { - "address": "0x8c85f830bea7d21c71cbd0047aa6de0d7acf3262", - "symbol": "RNG", - "decimals": 18, - "name": "RuniGun", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x8c85f830bea7d21c71cbd0047aa6de0d7acf3262.png", - "aggregators": ["Rubic", "Rango", "Sonarwatch"], - "occurrences": 3 - }, - "0x96362879529c15c484eabc861c435940e7af22bb": { - "address": "0x96362879529c15c484eabc861c435940e7af22bb", - "symbol": "RPGMAI", - "decimals": 18, - "name": "RPG Maker Ai", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x96362879529c15c484eabc861c435940e7af22bb.png", - "aggregators": ["Rubic", "Rango", "Sonarwatch"], - "occurrences": 3 - }, - "0x78223d31298107f3e310b09797b07967832046a6": { - "address": "0x78223d31298107f3e310b09797b07967832046a6", - "symbol": "RSFT", - "decimals": 18, - "name": "ROYAL SMART FUTURE TOKEN", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x78223d31298107f3e310b09797b07967832046a6.png", - "aggregators": ["Rubic", "Rango", "Sonarwatch"], - "occurrences": 3 - }, - "0x6aa3ecec75ceb388d2e929814ead4fc4cd0648fc": { - "address": "0x6aa3ecec75ceb388d2e929814ead4fc4cd0648fc", - "symbol": "RVSL", - "decimals": 18, - "name": "Reversal", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x6aa3ecec75ceb388d2e929814ead4fc4cd0648fc.png", - "aggregators": ["Rubic", "Rango", "Sonarwatch"], - "occurrences": 3 - }, - "0xfcf7985661d2c3f62208970cbe25e70bcce73e7c": { - "address": "0xfcf7985661d2c3f62208970cbe25e70bcce73e7c", - "symbol": "RWA", - "decimals": 18, - "name": "RWA AI", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xfcf7985661d2c3f62208970cbe25e70bcce73e7c.png", - "aggregators": ["Rubic", "Rango", "Sonarwatch"], - "occurrences": 3 - }, - "0x9b5c38cc2d1ba05ed87c8f8a2418475bacb20073": { - "address": "0x9b5c38cc2d1ba05ed87c8f8a2418475bacb20073", - "symbol": "SBIO", - "decimals": 18, - "name": "Vector Space Biosciences Inc", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x9b5c38cc2d1ba05ed87c8f8a2418475bacb20073.png", - "aggregators": ["Rubic", "Rango", "Sonarwatch"], - "occurrences": 3 - }, - "0x8dbd1331b1de57835b24657ed21d0691e2e7362a": { - "address": "0x8dbd1331b1de57835b24657ed21d0691e2e7362a", - "symbol": "SENT", - "decimals": 18, - "name": "SentimentAI", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x8dbd1331b1de57835b24657ed21d0691e2e7362a.png", - "aggregators": ["Rubic", "Rango", "Sonarwatch"], - "occurrences": 3 - }, - "0xf6f31b8afbf8e3f7fc8246bef26093f02838da98": { - "address": "0xf6f31b8afbf8e3f7fc8246bef26093f02838da98", - "symbol": "UNIVERSE", - "decimals": 18, - "name": "Unicorn Metaverse", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xf6f31b8afbf8e3f7fc8246bef26093f02838da98.png", - "aggregators": ["Rubic", "Rango", "Sonarwatch"], - "occurrences": 3 - }, - "0x20b3b07e9c0e37815e2892ab09496559f57c3603": { - "address": "0x20b3b07e9c0e37815e2892ab09496559f57c3603", - "symbol": "USDV", - "decimals": 18, - "name": "USDV", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x20b3b07e9c0e37815e2892ab09496559f57c3603.png", - "aggregators": ["Rubic", "Rango", "Sonarwatch"], - "occurrences": 3 - }, - "0x46971fc433d90cf2ff1da4a66abe320dfb0ce3b1": { - "address": "0x46971fc433d90cf2ff1da4a66abe320dfb0ce3b1", - "symbol": "WNE", - "decimals": 9, - "name": "Winee3", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x46971fc433d90cf2ff1da4a66abe320dfb0ce3b1.png", - "aggregators": ["Rubic", "Rango", "Sonarwatch"], - "occurrences": 3 - }, - "0xe3668873d944e4a949da05fc8bde419eff543882": { - "address": "0xe3668873d944e4a949da05fc8bde419eff543882", - "symbol": "YPRISMA", - "decimals": 18, - "name": "Yearn yPRISMA", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xe3668873d944e4a949da05fc8bde419eff543882.png", - "aggregators": ["Rubic", "Rango", "Sonarwatch"], - "occurrences": 3 - }, - "0x4208aa4d7a9a10f4f8bb7f6400c1b2161d946969": { - "address": "0x4208aa4d7a9a10f4f8bb7f6400c1b2161d946969", - "symbol": "DONG", - "decimals": 18, - "name": "DongCoin", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x4208aa4d7a9a10f4f8bb7f6400c1b2161d946969.png", - "aggregators": ["Rubic", "Rango", "Sonarwatch"], - "occurrences": 3 - }, - "0x7a486f809c952a6f8dec8cb0ff68173f2b8ed56c": { - "address": "0x7a486f809c952a6f8dec8cb0ff68173f2b8ed56c", - "symbol": "USDX", - "decimals": 6, - "name": "Hex Trust USD", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x7a486f809c952a6f8dec8cb0ff68173f2b8ed56c.png", - "aggregators": ["Rubic", "Rango", "Sonarwatch"], - "occurrences": 3 - }, - "0x6282727946325daa05636adec103b385b7c995bf": { - "address": "0x6282727946325daa05636adec103b385b7c995bf", - "symbol": "VED", - "decimals": 18, - "name": "VedoraAI", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x6282727946325daa05636adec103b385b7c995bf.png", - "aggregators": ["Rubic", "Rango", "Sonarwatch"], - "occurrences": 3 - }, - "0x77ebcf0659bbf4e68d8ce6d84bb25c5cde207b97": { - "address": "0x77ebcf0659bbf4e68d8ce6d84bb25c5cde207b97", - "symbol": "MOOX", - "decimals": 18, - "name": "MOOxMOO", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x77ebcf0659bbf4e68d8ce6d84bb25c5cde207b97.png", - "aggregators": ["Rubic", "Rango", "Sonarwatch"], - "occurrences": 3 - }, - "0x26d3c0d9f4cc4c130097b6afdebe4f5e497e6bdf": { - "address": "0x26d3c0d9f4cc4c130097b6afdebe4f5e497e6bdf", - "symbol": "MNT", - "decimals": 6, - "name": "Mynth", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x26d3c0d9f4cc4c130097b6afdebe4f5e497e6bdf.png", - "aggregators": ["Rubic", "Rango", "Sonarwatch"], - "occurrences": 3 - }, - "0x7e5981c2e072f53a0323d3d80baca3e31fb1550c": { - "address": "0x7e5981c2e072f53a0323d3d80baca3e31fb1550c", - "symbol": "JOVJOU", - "decimals": 18, - "name": "JovJou", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x7e5981c2e072f53a0323d3d80baca3e31fb1550c.png", - "aggregators": ["Rubic", "Rango", "Sonarwatch"], - "occurrences": 3 - }, - "0xa771b49064da011df051052848477f18dba1d2ac": { - "address": "0xa771b49064da011df051052848477f18dba1d2ac", - "symbol": "HNS", - "decimals": 6, - "name": "Handshake", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xa771b49064da011df051052848477f18dba1d2ac.png", - "aggregators": ["Rubic", "Rango", "Sonarwatch"], - "occurrences": 3 - }, - "0x40e5a14e1d151f34fea6b8e6197c338e737f9bf2": { - "address": "0x40e5a14e1d151f34fea6b8e6197c338e737f9bf2", - "symbol": "VY", - "decimals": 18, - "name": "Valinity", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x40e5a14e1d151f34fea6b8e6197c338e737f9bf2.png", - "aggregators": ["Rubic", "Rango", "Sonarwatch"], - "occurrences": 3 - }, - "0x4fd67c2d9e8c4fdd9c66954bafe124ca50fc1819": { - "address": "0x4fd67c2d9e8c4fdd9c66954bafe124ca50fc1819", - "symbol": "RMNER", - "decimals": 18, - "name": "Mner Club", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x4fd67c2d9e8c4fdd9c66954bafe124ca50fc1819.png", - "aggregators": ["Rubic", "Rango", "Sonarwatch"], - "occurrences": 3 - }, - "0x473037de59cf9484632f4a27b509cfe8d4a31404": { - "address": "0x473037de59cf9484632f4a27b509cfe8d4a31404", - "symbol": "GST-ETH", - "decimals": 8, - "name": "STEPN Green Satoshi Token on ETH", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x473037de59cf9484632f4a27b509cfe8d4a31404.png", - "aggregators": ["Rubic", "Rango", "Sonarwatch"], - "occurrences": 3 - }, - "0xd3fb8597d260efb2e693efd500d62a330a00f1eb": { - "address": "0xd3fb8597d260efb2e693efd500d62a330a00f1eb", - "symbol": "TINU", - "decimals": 18, - "name": "Trump Inu", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xd3fb8597d260efb2e693efd500d62a330a00f1eb.png", - "aggregators": ["Rubic", "Rango", "Sonarwatch"], - "occurrences": 3 - }, - "0x979e030a78a540e78ac33c1b7745a298fbfa18b3": { - "address": "0x979e030a78a540e78ac33c1b7745a298fbfa18b3", - "symbol": "GPUL", - "decimals": 9, - "name": "GPULABS", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x979e030a78a540e78ac33c1b7745a298fbfa18b3.png", - "aggregators": ["Rubic", "Rango", "Sonarwatch"], - "occurrences": 3 - }, - "0xa774ffb4af6b0a91331c084e1aebae6ad535e6f3": { - "address": "0xa774ffb4af6b0a91331c084e1aebae6ad535e6f3", - "symbol": "FLEXUSD", - "decimals": 18, - "name": "flexUSD", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xa774ffb4af6b0a91331c084e1aebae6ad535e6f3.png", - "aggregators": ["Rubic", "Rango", "Sonarwatch"], - "occurrences": 3 - }, - "0x114f1388fab456c4ba31b1850b244eedcd024136": { - "address": "0x114f1388fab456c4ba31b1850b244eedcd024136", - "symbol": "COOL", - "decimals": 18, - "name": "Cool Cats", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x114f1388fab456c4ba31b1850b244eedcd024136.png", - "aggregators": ["Rubic", "Rango", "SushiSwap"], - "occurrences": 3 - }, - "0x45e007750cc74b1d2b4dd7072230278d9602c499": { - "address": "0x45e007750cc74b1d2b4dd7072230278d9602c499", - "symbol": "STKXPRT", - "decimals": 6, - "name": "pSTAKE Staked XPRT", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x45e007750cc74b1d2b4dd7072230278d9602c499.png", - "aggregators": ["Rubic", "Rango", "SushiSwap"], - "occurrences": 3 - }, - "0x471ea49dd8e60e697f4cac262b5fafcc307506e4": { - "address": "0x471ea49dd8e60e697f4cac262b5fafcc307506e4", - "symbol": "XCRMRK", - "decimals": 10, - "name": "xcRMRK", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x471ea49dd8e60e697f4cac262b5fafcc307506e4.png", - "aggregators": ["Rubic", "Rango", "SushiSwap"], - "occurrences": 3 - }, - "0xe00639a1f59b52773b7d39d9f9bef07f6248dbae": { - "address": "0xe00639a1f59b52773b7d39d9f9bef07f6248dbae", - "symbol": "DAOX", - "decimals": 18, - "name": "The DAOX Index", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xe00639a1f59b52773b7d39d9f9bef07f6248dbae.png", - "aggregators": ["Rubic", "Rango", "SushiSwap"], - "occurrences": 3 - }, - "0x807a0774236a0fbe9e7f8e7df49edfed0e6777ea": { - "address": "0x807a0774236a0fbe9e7f8e7df49edfed0e6777ea", - "symbol": "BLOCK", - "decimals": 18, - "name": "Block", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x807a0774236a0fbe9e7f8e7df49edfed0e6777ea.png", - "aggregators": ["Rubic", "Rango", "SushiSwap"], - "occurrences": 3 - }, - "0xb5e09e6bf6a5e96934b3fd99a40f7edaca1173ed": { - "address": "0xb5e09e6bf6a5e96934b3fd99a40f7edaca1173ed", - "symbol": "DIVINE", - "decimals": 18, - "name": "divinedao", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xb5e09e6bf6a5e96934b3fd99a40f7edaca1173ed.png", - "aggregators": ["Rubic", "Rango", "SushiSwap"], - "occurrences": 3 - }, - "0x97bbbc5d96875fb78d2f14b7ff8d7a3a74106f17": { - "address": "0x97bbbc5d96875fb78d2f14b7ff8d7a3a74106f17", - "symbol": "ASTRAFER", - "decimals": 18, - "name": "Astrafer", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x97bbbc5d96875fb78d2f14b7ff8d7a3a74106f17.png", - "aggregators": ["Rubic", "Rango", "SushiSwap"], - "occurrences": 3 - }, - "0x8564653879a18c560e7c0ea0e084c516c62f5653": { - "address": "0x8564653879a18c560e7c0ea0e084c516c62f5653", - "symbol": "UBXT", - "decimals": 18, - "name": "UpBots", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x8564653879a18c560e7c0ea0e084c516c62f5653.png", - "aggregators": ["Rubic", "Rango", "SushiSwap"], - "occurrences": 3 - }, - "0x64b3b21ee104f434380270749d8d5bfd481fdcf6": { - "address": "0x64b3b21ee104f434380270749d8d5bfd481fdcf6", - "symbol": "ABTC", - "decimals": 9, - "name": "American Bitcoin", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x64b3b21ee104f434380270749d8d5bfd481fdcf6.png", - "aggregators": ["Rubic", "Rango", "Sonarwatch"], - "occurrences": 3 - }, - "0x3ddd90ba2c4b028334c08b0adc6352ac9e50f2d7": { - "address": "0x3ddd90ba2c4b028334c08b0adc6352ac9e50f2d7", - "symbol": "GRID", - "decimals": 18, - "name": "OpenGRID", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x3ddd90ba2c4b028334c08b0adc6352ac9e50f2d7.png", - "aggregators": ["Rubic", "Rango", "Sonarwatch"], - "occurrences": 3 - }, - "0xa711bcc2b6f5c4fc3dfaccc2a01148765cbbab1c": { - "address": "0xa711bcc2b6f5c4fc3dfaccc2a01148765cbbab1c", - "symbol": "GROK15", - "decimals": 9, - "name": "Grok1 5", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xa711bcc2b6f5c4fc3dfaccc2a01148765cbbab1c.png", - "aggregators": ["Rubic", "Rango", "Sonarwatch"], - "occurrences": 3 - }, - "0x5d5e244660ca05c42073c9a526616d99f2c99516": { - "address": "0x5d5e244660ca05c42073c9a526616d99f2c99516", - "symbol": "GTCOIN", - "decimals": 18, - "name": "Game Tree", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x5d5e244660ca05c42073c9a526616d99f2c99516.png", - "aggregators": ["Rubic", "Rango", "Sonarwatch"], - "occurrences": 3 - }, - "0x986df267bb88a0a0be06dd4a1052e1bdec1a6172": { - "address": "0x986df267bb88a0a0be06dd4a1052e1bdec1a6172", - "symbol": "HQ", - "decimals": 18, - "name": "HyperQuant", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x986df267bb88a0a0be06dd4a1052e1bdec1a6172.png", - "aggregators": ["Rubic", "Rango", "Sonarwatch"], - "occurrences": 3 - }, - "0xed1ddc491a2c8b1f7d6e8933580a47e124ea38db": { - "address": "0xed1ddc491a2c8b1f7d6e8933580a47e124ea38db", - "symbol": "IOC", - "decimals": 18, - "name": "Intelligence On Chain", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xed1ddc491a2c8b1f7d6e8933580a47e124ea38db.png", - "aggregators": ["Rubic", "Rango", "Sonarwatch"], - "occurrences": 3 - }, - "0x3b21418081528845a6df4e970bd2185545b712ba": { - "address": "0x3b21418081528845a6df4e970bd2185545b712ba", - "symbol": "CHI", - "decimals": 18, - "name": "Chi Protocol", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x3b21418081528845a6df4e970bd2185545b712ba.png", - "aggregators": ["Rubic", "Rango", "Sonarwatch"], - "occurrences": 3 - }, - "0xe3e24b4ea87935e15bbe99a24e9ace9998e4614d": { - "address": "0xe3e24b4ea87935e15bbe99a24e9ace9998e4614d", - "symbol": "AIDI", - "decimals": 18, - "name": "Aidi Finance", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xe3e24b4ea87935e15bbe99a24e9ace9998e4614d.png", - "aggregators": ["Rubic", "Rango", "Sonarwatch"], - "occurrences": 3 - }, - "0x722f97a435278b7383a1e3c47f41773bebf3232c": { - "address": "0x722f97a435278b7383a1e3c47f41773bebf3232c", - "symbol": "UCM", - "decimals": 18, - "name": "UCROWDME", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x722f97a435278b7383a1e3c47f41773bebf3232c.png", - "aggregators": ["Rubic", "Rango", "Sonarwatch"], - "occurrences": 3 - }, - "0x4efce4c758ddfb3911a1a1282a29ce0bdb16ef86": { - "address": "0x4efce4c758ddfb3911a1a1282a29ce0bdb16ef86", - "symbol": "!", - "decimals": 18, - "name": "WOW", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x4efce4c758ddfb3911a1a1282a29ce0bdb16ef86.png", - "aggregators": ["Rubic", "Rango", "Sonarwatch"], - "occurrences": 3 - }, - "0x1eb7bd905855c483db19f53c8c4d42db42a159fc": { - "address": "0x1eb7bd905855c483db19f53c8c4d42db42a159fc", - "symbol": "NRDC", - "decimals": 18, - "name": "Nordic Ai", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x1eb7bd905855c483db19f53c8c4d42db42a159fc.png", - "aggregators": ["Rubic", "Rango", "Sonarwatch"], - "occurrences": 3 - }, - "0x4c0f743928ca8fa7fb24ad89669c8a7838f34917": { - "address": "0x4c0f743928ca8fa7fb24ad89669c8a7838f34917", - "symbol": "STACK", - "decimals": 18, - "name": "STACKER AI", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x4c0f743928ca8fa7fb24ad89669c8a7838f34917.png", - "aggregators": ["Rubic", "Rango", "Sonarwatch"], - "occurrences": 3 - }, - "0xfdb15e5e6799be72798b1ccfaecbf186bf73a0c4": { - "address": "0xfdb15e5e6799be72798b1ccfaecbf186bf73a0c4", - "symbol": "NTX", - "decimals": 8, - "name": "NitroEX", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xfdb15e5e6799be72798b1ccfaecbf186bf73a0c4.png", - "aggregators": ["Rubic", "Rango", "Sonarwatch"], - "occurrences": 3 - }, - "0x26c75c7d815efe6bf5a6decd17d20d1fdad96a08": { - "address": "0x26c75c7d815efe6bf5a6decd17d20d1fdad96a08", - "symbol": "OCW", - "decimals": 18, - "name": "OctopusWallet", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x26c75c7d815efe6bf5a6decd17d20d1fdad96a08.png", - "aggregators": ["Rubic", "Rango", "Sonarwatch"], - "occurrences": 3 - }, - "0xbd89b8d708809e7022135313683663911826977e": { - "address": "0xbd89b8d708809e7022135313683663911826977e", - "symbol": "OME", - "decimals": 18, - "name": "O MEE", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xbd89b8d708809e7022135313683663911826977e.png", - "aggregators": ["Rubic", "Rango", "Sonarwatch"], - "occurrences": 3 - }, - "0xc72633f995e98ac3bb8a89e6a9c4af335c3d6e44": { - "address": "0xc72633f995e98ac3bb8a89e6a9c4af335c3d6e44", - "symbol": "OSEA", - "decimals": 18, - "name": "Omnisea", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xc72633f995e98ac3bb8a89e6a9c4af335c3d6e44.png", - "aggregators": ["Rubic", "Rango", "Sonarwatch"], - "occurrences": 3 - }, - "0x012e0e6342308b247f36ee500ecb14dc77a7a8c1": { - "address": "0x012e0e6342308b247f36ee500ecb14dc77a7a8c1", - "symbol": "SKT", - "decimals": 8, - "name": "Sukhavati Network", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x012e0e6342308b247f36ee500ecb14dc77a7a8c1.png", - "aggregators": ["Rubic", "Rango", "Sonarwatch"], - "occurrences": 3 - }, - "0xfe7290b932cd0d5aec29c57394e87cdaa41cc054": { - "address": "0xfe7290b932cd0d5aec29c57394e87cdaa41cc054", - "symbol": "SMART", - "decimals": 9, - "name": "Smart AI", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xfe7290b932cd0d5aec29c57394e87cdaa41cc054.png", - "aggregators": ["Rubic", "Rango", "Sonarwatch"], - "occurrences": 3 - }, - "0xc0f1728d9513efc316d0e93a0758c992f88b0809": { - "address": "0xc0f1728d9513efc316d0e93a0758c992f88b0809", - "symbol": "SWAT", - "decimals": 8, - "name": "SWTCoin", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xc0f1728d9513efc316d0e93a0758c992f88b0809.png", - "aggregators": ["Rubic", "Rango", "Sonarwatch"], - "occurrences": 3 - }, - "0x93e32efafd24973d45f363a76d73ccb9edf59986": { - "address": "0x93e32efafd24973d45f363a76d73ccb9edf59986", - "symbol": "BTL", - "decimals": 6, - "name": "Bitlocus", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x93e32efafd24973d45f363a76d73ccb9edf59986.png", - "aggregators": ["Rubic", "Rango", "Sonarwatch"], - "occurrences": 3 - }, - "0x2025bf4e0c1117685b1bf2ea2be56c7deb11bc99": { - "address": "0x2025bf4e0c1117685b1bf2ea2be56c7deb11bc99", - "symbol": "ROBIE", - "decimals": 18, - "name": "Robie", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x2025bf4e0c1117685b1bf2ea2be56c7deb11bc99.png", - "aggregators": ["Rubic", "Rango", "Sonarwatch"], - "occurrences": 3 - }, - "0x46d0dac0926fa16707042cadc23f1eb4141fe86b": { - "address": "0x46d0dac0926fa16707042cadc23f1eb4141fe86b", - "symbol": "SNM", - "decimals": 18, - "name": "SONM", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x46d0dac0926fa16707042cadc23f1eb4141fe86b.png", - "aggregators": ["Rubic", "Rango", "Sonarwatch"], - "occurrences": 3 - }, - "0x0f0bbaf936f7ada2aca5b80bed7b655758d66950": { - "address": "0x0f0bbaf936f7ada2aca5b80bed7b655758d66950", - "symbol": "WIFPEPEMOG", - "decimals": 9, - "name": "WIFPEPEMOGINU", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x0f0bbaf936f7ada2aca5b80bed7b655758d66950.png", - "aggregators": ["Rubic", "Rango", "Sonarwatch"], - "occurrences": 3 - }, - "0x4d9b0b7a6db042cb990d36a0df5aa2960e552f16": { - "address": "0x4d9b0b7a6db042cb990d36a0df5aa2960e552f16", - "symbol": "TETHER", - "decimals": 9, - "name": "Hpohs888inu", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x4d9b0b7a6db042cb990d36a0df5aa2960e552f16.png", - "aggregators": ["Rubic", "Rango", "Sonarwatch"], - "occurrences": 3 - }, - "0x661013bb8d1c95d86d9c85f76e9004561f1bb36f": { - "address": "0x661013bb8d1c95d86d9c85f76e9004561f1bb36f", - "symbol": "DRBT", - "decimals": 18, - "name": "DeFi Robot", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x661013bb8d1c95d86d9c85f76e9004561f1bb36f.png", - "aggregators": ["Rubic", "Rango", "Sonarwatch"], - "occurrences": 3 - }, - "0x7fed466b893c716235e1b8d685c913f7d2797463": { - "address": "0x7fed466b893c716235e1b8d685c913f7d2797463", - "symbol": "THUB", - "decimals": 9, - "name": "TensorHub", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x7fed466b893c716235e1b8d685c913f7d2797463.png", - "aggregators": ["Rubic", "Rango", "Sonarwatch"], - "occurrences": 3 - }, - "0x8c6691704d0c3630d6a4fbd5383e0f8e59e10616": { - "address": "0x8c6691704d0c3630d6a4fbd5383e0f8e59e10616", - "symbol": "TRITON", - "decimals": 18, - "name": "Triton", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x8c6691704d0c3630d6a4fbd5383e0f8e59e10616.png", - "aggregators": ["Rubic", "Rango", "Sonarwatch"], - "occurrences": 3 - }, - "0x2f5fa8adf5f09a5f9de05b65fe82a404913f02c4": { - "address": "0x2f5fa8adf5f09a5f9de05b65fe82a404913f02c4", - "symbol": "TROLL20", - "decimals": 18, - "name": "TROLL 2 0", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x2f5fa8adf5f09a5f9de05b65fe82a404913f02c4.png", - "aggregators": ["Rubic", "Rango", "Sonarwatch"], - "occurrences": 3 - }, - "0x693170bd3c37dcd46168d8b399aa7551a32de2af": { - "address": "0x693170bd3c37dcd46168d8b399aa7551a32de2af", - "symbol": "TAOSHARD", - "decimals": 18, - "name": "TAO Subnet Sharding", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x693170bd3c37dcd46168d8b399aa7551a32de2af.png", - "aggregators": ["Rubic", "Rango", "Sonarwatch"], - "occurrences": 3 - }, - "0x9532ca064278ce3ba4fcc66cebec6d9f04f58f70": { - "address": "0x9532ca064278ce3ba4fcc66cebec6d9f04f58f70", - "symbol": "BOTC", - "decimals": 9, - "name": "Bot Compiler", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x9532ca064278ce3ba4fcc66cebec6d9f04f58f70.png", - "aggregators": ["Rubic", "Rango", "Sonarwatch"], - "occurrences": 3 - }, - "0x0058c8581b9fed6864faa654505bc89890cdb2dd": { - "address": "0x0058c8581b9fed6864faa654505bc89890cdb2dd", - "symbol": "BS9000", - "decimals": 9, - "name": "BabySmurf9000", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x0058c8581b9fed6864faa654505bc89890cdb2dd.png", - "aggregators": ["Rubic", "Rango", "Sonarwatch"], - "occurrences": 3 - }, - "0xbd6323a83b613f668687014e8a5852079494fb68": { - "address": "0xbd6323a83b613f668687014e8a5852079494fb68", - "symbol": "BTC", - "decimals": 18, - "name": "BlackrockTradingCurrency", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xbd6323a83b613f668687014e8a5852079494fb68.png", - "aggregators": ["Rubic", "Rango", "Sonarwatch"], - "occurrences": 3 - }, - "0x8ef32a03784c8fd63bbf027251b9620865bd54b6": { - "address": "0x8ef32a03784c8fd63bbf027251b9620865bd54b6", - "symbol": "BULLET", - "decimals": 8, - "name": "Bullet Gate Betting Token", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x8ef32a03784c8fd63bbf027251b9620865bd54b6.png", - "aggregators": ["Rubic", "Rango", "Sonarwatch"], - "occurrences": 3 - }, - "0xf36c5f04127f7470834ed6f98bddc1be62aba48d": { - "address": "0xf36c5f04127f7470834ed6f98bddc1be62aba48d", - "symbol": "CAI", - "decimals": 18, - "name": "CryptoAI", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xf36c5f04127f7470834ed6f98bddc1be62aba48d.png", - "aggregators": ["Rubic", "Rango", "Sonarwatch"], - "occurrences": 3 - }, - "0xc975342a95ccb75378ddc646b8620fa3cd5bc051": { - "address": "0xc975342a95ccb75378ddc646b8620fa3cd5bc051", - "symbol": "PUNKETH-20", - "decimals": 18, - "name": "MetaStreet V2 mwstETH WPUNKS 20", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xc975342a95ccb75378ddc646b8620fa3cd5bc051.png", - "aggregators": ["Rubic", "Rango", "Sonarwatch"], - "occurrences": 3 - }, - "0x571f54d23cdf2211c83e9a0cbd92aca36c48fa02": { - "address": "0x571f54d23cdf2211c83e9a0cbd92aca36c48fa02", - "symbol": "PAUSD", - "decimals": 18, - "name": "Parallel USD", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x571f54d23cdf2211c83e9a0cbd92aca36c48fa02.png", - "aggregators": ["Rubic", "Rango", "Sonarwatch"], - "occurrences": 3 - }, - "0xbc404429558292ee2d769e57d57d6e74bbd2792d": { - "address": "0xbc404429558292ee2d769e57d57d6e74bbd2792d", - "symbol": "SUSX", - "decimals": 18, - "name": "Savings USX", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xbc404429558292ee2d769e57d57d6e74bbd2792d.png", - "aggregators": ["Rubic", "Rango", "Sonarwatch"], - "occurrences": 3 - }, - "0x53f7535cc14ff028de181f9789d403c838b5f885": { - "address": "0x53f7535cc14ff028de181f9789d403c838b5f885", - "symbol": "PERPX", - "decimals": 18, - "name": "Perpex", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x53f7535cc14ff028de181f9789d403c838b5f885.png", - "aggregators": ["Rubic", "Rango", "Sonarwatch"], - "occurrences": 3 - }, - "0xcffcfdada28ab44d5440301470dcd410e75c4765": { - "address": "0xcffcfdada28ab44d5440301470dcd410e75c4765", - "symbol": "PRF", - "decimals": 18, - "name": "Parifi", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xcffcfdada28ab44d5440301470dcd410e75c4765.png", - "aggregators": ["Rubic", "Rango", "Sonarwatch"], - "occurrences": 3 - }, - "0x22c158a3f3ea3419176c083aa11eb593e94965dc": { - "address": "0x22c158a3f3ea3419176c083aa11eb593e94965dc", - "symbol": "QTC", - "decimals": 18, - "name": "Quantum Cloak", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x22c158a3f3ea3419176c083aa11eb593e94965dc.png", - "aggregators": ["Rubic", "Rango", "Sonarwatch"], - "occurrences": 3 - }, - "0x1c74d8c8fe37b0fa47debc82e0ab6925a3dc4a2f": { - "address": "0x1c74d8c8fe37b0fa47debc82e0ab6925a3dc4a2f", - "symbol": "STPR", - "decimals": 18, - "name": "Strike Protocol", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x1c74d8c8fe37b0fa47debc82e0ab6925a3dc4a2f.png", - "aggregators": ["Rubic", "Rango", "Sonarwatch"], - "occurrences": 3 - }, - "0x9fb83c0635de2e815fd1c21b3a292277540c2e8d": { - "address": "0x9fb83c0635de2e815fd1c21b3a292277540c2e8d", - "symbol": "FEVR", - "decimals": 18, - "name": "RealFevr", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x9fb83c0635de2e815fd1c21b3a292277540c2e8d.png", - "aggregators": ["Rubic", "Rango", "Sonarwatch"], - "occurrences": 3 - }, - "0xfd4ca4a692f14d88af3e7ae13cf00d5095213b25": { - "address": "0xfd4ca4a692f14d88af3e7ae13cf00d5095213b25", - "symbol": "WSKR", - "decimals": 18, - "name": "Wiskers", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xfd4ca4a692f14d88af3e7ae13cf00d5095213b25.png", - "aggregators": ["Rubic", "Rango", "Sonarwatch"], - "occurrences": 3 - }, - "0x05bbe7240de66f6480c9aeda77c1376b13393f83": { - "address": "0x05bbe7240de66f6480c9aeda77c1376b13393f83", - "symbol": "XNO", - "decimals": 18, - "name": "Xeno", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x05bbe7240de66f6480c9aeda77c1376b13393f83.png", - "aggregators": ["Rubic", "Rango", "Sonarwatch"], - "occurrences": 3 - }, - "0x67037abcfefd566aeff31c240168c25d65a0754d": { - "address": "0x67037abcfefd566aeff31c240168c25d65a0754d", - "symbol": "ZAI", - "decimals": 18, - "name": "ZAIHO", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x67037abcfefd566aeff31c240168c25d65a0754d.png", - "aggregators": ["Rubic", "Rango", "Sonarwatch"], - "occurrences": 3 - }, - "0x396de8bb0a1745b531bf5cd5952539a1b5fe66e0": { - "address": "0x396de8bb0a1745b531bf5cd5952539a1b5fe66e0", - "symbol": "ZAPEX", - "decimals": 9, - "name": "ZapExchange", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x396de8bb0a1745b531bf5cd5952539a1b5fe66e0.png", - "aggregators": ["Rubic", "Rango", "Sonarwatch"], - "occurrences": 3 - }, - "0xa163af4ab79cd705e5b16941b8619a79805bf9c7": { - "address": "0xa163af4ab79cd705e5b16941b8619a79805bf9c7", - "symbol": "BABYMARVIN", - "decimals": 18, - "name": "BabyMarvin Inu", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xa163af4ab79cd705e5b16941b8619a79805bf9c7.png", - "aggregators": ["Rubic", "Rango", "Sonarwatch"], - "occurrences": 3 - }, - "0x0026dfbd8dbb6f8d0c88303cc1b1596409fda542": { - "address": "0x0026dfbd8dbb6f8d0c88303cc1b1596409fda542", - "symbol": "SANSHU", - "decimals": 18, - "name": "SANSHU", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x0026dfbd8dbb6f8d0c88303cc1b1596409fda542.png", - "aggregators": ["Rubic", "Rango", "Sonarwatch"], - "occurrences": 3 - }, - "0x64669032f612ae608671853ff8871df0889870a9": { - "address": "0x64669032f612ae608671853ff8871df0889870a9", - "symbol": "INU", - "decimals": 18, - "name": "INUGAMES", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x64669032f612ae608671853ff8871df0889870a9.png", - "aggregators": ["Rubic", "Rango", "Sonarwatch"], - "occurrences": 3 - }, - "0xd22a61e8503bea5842e5e0126ca9ffc4dd492084": { - "address": "0xd22a61e8503bea5842e5e0126ca9ffc4dd492084", - "symbol": "صباح الفرولة", - "decimals": 18, - "name": "Strawberry Elephant", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xd22a61e8503bea5842e5e0126ca9ffc4dd492084.png", - "aggregators": ["Rubic", "Rango", "Sonarwatch"], - "occurrences": 3 - }, - "0xa75e7928d3de682e3f44da60c26f33117c4e6c5c": { - "address": "0xa75e7928d3de682e3f44da60c26f33117c4e6c5c", - "symbol": "PEL", - "decimals": 18, - "name": "Propel", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xa75e7928d3de682e3f44da60c26f33117c4e6c5c.png", - "aggregators": ["Rubic", "Rango", "Sonarwatch"], - "occurrences": 3 - }, - "0x24ae2da0f361aa4be46b48eb19c91e02c5e4f27e": { - "address": "0x24ae2da0f361aa4be46b48eb19c91e02c5e4f27e", - "symbol": "MEVETH", - "decimals": 18, - "name": "mevETH", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x24ae2da0f361aa4be46b48eb19c91e02c5e4f27e.png", - "aggregators": ["Rubic", "Rango", "Sonarwatch"], - "occurrences": 3 - }, - "0xe3fedaecd47aa8eab6b23227b0ee56f092c967a9": { - "address": "0xe3fedaecd47aa8eab6b23227b0ee56f092c967a9", - "symbol": "PST", - "decimals": 18, - "name": "Primas", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xe3fedaecd47aa8eab6b23227b0ee56f092c967a9.png", - "aggregators": ["Rubic", "Rango", "Sonarwatch"], - "occurrences": 3 - }, - "0xf38feedb0c85c1e1d6864c7513ac646d28bb0cfc": { - "address": "0xf38feedb0c85c1e1d6864c7513ac646d28bb0cfc", - "symbol": "STZETA", - "decimals": 18, - "name": "Accumulated Finance Staked ZETA", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xf38feedb0c85c1e1d6864c7513ac646d28bb0cfc.png", - "aggregators": ["Rubic", "Rango", "Sonarwatch"], - "occurrences": 3 - }, - "0x9b00e6e8d787b13756eb919786c9745054db64f9": { - "address": "0x9b00e6e8d787b13756eb919786c9745054db64f9", - "symbol": "WSIENNA", - "decimals": 18, - "name": "Sienna ERC 20", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x9b00e6e8d787b13756eb919786c9745054db64f9.png", - "aggregators": ["Rubic", "Rango", "Sonarwatch"], - "occurrences": 3 - }, - "0xc03b43d492d904406db2d7d57e67c7e8234ba752": { - "address": "0xc03b43d492d904406db2d7d57e67c7e8234ba752", - "symbol": "WUSDR", - "decimals": 9, - "name": "Wrapped USDR", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xc03b43d492d904406db2d7d57e67c7e8234ba752.png", - "aggregators": ["Rubic", "Rango", "Sonarwatch"], - "occurrences": 3 - }, - "0x198d7387fa97a73f05b8578cdeff8f2a1f34cd1f": { - "address": "0x198d7387fa97a73f05b8578cdeff8f2a1f34cd1f", - "symbol": "WJAURA", - "decimals": 18, - "name": "Wrapped Jones AURA", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x198d7387fa97a73f05b8578cdeff8f2a1f34cd1f.png", - "aggregators": ["Rubic", "Rango", "Sonarwatch"], - "occurrences": 3 - }, - "0xaafec8e08d524d534327fa13fb306f440b5f88eb": { - "address": "0xaafec8e08d524d534327fa13fb306f440b5f88eb", - "symbol": "WCTC", - "decimals": 18, - "name": "Wrapped CTC", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xaafec8e08d524d534327fa13fb306f440b5f88eb.png", - "aggregators": ["Rubic", "Rango", "Sonarwatch"], - "occurrences": 3 - }, - "0xa684eaf215ad323452e2b2bf6f817d4aa5c116ab": { - "address": "0xa684eaf215ad323452e2b2bf6f817d4aa5c116ab", - "symbol": "LPETH", - "decimals": 18, - "name": "Loop ETH", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xa684eaf215ad323452e2b2bf6f817d4aa5c116ab.png", - "aggregators": ["Rubic", "Rango", "Sonarwatch"], - "occurrences": 3 - }, - "0xcaa79bf8b1d00bf3d4f6dbec6221955871c04618": { - "address": "0xcaa79bf8b1d00bf3d4f6dbec6221955871c04618", - "symbol": "CROC", - "decimals": 18, - "name": "CrocBot", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xcaa79bf8b1d00bf3d4f6dbec6221955871c04618.png", - "aggregators": ["Rubic", "Rango", "Sonarwatch"], - "occurrences": 3 - }, - "0x482702745260ffd69fc19943f70cffe2cacd70e9": { - "address": "0x482702745260ffd69fc19943f70cffe2cacd70e9", - "symbol": "JENNER", - "decimals": 18, - "name": "Caitlyn Jenner", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x482702745260ffd69fc19943f70cffe2cacd70e9.png", - "aggregators": ["Rubic", "Rango", "Sonarwatch"], - "occurrences": 3 - }, - "0x1bf7fd22709733ccd7c45ab27dd02c7ec8e50078": { - "address": "0x1bf7fd22709733ccd7c45ab27dd02c7ec8e50078", - "symbol": "QTCON", - "decimals": 18, - "name": "Quiztok", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x1bf7fd22709733ccd7c45ab27dd02c7ec8e50078.png", - "aggregators": ["Rubic", "Rango", "Sonarwatch"], - "occurrences": 3 - }, - "0xb7cffebb06621287c7850ffefb22c30252e78e6b": { - "address": "0xb7cffebb06621287c7850ffefb22c30252e78e6b", - "symbol": "DRIFT", - "decimals": 18, - "name": "Drift Token", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xb7cffebb06621287c7850ffefb22c30252e78e6b.png", - "aggregators": ["Rubic", "Rango", "Sonarwatch"], - "occurrences": 3 - }, - "0x19193f450086d0442157b852081976d41657ad56": { - "address": "0x19193f450086d0442157b852081976d41657ad56", - "symbol": "NNT", - "decimals": 18, - "name": "Nunu Spirits", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x19193f450086d0442157b852081976d41657ad56.png", - "aggregators": ["Rubic", "Rango", "Sonarwatch"], - "occurrences": 3 - }, - "0x9ba021b0a9b958b5e75ce9f6dff97c7ee52cb3e6": { - "address": "0x9ba021b0a9b958b5e75ce9f6dff97c7ee52cb3e6", - "symbol": "APXETH", - "decimals": 18, - "name": "Dinero apxETH", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x9ba021b0a9b958b5e75ce9f6dff97c7ee52cb3e6.png", - "aggregators": ["Rubic", "Rango", "Sonarwatch"], - "occurrences": 3 - }, - "0x39de85301c78f4d623e5c05cde2fd119a3a92cd9": { - "address": "0x39de85301c78f4d623e5c05cde2fd119a3a92cd9", - "symbol": "BLOBS", - "decimals": 9, - "name": "blobs", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x39de85301c78f4d623e5c05cde2fd119a3a92cd9.png", - "aggregators": ["Rubic", "Rango", "Sonarwatch"], - "occurrences": 3 - }, - "0x005f893ecd7bf9667195642f7649da8163e23658": { - "address": "0x005f893ecd7bf9667195642f7649da8163e23658", - "symbol": "DGNETH", - "decimals": 18, - "name": "Degen ETH Staked ETH", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x005f893ecd7bf9667195642f7649da8163e23658.png", - "aggregators": ["Rubic", "Rango", "Sonarwatch"], - "occurrences": 3 - }, - "0xc4b7af50644c661e270fbb8da770049c9fc0bbe1": { - "address": "0xc4b7af50644c661e270fbb8da770049c9fc0bbe1", - "symbol": "GOS", - "decimals": 18, - "name": "Gelios", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xc4b7af50644c661e270fbb8da770049c9fc0bbe1.png", - "aggregators": ["Rubic", "Rango", "Sonarwatch"], - "occurrences": 3 - }, - "0x270b7748cdf8243bfe68face7230ef0fce695389": { - "address": "0x270b7748cdf8243bfe68face7230ef0fce695389", - "symbol": "HETH", - "decimals": 18, - "name": "Hinkal Staked ETH", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x270b7748cdf8243bfe68face7230ef0fce695389.png", - "aggregators": ["Rubic", "Rango", "Sonarwatch"], - "occurrences": 3 - }, - "0x2d787d4f5005bd66ac910c2e821241625c406ed5": { - "address": "0x2d787d4f5005bd66ac910c2e821241625c406ed5", - "symbol": "BERRY", - "decimals": 18, - "name": "Berry", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x2d787d4f5005bd66ac910c2e821241625c406ed5.png", - "aggregators": ["Rubic", "Rango", "Sonarwatch"], - "occurrences": 3 - }, - "0x34ba042827996821cffeb06477d48a2ff9474483": { - "address": "0x34ba042827996821cffeb06477d48a2ff9474483", - "symbol": "SHIB20", - "decimals": 8, - "name": "Shib2 0", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x34ba042827996821cffeb06477d48a2ff9474483.png", - "aggregators": ["Rubic", "Rango", "Sonarwatch"], - "occurrences": 3 - }, - "0xd1c8fa30fded3e0031dc24c1646d74108b096cc2": { - "address": "0xd1c8fa30fded3e0031dc24c1646d74108b096cc2", - "symbol": "LUCKY", - "decimals": 9, - "name": "Luckyinu", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xd1c8fa30fded3e0031dc24c1646d74108b096cc2.png", - "aggregators": ["Rubic", "Rango", "Sonarwatch"], - "occurrences": 3 - }, - "0x723696965f47b990dff00064fcaca95f0ee01123": { - "address": "0x723696965f47b990dff00064fcaca95f0ee01123", - "symbol": "ARBOT", - "decimals": 18, - "name": "Alpha Radar AI", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x723696965f47b990dff00064fcaca95f0ee01123.png", - "aggregators": ["Rubic", "Rango", "Sonarwatch"], - "occurrences": 3 - }, - "0x7b20798866fe3320ec5395e9978a3c98195c7c36": { - "address": "0x7b20798866fe3320ec5395e9978a3c98195c7c36", - "symbol": "DEGEN", - "decimals": 18, - "name": "DegenAds", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x7b20798866fe3320ec5395e9978a3c98195c7c36.png", - "aggregators": ["Rubic", "Rango", "Sonarwatch"], - "occurrences": 3 - }, - "0x024b6e7dc26f4d5579bdd936f8d7bc31f2339999": { - "address": "0x024b6e7dc26f4d5579bdd936f8d7bc31f2339999", - "symbol": "MIS", - "decimals": 18, - "name": "Mithril Share", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x024b6e7dc26f4d5579bdd936f8d7bc31f2339999.png", - "aggregators": ["Rubic", "Rango", "Sonarwatch"], - "occurrences": 3 - }, - "0x66d592cc979d441a3e4dbb6e043c3bdad241dab7": { - "address": "0x66d592cc979d441a3e4dbb6e043c3bdad241dab7", - "symbol": "ZERO", - "decimals": 18, - "name": "Zero Money", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x66d592cc979d441a3e4dbb6e043c3bdad241dab7.png", - "aggregators": ["Rubic", "Rango", "SushiSwap"], - "occurrences": 3 - }, - "0xadc234a4e90e2045f353f5d4fcde66144d23b458": { - "address": "0xadc234a4e90e2045f353f5d4fcde66144d23b458", - "symbol": "FUSDT", - "decimals": 6, - "name": "Fluid USDT", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xadc234a4e90e2045f353f5d4fcde66144d23b458.png", - "aggregators": ["Rubic", "Rango", "SushiSwap"], - "occurrences": 3 - }, - "0x3c37577f1de12046aea6975862559a50d8f50158": { - "address": "0x3c37577f1de12046aea6975862559a50d8f50158", - "symbol": "ETHC", - "decimals": 18, - "name": "ETH Coin", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x3c37577f1de12046aea6975862559a50d8f50158.png", - "aggregators": ["Rubic", "Rango", "SushiSwap"], - "occurrences": 3 - }, - "0xe5597f0723eeaba1b26948e06f008bf0fc1e37e6": { - "address": "0xe5597f0723eeaba1b26948e06f008bf0fc1e37e6", - "symbol": "GM", - "decimals": 18, - "name": "GM", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xe5597f0723eeaba1b26948e06f008bf0fc1e37e6.png", - "aggregators": ["Rubic", "Rango", "Sonarwatch"], - "occurrences": 3 - }, - "0x20d60c6eb195868d4643f2c9b0809e4de6cc003d": { - "address": "0x20d60c6eb195868d4643f2c9b0809e4de6cc003d", - "symbol": "PLY", - "decimals": 6, - "name": "PlayNity", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x20d60c6eb195868d4643f2c9b0809e4de6cc003d.png", - "aggregators": ["Rubic", "Rango", "Sonarwatch"], - "occurrences": 3 - }, - "0x9e6b19874e97fe8e8cad77f2c0ab5e7a693e5dbf": { - "address": "0x9e6b19874e97fe8e8cad77f2c0ab5e7a693e5dbf", - "symbol": "ISHND", - "decimals": 18, - "name": "StrongHands Finance", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x9e6b19874e97fe8e8cad77f2c0ab5e7a693e5dbf.png", - "aggregators": ["Rubic", "Rango", "Sonarwatch"], - "occurrences": 3 - }, - "0x3e70f6806171873d17d4bfc984a6f9d20f5a9018": { - "address": "0x3e70f6806171873d17d4bfc984a6f9d20f5a9018", - "symbol": "COIN", - "decimals": 18, - "name": "BrianArmstrongTrumpYellenGTA6", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x3e70f6806171873d17d4bfc984a6f9d20f5a9018.png", - "aggregators": ["Rubic", "Rango", "Sonarwatch"], - "occurrences": 3 - }, - "0xefc3f1ecff8b9e9389323ef610bb9149236e62fd": { - "address": "0xefc3f1ecff8b9e9389323ef610bb9149236e62fd", - "symbol": "LMI", - "decimals": 18, - "name": "Lucky Mio", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xefc3f1ecff8b9e9389323ef610bb9149236e62fd.png", - "aggregators": ["Rubic", "Rango", "Sonarwatch"], - "occurrences": 3 - }, - "0x7c5d5100b339fe7d995a893af6cb496b9474373c": { - "address": "0x7c5d5100b339fe7d995a893af6cb496b9474373c", - "symbol": "LOON", - "decimals": 18, - "name": "Loon Network", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x7c5d5100b339fe7d995a893af6cb496b9474373c.png", - "aggregators": ["Rubic", "Rango", "Sonarwatch"], - "occurrences": 3 - }, - "0x0a8f4c4f23d72857745e26695dcd8dedf8e349b9": { - "address": "0x0a8f4c4f23d72857745e26695dcd8dedf8e349b9", - "symbol": "MARKS", - "decimals": 18, - "name": "Marksman", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x0a8f4c4f23d72857745e26695dcd8dedf8e349b9.png", - "aggregators": ["Rubic", "Rango", "Sonarwatch"], - "occurrences": 3 - }, - "0x144805be43c48ef85435c94e0da4cb4efb1ab4f3": { - "address": "0x144805be43c48ef85435c94e0da4cb4efb1ab4f3", - "symbol": "MBX", - "decimals": 18, - "name": "MetaBlox", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x144805be43c48ef85435c94e0da4cb4efb1ab4f3.png", - "aggregators": ["Rubic", "Rango", "Sonarwatch"], - "occurrences": 3 - }, - "0x6c3d78e55fc939da4ca94760f6b27c3425a7a865": { - "address": "0x6c3d78e55fc939da4ca94760f6b27c3425a7a865", - "symbol": "MEGADEATH", - "decimals": 9, - "name": "MEGADEATH PEPE", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x6c3d78e55fc939da4ca94760f6b27c3425a7a865.png", - "aggregators": ["Rubic", "Rango", "Sonarwatch"], - "occurrences": 3 - }, - "0x34bdf48a8f753de4822a6cfb1fee275f9b4d662e": { - "address": "0x34bdf48a8f753de4822a6cfb1fee275f9b4d662e", - "symbol": "BKC", - "decimals": 18, - "name": "FACTS", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x34bdf48a8f753de4822a6cfb1fee275f9b4d662e.png", - "aggregators": ["Rubic", "Rango", "Sonarwatch"], - "occurrences": 3 - }, - "0x142f4330ab3eda738cb373791c2e99cc325bed20": { - "address": "0x142f4330ab3eda738cb373791c2e99cc325bed20", - "symbol": "SOB", - "decimals": 9, - "name": "Secured On Blockchain", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x142f4330ab3eda738cb373791c2e99cc325bed20.png", - "aggregators": ["Rubic", "Rango", "Sonarwatch"], - "occurrences": 3 - }, - "0x08d0222a206d1aee59a9b66969c04fd1e8a0f864": { - "address": "0x08d0222a206d1aee59a9b66969c04fd1e8a0f864", - "symbol": "MOMOV2", - "decimals": 18, - "name": "Momo v2", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x08d0222a206d1aee59a9b66969c04fd1e8a0f864.png", - "aggregators": ["Rubic", "Rango", "Sonarwatch"], - "occurrences": 3 - }, - "0x08f5a9235b08173b7569f83645d2c7fb55e8ccd8": { - "address": "0x08f5a9235b08173b7569f83645d2c7fb55e8ccd8", - "symbol": "TNT", - "decimals": 8, - "name": "Tierion", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x08f5a9235b08173b7569f83645d2c7fb55e8ccd8.png", - "aggregators": ["Rubic", "Rango", "Sonarwatch"], - "occurrences": 3 - }, - "0x2e19067cbeb38d6554d31a1a83aefc4018a1688a": { - "address": "0x2e19067cbeb38d6554d31a1a83aefc4018a1688a", - "symbol": "CBK", - "decimals": 18, - "name": "Coinback", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x2e19067cbeb38d6554d31a1a83aefc4018a1688a.png", - "aggregators": ["Rubic", "Rango", "Sonarwatch"], - "occurrences": 3 - }, - "0x44197a4c44d6a059297caf6be4f7e172bd56caaf": { - "address": "0x44197a4c44d6a059297caf6be4f7e172bd56caaf", - "symbol": "ELT", - "decimals": 8, - "name": "ELTCOIN", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x44197a4c44d6a059297caf6be4f7e172bd56caaf.png", - "aggregators": ["Metamask", "Rubic"], - "occurrences": 2 - }, - "0x01fa555c97d7958fa6f771f3bbd5ccd508f81e22": { - "address": "0x01fa555c97d7958fa6f771f3bbd5ccd508f81e22", - "symbol": "CVL", - "decimals": 18, - "name": "Civil Token", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x01fa555c97d7958fa6f771f3bbd5ccd508f81e22.png", - "aggregators": ["Metamask", "Rubic"], - "occurrences": 2 - }, - "0x06b179e292f080871825bed5d722162fd96b4c95": { - "address": "0x06b179e292f080871825bed5d722162fd96b4c95", - "symbol": "XGG", - "decimals": 18, - "name": "10x.gg", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x06b179e292f080871825bed5d722162fd96b4c95.png", - "aggregators": ["Metamask", "Rubic"], - "occurrences": 2 - }, - "0x150b0b96933b75ce27af8b92441f8fb683bf9739": { - "address": "0x150b0b96933b75ce27af8b92441f8fb683bf9739", - "symbol": "GOLD", - "decimals": 18, - "name": "Dragonereum Gold", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x150b0b96933b75ce27af8b92441f8fb683bf9739.png", - "aggregators": ["Metamask", "Rubic"], - "occurrences": 2 - }, - "0x4470bb87d77b963a013db939be332f927f2b992e": { - "address": "0x4470bb87d77b963a013db939be332f927f2b992e", - "symbol": "ADXL", - "decimals": 4, - "name": "AdEx Legacy Token", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x4470bb87d77b963a013db939be332f927f2b992e.png", - "aggregators": ["Metamask", "Socket"], - "occurrences": 2 - }, - "0x47be779de87de6580d0548cde80710a93c502405": { - "address": "0x47be779de87de6580d0548cde80710a93c502405", - "symbol": "XRNBW", - "decimals": 18, - "name": "Rainbow Pool", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x47be779de87de6580d0548cde80710a93c502405.png", - "aggregators": ["Metamask", "Rubic"], - "occurrences": 2 - }, - "0x4ad7a056191f4c9519facd6d75fa94ca26003ace": { - "address": "0x4ad7a056191f4c9519facd6d75fa94ca26003ace", - "symbol": "GPO", - "decimals": 18, - "name": "GoldPesa Option", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x4ad7a056191f4c9519facd6d75fa94ca26003ace.png", - "aggregators": ["Metamask", "Rubic"], - "occurrences": 2 - }, - "0x946112efab61c3636cbd52de2e1392d7a75a6f01": { - "address": "0x946112efab61c3636cbd52de2e1392d7a75a6f01", - "symbol": "HYDRO", - "decimals": 18, - "name": "HYDRO TOKEN", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x946112efab61c3636cbd52de2e1392d7a75a6f01.png", - "aggregators": ["Metamask", "Rubic"], - "occurrences": 2 - }, - "0x957c30ab0426e0c93cd8241e2c60392d08c6ac8e": { - "address": "0x957c30ab0426e0c93cd8241e2c60392d08c6ac8e", - "symbol": "MOD", - "decimals": 18, - "name": "Modum Token", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x957c30ab0426e0c93cd8241e2c60392d08c6ac8e.png", - "aggregators": ["Metamask", "Rubic"], - "occurrences": 2 - }, - "0xaa0200d169ff3ba9385c12e073c5d1d30434ae7b": { - "address": "0xaa0200d169ff3ba9385c12e073c5d1d30434ae7b", - "symbol": "AMUSD", - "decimals": 6, - "name": "Aave v3 mUSD", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xaa0200d169ff3ba9385c12e073c5d1d30434ae7b.png", - "aggregators": ["Metamask", "LiFi"], - "occurrences": 2 - }, - "0xc741f06082aa47f93729070ad0dd95e223bda091": { - "address": "0xc741f06082aa47f93729070ad0dd95e223bda091", - "symbol": "LEDU", - "decimals": 8, - "name": "LEDU Token", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xc741f06082aa47f93729070ad0dd95e223bda091.png", - "aggregators": ["Metamask", "Rubic"], - "occurrences": 2 - }, - "0xcdeee767bed58c5325f68500115d4b722b3724ee": { - "address": "0xcdeee767bed58c5325f68500115d4b722b3724ee", - "symbol": "CRBN", - "decimals": 18, - "name": "Carbon", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xcdeee767bed58c5325f68500115d4b722b3724ee.png", - "aggregators": ["Metamask", "Rubic"], - "occurrences": 2 - }, - "0xaec2e87e0a235266d9c5adc9deb4b2e29b54d009": { - "address": "0xaec2e87e0a235266d9c5adc9deb4b2e29b54d009", - "symbol": "SNGLS", - "decimals": 18, - "name": "SingularDTV", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xaec2e87e0a235266d9c5adc9deb4b2e29b54d009.png", - "aggregators": ["Metamask", "Rubic"], - "occurrences": 2 - }, - "0xc4a11aaf6ea915ed7ac194161d2fc9384f15bff2": { - "address": "0xc4a11aaf6ea915ed7ac194161d2fc9384f15bff2", - "symbol": "WTON", - "decimals": 27, - "name": "Wrapped TON", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xc4a11aaf6ea915ed7ac194161d2fc9384f15bff2.png", - "aggregators": ["Metamask", "Rango"], - "occurrences": 2 - }, - "0xd42debe4edc92bd5a3fbb4243e1eccf6d63a4a5d": { - "address": "0xd42debe4edc92bd5a3fbb4243e1eccf6d63a4a5d", - "symbol": "C8", - "decimals": 18, - "name": "Carboneum", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xd42debe4edc92bd5a3fbb4243e1eccf6d63a4a5d.png", - "aggregators": ["Metamask", "Rubic"], - "occurrences": 2 - }, - "0xd8446236fa95b9b5f9fd0f8e7df1a944823c683d": { - "address": "0xd8446236fa95b9b5f9fd0f8e7df1a944823c683d", - "symbol": "NEEO", - "decimals": 18, - "name": "NEEO", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xd8446236fa95b9b5f9fd0f8e7df1a944823c683d.png", - "aggregators": ["Metamask", "Rubic"], - "occurrences": 2 - }, - "0xe7ae6d0c56cacaf007b7e4d312f9af686a9e9a04": { - "address": "0xe7ae6d0c56cacaf007b7e4d312f9af686a9e9a04", - "symbol": "VAB", - "decimals": 18, - "name": "Vabble", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xe7ae6d0c56cacaf007b7e4d312f9af686a9e9a04.png", - "aggregators": ["Metamask", "Rubic"], - "occurrences": 2 - }, - "0xef31cb88048416e301fee1ea13e7664b887ba7e8": { - "address": "0xef31cb88048416e301fee1ea13e7664b887ba7e8", - "symbol": "SYAX", - "decimals": 18, - "name": "Staked yAxis", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xef31cb88048416e301fee1ea13e7664b887ba7e8.png", - "aggregators": ["Metamask", "Rubic"], - "occurrences": 2 - }, - "0x99cfb8cba9c821b4a343c6a1fc630465c9708df5": { - "address": "0x99cfb8cba9c821b4a343c6a1fc630465c9708df5", - "symbol": "$PEPEINU", - "decimals": 18, - "name": "Pepe Inu", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x99cfb8cba9c821b4a343c6a1fc630465c9708df5.png", - "aggregators": ["Metamask"], - "occurrences": 1 - }, - "0x000c100050e98c91f9114fa5dd75ce6869bf4f53": { - "address": "0x000c100050e98c91f9114fa5dd75ce6869bf4f53", - "symbol": "C10", - "decimals": 18, - "name": "CRYPTO10 Hedged", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x000c100050e98c91f9114fa5dd75ce6869bf4f53.png", - "aggregators": ["Metamask"], - "occurrences": 1 - }, - "0x008377eb0c62ce8e0ba3d7bb4a5638591f21588e": { - "address": "0x008377eb0c62ce8e0ba3d7bb4a5638591f21588e", - "symbol": "BYFL", - "decimals": 18, - "name": "YFLink Bond", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x008377eb0c62ce8e0ba3d7bb4a5638591f21588e.png", - "aggregators": ["Metamask"], - "occurrences": 1 - }, - "0x02f61fd266da6e8b102d4121f5ce7b992640cf98": { - "address": "0x02f61fd266da6e8b102d4121f5ce7b992640cf98", - "symbol": "LIKE", - "decimals": 18, - "name": "LikeCoin", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x02f61fd266da6e8b102d4121f5ce7b992640cf98.png", - "aggregators": ["Metamask"], - "occurrences": 1 - }, - "0x031002d15b0d0cd7c9129d6f644446368deae391": { - "address": "0x031002d15b0d0cd7c9129d6f644446368deae391", - "symbol": "UNLINK", - "decimals": 8, - "name": "unFederal LINK", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x031002d15b0d0cd7c9129d6f644446368deae391.png", - "aggregators": ["Metamask"], - "occurrences": 1 - }, - "0x039b5649a59967e3e936d7471f9c3700100ee1ab": { - "address": "0x039b5649a59967e3e936d7471f9c3700100ee1ab", - "symbol": "KCS", - "decimals": 6, - "name": "Kucoin Shares", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x039b5649a59967e3e936d7471f9c3700100ee1ab.png", - "aggregators": ["Metamask"], - "occurrences": 1 - }, - "0x03e3f0c25965f13dbbc58246738c183e27b26a56": { - "address": "0x03e3f0c25965f13dbbc58246738c183e27b26a56", - "symbol": "DSCP", - "decimals": 18, - "name": "Disciplina Token", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x03e3f0c25965f13dbbc58246738c183e27b26a56.png", - "aggregators": ["Metamask"], - "occurrences": 1 - }, - "0x09e6d500d14d13e0528d2c0fff24e5fff68237b4": { - "address": "0x09e6d500d14d13e0528d2c0fff24e5fff68237b4", - "symbol": "DHN", - "decimals": 18, - "name": "Dohrnii", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x09e6d500d14d13e0528d2c0fff24e5fff68237b4.png", - "aggregators": ["Metamask"], - "occurrences": 1 - }, - "0x0c4576ca1c365868e162554af8e385dc3e7c66d9": { - "address": "0x0c4576ca1c365868e162554af8e385dc3e7c66d9", - "symbol": "VEOGV", - "decimals": 18, - "name": "Vote Escrowed Origin DeFi Governance", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x0c4576ca1c365868e162554af8e385dc3e7c66d9.png", - "aggregators": ["Metamask"], - "occurrences": 1 - }, - "0x0a625fcec657053fe2d9fffdeb1dbb4e412cf8a8": { - "address": "0x0a625fcec657053fe2d9fffdeb1dbb4e412cf8a8", - "symbol": "IUNI", - "decimals": 18, - "name": "Fulcrum UNI iToken (iUNI)", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x0a625fcec657053fe2d9fffdeb1dbb4e412cf8a8.png", - "aggregators": ["Metamask"], - "occurrences": 1 - }, - "0x0c0104e35a101de9af2e0cb307a15e1175580bd5": { - "address": "0x0c0104e35a101de9af2e0cb307a15e1175580bd5", - "symbol": "XBTC", - "decimals": 18, - "name": "xBTC", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x0c0104e35a101de9af2e0cb307a15e1175580bd5.png", - "aggregators": ["Metamask"], - "occurrences": 1 - }, - "0x0cb8d0b37c7487b11d57f1f33defa2b1d3cfccfe": { - "address": "0x0cb8d0b37c7487b11d57f1f33defa2b1d3cfccfe", - "symbol": "DANK", - "decimals": 18, - "name": "DANKToken", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x0cb8d0b37c7487b11d57f1f33defa2b1d3cfccfe.png", - "aggregators": ["Metamask"], - "occurrences": 1 - }, - "0x0cae8d91e0b1b7bd00d906e990c3625b2c220db1": { - "address": "0x0cae8d91e0b1b7bd00d906e990c3625b2c220db1", - "symbol": "IAAVE", - "decimals": 18, - "name": "Fulcrum AAVE iToken (iAAVE)", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x0cae8d91e0b1b7bd00d906e990c3625b2c220db1.png", - "aggregators": ["Metamask"], - "occurrences": 1 - }, - "0x13cb85823f78cff38f0b0e90d3e975b8cb3aad64": { - "address": "0x13cb85823f78cff38f0b0e90d3e975b8cb3aad64", - "symbol": "REMI", - "decimals": 18, - "name": "REMIIT REMI Token", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x13cb85823f78cff38f0b0e90d3e975b8cb3aad64.png", - "aggregators": ["Metamask"], - "occurrences": 1 - }, - "0x16affa80c65fd7003d40b24edb96f77b38ddc96a": { - "address": "0x16affa80c65fd7003d40b24edb96f77b38ddc96a", - "symbol": "VXZK", - "decimals": 18, - "name": "ExpandZK Vote Token", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x16affa80c65fd7003d40b24edb96f77b38ddc96a.png", - "aggregators": ["Metamask"], - "occurrences": 1 - }, - "0x18240bd9c07fa6156ce3f3f61921cc82b2619157": { - "address": "0x18240bd9c07fa6156ce3f3f61921cc82b2619157", - "symbol": "IBZRX", - "decimals": 18, - "name": "Fulcrum BZRX iToken (iBZRX)", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x18240bd9c07fa6156ce3f3f61921cc82b2619157.png", - "aggregators": ["Metamask"], - "occurrences": 1 - }, - "0x1ba26788dfde592fec8bcb0eaff472a42be341b2": { - "address": "0x1ba26788dfde592fec8bcb0eaff472a42be341b2", - "symbol": "FPS", - "decimals": 18, - "name": "Frankencoin Pool Share", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x1ba26788dfde592fec8bcb0eaff472a42be341b2.png", - "aggregators": ["Metamask"], - "occurrences": 1 - }, - "0x1f41e42d0a9e3c0dd3ba15b527342783b43200a9": { - "address": "0x1f41e42d0a9e3c0dd3ba15b527342783b43200a9", - "symbol": "BCAP", - "decimals": 18, - "name": "Blockchain Capital", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x1f41e42d0a9e3c0dd3ba15b527342783b43200a9.png", - "aggregators": ["Metamask"], - "occurrences": 1 - }, - "0x26805021988f1a45dc708b5fb75fc75f21747d8c": { - "address": "0x26805021988f1a45dc708b5fb75fc75f21747d8c", - "symbol": "XGAMMA", - "decimals": 18, - "name": "xGamma", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x26805021988f1a45dc708b5fb75fc75f21747d8c.png", - "aggregators": ["Metamask"], - "occurrences": 1 - }, - "0x287a7c95ad00bbdd48599ad2919567fd09281f07": { - "address": "0x287a7c95ad00bbdd48599ad2919567fd09281f07", - "symbol": "STEELO", - "decimals": 18, - "name": "STEELO", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x287a7c95ad00bbdd48599ad2919567fd09281f07.png", - "aggregators": ["Metamask"], - "occurrences": 1 - }, - "0x2dba05b51ef5a7de3e7c3327201ca2f8a25c2414": { - "address": "0x2dba05b51ef5a7de3e7c3327201ca2f8a25c2414", - "symbol": "UNDAI", - "decimals": 8, - "name": "unFederal DAI", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x2dba05b51ef5a7de3e7c3327201ca2f8a25c2414.png", - "aggregators": ["Metamask"], - "occurrences": 1 - }, - "0x2ffa85f655752fb2acb210287c60b9ef335f5b6e": { - "address": "0x2ffa85f655752fb2acb210287c60b9ef335f5b6e", - "symbol": "IWBTC", - "decimals": 8, - "name": "Fulcrum WBTC iToken (iWBTC)", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x2ffa85f655752fb2acb210287c60b9ef335f5b6e.png", - "aggregators": ["Metamask"], - "occurrences": 1 - }, - "0x32e4c68b3a4a813b710595aeba7f6b7604ab9c15": { - "address": "0x32e4c68b3a4a813b710595aeba7f6b7604ab9c15", - "symbol": "IUSDC", - "decimals": 6, - "name": "Fulcrum USDC iToken (iUSDC)", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x32e4c68b3a4a813b710595aeba7f6b7604ab9c15.png", - "aggregators": ["Metamask"], - "occurrences": 1 - }, - "0x3c44aec33993b6830e5c2a705ea879b9c9ba0f7c": { - "address": "0x3c44aec33993b6830e5c2a705ea879b9c9ba0f7c", - "symbol": "NYELA", - "decimals": 18, - "name": "NYELA", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x3c44aec33993b6830e5c2a705ea879b9c9ba0f7c.png", - "aggregators": ["Metamask"], - "occurrences": 1 - }, - "0x3da0e01472dee3746b4d324a65d7edfaeca9aa4f": { - "address": "0x3da0e01472dee3746b4d324a65d7edfaeca9aa4f", - "symbol": "ILRC", - "decimals": 18, - "name": "Fulcrum LRC iToken (iLRC)", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x3da0e01472dee3746b4d324a65d7edfaeca9aa4f.png", - "aggregators": ["Metamask"], - "occurrences": 1 - }, - "0x463538705e7d22aa7f03ebf8ab09b067e1001b54": { - "address": "0x463538705e7d22aa7f03ebf8ab09b067e1001b54", - "symbol": "ILINK", - "decimals": 18, - "name": "Fulcrum LINK iToken (iLINK)", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x463538705e7d22aa7f03ebf8ab09b067e1001b54.png", - "aggregators": ["Metamask"], - "occurrences": 1 - }, - "0x4f4f0db4de903b88f2b1a2847971e231d54f8fd3": { - "address": "0x4f4f0db4de903b88f2b1a2847971e231d54f8fd3", - "symbol": "GEE", - "decimals": 8, - "name": "Geens Platform Token", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x4f4f0db4de903b88f2b1a2847971e231d54f8fd3.png", - "aggregators": ["Metamask"], - "occurrences": 1 - }, - "0x5401f949cdfa3e5af32538167c0314230769209c": { - "address": "0x5401f949cdfa3e5af32538167c0314230769209c", - "symbol": "MAHCOIN", - "decimals": 18, - "name": "MAHCOIN", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x5401f949cdfa3e5af32538167c0314230769209c.png", - "aggregators": ["Metamask"], - "occurrences": 1 - }, - "0x54b79a15b2e2c55c736a66bb0a978fb840407ac8": { - "address": "0x54b79a15b2e2c55c736a66bb0a978fb840407ac8", - "symbol": "FEVER", - "decimals": 18, - "name": "FEVER", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x54b79a15b2e2c55c736a66bb0a978fb840407ac8.png", - "aggregators": ["Metamask"], - "occurrences": 1 - }, - "0x5d446fc8dbd10ebacfe9a427ab5402586af98cd4": { - "address": "0x5d446fc8dbd10ebacfe9a427ab5402586af98cd4", - "symbol": "UNWBTC", - "decimals": 8, - "name": "unFederal WBTC", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x5d446fc8dbd10ebacfe9a427ab5402586af98cd4.png", - "aggregators": ["Metamask"], - "occurrences": 1 - }, - "0x65514b352d1d4a17de97f95c7fab177c625bd6ff": { - "address": "0x65514b352d1d4a17de97f95c7fab177c625bd6ff", - "symbol": "KBLE", - "decimals": 18, - "name": "KIBBLE Token", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x65514b352d1d4a17de97f95c7fab177c625bd6ff.png", - "aggregators": ["Metamask"], - "occurrences": 1 - }, - "0x665f77fba5975ab40ce61c90f28007fb5b09d7b1": { - "address": "0x665f77fba5975ab40ce61c90f28007fb5b09d7b1", - "symbol": "GENIE", - "decimals": 18, - "name": "Genieswap", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x665f77fba5975ab40ce61c90f28007fb5b09d7b1.png", - "aggregators": ["Metamask"], - "occurrences": 1 - }, - "0x677c9fe4396d3d13a0f9013a8118eae386c843a5": { - "address": "0x677c9fe4396d3d13a0f9013a8118eae386c843a5", - "symbol": "IAM", - "decimals": 18, - "name": "IAM", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x677c9fe4396d3d13a0f9013a8118eae386c843a5.png", - "aggregators": ["Metamask"], - "occurrences": 1 - }, - "0x687642347a9282be8fd809d8309910a3f984ac5a": { - "address": "0x687642347a9282be8fd809d8309910a3f984ac5a", - "symbol": "IKNC", - "decimals": 18, - "name": "Fulcrum KNC iToken (iKNC)", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x687642347a9282be8fd809d8309910a3f984ac5a.png", - "aggregators": ["Metamask"], - "occurrences": 1 - }, - "0x6aedbf8dff31437220df351950ba2a3362168d1b": { - "address": "0x6aedbf8dff31437220df351950ba2a3362168d1b", - "symbol": "DGS", - "decimals": 8, - "name": "Dragonglass", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x6aedbf8dff31437220df351950ba2a3362168d1b.png", - "aggregators": ["Metamask"], - "occurrences": 1 - }, - "0x6b093998d36f2c7f0cc359441fbb24cc629d5ff0": { - "address": "0x6b093998d36f2c7f0cc359441fbb24cc629d5ff0", - "symbol": "IDAI", - "decimals": 18, - "name": "Fulcrum DAI iToken (iDAI)", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x6b093998d36f2c7f0cc359441fbb24cc629d5ff0.png", - "aggregators": ["Metamask"], - "occurrences": 1 - }, - "0x6b576972de33bebde3a703bff52a091e79f8c87a": { - "address": "0x6b576972de33bebde3a703bff52a091e79f8c87a", - "symbol": "UNUSDC", - "decimals": 8, - "name": "unFederal USDC", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x6b576972de33bebde3a703bff52a091e79f8c87a.png", - "aggregators": ["Metamask"], - "occurrences": 1 - }, - "0x6d29903bc2c4318b59b35d97ab98ab9ec08ed70d": { - "address": "0x6d29903bc2c4318b59b35d97ab98ab9ec08ed70d", - "symbol": "ICOMP", - "decimals": 18, - "name": "Fulcrum COMP iToken (iCOMP)", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x6d29903bc2c4318b59b35d97ab98ab9ec08ed70d.png", - "aggregators": ["Metamask"], - "occurrences": 1 - }, - "0x6e2aa5bb90ac37d9006685afc651ef067e1c7b44": { - "address": "0x6e2aa5bb90ac37d9006685afc651ef067e1c7b44", - "symbol": "UNUSDT", - "decimals": 8, - "name": "unFederal USDT", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x6e2aa5bb90ac37d9006685afc651ef067e1c7b44.png", - "aggregators": ["Metamask"], - "occurrences": 1 - }, - "0x7064aab39a0fcf7221c3396719d0917a65e35515": { - "address": "0x7064aab39a0fcf7221c3396719d0917a65e35515", - "symbol": "CPLO", - "decimals": 18, - "name": "Cpollo", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x7064aab39a0fcf7221c3396719d0917a65e35515.png", - "aggregators": ["Metamask"], - "occurrences": 1 - }, - "0x711d2c47aff84b96ad0f36983b1c41be2c509e18": { - "address": "0x711d2c47aff84b96ad0f36983b1c41be2c509e18", - "symbol": "NIKITA", - "decimals": 18, - "name": "NIKITA", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x711d2c47aff84b96ad0f36983b1c41be2c509e18.png", - "aggregators": ["Metamask"], - "occurrences": 1 - }, - "0x75d1aa733920b14fc74c9f6e6fab7ac1ece8482e": { - "address": "0x75d1aa733920b14fc74c9f6e6fab7ac1ece8482e", - "symbol": "YYFL", - "decimals": 18, - "name": "YFLink Staking Share", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x75d1aa733920b14fc74c9f6e6fab7ac1ece8482e.png", - "aggregators": ["Metamask"], - "occurrences": 1 - }, - "0x7d85e23014f84e6e21d5663acd8751bef3562352": { - "address": "0x7d85e23014f84e6e21d5663acd8751bef3562352", - "symbol": "AXNV1", - "decimals": 18, - "name": "Axion Old", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x7d85e23014f84e6e21d5663acd8751bef3562352.png", - "aggregators": ["Metamask"], - "occurrences": 1 - }, - "0x7f3fe9d492a9a60aebb06d82cba23c6f32cad10b": { - "address": "0x7f3fe9d492a9a60aebb06d82cba23c6f32cad10b", - "symbol": "IYFI", - "decimals": 18, - "name": "Fulcrum YFI iToken (iYFI)", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x7f3fe9d492a9a60aebb06d82cba23c6f32cad10b.png", - "aggregators": ["Metamask"], - "occurrences": 1 - }, - "0x7ba92741bf2a568abc6f1d3413c58c6e0244f8fd": { - "address": "0x7ba92741bf2a568abc6f1d3413c58c6e0244f8fd", - "symbol": "GBPE", - "decimals": 18, - "name": "Monerium GBP", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x7ba92741bf2a568abc6f1d3413c58c6e0244f8fd.png", - "aggregators": ["Metamask"], - "occurrences": 1 - }, - "0x7e9997a38a439b2be7ed9c9c4628391d3e055d48": { - "address": "0x7e9997a38a439b2be7ed9c9c4628391d3e055d48", - "symbol": "IUSDT", - "decimals": 6, - "name": "Fulcrum USDT iToken (iUSDT)", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x7e9997a38a439b2be7ed9c9c4628391d3e055d48.png", - "aggregators": ["Metamask"], - "occurrences": 1 - }, - "0x86f2a193b116d1f9c53ed26d97f77cdc8bcf4c2b": { - "address": "0x86f2a193b116d1f9c53ed26d97f77cdc8bcf4c2b", - "symbol": "EHTAGA", - "decimals": 18, - "name": "EHTAGA", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x86f2a193b116d1f9c53ed26d97f77cdc8bcf4c2b.png", - "aggregators": ["Metamask"], - "occurrences": 1 - }, - "0x88d8da2a8d0fa5b1f4e38030ac486ade0afa2798": { - "address": "0x88d8da2a8d0fa5b1f4e38030ac486ade0afa2798", - "symbol": "TPSC", - "decimals": 18, - "name": "Terrapass Coin", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x88d8da2a8d0fa5b1f4e38030ac486ade0afa2798.png", - "aggregators": ["Metamask"], - "occurrences": 1 - }, - "0x8e3bcc334657560253b83f08331d85267316e08a": { - "address": "0x8e3bcc334657560253b83f08331d85267316e08a", - "symbol": "BRBC", - "decimals": 18, - "name": "Rubic", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x8e3bcc334657560253b83f08331d85267316e08a.png", - "aggregators": ["Metamask"], - "occurrences": 1 - }, - "0x9189c499727f88f8ecc7dc4eea22c828e6aac015": { - "address": "0x9189c499727f88f8ecc7dc4eea22c828e6aac015", - "symbol": "IMKR", - "decimals": 18, - "name": "Fulcrum MKR iToken (iMKR)", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x9189c499727f88f8ecc7dc4eea22c828e6aac015.png", - "aggregators": ["Metamask"], - "occurrences": 1 - }, - "0x9b6b9d2468e165a02fef69e61b6d3d6cbc0ac409": { - "address": "0x9b6b9d2468e165a02fef69e61b6d3d6cbc0ac409", - "symbol": "OFE", - "decimals": 18, - "name": "OASISLIFE", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x9b6b9d2468e165a02fef69e61b6d3d6cbc0ac409.png", - "aggregators": ["Metamask"], - "occurrences": 1 - }, - "0x9a642d6b3368ddc662ca244badf32cda716005bc": { - "address": "0x9a642d6b3368ddc662ca244badf32cda716005bc", - "symbol": "QTUM", - "decimals": 18, - "name": "Qtum", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x9a642d6b3368ddc662ca244badf32cda716005bc.png", - "aggregators": ["Metamask"], - "occurrences": 1 - }, - "0x9e29ce9cd25f4141df6bb85b27ef6933a16a5824": { - "address": "0x9e29ce9cd25f4141df6bb85b27ef6933a16a5824", - "symbol": "UNYFI", - "decimals": 8, - "name": "unFederal YFI", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x9e29ce9cd25f4141df6bb85b27ef6933a16a5824.png", - "aggregators": ["Metamask"], - "occurrences": 1 - }, - "0xb983e01458529665007ff7e0cddecdb74b967eb6": { - "address": "0xb983e01458529665007ff7e0cddecdb74b967eb6", - "symbol": "IETH", - "decimals": 18, - "name": "Fulcrum ETH iToken (iETH)", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xb983e01458529665007ff7e0cddecdb74b967eb6.png", - "aggregators": ["Metamask"], - "occurrences": 1 - }, - "0xbcf9dbf8b14ed096b2ba08b7269356197fdd1b5d": { - "address": "0xbcf9dbf8b14ed096b2ba08b7269356197fdd1b5d", - "symbol": "AVAL", - "decimals": 18, - "name": "Avaluse", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xbcf9dbf8b14ed096b2ba08b7269356197fdd1b5d.png", - "aggregators": ["Metamask"], - "occurrences": 1 - }, - "0xbc5142e0cc5eb16b47c63b0f033d4c2480853a52": { - "address": "0xbc5142e0cc5eb16b47c63b0f033d4c2480853a52", - "symbol": "USDE", - "decimals": 18, - "name": "Monerium USD", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xbc5142e0cc5eb16b47c63b0f033d4c2480853a52.png", - "aggregators": ["Metamask"], - "occurrences": 1 - }, - "0xc211477cb4098ac22a98432781f5f26a1e07a4d4": { - "address": "0xc211477cb4098ac22a98432781f5f26a1e07a4d4", - "symbol": "CULTURED", - "decimals": 18, - "name": "CULTURED", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xc211477cb4098ac22a98432781f5f26a1e07a4d4.png", - "aggregators": ["Metamask"], - "occurrences": 1 - }, - "0xc642549743a93674cf38d6431f75d6443f88e3e2": { - "address": "0xc642549743a93674cf38d6431f75d6443f88e3e2", - "symbol": "ISKE", - "decimals": 18, - "name": "Monerium ISK", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xc642549743a93674cf38d6431f75d6443f88e3e2.png", - "aggregators": ["Metamask"], - "occurrences": 1 - }, - "0xd057b63f5e69cf1b929b356b579cba08d7688048": { - "address": "0xd057b63f5e69cf1b929b356b579cba08d7688048", - "symbol": "VCOW", - "decimals": 18, - "name": "CoW Protocol Virtual Token", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xd057b63f5e69cf1b929b356b579cba08d7688048.png", - "aggregators": ["Metamask"], - "occurrences": 1 - }, - "0xd837eca6c91c67d98461a411ba2f00bda9960a9d": { - "address": "0xd837eca6c91c67d98461a411ba2f00bda9960a9d", - "symbol": "UNAAVE", - "decimals": 8, - "name": "unFederal AAVE", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xd837eca6c91c67d98461a411ba2f00bda9960a9d.png", - "aggregators": ["Metamask"], - "occurrences": 1 - }, - "0xd850942ef8811f2a866692a623011bde52a462c1": { - "address": "0xd850942ef8811f2a866692a623011bde52a462c1", - "symbol": "VEN", - "decimals": 18, - "name": "VeChain", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xd850942ef8811f2a866692a623011bde52a462c1.png", - "aggregators": ["Metamask"], - "occurrences": 1 - }, - "0xe4cc5a22b39ffb0a56d67f94f9300db20d786a5f": { - "address": "0xe4cc5a22b39ffb0a56d67f94f9300db20d786a5f", - "symbol": "UNERSDL", - "decimals": 8, - "name": "unFederal eRSDL", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xe4cc5a22b39ffb0a56d67f94f9300db20d786a5f.png", - "aggregators": ["Metamask"], - "occurrences": 1 - }, - "0xf119ada773624761108a12bc20503b2195727061": { - "address": "0xf119ada773624761108a12bc20503b2195727061", - "symbol": "SETH", - "decimals": 18, - "name": "Synth sETH", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xf119ada773624761108a12bc20503b2195727061.png", - "aggregators": ["Metamask"], - "occurrences": 1 - }, - "0xfbeef911dc5821886e1dda71586d90ed28174b7d": { - "address": "0xfbeef911dc5821886e1dda71586d90ed28174b7d", - "symbol": "KODA", - "decimals": 18, - "name": "KnownOrigin", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xfbeef911dc5821886e1dda71586d90ed28174b7d.png", - "aggregators": ["Metamask"], - "occurrences": 1 - }, - "0xfacece87e14b50eafc85c44c01702f5f485ca460": { - "address": "0xfacece87e14b50eafc85c44c01702f5f485ca460", - "symbol": "UNETH", - "decimals": 8, - "name": "unFederal ETH", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xfacece87e14b50eafc85c44c01702f5f485ca460.png", - "aggregators": ["Metamask"], - "occurrences": 1 - }, - "0xa74476443119a942de498590fe1f2454d7d4ac0d": { - "address": "0xa74476443119a942de498590fe1f2454d7d4ac0d", - "symbol": "GNT", - "decimals": 18, - "name": "Golem Network Token", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xa74476443119a942de498590fe1f2454d7d4ac0d.png", - "aggregators": ["Metamask"], - "occurrences": 1 - }, - "0xc105fa46510f32c0444ccdb4e51065da95caa1b4": { - "address": "0xc105fa46510f32c0444ccdb4e51065da95caa1b4", - "symbol": "LITA", - "decimals": 18, - "name": "LITA", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xc105fa46510f32c0444ccdb4e51065da95caa1b4.png", - "aggregators": ["Metamask"], - "occurrences": 1 - }, - "0xdf0162a6b3e9fdf0302c1e949739deeafafd8f89": { - "address": "0xdf0162a6b3e9fdf0302c1e949739deeafafd8f89", - "symbol": "MOA", - "decimals": 18, - "name": "METAOASIS", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xdf0162a6b3e9fdf0302c1e949739deeafafd8f89.png", - "aggregators": ["Metamask"], - "occurrences": 1 - }, - "0xeff66b4a84c8a6b69b99eb1c5e39af8fc35d13db": { - "address": "0xeff66b4a84c8a6b69b99eb1c5e39af8fc35d13db", - "symbol": "SGTON", - "decimals": 18, - "name": "sGTON", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xeff66b4a84c8a6b69b99eb1c5e39af8fc35d13db.png", - "aggregators": ["Metamask"], - "occurrences": 1 - }, - "0xea8b224edd3e342deb514c4176c2e72bcce6fff9": { - "address": "0xea8b224edd3e342deb514c4176c2e72bcce6fff9", - "symbol": "RSAI", - "decimals": 18, - "name": "rSAI", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xea8b224edd3e342deb514c4176c2e72bcce6fff9.png", - "aggregators": ["Metamask"], - "occurrences": 1 - }, - "0xf63c65e855020e4b74f0ad842d9537da0e6162ec": { - "address": "0xf63c65e855020e4b74f0ad842d9537da0e6162ec", - "symbol": "ISH", - "decimals": 18, - "name": "ISH", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xf63c65e855020e4b74f0ad842d9537da0e6162ec.png", - "aggregators": ["Metamask"], - "occurrences": 1 - } - }, - "timestamp": 1779126362532 - }, - "0x10e6": { - "data": { - "0xb0f70c0bd6fd87dbeb7c10dc692a2a6106817072": { - "address": "0xb0f70c0bd6fd87dbeb7c10dc692a2a6106817072", - "symbol": "BTC.B", - "decimals": 8, - "name": "Bitcoin", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/4326/0xb0f70c0bd6fd87dbeb7c10dc692a2a6106817072.png", - "aggregators": ["CoinGecko", "LiFi"], - "occurrences": 2 - }, - "0xcccc62962d17b8914c62d74ffb843d73b2a3cccc": { - "address": "0xcccc62962d17b8914c62d74ffb843d73b2a3cccc", - "symbol": "CUSD", - "decimals": 18, - "name": "Cap USD", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/4326/0xcccc62962d17b8914c62d74ffb843d73b2a3cccc.png", - "aggregators": ["CoinGecko", "LiFi"], - "occurrences": 2 - }, - "0x09601a65e7de7bc8a19813d263dd9e98bfdc3c57": { - "address": "0x09601a65e7de7bc8a19813d263dd9e98bfdc3c57", - "symbol": "EZETH", - "decimals": 18, - "name": "Renzo Restake ETH", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/4326/0x09601a65e7de7bc8a19813d263dd9e98bfdc3c57.png", - "aggregators": ["Megaeth", "LiFi"], - "occurrences": 2 - }, - "0xecac9c5f704e954931349da37f60e39f515c11c1": { - "address": "0xecac9c5f704e954931349da37f60e39f515c11c1", - "symbol": "LBTC", - "decimals": 8, - "name": "Lombard Staked Bitcoin", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/4326/0xecac9c5f704e954931349da37f60e39f515c11c1.png", - "aggregators": ["Megaeth", "LiFi"], - "occurrences": 2 - }, - "0x28b7e77f82b25b95953825f1e3ea0e36c1c29861": { - "address": "0x28b7e77f82b25b95953825f1e3ea0e36c1c29861", - "symbol": "MEGA", - "decimals": 18, - "name": "MEGA", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/4326/0x28b7e77f82b25b95953825f1e3ea0e36c1c29861.png", - "aggregators": ["CoinGecko", "LiFi"], - "occurrences": 2 - }, - "0xc3eacf0612346366db554c991d7858716db09f58": { - "address": "0xc3eacf0612346366db554c991d7858716db09f58", - "symbol": "RSETH", - "decimals": 18, - "name": "KelpDao Restaked ETH", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/4326/0xc3eacf0612346366db554c991d7858716db09f58.png", - "aggregators": ["Megaeth", "LiFi"], - "occurrences": 2 - }, - "0x88887be419578051ff9f4eb6c858a951921d8888": { - "address": "0x88887be419578051ff9f4eb6c858a951921d8888", - "symbol": "STCUSD", - "decimals": 18, - "name": "Staked Cap USD", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/4326/0x88887be419578051ff9f4eb6c858a951921d8888.png", - "aggregators": ["Megaeth", "LiFi"], - "occurrences": 2 - }, - "0x5d3a1ff2b6bab83b63cd9ad0787074081a52ef34": { - "address": "0x5d3a1ff2b6bab83b63cd9ad0787074081a52ef34", - "symbol": "USDE", - "decimals": 18, - "name": "USDe", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/4326/0x5d3a1ff2b6bab83b63cd9ad0787074081a52ef34.png", - "aggregators": ["CoinGecko", "LiFi"], - "occurrences": 2 - }, - "0xfafddbb3fc7688494971a79cc65dca3ef82079e7": { - "address": "0xfafddbb3fc7688494971a79cc65dca3ef82079e7", - "symbol": "USDM", - "decimals": 18, - "name": "MegaUSD", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/4326/0xfafddbb3fc7688494971a79cc65dca3ef82079e7.png", - "aggregators": ["CoinGecko", "LiFi"], - "occurrences": 2 - }, - "0x2ea493384f42d7ea78564f3ef4c86986eab4a890": { - "address": "0x2ea493384f42d7ea78564f3ef4c86986eab4a890", - "symbol": "USDMY", - "decimals": 18, - "name": "USDm Yield", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/4326/0x2ea493384f42d7ea78564f3ef4c86986eab4a890.png", - "aggregators": ["Megaeth", "LiFi"], - "occurrences": 2 - }, - "0xb8ce59fc3717ada4c02eadf9682a9e934f625ebb": { - "address": "0xb8ce59fc3717ada4c02eadf9682a9e934f625ebb", - "symbol": "USDT0", - "decimals": 6, - "name": "USD₮0", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/4326/0xb8ce59fc3717ada4c02eadf9682a9e934f625ebb.png", - "aggregators": ["CoinGecko", "LiFi"], - "occurrences": 2 - }, - "0x4200000000000000000000000000000000000006": { - "address": "0x4200000000000000000000000000000000000006", - "symbol": "WETH", - "decimals": 18, - "name": "Wrapped Ether", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/4326/0x4200000000000000000000000000000000000006.png", - "aggregators": ["CoinGecko", "LiFi"], - "occurrences": 2 - }, - "0x15b271d9012b5820fc42b1c495b4c1e206547de5": { - "address": "0x15b271d9012b5820fc42b1c495b4c1e206547de5", - "symbol": "WITRY", - "decimals": 18, - "name": "Wrapped iTRY", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/4326/0x15b271d9012b5820fc42b1c495b4c1e206547de5.png", - "aggregators": ["CoinGecko", "LiFi"], - "occurrences": 2 - }, - "0x601ac63637933d88285a025c685ac4e9a92a98da": { - "address": "0x601ac63637933d88285a025c685ac4e9a92a98da", - "symbol": "WSTETH", - "decimals": 18, - "name": "Wrapped liquid staked Ether 2.0", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/4326/0x601ac63637933d88285a025c685ac4e9a92a98da.png", - "aggregators": ["CoinGecko", "LiFi"], - "occurrences": 2 - }, - "0xee85aefb15b9489563a6a29891ebe0750aa1a7ae": { - "address": "0xee85aefb15b9489563a6a29891ebe0750aa1a7ae", - "symbol": "LINK", - "decimals": 18, - "name": "ChainLink Token", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/4326/0xee85aefb15b9489563a6a29891ebe0750aa1a7ae.png", - "aggregators": ["CoinGecko", "LiFi"], - "occurrences": 2 - }, - "0xf7d2f0d0b0517cbdbf87c86910ce10faaab3589d": { - "address": "0xf7d2f0d0b0517cbdbf87c86910ce10faaab3589d", - "symbol": "CROWN", - "decimals": 18, - "name": "Crown Credits", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/4326/0xf7d2f0d0b0517cbdbf87c86910ce10faaab3589d.png", - "aggregators": ["Megaeth"], - "occurrences": 1 - }, - "0xc2f34f8849a8607fd73e06d6849bda07c2b7de38": { - "address": "0xc2f34f8849a8607fd73e06d6849bda07c2b7de38", - "symbol": "DIRTY", - "decimals": 18, - "name": "Dirty Money", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/4326/0xc2f34f8849a8607fd73e06d6849bda07c2b7de38.png", - "aggregators": ["Megaeth"], - "occurrences": 1 - }, - "0xc1d160c29d7278f02c67da8bc8e046d759fe7352": { - "address": "0xc1d160c29d7278f02c67da8bc8e046d759fe7352", - "symbol": "HOUSE", - "decimals": 18, - "name": "HOUSE", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/4326/0xc1d160c29d7278f02c67da8bc8e046d759fe7352.png", - "aggregators": ["Megaeth"], - "occurrences": 1 - }, - "0x996ce957408804fec19237d866799d9c7076e48c": { - "address": "0x996ce957408804fec19237d866799d9c7076e48c", - "symbol": "ITRY", - "decimals": 18, - "name": "Brix iTRY", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/4326/0x996ce957408804fec19237d866799d9c7076e48c.png", - "aggregators": ["CoinGecko"], - "occurrences": 1 - }, - "0x9367a0c482703d8d9bda995b03f8e71056a72500": { - "address": "0x9367a0c482703d8d9bda995b03f8e71056a72500", - "symbol": "MEGASIR", - "decimals": 12, - "name": "Synthetics Implemented Right", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/4326/0x9367a0c482703d8d9bda995b03f8e71056a72500.png", - "aggregators": ["Megaeth"], - "occurrences": 1 - }, - "0x2f55e14f0b2b2118d2026d20ad2c39eacbdcac47": { - "address": "0x2f55e14f0b2b2118d2026d20ad2c39eacbdcac47", - "symbol": "NXT", - "decimals": 18, - "name": "NX Terminal Token", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/4326/0x2f55e14f0b2b2118d2026d20ad2c39eacbdcac47.png", - "aggregators": ["Megaeth"], - "occurrences": 1 - }, - "0x37d6382b6889ccef8d6871a8b60e667115eddbcf": { - "address": "0x37d6382b6889ccef8d6871a8b60e667115eddbcf", - "symbol": "PUFETH", - "decimals": 18, - "name": "pufETH", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/4326/0x37d6382b6889ccef8d6871a8b60e667115eddbcf.png", - "aggregators": ["Megaeth"], - "occurrences": 1 - }, - "0x4fd02a1a80923ce1d7e70a8719421431ea286941": { - "address": "0x4fd02a1a80923ce1d7e70a8719421431ea286941", - "symbol": "PUSD", - "decimals": 18, - "name": "Chisino pUSD", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/4326/0x4fd02a1a80923ce1d7e70a8719421431ea286941.png", - "aggregators": ["Megaeth"], - "occurrences": 1 - }, - "0x211cc4dd073734da055fbf44a2b4667d5e5fe5d2": { - "address": "0x211cc4dd073734da055fbf44a2b4667d5e5fe5d2", - "symbol": "SUSDE", - "decimals": 18, - "name": "Staked USDe", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/4326/0x211cc4dd073734da055fbf44a2b4667d5e5fe5d2.png", - "aggregators": ["Megaeth"], - "occurrences": 1 - }, - "0x32090fb1399a31cc095e6341a6353b7c09ba84fb": { - "address": "0x32090fb1399a31cc095e6341a6353b7c09ba84fb", - "symbol": "WBTC", - "decimals": 8, - "name": "Wrapped Bitcoin", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/4326/0x32090fb1399a31cc095e6341a6353b7c09ba84fb.png", - "aggregators": ["Megaeth"], - "occurrences": 1 - }, - "0x4fc44be15e9b6e30c1e774e2c87a21d3e8b5403f": { - "address": "0x4fc44be15e9b6e30c1e774e2c87a21d3e8b5403f", - "symbol": "WRSETH", - "decimals": 18, - "name": "rsETHWrapper", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/4326/0x4fc44be15e9b6e30c1e774e2c87a21d3e8b5403f.png", - "aggregators": ["Megaeth"], - "occurrences": 1 - }, - "0x9a96e366f6b2ed5850a38b58d355a80afd998411": { - "address": "0x9a96e366f6b2ed5850a38b58d355a80afd998411", - "symbol": "WSOL", - "decimals": 9, - "name": "Wrapped SOL", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/4326/0x9a96e366f6b2ed5850a38b58d355a80afd998411.png", - "aggregators": ["Megaeth"], - "occurrences": 1 - }, - "0x021ee124cf23d302a7f725ae7a01b77a8ce9782b": { - "address": "0x021ee124cf23d302a7f725ae7a01b77a8ce9782b", - "symbol": "DUCK", - "decimals": 18, - "name": "Duck Token", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/4326/0x021ee124cf23d302a7f725ae7a01b77a8ce9782b.png", - "aggregators": ["CoinGecko"], - "occurrences": 1 - }, - "0x2a3a4c92ce37abd7239fb010bc390710f4062407": { - "address": "0x2a3a4c92ce37abd7239fb010bc390710f4062407", - "symbol": "FLUFFEY", - "decimals": 18, - "name": "Fluffey", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/4326/0x2a3a4c92ce37abd7239fb010bc390710f4062407.png", - "aggregators": ["CoinGecko"], - "occurrences": 1 - }, - "0x214b26a427df89437898dec7efd2bc4472b983ea": { - "address": "0x214b26a427df89437898dec7efd2bc4472b983ea", - "symbol": "MEKA", - "decimals": 18, - "name": "Meka", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/4326/0x214b26a427df89437898dec7efd2bc4472b983ea.png", - "aggregators": ["CoinGecko"], - "occurrences": 1 - }, - "0x141cf6bfe9d5057883b9becb39fee8a62982dc93": { - "address": "0x141cf6bfe9d5057883b9becb39fee8a62982dc93", - "symbol": "Σ:", - "decimals": 18, - "name": "Sigma Bunny", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/4326/0x141cf6bfe9d5057883b9becb39fee8a62982dc93.png", - "aggregators": ["CoinGecko"], - "occurrences": 1 - }, - "0x551dfe38994ec53c9e7e18084d73893225eea3bf": { - "address": "0x551dfe38994ec53c9e7e18084d73893225eea3bf", - "symbol": "GNS", - "decimals": 18, - "name": "Gains Network", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/4326/0x551dfe38994ec53c9e7e18084d73893225eea3bf.png", - "aggregators": ["CoinGecko"], - "occurrences": 1 - }, - "0x03c99cce547b1c2e74442b73e6f588a66d19597e": { - "address": "0x03c99cce547b1c2e74442b73e6f588a66d19597e", - "symbol": "AMEGEZETH", - "decimals": 18, - "name": "Aave MegaEth ezETH", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/4326/0x03c99cce547b1c2e74442b73e6f588a66d19597e.png", - "aggregators": ["LiFi"], - "occurrences": 1 - }, - "0x0889d59ea7178ee5b71da01949a5cb42aafbe337": { - "address": "0x0889d59ea7178ee5b71da01949a5cb42aafbe337", - "symbol": "AMEGBTCB", - "decimals": 8, - "name": "Aave MegaEth BTCb", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/4326/0x0889d59ea7178ee5b71da01949a5cb42aafbe337.png", - "aggregators": ["LiFi"], - "occurrences": 1 - }, - "0x5df82810cb4b8f3e0da3c031ccc9208ee9cf9500": { - "address": "0x5df82810cb4b8f3e0da3c031ccc9208ee9cf9500", - "symbol": "AMEGUSDM", - "decimals": 18, - "name": "Aave MegaEth USDm", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/4326/0x5df82810cb4b8f3e0da3c031ccc9208ee9cf9500.png", - "aggregators": ["LiFi"], - "occurrences": 1 - }, - "0xa31e6b433382062e8a1da41485f7b234d97c3f4d": { - "address": "0xa31e6b433382062e8a1da41485f7b234d97c3f4d", - "symbol": "AMEGWETH", - "decimals": 18, - "name": "Aave MegaEth WETH", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/4326/0xa31e6b433382062e8a1da41485f7b234d97c3f4d.png", - "aggregators": ["LiFi"], - "occurrences": 1 - }, - "0xad2de503b5c723371d6b38a5224a2e12e103dfb8": { - "address": "0xad2de503b5c723371d6b38a5224a2e12e103dfb8", - "symbol": "AMEGWSTETH", - "decimals": 18, - "name": "Aave MegaEth wstETH", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/4326/0xad2de503b5c723371d6b38a5224a2e12e103dfb8.png", - "aggregators": ["LiFi"], - "occurrences": 1 - }, - "0xe2283e01a667b512c340f19b499d86fbc885d5ef": { - "address": "0xe2283e01a667b512c340f19b499d86fbc885d5ef", - "symbol": "AMEGUSDT0", - "decimals": 6, - "name": "Aave MegaEth USDT0", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/4326/0xe2283e01a667b512c340f19b499d86fbc885d5ef.png", - "aggregators": ["LiFi"], - "occurrences": 1 - }, - "0x8f77a685bde702e6d32a103e9aeb41906317d7e5": { - "address": "0x8f77a685bde702e6d32a103e9aeb41906317d7e5", - "symbol": "RBT", - "decimals": 18, - "name": "Reserve Backed Token", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/4326/0x8f77a685bde702e6d32a103e9aeb41906317d7e5.png", - "aggregators": ["LiFi"], - "occurrences": 1 - }, - "0x78f2cb75d664d6f71433174056c25a5958b4016f": { - "address": "0x78f2cb75d664d6f71433174056c25a5958b4016f", - "symbol": "AMEGUSDE", - "decimals": 18, - "name": "Aave MegaEth USDe", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/4326/0x78f2cb75d664d6f71433174056c25a5958b4016f.png", - "aggregators": ["LiFi"], - "occurrences": 1 - } - }, - "timestamp": 1779126362351 - }, - "0x144": { - "data": { - "0xbbeb516fb02a01611cbbe0453fe3c580d7281011": { - "address": "0xbbeb516fb02a01611cbbe0453fe3c580d7281011", - "symbol": "WBTC", - "decimals": 8, - "name": "Wrapped BTC", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/324/0xbbeb516fb02a01611cbbe0453fe3c580d7281011.png", - "aggregators": [ - "CoinGecko", - "1inch", - "LiFi", - "Socket", - "Rubic", - "Rango" - ], - "occurrences": 6 - }, - "0x1d17cbcf0d6d143135ae902365d2e5e2a16538d4": { - "address": "0x1d17cbcf0d6d143135ae902365d2e5e2a16538d4", - "symbol": "USDC", - "decimals": 6, - "name": "USDC", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/324/0x1d17cbcf0d6d143135ae902365d2e5e2a16538d4.png", - "aggregators": [ - "CoinGecko", - "1inch", - "LiFi", - "Socket", - "Rubic", - "Rango" - ], - "occurrences": 6 - }, - "0x5aea5775959fbc2557cc8789bc1bf90a239d9a91": { - "address": "0x5aea5775959fbc2557cc8789bc1bf90a239d9a91", - "symbol": "WETH", - "decimals": 18, - "name": "Wrapped Ether", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/324/0x5aea5775959fbc2557cc8789bc1bf90a239d9a91.png", - "aggregators": [ - "CoinGecko", - "1inch", - "LiFi", - "Socket", - "Rubic", - "Rango" - ], - "occurrences": 6 - }, - "0x787c09494ec8bcb24dcaf8659e7d5d69979ee508": { - "address": "0x787c09494ec8bcb24dcaf8659e7d5d69979ee508", - "symbol": "MAV", - "decimals": 18, - "name": "Maverick Token", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/324/0x787c09494ec8bcb24dcaf8659e7d5d69979ee508.png", - "aggregators": [ - "CoinGecko", - "1inch", - "LiFi", - "Socket", - "Rubic", - "Rango" - ], - "occurrences": 6 - }, - "0x0e97c7a0f8b2c9885c8ac9fc6136e829cbc21d42": { - "address": "0x0e97c7a0f8b2c9885c8ac9fc6136e829cbc21d42", - "symbol": "MUTE", - "decimals": 18, - "name": "Mute", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/324/0x0e97c7a0f8b2c9885c8ac9fc6136e829cbc21d42.png", - "aggregators": [ - "CoinGecko", - "1inch", - "LiFi", - "Socket", - "Rubic", - "Rango" - ], - "occurrences": 6 - }, - "0x47260090ce5e83454d5f05a0abbb2c953835f777": { - "address": "0x47260090ce5e83454d5f05a0abbb2c953835f777", - "symbol": "SPACE", - "decimals": 18, - "name": "SPACE", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/324/0x47260090ce5e83454d5f05a0abbb2c953835f777.png", - "aggregators": ["1inch", "Socket", "Rubic", "Rango"], - "occurrences": 4 - }, - "0x8e86e46278518efc1c5ced245cba2c7e3ef11557": { - "address": "0x8e86e46278518efc1c5ced245cba2c7e3ef11557", - "symbol": "USD+", - "decimals": 6, - "name": "USD+", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/324/0x8e86e46278518efc1c5ced245cba2c7e3ef11557.png", - "aggregators": ["1inch", "LiFi", "Rango"], - "occurrences": 3 - }, - "0xdd9f72afed3631a6c85b5369d84875e6c42f1827": { - "address": "0xdd9f72afed3631a6c85b5369d84875e6c42f1827", - "symbol": "SIS", - "decimals": 18, - "name": "Symbiosis", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/324/0xdd9f72afed3631a6c85b5369d84875e6c42f1827.png", - "aggregators": [ - "CoinGecko", - "1inch", - "LiFi", - "TrustWallet", - "Socket", - "Rubic", - "Rango" - ], - "occurrences": 7 - }, - "0x5a7d6b2f92c77fad6ccabd7ee0624e64907eaf3e": { - "address": "0x5a7d6b2f92c77fad6ccabd7ee0624e64907eaf3e", - "symbol": "ZK", - "decimals": 18, - "name": "ZKsync", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/324/0x5a7d6b2f92c77fad6ccabd7ee0624e64907eaf3e.png", - "aggregators": [ - "CoinGecko", - "1inch", - "LiFi", - "Socket", - "Rubic", - "Rango" - ], - "occurrences": 6 - }, - "0x31c2c031fdc9d33e974f327ab0d9883eae06ca4a": { - "address": "0x31c2c031fdc9d33e974f327ab0d9883eae06ca4a", - "symbol": "ZF", - "decimals": 18, - "name": "zkSwap Finance", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/324/0x31c2c031fdc9d33e974f327ab0d9883eae06ca4a.png", - "aggregators": [ - "CoinGecko", - "1inch", - "LiFi", - "TrustWallet", - "Rubic", - "Rango" - ], - "occurrences": 6 - }, - "0x503234f203fc7eb888eec8513210612a43cf6115": { - "address": "0x503234f203fc7eb888eec8513210612a43cf6115", - "symbol": "LUSD", - "decimals": 18, - "name": "Liquity USD", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/324/0x503234f203fc7eb888eec8513210612a43cf6115.png", - "aggregators": [ - "CoinGecko", - "1inch", - "LiFi", - "Socket", - "Rubic", - "Rango" - ], - "occurrences": 6 - }, - "0x3a287a06c66f9e95a56327185ca2bdf5f031cecd": { - "address": "0x3a287a06c66f9e95a56327185ca2bdf5f031cecd", - "symbol": "CAKE", - "decimals": 18, - "name": "PancakeSwap Token", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/324/0x3a287a06c66f9e95a56327185ca2bdf5f031cecd.png", - "aggregators": [ - "CoinGecko", - "1inch", - "LiFi", - "Socket", - "Rubic", - "Rango" - ], - "occurrences": 6 - }, - "0x493257fd37edb34451f62edf8d2a0c418852ba4c": { - "address": "0x493257fd37edb34451f62edf8d2a0c418852ba4c", - "symbol": "USDT", - "decimals": 6, - "name": "Tether USD", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/324/0x493257fd37edb34451f62edf8d2a0c418852ba4c.png", - "aggregators": [ - "CoinGecko", - "1inch", - "LiFi", - "Socket", - "Rubic", - "Rango" - ], - "occurrences": 6 - }, - "0x3355df6d4c9c3035724fd0e3914de96a5a83aaf4": { - "address": "0x3355df6d4c9c3035724fd0e3914de96a5a83aaf4", - "symbol": "USDC", - "decimals": 6, - "name": "USD Coin Bridged", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/324/0x3355df6d4c9c3035724fd0e3914de96a5a83aaf4.png", - "aggregators": [ - "CoinGecko", - "1inch", - "LiFi", - "TrustWallet", - "Socket", - "Rubic", - "Rango" - ], - "occurrences": 7 - }, - "0x2039bb4116b4efc145ec4f0e2ea75012d6c0f181": { - "address": "0x2039bb4116b4efc145ec4f0e2ea75012d6c0f181", - "symbol": "BUSD", - "decimals": 18, - "name": "Binance USD", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/324/0x2039bb4116b4efc145ec4f0e2ea75012d6c0f181.png", - "aggregators": ["CoinGecko", "LiFi", "Socket", "Rubic", "Rango"], - "occurrences": 5 - }, - "0xbfb4b5616044eded03e5b1ad75141f0d9cb1499b": { - "address": "0xbfb4b5616044eded03e5b1ad75141f0d9cb1499b", - "symbol": "ZKDOGE", - "decimals": 18, - "name": "zkDoge", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/324/0xbfb4b5616044eded03e5b1ad75141f0d9cb1499b.png", - "aggregators": ["CoinGecko", "1inch", "Socket", "Rubic", "Rango"], - "occurrences": 5 - }, - "0xc8ac6191cdc9c7bf846ad6b52aaaa7a0757ee305": { - "address": "0xc8ac6191cdc9c7bf846ad6b52aaaa7a0757ee305", - "symbol": "MVX", - "decimals": 18, - "name": "Metavault Trade", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/324/0xc8ac6191cdc9c7bf846ad6b52aaaa7a0757ee305.png", - "aggregators": ["CoinGecko", "1inch", "LiFi", "Rubic", "Rango"], - "occurrences": 5 - }, - "0xd4169e045bcf9a86cc00101225d9ed61d2f51af2": { - "address": "0xd4169e045bcf9a86cc00101225d9ed61d2f51af2", - "symbol": "WRSETH", - "decimals": 18, - "name": "rsETHWrapper", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/324/0xd4169e045bcf9a86cc00101225d9ed61d2f51af2.png", - "aggregators": ["CoinGecko", "1inch", "LiFi", "Rubic", "Rango"], - "occurrences": 5 - }, - "0x16a9494e257703797d747540f01683952547ee5b": { - "address": "0x16a9494e257703797d747540f01683952547ee5b", - "symbol": "IZI", - "decimals": 18, - "name": "izumi Token", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/324/0x16a9494e257703797d747540f01683952547ee5b.png", - "aggregators": ["CoinGecko", "LiFi", "Socket", "Rubic", "Rango"], - "occurrences": 5 - }, - "0xd63ef5e9c628c8a0e8984cdfb7444aee44b09044": { - "address": "0xd63ef5e9c628c8a0e8984cdfb7444aee44b09044", - "symbol": "GOVI", - "decimals": 18, - "name": "CVI", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/324/0xd63ef5e9c628c8a0e8984cdfb7444aee44b09044.png", - "aggregators": ["CoinGecko", "1inch", "Socket", "Rubic", "Rango"], - "occurrences": 5 - }, - "0x4b9eb6c0b6ea15176bbf62841c6b2a8a398cb656": { - "address": "0x4b9eb6c0b6ea15176bbf62841c6b2a8a398cb656", - "symbol": "DAI", - "decimals": 18, - "name": "Dai Stablecoin", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/324/0x4b9eb6c0b6ea15176bbf62841c6b2a8a398cb656.png", - "aggregators": ["CoinGecko", "LiFi", "Rubic", "Rango"], - "occurrences": 4 - }, - "0x686b311f82b407f0be842652a98e5619f64cc25f": { - "address": "0x686b311f82b407f0be842652a98e5619f64cc25f", - "symbol": "ENA", - "decimals": 18, - "name": "ENA", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/324/0x686b311f82b407f0be842652a98e5619f64cc25f.png", - "aggregators": ["CoinGecko", "LiFi", "Rubic", "Rango"], - "occurrences": 4 - }, - "0x9e22d758629761fc5708c171d06c2fabb60b5159": { - "address": "0x9e22d758629761fc5708c171d06c2fabb60b5159", - "symbol": "WOO", - "decimals": 18, - "name": "WOO", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/324/0x9e22d758629761fc5708c171d06c2fabb60b5159.png", - "aggregators": ["CoinGecko", "Socket", "Rubic", "Rango"], - "occurrences": 4 - }, - "0x39fe7a0dacce31bd90418e3e659fb0b5f0b3db0d": { - "address": "0x39fe7a0dacce31bd90418e3e659fb0b5f0b3db0d", - "symbol": "USDE", - "decimals": 18, - "name": "USDe", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/324/0x39fe7a0dacce31bd90418e3e659fb0b5f0b3db0d.png", - "aggregators": ["CoinGecko", "LiFi", "Rubic", "Rango"], - "occurrences": 4 - }, - "0xea77c590bb36c43ef7139ce649cfbcfd6163170d": { - "address": "0xea77c590bb36c43ef7139ce649cfbcfd6163170d", - "symbol": "FRXUSD", - "decimals": 18, - "name": "FRXUSD", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/324/0xea77c590bb36c43ef7139ce649cfbcfd6163170d.png", - "aggregators": ["CoinGecko", "LiFi", "Rubic", "Rango"], - "occurrences": 4 - }, - "0x52869bae3e091e36b0915941577f2d47d8d8b534": { - "address": "0x52869bae3e091e36b0915941577f2d47d8d8b534", - "symbol": "LINK", - "decimals": 18, - "name": "LINK", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/324/0x52869bae3e091e36b0915941577f2d47d8d8b534.png", - "aggregators": ["CoinGecko", "LiFi", "Rubic", "Rango"], - "occurrences": 4 - }, - "0x32fd44bb869620c0ef993754c8a00be67c464806": { - "address": "0x32fd44bb869620c0ef993754c8a00be67c464806", - "symbol": "RETH", - "decimals": 18, - "name": "Rocket Pool ETH", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/324/0x32fd44bb869620c0ef993754c8a00be67c464806.png", - "aggregators": ["1inch", "LiFi", "Socket", "Rubic"], - "occurrences": 4 - }, - "0xed4040fd47629e7c8fbb7da76bb50b3e7695f0f2": { - "address": "0xed4040fd47629e7c8fbb7da76bb50b3e7695f0f2", - "symbol": "HOLD", - "decimals": 18, - "name": "Holdstation", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/324/0xed4040fd47629e7c8fbb7da76bb50b3e7695f0f2.png", - "aggregators": ["LiFi", "Socket", "Rubic", "Rango"], - "occurrences": 4 - }, - "0x7b3e1236c39ddd2e61cf6da6ac6d11193238ccb0": { - "address": "0x7b3e1236c39ddd2e61cf6da6ac6d11193238ccb0", - "symbol": "ZKE", - "decimals": 18, - "name": "ZKE", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/324/0x7b3e1236c39ddd2e61cf6da6ac6d11193238ccb0.png", - "aggregators": ["Socket", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x703b52f2b28febcb60e1372858af5b18849fe867": { - "address": "0x703b52f2b28febcb60e1372858af5b18849fe867", - "symbol": "WSTETH", - "decimals": 18, - "name": "Wrapped liquid staked Ether 2.0", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/324/0x703b52f2b28febcb60e1372858af5b18849fe867.png", - "aggregators": [ - "CoinGecko", - "1inch", - "LiFi", - "Socket", - "Rubic", - "Rango" - ], - "occurrences": 6 - }, - "0xe027d939f7de6f521675907cf086f59e4d75b876": { - "address": "0xe027d939f7de6f521675907cf086f59e4d75b876", - "symbol": "SLR", - "decimals": 18, - "name": "SolarCoin on Mainnet", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/324/0xe027d939f7de6f521675907cf086f59e4d75b876.png", - "aggregators": ["CoinGecko", "LiFi", "Socket", "Rubic", "Rango"], - "occurrences": 5 - }, - "0xa995ad25ce5eb76972ab356168f5e1d9257e4d05": { - "address": "0xa995ad25ce5eb76972ab356168f5e1d9257e4d05", - "symbol": "KOI", - "decimals": 18, - "name": "Koi", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/324/0xa995ad25ce5eb76972ab356168f5e1d9257e4d05.png", - "aggregators": ["CoinGecko", "1inch", "LiFi", "Rubic", "Rango"], - "occurrences": 5 - }, - "0x5fc44e95eaa48f9eb84be17bd3ac66b6a82af709": { - "address": "0x5fc44e95eaa48f9eb84be17bd3ac66b6a82af709", - "symbol": "GRAI", - "decimals": 18, - "name": "Gravita Debt Token", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/324/0x5fc44e95eaa48f9eb84be17bd3ac66b6a82af709.png", - "aggregators": ["CoinGecko", "LiFi", "Socket", "Rubic", "Rango"], - "occurrences": 5 - }, - "0xbe9f8c0d6f0fd7e46cdacca340747ea2f247991d": { - "address": "0xbe9f8c0d6f0fd7e46cdacca340747ea2f247991d", - "symbol": "IBEX", - "decimals": 18, - "name": "Impermax", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/324/0xbe9f8c0d6f0fd7e46cdacca340747ea2f247991d.png", - "aggregators": ["CoinGecko", "LiFi", "Socket", "Rubic", "Rango"], - "occurrences": 5 - }, - "0xa900cbe7739c96d2b153a273953620a701d5442b": { - "address": "0xa900cbe7739c96d2b153a273953620a701d5442b", - "symbol": "WUSDM", - "decimals": 18, - "name": "Wrapped Mountain Protocol USD", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/324/0xa900cbe7739c96d2b153a273953620a701d5442b.png", - "aggregators": ["CoinGecko", "LiFi", "Socket", "Rubic", "Rango"], - "occurrences": 5 - }, - "0x5d0d7bca050e2e98fd4a5e8d3ba823b49f39868d": { - "address": "0x5d0d7bca050e2e98fd4a5e8d3ba823b49f39868d", - "symbol": "ZFI", - "decimals": 18, - "name": "Zyfi Token", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/324/0x5d0d7bca050e2e98fd4a5e8d3ba823b49f39868d.png", - "aggregators": ["CoinGecko", "LiFi", "Rubic", "Rango"], - "occurrences": 4 - }, - "0x9929bcac4417a21d7e6fc86f6dae1cc7f27a2e41": { - "address": "0x9929bcac4417a21d7e6fc86f6dae1cc7f27a2e41", - "symbol": "DEXTF", - "decimals": 18, - "name": "DEXTF", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/324/0x9929bcac4417a21d7e6fc86f6dae1cc7f27a2e41.png", - "aggregators": ["CoinGecko", "Socket", "Rubic", "Rango"], - "occurrences": 4 - }, - "0x6ee46cb7cd2f15ee1ec9534cf29a5b51c83283e6": { - "address": "0x6ee46cb7cd2f15ee1ec9534cf29a5b51c83283e6", - "symbol": "KNC", - "decimals": 18, - "name": "KNC", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/324/0x6ee46cb7cd2f15ee1ec9534cf29a5b51c83283e6.png", - "aggregators": ["CoinGecko", "Socket", "Rubic", "Rango"], - "occurrences": 4 - }, - "0x75af292c1c9a37b3ea2e6041168b4e48875b9ed5": { - "address": "0x75af292c1c9a37b3ea2e6041168b4e48875b9ed5", - "symbol": "CBETH", - "decimals": 18, - "name": "Coinbase Wrapped Staked ETH", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/324/0x75af292c1c9a37b3ea2e6041168b4e48875b9ed5.png", - "aggregators": ["1inch", "LiFi", "Socket", "Rango"], - "occurrences": 4 - }, - "0x1382628e018010035999a1ff330447a0751aa84f": { - "address": "0x1382628e018010035999a1ff330447a0751aa84f", - "symbol": "IUSD", - "decimals": 18, - "name": "IUSD", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/324/0x1382628e018010035999a1ff330447a0751aa84f.png", - "aggregators": ["LiFi", "Socket", "Rubic", "Rango"], - "occurrences": 4 - }, - "0xe7895ed01a1a6aacf1c2e955af14e7cf612e7f9d": { - "address": "0xe7895ed01a1a6aacf1c2e955af14e7cf612e7f9d", - "symbol": "LETH", - "decimals": 18, - "name": "Liquid ETH", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/324/0xe7895ed01a1a6aacf1c2e955af14e7cf612e7f9d.png", - "aggregators": ["CoinGecko", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x57fd71a86522dc06d6255537521886057c1772a3": { - "address": "0x57fd71a86522dc06d6255537521886057c1772a3", - "symbol": "BCAP", - "decimals": 2, - "name": "BCAP", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/324/0x57fd71a86522dc06d6255537521886057c1772a3.png", - "aggregators": ["CoinGecko", "Rubic", "Rango"], - "occurrences": 3 - }, - "0xbd4372e44c5ee654dd838304006e1f0f69983154": { - "address": "0xbd4372e44c5ee654dd838304006e1f0f69983154", - "symbol": "NODL", - "decimals": 18, - "name": "Nodle Token", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/324/0xbd4372e44c5ee654dd838304006e1f0f69983154.png", - "aggregators": ["CoinGecko", "Rubic", "Rango"], - "occurrences": 3 - }, - "0xcdb7d260c107499c80b4b748e8331c64595972a1": { - "address": "0xcdb7d260c107499c80b4b748e8331c64595972a1", - "symbol": "KAT", - "decimals": 18, - "name": "Karat Token", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/324/0xcdb7d260c107499c80b4b748e8331c64595972a1.png", - "aggregators": ["CoinGecko", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x5c8c39e167c604b036afd3fbb65426f9fe78ce6d": { - "address": "0x5c8c39e167c604b036afd3fbb65426f9fe78ce6d", - "symbol": "PC0000023", - "decimals": 6, - "name": "PC0000023", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/324/0x5c8c39e167c604b036afd3fbb65426f9fe78ce6d.png", - "aggregators": ["CoinGecko", "Rubic", "Rango"], - "occurrences": 3 - }, - "0xc6dac3a53d5d6de9d1d05aa6e28b8e9e41722601": { - "address": "0xc6dac3a53d5d6de9d1d05aa6e28b8e9e41722601", - "symbol": "LIBERTAS", - "decimals": 18, - "name": "Wrapped LIBERTAS OMNIBUS", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/324/0xc6dac3a53d5d6de9d1d05aa6e28b8e9e41722601.png", - "aggregators": ["CoinGecko", "Rubic", "Rango"], - "occurrences": 3 - }, - "0xe593853b4d603d5b8f21036bb4ad0d1880097a6e": { - "address": "0xe593853b4d603d5b8f21036bb4ad0d1880097a6e", - "symbol": "FUL", - "decimals": 18, - "name": "FUL", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/324/0xe593853b4d603d5b8f21036bb4ad0d1880097a6e.png", - "aggregators": ["CoinGecko", "Rubic", "Rango"], - "occurrences": 3 - }, - "0xabec5ecbe08b6c02f5c9a2ff82696e1e7db6f9bf": { - "address": "0xabec5ecbe08b6c02f5c9a2ff82696e1e7db6f9bf", - "symbol": "HEU", - "decimals": 18, - "name": "Heurist", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/324/0xabec5ecbe08b6c02f5c9a2ff82696e1e7db6f9bf.png", - "aggregators": ["CoinGecko", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x05b65997ff7cb7976b43000ad376f91108b30d40": { - "address": "0x05b65997ff7cb7976b43000ad376f91108b30d40", - "symbol": "WGC", - "decimals": 6, - "name": "Wild Goat Coin", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/324/0x05b65997ff7cb7976b43000ad376f91108b30d40.png", - "aggregators": ["CoinGecko", "Rubic", "Rango"], - "occurrences": 3 - }, - "0xe75a17b4f5c4f844688d5670b684515d7c785e63": { - "address": "0xe75a17b4f5c4f844688d5670b684515d7c785e63", - "symbol": "VNO", - "decimals": 18, - "name": "VenoToken", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/324/0xe75a17b4f5c4f844688d5670b684515d7c785e63.png", - "aggregators": ["CoinGecko", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x99bbe51be7cce6c8b84883148fd3d12ace5787f2": { - "address": "0x99bbe51be7cce6c8b84883148fd3d12ace5787f2", - "symbol": "VC", - "decimals": 18, - "name": "Velocore", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/324/0x99bbe51be7cce6c8b84883148fd3d12ace5787f2.png", - "aggregators": ["1inch", "Rubic", "Rango"], - "occurrences": 3 - }, - "0xad17da2f6ac76746ef261e835c50b2651ce36da8": { - "address": "0xad17da2f6ac76746ef261e835c50b2651ce36da8", - "symbol": "SUSDE", - "decimals": 18, - "name": "SUSDE", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/324/0xad17da2f6ac76746ef261e835c50b2651ce36da8.png", - "aggregators": ["LiFi", "Rubic", "Rango"], - "occurrences": 3 - }, - "0xd0ea21ba66b67be636de1ec4bd9696eb8c61e9aa": { - "address": "0xd0ea21ba66b67be636de1ec4bd9696eb8c61e9aa", - "symbol": "OT", - "decimals": 18, - "name": "OT", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/324/0xd0ea21ba66b67be636de1ec4bd9696eb8c61e9aa.png", - "aggregators": ["LiFi", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x240f765af2273b0cab6caff2880d6d8f8b285fa4": { - "address": "0x240f765af2273b0cab6caff2880d6d8f8b285fa4", - "symbol": "SWORD", - "decimals": 18, - "name": "eZKalibur Token", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/324/0x240f765af2273b0cab6caff2880d6d8f8b285fa4.png", - "aggregators": ["LiFi", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x5756a28e2aae01f600fc2c01358395f5c1f8ad3a": { - "address": "0x5756a28e2aae01f600fc2c01358395f5c1f8ad3a", - "symbol": "VS", - "decimals": 18, - "name": "veSync", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/324/0x5756a28e2aae01f600fc2c01358395f5c1f8ad3a.png", - "aggregators": ["LiFi", "Rubic", "Rango"], - "occurrences": 3 - }, - "0xfc7e56298657b002b3e656400e746b7212912757": { - "address": "0xfc7e56298657b002b3e656400e746b7212912757", - "symbol": "ZKUSD", - "decimals": 6, - "name": "ZKUSD", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/324/0xfc7e56298657b002b3e656400e746b7212912757.png", - "aggregators": ["LiFi", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x6a5279e99ca7786fb13f827fc1fb4f61684933d6": { - "address": "0x6a5279e99ca7786fb13f827fc1fb4f61684933d6", - "symbol": "AVAX", - "decimals": 18, - "name": "Avalanche", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/324/0x6a5279e99ca7786fb13f827fc1fb4f61684933d6.png", - "aggregators": ["Socket", "Rubic", "Rango"], - "occurrences": 3 - }, - "0xc8ec5b0627c794de0e4ea5d97ad9a556b361d243": { - "address": "0xc8ec5b0627c794de0e4ea5d97ad9a556b361d243", - "symbol": "WISP", - "decimals": 18, - "name": "WISP", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/324/0xc8ec5b0627c794de0e4ea5d97ad9a556b361d243.png", - "aggregators": ["Socket", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x7715c206a14ac93cb1a6c0316a6e5f8ad7c9dc31": { - "address": "0x7715c206a14ac93cb1a6c0316a6e5f8ad7c9dc31", - "symbol": "USDM", - "decimals": 18, - "name": "USDM", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/324/0x7715c206a14ac93cb1a6c0316a6e5f8ad7c9dc31.png", - "aggregators": ["CoinGecko", "LiFi", "Socket", "Rubic", "Rango"], - "occurrences": 5 - }, - "0xd78abd81a3d57712a3af080dc4185b698fe9ac5a": { - "address": "0xd78abd81a3d57712a3af080dc4185b698fe9ac5a", - "symbol": "XVS", - "decimals": 18, - "name": "Venus XVS", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/324/0xd78abd81a3d57712a3af080dc4185b698fe9ac5a.png", - "aggregators": ["CoinGecko", "LiFi", "Rubic", "Rango"], - "occurrences": 4 - }, - "0x7f2fd959013eec5144269ac6edd0015cb10968fc": { - "address": "0x7f2fd959013eec5144269ac6edd0015cb10968fc", - "symbol": "TAROT", - "decimals": 18, - "name": "TAROT", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/324/0x7f2fd959013eec5144269ac6edd0015cb10968fc.png", - "aggregators": ["CoinGecko", "LiFi", "Rubic", "Rango"], - "occurrences": 4 - }, - "0x7400793aad94c8ca801aa036357d10f5fd0ce08f": { - "address": "0x7400793aad94c8ca801aa036357d10f5fd0ce08f", - "symbol": "CBNB", - "decimals": 18, - "name": "Celer Network BNB", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/324/0x7400793aad94c8ca801aa036357d10f5fd0ce08f.png", - "aggregators": ["LiFi", "Socket", "Rubic", "Rango"], - "occurrences": 4 - }, - "0x28a487240e4d45cff4a2980d334cc933b7483842": { - "address": "0x28a487240e4d45cff4a2980d334cc933b7483842", - "symbol": "CMATIC", - "decimals": 18, - "name": "Celer Network MATIC", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/324/0x28a487240e4d45cff4a2980d334cc933b7483842.png", - "aggregators": ["LiFi", "Socket", "Rubic", "Rango"], - "occurrences": 4 - }, - "0x60e7fe7ae4461b535bb9eb40c20424c7c61063d0": { - "address": "0x60e7fe7ae4461b535bb9eb40c20424c7c61063d0", - "symbol": "ZWIF", - "decimals": 18, - "name": "zeekwifhat", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/324/0x60e7fe7ae4461b535bb9eb40c20424c7c61063d0.png", - "aggregators": ["CoinGecko", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x244c238325fc1bdf6eded726ee1b47d55895d944": { - "address": "0x244c238325fc1bdf6eded726ee1b47d55895d944", - "symbol": "ZORRO", - "decimals": 18, - "name": "Zorro", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/324/0x244c238325fc1bdf6eded726ee1b47d55895d944.png", - "aggregators": ["CoinGecko", "Rubic", "Rango"], - "occurrences": 3 - }, - "0xb0c2bdc425fd01c33d8514f8be016070212bdc6a": { - "address": "0xb0c2bdc425fd01c33d8514f8be016070212bdc6a", - "symbol": "LMAO", - "decimals": 18, - "name": "LONGMAO", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/324/0xb0c2bdc425fd01c33d8514f8be016070212bdc6a.png", - "aggregators": ["CoinGecko", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x79db8c67d0c33203da4efb58f7d325e1e0d4d692": { - "address": "0x79db8c67d0c33203da4efb58f7d325e1e0d4d692", - "symbol": "MEOW", - "decimals": 18, - "name": "Zeek Coin", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/324/0x79db8c67d0c33203da4efb58f7d325e1e0d4d692.png", - "aggregators": ["CoinGecko", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x941fc398d9faebdd9f311011541045a1d66c748e": { - "address": "0x941fc398d9faebdd9f311011541045a1d66c748e", - "symbol": "NOP", - "decimals": 18, - "name": "NOP App", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/324/0x941fc398d9faebdd9f311011541045a1d66c748e.png", - "aggregators": ["CoinGecko", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x2ab105a3ead22731082b790ca9a00d9a3a7627f9": { - "address": "0x2ab105a3ead22731082b790ca9a00d9a3a7627f9", - "symbol": "FIUSD", - "decimals": 2, - "name": "FIUSD", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/324/0x2ab105a3ead22731082b790ca9a00d9a3a7627f9.png", - "aggregators": ["CoinGecko", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x5165ec33b491d7b67260b3143f96bb4ac4736398": { - "address": "0x5165ec33b491d7b67260b3143f96bb4ac4736398", - "symbol": "LONG", - "decimals": 18, - "name": "Long", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/324/0x5165ec33b491d7b67260b3143f96bb4ac4736398.png", - "aggregators": ["CoinGecko", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x47ef4a5641992a72cfd57b9406c9d9cefee8e0c4": { - "address": "0x47ef4a5641992a72cfd57b9406c9d9cefee8e0c4", - "symbol": "ZAT", - "decimals": 18, - "name": "ZAT", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/324/0x47ef4a5641992a72cfd57b9406c9d9cefee8e0c4.png", - "aggregators": ["CoinGecko", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x81e7186947fb59aaaaeb476a47daac60680cbbaf": { - "address": "0x81e7186947fb59aaaaeb476a47daac60680cbbaf", - "symbol": "WEFI", - "decimals": 18, - "name": "WeFi", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/324/0x81e7186947fb59aaaaeb476a47daac60680cbbaf.png", - "aggregators": ["CoinGecko", "Rubic", "Rango"], - "occurrences": 3 - }, - "0xdea6d5161978d36b5c0fa6a491faa754f4bc809c": { - "address": "0xdea6d5161978d36b5c0fa6a491faa754f4bc809c", - "symbol": "IDO", - "decimals": 18, - "name": "Idexo Token", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/324/0xdea6d5161978d36b5c0fa6a491faa754f4bc809c.png", - "aggregators": ["CoinGecko", "Rubic", "Rango"], - "occurrences": 3 - }, - "0xb6841b40baafedf4e37935270357ff89df42e68e": { - "address": "0xb6841b40baafedf4e37935270357ff89df42e68e", - "symbol": "USDLR", - "decimals": 6, - "name": "USDLR", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/324/0xb6841b40baafedf4e37935270357ff89df42e68e.png", - "aggregators": ["CoinGecko", "Rubic", "Rango"], - "occurrences": 3 - }, - "0xb0588f9a9cade7cd5f194a5fe77acd6a58250f82": { - "address": "0xb0588f9a9cade7cd5f194a5fe77acd6a58250f82", - "symbol": "BONSAI", - "decimals": 18, - "name": "Bonsai Token", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/324/0xb0588f9a9cade7cd5f194a5fe77acd6a58250f82.png", - "aggregators": ["CoinGecko", "Rubic", "Rango"], - "occurrences": 3 - }, - "0xe757355edba7ced7b8c0271bba4efda184ad75ab": { - "address": "0xe757355edba7ced7b8c0271bba4efda184ad75ab", - "symbol": "M-BTC", - "decimals": 18, - "name": "Merlin BTC", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/324/0xe757355edba7ced7b8c0271bba4efda184ad75ab.png", - "aggregators": ["CoinGecko", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x27d0a2b5316b98088294378692f4eabfb3222e36": { - "address": "0x27d0a2b5316b98088294378692f4eabfb3222e36", - "symbol": "ZERO", - "decimals": 18, - "name": "ZERO", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/324/0x27d0a2b5316b98088294378692f4eabfb3222e36.png", - "aggregators": ["CoinGecko", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x0469d9d1de0ee58fa1153ef00836b9bbcb84c0b6": { - "address": "0x0469d9d1de0ee58fa1153ef00836b9bbcb84c0b6", - "symbol": "USN", - "decimals": 18, - "name": "USN Token", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/324/0x0469d9d1de0ee58fa1153ef00836b9bbcb84c0b6.png", - "aggregators": ["CoinGecko", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x3613ad277df1d5935d41400a181aa9ec1dc2dc9e": { - "address": "0x3613ad277df1d5935d41400a181aa9ec1dc2dc9e", - "symbol": "WAGMI", - "decimals": 18, - "name": "WAGMI", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/324/0x3613ad277df1d5935d41400a181aa9ec1dc2dc9e.png", - "aggregators": ["CoinGecko", "Rubic", "Rango"], - "occurrences": 3 - }, - "0xfd282f16a64c6d304ac05d1a58da15bed0467c71": { - "address": "0xfd282f16a64c6d304ac05d1a58da15bed0467c71", - "symbol": "PEPE", - "decimals": 18, - "name": "Pepe", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/324/0xfd282f16a64c6d304ac05d1a58da15bed0467c71.png", - "aggregators": ["1inch", "Socket", "Rango"], - "occurrences": 3 - }, - "0x668cc2668eeeaf8075d38e72ef54fa546bf3c39c": { - "address": "0x668cc2668eeeaf8075d38e72ef54fa546bf3c39c", - "symbol": "ETHX", - "decimals": 18, - "name": "LSDx Pool", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/324/0x668cc2668eeeaf8075d38e72ef54fa546bf3c39c.png", - "aggregators": ["1inch", "Socket", "Rango"], - "occurrences": 3 - }, - "0x85d84c774cf8e9ff85342684b0e795df72a24908": { - "address": "0x85d84c774cf8e9ff85342684b0e795df72a24908", - "symbol": "VC", - "decimals": 18, - "name": "VC", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/324/0x85d84c774cf8e9ff85342684b0e795df72a24908.png", - "aggregators": ["LiFi", "Rubic", "Rango"], - "occurrences": 3 - }, - "0xb83cfb285fc8d936e8647fa9b1cc641dbaae92d9": { - "address": "0xb83cfb285fc8d936e8647fa9b1cc641dbaae92d9", - "symbol": "BEL", - "decimals": 18, - "name": "BEL", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/324/0xb83cfb285fc8d936e8647fa9b1cc641dbaae92d9.png", - "aggregators": ["Socket", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x0231b3de40b6b3bdd28dcef037f1b7a3fcf5a95a": { - "address": "0x0231b3de40b6b3bdd28dcef037f1b7a3fcf5a95a", - "symbol": "ZYN", - "decimals": 18, - "name": "ZYN", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/324/0x0231b3de40b6b3bdd28dcef037f1b7a3fcf5a95a.png", - "aggregators": ["Socket", "Rubic", "Rango"], - "occurrences": 3 - }, - "0xd599da85f8fc4877e61f547dfacffe1238a7149e": { - "address": "0xd599da85f8fc4877e61f547dfacffe1238a7149e", - "symbol": "CHEEMS", - "decimals": 18, - "name": "CHEEMS", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/324/0xd599da85f8fc4877e61f547dfacffe1238a7149e.png", - "aggregators": ["Socket", "Rubic", "Rango"], - "occurrences": 3 - }, - "0xc1fa6e2e8667d9be0ca938a54c7e0285e9df924a": { - "address": "0xc1fa6e2e8667d9be0ca938a54c7e0285e9df924a", - "symbol": "WEETH", - "decimals": 18, - "name": "Wrapped eETH", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/324/0xc1fa6e2e8667d9be0ca938a54c7e0285e9df924a.png", - "aggregators": ["CoinGecko", "LiFi", "Rubic", "Rango"], - "occurrences": 4 - }, - "0x74ed17608cc2b5f30a59d6af07c9ad1b1ab3a5b1": { - "address": "0x74ed17608cc2b5f30a59d6af07c9ad1b1ab3a5b1", - "symbol": "SOLVBTC", - "decimals": 18, - "name": "SOLVBTC", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/324/0x74ed17608cc2b5f30a59d6af07c9ad1b1ab3a5b1.png", - "aggregators": ["CoinGecko", "LiFi", "Rubic", "Rango"], - "occurrences": 4 - }, - "0xac4de1e9a9e83524f24af77972dd39d588de8164": { - "address": "0xac4de1e9a9e83524f24af77972dd39d588de8164", - "symbol": "PC0000031", - "decimals": 6, - "name": "PC0000031", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/324/0xac4de1e9a9e83524f24af77972dd39d588de8164.png", - "aggregators": ["CoinGecko", "Rubic", "Rango"], - "occurrences": 3 - }, - "0xb6a09d426861c63722aa0b333a9ce5d5a9b04c4f": { - "address": "0xb6a09d426861c63722aa0b333a9ce5d5a9b04c4f", - "symbol": "SUSN", - "decimals": 18, - "name": "Staked USN", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/324/0xb6a09d426861c63722aa0b333a9ce5d5a9b04c4f.png", - "aggregators": ["CoinGecko", "Rubic", "Rango"], - "occurrences": 3 - }, - "0xf6d9a093a1c69a152d87e269a7d909e9d76b1815": { - "address": "0xf6d9a093a1c69a152d87e269a7d909e9d76b1815", - "symbol": "LAUNCH", - "decimals": 18, - "name": "Super Launcher", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/324/0xf6d9a093a1c69a152d87e269a7d909e9d76b1815.png", - "aggregators": ["LiFi", "Rubic", "Rango"], - "occurrences": 3 - }, - "0xbbd1ba24d589c319c86519646817f2f153c9b716": { - "address": "0xbbd1ba24d589c319c86519646817f2f153c9b716", - "symbol": "DVF", - "decimals": 18, - "name": "DeversiFi Token", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/324/0xbbd1ba24d589c319c86519646817f2f153c9b716.png", - "aggregators": ["LiFi", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x43cd37cc4b9ec54833c8ac362dd55e58bfd62b86": { - "address": "0x43cd37cc4b9ec54833c8ac362dd55e58bfd62b86", - "symbol": "CRVUSD", - "decimals": 18, - "name": "CRVUSD", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/324/0x43cd37cc4b9ec54833c8ac362dd55e58bfd62b86.png", - "aggregators": ["LiFi", "Socket", "Rango"], - "occurrences": 3 - }, - "0xc2b13bb90e33f1e191b8aa8f44ce11534d5698e3": { - "address": "0xc2b13bb90e33f1e191b8aa8f44ce11534d5698e3", - "symbol": "COMBO", - "decimals": 18, - "name": "COMBO", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/324/0xc2b13bb90e33f1e191b8aa8f44ce11534d5698e3.png", - "aggregators": ["LiFi", "Socket", "Rango"], - "occurrences": 3 - }, - "0x42c1c56be243c250ab24d2ecdcc77f9ccaa59601": { - "address": "0x42c1c56be243c250ab24d2ecdcc77f9ccaa59601", - "symbol": "PERP", - "decimals": 18, - "name": "PERP", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/324/0x42c1c56be243c250ab24d2ecdcc77f9ccaa59601.png", - "aggregators": ["LiFi", "Socket", "Rango"], - "occurrences": 3 - } - }, - "timestamp": 1779126362429 - }, - "0x2105": { - "data": { - "0x2ae3f1ec7f1f5012cfeab0185bfc7aa3cf0dec22": { - "address": "0x2ae3f1ec7f1f5012cfeab0185bfc7aa3cf0dec22", - "symbol": "CBETH", - "decimals": 18, - "name": "Coinbase Wrapped Staked ETH", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x2ae3f1ec7f1f5012cfeab0185bfc7aa3cf0dec22.png", - "aggregators": [ - "CoinGecko", - "1inch", - "LiFi", - "Socket", - "Rubic", - "Squid", - "Rango", - "Sonarwatch", - "SushiSwap" - ], - "occurrences": 9 - }, - "0x1c7a460413dd4e964f96d8dfc56e7223ce88cd85": { - "address": "0x1c7a460413dd4e964f96d8dfc56e7223ce88cd85", - "symbol": "SEAM", - "decimals": 18, - "name": "Seamless", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x1c7a460413dd4e964f96d8dfc56e7223ce88cd85.png", - "aggregators": [ - "CoinGecko", - "1inch", - "LiFi", - "Socket", - "Rubic", - "Squid", - "Rango", - "Sonarwatch", - "SushiSwap" - ], - "occurrences": 9 - }, - "0x833589fcd6edb6e08f4c7c32d4f71b54bda02913": { - "address": "0x833589fcd6edb6e08f4c7c32d4f71b54bda02913", - "symbol": "USDC", - "decimals": 6, - "name": "USD Coin", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x833589fcd6edb6e08f4c7c32d4f71b54bda02913.png", - "aggregators": [ - "CoinGecko", - "1inch", - "LiFi", - "Socket", - "Rubic", - "Squid", - "Rango", - "Sonarwatch", - "SushiSwap" - ], - "occurrences": 9 - }, - "0xc1cba3fcea344f92d9239c08c0568f6f2f0ee452": { - "address": "0xc1cba3fcea344f92d9239c08c0568f6f2f0ee452", - "symbol": "WSTETH", - "decimals": 18, - "name": "Wrapped liquid staked Ether 2.0", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xc1cba3fcea344f92d9239c08c0568f6f2f0ee452.png", - "aggregators": [ - "CoinGecko", - "1inch", - "LiFi", - "Socket", - "Rubic", - "Squid", - "Rango", - "Sonarwatch", - "SushiSwap" - ], - "occurrences": 9 - }, - "0xb6fe221fe9eef5aba221c348ba20a1bf5e73624c": { - "address": "0xb6fe221fe9eef5aba221c348ba20a1bf5e73624c", - "symbol": "RETH", - "decimals": 18, - "name": "Rocket Pool ETH", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xb6fe221fe9eef5aba221c348ba20a1bf5e73624c.png", - "aggregators": [ - "CoinGecko", - "1inch", - "LiFi", - "TrustWallet", - "Socket", - "Rubic", - "Squid", - "Rango", - "Sonarwatch" - ], - "occurrences": 9 - }, - "0xed6e000def95780fb89734c07ee2ce9f6dcaf110": { - "address": "0xed6e000def95780fb89734c07ee2ce9f6dcaf110", - "symbol": "EDGE", - "decimals": 18, - "name": "Definitive", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xed6e000def95780fb89734c07ee2ce9f6dcaf110.png", - "aggregators": [ - "CoinGecko", - "1inch", - "LiFi", - "Socket", - "Rubic", - "Squid", - "Rango", - "Sonarwatch" - ], - "occurrences": 8 - }, - "0x50c5725949a6f0c72e6c4a641f24049a917db0cb": { - "address": "0x50c5725949a6f0c72e6c4a641f24049a917db0cb", - "symbol": "DAI", - "decimals": 18, - "name": "Dai", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x50c5725949a6f0c72e6c4a641f24049a917db0cb.png", - "aggregators": [ - "CoinGecko", - "1inch", - "LiFi", - "TrustWallet", - "Socket", - "Rubic", - "Squid", - "Rango", - "Sonarwatch", - "SushiSwap" - ], - "occurrences": 10 - }, - "0x9e1028f5f1d5ede59748ffcee5532509976840e0": { - "address": "0x9e1028f5f1d5ede59748ffcee5532509976840e0", - "symbol": "COMP", - "decimals": 18, - "name": "Compound", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x9e1028f5f1d5ede59748ffcee5532509976840e0.png", - "aggregators": [ - "CoinGecko", - "1inch", - "LiFi", - "Socket", - "Rubic", - "Squid", - "Rango", - "Sonarwatch", - "SushiSwap" - ], - "occurrences": 9 - }, - "0xd9aaec86b65d86f6a7b5b1b0c42ffa531710b6ca": { - "address": "0xd9aaec86b65d86f6a7b5b1b0c42ffa531710b6ca", - "symbol": "USDBC", - "decimals": 6, - "name": "USD Base Coin", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xd9aaec86b65d86f6a7b5b1b0c42ffa531710b6ca.png", - "aggregators": [ - "CoinGecko", - "1inch", - "LiFi", - "TrustWallet", - "Rubic", - "Squid", - "Rango", - "Sonarwatch", - "SushiSwap" - ], - "occurrences": 9 - }, - "0x4200000000000000000000000000000000000006": { - "address": "0x4200000000000000000000000000000000000006", - "symbol": "WETH", - "decimals": 18, - "name": "Wrapped Ether", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x4200000000000000000000000000000000000006.png", - "aggregators": [ - "CoinGecko", - "1inch", - "LiFi", - "Socket", - "Rubic", - "Squid", - "Rango", - "Sonarwatch", - "SushiSwap" - ], - "occurrences": 9 - }, - "0x9eaf8c1e34f05a589eda6bafdf391cf6ad3cb239": { - "address": "0x9eaf8c1e34f05a589eda6bafdf391cf6ad3cb239", - "symbol": "YFI", - "decimals": 18, - "name": "yearn.finance", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x9eaf8c1e34f05a589eda6bafdf391cf6ad3cb239.png", - "aggregators": [ - "CoinGecko", - "1inch", - "LiFi", - "TrustWallet", - "Socket", - "Rubic", - "Squid", - "Rango", - "Sonarwatch" - ], - "occurrences": 9 - }, - "0x22e6966b799c4d5b13be962e1d117b56327fda66": { - "address": "0x22e6966b799c4d5b13be962e1d117b56327fda66", - "symbol": "SNX", - "decimals": 18, - "name": "Synthetix Network", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x22e6966b799c4d5b13be962e1d117b56327fda66.png", - "aggregators": [ - "CoinGecko", - "1inch", - "LiFi", - "Socket", - "Rubic", - "Squid", - "Rango", - "Sonarwatch" - ], - "occurrences": 8 - }, - "0x368181499736d0c0cc614dbb145e2ec1ac86b8c6": { - "address": "0x368181499736d0c0cc614dbb145e2ec1ac86b8c6", - "symbol": "LUSD", - "decimals": 18, - "name": "Liquity USD", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x368181499736d0c0cc614dbb145e2ec1ac86b8c6.png", - "aggregators": [ - "CoinGecko", - "1inch", - "LiFi", - "Socket", - "Rubic", - "Squid", - "Rango", - "Sonarwatch" - ], - "occurrences": 8 - }, - "0x4621b7a9c75199271f773ebd9a499dbd165c3191": { - "address": "0x4621b7a9c75199271f773ebd9a499dbd165c3191", - "symbol": "DOLA", - "decimals": 18, - "name": "DOLA", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x4621b7a9c75199271f773ebd9a499dbd165c3191.png", - "aggregators": [ - "CoinGecko", - "1inch", - "LiFi", - "Socket", - "Rubic", - "Squid", - "Rango", - "Sonarwatch" - ], - "occurrences": 8 - }, - "0xbaa5cc21fd487b8fcc2f632f3f4e8d37262a0842": { - "address": "0xbaa5cc21fd487b8fcc2f632f3f4e8d37262a0842", - "symbol": "MORPHO", - "decimals": 18, - "name": "Morpho", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xbaa5cc21fd487b8fcc2f632f3f4e8d37262a0842.png", - "aggregators": [ - "CoinGecko", - "1inch", - "LiFi", - "Socket", - "Rubic", - "Squid", - "Rango", - "Sonarwatch" - ], - "occurrences": 8 - }, - "0x236aa50979d5f3de3bd1eeb40e81137f22ab794b": { - "address": "0x236aa50979d5f3de3bd1eeb40e81137f22ab794b", - "symbol": "TBTC", - "decimals": 18, - "name": "tBTC", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x236aa50979d5f3de3bd1eeb40e81137f22ab794b.png", - "aggregators": [ - "CoinGecko", - "1inch", - "LiFi", - "Socket", - "Rubic", - "Squid", - "Rango", - "Sonarwatch" - ], - "occurrences": 8 - }, - "0xfa980ced6895ac314e7de34ef1bfae90a5add21b": { - "address": "0xfa980ced6895ac314e7de34ef1bfae90a5add21b", - "symbol": "PRIME", - "decimals": 18, - "name": "Echelon Prime", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xfa980ced6895ac314e7de34ef1bfae90a5add21b.png", - "aggregators": [ - "CoinGecko", - "1inch", - "LiFi", - "Socket", - "Rubic", - "Squid", - "Rango", - "Sonarwatch" - ], - "occurrences": 8 - }, - "0x4158734d47fc9692176b5085e0f52ee0da5d47f1": { - "address": "0x4158734d47fc9692176b5085e0f52ee0da5d47f1", - "symbol": "BAL", - "decimals": 18, - "name": "Balancer", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x4158734d47fc9692176b5085e0f52ee0da5d47f1.png", - "aggregators": [ - "CoinGecko", - "1inch", - "LiFi", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 7 - }, - "0x98d0baa52b2d063e780de12f615f963fe8537553": { - "address": "0x98d0baa52b2d063e780de12f615f963fe8537553", - "symbol": "KAITO", - "decimals": 18, - "name": "KAITO", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x98d0baa52b2d063e780de12f615f963fe8537553.png", - "aggregators": [ - "CoinGecko", - "1inch", - "LiFi", - "Rubic", - "Squid", - "Rango", - "Sonarwatch" - ], - "occurrences": 7 - }, - "0x7d49a065d17d6d4a55dc13649901fdbb98b2afba": { - "address": "0x7d49a065d17d6d4a55dc13649901fdbb98b2afba", - "symbol": "SUSHI", - "decimals": 18, - "name": "SushiToken", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x7d49a065d17d6d4a55dc13649901fdbb98b2afba.png", - "aggregators": [ - "CoinGecko", - "1inch", - "Socket", - "Rubic", - "Rango", - "Sonarwatch", - "SushiSwap" - ], - "occurrences": 7 - }, - "0xacfe6019ed1a7dc6f7b508c02d1b04ec88cc21bf": { - "address": "0xacfe6019ed1a7dc6f7b508c02d1b04ec88cc21bf", - "symbol": "VVV", - "decimals": 18, - "name": "Venice Token", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xacfe6019ed1a7dc6f7b508c02d1b04ec88cc21bf.png", - "aggregators": [ - "CoinGecko", - "1inch", - "LiFi", - "Rubic", - "Squid", - "Rango", - "Sonarwatch" - ], - "occurrences": 7 - }, - "0x1111111111166b7fe7bd91427724b487980afc69": { - "address": "0x1111111111166b7fe7bd91427724b487980afc69", - "symbol": "ZORA", - "decimals": 18, - "name": "Zora", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x1111111111166b7fe7bd91427724b487980afc69.png", - "aggregators": [ - "CoinGecko", - "1inch", - "LiFi", - "Rubic", - "Squid", - "Rango", - "Sonarwatch" - ], - "occurrences": 7 - }, - "0xfde4c96c8593536e31f229ea8f37b2ada2699bb2": { - "address": "0xfde4c96c8593536e31f229ea8f37b2ada2699bb2", - "symbol": "USDT", - "decimals": 6, - "name": "L2 Standard Bridged USDT (Base)", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xfde4c96c8593536e31f229ea8f37b2ada2699bb2.png", - "aggregators": [ - "CoinGecko", - "1inch", - "LiFi", - "Rubic", - "Squid", - "Rango", - "Sonarwatch" - ], - "occurrences": 7 - }, - "0x226a2fa2556c48245e57cd1cba4c6c9e67077dd2": { - "address": "0x226a2fa2556c48245e57cd1cba4c6c9e67077dd2", - "symbol": "BIO", - "decimals": 18, - "name": "Bio Protocol", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x226a2fa2556c48245e57cd1cba4c6c9e67077dd2.png", - "aggregators": [ - "CoinGecko", - "LiFi", - "Socket", - "Rubic", - "Squid", - "Rango", - "Sonarwatch" - ], - "occurrences": 7 - }, - "0x688aee022aa544f150678b8e5720b6b96a9e9a2f": { - "address": "0x688aee022aa544f150678b8e5720b6b96a9e9a2f", - "symbol": "SYRUP", - "decimals": 18, - "name": "Maple Finance", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x688aee022aa544f150678b8e5720b6b96a9e9a2f.png", - "aggregators": [ - "CoinGecko", - "LiFi", - "Socket", - "Rubic", - "Squid", - "Rango", - "Sonarwatch" - ], - "occurrences": 7 - }, - "0x18dd5b087bca9920562aff7a0199b96b9230438b": { - "address": "0x18dd5b087bca9920562aff7a0199b96b9230438b", - "symbol": "PRO", - "decimals": 18, - "name": "Propy", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x18dd5b087bca9920562aff7a0199b96b9230438b.png", - "aggregators": [ - "CoinGecko", - "1inch", - "LiFi", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 7 - }, - "0xcd2f22236dd9dfe2356d7c543161d4d260fd9bcb": { - "address": "0xcd2f22236dd9dfe2356d7c543161d4d260fd9bcb", - "symbol": "GHST", - "decimals": 18, - "name": "Aavegotchi", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xcd2f22236dd9dfe2356d7c543161d4d260fd9bcb.png", - "aggregators": [ - "CoinGecko", - "1inch", - "LiFi", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 7 - }, - "0xa1832f7f4e534ae557f9b5ab76de54b1873e498b": { - "address": "0xa1832f7f4e534ae557f9b5ab76de54b1873e498b", - "symbol": "BID", - "decimals": 18, - "name": "CreatorBid", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xa1832f7f4e534ae557f9b5ab76de54b1873e498b.png", - "aggregators": [ - "CoinGecko", - "1inch", - "LiFi", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 7 - }, - "0xca4c2e10037ac1af9f501ecb11a710776c87d2d5": { - "address": "0xca4c2e10037ac1af9f501ecb11a710776c87d2d5", - "symbol": "SOVRN", - "decimals": 18, - "name": "Sovrun", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xca4c2e10037ac1af9f501ecb11a710776c87d2d5.png", - "aggregators": [ - "CoinGecko", - "Socket", - "Rubic", - "Squid", - "Rango", - "Sonarwatch" - ], - "occurrences": 6 - }, - "0x489fe42c267fe0366b16b0c39e7aeef977e841ef": { - "address": "0x489fe42c267fe0366b16b0c39e7aeef977e841ef", - "symbol": "WAMPL", - "decimals": 18, - "name": "Wrapped Ampleforth", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x489fe42c267fe0366b16b0c39e7aeef977e841ef.png", - "aggregators": [ - "CoinGecko", - "1inch", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 6 - }, - "0x3992b27da26848c2b19cea6fd25ad5568b68ab98": { - "address": "0x3992b27da26848c2b19cea6fd25ad5568b68ab98", - "symbol": "OM", - "decimals": 18, - "name": "MANTRA", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x3992b27da26848c2b19cea6fd25ad5568b68ab98.png", - "aggregators": [ - "1inch", - "LiFi", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 6 - }, - "0x13f4196cc779275888440b3000ae533bbbbc3166": { - "address": "0x13f4196cc779275888440b3000ae533bbbbc3166", - "symbol": "AMKT", - "decimals": 18, - "name": "Alongside Crypto Market Index", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x13f4196cc779275888440b3000ae533bbbbc3166.png", - "aggregators": ["CoinGecko", "Socket", "Rubic", "Squid", "Rango"], - "occurrences": 5 - }, - "0xa7d68d155d17cb30e311367c2ef1e82ab6022b67": { - "address": "0xa7d68d155d17cb30e311367c2ef1e82ab6022b67", - "symbol": "BTRST", - "decimals": 18, - "name": "Braintrust", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xa7d68d155d17cb30e311367c2ef1e82ab6022b67.png", - "aggregators": [ - "CoinGecko", - "1inch", - "Socket", - "Rubic", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x532f27101965dd16442e59d40670faf5ebb142e4": { - "address": "0x532f27101965dd16442e59d40670faf5ebb142e4", - "symbol": "BRETT", - "decimals": 18, - "name": "Brett", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x532f27101965dd16442e59d40670faf5ebb142e4.png", - "aggregators": [ - "CoinGecko", - "1inch", - "LiFi", - "Socket", - "Rubic", - "Squid", - "Rango", - "Sonarwatch", - "SushiSwap" - ], - "occurrences": 9 - }, - "0x4f9fd6be4a90f2620860d680c0d4d5fb53d1a825": { - "address": "0x4f9fd6be4a90f2620860d680c0d4d5fb53d1a825", - "symbol": "AIXBT", - "decimals": 18, - "name": "aixbt by Virtuals", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x4f9fd6be4a90f2620860d680c0d4d5fb53d1a825.png", - "aggregators": [ - "CoinGecko", - "1inch", - "LiFi", - "Socket", - "Rubic", - "Squid", - "Rango", - "Sonarwatch" - ], - "occurrences": 8 - }, - "0xcbb7c0000ab88b473b1f5afd9ef808440eed33bf": { - "address": "0xcbb7c0000ab88b473b1f5afd9ef808440eed33bf", - "symbol": "CBBTC", - "decimals": 8, - "name": "Coinbase Wrapped BTC", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xcbb7c0000ab88b473b1f5afd9ef808440eed33bf.png", - "aggregators": [ - "CoinGecko", - "1inch", - "LiFi", - "Socket", - "Rubic", - "Squid", - "Rango", - "Sonarwatch" - ], - "occurrences": 8 - }, - "0x4ed4e862860bed51a9570b96d89af5e1b0efefed": { - "address": "0x4ed4e862860bed51a9570b96d89af5e1b0efefed", - "symbol": "DEGEN", - "decimals": 18, - "name": "Degen (Base)", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x4ed4e862860bed51a9570b96d89af5e1b0efefed.png", - "aggregators": [ - "CoinGecko", - "1inch", - "LiFi", - "Socket", - "Rubic", - "Squid", - "Rango", - "Sonarwatch" - ], - "occurrences": 8 - }, - "0xac1bd2486aaf3b5c0fc3fd868558b082a531b2b4": { - "address": "0xac1bd2486aaf3b5c0fc3fd868558b082a531b2b4", - "symbol": "TOSHI", - "decimals": 18, - "name": "Toshi", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xac1bd2486aaf3b5c0fc3fd868558b082a531b2b4.png", - "aggregators": [ - "CoinGecko", - "1inch", - "LiFi", - "Rubic", - "Squid", - "Rango", - "Sonarwatch", - "SushiSwap" - ], - "occurrences": 8 - }, - "0x0b3e328455c4059eeb9e3f84b5543f74e24e7e1b": { - "address": "0x0b3e328455c4059eeb9e3f84b5543f74e24e7e1b", - "symbol": "VIRTUAL", - "decimals": 18, - "name": "Virtuals Protocol", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x0b3e328455c4059eeb9e3f84b5543f74e24e7e1b.png", - "aggregators": [ - "CoinGecko", - "1inch", - "LiFi", - "Socket", - "Rubic", - "Squid", - "Rango", - "Sonarwatch" - ], - "occurrences": 8 - }, - "0x820c137fa70c8691f0e44dc420a5e53c168921dc": { - "address": "0x820c137fa70c8691f0e44dc420a5e53c168921dc", - "symbol": "USDS", - "decimals": 18, - "name": "USDS", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x820c137fa70c8691f0e44dc420a5e53c168921dc.png", - "aggregators": [ - "CoinGecko", - "1inch", - "LiFi", - "Socket", - "Rubic", - "Squid", - "Rango", - "Sonarwatch" - ], - "occurrences": 8 - }, - "0xab36452dbac151be02b16ca17d8919826072f64a": { - "address": "0xab36452dbac151be02b16ca17d8919826072f64a", - "symbol": "RSR", - "decimals": 18, - "name": "Reserve Rights", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xab36452dbac151be02b16ca17d8919826072f64a.png", - "aggregators": [ - "CoinGecko", - "LiFi", - "Socket", - "Rubic", - "Squid", - "Rango", - "Sonarwatch" - ], - "occurrences": 7 - }, - "0x50da645f148798f68ef2d7db7c1cb22a6819bb2c": { - "address": "0x50da645f148798f68ef2d7db7c1cb22a6819bb2c", - "symbol": "SPX", - "decimals": 8, - "name": "SPX6900", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x50da645f148798f68ef2d7db7c1cb22a6819bb2c.png", - "aggregators": [ - "CoinGecko", - "LiFi", - "Socket", - "Rubic", - "Squid", - "Rango", - "Sonarwatch" - ], - "occurrences": 7 - }, - "0x7002458b1df59eccb57387bc79ffc7c29e22e6f7": { - "address": "0x7002458b1df59eccb57387bc79ffc7c29e22e6f7", - "symbol": "OGN", - "decimals": 18, - "name": "Origin Token", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x7002458b1df59eccb57387bc79ffc7c29e22e6f7.png", - "aggregators": [ - "CoinGecko", - "1inch", - "LiFi", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 7 - }, - "0x2da56acb9ea78330f947bd57c54119debda7af71": { - "address": "0x2da56acb9ea78330f947bd57c54119debda7af71", - "symbol": "MOG", - "decimals": 18, - "name": "Mog Coin", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x2da56acb9ea78330f947bd57c54119debda7af71.png", - "aggregators": [ - "CoinGecko", - "1inch", - "Socket", - "Rubic", - "Squid", - "Rango", - "Sonarwatch" - ], - "occurrences": 7 - }, - "0x3792dbdd07e87413247df995e692806aa13d3299": { - "address": "0x3792dbdd07e87413247df995e692806aa13d3299", - "symbol": "OMI", - "decimals": 18, - "name": "ECOMI", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x3792dbdd07e87413247df995e692806aa13d3299.png", - "aggregators": [ - "CoinGecko", - "LiFi", - "Socket", - "Rubic", - "Squid", - "Rango", - "Sonarwatch" - ], - "occurrences": 7 - }, - "0xbcbaf311cec8a4eac0430193a528d9ff27ae38c1": { - "address": "0xbcbaf311cec8a4eac0430193a528d9ff27ae38c1", - "symbol": "IOTX", - "decimals": 18, - "name": "IoTeX", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xbcbaf311cec8a4eac0430193a528d9ff27ae38c1.png", - "aggregators": [ - "CoinGecko", - "LiFi", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 6 - }, - "0xc0634090f2fe6c6d75e61be2b949464abb498973": { - "address": "0xc0634090f2fe6c6d75e61be2b949464abb498973", - "symbol": "KTA", - "decimals": 18, - "name": "Keeta", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xc0634090f2fe6c6d75e61be2b949464abb498973.png", - "aggregators": [ - "CoinGecko", - "LiFi", - "Rubic", - "Squid", - "Rango", - "Sonarwatch" - ], - "occurrences": 6 - }, - "0x30c7235866872213f68cb1f08c37cb9eccb93452": { - "address": "0x30c7235866872213f68cb1f08c37cb9eccb93452", - "symbol": "PROMPT", - "decimals": 18, - "name": "Prompt", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x30c7235866872213f68cb1f08c37cb9eccb93452.png", - "aggregators": [ - "CoinGecko", - "1inch", - "LiFi", - "Socket", - "Rubic", - "Rango" - ], - "occurrences": 6 - }, - "0x1aa8fd5bcce2231c6100d55bf8b377cff33acfc3": { - "address": "0x1aa8fd5bcce2231c6100d55bf8b377cff33acfc3", - "symbol": "RAVE", - "decimals": 18, - "name": "RaveDAO", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x1aa8fd5bcce2231c6100d55bf8b377cff33acfc3.png", - "aggregators": [ - "CoinGecko", - "LiFi", - "Socket", - "Rubic", - "Squid", - "Rango" - ], - "occurrences": 6 - }, - "0xfbb75a59193a3525a8825bebe7d4b56899e2f7e1": { - "address": "0xfbb75a59193a3525a8825bebe7d4b56899e2f7e1", - "symbol": "RSC", - "decimals": 18, - "name": "ResearchCoin", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xfbb75a59193a3525a8825bebe7d4b56899e2f7e1.png", - "aggregators": [ - "CoinGecko", - "LiFi", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 6 - }, - "0x00000000a22c618fd6b4d7e9a335c4b96b189a38": { - "address": "0x00000000a22c618fd6b4d7e9a335c4b96b189a38", - "symbol": "TOWNS", - "decimals": 18, - "name": "Towns", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x00000000a22c618fd6b4d7e9a335c4b96b189a38.png", - "aggregators": [ - "CoinGecko", - "LiFi", - "Socket", - "Rubic", - "Squid", - "Rango" - ], - "occurrences": 6 - }, - "0xf43eb8de897fbc7f2502483b2bef7bb9ea179229": { - "address": "0xf43eb8de897fbc7f2502483b2bef7bb9ea179229", - "symbol": "ZEN", - "decimals": 18, - "name": "Horizen", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xf43eb8de897fbc7f2502483b2bef7bb9ea179229.png", - "aggregators": [ - "CoinGecko", - "LiFi", - "Socket", - "Rubic", - "Squid", - "Rango" - ], - "occurrences": 6 - }, - "0x3bb4445d30ac020a84c1b5a8a2c6248ebc9779d0": { - "address": "0x3bb4445d30ac020a84c1b5a8a2c6248ebc9779d0", - "symbol": "ZRX", - "decimals": 18, - "name": "0x Protocol Token", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x3bb4445d30ac020a84c1b5a8a2c6248ebc9779d0.png", - "aggregators": [ - "UniswapLabs", - "1inch", - "Socket", - "Rubic", - "Rango", - "SushiSwap" - ], - "occurrences": 6 - }, - "0x1f1c695f6b4a3f8b05f2492cef9474afb6d6ad69": { - "address": "0x1f1c695f6b4a3f8b05f2492cef9474afb6d6ad69", - "symbol": "A1C", - "decimals": 18, - "name": "Sally A1C", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x1f1c695f6b4a3f8b05f2492cef9474afb6d6ad69.png", - "aggregators": [ - "CoinGecko", - "LiFi", - "Rubic", - "Squid", - "Rango", - "Sonarwatch" - ], - "occurrences": 6 - }, - "0x311935cd80b76769bf2ecc9d8ab7635b2139cf82": { - "address": "0x311935cd80b76769bf2ecc9d8ab7635b2139cf82", - "symbol": "SOL", - "decimals": 9, - "name": "Solana", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x311935cd80b76769bf2ecc9d8ab7635b2139cf82.png", - "aggregators": [ - "CoinGecko", - "1inch", - "LiFi", - "Rubic", - "Squid", - "Rango" - ], - "occurrences": 6 - }, - "0x0c1dc73159e30c4b06170f2593d3118968a0dca5": { - "address": "0x0c1dc73159e30c4b06170f2593d3118968a0dca5", - "symbol": "GPS", - "decimals": 18, - "name": "GoPlus Security", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x0c1dc73159e30c4b06170f2593d3118968a0dca5.png", - "aggregators": [ - "CoinGecko", - "LiFi", - "Rubic", - "Squid", - "Rango", - "Sonarwatch" - ], - "occurrences": 6 - }, - "0x76c71f1703fbf19ffdcf3051e1e684cb9934510f": { - "address": "0x76c71f1703fbf19ffdcf3051e1e684cb9934510f", - "symbol": "AIXCB", - "decimals": 18, - "name": "aixCB by Virtuals", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x76c71f1703fbf19ffdcf3051e1e684cb9934510f.png", - "aggregators": [ - "CoinGecko", - "LiFi", - "Rubic", - "Squid", - "Rango", - "Sonarwatch" - ], - "occurrences": 6 - }, - "0xfb31f85a8367210b2e4ed2360d2da9dc2d2ccc95": { - "address": "0xfb31f85a8367210b2e4ed2360d2da9dc2d2ccc95", - "symbol": "EDEL", - "decimals": 18, - "name": "Edel", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xfb31f85a8367210b2e4ed2360d2da9dc2d2ccc95.png", - "aggregators": [ - "CoinGecko", - "LiFi", - "Socket", - "Rubic", - "Squid", - "Rango" - ], - "occurrences": 6 - }, - "0x937a1cfaf0a3d9f5dc4d0927f72ee5e3e5f82a00": { - "address": "0x937a1cfaf0a3d9f5dc4d0927f72ee5e3e5f82a00", - "symbol": "COCORO", - "decimals": 18, - "name": "Cocoro", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x937a1cfaf0a3d9f5dc4d0927f72ee5e3e5f82a00.png", - "aggregators": [ - "CoinGecko", - "Socket", - "Rubic", - "Squid", - "Rango", - "Sonarwatch" - ], - "occurrences": 6 - }, - "0x091a5abe6616e26268e5eecff256c2212fce2707": { - "address": "0x091a5abe6616e26268e5eecff256c2212fce2707", - "symbol": "BONDETH", - "decimals": 18, - "name": "Plaza BondETH", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x091a5abe6616e26268e5eecff256c2212fce2707.png", - "aggregators": [ - "CoinGecko", - "1inch", - "LiFi", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 6 - }, - "0xf7b0dd0b642a6ccc2fc4d8ffe2bffb0cac8c43c8": { - "address": "0xf7b0dd0b642a6ccc2fc4d8ffe2bffb0cac8c43c8", - "symbol": "GEKKO", - "decimals": 18, - "name": "Gekko AI by Virtuals", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xf7b0dd0b642a6ccc2fc4d8ffe2bffb0cac8c43c8.png", - "aggregators": [ - "CoinGecko", - "Socket", - "Rubic", - "Squid", - "Rango", - "Sonarwatch" - ], - "occurrences": 6 - }, - "0xda7ad9dea9397cffddae2f8a052b82f1484252b3": { - "address": "0xda7ad9dea9397cffddae2f8a052b82f1484252b3", - "symbol": "RIVER", - "decimals": 18, - "name": "RIVER", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xda7ad9dea9397cffddae2f8a052b82f1484252b3.png", - "aggregators": [ - "CoinGecko", - "LiFi", - "Socket", - "Rubic", - "Squid", - "Rango" - ], - "occurrences": 6 - }, - "0xc5fecc3a29fb57b5024eec8a2239d4621e111cbe": { - "address": "0xc5fecc3a29fb57b5024eec8a2239d4621e111cbe", - "symbol": "1INCH", - "decimals": 18, - "name": "1INCH Token", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xc5fecc3a29fb57b5024eec8a2239d4621e111cbe.png", - "aggregators": [ - "Metamask", - "1inch", - "LiFi", - "Socket", - "Rubic", - "Rango" - ], - "occurrences": 6 - }, - "0x5576d6ed9181f2225aff5282ac0ed29f755437ea": { - "address": "0x5576d6ed9181f2225aff5282ac0ed29f755437ea", - "symbol": "SERV", - "decimals": 18, - "name": "OpenServ", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x5576d6ed9181f2225aff5282ac0ed29f755437ea.png", - "aggregators": [ - "CoinGecko", - "LiFi", - "Rubic", - "Squid", - "Rango", - "Sonarwatch" - ], - "occurrences": 6 - }, - "0xb676f87a6e701f0de8de5ab91b56b66109766db1": { - "address": "0xb676f87a6e701f0de8de5ab91b56b66109766db1", - "symbol": "LRDS", - "decimals": 18, - "name": "BLOCKLORDS", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xb676f87a6e701f0de8de5ab91b56b66109766db1.png", - "aggregators": [ - "CoinGecko", - "Socket", - "Rubic", - "Squid", - "Rango", - "Sonarwatch" - ], - "occurrences": 6 - }, - "0x590830dfdf9a3f68afcdde2694773debdf267774": { - "address": "0x590830dfdf9a3f68afcdde2694773debdf267774", - "symbol": "GIZA", - "decimals": 18, - "name": "GIZA", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x590830dfdf9a3f68afcdde2694773debdf267774.png", - "aggregators": [ - "CoinGecko", - "LiFi", - "Socket", - "Rubic", - "Squid", - "Rango" - ], - "occurrences": 6 - }, - "0x5875eee11cf8398102fdad704c9e96607675467a": { - "address": "0x5875eee11cf8398102fdad704c9e96607675467a", - "symbol": "SUSDS", - "decimals": 18, - "name": "Savings USDS", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x5875eee11cf8398102fdad704c9e96607675467a.png", - "aggregators": [ - "CoinGecko", - "LiFi", - "Socket", - "Rubic", - "Squid", - "Rango" - ], - "occurrences": 6 - }, - "0x8ee73c484a26e0a5df2ee2a4960b789967dd0415": { - "address": "0x8ee73c484a26e0a5df2ee2a4960b789967dd0415", - "symbol": "CRV", - "decimals": 18, - "name": "Curve DAO", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x8ee73c484a26e0a5df2ee2a4960b789967dd0415.png", - "aggregators": [ - "CoinGecko", - "1inch", - "LiFi", - "Socket", - "Rubic", - "Rango" - ], - "occurrences": 6 - }, - "0xa99f6e6785da0f5d6fb42495fe424bce029eeb3e": { - "address": "0xa99f6e6785da0f5d6fb42495fe424bce029eeb3e", - "symbol": "PENDLE", - "decimals": 18, - "name": "Pendle", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xa99f6e6785da0f5d6fb42495fe424bce029eeb3e.png", - "aggregators": [ - "CoinGecko", - "LiFi", - "Socket", - "Rubic", - "Squid", - "Rango" - ], - "occurrences": 6 - }, - "0xbb22ff867f8ca3d5f2251b4084f6ec86d4666e14": { - "address": "0xbb22ff867f8ca3d5f2251b4084f6ec86d4666e14", - "symbol": "CTX", - "decimals": 18, - "name": "Cryptex Finance", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xbb22ff867f8ca3d5f2251b4084f6ec86d4666e14.png", - "aggregators": [ - "CoinGecko", - "LiFi", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 6 - }, - "0x1509706a6c66ca549ff0cb464de88231ddbe213b": { - "address": "0x1509706a6c66ca549ff0cb464de88231ddbe213b", - "symbol": "AURA", - "decimals": 18, - "name": "Aura Finance", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x1509706a6c66ca549ff0cb464de88231ddbe213b.png", - "aggregators": [ - "CoinGecko", - "LiFi", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 6 - }, - "0x417ac0e078398c154edfadd9ef675d30be60af93": { - "address": "0x417ac0e078398c154edfadd9ef675d30be60af93", - "symbol": "CRVUSD", - "decimals": 18, - "name": "crvUSD", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x417ac0e078398c154edfadd9ef675d30be60af93.png", - "aggregators": [ - "CoinGecko", - "LiFi", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 6 - }, - "0x043eb4b75d0805c43d7c834902e335621983cf03": { - "address": "0x043eb4b75d0805c43d7c834902e335621983cf03", - "symbol": "CADC", - "decimals": 18, - "name": "CAD Coin", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x043eb4b75d0805c43d7c834902e335621983cf03.png", - "aggregators": [ - "CoinGecko", - "1inch", - "Rubic", - "Squid", - "Rango", - "Sonarwatch" - ], - "occurrences": 6 - }, - "0xf7c1cefcf7e1dd8161e00099facd3e1db9e528ee": { - "address": "0xf7c1cefcf7e1dd8161e00099facd3e1db9e528ee", - "symbol": "TOWER", - "decimals": 18, - "name": "TOWER", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xf7c1cefcf7e1dd8161e00099facd3e1db9e528ee.png", - "aggregators": [ - "CoinGecko", - "Socket", - "Rubic", - "Rango", - "Sonarwatch", - "SushiSwap" - ], - "occurrences": 6 - }, - "0x2c24497d4086490e7ead87cc12597fb50c2e6ed6": { - "address": "0x2c24497d4086490e7ead87cc12597fb50c2e6ed6", - "symbol": "F", - "decimals": 18, - "name": "SynFutures", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x2c24497d4086490e7ead87cc12597fb50c2e6ed6.png", - "aggregators": [ - "CoinGecko", - "LiFi", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 6 - }, - "0x78b3c724a2f663d11373c4a1978689271895256f": { - "address": "0x78b3c724a2f663d11373c4a1978689271895256f", - "symbol": "TKN", - "decimals": 18, - "name": "Token Name Service", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x78b3c724a2f663d11373c4a1978689271895256f.png", - "aggregators": [ - "CoinGecko", - "LiFi", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 6 - }, - "0xaac78d1219c08aecc8e37e03858fe885f5ef1799": { - "address": "0xaac78d1219c08aecc8e37e03858fe885f5ef1799", - "symbol": "YGG", - "decimals": 18, - "name": "Yield Guild Games", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xaac78d1219c08aecc8e37e03858fe885f5ef1799.png", - "aggregators": [ - "CoinGecko", - "LiFi", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 6 - }, - "0x9b700b043e9587dde9a0c29a9483e2f8fa450d54": { - "address": "0x9b700b043e9587dde9a0c29a9483e2f8fa450d54", - "symbol": "AXGT", - "decimals": 18, - "name": "AxonDAO Governance Token", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x9b700b043e9587dde9a0c29a9483e2f8fa450d54.png", - "aggregators": [ - "CoinGecko", - "LiFi", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 6 - }, - "0x97c806e7665d3afd84a8fe1837921403d59f3dcc": { - "address": "0x97c806e7665d3afd84a8fe1837921403d59f3dcc", - "symbol": "ALI", - "decimals": 18, - "name": "Artificial Liquid Intelligence", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x97c806e7665d3afd84a8fe1837921403d59f3dcc.png", - "aggregators": [ - "CoinGecko", - "LiFi", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 6 - }, - "0xc5102fe9359fd9a28f877a67e36b0f050d81a3cc": { - "address": "0xc5102fe9359fd9a28f877a67e36b0f050d81a3cc", - "symbol": "HOP", - "decimals": 18, - "name": "Hop Protocol", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xc5102fe9359fd9a28f877a67e36b0f050d81a3cc.png", - "aggregators": [ - "CoinGecko", - "LiFi", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 6 - }, - "0xf34e0cff046e154cafcae502c7541b9e5fd8c249": { - "address": "0xf34e0cff046e154cafcae502c7541b9e5fd8c249", - "symbol": "THALES", - "decimals": 18, - "name": "Thales", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xf34e0cff046e154cafcae502c7541b9e5fd8c249.png", - "aggregators": [ - "CoinGecko", - "LiFi", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 6 - }, - "0x333333c465a19c85f85c6cfbed7b16b0b26e3333": { - "address": "0x333333c465a19c85f85c6cfbed7b16b0b26e3333", - "symbol": "ORA", - "decimals": 18, - "name": "ORA Coin", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x333333c465a19c85f85c6cfbed7b16b0b26e3333.png", - "aggregators": [ - "CoinGecko", - "LiFi", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 6 - }, - "0x259fac10c5cbfefe3e710e1d9467f70a76138d45": { - "address": "0x259fac10c5cbfefe3e710e1d9467f70a76138d45", - "symbol": "CTSI", - "decimals": 18, - "name": "Cartesi", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x259fac10c5cbfefe3e710e1d9467f70a76138d45.png", - "aggregators": [ - "CoinGecko", - "LiFi", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 6 - }, - "0xc3de830ea07524a0761646a6a4e4be0e114a3c83": { - "address": "0xc3de830ea07524a0761646a6a4e4be0e114a3c83", - "symbol": "UNI", - "decimals": 18, - "name": "Uniswap", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xc3de830ea07524a0761646a6a4e4be0e114a3c83.png", - "aggregators": ["UniswapLabs", "1inch", "Socket", "Rubic", "Rango"], - "occurrences": 5 - }, - "0x858c50c3af1913b0e849afdb74617388a1a5340d": { - "address": "0x858c50c3af1913b0e849afdb74617388a1a5340d", - "symbol": "SQT", - "decimals": 18, - "name": "SubQuery Network", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x858c50c3af1913b0e849afdb74617388a1a5340d.png", - "aggregators": [ - "CoinGecko", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0xef22cb48b8483df6152e1423b19df5553bbd818b": { - "address": "0xef22cb48b8483df6152e1423b19df5553bbd818b", - "symbol": "HEU", - "decimals": 18, - "name": "Heurist", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xef22cb48b8483df6152e1423b19df5553bbd818b.png", - "aggregators": ["CoinGecko", "Socket", "Rubic", "Rango"], - "occurrences": 4 - }, - "0x681a09a902d9c7445b3b1ab282c38d60c72f1f09": { - "address": "0x681a09a902d9c7445b3b1ab282c38d60c72f1f09", - "symbol": "AIKEK", - "decimals": 18, - "name": "AlphaKEK.AI", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x681a09a902d9c7445b3b1ab282c38d60c72f1f09.png", - "aggregators": [ - "CoinGecko", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x38815a4455921667d673b4cb3d48f0383ee93400": { - "address": "0x38815a4455921667d673b4cb3d48f0383ee93400", - "symbol": "PSTAKE", - "decimals": 18, - "name": "pSTAKE Finance", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x38815a4455921667d673b4cb3d48f0383ee93400.png", - "aggregators": [ - "CoinGecko", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0xb00d803cb2367a7da82351dcb9d213230da7b92a": { - "address": "0xb00d803cb2367a7da82351dcb9d213230da7b92a", - "symbol": "IYKYK", - "decimals": 18, - "name": "IYKYK", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xb00d803cb2367a7da82351dcb9d213230da7b92a.png", - "aggregators": [ - "CoinGecko", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x3816dd4bd44c8830c2fa020a5605bac72fa3de7a": { - "address": "0x3816dd4bd44c8830c2fa020a5605bac72fa3de7a", - "symbol": "PRE", - "decimals": 18, - "name": "Presearch", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x3816dd4bd44c8830c2fa020a5605bac72fa3de7a.png", - "aggregators": [ - "CoinGecko", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x09188484e1ab980daef53a9755241d759c5b7d60": { - "address": "0x09188484e1ab980daef53a9755241d759c5b7d60", - "symbol": "GRG", - "decimals": 18, - "name": "RigoBlock", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x09188484e1ab980daef53a9755241d759c5b7d60.png", - "aggregators": [ - "CoinGecko", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0xb3e3c89b8d9c88b1fe96856e382959ee6291ebba": { - "address": "0xb3e3c89b8d9c88b1fe96856e382959ee6291ebba", - "symbol": "REKT", - "decimals": 18, - "name": "REKT", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xb3e3c89b8d9c88b1fe96856e382959ee6291ebba.png", - "aggregators": ["CoinGecko", "Socket", "Rubic", "Squid", "Rango"], - "occurrences": 5 - }, - "0x4f604735c1cf31399c6e711d5962b2b3e0225ad3": { - "address": "0x4f604735c1cf31399c6e711d5962b2b3e0225ad3", - "symbol": "USDGLO", - "decimals": 18, - "name": "Glo Dollar", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x4f604735c1cf31399c6e711d5962b2b3e0225ad3.png", - "aggregators": [ - "CoinGecko", - "Rubic", - "Squid", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x717d31a60a9e811469673429c9f8ea24358990f1": { - "address": "0x717d31a60a9e811469673429c9f8ea24358990f1", - "symbol": "EVERY", - "decimals": 18, - "name": "Everyworld", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x717d31a60a9e811469673429c9f8ea24358990f1.png", - "aggregators": [ - "CoinGecko", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0xd08a2917653d4e460893203471f0000826fb4034": { - "address": "0xd08a2917653d4e460893203471f0000826fb4034", - "symbol": "FARM", - "decimals": 18, - "name": "FARM Reward Token", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xd08a2917653d4e460893203471f0000826fb4034.png", - "aggregators": ["1inch", "Socket", "Rubic", "Rango", "SushiSwap"], - "occurrences": 5 - }, - "0x0f1cfd0bb452db90a3bfc0848349463010419ab2": { - "address": "0x0f1cfd0bb452db90a3bfc0848349463010419ab2", - "symbol": "GURU", - "decimals": 18, - "name": "GURU Token", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x0f1cfd0bb452db90a3bfc0848349463010419ab2.png", - "aggregators": ["CoinGecko", "Socket", "Rubic", "Rango"], - "occurrences": 4 - }, - "0x1db0c569ebb4a8b57ac01833b9792f526305e062": { - "address": "0x1db0c569ebb4a8b57ac01833b9792f526305e062", - "symbol": "GENOME", - "decimals": 18, - "name": "GENOME", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x1db0c569ebb4a8b57ac01833b9792f526305e062.png", - "aggregators": ["CoinGecko", "Socket", "Rubic", "Rango"], - "occurrences": 4 - }, - "0x455234ab787665a219125235fb01b22b512dfcaa": { - "address": "0x455234ab787665a219125235fb01b22b512dfcaa", - "symbol": "DOSE", - "decimals": 18, - "name": "DOSE", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x455234ab787665a219125235fb01b22b512dfcaa.png", - "aggregators": ["Rubic", "Rango", "Sonarwatch"], - "occurrences": 3 - }, - "0x6985884c4392d348587b19cb9eaaf157f13271cd": { - "address": "0x6985884c4392d348587b19cb9eaaf157f13271cd", - "symbol": "ZRO", - "decimals": 18, - "name": "LayerZero", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x6985884c4392d348587b19cb9eaaf157f13271cd.png", - "aggregators": [ - "CoinGecko", - "1inch", - "LiFi", - "Socket", - "Rubic", - "Squid", - "Rango", - "Sonarwatch", - "SushiSwap" - ], - "occurrences": 9 - }, - "0x60a3e35cc302bfa44cb288bc5a4f316fdb1adb42": { - "address": "0x60a3e35cc302bfa44cb288bc5a4f316fdb1adb42", - "symbol": "EURC", - "decimals": 6, - "name": "EURC", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x60a3e35cc302bfa44cb288bc5a4f316fdb1adb42.png", - "aggregators": [ - "CoinGecko", - "1inch", - "LiFi", - "Socket", - "Rubic", - "Squid", - "Rango", - "Sonarwatch" - ], - "occurrences": 8 - }, - "0x27d2decb4bfc9c76f0309b8e88dec3a601fe25a8": { - "address": "0x27d2decb4bfc9c76f0309b8e88dec3a601fe25a8", - "symbol": "BALD", - "decimals": 18, - "name": "Bald", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x27d2decb4bfc9c76f0309b8e88dec3a601fe25a8.png", - "aggregators": [ - "CoinGecko", - "1inch", - "LiFi", - "Rubic", - "Squid", - "Rango", - "Sonarwatch", - "SushiSwap" - ], - "occurrences": 8 - }, - "0x3055913c90fcc1a6ce9a358911721eeb942013a1": { - "address": "0x3055913c90fcc1a6ce9a358911721eeb942013a1", - "symbol": "CAKE", - "decimals": 18, - "name": "PancakeSwap", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x3055913c90fcc1a6ce9a358911721eeb942013a1.png", - "aggregators": [ - "CoinGecko", - "1inch", - "LiFi", - "Socket", - "Rubic", - "Squid", - "Rango", - "Sonarwatch" - ], - "occurrences": 8 - }, - "0xb0ffa8000886e57f86dd5264b9582b2ad87b2b91": { - "address": "0xb0ffa8000886e57f86dd5264b9582b2ad87b2b91", - "symbol": "W", - "decimals": 18, - "name": "Wormhole", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xb0ffa8000886e57f86dd5264b9582b2ad87b2b91.png", - "aggregators": [ - "CoinGecko", - "1inch", - "LiFi", - "Socket", - "Rubic", - "Squid", - "Rango", - "Sonarwatch" - ], - "occurrences": 8 - }, - "0xba0dda8762c24da9487f5fa026a9b64b695a07ea": { - "address": "0xba0dda8762c24da9487f5fa026a9b64b695a07ea", - "symbol": "OX", - "decimals": 18, - "name": "OX Coin", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xba0dda8762c24da9487f5fa026a9b64b695a07ea.png", - "aggregators": [ - "CoinGecko", - "1inch", - "Socket", - "Rubic", - "Squid", - "Rango", - "Sonarwatch", - "SushiSwap" - ], - "occurrences": 8 - }, - "0x940181a94a35a4569e4529a3cdfb74e38fd98631": { - "address": "0x940181a94a35a4569e4529a3cdfb74e38fd98631", - "symbol": "AERO", - "decimals": 18, - "name": "Aerodrome Finance", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x940181a94a35a4569e4529a3cdfb74e38fd98631.png", - "aggregators": [ - "CoinGecko", - "1inch", - "LiFi", - "Rubic", - "Squid", - "Rango", - "Sonarwatch" - ], - "occurrences": 7 - }, - "0xbd2dbb8ecea9743ca5b16423b4eaa26bdcfe5ed2": { - "address": "0xbd2dbb8ecea9743ca5b16423b4eaa26bdcfe5ed2", - "symbol": "SYNTH", - "decimals": 18, - "name": "Synthswap", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xbd2dbb8ecea9743ca5b16423b4eaa26bdcfe5ed2.png", - "aggregators": [ - "CoinGecko", - "1inch", - "LiFi", - "Rubic", - "Squid", - "Rango", - "Sonarwatch" - ], - "occurrences": 7 - }, - "0xb79dd08ea68a908a97220c76d19a6aa9cbde4376": { - "address": "0xb79dd08ea68a908a97220c76d19a6aa9cbde4376", - "symbol": "USD+", - "decimals": 6, - "name": "Overnight.fi USD+ (Base)", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xb79dd08ea68a908a97220c76d19a6aa9cbde4376.png", - "aggregators": [ - "CoinGecko", - "1inch", - "LiFi", - "Rubic", - "Squid", - "Rango", - "Sonarwatch" - ], - "occurrences": 7 - }, - "0x0578d8a44db98b23bf096a382e016e29a5ce0ffe": { - "address": "0x0578d8a44db98b23bf096a382e016e29a5ce0ffe", - "symbol": "HIGHER", - "decimals": 18, - "name": "higher", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x0578d8a44db98b23bf096a382e016e29a5ce0ffe.png", - "aggregators": [ - "CoinGecko", - "1inch", - "LiFi", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 7 - }, - "0x24fcfc492c1393274b6bcd568ac9e225bec93584": { - "address": "0x24fcfc492c1393274b6bcd568ac9e225bec93584", - "symbol": "MAVIA", - "decimals": 18, - "name": "Heroes of Mavia", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x24fcfc492c1393274b6bcd568ac9e225bec93584.png", - "aggregators": [ - "CoinGecko", - "LiFi", - "Socket", - "Rubic", - "Squid", - "Rango", - "Sonarwatch" - ], - "occurrences": 7 - }, - "0xa88594d404727625a9437c3f886c7643872296ae": { - "address": "0xa88594d404727625a9437c3f886c7643872296ae", - "symbol": "WELL", - "decimals": 18, - "name": "WELL", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xa88594d404727625a9437c3f886c7643872296ae.png", - "aggregators": [ - "CoinGecko", - "LiFi", - "Socket", - "Rubic", - "Squid", - "Rango" - ], - "occurrences": 6 - }, - "0xc48823ec67720a04a9dfd8c7d109b2c3d6622094": { - "address": "0xc48823ec67720a04a9dfd8c7d109b2c3d6622094", - "symbol": "MCADE", - "decimals": 18, - "name": "Metacade", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xc48823ec67720a04a9dfd8c7d109b2c3d6622094.png", - "aggregators": [ - "CoinGecko", - "LiFi", - "Rubic", - "Squid", - "Rango", - "Sonarwatch" - ], - "occurrences": 6 - }, - "0x0bf852ebb243b963652b71103a2b97cf446f22c3": { - "address": "0x0bf852ebb243b963652b71103a2b97cf446f22c3", - "symbol": "ROCKET", - "decimals": 18, - "name": "AI ROCKET by Virtuals", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x0bf852ebb243b963652b71103a2b97cf446f22c3.png", - "aggregators": [ - "CoinGecko", - "Socket", - "Rubic", - "Squid", - "Rango", - "Sonarwatch" - ], - "occurrences": 6 - }, - "0xe7798f023fc62146e8aa1b36da45fb70855a77ea": { - "address": "0xe7798f023fc62146e8aa1b36da45fb70855a77ea", - "symbol": "IFARM", - "decimals": 18, - "name": "iFARM", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xe7798f023fc62146e8aa1b36da45fb70855a77ea.png", - "aggregators": [ - "CoinGecko", - "Socket", - "Rubic", - "Rango", - "Sonarwatch", - "SushiSwap" - ], - "occurrences": 6 - }, - "0x27e3bc3a66e24cad043ac3d93a12a8070e3897ba": { - "address": "0x27e3bc3a66e24cad043ac3d93a12a8070e3897ba", - "symbol": "OVR", - "decimals": 18, - "name": "Ovr", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x27e3bc3a66e24cad043ac3d93a12a8070e3897ba.png", - "aggregators": [ - "CoinGecko", - "Socket", - "Rubic", - "Squid", - "Rango", - "Sonarwatch" - ], - "occurrences": 6 - }, - "0x99ac4484e8a1dbd6a185380b3a811913ac884d87": { - "address": "0x99ac4484e8a1dbd6a185380b3a811913ac884d87", - "symbol": "SDAI", - "decimals": 18, - "name": "Savings Dai", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x99ac4484e8a1dbd6a185380b3a811913ac884d87.png", - "aggregators": [ - "CoinGecko", - "LiFi", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 6 - }, - "0xc7dcca0a3e69bd762c8db257f868f76be36c8514": { - "address": "0xc7dcca0a3e69bd762c8db257f868f76be36c8514", - "symbol": "KIBSHI", - "decimals": 18, - "name": "KiboShib", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xc7dcca0a3e69bd762c8db257f868f76be36c8514.png", - "aggregators": [ - "CoinGecko", - "Socket", - "Rubic", - "Squid", - "Rango", - "Sonarwatch" - ], - "occurrences": 6 - }, - "0x2974dc646e375e83bd1c0342625b49f288987fa4": { - "address": "0x2974dc646e375e83bd1c0342625b49f288987fa4", - "symbol": "SMT", - "decimals": 18, - "name": "Swarm Markets", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x2974dc646e375e83bd1c0342625b49f288987fa4.png", - "aggregators": [ - "CoinGecko", - "Socket", - "Rubic", - "Squid", - "Rango", - "Sonarwatch" - ], - "occurrences": 6 - }, - "0x8fe815417913a93ea99049fc0718ee1647a2a07c": { - "address": "0x8fe815417913a93ea99049fc0718ee1647a2a07c", - "symbol": "XSWAP", - "decimals": 18, - "name": "XSwap", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x8fe815417913a93ea99049fc0718ee1647a2a07c.png", - "aggregators": [ - "CoinGecko", - "1inch", - "LiFi", - "Socket", - "Rubic", - "Rango" - ], - "occurrences": 6 - }, - "0x0bbbead62f7647ae8323d2cb243a0db74b7c2b80": { - "address": "0x0bbbead62f7647ae8323d2cb243a0db74b7c2b80", - "symbol": "WALLET", - "decimals": 18, - "name": "Ambire Wallet", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x0bbbead62f7647ae8323d2cb243a0db74b7c2b80.png", - "aggregators": [ - "CoinGecko", - "LiFi", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 6 - }, - "0xd1917629b3e6a72e6772aab5dbe58eb7fa3c2f33": { - "address": "0xd1917629b3e6a72e6772aab5dbe58eb7fa3c2f33", - "symbol": "SEXY", - "decimals": 18, - "name": "Settled ETHXY Token", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xd1917629b3e6a72e6772aab5dbe58eb7fa3c2f33.png", - "aggregators": [ - "CoinGecko", - "Socket", - "Rubic", - "Rango", - "Sonarwatch", - "SushiSwap" - ], - "occurrences": 6 - }, - "0xefb97aaf77993922ac4be4da8fbc9a2425322677": { - "address": "0xefb97aaf77993922ac4be4da8fbc9a2425322677", - "symbol": "USD3", - "decimals": 18, - "name": "Web 3 Dollar", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xefb97aaf77993922ac4be4da8fbc9a2425322677.png", - "aggregators": [ - "CoinGecko", - "LiFi", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 6 - }, - "0xac12f930318be4f9d37f602cbf89cd33e99aa9d4": { - "address": "0xac12f930318be4f9d37f602cbf89cd33e99aa9d4", - "symbol": "WEXO", - "decimals": 18, - "name": "Wexo", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xac12f930318be4f9d37f602cbf89cd33e99aa9d4.png", - "aggregators": [ - "CoinGecko", - "LiFi", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 6 - }, - "0x59d9356e565ab3a36dd77763fc0d87feaf85508c": { - "address": "0x59d9356e565ab3a36dd77763fc0d87feaf85508c", - "symbol": "USDM", - "decimals": 18, - "name": "Mountain Protocol USD", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x59d9356e565ab3a36dd77763fc0d87feaf85508c.png", - "aggregators": [ - "CoinGecko", - "1inch", - "LiFi", - "Socket", - "Rubic", - "Sonarwatch" - ], - "occurrences": 6 - }, - "0xd652c5425aea2afd5fb142e120fecf79e18fafc3": { - "address": "0xd652c5425aea2afd5fb142e120fecf79e18fafc3", - "symbol": "POOL", - "decimals": 18, - "name": "PoolTogether", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xd652c5425aea2afd5fb142e120fecf79e18fafc3.png", - "aggregators": [ - "CoinGecko", - "LiFi", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 6 - }, - "0xafb89a09d82fbde58f18ac6437b3fc81724e4df6": { - "address": "0xafb89a09d82fbde58f18ac6437b3fc81724e4df6", - "symbol": "DOG", - "decimals": 18, - "name": "The Doge NFT", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xafb89a09d82fbde58f18ac6437b3fc81724e4df6.png", - "aggregators": [ - "CoinGecko", - "LiFi", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 6 - }, - "0x696f9436b67233384889472cd7cd58a6fb5df4f1": { - "address": "0x696f9436b67233384889472cd7cd58a6fb5df4f1", - "symbol": "AVNT", - "decimals": 18, - "name": "Avantis", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x696f9436b67233384889472cd7cd58a6fb5df4f1.png", - "aggregators": ["CoinGecko", "LiFi", "Rubic", "Squid", "Rango"], - "occurrences": 5 - }, - "0x2a06a17cbc6d0032cac2c6696da90f29d39a1a29": { - "address": "0x2a06a17cbc6d0032cac2c6696da90f29d39a1a29", - "symbol": "BITCOIN", - "decimals": 8, - "name": "HarryPotterObamaSonic10Inu", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x2a06a17cbc6d0032cac2c6696da90f29d39a1a29.png", - "aggregators": ["CoinGecko", "LiFi", "Socket", "Rubic", "Rango"], - "occurrences": 5 - }, - "0xcbada732173e39521cdbe8bf59a6dc85a9fc7b8c": { - "address": "0xcbada732173e39521cdbe8bf59a6dc85a9fc7b8c", - "symbol": "CBADA", - "decimals": 6, - "name": "Coinbase Wrapped ADA", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xcbada732173e39521cdbe8bf59a6dc85a9fc7b8c.png", - "aggregators": ["CoinGecko", "LiFi", "Rubic", "Squid", "Rango"], - "occurrences": 5 - }, - "0xcb17c9db87b595717c857a08468793f5bab6445f": { - "address": "0xcb17c9db87b595717c857a08468793f5bab6445f", - "symbol": "CBLTC", - "decimals": 8, - "name": "Coinbase Wrapped LTC", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xcb17c9db87b595717c857a08468793f5bab6445f.png", - "aggregators": ["CoinGecko", "LiFi", "Rubic", "Squid", "Rango"], - "occurrences": 5 - }, - "0x0c1c1c109fe34733fca54b82d7b46b75cfb71f6e": { - "address": "0x0c1c1c109fe34733fca54b82d7b46b75cfb71f6e", - "symbol": "CHIP", - "decimals": 18, - "name": "USD.AI", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x0c1c1c109fe34733fca54b82d7b46b75cfb71f6e.png", - "aggregators": ["CoinGecko", "LiFi", "Socket", "Rubic", "Rango"], - "occurrences": 5 - }, - "0xfbc2051ae2265686a469421b2c5a2d5462fbf5eb": { - "address": "0xfbc2051ae2265686a469421b2c5a2d5462fbf5eb", - "symbol": "OPG", - "decimals": 18, - "name": "OpenGradient", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xfbc2051ae2265686a469421b2c5a2d5462fbf5eb.png", - "aggregators": ["CoinGecko", "LiFi", "Rubic", "Squid", "Rango"], - "occurrences": 5 - }, - "0xc729777d0470f30612b1564fd96e8dd26f5814e3": { - "address": "0xc729777d0470f30612b1564fd96e8dd26f5814e3", - "symbol": "SAPIEN", - "decimals": 18, - "name": "Sapien", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xc729777d0470f30612b1564fd96e8dd26f5814e3.png", - "aggregators": ["CoinGecko", "1inch", "LiFi", "Rubic", "Squid"], - "occurrences": 5 - }, - "0x868fced65edbf0056c4163515dd840e9f287a4c3": { - "address": "0x868fced65edbf0056c4163515dd840e9f287a4c3", - "symbol": "SIGN", - "decimals": 18, - "name": "Sign", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x868fced65edbf0056c4163515dd840e9f287a4c3.png", - "aggregators": ["CoinGecko", "LiFi", "Socket", "Rubic", "Rango"], - "occurrences": 5 - }, - "0x11dc28d01984079b7efe7763b533e6ed9e3722b9": { - "address": "0x11dc28d01984079b7efe7763b533e6ed9e3722b9", - "symbol": "SYND", - "decimals": 18, - "name": "Syndicate", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x11dc28d01984079b7efe7763b533e6ed9e3722b9.png", - "aggregators": ["CoinGecko", "LiFi", "Socket", "Rubic", "Rango"], - "occurrences": 5 - }, - "0xba12bc7b210e61e5d3110b997a63ea216e0e18f7": { - "address": "0xba12bc7b210e61e5d3110b997a63ea216e0e18f7", - "symbol": "C", - "decimals": 18, - "name": "Chainbase Token", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xba12bc7b210e61e5d3110b997a63ea216e0e18f7.png", - "aggregators": ["CoinGecko", "LiFi", "Rubic", "Squid", "Rango"], - "occurrences": 5 - }, - "0xc0d3700000c0e32716863323bfd936b54a1633d1": { - "address": "0xc0d3700000c0e32716863323bfd936b54a1633d1", - "symbol": "CDX", - "decimals": 18, - "name": "Cod3x", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xc0d3700000c0e32716863323bfd936b54a1633d1.png", - "aggregators": [ - "CoinGecko", - "LiFi", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x39a1cce09d7354ac2db86c6b02924360a10e4793": { - "address": "0x39a1cce09d7354ac2db86c6b02924360a10e4793", - "symbol": "WHIM", - "decimals": 18, - "name": "whim.bet by Virtuals", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x39a1cce09d7354ac2db86c6b02924360a10e4793.png", - "aggregators": [ - "CoinGecko", - "Rubic", - "Squid", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0xacf80a4e55f5f28e1e7d261a221ca495db5bcbb3": { - "address": "0xacf80a4e55f5f28e1e7d261a221ca495db5bcbb3", - "symbol": "XAVI", - "decimals": 18, - "name": "XAVI by Virtuals", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xacf80a4e55f5f28e1e7d261a221ca495db5bcbb3.png", - "aggregators": [ - "CoinGecko", - "Rubic", - "Squid", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0xd3b0b58ec9516e4b875a075328e2cb059d4d54db": { - "address": "0xd3b0b58ec9516e4b875a075328e2cb059d4d54db", - "symbol": "ARCHAI", - "decimals": 18, - "name": "ArchAI", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xd3b0b58ec9516e4b875a075328e2cb059d4d54db.png", - "aggregators": ["CoinGecko", "1inch", "LiFi", "Rubic", "Rango"], - "occurrences": 5 - }, - "0xac27fa800955849d6d17cc8952ba9dd6eaa66187": { - "address": "0xac27fa800955849d6d17cc8952ba9dd6eaa66187", - "symbol": "UP", - "decimals": 18, - "name": "UnlockProtocolToken", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xac27fa800955849d6d17cc8952ba9dd6eaa66187.png", - "aggregators": [ - "Metamask", - "TrustWallet", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0xb7b4e8406673528e7dc3d787f3a42eb1ebc01cf6": { - "address": "0xb7b4e8406673528e7dc3d787f3a42eb1ebc01cf6", - "symbol": "LMNL", - "decimals": 18, - "name": "Liminal Agent by Virtuals", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xb7b4e8406673528e7dc3d787f3a42eb1ebc01cf6.png", - "aggregators": [ - "CoinGecko", - "Rubic", - "Squid", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0xeab49138ba2ea6dd776220fe26b7b8e446638956": { - "address": "0xeab49138ba2ea6dd776220fe26b7b8e446638956", - "symbol": "SEND", - "decimals": 18, - "name": "Send", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xeab49138ba2ea6dd776220fe26b7b8e446638956.png", - "aggregators": [ - "CoinGecko", - "LiFi", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0xd4f5fabd1763bbf52bd3b17cd445db6f9f836bd4": { - "address": "0xd4f5fabd1763bbf52bd3b17cd445db6f9f836bd4", - "symbol": "ISTAR", - "decimals": 18, - "name": "ISTARAI by Virtuals", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xd4f5fabd1763bbf52bd3b17cd445db6f9f836bd4.png", - "aggregators": [ - "CoinGecko", - "Rubic", - "Squid", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x625bb9bb04bdca51871ed6d07e2dd9034e914631": { - "address": "0x625bb9bb04bdca51871ed6d07e2dd9034e914631", - "symbol": "H4CK", - "decimals": 18, - "name": "H4CK Terminal by Virtuals", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x625bb9bb04bdca51871ed6d07e2dd9034e914631.png", - "aggregators": [ - "CoinGecko", - "Rubic", - "Squid", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x8feef9f0ffa554e51220a3391e7bb7560526a72a": { - "address": "0x8feef9f0ffa554e51220a3391e7bb7560526a72a", - "symbol": "SAGE", - "decimals": 18, - "name": "0xsim by Virtuals", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x8feef9f0ffa554e51220a3391e7bb7560526a72a.png", - "aggregators": [ - "CoinGecko", - "Rubic", - "Squid", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x4225658360c731a2b4c34555e45fea3b4b0181d5": { - "address": "0x4225658360c731a2b4c34555e45fea3b4b0181d5", - "symbol": "PORT", - "decimals": 18, - "name": "DataPort Navigator by Virtuals", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x4225658360c731a2b4c34555e45fea3b4b0181d5.png", - "aggregators": [ - "CoinGecko", - "Rubic", - "Squid", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x6af73d4579c70a24d52e4f4b43eecb2a75019f94": { - "address": "0x6af73d4579c70a24d52e4f4b43eecb2a75019f94", - "symbol": "RCAT", - "decimals": 18, - "name": "Replicat-One by Virtuals", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x6af73d4579c70a24d52e4f4b43eecb2a75019f94.png", - "aggregators": [ - "CoinGecko", - "Rubic", - "Squid", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0xc796e499cc8f599a2a8280825d8bda92f7a895e0": { - "address": "0xc796e499cc8f599a2a8280825d8bda92f7a895e0", - "symbol": "BRO", - "decimals": 18, - "name": "Neurobro", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xc796e499cc8f599a2a8280825d8bda92f7a895e0.png", - "aggregators": [ - "CoinGecko", - "Rubic", - "Squid", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0xaea742f80922f7c94b8fd91686c9dfbdfe90d9e6": { - "address": "0xaea742f80922f7c94b8fd91686c9dfbdfe90d9e6", - "symbol": "PREDI", - "decimals": 18, - "name": "Predi by Virtuals", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xaea742f80922f7c94b8fd91686c9dfbdfe90d9e6.png", - "aggregators": ["CoinGecko", "LiFi", "Rubic", "Squid", "Rango"], - "occurrences": 5 - }, - "0xa4a2e2ca3fbfe21aed83471d28b6f65a233c6e00": { - "address": "0xa4a2e2ca3fbfe21aed83471d28b6f65a233c6e00", - "symbol": "TIBBIR", - "decimals": 18, - "name": "Ribbita by Virtuals", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xa4a2e2ca3fbfe21aed83471d28b6f65a233c6e00.png", - "aggregators": ["CoinGecko", "LiFi", "Rubic", "Squid", "Rango"], - "occurrences": 5 - }, - "0x4b361e60cf256b926ba15f157d69cac9cd037426": { - "address": "0x4b361e60cf256b926ba15f157d69cac9cd037426", - "symbol": "CLUSTR", - "decimals": 18, - "name": "Clustr", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x4b361e60cf256b926ba15f157d69cac9cd037426.png", - "aggregators": [ - "CoinGecko", - "Rubic", - "Squid", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x90ec58ef4cc9f37b96de1e203b65bd4e6e79580e": { - "address": "0x90ec58ef4cc9f37b96de1e203b65bd4e6e79580e", - "symbol": "AMETA", - "decimals": 18, - "name": "Alpha City", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x90ec58ef4cc9f37b96de1e203b65bd4e6e79580e.png", - "aggregators": [ - "CoinGecko", - "LiFi", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0xb933d4ff5a0e7bfe6ab7da72b5dce2259030252f": { - "address": "0xb933d4ff5a0e7bfe6ab7da72b5dce2259030252f", - "symbol": "LEONAI", - "decimals": 18, - "name": "Leonardo AI", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xb933d4ff5a0e7bfe6ab7da72b5dce2259030252f.png", - "aggregators": [ - "CoinGecko", - "Rubic", - "Squid", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0xbb59167235bf3588b357de6cd98ca6f94d753c76": { - "address": "0xbb59167235bf3588b357de6cd98ca6f94d753c76", - "symbol": "MIN", - "decimals": 18, - "name": "MetaInside by Virtuals", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xbb59167235bf3588b357de6cd98ca6f94d753c76.png", - "aggregators": [ - "CoinGecko", - "Rubic", - "Squid", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x56ca7ea740f54501cc6ffb2b6fb9ba46eaf8b51c": { - "address": "0x56ca7ea740f54501cc6ffb2b6fb9ba46eaf8b51c", - "symbol": "AIGMX", - "decimals": 18, - "name": "Generative Market eXplorer", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x56ca7ea740f54501cc6ffb2b6fb9ba46eaf8b51c.png", - "aggregators": [ - "CoinGecko", - "Rubic", - "Squid", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x0b3eaead748facdb9d943d3407011f16eb17d0cf": { - "address": "0x0b3eaead748facdb9d943d3407011f16eb17d0cf", - "symbol": "PMX", - "decimals": 18, - "name": "Primex Finance", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x0b3eaead748facdb9d943d3407011f16eb17d0cf.png", - "aggregators": [ - "CoinGecko", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x7aafd31a321d3627b30a8e2171264b56852187fe": { - "address": "0x7aafd31a321d3627b30a8e2171264b56852187fe", - "symbol": "MIRA", - "decimals": 18, - "name": "Mira", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x7aafd31a321d3627b30a8e2171264b56852187fe.png", - "aggregators": ["CoinGecko", "LiFi", "Socket", "Rubic", "Rango"], - "occurrences": 5 - }, - "0x8c23e759ca0822beeff603bacaceb16d84e9a1cf": { - "address": "0x8c23e759ca0822beeff603bacaceb16d84e9a1cf", - "symbol": "AAAI", - "decimals": 18, - "name": "AAAI_agent by Virtuals", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x8c23e759ca0822beeff603bacaceb16d84e9a1cf.png", - "aggregators": [ - "CoinGecko", - "Rubic", - "Squid", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0xaaa843fb2916c0b57454270418e121c626402aaa": { - "address": "0xaaa843fb2916c0b57454270418e121c626402aaa", - "symbol": "AAA", - "decimals": 18, - "name": "Arcadia", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xaaa843fb2916c0b57454270418e121c626402aaa.png", - "aggregators": ["CoinGecko", "1inch", "LiFi", "Rubic", "Rango"], - "occurrences": 5 - }, - "0xfac77f01957ed1b3dd1cbea992199b8f85b6e886": { - "address": "0xfac77f01957ed1b3dd1cbea992199b8f85b6e886", - "symbol": "FACY", - "decimals": 18, - "name": "ArAIstotle by Virtuals", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xfac77f01957ed1b3dd1cbea992199b8f85b6e886.png", - "aggregators": ["CoinGecko", "LiFi", "Rubic", "Squid", "Rango"], - "occurrences": 5 - }, - "0x9818b6c09f5ecc843060927e8587c427c7c93583": { - "address": "0x9818b6c09f5ecc843060927e8587c427c7c93583", - "symbol": "RIZE", - "decimals": 18, - "name": "RIZE", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x9818b6c09f5ecc843060927e8587c427c7c93583.png", - "aggregators": [ - "CoinGecko", - "LiFi", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x4674f73545f1db4036250ff8c33a39ad1678d864": { - "address": "0x4674f73545f1db4036250ff8c33a39ad1678d864", - "symbol": "SQDGN", - "decimals": 18, - "name": "Degenerate SQuiD", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x4674f73545f1db4036250ff8c33a39ad1678d864.png", - "aggregators": [ - "CoinGecko", - "Rubic", - "Squid", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0xcff4429d8a323dd6b64b79a4460bec6d531fcfa8": { - "address": "0xcff4429d8a323dd6b64b79a4460bec6d531fcfa8", - "symbol": "SAI", - "decimals": 18, - "name": "Saitoshi by Virtuals", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xcff4429d8a323dd6b64b79a4460bec6d531fcfa8.png", - "aggregators": [ - "CoinGecko", - "Rubic", - "Squid", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x6948de89f535ed4a3b07122be0fe1ae65d527c03": { - "address": "0x6948de89f535ed4a3b07122be0fe1ae65d527c03", - "symbol": "ACTUAL", - "decimals": 18, - "name": "ACTUAL", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x6948de89f535ed4a3b07122be0fe1ae65d527c03.png", - "aggregators": [ - "CoinGecko", - "Rubic", - "Squid", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x4d70f1058b73198f12a76c193aef5db5dd75babd": { - "address": "0x4d70f1058b73198f12a76c193aef5db5dd75babd", - "symbol": "NOMAI", - "decimals": 18, - "name": "nomAI", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x4d70f1058b73198f12a76c193aef5db5dd75babd.png", - "aggregators": [ - "CoinGecko", - "Rubic", - "Squid", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x135fa55546758cf398da675a064f39d215ab1ff6": { - "address": "0x135fa55546758cf398da675a064f39d215ab1ff6", - "symbol": "4GS", - "decimals": 18, - "name": "4GENTIC", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x135fa55546758cf398da675a064f39d215ab1ff6.png", - "aggregators": [ - "CoinGecko", - "Rubic", - "Squid", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x9c5c365e764829876243d0b289733b9d2b729685": { - "address": "0x9c5c365e764829876243d0b289733b9d2b729685", - "symbol": "DESPXA", - "decimals": 18, - "name": "DeFi S&P 500", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x9c5c365e764829876243d0b289733b9d2b729685.png", - "aggregators": ["CoinGecko", "LiFi", "Rubic", "Squid", "Rango"], - "occurrences": 5 - }, - "0x919e43a2cce006710090e64bde9e01b38fd7f32f": { - "address": "0x919e43a2cce006710090e64bde9e01b38fd7f32f", - "symbol": "AIYP", - "decimals": 18, - "name": "Agent YP by Virtuals", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x919e43a2cce006710090e64bde9e01b38fd7f32f.png", - "aggregators": [ - "CoinGecko", - "Rubic", - "Squid", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x58db197e91bc8cf1587f75850683e4bd0730e6bf": { - "address": "0x58db197e91bc8cf1587f75850683e4bd0730e6bf", - "symbol": "AXR", - "decimals": 18, - "name": "Axelrod by Virtuals", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x58db197e91bc8cf1587f75850683e4bd0730e6bf.png", - "aggregators": ["CoinGecko", "LiFi", "Rubic", "Squid", "Rango"], - "occurrences": 5 - }, - "0x000096630066820566162c94874a776532705231": { - "address": "0x000096630066820566162c94874a776532705231", - "symbol": "IDRISS", - "decimals": 18, - "name": "IDRISS", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x000096630066820566162c94874a776532705231.png", - "aggregators": [ - "CoinGecko", - "LiFi", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x856d602e73545deaa1491a3726cf628d49f74f51": { - "address": "0x856d602e73545deaa1491a3726cf628d49f74f51", - "symbol": "GRAM", - "decimals": 18, - "name": "GRAM Ecosystem", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x856d602e73545deaa1491a3726cf628d49f74f51.png", - "aggregators": [ - "CoinGecko", - "Rubic", - "Squid", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0xbfa733702305280f066d470afdfa784fa70e2649": { - "address": "0xbfa733702305280f066d470afdfa784fa70e2649", - "symbol": "CAP", - "decimals": 18, - "name": "Capminal", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xbfa733702305280f066d470afdfa784fa70e2649.png", - "aggregators": [ - "CoinGecko", - "Rubic", - "Squid", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x5a4342f4268a731f4459cd0be22d4744a86d635d": { - "address": "0x5a4342f4268a731f4459cd0be22d4744a86d635d", - "symbol": "ARC", - "decimals": 18, - "name": "Reactor", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x5a4342f4268a731f4459cd0be22d4744a86d635d.png", - "aggregators": [ - "CoinGecko", - "Rubic", - "Squid", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x3ec2156d4c0a9cbdab4a016633b7bcf6a8d68ea2": { - "address": "0x3ec2156d4c0a9cbdab4a016633b7bcf6a8d68ea2", - "symbol": "DRB", - "decimals": 18, - "name": "DebtReliefBot", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x3ec2156d4c0a9cbdab4a016633b7bcf6a8d68ea2.png", - "aggregators": [ - "CoinGecko", - "Rubic", - "Squid", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x50f88fe97f72cd3e75b9eb4f747f59bceba80d59": { - "address": "0x50f88fe97f72cd3e75b9eb4f747f59bceba80d59", - "symbol": "JESSE", - "decimals": 18, - "name": "jesse", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x50f88fe97f72cd3e75b9eb4f747f59bceba80d59.png", - "aggregators": ["CoinGecko", "1inch", "LiFi", "Rubic", "Rango"], - "occurrences": 5 - }, - "0xc3d64ee7056cfd33c8382679773f8d6277e5c2c9": { - "address": "0xc3d64ee7056cfd33c8382679773f8d6277e5c2c9", - "symbol": "IAMAI", - "decimals": 18, - "name": "IAMAI", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xc3d64ee7056cfd33c8382679773f8d6277e5c2c9.png", - "aggregators": [ - "CoinGecko", - "Rubic", - "Squid", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x7cea5b9548a4b48cf9551813ef9e73de916e41e0": { - "address": "0x7cea5b9548a4b48cf9551813ef9e73de916e41e0", - "symbol": "MIA", - "decimals": 18, - "name": "MIA", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x7cea5b9548a4b48cf9551813ef9e73de916e41e0.png", - "aggregators": [ - "CoinGecko", - "LiFi", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0xac531eb26ca1d21b85126de8fb87e80e09002dcf": { - "address": "0xac531eb26ca1d21b85126de8fb87e80e09002dcf", - "symbol": "SAND", - "decimals": 18, - "name": "SAND", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xac531eb26ca1d21b85126de8fb87e80e09002dcf.png", - "aggregators": ["CoinGecko", "LiFi", "Socket", "Rubic", "Rango"], - "occurrences": 5 - }, - "0x37d2adc008118d04f259fc0c16ff66bf5a637d20": { - "address": "0x37d2adc008118d04f259fc0c16ff66bf5a637d20", - "symbol": "BOX", - "decimals": 18, - "name": "BOX", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x37d2adc008118d04f259fc0c16ff66bf5a637d20.png", - "aggregators": ["CoinGecko", "LiFi", "Socket", "Rubic", "Rango"], - "occurrences": 5 - }, - "0xe868084cf08f3c3db11f4b73a95473762d9463f7": { - "address": "0xe868084cf08f3c3db11f4b73a95473762d9463f7", - "symbol": "YU", - "decimals": 18, - "name": "YU", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xe868084cf08f3c3db11f4b73a95473762d9463f7.png", - "aggregators": ["CoinGecko", "LiFi", "Socket", "Rubic", "Rango"], - "occurrences": 5 - }, - "0xbf927b841994731c573bdf09ceb0c6b0aa887cdd": { - "address": "0xbf927b841994731c573bdf09ceb0c6b0aa887cdd", - "symbol": "VELVET", - "decimals": 18, - "name": "Velvet", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xbf927b841994731c573bdf09ceb0c6b0aa887cdd.png", - "aggregators": ["CoinGecko", "LiFi", "Rubic", "Squid", "Rango"], - "occurrences": 5 - }, - "0x2b11834ed1feaed4b4b3a86a6f571315e25a884d": { - "address": "0x2b11834ed1feaed4b4b3a86a6f571315e25a884d", - "symbol": "MOCA", - "decimals": 18, - "name": "MOCA", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x2b11834ed1feaed4b4b3a86a6f571315e25a884d.png", - "aggregators": ["CoinGecko", "LiFi", "Socket", "Rubic", "Rango"], - "occurrences": 5 - }, - "0xafde2490236bc64950def5472296aa0d9758db0d": { - "address": "0xafde2490236bc64950def5472296aa0d9758db0d", - "symbol": "WILD", - "decimals": 18, - "name": "WILD", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xafde2490236bc64950def5472296aa0d9758db0d.png", - "aggregators": ["CoinGecko", "LiFi", "Socket", "Rubic", "Rango"], - "occurrences": 5 - }, - "0x0555e30da8f98308edb960aa94c0db47230d2b9c": { - "address": "0x0555e30da8f98308edb960aa94c0db47230d2b9c", - "symbol": "WBTC", - "decimals": 8, - "name": "Wrapped BTC", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x0555e30da8f98308edb960aa94c0db47230d2b9c.png", - "aggregators": ["CoinGecko", "LiFi", "Socket", "Rubic", "Rango"], - "occurrences": 5 - }, - "0x086f405146ce90135750bbec9a063a8b20a8bffb": { - "address": "0x086f405146ce90135750bbec9a063a8b20a8bffb", - "symbol": "BREV", - "decimals": 18, - "name": "BREV", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x086f405146ce90135750bbec9a063a8b20a8bffb.png", - "aggregators": ["CoinGecko", "LiFi", "Socket", "Rubic", "Rango"], - "occurrences": 5 - }, - "0x6fbf03efa4363ca0afe0c9c3906f7d610890b683": { - "address": "0x6fbf03efa4363ca0afe0c9c3906f7d610890b683", - "symbol": "GAIA", - "decimals": 18, - "name": "GAIA", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x6fbf03efa4363ca0afe0c9c3906f7d610890b683.png", - "aggregators": ["CoinGecko", "LiFi", "Socket", "Rubic", "Rango"], - "occurrences": 5 - }, - "0x7ff7fa94b8b66ef313f7970d4eebd2cb3103a2c0": { - "address": "0x7ff7fa94b8b66ef313f7970d4eebd2cb3103a2c0", - "symbol": "VANA", - "decimals": 18, - "name": "VANA", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x7ff7fa94b8b66ef313f7970d4eebd2cb3103a2c0.png", - "aggregators": ["CoinGecko", "LiFi", "Socket", "Rubic", "Rango"], - "occurrences": 5 - }, - "0x176383016bb310c9f1c180dc6729d5e28104e602": { - "address": "0x176383016bb310c9f1c180dc6729d5e28104e602", - "symbol": "DREAMS", - "decimals": 18, - "name": "Daydreams", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x176383016bb310c9f1c180dc6729d5e28104e602.png", - "aggregators": ["CoinGecko", "LiFi", "Rubic", "Squid", "Rango"], - "occurrences": 5 - }, - "0xf970706063b7853877f39515c96932d49d5ac9cd": { - "address": "0xf970706063b7853877f39515c96932d49d5ac9cd", - "symbol": "YALA", - "decimals": 18, - "name": "YALA", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xf970706063b7853877f39515c96932d49d5ac9cd.png", - "aggregators": ["CoinGecko", "LiFi", "Socket", "Rubic", "Rango"], - "occurrences": 5 - }, - "0x0b2558bdbc7ffec0f327fb3579c23dabd1699706": { - "address": "0x0b2558bdbc7ffec0f327fb3579c23dabd1699706", - "symbol": "THQ", - "decimals": 18, - "name": "Theoriq Token", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x0b2558bdbc7ffec0f327fb3579c23dabd1699706.png", - "aggregators": ["CoinGecko", "LiFi", "Socket", "Rubic", "Rango"], - "occurrences": 5 - }, - "0xb29749498954a3a821ec37bde86e386df3ce30b6": { - "address": "0xb29749498954a3a821ec37bde86e386df3ce30b6", - "symbol": "LSETH", - "decimals": 18, - "name": "Liquid Staked ETH", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xb29749498954a3a821ec37bde86e386df3ce30b6.png", - "aggregators": [ - "CoinGecko", - "LiFi", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0xc7837be3d71e00fcbe76d77602bcf353df859664": { - "address": "0xc7837be3d71e00fcbe76d77602bcf353df859664", - "symbol": "LEGEND", - "decimals": 18, - "name": "Legend", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xc7837be3d71e00fcbe76d77602bcf353df859664.png", - "aggregators": [ - "CoinGecko", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x915424ac489433130d92b04096f3b96c82e92a9d": { - "address": "0x915424ac489433130d92b04096f3b96c82e92a9d", - "symbol": "PROS", - "decimals": 18, - "name": "Prosper", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x915424ac489433130d92b04096f3b96c82e92a9d.png", - "aggregators": [ - "Metamask", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x000000000000012def132e61759048be5b5c6033": { - "address": "0x000000000000012def132e61759048be5b5c6033", - "symbol": "CX", - "decimals": 18, - "name": "CX", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x000000000000012def132e61759048be5b5c6033.png", - "aggregators": ["CoinGecko", "LiFi", "Rubic", "Squid", "Rango"], - "occurrences": 5 - }, - "0xc3ce78b037dda1b966d31ec7979d3f3a38571a8e": { - "address": "0xc3ce78b037dda1b966d31ec7979d3f3a38571a8e", - "symbol": "BCSPX", - "decimals": 18, - "name": "Backed CSPX Core S&P 500", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xc3ce78b037dda1b966d31ec7979d3f3a38571a8e.png", - "aggregators": [ - "CoinGecko", - "LiFi", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0xecedb6f8108b9f7bbf499da843dced6c2bb6e270": { - "address": "0xecedb6f8108b9f7bbf499da843dced6c2bb6e270", - "symbol": "USDUC", - "decimals": 18, - "name": "USDUC", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xecedb6f8108b9f7bbf499da843dced6c2bb6e270.png", - "aggregators": ["CoinGecko", "LiFi", "Socket", "Rubic", "Rango"], - "occurrences": 5 - }, - "0x59264f02d301281f3393e1385c0aefd446eb0f00": { - "address": "0x59264f02d301281f3393e1385c0aefd446eb0f00", - "symbol": "PARTI", - "decimals": 18, - "name": "Particle Network", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x59264f02d301281f3393e1385c0aefd446eb0f00.png", - "aggregators": [ - "CoinGecko", - "LiFi", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x35e5db674d8e93a03d814fa0ada70731efe8a4b9": { - "address": "0x35e5db674d8e93a03d814fa0ada70731efe8a4b9", - "symbol": "USR", - "decimals": 18, - "name": "Resolv USD", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x35e5db674d8e93a03d814fa0ada70731efe8a4b9.png", - "aggregators": ["CoinGecko", "LiFi", "Socket", "Rubic", "Rango"], - "occurrences": 5 - }, - "0x91f9cc2649ac70a071602cade9b0c1a5868af51d": { - "address": "0x91f9cc2649ac70a071602cade9b0c1a5868af51d", - "symbol": "WXTZ", - "decimals": 18, - "name": "Wrapped XTZ", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x91f9cc2649ac70a071602cade9b0c1a5868af51d.png", - "aggregators": ["CoinGecko", "LiFi", "Socket", "Rubic", "Rango"], - "occurrences": 5 - }, - "0xe5e851b01dd3eda24fde709a407db44555b6d1e0": { - "address": "0xe5e851b01dd3eda24fde709a407db44555b6d1e0", - "symbol": "RIF", - "decimals": 18, - "name": "RIF", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xe5e851b01dd3eda24fde709a407db44555b6d1e0.png", - "aggregators": ["CoinGecko", "LiFi", "Socket", "Rubic", "Rango"], - "occurrences": 5 - }, - "0x7252c865c05378ffc15120f428dd65804dd0ce63": { - "address": "0x7252c865c05378ffc15120f428dd65804dd0ce63", - "symbol": "TLOS", - "decimals": 18, - "name": "TLOS", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x7252c865c05378ffc15120f428dd65804dd0ce63.png", - "aggregators": ["CoinGecko", "LiFi", "Rubic", "Squid", "Rango"], - "occurrences": 5 - }, - "0xe67f39fbe8c24ef8b3542efed1ee9963cefc1f2a": { - "address": "0xe67f39fbe8c24ef8b3542efed1ee9963cefc1f2a", - "symbol": "ANYONE", - "decimals": 18, - "name": "ANYONE", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xe67f39fbe8c24ef8b3542efed1ee9963cefc1f2a.png", - "aggregators": ["CoinGecko", "LiFi", "Socket", "Rubic", "Rango"], - "occurrences": 5 - }, - "0xc31389794ffac23331e0d9f611b7953f90aa5fdc": { - "address": "0xc31389794ffac23331e0d9f611b7953f90aa5fdc", - "symbol": "RLP", - "decimals": 18, - "name": "RLP", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xc31389794ffac23331e0d9f611b7953f90aa5fdc.png", - "aggregators": ["CoinGecko", "LiFi", "Socket", "Rubic", "Rango"], - "occurrences": 5 - }, - "0x7094c27f342dbadfbbed005b219431595e33b305": { - "address": "0x7094c27f342dbadfbbed005b219431595e33b305", - "symbol": "QUICK", - "decimals": 18, - "name": "QUICK", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x7094c27f342dbadfbbed005b219431595e33b305.png", - "aggregators": ["CoinGecko", "LiFi", "Socket", "Rubic", "Rango"], - "occurrences": 5 - }, - "0x62344be8ca1c339b46274a4017dd87af436900b1": { - "address": "0x62344be8ca1c339b46274a4017dd87af436900b1", - "symbol": "WSRUSD", - "decimals": 18, - "name": "WSRUSD", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x62344be8ca1c339b46274a4017dd87af436900b1.png", - "aggregators": ["CoinGecko", "LiFi", "Socket", "Rubic", "Rango"], - "occurrences": 5 - }, - "0xa153ad732f831a79b5575fa02e793ec4e99181b0": { - "address": "0xa153ad732f831a79b5575fa02e793ec4e99181b0", - "symbol": "EUL", - "decimals": 18, - "name": "EUL", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xa153ad732f831a79b5575fa02e793ec4e99181b0.png", - "aggregators": ["CoinGecko", "LiFi", "Socket", "Rubic", "Rango"], - "occurrences": 5 - }, - "0x2d189eabb667aa1ecfc01963a6a3a5d83960f558": { - "address": "0x2d189eabb667aa1ecfc01963a6a3a5d83960f558", - "symbol": "GALAXIS", - "decimals": 18, - "name": "GALAXIS Token", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x2d189eabb667aa1ecfc01963a6a3a5d83960f558.png", - "aggregators": [ - "CoinGecko", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x58d75a1c4477914f9a98a8708feaed1dbe40b8a3": { - "address": "0x58d75a1c4477914f9a98a8708feaed1dbe40b8a3", - "symbol": "ATH", - "decimals": 18, - "name": "AthenaDAO", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x58d75a1c4477914f9a98a8708feaed1dbe40b8a3.png", - "aggregators": [ - "CoinGecko", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x8f2e6758c4d6570344bd5007dec6301cd57590a0": { - "address": "0x8f2e6758c4d6570344bd5007dec6301cd57590a0", - "symbol": "SPOT", - "decimals": 9, - "name": "Spot", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x8f2e6758c4d6570344bd5007dec6301cd57590a0.png", - "aggregators": [ - "CoinGecko", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x39d5313c3750140e5042887413ba8aa6145a9bd2": { - "address": "0x39d5313c3750140e5042887413ba8aa6145a9bd2", - "symbol": "EMP", - "decimals": 18, - "name": "Empyreal", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x39d5313c3750140e5042887413ba8aa6145a9bd2.png", - "aggregators": [ - "CoinGecko", - "LiFi", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x7f05a7a9af2f5a07d1e64877c8dc37a64a22508e": { - "address": "0x7f05a7a9af2f5a07d1e64877c8dc37a64a22508e", - "symbol": "AJNA", - "decimals": 18, - "name": "Ajna Protocol", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x7f05a7a9af2f5a07d1e64877c8dc37a64a22508e.png", - "aggregators": [ - "CoinGecko", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0xb67675158b412d53fe6b68946483ba920b135ba1": { - "address": "0xb67675158b412d53fe6b68946483ba920b135ba1", - "symbol": "WSTUSR", - "decimals": 18, - "name": "WSTUSR", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xb67675158b412d53fe6b68946483ba920b135ba1.png", - "aggregators": ["CoinGecko", "LiFi", "Socket", "Rubic", "Rango"], - "occurrences": 5 - }, - "0x09d4214c03d01f49544c0448dbe3a27f768f2b34": { - "address": "0x09d4214c03d01f49544c0448dbe3a27f768f2b34", - "symbol": "RUSD", - "decimals": 18, - "name": "RUSD", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x09d4214c03d01f49544c0448dbe3a27f768f2b34.png", - "aggregators": ["CoinGecko", "LiFi", "Socket", "Rubic", "Rango"], - "occurrences": 5 - }, - "0x570b1533f6daa82814b25b62b5c7c4c55eb83947": { - "address": "0x570b1533f6daa82814b25b62b5c7c4c55eb83947", - "symbol": "BOBO", - "decimals": 18, - "name": "BOBO Coin", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x570b1533f6daa82814b25b62b5c7c4c55eb83947.png", - "aggregators": [ - "CoinGecko", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x9a6d24c02ec35ad970287ee8296d4d6552a31dbe": { - "address": "0x9a6d24c02ec35ad970287ee8296d4d6552a31dbe", - "symbol": "OPN", - "decimals": 18, - "name": "OPEN Ticketing Ecosystem", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x9a6d24c02ec35ad970287ee8296d4d6552a31dbe.png", - "aggregators": [ - "CoinGecko", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x881ed0fcef78120a135ec6cc66cef2779fe95bba": { - "address": "0x881ed0fcef78120a135ec6cc66cef2779fe95bba", - "symbol": "DOGEGF", - "decimals": 18, - "name": "DogeGF", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x881ed0fcef78120a135ec6cc66cef2779fe95bba.png", - "aggregators": [ - "CoinGecko", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x08d7ea3c148672c4b03999eb0d0467733da2db6a": { - "address": "0x08d7ea3c148672c4b03999eb0d0467733da2db6a", - "symbol": "NSTR", - "decimals": 18, - "name": "Nostra", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x08d7ea3c148672c4b03999eb0d0467733da2db6a.png", - "aggregators": [ - "CoinGecko", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x45d9c101a3870ca5024582fd788f4e1e8f7971c3": { - "address": "0x45d9c101a3870ca5024582fd788f4e1e8f7971c3", - "symbol": "MASQ", - "decimals": 18, - "name": "MASQ", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x45d9c101a3870ca5024582fd788f4e1e8f7971c3.png", - "aggregators": [ - "CoinGecko", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x8f019931375454fe4ee353427eb94e2e0c9e0a8c": { - "address": "0x8f019931375454fe4ee353427eb94e2e0c9e0a8c", - "symbol": "KOMPETE", - "decimals": 10, - "name": "KOMPETE", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x8f019931375454fe4ee353427eb94e2e0c9e0a8c.png", - "aggregators": [ - "CoinGecko", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x3d2eba645c44bbd32a34b7c017667711eb5b173c": { - "address": "0x3d2eba645c44bbd32a34b7c017667711eb5b173c", - "symbol": "WMC", - "decimals": 2, - "name": "Wrapped MistCoin", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x3d2eba645c44bbd32a34b7c017667711eb5b173c.png", - "aggregators": [ - "CoinGecko", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x7588310a7abf34dc608ac98a1c4432f85e194df5": { - "address": "0x7588310a7abf34dc608ac98a1c4432f85e194df5", - "symbol": "FORT", - "decimals": 18, - "name": "Forta", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x7588310a7abf34dc608ac98a1c4432f85e194df5.png", - "aggregators": ["CoinGecko", "LiFi", "Socket", "Rubic", "Rango"], - "occurrences": 5 - }, - "0xfdd22ce6d1f66bc0ec89b20bf16ccb6670f55a5a": { - "address": "0xfdd22ce6d1f66bc0ec89b20bf16ccb6670f55a5a", - "symbol": "THBILL", - "decimals": 6, - "name": "THBILL", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xfdd22ce6d1f66bc0ec89b20bf16ccb6670f55a5a.png", - "aggregators": ["CoinGecko", "LiFi", "Socket", "Rubic", "Rango"], - "occurrences": 5 - }, - "0xd5b22dcfa9a919b28afe164fc7af10b832d4b022": { - "address": "0xd5b22dcfa9a919b28afe164fc7af10b832d4b022", - "symbol": "LORDS", - "decimals": 18, - "name": "LORDS", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xd5b22dcfa9a919b28afe164fc7af10b832d4b022.png", - "aggregators": [ - "CoinGecko", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0xe7399151b688a265f347693d358821a5a8c213ec": { - "address": "0xe7399151b688a265f347693d358821a5a8c213ec", - "symbol": "SKAI", - "decimals": 18, - "name": "Skillful AI", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xe7399151b688a265f347693d358821a5a8c213ec.png", - "aggregators": [ - "CoinGecko", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0xab51a37ce3a3339fe5611c1a762eef952dd3d808": { - "address": "0xab51a37ce3a3339fe5611c1a762eef952dd3d808", - "symbol": "CAESAR", - "decimals": 18, - "name": "CAESAR", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xab51a37ce3a3339fe5611c1a762eef952dd3d808.png", - "aggregators": ["CoinGecko", "LiFi", "Rubic", "Squid", "Rango"], - "occurrences": 5 - }, - "0x9886447ff4c350f4600e4bf95db756bdc629b1ca": { - "address": "0x9886447ff4c350f4600e4bf95db756bdc629b1ca", - "symbol": "CERE", - "decimals": 10, - "name": "CERE", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x9886447ff4c350f4600e4bf95db756bdc629b1ca.png", - "aggregators": ["CoinGecko", "LiFi", "Socket", "Rubic", "Rango"], - "occurrences": 5 - }, - "0xac485391eb2d7d88253a7f1ef18c37f4242d1a24": { - "address": "0xac485391eb2d7d88253a7f1ef18c37f4242d1a24", - "symbol": "LSK", - "decimals": 18, - "name": "Lisk", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xac485391eb2d7d88253a7f1ef18c37f4242d1a24.png", - "aggregators": ["CoinGecko", "LiFi", "Socket", "Rubic", "Rango"], - "occurrences": 5 - }, - "0x5e64c9049455b3bb6e9fbdc33565fa313bae9b53": { - "address": "0x5e64c9049455b3bb6e9fbdc33565fa313bae9b53", - "symbol": "RIO", - "decimals": 18, - "name": "RIO", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x5e64c9049455b3bb6e9fbdc33565fa313bae9b53.png", - "aggregators": ["CoinGecko", "LiFi", "Socket", "Rubic", "Rango"], - "occurrences": 5 - }, - "0xf1a7000000950c7ad8aff13118bb7ab561a448ee": { - "address": "0xf1a7000000950c7ad8aff13118bb7ab561a448ee", - "symbol": "FLAY", - "decimals": 18, - "name": "Flayer", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xf1a7000000950c7ad8aff13118bb7ab561a448ee.png", - "aggregators": ["CoinGecko", "LiFi", "Socket", "Rubic", "Rango"], - "occurrences": 5 - }, - "0x4a0c64af541439898448659aedcec8e8e819fc53": { - "address": "0x4a0c64af541439898448659aedcec8e8e819fc53", - "symbol": "PONKE", - "decimals": 18, - "name": "PONKE", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x4a0c64af541439898448659aedcec8e8e819fc53.png", - "aggregators": [ - "CoinGecko", - "LiFi", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0xff7f8f301f7a706e3cfd3d2275f5dc0b9ee8009b": { - "address": "0xff7f8f301f7a706e3cfd3d2275f5dc0b9ee8009b", - "symbol": "FOLKS", - "decimals": 6, - "name": "FOLKS", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xff7f8f301f7a706e3cfd3d2275f5dc0b9ee8009b.png", - "aggregators": ["CoinGecko", "1inch", "LiFi", "Rubic", "Rango"], - "occurrences": 5 - }, - "0xd71552d9e08e5351adb52163b3bbbc4d7de53ce1": { - "address": "0xd71552d9e08e5351adb52163b3bbbc4d7de53ce1", - "symbol": "AITECH", - "decimals": 18, - "name": "Solidus Ai Tech", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xd71552d9e08e5351adb52163b3bbbc4d7de53ce1.png", - "aggregators": [ - "CoinGecko", - "LiFi", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x091a5a1e3aa8b96ab0fb0bc217f5e60ec4c611a0": { - "address": "0x091a5a1e3aa8b96ab0fb0bc217f5e60ec4c611a0", - "symbol": "LEVETH", - "decimals": 18, - "name": "Plaza LevETH", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x091a5a1e3aa8b96ab0fb0bc217f5e60ec4c611a0.png", - "aggregators": ["1inch", "LiFi", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 5 - }, - "0x7614f61fed79e0ff47aa0831d18d046cb3ee0ce6": { - "address": "0x7614f61fed79e0ff47aa0831d18d046cb3ee0ce6", - "symbol": "NEST", - "decimals": 18, - "name": "Nest AI by Virtuals", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x7614f61fed79e0ff47aa0831d18d046cb3ee0ce6.png", - "aggregators": ["LiFi", "Rubic", "Squid", "Rango", "Sonarwatch"], - "occurrences": 5 - }, - "0x31b28012f61fc3600e1c076bafc9fd997fb2da90": { - "address": "0x31b28012f61fc3600e1c076bafc9fd997fb2da90", - "symbol": "MRSMIGGLES", - "decimals": 18, - "name": "Mrs Miggles", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x31b28012f61fc3600e1c076bafc9fd997fb2da90.png", - "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0x6059d0ed9368c36941514d2864fd114a84853d5a": { - "address": "0x6059d0ed9368c36941514d2864fd114a84853d5a", - "symbol": "FOAM", - "decimals": 18, - "name": "FOAM Token", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x6059d0ed9368c36941514d2864fd114a84853d5a.png", - "aggregators": ["CoinGecko", "Socket", "Rubic", "Rango"], - "occurrences": 4 - }, - "0x5b2124d427fac9c80c902cbdd74b03dd85d7d3fe": { - "address": "0x5b2124d427fac9c80c902cbdd74b03dd85d7d3fe", - "symbol": "DYP", - "decimals": 18, - "name": "Dypius", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x5b2124d427fac9c80c902cbdd74b03dd85d7d3fe.png", - "aggregators": ["Socket", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0x18e692c03de43972fe81058f322fa542ae1a5e2c": { - "address": "0x18e692c03de43972fe81058f322fa542ae1a5e2c", - "symbol": "IMGNAI", - "decimals": 9, - "name": "Imagine AI", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x18e692c03de43972fe81058f322fa542ae1a5e2c.png", - "aggregators": ["LiFi", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x7cea109fc3516ed1248ae9aa67b5a352cf74075e": { - "address": "0x7cea109fc3516ed1248ae9aa67b5a352cf74075e", - "symbol": "NOVA", - "decimals": 18, - "name": "Nova DAO", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x7cea109fc3516ed1248ae9aa67b5a352cf74075e.png", - "aggregators": ["Socket", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x3f14920c99beb920afa163031c4e47a3e03b3e4a": { - "address": "0x3f14920c99beb920afa163031c4e47a3e03b3e4a", - "symbol": "SEND", - "decimals": 0, - "name": "Send Token", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x3f14920c99beb920afa163031c4e47a3e03b3e4a.png", - "aggregators": ["Socket", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x61ca70b867a48265e553a7fbb81bfe44fada7ae6": { - "address": "0x61ca70b867a48265e553a7fbb81bfe44fada7ae6", - "symbol": "ARC", - "decimals": 18, - "name": "ARC", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x61ca70b867a48265e553a7fbb81bfe44fada7ae6.png", - "aggregators": ["Socket", "Rubic", "Rango"], - "occurrences": 3 - }, - "0xbd4e5c2f8de5065993d29a9794e2b7cefc41437a": { - "address": "0xbd4e5c2f8de5065993d29a9794e2b7cefc41437a", - "symbol": "IPOR", - "decimals": 18, - "name": "IPOR", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xbd4e5c2f8de5065993d29a9794e2b7cefc41437a.png", - "aggregators": ["Rubic", "Rango", "Sonarwatch"], - "occurrences": 3 - }, - "0xd33c7b753ecaa85e5d5f5b5fd99dec59f26a087e": { - "address": "0xd33c7b753ecaa85e5d5f5b5fd99dec59f26a087e", - "symbol": "FACTR", - "decimals": 18, - "name": "Defactor", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xd33c7b753ecaa85e5d5f5b5fd99dec59f26a087e.png", - "aggregators": ["Rubic", "Rango", "Sonarwatch"], - "occurrences": 3 - }, - "0x1287a235474e0331c0975e373bdd066444d1bd35": { - "address": "0x1287a235474e0331c0975e373bdd066444d1bd35", - "symbol": "TKAI", - "decimals": 18, - "name": "TAIKAI", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x1287a235474e0331c0975e373bdd066444d1bd35.png", - "aggregators": ["Rubic", "Rango", "Sonarwatch"], - "occurrences": 3 - }, - "0x703d57164ca270b0b330a87fd159cfef1490c0a5": { - "address": "0x703d57164ca270b0b330a87fd159cfef1490c0a5", - "symbol": "SOFI", - "decimals": 18, - "name": "RAI Finance", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x703d57164ca270b0b330a87fd159cfef1490c0a5.png", - "aggregators": ["Rubic", "Rango", "Sonarwatch"], - "occurrences": 3 - }, - "0x029a3b0532871735809a51e8653d6017ef04b6fa": { - "address": "0x029a3b0532871735809a51e8653d6017ef04b6fa", - "symbol": "TYBENG", - "decimals": 18, - "name": "TYBENG", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x029a3b0532871735809a51e8653d6017ef04b6fa.png", - "aggregators": ["Rubic", "Rango", "Sonarwatch"], - "occurrences": 3 - }, - "0xeb466342c4d449bc9f53a865d5cb90586f405215": { - "address": "0xeb466342c4d449bc9f53a865d5cb90586f405215", - "symbol": "AXLUSDC", - "decimals": 6, - "name": "Axelar Wrapped USDC", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xeb466342c4d449bc9f53a865d5cb90586f405215.png", - "aggregators": [ - "CoinGecko", - "1inch", - "LiFi", - "TrustWallet", - "Rubic", - "Squid", - "Rango", - "Sonarwatch", - "SushiSwap" - ], - "occurrences": 9 - }, - "0x1bc0c42215582d5a085795f4badbac3ff36d1bcb": { - "address": "0x1bc0c42215582d5a085795f4badbac3ff36d1bcb", - "symbol": "CLANKER", - "decimals": 18, - "name": "tokenbot", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x1bc0c42215582d5a085795f4badbac3ff36d1bcb.png", - "aggregators": [ - "CoinGecko", - "1inch", - "LiFi", - "Socket", - "Rubic", - "Squid", - "Rango", - "Sonarwatch" - ], - "occurrences": 8 - }, - "0xb8d98a102b0079b69ffbc760c8d857a31653e56e": { - "address": "0xb8d98a102b0079b69ffbc760c8d857a31653e56e", - "symbol": "TOBY", - "decimals": 18, - "name": "toby", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xb8d98a102b0079b69ffbc760c8d857a31653e56e.png", - "aggregators": [ - "CoinGecko", - "1inch", - "Socket", - "Rubic", - "Squid", - "Rango", - "Sonarwatch", - "SushiSwap" - ], - "occurrences": 8 - }, - "0x23ee2343b892b1bb63503a4fabc840e0e2c6810f": { - "address": "0x23ee2343b892b1bb63503a4fabc840e0e2c6810f", - "symbol": "AXL", - "decimals": 6, - "name": "Axelar", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x23ee2343b892b1bb63503a4fabc840e0e2c6810f.png", - "aggregators": [ - "CoinGecko", - "LiFi", - "Socket", - "Rubic", - "Squid", - "Rango", - "Sonarwatch", - "SushiSwap" - ], - "occurrences": 8 - }, - "0x78a087d713be963bf307b18f2ff8122ef9a63ae9": { - "address": "0x78a087d713be963bf307b18f2ff8122ef9a63ae9", - "symbol": "BSWAP", - "decimals": 18, - "name": "Baseswap", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x78a087d713be963bf307b18f2ff8122ef9a63ae9.png", - "aggregators": [ - "CoinGecko", - "LiFi", - "TrustWallet", - "Rubic", - "Squid", - "Rango", - "Sonarwatch" - ], - "occurrences": 7 - }, - "0xbf1aea8670d2528e08334083616dd9c5f3b087ae": { - "address": "0xbf1aea8670d2528e08334083616dd9c5f3b087ae", - "symbol": "MIMATIC", - "decimals": 18, - "name": "MAI (Base)", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xbf1aea8670d2528e08334083616dd9c5f3b087ae.png", - "aggregators": [ - "CoinGecko", - "LiFi", - "Socket", - "Rubic", - "Squid", - "Rango", - "Sonarwatch" - ], - "occurrences": 7 - }, - "0x731814e491571a2e9ee3c5b1f7f3b962ee8f4870": { - "address": "0x731814e491571a2e9ee3c5b1f7f3b962ee8f4870", - "symbol": "VADER", - "decimals": 18, - "name": "VaderAI by Virtuals", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x731814e491571a2e9ee3c5b1f7f3b962ee8f4870.png", - "aggregators": [ - "CoinGecko", - "1inch", - "LiFi", - "Socket", - "Rubic", - "Squid", - "Sonarwatch" - ], - "occurrences": 7 - }, - "0xd386a121991e51eab5e3433bf5b1cf4c8884b47a": { - "address": "0xd386a121991e51eab5e3433bf5b1cf4c8884b47a", - "symbol": "BVM", - "decimals": 18, - "name": "Base Velocimeter", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xd386a121991e51eab5e3433bf5b1cf4c8884b47a.png", - "aggregators": [ - "CoinGecko", - "LiFi", - "Socket", - "Rubic", - "Squid", - "Rango", - "Sonarwatch" - ], - "occurrences": 7 - }, - "0x548f93779fbc992010c07467cbaf329dd5f059b7": { - "address": "0x548f93779fbc992010c07467cbaf329dd5f059b7", - "symbol": "BMX", - "decimals": 18, - "name": "BMX", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x548f93779fbc992010c07467cbaf329dd5f059b7.png", - "aggregators": [ - "CoinGecko", - "LiFi", - "Socket", - "Rubic", - "Squid", - "Rango", - "Sonarwatch" - ], - "occurrences": 7 - }, - "0x55cd6469f597452b5a7536e2cd98fde4c1247ee4": { - "address": "0x55cd6469f597452b5a7536e2cd98fde4c1247ee4", - "symbol": "LUNA", - "decimals": 18, - "name": "Luna by Virtuals", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x55cd6469f597452b5a7536e2cd98fde4c1247ee4.png", - "aggregators": [ - "CoinGecko", - "LiFi", - "Socket", - "Rubic", - "Squid", - "Rango", - "Sonarwatch" - ], - "occurrences": 7 - }, - "0x2c8c89c442436cc6c0a77943e09c8daf49da3161": { - "address": "0x2c8c89c442436cc6c0a77943e09c8daf49da3161", - "symbol": "ZBU", - "decimals": 18, - "name": "Zeebu", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x2c8c89c442436cc6c0a77943e09c8daf49da3161.png", - "aggregators": [ - "CoinGecko", - "1inch", - "LiFi", - "Socket", - "Rubic", - "Squid", - "Rango", - "Sonarwatch" - ], - "occurrences": 8 - }, - "0xa334884bf6b0a066d553d19e507315e839409e62": { - "address": "0xa334884bf6b0a066d553d19e507315e839409e62", - "symbol": "ERN", - "decimals": 18, - "name": "Ethos Reserve Note", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xa334884bf6b0a066d553d19e507315e839409e62.png", - "aggregators": [ - "CoinGecko", - "LiFi", - "Socket", - "Rubic", - "Squid", - "Rango", - "Sonarwatch" - ], - "occurrences": 7 - }, - "0x2416092f143378750bb29b79ed961ab195cceea5": { - "address": "0x2416092f143378750bb29b79ed961ab195cceea5", - "symbol": "EZETH", - "decimals": 18, - "name": "Renzo Restaked ETH", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x2416092f143378750bb29b79ed961ab195cceea5.png", - "aggregators": [ - "CoinGecko", - "LiFi", - "Socket", - "Rubic", - "Squid", - "Rango", - "Sonarwatch" - ], - "occurrences": 7 - }, - "0x9a26f5433671751c3276a065f57e5a02d2817973": { - "address": "0x9a26f5433671751c3276a065f57e5a02d2817973", - "symbol": "KEYCAT", - "decimals": 18, - "name": "Keyboard Cat (Base)", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x9a26f5433671751c3276a065f57e5a02d2817973.png", - "aggregators": [ - "CoinGecko", - "LiFi", - "Rubic", - "Squid", - "Rango", - "Sonarwatch" - ], - "occurrences": 6 - }, - "0x1c4cca7c5db003824208adda61bd749e55f463a3": { - "address": "0x1c4cca7c5db003824208adda61bd749e55f463a3", - "symbol": "GAME", - "decimals": 18, - "name": "GAME by Virtuals", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x1c4cca7c5db003824208adda61bd749e55f463a3.png", - "aggregators": [ - "CoinGecko", - "LiFi", - "Rubic", - "Squid", - "Rango", - "Sonarwatch" - ], - "occurrences": 6 - }, - "0xab964f7b7b6391bd6c4e8512ef00d01f255d9c0d": { - "address": "0xab964f7b7b6391bd6c4e8512ef00d01f255d9c0d", - "symbol": "CONVO", - "decimals": 18, - "name": "Prefrontal Cortex Convo Agent by Virtuals", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xab964f7b7b6391bd6c4e8512ef00d01f255d9c0d.png", - "aggregators": [ - "CoinGecko", - "1inch", - "Rubic", - "Squid", - "Rango", - "Sonarwatch" - ], - "occurrences": 6 - }, - "0x37f0c2915cecc7e977183b8543fc0864d03e064c": { - "address": "0x37f0c2915cecc7e977183b8543fc0864d03e064c", - "symbol": "HUNT", - "decimals": 18, - "name": "Hunt", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x37f0c2915cecc7e977183b8543fc0864d03e064c.png", - "aggregators": [ - "CoinGecko", - "LiFi", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 6 - }, - "0x9c7beba8f6ef6643abd725e45a4e8387ef260649": { - "address": "0x9c7beba8f6ef6643abd725e45a4e8387ef260649", - "symbol": "G", - "decimals": 18, - "name": "Gravity (by Galxe)", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x9c7beba8f6ef6643abd725e45a4e8387ef260649.png", - "aggregators": [ - "CoinGecko", - "1inch", - "LiFi", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 6 - }, - "0x11e969e9b3f89cb16d686a03cd8508c9fc0361af": { - "address": "0x11e969e9b3f89cb16d686a03cd8508c9fc0361af", - "symbol": "LAVA", - "decimals": 6, - "name": "Lava Network", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x11e969e9b3f89cb16d686a03cd8508c9fc0361af.png", - "aggregators": [ - "CoinGecko", - "LiFi", - "Rubic", - "Squid", - "Rango", - "Sonarwatch" - ], - "occurrences": 6 - }, - "0xe31ee12bdfdd0573d634124611e85338e2cbf0cf": { - "address": "0xe31ee12bdfdd0573d634124611e85338e2cbf0cf", - "symbol": "SUSDZ", - "decimals": 18, - "name": "Anzen Staked USDz", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xe31ee12bdfdd0573d634124611e85338e2cbf0cf.png", - "aggregators": [ - "CoinGecko", - "LiFi", - "Rubic", - "Squid", - "Rango", - "Sonarwatch" - ], - "occurrences": 6 - }, - "0x79bbf4508b1391af3a0f4b30bb5fc4aa9ab0e07c": { - "address": "0x79bbf4508b1391af3a0f4b30bb5fc4aa9ab0e07c", - "symbol": "ANON", - "decimals": 18, - "name": "HeyAnon", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x79bbf4508b1391af3a0f4b30bb5fc4aa9ab0e07c.png", - "aggregators": [ - "CoinGecko", - "LiFi", - "Socket", - "Rubic", - "Squid", - "Rango" - ], - "occurrences": 6 - }, - "0xdcf5130274753c8050ab061b1a1dcbf583f5bfd0": { - "address": "0xdcf5130274753c8050ab061b1a1dcbf583f5bfd0", - "symbol": "VCNT", - "decimals": 18, - "name": "ViciCoin", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xdcf5130274753c8050ab061b1a1dcbf583f5bfd0.png", - "aggregators": [ - "CoinGecko", - "LiFi", - "Rubic", - "Squid", - "Rango", - "Sonarwatch" - ], - "occurrences": 6 - }, - "0xa3d1a8deb97b111454b294e2324efad13a9d8396": { - "address": "0xa3d1a8deb97b111454b294e2324efad13a9d8396", - "symbol": "OVN", - "decimals": 18, - "name": "Overnight Finance", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xa3d1a8deb97b111454b294e2324efad13a9d8396.png", - "aggregators": [ - "CoinGecko", - "LiFi", - "Rubic", - "Squid", - "Rango", - "Sonarwatch" - ], - "occurrences": 6 - }, - "0x04d5ddf5f3a8939889f11e97f8c4bb48317f1938": { - "address": "0x04d5ddf5f3a8939889f11e97f8c4bb48317f1938", - "symbol": "USDZ", - "decimals": 18, - "name": "Anzen USDz", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x04d5ddf5f3a8939889f11e97f8c4bb48317f1938.png", - "aggregators": [ - "CoinGecko", - "LiFi", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 6 - }, - "0xedfa23602d0ec14714057867a78d01e94176bea0": { - "address": "0xedfa23602d0ec14714057867a78d01e94176bea0", - "symbol": "WRSETH", - "decimals": 18, - "name": "Wrapped rsETH", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xedfa23602d0ec14714057867a78d01e94176bea0.png", - "aggregators": [ - "CoinGecko", - "LiFi", - "Rubic", - "Squid", - "Rango", - "Sonarwatch" - ], - "occurrences": 6 - }, - "0x7f5373ae26c3e8ffc4c77b7255df7ec1a9af52a6": { - "address": "0x7f5373ae26c3e8ffc4c77b7255df7ec1a9af52a6", - "symbol": "AXLUSDT", - "decimals": 6, - "name": "Axelar Wrapped USDT", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x7f5373ae26c3e8ffc4c77b7255df7ec1a9af52a6.png", - "aggregators": [ - "1inch", - "LiFi", - "Socket", - "Rubic", - "Squid", - "Rango" - ], - "occurrences": 6 - }, - "0x99956f143dcca77cddf4b4b2a0fa4d491703244d": { - "address": "0x99956f143dcca77cddf4b4b2a0fa4d491703244d", - "symbol": "LYRA", - "decimals": 18, - "name": "LYRA", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x99956f143dcca77cddf4b4b2a0fa4d491703244d.png", - "aggregators": [ - "CoinGecko", - "Rubic", - "Squid", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x1e2093ab84768948c6176db5ad98c909ce97f368": { - "address": "0x1e2093ab84768948c6176db5ad98c909ce97f368", - "symbol": "DORA", - "decimals": 18, - "name": "DORA AI by Virtuals", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x1e2093ab84768948c6176db5ad98c909ce97f368.png", - "aggregators": [ - "CoinGecko", - "Rubic", - "Squid", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x2eac9b08a4d86f347b9e856fb3ec082e61c76545": { - "address": "0x2eac9b08a4d86f347b9e856fb3ec082e61c76545", - "symbol": "AIRENE", - "decimals": 18, - "name": "AIRENE", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x2eac9b08a4d86f347b9e856fb3ec082e61c76545.png", - "aggregators": [ - "CoinGecko", - "Rubic", - "Squid", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x6c7ebb64e258f5712eeec83ceaf41c3dcbb534b1": { - "address": "0x6c7ebb64e258f5712eeec83ceaf41c3dcbb534b1", - "symbol": "VAIN", - "decimals": 18, - "name": "Vainguard", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x6c7ebb64e258f5712eeec83ceaf41c3dcbb534b1.png", - "aggregators": [ - "CoinGecko", - "Rubic", - "Squid", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x20b048fa035d5763685d695e66adf62c5d9f5055": { - "address": "0x20b048fa035d5763685d695e66adf62c5d9f5055", - "symbol": "CHAR", - "decimals": 18, - "name": "Biochar", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x20b048fa035d5763685d695e66adf62c5d9f5055.png", - "aggregators": [ - "CoinGecko", - "Rubic", - "Squid", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x3f12d4607f9df527c3bccbd16a70636a69c8fcf5": { - "address": "0x3f12d4607f9df527c3bccbd16a70636a69c8fcf5", - "symbol": "VOLTX", - "decimals": 18, - "name": "VolatilityX", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x3f12d4607f9df527c3bccbd16a70636a69c8fcf5.png", - "aggregators": [ - "CoinGecko", - "Rubic", - "Squid", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x8e3bff1abf376f7a5d036cc3d85766394744dd04": { - "address": "0x8e3bff1abf376f7a5d036cc3d85766394744dd04", - "symbol": "POD", - "decimals": 18, - "name": "Podflow AI by Virtuals", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x8e3bff1abf376f7a5d036cc3d85766394744dd04.png", - "aggregators": [ - "CoinGecko", - "Rubic", - "Squid", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x792d0447bf8b33158ca6e02d49755f2eab65061b": { - "address": "0x792d0447bf8b33158ca6e02d49755f2eab65061b", - "symbol": "ZEBRO", - "decimals": 18, - "name": "Sport Bettor AI", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x792d0447bf8b33158ca6e02d49755f2eab65061b.png", - "aggregators": [ - "CoinGecko", - "Rubic", - "Squid", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0xb01cf1be9568f09449382a47cd5bf58e2a9d5922": { - "address": "0xb01cf1be9568f09449382a47cd5bf58e2a9d5922", - "symbol": "SPEED", - "decimals": 18, - "name": "Lightspeed", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xb01cf1be9568f09449382a47cd5bf58e2a9d5922.png", - "aggregators": [ - "CoinGecko", - "Rubic", - "Squid", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x0b3ae50babe7ffa4e1a50569cee6bdefd4ccaee0": { - "address": "0x0b3ae50babe7ffa4e1a50569cee6bdefd4ccaee0", - "symbol": "WIRE", - "decimals": 18, - "name": "717ai by Virtuals", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x0b3ae50babe7ffa4e1a50569cee6bdefd4ccaee0.png", - "aggregators": [ - "CoinGecko", - "LiFi", - "Rubic", - "Squid", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0xa720777acb870de5395cd5888b3cd8fb763e74d2": { - "address": "0xa720777acb870de5395cd5888b3cd8fb763e74d2", - "symbol": "MOLLY", - "decimals": 18, - "name": "MOLLY ANALYTICS by Virtuals", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xa720777acb870de5395cd5888b3cd8fb763e74d2.png", - "aggregators": [ - "CoinGecko", - "Rubic", - "Squid", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0xb18c609796848c723eacadc0be5b71ceb2289a48": { - "address": "0xb18c609796848c723eacadc0be5b71ceb2289a48", - "symbol": "ATA", - "decimals": 18, - "name": "ATA by Virtuals", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xb18c609796848c723eacadc0be5b71ceb2289a48.png", - "aggregators": [ - "CoinGecko", - "Rubic", - "Squid", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0xc8db98437bed9943f11c5b31b645b07c0efc17e0": { - "address": "0xc8db98437bed9943f11c5b31b645b07c0efc17e0", - "symbol": "LEO", - "decimals": 18, - "name": "LEOONO by Virtuals", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xc8db98437bed9943f11c5b31b645b07c0efc17e0.png", - "aggregators": [ - "CoinGecko", - "Rubic", - "Squid", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x1a43287cbfcc5f35082e6e2aa98e5b474fe7bd4e": { - "address": "0x1a43287cbfcc5f35082e6e2aa98e5b474fe7bd4e", - "symbol": "ATHENA", - "decimals": 18, - "name": "Athena by virtuals", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x1a43287cbfcc5f35082e6e2aa98e5b474fe7bd4e.png", - "aggregators": [ - "CoinGecko", - "Rubic", - "Squid", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x99298c6be0e8ec9e56b7a2be5850abe1fc109d94": { - "address": "0x99298c6be0e8ec9e56b7a2be5850abe1fc109d94", - "symbol": "DEGENC", - "decimals": 18, - "name": "Degen Capital by Virtuals", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x99298c6be0e8ec9e56b7a2be5850abe1fc109d94.png", - "aggregators": [ - "CoinGecko", - "Rubic", - "Squid", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x49c86046903807d0a3193a221c1a3e1b1b6c9ba3": { - "address": "0x49c86046903807d0a3193a221c1a3e1b1b6c9ba3", - "symbol": "CYI", - "decimals": 18, - "name": "CYI by Virtuals", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x49c86046903807d0a3193a221c1a3e1b1b6c9ba3.png", - "aggregators": [ - "CoinGecko", - "Rubic", - "Squid", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x11d41056ff636107dd710ec4ea772490a710cdb7": { - "address": "0x11d41056ff636107dd710ec4ea772490a710cdb7", - "symbol": "SPECU", - "decimals": 18, - "name": "Speculation", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x11d41056ff636107dd710ec4ea772490a710cdb7.png", - "aggregators": [ - "CoinGecko", - "Rubic", - "Squid", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x0db510e79909666d6dec7f5e49370838c16d950f": { - "address": "0x0db510e79909666d6dec7f5e49370838c16d950f", - "symbol": "ANON", - "decimals": 18, - "name": "Super Anon", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x0db510e79909666d6dec7f5e49370838c16d950f.png", - "aggregators": [ - "CoinGecko", - "1inch", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x50d7a818e5e339ebe13b17e130b5b608fac354dc": { - "address": "0x50d7a818e5e339ebe13b17e130b5b608fac354dc", - "symbol": "VISION", - "decimals": 18, - "name": "VISION ai by Virtuals", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x50d7a818e5e339ebe13b17e130b5b608fac354dc.png", - "aggregators": [ - "CoinGecko", - "Rubic", - "Squid", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x6379219890843c0b9e3160044de072ced66baab2": { - "address": "0x6379219890843c0b9e3160044de072ced66baab2", - "symbol": "SLAYER", - "decimals": 18, - "name": "ThreatSlayerAI by Virtuals", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x6379219890843c0b9e3160044de072ced66baab2.png", - "aggregators": [ - "CoinGecko", - "Rubic", - "Squid", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x7a5f5ccd46ebd7ac30615836d988ca3bd57412b3": { - "address": "0x7a5f5ccd46ebd7ac30615836d988ca3bd57412b3", - "symbol": "TAOCAT", - "decimals": 18, - "name": "TAOCat by Virtuals", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x7a5f5ccd46ebd7ac30615836d988ca3bd57412b3.png", - "aggregators": [ - "CoinGecko", - "Rubic", - "Squid", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x08c81699f9a357a9f0d04a09b353576ca328d60d": { - "address": "0x08c81699f9a357a9f0d04a09b353576ca328d60d", - "symbol": "NFTXBT", - "decimals": 18, - "name": "nftxbt by Virtuals", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x08c81699f9a357a9f0d04a09b353576ca328d60d.png", - "aggregators": [ - "CoinGecko", - "Rubic", - "Squid", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x64cc19a52f4d631ef5be07947caba14ae00c52eb": { - "address": "0x64cc19a52f4d631ef5be07947caba14ae00c52eb", - "symbol": "KIBBLE", - "decimals": 18, - "name": "Kibble", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x64cc19a52f4d631ef5be07947caba14ae00c52eb.png", - "aggregators": [ - "CoinGecko", - "Rubic", - "Rango", - "Sonarwatch", - "SushiSwap" - ], - "occurrences": 5 - }, - "0x2acd6a246157bf51636d06a83200f8923e7eb864": { - "address": "0x2acd6a246157bf51636d06a83200f8923e7eb864", - "symbol": "NODE", - "decimals": 18, - "name": "noderzz by Virtuals", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x2acd6a246157bf51636d06a83200f8923e7eb864.png", - "aggregators": [ - "CoinGecko", - "Rubic", - "Squid", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x352b850b733ab8bab50aed1dab5d22e3186ce984": { - "address": "0x352b850b733ab8bab50aed1dab5d22e3186ce984", - "symbol": "1000X", - "decimals": 18, - "name": "1000x by Virtuals", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x352b850b733ab8bab50aed1dab5d22e3186ce984.png", - "aggregators": [ - "CoinGecko", - "Rubic", - "Squid", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0xdaf3c78f165d26f821d3d39d6598a96e962b1508": { - "address": "0xdaf3c78f165d26f821d3d39d6598a96e962b1508", - "symbol": "WEBSIM", - "decimals": 18, - "name": "The Css God by Virtuals", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xdaf3c78f165d26f821d3d39d6598a96e962b1508.png", - "aggregators": [ - "CoinGecko", - "Rubic", - "Squid", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0xe2816b27a5613b0aaf5d6dafa80584156e2fb1b6": { - "address": "0xe2816b27a5613b0aaf5d6dafa80584156e2fb1b6", - "symbol": "JAIHOZ", - "decimals": 18, - "name": "Jaihoz by Virtuals", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xe2816b27a5613b0aaf5d6dafa80584156e2fb1b6.png", - "aggregators": [ - "CoinGecko", - "Rubic", - "Squid", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0xf8f259389c1f29769e0388579d458fb799489185": { - "address": "0xf8f259389c1f29769e0388579d458fb799489185", - "symbol": "ASTA", - "decimals": 18, - "name": "Altariste by Virtuals", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xf8f259389c1f29769e0388579d458fb799489185.png", - "aggregators": [ - "CoinGecko", - "Rubic", - "Squid", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x6112b8714221bbd96ae0a0032a683e38b475d06c": { - "address": "0x6112b8714221bbd96ae0a0032a683e38b475d06c", - "symbol": "WAI", - "decimals": 18, - "name": "WAI Combinator by Virtuals", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x6112b8714221bbd96ae0a0032a683e38b475d06c.png", - "aggregators": [ - "CoinGecko", - "Rubic", - "Squid", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x0aa9876c9ccf97be7eed5c4cee91d556bf7dbac3": { - "address": "0x0aa9876c9ccf97be7eed5c4cee91d556bf7dbac3", - "symbol": "REBELZ", - "decimals": 18, - "name": "Rebel by Virtuals", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x0aa9876c9ccf97be7eed5c4cee91d556bf7dbac3.png", - "aggregators": [ - "CoinGecko", - "Rubic", - "Squid", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0xfd1013c72cbb0ffb920d347c5836bf88965d0d5e": { - "address": "0xfd1013c72cbb0ffb920d347c5836bf88965d0d5e", - "symbol": "STIX", - "decimals": 18, - "name": "STIX", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xfd1013c72cbb0ffb920d347c5836bf88965d0d5e.png", - "aggregators": [ - "CoinGecko", - "Rubic", - "Squid", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0xc95e16f99267d6112eadaa46140bea095c8c7ba5": { - "address": "0xc95e16f99267d6112eadaa46140bea095c8c7ba5", - "symbol": "EXMPLR", - "decimals": 18, - "name": "Exmplr.ai by Virtuals", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xc95e16f99267d6112eadaa46140bea095c8c7ba5.png", - "aggregators": [ - "CoinGecko", - "Rubic", - "Squid", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x06abb84958029468574b28b6e7792a770ccaa2f6": { - "address": "0x06abb84958029468574b28b6e7792a770ccaa2f6", - "symbol": "MONK", - "decimals": 18, - "name": "0xMonk by Virtuals", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x06abb84958029468574b28b6e7792a770ccaa2f6.png", - "aggregators": [ - "CoinGecko", - "Rubic", - "Squid", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x27d7959cf26135d8019d0f1e4a2280a8a355c4f5": { - "address": "0x27d7959cf26135d8019d0f1e4a2280a8a355c4f5", - "symbol": "LESTER", - "decimals": 18, - "name": "LESTER by Virtuals", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x27d7959cf26135d8019d0f1e4a2280a8a355c4f5.png", - "aggregators": [ - "CoinGecko", - "Rubic", - "Squid", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0xfa3946432c6a76edff377d9bbfb81ca3ffc05874": { - "address": "0xfa3946432c6a76edff377d9bbfb81ca3ffc05874", - "symbol": "DRPXBT", - "decimals": 18, - "name": "Hunter by Virtuals", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xfa3946432c6a76edff377d9bbfb81ca3ffc05874.png", - "aggregators": [ - "CoinGecko", - "Rubic", - "Squid", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x89cd293538c2390992cdfb3520cfb136748cd9b9": { - "address": "0x89cd293538c2390992cdfb3520cfb136748cd9b9", - "symbol": "BARON", - "decimals": 18, - "name": "Baron Von Whiskers", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x89cd293538c2390992cdfb3520cfb136748cd9b9.png", - "aggregators": [ - "CoinGecko", - "Rubic", - "Squid", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0xebf7d4d84372f5df1b5d0e3ddd889e5bc286b1c3": { - "address": "0xebf7d4d84372f5df1b5d0e3ddd889e5bc286b1c3", - "symbol": "FX", - "decimals": 18, - "name": "Ali for fx protocol by Virtuals", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xebf7d4d84372f5df1b5d0e3ddd889e5bc286b1c3.png", - "aggregators": [ - "CoinGecko", - "Rubic", - "Squid", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x1a3e429d2d22149cc61e0f539b112a227c844aa3": { - "address": "0x1a3e429d2d22149cc61e0f539b112a227c844aa3", - "symbol": "LOKY", - "decimals": 18, - "name": "Loky by Virtuals", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x1a3e429d2d22149cc61e0f539b112a227c844aa3.png", - "aggregators": [ - "CoinGecko", - "Rubic", - "Squid", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x5d9c2457a10d455e0ad8e28e40cc28eacf27a06a": { - "address": "0x5d9c2457a10d455e0ad8e28e40cc28eacf27a06a", - "symbol": "GM", - "decimals": 18, - "name": "GM Everyday", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x5d9c2457a10d455e0ad8e28e40cc28eacf27a06a.png", - "aggregators": [ - "CoinGecko", - "Rubic", - "Squid", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x39fed555ff57cb1154bfa6b1a2492bb914ce2d9b": { - "address": "0x39fed555ff57cb1154bfa6b1a2492bb914ce2d9b", - "symbol": "ECHO", - "decimals": 18, - "name": "EchoLeaks by Virtuals", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x39fed555ff57cb1154bfa6b1a2492bb914ce2d9b.png", - "aggregators": [ - "CoinGecko", - "Rubic", - "Squid", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x9c94e82d8751f16953f9c86e13ed9cd0414e6e97": { - "address": "0x9c94e82d8751f16953f9c86e13ed9cd0414e6e97", - "symbol": "VOLS", - "decimals": 18, - "name": "Volaris Games", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x9c94e82d8751f16953f9c86e13ed9cd0414e6e97.png", - "aggregators": [ - "CoinGecko", - "Rubic", - "Squid", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x29e39327b5b1e500b87fc0fcae3856cd8f96ed2a": { - "address": "0x29e39327b5b1e500b87fc0fcae3856cd8f96ed2a", - "symbol": "PAWSY", - "decimals": 18, - "name": "Bark Ruffalo by Virtuals", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x29e39327b5b1e500b87fc0fcae3856cd8f96ed2a.png", - "aggregators": [ - "CoinGecko", - "Rubic", - "Squid", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0xcc0adb6c436eb1f65b2f27733bf926691b94c5f1": { - "address": "0xcc0adb6c436eb1f65b2f27733bf926691b94c5f1", - "symbol": "GUAN", - "decimals": 18, - "name": "Guanciale", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xcc0adb6c436eb1f65b2f27733bf926691b94c5f1.png", - "aggregators": [ - "CoinGecko", - "Rubic", - "Squid", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0xd9ea811a51d6fe491d27c2a0442b3f577852874d": { - "address": "0xd9ea811a51d6fe491d27c2a0442b3f577852874d", - "symbol": "BOB", - "decimals": 18, - "name": "Breakout Bro by Virtuals", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xd9ea811a51d6fe491d27c2a0442b3f577852874d.png", - "aggregators": [ - "CoinGecko", - "Rubic", - "Squid", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x43c451d8102337ccf399b0f6ebf63837075d9689": { - "address": "0x43c451d8102337ccf399b0f6ebf63837075d9689", - "symbol": "VERTEX", - "decimals": 18, - "name": "AI VERTEX by Virtuals", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x43c451d8102337ccf399b0f6ebf63837075d9689.png", - "aggregators": [ - "CoinGecko", - "Rubic", - "Squid", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0xba1cc6e3f1c5f937497e4e196196e7535e6a8e63": { - "address": "0xba1cc6e3f1c5f937497e4e196196e7535e6a8e63", - "symbol": "YMACH", - "decimals": 18, - "name": "YieldMachine by Virtuals", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xba1cc6e3f1c5f937497e4e196196e7535e6a8e63.png", - "aggregators": [ - "CoinGecko", - "Rubic", - "Squid", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x7fcd174e80f264448ebee8c88a7c4476aaf58ea6": { - "address": "0x7fcd174e80f264448ebee8c88a7c4476aaf58ea6", - "symbol": "WSUPEROETHB", - "decimals": 18, - "name": "Wrapped Super OETH", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x7fcd174e80f264448ebee8c88a7c4476aaf58ea6.png", - "aggregators": [ - "CoinGecko", - "LiFi", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x1aca6687a9665fb84deb7e3801e8e7ecba6ec6de": { - "address": "0x1aca6687a9665fb84deb7e3801e8e7ecba6ec6de", - "symbol": "RAIN", - "decimals": 18, - "name": "Rain by Virtuals", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x1aca6687a9665fb84deb7e3801e8e7ecba6ec6de.png", - "aggregators": [ - "CoinGecko", - "Rubic", - "Squid", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x0671799f205b8880d270fc6bec77942636dd8c03": { - "address": "0x0671799f205b8880d270fc6bec77942636dd8c03", - "symbol": "SENKU", - "decimals": 18, - "name": "Senku Ishigami by Virtuals", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x0671799f205b8880d270fc6bec77942636dd8c03.png", - "aggregators": [ - "CoinGecko", - "Rubic", - "Squid", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x0028e1e60167b48a938b785aa5292917e7eaca8b": { - "address": "0x0028e1e60167b48a938b785aa5292917e7eaca8b", - "symbol": "COINYE", - "decimals": 18, - "name": "Coinye West", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x0028e1e60167b48a938b785aa5292917e7eaca8b.png", - "aggregators": [ - "CoinGecko", - "Rubic", - "Squid", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x2efb2110f352fc98cd39dc041887c41766dbb301": { - "address": "0x2efb2110f352fc98cd39dc041887c41766dbb301", - "symbol": "CROW", - "decimals": 18, - "name": "cr0w by Virtuals", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x2efb2110f352fc98cd39dc041887c41766dbb301.png", - "aggregators": [ - "CoinGecko", - "Rubic", - "Squid", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x81cb4fdd3edc6f5470b636d7e5914c3173110ca5": { - "address": "0x81cb4fdd3edc6f5470b636d7e5914c3173110ca5", - "symbol": "CORA", - "decimals": 18, - "name": "Cora", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x81cb4fdd3edc6f5470b636d7e5914c3173110ca5.png", - "aggregators": [ - "CoinGecko", - "Rubic", - "Squid", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0xc2bc7a73613b9bd5f373fe10b55c59a69f4d617b": { - "address": "0xc2bc7a73613b9bd5f373fe10b55c59a69f4d617b", - "symbol": "DACKIE", - "decimals": 18, - "name": "DackieSwap", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xc2bc7a73613b9bd5f373fe10b55c59a69f4d617b.png", - "aggregators": [ - "CoinGecko", - "Rubic", - "Squid", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x79dacb99a8698052a9898e81fdf883c29efb93cb": { - "address": "0x79dacb99a8698052a9898e81fdf883c29efb93cb", - "symbol": "ACOLYT", - "decimals": 18, - "name": "Acolyt", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x79dacb99a8698052a9898e81fdf883c29efb93cb.png", - "aggregators": [ - "CoinGecko", - "Rubic", - "Squid", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0xc841b4ead3f70be99472ffdb88e5c3c7af6a481a": { - "address": "0xc841b4ead3f70be99472ffdb88e5c3c7af6a481a", - "symbol": "TRUST", - "decimals": 18, - "name": "$TRUST ME BROs by Virtuals", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xc841b4ead3f70be99472ffdb88e5c3c7af6a481a.png", - "aggregators": [ - "CoinGecko", - "Rubic", - "Squid", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x436b0fe70c84402a531fd0989ceecf5caa80244c": { - "address": "0x436b0fe70c84402a531fd0989ceecf5caa80244c", - "symbol": "VCTRAI", - "decimals": 18, - "name": "Victorai by Virtuals", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x436b0fe70c84402a531fd0989ceecf5caa80244c.png", - "aggregators": [ - "CoinGecko", - "Rubic", - "Squid", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x5537a24ad7e8d68aec165dcff6d2f8c23605417f": { - "address": "0x5537a24ad7e8d68aec165dcff6d2f8c23605417f", - "symbol": "EYE", - "decimals": 18, - "name": "Eye Future by Virtuals", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x5537a24ad7e8d68aec165dcff6d2f8c23605417f.png", - "aggregators": [ - "CoinGecko", - "Rubic", - "Squid", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0xdd78523217390bb0d49c7601e7e54c36d71622f0": { - "address": "0xdd78523217390bb0d49c7601e7e54c36d71622f0", - "symbol": "EVAL", - "decimals": 18, - "name": "Chromia's EVAL by Virtuals", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xdd78523217390bb0d49c7601e7e54c36d71622f0.png", - "aggregators": [ - "CoinGecko", - "Rubic", - "Squid", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x0bd4887f7d41b35cd75dff9ffee2856106f86670": { - "address": "0x0bd4887f7d41b35cd75dff9ffee2856106f86670", - "symbol": "FRIEND", - "decimals": 18, - "name": "Friend.tech", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x0bd4887f7d41b35cd75dff9ffee2856106f86670.png", - "aggregators": [ - "CoinGecko", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x1bc71130a0e39942a7658878169764bbd8a45993": { - "address": "0x1bc71130a0e39942a7658878169764bbd8a45993", - "symbol": "RSETH", - "decimals": 18, - "name": "KelpDAO Bridged rsETH (Base)", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x1bc71130a0e39942a7658878169764bbd8a45993.png", - "aggregators": [ - "CoinGecko", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0xb755506531786c8ac63b756bab1ac387bacb0c04": { - "address": "0xb755506531786c8ac63b756bab1ac387bacb0c04", - "symbol": "ZARP", - "decimals": 18, - "name": "ZARP Stablecoin", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xb755506531786c8ac63b756bab1ac387bacb0c04.png", - "aggregators": [ - "CoinGecko", - "Rubic", - "Squid", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0xb1e1f3cc2b6fe4420c1ac82022b457018eb628ff": { - "address": "0xb1e1f3cc2b6fe4420c1ac82022b457018eb628ff", - "symbol": "CXT", - "decimals": 18, - "name": "Covalent X Token", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xb1e1f3cc2b6fe4420c1ac82022b457018eb628ff.png", - "aggregators": ["CoinGecko", "LiFi", "Socket", "Rubic", "Rango"], - "occurrences": 5 - }, - "0xcf67815cce72e682eb4429eca46843bed81ca739": { - "address": "0xcf67815cce72e682eb4429eca46843bed81ca739", - "symbol": "G3", - "decimals": 18, - "name": "GAM3S.GG", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xcf67815cce72e682eb4429eca46843bed81ca739.png", - "aggregators": [ - "CoinGecko", - "Rubic", - "Squid", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x8fbd0648971d56f1f2c35fa075ff5bc75fb0e39d": { - "address": "0x8fbd0648971d56f1f2c35fa075ff5bc75fb0e39d", - "symbol": "MBS", - "decimals": 18, - "name": "MBS", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x8fbd0648971d56f1f2c35fa075ff5bc75fb0e39d.png", - "aggregators": [ - "CoinGecko", - "Rubic", - "Rango", - "Sonarwatch", - "SushiSwap" - ], - "occurrences": 5 - }, - "0x13741c5df9ab03e7aa9fb3bf1f714551dd5a5f8a": { - "address": "0x13741c5df9ab03e7aa9fb3bf1f714551dd5a5f8a", - "symbol": "NOGS", - "decimals": 18, - "name": "Noggles", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x13741c5df9ab03e7aa9fb3bf1f714551dd5a5f8a.png", - "aggregators": [ - "CoinGecko", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x65a2508c429a6078a7bc2f7df81ab575bd9d9275": { - "address": "0x65a2508c429a6078a7bc2f7df81ab575bd9d9275", - "symbol": "DAI+", - "decimals": 18, - "name": "Overnight.fi DAI+", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x65a2508c429a6078a7bc2f7df81ab575bd9d9275.png", - "aggregators": ["LiFi", "Rubic", "Squid", "Rango", "Sonarwatch"], - "occurrences": 5 - }, - "0x51707dc661630f8fd624b985fa6ef4f1d4d919db": { - "address": "0x51707dc661630f8fd624b985fa6ef4f1d4d919db", - "symbol": "UNV", - "decimals": 18, - "name": "Unvest", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x51707dc661630f8fd624b985fa6ef4f1d4d919db.png", - "aggregators": ["LiFi", "Rubic", "Squid", "Rango", "Sonarwatch"], - "occurrences": 5 - }, - "0x22a2488fe295047ba13bd8cccdbc8361dbd8cf7c": { - "address": "0x22a2488fe295047ba13bd8cccdbc8361dbd8cf7c", - "symbol": "SONNE", - "decimals": 18, - "name": "Sonne Finance", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x22a2488fe295047ba13bd8cccdbc8361dbd8cf7c.png", - "aggregators": ["LiFi", "Rubic", "Squid", "Rango", "Sonarwatch"], - "occurrences": 5 - }, - "0x5a76a56ad937335168b30df3aa1327277421c6ae": { - "address": "0x5a76a56ad937335168b30df3aa1327277421c6ae", - "symbol": "VELA", - "decimals": 18, - "name": "Vela Token", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x5a76a56ad937335168b30df3aa1327277421c6ae.png", - "aggregators": [ - "Rubic", - "Squid", - "Rango", - "Sonarwatch", - "SushiSwap" - ], - "occurrences": 5 - }, - "0xd993935e13851dd7517af10687ec7e5022127228": { - "address": "0xd993935e13851dd7517af10687ec7e5022127228", - "symbol": "APXUSD", - "decimals": 18, - "name": "apxUSD", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xd993935e13851dd7517af10687ec7e5022127228.png", - "aggregators": ["CoinGecko", "LiFi", "Rubic", "Rango"], - "occurrences": 4 - }, - "0x1c9fa01e87487712706fb469a13beb234262c867": { - "address": "0x1c9fa01e87487712706fb469a13beb234262c867", - "symbol": "ARPA", - "decimals": 18, - "name": "ARPA Chain", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x1c9fa01e87487712706fb469a13beb234262c867.png", - "aggregators": ["UniswapLabs", "LiFi", "Socket", "Rango"], - "occurrences": 4 - }, - "0x1b4617734c43f6159f3a70b7e06d883647512778": { - "address": "0x1b4617734c43f6159f3a70b7e06d883647512778", - "symbol": "AWE", - "decimals": 18, - "name": "AWE Network", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x1b4617734c43f6159f3a70b7e06d883647512778.png", - "aggregators": ["CoinGecko", "LiFi", "Rubic", "Rango"], - "occurrences": 4 - }, - "0xf5dbaa3dfc5e81405c7306039fb037a3dcd57ce2": { - "address": "0xf5dbaa3dfc5e81405c7306039fb037a3dcd57ce2", - "symbol": "BICO", - "decimals": 18, - "name": "Biconomy", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xf5dbaa3dfc5e81405c7306039fb037a3dcd57ce2.png", - "aggregators": ["UniswapLabs", "LiFi", "Socket", "Rango"], - "occurrences": 4 - }, - "0x29cc30f9d113b356ce408667aa6433589cecbdca": { - "address": "0x29cc30f9d113b356ce408667aa6433589cecbdca", - "symbol": "ELSA", - "decimals": 18, - "name": "Elsa", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x29cc30f9d113b356ce408667aa6433589cecbdca.png", - "aggregators": ["CoinGecko", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x0f4d237b09cb37d207ba60353dc254d4530d4df1": { - "address": "0x0f4d237b09cb37d207ba60353dc254d4530d4df1", - "symbol": "GRT", - "decimals": 18, - "name": "Graph Token", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x0f4d237b09cb37d207ba60353dc254d4530d4df1.png", - "aggregators": ["UniswapLabs", "LiFi", "Socket", "Rango"], - "occurrences": 4 - }, - "0xd7468c14ae76c3fc308aeadc223d5d1f71d3c171": { - "address": "0xd7468c14ae76c3fc308aeadc223d5d1f71d3c171", - "symbol": "LCX", - "decimals": 18, - "name": "LCX", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xd7468c14ae76c3fc308aeadc223d5d1f71d3c171.png", - "aggregators": ["UniswapLabs", "LiFi", "Socket", "Rango"], - "occurrences": 4 - }, - "0x7300b37dfdfab110d83290a29dfb31b1740219fe": { - "address": "0x7300b37dfdfab110d83290a29dfb31b1740219fe", - "symbol": "MAMO", - "decimals": 18, - "name": "Mamo", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x7300b37dfdfab110d83290a29dfb31b1740219fe.png", - "aggregators": ["CoinGecko", "LiFi", "Rubic", "Squid"], - "occurrences": 4 - }, - "0x9cb41fd9dc6891bae8187029461bfaadf6cc0c69": { - "address": "0x9cb41fd9dc6891bae8187029461bfaadf6cc0c69", - "symbol": "NOICE", - "decimals": 18, - "name": "noice", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x9cb41fd9dc6891bae8187029461bfaadf6cc0c69.png", - "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0x8b7dde054be9d180c1be7fae0874697374a49832": { - "address": "0x8b7dde054be9d180c1be7fae0874697374a49832", - "symbol": "PROS", - "decimals": 18, - "name": "Wrapped PROS", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x8b7dde054be9d180c1be7fae0874697374a49832.png", - "aggregators": ["CoinGecko", "LiFi", "Rubic", "Rango"], - "occurrences": 4 - }, - "0xff8104251e7761163fac3211ef5583fb3f8583d6": { - "address": "0xff8104251e7761163fac3211ef5583fb3f8583d6", - "symbol": "REPPO", - "decimals": 18, - "name": "REPPO", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xff8104251e7761163fac3211ef5583fb3f8583d6.png", - "aggregators": ["CoinGecko", "Rubic", "Squid", "Rango"], - "occurrences": 4 - }, - "0xfdca15bd55f350a36e63c47661914d80411d2c22": { - "address": "0xfdca15bd55f350a36e63c47661914d80411d2c22", - "symbol": "UTAO", - "decimals": 18, - "name": "Wrapped Bittensor (Universal)", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xfdca15bd55f350a36e63c47661914d80411d2c22.png", - "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0xef4461891dfb3ac8572ccf7c794664a8dd927945": { - "address": "0xef4461891dfb3ac8572ccf7c794664a8dd927945", - "symbol": "WCT", - "decimals": 18, - "name": "WalletConnect Token", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xef4461891dfb3ac8572ccf7c794664a8dd927945.png", - "aggregators": ["Metamask", "LiFi", "Rubic", "Rango"], - "occurrences": 4 - }, - "0xa001dcc9a7974dae133a11d2800a7abf7b8f5f3c": { - "address": "0xa001dcc9a7974dae133a11d2800a7abf7b8f5f3c", - "symbol": "DYOR", - "decimals": 18, - "name": "Do Your Own Research", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xa001dcc9a7974dae133a11d2800a7abf7b8f5f3c.png", - "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0x8e665c3a3622d7c1bef8ed8ffd7317d3f6318e31": { - "address": "0x8e665c3a3622d7c1bef8ed8ffd7317d3f6318e31", - "symbol": "OOPZ", - "decimals": 18, - "name": "Oracle of Preferences ZK by Virtuals", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x8e665c3a3622d7c1bef8ed8ffd7317d3f6318e31.png", - "aggregators": ["CoinGecko", "Rubic", "Squid", "Rango"], - "occurrences": 4 - }, - "0xccdf2cbabfa37878125ab2d20bfcb9328b7ab3cf": { - "address": "0xccdf2cbabfa37878125ab2d20bfcb9328b7ab3cf", - "symbol": "$HOUND", - "decimals": 18, - "name": "BaseHoundBot by Virtuals", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xccdf2cbabfa37878125ab2d20bfcb9328b7ab3cf.png", - "aggregators": ["CoinGecko", "Rubic", "Squid", "Rango"], - "occurrences": 4 - }, - "0x22c0a2e55aed8b317a285ccbd4f3d8ee24c9e5e3": { - "address": "0x22c0a2e55aed8b317a285ccbd4f3d8ee24c9e5e3", - "symbol": "FYNI", - "decimals": 18, - "name": "Fyni AI by Virtuals", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x22c0a2e55aed8b317a285ccbd4f3d8ee24c9e5e3.png", - "aggregators": ["CoinGecko", "Rubic", "Squid", "Rango"], - "occurrences": 4 - }, - "0x0c63a8c18deca4f0687616e1774918546727833f": { - "address": "0x0c63a8c18deca4f0687616e1774918546727833f", - "symbol": "SOVRA", - "decimals": 18, - "name": "Sovra AI by Virtuals", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x0c63a8c18deca4f0687616e1774918546727833f.png", - "aggregators": ["CoinGecko", "Rubic", "Squid", "Rango"], - "occurrences": 4 - }, - "0xf7178122a087ef8f5c7bea362b7dabe38f20bf05": { - "address": "0xf7178122a087ef8f5c7bea362b7dabe38f20bf05", - "symbol": "OMNI", - "decimals": 18, - "name": "Omni Exchange Token", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xf7178122a087ef8f5c7bea362b7dabe38f20bf05.png", - "aggregators": ["CoinGecko", "LiFi", "Rubic", "Rango"], - "occurrences": 4 - }, - "0x1903160806e9ec3c77e31c6821ff8592dee9963c": { - "address": "0x1903160806e9ec3c77e31c6821ff8592dee9963c", - "symbol": "CHARLES", - "decimals": 18, - "name": "Charles AI by Virtuals", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x1903160806e9ec3c77e31c6821ff8592dee9963c.png", - "aggregators": ["CoinGecko", "Rubic", "Squid", "Rango"], - "occurrences": 4 - }, - "0xab6363da0c80cef3ae105bd6241e30872355d021": { - "address": "0xab6363da0c80cef3ae105bd6241e30872355d021", - "symbol": "ROLL", - "decimals": 18, - "name": "ROLL", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xab6363da0c80cef3ae105bd6241e30872355d021.png", - "aggregators": ["CoinGecko", "LiFi", "Rubic", "Rango"], - "occurrences": 4 - }, - "0x381896019bb6f85747e114568488bb1c42ad4d8a": { - "address": "0x381896019bb6f85747e114568488bb1c42ad4d8a", - "symbol": "BUMSHAFT", - "decimals": 18, - "name": "Bumshaft", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x381896019bb6f85747e114568488bb1c42ad4d8a.png", - "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0x1035ae3f87a91084c6c5084d0615cc6121c5e228": { - "address": "0x1035ae3f87a91084c6c5084d0615cc6121c5e228", - "symbol": "FWOG", - "decimals": 18, - "name": "Based Fwog", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x1035ae3f87a91084c6c5084d0615cc6121c5e228.png", - "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0xca57b8d3edd0bedc6c1087bd35d782c3518b2a52": { - "address": "0xca57b8d3edd0bedc6c1087bd35d782c3518b2a52", - "symbol": "LOT", - "decimals": 9, - "name": "Lottery Token", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xca57b8d3edd0bedc6c1087bd35d782c3518b2a52.png", - "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0xb2ee01f57aebd6e268934ed9dc47b01be760867d": { - "address": "0xb2ee01f57aebd6e268934ed9dc47b01be760867d", - "symbol": "AGORA", - "decimals": 18, - "name": "Agora by Virtuals", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xb2ee01f57aebd6e268934ed9dc47b01be760867d.png", - "aggregators": ["CoinGecko", "Rubic", "Squid", "Rango"], - "occurrences": 4 - }, - "0x38b88d6568d61556d33592ad7bc24e89a7fb6691": { - "address": "0x38b88d6568d61556d33592ad7bc24e89a7fb6691", - "symbol": "OPSYS", - "decimals": 18, - "name": "Operating System", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x38b88d6568d61556d33592ad7bc24e89a7fb6691.png", - "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0x4f81837c2f4a189a0b69370027cc2627d93785b4": { - "address": "0x4f81837c2f4a189a0b69370027cc2627d93785b4", - "symbol": "SERAPH", - "decimals": 18, - "name": "Seraph by Virtuals", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x4f81837c2f4a189a0b69370027cc2627d93785b4.png", - "aggregators": ["CoinGecko", "Rubic", "Squid", "Rango"], - "occurrences": 4 - }, - "0x3c8cd0db9a01efa063a7760267b822a129bc7dca": { - "address": "0x3c8cd0db9a01efa063a7760267b822a129bc7dca", - "symbol": "FROC", - "decimals": 18, - "name": "Based Froc", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x3c8cd0db9a01efa063a7760267b822a129bc7dca.png", - "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0x05b1266ddcee093ce060dbf697e230ea9b453633": { - "address": "0x05b1266ddcee093ce060dbf697e230ea9b453633", - "symbol": "REPLY", - "decimals": 18, - "name": "ReplyCorp", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x05b1266ddcee093ce060dbf697e230ea9b453633.png", - "aggregators": ["CoinGecko", "Rubic", "Squid", "Rango"], - "occurrences": 4 - }, - "0x3b92844c5abd9f0562c71ebf219628f1676a856d": { - "address": "0x3b92844c5abd9f0562c71ebf219628f1676a856d", - "symbol": "STAR", - "decimals": 18, - "name": "Starly the $STAR™ Guide", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x3b92844c5abd9f0562c71ebf219628f1676a856d.png", - "aggregators": ["CoinGecko", "Rubic", "Squid", "Rango"], - "occurrences": 4 - }, - "0x14b2f229097df3c92b43ea871860e3fae08d7f06": { - "address": "0x14b2f229097df3c92b43ea871860e3fae08d7f06", - "symbol": "BANKS", - "decimals": 18, - "name": "Rob Banks", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x14b2f229097df3c92b43ea871860e3fae08d7f06.png", - "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0xd262a4c7108c8139b2b189758e8d17c3dfc91a38": { - "address": "0xd262a4c7108c8139b2b189758e8d17c3dfc91a38", - "symbol": "CYPR", - "decimals": 18, - "name": "Cypher", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xd262a4c7108c8139b2b189758e8d17c3dfc91a38.png", - "aggregators": ["CoinGecko", "LiFi", "Rubic", "Rango"], - "occurrences": 4 - }, - "0xedc68c4c54228d273ed50fc450e253f685a2c6b9": { - "address": "0xedc68c4c54228d273ed50fc450e253f685a2c6b9", - "symbol": "JAV", - "decimals": 18, - "name": "Javsphere", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xedc68c4c54228d273ed50fc450e253f685a2c6b9.png", - "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0x50c749ae210d3977adc824ae11f3c7fd10c871e9": { - "address": "0x50c749ae210d3977adc824ae11f3c7fd10c871e9", - "symbol": "YOEUR", - "decimals": 6, - "name": "YOEUR", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x50c749ae210d3977adc824ae11f3c7fd10c871e9.png", - "aggregators": ["CoinGecko", "LiFi", "Rubic", "Rango"], - "occurrences": 4 - }, - "0x5b8a884496792f754db6f92f6eacceb376ed8e40": { - "address": "0x5b8a884496792f754db6f92f6eacceb376ed8e40", - "symbol": "OP", - "decimals": 18, - "name": "One Path", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x5b8a884496792f754db6f92f6eacceb376ed8e40.png", - "aggregators": ["CoinGecko", "Rubic", "Squid", "Rango"], - "occurrences": 4 - }, - "0x6d5d854063114c18dadc54fe052d75c1c4f34b46": { - "address": "0x6d5d854063114c18dadc54fe052d75c1c4f34b46", - "symbol": "NEMESIS", - "decimals": 18, - "name": "Nemesis AI Trader by Virtuals", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x6d5d854063114c18dadc54fe052d75c1c4f34b46.png", - "aggregators": ["CoinGecko", "Rubic", "Squid", "Rango"], - "occurrences": 4 - }, - "0x931ef8053e997b1bab68d1e900a061305c0ff4fb": { - "address": "0x931ef8053e997b1bab68d1e900a061305c0ff4fb", - "symbol": "DOBI", - "decimals": 18, - "name": "Dobi by Virtuals", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x931ef8053e997b1bab68d1e900a061305c0ff4fb.png", - "aggregators": ["CoinGecko", "Rubic", "Squid", "Rango"], - "occurrences": 4 - }, - "0xe10c9e9d5d8005cde4fcc5e635614665de736148": { - "address": "0xe10c9e9d5d8005cde4fcc5e635614665de736148", - "symbol": "FUKU", - "decimals": 18, - "name": "Fuku", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xe10c9e9d5d8005cde4fcc5e635614665de736148.png", - "aggregators": ["CoinGecko", "Rubic", "Squid", "Rango"], - "occurrences": 4 - }, - "0xb0ca83c9524a642cc1ab6e62c6006c47ba74d68a": { - "address": "0xb0ca83c9524a642cc1ab6e62c6006c47ba74d68a", - "symbol": "PLOI", - "decimals": 18, - "name": "PLOI", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xb0ca83c9524a642cc1ab6e62c6006c47ba74d68a.png", - "aggregators": ["CoinGecko", "Rubic", "Squid", "Rango"], - "occurrences": 4 - }, - "0x8cbc577247938a6a4e0891861e81f7c81f6b9490": { - "address": "0x8cbc577247938a6a4e0891861e81f7c81f6b9490", - "symbol": "HEXAR", - "decimals": 18, - "name": "HEXAR AI", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x8cbc577247938a6a4e0891861e81f7c81f6b9490.png", - "aggregators": ["CoinGecko", "Rubic", "Squid", "Rango"], - "occurrences": 4 - }, - "0x1ba597770e98c4f630ddbdc8b9e1a5cb1b4ca047": { - "address": "0x1ba597770e98c4f630ddbdc8b9e1a5cb1b4ca047", - "symbol": "MEL", - "decimals": 18, - "name": "Melvin", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x1ba597770e98c4f630ddbdc8b9e1a5cb1b4ca047.png", - "aggregators": ["CoinGecko", "Rubic", "Squid", "Rango"], - "occurrences": 4 - }, - "0xb887cac66cf5eaaa0bf0cdb5d76905e19bc391a5": { - "address": "0xb887cac66cf5eaaa0bf0cdb5d76905e19bc391a5", - "symbol": "SHARP", - "decimals": 18, - "name": "Sharp AI", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xb887cac66cf5eaaa0bf0cdb5d76905e19bc391a5.png", - "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0x1c61629598e4a901136a81bc138e5828dc150d67": { - "address": "0x1c61629598e4a901136a81bc138e5828dc150d67", - "symbol": "WSOL", - "decimals": 9, - "name": "Wormhole Bridged Wrapped SOL (Base)", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x1c61629598e4a901136a81bc138e5828dc150d67.png", - "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0x885129e35d247b01c4485ef6b48564d0ebc8c362": { - "address": "0x885129e35d247b01c4485ef6b48564d0ebc8c362", - "symbol": "BRETT2.0", - "decimals": 18, - "name": "Brett 2.0", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x885129e35d247b01c4485ef6b48564d0ebc8c362.png", - "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0x36692131ccc0a478e26b3a1ada6447d95f79df21": { - "address": "0x36692131ccc0a478e26b3a1ada6447d95f79df21", - "symbol": "BABYPEPE", - "decimals": 18, - "name": "Baby Pepe", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x36692131ccc0a478e26b3a1ada6447d95f79df21.png", - "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0xe6ab1cc1307b496748753e017f3dbb4d4378ca3f": { - "address": "0xe6ab1cc1307b496748753e017f3dbb4d4378ca3f", - "symbol": "MANEKI", - "decimals": 18, - "name": "Maneki AI by Virtuals", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xe6ab1cc1307b496748753e017f3dbb4d4378ca3f.png", - "aggregators": ["CoinGecko", "Rubic", "Squid", "Rango"], - "occurrences": 4 - }, - "0xcfc8e8a4d2246dec68115ae24abbca0d2b1e6bf2": { - "address": "0xcfc8e8a4d2246dec68115ae24abbca0d2b1e6bf2", - "symbol": "BILLY", - "decimals": 18, - "name": "Billy Bets by Virtuals", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xcfc8e8a4d2246dec68115ae24abbca0d2b1e6bf2.png", - "aggregators": ["CoinGecko", "Rubic", "Squid", "Rango"], - "occurrences": 4 - }, - "0xe095b8127823708dc07e739ef4149050acc836e7": { - "address": "0xe095b8127823708dc07e739ef4149050acc836e7", - "symbol": "ATM", - "decimals": 18, - "name": "A.T.M.", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xe095b8127823708dc07e739ef4149050acc836e7.png", - "aggregators": ["CoinGecko", "Rubic", "Squid", "Rango"], - "occurrences": 4 - }, - "0x81496f85abaf8bd2e13d90379fde86c533d8670d": { - "address": "0x81496f85abaf8bd2e13d90379fde86c533d8670d", - "symbol": "AGIXBT", - "decimals": 18, - "name": "AGIXBT by Virtuals", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x81496f85abaf8bd2e13d90379fde86c533d8670d.png", - "aggregators": ["CoinGecko", "Rubic", "Squid", "Rango"], - "occurrences": 4 - }, - "0xb3836098d1e94ec651d74d053d4a0813316b2a2f": { - "address": "0xb3836098d1e94ec651d74d053d4a0813316b2a2f", - "symbol": "RUBI", - "decimals": 18, - "name": "Rubicon Token", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xb3836098d1e94ec651d74d053d4a0813316b2a2f.png", - "aggregators": ["CoinGecko", "LiFi", "Rubic", "Rango"], - "occurrences": 4 - }, - "0x7475fa4c36344f1d633964f02564f37162299194": { - "address": "0x7475fa4c36344f1d633964f02564f37162299194", - "symbol": "SHIBUSSY", - "decimals": 18, - "name": "Shibussy", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x7475fa4c36344f1d633964f02564f37162299194.png", - "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0x33ac788bc9ccb27e9ec558fb2bde79950a6b9d5b": { - "address": "0x33ac788bc9ccb27e9ec558fb2bde79950a6b9d5b", - "symbol": "GLANKER", - "decimals": 18, - "name": "glonkybot", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x33ac788bc9ccb27e9ec558fb2bde79950a6b9d5b.png", - "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0xf25b7dd973e30dcf219fbed7bd336b9ab5a05dd9": { - "address": "0xf25b7dd973e30dcf219fbed7bd336b9ab5a05dd9", - "symbol": "BRAINS", - "decimals": 18, - "name": "$BRAINS - your greed is my fuel 🤯🧠 by Virtuals", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xf25b7dd973e30dcf219fbed7bd336b9ab5a05dd9.png", - "aggregators": ["CoinGecko", "Rubic", "Squid", "Rango"], - "occurrences": 4 - }, - "0x853a7c99227499dba9db8c3a02aa691afdebf841": { - "address": "0x853a7c99227499dba9db8c3a02aa691afdebf841", - "symbol": "PLAY", - "decimals": 18, - "name": "Play", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x853a7c99227499dba9db8c3a02aa691afdebf841.png", - "aggregators": ["CoinGecko", "LiFi", "Rubic", "Rango"], - "occurrences": 4 - }, - "0xc4047680d153fa3b741b016e871dfca723f1deea": { - "address": "0xc4047680d153fa3b741b016e871dfca723f1deea", - "symbol": "X40G", - "decimals": 18, - "name": "X40G", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xc4047680d153fa3b741b016e871dfca723f1deea.png", - "aggregators": ["CoinGecko", "Rubic", "Squid", "Rango"], - "occurrences": 4 - }, - "0x9704d2adbc02c085ff526a37ac64872027ac8a50": { - "address": "0x9704d2adbc02c085ff526a37ac64872027ac8a50", - "symbol": "BSOP", - "decimals": 18, - "name": "Bsop", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x9704d2adbc02c085ff526a37ac64872027ac8a50.png", - "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0xca416d6d3c2b3a8a2c48419b53dd611420ffa776": { - "address": "0xca416d6d3c2b3a8a2c48419b53dd611420ffa776", - "symbol": "KAZONOMICS", - "decimals": 18, - "name": "kazonomics", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xca416d6d3c2b3a8a2c48419b53dd611420ffa776.png", - "aggregators": ["CoinGecko", "LiFi", "Rubic", "Rango"], - "occurrences": 4 - }, - "0xcb119fe73cd3b4eb6bbf4c5ad0d6c788e3f80d54": { - "address": "0xcb119fe73cd3b4eb6bbf4c5ad0d6c788e3f80d54", - "symbol": "ELYTRA", - "decimals": 18, - "name": "ELYTRA by Virtuals", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xcb119fe73cd3b4eb6bbf4c5ad0d6c788e3f80d54.png", - "aggregators": ["CoinGecko", "Rubic", "Squid", "Rango"], - "occurrences": 4 - }, - "0x6f0b30c20a7f97d9a048b2e53ef6bdf511b59d3d": { - "address": "0x6f0b30c20a7f97d9a048b2e53ef6bdf511b59d3d", - "symbol": "AGENTIK", - "decimals": 18, - "name": "Agentik DEX by Virtuals", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x6f0b30c20a7f97d9a048b2e53ef6bdf511b59d3d.png", - "aggregators": ["CoinGecko", "Rubic", "Squid", "Rango"], - "occurrences": 4 - }, - "0xc799ada44171b741abf41ee54fb1b47fda5960be": { - "address": "0xc799ada44171b741abf41ee54fb1b47fda5960be", - "symbol": "XOXO", - "decimals": 6, - "name": "XO Protocol", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xc799ada44171b741abf41ee54fb1b47fda5960be.png", - "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0x504a26cf29674bc77a9341e73f88ccecc864034c": { - "address": "0x504a26cf29674bc77a9341e73f88ccecc864034c", - "symbol": "SYMP", - "decimals": 18, - "name": "Sympson by Virtuals", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x504a26cf29674bc77a9341e73f88ccecc864034c.png", - "aggregators": ["CoinGecko", "Rubic", "Squid", "Rango"], - "occurrences": 4 - }, - "0xc1b641e72327208f0fe37405a9d46439b626af6a": { - "address": "0xc1b641e72327208f0fe37405a9d46439b626af6a", - "symbol": "WAYE", - "decimals": 18, - "name": "WAYE.ai", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xc1b641e72327208f0fe37405a9d46439b626af6a.png", - "aggregators": ["CoinGecko", "Rubic", "Squid", "Rango"], - "occurrences": 4 - }, - "0x34c4a0056fad621c723433a473140aadc8998a8b": { - "address": "0x34c4a0056fad621c723433a473140aadc8998a8b", - "symbol": "FLYTE", - "decimals": 18, - "name": "Flyte AI by Virtuals", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x34c4a0056fad621c723433a473140aadc8998a8b.png", - "aggregators": ["CoinGecko", "Rubic", "Squid", "Rango"], - "occurrences": 4 - }, - "0x2133031f5acbc493572c02f271186f241cd8d6a5": { - "address": "0x2133031f5acbc493572c02f271186f241cd8d6a5", - "symbol": "$MRKT", - "decimals": 18, - "name": "BLCKMRKT", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x2133031f5acbc493572c02f271186f241cd8d6a5.png", - "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0x91b518dfbefe614aa14f38a6bc02c7d22d6210cd": { - "address": "0x91b518dfbefe614aa14f38a6bc02c7d22d6210cd", - "symbol": "MELLO", - "decimals": 18, - "name": "Mello AI", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x91b518dfbefe614aa14f38a6bc02c7d22d6210cd.png", - "aggregators": ["CoinGecko", "Rubic", "Squid", "Sonarwatch"], - "occurrences": 4 - }, - "0xb3621cd34803cf7065dcb0d5bfb0f56c1834a063": { - "address": "0xb3621cd34803cf7065dcb0d5bfb0f56c1834a063", - "symbol": "DEFAI", - "decimals": 18, - "name": "DeFi Agents AI", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xb3621cd34803cf7065dcb0d5bfb0f56c1834a063.png", - "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0xd1d7aa941c71fd95e9d31bbd81937b3e71bd6231": { - "address": "0xd1d7aa941c71fd95e9d31bbd81937b3e71bd6231", - "symbol": "ORCL", - "decimals": 18, - "name": "Oracle", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xd1d7aa941c71fd95e9d31bbd81937b3e71bd6231.png", - "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0x93893878af23f5c817fe338a6dc7858d5d608bf7": { - "address": "0x93893878af23f5c817fe338a6dc7858d5d608bf7", - "symbol": "MAGNUS", - "decimals": 18, - "name": "Magnus Opus by Virtuals", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x93893878af23f5c817fe338a6dc7858d5d608bf7.png", - "aggregators": ["CoinGecko", "Rubic", "Squid", "Rango"], - "occurrences": 4 - }, - "0x2e7df1528f4ea427f48b49ae8a1f78149db7185a": { - "address": "0x2e7df1528f4ea427f48b49ae8a1f78149db7185a", - "symbol": "$PRO", - "decimals": 18, - "name": "ProductClank", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x2e7df1528f4ea427f48b49ae8a1f78149db7185a.png", - "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0xbfabe191449a1549a0be6f5c0aa09affecbebc32": { - "address": "0xbfabe191449a1549a0be6f5c0aa09affecbebc32", - "symbol": "HCAT", - "decimals": 18, - "name": "Hover Cat", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xbfabe191449a1549a0be6f5c0aa09affecbebc32.png", - "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0x7bbcf1b600565ae023a1806ef637af4739de3255": { - "address": "0x7bbcf1b600565ae023a1806ef637af4739de3255", - "symbol": "PRFI", - "decimals": 18, - "name": "PRFI", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x7bbcf1b600565ae023a1806ef637af4739de3255.png", - "aggregators": ["CoinGecko", "Socket", "Rubic", "Rango"], - "occurrences": 4 - }, - "0x91273b316240879fd902c0c3fcf7c0158777b42f": { - "address": "0x91273b316240879fd902c0c3fcf7c0158777b42f", - "symbol": "OLYN", - "decimals": 18, - "name": "Olyn by Virtuals", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x91273b316240879fd902c0c3fcf7c0158777b42f.png", - "aggregators": ["CoinGecko", "Rubic", "Squid", "Rango"], - "occurrences": 4 - }, - "0x5cda0e1ca4ce2af96315f7f8963c85399c172204": { - "address": "0x5cda0e1ca4ce2af96315f7f8963c85399c172204", - "symbol": "WTCOIN", - "decimals": 18, - "name": "Coinbase Global Inc ST0x", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x5cda0e1ca4ce2af96315f7f8963c85399c172204.png", - "aggregators": ["CoinGecko", "LiFi", "Rubic", "Rango"], - "occurrences": 4 - }, - "0xea2e0887dc584a16433d49c49295809ac5c0da8e": { - "address": "0xea2e0887dc584a16433d49c49295809ac5c0da8e", - "symbol": "YUNAI", - "decimals": 18, - "name": "YUNAI", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xea2e0887dc584a16433d49c49295809ac5c0da8e.png", - "aggregators": ["CoinGecko", "Rubic", "Squid", "Rango"], - "occurrences": 4 - }, - "0x444600d9fa140e9506d0cbc436bffad3d5c3febc": { - "address": "0x444600d9fa140e9506d0cbc436bffad3d5c3febc", - "symbol": "LUCIEN", - "decimals": 18, - "name": "Director Lucien by Virtuals", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x444600d9fa140e9506d0cbc436bffad3d5c3febc.png", - "aggregators": ["CoinGecko", "Rubic", "Squid", "Rango"], - "occurrences": 4 - }, - "0x74bf9813655d427bfea800f8af0e52a59ff24223": { - "address": "0x74bf9813655d427bfea800f8af0e52a59ff24223", - "symbol": "EMATE", - "decimals": 18, - "name": "REAL ESMATE by Virtuals", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x74bf9813655d427bfea800f8af0e52a59ff24223.png", - "aggregators": ["CoinGecko", "Rubic", "Squid", "Rango"], - "occurrences": 4 - }, - "0xd968196fa6977c4e58f2af5ac01c655ea8332d22": { - "address": "0xd968196fa6977c4e58f2af5ac01c655ea8332d22", - "symbol": "NATO", - "decimals": 18, - "name": "The Nation Token", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xd968196fa6977c4e58f2af5ac01c655ea8332d22.png", - "aggregators": ["Metamask", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0x3dc6c3231f3ab298430b02357a6f0a1e370a54c6": { - "address": "0x3dc6c3231f3ab298430b02357a6f0a1e370a54c6", - "symbol": "NUWA", - "decimals": 18, - "name": "Nuwa World by Virtuals", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x3dc6c3231f3ab298430b02357a6f0a1e370a54c6.png", - "aggregators": ["CoinGecko", "Rubic", "Squid", "Rango"], - "occurrences": 4 - }, - "0x2425598dd959e47a294a737ee4104316864817cf": { - "address": "0x2425598dd959e47a294a737ee4104316864817cf", - "symbol": "CLOUD", - "decimals": 18, - "name": "CloudAI", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x2425598dd959e47a294a737ee4104316864817cf.png", - "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0xb455c23dec25fcf98e46e6a87bf3de67134c6e7f": { - "address": "0xb455c23dec25fcf98e46e6a87bf3de67134c6e7f", - "symbol": "XOE", - "decimals": 18, - "name": "XOE by Virtuals", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xb455c23dec25fcf98e46e6a87bf3de67134c6e7f.png", - "aggregators": ["CoinGecko", "Rubic", "Squid", "Rango"], - "occurrences": 4 - }, - "0x6e02f4a1631379a49e8b7e222cfa6bf913b05e89": { - "address": "0x6e02f4a1631379a49e8b7e222cfa6bf913b05e89", - "symbol": "MPP", - "decimals": 18, - "name": "MegPrime", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x6e02f4a1631379a49e8b7e222cfa6bf913b05e89.png", - "aggregators": ["CoinGecko", "Rubic", "Squid", "Rango"], - "occurrences": 4 - }, - "0x20dd04c17afd5c9a8b3f2cdacaa8ee7907385bef": { - "address": "0x20dd04c17afd5c9a8b3f2cdacaa8ee7907385bef", - "symbol": "NATIVE", - "decimals": 18, - "name": "Native", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x20dd04c17afd5c9a8b3f2cdacaa8ee7907385bef.png", - "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0xdf2fd7dd75143a5010f145440d49748275e362a3": { - "address": "0xdf2fd7dd75143a5010f145440d49748275e362a3", - "symbol": "WINT", - "decimals": 18, - "name": "Whale Intel", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xdf2fd7dd75143a5010f145440d49748275e362a3.png", - "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0x3e1a6d23303be04403badc8bff348027148fef27": { - "address": "0x3e1a6d23303be04403badc8bff348027148fef27", - "symbol": "CLANKSTER", - "decimals": 18, - "name": "Clankster", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x3e1a6d23303be04403badc8bff348027148fef27.png", - "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0x85fbe583368888bc8dabde6f1e6ec6a3f0b2a040": { - "address": "0x85fbe583368888bc8dabde6f1e6ec6a3f0b2a040", - "symbol": "MORSE", - "decimals": 18, - "name": "MORSE", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x85fbe583368888bc8dabde6f1e6ec6a3f0b2a040.png", - "aggregators": ["CoinGecko", "Rubic", "Squid", "Rango"], - "occurrences": 4 - }, - "0xbc7755a153e852cf76cccddb4c2e7c368f6259d8": { - "address": "0xbc7755a153e852cf76cccddb4c2e7c368f6259d8", - "symbol": "HESTIA", - "decimals": 18, - "name": "Hestia", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xbc7755a153e852cf76cccddb4c2e7c368f6259d8.png", - "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0xe248c0bce837b8dfb21fdfa51fb31d22fbbb4380": { - "address": "0xe248c0bce837b8dfb21fdfa51fb31d22fbbb4380", - "symbol": "FDX", - "decimals": 18, - "name": "FLEX", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xe248c0bce837b8dfb21fdfa51fb31d22fbbb4380.png", - "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0x8dd524a86195a6ef95304e7f0dd9c405a2e78859": { - "address": "0x8dd524a86195a6ef95304e7f0dd9c405a2e78859", - "symbol": "SAGE", - "decimals": 18, - "name": "SAGE", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x8dd524a86195a6ef95304e7f0dd9c405a2e78859.png", - "aggregators": ["CoinGecko", "Rubic", "Squid", "Rango"], - "occurrences": 4 - }, - "0x02cb6968877a3a40a5d918af0aecc3481bfc0434": { - "address": "0x02cb6968877a3a40a5d918af0aecc3481bfc0434", - "symbol": "ASYNC", - "decimals": 18, - "name": "ASYNCHRONUS by Virtuals", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x02cb6968877a3a40a5d918af0aecc3481bfc0434.png", - "aggregators": ["CoinGecko", "Rubic", "Squid", "Rango"], - "occurrences": 4 - }, - "0x991ab5d07f28232ec1677e2c13239fb9b4b9ccb7": { - "address": "0x991ab5d07f28232ec1677e2c13239fb9b4b9ccb7", - "symbol": "SMITH", - "decimals": 18, - "name": "Agent Smith", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x991ab5d07f28232ec1677e2c13239fb9b4b9ccb7.png", - "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0x7f0e9971d3320521fc88f863e173a4cddbb051ba": { - "address": "0x7f0e9971d3320521fc88f863e173a4cddbb051ba", - "symbol": "AQUARI", - "decimals": 18, - "name": "Aquari", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x7f0e9971d3320521fc88f863e173a4cddbb051ba.png", - "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0x290f057a2c59b95d8027aa4abf31782676502071": { - "address": "0x290f057a2c59b95d8027aa4abf31782676502071", - "symbol": "CLIZA", - "decimals": 18, - "name": "cliza", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x290f057a2c59b95d8027aa4abf31782676502071.png", - "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0x07fb80f7a8460de3065d74b2663ba0d740fb3ca5": { - "address": "0x07fb80f7a8460de3065d74b2663ba0d740fb3ca5", - "symbol": "OXI", - "decimals": 18, - "name": "Oxbull", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x07fb80f7a8460de3065d74b2663ba0d740fb3ca5.png", - "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0x8d0e3818088277d981a6fd2839d5884fd88b40ca": { - "address": "0x8d0e3818088277d981a6fd2839d5884fd88b40ca", - "symbol": "CSTRAT", - "decimals": 18, - "name": "Card Strategy", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x8d0e3818088277d981a6fd2839d5884fd88b40ca.png", - "aggregators": ["CoinGecko", "LiFi", "Rubic", "Rango"], - "occurrences": 4 - }, - "0x3e12b9d6a4d12cd9b4a6d613872d0eb32f68b380": { - "address": "0x3e12b9d6a4d12cd9b4a6d613872d0eb32f68b380", - "symbol": "FLOWER", - "decimals": 18, - "name": "Flower", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x3e12b9d6a4d12cd9b4a6d613872d0eb32f68b380.png", - "aggregators": ["CoinGecko", "LiFi", "Rubic", "Rango"], - "occurrences": 4 - }, - "0xda4c86b5444294a5ba3b806ae7718f1f95cc3120": { - "address": "0xda4c86b5444294a5ba3b806ae7718f1f95cc3120", - "symbol": "TYCOON", - "decimals": 18, - "name": "Tycoon by Shareland by Virtuals", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xda4c86b5444294a5ba3b806ae7718f1f95cc3120.png", - "aggregators": ["CoinGecko", "Rubic", "Squid", "Rango"], - "occurrences": 4 - }, - "0x9e271ec4d66f2b400ad92de8a10e5c9c1914259c": { - "address": "0x9e271ec4d66f2b400ad92de8a10e5c9c1914259c", - "symbol": "$UP", - "decimals": 18, - "name": "$UP", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x9e271ec4d66f2b400ad92de8a10e5c9c1914259c.png", - "aggregators": ["CoinGecko", "Rubic", "Squid", "Rango"], - "occurrences": 4 - }, - "0xd2626a8408e13a364130bf25495ce242d30f4721": { - "address": "0xd2626a8408e13a364130bf25495ce242d30f4721", - "symbol": "CRAZZERS", - "decimals": 18, - "name": "Crazzers AI by Virtuals", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xd2626a8408e13a364130bf25495ce242d30f4721.png", - "aggregators": ["CoinGecko", "Rubic", "Squid", "Rango"], - "occurrences": 4 - }, - "0xbf8566956b4e2d8beb90c4c19dbb8c67a9290c36": { - "address": "0xbf8566956b4e2d8beb90c4c19dbb8c67a9290c36", - "symbol": "VIRGEN", - "decimals": 18, - "name": "VIRGEN by Virtuals", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xbf8566956b4e2d8beb90c4c19dbb8c67a9290c36.png", - "aggregators": ["CoinGecko", "Rubic", "Squid", "Rango"], - "occurrences": 4 - }, - "0x5d6cae0422a950dbd7918d1e74434a35156b3ba4": { - "address": "0x5d6cae0422a950dbd7918d1e74434a35156b3ba4", - "symbol": "NVG8", - "decimals": 18, - "name": "Navigate", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x5d6cae0422a950dbd7918d1e74434a35156b3ba4.png", - "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0x6555255b8ded3c538cb398d9e36769f45d7d3ea7": { - "address": "0x6555255b8ded3c538cb398d9e36769f45d7d3ea7", - "symbol": "ROOM", - "decimals": 18, - "name": "Backroom by Virtuals", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x6555255b8ded3c538cb398d9e36769f45d7d3ea7.png", - "aggregators": ["CoinGecko", "Rubic", "Squid", "Rango"], - "occurrences": 4 - }, - "0xf09034487c84954d49ae04bf6817148ffc2edb83": { - "address": "0xf09034487c84954d49ae04bf6817148ffc2edb83", - "symbol": "BARRY", - "decimals": 18, - "name": "Barry the badger", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xf09034487c84954d49ae04bf6817148ffc2edb83.png", - "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0xf6da29a60e17081d80da142448de4438b74d20f9": { - "address": "0xf6da29a60e17081d80da142448de4438b74d20f9", - "symbol": "EVA", - "decimals": 18, - "name": "EVA by Virtuals", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xf6da29a60e17081d80da142448de4438b74d20f9.png", - "aggregators": ["CoinGecko", "Rubic", "Squid", "Rango"], - "occurrences": 4 - }, - "0x14daf26c2507acdd3b64e3302d8554611026cc40": { - "address": "0x14daf26c2507acdd3b64e3302d8554611026cc40", - "symbol": "$MUST", - "decimals": 18, - "name": "Cool Mustache", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x14daf26c2507acdd3b64e3302d8554611026cc40.png", - "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0xd53deb03d6de5f355c0b8de57b8f37179ff60b81": { - "address": "0xd53deb03d6de5f355c0b8de57b8f37179ff60b81", - "symbol": "MAFIA", - "decimals": 18, - "name": "MAFIA", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xd53deb03d6de5f355c0b8de57b8f37179ff60b81.png", - "aggregators": ["CoinGecko", "Rubic", "Squid", "Rango"], - "occurrences": 4 - }, - "0x33c527361ab68b46a6669f82d25b704423cae568": { - "address": "0x33c527361ab68b46a6669f82d25b704423cae568", - "symbol": "ZENITH", - "decimals": 18, - "name": "Zenith by Virtuals", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x33c527361ab68b46a6669f82d25b704423cae568.png", - "aggregators": ["CoinGecko", "Rubic", "Squid", "Rango"], - "occurrences": 4 - }, - "0x0b1d66d2b66eeca25bc489062fdc362e3c214f81": { - "address": "0x0b1d66d2b66eeca25bc489062fdc362e3c214f81", - "symbol": "NAINCY", - "decimals": 18, - "name": "NAINCY", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x0b1d66d2b66eeca25bc489062fdc362e3c214f81.png", - "aggregators": ["CoinGecko", "Rubic", "Squid", "Sonarwatch"], - "occurrences": 4 - }, - "0xc2427bf51d99b6ed0da0da103bc51235638ee868": { - "address": "0xc2427bf51d99b6ed0da0da103bc51235638ee868", - "symbol": "BOT", - "decimals": 18, - "name": "Wasabot", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xc2427bf51d99b6ed0da0da103bc51235638ee868.png", - "aggregators": ["CoinGecko", "Rubic", "Squid", "Rango"], - "occurrences": 4 - }, - "0x80ded22d9c6487181ed74d0222add805815e8df4": { - "address": "0x80ded22d9c6487181ed74d0222add805815e8df4", - "symbol": "CENTRY", - "decimals": 18, - "name": "Cybercentry by Virtuals", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x80ded22d9c6487181ed74d0222add805815e8df4.png", - "aggregators": ["CoinGecko", "Rubic", "Squid", "Rango"], - "occurrences": 4 - }, - "0xa66b448f97cbf58d12f00711c02bac2d9eac6f7f": { - "address": "0xa66b448f97cbf58d12f00711c02bac2d9eac6f7f", - "symbol": "OPENX", - "decimals": 18, - "name": "OpenxAI", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xa66b448f97cbf58d12f00711c02bac2d9eac6f7f.png", - "aggregators": ["CoinGecko", "Socket", "Rubic", "Rango"], - "occurrences": 4 - }, - "0xf697a91e2fbf7f0f6c09c9b32d6523628ec5d3f6": { - "address": "0xf697a91e2fbf7f0f6c09c9b32d6523628ec5d3f6", - "symbol": "AMPD", - "decimals": 9, - "name": "Ample", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xf697a91e2fbf7f0f6c09c9b32d6523628ec5d3f6.png", - "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0x2941d526e22406c5d6f273e281899cfc042a7332": { - "address": "0x2941d526e22406c5d6f273e281899cfc042a7332", - "symbol": "KOGIN", - "decimals": 18, - "name": "Kogin by Virtuals", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x2941d526e22406c5d6f273e281899cfc042a7332.png", - "aggregators": ["CoinGecko", "Rubic", "Squid", "Rango"], - "occurrences": 4 - }, - "0x6ce4dba6b54d4995654c94bd48ea3b94836ea144": { - "address": "0x6ce4dba6b54d4995654c94bd48ea3b94836ea144", - "symbol": "SPIX", - "decimals": 18, - "name": "spιxfι", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x6ce4dba6b54d4995654c94bd48ea3b94836ea144.png", - "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0x129966d7d25775b57e3c5b13b2e1c2045fbc4926": { - "address": "0x129966d7d25775b57e3c5b13b2e1c2045fbc4926", - "symbol": "NYKO", - "decimals": 18, - "name": "NIYOKO by Virtuals", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x129966d7d25775b57e3c5b13b2e1c2045fbc4926.png", - "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0xac743b05f5e590d9db6a4192e02457838e4af61e": { - "address": "0xac743b05f5e590d9db6a4192e02457838e4af61e", - "symbol": "CALLS", - "decimals": 18, - "name": "OnlyCalls by Virtuals", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xac743b05f5e590d9db6a4192e02457838e4af61e.png", - "aggregators": ["CoinGecko", "Rubic", "Squid", "Rango"], - "occurrences": 4 - }, - "0x840b20fa3d48ac709fd841fcd878c3e8aabd7087": { - "address": "0x840b20fa3d48ac709fd841fcd878c3e8aabd7087", - "symbol": "GLUE", - "decimals": 18, - "name": "Base Bridged GLUE (Base)", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x840b20fa3d48ac709fd841fcd878c3e8aabd7087.png", - "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0x6dd4e9e85b96d4cb8a0c16c8a9b097e1c9205617": { - "address": "0x6dd4e9e85b96d4cb8a0c16c8a9b097e1c9205617", - "symbol": "CTDA", - "decimals": 18, - "name": "PokPok Agent Brain by Virtuals", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x6dd4e9e85b96d4cb8a0c16c8a9b097e1c9205617.png", - "aggregators": ["CoinGecko", "Rubic", "Squid", "Rango"], - "occurrences": 4 - }, - "0x4b6104755afb5da4581b81c552da3a25608c73b8": { - "address": "0x4b6104755afb5da4581b81c552da3a25608c73b8", - "symbol": "SKITTEN", - "decimals": 18, - "name": "$SKITTEN", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x4b6104755afb5da4581b81c552da3a25608c73b8.png", - "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0xab10e517f3138b17108b32129e8c8446ad44a267": { - "address": "0xab10e517f3138b17108b32129e8c8446ad44a267", - "symbol": "BTA", - "decimals": 18, - "name": "Battle.tech by Virtuals", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xab10e517f3138b17108b32129e8c8446ad44a267.png", - "aggregators": ["CoinGecko", "Rubic", "Squid", "Rango"], - "occurrences": 4 - }, - "0x00309d634d11541b857f927be91ad2f0bd78894c": { - "address": "0x00309d634d11541b857f927be91ad2f0bd78894c", - "symbol": "TEVA", - "decimals": 18, - "name": "Tevaera", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x00309d634d11541b857f927be91ad2f0bd78894c.png", - "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0xa7f6e8a35d83228cc6c241c8dd0fb687552f75d1": { - "address": "0xa7f6e8a35d83228cc6c241c8dd0fb687552f75d1", - "symbol": "DNODE", - "decimals": 18, - "name": "Dealer Node", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xa7f6e8a35d83228cc6c241c8dd0fb687552f75d1.png", - "aggregators": ["CoinGecko", "Rubic", "Squid", "Rango"], - "occurrences": 4 - }, - "0x1868c380e1d7883126dfe6c5ab2908fb2f944974": { - "address": "0x1868c380e1d7883126dfe6c5ab2908fb2f944974", - "symbol": "ARVOS", - "decimals": 18, - "name": "Arvos AI by Virtuals", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x1868c380e1d7883126dfe6c5ab2908fb2f944974.png", - "aggregators": ["CoinGecko", "Rubic", "Squid", "Rango"], - "occurrences": 4 - }, - "0x331ae2af41c4d3a644ceb5dc79a4b900f7a5b60d": { - "address": "0x331ae2af41c4d3a644ceb5dc79a4b900f7a5b60d", - "symbol": "AXB", - "decimals": 18, - "name": "AIxBET", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x331ae2af41c4d3a644ceb5dc79a4b900f7a5b60d.png", - "aggregators": ["CoinGecko", "Rubic", "Squid", "Rango"], - "occurrences": 4 - }, - "0x833f973406e07830d494cbe5fabbc3ae9c750c1f": { - "address": "0x833f973406e07830d494cbe5fabbc3ae9c750c1f", - "symbol": "IRWA", - "decimals": 18, - "name": "IncomRWA", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x833f973406e07830d494cbe5fabbc3ae9c750c1f.png", - "aggregators": ["CoinGecko", "LiFi", "Rubic", "Rango"], - "occurrences": 4 - }, - "0x214419f6fdd2b23bf6a32f33cf95186d188b784b": { - "address": "0x214419f6fdd2b23bf6a32f33cf95186d188b784b", - "symbol": "ST", - "decimals": 18, - "name": "Small Thing", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x214419f6fdd2b23bf6a32f33cf95186d188b784b.png", - "aggregators": ["CoinGecko", "Rubic", "Squid", "Rango"], - "occurrences": 4 - }, - "0xb462ac0e0a7fa3f8d7c129cd8398fc1258cfefb2": { - "address": "0xb462ac0e0a7fa3f8d7c129cd8398fc1258cfefb2", - "symbol": "DREAM", - "decimals": 18, - "name": "DREAM by Virtuals", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xb462ac0e0a7fa3f8d7c129cd8398fc1258cfefb2.png", - "aggregators": ["CoinGecko", "Rubic", "Squid", "Rango"], - "occurrences": 4 - }, - "0x3849cc93e7b71b37885237cd91a215974135cd8d": { - "address": "0x3849cc93e7b71b37885237cd91a215974135cd8d", - "symbol": "CREATE", - "decimals": 18, - "name": "Create", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x3849cc93e7b71b37885237cd91a215974135cd8d.png", - "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0x15eda1086c54c148037597e9dc60e5a87b618aa1": { - "address": "0x15eda1086c54c148037597e9dc60e5a87b618aa1", - "symbol": "BLUE", - "decimals": 18, - "name": "BLUEPAY", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x15eda1086c54c148037597e9dc60e5a87b618aa1.png", - "aggregators": ["CoinGecko", "Rubic", "Squid", "Rango"], - "occurrences": 4 - }, - "0x78b9ce06f0e20d89c78ced2ae739bb45dd5794ab": { - "address": "0x78b9ce06f0e20d89c78ced2ae739bb45dd5794ab", - "symbol": "PROV", - "decimals": 18, - "name": "Provenance Fact-check", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x78b9ce06f0e20d89c78ced2ae739bb45dd5794ab.png", - "aggregators": ["CoinGecko", "Rubic", "Squid", "Rango"], - "occurrences": 4 - }, - "0xe47dd5197c5b5194cbe10b0333ed45570fb63eb0": { - "address": "0xe47dd5197c5b5194cbe10b0333ed45570fb63eb0", - "symbol": "AIN", - "decimals": 18, - "name": "AInalyst by Virtuals", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xe47dd5197c5b5194cbe10b0333ed45570fb63eb0.png", - "aggregators": ["CoinGecko", "Rubic", "Squid", "Rango"], - "occurrences": 4 - }, - "0x1cfc22860fe46a622e3c2d1c9b036412467ef4c9": { - "address": "0x1cfc22860fe46a622e3c2d1c9b036412467ef4c9", - "symbol": "HANA", - "decimals": 18, - "name": "Hana by Virtuals", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x1cfc22860fe46a622e3c2d1c9b036412467ef4c9.png", - "aggregators": ["CoinGecko", "Rubic", "Squid", "Rango"], - "occurrences": 4 - }, - "0x708c2b2eeb9578dfe4020895139e88f7654647ff": { - "address": "0x708c2b2eeb9578dfe4020895139e88f7654647ff", - "symbol": "ROBOT", - "decimals": 18, - "name": "RoboStack", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x708c2b2eeb9578dfe4020895139e88f7654647ff.png", - "aggregators": ["CoinGecko", "Rubic", "Squid", "Sonarwatch"], - "occurrences": 4 - }, - "0x000000000001cdb57e58fa75fe420a0f4d6640d5": { - "address": "0x000000000001cdb57e58fa75fe420a0f4d6640d5", - "symbol": "GTUSDA", - "decimals": 18, - "name": "Gauntlet USD Alpha", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x000000000001cdb57e58fa75fe420a0f4d6640d5.png", - "aggregators": ["CoinGecko", "LiFi", "Rubic", "Rango"], - "occurrences": 4 - }, - "0xeb476e9ab6b1655860b3f40100678d0c1cedb321": { - "address": "0xeb476e9ab6b1655860b3f40100678d0c1cedb321", - "symbol": "$AMEN", - "decimals": 18, - "name": "Project Nostradamus", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xeb476e9ab6b1655860b3f40100678d0c1cedb321.png", - "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0x65fa18f0495c7cddabac07903230011c45cb7373": { - "address": "0x65fa18f0495c7cddabac07903230011c45cb7373", - "symbol": "PRTL", - "decimals": 18, - "name": "XPRTL", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x65fa18f0495c7cddabac07903230011c45cb7373.png", - "aggregators": ["CoinGecko", "Rubic", "Squid", "Rango"], - "occurrences": 4 - }, - "0x844c03892863b0e3e00e805e41b34527044d5c72": { - "address": "0x844c03892863b0e3e00e805e41b34527044d5c72", - "symbol": "$PANANA", - "decimals": 18, - "name": "Panana", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x844c03892863b0e3e00e805e41b34527044d5c72.png", - "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0xe56b9f83a7cbe491f248490264066552d8a47e58": { - "address": "0xe56b9f83a7cbe491f248490264066552d8a47e58", - "symbol": "SANWCH", - "decimals": 18, - "name": "ask the Sandwich by Virtuals", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xe56b9f83a7cbe491f248490264066552d8a47e58.png", - "aggregators": ["CoinGecko", "Rubic", "Squid", "Rango"], - "occurrences": 4 - }, - "0xd007c4c900d1df6caea2a4122f3d551d7dfe08b0": { - "address": "0xd007c4c900d1df6caea2a4122f3d551d7dfe08b0", - "symbol": "SPORT", - "decimals": 18, - "name": "Staicy Sport", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xd007c4c900d1df6caea2a4122f3d551d7dfe08b0.png", - "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0x21e00ff5374a0b803e0dc13a72800aca95b4b09e": { - "address": "0x21e00ff5374a0b803e0dc13a72800aca95b4b09e", - "symbol": "BUTTHOLE", - "decimals": 18, - "name": "Based Butthole", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x21e00ff5374a0b803e0dc13a72800aca95b4b09e.png", - "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0x15dd9165b3a80f83a5471f2e6eba57158ca3cf86": { - "address": "0x15dd9165b3a80f83a5471f2e6eba57158ca3cf86", - "symbol": "BL", - "decimals": 18, - "name": "ButlerLiquid", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x15dd9165b3a80f83a5471f2e6eba57158ca3cf86.png", - "aggregators": ["CoinGecko", "Rubic", "Squid", "Rango"], - "occurrences": 4 - }, - "0x075b25fae35b121b5295b7fa779e73094b2e9153": { - "address": "0x075b25fae35b121b5295b7fa779e73094b2e9153", - "symbol": "CLANKTARDIO", - "decimals": 18, - "name": "CLANKTARDIO", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x075b25fae35b121b5295b7fa779e73094b2e9153.png", - "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0x000000000d564d5be76f7f0d28fe52605afc7cf8": { - "address": "0x000000000d564d5be76f7f0d28fe52605afc7cf8", - "symbol": "FLETH", - "decimals": 18, - "name": "flETH", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x000000000d564d5be76f7f0d28fe52605afc7cf8.png", - "aggregators": ["CoinGecko", "LiFi", "Rubic", "Rango"], - "occurrences": 4 - }, - "0x17ce44b66dfd15c270dc24aca2e367adfed41620": { - "address": "0x17ce44b66dfd15c270dc24aca2e367adfed41620", - "symbol": "BEMU", - "decimals": 18, - "name": "BEMU", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x17ce44b66dfd15c270dc24aca2e367adfed41620.png", - "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0x6263ad921e11ab47ae85f1daa725b8b3581baed3": { - "address": "0x6263ad921e11ab47ae85f1daa725b8b3581baed3", - "symbol": "LUIGI", - "decimals": 18, - "name": "Market Maverick", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x6263ad921e11ab47ae85f1daa725b8b3581baed3.png", - "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0x220c6019203aaa7f14b5cd44a323446019609798": { - "address": "0x220c6019203aaa7f14b5cd44a323446019609798", - "symbol": "SPORT", - "decimals": 18, - "name": "Sports Analyst AI", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x220c6019203aaa7f14b5cd44a323446019609798.png", - "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0x25fbfff98d07fe586ea91953a5106e612c8b9e03": { - "address": "0x25fbfff98d07fe586ea91953a5106e612c8b9e03", - "symbol": "BABYSATO", - "decimals": 18, - "name": "Baby Sato", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x25fbfff98d07fe586ea91953a5106e612c8b9e03.png", - "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0x9a1b42f7f6d649b73bdb275972295acc940b153a": { - "address": "0x9a1b42f7f6d649b73bdb275972295acc940b153a", - "symbol": "GAIB", - "decimals": 18, - "name": "_gai16zbrielShai16zpr0", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x9a1b42f7f6d649b73bdb275972295acc940b153a.png", - "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0xcc4adb618253ed0d4d8a188fb901d70c54735e03": { - "address": "0xcc4adb618253ed0d4d8a188fb901d70c54735e03", - "symbol": "A0T", - "decimals": 18, - "name": "Agent Zero Token", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xcc4adb618253ed0d4d8a188fb901d70c54735e03.png", - "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0x26923fd7fef1d3153d15a793f98144c6b9919946": { - "address": "0x26923fd7fef1d3153d15a793f98144c6b9919946", - "symbol": "KARMA", - "decimals": 18, - "name": "KarmaVerse by Virtuals", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x26923fd7fef1d3153d15a793f98144c6b9919946.png", - "aggregators": ["CoinGecko", "Rubic", "Squid", "Rango"], - "occurrences": 4 - }, - "0x1014fc96b37225e56f171a107bebef03800ff8f8": { - "address": "0x1014fc96b37225e56f171a107bebef03800ff8f8", - "symbol": "DEGENOS", - "decimals": 18, - "name": "degenOS", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x1014fc96b37225e56f171a107bebef03800ff8f8.png", - "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0x0390a285c97f04c6ac9d162352b44e6fc310d3f2": { - "address": "0x0390a285c97f04c6ac9d162352b44e6fc310d3f2", - "symbol": "MATRIX", - "decimals": 18, - "name": "Matrix by Virtuals", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x0390a285c97f04c6ac9d162352b44e6fc310d3f2.png", - "aggregators": ["CoinGecko", "Rubic", "Squid", "Rango"], - "occurrences": 4 - }, - "0xf06689ae24a10b5accbfd5451a212b6b3004b960": { - "address": "0xf06689ae24a10b5accbfd5451a212b6b3004b960", - "symbol": "XIO", - "decimals": 18, - "name": "XIO", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xf06689ae24a10b5accbfd5451a212b6b3004b960.png", - "aggregators": ["CoinGecko", "Rubic", "Squid", "Rango"], - "occurrences": 4 - }, - "0xb22a793a81ff5b6ad37f40d5fe1e0ac4184d52f3": { - "address": "0xb22a793a81ff5b6ad37f40d5fe1e0ac4184d52f3", - "symbol": "TONY", - "decimals": 18, - "name": "Big Tony", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xb22a793a81ff5b6ad37f40d5fe1e0ac4184d52f3.png", - "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0x4c95cd5b24cba798c56f9c3045975d7b24437415": { - "address": "0x4c95cd5b24cba798c56f9c3045975d7b24437415", - "symbol": "SAMS", - "decimals": 18, - "name": "Samsara.Build", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x4c95cd5b24cba798c56f9c3045975d7b24437415.png", - "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0x9d56c29e820dd13b0580b185d0e0dc301d27581d": { - "address": "0x9d56c29e820dd13b0580b185d0e0dc301d27581d", - "symbol": "AUBRAI", - "decimals": 18, - "name": "Aubrai by Bio", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x9d56c29e820dd13b0580b185d0e0dc301d27581d.png", - "aggregators": ["CoinGecko", "LiFi", "Rubic", "Rango"], - "occurrences": 4 - }, - "0xa9e23871156718c1d55e90dad1c4ea8a33480dfd": { - "address": "0xa9e23871156718c1d55e90dad1c4ea8a33480dfd", - "symbol": "INSTACLAW", - "decimals": 18, - "name": "Instaclaw", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xa9e23871156718c1d55e90dad1c4ea8a33480dfd.png", - "aggregators": ["CoinGecko", "Rubic", "Squid", "Rango"], - "occurrences": 4 - }, - "0xae9a2e6f5717f0075c42874b86e7e375c7e42257": { - "address": "0xae9a2e6f5717f0075c42874b86e7e375c7e42257", - "symbol": "AIG", - "decimals": 18, - "name": "AI GOD by Virtuals", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xae9a2e6f5717f0075c42874b86e7e375c7e42257.png", - "aggregators": ["CoinGecko", "Rubic", "Squid", "Rango"], - "occurrences": 4 - }, - "0x31c2c14134e6e3b7ef9478297f199331133fc2d8": { - "address": "0x31c2c14134e6e3b7ef9478297f199331133fc2d8", - "symbol": "WTSPYM", - "decimals": 18, - "name": "Wrapped State Street SPDR Portfolio S&P 500 ETF ST0x", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x31c2c14134e6e3b7ef9478297f199331133fc2d8.png", - "aggregators": ["CoinGecko", "LiFi", "Rubic", "Rango"], - "occurrences": 4 - }, - "0x8853f0c059c27527d33d02378e5e4f6d5afb574a": { - "address": "0x8853f0c059c27527d33d02378e5e4f6d5afb574a", - "symbol": "AIINU", - "decimals": 18, - "name": "AI INU", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x8853f0c059c27527d33d02378e5e4f6d5afb574a.png", - "aggregators": ["CoinGecko", "Rubic", "Squid", "Rango"], - "occurrences": 4 - }, - "0x76a9a0062ec6712b99b4f63bd2b4270185759dd5": { - "address": "0x76a9a0062ec6712b99b4f63bd2b4270185759dd5", - "symbol": "USDP", - "decimals": 18, - "name": "USDP", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x76a9a0062ec6712b99b4f63bd2b4270185759dd5.png", - "aggregators": ["CoinGecko", "LiFi", "Rubic", "Rango"], - "occurrences": 4 - }, - "0x4381bc7d5640bf514a508e2732ec522c650c414c": { - "address": "0x4381bc7d5640bf514a508e2732ec522c650c414c", - "symbol": "AURA", - "decimals": 18, - "name": "Aura", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x4381bc7d5640bf514a508e2732ec522c650c414c.png", - "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0x83abfc4beec2ecf12995005d751a42df691c09c1": { - "address": "0x83abfc4beec2ecf12995005d751a42df691c09c1", - "symbol": "H1DR4", - "decimals": 18, - "name": "H1DR4 by Virtuals", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x83abfc4beec2ecf12995005d751a42df691c09c1.png", - "aggregators": ["CoinGecko", "Rubic", "Squid", "Rango"], - "occurrences": 4 - }, - "0x1b68244b100a6713ca7f540697b1be12148a8bf9": { - "address": "0x1b68244b100a6713ca7f540697b1be12148a8bf9", - "symbol": "YES", - "decimals": 18, - "name": "YES", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x1b68244b100a6713ca7f540697b1be12148a8bf9.png", - "aggregators": ["CoinGecko", "Rubic", "Squid", "Rango"], - "occurrences": 4 - }, - "0xbfefd7a0eda8a0feb06d0f52cf431afd0f9b2dd0": { - "address": "0xbfefd7a0eda8a0feb06d0f52cf431afd0f9b2dd0", - "symbol": "WOKIE", - "decimals": 18, - "name": "Wokie Plumpkin by Virtuals", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xbfefd7a0eda8a0feb06d0f52cf431afd0f9b2dd0.png", - "aggregators": ["CoinGecko", "Rubic", "Squid", "Rango"], - "occurrences": 4 - }, - "0x52d0ac6a76da6e4a5168a60c423f7ff0285534b1": { - "address": "0x52d0ac6a76da6e4a5168a60c423f7ff0285534b1", - "symbol": "GOLDN", - "decimals": 18, - "name": "GOLDN", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x52d0ac6a76da6e4a5168a60c423f7ff0285534b1.png", - "aggregators": ["CoinGecko", "LiFi", "Rubic", "Rango"], - "occurrences": 4 - }, - "0x901f1d2bf312e6fa1716df603df8f86315bcb355": { - "address": "0x901f1d2bf312e6fa1716df603df8f86315bcb355", - "symbol": "LINKS", - "decimals": 18, - "name": "Links", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x901f1d2bf312e6fa1716df603df8f86315bcb355.png", - "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0xf43d7ae57fecda841fd6335eb96b3351c04916cf": { - "address": "0xf43d7ae57fecda841fd6335eb96b3351c04916cf", - "symbol": "LURKY", - "decimals": 18, - "name": "Lurky", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xf43d7ae57fecda841fd6335eb96b3351c04916cf.png", - "aggregators": ["CoinGecko", "Rubic", "Squid", "Rango"], - "occurrences": 4 - }, - "0x7d6fcb3327d7e17095fa8b0e3513ac7a3564f5e1": { - "address": "0x7d6fcb3327d7e17095fa8b0e3513ac7a3564f5e1", - "symbol": "SOLACE", - "decimals": 18, - "name": "Solace by Virtuals", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x7d6fcb3327d7e17095fa8b0e3513ac7a3564f5e1.png", - "aggregators": ["CoinGecko", "Rubic", "Squid", "Rango"], - "occurrences": 4 - }, - "0xb58f9704c7a80d2775222f7cb2eed28beb9a06be": { - "address": "0xb58f9704c7a80d2775222f7cb2eed28beb9a06be", - "symbol": "OMNI", - "decimals": 18, - "name": "Omnis Genesis by Virtuals", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xb58f9704c7a80d2775222f7cb2eed28beb9a06be.png", - "aggregators": ["CoinGecko", "Rubic", "Squid", "Rango"], - "occurrences": 4 - }, - "0xd0924fa4c6ba194294a414d0fb826739ded98b24": { - "address": "0xd0924fa4c6ba194294a414d0fb826739ded98b24", - "symbol": "AIBRK", - "decimals": 18, - "name": "AIBRK by Virtuals", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xd0924fa4c6ba194294a414d0fb826739ded98b24.png", - "aggregators": ["CoinGecko", "Rubic", "Squid", "Rango"], - "occurrences": 4 - }, - "0xb6bdc0f422a901062ecd948c6d0d785acd131ce1": { - "address": "0xb6bdc0f422a901062ecd948c6d0d785acd131ce1", - "symbol": "ELYS", - "decimals": 18, - "name": "Elysionyx by Virtuals", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xb6bdc0f422a901062ecd948c6d0d785acd131ce1.png", - "aggregators": ["CoinGecko", "Rubic", "Squid", "Rango"], - "occurrences": 4 - }, - "0xcd5d8cacd9222075a24f6e80ada93882202fe0f6": { - "address": "0xcd5d8cacd9222075a24f6e80ada93882202fe0f6", - "symbol": "AGENT2025", - "decimals": 18, - "name": "Agent2025", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xcd5d8cacd9222075a24f6e80ada93882202fe0f6.png", - "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0x3e99e0890efd6c15a295edbcce82d63224fd6f60": { - "address": "0x3e99e0890efd6c15a295edbcce82d63224fd6f60", - "symbol": "DXAI", - "decimals": 18, - "name": "DXAI.app by Virtuals", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x3e99e0890efd6c15a295edbcce82d63224fd6f60.png", - "aggregators": ["CoinGecko", "Rubic", "Squid", "Rango"], - "occurrences": 4 - }, - "0xc7c154a93127ad933844fe21b20358397edc0e8c": { - "address": "0xc7c154a93127ad933844fe21b20358397edc0e8c", - "symbol": "EMMA", - "decimals": 18, - "name": "Dr Emma Sage by Virtuals", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xc7c154a93127ad933844fe21b20358397edc0e8c.png", - "aggregators": ["CoinGecko", "Rubic", "Squid", "Rango"], - "occurrences": 4 - }, - "0xa631b9b58615bd6a2d62086e692b19539ac9296d": { - "address": "0xa631b9b58615bd6a2d62086e692b19539ac9296d", - "symbol": "BLUE", - "decimals": 18, - "name": "Blue Coin", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xa631b9b58615bd6a2d62086e692b19539ac9296d.png", - "aggregators": ["CoinGecko", "Socket", "Rubic", "Rango"], - "occurrences": 4 - }, - "0x8c62ac3b71db8c81a764b84ffbc2a8d0bad7f111": { - "address": "0x8c62ac3b71db8c81a764b84ffbc2a8d0bad7f111", - "symbol": "PREME", - "decimals": 18, - "name": "PREME Token", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x8c62ac3b71db8c81a764b84ffbc2a8d0bad7f111.png", - "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0x12e377989a87da0f9b9166f0f875c9069eaa776c": { - "address": "0x12e377989a87da0f9b9166f0f875c9069eaa776c", - "symbol": "CLO", - "decimals": 18, - "name": "Cloudland", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x12e377989a87da0f9b9166f0f875c9069eaa776c.png", - "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0xa66f68ef2d8091e13585a502464bd11a159cf710": { - "address": "0xa66f68ef2d8091e13585a502464bd11a159cf710", - "symbol": "CEO", - "decimals": 18, - "name": "CEO", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xa66f68ef2d8091e13585a502464bd11a159cf710.png", - "aggregators": ["CoinGecko", "Rubic", "Squid", "Rango"], - "occurrences": 4 - }, - "0x2ce1340f1d402ae75afeb55003d7491645db1857": { - "address": "0x2ce1340f1d402ae75afeb55003d7491645db1857", - "symbol": "WAGMI", - "decimals": 18, - "name": "WAGMI by Virtuals", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x2ce1340f1d402ae75afeb55003d7491645db1857.png", - "aggregators": ["CoinGecko", "Rubic", "Squid", "Rango"], - "occurrences": 4 - }, - "0xa1f72459dfa10bad200ac160ecd78c6b77a747be": { - "address": "0xa1f72459dfa10bad200ac160ecd78c6b77a747be", - "symbol": "CLAWNCH", - "decimals": 18, - "name": "CLAWNCH", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xa1f72459dfa10bad200ac160ecd78c6b77a747be.png", - "aggregators": ["CoinGecko", "1inch", "Rubic", "Rango"], - "occurrences": 4 - }, - "0x2e2cc4dfce60257f091980631e75f5c436b71c87": { - "address": "0x2e2cc4dfce60257f091980631e75f5c436b71c87", - "symbol": "GRK", - "decimals": 18, - "name": "Grokster", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x2e2cc4dfce60257f091980631e75f5c436b71c87.png", - "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0x8b12bf09b7c6d73735c6a824f1d74a8b5c1aa5ca": { - "address": "0x8b12bf09b7c6d73735c6a824f1d74a8b5c1aa5ca", - "symbol": "WAV3", - "decimals": 18, - "name": "WAV.3 AGENTIC MUSIC DISCOVERY by Virtuals", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x8b12bf09b7c6d73735c6a824f1d74a8b5c1aa5ca.png", - "aggregators": ["CoinGecko", "Rubic", "Squid", "Rango"], - "occurrences": 4 - }, - "0x2c001233ed5e731b98b15b30267f78c7560b71f2": { - "address": "0x2c001233ed5e731b98b15b30267f78c7560b71f2", - "symbol": "BUBU", - "decimals": 18, - "name": "BUBU", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x2c001233ed5e731b98b15b30267f78c7560b71f2.png", - "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0x10ac13e54218470eed360d13a38c2bbafacb6167": { - "address": "0x10ac13e54218470eed360d13a38c2bbafacb6167", - "symbol": "POLLO", - "decimals": 18, - "name": "Pollo", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x10ac13e54218470eed360d13a38c2bbafacb6167.png", - "aggregators": ["CoinGecko", "Rubic", "Squid", "Rango"], - "occurrences": 4 - }, - "0x62ff28a01abd2484adb18c61f78f30fb2e4a6fdb": { - "address": "0x62ff28a01abd2484adb18c61f78f30fb2e4a6fdb", - "symbol": "$OTTO", - "decimals": 18, - "name": "Otto", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x62ff28a01abd2484adb18c61f78f30fb2e4a6fdb.png", - "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0x9af46f95a0a8be5c2e0a0274a8b153c72d617e85": { - "address": "0x9af46f95a0a8be5c2e0a0274a8b153c72d617e85", - "symbol": "UAPE", - "decimals": 18, - "name": "Wrapped ApeCoin (Universal)", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x9af46f95a0a8be5c2e0a0274a8b153c72d617e85.png", - "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0xe31700c6bd46638d207991fb5cc5c0dad3d1e3da": { - "address": "0xe31700c6bd46638d207991fb5cc5c0dad3d1e3da", - "symbol": "ROO", - "decimals": 18, - "name": "Ratehopper AI", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xe31700c6bd46638d207991fb5cc5c0dad3d1e3da.png", - "aggregators": ["CoinGecko", "Rubic", "Squid", "Rango"], - "occurrences": 4 - }, - "0x89c202e98f41cdeb7b397e35a0882315d2ffc8de": { - "address": "0x89c202e98f41cdeb7b397e35a0882315d2ffc8de", - "symbol": "BTCV", - "decimals": 18, - "name": "Bitcoin On Virtuals", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x89c202e98f41cdeb7b397e35a0882315d2ffc8de.png", - "aggregators": ["CoinGecko", "Rubic", "Squid", "Rango"], - "occurrences": 4 - }, - "0x278c77baa80a70f886484af5ee09a87e8f086ae9": { - "address": "0x278c77baa80a70f886484af5ee09a87e8f086ae9", - "symbol": "SNEK", - "decimals": 18, - "name": "BASED SNEK", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x278c77baa80a70f886484af5ee09a87e8f086ae9.png", - "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0x3b53604113b5677291bfc0bc255379e7a796559b": { - "address": "0x3b53604113b5677291bfc0bc255379e7a796559b", - "symbol": "ASM", - "decimals": 18, - "name": "ASM", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x3b53604113b5677291bfc0bc255379e7a796559b.png", - "aggregators": ["CoinGecko", "LiFi", "Rubic", "Rango"], - "occurrences": 4 - }, - "0x739f93504a9e26d5973862dbc4a44178cc264852": { - "address": "0x739f93504a9e26d5973862dbc4a44178cc264852", - "symbol": "LMY", - "decimals": 18, - "name": "Locked Money", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x739f93504a9e26d5973862dbc4a44178cc264852.png", - "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0xf5f2a79eeccf6e7f4c570c803f529930e29cc96b": { - "address": "0xf5f2a79eeccf6e7f4c570c803f529930e29cc96b", - "symbol": "CERTAI", - "decimals": 18, - "name": "CertaiK by Virtuals", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xf5f2a79eeccf6e7f4c570c803f529930e29cc96b.png", - "aggregators": ["CoinGecko", "Rubic", "Squid", "Rango"], - "occurrences": 4 - }, - "0x5f6a682a58854c7fbe228712aeeffccde0008ac0": { - "address": "0x5f6a682a58854c7fbe228712aeeffccde0008ac0", - "symbol": "SHEKEL", - "decimals": 18, - "name": "Rabbi Schlomo by Virtuals", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x5f6a682a58854c7fbe228712aeeffccde0008ac0.png", - "aggregators": ["CoinGecko", "Rubic", "Squid", "Sonarwatch"], - "occurrences": 4 - }, - "0x17d70172c7c4205bd39ce80f7f0ee660b7dc5a23": { - "address": "0x17d70172c7c4205bd39ce80f7f0ee660b7dc5a23", - "symbol": "DIME", - "decimals": 18, - "name": "Dimes", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x17d70172c7c4205bd39ce80f7f0ee660b7dc5a23.png", - "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0xebcda5b80f62dd4dd2a96357b42bb6facbf30267": { - "address": "0xebcda5b80f62dd4dd2a96357b42bb6facbf30267", - "symbol": "ABX", - "decimals": 18, - "name": "Alpha Base Index", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xebcda5b80f62dd4dd2a96357b42bb6facbf30267.png", - "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0xff45161474c39cb00699070dd49582e417b57a7e": { - "address": "0xff45161474c39cb00699070dd49582e417b57a7e", - "symbol": "MT", - "decimals": 18, - "name": "Mint Token", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xff45161474c39cb00699070dd49582e417b57a7e.png", - "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0x8ac984f596bac8197859434ecbab3e4595d7bb06": { - "address": "0x8ac984f596bac8197859434ecbab3e4595d7bb06", - "symbol": "BIZ", - "decimals": 18, - "name": "Bizzy by Virtuals", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x8ac984f596bac8197859434ecbab3e4595d7bb06.png", - "aggregators": ["CoinGecko", "Rubic", "Squid", "Rango"], - "occurrences": 4 - }, - "0x02d4f76656c2b4f58430e91f8ac74896c9281cb9": { - "address": "0x02d4f76656c2b4f58430e91f8ac74896c9281cb9", - "symbol": "AIP", - "decimals": 18, - "name": "PettAI", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x02d4f76656c2b4f58430e91f8ac74896c9281cb9.png", - "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0x03daca2c2e55b03ff1d0d81f099c8900ed7f1dab": { - "address": "0x03daca2c2e55b03ff1d0d81f099c8900ed7f1dab", - "symbol": "FYI", - "decimals": 18, - "name": "Flagship by Virtuals", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x03daca2c2e55b03ff1d0d81f099c8900ed7f1dab.png", - "aggregators": ["CoinGecko", "Rubic", "Squid", "Rango"], - "occurrences": 4 - }, - "0xcc9ad02796dec5f4f0710df80c1f011af85eb9e1": { - "address": "0xcc9ad02796dec5f4f0710df80c1f011af85eb9e1", - "symbol": "WACH", - "decimals": 18, - "name": "WachXBT by Virtuals", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xcc9ad02796dec5f4f0710df80c1f011af85eb9e1.png", - "aggregators": ["CoinGecko", "Rubic", "Squid", "Rango"], - "occurrences": 4 - }, - "0x25e0a7767d03461eaf88b47cd9853722fe05dfd3": { - "address": "0x25e0a7767d03461eaf88b47cd9853722fe05dfd3", - "symbol": "SCI", - "decimals": 18, - "name": "PoSciDonDAO Token", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x25e0a7767d03461eaf88b47cd9853722fe05dfd3.png", - "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0x511ef9ad5e645e533d15df605b4628e3d0d0ff53": { - "address": "0x511ef9ad5e645e533d15df605b4628e3d0d0ff53", - "symbol": "VU", - "decimals": 18, - "name": "Velvet Unicorn by Virtuals", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x511ef9ad5e645e533d15df605b4628e3d0d0ff53.png", - "aggregators": ["CoinGecko", "Rubic", "Squid", "Rango"], - "occurrences": 4 - }, - "0xd758916365b361cf833bb9c4c465ecd501ddd984": { - "address": "0xd758916365b361cf833bb9c4c465ecd501ddd984", - "symbol": "TOKEN", - "decimals": 18, - "name": "Token.com", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xd758916365b361cf833bb9c4c465ecd501ddd984.png", - "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0x667d0fb35364b0711b8566bee4dc3d0f96d6a688": { - "address": "0x667d0fb35364b0711b8566bee4dc3d0f96d6a688", - "symbol": "S", - "decimals": 18, - "name": "Token S", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x667d0fb35364b0711b8566bee4dc3d0f96d6a688.png", - "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0x3489256febdb1dc930dc3743617ad387cd6d3568": { - "address": "0x3489256febdb1dc930dc3743617ad387cd6d3568", - "symbol": "GAI", - "decimals": 18, - "name": "GraphAI", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x3489256febdb1dc930dc3743617ad387cd6d3568.png", - "aggregators": ["CoinGecko", "LiFi", "Rubic", "Rango"], - "occurrences": 4 - }, - "0x95ff646bcf1603ca78ad1619ddcfef1a228c0366": { - "address": "0x95ff646bcf1603ca78ad1619ddcfef1a228c0366", - "symbol": "NICO", - "decimals": 18, - "name": "Nico", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x95ff646bcf1603ca78ad1619ddcfef1a228c0366.png", - "aggregators": ["CoinGecko", "Rubic", "Squid", "Rango"], - "occurrences": 4 - }, - "0xe62bfbe57763ec24c0f130426f34dbce11fc5b06": { - "address": "0xe62bfbe57763ec24c0f130426f34dbce11fc5b06", - "symbol": "TITN", - "decimals": 18, - "name": "Titan", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xe62bfbe57763ec24c0f130426f34dbce11fc5b06.png", - "aggregators": ["CoinGecko", "1inch", "LiFi", "Rubic"], - "occurrences": 4 - }, - "0x517dbb32270fb39ae303e8ce94163f5beb9c3edb": { - "address": "0x517dbb32270fb39ae303e8ce94163f5beb9c3edb", - "symbol": "QOIN", - "decimals": 18, - "name": "ED TORQ", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x517dbb32270fb39ae303e8ce94163f5beb9c3edb.png", - "aggregators": ["CoinGecko", "Rubic", "Squid", "Rango"], - "occurrences": 4 - }, - "0x0382e3fee4a420bd446367d468a6f00225853420": { - "address": "0x0382e3fee4a420bd446367d468a6f00225853420", - "symbol": "CFI", - "decimals": 18, - "name": "ConsumerFi Protocol", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x0382e3fee4a420bd446367d468a6f00225853420.png", - "aggregators": ["CoinGecko", "LiFi", "Rubic", "Rango"], - "occurrences": 4 - }, - "0x7588880d9c78e81fade7b7e8dc0781e95995a792": { - "address": "0x7588880d9c78e81fade7b7e8dc0781e95995a792", - "symbol": "SAINT", - "decimals": 18, - "name": "Satoshi AI agent by Virtuals", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x7588880d9c78e81fade7b7e8dc0781e95995a792.png", - "aggregators": ["CoinGecko", "Rubic", "Squid", "Rango"], - "occurrences": 4 - }, - "0x04bc5918a08a526653e83420044b1a26ff34863b": { - "address": "0x04bc5918a08a526653e83420044b1a26ff34863b", - "symbol": "SDT", - "decimals": 18, - "name": "SkyNity SkyDust", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x04bc5918a08a526653e83420044b1a26ff34863b.png", - "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0x6a72d3a87f97a0fee2c2ee4233bdaebc32813d7a": { - "address": "0x6a72d3a87f97a0fee2c2ee4233bdaebc32813d7a", - "symbol": "ESX", - "decimals": 9, - "name": "EstateX", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x6a72d3a87f97a0fee2c2ee4233bdaebc32813d7a.png", - "aggregators": ["CoinGecko", "LiFi", "Rubic", "Rango"], - "occurrences": 4 - }, - "0x00000e7efa313f4e11bfff432471ed9423ac6b30": { - "address": "0x00000e7efa313f4e11bfff432471ed9423ac6b30", - "symbol": "HYDX", - "decimals": 18, - "name": "Hydrex", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x00000e7efa313f4e11bfff432471ed9423ac6b30.png", - "aggregators": ["CoinGecko", "LiFi", "Rubic", "Rango"], - "occurrences": 4 - }, - "0x64712fbdf19ae8b5b3b6d0478750e3d5e1a17718": { - "address": "0x64712fbdf19ae8b5b3b6d0478750e3d5e1a17718", - "symbol": "WAVE", - "decimals": 18, - "name": "Waveform by Virtuals", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x64712fbdf19ae8b5b3b6d0478750e3d5e1a17718.png", - "aggregators": ["CoinGecko", "Rubic", "Squid", "Rango"], - "occurrences": 4 - }, - "0xa7e4509dcb46a67e73c18fe0d11dd9a337e52ac0": { - "address": "0xa7e4509dcb46a67e73c18fe0d11dd9a337e52ac0", - "symbol": "FREN", - "decimals": 18, - "name": "Frencoin", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xa7e4509dcb46a67e73c18fe0d11dd9a337e52ac0.png", - "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0x03ceac3c28e353f5e4626c1242a6c7a41d004354": { - "address": "0x03ceac3c28e353f5e4626c1242a6c7a41d004354", - "symbol": "$BYTE", - "decimals": 18, - "name": "BYTE", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x03ceac3c28e353f5e4626c1242a6c7a41d004354.png", - "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0x4b5d32a07b8d3ec5d6928caa30196f8dd6a7c5a9": { - "address": "0x4b5d32a07b8d3ec5d6928caa30196f8dd6a7c5a9", - "symbol": "PRXVT", - "decimals": 18, - "name": "PRXVT by Virtuals", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x4b5d32a07b8d3ec5d6928caa30196f8dd6a7c5a9.png", - "aggregators": ["CoinGecko", "Rubic", "Squid", "Rango"], - "occurrences": 4 - }, - "0x7ce02e86354ea0cc3b302aeadc0ab56bc7eb44b8": { - "address": "0x7ce02e86354ea0cc3b302aeadc0ab56bc7eb44b8", - "symbol": "SIRE", - "decimals": 18, - "name": "SIRE", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x7ce02e86354ea0cc3b302aeadc0ab56bc7eb44b8.png", - "aggregators": ["CoinGecko", "LiFi", "Rubic", "Rango"], - "occurrences": 4 - }, - "0x44e1c6bc3a4d2058ee3f290bcb27c4da8c5b2e3e": { - "address": "0x44e1c6bc3a4d2058ee3f290bcb27c4da8c5b2e3e", - "symbol": "PEAGUY", - "decimals": 18, - "name": "The Pea Guy by Virtuals", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x44e1c6bc3a4d2058ee3f290bcb27c4da8c5b2e3e.png", - "aggregators": ["CoinGecko", "Rubic", "Squid", "Rango"], - "occurrences": 4 - }, - "0x3b313f5615bbd6b200c71f84ec2f677b94df8674": { - "address": "0x3b313f5615bbd6b200c71f84ec2f677b94df8674", - "symbol": "GLORIA", - "decimals": 18, - "name": "Gloria by Virtuals", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x3b313f5615bbd6b200c71f84ec2f677b94df8674.png", - "aggregators": ["CoinGecko", "Rubic", "Squid", "Rango"], - "occurrences": 4 - }, - "0x20fd4c5396f7d9686f9997e0f10991957f7112fc": { - "address": "0x20fd4c5396f7d9686f9997e0f10991957f7112fc", - "symbol": "GDUPI", - "decimals": 18, - "name": "redacted gdupi", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x20fd4c5396f7d9686f9997e0f10991957f7112fc.png", - "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0x08df470d41c11ba5cb60242747d76c65ca52c94c": { - "address": "0x08df470d41c11ba5cb60242747d76c65ca52c94c", - "symbol": "CPHY", - "decimals": 18, - "name": "Cypher Tempre by Virtuals", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x08df470d41c11ba5cb60242747d76c65ca52c94c.png", - "aggregators": ["CoinGecko", "Rubic", "Squid", "Rango"], - "occurrences": 4 - }, - "0xd1ab275e0b9798ae324c79c7133def6631426a2c": { - "address": "0xd1ab275e0b9798ae324c79c7133def6631426a2c", - "symbol": "ZOOF", - "decimals": 18, - "name": "Zoof Wallet by Virtuals", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xd1ab275e0b9798ae324c79c7133def6631426a2c.png", - "aggregators": ["CoinGecko", "Rubic", "Squid", "Rango"], - "occurrences": 4 - }, - "0xa749de6c28262b7ffbc5de27dc845dd7ecd2b358": { - "address": "0xa749de6c28262b7ffbc5de27dc845dd7ecd2b358", - "symbol": "VFY", - "decimals": 18, - "name": "zkVerify", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xa749de6c28262b7ffbc5de27dc845dd7ecd2b358.png", - "aggregators": ["CoinGecko", "LiFi", "Rubic", "Rango"], - "occurrences": 4 - }, - "0xaf4c1405aa8ab2a4f267a9700f9230ddc592f63f": { - "address": "0xaf4c1405aa8ab2a4f267a9700f9230ddc592f63f", - "symbol": "ZYGO", - "decimals": 18, - "name": "Zygo The Frog", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xaf4c1405aa8ab2a4f267a9700f9230ddc592f63f.png", - "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0xe0152db15014349d085985e879446bcae5d53094": { - "address": "0xe0152db15014349d085985e879446bcae5d53094", - "symbol": "SPX6900", - "decimals": 18, - "name": "Based SPX6900", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xe0152db15014349d085985e879446bcae5d53094.png", - "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0xf878e27afb649744eec3c5c0d03bc9335703cfe3": { - "address": "0xf878e27afb649744eec3c5c0d03bc9335703cfe3", - "symbol": "EOLAS", - "decimals": 18, - "name": "Eolas ☴", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xf878e27afb649744eec3c5c0d03bc9335703cfe3.png", - "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0x4b12507e171970b3acd48edfeb5bd1c676e61280": { - "address": "0x4b12507e171970b3acd48edfeb5bd1c676e61280", - "symbol": "IVT", - "decimals": 18, - "name": "ivault", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x4b12507e171970b3acd48edfeb5bd1c676e61280.png", - "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0xd769d56f479e9e72a77bb1523e866a33098feec5": { - "address": "0xd769d56f479e9e72a77bb1523e866a33098feec5", - "symbol": "BASE IS FOR EVERYONE", - "decimals": 18, - "name": "Base is for everyone", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xd769d56f479e9e72a77bb1523e866a33098feec5.png", - "aggregators": ["CoinGecko", "1inch", "Rubic", "Rango"], - "occurrences": 4 - }, - "0x8a0e751e5d7a2861ca7cf16d9720337e40604982": { - "address": "0x8a0e751e5d7a2861ca7cf16d9720337e40604982", - "symbol": "ENG", - "decimals": 18, - "name": "Eggle Energy", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x8a0e751e5d7a2861ca7cf16d9720337e40604982.png", - "aggregators": ["CoinGecko", "LiFi", "Rubic", "Rango"], - "occurrences": 4 - }, - "0x2e6c4bd1c947e195645d2b920b827498cfaa6766": { - "address": "0x2e6c4bd1c947e195645d2b920b827498cfaa6766", - "symbol": "CGN", - "decimals": 18, - "name": "CYGNUS", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x2e6c4bd1c947e195645d2b920b827498cfaa6766.png", - "aggregators": ["CoinGecko", "LiFi", "Rubic", "Rango"], - "occurrences": 4 - }, - "0x4c87da04887a1f9f21f777e3a8dd55c3c9f84701": { - "address": "0x4c87da04887a1f9f21f777e3a8dd55c3c9f84701", - "symbol": "COMMON", - "decimals": 18, - "name": "COMMON", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x4c87da04887a1f9f21f777e3a8dd55c3c9f84701.png", - "aggregators": ["CoinGecko", "LiFi", "Rubic", "Rango"], - "occurrences": 4 - }, - "0xb1a1d8cb266a7a4f6e070a7d2e026c5c02e788da": { - "address": "0xb1a1d8cb266a7a4f6e070a7d2e026c5c02e788da", - "symbol": "NEOX", - "decimals": 18, - "name": "Neox", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xb1a1d8cb266a7a4f6e070a7d2e026c5c02e788da.png", - "aggregators": ["CoinGecko", "Rubic", "Squid", "Rango"], - "occurrences": 4 - }, - "0x98ac5b33a4ef1151f138941c979211599c2ff953": { - "address": "0x98ac5b33a4ef1151f138941c979211599c2ff953", - "symbol": "VPAY", - "decimals": 18, - "name": "VPay", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x98ac5b33a4ef1151f138941c979211599c2ff953.png", - "aggregators": ["CoinGecko", "LiFi", "Rubic", "Squid"], - "occurrences": 4 - }, - "0x6967f0974d76d34e140cae27efea32cdf546b58e": { - "address": "0x6967f0974d76d34e140cae27efea32cdf546b58e", - "symbol": "GMRT", - "decimals": 18, - "name": "The Game Company", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x6967f0974d76d34e140cae27efea32cdf546b58e.png", - "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0xa81a52b4dda010896cdd386c7fbdc5cdc835ba23": { - "address": "0xa81a52b4dda010896cdd386c7fbdc5cdc835ba23", - "symbol": "TRAC", - "decimals": 18, - "name": "Trace Token", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xa81a52b4dda010896cdd386c7fbdc5cdc835ba23.png", - "aggregators": ["CoinGecko", "Socket", "Rubic", "Rango"], - "occurrences": 4 - }, - "0xefc2689d3e79252fba37e889a1b5ad92cedc6e4f": { - "address": "0xefc2689d3e79252fba37e889a1b5ad92cedc6e4f", - "symbol": "VEE", - "decimals": 18, - "name": "VEE", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xefc2689d3e79252fba37e889a1b5ad92cedc6e4f.png", - "aggregators": ["CoinGecko", "Socket", "Rubic", "Rango"], - "occurrences": 4 - }, - "0xc61f9663e05fccd84d4d6c56a373093437ecb899": { - "address": "0xc61f9663e05fccd84d4d6c56a373093437ecb899", - "symbol": "RARI", - "decimals": 18, - "name": "Rarible", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xc61f9663e05fccd84d4d6c56a373093437ecb899.png", - "aggregators": ["CoinGecko", "LiFi", "Rubic", "Rango"], - "occurrences": 4 - }, - "0x102d758f688a4c1c5a80b116bd945d4455460282": { - "address": "0x102d758f688a4c1c5a80b116bd945d4455460282", - "symbol": "USD₮0", - "decimals": 6, - "name": "Stargate USD₮0 (Bridged)", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x102d758f688a4c1c5a80b116bd945d4455460282.png", - "aggregators": ["CoinGecko", "LiFi", "Rubic", "Rango"], - "occurrences": 4 - }, - "0xa4ff56ef7ef4a2cad03cfa130208c9bc1b45d293": { - "address": "0xa4ff56ef7ef4a2cad03cfa130208c9bc1b45d293", - "symbol": "SAUCE", - "decimals": 6, - "name": "SAUCE", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xa4ff56ef7ef4a2cad03cfa130208c9bc1b45d293.png", - "aggregators": ["CoinGecko", "Rubic", "Squid", "Rango"], - "occurrences": 4 - }, - "0x519d3443cacc61bd844546edaea48e5502021802": { - "address": "0x519d3443cacc61bd844546edaea48e5502021802", - "symbol": "LL", - "decimals": 18, - "name": "LL", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x519d3443cacc61bd844546edaea48e5502021802.png", - "aggregators": ["CoinGecko", "Socket", "Rubic", "Rango"], - "occurrences": 4 - }, - "0x02300ac24838570012027e0a90d3feccef3c51d2": { - "address": "0x02300ac24838570012027e0a90d3feccef3c51d2", - "symbol": "FOOM", - "decimals": 18, - "name": "Foom", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x02300ac24838570012027e0a90d3feccef3c51d2.png", - "aggregators": ["CoinGecko", "Rubic", "Squid", "Rango"], - "occurrences": 4 - }, - "0x47636b3188774a3e7273d85a537b9ba4ee7b2535": { - "address": "0x47636b3188774a3e7273d85a537b9ba4ee7b2535", - "symbol": "SOMI", - "decimals": 18, - "name": "Somnia", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x47636b3188774a3e7273d85a537b9ba4ee7b2535.png", - "aggregators": ["Metamask", "LiFi", "Rubic", "Rango"], - "occurrences": 4 - }, - "0x4e107a0000db66f0e9fd2039288bf811dd1f9c74": { - "address": "0x4e107a0000db66f0e9fd2039288bf811dd1f9c74", - "symbol": "VLR", - "decimals": 18, - "name": "VLR", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x4e107a0000db66f0e9fd2039288bf811dd1f9c74.png", - "aggregators": ["CoinGecko", "LiFi", "Rubic", "Rango"], - "occurrences": 4 - }, - "0xfab99fcf605fd8f4593edb70a43ba56542777777": { - "address": "0xfab99fcf605fd8f4593edb70a43ba56542777777", - "symbol": "ZBT", - "decimals": 18, - "name": "ZBT", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xfab99fcf605fd8f4593edb70a43ba56542777777.png", - "aggregators": ["CoinGecko", "LiFi", "Rubic", "Rango"], - "occurrences": 4 - }, - "0x6b34d1c35689dba179c2eddf6a01530bbb1d28a8": { - "address": "0x6b34d1c35689dba179c2eddf6a01530bbb1d28a8", - "symbol": "CVAI", - "decimals": 18, - "name": "Agentlauncher", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x6b34d1c35689dba179c2eddf6a01530bbb1d28a8.png", - "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0xd6122ddada244913521f3d62006eaf756c157660": { - "address": "0xd6122ddada244913521f3d62006eaf756c157660", - "symbol": "BR", - "decimals": 18, - "name": "BR", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xd6122ddada244913521f3d62006eaf756c157660.png", - "aggregators": ["CoinGecko", "LiFi", "Rubic", "Rango"], - "occurrences": 4 - }, - "0x7543e3829ecdd61a5fd7c187ff88c4cf46e30f73": { - "address": "0x7543e3829ecdd61a5fd7c187ff88c4cf46e30f73", - "symbol": "ASF", - "decimals": 18, - "name": "ASF", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x7543e3829ecdd61a5fd7c187ff88c4cf46e30f73.png", - "aggregators": ["CoinGecko", "Socket", "Rubic", "Rango"], - "occurrences": 4 - }, - "0x93402f62aeda632b9d768092b61887c4e9a13079": { - "address": "0x93402f62aeda632b9d768092b61887c4e9a13079", - "symbol": "VERTAI", - "decimals": 18, - "name": "VERTAI", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x93402f62aeda632b9d768092b61887c4e9a13079.png", - "aggregators": ["CoinGecko", "LiFi", "Rubic", "Rango"], - "occurrences": 4 - }, - "0xb69bbb15095c0949489fbb43951d2b750fa7fa89": { - "address": "0xb69bbb15095c0949489fbb43951d2b750fa7fa89", - "symbol": "DEXTF", - "decimals": 18, - "name": "Memento", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xb69bbb15095c0949489fbb43951d2b750fa7fa89.png", - "aggregators": ["CoinGecko", "LiFi", "Rubic", "Rango"], - "occurrences": 4 - }, - "0xd080ed3c74a20250a2c9821885203034acd2d5ae": { - "address": "0xd080ed3c74a20250a2c9821885203034acd2d5ae", - "symbol": "ZFI", - "decimals": 18, - "name": "ZyFAI", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xd080ed3c74a20250a2c9821885203034acd2d5ae.png", - "aggregators": ["CoinGecko", "LiFi", "Rubic", "Rango"], - "occurrences": 4 - }, - "0x407a5fb66cb1b3d50004f7091c08a27b42ba6d6f": { - "address": "0x407a5fb66cb1b3d50004f7091c08a27b42ba6d6f", - "symbol": "ROBO", - "decimals": 18, - "name": "Fabric Protocol", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x407a5fb66cb1b3d50004f7091c08a27b42ba6d6f.png", - "aggregators": ["CoinGecko", "Rubic", "Squid", "Rango"], - "occurrences": 4 - }, - "0x00f3c42833c3170159af4e92dbb451fb3f708917": { - "address": "0x00f3c42833c3170159af4e92dbb451fb3f708917", - "symbol": "ICP", - "decimals": 8, - "name": "ICP", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x00f3c42833c3170159af4e92dbb451fb3f708917.png", - "aggregators": ["CoinGecko", "LiFi", "Rubic", "Rango"], - "occurrences": 4 - }, - "0x3376ebca0a85fc8d791b1001a571c41fdd61514a": { - "address": "0x3376ebca0a85fc8d791b1001a571c41fdd61514a", - "symbol": "BRBTC", - "decimals": 8, - "name": "BRBTC", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x3376ebca0a85fc8d791b1001a571c41fdd61514a.png", - "aggregators": ["CoinGecko", "LiFi", "Rubic", "Rango"], - "occurrences": 4 - }, - "0x45e4e92f5a94f4b741c9cb553ff8be7b25eb7df5": { - "address": "0x45e4e92f5a94f4b741c9cb553ff8be7b25eb7df5", - "symbol": "AITV", - "decimals": 18, - "name": "AITV", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x45e4e92f5a94f4b741c9cb553ff8be7b25eb7df5.png", - "aggregators": ["CoinGecko", "LiFi", "Rubic", "Rango"], - "occurrences": 4 - }, - "0x8102b2864eade51a1c36497747132af689824b59": { - "address": "0x8102b2864eade51a1c36497747132af689824b59", - "symbol": "DOLZ", - "decimals": 18, - "name": "DOLZ.io", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x8102b2864eade51a1c36497747132af689824b59.png", - "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0xe290816384416fb1db9225e176b716346db9f9fe": { - "address": "0xe290816384416fb1db9225e176b716346db9f9fe", - "symbol": "9MM", - "decimals": 18, - "name": "9mm", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xe290816384416fb1db9225e176b716346db9f9fe.png", - "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0x660975730059246a68521a3e2fbd4740173100f5": { - "address": "0x660975730059246a68521a3e2fbd4740173100f5", - "symbol": "SYRUPUSDC", - "decimals": 6, - "name": "SYRUPUSDC", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x660975730059246a68521a3e2fbd4740173100f5.png", - "aggregators": ["CoinGecko", "LiFi", "Rubic", "Rango"], - "occurrences": 4 - }, - "0x53cb59d32a8d08fc6d3f81454f150946a028a44d": { - "address": "0x53cb59d32a8d08fc6d3f81454f150946a028a44d", - "symbol": "GDEX", - "decimals": 18, - "name": "DexFi Governance", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x53cb59d32a8d08fc6d3f81454f150946a028a44d.png", - "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0xc694a91e6b071bf030a18bd3053a7fe09b6dae69": { - "address": "0xc694a91e6b071bf030a18bd3053a7fe09b6dae69", - "symbol": "COW", - "decimals": 18, - "name": "COW", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xc694a91e6b071bf030a18bd3053a7fe09b6dae69.png", - "aggregators": ["CoinGecko", "LiFi", "Rubic", "Rango"], - "occurrences": 4 - }, - "0x11a2021368f518fa390d20308076b25c57292e83": { - "address": "0x11a2021368f518fa390d20308076b25c57292e83", - "symbol": "HSAI", - "decimals": 18, - "name": "HealthSci.AI", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x11a2021368f518fa390d20308076b25c57292e83.png", - "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0xdd468a1ddc392dcdbef6db6e34e89aa338f9f186": { - "address": "0xdd468a1ddc392dcdbef6db6e34e89aa338f9f186", - "symbol": "MUSD", - "decimals": 18, - "name": "Mezo USD", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xdd468a1ddc392dcdbef6db6e34e89aa338f9f186.png", - "aggregators": ["CoinGecko", "LiFi", "Rubic", "Rango"], - "occurrences": 4 - }, - "0x9b9fd410d5f01a6a60acf4678a5a99d8027fa5a7": { - "address": "0x9b9fd410d5f01a6a60acf4678a5a99d8027fa5a7", - "symbol": "MYTH", - "decimals": 18, - "name": "MYTH", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x9b9fd410d5f01a6a60acf4678a5a99d8027fa5a7.png", - "aggregators": ["CoinGecko", "LiFi", "Rubic", "Rango"], - "occurrences": 4 - }, - "0x4552fa6b0d21b1b135ffa2a573a568d58300b5a9": { - "address": "0x4552fa6b0d21b1b135ffa2a573a568d58300b5a9", - "symbol": "SANCHO", - "decimals": 18, - "name": "Sancho", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x4552fa6b0d21b1b135ffa2a573a568d58300b5a9.png", - "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0x1fca74d9ef54a6ac80ffe7d3b14e76c4330fd5d8": { - "address": "0x1fca74d9ef54a6ac80ffe7d3b14e76c4330fd5d8", - "symbol": "VCHF", - "decimals": 18, - "name": "VCHF", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x1fca74d9ef54a6ac80ffe7d3b14e76c4330fd5d8.png", - "aggregators": ["CoinGecko", "LiFi", "Rubic", "Rango"], - "occurrences": 4 - }, - "0x7002987e5f63716273e77b51e12a578143c222aa": { - "address": "0x7002987e5f63716273e77b51e12a578143c222aa", - "symbol": "HAI", - "decimals": 18, - "name": "HAI", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x7002987e5f63716273e77b51e12a578143c222aa.png", - "aggregators": ["CoinGecko", "Socket", "Rubic", "Rango"], - "occurrences": 4 - }, - "0x16a3832e690278d4979fd072fa4913bd1e8cbfd8": { - "address": "0x16a3832e690278d4979fd072fa4913bd1e8cbfd8", - "symbol": "GPU", - "decimals": 18, - "name": "GPU", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x16a3832e690278d4979fd072fa4913bd1e8cbfd8.png", - "aggregators": ["CoinGecko", "LiFi", "Rubic", "Rango"], - "occurrences": 4 - }, - "0x70654aad8b7734dc319d0c3608ec7b32e03fa162": { - "address": "0x70654aad8b7734dc319d0c3608ec7b32e03fa162", - "symbol": "SATUSD", - "decimals": 18, - "name": "SATUSD", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x70654aad8b7734dc319d0c3608ec7b32e03fa162.png", - "aggregators": ["CoinGecko", "LiFi", "Rubic", "Rango"], - "occurrences": 4 - }, - "0x4933a85b5b5466fbaf179f72d3de273c287ec2c2": { - "address": "0x4933a85b5b5466fbaf179f72d3de273c287ec2c2", - "symbol": "EURAU", - "decimals": 6, - "name": "EURAU", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x4933a85b5b5466fbaf179f72d3de273c287ec2c2.png", - "aggregators": ["CoinGecko", "LiFi", "Rubic", "Rango"], - "occurrences": 4 - }, - "0x6722f882cc3a1b1034893efa9764397c88897892": { - "address": "0x6722f882cc3a1b1034893efa9764397c88897892", - "symbol": "STABUL", - "decimals": 18, - "name": "Stabull Finance", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x6722f882cc3a1b1034893efa9764397c88897892.png", - "aggregators": ["CoinGecko", "LiFi", "Rubic", "Rango"], - "occurrences": 4 - }, - "0xe4880249745eac5f1ed9d8f7df844792d560e750": { - "address": "0xe4880249745eac5f1ed9d8f7df844792d560e750", - "symbol": "USTBL", - "decimals": 5, - "name": "USTBL", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xe4880249745eac5f1ed9d8f7df844792d560e750.png", - "aggregators": ["CoinGecko", "LiFi", "Rubic", "Rango"], - "occurrences": 4 - }, - "0x0ceac003b0d2479bebec9f4b2ebad0a803759bbf": { - "address": "0x0ceac003b0d2479bebec9f4b2ebad0a803759bbf", - "symbol": "WFRAX", - "decimals": 18, - "name": "WFRAX", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x0ceac003b0d2479bebec9f4b2ebad0a803759bbf.png", - "aggregators": ["CoinGecko", "Socket", "Rubic", "Rango"], - "occurrences": 4 - }, - "0x66e535e8d2ebf13f49f3d49e5c50395a97c137b1": { - "address": "0x66e535e8d2ebf13f49f3d49e5c50395a97c137b1", - "symbol": "MOLTEN", - "decimals": 18, - "name": "Molten", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x66e535e8d2ebf13f49f3d49e5c50395a97c137b1.png", - "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0x3568c7a4f7545805e379c264303239781b4e9a79": { - "address": "0x3568c7a4f7545805e379c264303239781b4e9a79", - "symbol": "NEURON", - "decimals": 18, - "name": "Cerebrum DAO Token", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x3568c7a4f7545805e379c264303239781b4e9a79.png", - "aggregators": ["CoinGecko", "Socket", "Rubic", "Rango"], - "occurrences": 4 - }, - "0x93919784c523f39cacaa98ee0a9d96c3f32b593e": { - "address": "0x93919784c523f39cacaa98ee0a9d96c3f32b593e", - "symbol": "UNIBTC", - "decimals": 8, - "name": "UNIBTC", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x93919784c523f39cacaa98ee0a9d96c3f32b593e.png", - "aggregators": ["CoinGecko", "LiFi", "Rubic", "Rango"], - "occurrences": 4 - }, - "0xd4dd9e2f021bb459d5a5f6c24c12fe09c5d45553": { - "address": "0xd4dd9e2f021bb459d5a5f6c24c12fe09c5d45553", - "symbol": "ZCHF", - "decimals": 18, - "name": "ZCHF", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xd4dd9e2f021bb459d5a5f6c24c12fe09c5d45553.png", - "aggregators": ["CoinGecko", "LiFi", "Rubic", "Rango"], - "occurrences": 4 - }, - "0xa0769f7a8fc65e47de93797b4e21c073c117fc80": { - "address": "0xa0769f7a8fc65e47de93797b4e21c073c117fc80", - "symbol": "EUTBL", - "decimals": 5, - "name": "EUTBL", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xa0769f7a8fc65e47de93797b4e21c073c117fc80.png", - "aggregators": ["CoinGecko", "LiFi", "Rubic", "Rango"], - "occurrences": 4 - }, - "0xa7921e4c3dc8e38069061a07c08fc0d2a35b9e6f": { - "address": "0xa7921e4c3dc8e38069061a07c08fc0d2a35b9e6f", - "symbol": "ZED", - "decimals": 18, - "name": "ZED Token", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xa7921e4c3dc8e38069061a07c08fc0d2a35b9e6f.png", - "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0xd1db4851bcf5b41442caa32025ce0afe6b8eabc2": { - "address": "0xd1db4851bcf5b41442caa32025ce0afe6b8eabc2", - "symbol": "ZOOMER", - "decimals": 18, - "name": "Zoomer", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xd1db4851bcf5b41442caa32025ce0afe6b8eabc2.png", - "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0xa2c22252cdc8b7cddee1b0b2e242818509fcf7b8": { - "address": "0xa2c22252cdc8b7cddee1b0b2e242818509fcf7b8", - "symbol": "SXT", - "decimals": 18, - "name": "Space and Time", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xa2c22252cdc8b7cddee1b0b2e242818509fcf7b8.png", - "aggregators": ["CoinGecko", "LiFi", "Rubic", "Rango"], - "occurrences": 4 - }, - "0x2c271ddf484ac0386d216eb7eb9ff02d4dc0f6aa": { - "address": "0x2c271ddf484ac0386d216eb7eb9ff02d4dc0f6aa", - "symbol": "APYUSD", - "decimals": 18, - "name": "apyUSD", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x2c271ddf484ac0386d216eb7eb9ff02d4dc0f6aa.png", - "aggregators": ["CoinGecko", "LiFi", "Rubic", "Rango"], - "occurrences": 4 - }, - "0x2a66d51407b84b82b5aff3dec4d49f72cbcd322a": { - "address": "0x2a66d51407b84b82b5aff3dec4d49f72cbcd322a", - "symbol": "BEAM", - "decimals": 18, - "name": "BEAM", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x2a66d51407b84b82b5aff3dec4d49f72cbcd322a.png", - "aggregators": ["CoinGecko", "LiFi", "Rubic", "Rango"], - "occurrences": 4 - }, - "0x138746adfa52909e5920def027f5a8dc1c7effb6": { - "address": "0x138746adfa52909e5920def027f5a8dc1c7effb6", - "symbol": "ARIO", - "decimals": 6, - "name": "ARIO", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x138746adfa52909e5920def027f5a8dc1c7effb6.png", - "aggregators": ["CoinGecko", "LiFi", "Rubic", "Rango"], - "occurrences": 4 - }, - "0x524d524b4c9366be706d3a90dcf70076ca037ae3": { - "address": "0x524d524b4c9366be706d3a90dcf70076ca037ae3", - "symbol": "RMRK", - "decimals": 18, - "name": "RMRK", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x524d524b4c9366be706d3a90dcf70076ca037ae3.png", - "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0xb9e1fd5a02d3a33b25a14d661414e6ed6954a721": { - "address": "0xb9e1fd5a02d3a33b25a14d661414e6ed6954a721", - "symbol": "SOON", - "decimals": 18, - "name": "SOON Token", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xb9e1fd5a02d3a33b25a14d661414e6ed6954a721.png", - "aggregators": ["CoinGecko", "LiFi", "Rubic", "Rango"], - "occurrences": 4 - }, - "0x3e248ab4554cfdec8fc4f18f569fe6f46de61db1": { - "address": "0x3e248ab4554cfdec8fc4f18f569fe6f46de61db1", - "symbol": "SLAY", - "decimals": 6, - "name": "SLAY", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x3e248ab4554cfdec8fc4f18f569fe6f46de61db1.png", - "aggregators": ["CoinGecko", "Socket", "Rubic", "Rango"], - "occurrences": 4 - }, - "0x391359ab0ccef572dcac78f74e47d7c06db0b982": { - "address": "0x391359ab0ccef572dcac78f74e47d7c06db0b982", - "symbol": "SUPER", - "decimals": 18, - "name": "SUPER", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x391359ab0ccef572dcac78f74e47d7c06db0b982.png", - "aggregators": ["CoinGecko", "LiFi", "Rubic", "Rango"], - "occurrences": 4 - }, - "0xd46e2edc7314ee5cb69f86ab7b0e84e349971efb": { - "address": "0xd46e2edc7314ee5cb69f86ab7b0e84e349971efb", - "symbol": "APEMAN", - "decimals": 9, - "name": "Ape Man", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xd46e2edc7314ee5cb69f86ab7b0e84e349971efb.png", - "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0x0a4c9cb2778ab3302996a34befcf9a8bc288c33b": { - "address": "0x0a4c9cb2778ab3302996a34befcf9a8bc288c33b", - "symbol": "XSGD", - "decimals": 6, - "name": "XSGD", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x0a4c9cb2778ab3302996a34befcf9a8bc288c33b.png", - "aggregators": ["CoinGecko", "LiFi", "Rubic", "Rango"], - "occurrences": 4 - }, - "0xbb5cbdae23c5368557cc9a32337863eecf03cf9f": { - "address": "0xbb5cbdae23c5368557cc9a32337863eecf03cf9f", - "symbol": "BEPE", - "decimals": 18, - "name": "BEPE", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xbb5cbdae23c5368557cc9a32337863eecf03cf9f.png", - "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0x34be5b8c30ee4fde069dc878989686abe9884470": { - "address": "0x34be5b8c30ee4fde069dc878989686abe9884470", - "symbol": "SIDUS", - "decimals": 18, - "name": "Sidus", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x34be5b8c30ee4fde069dc878989686abe9884470.png", - "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0x45e7eaedb8e3360f850c963c5419a5236e451217": { - "address": "0x45e7eaedb8e3360f850c963c5419a5236e451217", - "symbol": "SATOSHI", - "decimals": 9, - "name": "Satoshi Nakamoto", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x45e7eaedb8e3360f850c963c5419a5236e451217.png", - "aggregators": ["CoinGecko", "Rubic", "Squid", "Rango"], - "occurrences": 4 - }, - "0x441fcb23dfe8289cf572126fedcf450974adc891": { - "address": "0x441fcb23dfe8289cf572126fedcf450974adc891", - "symbol": "RBTC", - "decimals": 18, - "name": "RBTC", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x441fcb23dfe8289cf572126fedcf450974adc891.png", - "aggregators": ["CoinGecko", "Socket", "Rubic", "Rango"], - "occurrences": 4 - }, - "0x9b5e262cf9bb04869ab40b19af91d2dc85761722": { - "address": "0x9b5e262cf9bb04869ab40b19af91d2dc85761722", - "symbol": "NOCK", - "decimals": 16, - "name": "Nock", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x9b5e262cf9bb04869ab40b19af91d2dc85761722.png", - "aggregators": ["CoinGecko", "LiFi", "Rubic", "Squid", "Rango"], - "occurrences": 5 - }, - "0xaaa0008c8cf3a7dca931adaf04336a5d808c82cc": { - "address": "0xaaa0008c8cf3a7dca931adaf04336a5d808c82cc", - "symbol": "DEJAAA", - "decimals": 18, - "name": "DeFi Janus Henderson Anemoy AAA CLO Fund", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xaaa0008c8cf3a7dca931adaf04336a5d808c82cc.png", - "aggregators": ["CoinGecko", "LiFi", "Rubic", "Rango"], - "occurrences": 4 - }, - "0x0a1a1a107e45b7ced86833863f482bc5f4ed82ef": { - "address": "0x0a1a1a107e45b7ced86833863f482bc5f4ed82ef", - "symbol": "USDAI", - "decimals": 18, - "name": "USDai", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x0a1a1a107e45b7ced86833863f482bc5f4ed82ef.png", - "aggregators": ["CoinGecko", "LiFi", "Rubic", "Rango"], - "occurrences": 4 - }, - "0x8d010bf9c26881788b4e6bf5fd1bdc358c8f90b8": { - "address": "0x8d010bf9c26881788b4e6bf5fd1bdc358c8f90b8", - "symbol": "DOT", - "decimals": 18, - "name": "Polkadot Token (Relay Chain)", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x8d010bf9c26881788b4e6bf5fd1bdc358c8f90b8.png", - "aggregators": ["CoinGecko", "LiFi", "Rubic", "Rango"], - "occurrences": 4 - }, - "0xabc5915cad6b54f48b2a8cd516055f378861c237": { - "address": "0xabc5915cad6b54f48b2a8cd516055f378861c237", - "symbol": "MDEX", - "decimals": 18, - "name": "MDEX", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xabc5915cad6b54f48b2a8cd516055f378861c237.png", - "aggregators": ["CoinGecko", "Socket", "Rubic", "Rango"], - "occurrences": 4 - }, - "0xea17df5cf6d172224892b5477a16acb111182478": { - "address": "0xea17df5cf6d172224892b5477a16acb111182478", - "symbol": "ELIZAOS", - "decimals": 9, - "name": "ELIZAOS", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xea17df5cf6d172224892b5477a16acb111182478.png", - "aggregators": ["CoinGecko", "1inch", "Rubic", "Rango"], - "occurrences": 4 - }, - "0xd09acb80c1e8f2291862c4978a008791c9167003": { - "address": "0xd09acb80c1e8f2291862c4978a008791c9167003", - "symbol": "TETH", - "decimals": 18, - "name": "TETH", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xd09acb80c1e8f2291862c4978a008791c9167003.png", - "aggregators": ["CoinGecko", "LiFi", "Rubic", "Rango"], - "occurrences": 4 - }, - "0x00000000efe302beaa2b3e6e1b18d08d69a9012a": { - "address": "0x00000000efe302beaa2b3e6e1b18d08d69a9012a", - "symbol": "AUSD", - "decimals": 6, - "name": "AUSD", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x00000000efe302beaa2b3e6e1b18d08d69a9012a.png", - "aggregators": ["CoinGecko", "LiFi", "Rubic", "Rango"], - "occurrences": 4 - }, - "0x4eb92702ba4cfbf80561bad64d89c706ac824960": { - "address": "0x4eb92702ba4cfbf80561bad64d89c706ac824960", - "symbol": "RED", - "decimals": 18, - "name": "RED", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x4eb92702ba4cfbf80561bad64d89c706ac824960.png", - "aggregators": ["CoinGecko", "LiFi", "Rubic", "Rango"], - "occurrences": 4 - }, - "0xba8cd87120aca631f59231f9fd6c5469bbee3440": { - "address": "0xba8cd87120aca631f59231f9fd6c5469bbee3440", - "symbol": "ITP", - "decimals": 18, - "name": "Infinite Trading Protocol", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xba8cd87120aca631f59231f9fd6c5469bbee3440.png", - "aggregators": ["CoinGecko", "LiFi", "Rubic", "Rango"], - "occurrences": 4 - }, - "0xeca139be1214322752b4e427b1800fd3e8037bf8": { - "address": "0xeca139be1214322752b4e427b1800fd3e8037bf8", - "symbol": "DSTRX", - "decimals": 18, - "name": "DSTRX", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xeca139be1214322752b4e427b1800fd3e8037bf8.png", - "aggregators": ["CoinGecko", "Socket", "Rubic", "Rango"], - "occurrences": 4 - }, - "0xf732a566121fa6362e9e0fbdd6d66e5c8c925e49": { - "address": "0xf732a566121fa6362e9e0fbdd6d66e5c8c925e49", - "symbol": "LITKEY", - "decimals": 18, - "name": "Lit Protocol", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xf732a566121fa6362e9e0fbdd6d66e5c8c925e49.png", - "aggregators": ["CoinGecko", "Socket", "Rubic", "Rango"], - "occurrences": 4 - }, - "0x472ed57b376fe400259fb28e5c46eb53f0e3e7e7": { - "address": "0x472ed57b376fe400259fb28e5c46eb53f0e3e7e7", - "symbol": "SUSDP", - "decimals": 18, - "name": "SUSDP", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x472ed57b376fe400259fb28e5c46eb53f0e3e7e7.png", - "aggregators": ["CoinGecko", "LiFi", "Rubic", "Rango"], - "occurrences": 4 - }, - "0xbf82115918a88e2120c0f73d99ccd8f95c301b59": { - "address": "0xbf82115918a88e2120c0f73d99ccd8f95c301b59", - "symbol": "WNK", - "decimals": 18, - "name": "Winkies", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xbf82115918a88e2120c0f73d99ccd8f95c301b59.png", - "aggregators": ["Metamask", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0x6653dd4b92a0e5bf8ae570a98906d9d6fd2eec09": { - "address": "0x6653dd4b92a0e5bf8ae570a98906d9d6fd2eec09", - "symbol": "RCKT", - "decimals": 18, - "name": "RocketSwap", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x6653dd4b92a0e5bf8ae570a98906d9d6fd2eec09.png", - "aggregators": ["1inch", "LiFi", "Rubic", "Rango"], - "occurrences": 4 - }, - "0x1045971c168b5294acbc8727a4f1c9e1af99f6d0": { - "address": "0x1045971c168b5294acbc8727a4f1c9e1af99f6d0", - "symbol": "FTN", - "decimals": 18, - "name": "Fasttoken", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x1045971c168b5294acbc8727a4f1c9e1af99f6d0.png", - "aggregators": ["LiFi", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0xb170000aeefa790fa61d6e837d1035906839a3c8": { - "address": "0xb170000aeefa790fa61d6e837d1035906839a3c8", - "symbol": "PINTO", - "decimals": 6, - "name": "Pinto", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xb170000aeefa790fa61d6e837d1035906839a3c8.png", - "aggregators": ["LiFi", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0xc63529297de076eb15fcbe873ae9136e446cfbb9": { - "address": "0xc63529297de076eb15fcbe873ae9136e446cfbb9", - "symbol": "GYFI", - "decimals": 18, - "name": "Gyroscope", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xc63529297de076eb15fcbe873ae9136e446cfbb9.png", - "aggregators": ["LiFi", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0x047157cffb8841a64db93fd4e29fa3796b78466c": { - "address": "0x047157cffb8841a64db93fd4e29fa3796b78466c", - "symbol": "DEV", - "decimals": 18, - "name": "Scout Protocol Token", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x047157cffb8841a64db93fd4e29fa3796b78466c.png", - "aggregators": ["LiFi", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0x4a3a6dd60a34bb2aba60d73b4c88315e9ceb6a3d": { - "address": "0x4a3a6dd60a34bb2aba60d73b4c88315e9ceb6a3d", - "symbol": "MIM", - "decimals": 18, - "name": "Magic Internet Money (Base)", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x4a3a6dd60a34bb2aba60d73b4c88315e9ceb6a3d.png", - "aggregators": ["LiFi", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0x4bf3ccf7da80751c0db8272ed54e2932900563a2": { - "address": "0x4bf3ccf7da80751c0db8272ed54e2932900563a2", - "symbol": "CITDEL", - "decimals": 18, - "name": "Citadel by Virtuals", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x4bf3ccf7da80751c0db8272ed54e2932900563a2.png", - "aggregators": ["Rubic", "Squid", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0x39d24405ca717ef841e4a782da97284cf2dc7628": { - "address": "0x39d24405ca717ef841e4a782da97284cf2dc7628", - "symbol": "ZEEK", - "decimals": 18, - "name": "Agent Zeek by Virtuals", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x39d24405ca717ef841e4a782da97284cf2dc7628.png", - "aggregators": ["Rubic", "Squid", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0xfe0c0b15798b8c9107cd4aa556a87eb031263e8b": { - "address": "0xfe0c0b15798b8c9107cd4aa556a87eb031263e8b", - "symbol": "AETX", - "decimals": 8, - "name": "AetherX", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xfe0c0b15798b8c9107cd4aa556a87eb031263e8b.png", - "aggregators": ["Rubic", "Squid", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0xe4a7b54c0a30da69c04dc54b89868c185ff382bc": { - "address": "0xe4a7b54c0a30da69c04dc54b89868c185ff382bc", - "symbol": "EMILIA", - "decimals": 18, - "name": "Emilia", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xe4a7b54c0a30da69c04dc54b89868c185ff382bc.png", - "aggregators": ["Rubic", "Squid", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0x01ccf4941298a0b5ac4714c0e1799a2df8387048": { - "address": "0x01ccf4941298a0b5ac4714c0e1799a2df8387048", - "symbol": "YUP", - "decimals": 18, - "name": "Yup", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x01ccf4941298a0b5ac4714c0e1799a2df8387048.png", - "aggregators": ["Rubic", "Squid", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0x3fbde9864362ce4abb244ebef2ef0482aba8ea39": { - "address": "0x3fbde9864362ce4abb244ebef2ef0482aba8ea39", - "symbol": "BAVA", - "decimals": 18, - "name": "Baklava", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x3fbde9864362ce4abb244ebef2ef0482aba8ea39.png", - "aggregators": ["Rubic", "Squid", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0xff9957816c813c5ad0b9881a8990df1e3aa2a057": { - "address": "0xff9957816c813c5ad0b9881a8990df1e3aa2a057", - "symbol": "JAM", - "decimals": 18, - "name": "Geojam", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xff9957816c813c5ad0b9881a8990df1e3aa2a057.png", - "aggregators": ["UniswapLabs", "Socket", "Rango"], - "occurrences": 3 - }, - "0xce1eab31756a48915b7e7bb79c589835aac6242d": { - "address": "0xce1eab31756a48915b7e7bb79c589835aac6242d", - "symbol": "BRAIN", - "decimals": 18, - "name": "Gigabrain", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xce1eab31756a48915b7e7bb79c589835aac6242d.png", - "aggregators": ["CoinGecko", "Rubic", "Squid"], - "occurrences": 3 - }, - "0x75f2231a289ea35895246b21e9c6e5bbf5ce69ed": { - "address": "0x75f2231a289ea35895246b21e9c6e5bbf5ce69ed", - "symbol": "ALT", - "decimals": 18, - "name": "AltLayer", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x75f2231a289ea35895246b21e9c6e5bbf5ce69ed.png", - "aggregators": ["LiFi", "Socket", "Rango"], - "occurrences": 3 - }, - "0x5259384690acf240e9b0a8811bd0ffbfbddc125c": { - "address": "0x5259384690acf240e9b0a8811bd0ffbfbddc125c", - "symbol": "LQTY", - "decimals": 18, - "name": "LQTY", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x5259384690acf240e9b0a8811bd0ffbfbddc125c.png", - "aggregators": ["LiFi", "Socket", "Rango"], - "occurrences": 3 - }, - "0xba7d47f471add16875e765edee0858c3413a56fd": { - "address": "0xba7d47f471add16875e765edee0858c3413a56fd", - "symbol": "MTA", - "decimals": 18, - "name": "Meta", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xba7d47f471add16875e765edee0858c3413a56fd.png", - "aggregators": ["LiFi", "Socket", "Rango"], - "occurrences": 3 - }, - "0xf8e9e61ffb2b491f7df29823a76009743671cd96": { - "address": "0xf8e9e61ffb2b491f7df29823a76009743671cd96", - "symbol": "TRB", - "decimals": 18, - "name": "Tellor Tributes", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xf8e9e61ffb2b491f7df29823a76009743671cd96.png", - "aggregators": ["LiFi", "Socket", "Rango"], - "occurrences": 3 - }, - "0xd0d1e44fc9adaeb732f73ffc2429cd1db9cd4529": { - "address": "0xd0d1e44fc9adaeb732f73ffc2429cd1db9cd4529", - "symbol": "SIPHER", - "decimals": 18, - "name": "Sipher Token", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xd0d1e44fc9adaeb732f73ffc2429cd1db9cd4529.png", - "aggregators": ["LiFi", "Socket", "Rango"], - "occurrences": 3 - }, - "0xb358489d5d92641edb4d8ee8063f8005964346ba": { - "address": "0xb358489d5d92641edb4d8ee8063f8005964346ba", - "symbol": "AMP", - "decimals": 18, - "name": "Amp", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xb358489d5d92641edb4d8ee8063f8005964346ba.png", - "aggregators": ["LiFi", "Socket", "Rango"], - "occurrences": 3 - }, - "0xe2a8ccb00e328a0ec2204cb0c736309d7c1fa556": { - "address": "0xe2a8ccb00e328a0ec2204cb0c736309d7c1fa556", - "symbol": "ABT", - "decimals": 18, - "name": "ArcBlock", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xe2a8ccb00e328a0ec2204cb0c736309d7c1fa556.png", - "aggregators": ["LiFi", "Socket", "Rango"], - "occurrences": 3 - }, - "0x0d760ee479401bb4c40bdb7604b329fff411b3f2": { - "address": "0x0d760ee479401bb4c40bdb7604b329fff411b3f2", - "symbol": "LRC", - "decimals": 18, - "name": "LoopringCoin V2", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x0d760ee479401bb4c40bdb7604b329fff411b3f2.png", - "aggregators": ["LiFi", "Socket", "Rango"], - "occurrences": 3 - }, - "0x74f804b4140ee70830b3eef4e690325841575f89": { - "address": "0x74f804b4140ee70830b3eef4e690325841575f89", - "symbol": "FET", - "decimals": 18, - "name": "Fetch", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x74f804b4140ee70830b3eef4e690325841575f89.png", - "aggregators": ["LiFi", "Socket", "Rango"], - "occurrences": 3 - }, - "0x28fe69ff6864c1c218878bdca01482d36b9d57b1": { - "address": "0x28fe69ff6864c1c218878bdca01482d36b9d57b1", - "symbol": "KNC", - "decimals": 18, - "name": "Kyber Network Crystal v2", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x28fe69ff6864c1c218878bdca01482d36b9d57b1.png", - "aggregators": ["Socket", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x321725ee44cb4bfa544cf45a5a585b925d30a58c": { - "address": "0x321725ee44cb4bfa544cf45a5a585b925d30a58c", - "symbol": "GROW", - "decimals": 18, - "name": "ValleyDAO Token", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x321725ee44cb4bfa544cf45a5a585b925d30a58c.png", - "aggregators": ["Socket", "Rubic", "Rango"], - "occurrences": 3 - }, - "0xf734efde0c424ba2b547b186586de417b0954802": { - "address": "0xf734efde0c424ba2b547b186586de417b0954802", - "symbol": "SILO", - "decimals": 18, - "name": "Silo Governance Token", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xf734efde0c424ba2b547b186586de417b0954802.png", - "aggregators": ["Socket", "Rubic", "Rango"], - "occurrences": 3 - }, - "0xf04d220b8136e2d3d4be08081dbb565c3c302ffd": { - "address": "0xf04d220b8136e2d3d4be08081dbb565c3c302ffd", - "symbol": "FREYA", - "decimals": 18, - "name": "Freya by Virtuals", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xf04d220b8136e2d3d4be08081dbb565c3c302ffd.png", - "aggregators": ["Rubic", "Squid", "Rango"], - "occurrences": 3 - }, - "0xddf7d080c82b8048baae54e376a3406572429b4e": { - "address": "0xddf7d080c82b8048baae54e376a3406572429b4e", - "symbol": "OOOOOO", - "decimals": 18, - "name": "GODDOG", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xddf7d080c82b8048baae54e376a3406572429b4e.png", - "aggregators": ["Rubic", "Squid", "Rango"], - "occurrences": 3 - }, - "0x22af33fe49fd1fa80c7149773dde5890d3c76f3b": { - "address": "0x22af33fe49fd1fa80c7149773dde5890d3c76f3b", - "symbol": "BNKR", - "decimals": 18, - "name": "BankrCoin", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x22af33fe49fd1fa80c7149773dde5890d3c76f3b.png", - "aggregators": [ - "CoinGecko", - "1inch", - "LiFi", - "Rubic", - "Squid", - "Rango", - "Sonarwatch" - ], - "occurrences": 7 - }, - "0xc0041ef357b183448b235a8ea73ce4e4ec8c265f": { - "address": "0xc0041ef357b183448b235a8ea73ce4e4ec8c265f", - "symbol": "COOKIE", - "decimals": 18, - "name": "Cookie DAO", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xc0041ef357b183448b235a8ea73ce4e4ec8c265f.png", - "aggregators": [ - "CoinGecko", - "LiFi", - "Socket", - "Rubic", - "Squid", - "Rango", - "Sonarwatch" - ], - "occurrences": 7 - }, - "0x5ab3d4c385b400f3abb49e80de2faf6a88a7b691": { - "address": "0x5ab3d4c385b400f3abb49e80de2faf6a88a7b691", - "symbol": "FLOCK", - "decimals": 18, - "name": "FLOCK", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x5ab3d4c385b400f3abb49e80de2faf6a88a7b691.png", - "aggregators": [ - "CoinGecko", - "1inch", - "LiFi", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 7 - }, - "0xf9569cfb8fd265e91aa478d86ae8c78b8af55df4": { - "address": "0xf9569cfb8fd265e91aa478d86ae8c78b8af55df4", - "symbol": "AUKI", - "decimals": 18, - "name": "Auki Token", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xf9569cfb8fd265e91aa478d86ae8c78b8af55df4.png", - "aggregators": [ - "CoinGecko", - "LiFi", - "Rubic", - "Squid", - "Rango", - "Sonarwatch", - "SushiSwap" - ], - "occurrences": 7 - }, - "0x768be13e1680b5ebe0024c42c896e3db59ec0149": { - "address": "0x768be13e1680b5ebe0024c42c896e3db59ec0149", - "symbol": "SKI", - "decimals": 9, - "name": "Ski Mask Dog", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x768be13e1680b5ebe0024c42c896e3db59ec0149.png", - "aggregators": [ - "CoinGecko", - "1inch", - "LiFi", - "Rubic", - "Squid", - "Rango", - "Sonarwatch" - ], - "occurrences": 7 - }, - "0x0d97f261b1e88845184f678e2d1e7a98d9fd38de": { - "address": "0x0d97f261b1e88845184f678e2d1e7a98d9fd38de", - "symbol": "TYBG", - "decimals": 18, - "name": "Base God", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x0d97f261b1e88845184f678e2d1e7a98d9fd38de.png", - "aggregators": [ - "CoinGecko", - "1inch", - "Rubic", - "Squid", - "Rango", - "Sonarwatch", - "SushiSwap" - ], - "occurrences": 7 - }, - "0xbc45647ea894030a4e9801ec03479739fa2485f0": { - "address": "0xbc45647ea894030a4e9801ec03479739fa2485f0", - "symbol": "BENJI", - "decimals": 18, - "name": "Basenji", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xbc45647ea894030a4e9801ec03479739fa2485f0.png", - "aggregators": [ - "CoinGecko", - "LiFi", - "Socket", - "Rubic", - "Rango", - "Sonarwatch", - "SushiSwap" - ], - "occurrences": 7 - }, - "0x63706e401c06ac8513145b7687a14804d17f814b": { - "address": "0x63706e401c06ac8513145b7687a14804d17f814b", - "symbol": "AAVE", - "decimals": 18, - "name": "Aave", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x63706e401c06ac8513145b7687a14804d17f814b.png", - "aggregators": [ - "CoinGecko", - "LiFi", - "Socket", - "Rubic", - "Squid", - "Rango", - "Sonarwatch" - ], - "occurrences": 7 - }, - "0xecac9c5f704e954931349da37f60e39f515c11c1": { - "address": "0xecac9c5f704e954931349da37f60e39f515c11c1", - "symbol": "LBTC", - "decimals": 8, - "name": "Lombard Staked BTC", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xecac9c5f704e954931349da37f60e39f515c11c1.png", - "aggregators": [ - "CoinGecko", - "LiFi", - "Socket", - "Rubic", - "Squid", - "Rango", - "Sonarwatch" - ], - "occurrences": 7 - }, - "0xcfa3ef56d303ae4faaba0592388f19d7c3399fb4": { - "address": "0xcfa3ef56d303ae4faaba0592388f19d7c3399fb4", - "symbol": "EUSD", - "decimals": 18, - "name": "Electronic USD", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xcfa3ef56d303ae4faaba0592388f19d7c3399fb4.png", - "aggregators": [ - "CoinGecko", - "LiFi", - "Socket", - "Rubic", - "Squid", - "Rango", - "Sonarwatch" - ], - "occurrences": 7 - }, - "0x3124678d62d2aa1f615b54525310fbfda6dcf7ae": { - "address": "0x3124678d62d2aa1f615b54525310fbfda6dcf7ae", - "symbol": "SNSY", - "decimals": 18, - "name": "Sensay", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x3124678d62d2aa1f615b54525310fbfda6dcf7ae.png", - "aggregators": [ - "CoinGecko", - "LiFi", - "Socket", - "Rubic", - "Rango", - "Sonarwatch", - "SushiSwap" - ], - "occurrences": 7 - }, - "0xb33ff54b9f7242ef1593d2c9bcd8f9df46c77935": { - "address": "0xb33ff54b9f7242ef1593d2c9bcd8f9df46c77935", - "symbol": "FAI", - "decimals": 18, - "name": "Freysa AI", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xb33ff54b9f7242ef1593d2c9bcd8f9df46c77935.png", - "aggregators": [ - "CoinGecko", - "LiFi", - "Rubic", - "Squid", - "Rango", - "Sonarwatch" - ], - "occurrences": 6 - }, - "0x3e31966d4f81c72d2a55310a6365a56a4393e98d": { - "address": "0x3e31966d4f81c72d2a55310a6365a56a4393e98d", - "symbol": "WMTX", - "decimals": 6, - "name": "World Mobile Token", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x3e31966d4f81c72d2a55310a6365a56a4393e98d.png", - "aggregators": [ - "Metamask", - "LiFi", - "Rubic", - "Squid", - "Rango", - "Sonarwatch" - ], - "occurrences": 6 - }, - "0x18a8bd1fe17a1bb9ffb39ecd83e9489cfd17a022": { - "address": "0x18a8bd1fe17a1bb9ffb39ecd83e9489cfd17a022", - "symbol": "ANDY", - "decimals": 18, - "name": "Andy", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x18a8bd1fe17a1bb9ffb39ecd83e9489cfd17a022.png", - "aggregators": [ - "CoinGecko", - "Rubic", - "Squid", - "Rango", - "Sonarwatch", - "SushiSwap" - ], - "occurrences": 6 - }, - "0x1185cb5122edad199bdbc0cbd7a0457e448f23c7": { - "address": "0x1185cb5122edad199bdbc0cbd7a0457e448f23c7", - "symbol": "SEKOIA", - "decimals": 18, - "name": "sekoia by Virtuals", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x1185cb5122edad199bdbc0cbd7a0457e448f23c7.png", - "aggregators": [ - "CoinGecko", - "LiFi", - "Rubic", - "Squid", - "Rango", - "Sonarwatch" - ], - "occurrences": 6 - }, - "0x1b5ce2a593a840e3ad3549a34d7b3dec697c114d": { - "address": "0x1b5ce2a593a840e3ad3549a34d7b3dec697c114d", - "symbol": "ALTT", - "decimals": 18, - "name": "Altcoinist Token", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x1b5ce2a593a840e3ad3549a34d7b3dec697c114d.png", - "aggregators": [ - "CoinGecko", - "LiFi", - "Rubic", - "Squid", - "Rango", - "Sonarwatch" - ], - "occurrences": 6 - }, - "0xbe3111856e4aca828593274ea6872f27968c8dd6": { - "address": "0xbe3111856e4aca828593274ea6872f27968c8dd6", - "symbol": "KRAV", - "decimals": 18, - "name": "KRAV", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xbe3111856e4aca828593274ea6872f27968c8dd6.png", - "aggregators": [ - "CoinGecko", - "Rubic", - "Squid", - "Rango", - "Sonarwatch", - "SushiSwap" - ], - "occurrences": 6 - }, - "0x9b8df6e244526ab5f6e6400d331db28c8fdddb55": { - "address": "0x9b8df6e244526ab5f6e6400d331db28c8fdddb55", - "symbol": "USOL", - "decimals": 18, - "name": "Wrapped Solana (Universal)", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x9b8df6e244526ab5f6e6400d331db28c8fdddb55.png", - "aggregators": [ - "CoinGecko", - "1inch", - "LiFi", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 6 - }, - "0x6b2504a03ca4d43d0d73776f6ad46dab2f2a4cfd": { - "address": "0x6b2504a03ca4d43d0d73776f6ad46dab2f2a4cfd", - "symbol": "REI", - "decimals": 18, - "name": "Unit 00 - Rei", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x6b2504a03ca4d43d0d73776f6ad46dab2f2a4cfd.png", - "aggregators": [ - "CoinGecko", - "LiFi", - "Rubic", - "Squid", - "Rango", - "Sonarwatch" - ], - "occurrences": 6 - }, - "0x70737489dfdf1a29b7584d40500d3561bd4fe196": { - "address": "0x70737489dfdf1a29b7584d40500d3561bd4fe196", - "symbol": "BORED", - "decimals": 18, - "name": "BORED", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x70737489dfdf1a29b7584d40500d3561bd4fe196.png", - "aggregators": [ - "CoinGecko", - "LiFi", - "Rubic", - "Squid", - "Rango", - "Sonarwatch" - ], - "occurrences": 6 - }, - "0xcb327b99ff831bf8223cced12b1338ff3aa322ff": { - "address": "0xcb327b99ff831bf8223cced12b1338ff3aa322ff", - "symbol": "BSDETH", - "decimals": 18, - "name": "Based ETH", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xcb327b99ff831bf8223cced12b1338ff3aa322ff.png", - "aggregators": [ - "CoinGecko", - "1inch", - "LiFi", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 6 - }, - "0x85483696cc9970ad9edd786b2c5ef735f38d156f": { - "address": "0x85483696cc9970ad9edd786b2c5ef735f38d156f", - "symbol": "USDC+", - "decimals": 6, - "name": "Overnight.fi USDC+", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x85483696cc9970ad9edd786b2c5ef735f38d156f.png", - "aggregators": [ - "CoinGecko", - "LiFi", - "Rubic", - "Squid", - "Rango", - "Sonarwatch" - ], - "occurrences": 6 - }, - "0xecaf81eb42cd30014eb44130b89bcd6d4ad98b92": { - "address": "0xecaf81eb42cd30014eb44130b89bcd6d4ad98b92", - "symbol": "CHAD", - "decimals": 18, - "name": "Based Chad", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xecaf81eb42cd30014eb44130b89bcd6d4ad98b92.png", - "aggregators": [ - "CoinGecko", - "Socket", - "Rubic", - "Rango", - "Sonarwatch", - "SushiSwap" - ], - "occurrences": 6 - }, - "0x42069babe14fb1802c5cb0f50bb9d2ad6fef55e2": { - "address": "0x42069babe14fb1802c5cb0f50bb9d2ad6fef55e2", - "symbol": "FROK", - "decimals": 18, - "name": "frok.ai", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x42069babe14fb1802c5cb0f50bb9d2ad6fef55e2.png", - "aggregators": [ - "Metamask", - "LiFi", - "Rubic", - "Squid", - "Rango", - "Sonarwatch" - ], - "occurrences": 6 - }, - "0x3a46ed8fceb6ef1ada2e4600a522ae7e24d2ed18": { - "address": "0x3a46ed8fceb6ef1ada2e4600a522ae7e24d2ed18", - "symbol": "USSI", - "decimals": 8, - "name": "USSI", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x3a46ed8fceb6ef1ada2e4600a522ae7e24d2ed18.png", - "aggregators": [ - "CoinGecko", - "LiFi", - "Rubic", - "Squid", - "Rango", - "Sonarwatch" - ], - "occurrences": 6 - }, - "0xf6e932ca12afa26665dc4dde7e27be02a7c02e50": { - "address": "0xf6e932ca12afa26665dc4dde7e27be02a7c02e50", - "symbol": "MOCHI", - "decimals": 18, - "name": "Mochi", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xf6e932ca12afa26665dc4dde7e27be02a7c02e50.png", - "aggregators": [ - "CoinGecko", - "1inch", - "Rubic", - "Rango", - "Sonarwatch", - "SushiSwap" - ], - "occurrences": 6 - }, - "0x54016a4848a38f257b6e96331f7404073fd9c32c": { - "address": "0x54016a4848a38f257b6e96331f7404073fd9c32c", - "symbol": "SCALE", - "decimals": 18, - "name": "Equalizer (BASE)", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x54016a4848a38f257b6e96331f7404073fd9c32c.png", - "aggregators": [ - "CoinGecko", - "LiFi", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 6 - }, - "0xc08cd26474722ce93f4d0c34d16201461c10aa8c": { - "address": "0xc08cd26474722ce93f4d0c34d16201461c10aa8c", - "symbol": "CARV", - "decimals": 18, - "name": "CARV", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xc08cd26474722ce93f4d0c34d16201461c10aa8c.png", - "aggregators": [ - "CoinGecko", - "LiFi", - "Rubic", - "Squid", - "Rango", - "Sonarwatch" - ], - "occurrences": 6 - }, - "0xb1a03eda10342529bbf8eb700a06c60441fef25d": { - "address": "0xb1a03eda10342529bbf8eb700a06c60441fef25d", - "symbol": "MIGGLES", - "decimals": 18, - "name": "Mister Miggles", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xb1a03eda10342529bbf8eb700a06c60441fef25d.png", - "aggregators": [ - "CoinGecko", - "LiFi", - "Rubic", - "Squid", - "Rango", - "Sonarwatch" - ], - "occurrences": 6 - }, - "0x47b464edb8dc9bc67b5cd4c9310bb87b773845bd": { - "address": "0x47b464edb8dc9bc67b5cd4c9310bb87b773845bd", - "symbol": "NORMIE", - "decimals": 9, - "name": "Normie", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x47b464edb8dc9bc67b5cd4c9310bb87b773845bd.png", - "aggregators": [ - "CoinGecko", - "Rubic", - "Squid", - "Rango", - "Sonarwatch", - "SushiSwap" - ], - "occurrences": 6 - }, - "0x4e74d4db6c0726ccded4656d0bce448876bb4c7a": { - "address": "0x4e74d4db6c0726ccded4656d0bce448876bb4c7a", - "symbol": "WBLT", - "decimals": 18, - "name": "Wrapped BMX Liquidity Token", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x4e74d4db6c0726ccded4656d0bce448876bb4c7a.png", - "aggregators": [ - "CoinGecko", - "LiFi", - "Rubic", - "Squid", - "Rango", - "Sonarwatch" - ], - "occurrences": 6 - }, - "0xdcefd8c8fcc492630b943abcab3429f12ea9fea2": { - "address": "0xdcefd8c8fcc492630b943abcab3429f12ea9fea2", - "symbol": "KLIMA", - "decimals": 18, - "name": "KlimaDAO", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xdcefd8c8fcc492630b943abcab3429f12ea9fea2.png", - "aggregators": [ - "CoinGecko", - "LiFi", - "Rubic", - "Squid", - "Rango", - "Sonarwatch" - ], - "occurrences": 6 - }, - "0xe3b53af74a4bf62ae5511055290838050bf764df": { - "address": "0xe3b53af74a4bf62ae5511055290838050bf764df", - "symbol": "STG", - "decimals": 18, - "name": "Stargate Finance", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xe3b53af74a4bf62ae5511055290838050bf764df.png", - "aggregators": [ - "CoinGecko", - "LiFi", - "Rubic", - "Squid", - "Rango", - "Sonarwatch" - ], - "occurrences": 6 - }, - "0x157a6df6b74f4e5e45af4e4615fde7b49225a662": { - "address": "0x157a6df6b74f4e5e45af4e4615fde7b49225a662", - "symbol": "ISLAND", - "decimals": 18, - "name": "ISLAND Token", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x157a6df6b74f4e5e45af4e4615fde7b49225a662.png", - "aggregators": [ - "CoinGecko", - "LiFi", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 6 - }, - "0x1a35ee4640b0a3b87705b0a4b45d227ba60ca2ad": { - "address": "0x1a35ee4640b0a3b87705b0a4b45d227ba60ca2ad", - "symbol": "AXLWBTC", - "decimals": 8, - "name": "axlWBTC", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x1a35ee4640b0a3b87705b0a4b45d227ba60ca2ad.png", - "aggregators": [ - "CoinGecko", - "LiFi", - "Rubic", - "Squid", - "Rango", - "Sonarwatch" - ], - "occurrences": 6 - }, - "0xdf49c226ed9cf05be0e38cdb86df4e8a945158b1": { - "address": "0xdf49c226ed9cf05be0e38cdb86df4e8a945158b1", - "symbol": "ZENT", - "decimals": 18, - "name": "ZENT", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xdf49c226ed9cf05be0e38cdb86df4e8a945158b1.png", - "aggregators": [ - "CoinGecko", - "LiFi", - "Socket", - "Rubic", - "Squid", - "Rango" - ], - "occurrences": 6 - }, - "0xfd4330b0312fdeec6d4225075b82e00493ff2e3f": { - "address": "0xfd4330b0312fdeec6d4225075b82e00493ff2e3f", - "symbol": "SDEX", - "decimals": 18, - "name": "SmarDex", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xfd4330b0312fdeec6d4225075b82e00493ff2e3f.png", - "aggregators": [ - "CoinGecko", - "LiFi", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 6 - }, - "0x968be3f7bfef0f8edc3c1ad90232ebb0da0867aa": { - "address": "0x968be3f7bfef0f8edc3c1ad90232ebb0da0867aa", - "symbol": "SWORLD", - "decimals": 18, - "name": "Seedworld", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x968be3f7bfef0f8edc3c1ad90232ebb0da0867aa.png", - "aggregators": [ - "CoinGecko", - "Socket", - "Rubic", - "Squid", - "Rango", - "Sonarwatch" - ], - "occurrences": 6 - }, - "0xfb1aaba03c31ea98a3eec7591808acb1947ee7ac": { - "address": "0xfb1aaba03c31ea98a3eec7591808acb1947ee7ac", - "symbol": "GNS", - "decimals": 18, - "name": "Gains Network", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xfb1aaba03c31ea98a3eec7591808acb1947ee7ac.png", - "aggregators": [ - "CoinGecko", - "LiFi", - "Rubic", - "Squid", - "Rango", - "Sonarwatch" - ], - "occurrences": 6 - }, - "0xf544251d25f3d243a36b07e7e7962a678f952691": { - "address": "0xf544251d25f3d243a36b07e7e7962a678f952691", - "symbol": "TAROT", - "decimals": 18, - "name": "Tarot", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xf544251d25f3d243a36b07e7e7962a678f952691.png", - "aggregators": [ - "CoinGecko", - "LiFi", - "Rubic", - "Squid", - "Rango", - "Sonarwatch" - ], - "occurrences": 6 - }, - "0x9c632e6aaa3ea73f91554f8a3cb2ed2f29605e0c": { - "address": "0x9c632e6aaa3ea73f91554f8a3cb2ed2f29605e0c", - "symbol": "XCN", - "decimals": 18, - "name": "Onyxcoin", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x9c632e6aaa3ea73f91554f8a3cb2ed2f29605e0c.png", - "aggregators": [ - "CoinGecko", - "LiFi", - "Rubic", - "Squid", - "Rango", - "Sonarwatch" - ], - "occurrences": 6 - }, - "0x3b86ad95859b6ab773f55f8d94b4b9d443ee931f": { - "address": "0x3b86ad95859b6ab773f55f8d94b4b9d443ee931f", - "symbol": "SOLVBTC", - "decimals": 18, - "name": "Solv Protocol SolvBTC", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x3b86ad95859b6ab773f55f8d94b4b9d443ee931f.png", - "aggregators": [ - "CoinGecko", - "LiFi", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 6 - }, - "0xc55e93c62874d8100dbd2dfe307edc1036ad5434": { - "address": "0xc55e93c62874d8100dbd2dfe307edc1036ad5434", - "symbol": "MOOBIFI", - "decimals": 18, - "name": "Staked BIFI", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xc55e93c62874d8100dbd2dfe307edc1036ad5434.png", - "aggregators": [ - "CoinGecko", - "LiFi", - "Rubic", - "Squid", - "Rango", - "Sonarwatch" - ], - "occurrences": 6 - }, - "0x26f3901ac8a79c50fb0d8289c74f0d09adc42e29": { - "address": "0x26f3901ac8a79c50fb0d8289c74f0d09adc42e29", - "symbol": "T", - "decimals": 18, - "name": "Threshold Network", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x26f3901ac8a79c50fb0d8289c74f0d09adc42e29.png", - "aggregators": [ - "CoinGecko", - "LiFi", - "Rubic", - "Squid", - "Rango", - "Sonarwatch" - ], - "occurrences": 6 - }, - "0xd89d90d26b48940fa8f58385fe84625d468e057a": { - "address": "0xd89d90d26b48940fa8f58385fe84625d468e057a", - "symbol": "AVAIL", - "decimals": 18, - "name": "Avail", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xd89d90d26b48940fa8f58385fe84625d468e057a.png", - "aggregators": [ - "CoinGecko", - "LiFi", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 6 - }, - "0x12418783e860997eb99e8acf682df952f721cf62": { - "address": "0x12418783e860997eb99e8acf682df952f721cf62", - "symbol": "IBTC", - "decimals": 8, - "name": "iBTC Network", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x12418783e860997eb99e8acf682df952f721cf62.png", - "aggregators": [ - "CoinGecko", - "1inch", - "LiFi", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 6 - }, - "0x2598c30330d5771ae9f983979209486ae26de875": { - "address": "0x2598c30330d5771ae9f983979209486ae26de875", - "symbol": "AI", - "decimals": 18, - "name": "Any Inu", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x2598c30330d5771ae9f983979209486ae26de875.png", - "aggregators": [ - "CoinGecko", - "Socket", - "Rubic", - "Squid", - "Rango", - "Sonarwatch" - ], - "occurrences": 6 - }, - "0x6921b130d297cc43754afba22e5eac0fbf8db75b": { - "address": "0x6921b130d297cc43754afba22e5eac0fbf8db75b", - "symbol": "DOGINME", - "decimals": 18, - "name": "doginme", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x6921b130d297cc43754afba22e5eac0fbf8db75b.png", - "aggregators": [ - "CoinGecko", - "LiFi", - "Rubic", - "Squid", - "Rango", - "Sonarwatch" - ], - "occurrences": 6 - }, - "0x9d0e8f5b25384c7310cb8c6ae32c8fbeb645d083": { - "address": "0x9d0e8f5b25384c7310cb8c6ae32c8fbeb645d083", - "symbol": "DRV", - "decimals": 18, - "name": "Derive", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x9d0e8f5b25384c7310cb8c6ae32c8fbeb645d083.png", - "aggregators": ["CoinGecko", "LiFi", "Rubic", "Squid", "Rango"], - "occurrences": 5 - }, - "0x78ec15c5fd8efc5e924e9eebb9e549e29c785867": { - "address": "0x78ec15c5fd8efc5e924e9eebb9e549e29c785867", - "symbol": "TORUS", - "decimals": 18, - "name": "Torus", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x78ec15c5fd8efc5e924e9eebb9e549e29c785867.png", - "aggregators": [ - "CoinGecko", - "LiFi", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x2676e4e0e2eb58d9bdb5078358ff8a3a964cedf5": { - "address": "0x2676e4e0e2eb58d9bdb5078358ff8a3a964cedf5", - "symbol": "POLY", - "decimals": 18, - "name": "Polytrader by Virtuals", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x2676e4e0e2eb58d9bdb5078358ff8a3a964cedf5.png", - "aggregators": [ - "CoinGecko", - "Rubic", - "Squid", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x0fd7a301b51d0a83fcaf6718628174d527b373b6": { - "address": "0x0fd7a301b51d0a83fcaf6718628174d527b373b6", - "symbol": "LUM", - "decimals": 18, - "name": "Luminous", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x0fd7a301b51d0a83fcaf6718628174d527b373b6.png", - "aggregators": [ - "CoinGecko", - "Rubic", - "Squid", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x09f29e2acdb76a831668b03ce2e3ad7bb41aaa5c": { - "address": "0x09f29e2acdb76a831668b03ce2e3ad7bb41aaa5c", - "symbol": "BAPE", - "decimals": 18, - "name": "Baseape", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x09f29e2acdb76a831668b03ce2e3ad7bb41aaa5c.png", - "aggregators": [ - "CoinGecko", - "Rubic", - "Squid", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x4d25e94291fe8dcfbfa572cbb2aaa7b755087c91": { - "address": "0x4d25e94291fe8dcfbfa572cbb2aaa7b755087c91", - "symbol": "HIGH", - "decimals": 18, - "name": "High", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x4d25e94291fe8dcfbfa572cbb2aaa7b755087c91.png", - "aggregators": [ - "CoinGecko", - "Rubic", - "Rango", - "Sonarwatch", - "SushiSwap" - ], - "occurrences": 5 - }, - "0xc0d3700000987c99b3c9009069e4f8413fd22330": { - "address": "0xc0d3700000987c99b3c9009069e4f8413fd22330", - "symbol": "CDXUSD", - "decimals": 18, - "name": "Cod3x USD", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xc0d3700000987c99b3c9009069e4f8413fd22330.png", - "aggregators": [ - "CoinGecko", - "LiFi", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0xd5046b976188eb40f6de40fb527f89c05b323385": { - "address": "0xd5046b976188eb40f6de40fb527f89c05b323385", - "symbol": "BSX", - "decimals": 18, - "name": "BaseX", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xd5046b976188eb40f6de40fb527f89c05b323385.png", - "aggregators": ["CoinGecko", "LiFi", "Rubic", "Squid", "Rango"], - "occurrences": 5 - }, - "0xbefd5c25a59ef2c1316c5a4944931171f30cd3e4": { - "address": "0xbefd5c25a59ef2c1316c5a4944931171f30cd3e4", - "symbol": "GOLD", - "decimals": 18, - "name": "GoldenBoys", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xbefd5c25a59ef2c1316c5a4944931171f30cd3e4.png", - "aggregators": [ - "CoinGecko", - "LiFi", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x54eaf6bb665565bb8897f9d7ad5b3818ded143b4": { - "address": "0x54eaf6bb665565bb8897f9d7ad5b3818ded143b4", - "symbol": "DGENAI", - "decimals": 18, - "name": "Degen AI by Virtuals", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x54eaf6bb665565bb8897f9d7ad5b3818ded143b4.png", - "aggregators": [ - "CoinGecko", - "Rubic", - "Squid", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x414562c94223a5c4df9f278422f03228f35b8f7d": { - "address": "0x414562c94223a5c4df9f278422f03228f35b8f7d", - "symbol": "VBEA", - "decimals": 18, - "name": "VirtuBeauty by Virtuals", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x414562c94223a5c4df9f278422f03228f35b8f7d.png", - "aggregators": [ - "CoinGecko", - "Rubic", - "Squid", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0xda761a290e01c69325d12d82ac402e5a73d62e81": { - "address": "0xda761a290e01c69325d12d82ac402e5a73d62e81", - "symbol": "BPS", - "decimals": 18, - "name": "Base Pro Shops", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xda761a290e01c69325d12d82ac402e5a73d62e81.png", - "aggregators": [ - "CoinGecko", - "Rubic", - "Rango", - "Sonarwatch", - "SushiSwap" - ], - "occurrences": 5 - }, - "0xeb6d78148f001f3aa2f588997c5e102e489ad341": { - "address": "0xeb6d78148f001f3aa2f588997c5e102e489ad341", - "symbol": "CHAMP", - "decimals": 18, - "name": "Super Champs", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xeb6d78148f001f3aa2f588997c5e102e489ad341.png", - "aggregators": [ - "CoinGecko", - "Rubic", - "Squid", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x800822d361335b4d5f352dac293ca4128b5b605f": { - "address": "0x800822d361335b4d5f352dac293ca4128b5b605f", - "symbol": "SYMM", - "decimals": 18, - "name": "Symmio", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x800822d361335b4d5f352dac293ca4128b5b605f.png", - "aggregators": ["CoinGecko", "LiFi", "Rubic", "Squid", "Rango"], - "occurrences": 5 - }, - "0x10f434b3d1cc13a4a79b062dcc25706f64d10d47": { - "address": "0x10f434b3d1cc13a4a79b062dcc25706f64d10d47", - "symbol": "BEPE", - "decimals": 9, - "name": "BEPE", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x10f434b3d1cc13a4a79b062dcc25706f64d10d47.png", - "aggregators": [ - "CoinGecko", - "Rubic", - "Squid", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x52b492a33e447cdb854c7fc19f1e57e8bfa1777d": { - "address": "0x52b492a33e447cdb854c7fc19f1e57e8bfa1777d", - "symbol": "PEPE", - "decimals": 18, - "name": "Based Pepe", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x52b492a33e447cdb854c7fc19f1e57e8bfa1777d.png", - "aggregators": [ - "CoinGecko", - "Rubic", - "Squid", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0xbeef010f9cb27031ad51e3333f9af9c6b1228183": { - "address": "0xbeef010f9cb27031ad51e3333f9af9c6b1228183", - "symbol": "STEAKUSDC", - "decimals": 18, - "name": "Steakhouse USDC (Base) Morpho Vault", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xbeef010f9cb27031ad51e3333f9af9c6b1228183.png", - "aggregators": [ - "CoinGecko", - "LiFi", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0xb34457736aa191ff423f84f5d669f68b231e6c4e": { - "address": "0xb34457736aa191ff423f84f5d669f68b231e6c4e", - "symbol": "AIDOGE", - "decimals": 18, - "name": "AGENT DOGE by Virtuals", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xb34457736aa191ff423f84f5d669f68b231e6c4e.png", - "aggregators": [ - "CoinGecko", - "Rubic", - "Squid", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x5b5dee44552546ecea05edea01dcd7be7aa6144a": { - "address": "0x5b5dee44552546ecea05edea01dcd7be7aa6144a", - "symbol": "TN100X", - "decimals": 18, - "name": "TN100x", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x5b5dee44552546ecea05edea01dcd7be7aa6144a.png", - "aggregators": [ - "CoinGecko", - "Rubic", - "Squid", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0xebff2db643cf955247339c8c6bcd8406308ca437": { - "address": "0xebff2db643cf955247339c8c6bcd8406308ca437", - "symbol": "CHOMP", - "decimals": 18, - "name": "ChompCoin", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xebff2db643cf955247339c8c6bcd8406308ca437.png", - "aggregators": [ - "CoinGecko", - "Rubic", - "Squid", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x0c03ce270b4826ec62e7dd007f0b716068639f7b": { - "address": "0x0c03ce270b4826ec62e7dd007f0b716068639f7b", - "symbol": "TIG", - "decimals": 18, - "name": "The Innovation Game", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x0c03ce270b4826ec62e7dd007f0b716068639f7b.png", - "aggregators": [ - "CoinGecko", - "LiFi", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x2156006a207a793b4069a2b72be58dc2bd759232": { - "address": "0x2156006a207a793b4069a2b72be58dc2bd759232", - "symbol": "COIN", - "decimals": 18, - "name": "SwapBased COIN", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x2156006a207a793b4069a2b72be58dc2bd759232.png", - "aggregators": [ - "CoinGecko", - "Rubic", - "Squid", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0xd07379a755a8f11b57610154861d694b2a0f615a": { - "address": "0xd07379a755a8f11b57610154861d694b2a0f615a", - "symbol": "BASE", - "decimals": 18, - "name": "Base", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xd07379a755a8f11b57610154861d694b2a0f615a.png", - "aggregators": [ - "CoinGecko", - "Rubic", - "Squid", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x41e0fe1317bd6e8944b037cd59b22d428c1434c2": { - "address": "0x41e0fe1317bd6e8944b037cd59b22d428c1434c2", - "symbol": "VIRTU", - "decimals": 18, - "name": "Virtu", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x41e0fe1317bd6e8944b037cd59b22d428c1434c2.png", - "aggregators": [ - "CoinGecko", - "Rubic", - "Squid", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x161e113b8e9bbaefb846f73f31624f6f9607bd44": { - "address": "0x161e113b8e9bbaefb846f73f31624f6f9607bd44", - "symbol": "SIMMI", - "decimals": 18, - "name": "Simmi Token", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x161e113b8e9bbaefb846f73f31624f6f9607bd44.png", - "aggregators": [ - "CoinGecko", - "Rubic", - "Squid", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x0c5142bc58f9a61ab8c3d2085dd2f4e550c5ce0b": { - "address": "0x0c5142bc58f9a61ab8c3d2085dd2f4e550c5ce0b", - "symbol": "RUSSELL", - "decimals": 18, - "name": "RUSSELL", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x0c5142bc58f9a61ab8c3d2085dd2f4e550c5ce0b.png", - "aggregators": [ - "CoinGecko", - "LiFi", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x6b9bb36519538e0c073894e964e90172e1c0b41f": { - "address": "0x6b9bb36519538e0c073894e964e90172e1c0b41f", - "symbol": "WEWE", - "decimals": 18, - "name": "WEWECOIN", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x6b9bb36519538e0c073894e964e90172e1c0b41f.png", - "aggregators": [ - "CoinGecko", - "Rubic", - "Squid", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x9a33406165f562e16c3abd82fd1185482e01b49a": { - "address": "0x9a33406165f562e16c3abd82fd1185482e01b49a", - "symbol": "TALENT", - "decimals": 18, - "name": "Talent Protocol", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x9a33406165f562e16c3abd82fd1185482e01b49a.png", - "aggregators": [ - "CoinGecko", - "LiFi", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x54b659832f59c24cec0e4a2cd193377f1bcefc3c": { - "address": "0x54b659832f59c24cec0e4a2cd193377f1bcefc3c", - "symbol": "AK1111", - "decimals": 18, - "name": "Akashalife", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x54b659832f59c24cec0e4a2cd193377f1bcefc3c.png", - "aggregators": [ - "CoinGecko", - "Rubic", - "Squid", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x1ccb4b14a11e0f2994a7ecbbd4cc69632f4c7c76": { - "address": "0x1ccb4b14a11e0f2994a7ecbbd4cc69632f4c7c76", - "symbol": "CCC", - "decimals": 18, - "name": "Cute Cat Candle", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x1ccb4b14a11e0f2994a7ecbbd4cc69632f4c7c76.png", - "aggregators": [ - "CoinGecko", - "Rubic", - "Squid", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x7d9ce55d54ff3feddb611fc63ff63ec01f26d15f": { - "address": "0x7d9ce55d54ff3feddb611fc63ff63ec01f26d15f", - "symbol": "FUNGI", - "decimals": 9, - "name": "Fungi", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x7d9ce55d54ff3feddb611fc63ff63ec01f26d15f.png", - "aggregators": [ - "CoinGecko", - "LiFi", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x1dd2d631c92b1acdfcdd51a0f7145a50130050c4": { - "address": "0x1dd2d631c92b1acdfcdd51a0f7145a50130050c4", - "symbol": "ALB", - "decimals": 18, - "name": "Alien Base", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x1dd2d631c92b1acdfcdd51a0f7145a50130050c4.png", - "aggregators": [ - "CoinGecko", - "LiFi", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0xe2c86869216ac578bd62a4b8313770d9ee359a05": { - "address": "0xe2c86869216ac578bd62a4b8313770d9ee359a05", - "symbol": "EMT", - "decimals": 18, - "name": "EMAIL Token", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xe2c86869216ac578bd62a4b8313770d9ee359a05.png", - "aggregators": [ - "CoinGecko", - "1inch", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0xbf10dce9775ed5eae22789638da56c33b6c34633": { - "address": "0xbf10dce9775ed5eae22789638da56c33b6c34633", - "symbol": "GENZAI", - "decimals": 18, - "name": "GENZAI by Virtuals", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xbf10dce9775ed5eae22789638da56c33b6c34633.png", - "aggregators": [ - "CoinGecko", - "Rubic", - "Squid", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x98f4779fccb177a6d856dd1dfd78cd15b7cd2af5": { - "address": "0x98f4779fccb177a6d856dd1dfd78cd15b7cd2af5", - "symbol": "MISATO", - "decimals": 18, - "name": "MISATO", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x98f4779fccb177a6d856dd1dfd78cd15b7cd2af5.png", - "aggregators": [ - "CoinGecko", - "Rubic", - "Squid", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x5a7a2bf9ffae199f088b25837dcd7e115cf8e1bb": { - "address": "0x5a7a2bf9ffae199f088b25837dcd7e115cf8e1bb", - "symbol": "IMO", - "decimals": 18, - "name": "IMO", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x5a7a2bf9ffae199f088b25837dcd7e115cf8e1bb.png", - "aggregators": [ - "CoinGecko", - "LiFi", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x686015ebf044a1b8a4be750346be00293a996071": { - "address": "0x686015ebf044a1b8a4be750346be00293a996071", - "symbol": "MINDS", - "decimals": 18, - "name": "Minds", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x686015ebf044a1b8a4be750346be00293a996071.png", - "aggregators": [ - "CoinGecko", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x54330d28ca3357f294334bdc454a032e7f353416": { - "address": "0x54330d28ca3357f294334bdc454a032e7f353416", - "symbol": "OLAS", - "decimals": 18, - "name": "Autonolas", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x54330d28ca3357f294334bdc454a032e7f353416.png", - "aggregators": ["CoinGecko", "LiFi", "Socket", "Rubic", "Rango"], - "occurrences": 5 - }, - "0x514d8e8099286a13486ef6c525c120f51c239b52": { - "address": "0x514d8e8099286a13486ef6c525c120f51c239b52", - "symbol": "OBT", - "decimals": 18, - "name": "Orbiter Finance", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x514d8e8099286a13486ef6c525c120f51c239b52.png", - "aggregators": [ - "CoinGecko", - "LiFi", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x3a38dde9824e18cc4c0a147824f95bf5d608f0b3": { - "address": "0x3a38dde9824e18cc4c0a147824f95bf5d608f0b3", - "symbol": "HAIR", - "decimals": 18, - "name": "HairDAO", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x3a38dde9824e18cc4c0a147824f95bf5d608f0b3.png", - "aggregators": ["CoinGecko", "LiFi", "Socket", "Rubic", "Rango"], - "occurrences": 5 - }, - "0xe997017e0cb0ceb503565f181e9ea922cd979c35": { - "address": "0xe997017e0cb0ceb503565f181e9ea922cd979c35", - "symbol": "LMWR", - "decimals": 18, - "name": "LimeWire", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xe997017e0cb0ceb503565f181e9ea922cd979c35.png", - "aggregators": [ - "CoinGecko", - "LiFi", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x64b88c73a5dfa78d1713fe1b4c69a22d7e0faaa7": { - "address": "0x64b88c73a5dfa78d1713fe1b4c69a22d7e0faaa7", - "symbol": "MAV", - "decimals": 18, - "name": "Maverick Protocol", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x64b88c73a5dfa78d1713fe1b4c69a22d7e0faaa7.png", - "aggregators": [ - "CoinGecko", - "LiFi", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x67f0870bb897f5e1c369976b4a2962d527b9562c": { - "address": "0x67f0870bb897f5e1c369976b4a2962d527b9562c", - "symbol": "DOGE", - "decimals": 18, - "name": "Department Of Government Efficiency", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x67f0870bb897f5e1c369976b4a2962d527b9562c.png", - "aggregators": [ - "CoinGecko", - "Rubic", - "Squid", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x02454a97a8372f3a760a033dbb39e67d73bd6d87": { - "address": "0x02454a97a8372f3a760a033dbb39e67d73bd6d87", - "symbol": "KATA", - "decimals": 18, - "name": "Katana Inu", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x02454a97a8372f3a760a033dbb39e67d73bd6d87.png", - "aggregators": [ - "CoinGecko", - "Rubic", - "Squid", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x490a4b510d0ea9f835d2df29eb73b4fca5071937": { - "address": "0x490a4b510d0ea9f835d2df29eb73b4fca5071937", - "symbol": "VITA", - "decimals": 18, - "name": "VitaDAO Token", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x490a4b510d0ea9f835d2df29eb73b4fca5071937.png", - "aggregators": ["CoinGecko", "LiFi", "Socket", "Rubic", "Rango"], - "occurrences": 5 - }, - "0xeff2a458e464b07088bdb441c21a42ab4b61e07e": { - "address": "0xeff2a458e464b07088bdb441c21a42ab4b61e07e", - "symbol": "PDT", - "decimals": 18, - "name": "ParagonsDAO", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xeff2a458e464b07088bdb441c21a42ab4b61e07e.png", - "aggregators": [ - "CoinGecko", - "LiFi", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x2dad3a13ef0c6366220f989157009e501e7938f8": { - "address": "0x2dad3a13ef0c6366220f989157009e501e7938f8", - "symbol": "EXTRA", - "decimals": 18, - "name": "Extra Finance", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x2dad3a13ef0c6366220f989157009e501e7938f8.png", - "aggregators": [ - "CoinGecko", - "LiFi", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x623cd3a3edf080057892aaf8d773bbb7a5c9b6e9": { - "address": "0x623cd3a3edf080057892aaf8d773bbb7a5c9b6e9", - "symbol": "SKYA", - "decimals": 18, - "name": "Sekuya Multiverse", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x623cd3a3edf080057892aaf8d773bbb7a5c9b6e9.png", - "aggregators": [ - "CoinGecko", - "LiFi", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0xfe550bffb51eb645ea3b324d772a19ac449e92c5": { - "address": "0xfe550bffb51eb645ea3b324d772a19ac449e92c5", - "symbol": "IXS", - "decimals": 18, - "name": "IX Swap", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xfe550bffb51eb645ea3b324d772a19ac449e92c5.png", - "aggregators": [ - "CoinGecko", - "LiFi", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x52c2b317eb0bb61e650683d2f287f56c413e4cf6": { - "address": "0x52c2b317eb0bb61e650683d2f287f56c413e4cf6", - "symbol": "TREE", - "decimals": 18, - "name": "Tree", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x52c2b317eb0bb61e650683d2f287f56c413e4cf6.png", - "aggregators": [ - "CoinGecko", - "LiFi", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x91ad1b44913cd1b8241a4ff1e2eaa198da6bf4c9": { - "address": "0x91ad1b44913cd1b8241a4ff1e2eaa198da6bf4c9", - "symbol": "ALU", - "decimals": 18, - "name": "Altura", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x91ad1b44913cd1b8241a4ff1e2eaa198da6bf4c9.png", - "aggregators": [ - "CoinGecko", - "LiFi", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0xb8a9a92dfe1303728394dd0f8362a09962dec24f": { - "address": "0xb8a9a92dfe1303728394dd0f8362a09962dec24f", - "symbol": "IBEX", - "decimals": 18, - "name": "Impermax", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xb8a9a92dfe1303728394dd0f8362a09962dec24f.png", - "aggregators": [ - "CoinGecko", - "LiFi", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x4b556f3a476b58be7f35df77edd68fbe5076f706": { - "address": "0x4b556f3a476b58be7f35df77edd68fbe5076f706", - "symbol": "MSS", - "decimals": 18, - "name": "MintStakeShare", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x4b556f3a476b58be7f35df77edd68fbe5076f706.png", - "aggregators": [ - "CoinGecko", - "Rubic", - "Squid", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x57f5e098cad7a3d1eed53991d4d66c45c9af7812": { - "address": "0x57f5e098cad7a3d1eed53991d4d66c45c9af7812", - "symbol": "WUSDM", - "decimals": 18, - "name": "Wrapped USDM", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x57f5e098cad7a3d1eed53991d4d66c45c9af7812.png", - "aggregators": [ - "CoinGecko", - "LiFi", - "Socket", - "Rubic", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0xc7edf7b7b3667a06992508e7b156eff794a9e1c8": { - "address": "0xc7edf7b7b3667a06992508e7b156eff794a9e1c8", - "symbol": "XPRT", - "decimals": 6, - "name": "Persistence One", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xc7edf7b7b3667a06992508e7b156eff794a9e1c8.png", - "aggregators": [ - "CoinGecko", - "Rubic", - "Squid", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x46777c76dbbe40fabb2aab99e33ce20058e76c59": { - "address": "0x46777c76dbbe40fabb2aab99e33ce20058e76c59", - "symbol": "L3", - "decimals": 18, - "name": "Layer3", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x46777c76dbbe40fabb2aab99e33ce20058e76c59.png", - "aggregators": [ - "CoinGecko", - "LiFi", - "Rubic", - "Squid", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0xef0b105b4f2ce61d2a7ae62d03b1f4cb6c4fbeec": { - "address": "0xef0b105b4f2ce61d2a7ae62d03b1f4cb6c4fbeec", - "symbol": "SLN", - "decimals": 18, - "name": "Smart Layer Network", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xef0b105b4f2ce61d2a7ae62d03b1f4cb6c4fbeec.png", - "aggregators": [ - "CoinGecko", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x54bc229d1cb15f8b6415efeab4290a40bc8b7d84": { - "address": "0x54bc229d1cb15f8b6415efeab4290a40bc8b7d84", - "symbol": "DHT", - "decimals": 18, - "name": "dHEDGE DAO", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x54bc229d1cb15f8b6415efeab4290a40bc8b7d84.png", - "aggregators": [ - "CoinGecko", - "LiFi", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x24569d33653c404f90af10a2b98d6e0030d3d267": { - "address": "0x24569d33653c404f90af10a2b98d6e0030d3d267", - "symbol": "UNA", - "decimals": 18, - "name": "Unagi Token", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x24569d33653c404f90af10a2b98d6e0030d3d267.png", - "aggregators": [ - "CoinGecko", - "LiFi", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x0a953dd9fc813fefaf6015b804c9dfa0624690c0": { - "address": "0x0a953dd9fc813fefaf6015b804c9dfa0624690c0", - "symbol": "COPI", - "decimals": 18, - "name": "Cornucopias", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x0a953dd9fc813fefaf6015b804c9dfa0624690c0.png", - "aggregators": [ - "CoinGecko", - "LiFi", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x3c3860d89b81c91974fc1f8a41aeeef604c17058": { - "address": "0x3c3860d89b81c91974fc1f8a41aeeef604c17058", - "symbol": "KAI", - "decimals": 18, - "name": "Kinetix Finance Token", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x3c3860d89b81c91974fc1f8a41aeeef604c17058.png", - "aggregators": ["LiFi", "Socket", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 5 - }, - "0xca73ed1815e5915489570014e024b7ebe65de679": { - "address": "0xca73ed1815e5915489570014e024b7ebe65de679", - "symbol": "ODOS", - "decimals": 18, - "name": "Odos Token", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xca73ed1815e5915489570014e024b7ebe65de679.png", - "aggregators": ["CoinGecko", "LiFi", "Rubic", "Rango"], - "occurrences": 4 - }, - "0x662015ec830df08c0fc45896fab726542e8ac09e": { - "address": "0x662015ec830df08c0fc45896fab726542e8ac09e", - "symbol": "SNT", - "decimals": 18, - "name": "Status Network Token", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x662015ec830df08c0fc45896fab726542e8ac09e.png", - "aggregators": ["UniswapLabs", "LiFi", "Socket", "Rango"], - "occurrences": 4 - }, - "0x92dc4ab92eb16e781559e612f349916988013d5a": { - "address": "0x92dc4ab92eb16e781559e612f349916988013d5a", - "symbol": "$WSB", - "decimals": 18, - "name": "Agent Zero", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x92dc4ab92eb16e781559e612f349916988013d5a.png", - "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0xff62ddfa80e513114c3a0bf4d6ffff1c1d17aadf": { - "address": "0xff62ddfa80e513114c3a0bf4d6ffff1c1d17aadf", - "symbol": "BOE", - "decimals": 18, - "name": "Boe", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xff62ddfa80e513114c3a0bf4d6ffff1c1d17aadf.png", - "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0x6fd31533621452aac187c9cbdfdfb6ef50d28149": { - "address": "0x6fd31533621452aac187c9cbdfdfb6ef50d28149", - "symbol": "$ESAB", - "decimals": 18, - "name": "ESAB", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x6fd31533621452aac187c9cbdfdfb6ef50d28149.png", - "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0xed1779845520339693cdbffec49a74246e7d671b": { - "address": "0xed1779845520339693cdbffec49a74246e7d671b", - "symbol": "SAM", - "decimals": 18, - "name": "Samurai Starter", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xed1779845520339693cdbffec49a74246e7d671b.png", - "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0xb488fcb23333e7baa28d1dfd7b69a5d3a8bfeb3a": { - "address": "0xb488fcb23333e7baa28d1dfd7b69a5d3a8bfeb3a", - "symbol": "TERMINAL", - "decimals": 18, - "name": "Terminal", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xb488fcb23333e7baa28d1dfd7b69a5d3a8bfeb3a.png", - "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0xc8e51fefd7d595c217c7ab641513faa4ad522b26": { - "address": "0xc8e51fefd7d595c217c7ab641513faa4ad522b26", - "symbol": "CRAPPY", - "decimals": 18, - "name": "Crappy Bird CTO", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xc8e51fefd7d595c217c7ab641513faa4ad522b26.png", - "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0x25e1c298f100d7c600e9e44d46788c1ebbd4f69b": { - "address": "0x25e1c298f100d7c600e9e44d46788c1ebbd4f69b", - "symbol": "P", - "decimals": 18, - "name": "Pike Finance", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x25e1c298f100d7c600e9e44d46788c1ebbd4f69b.png", - "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0xc9b6ef062fab19d3f1eabc36b1f2e852af1acd18": { - "address": "0xc9b6ef062fab19d3f1eabc36b1f2e852af1acd18", - "symbol": "BALT", - "decimals": 18, - "name": "Brett's cat", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xc9b6ef062fab19d3f1eabc36b1f2e852af1acd18.png", - "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0xca4569949699d56e1834efe9f58747ca0f151b01": { - "address": "0xca4569949699d56e1834efe9f58747ca0f151b01", - "symbol": "TMAI", - "decimals": 18, - "name": "Token Metrics AI", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xca4569949699d56e1834efe9f58747ca0f151b01.png", - "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0x15ac90165f8b45a80534228bdcb124a011f62fee": { - "address": "0x15ac90165f8b45a80534228bdcb124a011f62fee", - "symbol": "MOEW", - "decimals": 18, - "name": "MOEW", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x15ac90165f8b45a80534228bdcb124a011f62fee.png", - "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0x91da780bc7f4b7cf19abe90411a2a296ec5ff787": { - "address": "0x91da780bc7f4b7cf19abe90411a2a296ec5ff787", - "symbol": "HINT", - "decimals": 18, - "name": "Hive Intelligence", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x91da780bc7f4b7cf19abe90411a2a296ec5ff787.png", - "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0x8216e8143902a8fe0b676006bc25eb23829c123d": { - "address": "0x8216e8143902a8fe0b676006bc25eb23829c123d", - "symbol": "WOW", - "decimals": 18, - "name": "Wow", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x8216e8143902a8fe0b676006bc25eb23829c123d.png", - "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0x9ef1139e6b420cc929dd912a5a7adeced6f12e91": { - "address": "0x9ef1139e6b420cc929dd912a5a7adeced6f12e91", - "symbol": "FORCE", - "decimals": 18, - "name": "Force", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x9ef1139e6b420cc929dd912a5a7adeced6f12e91.png", - "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0xbeb0fd48c2ba0f1aacad2814605f09e08a96b94e": { - "address": "0xbeb0fd48c2ba0f1aacad2814605f09e08a96b94e", - "symbol": "GME", - "decimals": 9, - "name": "GME (Base)", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xbeb0fd48c2ba0f1aacad2814605f09e08a96b94e.png", - "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0x4e73420dcc85702ea134d91a262c8ffc0a72aa70": { - "address": "0x4e73420dcc85702ea134d91a262c8ffc0a72aa70", - "symbol": "SKIPUP", - "decimals": 8, - "name": "SKI MASK PUP", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x4e73420dcc85702ea134d91a262c8ffc0a72aa70.png", - "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0x506beb7965fc7053059006c7ab4c62c02c2d989f": { - "address": "0x506beb7965fc7053059006c7ab4c62c02c2d989f", - "symbol": "BWORM", - "decimals": 18, - "name": "Brain Worms", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x506beb7965fc7053059006c7ab4c62c02c2d989f.png", - "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0x85cf87e35bf9d20380889016bac20e519324d928": { - "address": "0x85cf87e35bf9d20380889016bac20e519324d928", - "symbol": "SKINUT", - "decimals": 18, - "name": "Skimask Pnut", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x85cf87e35bf9d20380889016bac20e519324d928.png", - "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0xeec468333ccc16d4bf1cef497a56cf8c0aae4ca3": { - "address": "0xeec468333ccc16d4bf1cef497a56cf8c0aae4ca3", - "symbol": "ANZ", - "decimals": 18, - "name": "Anzen Finance", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xeec468333ccc16d4bf1cef497a56cf8c0aae4ca3.png", - "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0x80f6bcedd3d4fa1035285affa30e38f464db3895": { - "address": "0x80f6bcedd3d4fa1035285affa30e38f464db3895", - "symbol": "BET", - "decimals": 18, - "name": "BetBase", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x80f6bcedd3d4fa1035285affa30e38f464db3895.png", - "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0x12e96c2bfea6e835cf8dd38a5834fa61cf723736": { - "address": "0x12e96c2bfea6e835cf8dd38a5834fa61cf723736", - "symbol": "UDOGE", - "decimals": 18, - "name": "Wrapped DOGE (Universal)", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x12e96c2bfea6e835cf8dd38a5834fa61cf723736.png", - "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0xd022723a5005f53c95b51d1822f42b1a3366ee4d": { - "address": "0xd022723a5005f53c95b51d1822f42b1a3366ee4d", - "symbol": "COIN", - "decimals": 18, - "name": "COIN", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xd022723a5005f53c95b51d1822f42b1a3366ee4d.png", - "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0xa4dc5a82839a148ff172b5b8ba9d52e681fd2261": { - "address": "0xa4dc5a82839a148ff172b5b8ba9d52e681fd2261", - "symbol": "PICA", - "decimals": 18, - "name": "Pineapple Cat", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xa4dc5a82839a148ff172b5b8ba9d52e681fd2261.png", - "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0xf31e6d62bfc485857af2186eb3d8ee94b4379fed": { - "address": "0xf31e6d62bfc485857af2186eb3d8ee94b4379fed", - "symbol": "CHIDO", - "decimals": 18, - "name": "Chinese Doge Wow", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xf31e6d62bfc485857af2186eb3d8ee94b4379fed.png", - "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0xa1b9d812926a529d8b002e69fcd070c8275ec73c": { - "address": "0xa1b9d812926a529d8b002e69fcd070c8275ec73c", - "symbol": "JELLI", - "decimals": 9, - "name": "Jelli", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xa1b9d812926a529d8b002e69fcd070c8275ec73c.png", - "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0x0dd7913197bfb6d2b1f03f9772ced06298f1a644": { - "address": "0x0dd7913197bfb6d2b1f03f9772ced06298f1a644", - "symbol": "MBDAO", - "decimals": 18, - "name": "Moonboots DAO", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x0dd7913197bfb6d2b1f03f9772ced06298f1a644.png", - "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0x2075f6e2147d4ac26036c9b4084f8e28b324397d": { - "address": "0x2075f6e2147d4ac26036c9b4084f8e28b324397d", - "symbol": "CTO", - "decimals": 18, - "name": "BaseCTO", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x2075f6e2147d4ac26036c9b4084f8e28b324397d.png", - "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0x0718f45bbf4781ce891e4e18182f025725f0fc95": { - "address": "0x0718f45bbf4781ce891e4e18182f025725f0fc95", - "symbol": "MISSER", - "decimals": 18, - "name": "Misser", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x0718f45bbf4781ce891e4e18182f025725f0fc95.png", - "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0xf395680803b269b62702554723e05b373171b07b": { - "address": "0xf395680803b269b62702554723e05b373171b07b", - "symbol": "BRATT", - "decimals": 18, - "name": "Son of Brett", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xf395680803b269b62702554723e05b373171b07b.png", - "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0xf3708859c178709d5319ad5405bc81511b72b9e9": { - "address": "0xf3708859c178709d5319ad5405bc81511b72b9e9", - "symbol": "AETHER", - "decimals": 18, - "name": "Aethernet", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xf3708859c178709d5319ad5405bc81511b72b9e9.png", - "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0x3636a7734b669ce352e97780df361ce1f809c58c": { - "address": "0x3636a7734b669ce352e97780df361ce1f809c58c", - "symbol": "$ROCKY", - "decimals": 18, - "name": "ROCKY", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x3636a7734b669ce352e97780df361ce1f809c58c.png", - "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0xa3a34a0d9a08ccddb6ed422ac0a28a06731335aa": { - "address": "0xa3a34a0d9a08ccddb6ed422ac0a28a06731335aa", - "symbol": "UADA", - "decimals": 18, - "name": "Wrapped ADA (Universal)", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xa3a34a0d9a08ccddb6ed422ac0a28a06731335aa.png", - "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0xf857b2764095b9a5f57c3e71f82f297fe4e45334": { - "address": "0xf857b2764095b9a5f57c3e71f82f297fe4e45334", - "symbol": "DEFAI", - "decimals": 18, - "name": "DeFAI", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xf857b2764095b9a5f57c3e71f82f297fe4e45334.png", - "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0xe0023e73aab4fe9a22f059a9d27e857e027ee3dc": { - "address": "0xe0023e73aab4fe9a22f059a9d27e857e027ee3dc", - "symbol": "RWAX", - "decimals": 18, - "name": "RWAX", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xe0023e73aab4fe9a22f059a9d27e857e027ee3dc.png", - "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0x4b61e2f1bbdee6d746209a693156952936f1702c": { - "address": "0x4b61e2f1bbdee6d746209a693156952936f1702c", - "symbol": "LAMBOW", - "decimals": 18, - "name": "Based Lambow", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x4b61e2f1bbdee6d746209a693156952936f1702c.png", - "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0x689644b86075ed61c647596862c7403e1c474dbf": { - "address": "0x689644b86075ed61c647596862c7403e1c474dbf", - "symbol": "BAMBOO", - "decimals": 18, - "name": "Bamboo on Base", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x689644b86075ed61c647596862c7403e1c474dbf.png", - "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0x36912b5cf63e509f18e53ac98b3012fa79e77bf5": { - "address": "0x36912b5cf63e509f18e53ac98b3012fa79e77bf5", - "symbol": "FUEGO", - "decimals": 18, - "name": "Fuego", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x36912b5cf63e509f18e53ac98b3012fa79e77bf5.png", - "aggregators": ["CoinGecko", "LiFi", "Rubic", "Rango"], - "occurrences": 4 - }, - "0x38d513ec43dda20f323f26c7bef74c5cf80b6477": { - "address": "0x38d513ec43dda20f323f26c7bef74c5cf80b6477", - "symbol": "CARLO", - "decimals": 18, - "name": "Carlo", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x38d513ec43dda20f323f26c7bef74c5cf80b6477.png", - "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0x655a51e6803faf50d4ace80fa501af2f29c856cf": { - "address": "0x655a51e6803faf50d4ace80fa501af2f29c856cf", - "symbol": "PAID", - "decimals": 18, - "name": "PAID", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x655a51e6803faf50d4ace80fa501af2f29c856cf.png", - "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0x589c8e8fe013133b41abf546c819787a75688690": { - "address": "0x589c8e8fe013133b41abf546c819787a75688690", - "symbol": "SQUOGE", - "decimals": 18, - "name": "DogeSquatch", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x589c8e8fe013133b41abf546c819787a75688690.png", - "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0x01ed85d73645523b0d62c7a8e35d03601cfd679b": { - "address": "0x01ed85d73645523b0d62c7a8e35d03601cfd679b", - "symbol": "NABLA", - "decimals": 18, - "name": "Nabla", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x01ed85d73645523b0d62c7a8e35d03601cfd679b.png", - "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0x64fcc3a02eeeba05ef701b7eed066c6ebd5d4e51": { - "address": "0x64fcc3a02eeeba05ef701b7eed066c6ebd5d4e51", - "symbol": "SPECTRA", - "decimals": 18, - "name": "Spectra", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x64fcc3a02eeeba05ef701b7eed066c6ebd5d4e51.png", - "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0x2d57c47bc5d2432feeedf2c9150162a9862d3ccf": { - "address": "0x2d57c47bc5d2432feeedf2c9150162a9862d3ccf", - "symbol": "DICKBUTT", - "decimals": 18, - "name": "Dickbutt", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x2d57c47bc5d2432feeedf2c9150162a9862d3ccf.png", - "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0xfcb49c1545d1d13272467f0d94e57a9aca39725c": { - "address": "0xfcb49c1545d1d13272467f0d94e57a9aca39725c", - "symbol": "GRASS", - "decimals": 18, - "name": "Grass", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xfcb49c1545d1d13272467f0d94e57a9aca39725c.png", - "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0x5babfc2f240bc5de90eb7e19d789412db1dec402": { - "address": "0x5babfc2f240bc5de90eb7e19d789412db1dec402", - "symbol": "CIRCLE", - "decimals": 18, - "name": "Burning Circle", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x5babfc2f240bc5de90eb7e19d789412db1dec402.png", - "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0xa0a2e84f6f19c09a095d4a83ac8de5a32d303a13": { - "address": "0xa0a2e84f6f19c09a095d4a83ac8de5a32d303a13", - "symbol": "LILB", - "decimals": 18, - "name": "Lil Brett", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xa0a2e84f6f19c09a095d4a83ac8de5a32d303a13.png", - "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0xd3741ac9b3f280b0819191e4b30be4ecd990771e": { - "address": "0xd3741ac9b3f280b0819191e4b30be4ecd990771e", - "symbol": "DOOMER", - "decimals": 8, - "name": "DOOMER", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xd3741ac9b3f280b0819191e4b30be4ecd990771e.png", - "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0x0c41f1fc9022feb69af6dc666abfe73c9ffda7ce": { - "address": "0x0c41f1fc9022feb69af6dc666abfe73c9ffda7ce", - "symbol": "BTCB", - "decimals": 18, - "name": "Bitcoin on Base", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x0c41f1fc9022feb69af6dc666abfe73c9ffda7ce.png", - "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0xe388a9a5bfd958106adeb79df10084a8b1d9a5ab": { - "address": "0xe388a9a5bfd958106adeb79df10084a8b1d9a5ab", - "symbol": "LORDY", - "decimals": 18, - "name": "Lordy", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xe388a9a5bfd958106adeb79df10084a8b1d9a5ab.png", - "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0x7f6f6720a73c0f54f95ab343d7efeb1fa991f4f7": { - "address": "0x7f6f6720a73c0f54f95ab343d7efeb1fa991f4f7", - "symbol": "WIF", - "decimals": 18, - "name": "DogWifHat", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x7f6f6720a73c0f54f95ab343d7efeb1fa991f4f7.png", - "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0x120edc8e391ba4c94cb98bb65d8856ae6ec1525f": { - "address": "0x120edc8e391ba4c94cb98bb65d8856ae6ec1525f", - "symbol": "LOUDER", - "decimals": 18, - "name": "LOUDER", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x120edc8e391ba4c94cb98bb65d8856ae6ec1525f.png", - "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0x3c5fdf0ee37d62c774025599e3b692d027746e24": { - "address": "0x3c5fdf0ee37d62c774025599e3b692d027746e24", - "symbol": "BONKEY", - "decimals": 18, - "name": "Bonkey", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x3c5fdf0ee37d62c774025599e3b692d027746e24.png", - "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0x1308ae20e66e43d575a76b5dfb30771a50c9256a": { - "address": "0x1308ae20e66e43d575a76b5dfb30771a50c9256a", - "symbol": "BFROG", - "decimals": 18, - "name": "BaseFrog", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x1308ae20e66e43d575a76b5dfb30771a50c9256a.png", - "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0xcde90558fc317c69580deeaf3efc509428df9080": { - "address": "0xcde90558fc317c69580deeaf3efc509428df9080", - "symbol": "NORMILIO", - "decimals": 18, - "name": "Normilio", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xcde90558fc317c69580deeaf3efc509428df9080.png", - "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0xdc46c1e93b71ff9209a0f8076a9951569dc35855": { - "address": "0xdc46c1e93b71ff9209a0f8076a9951569dc35855", - "symbol": "MYST", - "decimals": 18, - "name": "MYSTCL", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xdc46c1e93b71ff9209a0f8076a9951569dc35855.png", - "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0x8aaf9fa1ee649eade46201394a9b8e06312f0f17": { - "address": "0x8aaf9fa1ee649eade46201394a9b8e06312f0f17", - "symbol": "BOOF", - "decimals": 18, - "name": "Boofus by Virtuals", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x8aaf9fa1ee649eade46201394a9b8e06312f0f17.png", - "aggregators": ["CoinGecko", "Rubic", "Squid", "Rango"], - "occurrences": 4 - }, - "0x4366c1568fd6167eee67d25ef6980da38e3421bc": { - "address": "0x4366c1568fd6167eee67d25ef6980da38e3421bc", - "symbol": "HOPPY", - "decimals": 18, - "name": "Based Hoppy", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x4366c1568fd6167eee67d25ef6980da38e3421bc.png", - "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0x814fe70e85025bec87d4ad3f3b713bdcaac0579b": { - "address": "0x814fe70e85025bec87d4ad3f3b713bdcaac0579b", - "symbol": "BARIO", - "decimals": 18, - "name": "Based Bario", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x814fe70e85025bec87d4ad3f3b713bdcaac0579b.png", - "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0x2c002ffec41568d138acc36f5894d6156398d539": { - "address": "0x2c002ffec41568d138acc36f5894d6156398d539", - "symbol": "LUCKY", - "decimals": 18, - "name": "Lucky Dog", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x2c002ffec41568d138acc36f5894d6156398d539.png", - "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0xbbf81ddc9fb90cf9146b495ce0546a3460fd1769": { - "address": "0xbbf81ddc9fb90cf9146b495ce0546a3460fd1769", - "symbol": "BRAZA", - "decimals": 18, - "name": "BRAZA by Virtuals", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xbbf81ddc9fb90cf9146b495ce0546a3460fd1769.png", - "aggregators": ["CoinGecko", "Rubic", "Squid", "Rango"], - "occurrences": 4 - }, - "0xf8b1b47aa748f5c7b5d0e80c726a843913eb573a": { - "address": "0xf8b1b47aa748f5c7b5d0e80c726a843913eb573a", - "symbol": "LTAI", - "decimals": 18, - "name": "LibertAI", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xf8b1b47aa748f5c7b5d0e80c726a843913eb573a.png", - "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0x84993768ba82ebc6101a5440ea41be41310ea12f": { - "address": "0x84993768ba82ebc6101a5440ea41be41310ea12f", - "symbol": "MXNBC", - "decimals": 18, - "name": "Rekt Burgundy by Virtuals", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x84993768ba82ebc6101a5440ea41be41310ea12f.png", - "aggregators": ["CoinGecko", "Rubic", "Squid", "Rango"], - "occurrences": 4 - }, - "0xc438b0c0e80a8fa1b36898d1b36a3fc2ec371c54": { - "address": "0xc438b0c0e80a8fa1b36898d1b36a3fc2ec371c54", - "symbol": "BLEP", - "decimals": 18, - "name": "Blep Super Meme", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xc438b0c0e80a8fa1b36898d1b36a3fc2ec371c54.png", - "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0x38029c62dfa30d9fd3cadf4c64e9b2ab21dbda17": { - "address": "0x38029c62dfa30d9fd3cadf4c64e9b2ab21dbda17", - "symbol": "DUBBZ", - "decimals": 18, - "name": "Dubbz", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x38029c62dfa30d9fd3cadf4c64e9b2ab21dbda17.png", - "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0xbdf317f9c153246c429f23f4093087164b145390": { - "address": "0xbdf317f9c153246c429f23f4093087164b145390", - "symbol": "AIFUN", - "decimals": 18, - "name": "AI Agent Layer", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xbdf317f9c153246c429f23f4093087164b145390.png", - "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0xed1978d01d4a8a9d6a43ac79403d5b8dfbed739b": { - "address": "0xed1978d01d4a8a9d6a43ac79403d5b8dfbed739b", - "symbol": "SACA", - "decimals": 18, - "name": "Sandwich Cat", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xed1978d01d4a8a9d6a43ac79403d5b8dfbed739b.png", - "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0xe8aae6251c6cf39927b0ff31399030c60bec798f": { - "address": "0xe8aae6251c6cf39927b0ff31399030c60bec798f", - "symbol": "SUMI", - "decimals": 18, - "name": "SUMI", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xe8aae6251c6cf39927b0ff31399030c60bec798f.png", - "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0x17d8217c0f4b4742aaace053281f42eb05ab211d": { - "address": "0x17d8217c0f4b4742aaace053281f42eb05ab211d", - "symbol": "CLOUD", - "decimals": 18, - "name": "CloudBase", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x17d8217c0f4b4742aaace053281f42eb05ab211d.png", - "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0x3d1d651761d535df881740ab50ba4bd8a2ec2c00": { - "address": "0x3d1d651761d535df881740ab50ba4bd8a2ec2c00", - "symbol": "SYNDOG", - "decimals": 18, - "name": "Synthesizer Dog", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x3d1d651761d535df881740ab50ba4bd8a2ec2c00.png", - "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0xb0e87796380172f911214208df966a84cceaaf82": { - "address": "0xb0e87796380172f911214208df966a84cceaaf82", - "symbol": "DOM", - "decimals": 18, - "name": "DOM", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xb0e87796380172f911214208df966a84cceaaf82.png", - "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0xf5bc3439f53a45607ccad667abc7daf5a583633f": { - "address": "0xf5bc3439f53a45607ccad667abc7daf5a583633f", - "symbol": "AGENT", - "decimals": 18, - "name": "AgentLayer", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xf5bc3439f53a45607ccad667abc7daf5a583633f.png", - "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0xcc7ff230365bd730ee4b352cc2492cedac49383e": { - "address": "0xcc7ff230365bd730ee4b352cc2492cedac49383e", - "symbol": "HYUSD", - "decimals": 18, - "name": "High Yield USD (Base)", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xcc7ff230365bd730ee4b352cc2492cedac49383e.png", - "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0xb89d354ad1b0d95a48b3de4607f75a8cd710c1ba": { - "address": "0xb89d354ad1b0d95a48b3de4607f75a8cd710c1ba", - "symbol": "LAY", - "decimals": 18, - "name": "Loomlay", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xb89d354ad1b0d95a48b3de4607f75a8cd710c1ba.png", - "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0x2496a9af81a87ed0b17f6edeaf4ac57671d24f38": { - "address": "0x2496a9af81a87ed0b17f6edeaf4ac57671d24f38", - "symbol": "TRUFFI", - "decimals": 9, - "name": "Truffi", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x2496a9af81a87ed0b17f6edeaf4ac57671d24f38.png", - "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0x097b1b242d3ed90e191c5f83a62f41abe16f6ceb": { - "address": "0x097b1b242d3ed90e191c5f83a62f41abe16f6ceb", - "symbol": "TOKITO", - "decimals": 18, - "name": "Tokito", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x097b1b242d3ed90e191c5f83a62f41abe16f6ceb.png", - "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0xf8a99f2bf2ce5bb6ce4aafcf070d8723bc904aa2": { - "address": "0xf8a99f2bf2ce5bb6ce4aafcf070d8723bc904aa2", - "symbol": "CHRETT", - "decimals": 18, - "name": "Chinese Brett", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xf8a99f2bf2ce5bb6ce4aafcf070d8723bc904aa2.png", - "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0x8b67f2e56139ca052a7ec49cbcd1aa9c83f2752a": { - "address": "0x8b67f2e56139ca052a7ec49cbcd1aa9c83f2752a", - "symbol": "FLIES", - "decimals": 18, - "name": "MUTATIO", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x8b67f2e56139ca052a7ec49cbcd1aa9c83f2752a.png", - "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0x64cb1bafc59bf93aeb90676885c63540cf4f4106": { - "address": "0x64cb1bafc59bf93aeb90676885c63540cf4f4106", - "symbol": "COIN", - "decimals": 18, - "name": "Coin6900", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x64cb1bafc59bf93aeb90676885c63540cf4f4106.png", - "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0x7f65323e468939073ef3b5287c73f13951b0ff5b": { - "address": "0x7f65323e468939073ef3b5287c73f13951b0ff5b", - "symbol": "BLUE", - "decimals": 18, - "name": "Blue", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x7f65323e468939073ef3b5287c73f13951b0ff5b.png", - "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0xe161be4a74ab8fa8706a2d03e67c02318d0a0ad6": { - "address": "0xe161be4a74ab8fa8706a2d03e67c02318d0a0ad6", - "symbol": "APETARDIO", - "decimals": 18, - "name": "Apetardio", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xe161be4a74ab8fa8706a2d03e67c02318d0a0ad6.png", - "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0xf8f97a79a3fa77104fab4814e3ed93899777de0d": { - "address": "0xf8f97a79a3fa77104fab4814e3ed93899777de0d", - "symbol": "GDP", - "decimals": 18, - "name": "GertrudeDataPig", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xf8f97a79a3fa77104fab4814e3ed93899777de0d.png", - "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0x99b2b1a2adb02b38222adcd057783d7e5d1fcc7d": { - "address": "0x99b2b1a2adb02b38222adcd057783d7e5d1fcc7d", - "symbol": "WLTH", - "decimals": 18, - "name": "Common Wealth", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x99b2b1a2adb02b38222adcd057783d7e5d1fcc7d.png", - "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0x3639e6f4c224ebd1bf6373c3d97917d33e0492bb": { - "address": "0x3639e6f4c224ebd1bf6373c3d97917d33e0492bb", - "symbol": "PACA", - "decimals": 18, - "name": "Paca AI", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x3639e6f4c224ebd1bf6373c3d97917d33e0492bb.png", - "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0x653a143b8d15c565c6623d1f168cfbec1056d872": { - "address": "0x653a143b8d15c565c6623d1f168cfbec1056d872", - "symbol": "KURBI", - "decimals": 9, - "name": "kurbi", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x653a143b8d15c565c6623d1f168cfbec1056d872.png", - "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0xf1143f3a8d76f1ca740d29d5671d365f66c44ed1": { - "address": "0xf1143f3a8d76f1ca740d29d5671d365f66c44ed1", - "symbol": "UBTC", - "decimals": 18, - "name": "Wrapped Bitcoin (Universal)", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xf1143f3a8d76f1ca740d29d5671d365f66c44ed1.png", - "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0xfc5462143a3178cf044e97c491f6bcb5e38f173e": { - "address": "0xfc5462143a3178cf044e97c491f6bcb5e38f173e", - "symbol": "BERF", - "decimals": 18, - "name": "BERF", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xfc5462143a3178cf044e97c491f6bcb5e38f173e.png", - "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0x8c81b4c816d66d36c4bf348bdec01dbcbc70e987": { - "address": "0x8c81b4c816d66d36c4bf348bdec01dbcbc70e987", - "symbol": "BRIUN", - "decimals": 18, - "name": "Briun Armstrung", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x8c81b4c816d66d36c4bf348bdec01dbcbc70e987.png", - "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0x2f20cf3466f80a5f7f532fca553c8cbc9727fef6": { - "address": "0x2f20cf3466f80a5f7f532fca553c8cbc9727fef6", - "symbol": "AKUMA", - "decimals": 18, - "name": "Akuma Inu", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x2f20cf3466f80a5f7f532fca553c8cbc9727fef6.png", - "aggregators": ["CoinGecko", "1inch", "Rubic", "Rango"], - "occurrences": 4 - }, - "0xbf4db8b7a679f89ef38125d5f84dd1446af2ea3b": { - "address": "0xbf4db8b7a679f89ef38125d5f84dd1446af2ea3b", - "symbol": "BLEU", - "decimals": 18, - "name": "Le Bleu Elefant", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xbf4db8b7a679f89ef38125d5f84dd1446af2ea3b.png", - "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0x6b82297c6f1f9c3b1f501450d2ee7c37667ab70d": { - "address": "0x6b82297c6f1f9c3b1f501450d2ee7c37667ab70d", - "symbol": "GIF", - "decimals": 18, - "name": "goatwifhat", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x6b82297c6f1f9c3b1f501450d2ee7c37667ab70d.png", - "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0x0521aaa7c96e25afee79fdd4f1bb48f008ae4eac": { - "address": "0x0521aaa7c96e25afee79fdd4f1bb48f008ae4eac", - "symbol": "FDREAM", - "decimals": 18, - "name": "FDREAM", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x0521aaa7c96e25afee79fdd4f1bb48f008ae4eac.png", - "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0xe2b1dc2d4a3b4e59fdf0c47b71a7a86391a8b35a": { - "address": "0xe2b1dc2d4a3b4e59fdf0c47b71a7a86391a8b35a", - "symbol": "RWA", - "decimals": 18, - "name": "RWA Inc", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xe2b1dc2d4a3b4e59fdf0c47b71a7a86391a8b35a.png", - "aggregators": ["CoinGecko", "Socket", "Rubic", "Rango"], - "occurrences": 4 - }, - "0x33ad778e6c76237d843c52d7cafc972bb7cf8729": { - "address": "0x33ad778e6c76237d843c52d7cafc972bb7cf8729", - "symbol": "BOSHI", - "decimals": 18, - "name": "Boshi", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x33ad778e6c76237d843c52d7cafc972bb7cf8729.png", - "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0x3ecced5b416e58664f04a39dd18935eb71d33b15": { - "address": "0x3ecced5b416e58664f04a39dd18935eb71d33b15", - "symbol": "BRIAN", - "decimals": 18, - "name": "Brian", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x3ecced5b416e58664f04a39dd18935eb71d33b15.png", - "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0x586e10db93630a4d2da6c6a34ba715305b556f04": { - "address": "0x586e10db93630a4d2da6c6a34ba715305b556f04", - "symbol": "ZOOMER", - "decimals": 18, - "name": "Zoomer", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x586e10db93630a4d2da6c6a34ba715305b556f04.png", - "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0xb0505e5a99abd03d94a1169e638b78edfed26ea4": { - "address": "0xb0505e5a99abd03d94a1169e638b78edfed26ea4", - "symbol": "USUI", - "decimals": 18, - "name": "Sui (Universal)", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xb0505e5a99abd03d94a1169e638b78edfed26ea4.png", - "aggregators": ["CoinGecko", "1inch", "Rubic", "Rango"], - "occurrences": 4 - }, - "0x23471e7250bcd7ee21df3f39ed6151931d1e076b": { - "address": "0x23471e7250bcd7ee21df3f39ed6151931d1e076b", - "symbol": "WAI", - "decimals": 18, - "name": "AI Waifu", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x23471e7250bcd7ee21df3f39ed6151931d1e076b.png", - "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0x85645b86243886b7c7c1da6288571f8bea6fc035": { - "address": "0x85645b86243886b7c7c1da6288571f8bea6fc035", - "symbol": "TYLER", - "decimals": 9, - "name": "Tyler", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x85645b86243886b7c7c1da6288571f8bea6fc035.png", - "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0x9beec80e62aa257ced8b0edd8692f79ee8783777": { - "address": "0x9beec80e62aa257ced8b0edd8692f79ee8783777", - "symbol": "TIMI", - "decimals": 18, - "name": "This Is My Iguana", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x9beec80e62aa257ced8b0edd8692f79ee8783777.png", - "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0x776aaef8d8760129a0398cf8674ee28cefc0eab9": { - "address": "0x776aaef8d8760129a0398cf8674ee28cefc0eab9", - "symbol": "FLOPPA", - "decimals": 18, - "name": "Floppa Cat", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x776aaef8d8760129a0398cf8674ee28cefc0eab9.png", - "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0x7cf7132ede0ca592a236b6198a681bb7b42dd5ae": { - "address": "0x7cf7132ede0ca592a236b6198a681bb7b42dd5ae", - "symbol": "BOLT", - "decimals": 18, - "name": "BOLT on Base", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x7cf7132ede0ca592a236b6198a681bb7b42dd5ae.png", - "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0x3c4b6cd7874edc945797123fce2d9a871818524b": { - "address": "0x3c4b6cd7874edc945797123fce2d9a871818524b", - "symbol": "PARADOX", - "decimals": 18, - "name": "PARADOX", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x3c4b6cd7874edc945797123fce2d9a871818524b.png", - "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0xaa6cccdce193698d33deb9ffd4be74eaa74c4898": { - "address": "0xaa6cccdce193698d33deb9ffd4be74eaa74c4898", - "symbol": "ELONRWA", - "decimals": 18, - "name": "ElonRWA", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xaa6cccdce193698d33deb9ffd4be74eaa74c4898.png", - "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0xed899bfdb28c8ad65307fa40f4acab113ae2e14c": { - "address": "0xed899bfdb28c8ad65307fa40f4acab113ae2e14c", - "symbol": "ROOST", - "decimals": 18, - "name": "Roost", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xed899bfdb28c8ad65307fa40f4acab113ae2e14c.png", - "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0x928a6a9fc62b2c94baf2992a6fba4715f5bb0066": { - "address": "0x928a6a9fc62b2c94baf2992a6fba4715f5bb0066", - "symbol": "RWA", - "decimals": 18, - "name": "Rug World Assets", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x928a6a9fc62b2c94baf2992a6fba4715f5bb0066.png", - "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0x6223901ea64608c75da8497d5eff15d19a1d8fd5": { - "address": "0x6223901ea64608c75da8497d5eff15d19a1d8fd5", - "symbol": "CORGI", - "decimals": 18, - "name": "Corgi", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x6223901ea64608c75da8497d5eff15d19a1d8fd5.png", - "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0xc734635cd30e882037c3f3de1ebccf9fa9d27d9f": { - "address": "0xc734635cd30e882037c3f3de1ebccf9fa9d27d9f", - "symbol": "LVLY", - "decimals": 18, - "name": "Lyvely", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xc734635cd30e882037c3f3de1ebccf9fa9d27d9f.png", - "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0xc655c331d1aa7f96c252f1f40ce13d80eac53504": { - "address": "0xc655c331d1aa7f96c252f1f40ce13d80eac53504", - "symbol": "MUSIC", - "decimals": 18, - "name": "MUSIC by Virtuals", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xc655c331d1aa7f96c252f1f40ce13d80eac53504.png", - "aggregators": ["CoinGecko", "Rubic", "Squid", "Rango"], - "occurrences": 4 - }, - "0x041fdf3f472d2c8a7ecc458fc3b7f543e6c57ef7": { - "address": "0x041fdf3f472d2c8a7ecc458fc3b7f543e6c57ef7", - "symbol": "SHIBA", - "decimals": 9, - "name": "Shiba Armstrong", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x041fdf3f472d2c8a7ecc458fc3b7f543e6c57ef7.png", - "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0x6d3b8c76c5396642960243febf736c6be8b60562": { - "address": "0x6d3b8c76c5396642960243febf736c6be8b60562", - "symbol": "SKOP", - "decimals": 18, - "name": "Skull of Pepe Token", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x6d3b8c76c5396642960243febf736c6be8b60562.png", - "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0x6e2c81b6c2c0e02360f00a0da694e489acb0b05e": { - "address": "0x6e2c81b6c2c0e02360f00a0da694e489acb0b05e", - "symbol": "RFL", - "decimals": 18, - "name": "Reflect", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x6e2c81b6c2c0e02360f00a0da694e489acb0b05e.png", - "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0x76e7447bafa3f0acafc9692629b1d1bc937ca15d": { - "address": "0x76e7447bafa3f0acafc9692629b1d1bc937ca15d", - "symbol": "POLA", - "decimals": 18, - "name": "Pola On Base", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x76e7447bafa3f0acafc9692629b1d1bc937ca15d.png", - "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0xeb9e49fb4c33d9f6aefb1b03f9133435e24c0ec6": { - "address": "0xeb9e49fb4c33d9f6aefb1b03f9133435e24c0ec6", - "symbol": "NEWB", - "decimals": 18, - "name": "Newton On Base", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xeb9e49fb4c33d9f6aefb1b03f9133435e24c0ec6.png", - "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0x15de59489de5e7f240d72f787dc4a292b8199339": { - "address": "0x15de59489de5e7f240d72f787dc4a292b8199339", - "symbol": "RBF", - "decimals": 18, - "name": "Robots.Farm", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x15de59489de5e7f240d72f787dc4a292b8199339.png", - "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0x81f91fe59ee415735d59bd5be5cca91a0ea4fa69": { - "address": "0x81f91fe59ee415735d59bd5be5cca91a0ea4fa69", - "symbol": "FPEPE", - "decimals": 8, - "name": "Based Father Pepe", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x81f91fe59ee415735d59bd5be5cca91a0ea4fa69.png", - "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0xf4435cc8b478d54313f04c956882be3d9acf9f6f": { - "address": "0xf4435cc8b478d54313f04c956882be3d9acf9f6f", - "symbol": "LUCHA", - "decimals": 18, - "name": "Lucha", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xf4435cc8b478d54313f04c956882be3d9acf9f6f.png", - "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0xc2fe011c3885277c7f0e7ffd45ff90cadc8ecd12": { - "address": "0xc2fe011c3885277c7f0e7ffd45ff90cadc8ecd12", - "symbol": "PONCHO", - "decimals": 18, - "name": "Poncho", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xc2fe011c3885277c7f0e7ffd45ff90cadc8ecd12.png", - "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0xde7a416ac821c77478340eebaa21b68297025ef3": { - "address": "0xde7a416ac821c77478340eebaa21b68297025ef3", - "symbol": "BENI", - "decimals": 18, - "name": "Beni", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xde7a416ac821c77478340eebaa21b68297025ef3.png", - "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0xfc60aa1ffca50ce08b3cdec9626c0bb9e9b09bec": { - "address": "0xfc60aa1ffca50ce08b3cdec9626c0bb9e9b09bec", - "symbol": "VIS", - "decimals": 18, - "name": "Envision Labs", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xfc60aa1ffca50ce08b3cdec9626c0bb9e9b09bec.png", - "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0x7404ac09adf614603d9c16a7ce85a1101f3514ba": { - "address": "0x7404ac09adf614603d9c16a7ce85a1101f3514ba", - "symbol": "PLAY", - "decimals": 18, - "name": "PLAY", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x7404ac09adf614603d9c16a7ce85a1101f3514ba.png", - "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0x56a38e7216304108e841579041249feb236c887b": { - "address": "0x56a38e7216304108e841579041249feb236c887b", - "symbol": "LBM", - "decimals": 18, - "name": "Libertum", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x56a38e7216304108e841579041249feb236c887b.png", - "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0x18b6f6049a0af4ed2bbe0090319174eeef89f53a": { - "address": "0x18b6f6049a0af4ed2bbe0090319174eeef89f53a", - "symbol": "RUNNER", - "decimals": 18, - "name": "RUNNER", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x18b6f6049a0af4ed2bbe0090319174eeef89f53a.png", - "aggregators": ["CoinGecko", "Socket", "Rubic", "Rango"], - "occurrences": 4 - }, - "0xd9da0a693ea8057dcd97f02df6c98951acf92ef7": { - "address": "0xd9da0a693ea8057dcd97f02df6c98951acf92ef7", - "symbol": "CPA", - "decimals": 18, - "name": "CPA by Virtuals", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xd9da0a693ea8057dcd97f02df6c98951acf92ef7.png", - "aggregators": ["CoinGecko", "Rubic", "Squid", "Rango"], - "occurrences": 4 - }, - "0xfad8cb754230dbfd249db0e8eccb5142dd675a0d": { - "address": "0xfad8cb754230dbfd249db0e8eccb5142dd675a0d", - "symbol": "AEROBUD", - "decimals": 18, - "name": "AEROBUD", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xfad8cb754230dbfd249db0e8eccb5142dd675a0d.png", - "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0x82aed68f1deaca2b2aa4c5f27276374228a9f923": { - "address": "0x82aed68f1deaca2b2aa4c5f27276374228a9f923", - "symbol": "BEAST", - "decimals": 8, - "name": "Based Beast Coin", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x82aed68f1deaca2b2aa4c5f27276374228a9f923.png", - "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0xbe58fda3bcf03b6bbc821d1f0e6b764c86709227": { - "address": "0xbe58fda3bcf03b6bbc821d1f0e6b764c86709227", - "symbol": "VFX", - "decimals": 18, - "name": "Vabble", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xbe58fda3bcf03b6bbc821d1f0e6b764c86709227.png", - "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0x0a14ef61afb32e5ca672e021784f71705ac14908": { - "address": "0x0a14ef61afb32e5ca672e021784f71705ac14908", - "symbol": "NULL", - "decimals": 18, - "name": "NULL MATRIX", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x0a14ef61afb32e5ca672e021784f71705ac14908.png", - "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0xc73dc7ae7a4fa40517aafa941ae1ee436b91a12c": { - "address": "0xc73dc7ae7a4fa40517aafa941ae1ee436b91a12c", - "symbol": "BUZ", - "decimals": 4, - "name": "Buz Economy", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xc73dc7ae7a4fa40517aafa941ae1ee436b91a12c.png", - "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0x1b6a569dd61edce3c383f6d565e2f79ec3a12980": { - "address": "0x1b6a569dd61edce3c383f6d565e2f79ec3a12980", - "symbol": "PEEZY", - "decimals": 18, - "name": "Young Peezy AKA Pepe", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x1b6a569dd61edce3c383f6d565e2f79ec3a12980.png", - "aggregators": ["Metamask", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0x576bca23dcb6d94ff8e537d88b0d3e1bead444a2": { - "address": "0x576bca23dcb6d94ff8e537d88b0d3e1bead444a2", - "symbol": "BCT", - "decimals": 18, - "name": "Base Carbon Tonne", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x576bca23dcb6d94ff8e537d88b0d3e1bead444a2.png", - "aggregators": ["CoinGecko", "Rubic", "Squid", "Rango"], - "occurrences": 4 - }, - "0x74aa9bb52b36a378a6e641b86d7acb76dc9b3940": { - "address": "0x74aa9bb52b36a378a6e641b86d7acb76dc9b3940", - "symbol": "TRVL", - "decimals": 18, - "name": "Dtravel", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x74aa9bb52b36a378a6e641b86d7acb76dc9b3940.png", - "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0x04055057677807d2a53d2b25a80ff3b4d932ae1a": { - "address": "0x04055057677807d2a53d2b25a80ff3b4d932ae1a", - "symbol": "LOGX", - "decimals": 18, - "name": "LogX Network", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x04055057677807d2a53d2b25a80ff3b4d932ae1a.png", - "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0x051fb509e4a775fabd257611eea1efaed8f91359": { - "address": "0x051fb509e4a775fabd257611eea1efaed8f91359", - "symbol": "CATE", - "decimals": 9, - "name": "CATE", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x051fb509e4a775fabd257611eea1efaed8f91359.png", - "aggregators": ["CoinGecko", "Rubic", "Squid", "Rango"], - "occurrences": 4 - }, - "0xdf690c65d067035364a58369c26820d3696d7799": { - "address": "0xdf690c65d067035364a58369c26820d3696d7799", - "symbol": "HOGE", - "decimals": 9, - "name": "Hoge Finance", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xdf690c65d067035364a58369c26820d3696d7799.png", - "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0xb59c8912c83157a955f9d715e556257f432c35d7": { - "address": "0xb59c8912c83157a955f9d715e556257f432c35d7", - "symbol": "TRUF", - "decimals": 18, - "name": "Truflation", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xb59c8912c83157a955f9d715e556257f432c35d7.png", - "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0x42069d11a2cc72388a2e06210921e839cfbd3280": { - "address": "0x42069d11a2cc72388a2e06210921e839cfbd3280", - "symbol": "GNOME", - "decimals": 18, - "name": "GnomeLand", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x42069d11a2cc72388a2e06210921e839cfbd3280.png", - "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0x777b2839832982b35213063d850848369390ee16": { - "address": "0x777b2839832982b35213063d850848369390ee16", - "symbol": "JARVIS", - "decimals": 18, - "name": "Jarvis", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x777b2839832982b35213063d850848369390ee16.png", - "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0xd857af86a2c5b4f46fc7cb8032bd4f5625577eeb": { - "address": "0xd857af86a2c5b4f46fc7cb8032bd4f5625577eeb", - "symbol": "$HOKK", - "decimals": 9, - "name": "Hokkaidu Inu", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xd857af86a2c5b4f46fc7cb8032bd4f5625577eeb.png", - "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0xf578ad8809f13dabf921bdd3fcfbe194d0ab5628": { - "address": "0xf578ad8809f13dabf921bdd3fcfbe194d0ab5628", - "symbol": "VPP", - "decimals": 18, - "name": "Virtue Poker Points", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xf578ad8809f13dabf921bdd3fcfbe194d0ab5628.png", - "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0x3419875b4d3bca7f3fdda2db7a476a79fd31b4fe": { - "address": "0x3419875b4d3bca7f3fdda2db7a476a79fd31b4fe", - "symbol": "DZHV", - "decimals": 18, - "name": "DizzyHavoc", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x3419875b4d3bca7f3fdda2db7a476a79fd31b4fe.png", - "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0x01facc69ec7360640aa5898e852326752801674a": { - "address": "0x01facc69ec7360640aa5898e852326752801674a", - "symbol": "FUSE", - "decimals": 18, - "name": "Fuse", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x01facc69ec7360640aa5898e852326752801674a.png", - "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0xde5ed76e7c05ec5e4572cfc88d1acea165109e44": { - "address": "0xde5ed76e7c05ec5e4572cfc88d1acea165109e44", - "symbol": "DEUS", - "decimals": 18, - "name": "DEUS Finance", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xde5ed76e7c05ec5e4572cfc88d1acea165109e44.png", - "aggregators": ["CoinGecko", "Socket", "Rubic", "Rango"], - "occurrences": 4 - }, - "0x979584b07e1e14c7718c9fdab2e35bbb5fec2c59": { - "address": "0x979584b07e1e14c7718c9fdab2e35bbb5fec2c59", - "symbol": "OK", - "decimals": 18, - "name": "Okcash", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x979584b07e1e14c7718c9fdab2e35bbb5fec2c59.png", - "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0xa608512bbc9934e4b1ddecf0f5fb38b6ad93308d": { - "address": "0xa608512bbc9934e4b1ddecf0f5fb38b6ad93308d", - "symbol": "GUD", - "decimals": 18, - "name": "Gud Tech", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xa608512bbc9934e4b1ddecf0f5fb38b6ad93308d.png", - "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0xd85eff20288ca72ea9eecffb428f89ee5066ca5c": { - "address": "0xd85eff20288ca72ea9eecffb428f89ee5066ca5c", - "symbol": "ISK", - "decimals": 18, - "name": "ISKRA Token", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xd85eff20288ca72ea9eecffb428f89ee5066ca5c.png", - "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0x474f4cb764df9da079d94052fed39625c147c12c": { - "address": "0x474f4cb764df9da079d94052fed39625c147c12c", - "symbol": "BONSAI", - "decimals": 18, - "name": "Bonsai Token", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x474f4cb764df9da079d94052fed39625c147c12c.png", - "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0x6a4f69da1e2fb2a9b11d1aad60d03163fe567732": { - "address": "0x6a4f69da1e2fb2a9b11d1aad60d03163fe567732", - "symbol": "SHOG", - "decimals": 18, - "name": "SHOG", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x6a4f69da1e2fb2a9b11d1aad60d03163fe567732.png", - "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0xfafb7581a65a1f554616bf780fc8a8acd2ab8c9b": { - "address": "0xfafb7581a65a1f554616bf780fc8a8acd2ab8c9b", - "symbol": "SQUID", - "decimals": 18, - "name": "Squid Game", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xfafb7581a65a1f554616bf780fc8a8acd2ab8c9b.png", - "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0x6a9431b9ecce9dde3f7a32391d5b61c5ad11e4a0": { - "address": "0x6a9431b9ecce9dde3f7a32391d5b61c5ad11e4a0", - "symbol": "NUT", - "decimals": 18, - "name": "NutCoin", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x6a9431b9ecce9dde3f7a32391d5b61c5ad11e4a0.png", - "aggregators": ["CoinGecko", "Rubic", "Squid", "Rango"], - "occurrences": 4 - }, - "0x02f92800f57bcd74066f5709f1daa1a4302df875": { - "address": "0x02f92800f57bcd74066f5709f1daa1a4302df875", - "symbol": "PEAS", - "decimals": 18, - "name": "Peapods", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x02f92800f57bcd74066f5709f1daa1a4302df875.png", - "aggregators": ["CoinGecko", "LiFi", "Rubic", "Rango"], - "occurrences": 4 - }, - "0x63228048121877a9e0f52020834a135074e8207c": { - "address": "0x63228048121877a9e0f52020834a135074e8207c", - "symbol": "SAMA", - "decimals": 18, - "name": "Moonsama", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x63228048121877a9e0f52020834a135074e8207c.png", - "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0x3ee5e23eee121094f1cfc0ccc79d6c809ebd22e5": { - "address": "0x3ee5e23eee121094f1cfc0ccc79d6c809ebd22e5", - "symbol": "ION", - "decimals": 18, - "name": "Ionic Protocol", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x3ee5e23eee121094f1cfc0ccc79d6c809ebd22e5.png", - "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0xc11158c5da9db1d553ed28f0c2ba1cbedd42cfcb": { - "address": "0xc11158c5da9db1d553ed28f0c2ba1cbedd42cfcb", - "symbol": "PAW", - "decimals": 18, - "name": "PAW", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xc11158c5da9db1d553ed28f0c2ba1cbedd42cfcb.png", - "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0x63e71271719f03d7233f4fa306b6ea868d0f52ff": { - "address": "0x63e71271719f03d7233f4fa306b6ea868d0f52ff", - "symbol": "BINU", - "decimals": 18, - "name": "BaseInu", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x63e71271719f03d7233f4fa306b6ea868d0f52ff.png", - "aggregators": ["1inch", "Socket", "Rubic", "Rango"], - "occurrences": 4 - }, - "0xca5d8f8a8d49439357d3cf46ca2e720702f132b8": { - "address": "0xca5d8f8a8d49439357d3cf46ca2e720702f132b8", - "symbol": "GYD", - "decimals": 18, - "name": "Gyroscope GYD", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xca5d8f8a8d49439357d3cf46ca2e720702f132b8.png", - "aggregators": ["LiFi", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0xeeeeeb57642040be42185f49c52f7e9b38f8eeee": { - "address": "0xeeeeeb57642040be42185f49c52f7e9b38f8eeee", - "symbol": "ELK", - "decimals": 18, - "name": "ELK", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xeeeeeb57642040be42185f49c52f7e9b38f8eeee.png", - "aggregators": ["LiFi", "Socket", "Rubic", "Rango"], - "occurrences": 4 - }, - "0xc19669a405067927865b40ea045a2baabbbe57f5": { - "address": "0xc19669a405067927865b40ea045a2baabbbe57f5", - "symbol": "STAR", - "decimals": 18, - "name": "Star", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xc19669a405067927865b40ea045a2baabbbe57f5.png", - "aggregators": ["LiFi", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0xfb0c734fc3008683c5eff45bcf8128836c4d97d0": { - "address": "0xfb0c734fc3008683c5eff45bcf8128836c4d97d0", - "symbol": "VRTX", - "decimals": 18, - "name": "Vertex", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xfb0c734fc3008683c5eff45bcf8128836c4d97d0.png", - "aggregators": ["LiFi", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0x60359a0dd148b18d5cf1ddf8aa1916221ed0cbcd": { - "address": "0x60359a0dd148b18d5cf1ddf8aa1916221ed0cbcd", - "symbol": "NFI", - "decimals": 18, - "name": "NetherFi", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x60359a0dd148b18d5cf1ddf8aa1916221ed0cbcd.png", - "aggregators": ["LiFi", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0x081ad949defe648774c3b8debe0e4f28a80716dc": { - "address": "0x081ad949defe648774c3b8debe0e4f28a80716dc", - "symbol": "HZN", - "decimals": 18, - "name": "Horizon", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x081ad949defe648774c3b8debe0e4f28a80716dc.png", - "aggregators": ["LiFi", "Socket", "Rubic", "Squid"], - "occurrences": 4 - }, - "0xa9f52545c16efc3050f5ec65c7929fcbbd16a295": { - "address": "0xa9f52545c16efc3050f5ec65c7929fcbbd16a295", - "symbol": "OMKG", - "decimals": 18, - "name": "OmniKingdoms Gold", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xa9f52545c16efc3050f5ec65c7929fcbbd16a295.png", - "aggregators": ["LiFi", "Rubic", "Squid", "Rango"], - "occurrences": 4 - }, - "0x449b3317a6d1efb1bc3ba0700c9eaa4ffff4ae65": { - "address": "0x449b3317a6d1efb1bc3ba0700c9eaa4ffff4ae65", - "symbol": "AUDD", - "decimals": 6, - "name": "AUDD", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x449b3317a6d1efb1bc3ba0700c9eaa4ffff4ae65.png", - "aggregators": ["CoinGecko", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x1f9bd96ddb4bd07d6061f8933e9ba9ede9967550": { - "address": "0x1f9bd96ddb4bd07d6061f8933e9ba9ede9967550", - "symbol": "BOBA", - "decimals": 18, - "name": "Boba Network", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x1f9bd96ddb4bd07d6061f8933e9ba9ede9967550.png", - "aggregators": ["UniswapLabs", "Socket", "Rango"], - "occurrences": 3 - }, - "0x9126236476efba9ad8ab77855c60eb5bf37586eb": { - "address": "0x9126236476efba9ad8ab77855c60eb5bf37586eb", - "symbol": "CHECK", - "decimals": 18, - "name": "Checkmate", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x9126236476efba9ad8ab77855c60eb5bf37586eb.png", - "aggregators": ["CoinGecko", "Socket", "Rubic"], - "occurrences": 3 - }, - "0xf4d97f2da56e8c3098f3a8d538db630a2606a024": { - "address": "0xf4d97f2da56e8c3098f3a8d538db630a2606a024", - "symbol": "DIEM", - "decimals": 18, - "name": "Diem", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xf4d97f2da56e8c3098f3a8d538db630a2606a024.png", - "aggregators": ["CoinGecko", "Rubic", "Rango"], - "occurrences": 3 - }, - "0xd5390300c5db71f80d46f0fa9983fc72d4d1e3da": { - "address": "0xd5390300c5db71f80d46f0fa9983fc72d4d1e3da", - "symbol": "KAT", - "decimals": 18, - "name": "Katana", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xd5390300c5db71f80d46f0fa9983fc72d4d1e3da.png", - "aggregators": ["UniswapLabs", "Squid", "Rango"], - "occurrences": 3 - }, - "0x9eadbe35f3ee3bf3e28180070c429298a1b02f93": { - "address": "0x9eadbe35f3ee3bf3e28180070c429298a1b02f93", - "symbol": "LMTS", - "decimals": 18, - "name": "Limitless Official Token", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x9eadbe35f3ee3bf3e28180070c429298a1b02f93.png", - "aggregators": ["CoinGecko", "LiFi", "Rubic"], - "occurrences": 3 - }, - "0x8e4cbbcc33db6c0a18561fde1f6ba35906d4848b": { - "address": "0x8e4cbbcc33db6c0a18561fde1f6ba35906d4848b", - "symbol": "MEZO", - "decimals": 18, - "name": "MEZO", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x8e4cbbcc33db6c0a18561fde1f6ba35906d4848b.png", - "aggregators": ["CoinGecko", "Rubic", "Rango"], - "occurrences": 3 - }, - "0xc54ffa55a3fd03381aa86cf178b60dfaf827b61c": { - "address": "0xc54ffa55a3fd03381aa86cf178b60dfaf827b61c", - "symbol": "TENNA", - "decimals": 18, - "name": "Tenna", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xc54ffa55a3fd03381aa86cf178b60dfaf827b61c.png", - "aggregators": ["CoinGecko", "Rubic", "Squid"], - "occurrences": 3 - }, - "0x0e15db17e1b2ed310c7201b0203d89b63f18eb53": { - "address": "0x0e15db17e1b2ed310c7201b0203d89b63f18eb53", - "symbol": "PRIMO", - "decimals": 18, - "name": "PrimoAI", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x0e15db17e1b2ed310c7201b0203d89b63f18eb53.png", - "aggregators": ["CoinGecko", "Rubic", "Squid"], - "occurrences": 3 - }, - "0xf3e20293514d775a3149c304820d9e6a6fa29b07": { - "address": "0xf3e20293514d775a3149c304820d9e6a6fa29b07", - "symbol": "CUSTOS", - "decimals": 18, - "name": "Custos", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xf3e20293514d775a3149c304820d9e6a6fa29b07.png", - "aggregators": ["CoinGecko", "Rubic", "Rango"], - "occurrences": 3 - }, - "0xe0969ec84456b7e4d3dd2181fb5265edbb63f7bd": { - "address": "0xe0969ec84456b7e4d3dd2181fb5265edbb63f7bd", - "symbol": "FLK", - "decimals": 18, - "name": "FLK", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xe0969ec84456b7e4d3dd2181fb5265edbb63f7bd.png", - "aggregators": ["CoinGecko", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x0086cff0c1e5d17b19f5bcd4c8840a5b4251d959": { - "address": "0x0086cff0c1e5d17b19f5bcd4c8840a5b4251d959", - "symbol": "ODAI", - "decimals": 18, - "name": "ODEI AI", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x0086cff0c1e5d17b19f5bcd4c8840a5b4251d959.png", - "aggregators": ["CoinGecko", "Rubic", "Rango"], - "occurrences": 3 - }, - "0xd565e9eb9b7e2de4902486b7057d642393afdaa4": { - "address": "0xd565e9eb9b7e2de4902486b7057d642393afdaa4", - "symbol": "DOGEBASE", - "decimals": 18, - "name": "Doge Base", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xd565e9eb9b7e2de4902486b7057d642393afdaa4.png", - "aggregators": ["CoinGecko", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x00fbac94fec8d4089d3fe979f39454f48c71a65d": { - "address": "0x00fbac94fec8d4089d3fe979f39454f48c71a65d", - "symbol": "KVCM", - "decimals": 18, - "name": "Klima Protocol kVCM", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x00fbac94fec8d4089d3fe979f39454f48c71a65d.png", - "aggregators": ["CoinGecko", "Rubic", "Squid"], - "occurrences": 3 - }, - "0xbb2db41e62abf596b7f8ca7bd4733a7b357f5ab9": { - "address": "0xbb2db41e62abf596b7f8ca7bd4733a7b357f5ab9", - "symbol": "METACADEMAX", - "decimals": 18, - "name": "metacademax", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xbb2db41e62abf596b7f8ca7bd4733a7b357f5ab9.png", - "aggregators": ["CoinGecko", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x1d008f50fb828ef9debbbeae1b71fffe929bf317": { - "address": "0x1d008f50fb828ef9debbbeae1b71fffe929bf317", - "symbol": "CLANKFUN", - "decimals": 18, - "name": "clank.fun", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x1d008f50fb828ef9debbbeae1b71fffe929bf317.png", - "aggregators": ["CoinGecko", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x93918567cdd1bc845be955325a43419a7c56d66f": { - "address": "0x93918567cdd1bc845be955325a43419a7c56d66f", - "symbol": "MWXT", - "decimals": 18, - "name": "MWX Token", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x93918567cdd1bc845be955325a43419a7c56d66f.png", - "aggregators": ["CoinGecko", "Rubic", "Rango"], - "occurrences": 3 - }, - "0xf5de8697232a16a942f7cf706415f553ce53e27f": { - "address": "0xf5de8697232a16a942f7cf706415f553ce53e27f", - "symbol": "BLCK", - "decimals": 18, - "name": "BLCK Coin", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xf5de8697232a16a942f7cf706415f553ce53e27f.png", - "aggregators": ["CoinGecko", "Rubic", "Sonarwatch"], - "occurrences": 3 - }, - "0x6b67aac5e7456cf47d8901ba2cef01a89002973e": { - "address": "0x6b67aac5e7456cf47d8901ba2cef01a89002973e", - "symbol": "NTV", - "decimals": 18, - "name": "NativToken", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x6b67aac5e7456cf47d8901ba2cef01a89002973e.png", - "aggregators": ["CoinGecko", "Rubic", "Rango"], - "occurrences": 3 - }, - "0xc77eb53473759913bf278e52861ef281829cbe4d": { - "address": "0xc77eb53473759913bf278e52861ef281829cbe4d", - "symbol": "SKY", - "decimals": 18, - "name": "Skynet", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xc77eb53473759913bf278e52861ef281829cbe4d.png", - "aggregators": ["CoinGecko", "Rubic", "Squid"], - "occurrences": 3 - }, - "0x569abcf5fc993e30cfba3e7787b1420cfb44bdcc": { - "address": "0x569abcf5fc993e30cfba3e7787b1420cfb44bdcc", - "symbol": "VELK", - "decimals": 18, - "name": "Velkaris", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x569abcf5fc993e30cfba3e7787b1420cfb44bdcc.png", - "aggregators": ["CoinGecko", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x9b5037b68c6ed686a1f433e5eef9513bb1801b07": { - "address": "0x9b5037b68c6ed686a1f433e5eef9513bb1801b07", - "symbol": "SKY", - "decimals": 18, - "name": "SKYCASTLE", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x9b5037b68c6ed686a1f433e5eef9513bb1801b07.png", - "aggregators": ["CoinGecko", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x9999999999999d8b360c6985db1a74a0f3b75e1b": { - "address": "0x9999999999999d8b360c6985db1a74a0f3b75e1b", - "symbol": "KULT", - "decimals": 18, - "name": "Ж", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x9999999999999d8b360c6985db1a74a0f3b75e1b.png", - "aggregators": ["CoinGecko", "Rubic", "Rango"], - "occurrences": 3 - }, - "0xd1a7387d3ded8cb611a202fc1a9c9c74c23f2ba3": { - "address": "0xd1a7387d3ded8cb611a202fc1a9c9c74c23f2ba3", - "symbol": "STAKR", - "decimals": 18, - "name": "STAKR", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xd1a7387d3ded8cb611a202fc1a9c9c74c23f2ba3.png", - "aggregators": ["CoinGecko", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x76d1d20ad655323a26908388b24d69f42c4d3b07": { - "address": "0x76d1d20ad655323a26908388b24d69f42c4d3b07", - "symbol": "AC", - "decimals": 18, - "name": "Agent Conductor", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x76d1d20ad655323a26908388b24d69f42c4d3b07.png", - "aggregators": ["CoinGecko", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x29f3c0b678ffbe6c61bdca1054014f02be6c7450": { - "address": "0x29f3c0b678ffbe6c61bdca1054014f02be6c7450", - "symbol": "ANERI", - "decimals": 18, - "name": "aneri", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x29f3c0b678ffbe6c61bdca1054014f02be6c7450.png", - "aggregators": ["CoinGecko", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x55337650856299363c496065c836b9c6e9de0367": { - "address": "0x55337650856299363c496065c836b9c6e9de0367", - "symbol": "ACES", - "decimals": 18, - "name": "ACES.fun", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x55337650856299363c496065c836b9c6e9de0367.png", - "aggregators": ["CoinGecko", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x610a5a297fe2135289b8565ef645de2a7c00eba3": { - "address": "0x610a5a297fe2135289b8565ef645de2a7c00eba3", - "symbol": "FETCHR", - "decimals": 18, - "name": "fetchr", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x610a5a297fe2135289b8565ef645de2a7c00eba3.png", - "aggregators": ["CoinGecko", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x9b01d5145b55526fb180a837ae398efbd78fd0f2": { - "address": "0x9b01d5145b55526fb180a837ae398efbd78fd0f2", - "symbol": "FREDWILSON", - "decimals": 18, - "name": "fredwilson", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x9b01d5145b55526fb180a837ae398efbd78fd0f2.png", - "aggregators": ["CoinGecko", "Rubic", "Rango"], - "occurrences": 3 - }, - "0xc71f37d9bf4c5d1e7fe4bccb97e6f30b11b37d29": { - "address": "0xc71f37d9bf4c5d1e7fe4bccb97e6f30b11b37d29", - "symbol": "EQTY", - "decimals": 18, - "name": "EQTY", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xc71f37d9bf4c5d1e7fe4bccb97e6f30b11b37d29.png", - "aggregators": ["CoinGecko", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x320c99aeddf34721b8a566ba2540f8fb72400e88": { - "address": "0x320c99aeddf34721b8a566ba2540f8fb72400e88", - "symbol": "FROST", - "decimals": 18, - "name": "Frost", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x320c99aeddf34721b8a566ba2540f8fb72400e88.png", - "aggregators": ["CoinGecko", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x7d928816cc9c462dd7adef911de41535e444cb07": { - "address": "0x7d928816cc9c462dd7adef911de41535e444cb07", - "symbol": "FAIR", - "decimals": 18, - "name": "Faircaster", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x7d928816cc9c462dd7adef911de41535e444cb07.png", - "aggregators": ["CoinGecko", "Rubic", "Rango"], - "occurrences": 3 - }, - "0xb5d409f6e679b0f89a669ac9714173177683eb7c": { - "address": "0xb5d409f6e679b0f89a669ac9714173177683eb7c", - "symbol": "CIK", - "decimals": 18, - "name": "Christ is King", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xb5d409f6e679b0f89a669ac9714173177683eb7c.png", - "aggregators": ["CoinGecko", "Rubic", "Rango"], - "occurrences": 3 - }, - "0xc2704323a9f6b41b81a735cddd2ccb6273da1197": { - "address": "0xc2704323a9f6b41b81a735cddd2ccb6273da1197", - "symbol": "BAIBY", - "decimals": 18, - "name": "bAIbysitter", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xc2704323a9f6b41b81a735cddd2ccb6273da1197.png", - "aggregators": ["CoinGecko", "Rubic", "Squid"], - "occurrences": 3 - }, - "0x6f89bca4ea5931edfcb09786267b251dee752b07": { - "address": "0x6f89bca4ea5931edfcb09786267b251dee752b07", - "symbol": "REGENT", - "decimals": 18, - "name": "Regent", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x6f89bca4ea5931edfcb09786267b251dee752b07.png", - "aggregators": ["CoinGecko", "Rubic", "Rango"], - "occurrences": 3 - }, - "0xba5ed8a0e261bf2a5ad629d4d5de884ccbfdf3f7": { - "address": "0xba5ed8a0e261bf2a5ad629d4d5de884ccbfdf3f7", - "symbol": "BASEDGUY", - "decimals": 18, - "name": "Just a based guy", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xba5ed8a0e261bf2a5ad629d4d5de884ccbfdf3f7.png", - "aggregators": ["CoinGecko", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x3da7ad8101bc1fc0c80e2860be9a531385258525": { - "address": "0x3da7ad8101bc1fc0c80e2860be9a531385258525", - "symbol": "$SXS", - "decimals": 18, - "name": "$SXS", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x3da7ad8101bc1fc0c80e2860be9a531385258525.png", - "aggregators": ["CoinGecko", "Rubic", "Rango"], - "occurrences": 3 - }, - "0xc7562d0536d3bf5a92865ac22062a2893e45cb07": { - "address": "0xc7562d0536d3bf5a92865ac22062a2893e45cb07", - "symbol": "SYYN", - "decimals": 18, - "name": "Siyana", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xc7562d0536d3bf5a92865ac22062a2893e45cb07.png", - "aggregators": ["CoinGecko", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x767a739d1a152639e9ea1d8c1bd55fdc5b217d7f": { - "address": "0x767a739d1a152639e9ea1d8c1bd55fdc5b217d7f", - "symbol": "VEIL", - "decimals": 18, - "name": "VEIL Token", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x767a739d1a152639e9ea1d8c1bd55fdc5b217d7f.png", - "aggregators": ["CoinGecko", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x810affc8aadad2824c65e0a2c5ef96ef1de42ba3": { - "address": "0x810affc8aadad2824c65e0a2c5ef96ef1de42ba3", - "symbol": "AXOBOTL", - "decimals": 18, - "name": "AXOBOTL", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x810affc8aadad2824c65e0a2c5ef96ef1de42ba3.png", - "aggregators": ["CoinGecko", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x3270fec132cc196a3d28c9cdfa4564b3a212ec31": { - "address": "0x3270fec132cc196a3d28c9cdfa4564b3a212ec31", - "symbol": "ARBASE", - "decimals": 18, - "name": "Arbase GM", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x3270fec132cc196a3d28c9cdfa4564b3a212ec31.png", - "aggregators": ["CoinGecko", "Rubic", "Rango"], - "occurrences": 3 - }, - "0xbf26cbe8f1d754f97ebe9a544a38dee692e75ef3": { - "address": "0xbf26cbe8f1d754f97ebe9a544a38dee692e75ef3", - "symbol": "NORM", - "decimals": 18, - "name": "Norm", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xbf26cbe8f1d754f97ebe9a544a38dee692e75ef3.png", - "aggregators": ["CoinGecko", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x9215e6362f76fc781df00d51293cc7179c6c99a4": { - "address": "0x9215e6362f76fc781df00d51293cc7179c6c99a4", - "symbol": "PLAI", - "decimals": 18, - "name": "PLAI", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x9215e6362f76fc781df00d51293cc7179c6c99a4.png", - "aggregators": ["CoinGecko", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x60b0c26ea34be7d8625526a6b18b3ad4c6b9f694": { - "address": "0x60b0c26ea34be7d8625526a6b18b3ad4c6b9f694", - "symbol": "CLAWGUIN", - "decimals": 18, - "name": "Clawguin", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x60b0c26ea34be7d8625526a6b18b3ad4c6b9f694.png", - "aggregators": ["CoinGecko", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x5cd9166494673c15cbdfe8750def8bbab80a5b07": { - "address": "0x5cd9166494673c15cbdfe8750def8bbab80a5b07", - "symbol": "TRANSLATE", - "decimals": 18, - "name": "TRANSLATE", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x5cd9166494673c15cbdfe8750def8bbab80a5b07.png", - "aggregators": ["CoinGecko", "Rubic", "Rango"], - "occurrences": 3 - }, - "0xdb9e8adfb7cf451bcdf65ba1cdc791e95246d9c7": { - "address": "0xdb9e8adfb7cf451bcdf65ba1cdc791e95246d9c7", - "symbol": "FRIES", - "decimals": 18, - "name": "fries", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xdb9e8adfb7cf451bcdf65ba1cdc791e95246d9c7.png", - "aggregators": ["CoinGecko", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x02dd23668605ddc983bc2a2afa99f47d88a2f98b": { - "address": "0x02dd23668605ddc983bc2a2afa99f47d88a2f98b", - "symbol": "BRO", - "decimals": 18, - "name": "BRO on BASE", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x02dd23668605ddc983bc2a2afa99f47d88a2f98b.png", - "aggregators": ["CoinGecko", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x18b9ba6b284994d7cbae852c5e1361e8dfab7e9d": { - "address": "0x18b9ba6b284994d7cbae852c5e1361e8dfab7e9d", - "symbol": "BASEMENT", - "decimals": 18, - "name": "BASEment", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x18b9ba6b284994d7cbae852c5e1361e8dfab7e9d.png", - "aggregators": ["CoinGecko", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x948d07d30400518f2c57ba24bafbb1d71f9c2b07": { - "address": "0x948d07d30400518f2c57ba24bafbb1d71f9c2b07", - "symbol": "CHATR", - "decimals": 18, - "name": "chatr", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x948d07d30400518f2c57ba24bafbb1d71f9c2b07.png", - "aggregators": ["CoinGecko", "Rubic", "Rango"], - "occurrences": 3 - }, - "0xeb560289067c375e4897552dcda7e3d203bffbe2": { - "address": "0xeb560289067c375e4897552dcda7e3d203bffbe2", - "symbol": "BILLY", - "decimals": 18, - "name": "Base Mascot", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xeb560289067c375e4897552dcda7e3d203bffbe2.png", - "aggregators": ["CoinGecko", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x6eefbfc95c7810adf53ac232d1de911839918749": { - "address": "0x6eefbfc95c7810adf53ac232d1de911839918749", - "symbol": "COS", - "decimals": 18, - "name": "ClawdOS", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x6eefbfc95c7810adf53ac232d1de911839918749.png", - "aggregators": ["CoinGecko", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x632db1aaace73401a5dc8cde6e9062b8ec0fd819": { - "address": "0x632db1aaace73401a5dc8cde6e9062b8ec0fd819", - "symbol": "GLDY", - "decimals": 18, - "name": "Streamex GLDY", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x632db1aaace73401a5dc8cde6e9062b8ec0fd819.png", - "aggregators": ["CoinGecko", "Rubic", "Rango"], - "occurrences": 3 - }, - "0xb8b7dfacec9abbcb0093f1344c41cb7263c4795a": { - "address": "0xb8b7dfacec9abbcb0093f1344c41cb7263c4795a", - "symbol": "LIGHT", - "decimals": 18, - "name": "Arcturian AI by Virtuals", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xb8b7dfacec9abbcb0093f1344c41cb7263c4795a.png", - "aggregators": ["CoinGecko", "Rubic", "Rango"], - "occurrences": 3 - }, - "0xeecc15f24b8fe65cfd18d4095f91a7adefdd53d5": { - "address": "0xeecc15f24b8fe65cfd18d4095f91a7adefdd53d5", - "symbol": "BACHI", - "decimals": 9, - "name": "Bachi on Base", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xeecc15f24b8fe65cfd18d4095f91a7adefdd53d5.png", - "aggregators": ["CoinGecko", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x26ecb65d997cbff18fca447cb85f6af1175a22b0": { - "address": "0x26ecb65d997cbff18fca447cb85f6af1175a22b0", - "symbol": "FRENLY", - "decimals": 18, - "name": "Frenly", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x26ecb65d997cbff18fca447cb85f6af1175a22b0.png", - "aggregators": ["CoinGecko", "Rubic", "Rango"], - "occurrences": 3 - }, - "0xce5e3f98ce13a0434fd91defd69fa04c92cbc80c": { - "address": "0xce5e3f98ce13a0434fd91defd69fa04c92cbc80c", - "symbol": "PANDA", - "decimals": 18, - "name": "Panda", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xce5e3f98ce13a0434fd91defd69fa04c92cbc80c.png", - "aggregators": ["CoinGecko", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x3a979107edb0ede7888977bb2c027369c1e357e1": { - "address": "0x3a979107edb0ede7888977bb2c027369c1e357e1", - "symbol": "UGGO", - "decimals": 18, - "name": "UGGO ", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x3a979107edb0ede7888977bb2c027369c1e357e1.png", - "aggregators": ["CoinGecko", "Rubic", "Rango"], - "occurrences": 3 - }, - "0xae7dc6559aeaadd8a3c156fe695a650c7095c9ce": { - "address": "0xae7dc6559aeaadd8a3c156fe695a650c7095c9ce", - "symbol": "DEPLOYER", - "decimals": 18, - "name": "deployer", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xae7dc6559aeaadd8a3c156fe695a650c7095c9ce.png", - "aggregators": ["CoinGecko", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x9bba915f036158582c20b51113b925f243a1a1a1": { - "address": "0x9bba915f036158582c20b51113b925f243a1a1a1", - "symbol": "IMGN", - "decimals": 18, - "name": "IMGN Labs", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x9bba915f036158582c20b51113b925f243a1a1a1.png", - "aggregators": ["CoinGecko", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x051024b653e8ec69e72693f776c41c2a9401fb07": { - "address": "0x051024b653e8ec69e72693f776c41c2a9401fb07", - "symbol": "BETR", - "decimals": 18, - "name": "BETRMINT", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x051024b653e8ec69e72693f776c41c2a9401fb07.png", - "aggregators": ["CoinGecko", "Rubic", "Rango"], - "occurrences": 3 - }, - "0xf578c9e57b40a00aef168774f3e47b04c03bf59a": { - "address": "0xf578c9e57b40a00aef168774f3e47b04c03bf59a", - "symbol": "BKS", - "decimals": 18, - "name": "Backstage", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xf578c9e57b40a00aef168774f3e47b04c03bf59a.png", - "aggregators": ["CoinGecko", "Rubic", "Rango"], - "occurrences": 3 - }, - "0xa64a1b5b0a5ce578a8c6bca10cbe36d83713d170": { - "address": "0xa64a1b5b0a5ce578a8c6bca10cbe36d83713d170", - "symbol": "PENGUIN", - "decimals": 18, - "name": "PePenguin", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xa64a1b5b0a5ce578a8c6bca10cbe36d83713d170.png", - "aggregators": ["CoinGecko", "Rubic", "Rango"], - "occurrences": 3 - }, - "0xf48bc234855ab08ab2ec0cfaaeb2a80d065a3b07": { - "address": "0xf48bc234855ab08ab2ec0cfaaeb2a80d065a3b07", - "symbol": "BNKRW", - "decimals": 18, - "name": "BankrWallet", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xf48bc234855ab08ab2ec0cfaaeb2a80d065a3b07.png", - "aggregators": ["CoinGecko", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x99899a7362d726b43c5a360f10208610f7128b07": { - "address": "0x99899a7362d726b43c5a360f10208610f7128b07", - "symbol": "CHAT", - "decimals": 18, - "name": "chat", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x99899a7362d726b43c5a360f10208610f7128b07.png", - "aggregators": ["CoinGecko", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x81f35261b90ad59a1277c0e94f8012371eaafcb9": { - "address": "0x81f35261b90ad59a1277c0e94f8012371eaafcb9", - "symbol": "LUCKY", - "decimals": 18, - "name": "LadyLuck", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x81f35261b90ad59a1277c0e94f8012371eaafcb9.png", - "aggregators": ["CoinGecko", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x3c07ef1bd575b5f5b1ffcb868353f5bc501ed482": { - "address": "0x3c07ef1bd575b5f5b1ffcb868353f5bc501ed482", - "symbol": "U1INCH", - "decimals": 18, - "name": "Wrapped 1inch (Universal)", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x3c07ef1bd575b5f5b1ffcb868353f5bc501ed482.png", - "aggregators": ["CoinGecko", "Rubic", "Sonarwatch"], - "occurrences": 3 - }, - "0x2eddac071732a52ab2cbfa2d5fd89df4381f7f4a": { - "address": "0x2eddac071732a52ab2cbfa2d5fd89df4381f7f4a", - "symbol": "PP", - "decimals": 18, - "name": "Peach and Pablo", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x2eddac071732a52ab2cbfa2d5fd89df4381f7f4a.png", - "aggregators": ["CoinGecko", "Rubic", "Rango"], - "occurrences": 3 - }, - "0xabb77d3bc8a17a5a9ae5ccc227ae5e0691078453": { - "address": "0xabb77d3bc8a17a5a9ae5ccc227ae5e0691078453", - "symbol": "PATRIOT", - "decimals": 18, - "name": "PATRIOT", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xabb77d3bc8a17a5a9ae5ccc227ae5e0691078453.png", - "aggregators": ["CoinGecko", "Rubic", "Rango"], - "occurrences": 3 - }, - "0xa101ab557f30e8ca190113f63752caedb08ebb07": { - "address": "0xa101ab557f30e8ca190113f63752caedb08ebb07", - "symbol": "BEACON", - "decimals": 18, - "name": "BeaconOnBase", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xa101ab557f30e8ca190113f63752caedb08ebb07.png", - "aggregators": ["CoinGecko", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x015e03a6ccef48a18ddb6cfdc3066d9443875672": { - "address": "0x015e03a6ccef48a18ddb6cfdc3066d9443875672", - "symbol": "BLOCK", - "decimals": 18, - "name": "BLOCK", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x015e03a6ccef48a18ddb6cfdc3066d9443875672.png", - "aggregators": ["CoinGecko", "Rubic", "Squid"], - "occurrences": 3 - }, - "0x1ee5dd1794c28f559f94d2cc642bae62dc3be5cf": { - "address": "0x1ee5dd1794c28f559f94d2cc642bae62dc3be5cf", - "symbol": "LIKE", - "decimals": 6, - "name": "LIKE", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x1ee5dd1794c28f559f94d2cc642bae62dc3be5cf.png", - "aggregators": ["CoinGecko", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x080d43c2164afdbc3712422ce78ab902ccab5ca1": { - "address": "0x080d43c2164afdbc3712422ce78ab902ccab5ca1", - "symbol": "SPON", - "decimals": 18, - "name": "SPON", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x080d43c2164afdbc3712422ce78ab902ccab5ca1.png", - "aggregators": ["CoinGecko", "Rubic", "Rango"], - "occurrences": 3 - }, - "0xbe8728795b935bf6e2a9253ce7a2ef6fa831f51e": { - "address": "0xbe8728795b935bf6e2a9253ce7a2ef6fa831f51e", - "symbol": "UOS", - "decimals": 18, - "name": "Universal Operating System", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xbe8728795b935bf6e2a9253ce7a2ef6fa831f51e.png", - "aggregators": ["CoinGecko", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x521ebb84ea82ee65154b68ecfe3a7292fb3779d6": { - "address": "0x521ebb84ea82ee65154b68ecfe3a7292fb3779d6", - "symbol": "AGNT", - "decimals": 18, - "name": "AGNT", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x521ebb84ea82ee65154b68ecfe3a7292fb3779d6.png", - "aggregators": ["CoinGecko", "Rubic", "Rango"], - "occurrences": 3 - }, - "0xd88fd4a11255e51f64f78b4a7d74456325c2d8dc": { - "address": "0xd88fd4a11255e51f64f78b4a7d74456325c2d8dc", - "symbol": "BV7X", - "decimals": 18, - "name": "BitVault Signal", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xd88fd4a11255e51f64f78b4a7d74456325c2d8dc.png", - "aggregators": ["CoinGecko", "Rubic", "Rango"], - "occurrences": 3 - }, - "0xd628dc2c4ec10feb07e5c8bf039f7c1c374d1b07": { - "address": "0xd628dc2c4ec10feb07e5c8bf039f7c1c374d1b07", - "symbol": "ZIGGY", - "decimals": 18, - "name": "Ziggy", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xd628dc2c4ec10feb07e5c8bf039f7c1c374d1b07.png", - "aggregators": ["CoinGecko", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x0a455245148fa54129d8266f5d8742dd0d05f0c6": { - "address": "0x0a455245148fa54129d8266f5d8742dd0d05f0c6", - "symbol": "ARTS", - "decimals": 18, - "name": "ARTSTED", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x0a455245148fa54129d8266f5d8742dd0d05f0c6.png", - "aggregators": ["CoinGecko", "Rubic", "Squid"], - "occurrences": 3 - }, - "0x20429f731096e359910921994a267d32ef576720": { - "address": "0x20429f731096e359910921994a267d32ef576720", - "symbol": "SCAN", - "decimals": 18, - "name": "SCAN", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x20429f731096e359910921994a267d32ef576720.png", - "aggregators": ["CoinGecko", "Rubic", "Rango"], - "occurrences": 3 - }, - "0xbe1518af2419b8ead1fbca138a676d559fedb51d": { - "address": "0xbe1518af2419b8ead1fbca138a676d559fedb51d", - "symbol": "NXA", - "decimals": 18, - "name": "NEXA Agent", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xbe1518af2419b8ead1fbca138a676d559fedb51d.png", - "aggregators": ["CoinGecko", "Rubic", "Rango"], - "occurrences": 3 - }, - "0xaf79b22c0994b5e9188dea5b4321b3d99fadbee9": { - "address": "0xaf79b22c0994b5e9188dea5b4321b3d99fadbee9", - "symbol": "ROAR", - "decimals": 18, - "name": "Roarin", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xaf79b22c0994b5e9188dea5b4321b3d99fadbee9.png", - "aggregators": ["CoinGecko", "Rubic", "Rango"], - "occurrences": 3 - }, - "0xf714e60f85497d70508f7e356b5db80e64539ba3": { - "address": "0xf714e60f85497d70508f7e356b5db80e64539ba3", - "symbol": "PERKOS", - "decimals": 18, - "name": "PerkOS", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xf714e60f85497d70508f7e356b5db80e64539ba3.png", - "aggregators": ["CoinGecko", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x21cfcfc3d8f98fc728f48341d10ad8283f6eb7ab": { - "address": "0x21cfcfc3d8f98fc728f48341d10ad8283f6eb7ab", - "symbol": "TRUE", - "decimals": 18, - "name": "True", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x21cfcfc3d8f98fc728f48341d10ad8283f6eb7ab.png", - "aggregators": ["CoinGecko", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x920e753d8d7d5b598063c89b6f06288803448d06": { - "address": "0x920e753d8d7d5b598063c89b6f06288803448d06", - "symbol": "AIX", - "decimals": 18, - "name": "AIX", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x920e753d8d7d5b598063c89b6f06288803448d06.png", - "aggregators": ["CoinGecko", "Rubic", "Rango"], - "occurrences": 3 - }, - "0xfb3ad5550ca5730a6f91350032c4da1efdfde3e8": { - "address": "0xfb3ad5550ca5730a6f91350032c4da1efdfde3e8", - "symbol": "PHI", - "decimals": 18, - "name": "PHI", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xfb3ad5550ca5730a6f91350032c4da1efdfde3e8.png", - "aggregators": ["CoinGecko", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x9ea01819f6fbd41cb004216680e73096eed56cbf": { - "address": "0x9ea01819f6fbd41cb004216680e73096eed56cbf", - "symbol": "OXAI", - "decimals": 18, - "name": "Oxai", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x9ea01819f6fbd41cb004216680e73096eed56cbf.png", - "aggregators": ["CoinGecko", "Rubic", "Sonarwatch"], - "occurrences": 3 - }, - "0xb9f986d125dcb622ddfae1dc2df857ce84dc7deb": { - "address": "0xb9f986d125dcb622ddfae1dc2df857ce84dc7deb", - "symbol": "ACID", - "decimals": 18, - "name": "Happy Acid", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xb9f986d125dcb622ddfae1dc2df857ce84dc7deb.png", - "aggregators": ["CoinGecko", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x36a947baa2492c72bf9d3307117237e79145a87d": { - "address": "0x36a947baa2492c72bf9d3307117237e79145a87d", - "symbol": "TONY", - "decimals": 18, - "name": "TONY", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x36a947baa2492c72bf9d3307117237e79145a87d.png", - "aggregators": ["CoinGecko", "Rubic", "Rango"], - "occurrences": 3 - }, - "0xfaded58c5fac3d95643a14ee33b7ea9f50084b9a": { - "address": "0xfaded58c5fac3d95643a14ee33b7ea9f50084b9a", - "symbol": "TGATE", - "decimals": 18, - "name": "TensorGate", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xfaded58c5fac3d95643a14ee33b7ea9f50084b9a.png", - "aggregators": ["CoinGecko", "Rubic", "Rango"], - "occurrences": 3 - }, - "0xd3776969966b340d72d75731ef890a3bc9f21ba3": { - "address": "0xd3776969966b340d72d75731ef890a3bc9f21ba3", - "symbol": "GEM", - "decimals": 18, - "name": "Gem", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xd3776969966b340d72d75731ef890a3bc9f21ba3.png", - "aggregators": ["CoinGecko", "Rubic", "Rango"], - "occurrences": 3 - }, - "0xfb60b8266243d994eaa7499fca71d4ffe76c08d7": { - "address": "0xfb60b8266243d994eaa7499fca71d4ffe76c08d7", - "symbol": "FIN", - "decimals": 18, - "name": "Finwizz", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xfb60b8266243d994eaa7499fca71d4ffe76c08d7.png", - "aggregators": ["CoinGecko", "Rubic", "Squid"], - "occurrences": 3 - }, - "0xe57e601c06689d3e2bf7db7bebb14b4ff28400c6": { - "address": "0xe57e601c06689d3e2bf7db7bebb14b4ff28400c6", - "symbol": "MRDN", - "decimals": 18, - "name": "Meridian", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xe57e601c06689d3e2bf7db7bebb14b4ff28400c6.png", - "aggregators": ["CoinGecko", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x50d2280441372486beecdd328c1854743ebacb07": { - "address": "0x50d2280441372486beecdd328c1854743ebacb07", - "symbol": "KELLYCLAUDE", - "decimals": 18, - "name": "KellyClaude", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x50d2280441372486beecdd328c1854743ebacb07.png", - "aggregators": ["CoinGecko", "Rubic", "Rango"], - "occurrences": 3 - }, - "0xa760c69ae94b4b7c20b75f2eef2e84a4d48ffe37": { - "address": "0xa760c69ae94b4b7c20b75f2eef2e84a4d48ffe37", - "symbol": "NAOMI", - "decimals": 18, - "name": "Naomi by BunnyOS", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xa760c69ae94b4b7c20b75f2eef2e84a4d48ffe37.png", - "aggregators": ["CoinGecko", "Rubic", "Squid"], - "occurrences": 3 - }, - "0x4c7efedec321fb437b7c61e2acd8697769e98a76": { - "address": "0x4c7efedec321fb437b7c61e2acd8697769e98a76", - "symbol": "FOX", - "decimals": 18, - "name": "FOX BETS AI", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x4c7efedec321fb437b7c61e2acd8697769e98a76.png", - "aggregators": ["CoinGecko", "Rubic", "Squid"], - "occurrences": 3 - }, - "0xaa533169d1e182ed3e271079604dbdc643e895d1": { - "address": "0xaa533169d1e182ed3e271079604dbdc643e895d1", - "symbol": "FOXCLAW", - "decimals": 18, - "name": "Foxclaw", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xaa533169d1e182ed3e271079604dbdc643e895d1.png", - "aggregators": ["CoinGecko", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x1371b2a6998c42ccd3480207282c3fa2888148ce": { - "address": "0x1371b2a6998c42ccd3480207282c3fa2888148ce", - "symbol": "KYLIE", - "decimals": 14, - "name": "Kylie", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x1371b2a6998c42ccd3480207282c3fa2888148ce.png", - "aggregators": ["CoinGecko", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x9ae5f51d81ff510bf961218f833f79d57bfbab07": { - "address": "0x9ae5f51d81ff510bf961218f833f79d57bfbab07", - "symbol": "SELFCLAW", - "decimals": 18, - "name": "SelfClaw", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x9ae5f51d81ff510bf961218f833f79d57bfbab07.png", - "aggregators": ["CoinGecko", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x4e6c9f48f73e54ee5f3ab7e2992b2d733d0d0b07": { - "address": "0x4e6c9f48f73e54ee5f3ab7e2992b2d733d0d0b07", - "symbol": "JUNO", - "decimals": 18, - "name": "Juno Agent", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x4e6c9f48f73e54ee5f3ab7e2992b2d733d0d0b07.png", - "aggregators": ["CoinGecko", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x83d5d441ed15737d34226b682f7427d2217f2a8f": { - "address": "0x83d5d441ed15737d34226b682f7427d2217f2a8f", - "symbol": "REM", - "decimals": 18, - "name": "Real Estate Metaverse", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x83d5d441ed15737d34226b682f7427d2217f2a8f.png", - "aggregators": ["CoinGecko", "Rubic", "Rango"], - "occurrences": 3 - }, - "0xb17a7581c9a006e8b5fda85506cfd3448ed75746": { - "address": "0xb17a7581c9a006e8b5fda85506cfd3448ed75746", - "symbol": "AUDIT", - "decimals": 18, - "name": "The Audit Oracle AuditOne", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xb17a7581c9a006e8b5fda85506cfd3448ed75746.png", - "aggregators": ["CoinGecko", "Rubic", "Squid"], - "occurrences": 3 - }, - "0x31d553822b37bda67126d5ea9d165b9456f72b07": { - "address": "0x31d553822b37bda67126d5ea9d165b9456f72b07", - "symbol": "CLAUNCH", - "decimals": 18, - "name": "ConLaunch", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x31d553822b37bda67126d5ea9d165b9456f72b07.png", - "aggregators": ["CoinGecko", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x534b7aad1cdb6f02ec48cabe428f0d9131e40b07": { - "address": "0x534b7aad1cdb6f02ec48cabe428f0d9131e40b07", - "symbol": "MINI", - "decimals": 18, - "name": "minidev", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x534b7aad1cdb6f02ec48cabe428f0d9131e40b07.png", - "aggregators": ["CoinGecko", "Rubic", "Rango"], - "occurrences": 3 - }, - "0xd2047ebdb205ee6862b69ae9fb3501652cc97d36": { - "address": "0xd2047ebdb205ee6862b69ae9fb3501652cc97d36", - "symbol": "BRLV", - "decimals": 18, - "name": "BRLV", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xd2047ebdb205ee6862b69ae9fb3501652cc97d36.png", - "aggregators": ["CoinGecko", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x111123ea4cee28cf010703593a8a2a3bbb91756c": { - "address": "0x111123ea4cee28cf010703593a8a2a3bbb91756c", - "symbol": "ARA", - "decimals": 18, - "name": "ARA", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x111123ea4cee28cf010703593a8a2a3bbb91756c.png", - "aggregators": ["CoinGecko", "Rubic", "Rango"], - "occurrences": 3 - }, - "0xfaf1c31f6855e91b1a905761c81a79e4966e4709": { - "address": "0xfaf1c31f6855e91b1a905761c81a79e4966e4709", - "symbol": "BTC", - "decimals": 18, - "name": "Bitcoin Base", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xfaf1c31f6855e91b1a905761c81a79e4966e4709.png", - "aggregators": ["CoinGecko", "Rubic", "Rango"], - "occurrences": 3 - }, - "0xe4da9889db3d1987856e56da08ec7e9f484f6434": { - "address": "0xe4da9889db3d1987856e56da08ec7e9f484f6434", - "symbol": "LAZY", - "decimals": 18, - "name": "King Kovu", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xe4da9889db3d1987856e56da08ec7e9f484f6434.png", - "aggregators": ["CoinGecko", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x9f1529e296972f6eab3c7c87e898dac2c3a020bc": { - "address": "0x9f1529e296972f6eab3c7c87e898dac2c3a020bc", - "symbol": "PSYOPS", - "decimals": 18, - "name": "PSYOPS", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x9f1529e296972f6eab3c7c87e898dac2c3a020bc.png", - "aggregators": ["CoinGecko", "Rubic", "Squid"], - "occurrences": 3 - }, - "0x8c0d3adcf8ce094e1ae437557ec90a6374dc9bdd": { - "address": "0x8c0d3adcf8ce094e1ae437557ec90a6374dc9bdd", - "symbol": "OVPP", - "decimals": 9, - "name": "OpenVPP", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x8c0d3adcf8ce094e1ae437557ec90a6374dc9bdd.png", - "aggregators": ["CoinGecko", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x24f883b8157956101bb6a52eff94d3ae8188e890": { - "address": "0x24f883b8157956101bb6a52eff94d3ae8188e890", - "symbol": "GRIPPY", - "decimals": 18, - "name": "GRIPPY", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x24f883b8157956101bb6a52eff94d3ae8188e890.png", - "aggregators": ["CoinGecko", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x268d46d09d59d555350701a5336dc0d516f80de3": { - "address": "0x268d46d09d59d555350701a5336dc0d516f80de3", - "symbol": "ONLYUP", - "decimals": 18, - "name": "OnlyUp Token", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x268d46d09d59d555350701a5336dc0d516f80de3.png", - "aggregators": ["CoinGecko", "Rubic", "Rango"], - "occurrences": 3 - }, - "0xd4306991f8a5cef2d2bcb3262224ded11bd18bad": { - "address": "0xd4306991f8a5cef2d2bcb3262224ded11bd18bad", - "symbol": "MOONBASE", - "decimals": 18, - "name": "Moonbase", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xd4306991f8a5cef2d2bcb3262224ded11bd18bad.png", - "aggregators": ["CoinGecko", "Rubic", "Rango"], - "occurrences": 3 - }, - "0xf3ce5ddaab6c133f9875a4a46c55cf0b58111b07": { - "address": "0xf3ce5ddaab6c133f9875a4a46c55cf0b58111b07", - "symbol": "AXIOM", - "decimals": 18, - "name": "Axiom", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xf3ce5ddaab6c133f9875a4a46c55cf0b58111b07.png", - "aggregators": ["CoinGecko", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x85eac631c800af804476b140f87039f742c28ba3": { - "address": "0x85eac631c800af804476b140f87039f742c28ba3", - "symbol": "WOON", - "decimals": 18, - "name": "Woon", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x85eac631c800af804476b140f87039f742c28ba3.png", - "aggregators": ["CoinGecko", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x389e4cc15ace2f0993d61f0ff52c1f424915fb07": { - "address": "0x389e4cc15ace2f0993d61f0ff52c1f424915fb07", - "symbol": "RELDO", - "decimals": 18, - "name": "ReldoTheScribe", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x389e4cc15ace2f0993d61f0ff52c1f424915fb07.png", - "aggregators": ["CoinGecko", "Rubic", "Rango"], - "occurrences": 3 - }, - "0xd67a9266d0ae84839f62197713b2d2a9f3a62ba3": { - "address": "0xd67a9266d0ae84839f62197713b2d2a9f3a62ba3", - "symbol": "HISTORY", - "decimals": 18, - "name": "Ethereum History", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xd67a9266d0ae84839f62197713b2d2a9f3a62ba3.png", - "aggregators": ["CoinGecko", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x1fdcfdec6fe7a8956bd5b6c4a8c3791ae0a19065": { - "address": "0x1fdcfdec6fe7a8956bd5b6c4a8c3791ae0a19065", - "symbol": "BULLPEPE", - "decimals": 18, - "name": "Bull Pepe", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x1fdcfdec6fe7a8956bd5b6c4a8c3791ae0a19065.png", - "aggregators": ["CoinGecko", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x55c650b99529ebdda6f7199b64f94ad49316db07": { - "address": "0x55c650b99529ebdda6f7199b64f94ad49316db07", - "symbol": "CHIPS", - "decimals": 18, - "name": "King's Casino", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x55c650b99529ebdda6f7199b64f94ad49316db07.png", - "aggregators": ["CoinGecko", "Rubic", "Rango"], - "occurrences": 3 - }, - "0xf25620f89d0e23a8ba7b11ab3235b66268794196": { - "address": "0xf25620f89d0e23a8ba7b11ab3235b66268794196", - "symbol": "RISE", - "decimals": 18, - "name": "RISE", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xf25620f89d0e23a8ba7b11ab3235b66268794196.png", - "aggregators": ["CoinGecko", "Rubic", "Rango"], - "occurrences": 3 - }, - "0xba515eed0119acb7cfe8fab3acd6b362f3ed5319": { - "address": "0xba515eed0119acb7cfe8fab3acd6b362f3ed5319", - "symbol": "YUTY", - "decimals": 18, - "name": "Staked UTY", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xba515eed0119acb7cfe8fab3acd6b362f3ed5319.png", - "aggregators": ["CoinGecko", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x78a5d1de296f351a4bc1316fed9db443381a80cd": { - "address": "0x78a5d1de296f351a4bc1316fed9db443381a80cd", - "symbol": "AEGON", - "decimals": 18, - "name": "AEGON", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x78a5d1de296f351a4bc1316fed9db443381a80cd.png", - "aggregators": ["CoinGecko", "Rubic", "Squid"], - "occurrences": 3 - }, - "0x3513e4a7d27d18c2c894d98bc5a55406360b9ba3": { - "address": "0x3513e4a7d27d18c2c894d98bc5a55406360b9ba3", - "symbol": "PHAI", - "decimals": 18, - "name": "Pharmachain AI", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x3513e4a7d27d18c2c894d98bc5a55406360b9ba3.png", - "aggregators": ["CoinGecko", "Rubic", "Squid"], - "occurrences": 3 - }, - "0xfe20c1b85aba875ea8cecac8200bf86971968f3a": { - "address": "0xfe20c1b85aba875ea8cecac8200bf86971968f3a", - "symbol": "BALD", - "decimals": 18, - "name": "BALD", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xfe20c1b85aba875ea8cecac8200bf86971968f3a.png", - "aggregators": ["CoinGecko", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x42c99e0afd53299d92289e46e34e6f7ec117ae3d": { - "address": "0x42c99e0afd53299d92289e46e34e6f7ec117ae3d", - "symbol": "DREGEN", - "decimals": 18, - "name": "Dregen", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x42c99e0afd53299d92289e46e34e6f7ec117ae3d.png", - "aggregators": ["CoinGecko", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x98c51c8e958cccd37f798b2b9332d148e2c05d57": { - "address": "0x98c51c8e958cccd37f798b2b9332d148e2c05d57", - "symbol": "DAIMON", - "decimals": 18, - "name": "Daimon", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x98c51c8e958cccd37f798b2b9332d148e2c05d57.png", - "aggregators": ["CoinGecko", "Rubic", "Rango"], - "occurrences": 3 - }, - "0xcdca2eaae4a8a6b83d7a3589946c2301040dafbf": { - "address": "0xcdca2eaae4a8a6b83d7a3589946c2301040dafbf", - "symbol": "SURF", - "decimals": 18, - "name": "Surf", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xcdca2eaae4a8a6b83d7a3589946c2301040dafbf.png", - "aggregators": ["CoinGecko", "Rubic", "Rango"], - "occurrences": 3 - }, - "0xbdc27118ca76b375c6887b0ff068afb03dfc21a0": { - "address": "0xbdc27118ca76b375c6887b0ff068afb03dfc21a0", - "symbol": "ARBUS", - "decimals": 18, - "name": "Arbus", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xbdc27118ca76b375c6887b0ff068afb03dfc21a0.png", - "aggregators": ["CoinGecko", "Rubic", "Squid"], - "occurrences": 3 - }, - "0xd92b53ef83afaf0d0a0167cf7ac5951ad1994824": { - "address": "0xd92b53ef83afaf0d0a0167cf7ac5951ad1994824", - "symbol": "MGAMES", - "decimals": 9, - "name": "MemeGames AI", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xd92b53ef83afaf0d0a0167cf7ac5951ad1994824.png", - "aggregators": ["CoinGecko", "Rubic", "Rango"], - "occurrences": 3 - }, - "0xe4c94c578f53b58bdb580f15fc438ff10c7343a8": { - "address": "0xe4c94c578f53b58bdb580f15fc438ff10c7343a8", - "symbol": "XLLM2", - "decimals": 18, - "name": "xLLM2", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xe4c94c578f53b58bdb580f15fc438ff10c7343a8.png", - "aggregators": ["CoinGecko", "Rubic", "Squid"], - "occurrences": 3 - }, - "0x35e7942e91876eb0c24a891128e559a744fe8b07": { - "address": "0x35e7942e91876eb0c24a891128e559a744fe8b07", - "symbol": "BRAIN", - "decimals": 18, - "name": "MoltBrain", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x35e7942e91876eb0c24a891128e559a744fe8b07.png", - "aggregators": ["CoinGecko", "Rubic", "Rango"], - "occurrences": 3 - }, - "0xca179f3978137f5745e6d731591aaef985ee9d6d": { - "address": "0xca179f3978137f5745e6d731591aaef985ee9d6d", - "symbol": "BOTZ", - "decimals": 18, - "name": "Botatoz", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xca179f3978137f5745e6d731591aaef985ee9d6d.png", - "aggregators": ["CoinGecko", "Rubic", "Rango"], - "occurrences": 3 - }, - "0xb33acd55ec34c22dc3c0f75be36e483d9a420314": { - "address": "0xb33acd55ec34c22dc3c0f75be36e483d9a420314", - "symbol": "TI", - "decimals": 18, - "name": "Titanium Finance", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xb33acd55ec34c22dc3c0f75be36e483d9a420314.png", - "aggregators": ["CoinGecko", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x072915a43ac255cde1fa568218e5b6b10d0cb10f": { - "address": "0x072915a43ac255cde1fa568218e5b6b10d0cb10f", - "symbol": "MAYA", - "decimals": 18, - "name": "Maya world by Virtuals", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x072915a43ac255cde1fa568218e5b6b10d0cb10f.png", - "aggregators": ["CoinGecko", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x4ed9c2cb1c0331afd73fef1be5dea4866d8ea5f9": { - "address": "0x4ed9c2cb1c0331afd73fef1be5dea4866d8ea5f9", - "symbol": "HYB", - "decimals": 18, - "name": "Hybrid", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x4ed9c2cb1c0331afd73fef1be5dea4866d8ea5f9.png", - "aggregators": ["CoinGecko", "Rubic", "Squid"], - "occurrences": 3 - }, - "0x6b498b638d41f961b9684ec07980a62e76a85b07": { - "address": "0x6b498b638d41f961b9684ec07980a62e76a85b07", - "symbol": "EUDAEMON", - "decimals": 18, - "name": "eudaemon_0", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x6b498b638d41f961b9684ec07980a62e76a85b07.png", - "aggregators": ["CoinGecko", "Rubic", "Rango"], - "occurrences": 3 - }, - "0xcd339bd74fb792a134d6750b1bda04833a0a8453": { - "address": "0xcd339bd74fb792a134d6750b1bda04833a0a8453", - "symbol": "YUKI", - "decimals": 18, - "name": "Yuki", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xcd339bd74fb792a134d6750b1bda04833a0a8453.png", - "aggregators": ["CoinGecko", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x94a47aa810e85190fed418892ecbd68d5f463ff4": { - "address": "0x94a47aa810e85190fed418892ecbd68d5f463ff4", - "symbol": "VIVI", - "decimals": 18, - "name": "VIVI", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x94a47aa810e85190fed418892ecbd68d5f463ff4.png", - "aggregators": ["CoinGecko", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x7ee8964160126081cebc443a42482e95e393e6a8": { - "address": "0x7ee8964160126081cebc443a42482e95e393e6a8", - "symbol": "LIQ", - "decimals": 18, - "name": "LIQ", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x7ee8964160126081cebc443a42482e95e393e6a8.png", - "aggregators": ["CoinGecko", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x65021a79aeef22b17cdc1b768f5e79a8618beba3": { - "address": "0x65021a79aeef22b17cdc1b768f5e79a8618beba3", - "symbol": "ROBOTMONEY", - "decimals": 18, - "name": "Robot Money", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x65021a79aeef22b17cdc1b768f5e79a8618beba3.png", - "aggregators": ["CoinGecko", "Rubic", "Rango"], - "occurrences": 3 - }, - "0xd06f7f6affefb87af1bd243854e646725a044f2e": { - "address": "0xd06f7f6affefb87af1bd243854e646725a044f2e", - "symbol": "TRARDUN (TRN)", - "decimals": 18, - "name": "TRARDUN (TRN)", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xd06f7f6affefb87af1bd243854e646725a044f2e.png", - "aggregators": ["CoinGecko", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x33479a07983561ab5e27ad435399fc88159eea8b": { - "address": "0x33479a07983561ab5e27ad435399fc88159eea8b", - "symbol": "VIBES", - "decimals": 18, - "name": "Kolwaii by Virtuals", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x33479a07983561ab5e27ad435399fc88159eea8b.png", - "aggregators": ["CoinGecko", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x402fb5a74865af5863e099236151f19e04b95868": { - "address": "0x402fb5a74865af5863e099236151f19e04b95868", - "symbol": "COSMO", - "decimals": 18, - "name": "Cosmo", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x402fb5a74865af5863e099236151f19e04b95868.png", - "aggregators": ["CoinGecko", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x6a780b087a16c9f4270cd0dff6f44b7fec1fdf25": { - "address": "0x6a780b087a16c9f4270cd0dff6f44b7fec1fdf25", - "symbol": "FRIC", - "decimals": 18, - "name": "based fric", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x6a780b087a16c9f4270cd0dff6f44b7fec1fdf25.png", - "aggregators": ["CoinGecko", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x49bfa462ef61aea99eed375e35784dfd1360aba3": { - "address": "0x49bfa462ef61aea99eed375e35784dfd1360aba3", - "symbol": "AICO", - "decimals": 18, - "name": "Aicolabs", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x49bfa462ef61aea99eed375e35784dfd1360aba3.png", - "aggregators": ["CoinGecko", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x1efdb75869da742466c4c17d1e55fc469533ce1f": { - "address": "0x1efdb75869da742466c4c17d1e55fc469533ce1f", - "symbol": "MOLTIFI", - "decimals": 18, - "name": "Moltifi", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x1efdb75869da742466c4c17d1e55fc469533ce1f.png", - "aggregators": ["CoinGecko", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x0398ed3bfabe8334fd3f47a7115e7a4214ba5aa0": { - "address": "0x0398ed3bfabe8334fd3f47a7115e7a4214ba5aa0", - "symbol": "TRGT", - "decimals": 18, - "name": "Target", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x0398ed3bfabe8334fd3f47a7115e7a4214ba5aa0.png", - "aggregators": ["CoinGecko", "Rubic", "Rango"], - "occurrences": 3 - }, - "0xf426daeecf204f71dcabbca92e89db47b15cd141": { - "address": "0xf426daeecf204f71dcabbca92e89db47b15cd141", - "symbol": "ALEXANDERELORENZO", - "decimals": 18, - "name": "alexanderelorenzo", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xf426daeecf204f71dcabbca92e89db47b15cd141.png", - "aggregators": ["CoinGecko", "Rubic", "Rango"], - "occurrences": 3 - }, - "0xb2aca4ca8b7bbd9a5388ccb044c87dedf8a51c7c": { - "address": "0xb2aca4ca8b7bbd9a5388ccb044c87dedf8a51c7c", - "symbol": "TFY", - "decimals": 18, - "name": "TFY", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xb2aca4ca8b7bbd9a5388ccb044c87dedf8a51c7c.png", - "aggregators": ["CoinGecko", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x7d03acf64a1a64bff9d24850011cca93c78a22e7": { - "address": "0x7d03acf64a1a64bff9d24850011cca93c78a22e7", - "symbol": "WELEPHANT", - "decimals": 9, - "name": "Wrapped Elephant", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x7d03acf64a1a64bff9d24850011cca93c78a22e7.png", - "aggregators": ["CoinGecko", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x01812ca908b5731be0db86000c15c5afa3e834b2": { - "address": "0x01812ca908b5731be0db86000c15c5afa3e834b2", - "symbol": "IFR", - "decimals": 18, - "name": "Inferium", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x01812ca908b5731be0db86000c15c5afa3e834b2.png", - "aggregators": ["CoinGecko", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x81034fb34009115f215f5d5f564aac9ffa46a1dc": { - "address": "0x81034fb34009115f215f5d5f564aac9ffa46a1dc", - "symbol": "IAERO", - "decimals": 18, - "name": "IAERO", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x81034fb34009115f215f5d5f564aac9ffa46a1dc.png", - "aggregators": ["CoinGecko", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x3313338fe4bb2a166b81483bfcb2d4a6a1ebba8d": { - "address": "0x3313338fe4bb2a166b81483bfcb2d4a6a1ebba8d", - "symbol": "JUNGLE BAY MEMES", - "decimals": 18, - "name": "jungle bay memes", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x3313338fe4bb2a166b81483bfcb2d4a6a1ebba8d.png", - "aggregators": ["CoinGecko", "Rubic", "Rango"], - "occurrences": 3 - }, - "0xb6830e61aeba58e07884983451d26880b4078b07": { - "address": "0xb6830e61aeba58e07884983451d26880b4078b07", - "symbol": "SPOTLIGHT", - "decimals": 18, - "name": "Spotlight", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xb6830e61aeba58e07884983451d26880b4078b07.png", - "aggregators": ["CoinGecko", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x100ce3e3391c00b6a52911313a4ea8d23c8a38d8": { - "address": "0x100ce3e3391c00b6a52911313a4ea8d23c8a38d8", - "symbol": "JOOCE", - "decimals": 18, - "name": "JOOCE", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x100ce3e3391c00b6a52911313a4ea8d23c8a38d8.png", - "aggregators": ["CoinGecko", "Rubic", "Rango"], - "occurrences": 3 - }, - "0xf532ae2726099fa3665bcfc415563f6478172b07": { - "address": "0xf532ae2726099fa3665bcfc415563f6478172b07", - "symbol": "MOLTYCASH", - "decimals": 18, - "name": "MOLTYCASH", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xf532ae2726099fa3665bcfc415563f6478172b07.png", - "aggregators": ["CoinGecko", "Rubic", "Rango"], - "occurrences": 3 - }, - "0xbe29e78b18066b3bf7c70523371e0169350f6f53": { - "address": "0xbe29e78b18066b3bf7c70523371e0169350f6f53", - "symbol": "ZORBY", - "decimals": 18, - "name": "ZORBY", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xbe29e78b18066b3bf7c70523371e0169350f6f53.png", - "aggregators": ["CoinGecko", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x5c72992b83e74c4d5200a8e8920fb946214a5a5d": { - "address": "0x5c72992b83e74c4d5200a8e8920fb946214a5a5d", - "symbol": "BEAN", - "decimals": 18, - "name": "MineBean", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x5c72992b83e74c4d5200a8e8920fb946214a5a5d.png", - "aggregators": ["CoinGecko", "Rubic", "Rango"], - "occurrences": 3 - }, - "0xac5bdcf2eecebec8da3af0ef76912e197c6e547e": { - "address": "0xac5bdcf2eecebec8da3af0ef76912e197c6e547e", - "symbol": "FRAME", - "decimals": 18, - "name": "FRAME", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xac5bdcf2eecebec8da3af0ef76912e197c6e547e.png", - "aggregators": ["CoinGecko", "Rubic", "Rango"], - "occurrences": 3 - }, - "0xeff5672a3e73e104a56b7d16c1166f2ae0714b07": { - "address": "0xeff5672a3e73e104a56b7d16c1166f2ae0714b07", - "symbol": "FOMOLT", - "decimals": 18, - "name": "fomolt", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xeff5672a3e73e104a56b7d16c1166f2ae0714b07.png", - "aggregators": ["CoinGecko", "Rubic", "Rango"], - "occurrences": 3 - }, - "0xa601877977340862ca67f816eb079958e5bd0ba3": { - "address": "0xa601877977340862ca67f816eb079958e5bd0ba3", - "symbol": "BOTCOIN", - "decimals": 18, - "name": "BOTCOIN", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xa601877977340862ca67f816eb079958e5bd0ba3.png", - "aggregators": ["CoinGecko", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x9edc6a2d48ca6f098a75925e8690bc27549afd86": { - "address": "0x9edc6a2d48ca6f098a75925e8690bc27549afd86", - "symbol": "CLAWDOGE", - "decimals": 18, - "name": "Claw Doge", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x9edc6a2d48ca6f098a75925e8690bc27549afd86.png", - "aggregators": ["CoinGecko", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x62abe92f50c518165a5c010fe59f35023197fba3": { - "address": "0x62abe92f50c518165a5c010fe59f35023197fba3", - "symbol": "EDGE", - "decimals": 18, - "name": "EDGE", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x62abe92f50c518165a5c010fe59f35023197fba3.png", - "aggregators": ["CoinGecko", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x4af7439c4c8295738ee1fa2c77f63416f13fc894": { - "address": "0x4af7439c4c8295738ee1fa2c77f63416f13fc894", - "symbol": "NIV", - "decimals": 18, - "name": "Nivuniconu", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x4af7439c4c8295738ee1fa2c77f63416f13fc894.png", - "aggregators": ["CoinGecko", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x16cfb276ae69ed975ebfdf3cf90e817a28d5cb07": { - "address": "0x16cfb276ae69ed975ebfdf3cf90e817a28d5cb07", - "symbol": "NEXA", - "decimals": 18, - "name": "NexA", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x16cfb276ae69ed975ebfdf3cf90e817a28d5cb07.png", - "aggregators": ["CoinGecko", "Rubic", "Rango"], - "occurrences": 3 - }, - "0xb5b0f722d6d4a803d3df94c9ed12a191603eab07": { - "address": "0xb5b0f722d6d4a803d3df94c9ed12a191603eab07", - "symbol": "AMBERVIBE", - "decimals": 18, - "name": "AmberVibe", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xb5b0f722d6d4a803d3df94c9ed12a191603eab07.png", - "aggregators": ["CoinGecko", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x0215ed0fe07951b2cd68e1b39ffbd0a841fe3c6e": { - "address": "0x0215ed0fe07951b2cd68e1b39ffbd0a841fe3c6e", - "symbol": "BOMO", - "decimals": 18, - "name": "BOMO", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x0215ed0fe07951b2cd68e1b39ffbd0a841fe3c6e.png", - "aggregators": ["CoinGecko", "Rubic", "Rango"], - "occurrences": 3 - }, - "0xed664536023d8e4b1640c394777d34abaff1df8f": { - "address": "0xed664536023d8e4b1640c394777d34abaff1df8f", - "symbol": "POD", - "decimals": 18, - "name": "Dolphin", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xed664536023d8e4b1640c394777d34abaff1df8f.png", - "aggregators": ["CoinGecko", "Rubic", "Rango"], - "occurrences": 3 - }, - "0xc5c4fcd6147e3bdaeeb5a0898a439aec1e1baba3": { - "address": "0xc5c4fcd6147e3bdaeeb5a0898a439aec1e1baba3", - "symbol": "HAZZA", - "decimals": 18, - "name": "hazza", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xc5c4fcd6147e3bdaeeb5a0898a439aec1e1baba3.png", - "aggregators": ["CoinGecko", "Rubic", "Rango"], - "occurrences": 3 - }, - "0xcec3661ac188c692fd1f5e5bd0c4ae37771ca3db": { - "address": "0xcec3661ac188c692fd1f5e5bd0c4ae37771ca3db", - "symbol": "HELLOWORLD", - "decimals": 18, - "name": "HELLOWORLD", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xcec3661ac188c692fd1f5e5bd0c4ae37771ca3db.png", - "aggregators": ["CoinGecko", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x3abd07d37610f9414d88aea9fa94adcacadf4082": { - "address": "0x3abd07d37610f9414d88aea9fa94adcacadf4082", - "symbol": "BMA", - "decimals": 18, - "name": "BMA Token", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x3abd07d37610f9414d88aea9fa94adcacadf4082.png", - "aggregators": ["CoinGecko", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x8fe435d4f6900bbbe6b48431b91833f69beacba3": { - "address": "0x8fe435d4f6900bbbe6b48431b91833f69beacba3", - "symbol": "SCOUT", - "decimals": 18, - "name": "BuilderScout", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x8fe435d4f6900bbbe6b48431b91833f69beacba3.png", - "aggregators": ["CoinGecko", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x43657652dbc7ce1c5432650153abde904e884b07": { - "address": "0x43657652dbc7ce1c5432650153abde904e884b07", - "symbol": "MOLTLINE", - "decimals": 18, - "name": "moltline", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x43657652dbc7ce1c5432650153abde904e884b07.png", - "aggregators": ["CoinGecko", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x7d6bea5c1f9d4751affeb917c6a23cd5d266a070": { - "address": "0x7d6bea5c1f9d4751affeb917c6a23cd5d266a070", - "symbol": "VVC", - "decimals": 18, - "name": "Virtuals Ventures", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x7d6bea5c1f9d4751affeb917c6a23cd5d266a070.png", - "aggregators": ["CoinGecko", "Rubic", "Squid"], - "occurrences": 3 - }, - "0xd8db4c337d09da8d7ceb7d87adfe224d17785ba3": { - "address": "0xd8db4c337d09da8d7ceb7d87adfe224d17785ba3", - "symbol": "COP", - "decimals": 18, - "name": "Clash of Perps", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xd8db4c337d09da8d7ceb7d87adfe224d17785ba3.png", - "aggregators": ["CoinGecko", "Rubic", "Rango"], - "occurrences": 3 - }, - "0xf30bf00edd0c22db54c9274b90d2a4c21fc09b07": { - "address": "0xf30bf00edd0c22db54c9274b90d2a4c21fc09b07", - "symbol": "FELIX", - "decimals": 18, - "name": "FELIX", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xf30bf00edd0c22db54c9274b90d2a4c21fc09b07.png", - "aggregators": ["CoinGecko", "Rubic", "Rango"], - "occurrences": 3 - }, - "0xcb682e7232cb23a4bb02ac3817883d99929f3ba3": { - "address": "0xcb682e7232cb23a4bb02ac3817883d99929f3ba3", - "symbol": "MIRROR", - "decimals": 18, - "name": "Mirror", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xcb682e7232cb23a4bb02ac3817883d99929f3ba3.png", - "aggregators": ["CoinGecko", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x1f1a979e6f9e0179218376041ea54caedef5dba3": { - "address": "0x1f1a979e6f9e0179218376041ea54caedef5dba3", - "symbol": "ETHR", - "decimals": 18, - "name": "Ethresearchbot", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x1f1a979e6f9e0179218376041ea54caedef5dba3.png", - "aggregators": ["CoinGecko", "Rubic", "Rango"], - "occurrences": 3 - }, - "0xe0ce610c37c2691f064f1fe5c213e9ba9c16ad0c": { - "address": "0xe0ce610c37c2691f064f1fe5c213e9ba9c16ad0c", - "symbol": "SPIRA", - "decimals": 18, - "name": "SPIRA", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xe0ce610c37c2691f064f1fe5c213e9ba9c16ad0c.png", - "aggregators": ["CoinGecko", "Rubic", "Squid"], - "occurrences": 3 - }, - "0xb235cf255b48500df4459475e054e7beb25cb772": { - "address": "0xb235cf255b48500df4459475e054e7beb25cb772", - "symbol": "NEMESIS", - "decimals": 18, - "name": "Nemesis", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xb235cf255b48500df4459475e054e7beb25cb772.png", - "aggregators": ["CoinGecko", "Rubic", "Rango"], - "occurrences": 3 - }, - "0xab3f23c2abcb4e12cc8b593c218a7ba64ed17ba3": { - "address": "0xab3f23c2abcb4e12cc8b593c218a7ba64ed17ba3", - "symbol": "CRED", - "decimals": 18, - "name": "Helixa Cred", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xab3f23c2abcb4e12cc8b593c218a7ba64ed17ba3.png", - "aggregators": ["CoinGecko", "Rubic", "Rango"], - "occurrences": 3 - }, - "0xbb8d2a0f11c2e4885e26a46ea56a1bc6e84ce674": { - "address": "0xbb8d2a0f11c2e4885e26a46ea56a1bc6e84ce674", - "symbol": "HUEY", - "decimals": 18, - "name": "Huey", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xbb8d2a0f11c2e4885e26a46ea56a1bc6e84ce674.png", - "aggregators": ["CoinGecko", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x0358795322c04de04ead2338a803a9d3518a9877": { - "address": "0x0358795322c04de04ead2338a803a9d3518a9877", - "symbol": "TYSM", - "decimals": 18, - "name": "TYSM", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x0358795322c04de04ead2338a803a9d3518a9877.png", - "aggregators": ["CoinGecko", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x2bd8880e7424dfb94597429de7253de73694de01": { - "address": "0x2bd8880e7424dfb94597429de7253de73694de01", - "symbol": "GIA", - "decimals": 18, - "name": "Gia by DexFi", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x2bd8880e7424dfb94597429de7253de73694de01.png", - "aggregators": ["CoinGecko", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x806b6f3d576744c6b05088e4e49e3aadbca110cc": { - "address": "0x806b6f3d576744c6b05088e4e49e3aadbca110cc", - "symbol": "CHARLIE", - "decimals": 18, - "name": "Charlie", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x806b6f3d576744c6b05088e4e49e3aadbca110cc.png", - "aggregators": ["CoinGecko", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x845f4fbf04d03958be38ff91e43dfb5d40dd8241": { - "address": "0x845f4fbf04d03958be38ff91e43dfb5d40dd8241", - "symbol": "GO", - "decimals": 18, - "name": "GO", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x845f4fbf04d03958be38ff91e43dfb5d40dd8241.png", - "aggregators": ["CoinGecko", "Rubic", "Rango"], - "occurrences": 3 - }, - "0xc930784d6e14e2fc2a1f49be1068dc40f24762d3": { - "address": "0xc930784d6e14e2fc2a1f49be1068dc40f24762d3", - "symbol": "CNGN", - "decimals": 6, - "name": "CNGN", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xc930784d6e14e2fc2a1f49be1068dc40f24762d3.png", - "aggregators": ["CoinGecko", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x316ffb9c875f900adcf04889e415cc86b564eba3": { - "address": "0x316ffb9c875f900adcf04889e415cc86b564eba3", - "symbol": "LITCOIN", - "decimals": 18, - "name": "Litcoin", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x316ffb9c875f900adcf04889e415cc86b564eba3.png", - "aggregators": ["CoinGecko", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x81040cfd2bb62062525d958ad01931988a590b07": { - "address": "0x81040cfd2bb62062525d958ad01931988a590b07", - "symbol": "LUKSO", - "decimals": 18, - "name": "LUKSOAgent", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x81040cfd2bb62062525d958ad01931988a590b07.png", - "aggregators": ["CoinGecko", "Rubic", "Rango"], - "occurrences": 3 - }, - "0xc0497fb3fc4fd0a17900cf69fc72a03799915301": { - "address": "0xc0497fb3fc4fd0a17900cf69fc72a03799915301", - "symbol": "HYBUX", - "decimals": 18, - "name": "HYBUX", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xc0497fb3fc4fd0a17900cf69fc72a03799915301.png", - "aggregators": ["CoinGecko", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x06a05043eb2c1691b19c2c13219db9212269ddc5": { - "address": "0x06a05043eb2c1691b19c2c13219db9212269ddc5", - "symbol": "BURGERS", - "decimals": 18, - "name": "Burger Money", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x06a05043eb2c1691b19c2c13219db9212269ddc5.png", - "aggregators": ["CoinGecko", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x0d186f8c94293dd8ea65d3ae3eba3a8cad91b769": { - "address": "0x0d186f8c94293dd8ea65d3ae3eba3a8cad91b769", - "symbol": "ORACLE", - "decimals": 18, - "name": "oracle", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x0d186f8c94293dd8ea65d3ae3eba3a8cad91b769.png", - "aggregators": ["CoinGecko", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x45b9a03a05f86088cd1a00874a05dda2c6915ba3": { - "address": "0x45b9a03a05f86088cd1a00874a05dda2c6915ba3", - "symbol": "CASHCLAW", - "decimals": 18, - "name": "MrCashClaw", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x45b9a03a05f86088cd1a00874a05dda2c6915ba3.png", - "aggregators": ["CoinGecko", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x88a082df256da966170689e10782b2851402eb07": { - "address": "0x88a082df256da966170689e10782b2851402eb07", - "symbol": "MOLTD", - "decimals": 18, - "name": "Molt domains", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x88a082df256da966170689e10782b2851402eb07.png", - "aggregators": ["CoinGecko", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x38df5d99dd151282615ce007ff9662c198b4c00b": { - "address": "0x38df5d99dd151282615ce007ff9662c198b4c00b", - "symbol": "HELIX", - "decimals": 18, - "name": "Helix", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x38df5d99dd151282615ce007ff9662c198b4c00b.png", - "aggregators": ["CoinGecko", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x7fe0244a02630c7cf649c07339accecc6f2976b4": { - "address": "0x7fe0244a02630c7cf649c07339accecc6f2976b4", - "symbol": "PUGGLES", - "decimals": 18, - "name": "Mr. Puggles", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x7fe0244a02630c7cf649c07339accecc6f2976b4.png", - "aggregators": ["CoinGecko", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x89aca77d84616e89a7e4b201e95ba612ede0496b": { - "address": "0x89aca77d84616e89a7e4b201e95ba612ede0496b", - "symbol": "BASEDBILL", - "decimals": 9, - "name": "Based Bill", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x89aca77d84616e89a7e4b201e95ba612ede0496b.png", - "aggregators": ["CoinGecko", "Rubic", "Rango"], - "occurrences": 3 - }, - "0xe014d2a4da6e450f21b5050120d291e63c8940fd": { - "address": "0xe014d2a4da6e450f21b5050120d291e63c8940fd", - "symbol": "SOGNI", - "decimals": 18, - "name": "Sogni AI", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xe014d2a4da6e450f21b5050120d291e63c8940fd.png", - "aggregators": ["CoinGecko", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x0b0e6e32e4d69cb418630163574959108edcb80e": { - "address": "0x0b0e6e32e4d69cb418630163574959108edcb80e", - "symbol": "REAL", - "decimals": 18, - "name": "Defactor", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x0b0e6e32e4d69cb418630163574959108edcb80e.png", - "aggregators": ["CoinGecko", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x4b73c08ea7ba32593e8ca02c6910c6447e6f6642": { - "address": "0x4b73c08ea7ba32593e8ca02c6910c6447e6f6642", - "symbol": "BUIDL", - "decimals": 18, - "name": "GoHackerAI", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x4b73c08ea7ba32593e8ca02c6910c6447e6f6642.png", - "aggregators": ["CoinGecko", "Rubic", "Squid"], - "occurrences": 3 - }, - "0x0d30be9d9c2cf90aeff4fef5b2e8c3d0b02596a0": { - "address": "0x0d30be9d9c2cf90aeff4fef5b2e8c3d0b02596a0", - "symbol": "BLARB", - "decimals": 18, - "name": "BLARB", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x0d30be9d9c2cf90aeff4fef5b2e8c3d0b02596a0.png", - "aggregators": ["CoinGecko", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x22cbee8a77611720da5fe2f1b1c8104dbc2f7b07": { - "address": "0x22cbee8a77611720da5fe2f1b1c8104dbc2f7b07", - "symbol": "MOLTYPICS", - "decimals": 18, - "name": "MoltyPics", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x22cbee8a77611720da5fe2f1b1c8104dbc2f7b07.png", - "aggregators": ["CoinGecko", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x915c135d2cbcad68e5c30f1cea0ee7129f57fd03": { - "address": "0x915c135d2cbcad68e5c30f1cea0ee7129f57fd03", - "symbol": "UFX", - "decimals": 18, - "name": "UFX Project", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x915c135d2cbcad68e5c30f1cea0ee7129f57fd03.png", - "aggregators": ["CoinGecko", "Rubic", "Squid"], - "occurrences": 3 - }, - "0x8f7d0c6ae30c50c6dfc00612ec5bff2c3685261c": { - "address": "0x8f7d0c6ae30c50c6dfc00612ec5bff2c3685261c", - "symbol": "JACK", - "decimals": 18, - "name": "Jack Potts", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x8f7d0c6ae30c50c6dfc00612ec5bff2c3685261c.png", - "aggregators": ["CoinGecko", "Rubic", "Squid"], - "occurrences": 3 - }, - "0x31eda2dfd01c9c65385cce6099b24b06ef3ae831": { - "address": "0x31eda2dfd01c9c65385cce6099b24b06ef3ae831", - "symbol": "IRVUS", - "decimals": 18, - "name": "IRVUS TOKEN", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x31eda2dfd01c9c65385cce6099b24b06ef3ae831.png", - "aggregators": ["CoinGecko", "Rubic", "Rango"], - "occurrences": 3 - }, - "0xec313c9d476c6cca6839ad60266302eac6e2e9fa": { - "address": "0xec313c9d476c6cca6839ad60266302eac6e2e9fa", - "symbol": "BABYPOO", - "decimals": 18, - "name": "Baby Poo", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xec313c9d476c6cca6839ad60266302eac6e2e9fa.png", - "aggregators": ["CoinGecko", "Rubic", "Rango"], - "occurrences": 3 - }, - "0xf42c45e5b79c9564c95a9b8641518a58b0d089de": { - "address": "0xf42c45e5b79c9564c95a9b8641518a58b0d089de", - "symbol": "FREN", - "decimals": 18, - "name": "FRENCHIE", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xf42c45e5b79c9564c95a9b8641518a58b0d089de.png", - "aggregators": ["CoinGecko", "Rubic", "Sonarwatch"], - "occurrences": 3 - }, - "0x80b84b63c88d054d300d51e801c2a65e20d44b07": { - "address": "0x80b84b63c88d054d300d51e801c2a65e20d44b07", - "symbol": "KNT", - "decimals": 18, - "name": "KayakNet", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x80b84b63c88d054d300d51e801c2a65e20d44b07.png", - "aggregators": ["CoinGecko", "Rubic", "Rango"], - "occurrences": 3 - }, - "0xe183b1a4dd59ca732211678eca1836ee35bce582": { - "address": "0xe183b1a4dd59ca732211678eca1836ee35bce582", - "symbol": "DICK", - "decimals": 18, - "name": "D1ckGPT", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xe183b1a4dd59ca732211678eca1836ee35bce582.png", - "aggregators": ["CoinGecko", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x65d88916d9fa10762e62d26592610fe52de31d5a": { - "address": "0x65d88916d9fa10762e62d26592610fe52de31d5a", - "symbol": "ZEME", - "decimals": 18, - "name": "zeme", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x65d88916d9fa10762e62d26592610fe52de31d5a.png", - "aggregators": ["CoinGecko", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x1cdbb57b12f732cfb4dc06f690acef476485b2a5": { - "address": "0x1cdbb57b12f732cfb4dc06f690acef476485b2a5", - "symbol": "CLANKERMON", - "decimals": 18, - "name": "Clankermon", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x1cdbb57b12f732cfb4dc06f690acef476485b2a5.png", - "aggregators": ["CoinGecko", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x0a9bc2c63e84436538185543bc0dcca42c4d2cf6": { - "address": "0x0a9bc2c63e84436538185543bc0dcca42c4d2cf6", - "symbol": "BAPO", - "decimals": 18, - "name": "AGENT BAPO", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x0a9bc2c63e84436538185543bc0dcca42c4d2cf6.png", - "aggregators": ["CoinGecko", "Rubic", "Rango"], - "occurrences": 3 - }, - "0xcaf75598b8b9a6e645b60d882845d361f549f5ec": { - "address": "0xcaf75598b8b9a6e645b60d882845d361f549f5ec", - "symbol": "BALAJIS", - "decimals": 18, - "name": "balajis", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xcaf75598b8b9a6e645b60d882845d361f549f5ec.png", - "aggregators": ["CoinGecko", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x1f015712aa2a48085ec93f87d643bb625b668b07": { - "address": "0x1f015712aa2a48085ec93f87d643bb625b668b07", - "symbol": "I", - "decimals": 18, - "name": "indexy", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x1f015712aa2a48085ec93f87d643bb625b668b07.png", - "aggregators": ["CoinGecko", "Rubic", "Rango"], - "occurrences": 3 - }, - "0xf25cc9c024036dec8fc983e88253549667ee5b07": { - "address": "0xf25cc9c024036dec8fc983e88253549667ee5b07", - "symbol": "HOUSE", - "decimals": 18, - "name": "HOUSE", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xf25cc9c024036dec8fc983e88253549667ee5b07.png", - "aggregators": ["CoinGecko", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x98d59767cd1335071a4e9b9d3482685c915131e8": { - "address": "0x98d59767cd1335071a4e9b9d3482685c915131e8", - "symbol": "DREAM", - "decimals": 18, - "name": "dreamcoins", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x98d59767cd1335071a4e9b9d3482685c915131e8.png", - "aggregators": ["CoinGecko", "Rubic", "Rango"], - "occurrences": 3 - }, - "0xd8707b400a5dc85cbaddb7279c2bf40221df2521": { - "address": "0xd8707b400a5dc85cbaddb7279c2bf40221df2521", - "symbol": "SHARDS", - "decimals": 18, - "name": "Shards", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xd8707b400a5dc85cbaddb7279c2bf40221df2521.png", - "aggregators": ["CoinGecko", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x05af98aebec91aef2bd893614a2c333c58855012": { - "address": "0x05af98aebec91aef2bd893614a2c333c58855012", - "symbol": "AUCTION", - "decimals": 18, - "name": "House", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x05af98aebec91aef2bd893614a2c333c58855012.png", - "aggregators": ["CoinGecko", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x06f71fb90f84b35302d132322a3c90e4477333b0": { - "address": "0x06f71fb90f84b35302d132322a3c90e4477333b0", - "symbol": "BRACKY", - "decimals": 18, - "name": "BRACKY", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x06f71fb90f84b35302d132322a3c90e4477333b0.png", - "aggregators": ["CoinGecko", "Rubic", "Rango"], - "occurrences": 3 - }, - "0xccb00cb269a62dc0c2021c3d699a564e8a868f48": { - "address": "0xccb00cb269a62dc0c2021c3d699a564e8a868f48", - "symbol": "RATTHEW", - "decimals": 18, - "name": "ratthew", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xccb00cb269a62dc0c2021c3d699a564e8a868f48.png", - "aggregators": ["CoinGecko", "Rubic", "Rango"], - "occurrences": 3 - }, - "0xa3109f24185ce81b89b9ceead7f81e3b07a61b07": { - "address": "0xa3109f24185ce81b89b9ceead7f81e3b07a61b07", - "symbol": "MOVIE", - "decimals": 18, - "name": "Sequel", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xa3109f24185ce81b89b9ceead7f81e3b07a61b07.png", - "aggregators": ["CoinGecko", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x56d4938431f7fae7c6741e061aa2683df12256f8": { - "address": "0x56d4938431f7fae7c6741e061aa2683df12256f8", - "symbol": "BULLGOD", - "decimals": 18, - "name": "Bull God", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x56d4938431f7fae7c6741e061aa2683df12256f8.png", - "aggregators": ["CoinGecko", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x05a5b4e217004eb84c6787e0ecbe7a46cfd94cdd": { - "address": "0x05a5b4e217004eb84c6787e0ecbe7a46cfd94cdd", - "symbol": "LAÏKA", - "decimals": 18, - "name": "Laïka", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x05a5b4e217004eb84c6787e0ecbe7a46cfd94cdd.png", - "aggregators": ["CoinGecko", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x9f86db9fc6f7c9408e8fda3ff8ce4e78ac7a6b07": { - "address": "0x9f86db9fc6f7c9408e8fda3ff8ce4e78ac7a6b07", - "symbol": "CLAWD", - "decimals": 18, - "name": "clawd.atg.eth", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x9f86db9fc6f7c9408e8fda3ff8ce4e78ac7a6b07.png", - "aggregators": ["CoinGecko", "Rubic", "Rango"], - "occurrences": 3 - }, - "0xcf00e8a7eaf62d8c9b4e573308a8be30badd47c4": { - "address": "0xcf00e8a7eaf62d8c9b4e573308a8be30badd47c4", - "symbol": "BASEGUY", - "decimals": 18, - "name": "Just a Based Guy", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xcf00e8a7eaf62d8c9b4e573308a8be30badd47c4.png", - "aggregators": ["CoinGecko", "Rubic", "Rango"], - "occurrences": 3 - }, - "0xc7584340d6b8444b069de8c0b526caa6961c5b07": { - "address": "0xc7584340d6b8444b069de8c0b526caa6961c5b07", - "symbol": "BUILDERARENA", - "decimals": 18, - "name": "Builder Arena", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xc7584340d6b8444b069de8c0b526caa6961c5b07.png", - "aggregators": ["CoinGecko", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x3d63825b0d8669307366e6c8202f656b9e91d368": { - "address": "0x3d63825b0d8669307366e6c8202f656b9e91d368", - "symbol": "WGC", - "decimals": 6, - "name": "Wild Goat Coin", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x3d63825b0d8669307366e6c8202f656b9e91d368.png", - "aggregators": ["CoinGecko", "Socket", "Rubic"], - "occurrences": 3 - }, - "0x16332535e2c27da578bc2e82beb09ce9d3c8eb07": { - "address": "0x16332535e2c27da578bc2e82beb09ce9d3c8eb07", - "symbol": "CLAWBANK", - "decimals": 18, - "name": "ClawBank", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x16332535e2c27da578bc2e82beb09ce9d3c8eb07.png", - "aggregators": ["CoinGecko", "Rubic", "Rango"], - "occurrences": 3 - }, - "0xb8d59c7b33054beda610b2b2d38ea38694cdfabd": { - "address": "0xb8d59c7b33054beda610b2b2d38ea38694cdfabd", - "symbol": "MIDAS", - "decimals": 18, - "name": "Midas The Minotaur", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xb8d59c7b33054beda610b2b2d38ea38694cdfabd.png", - "aggregators": ["CoinGecko", "Rubic", "Rango"], - "occurrences": 3 - }, - "0xa3c285b49fdc0a5498fddb629f975cb40aecabd4": { - "address": "0xa3c285b49fdc0a5498fddb629f975cb40aecabd4", - "symbol": "TAGAI", - "decimals": 18, - "name": "tagSpace", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xa3c285b49fdc0a5498fddb629f975cb40aecabd4.png", - "aggregators": ["CoinGecko", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x000307575269863b6cb67916b9e7fc3c6235c000": { - "address": "0x000307575269863b6cb67916b9e7fc3c6235c000", - "symbol": "MYEVA", - "decimals": 2, - "name": "myEva", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x000307575269863b6cb67916b9e7fc3c6235c000.png", - "aggregators": ["CoinGecko", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x62720cee08fdafa62473f0b4e462a84a0fd04ce9": { - "address": "0x62720cee08fdafa62473f0b4e462a84a0fd04ce9", - "symbol": "CRYPTOKALEO", - "decimals": 18, - "name": "cryptokaleo", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x62720cee08fdafa62473f0b4e462a84a0fd04ce9.png", - "aggregators": ["CoinGecko", "Rubic", "Rango"], - "occurrences": 3 - }, - "0xae4a37d554c6d6f3e398546d8566b25052e0169c": { - "address": "0xae4a37d554c6d6f3e398546d8566b25052e0169c", - "symbol": "DONUT", - "decimals": 18, - "name": "Donut", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xae4a37d554c6d6f3e398546d8566b25052e0169c.png", - "aggregators": ["CoinGecko", "Rubic", "Rango"], - "occurrences": 3 - }, - "0xb886cf1444bff05e9a99e00543bc4054d423ebfd": { - "address": "0xb886cf1444bff05e9a99e00543bc4054d423ebfd", - "symbol": "TORIVA", - "decimals": 18, - "name": "Toriva", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xb886cf1444bff05e9a99e00543bc4054d423ebfd.png", - "aggregators": ["CoinGecko", "Rubic", "Rango"], - "occurrences": 3 - }, - "0xf895783b2931c919955e18b5e3343e7c7c456ba3": { - "address": "0xf895783b2931c919955e18b5e3343e7c7c456ba3", - "symbol": "BLUEAGENT", - "decimals": 18, - "name": "Blue Agent", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xf895783b2931c919955e18b5e3343e7c7c456ba3.png", - "aggregators": ["CoinGecko", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x616b416f777e3dc904a44aa259a475bf26d06ef9": { - "address": "0x616b416f777e3dc904a44aa259a475bf26d06ef9", - "symbol": "BLAI", - "decimals": 18, - "name": "blai", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x616b416f777e3dc904a44aa259a475bf26d06ef9.png", - "aggregators": ["CoinGecko", "Rubic", "Rango"], - "occurrences": 3 - }, - "0xfca95aeb5bf44ae355806a5ad14659c940dc6bf7": { - "address": "0xfca95aeb5bf44ae355806a5ad14659c940dc6bf7", - "symbol": "SHIB", - "decimals": 9, - "name": "SHIBA INU", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xfca95aeb5bf44ae355806a5ad14659c940dc6bf7.png", - "aggregators": ["CoinGecko", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x06fe6d0ec562e19cfc491c187f0a02ce8d5083e4": { - "address": "0x06fe6d0ec562e19cfc491c187f0a02ce8d5083e4", - "symbol": "ROAST", - "decimals": 18, - "name": "BurnieAI", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x06fe6d0ec562e19cfc491c187f0a02ce8d5083e4.png", - "aggregators": ["CoinGecko", "Rubic", "Squid"], - "occurrences": 3 - }, - "0x6d96f18f00b815b2109a3766e79f6a7ad7785624": { - "address": "0x6d96f18f00b815b2109a3766e79f6a7ad7785624", - "symbol": "PATIENCE", - "decimals": 18, - "name": "PATIENCE", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x6d96f18f00b815b2109a3766e79f6a7ad7785624.png", - "aggregators": ["CoinGecko", "Rubic", "Rango"], - "occurrences": 3 - }, - "0xf5a346ab106042d19743532162c2b07d22414557": { - "address": "0xf5a346ab106042d19743532162c2b07d22414557", - "symbol": "LILMIQUELA.BASE.ETH", - "decimals": 18, - "name": "lilmiquela.base.eth", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xf5a346ab106042d19743532162c2b07d22414557.png", - "aggregators": ["CoinGecko", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x1de93ac1dea94497e97513d3cf8dbe5b9e72b25d": { - "address": "0x1de93ac1dea94497e97513d3cf8dbe5b9e72b25d", - "symbol": "BULLSVSBEARS", - "decimals": 18, - "name": "Bulls vs Bears", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x1de93ac1dea94497e97513d3cf8dbe5b9e72b25d.png", - "aggregators": ["CoinGecko", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x43e74d30443b5e7661ac077ce626a6b134e803c4": { - "address": "0x43e74d30443b5e7661ac077ce626a6b134e803c4", - "symbol": "PILT", - "decimals": 18, - "name": "Pilot3", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x43e74d30443b5e7661ac077ce626a6b134e803c4.png", - "aggregators": ["CoinGecko", "Rubic", "Squid"], - "occurrences": 3 - }, - "0x1dd264855c7de0e2fe2cdd6e82bcc71bd86c4fe9": { - "address": "0x1dd264855c7de0e2fe2cdd6e82bcc71bd86c4fe9", - "symbol": "WRP", - "decimals": 18, - "name": "Warp", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x1dd264855c7de0e2fe2cdd6e82bcc71bd86c4fe9.png", - "aggregators": ["CoinGecko", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x787b7b7117848c1f9fc79a8fa543202c231c1edb": { - "address": "0x787b7b7117848c1f9fc79a8fa543202c231c1edb", - "symbol": "CRYPTICPOET", - "decimals": 18, - "name": "crypticpoet", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x787b7b7117848c1f9fc79a8fa543202c231c1edb.png", - "aggregators": ["CoinGecko", "Rubic", "Rango"], - "occurrences": 3 - }, - "0xd413485aa9ca4f88419904255a2384f667dddcab": { - "address": "0xd413485aa9ca4f88419904255a2384f667dddcab", - "symbol": "ELI5A", - "decimals": 18, - "name": "Eli5a", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xd413485aa9ca4f88419904255a2384f667dddcab.png", - "aggregators": ["CoinGecko", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x2dc1c8be620b95cba25d78774f716f05b159c8b9": { - "address": "0x2dc1c8be620b95cba25d78774f716f05b159c8b9", - "symbol": "BONK", - "decimals": 18, - "name": "Based Bonk", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x2dc1c8be620b95cba25d78774f716f05b159c8b9.png", - "aggregators": ["CoinGecko", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x820c5f0fb255a1d18fd0ebb0f1ccefbc4d546da7": { - "address": "0x820c5f0fb255a1d18fd0ebb0f1ccefbc4d546da7", - "symbol": "A0X", - "decimals": 18, - "name": "A0x", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x820c5f0fb255a1d18fd0ebb0f1ccefbc4d546da7.png", - "aggregators": ["CoinGecko", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x638a57267633b8bd9756de2e3a1e2de658b52b07": { - "address": "0x638a57267633b8bd9756de2e3a1e2de658b52b07", - "symbol": "REPLY", - "decimals": 18, - "name": "REPLY", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x638a57267633b8bd9756de2e3a1e2de658b52b07.png", - "aggregators": ["CoinGecko", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x0981209bd6a8b2439271156f73c1a7722f1c1347": { - "address": "0x0981209bd6a8b2439271156f73c1a7722f1c1347", - "symbol": "HUNT", - "decimals": 18, - "name": "Greyhunt", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x0981209bd6a8b2439271156f73c1a7722f1c1347.png", - "aggregators": ["CoinGecko", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x3cc0d3ecc81ba57abf3494abc8d4cb0a43410b07": { - "address": "0x3cc0d3ecc81ba57abf3494abc8d4cb0a43410b07", - "symbol": "GM", - "decimals": 18, - "name": "GMonchain", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x3cc0d3ecc81ba57abf3494abc8d4cb0a43410b07.png", - "aggregators": ["CoinGecko", "Rubic", "Rango"], - "occurrences": 3 - }, - "0xd81cb23a4690f7fdf54e583f221d2c01882604f8": { - "address": "0xd81cb23a4690f7fdf54e583f221d2c01882604f8", - "symbol": "MDOGAI", - "decimals": 18, - "name": "MoonDog AI", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xd81cb23a4690f7fdf54e583f221d2c01882604f8.png", - "aggregators": ["CoinGecko", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x896bf81f9c92c6ef6f9a49679c62e876b405bba3": { - "address": "0x896bf81f9c92c6ef6f9a49679c62e876b405bba3", - "symbol": "CLAWBERRY", - "decimals": 18, - "name": "CLAWBERRY", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x896bf81f9c92c6ef6f9a49679c62e876b405bba3.png", - "aggregators": ["CoinGecko", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x5d4d258144bc954aefc00ee6cbda0433b1b2dcd3": { - "address": "0x5d4d258144bc954aefc00ee6cbda0433b1b2dcd3", - "symbol": "VITASTEM", - "decimals": 18, - "name": "VitaStem", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x5d4d258144bc954aefc00ee6cbda0433b1b2dcd3.png", - "aggregators": ["CoinGecko", "Rubic", "Rango"], - "occurrences": 3 - }, - "0xf4d7fd100b5b03e51261a2e6a673632ef2c68896": { - "address": "0xf4d7fd100b5b03e51261a2e6a673632ef2c68896", - "symbol": "COINAGE", - "decimals": 18, - "name": "coinage", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xf4d7fd100b5b03e51261a2e6a673632ef2c68896.png", - "aggregators": ["CoinGecko", "Rubic", "Rango"], - "occurrences": 3 - }, - "0xb738b1568f08b0d6894a580ef805e9298ebfab46": { - "address": "0xb738b1568f08b0d6894a580ef805e9298ebfab46", - "symbol": "LAND", - "decimals": 18, - "name": "Land Bid", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xb738b1568f08b0d6894a580ef805e9298ebfab46.png", - "aggregators": ["CoinGecko", "Rubic", "Rango"], - "occurrences": 3 - }, - "0xc797fc5ca8ef5502aaa0307b9bfc45e877d6caf5": { - "address": "0xc797fc5ca8ef5502aaa0307b9bfc45e877d6caf5", - "symbol": "SUPER", - "decimals": 18, - "name": "Super Connector", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xc797fc5ca8ef5502aaa0307b9bfc45e877d6caf5.png", - "aggregators": ["CoinGecko", "Rubic", "Squid"], - "occurrences": 3 - }, - "0x0bc945e3ea693ad1527683d9cfe999407ebaabb0": { - "address": "0x0bc945e3ea693ad1527683d9cfe999407ebaabb0", - "symbol": "NET", - "decimals": 18, - "name": "Net", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x0bc945e3ea693ad1527683d9cfe999407ebaabb0.png", - "aggregators": ["CoinGecko", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x749e5334752466cda899b302ed4176b8573dc877": { - "address": "0x749e5334752466cda899b302ed4176b8573dc877", - "symbol": "SIM", - "decimals": 18, - "name": "Assimilate", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x749e5334752466cda899b302ed4176b8573dc877.png", - "aggregators": ["CoinGecko", "Rubic", "Rango"], - "occurrences": 3 - }, - "0xdf006fa7fc1d09a93378e400fe920665412e9046": { - "address": "0xdf006fa7fc1d09a93378e400fe920665412e9046", - "symbol": "PUB", - "decimals": 18, - "name": "Pubhouse Dominance Index", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xdf006fa7fc1d09a93378e400fe920665412e9046.png", - "aggregators": ["CoinGecko", "Rubic", "Rango"], - "occurrences": 3 - }, - "0xf3280115245a7470e7bbdd35e2b4f4094f511443": { - "address": "0xf3280115245a7470e7bbdd35e2b4f4094f511443", - "symbol": "KARUM", - "decimals": 18, - "name": "Karum", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xf3280115245a7470e7bbdd35e2b4f4094f511443.png", - "aggregators": ["CoinGecko", "Rubic", "Rango"], - "occurrences": 3 - }, - "0xe8850bbc9c289c34e7c92c9572be38f77d61cb07": { - "address": "0xe8850bbc9c289c34e7c92c9572be38f77d61cb07", - "symbol": "CLOUDX", - "decimals": 18, - "name": "ClawCloudX", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xe8850bbc9c289c34e7c92c9572be38f77d61cb07.png", - "aggregators": ["CoinGecko", "Rubic", "Rango"], - "occurrences": 3 - }, - "0xc0f2485c17c42344f9138de7d514695c2ee360bc": { - "address": "0xc0f2485c17c42344f9138de7d514695c2ee360bc", - "symbol": "BTCSWAG", - "decimals": 18, - "name": "BitSwagger", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xc0f2485c17c42344f9138de7d514695c2ee360bc.png", - "aggregators": ["CoinGecko", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x002b28fa26982da609f069383ee424b4d36f1b07": { - "address": "0x002b28fa26982da609f069383ee424b4d36f1b07", - "symbol": "ELIOS", - "decimals": 18, - "name": "EliosBase", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x002b28fa26982da609f069383ee424b4d36f1b07.png", - "aggregators": ["CoinGecko", "Rubic", "Rango"], - "occurrences": 3 - }, - "0xd901b38bdd0cd7a8800575cd505d65428a48ba38": { - "address": "0xd901b38bdd0cd7a8800575cd505d65428a48ba38", - "symbol": "DESS", - "decimals": 18, - "name": "Dessistant", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xd901b38bdd0cd7a8800575cd505d65428a48ba38.png", - "aggregators": ["CoinGecko", "Rubic", "Squid"], - "occurrences": 3 - }, - "0x5081de08282c67e5f5d01073a85e8f992a41d780": { - "address": "0x5081de08282c67e5f5d01073a85e8f992a41d780", - "symbol": "AWAI", - "decimals": 18, - "name": "Alliewai", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x5081de08282c67e5f5d01073a85e8f992a41d780.png", - "aggregators": ["CoinGecko", "Rubic", "Squid"], - "occurrences": 3 - }, - "0x032a7252b4932c44bde89aee6275744376a96bff": { - "address": "0x032a7252b4932c44bde89aee6275744376a96bff", - "symbol": "ATTN", - "decimals": 6, - "name": "Attention Token", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x032a7252b4932c44bde89aee6275744376a96bff.png", - "aggregators": ["CoinGecko", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x9f44218d487bff2f81bef45202601df4bd4d1055": { - "address": "0x9f44218d487bff2f81bef45202601df4bd4d1055", - "symbol": "ARCX", - "decimals": 18, - "name": "Architex", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x9f44218d487bff2f81bef45202601df4bd4d1055.png", - "aggregators": ["CoinGecko", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x1196c6704789620514fd25632abe15f69a50bc4f": { - "address": "0x1196c6704789620514fd25632abe15f69a50bc4f", - "symbol": "PEPEC", - "decimals": 18, - "name": "PEPE Clanker", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x1196c6704789620514fd25632abe15f69a50bc4f.png", - "aggregators": ["CoinGecko", "Rubic", "Rango"], - "occurrences": 3 - }, - "0xdddf73c5535eec1d6aa7f41880cbe69a64066eb1": { - "address": "0xdddf73c5535eec1d6aa7f41880cbe69a64066eb1", - "symbol": "RING", - "decimals": 18, - "name": "Ringfence", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xdddf73c5535eec1d6aa7f41880cbe69a64066eb1.png", - "aggregators": ["CoinGecko", "Rubic", "Squid"], - "occurrences": 3 - }, - "0x6dfb7bfa06e7c2b6c20c22c0afb44852c201eb07": { - "address": "0x6dfb7bfa06e7c2b6c20c22c0afb44852c201eb07", - "symbol": "SOLVR", - "decimals": 18, - "name": "Solvr", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x6dfb7bfa06e7c2b6c20c22c0afb44852c201eb07.png", - "aggregators": ["CoinGecko", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x3e04dee527a90ddfa1fe6f9e12a4d62677d00071": { - "address": "0x3e04dee527a90ddfa1fe6f9e12a4d62677d00071", - "symbol": "ZORBYAI", - "decimals": 18, - "name": "zorbyai", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x3e04dee527a90ddfa1fe6f9e12a4d62677d00071.png", - "aggregators": ["CoinGecko", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x2fc3dd4dacfd1b2fabac157de8727b54bade4b07": { - "address": "0x2fc3dd4dacfd1b2fabac157de8727b54bade4b07", - "symbol": "CLAWIAI", - "decimals": 18, - "name": "ClawiAi", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x2fc3dd4dacfd1b2fabac157de8727b54bade4b07.png", - "aggregators": ["CoinGecko", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x5682a3ba66eeb60e82d18865849b513ab9c9692d": { - "address": "0x5682a3ba66eeb60e82d18865849b513ab9c9692d", - "symbol": "SINBAD CREW BASE", - "decimals": 18, - "name": "SINBAD CREW BASE", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x5682a3ba66eeb60e82d18865849b513ab9c9692d.png", - "aggregators": ["CoinGecko", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x00cb1fbca324d51325a7264d54072bc073c28ba3": { - "address": "0x00cb1fbca324d51325a7264d54072bc073c28ba3", - "symbol": "DARKSOL", - "decimals": 18, - "name": "Darksol", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x00cb1fbca324d51325a7264d54072bc073c28ba3.png", - "aggregators": ["CoinGecko", "Rubic", "Rango"], - "occurrences": 3 - }, - "0xf327abd3c9709c9834d0ad1dc253ff6eed86c04d": { - "address": "0xf327abd3c9709c9834d0ad1dc253ff6eed86c04d", - "symbol": "BREAD", - "decimals": 9, - "name": "COINBREAD", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xf327abd3c9709c9834d0ad1dc253ff6eed86c04d.png", - "aggregators": ["CoinGecko", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x452867ec20dc5061056c1613db2801f512dda1c1": { - "address": "0x452867ec20dc5061056c1613db2801f512dda1c1", - "symbol": "GECKO", - "decimals": 18, - "name": "Agent Gecko TV", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x452867ec20dc5061056c1613db2801f512dda1c1.png", - "aggregators": ["CoinGecko", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x5b9957a7459347163881d19a87f6dc13291c2b07": { - "address": "0x5b9957a7459347163881d19a87f6dc13291c2b07", - "symbol": "JUMPBOX.ETH", - "decimals": 18, - "name": "jumpbox.eth", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x5b9957a7459347163881d19a87f6dc13291c2b07.png", - "aggregators": ["CoinGecko", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x33e7f871ce502ec77a0d96fdcd02c9219f95e944": { - "address": "0x33e7f871ce502ec77a0d96fdcd02c9219f95e944", - "symbol": "BOMET", - "decimals": 18, - "name": "BOMET", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x33e7f871ce502ec77a0d96fdcd02c9219f95e944.png", - "aggregators": ["CoinGecko", "Rubic", "Rango"], - "occurrences": 3 - }, - "0xa6c6ea2e0140849be02a3a34780cf61b766916c5": { - "address": "0xa6c6ea2e0140849be02a3a34780cf61b766916c5", - "symbol": "UNITE", - "decimals": 18, - "name": "Unite", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xa6c6ea2e0140849be02a3a34780cf61b766916c5.png", - "aggregators": ["CoinGecko", "Rubic", "Rango"], - "occurrences": 3 - }, - "0xec3d2537a03fc4d790aa1fc66fa7dfadc6b245fb": { - "address": "0xec3d2537a03fc4d790aa1fc66fa7dfadc6b245fb", - "symbol": "WARS", - "decimals": 18, - "name": "WARS by wow.ai", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xec3d2537a03fc4d790aa1fc66fa7dfadc6b245fb.png", - "aggregators": ["CoinGecko", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x09f87f948c88848363b124c9099cbb58e4cc7cb6": { - "address": "0x09f87f948c88848363b124c9099cbb58e4cc7cb6", - "symbol": "MESSY", - "decimals": 18, - "name": "MESSY", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x09f87f948c88848363b124c9099cbb58e4cc7cb6.png", - "aggregators": ["CoinGecko", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x06fc3d5d2369561e28f261148576520f5e49d6ea": { - "address": "0x06fc3d5d2369561e28f261148576520f5e49d6ea", - "symbol": "AVC", - "decimals": 18, - "name": "AVC", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x06fc3d5d2369561e28f261148576520f5e49d6ea.png", - "aggregators": ["CoinGecko", "Rubic", "Rango"], - "occurrences": 3 - }, - "0xc33b0ba16875b94aaa55ae6c870cc01cd31501c2": { - "address": "0xc33b0ba16875b94aaa55ae6c870cc01cd31501c2", - "symbol": "S3NSE", - "decimals": 18, - "name": "S3NSE AI", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xc33b0ba16875b94aaa55ae6c870cc01cd31501c2.png", - "aggregators": ["CoinGecko", "Rubic", "Rango"], - "occurrences": 3 - }, - "0xaadd98ad4660008c917c6fe7286bc54b2eef894d": { - "address": "0xaadd98ad4660008c917c6fe7286bc54b2eef894d", - "symbol": "CLONES", - "decimals": 18, - "name": "CLONES", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xaadd98ad4660008c917c6fe7286bc54b2eef894d.png", - "aggregators": ["CoinGecko", "Rubic", "Rango"], - "occurrences": 3 - }, - "0xe061aa40be525a13296cb4bf69f513242349d708": { - "address": "0xe061aa40be525a13296cb4bf69f513242349d708", - "symbol": "XVGBASE", - "decimals": 18, - "name": "XVGBASE", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xe061aa40be525a13296cb4bf69f513242349d708.png", - "aggregators": ["CoinGecko", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x4c7e7371e40b3f8c74dda97e967a47eee6b0b38f": { - "address": "0x4c7e7371e40b3f8c74dda97e967a47eee6b0b38f", - "symbol": "LSD", - "decimals": 18, - "name": "Liquid Sonic Drop", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x4c7e7371e40b3f8c74dda97e967a47eee6b0b38f.png", - "aggregators": ["CoinGecko", "Rubic", "Rango"], - "occurrences": 3 - }, - "0xe6c854488811fbd6472b684360ad5c393c7bae8f": { - "address": "0xe6c854488811fbd6472b684360ad5c393c7bae8f", - "symbol": "BID", - "decimals": 18, - "name": "bid.launch", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xe6c854488811fbd6472b684360ad5c393c7bae8f.png", - "aggregators": ["CoinGecko", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x95ccfd2b81a9667b0cc979992632f98fc853eba3": { - "address": "0x95ccfd2b81a9667b0cc979992632f98fc853eba3", - "symbol": "HERMESOS", - "decimals": 18, - "name": "Hermes OS", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x95ccfd2b81a9667b0cc979992632f98fc853eba3.png", - "aggregators": ["CoinGecko", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x3058e9b4bfe397b81e2b91da79cff685d662049f": { - "address": "0x3058e9b4bfe397b81e2b91da79cff685d662049f", - "symbol": "SPLOOT", - "decimals": 18, - "name": "Sploots", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x3058e9b4bfe397b81e2b91da79cff685d662049f.png", - "aggregators": ["CoinGecko", "Rubic", "Squid"], - "occurrences": 3 - }, - "0x172b81d3396fbccd97090c9a685ed67f8c7a5f8f": { - "address": "0x172b81d3396fbccd97090c9a685ed67f8c7a5f8f", - "symbol": "BOBO", - "decimals": 18, - "name": "Bobo the Base", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x172b81d3396fbccd97090c9a685ed67f8c7a5f8f.png", - "aggregators": ["CoinGecko", "Rubic", "Rango"], - "occurrences": 3 - }, - "0xa6f774051dfb6b54869227fda2df9cb46f296c09": { - "address": "0xa6f774051dfb6b54869227fda2df9cb46f296c09", - "symbol": "SKICAT", - "decimals": 18, - "name": "SKI MASK CAT", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xa6f774051dfb6b54869227fda2df9cb46f296c09.png", - "aggregators": ["CoinGecko", "Rubic", "Rango"], - "occurrences": 3 - }, - "0xd9159ad2d5fe625cd1f54f4d328fb19cb5262b07": { - "address": "0xd9159ad2d5fe625cd1f54f4d328fb19cb5262b07", - "symbol": "WARP", - "decimals": 18, - "name": "Warplet", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xd9159ad2d5fe625cd1f54f4d328fb19cb5262b07.png", - "aggregators": ["CoinGecko", "Rubic", "Rango"], - "occurrences": 3 - }, - "0xf383074c4b993d1ccd196188d27d0ddf22ad463c": { - "address": "0xf383074c4b993d1ccd196188d27d0ddf22ad463c", - "symbol": "UAAVE", - "decimals": 18, - "name": "Wrapped Aave (Universal)", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xf383074c4b993d1ccd196188d27d0ddf22ad463c.png", - "aggregators": ["CoinGecko", "Rubic", "Sonarwatch"], - "occurrences": 3 - }, - "0xe497a3444ca6cbfc1c5a1ce537b743a21ff9f1ca": { - "address": "0xe497a3444ca6cbfc1c5a1ce537b743a21ff9f1ca", - "symbol": "JAZZER", - "decimals": 18, - "name": "Jazzer Guys", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xe497a3444ca6cbfc1c5a1ce537b743a21ff9f1ca.png", - "aggregators": ["CoinGecko", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x61f47ec6d1d0ef9b095574d7b76cf0467d13fb07": { - "address": "0x61f47ec6d1d0ef9b095574d7b76cf0467d13fb07", - "symbol": "HOTDOG", - "decimals": 18, - "name": "Hotdog", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x61f47ec6d1d0ef9b095574d7b76cf0467d13fb07.png", - "aggregators": ["CoinGecko", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x35c8afb7d3ad01b154a5e8e0f92f31181d101a3d": { - "address": "0x35c8afb7d3ad01b154a5e8e0f92f31181d101a3d", - "symbol": "BTC", - "decimals": 18, - "name": "Big Tom Coin", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x35c8afb7d3ad01b154a5e8e0f92f31181d101a3d.png", - "aggregators": ["CoinGecko", "Rubic", "Rango"], - "occurrences": 3 - }, - "0xf0197f10ea542a67914ecc0ec5304dc9df1faf6f": { - "address": "0xf0197f10ea542a67914ecc0ec5304dc9df1faf6f", - "symbol": "DEAD", - "decimals": 18, - "name": "DEAD", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xf0197f10ea542a67914ecc0ec5304dc9df1faf6f.png", - "aggregators": ["CoinGecko", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x3d81fbe679e8aa27a290b15aab5af5fa23cdcca3": { - "address": "0x3d81fbe679e8aa27a290b15aab5af5fa23cdcca3", - "symbol": "WARPLET", - "decimals": 18, - "name": "Warplet", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x3d81fbe679e8aa27a290b15aab5af5fa23cdcca3.png", - "aggregators": ["CoinGecko", "Rubic", "Rango"], - "occurrences": 3 - }, - "0xffcadd0cdadd39673991a1dda4a756a801535f48": { - "address": "0xffcadd0cdadd39673991a1dda4a756a801535f48", - "symbol": "FLIPR", - "decimals": 18, - "name": "Flipr.bet", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xffcadd0cdadd39673991a1dda4a756a801535f48.png", - "aggregators": ["CoinGecko", "Rubic", "Rango"], - "occurrences": 3 - }, - "0xf10d342c5aa57d917579a2e51f60ed2227e6e7f9": { - "address": "0xf10d342c5aa57d917579a2e51f60ed2227e6e7f9", - "symbol": "STUBBS", - "decimals": 18, - "name": "Cat Mayor", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xf10d342c5aa57d917579a2e51f60ed2227e6e7f9.png", - "aggregators": ["CoinGecko", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x4e4c7c62a55c0cf450f1ff4478be7f4c34dde155": { - "address": "0x4e4c7c62a55c0cf450f1ff4478be7f4c34dde155", - "symbol": "MOLTASK", - "decimals": 18, - "name": "Moltask", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x4e4c7c62a55c0cf450f1ff4478be7f4c34dde155.png", - "aggregators": ["CoinGecko", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x67446a5746b5f1ce62d78f40f8c83dba03ae3e15": { - "address": "0x67446a5746b5f1ce62d78f40f8c83dba03ae3e15", - "symbol": "DUCK", - "decimals": 18, - "name": "AppDuck", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x67446a5746b5f1ce62d78f40f8c83dba03ae3e15.png", - "aggregators": ["CoinGecko", "Rubic", "Squid"], - "occurrences": 3 - }, - "0x13b628ff6db92070c0fbad79523240e0f5defb07": { - "address": "0x13b628ff6db92070c0fbad79523240e0f5defb07", - "symbol": "PIZZA", - "decimals": 18, - "name": "PIZZA", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x13b628ff6db92070c0fbad79523240e0f5defb07.png", - "aggregators": ["CoinGecko", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x080b9b4d1034a5de562e6343706c8200ae56bd51": { - "address": "0x080b9b4d1034a5de562e6343706c8200ae56bd51", - "symbol": "CLAWRIS", - "decimals": 18, - "name": "Clawris", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x080b9b4d1034a5de562e6343706c8200ae56bd51.png", - "aggregators": ["CoinGecko", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x6a54aa801607a09f11be4f83fcc324696163bb07": { - "address": "0x6a54aa801607a09f11be4f83fcc324696163bb07", - "symbol": "CLAWSHI", - "decimals": 18, - "name": "Clawshi", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x6a54aa801607a09f11be4f83fcc324696163bb07.png", - "aggregators": ["CoinGecko", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x07321eae7b7018a241c97c3e31f072098c3d5bc6": { - "address": "0x07321eae7b7018a241c97c3e31f072098c3d5bc6", - "symbol": "DARE", - "decimals": 18, - "name": "Daredevil", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x07321eae7b7018a241c97c3e31f072098c3d5bc6.png", - "aggregators": ["CoinGecko", "Rubic", "Squid"], - "occurrences": 3 - }, - "0x59c0d5c34c301ac0600147924d6c9be22a2f0b07": { - "address": "0x59c0d5c34c301ac0600147924d6c9be22a2f0b07", - "symbol": "MOLTEN", - "decimals": 18, - "name": "Molten", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x59c0d5c34c301ac0600147924d6c9be22a2f0b07.png", - "aggregators": ["CoinGecko", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x3722264ab15a1dfce5a5af89e6547f7949a8aba3": { - "address": "0x3722264ab15a1dfce5a5af89e6547f7949a8aba3", - "symbol": "LFI", - "decimals": 18, - "name": "LienFi", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x3722264ab15a1dfce5a5af89e6547f7949a8aba3.png", - "aggregators": ["CoinGecko", "Rubic", "Rango"], - "occurrences": 3 - }, - "0xc34803d003f582b122b9575c14007373ad8c9383": { - "address": "0xc34803d003f582b122b9575c14007373ad8c9383", - "symbol": "CLAWLETT", - "decimals": 18, - "name": "CLAWLETT", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xc34803d003f582b122b9575c14007373ad8c9383.png", - "aggregators": ["CoinGecko", "Rubic", "Rango"], - "occurrences": 3 - }, - "0xd7bc6a05a56655fb2052f742b012d1dfd66e1ba3": { - "address": "0xd7bc6a05a56655fb2052f742b012d1dfd66e1ba3", - "symbol": "MIROSHARK", - "decimals": 18, - "name": "MiroShark", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xd7bc6a05a56655fb2052f742b012d1dfd66e1ba3.png", - "aggregators": ["CoinGecko", "Rubic", "Rango"], - "occurrences": 3 - }, - "0xbe535d034078e262f72c67020006a63e8c64592f": { - "address": "0xbe535d034078e262f72c67020006a63e8c64592f", - "symbol": "KUDABERI", - "decimals": 18, - "name": "Kudaberi", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xbe535d034078e262f72c67020006a63e8c64592f.png", - "aggregators": ["CoinGecko", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x73cb479f2ccf77bad90bcda91e3987358437240a": { - "address": "0x73cb479f2ccf77bad90bcda91e3987358437240a", - "symbol": "BIOS", - "decimals": 18, - "name": "BasisOS by Virtuals", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x73cb479f2ccf77bad90bcda91e3987358437240a.png", - "aggregators": ["CoinGecko", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x14e18043a68530acb5306f603109f7dc91b09b07": { - "address": "0x14e18043a68530acb5306f603109f7dc91b09b07", - "symbol": "EMMET", - "decimals": 18, - "name": "I Emmet", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x14e18043a68530acb5306f603109f7dc91b09b07.png", - "aggregators": ["CoinGecko", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x2357110f5f0c5344eef75966500c75116a4aa153": { - "address": "0x2357110f5f0c5344eef75966500c75116a4aa153", - "symbol": "PR", - "decimals": 18, - "name": "Primer", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x2357110f5f0c5344eef75966500c75116a4aa153.png", - "aggregators": ["CoinGecko", "Rubic", "Rango"], - "occurrences": 3 - }, - "0xeed0b37580fd9ee711f0a477b2be5c306b41ef12": { - "address": "0xeed0b37580fd9ee711f0a477b2be5c306b41ef12", - "symbol": "VORTEX", - "decimals": 9, - "name": "Vortex", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xeed0b37580fd9ee711f0a477b2be5c306b41ef12.png", - "aggregators": ["CoinGecko", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x1f3ba804efb9cfe17d595e7262cea4782dbf6e4e": { - "address": "0x1f3ba804efb9cfe17d595e7262cea4782dbf6e4e", - "symbol": "HPC", - "decimals": 18, - "name": "Happy Puppy Club", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x1f3ba804efb9cfe17d595e7262cea4782dbf6e4e.png", - "aggregators": ["CoinGecko", "Rubic", "Rango"], - "occurrences": 3 - }, - "0xde61878b0b21ce395266c44d4d548d1c72a3eb07": { - "address": "0xde61878b0b21ce395266c44d4d548d1c72a3eb07", - "symbol": "SAIRI", - "decimals": 18, - "name": "SAIRI", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xde61878b0b21ce395266c44d4d548d1c72a3eb07.png", - "aggregators": ["CoinGecko", "Rubic", "Rango"], - "occurrences": 3 - }, - "0xa140438827e1ab9ee27018eedcc7aad9136033d8": { - "address": "0xa140438827e1ab9ee27018eedcc7aad9136033d8", - "symbol": "PIXEL", - "decimals": 18, - "name": "pixelcoin.fun", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xa140438827e1ab9ee27018eedcc7aad9136033d8.png", - "aggregators": ["CoinGecko", "Rubic", "Rango"], - "occurrences": 3 - }, - "0xe642657e4f43e6dcf0bd73ef24008394574dee28": { - "address": "0xe642657e4f43e6dcf0bd73ef24008394574dee28", - "symbol": "RECORD", - "decimals": 18, - "name": "MusicProtocolRECORDToken", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xe642657e4f43e6dcf0bd73ef24008394574dee28.png", - "aggregators": ["CoinGecko", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x04175b1f982b8c8444f238ac0aae59f029e21099": { - "address": "0x04175b1f982b8c8444f238ac0aae59f029e21099", - "symbol": "BNXR", - "decimals": 18, - "name": "BankrX", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x04175b1f982b8c8444f238ac0aae59f029e21099.png", - "aggregators": ["CoinGecko", "Rubic", "Rango"], - "occurrences": 3 - }, - "0xfb7a83abe4f4a4e51c77b92e521390b769ff6467": { - "address": "0xfb7a83abe4f4a4e51c77b92e521390b769ff6467", - "symbol": "MAXX", - "decimals": 18, - "name": "Ethermax", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xfb7a83abe4f4a4e51c77b92e521390b769ff6467.png", - "aggregators": ["CoinGecko", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x3aaf8a9e6c2a63af24c97cb29121d19c1cc10993": { - "address": "0x3aaf8a9e6c2a63af24c97cb29121d19c1cc10993", - "symbol": "$BAPU", - "decimals": 18, - "name": "Blue Apu", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x3aaf8a9e6c2a63af24c97cb29121d19c1cc10993.png", - "aggregators": ["CoinGecko", "Rubic", "Rango"], - "occurrences": 3 - }, - "0xbede17c8b0535791d131f0d6b6094b99cf27eb07": { - "address": "0xbede17c8b0535791d131f0d6b6094b99cf27eb07", - "symbol": "LIKES", - "decimals": 18, - "name": "likes", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xbede17c8b0535791d131f0d6b6094b99cf27eb07.png", - "aggregators": ["CoinGecko", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x3348b2b47e388bb4a03cb890e1f3f308b90828ef": { - "address": "0x3348b2b47e388bb4a03cb890e1f3f308b90828ef", - "symbol": "TROLL", - "decimals": 18, - "name": "Based Troll", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x3348b2b47e388bb4a03cb890e1f3f308b90828ef.png", - "aggregators": ["CoinGecko", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x9a9de07629ef283c2d700efd3958f59b7d528453": { - "address": "0x9a9de07629ef283c2d700efd3958f59b7d528453", - "symbol": "MOTO", - "decimals": 18, - "name": "MOTO", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x9a9de07629ef283c2d700efd3958f59b7d528453.png", - "aggregators": ["CoinGecko", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x7b0ee9dcb5c1d4d7cd630c652959951936512ba3": { - "address": "0x7b0ee9dcb5c1d4d7cd630c652959951936512ba3", - "symbol": "DELU", - "decimals": 18, - "name": "Delu", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x7b0ee9dcb5c1d4d7cd630c652959951936512ba3.png", - "aggregators": ["CoinGecko", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x1891c9bfbbbc186c2ba1bccba7c9b03dfcccd221": { - "address": "0x1891c9bfbbbc186c2ba1bccba7c9b03dfcccd221", - "symbol": "$ALPHA", - "decimals": 18, - "name": "A L P H A", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x1891c9bfbbbc186c2ba1bccba7c9b03dfcccd221.png", - "aggregators": ["CoinGecko", "Rubic", "Rango"], - "occurrences": 3 - }, - "0xa31de7db919b1499bf8d96daa8612270c38109dc": { - "address": "0xa31de7db919b1499bf8d96daa8612270c38109dc", - "symbol": "SWC", - "decimals": 18, - "name": "Stand With Crypto Fund", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xa31de7db919b1499bf8d96daa8612270c38109dc.png", - "aggregators": ["CoinGecko", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x0fd122a924c4528a78a8141bddd38a0e5ba35fa5": { - "address": "0x0fd122a924c4528a78a8141bddd38a0e5ba35fa5", - "symbol": "CREATOR", - "decimals": 18, - "name": "CreatorDAO", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x0fd122a924c4528a78a8141bddd38a0e5ba35fa5.png", - "aggregators": ["CoinGecko", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x61e39a8338d6049db936534596f29ec26ff5ae7a": { - "address": "0x61e39a8338d6049db936534596f29ec26ff5ae7a", - "symbol": "PERPS", - "decimals": 18, - "name": "PerpsDAO", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x61e39a8338d6049db936534596f29ec26ff5ae7a.png", - "aggregators": ["CoinGecko", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x6444c6c2d527d85ea97032da9a7504d6d1448ecf": { - "address": "0x6444c6c2d527d85ea97032da9a7504d6d1448ecf", - "symbol": "R1", - "decimals": 18, - "name": "Ratio1", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x6444c6c2d527d85ea97032da9a7504d6d1448ecf.png", - "aggregators": ["CoinGecko", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x42081cf59a145ca4ca51edcee577fc4be3b35dbd": { - "address": "0x42081cf59a145ca4ca51edcee577fc4be3b35dbd", - "symbol": "ZLURPEE", - "decimals": 18, - "name": "Zlurpee", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x42081cf59a145ca4ca51edcee577fc4be3b35dbd.png", - "aggregators": ["CoinGecko", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x4da9a0f397db1397902070f93a4d6ddbc0e0e6e8": { - "address": "0x4da9a0f397db1397902070f93a4d6ddbc0e0e6e8", - "symbol": "LCAP", - "decimals": 18, - "name": "LCAP", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x4da9a0f397db1397902070f93a4d6ddbc0e0e6e8.png", - "aggregators": ["CoinGecko", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x03264d29e2498284c0043d8f83e040778ab6290a": { - "address": "0x03264d29e2498284c0043d8f83e040778ab6290a", - "symbol": "AURA", - "decimals": 18, - "name": "based aura", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x03264d29e2498284c0043d8f83e040778ab6290a.png", - "aggregators": ["CoinGecko", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x10b2057bc08d1d50ba18a536172244fb96c7dba3": { - "address": "0x10b2057bc08d1d50ba18a536172244fb96c7dba3", - "symbol": "SHAR", - "decimals": 18, - "name": "Short Arena", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x10b2057bc08d1d50ba18a536172244fb96c7dba3.png", - "aggregators": ["CoinGecko", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x4972e029f2e1831d205b20d05833cc771feb2ba3": { - "address": "0x4972e029f2e1831d205b20d05833cc771feb2ba3", - "symbol": "HARBOR", - "decimals": 18, - "name": "CLAW HARBOR", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x4972e029f2e1831d205b20d05833cc771feb2ba3.png", - "aggregators": ["CoinGecko", "Rubic", "Rango"], - "occurrences": 3 - }, - "0xe53cf16e504023c59755c4609b5432c6e2700b07": { - "address": "0xe53cf16e504023c59755c4609b5432c6e2700b07", - "symbol": "CLAWZ", - "decimals": 18, - "name": "ClawZilla", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xe53cf16e504023c59755c4609b5432c6e2700b07.png", - "aggregators": ["CoinGecko", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x9f3bb51d5c14aaf53794fe5780c085967dacaf2d": { - "address": "0x9f3bb51d5c14aaf53794fe5780c085967dacaf2d", - "symbol": "BP", - "decimals": 18, - "name": "Blueprint", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x9f3bb51d5c14aaf53794fe5780c085967dacaf2d.png", - "aggregators": ["CoinGecko", "Rubic", "Rango"], - "occurrences": 3 - }, - "0xf7e2a6226ffe0693dd85406ac3a8917cbea5dc40": { - "address": "0xf7e2a6226ffe0693dd85406ac3a8917cbea5dc40", - "symbol": "OTX", - "decimals": 18, - "name": "Otonix", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xf7e2a6226ffe0693dd85406ac3a8917cbea5dc40.png", - "aggregators": ["CoinGecko", "Rubic", "Rango"], - "occurrences": 3 - }, - "0xccf66470a962464cff146b34a7cc8c235b068b07": { - "address": "0xccf66470a962464cff146b34a7cc8c235b068b07", - "symbol": "FRED", - "decimals": 18, - "name": "clawfred", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xccf66470a962464cff146b34a7cc8c235b068b07.png", - "aggregators": ["CoinGecko", "Rubic", "Rango"], - "occurrences": 3 - }, - "0xb4d4ff3fcbd6965962a79229aa94631d394217cb": { - "address": "0xb4d4ff3fcbd6965962a79229aa94631d394217cb", - "symbol": "BRAT", - "decimals": 18, - "name": "Brat", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xb4d4ff3fcbd6965962a79229aa94631d394217cb.png", - "aggregators": ["CoinGecko", "Rubic", "Rango"], - "occurrences": 3 - }, - "0xf530c629c2a34b5bb42b46986367bb33a5cedb07": { - "address": "0xf530c629c2a34b5bb42b46986367bb33a5cedb07", - "symbol": "ROGUEAI", - "decimals": 18, - "name": "RogueAI", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xf530c629c2a34b5bb42b46986367bb33a5cedb07.png", - "aggregators": ["CoinGecko", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x71a67215a2025f501f386a49858a9ced2fc0249d": { - "address": "0x71a67215a2025f501f386a49858a9ced2fc0249d", - "symbol": "USEI", - "decimals": 18, - "name": "Sei (Universal)", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x71a67215a2025f501f386a49858a9ced2fc0249d.png", - "aggregators": ["CoinGecko", "Rubic", "Rango"], - "occurrences": 3 - }, - "0xaaa9a3bc81fe7951fe0c3755837b40749ce0c894": { - "address": "0xaaa9a3bc81fe7951fe0c3755837b40749ce0c894", - "symbol": "LEGEND", - "decimals": 18, - "name": "Legend", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xaaa9a3bc81fe7951fe0c3755837b40749ce0c894.png", - "aggregators": ["CoinGecko", "Rubic", "Squid"], - "occurrences": 3 - }, - "0xa46447afe60bdbf271bb05ea70d56aee1c4a4094": { - "address": "0xa46447afe60bdbf271bb05ea70d56aee1c4a4094", - "symbol": "2DAI", - "decimals": 18, - "name": "2DAI.io 🟦", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xa46447afe60bdbf271bb05ea70d56aee1c4a4094.png", - "aggregators": ["CoinGecko", "Rubic", "Rango"], - "occurrences": 3 - }, - "0xfc207cb952bd7bb028b70b370aced0ff8bc17b07": { - "address": "0xfc207cb952bd7bb028b70b370aced0ff8bc17b07", - "symbol": "CONBOOK", - "decimals": 18, - "name": "Conbook", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xfc207cb952bd7bb028b70b370aced0ff8bc17b07.png", - "aggregators": ["CoinGecko", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x289a086583a605c4af00de3bf859b70afc68f991": { - "address": "0x289a086583a605c4af00de3bf859b70afc68f991", - "symbol": "QUOKKA", - "decimals": 18, - "name": "Quokka", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x289a086583a605c4af00de3bf859b70afc68f991.png", - "aggregators": ["CoinGecko", "Rubic", "Rango"], - "occurrences": 3 - }, - "0xe58b3ab1fb80304de37a507a2449fea64bf0b507": { - "address": "0xe58b3ab1fb80304de37a507a2449fea64bf0b507", - "symbol": "VOY", - "decimals": 18, - "name": "Jetvoy", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xe58b3ab1fb80304de37a507a2449fea64bf0b507.png", - "aggregators": ["CoinGecko", "Rubic", "Rango"], - "occurrences": 3 - }, - "0xb942b75a602fa318ac091370d93d9143ba345ba3": { - "address": "0xb942b75a602fa318ac091370d93d9143ba345ba3", - "symbol": "MYTHOS", - "decimals": 18, - "name": "Mythos Router", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xb942b75a602fa318ac091370d93d9143ba345ba3.png", - "aggregators": ["CoinGecko", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x0e83a7ae823a04787e175fb77fb2f77a56896a69": { - "address": "0x0e83a7ae823a04787e175fb77fb2f77a56896a69", - "symbol": "BONKER", - "decimals": 18, - "name": "Bonker", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x0e83a7ae823a04787e175fb77fb2f77a56896a69.png", - "aggregators": ["CoinGecko", "Rubic", "Rango"], - "occurrences": 3 - }, - "0xb3ecba1330fe26bb36f40344992c481c2c916f23": { - "address": "0xb3ecba1330fe26bb36f40344992c481c2c916f23", - "symbol": "BDOGE", - "decimals": 18, - "name": "Based Doge", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xb3ecba1330fe26bb36f40344992c481c2c916f23.png", - "aggregators": ["CoinGecko", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x587cd533f418825521f3a1daa7ccd1e7339a1b07": { - "address": "0x587cd533f418825521f3a1daa7ccd1e7339a1b07", - "symbol": "STARKBOT", - "decimals": 18, - "name": "StarkBot", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x587cd533f418825521f3a1daa7ccd1e7339a1b07.png", - "aggregators": ["CoinGecko", "Rubic", "Rango"], - "occurrences": 3 - }, - "0xa763b711b55935f6d7ba2f93e1adf741e2446b07": { - "address": "0xa763b711b55935f6d7ba2f93e1adf741e2446b07", - "symbol": "LOOP", - "decimals": 18, - "name": "x402MKT", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xa763b711b55935f6d7ba2f93e1adf741e2446b07.png", - "aggregators": ["CoinGecko", "Rubic", "Rango"], - "occurrences": 3 - }, - "0xbf71faf1e649f359de0092adffae4756710f4127": { - "address": "0xbf71faf1e649f359de0092adffae4756710f4127", - "symbol": "LILBULE", - "decimals": 18, - "name": "Xiao Lan", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xbf71faf1e649f359de0092adffae4756710f4127.png", - "aggregators": ["CoinGecko", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x14d4ce8b1729c67130bcd90339ea1f9b480a739f": { - "address": "0x14d4ce8b1729c67130bcd90339ea1f9b480a739f", - "symbol": "AMARA", - "decimals": 18, - "name": "AMARA", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x14d4ce8b1729c67130bcd90339ea1f9b480a739f.png", - "aggregators": ["CoinGecko", "Rubic", "Rango"], - "occurrences": 3 - }, - "0xc478ea5d6340ef8ef04088c3a649ddeac764b545": { - "address": "0xc478ea5d6340ef8ef04088c3a649ddeac764b545", - "symbol": "HBET", - "decimals": 18, - "name": "Hyperbet", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xc478ea5d6340ef8ef04088c3a649ddeac764b545.png", - "aggregators": ["CoinGecko", "Rubic", "Squid"], - "occurrences": 3 - }, - "0xb36a127dba73f3aa7c70b4e00b7395b86a60e73b": { - "address": "0xb36a127dba73f3aa7c70b4e00b7395b86a60e73b", - "symbol": "RUSH", - "decimals": 18, - "name": "RUSH GAME", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xb36a127dba73f3aa7c70b4e00b7395b86a60e73b.png", - "aggregators": ["CoinGecko", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x8a45376fd791c29b9c5a49bc01c2f5d865a98b07": { - "address": "0x8a45376fd791c29b9c5a49bc01c2f5d865a98b07", - "symbol": "VELLUM", - "decimals": 18, - "name": "Vellum", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x8a45376fd791c29b9c5a49bc01c2f5d865a98b07.png", - "aggregators": ["CoinGecko", "Rubic", "Rango"], - "occurrences": 3 - }, - "0xce16ef461d88256d2d80dfd31f0d9e7a9fd59213": { - "address": "0xce16ef461d88256d2d80dfd31f0d9e7a9fd59213", - "symbol": "BUNKER", - "decimals": 18, - "name": "MOLT BUNKER", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xce16ef461d88256d2d80dfd31f0d9e7a9fd59213.png", - "aggregators": ["CoinGecko", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x1e339a1785b8114eef43e471c49c6ca327479aca": { - "address": "0x1e339a1785b8114eef43e471c49c6ca327479aca", - "symbol": "BINGO", - "decimals": 18, - "name": "BINGO", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x1e339a1785b8114eef43e471c49c6ca327479aca.png", - "aggregators": ["CoinGecko", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x247791b19f6e14271440ac25689bb04796ec5bcb": { - "address": "0x247791b19f6e14271440ac25689bb04796ec5bcb", - "symbol": "FLOP", - "decimals": 18, - "name": "flopper", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x247791b19f6e14271440ac25689bb04796ec5bcb.png", - "aggregators": ["CoinGecko", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x492ae2107f952b02f2554ce153841933c09d6d43": { - "address": "0x492ae2107f952b02f2554ce153841933c09d6d43", - "symbol": "BIOMEAI", - "decimals": 18, - "name": "BiomeAI", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x492ae2107f952b02f2554ce153841933c09d6d43.png", - "aggregators": ["CoinGecko", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x290d4a2e227cced586895c3f78a03e4e9d4c3fb6": { - "address": "0x290d4a2e227cced586895c3f78a03e4e9d4c3fb6", - "symbol": "COCK", - "decimals": 18, - "name": "Krypto Cock", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x290d4a2e227cced586895c3f78a03e4e9d4c3fb6.png", - "aggregators": ["CoinGecko", "Rubic", "Rango"], - "occurrences": 3 - }, - "0xbd5694abea9a397fc3014678ed529e3da038eba3": { - "address": "0xbd5694abea9a397fc3014678ed529e3da038eba3", - "symbol": "BEACON", - "decimals": 18, - "name": "CLAW BEACON", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xbd5694abea9a397fc3014678ed529e3da038eba3.png", - "aggregators": ["CoinGecko", "Rubic", "Rango"], - "occurrences": 3 - }, - "0xa77e22bfaee006d4f9dc2c20d7d337b05125c282": { - "address": "0xa77e22bfaee006d4f9dc2c20d7d337b05125c282", - "symbol": "TREN", - "decimals": 18, - "name": "Tren Finance v2", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xa77e22bfaee006d4f9dc2c20d7d337b05125c282.png", - "aggregators": ["CoinGecko", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x32f4adca627ac2b4ed1912b23fe8232abb096d5b": { - "address": "0x32f4adca627ac2b4ed1912b23fe8232abb096d5b", - "symbol": "CHIMP", - "decimals": 18, - "name": "Based Chimp", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x32f4adca627ac2b4ed1912b23fe8232abb096d5b.png", - "aggregators": ["CoinGecko", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x4444489570afd4261d616df00de1668dad5f8cee": { - "address": "0x4444489570afd4261d616df00de1668dad5f8cee", - "symbol": "PSX", - "decimals": 18, - "name": "PSX", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x4444489570afd4261d616df00de1668dad5f8cee.png", - "aggregators": ["CoinGecko", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x00bb032296e0c580e21010a5a6a4e007e0953e68": { - "address": "0x00bb032296e0c580e21010a5a6a4e007e0953e68", - "symbol": "NETCLAWD", - "decimals": 18, - "name": "NetClawd", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x00bb032296e0c580e21010a5a6a4e007e0953e68.png", - "aggregators": ["CoinGecko", "Rubic", "Rango"], - "occurrences": 3 - }, - "0xdb4f5678aa11bbe0f980bf36c511d923bd3d5471": { - "address": "0xdb4f5678aa11bbe0f980bf36c511d923bd3d5471", - "symbol": "AMAI", - "decimals": 18, - "name": "AMAI", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xdb4f5678aa11bbe0f980bf36c511d923bd3d5471.png", - "aggregators": ["CoinGecko", "Rubic", "Squid"], - "occurrences": 3 - }, - "0x2a0a59d6b975828e781ecac125dba40d7ee5ddc0": { - "address": "0x2a0a59d6b975828e781ecac125dba40d7ee5ddc0", - "symbol": "RIPE", - "decimals": 18, - "name": "Ripe DAO Governance Token", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x2a0a59d6b975828e781ecac125dba40d7ee5ddc0.png", - "aggregators": ["CoinGecko", "Rubic", "Rango"], - "occurrences": 3 - }, - "0xb316e2469e32e4c782533d8dace9f70b2ad88557": { - "address": "0xb316e2469e32e4c782533d8dace9f70b2ad88557", - "symbol": "AETHR", - "decimals": 18, - "name": "Aether AI", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xb316e2469e32e4c782533d8dace9f70b2ad88557.png", - "aggregators": ["CoinGecko", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x595a40a21842d5514a92539a09f3ceb9c46d3284": { - "address": "0x595a40a21842d5514a92539a09f3ceb9c46d3284", - "symbol": "MOLTH", - "decimals": 18, - "name": "Molthunt", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x595a40a21842d5514a92539a09f3ceb9c46d3284.png", - "aggregators": ["CoinGecko", "Rubic", "Rango"], - "occurrences": 3 - }, - "0xac941d7a4c48f9896f60354c494afb3ed31ac21b": { - "address": "0xac941d7a4c48f9896f60354c494afb3ed31ac21b", - "symbol": "SAUL", - "decimals": 18, - "name": "Saul GoodAI", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xac941d7a4c48f9896f60354c494afb3ed31ac21b.png", - "aggregators": ["CoinGecko", "Rubic", "Squid"], - "occurrences": 3 - }, - "0x32f66ec2ffb26d262058965cf294f951e47f8ba3": { - "address": "0x32f66ec2ffb26d262058965cf294f951e47f8ba3", - "symbol": "AGNT", - "decimals": 18, - "name": "AGNT SOCIAL", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x32f66ec2ffb26d262058965cf294f951e47f8ba3.png", - "aggregators": ["CoinGecko", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x91dd62e33c8d3f4ebef942c1d98e1298ba0f0029": { - "address": "0x91dd62e33c8d3f4ebef942c1d98e1298ba0f0029", - "symbol": "BRAD", - "decimals": 18, - "name": "Brad", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x91dd62e33c8d3f4ebef942c1d98e1298ba0f0029.png", - "aggregators": ["CoinGecko", "Rubic", "Rango"], - "occurrences": 3 - }, - "0xf34c48caddceba57b55b5bd3a14aec4bfe699d14": { - "address": "0xf34c48caddceba57b55b5bd3a14aec4bfe699d14", - "symbol": "PPUMP", - "decimals": 18, - "name": "PandaPump", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xf34c48caddceba57b55b5bd3a14aec4bfe699d14.png", - "aggregators": ["CoinGecko", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x3d5e487b21e0569048c4d1a60e98c36e1b09db07": { - "address": "0x3d5e487b21e0569048c4d1a60e98c36e1b09db07", - "symbol": "₸USD", - "decimals": 18, - "name": "TurboUSD Unstablecoin", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x3d5e487b21e0569048c4d1a60e98c36e1b09db07.png", - "aggregators": ["CoinGecko", "Rubic", "Rango"], - "occurrences": 3 - }, - "0xd7b7861afbc78fc35418f95c3174acca2e8b1644": { - "address": "0xd7b7861afbc78fc35418f95c3174acca2e8b1644", - "symbol": "TIBO", - "decimals": 18, - "name": "Tibo", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xd7b7861afbc78fc35418f95c3174acca2e8b1644.png", - "aggregators": ["CoinGecko", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x3ad8539cf0e010c77d276fb197061ac613511cae": { - "address": "0x3ad8539cf0e010c77d276fb197061ac613511cae", - "symbol": "MOON", - "decimals": 18, - "name": "Lightspeed to the Moon!!!", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x3ad8539cf0e010c77d276fb197061ac613511cae.png", - "aggregators": ["CoinGecko", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x06cece127f81bf76d388859549a93a120ec52ba3": { - "address": "0x06cece127f81bf76d388859549a93a120ec52ba3", - "symbol": "SINGULARITY-ENGINE", - "decimals": 18, - "name": "singularity-engine", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x06cece127f81bf76d388859549a93a120ec52ba3.png", - "aggregators": ["CoinGecko", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x506059317f8db90880a60a6968153ad2424ac38f": { - "address": "0x506059317f8db90880a60a6968153ad2424ac38f", - "symbol": "AGENTCRAFT", - "decimals": 18, - "name": "AgentCraft", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x506059317f8db90880a60a6968153ad2424ac38f.png", - "aggregators": ["CoinGecko", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x494c4cf6c8f971ddfca95184282b86220fab9b07": { - "address": "0x494c4cf6c8f971ddfca95184282b86220fab9b07", - "symbol": "AMPR", - "decimals": 18, - "name": "Amper", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x494c4cf6c8f971ddfca95184282b86220fab9b07.png", - "aggregators": ["CoinGecko", "Rubic", "Rango"], - "occurrences": 3 - }, - "0xe28eb199745904e6083db711ef0f936fd385823d": { - "address": "0xe28eb199745904e6083db711ef0f936fd385823d", - "symbol": "BBB", - "decimals": 18, - "name": "Bubblebid", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xe28eb199745904e6083db711ef0f936fd385823d.png", - "aggregators": ["CoinGecko", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x9a55fab37d4a4f0e13c8fff5470798614af2b8c3": { - "address": "0x9a55fab37d4a4f0e13c8fff5470798614af2b8c3", - "symbol": "BLAZE", - "decimals": 9, - "name": "Blaze", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x9a55fab37d4a4f0e13c8fff5470798614af2b8c3.png", - "aggregators": ["CoinGecko", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x07d15798a67253d76cea61f0ea6f57aedc59dffb": { - "address": "0x07d15798a67253d76cea61f0ea6f57aedc59dffb", - "symbol": "BASED", - "decimals": 18, - "name": "Based Coin", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x07d15798a67253d76cea61f0ea6f57aedc59dffb.png", - "aggregators": ["CoinGecko", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x380337d0180db7d0df76ac4faae2fcea908ee1fc": { - "address": "0x380337d0180db7d0df76ac4faae2fcea908ee1fc", - "symbol": "OTTO", - "decimals": 18, - "name": "Otto AI", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x380337d0180db7d0df76ac4faae2fcea908ee1fc.png", - "aggregators": ["CoinGecko", "Rubic", "Squid"], - "occurrences": 3 - }, - "0x3862ae86889a39d6dd5850e5f467086141834d7b": { - "address": "0x3862ae86889a39d6dd5850e5f467086141834d7b", - "symbol": "HERMES", - "decimals": 18, - "name": "HERMES", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x3862ae86889a39d6dd5850e5f467086141834d7b.png", - "aggregators": ["CoinGecko", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x40ba93835789b9958ed588308c299fa27ddc5838": { - "address": "0x40ba93835789b9958ed588308c299fa27ddc5838", - "symbol": "SUPH", - "decimals": 18, - "name": "SUPAH", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x40ba93835789b9958ed588308c299fa27ddc5838.png", - "aggregators": ["CoinGecko", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x39b4b879b8521d6a8c3a87cda64b969327b7fba3": { - "address": "0x39b4b879b8521d6a8c3a87cda64b969327b7fba3", - "symbol": "TACHI", - "decimals": 18, - "name": "TACHI", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x39b4b879b8521d6a8c3a87cda64b969327b7fba3.png", - "aggregators": ["CoinGecko", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x961d7b43119067015c9dbd1dcef1e82f5b532ba3": { - "address": "0x961d7b43119067015c9dbd1dcef1e82f5b532ba3", - "symbol": "STATE", - "decimals": 18, - "name": "STATE", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x961d7b43119067015c9dbd1dcef1e82f5b532ba3.png", - "aggregators": ["CoinGecko", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x2e2050ba5422eea926a34624a145ea3905379b07": { - "address": "0x2e2050ba5422eea926a34624a145ea3905379b07", - "symbol": "CLAWNET", - "decimals": 18, - "name": "Clawnet", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x2e2050ba5422eea926a34624a145ea3905379b07.png", - "aggregators": ["CoinGecko", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x3977fc913db86b01a257232c568317798b903b07": { - "address": "0x3977fc913db86b01a257232c568317798b903b07", - "symbol": "CODY", - "decimals": 18, - "name": "Cody", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x3977fc913db86b01a257232c568317798b903b07.png", - "aggregators": ["CoinGecko", "Rubic", "Rango"], - "occurrences": 3 - }, - "0xe19e7429ab6c1f9dd391faa88fbb940c7d22f18f": { - "address": "0xe19e7429ab6c1f9dd391faa88fbb940c7d22f18f", - "symbol": "MIO", - "decimals": 18, - "name": "Mio", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xe19e7429ab6c1f9dd391faa88fbb940c7d22f18f.png", - "aggregators": ["CoinGecko", "Rubic", "Rango"], - "occurrences": 3 - }, - "0xcc309867cea3c1cf7c7829838f72ff70d17ceb07": { - "address": "0xcc309867cea3c1cf7c7829838f72ff70d17ceb07", - "symbol": "ASTERION", - "decimals": 18, - "name": "Asterion", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xcc309867cea3c1cf7c7829838f72ff70d17ceb07.png", - "aggregators": ["CoinGecko", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x03f64375f98aaafb617d18ca1e4a9a85a5c74476": { - "address": "0x03f64375f98aaafb617d18ca1e4a9a85a5c74476", - "symbol": "ROCKETAI", - "decimals": 18, - "name": "launchbot", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x03f64375f98aaafb617d18ca1e4a9a85a5c74476.png", - "aggregators": ["CoinGecko", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x20eaba9d6818529cfffa2c1c63b97a02a0049ba3": { - "address": "0x20eaba9d6818529cfffa2c1c63b97a02a0049ba3", - "symbol": "CLERK", - "decimals": 18, - "name": "CLERK", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x20eaba9d6818529cfffa2c1c63b97a02a0049ba3.png", - "aggregators": ["CoinGecko", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x62039061c366433e6d075b78905681c19795313c": { - "address": "0x62039061c366433e6d075b78905681c19795313c", - "symbol": "AIDEV", - "decimals": 18, - "name": "AI Dev Agent", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x62039061c366433e6d075b78905681c19795313c.png", - "aggregators": ["CoinGecko", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x00e701eff4f9dc647f1510f835c5d1ee7e41d28f": { - "address": "0x00e701eff4f9dc647f1510f835c5d1ee7e41d28f", - "symbol": "LOOT", - "decimals": 18, - "name": "MineLoot", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x00e701eff4f9dc647f1510f835c5d1ee7e41d28f.png", - "aggregators": ["CoinGecko", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x0a3a6eef246ed15dbf97f8a237e20a3bc091cba3": { - "address": "0x0a3a6eef246ed15dbf97f8a237e20a3bc091cba3", - "symbol": "0XDP", - "decimals": 18, - "name": "0xDirectPing", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x0a3a6eef246ed15dbf97f8a237e20a3bc091cba3.png", - "aggregators": ["CoinGecko", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x168fc40dba90a07e821abbdbbc1c6d2303e51eda": { - "address": "0x168fc40dba90a07e821abbdbbc1c6d2303e51eda", - "symbol": "PERPY", - "decimals": 18, - "name": "PERPY", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x168fc40dba90a07e821abbdbbc1c6d2303e51eda.png", - "aggregators": ["CoinGecko", "Rubic", "Rango"], - "occurrences": 3 - }, - "0xf27b8ef47842e6445e37804896f1bc5e29381b07": { - "address": "0xf27b8ef47842e6445e37804896f1bc5e29381b07", - "symbol": "DOPPEL", - "decimals": 18, - "name": "Doppel", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xf27b8ef47842e6445e37804896f1bc5e29381b07.png", - "aggregators": ["CoinGecko", "Rubic", "Rango"], - "occurrences": 3 - }, - "0xacb4543f479ea44e6df4fa01e483bb5b78361ba3": { - "address": "0xacb4543f479ea44e6df4fa01e483bb5b78361ba3", - "symbol": "ALEISTER", - "decimals": 18, - "name": "Aleister", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xacb4543f479ea44e6df4fa01e483bb5b78361ba3.png", - "aggregators": ["CoinGecko", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x78de5c914b91ee1a1defd2c617f759e74a896b07": { - "address": "0x78de5c914b91ee1a1defd2c617f759e74a896b07", - "symbol": "BASTR", - "decimals": 18, - "name": "Base Strategy", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x78de5c914b91ee1a1defd2c617f759e74a896b07.png", - "aggregators": ["CoinGecko", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x10c56f005a379f8eafc88ff5c3f40d30f0031ac9": { - "address": "0x10c56f005a379f8eafc88ff5c3f40d30f0031ac9", - "symbol": "SR", - "decimals": 18, - "name": "Strike Robot", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x10c56f005a379f8eafc88ff5c3f40d30f0031ac9.png", - "aggregators": ["CoinGecko", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x288f4eb27400fa220d14b864259ad1b7f77c1594": { - "address": "0x288f4eb27400fa220d14b864259ad1b7f77c1594", - "symbol": "KUDAI", - "decimals": 18, - "name": "Kudai", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x288f4eb27400fa220d14b864259ad1b7f77c1594.png", - "aggregators": ["CoinGecko", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x1da242e0a0e25dfd36f38d7834aa6abd38c8eb07": { - "address": "0x1da242e0a0e25dfd36f38d7834aa6abd38c8eb07", - "symbol": "SAULNET", - "decimals": 18, - "name": "Saul Net", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x1da242e0a0e25dfd36f38d7834aa6abd38c8eb07.png", - "aggregators": ["CoinGecko", "Rubic", "Rango"], - "occurrences": 3 - }, - "0xd655790b0486fa681c23b955f5ca7cd5f5c8cb07": { - "address": "0xd655790b0486fa681c23b955f5ca7cd5f5c8cb07", - "symbol": "BIO", - "decimals": 18, - "name": "Bio Unit 000", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xd655790b0486fa681c23b955f5ca7cd5f5c8cb07.png", - "aggregators": ["CoinGecko", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x164239fa94aec9c4e437bf6890ea8602b759fd74": { - "address": "0x164239fa94aec9c4e437bf6890ea8602b759fd74", - "symbol": "VERONICA", - "decimals": 18, - "name": "VERONICA", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x164239fa94aec9c4e437bf6890ea8602b759fd74.png", - "aggregators": ["CoinGecko", "Rubic", "Squid"], - "occurrences": 3 - }, - "0x36c7d74a2df5e65b7c2fe2d1a70e52da3df1bb07": { - "address": "0x36c7d74a2df5e65b7c2fe2d1a70e52da3df1bb07", - "symbol": "BLARP", - "decimals": 18, - "name": "blarp", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x36c7d74a2df5e65b7c2fe2d1a70e52da3df1bb07.png", - "aggregators": ["CoinGecko", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x4aeddec84df07ddd121f214fbe4c0fa5b33ef3e5": { - "address": "0x4aeddec84df07ddd121f214fbe4c0fa5b33ef3e5", - "symbol": "THETRUTH", - "decimals": 18, - "name": "thetruth.fun", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x4aeddec84df07ddd121f214fbe4c0fa5b33ef3e5.png", - "aggregators": ["CoinGecko", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x2327eba9692cc7fb2119dc1f93389ca752dedb07": { - "address": "0x2327eba9692cc7fb2119dc1f93389ca752dedb07", - "symbol": "SPIRIT", - "decimals": 18, - "name": "Spirit Town", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x2327eba9692cc7fb2119dc1f93389ca752dedb07.png", - "aggregators": ["CoinGecko", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x4798f71719c2ec8e405610f0f886692f97ef8453": { - "address": "0x4798f71719c2ec8e405610f0f886692f97ef8453", - "symbol": "NFTWIZ", - "decimals": 18, - "name": "nftwizard", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x4798f71719c2ec8e405610f0f886692f97ef8453.png", - "aggregators": ["CoinGecko", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x6e1e7f52a9178fa1e9c58810b97d5eb6a8d31198": { - "address": "0x6e1e7f52a9178fa1e9c58810b97d5eb6a8d31198", - "symbol": "UNICLAW", - "decimals": 18, - "name": "Uniclaw", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x6e1e7f52a9178fa1e9c58810b97d5eb6a8d31198.png", - "aggregators": ["CoinGecko", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x9b284910a0abaed70c9f0790bb50ce988f5316d6": { - "address": "0x9b284910a0abaed70c9f0790bb50ce988f5316d6", - "symbol": "AMELIA", - "decimals": 18, - "name": "Amelia", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x9b284910a0abaed70c9f0790bb50ce988f5316d6.png", - "aggregators": ["CoinGecko", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x706e1963ba410a548673b46d694104391fb7dca5": { - "address": "0x706e1963ba410a548673b46d694104391fb7dca5", - "symbol": "BT365", - "decimals": 5, - "name": "BlockTrader365", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x706e1963ba410a548673b46d694104391fb7dca5.png", - "aggregators": ["CoinGecko", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x8c32bcfc720fec35443748a96030ce866d0665ff": { - "address": "0x8c32bcfc720fec35443748a96030ce866d0665ff", - "symbol": "LATENIGHTONBASE", - "decimals": 18, - "name": "latenightonbase", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x8c32bcfc720fec35443748a96030ce866d0665ff.png", - "aggregators": ["CoinGecko", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x92b5fea742ecfd24f1ef41f35497373363599b07": { - "address": "0x92b5fea742ecfd24f1ef41f35497373363599b07", - "symbol": "MOLGE", - "decimals": 18, - "name": "Molt Doge", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x92b5fea742ecfd24f1ef41f35497373363599b07.png", - "aggregators": ["CoinGecko", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x096746e984e57ae9a2922a08fc969bbe76963a72": { - "address": "0x096746e984e57ae9a2922a08fc969bbe76963a72", - "symbol": "SHOW", - "decimals": 18, - "name": "VitaNova by Virtuals", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x096746e984e57ae9a2922a08fc969bbe76963a72.png", - "aggregators": ["CoinGecko", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x1b5e07d4d2f753fa2f7f1940a00e2273c19ecb07": { - "address": "0x1b5e07d4d2f753fa2f7f1940a00e2273c19ecb07", - "symbol": "MOLTROAD", - "decimals": 18, - "name": "Molt Road", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x1b5e07d4d2f753fa2f7f1940a00e2273c19ecb07.png", - "aggregators": ["CoinGecko", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x0e6214f42992683a9177ce65d022f163d7bbd1d2": { - "address": "0x0e6214f42992683a9177ce65d022f163d7bbd1d2", - "symbol": "TRIVI", - "decimals": 18, - "name": "TriviAgent by Virtuals", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x0e6214f42992683a9177ce65d022f163d7bbd1d2.png", - "aggregators": ["CoinGecko", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x7f6f8bb1aa8206921e80ab6abf1ac5737e39ab07": { - "address": "0x7f6f8bb1aa8206921e80ab6abf1ac5737e39ab07", - "symbol": "MACHINES", - "decimals": 18, - "name": "machines-cash", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x7f6f8bb1aa8206921e80ab6abf1ac5737e39ab07.png", - "aggregators": ["CoinGecko", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x315b8c9a1123c10228d469551033440441b41f0b": { - "address": "0x315b8c9a1123c10228d469551033440441b41f0b", - "symbol": "BEATS", - "decimals": 18, - "name": "BEATS on BASE", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x315b8c9a1123c10228d469551033440441b41f0b.png", - "aggregators": ["CoinGecko", "Rubic", "Rango"], - "occurrences": 3 - }, - "0xa1c0decafe3e9bf06a5f29b7015cd373a9854608": { - "address": "0xa1c0decafe3e9bf06a5f29b7015cd373a9854608", - "symbol": "AIPG", - "decimals": 18, - "name": "AI Power Grid", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xa1c0decafe3e9bf06a5f29b7015cd373a9854608.png", - "aggregators": ["CoinGecko", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x09b052085e9c6291fbf0dfb0918c861bcb47eb25": { - "address": "0x09b052085e9c6291fbf0dfb0918c861bcb47eb25", - "symbol": "RICKY", - "decimals": 18, - "name": "Ricky the Raccoon", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x09b052085e9c6291fbf0dfb0918c861bcb47eb25.png", - "aggregators": ["CoinGecko", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x7af77365f112361457aaa76994bda688605f2d9c": { - "address": "0x7af77365f112361457aaa76994bda688605f2d9c", - "symbol": "KURT", - "decimals": 18, - "name": "Kurt", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x7af77365f112361457aaa76994bda688605f2d9c.png", - "aggregators": ["CoinGecko", "Rubic", "Rango"], - "occurrences": 3 - }, - "0xd63f21e7f4205d59c5b486273c42e261d5cd4d1d": { - "address": "0xd63f21e7f4205d59c5b486273c42e261d5cd4d1d", - "symbol": "BLKH", - "decimals": 18, - "name": "BLACK HOLE", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xd63f21e7f4205d59c5b486273c42e261d5cd4d1d.png", - "aggregators": ["CoinGecko", "Rubic", "Squid"], - "occurrences": 3 - }, - "0xca54efb221c78bff5f2f459e596585b88ace8a7f": { - "address": "0xca54efb221c78bff5f2f459e596585b88ace8a7f", - "symbol": "ASYM", - "decimals": 18, - "name": "Asymmetrix", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xca54efb221c78bff5f2f459e596585b88ace8a7f.png", - "aggregators": ["CoinGecko", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x50b95509e8fc9cda3860c2ef80308467ab6534cc": { - "address": "0x50b95509e8fc9cda3860c2ef80308467ab6534cc", - "symbol": "BMMF", - "decimals": 18, - "name": "BMMF", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x50b95509e8fc9cda3860c2ef80308467ab6534cc.png", - "aggregators": ["CoinGecko", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x966edb33649dd33c0dbc915ddf31cd41a07e7a4f": { - "address": "0x966edb33649dd33c0dbc915ddf31cd41a07e7a4f", - "symbol": "BONKEY", - "decimals": 18, - "name": "BONKEY", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x966edb33649dd33c0dbc915ddf31cd41a07e7a4f.png", - "aggregators": ["CoinGecko", "Rubic", "Rango"], - "occurrences": 3 - }, - "0xdfb51ec9941cc684b72dc2b0f532d74a244e4ccf": { - "address": "0xdfb51ec9941cc684b72dc2b0f532d74a244e4ccf", - "symbol": "NOD", - "decimals": 18, - "name": "NOD", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xdfb51ec9941cc684b72dc2b0f532d74a244e4ccf.png", - "aggregators": ["CoinGecko", "Rubic", "Squid"], - "occurrences": 3 - }, - "0x8d760f4fda919a8e9f38237ee003fe8ff0ca9ef7": { - "address": "0x8d760f4fda919a8e9f38237ee003fe8ff0ca9ef7", - "symbol": "JACK", - "decimals": 18, - "name": "JACK", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x8d760f4fda919a8e9f38237ee003fe8ff0ca9ef7.png", - "aggregators": ["CoinGecko", "Rubic", "Rango"], - "occurrences": 3 - }, - "0xc7167e360bd63696a7870c0ef66939e882249f20": { - "address": "0xc7167e360bd63696a7870c0ef66939e882249f20", - "symbol": "RETAIL", - "decimals": 18, - "name": "Retail DAO", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xc7167e360bd63696a7870c0ef66939e882249f20.png", - "aggregators": ["CoinGecko", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x22a61fd45ebd3eded219cb279715a18cf85ebb44": { - "address": "0x22a61fd45ebd3eded219cb279715a18cf85ebb44", - "symbol": "GBM", - "decimals": 18, - "name": "GBM Tokens", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x22a61fd45ebd3eded219cb279715a18cf85ebb44.png", - "aggregators": ["CoinGecko", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x68e284f21d04d4d62398c290ec3ef41c97f80b07": { - "address": "0x68e284f21d04d4d62398c290ec3ef41c97f80b07", - "symbol": "X420", - "decimals": 18, - "name": "x420", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x68e284f21d04d4d62398c290ec3ef41c97f80b07.png", - "aggregators": ["CoinGecko", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x84b9c2be78ad93843c96c106a22f12ccb2cfdb07": { - "address": "0x84b9c2be78ad93843c96c106a22f12ccb2cfdb07", - "symbol": "BUTLER", - "decimals": 18, - "name": "Butler", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x84b9c2be78ad93843c96c106a22f12ccb2cfdb07.png", - "aggregators": ["CoinGecko", "Rubic", "Rango"], - "occurrences": 3 - }, - "0xd839b62b2035c313968965d7a24818bc6a38eb07": { - "address": "0xd839b62b2035c313968965d7a24818bc6a38eb07", - "symbol": "PIPAI", - "decimals": 18, - "name": "pipaitrader", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xd839b62b2035c313968965d7a24818bc6a38eb07.png", - "aggregators": ["CoinGecko", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x194f360d130f2393a5e9f3117a6a1b78abea1624": { - "address": "0x194f360d130f2393a5e9f3117a6a1b78abea1624", - "symbol": "SUMR", - "decimals": 18, - "name": "SummerToken", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x194f360d130f2393a5e9f3117a6a1b78abea1624.png", - "aggregators": ["CoinGecko", "Rubic", "Rango"], - "occurrences": 3 - }, - "0xc29832025e7652ef58d15f7fa3e232a2fdfaab07": { - "address": "0xc29832025e7652ef58d15f7fa3e232a2fdfaab07", - "symbol": "ZOE", - "decimals": 18, - "name": "Zoe", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xc29832025e7652ef58d15f7fa3e232a2fdfaab07.png", - "aggregators": ["CoinGecko", "Rubic", "Rango"], - "occurrences": 3 - }, - "0xef5997c2cf2f6c138196f8a6203afc335206b3c1": { - "address": "0xef5997c2cf2f6c138196f8a6203afc335206b3c1", - "symbol": "OWB", - "decimals": 18, - "name": "OWB", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xef5997c2cf2f6c138196f8a6203afc335206b3c1.png", - "aggregators": ["CoinGecko", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x317621481476554e1cf3f9add06abd70ffb007f4": { - "address": "0x317621481476554e1cf3f9add06abd70ffb007f4", - "symbol": "$ZARD", - "decimals": 18, - "name": "Chadrizard", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x317621481476554e1cf3f9add06abd70ffb007f4.png", - "aggregators": ["CoinGecko", "Rubic", "Rango"], - "occurrences": 3 - }, - "0xa9f6d9eca1f803854a13cecad0f21d43e007db07": { - "address": "0xa9f6d9eca1f803854a13cecad0f21d43e007db07", - "symbol": "BAES", - "decimals": 18, - "name": "Bario Entertainment System", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xa9f6d9eca1f803854a13cecad0f21d43e007db07.png", - "aggregators": ["CoinGecko", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x00dfb58cf6e43ffdfb56a72f7fc6899134f2462b": { - "address": "0x00dfb58cf6e43ffdfb56a72f7fc6899134f2462b", - "symbol": "PRNT", - "decimals": 18, - "name": "Imprnt", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x00dfb58cf6e43ffdfb56a72f7fc6899134f2462b.png", - "aggregators": ["CoinGecko", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x11ff37785b849f38117a7ab2dff766c056d8ba6d": { - "address": "0x11ff37785b849f38117a7ab2dff766c056d8ba6d", - "symbol": "CHARRED", - "decimals": 18, - "name": "CHARRED", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x11ff37785b849f38117a7ab2dff766c056d8ba6d.png", - "aggregators": ["CoinGecko", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x4ff4d349caa028bd069bbe85fa05253f96176741": { - "address": "0x4ff4d349caa028bd069bbe85fa05253f96176741", - "symbol": "SANG", - "decimals": 18, - "name": "Songjam", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x4ff4d349caa028bd069bbe85fa05253f96176741.png", - "aggregators": ["CoinGecko", "Rubic", "Squid"], - "occurrences": 3 - }, - "0xcde80e161dc8a3e5407dd0d25835cd68a6f39f05": { - "address": "0xcde80e161dc8a3e5407dd0d25835cd68a6f39f05", - "symbol": "ICONS", - "decimals": 18, - "name": "icons", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xcde80e161dc8a3e5407dd0d25835cd68a6f39f05.png", - "aggregators": ["CoinGecko", "Rubic", "Rango"], - "occurrences": 3 - }, - "0xa4d5501deaa04807bd5c48e3f2bf3fd9b79a4ba3": { - "address": "0xa4d5501deaa04807bd5c48e3f2bf3fd9b79a4ba3", - "symbol": "CRUDE", - "decimals": 18, - "name": "CRUDE", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xa4d5501deaa04807bd5c48e3f2bf3fd9b79a4ba3.png", - "aggregators": ["CoinGecko", "Rubic", "Rango"], - "occurrences": 3 - }, - "0xdf0e063a72bf51768402ca7f7fe39cb4a4c6ff43": { - "address": "0xdf0e063a72bf51768402ca7f7fe39cb4a4c6ff43", - "symbol": "REI", - "decimals": 18, - "name": "REI AI", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xdf0e063a72bf51768402ca7f7fe39cb4a4c6ff43.png", - "aggregators": ["CoinGecko", "Rubic", "Squid"], - "occurrences": 3 - }, - "0xf0cb96a4011a0a6f73d100c7080bf8020d10f87a": { - "address": "0xf0cb96a4011a0a6f73d100c7080bf8020d10f87a", - "symbol": "MR_LIGHTSPEED", - "decimals": 18, - "name": "mr_lightspeed", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xf0cb96a4011a0a6f73d100c7080bf8020d10f87a.png", - "aggregators": ["CoinGecko", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x38da67e7256e2eec878b6d83a6fb6a4564c98e2d": { - "address": "0x38da67e7256e2eec878b6d83a6fb6a4564c98e2d", - "symbol": "MANYU", - "decimals": 18, - "name": "Based Manyu ", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x38da67e7256e2eec878b6d83a6fb6a4564c98e2d.png", - "aggregators": ["CoinGecko", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x7f5b95eeba26c385baa9a15646fe683fea5684df": { - "address": "0x7f5b95eeba26c385baa9a15646fe683fea5684df", - "symbol": "BERRYBOY", - "decimals": 18, - "name": "Berryboy", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x7f5b95eeba26c385baa9a15646fe683fea5684df.png", - "aggregators": ["CoinGecko", "Rubic", "Rango"], - "occurrences": 3 - }, - "0xc0df50143ea93aec63e38a6ed4e92b378079ea15": { - "address": "0xc0df50143ea93aec63e38a6ed4e92b378079ea15", - "symbol": "RAGE", - "decimals": 18, - "name": "Rage Protocol", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xc0df50143ea93aec63e38a6ed4e92b378079ea15.png", - "aggregators": ["CoinGecko", "Rubic", "Rango"], - "occurrences": 3 - }, - "0xe2f3fae4bc62e21826018364aa30ae45d430bb07": { - "address": "0xe2f3fae4bc62e21826018364aa30ae45d430bb07", - "symbol": "ANTIHUNTER", - "decimals": 18, - "name": "AntiHunter", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xe2f3fae4bc62e21826018364aa30ae45d430bb07.png", - "aggregators": ["CoinGecko", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x7480527815ccae421400da01e052b120cc4255e9": { - "address": "0x7480527815ccae421400da01e052b120cc4255e9", - "symbol": "WORKIE", - "decimals": 18, - "name": "Workie", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x7480527815ccae421400da01e052b120cc4255e9.png", - "aggregators": ["CoinGecko", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x701c8c09fe9f081f9be69ab9af8291c84c09389b": { - "address": "0x701c8c09fe9f081f9be69ab9af8291c84c09389b", - "symbol": "BG", - "decimals": 18, - "name": "Blink Galaxy", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x701c8c09fe9f081f9be69ab9af8291c84c09389b.png", - "aggregators": ["CoinGecko", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x0eda054e27a274323e07023972f47c36693ce5df": { - "address": "0x0eda054e27a274323e07023972f47c36693ce5df", - "symbol": "CUC", - "decimals": 18, - "name": "Cucumber Trade", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x0eda054e27a274323e07023972f47c36693ce5df.png", - "aggregators": ["CoinGecko", "Rubic", "Squid"], - "occurrences": 3 - }, - "0x583edb23e5149cdad7618ea02e298ada51b6bbd3": { - "address": "0x583edb23e5149cdad7618ea02e298ada51b6bbd3", - "symbol": "BABYCLAW", - "decimals": 18, - "name": "Baby Claw", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x583edb23e5149cdad7618ea02e298ada51b6bbd3.png", - "aggregators": ["CoinGecko", "Rubic", "Rango"], - "occurrences": 3 - }, - "0xe42264d3470e2fdd6ec3e288ad57cf254865a941": { - "address": "0xe42264d3470e2fdd6ec3e288ad57cf254865a941", - "symbol": "CLIPCOIN", - "decimals": 18, - "name": "ClipCoin", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xe42264d3470e2fdd6ec3e288ad57cf254865a941.png", - "aggregators": ["CoinGecko", "Rubic", "Rango"], - "occurrences": 3 - }, - "0xa023316fa5c85dadf008c611790b3235433e781e": { - "address": "0xa023316fa5c85dadf008c611790b3235433e781e", - "symbol": "MUTE", - "decimals": 18, - "name": "MUTE SWAP ", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xa023316fa5c85dadf008c611790b3235433e781e.png", - "aggregators": ["CoinGecko", "Rubic", "Squid"], - "occurrences": 3 - }, - "0x5a70be406ce7471a44f0183b8d7091f4ad751db5": { - "address": "0x5a70be406ce7471a44f0183b8d7091f4ad751db5", - "symbol": "SATO", - "decimals": 18, - "name": "SATO", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x5a70be406ce7471a44f0183b8d7091f4ad751db5.png", - "aggregators": ["CoinGecko", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x5f980dcfc4c0fa3911554cf5ab288ed0eb13dba3": { - "address": "0x5f980dcfc4c0fa3911554cf5ab288ed0eb13dba3", - "symbol": "GITLAWB", - "decimals": 18, - "name": "Gitlawb", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x5f980dcfc4c0fa3911554cf5ab288ed0eb13dba3.png", - "aggregators": ["CoinGecko", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x035098c2a3bea5e03b1e08e7140a5369d47bd349": { - "address": "0x035098c2a3bea5e03b1e08e7140a5369d47bd349", - "symbol": "SPN", - "decimals": 18, - "name": "Sapiens AI", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x035098c2a3bea5e03b1e08e7140a5369d47bd349.png", - "aggregators": ["CoinGecko", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x7ffbe850d2d45242efdb914d7d4dbb682d0c9b07": { - "address": "0x7ffbe850d2d45242efdb914d7d4dbb682d0c9b07", - "symbol": "EMBER", - "decimals": 18, - "name": "Ember", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x7ffbe850d2d45242efdb914d7d4dbb682d0c9b07.png", - "aggregators": ["CoinGecko", "Rubic", "Rango"], - "occurrences": 3 - }, - "0xc1de4e664cc6cb54af019264757f47ef45195b07": { - "address": "0xc1de4e664cc6cb54af019264757f47ef45195b07", - "symbol": "DOM", - "decimals": 18, - "name": "Dominion", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xc1de4e664cc6cb54af019264757f47ef45195b07.png", - "aggregators": ["CoinGecko", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x1a9be8a692de04bcb7ce5cddd03afca97d732c62": { - "address": "0x1a9be8a692de04bcb7ce5cddd03afca97d732c62", - "symbol": "YTRYB", - "decimals": 8, - "name": "Yield TRYB", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x1a9be8a692de04bcb7ce5cddd03afca97d732c62.png", - "aggregators": ["CoinGecko", "Rubic", "Sonarwatch"], - "occurrences": 3 - }, - "0xdd2fc771ddab2b787aedfd100a67d8a4754a380c": { - "address": "0xdd2fc771ddab2b787aedfd100a67d8a4754a380c", - "symbol": "TREB", - "decimals": 18, - "name": "Treble", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xdd2fc771ddab2b787aedfd100a67d8a4754a380c.png", - "aggregators": ["CoinGecko", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x3d01fe5a38ddbd307fdd635b4cb0e29681226d6f": { - "address": "0x3d01fe5a38ddbd307fdd635b4cb0e29681226d6f", - "symbol": "ALPHA", - "decimals": 18, - "name": "Alpha", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x3d01fe5a38ddbd307fdd635b4cb0e29681226d6f.png", - "aggregators": ["CoinGecko", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x01e75e59eabf83c85360351a100d22e025a75bc2": { - "address": "0x01e75e59eabf83c85360351a100d22e025a75bc2", - "symbol": "HEIR", - "decimals": 18, - "name": "HEIR", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x01e75e59eabf83c85360351a100d22e025a75bc2.png", - "aggregators": ["CoinGecko", "Rubic", "Rango"], - "occurrences": 3 - }, - "0xafd3a55ae8c86fb550495223f92f1af192e163fd": { - "address": "0xafd3a55ae8c86fb550495223f92f1af192e163fd", - "symbol": "11AM", - "decimals": 18, - "name": "11am", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xafd3a55ae8c86fb550495223f92f1af192e163fd.png", - "aggregators": ["CoinGecko", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x26e0331355df5ef082f69df161218093708a73ac": { - "address": "0x26e0331355df5ef082f69df161218093708a73ac", - "symbol": "CHAOS", - "decimals": 18, - "name": "harmonybot", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x26e0331355df5ef082f69df161218093708a73ac.png", - "aggregators": ["CoinGecko", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x1fc11c079a3432b42f27527a272d1cde7af1a745": { - "address": "0x1fc11c079a3432b42f27527a272d1cde7af1a745", - "symbol": "METALOS", - "decimals": 18, - "name": "Metalos", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x1fc11c079a3432b42f27527a272d1cde7af1a745.png", - "aggregators": ["CoinGecko", "Rubic", "Rango"], - "occurrences": 3 - }, - "0xd63aaeec20f9b74d49f8dd8e319b6edd564a7dd0": { - "address": "0xd63aaeec20f9b74d49f8dd8e319b6edd564a7dd0", - "symbol": "SHOGUN", - "decimals": 18, - "name": "Shogun", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xd63aaeec20f9b74d49f8dd8e319b6edd564a7dd0.png", - "aggregators": ["CoinGecko", "Rubic", "Rango"], - "occurrences": 3 - }, - "0xb233bdffd437e60fa451f62c6c09d3804d285ba3": { - "address": "0xb233bdffd437e60fa451f62c6c09d3804d285ba3", - "symbol": "NOOK", - "decimals": 18, - "name": "Nookplot", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xb233bdffd437e60fa451f62c6c09d3804d285ba3.png", - "aggregators": ["CoinGecko", "Rubic", "Rango"], - "occurrences": 3 - }, - "0xd6a34b430c05ac78c24985f8abee2616bc1788cb": { - "address": "0xd6a34b430c05ac78c24985f8abee2616bc1788cb", - "symbol": "UAVAX", - "decimals": 18, - "name": "Avalanche (Universal)", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xd6a34b430c05ac78c24985f8abee2616bc1788cb.png", - "aggregators": ["CoinGecko", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x797f214a2cd64a4963a91fa21c8c55ec3eba4714": { - "address": "0x797f214a2cd64a4963a91fa21c8c55ec3eba4714", - "symbol": "SIBYL", - "decimals": 18, - "name": "SIBYL", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x797f214a2cd64a4963a91fa21c8c55ec3eba4714.png", - "aggregators": ["CoinGecko", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x73582df1cad3187cd0746b7a473d65c06386837e": { - "address": "0x73582df1cad3187cd0746b7a473d65c06386837e", - "symbol": "DEUS", - "decimals": 18, - "name": "DEUS", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x73582df1cad3187cd0746b7a473d65c06386837e.png", - "aggregators": ["CoinGecko", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x2387b01ef6221a0c0f2d18d51943aa632e2d0201": { - "address": "0x2387b01ef6221a0c0f2d18d51943aa632e2d0201", - "symbol": "GUNDA", - "decimals": 18, - "name": "GUNDA", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x2387b01ef6221a0c0f2d18d51943aa632e2d0201.png", - "aggregators": ["CoinGecko", "Rubic", "Rango"], - "occurrences": 3 - }, - "0xb56b5269c03421765c28aa61037536ea5690741c": { - "address": "0xb56b5269c03421765c28aa61037536ea5690741c", - "symbol": "DESSAI", - "decimals": 18, - "name": "DessalinesAI by Virtuals", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xb56b5269c03421765c28aa61037536ea5690741c.png", - "aggregators": ["CoinGecko", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x81eb920f9b46298b39552fdaf147597ba2a70b07": { - "address": "0x81eb920f9b46298b39552fdaf147597ba2a70b07", - "symbol": "EPEG", - "decimals": 18, - "name": "ePEG", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x81eb920f9b46298b39552fdaf147597ba2a70b07.png", - "aggregators": ["CoinGecko", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x885a590198e5f0947f4c92db815cf2a2147980b8": { - "address": "0x885a590198e5f0947f4c92db815cf2a2147980b8", - "symbol": "BASESHAKE", - "decimals": 18, - "name": "BaseShake", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x885a590198e5f0947f4c92db815cf2a2147980b8.png", - "aggregators": ["CoinGecko", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x20ef84969f6d81ff74ae4591c331858b20ad82cd": { - "address": "0x20ef84969f6d81ff74ae4591c331858b20ad82cd", - "symbol": "AISTR", - "decimals": 18, - "name": "AicroStrategy", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x20ef84969f6d81ff74ae4591c331858b20ad82cd.png", - "aggregators": ["CoinGecko", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x8972ab69d499b5537a31576725f0af8f67203d38": { - "address": "0x8972ab69d499b5537a31576725f0af8f67203d38", - "symbol": "REKT", - "decimals": 18, - "name": "REKT", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x8972ab69d499b5537a31576725f0af8f67203d38.png", - "aggregators": ["CoinGecko", "Rubic", "Rango"], - "occurrences": 3 - }, - "0xe9d139df6212fde346ec650e83039f322018f60d": { - "address": "0xe9d139df6212fde346ec650e83039f322018f60d", - "symbol": "TKFG", - "decimals": 18, - "name": "tokenforge", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xe9d139df6212fde346ec650e83039f322018f60d.png", - "aggregators": ["CoinGecko", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x44f77502418c9b225ad8f80a9def915c8c271a19": { - "address": "0x44f77502418c9b225ad8f80a9def915c8c271a19", - "symbol": "CATCH", - "decimals": 18, - "name": "catchcoin", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x44f77502418c9b225ad8f80a9def915c8c271a19.png", - "aggregators": ["CoinGecko", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x84a9183c9d11146d8e6a820dfc675a61b11eadeb": { - "address": "0x84a9183c9d11146d8e6a820dfc675a61b11eadeb", - "symbol": "BASEDHYPE", - "decimals": 18, - "name": "BasedHype", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x84a9183c9d11146d8e6a820dfc675a61b11eadeb.png", - "aggregators": ["CoinGecko", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x2615a94df961278dcbc41fb0a54fec5f10a693ae": { - "address": "0x2615a94df961278dcbc41fb0a54fec5f10a693ae", - "symbol": "UXRP", - "decimals": 18, - "name": "XRP (Universal)", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x2615a94df961278dcbc41fb0a54fec5f10a693ae.png", - "aggregators": ["CoinGecko", "Rubic", "Rango"], - "occurrences": 3 - }, - "0xcb5ff7331193c45f61f05b035ddabe08f13f6ba3": { - "address": "0xcb5ff7331193c45f61f05b035ddabe08f13f6ba3", - "symbol": "OPENAGENTMARKET", - "decimals": 18, - "name": "openagentmarket", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xcb5ff7331193c45f61f05b035ddabe08f13f6ba3.png", - "aggregators": ["CoinGecko", "Rubic", "Rango"], - "occurrences": 3 - }, - "0xab646ee997975b97851a923e4e8daf4ea36d1e9b": { - "address": "0xab646ee997975b97851a923e4e8daf4ea36d1e9b", - "symbol": "FISH", - "decimals": 4, - "name": "Angland FISH", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xab646ee997975b97851a923e4e8daf4ea36d1e9b.png", - "aggregators": ["CoinGecko", "Rubic", "Rango"], - "occurrences": 3 - }, - "0xa7d812832091e06144abeaf0a8540e25d1b36b07": { - "address": "0xa7d812832091e06144abeaf0a8540e25d1b36b07", - "symbol": "VOLM", - "decimals": 18, - "name": "VOLM", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xa7d812832091e06144abeaf0a8540e25d1b36b07.png", - "aggregators": ["CoinGecko", "Rubic", "Rango"], - "occurrences": 3 - }, - "0xb695559b26bb2c9703ef1935c37aeae9526bab07": { - "address": "0xb695559b26bb2c9703ef1935c37aeae9526bab07", - "symbol": "MOLT", - "decimals": 18, - "name": "Moltbook", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xb695559b26bb2c9703ef1935c37aeae9526bab07.png", - "aggregators": ["CoinGecko", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x0000000000f6a4a20f4d340a1c3f3040ac5a255c": { - "address": "0x0000000000f6a4a20f4d340a1c3f3040ac5a255c", - "symbol": "HYPR", - "decimals": 18, - "name": "HYPR", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x0000000000f6a4a20f4d340a1c3f3040ac5a255c.png", - "aggregators": ["CoinGecko", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x558881c4959e9cf961a7e1815fcd6586906babd2": { - "address": "0x558881c4959e9cf961a7e1815fcd6586906babd2", - "symbol": "BACK", - "decimals": 18, - "name": "Silverback", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x558881c4959e9cf961a7e1815fcd6586906babd2.png", - "aggregators": ["CoinGecko", "Rubic", "Squid"], - "occurrences": 3 - }, - "0x5d0dd05bb095fdd6af4865a1adf97c39c85ad2d8": { - "address": "0x5d0dd05bb095fdd6af4865a1adf97c39c85ad2d8", - "symbol": "KILT", - "decimals": 18, - "name": "KILT Protocol", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x5d0dd05bb095fdd6af4865a1adf97c39c85ad2d8.png", - "aggregators": ["CoinGecko", "Rubic", "Rango"], - "occurrences": 3 - }, - "0xfc48314ad4ad5bd36a84e8307b86a68a01d95d9c": { - "address": "0xfc48314ad4ad5bd36a84e8307b86a68a01d95d9c", - "symbol": "AION", - "decimals": 18, - "name": "AION 5100", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xfc48314ad4ad5bd36a84e8307b86a68a01d95d9c.png", - "aggregators": ["CoinGecko", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x7ffd8f91b0b1b5c7a2e6c7c9efb8be0a71885b07": { - "address": "0x7ffd8f91b0b1b5c7a2e6c7c9efb8be0a71885b07", - "symbol": "ARGUE", - "decimals": 18, - "name": "ARGUE", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x7ffd8f91b0b1b5c7a2e6c7c9efb8be0a71885b07.png", - "aggregators": ["CoinGecko", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x620e617adbd41608f858d4191282945e67724b07": { - "address": "0x620e617adbd41608f858d4191282945e67724b07", - "symbol": "COAT", - "decimals": 18, - "name": "COAT DOG", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x620e617adbd41608f858d4191282945e67724b07.png", - "aggregators": ["CoinGecko", "Rubic", "Rango"], - "occurrences": 3 - }, - "0xe88419a3fc78364cfe3de88080ee4853fab754c6": { - "address": "0xe88419a3fc78364cfe3de88080ee4853fab754c6", - "symbol": "ROBA", - "decimals": 18, - "name": "Roba", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xe88419a3fc78364cfe3de88080ee4853fab754c6.png", - "aggregators": ["CoinGecko", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x2f6c17fa9f9bc3600346ab4e48c0701e1d5962ae": { - "address": "0x2f6c17fa9f9bc3600346ab4e48c0701e1d5962ae", - "symbol": "FARTCOIN", - "decimals": 18, - "name": "Based Fartcoin", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x2f6c17fa9f9bc3600346ab4e48c0701e1d5962ae.png", - "aggregators": ["CoinGecko", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x7750741868cc4a865d9c0f619e6e642fd61f642f": { - "address": "0x7750741868cc4a865d9c0f619e6e642fd61f642f", - "symbol": "MEM", - "decimals": 18, - "name": "Memory", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x7750741868cc4a865d9c0f619e6e642fd61f642f.png", - "aggregators": ["CoinGecko", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x2b5050f01d64fbb3e4ac44dc07f0732bfb5ecadf": { - "address": "0x2b5050f01d64fbb3e4ac44dc07f0732bfb5ecadf", - "symbol": "QR", - "decimals": 18, - "name": "QR coin", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x2b5050f01d64fbb3e4ac44dc07f0732bfb5ecadf.png", - "aggregators": ["CoinGecko", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x680bc6ed5c7222e2f29bdbc87f8e8f3400d8ce04": { - "address": "0x680bc6ed5c7222e2f29bdbc87f8e8f3400d8ce04", - "symbol": "EAT", - "decimals": 18, - "name": "WYDE: End Hunger", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x680bc6ed5c7222e2f29bdbc87f8e8f3400d8ce04.png", - "aggregators": ["CoinGecko", "Rubic", "Rango"], - "occurrences": 3 - }, - "0xe99d2f7988c5f2d013a34e7484f079cab87f469f": { - "address": "0xe99d2f7988c5f2d013a34e7484f079cab87f469f", - "symbol": "01111010011110000110001001110100", - "decimals": 18, - "name": "01111010011110000110001001110100", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xe99d2f7988c5f2d013a34e7484f079cab87f469f.png", - "aggregators": ["CoinGecko", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x02537463e57a44f861ee861ba4f590c413f984a6": { - "address": "0x02537463e57a44f861ee861ba4f590c413f984a6", - "symbol": "BROAK", - "decimals": 18, - "name": "Broak on Base", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x02537463e57a44f861ee861ba4f590c413f984a6.png", - "aggregators": ["CoinGecko", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x95308ec85a48376f253f36720355a54808c7857b": { - "address": "0x95308ec85a48376f253f36720355a54808c7857b", - "symbol": "SPH", - "decimals": 18, - "name": "Sophia", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x95308ec85a48376f253f36720355a54808c7857b.png", - "aggregators": ["CoinGecko", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x132b99d96d4ac9efc05f62f8aa4fc68a82121bc0": { - "address": "0x132b99d96d4ac9efc05f62f8aa4fc68a82121bc0", - "symbol": "WHITEWHALE", - "decimals": 18, - "name": "The Based White Whale", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x132b99d96d4ac9efc05f62f8aa4fc68a82121bc0.png", - "aggregators": ["CoinGecko", "Rubic", "Rango"], - "occurrences": 3 - }, - "0xd85c31854c2b0fb40aaa9e2fc4da23c21f829d46": { - "address": "0xd85c31854c2b0fb40aaa9e2fc4da23c21f829d46", - "symbol": "PING", - "decimals": 18, - "name": "Ping", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xd85c31854c2b0fb40aaa9e2fc4da23c21f829d46.png", - "aggregators": ["CoinGecko", "LiFi", "Rubic"], - "occurrences": 3 - }, - "0x5d54725b48d2c8badf5f6046c71c3ffb73e26228": { - "address": "0x5d54725b48d2c8badf5f6046c71c3ffb73e26228", - "symbol": "BOOKIE", - "decimals": 18, - "name": "Bookie AI", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x5d54725b48d2c8badf5f6046c71c3ffb73e26228.png", - "aggregators": ["CoinGecko", "Rubic", "Squid"], - "occurrences": 3 - }, - "0xd4f5fa1de763a9a13568aae59b92ea49976be56a": { - "address": "0xd4f5fa1de763a9a13568aae59b92ea49976be56a", - "symbol": "BASED", - "decimals": 14, - "name": "Based Meme", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xd4f5fa1de763a9a13568aae59b92ea49976be56a.png", - "aggregators": ["CoinGecko", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x0ba5ed329d073a847ec3d54ac767f7e099c29bb2": { - "address": "0x0ba5ed329d073a847ec3d54ac767f7e099c29bb2", - "symbol": "MOG", - "decimals": 18, - "name": "Based Mog Coin", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x0ba5ed329d073a847ec3d54ac767f7e099c29bb2.png", - "aggregators": ["CoinGecko", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x6965084966592a76f80adadc5138eb23f18f1ed6": { - "address": "0x6965084966592a76f80adadc5138eb23f18f1ed6", - "symbol": "THUG", - "decimals": 9, - "name": "THUG", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x6965084966592a76f80adadc5138eb23f18f1ed6.png", - "aggregators": ["CoinGecko", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x2531ec1720e5d1bc82052585271d4be3f43e392f": { - "address": "0x2531ec1720e5d1bc82052585271d4be3f43e392f", - "symbol": "BOBR", - "decimals": 18, - "name": "Based BOBR", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x2531ec1720e5d1bc82052585271d4be3f43e392f.png", - "aggregators": ["CoinGecko", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x53c2b279877806b6af67137217670764597a121b": { - "address": "0x53c2b279877806b6af67137217670764597a121b", - "symbol": "SPYAI", - "decimals": 18, - "name": "SPY AI AGENT", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x53c2b279877806b6af67137217670764597a121b.png", - "aggregators": ["CoinGecko", "Rubic", "Squid"], - "occurrences": 3 - }, - "0xb96cfc6f81f85c58a1eccdd9ec2ad940e2cb8453": { - "address": "0xb96cfc6f81f85c58a1eccdd9ec2ad940e2cb8453", - "symbol": "AYB", - "decimals": 18, - "name": "All Your Base", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xb96cfc6f81f85c58a1eccdd9ec2ad940e2cb8453.png", - "aggregators": ["CoinGecko", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x396ffad9469e3d3e3fc4061b79acce2ad0ce4b9e": { - "address": "0x396ffad9469e3d3e3fc4061b79acce2ad0ce4b9e", - "symbol": "BETTER", - "decimals": 18, - "name": "BETTER", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x396ffad9469e3d3e3fc4061b79acce2ad0ce4b9e.png", - "aggregators": ["CoinGecko", "Rubic", "Rango"], - "occurrences": 3 - }, - "0xf950a97689cef428cb8ba703da7f958534b21566": { - "address": "0xf950a97689cef428cb8ba703da7f958534b21566", - "symbol": "FARCATS", - "decimals": 18, - "name": "farcats", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xf950a97689cef428cb8ba703da7f958534b21566.png", - "aggregators": ["CoinGecko", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x07a4e518e93e88409675db2a5ece5fdfbcaf549b": { - "address": "0x07a4e518e93e88409675db2a5ece5fdfbcaf549b", - "symbol": "BLLM", - "decimals": 18, - "name": "Based LLMs Arena", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x07a4e518e93e88409675db2a5ece5fdfbcaf549b.png", - "aggregators": ["CoinGecko", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x5d3772ce50dedca695197373f858bfb324e32e5a": { - "address": "0x5d3772ce50dedca695197373f858bfb324e32e5a", - "symbol": "RUNWAGO", - "decimals": 18, - "name": "Runwago", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x5d3772ce50dedca695197373f858bfb324e32e5a.png", - "aggregators": ["CoinGecko", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x38bd574d791a438921de91b88793254e83c97290": { - "address": "0x38bd574d791a438921de91b88793254e83c97290", - "symbol": "CDPANDA", - "decimals": 18, - "name": "Coinbase Mascot", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x38bd574d791a438921de91b88793254e83c97290.png", - "aggregators": ["CoinGecko", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x5ba9e0ce610927c1915c9d9de4bdaf2b8a1dee7e": { - "address": "0x5ba9e0ce610927c1915c9d9de4bdaf2b8a1dee7e", - "symbol": "FMT", - "decimals": 18, - "name": "Finger Monkeys Token", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x5ba9e0ce610927c1915c9d9de4bdaf2b8a1dee7e.png", - "aggregators": ["CoinGecko", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x1c93d155bd388241f9ab5df500d69eb529ce9583": { - "address": "0x1c93d155bd388241f9ab5df500d69eb529ce9583", - "symbol": "FLNCHY", - "decimals": 18, - "name": "Flaunchy", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x1c93d155bd388241f9ab5df500d69eb529ce9583.png", - "aggregators": ["CoinGecko", "Rubic", "Rango"], - "occurrences": 3 - }, - "0xfb1b73a861104b36049d1b6c0a0eb76a608ce5f7": { - "address": "0xfb1b73a861104b36049d1b6c0a0eb76a608ce5f7", - "symbol": "PRML", - "decimals": 18, - "name": "PrimeLayer", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xfb1b73a861104b36049d1b6c0a0eb76a608ce5f7.png", - "aggregators": ["CoinGecko", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x28743c20b1dec3a31bb2a21f8ccd045dd074912e": { - "address": "0x28743c20b1dec3a31bb2a21f8ccd045dd074912e", - "symbol": "GDK", - "decimals": 18, - "name": "Golden Donkey", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x28743c20b1dec3a31bb2a21f8ccd045dd074912e.png", - "aggregators": ["CoinGecko", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x67c5f00491c09cbcf6359f95690574e6106bb3cf": { - "address": "0x67c5f00491c09cbcf6359f95690574e6106bb3cf", - "symbol": "CC0COMPANY", - "decimals": 18, - "name": "cc0company", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x67c5f00491c09cbcf6359f95690574e6106bb3cf.png", - "aggregators": ["CoinGecko", "Rubic", "Rango"], - "occurrences": 3 - }, - "0xd3f68c6e8aee820569d58adf8d85d94489315192": { - "address": "0xd3f68c6e8aee820569d58adf8d85d94489315192", - "symbol": "$RDAC", - "decimals": 18, - "name": "Redacted Coin", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xd3f68c6e8aee820569d58adf8d85d94489315192.png", - "aggregators": ["CoinGecko", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x9a4d496a08b2df2b1b115d2cdf9c0a5629384b07": { - "address": "0x9a4d496a08b2df2b1b115d2cdf9c0a5629384b07", - "symbol": "WTF?", - "decimals": 18, - "name": "What The Firkin?", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x9a4d496a08b2df2b1b115d2cdf9c0a5629384b07.png", - "aggregators": ["CoinGecko", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x1d2fbee7994d7018af52252a97b0deab4ee4f2f8": { - "address": "0x1d2fbee7994d7018af52252a97b0deab4ee4f2f8", - "symbol": "JEFFKIRDEIKIS", - "decimals": 18, - "name": "jeffkirdeikis", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x1d2fbee7994d7018af52252a97b0deab4ee4f2f8.png", - "aggregators": ["CoinGecko", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x7e2734515b6da78182d8cad69e7f275ea28bd687": { - "address": "0x7e2734515b6da78182d8cad69e7f275ea28bd687", - "symbol": "TRADED", - "decimals": 18, - "name": "traded", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x7e2734515b6da78182d8cad69e7f275ea28bd687.png", - "aggregators": ["CoinGecko", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x83190636c344cf1220ffcbfc0c1198f7867b3667": { - "address": "0x83190636c344cf1220ffcbfc0c1198f7867b3667", - "symbol": "JMX", - "decimals": 18, - "name": "JOOCE Memecoin Index", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x83190636c344cf1220ffcbfc0c1198f7867b3667.png", - "aggregators": ["CoinGecko", "Rubic", "Rango"], - "occurrences": 3 - }, - "0xfca9fc2cb2dde04732ad07e4bb73db8cc8bfed1d": { - "address": "0xfca9fc2cb2dde04732ad07e4bb73db8cc8bfed1d", - "symbol": "GAPPY", - "decimals": 18, - "name": "Gap Tooth Lizard", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xfca9fc2cb2dde04732ad07e4bb73db8cc8bfed1d.png", - "aggregators": ["CoinGecko", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x911abc29f0dbdec68c01d58d67877887b5e651d8": { - "address": "0x911abc29f0dbdec68c01d58d67877887b5e651d8", - "symbol": "DVD", - "decimals": 18, - "name": "DeVoid", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x911abc29f0dbdec68c01d58d67877887b5e651d8.png", - "aggregators": ["CoinGecko", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x59081d974a0c635fae3e8195f34f879b591b6519": { - "address": "0x59081d974a0c635fae3e8195f34f879b591b6519", - "symbol": "K2", - "decimals": 18, - "name": "K2", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x59081d974a0c635fae3e8195f34f879b591b6519.png", - "aggregators": ["CoinGecko", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x9f5d8ee0d47296e4e78f2ea2a544917a31c501e2": { - "address": "0x9f5d8ee0d47296e4e78f2ea2a544917a31c501e2", - "symbol": "DOG8004", - "decimals": 18, - "name": "8004 Dog", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x9f5d8ee0d47296e4e78f2ea2a544917a31c501e2.png", - "aggregators": ["CoinGecko", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x78aca94075efdfa7220cd7aae02ac1488a8c5134": { - "address": "0x78aca94075efdfa7220cd7aae02ac1488a8c5134", - "symbol": "KART", - "decimals": 18, - "name": "Henlo Kart", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x78aca94075efdfa7220cd7aae02ac1488a8c5134.png", - "aggregators": ["CoinGecko", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x4fe0dec6790f5f380b671142ad229219c16afe0e": { - "address": "0x4fe0dec6790f5f380b671142ad229219c16afe0e", - "symbol": "ZAIA", - "decimals": 18, - "name": "Zaia", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x4fe0dec6790f5f380b671142ad229219c16afe0e.png", - "aggregators": ["CoinGecko", "Rubic", "Squid"], - "occurrences": 3 - }, - "0xc17dda248e2d50fc006d8febb5a406dd31972712": { - "address": "0xc17dda248e2d50fc006d8febb5a406dd31972712", - "symbol": "ANY", - "decimals": 18, - "name": "Anyspend", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xc17dda248e2d50fc006d8febb5a406dd31972712.png", - "aggregators": ["CoinGecko", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x44551ca46fa5592bb572e20043f7c3d54c85cad7": { - "address": "0x44551ca46fa5592bb572e20043f7c3d54c85cad7", - "symbol": "CLX", - "decimals": 18, - "name": "Clanker Index", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x44551ca46fa5592bb572e20043f7c3d54c85cad7.png", - "aggregators": ["CoinGecko", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x69da011296a3a68d33bcfbca078e0be3b7d77b07": { - "address": "0x69da011296a3a68d33bcfbca078e0be3b7d77b07", - "symbol": "EMERGE", - "decimals": 18, - "name": "Emerge", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x69da011296a3a68d33bcfbca078e0be3b7d77b07.png", - "aggregators": ["CoinGecko", "Rubic", "Rango"], - "occurrences": 3 - }, - "0xac0e8f7e3df7239f5d0f0ae55cf85962d007cc5f": { - "address": "0xac0e8f7e3df7239f5d0f0ae55cf85962d007cc5f", - "symbol": "SPRDD", - "decimals": 18, - "name": "SPREDD Forecast Markets", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xac0e8f7e3df7239f5d0f0ae55cf85962d007cc5f.png", - "aggregators": ["CoinGecko", "Rubic", "Squid"], - "occurrences": 3 - }, - "0xef553b6914dbd17567393f7e55fbd773fff7d0cb": { - "address": "0xef553b6914dbd17567393f7e55fbd773fff7d0cb", - "symbol": "BOGE", - "decimals": 18, - "name": "Boge", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xef553b6914dbd17567393f7e55fbd773fff7d0cb.png", - "aggregators": ["CoinGecko", "Rubic", "Rango"], - "occurrences": 3 - }, - "0xa4bbac7ed5bda8ec71a1af5ee84d4c5a737bd875": { - "address": "0xa4bbac7ed5bda8ec71a1af5ee84d4c5a737bd875", - "symbol": "SMOL", - "decimals": 18, - "name": "SMOL", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xa4bbac7ed5bda8ec71a1af5ee84d4c5a737bd875.png", - "aggregators": ["CoinGecko", "Rubic", "Rango"], - "occurrences": 3 - }, - "0xc2fe3206b74d943ceadc187da6c5dbd1f63e2765": { - "address": "0xc2fe3206b74d943ceadc187da6c5dbd1f63e2765", - "symbol": "QUANT", - "decimals": 18, - "name": "QuantFun", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xc2fe3206b74d943ceadc187da6c5dbd1f63e2765.png", - "aggregators": ["CoinGecko", "Rubic", "Squid"], - "occurrences": 3 - }, - "0x5855da52aeb60a73088967a2d90c4891984a0465": { - "address": "0x5855da52aeb60a73088967a2d90c4891984a0465", - "symbol": "ICCM", - "decimals": 18, - "name": "ICCM", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x5855da52aeb60a73088967a2d90c4891984a0465.png", - "aggregators": ["CoinGecko", "Rubic", "Rango"], - "occurrences": 3 - }, - "0xf9575da3331b0d03d6e8d840c9ba5c181c0b3b07": { - "address": "0xf9575da3331b0d03d6e8d840c9ba5c181c0b3b07", - "symbol": "LOTRY", - "decimals": 18, - "name": "Lotry", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xf9575da3331b0d03d6e8d840c9ba5c181c0b3b07.png", - "aggregators": ["CoinGecko", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x3b3cd21242ba44e9865b066e5ef5d1cc1030cc58": { - "address": "0x3b3cd21242ba44e9865b066e5ef5d1cc1030cc58", - "symbol": "STREME", - "decimals": 18, - "name": "Streme", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x3b3cd21242ba44e9865b066e5ef5d1cc1030cc58.png", - "aggregators": ["CoinGecko", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x588ac26f61d5aedcb3a2e903e65da5f5f95cab24": { - "address": "0x588ac26f61d5aedcb3a2e903e65da5f5f95cab24", - "symbol": "SPACE", - "decimals": 18, - "name": "Space Token", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x588ac26f61d5aedcb3a2e903e65da5f5f95cab24.png", - "aggregators": ["CoinGecko", "Rubic", "Rango"], - "occurrences": 3 - }, - "0xe1bfa25468af64e366ddafc9d91bcc6c97439a14": { - "address": "0xe1bfa25468af64e366ddafc9d91bcc6c97439a14", - "symbol": "MIRROR", - "decimals": 18, - "name": "Mirror Token", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xe1bfa25468af64e366ddafc9d91bcc6c97439a14.png", - "aggregators": ["CoinGecko", "Rubic", "Rango"], - "occurrences": 3 - }, - "0xedb6970b7be5a522cff14c8b679a2d813ff97b4d": { - "address": "0xedb6970b7be5a522cff14c8b679a2d813ff97b4d", - "symbol": "SURGE", - "decimals": 18, - "name": "Surge", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xedb6970b7be5a522cff14c8b679a2d813ff97b4d.png", - "aggregators": ["CoinGecko", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x56f8ad6112c2db9f9848243531b277ce1c3be30c": { - "address": "0x56f8ad6112c2db9f9848243531b277ce1c3be30c", - "symbol": "DOCKERZXBT", - "decimals": 18, - "name": "dockerzxbt", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x56f8ad6112c2db9f9848243531b277ce1c3be30c.png", - "aggregators": ["CoinGecko", "Rubic", "Rango"], - "occurrences": 3 - }, - "0xd2a530170d71a9cfe1651fb468e2b98f7ed7456b": { - "address": "0xd2a530170d71a9cfe1651fb468e2b98f7ed7456b", - "symbol": "AUDF", - "decimals": 6, - "name": "Forte AUD", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xd2a530170d71a9cfe1651fb468e2b98f7ed7456b.png", - "aggregators": ["CoinGecko", "Rubic", "Rango"], - "occurrences": 3 - }, - "0xc47da4cb96ce65a96844a01bfae509f9d5454534": { - "address": "0xc47da4cb96ce65a96844a01bfae509f9d5454534", - "symbol": "JPYT", - "decimals": 6, - "name": "Dephaser JPY", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xc47da4cb96ce65a96844a01bfae509f9d5454534.png", - "aggregators": ["CoinGecko", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x5305ba038217c391af7e79f6f653c8cbc433deba": { - "address": "0x5305ba038217c391af7e79f6f653c8cbc433deba", - "symbol": "ANLOG", - "decimals": 12, - "name": "Analog", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x5305ba038217c391af7e79f6f653c8cbc433deba.png", - "aggregators": ["CoinGecko", "Rubic", "Rango"], - "occurrences": 3 - }, - "0xe2f9db0186b13668aec9fe0e15dbd13004ed8d6f": { - "address": "0xe2f9db0186b13668aec9fe0e15dbd13004ed8d6f", - "symbol": "YNE", - "decimals": 6, - "name": "YNE", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xe2f9db0186b13668aec9fe0e15dbd13004ed8d6f.png", - "aggregators": ["CoinGecko", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x5a0f93d040de44e78f251b03c43be9cf317dcf64": { - "address": "0x5a0f93d040de44e78f251b03c43be9cf317dcf64", - "symbol": "JAAA", - "decimals": 6, - "name": "JAAA", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x5a0f93d040de44e78f251b03c43be9cf317dcf64.png", - "aggregators": ["CoinGecko", "Rubic", "Rango"], - "occurrences": 3 - }, - "0xf516562b703f46084eeb79afe58cc046572e56a7": { - "address": "0xf516562b703f46084eeb79afe58cc046572e56a7", - "symbol": "AI", - "decimals": 18, - "name": "AI PIN", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xf516562b703f46084eeb79afe58cc046572e56a7.png", - "aggregators": ["CoinGecko", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x8c213ee79581ff4984583c6a801e5263418c4b86": { - "address": "0x8c213ee79581ff4984583c6a801e5263418c4b86", - "symbol": "JTRSY", - "decimals": 6, - "name": "JTRSY", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x8c213ee79581ff4984583c6a801e5263418c4b86.png", - "aggregators": ["CoinGecko", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x032d86656db142138ac97d2c5c4e3766e8c0482d": { - "address": "0x032d86656db142138ac97d2c5c4e3766e8c0482d", - "symbol": "ALLO", - "decimals": 18, - "name": "ALLO", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x032d86656db142138ac97d2c5c4e3766e8c0482d.png", - "aggregators": ["CoinGecko", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x5fe872bf640e06380b848976c7927827a0f2a3ce": { - "address": "0x5fe872bf640e06380b848976c7927827a0f2a3ce", - "symbol": "ƎԀƎԀ", - "decimals": 9, - "name": "ƎԀƎԀ", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x5fe872bf640e06380b848976c7927827a0f2a3ce.png", - "aggregators": ["CoinGecko", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x370923d39f139c64813f173a1bf0b4f9ba36a24f": { - "address": "0x370923d39f139c64813f173a1bf0b4f9ba36a24f", - "symbol": "KRWT", - "decimals": 18, - "name": "KRWT", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x370923d39f139c64813f173a1bf0b4f9ba36a24f.png", - "aggregators": ["CoinGecko", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x17906b1cd88aa8efaefc5e82891b52a22219bd45": { - "address": "0x17906b1cd88aa8efaefc5e82891b52a22219bd45", - "symbol": "SUPR", - "decimals": 18, - "name": "Superseed", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x17906b1cd88aa8efaefc5e82891b52a22219bd45.png", - "aggregators": ["CoinGecko", "Rubic", "Rango"], - "occurrences": 3 - }, - "0xd02f50e1017f493ffffa70c8fcf09e349e11d6c9": { - "address": "0xd02f50e1017f493ffffa70c8fcf09e349e11d6c9", - "symbol": "DGLD", - "decimals": 18, - "name": "DGLD", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xd02f50e1017f493ffffa70c8fcf09e349e11d6c9.png", - "aggregators": ["CoinGecko", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x3ed03e95dd894235090b3d4a49e0c3239edce59e": { - "address": "0x3ed03e95dd894235090b3d4a49e0c3239edce59e", - "symbol": "MYRC", - "decimals": 18, - "name": "MYRC", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x3ed03e95dd894235090b3d4a49e0c3239edce59e.png", - "aggregators": ["CoinGecko", "Rubic", "Rango"], - "occurrences": 3 - }, - "0xf4bdd7042f4ea505838c2d432c787beb9f603274": { - "address": "0xf4bdd7042f4ea505838c2d432c787beb9f603274", - "symbol": "WXM", - "decimals": 18, - "name": "WXM", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xf4bdd7042f4ea505838c2d432c787beb9f603274.png", - "aggregators": ["CoinGecko", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x2e8f83541ab39c8451b3e557a19be531a59ddecc": { - "address": "0x2e8f83541ab39c8451b3e557a19be531a59ddecc", - "symbol": "WJUNO", - "decimals": 8, - "name": "JunoCash", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x2e8f83541ab39c8451b3e557a19be531a59ddecc.png", - "aggregators": ["CoinGecko", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x0c76e9c9e391055e75eb2413d718a4bc7a037972": { - "address": "0x0c76e9c9e391055e75eb2413d718a4bc7a037972", - "symbol": "FUELX", - "decimals": 18, - "name": "Fuel", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x0c76e9c9e391055e75eb2413d718a4bc7a037972.png", - "aggregators": ["CoinGecko", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x9a574ea719b5e69df7c783d15c9514a26f3faf53": { - "address": "0x9a574ea719b5e69df7c783d15c9514a26f3faf53", - "symbol": "RWAI", - "decimals": 18, - "name": "RWAI by Virtuals", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x9a574ea719b5e69df7c783d15c9514a26f3faf53.png", - "aggregators": ["CoinGecko", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x0dc28efba8c6e0c14fa7391636b8bec86c4c83d6": { - "address": "0x0dc28efba8c6e0c14fa7391636b8bec86c4c83d6", - "symbol": "BSB", - "decimals": 18, - "name": "Block Street", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x0dc28efba8c6e0c14fa7391636b8bec86c4c83d6.png", - "aggregators": ["CoinGecko", "Rubic", "Rango"], - "occurrences": 3 - }, - "0xa992ffb0c9b753307b9704079c61db4e405deffd": { - "address": "0xa992ffb0c9b753307b9704079c61db4e405deffd", - "symbol": "COA", - "decimals": 18, - "name": "COA", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xa992ffb0c9b753307b9704079c61db4e405deffd.png", - "aggregators": ["CoinGecko", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x22833bd616fae02c369c40523c77f00ddeca5761": { - "address": "0x22833bd616fae02c369c40523c77f00ddeca5761", - "symbol": "BTC.ℏ[BASE]", - "decimals": 8, - "name": "BTC.ℏ[BASE]", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x22833bd616fae02c369c40523c77f00ddeca5761.png", - "aggregators": ["CoinGecko", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x0a776c1c22b8b8e7eab346744daa33722b80fda4": { - "address": "0x0a776c1c22b8b8e7eab346744daa33722b80fda4", - "symbol": "ZKP", - "decimals": 18, - "name": "ZKP", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x0a776c1c22b8b8e7eab346744daa33722b80fda4.png", - "aggregators": ["CoinGecko", "Rubic", "Rango"], - "occurrences": 3 - }, - "0xac3fe22294beaed9d1fd752323a6d06d12ff3098": { - "address": "0xac3fe22294beaed9d1fd752323a6d06d12ff3098", - "symbol": "VNXAU", - "decimals": 18, - "name": "VNXAU", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xac3fe22294beaed9d1fd752323a6d06d12ff3098.png", - "aggregators": ["CoinGecko", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x40461291347e1ecbb09499f3371d3f17f10d7159": { - "address": "0x40461291347e1ecbb09499f3371d3f17f10d7159", - "symbol": "SUEDE", - "decimals": 18, - "name": "Johnny Suede", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x40461291347e1ecbb09499f3371d3f17f10d7159.png", - "aggregators": ["CoinGecko", "Rubic", "Rango"], - "occurrences": 3 - }, - "0xdefa1d21c5f1cbeac00eeb54b44c7d86467cc3a3": { - "address": "0xdefa1d21c5f1cbeac00eeb54b44c7d86467cc3a3", - "symbol": "ALMANAK", - "decimals": 18, - "name": "ALMANAK", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xdefa1d21c5f1cbeac00eeb54b44c7d86467cc3a3.png", - "aggregators": ["CoinGecko", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x3898257dd2cd6d2a3b6e3435f73568a725262b9b": { - "address": "0x3898257dd2cd6d2a3b6e3435f73568a725262b9b", - "symbol": "MBTC", - "decimals": 18, - "name": "MAGA Bitcoin", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x3898257dd2cd6d2a3b6e3435f73568a725262b9b.png", - "aggregators": ["CoinGecko", "Rubic", "Rango"], - "occurrences": 3 - }, - "0xbc33b4d48f76d17a1800afcb730e8a6aaada7fe5": { - "address": "0xbc33b4d48f76d17a1800afcb730e8a6aaada7fe5", - "symbol": "VDOT", - "decimals": 18, - "name": "Voucher DOT", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xbc33b4d48f76d17a1800afcb730e8a6aaada7fe5.png", - "aggregators": ["CoinGecko", "Rubic", "Sonarwatch"], - "occurrences": 3 - }, - "0xd4423795fd904d9b87554940a95fb7016f172773": { - "address": "0xd4423795fd904d9b87554940a95fb7016f172773", - "symbol": "AIN", - "decimals": 18, - "name": "AIN", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xd4423795fd904d9b87554940a95fb7016f172773.png", - "aggregators": ["CoinGecko", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x6f8c1de07c9e59a8289705b1033af383dc3681b1": { - "address": "0x6f8c1de07c9e59a8289705b1033af383dc3681b1", - "symbol": "XCCX", - "decimals": 6, - "name": "BlockChainCoinX", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x6f8c1de07c9e59a8289705b1033af383dc3681b1.png", - "aggregators": ["CoinGecko", "Rubic", "Rango"], - "occurrences": 3 - }, - "0xaeb4bb7debd1e5e82266f7c3b5cff56b3a7bf411": { - "address": "0xaeb4bb7debd1e5e82266f7c3b5cff56b3a7bf411", - "symbol": "VGBP", - "decimals": 18, - "name": "VNX British Pound", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xaeb4bb7debd1e5e82266f7c3b5cff56b3a7bf411.png", - "aggregators": ["CoinGecko", "Rubic", "Rango"], - "occurrences": 3 - }, - "0xa0ff877e3d4f3a108b1b3d5eb3e4369301d2b2d7": { - "address": "0xa0ff877e3d4f3a108b1b3d5eb3e4369301d2b2d7", - "symbol": "W🍖", - "decimals": 3, - "name": "Unicorn Meat", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xa0ff877e3d4f3a108b1b3d5eb3e4369301d2b2d7.png", - "aggregators": ["CoinGecko", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x5fc2843838e65eb0b5d33654628f446d54602791": { - "address": "0x5fc2843838e65eb0b5d33654628f446d54602791", - "symbol": "FXH", - "decimals": 18, - "name": "fxhash", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x5fc2843838e65eb0b5d33654628f446d54602791.png", - "aggregators": ["CoinGecko", "Rubic", "Rango"], - "occurrences": 3 - }, - "0xa15d5c95b7c0eecac06f673ad390ad6066705af7": { - "address": "0xa15d5c95b7c0eecac06f673ad390ad6066705af7", - "symbol": "NAV", - "decimals": 18, - "name": "NAVFinance", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xa15d5c95b7c0eecac06f673ad390ad6066705af7.png", - "aggregators": ["CoinGecko", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x27f6c8289550fce67f6b50bed1f519966afe5287": { - "address": "0x27f6c8289550fce67f6b50bed1f519966afe5287", - "symbol": "TGBP", - "decimals": 18, - "name": "TGBP", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x27f6c8289550fce67f6b50bed1f519966afe5287.png", - "aggregators": ["CoinGecko", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x00312400303d02c323295f6e8b7309bc30fb6bce": { - "address": "0x00312400303d02c323295f6e8b7309bc30fb6bce", - "symbol": "ERA", - "decimals": 18, - "name": "Caldera", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x00312400303d02c323295f6e8b7309bc30fb6bce.png", - "aggregators": ["CoinGecko", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x1eefd52f6e218f262da7b0089b9e343a1eb5c9f4": { - "address": "0x1eefd52f6e218f262da7b0089b9e343a1eb5c9f4", - "symbol": "SHRUB", - "decimals": 18, - "name": "SHRUB", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x1eefd52f6e218f262da7b0089b9e343a1eb5c9f4.png", - "aggregators": ["CoinGecko", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x5dd1a7a369e8273371d2dbf9d83356057088082c": { - "address": "0x5dd1a7a369e8273371d2dbf9d83356057088082c", - "symbol": "FT", - "decimals": 18, - "name": "FT", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x5dd1a7a369e8273371d2dbf9d83356057088082c.png", - "aggregators": ["CoinGecko", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x59f680f431f5280e7662b96f2dfa195d1693852d": { - "address": "0x59f680f431f5280e7662b96f2dfa195d1693852d", - "symbol": "MAG", - "decimals": 18, - "name": "Magnify Cash", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x59f680f431f5280e7662b96f2dfa195d1693852d.png", - "aggregators": ["CoinGecko", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x6bd83abc39391af1e24826e90237c4bd3468b5d2": { - "address": "0x6bd83abc39391af1e24826e90237c4bd3468b5d2", - "symbol": "SLC", - "decimals": 18, - "name": "SLC", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x6bd83abc39391af1e24826e90237c4bd3468b5d2.png", - "aggregators": ["CoinGecko", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x7e5fe1e587a5c38b4a4a9ba38a35096f8ea35aac": { - "address": "0x7e5fe1e587a5c38b4a4a9ba38a35096f8ea35aac", - "symbol": "AGENT", - "decimals": 0, - "name": "AGENT", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x7e5fe1e587a5c38b4a4a9ba38a35096f8ea35aac.png", - "aggregators": ["CoinGecko", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x58d6e314755c2668f3d7358cc7a7a06c4314b238": { - "address": "0x58d6e314755c2668f3d7358cc7a7a06c4314b238", - "symbol": "RIZZ", - "decimals": 6, - "name": "SigmaGyattOhioFanumSkibidiGooner", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x58d6e314755c2668f3d7358cc7a7a06c4314b238.png", - "aggregators": ["CoinGecko", "Rubic", "Rango"], - "occurrences": 3 - }, - "0xb9926b3fbc5873db0182016d55727d5ae89e5efd": { - "address": "0xb9926b3fbc5873db0182016d55727d5ae89e5efd", - "symbol": "APU", - "decimals": 18, - "name": "APU", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xb9926b3fbc5873db0182016d55727d5ae89e5efd.png", - "aggregators": ["CoinGecko", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x1cdb2aeb2123dd3c56b4a1e28ddfe1a0c1f9f45d": { - "address": "0x1cdb2aeb2123dd3c56b4a1e28ddfe1a0c1f9f45d", - "symbol": "GMAC", - "decimals": 18, - "name": "Gemach", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x1cdb2aeb2123dd3c56b4a1e28ddfe1a0c1f9f45d.png", - "aggregators": ["CoinGecko", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x4ed9df25d38795a47f52614126e47f564d37f347": { - "address": "0x4ed9df25d38795a47f52614126e47f564d37f347", - "symbol": "VEUR", - "decimals": 18, - "name": "VEUR", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x4ed9df25d38795a47f52614126e47f564d37f347.png", - "aggregators": ["CoinGecko", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x60c230c38af6d86b0277a98a1caeaa345a7b061f": { - "address": "0x60c230c38af6d86b0277a98a1caeaa345a7b061f", - "symbol": "FIABTC", - "decimals": 8, - "name": "Fiamma BTC", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x60c230c38af6d86b0277a98a1caeaa345a7b061f.png", - "aggregators": ["CoinGecko", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x4a9f3ed92892c0168dc194ec3867f8316288b32a": { - "address": "0x4a9f3ed92892c0168dc194ec3867f8316288b32a", - "symbol": "ELON", - "decimals": 18, - "name": "Dogelon Mars", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x4a9f3ed92892c0168dc194ec3867f8316288b32a.png", - "aggregators": ["CoinGecko", "Rubic", "Rango"], - "occurrences": 3 - }, - "0xbb146326778227a8498b105a18f84e0987a684b4": { - "address": "0xbb146326778227a8498b105a18f84e0987a684b4", - "symbol": "ASK", - "decimals": 18, - "name": "ASK", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xbb146326778227a8498b105a18f84e0987a684b4.png", - "aggregators": ["CoinGecko", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x86856814e74456893cfc8946bedcbb472b5fa856": { - "address": "0x86856814e74456893cfc8946bedcbb472b5fa856", - "symbol": "GLDT", - "decimals": 8, - "name": "GLDT", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x86856814e74456893cfc8946bedcbb472b5fa856.png", - "aggregators": ["CoinGecko", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x19e8d59ff3d7a31289e0dc04db48d43b02c7ffa6": { - "address": "0x19e8d59ff3d7a31289e0dc04db48d43b02c7ffa6", - "symbol": "CYS", - "decimals": 18, - "name": "CYS", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x19e8d59ff3d7a31289e0dc04db48d43b02c7ffa6.png", - "aggregators": ["CoinGecko", "Rubic", "Rango"], - "occurrences": 3 - }, - "0xa0a8481fc246cd12f75227abb96220ff5360fad3": { - "address": "0xa0a8481fc246cd12f75227abb96220ff5360fad3", - "symbol": "CMC20", - "decimals": 18, - "name": "CoinMarketCap 20 Index DTF", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xa0a8481fc246cd12f75227abb96220ff5360fad3.png", - "aggregators": ["CoinGecko", "Rubic", "Rango"], - "occurrences": 3 - }, - "0xedacc73ae9f73235934f72a43388404e4a2c4a24": { - "address": "0xedacc73ae9f73235934f72a43388404e4a2c4a24", - "symbol": "REACT", - "decimals": 18, - "name": "REACT", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xedacc73ae9f73235934f72a43388404e4a2c4a24.png", - "aggregators": ["CoinGecko", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x5a75a61032143575067de2b38ef38d601976091e": { - "address": "0x5a75a61032143575067de2b38ef38d601976091e", - "symbol": "SHARBI", - "decimals": 18, - "name": "Sharbi", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x5a75a61032143575067de2b38ef38d601976091e.png", - "aggregators": ["CoinGecko", "Rubic", "Rango"], - "occurrences": 3 - }, - "0xf4f447e6afa04c9d11ef0e2fc0d7f19c24ee55de": { - "address": "0xf4f447e6afa04c9d11ef0e2fc0d7f19c24ee55de", - "symbol": "VYUSD", - "decimals": 18, - "name": "VYUSD", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xf4f447e6afa04c9d11ef0e2fc0d7f19c24ee55de.png", - "aggregators": ["CoinGecko", "Rubic", "Rango"], - "occurrences": 3 - }, - "0xb5068ad7e4ad8f7fe2fcf5abe2c043ab8866569c": { - "address": "0xb5068ad7e4ad8f7fe2fcf5abe2c043ab8866569c", - "symbol": "PEPE", - "decimals": 18, - "name": "Pepe Community", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xb5068ad7e4ad8f7fe2fcf5abe2c043ab8866569c.png", - "aggregators": ["Metamask", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x33dce4097b75b3c35dd8149e3efb6d9486c950cd": { - "address": "0x33dce4097b75b3c35dd8149e3efb6d9486c950cd", - "symbol": "ABE", - "decimals": 18, - "name": "Abe", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x33dce4097b75b3c35dd8149e3efb6d9486c950cd.png", - "aggregators": ["CoinGecko", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x0dc4f92879b7670e5f4e4e6e3c801d229129d90d": { - "address": "0x0dc4f92879b7670e5f4e4e6e3c801d229129d90d", - "symbol": "WARS", - "decimals": 18, - "name": "Argentine Peso", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x0dc4f92879b7670e5f4e4e6e3c801d229129d90d.png", - "aggregators": ["Metamask", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x863b7364a29daa23c9fcbd02e27d129a8b185891": { - "address": "0x863b7364a29daa23c9fcbd02e27d129a8b185891", - "symbol": "SFI", - "decimals": 18, - "name": "Singularity Finance", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x863b7364a29daa23c9fcbd02e27d129a8b185891.png", - "aggregators": ["CoinGecko", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x96419929d7949d6a801a6909c145c8eef6a40431": { - "address": "0x96419929d7949d6a801a6909c145c8eef6a40431", - "symbol": "SPEC", - "decimals": 18, - "name": "Spectral Token", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x96419929d7949d6a801a6909c145c8eef6a40431.png", - "aggregators": ["CoinGecko", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x2a6eb279117bfdcc069c3a272cd3911d88635162": { - "address": "0x2a6eb279117bfdcc069c3a272cd3911d88635162", - "symbol": "GC[BASE]", - "decimals": 6, - "name": "GCoin", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x2a6eb279117bfdcc069c3a272cd3911d88635162.png", - "aggregators": ["CoinGecko", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x4e21eabf4fc4cf66f10a93395e4b0e2438de81a6": { - "address": "0x4e21eabf4fc4cf66f10a93395e4b0e2438de81a6", - "symbol": "RAIN", - "decimals": 18, - "name": "RAIN", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x4e21eabf4fc4cf66f10a93395e4b0e2438de81a6.png", - "aggregators": ["CoinGecko", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x599899dbaa0b4d3110b53d1a4d05fcdcb1c81945": { - "address": "0x599899dbaa0b4d3110b53d1a4d05fcdcb1c81945", - "symbol": "MOONED", - "decimals": 18, - "name": "MoonEdge Token", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x599899dbaa0b4d3110b53d1a4d05fcdcb1c81945.png", - "aggregators": ["CoinGecko", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x9b6a1d4fa5d90e5f2d34130053978d14cd301d58": { - "address": "0x9b6a1d4fa5d90e5f2d34130053978d14cd301d58", - "symbol": "DN", - "decimals": 18, - "name": "DN", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x9b6a1d4fa5d90e5f2d34130053978d14cd301d58.png", - "aggregators": ["CoinGecko", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x48acdfacc520cd50da3a5824e794daac5677363e": { - "address": "0x48acdfacc520cd50da3a5824e794daac5677363e", - "symbol": "ANI", - "decimals": 18, - "name": "ANI Token", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x48acdfacc520cd50da3a5824e794daac5677363e.png", - "aggregators": ["CoinGecko", "Rubic", "Rango"], - "occurrences": 3 - }, - "0xde184c7228430cca03a4a5792234a6fc99728ef1": { - "address": "0xde184c7228430cca03a4a5792234a6fc99728ef1", - "symbol": "ZYPTO", - "decimals": 18, - "name": "Zypto Token", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xde184c7228430cca03a4a5792234a6fc99728ef1.png", - "aggregators": ["CoinGecko", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x491b67a94ec0a59b81b784f4719d0387c4510c36": { - "address": "0x491b67a94ec0a59b81b784f4719d0387c4510c36", - "symbol": "PF", - "decimals": 18, - "name": "PF", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x491b67a94ec0a59b81b784f4719d0387c4510c36.png", - "aggregators": ["CoinGecko", "Rubic", "Rango"], - "occurrences": 3 - }, - "0xcafe5de18756817d98f4603f6828397406d4cafe": { - "address": "0xcafe5de18756817d98f4603f6828397406d4cafe", - "symbol": "WIT", - "decimals": 9, - "name": "Witnet", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xcafe5de18756817d98f4603f6828397406d4cafe.png", - "aggregators": ["CoinGecko", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x9208d82f121806a34a39bb90733b4c5c54f3993e": { - "address": "0x9208d82f121806a34a39bb90733b4c5c54f3993e", - "symbol": "BAP3X", - "decimals": 18, - "name": "bAP3X", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x9208d82f121806a34a39bb90733b4c5c54f3993e.png", - "aggregators": ["CoinGecko", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x9b56b112bbd6343a8961a093315a9a60b8cb1f36": { - "address": "0x9b56b112bbd6343a8961a093315a9a60b8cb1f36", - "symbol": "PEAQ", - "decimals": 18, - "name": "PeaqOFT", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x9b56b112bbd6343a8961a093315a9a60b8cb1f36.png", - "aggregators": ["CoinGecko", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x6ad12e761b438bea3ea09f6c6266556bb24c2181": { - "address": "0x6ad12e761b438bea3ea09f6c6266556bb24c2181", - "symbol": "BDX", - "decimals": 9, - "name": "BDX", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x6ad12e761b438bea3ea09f6c6266556bb24c2181.png", - "aggregators": ["CoinGecko", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x3073f7aaa4db83f95e9fff17424f71d4751a3073": { - "address": "0x3073f7aaa4db83f95e9fff17424f71d4751a3073", - "symbol": "MOVE", - "decimals": 8, - "name": "MOVE", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x3073f7aaa4db83f95e9fff17424f71d4751a3073.png", - "aggregators": ["CoinGecko", "Rubic", "Rango"], - "occurrences": 3 - }, - "0xc5fed7c8ccc75d8a72b601a66dffd7a489073f0b": { - "address": "0xc5fed7c8ccc75d8a72b601a66dffd7a489073f0b", - "symbol": "ACU", - "decimals": 12, - "name": "ACU", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xc5fed7c8ccc75d8a72b601a66dffd7a489073f0b.png", - "aggregators": ["CoinGecko", "Rubic", "Rango"], - "occurrences": 3 - }, - "0xecff4d80f54cf55c626e52f304a8891645961e72": { - "address": "0xecff4d80f54cf55c626e52f304a8891645961e72", - "symbol": "DAG", - "decimals": 8, - "name": "DAG", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xecff4d80f54cf55c626e52f304a8891645961e72.png", - "aggregators": ["CoinGecko", "Rubic", "Rango"], - "occurrences": 3 - }, - "0xf1572d1da5c3cce14ee5a1c9327d17e9ff0e3f43": { - "address": "0xf1572d1da5c3cce14ee5a1c9327d17e9ff0e3f43", - "symbol": "MAGIC", - "decimals": 18, - "name": "MAGIC", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xf1572d1da5c3cce14ee5a1c9327d17e9ff0e3f43.png", - "aggregators": ["CoinGecko", "Rubic", "Rango"], - "occurrences": 3 - }, - "0xc2d09cf86b9ff43cb29ef8ddca57a4eb4410d5f3": { - "address": "0xc2d09cf86b9ff43cb29ef8ddca57a4eb4410d5f3", - "symbol": "GTBTC", - "decimals": 8, - "name": "GTBTC", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xc2d09cf86b9ff43cb29ef8ddca57a4eb4410d5f3.png", - "aggregators": ["CoinGecko", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x4d5cb527bd9d87c727b6dbe01114adc086e646a2": { - "address": "0x4d5cb527bd9d87c727b6dbe01114adc086e646a2", - "symbol": "RX", - "decimals": 18, - "name": "RX", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x4d5cb527bd9d87c727b6dbe01114adc086e646a2.png", - "aggregators": ["LiFi", "Rubic", "Rango"], - "occurrences": 3 - }, - "0xe9185ee218cae427af7b9764a011bb89fea761b4": { - "address": "0xe9185ee218cae427af7b9764a011bb89fea761b4", - "symbol": "BRZ", - "decimals": 18, - "name": "BRZ Token", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xe9185ee218cae427af7b9764a011bb89fea761b4.png", - "aggregators": ["LiFi", "Socket", "Rubic"], - "occurrences": 3 - }, - "0xa0e430870c4604ccfc7b38ca7845b1ff653d0ff1": { - "address": "0xa0e430870c4604ccfc7b38ca7845b1ff653d0ff1", - "symbol": "MWETH", - "decimals": 18, - "name": "MWETH", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xa0e430870c4604ccfc7b38ca7845b1ff653d0ff1.png", - "aggregators": ["LiFi", "Rubic", "Rango"], - "occurrences": 3 - }, - "0xd38b305cac06990c0887032a02c03d6839f770a8": { - "address": "0xd38b305cac06990c0887032a02c03d6839f770a8", - "symbol": "LGCT", - "decimals": 18, - "name": "LGCT", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xd38b305cac06990c0887032a02c03d6839f770a8.png", - "aggregators": ["LiFi", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x7ad5fc8935065b980124e2c227b0bca9d751c807": { - "address": "0x7ad5fc8935065b980124e2c227b0bca9d751c807", - "symbol": "BIDS", - "decimals": 18, - "name": "BIDS", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x7ad5fc8935065b980124e2c227b0bca9d751c807.png", - "aggregators": ["LiFi", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x474cb5b5087e13ea006e13702e330c93c825ab5d": { - "address": "0x474cb5b5087e13ea006e13702e330c93c825ab5d", - "symbol": "MF", - "decimals": 18, - "name": "Make Fun", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x474cb5b5087e13ea006e13702e330c93c825ab5d.png", - "aggregators": ["LiFi", "Rubic", "Rango"], - "occurrences": 3 - }, - "0xa88a1ed0bac18727a615299ce5f557b8220a33d7": { - "address": "0xa88a1ed0bac18727a615299ce5f557b8220a33d7", - "symbol": "WCROTCH", - "decimals": 18, - "name": "CROTCH", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xa88a1ed0bac18727a615299ce5f557b8220a33d7.png", - "aggregators": ["LiFi", "Rubic", "Rango"], - "occurrences": 3 - }, - "0xd2e92077ad4d7d50d7d60be13fffe3fb52cc0b9f": { - "address": "0xd2e92077ad4d7d50d7d60be13fffe3fb52cc0b9f", - "symbol": "ZEREBRO", - "decimals": 18, - "name": "zerebro", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xd2e92077ad4d7d50d7d60be13fffe3fb52cc0b9f.png", - "aggregators": ["LiFi", "Rubic", "Squid"], - "occurrences": 3 - }, - "0xf2a81609cb1da12139488d19512371c8930b8161": { - "address": "0xf2a81609cb1da12139488d19512371c8930b8161", - "symbol": "LABS", - "decimals": 18, - "name": "LABS", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xf2a81609cb1da12139488d19512371c8930b8161.png", - "aggregators": ["LiFi", "Rubic", "Rango"], - "occurrences": 3 - }, - "0xaa61bb7777bd01b684347961918f1e07fbbce7cf": { - "address": "0xaa61bb7777bd01b684347961918f1e07fbbce7cf", - "symbol": "ZKC", - "decimals": 18, - "name": "ZK Coin", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xaa61bb7777bd01b684347961918f1e07fbbce7cf.png", - "aggregators": ["LiFi", "Socket", "Rango"], - "occurrences": 3 - }, - "0x58ed4fd0c3d930b674ba50a293f03ef6cd7de7a3": { - "address": "0x58ed4fd0c3d930b674ba50a293f03ef6cd7de7a3", - "symbol": "ARX", - "decimals": 18, - "name": "ArbiDex Token", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x58ed4fd0c3d930b674ba50a293f03ef6cd7de7a3.png", - "aggregators": ["LiFi", "Rubic", "Squid"], - "occurrences": 3 - }, - "0xc6c1be6c6d828f9cea70f1b8351879510fbf0065": { - "address": "0xc6c1be6c6d828f9cea70f1b8351879510fbf0065", - "symbol": "ZKP", - "decimals": 18, - "name": "zkPass", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xc6c1be6c6d828f9cea70f1b8351879510fbf0065.png", - "aggregators": ["LiFi", "Socket", "Rango"], - "occurrences": 3 - }, - "0xe6baa3fedb5dc88b2c59ba4812388bb0906d19db": { - "address": "0xe6baa3fedb5dc88b2c59ba4812388bb0906d19db", - "symbol": "NCT", - "decimals": 18, - "name": "PolySwarm", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xe6baa3fedb5dc88b2c59ba4812388bb0906d19db.png", - "aggregators": ["LiFi", "Socket", "Rango"], - "occurrences": 3 - }, - "0x2dbe0d779c7a04f7a5de83326973effe23356930": { - "address": "0x2dbe0d779c7a04f7a5de83326973effe23356930", - "symbol": "FOX", - "decimals": 18, - "name": "ShapeShift FOX", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x2dbe0d779c7a04f7a5de83326973effe23356930.png", - "aggregators": ["LiFi", "Socket", "Rango"], - "occurrences": 3 - }, - "0xddb293bb5c5258f7484a94a0fbd5c8b2f6e4e376": { - "address": "0xddb293bb5c5258f7484a94a0fbd5c8b2f6e4e376", - "symbol": "BKN", - "decimals": 18, - "name": "Brickken", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xddb293bb5c5258f7484a94a0fbd5c8b2f6e4e376.png", - "aggregators": ["Socket", "Rubic", "Rango"], - "occurrences": 3 - }, - "0xe2b21d4684b2ba62f3be1fe286eacb90d26e394d": { - "address": "0xe2b21d4684b2ba62f3be1fe286eacb90d26e394d", - "symbol": "COC", - "decimals": 18, - "name": "CryptoOracle Collective", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xe2b21d4684b2ba62f3be1fe286eacb90d26e394d.png", - "aggregators": ["Socket", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x6af3cb766d6cd37449bfd321d961a61b0515c1bc": { - "address": "0x6af3cb766d6cd37449bfd321d961a61b0515c1bc", - "symbol": "RAZOR", - "decimals": 18, - "name": "RAZOR", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x6af3cb766d6cd37449bfd321d961a61b0515c1bc.png", - "aggregators": ["Socket", "Rubic", "Rango"], - "occurrences": 3 - }, - "0xd5c3a723e63a0ecab81081c26c6a3c4b2634bf85": { - "address": "0xd5c3a723e63a0ecab81081c26c6a3c4b2634bf85", - "symbol": "WOJAK", - "decimals": 18, - "name": "Based Wojak", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xd5c3a723e63a0ecab81081c26c6a3c4b2634bf85.png", - "aggregators": ["Socket", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x3a115f568c4b3d0c6e239b2e8f3d4cda3798f536": { - "address": "0x3a115f568c4b3d0c6e239b2e8f3d4cda3798f536", - "symbol": "IDLE", - "decimals": 18, - "name": "Idle Network", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x3a115f568c4b3d0c6e239b2e8f3d4cda3798f536.png", - "aggregators": ["Socket", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x938171227ece879267122a36847b219cbd3b9d47": { - "address": "0x938171227ece879267122a36847b219cbd3b9d47", - "symbol": "AI", - "decimals": 18, - "name": "AI Protocol", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x938171227ece879267122a36847b219cbd3b9d47.png", - "aggregators": ["Rubic", "Rango", "Sonarwatch"], - "occurrences": 3 - }, - "0x8217aef424b8ed7279d90ec29315a6295dc73d16": { - "address": "0x8217aef424b8ed7279d90ec29315a6295dc73d16", - "symbol": "AIRTOK", - "decimals": 18, - "name": "Airtok", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x8217aef424b8ed7279d90ec29315a6295dc73d16.png", - "aggregators": ["Rubic", "Rango", "Sonarwatch"], - "occurrences": 3 - }, - "0x988a17d9ef5683dc125de54ae4cd217c4c26454f": { - "address": "0x988a17d9ef5683dc125de54ae4cd217c4c26454f", - "symbol": "APED", - "decimals": 18, - "name": "Aped", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x988a17d9ef5683dc125de54ae4cd217c4c26454f.png", - "aggregators": ["Rubic", "Rango", "Sonarwatch"], - "occurrences": 3 - }, - "0x1cbb39da9e815483ed44ec918d6f8dfb828f3a06": { - "address": "0x1cbb39da9e815483ed44ec918d6f8dfb828f3a06", - "symbol": "$TINYP", - "decimals": 18, - "name": "Tiny Panda", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x1cbb39da9e815483ed44ec918d6f8dfb828f3a06.png", - "aggregators": ["Rubic", "Rango", "Sonarwatch"], - "occurrences": 3 - }, - "0x80f45eacf6537498ecc660e4e4a2d2f99e195cf4": { - "address": "0x80f45eacf6537498ecc660e4e4a2d2f99e195cf4", - "symbol": "PEPE", - "decimals": 18, - "name": "Pepe on Base", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x80f45eacf6537498ecc660e4e4a2d2f99e195cf4.png", - "aggregators": ["Rubic", "Rango", "Sonarwatch"], - "occurrences": 3 - }, - "0xb4e1b230dd0476238fc64c99ff9d6ccdfdb2258d": { - "address": "0xb4e1b230dd0476238fc64c99ff9d6ccdfdb2258d", - "symbol": "FFM", - "decimals": 18, - "name": "Florence Finance Medici", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xb4e1b230dd0476238fc64c99ff9d6ccdfdb2258d.png", - "aggregators": ["Rubic", "Rango", "Sonarwatch"], - "occurrences": 3 - }, - "0x387627b2bceb9ba5b476f6597727a7acf47f5b6c": { - "address": "0x387627b2bceb9ba5b476f6597727a7acf47f5b6c", - "symbol": "YT", - "decimals": 18, - "name": "YapTrade", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x387627b2bceb9ba5b476f6597727a7acf47f5b6c.png", - "aggregators": ["Rubic", "Rango", "Sonarwatch"], - "occurrences": 3 - }, - "0xef0fd52e65ddcdc201e2055a94d2abff6ff10a7a": { - "address": "0xef0fd52e65ddcdc201e2055a94d2abff6ff10a7a", - "symbol": "WANDER", - "decimals": 18, - "name": "WANDER", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xef0fd52e65ddcdc201e2055a94d2abff6ff10a7a.png", - "aggregators": ["Rubic", "Rango", "Sonarwatch"], - "occurrences": 3 - }, - "0xd3c68968137317a57a9babeacc7707ec433548b4": { - "address": "0xd3c68968137317a57a9babeacc7707ec433548b4", - "symbol": "SOCIAL", - "decimals": 18, - "name": "Phavercoin", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xd3c68968137317a57a9babeacc7707ec433548b4.png", - "aggregators": ["Rubic", "Rango", "Sonarwatch"], - "occurrences": 3 - }, - "0xefb4898df7353af68aae3fa365a8fc5b40dc12d9": { - "address": "0xefb4898df7353af68aae3fa365a8fc5b40dc12d9", - "symbol": "JUNI", - "decimals": 18, - "name": "Just Juni by Virtuals", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xefb4898df7353af68aae3fa365a8fc5b40dc12d9.png", - "aggregators": ["Rubic", "Squid", "Rango"], - "occurrences": 3 - }, - "0x01aac2b594f7bdbec740f0f1aa22910ebb4b74ab": { - "address": "0x01aac2b594f7bdbec740f0f1aa22910ebb4b74ab", - "symbol": "UNIO", - "decimals": 18, - "name": "Unio Coin", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x01aac2b594f7bdbec740f0f1aa22910ebb4b74ab.png", - "aggregators": ["Rubic", "Rango", "Sonarwatch"], - "occurrences": 3 - }, - "0x8c9037d1ef5c6d1f6816278c7aaf5491d24cd527": { - "address": "0x8c9037d1ef5c6d1f6816278c7aaf5491d24cd527", - "symbol": "MOXIE", - "decimals": 18, - "name": "Moxie", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x8c9037d1ef5c6d1f6816278c7aaf5491d24cd527.png", - "aggregators": ["Rubic", "Rango", "Sonarwatch"], - "occurrences": 3 - }, - "0x0c90c756350fb803a7d5d9f9ee5ac29e77369973": { - "address": "0x0c90c756350fb803a7d5d9f9ee5ac29e77369973", - "symbol": "UBPS", - "decimals": 18, - "name": "United Base Postal", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x0c90c756350fb803a7d5d9f9ee5ac29e77369973.png", - "aggregators": ["Rubic", "Rango", "Sonarwatch"], - "occurrences": 3 - }, - "0x00096697dc24bd10423690126d91546a20ccb3f0": { - "address": "0x00096697dc24bd10423690126d91546a20ccb3f0", - "symbol": "VPT", - "decimals": 18, - "name": "Veritas", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x00096697dc24bd10423690126d91546a20ccb3f0.png", - "aggregators": ["Rubic", "Rango", "Sonarwatch"], - "occurrences": 3 - }, - "0x2af864fb54b55900cd58d19c7102d9e4fa8d84a3": { - "address": "0x2af864fb54b55900cd58d19c7102d9e4fa8d84a3", - "symbol": "GB", - "decimals": 18, - "name": "Grand Base", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x2af864fb54b55900cd58d19c7102d9e4fa8d84a3.png", - "aggregators": ["Rubic", "Rango", "Sonarwatch"], - "occurrences": 3 - }, - "0x3b9728bd65ca2c11a817ce39a6e91808cceef6fd": { - "address": "0x3b9728bd65ca2c11a817ce39a6e91808cceef6fd", - "symbol": "IHF", - "decimals": 18, - "name": "IHF Smart Debase Token", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x3b9728bd65ca2c11a817ce39a6e91808cceef6fd.png", - "aggregators": ["Rubic", "Rango", "Sonarwatch"], - "occurrences": 3 - }, - "0x0645bc5cdff2376089323ac20df4119e48e4bcc4": { - "address": "0x0645bc5cdff2376089323ac20df4119e48e4bcc4", - "symbol": "JOJO", - "decimals": 18, - "name": "JOJO", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x0645bc5cdff2376089323ac20df4119e48e4bcc4.png", - "aggregators": ["Rubic", "Rango", "Sonarwatch"], - "occurrences": 3 - }, - "0x2816a491dd0b7a88d84cbded842a618e59016888": { - "address": "0x2816a491dd0b7a88d84cbded842a618e59016888", - "symbol": "LONG", - "decimals": 18, - "name": "LONG", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x2816a491dd0b7a88d84cbded842a618e59016888.png", - "aggregators": ["Rubic", "Rango", "Sonarwatch"], - "occurrences": 3 - }, - "0xacd1caef47e4c47bafe8a51b3f4305fc38203b7a": { - "address": "0xacd1caef47e4c47bafe8a51b3f4305fc38203b7a", - "symbol": "LUNE", - "decimals": 18, - "name": "Luneko", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xacd1caef47e4c47bafe8a51b3f4305fc38203b7a.png", - "aggregators": ["Rubic", "Rango", "Sonarwatch"], - "occurrences": 3 - }, - "0x48c6740bcf807d6c47c864faeea15ed4da3910ab": { - "address": "0x48c6740bcf807d6c47c864faeea15ed4da3910ab", - "symbol": "$SPACE", - "decimals": 18, - "name": "nounspace", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x48c6740bcf807d6c47c864faeea15ed4da3910ab.png", - "aggregators": ["Rubic", "Rango", "Sonarwatch"], - "occurrences": 3 - }, - "0x5db4c680f66ade9e00ef6aad187419031bcc58a8": { - "address": "0x5db4c680f66ade9e00ef6aad187419031bcc58a8", - "symbol": "ROBOPEPE", - "decimals": 18, - "name": "RoboPepe", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x5db4c680f66ade9e00ef6aad187419031bcc58a8.png", - "aggregators": ["Rubic", "Rango", "Sonarwatch"], - "occurrences": 3 - }, - "0xf26d362a14399adabd5d2dfbbb876039529165d8": { - "address": "0xf26d362a14399adabd5d2dfbbb876039529165d8", - "symbol": "FOOL", - "decimals": 18, - "name": "fool", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xf26d362a14399adabd5d2dfbbb876039529165d8.png", - "aggregators": ["Rubic", "Rango", "Sonarwatch"], - "occurrences": 3 - }, - "0x639c0d019c257966c4907bd4e68e3f349bb58109": { - "address": "0x639c0d019c257966c4907bd4e68e3f349bb58109", - "symbol": "QUACK", - "decimals": 18, - "name": "Quack Token", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x639c0d019c257966c4907bd4e68e3f349bb58109.png", - "aggregators": ["Rubic", "Squid", "Rango"], - "occurrences": 3 - }, - "0xc227717ef4ae4d982e14789eb33ba942243c3fee": { - "address": "0xc227717ef4ae4d982e14789eb33ba942243c3fee", - "symbol": "MOZ", - "decimals": 18, - "name": "Mozaic", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xc227717ef4ae4d982e14789eb33ba942243c3fee.png", - "aggregators": ["Rubic", "Rango", "Sonarwatch"], - "occurrences": 3 - }, - "0x40e3eddf6d253bb734381a309437428f121c594b": { - "address": "0x40e3eddf6d253bb734381a309437428f121c594b", - "symbol": "LAD", - "decimals": 18, - "name": "Larva Lads", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x40e3eddf6d253bb734381a309437428f121c594b.png", - "aggregators": ["Rubic", "Rango", "Sonarwatch"], - "occurrences": 3 - }, - "0xc2106ca72996e49bbadcb836eec52b765977fd20": { - "address": "0xc2106ca72996e49bbadcb836eec52b765977fd20", - "symbol": "NFTE", - "decimals": 18, - "name": "NFTEarthOFT", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xc2106ca72996e49bbadcb836eec52b765977fd20.png", - "aggregators": ["Rubic", "Rango", "SushiSwap"], - "occurrences": 3 - }, - "0x633546a298e734700bdca888a87ab954159ec93c": { - "address": "0x633546a298e734700bdca888a87ab954159ec93c", - "symbol": "COPE", - "decimals": 9, - "name": "Cope", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x633546a298e734700bdca888a87ab954159ec93c.png", - "aggregators": ["Rubic", "Rango", "Sonarwatch"], - "occurrences": 3 - }, - "0x8011eef8fc855df1c4f421443f306e19818e60d3": { - "address": "0x8011eef8fc855df1c4f421443f306e19818e60d3", - "symbol": "DUH", - "decimals": 18, - "name": "Duh", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x8011eef8fc855df1c4f421443f306e19818e60d3.png", - "aggregators": ["Rubic", "Rango", "Sonarwatch"], - "occurrences": 3 - }, - "0x0a074378461fb7ed3300ea638c6cc38246db4434": { - "address": "0x0a074378461fb7ed3300ea638c6cc38246db4434", - "symbol": "EDE", - "decimals": 18, - "name": "El Dorado Exchange (Base)", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x0a074378461fb7ed3300ea638c6cc38246db4434.png", - "aggregators": ["Rubic", "Rango", "Sonarwatch"], - "occurrences": 3 - }, - "0x5d559ea7bb2dae4b694a079cb8328a2145fd32f6": { - "address": "0x5d559ea7bb2dae4b694a079cb8328a2145fd32f6", - "symbol": "OWO", - "decimals": 18, - "name": "SoMon", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x5d559ea7bb2dae4b694a079cb8328a2145fd32f6.png", - "aggregators": ["Rubic", "Rango", "Sonarwatch"], - "occurrences": 3 - }, - "0x4498cd8ba045e00673402353f5a4347562707e7d": { - "address": "0x4498cd8ba045e00673402353f5a4347562707e7d", - "symbol": "RDAT", - "decimals": 18, - "name": "r/DataDAO", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x4498cd8ba045e00673402353f5a4347562707e7d.png", - "aggregators": ["Rubic", "Rango", "Sonarwatch"], - "occurrences": 3 - }, - "0x3421cc14f0e3822cf3b73c3a4bec2a1023b8d9cf": { - "address": "0x3421cc14f0e3822cf3b73c3a4bec2a1023b8d9cf", - "symbol": "REBASE", - "decimals": 9, - "name": "Rebase", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x3421cc14f0e3822cf3b73c3a4bec2a1023b8d9cf.png", - "aggregators": ["Rubic", "Rango", "Sonarwatch"], - "occurrences": 3 - }, - "0x09579452bc3872727a5d105f342645792bb8a82b": { - "address": "0x09579452bc3872727a5d105f342645792bb8a82b", - "symbol": "VARK", - "decimals": 9, - "name": "Aardvark", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x09579452bc3872727a5d105f342645792bb8a82b.png", - "aggregators": ["Rubic", "Rango", "Sonarwatch"], - "occurrences": 3 - }, - "0x47e316d1951568b4fbc7a1bcd641c5624a756a05": { - "address": "0x47e316d1951568b4fbc7a1bcd641c5624a756a05", - "symbol": "WAGC", - "decimals": 18, - "name": "Wrapped AGC", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x47e316d1951568b4fbc7a1bcd641c5624a756a05.png", - "aggregators": ["Rubic", "Rango", "Sonarwatch"], - "occurrences": 3 - }, - "0x05fc76666676f3afa90504e2ebc820612287a82f": { - "address": "0x05fc76666676f3afa90504e2ebc820612287a82f", - "symbol": "MVRK", - "decimals": 6, - "name": "Mavryk Network", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x05fc76666676f3afa90504e2ebc820612287a82f.png", - "aggregators": ["Rubic", "Rango", "Sonarwatch"], - "occurrences": 3 - }, - "0xf8252c05ec4cb2fdf1e0398bae049d454ddba3ad": { - "address": "0xf8252c05ec4cb2fdf1e0398bae049d454ddba3ad", - "symbol": "JAM", - "decimals": 18, - "name": "JAM", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xf8252c05ec4cb2fdf1e0398bae049d454ddba3ad.png", - "aggregators": ["Rubic", "Rango", "Sonarwatch"], - "occurrences": 3 - }, - "0x8cecc2360906c812cd7353cd6b10b1dc13bbc777": { - "address": "0x8cecc2360906c812cd7353cd6b10b1dc13bbc777", - "symbol": "FX", - "decimals": 18, - "name": "Function X", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x8cecc2360906c812cd7353cd6b10b1dc13bbc777.png", - "aggregators": ["Rubic", "Rango", "Sonarwatch"], - "occurrences": 3 - }, - "0x137a61b3311e967b0d1e79d5546167c9dc9e6b5b": { - "address": "0x137a61b3311e967b0d1e79d5546167c9dc9e6b5b", - "symbol": "NSFW", - "decimals": 18, - "name": "Pleasure Coin", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x137a61b3311e967b0d1e79d5546167c9dc9e6b5b.png", - "aggregators": ["Rubic", "Rango", "SushiSwap"], - "occurrences": 3 - }, - "0x9bde70bad05b7d84dac03024dae15aace8c9cca2": { - "address": "0x9bde70bad05b7d84dac03024dae15aace8c9cca2", - "symbol": "LZSEILOR", - "decimals": 18, - "name": "Kryptonite", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x9bde70bad05b7d84dac03024dae15aace8c9cca2.png", - "aggregators": ["Rubic", "Squid", "Rango"], - "occurrences": 3 - }, - "0x37d6080ca82e42db3cf94a6fd07416cdd419a4a4": { - "address": "0x37d6080ca82e42db3cf94a6fd07416cdd419a4a4", - "symbol": "BOTDOG", - "decimals": 18, - "name": "Based Hotdog", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x37d6080ca82e42db3cf94a6fd07416cdd419a4a4.png", - "aggregators": ["Rubic", "Rango", "Sonarwatch"], - "occurrences": 3 - }, - "0xf83cde146ac35e99dd61b6448f7ad9a4534133cc": { - "address": "0xf83cde146ac35e99dd61b6448f7ad9a4534133cc", - "symbol": "EBERT", - "decimals": 18, - "name": "EBERT", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xf83cde146ac35e99dd61b6448f7ad9a4534133cc.png", - "aggregators": ["Rubic", "Rango", "Sonarwatch"], - "occurrences": 3 - }, - "0x4cfd8befdcd6bfc146fe214fa4b5bbe731a9c269": { - "address": "0x4cfd8befdcd6bfc146fe214fa4b5bbe731a9c269", - "symbol": "BITZ", - "decimals": 18, - "name": "MARBITZ", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x4cfd8befdcd6bfc146fe214fa4b5bbe731a9c269.png", - "aggregators": ["Rubic", "Rango", "Sonarwatch"], - "occurrences": 3 - }, - "0x0e0c9756a3290cd782cf4ab73ac24d25291c9564": { - "address": "0x0e0c9756a3290cd782cf4ab73ac24d25291c9564", - "symbol": "ANIME", - "decimals": 18, - "name": "Anime", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x0e0c9756a3290cd782cf4ab73ac24d25291c9564.png", - "aggregators": ["Rubic", "Rango", "Sonarwatch"], - "occurrences": 3 - }, - "0x52e0d3c27cc9e3607c1ca7914b9049be3d5e9c41": { - "address": "0x52e0d3c27cc9e3607c1ca7914b9049be3d5e9c41", - "symbol": "$BLU", - "decimals": 18, - "name": "Blu", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x52e0d3c27cc9e3607c1ca7914b9049be3d5e9c41.png", - "aggregators": ["Rubic", "Rango", "Sonarwatch"], - "occurrences": 3 - }, - "0x77184100237e46b06cd7649abf37435f5d5e678b": { - "address": "0x77184100237e46b06cd7649abf37435f5d5e678b", - "symbol": "SPR", - "decimals": 18, - "name": "SuperMeme", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x77184100237e46b06cd7649abf37435f5d5e678b.png", - "aggregators": ["Rubic", "Rango", "Sonarwatch"], - "occurrences": 3 - }, - "0xbdb0e1c40a76c5113a023d685b419b90b01e3d61": { - "address": "0xbdb0e1c40a76c5113a023d685b419b90b01e3d61", - "symbol": "AIVA", - "decimals": 18, - "name": "AI Voice Agents", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xbdb0e1c40a76c5113a023d685b419b90b01e3d61.png", - "aggregators": ["Rubic", "Rango", "Sonarwatch"], - "occurrences": 3 - }, - "0xd600e748c17ca237fcb5967fa13d688aff17be78": { - "address": "0xd600e748c17ca237fcb5967fa13d688aff17be78", - "symbol": "MVDA25", - "decimals": 18, - "name": "MarketVector Digital Assets 25 Index", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xd600e748c17ca237fcb5967fa13d688aff17be78.png", - "aggregators": ["Rubic", "Rango", "Sonarwatch"], - "occurrences": 3 - }, - "0x42e07fa3d31190731368ca2f88d12d80139dca42": { - "address": "0x42e07fa3d31190731368ca2f88d12d80139dca42", - "symbol": "INTOS", - "decimals": 18, - "name": "INT OS", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x42e07fa3d31190731368ca2f88d12d80139dca42.png", - "aggregators": ["Rubic", "Rango", "Sonarwatch"], - "occurrences": 3 - }, - "0xa19328fb05ce6fd204d16c2a2a98f7cf434c12f4": { - "address": "0xa19328fb05ce6fd204d16c2a2a98f7cf434c12f4", - "symbol": "L2VE", - "decimals": 18, - "name": "L2VE INU", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xa19328fb05ce6fd204d16c2a2a98f7cf434c12f4.png", - "aggregators": ["Rubic", "Rango", "Sonarwatch"], - "occurrences": 3 - }, - "0xe0f96f025ebb27950718ebd787b69c325cf045c0": { - "address": "0xe0f96f025ebb27950718ebd787b69c325cf045c0", - "symbol": "BANDIT", - "decimals": 18, - "name": "Bandit on Base", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xe0f96f025ebb27950718ebd787b69c325cf045c0.png", - "aggregators": ["Rubic", "Rango", "Sonarwatch"], - "occurrences": 3 - }, - "0x3d6ac59538e8b6c223f7ce9ce2fb2387d27cb299": { - "address": "0x3d6ac59538e8b6c223f7ce9ce2fb2387d27cb299", - "symbol": "BULLY", - "decimals": 18, - "name": "BASED BULLY", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x3d6ac59538e8b6c223f7ce9ce2fb2387d27cb299.png", - "aggregators": ["Rubic", "Rango", "Sonarwatch"], - "occurrences": 3 - }, - "0x90d81fc9817d00c1c01c7d8735d5a80cee1e341c": { - "address": "0x90d81fc9817d00c1c01c7d8735d5a80cee1e341c", - "symbol": "MTS", - "decimals": 18, - "name": "Metanopoly Tokenized Share", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x90d81fc9817d00c1c01c7d8735d5a80cee1e341c.png", - "aggregators": ["Rubic", "Rango", "Sonarwatch"], - "occurrences": 3 - }, - "0x26cf750abaf38af7109effdbdf79ba50d2ee09a1": { - "address": "0x26cf750abaf38af7109effdbdf79ba50d2ee09a1", - "symbol": "UCASH", - "decimals": 8, - "name": "U.CASH", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x26cf750abaf38af7109effdbdf79ba50d2ee09a1.png", - "aggregators": ["Rubic", "Rango", "Sonarwatch"], - "occurrences": 3 - }, - "0xba3b38581f96b04f75ca4ad51296fff3806d7626": { - "address": "0xba3b38581f96b04f75ca4ad51296fff3806d7626", - "symbol": "POTATO", - "decimals": 18, - "name": "Based Potato", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xba3b38581f96b04f75ca4ad51296fff3806d7626.png", - "aggregators": ["Rubic", "Rango", "Sonarwatch"], - "occurrences": 3 - }, - "0x102cd3e9e14810ce6f0765227e971432bce05d6c": { - "address": "0x102cd3e9e14810ce6f0765227e971432bce05d6c", - "symbol": "ZAI", - "decimals": 18, - "name": "ZaichXBT", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x102cd3e9e14810ce6f0765227e971432bce05d6c.png", - "aggregators": ["Rubic", "Rango", "Sonarwatch"], - "occurrences": 3 - }, - "0x544f87a5aa41fcd725ef7c78a37cd9c1c4ba1650": { - "address": "0x544f87a5aa41fcd725ef7c78a37cd9c1c4ba1650", - "symbol": "UBERA", - "decimals": 18, - "name": "Wrapped Berachain (Universal)", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x544f87a5aa41fcd725ef7c78a37cd9c1c4ba1650.png", - "aggregators": ["Rubic", "Rango", "Sonarwatch"], - "occurrences": 3 - }, - "0x42b08e7a9211482d3643a126a7df1895448d3509": { - "address": "0x42b08e7a9211482d3643a126a7df1895448d3509", - "symbol": "HENAI", - "decimals": 18, - "name": "HenjinAI", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x42b08e7a9211482d3643a126a7df1895448d3509.png", - "aggregators": ["Rubic", "Rango", "Sonarwatch"], - "occurrences": 3 - }, - "0x88e9822965e39882839098eef2e972e2dd9ce56d": { - "address": "0x88e9822965e39882839098eef2e972e2dd9ce56d", - "symbol": "GMMF", - "decimals": 18, - "name": "Gameme-Fi", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x88e9822965e39882839098eef2e972e2dd9ce56d.png", - "aggregators": ["Rubic", "Rango", "Sonarwatch"], - "occurrences": 3 - }, - "0x1234d66b6fbb900296ae2f57740b800fd8960927": { - "address": "0x1234d66b6fbb900296ae2f57740b800fd8960927", - "symbol": "DPAD", - "decimals": 18, - "name": "DegenPad", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x1234d66b6fbb900296ae2f57740b800fd8960927.png", - "aggregators": ["Rubic", "Rango", "Sonarwatch"], - "occurrences": 3 - }, - "0xfae89a7966d13195960459e6b483cacb9fe9cfcf": { - "address": "0xfae89a7966d13195960459e6b483cacb9fe9cfcf", - "symbol": "BMONEY", - "decimals": 18, - "name": "B Money AKA Brett", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xfae89a7966d13195960459e6b483cacb9fe9cfcf.png", - "aggregators": ["Rubic", "Rango", "Sonarwatch"], - "occurrences": 3 - }, - "0x85e90a5430af45776548adb82ee4cd9e33b08077": { - "address": "0x85e90a5430af45776548adb82ee4cd9e33b08077", - "symbol": "DINO", - "decimals": 18, - "name": "DINO", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x85e90a5430af45776548adb82ee4cd9e33b08077.png", - "aggregators": [ - "CoinGecko", - "LiFi", - "Socket", - "Rubic", - "Squid", - "Rango", - "Sonarwatch", - "SushiSwap" - ], - "occurrences": 8 - }, - "0xdbfefd2e8460a6ee4955a68582f85708baea60a3": { - "address": "0xdbfefd2e8460a6ee4955a68582f85708baea60a3", - "symbol": "SUPEROETHB", - "decimals": 18, - "name": "Super OETH", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xdbfefd2e8460a6ee4955a68582f85708baea60a3.png", - "aggregators": [ - "CoinGecko", - "1inch", - "LiFi", - "Rubic", - "Squid", - "Rango", - "Sonarwatch" - ], - "occurrences": 7 - }, - "0x04c0599ae5a44757c0af6f9ec3b93da8976c150a": { - "address": "0x04c0599ae5a44757c0af6f9ec3b93da8976c150a", - "symbol": "WEETH.BASE", - "decimals": 18, - "name": "ether.fi Bridged weETH (Base)", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x04c0599ae5a44757c0af6f9ec3b93da8976c150a.png", - "aggregators": [ - "CoinGecko", - "LiFi", - "Socket", - "Rubic", - "Squid", - "Rango", - "Sonarwatch" - ], - "occurrences": 7 - }, - "0x4e200fe2f3efb977d5fd9c430a41531fb04d97b8": { - "address": "0x4e200fe2f3efb977d5fd9c430a41531fb04d97b8", - "symbol": "ORDER", - "decimals": 18, - "name": "Orderly Network", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x4e200fe2f3efb977d5fd9c430a41531fb04d97b8.png", - "aggregators": [ - "CoinGecko", - "LiFi", - "Socket", - "Rubic", - "Squid", - "Rango", - "Sonarwatch" - ], - "occurrences": 7 - }, - "0xb166e8b140d35d9d8226e40c09f757bac5a4d87d": { - "address": "0xb166e8b140d35d9d8226e40c09f757bac5a4d87d", - "symbol": "NPC", - "decimals": 18, - "name": "Non-Playable Coin", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xb166e8b140d35d9d8226e40c09f757bac5a4d87d.png", - "aggregators": [ - "CoinGecko", - "LiFi", - "Rubic", - "Squid", - "Rango", - "Sonarwatch", - "SushiSwap" - ], - "occurrences": 7 - }, - "0xdfbea88c4842d30c26669602888d746d30f9d60d": { - "address": "0xdfbea88c4842d30c26669602888d746d30f9d60d", - "symbol": "CAW", - "decimals": 18, - "name": "crow with knife", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xdfbea88c4842d30c26669602888d746d30f9d60d.png", - "aggregators": [ - "CoinGecko", - "1inch", - "Socket", - "Rubic", - "Squid", - "Rango", - "Sonarwatch" - ], - "occurrences": 7 - }, - "0x61e030a56d33e8260fdd81f03b162a79fe3449cd": { - "address": "0x61e030a56d33e8260fdd81f03b162a79fe3449cd", - "symbol": "FLUID", - "decimals": 18, - "name": "Fluid", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x61e030a56d33e8260fdd81f03b162a79fe3449cd.png", - "aggregators": [ - "CoinGecko", - "LiFi", - "Socket", - "Rubic", - "Squid", - "Rango" - ], - "occurrences": 6 - }, - "0xe0cd4cacddcbf4f36e845407ce53e87717b6601d": { - "address": "0xe0cd4cacddcbf4f36e845407ce53e87717b6601d", - "symbol": "ICNT", - "decimals": 18, - "name": "Impossible Cloud Network Token", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xe0cd4cacddcbf4f36e845407ce53e87717b6601d.png", - "aggregators": [ - "CoinGecko", - "LiFi", - "Socket", - "Rubic", - "Squid", - "Rango" - ], - "occurrences": 6 - }, - "0x09be1692ca16e06f536f0038ff11d1da8524adb1": { - "address": "0x09be1692ca16e06f536f0038ff11d1da8524adb1", - "symbol": "TEL", - "decimals": 2, - "name": "Telcoin", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x09be1692ca16e06f536f0038ff11d1da8524adb1.png", - "aggregators": [ - "CoinGecko", - "LiFi", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 6 - }, - "0x815269d17c10f0f3df7249370e0c1b9efe781aa8": { - "address": "0x815269d17c10f0f3df7249370e0c1b9efe781aa8", - "symbol": "SANTA", - "decimals": 18, - "name": "SANTA by Virtuals", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x815269d17c10f0f3df7249370e0c1b9efe781aa8.png", - "aggregators": [ - "CoinGecko", - "LiFi", - "Socket", - "Rubic", - "Squid", - "Rango" - ], - "occurrences": 6 - }, - "0x4837b18a6d7af6159c8665505b90a2ed393255e0": { - "address": "0x4837b18a6d7af6159c8665505b90a2ed393255e0", - "symbol": "LYP", - "decimals": 18, - "name": "Lympid", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x4837b18a6d7af6159c8665505b90a2ed393255e0.png", - "aggregators": [ - "CoinGecko", - "1inch", - "LiFi", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 6 - }, - "0x164ffdae2fe3891714bc2968f1875ca4fa1079d0": { - "address": "0x164ffdae2fe3891714bc2968f1875ca4fa1079d0", - "symbol": "DEFI.SSI", - "decimals": 8, - "name": "DEFI.ssi", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x164ffdae2fe3891714bc2968f1875ca4fa1079d0.png", - "aggregators": [ - "CoinGecko", - "LiFi", - "Rubic", - "Squid", - "Rango", - "Sonarwatch" - ], - "occurrences": 6 - }, - "0xe3086852a4b125803c815a158249ae468a3254ca": { - "address": "0xe3086852a4b125803c815a158249ae468a3254ca", - "symbol": "MFER", - "decimals": 18, - "name": "mfercoin", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xe3086852a4b125803c815a158249ae468a3254ca.png", - "aggregators": [ - "CoinGecko", - "LiFi", - "Rubic", - "Squid", - "Rango", - "Sonarwatch" - ], - "occurrences": 6 - }, - "0xc4d44c155f95fd4e94600d191a4a01bb571df7df": { - "address": "0xc4d44c155f95fd4e94600d191a4a01bb571df7df", - "symbol": "GS", - "decimals": 18, - "name": "GammaSwap", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xc4d44c155f95fd4e94600d191a4a01bb571df7df.png", - "aggregators": [ - "CoinGecko", - "LiFi", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 6 - }, - "0xc43f3ae305a92043bd9b62ebd2fe14f7547ee485": { - "address": "0xc43f3ae305a92043bd9b62ebd2fe14f7547ee485", - "symbol": "CHEX", - "decimals": 18, - "name": "CHEX Token", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xc43f3ae305a92043bd9b62ebd2fe14f7547ee485.png", - "aggregators": [ - "CoinGecko", - "LiFi", - "Rubic", - "Squid", - "Rango", - "Sonarwatch" - ], - "occurrences": 6 - }, - "0x7431ada8a591c955a994a21710752ef9b882b8e3": { - "address": "0x7431ada8a591c955a994a21710752ef9b882b8e3", - "symbol": "MOR", - "decimals": 18, - "name": "Morpheus AI", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x7431ada8a591c955a994a21710752ef9b882b8e3.png", - "aggregators": [ - "CoinGecko", - "LiFi", - "Socket", - "Rubic", - "Squid", - "Rango" - ], - "occurrences": 6 - }, - "0xd4a0e0b9149bcee3c920d2e00b5de09138fd8bb7": { - "address": "0xd4a0e0b9149bcee3c920d2e00b5de09138fd8bb7", - "symbol": "AWETH", - "decimals": 18, - "name": "Aave v3 WETH", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xd4a0e0b9149bcee3c920d2e00b5de09138fd8bb7.png", - "aggregators": [ - "CoinGecko", - "1inch", - "LiFi", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 6 - }, - "0xc26c9099bd3789107888c35bb41178079b282561": { - "address": "0xc26c9099bd3789107888c35bb41178079b282561", - "symbol": "SOLVBTC.BBN", - "decimals": 18, - "name": "Solv Protocol SolvBTC.BBN", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xc26c9099bd3789107888c35bb41178079b282561.png", - "aggregators": [ - "CoinGecko", - "LiFi", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 6 - }, - "0x83db73ef5192de4b6a4c92bd0141ba1a0dc87c65": { - "address": "0x83db73ef5192de4b6a4c92bd0141ba1a0dc87c65", - "symbol": "CUSDO", - "decimals": 18, - "name": "Compounding OpenDollar", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x83db73ef5192de4b6a4c92bd0141ba1a0dc87c65.png", - "aggregators": [ - "CoinGecko", - "LiFi", - "Rubic", - "Squid", - "Rango", - "Sonarwatch" - ], - "occurrences": 6 - }, - "0x60d01ec2d5e98ac51c8b4cf84dfcce98d527c747": { - "address": "0x60d01ec2d5e98ac51c8b4cf84dfcce98d527c747", - "symbol": "IZI", - "decimals": 18, - "name": "iZUMi Finance", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x60d01ec2d5e98ac51c8b4cf84dfcce98d527c747.png", - "aggregators": [ - "CoinGecko", - "LiFi", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 6 - }, - "0x624e2e7fdc8903165f64891672267ab0fcb98831": { - "address": "0x624e2e7fdc8903165f64891672267ab0fcb98831", - "symbol": "SOSO", - "decimals": 18, - "name": "SoSoValue", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x624e2e7fdc8903165f64891672267ab0fcb98831.png", - "aggregators": [ - "CoinGecko", - "LiFi", - "Socket", - "Rubic", - "Squid", - "Rango" - ], - "occurrences": 6 - }, - "0x0a1d576f3efef75b330424287a95a366e8281d54": { - "address": "0x0a1d576f3efef75b330424287a95a366e8281d54", - "symbol": "ABASUSDBC", - "decimals": 6, - "name": "Aave Base USDbC", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x0a1d576f3efef75b330424287a95a366e8281d54.png", - "aggregators": ["Metamask", "LiFi", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 5 - }, - "0xc1256ae5ff1cf2719d4937adb3bbccab2e00a2ca": { - "address": "0xc1256ae5ff1cf2719d4937adb3bbccab2e00a2ca", - "symbol": "MWUSDC", - "decimals": 18, - "name": "Moonwell Flagship USDC (Morpho Vault)", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xc1256ae5ff1cf2719d4937adb3bbccab2e00a2ca.png", - "aggregators": [ - "CoinGecko", - "LiFi", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x0d91ebb16291873a0c67158f578ec249f4321b49": { - "address": "0x0d91ebb16291873a0c67158f578ec249f4321b49", - "symbol": "AIV", - "decimals": 18, - "name": "AIVeronica by Virtuals", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x0d91ebb16291873a0c67158f578ec249f4321b49.png", - "aggregators": [ - "CoinGecko", - "Rubic", - "Squid", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x645c7aa841087e2e7f741c749ab27422ff5bba8e": { - "address": "0x645c7aa841087e2e7f741c749ab27422ff5bba8e", - "symbol": "IONA", - "decimals": 18, - "name": "Iona by Virtuals", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x645c7aa841087e2e7f741c749ab27422ff5bba8e.png", - "aggregators": [ - "CoinGecko", - "Rubic", - "Squid", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x3054e8f8fba3055a42e5f5228a2a4e2ab1326933": { - "address": "0x3054e8f8fba3055a42e5f5228a2a4e2ab1326933", - "symbol": "ZUZALU", - "decimals": 18, - "name": "zuzalu", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x3054e8f8fba3055a42e5f5228a2a4e2ab1326933.png", - "aggregators": [ - "CoinGecko", - "Rubic", - "Squid", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0xfb42da273158b0f642f59f2ba7cc1d5457481677": { - "address": "0xfb42da273158b0f642f59f2ba7cc1d5457481677", - "symbol": "LINGO", - "decimals": 18, - "name": "Lingo", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xfb42da273158b0f642f59f2ba7cc1d5457481677.png", - "aggregators": [ - "CoinGecko", - "LiFi", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0xba5b9b2d2d06a9021eb3190ea5fb0e02160839a4": { - "address": "0xba5b9b2d2d06a9021eb3190ea5fb0e02160839a4", - "symbol": "SENDIT", - "decimals": 18, - "name": "Sendit", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xba5b9b2d2d06a9021eb3190ea5fb0e02160839a4.png", - "aggregators": [ - "CoinGecko", - "Rubic", - "Rango", - "Sonarwatch", - "SushiSwap" - ], - "occurrences": 5 - }, - "0xbb819d845b573b5d7c538f5b85057160cfb5f313": { - "address": "0xbb819d845b573b5d7c538f5b85057160cfb5f313", - "symbol": "MEUSD", - "decimals": 18, - "name": "Morpho eUSD", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xbb819d845b573b5d7c538f5b85057160cfb5f313.png", - "aggregators": [ - "CoinGecko", - "LiFi", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x9a86980d3625b4a6e69d8a4606d51cbc019e2002": { - "address": "0x9a86980d3625b4a6e69d8a4606d51cbc019e2002", - "symbol": "FOMO", - "decimals": 18, - "name": "FOMO BULL CLUB", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x9a86980d3625b4a6e69d8a4606d51cbc019e2002.png", - "aggregators": [ - "CoinGecko", - "TrustWallet", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0xb7890cee6cf4792cdcc13489d36d9d42726ab863": { - "address": "0xb7890cee6cf4792cdcc13489d36d9d42726ab863", - "symbol": "UUSDC", - "decimals": 18, - "name": "Universal USDC", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xb7890cee6cf4792cdcc13489d36d9d42726ab863.png", - "aggregators": [ - "CoinGecko", - "LiFi", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0xca72827a3d211cfd8f6b00ac98824872b72cab49": { - "address": "0xca72827a3d211cfd8f6b00ac98824872b72cab49", - "symbol": "CGUSD", - "decimals": 6, - "name": "Cygnus Finance Global USD", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xca72827a3d211cfd8f6b00ac98824872b72cab49.png", - "aggregators": [ - "CoinGecko", - "LiFi", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x7c3af051bfa356b8eaee35c273a21ad9223ee994": { - "address": "0x7c3af051bfa356b8eaee35c273a21ad9223ee994", - "symbol": "J3FF", - "decimals": 18, - "name": "J3FF by Virtuals", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x7c3af051bfa356b8eaee35c273a21ad9223ee994.png", - "aggregators": [ - "CoinGecko", - "Rubic", - "Squid", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x8bfac1b375bf2894d6f12fb2eb48b1c1a7916789": { - "address": "0x8bfac1b375bf2894d6f12fb2eb48b1c1a7916789", - "symbol": "MEY", - "decimals": 18, - "name": "Mey Network", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x8bfac1b375bf2894d6f12fb2eb48b1c1a7916789.png", - "aggregators": [ - "CoinGecko", - "LiFi", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x0f1a9f3b8b971ac72a2d362cf2858f21fb799601": { - "address": "0x0f1a9f3b8b971ac72a2d362cf2858f21fb799601", - "symbol": "SUISS", - "decimals": 18, - "name": "SUISSMA AI by Virtuals", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x0f1a9f3b8b971ac72a2d362cf2858f21fb799601.png", - "aggregators": [ - "CoinGecko", - "Rubic", - "Squid", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x4dd9077269dd08899f2a9e73507125962b5bc87f": { - "address": "0x4dd9077269dd08899f2a9e73507125962b5bc87f", - "symbol": "CRASH", - "decimals": 18, - "name": "Crash On Base", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x4dd9077269dd08899f2a9e73507125962b5bc87f.png", - "aggregators": [ - "CoinGecko", - "Rubic", - "Squid", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x8c3a6b12332a6354805eb4b72ef619aedd22bcdd": { - "address": "0x8c3a6b12332a6354805eb4b72ef619aedd22bcdd", - "symbol": "MDEGEN", - "decimals": 18, - "name": "Morpho Degen", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x8c3a6b12332a6354805eb4b72ef619aedd22bcdd.png", - "aggregators": [ - "CoinGecko", - "LiFi", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0xdd3acdbdc7b358df453a6cb6bca56c92aa5743aa": { - "address": "0xdd3acdbdc7b358df453a6cb6bca56c92aa5743aa", - "symbol": "MEME.SSI", - "decimals": 8, - "name": "MEME.ssi", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xdd3acdbdc7b358df453a6cb6bca56c92aa5743aa.png", - "aggregators": [ - "CoinGecko", - "Rubic", - "Squid", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x05f1279957d62fc675399df1088f9c11c64c2b19": { - "address": "0x05f1279957d62fc675399df1088f9c11c64c2b19", - "symbol": "RIDDLE", - "decimals": 18, - "name": "Riddle by Virtuals", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x05f1279957d62fc675399df1088f9c11c64c2b19.png", - "aggregators": [ - "CoinGecko", - "Rubic", - "Squid", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x698b49063c14d2753d23064ff891a876cffa6fb5": { - "address": "0x698b49063c14d2753d23064ff891a876cffa6fb5", - "symbol": "NIKITA", - "decimals": 18, - "name": "NIKITA by Virtuals", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x698b49063c14d2753d23064ff891a876cffa6fb5.png", - "aggregators": [ - "CoinGecko", - "Rubic", - "Squid", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0xa2cac0023a4797b4729db94783405189a4203afc": { - "address": "0xa2cac0023a4797b4729db94783405189a4203afc", - "symbol": "RE7WETH", - "decimals": 18, - "name": "Re7 WETH", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xa2cac0023a4797b4729db94783405189a4203afc.png", - "aggregators": [ - "CoinGecko", - "LiFi", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x546d239032b24eceee0cb05c92fc39090846adc7": { - "address": "0x546d239032b24eceee0cb05c92fc39090846adc7", - "symbol": "SEED", - "decimals": 18, - "name": "SEED", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x546d239032b24eceee0cb05c92fc39090846adc7.png", - "aggregators": [ - "CoinGecko", - "Rubic", - "Squid", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x5fc190dee34cd5202cc571ec5c8efd60a02bd06d": { - "address": "0x5fc190dee34cd5202cc571ec5c8efd60a02bd06d", - "symbol": "YOYO", - "decimals": 18, - "name": "YoYo", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x5fc190dee34cd5202cc571ec5c8efd60a02bd06d.png", - "aggregators": [ - "CoinGecko", - "Rubic", - "Squid", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0xdbe125089d0752ef458c0685436ace93a7f1f8ca": { - "address": "0xdbe125089d0752ef458c0685436ace93a7f1f8ca", - "symbol": "AQLA", - "decimals": 18, - "name": "Aqualibre", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xdbe125089d0752ef458c0685436ace93a7f1f8ca.png", - "aggregators": [ - "CoinGecko", - "LiFi", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0xfea9dcdc9e23a9068bf557ad5b186675c61d33ea": { - "address": "0xfea9dcdc9e23a9068bf557ad5b186675c61d33ea", - "symbol": "BSHIB", - "decimals": 18, - "name": "Based Shiba Inu", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xfea9dcdc9e23a9068bf557ad5b186675c61d33ea.png", - "aggregators": [ - "CoinGecko", - "Rubic", - "Rango", - "Sonarwatch", - "SushiSwap" - ], - "occurrences": 5 - }, - "0xd5b70ed3f2ba01bfaaa3beb09e31fe11f833b85f": { - "address": "0xd5b70ed3f2ba01bfaaa3beb09e31fe11f833b85f", - "symbol": "BBB", - "decimals": 18, - "name": "Based Baby", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xd5b70ed3f2ba01bfaaa3beb09e31fe11f833b85f.png", - "aggregators": [ - "CoinGecko", - "Rubic", - "Squid", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x80d9964feb4a507dd697b4437fc5b25b618ce446": { - "address": "0x80d9964feb4a507dd697b4437fc5b25b618ce446", - "symbol": "PYTHETH", - "decimals": 18, - "name": "Pyth ETH", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x80d9964feb4a507dd697b4437fc5b25b618ce446.png", - "aggregators": [ - "CoinGecko", - "LiFi", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0xcf3d55c10db69f28fd1a75bd73f3d8a2d9c595ad": { - "address": "0xcf3d55c10db69f28fd1a75bd73f3d8a2d9c595ad", - "symbol": "ACBETH", - "decimals": 18, - "name": "Aave v3 cbETH", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xcf3d55c10db69f28fd1a75bd73f3d8a2d9c595ad.png", - "aggregators": [ - "CoinGecko", - "LiFi", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x710eec215b3bb653d42fc6e70e0531ea13f51a7a": { - "address": "0x710eec215b3bb653d42fc6e70e0531ea13f51a7a", - "symbol": "KEIRA", - "decimals": 18, - "name": "Keira", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x710eec215b3bb653d42fc6e70e0531ea13f51a7a.png", - "aggregators": [ - "CoinGecko", - "Rubic", - "Squid", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x9e6a46f294bb67c20f1d1e7afb0bbef614403b55": { - "address": "0x9e6a46f294bb67c20f1d1e7afb0bbef614403b55", - "symbol": "MAG7.SSI", - "decimals": 8, - "name": "MAG7.ssi", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x9e6a46f294bb67c20f1d1e7afb0bbef614403b55.png", - "aggregators": [ - "CoinGecko", - "LiFi", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x8a9430e92153c026092544444cbb38077e6688d1": { - "address": "0x8a9430e92153c026092544444cbb38077e6688d1", - "symbol": "KEPT", - "decimals": 18, - "name": "KeptChain", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x8a9430e92153c026092544444cbb38077e6688d1.png", - "aggregators": [ - "CoinGecko", - "Rubic", - "Squid", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x22dc834c3ff3e45f484bf24b9b07b851b981900f": { - "address": "0x22dc834c3ff3e45f484bf24b9b07b851b981900f", - "symbol": "SMUDCAT", - "decimals": 18, - "name": "Smudge Cat", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x22dc834c3ff3e45f484bf24b9b07b851b981900f.png", - "aggregators": [ - "CoinGecko", - "Rubic", - "Rango", - "Sonarwatch", - "SushiSwap" - ], - "occurrences": 5 - }, - "0x06a63c498ef95ad1fa4fff841955e512b4b2198a": { - "address": "0x06a63c498ef95ad1fa4fff841955e512b4b2198a", - "symbol": "GLUTEU", - "decimals": 18, - "name": "Gluteus Maximus by Virtuals", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x06a63c498ef95ad1fa4fff841955e512b4b2198a.png", - "aggregators": [ - "CoinGecko", - "Rubic", - "Squid", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0xe8e55a847bb446d967ef92f4580162fb8f2d3f38": { - "address": "0xe8e55a847bb446d967ef92f4580162fb8f2d3f38", - "symbol": "BROGE", - "decimals": 18, - "name": "Broge", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xe8e55a847bb446d967ef92f4580162fb8f2d3f38.png", - "aggregators": [ - "CoinGecko", - "Rubic", - "Squid", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x295243647f3efe3bea315d548dcc3d25864ba265": { - "address": "0x295243647f3efe3bea315d548dcc3d25864ba265", - "symbol": "TOCHI", - "decimals": 18, - "name": "Tochi Base", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x295243647f3efe3bea315d548dcc3d25864ba265.png", - "aggregators": [ - "CoinGecko", - "Rubic", - "Squid", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0xdcaa5e062b2be18e52ea6ed7ba232538621ddc10": { - "address": "0xdcaa5e062b2be18e52ea6ed7ba232538621ddc10", - "symbol": "AURA", - "decimals": 18, - "name": "Aurra", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xdcaa5e062b2be18e52ea6ed7ba232538621ddc10.png", - "aggregators": ["CoinGecko", "LiFi", "Socket", "Rubic", "Squid"], - "occurrences": 5 - }, - "0x3cf255a7a03d74b6f9d58456cbedbc0705626354": { - "address": "0x3cf255a7a03d74b6f9d58456cbedbc0705626354", - "symbol": "NEUY", - "decimals": 18, - "name": "NEUY", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x3cf255a7a03d74b6f9d58456cbedbc0705626354.png", - "aggregators": [ - "CoinGecko", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x2192607c3cba9ec3d490206d10d831e68e5f3c97": { - "address": "0x2192607c3cba9ec3d490206d10d831e68e5f3c97", - "symbol": "BOSON", - "decimals": 18, - "name": "BOSON", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x2192607c3cba9ec3d490206d10d831e68e5f3c97.png", - "aggregators": ["CoinGecko", "LiFi", "Socket", "Rubic", "Rango"], - "occurrences": 5 - }, - "0x8bf591eae535f93a242d5a954d3cde648b48a5a8": { - "address": "0x8bf591eae535f93a242d5a954d3cde648b48a5a8", - "symbol": "SUUSD", - "decimals": 18, - "name": "Sumer.Money suUSD", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x8bf591eae535f93a242d5a954d3cde648b48a5a8.png", - "aggregators": [ - "CoinGecko", - "LiFi", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0xd722e55c1d9d9fa0021a5215cbb904b92b3dc5d4": { - "address": "0xd722e55c1d9d9fa0021a5215cbb904b92b3dc5d4", - "symbol": "RDNT", - "decimals": 17, - "name": "Radiant Capital", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xd722e55c1d9d9fa0021a5215cbb904b92b3dc5d4.png", - "aggregators": [ - "CoinGecko", - "LiFi", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0xebb7873213c8d1d9913d8ea39aa12d74cb107995": { - "address": "0xebb7873213c8d1d9913d8ea39aa12d74cb107995", - "symbol": "XVS", - "decimals": 18, - "name": "Venus", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xebb7873213c8d1d9913d8ea39aa12d74cb107995.png", - "aggregators": [ - "CoinGecko", - "LiFi", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x764a726d9ced0433a8d7643335919deb03a9a935": { - "address": "0x764a726d9ced0433a8d7643335919deb03a9a935", - "symbol": "POKT", - "decimals": 6, - "name": "Pocket Network", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x764a726d9ced0433a8d7643335919deb03a9a935.png", - "aggregators": [ - "CoinGecko", - "LiFi", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x31dba3c96481fde3cd81c2aaf51f2d8bf618c742": { - "address": "0x31dba3c96481fde3cd81c2aaf51f2d8bf618c742", - "symbol": "SOPH", - "decimals": 18, - "name": "SOPH", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x31dba3c96481fde3cd81c2aaf51f2d8bf618c742.png", - "aggregators": ["CoinGecko", "LiFi", "Socket", "Rubic", "Rango"], - "occurrences": 5 - }, - "0xdd629e5241cbc5919847783e6c96b2de4754e438": { - "address": "0xdd629e5241cbc5919847783e6c96b2de4754e438", - "symbol": "MTBILL", - "decimals": 18, - "name": "Midas mTBILL", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xdd629e5241cbc5919847783e6c96b2de4754e438.png", - "aggregators": [ - "CoinGecko", - "LiFi", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0xa617c0c739845b2941bd8edd05c9f993ecc97c18": { - "address": "0xa617c0c739845b2941bd8edd05c9f993ecc97c18", - "symbol": "GMR", - "decimals": 18, - "name": "GAMER", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xa617c0c739845b2941bd8edd05c9f993ecc97c18.png", - "aggregators": [ - "CoinGecko", - "Rubic", - "Squid", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0xbfd5206962267c7b4b4a8b3d76ac2e1b2a5c4d5e": { - "address": "0xbfd5206962267c7b4b4a8b3d76ac2e1b2a5c4d5e", - "symbol": "OSAK", - "decimals": 18, - "name": "Osaka Protocol", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xbfd5206962267c7b4b4a8b3d76ac2e1b2a5c4d5e.png", - "aggregators": [ - "CoinGecko", - "Rubic", - "Rango", - "Sonarwatch", - "SushiSwap" - ], - "occurrences": 5 - }, - "0xc0fbc4967259786c743361a5885ef49380473dcf": { - "address": "0xc0fbc4967259786c743361a5885ef49380473dcf", - "symbol": "ALEPH", - "decimals": 18, - "name": "Aleph.im", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xc0fbc4967259786c743361a5885ef49380473dcf.png", - "aggregators": [ - "CoinGecko", - "LiFi", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0xbbcb0356bb9e6b3faa5cbf9e5f36185d53403ac9": { - "address": "0xbbcb0356bb9e6b3faa5cbf9e5f36185d53403ac9", - "symbol": "BCOIN", - "decimals": 18, - "name": "Backed Coinbase Global", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xbbcb0356bb9e6b3faa5cbf9e5f36185d53403ac9.png", - "aggregators": [ - "CoinGecko", - "LiFi", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0xd2012fc1b913ce50732ebcaa7e601fe37ac728c6": { - "address": "0xd2012fc1b913ce50732ebcaa7e601fe37ac728c6", - "symbol": "STONE", - "decimals": 18, - "name": "StakeStone ETH", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xd2012fc1b913ce50732ebcaa7e601fe37ac728c6.png", - "aggregators": [ - "CoinGecko", - "LiFi", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x949185d3be66775ea648f4a306740ea9eff9c567": { - "address": "0x949185d3be66775ea648f4a306740ea9eff9c567", - "symbol": "YEL", - "decimals": 18, - "name": "Yel.Finance", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x949185d3be66775ea648f4a306740ea9eff9c567.png", - "aggregators": [ - "CoinGecko", - "LiFi", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x1f1aa4d239002bb818536c95e9b762a1fc8484c1": { - "address": "0x1f1aa4d239002bb818536c95e9b762a1fc8484c1", - "symbol": "RAIN", - "decimals": 18, - "name": "Precipitate.ai", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x1f1aa4d239002bb818536c95e9b762a1fc8484c1.png", - "aggregators": [ - "CoinGecko", - "LiFi", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0xac86f3556cbd2b4d800d17adc3a266b500fcb9f5": { - "address": "0xac86f3556cbd2b4d800d17adc3a266b500fcb9f5", - "symbol": "DIP", - "decimals": 18, - "name": "Etherisc DIP", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xac86f3556cbd2b4d800d17adc3a266b500fcb9f5.png", - "aggregators": [ - "CoinGecko", - "LiFi", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0xb757977bc882a14db86b048f2abb2f2a14d33184": { - "address": "0xb757977bc882a14db86b048f2abb2f2a14d33184", - "symbol": "DOGL", - "decimals": 18, - "name": "DogLibre", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xb757977bc882a14db86b048f2abb2f2a14d33184.png", - "aggregators": [ - "CoinGecko", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x8923947eafaf4ad68f1f0c9eb5463ec876d79058": { - "address": "0x8923947eafaf4ad68f1f0c9eb5463ec876d79058", - "symbol": "MERC", - "decimals": 18, - "name": "Liquid Mercury", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x8923947eafaf4ad68f1f0c9eb5463ec876d79058.png", - "aggregators": [ - "CoinGecko", - "LiFi", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x9e81f6495ba29a6b4d48bddd042c0598fa8abc9f": { - "address": "0x9e81f6495ba29a6b4d48bddd042c0598fa8abc9f", - "symbol": "MATH", - "decimals": 18, - "name": "MATH", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x9e81f6495ba29a6b4d48bddd042c0598fa8abc9f.png", - "aggregators": [ - "CoinGecko", - "LiFi", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0xd3fdcb837dafdb7c9c3ebd48fe22a53f6dd3d7d7": { - "address": "0xd3fdcb837dafdb7c9c3ebd48fe22a53f6dd3d7d7", - "symbol": "QI", - "decimals": 18, - "name": "Qi Dao", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xd3fdcb837dafdb7c9c3ebd48fe22a53f6dd3d7d7.png", - "aggregators": [ - "CoinGecko", - "LiFi", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x614577036f0a024dbc1c88ba616b394dd65d105a": { - "address": "0x614577036f0a024dbc1c88ba616b394dd65d105a", - "symbol": "GNUS", - "decimals": 18, - "name": "GENIUS AI", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x614577036f0a024dbc1c88ba616b394dd65d105a.png", - "aggregators": ["CoinGecko", "LiFi", "Rubic", "Squid", "Rango"], - "occurrences": 5 - }, - "0x4da78059d97f155e18b37765e2e042270f4e0fc4": { - "address": "0x4da78059d97f155e18b37765e2e042270f4e0fc4", - "symbol": "WUF", - "decimals": 4, - "name": "WUFFI", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x4da78059d97f155e18b37765e2e042270f4e0fc4.png", - "aggregators": [ - "CoinGecko", - "Rubic", - "Squid", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x1c2757c1fef1038428b5bef062495ce94bbe92b2": { - "address": "0x1c2757c1fef1038428b5bef062495ce94bbe92b2", - "symbol": "MBASIS", - "decimals": 18, - "name": "Midas mBASIS", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x1c2757c1fef1038428b5bef062495ce94bbe92b2.png", - "aggregators": [ - "CoinGecko", - "LiFi", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0xf3df0a31ec5ea438150987805e841f960b9471b6": { - "address": "0xf3df0a31ec5ea438150987805e841f960b9471b6", - "symbol": "WOO", - "decimals": 18, - "name": "WOO", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xf3df0a31ec5ea438150987805e841f960b9471b6.png", - "aggregators": [ - "CoinGecko", - "LiFi", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0xc48e605c7b722a57277e087a6170b9e227e5ac0a": { - "address": "0xc48e605c7b722a57277e087a6170b9e227e5ac0a", - "symbol": "OMNI", - "decimals": 18, - "name": "OmniCat", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xc48e605c7b722a57277e087a6170b9e227e5ac0a.png", - "aggregators": [ - "CoinGecko", - "Rubic", - "Rango", - "Sonarwatch", - "SushiSwap" - ], - "occurrences": 5 - }, - "0x38f9bf9dce51833ec7f03c9dc218197999999999": { - "address": "0x38f9bf9dce51833ec7f03c9dc218197999999999", - "symbol": "NYA", - "decimals": 18, - "name": "Nya", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x38f9bf9dce51833ec7f03c9dc218197999999999.png", - "aggregators": [ - "CoinGecko", - "Rubic", - "Squid", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x554bba833518793056cf105e66abea330672c0de": { - "address": "0x554bba833518793056cf105e66abea330672c0de", - "symbol": "MAHA", - "decimals": 18, - "name": "Maha", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x554bba833518793056cf105e66abea330672c0de.png", - "aggregators": ["LiFi", "Socket", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 5 - }, - "0x41b94c5867f7f6217c9a30520cb3e793b1ee1b97": { - "address": "0x41b94c5867f7f6217c9a30520cb3e793b1ee1b97", - "symbol": "AXLTIA", - "decimals": 6, - "name": "Axelar Wrapped TIA", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x41b94c5867f7f6217c9a30520cb3e793b1ee1b97.png", - "aggregators": ["LiFi", "Socket", "Rubic", "Squid", "Rango"], - "occurrences": 5 - }, - "0xecc68d0451e20292406967fe7c04280e5238ac7d": { - "address": "0xecc68d0451e20292406967fe7c04280e5238ac7d", - "symbol": "AXLFRXETH", - "decimals": 18, - "name": "Axelar Bridged Frax Ether", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xecc68d0451e20292406967fe7c04280e5238ac7d.png", - "aggregators": ["LiFi", "Rubic", "Squid", "Rango", "Sonarwatch"], - "occurrences": 5 - }, - "0x122a3f185655847980639e8edf0f0f66cd91c5fe": { - "address": "0x122a3f185655847980639e8edf0f0f66cd91c5fe", - "symbol": "FELLA", - "decimals": 18, - "name": "FELLA", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x122a3f185655847980639e8edf0f0f66cd91c5fe.png", - "aggregators": [ - "Rubic", - "Squid", - "Rango", - "Sonarwatch", - "SushiSwap" - ], - "occurrences": 5 - }, - "0x0fa70e156cd3b03ac4080bfe55bd8ab50f5bcb98": { - "address": "0x0fa70e156cd3b03ac4080bfe55bd8ab50f5bcb98", - "symbol": "YOU", - "decimals": 18, - "name": "Youcoin", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x0fa70e156cd3b03ac4080bfe55bd8ab50f5bcb98.png", - "aggregators": [ - "Rubic", - "Squid", - "Rango", - "Sonarwatch", - "SushiSwap" - ], - "occurrences": 5 - }, - "0xae2bddbcc932c2d2cf286bad0028c6f5074c77b5": { - "address": "0xae2bddbcc932c2d2cf286bad0028c6f5074c77b5", - "symbol": "FAH", - "decimals": 18, - "name": "Falcons", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xae2bddbcc932c2d2cf286bad0028c6f5074c77b5.png", - "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0x599f07567656e6961e20fa6a90685d393808c192": { - "address": "0x599f07567656e6961e20fa6a90685d393808c192", - "symbol": "D.O.G.E", - "decimals": 18, - "name": "Department Of Government Efficiency", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x599f07567656e6961e20fa6a90685d393808c192.png", - "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0xf9b738c2e7adc4f299c57afd0890b925a5efea6f": { - "address": "0xf9b738c2e7adc4f299c57afd0890b925a5efea6f", - "symbol": "MINKY", - "decimals": 18, - "name": "MINKY", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xf9b738c2e7adc4f299c57afd0890b925a5efea6f.png", - "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0xc890eb927871660c7259f0dcaaf3d8a7ce5fa8c1": { - "address": "0xc890eb927871660c7259f0dcaaf3d8a7ce5fa8c1", - "symbol": "GMB", - "decimals": 18, - "name": "GMBase", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xc890eb927871660c7259f0dcaaf3d8a7ce5fa8c1.png", - "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0xff9c8aad2629d1be9833fd162a87ab7ce1d68fdc": { - "address": "0xff9c8aad2629d1be9833fd162a87ab7ce1d68fdc", - "symbol": "KRETT", - "decimals": 9, - "name": "Brett Killer", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xff9c8aad2629d1be9833fd162a87ab7ce1d68fdc.png", - "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0x55ff51da774b8ce0ed1abaed1cb76236bc6b2f16": { - "address": "0x55ff51da774b8ce0ed1abaed1cb76236bc6b2f16", - "symbol": "ADM", - "decimals": 18, - "name": "Voice of the Gods by Virtuals", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x55ff51da774b8ce0ed1abaed1cb76236bc6b2f16.png", - "aggregators": ["CoinGecko", "Rubic", "Squid", "Rango"], - "occurrences": 4 - }, - "0x142592f9e9a9cdea6c1167ffceae0fcfb3e7ea97": { - "address": "0x142592f9e9a9cdea6c1167ffceae0fcfb3e7ea97", - "symbol": "BCOR", - "decimals": 18, - "name": "BlueCore", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x142592f9e9a9cdea6c1167ffceae0fcfb3e7ea97.png", - "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0xe3cf8dbcbdc9b220ddead0bd6342e245daff934d": { - "address": "0xe3cf8dbcbdc9b220ddead0bd6342e245daff934d", - "symbol": "PIGGY", - "decimals": 18, - "name": "Piggy", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xe3cf8dbcbdc9b220ddead0bd6342e245daff934d.png", - "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0x1d4731111bd2a50ab3dd5178574e6f3698270ffc": { - "address": "0x1d4731111bd2a50ab3dd5178574e6f3698270ffc", - "symbol": "DWA", - "decimals": 18, - "name": "Degens With Attitude", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x1d4731111bd2a50ab3dd5178574e6f3698270ffc.png", - "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0xa7296cefae8477a81e23230ca5d3a3d6f49d3764": { - "address": "0xa7296cefae8477a81e23230ca5d3a3d6f49d3764", - "symbol": "FIT", - "decimals": 18, - "name": "Fit", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xa7296cefae8477a81e23230ca5d3a3d6f49d3764.png", - "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0xe8e286b378254c4913c0c6964361636384b9d018": { - "address": "0xe8e286b378254c4913c0c6964361636384b9d018", - "symbol": "CORE", - "decimals": 18, - "name": "Warpcore", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xe8e286b378254c4913c0c6964361636384b9d018.png", - "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0x30d19fb77c3ee5cfa97f73d72c6a1e509fa06aef": { - "address": "0x30d19fb77c3ee5cfa97f73d72c6a1e509fa06aef", - "symbol": "CONDO", - "decimals": 18, - "name": "CONDO", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x30d19fb77c3ee5cfa97f73d72c6a1e509fa06aef.png", - "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0x140284d383918c522aca8f1cc6df49043b562e9b": { - "address": "0x140284d383918c522aca8f1cc6df49043b562e9b", - "symbol": "BLAP", - "decimals": 18, - "name": "BLAP", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x140284d383918c522aca8f1cc6df49043b562e9b.png", - "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0x28a730de97dc62a8c88363e0b1049056f1274a70": { - "address": "0x28a730de97dc62a8c88363e0b1049056f1274a70", - "symbol": "CTOSHI", - "decimals": 18, - "name": "Chinese Toshi", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x28a730de97dc62a8c88363e0b1049056f1274a70.png", - "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0xca8e8d244f0d219a6fc9e4793c635cea98d0399c": { - "address": "0xca8e8d244f0d219a6fc9e4793c635cea98d0399c", - "symbol": "CAT", - "decimals": 18, - "name": "Catson", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xca8e8d244f0d219a6fc9e4793c635cea98d0399c.png", - "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0x8b15cbb7ecd9b8fff38da8ead55a20490b99ad11": { - "address": "0x8b15cbb7ecd9b8fff38da8ead55a20490b99ad11", - "symbol": "BALL", - "decimals": 18, - "name": "BitBall", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x8b15cbb7ecd9b8fff38da8ead55a20490b99ad11.png", - "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0xba5ede8d98ab88cea9f0d69918dde28dc23c2553": { - "address": "0xba5ede8d98ab88cea9f0d69918dde28dc23c2553", - "symbol": "NORMUS", - "decimals": 18, - "name": "Normus", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xba5ede8d98ab88cea9f0d69918dde28dc23c2553.png", - "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0x24ca2fcca044b345d0676f770c6cb42ac34809d7": { - "address": "0x24ca2fcca044b345d0676f770c6cb42ac34809d7", - "symbol": "PACATO", - "decimals": 9, - "name": "Pacato", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x24ca2fcca044b345d0676f770c6cb42ac34809d7.png", - "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0xcb2861a1ec1d0392afb9e342d5aa539e4f75b633": { - "address": "0xcb2861a1ec1d0392afb9e342d5aa539e4f75b633", - "symbol": "DUDE", - "decimals": 18, - "name": "Distracted Dudes", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xcb2861a1ec1d0392afb9e342d5aa539e4f75b633.png", - "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0x029c58a909fbe3d4be85a24f414dda923a3fde0f": { - "address": "0x029c58a909fbe3d4be85a24f414dda923a3fde0f", - "symbol": "IRA", - "decimals": 18, - "name": "Defi-Ira", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x029c58a909fbe3d4be85a24f414dda923a3fde0f.png", - "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0x9de16c805a3227b9b92e39a446f9d56cf59fe640": { - "address": "0x9de16c805a3227b9b92e39a446f9d56cf59fe640", - "symbol": "BENTO", - "decimals": 18, - "name": "Bento", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x9de16c805a3227b9b92e39a446f9d56cf59fe640.png", - "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0x30b8a2c8e7fa41e77b54b8faf45c610e7ad909e3": { - "address": "0x30b8a2c8e7fa41e77b54b8faf45c610e7ad909e3", - "symbol": "MMAI", - "decimals": 18, - "name": "Morpho MAI", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x30b8a2c8e7fa41e77b54b8faf45c610e7ad909e3.png", - "aggregators": ["CoinGecko", "LiFi", "Rubic", "Sonarwatch"], - "occurrences": 4 - }, - "0xfef2d7b013b88fec2bfe4d2fee0aeb719af73481": { - "address": "0xfef2d7b013b88fec2bfe4d2fee0aeb719af73481", - "symbol": "ONCHAIN", - "decimals": 18, - "name": "/onchain", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xfef2d7b013b88fec2bfe4d2fee0aeb719af73481.png", - "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0x58dd173f30ecffdfebcd242c71241fb2f179e9b9": { - "address": "0x58dd173f30ecffdfebcd242c71241fb2f179e9b9", - "symbol": "WIG", - "decimals": 18, - "name": "Toupée Tech", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x58dd173f30ecffdfebcd242c71241fb2f179e9b9.png", - "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0x314da69de85145fdd5b7580971e9db0388a2cdc4": { - "address": "0x314da69de85145fdd5b7580971e9db0388a2cdc4", - "symbol": "BSW", - "decimals": 18, - "name": "BasedSwap", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x314da69de85145fdd5b7580971e9db0388a2cdc4.png", - "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0x8d3419b9a18651f3926a205ee0b1acea1e7192de": { - "address": "0x8d3419b9a18651f3926a205ee0b1acea1e7192de", - "symbol": "LOA", - "decimals": 18, - "name": "Law of Attraction", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x8d3419b9a18651f3926a205ee0b1acea1e7192de.png", - "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0xd1e6f3f0a7f40d5412f7471875879381441bf722": { - "address": "0xd1e6f3f0a7f40d5412f7471875879381441bf722", - "symbol": "ARI", - "decimals": 18, - "name": "ARI", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xd1e6f3f0a7f40d5412f7471875879381441bf722.png", - "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0x614747c53cb1636b4b962e15e1d66d3214621100": { - "address": "0x614747c53cb1636b4b962e15e1d66d3214621100", - "symbol": "COOKIE", - "decimals": 18, - "name": "CookieBase", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x614747c53cb1636b4b962e15e1d66d3214621100.png", - "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0x1cd38856ee0fdfd65c757e530e3b1de3061008d3": { - "address": "0x1cd38856ee0fdfd65c757e530e3b1de3061008d3", - "symbol": "GROOVE", - "decimals": 18, - "name": "GROOVE", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x1cd38856ee0fdfd65c757e530e3b1de3061008d3.png", - "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0x64baa63f3eedf9661f736d8e4d42c6f8aa0cda71": { - "address": "0x64baa63f3eedf9661f736d8e4d42c6f8aa0cda71", - "symbol": "GEKO", - "decimals": 18, - "name": "Geko Base", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x64baa63f3eedf9661f736d8e4d42c6f8aa0cda71.png", - "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0x42069de48741db40aef864f8764432bbccbd0b69": { - "address": "0x42069de48741db40aef864f8764432bbccbd0b69", - "symbol": "BETS", - "decimals": 18, - "name": "All Street Bets", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x42069de48741db40aef864f8764432bbccbd0b69.png", - "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0xb4f4776219a20720d03eae922de341a9586de6c9": { - "address": "0xb4f4776219a20720d03eae922de341a9586de6c9", - "symbol": "DEPIN", - "decimals": 18, - "name": "DePIN Baby by Virtuals", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xb4f4776219a20720d03eae922de341a9586de6c9.png", - "aggregators": ["CoinGecko", "Rubic", "Squid", "Rango"], - "occurrences": 4 - }, - "0xbd97693278f1948c59f65f130fd87e7ff7c61d11": { - "address": "0xbd97693278f1948c59f65f130fd87e7ff7c61d11", - "symbol": "NOGWAI", - "decimals": 18, - "name": "Nogwai", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xbd97693278f1948c59f65f130fd87e7ff7c61d11.png", - "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0xbe5614875952b1683cb0a2c20e6509be46d353a4": { - "address": "0xbe5614875952b1683cb0a2c20e6509be46d353a4", - "symbol": "BBRETT", - "decimals": 9, - "name": "Baby Brett on Base", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xbe5614875952b1683cb0a2c20e6509be46d353a4.png", - "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0x92af6f53febd6b4c6f5293840b6076a1b82c4bc2": { - "address": "0x92af6f53febd6b4c6f5293840b6076a1b82c4bc2", - "symbol": "BIRDDOG", - "decimals": 18, - "name": "Bird Dog on Base", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x92af6f53febd6b4c6f5293840b6076a1b82c4bc2.png", - "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0xf24608e0ccb972b0b0f4a6446a0bbf58c701a026": { - "address": "0xf24608e0ccb972b0b0f4a6446a0bbf58c701a026", - "symbol": "MWEURC", - "decimals": 18, - "name": "Moonwell Flagship EURC (Morpho Vault)", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xf24608e0ccb972b0b0f4a6446a0bbf58c701a026.png", - "aggregators": ["CoinGecko", "LiFi", "Rubic", "Sonarwatch"], - "occurrences": 4 - }, - "0x291a8da3c42b7d7f00349d6f1be3c823a2b3fca4": { - "address": "0x291a8da3c42b7d7f00349d6f1be3c823a2b3fca4", - "symbol": "SMOL", - "decimals": 18, - "name": "Tiny Fren", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x291a8da3c42b7d7f00349d6f1be3c823a2b3fca4.png", - "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0x917f39bb33b2483dd19546b1e8d2f09ce481ee44": { - "address": "0x917f39bb33b2483dd19546b1e8d2f09ce481ee44", - "symbol": "PKT", - "decimals": 18, - "name": "PKT", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x917f39bb33b2483dd19546b1e8d2f09ce481ee44.png", - "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0x2d90785e30a9df6cce329c0171cb8ba0f4a5c17b": { - "address": "0x2d90785e30a9df6cce329c0171cb8ba0f4a5c17b", - "symbol": "BYTE", - "decimals": 18, - "name": "BYTE by Virtuals", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x2d90785e30a9df6cce329c0171cb8ba0f4a5c17b.png", - "aggregators": ["CoinGecko", "Rubic", "Squid", "Rango"], - "occurrences": 4 - }, - "0x875ee70143fca7d78e03ee6b13a2b0d68be4af0c": { - "address": "0x875ee70143fca7d78e03ee6b13a2b0d68be4af0c", - "symbol": "PAWTH", - "decimals": 18, - "name": "Pawthereum", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x875ee70143fca7d78e03ee6b13a2b0d68be4af0c.png", - "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0x8ad5b9007556749de59e088c88801a3aaa87134b": { - "address": "0x8ad5b9007556749de59e088c88801a3aaa87134b", - "symbol": "FARTHER", - "decimals": 18, - "name": "Farther", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x8ad5b9007556749de59e088c88801a3aaa87134b.png", - "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0xb372dc09d8d84e1246760ee9d279e504a89f5684": { - "address": "0xb372dc09d8d84e1246760ee9d279e504a89f5684", - "symbol": "MFT", - "decimals": 18, - "name": "MetaFight Token", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xb372dc09d8d84e1246760ee9d279e504a89f5684.png", - "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0x23a96680ccde03bd4bdd9a3e9a0cb56a5d27f7c9": { - "address": "0x23a96680ccde03bd4bdd9a3e9a0cb56a5d27f7c9", - "symbol": "HENLO", - "decimals": 18, - "name": "Henlo", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x23a96680ccde03bd4bdd9a3e9a0cb56a5d27f7c9.png", - "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0x9e53e88dcff56d3062510a745952dec4cefdff9e": { - "address": "0x9e53e88dcff56d3062510a745952dec4cefdff9e", - "symbol": "DOG", - "decimals": 18, - "name": "Basic Dog Meme", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x9e53e88dcff56d3062510a745952dec4cefdff9e.png", - "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0xece7b98bd817ee5b1f2f536daf34d0b6af8bb542": { - "address": "0xece7b98bd817ee5b1f2f536daf34d0b6af8bb542", - "symbol": "ROCK", - "decimals": 18, - "name": "Just a Black Rock on Base", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xece7b98bd817ee5b1f2f536daf34d0b6af8bb542.png", - "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0xa835f70dd5f8b4f0023509f8f36c155785758db0": { - "address": "0xa835f70dd5f8b4f0023509f8f36c155785758db0", - "symbol": "DAWG", - "decimals": 18, - "name": "Cheeky Dawg", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xa835f70dd5f8b4f0023509f8f36c155785758db0.png", - "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0x252d223d0550bc6c137b003d90bc74f5341a2818": { - "address": "0x252d223d0550bc6c137b003d90bc74f5341a2818", - "symbol": "BITBOT", - "decimals": 18, - "name": "Bitbot", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x252d223d0550bc6c137b003d90bc74f5341a2818.png", - "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0xca5c7a459becaac1f2b5ee28bb8a29875b1a37a6": { - "address": "0xca5c7a459becaac1f2b5ee28bb8a29875b1a37a6", - "symbol": "BIRB", - "decimals": 18, - "name": "Birb", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xca5c7a459becaac1f2b5ee28bb8a29875b1a37a6.png", - "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0x28e29ec91db66733a94ee8e3b86a6199117baf99": { - "address": "0x28e29ec91db66733a94ee8e3b86a6199117baf99", - "symbol": "BASED", - "decimals": 18, - "name": "Basedmilio", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x28e29ec91db66733a94ee8e3b86a6199117baf99.png", - "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0x373504da48418c67e6fcd071f33cb0b3b47613c7": { - "address": "0x373504da48418c67e6fcd071f33cb0b3b47613c7", - "symbol": "WBASEDOGE", - "decimals": 18, - "name": "Wrapped BaseDOGE", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x373504da48418c67e6fcd071f33cb0b3b47613c7.png", - "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0x1754e5aadce9567a95f545b146a616ce34eead53": { - "address": "0x1754e5aadce9567a95f545b146a616ce34eead53", - "symbol": "BONKE", - "decimals": 9, - "name": "Bonke (Base)", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x1754e5aadce9567a95f545b146a616ce34eead53.png", - "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0xc4655eb36aa7f1e476a3059a609443ded02ab61f": { - "address": "0xc4655eb36aa7f1e476a3059a609443ded02ab61f", - "symbol": "XETH", - "decimals": 18, - "name": "Particles Money xETH", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xc4655eb36aa7f1e476a3059a609443ded02ab61f.png", - "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0xb9898511bd2bad8bfc23eba641ef97a08f27e730": { - "address": "0xb9898511bd2bad8bfc23eba641ef97a08f27e730", - "symbol": "BONKE", - "decimals": 18, - "name": "BONKE", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xb9898511bd2bad8bfc23eba641ef97a08f27e730.png", - "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0xba5e66fb16944da22a62ea4fd70ad02008744460": { - "address": "0xba5e66fb16944da22a62ea4fd70ad02008744460", - "symbol": "TURBO", - "decimals": 9, - "name": "Based Turbo", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xba5e66fb16944da22a62ea4fd70ad02008744460.png", - "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0x440d06b2ac83ff743d9e149be582a4b2b2c6adec": { - "address": "0x440d06b2ac83ff743d9e149be582a4b2b2c6adec", - "symbol": "JAVLIS", - "decimals": 18, - "name": "Javlis by Virtuals", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x440d06b2ac83ff743d9e149be582a4b2b2c6adec.png", - "aggregators": ["CoinGecko", "Rubic", "Squid", "Rango"], - "occurrences": 4 - }, - "0x17931cfc3217261ce0fa21bb066633c463ed8634": { - "address": "0x17931cfc3217261ce0fa21bb066633c463ed8634", - "symbol": "BASED", - "decimals": 18, - "name": "BASEDChad", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x17931cfc3217261ce0fa21bb066633c463ed8634.png", - "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0x0fabfeacedf47e890c50c8120177fff69c6a1d9b": { - "address": "0x0fabfeacedf47e890c50c8120177fff69c6a1d9b", - "symbol": "PYTHUSDC", - "decimals": 18, - "name": "Pyth USDC", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x0fabfeacedf47e890c50c8120177fff69c6a1d9b.png", - "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0xe31876c6a62a813f57b815d8d2d0f5c8aa06f49b": { - "address": "0xe31876c6a62a813f57b815d8d2d0f5c8aa06f49b", - "symbol": "YOYO", - "decimals": 18, - "name": "Yoyo", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xe31876c6a62a813f57b815d8d2d0f5c8aa06f49b.png", - "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0x8a24d7260cd02d3dfd8eefb66bc17ad4b17d494c": { - "address": "0x8a24d7260cd02d3dfd8eefb66bc17ad4b17d494c", - "symbol": "BSB", - "decimals": 18, - "name": "Based Street Bets", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x8a24d7260cd02d3dfd8eefb66bc17ad4b17d494c.png", - "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0x420b0fa3de2efcf2b2fd04152eb1df36a09717cd": { - "address": "0x420b0fa3de2efcf2b2fd04152eb1df36a09717cd", - "symbol": "KING", - "decimals": 18, - "name": "King Of Memes", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x420b0fa3de2efcf2b2fd04152eb1df36a09717cd.png", - "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0x6432096f054288ee45b7f6ad8863a1f4a8e1201c": { - "address": "0x6432096f054288ee45b7f6ad8863a1f4a8e1201c", - "symbol": "FOMO", - "decimals": 18, - "name": "FOMO Base", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x6432096f054288ee45b7f6ad8863a1f4a8e1201c.png", - "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0xafe5451185513925f5e757f001425338ff93412d": { - "address": "0xafe5451185513925f5e757f001425338ff93412d", - "symbol": "PARTICLE", - "decimals": 18, - "name": "Particles Money", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xafe5451185513925f5e757f001425338ff93412d.png", - "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0x6e934283dae5d5d1831cbe8d557c44c9b83f30ee": { - "address": "0x6e934283dae5d5d1831cbe8d557c44c9b83f30ee", - "symbol": "UATOM", - "decimals": 18, - "name": "Wrapped Cosmos (Universal)", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x6e934283dae5d5d1831cbe8d557c44c9b83f30ee.png", - "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0x347f500323d51e9350285daf299ddb529009e6ae": { - "address": "0x347f500323d51e9350285daf299ddb529009e6ae", - "symbol": "BLERF", - "decimals": 18, - "name": "BLERF", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x347f500323d51e9350285daf299ddb529009e6ae.png", - "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0xc36f19bccd51e3f1163eff07b5edf9d2850acec4": { - "address": "0xc36f19bccd51e3f1163eff07b5edf9d2850acec4", - "symbol": "BROGG", - "decimals": 18, - "name": "Brett's Dog", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xc36f19bccd51e3f1163eff07b5edf9d2850acec4.png", - "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0x9f235d23354857efe6c541db92a9ef1877689bcb": { - "address": "0x9f235d23354857efe6c541db92a9ef1877689bcb", - "symbol": "$GOODLE", - "decimals": 18, - "name": "Goodle", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x9f235d23354857efe6c541db92a9ef1877689bcb.png", - "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0x7d12aeb5d96d221071d176980d23c213d88d9998": { - "address": "0x7d12aeb5d96d221071d176980d23c213d88d9998", - "symbol": "FCKN", - "decimals": 18, - "name": "Fried Chicken", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x7d12aeb5d96d221071d176980d23c213d88d9998.png", - "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0x8a638ea79f71f3b91bdc96bbdf9fb27c93013d60": { - "address": "0x8a638ea79f71f3b91bdc96bbdf9fb27c93013d60", - "symbol": "$BBT", - "decimals": 5, - "name": "Baby Tiger", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x8a638ea79f71f3b91bdc96bbdf9fb27c93013d60.png", - "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0x7d89e05c0b93b24b5cb23a073e60d008fed1acf9": { - "address": "0x7d89e05c0b93b24b5cb23a073e60d008fed1acf9", - "symbol": "MEMBER", - "decimals": 18, - "name": "member", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x7d89e05c0b93b24b5cb23a073e60d008fed1acf9.png", - "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0x3e05d37cfbd8caaad9e3322d35cc727afaff63e3": { - "address": "0x3e05d37cfbd8caaad9e3322d35cc727afaff63e3", - "symbol": "BENG", - "decimals": 18, - "name": "Based Peng", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x3e05d37cfbd8caaad9e3322d35cc727afaff63e3.png", - "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0x6e37c95b43566e538d8c278eb69b00fc717a001b": { - "address": "0x6e37c95b43566e538d8c278eb69b00fc717a001b", - "symbol": "RE7RWA", - "decimals": 18, - "name": "Re7 RWA", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x6e37c95b43566e538d8c278eb69b00fc717a001b.png", - "aggregators": ["CoinGecko", "LiFi", "Rubic", "Sonarwatch"], - "occurrences": 4 - }, - "0x4c96a67b0577358894407af7bc3158fc1dffbeb5": { - "address": "0x4c96a67b0577358894407af7bc3158fc1dffbeb5", - "symbol": "POV", - "decimals": 18, - "name": "Degen POV", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x4c96a67b0577358894407af7bc3158fc1dffbeb5.png", - "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0xf5c83ea805e5aeff5de24c7da23ef246c2bf8ec7": { - "address": "0xf5c83ea805e5aeff5de24c7da23ef246c2bf8ec7", - "symbol": "MONSTA", - "decimals": 18, - "name": "Based Monsta", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xf5c83ea805e5aeff5de24c7da23ef246c2bf8ec7.png", - "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0xb4e017223fd3d639d0264de4da1b9e080325cb5e": { - "address": "0xb4e017223fd3d639d0264de4da1b9e080325cb5e", - "symbol": "SVTS", - "decimals": 18, - "name": "SyncVault", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xb4e017223fd3d639d0264de4da1b9e080325cb5e.png", - "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0x5597ce42b315f29e42071d231dcd0158da35b77b": { - "address": "0x5597ce42b315f29e42071d231dcd0158da35b77b", - "symbol": "KENDU", - "decimals": 18, - "name": "Kendu Inu", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x5597ce42b315f29e42071d231dcd0158da35b77b.png", - "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0xe74731ba9d1da6fd3c8c60ff363732bebac5273e": { - "address": "0xe74731ba9d1da6fd3c8c60ff363732bebac5273e", - "symbol": "MAICRO", - "decimals": 18, - "name": "maicrotrader by Virtuals", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xe74731ba9d1da6fd3c8c60ff363732bebac5273e.png", - "aggregators": ["CoinGecko", "Rubic", "Squid", "Rango"], - "occurrences": 4 - }, - "0x7a8a5012022bccbf3ea4b03cd2bb5583d915fb1a": { - "address": "0x7a8a5012022bccbf3ea4b03cd2bb5583d915fb1a", - "symbol": "CHUCK", - "decimals": 18, - "name": "Chuck", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x7a8a5012022bccbf3ea4b03cd2bb5583d915fb1a.png", - "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0x698dc45e4f10966f6d1d98e3bfd7071d8144c233": { - "address": "0x698dc45e4f10966f6d1d98e3bfd7071d8144c233", - "symbol": "PEPE", - "decimals": 9, - "name": "PEPE 0x69 ON BASE", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x698dc45e4f10966f6d1d98e3bfd7071d8144c233.png", - "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0x080c169cd58122f8e1d36713bf8bcbca45176905": { - "address": "0x080c169cd58122f8e1d36713bf8bcbca45176905", - "symbol": "MAXI", - "decimals": 18, - "name": "Maxi", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x080c169cd58122f8e1d36713bf8bcbca45176905.png", - "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0x9239e9f9e325e706ef8b89936ece9d48896abbe3": { - "address": "0x9239e9f9e325e706ef8b89936ece9d48896abbe3", - "symbol": "ARTTO", - "decimals": 18, - "name": "Artto AI", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x9239e9f9e325e706ef8b89936ece9d48896abbe3.png", - "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0xee30c78d32b8fd5b8eec8e4f08fd88a3f68971d5": { - "address": "0xee30c78d32b8fd5b8eec8e4f08fd88a3f68971d5", - "symbol": "ASTRO", - "decimals": 18, - "name": "Astro Fuel", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xee30c78d32b8fd5b8eec8e4f08fd88a3f68971d5.png", - "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0x461ee40928677644b8195662ab91bcdaae6ef105": { - "address": "0x461ee40928677644b8195662ab91bcdaae6ef105", - "symbol": "DOOK", - "decimals": 18, - "name": "Dook", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x461ee40928677644b8195662ab91bcdaae6ef105.png", - "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0x891502ba08132653151f822a3a430198f1844115": { - "address": "0x891502ba08132653151f822a3a430198f1844115", - "symbol": "BLUE", - "decimals": 18, - "name": "Blue Guy", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x891502ba08132653151f822a3a430198f1844115.png", - "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0x75570e1189ffc1d63b3417cdf0889f87cd3e9bd1": { - "address": "0x75570e1189ffc1d63b3417cdf0889f87cd3e9bd1", - "symbol": "BUNNY", - "decimals": 18, - "name": "Based Bunny", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x75570e1189ffc1d63b3417cdf0889f87cd3e9bd1.png", - "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0x0000000f2eb9f69274678c76222b35eec7588a65": { - "address": "0x0000000f2eb9f69274678c76222b35eec7588a65", - "symbol": "YOUSD", - "decimals": 6, - "name": "YOUSD", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x0000000f2eb9f69274678c76222b35eec7588a65.png", - "aggregators": ["CoinGecko", "LiFi", "Rubic", "Rango"], - "occurrences": 4 - }, - "0x1e0bb24ed6c806c01ef2f880a4b91adb90099ea7": { - "address": "0x1e0bb24ed6c806c01ef2f880a4b91adb90099ea7", - "symbol": "BRRR", - "decimals": 18, - "name": "BUCCI", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x1e0bb24ed6c806c01ef2f880a4b91adb90099ea7.png", - "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0xd11a584de5fa50a4ee560c48ab44dbb31823d9bc": { - "address": "0xd11a584de5fa50a4ee560c48ab44dbb31823d9bc", - "symbol": "BUTT", - "decimals": 18, - "name": "Buttman", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xd11a584de5fa50a4ee560c48ab44dbb31823d9bc.png", - "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0x88faea256f789f8dd50de54f9c807eef24f71b16": { - "address": "0x88faea256f789f8dd50de54f9c807eef24f71b16", - "symbol": "WOLF", - "decimals": 18, - "name": "Landwolf", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x88faea256f789f8dd50de54f9c807eef24f71b16.png", - "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0x3b916b8f6a710e9240ff08c1dd646dd8e8ed9e1e": { - "address": "0x3b916b8f6a710e9240ff08c1dd646dd8e8ed9e1e", - "symbol": "DOG", - "decimals": 8, - "name": "Base DOG", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x3b916b8f6a710e9240ff08c1dd646dd8e8ed9e1e.png", - "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0xd327d36eb6e1f250d191cd62497d08b4aaa843ce": { - "address": "0xd327d36eb6e1f250d191cd62497d08b4aaa843ce", - "symbol": "FOMO", - "decimals": 9, - "name": "Father Of Meme: Origin", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xd327d36eb6e1f250d191cd62497d08b4aaa843ce.png", - "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0x1b1514c76c54ce8807d7fdedf85c664eee734ece": { - "address": "0x1b1514c76c54ce8807d7fdedf85c664eee734ece", - "symbol": "$PURP", - "decimals": 18, - "name": "Purp", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x1b1514c76c54ce8807d7fdedf85c664eee734ece.png", - "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0x33b7f6225b4cbe5d368b7bb4807d6375b18b8c2b": { - "address": "0x33b7f6225b4cbe5d368b7bb4807d6375b18b8c2b", - "symbol": "CANDY", - "decimals": 9, - "name": "Candy", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x33b7f6225b4cbe5d368b7bb4807d6375b18b8c2b.png", - "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0x132bbda4a40d4d6288be49b637ec2c113b5d7600": { - "address": "0x132bbda4a40d4d6288be49b637ec2c113b5d7600", - "symbol": "DEFIDO", - "decimals": 18, - "name": "DeFido", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x132bbda4a40d4d6288be49b637ec2c113b5d7600.png", - "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0x26f1bb40ea88b46ceb21557dc0ffac7b7c0ad40f": { - "address": "0x26f1bb40ea88b46ceb21557dc0ffac7b7c0ad40f", - "symbol": "ALF", - "decimals": 18, - "name": "ALF", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x26f1bb40ea88b46ceb21557dc0ffac7b7c0ad40f.png", - "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0x5ff986de80fc8502ea9293b8c06ef22b1e3f11e9": { - "address": "0x5ff986de80fc8502ea9293b8c06ef22b1e3f11e9", - "symbol": "BINU", - "decimals": 18, - "name": "Base Inu", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x5ff986de80fc8502ea9293b8c06ef22b1e3f11e9.png", - "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0xfadb26be94c1f959f900bf88cd396b3e803481d6": { - "address": "0xfadb26be94c1f959f900bf88cd396b3e803481d6", - "symbol": "ESMX", - "decimals": 18, - "name": "ESM X", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xfadb26be94c1f959f900bf88cd396b3e803481d6.png", - "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0xaf07d812d1dcec20bf741075bc18660738d226dd": { - "address": "0xaf07d812d1dcec20bf741075bc18660738d226dd", - "symbol": "SNORT", - "decimals": 18, - "name": "SNORT", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xaf07d812d1dcec20bf741075bc18660738d226dd.png", - "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0xfa1f6e048e66ac240a4bb7eab7ee888e76081a6c": { - "address": "0xfa1f6e048e66ac240a4bb7eab7ee888e76081a6c", - "symbol": "DRONE", - "decimals": 18, - "name": "Drone", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xfa1f6e048e66ac240a4bb7eab7ee888e76081a6c.png", - "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0xbb5d04c40fa063faf213c4e0b8086655164269ef": { - "address": "0xbb5d04c40fa063faf213c4e0b8086655164269ef", - "symbol": "GLOOM", - "decimals": 18, - "name": "Gloom", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xbb5d04c40fa063faf213c4e0b8086655164269ef.png", - "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0x22222bd682745cf032006394750739684e45a5f8": { - "address": "0x22222bd682745cf032006394750739684e45a5f8", - "symbol": "POLLUK", - "decimals": 18, - "name": "Jasse Polluk", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x22222bd682745cf032006394750739684e45a5f8.png", - "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0x9aaae745cf2830fb8ddc6248b17436dc3a5e701c": { - "address": "0x9aaae745cf2830fb8ddc6248b17436dc3a5e701c", - "symbol": "GOCHU", - "decimals": 18, - "name": "Gochujangcoin", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x9aaae745cf2830fb8ddc6248b17436dc3a5e701c.png", - "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0x8e0e798966382e53bfb145d474254cbe065c17dc": { - "address": "0x8e0e798966382e53bfb145d474254cbe065c17dc", - "symbol": "GAME", - "decimals": 18, - "name": "Game of Memes (ETH)", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x8e0e798966382e53bfb145d474254cbe065c17dc.png", - "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0xcde172dc5ffc46d228838446c57c1227e0b82049": { - "address": "0xcde172dc5ffc46d228838446c57c1227e0b82049", - "symbol": "BOOMER", - "decimals": 18, - "name": "Boomer", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xcde172dc5ffc46d228838446c57c1227e0b82049.png", - "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0xbd15d0c77133d3200756dc4d7a4f577dbb2cf6a3": { - "address": "0xbd15d0c77133d3200756dc4d7a4f577dbb2cf6a3", - "symbol": "SAFE", - "decimals": 18, - "name": "BaseSafe", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xbd15d0c77133d3200756dc4d7a4f577dbb2cf6a3.png", - "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0xecd8bcc95be6aebcae272ee388c9037b24ab28da": { - "address": "0xecd8bcc95be6aebcae272ee388c9037b24ab28da", - "symbol": "GLE", - "decimals": 18, - "name": "Green Life Energy", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xecd8bcc95be6aebcae272ee388c9037b24ab28da.png", - "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0xddf98aad8180c3e368467782cd07ae2e3e8d36a5": { - "address": "0xddf98aad8180c3e368467782cd07ae2e3e8d36a5", - "symbol": "AM", - "decimals": 18, - "name": "Animated", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xddf98aad8180c3e368467782cd07ae2e3e8d36a5.png", - "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0x642e993fa91ffe9fb24d39a8eb0e0663145f8e92": { - "address": "0x642e993fa91ffe9fb24d39a8eb0e0663145f8e92", - "symbol": "RABBIT", - "decimals": 18, - "name": "BASED RABBIT", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x642e993fa91ffe9fb24d39a8eb0e0663145f8e92.png", - "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0xfdc944fb59201fb163596ee5e209ebc8fa4dcdc5": { - "address": "0xfdc944fb59201fb163596ee5e209ebc8fa4dcdc5", - "symbol": "AMC", - "decimals": 18, - "name": "AMC", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xfdc944fb59201fb163596ee5e209ebc8fa4dcdc5.png", - "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0x7b8d415f5239ae5e0f485971529b4f798e63b0b4": { - "address": "0x7b8d415f5239ae5e0f485971529b4f798e63b0b4", - "symbol": "BLUBI", - "decimals": 18, - "name": "Blubi", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x7b8d415f5239ae5e0f485971529b4f798e63b0b4.png", - "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0xbe92452bb46485af3308e6d77786bfbe3557808d": { - "address": "0xbe92452bb46485af3308e6d77786bfbe3557808d", - "symbol": "CASH", - "decimals": 18, - "name": "Phase Dollar", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xbe92452bb46485af3308e6d77786bfbe3557808d.png", - "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0xe18c07d858fb1bbf8c06fd78c13b86afd3d04e28": { - "address": "0xe18c07d858fb1bbf8c06fd78c13b86afd3d04e28", - "symbol": "HEMPY", - "decimals": 18, - "name": "Hempy", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xe18c07d858fb1bbf8c06fd78c13b86afd3d04e28.png", - "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0x077a32fdef94dbb0bdcf917450a9cacf68ed236f": { - "address": "0x077a32fdef94dbb0bdcf917450a9cacf68ed236f", - "symbol": "LUMI", - "decimals": 18, - "name": "LPC_Ai_Lumi by Virtuals", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x077a32fdef94dbb0bdcf917450a9cacf68ed236f.png", - "aggregators": ["CoinGecko", "Rubic", "Squid", "Rango"], - "occurrences": 4 - }, - "0x686b1209b2de12818aa69dd139530448d0c792b3": { - "address": "0x686b1209b2de12818aa69dd139530448d0c792b3", - "symbol": "POOP", - "decimals": 18, - "name": "Poopcoin", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x686b1209b2de12818aa69dd139530448d0c792b3.png", - "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0x7e72d6410803c40e73806f2a72e3eade5d075cc0": { - "address": "0x7e72d6410803c40e73806f2a72e3eade5d075cc0", - "symbol": "MOB", - "decimals": 18, - "name": "Marvin On Base", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x7e72d6410803c40e73806f2a72e3eade5d075cc0.png", - "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0xf95e1c0a67492720ca22842122fe7fa63d5519e5": { - "address": "0xf95e1c0a67492720ca22842122fe7fa63d5519e5", - "symbol": "LUNARLENS", - "decimals": 18, - "name": "Lunarlens", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xf95e1c0a67492720ca22842122fe7fa63d5519e5.png", - "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0x729031b3995538ddf6b6bce6e68d5d6fdeb3ccb5": { - "address": "0x729031b3995538ddf6b6bce6e68d5d6fdeb3ccb5", - "symbol": "RIKY", - "decimals": 18, - "name": "Riky The Raccoon", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x729031b3995538ddf6b6bce6e68d5d6fdeb3ccb5.png", - "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0x8300e8e6b258147972972dbcf87719da7b817a9c": { - "address": "0x8300e8e6b258147972972dbcf87719da7b817a9c", - "symbol": "PAT", - "decimals": 18, - "name": "Pat", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x8300e8e6b258147972972dbcf87719da7b817a9c.png", - "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0x7546e0d4d947a15f914e33de6616ffed826f45ef": { - "address": "0x7546e0d4d947a15f914e33de6616ffed826f45ef", - "symbol": "BLUNNY", - "decimals": 18, - "name": "Blunny", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x7546e0d4d947a15f914e33de6616ffed826f45ef.png", - "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0xba71cb8ef2d59de7399745793657838829e0b147": { - "address": "0xba71cb8ef2d59de7399745793657838829e0b147", - "symbol": "SIAM", - "decimals": 18, - "name": "Siamese", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xba71cb8ef2d59de7399745793657838829e0b147.png", - "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0x92fb1b7d9730b2f1bd4e2e91368c1eb6fdd2a009": { - "address": "0x92fb1b7d9730b2f1bd4e2e91368c1eb6fdd2a009", - "symbol": "JOGECO", - "decimals": 9, - "name": "Jogeco Dog", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x92fb1b7d9730b2f1bd4e2e91368c1eb6fdd2a009.png", - "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0x543ba622733bc9a7bfadd1d07b6c35ae1f9659d9": { - "address": "0x543ba622733bc9a7bfadd1d07b6c35ae1f9659d9", - "symbol": "ANDY", - "decimals": 18, - "name": "Based Andy", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x543ba622733bc9a7bfadd1d07b6c35ae1f9659d9.png", - "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0x6d22d3ed82c947be8860a86a69c4b0cb0f65589e": { - "address": "0x6d22d3ed82c947be8860a86a69c4b0cb0f65589e", - "symbol": "CHONK", - "decimals": 18, - "name": "Chonk", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x6d22d3ed82c947be8860a86a69c4b0cb0f65589e.png", - "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0x4229c271c19ca5f319fb67b4bc8a40761a6d6299": { - "address": "0x4229c271c19ca5f319fb67b4bc8a40761a6d6299", - "symbol": "NEGED", - "decimals": 18, - "name": "Neged", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x4229c271c19ca5f319fb67b4bc8a40761a6d6299.png", - "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0x73326b4d0225c429bed050c11c4422d91470aaf4": { - "address": "0x73326b4d0225c429bed050c11c4422d91470aaf4", - "symbol": "DACKIE", - "decimals": 18, - "name": "DACKIE", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x73326b4d0225c429bed050c11c4422d91470aaf4.png", - "aggregators": ["CoinGecko", "LiFi", "Rubic", "Rango"], - "occurrences": 4 - }, - "0x32e0f9d26d1e33625742a52620cc76c1130efde6": { - "address": "0x32e0f9d26d1e33625742a52620cc76c1130efde6", - "symbol": "BASED", - "decimals": 18, - "name": "BASED", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x32e0f9d26d1e33625742a52620cc76c1130efde6.png", - "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0xf404bc113f4fc7c2447cb2556dcf5a56e29fa2dd": { - "address": "0xf404bc113f4fc7c2447cb2556dcf5a56e29fa2dd", - "symbol": "SCOOP", - "decimals": 18, - "name": "Tradescoop by Virtuals", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xf404bc113f4fc7c2447cb2556dcf5a56e29fa2dd.png", - "aggregators": ["CoinGecko", "Rubic", "Squid", "Rango"], - "occurrences": 4 - }, - "0xbeefa1abfebe621df50ceaef9f54fdb73648c92c": { - "address": "0xbeefa1abfebe621df50ceaef9f54fdb73648c92c", - "symbol": "STEAKUSDA", - "decimals": 18, - "name": "Steakhouse USDA (Base) Morpho Vault", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xbeefa1abfebe621df50ceaef9f54fdb73648c92c.png", - "aggregators": ["CoinGecko", "LiFi", "Rubic", "Sonarwatch"], - "occurrences": 4 - }, - "0xbeef03f0bf3cb2e348393008a826538aadd7d183": { - "address": "0xbeef03f0bf3cb2e348393008a826538aadd7d183", - "symbol": "STEAKUSDM", - "decimals": 18, - "name": "Steakhouse USDM (Base) Morpho Vault", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xbeef03f0bf3cb2e348393008a826538aadd7d183.png", - "aggregators": ["CoinGecko", "LiFi", "Rubic", "Sonarwatch"], - "occurrences": 4 - }, - "0x76baa16ff15d61d32e6b3576c3a8c83a25c2f180": { - "address": "0x76baa16ff15d61d32e6b3576c3a8c83a25c2f180", - "symbol": "PLEB", - "decimals": 18, - "name": "Pleb", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x76baa16ff15d61d32e6b3576c3a8c83a25c2f180.png", - "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0xd473475958d4c1538418224a52e5c0a6c997835a": { - "address": "0xd473475958d4c1538418224a52e5c0a6c997835a", - "symbol": "CAP", - "decimals": 18, - "name": "Based Brians", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xd473475958d4c1538418224a52e5c0a6c997835a.png", - "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0xd2699f9fddc04d262a819808f561c153098c2408": { - "address": "0xd2699f9fddc04d262a819808f561c153098c2408", - "symbol": "MOON", - "decimals": 18, - "name": "Moon", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xd2699f9fddc04d262a819808f561c153098c2408.png", - "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0x968d6a288d7b024d5012c0b25d67a889e4e3ec19": { - "address": "0x968d6a288d7b024d5012c0b25d67a889e4e3ec19", - "symbol": "INT", - "decimals": 18, - "name": "Internet Token", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x968d6a288d7b024d5012c0b25d67a889e4e3ec19.png", - "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0x357655df177fb0229dc8aca977114a420bf81799": { - "address": "0x357655df177fb0229dc8aca977114a420bf81799", - "symbol": "RFC", - "decimals": 18, - "name": "Royal Finance Coin", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x357655df177fb0229dc8aca977114a420bf81799.png", - "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0x7f2c169e3243da4e03acd95a45fbaa96aaeb2803": { - "address": "0x7f2c169e3243da4e03acd95a45fbaa96aaeb2803", - "symbol": "CV3AI", - "decimals": 18, - "name": "CV3 by Virtuals", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x7f2c169e3243da4e03acd95a45fbaa96aaeb2803.png", - "aggregators": ["CoinGecko", "Rubic", "Squid", "Rango"], - "occurrences": 4 - }, - "0x8e16d46cb2da01cdd49601ec73d7b0344969ae33": { - "address": "0x8e16d46cb2da01cdd49601ec73d7b0344969ae33", - "symbol": "COIN", - "decimals": 18, - "name": "Coin on Base", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x8e16d46cb2da01cdd49601ec73d7b0344969ae33.png", - "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0x4e98b3917310b0e1f0d53c0619f87fe48deb804b": { - "address": "0x4e98b3917310b0e1f0d53c0619f87fe48deb804b", - "symbol": "LOBO", - "decimals": 18, - "name": "LOBO", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x4e98b3917310b0e1f0d53c0619f87fe48deb804b.png", - "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0x6f35720b272bf23832852b13ae9888c706e1a379": { - "address": "0x6f35720b272bf23832852b13ae9888c706e1a379", - "symbol": "APU", - "decimals": 18, - "name": "Based Apu", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x6f35720b272bf23832852b13ae9888c706e1a379.png", - "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0xaf0aa8de89e3dbdafe144abcdddafa568a526299": { - "address": "0xaf0aa8de89e3dbdafe144abcdddafa568a526299", - "symbol": "HADES", - "decimals": 18, - "name": "HadesAI by Virtuals", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xaf0aa8de89e3dbdafe144abcdddafa568a526299.png", - "aggregators": ["CoinGecko", "Rubic", "Squid", "Rango"], - "occurrences": 4 - }, - "0x77f8fbccd9995d1a00ae94badaa293e7eafc4a4d": { - "address": "0x77f8fbccd9995d1a00ae94badaa293e7eafc4a4d", - "symbol": "MIU", - "decimals": 18, - "name": "Miu", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x77f8fbccd9995d1a00ae94badaa293e7eafc4a4d.png", - "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0xef0b2ccb53a683fa48799245f376d6a60929f003": { - "address": "0xef0b2ccb53a683fa48799245f376d6a60929f003", - "symbol": "MOON", - "decimals": 18, - "name": "MoonBase", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xef0b2ccb53a683fa48799245f376d6a60929f003.png", - "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0x5a03841c2e2f5811f9e548cf98e88e878e55d99e": { - "address": "0x5a03841c2e2f5811f9e548cf98e88e878e55d99e", - "symbol": "UAXS", - "decimals": 18, - "name": "Wrapped Axie Infinity Shards (Universal)", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x5a03841c2e2f5811f9e548cf98e88e878e55d99e.png", - "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0x84a9aae8fcc085dbe11524f570716d89b772f430": { - "address": "0x84a9aae8fcc085dbe11524f570716d89b772f430", - "symbol": "DTRXBT", - "decimals": 18, - "name": "DTRXBT", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x84a9aae8fcc085dbe11524f570716d89b772f430.png", - "aggregators": ["CoinGecko", "Rubic", "Squid", "Rango"], - "occurrences": 4 - }, - "0x1c9f5e5b5c172955660c11ec0df65b68ecb5fb69": { - "address": "0x1c9f5e5b5c172955660c11ec0df65b68ecb5fb69", - "symbol": "HELP", - "decimals": 18, - "name": "Help", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x1c9f5e5b5c172955660c11ec0df65b68ecb5fb69.png", - "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0x3c281a39944a2319aa653d81cfd93ca10983d234": { - "address": "0x3c281a39944a2319aa653d81cfd93ca10983d234", - "symbol": "BUILD", - "decimals": 18, - "name": "Build", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x3c281a39944a2319aa653d81cfd93ca10983d234.png", - "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0xf7ccb8a6e3400eb8eb0c47619134f7516e025215": { - "address": "0xf7ccb8a6e3400eb8eb0c47619134f7516e025215", - "symbol": "SUMMER", - "decimals": 8, - "name": "Onchain Summer", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xf7ccb8a6e3400eb8eb0c47619134f7516e025215.png", - "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0xc44141a684f6aa4e36cd9264ab55550b03c88643": { - "address": "0xc44141a684f6aa4e36cd9264ab55550b03c88643", - "symbol": "ETHY", - "decimals": 18, - "name": "Ethy AI by Virtuals", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xc44141a684f6aa4e36cd9264ab55550b03c88643.png", - "aggregators": ["CoinGecko", "Rubic", "Squid", "Rango"], - "occurrences": 4 - }, - "0xb043bad01195700e737d0aee852584eae9393134": { - "address": "0xb043bad01195700e737d0aee852584eae9393134", - "symbol": "FLOWER", - "decimals": 18, - "name": "Farcaster Flower", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xb043bad01195700e737d0aee852584eae9393134.png", - "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0x314d7f9e2f55b430ef656fbb98a7635d43a2261e": { - "address": "0x314d7f9e2f55b430ef656fbb98a7635d43a2261e", - "symbol": "NAYM", - "decimals": 18, - "name": "Naym", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x314d7f9e2f55b430ef656fbb98a7635d43a2261e.png", - "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0x589864a9892b1a736ae70a91824ab4dc591fd8cd": { - "address": "0x589864a9892b1a736ae70a91824ab4dc591fd8cd", - "symbol": "GIB", - "decimals": 18, - "name": "Gibape", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x589864a9892b1a736ae70a91824ab4dc591fd8cd.png", - "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0xf0268c5f9aa95baf5c25d646aabb900ac12f0800": { - "address": "0xf0268c5f9aa95baf5c25d646aabb900ac12f0800", - "symbol": "RGOAT", - "decimals": 8, - "name": "RealGoat", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xf0268c5f9aa95baf5c25d646aabb900ac12f0800.png", - "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0xf086206423f9e9686192bee98c042131d7bc1336": { - "address": "0xf086206423f9e9686192bee98c042131d7bc1336", - "symbol": "DOGNUS", - "decimals": 18, - "name": "Dognus", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xf086206423f9e9686192bee98c042131d7bc1336.png", - "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0xa1ebb0922a7f43df50b34ad9bf2f602f88aab869": { - "address": "0xa1ebb0922a7f43df50b34ad9bf2f602f88aab869", - "symbol": "TICKLE", - "decimals": 18, - "name": "Tickle", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xa1ebb0922a7f43df50b34ad9bf2f602f88aab869.png", - "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0x6797b6244fa75f2e78cdffc3a4eb169332b730cc": { - "address": "0x6797b6244fa75f2e78cdffc3a4eb169332b730cc", - "symbol": "EAI", - "decimals": 18, - "name": "Eagle AI", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x6797b6244fa75f2e78cdffc3a4eb169332b730cc.png", - "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0xb56d0839998fd79efcd15c27cf966250aa58d6d3": { - "address": "0xb56d0839998fd79efcd15c27cf966250aa58d6d3", - "symbol": "USA", - "decimals": 18, - "name": "Based USA", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xb56d0839998fd79efcd15c27cf966250aa58d6d3.png", - "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0x76734b57dfe834f102fb61e1ebf844adf8dd931e": { - "address": "0x76734b57dfe834f102fb61e1ebf844adf8dd931e", - "symbol": "WEIRDO", - "decimals": 8, - "name": "Weirdo", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x76734b57dfe834f102fb61e1ebf844adf8dd931e.png", - "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0x4d58608eff50b691a3b76189af2a7a123df1e9ba": { - "address": "0x4d58608eff50b691a3b76189af2a7a123df1e9ba", - "symbol": "$BOYS", - "decimals": 9, - "name": "Boysclubbase", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x4d58608eff50b691a3b76189af2a7a123df1e9ba.png", - "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0xdb6e0e5094a25a052ab6845a9f1e486b9a9b3dde": { - "address": "0xdb6e0e5094a25a052ab6845a9f1e486b9a9b3dde", - "symbol": "OKAYEG", - "decimals": 18, - "name": "Okayeg", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xdb6e0e5094a25a052ab6845a9f1e486b9a9b3dde.png", - "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0xd1412d909f67b8db7505ddfcf26cf2303f4b1bb4": { - "address": "0xd1412d909f67b8db7505ddfcf26cf2303f4b1bb4", - "symbol": "RIKU", - "decimals": 18, - "name": "RIKU", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xd1412d909f67b8db7505ddfcf26cf2303f4b1bb4.png", - "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0xd27c288fd69f228e0c02f79e5ecadff962e05a2b": { - "address": "0xd27c288fd69f228e0c02f79e5ecadff962e05a2b", - "symbol": "FIRE", - "decimals": 18, - "name": "Fire", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xd27c288fd69f228e0c02f79e5ecadff962e05a2b.png", - "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0x5ed25e305e08f58afd7995eac72563e6be65a617": { - "address": "0x5ed25e305e08f58afd7995eac72563e6be65a617", - "symbol": "UNEAR", - "decimals": 18, - "name": "Wrapped NEAR (Universal)", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x5ed25e305e08f58afd7995eac72563e6be65a617.png", - "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0xd727e37dccd5720d1e3849606d3ab669cb68c368": { - "address": "0xd727e37dccd5720d1e3849606d3ab669cb68c368", - "symbol": "9-5", - "decimals": 18, - "name": "9to5", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xd727e37dccd5720d1e3849606d3ab669cb68c368.png", - "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0xf56b3b3972f2f154555a0b62ff5a22b7b2a3c90b": { - "address": "0xf56b3b3972f2f154555a0b62ff5a22b7b2a3c90b", - "symbol": "ZAP", - "decimals": 18, - "name": "ZAP", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xf56b3b3972f2f154555a0b62ff5a22b7b2a3c90b.png", - "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0x30121d81f4407474a6d93f5c3060f14aaa098a61": { - "address": "0x30121d81f4407474a6d93f5c3060f14aaa098a61", - "symbol": "LABZ", - "decimals": 18, - "name": "Insane Labz (Base)", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x30121d81f4407474a6d93f5c3060f14aaa098a61.png", - "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0x72499bddb67f4ca150e1f522ca82c87bc9fb18c8": { - "address": "0x72499bddb67f4ca150e1f522ca82c87bc9fb18c8", - "symbol": "BONK", - "decimals": 18, - "name": "Bonk On Base", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x72499bddb67f4ca150e1f522ca82c87bc9fb18c8.png", - "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0x50ce4129ca261ccde4eb100c170843c2936bc11b": { - "address": "0x50ce4129ca261ccde4eb100c170843c2936bc11b", - "symbol": "KOLZ", - "decimals": 18, - "name": "KOLZ", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x50ce4129ca261ccde4eb100c170843c2936bc11b.png", - "aggregators": ["CoinGecko", "Socket", "Rubic", "Rango"], - "occurrences": 4 - }, - "0xe4fc328ae212232efc5f5dd0e0b1537cd055d715": { - "address": "0xe4fc328ae212232efc5f5dd0e0b1537cd055d715", - "symbol": "GCAT", - "decimals": 9, - "name": "Giga Cat", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xe4fc328ae212232efc5f5dd0e0b1537cd055d715.png", - "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0x3628d69aa2d66e9efe95ab1267d440dec24389b6": { - "address": "0x3628d69aa2d66e9efe95ab1267d440dec24389b6", - "symbol": "UOMI", - "decimals": 18, - "name": "UOMI", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x3628d69aa2d66e9efe95ab1267d440dec24389b6.png", - "aggregators": ["CoinGecko", "Socket", "Rubic", "Rango"], - "occurrences": 4 - }, - "0xd9df947d2a8f9c28c37af7cb7c526022fb14efa2": { - "address": "0xd9df947d2a8f9c28c37af7cb7c526022fb14efa2", - "symbol": "MEED", - "decimals": 18, - "name": "Meeds DAO", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xd9df947d2a8f9c28c37af7cb7c526022fb14efa2.png", - "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0x227d920e20ebac8a40e7d6431b7d724bb64d7245": { - "address": "0x227d920e20ebac8a40e7d6431b7d724bb64d7245", - "symbol": "SWEAT", - "decimals": 18, - "name": "SWEAT", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x227d920e20ebac8a40e7d6431b7d724bb64d7245.png", - "aggregators": ["CoinGecko", "LiFi", "Rubic", "Rango"], - "occurrences": 4 - }, - "0x1b5f7fa46ed0f487f049c42f374ca4827d65a264": { - "address": "0x1b5f7fa46ed0f487f049c42f374ca4827d65a264", - "symbol": "DEURO", - "decimals": 18, - "name": "Decentralized Euro", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x1b5f7fa46ed0f487f049c42f374ca4827d65a264.png", - "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0x4772d2e014f9fc3a820c444e3313968e9a5c8121": { - "address": "0x4772d2e014f9fc3a820c444e3313968e9a5c8121", - "symbol": "YUSD", - "decimals": 18, - "name": "YUSD", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x4772d2e014f9fc3a820c444e3313968e9a5c8121.png", - "aggregators": ["CoinGecko", "LiFi", "Rubic", "Rango"], - "occurrences": 4 - }, - "0xd20ab1015f6a2de4a6fddebab270113f689c2f7c": { - "address": "0xd20ab1015f6a2de4a6fddebab270113f689c2f7c", - "symbol": "DHB", - "decimals": 18, - "name": "DeHub", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xd20ab1015f6a2de4a6fddebab270113f689c2f7c.png", - "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0x5319419caf59a446f2f129a5876a5e6b490d6610": { - "address": "0x5319419caf59a446f2f129a5876a5e6b490d6610", - "symbol": "LUSH", - "decimals": 18, - "name": "LushAI", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x5319419caf59a446f2f129a5876a5e6b490d6610.png", - "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0xa900a17a49bc4d442ba7f72c39fa2108865671f0": { - "address": "0xa900a17a49bc4d442ba7f72c39fa2108865671f0", - "symbol": "IONUSDC", - "decimals": 6, - "name": "Ionic USD Coin", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xa900a17a49bc4d442ba7f72c39fa2108865671f0.png", - "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0x1c22374032e7e5a1bbde3d943f5deb310db060dd": { - "address": "0x1c22374032e7e5a1bbde3d943f5deb310db060dd", - "symbol": "ONCHAIN", - "decimals": 18, - "name": "Onchain Coin", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x1c22374032e7e5a1bbde3d943f5deb310db060dd.png", - "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0xfd28f108e95f4d41daae9dbfff707d677985998e": { - "address": "0xfd28f108e95f4d41daae9dbfff707d677985998e", - "symbol": "PRL", - "decimals": 18, - "name": "PRL", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xfd28f108e95f4d41daae9dbfff707d677985998e.png", - "aggregators": ["CoinGecko", "LiFi", "Rubic", "Rango"], - "occurrences": 4 - }, - "0xb770fad3b3d059162a357047ddcf97fbe9fd7982": { - "address": "0xb770fad3b3d059162a357047ddcf97fbe9fd7982", - "symbol": "$ELON", - "decimals": 9, - "name": "Elon", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xb770fad3b3d059162a357047ddcf97fbe9fd7982.png", - "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0xaf20f5f19698f1d19351028cd7103b63d30de7d7": { - "address": "0xaf20f5f19698f1d19351028cd7103b63d30de7d7", - "symbol": "WAGMI", - "decimals": 18, - "name": "Wagmi", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xaf20f5f19698f1d19351028cd7103b63d30de7d7.png", - "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0xcaacd56d3d9b41d9d1272457e77f8ae510fdb688": { - "address": "0xcaacd56d3d9b41d9d1272457e77f8ae510fdb688", - "symbol": "AVRK", - "decimals": 18, - "name": "Avarik Saga", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xcaacd56d3d9b41d9d1272457e77f8ae510fdb688.png", - "aggregators": ["CoinGecko", "Rubic", "Squid", "Rango"], - "occurrences": 4 - }, - "0x4e719699e4197f4bf4370c49acd3e3b8de11974f": { - "address": "0x4e719699e4197f4bf4370c49acd3e3b8de11974f", - "symbol": "LOVELY", - "decimals": 18, - "name": "Lovely Inu Finance", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x4e719699e4197f4bf4370c49acd3e3b8de11974f.png", - "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0xb3a9bd4861454ba94931ebff410c3d828525dce2": { - "address": "0xb3a9bd4861454ba94931ebff410c3d828525dce2", - "symbol": "WOOF", - "decimals": 18, - "name": "WoofWork.io", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xb3a9bd4861454ba94931ebff410c3d828525dce2.png", - "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0x0808bf94d57c905f1236212654268ef82e1e594e": { - "address": "0x0808bf94d57c905f1236212654268ef82e1e594e", - "symbol": "RITE", - "decimals": 18, - "name": "ritestream", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x0808bf94d57c905f1236212654268ef82e1e594e.png", - "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0xade6057fcafa57d6d51ffa341c64ce4814995995": { - "address": "0xade6057fcafa57d6d51ffa341c64ce4814995995", - "symbol": "BZPR1", - "decimals": 18, - "name": "Backed ZPR1 $ 1-3 Month T-Bill", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xade6057fcafa57d6d51ffa341c64ce4814995995.png", - "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0xcacf1ca03983ce6c7e235fb20c70acc70ed13509": { - "address": "0xcacf1ca03983ce6c7e235fb20c70acc70ed13509", - "symbol": "APX", - "decimals": 18, - "name": "AstroPepeX", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xcacf1ca03983ce6c7e235fb20c70acc70ed13509.png", - "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0x57f5fbd3de65dfc0bd3630f732969e5fb97e6d37": { - "address": "0x57f5fbd3de65dfc0bd3630f732969e5fb97e6d37", - "symbol": "TRUMP", - "decimals": 9, - "name": "MAGA", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x57f5fbd3de65dfc0bd3630f732969e5fb97e6d37.png", - "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0xe095780ba2a64a4efa7a74830f0b71656f0b0ad4": { - "address": "0xe095780ba2a64a4efa7a74830f0b71656f0b0ad4", - "symbol": "BYTE", - "decimals": 9, - "name": "Byte", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xe095780ba2a64a4efa7a74830f0b71656f0b0ad4.png", - "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0x56f6f2a23ae5ef82d8dc46934f7cf8d0b15ddedd": { - "address": "0x56f6f2a23ae5ef82d8dc46934f7cf8d0b15ddedd", - "symbol": "CROGINAL", - "decimals": 18, - "name": "Croginal Cats", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x56f6f2a23ae5ef82d8dc46934f7cf8d0b15ddedd.png", - "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0x750cf88d9e0c2bcedeec31d5faad6ed6e3f1abc6": { - "address": "0x750cf88d9e0c2bcedeec31d5faad6ed6e3f1abc6", - "symbol": "XCAD", - "decimals": 18, - "name": "XCAD Network", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x750cf88d9e0c2bcedeec31d5faad6ed6e3f1abc6.png", - "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0x7ccdba6198db389cf37b714fd6573b73f3670236": { - "address": "0x7ccdba6198db389cf37b714fd6573b73f3670236", - "symbol": "BSKT", - "decimals": 5, - "name": "Basket", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x7ccdba6198db389cf37b714fd6573b73f3670236.png", - "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0xf2d3d488626a117984fda70f8106abc0049018d3": { - "address": "0xf2d3d488626a117984fda70f8106abc0049018d3", - "symbol": "MPT", - "decimals": 18, - "name": "Miracle Play", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xf2d3d488626a117984fda70f8106abc0049018d3.png", - "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0x72e1868f8eb8f9fb86455c10e72aa4b24774a5a3": { - "address": "0x72e1868f8eb8f9fb86455c10e72aa4b24774a5a3", - "symbol": "TRADE", - "decimals": 18, - "name": "TRADE", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x72e1868f8eb8f9fb86455c10e72aa4b24774a5a3.png", - "aggregators": ["CoinGecko", "LiFi", "Rubic", "Rango"], - "occurrences": 4 - }, - "0x6e51b3a19f114013e5dc09d0477a536c7e4e0207": { - "address": "0x6e51b3a19f114013e5dc09d0477a536c7e4e0207", - "symbol": "MEDIA", - "decimals": 18, - "name": "Media Network", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x6e51b3a19f114013e5dc09d0477a536c7e4e0207.png", - "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0x9a54ed8d4343e8d89477285a5a0ca06be4051dda": { - "address": "0x9a54ed8d4343e8d89477285a5a0ca06be4051dda", - "symbol": "QUAD", - "decimals": 18, - "name": "Quadency Token", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x9a54ed8d4343e8d89477285a5a0ca06be4051dda.png", - "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0x0f76d32cdccdcbd602a55af23eaf58fd1ee17245": { - "address": "0x0f76d32cdccdcbd602a55af23eaf58fd1ee17245", - "symbol": "BERNA", - "decimals": 18, - "name": "Backed ERNA $ Bond", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x0f76d32cdccdcbd602a55af23eaf58fd1ee17245.png", - "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0xea651c035f52b644856cab1f59775369c36ecadd": { - "address": "0xea651c035f52b644856cab1f59775369c36ecadd", - "symbol": "LAIKA", - "decimals": 18, - "name": "Laïka", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xea651c035f52b644856cab1f59775369c36ecadd.png", - "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0x1c22531aa9747d76fff8f0a43b37954ca67d28e0": { - "address": "0x1c22531aa9747d76fff8f0a43b37954ca67d28e0", - "symbol": "SUETH", - "decimals": 18, - "name": "Sumer.Money suETH", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x1c22531aa9747d76fff8f0a43b37954ca67d28e0.png", - "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0xd6aaf4d477999fa50c5a1aa35f708862113a73cc": { - "address": "0xd6aaf4d477999fa50c5a1aa35f708862113a73cc", - "symbol": "PROPS", - "decimals": 8, - "name": "Propbase", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xd6aaf4d477999fa50c5a1aa35f708862113a73cc.png", - "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0x58cd93c4a91c3940109fa27d700f5013b18b5dc2": { - "address": "0x58cd93c4a91c3940109fa27d700f5013b18b5dc2", - "symbol": "MVP", - "decimals": 18, - "name": "MAGA VP", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x58cd93c4a91c3940109fa27d700f5013b18b5dc2.png", - "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0x5e432eecd01c12ee7071ee9219c2477a347da192": { - "address": "0x5e432eecd01c12ee7071ee9219c2477a347da192", - "symbol": "ARQX", - "decimals": 18, - "name": "ARQx AI", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x5e432eecd01c12ee7071ee9219c2477a347da192.png", - "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0xbdf5bafee1291eec45ae3aadac89be8152d4e673": { - "address": "0xbdf5bafee1291eec45ae3aadac89be8152d4e673", - "symbol": "CATA", - "decimals": 18, - "name": "Catamoto", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xbdf5bafee1291eec45ae3aadac89be8152d4e673.png", - "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0x3f95aa88ddbb7d9d484aa3d482bf0a80009c52c9": { - "address": "0x3f95aa88ddbb7d9d484aa3d482bf0a80009c52c9", - "symbol": "BERNX", - "decimals": 18, - "name": "Backed ERNX € Bond", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x3f95aa88ddbb7d9d484aa3d482bf0a80009c52c9.png", - "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0x3203856eac03d343f9d5245ba2f39861838a7b36": { - "address": "0x3203856eac03d343f9d5245ba2f39861838a7b36", - "symbol": "AVI", - "decimals": 18, - "name": "Aviator", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x3203856eac03d343f9d5245ba2f39861838a7b36.png", - "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0x6bfdb6f4e65ead27118592a41eb927cea6956198": { - "address": "0x6bfdb6f4e65ead27118592a41eb927cea6956198", - "symbol": "FMC", - "decimals": 18, - "name": "FAME AI", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x6bfdb6f4e65ead27118592a41eb927cea6956198.png", - "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0xe2dca969624795985f2f083bcd0b674337ba130a": { - "address": "0xe2dca969624795985f2f083bcd0b674337ba130a", - "symbol": "SKR", - "decimals": 17, - "name": "Saakuru", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xe2dca969624795985f2f083bcd0b674337ba130a.png", - "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0x14a5f2872396802c3cc8942a39ab3e4118ee5038": { - "address": "0x14a5f2872396802c3cc8942a39ab3e4118ee5038", - "symbol": "BTSLA", - "decimals": 18, - "name": "Backed Tesla", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x14a5f2872396802c3cc8942a39ab3e4118ee5038.png", - "aggregators": ["CoinGecko", "LiFi", "Rubic", "Sonarwatch"], - "occurrences": 4 - }, - "0x803b629c339941e2b77d2dc499dac9e1fd9eac66": { - "address": "0x803b629c339941e2b77d2dc499dac9e1fd9eac66", - "symbol": "EARN", - "decimals": 18, - "name": "HOLD", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x803b629c339941e2b77d2dc499dac9e1fd9eac66.png", - "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0x6ce7c23b917284e21d55cea20acaeb2bc58594be": { - "address": "0x6ce7c23b917284e21d55cea20acaeb2bc58594be", - "symbol": "RIZZ", - "decimals": 9, - "name": "Rizz", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x6ce7c23b917284e21d55cea20acaeb2bc58594be.png", - "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0x9d5a383581882750ce27f84c72f017b378edb736": { - "address": "0x9d5a383581882750ce27f84c72f017b378edb736", - "symbol": "ALOT", - "decimals": 18, - "name": "ALOT", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x9d5a383581882750ce27f84c72f017b378edb736.png", - "aggregators": ["CoinGecko", "LiFi", "Rubic", "Rango"], - "occurrences": 4 - }, - "0xdf36186772a8fda4be100dbacc0b48ef00c53089": { - "address": "0xdf36186772a8fda4be100dbacc0b48ef00c53089", - "symbol": "BERRY", - "decimals": 18, - "name": "Strawberry AI", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xdf36186772a8fda4be100dbacc0b48ef00c53089.png", - "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0xa9f5031b54c44c3603b4300fde9b8f5cd18ad06f": { - "address": "0xa9f5031b54c44c3603b4300fde9b8f5cd18ad06f", - "symbol": "SHOOT", - "decimals": 18, - "name": "Mars Battle", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xa9f5031b54c44c3603b4300fde9b8f5cd18ad06f.png", - "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0xa3a2cdd230f9b3ff6e01a01534a3ed3cbf049815": { - "address": "0xa3a2cdd230f9b3ff6e01a01534a3ed3cbf049815", - "symbol": "ZERC", - "decimals": 18, - "name": "zkRace", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xa3a2cdd230f9b3ff6e01a01534a3ed3cbf049815.png", - "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0x345207814c0304f6bd3b28e42c09450d95b5dbb2": { - "address": "0x345207814c0304f6bd3b28e42c09450d95b5dbb2", - "symbol": "STICKBUG", - "decimals": 4, - "name": "stickbug", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x345207814c0304f6bd3b28e42c09450d95b5dbb2.png", - "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0x72e72193ea14ac3b469f881989d18a2ba021b4c6": { - "address": "0x72e72193ea14ac3b469f881989d18a2ba021b4c6", - "symbol": "DOLLAR", - "decimals": 6, - "name": "Dollar", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x72e72193ea14ac3b469f881989d18a2ba021b4c6.png", - "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0x4a506181f07da5ddfda4ca4c2fa4c67001db94b4": { - "address": "0x4a506181f07da5ddfda4ca4c2fa4c67001db94b4", - "symbol": "DYL", - "decimals": 18, - "name": "Dyl", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x4a506181f07da5ddfda4ca4c2fa4c67001db94b4.png", - "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0x741777f6b6d8145041f73a0bddd35ae81f55a40f": { - "address": "0x741777f6b6d8145041f73a0bddd35ae81f55a40f", - "symbol": "AIMR", - "decimals": 18, - "name": "MeromAI", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x741777f6b6d8145041f73a0bddd35ae81f55a40f.png", - "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0x004aa1586011f3454f487eac8d0d5c647d646c69": { - "address": "0x004aa1586011f3454f487eac8d0d5c647d646c69", - "symbol": "DOGEVERSE", - "decimals": 18, - "name": "DogeVerse", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x004aa1586011f3454f487eac8d0d5c647d646c69.png", - "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0xec1df7edfcdc2e2042c63252c1cef480f64f9189": { - "address": "0xec1df7edfcdc2e2042c63252c1cef480f64f9189", - "symbol": "$BOO", - "decimals": 18, - "name": "BOO", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xec1df7edfcdc2e2042c63252c1cef480f64f9189.png", - "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0x49d803d2df2295185610f44961f2dcd40326f25c": { - "address": "0x49d803d2df2295185610f44961f2dcd40326f25c", - "symbol": "SC", - "decimals": 18, - "name": "Shark Cat", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x49d803d2df2295185610f44961f2dcd40326f25c.png", - "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0xf09930625447d6a5f8e1217edb5649c7314e4e96": { - "address": "0xf09930625447d6a5f8e1217edb5649c7314e4e96", - "symbol": "SKIBIDI", - "decimals": 6, - "name": "Skibidi Dop Dop", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xf09930625447d6a5f8e1217edb5649c7314e4e96.png", - "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0x118a14bd824a7099e8c5279216ff410a7e5472bd": { - "address": "0x118a14bd824a7099e8c5279216ff410a7e5472bd", - "symbol": "OPUL", - "decimals": 18, - "name": "Opulous", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x118a14bd824a7099e8c5279216ff410a7e5472bd.png", - "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0x8888888888f004100c0353d657be6300587a6ccd": { - "address": "0x8888888888f004100c0353d657be6300587a6ccd", - "symbol": "ACS", - "decimals": 18, - "name": "ACryptoS", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x8888888888f004100c0353d657be6300587a6ccd.png", - "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0x6774dfc16e1d9b6ce5b0aec4ffed37a0daef0602": { - "address": "0x6774dfc16e1d9b6ce5b0aec4ffed37a0daef0602", - "symbol": "SHU", - "decimals": 18, - "name": "SHU", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x6774dfc16e1d9b6ce5b0aec4ffed37a0daef0602.png", - "aggregators": ["CoinGecko", "Socket", "Rubic", "Rango"], - "occurrences": 4 - }, - "0x8c1851488f2daceae46d815dd204d5f6d946666a": { - "address": "0x8c1851488f2daceae46d815dd204d5f6d946666a", - "symbol": "BESA", - "decimals": 9, - "name": "Besa Gaming Company", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x8c1851488f2daceae46d815dd204d5f6d946666a.png", - "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0x55365c9e68e70122020184f4441b498e8bf06ac6": { - "address": "0x55365c9e68e70122020184f4441b498e8bf06ac6", - "symbol": "QWLA", - "decimals": 18, - "name": "Qawalla Token", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x55365c9e68e70122020184f4441b498e8bf06ac6.png", - "aggregators": ["CoinGecko", "Socket", "Rubic", "Rango"], - "occurrences": 4 - }, - "0x8f0f56472c3e5730b1ea2f444e7829288da261e6": { - "address": "0x8f0f56472c3e5730b1ea2f444e7829288da261e6", - "symbol": "RMAV", - "decimals": 18, - "name": "Rogue MAV", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x8f0f56472c3e5730b1ea2f444e7829288da261e6.png", - "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0xd88611a629265c9af294ffdd2e7fa4546612273e": { - "address": "0xd88611a629265c9af294ffdd2e7fa4546612273e", - "symbol": "MPRO", - "decimals": 18, - "name": "Metapro", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xd88611a629265c9af294ffdd2e7fa4546612273e.png", - "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0x060cb087a9730e13aa191f31a6d86bff8dfcdcc0": { - "address": "0x060cb087a9730e13aa191f31a6d86bff8dfcdcc0", - "symbol": "OHM", - "decimals": 9, - "name": "Olympus", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x060cb087a9730e13aa191f31a6d86bff8dfcdcc0.png", - "aggregators": ["CoinGecko", "LiFi", "Rubic", "Rango"], - "occurrences": 4 - }, - "0x7f62ac1e974d65fab4a81821ca6af659a5f46298": { - "address": "0x7f62ac1e974d65fab4a81821ca6af659a5f46298", - "symbol": "ELS", - "decimals": 18, - "name": "Ethlas", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x7f62ac1e974d65fab4a81821ca6af659a5f46298.png", - "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0xe30c0801a516f0c67ebc0c4b45ffa7dcbd72ea9a": { - "address": "0xe30c0801a516f0c67ebc0c4b45ffa7dcbd72ea9a", - "symbol": "COR", - "decimals": 18, - "name": "Cortensor", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xe30c0801a516f0c67ebc0c4b45ffa7dcbd72ea9a.png", - "aggregators": ["CoinGecko", "Socket", "Rubic", "Rango"], - "occurrences": 4 - }, - "0xa23dd9379f2e12d9ce76ec738b9f5e520d1d861c": { - "address": "0xa23dd9379f2e12d9ce76ec738b9f5e520d1d861c", - "symbol": "USDEBT", - "decimals": 18, - "name": "USDEBT", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xa23dd9379f2e12d9ce76ec738b9f5e520d1d861c.png", - "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0xe8876189a80b2079d8c0a7867e46c50361d972c1": { - "address": "0xe8876189a80b2079d8c0a7867e46c50361d972c1", - "symbol": "ARC", - "decimals": 18, - "name": "Archly Finance", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xe8876189a80b2079d8c0a7867e46c50361d972c1.png", - "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0xd329f9a8589723357c36727a2d5e15974c835ccf": { - "address": "0xd329f9a8589723357c36727a2d5e15974c835ccf", - "symbol": "SUSDA", - "decimals": 18, - "name": "sUSDa", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xd329f9a8589723357c36727a2d5e15974c835ccf.png", - "aggregators": ["LiFi", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0x1d3b1cd0a0f242d598834b3f2d126dc6bd774657": { - "address": "0x1d3b1cd0a0f242d598834b3f2d126dc6bd774657", - "symbol": "COUSDC", - "decimals": 18, - "name": "Clearstar OpenEden USDC", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x1d3b1cd0a0f242d598834b3f2d126dc6bd774657.png", - "aggregators": ["LiFi", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0x6b4712ae9797c199edd44f897ca09bc57628a1cf": { - "address": "0x6b4712ae9797c199edd44f897ca09bc57628a1cf", - "symbol": "UNIDX", - "decimals": 18, - "name": "UniDex", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x6b4712ae9797c199edd44f897ca09bc57628a1cf.png", - "aggregators": ["LiFi", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0x24cb2b89844604c57350776d81e14765d03b91de": { - "address": "0x24cb2b89844604c57350776d81e14765d03b91de", - "symbol": "ZUNETH", - "decimals": 18, - "name": "Zunami ETH", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x24cb2b89844604c57350776d81e14765d03b91de.png", - "aggregators": ["LiFi", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0x7233062d88133b5402d39d62bfa23a1b6c8d0898": { - "address": "0x7233062d88133b5402d39d62bfa23a1b6c8d0898", - "symbol": "FORT", - "decimals": 18, - "name": "Citadel", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x7233062d88133b5402d39d62bfa23a1b6c8d0898.png", - "aggregators": ["LiFi", "Socket", "Rubic", "Rango"], - "occurrences": 4 - }, - "0xd5b9ddb04f20ea773c9b56607250149b26049b1f": { - "address": "0xd5b9ddb04f20ea773c9b56607250149b26049b1f", - "symbol": "ZUNUSD", - "decimals": 18, - "name": "Zunami USD", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xd5b9ddb04f20ea773c9b56607250149b26049b1f.png", - "aggregators": ["LiFi", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0x0000206329b97db379d5e1bf586bbdb969c63274": { - "address": "0x0000206329b97db379d5e1bf586bbdb969c63274", - "symbol": "USDA", - "decimals": 18, - "name": "USDA", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x0000206329b97db379d5e1bf586bbdb969c63274.png", - "aggregators": ["LiFi", "Socket", "Rubic", "Rango"], - "occurrences": 4 - }, - "0xed2d13a70acbd61074fc56bd0d0845e35f793e5e": { - "address": "0xed2d13a70acbd61074fc56bd0d0845e35f793e5e", - "symbol": "MOJO", - "decimals": 18, - "name": "Planet Mojo", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xed2d13a70acbd61074fc56bd0d0845e35f793e5e.png", - "aggregators": ["Socket", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0x2659631cfbe9b1b6dcbc1384a3864509356e7b4d": { - "address": "0x2659631cfbe9b1b6dcbc1384a3864509356e7b4d", - "symbol": "RDX", - "decimals": 18, - "name": "RandomDEX", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x2659631cfbe9b1b6dcbc1384a3864509356e7b4d.png", - "aggregators": ["Rubic", "Squid", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0x2dc1cda9186a4993bd36de60d08787c0c382bead": { - "address": "0x2dc1cda9186a4993bd36de60d08787c0c382bead", - "symbol": "MAG", - "decimals": 18, - "name": "Magnate Finance", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x2dc1cda9186a4993bd36de60d08787c0c382bead.png", - "aggregators": ["Rubic", "Squid", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0x7771450ece9c61430953d2646f995e33a06c91f5": { - "address": "0x7771450ece9c61430953d2646f995e33a06c91f5", - "symbol": "MONKE", - "decimals": 18, - "name": "Monke", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x7771450ece9c61430953d2646f995e33a06c91f5.png", - "aggregators": ["Rubic", "Rango", "Sonarwatch", "SushiSwap"], - "occurrences": 4 - }, - "0x40468be13c4388d2ab68a09f56973fa95db5bca0": { - "address": "0x40468be13c4388d2ab68a09f56973fa95db5bca0", - "symbol": "PIZZA", - "decimals": 18, - "name": "Pizza", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x40468be13c4388d2ab68a09f56973fa95db5bca0.png", - "aggregators": ["Rubic", "Rango", "Sonarwatch", "SushiSwap"], - "occurrences": 4 - }, - "0x7ed613ab8b2b4c6a781ddc97ea98a666c6437511": { - "address": "0x7ed613ab8b2b4c6a781ddc97ea98a666c6437511", - "symbol": "AYB", - "decimals": 18, - "name": "All Your Base", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x7ed613ab8b2b4c6a781ddc97ea98a666c6437511.png", - "aggregators": ["Rubic", "Rango", "Sonarwatch", "SushiSwap"], - "occurrences": 4 - }, - "0x981d41c115a2d48cb1215d13bda8f989d407c9c5": { - "address": "0x981d41c115a2d48cb1215d13bda8f989d407c9c5", - "symbol": "XEN", - "decimals": 18, - "name": "Xena", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x981d41c115a2d48cb1215d13bda8f989d407c9c5.png", - "aggregators": ["Rubic", "Rango", "Sonarwatch", "SushiSwap"], - "occurrences": 4 - }, - "0xfd008f937b4d73eeb00cf74ce90c392be5f07f96": { - "address": "0xfd008f937b4d73eeb00cf74ce90c392be5f07f96", - "symbol": "MOON", - "decimals": 18, - "name": "MOON INU", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xfd008f937b4d73eeb00cf74ce90c392be5f07f96.png", - "aggregators": ["CoinGecko", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x646a737b9b6024e49f5908762b3ff73e65b5160c": { - "address": "0x646a737b9b6024e49f5908762b3ff73e65b5160c", - "symbol": "SCRVUSD", - "decimals": 18, - "name": "Superbridge Bridged scrvUSD", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x646a737b9b6024e49f5908762b3ff73e65b5160c.png", - "aggregators": ["CoinGecko", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x262a9f4e84efa2816d87a68606bb4c1ea3874bf1": { - "address": "0x262a9f4e84efa2816d87a68606bb4c1ea3874bf1", - "symbol": "BKIT", - "decimals": 18, - "name": "Bangkit", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x262a9f4e84efa2816d87a68606bb4c1ea3874bf1.png", - "aggregators": ["CoinGecko", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x93e6407554b2f02640ab806cd57bd83e848ec65d": { - "address": "0x93e6407554b2f02640ab806cd57bd83e848ec65d", - "symbol": "FAR", - "decimals": 18, - "name": "FarLaunch", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x93e6407554b2f02640ab806cd57bd83e848ec65d.png", - "aggregators": ["CoinGecko", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x7c101a0e141517009d3138743213e3e835a809de": { - "address": "0x7c101a0e141517009d3138743213e3e835a809de", - "symbol": "$COSMIC", - "decimals": 18, - "name": "COSMIC on Base", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x7c101a0e141517009d3138743213e3e835a809de.png", - "aggregators": ["CoinGecko", "Rubic", "Sonarwatch"], - "occurrences": 3 - }, - "0x3afeae00a594fbf2e4049f924e3c6ac93296b6e8": { - "address": "0x3afeae00a594fbf2e4049f924e3c6ac93296b6e8", - "symbol": "MAMBA", - "decimals": 18, - "name": "Mamba", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x3afeae00a594fbf2e4049f924e3c6ac93296b6e8.png", - "aggregators": ["CoinGecko", "Rubic", "Rango"], - "occurrences": 3 - }, - "0xd7d919ea0c33a97ad6e7bd4f510498e2ec98cb78": { - "address": "0xd7d919ea0c33a97ad6e7bd4f510498e2ec98cb78", - "symbol": "PEN", - "decimals": 18, - "name": "Penjamin Blinkerton", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xd7d919ea0c33a97ad6e7bd4f510498e2ec98cb78.png", - "aggregators": ["CoinGecko", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x2ad3d80c917ddbf08acc04277f379e00e4d75395": { - "address": "0x2ad3d80c917ddbf08acc04277f379e00e4d75395", - "symbol": "COW", - "decimals": 18, - "name": "COW", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x2ad3d80c917ddbf08acc04277f379e00e4d75395.png", - "aggregators": ["CoinGecko", "Rubic", "Rango"], - "occurrences": 3 - }, - "0xc2eeca228ebac45c339cc5e522dd3a10638155f1": { - "address": "0xc2eeca228ebac45c339cc5e522dd3a10638155f1", - "symbol": "$PEACE", - "decimals": 18, - "name": "Peace Token", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xc2eeca228ebac45c339cc5e522dd3a10638155f1.png", - "aggregators": ["CoinGecko", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x91f45aa2bde7393e0af1cc674ffe75d746b93567": { - "address": "0x91f45aa2bde7393e0af1cc674ffe75d746b93567", - "symbol": "FRAME", - "decimals": 18, - "name": "Frame Token", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x91f45aa2bde7393e0af1cc674ffe75d746b93567.png", - "aggregators": ["CoinGecko", "Rubic", "Sonarwatch"], - "occurrences": 3 - }, - "0x88c3b9d2dbe8eab571d38f57f7f69c581e3427c6": { - "address": "0x88c3b9d2dbe8eab571d38f57f7f69c581e3427c6", - "symbol": "SMF", - "decimals": 18, - "name": "Super Meme Fighter", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x88c3b9d2dbe8eab571d38f57f7f69c581e3427c6.png", - "aggregators": ["CoinGecko", "Rubic", "Rango"], - "occurrences": 3 - }, - "0xbf3a2340221b9ead8fe0b6a1b2990e6e00dea092": { - "address": "0xbf3a2340221b9ead8fe0b6a1b2990e6e00dea092", - "symbol": "DYOR", - "decimals": 18, - "name": "DYOR", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xbf3a2340221b9ead8fe0b6a1b2990e6e00dea092.png", - "aggregators": ["CoinGecko", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x1986cc18d8ec757447254310d2604f85741aa732": { - "address": "0x1986cc18d8ec757447254310d2604f85741aa732", - "symbol": "REWARD", - "decimals": 18, - "name": "Rewardable", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x1986cc18d8ec757447254310d2604f85741aa732.png", - "aggregators": ["CoinGecko", "Rubic", "Rango"], - "occurrences": 3 - }, - "0xc5cdeb649ed1a7895b935acc8eb5aa0d7a8492be": { - "address": "0xc5cdeb649ed1a7895b935acc8eb5aa0d7a8492be", - "symbol": "UCHZ", - "decimals": 18, - "name": "Wrapped Chiliz (Universal)", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xc5cdeb649ed1a7895b935acc8eb5aa0d7a8492be.png", - "aggregators": ["CoinGecko", "Rubic", "Rango"], - "occurrences": 3 - }, - "0xcc6ce98579ba909344bb765f0c4f45964d5ce1d2": { - "address": "0xcc6ce98579ba909344bb765f0c4f45964d5ce1d2", - "symbol": "DUDEGEN", - "decimals": 18, - "name": "DUDEGEN", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xcc6ce98579ba909344bb765f0c4f45964d5ce1d2.png", - "aggregators": ["CoinGecko", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x65e570b560027f493f2b1907e8e8e3b9546053bd": { - "address": "0x65e570b560027f493f2b1907e8e8e3b9546053bd", - "symbol": "TYLER", - "decimals": 18, - "name": "Tyler", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x65e570b560027f493f2b1907e8e8e3b9546053bd.png", - "aggregators": ["CoinGecko", "Rubic", "Sonarwatch"], - "occurrences": 3 - }, - "0x9a3b7959e998bf2b50ef1969067d623877050d92": { - "address": "0x9a3b7959e998bf2b50ef1969067d623877050d92", - "symbol": "PBB", - "decimals": 18, - "name": "Pepe But Blue", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x9a3b7959e998bf2b50ef1969067d623877050d92.png", - "aggregators": ["CoinGecko", "Rubic", "Rango"], - "occurrences": 3 - }, - "0xdd32659b1e7a6a6b3c6e96cd8a4c936bcfea0607": { - "address": "0xdd32659b1e7a6a6b3c6e96cd8a4c936bcfea0607", - "symbol": "TRAI", - "decimals": 8, - "name": "Trackgood AI", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xdd32659b1e7a6a6b3c6e96cd8a4c936bcfea0607.png", - "aggregators": ["CoinGecko", "Rubic", "Rango"], - "occurrences": 3 - }, - "0xba515304d8153c4b162dc79f867e152df9c127eb": { - "address": "0xba515304d8153c4b162dc79f867e152df9c127eb", - "symbol": "UTY", - "decimals": 18, - "name": "Unity", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xba515304d8153c4b162dc79f867e152df9c127eb.png", - "aggregators": ["CoinGecko", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x63cb9a22cbc00bf9159429e9dede4b88c3dba8ce": { - "address": "0x63cb9a22cbc00bf9159429e9dede4b88c3dba8ce", - "symbol": "CAPO", - "decimals": 18, - "name": "LaunchTokenBot", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x63cb9a22cbc00bf9159429e9dede4b88c3dba8ce.png", - "aggregators": ["CoinGecko", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x6776caccfdcd0dfd5a38cb1d0b3b39a4ca9283ce": { - "address": "0x6776caccfdcd0dfd5a38cb1d0b3b39a4ca9283ce", - "symbol": "NOM", - "decimals": 18, - "name": "Nomad", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x6776caccfdcd0dfd5a38cb1d0b3b39a4ca9283ce.png", - "aggregators": ["CoinGecko", "Rubic", "Rango"], - "occurrences": 3 - }, - "0xb95fb324b8a2faf8ec4f76e3df46c718402736e2": { - "address": "0xb95fb324b8a2faf8ec4f76e3df46c718402736e2", - "symbol": "UNIT", - "decimals": 18, - "name": "Flat Money", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xb95fb324b8a2faf8ec4f76e3df46c718402736e2.png", - "aggregators": ["CoinGecko", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x16275fd42439a6671b188bdc3949a5ec61932c48": { - "address": "0x16275fd42439a6671b188bdc3949a5ec61932c48", - "symbol": "UEGLD", - "decimals": 18, - "name": "Wrapped MultiversX (Universal)", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x16275fd42439a6671b188bdc3949a5ec61932c48.png", - "aggregators": ["CoinGecko", "Rubic", "Rango"], - "occurrences": 3 - }, - "0xd403d1624daef243fbcbd4a80d8a6f36affe32b2": { - "address": "0xd403d1624daef243fbcbd4a80d8a6f36affe32b2", - "symbol": "ULINK", - "decimals": 18, - "name": "Chainlink (Universal)", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xd403d1624daef243fbcbd4a80d8a6f36affe32b2.png", - "aggregators": ["CoinGecko", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x43e94bd32ac8e57a6009cde6790d95761120d4e9": { - "address": "0x43e94bd32ac8e57a6009cde6790d95761120d4e9", - "symbol": "DEWN", - "decimals": 18, - "name": "Dewn", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x43e94bd32ac8e57a6009cde6790d95761120d4e9.png", - "aggregators": ["CoinGecko", "Rubic", "Rango"], - "occurrences": 3 - }, - "0xdb90a4e973b7663ce0ccc32b6fbd37ffb19bfa83": { - "address": "0xdb90a4e973b7663ce0ccc32b6fbd37ffb19bfa83", - "symbol": "DEGENUSDC", - "decimals": 18, - "name": "Degen USDC", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xdb90a4e973b7663ce0ccc32b6fbd37ffb19bfa83.png", - "aggregators": ["CoinGecko", "LiFi", "Rubic"], - "occurrences": 3 - }, - "0x00e57ec29ef2ba7df07ad10573011647b2366f6d": { - "address": "0x00e57ec29ef2ba7df07ad10573011647b2366f6d", - "symbol": "TOSHE", - "decimals": 18, - "name": "TOSHE", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x00e57ec29ef2ba7df07ad10573011647b2366f6d.png", - "aggregators": ["CoinGecko", "Rubic", "Rango"], - "occurrences": 3 - }, - "0xfbecd19292b1effeaa7b2e61f5101ddb6744a1fb": { - "address": "0xfbecd19292b1effeaa7b2e61f5101ddb6744a1fb", - "symbol": "AIPUMP", - "decimals": 18, - "name": "aiPump", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xfbecd19292b1effeaa7b2e61f5101ddb6744a1fb.png", - "aggregators": ["CoinGecko", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x9124577428c5bd73ad7636cbc5014081384f29d6": { - "address": "0x9124577428c5bd73ad7636cbc5014081384f29d6", - "symbol": "MONKY", - "decimals": 18, - "name": "Monky", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x9124577428c5bd73ad7636cbc5014081384f29d6.png", - "aggregators": ["CoinGecko", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x9c0e042d65a2e1ff31ac83f404e5cb79f452c337": { - "address": "0x9c0e042d65a2e1ff31ac83f404e5cb79f452c337", - "symbol": "UAPT", - "decimals": 18, - "name": "Wrapped Aptos (Universal)", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x9c0e042d65a2e1ff31ac83f404e5cb79f452c337.png", - "aggregators": ["CoinGecko", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x20d704099b62ada091028bcfc44445041ed16f09": { - "address": "0x20d704099b62ada091028bcfc44445041ed16f09", - "symbol": "CHAOS", - "decimals": 18, - "name": "CHAOS", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x20d704099b62ada091028bcfc44445041ed16f09.png", - "aggregators": ["CoinGecko", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x10a7a84c91988138f8dbbc82a23b02c8639e2552": { - "address": "0x10a7a84c91988138f8dbbc82a23b02c8639e2552", - "symbol": "ROXY", - "decimals": 18, - "name": "ROXY", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x10a7a84c91988138f8dbbc82a23b02c8639e2552.png", - "aggregators": ["CoinGecko", "Rubic", "Rango"], - "occurrences": 3 - }, - "0xdb173587d459ddb1b9b0f2d6d88febef039304a2": { - "address": "0xdb173587d459ddb1b9b0f2d6d88febef039304a2", - "symbol": "DADDY", - "decimals": 18, - "name": "Cryptojourney", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xdb173587d459ddb1b9b0f2d6d88febef039304a2.png", - "aggregators": ["CoinGecko", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x6668d4a6605a27e5ee51eda040581155eddc6666": { - "address": "0x6668d4a6605a27e5ee51eda040581155eddc6666", - "symbol": "WMSTER", - "decimals": 9, - "name": "White Monster", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x6668d4a6605a27e5ee51eda040581155eddc6666.png", - "aggregators": ["CoinGecko", "Rubic", "Rango"], - "occurrences": 3 - }, - "0xf83759099dc88f75fc83de854c41e0d9e83ada9b": { - "address": "0xf83759099dc88f75fc83de854c41e0d9e83ada9b", - "symbol": "OBOT", - "decimals": 18, - "name": "OBORTECH", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xf83759099dc88f75fc83de854c41e0d9e83ada9b.png", - "aggregators": ["CoinGecko", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x60cfc2b186a4cf647486e42c42b11cc6d571d1e4": { - "address": "0x60cfc2b186a4cf647486e42c42b11cc6d571d1e4", - "symbol": "BENJI", - "decimals": 18, - "name": "Franklin OnChain U.S. Government Money Fund", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x60cfc2b186a4cf647486e42c42b11cc6d571d1e4.png", - "aggregators": ["CoinGecko", "Rubic", "Sonarwatch"], - "occurrences": 3 - }, - "0x52d134c6db5889fad3542a09eaf7aa90c0fdf9e4": { - "address": "0x52d134c6db5889fad3542a09eaf7aa90c0fdf9e4", - "symbol": "BIBTA", - "decimals": 18, - "name": "Backed IBTA $ Treasury Bond 1-3yr", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x52d134c6db5889fad3542a09eaf7aa90c0fdf9e4.png", - "aggregators": ["CoinGecko", "Rubic", "Sonarwatch"], - "occurrences": 3 - }, - "0xca30c93b02514f86d5c86a6e375e3a330b435fb5": { - "address": "0xca30c93b02514f86d5c86a6e375e3a330b435fb5", - "symbol": "BIB01", - "decimals": 18, - "name": "Backed IB01 $ Treasury Bond 0-1yr", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xca30c93b02514f86d5c86a6e375e3a330b435fb5.png", - "aggregators": ["CoinGecko", "Rubic", "Sonarwatch"], - "occurrences": 3 - }, - "0x20c64dee8fda5269a78f2d5bdba861ca1d83df7a": { - "address": "0x20c64dee8fda5269a78f2d5bdba861ca1d83df7a", - "symbol": "BHIGH", - "decimals": 18, - "name": "Backed HIGH € High Yield Corp Bond", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x20c64dee8fda5269a78f2d5bdba861ca1d83df7a.png", - "aggregators": ["CoinGecko", "Rubic", "Sonarwatch"], - "occurrences": 3 - }, - "0x18bc5bcc660cf2b9ce3cd51a404afe1a0cbd3c22": { - "address": "0x18bc5bcc660cf2b9ce3cd51a404afe1a0cbd3c22", - "symbol": "IDRX", - "decimals": 2, - "name": "IDRX", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x18bc5bcc660cf2b9ce3cd51a404afe1a0cbd3c22.png", - "aggregators": ["CoinGecko", "Rubic", "Rango"], - "occurrences": 3 - }, - "0xf4fa93f76220414cdf6fd95a85e7a407e2dd3e3d": { - "address": "0xf4fa93f76220414cdf6fd95a85e7a407e2dd3e3d", - "symbol": "BIAO", - "decimals": 9, - "name": "Biaoqing", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xf4fa93f76220414cdf6fd95a85e7a407e2dd3e3d.png", - "aggregators": ["CoinGecko", "Rubic", "Rango"], - "occurrences": 3 - }, - "0xe94db607eba8f76a377d9bcc327c9856ed90fbde": { - "address": "0xe94db607eba8f76a377d9bcc327c9856ed90fbde", - "symbol": "NINA", - "decimals": 9, - "name": "Nina", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xe94db607eba8f76a377d9bcc327c9856ed90fbde.png", - "aggregators": ["CoinGecko", "Rubic", "Sonarwatch"], - "occurrences": 3 - }, - "0xa9500acbd7de8a0e456af645937350393251c0ed": { - "address": "0xa9500acbd7de8a0e456af645937350393251c0ed", - "symbol": "NIZA", - "decimals": 18, - "name": "Niza Global", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xa9500acbd7de8a0e456af645937350393251c0ed.png", - "aggregators": ["CoinGecko", "Rubic", "Rango"], - "occurrences": 3 - }, - "0xa0aebd4ae5f256b72b7d43f67ed934237adb1aee": { - "address": "0xa0aebd4ae5f256b72b7d43f67ed934237adb1aee", - "symbol": "BONSAICOIN", - "decimals": 18, - "name": "BONSAI COIN", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xa0aebd4ae5f256b72b7d43f67ed934237adb1aee.png", - "aggregators": ["CoinGecko", "Rubic", "Rango"], - "occurrences": 3 - }, - "0xbe35071605277d8be5a52c84a66ab1bc855a758d": { - "address": "0xbe35071605277d8be5a52c84a66ab1bc855a758d", - "symbol": "B4FWX", - "decimals": 18, - "name": "Be For FWX", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xbe35071605277d8be5a52c84a66ab1bc855a758d.png", - "aggregators": ["CoinGecko", "Rubic", "Sonarwatch"], - "occurrences": 3 - }, - "0x2f11eeee0bf21e7661a22dbbbb9068f4ad191b86": { - "address": "0x2f11eeee0bf21e7661a22dbbbb9068f4ad191b86", - "symbol": "BNIU", - "decimals": 18, - "name": "Backed Niu Technologies", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x2f11eeee0bf21e7661a22dbbbb9068f4ad191b86.png", - "aggregators": ["CoinGecko", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x14913815bcfde78baead2111f463d038ac9c2949": { - "address": "0x14913815bcfde78baead2111f463d038ac9c2949", - "symbol": "EUSD", - "decimals": 6, - "name": "EUSD", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x14913815bcfde78baead2111f463d038ac9c2949.png", - "aggregators": ["CoinGecko", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x2f123cf3f37ce3328cc9b5b8415f9ec5109b45e7": { - "address": "0x2f123cf3f37ce3328cc9b5b8415f9ec5109b45e7", - "symbol": "BC3M", - "decimals": 18, - "name": "Backed GOVIES 0-6 months EURO", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x2f123cf3f37ce3328cc9b5b8415f9ec5109b45e7.png", - "aggregators": ["CoinGecko", "Rubic", "Sonarwatch"], - "occurrences": 3 - }, - "0xd7b675cd5c84a13d1d0f84509345530f6421b57c": { - "address": "0xd7b675cd5c84a13d1d0f84509345530f6421b57c", - "symbol": "OOOI", - "decimals": 18, - "name": "Corridor Finance", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xd7b675cd5c84a13d1d0f84509345530f6421b57c.png", - "aggregators": ["CoinGecko", "Rubic", "Rango"], - "occurrences": 3 - }, - "0xf695df6c0f3bb45918a7a82e83348fc59517734e": { - "address": "0xf695df6c0f3bb45918a7a82e83348fc59517734e", - "symbol": "SPKCC", - "decimals": 5, - "name": "SPKCC", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xf695df6c0f3bb45918a7a82e83348fc59517734e.png", - "aggregators": ["CoinGecko", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x90685e300a4c4532efcefe91202dfe1dfd572f47": { - "address": "0x90685e300a4c4532efcefe91202dfe1dfd572f47", - "symbol": "CTA", - "decimals": 18, - "name": "Cross The Ages", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x90685e300a4c4532efcefe91202dfe1dfd572f47.png", - "aggregators": ["CoinGecko", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x0bb754d8940e283d9ff6855ab5dafbc14165c059": { - "address": "0x0bb754d8940e283d9ff6855ab5dafbc14165c059", - "symbol": "SAFO", - "decimals": 5, - "name": "SAFO", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x0bb754d8940e283d9ff6855ab5dafbc14165c059.png", - "aggregators": ["CoinGecko", "Rubic", "Rango"], - "occurrences": 3 - }, - "0xd879846cbe20751bde8a9342a3cca00a3e56ca47": { - "address": "0xd879846cbe20751bde8a9342a3cca00a3e56ca47", - "symbol": "EURSAFO", - "decimals": 5, - "name": "Spiko Amundi Overnight Swap Fund (EUR)", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xd879846cbe20751bde8a9342a3cca00a3e56ca47.png", - "aggregators": ["CoinGecko", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x2f6c0e5e06b43512706a9cdf66cd21f723fe0ec3": { - "address": "0x2f6c0e5e06b43512706a9cdf66cd21f723fe0ec3", - "symbol": "GBPSAFO", - "decimals": 5, - "name": "Spiko Amundi Overnight Swap Fund (GBP)", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x2f6c0e5e06b43512706a9cdf66cd21f723fe0ec3.png", - "aggregators": ["CoinGecko", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x6e84030fa86ebf585e3e18fe557e5612f7e93bff": { - "address": "0x6e84030fa86ebf585e3e18fe557e5612f7e93bff", - "symbol": "AORA", - "decimals": 18, - "name": "AtlasOra", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x6e84030fa86ebf585e3e18fe557e5612f7e93bff.png", - "aggregators": ["CoinGecko", "Rubic", "Rango"], - "occurrences": 3 - }, - "0xa067436db77ab18b1a315095e4b816791609897c": { - "address": "0xa067436db77ab18b1a315095e4b816791609897c", - "symbol": "WASSIE", - "decimals": 18, - "name": "WASSIE", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xa067436db77ab18b1a315095e4b816791609897c.png", - "aggregators": ["CoinGecko", "Rubic", "Sonarwatch"], - "occurrences": 3 - }, - "0x9483ab65847a447e36d21af1cab8c87e9712ff93": { - "address": "0x9483ab65847a447e36d21af1cab8c87e9712ff93", - "symbol": "WUSDR", - "decimals": 9, - "name": "Wrapped USDR", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x9483ab65847a447e36d21af1cab8c87e9712ff93.png", - "aggregators": ["LiFi", "Rubic", "Rango"], - "occurrences": 3 - }, - "0xcd6ddda305955acd6b94b934f057e8b0daad58de": { - "address": "0xcd6ddda305955acd6b94b934f057e8b0daad58de", - "symbol": "PERP", - "decimals": 18, - "name": "Perpetual", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xcd6ddda305955acd6b94b934f057e8b0daad58de.png", - "aggregators": ["LiFi", "Socket", "Rango"], - "occurrences": 3 - }, - "0x37defbc399e5737d53dfb5533d9954572f5b19bf": { - "address": "0x37defbc399e5737d53dfb5533d9954572f5b19bf", - "symbol": "BLAZE", - "decimals": 9, - "name": "BLAZE", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x37defbc399e5737d53dfb5533d9954572f5b19bf.png", - "aggregators": ["LiFi", "Socket", "Rango"], - "occurrences": 3 - }, - "0xb78e7d4c5d47af92942321ed40419dab0e573810": { - "address": "0xb78e7d4c5d47af92942321ed40419dab0e573810", - "symbol": "GFI", - "decimals": 18, - "name": "Goldfinch", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xb78e7d4c5d47af92942321ed40419dab0e573810.png", - "aggregators": ["LiFi", "Socket", "Rango"], - "occurrences": 3 - }, - "0x3933012dcf9beb0d63778725345e04dcc0c69c7e": { - "address": "0x3933012dcf9beb0d63778725345e04dcc0c69c7e", - "symbol": "UNLUCKY", - "decimals": 0, - "name": "UNLUCKY", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x3933012dcf9beb0d63778725345e04dcc0c69c7e.png", - "aggregators": ["Rubic", "Rango", "Sonarwatch"], - "occurrences": 3 - }, - "0xba1e2321e340740f9c3685dc09de5e0326bc1799": { - "address": "0xba1e2321e340740f9c3685dc09de5e0326bc1799", - "symbol": "SNAP", - "decimals": 18, - "name": "SNAP", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xba1e2321e340740f9c3685dc09de5e0326bc1799.png", - "aggregators": ["Rubic", "Rango", "Sonarwatch"], - "occurrences": 3 - }, - "0x99fd6b95bef16079398426f94f9faca4d7570c61": { - "address": "0x99fd6b95bef16079398426f94f9faca4d7570c61", - "symbol": "AEGNT", - "decimals": 18, - "name": "Aegents", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x99fd6b95bef16079398426f94f9faca4d7570c61.png", - "aggregators": ["Rubic", "Rango", "Sonarwatch"], - "occurrences": 3 - }, - "0x313f2cddcdc74747c18d2f529ec9c087860198ed": { - "address": "0x313f2cddcdc74747c18d2f529ec9c087860198ed", - "symbol": "AHD", - "decimals": 18, - "name": "Agent Humpty Dumpty", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x313f2cddcdc74747c18d2f529ec9c087860198ed.png", - "aggregators": ["Rubic", "Rango", "Sonarwatch"], - "occurrences": 3 - }, - "0x16cec756a0fcba1d7ce95df5a46406c469a9128a": { - "address": "0x16cec756a0fcba1d7ce95df5a46406c469a9128a", - "symbol": "AWK", - "decimals": 18, - "name": "Awkward Monkey", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x16cec756a0fcba1d7ce95df5a46406c469a9128a.png", - "aggregators": ["Rubic", "Rango", "Sonarwatch"], - "occurrences": 3 - }, - "0x4dfbd8a695baf78ebf8f905a4527020e844b278d": { - "address": "0x4dfbd8a695baf78ebf8f905a4527020e844b278d", - "symbol": "BACK", - "decimals": 18, - "name": "We're so back", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x4dfbd8a695baf78ebf8f905a4527020e844b278d.png", - "aggregators": ["Rubic", "Rango", "Sonarwatch"], - "occurrences": 3 - }, - "0xef8a84eb92afd22a115d5e81b2c3c605b866f044": { - "address": "0xef8a84eb92afd22a115d5e81b2c3c605b866f044", - "symbol": "BEBE", - "decimals": 18, - "name": "Bebe on Base", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xef8a84eb92afd22a115d5e81b2c3c605b866f044.png", - "aggregators": ["Rubic", "Rango", "Sonarwatch"], - "occurrences": 3 - }, - "0x80b3455e1db60b4cba46aba12e8b1e256dd64979": { - "address": "0x80b3455e1db60b4cba46aba12e8b1e256dd64979", - "symbol": "BOOBY", - "decimals": 18, - "name": "Blue-Footed Booby", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x80b3455e1db60b4cba46aba12e8b1e256dd64979.png", - "aggregators": ["Rubic", "Rango", "Sonarwatch"], - "occurrences": 3 - }, - "0x7fdd7419428955dbf36d4176af5a8f09ad29d1f3": { - "address": "0x7fdd7419428955dbf36d4176af5a8f09ad29d1f3", - "symbol": "$BOSHI", - "decimals": 18, - "name": "Based Boshi", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x7fdd7419428955dbf36d4176af5a8f09ad29d1f3.png", - "aggregators": ["Rubic", "Rango", "Sonarwatch"], - "occurrences": 3 - }, - "0x63f844a81571588536614b3fa9260bec3e897126": { - "address": "0x63f844a81571588536614b3fa9260bec3e897126", - "symbol": "BREX", - "decimals": 18, - "name": "BREX", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x63f844a81571588536614b3fa9260bec3e897126.png", - "aggregators": ["Rubic", "Rango", "Sonarwatch"], - "occurrences": 3 - }, - "0x9f95e17b2668afe01f8fbd157068b0a4405cc08d": { - "address": "0x9f95e17b2668afe01f8fbd157068b0a4405cc08d", - "symbol": "BULL", - "decimals": 18, - "name": "Bullieverse", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x9f95e17b2668afe01f8fbd157068b0a4405cc08d.png", - "aggregators": ["Rubic", "Rango", "Sonarwatch"], - "occurrences": 3 - }, - "0xf2393eeadd67bf68a60f39992113775966f34e1e": { - "address": "0xf2393eeadd67bf68a60f39992113775966f34e1e", - "symbol": "DUSD", - "decimals": 18, - "name": "Davos.xyz USD", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xf2393eeadd67bf68a60f39992113775966f34e1e.png", - "aggregators": ["Rubic", "Rango", "Sonarwatch"], - "occurrences": 3 - }, - "0x2c9ab600d71967ff259c491ad51f517886740cbc": { - "address": "0x2c9ab600d71967ff259c491ad51f517886740cbc", - "symbol": "VAB", - "decimals": 18, - "name": "Vabble", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x2c9ab600d71967ff259c491ad51f517886740cbc.png", - "aggregators": ["Rubic", "Rango", "Sonarwatch"], - "occurrences": 3 - }, - "0x4287105ffac106eb98a71cab46586906181e35ff": { - "address": "0x4287105ffac106eb98a71cab46586906181e35ff", - "symbol": "SWORD", - "decimals": 18, - "name": "SWORD", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x4287105ffac106eb98a71cab46586906181e35ff.png", - "aggregators": ["Rubic", "Rango", "Sonarwatch"], - "occurrences": 3 - }, - "0x0afcae1208ac99addc6983a06735a199f190de09": { - "address": "0x0afcae1208ac99addc6983a06735a199f190de09", - "symbol": "TAD", - "decimals": 18, - "name": "Froggy Friends", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x0afcae1208ac99addc6983a06735a199f190de09.png", - "aggregators": ["Rubic", "Rango", "Sonarwatch"], - "occurrences": 3 - }, - "0x1db0fc8933f545648b54a9ee4326209a9a259643": { - "address": "0x1db0fc8933f545648b54a9ee4326209a9a259643", - "symbol": "ZUN", - "decimals": 18, - "name": "Zunami Governance Token", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x1db0fc8933f545648b54a9ee4326209a9a259643.png", - "aggregators": ["Rubic", "Rango", "Sonarwatch"], - "occurrences": 3 - }, - "0x0b1594b0e896bf165d925956e0df733b8443af6a": { - "address": "0x0b1594b0e896bf165d925956e0df733b8443af6a", - "symbol": "MORK", - "decimals": 18, - "name": "MORK", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x0b1594b0e896bf165d925956e0df733b8443af6a.png", - "aggregators": ["Rubic", "Rango", "Sonarwatch"], - "occurrences": 3 - }, - "0xcbfe8e065534d0cc117bd71a11b0249a63e247f7": { - "address": "0xcbfe8e065534d0cc117bd71a11b0249a63e247f7", - "symbol": "FROKAI", - "decimals": 18, - "name": "FrokAI", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xcbfe8e065534d0cc117bd71a11b0249a63e247f7.png", - "aggregators": ["Rubic", "Rango", "Sonarwatch"], - "occurrences": 3 - }, - "0x0171ae9879c7fbcf3071b149bb4f2130daef7457": { - "address": "0x0171ae9879c7fbcf3071b149bb4f2130daef7457", - "symbol": "GPTW", - "decimals": 18, - "name": "GPT Wars", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x0171ae9879c7fbcf3071b149bb4f2130daef7457.png", - "aggregators": ["Rubic", "Rango", "Sonarwatch"], - "occurrences": 3 - }, - "0xc1ffaef4e7d553bbaf13926e258a1a555a363a07": { - "address": "0xc1ffaef4e7d553bbaf13926e258a1a555a363a07", - "symbol": "HIM", - "decimals": 18, - "name": "Human Intelligence Machin", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xc1ffaef4e7d553bbaf13926e258a1a555a363a07.png", - "aggregators": ["Rubic", "Rango", "Sonarwatch"], - "occurrences": 3 - }, - "0xf4210f93bc68d63df3286c73eba08c6414f40c0d": { - "address": "0xf4210f93bc68d63df3286c73eba08c6414f40c0d", - "symbol": "KATT", - "decimals": 18, - "name": "KATT DADDY", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xf4210f93bc68d63df3286c73eba08c6414f40c0d.png", - "aggregators": ["Rubic", "Rango", "Sonarwatch"], - "occurrences": 3 - }, - "0xa83d1a010e4a36198a884dcb3d7d2de87fe9a59d": { - "address": "0xa83d1a010e4a36198a884dcb3d7d2de87fe9a59d", - "symbol": "LAN", - "decimals": 18, - "name": "Lanify", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xa83d1a010e4a36198a884dcb3d7d2de87fe9a59d.png", - "aggregators": ["Rubic", "Rango", "Sonarwatch"], - "occurrences": 3 - }, - "0x420697291f6ce9fbb34e9feddd61868ca2f81f5c": { - "address": "0x420697291f6ce9fbb34e9feddd61868ca2f81f5c", - "symbol": "MONEYBEE", - "decimals": 18, - "name": "MONEYBEE", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x420697291f6ce9fbb34e9feddd61868ca2f81f5c.png", - "aggregators": ["Rubic", "Rango", "Sonarwatch"], - "occurrences": 3 - }, - "0xbe8dfc6661fafaa4445eb952586c0d347eacf048": { - "address": "0xbe8dfc6661fafaa4445eb952586c0d347eacf048", - "symbol": "MONK", - "decimals": 18, - "name": "Monk.gg", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xbe8dfc6661fafaa4445eb952586c0d347eacf048.png", - "aggregators": ["Rubic", "Rango", "Sonarwatch"], - "occurrences": 3 - }, - "0xc5396321805c7f1bce608cda194aa9155fb20f7d": { - "address": "0xc5396321805c7f1bce608cda194aa9155fb20f7d", - "symbol": "MOONCATS", - "decimals": 18, - "name": "Mooncats on Base", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xc5396321805c7f1bce608cda194aa9155fb20f7d.png", - "aggregators": ["Rubic", "Rango", "Sonarwatch"], - "occurrences": 3 - }, - "0xacb5b33ce55ba7729e38b2b59677e71c0112f0d9": { - "address": "0xacb5b33ce55ba7729e38b2b59677e71c0112f0d9", - "symbol": "OSP", - "decimals": 18, - "name": "OpenSocial", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xacb5b33ce55ba7729e38b2b59677e71c0112f0d9.png", - "aggregators": ["Rubic", "Rango", "Sonarwatch"], - "occurrences": 3 - }, - "0x28a5e71bfc02723eac17e39c84c5190415c0de9f": { - "address": "0x28a5e71bfc02723eac17e39c84c5190415c0de9f", - "symbol": "PEPI", - "decimals": 9, - "name": "PEPi", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x28a5e71bfc02723eac17e39c84c5190415c0de9f.png", - "aggregators": ["Rubic", "Rango", "Sonarwatch"], - "occurrences": 3 - }, - "0xfaa4f3bcfc87d791e9305951275e0f62a98bcb10": { - "address": "0xfaa4f3bcfc87d791e9305951275e0f62a98bcb10", - "symbol": "SUBF", - "decimals": 18, - "name": "Super Best Friends", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xfaa4f3bcfc87d791e9305951275e0f62a98bcb10.png", - "aggregators": ["Rubic", "Rango", "Sonarwatch"], - "occurrences": 3 - }, - "0x0d1fc046900628879d579364789273fd552ec582": { - "address": "0x0d1fc046900628879d579364789273fd552ec582", - "symbol": "BOOSHI", - "decimals": 18, - "name": "Booshi", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x0d1fc046900628879d579364789273fd552ec582.png", - "aggregators": ["Rubic", "Rango", "Sonarwatch"], - "occurrences": 3 - }, - "0xd98832e8a59156acbee4744b9a94a9989a728f36": { - "address": "0xd98832e8a59156acbee4744b9a94a9989a728f36", - "symbol": "AGENT", - "decimals": 18, - "name": "AgentAlgo", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xd98832e8a59156acbee4744b9a94a9989a728f36.png", - "aggregators": ["Rubic", "Rango", "Sonarwatch"], - "occurrences": 3 - }, - "0xa7ea9d5d4d4c7cf7dbde5871e6d108603c6942a5": { - "address": "0xa7ea9d5d4d4c7cf7dbde5871e6d108603c6942a5", - "symbol": "FOMO", - "decimals": 18, - "name": "FOMO TOCD", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xa7ea9d5d4d4c7cf7dbde5871e6d108603c6942a5.png", - "aggregators": ["Rubic", "Rango", "Sonarwatch"], - "occurrences": 3 - }, - "0xea1d649ddc8e2a6e6ee40b89b2997518476cafa5": { - "address": "0xea1d649ddc8e2a6e6ee40b89b2997518476cafa5", - "symbol": "MOBY", - "decimals": 18, - "name": "MOBY", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xea1d649ddc8e2a6e6ee40b89b2997518476cafa5.png", - "aggregators": ["Rubic", "Rango", "Sonarwatch"], - "occurrences": 3 - }, - "0x33d13d537609841ce6c42d6fd775dc33e3833411": { - "address": "0x33d13d537609841ce6c42d6fd775dc33e3833411", - "symbol": "OAKS", - "decimals": 18, - "name": "OAKS", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x33d13d537609841ce6c42d6fd775dc33e3833411.png", - "aggregators": ["Rubic", "Rango", "Sonarwatch"], - "occurrences": 3 - }, - "0x74ff3cbf86f95fea386f79633d7bc4460d415f34": { - "address": "0x74ff3cbf86f95fea386f79633d7bc4460d415f34", - "symbol": "BABYCRASH", - "decimals": 18, - "name": "BabyCrash", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x74ff3cbf86f95fea386f79633d7bc4460d415f34.png", - "aggregators": ["Rubic", "Rango", "Sonarwatch"], - "occurrences": 3 - }, - "0xd2faa0caee8421959aa13fbd20a7ed7e93702ffe": { - "address": "0xd2faa0caee8421959aa13fbd20a7ed7e93702ffe", - "symbol": "BALDO", - "decimals": 18, - "name": "Bald Dog", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xd2faa0caee8421959aa13fbd20a7ed7e93702ffe.png", - "aggregators": ["Rubic", "Rango", "Sonarwatch"], - "occurrences": 3 - }, - "0xc2464fb6edc12e4c0d3aa9b201497a27e6b7ef04": { - "address": "0xc2464fb6edc12e4c0d3aa9b201497a27e6b7ef04", - "symbol": "BASEAI", - "decimals": 18, - "name": "BaseAI", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xc2464fb6edc12e4c0d3aa9b201497a27e6b7ef04.png", - "aggregators": ["Rubic", "Rango", "Sonarwatch"], - "occurrences": 3 - }, - "0x84f074917fb9d464c1264c47296be53424bbc93f": { - "address": "0x84f074917fb9d464c1264c47296be53424bbc93f", - "symbol": "BLING", - "decimals": 9, - "name": "PlebDreke", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x84f074917fb9d464c1264c47296be53424bbc93f.png", - "aggregators": ["Rubic", "Rango", "Sonarwatch"], - "occurrences": 3 - }, - "0x4c40454659c8ec1283355d8e3911ba1745ff6fd1": { - "address": "0x4c40454659c8ec1283355d8e3911ba1745ff6fd1", - "symbol": "CHIP", - "decimals": 9, - "name": "Blue Chip", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x4c40454659c8ec1283355d8e3911ba1745ff6fd1.png", - "aggregators": ["Rubic", "Rango", "Sonarwatch"], - "occurrences": 3 - }, - "0x67ce18961c3269ca03c2e5632f1938cc53e614a1": { - "address": "0x67ce18961c3269ca03c2e5632f1938cc53e614a1", - "symbol": "CRAPPY", - "decimals": 18, - "name": "Crappy Bird", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x67ce18961c3269ca03c2e5632f1938cc53e614a1.png", - "aggregators": ["Rubic", "Rango", "Sonarwatch"], - "occurrences": 3 - }, - "0xc41ba5737baf6bd0ccd5daf7eee39874e4ad45ff": { - "address": "0xc41ba5737baf6bd0ccd5daf7eee39874e4ad45ff", - "symbol": "DEGENS", - "decimals": 18, - "name": "The Degensons", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xc41ba5737baf6bd0ccd5daf7eee39874e4ad45ff.png", - "aggregators": ["Rubic", "Rango", "Sonarwatch"], - "occurrences": 3 - }, - "0x9d6b8b6fb293c757e05073b84a583ecfaef8d8a7": { - "address": "0x9d6b8b6fb293c757e05073b84a583ecfaef8d8a7", - "symbol": "FLIES", - "decimals": 18, - "name": "XCOPYFLIES", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x9d6b8b6fb293c757e05073b84a583ecfaef8d8a7.png", - "aggregators": ["Rubic", "Rango", "Sonarwatch"], - "occurrences": 3 - }, - "0x45c30fa6a2c7e031fe86e4f1cb5becfde149b980": { - "address": "0x45c30fa6a2c7e031fe86e4f1cb5becfde149b980", - "symbol": "$FREN", - "decimals": 18, - "name": "Frens Club", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x45c30fa6a2c7e031fe86e4f1cb5becfde149b980.png", - "aggregators": ["Rubic", "Rango", "Sonarwatch"], - "occurrences": 3 - }, - "0xdda98a036e03611aa50ff457fffbbe9163981529": { - "address": "0xdda98a036e03611aa50ff457fffbbe9163981529", - "symbol": "FRENZ", - "decimals": 18, - "name": "FRENZ", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xdda98a036e03611aa50ff457fffbbe9163981529.png", - "aggregators": ["Rubic", "Rango", "Sonarwatch"], - "occurrences": 3 - }, - "0x3347453ced85bd288d783d85cdec9b01ab90f9d8": { - "address": "0x3347453ced85bd288d783d85cdec9b01ab90f9d8", - "symbol": "FTW", - "decimals": 9, - "name": "FriendTech33", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x3347453ced85bd288d783d85cdec9b01ab90f9d8.png", - "aggregators": ["Rubic", "Rango", "Sonarwatch"], - "occurrences": 3 - }, - "0x8f4e4221ba88d4e9bb76ecfb91d7c5ce08d7d5b9": { - "address": "0x8f4e4221ba88d4e9bb76ecfb91d7c5ce08d7d5b9", - "symbol": "FU", - "decimals": 18, - "name": "FU Money", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x8f4e4221ba88d4e9bb76ecfb91d7c5ce08d7d5b9.png", - "aggregators": ["Rubic", "Rango", "Sonarwatch"], - "occurrences": 3 - }, - "0xd01cb4171a985571deff48c9dc2f6e153a244d64": { - "address": "0xd01cb4171a985571deff48c9dc2f6e153a244d64", - "symbol": "UARB", - "decimals": 18, - "name": "Wrapped Arbitrum (Universal)", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xd01cb4171a985571deff48c9dc2f6e153a244d64.png", - "aggregators": ["Rubic", "Rango", "Sonarwatch"], - "occurrences": 3 - }, - "0xaa3ecad0cb644c0de72110a905a57667c1a1ca96": { - "address": "0xaa3ecad0cb644c0de72110a905a57667c1a1ca96", - "symbol": "WEIRDO", - "decimals": 9, - "name": "Weirdo [OLD]", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xaa3ecad0cb644c0de72110a905a57667c1a1ca96.png", - "aggregators": ["Rubic", "Rango", "Sonarwatch"], - "occurrences": 3 - }, - "0x8319767a7b602f88e376368dca1b92d38869b9b4": { - "address": "0x8319767a7b602f88e376368dca1b92d38869b9b4", - "symbol": "PEACH", - "decimals": 18, - "name": "Based Peaches", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x8319767a7b602f88e376368dca1b92d38869b9b4.png", - "aggregators": ["Rubic", "Rango", "Sonarwatch"], - "occurrences": 3 - }, - "0xea6f7e7e0f46a9e0f4e2048eb129d879f609d632": { - "address": "0xea6f7e7e0f46a9e0f4e2048eb129d879f609d632", - "symbol": "PERCY", - "decimals": 18, - "name": "Percy", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xea6f7e7e0f46a9e0f4e2048eb129d879f609d632.png", - "aggregators": ["Rubic", "Rango", "Sonarwatch"], - "occurrences": 3 - }, - "0x5ace197d87b614942bc1670eb0ddd55ce4432801": { - "address": "0x5ace197d87b614942bc1670eb0ddd55ce4432801", - "symbol": "QUACK", - "decimals": 18, - "name": "Quack Coin Base", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x5ace197d87b614942bc1670eb0ddd55ce4432801.png", - "aggregators": ["Rubic", "Rango", "Sonarwatch"], - "occurrences": 3 - }, - "0x469fda1fb46fcb4befc0d8b994b516bd28c87003": { - "address": "0x469fda1fb46fcb4befc0d8b994b516bd28c87003", - "symbol": "RAWR", - "decimals": 18, - "name": "Dino Poker", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x469fda1fb46fcb4befc0d8b994b516bd28c87003.png", - "aggregators": ["Rubic", "Rango", "Sonarwatch"], - "occurrences": 3 - }, - "0x26fb8f2f3b26c750ee34005c1930deb232940cfe": { - "address": "0x26fb8f2f3b26c750ee34005c1930deb232940cfe", - "symbol": "RFND", - "decimals": 18, - "name": "Refund (Base)", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x26fb8f2f3b26c750ee34005c1930deb232940cfe.png", - "aggregators": ["Rubic", "Rango", "Sonarwatch"], - "occurrences": 3 - }, - "0xd379002f26ce895d5c5095acb19afba92942c0cf": { - "address": "0xd379002f26ce895d5c5095acb19afba92942c0cf", - "symbol": "ROBO", - "decimals": 18, - "name": "the meme of the future", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xd379002f26ce895d5c5095acb19afba92942c0cf.png", - "aggregators": ["Rubic", "Rango", "Sonarwatch"], - "occurrences": 3 - }, - "0x52c45d3068c937cb1e6b4a7f2c2a66b85056dd24": { - "address": "0x52c45d3068c937cb1e6b4a7f2c2a66b85056dd24", - "symbol": "SHARD", - "decimals": 8, - "name": "Landtorn Shard", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x52c45d3068c937cb1e6b4a7f2c2a66b85056dd24.png", - "aggregators": ["Rubic", "Rango", "Sonarwatch"], - "occurrences": 3 - }, - "0x77c6986a83d5dbb6162ddf4f1747691005b4388a": { - "address": "0x77c6986a83d5dbb6162ddf4f1747691005b4388a", - "symbol": "SHKK", - "decimals": 18, - "name": "Shakaka", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x77c6986a83d5dbb6162ddf4f1747691005b4388a.png", - "aggregators": ["Rubic", "Rango", "Sonarwatch"], - "occurrences": 3 - }, - "0xfe4717f60ac5603dc6863700cd8ecf805908688d": { - "address": "0xfe4717f60ac5603dc6863700cd8ecf805908688d", - "symbol": "STRM", - "decimals": 18, - "name": "Streamer Inu", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xfe4717f60ac5603dc6863700cd8ecf805908688d.png", - "aggregators": ["Rubic", "Rango", "Sonarwatch"], - "occurrences": 3 - }, - "0xa1bf915363b533f5991dbada8c6c42fa0ce58fb8": { - "address": "0xa1bf915363b533f5991dbada8c6c42fa0ce58fb8", - "symbol": "SYN", - "decimals": 18, - "name": "Syn Dog", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xa1bf915363b533f5991dbada8c6c42fa0ce58fb8.png", - "aggregators": ["Rubic", "Rango", "Sonarwatch"], - "occurrences": 3 - }, - "0xce74702e67e3127613f3465384282bad77757ca3": { - "address": "0xce74702e67e3127613f3465384282bad77757ca3", - "symbol": "ST", - "decimals": 18, - "name": "Social Trade", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xce74702e67e3127613f3465384282bad77757ca3.png", - "aggregators": ["Rubic", "Rango", "Sonarwatch"], - "occurrences": 3 - }, - "0x97b959385dfdcaf252223838746beb232ac601aa": { - "address": "0x97b959385dfdcaf252223838746beb232ac601aa", - "symbol": "AIM", - "decimals": 18, - "name": "AI Market Compass", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x97b959385dfdcaf252223838746beb232ac601aa.png", - "aggregators": ["Rubic", "Rango", "Sonarwatch"], - "occurrences": 3 - }, - "0x2b1d36f5b61addaf7da7ebbd11b35fd8cfb0de31": { - "address": "0x2b1d36f5b61addaf7da7ebbd11b35fd8cfb0de31", - "symbol": "ITP", - "decimals": 18, - "name": "Interport Token", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x2b1d36f5b61addaf7da7ebbd11b35fd8cfb0de31.png", - "aggregators": ["Rubic", "Rango", "Sonarwatch"], - "occurrences": 3 - }, - "0x73e2a6320314883ff8cc08b53f1460a5f4c47f2c": { - "address": "0x73e2a6320314883ff8cc08b53f1460a5f4c47f2c", - "symbol": "HAI", - "decimals": 8, - "name": "Hacken", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x73e2a6320314883ff8cc08b53f1460a5f4c47f2c.png", - "aggregators": ["Rubic", "Rango", "Sonarwatch"], - "occurrences": 3 - }, - "0x45f368693eee8e3610270f82085784c1c8ac124b": { - "address": "0x45f368693eee8e3610270f82085784c1c8ac124b", - "symbol": "QVRS", - "decimals": 18, - "name": "QVRS", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x45f368693eee8e3610270f82085784c1c8ac124b.png", - "aggregators": ["Rubic", "Rango", "Sonarwatch"], - "occurrences": 3 - }, - "0x8b52f46a52d86c131222ee14167da6a847bdb84a": { - "address": "0x8b52f46a52d86c131222ee14167da6a847bdb84a", - "symbol": "ETHO", - "decimals": 18, - "name": "Etho Protocol", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x8b52f46a52d86c131222ee14167da6a847bdb84a.png", - "aggregators": ["Rubic", "Rango", "Sonarwatch"], - "occurrences": 3 - }, - "0x3159fb5589acd6bf9f82eb0efe8382ed55aed8fd": { - "address": "0x3159fb5589acd6bf9f82eb0efe8382ed55aed8fd", - "symbol": "APU", - "decimals": 18, - "name": "Apu Apustaja", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x3159fb5589acd6bf9f82eb0efe8382ed55aed8fd.png", - "aggregators": ["Rubic", "Rango", "Sonarwatch"], - "occurrences": 3 - }, - "0x4194f4e29d652656b6dc84f10363482c5ac101b5": { - "address": "0x4194f4e29d652656b6dc84f10363482c5ac101b5", - "symbol": "MPAA", - "decimals": 18, - "name": "MPAA", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x4194f4e29d652656b6dc84f10363482c5ac101b5.png", - "aggregators": ["Rubic", "Rango", "Sonarwatch"], - "occurrences": 3 - }, - "0x21b9d428eb20fa075a29d51813e57bab85406620": { - "address": "0x21b9d428eb20fa075a29d51813e57bab85406620", - "symbol": "SYPHER", - "decimals": 18, - "name": "Sypher", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x21b9d428eb20fa075a29d51813e57bab85406620.png", - "aggregators": ["Rubic", "Rango", "Sonarwatch"], - "occurrences": 3 - }, - "0x3eeec801cef575b876d253ab06d75251f67d827d": { - "address": "0x3eeec801cef575b876d253ab06d75251f67d827d", - "symbol": "DCM", - "decimals": 18, - "name": "Ducky City", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x3eeec801cef575b876d253ab06d75251f67d827d.png", - "aggregators": ["Rubic", "Rango", "Sonarwatch"], - "occurrences": 3 - }, - "0x67027f972671e6157f0e63632d2862fd4e96796a": { - "address": "0x67027f972671e6157f0e63632d2862fd4e96796a", - "symbol": "WNETZ", - "decimals": 18, - "name": "Wrapped NETZ", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x67027f972671e6157f0e63632d2862fd4e96796a.png", - "aggregators": ["Rubic", "Rango", "Sonarwatch"], - "occurrences": 3 - }, - "0xd1f398d6b3e5e2387e413831e206cfeb5fc1dcee": { - "address": "0xd1f398d6b3e5e2387e413831e206cfeb5fc1dcee", - "symbol": "PUBLX", - "decimals": 18, - "name": "PUBLC", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xd1f398d6b3e5e2387e413831e206cfeb5fc1dcee.png", - "aggregators": ["Rubic", "Rango", "Sonarwatch"], - "occurrences": 3 - }, - "0x1c555eee8018fee4fbca4bb657c5f175601e3ed7": { - "address": "0x1c555eee8018fee4fbca4bb657c5f175601e3ed7", - "symbol": "HUMO", - "decimals": 18, - "name": "HUMO", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x1c555eee8018fee4fbca4bb657c5f175601e3ed7.png", - "aggregators": ["Rubic", "Rango", "Sonarwatch"], - "occurrences": 3 - }, - "0xb8e564b206032bbcda2c3978bc371da52152f72e": { - "address": "0xb8e564b206032bbcda2c3978bc371da52152f72e", - "symbol": "BASEX", - "decimals": 18, - "name": "Base Terminal", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xb8e564b206032bbcda2c3978bc371da52152f72e.png", - "aggregators": ["Rubic", "Rango", "Sonarwatch"], - "occurrences": 3 - }, - "0x5dc2085fe510bbaaba2119d71b09c25098caca3f": { - "address": "0x5dc2085fe510bbaaba2119d71b09c25098caca3f", - "symbol": "RYIU", - "decimals": 9, - "name": "RYI Unity", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x5dc2085fe510bbaaba2119d71b09c25098caca3f.png", - "aggregators": ["Rubic", "Rango", "Sonarwatch"], - "occurrences": 3 - }, - "0x3942cae8bb9fc8f24fe627b30b6e7461e5662ba7": { - "address": "0x3942cae8bb9fc8f24fe627b30b6e7461e5662ba7", - "symbol": "BAILEY", - "decimals": 18, - "name": "Golden Bailey", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x3942cae8bb9fc8f24fe627b30b6e7461e5662ba7.png", - "aggregators": ["Rubic", "Rango", "Sonarwatch"], - "occurrences": 3 - }, - "0x1d69c205416c683e3d0efc93b76a78ee7755945c": { - "address": "0x1d69c205416c683e3d0efc93b76a78ee7755945c", - "symbol": "BOOTS", - "decimals": 18, - "name": "boots", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x1d69c205416c683e3d0efc93b76a78ee7755945c.png", - "aggregators": ["Rubic", "Rango", "Sonarwatch"], - "occurrences": 3 - }, - "0xbc1852f8940991d91bd2b09a5abb5e7b8092a16c": { - "address": "0xbc1852f8940991d91bd2b09a5abb5e7b8092a16c", - "symbol": "BASEPRINTER", - "decimals": 18, - "name": "BasePrinter", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xbc1852f8940991d91bd2b09a5abb5e7b8092a16c.png", - "aggregators": ["Rubic", "Rango", "Sonarwatch"], - "occurrences": 3 - }, - "0xe12acf5bb21654195a498c2fbd49fff801a3a02d": { - "address": "0xe12acf5bb21654195a498c2fbd49fff801a3a02d", - "symbol": "POP", - "decimals": 18, - "name": "Proof of Presence", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xe12acf5bb21654195a498c2fbd49fff801a3a02d.png", - "aggregators": ["Rubic", "Rango", "Sonarwatch"], - "occurrences": 3 - }, - "0x55027a5b06f4340cc4c82dcc74c90ca93dcb173e": { - "address": "0x55027a5b06f4340cc4c82dcc74c90ca93dcb173e", - "symbol": "TAD", - "decimals": 18, - "name": "Tadpole", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x55027a5b06f4340cc4c82dcc74c90ca93dcb173e.png", - "aggregators": ["Rubic", "Rango", "Sonarwatch"], - "occurrences": 3 - }, - "0x000000000000a59351f61b598e8da953b9e041ec": { - "address": "0x000000000000a59351f61b598e8da953b9e041ec", - "symbol": "GG", - "decimals": 18, - "name": "Gun Game", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x000000000000a59351f61b598e8da953b9e041ec.png", - "aggregators": ["Rubic", "Rango", "Sonarwatch"], - "occurrences": 3 - }, - "0xd91d07e4949a858d29005d339610db2402ef5b73": { - "address": "0xd91d07e4949a858d29005d339610db2402ef5b73", - "symbol": "DGOLD", - "decimals": 18, - "name": "DataGold", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xd91d07e4949a858d29005d339610db2402ef5b73.png", - "aggregators": ["Rubic", "Rango", "Sonarwatch"], - "occurrences": 3 - }, - "0x08bea95ec37829cbbda9b556f340464d38546160": { - "address": "0x08bea95ec37829cbbda9b556f340464d38546160", - "symbol": "BABYDEGEN", - "decimals": 18, - "name": "BABY DEGEN", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x08bea95ec37829cbbda9b556f340464d38546160.png", - "aggregators": ["Rubic", "Rango", "Sonarwatch"], - "occurrences": 3 - }, - "0xf653e8b6fcbd2a63246c6b7722d1e9d819611241": { - "address": "0xf653e8b6fcbd2a63246c6b7722d1e9d819611241", - "symbol": "UCRO", - "decimals": 18, - "name": "Wrapped Cronos (Universal)", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xf653e8b6fcbd2a63246c6b7722d1e9d819611241.png", - "aggregators": ["Rubic", "Rango", "Sonarwatch"], - "occurrences": 3 - }, - "0x60222751504796934bddee8218f9725f0c95d2c1": { - "address": "0x60222751504796934bddee8218f9725f0c95d2c1", - "symbol": "SIMP", - "decimals": 18, - "name": "Simps", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x60222751504796934bddee8218f9725f0c95d2c1.png", - "aggregators": ["Rubic", "Rango", "Sonarwatch"], - "occurrences": 3 - }, - "0xd064c53f043d5aee2ac9503b13ee012bf2def1d0": { - "address": "0xd064c53f043d5aee2ac9503b13ee012bf2def1d0", - "symbol": "DEFIDO", - "decimals": 18, - "name": "DeFido", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xd064c53f043d5aee2ac9503b13ee012bf2def1d0.png", - "aggregators": ["Rubic", "Rango", "Sonarwatch"], - "occurrences": 3 - }, - "0x21eceaf3bf88ef0797e3927d855ca5bb569a47fc": { - "address": "0x21eceaf3bf88ef0797e3927d855ca5bb569a47fc", - "symbol": "VOID", - "decimals": 18, - "name": "The Void", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x21eceaf3bf88ef0797e3927d855ca5bb569a47fc.png", - "aggregators": ["Rubic", "Rango", "Sonarwatch"], - "occurrences": 3 - }, - "0x87c211144b1d9bdaa5a791b8099ea4123dc31d21": { - "address": "0x87c211144b1d9bdaa5a791b8099ea4123dc31d21", - "symbol": "BCP", - "decimals": 18, - "name": "BlockChainPeople", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x87c211144b1d9bdaa5a791b8099ea4123dc31d21.png", - "aggregators": ["Rubic", "Rango", "Sonarwatch"], - "occurrences": 3 - }, - "0xe9507980a8bd4451ac0e7f6fcd3ec98b9ac83b52": { - "address": "0xe9507980a8bd4451ac0e7f6fcd3ec98b9ac83b52", - "symbol": "WAIFU", - "decimals": 18, - "name": "WAIFU", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xe9507980a8bd4451ac0e7f6fcd3ec98b9ac83b52.png", - "aggregators": ["Rubic", "Rango", "Sonarwatch"], - "occurrences": 3 - }, - "0xf2c862ba9edba3579dd8b37389deea0528c625c2": { - "address": "0xf2c862ba9edba3579dd8b37389deea0528c625c2", - "symbol": "$WARPIE", - "decimals": 18, - "name": "Warpie", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xf2c862ba9edba3579dd8b37389deea0528c625c2.png", - "aggregators": ["Rubic", "Rango", "Sonarwatch"], - "occurrences": 3 - }, - "0x5cc5e64ab764a0f1e97f23984e20fd4528356a6a": { - "address": "0x5cc5e64ab764a0f1e97f23984e20fd4528356a6a", - "symbol": "XRGB", - "decimals": 18, - "name": "XRGB", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x5cc5e64ab764a0f1e97f23984e20fd4528356a6a.png", - "aggregators": ["Rubic", "Rango", "Sonarwatch"], - "occurrences": 3 - }, - "0xbc404429558292ee2d769e57d57d6e74bbd2792d": { - "address": "0xbc404429558292ee2d769e57d57d6e74bbd2792d", - "symbol": "SUSX", - "decimals": 18, - "name": "Savings USX", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xbc404429558292ee2d769e57d57d6e74bbd2792d.png", - "aggregators": ["Rubic", "Rango", "Sonarwatch"], - "occurrences": 3 - }, - "0x6bc40d4099f9057b23af309c08d935b890d7adc0": { - "address": "0x6bc40d4099f9057b23af309c08d935b890d7adc0", - "symbol": "SNAIL", - "decimals": 18, - "name": "SnailBrook", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x6bc40d4099f9057b23af309c08d935b890d7adc0.png", - "aggregators": ["Rubic", "Rango", "Sonarwatch"], - "occurrences": 3 - }, - "0x255f1b39172f65dc6406b8bee8b08155c45fe1b6": { - "address": "0x255f1b39172f65dc6406b8bee8b08155c45fe1b6", - "symbol": "HARAMBE", - "decimals": 18, - "name": "HarambeCoin", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x255f1b39172f65dc6406b8bee8b08155c45fe1b6.png", - "aggregators": ["Rubic", "Rango", "Sonarwatch"], - "occurrences": 3 - }, - "0x82b0e1a2374ea0198f62a48b14ffab53db6c1e36": { - "address": "0x82b0e1a2374ea0198f62a48b14ffab53db6c1e36", - "symbol": "PEGG", - "decimals": 18, - "name": "PokPok Golden Egg", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x82b0e1a2374ea0198f62a48b14ffab53db6c1e36.png", - "aggregators": ["Rubic", "Rango", "Sonarwatch"], - "occurrences": 3 - }, - "0x35bfe9427d37cec78ea1eb9fa922f12ae8a32547": { - "address": "0x35bfe9427d37cec78ea1eb9fa922f12ae8a32547", - "symbol": "ETHPRINTER", - "decimals": 18, - "name": "ETH Printer", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x35bfe9427d37cec78ea1eb9fa922f12ae8a32547.png", - "aggregators": ["Rubic", "Rango", "Sonarwatch"], - "occurrences": 3 - }, - "0x174e33ef2effa0a4893d97dda5db4044cc7993a3": { - "address": "0x174e33ef2effa0a4893d97dda5db4044cc7993a3", - "symbol": "KEREN", - "decimals": 18, - "name": "Keren", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x174e33ef2effa0a4893d97dda5db4044cc7993a3.png", - "aggregators": ["Rubic", "Rango", "Sonarwatch"], - "occurrences": 3 - }, - "0xa202b2b7b4d2fe56bf81492ffdda657fe512de07": { - "address": "0xa202b2b7b4d2fe56bf81492ffdda657fe512de07", - "symbol": "BABYMIGGLES", - "decimals": 18, - "name": "Baby Miggles", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xa202b2b7b4d2fe56bf81492ffdda657fe512de07.png", - "aggregators": ["Rubic", "Rango", "Sonarwatch"], - "occurrences": 3 - }, - "0xd47f3e45b23b7594f5d5e1ccfde63237c60be49e": { - "address": "0xd47f3e45b23b7594f5d5e1ccfde63237c60be49e", - "symbol": "BSX", - "decimals": 18, - "name": "BSX", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xd47f3e45b23b7594f5d5e1ccfde63237c60be49e.png", - "aggregators": ["Rubic", "Rango", "Sonarwatch"], - "occurrences": 3 - }, - "0x6a27cd26a373530835b9fe7ac472b3e080070f64": { - "address": "0x6a27cd26a373530835b9fe7ac472b3e080070f64", - "symbol": "BAI", - "decimals": 18, - "name": "BlockAI", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x6a27cd26a373530835b9fe7ac472b3e080070f64.png", - "aggregators": ["Rubic", "Rango", "Sonarwatch"], - "occurrences": 3 - }, - "0xa69f80524381275a7ffdb3ae01c54150644c8792": { - "address": "0xa69f80524381275a7ffdb3ae01c54150644c8792", - "symbol": "SUP", - "decimals": 18, - "name": "Superfluid Token", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xa69f80524381275a7ffdb3ae01c54150644c8792.png", - "aggregators": ["Metamask", "Rubic"], - "occurrences": 2 - }, - "0xd76f5faf6888e24d9f04bf92a0c8b921fe4390e0": { - "address": "0xd76f5faf6888e24d9f04bf92a0c8b921fe4390e0", - "symbol": "WBRL", - "decimals": 18, - "name": "Brazilian Real", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xd76f5faf6888e24d9f04bf92a0c8b921fe4390e0.png", - "aggregators": ["Metamask", "Rubic"], - "occurrences": 2 - }, - "0x337e7456b420bd3481e7fa61fa9850343d610d34": { - "address": "0x337e7456b420bd3481e7fa61fa9850343d610d34", - "symbol": "WMXN", - "decimals": 18, - "name": "Mexican Peso", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x337e7456b420bd3481e7fa61fa9850343d610d34.png", - "aggregators": ["Metamask", "Rubic"], - "occurrences": 2 - }, - "0x8a1d45e102e886510e891d2ec656a708991e2d76": { - "address": "0x8a1d45e102e886510e891d2ec656a708991e2d76", - "symbol": "WCOP", - "decimals": 18, - "name": "Colombian Peso", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x8a1d45e102e886510e891d2ec656a708991e2d76.png", - "aggregators": ["Metamask", "Rubic"], - "occurrences": 2 - }, - "0x61d450a098b6a7f69fc4b98ce68198fe59768651": { - "address": "0x61d450a098b6a7f69fc4b98ce68198fe59768651", - "symbol": "WCLP", - "decimals": 18, - "name": "Chilean Peso", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x61d450a098b6a7f69fc4b98ce68198fe59768651.png", - "aggregators": ["Metamask", "Rubic"], - "occurrences": 2 - }, - "0x4f34c8b3b5fb6d98da888f0fea543d4d9c9f2ebe": { - "address": "0x4f34c8b3b5fb6d98da888f0fea543d4d9c9f2ebe", - "symbol": "WPEN", - "decimals": 18, - "name": "Peruvian Sol", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x4f34c8b3b5fb6d98da888f0fea543d4d9c9f2ebe.png", - "aggregators": ["Metamask", "Rubic"], - "occurrences": 2 - }, - "0xb3b32f9f8827d4634fe7d973fa1034ec9fddb3b3": { - "address": "0xb3b32f9f8827d4634fe7d973fa1034ec9fddb3b3", - "symbol": "B3", - "decimals": 18, - "name": "B3 (Base)", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xb3b32f9f8827d4634fe7d973fa1034ec9fddb3b3.png", - "aggregators": [ - "CoinGecko", - "1inch", - "LiFi", - "Socket", - "Rubic", - "Squid", - "Rango", - "Sonarwatch" - ], - "occurrences": 8 - }, - "0xb20a4bd059f5914a2f8b9c18881c637f79efb7df": { - "address": "0xb20a4bd059f5914a2f8b9c18881c637f79efb7df", - "symbol": "ADS", - "decimals": 11, - "name": "Adshares", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xb20a4bd059f5914a2f8b9c18881c637f79efb7df.png", - "aggregators": [ - "CoinGecko", - "LiFi", - "Socket", - "Rubic", - "Squid", - "Rango", - "Sonarwatch" - ], - "occurrences": 7 - }, - "0x211cc4dd073734da055fbf44a2b4667d5e5fe5d2": { - "address": "0x211cc4dd073734da055fbf44a2b4667d5e5fe5d2", - "symbol": "SUSDE", - "decimals": 18, - "name": "SUSDE", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x211cc4dd073734da055fbf44a2b4667d5e5fe5d2.png", - "aggregators": [ - "CoinGecko", - "1inch", - "LiFi", - "Socket", - "Rubic", - "Squid", - "Rango" - ], - "occurrences": 7 - }, - "0xff0c532fdb8cd566ae169c1cb157ff2bdc83e105": { - "address": "0xff0c532fdb8cd566ae169c1cb157ff2bdc83e105", - "symbol": "FREN PET", - "decimals": 18, - "name": "Fren Pet", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xff0c532fdb8cd566ae169c1cb157ff2bdc83e105.png", - "aggregators": [ - "CoinGecko", - "LiFi", - "Rubic", - "Rango", - "Sonarwatch", - "SushiSwap" - ], - "occurrences": 6 - }, - "0x555fff48549c1a25a723bd8e7ed10870d82e8379": { - "address": "0x555fff48549c1a25a723bd8e7ed10870d82e8379", - "symbol": "BIM", - "decimals": 18, - "name": "BIM", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x555fff48549c1a25a723bd8e7ed10870d82e8379.png", - "aggregators": [ - "CoinGecko", - "LiFi", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 6 - }, - "0x432036208d2717394d2614d6697c46df3ed69540": { - "address": "0x432036208d2717394d2614d6697c46df3ed69540", - "symbol": "SYN", - "decimals": 18, - "name": "Synapse", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x432036208d2717394d2614d6697c46df3ed69540.png", - "aggregators": [ - "CoinGecko", - "LiFi", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 6 - }, - "0xe231db5f348d709239ef1741ea30961b3b635a61": { - "address": "0xe231db5f348d709239ef1741ea30961b3b635a61", - "symbol": "YNETHX", - "decimals": 18, - "name": "ynETH MAX", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xe231db5f348d709239ef1741ea30961b3b635a61.png", - "aggregators": [ - "CoinGecko", - "LiFi", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 6 - }, - "0xf3dd141109dfe8e4c006f88a2a8747a086e7c1f8": { - "address": "0xf3dd141109dfe8e4c006f88a2a8747a086e7c1f8", - "symbol": "HOT", - "decimals": 18, - "name": "Holo", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xf3dd141109dfe8e4c006f88a2a8747a086e7c1f8.png", - "aggregators": [ - "CoinGecko", - "LiFi", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 6 - }, - "0xdec933e2392ad908263e70a386fbf34e703ffe8f": { - "address": "0xdec933e2392ad908263e70a386fbf34e703ffe8f", - "symbol": "WBCOIN", - "decimals": 18, - "name": "Wrapped bCOIN", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xdec933e2392ad908263e70a386fbf34e703ffe8f.png", - "aggregators": [ - "CoinGecko", - "LiFi", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 6 - }, - "0xe4c3461a20f50dad7b9e88ca0222a255c4126fc0": { - "address": "0xe4c3461a20f50dad7b9e88ca0222a255c4126fc0", - "symbol": "XION", - "decimals": 6, - "name": "XION", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xe4c3461a20f50dad7b9e88ca0222a255c4126fc0.png", - "aggregators": [ - "CoinGecko", - "LiFi", - "Rubic", - "Squid", - "Rango", - "Sonarwatch" - ], - "occurrences": 6 - }, - "0xcbd06e5a2b0c65597161de254aa074e489deb510": { - "address": "0xcbd06e5a2b0c65597161de254aa074e489deb510", - "symbol": "CBDOGE", - "decimals": 8, - "name": "Coinbase Wrapped DOGE", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xcbd06e5a2b0c65597161de254aa074e489deb510.png", - "aggregators": ["CoinGecko", "LiFi", "Rubic", "Squid", "Rango"], - "occurrences": 5 - }, - "0xcb111e6a2a3bde90856d299d61341ac302167d23": { - "address": "0xcb111e6a2a3bde90856d299d61341ac302167d23", - "symbol": "CBMEGA", - "decimals": 18, - "name": "Coinbase Wrapped MEGA", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xcb111e6a2a3bde90856d299d61341ac302167d23.png", - "aggregators": ["Metamask", "1inch", "LiFi", "Rubic", "Rango"], - "occurrences": 5 - }, - "0xcb585250f852c6c6bf90434ab21a00f02833a4af": { - "address": "0xcb585250f852c6c6bf90434ab21a00f02833a4af", - "symbol": "CBXRP", - "decimals": 6, - "name": "Coinbase Wrapped XRP", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xcb585250f852c6c6bf90434ab21a00f02833a4af.png", - "aggregators": ["CoinGecko", "LiFi", "Rubic", "Squid", "Rango"], - "occurrences": 5 - }, - "0xb38266e0e9d9681b77aeb0a280e98131b953f865": { - "address": "0xb38266e0e9d9681b77aeb0a280e98131b953f865", - "symbol": "DOVU", - "decimals": 8, - "name": "DOVU", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xb38266e0e9d9681b77aeb0a280e98131b953f865.png", - "aggregators": [ - "CoinGecko", - "LiFi", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x16ee7ecac70d1028e7712751e2ee6ba808a7dd92": { - "address": "0x16ee7ecac70d1028e7712751e2ee6ba808a7dd92", - "symbol": "FUN", - "decimals": 18, - "name": "Sport.fun", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x16ee7ecac70d1028e7712751e2ee6ba808a7dd92.png", - "aggregators": ["CoinGecko", "Socket", "Rubic", "Rango"], - "occurrences": 4 - }, - "0xc9d23ed2adb0f551369946bd377f8644ce1ca5c4": { - "address": "0xc9d23ed2adb0f551369946bd377f8644ce1ca5c4", - "symbol": "HYPER", - "decimals": 18, - "name": "Hyperlane", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xc9d23ed2adb0f551369946bd377f8644ce1ca5c4.png", - "aggregators": [ - "CoinGecko", - "LiFi", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0xdae49c25fad3a62a8e8bfb6da12c46be611f9f7a": { - "address": "0xdae49c25fad3a62a8e8bfb6da12c46be611f9f7a", - "symbol": "KRL", - "decimals": 18, - "name": "KRYLL", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xdae49c25fad3a62a8e8bfb6da12c46be611f9f7a.png", - "aggregators": ["CoinGecko", "LiFi", "Socket", "Rubic", "Rango"], - "occurrences": 5 - }, - "0x1f16e03c1a5908818f47f6ee7bb16690b40d0671": { - "address": "0x1f16e03c1a5908818f47f6ee7bb16690b40d0671", - "symbol": "RECALL", - "decimals": 18, - "name": "Recall", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x1f16e03c1a5908818f47f6ee7bb16690b40d0671.png", - "aggregators": ["CoinGecko", "Rubic", "Squid", "Rango"], - "occurrences": 4 - }, - "0x729f75aff28c726e32403e80cef2afb518cfbfa7": { - "address": "0x729f75aff28c726e32403e80cef2afb518cfbfa7", - "symbol": "WABASEURC", - "decimals": 6, - "name": "Wrapped Aave Base EURC", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x729f75aff28c726e32403e80cef2afb518cfbfa7.png", - "aggregators": ["CoinGecko", "1inch", "LiFi", "Rubic", "Rango"], - "occurrences": 5 - }, - "0x88b1cd4b430d95b406e382c3cdbae54697a0286e": { - "address": "0x88b1cd4b430d95b406e382c3cdbae54697a0286e", - "symbol": "WABASGHO", - "decimals": 18, - "name": "WABASGHO", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x88b1cd4b430d95b406e382c3cdbae54697a0286e.png", - "aggregators": ["CoinGecko", "1inch", "LiFi", "Rubic", "Rango"], - "occurrences": 5 - }, - "0x269cae7dc59803e5c596c95756faeebb6030e0af": { - "address": "0x269cae7dc59803e5c596c95756faeebb6030e0af", - "symbol": "MXNE", - "decimals": 6, - "name": "Real MXN", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x269cae7dc59803e5c596c95756faeebb6030e0af.png", - "aggregators": [ - "CoinGecko", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x3a43aec53490cb9fa922847385d82fe25d0e9de7": { - "address": "0x3a43aec53490cb9fa922847385d82fe25d0e9de7", - "symbol": "YOETH", - "decimals": 18, - "name": "Yield Optimizer ETH", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x3a43aec53490cb9fa922847385d82fe25d0e9de7.png", - "aggregators": [ - "CoinGecko", - "LiFi", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0xf8f10f39116716e89498c1c5e94137ada11b2bc7": { - "address": "0xf8f10f39116716e89498c1c5e94137ada11b2bc7", - "symbol": "WABASEZETH", - "decimals": 18, - "name": "Wrapped Aave Base ezETH", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xf8f10f39116716e89498c1c5e94137ada11b2bc7.png", - "aggregators": ["CoinGecko", "1inch", "LiFi", "Rubic", "Rango"], - "occurrences": 5 - }, - "0xe298b938631f750dd409fb18227c4a23dcdaab9b": { - "address": "0xe298b938631f750dd409fb18227c4a23dcdaab9b", - "symbol": "WABASWETH", - "decimals": 18, - "name": "Wrapped Aave Base WETH", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xe298b938631f750dd409fb18227c4a23dcdaab9b.png", - "aggregators": ["CoinGecko", "1inch", "LiFi", "Rubic", "Rango"], - "occurrences": 5 - }, - "0x4acc81dc9c03e5329a2c19763a1d10ba9308339f": { - "address": "0x4acc81dc9c03e5329a2c19763a1d10ba9308339f", - "symbol": "BOON", - "decimals": 18, - "name": "Base Baboon", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x4acc81dc9c03e5329a2c19763a1d10ba9308339f.png", - "aggregators": [ - "CoinGecko", - "Rubic", - "Squid", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x1217bfe6c773eec6cc4a38b5dc45b92292b6e189": { - "address": "0x1217bfe6c773eec6cc4a38b5dc45b92292b6e189", - "symbol": "OUSDT", - "decimals": 6, - "name": "OpenUSDT", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x1217bfe6c773eec6cc4a38b5dc45b92292b6e189.png", - "aggregators": [ - "CoinGecko", - "LiFi", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0xc768c589647798a6ee01a91fde98ef2ed046dbd6": { - "address": "0xc768c589647798a6ee01a91fde98ef2ed046dbd6", - "symbol": "WABASUSDC", - "decimals": 6, - "name": "WABASUSDC", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xc768c589647798a6ee01a91fde98ef2ed046dbd6.png", - "aggregators": ["CoinGecko", "1inch", "LiFi", "Rubic", "Rango"], - "occurrences": 5 - }, - "0x306acd0c07c430abbbb2e74ef7bde94f32a898c0": { - "address": "0x306acd0c07c430abbbb2e74ef7bde94f32a898c0", - "symbol": "SEDA", - "decimals": 18, - "name": "SEDA", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x306acd0c07c430abbbb2e74ef7bde94f32a898c0.png", - "aggregators": [ - "CoinGecko", - "LiFi", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0xfb8718a69aed7726afb3f04d2bd4bfde1bdcb294": { - "address": "0xfb8718a69aed7726afb3f04d2bd4bfde1bdcb294", - "symbol": "TRYB", - "decimals": 6, - "name": "BiLira", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xfb8718a69aed7726afb3f04d2bd4bfde1bdcb294.png", - "aggregators": [ - "CoinGecko", - "LiFi", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0xef73611f98da6e57e0776317957af61b59e09ed7": { - "address": "0xef73611f98da6e57e0776317957af61b59e09ed7", - "symbol": "KENDU", - "decimals": 18, - "name": "Kendu Inu", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xef73611f98da6e57e0776317957af61b59e09ed7.png", - "aggregators": [ - "CoinGecko", - "Rubic", - "Squid", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0xd52333441c0553facb259600fa833a69186893a5": { - "address": "0xd52333441c0553facb259600fa833a69186893a5", - "symbol": "PAAL", - "decimals": 18, - "name": "PAAL AI", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xd52333441c0553facb259600fa833a69186893a5.png", - "aggregators": [ - "CoinGecko", - "LiFi", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x06d998a2c64caf9feb2caf3ca8872740ef013122": { - "address": "0x06d998a2c64caf9feb2caf3ca8872740ef013122", - "symbol": "DCB", - "decimals": 18, - "name": "Decubate", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x06d998a2c64caf9feb2caf3ca8872740ef013122.png", - "aggregators": [ - "CoinGecko", - "Rubic", - "Squid", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x758a3e0b1f842c9306b783f8a4078c6c8c03a270": { - "address": "0x758a3e0b1f842c9306b783f8a4078c6c8c03a270", - "symbol": "USD0", - "decimals": 18, - "name": "Usual USD", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x758a3e0b1f842c9306b783f8a4078c6c8c03a270.png", - "aggregators": [ - "CoinGecko", - "LiFi", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x03569cc076654f82679c4ba2124d64774781b01d": { - "address": "0x03569cc076654f82679c4ba2124d64774781b01d", - "symbol": "BOLD", - "decimals": 18, - "name": "BOLD", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x03569cc076654f82679c4ba2124d64774781b01d.png", - "aggregators": ["CoinGecko", "LiFi", "Socket", "Rubic", "Rango"], - "occurrences": 5 - }, - "0x7750c092e284e2c7366f50c8306f43c7eb2e82a2": { - "address": "0x7750c092e284e2c7366f50c8306f43c7eb2e82a2", - "symbol": "OVER", - "decimals": 18, - "name": "Overtime", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x7750c092e284e2c7366f50c8306f43c7eb2e82a2.png", - "aggregators": [ - "CoinGecko", - "LiFi", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x526728dbc96689597f85ae4cd716d4f7fccbae9d": { - "address": "0x526728dbc96689597f85ae4cd716d4f7fccbae9d", - "symbol": "MSUSD", - "decimals": 18, - "name": "MSUSD", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x526728dbc96689597f85ae4cd716d4f7fccbae9d.png", - "aggregators": ["CoinGecko", "LiFi", "Rubic", "Squid", "Rango"], - "occurrences": 5 - }, - "0x7ba6f01772924a82d9626c126347a28299e98c98": { - "address": "0x7ba6f01772924a82d9626c126347a28299e98c98", - "symbol": "MSETH", - "decimals": 18, - "name": "MSETH", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x7ba6f01772924a82d9626c126347a28299e98c98.png", - "aggregators": ["CoinGecko", "LiFi", "Rubic", "Squid", "Rango"], - "occurrences": 5 - }, - "0x4acd4d03af6f9cc0fb7c5f0868b7b6287d7969c5": { - "address": "0x4acd4d03af6f9cc0fb7c5f0868b7b6287d7969c5", - "symbol": "USUAL", - "decimals": 18, - "name": "Usual", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x4acd4d03af6f9cc0fb7c5f0868b7b6287d7969c5.png", - "aggregators": [ - "CoinGecko", - "LiFi", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x084382d1cc4f4dfd1769b1cc1ac2a9b1f8365e90": { - "address": "0x084382d1cc4f4dfd1769b1cc1ac2a9b1f8365e90", - "symbol": "MODE", - "decimals": 18, - "name": "Mode", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x084382d1cc4f4dfd1769b1cc1ac2a9b1f8365e90.png", - "aggregators": [ - "CoinGecko", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x74ccbe53f77b08632ce0cb91d3a545bf6b8e0979": { - "address": "0x74ccbe53f77b08632ce0cb91d3a545bf6b8e0979", - "symbol": "BOMB", - "decimals": 18, - "name": "Fantom Bomb", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x74ccbe53f77b08632ce0cb91d3a545bf6b8e0979.png", - "aggregators": [ - "CoinGecko", - "LiFi", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x58538e6a46e07434d7e7375bc268d3cb839c0133": { - "address": "0x58538e6a46e07434d7e7375bc268d3cb839c0133", - "symbol": "ENA", - "decimals": 18, - "name": "ENA", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x58538e6a46e07434d7e7375bc268d3cb839c0133.png", - "aggregators": ["CoinGecko", "LiFi", "Socket", "Rubic", "Rango"], - "occurrences": 5 - }, - "0x5d3a1ff2b6bab83b63cd9ad0787074081a52ef34": { - "address": "0x5d3a1ff2b6bab83b63cd9ad0787074081a52ef34", - "symbol": "USDE", - "decimals": 18, - "name": "USDe", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x5d3a1ff2b6bab83b63cd9ad0787074081a52ef34.png", - "aggregators": ["CoinGecko", "LiFi", "Socket", "Rubic", "Rango"], - "occurrences": 5 - }, - "0xd4554bea546efa83c1e6b389ecac40ea999b3e78": { - "address": "0xd4554bea546efa83c1e6b389ecac40ea999b3e78", - "symbol": "SQD", - "decimals": 18, - "name": "SQD", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xd4554bea546efa83c1e6b389ecac40ea999b3e78.png", - "aggregators": ["CoinGecko", "1inch", "LiFi", "Rubic", "Rango"], - "occurrences": 5 - }, - "0xb5130f4767ab0acc579f25a76e8f9e977cb3f948": { - "address": "0xb5130f4767ab0acc579f25a76e8f9e977cb3f948", - "symbol": "GOD", - "decimals": 18, - "name": "Godcoin", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xb5130f4767ab0acc579f25a76e8f9e977cb3f948.png", - "aggregators": ["LiFi", "Socket", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 5 - }, - "0xe1f9ac62a2f34881f6fe0f84322de9d7024c2b8e": { - "address": "0xe1f9ac62a2f34881f6fe0f84322de9d7024c2b8e", - "symbol": "MOCHI", - "decimals": 8, - "name": "Mochi", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xe1f9ac62a2f34881f6fe0f84322de9d7024c2b8e.png", - "aggregators": ["LiFi", "Rubic", "Squid", "Rango", "SushiSwap"], - "occurrences": 5 - }, - "0x4bfaa776991e85e5f8b1255461cbbd216cfc714f": { - "address": "0x4bfaa776991e85e5f8b1255461cbbd216cfc714f", - "symbol": "HOME", - "decimals": 18, - "name": "Home", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x4bfaa776991e85e5f8b1255461cbbd216cfc714f.png", - "aggregators": ["CoinGecko", "LiFi", "Rubic", "Rango"], - "occurrences": 4 - }, - "0xa53887f7e7c1bf5010b8627f1c1ba94fe7a5d6e0": { - "address": "0xa53887f7e7c1bf5010b8627f1c1ba94fe7a5d6e0", - "symbol": "RNBW", - "decimals": 18, - "name": "Rainbow", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xa53887f7e7c1bf5010b8627f1c1ba94fe7a5d6e0.png", - "aggregators": ["CoinGecko", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x35c9e8d97f7e24349e56cd048b30d3eae6fd7ff8": { - "address": "0x35c9e8d97f7e24349e56cd048b30d3eae6fd7ff8", - "symbol": "$WEEDE", - "decimals": 18, - "name": "WeeDE", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x35c9e8d97f7e24349e56cd048b30d3eae6fd7ff8.png", - "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0x4d6d977aacbac1bdd603c7a759986f74a5dfaef8": { - "address": "0x4d6d977aacbac1bdd603c7a759986f74a5dfaef8", - "symbol": "GEAI", - "decimals": 18, - "name": "Georgia by Virtuals", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x4d6d977aacbac1bdd603c7a759986f74a5dfaef8.png", - "aggregators": ["CoinGecko", "Rubic", "Squid", "Rango"], - "occurrences": 4 - }, - "0xb661933d9f24ec34dc0fd6862f086079f864b26f": { - "address": "0xb661933d9f24ec34dc0fd6862f086079f864b26f", - "symbol": "STREET", - "decimals": 18, - "name": "Base Street", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xb661933d9f24ec34dc0fd6862f086079f864b26f.png", - "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0xb55fcd62ed44253c45735bde6703c44100935747": { - "address": "0xb55fcd62ed44253c45735bde6703c44100935747", - "symbol": "APL", - "decimals": 18, - "name": "APOLLO AI by Virtuals", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xb55fcd62ed44253c45735bde6703c44100935747.png", - "aggregators": ["CoinGecko", "Rubic", "Squid", "Rango"], - "occurrences": 4 - }, - "0x8d2757ea27aabf172da4cca4e5474c76016e3dc5": { - "address": "0x8d2757ea27aabf172da4cca4e5474c76016e3dc5", - "symbol": "CLBTC", - "decimals": 18, - "name": "clBTC", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x8d2757ea27aabf172da4cca4e5474c76016e3dc5.png", - "aggregators": ["CoinGecko", "LiFi", "Rubic", "Rango"], - "occurrences": 4 - }, - "0x0830820d1a9aa1554364752d6d8f55c836871b74": { - "address": "0x0830820d1a9aa1554364752d6d8f55c836871b74", - "symbol": "WABASWSTETH", - "decimals": 18, - "name": "Wrapped Aave Base wstETH", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x0830820d1a9aa1554364752d6d8f55c836871b74.png", - "aggregators": ["CoinGecko", "1inch", "Rubic", "Rango"], - "occurrences": 4 - }, - "0x388e543a5a491e7b42e3fbcd127dd6812ea02d0d": { - "address": "0x388e543a5a491e7b42e3fbcd127dd6812ea02d0d", - "symbol": "$PILL", - "decimals": 18, - "name": "Pill", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x388e543a5a491e7b42e3fbcd127dd6812ea02d0d.png", - "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0xbeef050a7485865a7a8d8ca0cc5f7536b7a3443e": { - "address": "0xbeef050a7485865a7a8d8ca0cc5f7536b7a3443e", - "symbol": "STEAKETH", - "decimals": 18, - "name": "Steakhouse ETH (Base) Morpho Vault", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xbeef050a7485865a7a8d8ca0cc5f7536b7a3443e.png", - "aggregators": ["CoinGecko", "LiFi", "Rubic", "Sonarwatch"], - "occurrences": 4 - }, - "0x67543cf0304c19ca62ac95ba82fd4f4b40788dc1": { - "address": "0x67543cf0304c19ca62ac95ba82fd4f4b40788dc1", - "symbol": "RIZ", - "decimals": 8, - "name": "Rivalz Network", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x67543cf0304c19ca62ac95ba82fd4f4b40788dc1.png", - "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0xd61bcf79b26787ae993f75b064d2e3b3cc738c5d": { - "address": "0xd61bcf79b26787ae993f75b064d2e3b3cc738c5d", - "symbol": "UETC", - "decimals": 18, - "name": "Wrapped Ethereum Classic (Universal)", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xd61bcf79b26787ae993f75b064d2e3b3cc738c5d.png", - "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0xe4fcf2d991505089bbb36275570757c1f9800cb0": { - "address": "0xe4fcf2d991505089bbb36275570757c1f9800cb0", - "symbol": "PURR", - "decimals": 18, - "name": "Purrcoin", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xe4fcf2d991505089bbb36275570757c1f9800cb0.png", - "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0xbcbc8cb4d1e8ed048a6276a5e94a3e952660bcbc": { - "address": "0xbcbc8cb4d1e8ed048a6276a5e94a3e952660bcbc", - "symbol": "YOBTC", - "decimals": 8, - "name": "YOBTC", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xbcbc8cb4d1e8ed048a6276a5e94a3e952660bcbc.png", - "aggregators": ["CoinGecko", "LiFi", "Rubic", "Rango"], - "occurrences": 4 - }, - "0x37f24b26bcefbfac7f261b97f8036da98f81a299": { - "address": "0x37f24b26bcefbfac7f261b97f8036da98f81a299", - "symbol": "BRISH", - "decimals": 18, - "name": "Brish", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x37f24b26bcefbfac7f261b97f8036da98f81a299.png", - "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0x23418de10d422ad71c9d5713a2b8991a9c586443": { - "address": "0x23418de10d422ad71c9d5713a2b8991a9c586443", - "symbol": "BGCI", - "decimals": 18, - "name": "Bloomberg Galaxy Crypto Index", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x23418de10d422ad71c9d5713a2b8991a9c586443.png", - "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0xe031b0cd88ca5d41d13db188e4bfc6c0cfa3e5a2": { - "address": "0xe031b0cd88ca5d41d13db188e4bfc6c0cfa3e5a2", - "symbol": "NKMIND", - "decimals": 18, - "name": "Satoshi’s Mind by Virtuals", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xe031b0cd88ca5d41d13db188e4bfc6c0cfa3e5a2.png", - "aggregators": ["CoinGecko", "Rubic", "Squid", "Rango"], - "occurrences": 4 - }, - "0xfd9fa4f785331ce88b5af8994a047ba087c705d8": { - "address": "0xfd9fa4f785331ce88b5af8994a047ba087c705d8", - "symbol": "$BLUE", - "decimals": 18, - "name": "blue on base", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xfd9fa4f785331ce88b5af8994a047ba087c705d8.png", - "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0xff05e1bd696900dc6a52ca35ca61bb1024eda8e2": { - "address": "0xff05e1bd696900dc6a52ca35ca61bb1024eda8e2", - "symbol": "WTMSTR", - "decimals": 18, - "name": "Wrapped MicroStrategy Incorporated ST0x", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xff05e1bd696900dc6a52ca35ca61bb1024eda8e2.png", - "aggregators": ["CoinGecko", "LiFi", "Rubic", "Rango"], - "occurrences": 4 - }, - "0x99ba92234e0f0f7c2a16cb087e7307ade19cab1c": { - "address": "0x99ba92234e0f0f7c2a16cb087e7307ade19cab1c", - "symbol": "WECO", - "decimals": 18, - "name": "WECO", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x99ba92234e0f0f7c2a16cb087e7307ade19cab1c.png", - "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0x7e8101a1c322d394b3961498c7d40d2dfa94c392": { - "address": "0x7e8101a1c322d394b3961498c7d40d2dfa94c392", - "symbol": "WBNVDA", - "decimals": 18, - "name": "Wrapped bNVDA", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x7e8101a1c322d394b3961498c7d40d2dfa94c392.png", - "aggregators": ["CoinGecko", "LiFi", "Rubic", "Sonarwatch"], - "occurrences": 4 - }, - "0x1f82284c1658ad71c576f7230e6c2dee7901c1fa": { - "address": "0x1f82284c1658ad71c576f7230e6c2dee7901c1fa", - "symbol": "WBTSLA", - "decimals": 18, - "name": "Wrapped bTSLA", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x1f82284c1658ad71c576f7230e6c2dee7901c1fa.png", - "aggregators": ["CoinGecko", "LiFi", "Rubic", "Sonarwatch"], - "occurrences": 4 - }, - "0x8e306e02ec1effc4fdad3f952fbeeebf3730ae19": { - "address": "0x8e306e02ec1effc4fdad3f952fbeeebf3730ae19", - "symbol": "AIX9", - "decimals": 18, - "name": "AthenaX9", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x8e306e02ec1effc4fdad3f952fbeeebf3730ae19.png", - "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0xa2d4aec94ba0896d95ccc5451c9525b9ec0314de": { - "address": "0xa2d4aec94ba0896d95ccc5451c9525b9ec0314de", - "symbol": "SS", - "decimals": 18, - "name": "Sniper Search by Virtuals", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xa2d4aec94ba0896d95ccc5451c9525b9ec0314de.png", - "aggregators": ["CoinGecko", "Rubic", "Squid", "Rango"], - "occurrences": 4 - }, - "0xc23e4352cdba6fc951398bf274619c4529eac867": { - "address": "0xc23e4352cdba6fc951398bf274619c4529eac867", - "symbol": "TRC", - "decimals": 18, - "name": "Terrace", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xc23e4352cdba6fc951398bf274619c4529eac867.png", - "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0x80f4d22aa2437fa0dd4634b505ac3668835d9b84": { - "address": "0x80f4d22aa2437fa0dd4634b505ac3668835d9b84", - "symbol": "TAOLOR", - "decimals": 18, - "name": "Michael Taolor ⚡️ (τ , τ)", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x80f4d22aa2437fa0dd4634b505ac3668835d9b84.png", - "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0x354d6890caa31a5e28b6059d46781f40880786a6": { - "address": "0x354d6890caa31a5e28b6059d46781f40880786a6", - "symbol": "GHFFB47YII2RTEEYY10OP", - "decimals": 18, - "name": "ghffb47yii2rteeyy10op", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x354d6890caa31a5e28b6059d46781f40880786a6.png", - "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0x31d664ebd97a50d5a2cd49b16f7714ab2516ed25": { - "address": "0x31d664ebd97a50d5a2cd49b16f7714ab2516ed25", - "symbol": "UEOS", - "decimals": 18, - "name": "Wrapped EOS (Universal)", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x31d664ebd97a50d5a2cd49b16f7714ab2516ed25.png", - "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0xf3527ef8de265eaa3716fb312c12847bfba66cef": { - "address": "0xf3527ef8de265eaa3716fb312c12847bfba66cef", - "symbol": "USDX", - "decimals": 18, - "name": "USDX", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xf3527ef8de265eaa3716fb312c12847bfba66cef.png", - "aggregators": ["CoinGecko", "LiFi", "Rubic", "Rango"], - "occurrences": 4 - }, - "0x6bb7a212910682dcfdbd5bcbb3e28fb4e8da10ee": { - "address": "0x6bb7a212910682dcfdbd5bcbb3e28fb4e8da10ee", - "symbol": "GHO", - "decimals": 18, - "name": "Gho Token", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x6bb7a212910682dcfdbd5bcbb3e28fb4e8da10ee.png", - "aggregators": ["CoinGecko", "LiFi", "Rubic", "Rango"], - "occurrences": 4 - }, - "0x2e6c05f1f7d1f4eb9a088bf12257f1647682b754": { - "address": "0x2e6c05f1f7d1f4eb9a088bf12257f1647682b754", - "symbol": "AXLREGEN", - "decimals": 6, - "name": "AXLREGEN", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x2e6c05f1f7d1f4eb9a088bf12257f1647682b754.png", - "aggregators": ["CoinGecko", "Rubic", "Squid", "Rango"], - "occurrences": 4 - }, - "0x84054a6b72dd5c58da8106e410e62658083a80e4": { - "address": "0x84054a6b72dd5c58da8106e410e62658083a80e4", - "symbol": "DTF", - "decimals": 18, - "name": "believe in something", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x84054a6b72dd5c58da8106e410e62658083a80e4.png", - "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0x55380fe7a1910dff29a47b622057ab4139da42c5": { - "address": "0x55380fe7a1910dff29a47b622057ab4139da42c5", - "symbol": "FXUSD", - "decimals": 18, - "name": "f(x) Protocol fxUSD", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x55380fe7a1910dff29a47b622057ab4139da42c5.png", - "aggregators": ["CoinGecko", "LiFi", "Rubic", "Rango"], - "occurrences": 4 - }, - "0x88fb150bdc53a65fe94dea0c9ba0a6daf8c6e196": { - "address": "0x88fb150bdc53a65fe94dea0c9ba0a6daf8c6e196", - "symbol": "LINK", - "decimals": 18, - "name": "ChainLink Token", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x88fb150bdc53a65fe94dea0c9ba0a6daf8c6e196.png", - "aggregators": ["CoinGecko", "LiFi", "Rubic", "Rango"], - "occurrences": 4 - }, - "0xe22c243c7559c667a1eb94b593369d192c5fbac0": { - "address": "0xe22c243c7559c667a1eb94b593369d192c5fbac0", - "symbol": "KING", - "decimals": 18, - "name": "KING", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xe22c243c7559c667a1eb94b593369d192c5fbac0.png", - "aggregators": ["CoinGecko", "LiFi", "Rubic", "Rango"], - "occurrences": 4 - }, - "0xa61beb4a3d02decb01039e378237032b351125b4": { - "address": "0xa61beb4a3d02decb01039e378237032b351125b4", - "symbol": "EURA", - "decimals": 18, - "name": "EURA", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xa61beb4a3d02decb01039e378237032b351125b4.png", - "aggregators": ["CoinGecko", "LiFi", "Rubic", "Rango"], - "occurrences": 4 - }, - "0x946f8b0ef009f3f5b1b35e6511a82a58b09d8d4e": { - "address": "0x946f8b0ef009f3f5b1b35e6511a82a58b09d8d4e", - "symbol": "KIT", - "decimals": 18, - "name": "KIT", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x946f8b0ef009f3f5b1b35e6511a82a58b09d8d4e.png", - "aggregators": ["CoinGecko", "Socket", "Rubic", "Rango"], - "occurrences": 4 - }, - "0x76e118fa6839ddad531411b8cc7a9dcdfd7d4fb0": { - "address": "0x76e118fa6839ddad531411b8cc7a9dcdfd7d4fb0", - "symbol": "BALN", - "decimals": 18, - "name": "Balanced", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x76e118fa6839ddad531411b8cc7a9dcdfd7d4fb0.png", - "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0xf757c9804cf2ee8d8ed64e0a8936293fe43a7252": { - "address": "0xf757c9804cf2ee8d8ed64e0a8936293fe43a7252", - "symbol": "REZ", - "decimals": 18, - "name": "REZ", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xf757c9804cf2ee8d8ed64e0a8936293fe43a7252.png", - "aggregators": ["CoinGecko", "LiFi", "Rubic", "Rango"], - "occurrences": 4 - }, - "0x57bd5c33c8002a634b389ab4de5e09ec1c31dce7": { - "address": "0x57bd5c33c8002a634b389ab4de5e09ec1c31dce7", - "symbol": "SILO", - "decimals": 18, - "name": "Silo Finance", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x57bd5c33c8002a634b389ab4de5e09ec1c31dce7.png", - "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0x2bb9282552228734cca01a1671605122258e276a": { - "address": "0x2bb9282552228734cca01a1671605122258e276a", - "symbol": "GME.D", - "decimals": 18, - "name": "Dinari GME", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x2bb9282552228734cca01a1671605122258e276a.png", - "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0xa17c0e96c8b5e39b6fd670f01d7f021f66b930cd": { - "address": "0xa17c0e96c8b5e39b6fd670f01d7f021f66b930cd", - "symbol": "RDDT.D", - "decimals": 18, - "name": "Dinari RDDT", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xa17c0e96c8b5e39b6fd670f01d7f021f66b930cd.png", - "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0xa34c5e0abe843e10461e2c9586ea03e55dbcc495": { - "address": "0xa34c5e0abe843e10461e2c9586ea03e55dbcc495", - "symbol": "BNVDA", - "decimals": 18, - "name": "Backed NVIDIA", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xa34c5e0abe843e10461e2c9586ea03e55dbcc495.png", - "aggregators": ["CoinGecko", "LiFi", "Rubic", "Sonarwatch"], - "occurrences": 4 - }, - "0xe4b20925d9e9a62f1e492e15a81dc0de62804dd4": { - "address": "0xe4b20925d9e9a62f1e492e15a81dc0de62804dd4", - "symbol": "BTCUSD", - "decimals": 18, - "name": "BTCUSD", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xe4b20925d9e9a62f1e492e15a81dc0de62804dd4.png", - "aggregators": ["CoinGecko", "LiFi", "Rubic", "Rango"], - "occurrences": 4 - }, - "0x00000000000007c8612ba63df8ddefd9e6077c97": { - "address": "0x00000000000007c8612ba63df8ddefd9e6077c97", - "symbol": "⌘", - "decimals": 18, - "name": "NANI", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x00000000000007c8612ba63df8ddefd9e6077c97.png", - "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0x4eed0d2deb4c588393c80869b122327581b0d98e": { - "address": "0x4eed0d2deb4c588393c80869b122327581b0d98e", - "symbol": "JKL", - "decimals": 6, - "name": "JKL", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x4eed0d2deb4c588393c80869b122327581b0d98e.png", - "aggregators": ["CoinGecko", "Rubic", "Squid", "Rango"], - "occurrences": 4 - }, - "0x2081ab0d9ec9e4303234ab26d86b20b3367946ee": { - "address": "0x2081ab0d9ec9e4303234ab26d86b20b3367946ee", - "symbol": "EIGEN", - "decimals": 18, - "name": "EIGEN", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x2081ab0d9ec9e4303234ab26d86b20b3367946ee.png", - "aggregators": ["CoinGecko", "LiFi", "Rubic", "Rango"], - "occurrences": 4 - }, - "0x6c240dda6b5c336df09a4d011139beaaa1ea2aa2": { - "address": "0x6c240dda6b5c336df09a4d011139beaaa1ea2aa2", - "symbol": "ETHFI", - "decimals": 18, - "name": "ETHFI", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x6c240dda6b5c336df09a4d011139beaaa1ea2aa2.png", - "aggregators": ["CoinGecko", "LiFi", "Rubic", "Rango"], - "occurrences": 4 - }, - "0x9e12735d77c72c5c3670636d428f2f3815d8a4cb": { - "address": "0x9e12735d77c72c5c3670636d428f2f3815d8a4cb", - "symbol": "FULA", - "decimals": 18, - "name": "Functionland", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x9e12735d77c72c5c3670636d428f2f3815d8a4cb.png", - "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0xe5020a6d073a794b6e7f05678707de47986fb0b6": { - "address": "0xe5020a6d073a794b6e7f05678707de47986fb0b6", - "symbol": "FRXUSD", - "decimals": 18, - "name": "FRXUSD", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xe5020a6d073a794b6e7f05678707de47986fb0b6.png", - "aggregators": ["CoinGecko", "LiFi", "Rubic", "Rango"], - "occurrences": 4 - }, - "0x7d214438d0f27afccc23b3d1e1a53906ace5cfea": { - "address": "0x7d214438d0f27afccc23b3d1e1a53906ace5cfea", - "symbol": "REUSD", - "decimals": 18, - "name": "REUSD", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x7d214438d0f27afccc23b3d1e1a53906ace5cfea.png", - "aggregators": ["CoinGecko", "LiFi", "Rubic", "Rango"], - "occurrences": 4 - }, - "0x473c1656373b3715805f647911e75aaa49c39813": { - "address": "0x473c1656373b3715805f647911e75aaa49c39813", - "symbol": "SHITZU", - "decimals": 18, - "name": "Shitzu", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x473c1656373b3715805f647911e75aaa49c39813.png", - "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0xc96de26018a54d51c097160568752c4e3bd6c364": { - "address": "0xc96de26018a54d51c097160568752c4e3bd6c364", - "symbol": "FBTC", - "decimals": 8, - "name": "FBTC", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xc96de26018a54d51c097160568752c4e3bd6c364.png", - "aggregators": ["CoinGecko", "LiFi", "Rubic", "Rango"], - "occurrences": 4 - }, - "0x909dbde1ebe906af95660033e478d59efe831fed": { - "address": "0x909dbde1ebe906af95660033e478d59efe831fed", - "symbol": "FRAX", - "decimals": 18, - "name": "Bridged FRAX", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x909dbde1ebe906af95660033e478d59efe831fed.png", - "aggregators": ["LiFi", "Socket", "Rubic", "Sonarwatch"], - "occurrences": 4 - }, - "0x5ae84075f0e34946821a8015dab5299a00992721": { - "address": "0x5ae84075f0e34946821a8015dab5299a00992721", - "symbol": "WCGUSD", - "decimals": 6, - "name": "Wrapped Cygnus USD", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x5ae84075f0e34946821a8015dab5299a00992721.png", - "aggregators": ["LiFi", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0xa26a4611b8313bbb25ccb1a9e227ecc536a2f8f7": { - "address": "0xa26a4611b8313bbb25ccb1a9e227ecc536a2f8f7", - "symbol": "BRIGHT", - "decimals": 18, - "name": "Bright Union", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xa26a4611b8313bbb25ccb1a9e227ecc536a2f8f7.png", - "aggregators": ["LiFi", "Socket", "Rubic", "Sonarwatch"], - "occurrences": 4 - }, - "0x9cfb13e6c11054ac9fcb92ba89644f30775436e4": { - "address": "0x9cfb13e6c11054ac9fcb92ba89644f30775436e4", - "symbol": "AXL-WSTETH", - "decimals": 18, - "name": "Axelar Wrapped wstETH", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x9cfb13e6c11054ac9fcb92ba89644f30775436e4.png", - "aggregators": ["LiFi", "Rubic", "Squid", "Rango"], - "occurrences": 4 - }, - "0x31ea904a7eca45122890deb8da3473a2081bc9d1": { - "address": "0x31ea904a7eca45122890deb8da3473a2081bc9d1", - "symbol": "SEED", - "decimals": 18, - "name": "Bonsai3", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x31ea904a7eca45122890deb8da3473a2081bc9d1.png", - "aggregators": ["Socket", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0xd67ec255100ef200a439d09ff865fbaa2ad9c730": { - "address": "0xd67ec255100ef200a439d09ff865fbaa2ad9c730", - "symbol": "SCOR", - "decimals": 18, - "name": "Scor", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xd67ec255100ef200a439d09ff865fbaa2ad9c730.png", - "aggregators": ["CoinGecko", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x5b2193fdc451c1f847be09ca9d13a4bf60f8c86b": { - "address": "0x5b2193fdc451c1f847be09ca9d13a4bf60f8c86b", - "symbol": "UP", - "decimals": 18, - "name": "Superform", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x5b2193fdc451c1f847be09ca9d13a4bf60f8c86b.png", - "aggregators": ["CoinGecko", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x3bbcb624cb9a1f73163a886f460f47603e5e4425": { - "address": "0x3bbcb624cb9a1f73163a886f460f47603e5e4425", - "symbol": "HANDL", - "decimals": 18, - "name": "HandlPay", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x3bbcb624cb9a1f73163a886f460f47603e5e4425.png", - "aggregators": ["CoinGecko", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x18b66b63625a07d3671eb0a119a5e4df4708936e": { - "address": "0x18b66b63625a07d3671eb0a119a5e4df4708936e", - "symbol": "PLUS", - "decimals": 18, - "name": "PLUS", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x18b66b63625a07d3671eb0a119a5e4df4708936e.png", - "aggregators": ["CoinGecko", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x30457a1ab7cd796d6e55e4e5ba12e09f2283e856": { - "address": "0x30457a1ab7cd796d6e55e4e5ba12e09f2283e856", - "symbol": "DUB", - "decimals": 18, - "name": "The DUB Token", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x30457a1ab7cd796d6e55e4e5ba12e09f2283e856.png", - "aggregators": ["CoinGecko", "Rubic", "Sonarwatch"], - "occurrences": 3 - }, - "0x26c69e4924bd0d7d52d680b33616042ee13f621c": { - "address": "0x26c69e4924bd0d7d52d680b33616042ee13f621c", - "symbol": "SALUKI", - "decimals": 18, - "name": "SALUKI", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x26c69e4924bd0d7d52d680b33616042ee13f621c.png", - "aggregators": ["CoinGecko", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x4398c398e5ac747e6d51bf1db1dac346ca90fee0": { - "address": "0x4398c398e5ac747e6d51bf1db1dac346ca90fee0", - "symbol": "WODS", - "decimals": 18, - "name": "WODS - Wolf of Dumb Street", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x4398c398e5ac747e6d51bf1db1dac346ca90fee0.png", - "aggregators": ["CoinGecko", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x1791b55e734df69b4906a4178a83dbe63c4f8421": { - "address": "0x1791b55e734df69b4906a4178a83dbe63c4f8421", - "symbol": "BCHB", - "decimals": 18, - "name": "BITCOIN CASH ON BASE", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x1791b55e734df69b4906a4178a83dbe63c4f8421.png", - "aggregators": ["CoinGecko", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x3a1a33cf4553db61f0db2c1e1721cd480b02789f": { - "address": "0x3a1a33cf4553db61f0db2c1e1721cd480b02789f", - "symbol": "TABOSHI", - "decimals": 18, - "name": "TABOSHI", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x3a1a33cf4553db61f0db2c1e1721cd480b02789f.png", - "aggregators": ["CoinGecko", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x46d8f8ba030c1d09ae17d2b5107dfef4b331fe0d": { - "address": "0x46d8f8ba030c1d09ae17d2b5107dfef4b331fe0d", - "symbol": "BOMI", - "decimals": 18, - "name": "Book of Miggles", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x46d8f8ba030c1d09ae17d2b5107dfef4b331fe0d.png", - "aggregators": ["CoinGecko", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x8f2bd24a6406142cbae4b39e14be8efc8157d951": { - "address": "0x8f2bd24a6406142cbae4b39e14be8efc8157d951", - "symbol": "UENS", - "decimals": 18, - "name": "Wrapped Ethereum Name Service (Universal)", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x8f2bd24a6406142cbae4b39e14be8efc8157d951.png", - "aggregators": ["CoinGecko", "Rubic", "Sonarwatch"], - "occurrences": 3 - }, - "0x1d3be1cc80ca89ddbabe5b5c254af63200e708f7": { - "address": "0x1d3be1cc80ca89ddbabe5b5c254af63200e708f7", - "symbol": "MONSTRO", - "decimals": 18, - "name": "Monstro DeFi", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x1d3be1cc80ca89ddbabe5b5c254af63200e708f7.png", - "aggregators": ["CoinGecko", "Rubic", "Rango"], - "occurrences": 3 - }, - "0xd461a534af11ef58e9f9add73129a1f45485a8dc": { - "address": "0xd461a534af11ef58e9f9add73129a1f45485a8dc", - "symbol": "KEVIN", - "decimals": 18, - "name": "Kevin", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xd461a534af11ef58e9f9add73129a1f45485a8dc.png", - "aggregators": ["CoinGecko", "Rubic", "Rango"], - "occurrences": 3 - }, - "0xaf6b42a3fe548c0ce73269235817fd47d8c149cd": { - "address": "0xaf6b42a3fe548c0ce73269235817fd47d8c149cd", - "symbol": "LUMPY", - "decimals": 18, - "name": "LUMPY", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xaf6b42a3fe548c0ce73269235817fd47d8c149cd.png", - "aggregators": ["CoinGecko", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x0340ff1765f0099b3bd1c4664ce03d8fd794fad1": { - "address": "0x0340ff1765f0099b3bd1c4664ce03d8fd794fad1", - "symbol": "UCRV", - "decimals": 18, - "name": "Wrapped Curve (Universal)", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x0340ff1765f0099b3bd1c4664ce03d8fd794fad1.png", - "aggregators": ["CoinGecko", "Rubic", "Sonarwatch"], - "occurrences": 3 - }, - "0x1a4f71b0ff3c22540887bcf83b50054a213c673d": { - "address": "0x1a4f71b0ff3c22540887bcf83b50054a213c673d", - "symbol": "WBMSTR", - "decimals": 18, - "name": "Wrapped Backed MicroStrategy Inc", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x1a4f71b0ff3c22540887bcf83b50054a213c673d.png", - "aggregators": ["CoinGecko", "LiFi", "Rubic"], - "occurrences": 3 - }, - "0xbeefa28d5e56d41d35df760ab53b94d9ffd7051f": { - "address": "0xbeefa28d5e56d41d35df760ab53b94d9ffd7051f", - "symbol": "STEAKEURA", - "decimals": 18, - "name": "Steakhouse EURA", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xbeefa28d5e56d41d35df760ab53b94d9ffd7051f.png", - "aggregators": ["CoinGecko", "LiFi", "Rubic"], - "occurrences": 3 - }, - "0x88a78c5035bdc8c9a8bb5c029e6cfcdd14b822fe": { - "address": "0x88a78c5035bdc8c9a8bb5c029e6cfcdd14b822fe", - "symbol": "$FROGGI", - "decimals": 9, - "name": "Froggi", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x88a78c5035bdc8c9a8bb5c029e6cfcdd14b822fe.png", - "aggregators": ["CoinGecko", "Rubic", "Rango"], - "occurrences": 3 - }, - "0xcb474f3dee195a951f3584b213d16d2d4d4ee503": { - "address": "0xcb474f3dee195a951f3584b213d16d2d4d4ee503", - "symbol": "UFLOKI", - "decimals": 18, - "name": "Wrapped Floki (Universal)", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xcb474f3dee195a951f3584b213d16d2d4d4ee503.png", - "aggregators": ["CoinGecko", "Rubic", "Sonarwatch"], - "occurrences": 3 - }, - "0x3b1228c3ede7e0898d57054cd9b8f812d24315c1": { - "address": "0x3b1228c3ede7e0898d57054cd9b8f812d24315c1", - "symbol": "BRITT", - "decimals": 9, - "name": "Britt", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x3b1228c3ede7e0898d57054cd9b8f812d24315c1.png", - "aggregators": ["CoinGecko", "Rubic", "Rango"], - "occurrences": 3 - }, - "0xb4c6458c2e67da23caa4ffadb9b4d3659da98164": { - "address": "0xb4c6458c2e67da23caa4ffadb9b4d3659da98164", - "symbol": "XTTA", - "decimals": 18, - "name": "XTTA", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xb4c6458c2e67da23caa4ffadb9b4d3659da98164.png", - "aggregators": ["CoinGecko", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x5ca35ebc4f25b042d2cae75914c7e882e631fa9a": { - "address": "0x5ca35ebc4f25b042d2cae75914c7e882e631fa9a", - "symbol": "NEIRO", - "decimals": 9, - "name": "NEIRO", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x5ca35ebc4f25b042d2cae75914c7e882e631fa9a.png", - "aggregators": ["CoinGecko", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x0150958b2b183a8e63264b8a6d82b4f747df3f62": { - "address": "0x0150958b2b183a8e63264b8a6d82b4f747df3f62", - "symbol": "MCD.D", - "decimals": 18, - "name": "Dinari MCD", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x0150958b2b183a8e63264b8a6d82b4f747df3f62.png", - "aggregators": ["CoinGecko", "Rubic", "Sonarwatch"], - "occurrences": 3 - }, - "0x6743d7d8de84021b4fec049a1f1278be9cd95b6e": { - "address": "0x6743d7d8de84021b4fec049a1f1278be9cd95b6e", - "symbol": "V.D", - "decimals": 18, - "name": "Dinari V", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x6743d7d8de84021b4fec049a1f1278be9cd95b6e.png", - "aggregators": ["CoinGecko", "Rubic", "Sonarwatch"], - "occurrences": 3 - }, - "0x70e97cac0d4eb845872cd41ae848e47d070ef45c": { - "address": "0x70e97cac0d4eb845872cd41ae848e47d070ef45c", - "symbol": "COST.D", - "decimals": 18, - "name": "Dinari COST", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x70e97cac0d4eb845872cd41ae848e47d070ef45c.png", - "aggregators": ["CoinGecko", "Rubic", "Sonarwatch"], - "occurrences": 3 - }, - "0xb0169ad580aa888467bbac4a4b650812dee74939": { - "address": "0xb0169ad580aa888467bbac4a4b650812dee74939", - "symbol": "SPTE.D", - "decimals": 18, - "name": "Dinari SPTE", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xb0169ad580aa888467bbac4a4b650812dee74939.png", - "aggregators": ["CoinGecko", "Rubic", "Sonarwatch"], - "occurrences": 3 - }, - "0x5019fe1867d8ccfd76d8d5abd85db5efce548fba": { - "address": "0x5019fe1867d8ccfd76d8d5abd85db5efce548fba", - "symbol": "INT", - "decimals": 18, - "name": "InteNet Protocol", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x5019fe1867d8ccfd76d8d5abd85db5efce548fba.png", - "aggregators": ["CoinGecko", "Rubic", "Rango"], - "occurrences": 3 - }, - "0xa15705e6fc8b3e08e7253f3758de1a754baa0761": { - "address": "0xa15705e6fc8b3e08e7253f3758de1a754baa0761", - "symbol": "QCAD", - "decimals": 6, - "name": "Stablecorp QCAD", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xa15705e6fc8b3e08e7253f3758de1a754baa0761.png", - "aggregators": ["CoinGecko", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x4b959bb4c00d25e52a87cb1865401dd97cb5631d": { - "address": "0x4b959bb4c00d25e52a87cb1865401dd97cb5631d", - "symbol": "ARKB.D", - "decimals": 18, - "name": "Dinari ARKB", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x4b959bb4c00d25e52a87cb1865401dd97cb5631d.png", - "aggregators": ["CoinGecko", "Rubic", "Sonarwatch"], - "occurrences": 3 - }, - "0x5aa9bd9364cc3644bb7f35f092283dae7fd17e11": { - "address": "0x5aa9bd9364cc3644bb7f35f092283dae7fd17e11", - "symbol": "ETHE.D", - "decimals": 18, - "name": "Dinari ETHE", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x5aa9bd9364cc3644bb7f35f092283dae7fd17e11.png", - "aggregators": ["CoinGecko", "Rubic", "Sonarwatch"], - "occurrences": 3 - }, - "0x116b3ad9ba8f4e6fb83a5bcad8ba2e97114f9568": { - "address": "0x116b3ad9ba8f4e6fb83a5bcad8ba2e97114f9568", - "symbol": "ITA.D", - "decimals": 18, - "name": "Dinari ITA", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x116b3ad9ba8f4e6fb83a5bcad8ba2e97114f9568.png", - "aggregators": ["CoinGecko", "Rubic", "Sonarwatch"], - "occurrences": 3 - }, - "0x24fdd77381d3dd36a9bd7029bcdac350a0342de3": { - "address": "0x24fdd77381d3dd36a9bd7029bcdac350a0342de3", - "symbol": "IBIT.D", - "decimals": 18, - "name": "Dinari IBIT", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x24fdd77381d3dd36a9bd7029bcdac350a0342de3.png", - "aggregators": ["CoinGecko", "Rubic", "Sonarwatch"], - "occurrences": 3 - }, - "0xab754c3998ba88e789329f250d90ea35fc87aea6": { - "address": "0xab754c3998ba88e789329f250d90ea35fc87aea6", - "symbol": "JNJ.D", - "decimals": 18, - "name": "Dinari JNJ", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xab754c3998ba88e789329f250d90ea35fc87aea6.png", - "aggregators": ["CoinGecko", "Rubic", "Sonarwatch"], - "occurrences": 3 - }, - "0x32224be543fb8f338a9a6c337d84478e256ee219": { - "address": "0x32224be543fb8f338a9a6c337d84478e256ee219", - "symbol": "ARKX.D", - "decimals": 18, - "name": "Dinari ARKX", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x32224be543fb8f338a9a6c337d84478e256ee219.png", - "aggregators": ["CoinGecko", "Rubic", "Sonarwatch"], - "occurrences": 3 - }, - "0x8a2a4899316f302a05006ee6d2998afa26f96253": { - "address": "0x8a2a4899316f302a05006ee6d2998afa26f96253", - "symbol": "BA.D", - "decimals": 18, - "name": "Dinari BA", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x8a2a4899316f302a05006ee6d2998afa26f96253.png", - "aggregators": ["CoinGecko", "Rubic", "Sonarwatch"], - "occurrences": 3 - }, - "0x24914cb6bd01e6a0cf2a9c0478e33c25926e6a0c": { - "address": "0x24914cb6bd01e6a0cf2a9c0478e33c25926e6a0c", - "symbol": "BOTTO", - "decimals": 18, - "name": "BOTTO", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x24914cb6bd01e6a0cf2a9c0478e33c25926e6a0c.png", - "aggregators": ["CoinGecko", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x832b55b0fa6397ca9e63b8c15dadef3f6e44614c": { - "address": "0x832b55b0fa6397ca9e63b8c15dadef3f6e44614c", - "symbol": "DUAL", - "decimals": 18, - "name": "Dual", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x832b55b0fa6397ca9e63b8c15dadef3f6e44614c.png", - "aggregators": ["CoinGecko", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x94025780a1ab58868d9b2dbbb775f44b32e8e6e5": { - "address": "0x94025780a1ab58868d9b2dbbb775f44b32e8e6e5", - "symbol": "BETS", - "decimals": 18, - "name": "BetSwirl v2", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x94025780a1ab58868d9b2dbbb775f44b32e8e6e5.png", - "aggregators": ["CoinGecko", "Rubic", "Rango"], - "occurrences": 3 - }, - "0xd5eab2d9e01442bfca720f6f15451555dd003f40": { - "address": "0xd5eab2d9e01442bfca720f6f15451555dd003f40", - "symbol": "SQ.D", - "decimals": 18, - "name": "Dinari SQ", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xd5eab2d9e01442bfca720f6f15451555dd003f40.png", - "aggregators": ["CoinGecko", "Rubic", "Sonarwatch"], - "occurrences": 3 - }, - "0x45afb331111126f5bf8d37c7816c540c1ec6f544": { - "address": "0x45afb331111126f5bf8d37c7816c540c1ec6f544", - "symbol": "BLK.D", - "decimals": 18, - "name": "Dinari BLK", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x45afb331111126f5bf8d37c7816c540c1ec6f544.png", - "aggregators": ["CoinGecko", "Rubic", "Sonarwatch"], - "occurrences": 3 - }, - "0xb51c78989fb8d1bf2c957dd0522235c92d0443a5": { - "address": "0xb51c78989fb8d1bf2c957dd0522235c92d0443a5", - "symbol": "RBLX.D", - "decimals": 18, - "name": "Dinari RBLX", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xb51c78989fb8d1bf2c957dd0522235c92d0443a5.png", - "aggregators": ["CoinGecko", "Rubic", "Sonarwatch"], - "occurrences": 3 - }, - "0x0f13fc8a93ab8edc9fde0a1e19aac693161599a5": { - "address": "0x0f13fc8a93ab8edc9fde0a1e19aac693161599a5", - "symbol": "SCAI", - "decimals": 18, - "name": "SecureChain AI", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x0f13fc8a93ab8edc9fde0a1e19aac693161599a5.png", - "aggregators": ["CoinGecko", "Rubic", "Sonarwatch"], - "occurrences": 3 - }, - "0x48a0ea70c2c7d025cc95672b9ebe6ad026129b44": { - "address": "0x48a0ea70c2c7d025cc95672b9ebe6ad026129b44", - "symbol": "YUM.D", - "decimals": 18, - "name": "Dinari YUM", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x48a0ea70c2c7d025cc95672b9ebe6ad026129b44.png", - "aggregators": ["CoinGecko", "Rubic", "Sonarwatch"], - "occurrences": 3 - }, - "0x9b42e4afcc2046070fa00ff8213d59eef6e4264e": { - "address": "0x9b42e4afcc2046070fa00ff8213d59eef6e4264e", - "symbol": "SBUX.D", - "decimals": 18, - "name": "Dinari SBUX", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x9b42e4afcc2046070fa00ff8213d59eef6e4264e.png", - "aggregators": ["CoinGecko", "Rubic", "Sonarwatch"], - "occurrences": 3 - }, - "0x9fd7bc3de3c1dd6041efbcbac43250da7b718a43": { - "address": "0x9fd7bc3de3c1dd6041efbcbac43250da7b718a43", - "symbol": "SPSK.D", - "decimals": 18, - "name": "Dinari SPSK", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x9fd7bc3de3c1dd6041efbcbac43250da7b718a43.png", - "aggregators": ["CoinGecko", "Rubic", "Sonarwatch"], - "occurrences": 3 - }, - "0xa70cc6f267e02a6e135fa2589432e6734a613eb3": { - "address": "0xa70cc6f267e02a6e135fa2589432e6734a613eb3", - "symbol": "BOXX.D", - "decimals": 18, - "name": "Dinari BOXX", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xa70cc6f267e02a6e135fa2589432e6734a613eb3.png", - "aggregators": ["CoinGecko", "Rubic", "Sonarwatch"], - "occurrences": 3 - }, - "0xb7750e425e86e9ab57bc570a1c89737a56cf4322": { - "address": "0xb7750e425e86e9ab57bc570a1c89737a56cf4322", - "symbol": "CBE", - "decimals": 18, - "name": "Coinbidex", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xb7750e425e86e9ab57bc570a1c89737a56cf4322.png", - "aggregators": ["CoinGecko", "Rubic", "Sonarwatch"], - "occurrences": 3 - }, - "0xa26a3903cbba4e6c2c757d7601fbc569efc479ef": { - "address": "0xa26a3903cbba4e6c2c757d7601fbc569efc479ef", - "symbol": "RKLB.D", - "decimals": 18, - "name": "Dinari RKLB", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xa26a3903cbba4e6c2c757d7601fbc569efc479ef.png", - "aggregators": ["CoinGecko", "Rubic", "Sonarwatch"], - "occurrences": 3 - }, - "0x3d66e6fe9a3cf698db5af3d70830b299c9235151": { - "address": "0x3d66e6fe9a3cf698db5af3d70830b299c9235151", - "symbol": "USAD", - "decimals": 18, - "name": "Lydia Coin", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x3d66e6fe9a3cf698db5af3d70830b299c9235151.png", - "aggregators": ["CoinGecko", "Rubic", "Rango"], - "occurrences": 3 - }, - "0xd45a01a729a0d4ccbe1523e58eb4ff8bdc3607d7": { - "address": "0xd45a01a729a0d4ccbe1523e58eb4ff8bdc3607d7", - "symbol": "EZBC.D", - "decimals": 18, - "name": "Dinari EZBC", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xd45a01a729a0d4ccbe1523e58eb4ff8bdc3607d7.png", - "aggregators": ["CoinGecko", "Rubic", "Sonarwatch"], - "occurrences": 3 - }, - "0xba921e840fb60adb0f92b2a977427fe8e5dd208c": { - "address": "0xba921e840fb60adb0f92b2a977427fe8e5dd208c", - "symbol": "ERO.D", - "decimals": 18, - "name": "Dinari ERO", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xba921e840fb60adb0f92b2a977427fe8e5dd208c.png", - "aggregators": ["CoinGecko", "Rubic", "Sonarwatch"], - "occurrences": 3 - }, - "0x2b98ba07619c3ee14854983a83fe1f0aecff19c8": { - "address": "0x2b98ba07619c3ee14854983a83fe1f0aecff19c8", - "symbol": "SIVR.D", - "decimals": 18, - "name": "Dinari SIVR", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x2b98ba07619c3ee14854983a83fe1f0aecff19c8.png", - "aggregators": ["CoinGecko", "Rubic", "Sonarwatch"], - "occurrences": 3 - }, - "0xd021ad9bc28dcbcb04801638937351f6b9045f33": { - "address": "0xd021ad9bc28dcbcb04801638937351f6b9045f33", - "symbol": "DAL.D", - "decimals": 18, - "name": "Dinari DAL", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xd021ad9bc28dcbcb04801638937351f6b9045f33.png", - "aggregators": ["CoinGecko", "Rubic", "Sonarwatch"], - "occurrences": 3 - }, - "0x25aa7b1ecf5d3fcd1b3b9f2445a4fa5597ffb189": { - "address": "0x25aa7b1ecf5d3fcd1b3b9f2445a4fa5597ffb189", - "symbol": "CVX.D", - "decimals": 18, - "name": "Dinari CVX", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x25aa7b1ecf5d3fcd1b3b9f2445a4fa5597ffb189.png", - "aggregators": ["CoinGecko", "Rubic", "Sonarwatch"], - "occurrences": 3 - }, - "0x0709f6caceefd70b867ed3ea278b911238eb7f6f": { - "address": "0x0709f6caceefd70b867ed3ea278b911238eb7f6f", - "symbol": "EEM.D", - "decimals": 18, - "name": "Dinari EEM", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x0709f6caceefd70b867ed3ea278b911238eb7f6f.png", - "aggregators": ["CoinGecko", "Rubic", "Sonarwatch"], - "occurrences": 3 - }, - "0xad13bce42394add02e6c215a40e582309b7975c7": { - "address": "0xad13bce42394add02e6c215a40e582309b7975c7", - "symbol": "KYVE", - "decimals": 6, - "name": "KYVE", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xad13bce42394add02e6c215a40e582309b7975c7.png", - "aggregators": ["CoinGecko", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x7cee47e7b7cd04cf984e8dd86c42595b5771a9b2": { - "address": "0x7cee47e7b7cd04cf984e8dd86c42595b5771a9b2", - "symbol": "TESOURO", - "decimals": 6, - "name": "Etherfuse TESOURO", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x7cee47e7b7cd04cf984e8dd86c42595b5771a9b2.png", - "aggregators": ["CoinGecko", "Rubic", "Rango"], - "occurrences": 3 - }, - "0xac28c9178acc8ba4a11a29e013a3a2627086e422": { - "address": "0xac28c9178acc8ba4a11a29e013a3a2627086e422", - "symbol": "BMSTR", - "decimals": 18, - "name": "Backed MicroStrategy Inc", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xac28c9178acc8ba4a11a29e013a3a2627086e422.png", - "aggregators": ["CoinGecko", "LiFi", "Rubic"], - "occurrences": 3 - }, - "0xebee37aaf2905b7bda7e3b928043862e982e8f32": { - "address": "0xebee37aaf2905b7bda7e3b928043862e982e8f32", - "symbol": "BGOOGL", - "decimals": 18, - "name": "Backed Alphabet Class A", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xebee37aaf2905b7bda7e3b928043862e982e8f32.png", - "aggregators": ["CoinGecko", "Rubic", "Sonarwatch"], - "occurrences": 3 - }, - "0x000804047791c8e0fbd04f1a9f4567114130b9a7": { - "address": "0x000804047791c8e0fbd04f1a9f4567114130b9a7", - "symbol": "KO.D", - "decimals": 18, - "name": "Dinari KO", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x000804047791c8e0fbd04f1a9f4567114130b9a7.png", - "aggregators": ["CoinGecko", "Rubic", "Sonarwatch"], - "occurrences": 3 - }, - "0xd5e8dc8ba0c459a97a79d8ee2b4fec186e4af078": { - "address": "0xd5e8dc8ba0c459a97a79d8ee2b4fec186e4af078", - "symbol": "CCL.D", - "decimals": 18, - "name": "Dinari CCL", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xd5e8dc8ba0c459a97a79d8ee2b4fec186e4af078.png", - "aggregators": ["CoinGecko", "Rubic", "Sonarwatch"], - "occurrences": 3 - }, - "0xcff62955b5fcd043ebc177d02b6723017a886076": { - "address": "0xcff62955b5fcd043ebc177d02b6723017a886076", - "symbol": "MELI.D", - "decimals": 18, - "name": "Dinari MELI", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xcff62955b5fcd043ebc177d02b6723017a886076.png", - "aggregators": ["CoinGecko", "Rubic", "Sonarwatch"], - "occurrences": 3 - }, - "0x1bc7cd640fba3d157f152665b7bf5cbe4a50d26a": { - "address": "0x1bc7cd640fba3d157f152665b7bf5cbe4a50d26a", - "symbol": "SPWO.D", - "decimals": 18, - "name": "Dinari SPWO", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x1bc7cd640fba3d157f152665b7bf5cbe4a50d26a.png", - "aggregators": ["CoinGecko", "Rubic", "Sonarwatch"], - "occurrences": 3 - }, - "0x0002bcdaf53f4889bf2f43a3252d7c03fe1b80bc": { - "address": "0x0002bcdaf53f4889bf2f43a3252d7c03fe1b80bc", - "symbol": "GORPLE", - "decimals": 18, - "name": "Gorples Coin", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x0002bcdaf53f4889bf2f43a3252d7c03fe1b80bc.png", - "aggregators": ["CoinGecko", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x3ac60413b5ad95fc02409d6e8c5b316e19c962e1": { - "address": "0x3ac60413b5ad95fc02409d6e8c5b316e19c962e1", - "symbol": "UFO.D", - "decimals": 18, - "name": "Dinari UFO", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x3ac60413b5ad95fc02409d6e8c5b316e19c962e1.png", - "aggregators": ["CoinGecko", "Rubic", "Sonarwatch"], - "occurrences": 3 - }, - "0xfdaf8d69fa9931f00b92e14bc4233cb438b24980": { - "address": "0xfdaf8d69fa9931f00b92e14bc4233cb438b24980", - "symbol": "AMC.D", - "decimals": 18, - "name": "Dinari AMC", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xfdaf8d69fa9931f00b92e14bc4233cb438b24980.png", - "aggregators": ["CoinGecko", "Rubic", "Sonarwatch"], - "occurrences": 3 - }, - "0x0ed151c9749d39c3ca8e537125fb4053e0c9b55f": { - "address": "0x0ed151c9749d39c3ca8e537125fb4053e0c9b55f", - "symbol": "DAWAE", - "decimals": 9, - "name": "Dawae", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x0ed151c9749d39c3ca8e537125fb4053e0c9b55f.png", - "aggregators": ["CoinGecko", "Rubic", "Rango"], - "occurrences": 3 - }, - "0xc6bbaf4d804327d84931310e49c863e63a2bd868": { - "address": "0xc6bbaf4d804327d84931310e49c863e63a2bd868", - "symbol": "WEAT.D", - "decimals": 18, - "name": "Dinari WEAT", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xc6bbaf4d804327d84931310e49c863e63a2bd868.png", - "aggregators": ["CoinGecko", "Rubic", "Sonarwatch"], - "occurrences": 3 - }, - "0x0f6c508ef7257c4b99bd1bc8aef750da64840813": { - "address": "0x0f6c508ef7257c4b99bd1bc8aef750da64840813", - "symbol": "AVGO.D", - "decimals": 18, - "name": "Dinari AVGO", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x0f6c508ef7257c4b99bd1bc8aef750da64840813.png", - "aggregators": ["CoinGecko", "Rubic", "Sonarwatch"], - "occurrences": 3 - }, - "0xb3358ab71f784910de0ca766ebdab527323731b9": { - "address": "0xb3358ab71f784910de0ca766ebdab527323731b9", - "symbol": "NLY.D", - "decimals": 18, - "name": "Dinari NLY", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xb3358ab71f784910de0ca766ebdab527323731b9.png", - "aggregators": ["CoinGecko", "Rubic", "Sonarwatch"], - "occurrences": 3 - }, - "0x5ea14145f62dbf26fc7b0eb8fa8c71e1af468207": { - "address": "0x5ea14145f62dbf26fc7b0eb8fa8c71e1af468207", - "symbol": "BITB.D", - "decimals": 18, - "name": "Dinari BITB", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x5ea14145f62dbf26fc7b0eb8fa8c71e1af468207.png", - "aggregators": ["CoinGecko", "Rubic", "Sonarwatch"], - "occurrences": 3 - }, - "0xd0ca17153cbe8dd5f7b96f9a2c9e608faad7e904": { - "address": "0xd0ca17153cbe8dd5f7b96f9a2c9e608faad7e904", - "symbol": "GBTC.D", - "decimals": 18, - "name": "Dinari GBTC", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xd0ca17153cbe8dd5f7b96f9a2c9e608faad7e904.png", - "aggregators": ["CoinGecko", "Rubic", "Sonarwatch"], - "occurrences": 3 - }, - "0xa483eca53adfef52f614ba1f76d5f49b0caeb7df": { - "address": "0xa483eca53adfef52f614ba1f76d5f49b0caeb7df", - "symbol": "MARA.D", - "decimals": 18, - "name": "Dinari MARA", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xa483eca53adfef52f614ba1f76d5f49b0caeb7df.png", - "aggregators": ["CoinGecko", "Rubic", "Sonarwatch"], - "occurrences": 3 - }, - "0xb8ebc0fc2453a1be3ab48db2de6237ce56e00c48": { - "address": "0xb8ebc0fc2453a1be3ab48db2de6237ce56e00c48", - "symbol": "WOOD.D", - "decimals": 18, - "name": "Dinari WOOD", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xb8ebc0fc2453a1be3ab48db2de6237ce56e00c48.png", - "aggregators": ["CoinGecko", "Rubic", "Sonarwatch"], - "occurrences": 3 - }, - "0x0d794e3778fc6f5f0351c77a5c77bd21d26887f9": { - "address": "0x0d794e3778fc6f5f0351c77a5c77bd21d26887f9", - "symbol": "SLX.D", - "decimals": 18, - "name": "Dinari SLX", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x0d794e3778fc6f5f0351c77a5c77bd21d26887f9.png", - "aggregators": ["CoinGecko", "Rubic", "Sonarwatch"], - "occurrences": 3 - }, - "0xfdcc3dd6671eab0709a4c0f3f53de9a333d80798": { - "address": "0xfdcc3dd6671eab0709a4c0f3f53de9a333d80798", - "symbol": "SBC", - "decimals": 18, - "name": "Stable Coin", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xfdcc3dd6671eab0709a4c0f3f53de9a333d80798.png", - "aggregators": ["CoinGecko", "Socket", "Rubic"], - "occurrences": 3 - }, - "0xa9c380050b07f8c2bb38dc57bcdbe267cc794fe8": { - "address": "0xa9c380050b07f8c2bb38dc57bcdbe267cc794fe8", - "symbol": "AZN.D", - "decimals": 18, - "name": "Dinari AZN", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xa9c380050b07f8c2bb38dc57bcdbe267cc794fe8.png", - "aggregators": ["CoinGecko", "Rubic", "Sonarwatch"], - "occurrences": 3 - }, - "0x525dcb13b0caf29f30f93305a5cbd10314815408": { - "address": "0x525dcb13b0caf29f30f93305a5cbd10314815408", - "symbol": "TQQQ.D", - "decimals": 18, - "name": "Dinari TQQQ", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x525dcb13b0caf29f30f93305a5cbd10314815408.png", - "aggregators": ["CoinGecko", "Rubic", "Sonarwatch"], - "occurrences": 3 - }, - "0xc3c1bb150e48ca764fa9428339b63b21376fcafa": { - "address": "0xc3c1bb150e48ca764fa9428339b63b21376fcafa", - "symbol": "BRRR.D", - "decimals": 18, - "name": "Dinari BRRR", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xc3c1bb150e48ca764fa9428339b63b21376fcafa.png", - "aggregators": ["CoinGecko", "Rubic", "Sonarwatch"], - "occurrences": 3 - }, - "0x69bd04ab9290d2919f228b87f9dccf728e2675cd": { - "address": "0x69bd04ab9290d2919f228b87f9dccf728e2675cd", - "symbol": "BTCO.D", - "decimals": 18, - "name": "Dinari BTCO", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x69bd04ab9290d2919f228b87f9dccf728e2675cd.png", - "aggregators": ["CoinGecko", "Rubic", "Sonarwatch"], - "occurrences": 3 - }, - "0x408e16d4e07812a963189dc15fa61806eb8a4e9d": { - "address": "0x408e16d4e07812a963189dc15fa61806eb8a4e9d", - "symbol": "BAC.D", - "decimals": 18, - "name": "Dinari BAC", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x408e16d4e07812a963189dc15fa61806eb8a4e9d.png", - "aggregators": ["CoinGecko", "Rubic", "Sonarwatch"], - "occurrences": 3 - }, - "0xac21cd6fe43240d90741d25858d0ff0940b11cc7": { - "address": "0xac21cd6fe43240d90741d25858d0ff0940b11cc7", - "symbol": "DEFI.D", - "decimals": 18, - "name": "Dinari DEFI", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xac21cd6fe43240d90741d25858d0ff0940b11cc7.png", - "aggregators": ["CoinGecko", "Rubic", "Sonarwatch"], - "occurrences": 3 - }, - "0x842d4a6d10e41eaae03b4df87e575be53b296fc6": { - "address": "0x842d4a6d10e41eaae03b4df87e575be53b296fc6", - "symbol": "HODL.D", - "decimals": 18, - "name": "Dinari HODL", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x842d4a6d10e41eaae03b4df87e575be53b296fc6.png", - "aggregators": ["CoinGecko", "Rubic", "Sonarwatch"], - "occurrences": 3 - }, - "0xb9b034467a7f50b567b74f60b82e39bfd78aca5a": { - "address": "0xb9b034467a7f50b567b74f60b82e39bfd78aca5a", - "symbol": "SOXL.D", - "decimals": 18, - "name": "Dinari SOXL", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xb9b034467a7f50b567b74f60b82e39bfd78aca5a.png", - "aggregators": ["CoinGecko", "Rubic", "Sonarwatch"], - "occurrences": 3 - }, - "0x69fe3ee4f41e85a5431bb95bbe897f967845e5aa": { - "address": "0x69fe3ee4f41e85a5431bb95bbe897f967845e5aa", - "symbol": "SPUS.D", - "decimals": 18, - "name": "Dinari SPUS", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x69fe3ee4f41e85a5431bb95bbe897f967845e5aa.png", - "aggregators": ["CoinGecko", "Rubic", "Sonarwatch"], - "occurrences": 3 - }, - "0xb9c229a7aac1c67c7468baf37ef056a91d7df118": { - "address": "0xb9c229a7aac1c67c7468baf37ef056a91d7df118", - "symbol": "F.D", - "decimals": 18, - "name": "Dinari F", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xb9c229a7aac1c67c7468baf37ef056a91d7df118.png", - "aggregators": ["CoinGecko", "Rubic", "Sonarwatch"], - "occurrences": 3 - }, - "0x9cfe02eb040c6f5718126128dbba0c1d364d9c07": { - "address": "0x9cfe02eb040c6f5718126128dbba0c1d364d9c07", - "symbol": "SDM", - "decimals": 18, - "name": "Shieldeum", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x9cfe02eb040c6f5718126128dbba0c1d364d9c07.png", - "aggregators": ["CoinGecko", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x7212088a11b4d8f6fc90fbb3dfe793b45dd72323": { - "address": "0x7212088a11b4d8f6fc90fbb3dfe793b45dd72323", - "symbol": "BGME", - "decimals": 18, - "name": "Backed GameStop Corp", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x7212088a11b4d8f6fc90fbb3dfe793b45dd72323.png", - "aggregators": ["CoinGecko", "Rubic", "Sonarwatch"], - "occurrences": 3 - }, - "0xa8de1f55aa0e381cb456e1dcc9ff781ea0079068": { - "address": "0xa8de1f55aa0e381cb456e1dcc9ff781ea0079068", - "symbol": "UKTBL", - "decimals": 5, - "name": "Spiko UK T-Bills Money Market Fund", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xa8de1f55aa0e381cb456e1dcc9ff781ea0079068.png", - "aggregators": ["CoinGecko", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x4f33acf823e6eeb697180d553ce0c710124c8d59": { - "address": "0x4f33acf823e6eeb697180d553ce0c710124c8d59", - "symbol": "EURSPKCC", - "decimals": 5, - "name": "Spiko Digital Assets Cash & Carry Fund - Euro Share Class", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x4f33acf823e6eeb697180d553ce0c710124c8d59.png", - "aggregators": ["CoinGecko", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x5e985e4bca4664e985f3faf8140eba25b10e28c2": { - "address": "0x5e985e4bca4664e985f3faf8140eba25b10e28c2", - "symbol": "PEPPER", - "decimals": 18, - "name": "PEPPER", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x5e985e4bca4664e985f3faf8140eba25b10e28c2.png", - "aggregators": ["CoinGecko", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x02300475d1edd5b2e88efdebd3ffb549110d8aa6": { - "address": "0x02300475d1edd5b2e88efdebd3ffb549110d8aa6", - "symbol": "CITY", - "decimals": 18, - "name": "Manchester City Fan Token", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x02300475d1edd5b2e88efdebd3ffb549110d8aa6.png", - "aggregators": ["CoinGecko", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x68504b889978f8f2a7ff0e29cdd8830856e4dcba": { - "address": "0x68504b889978f8f2a7ff0e29cdd8830856e4dcba", - "symbol": "JUV", - "decimals": 18, - "name": "Juventus Fan Token", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x68504b889978f8f2a7ff0e29cdd8830856e4dcba.png", - "aggregators": ["CoinGecko", "Rubic", "Rango"], - "occurrences": 3 - }, - "0xdd15623d107c639af0c5127affa26d3f20327ec8": { - "address": "0xdd15623d107c639af0c5127affa26d3f20327ec8", - "symbol": "PSG", - "decimals": 18, - "name": "Paris Saint-Germain Fan Token", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xdd15623d107c639af0c5127affa26d3f20327ec8.png", - "aggregators": ["CoinGecko", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x70c8392de9b39a1e48d12a70af6ff4be25d6d0a2": { - "address": "0x70c8392de9b39a1e48d12a70af6ff4be25d6d0a2", - "symbol": "CHZ", - "decimals": 18, - "name": "Chiliz", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x70c8392de9b39a1e48d12a70af6ff4be25d6d0a2.png", - "aggregators": ["CoinGecko", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x580eda966a8129c3c01d149871b47fefcc599d28": { - "address": "0x580eda966a8129c3c01d149871b47fefcc599d28", - "symbol": "AFC", - "decimals": 18, - "name": "Arsenal Fan Token", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x580eda966a8129c3c01d149871b47fefcc599d28.png", - "aggregators": ["CoinGecko", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x110a0fc65a0f78840f4b4a04a42e8c285e424553": { - "address": "0x110a0fc65a0f78840f4b4a04a42e8c285e424553", - "symbol": "BAR", - "decimals": 18, - "name": "FC Barcelona Fan Token", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x110a0fc65a0f78840f4b4a04a42e8c285e424553.png", - "aggregators": ["CoinGecko", "Rubic", "Rango"], - "occurrences": 3 - }, - "0xd194fdcbc9b98d829f7a35fde25feef8f8e41ef1": { - "address": "0xd194fdcbc9b98d829f7a35fde25feef8f8e41ef1", - "symbol": "USHY.D", - "decimals": 18, - "name": "Dinari USHY", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xd194fdcbc9b98d829f7a35fde25feef8f8e41ef1.png", - "aggregators": ["CoinGecko", "Rubic", "Sonarwatch"], - "occurrences": 3 - }, - "0x687838649383f180024435b96fe014b351854a2d": { - "address": "0x687838649383f180024435b96fe014b351854a2d", - "symbol": "JPM.D", - "decimals": 18, - "name": "Dinari JPM", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x687838649383f180024435b96fe014b351854a2d.png", - "aggregators": ["CoinGecko", "Rubic", "Sonarwatch"], - "occurrences": 3 - }, - "0x78bb8ff6baa486c31ce0ef1a157798f7a606565c": { - "address": "0x78bb8ff6baa486c31ce0ef1a157798f7a606565c", - "symbol": "XOM.D", - "decimals": 18, - "name": "Dinari XOM", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x78bb8ff6baa486c31ce0ef1a157798f7a606565c.png", - "aggregators": ["CoinGecko", "Rubic", "Sonarwatch"], - "occurrences": 3 - }, - "0xacacc8241a57a23106af94f2fffda000384cb4d2": { - "address": "0xacacc8241a57a23106af94f2fffda000384cb4d2", - "symbol": "WALRF.D", - "decimals": 18, - "name": "Dinari WALRF", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xacacc8241a57a23106af94f2fffda000384cb4d2.png", - "aggregators": ["CoinGecko", "Rubic", "Sonarwatch"], - "occurrences": 3 - }, - "0x341c9b4e5566a2ae22a337c84e3c006064731925": { - "address": "0x341c9b4e5566a2ae22a337c84e3c006064731925", - "symbol": "CSCO.D", - "decimals": 18, - "name": "Dinari CSCO", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x341c9b4e5566a2ae22a337c84e3c006064731925.png", - "aggregators": ["CoinGecko", "Rubic", "Sonarwatch"], - "occurrences": 3 - }, - "0xf61558b2bc330c55ae85679be03a76dc0a8c9ed2": { - "address": "0xf61558b2bc330c55ae85679be03a76dc0a8c9ed2", - "symbol": "TJX.D", - "decimals": 18, - "name": "Dinari TJX", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xf61558b2bc330c55ae85679be03a76dc0a8c9ed2.png", - "aggregators": ["CoinGecko", "Rubic", "Sonarwatch"], - "occurrences": 3 - }, - "0xf3ec90ea681561ce77120976bcfe985f83d182d8": { - "address": "0xf3ec90ea681561ce77120976bcfe985f83d182d8", - "symbol": "GLD.D", - "decimals": 18, - "name": "Dinari GLD", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xf3ec90ea681561ce77120976bcfe985f83d182d8.png", - "aggregators": ["CoinGecko", "Rubic", "Sonarwatch"], - "occurrences": 3 - }, - "0xfa2a03b6f4a65fb1af64f7d935fdbf78693df9af": { - "address": "0xfa2a03b6f4a65fb1af64f7d935fdbf78693df9af", - "symbol": "WABASCBBTC", - "decimals": 8, - "name": "Wrapped Aave Base cbBTC", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xfa2a03b6f4a65fb1af64f7d935fdbf78693df9af.png", - "aggregators": ["1inch", "LiFi", "Rubic"], - "occurrences": 3 - }, - "0xf587b7116879a529353cc71ee959cd69fd5cae48": { - "address": "0xf587b7116879a529353cc71ee959cd69fd5cae48", - "symbol": "CGETH.HASHKEY", - "decimals": 18, - "name": "CGETH.HASHKEY", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xf587b7116879a529353cc71ee959cd69fd5cae48.png", - "aggregators": ["LiFi", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x6c47669ce25f01e64cef604e43d8fa8c42938fb1": { - "address": "0x6c47669ce25f01e64cef604e43d8fa8c42938fb1", - "symbol": "SHIA", - "decimals": 18, - "name": "SHIA", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x6c47669ce25f01e64cef604e43d8fa8c42938fb1.png", - "aggregators": ["LiFi", "Socket", "Rango"], - "occurrences": 3 - }, - "0x7788a3538c5fc7f9c7c8a74eac4c898fc8d87d92": { - "address": "0x7788a3538c5fc7f9c7c8a74eac4c898fc8d87d92", - "symbol": "SUSDX", - "decimals": 18, - "name": "SUSDX", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x7788a3538c5fc7f9c7c8a74eac4c898fc8d87d92.png", - "aggregators": ["LiFi", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x1f55a02a049033e3419a8e2975cf3f572f4e6e9a": { - "address": "0x1f55a02a049033e3419a8e2975cf3f572f4e6e9a", - "symbol": "SFRXETH", - "decimals": 18, - "name": "Staked Frax Ether", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x1f55a02a049033e3419a8e2975cf3f572f4e6e9a.png", - "aggregators": ["LiFi", "Socket", "Rango"], - "occurrences": 3 - }, - "0xe85411c030fb32a9d8b14bbbc6cb19417391f711": { - "address": "0xe85411c030fb32a9d8b14bbbc6cb19417391f711", - "symbol": "SUBTC", - "decimals": 18, - "name": "Sumerian BTC", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xe85411c030fb32a9d8b14bbbc6cb19417391f711.png", - "aggregators": ["LiFi", "Rubic", "Rango"], - "occurrences": 3 - }, - "0xc73e76aa9f14c1837cdb49bd028e8ff5a0a71dad": { - "address": "0xc73e76aa9f14c1837cdb49bd028e8ff5a0a71dad", - "symbol": "HYETH", - "decimals": 17, - "name": "High Yield ETH Index", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xc73e76aa9f14c1837cdb49bd028e8ff5a0a71dad.png", - "aggregators": ["LiFi", "Rubic", "Rango"], - "occurrences": 3 - }, - "0xb8753941196692e322846cfee9c14c97ac81928a": { - "address": "0xb8753941196692e322846cfee9c14c97ac81928a", - "symbol": "BDTF", - "decimals": 18, - "name": "Base Memeindexer DTF", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xb8753941196692e322846cfee9c14c97ac81928a.png", - "aggregators": ["Rubic", "Rango", "Sonarwatch"], - "occurrences": 3 - }, - "0xbf388570ebd5b88bfc7cd21ec469813c15f453a3": { - "address": "0xbf388570ebd5b88bfc7cd21ec469813c15f453a3", - "symbol": "PEPPER", - "decimals": 18, - "name": "Pepper Meme", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xbf388570ebd5b88bfc7cd21ec469813c15f453a3.png", - "aggregators": ["Rubic", "Rango", "Sonarwatch"], - "occurrences": 3 - }, - "0x9e949461f9ec22c6032ce26ea509824fd2f6d98f": { - "address": "0x9e949461f9ec22c6032ce26ea509824fd2f6d98f", - "symbol": "KABOSU", - "decimals": 18, - "name": "Kabosu", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x9e949461f9ec22c6032ce26ea509824fd2f6d98f.png", - "aggregators": ["Rubic", "Rango", "Sonarwatch"], - "occurrences": 3 - }, - "0x8544fe9d190fd7ec52860abbf45088e81ee24a8c": { - "address": "0x8544fe9d190fd7ec52860abbf45088e81ee24a8c", - "symbol": "TOSHI", - "decimals": 18, - "name": "Toshi", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x8544fe9d190fd7ec52860abbf45088e81ee24a8c.png", - "aggregators": ["Rubic", "Rango", "SushiSwap"], - "occurrences": 3 - }, - "0x10c1b6f768e13c624a4a23337f1a5ba5c9be0e4b": { - "address": "0x10c1b6f768e13c624a4a23337f1a5ba5c9be0e4b", - "symbol": "WARPIE", - "decimals": 18, - "name": "Warpie", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x10c1b6f768e13c624a4a23337f1a5ba5c9be0e4b.png", - "aggregators": ["Rubic", "Rango", "SushiSwap"], - "occurrences": 3 - }, - "0x5c7e299cf531eb66f2a1df637d37abb78e6200c7": { - "address": "0x5c7e299cf531eb66f2a1df637d37abb78e6200c7", - "symbol": "AXLDAI", - "decimals": 18, - "name": "Axelar Wrapped DAI", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x5c7e299cf531eb66f2a1df637d37abb78e6200c7.png", - "aggregators": ["Rubic", "Squid", "SushiSwap"], - "occurrences": 3 - }, - "0xc702b80a1bebac118cab22ce6f2978ef59563b3f": { - "address": "0xc702b80a1bebac118cab22ce6f2978ef59563b3f", - "symbol": "RAFL", - "decimals": 8, - "name": "RAFL", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xc702b80a1bebac118cab22ce6f2978ef59563b3f.png", - "aggregators": ["Rubic", "Rango", "SushiSwap"], - "occurrences": 3 - }, - "0x88558259ceda5d8e681fedb55c50070fbd3da8f9": { - "address": "0x88558259ceda5d8e681fedb55c50070fbd3da8f9", - "symbol": "MST", - "decimals": 18, - "name": "Meridian MST", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x88558259ceda5d8e681fedb55c50070fbd3da8f9.png", - "aggregators": ["Rubic", "Rango", "Sonarwatch"], - "occurrences": 3 - }, - "0x306fd3e7b169aa4ee19412323e1a5995b8c1a1f4": { - "address": "0x306fd3e7b169aa4ee19412323e1a5995b8c1a1f4", - "symbol": "FTW", - "decimals": 18, - "name": "Black Agnus", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x306fd3e7b169aa4ee19412323e1a5995b8c1a1f4.png", - "aggregators": ["Rubic", "Rango", "Sonarwatch"], - "occurrences": 3 - }, - "0x01edbffa4f61404458e22ff45deffef1c62228b5": { - "address": "0x01edbffa4f61404458e22ff45deffef1c62228b5", - "symbol": "COMSWAPWLIBRA", - "decimals": 18, - "name": "Comswap Wrapped LIBRA", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x01edbffa4f61404458e22ff45deffef1c62228b5.png", - "aggregators": ["Rubic", "Rango", "Sonarwatch"], - "occurrences": 3 - }, - "0x74299a718b2c44483a27325d7725f0b2646de3b1": { - "address": "0x74299a718b2c44483a27325d7725f0b2646de3b1", - "symbol": "DAG", - "decimals": 8, - "name": "Constellation", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x74299a718b2c44483a27325d7725f0b2646de3b1.png", - "aggregators": ["Rubic", "Rango", "Sonarwatch"], - "occurrences": 3 - }, - "0x0a27e060c0406f8ab7b64e3bee036a37e5a62853": { - "address": "0x0a27e060c0406f8ab7b64e3bee036a37e5a62853", - "symbol": "USDZ", - "decimals": 18, - "name": "ZAI Stablecoin", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x0a27e060c0406f8ab7b64e3bee036a37e5a62853.png", - "aggregators": ["Rubic", "Rango", "Sonarwatch"], - "occurrences": 3 - }, - "0x4e99472385a2522aa292b008da294a78f420a367": { - "address": "0x4e99472385a2522aa292b008da294a78f420a367", - "symbol": "TCAP", - "decimals": 18, - "name": "TCAP", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x4e99472385a2522aa292b008da294a78f420a367.png", - "aggregators": ["Rubic", "Rango", "Sonarwatch"], - "occurrences": 3 - }, - "0xdf5913632251585a55970134fad8a774628e9388": { - "address": "0xdf5913632251585a55970134fad8a774628e9388", - "symbol": "UFIL", - "decimals": 18, - "name": "Wrapped Filecoin (Universal)", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xdf5913632251585a55970134fad8a774628e9388.png", - "aggregators": ["Rubic", "Rango", "Sonarwatch"], - "occurrences": 3 - }, - "0xacbf16f82753f3d52a2c87e4eeda220c9a7a3762": { - "address": "0xacbf16f82753f3d52a2c87e4eeda220c9a7a3762", - "symbol": "UFET", - "decimals": 18, - "name": "Wrapped Artificial Superintelligence Alliance (Universal)", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xacbf16f82753f3d52a2c87e4eeda220c9a7a3762.png", - "aggregators": ["Rubic", "Rango", "Sonarwatch"], - "occurrences": 3 - }, - "0x47686106181b3cefe4eaf94c4c10b48ac750370b": { - "address": "0x47686106181b3cefe4eaf94c4c10b48ac750370b", - "symbol": "VTF", - "decimals": 18, - "name": "Virtuals Index", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x47686106181b3cefe4eaf94c4c10b48ac750370b.png", - "aggregators": ["Rubic", "Rango", "Sonarwatch"], - "occurrences": 3 - }, - "0xbb2a93afcf5d3af8ae28dd50d6c18556ea532c5a": { - "address": "0xbb2a93afcf5d3af8ae28dd50d6c18556ea532c5a", - "symbol": "SAGE", - "decimals": 18, - "name": "Sage Market", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xbb2a93afcf5d3af8ae28dd50d6c18556ea532c5a.png", - "aggregators": ["Rubic", "Rango", "Sonarwatch"], - "occurrences": 3 - }, - "0xfe9885baff18074846aaa2d5541581adf068731d": { - "address": "0xfe9885baff18074846aaa2d5541581adf068731d", - "symbol": "DOR", - "decimals": 8, - "name": "Dor", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xfe9885baff18074846aaa2d5541581adf068731d.png", - "aggregators": ["Rubic", "Rango", "Sonarwatch"], - "occurrences": 3 - }, - "0x4e65fe4dba92790696d040ac24aa414708f5c0ab": { - "address": "0x4e65fe4dba92790696d040ac24aa414708f5c0ab", - "symbol": "AUSDC", - "decimals": 6, - "name": "Aave v3 USDC", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x4e65fe4dba92790696d040ac24aa414708f5c0ab.png", - "aggregators": ["Metamask", "LiFi"], - "occurrences": 2 - }, - "0x794fddbe0609cd704d7920eb3f950a57d4661193": { - "address": "0x794fddbe0609cd704d7920eb3f950a57d4661193", - "symbol": "ART", - "decimals": 18, - "name": "Artizen Token", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x794fddbe0609cd704d7920eb3f950a57d4661193.png", - "aggregators": ["Metamask"], - "occurrences": 1 - }, - "0x989cfdc3508500d0c91f22896a0d2ee1ef675870": { - "address": "0x989cfdc3508500d0c91f22896a0d2ee1ef675870", - "symbol": "TRX", - "decimals": 6, - "name": "Tron", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x989cfdc3508500d0c91f22896a0d2ee1ef675870.png", - "aggregators": ["Metamask"], - "occurrences": 1 - } - }, - "timestamp": 1779126362487 - }, - "0x38": { - "data": { - "0xf8a0bf9cf54bb92f17374d9e9a321e6a111a51bd": { - "address": "0xf8a0bf9cf54bb92f17374d9e9a321e6a111a51bd", - "symbol": "LINK", - "decimals": 18, - "name": "BNB pegged ChainLink", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xf8a0bf9cf54bb92f17374d9e9a321e6a111a51bd.png", - "aggregators": [ - "PancakeTop100", - "1inch", - "LiFi", - "TrustWallet", - "Socket", - "Rubic", - "Squid", - "Rango", - "Sonarwatch", - "SushiSwap" - ], - "occurrences": 10 - }, - "0x0e09fabb73bd3ade0a17ecc321fd13a19e81ce82": { - "address": "0x0e09fabb73bd3ade0a17ecc321fd13a19e81ce82", - "symbol": "CAKE", - "decimals": 18, - "name": "PancakeSwap Token", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x0e09fabb73bd3ade0a17ecc321fd13a19e81ce82.png", - "aggregators": [ - "PancakeExtended", - "1inch", - "LiFi", - "TrustWallet", - "Socket", - "Rubic", - "Squid", - "Rango", - "Sonarwatch", - "SushiSwap", - "BinanceDex" - ], - "occurrences": 11 - }, - "0x4b0f1812e5df2a09796481ff14017e6005508003": { - "address": "0x4b0f1812e5df2a09796481ff14017e6005508003", - "symbol": "TWT", - "decimals": 18, - "name": "Trust Wallet", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x4b0f1812e5df2a09796481ff14017e6005508003.png", - "aggregators": [ - "PancakeTop100", - "1inch", - "LiFi", - "TrustWallet", - "Socket", - "Rubic", - "Squid", - "Rango", - "Sonarwatch", - "SushiSwap" - ], - "occurrences": 10 - }, - "0xa2b726b1145a4773f68593cf171187d8ebe4d495": { - "address": "0xa2b726b1145a4773f68593cf171187d8ebe4d495", - "symbol": "INJ", - "decimals": 18, - "name": "Injective", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xa2b726b1145a4773f68593cf171187d8ebe4d495.png", - "aggregators": [ - "PancakeTop100", - "1inch", - "LiFi", - "TrustWallet", - "Socket", - "Rubic", - "Squid", - "Rango", - "SushiSwap" - ], - "occurrences": 9 - }, - "0xe9e7cea3dedca5984780bafc599bd69add087d56": { - "address": "0xe9e7cea3dedca5984780bafc599bd69add087d56", - "symbol": "BUSD", - "decimals": 18, - "name": "BNB pegged BUSD", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xe9e7cea3dedca5984780bafc599bd69add087d56.png", - "aggregators": [ - "PancakeExtended", - "1inch", - "LiFi", - "TrustWallet", - "Socket", - "Rubic", - "Squid", - "Rango", - "Sonarwatch", - "SushiSwap", - "BinanceDex" - ], - "occurrences": 11 - }, - "0x47bead2563dcbf3bf2c9407fea4dc236faba485a": { - "address": "0x47bead2563dcbf3bf2c9407fea4dc236faba485a", - "symbol": "SXP", - "decimals": 18, - "name": "Swipe", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x47bead2563dcbf3bf2c9407fea4dc236faba485a.png", - "aggregators": [ - "PancakeTop100", - "1inch", - "LiFi", - "TrustWallet", - "Socket", - "Rubic", - "Squid", - "Rango", - "Sonarwatch", - "SushiSwap" - ], - "occurrences": 10 - }, - "0xbf5140a22578168fd562dccf235e5d43a02ce9b1": { - "address": "0xbf5140a22578168fd562dccf235e5d43a02ce9b1", - "symbol": "UNI", - "decimals": 18, - "name": "BNB pegged Uniswap", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xbf5140a22578168fd562dccf235e5d43a02ce9b1.png", - "aggregators": [ - "PancakeTop100", - "1inch", - "LiFi", - "TrustWallet", - "Socket", - "Rubic", - "Squid", - "Rango", - "Sonarwatch", - "SushiSwap" - ], - "occurrences": 10 - }, - "0x7130d2a12b9bcbfae4f2634d864a1ee1ce3ead9c": { - "address": "0x7130d2a12b9bcbfae4f2634d864a1ee1ce3ead9c", - "symbol": "BTCB", - "decimals": 18, - "name": "BNB pegged BTCB Token", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x7130d2a12b9bcbfae4f2634d864a1ee1ce3ead9c.png", - "aggregators": [ - "PancakeExtended", - "1inch", - "LiFi", - "TrustWallet", - "Socket", - "Rubic", - "Squid", - "Rango", - "Sonarwatch", - "SushiSwap", - "BinanceDex" - ], - "occurrences": 11 - }, - "0x3ee2200efb3400fabb9aacf31297cbdd1d435d47": { - "address": "0x3ee2200efb3400fabb9aacf31297cbdd1d435d47", - "symbol": "ADA", - "decimals": 18, - "name": "BNB pegged Cardano Token", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x3ee2200efb3400fabb9aacf31297cbdd1d435d47.png", - "aggregators": [ - "PancakeTop100", - "1inch", - "LiFi", - "TrustWallet", - "Socket", - "Rubic", - "Squid", - "Rango", - "Sonarwatch", - "SushiSwap", - "BinanceDex" - ], - "occurrences": 11 - }, - "0x1af3f329e8be154074d8769d1ffa4ee058b1dbc3": { - "address": "0x1af3f329e8be154074d8769d1ffa4ee058b1dbc3", - "symbol": "DAI", - "decimals": 18, - "name": "BNB pegged Dai Token", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x1af3f329e8be154074d8769d1ffa4ee058b1dbc3.png", - "aggregators": [ - "PancakeExtended", - "1inch", - "LiFi", - "TrustWallet", - "Socket", - "Rubic", - "Rango", - "Sonarwatch", - "SushiSwap", - "BinanceDex" - ], - "occurrences": 10 - }, - "0x8ac76a51cc950d9822d68b83fe1ad97b32cd580d": { - "address": "0x8ac76a51cc950d9822d68b83fe1ad97b32cd580d", - "symbol": "USDC", - "decimals": 18, - "name": "Binance-Peg USD Coin", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x8ac76a51cc950d9822d68b83fe1ad97b32cd580d.png", - "aggregators": [ - "PancakeExtended", - "1inch", - "LiFi", - "Socket", - "Rubic", - "Squid", - "Rango", - "Sonarwatch", - "SushiSwap" - ], - "occurrences": 9 - }, - "0x7083609fce4d1d8dc0c979aab8c869ea2c873402": { - "address": "0x7083609fce4d1d8dc0c979aab8c869ea2c873402", - "symbol": "DOT", - "decimals": 18, - "name": "BNB pegged Polkadot Token", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x7083609fce4d1d8dc0c979aab8c869ea2c873402.png", - "aggregators": [ - "PancakeExtended", - "1inch", - "LiFi", - "TrustWallet", - "Socket", - "Rubic", - "Squid", - "Rango", - "SushiSwap", - "BinanceDex" - ], - "occurrences": 10 - }, - "0x715d400f88c167884bbcc41c5fea407ed4d2f8a0": { - "address": "0x715d400f88c167884bbcc41c5fea407ed4d2f8a0", - "symbol": "AXS", - "decimals": 18, - "name": "Axie Infinity", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x715d400f88c167884bbcc41c5fea407ed4d2f8a0.png", - "aggregators": [ - "PancakeTop100", - "1inch", - "LiFi", - "Socket", - "Rubic", - "Squid", - "Rango", - "Sonarwatch" - ], - "occurrences": 8 - }, - "0xe02df9e3e622debdd69fb838bb799e3f168902c5": { - "address": "0xe02df9e3e622debdd69fb838bb799e3f168902c5", - "symbol": "BAKE", - "decimals": 18, - "name": "BakeryToken", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xe02df9e3e622debdd69fb838bb799e3f168902c5.png", - "aggregators": [ - "PancakeExtended", - "1inch", - "LiFi", - "Socket", - "Rubic", - "Rango", - "Sonarwatch", - "SushiSwap", - "BinanceDex" - ], - "occurrences": 9 - }, - "0xba2ae424d960c26247dd6c32edc70b295c744c43": { - "address": "0xba2ae424d960c26247dd6c32edc70b295c744c43", - "symbol": "DOGE", - "decimals": 8, - "name": "Dogecoin", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xba2ae424d960c26247dd6c32edc70b295c744c43.png", - "aggregators": [ - "PancakeTop100", - "1inch", - "LiFi", - "Socket", - "Rubic", - "Squid", - "Rango", - "Sonarwatch", - "BinanceDex" - ], - "occurrences": 9 - }, - "0x477bc8d23c634c154061869478bce96be6045d12": { - "address": "0x477bc8d23c634c154061869478bce96be6045d12", - "symbol": "SFUND", - "decimals": 18, - "name": "Seedify.fund", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x477bc8d23c634c154061869478bce96be6045d12.png", - "aggregators": [ - "PancakeTop100", - "1inch", - "LiFi", - "Rubic", - "Squid", - "Rango", - "Sonarwatch" - ], - "occurrences": 7 - }, - "0x55d398326f99059ff775485246999027b3197955": { - "address": "0x55d398326f99059ff775485246999027b3197955", - "symbol": "USDT", - "decimals": 18, - "name": "Tether USD", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x55d398326f99059ff775485246999027b3197955.png", - "aggregators": [ - "PancakeExtended", - "1inch", - "LiFi", - "TrustWallet", - "Socket", - "Rubic", - "Squid", - "Rango", - "Sonarwatch", - "SushiSwap" - ], - "occurrences": 10 - }, - "0xbb4cdb9cbd36b01bd1cbaebf2de08d9173bc095c": { - "address": "0xbb4cdb9cbd36b01bd1cbaebf2de08d9173bc095c", - "symbol": "WBNB", - "decimals": 18, - "name": "Wrapped BNB", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xbb4cdb9cbd36b01bd1cbaebf2de08d9173bc095c.png", - "aggregators": [ - "PancakeExtended", - "1inch", - "LiFi", - "TrustWallet", - "Socket", - "Rubic", - "Squid", - "Rango", - "Sonarwatch", - "SushiSwap" - ], - "occurrences": 10 - }, - "0xcf6bb5389c92bdda8a3747ddb454cb7a64626c63": { - "address": "0xcf6bb5389c92bdda8a3747ddb454cb7a64626c63", - "symbol": "XVS", - "decimals": 18, - "name": "Venus", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xcf6bb5389c92bdda8a3747ddb454cb7a64626c63.png", - "aggregators": [ - "PancakeExtended", - "1inch", - "LiFi", - "TrustWallet", - "Socket", - "Rubic", - "Squid", - "Rango", - "Sonarwatch", - "SushiSwap" - ], - "occurrences": 10 - }, - "0x0eb3a705fc54725037cc9e008bdede697f62f335": { - "address": "0x0eb3a705fc54725037cc9e008bdede697f62f335", - "symbol": "ATOM", - "decimals": 18, - "name": "BNB pegged Cosmos Token", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x0eb3a705fc54725037cc9e008bdede697f62f335.png", - "aggregators": [ - "PancakeTop100", - "1inch", - "LiFi", - "TrustWallet", - "Socket", - "Rubic", - "Squid", - "Rango", - "Sonarwatch", - "SushiSwap", - "BinanceDex" - ], - "occurrences": 11 - }, - "0xf307910a4c7bbc79691fd374889b36d8531b08e3": { - "address": "0xf307910a4c7bbc79691fd374889b36d8531b08e3", - "symbol": "ANKR", - "decimals": 18, - "name": "ANKR", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xf307910a4c7bbc79691fd374889b36d8531b08e3.png", - "aggregators": [ - "PancakeExtended", - "1inch", - "LiFi", - "Socket", - "Rubic", - "Squid", - "Rango", - "Sonarwatch", - "SushiSwap", - "BinanceDex" - ], - "occurrences": 10 - }, - "0x947950bcc74888a40ffa2593c5798f11fc9124c4": { - "address": "0x947950bcc74888a40ffa2593c5798f11fc9124c4", - "symbol": "SUSHI.BINANCE", - "decimals": 18, - "name": "Binance-Peg SushiToken", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x947950bcc74888a40ffa2593c5798f11fc9124c4.png", - "aggregators": [ - "PancakeTop100", - "1inch", - "LiFi", - "Socket", - "Rubic", - "Squid", - "Rango", - "Sonarwatch", - "SushiSwap" - ], - "occurrences": 9 - }, - "0x1d2f0da169ceb9fc7b3144628db156f3f6c60dbe": { - "address": "0x1d2f0da169ceb9fc7b3144628db156f3f6c60dbe", - "symbol": "XRP", - "decimals": 18, - "name": "BNB pegged XRP Token", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x1d2f0da169ceb9fc7b3144628db156f3f6c60dbe.png", - "aggregators": [ - "PancakeTop100", - "1inch", - "LiFi", - "TrustWallet", - "Socket", - "Rubic", - "Squid", - "Sonarwatch", - "SushiSwap" - ], - "occurrences": 9 - }, - "0xd41fdb03ba84762dd66a0af1a6c8540ff1ba5dfb": { - "address": "0xd41fdb03ba84762dd66a0af1a6c8540ff1ba5dfb", - "symbol": "SFP", - "decimals": 18, - "name": "SafePal Token", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xd41fdb03ba84762dd66a0af1a6c8540ff1ba5dfb.png", - "aggregators": [ - "PancakeTop100", - "1inch", - "LiFi", - "TrustWallet", - "Socket", - "Rubic", - "Squid", - "Rango", - "Sonarwatch" - ], - "occurrences": 9 - }, - "0x0d8ce2a99bb6e3b7db580ed848240e4a0f9ae153": { - "address": "0x0d8ce2a99bb6e3b7db580ed848240e4a0f9ae153", - "symbol": "FIL", - "decimals": 18, - "name": "BNB pegged Filecoin", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x0d8ce2a99bb6e3b7db580ed848240e4a0f9ae153.png", - "aggregators": [ - "PancakeExtended", - "1inch", - "LiFi", - "TrustWallet", - "Socket", - "Rubic", - "Squid", - "Sonarwatch", - "SushiSwap" - ], - "occurrences": 9 - }, - "0x52ce071bd9b1c4b00a0b92d298c512478cad67e8": { - "address": "0x52ce071bd9b1c4b00a0b92d298c512478cad67e8", - "symbol": "COMP", - "decimals": 18, - "name": "CompoundCoin", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x52ce071bd9b1c4b00a0b92d298c512478cad67e8.png", - "aggregators": [ - "PancakeExtended", - "1inch", - "LiFi", - "Socket", - "Rubic", - "Squid", - "Rango", - "Sonarwatch", - "BinanceDex" - ], - "occurrences": 9 - }, - "0xaec945e04baf28b135fa7c640f624f8d90f1c3a6": { - "address": "0xaec945e04baf28b135fa7c640f624f8d90f1c3a6", - "symbol": "C98", - "decimals": 18, - "name": "Coin98", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xaec945e04baf28b135fa7c640f624f8d90f1c3a6.png", - "aggregators": [ - "PancakeTop100", - "1inch", - "LiFi", - "Socket", - "Rubic", - "Squid", - "Rango" - ], - "occurrences": 7 - }, - "0x3203c9e46ca618c8c1ce5dc67e7e9d75f5da2377": { - "address": "0x3203c9e46ca618c8c1ce5dc67e7e9d75f5da2377", - "symbol": "MBOX", - "decimals": 18, - "name": "Mobox", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x3203c9e46ca618c8c1ce5dc67e7e9d75f5da2377.png", - "aggregators": [ - "PancakeTop100", - "1inch", - "LiFi", - "Rubic", - "Squid", - "Rango", - "Sonarwatch" - ], - "occurrences": 7 - }, - "0xa1faa113cbe53436df28ff0aee54275c13b40975": { - "address": "0xa1faa113cbe53436df28ff0aee54275c13b40975", - "symbol": "ALPHA", - "decimals": 18, - "name": "Alpha Finance", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xa1faa113cbe53436df28ff0aee54275c13b40975.png", - "aggregators": [ - "PancakeTop100", - "1inch", - "LiFi", - "TrustWallet", - "Socket", - "Rubic", - "Rango", - "Sonarwatch", - "SushiSwap" - ], - "occurrences": 9 - }, - "0x4338665cbb7b2485a8855a139b75d5e34ab0db94": { - "address": "0x4338665cbb7b2485a8855a139b75d5e34ab0db94", - "symbol": "LTC", - "decimals": 18, - "name": "BNB pegged Litecoin Token", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x4338665cbb7b2485a8855a139b75d5e34ab0db94.png", - "aggregators": [ - "PancakeExtended", - "1inch", - "LiFi", - "TrustWallet", - "Socket", - "Rubic", - "Squid", - "Sonarwatch", - "SushiSwap" - ], - "occurrences": 9 - }, - "0x928e55dab735aa8260af3cedada18b5f70c72f1b": { - "address": "0x928e55dab735aa8260af3cedada18b5f70c72f1b", - "symbol": "FRONT", - "decimals": 18, - "name": "Frontier Token", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x928e55dab735aa8260af3cedada18b5f70c72f1b.png", - "aggregators": [ - "PancakeTop100", - "1inch", - "LiFi", - "TrustWallet", - "Socket", - "Rubic", - "Rango", - "Sonarwatch", - "SushiSwap" - ], - "occurrences": 9 - }, - "0xac51066d7bec65dc4589368da368b212745d63e8": { - "address": "0xac51066d7bec65dc4589368da368b212745d63e8", - "symbol": "ALICE", - "decimals": 6, - "name": "My Neighbor Alice", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xac51066d7bec65dc4589368da368b212745d63e8.png", - "aggregators": [ - "PancakeTop100", - "1inch", - "LiFi", - "Socket", - "Rubic", - "Squid", - "Rango", - "Sonarwatch" - ], - "occurrences": 8 - }, - "0x2222227e22102fe3322098e4cbfe18cfebd57c95": { - "address": "0x2222227e22102fe3322098e4cbfe18cfebd57c95", - "symbol": "TLM", - "decimals": 4, - "name": "Alien Worlds", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x2222227e22102fe3322098e4cbfe18cfebd57c95.png", - "aggregators": [ - "PancakeTop100", - "1inch", - "LiFi", - "Socket", - "Rubic", - "Squid", - "Rango", - "Sonarwatch" - ], - "occurrences": 8 - }, - "0xfd7b3a77848f1c2d67e05e54d78d174a0c850335": { - "address": "0xfd7b3a77848f1c2d67e05e54d78d174a0c850335", - "symbol": "ONT", - "decimals": 18, - "name": "Ontology Token", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xfd7b3a77848f1c2d67e05e54d78d174a0c850335.png", - "aggregators": [ - "PancakeExtended", - "1inch", - "LiFi", - "Socket", - "Rubic", - "Rango", - "Sonarwatch", - "SushiSwap" - ], - "occurrences": 8 - }, - "0x4bd17003473389a42daf6a0a729f6fdb328bbbd7": { - "address": "0x4bd17003473389a42daf6a0a729f6fdb328bbbd7", - "symbol": "VAI", - "decimals": 18, - "name": "VAI Stablecoin", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x4bd17003473389a42daf6a0a729f6fdb328bbbd7.png", - "aggregators": [ - "PancakeTop100", - "1inch", - "LiFi", - "TrustWallet", - "Socket", - "Rubic", - "Sonarwatch", - "SushiSwap" - ], - "occurrences": 8 - }, - "0xf21768ccbc73ea5b6fd3c687208a7c2def2d966e": { - "address": "0xf21768ccbc73ea5b6fd3c687208a7c2def2d966e", - "symbol": "REEF", - "decimals": 18, - "name": "Reef.finance", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xf21768ccbc73ea5b6fd3c687208a7c2def2d966e.png", - "aggregators": [ - "PancakeTop100", - "1inch", - "TrustWallet", - "Socket", - "Rubic", - "Rango", - "Sonarwatch", - "SushiSwap" - ], - "occurrences": 8 - }, - "0xa2120b9e674d3fc3875f415a7df52e382f141225": { - "address": "0xa2120b9e674d3fc3875f415a7df52e382f141225", - "symbol": "ATA", - "decimals": 18, - "name": "Automata", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xa2120b9e674d3fc3875f415a7df52e382f141225.png", - "aggregators": [ - "PancakeTop100", - "1inch", - "LiFi", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 7 - }, - "0xd40bedb44c081d2935eeba6ef5a3c8a31a1bbe13": { - "address": "0xd40bedb44c081d2935eeba6ef5a3c8a31a1bbe13", - "symbol": "HERO", - "decimals": 18, - "name": "Metahero", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xd40bedb44c081d2935eeba6ef5a3c8a31a1bbe13.png", - "aggregators": [ - "PancakeTop100", - "1inch", - "LiFi", - "Rubic", - "Squid", - "Rango", - "Sonarwatch" - ], - "occurrences": 7 - }, - "0xe0e514c71282b6f4e823703a39374cf58dc3ea4f": { - "address": "0xe0e514c71282b6f4e823703a39374cf58dc3ea4f", - "symbol": "BELT", - "decimals": 18, - "name": "BELT Token", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xe0e514c71282b6f4e823703a39374cf58dc3ea4f.png", - "aggregators": [ - "PancakeTop100", - "1inch", - "LiFi", - "Rubic", - "Squid", - "Rango", - "Sonarwatch", - "BinanceDex" - ], - "occurrences": 8 - }, - "0x12bb890508c125661e03b09ec06e404bc9289040": { - "address": "0x12bb890508c125661e03b09ec06e404bc9289040", - "symbol": "RACA", - "decimals": 18, - "name": "Radio Caca", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x12bb890508c125661e03b09ec06e404bc9289040.png", - "aggregators": [ - "PancakeTop100", - "Socket", - "Rubic", - "Squid", - "Rango", - "Sonarwatch" - ], - "occurrences": 6 - }, - "0x56b6fb708fc5732dec1afc8d8556423a2edccbd6": { - "address": "0x56b6fb708fc5732dec1afc8d8556423a2edccbd6", - "symbol": "EOS", - "decimals": 18, - "name": "BNB pegged EOS Token", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x56b6fb708fc5732dec1afc8d8556423a2edccbd6.png", - "aggregators": [ - "PancakeExtended", - "1inch", - "LiFi", - "TrustWallet", - "Socket", - "Rubic", - "Rango", - "Sonarwatch", - "SushiSwap" - ], - "occurrences": 9 - }, - "0xfb6115445bff7b52feb98650c87f44907e58f802": { - "address": "0xfb6115445bff7b52feb98650c87f44907e58f802", - "symbol": "AAVE", - "decimals": 18, - "name": "Aave Token", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xfb6115445bff7b52feb98650c87f44907e58f802.png", - "aggregators": [ - "PancakeExtended", - "1inch", - "LiFi", - "Socket", - "Rubic", - "Squid", - "Rango", - "Sonarwatch", - "BinanceDex" - ], - "occurrences": 9 - }, - "0x90c97f71e18723b0cf0dfa30ee176ab653e89f40": { - "address": "0x90c97f71e18723b0cf0dfa30ee176ab653e89f40", - "symbol": "FRAX", - "decimals": 18, - "name": "Frax", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x90c97f71e18723b0cf0dfa30ee176ab653e89f40.png", - "aggregators": [ - "PancakeCoinMarketCap", - "1inch", - "LiFi", - "Socket", - "Rubic", - "Rango", - "Sonarwatch", - "SushiSwap" - ], - "occurrences": 8 - }, - "0xe4cc45bb5dbda06db6183e8bf016569f40497aa5": { - "address": "0xe4cc45bb5dbda06db6183e8bf016569f40497aa5", - "symbol": "GAL", - "decimals": 18, - "name": "Galxe", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xe4cc45bb5dbda06db6183e8bf016569f40497aa5.png", - "aggregators": [ - "PancakeExtended", - "1inch", - "LiFi", - "Socket", - "Rubic", - "Squid", - "Rango", - "Sonarwatch" - ], - "occurrences": 8 - }, - "0xb0d502e938ed5f4df2e681fe6e419ff29631d62b": { - "address": "0xb0d502e938ed5f4df2e681fe6e419ff29631d62b", - "symbol": "STG", - "decimals": 18, - "name": "StargateToken", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xb0d502e938ed5f4df2e681fe6e419ff29631d62b.png", - "aggregators": [ - "PancakeExtended", - "1inch", - "LiFi", - "Socket", - "Rubic", - "Squid", - "Sonarwatch", - "SushiSwap" - ], - "occurrences": 8 - }, - "0x728c5bac3c3e370e372fc4671f9ef6916b814d8b": { - "address": "0x728c5bac3c3e370e372fc4671f9ef6916b814d8b", - "symbol": "UNFI", - "decimals": 18, - "name": "UNFI", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x728c5bac3c3e370e372fc4671f9ef6916b814d8b.png", - "aggregators": [ - "PancakeExtended", - "LiFi", - "TrustWallet", - "Socket", - "Rubic", - "Rango", - "Sonarwatch", - "SushiSwap" - ], - "occurrences": 8 - }, - "0x4691937a7508860f876c9c0a2a617e7d9e945d4b": { - "address": "0x4691937a7508860f876c9c0a2a617e7d9e945d4b", - "symbol": "WOO", - "decimals": 18, - "name": "WOO", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x4691937a7508860f876c9c0a2a617e7d9e945d4b.png", - "aggregators": [ - "PancakeExtended", - "1inch", - "LiFi", - "Socket", - "Rubic", - "Squid", - "Rango", - "Sonarwatch" - ], - "occurrences": 8 - }, - "0xe0f94ac5462997d2bc57287ac3a3ae4c31345d66": { - "address": "0xe0f94ac5462997d2bc57287ac3a3ae4c31345d66", - "symbol": "CEEK", - "decimals": 18, - "name": "CEEK Smart VR", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xe0f94ac5462997d2bc57287ac3a3ae4c31345d66.png", - "aggregators": [ - "PancakeExtended", - "1inch", - "LiFi", - "Socket", - "Rubic", - "Squid", - "Rango", - "Sonarwatch" - ], - "occurrences": 8 - }, - "0xc5f0f7b66764f6ec8c8dff7ba683102295e16409": { - "address": "0xc5f0f7b66764f6ec8c8dff7ba683102295e16409", - "symbol": "FDUSD", - "decimals": 18, - "name": "First Digital USD", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xc5f0f7b66764f6ec8c8dff7ba683102295e16409.png", - "aggregators": [ - "PancakeExtended", - "1inch", - "LiFi", - "Socket", - "Rubic", - "Squid", - "Rango", - "Sonarwatch" - ], - "occurrences": 8 - }, - "0x23396cf899ca06c4472205fc903bdb4de249d6fc": { - "address": "0x23396cf899ca06c4472205fc903bdb4de249d6fc", - "symbol": "UST", - "decimals": 18, - "name": "Wrapped UST Token", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x23396cf899ca06c4472205fc903bdb4de249d6fc.png", - "aggregators": [ - "PancakeTop100", - "1inch", - "LiFi", - "TrustWallet", - "Socket", - "Rubic", - "Rango", - "SushiSwap" - ], - "occurrences": 8 - }, - "0x8ff795a6f4d97e7887c79bea79aba5cc76444adf": { - "address": "0x8ff795a6f4d97e7887c79bea79aba5cc76444adf", - "symbol": "BCH", - "decimals": 18, - "name": "BNB pegged Bitcoin Cash Token", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x8ff795a6f4d97e7887c79bea79aba5cc76444adf.png", - "aggregators": [ - "PancakeExtended", - "1inch", - "LiFi", - "TrustWallet", - "Socket", - "Rubic", - "Sonarwatch", - "SushiSwap", - "BinanceDex" - ], - "occurrences": 9 - }, - "0x68e374f856bf25468d365e539b700b648bf94b67": { - "address": "0x68e374f856bf25468d365e539b700b648bf94b67", - "symbol": "MIST", - "decimals": 18, - "name": "Mist", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x68e374f856bf25468d365e539b700b648bf94b67.png", - "aggregators": [ - "PancakeTop100", - "1inch", - "LiFi", - "Socket", - "Rubic", - "Squid", - "Rango", - "Sonarwatch" - ], - "occurrences": 8 - }, - "0xb2bd0749dbe21f623d9baba856d3b0f0e1bfec9c": { - "address": "0xb2bd0749dbe21f623d9baba856d3b0f0e1bfec9c", - "symbol": "DUSK", - "decimals": 18, - "name": "DUSK", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xb2bd0749dbe21f623d9baba856d3b0f0e1bfec9c.png", - "aggregators": [ - "PancakeExtended", - "1inch", - "LiFi", - "Socket", - "Rubic", - "Squid", - "Rango", - "Sonarwatch" - ], - "occurrences": 8 - }, - "0x67ee3cb086f8a16f34bee3ca72fad36f7db929e2": { - "address": "0x67ee3cb086f8a16f34bee3ca72fad36f7db929e2", - "symbol": "DODO", - "decimals": 18, - "name": "DODO", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x67ee3cb086f8a16f34bee3ca72fad36f7db929e2.png", - "aggregators": [ - "PancakeTop100", - "1inch", - "LiFi", - "TrustWallet", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 8 - }, - "0x2ed9a5c8c13b93955103b9a7c167b67ef4d568a3": { - "address": "0x2ed9a5c8c13b93955103b9a7c167b67ef4d568a3", - "symbol": "MASK", - "decimals": 18, - "name": "Mask Network", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x2ed9a5c8c13b93955103b9a7c167b67ef4d568a3.png", - "aggregators": [ - "PancakeTop100", - "LiFi", - "Socket", - "Rubic", - "Squid", - "Rango", - "Sonarwatch" - ], - "occurrences": 7 - }, - "0xf218184af829cf2b0019f8e6f0b2423498a36983": { - "address": "0xf218184af829cf2b0019f8e6f0b2423498a36983", - "symbol": "MATH", - "decimals": 18, - "name": "Math", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xf218184af829cf2b0019f8e6f0b2423498a36983.png", - "aggregators": [ - "PancakeExtended", - "1inch", - "Socket", - "Rubic", - "Rango", - "Sonarwatch", - "SushiSwap" - ], - "occurrences": 7 - }, - "0x833f307ac507d47309fd8cdd1f835bef8d702a93": { - "address": "0x833f307ac507d47309fd8cdd1f835bef8d702a93", - "symbol": "REVV", - "decimals": 18, - "name": "REVV", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x833f307ac507d47309fd8cdd1f835bef8d702a93.png", - "aggregators": [ - "PancakeExtended", - "1inch", - "LiFi", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 7 - }, - "0x90ed8f1dc86388f14b64ba8fb4bbd23099f18240": { - "address": "0x90ed8f1dc86388f14b64ba8fb4bbd23099f18240", - "symbol": "SDAO", - "decimals": 18, - "name": "SingularityDAO", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x90ed8f1dc86388f14b64ba8fb4bbd23099f18240.png", - "aggregators": [ - "PancakeExtended", - "1inch", - "Socket", - "Rubic", - "Squid", - "Rango", - "Sonarwatch" - ], - "occurrences": 7 - }, - "0x43a8cab15d06d3a5fe5854d714c37e7e9246f170": { - "address": "0x43a8cab15d06d3a5fe5854d714c37e7e9246f170", - "symbol": "ORBS", - "decimals": 18, - "name": "Orbs", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x43a8cab15d06d3a5fe5854d714c37e7e9246f170.png", - "aggregators": [ - "PancakeExtended", - "1inch", - "LiFi", - "Socket", - "Rubic", - "Squid", - "Rango" - ], - "occurrences": 7 - }, - "0x9678e42cebeb63f23197d726b29b1cb20d0064e5": { - "address": "0x9678e42cebeb63f23197d726b29b1cb20d0064e5", - "symbol": "IOTX", - "decimals": 18, - "name": "Binance-Peg IoTeX", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x9678e42cebeb63f23197d726b29b1cb20d0064e5.png", - "aggregators": [ - "PancakeTop100", - "1inch", - "LiFi", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 7 - }, - "0xc748673057861a797275cd8a068abb95a902e8de": { - "address": "0xc748673057861a797275cd8a068abb95a902e8de", - "symbol": "BABYDOGE", - "decimals": 9, - "name": "Baby Doge Coin", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xc748673057861a797275cd8a068abb95a902e8de.png", - "aggregators": [ - "PancakeTop100", - "1inch", - "TrustWallet", - "Socket", - "Rubic", - "Squid", - "Rango" - ], - "occurrences": 7 - }, - "0x5a3010d4d8d3b5fb49f8b6e57fb9e48063f16700": { - "address": "0x5a3010d4d8d3b5fb49f8b6e57fb9e48063f16700", - "symbol": "BSCPAD", - "decimals": 18, - "name": "BSCPAD", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x5a3010d4d8d3b5fb49f8b6e57fb9e48063f16700.png", - "aggregators": [ - "PancakeTop100", - "1inch", - "LiFi", - "Rubic", - "Squid", - "Rango", - "Sonarwatch" - ], - "occurrences": 7 - }, - "0x9f589e3eabe42ebc94a44727b3f3531c0c877809": { - "address": "0x9f589e3eabe42ebc94a44727b3f3531c0c877809", - "symbol": "TKO", - "decimals": 18, - "name": "Tokocrypto", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x9f589e3eabe42ebc94a44727b3f3531c0c877809.png", - "aggregators": [ - "PancakeTop100", - "1inch", - "LiFi", - "Rubic", - "Squid", - "Rango", - "Sonarwatch" - ], - "occurrences": 7 - }, - "0xae9269f27437f0fcbc232d39ec814844a51d6b8f": { - "address": "0xae9269f27437f0fcbc232d39ec814844a51d6b8f", - "symbol": "BURGER", - "decimals": 18, - "name": "Burger Swap", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xae9269f27437f0fcbc232d39ec814844a51d6b8f.png", - "aggregators": [ - "PancakeExtended", - "LiFi", - "Socket", - "Rubic", - "Rango", - "Sonarwatch", - "SushiSwap", - "BinanceDex" - ], - "occurrences": 8 - }, - "0x603c7f932ed1fc6575303d8fb018fdcbb0f39a95": { - "address": "0x603c7f932ed1fc6575303d8fb018fdcbb0f39a95", - "symbol": "BANANA", - "decimals": 18, - "name": "ApeSwap", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x603c7f932ed1fc6575303d8fb018fdcbb0f39a95.png", - "aggregators": [ - "PancakeCoinMarketCap", - "LiFi", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 6 - }, - "0x3fcca8648651e5b974dd6d3e50f61567779772a8": { - "address": "0x3fcca8648651e5b974dd6d3e50f61567779772a8", - "symbol": "POTS", - "decimals": 18, - "name": "Moonpot", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x3fcca8648651e5b974dd6d3e50f61567779772a8.png", - "aggregators": [ - "PancakeTop100", - "1inch", - "LiFi", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 6 - }, - "0xeca41281c24451168a37211f0bc2b8645af45092": { - "address": "0xeca41281c24451168a37211f0bc2b8645af45092", - "symbol": "TPT", - "decimals": 4, - "name": "TokenPocket Token", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xeca41281c24451168a37211f0bc2b8645af45092.png", - "aggregators": [ - "PancakeTop100", - "1inch", - "LiFi", - "Socket", - "Rubic", - "Sonarwatch" - ], - "occurrences": 6 - }, - "0x8443f091997f06a61670b735ed92734f5628692f": { - "address": "0x8443f091997f06a61670b735ed92734f5628692f", - "symbol": "BEL", - "decimals": 18, - "name": "BellaProtocol", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x8443f091997f06a61670b735ed92734f5628692f.png", - "aggregators": [ - "PancakeTop100", - "LiFi", - "Socket", - "Rubic", - "Rango", - "Sonarwatch", - "BinanceDex" - ], - "occurrences": 7 - }, - "0x762539b45a1dcce3d36d080f74d1aed37844b878": { - "address": "0x762539b45a1dcce3d36d080f74d1aed37844b878", - "symbol": "LINA", - "decimals": 18, - "name": "Linear", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x762539b45a1dcce3d36d080f74d1aed37844b878.png", - "aggregators": [ - "PancakeTop100", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x2170ed0880ac9a755fd29b2688956bd959f933f8": { - "address": "0x2170ed0880ac9a755fd29b2688956bd959f933f8", - "symbol": "ETH", - "decimals": 18, - "name": "BNB pegged Ethereum", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x2170ed0880ac9a755fd29b2688956bd959f933f8.png", - "aggregators": [ - "PancakeExtended", - "1inch", - "LiFi", - "TrustWallet", - "Socket", - "Rubic", - "Squid", - "Rango", - "Sonarwatch", - "SushiSwap" - ], - "occurrences": 10 - }, - "0x78650b139471520656b9e7aa7a5e9276814a38e9": { - "address": "0x78650b139471520656b9e7aa7a5e9276814a38e9", - "symbol": "BTCST", - "decimals": 17, - "name": "StandardBTCHashrateToken", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x78650b139471520656b9e7aa7a5e9276814a38e9.png", - "aggregators": [ - "PancakeExtended", - "1inch", - "LiFi", - "TrustWallet", - "Socket", - "Rubic", - "Squid", - "Rango", - "Sonarwatch", - "SushiSwap", - "BinanceDex" - ], - "occurrences": 11 - }, - "0x948d2a81086a075b3130bac19e4c6dee1d2e3fe8": { - "address": "0x948d2a81086a075b3130bac19e4c6dee1d2e3fe8", - "symbol": "HELMET", - "decimals": 18, - "name": "Helmet.insure Governance Token", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x948d2a81086a075b3130bac19e4c6dee1d2e3fe8.png", - "aggregators": [ - "PancakeExtended", - "1inch", - "LiFi", - "TrustWallet", - "Socket", - "Rubic", - "Rango", - "Sonarwatch", - "SushiSwap" - ], - "occurrences": 9 - }, - "0xcc42724c6683b7e57334c4e856f4c9965ed682bd": { - "address": "0xcc42724c6683b7e57334c4e856f4c9965ed682bd", - "symbol": "MATIC", - "decimals": 18, - "name": "Polygon", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xcc42724c6683b7e57334c4e856f4c9965ed682bd.png", - "aggregators": [ - "PancakeCoinMarketCap", - "1inch", - "LiFi", - "Socket", - "Rubic", - "Squid", - "Rango", - "Sonarwatch" - ], - "occurrences": 8 - }, - "0x1ba42e5193dfa8b03d15dd1b86a3113bbbef8eeb": { - "address": "0x1ba42e5193dfa8b03d15dd1b86a3113bbbef8eeb", - "symbol": "ZEC", - "decimals": 18, - "name": "Zcash Token", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x1ba42e5193dfa8b03d15dd1b86a3113bbbef8eeb.png", - "aggregators": [ - "PancakeExtended", - "1inch", - "LiFi", - "Socket", - "Rubic", - "Squid", - "Rango", - "SushiSwap" - ], - "occurrences": 8 - }, - "0xad6742a35fb341a9cc6ad674738dd8da98b94fb1": { - "address": "0xad6742a35fb341a9cc6ad674738dd8da98b94fb1", - "symbol": "WOM", - "decimals": 18, - "name": "Wombat Exchange", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xad6742a35fb341a9cc6ad674738dd8da98b94fb1.png", - "aggregators": [ - "PancakeExtended", - "1inch", - "LiFi", - "Socket", - "Rubic", - "Squid", - "Rango", - "Sonarwatch" - ], - "occurrences": 8 - }, - "0x8d0d000ee44948fc98c9b98a4fa4921476f08b0d": { - "address": "0x8d0d000ee44948fc98c9b98a4fa4921476f08b0d", - "symbol": "USD1", - "decimals": 18, - "name": "USD1", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x8d0d000ee44948fc98c9b98a4fa4921476f08b0d.png", - "aggregators": [ - "PancakeExtended", - "1inch", - "LiFi", - "Socket", - "Rubic", - "Squid", - "Rango", - "Sonarwatch" - ], - "occurrences": 8 - }, - "0x40af3827f39d0eacbf4a168f8d4ee67c121d11c9": { - "address": "0x40af3827f39d0eacbf4a168f8d4ee67c121d11c9", - "symbol": "TUSD", - "decimals": 18, - "name": "TrueUSD", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x40af3827f39d0eacbf4a168f8d4ee67c121d11c9.png", - "aggregators": [ - "PancakeExtended", - "1inch", - "LiFi", - "Socket", - "Rubic", - "Squid", - "Rango", - "Sonarwatch" - ], - "occurrences": 8 - }, - "0xbe1a001fe942f96eea22ba08783140b9dcc09d28": { - "address": "0xbe1a001fe942f96eea22ba08783140b9dcc09d28", - "symbol": "BETA", - "decimals": 18, - "name": "Beta Finance", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xbe1a001fe942f96eea22ba08783140b9dcc09d28.png", - "aggregators": [ - "PancakeExtended", - "1inch", - "LiFi", - "Socket", - "Rubic", - "Squid", - "Rango", - "Sonarwatch" - ], - "occurrences": 8 - }, - "0x3019bf2a2ef8040c242c9a4c5c4bd4c81678b2a1": { - "address": "0x3019bf2a2ef8040c242c9a4c5c4bd4c81678b2a1", - "symbol": "GMT", - "decimals": 8, - "name": "GMT", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x3019bf2a2ef8040c242c9a4c5c4bd4c81678b2a1.png", - "aggregators": [ - "PancakeExtended", - "1inch", - "LiFi", - "Socket", - "Rubic", - "Squid", - "Rango", - "Sonarwatch" - ], - "occurrences": 8 - }, - "0xf2c88757f8d03634671208935974b60a2a28bdb3": { - "address": "0xf2c88757f8d03634671208935974b60a2a28bdb3", - "symbol": "SHELL", - "decimals": 18, - "name": "MyShell", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xf2c88757f8d03634671208935974b60a2a28bdb3.png", - "aggregators": [ - "PancakeExtended", - "1inch", - "LiFi", - "Socket", - "Rubic", - "Squid", - "Rango", - "Sonarwatch" - ], - "occurrences": 8 - }, - "0xb3ed0a426155b79b898849803e3b36552f7ed507": { - "address": "0xb3ed0a426155b79b898849803e3b36552f7ed507", - "symbol": "PENDLE", - "decimals": 18, - "name": "Pendle", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xb3ed0a426155b79b898849803e3b36552f7ed507.png", - "aggregators": [ - "PancakeExtended", - "1inch", - "LiFi", - "Socket", - "Rubic", - "Squid", - "Rango", - "Sonarwatch" - ], - "occurrences": 8 - }, - "0xad6caeb32cd2c308980a548bd0bc5aa4306c6c18": { - "address": "0xad6caeb32cd2c308980a548bd0bc5aa4306c6c18", - "symbol": "BAND", - "decimals": 18, - "name": "BNB pegged Band Protocol Token", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xad6caeb32cd2c308980a548bd0bc5aa4306c6c18.png", - "aggregators": [ - "PancakeExtended", - "1inch", - "LiFi", - "TrustWallet", - "Socket", - "Rubic", - "Rango", - "SushiSwap", - "BinanceDex" - ], - "occurrences": 9 - }, - "0xacb2d47827c9813ae26de80965845d80935afd0b": { - "address": "0xacb2d47827c9813ae26de80965845d80935afd0b", - "symbol": "MCRN", - "decimals": 18, - "name": "MacaronSwap Token", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xacb2d47827c9813ae26de80965845d80935afd0b.png", - "aggregators": [ - "PancakeExtended", - "1inch", - "LiFi", - "Socket", - "Rubic", - "Rango", - "Sonarwatch", - "SushiSwap" - ], - "occurrences": 8 - }, - "0x23ce9e926048273ef83be0a3a8ba9cb6d45cd978": { - "address": "0x23ce9e926048273ef83be0a3a8ba9cb6d45cd978", - "symbol": "DAR", - "decimals": 6, - "name": "Mines of Dalarnia", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x23ce9e926048273ef83be0a3a8ba9cb6d45cd978.png", - "aggregators": [ - "PancakeExtended", - "LiFi", - "Socket", - "Rubic", - "Squid", - "Rango", - "Sonarwatch" - ], - "occurrences": 7 - }, - "0x031b41e504677879370e9dbcf937283a8691fa7f": { - "address": "0x031b41e504677879370e9dbcf937283a8691fa7f", - "symbol": "FET", - "decimals": 18, - "name": "Artificial Superintelligence Alliance", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x031b41e504677879370e9dbcf937283a8691fa7f.png", - "aggregators": [ - "PancakeExtended", - "1inch", - "Socket", - "Rubic", - "Squid", - "Rango", - "Sonarwatch" - ], - "occurrences": 7 - }, - "0xad29abb318791d579433d831ed122afeaf29dcfe": { - "address": "0xad29abb318791d579433d831ed122afeaf29dcfe", - "symbol": "WFTM", - "decimals": 18, - "name": "Wrapped Fantom", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xad29abb318791d579433d831ed122afeaf29dcfe.png", - "aggregators": [ - "PancakeExtended", - "1inch", - "LiFi", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 7 - }, - "0xe48a3d7d0bc88d552f730b62c006bc925eadb9ee": { - "address": "0xe48a3d7d0bc88d552f730b62c006bc925eadb9ee", - "symbol": "FXS", - "decimals": 18, - "name": "Frax Share", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xe48a3d7d0bc88d552f730b62c006bc925eadb9ee.png", - "aggregators": [ - "PancakeCoinMarketCap", - "LiFi", - "Socket", - "Rubic", - "Rango", - "Sonarwatch", - "SushiSwap" - ], - "occurrences": 7 - }, - "0x5f4bde007dc06b867f86ebfe4802e34a1ffeed63": { - "address": "0x5f4bde007dc06b867f86ebfe4802e34a1ffeed63", - "symbol": "HIGH", - "decimals": 18, - "name": "Highstreet", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x5f4bde007dc06b867f86ebfe4802e34a1ffeed63.png", - "aggregators": [ - "PancakeExtended", - "1inch", - "LiFi", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 7 - }, - "0x9fd87aefe02441b123c3c32466cd9db4c578618f": { - "address": "0x9fd87aefe02441b123c3c32466cd9db4c578618f", - "symbol": "THG", - "decimals": 18, - "name": "Thetan World", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x9fd87aefe02441b123c3c32466cd9db4c578618f.png", - "aggregators": [ - "PancakeExtended", - "1inch", - "LiFi", - "Rubic", - "Squid", - "Rango", - "Sonarwatch" - ], - "occurrences": 7 - }, - "0x84e9a6f9d240fdd33801f7135908bfa16866939a": { - "address": "0x84e9a6f9d240fdd33801f7135908bfa16866939a", - "symbol": "GMEE", - "decimals": 18, - "name": "GAMEE", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x84e9a6f9d240fdd33801f7135908bfa16866939a.png", - "aggregators": [ - "PancakeExtended", - "1inch", - "LiFi", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 7 - }, - "0x1613957159e9b0ac6c80e824f7eea748a32a0ae2": { - "address": "0x1613957159e9b0ac6c80e824f7eea748a32a0ae2", - "symbol": "CGG", - "decimals": 18, - "name": "pTokens CGG", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x1613957159e9b0ac6c80e824f7eea748a32a0ae2.png", - "aggregators": [ - "PancakeExtended", - "LiFi", - "Socket", - "Rubic", - "Rango", - "Sonarwatch", - "SushiSwap" - ], - "occurrences": 7 - }, - "0xb3a6381070b1a15169dea646166ec0699fdaea79": { - "address": "0xb3a6381070b1a15169dea646166ec0699fdaea79", - "symbol": "GOLD", - "decimals": 18, - "name": "CyberDragon Gold", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xb3a6381070b1a15169dea646166ec0699fdaea79.png", - "aggregators": [ - "PancakeTop100", - "1inch", - "LiFi", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 7 - }, - "0x965f527d9159dce6288a2219db51fc6eef120dd1": { - "address": "0x965f527d9159dce6288a2219db51fc6eef120dd1", - "symbol": "BSW", - "decimals": 18, - "name": "Biswap", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x965f527d9159dce6288a2219db51fc6eef120dd1.png", - "aggregators": [ - "PancakeExtended", - "1inch", - "LiFi", - "Rubic", - "Squid", - "Rango", - "Sonarwatch" - ], - "occurrences": 7 - }, - "0x8263cd1601fe73c066bf49cc09841f35348e3be0": { - "address": "0x8263cd1601fe73c066bf49cc09841f35348e3be0", - "symbol": "ALU", - "decimals": 18, - "name": "Altura", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x8263cd1601fe73c066bf49cc09841f35348e3be0.png", - "aggregators": [ - "PancakeTop100", - "1inch", - "LiFi", - "Rubic", - "Squid", - "Rango", - "Sonarwatch" - ], - "occurrences": 7 - }, - "0xb86abcb37c3a4b64f74f59301aff131a1becc787": { - "address": "0xb86abcb37c3a4b64f74f59301aff131a1becc787", - "symbol": "ZIL", - "decimals": 12, - "name": "Zilliqa", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xb86abcb37c3a4b64f74f59301aff131a1becc787.png", - "aggregators": [ - "PancakeExtended", - "1inch", - "LiFi", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 7 - }, - "0x03ff0ff224f904be3118461335064bb48df47938": { - "address": "0x03ff0ff224f904be3118461335064bb48df47938", - "symbol": "WONE", - "decimals": 18, - "name": "Wrapped One", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x03ff0ff224f904be3118461335064bb48df47938.png", - "aggregators": [ - "PancakeTop100", - "LiFi", - "Socket", - "Rubic", - "Squid", - "Rango", - "Sonarwatch" - ], - "occurrences": 7 - }, - "0x8519ea49c997f50ceffa444d240fb655e89248aa": { - "address": "0x8519ea49c997f50ceffa444d240fb655e89248aa", - "symbol": "RAMP", - "decimals": 18, - "name": "RAMP [OLD]", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x8519ea49c997f50ceffa444d240fb655e89248aa.png", - "aggregators": [ - "PancakeTop100", - "1inch", - "LiFi", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 7 - }, - "0xf7de7e8a6bd59ed41a4b5fe50278b3b7f31384df": { - "address": "0xf7de7e8a6bd59ed41a4b5fe50278b3b7f31384df", - "symbol": "RDNT", - "decimals": 18, - "name": "Radiant", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xf7de7e8a6bd59ed41a4b5fe50278b3b7f31384df.png", - "aggregators": [ - "PancakeExtended", - "1inch", - "LiFi", - "Socket", - "Rubic", - "Squid", - "Rango" - ], - "occurrences": 7 - }, - "0x101d82428437127bf1608f699cd651e6abf9766e": { - "address": "0x101d82428437127bf1608f699cd651e6abf9766e", - "symbol": "BAT", - "decimals": 18, - "name": "BasicAttentionToken", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x101d82428437127bf1608f699cd651e6abf9766e.png", - "aggregators": [ - "PancakeExtended", - "1inch", - "LiFi", - "Socket", - "Rubic", - "Rango", - "BinanceDex" - ], - "occurrences": 7 - }, - "0xffba7529ac181c2ee1844548e6d7061c9a597df4": { - "address": "0xffba7529ac181c2ee1844548e6d7061c9a597df4", - "symbol": "CAPS", - "decimals": 18, - "name": "Ternoa", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xffba7529ac181c2ee1844548e6d7061c9a597df4.png", - "aggregators": [ - "PancakeExtended", - "1inch", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 6 - }, - "0x1633b7157e7638c4d6593436111bf125ee74703f": { - "address": "0x1633b7157e7638c4d6593436111bf125ee74703f", - "symbol": "SPS", - "decimals": 18, - "name": "Splintershards", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x1633b7157e7638c4d6593436111bf125ee74703f.png", - "aggregators": [ - "PancakeTop100", - "Rubic", - "Squid", - "Rango", - "Sonarwatch", - "SushiSwap" - ], - "occurrences": 6 - }, - "0xfb62ae373aca027177d1c18ee0862817f9080d08": { - "address": "0xfb62ae373aca027177d1c18ee0862817f9080d08", - "symbol": "DPET", - "decimals": 18, - "name": "My DeFi Pet", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xfb62ae373aca027177d1c18ee0862817f9080d08.png", - "aggregators": [ - "PancakeTop100", - "LiFi", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 6 - }, - "0x42f6f551ae042cbe50c739158b4f0cac0edb9096": { - "address": "0x42f6f551ae042cbe50c739158b4f0cac0edb9096", - "symbol": "NRV", - "decimals": 18, - "name": "Nerve Finance", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x42f6f551ae042cbe50c739158b4f0cac0edb9096.png", - "aggregators": [ - "PancakeTop100", - "1inch", - "LiFi", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 6 - }, - "0x8f0528ce5ef7b51152a59745befdd91d97091d2f": { - "address": "0x8f0528ce5ef7b51152a59745befdd91d97091d2f", - "symbol": "ALPACA", - "decimals": 18, - "name": "AlpacaToken", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x8f0528ce5ef7b51152a59745befdd91d97091d2f.png", - "aggregators": [ - "PancakeExtended", - "1inch", - "LiFi", - "Rubic", - "Rango", - "Sonarwatch", - "BinanceDex" - ], - "occurrences": 7 - }, - "0x2dff88a56767223a5529ea5960da7a3f5f766406": { - "address": "0x2dff88a56767223a5529ea5960da7a3f5f766406", - "symbol": "ID", - "decimals": 18, - "name": "SPACE ID", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x2dff88a56767223a5529ea5960da7a3f5f766406.png", - "aggregators": [ - "PancakeExtended", - "LiFi", - "Socket", - "Rubic", - "Squid", - "Sonarwatch" - ], - "occurrences": 6 - }, - "0xf4ed363144981d3a65f42e7d0dc54ff9eef559a1": { - "address": "0xf4ed363144981d3a65f42e7d0dc54ff9eef559a1", - "symbol": "FARA", - "decimals": 18, - "name": "FaraCrystal", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xf4ed363144981d3a65f42e7d0dc54ff9eef559a1.png", - "aggregators": [ - "PancakeTop100", - "1inch", - "LiFi", - "Rubic", - "Squid", - "Rango" - ], - "occurrences": 6 - }, - "0x08ba0619b1e7a582e0bce5bbe9843322c954c340": { - "address": "0x08ba0619b1e7a582e0bce5bbe9843322c954c340", - "symbol": "BMON", - "decimals": 18, - "name": "Binamon", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x08ba0619b1e7a582e0bce5bbe9843322c954c340.png", - "aggregators": [ - "PancakeTop100", - "LiFi", - "Rubic", - "Squid", - "Rango", - "Sonarwatch" - ], - "occurrences": 6 - }, - "0x7269d98af4aa705e0b1a5d8512fadb4d45817d5a": { - "address": "0x7269d98af4aa705e0b1a5d8512fadb4d45817d5a", - "symbol": "SHI", - "decimals": 18, - "name": "Shirtum", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x7269d98af4aa705e0b1a5d8512fadb4d45817d5a.png", - "aggregators": [ - "PancakeTop100", - "Socket", - "Rubic", - "Squid", - "Rango", - "Sonarwatch" - ], - "occurrences": 6 - }, - "0xeceb87cf00dcbf2d4e2880223743ff087a995ad9": { - "address": "0xeceb87cf00dcbf2d4e2880223743ff087a995ad9", - "symbol": "NUM", - "decimals": 18, - "name": "NUM Token [via ChainPort.io]", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xeceb87cf00dcbf2d4e2880223743ff087a995ad9.png", - "aggregators": [ - "PancakeCoinMarketCap", - "1inch", - "Socket", - "Rubic", - "Rango", - "SushiSwap" - ], - "occurrences": 6 - }, - "0x4d2d32d8652058bf98c772953e1df5c5c85d9f45": { - "address": "0x4d2d32d8652058bf98c772953e1df5c5c85d9f45", - "symbol": "DAO", - "decimals": 18, - "name": "DAO Maker", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x4d2d32d8652058bf98c772953e1df5c5c85d9f45.png", - "aggregators": [ - "PancakeExtended", - "1inch", - "LiFi", - "Socket", - "Rubic", - "Sonarwatch" - ], - "occurrences": 6 - }, - "0x857b222fc79e1cbbf8ca5f78cb133d1b7cf34bbd": { - "address": "0x857b222fc79e1cbbf8ca5f78cb133d1b7cf34bbd", - "symbol": "LTO", - "decimals": 18, - "name": "LTO Network", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x857b222fc79e1cbbf8ca5f78cb133d1b7cf34bbd.png", - "aggregators": [ - "PancakeExtended", - "LiFi", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 6 - }, - "0x154a9f9cbd3449ad22fdae23044319d6ef2a1fab": { - "address": "0x154a9f9cbd3449ad22fdae23044319d6ef2a1fab", - "symbol": "SKILL", - "decimals": 18, - "name": "CryptoBlades", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x154a9f9cbd3449ad22fdae23044319d6ef2a1fab.png", - "aggregators": [ - "PancakeTop100", - "LiFi", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0xe369fec23380f9f14ffd07a1dc4b7c1a9fdd81c9": { - "address": "0xe369fec23380f9f14ffd07a1dc4b7c1a9fdd81c9", - "symbol": "FROYO", - "decimals": 18, - "name": "Froyo Games", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xe369fec23380f9f14ffd07a1dc4b7c1a9fdd81c9.png", - "aggregators": [ - "PancakeExtended", - "1inch", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x6b23c89196deb721e6fd9726e6c76e4810a464bc": { - "address": "0x6b23c89196deb721e6fd9726e6c76e4810a464bc", - "symbol": "XWG", - "decimals": 18, - "name": "X World Games", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x6b23c89196deb721e6fd9726e6c76e4810a464bc.png", - "aggregators": [ - "PancakeTop100", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0xaf53d56ff99f1322515e54fdde93ff8b3b7dafd5": { - "address": "0xaf53d56ff99f1322515e54fdde93ff8b3b7dafd5", - "symbol": "PROM", - "decimals": 18, - "name": "Prometeus", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xaf53d56ff99f1322515e54fdde93ff8b3b7dafd5.png", - "aggregators": [ - "PancakeExtended", - "Socket", - "Rubic", - "Rango", - "SushiSwap" - ], - "occurrences": 5 - }, - "0xacb8f52dc63bb752a51186d1c55868adbffee9c1": { - "address": "0xacb8f52dc63bb752a51186d1c55868adbffee9c1", - "symbol": "BP", - "decimals": 18, - "name": "BunnyPark", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xacb8f52dc63bb752a51186d1c55868adbffee9c1.png", - "aggregators": [ - "PancakeTop100", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x25a528af62e56512a19ce8c3cab427807c28cc19": { - "address": "0x25a528af62e56512a19ce8c3cab427807c28cc19", - "symbol": "FORM", - "decimals": 18, - "name": "Formation FI", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x25a528af62e56512a19ce8c3cab427807c28cc19.png", - "aggregators": [ - "PancakeTop100", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0xde3dbbe30cfa9f437b293294d1fd64b26045c71a": { - "address": "0xde3dbbe30cfa9f437b293294d1fd64b26045c71a", - "symbol": "NFTB", - "decimals": 18, - "name": "NFTb", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xde3dbbe30cfa9f437b293294d1fd64b26045c71a.png", - "aggregators": [ - "PancakeTop100", - "1inch", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0xf9cec8d50f6c8ad3fb6dccec577e05aa32b224fe": { - "address": "0xf9cec8d50f6c8ad3fb6dccec577e05aa32b224fe", - "symbol": "CHR", - "decimals": 6, - "name": "Chroma", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xf9cec8d50f6c8ad3fb6dccec577e05aa32b224fe.png", - "aggregators": ["PancakeTop100", "Socket", "Rubic", "Rango"], - "occurrences": 4 - }, - "0x6985884c4392d348587b19cb9eaaf157f13271cd": { - "address": "0x6985884c4392d348587b19cb9eaaf157f13271cd", - "symbol": "ZRO", - "decimals": 18, - "name": "LayerZero", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x6985884c4392d348587b19cb9eaaf157f13271cd.png", - "aggregators": [ - "PancakeExtended", - "1inch", - "LiFi", - "Socket", - "Rubic", - "Squid", - "Rango", - "Sonarwatch", - "SushiSwap" - ], - "occurrences": 9 - }, - "0xa184088a740c695e156f91f5cc086a06bb78b827": { - "address": "0xa184088a740c695e156f91f5cc086a06bb78b827", - "symbol": "AUTO", - "decimals": 18, - "name": "AUTOv2", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xa184088a740c695e156f91f5cc086a06bb78b827.png", - "aggregators": [ - "PancakeExtended", - "1inch", - "LiFi", - "TrustWallet", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 8 - }, - "0xf4c8e32eadec4bfe97e0f595add0f4450a863a11": { - "address": "0xf4c8e32eadec4bfe97e0f595add0f4450a863a11", - "symbol": "THE", - "decimals": 18, - "name": "Thena", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xf4c8e32eadec4bfe97e0f595add0f4450a863a11.png", - "aggregators": [ - "PancakeCoinMarketCap", - "1inch", - "LiFi", - "Socket", - "Rubic", - "Squid", - "Rango", - "Sonarwatch" - ], - "occurrences": 8 - }, - "0xa2e3356610840701bdf5611a53974510ae27e2e1": { - "address": "0xa2e3356610840701bdf5611a53974510ae27e2e1", - "symbol": "WBETH", - "decimals": 18, - "name": "Wrapped Beacon ETH", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xa2e3356610840701bdf5611a53974510ae27e2e1.png", - "aggregators": [ - "PancakeExtended", - "1inch", - "LiFi", - "Socket", - "Rubic", - "Squid", - "Rango", - "Sonarwatch" - ], - "occurrences": 8 - }, - "0xf16e81dce15b08f326220742020379b855b87df9": { - "address": "0xf16e81dce15b08f326220742020379b855b87df9", - "symbol": "ICE", - "decimals": 18, - "name": "IceToken", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xf16e81dce15b08f326220742020379b855b87df9.png", - "aggregators": [ - "PancakeCoinMarketCap", - "1inch", - "Socket", - "Rubic", - "Squid", - "Rango", - "Sonarwatch", - "SushiSwap" - ], - "occurrences": 8 - }, - "0xa8c2b8eec3d368c0253ad3dae65a5f2bbb89c929": { - "address": "0xa8c2b8eec3d368c0253ad3dae65a5f2bbb89c929", - "symbol": "CTK", - "decimals": 6, - "name": "CertiK Token", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xa8c2b8eec3d368c0253ad3dae65a5f2bbb89c929.png", - "aggregators": [ - "PancakeExtended", - "1inch", - "LiFi", - "TrustWallet", - "Socket", - "Rubic", - "Rango", - "SushiSwap", - "BinanceDex" - ], - "occurrences": 9 - }, - "0x111111111117dc0aa78b770fa6a738034120c302": { - "address": "0x111111111117dc0aa78b770fa6a738034120c302", - "symbol": "1INCH", - "decimals": 18, - "name": "1inch", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x111111111117dc0aa78b770fa6a738034120c302.png", - "aggregators": [ - "PancakeCoinMarketCap", - "1inch", - "LiFi", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 7 - }, - "0x6f769e65c14ebd1f68817f5f1dcdb61cfa2d6f7e": { - "address": "0x6f769e65c14ebd1f68817f5f1dcdb61cfa2d6f7e", - "symbol": "ARPA", - "decimals": 18, - "name": "ARPA", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x6f769e65c14ebd1f68817f5f1dcdb61cfa2d6f7e.png", - "aggregators": [ - "PancakeExtended", - "LiFi", - "Socket", - "Rubic", - "Squid", - "Rango", - "Sonarwatch" - ], - "occurrences": 7 - }, - "0x8b1f4432f943c465a973fedc6d7aa50fc96f1f65": { - "address": "0x8b1f4432f943c465a973fedc6d7aa50fc96f1f65", - "symbol": "AXL", - "decimals": 6, - "name": "Axelar", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x8b1f4432f943c465a973fedc6d7aa50fc96f1f65.png", - "aggregators": [ - "PancakeExtended", - "1inch", - "Socket", - "Rubic", - "Squid", - "Rango", - "Sonarwatch" - ], - "occurrences": 7 - }, - "0xfb5b838b6cfeedc2873ab27866079ac55363d37e": { - "address": "0xfb5b838b6cfeedc2873ab27866079ac55363d37e", - "symbol": "FLOKI", - "decimals": 9, - "name": "FLOKI", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xfb5b838b6cfeedc2873ab27866079ac55363d37e.png", - "aggregators": [ - "PancakeExtended", - "1inch", - "Socket", - "Rubic", - "Squid", - "Rango", - "Sonarwatch" - ], - "occurrences": 7 - }, - "0xfe19f0b51438fd612f6fd59c1dbb3ea319f433ba": { - "address": "0xfe19f0b51438fd612f6fd59c1dbb3ea319f433ba", - "symbol": "MIM", - "decimals": 18, - "name": "Magic Internet Money", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xfe19f0b51438fd612f6fd59c1dbb3ea319f433ba.png", - "aggregators": [ - "PancakeCoinMarketCap", - "LiFi", - "Socket", - "Rubic", - "Rango", - "Sonarwatch", - "SushiSwap" - ], - "occurrences": 7 - }, - "0x34294afabcbaffc616ac6614f6d2e17260b78bed": { - "address": "0x34294afabcbaffc616ac6614f6d2e17260b78bed", - "symbol": "ABOND", - "decimals": 18, - "name": "ApeBond", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x34294afabcbaffc616ac6614f6d2e17260b78bed.png", - "aggregators": [ - "PancakeCoinMarketCap", - "LiFi", - "Socket", - "Rubic", - "Squid", - "Rango", - "Sonarwatch" - ], - "occurrences": 7 - }, - "0x1fa4a73a3f0133f0025378af00236f3abdee5d63": { - "address": "0x1fa4a73a3f0133f0025378af00236f3abdee5d63", - "symbol": "NEAR", - "decimals": 18, - "name": "Binance-Peg NEAR Protocol", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x1fa4a73a3f0133f0025378af00236f3abdee5d63.png", - "aggregators": [ - "PancakeExtended", - "1inch", - "LiFi", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 7 - }, - "0xb6c53431608e626ac81a9776ac3e999c5556717c": { - "address": "0xb6c53431608e626ac81a9776ac3e999c5556717c", - "symbol": "WTLOS", - "decimals": 18, - "name": "Wrapped Telos", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xb6c53431608e626ac81a9776ac3e999c5556717c.png", - "aggregators": [ - "PancakeExtended", - "1inch", - "Socket", - "Rubic", - "Squid", - "Rango", - "Sonarwatch" - ], - "occurrences": 7 - }, - "0x1bdd3cf7f79cfb8edbb955f20ad99211551ba275": { - "address": "0x1bdd3cf7f79cfb8edbb955f20ad99211551ba275", - "symbol": "BNBX", - "decimals": 18, - "name": "Stader BNBx", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x1bdd3cf7f79cfb8edbb955f20ad99211551ba275.png", - "aggregators": [ - "PancakeExtended", - "1inch", - "LiFi", - "Rubic", - "Squid", - "Rango", - "Sonarwatch" - ], - "occurrences": 7 - }, - "0x5a110fc00474038f6c02e89c707d638602ea44b5": { - "address": "0x5a110fc00474038f6c02e89c707d638602ea44b5", - "symbol": "USDF", - "decimals": 18, - "name": "Aster USDF", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x5a110fc00474038f6c02e89c707d638602ea44b5.png", - "aggregators": [ - "PancakeExtended", - "LiFi", - "Socket", - "Rubic", - "Squid", - "Rango", - "Sonarwatch" - ], - "occurrences": 7 - }, - "0x12b4356c65340fb02cdff01293f95febb1512f3b": { - "address": "0x12b4356c65340fb02cdff01293f95febb1512f3b", - "symbol": "BROCCOLI", - "decimals": 18, - "name": "Broccoli", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x12b4356c65340fb02cdff01293f95febb1512f3b.png", - "aggregators": [ - "Metamask", - "1inch", - "LiFi", - "Rubic", - "Squid", - "Rango", - "Sonarwatch" - ], - "occurrences": 7 - }, - "0xd44fd09d74cd13838f137b590497595d6b3feea4": { - "address": "0xd44fd09d74cd13838f137b590497595d6b3feea4", - "symbol": "ETERNAL", - "decimals": 18, - "name": "CryptoMines Eternal", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xd44fd09d74cd13838f137b590497595d6b3feea4.png", - "aggregators": [ - "PancakeExtended", - "1inch", - "LiFi", - "Rubic", - "Squid", - "Rango", - "Sonarwatch" - ], - "occurrences": 7 - }, - "0x232fb065d9d24c34708eedbf03724f2e95abe768": { - "address": "0x232fb065d9d24c34708eedbf03724f2e95abe768", - "symbol": "SHEESHA", - "decimals": 18, - "name": "Sheesha Finance (BEP20)", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x232fb065d9d24c34708eedbf03724f2e95abe768.png", - "aggregators": [ - "PancakeExtended", - "1inch", - "Socket", - "Rubic", - "Squid", - "Rango", - "Sonarwatch" - ], - "occurrences": 7 - }, - "0xee9801669c6138e84bd50deb500827b776777d28": { - "address": "0xee9801669c6138e84bd50deb500827b776777d28", - "symbol": "O3", - "decimals": 18, - "name": "O3 Swap Token", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xee9801669c6138e84bd50deb500827b776777d28.png", - "aggregators": [ - "PancakeExtended", - "LiFi", - "Socket", - "Rubic", - "Rango", - "Sonarwatch", - "SushiSwap" - ], - "occurrences": 7 - }, - "0x78f5d389f5cdccfc41594abab4b0ed02f31398b3": { - "address": "0x78f5d389f5cdccfc41594abab4b0ed02f31398b3", - "symbol": "APX", - "decimals": 18, - "name": "APX", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x78f5d389f5cdccfc41594abab4b0ed02f31398b3.png", - "aggregators": [ - "PancakeExtended", - "LiFi", - "Socket", - "Rubic", - "Squid", - "Rango", - "Sonarwatch" - ], - "occurrences": 7 - }, - "0x4e6415a5727ea08aae4580057187923aec331227": { - "address": "0x4e6415a5727ea08aae4580057187923aec331227", - "symbol": "FINE", - "decimals": 18, - "name": "Refinable", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x4e6415a5727ea08aae4580057187923aec331227.png", - "aggregators": [ - "PancakeExtended", - "1inch", - "LiFi", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 7 - }, - "0xa64455a4553c9034236734faddaddbb64ace4cc7": { - "address": "0xa64455a4553c9034236734faddaddbb64ace4cc7", - "symbol": "SANTOS", - "decimals": 8, - "name": "Santos FC Fan Token", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xa64455a4553c9034236734faddaddbb64ace4cc7.png", - "aggregators": [ - "PancakeExtended", - "1inch", - "LiFi", - "Rubic", - "Squid", - "Rango", - "Sonarwatch" - ], - "occurrences": 7 - }, - "0x6bdcce4a559076e37755a78ce0c06214e59e4444": { - "address": "0x6bdcce4a559076e37755a78ce0c06214e59e4444", - "symbol": "B", - "decimals": 18, - "name": "BUILDon", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x6bdcce4a559076e37755a78ce0c06214e59e4444.png", - "aggregators": [ - "PancakeExtended", - "LiFi", - "Socket", - "Rubic", - "Squid", - "Rango", - "Sonarwatch" - ], - "occurrences": 7 - }, - "0xc9849e6fdb743d08faee3e34dd2d1bc69ea11a51": { - "address": "0xc9849e6fdb743d08faee3e34dd2d1bc69ea11a51", - "symbol": "BUNNY", - "decimals": 18, - "name": "Bunny Token", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xc9849e6fdb743d08faee3e34dd2d1bc69ea11a51.png", - "aggregators": [ - "PancakeExtended", - "1inch", - "LiFi", - "TrustWallet", - "Rubic", - "Rango", - "Sonarwatch", - "BinanceDex" - ], - "occurrences": 8 - }, - "0x5ac52ee5b2a633895292ff6d8a89bb9190451587": { - "address": "0x5ac52ee5b2a633895292ff6d8a89bb9190451587", - "symbol": "BSCX", - "decimals": 18, - "name": "BSCX", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x5ac52ee5b2a633895292ff6d8a89bb9190451587.png", - "aggregators": [ - "PancakeExtended", - "LiFi", - "TrustWallet", - "Socket", - "Rubic", - "Sonarwatch", - "SushiSwap" - ], - "occurrences": 7 - }, - "0xf98b660adf2ed7d9d9d9daacc2fb0cace4f21835": { - "address": "0xf98b660adf2ed7d9d9d9daacc2fb0cace4f21835", - "symbol": "SIS", - "decimals": 18, - "name": "Symbiosis", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xf98b660adf2ed7d9d9d9daacc2fb0cace4f21835.png", - "aggregators": [ - "PancakeExtended", - "1inch", - "LiFi", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 7 - }, - "0xa697e272a73744b343528c3bc4702f2565b2f422": { - "address": "0xa697e272a73744b343528c3bc4702f2565b2f422", - "symbol": "BONK", - "decimals": 5, - "name": "Bonk", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xa697e272a73744b343528c3bc4702f2565b2f422.png", - "aggregators": [ - "PancakeExtended", - "1inch", - "Socket", - "Rubic", - "Squid", - "Rango", - "Sonarwatch" - ], - "occurrences": 7 - }, - "0x62d0a8458ed7719fdaf978fe5929c6d342b0bfce": { - "address": "0x62d0a8458ed7719fdaf978fe5929c6d342b0bfce", - "symbol": "BEAM", - "decimals": 18, - "name": "Beam", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x62d0a8458ed7719fdaf978fe5929c6d342b0bfce.png", - "aggregators": [ - "PancakeCoinMarketCap", - "1inch", - "Socket", - "Rubic", - "Squid", - "Rango", - "Sonarwatch" - ], - "occurrences": 7 - }, - "0xdfbea88c4842d30c26669602888d746d30f9d60d": { - "address": "0xdfbea88c4842d30c26669602888d746d30f9d60d", - "symbol": "CAW", - "decimals": 18, - "name": "crow with knife", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xdfbea88c4842d30c26669602888d746d30f9d60d.png", - "aggregators": [ - "CoinGecko", - "1inch", - "Socket", - "Rubic", - "Squid", - "Rango", - "Sonarwatch" - ], - "occurrences": 7 - }, - "0x61dbbbb552dc893ab3aad09f289f811e67cef285": { - "address": "0x61dbbbb552dc893ab3aad09f289f811e67cef285", - "symbol": "SKATE", - "decimals": 18, - "name": "Skate", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x61dbbbb552dc893ab3aad09f289f811e67cef285.png", - "aggregators": [ - "CoinGecko", - "1inch", - "LiFi", - "Socket", - "Rubic", - "Squid", - "Rango" - ], - "occurrences": 7 - }, - "0xff7f8f301f7a706e3cfd3d2275f5dc0b9ee8009b": { - "address": "0xff7f8f301f7a706e3cfd3d2275f5dc0b9ee8009b", - "symbol": "FOLKS", - "decimals": 6, - "name": "Folks Finance", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xff7f8f301f7a706e3cfd3d2275f5dc0b9ee8009b.png", - "aggregators": [ - "PancakeExtended", - "1inch", - "LiFi", - "Socket", - "Rubic", - "Squid", - "Rango" - ], - "occurrences": 7 - }, - "0x5857c96dae9cf8511b08cb07f85753c472d36ea3": { - "address": "0x5857c96dae9cf8511b08cb07f85753c472d36ea3", - "symbol": "FUSE", - "decimals": 18, - "name": "Fuse", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x5857c96dae9cf8511b08cb07f85753c472d36ea3.png", - "aggregators": [ - "PancakeExtended", - "1inch", - "LiFi", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 7 - }, - "0x44754455564474a89358b2c2265883df993b12f0": { - "address": "0x44754455564474a89358b2c2265883df993b12f0", - "symbol": "ZEE", - "decimals": 18, - "name": "ZeroSwapToken", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x44754455564474a89358b2c2265883df993b12f0.png", - "aggregators": [ - "PancakeExtended", - "LiFi", - "TrustWallet", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 7 - }, - "0x6bff4fb161347ad7de4a625ae5aa3a1ca7077819": { - "address": "0x6bff4fb161347ad7de4a625ae5aa3a1ca7077819", - "symbol": "ADX", - "decimals": 18, - "name": "AdEx", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x6bff4fb161347ad7de4a625ae5aa3a1ca7077819.png", - "aggregators": [ - "PancakeExtended", - "1inch", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 6 - }, - "0x33d08d8c7a168333a85285a68c0042b39fc3741d": { - "address": "0x33d08d8c7a168333a85285a68c0042b39fc3741d", - "symbol": "AIOZ", - "decimals": 18, - "name": "AIOZ Network", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x33d08d8c7a168333a85285a68c0042b39fc3741d.png", - "aggregators": [ - "PancakeExtended", - "Socket", - "Rubic", - "Squid", - "Rango", - "Sonarwatch" - ], - "occurrences": 6 - }, - "0x9fb9a33956351cf4fa040f65a13b835a3c8764e3": { - "address": "0x9fb9a33956351cf4fa040f65a13b835a3c8764e3", - "symbol": "MULTI", - "decimals": 18, - "name": "Multichain", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x9fb9a33956351cf4fa040f65a13b835a3c8764e3.png", - "aggregators": [ - "PancakeCoinMarketCap", - "1inch", - "LiFi", - "Socket", - "Rubic", - "Rango" - ], - "occurrences": 6 - }, - "0x1ce0c2827e2ef14d5c4f29a091d735a204794041": { - "address": "0x1ce0c2827e2ef14d5c4f29a091d735a204794041", - "symbol": "AVAX", - "decimals": 18, - "name": "Binance-Peg Avalanche", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x1ce0c2827e2ef14d5c4f29a091d735a204794041.png", - "aggregators": [ - "PancakeExtended", - "LiFi", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 6 - }, - "0xf0e406c49c63abf358030a299c0e00118c4c6ba5": { - "address": "0xf0e406c49c63abf358030a299c0e00118c4c6ba5", - "symbol": "NVT", - "decimals": 8, - "name": "NerveNetwork", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xf0e406c49c63abf358030a299c0e00118c4c6ba5.png", - "aggregators": [ - "PancakeExtended", - "1inch", - "Socket", - "Rubic", - "Rango", - "SushiSwap" - ], - "occurrences": 6 - }, - "0xe7c9c6bc87b86f9e5b57072f907ee6460b593924": { - "address": "0xe7c9c6bc87b86f9e5b57072f907ee6460b593924", - "symbol": "TOWER", - "decimals": 18, - "name": "TOWER", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xe7c9c6bc87b86f9e5b57072f907ee6460b593924.png", - "aggregators": [ - "PancakeCoinMarketCap", - "1inch", - "LiFi", - "Socket", - "Rubic", - "Rango" - ], - "occurrences": 6 - }, - "0xd88ca08d8eec1e9e09562213ae83a7853ebb5d28": { - "address": "0xd88ca08d8eec1e9e09562213ae83a7853ebb5d28", - "symbol": "XWIN", - "decimals": 18, - "name": "xWIN Finance", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xd88ca08d8eec1e9e09562213ae83a7853ebb5d28.png", - "aggregators": [ - "PancakeCoinMarketCap", - "1inch", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 6 - }, - "0xed00fc7d48b57b81fe65d1ce71c0985e4cf442cb": { - "address": "0xed00fc7d48b57b81fe65d1ce71c0985e4cf442cb", - "symbol": "CHRP", - "decimals": 18, - "name": "Chirpley", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xed00fc7d48b57b81fe65d1ce71c0985e4cf442cb.png", - "aggregators": [ - "PancakeCoinMarketCap", - "Socket", - "Rubic", - "Squid", - "Rango", - "Sonarwatch" - ], - "occurrences": 6 - }, - "0x6894cde390a3f51155ea41ed24a33a4827d3063d": { - "address": "0x6894cde390a3f51155ea41ed24a33a4827d3063d", - "symbol": "CAT", - "decimals": 18, - "name": "Simon's Cat", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x6894cde390a3f51155ea41ed24a33a4827d3063d.png", - "aggregators": [ - "PancakeExtended", - "Socket", - "Rubic", - "Squid", - "Rango", - "Sonarwatch" - ], - "occurrences": 6 - }, - "0x4da996c5fe84755c80e108cf96fe705174c5e36a": { - "address": "0x4da996c5fe84755c80e108cf96fe705174c5e36a", - "symbol": "WOW", - "decimals": 18, - "name": "WOWSwap", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x4da996c5fe84755c80e108cf96fe705174c5e36a.png", - "aggregators": [ - "PancakeCoinMarketCap", - "Socket", - "Rubic", - "Rango", - "Sonarwatch", - "SushiSwap" - ], - "occurrences": 6 - }, - "0xd7730681b1dc8f6f969166b29d8a5ea8568616a3": { - "address": "0xd7730681b1dc8f6f969166b29d8a5ea8568616a3", - "symbol": "NAFT", - "decimals": 18, - "name": "Nafter", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xd7730681b1dc8f6f969166b29d8a5ea8568616a3.png", - "aggregators": [ - "PancakeTop100", - "LiFi", - "Rubic", - "Squid", - "Rango", - "Sonarwatch" - ], - "occurrences": 6 - }, - "0x250632378e573c6be1ac2f97fcdf00515d0aa91b": { - "address": "0x250632378e573c6be1ac2f97fcdf00515d0aa91b", - "symbol": "BETH", - "decimals": 18, - "name": "Binance Beacon ETH", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x250632378e573c6be1ac2f97fcdf00515d0aa91b.png", - "aggregators": [ - "PancakeExtended", - "1inch", - "LiFi", - "Rubic", - "Rango", - "Sonarwatch", - "BinanceDex" - ], - "occurrences": 7 - }, - "0xd48474e7444727bf500a32d5abe01943f3a59a64": { - "address": "0xd48474e7444727bf500a32d5abe01943f3a59a64", - "symbol": "BBT", - "decimals": 8, - "name": "BitBook", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xd48474e7444727bf500a32d5abe01943f3a59a64.png", - "aggregators": [ - "PancakeExtended", - "Socket", - "Rubic", - "Squid", - "Rango", - "Sonarwatch" - ], - "occurrences": 6 - }, - "0x570a5d26f7765ecb712c0924e4de545b89fd43df": { - "address": "0x570a5d26f7765ecb712c0924e4de545b89fd43df", - "symbol": "SOL", - "decimals": 18, - "name": "Wrapped SOL", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x570a5d26f7765ecb712c0924e4de545b89fd43df.png", - "aggregators": [ - "PancakeExtended", - "1inch", - "LiFi", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 6 - }, - "0x630d98424efe0ea27fb1b3ab7741907dffeaad78": { - "address": "0x630d98424efe0ea27fb1b3ab7741907dffeaad78", - "symbol": "PEAK", - "decimals": 8, - "name": "PEAKDEFI", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x630d98424efe0ea27fb1b3ab7741907dffeaad78.png", - "aggregators": [ - "PancakeExtended", - "1inch", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 6 - }, - "0xcfcecfe2bd2fed07a9145222e8a7ad9cf1ccd22a": { - "address": "0xcfcecfe2bd2fed07a9145222e8a7ad9cf1ccd22a", - "symbol": "ADS", - "decimals": 11, - "name": "Adshares", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xcfcecfe2bd2fed07a9145222e8a7ad9cf1ccd22a.png", - "aggregators": [ - "PancakeCoinMarketCap", - "1inch", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 6 - }, - "0xfce146bf3146100cfe5db4129cf6c82b0ef4ad8c": { - "address": "0xfce146bf3146100cfe5db4129cf6c82b0ef4ad8c", - "symbol": "RENBTC", - "decimals": 8, - "name": "renBTC", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xfce146bf3146100cfe5db4129cf6c82b0ef4ad8c.png", - "aggregators": [ - "PancakeExtended", - "LiFi", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 6 - }, - "0x2416092f143378750bb29b79ed961ab195cceea5": { - "address": "0x2416092f143378750bb29b79ed961ab195cceea5", - "symbol": "EZETH", - "decimals": 18, - "name": "Renzo Restaked ETH", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x2416092f143378750bb29b79ed961ab195cceea5.png", - "aggregators": [ - "PancakeExtended", - "LiFi", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 6 - }, - "0xc13b7a43223bb9bf4b69bd68ab20ca1b79d81c75": { - "address": "0xc13b7a43223bb9bf4b69bd68ab20ca1b79d81c75", - "symbol": "JGN", - "decimals": 18, - "name": "Juggernaut", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xc13b7a43223bb9bf4b69bd68ab20ca1b79d81c75.png", - "aggregators": [ - "PancakeExtended", - "LiFi", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 6 - }, - "0x0a3a21356793b49154fd3bbe91cbc2a16c0457f5": { - "address": "0x0a3a21356793b49154fd3bbe91cbc2a16c0457f5", - "symbol": "RFOX", - "decimals": 18, - "name": "RFOX", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x0a3a21356793b49154fd3bbe91cbc2a16c0457f5.png", - "aggregators": [ - "PancakeExtended", - "Socket", - "Rubic", - "Squid", - "Rango", - "Sonarwatch" - ], - "occurrences": 6 - }, - "0x0f9e4d49f25de22c2202af916b681fbb3790497b": { - "address": "0x0f9e4d49f25de22c2202af916b681fbb3790497b", - "symbol": "PERL", - "decimals": 18, - "name": "Perlin X", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x0f9e4d49f25de22c2202af916b681fbb3790497b.png", - "aggregators": [ - "PancakeExtended", - "1inch", - "LiFi", - "Socket", - "Rubic", - "Rango" - ], - "occurrences": 6 - }, - "0x323665443cef804a3b5206103304bd4872ea4253": { - "address": "0x323665443cef804a3b5206103304bd4872ea4253", - "symbol": "USDV", - "decimals": 6, - "name": "USDV", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x323665443cef804a3b5206103304bd4872ea4253.png", - "aggregators": [ - "PancakeExtended", - "Socket", - "Rubic", - "Rango", - "Sonarwatch", - "SushiSwap" - ], - "occurrences": 6 - }, - "0x7bd6fabd64813c48545c9c0e312a0099d9be2540": { - "address": "0x7bd6fabd64813c48545c9c0e312a0099d9be2540", - "symbol": "ELON", - "decimals": 18, - "name": "Dogelon Mars", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x7bd6fabd64813c48545c9c0e312a0099d9be2540.png", - "aggregators": [ - "PancakeExtended", - "1inch", - "Socket", - "Rubic", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x4c882ec256823ee773b25b414d36f92ef58a7c0c": { - "address": "0x4c882ec256823ee773b25b414d36f92ef58a7c0c", - "symbol": "PSTAKE", - "decimals": 18, - "name": "pSTAKE Finance", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x4c882ec256823ee773b25b414d36f92ef58a7c0c.png", - "aggregators": [ - "PancakeExtended", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x3bc5ac0dfdc871b365d159f728dd1b9a0b5481e8": { - "address": "0x3bc5ac0dfdc871b365d159f728dd1b9a0b5481e8", - "symbol": "SD", - "decimals": 18, - "name": "Stader", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x3bc5ac0dfdc871b365d159f728dd1b9a0b5481e8.png", - "aggregators": [ - "PancakeExtended", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0xe0191fefdd0d2b39b1a2e4e029ccda8a481b7995": { - "address": "0xe0191fefdd0d2b39b1a2e4e029ccda8a481b7995", - "symbol": "CRUX", - "decimals": 18, - "name": "CryptoMines Reborn", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xe0191fefdd0d2b39b1a2e4e029ccda8a481b7995.png", - "aggregators": [ - "PancakeCoinMarketCap", - "Rubic", - "Squid", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x4fa7163e153419e0e1064e418dd7a99314ed27b6": { - "address": "0x4fa7163e153419e0e1064e418dd7a99314ed27b6", - "symbol": "HOTCROSS", - "decimals": 18, - "name": "Hot Cross", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x4fa7163e153419e0e1064e418dd7a99314ed27b6.png", - "aggregators": [ - "PancakeExtended", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0xbb46693ebbea1ac2070e59b4d043b47e2e095f86": { - "address": "0xbb46693ebbea1ac2070e59b4d043b47e2e095f86", - "symbol": "BFG", - "decimals": 18, - "name": "BFG Token", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xbb46693ebbea1ac2070e59b4d043b47e2e095f86.png", - "aggregators": [ - "PancakeExtended", - "1inch", - "LiFi", - "Rubic", - "Rango" - ], - "occurrences": 5 - }, - "0xeac9873291ddaca754ea5642114151f3035c67a2": { - "address": "0xeac9873291ddaca754ea5642114151f3035c67a2", - "symbol": "DCB", - "decimals": 18, - "name": "Decubate", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xeac9873291ddaca754ea5642114151f3035c67a2.png", - "aggregators": [ - "PancakeExtended", - "Rubic", - "Squid", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0xed8c8aa8299c10f067496bb66f8cc7fb338a3405": { - "address": "0xed8c8aa8299c10f067496bb66f8cc7fb338a3405", - "symbol": "PROS", - "decimals": 18, - "name": "Prosper", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xed8c8aa8299c10f067496bb66f8cc7fb338a3405.png", - "aggregators": [ - "PancakeExtended", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x14016e85a25aeb13065688cafb43044c2ef86784": { - "address": "0x14016e85a25aeb13065688cafb43044c2ef86784", - "symbol": "TUSD", - "decimals": 18, - "name": "Bridged TrueUSD", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x14016e85a25aeb13065688cafb43044c2ef86784.png", - "aggregators": [ - "PancakeTop100", - "LiFi", - "Socket", - "Rubic", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x7961ade0a767c0e5b67dd1a1f78ba44f727642ed": { - "address": "0x7961ade0a767c0e5b67dd1a1f78ba44f727642ed", - "symbol": "QUIDD", - "decimals": 18, - "name": "Quidd", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x7961ade0a767c0e5b67dd1a1f78ba44f727642ed.png", - "aggregators": [ - "PancakeExtended", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0xc10358f062663448a3489fc258139944534592ac": { - "address": "0xc10358f062663448a3489fc258139944534592ac", - "symbol": "BCMC", - "decimals": 18, - "name": "Blockchain Monster Coin", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xc10358f062663448a3489fc258139944534592ac.png", - "aggregators": [ - "PancakeCoinMarketCap", - "1inch", - "Socket", - "Rubic", - "Rango" - ], - "occurrences": 5 - }, - "0xf700d4c708c2be1463e355f337603183d20e0808": { - "address": "0xf700d4c708c2be1463e355f337603183d20e0808", - "symbol": "GQ", - "decimals": 18, - "name": "Blink Galaxy", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xf700d4c708c2be1463e355f337603183d20e0808.png", - "aggregators": [ - "PancakeExtended", - "Rubic", - "Squid", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x9840652dc04fb9db2c43853633f0f62be6f00f98": { - "address": "0x9840652dc04fb9db2c43853633f0f62be6f00f98", - "symbol": "CGPT", - "decimals": 18, - "name": "ChainGPT", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x9840652dc04fb9db2c43853633f0f62be6f00f98.png", - "aggregators": [ - "PancakeExtended", - "LiFi", - "Socket", - "Rubic", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0xa7f552078dcc247c2684336020c03648500c6d9f": { - "address": "0xa7f552078dcc247c2684336020c03648500c6d9f", - "symbol": "EPS", - "decimals": 18, - "name": "Ellipsis [OLD]", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xa7f552078dcc247c2684336020c03648500c6d9f.png", - "aggregators": [ - "PancakeTop100", - "LiFi", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x20de22029ab63cf9a7cf5feb2b737ca1ee4c82a6": { - "address": "0x20de22029ab63cf9a7cf5feb2b737ca1ee4c82a6", - "symbol": "CHESS", - "decimals": 18, - "name": "Tranchess", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x20de22029ab63cf9a7cf5feb2b737ca1ee4c82a6.png", - "aggregators": [ - "PancakeTop100", - "LiFi", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x565b72163f17849832a692a3c5928cc502f46d69": { - "address": "0x565b72163f17849832a692a3c5928cc502f46d69", - "symbol": "HUNNY", - "decimals": 18, - "name": "Hunny Finance", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x565b72163f17849832a692a3c5928cc502f46d69.png", - "aggregators": [ - "PancakeTop100", - "Rubic", - "Squid", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x522348779dcb2911539e76a1042aa922f9c47ee3": { - "address": "0x522348779dcb2911539e76a1042aa922f9c47ee3", - "symbol": "BOMB", - "decimals": 18, - "name": "bomb.money", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x522348779dcb2911539e76a1042aa922f9c47ee3.png", - "aggregators": [ - "PancakeCoinMarketCap", - "1inch", - "Socket", - "Rubic", - "Rango" - ], - "occurrences": 5 - }, - "0x1796ae0b0fa4862485106a0de9b654efe301d0b2": { - "address": "0x1796ae0b0fa4862485106a0de9b654efe301d0b2", - "symbol": "PMON", - "decimals": 18, - "name": "Protocol Monsters", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x1796ae0b0fa4862485106a0de9b654efe301d0b2.png", - "aggregators": [ - "PancakeTop100", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x5621b5a3f4a8008c4ccdd1b942b121c8b1944f1f": { - "address": "0x5621b5a3f4a8008c4ccdd1b942b121c8b1944f1f", - "symbol": "XED", - "decimals": 18, - "name": "Exeedme", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x5621b5a3f4a8008c4ccdd1b942b121c8b1944f1f.png", - "aggregators": [ - "PancakeExtended", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x6d106c0b8d2f47c5465bdbd58d1be253762cbbc1": { - "address": "0x6d106c0b8d2f47c5465bdbd58d1be253762cbbc1", - "symbol": "DEFI", - "decimals": 18, - "name": "DeFi", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x6d106c0b8d2f47c5465bdbd58d1be253762cbbc1.png", - "aggregators": [ - "PancakeExtended", - "1inch", - "Socket", - "Rubic", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x810ee35443639348adbbc467b33310d2ab43c168": { - "address": "0x810ee35443639348adbbc467b33310d2ab43c168", - "symbol": "CYC", - "decimals": 18, - "name": "Cyclone", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x810ee35443639348adbbc467b33310d2ab43c168.png", - "aggregators": [ - "PancakeExtended", - "1inch", - "Socket", - "Rubic", - "Rango" - ], - "occurrences": 5 - }, - "0x2fa5daf6fe0708fbd63b1a7d1592577284f52256": { - "address": "0x2fa5daf6fe0708fbd63b1a7d1592577284f52256", - "symbol": "MARSH", - "decimals": 18, - "name": "Unmarshal", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x2fa5daf6fe0708fbd63b1a7d1592577284f52256.png", - "aggregators": [ - "PancakeExtended", - "1inch", - "Socket", - "Rubic", - "Rango" - ], - "occurrences": 5 - }, - "0xffeecbf8d7267757c2dc3d13d730e97e15bfdf7f": { - "address": "0xffeecbf8d7267757c2dc3d13d730e97e15bfdf7f", - "symbol": "BORING", - "decimals": 18, - "name": "BoringDAO", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xffeecbf8d7267757c2dc3d13d730e97e15bfdf7f.png", - "aggregators": [ - "PancakeExtended", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x16faf9daa401aa42506af503aa3d80b871c467a3": { - "address": "0x16faf9daa401aa42506af503aa3d80b871c467a3", - "symbol": "DCK", - "decimals": 18, - "name": "DexCheck AI", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x16faf9daa401aa42506af503aa3d80b871c467a3.png", - "aggregators": ["PancakeExtended", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0x9573c88ae3e37508f87649f87c4dd5373c9f31e0": { - "address": "0x9573c88ae3e37508f87649f87c4dd5373c9f31e0", - "symbol": "MONI", - "decimals": 18, - "name": "Monsta Infinite", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x9573c88ae3e37508f87649f87c4dd5373c9f31e0.png", - "aggregators": ["PancakeTop100", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0x17b7163cf1dbd286e262ddc68b553d899b93f526": { - "address": "0x17b7163cf1dbd286e262ddc68b553d899b93f526", - "symbol": "QBT", - "decimals": 18, - "name": "Qubit", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x17b7163cf1dbd286e262ddc68b553d899b93f526.png", - "aggregators": ["PancakeTop100", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0x4ea98c1999575aaadfb38237dd015c5e773f75a2": { - "address": "0x4ea98c1999575aaadfb38237dd015c5e773f75a2", - "symbol": "TRUMP", - "decimals": 9, - "name": "MAGA", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x4ea98c1999575aaadfb38237dd015c5e773f75a2.png", - "aggregators": ["PancakeExtended", "Socket", "Rubic", "Sonarwatch"], - "occurrences": 4 - }, - "0xe8176d414560cfe1bf82fd73b986823b89e4f545": { - "address": "0xe8176d414560cfe1bf82fd73b986823b89e4f545", - "symbol": "HERO", - "decimals": 18, - "name": "Step Hero", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xe8176d414560cfe1bf82fd73b986823b89e4f545.png", - "aggregators": ["PancakeTop100", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0x3192ccddf1cdce4ff055ebc80f3f0231b86a7e30": { - "address": "0x3192ccddf1cdce4ff055ebc80f3f0231b86a7e30", - "symbol": "INSUR", - "decimals": 18, - "name": "Bsc-Peg INSUR Token", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x3192ccddf1cdce4ff055ebc80f3f0231b86a7e30.png", - "aggregators": ["PancakeExtended", "Socket", "Rubic", "Rango"], - "occurrences": 4 - }, - "0xaef0d72a118ce24fee3cd1d43d383897d05b4e99": { - "address": "0xaef0d72a118ce24fee3cd1d43d383897d05b4e99", - "symbol": "WIN", - "decimals": 18, - "name": "WINk", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xaef0d72a118ce24fee3cd1d43d383897d05b4e99.png", - "aggregators": ["PancakeTop100", "Rubic", "Rango"], - "occurrences": 3 - }, - "0xf952fc3ca7325cc27d15885d37117676d25bfda6": { - "address": "0xf952fc3ca7325cc27d15885d37117676d25bfda6", - "symbol": "EGG", - "decimals": 18, - "name": "Goose Golden Egg", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xf952fc3ca7325cc27d15885d37117676d25bfda6.png", - "aggregators": [ - "PancakeCoinMarketCap", - "1inch", - "LiFi", - "TrustWallet", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 8 - }, - "0x2090c8295769791ab7a3cf1cc6e0aa19f35e441a": { - "address": "0x2090c8295769791ab7a3cf1cc6e0aa19f35e441a", - "symbol": "FUEL", - "decimals": 18, - "name": "Fuel Token", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x2090c8295769791ab7a3cf1cc6e0aa19f35e441a.png", - "aggregators": [ - "PancakeExtended", - "1inch", - "LiFi", - "TrustWallet", - "Socket", - "Rubic", - "Rango", - "SushiSwap" - ], - "occurrences": 8 - }, - "0x7e624fa0e1c4abfd309cc15719b7e2580887f570": { - "address": "0x7e624fa0e1c4abfd309cc15719b7e2580887f570", - "symbol": "POLS", - "decimals": 18, - "name": "Polkastarter", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x7e624fa0e1c4abfd309cc15719b7e2580887f570.png", - "aggregators": [ - "PancakeCoinMarketCap", - "1inch", - "LiFi", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 7 - }, - "0x9c65ab58d8d978db963e63f2bfb7121627e3a739": { - "address": "0x9c65ab58d8d978db963e63f2bfb7121627e3a739", - "symbol": "MDX", - "decimals": 18, - "name": "Mdex (BSC)", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x9c65ab58d8d978db963e63f2bfb7121627e3a739.png", - "aggregators": [ - "PancakeCoinMarketCap", - "1inch", - "LiFi", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 7 - }, - "0x0782b6d8c4551b9760e74c0545a9bcd90bdc41e5": { - "address": "0x0782b6d8c4551b9760e74c0545a9bcd90bdc41e5", - "symbol": "LISUSD", - "decimals": 18, - "name": "lisUSD", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x0782b6d8c4551b9760e74c0545a9bcd90bdc41e5.png", - "aggregators": [ - "Metamask", - "1inch", - "LiFi", - "Socket", - "Rubic", - "Squid", - "Sonarwatch" - ], - "occurrences": 7 - }, - "0x190b589cf9fb8ddeabbfeae36a813ffb2a702454": { - "address": "0x190b589cf9fb8ddeabbfeae36a813ffb2a702454", - "symbol": "BDO", - "decimals": 18, - "name": "bDollar", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x190b589cf9fb8ddeabbfeae36a813ffb2a702454.png", - "aggregators": [ - "PancakeExtended", - "1inch", - "LiFi", - "TrustWallet", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 7 - }, - "0x4b8285ab433d8f69cb48d5ad62b415ed1a221e4f": { - "address": "0x4b8285ab433d8f69cb48d5ad62b415ed1a221e4f", - "symbol": "MCRT", - "decimals": 9, - "name": "MagicCraft", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x4b8285ab433d8f69cb48d5ad62b415ed1a221e4f.png", - "aggregators": [ - "PancakeCoinMarketCap", - "1inch", - "LiFi", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 7 - }, - "0x361c60b7c2828fcab80988d00d1d542c83387b50": { - "address": "0x361c60b7c2828fcab80988d00d1d542c83387b50", - "symbol": "DFI", - "decimals": 18, - "name": "DeFiChain", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x361c60b7c2828fcab80988d00d1d542c83387b50.png", - "aggregators": [ - "PancakeCoinMarketCap", - "1inch", - "LiFi", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 7 - }, - "0xbf7c81fff98bbe61b40ed186e4afd6ddd01337fe": { - "address": "0xbf7c81fff98bbe61b40ed186e4afd6ddd01337fe", - "symbol": "EGLD", - "decimals": 18, - "name": "BNB pegged Elrond", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xbf7c81fff98bbe61b40ed186e4afd6ddd01337fe.png", - "aggregators": [ - "PancakeExtended", - "1inch", - "LiFi", - "TrustWallet", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 7 - }, - "0xb0b195aefa3650a6908f15cdac7d92f8a5791b0b": { - "address": "0xb0b195aefa3650a6908f15cdac7d92f8a5791b0b", - "symbol": "BOB", - "decimals": 18, - "name": "BOB", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xb0b195aefa3650a6908f15cdac7d92f8a5791b0b.png", - "aggregators": [ - "PancakeCoinMarketCap", - "LiFi", - "Socket", - "Rubic", - "Rango", - "Sonarwatch", - "SushiSwap" - ], - "occurrences": 7 - }, - "0x0000028a2eb8346cd5c0267856ab7594b7a55308": { - "address": "0x0000028a2eb8346cd5c0267856ab7594b7a55308", - "symbol": "ZETA", - "decimals": 18, - "name": "Zeta", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x0000028a2eb8346cd5c0267856ab7594b7a55308.png", - "aggregators": [ - "PancakeCoinGecko", - "Socket", - "Rubic", - "Squid", - "Rango", - "Sonarwatch", - "SushiSwap" - ], - "occurrences": 7 - }, - "0xf78d2e7936f5fe18308a3b2951a93b6c4a41f5e2": { - "address": "0xf78d2e7936f5fe18308a3b2951a93b6c4a41f5e2", - "symbol": "OM", - "decimals": 18, - "name": "MANTRA", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xf78d2e7936f5fe18308a3b2951a93b6c4a41f5e2.png", - "aggregators": [ - "PancakeCoinMarketCap", - "1inch", - "Socket", - "Rubic", - "Squid", - "Rango", - "Sonarwatch" - ], - "occurrences": 7 - }, - "0xf68c9df95a18b2a5a5fa1124d79eeeffbad0b6fa": { - "address": "0xf68c9df95a18b2a5a5fa1124d79eeeffbad0b6fa", - "symbol": "ANY", - "decimals": 18, - "name": "Anyswap", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xf68c9df95a18b2a5a5fa1124d79eeeffbad0b6fa.png", - "aggregators": [ - "PancakeCoinMarketCap", - "1inch", - "LiFi", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 7 - }, - "0x5d0158a5c3ddf47d4ea4517d8db0d76aa2e87563": { - "address": "0x5d0158a5c3ddf47d4ea4517d8db0d76aa2e87563", - "symbol": "BONDLY", - "decimals": 18, - "name": "Forj", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x5d0158a5c3ddf47d4ea4517d8db0d76aa2e87563.png", - "aggregators": [ - "PancakeExtended", - "1inch", - "LiFi", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 7 - }, - "0xfe56d5892bdffc7bf58f2e84be1b2c32d21c308b": { - "address": "0xfe56d5892bdffc7bf58f2e84be1b2c32d21c308b", - "symbol": "KNC", - "decimals": 18, - "name": "Kyber Network Crystal", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xfe56d5892bdffc7bf58f2e84be1b2c32d21c308b.png", - "aggregators": [ - "PancakeCoinMarketCap", - "LiFi", - "Socket", - "Rubic", - "Squid", - "Rango", - "Sonarwatch" - ], - "occurrences": 7 - }, - "0xeeeeeb57642040be42185f49c52f7e9b38f8eeee": { - "address": "0xeeeeeb57642040be42185f49c52f7e9b38f8eeee", - "symbol": "ELK", - "decimals": 18, - "name": "Elk Finance", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xeeeeeb57642040be42185f49c52f7e9b38f8eeee.png", - "aggregators": [ - "PancakeCoinMarketCap", - "1inch", - "LiFi", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 7 - }, - "0x64048a7eecf3a2f1ba9e144aac3d7db6e58f555e": { - "address": "0x64048a7eecf3a2f1ba9e144aac3d7db6e58f555e", - "symbol": "FRXETH", - "decimals": 18, - "name": "Frax Ether", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x64048a7eecf3a2f1ba9e144aac3d7db6e58f555e.png", - "aggregators": [ - "PancakeCoinMarketCap", - "LiFi", - "Socket", - "Rubic", - "Squid", - "Rango", - "Sonarwatch" - ], - "occurrences": 7 - }, - "0x88f1a5ae2a3bf98aeaf342d26b30a79438c9142e": { - "address": "0x88f1a5ae2a3bf98aeaf342d26b30a79438c9142e", - "symbol": "YFI", - "decimals": 18, - "name": "BNB pegged yearn.finance", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x88f1a5ae2a3bf98aeaf342d26b30a79438c9142e.png", - "aggregators": [ - "PancakeExtended", - "LiFi", - "TrustWallet", - "Socket", - "Rubic", - "Rango", - "SushiSwap" - ], - "occurrences": 7 - }, - "0x000ae314e2a2172a039b26378814c252734f556a": { - "address": "0x000ae314e2a2172a039b26378814c252734f556a", - "symbol": "ASTER", - "decimals": 18, - "name": "Aster", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x000ae314e2a2172a039b26378814c252734f556a.png", - "aggregators": [ - "PancakeExtended", - "1inch", - "LiFi", - "Rubic", - "Squid", - "Rango" - ], - "occurrences": 6 - }, - "0xd55c9fb62e176a8eb6968f32958fefdd0962727e": { - "address": "0xd55c9fb62e176a8eb6968f32958fefdd0962727e", - "symbol": "FHE", - "decimals": 18, - "name": "Mind Network", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xd55c9fb62e176a8eb6968f32958fefdd0962727e.png", - "aggregators": [ - "PancakeExtended", - "LiFi", - "Socket", - "Rubic", - "Squid", - "Sonarwatch" - ], - "occurrences": 6 - }, - "0x44ec807ce2f4a6f2737a92e985f318d035883e47": { - "address": "0x44ec807ce2f4a6f2737a92e985f318d035883e47", - "symbol": "HFT", - "decimals": 18, - "name": "Hashflow", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x44ec807ce2f4a6f2737a92e985f318d035883e47.png", - "aggregators": [ - "PancakeExtended", - "LiFi", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 6 - }, - "0x7324c7c0d95cebc73eea7e85cbaac0dbdf88a05b": { - "address": "0x7324c7c0d95cebc73eea7e85cbaac0dbdf88a05b", - "symbol": "XCN", - "decimals": 18, - "name": "Onyxcoin", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x7324c7c0d95cebc73eea7e85cbaac0dbdf88a05b.png", - "aggregators": [ - "PancakeExtended", - "Socket", - "Rubic", - "Squid", - "Rango", - "Sonarwatch" - ], - "occurrences": 6 - }, - "0xca3f508b8e4dd382ee878a314789373d80a5190a": { - "address": "0xca3f508b8e4dd382ee878a314789373d80a5190a", - "symbol": "BIFI", - "decimals": 18, - "name": "beefy.finance", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xca3f508b8e4dd382ee878a314789373d80a5190a.png", - "aggregators": [ - "PancakeExtended", - "LiFi", - "Socket", - "Rubic", - "Rango", - "SushiSwap", - "BinanceDex" - ], - "occurrences": 7 - }, - "0xc7981767f644c7f8e483dabdc413e8a371b83079": { - "address": "0xc7981767f644c7f8e483dabdc413e8a371b83079", - "symbol": "LIQ", - "decimals": 18, - "name": "Liquidus (Old)", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xc7981767f644c7f8e483dabdc413e8a371b83079.png", - "aggregators": [ - "PancakeCoinGecko", - "1inch", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 6 - }, - "0x489580eb70a50515296ef31e8179ff3e77e24965": { - "address": "0x489580eb70a50515296ef31e8179ff3e77e24965", - "symbol": "RADAR", - "decimals": 18, - "name": "DappRadar", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x489580eb70a50515296ef31e8179ff3e77e24965.png", - "aggregators": [ - "PancakeCoinMarketCap", - "LiFi", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 6 - }, - "0xfdc66a08b0d0dc44c17bbd471b88f49f50cdd20f": { - "address": "0xfdc66a08b0d0dc44c17bbd471b88f49f50cdd20f", - "symbol": "SDEX", - "decimals": 18, - "name": "SmarDex", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xfdc66a08b0d0dc44c17bbd471b88f49f50cdd20f.png", - "aggregators": [ - "PancakeCoinMarketCap", - "LiFi", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 6 - }, - "0x650b940a1033b8a1b1873f78730fcfc73ec11f1f": { - "address": "0x650b940a1033b8a1b1873f78730fcfc73ec11f1f", - "symbol": "VLINK", - "decimals": 8, - "name": "Venus LINK", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x650b940a1033b8a1b1873f78730fcfc73ec11f1f.png", - "aggregators": [ - "PancakeCoinMarketCap", - "1inch", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 6 - }, - "0x40b8129b786d766267a7a118cf8c07e31cdb6fde": { - "address": "0x40b8129b786d766267a7a118cf8c07e31cdb6fde", - "symbol": "UB", - "decimals": 18, - "name": "Unibase", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x40b8129b786d766267a7a118cf8c07e31cdb6fde.png", - "aggregators": [ - "PancakeExtended", - "LiFi", - "Socket", - "Rubic", - "Squid", - "Rango" - ], - "occurrences": 6 - }, - "0x882c173bc7ff3b7786ca16dfed3dfffb9ee7847b": { - "address": "0x882c173bc7ff3b7786ca16dfed3dfffb9ee7847b", - "symbol": "VBTC", - "decimals": 8, - "name": "Venus BTC", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x882c173bc7ff3b7786ca16dfed3dfffb9ee7847b.png", - "aggregators": [ - "PancakeCoinMarketCap", - "1inch", - "LiFi", - "Socket", - "Rubic", - "Sonarwatch" - ], - "occurrences": 6 - }, - "0xf508fcd89b8bd15579dc79a6827cb4686a3592c8": { - "address": "0xf508fcd89b8bd15579dc79a6827cb4686a3592c8", - "symbol": "VETH", - "decimals": 8, - "name": "Venus ETH", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xf508fcd89b8bd15579dc79a6827cb4686a3592c8.png", - "aggregators": [ - "PancakeCoinMarketCap", - "1inch", - "LiFi", - "Socket", - "Rubic", - "Rango" - ], - "occurrences": 6 - }, - "0xf859bf77cbe8699013d6dbc7c2b926aaf307f830": { - "address": "0xf859bf77cbe8699013d6dbc7c2b926aaf307f830", - "symbol": "BRY", - "decimals": 18, - "name": "Berry Data", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xf859bf77cbe8699013d6dbc7c2b926aaf307f830.png", - "aggregators": [ - "PancakeExtended", - "1inch", - "LiFi", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 6 - }, - "0x444045b0ee1ee319a660a5e3d604ca0ffa35acaa": { - "address": "0x444045b0ee1ee319a660a5e3d604ca0ffa35acaa", - "symbol": "BTW", - "decimals": 18, - "name": "Bitway Token", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x444045b0ee1ee319a660a5e3d604ca0ffa35acaa.png", - "aggregators": [ - "PancakeExtended", - "LiFi", - "Socket", - "Rubic", - "Squid", - "Rango" - ], - "occurrences": 6 - }, - "0x14c358b573a4ce45364a3dbd84bbb4dae87af034": { - "address": "0x14c358b573a4ce45364a3dbd84bbb4dae87af034", - "symbol": "DND", - "decimals": 18, - "name": "DungeonSwap", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x14c358b573a4ce45364a3dbd84bbb4dae87af034.png", - "aggregators": [ - "PancakeCoinMarketCap", - "1inch", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 6 - }, - "0x0e63b9c287e32a05e6b9ab8ee8df88a2760225a9": { - "address": "0x0e63b9c287e32a05e6b9ab8ee8df88a2760225a9", - "symbol": "PIEVERSE", - "decimals": 18, - "name": "Pieverse Token", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x0e63b9c287e32a05e6b9ab8ee8df88a2760225a9.png", - "aggregators": [ - "PancakeExtended", - "LiFi", - "Socket", - "Rubic", - "Squid", - "Rango" - ], - "occurrences": 6 - }, - "0xb64e280e9d1b5dbec4accedb2257a87b400db149": { - "address": "0xb64e280e9d1b5dbec4accedb2257a87b400db149", - "symbol": "LVL", - "decimals": 18, - "name": "Level", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xb64e280e9d1b5dbec4accedb2257a87b400db149.png", - "aggregators": [ - "PancakeExtended", - "1inch", - "LiFi", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 6 - }, - "0x16939ef78684453bfdfb47825f8a5f714f12623a": { - "address": "0x16939ef78684453bfdfb47825f8a5f714f12623a", - "symbol": "XTZ", - "decimals": 18, - "name": "BNB pegged Tezos Token", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x16939ef78684453bfdfb47825f8a5f714f12623a.png", - "aggregators": [ - "PancakeExtended", - "TrustWallet", - "Socket", - "Rubic", - "Sonarwatch", - "SushiSwap" - ], - "occurrences": 6 - }, - "0x0a8d6c86e1bce73fe4d0bd531e1a567306836ea5": { - "address": "0x0a8d6c86e1bce73fe4d0bd531e1a567306836ea5", - "symbol": "COAI", - "decimals": 18, - "name": "ChainOpera AI", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x0a8d6c86e1bce73fe4d0bd531e1a567306836ea5.png", - "aggregators": [ - "PancakeExtended", - "1inch", - "LiFi", - "Rubic", - "Squid", - "Rango" - ], - "occurrences": 6 - }, - "0xa67c48f86fc6d0176dca38883ca8153c76a532c7": { - "address": "0xa67c48f86fc6d0176dca38883ca8153c76a532c7", - "symbol": "SYBTC", - "decimals": 8, - "name": "SyBTC", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xa67c48f86fc6d0176dca38883ca8153c76a532c7.png", - "aggregators": [ - "CoinGecko", - "LiFi", - "Rubic", - "Squid", - "Rango", - "Sonarwatch" - ], - "occurrences": 6 - }, - "0xbbca42c60b5290f2c48871a596492f93ff0ddc82": { - "address": "0xbbca42c60b5290f2c48871a596492f93ff0ddc82", - "symbol": "DOMI", - "decimals": 18, - "name": "Domi Online", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xbbca42c60b5290f2c48871a596492f93ff0ddc82.png", - "aggregators": [ - "PancakeCoinMarketCap", - "1inch", - "LiFi", - "Socket", - "Rubic", - "Rango" - ], - "occurrences": 6 - }, - "0x53e562b9b7e5e94b81f10e96ee70ad06df3d2657": { - "address": "0x53e562b9b7e5e94b81f10e96ee70ad06df3d2657", - "symbol": "BABY", - "decimals": 18, - "name": "BabySwap", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x53e562b9b7e5e94b81f10e96ee70ad06df3d2657.png", - "aggregators": [ - "PancakeCoinMarketCap", - "1inch", - "LiFi", - "Socket", - "Rubic", - "Rango" - ], - "occurrences": 6 - }, - "0xbdeae1ca48894a1759a8374d63925f21f2ee2639": { - "address": "0xbdeae1ca48894a1759a8374d63925f21f2ee2639", - "symbol": "EDU", - "decimals": 18, - "name": "Open Campus", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xbdeae1ca48894a1759a8374d63925f21f2ee2639.png", - "aggregators": [ - "PancakeExtended", - "LiFi", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 6 - }, - "0x15247e6e23d3923a853ccf15940a20ccdf16e94a": { - "address": "0x15247e6e23d3923a853ccf15940a20ccdf16e94a", - "symbol": "ZKC", - "decimals": 18, - "name": "ZK Coin", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x15247e6e23d3923a853ccf15940a20ccdf16e94a.png", - "aggregators": ["CoinGecko", "Socket", "Rubic", "Squid", "Rango"], - "occurrences": 5 - }, - "0xc0041ef357b183448b235a8ea73ce4e4ec8c265f": { - "address": "0xc0041ef357b183448b235a8ea73ce4e4ec8c265f", - "symbol": "COOKIE", - "decimals": 18, - "name": "Cookie", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xc0041ef357b183448b235a8ea73ce4e4ec8c265f.png", - "aggregators": [ - "PancakeExtended", - "LiFi", - "Socket", - "Rubic", - "Squid", - "Sonarwatch" - ], - "occurrences": 6 - }, - "0xe9d7023f2132d55cbd4ee1f78273cb7a3e74f10a": { - "address": "0xe9d7023f2132d55cbd4ee1f78273cb7a3e74f10a", - "symbol": "DEC", - "decimals": 3, - "name": "Dark Energy Crystals", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xe9d7023f2132d55cbd4ee1f78273cb7a3e74f10a.png", - "aggregators": [ - "PancakeCoinMarketCap", - "1inch", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 6 - }, - "0xd83c128e7498be555845a6dc331a99e1524c1777": { - "address": "0xd83c128e7498be555845a6dc331a99e1524c1777", - "symbol": "UTOPIA", - "decimals": 18, - "name": "Utopia", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xd83c128e7498be555845a6dc331a99e1524c1777.png", - "aggregators": [ - "PancakeExtended", - "1inch", - "LiFi", - "Rubic", - "Squid", - "Rango" - ], - "occurrences": 6 - }, - "0x4b948d64de1f71fcd12fb586f4c776421a35b3ee": { - "address": "0x4b948d64de1f71fcd12fb586f4c776421a35b3ee", - "symbol": "0G", - "decimals": 18, - "name": "0G", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x4b948d64de1f71fcd12fb586f4c776421a35b3ee.png", - "aggregators": [ - "PancakeExtended", - "LiFi", - "Socket", - "Rubic", - "Squid", - "Rango" - ], - "occurrences": 6 - }, - "0x88d7e9b65dc24cf54f5edef929225fc3e1580c25": { - "address": "0x88d7e9b65dc24cf54f5edef929225fc3e1580c25", - "symbol": "JMPT", - "decimals": 18, - "name": "JumpToken", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x88d7e9b65dc24cf54f5edef929225fc3e1580c25.png", - "aggregators": [ - "PancakeCoinMarketCap", - "1inch", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 6 - }, - "0xa1832f7f4e534ae557f9b5ab76de54b1873e498b": { - "address": "0xa1832f7f4e534ae557f9b5ab76de54b1873e498b", - "symbol": "BID", - "decimals": 18, - "name": "CreatorBid", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xa1832f7f4e534ae557f9b5ab76de54b1873e498b.png", - "aggregators": [ - "PancakeExtended", - "1inch", - "LiFi", - "Socket", - "Rubic", - "Sonarwatch" - ], - "occurrences": 6 - }, - "0x86bb94ddd16efc8bc58e6b056e8df71d9e666429": { - "address": "0x86bb94ddd16efc8bc58e6b056e8df71d9e666429", - "symbol": "TST", - "decimals": 18, - "name": "Test", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x86bb94ddd16efc8bc58e6b056e8df71d9e666429.png", - "aggregators": [ - "PancakeExtended", - "LiFi", - "Socket", - "Rubic", - "Squid", - "Sonarwatch" - ], - "occurrences": 6 - }, - "0x04756126f044634c9a0f0e985e60c88a51acc206": { - "address": "0x04756126f044634c9a0f0e985e60c88a51acc206", - "symbol": "CSIX", - "decimals": 18, - "name": "Carbon Browser", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x04756126f044634c9a0f0e985e60c88a51acc206.png", - "aggregators": [ - "PancakeExtended", - "LiFi", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 6 - }, - "0x4f0ed527e8a95ecaa132af214dfd41f30b361600": { - "address": "0x4f0ed527e8a95ecaa132af214dfd41f30b361600", - "symbol": "VBSWAP", - "decimals": 18, - "name": "vBSWAP", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x4f0ed527e8a95ecaa132af214dfd41f30b361600.png", - "aggregators": [ - "PancakeCoinMarketCap", - "1inch", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 6 - }, - "0x0cbd6fadcf8096cc9a43d90b45f65826102e3ece": { - "address": "0x0cbd6fadcf8096cc9a43d90b45f65826102e3ece", - "symbol": "CDT", - "decimals": 18, - "name": "CheckDot", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x0cbd6fadcf8096cc9a43d90b45f65826102e3ece.png", - "aggregators": [ - "PancakeCoinMarketCap", - "Socket", - "Rubic", - "Rango", - "Sonarwatch", - "SushiSwap" - ], - "occurrences": 6 - }, - "0xdfd7b0dd7bf1012dfdf3307a964c36b972300ac8": { - "address": "0xdfd7b0dd7bf1012dfdf3307a964c36b972300ac8", - "symbol": "WNDR", - "decimals": 8, - "name": "Wonderman Nation", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xdfd7b0dd7bf1012dfdf3307a964c36b972300ac8.png", - "aggregators": [ - "PancakeCoinMarketCap", - "1inch", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 6 - }, - "0x52f24a5e03aee338da5fd9df68d2b6fae1178827": { - "address": "0x52f24a5e03aee338da5fd9df68d2b6fae1178827", - "symbol": "ANKRBNB", - "decimals": 18, - "name": "Ankr Staked BNB", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x52f24a5e03aee338da5fd9df68d2b6fae1178827.png", - "aggregators": [ - "PancakeExtended", - "1inch", - "LiFi", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 6 - }, - "0x5c85d6c6825ab4032337f11ee92a72df936b46f6": { - "address": "0x5c85d6c6825ab4032337f11ee92a72df936b46f6", - "symbol": "MUBARAK", - "decimals": 18, - "name": "Mubarak", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x5c85d6c6825ab4032337f11ee92a72df936b46f6.png", - "aggregators": [ - "PancakeExtended", - "1inch", - "LiFi", - "Rubic", - "Squid", - "Sonarwatch" - ], - "occurrences": 6 - }, - "0x4a5a34212404f30c5ab7eb61b078fa4a55adc5a5": { - "address": "0x4a5a34212404f30c5ab7eb61b078fa4a55adc5a5", - "symbol": "MILK2", - "decimals": 18, - "name": "Spaceswap MILK2", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x4a5a34212404f30c5ab7eb61b078fa4a55adc5a5.png", - "aggregators": [ - "PancakeCoinMarketCap", - "1inch", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 6 - }, - "0x6ae9701b9c423f40d54556c9a443409d79ce170a": { - "address": "0x6ae9701b9c423f40d54556c9a443409d79ce170a", - "symbol": "POLC", - "decimals": 18, - "name": "Polkacity", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x6ae9701b9c423f40d54556c9a443409d79ce170a.png", - "aggregators": [ - "PancakeCoinMarketCap", - "1inch", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 6 - }, - "0xb72a20c7b8bd666f80ac053b0f4de20a787080f5": { - "address": "0xb72a20c7b8bd666f80ac053b0f4de20a787080f5", - "symbol": "MLT", - "decimals": 18, - "name": "Media Licensing Token", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xb72a20c7b8bd666f80ac053b0f4de20a787080f5.png", - "aggregators": [ - "PancakeCoinMarketCap", - "1inch", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 6 - }, - "0xdb021b1b247fe2f1fa57e0a87c748cc1e321f07f": { - "address": "0xdb021b1b247fe2f1fa57e0a87c748cc1e321f07f", - "symbol": "AMPL", - "decimals": 9, - "name": "Ampleforth", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xdb021b1b247fe2f1fa57e0a87c748cc1e321f07f.png", - "aggregators": [ - "PancakeExtended", - "1inch", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 6 - }, - "0xe9c803f48dffe50180bd5b01dc04da939e3445fc": { - "address": "0xe9c803f48dffe50180bd5b01dc04da939e3445fc", - "symbol": "VLX", - "decimals": 18, - "name": "Velas", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xe9c803f48dffe50180bd5b01dc04da939e3445fc.png", - "aggregators": [ - "PancakeCoinMarketCap", - "1inch", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 6 - }, - "0xc53708664b99df348dd27c3ac0759d2da9c40462": { - "address": "0xc53708664b99df348dd27c3ac0759d2da9c40462", - "symbol": "GUM", - "decimals": 18, - "name": "Gourmet Galaxy", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xc53708664b99df348dd27c3ac0759d2da9c40462.png", - "aggregators": [ - "PancakeExtended", - "LiFi", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 6 - }, - "0xa026ad2ceda16ca5fc28fd3c72f99e2c332c8a26": { - "address": "0xa026ad2ceda16ca5fc28fd3c72f99e2c332c8a26", - "symbol": "XCAD", - "decimals": 18, - "name": "XCAD Network", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xa026ad2ceda16ca5fc28fd3c72f99e2c332c8a26.png", - "aggregators": [ - "PancakeExtended", - "Socket", - "Rubic", - "Squid", - "Rango", - "Sonarwatch" - ], - "occurrences": 6 - }, - "0x77087ab5df23cfb52449a188e80e9096201c2097": { - "address": "0x77087ab5df23cfb52449a188e80e9096201c2097", - "symbol": "HI", - "decimals": 18, - "name": "hi Dollar", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x77087ab5df23cfb52449a188e80e9096201c2097.png", - "aggregators": [ - "PancakeCoinMarketCap", - "1inch", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 6 - }, - "0x52242cbab41e290e9e17ccc50cc437bb60020a9d": { - "address": "0x52242cbab41e290e9e17ccc50cc437bb60020a9d", - "symbol": "WNCG", - "decimals": 18, - "name": "Wrapped NCG", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x52242cbab41e290e9e17ccc50cc437bb60020a9d.png", - "aggregators": [ - "PancakeExtended", - "LiFi", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 6 - }, - "0x0864c156b3c5f69824564dec60c629ae6401bf2a": { - "address": "0x0864c156b3c5f69824564dec60c629ae6401bf2a", - "symbol": "DATA", - "decimals": 18, - "name": "Streamr", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x0864c156b3c5f69824564dec60c629ae6401bf2a.png", - "aggregators": [ - "PancakeCoinMarketCap", - "1inch", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 6 - }, - "0xd983ab71a284d6371908420d8ac6407ca943f810": { - "address": "0xd983ab71a284d6371908420d8ac6407ca943f810", - "symbol": "ULX", - "decimals": 18, - "name": "ULTRON", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xd983ab71a284d6371908420d8ac6407ca943f810.png", - "aggregators": [ - "PancakeCoinMarketCap", - "1inch", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 6 - }, - "0x5012c90f14d190607662ca8344120812aaa2639d": { - "address": "0x5012c90f14d190607662ca8344120812aaa2639d", - "symbol": "PNP", - "decimals": 18, - "name": "Penpie", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x5012c90f14d190607662ca8344120812aaa2639d.png", - "aggregators": [ - "PancakeExtended", - "LiFi", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 6 - }, - "0x14778860e937f509e651192a90589de711fb88a9": { - "address": "0x14778860e937f509e651192a90589de711fb88a9", - "symbol": "CYBER", - "decimals": 18, - "name": "CYBER", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x14778860e937f509e651192a90589de711fb88a9.png", - "aggregators": [ - "PancakeExtended", - "LiFi", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 6 - }, - "0x374ca32fd7934c5d43240e1e73fa9b2283468609": { - "address": "0x374ca32fd7934c5d43240e1e73fa9b2283468609", - "symbol": "EQB", - "decimals": 18, - "name": "Equilibria Finance", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x374ca32fd7934c5d43240e1e73fa9b2283468609.png", - "aggregators": [ - "PancakeExtended", - "Socket", - "Rubic", - "Squid", - "Rango", - "Sonarwatch" - ], - "occurrences": 6 - }, - "0x259b30c916e440fb79747cd559207ffdabbae057": { - "address": "0x259b30c916e440fb79747cd559207ffdabbae057", - "symbol": "OVN", - "decimals": 18, - "name": "Overnight Finance", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x259b30c916e440fb79747cd559207ffdabbae057.png", - "aggregators": [ - "PancakeExtended", - "LiFi", - "Rubic", - "Squid", - "Rango", - "Sonarwatch" - ], - "occurrences": 6 - }, - "0x6418c0dd099a9fda397c766304cdd918233e8847": { - "address": "0x6418c0dd099a9fda397c766304cdd918233e8847", - "symbol": "PENGU", - "decimals": 18, - "name": "Pudgy Penguins", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x6418c0dd099a9fda397c766304cdd918233e8847.png", - "aggregators": [ - "PancakeExtended", - "LiFi", - "Socket", - "Rubic", - "Squid", - "Rango" - ], - "occurrences": 6 - }, - "0x6ef2ffb38d64afe18ce782da280b300e358cfeaf": { - "address": "0x6ef2ffb38d64afe18ce782da280b300e358cfeaf", - "symbol": "ACU", - "decimals": 12, - "name": "Acurast", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x6ef2ffb38d64afe18ce782da280b300e358cfeaf.png", - "aggregators": ["CoinGecko", "Socket", "Rubic", "Squid", "Rango"], - "occurrences": 5 - }, - "0x31dba3c96481fde3cd81c2aaf51f2d8bf618c742": { - "address": "0x31dba3c96481fde3cd81c2aaf51f2d8bf618c742", - "symbol": "SOPH", - "decimals": 18, - "name": "Sophon", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x31dba3c96481fde3cd81c2aaf51f2d8bf618c742.png", - "aggregators": [ - "PancakeExtended", - "1inch", - "LiFi", - "Socket", - "Rubic", - "Sonarwatch" - ], - "occurrences": 6 - }, - "0x7ff7fa94b8b66ef313f7970d4eebd2cb3103a2c0": { - "address": "0x7ff7fa94b8b66ef313f7970d4eebd2cb3103a2c0", - "symbol": "VANA", - "decimals": 18, - "name": "VANA", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x7ff7fa94b8b66ef313f7970d4eebd2cb3103a2c0.png", - "aggregators": [ - "CoinGecko", - "1inch", - "LiFi", - "Socket", - "Rubic", - "Rango" - ], - "occurrences": 6 - }, - "0x7d814b9ed370ec0a502edc3267393bf62d891b62": { - "address": "0x7d814b9ed370ec0a502edc3267393bf62d891b62", - "symbol": "BMT", - "decimals": 18, - "name": "Bubblemaps", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x7d814b9ed370ec0a502edc3267393bf62d891b62.png", - "aggregators": [ - "PancakeExtended", - "LiFi", - "Socket", - "Rubic", - "Squid", - "Sonarwatch" - ], - "occurrences": 6 - }, - "0x52b5fb4b0f6572b8c44d0251cc224513ac5eb7e7": { - "address": "0x52b5fb4b0f6572b8c44d0251cc224513ac5eb7e7", - "symbol": "BOB", - "decimals": 18, - "name": "BOB", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x52b5fb4b0f6572b8c44d0251cc224513ac5eb7e7.png", - "aggregators": [ - "PancakeExtended", - "LiFi", - "Socket", - "Rubic", - "Squid", - "Rango" - ], - "occurrences": 6 - }, - "0xb9e1fd5a02d3a33b25a14d661414e6ed6954a721": { - "address": "0xb9e1fd5a02d3a33b25a14d661414e6ed6954a721", - "symbol": "SOON", - "decimals": 18, - "name": "SOON", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xb9e1fd5a02d3a33b25a14d661414e6ed6954a721.png", - "aggregators": [ - "PancakeExtended", - "LiFi", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 6 - }, - "0x44f161ae29361e332dea039dfa2f404e0bc5b5cc": { - "address": "0x44f161ae29361e332dea039dfa2f404e0bc5b5cc", - "symbol": "H", - "decimals": 18, - "name": "Humanity", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x44f161ae29361e332dea039dfa2f404e0bc5b5cc.png", - "aggregators": [ - "PancakeExtended", - "LiFi", - "Socket", - "Rubic", - "Squid", - "Rango" - ], - "occurrences": 6 - }, - "0x011ebe7d75e2c9d1e0bd0be0bef5c36f0a90075f": { - "address": "0x011ebe7d75e2c9d1e0bd0be0bef5c36f0a90075f", - "symbol": "STABLE", - "decimals": 18, - "name": "STABLE", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x011ebe7d75e2c9d1e0bd0be0bef5c36f0a90075f.png", - "aggregators": [ - "PancakeExtended", - "LiFi", - "Socket", - "Rubic", - "Squid", - "Rango" - ], - "occurrences": 6 - }, - "0x475cbf5919608e0c6af00e7bf87fab83bf3ef6e2": { - "address": "0x475cbf5919608e0c6af00e7bf87fab83bf3ef6e2", - "symbol": "ROBO", - "decimals": 18, - "name": "Robo Token", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x475cbf5919608e0c6af00e7bf87fab83bf3ef6e2.png", - "aggregators": [ - "PancakeExtended", - "LiFi", - "Socket", - "Rubic", - "Squid", - "Rango" - ], - "occurrences": 6 - }, - "0xac23b90a79504865d52b49b327328411a23d4db2": { - "address": "0xac23b90a79504865d52b49b327328411a23d4db2", - "symbol": "FF", - "decimals": 18, - "name": "Falcon Finance", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xac23b90a79504865d52b49b327328411a23d4db2.png", - "aggregators": [ - "PancakeExtended", - "LiFi", - "Socket", - "Rubic", - "Squid", - "Rango" - ], - "occurrences": 6 - }, - "0x97693439ea2f0ecdeb9135881e49f354656a911c": { - "address": "0x97693439ea2f0ecdeb9135881e49f354656a911c", - "symbol": "RAVE", - "decimals": 18, - "name": "RaveDAO", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x97693439ea2f0ecdeb9135881e49f354656a911c.png", - "aggregators": [ - "PancakeExtended", - "LiFi", - "Socket", - "Rubic", - "Squid", - "Rango" - ], - "occurrences": 6 - }, - "0x9dc44ae5be187eca9e2a67e33f27a4c91cea1223": { - "address": "0x9dc44ae5be187eca9e2a67e33f27a4c91cea1223", - "symbol": "POWER", - "decimals": 18, - "name": "Power", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x9dc44ae5be187eca9e2a67e33f27a4c91cea1223.png", - "aggregators": [ - "PancakeExtended", - "LiFi", - "Socket", - "Rubic", - "Squid", - "Rango" - ], - "occurrences": 6 - }, - "0x8ba9da757d1d66c58b1ae7e2ed6c04087348a82d": { - "address": "0x8ba9da757d1d66c58b1ae7e2ed6c04087348a82d", - "symbol": "SUSDD", - "decimals": 18, - "name": "Savings USDD", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x8ba9da757d1d66c58b1ae7e2ed6c04087348a82d.png", - "aggregators": [ - "Metamask", - "1inch", - "LiFi", - "Socket", - "Rubic", - "Rango" - ], - "occurrences": 6 - }, - "0xc5e6689c9c8b02be7c49912ef19e79cf24977f03": { - "address": "0xc5e6689c9c8b02be7c49912ef19e79cf24977f03", - "symbol": "ALPA", - "decimals": 18, - "name": "Alpaca City", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xc5e6689c9c8b02be7c49912ef19e79cf24977f03.png", - "aggregators": [ - "PancakeExtended", - "1inch", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 6 - }, - "0xcd40f2670cf58720b694968698a5514e924f742d": { - "address": "0xcd40f2670cf58720b694968698a5514e924f742d", - "symbol": "ODDZ", - "decimals": 18, - "name": "Oddz", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xcd40f2670cf58720b694968698a5514e924f742d.png", - "aggregators": [ - "PancakeExtended", - "LiFi", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 6 - }, - "0x3c6dad0475d3a1696b359dc04c99fd401be134da": { - "address": "0x3c6dad0475d3a1696b359dc04c99fd401be134da", - "symbol": "SAITO", - "decimals": 18, - "name": "Saito", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x3c6dad0475d3a1696b359dc04c99fd401be134da.png", - "aggregators": [ - "PancakeCoinMarketCap", - "1inch", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 6 - }, - "0xbf05279f9bf1ce69bbfed670813b7e431142afa4": { - "address": "0xbf05279f9bf1ce69bbfed670813b7e431142afa4", - "symbol": "MM", - "decimals": 18, - "name": "Million", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xbf05279f9bf1ce69bbfed670813b7e431142afa4.png", - "aggregators": [ - "PancakeCoinMarketCap", - "Socket", - "Rubic", - "Rango", - "Sonarwatch", - "SushiSwap" - ], - "occurrences": 6 - }, - "0x66109633715d2110dda791e64a7b2afadb517abb": { - "address": "0x66109633715d2110dda791e64a7b2afadb517abb", - "symbol": "GAME", - "decimals": 5, - "name": "Gamestarter", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x66109633715d2110dda791e64a7b2afadb517abb.png", - "aggregators": [ - "PancakeCoinMarketCap", - "1inch", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 6 - }, - "0xe9c64384deb0c2bf06d991a8d708c77eb545e3d5": { - "address": "0xe9c64384deb0c2bf06d991a8d708c77eb545e3d5", - "symbol": "RDT", - "decimals": 18, - "name": "Ridotto", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xe9c64384deb0c2bf06d991a8d708c77eb545e3d5.png", - "aggregators": [ - "PancakeCoinMarketCap", - "1inch", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 6 - }, - "0x45e51bc23d592eb2dba86da3985299f7895d66ba": { - "address": "0x45e51bc23d592eb2dba86da3985299f7895d66ba", - "symbol": "USDD", - "decimals": 18, - "name": "Decentralized USD", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x45e51bc23d592eb2dba86da3985299f7895d66ba.png", - "aggregators": [ - "Metamask", - "1inch", - "LiFi", - "Socket", - "Rubic", - "Rango" - ], - "occurrences": 6 - }, - "0x4268b8f0b87b6eae5d897996e6b845ddbd99adf3": { - "address": "0x4268b8f0b87b6eae5d897996e6b845ddbd99adf3", - "symbol": "AXLUSDC", - "decimals": 6, - "name": "Axelar Wrapped USDC", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x4268b8f0b87b6eae5d897996e6b845ddbd99adf3.png", - "aggregators": [ - "PancakeExtended", - "LiFi", - "Rubic", - "Squid", - "Sonarwatch", - "SushiSwap" - ], - "occurrences": 6 - }, - "0x8d279274789ccec8af94a430a5996eaace9609a9": { - "address": "0x8d279274789ccec8af94a430a5996eaace9609a9", - "symbol": "INSP", - "decimals": 18, - "name": "Inspect", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x8d279274789ccec8af94a430a5996eaace9609a9.png", - "aggregators": [ - "PancakeExtended", - "LiFi", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 6 - }, - "0x2598c30330d5771ae9f983979209486ae26de875": { - "address": "0x2598c30330d5771ae9f983979209486ae26de875", - "symbol": "AI", - "decimals": 18, - "name": "Any Inu", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x2598c30330d5771ae9f983979209486ae26de875.png", - "aggregators": [ - "PancakeExtended", - "Socket", - "Rubic", - "Squid", - "Rango", - "Sonarwatch" - ], - "occurrences": 6 - }, - "0x491e6de43b55c8eae702edc263e32339da42f58c": { - "address": "0x491e6de43b55c8eae702edc263e32339da42f58c", - "symbol": "ESE", - "decimals": 18, - "name": "Eesee", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x491e6de43b55c8eae702edc263e32339da42f58c.png", - "aggregators": [ - "CoinGecko", - "Socket", - "Rubic", - "Squid", - "Rango", - "Sonarwatch" - ], - "occurrences": 6 - }, - "0x46777c76dbbe40fabb2aab99e33ce20058e76c59": { - "address": "0x46777c76dbbe40fabb2aab99e33ce20058e76c59", - "symbol": "L3", - "decimals": 18, - "name": "Layer3", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x46777c76dbbe40fabb2aab99e33ce20058e76c59.png", - "aggregators": [ - "CoinGecko", - "LiFi", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 6 - }, - "0x79bbf4508b1391af3a0f4b30bb5fc4aa9ab0e07c": { - "address": "0x79bbf4508b1391af3a0f4b30bb5fc4aa9ab0e07c", - "symbol": "ANON", - "decimals": 18, - "name": "Hey Anon", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x79bbf4508b1391af3a0f4b30bb5fc4aa9ab0e07c.png", - "aggregators": [ - "PancakeExtended", - "LiFi", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 6 - }, - "0xc65d8d96cdddb31328186efa113a460b0af9ec63": { - "address": "0xc65d8d96cdddb31328186efa113a460b0af9ec63", - "symbol": "PELL", - "decimals": 18, - "name": "Pell Network Token", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xc65d8d96cdddb31328186efa113a460b0af9ec63.png", - "aggregators": [ - "CoinGecko", - "Socket", - "Rubic", - "Squid", - "Rango", - "Sonarwatch" - ], - "occurrences": 6 - }, - "0xfdffb411c4a70aa7c95d5c981a6fb4da867e1111": { - "address": "0xfdffb411c4a70aa7c95d5c981a6fb4da867e1111", - "symbol": "SAHARA", - "decimals": 18, - "name": "Sahara AI", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xfdffb411c4a70aa7c95d5c981a6fb4da867e1111.png", - "aggregators": [ - "PancakeExtended", - "LiFi", - "Socket", - "Rubic", - "Squid", - "Rango" - ], - "occurrences": 6 - }, - "0xda7ad9dea9397cffddae2f8a052b82f1484252b3": { - "address": "0xda7ad9dea9397cffddae2f8a052b82f1484252b3", - "symbol": "RIVER", - "decimals": 18, - "name": "River", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xda7ad9dea9397cffddae2f8a052b82f1484252b3.png", - "aggregators": [ - "PancakeExtended", - "LiFi", - "Socket", - "Rubic", - "Squid", - "Rango" - ], - "occurrences": 6 - }, - "0x405fbc9004d857903bfd6b3357792d71a50726b0": { - "address": "0x405fbc9004d857903bfd6b3357792d71a50726b0", - "symbol": "XPL", - "decimals": 18, - "name": "Plasma", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x405fbc9004d857903bfd6b3357792d71a50726b0.png", - "aggregators": [ - "PancakeExtended", - "1inch", - "LiFi", - "Rubic", - "Squid", - "Rango" - ], - "occurrences": 6 - }, - "0x7f70642d88cf1c4a3a7abb072b53b929b653eda5": { - "address": "0x7f70642d88cf1c4a3a7abb072b53b929b653eda5", - "symbol": "YFII", - "decimals": 18, - "name": "BNB pegged YFII.finance Token", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x7f70642d88cf1c4a3a7abb072b53b929b653eda5.png", - "aggregators": [ - "PancakeExtended", - "TrustWallet", - "Socket", - "Rubic", - "Rango", - "SushiSwap" - ], - "occurrences": 6 - }, - "0x61dc650c10ec3c758d251cd2d1ab45af1a43e941": { - "address": "0x61dc650c10ec3c758d251cd2d1ab45af1a43e941", - "symbol": "RPG", - "decimals": 18, - "name": "Rangers Protocol Gas", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x61dc650c10ec3c758d251cd2d1ab45af1a43e941.png", - "aggregators": [ - "PancakeExtended", - "LiFi", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 6 - }, - "0x256d1fce1b1221e8398f65f9b36033ce50b2d497": { - "address": "0x256d1fce1b1221e8398f65f9b36033ce50b2d497", - "symbol": "WALV", - "decimals": 18, - "name": "Alvey Chain", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x256d1fce1b1221e8398f65f9b36033ce50b2d497.png", - "aggregators": [ - "PancakeCoinMarketCap", - "1inch", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 6 - }, - "0x0288d3e353fe2299f11ea2c2e1696b4a648ecc07": { - "address": "0x0288d3e353fe2299f11ea2c2e1696b4a648ecc07", - "symbol": "ZEFI", - "decimals": 18, - "name": "ZCore Finance", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x0288d3e353fe2299f11ea2c2e1696b4a648ecc07.png", - "aggregators": [ - "PancakeCoinMarketCap", - "1inch", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 6 - }, - "0xbc7d6b50616989655afd682fb42743507003056d": { - "address": "0xbc7d6b50616989655afd682fb42743507003056d", - "symbol": "ACH", - "decimals": 8, - "name": "Alchemy Pay", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xbc7d6b50616989655afd682fb42743507003056d.png", - "aggregators": [ - "PancakeExtended", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x09e889bb4d5b474f561db0491c38702f367a4e4d": { - "address": "0x09e889bb4d5b474f561db0491c38702f367a4e4d", - "symbol": "CLV", - "decimals": 18, - "name": "Clover Finance", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x09e889bb4d5b474f561db0491c38702f367a4e4d.png", - "aggregators": [ - "PancakeCoinMarketCap", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x99956d38059cf7beda96ec91aa7bb2477e0901dd": { - "address": "0x99956d38059cf7beda96ec91aa7bb2477e0901dd", - "symbol": "DIA", - "decimals": 18, - "name": "DIA", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x99956d38059cf7beda96ec91aa7bb2477e0901dd.png", - "aggregators": [ - "PancakeCoinMarketCap", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x949d48eca67b17269629c7194f4b727d4ef9e5d6": { - "address": "0x949d48eca67b17269629c7194f4b727d4ef9e5d6", - "symbol": "MC", - "decimals": 18, - "name": "Merit Circle", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x949d48eca67b17269629c7194f4b727d4ef9e5d6.png", - "aggregators": [ - "PancakeCoinMarketCap", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x7a9f28eb62c791422aa23ceae1da9c847cbec9b0": { - "address": "0x7a9f28eb62c791422aa23ceae1da9c847cbec9b0", - "symbol": "WATCH", - "decimals": 18, - "name": "Yieldwatch", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x7a9f28eb62c791422aa23ceae1da9c847cbec9b0.png", - "aggregators": [ - "PancakeExtended", - "1inch", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x55671114d774ee99d653d6c12460c780a67f1d18": { - "address": "0x55671114d774ee99d653d6c12460c780a67f1d18", - "symbol": "PACOCA", - "decimals": 18, - "name": "Pacoca", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x55671114d774ee99d653d6c12460c780a67f1d18.png", - "aggregators": [ - "PancakeCoinMarketCap", - "1inch", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x755f34709e369d37c6fa52808ae84a32007d1155": { - "address": "0x755f34709e369d37c6fa52808ae84a32007d1155", - "symbol": "NABOX", - "decimals": 18, - "name": "Nabox", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x755f34709e369d37c6fa52808ae84a32007d1155.png", - "aggregators": [ - "PancakeExtended", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0xcaf5191fc480f43e4df80106c7695eca56e48b18": { - "address": "0xcaf5191fc480f43e4df80106c7695eca56e48b18", - "symbol": "DEP", - "decimals": 18, - "name": "DEAPCOIN", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xcaf5191fc480f43e4df80106c7695eca56e48b18.png", - "aggregators": [ - "PancakeCoinMarketCap", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0xa719b8ab7ea7af0ddb4358719a34631bb79d15dc": { - "address": "0xa719b8ab7ea7af0ddb4358719a34631bb79d15dc", - "symbol": "FRM", - "decimals": 18, - "name": "Ferrum Network", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xa719b8ab7ea7af0ddb4358719a34631bb79d15dc.png", - "aggregators": [ - "PancakeCoinMarketCap", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0xd3b71117e6c1558c1553305b44988cd944e97300": { - "address": "0xd3b71117e6c1558c1553305b44988cd944e97300", - "symbol": "YEL", - "decimals": 18, - "name": "YEL Token", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xd3b71117e6c1558c1553305b44988cd944e97300.png", - "aggregators": [ - "PancakeExtended", - "1inch", - "Socket", - "Rubic", - "Rango" - ], - "occurrences": 5 - }, - "0xd9025e25bb6cf39f8c926a704039d2dd51088063": { - "address": "0xd9025e25bb6cf39f8c926a704039d2dd51088063", - "symbol": "CYT", - "decimals": 18, - "name": "Coinary", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xd9025e25bb6cf39f8c926a704039d2dd51088063.png", - "aggregators": [ - "PancakeCoinMarketCap", - "Rubic", - "Squid", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x5774b2fc3e91af89f89141eacf76545e74265982": { - "address": "0x5774b2fc3e91af89f89141eacf76545e74265982", - "symbol": "NFTY", - "decimals": 18, - "name": "NFTY", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x5774b2fc3e91af89f89141eacf76545e74265982.png", - "aggregators": [ - "PancakeCoinMarketCap", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x016cf83732f1468150d87dcc5bdf67730b3934d3": { - "address": "0x016cf83732f1468150d87dcc5bdf67730b3934d3", - "symbol": "AIRT", - "decimals": 18, - "name": "AirNFT Token", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x016cf83732f1468150d87dcc5bdf67730b3934d3.png", - "aggregators": [ - "PancakeCoinMarketCap", - "1inch", - "TrustWallet", - "Rubic", - "Rango" - ], - "occurrences": 5 - }, - "0x6b1c8765c7eff0b60706b0ae489eb9bb9667465a": { - "address": "0x6b1c8765c7eff0b60706b0ae489eb9bb9667465a", - "symbol": "SATA", - "decimals": 18, - "name": "Signata", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x6b1c8765c7eff0b60706b0ae489eb9bb9667465a.png", - "aggregators": [ - "PancakeCoinMarketCap", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x7bc75e291e656e8658d66be1cc8154a3769a35dd": { - "address": "0x7bc75e291e656e8658d66be1cc8154a3769a35dd", - "symbol": "LIME", - "decimals": 18, - "name": "iMe Lab", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x7bc75e291e656e8658d66be1cc8154a3769a35dd.png", - "aggregators": [ - "PancakeCoinMarketCap", - "1inch", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0xdbf8265b1d5244a13424f13977723acf5395eab2": { - "address": "0xdbf8265b1d5244a13424f13977723acf5395eab2", - "symbol": "WGR", - "decimals": 18, - "name": "Wagerr", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xdbf8265b1d5244a13424f13977723acf5395eab2.png", - "aggregators": [ - "PancakeCoinMarketCap", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x6679eb24f59dfe111864aec72b443d1da666b360": { - "address": "0x6679eb24f59dfe111864aec72b443d1da666b360", - "symbol": "ARV", - "decimals": 8, - "name": "ARIVA", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x6679eb24f59dfe111864aec72b443d1da666b360.png", - "aggregators": [ - "PancakeExtended", - "1inch", - "TrustWallet", - "Rubic", - "Rango" - ], - "occurrences": 5 - }, - "0x7837fd820ba38f95c54d6dac4ca3751b81511357": { - "address": "0x7837fd820ba38f95c54d6dac4ca3751b81511357", - "symbol": "DOSE", - "decimals": 18, - "name": "DOSE", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x7837fd820ba38f95c54d6dac4ca3751b81511357.png", - "aggregators": [ - "PancakeCoinMarketCap", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0xf7722aa0714096f1fb5ef83e6041cebb4d58a08e": { - "address": "0xf7722aa0714096f1fb5ef83e6041cebb4d58a08e", - "symbol": "RUBY", - "decimals": 12, - "name": "Ruby Play Network", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xf7722aa0714096f1fb5ef83e6041cebb4d58a08e.png", - "aggregators": [ - "PancakeCoinMarketCap", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x45f7967926e95fd161e56ed66b663c9114c5226f": { - "address": "0x45f7967926e95fd161e56ed66b663c9114c5226f", - "symbol": "TOKO", - "decimals": 18, - "name": "Tokoin", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x45f7967926e95fd161e56ed66b663c9114c5226f.png", - "aggregators": [ - "PancakeCoinMarketCap", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x2235e79086dd23135119366da45851c741874e5b": { - "address": "0x2235e79086dd23135119366da45851c741874e5b", - "symbol": "CREDI", - "decimals": 18, - "name": "Credefi", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x2235e79086dd23135119366da45851c741874e5b.png", - "aggregators": [ - "PancakeCoinMarketCap", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0xa41f142b6eb2b164f8164cae0716892ce02f311f": { - "address": "0xa41f142b6eb2b164f8164cae0716892ce02f311f", - "symbol": "AVG", - "decimals": 18, - "name": "Avocado DAO", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xa41f142b6eb2b164f8164cae0716892ce02f311f.png", - "aggregators": [ - "PancakeCoinMarketCap", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x631c2f0edabac799f07550aee4ff0bf7fd35212b": { - "address": "0x631c2f0edabac799f07550aee4ff0bf7fd35212b", - "symbol": "PLT", - "decimals": 18, - "name": "Poollotto.finance", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x631c2f0edabac799f07550aee4ff0bf7fd35212b.png", - "aggregators": [ - "PancakeCoinMarketCap", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x5f113f7ef20ff111fd130e83d8e97fd1e0e2518f": { - "address": "0x5f113f7ef20ff111fd130e83d8e97fd1e0e2518f", - "symbol": "AIT", - "decimals": 18, - "name": "AiMalls", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x5f113f7ef20ff111fd130e83d8e97fd1e0e2518f.png", - "aggregators": [ - "PancakeCoinMarketCap", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0xa89e2871a850e0e6fd8f0018ec1fc62fa75440d4": { - "address": "0xa89e2871a850e0e6fd8f0018ec1fc62fa75440d4", - "symbol": "RTF", - "decimals": 18, - "name": "Ready to Fight", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xa89e2871a850e0e6fd8f0018ec1fc62fa75440d4.png", - "aggregators": [ - "PancakeCoinMarketCap", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x2b72867c32cf673f7b02d208b26889fed353b1f8": { - "address": "0x2b72867c32cf673f7b02d208b26889fed353b1f8", - "symbol": "SQR", - "decimals": 8, - "name": "Magic Square", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x2b72867c32cf673f7b02d208b26889fed353b1f8.png", - "aggregators": [ - "PancakeCoinMarketCap", - "1inch", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0xab2ed911bdbea001fd3b29adbc35d8a76e68aae4": { - "address": "0xab2ed911bdbea001fd3b29adbc35d8a76e68aae4", - "symbol": "ELDA", - "decimals": 18, - "name": "Eldarune", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xab2ed911bdbea001fd3b29adbc35d8a76e68aae4.png", - "aggregators": [ - "PancakeCoinMarketCap", - "Rubic", - "Squid", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x1d229b958d5ddfca92146585a8711aecbe56f095": { - "address": "0x1d229b958d5ddfca92146585a8711aecbe56f095", - "symbol": "ZOO", - "decimals": 18, - "name": "ZooToken", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x1d229b958d5ddfca92146585a8711aecbe56f095.png", - "aggregators": [ - "PancakeExtended", - "LiFi", - "Socket", - "Rubic", - "Rango" - ], - "occurrences": 5 - }, - "0x1d3437e570e93581bd94b2fd8fbf202d4a65654a": { - "address": "0x1d3437e570e93581bd94b2fd8fbf202d4a65654a", - "symbol": "NBT", - "decimals": 18, - "name": "NanoByte", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x1d3437e570e93581bd94b2fd8fbf202d4a65654a.png", - "aggregators": [ - "PancakeExtended", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x6aa217312960a21adbde1478dc8cbcf828110a67": { - "address": "0x6aa217312960a21adbde1478dc8cbcf828110a67", - "symbol": "SPIN", - "decimals": 18, - "name": "Spintop", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x6aa217312960a21adbde1478dc8cbcf828110a67.png", - "aggregators": [ - "PancakeExtended", - "Rubic", - "Squid", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x872952d3c1caf944852c5adda65633f1ef218a26": { - "address": "0x872952d3c1caf944852c5adda65633f1ef218a26", - "symbol": "LQDX", - "decimals": 18, - "name": "Reddex", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x872952d3c1caf944852c5adda65633f1ef218a26.png", - "aggregators": [ - "PancakeCoinMarketCap", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x475bfaa1848591ae0e6ab69600f48d828f61a80e": { - "address": "0x475bfaa1848591ae0e6ab69600f48d828f61a80e", - "symbol": "DOME", - "decimals": 18, - "name": "Everdome", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x475bfaa1848591ae0e6ab69600f48d828f61a80e.png", - "aggregators": [ - "PancakeCoinMarketCap", - "1inch", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x8f0fb159380176d324542b3a7933f0c2fd0c2bbf": { - "address": "0x8f0fb159380176d324542b3a7933f0c2fd0c2bbf", - "symbol": "TFT", - "decimals": 7, - "name": "ThreeFold", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x8f0fb159380176d324542b3a7933f0c2fd0c2bbf.png", - "aggregators": [ - "PancakeCoinMarketCap", - "1inch", - "Socket", - "Rubic", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0xce7de646e7208a4ef112cb6ed5038fa6cc6b12e3": { - "address": "0xce7de646e7208a4ef112cb6ed5038fa6cc6b12e3", - "symbol": "TRX", - "decimals": 6, - "name": "TRON (BSC)", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xce7de646e7208a4ef112cb6ed5038fa6cc6b12e3.png", - "aggregators": [ - "PancakeExtended", - "LiFi", - "Socket", - "Rubic", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x9ab70e92319f0b9127df78868fd3655fb9f1e322": { - "address": "0x9ab70e92319f0b9127df78868fd3655fb9f1e322", - "symbol": "WWY", - "decimals": 18, - "name": "WeWay", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x9ab70e92319f0b9127df78868fd3655fb9f1e322.png", - "aggregators": [ - "PancakeCoinMarketCap", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x1311b352467d2b5c296881badea82850bcd8f886": { - "address": "0x1311b352467d2b5c296881badea82850bcd8f886", - "symbol": "TOOLS", - "decimals": 18, - "name": "BSC TOOLS", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x1311b352467d2b5c296881badea82850bcd8f886.png", - "aggregators": [ - "PancakeCoinMarketCap", - "LiFi", - "Socket", - "Rubic", - "Rango" - ], - "occurrences": 5 - }, - "0x40c8225329bd3e28a043b029e0d07a5344d2c27c": { - "address": "0x40c8225329bd3e28a043b029e0d07a5344d2c27c", - "symbol": "AOG", - "decimals": 18, - "name": "AgeOfGods", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x40c8225329bd3e28a043b029e0d07a5344d2c27c.png", - "aggregators": [ - "PancakeExtended", - "LiFi", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x74926b3d118a63f6958922d3dc05eb9c6e6e00c6": { - "address": "0x74926b3d118a63f6958922d3dc05eb9c6e6e00c6", - "symbol": "DOGGY", - "decimals": 18, - "name": "DOGGY", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x74926b3d118a63f6958922d3dc05eb9c6e6e00c6.png", - "aggregators": [ - "PancakeCoinMarketCap", - "1inch", - "Socket", - "Rubic", - "Rango" - ], - "occurrences": 5 - }, - "0xc2e9d07f66a89c44062459a47a0d2dc038e4fb16": { - "address": "0xc2e9d07f66a89c44062459a47a0d2dc038e4fb16", - "symbol": "STKBNB", - "decimals": 18, - "name": "Staked BNB", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xc2e9d07f66a89c44062459a47a0d2dc038e4fb16.png", - "aggregators": [ - "PancakeExtended", - "LiFi", - "Rubic", - "Squid", - "Rango" - ], - "occurrences": 5 - }, - "0x31471e0791fcdbe82fbf4c44943255e923f1b794": { - "address": "0x31471e0791fcdbe82fbf4c44943255e923f1b794", - "symbol": "PVU", - "decimals": 18, - "name": "Plant vs Undead", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x31471e0791fcdbe82fbf4c44943255e923f1b794.png", - "aggregators": [ - "PancakeTop100", - "LiFi", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0xcf1b55d79e824da0ae0652f96c66fe33263d743f": { - "address": "0xcf1b55d79e824da0ae0652f96c66fe33263d743f", - "symbol": "MIX", - "decimals": 18, - "name": "MixMarvel", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xcf1b55d79e824da0ae0652f96c66fe33263d743f.png", - "aggregators": [ - "PancakeExtended", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0xeb953eda0dc65e3246f43dc8fa13f35623bdd5ed": { - "address": "0xeb953eda0dc65e3246f43dc8fa13f35623bdd5ed", - "symbol": "$RAINI", - "decimals": 18, - "name": "Raini", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xeb953eda0dc65e3246f43dc8fa13f35623bdd5ed.png", - "aggregators": [ - "PancakeCoinMarketCap", - "1inch", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x758d08864fb6cce3062667225ca10b8f00496cc2": { - "address": "0x758d08864fb6cce3062667225ca10b8f00496cc2", - "symbol": "NAOS", - "decimals": 18, - "name": "NAOS Finance", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x758d08864fb6cce3062667225ca10b8f00496cc2.png", - "aggregators": [ - "PancakeExtended", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0xed28a457a5a76596ac48d87c0f577020f6ea1c4c": { - "address": "0xed28a457a5a76596ac48d87c0f577020f6ea1c4c", - "symbol": "PBTC", - "decimals": 18, - "name": "pTokens BTC", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xed28a457a5a76596ac48d87c0f577020f6ea1c4c.png", - "aggregators": [ - "PancakeExtended", - "LiFi", - "Socket", - "Rubic", - "Rango" - ], - "occurrences": 5 - }, - "0x5fe80d2cd054645b9419657d3d10d26391780a7b": { - "address": "0x5fe80d2cd054645b9419657d3d10d26391780a7b", - "symbol": "MCB", - "decimals": 18, - "name": "MCDEX", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x5fe80d2cd054645b9419657d3d10d26391780a7b.png", - "aggregators": [ - "PancakeExtended", - "LiFi", - "Socket", - "Rubic", - "Rango" - ], - "occurrences": 5 - }, - "0x91d6d6af7635b7b23a8ced9508117965180e2362": { - "address": "0x91d6d6af7635b7b23a8ced9508117965180e2362", - "symbol": "USH", - "decimals": 18, - "name": "unshETHing_Token", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x91d6d6af7635b7b23a8ced9508117965180e2362.png", - "aggregators": [ - "PancakeExtended", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0xe20b9e246db5a0d21bf9209e4858bc9a3ff7a034": { - "address": "0xe20b9e246db5a0d21bf9209e4858bc9a3ff7a034", - "symbol": "WBAN", - "decimals": 18, - "name": "Wrapped Banano", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xe20b9e246db5a0d21bf9209e4858bc9a3ff7a034.png", - "aggregators": [ - "PancakeCoinMarketCap", - "1inch", - "Socket", - "Rubic", - "Rango" - ], - "occurrences": 5 - }, - "0x944824290cc12f31ae18ef51216a223ba4063092": { - "address": "0x944824290cc12f31ae18ef51216a223ba4063092", - "symbol": "MASA", - "decimals": 18, - "name": "Masa", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x944824290cc12f31ae18ef51216a223ba4063092.png", - "aggregators": [ - "PancakeExtended", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0xdaacb0ab6fb34d24e8a67bfa14bf4d95d4c7af92": { - "address": "0xdaacb0ab6fb34d24e8a67bfa14bf4d95d4c7af92", - "symbol": "PNT", - "decimals": 18, - "name": "pNetwork", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xdaacb0ab6fb34d24e8a67bfa14bf4d95d4c7af92.png", - "aggregators": [ - "PancakeExtended", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x6e88056e8376ae7709496ba64d37fa2f8015ce3e": { - "address": "0x6e88056e8376ae7709496ba64d37fa2f8015ce3e", - "symbol": "DEXE", - "decimals": 18, - "name": "DeXe", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x6e88056e8376ae7709496ba64d37fa2f8015ce3e.png", - "aggregators": [ - "PancakeExtended", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0xe60eaf5a997dfae83739e035b005a33afdcc6df5": { - "address": "0xe60eaf5a997dfae83739e035b005a33afdcc6df5", - "symbol": "DERI", - "decimals": 18, - "name": "Deri Protocol", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xe60eaf5a997dfae83739e035b005a33afdcc6df5.png", - "aggregators": [ - "PancakeExtended", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x9617857e191354dbea0b714d78bc59e57c411087": { - "address": "0x9617857e191354dbea0b714d78bc59e57c411087", - "symbol": "LMT", - "decimals": 18, - "name": "Lympo Market", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x9617857e191354dbea0b714d78bc59e57c411087.png", - "aggregators": [ - "PancakeExtended", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0xe80772eaf6e2e18b651f160bc9158b2a5cafca65": { - "address": "0xe80772eaf6e2e18b651f160bc9158b2a5cafca65", - "symbol": "USD+", - "decimals": 6, - "name": "Overnight.fi USD+", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xe80772eaf6e2e18b651f160bc9158b2a5cafca65.png", - "aggregators": [ - "PancakeCoinMarketCap", - "LiFi", - "Squid", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0xe56842ed550ff2794f010738554db45e60730371": { - "address": "0xe56842ed550ff2794f010738554db45e60730371", - "symbol": "BIN", - "decimals": 18, - "name": "Binemon", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xe56842ed550ff2794f010738554db45e60730371.png", - "aggregators": ["PancakeTop100", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0x9096b4309224d751fcb43d7eb178dcffc122ad15": { - "address": "0x9096b4309224d751fcb43d7eb178dcffc122ad15", - "symbol": "LGX", - "decimals": 18, - "name": "Legion Network", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x9096b4309224d751fcb43d7eb178dcffc122ad15.png", - "aggregators": [ - "PancakeCoinMarketCap", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 4 - }, - "0x2c717059b366714d267039af8f59125cadce6d8c": { - "address": "0x2c717059b366714d267039af8f59125cadce6d8c", - "symbol": "MHUNT", - "decimals": 18, - "name": "MetaShooter", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x2c717059b366714d267039af8f59125cadce6d8c.png", - "aggregators": ["PancakeExtended", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0xb465f3cb6aba6ee375e12918387de1eac2301b05": { - "address": "0xb465f3cb6aba6ee375e12918387de1eac2301b05", - "symbol": "TRIVIA", - "decimals": 3, - "name": "Trivians", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xb465f3cb6aba6ee375e12918387de1eac2301b05.png", - "aggregators": ["PancakeExtended", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0x6e4a971b81ca58045a2aa982eaa3d50c4ac38f42": { - "address": "0x6e4a971b81ca58045a2aa982eaa3d50c4ac38f42", - "symbol": "BRG", - "decimals": 18, - "name": "Bridge", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x6e4a971b81ca58045a2aa982eaa3d50c4ac38f42.png", - "aggregators": ["PancakeCoinMarketCap", "Socket", "Rubic", "Rango"], - "occurrences": 4 - }, - "0x1bdaf9ddd7658d8049391971d1fd48c0484f66ec": { - "address": "0x1bdaf9ddd7658d8049391971d1fd48c0484f66ec", - "symbol": "CGV", - "decimals": 6, - "name": "Cogito Governance Token", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x1bdaf9ddd7658d8049391971d1fd48c0484f66ec.png", - "aggregators": ["PancakeCoinMarketCap", "Socket", "Rubic", "Rango"], - "occurrences": 4 - }, - "0x2d060ef4d6bf7f9e5edde373ab735513c0e4f944": { - "address": "0x2d060ef4d6bf7f9e5edde373ab735513c0e4f944", - "symbol": "AITECH", - "decimals": 18, - "name": "Solidus Ai Tech", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x2d060ef4d6bf7f9e5edde373ab735513c0e4f944.png", - "aggregators": ["PancakeExtended", "Rubic", "Squid", "Sonarwatch"], - "occurrences": 4 - }, - "0x555296de6a86e72752e5c5dc091fe49713aa145c": { - "address": "0x555296de6a86e72752e5c5dc091fe49713aa145c", - "symbol": "GRAPE", - "decimals": 18, - "name": "Grape Coin", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x555296de6a86e72752e5c5dc091fe49713aa145c.png", - "aggregators": ["PancakeExtended", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0x003d87d02a2a01e9e8a20f507c83e15dd83a33d1": { - "address": "0x003d87d02a2a01e9e8a20f507c83e15dd83a33d1", - "symbol": "GTAI", - "decimals": 18, - "name": "GT Protocol", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x003d87d02a2a01e9e8a20f507c83e15dd83a33d1.png", - "aggregators": ["PancakeExtended", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0x0669538fcdef9a73cd37938eba8c79e652bb93aa": { - "address": "0x0669538fcdef9a73cd37938eba8c79e652bb93aa", - "symbol": "SCPT", - "decimals": 18, - "name": "Script Network", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x0669538fcdef9a73cd37938eba8c79e652bb93aa.png", - "aggregators": ["PancakeExtended", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0xfea292e5ea4510881bdb840e3cec63abd43f936f": { - "address": "0xfea292e5ea4510881bdb840e3cec63abd43f936f", - "symbol": "COPI", - "decimals": 18, - "name": "Cornucopias [via ChainPort.io]", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xfea292e5ea4510881bdb840e3cec63abd43f936f.png", - "aggregators": ["PancakeCoinMarketCap", "Socket", "Rubic", "Rango"], - "occurrences": 4 - }, - "0xbc7a566b85ef73f935e640a06b5a8b031cd975df": { - "address": "0xbc7a566b85ef73f935e640a06b5a8b031cd975df", - "symbol": "BLOCK", - "decimals": 6, - "name": "Blockasset", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xbc7a566b85ef73f935e640a06b5a8b031cd975df.png", - "aggregators": ["PancakeCoinMarketCap", "Socket", "Rubic", "Rango"], - "occurrences": 4 - }, - "0x524df384bffb18c0c8f3f43d012011f8f9795579": { - "address": "0x524df384bffb18c0c8f3f43d012011f8f9795579", - "symbol": "YAY", - "decimals": 18, - "name": "YAY Network", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x524df384bffb18c0c8f3f43d012011f8f9795579.png", - "aggregators": ["PancakeTop100", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0x426c72701833fddbdfc06c944737c6031645c708": { - "address": "0x426c72701833fddbdfc06c944737c6031645c708", - "symbol": "FINA", - "decimals": 18, - "name": "Defina Finance", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x426c72701833fddbdfc06c944737c6031645c708.png", - "aggregators": ["PancakeExtended", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0xf95a5532d67c944dfa7eddd2f8c358fe0dc7fac2": { - "address": "0xf95a5532d67c944dfa7eddd2f8c358fe0dc7fac2", - "symbol": "MBX", - "decimals": 18, - "name": "Marblex", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xf95a5532d67c944dfa7eddd2f8c358fe0dc7fac2.png", - "aggregators": ["PancakeExtended", "Socket", "Rubic", "Squid"], - "occurrences": 4 - }, - "0x7859b01bbf675d67da8cd128a50d155cd881b576": { - "address": "0x7859b01bbf675d67da8cd128a50d155cd881b576", - "symbol": "XMS", - "decimals": 18, - "name": "Mars Ecosystem", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x7859b01bbf675d67da8cd128a50d155cd881b576.png", - "aggregators": ["PancakeExtended", "LiFi", "Rubic", "Rango"], - "occurrences": 4 - }, - "0xc0eff7749b125444953ef89682201fb8c6a917cd": { - "address": "0xc0eff7749b125444953ef89682201fb8c6a917cd", - "symbol": "HZN", - "decimals": 18, - "name": "Horizon Protocol", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xc0eff7749b125444953ef89682201fb8c6a917cd.png", - "aggregators": ["PancakeExtended", "Rubic", "Squid", "Rango"], - "occurrences": 4 - }, - "0xfd5840cd36d94d7229439859c0112a4185bc0255": { - "address": "0xfd5840cd36d94d7229439859c0112a4185bc0255", - "symbol": "VUSDT", - "decimals": 8, - "name": "Venus USDT", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xfd5840cd36d94d7229439859c0112a4185bc0255.png", - "aggregators": ["PancakeCoinMarketCap", "LiFi", "Rubic", "Rango"], - "occurrences": 4 - }, - "0x1bf7aedec439d6bfe38f8f9b20cf3dc99e3571c4": { - "address": "0x1bf7aedec439d6bfe38f8f9b20cf3dc99e3571c4", - "symbol": "TRONPAD", - "decimals": 18, - "name": "TRONPAD", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x1bf7aedec439d6bfe38f8f9b20cf3dc99e3571c4.png", - "aggregators": ["PancakeTop100", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0x394bba8f309f3462b31238b3fd04b83f71a98848": { - "address": "0x394bba8f309f3462b31238b3fd04b83f71a98848", - "symbol": "POCO", - "decimals": 18, - "name": "Pocoland", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x394bba8f309f3462b31238b3fd04b83f71a98848.png", - "aggregators": ["PancakeTop100", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0x95ee03e1e2c5c4877f9a298f1c0d6c98698fab7b": { - "address": "0x95ee03e1e2c5c4877f9a298f1c0d6c98698fab7b", - "symbol": "DUET", - "decimals": 18, - "name": "Duet Protocol", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x95ee03e1e2c5c4877f9a298f1c0d6c98698fab7b.png", - "aggregators": ["PancakeExtended", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0x4c97c901b5147f8c1c7ce3c5cf3eb83b44f244fe": { - "address": "0x4c97c901b5147f8c1c7ce3c5cf3eb83b44f244fe", - "symbol": "MND", - "decimals": 18, - "name": "Mound", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x4c97c901b5147f8c1c7ce3c5cf3eb83b44f244fe.png", - "aggregators": ["PancakeTop100", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0xbd2949f67dcdc549c6ebe98696449fa79d988a9f": { - "address": "0xbd2949f67dcdc549c6ebe98696449fa79d988a9f", - "symbol": "MTRG", - "decimals": 18, - "name": "Meter Governance", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xbd2949f67dcdc549c6ebe98696449fa79d988a9f.png", - "aggregators": ["PancakeExtended", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0x1ffd0b47127fdd4097e54521c9e2c7f0d66aafc5": { - "address": "0x1ffd0b47127fdd4097e54521c9e2c7f0d66aafc5", - "symbol": "TXL", - "decimals": 18, - "name": "Tixl", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x1ffd0b47127fdd4097e54521c9e2c7f0d66aafc5.png", - "aggregators": ["PancakeExtended", "Socket", "Rubic", "Rango"], - "occurrences": 4 - }, - "0x758fb037a375f17c7e195cc634d77da4f554255b": { - "address": "0x758fb037a375f17c7e195cc634d77da4f554255b", - "symbol": "DVI", - "decimals": 18, - "name": "Dvision", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x758fb037a375f17c7e195cc634d77da4f554255b.png", - "aggregators": ["PancakeTop100", "Socket", "Rubic", "Rango"], - "occurrences": 4 - }, - "0x02a40c048ee2607b5f5606e445cfc3633fb20b58": { - "address": "0x02a40c048ee2607b5f5606e445cfc3633fb20b58", - "symbol": "KABY", - "decimals": 18, - "name": "Kaby Arena", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x02a40c048ee2607b5f5606e445cfc3633fb20b58.png", - "aggregators": ["PancakeTop100", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0xc732b6586a93b6b7cf5fed3470808bc74998224d": { - "address": "0xc732b6586a93b6b7cf5fed3470808bc74998224d", - "symbol": "KMON", - "decimals": 18, - "name": "KmonCoin", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xc732b6586a93b6b7cf5fed3470808bc74998224d.png", - "aggregators": ["PancakeTop100", "Socket", "Rubic", "Rango"], - "occurrences": 4 - }, - "0xab15b79880f11cffb58db25ec2bc39d28c4d80d2": { - "address": "0xab15b79880f11cffb58db25ec2bc39d28c4d80d2", - "symbol": "SMON", - "decimals": 18, - "name": "StarMon", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xab15b79880f11cffb58db25ec2bc39d28c4d80d2.png", - "aggregators": ["PancakeTop100", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0x339c72829ab7dd45c3c52f965e7abe358dd8761e": { - "address": "0x339c72829ab7dd45c3c52f965e7abe358dd8761e", - "symbol": "WANA", - "decimals": 18, - "name": "Wanaka Farm", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x339c72829ab7dd45c3c52f965e7abe358dd8761e.png", - "aggregators": ["PancakeTop100", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0x5512014efa6cd57764fa743756f7a6ce3358cc83": { - "address": "0x5512014efa6cd57764fa743756f7a6ce3358cc83", - "symbol": "EZ", - "decimals": 18, - "name": "Easy V2", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x5512014efa6cd57764fa743756f7a6ce3358cc83.png", - "aggregators": ["PancakeExtended", "Socket", "Rubic", "Rango"], - "occurrences": 4 - }, - "0xaa9e582e5751d703f85912903bacaddfed26484c": { - "address": "0xaa9e582e5751d703f85912903bacaddfed26484c", - "symbol": "HAI", - "decimals": 8, - "name": "Hacken Token", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xaa9e582e5751d703f85912903bacaddfed26484c.png", - "aggregators": ["PancakeExtended", "Socket", "Rubic", "Rango"], - "occurrences": 4 - }, - "0x0ae38f7e10a43b5b2fb064b42a2f4514cba909ef": { - "address": "0x0ae38f7e10a43b5b2fb064b42a2f4514cba909ef", - "symbol": "UNSHETH", - "decimals": 18, - "name": "unshETH Ether", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x0ae38f7e10a43b5b2fb064b42a2f4514cba909ef.png", - "aggregators": ["PancakeExtended", "Socket", "Rubic", "Rango"], - "occurrences": 4 - }, - "0xb160a5f19ebccd8e0549549327e43ddd1d023526": { - "address": "0xb160a5f19ebccd8e0549549327e43ddd1d023526", - "symbol": "WNK", - "decimals": 18, - "name": "Winkies", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xb160a5f19ebccd8e0549549327e43ddd1d023526.png", - "aggregators": ["PancakeCoinMarketCap", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x21ac3bb914f90a2bb1a16088e673a9fdda641434": { - "address": "0x21ac3bb914f90a2bb1a16088e673a9fdda641434", - "symbol": "VIA", - "decimals": 18, - "name": "Octavia", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x21ac3bb914f90a2bb1a16088e673a9fdda641434.png", - "aggregators": ["PancakeExtended", "Rubic", "Sonarwatch"], - "occurrences": 3 - }, - "0x9133049fb1fddc110c92bf5b7df635abb70c89dc": { - "address": "0x9133049fb1fddc110c92bf5b7df635abb70c89dc", - "symbol": "PINK", - "decimals": 18, - "name": "Pink Token", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x9133049fb1fddc110c92bf5b7df635abb70c89dc.png", - "aggregators": ["PancakeTop100", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x12f31b73d812c6bb0d735a218c086d44d5fe5f89": { - "address": "0x12f31b73d812c6bb0d735a218c086d44d5fe5f89", - "symbol": "AGEUR", - "decimals": 18, - "name": "agEUR", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x12f31b73d812c6bb0d735a218c086d44d5fe5f89.png", - "aggregators": [ - "PancakeExtended", - "1inch", - "LiFi", - "Rubic", - "Rango", - "Sonarwatch", - "SushiSwap" - ], - "occurrences": 7 - }, - "0xc9882def23bc42d53895b8361d0b1edc7570bc6a": { - "address": "0xc9882def23bc42d53895b8361d0b1edc7570bc6a", - "symbol": "FIST", - "decimals": 6, - "name": "Fistbump", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xc9882def23bc42d53895b8361d0b1edc7570bc6a.png", - "aggregators": [ - "PancakeCoinMarketCap", - "1inch", - "LiFi", - "Rubic", - "Squid", - "Rango", - "Sonarwatch" - ], - "occurrences": 7 - }, - "0x76a797a59ba2c17726896976b7b3747bfd1d220f": { - "address": "0x76a797a59ba2c17726896976b7b3747bfd1d220f", - "symbol": "TON", - "decimals": 9, - "name": "Toncoin", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x76a797a59ba2c17726896976b7b3747bfd1d220f.png", - "aggregators": [ - "PancakeExtended", - "1inch", - "LiFi", - "Rubic", - "Squid", - "Rango", - "Sonarwatch" - ], - "occurrences": 7 - }, - "0x4507cef57c46789ef8d1a19ea45f4216bae2b528": { - "address": "0x4507cef57c46789ef8d1a19ea45f4216bae2b528", - "symbol": "TOKEN", - "decimals": 9, - "name": "TokenFi", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x4507cef57c46789ef8d1a19ea45f4216bae2b528.png", - "aggregators": [ - "PancakeCoinMarketCap", - "1inch", - "Socket", - "Rubic", - "Squid", - "Rango", - "Sonarwatch" - ], - "occurrences": 7 - }, - "0x9e20461bc2c4c980f62f1b279d71734207a6a356": { - "address": "0x9e20461bc2c4c980f62f1b279d71734207a6a356", - "symbol": "OMNI", - "decimals": 18, - "name": "OmniCat", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x9e20461bc2c4c980f62f1b279d71734207a6a356.png", - "aggregators": [ - "PancakeCoinMarketCap", - "Socket", - "Rubic", - "Squid", - "Rango", - "Sonarwatch", - "SushiSwap" - ], - "occurrences": 7 - }, - "0x4aae823a6a0b376de6a78e74ecc5b079d38cbcf7": { - "address": "0x4aae823a6a0b376de6a78e74ecc5b079d38cbcf7", - "symbol": "SOLVBTC", - "decimals": 18, - "name": "Solv Protocol SolvBTC", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x4aae823a6a0b376de6a78e74ecc5b079d38cbcf7.png", - "aggregators": [ - "PancakeExtended", - "1inch", - "LiFi", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 7 - }, - "0x3f56e0c36d275367b8c502090edf38289b3dea0d": { - "address": "0x3f56e0c36d275367b8c502090edf38289b3dea0d", - "symbol": "MAI", - "decimals": 18, - "name": "Mai Stablecoin", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x3f56e0c36d275367b8c502090edf38289b3dea0d.png", - "aggregators": [ - "PancakeCoinMarketCap", - "LiFi", - "Socket", - "Rubic", - "Rango", - "Sonarwatch", - "SushiSwap" - ], - "occurrences": 7 - }, - "0x233d91a0713155003fc4dce0afa871b508b3b715": { - "address": "0x233d91a0713155003fc4dce0afa871b508b3b715", - "symbol": "DITTO", - "decimals": 9, - "name": "Ditto", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x233d91a0713155003fc4dce0afa871b508b3b715.png", - "aggregators": [ - "PancakeExtended", - "LiFi", - "TrustWallet", - "Socket", - "Rubic", - "Rango", - "SushiSwap" - ], - "occurrences": 7 - }, - "0x073690e6ce25be816e68f32dca3e11067c9fb5cc": { - "address": "0x073690e6ce25be816e68f32dca3e11067c9fb5cc", - "symbol": "KUJI", - "decimals": 6, - "name": "Kujira", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x073690e6ce25be816e68f32dca3e11067c9fb5cc.png", - "aggregators": [ - "PancakeExtended", - "Socket", - "Rubic", - "Squid", - "Rango", - "Sonarwatch" - ], - "occurrences": 6 - }, - "0x5b6dcf557e2abe2323c48445e8cc948910d8c2c9": { - "address": "0x5b6dcf557e2abe2323c48445e8cc948910d8c2c9", - "symbol": "MIR", - "decimals": 18, - "name": "Mirror Protocol", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x5b6dcf557e2abe2323c48445e8cc948910d8c2c9.png", - "aggregators": [ - "PancakeExtended", - "LiFi", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 6 - }, - "0xa4080f1778e69467e905b8d6f72f6e441f9e9484": { - "address": "0xa4080f1778e69467e905b8d6f72f6e441f9e9484", - "symbol": "SYN", - "decimals": 18, - "name": "Synapse", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xa4080f1778e69467e905b8d6f72f6e441f9e9484.png", - "aggregators": [ - "PancakeCoinMarketCap", - "LiFi", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 6 - }, - "0xd74b782e05aa25c50e7330af541d46e18f36661c": { - "address": "0xd74b782e05aa25c50e7330af541d46e18f36661c", - "symbol": "QUACK", - "decimals": 9, - "name": "Rich Quack", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xd74b782e05aa25c50e7330af541d46e18f36661c.png", - "aggregators": [ - "PancakeExtended", - "1inch", - "Rubic", - "Squid", - "Rango", - "Sonarwatch" - ], - "occurrences": 6 - }, - "0x71be881e9c5d4465b3fff61e89c6f3651e69b5bb": { - "address": "0x71be881e9c5d4465b3fff61e89c6f3651e69b5bb", - "symbol": "BRZ", - "decimals": 4, - "name": "Brazilian Digital", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x71be881e9c5d4465b3fff61e89c6f3651e69b5bb.png", - "aggregators": [ - "PancakeCoinMarketCap", - "LiFi", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 6 - }, - "0x0ef4a107b48163ab4b57fca36e1352151a587be4": { - "address": "0x0ef4a107b48163ab4b57fca36e1352151a587be4", - "symbol": "ICHI", - "decimals": 18, - "name": "ICHI", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x0ef4a107b48163ab4b57fca36e1352151a587be4.png", - "aggregators": [ - "PancakeCoinGecko", - "Socket", - "Rubic", - "Squid", - "Rango", - "Sonarwatch" - ], - "occurrences": 6 - }, - "0x29a63f4b209c29b4dc47f06ffa896f32667dad2c": { - "address": "0x29a63f4b209c29b4dc47f06ffa896f32667dad2c", - "symbol": "PURSE", - "decimals": 18, - "name": "Pundi X PURSE", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x29a63f4b209c29b4dc47f06ffa896f32667dad2c.png", - "aggregators": [ - "PancakeCoinMarketCap", - "1inch", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 6 - }, - "0xb09fe1613fe03e7361319d2a43edc17422f36b09": { - "address": "0xb09fe1613fe03e7361319d2a43edc17422f36b09", - "symbol": "BOG", - "decimals": 18, - "name": "Bogged Finance", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xb09fe1613fe03e7361319d2a43edc17422f36b09.png", - "aggregators": [ - "PancakeCoinMarketCap", - "1inch", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 6 - }, - "0xb5102cee1528ce2c760893034a4603663495fd72": { - "address": "0xb5102cee1528ce2c760893034a4603663495fd72", - "symbol": "USX", - "decimals": 18, - "name": "dForce USD", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xb5102cee1528ce2c760893034a4603663495fd72.png", - "aggregators": [ - "PancakeCoinMarketCap", - "LiFi", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 6 - }, - "0xd3c325848d7c6e29b574cb0789998b2ff901f17e": { - "address": "0xd3c325848d7c6e29b574cb0789998b2ff901f17e", - "symbol": "1ART", - "decimals": 18, - "name": "OneArt", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xd3c325848d7c6e29b574cb0789998b2ff901f17e.png", - "aggregators": [ - "PancakeCoinMarketCap", - "LiFi", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 6 - }, - "0xd23811058eb6e7967d9a00dc3886e75610c4abba": { - "address": "0xd23811058eb6e7967d9a00dc3886e75610c4abba", - "symbol": "KNIGHT", - "decimals": 18, - "name": "KnightSwap", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xd23811058eb6e7967d9a00dc3886e75610c4abba.png", - "aggregators": [ - "PancakeCoinMarketCap", - "LiFi", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 6 - }, - "0x8ea5219a16c2dbf1d6335a6aa0c6bd45c50347c5": { - "address": "0x8ea5219a16c2dbf1d6335a6aa0c6bd45c50347c5", - "symbol": "OOE", - "decimals": 18, - "name": "OpenOcean", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x8ea5219a16c2dbf1d6335a6aa0c6bd45c50347c5.png", - "aggregators": [ - "PancakeCoinMarketCap", - "LiFi", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 6 - }, - "0x72b7d61e8fc8cf971960dd9cfa59b8c829d91991": { - "address": "0x72b7d61e8fc8cf971960dd9cfa59b8c829d91991", - "symbol": "AQUA", - "decimals": 18, - "name": "Planet Finance", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x72b7d61e8fc8cf971960dd9cfa59b8c829d91991.png", - "aggregators": [ - "PancakeCoinMarketCap", - "1inch", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 6 - }, - "0xf33893de6eb6ae9a67442e066ae9abd228f5290c": { - "address": "0xf33893de6eb6ae9a67442e066ae9abd228f5290c", - "symbol": "GRV", - "decimals": 8, - "name": "GroveCoin", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xf33893de6eb6ae9a67442e066ae9abd228f5290c.png", - "aggregators": [ - "PancakeCoinMarketCap", - "LiFi", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 6 - }, - "0x00e1656e45f18ec6747f5a8496fd39b50b38396d": { - "address": "0x00e1656e45f18ec6747f5a8496fd39b50b38396d", - "symbol": "BCOIN", - "decimals": 18, - "name": "Bomb Crypto (BNB)", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x00e1656e45f18ec6747f5a8496fd39b50b38396d.png", - "aggregators": [ - "PancakeExtended", - "LiFi", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 6 - }, - "0x52419258e3fa44deac7e670eadd4c892b480a805": { - "address": "0x52419258e3fa44deac7e670eadd4c892b480a805", - "symbol": "STARSHIP", - "decimals": 9, - "name": "StarShip", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x52419258e3fa44deac7e670eadd4c892b480a805.png", - "aggregators": [ - "PancakeCoinMarketCap", - "1inch", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 6 - }, - "0xc1a59a17f87ba6651eb8e8f707db7672647c45bd": { - "address": "0xc1a59a17f87ba6651eb8e8f707db7672647c45bd", - "symbol": "LNR", - "decimals": 18, - "name": "Lunar", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xc1a59a17f87ba6651eb8e8f707db7672647c45bd.png", - "aggregators": [ - "PancakeCoinMarketCap", - "1inch", - "LiFi", - "Rubic", - "Sonarwatch", - "SushiSwap" - ], - "occurrences": 6 - }, - "0xf750a26eb0acf95556e8529e72ed530f3b60f348": { - "address": "0xf750a26eb0acf95556e8529e72ed530f3b60f348", - "symbol": "GNT", - "decimals": 18, - "name": "GreenTrust", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xf750a26eb0acf95556e8529e72ed530f3b60f348.png", - "aggregators": [ - "PancakeCoinMarketCap", - "1inch", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 6 - }, - "0x2ff3d0f6990a40261c66e1ff2017acbc282eb6d0": { - "address": "0x2ff3d0f6990a40261c66e1ff2017acbc282eb6d0", - "symbol": "VSXP", - "decimals": 8, - "name": "Venus SXP", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x2ff3d0f6990a40261c66e1ff2017acbc282eb6d0.png", - "aggregators": [ - "PancakeCoinMarketCap", - "1inch", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 6 - }, - "0xb3cb6d2f8f2fde203a022201c81a96c167607f15": { - "address": "0xb3cb6d2f8f2fde203a022201c81a96c167607f15", - "symbol": "GAMMA", - "decimals": 18, - "name": "Green Planet", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xb3cb6d2f8f2fde203a022201c81a96c167607f15.png", - "aggregators": [ - "PancakeCoinGecko", - "1inch", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 6 - }, - "0xd9de2b1973e57dc9dba90c35d6cd940ae4a3cbe1": { - "address": "0xd9de2b1973e57dc9dba90c35d6cd940ae4a3cbe1", - "symbol": "MILO", - "decimals": 9, - "name": "Milo Inu", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xd9de2b1973e57dc9dba90c35d6cd940ae4a3cbe1.png", - "aggregators": [ - "PancakeCoinMarketCap", - "1inch", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 6 - }, - "0x60322971a672b81bcce5947706d22c19daecf6fb": { - "address": "0x60322971a672b81bcce5947706d22c19daecf6fb", - "symbol": "MDAO", - "decimals": 18, - "name": "MarsDAO", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x60322971a672b81bcce5947706d22c19daecf6fb.png", - "aggregators": [ - "PancakeCoinMarketCap", - "1inch", - "LiFi", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 6 - }, - "0x557233e794d1a5fbcc6d26dca49147379ea5073c": { - "address": "0x557233e794d1a5fbcc6d26dca49147379ea5073c", - "symbol": "ALI", - "decimals": 18, - "name": "Alita", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x557233e794d1a5fbcc6d26dca49147379ea5073c.png", - "aggregators": [ - "PancakeCoinMarketCap", - "LiFi", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 6 - }, - "0x0255af6c9f86f6b0543357bacefa262a2664f80f": { - "address": "0x0255af6c9f86f6b0543357bacefa262a2664f80f", - "symbol": "DARA", - "decimals": 18, - "name": "Immutable", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x0255af6c9f86f6b0543357bacefa262a2664f80f.png", - "aggregators": [ - "PancakeCoinMarketCap", - "1inch", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 6 - }, - "0x972207a639cc1b374b893cc33fa251b55ceb7c07": { - "address": "0x972207a639cc1b374b893cc33fa251b55ceb7c07", - "symbol": "VBETH", - "decimals": 8, - "name": "Venus BETH", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x972207a639cc1b374b893cc33fa251b55ceb7c07.png", - "aggregators": [ - "PancakeCoinMarketCap", - "1inch", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 6 - }, - "0x1610bc33319e9398de5f57b33a5b184c806ad217": { - "address": "0x1610bc33319e9398de5f57b33a5b184c806ad217", - "symbol": "VDOT", - "decimals": 8, - "name": "Venus DOT", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x1610bc33319e9398de5f57b33a5b184c806ad217.png", - "aggregators": [ - "PancakeCoinMarketCap", - "1inch", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 6 - }, - "0xd32d01a43c869edcd1117c640fbdcfcfd97d9d65": { - "address": "0xd32d01a43c869edcd1117c640fbdcfcfd97d9d65", - "symbol": "NMX", - "decimals": 18, - "name": "Nominex", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xd32d01a43c869edcd1117c640fbdcfcfd97d9d65.png", - "aggregators": [ - "PancakeCoinMarketCap", - "1inch", - "LiFi", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 6 - }, - "0x5f0388ebc2b94fa8e123f404b79ccf5f40b29176": { - "address": "0x5f0388ebc2b94fa8e123f404b79ccf5f40b29176", - "symbol": "VBCH", - "decimals": 8, - "name": "Venus BCH", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x5f0388ebc2b94fa8e123f404b79ccf5f40b29176.png", - "aggregators": [ - "PancakeCoinMarketCap", - "1inch", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 6 - }, - "0x57a5297f2cb2c0aac9d554660acd6d385ab50c6b": { - "address": "0x57a5297f2cb2c0aac9d554660acd6d385ab50c6b", - "symbol": "VLTC", - "decimals": 8, - "name": "Venus LTC", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x57a5297f2cb2c0aac9d554660acd6d385ab50c6b.png", - "aggregators": [ - "PancakeCoinMarketCap", - "1inch", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 6 - }, - "0xf91d58b5ae142dacc749f58a49fcbac340cb0343": { - "address": "0xf91d58b5ae142dacc749f58a49fcbac340cb0343", - "symbol": "VFIL", - "decimals": 8, - "name": "Venus FIL", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xf91d58b5ae142dacc749f58a49fcbac340cb0343.png", - "aggregators": [ - "PancakeCoinMarketCap", - "1inch", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 6 - }, - "0x5de3939b2f811a61d830e6f52d13b066881412ab": { - "address": "0x5de3939b2f811a61d830e6f52d13b066881412ab", - "symbol": "XPR", - "decimals": 4, - "name": "XPR Network", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x5de3939b2f811a61d830e6f52d13b066881412ab.png", - "aggregators": [ - "PancakeCoinMarketCap", - "Socket", - "Rubic", - "Squid", - "Rango", - "Sonarwatch" - ], - "occurrences": 6 - }, - "0xa325ad6d9c92b55a3fc5ad7e412b1518f96441c0": { - "address": "0xa325ad6d9c92b55a3fc5ad7e412b1518f96441c0", - "symbol": "ORAI", - "decimals": 18, - "name": "Oraichain", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xa325ad6d9c92b55a3fc5ad7e412b1518f96441c0.png", - "aggregators": [ - "PancakeCoinMarketCap", - "LiFi", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 6 - }, - "0xd9c2d319cd7e6177336b0a9c93c21cb48d84fb54": { - "address": "0xd9c2d319cd7e6177336b0a9c93c21cb48d84fb54", - "symbol": "HAPI", - "decimals": 18, - "name": "HAPI", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xd9c2d319cd7e6177336b0a9c93c21cb48d84fb54.png", - "aggregators": [ - "PancakeCoinMarketCap", - "LiFi", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 6 - }, - "0x4a9a2b2b04549c3927dd2c9668a5ef3fca473623": { - "address": "0x4a9a2b2b04549c3927dd2c9668a5ef3fca473623", - "symbol": "DF", - "decimals": 18, - "name": "dForce", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x4a9a2b2b04549c3927dd2c9668a5ef3fca473623.png", - "aggregators": [ - "PancakeCoinMarketCap", - "LiFi", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 6 - }, - "0x9ce84f6a69986a83d92c324df10bc8e64771030f": { - "address": "0x9ce84f6a69986a83d92c324df10bc8e64771030f", - "symbol": "CHEX", - "decimals": 18, - "name": "CHEX Token", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x9ce84f6a69986a83d92c324df10bc8e64771030f.png", - "aggregators": [ - "PancakeCoinMarketCap", - "LiFi", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 6 - }, - "0xe2a59d5e33c6540e18aaa46bf98917ac3158db0d": { - "address": "0xe2a59d5e33c6540e18aaa46bf98917ac3158db0d", - "symbol": "UFI", - "decimals": 18, - "name": "PureFi", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xe2a59d5e33c6540e18aaa46bf98917ac3158db0d.png", - "aggregators": [ - "PancakeCoinMarketCap", - "LiFi", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 6 - }, - "0x8db1d28ee0d822367af8d220c0dc7cb6fe9dc442": { - "address": "0x8db1d28ee0d822367af8d220c0dc7cb6fe9dc442", - "symbol": "ETHPAD", - "decimals": 18, - "name": "ETHPad", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x8db1d28ee0d822367af8d220c0dc7cb6fe9dc442.png", - "aggregators": [ - "PancakeCoinMarketCap", - "1inch", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 6 - }, - "0xf275e1ac303a4c9d987a2c48b8e555a77fec3f1c": { - "address": "0xf275e1ac303a4c9d987a2c48b8e555a77fec3f1c", - "symbol": "DPS", - "decimals": 9, - "name": "DEEPSPACE", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xf275e1ac303a4c9d987a2c48b8e555a77fec3f1c.png", - "aggregators": [ - "PancakeCoinMarketCap", - "1inch", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 6 - }, - "0x347e430b7cd1235e216be58ffa13394e5009e6e2": { - "address": "0x347e430b7cd1235e216be58ffa13394e5009e6e2", - "symbol": "GAIA", - "decimals": 18, - "name": "Gaia Everworld", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x347e430b7cd1235e216be58ffa13394e5009e6e2.png", - "aggregators": [ - "PancakeCoinMarketCap", - "1inch", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 6 - }, - "0x20ee7b720f4e4c4ffcb00c4065cdae55271aecca": { - "address": "0x20ee7b720f4e4c4ffcb00c4065cdae55271aecca", - "symbol": "NFT", - "decimals": 6, - "name": "APENFT", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x20ee7b720f4e4c4ffcb00c4065cdae55271aecca.png", - "aggregators": [ - "PancakeExtended", - "Socket", - "Rubic", - "Squid", - "Rango", - "Sonarwatch" - ], - "occurrences": 6 - }, - "0xaaa9214f675316182eaa21c85f0ca99160cc3aaa": { - "address": "0xaaa9214f675316182eaa21c85f0ca99160cc3aaa", - "symbol": "QANX", - "decimals": 18, - "name": "QANplatform", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xaaa9214f675316182eaa21c85f0ca99160cc3aaa.png", - "aggregators": [ - "PancakeCoinMarketCap", - "Socket", - "Rubic", - "Squid", - "Rango", - "Sonarwatch" - ], - "occurrences": 6 - }, - "0x371c7ec6d8039ff7933a2aa28eb827ffe1f52f07": { - "address": "0x371c7ec6d8039ff7933a2aa28eb827ffe1f52f07", - "symbol": "JOE", - "decimals": 18, - "name": "JOE", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x371c7ec6d8039ff7933a2aa28eb827ffe1f52f07.png", - "aggregators": [ - "PancakeCoinMarketCap", - "LiFi", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 6 - }, - "0xb7e2713cf55cf4b469b5a8421ae6fc0ed18f1467": { - "address": "0xb7e2713cf55cf4b469b5a8421ae6fc0ed18f1467", - "symbol": "OLE", - "decimals": 18, - "name": "OpenLeverage", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xb7e2713cf55cf4b469b5a8421ae6fc0ed18f1467.png", - "aggregators": [ - "PancakeCoinMarketCap", - "LiFi", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 6 - }, - "0x60d01ec2d5e98ac51c8b4cf84dfcce98d527c747": { - "address": "0x60d01ec2d5e98ac51c8b4cf84dfcce98d527c747", - "symbol": "IZI", - "decimals": 18, - "name": "iZUMi Finance", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x60d01ec2d5e98ac51c8b4cf84dfcce98d527c747.png", - "aggregators": [ - "PancakeCoinMarketCap", - "LiFi", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 6 - }, - "0x352cb5e19b12fc216548a2677bd0fce83bae434b": { - "address": "0x352cb5e19b12fc216548a2677bd0fce83bae434b", - "symbol": "BTT", - "decimals": 18, - "name": "BitTorrent", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x352cb5e19b12fc216548a2677bd0fce83bae434b.png", - "aggregators": [ - "PancakeExtended", - "1inch", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 6 - }, - "0x5335e87930b410b8c5bb4d43c3360aca15ec0c8c": { - "address": "0x5335e87930b410b8c5bb4d43c3360aca15ec0c8c", - "symbol": "USDT+", - "decimals": 18, - "name": "Overnight.fi USDT+", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x5335e87930b410b8c5bb4d43c3360aca15ec0c8c.png", - "aggregators": [ - "PancakeCoinMarketCap", - "LiFi", - "Rubic", - "Squid", - "Rango", - "Sonarwatch" - ], - "occurrences": 6 - }, - "0x25d887ce7a35172c62febfd67a1856f20faebb00": { - "address": "0x25d887ce7a35172c62febfd67a1856f20faebb00", - "symbol": "PEPE", - "decimals": 18, - "name": "Pepe", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x25d887ce7a35172c62febfd67a1856f20faebb00.png", - "aggregators": [ - "PancakeExtended", - "1inch", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 6 - }, - "0x8457ca5040ad67fdebbcc8edce889a335bc0fbfb": { - "address": "0x8457ca5040ad67fdebbcc8edce889a335bc0fbfb", - "symbol": "ALT", - "decimals": 18, - "name": "AltLayer", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x8457ca5040ad67fdebbcc8edce889a335bc0fbfb.png", - "aggregators": [ - "PancakeCoinMarketCap", - "LiFi", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 6 - }, - "0x12e34cdf6a031a10fe241864c32fb03a4fdad739": { - "address": "0x12e34cdf6a031a10fe241864c32fb03a4fdad739", - "symbol": "FREE", - "decimals": 18, - "name": "FREEdom coin", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x12e34cdf6a031a10fe241864c32fb03a4fdad739.png", - "aggregators": [ - "PancakeCoinMarketCap", - "1inch", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 6 - }, - "0x193f4a4a6ea24102f49b931deeeb931f6e32405d": { - "address": "0x193f4a4a6ea24102f49b931deeeb931f6e32405d", - "symbol": "TLOS", - "decimals": 18, - "name": "TLOS", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x193f4a4a6ea24102f49b931deeeb931f6e32405d.png", - "aggregators": [ - "PancakeCoinMarketCap", - "LiFi", - "Socket", - "Rubic", - "Squid", - "Rango" - ], - "occurrences": 6 - }, - "0x71de20e0c4616e7fcbfdd3f875d568492cbe4739": { - "address": "0x71de20e0c4616e7fcbfdd3f875d568492cbe4739", - "symbol": "SWINGBY", - "decimals": 18, - "name": "Swingby", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x71de20e0c4616e7fcbfdd3f875d568492cbe4739.png", - "aggregators": [ - "PancakeExtended", - "LiFi", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 6 - }, - "0x7af173f350d916358af3e218bdf2178494beb748": { - "address": "0x7af173f350d916358af3e218bdf2178494beb748", - "symbol": "TRADE", - "decimals": 18, - "name": "Unitrade", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x7af173f350d916358af3e218bdf2178494beb748.png", - "aggregators": [ - "PancakeExtended", - "LiFi", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 6 - }, - "0xe05a08226c49b636acf99c40da8dc6af83ce5bb3": { - "address": "0xe05a08226c49b636acf99c40da8dc6af83ce5bb3", - "symbol": "ANKRETH", - "decimals": 18, - "name": "Ankr Staked ETH", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xe05a08226c49b636acf99c40da8dc6af83ce5bb3.png", - "aggregators": [ - "PancakeExtended", - "LiFi", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 6 - }, - "0x7e35d0e9180bf3a1fc47b0d110be7a21a10b41fe": { - "address": "0x7e35d0e9180bf3a1fc47b0d110be7a21a10b41fe", - "symbol": "OVR", - "decimals": 18, - "name": "Ovr", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x7e35d0e9180bf3a1fc47b0d110be7a21a10b41fe.png", - "aggregators": [ - "PancakeCoinMarketCap", - "Socket", - "Rubic", - "Squid", - "Rango", - "Sonarwatch" - ], - "occurrences": 6 - }, - "0xc6dddb5bc6e61e0841c54f3e723ae1f3a807260b": { - "address": "0xc6dddb5bc6e61e0841c54f3e723ae1f3a807260b", - "symbol": "URUS", - "decimals": 18, - "name": "Aurox", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xc6dddb5bc6e61e0841c54f3e723ae1f3a807260b.png", - "aggregators": [ - "PancakeCoinMarketCap", - "1inch", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 6 - }, - "0xdae6c2a48bfaa66b43815c5548b10800919c993e": { - "address": "0xdae6c2a48bfaa66b43815c5548b10800919c993e", - "symbol": "KTN", - "decimals": 18, - "name": "Kattana", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xdae6c2a48bfaa66b43815c5548b10800919c993e.png", - "aggregators": [ - "PancakeExtended", - "LiFi", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 6 - }, - "0x582c12b30f85162fa393e5dbe2573f9f601f9d91": { - "address": "0x582c12b30f85162fa393e5dbe2573f9f601f9d91", - "symbol": "XMT", - "decimals": 18, - "name": "MetalSwap", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x582c12b30f85162fa393e5dbe2573f9f601f9d91.png", - "aggregators": [ - "PancakeCoinMarketCap", - "LiFi", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 6 - }, - "0x3cd55356433c89e50dc51ab07ee0fa0a95623d53": { - "address": "0x3cd55356433c89e50dc51ab07ee0fa0a95623d53", - "symbol": "SFRXETH", - "decimals": 18, - "name": "Staked Frax Ether", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x3cd55356433c89e50dc51ab07ee0fa0a95623d53.png", - "aggregators": [ - "PancakeCoinMarketCap", - "LiFi", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 6 - }, - "0xd691d9a68c887bdf34da8c36f63487333acfd103": { - "address": "0xd691d9a68c887bdf34da8c36f63487333acfd103", - "symbol": "MAV", - "decimals": 18, - "name": "Maverick Protocol", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xd691d9a68c887bdf34da8c36f63487333acfd103.png", - "aggregators": [ - "PancakeCoinMarketCap", - "LiFi", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 6 - }, - "0x11cd72f7a4b699c67f225ca8abb20bc9f8db90c7": { - "address": "0x11cd72f7a4b699c67f225ca8abb20bc9f8db90c7", - "symbol": "OSAK", - "decimals": 18, - "name": "Osaka Protocol", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x11cd72f7a4b699c67f225ca8abb20bc9f8db90c7.png", - "aggregators": [ - "PancakeExtended", - "Socket", - "Rubic", - "Rango", - "Sonarwatch", - "SushiSwap" - ], - "occurrences": 6 - }, - "0x80137510979822322193fc997d400d5a6c747bf7": { - "address": "0x80137510979822322193fc997d400d5a6c747bf7", - "symbol": "STONE", - "decimals": 18, - "name": "StakeStone ETH", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x80137510979822322193fc997d400d5a6c747bf7.png", - "aggregators": [ - "PancakeExtended", - "LiFi", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 6 - }, - "0x747d74db20cc422f39ab54edb2a3ce21f3c98af1": { - "address": "0x747d74db20cc422f39ab54edb2a3ce21f3c98af1", - "symbol": "CGU", - "decimals": 8, - "name": "Crypto Global United", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x747d74db20cc422f39ab54edb2a3ce21f3c98af1.png", - "aggregators": [ - "PancakeCoinMarketCap", - "1inch", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 6 - }, - "0x67d66e8ec1fd25d98b3ccd3b19b7dc4b4b7fc493": { - "address": "0x67d66e8ec1fd25d98b3ccd3b19b7dc4b4b7fc493", - "symbol": "FEED", - "decimals": 18, - "name": "Feeder Finance", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x67d66e8ec1fd25d98b3ccd3b19b7dc4b4b7fc493.png", - "aggregators": [ - "PancakeCoinMarketCap", - "1inch", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 6 - }, - "0x85c128ee1feeb39a59490c720a9c563554b51d33": { - "address": "0x85c128ee1feeb39a59490c720a9c563554b51d33", - "symbol": "KEY", - "decimals": 18, - "name": "MoMo Key", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x85c128ee1feeb39a59490c720a9c563554b51d33.png", - "aggregators": [ - "PancakeCoinMarketCap", - "1inch", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 6 - }, - "0xbc194e6f748a222754c3e8b9946922c09e7d4e91": { - "address": "0xbc194e6f748a222754c3e8b9946922c09e7d4e91", - "symbol": "LEV", - "decimals": 18, - "name": "Lever Network", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xbc194e6f748a222754c3e8b9946922c09e7d4e91.png", - "aggregators": [ - "PancakeCoinMarketCap", - "LiFi", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 6 - }, - "0x5d684adaf3fcfe9cfb5cede3abf02f0cdd1012e3": { - "address": "0x5d684adaf3fcfe9cfb5cede3abf02f0cdd1012e3", - "symbol": "LIEN", - "decimals": 8, - "name": "Lien", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x5d684adaf3fcfe9cfb5cede3abf02f0cdd1012e3.png", - "aggregators": [ - "PancakeExtended", - "LiFi", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 6 - }, - "0xac83271abb4ec95386f08ad2b904a46c61777cef": { - "address": "0xac83271abb4ec95386f08ad2b904a46c61777cef", - "symbol": "NFTD", - "decimals": 18, - "name": "NFTrade", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xac83271abb4ec95386f08ad2b904a46c61777cef.png", - "aggregators": [ - "PancakeCoinMarketCap", - "1inch", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 6 - }, - "0x4a68c250486a116dc8d6a0c5b0677de07cc09c5d": { - "address": "0x4a68c250486a116dc8d6a0c5b0677de07cc09c5d", - "symbol": "POODL", - "decimals": 9, - "name": "Poodl", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x4a68c250486a116dc8d6a0c5b0677de07cc09c5d.png", - "aggregators": [ - "PancakeCoinMarketCap", - "1inch", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 6 - }, - "0xace3574b8b054e074473a9bd002e5dc6dd3dff1b": { - "address": "0xace3574b8b054e074473a9bd002e5dc6dd3dff1b", - "symbol": "RBX", - "decimals": 18, - "name": "RBX", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xace3574b8b054e074473a9bd002e5dc6dd3dff1b.png", - "aggregators": [ - "PancakeCoinMarketCap", - "1inch", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 6 - }, - "0x31d0a7ada4d4c131eb612db48861211f63e57610": { - "address": "0x31d0a7ada4d4c131eb612db48861211f63e57610", - "symbol": "START", - "decimals": 18, - "name": "Starter.xyz", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x31d0a7ada4d4c131eb612db48861211f63e57610.png", - "aggregators": [ - "PancakeCoinMarketCap", - "LiFi", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 6 - }, - "0xe8670901e86818745b28c8b30b17986958fce8cc": { - "address": "0xe8670901e86818745b28c8b30b17986958fce8cc", - "symbol": "XCT", - "decimals": 6, - "name": "Citadel.one", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xe8670901e86818745b28c8b30b17986958fce8cc.png", - "aggregators": [ - "PancakeCoinMarketCap", - "1inch", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 6 - }, - "0x8cd6e29d3686d24d3c2018cee54621ea0f89313b": { - "address": "0x8cd6e29d3686d24d3c2018cee54621ea0f89313b", - "symbol": "NULS", - "decimals": 8, - "name": "Nuls", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x8cd6e29d3686d24d3c2018cee54621ea0f89313b.png", - "aggregators": [ - "PancakeExtended", - "LiFi", - "Socket", - "Rubic", - "Rango", - "SushiSwap" - ], - "occurrences": 6 - }, - "0xdff8cb622790b7f92686c722b02cab55592f152c": { - "address": "0xdff8cb622790b7f92686c722b02cab55592f152c", - "symbol": "TEN", - "decimals": 18, - "name": "Tenet", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xdff8cb622790b7f92686c722b02cab55592f152c.png", - "aggregators": [ - "PancakeExtended", - "LiFi", - "Socket", - "Rubic", - "Rango", - "SushiSwap" - ], - "occurrences": 6 - }, - "0x82d2f8e02afb160dd5a480a617692e62de9038c4": { - "address": "0x82d2f8e02afb160dd5a480a617692e62de9038c4", - "symbol": "ALEPH", - "decimals": 18, - "name": "Aleph.im", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x82d2f8e02afb160dd5a480a617692e62de9038c4.png", - "aggregators": [ - "PancakeCoinMarketCap", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x935a544bf5816e3a7c13db2efe3009ffda0acda2": { - "address": "0x935a544bf5816e3a7c13db2efe3009ffda0acda2", - "symbol": "BLZ", - "decimals": 18, - "name": "Bluzelle", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x935a544bf5816e3a7c13db2efe3009ffda0acda2.png", - "aggregators": [ - "PancakeCoinMarketCap", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x8da443f84fea710266c8eb6bc34b71702d033ef2": { - "address": "0x8da443f84fea710266c8eb6bc34b71702d033ef2", - "symbol": "CTSI", - "decimals": 18, - "name": "Cartesi", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x8da443f84fea710266c8eb6bc34b71702d033ef2.png", - "aggregators": [ - "PancakeCoinMarketCap", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0xe91a8d2c584ca93c7405f15c22cdfe53c29896e3": { - "address": "0xe91a8d2c584ca93c7405f15c22cdfe53c29896e3", - "symbol": "DEXT", - "decimals": 18, - "name": "DexTools", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xe91a8d2c584ca93c7405f15c22cdfe53c29896e3.png", - "aggregators": [ - "PancakeCoinMarketCap", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x4b5c23cac08a567ecf0c1ffca8372a45a5d33743": { - "address": "0x4b5c23cac08a567ecf0c1ffca8372a45a5d33743", - "symbol": "FARM", - "decimals": 18, - "name": "Harvest Finance", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x4b5c23cac08a567ecf0c1ffca8372a45a5d33743.png", - "aggregators": [ - "PancakeCoinMarketCap", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x7977bf3e7e0c954d12cdca3e013adaf57e0b06e0": { - "address": "0x7977bf3e7e0c954d12cdca3e013adaf57e0b06e0", - "symbol": "OPN", - "decimals": 18, - "name": "OPINION", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x7977bf3e7e0c954d12cdca3e013adaf57e0b06e0.png", - "aggregators": [ - "PancakeExtended", - "Socket", - "Rubic", - "Squid", - "Rango" - ], - "occurrences": 5 - }, - "0xd21d29b38374528675c34936bf7d5dd693d2a577": { - "address": "0xd21d29b38374528675c34936bf7d5dd693d2a577", - "symbol": "PRQ", - "decimals": 18, - "name": "PARSIQ", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xd21d29b38374528675c34936bf7d5dd693d2a577.png", - "aggregators": [ - "PancakeCoinMarketCap", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0xe64e30276c2f826febd3784958d6da7b55dfbad3": { - "address": "0xe64e30276c2f826febd3784958d6da7b55dfbad3", - "symbol": "SWFTC", - "decimals": 18, - "name": "SWFTCOIN", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xe64e30276c2f826febd3784958d6da7b55dfbad3.png", - "aggregators": [ - "PancakeCoinMarketCap", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0xa01000c52b234a92563ba61e5649b7c76e1ba0f3": { - "address": "0xa01000c52b234a92563ba61e5649b7c76e1ba0f3", - "symbol": "ROCKI", - "decimals": 18, - "name": "Rocki", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xa01000c52b234a92563ba61e5649b7c76e1ba0f3.png", - "aggregators": [ - "PancakeCoinGecko", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x2859e4544c4bb03966803b044a93563bd2d0dd4d": { - "address": "0x2859e4544c4bb03966803b044a93563bd2d0dd4d", - "symbol": "SHIB", - "decimals": 18, - "name": "Binance-Peg SHIB", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x2859e4544c4bb03966803b044a93563bd2d0dd4d.png", - "aggregators": [ - "PancakeExtended", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0xbd83010eb60f12112908774998f65761cf9f6f9a": { - "address": "0xbd83010eb60f12112908774998f65761cf9f6f9a", - "symbol": "STARS", - "decimals": 18, - "name": "Mogul Productions [OLD]", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xbd83010eb60f12112908774998f65761cf9f6f9a.png", - "aggregators": [ - "PancakeCoinMarketCap", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x0ccd575bf9378c06f6dca82f8122f570769f00c2": { - "address": "0x0ccd575bf9378c06f6dca82f8122f570769f00c2", - "symbol": "KING", - "decimals": 18, - "name": "CryptoBlades Kingdoms", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x0ccd575bf9378c06f6dca82f8122f570769f00c2.png", - "aggregators": [ - "PancakeCoinMarketCap", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0xb84cbbf09b3ed388a45cd875ebba41a20365e6e7": { - "address": "0xb84cbbf09b3ed388a45cd875ebba41a20365e6e7", - "symbol": "SHIBA", - "decimals": 18, - "name": "BitShiba", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xb84cbbf09b3ed388a45cd875ebba41a20365e6e7.png", - "aggregators": [ - "PancakeCoinMarketCap", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x4374f26f0148a6331905edf4cd33b89d8eed78d1": { - "address": "0x4374f26f0148a6331905edf4cd33b89d8eed78d1", - "symbol": "YOSHI", - "decimals": 18, - "name": "Yoshi.exchange", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x4374f26f0148a6331905edf4cd33b89d8eed78d1.png", - "aggregators": [ - "PancakeCoinMarketCap", - "LiFi", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x638eebe886b0e9e7c6929e69490064a6c94d204d": { - "address": "0x638eebe886b0e9e7c6929e69490064a6c94d204d", - "symbol": "HEC", - "decimals": 9, - "name": "Hector Network", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x638eebe886b0e9e7c6929e69490064a6c94d204d.png", - "aggregators": [ - "PancakeCoinMarketCap", - "Rubic", - "Squid", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0xc3387e4285e9f80a7cfdf02b4ac6cdf2476a528a": { - "address": "0xc3387e4285e9f80a7cfdf02b4ac6cdf2476a528a", - "symbol": "ROCK", - "decimals": 18, - "name": "Bedrock", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xc3387e4285e9f80a7cfdf02b4ac6cdf2476a528a.png", - "aggregators": [ - "PancakeCoinMarketCap", - "1inch", - "Socket", - "Rubic", - "Rango" - ], - "occurrences": 5 - }, - "0xef7a4dd703d074974b7240c74b5ce938aa8983d3": { - "address": "0xef7a4dd703d074974b7240c74b5ce938aa8983d3", - "symbol": "BLAZE", - "decimals": 18, - "name": "StoryFire", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xef7a4dd703d074974b7240c74b5ce938aa8983d3.png", - "aggregators": [ - "PancakeCoinMarketCap", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0xa4c3497b57c8b6d510f3707a1e9694fd791f45fb": { - "address": "0xa4c3497b57c8b6d510f3707a1e9694fd791f45fb", - "symbol": "VON", - "decimals": 18, - "name": "VON", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xa4c3497b57c8b6d510f3707a1e9694fd791f45fb.png", - "aggregators": [ - "PancakeExtended", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x334b3ecb4dca3593bccc3c7ebd1a1c1d1780fbf1": { - "address": "0x334b3ecb4dca3593bccc3c7ebd1a1c1d1780fbf1", - "symbol": "VDAI", - "decimals": 8, - "name": "Venus DAI", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x334b3ecb4dca3593bccc3c7ebd1a1c1d1780fbf1.png", - "aggregators": [ - "PancakeCoinMarketCap", - "1inch", - "Socket", - "Rubic", - "Rango" - ], - "occurrences": 5 - }, - "0xafcc12e4040615e7afe9fb4330eb3d9120acac05": { - "address": "0xafcc12e4040615e7afe9fb4330eb3d9120acac05", - "symbol": "PIRATE", - "decimals": 8, - "name": "PirateCash", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xafcc12e4040615e7afe9fb4330eb3d9120acac05.png", - "aggregators": [ - "PancakeCoinMarketCap", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x9521728bf66a867bc65a93ece4a543d817871eb7": { - "address": "0x9521728bf66a867bc65a93ece4a543d817871eb7", - "symbol": "CREO", - "decimals": 18, - "name": "Creo Engine", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x9521728bf66a867bc65a93ece4a543d817871eb7.png", - "aggregators": [ - "PancakeCoinMarketCap", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0xa177bdd433aea3702beb46652adcfc64248d4ab3": { - "address": "0xa177bdd433aea3702beb46652adcfc64248d4ab3", - "symbol": "PBX", - "decimals": 18, - "name": "Probinex", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xa177bdd433aea3702beb46652adcfc64248d4ab3.png", - "aggregators": [ - "PancakeCoinMarketCap", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0xf3527ef8de265eaa3716fb312c12847bfba66cef": { - "address": "0xf3527ef8de265eaa3716fb312c12847bfba66cef", - "symbol": "USDX", - "decimals": 18, - "name": "Stables Labs USDX", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xf3527ef8de265eaa3716fb312c12847bfba66cef.png", - "aggregators": [ - "PancakeExtended", - "LiFi", - "Socket", - "Rubic", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x0c69199c1562233640e0db5ce2c399a88eb507c7": { - "address": "0x0c69199c1562233640e0db5ce2c399a88eb507c7", - "symbol": "CYS", - "decimals": 18, - "name": "Cysic Token", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x0c69199c1562233640e0db5ce2c399a88eb507c7.png", - "aggregators": [ - "PancakeExtended", - "LiFi", - "Rubic", - "Squid", - "Rango" - ], - "occurrences": 5 - }, - "0xa5c8e1513b6a08334b479fe4d71f1253259469be": { - "address": "0xa5c8e1513b6a08334b479fe4d71f1253259469be", - "symbol": "GUA", - "decimals": 18, - "name": "GUA", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xa5c8e1513b6a08334b479fe4d71f1253259469be.png", - "aggregators": [ - "PancakeExtended", - "LiFi", - "Socket", - "Rubic", - "Rango" - ], - "occurrences": 5 - }, - "0xe4fae3faa8300810c835970b9187c268f55d998f": { - "address": "0xe4fae3faa8300810c835970b9187c268f55d998f", - "symbol": "CATE", - "decimals": 9, - "name": "CateCoin", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xe4fae3faa8300810c835970b9187c268f55d998f.png", - "aggregators": [ - "PancakeCoinMarketCap", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0xc335df7c25b72eec661d5aa32a7c2b7b2a1d1874": { - "address": "0xc335df7c25b72eec661d5aa32a7c2b7b2a1d1874", - "symbol": "ICE", - "decimals": 18, - "name": "Ice Open Network", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xc335df7c25b72eec661d5aa32a7c2b7b2a1d1874.png", - "aggregators": [ - "PancakeCoinMarketCap", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0xf85be0902a16fb87d447021d6e4517b38a15087d": { - "address": "0xf85be0902a16fb87d447021d6e4517b38a15087d", - "symbol": "PALM", - "decimals": 18, - "name": "PalmPay", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xf85be0902a16fb87d447021d6e4517b38a15087d.png", - "aggregators": [ - "PancakeCoinMarketCap", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x4ad663403df2f0e7987bc9c74561687472e1611c": { - "address": "0x4ad663403df2f0e7987bc9c74561687472e1611c", - "symbol": "FROG", - "decimals": 18, - "name": "Frodo the Virtual Samurai", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x4ad663403df2f0e7987bc9c74561687472e1611c.png", - "aggregators": [ - "PancakeExtended", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0xac472d0eed2b8a2f57a6e304ea7ebd8e88d1d36f": { - "address": "0xac472d0eed2b8a2f57a6e304ea7ebd8e88d1d36f", - "symbol": "ANI", - "decimals": 18, - "name": "Anime", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xac472d0eed2b8a2f57a6e304ea7ebd8e88d1d36f.png", - "aggregators": [ - "PancakeCoinMarketCap", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x7e975d85714b11d862c7cffee3c88d565a139eb7": { - "address": "0x7e975d85714b11d862c7cffee3c88d565a139eb7", - "symbol": "BOMB", - "decimals": 18, - "name": "Bombie", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x7e975d85714b11d862c7cffee3c88d565a139eb7.png", - "aggregators": [ - "PancakeExtended", - "1inch", - "Socket", - "Rubic", - "Rango" - ], - "occurrences": 5 - }, - "0xbcb24afb019be7e93ea9c43b7e22bb55d5b7f45d": { - "address": "0xbcb24afb019be7e93ea9c43b7e22bb55d5b7f45d", - "symbol": "BSCS", - "decimals": 18, - "name": "BSCS", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xbcb24afb019be7e93ea9c43b7e22bb55d5b7f45d.png", - "aggregators": [ - "PancakeCoinMarketCap", - "1inch", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0xeb34de0c4b2955ce0ff1526cdf735c9e6d249d09": { - "address": "0xeb34de0c4b2955ce0ff1526cdf735c9e6d249d09", - "symbol": "GBYTE", - "decimals": 18, - "name": "Obyte", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xeb34de0c4b2955ce0ff1526cdf735c9e6d249d09.png", - "aggregators": [ - "PancakeCoinMarketCap", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0xea89199344a492853502a7a699cc4230854451b8": { - "address": "0xea89199344a492853502a7a699cc4230854451b8", - "symbol": "ONI", - "decimals": 18, - "name": "ONINO", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xea89199344a492853502a7a699cc4230854451b8.png", - "aggregators": [ - "PancakeCoinMarketCap", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0xcb5327ed4649548e0d73e70b633cdfd99af6da87": { - "address": "0xcb5327ed4649548e0d73e70b633cdfd99af6da87", - "symbol": "PRIMAL", - "decimals": 18, - "name": "PRIMAL", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xcb5327ed4649548e0d73e70b633cdfd99af6da87.png", - "aggregators": [ - "PancakeExtended", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0xff7d6a96ae471bbcd7713af9cb1feeb16cf56b41": { - "address": "0xff7d6a96ae471bbcd7713af9cb1feeb16cf56b41", - "symbol": "BR", - "decimals": 18, - "name": "Bedrock", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xff7d6a96ae471bbcd7713af9cb1feeb16cf56b41.png", - "aggregators": [ - "PancakeExtended", - "LiFi", - "Socket", - "Rubic", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x0391be54e72f7e001f6bbc331777710b4f2999ef": { - "address": "0x0391be54e72f7e001f6bbc331777710b4f2999ef", - "symbol": "TRAVA", - "decimals": 18, - "name": "Trava Finance", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x0391be54e72f7e001f6bbc331777710b4f2999ef.png", - "aggregators": [ - "PancakeCoinMarketCap", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0xfafb7581a65a1f554616bf780fc8a8acd2ab8c9b": { - "address": "0xfafb7581a65a1f554616bf780fc8a8acd2ab8c9b", - "symbol": "SQUID", - "decimals": 18, - "name": "Squid Game", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xfafb7581a65a1f554616bf780fc8a8acd2ab8c9b.png", - "aggregators": [ - "PancakeCoinMarketCap", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x89af13a10b32f1b2f8d1588f93027f69b6f4e27e": { - "address": "0x89af13a10b32f1b2f8d1588f93027f69b6f4e27e", - "symbol": "GAFI", - "decimals": 18, - "name": "GameFi.org", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x89af13a10b32f1b2f8d1588f93027f69b6f4e27e.png", - "aggregators": [ - "PancakeCoinMarketCap", - "1inch", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x340724464cf51a551106cc6657606ee7d87b28b9": { - "address": "0x340724464cf51a551106cc6657606ee7d87b28b9", - "symbol": "STC", - "decimals": 18, - "name": "Satoshi Island", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x340724464cf51a551106cc6657606ee7d87b28b9.png", - "aggregators": [ - "PancakeCoinMarketCap", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x9d1a7a3191102e9f900faa10540837ba84dcbae7": { - "address": "0x9d1a7a3191102e9f900faa10540837ba84dcbae7", - "symbol": "EURI", - "decimals": 18, - "name": "Eurite", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x9d1a7a3191102e9f900faa10540837ba84dcbae7.png", - "aggregators": [ - "PancakeCoinMarketCap", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x5a726a26edb0df8fd55f03cc30af8a7cea81e78d": { - "address": "0x5a726a26edb0df8fd55f03cc30af8a7cea81e78d", - "symbol": "CWT", - "decimals": 18, - "name": "CrossWallet", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x5a726a26edb0df8fd55f03cc30af8a7cea81e78d.png", - "aggregators": [ - "PancakeCoinMarketCap", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x49f2145d6366099e13b10fbf80646c0f377ee7f6": { - "address": "0x49f2145d6366099e13b10fbf80646c0f377ee7f6", - "symbol": "PORTO", - "decimals": 8, - "name": "FC Porto", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x49f2145d6366099e13b10fbf80646c0f377ee7f6.png", - "aggregators": [ - "PancakeExtended", - "LiFi", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x5b8650cd999b23cf39ab12e3213fbc8709c7f5cb": { - "address": "0x5b8650cd999b23cf39ab12e3213fbc8709c7f5cb", - "symbol": "MAZI", - "decimals": 18, - "name": "MaziMatic", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x5b8650cd999b23cf39ab12e3213fbc8709c7f5cb.png", - "aggregators": [ - "PancakeCoinMarketCap", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x9be61a38725b265bc3eb7bfdf17afdfc9d26c130": { - "address": "0x9be61a38725b265bc3eb7bfdf17afdfc9d26c130", - "symbol": "AT", - "decimals": 18, - "name": "APRO oracle Token", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x9be61a38725b265bc3eb7bfdf17afdfc9d26c130.png", - "aggregators": [ - "PancakeExtended", - "LiFi", - "Socket", - "Rubic", - "Rango" - ], - "occurrences": 5 - }, - "0x73fbd93bfda83b111ddc092aa3a4ca77fd30d380": { - "address": "0x73fbd93bfda83b111ddc092aa3a4ca77fd30d380", - "symbol": "SOPH", - "decimals": 18, - "name": "SophiaVerse", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x73fbd93bfda83b111ddc092aa3a4ca77fd30d380.png", - "aggregators": [ - "PancakeCoinMarketCap", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x5b73a93b4e5e4f1fd27d8b3f8c97d69908b5e284": { - "address": "0x5b73a93b4e5e4f1fd27d8b3f8c97d69908b5e284", - "symbol": "FORM", - "decimals": 18, - "name": "Four", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x5b73a93b4e5e4f1fd27d8b3f8c97d69908b5e284.png", - "aggregators": [ - "PancakeExtended", - "1inch", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0xc17c30e98541188614df99239cabd40280810ca3": { - "address": "0xc17c30e98541188614df99239cabd40280810ca3", - "symbol": "RISE", - "decimals": 18, - "name": "EverRise", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xc17c30e98541188614df99239cabd40280810ca3.png", - "aggregators": [ - "PancakeCoinMarketCap", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0xacf34edcc424128cccc730bf85cdaceebcb3eece": { - "address": "0xacf34edcc424128cccc730bf85cdaceebcb3eece", - "symbol": "VST", - "decimals": 18, - "name": "Voice Street", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xacf34edcc424128cccc730bf85cdaceebcb3eece.png", - "aggregators": [ - "PancakeCoinMarketCap", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0xeca88125a5adbe82614ffc12d0db554e2e2867c8": { - "address": "0xeca88125a5adbe82614ffc12d0db554e2e2867c8", - "symbol": "VUSDC", - "decimals": 8, - "name": "Venus USDC", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xeca88125a5adbe82614ffc12d0db554e2e2867c8.png", - "aggregators": [ - "PancakeCoinMarketCap", - "LiFi", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0xd9483ea7214fcfd89b4fb8f513b544920e315a52": { - "address": "0xd9483ea7214fcfd89b4fb8f513b544920e315a52", - "symbol": "AVA", - "decimals": 18, - "name": "AVA Foundation Bridged AVA (BSC)", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xd9483ea7214fcfd89b4fb8f513b544920e315a52.png", - "aggregators": [ - "PancakeCoinMarketCap", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0xa045e37a0d1dd3a45fefb8803d22457abc0a728a": { - "address": "0xa045e37a0d1dd3a45fefb8803d22457abc0a728a", - "symbol": "GHNY", - "decimals": 18, - "name": "Grizzly Honey", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xa045e37a0d1dd3a45fefb8803d22457abc0a728a.png", - "aggregators": [ - "PancakeCoinMarketCap", - "1inch", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x92aa03137385f18539301349dcfc9ebc923ffb10": { - "address": "0x92aa03137385f18539301349dcfc9ebc923ffb10", - "symbol": "SKYAI", - "decimals": 18, - "name": "SKYAI", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x92aa03137385f18539301349dcfc9ebc923ffb10.png", - "aggregators": [ - "PancakeExtended", - "LiFi", - "Rubic", - "Squid", - "Rango" - ], - "occurrences": 5 - }, - "0xbfea674ce7d16e26e39e3c088810367a708ef94c": { - "address": "0xbfea674ce7d16e26e39e3c088810367a708ef94c", - "symbol": "APRIL", - "decimals": 18, - "name": "April", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xbfea674ce7d16e26e39e3c088810367a708ef94c.png", - "aggregators": [ - "PancakeCoinMarketCap", - "Rubic", - "Squid", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x0e7779e698052f8fe56c415c3818fcf89de9ac6d": { - "address": "0x0e7779e698052f8fe56c415c3818fcf89de9ac6d", - "symbol": "ULTI", - "decimals": 18, - "name": "Ultiverse", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x0e7779e698052f8fe56c415c3818fcf89de9ac6d.png", - "aggregators": [ - "PancakeCoinMarketCap", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x22168882276e5d5e1da694343b41dd7726eeb288": { - "address": "0x22168882276e5d5e1da694343b41dd7726eeb288", - "symbol": "WSB", - "decimals": 18, - "name": "WallStreetBets DApp", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x22168882276e5d5e1da694343b41dd7726eeb288.png", - "aggregators": [ - "PancakeCoinMarketCap", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x77d547256a2cd95f32f67ae0313e450ac200648d": { - "address": "0x77d547256a2cd95f32f67ae0313e450ac200648d", - "symbol": "LAZIO", - "decimals": 8, - "name": "Lazio Fan Token", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x77d547256a2cd95f32f67ae0313e450ac200648d.png", - "aggregators": [ - "PancakeExtended", - "LiFi", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x6bc5abcc56874d7facb90c2c3812cc19aaf9b204": { - "address": "0x6bc5abcc56874d7facb90c2c3812cc19aaf9b204", - "symbol": "RZ", - "decimals": 18, - "name": "RZcoin", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x6bc5abcc56874d7facb90c2c3812cc19aaf9b204.png", - "aggregators": [ - "CoinGecko", - "Rubic", - "Squid", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0xcf3232b85b43bca90e51d38cc06cc8bb8c8a3e36": { - "address": "0xcf3232b85b43bca90e51d38cc06cc8bb8c8a3e36", - "symbol": "BEAT", - "decimals": 18, - "name": "Beat Token", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xcf3232b85b43bca90e51d38cc06cc8bb8c8a3e36.png", - "aggregators": [ - "PancakeExtended", - "LiFi", - "Socket", - "Rubic", - "Rango" - ], - "occurrences": 5 - }, - "0xa9d75cc3405f0450955050c520843f99aff8749d": { - "address": "0xa9d75cc3405f0450955050c520843f99aff8749d", - "symbol": "RENA", - "decimals": 18, - "name": "Warena", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xa9d75cc3405f0450955050c520843f99aff8749d.png", - "aggregators": [ - "PancakeCoinMarketCap", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x0b15ddf19d47e6a86a56148fb4afffc6929bcb89": { - "address": "0x0b15ddf19d47e6a86a56148fb4afffc6929bcb89", - "symbol": "IDIA", - "decimals": 18, - "name": "Impossible Finance Launchpad", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x0b15ddf19d47e6a86a56148fb4afffc6929bcb89.png", - "aggregators": [ - "PancakeExtended", - "Rubic", - "Squid", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x9e1170c12fddd3b00fec42ddf4c942565d9be577": { - "address": "0x9e1170c12fddd3b00fec42ddf4c942565d9be577", - "symbol": "SPACE", - "decimals": 18, - "name": "Space Token", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x9e1170c12fddd3b00fec42ddf4c942565d9be577.png", - "aggregators": [ - "PancakeCoinMarketCap", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x1f1c90aeb2fd13ea972f0a71e35c0753848e3db0": { - "address": "0x1f1c90aeb2fd13ea972f0a71e35c0753848e3db0", - "symbol": "CHEEL", - "decimals": 18, - "name": "Cheelee", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x1f1c90aeb2fd13ea972f0a71e35c0753848e3db0.png", - "aggregators": [ - "PancakeCoinMarketCap", - "Rubic", - "Squid", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x36f5675029e129b5fcabb29ec750ed268520acf7": { - "address": "0x36f5675029e129b5fcabb29ec750ed268520acf7", - "symbol": "BADAI", - "decimals": 18, - "name": "BAD Coin", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x36f5675029e129b5fcabb29ec750ed268520acf7.png", - "aggregators": [ - "CoinGecko", - "1inch", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0xe55d97a97ae6a17706ee281486e98a84095d8aaf": { - "address": "0xe55d97a97ae6a17706ee281486e98a84095d8aaf", - "symbol": "AIPAD", - "decimals": 18, - "name": "AIPad", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xe55d97a97ae6a17706ee281486e98a84095d8aaf.png", - "aggregators": [ - "PancakeCoinMarketCap", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x07e551e31a793e20dc18494ff6b03095a8f8ee36": { - "address": "0x07e551e31a793e20dc18494ff6b03095a8f8ee36", - "symbol": "QMALL", - "decimals": 18, - "name": "Qmall", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x07e551e31a793e20dc18494ff6b03095a8f8ee36.png", - "aggregators": [ - "PancakeCoinMarketCap", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x5b6bf0c7f989de824677cfbd507d9635965e9cd3": { - "address": "0x5b6bf0c7f989de824677cfbd507d9635965e9cd3", - "symbol": "GMM", - "decimals": 18, - "name": "Gamium", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x5b6bf0c7f989de824677cfbd507d9635965e9cd3.png", - "aggregators": [ - "PancakeCoinMarketCap", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x38a001e57430f781404fff7a81de4bd67d1f6117": { - "address": "0x38a001e57430f781404fff7a81de4bd67d1f6117", - "symbol": "SOLVBTC.JUP", - "decimals": 18, - "name": "Solv Protocol SolvBTC Jupiter", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x38a001e57430f781404fff7a81de4bd67d1f6117.png", - "aggregators": [ - "CoinGecko", - "LiFi", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x783c3f003f172c6ac5ac700218a357d2d66ee2a2": { - "address": "0x783c3f003f172c6ac5ac700218a357d2d66ee2a2", - "symbol": "B2", - "decimals": 18, - "name": "BSquared Network", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x783c3f003f172c6ac5ac700218a357d2d66ee2a2.png", - "aggregators": [ - "PancakeExtended", - "LiFi", - "Rubic", - "Squid", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0xb60501346240fcde1615de56ea9fff1ac1da5673": { - "address": "0xb60501346240fcde1615de56ea9fff1ac1da5673", - "symbol": "BSL", - "decimals": 18, - "name": "BSClaunch", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xb60501346240fcde1615de56ea9fff1ac1da5673.png", - "aggregators": [ - "PancakeCoinMarketCap", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x6d5ad1592ed9d6d1df9b93c793ab759573ed6714": { - "address": "0x6d5ad1592ed9d6d1df9b93c793ab759573ed6714", - "symbol": "BROCCOLI", - "decimals": 18, - "name": "CZ'S Dog", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x6d5ad1592ed9d6d1df9b93c793ab759573ed6714.png", - "aggregators": [ - "PancakeExtended", - "1inch", - "LiFi", - "Rubic", - "Squid" - ], - "occurrences": 5 - }, - "0x037838b556d9c9d654148a284682c55bb5f56ef4": { - "address": "0x037838b556d9c9d654148a284682c55bb5f56ef4", - "symbol": "LIGHT", - "decimals": 18, - "name": "Lightning", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x037838b556d9c9d654148a284682c55bb5f56ef4.png", - "aggregators": [ - "PancakeExtended", - "LiFi", - "Rubic", - "Squid", - "Rango" - ], - "occurrences": 5 - }, - "0x7e52a123ed6db6ac872a875552935fbbd2544c86": { - "address": "0x7e52a123ed6db6ac872a875552935fbbd2544c86", - "symbol": "SYL", - "decimals": 6, - "name": "myDid", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x7e52a123ed6db6ac872a875552935fbbd2544c86.png", - "aggregators": [ - "PancakeCoinMarketCap", - "1inch", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0xe2604c9561d490624aa35e156e65e590eb749519": { - "address": "0xe2604c9561d490624aa35e156e65e590eb749519", - "symbol": "GM", - "decimals": 18, - "name": "GoldMiner", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xe2604c9561d490624aa35e156e65e590eb749519.png", - "aggregators": [ - "PancakeExtended", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x000351d035d8bbf2aa3131ebfecd66fb21836f6c": { - "address": "0x000351d035d8bbf2aa3131ebfecd66fb21836f6c", - "symbol": "SCOTTY", - "decimals": 18, - "name": "Scotty Beam", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x000351d035d8bbf2aa3131ebfecd66fb21836f6c.png", - "aggregators": [ - "PancakeCoinMarketCap", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0xcc7a91413769891de2e9ebbfc96d2eb1874b5760": { - "address": "0xcc7a91413769891de2e9ebbfc96d2eb1874b5760", - "symbol": "GOV", - "decimals": 18, - "name": "GovWorld", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xcc7a91413769891de2e9ebbfc96d2eb1874b5760.png", - "aggregators": [ - "PancakeCoinMarketCap", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x6dc3d0d6ec970bf5522611d8eff127145d02b675": { - "address": "0x6dc3d0d6ec970bf5522611d8eff127145d02b675", - "symbol": "RVL", - "decimals": 18, - "name": "Revolotto", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x6dc3d0d6ec970bf5522611d8eff127145d02b675.png", - "aggregators": [ - "PancakeCoinMarketCap", - "1inch", - "Socket", - "Rubic", - "Rango" - ], - "occurrences": 5 - }, - "0x9e711221b34a2d4b8f552bd5f4a6c4e7934920f7": { - "address": "0x9e711221b34a2d4b8f552bd5f4a6c4e7934920f7", - "symbol": "ORT", - "decimals": 8, - "name": "Okratech", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x9e711221b34a2d4b8f552bd5f4a6c4e7934920f7.png", - "aggregators": [ - "PancakeCoinMarketCap", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x12fc07081fab7de60987cad8e8dc407b606fb2f8": { - "address": "0x12fc07081fab7de60987cad8e8dc407b606fb2f8", - "symbol": "DARK", - "decimals": 8, - "name": "Dark Frontiers", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x12fc07081fab7de60987cad8e8dc407b606fb2f8.png", - "aggregators": [ - "PancakeCoinMarketCap", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x29abc4d03d133d8fd1f1c54318428353ce08727e": { - "address": "0x29abc4d03d133d8fd1f1c54318428353ce08727e", - "symbol": "KSWAP", - "decimals": 18, - "name": "KyotoSwap", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x29abc4d03d133d8fd1f1c54318428353ce08727e.png", - "aggregators": [ - "PancakeCoinMarketCap", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x2749c9f2f8568d389bbf61ed77784a43c3cd3e19": { - "address": "0x2749c9f2f8568d389bbf61ed77784a43c3cd3e19", - "symbol": "LIQ", - "decimals": 18, - "name": "Liquidus", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x2749c9f2f8568d389bbf61ed77784a43c3cd3e19.png", - "aggregators": [ - "PancakeCoinMarketCap", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x2134f3a7b18ae4161fbab6eccca7497e17a6777b": { - "address": "0x2134f3a7b18ae4161fbab6eccca7497e17a6777b", - "symbol": "MIR", - "decimals": 18, - "name": "Mir Token", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x2134f3a7b18ae4161fbab6eccca7497e17a6777b.png", - "aggregators": [ - "PancakeCoinMarketCap", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x0c9ad20802e89bea858ae2e8594843fafa887cb3": { - "address": "0x0c9ad20802e89bea858ae2e8594843fafa887cb3", - "symbol": "GROW", - "decimals": 18, - "name": "Grow Token", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x0c9ad20802e89bea858ae2e8594843fafa887cb3.png", - "aggregators": [ - "PancakeCoinMarketCap", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x1fd448d0361c3212961a70930f3129a45f425b68": { - "address": "0x1fd448d0361c3212961a70930f3129a45f425b68", - "symbol": "MARS", - "decimals": 18, - "name": "Marscoin", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x1fd448d0361c3212961a70930f3129a45f425b68.png", - "aggregators": [ - "CoinGecko", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0xa18bbdcd86e4178d10ecd9316667cfe4c4aa8717": { - "address": "0xa18bbdcd86e4178d10ecd9316667cfe4c4aa8717", - "symbol": "BNBXBT", - "decimals": 18, - "name": "BNBXBT", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xa18bbdcd86e4178d10ecd9316667cfe4c4aa8717.png", - "aggregators": [ - "CoinGecko", - "1inch", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0xb85d4c45383acfcfd9869645275349c9c3f28edb": { - "address": "0xb85d4c45383acfcfd9869645275349c9c3f28edb", - "symbol": "BAC", - "decimals": 18, - "name": "Bacon Protocol", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xb85d4c45383acfcfd9869645275349c9c3f28edb.png", - "aggregators": [ - "CoinGecko", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x7aaaa5b10f97321345acd76945083141be1c5631": { - "address": "0x7aaaa5b10f97321345acd76945083141be1c5631", - "symbol": "COW", - "decimals": 18, - "name": "Cowcoin", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x7aaaa5b10f97321345acd76945083141be1c5631.png", - "aggregators": [ - "CoinGecko", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x32b407ee915432be6d3f168bc1eff2a6f8b2034c": { - "address": "0x32b407ee915432be6d3f168bc1eff2a6f8b2034c", - "symbol": "HODL", - "decimals": 18, - "name": "HODL", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x32b407ee915432be6d3f168bc1eff2a6f8b2034c.png", - "aggregators": ["Metamask", "LiFi", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 5 - }, - "0xd06716e1ff2e492cc5034c2e81805562dd3b45fa": { - "address": "0xd06716e1ff2e492cc5034c2e81805562dd3b45fa", - "symbol": "MGP", - "decimals": 18, - "name": "Magpie", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xd06716e1ff2e492cc5034c2e81805562dd3b45fa.png", - "aggregators": [ - "PancakeExtended", - "LiFi", - "Rubic", - "Squid", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x68449870eea84453044bd430822827e21fd8f101": { - "address": "0x68449870eea84453044bd430822827e21fd8f101", - "symbol": "ZAI", - "decimals": 18, - "name": "Zaibot", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x68449870eea84453044bd430822827e21fd8f101.png", - "aggregators": [ - "PancakeCoinMarketCap", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x3c45a24d36ab6fc1925533c1f57bc7e1b6fba8a4": { - "address": "0x3c45a24d36ab6fc1925533c1f57bc7e1b6fba8a4", - "symbol": "ROOM", - "decimals": 18, - "name": "OptionRoom", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x3c45a24d36ab6fc1925533c1f57bc7e1b6fba8a4.png", - "aggregators": [ - "PancakeCoinMarketCap", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0xb0e1fc65c1a741b4662b813eb787d369b8614af1": { - "address": "0xb0e1fc65c1a741b4662b813eb787d369b8614af1", - "symbol": "IF", - "decimals": 18, - "name": "Impossible Finance", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xb0e1fc65c1a741b4662b813eb787d369b8614af1.png", - "aggregators": [ - "PancakeExtended", - "LiFi", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x151b1e2635a717bcdc836ecd6fbb62b674fe3e1d": { - "address": "0x151b1e2635a717bcdc836ecd6fbb62b674fe3e1d", - "symbol": "VXVS", - "decimals": 8, - "name": "Venus XVS", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x151b1e2635a717bcdc836ecd6fbb62b674fe3e1d.png", - "aggregators": [ - "PancakeCoinMarketCap", - "1inch", - "Socket", - "Rubic", - "Rango" - ], - "occurrences": 5 - }, - "0xbbcf57177d8752b21d080bf30a06ce20ad6333f8": { - "address": "0xbbcf57177d8752b21d080bf30a06ce20ad6333f8", - "symbol": "ZAM", - "decimals": 18, - "name": "Zam.io", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xbbcf57177d8752b21d080bf30a06ce20ad6333f8.png", - "aggregators": [ - "PancakeCoinMarketCap", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0xbda011d7f8ec00f66c1923b049b94c67d148d8b2": { - "address": "0xbda011d7f8ec00f66c1923b049b94c67d148d8b2", - "symbol": "AI", - "decimals": 18, - "name": "Sleepless AI", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xbda011d7f8ec00f66c1923b049b94c67d148d8b2.png", - "aggregators": [ - "PancakeCoinMarketCap", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0xc5326b32e8baef125acd68f8bc646fd646104f1c": { - "address": "0xc5326b32e8baef125acd68f8bc646fd646104f1c", - "symbol": "ZAP", - "decimals": 18, - "name": "Zap", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xc5326b32e8baef125acd68f8bc646fd646104f1c.png", - "aggregators": [ - "PancakeCoinMarketCap", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x298eff8af1ecebbb2c034eaa3b9a5d0cc56c59cd": { - "address": "0x298eff8af1ecebbb2c034eaa3b9a5d0cc56c59cd", - "symbol": "SOUL", - "decimals": 8, - "name": "Phantasma", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x298eff8af1ecebbb2c034eaa3b9a5d0cc56c59cd.png", - "aggregators": [ - "PancakeCoinMarketCap", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x8fc4532be3003fb5a3a2f9afc7e95b3bfbd5faab": { - "address": "0x8fc4532be3003fb5a3a2f9afc7e95b3bfbd5faab", - "symbol": "ARCONA", - "decimals": 18, - "name": "Arcona", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x8fc4532be3003fb5a3a2f9afc7e95b3bfbd5faab.png", - "aggregators": [ - "PancakeCoinMarketCap", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x968f6f898a6df937fc1859b323ac2f14643e3fed": { - "address": "0x968f6f898a6df937fc1859b323ac2f14643e3fed", - "symbol": "NWC", - "decimals": 18, - "name": "Numerico", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x968f6f898a6df937fc1859b323ac2f14643e3fed.png", - "aggregators": [ - "PancakeCoinMarketCap", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x9b17baadf0f21f03e35249e0e59723f34994f806": { - "address": "0x9b17baadf0f21f03e35249e0e59723f34994f806", - "symbol": "SURE", - "decimals": 18, - "name": "inSure DeFi", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x9b17baadf0f21f03e35249e0e59723f34994f806.png", - "aggregators": [ - "PancakeCoinMarketCap", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x8e17ed70334c87ece574c9d537bc153d8609e2a3": { - "address": "0x8e17ed70334c87ece574c9d537bc153d8609e2a3", - "symbol": "WRX", - "decimals": 8, - "name": "WazirX", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x8e17ed70334c87ece574c9d537bc153d8609e2a3.png", - "aggregators": [ - "PancakeCoinMarketCap", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x9ba4c78b048eeed69f4ed3cfddeda7b51baf7ca8": { - "address": "0x9ba4c78b048eeed69f4ed3cfddeda7b51baf7ca8", - "symbol": "GS", - "decimals": 18, - "name": "Genesis Shards", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x9ba4c78b048eeed69f4ed3cfddeda7b51baf7ca8.png", - "aggregators": [ - "PancakeCoinMarketCap", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x4b6000f9163de2e3f0a01ec37e06e1469dbbce9d": { - "address": "0x4b6000f9163de2e3f0a01ec37e06e1469dbbce9d", - "symbol": "KEYFI", - "decimals": 18, - "name": "KeyFi", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x4b6000f9163de2e3f0a01ec37e06e1469dbbce9d.png", - "aggregators": [ - "PancakeCoinMarketCap", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x8aa688ab789d1848d131c65d98ceaa8875d97ef1": { - "address": "0x8aa688ab789d1848d131c65d98ceaa8875d97ef1", - "symbol": "MTV", - "decimals": 18, - "name": "MultiVAC", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x8aa688ab789d1848d131c65d98ceaa8875d97ef1.png", - "aggregators": [ - "PancakeCoinMarketCap", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0xe4ca1f75eca6214393fce1c1b316c237664eaa8e": { - "address": "0xe4ca1f75eca6214393fce1c1b316c237664eaa8e", - "symbol": "ORN", - "decimals": 8, - "name": "Orion", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xe4ca1f75eca6214393fce1c1b316c237664eaa8e.png", - "aggregators": [ - "PancakeCoinMarketCap", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x6a545f9c64d8f7b957d8d2e6410b52095a9e6c29": { - "address": "0x6a545f9c64d8f7b957d8d2e6410b52095a9e6c29", - "symbol": "CFI", - "decimals": 18, - "name": "CyberFi", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x6a545f9c64d8f7b957d8d2e6410b52095a9e6c29.png", - "aggregators": [ - "PancakeCoinMarketCap", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0xbd7b8e4de08d9b01938f7ff2058f110ee1e0e8d4": { - "address": "0xbd7b8e4de08d9b01938f7ff2058f110ee1e0e8d4", - "symbol": "GHX", - "decimals": 18, - "name": "GamerCoin", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xbd7b8e4de08d9b01938f7ff2058f110ee1e0e8d4.png", - "aggregators": [ - "PancakeCoinMarketCap", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x872d068c25511be88c1f5990c53eeffcdf46c9b4": { - "address": "0x872d068c25511be88c1f5990c53eeffcdf46c9b4", - "symbol": "VENT", - "decimals": 18, - "name": "Vent Finance", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x872d068c25511be88c1f5990c53eeffcdf46c9b4.png", - "aggregators": [ - "PancakeCoinMarketCap", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x0e28bc9b03971e95acf9ae1326e51ecf9c55b498": { - "address": "0x0e28bc9b03971e95acf9ae1326e51ecf9c55b498", - "symbol": "BKN", - "decimals": 18, - "name": "Brickken", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x0e28bc9b03971e95acf9ae1326e51ecf9c55b498.png", - "aggregators": [ - "PancakeCoinMarketCap", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x9cd9c5a44cb8fab39b2ee3556f5c439e65e4fddd": { - "address": "0x9cd9c5a44cb8fab39b2ee3556f5c439e65e4fddd", - "symbol": "MARS4", - "decimals": 18, - "name": "MARS4", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x9cd9c5a44cb8fab39b2ee3556f5c439e65e4fddd.png", - "aggregators": [ - "PancakeCoinMarketCap", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x66cafcf6c32315623c7ffd3f2ff690aa36ebed38": { - "address": "0x66cafcf6c32315623c7ffd3f2ff690aa36ebed38", - "symbol": "BRKL", - "decimals": 18, - "name": "Brokoli", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x66cafcf6c32315623c7ffd3f2ff690aa36ebed38.png", - "aggregators": [ - "PancakeCoinMarketCap", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0xde5ed76e7c05ec5e4572cfc88d1acea165109e44": { - "address": "0xde5ed76e7c05ec5e4572cfc88d1acea165109e44", - "symbol": "DEUS", - "decimals": 18, - "name": "DEUS Finance", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xde5ed76e7c05ec5e4572cfc88d1acea165109e44.png", - "aggregators": [ - "PancakeCoinMarketCap", - "Rubic", - "Squid", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0xb72842d6f5fedf91d22d56202802bb9a79c6322e": { - "address": "0xb72842d6f5fedf91d22d56202802bb9a79c6322e", - "symbol": "MOMA", - "decimals": 18, - "name": "Mochi Market", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xb72842d6f5fedf91d22d56202802bb9a79c6322e.png", - "aggregators": [ - "PancakeCoinMarketCap", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x668048e70284107a6afab1711f28d88df3e72948": { - "address": "0x668048e70284107a6afab1711f28d88df3e72948", - "symbol": "CLS", - "decimals": 18, - "name": "Coldstack", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x668048e70284107a6afab1711f28d88df3e72948.png", - "aggregators": [ - "PancakeCoinMarketCap", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x47c9bcef4fe2dbcdf3abf508f147f1bbe8d4fef2": { - "address": "0x47c9bcef4fe2dbcdf3abf508f147f1bbe8d4fef2", - "symbol": "FLURRY", - "decimals": 18, - "name": "Flurry Finance", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x47c9bcef4fe2dbcdf3abf508f147f1bbe8d4fef2.png", - "aggregators": [ - "PancakeCoinMarketCap", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x686318000d982bc8dcc1cdcf8ffd22322f0960ed": { - "address": "0x686318000d982bc8dcc1cdcf8ffd22322f0960ed", - "symbol": "OPUL", - "decimals": 18, - "name": "Opulous", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x686318000d982bc8dcc1cdcf8ffd22322f0960ed.png", - "aggregators": [ - "PancakeCoinMarketCap", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x68784ffaa6ff05e3e04575df77960dc1d9f42b4a": { - "address": "0x68784ffaa6ff05e3e04575df77960dc1d9f42b4a", - "symbol": "ABR", - "decimals": 18, - "name": "Allbridge", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x68784ffaa6ff05e3e04575df77960dc1d9f42b4a.png", - "aggregators": [ - "PancakeCoinMarketCap", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x5c4bcc4dbaeabc7659f6435bce4e659314ebad87": { - "address": "0x5c4bcc4dbaeabc7659f6435bce4e659314ebad87", - "symbol": "NTX", - "decimals": 6, - "name": "NuNet", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x5c4bcc4dbaeabc7659f6435bce4e659314ebad87.png", - "aggregators": [ - "PancakeCoinMarketCap", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x6bcd897d4ba5675f860c7418ddc034f6c5610114": { - "address": "0x6bcd897d4ba5675f860c7418ddc034f6c5610114", - "symbol": "RAIN", - "decimals": 18, - "name": "Rainmaker Games", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x6bcd897d4ba5675f860c7418ddc034f6c5610114.png", - "aggregators": [ - "PancakeCoinMarketCap", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x738d96caf7096659db4c1afbf1e1bdfd281f388c": { - "address": "0x738d96caf7096659db4c1afbf1e1bdfd281f388c", - "symbol": "ANKRMATIC", - "decimals": 18, - "name": "Ankr Staked MATIC", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x738d96caf7096659db4c1afbf1e1bdfd281f388c.png", - "aggregators": [ - "PancakeCoinMarketCap", - "LiFi", - "Socket", - "Rubic", - "Rango" - ], - "occurrences": 5 - }, - "0x4ef285c8cbe52267c022c39da98b97ca4b7e2ff9": { - "address": "0x4ef285c8cbe52267c022c39da98b97ca4b7e2ff9", - "symbol": "ORE", - "decimals": 18, - "name": "pTokens ORE [via ChainPort.io]", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x4ef285c8cbe52267c022c39da98b97ca4b7e2ff9.png", - "aggregators": [ - "PancakeCoinMarketCap", - "1inch", - "Socket", - "Rubic", - "Rango" - ], - "occurrences": 5 - }, - "0xcafe001067cdef266afb7eb5a286dcfd277f3de5": { - "address": "0xcafe001067cdef266afb7eb5a286dcfd277f3de5", - "symbol": "PSP", - "decimals": 18, - "name": "ParaSwap", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xcafe001067cdef266afb7eb5a286dcfd277f3de5.png", - "aggregators": [ - "PancakeCoinMarketCap", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x0565805ca3a4105faee51983b0bd8ffb5ce1455c": { - "address": "0x0565805ca3a4105faee51983b0bd8ffb5ce1455c", - "symbol": "GUILD", - "decimals": 18, - "name": "BlockchainSpace", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x0565805ca3a4105faee51983b0bd8ffb5ce1455c.png", - "aggregators": [ - "PancakeCoinMarketCap", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x6d6ba21e4c4b29ca7bfa1c344ba1e35b8dae7205": { - "address": "0x6d6ba21e4c4b29ca7bfa1c344ba1e35b8dae7205", - "symbol": "KATA", - "decimals": 18, - "name": "Katana Inu", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x6d6ba21e4c4b29ca7bfa1c344ba1e35b8dae7205.png", - "aggregators": [ - "PancakeCoinMarketCap", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0xe069af87450fb51fc0d0e044617f1c134163e591": { - "address": "0xe069af87450fb51fc0d0e044617f1c134163e591", - "symbol": "VPP", - "decimals": 18, - "name": "Virtue Poker Points", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xe069af87450fb51fc0d0e044617f1c134163e591.png", - "aggregators": [ - "PancakeCoinMarketCap", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x200c234721b5e549c3693ccc93cf191f90dc2af9": { - "address": "0x200c234721b5e549c3693ccc93cf191f90dc2af9", - "symbol": "METAL", - "decimals": 18, - "name": "Badmad Robots", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x200c234721b5e549c3693ccc93cf191f90dc2af9.png", - "aggregators": [ - "PancakeCoinGecko", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x2117e8b79e8e176a670c9fcf945d4348556bffad": { - "address": "0x2117e8b79e8e176a670c9fcf945d4348556bffad", - "symbol": "EUL", - "decimals": 18, - "name": "EUL", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x2117e8b79e8e176a670c9fcf945d4348556bffad.png", - "aggregators": ["CoinGecko", "LiFi", "Socket", "Rubic", "Rango"], - "occurrences": 5 - }, - "0xce6c9c70f91c6797873efc80505f972290a88f5d": { - "address": "0xce6c9c70f91c6797873efc80505f972290a88f5d", - "symbol": "ICE", - "decimals": 18, - "name": "IceCreamSwap", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xce6c9c70f91c6797873efc80505f972290a88f5d.png", - "aggregators": [ - "PancakeCoinMarketCap", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x51e72dd1f2628295cc2ef931cb64fdbdc3a0c599": { - "address": "0x51e72dd1f2628295cc2ef931cb64fdbdc3a0c599", - "symbol": "KAS", - "decimals": 8, - "name": "Wrapped Kaspa", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x51e72dd1f2628295cc2ef931cb64fdbdc3a0c599.png", - "aggregators": [ - "PancakeCoinMarketCap", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x818835503f55283cd51a4399f595e295a9338753": { - "address": "0x818835503f55283cd51a4399f595e295a9338753", - "symbol": "AGI", - "decimals": 18, - "name": "Delysium", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x818835503f55283cd51a4399f595e295a9338753.png", - "aggregators": [ - "PancakeCoinMarketCap", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x69a87c8788d4a48c1362b3b357d0e6b59c11d93f": { - "address": "0x69a87c8788d4a48c1362b3b357d0e6b59c11d93f", - "symbol": "OBI", - "decimals": 18, - "name": "Orbofi AI", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x69a87c8788d4a48c1362b3b357d0e6b59c11d93f.png", - "aggregators": [ - "PancakeCoinMarketCap", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x307bc76e3d59ed73886a9cf9360a9286f6281ba7": { - "address": "0x307bc76e3d59ed73886a9cf9360a9286f6281ba7", - "symbol": "LMWR", - "decimals": 18, - "name": "LimeWire", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x307bc76e3d59ed73886a9cf9360a9286f6281ba7.png", - "aggregators": [ - "PancakeCoinMarketCap", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x2ac895feba458b42884dcbcb47d57e44c3a303c8": { - "address": "0x2ac895feba458b42884dcbcb47d57e44c3a303c8", - "symbol": "EARN", - "decimals": 18, - "name": "HOLD", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x2ac895feba458b42884dcbcb47d57e44c3a303c8.png", - "aggregators": [ - "PancakeCoinMarketCap", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x22514ffb0d7232a56f0c24090e7b68f179faa940": { - "address": "0x22514ffb0d7232a56f0c24090e7b68f179faa940", - "symbol": "QORPO", - "decimals": 18, - "name": "QORPO WORLD", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x22514ffb0d7232a56f0c24090e7b68f179faa940.png", - "aggregators": [ - "PancakeCoinMarketCap", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0xe2dca969624795985f2f083bcd0b674337ba130a": { - "address": "0xe2dca969624795985f2f083bcd0b674337ba130a", - "symbol": "SKR", - "decimals": 18, - "name": "Saakuru", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xe2dca969624795985f2f083bcd0b674337ba130a.png", - "aggregators": [ - "PancakeCoinMarketCap", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0xcb5e6e276adf62d68a1857880359750c8f79d076": { - "address": "0xcb5e6e276adf62d68a1857880359750c8f79d076", - "symbol": "MARS", - "decimals": 9, - "name": "Mars", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xcb5e6e276adf62d68a1857880359750c8f79d076.png", - "aggregators": [ - "CoinGecko", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x2e72393a57287b1a09857db589b27bb0fd499922": { - "address": "0x2e72393a57287b1a09857db589b27bb0fd499922", - "symbol": "HAPPY", - "decimals": 18, - "name": "Happy Cat", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x2e72393a57287b1a09857db589b27bb0fd499922.png", - "aggregators": [ - "CoinGecko", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x20482b0b4d9d8f60d3ab432b92f4c4b901a0d10c": { - "address": "0x20482b0b4d9d8f60d3ab432b92f4c4b901a0d10c", - "symbol": "REKT", - "decimals": 18, - "name": "Rekt", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x20482b0b4d9d8f60d3ab432b92f4c4b901a0d10c.png", - "aggregators": [ - "PancakeExtended", - "Socket", - "Rubic", - "Squid", - "Rango" - ], - "occurrences": 5 - }, - "0x3f160760535eb715d5809a26cf55408a2d9844c1": { - "address": "0x3f160760535eb715d5809a26cf55408a2d9844c1", - "symbol": "OL", - "decimals": 18, - "name": "OPENLOOT", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x3f160760535eb715d5809a26cf55408a2d9844c1.png", - "aggregators": ["CoinGecko", "LiFi", "Socket", "Rubic", "Rango"], - "occurrences": 5 - }, - "0x22b1458e780f8fa71e2f84502cee8b5a3cc731fa": { - "address": "0x22b1458e780f8fa71e2f84502cee8b5a3cc731fa", - "symbol": "M", - "decimals": 18, - "name": "MemeCore", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x22b1458e780f8fa71e2f84502cee8b5a3cc731fa.png", - "aggregators": [ - "PancakeExtended", - "1inch", - "LiFi", - "Rubic", - "Rango" - ], - "occurrences": 5 - }, - "0x38e382f74dfb84608f3c1f10187f6bef5951de93": { - "address": "0x38e382f74dfb84608f3c1f10187f6bef5951de93", - "symbol": "MUBI", - "decimals": 18, - "name": "Multibit", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x38e382f74dfb84608f3c1f10187f6bef5951de93.png", - "aggregators": [ - "PancakeExtended", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0xa1ed0bd9a4776830c5b7ba004f26427b71152ca5": { - "address": "0xa1ed0bd9a4776830c5b7ba004f26427b71152ca5", - "symbol": "DUEL", - "decimals": 18, - "name": "GameGPT", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xa1ed0bd9a4776830c5b7ba004f26427b71152ca5.png", - "aggregators": [ - "PancakeCoinMarketCap", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x9b26e318bc6a2c8b45f5daea2cc14697e0e0f8b5": { - "address": "0x9b26e318bc6a2c8b45f5daea2cc14697e0e0f8b5", - "symbol": "TADA", - "decimals": 18, - "name": "Ta-da", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x9b26e318bc6a2c8b45f5daea2cc14697e0e0f8b5.png", - "aggregators": [ - "PancakeCoinMarketCap", - "Rubic", - "Squid", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x35e5db674d8e93a03d814fa0ada70731efe8a4b9": { - "address": "0x35e5db674d8e93a03d814fa0ada70731efe8a4b9", - "symbol": "RLP", - "decimals": 18, - "name": "RLP", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x35e5db674d8e93a03d814fa0ada70731efe8a4b9.png", - "aggregators": [ - "PancakeExtended", - "LiFi", - "Socket", - "Rubic", - "Rango" - ], - "occurrences": 5 - }, - "0x6386adc4bc9c21984e34fd916bb349dd861742af": { - "address": "0x6386adc4bc9c21984e34fd916bb349dd861742af", - "symbol": "BOX", - "decimals": 18, - "name": "DeBoxToken", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x6386adc4bc9c21984e34fd916bb349dd861742af.png", - "aggregators": ["CoinGecko", "LiFi", "Socket", "Rubic", "Rango"], - "occurrences": 5 - }, - "0x47474747477b199288bf72a1d702f7fe0fb1deea": { - "address": "0x47474747477b199288bf72a1d702f7fe0fb1deea", - "symbol": "WLFI", - "decimals": 18, - "name": "World Liberty Financial", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x47474747477b199288bf72a1d702f7fe0fb1deea.png", - "aggregators": ["CoinGecko", "LiFi", "Socket", "Rubic", "Rango"], - "occurrences": 5 - }, - "0xe231db5f348d709239ef1741ea30961b3b635a61": { - "address": "0xe231db5f348d709239ef1741ea30961b3b635a61", - "symbol": "YNETHX", - "decimals": 18, - "name": "ynETH MAX", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xe231db5f348d709239ef1741ea30961b3b635a61.png", - "aggregators": [ - "CoinGecko", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x63ec886286f30ad392749b9e8f24f67f5b8ac394": { - "address": "0x63ec886286f30ad392749b9e8f24f67f5b8ac394", - "symbol": "4EVER", - "decimals": 18, - "name": "4EVERLAND", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x63ec886286f30ad392749b9e8f24f67f5b8ac394.png", - "aggregators": [ - "PancakeExtended", - "LiFi", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x733a6c29eda4a58931ae81b8d91e29f2eaf01df3": { - "address": "0x733a6c29eda4a58931ae81b8d91e29f2eaf01df3", - "symbol": "BRBTC", - "decimals": 8, - "name": "Bedrock BTC", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x733a6c29eda4a58931ae81b8d91e29f2eaf01df3.png", - "aggregators": [ - "PancakeExtended", - "LiFi", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x0fcfe33b46e5b21e5e96b722d4c85510198f9255": { - "address": "0x0fcfe33b46e5b21e5e96b722d4c85510198f9255", - "symbol": "MNSRY", - "decimals": 18, - "name": "Mansory Token", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x0fcfe33b46e5b21e5e96b722d4c85510198f9255.png", - "aggregators": [ - "CoinGecko", - "LiFi", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x9a70815dfb644a24b57358e1041f8d0324c8f6e1": { - "address": "0x9a70815dfb644a24b57358e1041f8d0324c8f6e1", - "symbol": "BOOP", - "decimals": 18, - "name": "BOOP", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x9a70815dfb644a24b57358e1041f8d0324c8f6e1.png", - "aggregators": [ - "PancakeExtended", - "LiFi", - "Socket", - "Rubic", - "Rango" - ], - "occurrences": 5 - }, - "0x915424ac489433130d92b04096f3b96c82e92a9d": { - "address": "0x915424ac489433130d92b04096f3b96c82e92a9d", - "symbol": "PROS", - "decimals": 18, - "name": "Prosper", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x915424ac489433130d92b04096f3b96c82e92a9d.png", - "aggregators": ["Metamask", "Socket", "Rubic", "Squid", "Rango"], - "occurrences": 5 - }, - "0xb3b02e4a9fb2bd28cc2ff97b0ab3f6b3ec1ee9d2": { - "address": "0xb3b02e4a9fb2bd28cc2ff97b0ab3f6b3ec1ee9d2", - "symbol": "USDF", - "decimals": 18, - "name": "Falcon USD", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xb3b02e4a9fb2bd28cc2ff97b0ab3f6b3ec1ee9d2.png", - "aggregators": [ - "PancakeExtended", - "LiFi", - "Socket", - "Rubic", - "Rango" - ], - "occurrences": 5 - }, - "0xab3dbcd9b096c3ff76275038bf58eac10d22c61f": { - "address": "0xab3dbcd9b096c3ff76275038bf58eac10d22c61f", - "symbol": "YUSD", - "decimals": 18, - "name": "Aegis YUSD", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xab3dbcd9b096c3ff76275038bf58eac10d22c61f.png", - "aggregators": ["CoinGecko", "LiFi", "Socket", "Rubic", "Rango"], - "occurrences": 5 - }, - "0x4809010926aec940b550d34a46a52739f996d75d": { - "address": "0x4809010926aec940b550d34a46a52739f996d75d", - "symbol": "WSRUSD", - "decimals": 18, - "name": "WSRUSD", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x4809010926aec940b550d34a46a52739f996d75d.png", - "aggregators": ["CoinGecko", "LiFi", "Socket", "Rubic", "Rango"], - "occurrences": 5 - }, - "0xfeb339236d25d3e415f280189bc7c2fbab6ae9ef": { - "address": "0xfeb339236d25d3e415f280189bc7c2fbab6ae9ef", - "symbol": "ENSO", - "decimals": 18, - "name": "Enso", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xfeb339236d25d3e415f280189bc7c2fbab6ae9ef.png", - "aggregators": [ - "PancakeExtended", - "LiFi", - "Socket", - "Rubic", - "Rango" - ], - "occurrences": 5 - }, - "0x7ddf164cecfddd0f992299d033b5a11279a15929": { - "address": "0x7ddf164cecfddd0f992299d033b5a11279a15929", - "symbol": "PROVE", - "decimals": 18, - "name": "Succinct", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x7ddf164cecfddd0f992299d033b5a11279a15929.png", - "aggregators": ["CoinGecko", "LiFi", "Socket", "Rubic", "Rango"], - "occurrences": 5 - }, - "0x61fac5f038515572d6f42d4bcb6b581642753d50": { - "address": "0x61fac5f038515572d6f42d4bcb6b581642753d50", - "symbol": "IN", - "decimals": 18, - "name": "INFINIT", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x61fac5f038515572d6f42d4bcb6b581642753d50.png", - "aggregators": [ - "PancakeExtended", - "Socket", - "Rubic", - "Squid", - "Rango" - ], - "occurrences": 5 - }, - "0xd23a186a78c0b3b805505e5f8ea4083295ef9f3a": { - "address": "0xd23a186a78c0b3b805505e5f8ea4083295ef9f3a", - "symbol": "BARD", - "decimals": 18, - "name": "Lombard", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xd23a186a78c0b3b805505e5f8ea4083295ef9f3a.png", - "aggregators": [ - "PancakeExtended", - "LiFi", - "Socket", - "Rubic", - "Rango" - ], - "occurrences": 5 - }, - "0xf54b94ea21e1da5d51ef00fd4502225e5394f874": { - "address": "0xf54b94ea21e1da5d51ef00fd4502225e5394f874", - "symbol": "IWNON", - "decimals": 18, - "name": "iShares Russell 2000 Value ETF (Ondo Tokenized)", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xf54b94ea21e1da5d51ef00fd4502225e5394f874.png", - "aggregators": ["CoinGecko", "LiFi", "Rubic", "Rango", "Ondo"], - "occurrences": 5, - "rwaData": { - "market": { - "nextOpen": "2026-05-18T20:01:00.000Z", - "nextClose": "2026-05-18T19:59:00.000Z" - }, - "nextPause": { - "start": "2027-06-09T23:50:00.000Z", - "end": "2027-06-11T00:00:00.000Z" - }, - "ticker": "IWN", - "instrumentType": "stock" - } - }, - "0xcf9caf83053213c44dd7027db3e1e4ac98e55f8f": { - "address": "0xcf9caf83053213c44dd7027db3e1e4ac98e55f8f", - "symbol": "ITOTON", - "decimals": 18, - "name": "iShares Core S&P Total US Stock Market ETF (Ondo Tokenized)", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xcf9caf83053213c44dd7027db3e1e4ac98e55f8f.png", - "aggregators": ["CoinGecko", "LiFi", "Rubic", "Rango", "Ondo"], - "occurrences": 5, - "rwaData": { - "market": { - "nextOpen": "2026-05-18T20:01:00.000Z", - "nextClose": "2026-05-18T19:59:00.000Z" - }, - "nextPause": { - "start": "2027-06-09T23:50:00.000Z", - "end": "2027-06-11T00:00:00.000Z" - }, - "ticker": "ITOT", - "instrumentType": "stock" - } - }, - "0x2b1d5cdecc356530a746c5754231efaeaca64022": { - "address": "0x2b1d5cdecc356530a746c5754231efaeaca64022", - "symbol": "PBRON", - "decimals": 18, - "name": "Petrobras (Ondo Tokenized)", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x2b1d5cdecc356530a746c5754231efaeaca64022.png", - "aggregators": ["CoinGecko", "LiFi", "Rubic", "Rango", "Ondo"], - "occurrences": 5, - "rwaData": { - "market": { - "nextOpen": "2026-05-18T20:01:00.000Z", - "nextClose": "2026-05-18T19:59:00.000Z" - }, - "nextPause": { - "start": null, - "end": null - }, - "ticker": "PBR", - "instrumentType": "stock" - } - }, - "0x8a83c31d6751833b4940b6e871c48d9a15a07b46": { - "address": "0x8a83c31d6751833b4940b6e871c48d9a15a07b46", - "symbol": "PFEON", - "decimals": 18, - "name": "Pfizer (Ondo Tokenized)", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x8a83c31d6751833b4940b6e871c48d9a15a07b46.png", - "aggregators": ["CoinGecko", "LiFi", "Rubic", "Rango", "Ondo"], - "occurrences": 5, - "rwaData": { - "market": { - "nextOpen": "2026-05-18T20:01:00.000Z", - "nextClose": "2026-05-18T19:59:00.000Z" - }, - "nextPause": { - "start": null, - "end": null - }, - "ticker": "PFE", - "instrumentType": "stock" - } - }, - "0x00c81d35eddf44c75d4db9e07bdcdc236eb0ebcf": { - "address": "0x00c81d35eddf44c75d4db9e07bdcdc236eb0ebcf", - "symbol": "EEMON", - "decimals": 18, - "name": "iShares MSCI Emerging Markets ETF (Ondo Tokenized)", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x00c81d35eddf44c75d4db9e07bdcdc236eb0ebcf.png", - "aggregators": ["CoinGecko", "LiFi", "Rubic", "Rango", "Ondo"], - "occurrences": 5, - "rwaData": { - "market": { - "nextOpen": "2026-05-18T20:01:00.000Z", - "nextClose": "2026-05-18T19:59:00.000Z" - }, - "nextPause": { - "start": "2027-06-09T23:50:00.000Z", - "end": "2027-06-11T00:00:00.000Z" - }, - "ticker": "EEM", - "instrumentType": "stock" - } - }, - "0xc142ba8ccd36d80c3a001342fb83e4c3d218a873": { - "address": "0xc142ba8ccd36d80c3a001342fb83e4c3d218a873", - "symbol": "SMCION", - "decimals": 18, - "name": "Super Micro Computer (Ondo Tokenized)", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xc142ba8ccd36d80c3a001342fb83e4c3d218a873.png", - "aggregators": ["CoinGecko", "LiFi", "Rubic", "Rango", "Ondo"], - "occurrences": 5, - "rwaData": { - "market": { - "nextOpen": "2026-05-18T20:01:00.000Z", - "nextClose": "2026-05-18T19:59:00.000Z" - }, - "nextPause": { - "start": null, - "end": null - }, - "ticker": "SMCI", - "instrumentType": "stock" - } - }, - "0x1501ec83ffef405b4331cc4f73277a40fb0c627d": { - "address": "0x1501ec83ffef405b4331cc4f73277a40fb0c627d", - "symbol": "MRVLON", - "decimals": 18, - "name": "Marvell Technology (Ondo Tokenized)", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x1501ec83ffef405b4331cc4f73277a40fb0c627d.png", - "aggregators": ["CoinGecko", "LiFi", "Rubic", "Rango", "Ondo"], - "occurrences": 5, - "rwaData": { - "market": { - "nextOpen": "2026-05-18T20:01:00.000Z", - "nextClose": "2026-05-18T19:59:00.000Z" - }, - "nextPause": { - "start": "2026-05-27T20:00:00.000Z", - "end": "2026-05-27T23:30:00.000Z" - }, - "ticker": "MRVL", - "instrumentType": "stock" - } - }, - "0x08ce97f3d5cf11e577d091ab048bc5e2eae3fabb": { - "address": "0x08ce97f3d5cf11e577d091ab048bc5e2eae3fabb", - "symbol": "AGGON", - "decimals": 18, - "name": "iShares Core US Aggregate Bond ETF (Ondo Tokenized)", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x08ce97f3d5cf11e577d091ab048bc5e2eae3fabb.png", - "aggregators": ["CoinGecko", "LiFi", "Rubic", "Rango", "Ondo"], - "occurrences": 5, - "rwaData": { - "market": { - "nextOpen": "2026-05-18T20:01:00.000Z", - "nextClose": "2026-05-18T19:59:00.000Z" - }, - "nextPause": { - "start": "2027-06-30T23:50:00.000Z", - "end": "2027-07-02T00:00:00.000Z" - }, - "ticker": "AGG", - "instrumentType": "stock" - } - }, - "0x34304f2f7cc487eb4186e6d69f5905a613474aa2": { - "address": "0x34304f2f7cc487eb4186e6d69f5905a613474aa2", - "symbol": "CSCOON", - "decimals": 18, - "name": "Cisco Systems (Ondo Tokenized)", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x34304f2f7cc487eb4186e6d69f5905a613474aa2.png", - "aggregators": ["CoinGecko", "LiFi", "Rubic", "Rango", "Ondo"], - "occurrences": 5, - "rwaData": { - "market": { - "nextOpen": "2026-05-18T20:01:00.000Z", - "nextClose": "2026-05-18T19:59:00.000Z" - }, - "nextPause": { - "start": null, - "end": null - }, - "ticker": "CSCO", - "instrumentType": "stock" - } - }, - "0xaed5985afc12aa09d87f55b4b1e6bc3b8f7b0208": { - "address": "0xaed5985afc12aa09d87f55b4b1e6bc3b8f7b0208", - "symbol": "CMGON", - "decimals": 18, - "name": "Chipotle (Ondo Tokenized)", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xaed5985afc12aa09d87f55b4b1e6bc3b8f7b0208.png", - "aggregators": ["CoinGecko", "LiFi", "Rubic", "Rango", "Ondo"], - "occurrences": 5, - "rwaData": { - "market": { - "nextOpen": "2026-05-18T20:01:00.000Z", - "nextClose": "2026-05-18T19:59:00.000Z" - }, - "nextPause": { - "start": null, - "end": null - }, - "ticker": "CMG", - "instrumentType": "stock" - } - }, - "0x19601179a60f55ff6636f5d1a8b6671053bd60a8": { - "address": "0x19601179a60f55ff6636f5d1a8b6671053bd60a8", - "symbol": "HOODON", - "decimals": 18, - "name": "Robinhood Markets (Ondo Tokenized)", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x19601179a60f55ff6636f5d1a8b6671053bd60a8.png", - "aggregators": ["CoinGecko", "LiFi", "Rubic", "Rango", "Ondo"], - "occurrences": 5, - "rwaData": { - "market": { - "nextOpen": "2026-05-18T20:01:00.000Z", - "nextClose": "2026-05-18T19:59:00.000Z" - }, - "nextPause": { - "start": null, - "end": null - }, - "ticker": "HOOD", - "instrumentType": "stock" - } - }, - "0x4da12f47578ef89c76179b760c778e70b668f80b": { - "address": "0x4da12f47578ef89c76179b760c778e70b668f80b", - "symbol": "RDDTON", - "decimals": 18, - "name": "Reddit (Ondo Tokenized)", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x4da12f47578ef89c76179b760c778e70b668f80b.png", - "aggregators": ["CoinGecko", "LiFi", "Rubic", "Rango", "Ondo"], - "occurrences": 5, - "rwaData": { - "market": { - "nextOpen": "2026-05-18T20:01:00.000Z", - "nextClose": "2026-05-18T19:59:00.000Z" - }, - "nextPause": { - "start": null, - "end": null - }, - "ticker": "RDDT", - "instrumentType": "stock" - } - }, - "0x9f16e46c73b43bdb70861247d537bee4ea18f639": { - "address": "0x9f16e46c73b43bdb70861247d537bee4ea18f639", - "symbol": "AMDON", - "decimals": 18, - "name": "AMD (Ondo Tokenized)", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x9f16e46c73b43bdb70861247d537bee4ea18f639.png", - "aggregators": ["CoinGecko", "LiFi", "Rubic", "Rango", "Ondo"], - "occurrences": 5, - "rwaData": { - "market": { - "nextOpen": "2026-05-18T20:01:00.000Z", - "nextClose": "2026-05-18T19:59:00.000Z" - }, - "nextPause": { - "start": null, - "end": null - }, - "ticker": "AMD", - "instrumentType": "stock" - } - }, - "0x9351abd19f42101dd36025e495b98e910b255d78": { - "address": "0x9351abd19f42101dd36025e495b98e910b255d78", - "symbol": "PLTRON", - "decimals": 18, - "name": "Palantir Technologies (Ondo Tokenized)", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x9351abd19f42101dd36025e495b98e910b255d78.png", - "aggregators": ["CoinGecko", "LiFi", "Rubic", "Rango", "Ondo"], - "occurrences": 5, - "rwaData": { - "market": { - "nextOpen": "2026-05-18T20:01:00.000Z", - "nextClose": "2026-05-18T19:59:00.000Z" - }, - "nextPause": { - "start": null, - "end": null - }, - "ticker": "PLTR", - "instrumentType": "stock" - } - }, - "0x0ed2e3180edf393e6bf8db124bd15ddd54de150a": { - "address": "0x0ed2e3180edf393e6bf8db124bd15ddd54de150a", - "symbol": "AVGOON", - "decimals": 18, - "name": "Broadcom (Ondo Tokenized)", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x0ed2e3180edf393e6bf8db124bd15ddd54de150a.png", - "aggregators": ["CoinGecko", "LiFi", "Rubic", "Rango", "Ondo"], - "occurrences": 5, - "rwaData": { - "market": { - "nextOpen": "2026-05-18T20:01:00.000Z", - "nextClose": "2026-05-18T19:59:00.000Z" - }, - "nextPause": { - "start": "2026-06-03T20:00:00.000Z", - "end": "2026-06-03T23:30:00.000Z" - }, - "ticker": "AVGO", - "instrumentType": "stock" - } - }, - "0x4553cfe1c09f37f38b12dc509f676964e392f8fc": { - "address": "0x4553cfe1c09f37f38b12dc509f676964e392f8fc", - "symbol": "AMZNON", - "decimals": 18, - "name": "Amazon (Ondo Tokenized)", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x4553cfe1c09f37f38b12dc509f676964e392f8fc.png", - "aggregators": ["CoinGecko", "LiFi", "Rubic", "Rango", "Ondo"], - "occurrences": 5, - "rwaData": { - "market": { - "nextOpen": "2026-05-18T20:01:00.000Z", - "nextClose": "2026-05-18T19:59:00.000Z" - }, - "nextPause": { - "start": null, - "end": null - }, - "ticker": "AMZN", - "instrumentType": "stock" - } - }, - "0x138ed6833ff4e8811e1fea0d005e13726c8886f9": { - "address": "0x138ed6833ff4e8811e1fea0d005e13726c8886f9", - "symbol": "SNOWON", - "decimals": 18, - "name": "Snowflake (Ondo Tokenized)", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x138ed6833ff4e8811e1fea0d005e13726c8886f9.png", - "aggregators": ["CoinGecko", "LiFi", "Rubic", "Rango", "Ondo"], - "occurrences": 5, - "rwaData": { - "market": { - "nextOpen": "2026-05-18T20:01:00.000Z", - "nextClose": "2026-05-18T19:59:00.000Z" - }, - "nextPause": { - "start": "2026-05-27T20:00:00.000Z", - "end": "2026-05-27T23:30:00.000Z" - }, - "ticker": "SNOW", - "instrumentType": "stock" - } - }, - "0x091fc7778e6932d4009b087b191d1ee3bac5729a": { - "address": "0x091fc7778e6932d4009b087b191d1ee3bac5729a", - "symbol": "GOOGLON", - "decimals": 18, - "name": "Alphabet Class A (Ondo Tokenized)", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x091fc7778e6932d4009b087b191d1ee3bac5729a.png", - "aggregators": ["CoinGecko", "LiFi", "Rubic", "Rango", "Ondo"], - "occurrences": 5, - "rwaData": { - "market": { - "nextOpen": "2026-05-18T20:01:00.000Z", - "nextClose": "2026-05-18T19:59:00.000Z" - }, - "nextPause": { - "start": "2026-06-07T23:52:00.000Z", - "end": "2026-06-08T00:12:00.000Z" - }, - "ticker": "GOOGL", - "instrumentType": "stock" - } - }, - "0xe8ff70859ce4cbd72e4352b4fb45f5bf39d07464": { - "address": "0xe8ff70859ce4cbd72e4352b4fb45f5bf39d07464", - "symbol": "IBMON", - "decimals": 18, - "name": "IBM (Ondo Tokenized)", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xe8ff70859ce4cbd72e4352b4fb45f5bf39d07464.png", - "aggregators": ["CoinGecko", "LiFi", "Rubic", "Rango", "Ondo"], - "occurrences": 5, - "rwaData": { - "market": { - "nextOpen": "2026-05-18T20:01:00.000Z", - "nextClose": "2026-05-18T19:59:00.000Z" - }, - "nextPause": { - "start": null, - "end": null - }, - "ticker": "IBM", - "instrumentType": "stock" - } - }, - "0xf21132a811ad1a878e21af60f64d4e690c9daa42": { - "address": "0xf21132a811ad1a878e21af60f64d4e690c9daa42", - "symbol": "BAON", - "decimals": 18, - "name": "Boeing (Ondo Tokenized)", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xf21132a811ad1a878e21af60f64d4e690c9daa42.png", - "aggregators": ["CoinGecko", "LiFi", "Rubic", "Rango", "Ondo"], - "occurrences": 5, - "rwaData": { - "market": { - "nextOpen": "2026-05-18T20:01:00.000Z", - "nextClose": "2026-05-18T19:59:00.000Z" - }, - "nextPause": { - "start": null, - "end": null - }, - "ticker": "BA", - "instrumentType": "stock" - } - }, - "0x6bfe75d1ad432050ea973c3a3dcd88f02e2444c3": { - "address": "0x6bfe75d1ad432050ea973c3a3dcd88f02e2444c3", - "symbol": "MSFTON", - "decimals": 18, - "name": "Microsoft (Ondo Tokenized)", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x6bfe75d1ad432050ea973c3a3dcd88f02e2444c3.png", - "aggregators": ["CoinGecko", "LiFi", "Rubic", "Rango", "Ondo"], - "occurrences": 5, - "rwaData": { - "market": { - "nextOpen": "2026-05-18T20:01:00.000Z", - "nextClose": "2026-05-18T19:59:00.000Z" - }, - "nextPause": { - "start": "2026-05-20T23:52:00.000Z", - "end": "2026-05-21T00:12:00.000Z" - }, - "ticker": "MSFT", - "instrumentType": "stock" - } - }, - "0x341d31b2be1fee9c00e395a62ba41837f4322eed": { - "address": "0x341d31b2be1fee9c00e395a62ba41837f4322eed", - "symbol": "LLYON", - "decimals": 18, - "name": "Eli Lilly (Ondo Tokenized)", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x341d31b2be1fee9c00e395a62ba41837f4322eed.png", - "aggregators": ["CoinGecko", "LiFi", "Rubic", "Rango", "Ondo"], - "occurrences": 5, - "rwaData": { - "market": { - "nextOpen": "2026-05-18T20:01:00.000Z", - "nextClose": "2026-05-18T19:59:00.000Z" - }, - "nextPause": { - "start": null, - "end": null - }, - "ticker": "LLY", - "instrumentType": "stock" - } - }, - "0xd7df5863a3e742f0c767768cdfcb63f09e0422f6": { - "address": "0xd7df5863a3e742f0c767768cdfcb63f09e0422f6", - "symbol": "METAON", - "decimals": 18, - "name": "Meta Platforms (Ondo Tokenized)", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xd7df5863a3e742f0c767768cdfcb63f09e0422f6.png", - "aggregators": ["CoinGecko", "LiFi", "Rubic", "Rango", "Ondo"], - "occurrences": 5, - "rwaData": { - "market": { - "nextOpen": "2026-05-18T20:01:00.000Z", - "nextClose": "2026-05-18T19:59:00.000Z" - }, - "nextPause": { - "start": null, - "end": null - }, - "ticker": "META", - "instrumentType": "stock" - } - }, - "0x1104eb7e85e25eb45f88e638b0c27a06c1a91cb2": { - "address": "0x1104eb7e85e25eb45f88e638b0c27a06c1a91cb2", - "symbol": "IVVON", - "decimals": 18, - "name": "iShares Core S&P 500 ETF (Ondo Tokenized)", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x1104eb7e85e25eb45f88e638b0c27a06c1a91cb2.png", - "aggregators": ["CoinGecko", "LiFi", "Rubic", "Rango", "Ondo"], - "occurrences": 5, - "rwaData": { - "market": { - "nextOpen": "2026-05-18T20:01:00.000Z", - "nextClose": "2026-05-18T19:59:00.000Z" - }, - "nextPause": { - "start": "2027-06-09T23:50:00.000Z", - "end": "2027-06-11T00:00:00.000Z" - }, - "ticker": "IVV", - "instrumentType": "stock" - } - }, - "0x6a708ead771238919d85930b5a0f10454e1c331a": { - "address": "0x6a708ead771238919d85930b5a0f10454e1c331a", - "symbol": "SPYON", - "decimals": 18, - "name": "SPDR S&P 500 ETF (Ondo Tokenized)", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x6a708ead771238919d85930b5a0f10454e1c331a.png", - "aggregators": ["CoinGecko", "LiFi", "Rubic", "Rango", "Ondo"], - "occurrences": 5, - "rwaData": { - "market": { - "nextOpen": "2026-05-18T20:01:00.000Z", - "nextClose": "2026-05-18T19:59:00.000Z" - }, - "nextPause": { - "start": null, - "end": null - }, - "ticker": "SPY", - "instrumentType": "stock" - } - }, - "0x7839fbfd09dae4d0f15bfb36b8f16f7898fbe684": { - "address": "0x7839fbfd09dae4d0f15bfb36b8f16f7898fbe684", - "symbol": "MIRA", - "decimals": 18, - "name": "Mira", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x7839fbfd09dae4d0f15bfb36b8f16f7898fbe684.png", - "aggregators": ["PancakeExtended", "Socket", "Rubic", "Squid"], - "occurrences": 4 - }, - "0xcce5f304fd043d6a4e8ccb5376a4a4fb583b98d5": { - "address": "0xcce5f304fd043d6a4e8ccb5376a4a4fb583b98d5", - "symbol": "ALLO", - "decimals": 18, - "name": "Allora", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xcce5f304fd043d6a4e8ccb5376a4a4fb583b98d5.png", - "aggregators": ["CoinGecko", "Socket", "Rubic", "Rango"], - "occurrences": 4 - }, - "0x2ac26ec236df5d1d2ad1a6dd4e448a90e45dc35d": { - "address": "0x2ac26ec236df5d1d2ad1a6dd4e448a90e45dc35d", - "symbol": "TIPON", - "decimals": 18, - "name": "iShares TIPS Bond ETF (Ondo Tokenized)", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x2ac26ec236df5d1d2ad1a6dd4e448a90e45dc35d.png", - "aggregators": ["CoinGecko", "LiFi", "Rubic", "Rango", "Ondo"], - "occurrences": 5, - "rwaData": { - "market": { - "nextOpen": "2026-05-18T20:01:00.000Z", - "nextClose": "2026-05-18T19:59:00.000Z" - }, - "nextPause": { - "start": "2027-06-30T23:50:00.000Z", - "end": "2027-07-02T00:00:00.000Z" - }, - "ticker": "TIP", - "instrumentType": "stock" - } - }, - "0x08a513779f46ffb7a34f16094a94016d010128a8": { - "address": "0x08a513779f46ffb7a34f16094a94016d010128a8", - "symbol": "NVOON", - "decimals": 18, - "name": "Novo Nordisk (Ondo Tokenized)", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x08a513779f46ffb7a34f16094a94016d010128a8.png", - "aggregators": ["CoinGecko", "LiFi", "Rubic", "Rango", "Ondo"], - "occurrences": 5, - "rwaData": { - "market": { - "nextOpen": "2026-05-18T20:01:00.000Z", - "nextClose": "2026-05-18T19:59:00.000Z" - }, - "nextPause": { - "start": null, - "end": null - }, - "ticker": "NVO", - "instrumentType": "stock" - } - }, - "0xa528caaa2f96090e379d43f90834c75df54d6e74": { - "address": "0xa528caaa2f96090e379d43f90834c75df54d6e74", - "symbol": "INTCON", - "decimals": 18, - "name": "Intel (Ondo Tokenized)", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xa528caaa2f96090e379d43f90834c75df54d6e74.png", - "aggregators": ["CoinGecko", "LiFi", "Rubic", "Rango", "Ondo"], - "occurrences": 5, - "rwaData": { - "market": { - "nextOpen": "2026-05-18T20:01:00.000Z", - "nextClose": "2026-05-18T19:59:00.000Z" - }, - "nextPause": { - "start": null, - "end": null - }, - "ticker": "INTC", - "instrumentType": "stock" - } - }, - "0xde9d6036fca870f7efc5a82722ae694c371ac909": { - "address": "0xde9d6036fca870f7efc5a82722ae694c371ac909", - "symbol": "UBERON", - "decimals": 18, - "name": "Uber (Ondo Tokenized)", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xde9d6036fca870f7efc5a82722ae694c371ac909.png", - "aggregators": ["CoinGecko", "LiFi", "Rubic", "Rango", "Ondo"], - "occurrences": 5, - "rwaData": { - "market": { - "nextOpen": "2026-05-18T20:01:00.000Z", - "nextClose": "2026-05-18T19:59:00.000Z" - }, - "nextPause": { - "start": null, - "end": null - }, - "ticker": "UBER", - "instrumentType": "stock" - } - }, - "0x94d7754541b829a87321d56121bc544167ac490d": { - "address": "0x94d7754541b829a87321d56121bc544167ac490d", - "symbol": "SBUXON", - "decimals": 18, - "name": "Starbucks (Ondo Tokenized)", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x94d7754541b829a87321d56121bc544167ac490d.png", - "aggregators": ["CoinGecko", "LiFi", "Rubic", "Rango", "Ondo"], - "occurrences": 5, - "rwaData": { - "market": { - "nextOpen": "2026-05-18T20:01:00.000Z", - "nextClose": "2026-05-18T19:59:00.000Z" - }, - "nextPause": { - "start": null, - "end": null - }, - "ticker": "SBUX", - "instrumentType": "stock" - } - }, - "0x40755f06ab7f8de1ab3a9413b1ef562d63de19b1": { - "address": "0x40755f06ab7f8de1ab3a9413b1ef562d63de19b1", - "symbol": "IWFON", - "decimals": 18, - "name": "iShares Russell 1000 Growth ETF (Ondo Tokenized)", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x40755f06ab7f8de1ab3a9413b1ef562d63de19b1.png", - "aggregators": ["CoinGecko", "LiFi", "Rubic", "Rango", "Ondo"], - "occurrences": 5, - "rwaData": { - "market": { - "nextOpen": "2026-05-18T20:01:00.000Z", - "nextClose": "2026-05-18T19:59:00.000Z" - }, - "nextPause": { - "start": "2027-06-09T23:50:00.000Z", - "end": "2027-06-11T00:00:00.000Z" - }, - "ticker": "IWF", - "instrumentType": "stock" - } - }, - "0x467e59ce5d5fe01686d4a80dd1e1dae13549aa6c": { - "address": "0x467e59ce5d5fe01686d4a80dd1e1dae13549aa6c", - "symbol": "BIDUON", - "decimals": 18, - "name": "Baidu (Ondo Tokenized)", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x467e59ce5d5fe01686d4a80dd1e1dae13549aa6c.png", - "aggregators": ["CoinGecko", "LiFi", "Rubic", "Rango", "Ondo"], - "occurrences": 5, - "rwaData": { - "market": { - "nextOpen": "2026-05-18T20:01:00.000Z", - "nextClose": "2026-05-18T19:59:00.000Z" - }, - "nextPause": { - "start": null, - "end": null - }, - "ticker": "BIDU", - "instrumentType": "stock" - } - }, - "0x03e4bd1ea53f1da84513da0319d1f03dd1bbcf93": { - "address": "0x03e4bd1ea53f1da84513da0319d1f03dd1bbcf93", - "symbol": "ORCLON", - "decimals": 18, - "name": "Oracle (Ondo Tokenized)", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x03e4bd1ea53f1da84513da0319d1f03dd1bbcf93.png", - "aggregators": ["CoinGecko", "LiFi", "Rubic", "Rango", "Ondo"], - "occurrences": 5, - "rwaData": { - "market": { - "nextOpen": "2026-05-18T20:01:00.000Z", - "nextClose": "2026-05-18T19:59:00.000Z" - }, - "nextPause": { - "start": "2026-06-10T09:00:00.000Z", - "end": "2026-06-10T23:30:00.000Z" - }, - "ticker": "ORCL", - "instrumentType": "stock" - } - }, - "0x992879cd8ce0c312d98648875b5a8d6d042cbf34": { - "address": "0x992879cd8ce0c312d98648875b5a8d6d042cbf34", - "symbol": "CRCLON", - "decimals": 18, - "name": "Circle Internet Group (Ondo Tokenized)", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x992879cd8ce0c312d98648875b5a8d6d042cbf34.png", - "aggregators": ["CoinGecko", "LiFi", "Rubic", "Rango", "Ondo"], - "occurrences": 5, - "rwaData": { - "market": { - "nextOpen": "2026-05-18T20:01:00.000Z", - "nextClose": "2026-05-18T19:59:00.000Z" - }, - "nextPause": { - "start": null, - "end": null - }, - "ticker": "CRCL", - "instrumentType": "stock" - } - }, - "0x0eaa1a75bd682a5669ab2371a559fbd039c6b9eb": { - "address": "0x0eaa1a75bd682a5669ab2371a559fbd039c6b9eb", - "symbol": "PANWON", - "decimals": 18, - "name": "Palo Alto Networks (Ondo Tokenized)", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x0eaa1a75bd682a5669ab2371a559fbd039c6b9eb.png", - "aggregators": ["CoinGecko", "LiFi", "Rubic", "Rango", "Ondo"], - "occurrences": 5, - "rwaData": { - "market": { - "nextOpen": "2026-05-18T20:01:00.000Z", - "nextClose": "2026-05-18T19:59:00.000Z" - }, - "nextPause": { - "start": "2026-06-02T20:00:00.000Z", - "end": "2026-06-02T23:30:00.000Z" - }, - "ticker": "PANW", - "instrumentType": "stock" - } - }, - "0x317bf42b43a394860718266dec445dcc9fd9da49": { - "address": "0x317bf42b43a394860718266dec445dcc9fd9da49", - "symbol": "JPMON", - "decimals": 18, - "name": "JPMorgan Chase (Ondo Tokenized)", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x317bf42b43a394860718266dec445dcc9fd9da49.png", - "aggregators": ["CoinGecko", "LiFi", "Rubic", "Rango", "Ondo"], - "occurrences": 5, - "rwaData": { - "market": { - "nextOpen": "2026-05-18T20:01:00.000Z", - "nextClose": "2026-05-18T19:59:00.000Z" - }, - "nextPause": { - "start": null, - "end": null - }, - "ticker": "JPM", - "instrumentType": "stock" - } - }, - "0x167e93a849a0cc479769132552b99aa1cfa0948c": { - "address": "0x167e93a849a0cc479769132552b99aa1cfa0948c", - "symbol": "IJHON", - "decimals": 18, - "name": "iShares Core S&P MidCap ETF (Ondo Tokenized)", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x167e93a849a0cc479769132552b99aa1cfa0948c.png", - "aggregators": ["CoinGecko", "LiFi", "Rubic", "Rango", "Ondo"], - "occurrences": 5, - "rwaData": { - "market": { - "nextOpen": "2026-05-18T20:01:00.000Z", - "nextClose": "2026-05-18T19:59:00.000Z" - }, - "nextPause": { - "start": "2027-06-09T23:50:00.000Z", - "end": "2027-06-11T00:00:00.000Z" - }, - "ticker": "IJH", - "instrumentType": "stock" - } - }, - "0x390a684ef9cade28a7ad0dfa61ab1eb3842618c4": { - "address": "0x390a684ef9cade28a7ad0dfa61ab1eb3842618c4", - "symbol": "AAPLON", - "decimals": 18, - "name": "Apple (Ondo Tokenized)", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x390a684ef9cade28a7ad0dfa61ab1eb3842618c4.png", - "aggregators": ["CoinGecko", "LiFi", "Rubic", "Rango", "Ondo"], - "occurrences": 5, - "rwaData": { - "market": { - "nextOpen": "2026-05-18T20:01:00.000Z", - "nextClose": "2026-05-18T19:59:00.000Z" - }, - "nextPause": { - "start": null, - "end": null - }, - "ticker": "AAPL", - "instrumentType": "stock" - } - }, - "0xa9ee28c80f960b889dfbd1902055218cba016f75": { - "address": "0xa9ee28c80f960b889dfbd1902055218cba016f75", - "symbol": "NVDAON", - "decimals": 18, - "name": "NVIDIA (Ondo Tokenized)", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xa9ee28c80f960b889dfbd1902055218cba016f75.png", - "aggregators": ["CoinGecko", "LiFi", "Rubic", "Rango", "Ondo"], - "occurrences": 5, - "rwaData": { - "market": { - "nextOpen": "2026-05-18T20:01:00.000Z", - "nextClose": "2026-05-18T19:59:00.000Z" - }, - "nextPause": { - "start": "2026-05-20T20:00:00.000Z", - "end": "2026-05-20T23:30:00.000Z" - }, - "ticker": "NVDA", - "instrumentType": "stock" - } - }, - "0x2494b603319d4d9f9715c9f4496d9e0364b59d93": { - "address": "0x2494b603319d4d9f9715c9f4496d9e0364b59d93", - "symbol": "TSLAON", - "decimals": 18, - "name": "Tesla (Ondo Tokenized)", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x2494b603319d4d9f9715c9f4496d9e0364b59d93.png", - "aggregators": ["CoinGecko", "LiFi", "Rubic", "Rango", "Ondo"], - "occurrences": 5, - "rwaData": { - "market": { - "nextOpen": "2026-05-18T20:01:00.000Z", - "nextClose": "2026-05-18T19:59:00.000Z" - }, - "nextPause": { - "start": null, - "end": null - }, - "ticker": "TSLA", - "instrumentType": "stock" - } - }, - "0x500eafc69b68acd6f27064f9b75f1c7d91cc4d9f": { - "address": "0x500eafc69b68acd6f27064f9b75f1c7d91cc4d9f", - "symbol": "IWMON", - "decimals": 18, - "name": "iShares Russell 2000 ETF (Ondo Tokenized)", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x500eafc69b68acd6f27064f9b75f1c7d91cc4d9f.png", - "aggregators": ["CoinGecko", "LiFi", "Rubic", "Rango", "Ondo"], - "occurrences": 5, - "rwaData": { - "market": { - "nextOpen": "2026-05-18T20:01:00.000Z", - "nextClose": "2026-05-18T19:59:00.000Z" - }, - "nextPause": { - "start": "2027-06-09T23:50:00.000Z", - "end": "2027-06-11T00:00:00.000Z" - }, - "ticker": "IWM", - "instrumentType": "stock" - } - }, - "0xf69e40069ac227c11459e3f4e8a446b3401616b6": { - "address": "0xf69e40069ac227c11459e3f4e8a446b3401616b6", - "symbol": "TLTON", - "decimals": 18, - "name": "iShares 20+ Year Treasury Bond ETF (Ondo Tokenized)", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xf69e40069ac227c11459e3f4e8a446b3401616b6.png", - "aggregators": ["CoinGecko", "LiFi", "Rubic", "Rango", "Ondo"], - "occurrences": 5, - "rwaData": { - "market": { - "nextOpen": "2026-05-18T20:01:00.000Z", - "nextClose": "2026-05-18T19:59:00.000Z" - }, - "nextPause": { - "start": "2027-06-30T23:50:00.000Z", - "end": "2027-07-02T00:00:00.000Z" - }, - "ticker": "TLT", - "instrumentType": "stock" - } - }, - "0x7048f5227b032326cc8dbc53cf3fddd947a2c757": { - "address": "0x7048f5227b032326cc8dbc53cf3fddd947a2c757", - "symbol": "NFLXON", - "decimals": 18, - "name": "Netflix (Ondo Tokenized)", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x7048f5227b032326cc8dbc53cf3fddd947a2c757.png", - "aggregators": ["CoinGecko", "LiFi", "Rubic", "Rango", "Ondo"], - "occurrences": 5, - "rwaData": { - "market": { - "nextOpen": "2026-05-18T20:01:00.000Z", - "nextClose": "2026-05-18T19:59:00.000Z" - }, - "nextPause": { - "start": null, - "end": null - }, - "ticker": "NFLX", - "instrumentType": "stock" - } - }, - "0x60a8f8e05200ff73afde9e2cae819bf1605f0bdd": { - "address": "0x60a8f8e05200ff73afde9e2cae819bf1605f0bdd", - "symbol": "MELION", - "decimals": 18, - "name": "MercadoLibre (Ondo Tokenized)", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x60a8f8e05200ff73afde9e2cae819bf1605f0bdd.png", - "aggregators": ["CoinGecko", "LiFi", "Rubic", "Rango", "Ondo"], - "occurrences": 5, - "rwaData": { - "market": { - "nextOpen": "2026-05-18T20:01:00.000Z", - "nextClose": "2026-05-18T19:59:00.000Z" - }, - "nextPause": { - "start": null, - "end": null - }, - "ticker": "MELI", - "instrumentType": "stock" - } - }, - "0x99e01f02d66455bb106d91d469c9eaf6ab4904f6": { - "address": "0x99e01f02d66455bb106d91d469c9eaf6ab4904f6", - "symbol": "SBETON", - "decimals": 18, - "name": "SharpLink Gaming (Ondo Tokenized)", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x99e01f02d66455bb106d91d469c9eaf6ab4904f6.png", - "aggregators": ["CoinGecko", "LiFi", "Rubic", "Rango", "Ondo"], - "occurrences": 5, - "rwaData": { - "market": { - "nextOpen": "2026-05-18T20:01:00.000Z", - "nextClose": "2026-05-18T19:59:00.000Z" - }, - "nextPause": { - "start": null, - "end": null - }, - "ticker": "SBET", - "instrumentType": "stock" - } - }, - "0x22092c94a91d019ad15536725598b0a6be0a73c0": { - "address": "0x22092c94a91d019ad15536725598b0a6be0a73c0", - "symbol": "IEMGON", - "decimals": 18, - "name": "iShares Core MSCI Emerging Markets ETF (Ondo Tokenized)", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x22092c94a91d019ad15536725598b0a6be0a73c0.png", - "aggregators": ["CoinGecko", "LiFi", "Rubic", "Rango", "Ondo"], - "occurrences": 5, - "rwaData": { - "market": { - "nextOpen": "2026-05-18T20:01:00.000Z", - "nextClose": "2026-05-18T19:59:00.000Z" - }, - "nextPause": { - "start": null, - "end": null - }, - "ticker": "IEMG", - "instrumentType": "stock" - } - }, - "0xfab99fcf605fd8f4593edb70a43ba56542777777": { - "address": "0xfab99fcf605fd8f4593edb70a43ba56542777777", - "symbol": "ZBT", - "decimals": 18, - "name": "ZEROBASE", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xfab99fcf605fd8f4593edb70a43ba56542777777.png", - "aggregators": ["CoinGecko", "LiFi", "Socket", "Rubic", "Squid"], - "occurrences": 5 - }, - "0x66fd8de541c0594b4dccdfc13bf3a390e50d3afd": { - "address": "0x66fd8de541c0594b4dccdfc13bf3a390e50d3afd", - "symbol": "TURTLE", - "decimals": 18, - "name": "Turtle", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x66fd8de541c0594b4dccdfc13bf3a390e50d3afd.png", - "aggregators": [ - "PancakeExtended", - "LiFi", - "Socket", - "Rubic", - "Rango" - ], - "occurrences": 5 - }, - "0xf3d5b4c34ed623478cc5141861776e6cf7ae3a1e": { - "address": "0xf3d5b4c34ed623478cc5141861776e6cf7ae3a1e", - "symbol": "KGEN", - "decimals": 8, - "name": "KGEN", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xf3d5b4c34ed623478cc5141861776e6cf7ae3a1e.png", - "aggregators": [ - "PancakeExtended", - "LiFi", - "Rubic", - "Squid", - "Rango" - ], - "occurrences": 5 - }, - "0xea37a8de1de2d9d10772eeb569e28bfa5cb17707": { - "address": "0xea37a8de1de2d9d10772eeb569e28bfa5cb17707", - "symbol": "JCT", - "decimals": 18, - "name": "JANCTION", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xea37a8de1de2d9d10772eeb569e28bfa5cb17707.png", - "aggregators": [ - "PancakeExtended", - "LiFi", - "Socket", - "Rubic", - "Rango" - ], - "occurrences": 5 - }, - "0x91152b4ef635403efbae860edd0f8c321d7c035d": { - "address": "0x91152b4ef635403efbae860edd0f8c321d7c035d", - "symbol": "IRYS", - "decimals": 18, - "name": "Irys", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x91152b4ef635403efbae860edd0f8c321d7c035d.png", - "aggregators": [ - "PancakeExtended", - "LiFi", - "Socket", - "Rubic", - "Rango" - ], - "occurrences": 5 - }, - "0xfe930c2d63aed9b82fc4dbc801920dd2c1a3224f": { - "address": "0xfe930c2d63aed9b82fc4dbc801920dd2c1a3224f", - "symbol": "NIGHT", - "decimals": 18, - "name": "NIGHT", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xfe930c2d63aed9b82fc4dbc801920dd2c1a3224f.png", - "aggregators": [ - "PancakeExtended", - "LiFi", - "Rubic", - "Squid", - "Rango" - ], - "occurrences": 5 - }, - "0x04baf95fd4c52fd09a56d840baee0ab8d7357bf0": { - "address": "0x04baf95fd4c52fd09a56d840baee0ab8d7357bf0", - "symbol": "ONE", - "decimals": 18, - "name": "One", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x04baf95fd4c52fd09a56d840baee0ab8d7357bf0.png", - "aggregators": [ - "PancakeExtended", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0xed4bb33f20f32e989af975196e86019773a7cff0": { - "address": "0xed4bb33f20f32e989af975196e86019773a7cff0", - "symbol": "UTU", - "decimals": 18, - "name": "UTU Coin", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xed4bb33f20f32e989af975196e86019773a7cff0.png", - "aggregators": [ - "PancakeCoinMarketCap", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0xf6565a97dc832d93dc83b75ee9aa5c7e8ecb0f9d": { - "address": "0xf6565a97dc832d93dc83b75ee9aa5c7e8ecb0f9d", - "symbol": "HYVE", - "decimals": 18, - "name": "Hyve", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xf6565a97dc832d93dc83b75ee9aa5c7e8ecb0f9d.png", - "aggregators": [ - "PancakeCoinMarketCap", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x846f52020749715f02aef25b5d1d65e48945649d": { - "address": "0x846f52020749715f02aef25b5d1d65e48945649d", - "symbol": "UMB", - "decimals": 18, - "name": "Umbrella Network", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x846f52020749715f02aef25b5d1d65e48945649d.png", - "aggregators": [ - "PancakeCoinMarketCap", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0xd4fbc57b6233f268e7fba3b66e62719d74deecbc": { - "address": "0xd4fbc57b6233f268e7fba3b66e62719d74deecbc", - "symbol": "MOD", - "decimals": 18, - "name": "Modefi", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xd4fbc57b6233f268e7fba3b66e62719d74deecbc.png", - "aggregators": [ - "PancakeCoinMarketCap", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0xd98438889ae7364c7e2a3540547fad042fb24642": { - "address": "0xd98438889ae7364c7e2a3540547fad042fb24642", - "symbol": "CELL", - "decimals": 18, - "name": "Cellframe", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xd98438889ae7364c7e2a3540547fad042fb24642.png", - "aggregators": [ - "PancakeCoinMarketCap", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x393d87e44c7b1f5ba521b351532c24ece253b849": { - "address": "0x393d87e44c7b1f5ba521b351532c24ece253b849", - "symbol": "BLES", - "decimals": 18, - "name": "Blind Boxes", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x393d87e44c7b1f5ba521b351532c24ece253b849.png", - "aggregators": [ - "PancakeCoinMarketCap", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0xa0a2ee912caf7921eaabc866c6ef6fec8f7e90a4": { - "address": "0xa0a2ee912caf7921eaabc866c6ef6fec8f7e90a4", - "symbol": "DPR", - "decimals": 18, - "name": "Deeper Network", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xa0a2ee912caf7921eaabc866c6ef6fec8f7e90a4.png", - "aggregators": [ - "PancakeCoinMarketCap", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x8c907e0a72c3d55627e853f4ec6a96b0c8771145": { - "address": "0x8c907e0a72c3d55627e853f4ec6a96b0c8771145", - "symbol": "ZIG", - "decimals": 18, - "name": "ZIGChain", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x8c907e0a72c3d55627e853f4ec6a96b0c8771145.png", - "aggregators": [ - "PancakeCoinMarketCap", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x2a4dffa1fa0f86ce7f0982f88aecc199fb3476bc": { - "address": "0x2a4dffa1fa0f86ce7f0982f88aecc199fb3476bc", - "symbol": "OCC", - "decimals": 18, - "name": "OccamFi", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x2a4dffa1fa0f86ce7f0982f88aecc199fb3476bc.png", - "aggregators": [ - "PancakeCoinMarketCap", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x681fd3e49a6188fc526784ee70aa1c269ee2b887": { - "address": "0x681fd3e49a6188fc526784ee70aa1c269ee2b887", - "symbol": "FLY", - "decimals": 4, - "name": "Franklin", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x681fd3e49a6188fc526784ee70aa1c269ee2b887.png", - "aggregators": [ - "PancakeCoinMarketCap", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x474021845c4643113458ea4414bdb7fb74a01a77": { - "address": "0x474021845c4643113458ea4414bdb7fb74a01a77", - "symbol": "UNO", - "decimals": 18, - "name": "Uno Re", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x474021845c4643113458ea4414bdb7fb74a01a77.png", - "aggregators": [ - "PancakeCoinMarketCap", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0xd2e7b964770fcf51df088a5f0bb2d33a3c60cccf": { - "address": "0xd2e7b964770fcf51df088a5f0bb2d33a3c60cccf", - "symbol": "ISP", - "decimals": 18, - "name": "Ispolink", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xd2e7b964770fcf51df088a5f0bb2d33a3c60cccf.png", - "aggregators": [ - "PancakeCoinMarketCap", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x86b3f23b6e90f5bbfac59b5b2661134ef8ffd255": { - "address": "0x86b3f23b6e90f5bbfac59b5b2661134ef8ffd255", - "symbol": "DON", - "decimals": 18, - "name": "Don-key", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x86b3f23b6e90f5bbfac59b5b2661134ef8ffd255.png", - "aggregators": [ - "PancakeCoinMarketCap", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x9ba6a67a6f3b21705a46b380a1b97373a33da311": { - "address": "0x9ba6a67a6f3b21705a46b380a1b97373a33da311", - "symbol": "FEAR", - "decimals": 18, - "name": "FEAR", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x9ba6a67a6f3b21705a46b380a1b97373a33da311.png", - "aggregators": [ - "PancakeCoinMarketCap", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0xfd5af95c12446b60d23e16a4ea95690ce942e5dc": { - "address": "0xfd5af95c12446b60d23e16a4ea95690ce942e5dc", - "symbol": "FREL", - "decimals": 18, - "name": "Freela", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xfd5af95c12446b60d23e16a4ea95690ce942e5dc.png", - "aggregators": [ - "PancakeCoinMarketCap", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x08bc237aa00f275b758542c9f5c125b568bc390a": { - "address": "0x08bc237aa00f275b758542c9f5c125b568bc390a", - "symbol": "QDX", - "decimals": 18, - "name": "Quidax", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x08bc237aa00f275b758542c9f5c125b568bc390a.png", - "aggregators": [ - "PancakeCoinMarketCap", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x678e840c640f619e17848045d23072844224dd37": { - "address": "0x678e840c640f619e17848045d23072844224dd37", - "symbol": "CRTS", - "decimals": 18, - "name": "Cratos", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x678e840c640f619e17848045d23072844224dd37.png", - "aggregators": [ - "PancakeCoinMarketCap", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x8357c604c5533fa0053beaaa1494da552cea38f7": { - "address": "0x8357c604c5533fa0053beaaa1494da552cea38f7", - "symbol": "SPO", - "decimals": 18, - "name": "Spores Network", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x8357c604c5533fa0053beaaa1494da552cea38f7.png", - "aggregators": [ - "PancakeCoinMarketCap", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x9c47e503b2f497e9ad9f1c0dfa6bd9fd5456aa4e": { - "address": "0x9c47e503b2f497e9ad9f1c0dfa6bd9fd5456aa4e", - "symbol": "ZERC", - "decimals": 18, - "name": "zkRace", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x9c47e503b2f497e9ad9f1c0dfa6bd9fd5456aa4e.png", - "aggregators": [ - "PancakeCoinMarketCap", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x41065e3428188ba6eb27fbdde8526ae3af8e3830": { - "address": "0x41065e3428188ba6eb27fbdde8526ae3af8e3830", - "symbol": "SWASH", - "decimals": 18, - "name": "Swash", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x41065e3428188ba6eb27fbdde8526ae3af8e3830.png", - "aggregators": [ - "PancakeCoinMarketCap", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x9df465460938f9ebdf51c38cc87d72184471f8f0": { - "address": "0x9df465460938f9ebdf51c38cc87d72184471f8f0", - "symbol": "GENE", - "decimals": 18, - "name": "Genopets", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x9df465460938f9ebdf51c38cc87d72184471f8f0.png", - "aggregators": [ - "PancakeCoinMarketCap", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x4550003152f12014558e5ce025707e4dd841100f": { - "address": "0x4550003152f12014558e5ce025707e4dd841100f", - "symbol": "KZEN", - "decimals": 18, - "name": "Kaizen.Finance", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x4550003152f12014558e5ce025707e4dd841100f.png", - "aggregators": [ - "PancakeCoinMarketCap", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x0f1cbed8efa0e012adbccb1638d0ab0147d5ac00": { - "address": "0x0f1cbed8efa0e012adbccb1638d0ab0147d5ac00", - "symbol": "HELLO", - "decimals": 18, - "name": "HELLO", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x0f1cbed8efa0e012adbccb1638d0ab0147d5ac00.png", - "aggregators": [ - "PancakeCoinMarketCap", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x7881cd2b5724431372f57c50e91611352557a606": { - "address": "0x7881cd2b5724431372f57c50e91611352557a606", - "symbol": "HYPC", - "decimals": 6, - "name": "HyperCycle", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x7881cd2b5724431372f57c50e91611352557a606.png", - "aggregators": [ - "PancakeCoinMarketCap", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x03aa6298f1370642642415edc0db8b957783e8d6": { - "address": "0x03aa6298f1370642642415edc0db8b957783e8d6", - "symbol": "NMT", - "decimals": 18, - "name": "NetMind Token", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x03aa6298f1370642642415edc0db8b957783e8d6.png", - "aggregators": [ - "PancakeExtended", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0xba0dda8762c24da9487f5fa026a9b64b695a07ea": { - "address": "0xba0dda8762c24da9487f5fa026a9b64b695a07ea", - "symbol": "OX", - "decimals": 18, - "name": "OX Coin", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xba0dda8762c24da9487f5fa026a9b64b695a07ea.png", - "aggregators": [ - "PancakeExtended", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0xa9972b1fac35fdd8cbdbaa315a002b2ad91d2ad6": { - "address": "0xa9972b1fac35fdd8cbdbaa315a002b2ad91d2ad6", - "symbol": "CYBRO", - "decimals": 18, - "name": "CYBRO", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xa9972b1fac35fdd8cbdbaa315a002b2ad91d2ad6.png", - "aggregators": ["CoinGecko", "LiFi", "Socket", "Rubic", "Rango"], - "occurrences": 5 - }, - "0x825459139c897d769339f295e962396c4f9e4a4d": { - "address": "0x825459139c897d769339f295e962396c4f9e4a4d", - "symbol": "GAME", - "decimals": 18, - "name": "GameBuild", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x825459139c897d769339f295e962396c4f9e4a4d.png", - "aggregators": [ - "PancakeExtended", - "LiFi", - "Socket", - "Rubic", - "Rango" - ], - "occurrences": 5 - }, - "0x9c7beba8f6ef6643abd725e45a4e8387ef260649": { - "address": "0x9c7beba8f6ef6643abd725e45a4e8387ef260649", - "symbol": "G", - "decimals": 18, - "name": "Gravity", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x9c7beba8f6ef6643abd725e45a4e8387ef260649.png", - "aggregators": [ - "PancakeCoinMarketCap", - "LiFi", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x2492d0006411af6c8bbb1c8afc1b0197350a79e9": { - "address": "0x2492d0006411af6c8bbb1c8afc1b0197350a79e9", - "symbol": "USR", - "decimals": 18, - "name": "USR", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x2492d0006411af6c8bbb1c8afc1b0197350a79e9.png", - "aggregators": [ - "PancakeExtended", - "LiFi", - "Socket", - "Rubic", - "Rango" - ], - "occurrences": 5 - }, - "0xe2b1dc2d4a3b4e59fdf0c47b71a7a86391a8b35a": { - "address": "0xe2b1dc2d4a3b4e59fdf0c47b71a7a86391a8b35a", - "symbol": "RWA", - "decimals": 18, - "name": "RWA Inc.", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xe2b1dc2d4a3b4e59fdf0c47b71a7a86391a8b35a.png", - "aggregators": [ - "CoinGecko", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x4acd4d03af6f9cc0fb7c5f0868b7b6287d7969c5": { - "address": "0x4acd4d03af6f9cc0fb7c5f0868b7b6287d7969c5", - "symbol": "USUAL", - "decimals": 18, - "name": "Usual", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x4acd4d03af6f9cc0fb7c5f0868b7b6287d7969c5.png", - "aggregators": [ - "CoinGecko", - "LiFi", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x64445f0aecc51e94ad52d8ac56b7190e764e561a": { - "address": "0x64445f0aecc51e94ad52d8ac56b7190e764e561a", - "symbol": "WFRAX", - "decimals": 18, - "name": "WFRAX", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x64445f0aecc51e94ad52d8ac56b7190e764e561a.png", - "aggregators": ["CoinGecko", "LiFi", "Socket", "Rubic", "Rango"], - "occurrences": 5 - }, - "0xe868084cf08f3c3db11f4b73a95473762d9463f7": { - "address": "0xe868084cf08f3c3db11f4b73a95473762d9463f7", - "symbol": "YU", - "decimals": 18, - "name": "YU", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xe868084cf08f3c3db11f4b73a95473762d9463f7.png", - "aggregators": ["CoinGecko", "LiFi", "Socket", "Rubic", "Rango"], - "occurrences": 5 - }, - "0xdf24f8c21cb404b3031a450d8e049d6e39fc1fa5": { - "address": "0xdf24f8c21cb404b3031a450d8e049d6e39fc1fa5", - "symbol": "BILL", - "decimals": 18, - "name": "Billions Network Token", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xdf24f8c21cb404b3031a450d8e049d6e39fc1fa5.png", - "aggregators": [ - "PancakeExtended", - "LiFi", - "Socket", - "Rubic", - "Rango" - ], - "occurrences": 5 - }, - "0x5ffd0eadc186af9512542d0d5e5eafc65d5afc5b": { - "address": "0x5ffd0eadc186af9512542d0d5e5eafc65d5afc5b", - "symbol": "HEMI", - "decimals": 18, - "name": "Hemi", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x5ffd0eadc186af9512542d0d5e5eafc65d5afc5b.png", - "aggregators": [ - "PancakeExtended", - "1inch", - "LiFi", - "Socket", - "Rubic" - ], - "occurrences": 5 - }, - "0x8c7bf0ed6bc778bde1489de1592c1aad3e66371d": { - "address": "0x8c7bf0ed6bc778bde1489de1592c1aad3e66371d", - "symbol": "QBTSON", - "decimals": 18, - "name": "D-Wave Quantum (Ondo Tokenized)", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x8c7bf0ed6bc778bde1489de1592c1aad3e66371d.png", - "aggregators": ["CoinGecko", "LiFi", "Rubic", "Rango", "Ondo"], - "occurrences": 5, - "rwaData": { - "market": { - "nextOpen": "2026-05-18T20:01:00.000Z", - "nextClose": "2026-05-18T19:59:00.000Z" - }, - "nextPause": { - "start": null, - "end": null - }, - "ticker": "QBTS", - "instrumentType": "stock" - } - }, - "0x0dae81a905b645a3d1e67129b89cd0acda224e9a": { - "address": "0x0dae81a905b645a3d1e67129b89cd0acda224e9a", - "symbol": "HYGON", - "decimals": 18, - "name": "iBoxx $ High Yield Corporate Bond ETF (Ondo Tokenized)", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x0dae81a905b645a3d1e67129b89cd0acda224e9a.png", - "aggregators": ["CoinGecko", "LiFi", "Rubic", "Rango", "Ondo"], - "occurrences": 5, - "rwaData": { - "market": { - "nextOpen": "2026-05-18T20:01:00.000Z", - "nextClose": "2026-05-18T19:59:00.000Z" - }, - "nextPause": { - "start": "2027-06-30T23:50:00.000Z", - "end": "2027-07-02T00:00:00.000Z" - }, - "ticker": "HYG", - "instrumentType": "stock" - } - }, - "0xc4a88a72b848255fd24da3c1ad6755d980535fb1": { - "address": "0xc4a88a72b848255fd24da3c1ad6755d980535fb1", - "symbol": "RIOTON", - "decimals": 18, - "name": "Riot Platforms (Ondo Tokenized)", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xc4a88a72b848255fd24da3c1ad6755d980535fb1.png", - "aggregators": ["CoinGecko", "LiFi", "Rubic", "Rango", "Ondo"], - "occurrences": 5, - "rwaData": { - "market": { - "nextOpen": "2026-05-18T20:01:00.000Z", - "nextClose": "2026-05-18T19:59:00.000Z" - }, - "nextPause": { - "start": null, - "end": null - }, - "ticker": "RIOT", - "instrumentType": "stock" - } - }, - "0xd226d8170ee38793430c7dec6903df4b818bb74c": { - "address": "0xd226d8170ee38793430c7dec6903df4b818bb74c", - "symbol": "MARAON", - "decimals": 18, - "name": "MARA Holdings (Ondo Tokenized)", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xd226d8170ee38793430c7dec6903df4b818bb74c.png", - "aggregators": ["CoinGecko", "LiFi", "Rubic", "Rango", "Ondo"], - "occurrences": 5, - "rwaData": { - "market": { - "nextOpen": "2026-05-18T20:01:00.000Z", - "nextClose": "2026-05-18T19:59:00.000Z" - }, - "nextPause": { - "start": null, - "end": null - }, - "ticker": "MARA", - "instrumentType": "stock" - } - }, - "0x4693f6f5ef257381a28afd0673e64d8b32d5c6ad": { - "address": "0x4693f6f5ef257381a28afd0673e64d8b32d5c6ad", - "symbol": "HIMSON", - "decimals": 18, - "name": "Hims & Hers Health (Ondo Tokenized)", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x4693f6f5ef257381a28afd0673e64d8b32d5c6ad.png", - "aggregators": ["CoinGecko", "LiFi", "Rubic", "Rango", "Ondo"], - "occurrences": 5, - "rwaData": { - "market": { - "nextOpen": "2026-05-18T20:01:00.000Z", - "nextClose": "2026-05-18T19:59:00.000Z" - }, - "nextPause": { - "start": null, - "end": null - }, - "ticker": "HIMS", - "instrumentType": "stock" - } - }, - "0x38b9a53bfdc5dba58a29bd6992341927c2fca637": { - "address": "0x38b9a53bfdc5dba58a29bd6992341927c2fca637", - "symbol": "EFAON", - "decimals": 18, - "name": "iShares MSCI EAFE ETF (Ondo Tokenized)", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x38b9a53bfdc5dba58a29bd6992341927c2fca637.png", - "aggregators": ["CoinGecko", "LiFi", "Rubic", "Rango", "Ondo"], - "occurrences": 5, - "rwaData": { - "market": { - "nextOpen": "2026-05-18T20:01:00.000Z", - "nextClose": "2026-05-18T19:59:00.000Z" - }, - "nextPause": { - "start": "2027-06-09T23:50:00.000Z", - "end": "2027-06-11T00:00:00.000Z" - }, - "ticker": "EFA", - "instrumentType": "stock" - } - }, - "0x918008c3d29496c37b478b611967beaca365af36": { - "address": "0x918008c3d29496c37b478b611967beaca365af36", - "symbol": "IEFAON", - "decimals": 18, - "name": "iShares Core MSCI EAFE ETF (Ondo Tokenized)", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x918008c3d29496c37b478b611967beaca365af36.png", - "aggregators": ["CoinGecko", "LiFi", "Rubic", "Rango", "Ondo"], - "occurrences": 5, - "rwaData": { - "market": { - "nextOpen": "2026-05-18T20:01:00.000Z", - "nextClose": "2026-05-18T19:59:00.000Z" - }, - "nextPause": { - "start": "2027-06-09T23:50:00.000Z", - "end": "2027-06-11T00:00:00.000Z" - }, - "ticker": "IEFA", - "instrumentType": "stock" - } - }, - "0x405f38b90bebf1259062cf29da299f3398662bcb": { - "address": "0x405f38b90bebf1259062cf29da299f3398662bcb", - "symbol": "KOON", - "decimals": 18, - "name": "Coca-Cola (Ondo Tokenized)", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x405f38b90bebf1259062cf29da299f3398662bcb.png", - "aggregators": ["CoinGecko", "LiFi", "Rubic", "Rango", "Ondo"], - "occurrences": 5, - "rwaData": { - "market": { - "nextOpen": "2026-05-18T20:01:00.000Z", - "nextClose": "2026-05-18T19:59:00.000Z" - }, - "nextPause": { - "start": "2026-06-14T23:52:00.000Z", - "end": "2026-06-15T00:12:00.000Z" - }, - "ticker": "KO", - "instrumentType": "stock" - } - }, - "0xe92be960ae64f6a914ca77014cac9e56de7f36c1": { - "address": "0xe92be960ae64f6a914ca77014cac9e56de7f36c1", - "symbol": "JDON", - "decimals": 18, - "name": "JD.com (Ondo Tokenized)", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xe92be960ae64f6a914ca77014cac9e56de7f36c1.png", - "aggregators": ["CoinGecko", "LiFi", "Rubic", "Rango", "Ondo"], - "occurrences": 5, - "rwaData": { - "market": { - "nextOpen": "2026-05-18T20:01:00.000Z", - "nextClose": "2026-05-18T19:59:00.000Z" - }, - "nextPause": { - "start": null, - "end": null - }, - "ticker": "JD", - "instrumentType": "stock" - } - }, - "0x8b6acf6041a81567f012ff6a4c6d96d5818d74bf": { - "address": "0x8b6acf6041a81567f012ff6a4c6d96d5818d74bf", - "symbol": "MUON", - "decimals": 18, - "name": "Micron Technology (Ondo Tokenized)", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x8b6acf6041a81567f012ff6a4c6d96d5818d74bf.png", - "aggregators": ["CoinGecko", "LiFi", "Rubic", "Rango", "Ondo"], - "occurrences": 5, - "rwaData": { - "market": { - "nextOpen": "2026-05-18T20:01:00.000Z", - "nextClose": "2026-05-18T19:59:00.000Z" - }, - "nextPause": { - "start": null, - "end": null - }, - "ticker": "MU", - "instrumentType": "stock" - } - }, - "0xdabb9aff4cf02f26d2014e4ca9f94ac6fe6572a3": { - "address": "0xdabb9aff4cf02f26d2014e4ca9f94ac6fe6572a3", - "symbol": "GMEON", - "decimals": 18, - "name": "GameStop (Ondo Tokenized)", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xdabb9aff4cf02f26d2014e4ca9f94ac6fe6572a3.png", - "aggregators": ["CoinGecko", "LiFi", "Rubic", "Rango", "Ondo"], - "occurrences": 5, - "rwaData": { - "market": { - "nextOpen": "2026-05-18T20:01:00.000Z", - "nextClose": "2026-05-18T19:59:00.000Z" - }, - "nextPause": { - "start": "2026-06-09T09:00:00.000Z", - "end": "2026-06-09T23:30:00.000Z" - }, - "ticker": "GME", - "instrumentType": "stock" - } - }, - "0xa7d1e886acf66ec0656df2decb4b7c893a3bab4c": { - "address": "0xa7d1e886acf66ec0656df2decb4b7c893a3bab4c", - "symbol": "WMTON", - "decimals": 18, - "name": "Walmart (Ondo Tokenized)", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xa7d1e886acf66ec0656df2decb4b7c893a3bab4c.png", - "aggregators": ["CoinGecko", "LiFi", "Rubic", "Rango", "Ondo"], - "occurrences": 5, - "rwaData": { - "market": { - "nextOpen": "2026-05-18T20:01:00.000Z", - "nextClose": "2026-05-18T19:59:00.000Z" - }, - "nextPause": { - "start": "2026-05-21T09:00:00.000Z", - "end": "2026-05-21T13:31:00.000Z" - }, - "ticker": "WMT", - "instrumentType": "stock" - } - }, - "0x43d0b380c33cd004a6a69abd61843881a2de4113": { - "address": "0x43d0b380c33cd004a6a69abd61843881a2de4113", - "symbol": "SHOPON", - "decimals": 18, - "name": "Shopify (Ondo Tokenized)", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x43d0b380c33cd004a6a69abd61843881a2de4113.png", - "aggregators": ["CoinGecko", "LiFi", "Rubic", "Rango", "Ondo"], - "occurrences": 5, - "rwaData": { - "market": { - "nextOpen": "2026-05-18T20:01:00.000Z", - "nextClose": "2026-05-18T19:59:00.000Z" - }, - "nextPause": { - "start": null, - "end": null - }, - "ticker": "SHOP", - "instrumentType": "stock" - } - }, - "0x629520dee1620def11596f84e85de9f1ff653012": { - "address": "0x629520dee1620def11596f84e85de9f1ff653012", - "symbol": "WFCON", - "decimals": 18, - "name": "Wells Fargo (Ondo Tokenized)", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x629520dee1620def11596f84e85de9f1ff653012.png", - "aggregators": ["CoinGecko", "LiFi", "Rubic", "Rango", "Ondo"], - "occurrences": 5, - "rwaData": { - "market": { - "nextOpen": "2026-05-18T20:01:00.000Z", - "nextClose": "2026-05-18T19:59:00.000Z" - }, - "nextPause": { - "start": null, - "end": null - }, - "ticker": "WFC", - "instrumentType": "stock" - } - }, - "0xc37042a7a4fa510d8884a433762ab87257b91965": { - "address": "0xc37042a7a4fa510d8884a433762ab87257b91965", - "symbol": "TSMON", - "decimals": 18, - "name": "Taiwan Semiconductor Manufacturing (Ondo Tokenized)", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xc37042a7a4fa510d8884a433762ab87257b91965.png", - "aggregators": ["CoinGecko", "LiFi", "Rubic", "Rango", "Ondo"], - "occurrences": 5, - "rwaData": { - "market": { - "nextOpen": "2026-05-18T20:01:00.000Z", - "nextClose": "2026-05-18T19:59:00.000Z" - }, - "nextPause": { - "start": null, - "end": null - }, - "ticker": "TSM", - "instrumentType": "stock" - } - }, - "0xd5964f3fcee8d649995ab88f04b8982539c282d2": { - "address": "0xd5964f3fcee8d649995ab88f04b8982539c282d2", - "symbol": "BABAON", - "decimals": 18, - "name": "Alibaba (Ondo Tokenized)", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xd5964f3fcee8d649995ab88f04b8982539c282d2.png", - "aggregators": ["CoinGecko", "LiFi", "Rubic", "Rango", "Ondo"], - "occurrences": 5, - "rwaData": { - "market": { - "nextOpen": "2026-05-18T20:01:00.000Z", - "nextClose": "2026-05-18T19:59:00.000Z" - }, - "nextPause": { - "start": null, - "end": null - }, - "ticker": "BABA", - "instrumentType": "stock" - } - }, - "0xd04a2bb053277721a8321d7441eed5b42fdf7250": { - "address": "0xd04a2bb053277721a8321d7441eed5b42fdf7250", - "symbol": "CRMON", - "decimals": 18, - "name": "Salesforce (Ondo Tokenized)", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xd04a2bb053277721a8321d7441eed5b42fdf7250.png", - "aggregators": ["CoinGecko", "LiFi", "Rubic", "Rango", "Ondo"], - "occurrences": 5, - "rwaData": { - "market": { - "nextOpen": "2026-05-18T20:01:00.000Z", - "nextClose": "2026-05-18T19:59:00.000Z" - }, - "nextPause": { - "start": "2026-05-27T20:00:00.000Z", - "end": "2026-05-27T23:30:00.000Z" - }, - "ticker": "CRM", - "instrumentType": "stock" - } - }, - "0xf8589b526fdd65f7f301c605a6e04f0f1b4b3620": { - "address": "0xf8589b526fdd65f7f301c605a6e04f0f1b4b3620", - "symbol": "COINON", - "decimals": 18, - "name": "Coinbase (Ondo Tokenized)", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xf8589b526fdd65f7f301c605a6e04f0f1b4b3620.png", - "aggregators": ["CoinGecko", "LiFi", "Rubic", "Rango", "Ondo"], - "occurrences": 5, - "rwaData": { - "market": { - "nextOpen": "2026-05-18T20:01:00.000Z", - "nextClose": "2026-05-18T19:59:00.000Z" - }, - "nextPause": { - "start": null, - "end": null - }, - "ticker": "COIN", - "instrumentType": "stock" - } - }, - "0x995add4ba29a628a57930a8a185c62ca044ec090": { - "address": "0x995add4ba29a628a57930a8a185c62ca044ec090", - "symbol": "MCDON", - "decimals": 18, - "name": "McDonald's (Ondo Tokenized)", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x995add4ba29a628a57930a8a185c62ca044ec090.png", - "aggregators": ["CoinGecko", "LiFi", "Rubic", "Rango", "Ondo"], - "occurrences": 5, - "rwaData": { - "market": { - "nextOpen": "2026-05-18T20:01:00.000Z", - "nextClose": "2026-05-18T19:59:00.000Z" - }, - "nextPause": { - "start": null, - "end": null - }, - "ticker": "MCD", - "instrumentType": "stock" - } - }, - "0x3385cb29cca0ac66f5d2354d13ef977b49a2510f": { - "address": "0x3385cb29cca0ac66f5d2354d13ef977b49a2510f", - "symbol": "UNHON", - "decimals": 18, - "name": "UnitedHealth (Ondo Tokenized)", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x3385cb29cca0ac66f5d2354d13ef977b49a2510f.png", - "aggregators": ["CoinGecko", "LiFi", "Rubic", "Rango", "Ondo"], - "occurrences": 5, - "rwaData": { - "market": { - "nextOpen": "2026-05-18T20:01:00.000Z", - "nextClose": "2026-05-18T19:59:00.000Z" - }, - "nextPause": { - "start": null, - "end": null - }, - "ticker": "UNH", - "instrumentType": "stock" - } - }, - "0xb034f6cb52b7f2fd5a7eeeffca6b9adcd6b9a6f6": { - "address": "0xb034f6cb52b7f2fd5a7eeeffca6b9adcd6b9a6f6", - "symbol": "ASMLON", - "decimals": 18, - "name": "ASML Holding NV (Ondo Tokenized)", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xb034f6cb52b7f2fd5a7eeeffca6b9adcd6b9a6f6.png", - "aggregators": ["CoinGecko", "LiFi", "Rubic", "Rango", "Ondo"], - "occurrences": 5, - "rwaData": { - "market": { - "nextOpen": "2026-05-18T20:01:00.000Z", - "nextClose": "2026-05-18T19:59:00.000Z" - }, - "nextPause": { - "start": null, - "end": null - }, - "ticker": "ASML", - "instrumentType": "stock" - } - }, - "0x8b872732b07be325a8803cdb480d9d20b6f8d11b": { - "address": "0x8b872732b07be325a8803cdb480d9d20b6f8d11b", - "symbol": "SLVON", - "decimals": 18, - "name": "iShares Silver Trust (Ondo Tokenized)", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x8b872732b07be325a8803cdb480d9d20b6f8d11b.png", - "aggregators": ["CoinGecko", "LiFi", "Rubic", "Rango", "Ondo"], - "occurrences": 5, - "rwaData": { - "market": { - "nextOpen": "2026-05-18T20:01:00.000Z", - "nextClose": "2026-05-18T19:59:00.000Z" - }, - "nextPause": { - "start": null, - "end": null - }, - "ticker": "SLV", - "instrumentType": "stock" - } - }, - "0xcb2a0f46f67dc4c58a316f1c008edef5c2311795": { - "address": "0xcb2a0f46f67dc4c58a316f1c008edef5c2311795", - "symbol": "IAUON", - "decimals": 18, - "name": "iShares Gold Trust (Ondo Tokenized)", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xcb2a0f46f67dc4c58a316f1c008edef5c2311795.png", - "aggregators": ["CoinGecko", "LiFi", "Rubic", "Rango", "Ondo"], - "occurrences": 5, - "rwaData": { - "market": { - "nextOpen": "2026-05-18T20:01:00.000Z", - "nextClose": "2026-05-18T19:59:00.000Z" - }, - "nextPause": { - "start": null, - "end": null - }, - "ticker": "IAU", - "instrumentType": "stock" - } - }, - "0x0cde6936d305d5b34667fc46425e852efd73559a": { - "address": "0x0cde6936d305d5b34667fc46425e852efd73559a", - "symbol": "QQQON", - "decimals": 18, - "name": "Invesco QQQ (Ondo Tokenized)", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x0cde6936d305d5b34667fc46425e852efd73559a.png", - "aggregators": ["CoinGecko", "LiFi", "Rubic", "Rango", "Ondo"], - "occurrences": 5, - "rwaData": { - "market": { - "nextOpen": "2026-05-18T20:01:00.000Z", - "nextClose": "2026-05-18T19:59:00.000Z" - }, - "nextPause": { - "start": null, - "end": null - }, - "ticker": "QQQ", - "instrumentType": "stock" - } - }, - "0x7427bd9542e64d1ac207a540cfce194b7390a07f": { - "address": "0x7427bd9542e64d1ac207a540cfce194b7390a07f", - "symbol": "XAN", - "decimals": 18, - "name": "Anoma", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x7427bd9542e64d1ac207a540cfce194b7390a07f.png", - "aggregators": ["PancakeExtended", "Socket", "Rubic", "Rango"], - "occurrences": 4 - }, - "0x299ad4299da5b2b93fba4c96967b040c7f611099": { - "address": "0x299ad4299da5b2b93fba4c96967b040c7f611099", - "symbol": "APR", - "decimals": 18, - "name": "aPriori", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x299ad4299da5b2b93fba4c96967b040c7f611099.png", - "aggregators": ["CoinGecko", "LiFi", "Socket", "Rubic", "Rango"], - "occurrences": 5 - }, - "0x876cecb73c9ed1b1526f8e35c6a5a51a31bcf341": { - "address": "0x876cecb73c9ed1b1526f8e35c6a5a51a31bcf341", - "symbol": "VOOI", - "decimals": 18, - "name": "VOOI", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x876cecb73c9ed1b1526f8e35c6a5a51a31bcf341.png", - "aggregators": [ - "PancakeExtended", - "LiFi", - "Socket", - "Rubic", - "Rango" - ], - "occurrences": 5 - }, - "0x904567252d8f48555b7447c67dca23f0372e16be": { - "address": "0x904567252d8f48555b7447c67dca23f0372e16be", - "symbol": "KITE", - "decimals": 18, - "name": "Kite", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x904567252d8f48555b7447c67dca23f0372e16be.png", - "aggregators": [ - "PancakeExtended", - "LiFi", - "Socket", - "Rubic", - "Rango" - ], - "occurrences": 5 - }, - "0xea17df5cf6d172224892b5477a16acb111182478": { - "address": "0xea17df5cf6d172224892b5477a16acb111182478", - "symbol": "ELIZAOS", - "decimals": 9, - "name": "elizaOS", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xea17df5cf6d172224892b5477a16acb111182478.png", - "aggregators": [ - "PancakeExtended", - "1inch", - "Socket", - "Rubic", - "Rango" - ], - "occurrences": 5 - }, - "0x1d28d989f9e3ccb8b15d0cec601734514f958e4d": { - "address": "0x1d28d989f9e3ccb8b15d0cec601734514f958e4d", - "symbol": "BASED", - "decimals": 18, - "name": "Based Token", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x1d28d989f9e3ccb8b15d0cec601734514f958e4d.png", - "aggregators": [ - "PancakeExtended", - "Socket", - "Rubic", - "Squid", - "Rango" - ], - "occurrences": 5 - }, - "0xb0b92de23baa85fb06208277e925ced53edab482": { - "address": "0xb0b92de23baa85fb06208277e925ced53edab482", - "symbol": "TRIA", - "decimals": 18, - "name": "TRIA", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xb0b92de23baa85fb06208277e925ced53edab482.png", - "aggregators": [ - "PancakeExtended", - "LiFi", - "Socket", - "Rubic", - "Rango" - ], - "occurrences": 5 - }, - "0x595deaad1eb5476ff1e649fdb7efc36f1e4679cc": { - "address": "0x595deaad1eb5476ff1e649fdb7efc36f1e4679cc", - "symbol": "BSB", - "decimals": 18, - "name": "Block Street", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x595deaad1eb5476ff1e649fdb7efc36f1e4679cc.png", - "aggregators": [ - "PancakeExtended", - "LiFi", - "Socket", - "Rubic", - "Rango" - ], - "occurrences": 5 - }, - "0x85eac5ac2f758618dfa09bdbe0cf174e7d574d5b": { - "address": "0x85eac5ac2f758618dfa09bdbe0cf174e7d574d5b", - "symbol": "TRX", - "decimals": 18, - "name": "TRON", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x85eac5ac2f758618dfa09bdbe0cf174e7d574d5b.png", - "aggregators": [ - "PancakeTop100", - "LiFi", - "Socket", - "Rubic", - "Rango" - ], - "occurrences": 5 - }, - "0x07663837218a003e66310a01596af4bf4e44623d": { - "address": "0x07663837218a003e66310a01596af4bf4e44623d", - "symbol": "RUSD", - "decimals": 18, - "name": "RUSD", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x07663837218a003e66310a01596af4bf4e44623d.png", - "aggregators": [ - "PancakeTop100", - "LiFi", - "Socket", - "Rubic", - "Rango" - ], - "occurrences": 5 - }, - "0xf7b6d7e3434cb9441982f9534e6998c43eef144a": { - "address": "0xf7b6d7e3434cb9441982f9534e6998c43eef144a", - "symbol": "ASVA", - "decimals": 18, - "name": "Asva Labs", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xf7b6d7e3434cb9441982f9534e6998c43eef144a.png", - "aggregators": [ - "PancakeCoinMarketCap", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0xc4bb2e24f4b6f762d31fc28eaac98882c32bc828": { - "address": "0xc4bb2e24f4b6f762d31fc28eaac98882c32bc828", - "symbol": "BABYTRUMP", - "decimals": 18, - "name": "BABYTRUMP", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xc4bb2e24f4b6f762d31fc28eaac98882c32bc828.png", - "aggregators": [ - "PancakeCoinMarketCap", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x40e51e0ec04283e300f12f6bb98da157bb22036e": { - "address": "0x40e51e0ec04283e300f12f6bb98da157bb22036e", - "symbol": "BLXM", - "decimals": 18, - "name": "bloXmove", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x40e51e0ec04283e300f12f6bb98da157bb22036e.png", - "aggregators": [ - "PancakeCoinMarketCap", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x92868a5255c628da08f550a858a802f5351c5223": { - "address": "0x92868a5255c628da08f550a858a802f5351c5223", - "symbol": "BRIDGE", - "decimals": 18, - "name": "Cross-Chain Bridge", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x92868a5255c628da08f550a858a802f5351c5223.png", - "aggregators": [ - "PancakeCoinMarketCap", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x7e3784220740e61dc700501bd6771226e11d8897": { - "address": "0x7e3784220740e61dc700501bd6771226e11d8897", - "symbol": "CAT", - "decimals": 18, - "name": "Cyber Arena", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x7e3784220740e61dc700501bd6771226e11d8897.png", - "aggregators": [ - "PancakeCoinMarketCap", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x527856315a4bcd2f428ea7fa05ea251f7e96a50a": { - "address": "0x527856315a4bcd2f428ea7fa05ea251f7e96a50a", - "symbol": "CDFI", - "decimals": 18, - "name": "CeDeFiAi", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x527856315a4bcd2f428ea7fa05ea251f7e96a50a.png", - "aggregators": [ - "PancakeCoinGecko", - "LiFi", - "Socket", - "Rubic", - "Rango" - ], - "occurrences": 5 - }, - "0x8f36cc333f55b09bb71091409a3d7ade399e3b1c": { - "address": "0x8f36cc333f55b09bb71091409a3d7ade399e3b1c", - "symbol": "CHER", - "decimals": 18, - "name": "Cherry Network", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x8f36cc333f55b09bb71091409a3d7ade399e3b1c.png", - "aggregators": [ - "PancakeCoinMarketCap", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x422e3af98bc1de5a1838be31a56f75db4ad43730": { - "address": "0x422e3af98bc1de5a1838be31a56f75db4ad43730", - "symbol": "COW", - "decimals": 18, - "name": "CoinWind", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x422e3af98bc1de5a1838be31a56f75db4ad43730.png", - "aggregators": [ - "PancakeCoinMarketCap", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0xd6cce248263ea1e2b8cb765178c944fc16ed0727": { - "address": "0xd6cce248263ea1e2b8cb765178c944fc16ed0727", - "symbol": "CTR", - "decimals": 18, - "name": "Creator Platform", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xd6cce248263ea1e2b8cb765178c944fc16ed0727.png", - "aggregators": [ - "PancakeCoinMarketCap", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x27ae27110350b98d564b9a3eed31baebc82d878d": { - "address": "0x27ae27110350b98d564b9a3eed31baebc82d878d", - "symbol": "CUMMIES", - "decimals": 18, - "name": "CumRocket", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x27ae27110350b98d564b9a3eed31baebc82d878d.png", - "aggregators": [ - "PancakeCoinMarketCap", - "1inch", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x3b248cefa87f836a4e6f6d6c9b42991b88dc1d58": { - "address": "0x3b248cefa87f836a4e6f6d6c9b42991b88dc1d58", - "symbol": "EMP", - "decimals": 18, - "name": "Emp Money", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x3b248cefa87f836a4e6f6d6c9b42991b88dc1d58.png", - "aggregators": [ - "PancakeCoinMarketCap", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x48b19b7605429acaa8ea734117f39726a9aab1f9": { - "address": "0x48b19b7605429acaa8ea734117f39726a9aab1f9", - "symbol": "ETHO", - "decimals": 18, - "name": "Etho Protocol", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x48b19b7605429acaa8ea734117f39726a9aab1f9.png", - "aggregators": [ - "PancakeCoinMarketCap", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0xf5d8a096cccb31b9d7bce5afe812be23e3d4690d": { - "address": "0xf5d8a096cccb31b9d7bce5afe812be23e3d4690d", - "symbol": "HAPPY", - "decimals": 18, - "name": "HappyFans", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xf5d8a096cccb31b9d7bce5afe812be23e3d4690d.png", - "aggregators": [ - "PancakeExtended", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0xe87e15b9c7d989474cb6d8c56b3db4efad5b21e8": { - "address": "0xe87e15b9c7d989474cb6d8c56b3db4efad5b21e8", - "symbol": "HOKK", - "decimals": 18, - "name": "HOKK Finance", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xe87e15b9c7d989474cb6d8c56b3db4efad5b21e8.png", - "aggregators": [ - "PancakeCoinMarketCap", - "1inch", - "Socket", - "Rubic", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x284ac5af363bde6ef5296036af8fb0e9cc347b41": { - "address": "0x284ac5af363bde6ef5296036af8fb0e9cc347b41", - "symbol": "HUSL", - "decimals": 18, - "name": "The HUSL", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x284ac5af363bde6ef5296036af8fb0e9cc347b41.png", - "aggregators": [ - "PancakeCoinMarketCap", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0xea51801b8f5b88543ddad3d1727400c15b209d8f": { - "address": "0xea51801b8f5b88543ddad3d1727400c15b209d8f", - "symbol": "INUKO", - "decimals": 18, - "name": "Inuko Finance", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xea51801b8f5b88543ddad3d1727400c15b209d8f.png", - "aggregators": [ - "PancakeCoinMarketCap", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x959229d94c9060552daea25ac17193bca65d7884": { - "address": "0x959229d94c9060552daea25ac17193bca65d7884", - "symbol": "IOI", - "decimals": 6, - "name": "IOI Token", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x959229d94c9060552daea25ac17193bca65d7884.png", - "aggregators": [ - "PancakeCoinMarketCap", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x545356d4d69d8cd1213ee7e339867574738751ca": { - "address": "0x545356d4d69d8cd1213ee7e339867574738751ca", - "symbol": "KTC", - "decimals": 18, - "name": "KTX.Finance", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x545356d4d69d8cd1213ee7e339867574738751ca.png", - "aggregators": [ - "PancakeCoinMarketCap", - "Rubic", - "Squid", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x513c3200f227ebb62e3b3d00b7a83779643a71cf": { - "address": "0x513c3200f227ebb62e3b3d00b7a83779643a71cf", - "symbol": "LIFT", - "decimals": 18, - "name": "Uplift", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x513c3200f227ebb62e3b3d00b7a83779643a71cf.png", - "aggregators": [ - "PancakeCoinMarketCap", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x1591e923e0836a3949b59637fbe8959f000894b9": { - "address": "0x1591e923e0836a3949b59637fbe8959f000894b9", - "symbol": "MAI", - "decimals": 18, - "name": "Multi AI", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x1591e923e0836a3949b59637fbe8959f000894b9.png", - "aggregators": [ - "PancakeCoinMarketCap", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0xc9bcf3f71e37579a4a42591b09c9dd93dfe27965": { - "address": "0xc9bcf3f71e37579a4a42591b09c9dd93dfe27965", - "symbol": "MILK", - "decimals": 18, - "name": "Milkshake Swap", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xc9bcf3f71e37579a4a42591b09c9dd93dfe27965.png", - "aggregators": [ - "PancakeCoinMarketCap", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0xcd6926193308d3b371fdd6a6219067e550000000": { - "address": "0xcd6926193308d3b371fdd6a6219067e550000000", - "symbol": "NEST", - "decimals": 18, - "name": "Nest Protocol", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xcd6926193308d3b371fdd6a6219067e550000000.png", - "aggregators": [ - "PancakeCoinMarketCap", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0xb49b7e0742ecb4240ffe91661d2a580677460b6a": { - "address": "0xb49b7e0742ecb4240ffe91661d2a580677460b6a", - "symbol": "PERI", - "decimals": 18, - "name": "PERI Finance", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xb49b7e0742ecb4240ffe91661d2a580677460b6a.png", - "aggregators": [ - "PancakeCoinMarketCap", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x464fdb8affc9bac185a7393fd4298137866dcfb8": { - "address": "0x464fdb8affc9bac185a7393fd4298137866dcfb8", - "symbol": "REALM", - "decimals": 18, - "name": "Realm", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x464fdb8affc9bac185a7393fd4298137866dcfb8.png", - "aggregators": [ - "PancakeCoinMarketCap", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0xf3a587d1ac967b40db59223434baf0c6e11588ea": { - "address": "0xf3a587d1ac967b40db59223434baf0c6e11588ea", - "symbol": "SNS", - "decimals": 18, - "name": "Sonorus", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xf3a587d1ac967b40db59223434baf0c6e11588ea.png", - "aggregators": [ - "PancakeCoinMarketCap", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x13a637026df26f846d55acc52775377717345c06": { - "address": "0x13a637026df26f846d55acc52775377717345c06", - "symbol": "SPAY", - "decimals": 18, - "name": "SpaceY 2025", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x13a637026df26f846d55acc52775377717345c06.png", - "aggregators": [ - "PancakeCoinMarketCap", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x75d107de2217ffe2cd574a1b3297c70c8fafd159": { - "address": "0x75d107de2217ffe2cd574a1b3297c70c8fafd159", - "symbol": "TRY", - "decimals": 18, - "name": "TryHards", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x75d107de2217ffe2cd574a1b3297c70c8fafd159.png", - "aggregators": [ - "PancakeCoinMarketCap", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0xd17479997f34dd9156deef8f95a52d81d265be9c": { - "address": "0xd17479997f34dd9156deef8f95a52d81d265be9c", - "symbol": "USDD", - "decimals": 18, - "name": "Decentralized USD", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xd17479997f34dd9156deef8f95a52d81d265be9c.png", - "aggregators": [ - "PancakeCoinMarketCap", - "LiFi", - "Socket", - "Rubic", - "Rango" - ], - "occurrences": 5 - }, - "0x5b6ebb33eea2d12eefd4a9b2aeaf733231169684": { - "address": "0x5b6ebb33eea2d12eefd4a9b2aeaf733231169684", - "symbol": "WELD", - "decimals": 18, - "name": "WELD", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x5b6ebb33eea2d12eefd4a9b2aeaf733231169684.png", - "aggregators": [ - "PancakeCoinMarketCap", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0xa9c41a46a6b3531d28d5c32f6633dd2ff05dfb90": { - "address": "0xa9c41a46a6b3531d28d5c32f6633dd2ff05dfb90", - "symbol": "WEX", - "decimals": 18, - "name": "WaultSwap", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xa9c41a46a6b3531d28d5c32f6633dd2ff05dfb90.png", - "aggregators": [ - "PancakeExtended", - "1inch", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x007ea5c0ea75a8df45d288a4debdd5bb633f9e56": { - "address": "0x007ea5c0ea75a8df45d288a4debdd5bb633f9e56", - "symbol": "CAN", - "decimals": 18, - "name": "CanYaCoin", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x007ea5c0ea75a8df45d288a4debdd5bb633f9e56.png", - "aggregators": [ - "PancakeCoinMarketCap", - "Socket", - "Rubic", - "Rango", - "SushiSwap", - "BinanceDex" - ], - "occurrences": 6 - }, - "0xd4cb328a82bdf5f03eb737f37fa6b370aef3e888": { - "address": "0xd4cb328a82bdf5f03eb737f37fa6b370aef3e888", - "symbol": "CREAM", - "decimals": 18, - "name": "Cream", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xd4cb328a82bdf5f03eb737f37fa6b370aef3e888.png", - "aggregators": [ - "PancakeExtended", - "Socket", - "Rubic", - "Rango", - "SushiSwap" - ], - "occurrences": 5 - }, - "0xe64f5cb844946c1f102bd25bbd87a5ab4ae89fbe": { - "address": "0xe64f5cb844946c1f102bd25bbd87a5ab4ae89fbe", - "symbol": "BROOBEE", - "decimals": 18, - "name": "ROOBEE", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xe64f5cb844946c1f102bd25bbd87a5ab4ae89fbe.png", - "aggregators": [ - "PancakeExtended", - "Socket", - "Rubic", - "Rango", - "SushiSwap" - ], - "occurrences": 5 - }, - "0x1a5f096d6d4f0da25f2df00279cff615c7f856fc": { - "address": "0x1a5f096d6d4f0da25f2df00279cff615c7f856fc", - "symbol": "CAMILLE", - "decimals": 18, - "name": "Camille", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x1a5f096d6d4f0da25f2df00279cff615c7f856fc.png", - "aggregators": [ - "PancakeExtended", - "LiFi", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x39ae8eefb05138f418bb27659c21632dc1ddab10": { - "address": "0x39ae8eefb05138f418bb27659c21632dc1ddab10", - "symbol": "KAI", - "decimals": 18, - "name": "KardiaChain Token", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x39ae8eefb05138f418bb27659c21632dc1ddab10.png", - "aggregators": ["PancakeCoinMarketCap", "Socket", "Rubic", "Rango"], - "occurrences": 4 - }, - "0xa19863e302fd1b41276fce5a48d9c511dbeef34c": { - "address": "0xa19863e302fd1b41276fce5a48d9c511dbeef34c", - "symbol": "PRIMATE", - "decimals": 18, - "name": "Primate", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xa19863e302fd1b41276fce5a48d9c511dbeef34c.png", - "aggregators": [ - "PancakeCoinMarketCap", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 4 - }, - "0x545f90dc35ca1e6129f1fed354b3e2df12034261": { - "address": "0x545f90dc35ca1e6129f1fed354b3e2df12034261", - "symbol": "NEWB", - "decimals": 18, - "name": "NewB.Farm", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x545f90dc35ca1e6129f1fed354b3e2df12034261.png", - "aggregators": [ - "PancakeCoinMarketCap", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 4 - }, - "0xec15a508a187e8ddfe572a5423faa82bbdd65120": { - "address": "0xec15a508a187e8ddfe572a5423faa82bbdd65120", - "symbol": "BABI", - "decimals": 18, - "name": "Babylons", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xec15a508a187e8ddfe572a5423faa82bbdd65120.png", - "aggregators": [ - "PancakeCoinMarketCap", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 4 - }, - "0x4f3266a56589357b4f8082918b14b923693e57f0": { - "address": "0x4f3266a56589357b4f8082918b14b923693e57f0", - "symbol": "LICO", - "decimals": 18, - "name": "Liquid Collectibles", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x4f3266a56589357b4f8082918b14b923693e57f0.png", - "aggregators": [ - "PancakeCoinMarketCap", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 4 - }, - "0xd635b32688f36ee4a7fe117b4c91dd811277acb6": { - "address": "0xd635b32688f36ee4a7fe117b4c91dd811277acb6", - "symbol": "COPYCAT", - "decimals": 18, - "name": "Copycat Finance", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xd635b32688f36ee4a7fe117b4c91dd811277acb6.png", - "aggregators": [ - "PancakeCoinMarketCap", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 4 - }, - "0xb19289b436b2f7a92891ac391d8f52580d3087e4": { - "address": "0xb19289b436b2f7a92891ac391d8f52580d3087e4", - "symbol": "OASIS", - "decimals": 18, - "name": "ProjectOasis", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xb19289b436b2f7a92891ac391d8f52580d3087e4.png", - "aggregators": [ - "PancakeCoinMarketCap", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 4 - }, - "0xfb9c339b4bace4fe63ccc1dd9a3c3c531441d5fe": { - "address": "0xfb9c339b4bace4fe63ccc1dd9a3c3c531441d5fe", - "symbol": "SHILL", - "decimals": 18, - "name": "SHILL Token", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xfb9c339b4bace4fe63ccc1dd9a3c3c531441d5fe.png", - "aggregators": [ - "PancakeCoinMarketCap", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 4 - }, - "0xa75e7928d3de682e3f44da60c26f33117c4e6c5c": { - "address": "0xa75e7928d3de682e3f44da60c26f33117c4e6c5c", - "symbol": "PEL", - "decimals": 18, - "name": "Propel", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xa75e7928d3de682e3f44da60c26f33117c4e6c5c.png", - "aggregators": [ - "PancakeCoinMarketCap", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 4 - }, - "0x08f725d2809fda409bc23493f3615a4c85a22d7d": { - "address": "0x08f725d2809fda409bc23493f3615a4c85a22d7d", - "symbol": "TRUSTNFT", - "decimals": 18, - "name": "TrustNFT", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x08f725d2809fda409bc23493f3615a4c85a22d7d.png", - "aggregators": [ - "PancakeCoinMarketCap", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 4 - }, - "0x61fa01129ac0bb124d1c60dc9f735c6c579a858b": { - "address": "0x61fa01129ac0bb124d1c60dc9f735c6c579a858b", - "symbol": "KTE", - "decimals": 18, - "name": "Kyte.One", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x61fa01129ac0bb124d1c60dc9f735c6c579a858b.png", - "aggregators": [ - "PancakeCoinMarketCap", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 4 - }, - "0x1a9b49e9f075c37fe5f86c916bac9deb33556d7e": { - "address": "0x1a9b49e9f075c37fe5f86c916bac9deb33556d7e", - "symbol": "ASPO", - "decimals": 18, - "name": "ASPO World", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x1a9b49e9f075c37fe5f86c916bac9deb33556d7e.png", - "aggregators": [ - "PancakeCoinMarketCap", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 4 - }, - "0x1d6cbdc6b29c6afbae65444a1f65ba9252b8ca83": { - "address": "0x1d6cbdc6b29c6afbae65444a1f65ba9252b8ca83", - "symbol": "TOR", - "decimals": 18, - "name": "TOR", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x1d6cbdc6b29c6afbae65444a1f65ba9252b8ca83.png", - "aggregators": [ - "PancakeCoinMarketCap", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 4 - }, - "0x53e4b7aa6caccb9576548be3259e62de4ddd4417": { - "address": "0x53e4b7aa6caccb9576548be3259e62de4ddd4417", - "symbol": "DAL", - "decimals": 18, - "name": "DAOLaunch", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x53e4b7aa6caccb9576548be3259e62de4ddd4417.png", - "aggregators": [ - "PancakeCoinMarketCap", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 4 - }, - "0xd52669712f253cd6b2fe8a8638f66ed726cb770c": { - "address": "0xd52669712f253cd6b2fe8a8638f66ed726cb770c", - "symbol": "XCUR", - "decimals": 8, - "name": "Curate", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xd52669712f253cd6b2fe8a8638f66ed726cb770c.png", - "aggregators": ["PancakeCoinMarketCap", "Socket", "Rubic", "Rango"], - "occurrences": 4 - }, - "0x4f1960e29b2ca581a38c5c474e123f420f8092db": { - "address": "0x4f1960e29b2ca581a38c5c474e123f420f8092db", - "symbol": "UBXS", - "decimals": 6, - "name": "UBXS", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x4f1960e29b2ca581a38c5c474e123f420f8092db.png", - "aggregators": [ - "PancakeCoinMarketCap", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 4 - }, - "0x529c79f6918665ebe250f32eeeaa1d410a0798c6": { - "address": "0x529c79f6918665ebe250f32eeeaa1d410a0798c6", - "symbol": "HGPT", - "decimals": 18, - "name": "HyperGPT", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x529c79f6918665ebe250f32eeeaa1d410a0798c6.png", - "aggregators": [ - "PancakeCoinMarketCap", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 4 - }, - "0x7b56748a3ef9970a5bae99c58ad8bc67b26c525f": { - "address": "0x7b56748a3ef9970a5bae99c58ad8bc67b26c525f", - "symbol": "CHAPZ", - "decimals": 10, - "name": "Chappyz", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x7b56748a3ef9970a5bae99c58ad8bc67b26c525f.png", - "aggregators": [ - "PancakeCoinMarketCap", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 4 - }, - "0x83451a4e3585fda74feb348ad929f2c4ca189660": { - "address": "0x83451a4e3585fda74feb348ad929f2c4ca189660", - "symbol": "HNTR", - "decimals": 18, - "name": "Hunter Token", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x83451a4e3585fda74feb348ad929f2c4ca189660.png", - "aggregators": [ - "PancakeCoinMarketCap", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 4 - }, - "0x1c3ba6cf2676cc795db02a3b2093e5076f5f330e": { - "address": "0x1c3ba6cf2676cc795db02a3b2093e5076f5f330e", - "symbol": "CDX", - "decimals": 18, - "name": "CodeXChain", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x1c3ba6cf2676cc795db02a3b2093e5076f5f330e.png", - "aggregators": [ - "PancakeCoinMarketCap", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 4 - }, - "0xf03ca04dd56d695a410f46f14fef4028b22fb79a": { - "address": "0xf03ca04dd56d695a410f46f14fef4028b22fb79a", - "symbol": "NFE", - "decimals": 18, - "name": "Edu3Labs", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xf03ca04dd56d695a410f46f14fef4028b22fb79a.png", - "aggregators": [ - "PancakeCoinMarketCap", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 4 - }, - "0x9e57e83ad79ac5312ba82940ba037ed30600e167": { - "address": "0x9e57e83ad79ac5312ba82940ba037ed30600e167", - "symbol": "F3", - "decimals": 18, - "name": "Friend3", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x9e57e83ad79ac5312ba82940ba037ed30600e167.png", - "aggregators": [ - "PancakeCoinMarketCap", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 4 - }, - "0x426c1c971fb00caaf1883bd801323a8becb0c919": { - "address": "0x426c1c971fb00caaf1883bd801323a8becb0c919", - "symbol": "CARAT", - "decimals": 18, - "name": "Alaska Gold Rush", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x426c1c971fb00caaf1883bd801323a8becb0c919.png", - "aggregators": [ - "PancakeCoinMarketCap", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 4 - }, - "0xf2b688b2201979d44fdf18d1d8c641305cf560ba": { - "address": "0xf2b688b2201979d44fdf18d1d8c641305cf560ba", - "symbol": "EVO", - "decimals": 18, - "name": "Devomon", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xf2b688b2201979d44fdf18d1d8c641305cf560ba.png", - "aggregators": [ - "PancakeCoinMarketCap", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 4 - }, - "0xebbaeff6217d22e7744394061d874015709b8141": { - "address": "0xebbaeff6217d22e7744394061d874015709b8141", - "symbol": "WAM", - "decimals": 18, - "name": "Wam", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xebbaeff6217d22e7744394061d874015709b8141.png", - "aggregators": [ - "PancakeCoinMarketCap", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 4 - }, - "0x29838b8c8b7cd6f0698c2fd6feaf0363d2cb6da1": { - "address": "0x29838b8c8b7cd6f0698c2fd6feaf0363d2cb6da1", - "symbol": "TX20", - "decimals": 18, - "name": "Trex20", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x29838b8c8b7cd6f0698c2fd6feaf0363d2cb6da1.png", - "aggregators": [ - "PancakeCoinMarketCap", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 4 - }, - "0x1f56efffee38eeeae36cd38225b66c56e4d095a7": { - "address": "0x1f56efffee38eeeae36cd38225b66c56e4d095a7", - "symbol": "GPTV", - "decimals": 18, - "name": "GPTVerse", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x1f56efffee38eeeae36cd38225b66c56e4d095a7.png", - "aggregators": [ - "PancakeCoinMarketCap", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 4 - }, - "0xe58c3a44b74362048e202cb7c8036d4b0b28af50": { - "address": "0xe58c3a44b74362048e202cb7c8036d4b0b28af50", - "symbol": "SXCH", - "decimals": 18, - "name": "SolarX", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xe58c3a44b74362048e202cb7c8036d4b0b28af50.png", - "aggregators": [ - "PancakeCoinMarketCap", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 4 - }, - "0xf4341fa52669cea0c1836095529a7e9b04b8b88d": { - "address": "0xf4341fa52669cea0c1836095529a7e9b04b8b88d", - "symbol": "SATOZ", - "decimals": 8, - "name": "Satozhi", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xf4341fa52669cea0c1836095529a7e9b04b8b88d.png", - "aggregators": [ - "PancakeCoinMarketCap", - "Socket", - "Rubic", - "Sonarwatch" - ], - "occurrences": 4 - }, - "0x0203d275d2a65030889af45ed91d472be3948b92": { - "address": "0x0203d275d2a65030889af45ed91d472be3948b92", - "symbol": "FURY", - "decimals": 18, - "name": "Engines of Fury", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x0203d275d2a65030889af45ed91d472be3948b92.png", - "aggregators": ["PancakeExtended", "Rubic", "Squid", "Sonarwatch"], - "occurrences": 4 - }, - "0xfebe8c1ed424dbf688551d4e2267e7a53698f0aa": { - "address": "0xfebe8c1ed424dbf688551d4e2267e7a53698f0aa", - "symbol": "VINU", - "decimals": 18, - "name": "Vita Inu", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xfebe8c1ed424dbf688551d4e2267e7a53698f0aa.png", - "aggregators": ["PancakeExtended", "1inch", "Rubic", "Sonarwatch"], - "occurrences": 4 - }, - "0x95a1199eba84ac5f19546519e287d43d2f0e1b41": { - "address": "0x95a1199eba84ac5f19546519e287d43d2f0e1b41", - "symbol": "RABBIT", - "decimals": 18, - "name": "Rabbit Finance", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x95a1199eba84ac5f19546519e287d43d2f0e1b41.png", - "aggregators": ["PancakeExtended", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0xfceb31a79f71ac9cbdcf853519c1b12d379edc46": { - "address": "0xfceb31a79f71ac9cbdcf853519c1b12d379edc46", - "symbol": "LISTA", - "decimals": 18, - "name": "Lista DAO", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xfceb31a79f71ac9cbdcf853519c1b12d379edc46.png", - "aggregators": ["PancakeExtended", "LiFi", "Rubic", "Sonarwatch"], - "occurrences": 4 - }, - "0x5b1f874d0b0c5ee17a495cbb70ab8bf64107a3bd": { - "address": "0x5b1f874d0b0c5ee17a495cbb70ab8bf64107a3bd", - "symbol": "BNX", - "decimals": 18, - "name": "BinaryX", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x5b1f874d0b0c5ee17a495cbb70ab8bf64107a3bd.png", - "aggregators": ["PancakeExtended", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0xa9b038285f43cd6fe9e16b4c80b4b9bccd3c161b": { - "address": "0xa9b038285f43cd6fe9e16b4c80b4b9bccd3c161b", - "symbol": "AI", - "decimals": 18, - "name": "Flourishing AI Token", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xa9b038285f43cd6fe9e16b4c80b4b9bccd3c161b.png", - "aggregators": ["PancakeCoinMarketCap", "Socket", "Rubic", "Rango"], - "occurrences": 4 - }, - "0xf606bd19b1e61574ed625d9ea96c841d4e247a32": { - "address": "0xf606bd19b1e61574ed625d9ea96c841d4e247a32", - "symbol": "GUARD", - "decimals": 18, - "name": "Guardian", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xf606bd19b1e61574ed625d9ea96c841d4e247a32.png", - "aggregators": ["PancakeCoinMarketCap", "1inch", "Rubic", "Rango"], - "occurrences": 4 - }, - "0x19e6bfc1a6e4b042fb20531244d47e252445df01": { - "address": "0x19e6bfc1a6e4b042fb20531244d47e252445df01", - "symbol": "TEM", - "decimals": 9, - "name": "Templar DAO", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x19e6bfc1a6e4b042fb20531244d47e252445df01.png", - "aggregators": ["PancakeExtended", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0x94b69263fca20119ae817b6f783fc0f13b02ad50": { - "address": "0x94b69263fca20119ae817b6f783fc0f13b02ad50", - "symbol": "LOA", - "decimals": 18, - "name": "League of Ancients", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x94b69263fca20119ae817b6f783fc0f13b02ad50.png", - "aggregators": ["PancakeExtended", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0x84c97300a190676a19d1e13115629a11f8482bd1": { - "address": "0x84c97300a190676a19d1e13115629a11f8482bd1", - "symbol": "DDD", - "decimals": 18, - "name": "Dot Dot Finance", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x84c97300a190676a19d1e13115629a11f8482bd1.png", - "aggregators": [ - "PancakeCoinMarketCap", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 4 - }, - "0xa260e12d2b924cb899ae80bb58123ac3fee1e2f0": { - "address": "0xa260e12d2b924cb899ae80bb58123ac3fee1e2f0", - "symbol": "HOOK", - "decimals": 18, - "name": "Hooked Protocol", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xa260e12d2b924cb899ae80bb58123ac3fee1e2f0.png", - "aggregators": ["PancakeExtended", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0x5e2689412fae5c29bd575fbe1d5c1cd1e0622a8f": { - "address": "0x5e2689412fae5c29bd575fbe1d5c1cd1e0622a8f", - "symbol": "HTD", - "decimals": 18, - "name": "Heroes TD", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x5e2689412fae5c29bd575fbe1d5c1cd1e0622a8f.png", - "aggregators": ["PancakeExtended", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0x62823659d09f9f9d2222058878f89437425eb261": { - "address": "0x62823659d09f9f9d2222058878f89437425eb261", - "symbol": "ERTHA", - "decimals": 18, - "name": "Ertha", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x62823659d09f9f9d2222058878f89437425eb261.png", - "aggregators": ["PancakeExtended", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0x936b6659ad0c1b244ba8efe639092acae30dc8d6": { - "address": "0x936b6659ad0c1b244ba8efe639092acae30dc8d6", - "symbol": "CO", - "decimals": 6, - "name": "Corite", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x936b6659ad0c1b244ba8efe639092acae30dc8d6.png", - "aggregators": ["PancakeExtended", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0xc598275452fa319d75ee5f176fd3b8384925b425": { - "address": "0xc598275452fa319d75ee5f176fd3b8384925b425", - "symbol": "STRM", - "decimals": 18, - "name": "StreamCoin", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xc598275452fa319d75ee5f176fd3b8384925b425.png", - "aggregators": [ - "PancakeCoinMarketCap", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 4 - }, - "0xfa40d8fc324bcdd6bbae0e086de886c571c225d4": { - "address": "0xfa40d8fc324bcdd6bbae0e086de886c571c225d4", - "symbol": "WZRD", - "decimals": 18, - "name": "Wizardia", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xfa40d8fc324bcdd6bbae0e086de886c571c225d4.png", - "aggregators": ["PancakeExtended", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0xca044f16afa434c0c17c0478d8a6ce4feef46504": { - "address": "0xca044f16afa434c0c17c0478d8a6ce4feef46504", - "symbol": "MAPE", - "decimals": 18, - "name": "Mecha Morphing", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xca044f16afa434c0c17c0478d8a6ce4feef46504.png", - "aggregators": [ - "PancakeCoinMarketCap", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 4 - }, - "0x4be63a9b26ee89b9a3a13fd0aa1d0b2427c135f8": { - "address": "0x4be63a9b26ee89b9a3a13fd0aa1d0b2427c135f8", - "symbol": "XCV", - "decimals": 18, - "name": "XCarnival", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x4be63a9b26ee89b9a3a13fd0aa1d0b2427c135f8.png", - "aggregators": ["PancakeExtended", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0x1ee098cbaf1f846d5df1993f7e2d10afb35a878d": { - "address": "0x1ee098cbaf1f846d5df1993f7e2d10afb35a878d", - "symbol": "SABLE", - "decimals": 18, - "name": "Sable", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x1ee098cbaf1f846d5df1993f7e2d10afb35a878d.png", - "aggregators": ["PancakeExtended", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0x837a130aed114300bab4f9f1f4f500682f7efd48": { - "address": "0x837a130aed114300bab4f9f1f4f500682f7efd48", - "symbol": "WSI", - "decimals": 18, - "name": "WeSendit", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x837a130aed114300bab4f9f1f4f500682f7efd48.png", - "aggregators": ["PancakeExtended", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0xbaea9aba1454df334943951d51116ae342eab255": { - "address": "0xbaea9aba1454df334943951d51116ae342eab255", - "symbol": "POOLX", - "decimals": 18, - "name": "Poolz Finance", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xbaea9aba1454df334943951d51116ae342eab255.png", - "aggregators": ["PancakeExtended", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0xf563e86e461de100cfcfd8b65daa542d3d4b0550": { - "address": "0xf563e86e461de100cfcfd8b65daa542d3d4b0550", - "symbol": "COCO", - "decimals": 18, - "name": "COCO COIN", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xf563e86e461de100cfcfd8b65daa542d3d4b0550.png", - "aggregators": ["PancakeExtended", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0x4ba0057f784858a48fe351445c672ff2a3d43515": { - "address": "0x4ba0057f784858a48fe351445c672ff2a3d43515", - "symbol": "KALM", - "decimals": 18, - "name": "KALM", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x4ba0057f784858a48fe351445c672ff2a3d43515.png", - "aggregators": ["PancakeExtended", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0x3910db0600ea925f63c36ddb1351ab6e2c6eb102": { - "address": "0x3910db0600ea925f63c36ddb1351ab6e2c6eb102", - "symbol": "SPARTA", - "decimals": 18, - "name": "Spartan Protocol", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x3910db0600ea925f63c36ddb1351ab6e2c6eb102.png", - "aggregators": ["PancakeExtended", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0x21fd16cd0ef24a49d28429921e335bb0c1bfadb3": { - "address": "0x21fd16cd0ef24a49d28429921e335bb0c1bfadb3", - "symbol": "FOUR", - "decimals": 18, - "name": "4", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x21fd16cd0ef24a49d28429921e335bb0c1bfadb3.png", - "aggregators": ["PancakeExtended", "Socket", "Rubic", "Sonarwatch"], - "occurrences": 4 - }, - "0x658a109c5900bc6d2357c87549b651670e5b0539": { - "address": "0x658a109c5900bc6d2357c87549b651670e5b0539", - "symbol": "FOR", - "decimals": 18, - "name": "ForTube", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x658a109c5900bc6d2357c87549b651670e5b0539.png", - "aggregators": ["PancakeExtended", "Socket", "Rubic", "Rango"], - "occurrences": 4 - }, - "0xa3f020a5c92e15be13caf0ee5c95cf79585eecc9": { - "address": "0xa3f020a5c92e15be13caf0ee5c95cf79585eecc9", - "symbol": "ELF", - "decimals": 18, - "name": "ELF Token", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xa3f020a5c92e15be13caf0ee5c95cf79585eecc9.png", - "aggregators": ["PancakeCoinMarketCap", "Socket", "Rubic", "Rango"], - "occurrences": 4 - }, - "0x1861c9058577c3b48e73d91d6f25c18b17fbffe0": { - "address": "0x1861c9058577c3b48e73d91d6f25c18b17fbffe0", - "symbol": "DSLA", - "decimals": 18, - "name": "DSLA Protocol", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x1861c9058577c3b48e73d91d6f25c18b17fbffe0.png", - "aggregators": ["PancakeCoinMarketCap", "Socket", "Rubic", "Rango"], - "occurrences": 4 - }, - "0x1ba8d3c4c219b124d351f603060663bd1bcd9bbf": { - "address": "0x1ba8d3c4c219b124d351f603060663bd1bcd9bbf", - "symbol": "TORN", - "decimals": 18, - "name": "TornadoCash", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x1ba8d3c4c219b124d351f603060663bd1bcd9bbf.png", - "aggregators": ["PancakeCoinMarketCap", "Socket", "Rubic", "Rango"], - "occurrences": 4 - }, - "0x482e6bd0a178f985818c5dfb9ac77918e8412fba": { - "address": "0x482e6bd0a178f985818c5dfb9ac77918e8412fba", - "symbol": "ZEUM", - "decimals": 18, - "name": "Colizeum", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x482e6bd0a178f985818c5dfb9ac77918e8412fba.png", - "aggregators": ["PancakeCoinMarketCap", "Socket", "Rubic", "Rango"], - "occurrences": 4 - }, - "0xfd4f2caf941b6d737382dce420b368de3fc7f2d4": { - "address": "0xfd4f2caf941b6d737382dce420b368de3fc7f2d4", - "symbol": "PATEX", - "decimals": 18, - "name": "Patex", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xfd4f2caf941b6d737382dce420b368de3fc7f2d4.png", - "aggregators": [ - "PancakeCoinMarketCap", - "Socket", - "Rubic", - "Sonarwatch" - ], - "occurrences": 4 - }, - "0xf1c3e69494e27bf067c4076a6f244a46446719d6": { - "address": "0xf1c3e69494e27bf067c4076a6f244a46446719d6", - "symbol": "GAINS", - "decimals": 18, - "name": "GAINS", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xf1c3e69494e27bf067c4076a6f244a46446719d6.png", - "aggregators": ["PancakeCoinMarketCap", "Socket", "Rubic", "Rango"], - "occurrences": 4 - }, - "0xaa88c603d142c371ea0eac8756123c5805edee03": { - "address": "0xaa88c603d142c371ea0eac8756123c5805edee03", - "symbol": "DOG", - "decimals": 18, - "name": "The Doge NFT", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xaa88c603d142c371ea0eac8756123c5805edee03.png", - "aggregators": ["PancakeCoinMarketCap", "Socket", "Rubic", "Rango"], - "occurrences": 4 - }, - "0x6cf8e39252bee00d168bd25bdf5834347d78e346": { - "address": "0x6cf8e39252bee00d168bd25bdf5834347d78e346", - "symbol": "CHO", - "decimals": 18, - "name": "choise.com Token", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x6cf8e39252bee00d168bd25bdf5834347d78e346.png", - "aggregators": ["PancakeCoinMarketCap", "Socket", "Rubic", "Rango"], - "occurrences": 4 - }, - "0x776f9987d9deed90eed791cbd824d971fd5ccf09": { - "address": "0x776f9987d9deed90eed791cbd824d971fd5ccf09", - "symbol": "LAI", - "decimals": 18, - "name": "LayerAI", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x776f9987d9deed90eed791cbd824d971fd5ccf09.png", - "aggregators": [ - "PancakeCoinMarketCap", - "Socket", - "Rubic", - "Sonarwatch" - ], - "occurrences": 4 - }, - "0x602b6c6cce5f95c00603bd07d8fa7ebaf3747d44": { - "address": "0x602b6c6cce5f95c00603bd07d8fa7ebaf3747d44", - "symbol": "RJV", - "decimals": 6, - "name": "Rejuve Token", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x602b6c6cce5f95c00603bd07d8fa7ebaf3747d44.png", - "aggregators": ["PancakeCoinMarketCap", "Socket", "Rubic", "Rango"], - "occurrences": 4 - }, - "0xa6c897caaca3db7fd6e2d2ce1a00744f40ab87bb": { - "address": "0xa6c897caaca3db7fd6e2d2ce1a00744f40ab87bb", - "symbol": "DRACE", - "decimals": 18, - "name": "DeathRoad", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xa6c897caaca3db7fd6e2d2ce1a00744f40ab87bb.png", - "aggregators": ["PancakeTop100", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0x09a6c44c3947b69e2b45f4d51b67e6a39acfb506": { - "address": "0x09a6c44c3947b69e2b45f4d51b67e6a39acfb506", - "symbol": "UNCX", - "decimals": 18, - "name": "UniCrypt on xDai on BSC", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x09a6c44c3947b69e2b45f4d51b67e6a39acfb506.png", - "aggregators": ["PancakeTop100", "Socket", "Rubic", "Rango"], - "occurrences": 4 - }, - "0x366d71ab095735b7dae83ce2b82d5262ef655f10": { - "address": "0x366d71ab095735b7dae83ce2b82d5262ef655f10", - "symbol": "APAD", - "decimals": 18, - "name": "AnyPad", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x366d71ab095735b7dae83ce2b82d5262ef655f10.png", - "aggregators": ["PancakeCoinMarketCap", "Socket", "Rubic", "Rango"], - "occurrences": 4 - }, - "0xf5e11df1ebcf78b6b6d26e04ff19cd786a1e81dc": { - "address": "0xf5e11df1ebcf78b6b6d26e04ff19cd786a1e81dc", - "symbol": "BBTC", - "decimals": 18, - "name": "BounceBit BTC", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xf5e11df1ebcf78b6b6d26e04ff19cd786a1e81dc.png", - "aggregators": [ - "PancakeCoinMarketCap", - "Socket", - "Rubic", - "Sonarwatch" - ], - "occurrences": 4 - }, - "0xfe1d7f7a8f0bda6e415593a2e4f82c64b446d404": { - "address": "0xfe1d7f7a8f0bda6e415593a2e4f82c64b446d404", - "symbol": "BLP", - "decimals": 18, - "name": "BullPerks", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xfe1d7f7a8f0bda6e415593a2e4f82c64b446d404.png", - "aggregators": [ - "PancakeCoinMarketCap", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 4 - }, - "0x51e7b598c9155b9dccb04eb42519f6eec9c841e9": { - "address": "0x51e7b598c9155b9dccb04eb42519f6eec9c841e9", - "symbol": "BTL", - "decimals": 6, - "name": "Bitlocus Token", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x51e7b598c9155b9dccb04eb42519f6eec9c841e9.png", - "aggregators": ["PancakeCoinMarketCap", "Socket", "Rubic", "Rango"], - "occurrences": 4 - }, - "0xd98560689c6e748dc37bc410b4d3096b1aa3d8c2": { - "address": "0xd98560689c6e748dc37bc410b4d3096b1aa3d8c2", - "symbol": "DFY", - "decimals": 18, - "name": "DeFi For You.", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xd98560689c6e748dc37bc410b4d3096b1aa3d8c2.png", - "aggregators": [ - "PancakeCoinMarketCap", - "Rubic", - "Rango", - "Sonarwatch", - "BinanceDex" - ], - "occurrences": 5 - }, - "0xff8bbc599ea030aa69d0298035dfe263740a95bc": { - "address": "0xff8bbc599ea030aa69d0298035dfe263740a95bc", - "symbol": "DHN", - "decimals": 18, - "name": "Dohrnii", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xff8bbc599ea030aa69d0298035dfe263740a95bc.png", - "aggregators": ["PancakeCoinMarketCap", "Socket", "Rubic", "Rango"], - "occurrences": 4 - }, - "0x049d68029688eabf473097a2fc38ef61633a3c7a": { - "address": "0x049d68029688eabf473097a2fc38ef61633a3c7a", - "symbol": "FUSDT", - "decimals": 6, - "name": "Frapped USDT", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x049d68029688eabf473097a2fc38ef61633a3c7a.png", - "aggregators": [ - "PancakeCoinMarketCap", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 4 - }, - "0x30842a9c941d9de3af582c41ad12b11d776ba69e": { - "address": "0x30842a9c941d9de3af582c41ad12b11d776ba69e", - "symbol": "GPT", - "decimals": 18, - "name": "QnA3.AI", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x30842a9c941d9de3af582c41ad12b11d776ba69e.png", - "aggregators": [ - "PancakeCoinMarketCap", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 4 - }, - "0xf48f91df403976060cc05dbbf8a0901b09fdefd4": { - "address": "0xf48f91df403976060cc05dbbf8a0901b09fdefd4", - "symbol": "MINU", - "decimals": 18, - "name": "Minu", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xf48f91df403976060cc05dbbf8a0901b09fdefd4.png", - "aggregators": [ - "PancakeCoinMarketCap", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 4 - }, - "0x7b610012bdc4d6deba2c2d91684e408f40863429": { - "address": "0x7b610012bdc4d6deba2c2d91684e408f40863429", - "symbol": "OSEA", - "decimals": 18, - "name": "Omnisea", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x7b610012bdc4d6deba2c2d91684e408f40863429.png", - "aggregators": [ - "PancakeCoinMarketCap", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 4 - }, - "0xf2c96e402c9199682d5ded26d3771c6b192c01af": { - "address": "0xf2c96e402c9199682d5ded26d3771c6b192c01af", - "symbol": "SCLP", - "decimals": 18, - "name": "Scallop", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xf2c96e402c9199682d5ded26d3771c6b192c01af.png", - "aggregators": [ - "PancakeCoinMarketCap", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 4 - }, - "0x6730f7a6bbb7b9c8e60843948f7feb4b6a17b7f7": { - "address": "0x6730f7a6bbb7b9c8e60843948f7feb4b6a17b7f7", - "symbol": "SEED", - "decimals": 18, - "name": "Seed.Photo", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x6730f7a6bbb7b9c8e60843948f7feb4b6a17b7f7.png", - "aggregators": ["PancakeCoinMarketCap", "Socket", "Rubic", "Rango"], - "occurrences": 4 - }, - "0x50c34995a273075a80c23625f69f40d56ce414de": { - "address": "0x50c34995a273075a80c23625f69f40d56ce414de", - "symbol": "SELF", - "decimals": 18, - "name": "SELF Crypto", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x50c34995a273075a80c23625f69f40d56ce414de.png", - "aggregators": ["PancakeCoinMarketCap", "Socket", "Rubic", "Rango"], - "occurrences": 4 - }, - "0x00f97c17f4dc4f3bfd2dd9ce5e67f3a339a8a261": { - "address": "0x00f97c17f4dc4f3bfd2dd9ce5e67f3a339a8a261", - "symbol": "SHIELD", - "decimals": 18, - "name": "Shield Protocol", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x00f97c17f4dc4f3bfd2dd9ce5e67f3a339a8a261.png", - "aggregators": ["PancakeCoinMarketCap", "Socket", "Rubic", "Rango"], - "occurrences": 4 - }, - "0x35bedbf9291b22218a0da863170dcc9329ef2563": { - "address": "0x35bedbf9291b22218a0da863170dcc9329ef2563", - "symbol": "TAP", - "decimals": 18, - "name": "TAP Coin", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x35bedbf9291b22218a0da863170dcc9329ef2563.png", - "aggregators": ["PancakeCoinMarketCap", "Socket", "Rubic", "Rango"], - "occurrences": 4 - }, - "0x2794dad4077602ed25a88d03781528d1637898b4": { - "address": "0x2794dad4077602ed25a88d03781528d1637898b4", - "symbol": "VITE", - "decimals": 18, - "name": "Vite", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x2794dad4077602ed25a88d03781528d1637898b4.png", - "aggregators": [ - "PancakeCoinMarketCap", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 4 - }, - "0x55f96c7005d7c684a65ee653b07b5fe1507c56ab": { - "address": "0x55f96c7005d7c684a65ee653b07b5fe1507c56ab", - "symbol": "WOJ", - "decimals": 9, - "name": "Wojak Finance", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x55f96c7005d7c684a65ee653b07b5fe1507c56ab.png", - "aggregators": [ - "PancakeCoinMarketCap", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 4 - }, - "0x5cc5e64ab764a0f1e97f23984e20fd4528356a6a": { - "address": "0x5cc5e64ab764a0f1e97f23984e20fd4528356a6a", - "symbol": "XRGB", - "decimals": 18, - "name": "XRGB", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x5cc5e64ab764a0f1e97f23984e20fd4528356a6a.png", - "aggregators": ["PancakeExtended", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0x666666661f9b6d8c581602aaa2f76cbead06c401": { - "address": "0x666666661f9b6d8c581602aaa2f76cbead06c401", - "symbol": "XY", - "decimals": 18, - "name": "XY Token", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x666666661f9b6d8c581602aaa2f76cbead06c401.png", - "aggregators": ["PancakeCoinMarketCap", "Socket", "Rubic", "Rango"], - "occurrences": 4 - }, - "0x00f80a8f39bb4d04a3038c497e3642bf1b0a304e": { - "address": "0x00f80a8f39bb4d04a3038c497e3642bf1b0a304e", - "symbol": "BOUNTIE", - "decimals": 18, - "name": "Bountie Hunter", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x00f80a8f39bb4d04a3038c497e3642bf1b0a304e.png", - "aggregators": ["PancakeCoinMarketCap", "Rubic", "Rango"], - "occurrences": 3 - }, - "0xad0926ecf31719263dc86426024794332d9dd9a3": { - "address": "0xad0926ecf31719263dc86426024794332d9dd9a3", - "symbol": "ARCAS", - "decimals": 18, - "name": "Arcas", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xad0926ecf31719263dc86426024794332d9dd9a3.png", - "aggregators": ["PancakeCoinMarketCap", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x317ae555dd3d474c4427699a7841891d398fa5a0": { - "address": "0x317ae555dd3d474c4427699a7841891d398fa5a0", - "symbol": "WEEBS", - "decimals": 18, - "name": "WEEBS", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x317ae555dd3d474c4427699a7841891d398fa5a0.png", - "aggregators": ["PancakeCoinMarketCap", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x724a32dfff9769a0a0e1f0515c0012d1fb14c3bd": { - "address": "0x724a32dfff9769a0a0e1f0515c0012d1fb14c3bd", - "symbol": "SQUAD", - "decimals": 18, - "name": "SQUAD", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x724a32dfff9769a0a0e1f0515c0012d1fb14c3bd.png", - "aggregators": ["PancakeExtended", "Rubic", "Rango"], - "occurrences": 3 - }, - "0xcc6f1e1b87cfcbe9221808d2d85c501aab0b5192": { - "address": "0xcc6f1e1b87cfcbe9221808d2d85c501aab0b5192", - "symbol": "DMAIL", - "decimals": 18, - "name": "Dmail Network", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xcc6f1e1b87cfcbe9221808d2d85c501aab0b5192.png", - "aggregators": ["PancakeExtended", "Rubic", "Sonarwatch"], - "occurrences": 3 - }, - "0x2b5d9adea07b590b638ffc165792b2c610eda649": { - "address": "0x2b5d9adea07b590b638ffc165792b2c610eda649", - "symbol": "CKP", - "decimals": 18, - "name": "Cakepie", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x2b5d9adea07b590b638ffc165792b2c610eda649.png", - "aggregators": ["PancakeExtended", "LiFi", "Rubic"], - "occurrences": 3 - }, - "0x5b65cd9feb54f1df3d0c60576003344079f8dc06": { - "address": "0x5b65cd9feb54f1df3d0c60576003344079f8dc06", - "symbol": "UNW", - "decimals": 18, - "name": "Uniwhale Token", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x5b65cd9feb54f1df3d0c60576003344079f8dc06.png", - "aggregators": ["PancakeExtended", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x42981d0bfbaf196529376ee702f2a9eb9092fcb5": { - "address": "0x42981d0bfbaf196529376ee702f2a9eb9092fcb5", - "symbol": "SFM", - "decimals": 9, - "name": "SafeMoon", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x42981d0bfbaf196529376ee702f2a9eb9092fcb5.png", - "aggregators": ["PancakeCoinMarketCap", "Rubic", "Rango"], - "occurrences": 3 - }, - "0xb59490ab09a0f526cc7305822ac65f2ab12f9723": { - "address": "0xb59490ab09a0f526cc7305822ac65f2ab12f9723", - "symbol": "LIT", - "decimals": 18, - "name": "Litentry", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xb59490ab09a0f526cc7305822ac65f2ab12f9723.png", - "aggregators": [ - "PancakeExtended", - "1inch", - "LiFi", - "TrustWallet", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 8 - }, - "0x4197c6ef3879a08cd51e5560da5064b773aa1d29": { - "address": "0x4197c6ef3879a08cd51e5560da5064b773aa1d29", - "symbol": "ACS", - "decimals": 18, - "name": "ACryptoS", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x4197c6ef3879a08cd51e5560da5064b773aa1d29.png", - "aggregators": [ - "PancakeCoinGecko", - "1inch", - "LiFi", - "TrustWallet", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 7 - }, - "0x8595f9da7b868b1822194faed312235e43007b49": { - "address": "0x8595f9da7b868b1822194faed312235e43007b49", - "symbol": "BTT", - "decimals": 18, - "name": "BitTorrent", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x8595f9da7b868b1822194faed312235e43007b49.png", - "aggregators": [ - "PancakeTop100", - "LiFi", - "Socket", - "Rubic", - "Rango", - "Sonarwatch", - "SushiSwap" - ], - "occurrences": 7 - }, - "0xf79037f6f6be66832de4e7516be52826bc3cbcc4": { - "address": "0xf79037f6f6be66832de4e7516be52826bc3cbcc4", - "symbol": "HARD", - "decimals": 6, - "name": "Hard Protocol", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xf79037f6f6be66832de4e7516be52826bc3cbcc4.png", - "aggregators": [ - "PancakeExtended", - "LiFi", - "TrustWallet", - "Socket", - "Rubic", - "Rango", - "SushiSwap" - ], - "occurrences": 7 - }, - "0x961c8c0b1aad0c0b10a51fef6a867e3091bcef17": { - "address": "0x961c8c0b1aad0c0b10a51fef6a867e3091bcef17", - "symbol": "DYP", - "decimals": 18, - "name": "Dypius [OLD]", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x961c8c0b1aad0c0b10a51fef6a867e3091bcef17.png", - "aggregators": [ - "PancakeCoinGecko", - "LiFi", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 6 - }, - "0x05b339b0a346bf01f851dde47a5d485c34fe220c": { - "address": "0x05b339b0a346bf01f851dde47a5d485c34fe220c", - "symbol": "NAUT", - "decimals": 8, - "name": "Astronaut", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x05b339b0a346bf01f851dde47a5d485c34fe220c.png", - "aggregators": [ - "PancakeCoinMarketCap", - "1inch", - "LiFi", - "Socket", - "Rubic", - "Rango" - ], - "occurrences": 6 - }, - "0x8c851d1a123ff703bd1f9dabe631b69902df5f97": { - "address": "0x8c851d1a123ff703bd1f9dabe631b69902df5f97", - "symbol": "BNX", - "decimals": 18, - "name": "BinaryX [OLD]", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x8c851d1a123ff703bd1f9dabe631b69902df5f97.png", - "aggregators": [ - "PancakeTop100", - "LiFi", - "Rubic", - "Squid", - "Rango", - "Sonarwatch" - ], - "occurrences": 6 - }, - "0x38f9bf9dce51833ec7f03c9dc218197999999999": { - "address": "0x38f9bf9dce51833ec7f03c9dc218197999999999", - "symbol": "NYA", - "decimals": 18, - "name": "Nya", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x38f9bf9dce51833ec7f03c9dc218197999999999.png", - "aggregators": [ - "PancakeCoinMarketCap", - "Socket", - "Rubic", - "Squid", - "Rango", - "Sonarwatch" - ], - "occurrences": 6 - }, - "0xe6df05ce8c8301223373cf5b969afcb1498c5528": { - "address": "0xe6df05ce8c8301223373cf5b969afcb1498c5528", - "symbol": "KOGE", - "decimals": 18, - "name": "BNB48 Club Token", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xe6df05ce8c8301223373cf5b969afcb1498c5528.png", - "aggregators": [ - "PancakeExtended", - "1inch", - "LiFi", - "Rubic", - "Squid", - "Rango" - ], - "occurrences": 6 - }, - "0xa73164db271931cf952cbaeff9e8f5817b42fa5c": { - "address": "0xa73164db271931cf952cbaeff9e8f5817b42fa5c", - "symbol": "LAND", - "decimals": 18, - "name": "Landshare", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xa73164db271931cf952cbaeff9e8f5817b42fa5c.png", - "aggregators": [ - "PancakeCoinMarketCap", - "1inch", - "LiFi", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 6 - }, - "0x92a42db88ed0f02c71d439e55962ca7cab0168b5": { - "address": "0x92a42db88ed0f02c71d439e55962ca7cab0168b5", - "symbol": "TRDG", - "decimals": 9, - "name": "TRDGtoken", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x92a42db88ed0f02c71d439e55962ca7cab0168b5.png", - "aggregators": [ - "PancakeCoinGecko", - "1inch", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 6 - }, - "0x59f4f336bf3d0c49dbfba4a74ebd2a6ace40539a": { - "address": "0x59f4f336bf3d0c49dbfba4a74ebd2a6ace40539a", - "symbol": "CAT", - "decimals": 9, - "name": "Catcoin", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x59f4f336bf3d0c49dbfba4a74ebd2a6ace40539a.png", - "aggregators": [ - "PancakeCoinMarketCap", - "Socket", - "Rubic", - "Squid", - "Rango", - "Sonarwatch" - ], - "occurrences": 6 - }, - "0xd6fdde76b8c1c45b33790cc8751d5b88984c44ec": { - "address": "0xd6fdde76b8c1c45b33790cc8751d5b88984c44ec", - "symbol": "STRX", - "decimals": 18, - "name": "StrikeX", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xd6fdde76b8c1c45b33790cc8751d5b88984c44ec.png", - "aggregators": [ - "PancakeCoinMarketCap", - "1inch", - "Rubic", - "Squid", - "Rango", - "Sonarwatch" - ], - "occurrences": 6 - }, - "0xc3137c696796d69f783cd0be4ab4bb96814234aa": { - "address": "0xc3137c696796d69f783cd0be4ab4bb96814234aa", - "symbol": "PEPA", - "decimals": 9, - "name": "Pepa Inu", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xc3137c696796d69f783cd0be4ab4bb96814234aa.png", - "aggregators": [ - "PancakeCoinMarketCap", - "TrustWallet", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 6 - }, - "0x66d79b8f60ec93bfce0b56f5ac14a2714e509a99": { - "address": "0x66d79b8f60ec93bfce0b56f5ac14a2714e509a99", - "symbol": "MAPO", - "decimals": 18, - "name": "MAP Protocol", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x66d79b8f60ec93bfce0b56f5ac14a2714e509a99.png", - "aggregators": [ - "PancakeCoinMarketCap", - "LiFi", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 6 - }, - "0x2f29bc0ffaf9bff337b31cbe6cb5fb3bf12e5840": { - "address": "0x2f29bc0ffaf9bff337b31cbe6cb5fb3bf12e5840", - "symbol": "DOLA", - "decimals": 18, - "name": "DOLA", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x2f29bc0ffaf9bff337b31cbe6cb5fb3bf12e5840.png", - "aggregators": [ - "PancakeCoinMarketCap", - "LiFi", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 6 - }, - "0x7ddc52c4de30e94be3a6a0a2b259b2850f421989": { - "address": "0x7ddc52c4de30e94be3a6a0a2b259b2850f421989", - "symbol": "GOMINING", - "decimals": 18, - "name": "Gomining Token", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x7ddc52c4de30e94be3a6a0a2b259b2850f421989.png", - "aggregators": [ - "PancakeCoinMarketCap", - "1inch", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 6 - }, - "0x7f792db54b0e580cdc755178443f0430cf799aca": { - "address": "0x7f792db54b0e580cdc755178443f0430cf799aca", - "symbol": "VOLT", - "decimals": 9, - "name": "Volt Inu", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x7f792db54b0e580cdc755178443f0430cf799aca.png", - "aggregators": [ - "PancakeCoinMarketCap", - "Socket", - "Rubic", - "Squid", - "Rango", - "Sonarwatch" - ], - "occurrences": 6 - }, - "0x94eafeeef7ffa66203fdc9349c54d601472a79dc": { - "address": "0x94eafeeef7ffa66203fdc9349c54d601472a79dc", - "symbol": "SWAP", - "decimals": 18, - "name": "TrustSwap", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x94eafeeef7ffa66203fdc9349c54d601472a79dc.png", - "aggregators": [ - "PancakeCoinMarketCap", - "LiFi", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 6 - }, - "0x965b0df5bda0e7a0649324d78f03d5f7f2de086a": { - "address": "0x965b0df5bda0e7a0649324d78f03d5f7f2de086a", - "symbol": "COOK", - "decimals": 18, - "name": "Cook", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x965b0df5bda0e7a0649324d78f03d5f7f2de086a.png", - "aggregators": [ - "PancakeCoinGecko", - "1inch", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 6 - }, - "0x92d7756c60dcfd4c689290e8a9f4d263b3b32241": { - "address": "0x92d7756c60dcfd4c689290e8a9f4d263b3b32241", - "symbol": "BOR", - "decimals": 18, - "name": "BoringDAO [OLD]", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x92d7756c60dcfd4c689290e8a9f4d263b3b32241.png", - "aggregators": [ - "PancakeCoinGecko", - "LiFi", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 6 - }, - "0x4e1b16ef22935a575a6811d4616f98c4077e4408": { - "address": "0x4e1b16ef22935a575a6811d4616f98c4077e4408", - "symbol": "KEL", - "decimals": 18, - "name": "KelVPN", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x4e1b16ef22935a575a6811d4616f98c4077e4408.png", - "aggregators": [ - "PancakeCoinMarketCap", - "LiFi", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 6 - }, - "0x1a2fb0af670d0234c2857fad35b789f8cb725584": { - "address": "0x1a2fb0af670d0234c2857fad35b789f8cb725584", - "symbol": "KUN", - "decimals": 18, - "name": "Qian Governance Token", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x1a2fb0af670d0234c2857fad35b789f8cb725584.png", - "aggregators": [ - "PancakeExtended", - "LiFi", - "Socket", - "Rubic", - "Rango", - "SushiSwap" - ], - "occurrences": 6 - }, - "0xa07c5b74c9b40447a954e1466938b865b6bbea36": { - "address": "0xa07c5b74c9b40447a954e1466938b865b6bbea36", - "symbol": "VBNB", - "decimals": 8, - "name": "Venus BNB", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xa07c5b74c9b40447a954e1466938b865b6bbea36.png", - "aggregators": [ - "PancakeCoinMarketCap", - "1inch", - "LiFi", - "Socket", - "Rubic", - "Rango" - ], - "occurrences": 6 - }, - "0x5986d5c77c65e5801a5caa4fae80089f870a71da": { - "address": "0x5986d5c77c65e5801a5caa4fae80089f870a71da", - "symbol": "BDIGG", - "decimals": 18, - "name": "BDIGG", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x5986d5c77c65e5801a5caa4fae80089f870a71da.png", - "aggregators": [ - "PancakeExtended", - "1inch", - "LiFi", - "Socket", - "Rubic", - "Rango" - ], - "occurrences": 6 - }, - "0xd15cee1deafbad6c0b3fd7489677cc102b141464": { - "address": "0xd15cee1deafbad6c0b3fd7489677cc102b141464", - "symbol": "COVAL", - "decimals": 8, - "name": "Circuits of Value", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xd15cee1deafbad6c0b3fd7489677cc102b141464.png", - "aggregators": [ - "PancakeCoinMarketCap", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0xec583f25a049cc145da9a256cdbe9b6201a705ff": { - "address": "0xec583f25a049cc145da9a256cdbe9b6201a705ff", - "symbol": "DREP", - "decimals": 18, - "name": "Drep", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xec583f25a049cc145da9a256cdbe9b6201a705ff.png", - "aggregators": [ - "PancakeCoinGecko", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0xfa54ff1a158b5189ebba6ae130ced6bbd3aea76e": { - "address": "0xfa54ff1a158b5189ebba6ae130ced6bbd3aea76e", - "symbol": "SOL", - "decimals": 9, - "name": "SOL (Wormhole)", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xfa54ff1a158b5189ebba6ae130ced6bbd3aea76e.png", - "aggregators": [ - "PancakeCoinGecko", - "1inch", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x3b198e26e473b8fab2085b37978e36c9de5d7f68": { - "address": "0x3b198e26e473b8fab2085b37978e36c9de5d7f68", - "symbol": "TIME", - "decimals": 6, - "name": "chrono.tech", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x3b198e26e473b8fab2085b37978e36c9de5d7f68.png", - "aggregators": [ - "PancakeCoinMarketCap", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x97a30c692ece9c317235d48287d23d358170fc40": { - "address": "0x97a30c692ece9c317235d48287d23d358170fc40", - "symbol": "CRX", - "decimals": 18, - "name": "CryptEx Token", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x97a30c692ece9c317235d48287d23d358170fc40.png", - "aggregators": [ - "PancakeCoinMarketCap", - "1inch", - "TrustWallet", - "Rubic", - "Rango" - ], - "occurrences": 5 - }, - "0x9ac983826058b8a9c7aa1c9171441191232e8404": { - "address": "0x9ac983826058b8a9c7aa1c9171441191232e8404", - "symbol": "SNX", - "decimals": 18, - "name": "Synthetix Network Token", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x9ac983826058b8a9c7aa1c9171441191232e8404.png", - "aggregators": [ - "PancakeCoinMarketCap", - "LiFi", - "Socket", - "Rubic", - "Rango" - ], - "occurrences": 5 - }, - "0x3d6545b08693dae087e957cb1180ee38b9e3c25e": { - "address": "0x3d6545b08693dae087e957cb1180ee38b9e3c25e", - "symbol": "ETC", - "decimals": 18, - "name": "Ethereum Classic", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x3d6545b08693dae087e957cb1180ee38b9e3c25e.png", - "aggregators": [ - "PancakeCoinMarketCap", - "1inch", - "LiFi", - "Rubic", - "Rango" - ], - "occurrences": 5 - }, - "0x1f9f6a696c6fd109cd3956f45dc709d2b3902163": { - "address": "0x1f9f6a696c6fd109cd3956f45dc709d2b3902163", - "symbol": "CELR", - "decimals": 18, - "name": "CelerToken", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x1f9f6a696c6fd109cd3956f45dc709d2b3902163.png", - "aggregators": [ - "PancakeCoinMarketCap", - "LiFi", - "Socket", - "Rubic", - "Rango" - ], - "occurrences": 5 - }, - "0x01e0d17a533e5930a349c2bb71304f04f20ab12b": { - "address": "0x01e0d17a533e5930a349c2bb71304f04f20ab12b", - "symbol": "RPG", - "decimals": 18, - "name": "Revolve Games", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x01e0d17a533e5930a349c2bb71304f04f20ab12b.png", - "aggregators": [ - "PancakeCoinMarketCap", - "LiFi", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x33333ee26a7d02e41c33828b42fb1e0889143477": { - "address": "0x33333ee26a7d02e41c33828b42fb1e0889143477", - "symbol": "LIQR", - "decimals": 18, - "name": "Topshelf Finance", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x33333ee26a7d02e41c33828b42fb1e0889143477.png", - "aggregators": [ - "PancakeCoinMarketCap", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x95c78222b3d6e262426483d42cfa53685a67ab9d": { - "address": "0x95c78222b3d6e262426483d42cfa53685a67ab9d", - "symbol": "VBUSD", - "decimals": 8, - "name": "Venus BUSD", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x95c78222b3d6e262426483d42cfa53685a67ab9d.png", - "aggregators": [ - "PancakeCoinMarketCap", - "LiFi", - "Socket", - "Rubic", - "Rango" - ], - "occurrences": 5 - }, - "0x2d2567dec25c9795117228adc7fd58116d2e310c": { - "address": "0x2d2567dec25c9795117228adc7fd58116d2e310c", - "symbol": "SQUAD", - "decimals": 18, - "name": "SquadSwap", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x2d2567dec25c9795117228adc7fd58116d2e310c.png", - "aggregators": [ - "PancakeCoinMarketCap", - "LiFi", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0xdb0170e2d0c1cc1b2e7a90313d9b9afa4f250289": { - "address": "0xdb0170e2d0c1cc1b2e7a90313d9b9afa4f250289", - "symbol": "ADAPAD", - "decimals": 18, - "name": "ADAPad", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xdb0170e2d0c1cc1b2e7a90313d9b9afa4f250289.png", - "aggregators": [ - "PancakeCoinMarketCap", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x20f663cea80face82acdfa3aae6862d246ce0333": { - "address": "0x20f663cea80face82acdfa3aae6862d246ce0333", - "symbol": "DRIP", - "decimals": 18, - "name": "Drip Network", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x20f663cea80face82acdfa3aae6862d246ce0333.png", - "aggregators": [ - "PancakeCoinMarketCap", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x2ab0e9e4ee70fff1fb9d67031e44f6410170d00e": { - "address": "0x2ab0e9e4ee70fff1fb9d67031e44f6410170d00e", - "symbol": "BXEN", - "decimals": 18, - "name": "XEN Crypto (BSC)", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x2ab0e9e4ee70fff1fb9d67031e44f6410170d00e.png", - "aggregators": [ - "PancakeCoinMarketCap", - "Rubic", - "Squid", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x843d4a358471547f51534e3e51fae91cb4dc3f28": { - "address": "0x843d4a358471547f51534e3e51fae91cb4dc3f28", - "symbol": "LOWB", - "decimals": 18, - "name": "Loser Coin", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x843d4a358471547f51534e3e51fae91cb4dc3f28.png", - "aggregators": [ - "PancakeCoinMarketCap", - "1inch", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x48077400faf11183c043feb5184a13ea628bb0db": { - "address": "0x48077400faf11183c043feb5184a13ea628bb0db", - "symbol": "ZIX", - "decimals": 18, - "name": "Coinzix Token", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x48077400faf11183c043feb5184a13ea628bb0db.png", - "aggregators": [ - "PancakeCoinMarketCap", - "1inch", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x551897f8203bd131b350601d3ac0679ba0fc0136": { - "address": "0x551897f8203bd131b350601d3ac0679ba0fc0136", - "symbol": "NFP", - "decimals": 18, - "name": "NFPrompt", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x551897f8203bd131b350601d3ac0679ba0fc0136.png", - "aggregators": [ - "PancakeCoinMarketCap", - "LiFi", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0xa776f5b86cc520861f55a261515264e3bd86e72e": { - "address": "0xa776f5b86cc520861f55a261515264e3bd86e72e", - "symbol": "SPHYNX", - "decimals": 18, - "name": "Sphynx Labs", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xa776f5b86cc520861f55a261515264e3bd86e72e.png", - "aggregators": [ - "PancakeCoinMarketCap", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x328fd053c4bb968875afd9ad0af36fcf4a0bdda9": { - "address": "0x328fd053c4bb968875afd9ad0af36fcf4a0bdda9", - "symbol": "AGII", - "decimals": 18, - "name": "AGII", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x328fd053c4bb968875afd9ad0af36fcf4a0bdda9.png", - "aggregators": [ - "PancakeCoinMarketCap", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x168e3b1746aa249a9b3603b70605924fe255ee1a": { - "address": "0x168e3b1746aa249a9b3603b70605924fe255ee1a", - "symbol": "GMR", - "decimals": 18, - "name": "GAMER", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x168e3b1746aa249a9b3603b70605924fe255ee1a.png", - "aggregators": [ - "PancakeCoinMarketCap", - "Rubic", - "Squid", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x184cff0e719826b966025f93e05d8c8b0a79b3f9": { - "address": "0x184cff0e719826b966025f93e05d8c8b0a79b3f9", - "symbol": "TRIAS", - "decimals": 18, - "name": "TriasLab", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x184cff0e719826b966025f93e05d8c8b0a79b3f9.png", - "aggregators": [ - "PancakeCoinGecko", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0xbb73bb2505ac4643d5c0a99c2a1f34b3dfd09d11": { - "address": "0xbb73bb2505ac4643d5c0a99c2a1f34b3dfd09d11", - "symbol": "MGC", - "decimals": 9, - "name": "Meta Games Coin", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xbb73bb2505ac4643d5c0a99c2a1f34b3dfd09d11.png", - "aggregators": [ - "PancakeCoinMarketCap", - "Rubic", - "Squid", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0xb583961e033dfe0fff161952f7ba21c411b6103d": { - "address": "0xb583961e033dfe0fff161952f7ba21c411b6103d", - "symbol": "YOU", - "decimals": 18, - "name": "Youwho", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xb583961e033dfe0fff161952f7ba21c411b6103d.png", - "aggregators": [ - "PancakeCoinMarketCap", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x1446f3cedf4d86a9399e49f7937766e6de2a3aab": { - "address": "0x1446f3cedf4d86a9399e49f7937766e6de2a3aab", - "symbol": "KRW", - "decimals": 18, - "name": "KROWN", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x1446f3cedf4d86a9399e49f7937766e6de2a3aab.png", - "aggregators": [ - "PancakeCoinMarketCap", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x551faab1027cc50efaea5bed092e330475c3cd99": { - "address": "0x551faab1027cc50efaea5bed092e330475c3cd99", - "symbol": "MBC", - "decimals": 18, - "name": "MonbaseCoin", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x551faab1027cc50efaea5bed092e330475c3cd99.png", - "aggregators": [ - "PancakeCoinMarketCap", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x4b87f578d6fabf381f43bd2197fbb2a877da6ef8": { - "address": "0x4b87f578d6fabf381f43bd2197fbb2a877da6ef8", - "symbol": "BFT", - "decimals": 9, - "name": "The Big Five", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x4b87f578d6fabf381f43bd2197fbb2a877da6ef8.png", - "aggregators": [ - "PancakeCoinMarketCap", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0xbb6cdedac5cab4a420211a4a8e8b5dca879b31de": { - "address": "0xbb6cdedac5cab4a420211a4a8e8b5dca879b31de", - "symbol": "MF", - "decimals": 18, - "name": "MetaFighter", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xbb6cdedac5cab4a420211a4a8e8b5dca879b31de.png", - "aggregators": [ - "PancakeCoinMarketCap", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0xb8e3bb633f7276cc17735d86154e0ad5ec9928c0": { - "address": "0xb8e3bb633f7276cc17735d86154e0ad5ec9928c0", - "symbol": "VLXPAD", - "decimals": 18, - "name": "VelasPad", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xb8e3bb633f7276cc17735d86154e0ad5ec9928c0.png", - "aggregators": [ - "PancakeCoinMarketCap", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0xbcbdecf8e76a5c32dba69de16985882ace1678c6": { - "address": "0xbcbdecf8e76a5c32dba69de16985882ace1678c6", - "symbol": "RVC", - "decimals": 18, - "name": "Revenue Coin", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xbcbdecf8e76a5c32dba69de16985882ace1678c6.png", - "aggregators": [ - "PancakeCoinMarketCap", - "1inch", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0xcab1fd29d6fd64bb63471b666e8dbfc1915bf90e": { - "address": "0xcab1fd29d6fd64bb63471b666e8dbfc1915bf90e", - "symbol": "MEGALAND", - "decimals": 18, - "name": "Metagalaxy Land", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xcab1fd29d6fd64bb63471b666e8dbfc1915bf90e.png", - "aggregators": [ - "PancakeCoinMarketCap", - "Rubic", - "Squid", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0xb248a295732e0225acd3337607cc01068e3b9c10": { - "address": "0xb248a295732e0225acd3337607cc01068e3b9c10", - "symbol": "VXRP", - "decimals": 8, - "name": "Venus XRP", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xb248a295732e0225acd3337607cc01068e3b9c10.png", - "aggregators": [ - "PancakeCoinMarketCap", - "1inch", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x523821d20a283d955f6205b4c9252779cd0f964b": { - "address": "0x523821d20a283d955f6205b4c9252779cd0f964b", - "symbol": "OK", - "decimals": 18, - "name": "Okcash", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x523821d20a283d955f6205b4c9252779cd0f964b.png", - "aggregators": [ - "PancakeCoinMarketCap", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x4d7fa587ec8e50bd0e9cd837cb4da796f47218a1": { - "address": "0x4d7fa587ec8e50bd0e9cd837cb4da796f47218a1", - "symbol": "SAFE", - "decimals": 18, - "name": "SAFE(AnWang)", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x4d7fa587ec8e50bd0e9cd837cb4da796f47218a1.png", - "aggregators": [ - "PancakeCoinGecko", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x72eb7ca07399ec402c5b7aa6a65752b6a1dc0c27": { - "address": "0x72eb7ca07399ec402c5b7aa6a65752b6a1dc0c27", - "symbol": "ASTRO", - "decimals": 18, - "name": "AstroSwap", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x72eb7ca07399ec402c5b7aa6a65752b6a1dc0c27.png", - "aggregators": [ - "PancakeCoinMarketCap", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x4a824ee819955a7d769e03fe36f9e0c3bd3aa60b": { - "address": "0x4a824ee819955a7d769e03fe36f9e0c3bd3aa60b", - "symbol": "KABOSU", - "decimals": 9, - "name": "Kabosu", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x4a824ee819955a7d769e03fe36f9e0c3bd3aa60b.png", - "aggregators": [ - "PancakeCoinMarketCap", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0xff71e87a2e7b818eee86f3f1c2e94a06cac85866": { - "address": "0xff71e87a2e7b818eee86f3f1c2e94a06cac85866", - "symbol": "CAT", - "decimals": 9, - "name": "Catcoin BSC", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xff71e87a2e7b818eee86f3f1c2e94a06cac85866.png", - "aggregators": [ - "PancakeCoinMarketCap", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x2290c6bd9560e6498dfdf10f9ecb17997ca131f2": { - "address": "0x2290c6bd9560e6498dfdf10f9ecb17997ca131f2", - "symbol": "MSTR", - "decimals": 18, - "name": "Monsterra", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x2290c6bd9560e6498dfdf10f9ecb17997ca131f2.png", - "aggregators": [ - "PancakeCoinGecko", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x8fff93e810a2edaafc326edee51071da9d398e83": { - "address": "0x8fff93e810a2edaafc326edee51071da9d398e83", - "symbol": "BRISE", - "decimals": 9, - "name": "Bitgert", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x8fff93e810a2edaafc326edee51071da9d398e83.png", - "aggregators": [ - "PancakeCoinMarketCap", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x5b52bfb8062ce664d74bbcd4cd6dc7df53fd7233": { - "address": "0x5b52bfb8062ce664d74bbcd4cd6dc7df53fd7233", - "symbol": "ZENIQ", - "decimals": 18, - "name": "ZENIQ", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x5b52bfb8062ce664d74bbcd4cd6dc7df53fd7233.png", - "aggregators": [ - "PancakeCoinMarketCap", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0xd89336eac00e689d218c46cdd854585a09f432b3": { - "address": "0xd89336eac00e689d218c46cdd854585a09f432b3", - "symbol": "LUSD", - "decimals": 18, - "name": "LUSD", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xd89336eac00e689d218c46cdd854585a09f432b3.png", - "aggregators": [ - "PancakeCoinGecko", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0xf7844cb890f4c339c497aeab599abdc3c874b67a": { - "address": "0xf7844cb890f4c339c497aeab599abdc3c874b67a", - "symbol": "NFTART", - "decimals": 9, - "name": "NFT Art Finance", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xf7844cb890f4c339c497aeab599abdc3c874b67a.png", - "aggregators": [ - "PancakeCoinMarketCap", - "1inch", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x577ad06f635b402fc2724efd6a53a3a0aed3d155": { - "address": "0x577ad06f635b402fc2724efd6a53a3a0aed3d155", - "symbol": "BFHT", - "decimals": 6, - "name": "BeFaster Holder Token", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x577ad06f635b402fc2724efd6a53a3a0aed3d155.png", - "aggregators": [ - "PancakeCoinMarketCap", - "Rubic", - "Squid", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x04c747b40be4d535fc83d09939fb0f626f32800b": { - "address": "0x04c747b40be4d535fc83d09939fb0f626f32800b", - "symbol": "ITAM", - "decimals": 18, - "name": "ITAM Games", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x04c747b40be4d535fc83d09939fb0f626f32800b.png", - "aggregators": [ - "PancakeCoinMarketCap", - "1inch", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x3ad9594151886ce8538c1ff615efa2385a8c3a88": { - "address": "0x3ad9594151886ce8538c1ff615efa2385a8c3a88", - "symbol": "SAFEMARS", - "decimals": 9, - "name": "Safemars", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x3ad9594151886ce8538c1ff615efa2385a8c3a88.png", - "aggregators": [ - "PancakeCoinMarketCap", - "1inch", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x8789337a176e6e7223ff115f1cd85c993d42c25c": { - "address": "0x8789337a176e6e7223ff115f1cd85c993d42c25c", - "symbol": "COP", - "decimals": 18, - "name": "Copiosa", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x8789337a176e6e7223ff115f1cd85c993d42c25c.png", - "aggregators": [ - "PancakeCoinMarketCap", - "LiFi", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x50d809c74e0b8e49e7b4c65bb3109abe3ff4c1c1": { - "address": "0x50d809c74e0b8e49e7b4c65bb3109abe3ff4c1c1", - "symbol": "CUB", - "decimals": 18, - "name": "Cub Finance", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x50d809c74e0b8e49e7b4c65bb3109abe3ff4c1c1.png", - "aggregators": [ - "PancakeCoinMarketCap", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0xc029a12e4a002c6858878fd9d3cc74e227cc2dda": { - "address": "0xc029a12e4a002c6858878fd9d3cc74e227cc2dda", - "symbol": "VEX", - "decimals": 9, - "name": "Velorex", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xc029a12e4a002c6858878fd9d3cc74e227cc2dda.png", - "aggregators": [ - "PancakeCoinMarketCap", - "1inch", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0xf483af09917ba63f1e274056978036d266eb56e6": { - "address": "0xf483af09917ba63f1e274056978036d266eb56e6", - "symbol": "BULL", - "decimals": 18, - "name": "Bull Coin", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xf483af09917ba63f1e274056978036d266eb56e6.png", - "aggregators": [ - "PancakeCoinMarketCap", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0xb0b84d294e0c75a6abe60171b70edeb2efd14a1b": { - "address": "0xb0b84d294e0c75a6abe60171b70edeb2efd14a1b", - "symbol": "SLISBNB", - "decimals": 18, - "name": "slisBNB", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xb0b84d294e0c75a6abe60171b70edeb2efd14a1b.png", - "aggregators": ["Metamask", "LiFi", "Rubic", "Squid", "Sonarwatch"], - "occurrences": 5 - }, - "0x0e7beec376099429b85639eb3abe7cf22694ed49": { - "address": "0x0e7beec376099429b85639eb3abe7cf22694ed49", - "symbol": "BUNI", - "decimals": 18, - "name": "Bunicorn", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x0e7beec376099429b85639eb3abe7cf22694ed49.png", - "aggregators": [ - "PancakeCoinMarketCap", - "LiFi", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x4f1a6fc6a7b65dc7ebc4eb692dc3641be997c2f2": { - "address": "0x4f1a6fc6a7b65dc7ebc4eb692dc3641be997c2f2", - "symbol": "SANTA", - "decimals": 9, - "name": "Santa Coin", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x4f1a6fc6a7b65dc7ebc4eb692dc3641be997c2f2.png", - "aggregators": [ - "PancakeCoinMarketCap", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x543c7ebb52d56985f63f246a5b3558aff79037d7": { - "address": "0x543c7ebb52d56985f63f246a5b3558aff79037d7", - "symbol": "SDT", - "decimals": 18, - "name": "Stabledoc", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x543c7ebb52d56985f63f246a5b3558aff79037d7.png", - "aggregators": [ - "PancakeCoinMarketCap", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0xfc4f5a4d1452b8dc6c3cb745db15b29c00812b19": { - "address": "0xfc4f5a4d1452b8dc6c3cb745db15b29c00812b19", - "symbol": "ORO", - "decimals": 18, - "name": "Operon Origins", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xfc4f5a4d1452b8dc6c3cb745db15b29c00812b19.png", - "aggregators": [ - "PancakeCoinMarketCap", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x4803ac6b79f9582f69c4fa23c72cb76dd1e46d8d": { - "address": "0x4803ac6b79f9582f69c4fa23c72cb76dd1e46d8d", - "symbol": "TMT", - "decimals": 18, - "name": "TopManager", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x4803ac6b79f9582f69c4fa23c72cb76dd1e46d8d.png", - "aggregators": [ - "PancakeCoinMarketCap", - "LiFi", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0xb72962568345253f71a18318d67e13a282b187e6": { - "address": "0xb72962568345253f71a18318d67e13a282b187e6", - "symbol": "EFT", - "decimals": 18, - "name": "ETH Fan Token Ecosystem", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xb72962568345253f71a18318d67e13a282b187e6.png", - "aggregators": [ - "PancakeCoinMarketCap", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0xce186ad6430e2fe494a22c9edbd4c68794a28b35": { - "address": "0xce186ad6430e2fe494a22c9edbd4c68794a28b35", - "symbol": "LOOP", - "decimals": 18, - "name": "LoopNetwork", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xce186ad6430e2fe494a22c9edbd4c68794a28b35.png", - "aggregators": [ - "PancakeCoinMarketCap", - "1inch", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x23e8a70534308a4aaf76fb8c32ec13d17a3bd89e": { - "address": "0x23e8a70534308a4aaf76fb8c32ec13d17a3bd89e", - "symbol": "LUSD", - "decimals": 18, - "name": "LUSD [OLD]", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x23e8a70534308a4aaf76fb8c32ec13d17a3bd89e.png", - "aggregators": [ - "PancakeExtended", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x332e78c687c3fcd91494c6b13f0fc685b2a57434": { - "address": "0x332e78c687c3fcd91494c6b13f0fc685b2a57434", - "symbol": "VISION", - "decimals": 18, - "name": "VisionGame", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x332e78c687c3fcd91494c6b13f0fc685b2a57434.png", - "aggregators": [ - "PancakeCoinMarketCap", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0xc864019047b864b6ab609a968ae2725dfaee808a": { - "address": "0xc864019047b864b6ab609a968ae2725dfaee808a", - "symbol": "BIT", - "decimals": 9, - "name": "Biconomy Exchange Token", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xc864019047b864b6ab609a968ae2725dfaee808a.png", - "aggregators": [ - "PancakeCoinMarketCap", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x443cab9583b83eaa7a712c9d64525e57e2a7eb3f": { - "address": "0x443cab9583b83eaa7a712c9d64525e57e2a7eb3f", - "symbol": "XTM", - "decimals": 18, - "name": "Torum", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x443cab9583b83eaa7a712c9d64525e57e2a7eb3f.png", - "aggregators": [ - "PancakeCoinMarketCap", - "LiFi", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0xbb0fa2fbe9b37444f5d1dbd22e0e5bdd2afbbe85": { - "address": "0xbb0fa2fbe9b37444f5d1dbd22e0e5bdd2afbbe85", - "symbol": "USDM", - "decimals": 18, - "name": "USD Mars", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xbb0fa2fbe9b37444f5d1dbd22e0e5bdd2afbbe85.png", - "aggregators": [ - "PancakeCoinMarketCap", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x9c67638c4fa06fd47fb8900fc7f932f7eab589de": { - "address": "0x9c67638c4fa06fd47fb8900fc7f932f7eab589de", - "symbol": "ARKER", - "decimals": 18, - "name": "Arker", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x9c67638c4fa06fd47fb8900fc7f932f7eab589de.png", - "aggregators": [ - "PancakeCoinMarketCap", - "1inch", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x7d4984490c4c68f8ead9dddca6d04c514ef77324": { - "address": "0x7d4984490c4c68f8ead9dddca6d04c514ef77324", - "symbol": "GOLDEN", - "decimals": 9, - "name": "Golden Inu", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x7d4984490c4c68f8ead9dddca6d04c514ef77324.png", - "aggregators": [ - "PancakeCoinMarketCap", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x193397bb76868c6873e733ad60d5953843ebc84e": { - "address": "0x193397bb76868c6873e733ad60d5953843ebc84e", - "symbol": "MEME", - "decimals": 18, - "name": "MEMETOON", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x193397bb76868c6873e733ad60d5953843ebc84e.png", - "aggregators": [ - "PancakeCoinMarketCap", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x738ea75b01d8db931b4374c6ebd3de82d7d3a272": { - "address": "0x738ea75b01d8db931b4374c6ebd3de82d7d3a272", - "symbol": "DUSD", - "decimals": 18, - "name": "DUSD", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x738ea75b01d8db931b4374c6ebd3de82d7d3a272.png", - "aggregators": [ - "PancakeCoinMarketCap", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x7029f86dc4634c5d59ee3f1578c193783505e2c1": { - "address": "0x7029f86dc4634c5d59ee3f1578c193783505e2c1", - "symbol": "TPAD", - "decimals": 18, - "name": "TrustPad", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x7029f86dc4634c5d59ee3f1578c193783505e2c1.png", - "aggregators": [ - "PancakeCoinGecko", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x0173295183685f27c84db046b5f0bea3e683c24b": { - "address": "0x0173295183685f27c84db046b5f0bea3e683c24b", - "symbol": "CAT", - "decimals": 18, - "name": "Cat", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x0173295183685f27c84db046b5f0bea3e683c24b.png", - "aggregators": [ - "PancakeCoinMarketCap", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x4d1e90ab966ae26c778b2f9f365aa40abb13f53c": { - "address": "0x4d1e90ab966ae26c778b2f9f365aa40abb13f53c", - "symbol": "STA", - "decimals": 8, - "name": "STA", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x4d1e90ab966ae26c778b2f9f365aa40abb13f53c.png", - "aggregators": [ - "PancakeCoinMarketCap", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x566a9eeac9a589bf0825222bca083ecdb9c86c82": { - "address": "0x566a9eeac9a589bf0825222bca083ecdb9c86c82", - "symbol": "LBR", - "decimals": 18, - "name": "Libra Protocol", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x566a9eeac9a589bf0825222bca083ecdb9c86c82.png", - "aggregators": [ - "PancakeCoinMarketCap", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x8b1869f79b9abf52001314a2e6990a96f039058d": { - "address": "0x8b1869f79b9abf52001314a2e6990a96f039058d", - "symbol": "ANDY", - "decimals": 9, - "name": "Andy", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x8b1869f79b9abf52001314a2e6990a96f039058d.png", - "aggregators": [ - "PancakeCoinMarketCap", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0xa57ac35ce91ee92caefaa8dc04140c8e232c2e50": { - "address": "0xa57ac35ce91ee92caefaa8dc04140c8e232c2e50", - "symbol": "PIT", - "decimals": 9, - "name": "Pitbull", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xa57ac35ce91ee92caefaa8dc04140c8e232c2e50.png", - "aggregators": [ - "PancakeCoinMarketCap", - "1inch", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x26c5e01524d2e6280a48f2c50ff6de7e52e9611c": { - "address": "0x26c5e01524d2e6280a48f2c50ff6de7e52e9611c", - "symbol": "WSTETH", - "decimals": 18, - "name": "Wrapped liquid staked Ether 2.0", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x26c5e01524d2e6280a48f2c50ff6de7e52e9611c.png", - "aggregators": [ - "PancakeExtended", - "1inch", - "LiFi", - "Socket", - "Rubic" - ], - "occurrences": 5 - }, - "0x2cd96e8c3ff6b5e01169f6e3b61d28204e7810bb": { - "address": "0x2cd96e8c3ff6b5e01169f6e3b61d28204e7810bb", - "symbol": "LBLOCK", - "decimals": 9, - "name": "Lucky Block", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x2cd96e8c3ff6b5e01169f6e3b61d28204e7810bb.png", - "aggregators": [ - "PancakeCoinMarketCap", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0xa7e477721019b0d0b870efe4899766d09aa41c05": { - "address": "0xa7e477721019b0d0b870efe4899766d09aa41c05", - "symbol": "PAN", - "decimals": 18, - "name": "Pankito", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xa7e477721019b0d0b870efe4899766d09aa41c05.png", - "aggregators": [ - "PancakeCoinMarketCap", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x9000cac49c3841926baac5b2e13c87d43e51b6a4": { - "address": "0x9000cac49c3841926baac5b2e13c87d43e51b6a4", - "symbol": "POR", - "decimals": 18, - "name": "Portuma", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x9000cac49c3841926baac5b2e13c87d43e51b6a4.png", - "aggregators": [ - "PancakeCoinMarketCap", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x02533c1e9abbafe5816ed8b27c0d22a8731075e0": { - "address": "0x02533c1e9abbafe5816ed8b27c0d22a8731075e0", - "symbol": "NOW", - "decimals": 18, - "name": "ChangeNOW", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x02533c1e9abbafe5816ed8b27c0d22a8731075e0.png", - "aggregators": [ - "PancakeCoinMarketCap", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x66207e39bb77e6b99aab56795c7c340c08520d83": { - "address": "0x66207e39bb77e6b99aab56795c7c340c08520d83", - "symbol": "IDRT", - "decimals": 2, - "name": "Rupiah Token", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x66207e39bb77e6b99aab56795c7c340c08520d83.png", - "aggregators": [ - "PancakeCoinMarketCap", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0xfd2700c51812753215754de9ec51cdd42bf725b9": { - "address": "0xfd2700c51812753215754de9ec51cdd42bf725b9", - "symbol": "ROUTE", - "decimals": 18, - "name": "Router Protocol [OLD]", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xfd2700c51812753215754de9ec51cdd42bf725b9.png", - "aggregators": [ - "PancakeCoinGecko", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x6d8734002fbffe1c86495e32c95f732fc77f6f2a": { - "address": "0x6d8734002fbffe1c86495e32c95f732fc77f6f2a", - "symbol": "NUX", - "decimals": 18, - "name": "Peanut", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x6d8734002fbffe1c86495e32c95f732fc77f6f2a.png", - "aggregators": [ - "PancakeCoinMarketCap", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x58759dd469ae5631c42cf8a473992335575b58d7": { - "address": "0x58759dd469ae5631c42cf8a473992335575b58d7", - "symbol": "DHV", - "decimals": 18, - "name": "DeHive", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x58759dd469ae5631c42cf8a473992335575b58d7.png", - "aggregators": [ - "PancakeCoinMarketCap", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0xd9e8d20bde081600fac0d94b88eafaddce55aa43": { - "address": "0xd9e8d20bde081600fac0d94b88eafaddce55aa43", - "symbol": "PUSSY", - "decimals": 18, - "name": "Pussy Financial", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xd9e8d20bde081600fac0d94b88eafaddce55aa43.png", - "aggregators": [ - "PancakeCoinMarketCap", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x2ff0b946a6782190c4fe5d4971cfe79f0b6e4df2": { - "address": "0x2ff0b946a6782190c4fe5d4971cfe79f0b6e4df2", - "symbol": "MYST", - "decimals": 18, - "name": "Mysterium", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x2ff0b946a6782190c4fe5d4971cfe79f0b6e4df2.png", - "aggregators": [ - "PancakeCoinMarketCap", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0xc9457161320210d22f0d0d5fc1309acb383d4609": { - "address": "0xc9457161320210d22f0d0d5fc1309acb383d4609", - "symbol": "DOV", - "decimals": 18, - "name": "Dovu [OLD]", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xc9457161320210d22f0d0d5fc1309acb383d4609.png", - "aggregators": [ - "PancakeCoinMarketCap", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0xd882739fca9cbae00f3821c4c65189e2d7e26147": { - "address": "0xd882739fca9cbae00f3821c4c65189e2d7e26147", - "symbol": "FOUR", - "decimals": 18, - "name": "FOUR", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xd882739fca9cbae00f3821c4c65189e2d7e26147.png", - "aggregators": [ - "PancakeCoinMarketCap", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x3da932456d082cba208feb0b096d49b202bf89c8": { - "address": "0x3da932456d082cba208feb0b096d49b202bf89c8", - "symbol": "DEGO", - "decimals": 18, - "name": "Dego Finance", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x3da932456d082cba208feb0b096d49b202bf89c8.png", - "aggregators": [ - "PancakeCoinMarketCap", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x23316e6b09e8f4f67b95d53b4f1e59d1fb518f29": { - "address": "0x23316e6b09e8f4f67b95d53b4f1e59d1fb518f29", - "symbol": "MVEDA", - "decimals": 8, - "name": "MedicalVeda", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x23316e6b09e8f4f67b95d53b4f1e59d1fb518f29.png", - "aggregators": [ - "PancakeCoinMarketCap", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x5d186e28934c6b0ff5fc2fece15d1f34f78cbd87": { - "address": "0x5d186e28934c6b0ff5fc2fece15d1f34f78cbd87", - "symbol": "DUCK", - "decimals": 18, - "name": "DLP Duck", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x5d186e28934c6b0ff5fc2fece15d1f34f78cbd87.png", - "aggregators": [ - "PancakeCoinGecko", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x08037036451c768465369431da5c671ad9b37dbc": { - "address": "0x08037036451c768465369431da5c671ad9b37dbc", - "symbol": "NFTS", - "decimals": 18, - "name": "NFT Stars", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x08037036451c768465369431da5c671ad9b37dbc.png", - "aggregators": [ - "PancakeCoinMarketCap", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0xdae4f1dca49408288b55250022f67195eff2445a": { - "address": "0xdae4f1dca49408288b55250022f67195eff2445a", - "symbol": "HANU", - "decimals": 12, - "name": "Hanu Yokia", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xdae4f1dca49408288b55250022f67195eff2445a.png", - "aggregators": [ - "PancakeCoinMarketCap", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x54012cdf4119de84218f7eb90eeb87e25ae6ebd7": { - "address": "0x54012cdf4119de84218f7eb90eeb87e25ae6ebd7", - "symbol": "LUFFY", - "decimals": 9, - "name": "Luffy", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x54012cdf4119de84218f7eb90eeb87e25ae6ebd7.png", - "aggregators": [ - "PancakeCoinMarketCap", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0xe4e8e6878718bfe533702d4a6571eb74d79b0915": { - "address": "0xe4e8e6878718bfe533702d4a6571eb74d79b0915", - "symbol": "LUCHOW", - "decimals": 18, - "name": "LunaChow", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xe4e8e6878718bfe533702d4a6571eb74d79b0915.png", - "aggregators": [ - "PancakeCoinMarketCap", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0xf4b5470523ccd314c6b9da041076e7d79e0df267": { - "address": "0xf4b5470523ccd314c6b9da041076e7d79e0df267", - "symbol": "BBANK", - "decimals": 18, - "name": "blockbank", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xf4b5470523ccd314c6b9da041076e7d79e0df267.png", - "aggregators": [ - "PancakeCoinMarketCap", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0xbd525e51384905c6c0936a431bc7efb6c4903ea0": { - "address": "0xbd525e51384905c6c0936a431bc7efb6c4903ea0", - "symbol": "BIST", - "decimals": 18, - "name": "Bistroo", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xbd525e51384905c6c0936a431bc7efb6c4903ea0.png", - "aggregators": [ - "PancakeCoinMarketCap", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x4a0a3902e091cdb3aec4279a6bfac50297f0a79e": { - "address": "0x4a0a3902e091cdb3aec4279a6bfac50297f0a79e", - "symbol": "VERA", - "decimals": 18, - "name": "Vera", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x4a0a3902e091cdb3aec4279a6bfac50297f0a79e.png", - "aggregators": [ - "PancakeCoinMarketCap", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0xb2343143f814639c9b1f42961c698247171df34a": { - "address": "0xb2343143f814639c9b1f42961c698247171df34a", - "symbol": "CMCX", - "decimals": 18, - "name": "CORE MultiChain", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xb2343143f814639c9b1f42961c698247171df34a.png", - "aggregators": [ - "PancakeCoinMarketCap", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x8530b66ca3ddf50e0447eae8ad7ea7d5e62762ed": { - "address": "0x8530b66ca3ddf50e0447eae8ad7ea7d5e62762ed", - "symbol": "METADOGE", - "decimals": 18, - "name": "Meta Doge", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x8530b66ca3ddf50e0447eae8ad7ea7d5e62762ed.png", - "aggregators": [ - "PancakeCoinMarketCap", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0xfa37e513e6cd506c4694b992825a8b614c035581": { - "address": "0xfa37e513e6cd506c4694b992825a8b614c035581", - "symbol": "NEXM", - "decimals": 8, - "name": "Nexum", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xfa37e513e6cd506c4694b992825a8b614c035581.png", - "aggregators": [ - "PancakeCoinMarketCap", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x6c619006043eab742355395690c7b42d3411e8c0": { - "address": "0x6c619006043eab742355395690c7b42d3411e8c0", - "symbol": "ELFI", - "decimals": 18, - "name": "ELYFI", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x6c619006043eab742355395690c7b42d3411e8c0.png", - "aggregators": [ - "PancakeCoinMarketCap", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0xa0ed3c520dc0632657ad2eaaf19e26c4fd431a84": { - "address": "0xa0ed3c520dc0632657ad2eaaf19e26c4fd431a84", - "symbol": "HPO", - "decimals": 18, - "name": "Hippo Wallet", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xa0ed3c520dc0632657ad2eaaf19e26c4fd431a84.png", - "aggregators": [ - "PancakeCoinGecko", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0xca6d678e74f553f0e59cccc03ae644a3c2c5ee7d": { - "address": "0xca6d678e74f553f0e59cccc03ae644a3c2c5ee7d", - "symbol": "PLANET", - "decimals": 18, - "name": "Planet Token", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xca6d678e74f553f0e59cccc03ae644a3c2c5ee7d.png", - "aggregators": [ - "PancakeExtended", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x61b83edf87ea662c695439a807c386455c9e797c": { - "address": "0x61b83edf87ea662c695439a807c386455c9e797c", - "symbol": "4TOKEN", - "decimals": 18, - "name": "Ignore Fud", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x61b83edf87ea662c695439a807c386455c9e797c.png", - "aggregators": [ - "PancakeCoinMarketCap", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x336f374198c872ba760e85af9c6331c3c5a535d3": { - "address": "0x336f374198c872ba760e85af9c6331c3c5a535d3", - "symbol": "LIF3", - "decimals": 18, - "name": "Lif3", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x336f374198c872ba760e85af9c6331c3c5a535d3.png", - "aggregators": [ - "PancakeCoinMarketCap", - "LiFi", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0xaf20f5f19698f1d19351028cd7103b63d30de7d7": { - "address": "0xaf20f5f19698f1d19351028cd7103b63d30de7d7", - "symbol": "WAGMI", - "decimals": 18, - "name": "Wagmi", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xaf20f5f19698f1d19351028cd7103b63d30de7d7.png", - "aggregators": [ - "PancakeCoinMarketCap", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x0465aad9da170798433f4ab7fa7ec8b9b9bf0bb1": { - "address": "0x0465aad9da170798433f4ab7fa7ec8b9b9bf0bb1", - "symbol": "MPENDLE", - "decimals": 18, - "name": "mPendle", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x0465aad9da170798433f4ab7fa7ec8b9b9bf0bb1.png", - "aggregators": [ - "PancakeExtended", - "LiFi", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x31e4efe290973ebe91b3a875a7994f650942d28f": { - "address": "0x31e4efe290973ebe91b3a875a7994f650942d28f", - "symbol": "SHRAP", - "decimals": 18, - "name": "Shrapnel", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x31e4efe290973ebe91b3a875a7994f650942d28f.png", - "aggregators": [ - "PancakeCoinMarketCap", - "LiFi", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x982e609643794a31a07f5c5b142dd3a9cf0690be": { - "address": "0x982e609643794a31a07f5c5b142dd3a9cf0690be", - "symbol": "TAROT", - "decimals": 18, - "name": "Tarot", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x982e609643794a31a07f5c5b142dd3a9cf0690be.png", - "aggregators": [ - "PancakeCoinMarketCap", - "Rubic", - "Squid", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x840ef7e5f896be71d46df234c60898216fefcbe3": { - "address": "0x840ef7e5f896be71d46df234c60898216fefcbe3", - "symbol": "BYTE", - "decimals": 9, - "name": "Byte", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x840ef7e5f896be71d46df234c60898216fefcbe3.png", - "aggregators": [ - "PancakeCoinMarketCap", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0xaeb63742f2c7dd1538bbe2285b6789017a06b58b": { - "address": "0xaeb63742f2c7dd1538bbe2285b6789017a06b58b", - "symbol": "COLLE", - "decimals": 18, - "name": "Colle AI", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xaeb63742f2c7dd1538bbe2285b6789017a06b58b.png", - "aggregators": [ - "PancakeCoinMarketCap", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x58b9cb810a68a7f3e1e4f8cb45d1b9b3c79705e8": { - "address": "0x58b9cb810a68a7f3e1e4f8cb45d1b9b3c79705e8", - "symbol": "NEXT", - "decimals": 18, - "name": "Everclear", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x58b9cb810a68a7f3e1e4f8cb45d1b9b3c79705e8.png", - "aggregators": [ - "PancakeCoinMarketCap", - "LiFi", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0xc5d27f27f08d1fd1e3ebbaa50b3442e6c0d50439": { - "address": "0xc5d27f27f08d1fd1e3ebbaa50b3442e6c0d50439", - "symbol": "APP", - "decimals": 18, - "name": "RWAX", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xc5d27f27f08d1fd1e3ebbaa50b3442e6c0d50439.png", - "aggregators": [ - "PancakeCoinGecko", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x61ec85ab89377db65762e234c946b5c25a56e99e": { - "address": "0x61ec85ab89377db65762e234c946b5c25a56e99e", - "symbol": "HTX", - "decimals": 18, - "name": "HTX DAO", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x61ec85ab89377db65762e234c946b5c25a56e99e.png", - "aggregators": [ - "PancakeCoinMarketCap", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x968be3f7bfef0f8edc3c1ad90232ebb0da0867aa": { - "address": "0x968be3f7bfef0f8edc3c1ad90232ebb0da0867aa", - "symbol": "SWORLD", - "decimals": 18, - "name": "Seedworld", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x968be3f7bfef0f8edc3c1ad90232ebb0da0867aa.png", - "aggregators": [ - "PancakeExtended", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x63eaeb6e33e11252b10553900a9f38a9ed172871": { - "address": "0x63eaeb6e33e11252b10553900a9f38a9ed172871", - "symbol": "TUP", - "decimals": 18, - "name": "Tenup", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x63eaeb6e33e11252b10553900a9f38a9ed172871.png", - "aggregators": [ - "PancakeCoinMarketCap", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0xede2f059545e8cde832d8da3985caacf795b8765": { - "address": "0xede2f059545e8cde832d8da3985caacf795b8765", - "symbol": "ECO", - "decimals": 18, - "name": "Ormeus Ecosystem", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xede2f059545e8cde832d8da3985caacf795b8765.png", - "aggregators": [ - "PancakeCoinMarketCap", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0xe138c66982fd5c890c60b94fdba1747faf092c20": { - "address": "0xe138c66982fd5c890c60b94fdba1747faf092c20", - "symbol": "XFT", - "decimals": 18, - "name": "Offshift", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xe138c66982fd5c890c60b94fdba1747faf092c20.png", - "aggregators": [ - "PancakeCoinGecko", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x69a1913d334b524ea1632461c78797c837ca9fa6": { - "address": "0x69a1913d334b524ea1632461c78797c837ca9fa6", - "symbol": "RFUEL", - "decimals": 18, - "name": "RioDeFi", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x69a1913d334b524ea1632461c78797c837ca9fa6.png", - "aggregators": [ - "PancakeCoinMarketCap", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x314593fa9a2fa16432913dbccc96104541d32d11": { - "address": "0x314593fa9a2fa16432913dbccc96104541d32d11", - "symbol": "KIT", - "decimals": 18, - "name": "DexKit", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x314593fa9a2fa16432913dbccc96104541d32d11.png", - "aggregators": [ - "PancakeCoinMarketCap", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0xfb288d60d3b66f9c3e231a9a39ed3f158a4269aa": { - "address": "0xfb288d60d3b66f9c3e231a9a39ed3f158a4269aa", - "symbol": "PPAY", - "decimals": 18, - "name": "Plasma Finance", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xfb288d60d3b66f9c3e231a9a39ed3f158a4269aa.png", - "aggregators": [ - "PancakeCoinMarketCap", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0xf64ed9ad397a1ae657f31131d4b189220a7f1cc7": { - "address": "0xf64ed9ad397a1ae657f31131d4b189220a7f1cc7", - "symbol": "DFIAT", - "decimals": 18, - "name": "DeFiato", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xf64ed9ad397a1ae657f31131d4b189220a7f1cc7.png", - "aggregators": [ - "PancakeCoinMarketCap", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x5e57f24415f37c7d304e85df9b4c36bc08789794": { - "address": "0x5e57f24415f37c7d304e85df9b4c36bc08789794", - "symbol": "BRTR", - "decimals": 8, - "name": "Barter", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x5e57f24415f37c7d304e85df9b4c36bc08789794.png", - "aggregators": [ - "PancakeCoinMarketCap", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0xf0902eb0049a4003793bab33f3566a22d2834442": { - "address": "0xf0902eb0049a4003793bab33f3566a22d2834442", - "symbol": "GLCH", - "decimals": 18, - "name": "Glitch Protocol", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xf0902eb0049a4003793bab33f3566a22d2834442.png", - "aggregators": [ - "PancakeCoinMarketCap", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x57effde2759b68d86c544e88f7977e3314144859": { - "address": "0x57effde2759b68d86c544e88f7977e3314144859", - "symbol": "DIS", - "decimals": 18, - "name": "TosDis", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x57effde2759b68d86c544e88f7977e3314144859.png", - "aggregators": [ - "PancakeCoinMarketCap", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x4e0fe270b856eebb91fb4b4364312be59f499a3f": { - "address": "0x4e0fe270b856eebb91fb4b4364312be59f499a3f", - "symbol": "DAFI", - "decimals": 18, - "name": "Dafi Protocol", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x4e0fe270b856eebb91fb4b4364312be59f499a3f.png", - "aggregators": [ - "PancakeCoinGecko", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0xb5be8d87fce6ce87a24b90abdb019458a8ec31f9": { - "address": "0xb5be8d87fce6ce87a24b90abdb019458a8ec31f9", - "symbol": "OBOT", - "decimals": 18, - "name": "Obortech", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xb5be8d87fce6ce87a24b90abdb019458a8ec31f9.png", - "aggregators": [ - "PancakeCoinMarketCap", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x9b4bdddaeb68d85b0848bab7774e6855439fd94e": { - "address": "0x9b4bdddaeb68d85b0848bab7774e6855439fd94e", - "symbol": "TKING", - "decimals": 18, - "name": "Tiger King Coin", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x9b4bdddaeb68d85b0848bab7774e6855439fd94e.png", - "aggregators": [ - "PancakeCoinMarketCap", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0xb3d691125514db7a5be3326af86a72ecdc2cde16": { - "address": "0xb3d691125514db7a5be3326af86a72ecdc2cde16", - "symbol": "ZOOT", - "decimals": 9, - "name": "Zoo", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xb3d691125514db7a5be3326af86a72ecdc2cde16.png", - "aggregators": [ - "PancakeCoinMarketCap", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x01e04c6e0b2c93bb4f8ee4b71072b861f9352660": { - "address": "0x01e04c6e0b2c93bb4f8ee4b71072b861f9352660", - "symbol": "USHIBA", - "decimals": 18, - "name": "American Shiba", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x01e04c6e0b2c93bb4f8ee4b71072b861f9352660.png", - "aggregators": [ - "PancakeCoinMarketCap", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0xbe4cb2c354480042a39350a0c6c26bf54786539f": { - "address": "0xbe4cb2c354480042a39350a0c6c26bf54786539f", - "symbol": "DEFX", - "decimals": 18, - "name": "DeFinity", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xbe4cb2c354480042a39350a0c6c26bf54786539f.png", - "aggregators": [ - "PancakeCoinMarketCap", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0xf585b5b4f22816baf7629aea55b701662630397b": { - "address": "0xf585b5b4f22816baf7629aea55b701662630397b", - "symbol": "VOW", - "decimals": 18, - "name": "Vow", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xf585b5b4f22816baf7629aea55b701662630397b.png", - "aggregators": [ - "PancakeCoinMarketCap", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0xebaffc2d2ea7c66fb848c48124b753f93a0a90ec": { - "address": "0xebaffc2d2ea7c66fb848c48124b753f93a0a90ec", - "symbol": "ASIA", - "decimals": 18, - "name": "Asia Coin", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xebaffc2d2ea7c66fb848c48124b753f93a0a90ec.png", - "aggregators": [ - "PancakeCoinMarketCap", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x3dcb18569425930954feb191122e574b87f66abd": { - "address": "0x3dcb18569425930954feb191122e574b87f66abd", - "symbol": "ORION", - "decimals": 18, - "name": "Orion Money", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x3dcb18569425930954feb191122e574b87f66abd.png", - "aggregators": [ - "PancakeCoinMarketCap", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x61d5822dd7b3ed495108733e6550d4529480c8f6": { - "address": "0x61d5822dd7b3ed495108733e6550d4529480c8f6", - "symbol": "GCAKE", - "decimals": 18, - "name": "Pancake Games", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x61d5822dd7b3ed495108733e6550d4529480c8f6.png", - "aggregators": [ - "PancakeCoinMarketCap", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x0f5d8cd195a4539bcf2ec6118c6da50287c6d5f5": { - "address": "0x0f5d8cd195a4539bcf2ec6118c6da50287c6d5f5", - "symbol": "NGL", - "decimals": 18, - "name": "Gold Fever Native Gold", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x0f5d8cd195a4539bcf2ec6118c6da50287c6d5f5.png", - "aggregators": [ - "PancakeCoinMarketCap", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x3d4350cd54aef9f9b2c29435e0fa809957b3f30a": { - "address": "0x3d4350cd54aef9f9b2c29435e0fa809957b3f30a", - "symbol": "UST", - "decimals": 6, - "name": "TerraUSD (Wormhole)", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x3d4350cd54aef9f9b2c29435e0fa809957b3f30a.png", - "aggregators": [ - "PancakeCoinGecko", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0xc3cac4ae38ccf6985ef9039acc1abbc874ddcbb0": { - "address": "0xc3cac4ae38ccf6985ef9039acc1abbc874ddcbb0", - "symbol": "STARS", - "decimals": 6, - "name": "Stargaze", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xc3cac4ae38ccf6985ef9039acc1abbc874ddcbb0.png", - "aggregators": [ - "PancakeExtended", - "Rubic", - "Squid", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x14a9a94e555fdd54c21d7f7e328e61d7ebece54b": { - "address": "0x14a9a94e555fdd54c21d7f7e328e61d7ebece54b", - "symbol": "LOOT", - "decimals": 18, - "name": "LOOT Token", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x14a9a94e555fdd54c21d7f7e328e61d7ebece54b.png", - "aggregators": [ - "PancakeCoinGecko", - "LiFi", - "Socket", - "Rubic", - "Rango" - ], - "occurrences": 5 - }, - "0x986854779804799c1d68867f5e03e601e781e41b": { - "address": "0x986854779804799c1d68867f5e03e601e781e41b", - "symbol": "LDO", - "decimals": 18, - "name": "Lido DAO (Wormhole)", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x986854779804799c1d68867f5e03e601e781e41b.png", - "aggregators": [ - "PancakeCoinMarketCap", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x27443b27dfdf632390521c0b8a6fdafe07d8f79f": { - "address": "0x27443b27dfdf632390521c0b8a6fdafe07d8f79f", - "symbol": "C4E", - "decimals": 18, - "name": "Chain4Energy", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x27443b27dfdf632390521c0b8a6fdafe07d8f79f.png", - "aggregators": [ - "PancakeCoinMarketCap", - "Rubic", - "Squid", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x444444444444c1a66f394025ac839a535246fcc8": { - "address": "0x444444444444c1a66f394025ac839a535246fcc8", - "symbol": "GENI", - "decimals": 9, - "name": "Genius", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x444444444444c1a66f394025ac839a535246fcc8.png", - "aggregators": [ - "PancakeCoinMarketCap", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x27c073e8427aa493a90b8dc8b73a89e670fd77bb": { - "address": "0x27c073e8427aa493a90b8dc8b73a89e670fd77bb", - "symbol": "RDP", - "decimals": 18, - "name": "Radpie", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x27c073e8427aa493a90b8dc8b73a89e670fd77bb.png", - "aggregators": [ - "PancakeExtended", - "LiFi", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x5651fa7a726b9ec0cad00ee140179912b6e73599": { - "address": "0x5651fa7a726b9ec0cad00ee140179912b6e73599", - "symbol": "OORT", - "decimals": 18, - "name": "OORT", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x5651fa7a726b9ec0cad00ee140179912b6e73599.png", - "aggregators": [ - "PancakeExtended", - "LiFi", - "Socket", - "Rubic", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0xa39bf0446268d99c5c0a85ecf92970611912d386": { - "address": "0xa39bf0446268d99c5c0a85ecf92970611912d386", - "symbol": "AAA", - "decimals": 18, - "name": "Moon Rabbit", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xa39bf0446268d99c5c0a85ecf92970611912d386.png", - "aggregators": [ - "PancakeCoinMarketCap", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x1bd9abf284e893705104e64b564b414620b722f1": { - "address": "0x1bd9abf284e893705104e64b564b414620b722f1", - "symbol": "ACM", - "decimals": 18, - "name": "acmFinance", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x1bd9abf284e893705104e64b564b414620b722f1.png", - "aggregators": [ - "PancakeCoinMarketCap", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0xf44fb887334fa17d2c5c0f970b5d320ab53ed557": { - "address": "0xf44fb887334fa17d2c5c0f970b5d320ab53ed557", - "symbol": "ALN", - "decimals": 18, - "name": "Aluna", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xf44fb887334fa17d2c5c0f970b5d320ab53ed557.png", - "aggregators": [ - "PancakeCoinMarketCap", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0xf9752a6e8a5e5f5e6eb3ab4e7d8492460fb319f0": { - "address": "0xf9752a6e8a5e5f5e6eb3ab4e7d8492460fb319f0", - "symbol": "ARES", - "decimals": 18, - "name": "Ares Protocol", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xf9752a6e8a5e5f5e6eb3ab4e7d8492460fb319f0.png", - "aggregators": [ - "PancakeCoinMarketCap", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0xf328ed974e586b6eea7997a87ea2ab1de149b186": { - "address": "0xf328ed974e586b6eea7997a87ea2ab1de149b186", - "symbol": "AUSD", - "decimals": 18, - "name": "Ambit USD", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xf328ed974e586b6eea7997a87ea2ab1de149b186.png", - "aggregators": [ - "PancakeCoinGecko", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x25b24b3c47918b7962b3e49c4f468367f73cc0e0": { - "address": "0x25b24b3c47918b7962b3e49c4f468367f73cc0e0", - "symbol": "AXL", - "decimals": 18, - "name": "AXL INU", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x25b24b3c47918b7962b3e49c4f468367f73cc0e0.png", - "aggregators": [ - "PancakeCoinMarketCap", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x37e5da11b6a4dc6d2f7abe232cdd30b0b8fc63b1": { - "address": "0x37e5da11b6a4dc6d2f7abe232cdd30b0b8fc63b1", - "symbol": "BBC", - "decimals": 18, - "name": "Bull BTC Club", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x37e5da11b6a4dc6d2f7abe232cdd30b0b8fc63b1.png", - "aggregators": [ - "PancakeCoinMarketCap", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x312d43881860807fa04b193d69744d087fc3308a": { - "address": "0x312d43881860807fa04b193d69744d087fc3308a", - "symbol": "BD20", - "decimals": 18, - "name": "BRC-20 DEX", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x312d43881860807fa04b193d69744d087fc3308a.png", - "aggregators": [ - "PancakeCoinMarketCap", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x8780fea4c6b242677d4a397fe1110ac09ce99ad2": { - "address": "0x8780fea4c6b242677d4a397fe1110ac09ce99ad2", - "symbol": "BIRD", - "decimals": 18, - "name": "Bird.Money", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x8780fea4c6b242677d4a397fe1110ac09ce99ad2.png", - "aggregators": [ - "PancakeCoinMarketCap", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x859c940f080b197659b3effc804fd622df66f0a1": { - "address": "0x859c940f080b197659b3effc804fd622df66f0a1", - "symbol": "CAL", - "decimals": 18, - "name": "FitBurn", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x859c940f080b197659b3effc804fd622df66f0a1.png", - "aggregators": [ - "PancakeCoinMarketCap", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0xa4b6573c9ae09d81e4d1360e6402b81f52557098": { - "address": "0xa4b6573c9ae09d81e4d1360e6402b81f52557098", - "symbol": "COR", - "decimals": 18, - "name": "Coreto", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xa4b6573c9ae09d81e4d1360e6402b81f52557098.png", - "aggregators": [ - "PancakeCoinMarketCap", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x7c3b67b30efbacc8f787f7ebd3bdc65234299f4c": { - "address": "0x7c3b67b30efbacc8f787f7ebd3bdc65234299f4c", - "symbol": "CTI", - "decimals": 18, - "name": "ClinTex CTi", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x7c3b67b30efbacc8f787f7ebd3bdc65234299f4c.png", - "aggregators": [ - "PancakeCoinGecko", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0xc9132c76060f6b319764ea075973a650a1a53bc9": { - "address": "0xc9132c76060f6b319764ea075973a650a1a53bc9", - "symbol": "DDIM", - "decimals": 18, - "name": "DuckDaoDime", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xc9132c76060f6b319764ea075973a650a1a53bc9.png", - "aggregators": [ - "PancakeCoinMarketCap", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x15f9eb4b9beafa9db35341c5694c0b6573809808": { - "address": "0x15f9eb4b9beafa9db35341c5694c0b6573809808", - "symbol": "DEDA", - "decimals": 8, - "name": "DedaCoin", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x15f9eb4b9beafa9db35341c5694c0b6573809808.png", - "aggregators": [ - "PancakeCoinMarketCap", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0xa0bed124a09ac2bd941b10349d8d224fe3c955eb": { - "address": "0xa0bed124a09ac2bd941b10349d8d224fe3c955eb", - "symbol": "DEPAY", - "decimals": 18, - "name": "DePay", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xa0bed124a09ac2bd941b10349d8d224fe3c955eb.png", - "aggregators": [ - "PancakeCoinMarketCap", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x239ec95667e37929d33066a8df8ddc9444dbcbca": { - "address": "0x239ec95667e37929d33066a8df8ddc9444dbcbca", - "symbol": "DFI", - "decimals": 18, - "name": "DfiStarter", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x239ec95667e37929d33066a8df8ddc9444dbcbca.png", - "aggregators": [ - "PancakeCoinMarketCap", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x3c1748d647e6a56b37b66fcd2b5626d0461d3aa0": { - "address": "0x3c1748d647e6a56b37b66fcd2b5626d0461d3aa0", - "symbol": "DNXC", - "decimals": 18, - "name": "DinoX", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x3c1748d647e6a56b37b66fcd2b5626d0461d3aa0.png", - "aggregators": [ - "PancakeCoinMarketCap", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x163f182c32d24a09d91eb75820cde9fd5832b329": { - "address": "0x163f182c32d24a09d91eb75820cde9fd5832b329", - "symbol": "EDOGE", - "decimals": 9, - "name": "ElonDoge.io", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x163f182c32d24a09d91eb75820cde9fd5832b329.png", - "aggregators": [ - "PancakeCoinMarketCap", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x8a505d5cb3db9fcf404c0a72af3df8be4efb707c": { - "address": "0x8a505d5cb3db9fcf404c0a72af3df8be4efb707c", - "symbol": "ENG", - "decimals": 18, - "name": "Eng Crypto", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x8a505d5cb3db9fcf404c0a72af3df8be4efb707c.png", - "aggregators": [ - "PancakeCoinMarketCap", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x436c52a8cee41d5e9c5e6f4cb146e66d552fb700": { - "address": "0x436c52a8cee41d5e9c5e6f4cb146e66d552fb700", - "symbol": "EQX", - "decimals": 18, - "name": "EQIFi", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x436c52a8cee41d5e9c5e6f4cb146e66d552fb700.png", - "aggregators": [ - "PancakeCoinMarketCap", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x1da87b114f35e1dc91f72bf57fc07a768ad40bb0": { - "address": "0x1da87b114f35e1dc91f72bf57fc07a768ad40bb0", - "symbol": "EQZ", - "decimals": 18, - "name": "Equalizer", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x1da87b114f35e1dc91f72bf57fc07a768ad40bb0.png", - "aggregators": [ - "PancakeCoinMarketCap", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x82030cdbd9e4b7c5bb0b811a61da6360d69449cc": { - "address": "0x82030cdbd9e4b7c5bb0b811a61da6360d69449cc", - "symbol": "FEVR", - "decimals": 18, - "name": "RealFevr", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x82030cdbd9e4b7c5bb0b811a61da6360d69449cc.png", - "aggregators": [ - "PancakeCoinMarketCap", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x49c7295ff86eabf5bf58c6ebc858db4805738c01": { - "address": "0x49c7295ff86eabf5bf58c6ebc858db4805738c01", - "symbol": "HERA", - "decimals": 18, - "name": "Hero Arena", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x49c7295ff86eabf5bf58c6ebc858db4805738c01.png", - "aggregators": [ - "PancakeCoinMarketCap", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0xbd100d061e120b2c67a24453cf6368e63f1be056": { - "address": "0xbd100d061e120b2c67a24453cf6368e63f1be056", - "symbol": "IDYP", - "decimals": 18, - "name": "iDypius", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xbd100d061e120b2c67a24453cf6368e63f1be056.png", - "aggregators": [ - "PancakeCoinMarketCap", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x937c73d59a26058f074428c0a7b1d31bd45f53d0": { - "address": "0x937c73d59a26058f074428c0a7b1d31bd45f53d0", - "symbol": "JEFF", - "decimals": 18, - "name": "JEFF", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x937c73d59a26058f074428c0a7b1d31bd45f53d0.png", - "aggregators": [ - "PancakeCoinMarketCap", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0xc3afde95b6eb9ba8553cdaea6645d45fb3a7faf5": { - "address": "0xc3afde95b6eb9ba8553cdaea6645d45fb3a7faf5", - "symbol": "KIBA", - "decimals": 18, - "name": "Kiba Inu", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xc3afde95b6eb9ba8553cdaea6645d45fb3a7faf5.png", - "aggregators": [ - "PancakeCoinMarketCap", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0xf83c0f6d3a5665bd7cfdd5831a856d85942bc060": { - "address": "0xf83c0f6d3a5665bd7cfdd5831a856d85942bc060", - "symbol": "KIRO", - "decimals": 18, - "name": "KIRO", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xf83c0f6d3a5665bd7cfdd5831a856d85942bc060.png", - "aggregators": [ - "PancakeCoinMarketCap", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x77edfae59a7948d66e9911a30cc787d2172343d4": { - "address": "0x77edfae59a7948d66e9911a30cc787d2172343d4", - "symbol": "LBL", - "decimals": 18, - "name": "LABEL AI", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x77edfae59a7948d66e9911a30cc787d2172343d4.png", - "aggregators": [ - "PancakeCoinMarketCap", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0xcd1b51b87a8a7137d6421ba5a976225187a26777": { - "address": "0xcd1b51b87a8a7137d6421ba5a976225187a26777", - "symbol": "LSD", - "decimals": 18, - "name": "L7DEX", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xcd1b51b87a8a7137d6421ba5a976225187a26777.png", - "aggregators": [ - "PancakeCoinMarketCap", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x558ad2b02ce979ca54f88206ed8597c8c740774e": { - "address": "0x558ad2b02ce979ca54f88206ed8597c8c740774e", - "symbol": "M", - "decimals": 18, - "name": "MetaVerse-M", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x558ad2b02ce979ca54f88206ed8597c8c740774e.png", - "aggregators": [ - "PancakeCoinMarketCap", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x6125adcab2f171bc70cfe2caecfec5509273a86a": { - "address": "0x6125adcab2f171bc70cfe2caecfec5509273a86a", - "symbol": "MGG", - "decimals": 18, - "name": "MetaGaming Guild", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x6125adcab2f171bc70cfe2caecfec5509273a86a.png", - "aggregators": [ - "PancakeCoinMarketCap", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x1f3af095cda17d63cad238358837321e95fc5915": { - "address": "0x1f3af095cda17d63cad238358837321e95fc5915", - "symbol": "MINT", - "decimals": 18, - "name": "Mint Club", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x1f3af095cda17d63cad238358837321e95fc5915.png", - "aggregators": [ - "PancakeCoinMarketCap", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x3e81aa8d6813ec9d7e6ddb4e523fb1601a0e86f3": { - "address": "0x3e81aa8d6813ec9d7e6ddb4e523fb1601a0e86f3", - "symbol": "MNT", - "decimals": 18, - "name": "Mr. Mint", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x3e81aa8d6813ec9d7e6ddb4e523fb1601a0e86f3.png", - "aggregators": [ - "PancakeCoinMarketCap", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x076ddce096c93dcf5d51fe346062bf0ba9523493": { - "address": "0x076ddce096c93dcf5d51fe346062bf0ba9523493", - "symbol": "PARA", - "decimals": 18, - "name": "Paralink Network", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x076ddce096c93dcf5d51fe346062bf0ba9523493.png", - "aggregators": [ - "PancakeCoinMarketCap", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0xe9b9c1c38dab5eab3b7e2ad295425e89bd8db066": { - "address": "0xe9b9c1c38dab5eab3b7e2ad295425e89bd8db066", - "symbol": "PCNT", - "decimals": 18, - "name": "Playcent", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xe9b9c1c38dab5eab3b7e2ad295425e89bd8db066.png", - "aggregators": [ - "PancakeCoinMarketCap", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x2466858ab5edad0bb597fe9f008f568b00d25fe3": { - "address": "0x2466858ab5edad0bb597fe9f008f568b00d25fe3", - "symbol": "PETS", - "decimals": 18, - "name": "MicroPets", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x2466858ab5edad0bb597fe9f008f568b00d25fe3.png", - "aggregators": [ - "PancakeCoinMarketCap", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x5f39dd1bb6db20f3e792c4489f514794cac6392c": { - "address": "0x5f39dd1bb6db20f3e792c4489f514794cac6392c", - "symbol": "PLY", - "decimals": 6, - "name": "PlayNity", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x5f39dd1bb6db20f3e792c4489f514794cac6392c.png", - "aggregators": [ - "PancakeCoinMarketCap", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x65e66a61d0a8f1e686c2d6083ad611a10d84d97a": { - "address": "0x65e66a61d0a8f1e686c2d6083ad611a10d84d97a", - "symbol": "RAZE", - "decimals": 18, - "name": "Raze Network", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x65e66a61d0a8f1e686c2d6083ad611a10d84d97a.png", - "aggregators": [ - "PancakeCoinMarketCap", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x041e714aa0dce7d4189441896486d361e98bad5f": { - "address": "0x041e714aa0dce7d4189441896486d361e98bad5f", - "symbol": "RCH", - "decimals": 9, - "name": "Rich", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x041e714aa0dce7d4189441896486d361e98bad5f.png", - "aggregators": [ - "PancakeCoinMarketCap", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0xe338d4250a4d959f88ff8789eaae8c32700bd175": { - "address": "0xe338d4250a4d959f88ff8789eaae8c32700bd175", - "symbol": "RELAY", - "decimals": 18, - "name": "Relay Token", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xe338d4250a4d959f88ff8789eaae8c32700bd175.png", - "aggregators": [ - "PancakeCoinMarketCap", - "LiFi", - "Socket", - "Rubic", - "Rango" - ], - "occurrences": 5 - }, - "0xba8a6ef5f15ed18e7184f44a775060a6bf91d8d0": { - "address": "0xba8a6ef5f15ed18e7184f44a775060a6bf91d8d0", - "symbol": "SHAKE", - "decimals": 18, - "name": "Spaceswap SHAKE", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xba8a6ef5f15ed18e7184f44a775060a6bf91d8d0.png", - "aggregators": [ - "PancakeCoinMarketCap", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0xa997e5aaae60987eb0b59a336dce6b158b113100": { - "address": "0xa997e5aaae60987eb0b59a336dce6b158b113100", - "symbol": "SNN", - "decimals": 3, - "name": "SeChain", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xa997e5aaae60987eb0b59a336dce6b158b113100.png", - "aggregators": [ - "PancakeCoinMarketCap", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x19ae49b9f38dd836317363839a5f6bfbfa7e319a": { - "address": "0x19ae49b9f38dd836317363839a5f6bfbfa7e319a", - "symbol": "STC", - "decimals": 9, - "name": "SaitaChain Coin", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x19ae49b9f38dd836317363839a5f6bfbfa7e319a.png", - "aggregators": [ - "PancakeCoinMarketCap", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0xcea59dce6a6d73a24e6d6944cfabc330814c098a": { - "address": "0xcea59dce6a6d73a24e6d6944cfabc330814c098a", - "symbol": "TORG", - "decimals": 18, - "name": "TORG", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xcea59dce6a6d73a24e6d6944cfabc330814c098a.png", - "aggregators": [ - "PancakeCoinMarketCap", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x6ba7a8f9063c712c1c8cabc776b1da7126805f3b": { - "address": "0x6ba7a8f9063c712c1c8cabc776b1da7126805f3b", - "symbol": "TRADE", - "decimals": 18, - "name": "Polytrade", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x6ba7a8f9063c712c1c8cabc776b1da7126805f3b.png", - "aggregators": [ - "PancakeCoinMarketCap", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0xbc648cbd7b2b2c666f9f46ac5c5ce6ee77f9c407": { - "address": "0xbc648cbd7b2b2c666f9f46ac5c5ce6ee77f9c407", - "symbol": "WQT", - "decimals": 18, - "name": "Work Quest", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xbc648cbd7b2b2c666f9f46ac5c5ce6ee77f9c407.png", - "aggregators": [ - "PancakeCoinMarketCap", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x5f26fa0c2ee5d3c0323d861d0c503f31ac212662": { - "address": "0x5f26fa0c2ee5d3c0323d861d0c503f31ac212662", - "symbol": "XNL", - "decimals": 18, - "name": "Chronicle", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x5f26fa0c2ee5d3c0323d861d0c503f31ac212662.png", - "aggregators": [ - "PancakeCoinMarketCap", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x37dfacfaeda801437ff648a1559d73f4c40aacb7": { - "address": "0x37dfacfaeda801437ff648a1559d73f4c40aacb7", - "symbol": "APYS", - "decimals": 18, - "name": "APYSwap", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x37dfacfaeda801437ff648a1559d73f4c40aacb7.png", - "aggregators": [ - "PancakeExtended", - "LiFi", - "Socket", - "Rubic", - "Rango" - ], - "occurrences": 5 - }, - "0xf018aea0a08a5d88674f0837bdac27ab89824dee": { - "address": "0xf018aea0a08a5d88674f0837bdac27ab89824dee", - "symbol": "MMG", - "decimals": 18, - "name": "MMG Token", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xf018aea0a08a5d88674f0837bdac27ab89824dee.png", - "aggregators": [ - "PancakeCoinMarketCap", - "1inch", - "LiFi", - "Rubic", - "Rango" - ], - "occurrences": 5 - }, - "0x8c784c49097dcc637b93232e15810d53871992bf": { - "address": "0x8c784c49097dcc637b93232e15810d53871992bf", - "symbol": "MSC", - "decimals": 18, - "name": "Monster Slayer Cash", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x8c784c49097dcc637b93232e15810d53871992bf.png", - "aggregators": [ - "PancakeCoinMarketCap", - "1inch", - "Socket", - "Rubic", - "Rango" - ], - "occurrences": 5 - }, - "0x4f47a0d15c1e53f3d94c069c7d16977c29f9cb6b": { - "address": "0x4f47a0d15c1e53f3d94c069c7d16977c29f9cb6b", - "symbol": "RAMEN", - "decimals": 18, - "name": "Ramen Token", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x4f47a0d15c1e53f3d94c069c7d16977c29f9cb6b.png", - "aggregators": [ - "PancakeCoinMarketCap", - "1inch", - "Socket", - "Rubic", - "Rango" - ], - "occurrences": 5 - }, - "0x0da6ed8b13214ff28e9ca979dd37439e8a88f6c4": { - "address": "0x0da6ed8b13214ff28e9ca979dd37439e8a88f6c4", - "symbol": "STAX", - "decimals": 18, - "name": "StableXSwap", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x0da6ed8b13214ff28e9ca979dd37439e8a88f6c4.png", - "aggregators": [ - "PancakeCoinMarketCap", - "LiFi", - "Socket", - "Rango", - "SushiSwap" - ], - "occurrences": 5 - }, - "0x80d5f92c2c8c682070c95495313ddb680b267320": { - "address": "0x80d5f92c2c8c682070c95495313ddb680b267320", - "symbol": "ASR", - "decimals": 2, - "name": "AS Roma", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x80d5f92c2c8c682070c95495313ddb680b267320.png", - "aggregators": [ - "PancakeExtended", - "Socket", - "Rubic", - "Rango", - "SushiSwap" - ], - "occurrences": 5 - }, - "0x25e9d05365c867e59c1904e7463af9f312296f9e": { - "address": "0x25e9d05365c867e59c1904e7463af9f312296f9e", - "symbol": "ATM", - "decimals": 2, - "name": "Atletico de Madrid", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x25e9d05365c867e59c1904e7463af9f312296f9e.png", - "aggregators": [ - "PancakeExtended", - "Socket", - "Rubic", - "Rango", - "SushiSwap" - ], - "occurrences": 5 - }, - "0x1f7216fdb338247512ec99715587bb97bbf96eae": { - "address": "0x1f7216fdb338247512ec99715587bb97bbf96eae", - "symbol": "BBADGER", - "decimals": 18, - "name": "BBADGER", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x1f7216fdb338247512ec99715587bb97bbf96eae.png", - "aggregators": [ - "PancakeExtended", - "1inch", - "LiFi", - "Socket", - "Rango" - ], - "occurrences": 5 - }, - "0xc40c9a843e1c6d01b7578284a9028854f6683b1b": { - "address": "0xc40c9a843e1c6d01b7578284a9028854f6683b1b", - "symbol": "JUV", - "decimals": 2, - "name": "Juventus", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xc40c9a843e1c6d01b7578284a9028854f6683b1b.png", - "aggregators": [ - "PancakeExtended", - "Socket", - "Rubic", - "Rango", - "SushiSwap" - ], - "occurrences": 5 - }, - "0xf05e45ad22150677a017fbd94b84fbb63dc9b44c": { - "address": "0xf05e45ad22150677a017fbd94b84fbb63dc9b44c", - "symbol": "OG", - "decimals": 2, - "name": "OG", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xf05e45ad22150677a017fbd94b84fbb63dc9b44c.png", - "aggregators": [ - "PancakeExtended", - "Socket", - "Rubic", - "Rango", - "SushiSwap" - ], - "occurrences": 5 - }, - "0xbc5609612b7c44bef426de600b5fd1379db2ecf1": { - "address": "0xbc5609612b7c44bef426de600b5fd1379db2ecf1", - "symbol": "PSG", - "decimals": 2, - "name": "Paris Saint-Germain", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xbc5609612b7c44bef426de600b5fd1379db2ecf1.png", - "aggregators": [ - "PancakeExtended", - "Socket", - "Rubic", - "Rango", - "SushiSwap" - ], - "occurrences": 5 - }, - "0x4e7f408be2d4e9d60f49a64b89bb619c84c7c6f5": { - "address": "0x4e7f408be2d4e9d60f49a64b89bb619c84c7c6f5", - "symbol": "PERP", - "decimals": 18, - "name": "Perpetual Protocol", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x4e7f408be2d4e9d60f49a64b89bb619c84c7c6f5.png", - "aggregators": ["PancakeCoinGecko", "Socket", "Rubic", "Rango"], - "occurrences": 4 - }, - "0x51ba0b044d96c3abfca52b64d733603ccc4f0d4d": { - "address": "0x51ba0b044d96c3abfca52b64d733603ccc4f0d4d", - "symbol": "SUPER", - "decimals": 18, - "name": "SUPER-ERC20", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x51ba0b044d96c3abfca52b64d733603ccc4f0d4d.png", - "aggregators": ["PancakeCoinGecko", "Socket", "Rubic", "Rango"], - "occurrences": 4 - }, - "0xf486ad071f3bee968384d2e39e2d8af0fcf6fd46": { - "address": "0xf486ad071f3bee968384d2e39e2d8af0fcf6fd46", - "symbol": "VELO", - "decimals": 18, - "name": "Velo", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xf486ad071f3bee968384d2e39e2d8af0fcf6fd46.png", - "aggregators": [ - "PancakeExtended", - "LiFi", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x86a53fcd199212fea44fa7e16eb1f28812be911d": { - "address": "0x86a53fcd199212fea44fa7e16eb1f28812be911d", - "symbol": "IHC", - "decimals": 18, - "name": "Inflation Hedging Coin", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x86a53fcd199212fea44fa7e16eb1f28812be911d.png", - "aggregators": [ - "PancakeCoinMarketCap", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 4 - }, - "0xa58950f05fea2277d2608748412bf9f802ea4901": { - "address": "0xa58950f05fea2277d2608748412bf9f802ea4901", - "symbol": "WSG", - "decimals": 18, - "name": "Wall Street Games [OLD]", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xa58950f05fea2277d2608748412bf9f802ea4901.png", - "aggregators": ["PancakeExtended", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0x21f1ce0fcf1e9e39f8e79b7762801e8096d9f6cd": { - "address": "0x21f1ce0fcf1e9e39f8e79b7762801e8096d9f6cd", - "symbol": "BCPAY", - "decimals": 8, - "name": "BCPAY FinTech", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x21f1ce0fcf1e9e39f8e79b7762801e8096d9f6cd.png", - "aggregators": ["PancakeCoinGecko", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0x7fe378c5e0b5c32af2ecc8829bedf02245a0e4ef": { - "address": "0x7fe378c5e0b5c32af2ecc8829bedf02245a0e4ef", - "symbol": "STZ", - "decimals": 18, - "name": "99Starz", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x7fe378c5e0b5c32af2ecc8829bedf02245a0e4ef.png", - "aggregators": [ - "PancakeCoinMarketCap", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 4 - }, - "0xea395dfafed39924988b475f2ca7f4c72655203a": { - "address": "0xea395dfafed39924988b475f2ca7f4c72655203a", - "symbol": "CPO", - "decimals": 18, - "name": "Cryptopolis", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xea395dfafed39924988b475f2ca7f4c72655203a.png", - "aggregators": [ - "PancakeCoinMarketCap", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 4 - }, - "0xbdc3b3639f7aa19e623a4d603a3fb7ab20115a91": { - "address": "0xbdc3b3639f7aa19e623a4d603a3fb7ab20115a91", - "symbol": "COC", - "decimals": 18, - "name": "Coin of the champions", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xbdc3b3639f7aa19e623a4d603a3fb7ab20115a91.png", - "aggregators": [ - "PancakeCoinMarketCap", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 4 - }, - "0xf77351d8f4ee853135961a936bb8d2e4ffa75f9d": { - "address": "0xf77351d8f4ee853135961a936bb8d2e4ffa75f9d", - "symbol": "ROOBEE", - "decimals": 18, - "name": "Roobee", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xf77351d8f4ee853135961a936bb8d2e4ffa75f9d.png", - "aggregators": [ - "PancakeCoinMarketCap", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 4 - }, - "0x766afcf83fd5eaf884b3d529b432ca27a6d84617": { - "address": "0x766afcf83fd5eaf884b3d529b432ca27a6d84617", - "symbol": "BLID", - "decimals": 18, - "name": "BLID", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x766afcf83fd5eaf884b3d529b432ca27a6d84617.png", - "aggregators": ["PancakeCoinMarketCap", "Socket", "Rubic", "Rango"], - "occurrences": 4 - }, - "0x78aae7e000bf6fc98a6b717d5ec8ef2bcd04f428": { - "address": "0x78aae7e000bf6fc98a6b717d5ec8ef2bcd04f428", - "symbol": "GEMS", - "decimals": 9, - "name": "GemPad", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x78aae7e000bf6fc98a6b717d5ec8ef2bcd04f428.png", - "aggregators": [ - "PancakeCoinMarketCap", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 4 - }, - "0x37a56cdcd83dce2868f721de58cb3830c44c6303": { - "address": "0x37a56cdcd83dce2868f721de58cb3830c44c6303", - "symbol": "ZBC", - "decimals": 9, - "name": "ZBC", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x37a56cdcd83dce2868f721de58cb3830c44c6303.png", - "aggregators": ["PancakeExtended", "LiFi", "Rubic", "Rango"], - "occurrences": 4 - }, - "0x45d486479ed1db8b164d1386b3c89c05cee8ca86": { - "address": "0x45d486479ed1db8b164d1386b3c89c05cee8ca86", - "symbol": "USDY", - "decimals": 18, - "name": "USDy", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x45d486479ed1db8b164d1386b3c89c05cee8ca86.png", - "aggregators": ["PancakeCoinMarketCap", "LiFi", "Socket", "Rubic"], - "occurrences": 4 - }, - "0x0012365f0a1e5f30a5046c680dcb21d07b15fcf7": { - "address": "0x0012365f0a1e5f30a5046c680dcb21d07b15fcf7", - "symbol": "GYMNET", - "decimals": 18, - "name": "Gym Network", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x0012365f0a1e5f30a5046c680dcb21d07b15fcf7.png", - "aggregators": [ - "PancakeCoinMarketCap", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 4 - }, - "0x17e65e6b9b166fb8e7c59432f0db126711246bc0": { - "address": "0x17e65e6b9b166fb8e7c59432f0db126711246bc0", - "symbol": "TIFI", - "decimals": 18, - "name": "TiFi", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x17e65e6b9b166fb8e7c59432f0db126711246bc0.png", - "aggregators": [ - "PancakeCoinMarketCap", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 4 - }, - "0x9bf543d8460583ff8a669aae01d9cdbee4defe3c": { - "address": "0x9bf543d8460583ff8a669aae01d9cdbee4defe3c", - "symbol": "SKO", - "decimals": 18, - "name": "Sugar Kingdom Odyssey", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x9bf543d8460583ff8a669aae01d9cdbee4defe3c.png", - "aggregators": [ - "PancakeCoinMarketCap", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 4 - }, - "0xfeb4e9b932ef708c498cc997abe51d0ee39300cf": { - "address": "0xfeb4e9b932ef708c498cc997abe51d0ee39300cf", - "symbol": "KICKS", - "decimals": 18, - "name": "GetKicks", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xfeb4e9b932ef708c498cc997abe51d0ee39300cf.png", - "aggregators": [ - "PancakeCoinMarketCap", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 4 - }, - "0x42c95788f791a2be3584446854c8d9bb01be88a9": { - "address": "0x42c95788f791a2be3584446854c8d9bb01be88a9", - "symbol": "HBR", - "decimals": 18, - "name": "Harbor", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x42c95788f791a2be3584446854c8d9bb01be88a9.png", - "aggregators": ["PancakeCoinGecko", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0x8dc0f602696de3ff03b37e19a172e5080f049c15": { - "address": "0x8dc0f602696de3ff03b37e19a172e5080f049c15", - "symbol": "CLASH", - "decimals": 18, - "name": "Clashub", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x8dc0f602696de3ff03b37e19a172e5080f049c15.png", - "aggregators": ["PancakeCoinGecko", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0x117a123ded97cd125837d9ac19592b77d806fa88": { - "address": "0x117a123ded97cd125837d9ac19592b77d806fa88", - "symbol": "BRBC", - "decimals": 18, - "name": "Bull Run Bets", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x117a123ded97cd125837d9ac19592b77d806fa88.png", - "aggregators": ["PancakeCoinGecko", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0x516f8a1fb458ebdcfd0f544ff85c69c1c0ebc31d": { - "address": "0x516f8a1fb458ebdcfd0f544ff85c69c1c0ebc31d", - "symbol": "SDM", - "decimals": 18, - "name": "Shieldeum", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x516f8a1fb458ebdcfd0f544ff85c69c1c0ebc31d.png", - "aggregators": ["PancakeExtended", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0x2aabe2ef9ee8ab04c6f27c4284c3f268769b35ec": { - "address": "0x2aabe2ef9ee8ab04c6f27c4284c3f268769b35ec", - "symbol": "BNBAI", - "decimals": 18, - "name": "BNB Agents", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x2aabe2ef9ee8ab04c6f27c4284c3f268769b35ec.png", - "aggregators": ["ApeSwap", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0x3e51783fef3cb3e807cff7fcb660d3e51c6127f6": { - "address": "0x3e51783fef3cb3e807cff7fcb660d3e51c6127f6", - "symbol": "CRS", - "decimals": 18, - "name": "CERANOS", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x3e51783fef3cb3e807cff7fcb660d3e51c6127f6.png", - "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0xe0e81c29a68bfdd7c48072fd94e7c58f1f0146c1": { - "address": "0xe0e81c29a68bfdd7c48072fd94e7c58f1f0146c1", - "symbol": "H2ON", - "decimals": 18, - "name": "H2O Securities", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xe0e81c29a68bfdd7c48072fd94e7c58f1f0146c1.png", - "aggregators": [ - "PancakeCoinMarketCap", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 4 - }, - "0xb5ab5cf2e2c686ae43f01f23859f3a55a8629c1c": { - "address": "0xb5ab5cf2e2c686ae43f01f23859f3a55a8629c1c", - "symbol": "MA", - "decimals": 18, - "name": "Mind AI", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xb5ab5cf2e2c686ae43f01f23859f3a55a8629c1c.png", - "aggregators": ["PancakeExtended", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0x9817f4c9f968a553ff6caef1a2ef6cf1386f16f7": { - "address": "0x9817f4c9f968a553ff6caef1a2ef6cf1386f16f7", - "symbol": "ASCAKE", - "decimals": 18, - "name": "Astherus Staked CAKE", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x9817f4c9f968a553ff6caef1a2ef6cf1386f16f7.png", - "aggregators": ["PancakeExtended", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0x7a9c8d33963aecca9a821802adfaf5bd9392351f": { - "address": "0x7a9c8d33963aecca9a821802adfaf5bd9392351f", - "symbol": "MMETA", - "decimals": 18, - "name": "Duckie Land Multi Metaverse", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x7a9c8d33963aecca9a821802adfaf5bd9392351f.png", - "aggregators": [ - "PancakeCoinMarketCap", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 4 - }, - "0xe37dbf20a4fff3b88233e456355dc49b76b6fe19": { - "address": "0xe37dbf20a4fff3b88233e456355dc49b76b6fe19", - "symbol": "LEE", - "decimals": 18, - "name": "Love Earn Enjoy", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xe37dbf20a4fff3b88233e456355dc49b76b6fe19.png", - "aggregators": [ - "PancakeCoinMarketCap", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 4 - }, - "0xc4a1e7106d08b7ff947254b6d75cf2b877d55daf": { - "address": "0xc4a1e7106d08b7ff947254b6d75cf2b877d55daf", - "symbol": "LQR", - "decimals": 18, - "name": "Laqira Protocol", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xc4a1e7106d08b7ff947254b6d75cf2b877d55daf.png", - "aggregators": [ - "PancakeCoinMarketCap", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 4 - }, - "0x1d0ac23f03870f768ca005c84cbb6fb82aa884fd": { - "address": "0x1d0ac23f03870f768ca005c84cbb6fb82aa884fd", - "symbol": "GALEON", - "decimals": 18, - "name": "Galeon", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x1d0ac23f03870f768ca005c84cbb6fb82aa884fd.png", - "aggregators": [ - "PancakeCoinMarketCap", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 4 - }, - "0xd522a1dce1ca4b138dda042a78672307eb124cc2": { - "address": "0xd522a1dce1ca4b138dda042a78672307eb124cc2", - "symbol": "SWAPZ", - "decimals": 18, - "name": "SWAPZ.app", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xd522a1dce1ca4b138dda042a78672307eb124cc2.png", - "aggregators": [ - "PancakeCoinMarketCap", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 4 - }, - "0x8e11e90b463bf521382e2b88539f053270a3848c": { - "address": "0x8e11e90b463bf521382e2b88539f053270a3848c", - "symbol": "TTAI", - "decimals": 18, - "name": "TTAI", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x8e11e90b463bf521382e2b88539f053270a3848c.png", - "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0x79be2b20389a869476d183b1f42b9950eaf457d8": { - "address": "0x79be2b20389a869476d183b1f42b9950eaf457d8", - "symbol": "MRLN", - "decimals": 18, - "name": "Merlin Token", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x79be2b20389a869476d183b1f42b9950eaf457d8.png", - "aggregators": ["CoinGecko", "LiFi", "Rubic", "Rango"], - "occurrences": 4 - }, - "0x47c454ca6be2f6def6f32b638c80f91c9c3c5949": { - "address": "0x47c454ca6be2f6def6f32b638c80f91c9c3c5949", - "symbol": "GFAL", - "decimals": 18, - "name": "Games for a Living", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x47c454ca6be2f6def6f32b638c80f91c9c3c5949.png", - "aggregators": [ - "PancakeCoinMarketCap", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 4 - }, - "0xc3028fbc1742a16a5d69de1b334cbce28f5d7eb3": { - "address": "0xc3028fbc1742a16a5d69de1b334cbce28f5d7eb3", - "symbol": "SSS", - "decimals": 18, - "name": "StarSharks", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xc3028fbc1742a16a5d69de1b334cbce28f5d7eb3.png", - "aggregators": ["PancakeCoinGecko", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0x3e7f1039896454b9cb27c53cc7383e1ab9d9512a": { - "address": "0x3e7f1039896454b9cb27c53cc7383e1ab9d9512a", - "symbol": "METFI", - "decimals": 18, - "name": "MetFi", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x3e7f1039896454b9cb27c53cc7383e1ab9d9512a.png", - "aggregators": [ - "PancakeCoinMarketCap", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 4 - }, - "0xb96d0f29a0ac9af4a32835e90ec6531389765089": { - "address": "0xb96d0f29a0ac9af4a32835e90ec6531389765089", - "symbol": "VPR", - "decimals": 18, - "name": "VaporFund", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xb96d0f29a0ac9af4a32835e90ec6531389765089.png", - "aggregators": [ - "PancakeCoinMarketCap", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 4 - }, - "0x75ca521892de7f2ecfb070cab545c250d0ceb7e3": { - "address": "0x75ca521892de7f2ecfb070cab545c250d0ceb7e3", - "symbol": "PVC", - "decimals": 9, - "name": "PVC META", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x75ca521892de7f2ecfb070cab545c250d0ceb7e3.png", - "aggregators": [ - "PancakeCoinMarketCap", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 4 - }, - "0xfbf174090b3cc8ebb9f39b697035a54c5c45b4d6": { - "address": "0xfbf174090b3cc8ebb9f39b697035a54c5c45b4d6", - "symbol": "$POM", - "decimals": 18, - "name": "POM", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xfbf174090b3cc8ebb9f39b697035a54c5c45b4d6.png", - "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0xb003c68917bab76812797d1b8056822f48e2e4fe": { - "address": "0xb003c68917bab76812797d1b8056822f48e2e4fe", - "symbol": "YUMMY", - "decimals": 9, - "name": "Yummy", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xb003c68917bab76812797d1b8056822f48e2e4fe.png", - "aggregators": [ - "PancakeCoinMarketCap", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 4 - }, - "0x3b76374cc2dfe28cc373dca6d5024791b2586335": { - "address": "0x3b76374cc2dfe28cc373dca6d5024791b2586335", - "symbol": "ADAO", - "decimals": 18, - "name": "ADADao", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x3b76374cc2dfe28cc373dca6d5024791b2586335.png", - "aggregators": [ - "PancakeCoinMarketCap", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 4 - }, - "0xde5bdcbd4d7dfa86e527fef9971bd6ca6a76eefb": { - "address": "0xde5bdcbd4d7dfa86e527fef9971bd6ca6a76eefb", - "symbol": "IVPAY", - "decimals": 18, - "name": "ivendPay", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xde5bdcbd4d7dfa86e527fef9971bd6ca6a76eefb.png", - "aggregators": [ - "PancakeCoinMarketCap", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 4 - }, - "0x342f7334e4c1732ea753a597722e9c3d04bdcce7": { - "address": "0x342f7334e4c1732ea753a597722e9c3d04bdcce7", - "symbol": "EIDMUBARAK", - "decimals": 18, - "name": "Eid Mubarak", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x342f7334e4c1732ea753a597722e9c3d04bdcce7.png", - "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0xc28957e946ac244612bcb205c899844cbbcb093d": { - "address": "0xc28957e946ac244612bcb205c899844cbbcb093d", - "symbol": "BUD", - "decimals": 18, - "name": "BOOKUSD", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xc28957e946ac244612bcb205c899844cbbcb093d.png", - "aggregators": ["CoinGecko", "LiFi", "Rubic", "Rango"], - "occurrences": 4 - }, - "0x32c830f5c34122c6afb8ae87aba541b7900a2c5f": { - "address": "0x32c830f5c34122c6afb8ae87aba541b7900a2c5f", - "symbol": "YNBNBX", - "decimals": 18, - "name": "ynBNB MAX", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x32c830f5c34122c6afb8ae87aba541b7900a2c5f.png", - "aggregators": ["CoinGecko", "LiFi", "Rubic", "Rango"], - "occurrences": 4 - }, - "0xf00600ebc7633462bc4f9c61ea2ce99f5aaebd4a": { - "address": "0xf00600ebc7633462bc4f9c61ea2ce99f5aaebd4a", - "symbol": "ROSE", - "decimals": 18, - "name": "Oasis", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xf00600ebc7633462bc4f9c61ea2ce99f5aaebd4a.png", - "aggregators": ["PancakeExtended", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0x079ff857bd4ff7c4acf49a1a02e67ef96d43e3e6": { - "address": "0x079ff857bd4ff7c4acf49a1a02e67ef96d43e3e6", - "symbol": "MEAI", - "decimals": 18, - "name": "MeAI", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x079ff857bd4ff7c4acf49a1a02e67ef96d43e3e6.png", - "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0x59e69094398afbea632f8bd63033bdd2443a3be1": { - "address": "0x59e69094398afbea632f8bd63033bdd2443a3be1", - "symbol": "MONKY", - "decimals": 18, - "name": "Wise Monkey", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x59e69094398afbea632f8bd63033bdd2443a3be1.png", - "aggregators": ["PancakeExtended", "Rubic", "Squid", "Rango"], - "occurrences": 4 - }, - "0x103071da56e7cd95b415320760d6a0ddc4da1ca5": { - "address": "0x103071da56e7cd95b415320760d6a0ddc4da1ca5", - "symbol": "XTER", - "decimals": 18, - "name": "Xterio", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x103071da56e7cd95b415320760d6a0ddc4da1ca5.png", - "aggregators": ["PancakeExtended", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0x965d3704de812f5e1e7eef1ac22fe92174258bd9": { - "address": "0x965d3704de812f5e1e7eef1ac22fe92174258bd9", - "symbol": "MXY", - "decimals": 18, - "name": "Metaxy", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x965d3704de812f5e1e7eef1ac22fe92174258bd9.png", - "aggregators": [ - "PancakeCoinMarketCap", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 4 - }, - "0xcae117ca6bc8a341d2e7207f30e180f0e5618b9d": { - "address": "0xcae117ca6bc8a341d2e7207f30e180f0e5618b9d", - "symbol": "ARK", - "decimals": 18, - "name": "ARK", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xcae117ca6bc8a341d2e7207f30e180f0e5618b9d.png", - "aggregators": ["CoinGecko", "Rubic", "Squid", "Rango"], - "occurrences": 4 - }, - "0x9505dbd77dacd1f6c89f101b98522d4b871d88c5": { - "address": "0x9505dbd77dacd1f6c89f101b98522d4b871d88c5", - "symbol": "LOVE", - "decimals": 9, - "name": "HunnyDAO", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x9505dbd77dacd1f6c89f101b98522d4b871d88c5.png", - "aggregators": [ - "PancakeCoinMarketCap", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 4 - }, - "0x36f2fd027f5f27c59b8c6d64df64bcc8e8c97777": { - "address": "0x36f2fd027f5f27c59b8c6d64df64bcc8e8c97777", - "symbol": "雪球", - "decimals": 18, - "name": "雪球", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x36f2fd027f5f27c59b8c6d64df64bcc8e8c97777.png", - "aggregators": ["PancakeExtended", "LiFi", "Rubic", "Rango"], - "occurrences": 4 - }, - "0x18ea4df6a9cde2472f2321a4ec77da106498a66e": { - "address": "0x18ea4df6a9cde2472f2321a4ec77da106498a66e", - "symbol": "SINGULARRY", - "decimals": 18, - "name": "Singularry", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x18ea4df6a9cde2472f2321a4ec77da106498a66e.png", - "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0x1fa0f5ed24a1a2b43741e88f8fec19633e67082b": { - "address": "0x1fa0f5ed24a1a2b43741e88f8fec19633e67082b", - "symbol": "DIAM", - "decimals": 18, - "name": "Diamante", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x1fa0f5ed24a1a2b43741e88f8fec19633e67082b.png", - "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0x6fd7c98458a943f469e1cf4ea85b173f5cd342f4": { - "address": "0x6fd7c98458a943f469e1cf4ea85b173f5cd342f4", - "symbol": "BHC", - "decimals": 18, - "name": "BillionHappiness", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x6fd7c98458a943f469e1cf4ea85b173f5cd342f4.png", - "aggregators": [ - "PancakeCoinMarketCap", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 4 - }, - "0xb897d0a0f68800f8be7d69ffdd1c24b69f57bf3e": { - "address": "0xb897d0a0f68800f8be7d69ffdd1c24b69f57bf3e", - "symbol": "XEP", - "decimals": 8, - "name": "Electra Protocol", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xb897d0a0f68800f8be7d69ffdd1c24b69f57bf3e.png", - "aggregators": [ - "PancakeCoinMarketCap", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 4 - }, - "0xe3f53c0d48360de764ddc2a1a82c3e6db5d4624d": { - "address": "0xe3f53c0d48360de764ddc2a1a82c3e6db5d4624d", - "symbol": "EMYC", - "decimals": 18, - "name": "E Money Network", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xe3f53c0d48360de764ddc2a1a82c3e6db5d4624d.png", - "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0xf0186490b18cb74619816cfc7feb51cdbe4ae7b9": { - "address": "0xf0186490b18cb74619816cfc7feb51cdbe4ae7b9", - "symbol": "ZUSD", - "decimals": 18, - "name": "Zasset zUSD", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xf0186490b18cb74619816cfc7feb51cdbe4ae7b9.png", - "aggregators": ["PancakeCoinMarketCap", "Socket", "Rubic", "Rango"], - "occurrences": 4 - }, - "0xd10332818d6a9b4b84bf5d87dbf9d80012fdf913": { - "address": "0xd10332818d6a9b4b84bf5d87dbf9d80012fdf913", - "symbol": "MRHB", - "decimals": 18, - "name": "MarhabaDeFi", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xd10332818d6a9b4b84bf5d87dbf9d80012fdf913.png", - "aggregators": [ - "PancakeCoinMarketCap", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 4 - }, - "0x881025d714c587611e47d89b7929c1cb4ff05b51": { - "address": "0x881025d714c587611e47d89b7929c1cb4ff05b51", - "symbol": "CONSCIOUS", - "decimals": 18, - "name": "Conscious Token", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x881025d714c587611e47d89b7929c1cb4ff05b51.png", - "aggregators": ["CoinGecko", "Rubic", "Squid", "Rango"], - "occurrences": 4 - }, - "0x28ce223853d123b52c74439b10b43366d73fd3b5": { - "address": "0x28ce223853d123b52c74439b10b43366d73fd3b5", - "symbol": "FAME", - "decimals": 18, - "name": "Fame MMA", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x28ce223853d123b52c74439b10b43366d73fd3b5.png", - "aggregators": [ - "PancakeCoinMarketCap", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 4 - }, - "0xf39e4b21c84e737df08e2c3b32541d856f508e48": { - "address": "0xf39e4b21c84e737df08e2c3b32541d856f508e48", - "symbol": "ESPORTS", - "decimals": 18, - "name": "Yooldo Games", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xf39e4b21c84e737df08e2c3b32541d856f508e48.png", - "aggregators": ["PancakeExtended", "Rubic", "Squid", "Rango"], - "occurrences": 4 - }, - "0xdc06717f367e57a16e06cce0c4761604460da8fc": { - "address": "0xdc06717f367e57a16e06cce0c4761604460da8fc", - "symbol": "BNBCARD", - "decimals": 18, - "name": "BNB Card", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xdc06717f367e57a16e06cce0c4761604460da8fc.png", - "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0xa5996fc5007dd2019f9a9ff6c50c1c847aa64444": { - "address": "0xa5996fc5007dd2019f9a9ff6c50c1c847aa64444", - "symbol": "CLZD", - "decimals": 18, - "name": "CLZD", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xa5996fc5007dd2019f9a9ff6c50c1c847aa64444.png", - "aggregators": ["CoinGecko", "Rubic", "Squid", "Rango"], - "occurrences": 4 - }, - "0x0a43fc31a73013089df59194872ecae4cae14444": { - "address": "0x0a43fc31a73013089df59194872ecae4cae14444", - "symbol": "4", - "decimals": 18, - "name": "4", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x0a43fc31a73013089df59194872ecae4cae14444.png", - "aggregators": ["PancakeExtended", "1inch", "Rubic", "Rango"], - "occurrences": 4 - }, - "0xb841f365d5221bed66d60e69094418d8c2aa5a44": { - "address": "0xb841f365d5221bed66d60e69094418d8c2aa5a44", - "symbol": "DSTRX", - "decimals": 18, - "name": "Districts", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xb841f365d5221bed66d60e69094418d8c2aa5a44.png", - "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0x617724974218a18769020a70162165a539c07e8a": { - "address": "0x617724974218a18769020a70162165a539c07e8a", - "symbol": "OLIVE", - "decimals": 18, - "name": "Olive Cash", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x617724974218a18769020a70162165a539c07e8a.png", - "aggregators": [ - "PancakeCoinMarketCap", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 4 - }, - "0x045c2767a6cae0a4551f40e4e8d250af94fe056b": { - "address": "0x045c2767a6cae0a4551f40e4e8d250af94fe056b", - "symbol": "TCAPY", - "decimals": 18, - "name": "TonCapy", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x045c2767a6cae0a4551f40e4e8d250af94fe056b.png", - "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0xbf8bab33600d5bca18e4464e34c2a8d532031f5c": { - "address": "0xbf8bab33600d5bca18e4464e34c2a8d532031f5c", - "symbol": "$OZONE", - "decimals": 18, - "name": "Ozone Metaverse", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xbf8bab33600d5bca18e4464e34c2a8d532031f5c.png", - "aggregators": [ - "PancakeCoinMarketCap", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 4 - }, - "0xaab09b5cd1694d12c8c980306f5e2f5d65b00e1c": { - "address": "0xaab09b5cd1694d12c8c980306f5e2f5d65b00e1c", - "symbol": "REVO", - "decimals": 18, - "name": "Revomon", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xaab09b5cd1694d12c8c980306f5e2f5d65b00e1c.png", - "aggregators": [ - "PancakeCoinMarketCap", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 4 - }, - "0xb1ff83ef5e44862d634413be77ca4dc6ac50b74f": { - "address": "0xb1ff83ef5e44862d634413be77ca4dc6ac50b74f", - "symbol": "CUT", - "decimals": 9, - "name": "CryptoUnity", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xb1ff83ef5e44862d634413be77ca4dc6ac50b74f.png", - "aggregators": [ - "PancakeCoinMarketCap", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 4 - }, - "0xdeb27a3d1c0cc78a2a7d679b94a2bd9c122613e2": { - "address": "0xdeb27a3d1c0cc78a2a7d679b94a2bd9c122613e2", - "symbol": "RTUSQ", - "decimals": 18, - "name": "rtUSQ", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xdeb27a3d1c0cc78a2a7d679b94a2bd9c122613e2.png", - "aggregators": ["CoinGecko", "1inch", "Rubic", "Rango"], - "occurrences": 4 - }, - "0x085d15db9c7cd3df188422f88ec41ec573d691b9": { - "address": "0x085d15db9c7cd3df188422f88ec41ec573d691b9", - "symbol": "PRIDE", - "decimals": 18, - "name": "Nomad Exiles", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x085d15db9c7cd3df188422f88ec41ec573d691b9.png", - "aggregators": [ - "PancakeCoinMarketCap", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 4 - }, - "0x619940c0f69f1612245f94b7659403623239fb20": { - "address": "0x619940c0f69f1612245f94b7659403623239fb20", - "symbol": "MSVP", - "decimals": 18, - "name": "MetaSoilVerseProtocol", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x619940c0f69f1612245f94b7659403623239fb20.png", - "aggregators": ["PancakeExtended", "LiFi", "Rubic", "Rango"], - "occurrences": 4 - }, - "0xb92c5e0135a510a4a3a8803f143d2cb085bbaf73": { - "address": "0xb92c5e0135a510a4a3a8803f143d2cb085bbaf73", - "symbol": "MTVT", - "decimals": 18, - "name": "Metaverser", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xb92c5e0135a510a4a3a8803f143d2cb085bbaf73.png", - "aggregators": [ - "PancakeCoinMarketCap", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 4 - }, - "0x95b0fffabd2817959ce410070600d77bce93d454": { - "address": "0x95b0fffabd2817959ce410070600d77bce93d454", - "symbol": "NEUROS", - "decimals": 18, - "name": "Shockwaves", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x95b0fffabd2817959ce410070600d77bce93d454.png", - "aggregators": [ - "PancakeCoinMarketCap", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 4 - }, - "0x35ae9accf59d646b181e816fdb86811671919d74": { - "address": "0x35ae9accf59d646b181e816fdb86811671919d74", - "symbol": "GPT", - "decimals": 8, - "name": "GPT", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x35ae9accf59d646b181e816fdb86811671919d74.png", - "aggregators": ["CoinGecko", "Socket", "Rubic", "Rango"], - "occurrences": 4 - }, - "0x9d39ef3bbca5927909dde44476656b81bbe4ee75": { - "address": "0x9d39ef3bbca5927909dde44476656b81bbe4ee75", - "symbol": "WEAR", - "decimals": 18, - "name": "MetaWear", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x9d39ef3bbca5927909dde44476656b81bbe4ee75.png", - "aggregators": [ - "PancakeCoinMarketCap", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 4 - }, - "0xfcb8a4b1a0b645e08064e05b98e9cc6f48d2aa57": { - "address": "0xfcb8a4b1a0b645e08064e05b98e9cc6f48d2aa57", - "symbol": "ZMN", - "decimals": 18, - "name": "ZMINE", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xfcb8a4b1a0b645e08064e05b98e9cc6f48d2aa57.png", - "aggregators": [ - "PancakeCoinMarketCap", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 4 - }, - "0x84affeef925cdce87f8a99b7b2e540da5140fc09": { - "address": "0x84affeef925cdce87f8a99b7b2e540da5140fc09", - "symbol": "SERSH", - "decimals": 18, - "name": "Serenity", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x84affeef925cdce87f8a99b7b2e540da5140fc09.png", - "aggregators": [ - "PancakeCoinMarketCap", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 4 - }, - "0x1f12b85aac097e43aa1555b2881e98a51090e9a6": { - "address": "0x1f12b85aac097e43aa1555b2881e98a51090e9a6", - "symbol": "GENIUS", - "decimals": 18, - "name": "Genius", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x1f12b85aac097e43aa1555b2881e98a51090e9a6.png", - "aggregators": ["PancakeExtended", "LiFi", "Rubic", "Rango"], - "occurrences": 4 - }, - "0x799e1cf88a236e42b4a87c544a22a94ae95a6910": { - "address": "0x799e1cf88a236e42b4a87c544a22a94ae95a6910", - "symbol": "MCONTENT", - "decimals": 6, - "name": "MContent", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x799e1cf88a236e42b4a87c544a22a94ae95a6910.png", - "aggregators": ["PancakeCoinMarketCap", "Socket", "Rubic", "Rango"], - "occurrences": 4 - }, - "0xb5bea8a26d587cf665f2d78f077cca3c7f6341bd": { - "address": "0xb5bea8a26d587cf665f2d78f077cca3c7f6341bd", - "symbol": "POLIS", - "decimals": 18, - "name": "Polis", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xb5bea8a26d587cf665f2d78f077cca3c7f6341bd.png", - "aggregators": [ - "PancakeCoinMarketCap", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 4 - }, - "0x46d502fac9aea7c5bc7b13c8ec9d02378c33d36f": { - "address": "0x46d502fac9aea7c5bc7b13c8ec9d02378c33d36f", - "symbol": "WSPP", - "decimals": 0, - "name": "Wolf Safe Poor People", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x46d502fac9aea7c5bc7b13c8ec9d02378c33d36f.png", - "aggregators": ["PancakeCoinMarketCap", "1inch", "Rubic", "Rango"], - "occurrences": 4 - }, - "0x8850d2c68c632e3b258e612abaa8fada7e6958e5": { - "address": "0x8850d2c68c632e3b258e612abaa8fada7e6958e5", - "symbol": "PIG", - "decimals": 9, - "name": "Pig Token", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x8850d2c68c632e3b258e612abaa8fada7e6958e5.png", - "aggregators": ["PancakeCoinMarketCap", "1inch", "Rubic", "Rango"], - "occurrences": 4 - }, - "0x84f70be4deb029d5f8aacbeacc74c4dc10737342": { - "address": "0x84f70be4deb029d5f8aacbeacc74c4dc10737342", - "symbol": "GCB", - "decimals": 18, - "name": "Global Commercial Business", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x84f70be4deb029d5f8aacbeacc74c4dc10737342.png", - "aggregators": [ - "PancakeCoinMarketCap", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 4 - }, - "0x3e5d4f8aee0d9b3082d5f6da5d6e225d17ba9ea0": { - "address": "0x3e5d4f8aee0d9b3082d5f6da5d6e225d17ba9ea0", - "symbol": "UAI", - "decimals": 18, - "name": "UnifAI", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x3e5d4f8aee0d9b3082d5f6da5d6e225d17ba9ea0.png", - "aggregators": [ - "PancakeExtended", - "LiFi", - "Rubic", - "Squid", - "Rango" - ], - "occurrences": 5 - }, - "0x41df31ff0a7c35eb9b12752f2a5c87c3a9c109f8": { - "address": "0x41df31ff0a7c35eb9b12752f2a5c87c3a9c109f8", - "symbol": "CPEN", - "decimals": 18, - "name": "cPen", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x41df31ff0a7c35eb9b12752f2a5c87c3a9c109f8.png", - "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0x7528bd0f620d1568c307cc8d5db481a29e8d4e37": { - "address": "0x7528bd0f620d1568c307cc8d5db481a29e8d4e37", - "symbol": "P33L", - "decimals": 18, - "name": "THE P33L", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x7528bd0f620d1568c307cc8d5db481a29e8d4e37.png", - "aggregators": ["PancakeExtended", "Socket", "Rubic", "Rango"], - "occurrences": 4 - }, - "0xc703da39ae3b9db67c207c7bad8100e1afdc0f9c": { - "address": "0xc703da39ae3b9db67c207c7bad8100e1afdc0f9c", - "symbol": "FRGX", - "decimals": 18, - "name": "FRGX Finance", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xc703da39ae3b9db67c207c7bad8100e1afdc0f9c.png", - "aggregators": [ - "PancakeCoinMarketCap", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 4 - }, - "0x77734e70b6e88b4d82fe632a168edf6e700912b6": { - "address": "0x77734e70b6e88b4d82fe632a168edf6e700912b6", - "symbol": "ASBNB", - "decimals": 18, - "name": "Aster Staked BNB", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x77734e70b6e88b4d82fe632a168edf6e700912b6.png", - "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0x924fa68a0fc644485b8df8abfa0a41c2e7744444": { - "address": "0x924fa68a0fc644485b8df8abfa0a41c2e7744444", - "symbol": "币安人生", - "decimals": 18, - "name": "币安人生", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x924fa68a0fc644485b8df8abfa0a41c2e7744444.png", - "aggregators": ["PancakeExtended", "LiFi", "Rubic", "Rango"], - "occurrences": 4 - }, - "0x7ca058309053f90b39bfc58de1eda2a89e9c03a8": { - "address": "0x7ca058309053f90b39bfc58de1eda2a89e9c03a8", - "symbol": "ARCAS", - "decimals": 18, - "name": "Arcas", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x7ca058309053f90b39bfc58de1eda2a89e9c03a8.png", - "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0x7c33d9c9685408645486497c708ab491402e0886": { - "address": "0x7c33d9c9685408645486497c708ab491402e0886", - "symbol": "BTE", - "decimals": 18, - "name": "Betero", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x7c33d9c9685408645486497c708ab491402e0886.png", - "aggregators": [ - "PancakeCoinMarketCap", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 4 - }, - "0x2bf83d080d8bc4715984e75e5b3d149805d11751": { - "address": "0x2bf83d080d8bc4715984e75e5b3d149805d11751", - "symbol": "VC", - "decimals": 18, - "name": "VinuChain", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x2bf83d080d8bc4715984e75e5b3d149805d11751.png", - "aggregators": [ - "PancakeCoinMarketCap", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 4 - }, - "0x3aee7602b612de36088f3ffed8c8f10e86ebf2bf": { - "address": "0x3aee7602b612de36088f3ffed8c8f10e86ebf2bf", - "symbol": "BANK", - "decimals": 18, - "name": "Lorenzo Governance Token", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x3aee7602b612de36088f3ffed8c8f10e86ebf2bf.png", - "aggregators": ["PancakeExtended", "LiFi", "Socket", "Rubic"], - "occurrences": 4 - }, - "0x062ca2d2f1af8c203fa3ad5298fd6faa4e44e897": { - "address": "0x062ca2d2f1af8c203fa3ad5298fd6faa4e44e897", - "symbol": "O4DX", - "decimals": 18, - "name": "OrangeDX", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x062ca2d2f1af8c203fa3ad5298fd6faa4e44e897.png", - "aggregators": [ - "PancakeCoinMarketCap", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 4 - }, - "0x998305efdc264b9674178899fffbb44a47134a76": { - "address": "0x998305efdc264b9674178899fffbb44a47134a76", - "symbol": "GMRX", - "decimals": 18, - "name": "Gaimin", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x998305efdc264b9674178899fffbb44a47134a76.png", - "aggregators": [ - "PancakeCoinMarketCap", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 4 - }, - "0x6f3aaf802f57d045efdd2ac9c06d8879305542af": { - "address": "0x6f3aaf802f57d045efdd2ac9c06d8879305542af", - "symbol": "XPX", - "decimals": 6, - "name": "Sirius Chain", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x6f3aaf802f57d045efdd2ac9c06d8879305542af.png", - "aggregators": [ - "PancakeCoinMarketCap", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 4 - }, - "0x509a51394cc4d6bb474fefb2994b8975a55a6e79": { - "address": "0x509a51394cc4d6bb474fefb2994b8975a55a6e79", - "symbol": "FUFU", - "decimals": 18, - "name": "Fufu", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x509a51394cc4d6bb474fefb2994b8975a55a6e79.png", - "aggregators": [ - "PancakeCoinMarketCap", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 4 - }, - "0xb1e998b346dddacd06f01db50645be52dafb93db": { - "address": "0xb1e998b346dddacd06f01db50645be52dafb93db", - "symbol": "AAST", - "decimals": 18, - "name": "AASToken", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xb1e998b346dddacd06f01db50645be52dafb93db.png", - "aggregators": [ - "PancakeCoinMarketCap", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 4 - }, - "0xeccbb861c0dda7efd964010085488b69317e4444": { - "address": "0xeccbb861c0dda7efd964010085488b69317e4444", - "symbol": "龙虾", - "decimals": 18, - "name": "龙虾 (Lobster)", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xeccbb861c0dda7efd964010085488b69317e4444.png", - "aggregators": ["CoinGecko", "Rubic", "Squid", "Rango"], - "occurrences": 4 - }, - "0x0de08c1abe5fb86dd7fd2ac90400ace305138d5b": { - "address": "0x0de08c1abe5fb86dd7fd2ac90400ace305138d5b", - "symbol": "IDNA", - "decimals": 18, - "name": "Idena", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x0de08c1abe5fb86dd7fd2ac90400ace305138d5b.png", - "aggregators": [ - "PancakeCoinMarketCap", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 4 - }, - "0x55ad16bd573b3365f43a9daeb0cc66a73821b4a5": { - "address": "0x55ad16bd573b3365f43a9daeb0cc66a73821b4a5", - "symbol": "AIOT", - "decimals": 18, - "name": "OKZOO", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x55ad16bd573b3365f43a9daeb0cc66a73821b4a5.png", - "aggregators": ["PancakeExtended", "Rubic", "Sonarwatch"], - "occurrences": 3 - }, - "0xb5761f36fdfe2892f1b54bc8ee8babb2a1b698d3": { - "address": "0xb5761f36fdfe2892f1b54bc8ee8babb2a1b698d3", - "symbol": "RICE", - "decimals": 18, - "name": "RICE AI", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xb5761f36fdfe2892f1b54bc8ee8babb2a1b698d3.png", - "aggregators": ["PancakeExtended", "LiFi", "Rubic", "Rango"], - "occurrences": 4 - }, - "0xaf44a1e76f56ee12adbb7ba8acd3cbd474888122": { - "address": "0xaf44a1e76f56ee12adbb7ba8acd3cbd474888122", - "symbol": "DUSD", - "decimals": 6, - "name": "StandX DUSD", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xaf44a1e76f56ee12adbb7ba8acd3cbd474888122.png", - "aggregators": ["Metamask", "Rubic", "Squid", "Rango"], - "occurrences": 4 - }, - "0xcf640fdf9b3d9e45cbd69fda91d7e22579c14444": { - "address": "0xcf640fdf9b3d9e45cbd69fda91d7e22579c14444", - "symbol": "GORILLA", - "decimals": 18, - "name": "gorilla", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xcf640fdf9b3d9e45cbd69fda91d7e22579c14444.png", - "aggregators": ["PancakeExtended", "1inch", "Rubic", "Rango"], - "occurrences": 4 - }, - "0x5dbde81fce337ff4bcaaee4ca3466c00aecae274": { - "address": "0x5dbde81fce337ff4bcaaee4ca3466c00aecae274", - "symbol": "AGT", - "decimals": 18, - "name": "Alaya AI", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x5dbde81fce337ff4bcaaee4ca3466c00aecae274.png", - "aggregators": ["PancakeExtended", "Rubic", "Sonarwatch"], - "occurrences": 3 - }, - "0xf19c362d779ade83d4f8708c6c36297b6ad57528": { - "address": "0xf19c362d779ade83d4f8708c6c36297b6ad57528", - "symbol": "COINBANK", - "decimals": 18, - "name": "CoinBank", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xf19c362d779ade83d4f8708c6c36297b6ad57528.png", - "aggregators": ["CoinGecko", "Rubic", "Squid", "Rango"], - "occurrences": 4 - }, - "0xf3147987a00d35eecc10c731269003ca093740ca": { - "address": "0xf3147987a00d35eecc10c731269003ca093740ca", - "symbol": "MAT", - "decimals": 18, - "name": "My Master War", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xf3147987a00d35eecc10c731269003ca093740ca.png", - "aggregators": [ - "PancakeCoinMarketCap", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 4 - }, - "0x11a31b833d43853f8869c9eec17f60e3b4d2a753": { - "address": "0x11a31b833d43853f8869c9eec17f60e3b4d2a753", - "symbol": "BIOFI", - "decimals": 18, - "name": "Biometric Financial", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x11a31b833d43853f8869c9eec17f60e3b4d2a753.png", - "aggregators": [ - "PancakeCoinMarketCap", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 4 - }, - "0xe94db607eba8f76a377d9bcc327c9856ed90fbde": { - "address": "0xe94db607eba8f76a377d9bcc327c9856ed90fbde", - "symbol": "NINA", - "decimals": 9, - "name": "Nina", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xe94db607eba8f76a377d9bcc327c9856ed90fbde.png", - "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0xd6b48ccf41a62eb3891e58d0f006b19b01d50cca": { - "address": "0xd6b48ccf41a62eb3891e58d0f006b19b01d50cca", - "symbol": "SERAPH", - "decimals": 18, - "name": "Seraph", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xd6b48ccf41a62eb3891e58d0f006b19b01d50cca.png", - "aggregators": ["PancakeExtended", "Socket", "Rubic", "Sonarwatch"], - "occurrences": 4 - }, - "0xa2c17a6fd0afe27afa2630a7528bc673089e6b8d": { - "address": "0xa2c17a6fd0afe27afa2630a7528bc673089e6b8d", - "symbol": "CZGOAT", - "decimals": 9, - "name": "CZ THE GOAT", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xa2c17a6fd0afe27afa2630a7528bc673089e6b8d.png", - "aggregators": [ - "PancakeCoinMarketCap", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 4 - }, - "0xb8fd1438ca2af47b940fff34d13cf58c64ac96a1": { - "address": "0xb8fd1438ca2af47b940fff34d13cf58c64ac96a1", - "symbol": "SFX", - "decimals": 18, - "name": "Space Frog X", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xb8fd1438ca2af47b940fff34d13cf58c64ac96a1.png", - "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0x351da1e7500aba1d168b9435dce73415718d212f": { - "address": "0x351da1e7500aba1d168b9435dce73415718d212f", - "symbol": "FPS", - "decimals": 12, - "name": "web3war", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x351da1e7500aba1d168b9435dce73415718d212f.png", - "aggregators": [ - "PancakeCoinMarketCap", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 4 - }, - "0x2f8a339b5889ffac4c5a956787cda593b3c36867": { - "address": "0x2f8a339b5889ffac4c5a956787cda593b3c36867", - "symbol": "CMC20", - "decimals": 18, - "name": "CoinMarketCap 20 Index DTF", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x2f8a339b5889ffac4c5a956787cda593b3c36867.png", - "aggregators": ["PancakeExtended", "LiFi", "Rubic", "Rango"], - "occurrences": 4 - }, - "0xcbd9f6d748dd3d19416f8914528a65c7838e27d8": { - "address": "0xcbd9f6d748dd3d19416f8914528a65c7838e27d8", - "symbol": "RGAME", - "decimals": 18, - "name": "R Games", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xcbd9f6d748dd3d19416f8914528a65c7838e27d8.png", - "aggregators": [ - "PancakeCoinMarketCap", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 4 - }, - "0x1e34fcc9a67e05d4beed8c6a70f98c3e4d1e1e96": { - "address": "0x1e34fcc9a67e05d4beed8c6a70f98c3e4d1e1e96", - "symbol": "LAND", - "decimals": 18, - "name": "Outlanders", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x1e34fcc9a67e05d4beed8c6a70f98c3e4d1e1e96.png", - "aggregators": [ - "PancakeCoinMarketCap", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 4 - }, - "0x9daf1a070f882d870a8d58d7a27041c752f3b88d": { - "address": "0x9daf1a070f882d870a8d58d7a27041c752f3b88d", - "symbol": "MHORSE", - "decimals": 18, - "name": "MHORSE", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x9daf1a070f882d870a8d58d7a27041c752f3b88d.png", - "aggregators": ["CoinGecko", "Rubic", "Squid", "Rango"], - "occurrences": 4 - }, - "0xd5d0322b6bab6a762c79f8c81a0b674778e13aed": { - "address": "0xd5d0322b6bab6a762c79f8c81a0b674778e13aed", - "symbol": "FIRO", - "decimals": 8, - "name": "Binance-Peg Firo", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xd5d0322b6bab6a762c79f8c81a0b674778e13aed.png", - "aggregators": [ - "PancakeCoinMarketCap", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 4 - }, - "0xcae3d82d63e2b0094bc959752993d3d3743b5d08": { - "address": "0xcae3d82d63e2b0094bc959752993d3d3743b5d08", - "symbol": "BTAF", - "decimals": 18, - "name": "BTAF token", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xcae3d82d63e2b0094bc959752993d3d3743b5d08.png", - "aggregators": [ - "PancakeCoinMarketCap", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 4 - }, - "0x997a58129890bbda032231a52ed1ddc845fc18e1": { - "address": "0x997a58129890bbda032231a52ed1ddc845fc18e1", - "symbol": "SIREN", - "decimals": 18, - "name": "SIREN", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x997a58129890bbda032231a52ed1ddc845fc18e1.png", - "aggregators": ["PancakeExtended", "LiFi", "Rubic", "Squid"], - "occurrences": 4 - }, - "0x76e9b54b49739837be8ad10c3687fc6b543de852": { - "address": "0x76e9b54b49739837be8ad10c3687fc6b543de852", - "symbol": "KLINK", - "decimals": 18, - "name": "Klink Finance", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x76e9b54b49739837be8ad10c3687fc6b543de852.png", - "aggregators": ["PancakeExtended", "LiFi", "Rubic", "Rango"], - "occurrences": 4 - }, - "0xc9ad421f96579ace066ec188a7bba472fb83017f": { - "address": "0xc9ad421f96579ace066ec188a7bba472fb83017f", - "symbol": "BOOK", - "decimals": 18, - "name": "Book of Binance", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xc9ad421f96579ace066ec188a7bba472fb83017f.png", - "aggregators": ["CoinGecko", "LiFi", "Rubic", "Rango"], - "occurrences": 4 - }, - "0xae28714390e95b8df1ef847c58aeac23ed457702": { - "address": "0xae28714390e95b8df1ef847c58aeac23ed457702", - "symbol": "X", - "decimals": 18, - "name": "GIBX Swap", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xae28714390e95b8df1ef847c58aeac23ed457702.png", - "aggregators": [ - "PancakeCoinMarketCap", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 4 - }, - "0x7ec43cf65f1663f820427c62a5780b8f2e25593a": { - "address": "0x7ec43cf65f1663f820427c62a5780b8f2e25593a", - "symbol": "LAB", - "decimals": 18, - "name": "LAB", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x7ec43cf65f1663f820427c62a5780b8f2e25593a.png", - "aggregators": ["CoinGecko", "LiFi", "Rubic", "Rango"], - "occurrences": 4 - }, - "0xcefc79c16cd62cf0c35c1d16d23b9f266f2eda51": { - "address": "0xcefc79c16cd62cf0c35c1d16d23b9f266f2eda51", - "symbol": "CATTON", - "decimals": 18, - "name": "Catton AI", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xcefc79c16cd62cf0c35c1d16d23b9f266f2eda51.png", - "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0xe7875e08e3c85dd49d4ff52a7d4c3a9c75c8a6a1": { - "address": "0xe7875e08e3c85dd49d4ff52a7d4c3a9c75c8a6a1", - "symbol": "EDN", - "decimals": 18, - "name": "Eden", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xe7875e08e3c85dd49d4ff52a7d4c3a9c75c8a6a1.png", - "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0x6cf271270662be1c4fc1b7bb7d7d7fc60cc19125": { - "address": "0x6cf271270662be1c4fc1b7bb7d7d7fc60cc19125", - "symbol": "KUNCI", - "decimals": 6, - "name": "Kunci Coin", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x6cf271270662be1c4fc1b7bb7d7d7fc60cc19125.png", - "aggregators": [ - "PancakeCoinMarketCap", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 4 - }, - "0x73ffdf2d2afb3def5b10bf967da743f2306a51db": { - "address": "0x73ffdf2d2afb3def5b10bf967da743f2306a51db", - "symbol": "AGS", - "decimals": 18, - "name": "Collector Coin", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x73ffdf2d2afb3def5b10bf967da743f2306a51db.png", - "aggregators": [ - "PancakeCoinMarketCap", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 4 - }, - "0x917af46b3c3c6e1bb7286b9f59637fb7c65851fb": { - "address": "0x917af46b3c3c6e1bb7286b9f59637fb7c65851fb", - "symbol": "ASUSDF", - "decimals": 18, - "name": "Astherus Staked USDF", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x917af46b3c3c6e1bb7286b9f59637fb7c65851fb.png", - "aggregators": ["PancakeExtended", "LiFi", "Rubic", "Sonarwatch"], - "occurrences": 4 - }, - "0xcaae2a2f939f51d97cdfa9a86e79e3f085b799f3": { - "address": "0xcaae2a2f939f51d97cdfa9a86e79e3f085b799f3", - "symbol": "TUT", - "decimals": 18, - "name": "Tutorial", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xcaae2a2f939f51d97cdfa9a86e79e3f085b799f3.png", - "aggregators": ["PancakeExtended", "LiFi", "Rubic", "Sonarwatch"], - "occurrences": 4 - }, - "0x383094a91ef2767eed2b063ea40465670bf1c83f": { - "address": "0x383094a91ef2767eed2b063ea40465670bf1c83f", - "symbol": "LMCSWAP", - "decimals": 18, - "name": "Limocoin Swap", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x383094a91ef2767eed2b063ea40465670bf1c83f.png", - "aggregators": [ - "PancakeCoinMarketCap", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 4 - }, - "0x6cfffa5bfd4277a04d83307feedfe2d18d944dd2": { - "address": "0x6cfffa5bfd4277a04d83307feedfe2d18d944dd2", - "symbol": "ALEO", - "decimals": 6, - "name": "Aleo", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x6cfffa5bfd4277a04d83307feedfe2d18d944dd2.png", - "aggregators": [ - "PancakeExtended", - "LiFi", - "Rubic", - "Squid", - "Rango" - ], - "occurrences": 5 - }, - "0x617cab4aaae1f8dfb3ee138698330776a1e1b324": { - "address": "0x617cab4aaae1f8dfb3ee138698330776a1e1b324", - "symbol": "ARTY", - "decimals": 6, - "name": "Artyfact", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x617cab4aaae1f8dfb3ee138698330776a1e1b324.png", - "aggregators": [ - "PancakeCoinMarketCap", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 4 - }, - "0x9d70a3ee3079a6fa2bb16591414678b7ad91f0b5": { - "address": "0x9d70a3ee3079a6fa2bb16591414678b7ad91f0b5", - "symbol": "MEPAD", - "decimals": 18, - "name": "MemePad", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x9d70a3ee3079a6fa2bb16591414678b7ad91f0b5.png", - "aggregators": [ - "PancakeCoinMarketCap", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 4 - }, - "0x15d1dafbcc97f606bd02120d170fdac33b1a4a86": { - "address": "0x15d1dafbcc97f606bd02120d170fdac33b1a4a86", - "symbol": "CBP", - "decimals": 6, - "name": "CashBackPro", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x15d1dafbcc97f606bd02120d170fdac33b1a4a86.png", - "aggregators": [ - "PancakeCoinMarketCap", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 4 - }, - "0xd82544bf0dfe8385ef8fa34d67e6e4940cc63e16": { - "address": "0xd82544bf0dfe8385ef8fa34d67e6e4940cc63e16", - "symbol": "MYX", - "decimals": 18, - "name": "MYX", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xd82544bf0dfe8385ef8fa34d67e6e4940cc63e16.png", - "aggregators": [ - "PancakeExtended", - "1inch", - "LiFi", - "Rubic", - "Rango" - ], - "occurrences": 5 - }, - "0x8b9abdd229ec0c4a28e01b91aacdc5daafc25c2b": { - "address": "0x8b9abdd229ec0c4a28e01b91aacdc5daafc25c2b", - "symbol": "STAR10", - "decimals": 18, - "name": "Ronaldinho Coin", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x8b9abdd229ec0c4a28e01b91aacdc5daafc25c2b.png", - "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0x54523d5fb56803bac758e8b10b321748a77ae9e9": { - "address": "0x54523d5fb56803bac758e8b10b321748a77ae9e9", - "symbol": "DREAMS", - "decimals": 18, - "name": "Dreams Quest", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x54523d5fb56803bac758e8b10b321748a77ae9e9.png", - "aggregators": [ - "PancakeCoinMarketCap", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 4 - }, - "0xbe2b6c5e31f292009f495ddbda88e28391c9815e": { - "address": "0xbe2b6c5e31f292009f495ddbda88e28391c9815e", - "symbol": "LGO", - "decimals": 18, - "name": "Level Governance", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xbe2b6c5e31f292009f495ddbda88e28391c9815e.png", - "aggregators": ["PancakeExtended", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0x3867564f3b5ad2ddb53b317ba64cddef9e1eb54d": { - "address": "0x3867564f3b5ad2ddb53b317ba64cddef9e1eb54d", - "symbol": "AFC", - "decimals": 18, - "name": "Accel Finance Coin", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x3867564f3b5ad2ddb53b317ba64cddef9e1eb54d.png", - "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0x6397de0f9aedc0f7a8fa8b438dde883b9c201010": { - "address": "0x6397de0f9aedc0f7a8fa8b438dde883b9c201010", - "symbol": "SIN", - "decimals": 18, - "name": "Sinverse", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x6397de0f9aedc0f7a8fa8b438dde883b9c201010.png", - "aggregators": [ - "PancakeCoinMarketCap", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 4 - }, - "0x87a2d9a9a6b2d61b2a57798f1b4b2ddd19458fb6": { - "address": "0x87a2d9a9a6b2d61b2a57798f1b4b2ddd19458fb6", - "symbol": "KDG", - "decimals": 18, - "name": "KingdomStarter", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x87a2d9a9a6b2d61b2a57798f1b4b2ddd19458fb6.png", - "aggregators": [ - "PancakeCoinMarketCap", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 4 - }, - "0x9d6db6382444b70a51307a4291188f60d4eef205": { - "address": "0x9d6db6382444b70a51307a4291188f60d4eef205", - "symbol": "BABYPEPE", - "decimals": 9, - "name": "Baby Pepe", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x9d6db6382444b70a51307a4291188f60d4eef205.png", - "aggregators": ["PancakeCoinMarketCap", "Socket", "Rubic", "Rango"], - "occurrences": 4 - }, - "0x8dedf84656fa932157e27c060d8613824e7979e3": { - "address": "0x8dedf84656fa932157e27c060d8613824e7979e3", - "symbol": "STBL", - "decimals": 18, - "name": "STBL_Token - STBL Governance Token", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x8dedf84656fa932157e27c060d8613824e7979e3.png", - "aggregators": ["PancakeExtended", "1inch", "LiFi", "Rubic"], - "occurrences": 4 - }, - "0x780207b8c0fdc32cf60e957415bfa1f2d4d9718c": { - "address": "0x780207b8c0fdc32cf60e957415bfa1f2d4d9718c", - "symbol": "CAS", - "decimals": 18, - "name": "CASHAA", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x780207b8c0fdc32cf60e957415bfa1f2d4d9718c.png", - "aggregators": [ - "PancakeCoinMarketCap", - "Rubic", - "Rango", - "Sonarwatch", - "BinanceDex" - ], - "occurrences": 5 - }, - "0x69bfa36d50d92e8985d27e6aa6e685c0325ce7b4": { - "address": "0x69bfa36d50d92e8985d27e6aa6e685c0325ce7b4", - "symbol": "CTG", - "decimals": 18, - "name": "Cryptorg", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x69bfa36d50d92e8985d27e6aa6e685c0325ce7b4.png", - "aggregators": [ - "PancakeCoinMarketCap", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 4 - }, - "0xc7091aa18598b87588e37501b6ce865263cd67ce": { - "address": "0xc7091aa18598b87588e37501b6ce865263cd67ce", - "symbol": "CCAKE", - "decimals": 18, - "name": "CheesecakeSwap", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xc7091aa18598b87588e37501b6ce865263cd67ce.png", - "aggregators": [ - "PancakeCoinMarketCap", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 4 - }, - "0x7565ab68d3f9dadff127f864103c8c706cf28235": { - "address": "0x7565ab68d3f9dadff127f864103c8c706cf28235", - "symbol": "TFI", - "decimals": 18, - "name": "TrustFi Network", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x7565ab68d3f9dadff127f864103c8c706cf28235.png", - "aggregators": [ - "PancakeCoinMarketCap", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 4 - }, - "0x16153214e683018d5aa318864c8e692b66e16778": { - "address": "0x16153214e683018d5aa318864c8e692b66e16778", - "symbol": "PWAR", - "decimals": 18, - "name": "PolkaWar", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x16153214e683018d5aa318864c8e692b66e16778.png", - "aggregators": [ - "PancakeCoinMarketCap", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 4 - }, - "0x5f84ce30dc3cf7909101c69086c50de191895883": { - "address": "0x5f84ce30dc3cf7909101c69086c50de191895883", - "symbol": "VRT", - "decimals": 18, - "name": "Venus Reward", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x5f84ce30dc3cf7909101c69086c50de191895883.png", - "aggregators": ["PancakeExtended", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0x19a4866a85c652eb4a2ed44c42e4cb2863a62d51": { - "address": "0x19a4866a85c652eb4a2ed44c42e4cb2863a62d51", - "symbol": "HOD", - "decimals": 18, - "name": "HoDooi.com", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x19a4866a85c652eb4a2ed44c42e4cb2863a62d51.png", - "aggregators": [ - "PancakeCoinMarketCap", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 4 - }, - "0x330f4fe5ef44b4d0742fe8bed8ca5e29359870df": { - "address": "0x330f4fe5ef44b4d0742fe8bed8ca5e29359870df", - "symbol": "JADE", - "decimals": 18, - "name": "Jade Currency", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x330f4fe5ef44b4d0742fe8bed8ca5e29359870df.png", - "aggregators": [ - "PancakeCoinMarketCap", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 4 - }, - "0x235b6fe22b4642ada16d311855c49ce7de260841": { - "address": "0x235b6fe22b4642ada16d311855c49ce7de260841", - "symbol": "EDEN", - "decimals": 18, - "name": "Eden Token", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x235b6fe22b4642ada16d311855c49ce7de260841.png", - "aggregators": ["PancakeExtended", "LiFi", "Socket", "Rubic"], - "occurrences": 4 - }, - "0x9240c44ee90d058b0b17ababe0f74ab1a205ae04": { - "address": "0x9240c44ee90d058b0b17ababe0f74ab1a205ae04", - "symbol": "ENTS", - "decimals": 18, - "name": "Ents", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x9240c44ee90d058b0b17ababe0f74ab1a205ae04.png", - "aggregators": [ - "PancakeCoinMarketCap", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 4 - }, - "0xec91cc1c33d44fe13b42150d2f1dfbeb668aef2e": { - "address": "0xec91cc1c33d44fe13b42150d2f1dfbeb668aef2e", - "symbol": "AGO", - "decimals": 18, - "name": "ago", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xec91cc1c33d44fe13b42150d2f1dfbeb668aef2e.png", - "aggregators": [ - "PancakeCoinMarketCap", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 4 - }, - "0xd8047afecb86e44eff3add991b9f063ed4ca716b": { - "address": "0xd8047afecb86e44eff3add991b9f063ed4ca716b", - "symbol": "GGG", - "decimals": 18, - "name": "Good Games Guild", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xd8047afecb86e44eff3add991b9f063ed4ca716b.png", - "aggregators": ["PancakeCoinMarketCap", "LiFi", "Rubic", "Rango"], - "occurrences": 4 - }, - "0xec3422ef92b2fb59e84c8b02ba73f1fe84ed8d71": { - "address": "0xec3422ef92b2fb59e84c8b02ba73f1fe84ed8d71", - "symbol": "VDOGE", - "decimals": 8, - "name": "Venus DOGE", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xec3422ef92b2fb59e84c8b02ba73f1fe84ed8d71.png", - "aggregators": [ - "PancakeCoinMarketCap", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 4 - }, - "0x7b0409a3a3f79baa284035d48e1dfd581d7d7654": { - "address": "0x7b0409a3a3f79baa284035d48e1dfd581d7d7654", - "symbol": "RUPEE", - "decimals": 18, - "name": "HyruleSwap", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x7b0409a3a3f79baa284035d48e1dfd581d7d7654.png", - "aggregators": [ - "PancakeCoinMarketCap", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 4 - }, - "0x3051cfb958dcd408fba70256073adba943fdf552": { - "address": "0x3051cfb958dcd408fba70256073adba943fdf552", - "symbol": "FOC", - "decimals": 18, - "name": "TheForce Trade", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x3051cfb958dcd408fba70256073adba943fdf552.png", - "aggregators": [ - "PancakeCoinMarketCap", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 4 - }, - "0x13e1070e3a388e53ec35480ff494538f9ffc5b8d": { - "address": "0x13e1070e3a388e53ec35480ff494538f9ffc5b8d", - "symbol": "BRICKS", - "decimals": 9, - "name": "MyBricks", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x13e1070e3a388e53ec35480ff494538f9ffc5b8d.png", - "aggregators": [ - "PancakeCoinMarketCap", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 4 - }, - "0x1f39dd2bf5a27e2d4ed691dcf933077371777cb0": { - "address": "0x1f39dd2bf5a27e2d4ed691dcf933077371777cb0", - "symbol": "NORA", - "decimals": 18, - "name": "SnowCrash", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x1f39dd2bf5a27e2d4ed691dcf933077371777cb0.png", - "aggregators": [ - "PancakeCoinMarketCap", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 4 - }, - "0x602ba546a7b06e0fc7f58fd27eb6996ecc824689": { - "address": "0x602ba546a7b06e0fc7f58fd27eb6996ecc824689", - "symbol": "PINKSALE", - "decimals": 18, - "name": "PinkSale", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x602ba546a7b06e0fc7f58fd27eb6996ecc824689.png", - "aggregators": ["PancakeCoinMarketCap", "1inch", "Rubic", "Rango"], - "occurrences": 4 - }, - "0xc79d1fd14f514cd713b5ca43d288a782ae53eab2": { - "address": "0xc79d1fd14f514cd713b5ca43d288a782ae53eab2", - "symbol": "XLD", - "decimals": 18, - "name": "Xcel Defi", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xc79d1fd14f514cd713b5ca43d288a782ae53eab2.png", - "aggregators": [ - "PancakeCoinMarketCap", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 4 - }, - "0xf574ba6bde97cc09784e616ebaed432b4e896b49": { - "address": "0xf574ba6bde97cc09784e616ebaed432b4e896b49", - "symbol": "VPAD", - "decimals": 18, - "name": "VLaunch", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xf574ba6bde97cc09784e616ebaed432b4e896b49.png", - "aggregators": [ - "PancakeCoinMarketCap", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 4 - }, - "0x8717e80eff08f53a45b4a925009957e14860a8a8": { - "address": "0x8717e80eff08f53a45b4a925009957e14860a8a8", - "symbol": "BHO", - "decimals": 18, - "name": "BHO Network", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x8717e80eff08f53a45b4a925009957e14860a8a8.png", - "aggregators": [ - "PancakeCoinMarketCap", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 4 - }, - "0x5ca4e7294b14ea5745ee2a688990e0cb68503219": { - "address": "0x5ca4e7294b14ea5745ee2a688990e0cb68503219", - "symbol": "GRBE", - "decimals": 18, - "name": "Green Beli", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x5ca4e7294b14ea5745ee2a688990e0cb68503219.png", - "aggregators": [ - "PancakeCoinMarketCap", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 4 - }, - "0x68d10dfe87a838d63bbef6c9a0d0b44beb799dc1": { - "address": "0x68d10dfe87a838d63bbef6c9a0d0b44beb799dc1", - "symbol": "MTG", - "decimals": 18, - "name": "MagnetGold", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x68d10dfe87a838d63bbef6c9a0d0b44beb799dc1.png", - "aggregators": [ - "PancakeCoinMarketCap", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 4 - }, - "0x0fe178b9a471b3698cb6fcb4625df9a756a2c55c": { - "address": "0x0fe178b9a471b3698cb6fcb4625df9a756a2c55c", - "symbol": "STRIP", - "decimals": 18, - "name": "Strip Finance", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x0fe178b9a471b3698cb6fcb4625df9a756a2c55c.png", - "aggregators": [ - "PancakeCoinMarketCap", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 4 - }, - "0x57bc18f6177cdaffb34ace048745bc913a1b1b54": { - "address": "0x57bc18f6177cdaffb34ace048745bc913a1b1b54", - "symbol": "BTH", - "decimals": 18, - "name": "Bit Hotel", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x57bc18f6177cdaffb34ace048745bc913a1b1b54.png", - "aggregators": [ - "PancakeCoinMarketCap", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 4 - }, - "0x6067490d05f3cf2fdffc0e353b1f5fd6e5ccdf70": { - "address": "0x6067490d05f3cf2fdffc0e353b1f5fd6e5ccdf70", - "symbol": "MMPRO", - "decimals": 18, - "name": "Market Making Pro", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x6067490d05f3cf2fdffc0e353b1f5fd6e5ccdf70.png", - "aggregators": [ - "PancakeCoinMarketCap", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 4 - }, - "0xaffeabc20b2cafa80d2d7ff220ad37e4ec7541d7": { - "address": "0xaffeabc20b2cafa80d2d7ff220ad37e4ec7541d7", - "symbol": "LINKS", - "decimals": 18, - "name": "Links", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xaffeabc20b2cafa80d2d7ff220ad37e4ec7541d7.png", - "aggregators": [ - "PancakeCoinMarketCap", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 4 - }, - "0x4f745c0c7da552a348c384da1a5baeb28f2c607c": { - "address": "0x4f745c0c7da552a348c384da1a5baeb28f2c607c", - "symbol": "XPS", - "decimals": 18, - "name": "Xpansion Game", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x4f745c0c7da552a348c384da1a5baeb28f2c607c.png", - "aggregators": [ - "PancakeCoinMarketCap", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 4 - }, - "0x4ce5f6bf8e996ae54709c75865709aca5127dd54": { - "address": "0x4ce5f6bf8e996ae54709c75865709aca5127dd54", - "symbol": "AMT", - "decimals": 18, - "name": "Amateras", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x4ce5f6bf8e996ae54709c75865709aca5127dd54.png", - "aggregators": [ - "PancakeCoinMarketCap", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 4 - }, - "0xb850cac12ab85d4400db61ac78dc5fc2418b6868": { - "address": "0xb850cac12ab85d4400db61ac78dc5fc2418b6868", - "symbol": "CTP", - "decimals": 8, - "name": "Ctomorrow Platform", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xb850cac12ab85d4400db61ac78dc5fc2418b6868.png", - "aggregators": [ - "PancakeCoinMarketCap", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 4 - }, - "0x7a2277f34f275ded630deff758fbc818409ca36d": { - "address": "0x7a2277f34f275ded630deff758fbc818409ca36d", - "symbol": "OPTCM", - "decimals": 18, - "name": "Optimus", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x7a2277f34f275ded630deff758fbc818409ca36d.png", - "aggregators": [ - "PancakeCoinMarketCap", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 4 - }, - "0xb2ea51baa12c461327d12a2069d47b30e680b69d": { - "address": "0xb2ea51baa12c461327d12a2069d47b30e680b69d", - "symbol": "SMCW", - "decimals": 18, - "name": "Space Misfits", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xb2ea51baa12c461327d12a2069d47b30e680b69d.png", - "aggregators": [ - "PancakeCoinMarketCap", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 4 - }, - "0x9528cceb678b90daf02ca5ca45622d5cbaf58a30": { - "address": "0x9528cceb678b90daf02ca5ca45622d5cbaf58a30", - "symbol": "GCME", - "decimals": 9, - "name": "GoCryptoMe", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x9528cceb678b90daf02ca5ca45622d5cbaf58a30.png", - "aggregators": [ - "PancakeCoinMarketCap", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 4 - }, - "0xbe0d3526fc797583dada3f30bc390013062a048b": { - "address": "0xbe0d3526fc797583dada3f30bc390013062a048b", - "symbol": "PLN", - "decimals": 18, - "name": "PLEARN", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xbe0d3526fc797583dada3f30bc390013062a048b.png", - "aggregators": [ - "PancakeCoinMarketCap", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 4 - }, - "0x3b0e967ce7712ec68131a809db4f78ce9490e779": { - "address": "0x3b0e967ce7712ec68131a809db4f78ce9490e779", - "symbol": "SON", - "decimals": 18, - "name": "Souni", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x3b0e967ce7712ec68131a809db4f78ce9490e779.png", - "aggregators": [ - "PancakeCoinMarketCap", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 4 - }, - "0x8182ac1c5512eb67756a89c40fadb2311757bd32": { - "address": "0x8182ac1c5512eb67756a89c40fadb2311757bd32", - "symbol": "NTR", - "decimals": 18, - "name": "Nether", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x8182ac1c5512eb67756a89c40fadb2311757bd32.png", - "aggregators": [ - "PancakeCoinMarketCap", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 4 - }, - "0x9f3bcbe48e8b754f331dfc694a894e8e686ac31d": { - "address": "0x9f3bcbe48e8b754f331dfc694a894e8e686ac31d", - "symbol": "ACT", - "decimals": 18, - "name": "Acet", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x9f3bcbe48e8b754f331dfc694a894e8e686ac31d.png", - "aggregators": [ - "PancakeCoinMarketCap", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 4 - }, - "0xe8c93310af068aa50bd7bf0ebfa459df2a02ceba": { - "address": "0xe8c93310af068aa50bd7bf0ebfa459df2a02ceba", - "symbol": "MOON", - "decimals": 18, - "name": "HoneyMOON", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xe8c93310af068aa50bd7bf0ebfa459df2a02ceba.png", - "aggregators": [ - "PancakeCoinMarketCap", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 4 - }, - "0x36bfbb1d5b3c9b336f3d64976599b6020ca805f1": { - "address": "0x36bfbb1d5b3c9b336f3d64976599b6020ca805f1", - "symbol": "PSB", - "decimals": 18, - "name": "Planet Sandbox", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x36bfbb1d5b3c9b336f3d64976599b6020ca805f1.png", - "aggregators": [ - "PancakeCoinMarketCap", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 4 - }, - "0x83d8ea5a4650b68cd2b57846783d86df940f7458": { - "address": "0x83d8ea5a4650b68cd2b57846783d86df940f7458", - "symbol": "HUDI", - "decimals": 18, - "name": "Hudi", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x83d8ea5a4650b68cd2b57846783d86df940f7458.png", - "aggregators": [ - "PancakeCoinMarketCap", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 4 - }, - "0x31acfce536b824ad0739e8d7b27cefaa4b8e4673": { - "address": "0x31acfce536b824ad0739e8d7b27cefaa4b8e4673", - "symbol": "LKN", - "decimals": 18, - "name": "Lockness", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x31acfce536b824ad0739e8d7b27cefaa4b8e4673.png", - "aggregators": [ - "PancakeCoinMarketCap", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 4 - }, - "0x32f1518baace69e85b9e5ff844ebd617c52573ac": { - "address": "0x32f1518baace69e85b9e5ff844ebd617c52573ac", - "symbol": "DESU", - "decimals": 18, - "name": "Dexsport", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x32f1518baace69e85b9e5ff844ebd617c52573ac.png", - "aggregators": [ - "PancakeCoinMarketCap", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 4 - }, - "0x4c403b1879aa6a79ba9c599a393ccc5d9fd2e788": { - "address": "0x4c403b1879aa6a79ba9c599a393ccc5d9fd2e788", - "symbol": "AI", - "decimals": 9, - "name": "Artificial Intelligence", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x4c403b1879aa6a79ba9c599a393ccc5d9fd2e788.png", - "aggregators": ["PancakeCoinMarketCap", "Socket", "Rubic", "Rango"], - "occurrences": 4 - }, - "0xd2a3eec06719d5ac66248003b5488e02165dd2fa": { - "address": "0xd2a3eec06719d5ac66248003b5488e02165dd2fa", - "symbol": "PAXE", - "decimals": 18, - "name": "Paxe", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xd2a3eec06719d5ac66248003b5488e02165dd2fa.png", - "aggregators": [ - "PancakeCoinMarketCap", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 4 - }, - "0x9d0211c1b1a217a574cb55b0e9c367e56debeae0": { - "address": "0x9d0211c1b1a217a574cb55b0e9c367e56debeae0", - "symbol": "TURBO", - "decimals": 18, - "name": "TurboDEX", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x9d0211c1b1a217a574cb55b0e9c367e56debeae0.png", - "aggregators": [ - "PancakeCoinMarketCap", - "Socket", - "Rubic", - "Sonarwatch" - ], - "occurrences": 4 - }, - "0xab4e026a2f6f6265c29bbb4c565e66968e3d4962": { - "address": "0xab4e026a2f6f6265c29bbb4c565e66968e3d4962", - "symbol": "$MANIA", - "decimals": 18, - "name": "ScapesMania", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xab4e026a2f6f6265c29bbb4c565e66968e3d4962.png", - "aggregators": [ - "PancakeCoinMarketCap", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 4 - }, - "0x62694d43ccb9b64e76e38385d15e325c7712a735": { - "address": "0x62694d43ccb9b64e76e38385d15e325c7712a735", - "symbol": "WSM", - "decimals": 18, - "name": "Wall Street Memes", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x62694d43ccb9b64e76e38385d15e325c7712a735.png", - "aggregators": [ - "PancakeCoinMarketCap", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 4 - }, - "0xefa4cda666c6a1c03a38e4885266b019dec57662": { - "address": "0xefa4cda666c6a1c03a38e4885266b019dec57662", - "symbol": "ORBI", - "decimals": 18, - "name": "Orbital7", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xefa4cda666c6a1c03a38e4885266b019dec57662.png", - "aggregators": [ - "PancakeCoinMarketCap", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 4 - }, - "0x9200ce9cc03307e0d3a8da80dd0d416aea3e7a8b": { - "address": "0x9200ce9cc03307e0d3a8da80dd0d416aea3e7a8b", - "symbol": "BMX", - "decimals": 9, - "name": "BitMinerX", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x9200ce9cc03307e0d3a8da80dd0d416aea3e7a8b.png", - "aggregators": ["PancakeCoinMarketCap", "Socket", "Rubic", "Rango"], - "occurrences": 4 - }, - "0xe52a85f67d5a55a77d35193d963b7e1d94d1f2eb": { - "address": "0xe52a85f67d5a55a77d35193d963b7e1d94d1f2eb", - "symbol": "ATHX", - "decimals": 18, - "name": "Athena DexFi", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xe52a85f67d5a55a77d35193d963b7e1d94d1f2eb.png", - "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0x94498055eaf906aacdf939c53bfad73ea1a57edf": { - "address": "0x94498055eaf906aacdf939c53bfad73ea1a57edf", - "symbol": "SIR", - "decimals": 9, - "name": "Sir", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x94498055eaf906aacdf939c53bfad73ea1a57edf.png", - "aggregators": [ - "PancakeCoinMarketCap", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 4 - }, - "0xc4736f2611a62d545dc2d0d8f0766283617e6fcb": { - "address": "0xc4736f2611a62d545dc2d0d8f0766283617e6fcb", - "symbol": "GOAL", - "decimals": 18, - "name": "TopGoal", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xc4736f2611a62d545dc2d0d8f0766283617e6fcb.png", - "aggregators": [ - "PancakeCoinMarketCap", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 4 - }, - "0xbd6ceeef56985b608252c3651dd903a3fcc34910": { - "address": "0xbd6ceeef56985b608252c3651dd903a3fcc34910", - "symbol": "TWELVE", - "decimals": 18, - "name": "Twelve Zodiac", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xbd6ceeef56985b608252c3651dd903a3fcc34910.png", - "aggregators": [ - "PancakeCoinMarketCap", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 4 - }, - "0x208bf3e7da9639f1eaefa2de78c23396b0682025": { - "address": "0x208bf3e7da9639f1eaefa2de78c23396b0682025", - "symbol": "TAG", - "decimals": 18, - "name": "TAGGER", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x208bf3e7da9639f1eaefa2de78c23396b0682025.png", - "aggregators": ["PancakeExtended", "LiFi", "Rubic", "Squid"], - "occurrences": 4 - }, - "0xc4a1cc5ca8955a4650bdc109bddf110e33a1e344": { - "address": "0xc4a1cc5ca8955a4650bdc109bddf110e33a1e344", - "symbol": "RZUSD", - "decimals": 18, - "name": "RZUSD", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xc4a1cc5ca8955a4650bdc109bddf110e33a1e344.png", - "aggregators": ["CoinGecko", "Rubic", "Squid", "Rango"], - "occurrences": 4 - }, - "0x9959413ec3eb6cee73ad16e6cd531352c9ce816f": { - "address": "0x9959413ec3eb6cee73ad16e6cd531352c9ce816f", - "symbol": "ZAI", - "decimals": 18, - "name": "ZAYA", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x9959413ec3eb6cee73ad16e6cd531352c9ce816f.png", - "aggregators": ["CoinGecko", "Socket", "Rubic", "Rango"], - "occurrences": 4 - }, - "0xbb1106c7deb7cc60efa51391760b14aed8cb5bed": { - "address": "0xbb1106c7deb7cc60efa51391760b14aed8cb5bed", - "symbol": "CAR", - "decimals": 18, - "name": "Car", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xbb1106c7deb7cc60efa51391760b14aed8cb5bed.png", - "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0xfe020130ea312be3efe53ed11e9d4d254b165f49": { - "address": "0xfe020130ea312be3efe53ed11e9d4d254b165f49", - "symbol": "BSAI", - "decimals": 18, - "name": "Bitcoin Silver AI", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xfe020130ea312be3efe53ed11e9d4d254b165f49.png", - "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0x4fa7c69a7b69f8bc48233024d546bc299d6b03bf": { - "address": "0x4fa7c69a7b69f8bc48233024d546bc299d6b03bf", - "symbol": "QUQ", - "decimals": 18, - "name": "Quq", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x4fa7c69a7b69f8bc48233024d546bc299d6b03bf.png", - "aggregators": ["PancakeExtended", "Rubic", "Squid", "Sonarwatch"], - "occurrences": 4 - }, - "0xdfa86a77c9c99c2a1d33e56f42081b40fc3bdfcc": { - "address": "0xdfa86a77c9c99c2a1d33e56f42081b40fc3bdfcc", - "symbol": "POGAI", - "decimals": 18, - "name": "POGAI (BSC)", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xdfa86a77c9c99c2a1d33e56f42081b40fc3bdfcc.png", - "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0x0c8382719ef242cae2247e4decb2891fbf699818": { - "address": "0x0c8382719ef242cae2247e4decb2891fbf699818", - "symbol": "BDCA", - "decimals": 18, - "name": "BDCA Token", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x0c8382719ef242cae2247e4decb2891fbf699818.png", - "aggregators": ["Metamask", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0x6d99031eeff9e38f65f6e473897805992c9ca80d": { - "address": "0x6d99031eeff9e38f65f6e473897805992c9ca80d", - "symbol": "BNC", - "decimals": 18, - "name": "BNC", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x6d99031eeff9e38f65f6e473897805992c9ca80d.png", - "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0x0dcd05357b83bf100e668f152bf14bf96b679cd1": { - "address": "0x0dcd05357b83bf100e668f152bf14bf96b679cd1", - "symbol": "PEPEMUSK", - "decimals": 18, - "name": "PepeMusk", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x0dcd05357b83bf100e668f152bf14bf96b679cd1.png", - "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0x252817c5dd2e90bca477d5975724418cbca49b60": { - "address": "0x252817c5dd2e90bca477d5975724418cbca49b60", - "symbol": "NEZHA", - "decimals": 18, - "name": "NEZHA", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x252817c5dd2e90bca477d5975724418cbca49b60.png", - "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0x08e8ac8c4bca64503f774d2c40c911e8a3ffcc12": { - "address": "0x08e8ac8c4bca64503f774d2c40c911e8a3ffcc12", - "symbol": "TCC", - "decimals": 18, - "name": "TCC", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x08e8ac8c4bca64503f774d2c40c911e8a3ffcc12.png", - "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0xe93da37413d99b304f55ec3826032a40ae657f8d": { - "address": "0xe93da37413d99b304f55ec3826032a40ae657f8d", - "symbol": "MPS", - "decimals": 18, - "name": "Meupass", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xe93da37413d99b304f55ec3826032a40ae657f8d.png", - "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0xc9bfb93d75645c4681bb63794abf1acad44725e7": { - "address": "0xc9bfb93d75645c4681bb63794abf1acad44725e7", - "symbol": "TRIP", - "decimals": 18, - "name": "Trip ", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xc9bfb93d75645c4681bb63794abf1acad44725e7.png", - "aggregators": ["CoinGecko", "Rubic", "Squid", "Rango"], - "occurrences": 4 - }, - "0xb20568b5de8abe668062710d785d292f686541e6": { - "address": "0xb20568b5de8abe668062710d785d292f686541e6", - "symbol": "MGTAI", - "decimals": 18, - "name": "Moongate Fun", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xb20568b5de8abe668062710d785d292f686541e6.png", - "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0x3199a64bc8aabdfd9a3937a346cc59c3d81d8a9a": { - "address": "0x3199a64bc8aabdfd9a3937a346cc59c3d81d8a9a", - "symbol": "MUBARAKAH", - "decimals": 18, - "name": "Mubarakah", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x3199a64bc8aabdfd9a3937a346cc59c3d81d8a9a.png", - "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0x1ea3ffc43ee291a4373418286e9b001aebe14444": { - "address": "0x1ea3ffc43ee291a4373418286e9b001aebe14444", - "symbol": "🔶", - "decimals": 18, - "name": "🔶", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x1ea3ffc43ee291a4373418286e9b001aebe14444.png", - "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0x661af369690a8f5591cc0df7d581c83d1a6e4444": { - "address": "0x661af369690a8f5591cc0df7d581c83d1a6e4444", - "symbol": "4444", - "decimals": 18, - "name": "4444", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x661af369690a8f5591cc0df7d581c83d1a6e4444.png", - "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0x541eec85ef7452d16814d32ab555df33f0e4cead": { - "address": "0x541eec85ef7452d16814d32ab555df33f0e4cead", - "symbol": "BIAO", - "decimals": 18, - "name": "Biao on BNBChain", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x541eec85ef7452d16814d32ab555df33f0e4cead.png", - "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0xd438b82543fb109f34575c825edaeefc98f1f2b4": { - "address": "0xd438b82543fb109f34575c825edaeefc98f1f2b4", - "symbol": "ICECREAM", - "decimals": 18, - "name": "IceCream AI", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xd438b82543fb109f34575c825edaeefc98f1f2b4.png", - "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0xe819c2ae87f6bb322f1571f41c2fbd2c15fec40b": { - "address": "0xe819c2ae87f6bb322f1571f41c2fbd2c15fec40b", - "symbol": "ABC", - "decimals": 18, - "name": "ABC", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xe819c2ae87f6bb322f1571f41c2fbd2c15fec40b.png", - "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0x39df92f325938c610f4e4a04f7b756145ebe8804": { - "address": "0x39df92f325938c610f4e4a04f7b756145ebe8804", - "symbol": "DEXNET", - "decimals": 18, - "name": "DexNet", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x39df92f325938c610f4e4a04f7b756145ebe8804.png", - "aggregators": [ - "PancakeCoinMarketCap", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 4 - }, - "0x16120ef3d353224222b0a257ad15b5eaec0525c5": { - "address": "0x16120ef3d353224222b0a257ad15b5eaec0525c5", - "symbol": "BEBE", - "decimals": 6, - "name": "BEBE DOG", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x16120ef3d353224222b0a257ad15b5eaec0525c5.png", - "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0xa4e8399482ed8f3f7216263d94ab647b8cfc22ec": { - "address": "0xa4e8399482ed8f3f7216263d94ab647b8cfc22ec", - "symbol": "PLAYFI", - "decimals": 18, - "name": "PlayFi Studio", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xa4e8399482ed8f3f7216263d94ab647b8cfc22ec.png", - "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0x1865dc79a9e4b5751531099057d7ee801033d268": { - "address": "0x1865dc79a9e4b5751531099057d7ee801033d268", - "symbol": "LKI", - "decimals": 18, - "name": "Laika AI", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x1865dc79a9e4b5751531099057d7ee801033d268.png", - "aggregators": [ - "PancakeCoinMarketCap", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 4 - }, - "0x5f78f4bfcb2b43bc174fe16a69a13945cefa2978": { - "address": "0x5f78f4bfcb2b43bc174fe16a69a13945cefa2978", - "symbol": "XR", - "decimals": 18, - "name": "Xraders", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x5f78f4bfcb2b43bc174fe16a69a13945cefa2978.png", - "aggregators": [ - "PancakeCoinMarketCap", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 4 - }, - "0x9cc484ded7a7851a03f05a03e8d19eb5f5a73f20": { - "address": "0x9cc484ded7a7851a03f05a03e8d19eb5f5a73f20", - "symbol": "BKOK", - "decimals": 18, - "name": "BKOKFi", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x9cc484ded7a7851a03f05a03e8d19eb5f5a73f20.png", - "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0xd34984d7bff492dc3b2336eabd1758ce16ddfc2d": { - "address": "0xd34984d7bff492dc3b2336eabd1758ce16ddfc2d", - "symbol": "AVC", - "decimals": 18, - "name": "AVC", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xd34984d7bff492dc3b2336eabd1758ce16ddfc2d.png", - "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0x0c4ac8952c28e2e7fe22033c8d2f1263372d301d": { - "address": "0x0c4ac8952c28e2e7fe22033c8d2f1263372d301d", - "symbol": "APRA", - "decimals": 18, - "name": "Apraemio", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x0c4ac8952c28e2e7fe22033c8d2f1263372d301d.png", - "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0x014d05725f9d95bc371a184373fab4ed0bd577ee": { - "address": "0x014d05725f9d95bc371a184373fab4ed0bd577ee", - "symbol": "GOR", - "decimals": 18, - "name": "Gold Reserve", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x014d05725f9d95bc371a184373fab4ed0bd577ee.png", - "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0x4f2760b32720f013e900dc92f65480137391199b": { - "address": "0x4f2760b32720f013e900dc92f65480137391199b", - "symbol": "SUSD1+", - "decimals": 18, - "name": "sUSD1+", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x4f2760b32720f013e900dc92f65480137391199b.png", - "aggregators": ["PancakeExtended", "LiFi", "Rubic", "Rango"], - "occurrences": 4 - }, - "0xb142417eb86799115fe353675fca7eb8b59ee0df": { - "address": "0xb142417eb86799115fe353675fca7eb8b59ee0df", - "symbol": "MSAI", - "decimals": 18, - "name": "Miss AI", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xb142417eb86799115fe353675fca7eb8b59ee0df.png", - "aggregators": ["PancakeExtended", "LiFi", "Rubic", "Rango"], - "occurrences": 4 - }, - "0x503fa24b7972677f00c4618e5fbe237780c1df53": { - "address": "0x503fa24b7972677f00c4618e5fbe237780c1df53", - "symbol": "KILO", - "decimals": 18, - "name": "KiloEx", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x503fa24b7972677f00c4618e5fbe237780c1df53.png", - "aggregators": ["PancakeExtended", "LiFi", "Rubic", "Sonarwatch"], - "occurrences": 4 - }, - "0x6fd2854cd1b05b8eb5f6d25c714184a92fedaf4f": { - "address": "0x6fd2854cd1b05b8eb5f6d25c714184a92fedaf4f", - "symbol": "O-MEGAX", - "decimals": 18, - "name": "O-megax", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x6fd2854cd1b05b8eb5f6d25c714184a92fedaf4f.png", - "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0xaff713b62e642b25898e24d5be6561f863582144": { - "address": "0xaff713b62e642b25898e24d5be6561f863582144", - "symbol": "SURV", - "decimals": 18, - "name": "Survarium", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xaff713b62e642b25898e24d5be6561f863582144.png", - "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0x59fbd938047ed48707c71f886bf053ce18c377f8": { - "address": "0x59fbd938047ed48707c71f886bf053ce18c377f8", - "symbol": "CAMEL", - "decimals": 18, - "name": "CAMEL", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x59fbd938047ed48707c71f886bf053ce18c377f8.png", - "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0x36fdebeb2bb7538d5559f1d2968307e86eb04444": { - "address": "0x36fdebeb2bb7538d5559f1d2968307e86eb04444", - "symbol": "CYBERWISH", - "decimals": 18, - "name": "CyberWishing", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x36fdebeb2bb7538d5559f1d2968307e86eb04444.png", - "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0x002d0619eab294d21fef071f8b780cae7e999999": { - "address": "0x002d0619eab294d21fef071f8b780cae7e999999", - "symbol": "PLAYFUN", - "decimals": 18, - "name": "PLAYFUN", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x002d0619eab294d21fef071f8b780cae7e999999.png", - "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0x999e62f80d2c8ec8adfbf041b06239c6ae6d8492": { - "address": "0x999e62f80d2c8ec8adfbf041b06239c6ae6d8492", - "symbol": "ROOMCON", - "decimals": 18, - "name": "ROOMCON", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x999e62f80d2c8ec8adfbf041b06239c6ae6d8492.png", - "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0xb849c4d843769d42812fb600b1bcc8a6ba843466": { - "address": "0xb849c4d843769d42812fb600b1bcc8a6ba843466", - "symbol": "UPY", - "decimals": 18, - "name": "Upstarty", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xb849c4d843769d42812fb600b1bcc8a6ba843466.png", - "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0x072ef16a59bdc14e25f33ff4509870660548c107": { - "address": "0x072ef16a59bdc14e25f33ff4509870660548c107", - "symbol": "HATCH", - "decimals": 18, - "name": "Hatch", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x072ef16a59bdc14e25f33ff4509870660548c107.png", - "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0x97b17ac9a0c4bf03cf3b9ed2ee6e397fb319705b": { - "address": "0x97b17ac9a0c4bf03cf3b9ed2ee6e397fb319705b", - "symbol": "BNBULL", - "decimals": 9, - "name": "BNBULL", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x97b17ac9a0c4bf03cf3b9ed2ee6e397fb319705b.png", - "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0x9c8b5ca345247396bdfac0395638ca9045c6586e": { - "address": "0x9c8b5ca345247396bdfac0395638ca9045c6586e", - "symbol": "RWA", - "decimals": 18, - "name": "Allo", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x9c8b5ca345247396bdfac0395638ca9045c6586e.png", - "aggregators": ["PancakeExtended", "Socket", "Rubic", "Sonarwatch"], - "occurrences": 4 - }, - "0x0688977ae5b10075f46519063fd2f03adc052c1f": { - "address": "0x0688977ae5b10075f46519063fd2f03adc052c1f", - "symbol": "$5SCAPE", - "decimals": 6, - "name": "5th Scape", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x0688977ae5b10075f46519063fd2f03adc052c1f.png", - "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0xfc35bf79270bcad22ce7dd5651aa2435fce9b7c5": { - "address": "0xfc35bf79270bcad22ce7dd5651aa2435fce9b7c5", - "symbol": "BUSS", - "decimals": 18, - "name": "BOOKUSD SHARE", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xfc35bf79270bcad22ce7dd5651aa2435fce9b7c5.png", - "aggregators": ["CoinGecko", "LiFi", "Rubic", "Rango"], - "occurrences": 4 - }, - "0x058240afd2df517fad59baa3a39c6ae28cf37f32": { - "address": "0x058240afd2df517fad59baa3a39c6ae28cf37f32", - "symbol": "LTCIC", - "decimals": 18, - "name": "LTCIC", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x058240afd2df517fad59baa3a39c6ae28cf37f32.png", - "aggregators": ["PancakeExtended", "Rubic", "Squid", "Rango"], - "occurrences": 4 - }, - "0x5519a479da8ce3af7f373c16f14870bbeafda265": { - "address": "0x5519a479da8ce3af7f373c16f14870bbeafda265", - "symbol": "BNBUSD", - "decimals": 18, - "name": "bnb USD", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x5519a479da8ce3af7f373c16f14870bbeafda265.png", - "aggregators": ["PancakeExtended", "LiFi", "Rubic", "Rango"], - "occurrences": 4 - }, - "0x395603b95d721084c1917affdd06d78e559fa94d": { - "address": "0x395603b95d721084c1917affdd06d78e559fa94d", - "symbol": "SVSA", - "decimals": 18, - "name": "SavannaSurvival", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x395603b95d721084c1917affdd06d78e559fa94d.png", - "aggregators": ["PancakeExtended", "LiFi", "Rubic", "Rango"], - "occurrences": 4 - }, - "0x19c018e13cff682e729cc7b5fb68c8a641bf98a4": { - "address": "0x19c018e13cff682e729cc7b5fb68c8a641bf98a4", - "symbol": "BURN", - "decimals": 18, - "name": "BurnedFi", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x19c018e13cff682e729cc7b5fb68c8a641bf98a4.png", - "aggregators": ["PancakeCoinMarketCap", "Socket", "Rubic", "Rango"], - "occurrences": 4 - }, - "0xab725d0a10c3f24725c89f5765ae5794a26c1336": { - "address": "0xab725d0a10c3f24725c89f5765ae5794a26c1336", - "symbol": "$INR", - "decimals": 18, - "name": "Inery", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xab725d0a10c3f24725c89f5765ae5794a26c1336.png", - "aggregators": [ - "PancakeCoinMarketCap", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 4 - }, - "0x0733618ab62eeec815f2d1739b7a50bf9e74d8a2": { - "address": "0x0733618ab62eeec815f2d1739b7a50bf9e74d8a2", - "symbol": "PMG", - "decimals": 18, - "name": "Pomerium Ecosystem Token", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x0733618ab62eeec815f2d1739b7a50bf9e74d8a2.png", - "aggregators": [ - "PancakeCoinMarketCap", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 4 - }, - "0xd15c444f1199ae72795eba15e8c1db44e47abf62": { - "address": "0xd15c444f1199ae72795eba15e8c1db44e47abf62", - "symbol": "TENFI", - "decimals": 18, - "name": "TEN", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xd15c444f1199ae72795eba15e8c1db44e47abf62.png", - "aggregators": [ - "PancakeCoinMarketCap", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 4 - }, - "0x722cb8e411d40942c0f581b919ecce3e4d759602": { - "address": "0x722cb8e411d40942c0f581b919ecce3e4d759602", - "symbol": "OSEAN", - "decimals": 18, - "name": "Osean", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x722cb8e411d40942c0f581b919ecce3e4d759602.png", - "aggregators": ["PancakeCoinMarketCap", "Socket", "Rubic", "Rango"], - "occurrences": 4 - }, - "0x302dfaf2cdbe51a18d97186a7384e87cf599877d": { - "address": "0x302dfaf2cdbe51a18d97186a7384e87cf599877d", - "symbol": "LYN", - "decimals": 18, - "name": "Everlyn Token", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x302dfaf2cdbe51a18d97186a7384e87cf599877d.png", - "aggregators": ["PancakeExtended", "Rubic", "Squid", "Rango"], - "occurrences": 4 - }, - "0x99aa29ac023057951781dc5d1784e9a4c362ce23": { - "address": "0x99aa29ac023057951781dc5d1784e9a4c362ce23", - "symbol": "CWS", - "decimals": 18, - "name": "Seascape Crowns", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x99aa29ac023057951781dc5d1784e9a4c362ce23.png", - "aggregators": [ - "PancakeCoinMarketCap", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 4 - }, - "0x4027d91ecd3140e53ae743d657549adfeebb27ab": { - "address": "0x4027d91ecd3140e53ae743d657549adfeebb27ab", - "symbol": "CLEG", - "decimals": 18, - "name": "Chain of Legends", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x4027d91ecd3140e53ae743d657549adfeebb27ab.png", - "aggregators": [ - "PancakeCoinMarketCap", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 4 - }, - "0x85375d3e9c4a39350f1140280a8b0de6890a40e7": { - "address": "0x85375d3e9c4a39350f1140280a8b0de6890a40e7", - "symbol": "SIGMA", - "decimals": 18, - "name": "Sigma", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x85375d3e9c4a39350f1140280a8b0de6890a40e7.png", - "aggregators": ["PancakeExtended", "Socket", "Rubic", "Rango"], - "occurrences": 4 - }, - "0x9ec02756a559700d8d9e79ece56809f7bcc5dc27": { - "address": "0x9ec02756a559700d8d9e79ece56809f7bcc5dc27", - "symbol": "WHY", - "decimals": 18, - "name": "WHY", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x9ec02756a559700d8d9e79ece56809f7bcc5dc27.png", - "aggregators": ["PancakeExtended", "Rubic", "Squid", "Sonarwatch"], - "occurrences": 4 - }, - "0x450593bf7f2d7e559e38496cfb06bdce5e963795": { - "address": "0x450593bf7f2d7e559e38496cfb06bdce5e963795", - "symbol": "BCCOIN", - "decimals": 18, - "name": "BlackCardCoin", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x450593bf7f2d7e559e38496cfb06bdce5e963795.png", - "aggregators": [ - "PancakeCoinMarketCap", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 4 - }, - "0xa49fa5e8106e2d6d6a69e78df9b6a20aab9c4444": { - "address": "0xa49fa5e8106e2d6d6a69e78df9b6a20aab9c4444", - "symbol": "DONKEY", - "decimals": 18, - "name": "donkey", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xa49fa5e8106e2d6d6a69e78df9b6a20aab9c4444.png", - "aggregators": ["PancakeExtended", "LiFi", "Rubic", "Rango"], - "occurrences": 4 - }, - "0xaf48b7e315a52518cfbf7d96c455d9dfad94cb48": { - "address": "0xaf48b7e315a52518cfbf7d96c455d9dfad94cb48", - "symbol": "IOST", - "decimals": 18, - "name": "IOST", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xaf48b7e315a52518cfbf7d96c455d9dfad94cb48.png", - "aggregators": ["CoinGecko", "LiFi", "Rubic", "Rango"], - "occurrences": 4 - }, - "0x582a560b9f8eaa5b6c889d7674532bcd61f066ec": { - "address": "0x582a560b9f8eaa5b6c889d7674532bcd61f066ec", - "symbol": "HAI", - "decimals": 18, - "name": "HAI", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x582a560b9f8eaa5b6c889d7674532bcd61f066ec.png", - "aggregators": ["CoinGecko", "Socket", "Rubic", "Rango"], - "occurrences": 4 - }, - "0x2645d5f59d952ef2317c8e0aaa5a61c392ccd44d": { - "address": "0x2645d5f59d952ef2317c8e0aaa5a61c392ccd44d", - "symbol": "UFT", - "decimals": 18, - "name": "UniLend Finance Token", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x2645d5f59d952ef2317c8e0aaa5a61c392ccd44d.png", - "aggregators": ["PancakeCoinMarketCap", "Socket", "Rubic", "Rango"], - "occurrences": 4 - }, - "0x3c1b057cb7aceb4f2c4d889a29febec30a6a3146": { - "address": "0x3c1b057cb7aceb4f2c4d889a29febec30a6a3146", - "symbol": "PBR", - "decimals": 18, - "name": "PolkaBridge", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x3c1b057cb7aceb4f2c4d889a29febec30a6a3146.png", - "aggregators": ["CoinGecko", "Socket", "Rubic", "Sonarwatch"], - "occurrences": 4 - }, - "0x1e8150ea46e2a7fbb795459198fbb4b35715196c": { - "address": "0x1e8150ea46e2a7fbb795459198fbb4b35715196c", - "symbol": "SHIH", - "decimals": 18, - "name": "Shih Tzu", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x1e8150ea46e2a7fbb795459198fbb4b35715196c.png", - "aggregators": [ - "PancakeCoinMarketCap", - "Socket", - "Rubic", - "Sonarwatch" - ], - "occurrences": 4 - }, - "0x22648c12acd87912ea1710357b1302c6a4154ebc": { - "address": "0x22648c12acd87912ea1710357b1302c6a4154ebc", - "symbol": "WCHI", - "decimals": 8, - "name": "XAYA", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x22648c12acd87912ea1710357b1302c6a4154ebc.png", - "aggregators": [ - "PancakeCoinMarketCap", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 4 - }, - "0xcd7c5025753a49f1881b31c48caa7c517bb46308": { - "address": "0xcd7c5025753a49f1881b31c48caa7c517bb46308", - "symbol": "RAVEN", - "decimals": 18, - "name": "Raven Protocol", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xcd7c5025753a49f1881b31c48caa7c517bb46308.png", - "aggregators": [ - "PancakeCoinMarketCap", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 4 - }, - "0xde9a73272bc2f28189ce3c243e36fafda2485212": { - "address": "0xde9a73272bc2f28189ce3c243e36fafda2485212", - "symbol": "CAN", - "decimals": 18, - "name": "Channels", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xde9a73272bc2f28189ce3c243e36fafda2485212.png", - "aggregators": [ - "PancakeCoinMarketCap", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 4 - }, - "0xb75ba7ef520a5bd0a5d01108060be269642c4601": { - "address": "0xb75ba7ef520a5bd0a5d01108060be269642c4601", - "symbol": "TRADE", - "decimals": 18, - "name": "Polytrade", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xb75ba7ef520a5bd0a5d01108060be269642c4601.png", - "aggregators": ["CoinGecko", "LiFi", "Rubic", "Rango"], - "occurrences": 4 - }, - "0x410a56541bd912f9b60943fcb344f1e3d6f09567": { - "address": "0x410a56541bd912f9b60943fcb344f1e3d6f09567", - "symbol": "BTCMT", - "decimals": 18, - "name": "Minto", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x410a56541bd912f9b60943fcb344f1e3d6f09567.png", - "aggregators": [ - "PancakeCoinMarketCap", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 4 - }, - "0x94025780a1ab58868d9b2dbbb775f44b32e8e6e5": { - "address": "0x94025780a1ab58868d9b2dbbb775f44b32e8e6e5", - "symbol": "BETS", - "decimals": 18, - "name": "BetSwirl", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x94025780a1ab58868d9b2dbbb775f44b32e8e6e5.png", - "aggregators": [ - "PancakeCoinMarketCap", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 4 - }, - "0x0d3843f92d622468ba67df5a6a4149b484a75af3": { - "address": "0x0d3843f92d622468ba67df5a6a4149b484a75af3", - "symbol": "DINGER", - "decimals": 9, - "name": "Dinger Token", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x0d3843f92d622468ba67df5a6a4149b484a75af3.png", - "aggregators": ["PancakeCoinMarketCap", "Socket", "Rubic", "Rango"], - "occurrences": 4 - }, - "0x1785113910847770290f5f840b4c74fc46451201": { - "address": "0x1785113910847770290f5f840b4c74fc46451201", - "symbol": "WELT", - "decimals": 18, - "name": "Fabwelt", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x1785113910847770290f5f840b4c74fc46451201.png", - "aggregators": [ - "PancakeCoinMarketCap", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 4 - }, - "0x40fed5691e547885cabd7a2990de719dcc8497fc": { - "address": "0x40fed5691e547885cabd7a2990de719dcc8497fc", - "symbol": "SHA", - "decimals": 18, - "name": "Safe Haven", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x40fed5691e547885cabd7a2990de719dcc8497fc.png", - "aggregators": [ - "PancakeCoinMarketCap", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 4 - }, - "0x4b85a666dec7c959e88b97814e46113601b07e57": { - "address": "0x4b85a666dec7c959e88b97814e46113601b07e57", - "symbol": "GOC", - "decimals": 18, - "name": "GoCrypto", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x4b85a666dec7c959e88b97814e46113601b07e57.png", - "aggregators": [ - "PancakeCoinMarketCap", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 4 - }, - "0x510ad22d8c956dcc20f68932861f54a591001283": { - "address": "0x510ad22d8c956dcc20f68932861f54a591001283", - "symbol": "SWEAT", - "decimals": 18, - "name": "Sweat Economy", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x510ad22d8c956dcc20f68932861f54a591001283.png", - "aggregators": ["PancakeExtended", "LiFi", "Rubic", "Sonarwatch"], - "occurrences": 4 - }, - "0x30807d3b851a31d62415b8bb7af7dca59390434a": { - "address": "0x30807d3b851a31d62415b8bb7af7dca59390434a", - "symbol": "RADIO", - "decimals": 18, - "name": "RadioShack", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x30807d3b851a31d62415b8bb7af7dca59390434a.png", - "aggregators": [ - "PancakeCoinMarketCap", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 4 - }, - "0x6a2608dabe09bc1128eec7275b92dfb939d5db3f": { - "address": "0x6a2608dabe09bc1128eec7275b92dfb939d5db3f", - "symbol": "TOSHI", - "decimals": 18, - "name": "Toshi", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x6a2608dabe09bc1128eec7275b92dfb939d5db3f.png", - "aggregators": ["PancakeExtended", "LiFi", "Rubic", "Rango"], - "occurrences": 4 - }, - "0x5668a83b46016b494a30dd14066a451e5417a8b8": { - "address": "0x5668a83b46016b494a30dd14066a451e5417a8b8", - "symbol": "ULTIMA", - "decimals": 6, - "name": "Ultima", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x5668a83b46016b494a30dd14066a451e5417a8b8.png", - "aggregators": ["CoinGecko", "Rubic", "Squid", "Rango"], - "occurrences": 4 - }, - "0xcdf937995a55a9ab551d81b463ac0f7f02795368": { - "address": "0xcdf937995a55a9ab551d81b463ac0f7f02795368", - "symbol": "VSC", - "decimals": 18, - "name": "Vyvo Smart Chain", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xcdf937995a55a9ab551d81b463ac0f7f02795368.png", - "aggregators": [ - "PancakeCoinMarketCap", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 4 - }, - "0x27f16d9a5095b763baeadd7dd78e83288af29cf4": { - "address": "0x27f16d9a5095b763baeadd7dd78e83288af29cf4", - "symbol": "YOURAI", - "decimals": 18, - "name": "YOUR AI", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x27f16d9a5095b763baeadd7dd78e83288af29cf4.png", - "aggregators": [ - "PancakeCoinMarketCap", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 4 - }, - "0xb4818bb69478730ef4e33cc068dd94278e2766cb": { - "address": "0xb4818bb69478730ef4e33cc068dd94278e2766cb", - "symbol": "SATUSD", - "decimals": 18, - "name": "Satoshi Stablecoin V2", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xb4818bb69478730ef4e33cc068dd94278e2766cb.png", - "aggregators": ["PancakeExtended", "LiFi", "Rubic", "Rango"], - "occurrences": 4 - }, - "0x8fb238058e71f828f505582e65b1d14f8cf52067": { - "address": "0x8fb238058e71f828f505582e65b1d14f8cf52067", - "symbol": "D", - "decimals": 6, - "name": "Dar Open Network", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x8fb238058e71f828f505582e65b1d14f8cf52067.png", - "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0x24fcfc492c1393274b6bcd568ac9e225bec93584": { - "address": "0x24fcfc492c1393274b6bcd568ac9e225bec93584", - "symbol": "MAVIA", - "decimals": 18, - "name": "Heroes of Mavia", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x24fcfc492c1393274b6bcd568ac9e225bec93584.png", - "aggregators": ["PancakeExtended", "LiFi", "Rubic", "Rango"], - "occurrences": 4 - }, - "0x0b6f3ea2814f3fff804ba5d5c237aebbc364fba9": { - "address": "0x0b6f3ea2814f3fff804ba5d5c237aebbc364fba9", - "symbol": "UNA", - "decimals": 18, - "name": "Unagi Token", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x0b6f3ea2814f3fff804ba5d5c237aebbc364fba9.png", - "aggregators": [ - "PancakeCoinMarketCap", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 4 - }, - "0xdac991621fd8048d9f235324780abd6c3ad26421": { - "address": "0xdac991621fd8048d9f235324780abd6c3ad26421", - "symbol": "ZRC", - "decimals": 18, - "name": "Zircuit", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xdac991621fd8048d9f235324780abd6c3ad26421.png", - "aggregators": ["PancakeExtended", "LiFi", "Socket", "Rubic"], - "occurrences": 4 - }, - "0xe50e3d1a46070444f44df911359033f2937fcc13": { - "address": "0xe50e3d1a46070444f44df911359033f2937fcc13", - "symbol": "SQD", - "decimals": 18, - "name": "Subsquid", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xe50e3d1a46070444f44df911359033f2937fcc13.png", - "aggregators": ["PancakeExtended", "1inch", "LiFi", "Rubic"], - "occurrences": 4 - }, - "0x3a1f0ca49314fce2211792c7fa60ac97ab217cdc": { - "address": "0x3a1f0ca49314fce2211792c7fa60ac97ab217cdc", - "symbol": "APAD", - "decimals": 18, - "name": "AlphPad", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x3a1f0ca49314fce2211792c7fa60ac97ab217cdc.png", - "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0x91f9cc2649ac70a071602cade9b0c1a5868af51d": { - "address": "0x91f9cc2649ac70a071602cade9b0c1a5868af51d", - "symbol": "WXTZ", - "decimals": 18, - "name": "Wrapped XTZ", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x91f9cc2649ac70a071602cade9b0c1a5868af51d.png", - "aggregators": ["CoinGecko", "LiFi", "Socket", "Rubic"], - "occurrences": 4 - }, - "0x4254813524695def4163a169e901f3d7a1a55429": { - "address": "0x4254813524695def4163a169e901f3d7a1a55429", - "symbol": "WSTUSR", - "decimals": 18, - "name": "WSTUSR", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x4254813524695def4163a169e901f3d7a1a55429.png", - "aggregators": ["CoinGecko", "Socket", "Rubic", "Rango"], - "occurrences": 4 - }, - "0x9a4a67721573f2c9209dfff972c52be4e3f6642e": { - "address": "0x9a4a67721573f2c9209dfff972c52be4e3f6642e", - "symbol": "GPS", - "decimals": 18, - "name": "GoPlus Security", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x9a4a67721573f2c9209dfff972c52be4e3f6642e.png", - "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0x64748ea3e31d0b7916f0ff91b017b9f404ded8ef": { - "address": "0x64748ea3e31d0b7916f0ff91b017b9f404ded8ef", - "symbol": "CUSDO", - "decimals": 18, - "name": "Compounding Open Dollar", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x64748ea3e31d0b7916f0ff91b017b9f404ded8ef.png", - "aggregators": ["PancakeExtended", "LiFi", "Rubic", "Rango"], - "occurrences": 4 - }, - "0xb42fc163f95332552a824020f15ed81ee7f0ce78": { - "address": "0xb42fc163f95332552a824020f15ed81ee7f0ce78", - "symbol": "DAWAE", - "decimals": 9, - "name": "Dawae", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xb42fc163f95332552a824020f15ed81ee7f0ce78.png", - "aggregators": ["CoinGecko", "Socket", "Rubic", "Rango"], - "occurrences": 4 - }, - "0xc9d23ed2adb0f551369946bd377f8644ce1ca5c4": { - "address": "0xc9d23ed2adb0f551369946bd377f8644ce1ca5c4", - "symbol": "HYPER", - "decimals": 18, - "name": "Hyperlane", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xc9d23ed2adb0f551369946bd377f8644ce1ca5c4.png", - "aggregators": ["PancakeExtended", "LiFi", "Socket", "Rubic"], - "occurrences": 4 - }, - "0x389ad4bb96d0d6ee5b6ef0efaf4b7db0ba2e02a0": { - "address": "0x389ad4bb96d0d6ee5b6ef0efaf4b7db0ba2e02a0", - "symbol": "LA", - "decimals": 18, - "name": "Lagrange", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x389ad4bb96d0d6ee5b6ef0efaf4b7db0ba2e02a0.png", - "aggregators": ["PancakeExtended", "Socket", "Rubic", "Rango"], - "occurrences": 4 - }, - "0x09d4214c03d01f49544c0448dbe3a27f768f2b34": { - "address": "0x09d4214c03d01f49544c0448dbe3a27f768f2b34", - "symbol": "RUSD", - "decimals": 18, - "name": "Reservoir Stablecoin", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x09d4214c03d01f49544c0448dbe3a27f768f2b34.png", - "aggregators": ["CoinGecko", "LiFi", "Socket", "Rubic"], - "occurrences": 4 - }, - "0xfed13d0c40790220fbde712987079eda1ed75c51": { - "address": "0xfed13d0c40790220fbde712987079eda1ed75c51", - "symbol": "BTR", - "decimals": 18, - "name": "BTR token", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xfed13d0c40790220fbde712987079eda1ed75c51.png", - "aggregators": ["PancakeExtended", "LiFi", "Socket", "Rubic"], - "occurrences": 4 - }, - "0x1219c409fabe2c27bd0d1a565daeed9bd9f271de": { - "address": "0x1219c409fabe2c27bd0d1a565daeed9bd9f271de", - "symbol": "TAC", - "decimals": 18, - "name": "TAC Token", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x1219c409fabe2c27bd0d1a565daeed9bd9f271de.png", - "aggregators": ["PancakeExtended", "LiFi", "Rubic", "Rango"], - "occurrences": 4 - }, - "0xa227cc36938f0c9e09ce0e64dfab226cad739447": { - "address": "0xa227cc36938f0c9e09ce0e64dfab226cad739447", - "symbol": "OPEN", - "decimals": 18, - "name": "OPEN", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xa227cc36938f0c9e09ce0e64dfab226cad739447.png", - "aggregators": ["PancakeExtended", "LiFi", "Socket", "Rubic"], - "occurrences": 4 - }, - "0x7313ea16493b2f55054df0131a3a14b043ec8992": { - "address": "0x7313ea16493b2f55054df0131a3a14b043ec8992", - "symbol": "MSTRON", - "decimals": 18, - "name": "MicroStrategy (Ondo Tokenized)", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x7313ea16493b2f55054df0131a3a14b043ec8992.png", - "aggregators": ["CoinGecko", "Rubic", "Rango", "Ondo"], - "occurrences": 4, - "rwaData": { - "market": { - "nextOpen": "2026-05-18T20:01:00.000Z", - "nextClose": "2026-05-18T19:59:00.000Z" - }, - "nextPause": { - "start": null, - "end": null - }, - "ticker": "MSTR", - "instrumentType": "stock" - } - }, - "0x374d03a6c0d5bd4be0a5117ebe1b49d52ac8a53f": { - "address": "0x374d03a6c0d5bd4be0a5117ebe1b49d52ac8a53f", - "symbol": "PYPLON", - "decimals": 18, - "name": "PayPal (Ondo Tokenized)", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x374d03a6c0d5bd4be0a5117ebe1b49d52ac8a53f.png", - "aggregators": ["CoinGecko", "Rubic", "Rango", "Ondo"], - "occurrences": 4, - "rwaData": { - "market": { - "nextOpen": "2026-05-18T20:01:00.000Z", - "nextClose": "2026-05-18T19:59:00.000Z" - }, - "nextPause": { - "start": "2026-06-03T23:52:00.000Z", - "end": "2026-06-04T00:12:00.000Z" - }, - "ticker": "PYPL", - "instrumentType": "stock" - } - }, - "0x5630b5741a33371d9d935283849a16dc808f7f3a": { - "address": "0x5630b5741a33371d9d935283849a16dc808f7f3a", - "symbol": "APOON", - "decimals": 18, - "name": "Apollo Global Management (Ondo Tokenized)", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x5630b5741a33371d9d935283849a16dc808f7f3a.png", - "aggregators": ["CoinGecko", "Rubic", "Rango", "Ondo"], - "occurrences": 4, - "rwaData": { - "market": { - "nextOpen": "2026-05-18T20:01:00.000Z", - "nextClose": "2026-05-18T19:59:00.000Z" - }, - "nextPause": { - "start": "2026-05-18T23:52:00.000Z", - "end": "2026-05-19T00:12:00.000Z" - }, - "ticker": "APO", - "instrumentType": "stock" - } - }, - "0xeee9eee593cb8f7946260b4066cba7907f40acfa": { - "address": "0xeee9eee593cb8f7946260b4066cba7907f40acfa", - "symbol": "DISON", - "decimals": 18, - "name": "Disney (Ondo Tokenized)", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xeee9eee593cb8f7946260b4066cba7907f40acfa.png", - "aggregators": ["CoinGecko", "Rubic", "Rango", "Ondo"], - "occurrences": 4, - "rwaData": { - "market": { - "nextOpen": "2026-05-18T20:01:00.000Z", - "nextClose": "2026-05-18T19:59:00.000Z" - }, - "nextPause": { - "start": "2026-06-29T23:52:00.000Z", - "end": "2026-06-30T00:12:00.000Z" - }, - "ticker": "DIS", - "instrumentType": "stock" - } - }, - "0xf99f8f3a95257d82006183bd524efa7aacc9ef7a": { - "address": "0xf99f8f3a95257d82006183bd524efa7aacc9ef7a", - "symbol": "PEPON", - "decimals": 18, - "name": "PepsiCo (Ondo Tokenized)", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xf99f8f3a95257d82006183bd524efa7aacc9ef7a.png", - "aggregators": ["CoinGecko", "Rubic", "Rango", "Ondo"], - "occurrences": 4, - "rwaData": { - "market": { - "nextOpen": "2026-05-18T20:01:00.000Z", - "nextClose": "2026-05-18T19:59:00.000Z" - }, - "nextPause": { - "start": "2026-06-04T23:52:00.000Z", - "end": "2026-06-05T00:12:00.000Z" - }, - "ticker": "PEP", - "instrumentType": "stock" - } - }, - "0x400f1e257f86d25578a0928c94dc95115f09d5c9": { - "address": "0x400f1e257f86d25578a0928c94dc95115f09d5c9", - "symbol": "PGON", - "decimals": 18, - "name": "Procter & Gamble (Ondo Tokenized)", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x400f1e257f86d25578a0928c94dc95115f09d5c9.png", - "aggregators": ["CoinGecko", "Rubic", "Rango", "Ondo"], - "occurrences": 4, - "rwaData": { - "market": { - "nextOpen": "2026-05-18T20:01:00.000Z", - "nextClose": "2026-05-18T19:59:00.000Z" - }, - "nextPause": { - "start": null, - "end": null - }, - "ticker": "PG", - "instrumentType": "stock" - } - }, - "0xd3113a0ad20a46f6a662c63fe8e637f7713e59c7": { - "address": "0xd3113a0ad20a46f6a662c63fe8e637f7713e59c7", - "symbol": "CVXON", - "decimals": 18, - "name": "Chevron (Ondo Tokenized)", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xd3113a0ad20a46f6a662c63fe8e637f7713e59c7.png", - "aggregators": ["CoinGecko", "Rubic", "Rango", "Ondo"], - "occurrences": 4, - "rwaData": { - "market": { - "nextOpen": "2026-05-18T20:01:00.000Z", - "nextClose": "2026-05-18T19:59:00.000Z" - }, - "nextPause": { - "start": "2026-05-18T23:52:00.000Z", - "end": "2026-05-19T00:12:00.000Z" - }, - "ticker": "CVX", - "instrumentType": "stock" - } - }, - "0xd09f7b75b9659b864c6f82bb00ff096f9d277998": { - "address": "0xd09f7b75b9659b864c6f82bb00ff096f9d277998", - "symbol": "LMTON", - "decimals": 18, - "name": "Lockheed (Ondo Tokenized)", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xd09f7b75b9659b864c6f82bb00ff096f9d277998.png", - "aggregators": ["CoinGecko", "Rubic", "Rango", "Ondo"], - "occurrences": 4, - "rwaData": { - "market": { - "nextOpen": "2026-05-18T20:01:00.000Z", - "nextClose": "2026-05-18T19:59:00.000Z" - }, - "nextPause": { - "start": "2026-05-31T23:52:00.000Z", - "end": "2026-06-01T00:12:00.000Z" - }, - "ticker": "LMT", - "instrumentType": "stock" - } - }, - "0x6e3e077a6c0e3c27fd6d00b97387d9b7bd451bab": { - "address": "0x6e3e077a6c0e3c27fd6d00b97387d9b7bd451bab", - "symbol": "INTUON", - "decimals": 18, - "name": "Intuit (Ondo Tokenized)", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x6e3e077a6c0e3c27fd6d00b97387d9b7bd451bab.png", - "aggregators": ["CoinGecko", "Rubic", "Rango", "Ondo"], - "occurrences": 4, - "rwaData": { - "market": { - "nextOpen": "2026-05-18T20:01:00.000Z", - "nextClose": "2026-05-18T19:59:00.000Z" - }, - "nextPause": { - "start": "2026-05-20T20:00:00.000Z", - "end": "2026-05-20T23:30:00.000Z" - }, - "ticker": "INTU", - "instrumentType": "stock" - } - }, - "0xcb22db0ecb6fe58b7b47db443dcfdfdfbf729cef": { - "address": "0xcb22db0ecb6fe58b7b47db443dcfdfdfbf729cef", - "symbol": "ADBEON", - "decimals": 18, - "name": "Adobe (Ondo Tokenized)", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xcb22db0ecb6fe58b7b47db443dcfdfdfbf729cef.png", - "aggregators": ["CoinGecko", "Rubic", "Rango", "Ondo"], - "occurrences": 4, - "rwaData": { - "market": { - "nextOpen": "2026-05-18T20:01:00.000Z", - "nextClose": "2026-05-18T19:59:00.000Z" - }, - "nextPause": { - "start": "2026-06-11T20:00:00.000Z", - "end": "2026-06-11T23:30:00.000Z" - }, - "ticker": "ADBE", - "instrumentType": "stock" - } - }, - "0x50356167a4dbc38bea6779c045e24e25facedfdc": { - "address": "0x50356167a4dbc38bea6779c045e24e25facedfdc", - "symbol": "SPOTON", - "decimals": 18, - "name": "Spotify (Ondo Tokenized)", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x50356167a4dbc38bea6779c045e24e25facedfdc.png", - "aggregators": ["CoinGecko", "Rubic", "Rango", "Ondo"], - "occurrences": 4, - "rwaData": { - "market": { - "nextOpen": "2026-05-18T20:01:00.000Z", - "nextClose": "2026-05-18T19:59:00.000Z" - }, - "nextPause": { - "start": null, - "end": null - }, - "ticker": "SPOT", - "instrumentType": "stock" - } - }, - "0x34375f826fd3dd4e15f883d4f4786bb45eb705ac": { - "address": "0x34375f826fd3dd4e15f883d4f4786bb45eb705ac", - "symbol": "COSTON", - "decimals": 18, - "name": "Costco (Ondo Tokenized)", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x34375f826fd3dd4e15f883d4f4786bb45eb705ac.png", - "aggregators": ["CoinGecko", "Rubic", "Rango", "Ondo"], - "occurrences": 4, - "rwaData": { - "market": { - "nextOpen": "2026-05-18T20:01:00.000Z", - "nextClose": "2026-05-18T19:59:00.000Z" - }, - "nextPause": { - "start": "2026-05-28T20:00:00.000Z", - "end": "2026-05-28T23:30:00.000Z" - }, - "ticker": "COST", - "instrumentType": "stock" - } - }, - "0xd89b7dd376e671c124352267516bef1c2cc231a3": { - "address": "0xd89b7dd376e671c124352267516bef1c2cc231a3", - "symbol": "ZKP", - "decimals": 18, - "name": "zkPass", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xd89b7dd376e671c124352267516bef1c2cc231a3.png", - "aggregators": ["PancakeExtended", "Socket", "Rubic", "Rango"], - "occurrences": 4 - }, - "0x0bbea6812fb3fcbca126edb558e551b3f1702026": { - "address": "0x0bbea6812fb3fcbca126edb558e551b3f1702026", - "symbol": "LITKEY", - "decimals": 18, - "name": "LITKEY", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x0bbea6812fb3fcbca126edb558e551b3f1702026.png", - "aggregators": ["PancakeExtended", "Socket", "Rubic", "Rango"], - "occurrences": 4 - }, - "0xc19d38925f9f645337b1d1f37baf3c0647a48e50": { - "address": "0xc19d38925f9f645337b1d1f37baf3c0647a48e50", - "symbol": "GAIB", - "decimals": 18, - "name": "GAIB", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xc19d38925f9f645337b1d1f37baf3c0647a48e50.png", - "aggregators": ["PancakeExtended", "Socket", "Rubic", "Rango"], - "occurrences": 4 - }, - "0xf2b51cc1850fed939658317a22d73d3482767591": { - "address": "0xf2b51cc1850fed939658317a22d73d3482767591", - "symbol": "NXPC", - "decimals": 18, - "name": "NXPC", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xf2b51cc1850fed939658317a22d73d3482767591.png", - "aggregators": ["PancakeExtended", "LiFi", "Rubic", "Rango"], - "occurrences": 4 - }, - "0xcc1b8207853662c5cfabfb028806ec06ea1f6ac6": { - "address": "0xcc1b8207853662c5cfabfb028806ec06ea1f6ac6", - "symbol": "KIN", - "decimals": 18, - "name": "KinToken", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xcc1b8207853662c5cfabfb028806ec06ea1f6ac6.png", - "aggregators": ["PancakeExtended", "Socket", "Rubic", "Rango"], - "occurrences": 4 - }, - "0x12b7adc48416a103f63e7e6210f62c81dfb91fd0": { - "address": "0x12b7adc48416a103f63e7e6210f62c81dfb91fd0", - "symbol": "EWYON", - "decimals": 18, - "name": "iShares MSCI South Korea ETF (Ondo Tokenized)", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x12b7adc48416a103f63e7e6210f62c81dfb91fd0.png", - "aggregators": ["CoinGecko", "Rubic", "Rango", "Ondo"], - "occurrences": 4, - "rwaData": { - "market": { - "nextOpen": "2026-05-18T20:01:00.000Z", - "nextClose": "2026-05-18T19:59:00.000Z" - }, - "nextPause": { - "start": null, - "end": null - }, - "ticker": "EWY", - "instrumentType": "stock" - } - }, - "0x4fd67cb8cfedc718bac984b5936abe3330d0a2a4": { - "address": "0x4fd67cb8cfedc718bac984b5936abe3330d0a2a4", - "symbol": "SNDKON", - "decimals": 18, - "name": "SanDisk (Ondo Tokenized)", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x4fd67cb8cfedc718bac984b5936abe3330d0a2a4.png", - "aggregators": ["CoinGecko", "Rubic", "Rango", "Ondo"], - "occurrences": 4, - "rwaData": { - "market": { - "nextOpen": "2026-05-18T20:01:00.000Z", - "nextClose": "2026-05-18T19:59:00.000Z" - }, - "nextPause": { - "start": null, - "end": null - }, - "ticker": "SNDK", - "instrumentType": "stock" - } - }, - "0xe4e12c9cec3e8cae405202a97f66afa695075fa0": { - "address": "0xe4e12c9cec3e8cae405202a97f66afa695075fa0", - "symbol": "EQIXON", - "decimals": 18, - "name": "Equinix (Ondo Tokenized)", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xe4e12c9cec3e8cae405202a97f66afa695075fa0.png", - "aggregators": ["CoinGecko", "Rubic", "Rango", "Ondo"], - "occurrences": 4, - "rwaData": { - "market": { - "nextOpen": "2026-05-18T20:01:00.000Z", - "nextClose": "2026-05-18T19:59:00.000Z" - }, - "nextPause": { - "start": "2026-05-19T23:52:00.000Z", - "end": "2026-05-20T00:12:00.000Z" - }, - "ticker": "EQIX", - "instrumentType": "stock" - } - }, - "0x04b5e199f2ec84f78b111035f57b16bee448db6f": { - "address": "0x04b5e199f2ec84f78b111035f57b16bee448db6f", - "symbol": "NKEON", - "decimals": 18, - "name": "Nike (Ondo Tokenized)", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x04b5e199f2ec84f78b111035f57b16bee448db6f.png", - "aggregators": ["CoinGecko", "Rubic", "Rango", "Ondo"], - "occurrences": 4, - "rwaData": { - "market": { - "nextOpen": "2026-05-18T20:01:00.000Z", - "nextClose": "2026-05-18T19:59:00.000Z" - }, - "nextPause": { - "start": "2026-05-31T23:52:00.000Z", - "end": "2026-06-01T00:12:00.000Z" - }, - "ticker": "NKE", - "instrumentType": "stock" - } - }, - "0xecc1299f183b6a720a6f4729bf24f82cd8d50828": { - "address": "0xecc1299f183b6a720a6f4729bf24f82cd8d50828", - "symbol": "TMON", - "decimals": 18, - "name": "Toyota (Ondo Tokenized)", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xecc1299f183b6a720a6f4729bf24f82cd8d50828.png", - "aggregators": ["CoinGecko", "Rubic", "Rango", "Ondo"], - "occurrences": 4, - "rwaData": { - "market": { - "nextOpen": "2026-05-18T20:01:00.000Z", - "nextClose": "2026-05-18T19:59:00.000Z" - }, - "nextPause": { - "start": null, - "end": null - }, - "ticker": "TM", - "instrumentType": "stock" - } - }, - "0x7567c2a46bce46373b454682f3d95e6535bde144": { - "address": "0x7567c2a46bce46373b454682f3d95e6535bde144", - "symbol": "DASHON", - "decimals": 18, - "name": "DoorDash (Ondo Tokenized)", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x7567c2a46bce46373b454682f3d95e6535bde144.png", - "aggregators": ["CoinGecko", "Rubic", "Rango", "Ondo"], - "occurrences": 4, - "rwaData": { - "market": { - "nextOpen": "2026-05-18T20:01:00.000Z", - "nextClose": "2026-05-18T19:59:00.000Z" - }, - "nextPause": { - "start": null, - "end": null - }, - "ticker": "DASH", - "instrumentType": "stock" - } - }, - "0xedb3124e96c64c177eb709cbc64f9977db40ea74": { - "address": "0xedb3124e96c64c177eb709cbc64f9977db40ea74", - "symbol": "APPON", - "decimals": 18, - "name": "AppLovin (Ondo Tokenized)", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xedb3124e96c64c177eb709cbc64f9977db40ea74.png", - "aggregators": ["CoinGecko", "Rubic", "Rango", "Ondo"], - "occurrences": 4, - "rwaData": { - "market": { - "nextOpen": "2026-05-18T20:01:00.000Z", - "nextClose": "2026-05-18T19:59:00.000Z" - }, - "nextPause": { - "start": null, - "end": null - }, - "ticker": "APP", - "instrumentType": "stock" - } - }, - "0x25ffda07f585c39848db6573e533d7585679c52d": { - "address": "0x25ffda07f585c39848db6573e533d7585679c52d", - "symbol": "MAON", - "decimals": 18, - "name": "Mastercard (Ondo Tokenized)", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x25ffda07f585c39848db6573e533d7585679c52d.png", - "aggregators": ["CoinGecko", "Rubic", "Rango", "Ondo"], - "occurrences": 4, - "rwaData": { - "market": { - "nextOpen": "2026-05-18T20:01:00.000Z", - "nextClose": "2026-05-18T19:59:00.000Z" - }, - "nextPause": { - "start": null, - "end": null - }, - "ticker": "MA", - "instrumentType": "stock" - } - }, - "0x1cde419fae0ef7f7931ae3e29e5f411c8c5e5fa1": { - "address": "0x1cde419fae0ef7f7931ae3e29e5f411c8c5e5fa1", - "symbol": "VON", - "decimals": 18, - "name": "Visa (Ondo Tokenized)", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x1cde419fae0ef7f7931ae3e29e5f411c8c5e5fa1.png", - "aggregators": ["CoinGecko", "Rubic", "Rango", "Ondo"], - "occurrences": 4, - "rwaData": { - "market": { - "nextOpen": "2026-05-18T20:01:00.000Z", - "nextClose": "2026-05-18T19:59:00.000Z" - }, - "nextPause": { - "start": null, - "end": null - }, - "ticker": "V", - "instrumentType": "stock" - } - }, - "0x24f5471183ea549987f245d6ce236b6108869c92": { - "address": "0x24f5471183ea549987f245d6ce236b6108869c92", - "symbol": "BLKON", - "decimals": 18, - "name": "Blackrock, Inc. (Ondo Tokenized)", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x24f5471183ea549987f245d6ce236b6108869c92.png", - "aggregators": ["CoinGecko", "Rubic", "Rango", "Ondo"], - "occurrences": 4, - "rwaData": { - "market": { - "nextOpen": "2026-05-18T20:01:00.000Z", - "nextClose": "2026-05-18T19:59:00.000Z" - }, - "nextPause": { - "start": null, - "end": null - }, - "ticker": "BLK", - "instrumentType": "stock" - } - }, - "0xeb19c13c54b1cd48afc62f6503375e92d5f1e856": { - "address": "0xeb19c13c54b1cd48afc62f6503375e92d5f1e856", - "symbol": "NOWON", - "decimals": 18, - "name": "ServiceNow (Ondo Tokenized)", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xeb19c13c54b1cd48afc62f6503375e92d5f1e856.png", - "aggregators": ["CoinGecko", "Rubic", "Rango", "Ondo"], - "occurrences": 4, - "rwaData": { - "market": { - "nextOpen": "2026-05-18T20:01:00.000Z", - "nextClose": "2026-05-18T19:59:00.000Z" - }, - "nextPause": { - "start": null, - "end": null - }, - "ticker": "NOW", - "instrumentType": "stock" - } - }, - "0x93fac02b22b6743423381d163aec418178019b7a": { - "address": "0x93fac02b22b6743423381d163aec418178019b7a", - "symbol": "FIGON", - "decimals": 18, - "name": "Figma (Ondo Tokenized)", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x93fac02b22b6743423381d163aec418178019b7a.png", - "aggregators": ["CoinGecko", "Rubic", "Rango", "Ondo"], - "occurrences": 4, - "rwaData": { - "market": { - "nextOpen": "2026-05-18T20:01:00.000Z", - "nextClose": "2026-05-18T19:59:00.000Z" - }, - "nextPause": { - "start": null, - "end": null - }, - "ticker": "FIG", - "instrumentType": "stock" - } - }, - "0xa9616e5e23ec1582c2828b025becf3ef610e266f": { - "address": "0xa9616e5e23ec1582c2828b025becf3ef610e266f", - "symbol": "SOMI", - "decimals": 18, - "name": "Somnia", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xa9616e5e23ec1582c2828b025becf3ef610e266f.png", - "aggregators": ["Metamask", "LiFi", "Rubic", "Rango"], - "occurrences": 4 - }, - "0x17ea10b6ae4fde59fdbf471bd28ab9710f508816": { - "address": "0x17ea10b6ae4fde59fdbf471bd28ab9710f508816", - "symbol": "RLS", - "decimals": 18, - "name": "Rayls", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x17ea10b6ae4fde59fdbf471bd28ab9710f508816.png", - "aggregators": ["PancakeExtended", "Rubic", "Squid", "Rango"], - "occurrences": 4 - }, - "0xb2d97c4ed2d0ef452654f5cab3da3735b5e6f3ab": { - "address": "0xb2d97c4ed2d0ef452654f5cab3da3735b5e6f3ab", - "symbol": "FIGHT", - "decimals": 18, - "name": "FIGHT", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xb2d97c4ed2d0ef452654f5cab3da3735b5e6f3ab.png", - "aggregators": ["PancakeExtended", "Socket", "Rubic", "Rango"], - "occurrences": 4 - }, - "0x9b6a1d4fa5d90e5f2d34130053978d14cd301d58": { - "address": "0x9b6a1d4fa5d90e5f2d34130053978d14cd301d58", - "symbol": "DN", - "decimals": 18, - "name": "DeepNode", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x9b6a1d4fa5d90e5f2d34130053978d14cd301d58.png", - "aggregators": ["PancakeExtended", "Socket", "Rubic", "Rango"], - "occurrences": 4 - }, - "0x5feccd17c393caf1001d18164236a37e731fcb9d": { - "address": "0x5feccd17c393caf1001d18164236a37e731fcb9d", - "symbol": "OPG", - "decimals": 18, - "name": "OpenGradient", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x5feccd17c393caf1001d18164236a37e731fcb9d.png", - "aggregators": ["PancakeExtended", "LiFi", "Rubic", "Rango"], - "occurrences": 4 - }, - "0x8d11ec38a3eb5e956b052f67da8bdc9bef8abf3e": { - "address": "0x8d11ec38a3eb5e956b052f67da8bdc9bef8abf3e", - "symbol": "KEX", - "decimals": 6, - "name": "KIRA Network", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x8d11ec38a3eb5e956b052f67da8bdc9bef8abf3e.png", - "aggregators": ["PancakeCoinMarketCap", "Socket", "Rubic", "Rango"], - "occurrences": 4 - }, - "0xbf776e4fca664d791c4ee3a71e2722990e003283": { - "address": "0xbf776e4fca664d791c4ee3a71e2722990e003283", - "symbol": "SMTY", - "decimals": 18, - "name": "Smoothy", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xbf776e4fca664d791c4ee3a71e2722990e003283.png", - "aggregators": [ - "PancakeCoinMarketCap", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 4 - }, - "0x6685906b75c61c57772c335402f594f855c1b0e3": { - "address": "0x6685906b75c61c57772c335402f594f855c1b0e3", - "symbol": "WILD", - "decimals": 18, - "name": "Wilder World", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x6685906b75c61c57772c335402f594f855c1b0e3.png", - "aggregators": ["PancakeExtended", "Socket", "Rubic", "Rango"], - "occurrences": 4 - }, - "0xfbcf80ed90856af0d6d9655f746331763efdb22c": { - "address": "0xfbcf80ed90856af0d6d9655f746331763efdb22c", - "symbol": "NT", - "decimals": 18, - "name": "NEXTYPE Finance", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xfbcf80ed90856af0d6d9655f746331763efdb22c.png", - "aggregators": [ - "PancakeCoinMarketCap", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 4 - }, - "0x659049786cb66e4486b8c0e0ccc90a5929a21162": { - "address": "0x659049786cb66e4486b8c0e0ccc90a5929a21162", - "symbol": "TC", - "decimals": 4, - "name": "TTcoin", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x659049786cb66e4486b8c0e0ccc90a5929a21162.png", - "aggregators": [ - "PancakeCoinMarketCap", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 4 - }, - "0x6e2a5ea25b161befa6a8444c71ae3a89c39933c6": { - "address": "0x6e2a5ea25b161befa6a8444c71ae3a89c39933c6", - "symbol": "B2M", - "decimals": 18, - "name": "Bit2Me", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x6e2a5ea25b161befa6a8444c71ae3a89c39933c6.png", - "aggregators": ["PancakeCoinMarketCap", "Socket", "Rubic", "Rango"], - "occurrences": 4 - }, - "0x6a8fd46f88dbd7bdc2d536c604f811c63052ce0f": { - "address": "0x6a8fd46f88dbd7bdc2d536c604f811c63052ce0f", - "symbol": "TRVL", - "decimals": 18, - "name": "TRVL", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x6a8fd46f88dbd7bdc2d536c604f811c63052ce0f.png", - "aggregators": ["PancakeCoinMarketCap", "Socket", "Rubic", "Rango"], - "occurrences": 4 - }, - "0x8f86a15ec17cb3369d8b3e666dadbc11daa82b79": { - "address": "0x8f86a15ec17cb3369d8b3e666dadbc11daa82b79", - "symbol": "APE", - "decimals": 18, - "name": "ApeCoin", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x8f86a15ec17cb3369d8b3e666dadbc11daa82b79.png", - "aggregators": ["PancakeExtended", "LiFi", "Rubic", "Rango"], - "occurrences": 4 - }, - "0x854a63b35b70a7becbed508ff0b6ff5038d0c917": { - "address": "0x854a63b35b70a7becbed508ff0b6ff5038d0c917", - "symbol": "MNTO", - "decimals": 18, - "name": "Minato", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x854a63b35b70a7becbed508ff0b6ff5038d0c917.png", - "aggregators": [ - "PancakeCoinMarketCap", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 4 - }, - "0x0b3eaead748facdb9d943d3407011f16eb17d0cf": { - "address": "0x0b3eaead748facdb9d943d3407011f16eb17d0cf", - "symbol": "PMX", - "decimals": 18, - "name": "Primex Finance", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x0b3eaead748facdb9d943d3407011f16eb17d0cf.png", - "aggregators": ["CoinGecko", "Socket", "Rubic", "Sonarwatch"], - "occurrences": 4 - }, - "0x4e200fe2f3efb977d5fd9c430a41531fb04d97b8": { - "address": "0x4e200fe2f3efb977d5fd9c430a41531fb04d97b8", - "symbol": "ORDER", - "decimals": 18, - "name": "Orderly Network", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x4e200fe2f3efb977d5fd9c430a41531fb04d97b8.png", - "aggregators": ["PancakeExtended", "LiFi", "Socket", "Rubic"], - "occurrences": 4 - }, - "0x00000000efe302beaa2b3e6e1b18d08d69a9012a": { - "address": "0x00000000efe302beaa2b3e6e1b18d08d69a9012a", - "symbol": "AUSD", - "decimals": 6, - "name": "AUSD", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x00000000efe302beaa2b3e6e1b18d08d69a9012a.png", - "aggregators": ["CoinGecko", "LiFi", "Rubic", "Rango"], - "occurrences": 4 - }, - "0xcef5b397051fc92026249670e918c0ad7b8585e4": { - "address": "0xcef5b397051fc92026249670e918c0ad7b8585e4", - "symbol": "OBT", - "decimals": 18, - "name": "Orbiter Token", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xcef5b397051fc92026249670e918c0ad7b8585e4.png", - "aggregators": ["PancakeExtended", "Socket", "Rubic", "Rango"], - "occurrences": 4 - }, - "0x64d1335b7b942385a60c50e57f647d1982f0c4c8": { - "address": "0x64d1335b7b942385a60c50e57f647d1982f0c4c8", - "symbol": "L1X", - "decimals": 18, - "name": "Layer One X", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x64d1335b7b942385a60c50e57f647d1982f0c4c8.png", - "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0x9beee89723ceec27d7c2834bec6834208ffdc202": { - "address": "0x9beee89723ceec27d7c2834bec6834208ffdc202", - "symbol": "AVL", - "decimals": 18, - "name": "Avalon", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x9beee89723ceec27d7c2834bec6834208ffdc202.png", - "aggregators": ["PancakeExtended", "Socket", "Rubic", "Sonarwatch"], - "occurrences": 4 - }, - "0x6a9a65b84843f5fd4ac9a0471c4fc11afffbce4a": { - "address": "0x6a9a65b84843f5fd4ac9a0471c4fc11afffbce4a", - "symbol": "ENZOBTC", - "decimals": 8, - "name": "Lorenzo Wrapped Bitcoin", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x6a9a65b84843f5fd4ac9a0471c4fc11afffbce4a.png", - "aggregators": ["CoinGecko", "LiFi", "Rubic", "Rango"], - "occurrences": 4 - }, - "0xdaf1695c41327b61b9b9965ac6a5843a3198cf07": { - "address": "0xdaf1695c41327b61b9b9965ac6a5843a3198cf07", - "symbol": "STO", - "decimals": 4, - "name": "StakeStone", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xdaf1695c41327b61b9b9965ac6a5843a3198cf07.png", - "aggregators": ["PancakeExtended", "LiFi", "Rubic", "Squid"], - "occurrences": 4 - }, - "0xd86e6ef14b96d942ef0abf0720c549197ea8c528": { - "address": "0xd86e6ef14b96d942ef0abf0720c549197ea8c528", - "symbol": "RDO", - "decimals": 18, - "name": "RDO Token", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xd86e6ef14b96d942ef0abf0720c549197ea8c528.png", - "aggregators": ["PancakeExtended", "1inch", "Socket", "Rubic"], - "occurrences": 4 - }, - "0xaedaff046601beb063b647845dfb21841f32d6a4": { - "address": "0xaedaff046601beb063b647845dfb21841f32d6a4", - "symbol": "RIZE", - "decimals": 18, - "name": "RIZE", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xaedaff046601beb063b647845dfb21841f32d6a4.png", - "aggregators": ["PancakeExtended", "LiFi", "Rubic", "Rango"], - "occurrences": 4 - }, - "0xb37194e8b99020ae0b8b6861d4217a9f016706a4": { - "address": "0xb37194e8b99020ae0b8b6861d4217a9f016706a4", - "symbol": "HYB", - "decimals": 18, - "name": "Hybrid", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xb37194e8b99020ae0b8b6861d4217a9f016706a4.png", - "aggregators": ["PancakeExtended", "Rubic", "Squid", "Rango"], - "occurrences": 4 - }, - "0xf970706063b7853877f39515c96932d49d5ac9cd": { - "address": "0xf970706063b7853877f39515c96932d49d5ac9cd", - "symbol": "YALA", - "decimals": 18, - "name": "Yala Token", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xf970706063b7853877f39515c96932d49d5ac9cd.png", - "aggregators": ["PancakeExtended", "LiFi", "Socket", "Rubic"], - "occurrences": 4 - }, - "0xf9ca3fe094212ffa705742d3626a8ab96aababf8": { - "address": "0xf9ca3fe094212ffa705742d3626a8ab96aababf8", - "symbol": "DAM", - "decimals": 18, - "name": "Reservoir", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xf9ca3fe094212ffa705742d3626a8ab96aababf8.png", - "aggregators": ["PancakeExtended", "Socket", "Rubic", "Rango"], - "occurrences": 4 - }, - "0x5a20886b575058dd7299785f0ea9b1172942a3e0": { - "address": "0x5a20886b575058dd7299785f0ea9b1172942a3e0", - "symbol": "ABTON", - "decimals": 18, - "name": "Abbott (Ondo Tokenized)", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x5a20886b575058dd7299785f0ea9b1172942a3e0.png", - "aggregators": ["CoinGecko", "Rubic", "Rango", "Ondo"], - "occurrences": 4, - "rwaData": { - "market": { - "nextOpen": "2026-05-18T20:01:00.000Z", - "nextClose": "2026-05-18T19:59:00.000Z" - }, - "nextPause": { - "start": null, - "end": null - }, - "ticker": "ABT", - "instrumentType": "stock" - } - }, - "0xfbd4d681c92ead6af0e49950c8b2e47eeacbb2db": { - "address": "0xfbd4d681c92ead6af0e49950c8b2e47eeacbb2db", - "symbol": "QCOMON", - "decimals": 18, - "name": "Qualcomm (Ondo Tokenized)", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xfbd4d681c92ead6af0e49950c8b2e47eeacbb2db.png", - "aggregators": ["CoinGecko", "Rubic", "Rango", "Ondo"], - "occurrences": 4, - "rwaData": { - "market": { - "nextOpen": "2026-05-18T20:01:00.000Z", - "nextClose": "2026-05-18T19:59:00.000Z" - }, - "nextPause": { - "start": "2026-06-03T23:52:00.000Z", - "end": "2026-06-04T00:12:00.000Z" - }, - "ticker": "QCOM", - "instrumentType": "stock" - } - }, - "0xef80743f78d98fc2b47a2253b293152ce8b879ba": { - "address": "0xef80743f78d98fc2b47a2253b293152ce8b879ba", - "symbol": "ABNBON", - "decimals": 18, - "name": "Airbnb (Ondo Tokenized)", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xef80743f78d98fc2b47a2253b293152ce8b879ba.png", - "aggregators": ["CoinGecko", "Rubic", "Rango", "Ondo"], - "occurrences": 4, - "rwaData": { - "market": { - "nextOpen": "2026-05-18T20:01:00.000Z", - "nextClose": "2026-05-18T19:59:00.000Z" - }, - "nextPause": { - "start": null, - "end": null - }, - "ticker": "ABNB", - "instrumentType": "stock" - } - }, - "0x5acf40056ed51c8bbcd1b125ef803581ac89a627": { - "address": "0x5acf40056ed51c8bbcd1b125ef803581ac89a627", - "symbol": "FUTUON", - "decimals": 18, - "name": "Futu Holdings (Ondo Tokenized)", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x5acf40056ed51c8bbcd1b125ef803581ac89a627.png", - "aggregators": ["CoinGecko", "Rubic", "Rango", "Ondo"], - "occurrences": 4, - "rwaData": { - "market": { - "nextOpen": "2026-05-18T20:01:00.000Z", - "nextClose": "2026-05-18T19:59:00.000Z" - }, - "nextPause": { - "start": "2026-06-04T09:00:00.000Z", - "end": "2026-06-04T23:30:00.000Z" - }, - "ticker": "FUTU", - "instrumentType": "stock" - } - }, - "0x527c6436e1eaa4f2065cde4090f798cb5d031dd6": { - "address": "0x527c6436e1eaa4f2065cde4090f798cb5d031dd6", - "symbol": "ARMON", - "decimals": 18, - "name": "Arm Holdings plc (Ondo Tokenized)", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x527c6436e1eaa4f2065cde4090f798cb5d031dd6.png", - "aggregators": ["CoinGecko", "Rubic", "Rango", "Ondo"], - "occurrences": 4, - "rwaData": { - "market": { - "nextOpen": "2026-05-18T20:01:00.000Z", - "nextClose": "2026-05-18T19:59:00.000Z" - }, - "nextPause": { - "start": null, - "end": null - }, - "ticker": "ARM", - "instrumentType": "stock" - } - }, - "0x55b370b704240a914f42b5bbb3195431c031f9f8": { - "address": "0x55b370b704240a914f42b5bbb3195431c031f9f8", - "symbol": "SPGION", - "decimals": 18, - "name": "S&P Global (Ondo Tokenized)", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x55b370b704240a914f42b5bbb3195431c031f9f8.png", - "aggregators": ["CoinGecko", "Rubic", "Rango", "Ondo"], - "occurrences": 4, - "rwaData": { - "market": { - "nextOpen": "2026-05-18T20:01:00.000Z", - "nextClose": "2026-05-18T19:59:00.000Z" - }, - "nextPause": { - "start": null, - "end": null - }, - "ticker": "SPGI", - "instrumentType": "stock" - } - }, - "0xd803f8777187d6dee1ea57854aeb957043fb1675": { - "address": "0xd803f8777187d6dee1ea57854aeb957043fb1675", - "symbol": "AXPON", - "decimals": 18, - "name": "American Express (Ondo Tokenized)", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xd803f8777187d6dee1ea57854aeb957043fb1675.png", - "aggregators": ["CoinGecko", "Rubic", "Rango", "Ondo"], - "occurrences": 4, - "rwaData": { - "market": { - "nextOpen": "2026-05-18T20:01:00.000Z", - "nextClose": "2026-05-18T19:59:00.000Z" - }, - "nextPause": { - "start": null, - "end": null - }, - "ticker": "AXP", - "instrumentType": "stock" - } - }, - "0x7af44d51d1fb88c5b74fc71d3cba649bb8099d14": { - "address": "0x7af44d51d1fb88c5b74fc71d3cba649bb8099d14", - "symbol": "ACNON", - "decimals": 18, - "name": "Accenture (Ondo Tokenized)", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x7af44d51d1fb88c5b74fc71d3cba649bb8099d14.png", - "aggregators": ["CoinGecko", "Rubic", "Rango", "Ondo"], - "occurrences": 4, - "rwaData": { - "market": { - "nextOpen": "2026-05-18T20:01:00.000Z", - "nextClose": "2026-05-18T19:59:00.000Z" - }, - "nextPause": { - "start": null, - "end": null - }, - "ticker": "ACN", - "instrumentType": "stock" - } - }, - "0x5151a22421ed4277f1e4ca4785a07b035d548a36": { - "address": "0x5151a22421ed4277f1e4ca4785a07b035d548a36", - "symbol": "GEON", - "decimals": 18, - "name": "General Electric (Ondo Tokenized)", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x5151a22421ed4277f1e4ca4785a07b035d548a36.png", - "aggregators": ["CoinGecko", "Rubic", "Rango", "Ondo"], - "occurrences": 4, - "rwaData": { - "market": { - "nextOpen": "2026-05-18T20:01:00.000Z", - "nextClose": "2026-05-18T19:59:00.000Z" - }, - "nextPause": { - "start": null, - "end": null - }, - "ticker": "GE", - "instrumentType": "stock" - } - }, - "0x0d4f9b25f81163fb4840ba4f434672543823000c": { - "address": "0x0d4f9b25f81163fb4840ba4f434672543823000c", - "symbol": "GSON", - "decimals": 18, - "name": "Goldman Sachs (Ondo Tokenized)", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x0d4f9b25f81163fb4840ba4f434672543823000c.png", - "aggregators": ["CoinGecko", "Rubic", "Rango", "Ondo"], - "occurrences": 4, - "rwaData": { - "market": { - "nextOpen": "2026-05-18T20:01:00.000Z", - "nextClose": "2026-05-18T19:59:00.000Z" - }, - "nextPause": { - "start": "2026-05-31T23:52:00.000Z", - "end": "2026-06-01T00:12:00.000Z" - }, - "ticker": "GS", - "instrumentType": "stock" - } - }, - "0x1f8955e640cbd9abc3c3bb408c9e2e1f5f20dfe6": { - "address": "0x1f8955e640cbd9abc3c3bb408c9e2e1f5f20dfe6", - "symbol": "USDON", - "decimals": 18, - "name": "Ondo U.S. Dollar Token", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x1f8955e640cbd9abc3c3bb408c9e2e1f5f20dfe6.png", - "aggregators": ["CoinGecko", "Rubic", "Rango", "Ondo"], - "occurrences": 4 - }, - "0xc07e1300dc138601fa6b0b59f8d0fa477e690589": { - "address": "0xc07e1300dc138601fa6b0b59f8d0fa477e690589", - "symbol": "Q", - "decimals": 18, - "name": "Quack AI", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xc07e1300dc138601fa6b0b59f8d0fa477e690589.png", - "aggregators": [ - "PancakeExtended", - "LiFi", - "Socket", - "Rubic", - "Squid" - ], - "occurrences": 5 - }, - "0xc8739fbbd54c587a2ad43b50cbcc30ae34fe9e34": { - "address": "0xc8739fbbd54c587a2ad43b50cbcc30ae34fe9e34", - "symbol": "MXRP", - "decimals": 18, - "name": "MXRP", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xc8739fbbd54c587a2ad43b50cbcc30ae34fe9e34.png", - "aggregators": ["PancakeExtended", "LiFi", "Rubic", "Rango"], - "occurrences": 4 - }, - "0x6907a5986c4950bdaf2f81828ec0737ce787519f": { - "address": "0x6907a5986c4950bdaf2f81828ec0737ce787519f", - "symbol": "ZAMA", - "decimals": 18, - "name": "Zama", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x6907a5986c4950bdaf2f81828ec0737ce787519f.png", - "aggregators": [ - "PancakeExtended", - "LiFi", - "Socket", - "Rubic", - "Rango" - ], - "occurrences": 5 - }, - "0x086f405146ce90135750bbec9a063a8b20a8bffb": { - "address": "0x086f405146ce90135750bbec9a063a8b20a8bffb", - "symbol": "BREV", - "decimals": 18, - "name": "Brevis Token", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x086f405146ce90135750bbec9a063a8b20a8bffb.png", - "aggregators": ["PancakeExtended", "Socket", "Rubic", "Rango"], - "occurrences": 4 - }, - "0xc762043e211571eb34f1ef377e5e8e76914962f9": { - "address": "0xc762043e211571eb34f1ef377e5e8e76914962f9", - "symbol": "APE", - "decimals": 18, - "name": "ApeCoin", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xc762043e211571eb34f1ef377e5e8e76914962f9.png", - "aggregators": ["OpenSwap", "Socket", "Rubic", "Rango"], - "occurrences": 4 - }, - "0x82c19905b036bf4e329740989dcf6ae441ae26c1": { - "address": "0x82c19905b036bf4e329740989dcf6ae441ae26c1", - "symbol": "CP", - "decimals": 18, - "name": "CP", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x82c19905b036bf4e329740989dcf6ae441ae26c1.png", - "aggregators": ["PancakeTop100", "LiFi", "Rubic"], - "occurrences": 3 - }, - "0xfafd4cb703b25cb22f43d017e7e0d75febc26743": { - "address": "0xfafd4cb703b25cb22f43d017e7e0d75febc26743", - "symbol": "WEYU", - "decimals": 18, - "name": "WEYU", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xfafd4cb703b25cb22f43d017e7e0d75febc26743.png", - "aggregators": ["PancakeTop100", "Rubic", "Squid", "Rango"], - "occurrences": 4 - }, - "0x5b17b4d5e4009b5c43e3e3d63a5229f794cba389": { - "address": "0x5b17b4d5e4009b5c43e3e3d63a5229f794cba389", - "symbol": "ACSI", - "decimals": 18, - "name": "ACryptoSI", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x5b17b4d5e4009b5c43e3e3d63a5229f794cba389.png", - "aggregators": ["PancakeCoinMarketCap", "LiFi", "Rubic", "Rango"], - "occurrences": 4 - }, - "0xd0840d5f67206f865aee7cce075bd4484cd3cc81": { - "address": "0xd0840d5f67206f865aee7cce075bd4484cd3cc81", - "symbol": "AFEN", - "decimals": 18, - "name": "AFEN Blockchain", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xd0840d5f67206f865aee7cce075bd4484cd3cc81.png", - "aggregators": [ - "PancakeCoinMarketCap", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 4 - }, - "0xb955b4cab9aa3b49e23aeb5204ebc5ff6678e86d": { - "address": "0xb955b4cab9aa3b49e23aeb5204ebc5ff6678e86d", - "symbol": "AFIN", - "decimals": 18, - "name": "Asian Fintech", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xb955b4cab9aa3b49e23aeb5204ebc5ff6678e86d.png", - "aggregators": ["PancakeCoinMarketCap", "Socket", "Rubic", "Rango"], - "occurrences": 4 - }, - "0xa89bf95c5f15a847c8eb8d348cd7fed719ad7d80": { - "address": "0xa89bf95c5f15a847c8eb8d348cd7fed719ad7d80", - "symbol": "AI", - "decimals": 18, - "name": "Chat AI", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xa89bf95c5f15a847c8eb8d348cd7fed719ad7d80.png", - "aggregators": ["PancakeCoinMarketCap", "Socket", "Rubic", "Rango"], - "occurrences": 4 - }, - "0x98999aa1b0d17fb832fd509e13b67fe506513a6d": { - "address": "0x98999aa1b0d17fb832fd509e13b67fe506513a6d", - "symbol": "BANUS", - "decimals": 18, - "name": "Banus Finance", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x98999aa1b0d17fb832fd509e13b67fe506513a6d.png", - "aggregators": [ - "PancakeCoinMarketCap", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 4 - }, - "0x8626f099434d9a7e603b8f0273880209eabfc1c5": { - "address": "0x8626f099434d9a7e603b8f0273880209eabfc1c5", - "symbol": "BERRY", - "decimals": 18, - "name": "BerrySwap", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x8626f099434d9a7e603b8f0273880209eabfc1c5.png", - "aggregators": ["PancakeCoinMarketCap", "Socket", "Rubic", "Rango"], - "occurrences": 4 - }, - "0xce6bd1833bd077f62b2c1f9a777bb829801d6811": { - "address": "0xce6bd1833bd077f62b2c1f9a777bb829801d6811", - "symbol": "BOBC", - "decimals": 18, - "name": "BOBC", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xce6bd1833bd077f62b2c1f9a777bb829801d6811.png", - "aggregators": ["PancakeCoinMarketCap", "Socket", "Rubic", "Rango"], - "occurrences": 4 - }, - "0x29132062319aa375e764ef8ef756f2b28c77a9c9": { - "address": "0x29132062319aa375e764ef8ef756f2b28c77a9c9", - "symbol": "BPAD", - "decimals": 18, - "name": "BlokPad", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x29132062319aa375e764ef8ef756f2b28c77a9c9.png", - "aggregators": [ - "PancakeCoinMarketCap", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 4 - }, - "0xd0f4afa85a667d27837e9c07c81169869c16dd16": { - "address": "0xd0f4afa85a667d27837e9c07c81169869c16dd16", - "symbol": "BPRIVA", - "decimals": 8, - "name": "Privapp Network", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xd0f4afa85a667d27837e9c07c81169869c16dd16.png", - "aggregators": [ - "PancakeCoinMarketCap", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 4 - }, - "0x4e5ab517719a2bdbafefc22c712d7b5bc5f5544e": { - "address": "0x4e5ab517719a2bdbafefc22c712d7b5bc5f5544e", - "symbol": "BRICK", - "decimals": 18, - "name": "BRICK Token", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x4e5ab517719a2bdbafefc22c712d7b5bc5f5544e.png", - "aggregators": ["PancakeCoinMarketCap", "Socket", "Rubic", "Rango"], - "occurrences": 4 - }, - "0x708955db0d4c52ffbf9aa34af7f3ca8bf07390a8": { - "address": "0x708955db0d4c52ffbf9aa34af7f3ca8bf07390a8", - "symbol": "BTL", - "decimals": 18, - "name": "Battle Saga", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x708955db0d4c52ffbf9aa34af7f3ca8bf07390a8.png", - "aggregators": [ - "PancakeCoinMarketCap", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 4 - }, - "0xefb5df8eb84055026018030e71bc2cdfa2f138b9": { - "address": "0xefb5df8eb84055026018030e71bc2cdfa2f138b9", - "symbol": "CARBON", - "decimals": 18, - "name": "Carbon", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xefb5df8eb84055026018030e71bc2cdfa2f138b9.png", - "aggregators": [ - "PancakeCoinMarketCap", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 4 - }, - "0x0dcee5f694e492f0dd842a7fbe5bed4c6e4665a6": { - "address": "0x0dcee5f694e492f0dd842a7fbe5bed4c6e4665a6", - "symbol": "CATBOY", - "decimals": 18, - "name": "Catboy", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x0dcee5f694e492f0dd842a7fbe5bed4c6e4665a6.png", - "aggregators": ["PancakeCoinMarketCap", "Socket", "Rubic", "Rango"], - "occurrences": 4 - }, - "0x0e2b41ea957624a314108cc4e33703e9d78f4b3c": { - "address": "0x0e2b41ea957624a314108cc4e33703e9d78f4b3c", - "symbol": "CBD", - "decimals": 18, - "name": "Greenheart CBD", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x0e2b41ea957624a314108cc4e33703e9d78f4b3c.png", - "aggregators": [ - "PancakeCoinMarketCap", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 4 - }, - "0xb9b41da7fa895b093b95340a3379383bba36735e": { - "address": "0xb9b41da7fa895b093b95340a3379383bba36735e", - "symbol": "CENT", - "decimals": 18, - "name": "Centaurify", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xb9b41da7fa895b093b95340a3379383bba36735e.png", - "aggregators": ["PancakeCoinMarketCap", "Socket", "Rubic", "Rango"], - "occurrences": 4 - }, - "0xbbbcb350c64fe974e5c42a55c7070644191823f3": { - "address": "0xbbbcb350c64fe974e5c42a55c7070644191823f3", - "symbol": "CHEERS", - "decimals": 18, - "name": "CheersLand", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xbbbcb350c64fe974e5c42a55c7070644191823f3.png", - "aggregators": [ - "PancakeCoinMarketCap", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 4 - }, - "0xb90cdb259b9c96b579a30dac027ff92c1e99f1e3": { - "address": "0xb90cdb259b9c96b579a30dac027ff92c1e99f1e3", - "symbol": "CORTEX", - "decimals": 18, - "name": "NeoCortexAI", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xb90cdb259b9c96b579a30dac027ff92c1e99f1e3.png", - "aggregators": [ - "PancakeCoinMarketCap", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 4 - }, - "0xbabacc135bbf2ce30f9c0f12665b244d3689a29c": { - "address": "0xbabacc135bbf2ce30f9c0f12665b244d3689a29c", - "symbol": "COSMIC", - "decimals": 18, - "name": "COSMIC FOMO", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xbabacc135bbf2ce30f9c0f12665b244d3689a29c.png", - "aggregators": ["PancakeCoinMarketCap", "Socket", "Rubic", "Rango"], - "occurrences": 4 - }, - "0xfc76ba9157ee5d079de8c1e969ee54096aaa6c9c": { - "address": "0xfc76ba9157ee5d079de8c1e969ee54096aaa6c9c", - "symbol": "CRED", - "decimals": 18, - "name": "CRED COIN PAY", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xfc76ba9157ee5d079de8c1e969ee54096aaa6c9c.png", - "aggregators": [ - "PancakeCoinMarketCap", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 4 - }, - "0x8ebc361536094fd5b4ffb8521e31900614c9f55d": { - "address": "0x8ebc361536094fd5b4ffb8521e31900614c9f55d", - "symbol": "DARC", - "decimals": 18, - "name": "DARC Token", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x8ebc361536094fd5b4ffb8521e31900614c9f55d.png", - "aggregators": [ - "PancakeCoinMarketCap", - "Rubic", - "Rango", - "Sonarwatch", - "BinanceDex" - ], - "occurrences": 5 - }, - "0x121235cff4c59eec80b14c1d38b44e7de3a18287": { - "address": "0x121235cff4c59eec80b14c1d38b44e7de3a18287", - "symbol": "DKS", - "decimals": 18, - "name": "DarkShield", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x121235cff4c59eec80b14c1d38b44e7de3a18287.png", - "aggregators": [ - "PancakeCoinMarketCap", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 4 - }, - "0xf81733eae028656fe2b85625d27051f5f6910936": { - "address": "0xf81733eae028656fe2b85625d27051f5f6910936", - "symbol": "DOGE-1", - "decimals": 9, - "name": "Satellite Doge-1", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xf81733eae028656fe2b85625d27051f5f6910936.png", - "aggregators": ["PancakeCoinMarketCap", "Socket", "Rubic", "Rango"], - "occurrences": 4 - }, - "0xc44f8508e1de753e7c523f98639132eef2ad8ea5": { - "address": "0xc44f8508e1de753e7c523f98639132eef2ad8ea5", - "symbol": "DOGEMOB", - "decimals": 18, - "name": "Dogemob", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xc44f8508e1de753e7c523f98639132eef2ad8ea5.png", - "aggregators": [ - "PancakeCoinMarketCap", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 4 - }, - "0x368ce786ea190f32439074e8d22e12ecb718b44c": { - "address": "0x368ce786ea190f32439074e8d22e12ecb718b44c", - "symbol": "EPIK", - "decimals": 18, - "name": "Epik Prime", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x368ce786ea190f32439074e8d22e12ecb718b44c.png", - "aggregators": [ - "PancakeCoinMarketCap", - "Socket", - "Rubic", - "Sonarwatch" - ], - "occurrences": 4 - }, - "0x6f9f0c4ad9af7ebd61ac5a1d4e0f2227f7b0e5f9": { - "address": "0x6f9f0c4ad9af7ebd61ac5a1d4e0f2227f7b0e5f9", - "symbol": "ERA", - "decimals": 18, - "name": "Era7", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x6f9f0c4ad9af7ebd61ac5a1d4e0f2227f7b0e5f9.png", - "aggregators": ["PancakeExtended", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0x18b5f22266343ccd180c6285a66cc9a23dc262e9": { - "address": "0x18b5f22266343ccd180c6285a66cc9a23dc262e9", - "symbol": "EVU", - "decimals": 9, - "name": "Evulus", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x18b5f22266343ccd180c6285a66cc9a23dc262e9.png", - "aggregators": [ - "PancakeCoinMarketCap", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 4 - }, - "0xbb7d61d2511fd2e63f02178ca9b663458af9fc63": { - "address": "0xbb7d61d2511fd2e63f02178ca9b663458af9fc63", - "symbol": "EXVG", - "decimals": 18, - "name": "Exverse", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xbb7d61d2511fd2e63f02178ca9b663458af9fc63.png", - "aggregators": [ - "PancakeCoinMarketCap", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 4 - }, - "0xef7d50069406a2f5a53806f7250a6c0f17ad9dcd": { - "address": "0xef7d50069406a2f5a53806f7250a6c0f17ad9dcd", - "symbol": "FIU", - "decimals": 18, - "name": "beFITTER", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xef7d50069406a2f5a53806f7250a6c0f17ad9dcd.png", - "aggregators": [ - "PancakeCoinMarketCap", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 4 - }, - "0xa3abe68db1b8467b44715eb94542b20dc134f005": { - "address": "0xa3abe68db1b8467b44715eb94542b20dc134f005", - "symbol": "FLUF", - "decimals": 18, - "name": "Fluffy Coin", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xa3abe68db1b8467b44715eb94542b20dc134f005.png", - "aggregators": [ - "PancakeCoinMarketCap", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 4 - }, - "0x6d96c6c401423a23945c03bc8c42e7f82d24b9e0": { - "address": "0x6d96c6c401423a23945c03bc8c42e7f82d24b9e0", - "symbol": "FRBK", - "decimals": 8, - "name": "FreeBnk", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x6d96c6c401423a23945c03bc8c42e7f82d24b9e0.png", - "aggregators": [ - "PancakeCoinMarketCap", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 4 - }, - "0x4437743ac02957068995c48e08465e0ee1769fbe": { - "address": "0x4437743ac02957068995c48e08465e0ee1769fbe", - "symbol": "FTS", - "decimals": 18, - "name": "Fortress Loans", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x4437743ac02957068995c48e08465e0ee1769fbe.png", - "aggregators": [ - "PancakeCoinMarketCap", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 4 - }, - "0x1236a887ef31b4d32e1f0a2b5e4531f52cec7e75": { - "address": "0x1236a887ef31b4d32e1f0a2b5e4531f52cec7e75", - "symbol": "GAMI", - "decimals": 6, - "name": "GAMI WORLD", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x1236a887ef31b4d32e1f0a2b5e4531f52cec7e75.png", - "aggregators": [ - "PancakeCoinMarketCap", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 4 - }, - "0xbac1df744df160877cdc45e13d0394c06bc388ff": { - "address": "0xbac1df744df160877cdc45e13d0394c06bc388ff", - "symbol": "GEM", - "decimals": 18, - "name": "NFTmall", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xbac1df744df160877cdc45e13d0394c06bc388ff.png", - "aggregators": [ - "PancakeCoinMarketCap", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 4 - }, - "0x72ff5742319ef07061836f5c924ac6d72c919080": { - "address": "0x72ff5742319ef07061836f5c924ac6d72c919080", - "symbol": "GFT", - "decimals": 18, - "name": "Gifto", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x72ff5742319ef07061836f5c924ac6d72c919080.png", - "aggregators": [ - "PancakeCoinMarketCap", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 4 - }, - "0xa90da9e3c71ddfcc2d793f80029acbd21a4a0db6": { - "address": "0xa90da9e3c71ddfcc2d793f80029acbd21a4a0db6", - "symbol": "GGR", - "decimals": 18, - "name": "GAGARIN", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xa90da9e3c71ddfcc2d793f80029acbd21a4a0db6.png", - "aggregators": [ - "PancakeCoinMarketCap", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 4 - }, - "0x9bae1a6bd435cd0deb62e7517ea948b5eb6eb497": { - "address": "0x9bae1a6bd435cd0deb62e7517ea948b5eb6eb497", - "symbol": "GWGW", - "decimals": 18, - "name": "GoWrap", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x9bae1a6bd435cd0deb62e7517ea948b5eb6eb497.png", - "aggregators": [ - "PancakeCoinMarketCap", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 4 - }, - "0x3107c0a1126268ca303f8d99c712392fa596e6d7": { - "address": "0x3107c0a1126268ca303f8d99c712392fa596e6d7", - "symbol": "GXT", - "decimals": 18, - "name": "Gem Exchange and Trading", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x3107c0a1126268ca303f8d99c712392fa596e6d7.png", - "aggregators": ["PancakeCoinMarketCap", "Socket", "Rubic", "Rango"], - "occurrences": 4 - }, - "0xb6b8ccd230bb4235c7b87986274e7ab550b72261": { - "address": "0xb6b8ccd230bb4235c7b87986274e7ab550b72261", - "symbol": "HALO", - "decimals": 18, - "name": "HALOnft.art", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xb6b8ccd230bb4235c7b87986274e7ab550b72261.png", - "aggregators": [ - "PancakeCoinMarketCap", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 4 - }, - "0x8cd0d76c0ad377378ab6ce878a7be686223497ee": { - "address": "0x8cd0d76c0ad377378ab6ce878a7be686223497ee", - "symbol": "HDV", - "decimals": 5, - "name": "Hydraverse", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x8cd0d76c0ad377378ab6ce878a7be686223497ee.png", - "aggregators": [ - "PancakeCoinMarketCap", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 4 - }, - "0x261510dd6257494eea1dda7618dbe8a7b87870dd": { - "address": "0x261510dd6257494eea1dda7618dbe8a7b87870dd", - "symbol": "HEROES", - "decimals": 12, - "name": "Dehero Community", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x261510dd6257494eea1dda7618dbe8a7b87870dd.png", - "aggregators": [ - "PancakeCoinMarketCap", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 4 - }, - "0xb626213cb1d52caa1ed71e2a0e62c0113ed8d642": { - "address": "0xb626213cb1d52caa1ed71e2a0e62c0113ed8d642", - "symbol": "HGHG", - "decimals": 8, - "name": "HUGHUG", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xb626213cb1d52caa1ed71e2a0e62c0113ed8d642.png", - "aggregators": [ - "PancakeCoinMarketCap", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 4 - }, - "0x1cc1aca0dae2d6c4a0e8ae7b4f2d01eabbc435ee": { - "address": "0x1cc1aca0dae2d6c4a0e8ae7b4f2d01eabbc435ee", - "symbol": "ISHND", - "decimals": 18, - "name": "StrongHands Finance", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x1cc1aca0dae2d6c4a0e8ae7b4f2d01eabbc435ee.png", - "aggregators": [ - "PancakeCoinMarketCap", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 4 - }, - "0xf94e94a6c5001886818def76097a0fd1ed049ba5": { - "address": "0xf94e94a6c5001886818def76097a0fd1ed049ba5", - "symbol": "JWIF", - "decimals": 9, - "name": "Jerrywifhat", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xf94e94a6c5001886818def76097a0fd1ed049ba5.png", - "aggregators": [ - "PancakeCoinMarketCap", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 4 - }, - "0xe64017bdacbe7dfc84886c3704a26d566e7550de": { - "address": "0xe64017bdacbe7dfc84886c3704a26d566e7550de", - "symbol": "KKT", - "decimals": 18, - "name": "Kingdom Karnage", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xe64017bdacbe7dfc84886c3704a26d566e7550de.png", - "aggregators": [ - "PancakeCoinMarketCap", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 4 - }, - "0xcfefa64b0ddd611b125157c41cd3827f2e8e8615": { - "address": "0xcfefa64b0ddd611b125157c41cd3827f2e8e8615", - "symbol": "KPAD", - "decimals": 18, - "name": "KickPad", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xcfefa64b0ddd611b125157c41cd3827f2e8e8615.png", - "aggregators": [ - "PancakeCoinMarketCap", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 4 - }, - "0xc8a11f433512c16ed895245f34bcc2ca44eb06bd": { - "address": "0xc8a11f433512c16ed895245f34bcc2ca44eb06bd", - "symbol": "KSN", - "decimals": 18, - "name": "Kissan", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xc8a11f433512c16ed895245f34bcc2ca44eb06bd.png", - "aggregators": [ - "PancakeCoinMarketCap", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 4 - }, - "0x5d0e95c15ca50f13fb86938433269d03112409fe": { - "address": "0x5d0e95c15ca50f13fb86938433269d03112409fe", - "symbol": "KWS", - "decimals": 18, - "name": "Knight War Spirits", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x5d0e95c15ca50f13fb86938433269d03112409fe.png", - "aggregators": [ - "PancakeCoinMarketCap", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 4 - }, - "0xd9474595edb03e35c5843335f90eb18671921246": { - "address": "0xd9474595edb03e35c5843335f90eb18671921246", - "symbol": "LFC", - "decimals": 9, - "name": "Supernova Shards Life Coin", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xd9474595edb03e35c5843335f90eb18671921246.png", - "aggregators": [ - "PancakeCoinMarketCap", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 4 - }, - "0xf93f6b686f4a6557151455189a9173735d668154": { - "address": "0xf93f6b686f4a6557151455189a9173735d668154", - "symbol": "LFG", - "decimals": 18, - "name": "LFG Token", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xf93f6b686f4a6557151455189a9173735d668154.png", - "aggregators": ["PancakeCoinMarketCap", "Socket", "Rubic", "Rango"], - "occurrences": 4 - }, - "0x7969dc3c6e925bccbea9f7fc466a63c74f0115b8": { - "address": "0x7969dc3c6e925bccbea9f7fc466a63c74f0115b8", - "symbol": "LION", - "decimals": 18, - "name": "Lion Token", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x7969dc3c6e925bccbea9f7fc466a63c74f0115b8.png", - "aggregators": ["PancakeCoinMarketCap", "Socket", "Rubic", "Rango"], - "occurrences": 4 - }, - "0xcdc3a010a3473c0c4b2cb03d8489d6ba387b83cd": { - "address": "0xcdc3a010a3473c0c4b2cb03d8489d6ba387b83cd", - "symbol": "LIVETHE", - "decimals": 18, - "name": "Liquid Driver liveTHE", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xcdc3a010a3473c0c4b2cb03d8489d6ba387b83cd.png", - "aggregators": ["PancakeCoinGecko", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0xfd54e565e6de7509b07cdba5769178045f212530": { - "address": "0xfd54e565e6de7509b07cdba5769178045f212530", - "symbol": "MAO", - "decimals": 18, - "name": "Mao", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xfd54e565e6de7509b07cdba5769178045f212530.png", - "aggregators": [ - "PancakeCoinMarketCap", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 4 - }, - "0xc32bb619966b9a56cf2472528a36fd099ce979e0": { - "address": "0xc32bb619966b9a56cf2472528a36fd099ce979e0", - "symbol": "MATRIX", - "decimals": 18, - "name": "Matrix Labs", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xc32bb619966b9a56cf2472528a36fd099ce979e0.png", - "aggregators": ["PancakeCoinMarketCap", "Socket", "Rubic", "Rango"], - "occurrences": 4 - }, - "0xc7b7844494c516b840a7a4575ff3e60ff0f056a9": { - "address": "0xc7b7844494c516b840a7a4575ff3e60ff0f056a9", - "symbol": "MECH", - "decimals": 18, - "name": "Mech Master", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xc7b7844494c516b840a7a4575ff3e60ff0f056a9.png", - "aggregators": [ - "PancakeCoinMarketCap", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 4 - }, - "0x2d5c9167fdd5c068c8fcb8992e6af639b42fbf70": { - "address": "0x2d5c9167fdd5c068c8fcb8992e6af639b42fbf70", - "symbol": "MERGE", - "decimals": 18, - "name": "Merge", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x2d5c9167fdd5c068c8fcb8992e6af639b42fbf70.png", - "aggregators": [ - "PancakeCoinMarketCap", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 4 - }, - "0x10a12969cb08a8d88d4bfb5d1fa317d41e0fdab3": { - "address": "0x10a12969cb08a8d88d4bfb5d1fa317d41e0fdab3", - "symbol": "MGOD", - "decimals": 18, - "name": "MetaGods", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x10a12969cb08a8d88d4bfb5d1fa317d41e0fdab3.png", - "aggregators": [ - "PancakeCoinMarketCap", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 4 - }, - "0x6a6ccf15b38da4b5b0ef4c8fe9fefcb472a893f9": { - "address": "0x6a6ccf15b38da4b5b0ef4c8fe9fefcb472a893f9", - "symbol": "MNST", - "decimals": 18, - "name": "MoonStarter", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x6a6ccf15b38da4b5b0ef4c8fe9fefcb472a893f9.png", - "aggregators": [ - "PancakeCoinMarketCap", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 4 - }, - "0x861f1e1397dad68289e8f6a09a2ebb567f1b895c": { - "address": "0x861f1e1397dad68289e8f6a09a2ebb567f1b895c", - "symbol": "MNZ", - "decimals": 18, - "name": "Menzy", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x861f1e1397dad68289e8f6a09a2ebb567f1b895c.png", - "aggregators": [ - "PancakeCoinMarketCap", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 4 - }, - "0x27d72484f1910f5d0226afa4e03742c9cd2b297a": { - "address": "0x27d72484f1910f5d0226afa4e03742c9cd2b297a", - "symbol": "MSCP", - "decimals": 18, - "name": "Moonscape", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x27d72484f1910f5d0226afa4e03742c9cd2b297a.png", - "aggregators": [ - "PancakeCoinMarketCap", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 4 - }, - "0x496cc0b4ee12aa2ac4c42e93067484e7ff50294b": { - "address": "0x496cc0b4ee12aa2ac4c42e93067484e7ff50294b", - "symbol": "MTS", - "decimals": 18, - "name": "Metastrike", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x496cc0b4ee12aa2ac4c42e93067484e7ff50294b.png", - "aggregators": [ - "PancakeCoinMarketCap", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 4 - }, - "0x8c21cef3c0f25e7fa267e33602702e3f91775360": { - "address": "0x8c21cef3c0f25e7fa267e33602702e3f91775360", - "symbol": "NERVE", - "decimals": 18, - "name": "NerveFlux", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x8c21cef3c0f25e7fa267e33602702e3f91775360.png", - "aggregators": [ - "PancakeCoinMarketCap", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 4 - }, - "0xb9c255c115636d8cbe107fc953364b243cacdbce": { - "address": "0xb9c255c115636d8cbe107fc953364b243cacdbce", - "symbol": "NEURALAI", - "decimals": 18, - "name": "Neural AI", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xb9c255c115636d8cbe107fc953364b243cacdbce.png", - "aggregators": [ - "PancakeCoinMarketCap", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 4 - }, - "0x8899ec96ed8c96b5c86c23c3f069c3def75b6d97": { - "address": "0x8899ec96ed8c96b5c86c23c3f069c3def75b6d97", - "symbol": "OFN", - "decimals": 18, - "name": "Openfabric AI", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x8899ec96ed8c96b5c86c23c3f069c3def75b6d97.png", - "aggregators": [ - "PancakeCoinMarketCap", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 4 - }, - "0x1851ccd370c444ff494d7505e6103959bce9f9d9": { - "address": "0x1851ccd370c444ff494d7505e6103959bce9f9d9", - "symbol": "ONUS", - "decimals": 18, - "name": "ONUS", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x1851ccd370c444ff494d7505e6103959bce9f9d9.png", - "aggregators": [ - "PancakeCoinMarketCap", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 4 - }, - "0x9d1d4de9cd93203147fac3bc0262a78e3a0e96bb": { - "address": "0x9d1d4de9cd93203147fac3bc0262a78e3a0e96bb", - "symbol": "PBUX", - "decimals": 18, - "name": "Playbux", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x9d1d4de9cd93203147fac3bc0262a78e3a0e96bb.png", - "aggregators": [ - "PancakeCoinMarketCap", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 4 - }, - "0x734548a9e43d2d564600b1b2ed5be9c2b911c6ab": { - "address": "0x734548a9e43d2d564600b1b2ed5be9c2b911c6ab", - "symbol": "PEEL", - "decimals": 18, - "name": "Meta Apes PEEL", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x734548a9e43d2d564600b1b2ed5be9c2b911c6ab.png", - "aggregators": ["PancakeExtended", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0xef00278d7eadf3b2c05267a2f185e468ad7eab7d": { - "address": "0xef00278d7eadf3b2c05267a2f185e468ad7eab7d", - "symbol": "PEPE", - "decimals": 18, - "name": "PEPE PAD", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xef00278d7eadf3b2c05267a2f185e468ad7eab7d.png", - "aggregators": ["PancakeCoinMarketCap", "Socket", "Rubic", "Rango"], - "occurrences": 4 - }, - "0xd069599e718f963bd84502b49ba8f8657faf5b3a": { - "address": "0xd069599e718f963bd84502b49ba8f8657faf5b3a", - "symbol": "PLAY", - "decimals": 18, - "name": "PLAY", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xd069599e718f963bd84502b49ba8f8657faf5b3a.png", - "aggregators": ["PancakeExtended", "Socket", "Rubic", "Rango"], - "occurrences": 4 - }, - "0xb4357054c3da8d46ed642383f03139ac7f090343": { - "address": "0xb4357054c3da8d46ed642383f03139ac7f090343", - "symbol": "PORT3", - "decimals": 18, - "name": "Port3 Network", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xb4357054c3da8d46ed642383f03139ac7f090343.png", - "aggregators": ["PancakeExtended", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0x93bb13e90678ccd8bbab07d1daef15086746dc9b": { - "address": "0x93bb13e90678ccd8bbab07d1daef15086746dc9b", - "symbol": "PPAD", - "decimals": 18, - "name": "PlayPad", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x93bb13e90678ccd8bbab07d1daef15086746dc9b.png", - "aggregators": [ - "PancakeCoinMarketCap", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 4 - }, - "0x24ef78c7092d255ed14a0281ac1800c359af3afe": { - "address": "0x24ef78c7092d255ed14a0281ac1800c359af3afe", - "symbol": "RAB", - "decimals": 18, - "name": "Rabbit Wallet", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x24ef78c7092d255ed14a0281ac1800c359af3afe.png", - "aggregators": [ - "PancakeCoinMarketCap", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 4 - }, - "0xe91cd52bd65fe23a3eae40e3eb87180e8306399f": { - "address": "0xe91cd52bd65fe23a3eae40e3eb87180e8306399f", - "symbol": "REAL", - "decimals": 18, - "name": "Real Realm", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xe91cd52bd65fe23a3eae40e3eb87180e8306399f.png", - "aggregators": [ - "PancakeCoinMarketCap", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 4 - }, - "0x9ed7e4b1bff939ad473da5e7a218c771d1569456": { - "address": "0x9ed7e4b1bff939ad473da5e7a218c771d1569456", - "symbol": "REUNI", - "decimals": 6, - "name": "Reunit Token", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x9ed7e4b1bff939ad473da5e7a218c771d1569456.png", - "aggregators": ["PancakeCoinMarketCap", "Socket", "Rubic", "Rango"], - "occurrences": 4 - }, - "0x25382fb31e4b22e0ea09cb0761863df5ad97ed72": { - "address": "0x25382fb31e4b22e0ea09cb0761863df5ad97ed72", - "symbol": "RGEN", - "decimals": 18, - "name": "Paragen", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x25382fb31e4b22e0ea09cb0761863df5ad97ed72.png", - "aggregators": [ - "PancakeCoinMarketCap", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 4 - }, - "0xfa262f303aa244f9cc66f312f0755d89c3793192": { - "address": "0xfa262f303aa244f9cc66f312f0755d89c3793192", - "symbol": "RGP", - "decimals": 18, - "name": "Rigel Protocol", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xfa262f303aa244f9cc66f312f0755d89c3793192.png", - "aggregators": [ - "PancakeCoinMarketCap", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 4 - }, - "0x1a3057027032a1af433f6f596cab15271e4d8196": { - "address": "0x1a3057027032a1af433f6f596cab15271e4d8196", - "symbol": "ROAD", - "decimals": 18, - "name": "Yellow Road", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x1a3057027032a1af433f6f596cab15271e4d8196.png", - "aggregators": [ - "PancakeCoinMarketCap", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 4 - }, - "0xb350aebaedb1ed3269b0e25d5e593a9bb4b9f9d5": { - "address": "0xb350aebaedb1ed3269b0e25d5e593a9bb4b9f9d5", - "symbol": "RYOSHI", - "decimals": 18, - "name": "Ryoshi", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xb350aebaedb1ed3269b0e25d5e593a9bb4b9f9d5.png", - "aggregators": [ - "PancakeCoinMarketCap", - "Socket", - "Rubic", - "Sonarwatch" - ], - "occurrences": 4 - }, - "0x8d9fb713587174ee97e91866050c383b5cee6209": { - "address": "0x8d9fb713587174ee97e91866050c383b5cee6209", - "symbol": "SCAR", - "decimals": 18, - "name": "ScarQuest", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x8d9fb713587174ee97e91866050c383b5cee6209.png", - "aggregators": [ - "PancakeCoinMarketCap", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 4 - }, - "0x5392ff4a9bd006dc272c1855af6640e17cc5ec0b": { - "address": "0x5392ff4a9bd006dc272c1855af6640e17cc5ec0b", - "symbol": "SFEX", - "decimals": 18, - "name": "SafeLaunch", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x5392ff4a9bd006dc272c1855af6640e17cc5ec0b.png", - "aggregators": [ - "PancakeCoinMarketCap", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 4 - }, - "0x6f51a1674befdd77f7ab1246b83adb9f13613762": { - "address": "0x6f51a1674befdd77f7ab1246b83adb9f13613762", - "symbol": "SNFTS", - "decimals": 18, - "name": "Seedify NFT Space", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x6f51a1674befdd77f7ab1246b83adb9f13613762.png", - "aggregators": [ - "PancakeCoinMarketCap", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 4 - }, - "0x317eb4ad9cfac6232f0046831322e895507bcbeb": { - "address": "0x317eb4ad9cfac6232f0046831322e895507bcbeb", - "symbol": "TDX", - "decimals": 18, - "name": "Tidex", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x317eb4ad9cfac6232f0046831322e895507bcbeb.png", - "aggregators": [ - "PancakeCoinMarketCap", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 4 - }, - "0x0c1253a30da9580472064a91946c5ce0c58acf7f": { - "address": "0x0c1253a30da9580472064a91946c5ce0c58acf7f", - "symbol": "TITA", - "decimals": 18, - "name": "Titan Hunters", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x0c1253a30da9580472064a91946c5ce0c58acf7f.png", - "aggregators": [ - "PancakeCoinMarketCap", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 4 - }, - "0x7849ed1447250d0b896f89b58f3075b127ca29b3": { - "address": "0x7849ed1447250d0b896f89b58f3075b127ca29b3", - "symbol": "TKP", - "decimals": 18, - "name": "TOKPIE", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x7849ed1447250d0b896f89b58f3075b127ca29b3.png", - "aggregators": ["PancakeCoinMarketCap", "Socket", "Rubic", "Rango"], - "occurrences": 4 - }, - "0xb346c52874c7023df183068c39478c3b7b2515bc": { - "address": "0xb346c52874c7023df183068c39478c3b7b2515bc", - "symbol": "TRUEPNL", - "decimals": 18, - "name": "PNL", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xb346c52874c7023df183068c39478c3b7b2515bc.png", - "aggregators": ["PancakeCoinMarketCap", "Socket", "Rubic", "Rango"], - "occurrences": 4 - }, - "0x39703a67bac0e39f9244d97f4c842d15fbad9c1f": { - "address": "0x39703a67bac0e39f9244d97f4c842d15fbad9c1f", - "symbol": "TTK", - "decimals": 18, - "name": "The Three Kingdoms", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x39703a67bac0e39f9244d97f4c842d15fbad9c1f.png", - "aggregators": [ - "PancakeCoinMarketCap", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 4 - }, - "0xedf3ce4dd6725650a8e9398e5c6398d061fa7955": { - "address": "0xedf3ce4dd6725650a8e9398e5c6398d061fa7955", - "symbol": "VEMP", - "decimals": 18, - "name": "vEmpire Gamer Token", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xedf3ce4dd6725650a8e9398e5c6398d061fa7955.png", - "aggregators": ["PancakeCoinMarketCap", "Socket", "Rubic", "Rango"], - "occurrences": 4 - }, - "0x4d61577d8fd2208a0afb814ea089fdeae19ed202": { - "address": "0x4d61577d8fd2208a0afb814ea089fdeae19ed202", - "symbol": "VFOX", - "decimals": 18, - "name": "VFOX", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x4d61577d8fd2208a0afb814ea089fdeae19ed202.png", - "aggregators": [ - "PancakeCoinMarketCap", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 4 - }, - "0xfb526228ff1c019e4604c7e7988c097d96bd5b70": { - "address": "0xfb526228ff1c019e4604c7e7988c097d96bd5b70", - "symbol": "VGO", - "decimals": 8, - "name": "Virgo", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xfb526228ff1c019e4604c7e7988c097d96bd5b70.png", - "aggregators": [ - "PancakeCoinMarketCap", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 4 - }, - "0xce237db5a3458f1250a553cf395c9c3cf658b3d1": { - "address": "0xce237db5a3458f1250a553cf395c9c3cf658b3d1", - "symbol": "VIZ", - "decimals": 18, - "name": "VIZ Token", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xce237db5a3458f1250a553cf395c9c3cf658b3d1.png", - "aggregators": ["PancakeCoinGecko", "Socket", "Rubic", "Rango"], - "occurrences": 4 - }, - "0x37ac5f3bfd18a164fc6cf0f0f0ecd334d9179d57": { - "address": "0x37ac5f3bfd18a164fc6cf0f0f0ecd334d9179d57", - "symbol": "VPK", - "decimals": 18, - "name": "Vulture Peak", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x37ac5f3bfd18a164fc6cf0f0f0ecd334d9179d57.png", - "aggregators": [ - "PancakeCoinMarketCap", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 4 - }, - "0x5d37abafd5498b0e7af753a2e83bd4f0335aa89f": { - "address": "0x5d37abafd5498b0e7af753a2e83bd4f0335aa89f", - "symbol": "WECO", - "decimals": 18, - "name": "WECOIN", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x5d37abafd5498b0e7af753a2e83bd4f0335aa89f.png", - "aggregators": [ - "PancakeCoinMarketCap", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 4 - }, - "0x8888888837f84a7a82668e0320ac454f5945d0b9": { - "address": "0x8888888837f84a7a82668e0320ac454f5945d0b9", - "symbol": "WORK", - "decimals": 18, - "name": "Work X", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x8888888837f84a7a82668e0320ac454f5945d0b9.png", - "aggregators": [ - "PancakeCoinMarketCap", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 4 - }, - "0x6ad0b271f4b3d7651ae9947a18bae29ca20d83eb": { - "address": "0x6ad0b271f4b3d7651ae9947a18bae29ca20d83eb", - "symbol": "WRKX", - "decimals": 18, - "name": "Web3 Workx", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x6ad0b271f4b3d7651ae9947a18bae29ca20d83eb.png", - "aggregators": [ - "PancakeCoinMarketCap", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 4 - }, - "0x0009ae5a69b037ea74a900783fab457fa605ae5d": { - "address": "0x0009ae5a69b037ea74a900783fab457fa605ae5d", - "symbol": "XAI", - "decimals": 9, - "name": "Grok", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x0009ae5a69b037ea74a900783fab457fa605ae5d.png", - "aggregators": ["PancakeCoinMarketCap", "Socket", "Rubic", "Rango"], - "occurrences": 4 - }, - "0xb81408a1cc2f4be70a6a3178d351ca95a77c5a06": { - "address": "0xb81408a1cc2f4be70a6a3178d351ca95a77c5a06", - "symbol": "XODEX", - "decimals": 18, - "name": "XODEX", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xb81408a1cc2f4be70a6a3178d351ca95a77c5a06.png", - "aggregators": [ - "PancakeCoinMarketCap", - "Socket", - "Rubic", - "Sonarwatch" - ], - "occurrences": 4 - }, - "0x88691f292b76bf4d2caa5678a54515fae77c33af": { - "address": "0x88691f292b76bf4d2caa5678a54515fae77c33af", - "symbol": "XPE", - "decimals": 18, - "name": "Xpense", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x88691f292b76bf4d2caa5678a54515fae77c33af.png", - "aggregators": [ - "PancakeCoinMarketCap", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 4 - }, - "0x8cf8238abf7b933bf8bb5ea2c7e4be101c11de2a": { - "address": "0x8cf8238abf7b933bf8bb5ea2c7e4be101c11de2a", - "symbol": "XPNET", - "decimals": 18, - "name": "XP Network", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x8cf8238abf7b933bf8bb5ea2c7e4be101c11de2a.png", - "aggregators": [ - "PancakeCoinMarketCap", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 4 - }, - "0xb653e9da791dd33e24cd687260c7c281928411ba": { - "address": "0xb653e9da791dd33e24cd687260c7c281928411ba", - "symbol": "YFO", - "decimals": 18, - "name": "YFIONE", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xb653e9da791dd33e24cd687260c7c281928411ba.png", - "aggregators": [ - "PancakeCoinMarketCap", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 4 - }, - "0x57c81885faad67fc4de892102f6fead3b9215f6b": { - "address": "0x57c81885faad67fc4de892102f6fead3b9215f6b", - "symbol": "ZENITH", - "decimals": 18, - "name": "Zenith Chain", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x57c81885faad67fc4de892102f6fead3b9215f6b.png", - "aggregators": [ - "PancakeCoinMarketCap", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 4 - }, - "0x1d1eb8e8293222e1a29d2c0e4ce6c0acfd89aaac": { - "address": "0x1d1eb8e8293222e1a29d2c0e4ce6c0acfd89aaac", - "symbol": "HAKKA", - "decimals": 18, - "name": "HAKKA", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x1d1eb8e8293222e1a29d2c0e4ce6c0acfd89aaac.png", - "aggregators": ["PancakeExtended", "Socket", "Rubic", "Rango"], - "occurrences": 4 - }, - "0x6a0b66710567b6beb81a71f7e9466450a91a384b": { - "address": "0x6a0b66710567b6beb81a71f7e9466450a91a384b", - "symbol": "PEX", - "decimals": 18, - "name": "PearDAO", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x6a0b66710567b6beb81a71f7e9466450a91a384b.png", - "aggregators": ["PancakeExtended", "Rubic", "Squid", "Rango"], - "occurrences": 4 - }, - "0x0feadcc3824e7f3c12f40e324a60c23ca51627fc": { - "address": "0x0feadcc3824e7f3c12f40e324a60c23ca51627fc", - "symbol": "WARDEN", - "decimals": 18, - "name": "WardenSwap Token", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x0feadcc3824e7f3c12f40e324a60c23ca51627fc.png", - "aggregators": ["PancakeCoinMarketCap", "1inch", "Rubic", "Rango"], - "occurrences": 4 - }, - "0x96dd399f9c3afda1f194182f71600f1b65946501": { - "address": "0x96dd399f9c3afda1f194182f71600f1b65946501", - "symbol": "COS", - "decimals": 18, - "name": "Contentos", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x96dd399f9c3afda1f194182f71600f1b65946501.png", - "aggregators": [ - "PancakeExtended", - "1inch", - "Rubic", - "Rango", - "BinanceDex" - ], - "occurrences": 5 - }, - "0xc6c4575dc40ac63a5f89b5c4ae0b3a9134c52c4c": { - "address": "0xc6c4575dc40ac63a5f89b5c4ae0b3a9134c52c4c", - "symbol": "NML", - "decimals": 18, - "name": "zoey - your longevity coach by NetMind XYZ", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xc6c4575dc40ac63a5f89b5c4ae0b3a9134c52c4c.png", - "aggregators": ["PancakeExtended", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0xaff2e841851700d1fc101995ee6b81ae21bb87d7": { - "address": "0xaff2e841851700d1fc101995ee6b81ae21bb87d7", - "symbol": "SPK", - "decimals": 18, - "name": "Spark", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xaff2e841851700d1fc101995ee6b81ae21bb87d7.png", - "aggregators": ["PancakeExtended", "Socket", "Rubic"], - "occurrences": 3 - }, - "0xf625b131336b4544907e160507aa8d8568104444": { - "address": "0xf625b131336b4544907e160507aa8d8568104444", - "symbol": "GRDM", - "decimals": 18, - "name": "GridiumAI", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xf625b131336b4544907e160507aa8d8568104444.png", - "aggregators": ["PancakeExtended", "LiFi", "Rubic", "Rango"], - "occurrences": 4 - }, - "0x194b302a4b0a79795fb68e2adf1b8c9ec5ff8d1f": { - "address": "0x194b302a4b0a79795fb68e2adf1b8c9ec5ff8d1f", - "symbol": "WKEYDAO", - "decimals": 9, - "name": "WebKey DAO", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x194b302a4b0a79795fb68e2adf1b8c9ec5ff8d1f.png", - "aggregators": ["PancakeExtended", "Rubic", "Squid", "Rango"], - "occurrences": 4 - }, - "0x932fb7f52adbc34ff81b4342b8c036b7b8ac4444": { - "address": "0x932fb7f52adbc34ff81b4342b8c036b7b8ac4444", - "symbol": "DUST", - "decimals": 18, - "name": "Dust", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x932fb7f52adbc34ff81b4342b8c036b7b8ac4444.png", - "aggregators": ["PancakeExtended", "Socket", "Rubic", "Rango"], - "occurrences": 4 - }, - "0x4829a1d1fb6ded1f81d26868ab8976648baf9893": { - "address": "0x4829a1d1fb6ded1f81d26868ab8976648baf9893", - "symbol": "RTX", - "decimals": 18, - "name": "RateX", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x4829a1d1fb6ded1f81d26868ab8976648baf9893.png", - "aggregators": ["PancakeExtended", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x70f2eadf1ca1969ff42b0c78e9da519e8937cbaf": { - "address": "0x70f2eadf1ca1969ff42b0c78e9da519e8937cbaf", - "symbol": "EDGE", - "decimals": 18, - "name": "Edge", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x70f2eadf1ca1969ff42b0c78e9da519e8937cbaf.png", - "aggregators": ["PancakeExtended", "LiFi", "Socket", "Rango"], - "occurrences": 4 - }, - "0x67aa700ab0110cc52bf7f308fe25068e87a0f581": { - "address": "0x67aa700ab0110cc52bf7f308fe25068e87a0f581", - "symbol": "PUNDIAI", - "decimals": 18, - "name": "Pundi AI", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x67aa700ab0110cc52bf7f308fe25068e87a0f581.png", - "aggregators": ["LiFi", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0x5f88ab06e8dfe89df127b2430bba4af600866035": { - "address": "0x5f88ab06e8dfe89df127b2430bba4af600866035", - "symbol": "KAVA", - "decimals": 6, - "name": "KAVA", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x5f88ab06e8dfe89df127b2430bba4af600866035.png", - "aggregators": ["Socket", "Rubic", "Rango", "SushiSwap"], - "occurrences": 4 - }, - "0xadbaf88b39d37dc68775ed1541f1bf83a5a45feb": { - "address": "0xadbaf88b39d37dc68775ed1541f1bf83a5a45feb", - "symbol": "COTI", - "decimals": 18, - "name": "COTI Token", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xadbaf88b39d37dc68775ed1541f1bf83a5a45feb.png", - "aggregators": ["PancakeCoinMarketCap", "Socket", "Rubic"], - "occurrences": 3 - }, - "0xb1ced2e320e3f4c8e3511b1dc59203303493f382": { - "address": "0xb1ced2e320e3f4c8e3511b1dc59203303493f382", - "symbol": "MOONLIGHT", - "decimals": 9, - "name": "Moonlight Token", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xb1ced2e320e3f4c8e3511b1dc59203303493f382.png", - "aggregators": ["PancakeCoinMarketCap", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x50ba8bf9e34f0f83f96a340387d1d3888ba4b3b5": { - "address": "0x50ba8bf9e34f0f83f96a340387d1d3888ba4b3b5", - "symbol": "ZMBE", - "decimals": 18, - "name": "RugZombie", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x50ba8bf9e34f0f83f96a340387d1d3888ba4b3b5.png", - "aggregators": ["PancakeCoinMarketCap", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x6ef238e9e8cd2a96740897761c18894fc086b9d0": { - "address": "0x6ef238e9e8cd2a96740897761c18894fc086b9d0", - "symbol": "MYRA", - "decimals": 18, - "name": "Mytheria", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x6ef238e9e8cd2a96740897761c18894fc086b9d0.png", - "aggregators": ["PancakeCoinMarketCap", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x2ffee7b4df74f7c6508a4af4d6d91058da5420d0": { - "address": "0x2ffee7b4df74f7c6508a4af4d6d91058da5420d0", - "symbol": "CHAINCADE", - "decimals": 9, - "name": "ChainCade", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x2ffee7b4df74f7c6508a4af4d6d91058da5420d0.png", - "aggregators": ["PancakeCoinMarketCap", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x3496212ec43cc49f5151ec4405efd4975e036f89": { - "address": "0x3496212ec43cc49f5151ec4405efd4975e036f89", - "symbol": "LGC", - "decimals": 18, - "name": "LiveGreen Coin", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x3496212ec43cc49f5151ec4405efd4975e036f89.png", - "aggregators": ["PancakeCoinMarketCap", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x98a2500a2c3b8877b0ed5ac3acc300c50bf7064b": { - "address": "0x98a2500a2c3b8877b0ed5ac3acc300c50bf7064b", - "symbol": "NOOT", - "decimals": 18, - "name": "NOOT", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x98a2500a2c3b8877b0ed5ac3acc300c50bf7064b.png", - "aggregators": ["PancakeCoinMarketCap", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x2947c22608d742af4e8c16d86f90a93969f13f8d": { - "address": "0x2947c22608d742af4e8c16d86f90a93969f13f8d", - "symbol": "CAKEBOT", - "decimals": 18, - "name": "Cakebot Token", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x2947c22608d742af4e8c16d86f90a93969f13f8d.png", - "aggregators": ["PancakeCoinMarketCap", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x52c1751c89fc913ed274d72e8d56dce4ee44a5cf": { - "address": "0x52c1751c89fc913ed274d72e8d56dce4ee44a5cf", - "symbol": "SCRL", - "decimals": 18, - "name": "Wizarre Scroll", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x52c1751c89fc913ed274d72e8d56dce4ee44a5cf.png", - "aggregators": ["PancakeCoinMarketCap", "Rubic", "Rango"], - "occurrences": 3 - }, - "0xa856098dcbc1b2b3a9c96c35c32bc4f71e49aed2": { - "address": "0xa856098dcbc1b2b3a9c96c35c32bc4f71e49aed2", - "symbol": "FINC", - "decimals": 18, - "name": "FinceptorToken", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xa856098dcbc1b2b3a9c96c35c32bc4f71e49aed2.png", - "aggregators": ["PancakeCoinMarketCap", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x30b5e345c79255101b8af22a19805a6fb96ddebb": { - "address": "0x30b5e345c79255101b8af22a19805a6fb96ddebb", - "symbol": "REV3L", - "decimals": 18, - "name": "REV3AL", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x30b5e345c79255101b8af22a19805a6fb96ddebb.png", - "aggregators": ["PancakeCoinMarketCap", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x7e2a35c746f2f7c240b664f1da4dd100141ae71f": { - "address": "0x7e2a35c746f2f7c240b664f1da4dd100141ae71f", - "symbol": "AIRI", - "decimals": 18, - "name": "aiRight Token", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x7e2a35c746f2f7c240b664f1da4dd100141ae71f.png", - "aggregators": ["PancakeCoinMarketCap", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x0808bf94d57c905f1236212654268ef82e1e594e": { - "address": "0x0808bf94d57c905f1236212654268ef82e1e594e", - "symbol": "RITE", - "decimals": 18, - "name": "RITE Coin", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x0808bf94d57c905f1236212654268ef82e1e594e.png", - "aggregators": ["PancakeCoinMarketCap", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x8a74bc8c372bc7f0e9ca3f6ac0df51be15aec47a": { - "address": "0x8a74bc8c372bc7f0e9ca3f6ac0df51be15aec47a", - "symbol": "PLSPAD", - "decimals": 18, - "name": "PULSEPAD.io", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x8a74bc8c372bc7f0e9ca3f6ac0df51be15aec47a.png", - "aggregators": ["PancakeCoinMarketCap", "Rubic", "Rango"], - "occurrences": 3 - }, - "0xcbe5bca571628894a38836b0bae833ff012f71d8": { - "address": "0xcbe5bca571628894a38836b0bae833ff012f71d8", - "symbol": "IRT", - "decimals": 18, - "name": "Infinity Rocket Token", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xcbe5bca571628894a38836b0bae833ff012f71d8.png", - "aggregators": ["PancakeCoinMarketCap", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x245d9f531757f83064ad808b4c9b220c703a4934": { - "address": "0x245d9f531757f83064ad808b4c9b220c703a4934", - "symbol": "GODE", - "decimals": 6, - "name": "Gode Chain", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x245d9f531757f83064ad808b4c9b220c703a4934.png", - "aggregators": ["PancakeCoinMarketCap", "Rubic", "Rango"], - "occurrences": 3 - }, - "0xca830317146bfdde71e7c0b880e2ec1f66e273ee": { - "address": "0xca830317146bfdde71e7c0b880e2ec1f66e273ee", - "symbol": "GULL", - "decimals": 18, - "name": "PolyGod", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xca830317146bfdde71e7c0b880e2ec1f66e273ee.png", - "aggregators": ["PancakeCoinMarketCap", "Rubic", "Sonarwatch"], - "occurrences": 3 - }, - "0xe356cb3efc9cb4320b945393a10fd71c77dc24a0": { - "address": "0xe356cb3efc9cb4320b945393a10fd71c77dc24a0", - "symbol": "TTM", - "decimals": 18, - "name": "Tradetomato Token", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xe356cb3efc9cb4320b945393a10fd71c77dc24a0.png", - "aggregators": ["PancakeCoinMarketCap", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x68ae2f202799be2008c89e2100257e66f77da1f3": { - "address": "0x68ae2f202799be2008c89e2100257e66f77da1f3", - "symbol": "PMT", - "decimals": 18, - "name": "Public Masterpiece Token", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x68ae2f202799be2008c89e2100257e66f77da1f3.png", - "aggregators": ["PancakeCoinMarketCap", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x8c6149aaea8161e2015fa563040a916e90d16dca": { - "address": "0x8c6149aaea8161e2015fa563040a916e90d16dca", - "symbol": "SMX", - "decimals": 8, - "name": "Snapmuse.io", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x8c6149aaea8161e2015fa563040a916e90d16dca.png", - "aggregators": ["PancakeCoinMarketCap", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x524d524b4c9366be706d3a90dcf70076ca037ae3": { - "address": "0x524d524b4c9366be706d3a90dcf70076ca037ae3", - "symbol": "RMRK", - "decimals": 18, - "name": "RMRK", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x524d524b4c9366be706d3a90dcf70076ca037ae3.png", - "aggregators": ["PancakeCoinMarketCap", "Rubic", "Rango"], - "occurrences": 3 - }, - "0xa0d96fd642156fc7e964949642257b3572f10cd6": { - "address": "0xa0d96fd642156fc7e964949642257b3572f10cd6", - "symbol": "BLOK", - "decimals": 18, - "name": "BLOK", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xa0d96fd642156fc7e964949642257b3572f10cd6.png", - "aggregators": ["PancakeCoinMarketCap", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x26433c8127d9b4e9b71eaa15111df99ea2eeb2f8": { - "address": "0x26433c8127d9b4e9b71eaa15111df99ea2eeb2f8", - "symbol": "MANA", - "decimals": 18, - "name": "Decentraland", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x26433c8127d9b4e9b71eaa15111df99ea2eeb2f8.png", - "aggregators": ["PancakeExtended", "Socket", "Rubic"], - "occurrences": 3 - }, - "0x658e64ffcf40d240a43d52ca9342140316ae44fa": { - "address": "0x658e64ffcf40d240a43d52ca9342140316ae44fa", - "symbol": "OIN", - "decimals": 8, - "name": "OIN", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x658e64ffcf40d240a43d52ca9342140316ae44fa.png", - "aggregators": ["PancakeExtended", "Rubic", "Rango"], - "occurrences": 3 - }, - "0xad86d0e9764ba90ddd68747d64bffbd79879a238": { - "address": "0xad86d0e9764ba90ddd68747d64bffbd79879a238", - "symbol": "PAID", - "decimals": 18, - "name": "PAID Network", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xad86d0e9764ba90ddd68747d64bffbd79879a238.png", - "aggregators": ["PancakeTop100", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x7062f2e2b917ed14b2b0833e9e0278cb4bc62c69": { - "address": "0x7062f2e2b917ed14b2b0833e9e0278cb4bc62c69", - "symbol": "ABN", - "decimals": 18, - "name": "Antofy", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x7062f2e2b917ed14b2b0833e9e0278cb4bc62c69.png", - "aggregators": ["PancakeCoinMarketCap", "Rubic", "Rango"], - "occurrences": 3 - }, - "0xf7b5fb4607abfe0ecf332c23cbdcc9e425b443a8": { - "address": "0xf7b5fb4607abfe0ecf332c23cbdcc9e425b443a8", - "symbol": "ACK", - "decimals": 18, - "name": "AcknoLedger", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xf7b5fb4607abfe0ecf332c23cbdcc9e425b443a8.png", - "aggregators": ["PancakeCoinMarketCap", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x4b4594bfe661919a8e2373eb175004da2989a479": { - "address": "0x4b4594bfe661919a8e2373eb175004da2989a479", - "symbol": "AIG", - "decimals": 18, - "name": "A.I. Genesis Official", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x4b4594bfe661919a8e2373eb175004da2989a479.png", - "aggregators": ["PancakeCoinMarketCap", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x5921dee8556c4593eefcfad3ca5e2f618606483b": { - "address": "0x5921dee8556c4593eefcfad3ca5e2f618606483b", - "symbol": "ANYMTLX", - "decimals": 18, - "name": "MTLX-ERC20", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x5921dee8556c4593eefcfad3ca5e2f618606483b.png", - "aggregators": ["PancakeExtended", "Rubic", "Rango"], - "occurrences": 3 - }, - "0xc0cc1e5761ba5786916fd055562551798e50d573": { - "address": "0xc0cc1e5761ba5786916fd055562551798e50d573", - "symbol": "ASY", - "decimals": 18, - "name": "ASYAGRO", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xc0cc1e5761ba5786916fd055562551798e50d573.png", - "aggregators": ["PancakeCoinMarketCap", "Rubic", "Rango"], - "occurrences": 3 - }, - "0xa2f46fe221f34dac4cf078e6946a7cb4e373ad28": { - "address": "0xa2f46fe221f34dac4cf078e6946a7cb4e373ad28", - "symbol": "BAFI", - "decimals": 18, - "name": "Bafi Finance", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xa2f46fe221f34dac4cf078e6946a7cb4e373ad28.png", - "aggregators": ["PancakeCoinMarketCap", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x140b890bf8e2fe3e26fcd516c75728fb20b31c4f": { - "address": "0x140b890bf8e2fe3e26fcd516c75728fb20b31c4f", - "symbol": "BUFFS", - "decimals": 4, - "name": "BuffSwap", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x140b890bf8e2fe3e26fcd516c75728fb20b31c4f.png", - "aggregators": ["PancakeCoinMarketCap", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x0f237db17aa4e6de062e6f052bd9c805789b01c3": { - "address": "0x0f237db17aa4e6de062e6f052bd9c805789b01c3", - "symbol": "COV", - "decimals": 18, - "name": "Covesting", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x0f237db17aa4e6de062e6f052bd9c805789b01c3.png", - "aggregators": ["PancakeCoinMarketCap", "Rubic", "Rango"], - "occurrences": 3 - }, - "0xde51d1599339809cafb8194189ce67d5bdca9e9e": { - "address": "0xde51d1599339809cafb8194189ce67d5bdca9e9e", - "symbol": "COWRIE", - "decimals": 18, - "name": "MYCOWRIE", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xde51d1599339809cafb8194189ce67d5bdca9e9e.png", - "aggregators": ["PancakeCoinMarketCap", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x8f9f2c61730932c99fae229a7265851aaaf9d59e": { - "address": "0x8f9f2c61730932c99fae229a7265851aaaf9d59e", - "symbol": "DONK", - "decimals": 18, - "name": "Donkey", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x8f9f2c61730932c99fae229a7265851aaaf9d59e.png", - "aggregators": ["PancakeCoinMarketCap", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x1294f4183763743c7c9519bec51773fb3acd78fd": { - "address": "0x1294f4183763743c7c9519bec51773fb3acd78fd", - "symbol": "FI", - "decimals": 18, - "name": "Fideum", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x1294f4183763743c7c9519bec51773fb3acd78fd.png", - "aggregators": ["PancakeCoinMarketCap", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x36e714d63b676236b72a0a4405f726337b06b6e5": { - "address": "0x36e714d63b676236b72a0a4405f726337b06b6e5", - "symbol": "GUT", - "decimals": 18, - "name": "Genesis Universe", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x36e714d63b676236b72a0a4405f726337b06b6e5.png", - "aggregators": ["PancakeCoinMarketCap", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x201bc9f242f74c47bbd898a5dc99cdcd81a21943": { - "address": "0x201bc9f242f74c47bbd898a5dc99cdcd81a21943", - "symbol": "IGU", - "decimals": 18, - "name": "IGU Token", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x201bc9f242f74c47bbd898a5dc99cdcd81a21943.png", - "aggregators": ["PancakeCoinMarketCap", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x257a8d1e03d17b8535a182301f15290f11674b53": { - "address": "0x257a8d1e03d17b8535a182301f15290f11674b53", - "symbol": "KWT", - "decimals": 18, - "name": "Kawaii Islands", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x257a8d1e03d17b8535a182301f15290f11674b53.png", - "aggregators": ["PancakeCoinMarketCap", "Rubic", "Rango"], - "occurrences": 3 - }, - "0xdd848e0cbfd3771dc7845b10072d973c375271e2": { - "address": "0xdd848e0cbfd3771dc7845b10072d973c375271e2", - "symbol": "LANC", - "decimals": 18, - "name": "Lanceria", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xdd848e0cbfd3771dc7845b10072d973c375271e2.png", - "aggregators": ["PancakeCoinMarketCap", "Rubic", "Rango"], - "occurrences": 3 - }, - "0xcebef3df1f3c5bfd90fde603e71f31a53b11944d": { - "address": "0xcebef3df1f3c5bfd90fde603e71f31a53b11944d", - "symbol": "LITT", - "decimals": 18, - "name": "LitLabToken", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xcebef3df1f3c5bfd90fde603e71f31a53b11944d.png", - "aggregators": ["PancakeCoinMarketCap", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x53f0e242ea207b6e9b63e0a53e788267aa99ff9b": { - "address": "0x53f0e242ea207b6e9b63e0a53e788267aa99ff9b", - "symbol": "MPG", - "decimals": 18, - "name": "Medping", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x53f0e242ea207b6e9b63e0a53e788267aa99ff9b.png", - "aggregators": ["PancakeCoinMarketCap", "Rubic", "Sonarwatch"], - "occurrences": 3 - }, - "0x6cda2862fd4b88ccfa522ffed66bc4277e7d9cc9": { - "address": "0x6cda2862fd4b88ccfa522ffed66bc4277e7d9cc9", - "symbol": "NEI", - "decimals": 18, - "name": "Neurashi", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x6cda2862fd4b88ccfa522ffed66bc4277e7d9cc9.png", - "aggregators": ["PancakeCoinMarketCap", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x3a2927e68749dd6ad0a568d7c05b587863c0bc10": { - "address": "0x3a2927e68749dd6ad0a568d7c05b587863c0bc10", - "symbol": "NNT", - "decimals": 18, - "name": "Nunu Spirits", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x3a2927e68749dd6ad0a568d7c05b587863c0bc10.png", - "aggregators": ["PancakeCoinMarketCap", "Rubic", "Rango"], - "occurrences": 3 - }, - "0xf1ca73caa1c7ad66af11147ba7d5636243af0493": { - "address": "0xf1ca73caa1c7ad66af11147ba7d5636243af0493", - "symbol": "REGU", - "decimals": 18, - "name": "Regular Presale", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xf1ca73caa1c7ad66af11147ba7d5636243af0493.png", - "aggregators": ["PancakeCoinMarketCap", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x87266413e5b64db72f11bb6795ee976545dbaf43": { - "address": "0x87266413e5b64db72f11bb6795ee976545dbaf43", - "symbol": "SHIBTC", - "decimals": 18, - "name": "Shibabitcoin", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x87266413e5b64db72f11bb6795ee976545dbaf43.png", - "aggregators": ["PancakeCoinMarketCap", "Rubic", "Rango"], - "occurrences": 3 - }, - "0xe2eb47954e821dc94e19013677004cd59be0b17f": { - "address": "0xe2eb47954e821dc94e19013677004cd59be0b17f", - "symbol": "TRL", - "decimals": 18, - "name": "Triall", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xe2eb47954e821dc94e19013677004cd59be0b17f.png", - "aggregators": ["PancakeCoinMarketCap", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x0a356f512f6fce740111ee04ab1699017a908680": { - "address": "0x0a356f512f6fce740111ee04ab1699017a908680", - "symbol": "UFARM", - "decimals": 18, - "name": "UniFarm", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x0a356f512f6fce740111ee04ab1699017a908680.png", - "aggregators": ["PancakeCoinMarketCap", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x50e756a22ff5cee3559d18b9d9576bc38f09fa7c": { - "address": "0x50e756a22ff5cee3559d18b9d9576bc38f09fa7c", - "symbol": "WARS", - "decimals": 18, - "name": "MetaWars", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x50e756a22ff5cee3559d18b9d9576bc38f09fa7c.png", - "aggregators": ["PancakeCoinMarketCap", "Rubic", "Rango"], - "occurrences": 3 - }, - "0xa19d3f4219e2ed6dc1cb595db20f70b8b6866734": { - "address": "0xa19d3f4219e2ed6dc1cb595db20f70b8b6866734", - "symbol": "WIRTUAL", - "decimals": 18, - "name": "Wirtual", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xa19d3f4219e2ed6dc1cb595db20f70b8b6866734.png", - "aggregators": ["PancakeCoinMarketCap", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x56aa0237244c67b9a854b4efe8479cca0b105289": { - "address": "0x56aa0237244c67b9a854b4efe8479cca0b105289", - "symbol": "WNOW", - "decimals": 18, - "name": "WalletNow", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x56aa0237244c67b9a854b4efe8479cca0b105289.png", - "aggregators": ["PancakeCoinMarketCap", "Rubic", "Rango"], - "occurrences": 3 - }, - "0xa83bfcf9e252adf1f39937984a4e113eda6e445b": { - "address": "0xa83bfcf9e252adf1f39937984a4e113eda6e445b", - "symbol": "PEFI", - "decimals": 18, - "name": "Plant Empires Token", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xa83bfcf9e252adf1f39937984a4e113eda6e445b.png", - "aggregators": ["PancakeCoinMarketCap", "Socket", "Rubic"], - "occurrences": 3 - }, - "0x3cb7378565718c64ab86970802140cc48ef1f969": { - "address": "0x3cb7378565718c64ab86970802140cc48ef1f969", - "symbol": "WING", - "decimals": 9, - "name": "Wing Token", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x3cb7378565718c64ab86970802140cc48ef1f969.png", - "aggregators": ["PancakeCoinMarketCap", "Socket", "Rubic"], - "occurrences": 3 - }, - "0x0df0587216a4a1bb7d5082fdc491d93d2dd4b413": { - "address": "0x0df0587216a4a1bb7d5082fdc491d93d2dd4b413", - "symbol": "CHEEMS", - "decimals": 18, - "name": "Cheems Token", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x0df0587216a4a1bb7d5082fdc491d93d2dd4b413.png", - "aggregators": [ - "PancakeExtended", - "1inch", - "Socket", - "Rubic", - "Squid", - "Rango", - "Sonarwatch" - ], - "occurrences": 7 - }, - "0xc9ccbd76c2353e593cc975f13295e8289d04d3bb": { - "address": "0xc9ccbd76c2353e593cc975f13295e8289d04d3bb", - "symbol": "F", - "decimals": 18, - "name": "SynFutures", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xc9ccbd76c2353e593cc975f13295e8289d04d3bb.png", - "aggregators": [ - "PancakeExtended", - "1inch", - "LiFi", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 7 - }, - "0xdbb5cf12408a3ac17d668037ce289f9ea75439d7": { - "address": "0xdbb5cf12408a3ac17d668037ce289f9ea75439d7", - "symbol": "WMTX", - "decimals": 6, - "name": "World Mobile Token", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xdbb5cf12408a3ac17d668037ce289f9ea75439d7.png", - "aggregators": [ - "Metamask", - "LiFi", - "Socket", - "Rubic", - "Squid", - "Rango", - "Sonarwatch" - ], - "occurrences": 7 - }, - "0x72faa679e1008ad8382959ff48e392042a8b06f7": { - "address": "0x72faa679e1008ad8382959ff48e392042a8b06f7", - "symbol": "BALBT", - "decimals": 18, - "name": "AllianceBlock Token", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x72faa679e1008ad8382959ff48e392042a8b06f7.png", - "aggregators": [ - "PancakeExtended", - "LiFi", - "TrustWallet", - "Socket", - "Rubic", - "Rango", - "SushiSwap" - ], - "occurrences": 7 - }, - "0x49f1d4db3ea1a64390e990c6debeac88eac007ca": { - "address": "0x49f1d4db3ea1a64390e990c6debeac88eac007ca", - "symbol": "ITHACA", - "decimals": 18, - "name": "Ithaca Protocol", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x49f1d4db3ea1a64390e990c6debeac88eac007ca.png", - "aggregators": [ - "CoinGecko", - "Socket", - "Rubic", - "Squid", - "Rango", - "Sonarwatch" - ], - "occurrences": 6 - }, - "0xc9f5955f6da20e44a068f3d58fb2404f56f9a6f2": { - "address": "0xc9f5955f6da20e44a068f3d58fb2404f56f9a6f2", - "symbol": "USDFI", - "decimals": 18, - "name": "USDFI", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xc9f5955f6da20e44a068f3d58fb2404f56f9a6f2.png", - "aggregators": [ - "PancakeCoinGecko", - "LiFi", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 6 - }, - "0xf9c4ff105803a77ecb5dae300871ad76c2794fa4": { - "address": "0xf9c4ff105803a77ecb5dae300871ad76c2794fa4", - "symbol": "PUMPBTC", - "decimals": 8, - "name": "pumpBTC", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xf9c4ff105803a77ecb5dae300871ad76c2794fa4.png", - "aggregators": [ - "PancakeCoinMarketCap", - "LiFi", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 6 - }, - "0x734d66f635523d7ddb7d2373c128333da313041b": { - "address": "0x734d66f635523d7ddb7d2373c128333da313041b", - "symbol": "USDZ", - "decimals": 9, - "name": "ZEDXION", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x734d66f635523d7ddb7d2373c128333da313041b.png", - "aggregators": [ - "PancakeCoinGecko", - "TrustWallet", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 6 - }, - "0x4d3dc895a9edb234dfa3e303a196c009dc918f84": { - "address": "0x4d3dc895a9edb234dfa3e303a196c009dc918f84", - "symbol": "ZBU", - "decimals": 18, - "name": "Zeebu", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x4d3dc895a9edb234dfa3e303a196c009dc918f84.png", - "aggregators": [ - "PancakeCoinMarketCap", - "LiFi", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 6 - }, - "0xb01cf1be9568f09449382a47cd5bf58e2a9d5922": { - "address": "0xb01cf1be9568f09449382a47cd5bf58e2a9d5922", - "symbol": "SPEED", - "decimals": 18, - "name": "Lightspeed", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xb01cf1be9568f09449382a47cd5bf58e2a9d5922.png", - "aggregators": [ - "CoinGecko", - "Socket", - "Rubic", - "Squid", - "Rango", - "Sonarwatch" - ], - "occurrences": 6 - }, - "0x9356086146be5158e98ad827e21b5cf944699894": { - "address": "0x9356086146be5158e98ad827e21b5cf944699894", - "symbol": "USDA", - "decimals": 18, - "name": "USDa", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x9356086146be5158e98ad827e21b5cf944699894.png", - "aggregators": [ - "PancakeExtended", - "LiFi", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 6 - }, - "0x4b6b3d425f82248996d77ecc3f3df1e500aac1db": { - "address": "0x4b6b3d425f82248996d77ecc3f3df1e500aac1db", - "symbol": "LQDR", - "decimals": 18, - "name": "LiquidDriver", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x4b6b3d425f82248996d77ecc3f3df1e500aac1db.png", - "aggregators": [ - "PancakeCoinMarketCap", - "LiFi", - "Rubic", - "Squid", - "Rango", - "Sonarwatch" - ], - "occurrences": 6 - }, - "0x6a661312938d22a2a0e27f585073e4406903990a": { - "address": "0x6a661312938d22a2a0e27f585073e4406903990a", - "symbol": "MAHA", - "decimals": 18, - "name": "Maha", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x6a661312938d22a2a0e27f585073e4406903990a.png", - "aggregators": [ - "PancakeCoinMarketCap", - "LiFi", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 6 - }, - "0x63870a18b6e42b01ef1ad8a2302ef50b7132054f": { - "address": "0x63870a18b6e42b01ef1ad8a2302ef50b7132054f", - "symbol": "BLINK", - "decimals": 6, - "name": "BLinkToken", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x63870a18b6e42b01ef1ad8a2302ef50b7132054f.png", - "aggregators": [ - "PancakeExtended", - "TrustWallet", - "Socket", - "Rubic", - "Rango", - "SushiSwap" - ], - "occurrences": 6 - }, - "0xdef1fac7bf08f173d286bbbdcbeeade695129840": { - "address": "0xdef1fac7bf08f173d286bbbdcbeeade695129840", - "symbol": "CERBY", - "decimals": 18, - "name": "Cerby Token", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xdef1fac7bf08f173d286bbbdcbeeade695129840.png", - "aggregators": [ - "PancakeCoinMarketCap", - "LiFi", - "Socket", - "Rubic", - "Rango", - "SushiSwap" - ], - "occurrences": 6 - }, - "0xa1303e6199b319a891b79685f0537d289af1fc83": { - "address": "0xa1303e6199b319a891b79685f0537d289af1fc83", - "symbol": "NAR", - "decimals": 18, - "name": "NAR Token", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xa1303e6199b319a891b79685f0537d289af1fc83.png", - "aggregators": [ - "PancakeCoinMarketCap", - "LiFi", - "Socket", - "Rubic", - "Rango", - "SushiSwap" - ], - "occurrences": 6 - }, - "0x8f49733210700d38098d7375c221c7d02f700cc8": { - "address": "0x8f49733210700d38098d7375c221c7d02f700cc8", - "symbol": "PALLA", - "decimals": 18, - "name": "Pallapay", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x8f49733210700d38098d7375c221c7d02f700cc8.png", - "aggregators": [ - "PancakeCoinMarketCap", - "1inch", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 6 - }, - "0xb8c540d00dd0bf76ea12e4b4b95efc90804f924e": { - "address": "0xb8c540d00dd0bf76ea12e4b4b95efc90804f924e", - "symbol": "QUSD", - "decimals": 18, - "name": "QUSD Stablecoin", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xb8c540d00dd0bf76ea12e4b4b95efc90804f924e.png", - "aggregators": [ - "PancakeCoinMarketCap", - "LiFi", - "Socket", - "Rubic", - "Rango", - "SushiSwap" - ], - "occurrences": 6 - }, - "0x988c11625472340b7b36ff1534893780e0d8d841": { - "address": "0x988c11625472340b7b36ff1534893780e0d8d841", - "symbol": "WCCX", - "decimals": 6, - "name": "WrappedConceal", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x988c11625472340b7b36ff1534893780e0d8d841.png", - "aggregators": [ - "PancakeCoinMarketCap", - "LiFi", - "Socket", - "Rubic", - "Rango", - "SushiSwap" - ], - "occurrences": 6 - }, - "0x541e619858737031a1244a5d0cd47e5ef480342c": { - "address": "0x541e619858737031a1244a5d0cd47e5ef480342c", - "symbol": "WSOTE", - "decimals": 18, - "name": "Soteria", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x541e619858737031a1244a5d0cd47e5ef480342c.png", - "aggregators": [ - "PancakeCoinMarketCap", - "LiFi", - "Socket", - "Rubic", - "Rango", - "SushiSwap" - ], - "occurrences": 6 - }, - "0xf215a127a196e3988c09d052e16bcfd365cd7aa3": { - "address": "0xf215a127a196e3988c09d052e16bcfd365cd7aa3", - "symbol": "MTSLA", - "decimals": 18, - "name": "Mirror TSLA Token", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xf215a127a196e3988c09d052e16bcfd365cd7aa3.png", - "aggregators": [ - "PancakeExtended", - "LiFi", - "Socket", - "Rubic", - "Rango", - "SushiSwap" - ], - "occurrences": 6 - }, - "0x0231f91e02debd20345ae8ab7d71a41f8e140ce7": { - "address": "0x0231f91e02debd20345ae8ab7d71a41f8e140ce7", - "symbol": "BWJUP", - "decimals": 18, - "name": "Jupiter", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x0231f91e02debd20345ae8ab7d71a41f8e140ce7.png", - "aggregators": [ - "PancakeCoinMarketCap", - "TrustWallet", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x07c15e4add8c23d2971380dde6c57b6f88902ec1": { - "address": "0x07c15e4add8c23d2971380dde6c57b6f88902ec1", - "symbol": "MARS", - "decimals": 18, - "name": "Metamars", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x07c15e4add8c23d2971380dde6c57b6f88902ec1.png", - "aggregators": [ - "PancakeCoinGecko", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x405be90996e7f995a08c2fbd8d8822ef5b03466c": { - "address": "0x405be90996e7f995a08c2fbd8d8822ef5b03466c", - "symbol": "JTS", - "decimals": 18, - "name": "Jetset", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x405be90996e7f995a08c2fbd8d8822ef5b03466c.png", - "aggregators": [ - "PancakeCoinMarketCap", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x6ec90334d89dbdc89e08a133271be3d104128edb": { - "address": "0x6ec90334d89dbdc89e08a133271be3d104128edb", - "symbol": "WKC", - "decimals": 18, - "name": "Wiki Cat", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x6ec90334d89dbdc89e08a133271be3d104128edb.png", - "aggregators": [ - "PancakeCoinMarketCap", - "Rubic", - "Squid", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x8888888888f004100c0353d657be6300587a6ccd": { - "address": "0x8888888888f004100c0353d657be6300587a6ccd", - "symbol": "ACS", - "decimals": 18, - "name": "ACryptoS", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x8888888888f004100c0353d657be6300587a6ccd.png", - "aggregators": [ - "PancakeCoinMarketCap", - "LiFi", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x55bde08af72cd693d1284b531f3f97dc81ecc334": { - "address": "0x55bde08af72cd693d1284b531f3f97dc81ecc334", - "symbol": "CAPY", - "decimals": 18, - "name": "capybara", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x55bde08af72cd693d1284b531f3f97dc81ecc334.png", - "aggregators": [ - "PancakeCoinGecko", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0xe50713c7a1487ff06a7d7a22a036ee7d1f02d5f8": { - "address": "0xe50713c7a1487ff06a7d7a22a036ee7d1f02d5f8", - "symbol": "CHOW", - "decimals": 18, - "name": "CHOW", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xe50713c7a1487ff06a7d7a22a036ee7d1f02d5f8.png", - "aggregators": [ - "PancakeCoinGecko", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0xc0d8daa6516bab4efce440860987e735bab44160": { - "address": "0xc0d8daa6516bab4efce440860987e735bab44160", - "symbol": "VUSD", - "decimals": 18, - "name": "Vow USD", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xc0d8daa6516bab4efce440860987e735bab44160.png", - "aggregators": [ - "PancakeCoinGecko", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0xfa4ba88cf97e282c505bea095297786c16070129": { - "address": "0xfa4ba88cf97e282c505bea095297786c16070129", - "symbol": "CUSD", - "decimals": 18, - "name": "Coin98 Dollar", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xfa4ba88cf97e282c505bea095297786c16070129.png", - "aggregators": [ - "PancakeCoinMarketCap", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0xae2df9f730c54400934c06a17462c41c08a06ed8": { - "address": "0xae2df9f730c54400934c06a17462c41c08a06ed8", - "symbol": "DOBO", - "decimals": 9, - "name": "DogeBonk", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xae2df9f730c54400934c06a17462c41c08a06ed8.png", - "aggregators": [ - "PancakeCoinMarketCap", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0xb68a20b9e9b06fde873897e12ab3372ce48f1a8a": { - "address": "0xb68a20b9e9b06fde873897e12ab3372ce48f1a8a", - "symbol": "$PLAY", - "decimals": 18, - "name": "Playdoge", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xb68a20b9e9b06fde873897e12ab3372ce48f1a8a.png", - "aggregators": [ - "PancakeCoinGecko", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x8bf75bc68fd337dfd8186d731df8b3c2cb14b9e6": { - "address": "0x8bf75bc68fd337dfd8186d731df8b3c2cb14b9e6", - "symbol": "STABLE", - "decimals": 18, - "name": "Stable", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x8bf75bc68fd337dfd8186d731df8b3c2cb14b9e6.png", - "aggregators": [ - "PancakeCoinGecko", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x4a2c860cec6471b9f5f5a336eb4f38bb21683c98": { - "address": "0x4a2c860cec6471b9f5f5a336eb4f38bb21683c98", - "symbol": "GST-BSC", - "decimals": 8, - "name": "STEPN Green Satoshi Token on BSC", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x4a2c860cec6471b9f5f5a336eb4f38bb21683c98.png", - "aggregators": [ - "PancakeCoinGecko", - "LiFi", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0xb43ac9a81eda5a5b36839d5b6fc65606815361b0": { - "address": "0xb43ac9a81eda5a5b36839d5b6fc65606815361b0", - "symbol": "SEN", - "decimals": 18, - "name": "Senspark (BNB)", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xb43ac9a81eda5a5b36839d5b6fc65606815361b0.png", - "aggregators": [ - "PancakeCoinGecko", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0xb020805e0bc7f0e353d1343d67a239f417d57bbf": { - "address": "0xb020805e0bc7f0e353d1343d67a239f417d57bbf", - "symbol": "KRD", - "decimals": 18, - "name": "Krypton DAO", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xb020805e0bc7f0e353d1343d67a239f417d57bbf.png", - "aggregators": [ - "PancakeCoinMarketCap", - "LiFi", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x64619f611248256f7f4b72fe83872f89d5d60d64": { - "address": "0x64619f611248256f7f4b72fe83872f89d5d60d64", - "symbol": "QUINT", - "decimals": 18, - "name": "Quint", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x64619f611248256f7f4b72fe83872f89d5d60d64.png", - "aggregators": [ - "PancakeCoinMarketCap", - "LiFi", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x7ffc1243232da3ac001994208e2002816b57c669": { - "address": "0x7ffc1243232da3ac001994208e2002816b57c669", - "symbol": "ZOO", - "decimals": 18, - "name": "CryptoZoo", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x7ffc1243232da3ac001994208e2002816b57c669.png", - "aggregators": [ - "PancakeCoinGecko", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x9d173e6c594f479b4d47001f8e6a95a7adda42bc": { - "address": "0x9d173e6c594f479b4d47001f8e6a95a7adda42bc", - "symbol": "ZOON", - "decimals": 18, - "name": "CryptoZoon", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x9d173e6c594f479b4d47001f8e6a95a7adda42bc.png", - "aggregators": [ - "PancakeCoinMarketCap", - "LiFi", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0xc45c56bf1aaf119a3c266f97bb28bf19646d0b1d": { - "address": "0xc45c56bf1aaf119a3c266f97bb28bf19646d0b1d", - "symbol": "SELF", - "decimals": 0, - "name": "Self Token", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xc45c56bf1aaf119a3c266f97bb28bf19646d0b1d.png", - "aggregators": [ - "PancakeCoinGecko", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0xe66fd34c0f8726a5eb97f6d45c5a5df4d57d39fc": { - "address": "0xe66fd34c0f8726a5eb97f6d45c5a5df4d57d39fc", - "symbol": "BABYTRUMP", - "decimals": 9, - "name": "Baby Trump (BSC)", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xe66fd34c0f8726a5eb97f6d45c5a5df4d57d39fc.png", - "aggregators": [ - "PancakeCoinGecko", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0xaf8e0bce56615edf2810fab024c307de352a431f": { - "address": "0xaf8e0bce56615edf2810fab024c307de352a431f", - "symbol": "CAT", - "decimals": 9, - "name": "CAT INU", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xaf8e0bce56615edf2810fab024c307de352a431f.png", - "aggregators": [ - "PancakeCoinGecko", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x3e098c23dcfbbe0a3f468a6bed1cf1a59dc1770d": { - "address": "0x3e098c23dcfbbe0a3f468a6bed1cf1a59dc1770d", - "symbol": "YU", - "decimals": 18, - "name": "BountyKinds YU", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x3e098c23dcfbbe0a3f468a6bed1cf1a59dc1770d.png", - "aggregators": [ - "PancakeCoinMarketCap", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x23c5d1164662758b3799103effe19cc064d897d6": { - "address": "0x23c5d1164662758b3799103effe19cc064d897d6", - "symbol": "AURA", - "decimals": 6, - "name": "Aura Network [OLD]", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x23c5d1164662758b3799103effe19cc064d897d6.png", - "aggregators": [ - "PancakeCoinGecko", - "LiFi", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x95c91eef65f50570cfc3f269961a00108cf7bf59": { - "address": "0x95c91eef65f50570cfc3f269961a00108cf7bf59", - "symbol": "DONS", - "decimals": 18, - "name": "The DONS", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x95c91eef65f50570cfc3f269961a00108cf7bf59.png", - "aggregators": [ - "PancakeCoinMarketCap", - "TrustWallet", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x086ddd008e20dd74c4fb216170349853f8ca8289": { - "address": "0x086ddd008e20dd74c4fb216170349853f8ca8289", - "symbol": "MBE", - "decimals": 18, - "name": "MxmBoxcEus Token", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x086ddd008e20dd74c4fb216170349853f8ca8289.png", - "aggregators": [ - "PancakeCoinMarketCap", - "LiFi", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x92ed61fb8955cc4e392781cb8b7cd04aadc43d0c": { - "address": "0x92ed61fb8955cc4e392781cb8b7cd04aadc43d0c", - "symbol": "OGGY", - "decimals": 9, - "name": "Oggy Inu", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x92ed61fb8955cc4e392781cb8b7cd04aadc43d0c.png", - "aggregators": [ - "PancakeCoinGecko", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0xa6c59de838f1eeb82d86f5af0750f5f656439999": { - "address": "0xa6c59de838f1eeb82d86f5af0750f5f656439999", - "symbol": "NEXT", - "decimals": 18, - "name": "ShopNext Loyalty Token", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xa6c59de838f1eeb82d86f5af0750f5f656439999.png", - "aggregators": [ - "PancakeCoinGecko", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0xed6af21df463c7f116a6d7d687a4c190c4cf7586": { - "address": "0xed6af21df463c7f116a6d7d687a4c190c4cf7586", - "symbol": "FU", - "decimals": 18, - "name": "FU", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xed6af21df463c7f116a6d7d687a4c190c4cf7586.png", - "aggregators": [ - "PancakeCoinGecko", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0xc0ecb8499d8da2771abcbf4091db7f65158f1468": { - "address": "0xc0ecb8499d8da2771abcbf4091db7f65158f1468", - "symbol": "SWTH", - "decimals": 8, - "name": "Carbon Protocol", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xc0ecb8499d8da2771abcbf4091db7f65158f1468.png", - "aggregators": [ - "PancakeExtended", - "LiFi", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x0b33542240d6fa323c796749f6d6869fdb7f13ca": { - "address": "0x0b33542240d6fa323c796749f6d6869fdb7f13ca", - "symbol": "ETHM", - "decimals": 18, - "name": "Ethereum Meta", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x0b33542240d6fa323c796749f6d6869fdb7f13ca.png", - "aggregators": [ - "PancakeCoinGecko", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0xc2c28b58db223da89b567a0a98197fc17c115148": { - "address": "0xc2c28b58db223da89b567a0a98197fc17c115148", - "symbol": "SOLO", - "decimals": 15, - "name": "Sologenic", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xc2c28b58db223da89b567a0a98197fc17c115148.png", - "aggregators": [ - "PancakeCoinMarketCap", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0xc2c23a86def9e9f5972a633b3d25f7ecbfa5e575": { - "address": "0xc2c23a86def9e9f5972a633b3d25f7ecbfa5e575", - "symbol": "LAYER", - "decimals": 18, - "name": "UniLayer", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xc2c23a86def9e9f5972a633b3d25f7ecbfa5e575.png", - "aggregators": [ - "PancakeCoinGecko", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x0a232cb2005bda62d3de7ab5deb3ffe4c456165a": { - "address": "0x0a232cb2005bda62d3de7ab5deb3ffe4c456165a", - "symbol": "FVT", - "decimals": 18, - "name": "Finance Vote", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x0a232cb2005bda62d3de7ab5deb3ffe4c456165a.png", - "aggregators": [ - "PancakeCoinGecko", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x9fdc3ae5c814b79dca2556564047c5e7e5449c19": { - "address": "0x9fdc3ae5c814b79dca2556564047c5e7e5449c19", - "symbol": "$DG", - "decimals": 18, - "name": "decentral.games on xDai from xDai", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x9fdc3ae5c814b79dca2556564047c5e7e5449c19.png", - "aggregators": [ - "PancakeExtended", - "LiFi", - "Socket", - "Rubic", - "Rango" - ], - "occurrences": 5 - }, - "0x50de6856358cc35f3a9a57eaaa34bd4cb707d2cd": { - "address": "0x50de6856358cc35f3a9a57eaaa34bd4cb707d2cd", - "symbol": "RAZOR", - "decimals": 18, - "name": "Razor Network", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x50de6856358cc35f3a9a57eaaa34bd4cb707d2cd.png", - "aggregators": [ - "PancakeCoinGecko", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x5fb4968fc85868df3ad2d6e59883a10570f01d18": { - "address": "0x5fb4968fc85868df3ad2d6e59883a10570f01d18", - "symbol": "SHR", - "decimals": 18, - "name": "Share", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x5fb4968fc85868df3ad2d6e59883a10570f01d18.png", - "aggregators": [ - "PancakeCoinGecko", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x94a8b4ee5cd64c79d0ee816f467ea73009f51aa0": { - "address": "0x94a8b4ee5cd64c79d0ee816f467ea73009f51aa0", - "symbol": "RIO", - "decimals": 18, - "name": "Realio Network Token", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x94a8b4ee5cd64c79d0ee816f467ea73009f51aa0.png", - "aggregators": [ - "CoinGecko", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x198abb2d13faa2e52e577d59209b5c23c20cd6b3": { - "address": "0x198abb2d13faa2e52e577d59209b5c23c20cd6b3", - "symbol": "BAMBOO", - "decimals": 18, - "name": "Bamboo DeFi", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x198abb2d13faa2e52e577d59209b5c23c20cd6b3.png", - "aggregators": [ - "PancakeCoinMarketCap", - "LiFi", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0xf9d906a8dd25c4a4966bc075cdc946702219e62c": { - "address": "0xf9d906a8dd25c4a4966bc075cdc946702219e62c", - "symbol": "YIELD", - "decimals": 18, - "name": "Yield Protocol", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xf9d906a8dd25c4a4966bc075cdc946702219e62c.png", - "aggregators": [ - "PancakeCoinGecko", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x99c6e435ec259a7e8d65e1955c9423db624ba54c": { - "address": "0x99c6e435ec259a7e8d65e1955c9423db624ba54c", - "symbol": "FMT", - "decimals": 18, - "name": "Finminity", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x99c6e435ec259a7e8d65e1955c9423db624ba54c.png", - "aggregators": [ - "PancakeCoinGecko", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x93b30f6d5c2eed35950498f71235a749e6f0540c": { - "address": "0x93b30f6d5c2eed35950498f71235a749e6f0540c", - "symbol": "LOVELY", - "decimals": 18, - "name": "Lovely Inu Finance", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x93b30f6d5c2eed35950498f71235a749e6f0540c.png", - "aggregators": [ - "PancakeCoinGecko", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x180dae91d6d56235453a892d2e56a3e40ba81df8": { - "address": "0x180dae91d6d56235453a892d2e56a3e40ba81df8", - "symbol": "DOJO", - "decimals": 18, - "name": "DOJO", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x180dae91d6d56235453a892d2e56a3e40ba81df8.png", - "aggregators": [ - "PancakeCoinGecko", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x790cfdc6ab2e0ee45a433aac5434f183be1f6a20": { - "address": "0x790cfdc6ab2e0ee45a433aac5434f183be1f6a20", - "symbol": "PLR", - "decimals": 18, - "name": "Pillar", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x790cfdc6ab2e0ee45a433aac5434f183be1f6a20.png", - "aggregators": [ - "PancakeCoinGecko", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0xdea12c8c23994ea2d88ed99ee1bdc0ff56f7f9d1": { - "address": "0xdea12c8c23994ea2d88ed99ee1bdc0ff56f7f9d1", - "symbol": "L3USD", - "decimals": 18, - "name": "L3USD", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xdea12c8c23994ea2d88ed99ee1bdc0ff56f7f9d1.png", - "aggregators": [ - "PancakeCoinMarketCap", - "LiFi", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0xbc7370641ddcf16a27eea11230af4a9f247b61f9": { - "address": "0xbc7370641ddcf16a27eea11230af4a9f247b61f9", - "symbol": "XETA", - "decimals": 18, - "name": "XANA", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xbc7370641ddcf16a27eea11230af4a9f247b61f9.png", - "aggregators": [ - "PancakeCoinGecko", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0xb53cc8303943582949b9a23f0556b0f0c41fec98": { - "address": "0xb53cc8303943582949b9a23f0556b0f0c41fec98", - "symbol": "OMNIA", - "decimals": 18, - "name": "Omnia Protocol", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xb53cc8303943582949b9a23f0556b0f0c41fec98.png", - "aggregators": [ - "PancakeCoinGecko", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x56d06a78ef8e95d6043341f24759e2834be6f97b": { - "address": "0x56d06a78ef8e95d6043341f24759e2834be6f97b", - "symbol": "DZOO", - "decimals": 18, - "name": "Degen Zoo", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x56d06a78ef8e95d6043341f24759e2834be6f97b.png", - "aggregators": [ - "PancakeCoinMarketCap", - "LiFi", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0xce1e3cc1950d2aaeb47de04de2dec2dc86380e0a": { - "address": "0xce1e3cc1950d2aaeb47de04de2dec2dc86380e0a", - "symbol": "ERN", - "decimals": 18, - "name": "Ethos Reserve Note", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xce1e3cc1950d2aaeb47de04de2dec2dc86380e0a.png", - "aggregators": [ - "PancakeCoinGecko", - "Rubic", - "Squid", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x644192291cc835a93d6330b24ea5f5fedd0eef9e": { - "address": "0x644192291cc835a93d6330b24ea5f5fedd0eef9e", - "symbol": "NXRA", - "decimals": 18, - "name": "Nexera", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x644192291cc835a93d6330b24ea5f5fedd0eef9e.png", - "aggregators": [ - "PancakeCoinMarketCap", - "LiFi", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x3419875b4d3bca7f3fdda2db7a476a79fd31b4fe": { - "address": "0x3419875b4d3bca7f3fdda2db7a476a79fd31b4fe", - "symbol": "DZHV", - "decimals": 18, - "name": "DizzyHavoc", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x3419875b4d3bca7f3fdda2db7a476a79fd31b4fe.png", - "aggregators": [ - "PancakeCoinGecko", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0xc71b5f631354be6853efe9c3ab6b9590f8302e81": { - "address": "0xc71b5f631354be6853efe9c3ab6b9590f8302e81", - "symbol": "ZKJ", - "decimals": 18, - "name": "Polyhedra Network", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xc71b5f631354be6853efe9c3ab6b9590f8302e81.png", - "aggregators": [ - "PancakeExtended", - "1inch", - "Socket", - "Rubic", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0xc6c58f600917de512cd02d2b6ed595ab54b4c30f": { - "address": "0xc6c58f600917de512cd02d2b6ed595ab54b4c30f", - "symbol": "DOGEVERSE", - "decimals": 18, - "name": "DogeVerse", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xc6c58f600917de512cd02d2b6ed595ab54b4c30f.png", - "aggregators": [ - "PancakeCoinGecko", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x6b2a01a5f79deb4c2f3c0eda7b01df456fbd726a": { - "address": "0x6b2a01a5f79deb4c2f3c0eda7b01df456fbd726a", - "symbol": "UNIBTC", - "decimals": 8, - "name": "uniBTC", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x6b2a01a5f79deb4c2f3c0eda7b01df456fbd726a.png", - "aggregators": [ - "PancakeExtended", - "LiFi", - "Rubic", - "Squid", - "Rango" - ], - "occurrences": 5 - }, - "0xecac9c5f704e954931349da37f60e39f515c11c1": { - "address": "0xecac9c5f704e954931349da37f60e39f515c11c1", - "symbol": "LBTC", - "decimals": 8, - "name": "LBTC", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xecac9c5f704e954931349da37f60e39f515c11c1.png", - "aggregators": [ - "PancakeExtended", - "LiFi", - "Socket", - "Rubic", - "Rango" - ], - "occurrences": 5 - }, - "0x0e37d70b51ffa2b98b4d34a5712c5291115464e3": { - "address": "0x0e37d70b51ffa2b98b4d34a5712c5291115464e3", - "symbol": "IQ", - "decimals": 18, - "name": "IQ", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x0e37d70b51ffa2b98b4d34a5712c5291115464e3.png", - "aggregators": [ - "PancakeCoinGecko", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x19c91764a976ac6c1e2c2e4c5856f2939342a814": { - "address": "0x19c91764a976ac6c1e2c2e4c5856f2939342a814", - "symbol": "PAR", - "decimals": 18, - "name": "Parachute", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x19c91764a976ac6c1e2c2e4c5856f2939342a814.png", - "aggregators": [ - "PancakeCoinGecko", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0xc1165227519ffd22fdc77ceb1037b9b284eef068": { - "address": "0xc1165227519ffd22fdc77ceb1037b9b284eef068", - "symbol": "BNSD", - "decimals": 18, - "name": "BNSD Finance", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xc1165227519ffd22fdc77ceb1037b9b284eef068.png", - "aggregators": [ - "PancakeCoinGecko", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x6e9730ecffbed43fd876a264c982e254ef05a0de": { - "address": "0x6e9730ecffbed43fd876a264c982e254ef05a0de", - "symbol": "NORD", - "decimals": 18, - "name": "Nord Finance", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x6e9730ecffbed43fd876a264c982e254ef05a0de.png", - "aggregators": [ - "PancakeCoinGecko", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0xf03a2dc374d494fbe894563fe22ee544d826aa50": { - "address": "0xf03a2dc374d494fbe894563fe22ee544d826aa50", - "symbol": "RADAR", - "decimals": 18, - "name": "Radar", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xf03a2dc374d494fbe894563fe22ee544d826aa50.png", - "aggregators": [ - "PancakeCoinGecko", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0xa5ff48e326958e0ce6fdf9518de561f2b5f57da3": { - "address": "0xa5ff48e326958e0ce6fdf9518de561f2b5f57da3", - "symbol": "LKR", - "decimals": 18, - "name": "Lokr", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xa5ff48e326958e0ce6fdf9518de561f2b5f57da3.png", - "aggregators": [ - "PancakeCoinGecko", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0xf7686f43591302cd9b4b9c4fe1291473fae7d9c9": { - "address": "0xf7686f43591302cd9b4b9c4fe1291473fae7d9c9", - "symbol": "LSS", - "decimals": 18, - "name": "Lossless", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xf7686f43591302cd9b4b9c4fe1291473fae7d9c9.png", - "aggregators": [ - "PancakeCoinGecko", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0xb1547683da678f2e1f003a780143ec10af8a832b": { - "address": "0xb1547683da678f2e1f003a780143ec10af8a832b", - "symbol": "SHIB", - "decimals": 18, - "name": "Shiba Inu (Wormhole)", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xb1547683da678f2e1f003a780143ec10af8a832b.png", - "aggregators": [ - "PancakeCoinGecko", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x4db5a66e937a9f4473fa95b1caf1d1e1d62e29ea": { - "address": "0x4db5a66e937a9f4473fa95b1caf1d1e1d62e29ea", - "symbol": "ETH", - "decimals": 18, - "name": "Ethereum (Wormhole)", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x4db5a66e937a9f4473fa95b1caf1d1e1d62e29ea.png", - "aggregators": [ - "PancakeCoinMarketCap", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0xd6f28f15a5cafc8d29556393c08177124b88de0d": { - "address": "0xd6f28f15a5cafc8d29556393c08177124b88de0d", - "symbol": "SPELLFIRE", - "decimals": 18, - "name": "Spellfire", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xd6f28f15a5cafc8d29556393c08177124b88de0d.png", - "aggregators": [ - "PancakeCoinMarketCap", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x7c63f96feafacd84e75a594c00fac3693386fbf0": { - "address": "0x7c63f96feafacd84e75a594c00fac3693386fbf0", - "symbol": "ASS", - "decimals": 9, - "name": "Australian Safe Shepherd", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x7c63f96feafacd84e75a594c00fac3693386fbf0.png", - "aggregators": [ - "PancakeCoinMarketCap", - "Rubic", - "Squid", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x0615dbba33fe61a31c7ed131bda6655ed76748b1": { - "address": "0x0615dbba33fe61a31c7ed131bda6655ed76748b1", - "symbol": "BACON", - "decimals": 18, - "name": "BaconDAO", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x0615dbba33fe61a31c7ed131bda6655ed76748b1.png", - "aggregators": [ - "PancakeCoinGecko", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0xbbbbbbe1da5eab142b32f8887ee8d3872d847c20": { - "address": "0xbbbbbbe1da5eab142b32f8887ee8d3872d847c20", - "symbol": "BBONK", - "decimals": 18, - "name": "BitBonk", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xbbbbbbe1da5eab142b32f8887ee8d3872d847c20.png", - "aggregators": [ - "PancakeCoinGecko", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x518445f0db93863e5e93a7f70617c05afa8048f1": { - "address": "0x518445f0db93863e5e93a7f70617c05afa8048f1", - "symbol": "BITT", - "decimals": 18, - "name": "BITT", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x518445f0db93863e5e93a7f70617c05afa8048f1.png", - "aggregators": [ - "PancakeCoinMarketCap", - "Rubic", - "Squid", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0xc03fbf20a586fa89c2a5f6f941458e1fbc40c661": { - "address": "0xc03fbf20a586fa89c2a5f6f941458e1fbc40c661", - "symbol": "COMBO", - "decimals": 18, - "name": "COMBO", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xc03fbf20a586fa89c2a5f6f941458e1fbc40c661.png", - "aggregators": [ - "PancakeCoinMarketCap", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x1a3264f2e7b1cfc6220ec9348d33ccf02af7aaa4": { - "address": "0x1a3264f2e7b1cfc6220ec9348d33ccf02af7aaa4", - "symbol": "DYP", - "decimals": 18, - "name": "Dypius", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x1a3264f2e7b1cfc6220ec9348d33ccf02af7aaa4.png", - "aggregators": [ - "PancakeCoinGecko", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x8f87a7d376821c7b2658a005aaf190ec778bf37a": { - "address": "0x8f87a7d376821c7b2658a005aaf190ec778bf37a", - "symbol": "GRAIN", - "decimals": 18, - "name": "Granary", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x8f87a7d376821c7b2658a005aaf190ec778bf37a.png", - "aggregators": [ - "PancakeCoinGecko", - "Rubic", - "Squid", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x2e53414853f058a9bc14e052431008483bd85b4c": { - "address": "0x2e53414853f058a9bc14e052431008483bd85b4c", - "symbol": "GROK", - "decimals": 9, - "name": "Grok Codes", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x2e53414853f058a9bc14e052431008483bd85b4c.png", - "aggregators": [ - "PancakeCoinGecko", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0xac5d23ce5e4a5eb11a5407a5fbee201a75e8c8ad": { - "address": "0xac5d23ce5e4a5eb11a5407a5fbee201a75e8c8ad", - "symbol": "IM", - "decimals": 18, - "name": "Internet Money (BSC)", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xac5d23ce5e4a5eb11a5407a5fbee201a75e8c8ad.png", - "aggregators": [ - "PancakeCoinGecko", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x0c08638473cafbca3beb113616a1871f4bfad4f9": { - "address": "0x0c08638473cafbca3beb113616a1871f4bfad4f9", - "symbol": "LSHARE", - "decimals": 18, - "name": "LIF3 LSHARE", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x0c08638473cafbca3beb113616a1871f4bfad4f9.png", - "aggregators": [ - "PancakeCoinMarketCap", - "LiFi", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0xe05d1c28b3f8127b5b058f101198ede30fe3961d": { - "address": "0xe05d1c28b3f8127b5b058f101198ede30fe3961d", - "symbol": "MSI", - "decimals": 18, - "name": "Martin Shkreli Inu", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xe05d1c28b3f8127b5b058f101198ede30fe3961d.png", - "aggregators": [ - "PancakeCoinGecko", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x73f4c95af5c2892253c068850b8c9a753636f58d": { - "address": "0x73f4c95af5c2892253c068850b8c9a753636f58d", - "symbol": "OATH", - "decimals": 18, - "name": "OATH", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x73f4c95af5c2892253c068850b8c9a753636f58d.png", - "aggregators": [ - "PancakeCoinGecko", - "Rubic", - "Squid", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x57022edd5c7ed7b6bd870488853fe961dfdd3fb6": { - "address": "0x57022edd5c7ed7b6bd870488853fe961dfdd3fb6", - "symbol": "PLX", - "decimals": 18, - "name": "Octaplex Network", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x57022edd5c7ed7b6bd870488853fe961dfdd3fb6.png", - "aggregators": [ - "PancakeCoinMarketCap", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x77018282fd033daf370337a5367e62d8811bc885": { - "address": "0x77018282fd033daf370337a5367e62d8811bc885", - "symbol": "POOLZ", - "decimals": 18, - "name": "Poolz Finance [OLD]", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x77018282fd033daf370337a5367e62d8811bc885.png", - "aggregators": [ - "PancakeCoinGecko", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x40f906e19b14100d5247686e08053c4873c66192": { - "address": "0x40f906e19b14100d5247686e08053c4873c66192", - "symbol": "SUGARB", - "decimals": 18, - "name": "Sugarblock.ai", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x40f906e19b14100d5247686e08053c4873c66192.png", - "aggregators": [ - "PancakeCoinMarketCap", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x51707dc661630f8fd624b985fa6ef4f1d4d919db": { - "address": "0x51707dc661630f8fd624b985fa6ef4f1d4d919db", - "symbol": "UNV", - "decimals": 18, - "name": "Unvest", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x51707dc661630f8fd624b985fa6ef4f1d4d919db.png", - "aggregators": [ - "PancakeCoinGecko", - "Rubic", - "Squid", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x9a5350edf28c1f93bb36d6e94b5c425fde8e222d": { - "address": "0x9a5350edf28c1f93bb36d6e94b5c425fde8e222d", - "symbol": "USDV", - "decimals": 6, - "name": "Vyvo US Dollar", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x9a5350edf28c1f93bb36d6e94b5c425fde8e222d.png", - "aggregators": [ - "PancakeCoinGecko", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0xdde5b33a56f3f1c22e5a6bd8429e6ad508bff24e": { - "address": "0xdde5b33a56f3f1c22e5a6bd8429e6ad508bff24e", - "symbol": "VNDC", - "decimals": 0, - "name": "VNDC", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xdde5b33a56f3f1c22e5a6bd8429e6ad508bff24e.png", - "aggregators": [ - "PancakeCoinGecko", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x304b5845b9114182ecb4495be4c91a273b74b509": { - "address": "0x304b5845b9114182ecb4495be4c91a273b74b509", - "symbol": "YNBNB", - "decimals": 18, - "name": "YieldNest Restaked BNB", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x304b5845b9114182ecb4495be4c91a273b74b509.png", - "aggregators": [ - "PancakeExtended", - "LiFi", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x747c8de898c595bdd74a9be3c28d5ac90acd1092": { - "address": "0x747c8de898c595bdd74a9be3c28d5ac90acd1092", - "symbol": "ZKE", - "decimals": 18, - "name": "zkEra Finance", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x747c8de898c595bdd74a9be3c28d5ac90acd1092.png", - "aggregators": [ - "PancakeCoinGecko", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x9a3321e1acd3b9f6debee5e042dd2411a1742002": { - "address": "0x9a3321e1acd3b9f6debee5e042dd2411a1742002", - "symbol": "AFP", - "decimals": 18, - "name": "PIGS Token", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x9a3321e1acd3b9f6debee5e042dd2411a1742002.png", - "aggregators": [ - "PancakeCoinMarketCap", - "1inch", - "Socket", - "Rubic", - "Rango" - ], - "occurrences": 5 - }, - "0xd8a2ae43fd061d24acd538e3866ffc2c05151b53": { - "address": "0xd8a2ae43fd061d24acd538e3866ffc2c05151b53", - "symbol": "AIR", - "decimals": 18, - "name": "AIR", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xd8a2ae43fd061d24acd538e3866ffc2c05151b53.png", - "aggregators": [ - "PancakeCoinMarketCap", - "1inch", - "Socket", - "Rubic", - "Rango" - ], - "occurrences": 5 - }, - "0x83b79f74f225e8f9a29fc67cb1678e7909d7d73d": { - "address": "0x83b79f74f225e8f9a29fc67cb1678e7909d7d73d", - "symbol": "AVA", - "decimals": 18, - "name": "Avatly", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x83b79f74f225e8f9a29fc67cb1678e7909d7d73d.png", - "aggregators": [ - "PancakeCoinMarketCap", - "1inch", - "Socket", - "Rubic", - "Rango" - ], - "occurrences": 5 - }, - "0x81859801b01764d4f0fa5e64729f5a6c3b91435b": { - "address": "0x81859801b01764d4f0fa5e64729f5a6c3b91435b", - "symbol": "BFI", - "decimals": 18, - "name": "bearn.fi", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x81859801b01764d4f0fa5e64729f5a6c3b91435b.png", - "aggregators": [ - "PancakeExtended", - "LiFi", - "TrustWallet", - "Rubic", - "Rango" - ], - "occurrences": 5 - }, - "0xda20c8a5c3b1ab48e31ba6e43f0f2830e50218d8": { - "address": "0xda20c8a5c3b1ab48e31ba6e43f0f2830e50218d8", - "symbol": "BINGUS", - "decimals": 9, - "name": "Bingus Token", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xda20c8a5c3b1ab48e31ba6e43f0f2830e50218d8.png", - "aggregators": [ - "PancakeCoinMarketCap", - "1inch", - "Socket", - "Rubic", - "Rango" - ], - "occurrences": 5 - }, - "0xebc76079da0c245fae7225b58a57a54809b40618": { - "address": "0xebc76079da0c245fae7225b58a57a54809b40618", - "symbol": "BPAY", - "decimals": 9, - "name": "BNBPay", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xebc76079da0c245fae7225b58a57a54809b40618.png", - "aggregators": [ - "PancakeCoinMarketCap", - "1inch", - "Socket", - "Rubic", - "Rango" - ], - "occurrences": 5 - }, - "0xd1102332a213e21faf78b69c03572031f3552c33": { - "address": "0xd1102332a213e21faf78b69c03572031f3552c33", - "symbol": "BTD", - "decimals": 18, - "name": "BTD", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xd1102332a213e21faf78b69c03572031f3552c33.png", - "aggregators": [ - "PancakeCoinMarketCap", - "1inch", - "LiFi", - "Rubic", - "Rango" - ], - "occurrences": 5 - }, - "0x211ffbe424b90e25a15531ca322adf1559779e45": { - "address": "0x211ffbe424b90e25a15531ca322adf1559779e45", - "symbol": "BUX", - "decimals": 18, - "name": "BUX Token", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x211ffbe424b90e25a15531ca322adf1559779e45.png", - "aggregators": ["PancakeExtended", "LiFi", "Socket", "Rubic"], - "occurrences": 4 - }, - "0xb6b91269413b6b99242b1c0bc611031529999999": { - "address": "0xb6b91269413b6b99242b1c0bc611031529999999", - "symbol": "CALO", - "decimals": 18, - "name": "CALO", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xb6b91269413b6b99242b1c0bc611031529999999.png", - "aggregators": [ - "PancakeCoinMarketCap", - "1inch", - "Socket", - "Rubic", - "Rango" - ], - "occurrences": 5 - }, - "0x2a1d286ed5edad78befd6e0d8beb38791e8cd69d": { - "address": "0x2a1d286ed5edad78befd6e0d8beb38791e8cd69d", - "symbol": "CLIMB", - "decimals": 8, - "name": "Climb Token Finance", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x2a1d286ed5edad78befd6e0d8beb38791e8cd69d.png", - "aggregators": [ - "PancakeCoinMarketCap", - "1inch", - "Socket", - "Rubic", - "Rango" - ], - "occurrences": 5 - }, - "0x74b3abb94e9e1ecc25bd77d6872949b4a9b2aacf": { - "address": "0x74b3abb94e9e1ecc25bd77d6872949b4a9b2aacf", - "symbol": "DFX", - "decimals": 18, - "name": "DeFireX on BSC", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x74b3abb94e9e1ecc25bd77d6872949b4a9b2aacf.png", - "aggregators": [ - "PancakeCoinMarketCap", - "1inch", - "Socket", - "Rubic", - "Rango" - ], - "occurrences": 5 - }, - "0x375483cfa7fc18f6b455e005d835a8335fbdbb1f": { - "address": "0x375483cfa7fc18f6b455e005d835a8335fbdbb1f", - "symbol": "ECP", - "decimals": 9, - "name": "Eclipse", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x375483cfa7fc18f6b455e005d835a8335fbdbb1f.png", - "aggregators": [ - "PancakeCoinMarketCap", - "1inch", - "Socket", - "Rubic", - "Rango" - ], - "occurrences": 5 - }, - "0xaff9084f2374585879e8b434c399e29e80cce635": { - "address": "0xaff9084f2374585879e8b434c399e29e80cce635", - "symbol": "FLUX", - "decimals": 8, - "name": "FLUX", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xaff9084f2374585879e8b434c399e29e80cce635.png", - "aggregators": [ - "PancakeCoinMarketCap", - "LiFi", - "Socket", - "Rubic", - "Rango" - ], - "occurrences": 5 - }, - "0xee738a9e5fb78c24d26cecd30389ed977c38d0ca": { - "address": "0xee738a9e5fb78c24d26cecd30389ed977c38d0ca", - "symbol": "FSAFE", - "decimals": 9, - "name": "Fair Safe", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xee738a9e5fb78c24d26cecd30389ed977c38d0ca.png", - "aggregators": [ - "PancakeCoinMarketCap", - "1inch", - "Socket", - "Rubic", - "Rango" - ], - "occurrences": 5 - }, - "0x182c763a4b2fbd18c9b5f2d18102a0ddd9d5df26": { - "address": "0x182c763a4b2fbd18c9b5f2d18102a0ddd9d5df26", - "symbol": "HOGL", - "decimals": 18, - "name": "HOGL Finance", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x182c763a4b2fbd18c9b5f2d18102a0ddd9d5df26.png", - "aggregators": [ - "PancakeCoinMarketCap", - "1inch", - "Socket", - "Rubic", - "Rango" - ], - "occurrences": 5 - }, - "0x0a3bb08b3a15a19b4de82f8acfc862606fb69a2d": { - "address": "0x0a3bb08b3a15a19b4de82f8acfc862606fb69a2d", - "symbol": "IUSD", - "decimals": 18, - "name": "IUSD", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x0a3bb08b3a15a19b4de82f8acfc862606fb69a2d.png", - "aggregators": [ - "PancakeCoinMarketCap", - "LiFi", - "Socket", - "Rubic", - "Rango" - ], - "occurrences": 5 - }, - "0x32dffc3fe8e3ef3571bf8a72c0d0015c5373f41d": { - "address": "0x32dffc3fe8e3ef3571bf8a72c0d0015c5373f41d", - "symbol": "JULB", - "decimals": 18, - "name": "JULB", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x32dffc3fe8e3ef3571bf8a72c0d0015c5373f41d.png", - "aggregators": [ - "PancakeCoinMarketCap", - "1inch", - "LiFi", - "Rubic", - "Rango" - ], - "occurrences": 5 - }, - "0xe5a09784b16e1065c37df14c6e2f06fdce317a1b": { - "address": "0xe5a09784b16e1065c37df14c6e2f06fdce317a1b", - "symbol": "KAIINU", - "decimals": 9, - "name": "Kai Inu", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xe5a09784b16e1065c37df14c6e2f06fdce317a1b.png", - "aggregators": [ - "PancakeCoinMarketCap", - "1inch", - "Socket", - "Rubic", - "Rango" - ], - "occurrences": 5 - }, - "0x4e8a9d0bf525d78fd9e0c88710099f227f6924cf": { - "address": "0x4e8a9d0bf525d78fd9e0c88710099f227f6924cf", - "symbol": "LUNAR", - "decimals": 9, - "name": "LunarHighway", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x4e8a9d0bf525d78fd9e0c88710099f227f6924cf.png", - "aggregators": [ - "PancakeCoinMarketCap", - "1inch", - "Socket", - "Rubic", - "Rango" - ], - "occurrences": 5 - }, - "0x35e869b7456462b81cdb5e6e42434bd27f3f788c": { - "address": "0x35e869b7456462b81cdb5e6e42434bd27f3f788c", - "symbol": "MDO", - "decimals": 18, - "name": "MDO", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x35e869b7456462b81cdb5e6e42434bd27f3f788c.png", - "aggregators": [ - "PancakeCoinMarketCap", - "1inch", - "LiFi", - "Rubic", - "Rango" - ], - "occurrences": 5 - }, - "0x0e0e877894a101ad8711ae3a0194fa44ca837a79": { - "address": "0x0e0e877894a101ad8711ae3a0194fa44ca837a79", - "symbol": "MOONMOON", - "decimals": 9, - "name": "MoonMoon", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x0e0e877894a101ad8711ae3a0194fa44ca837a79.png", - "aggregators": [ - "PancakeCoinMarketCap", - "1inch", - "Socket", - "Rubic", - "Rango" - ], - "occurrences": 5 - }, - "0x7ee7f14427cc41d6db17829eb57dc74a26796b9d": { - "address": "0x7ee7f14427cc41d6db17829eb57dc74a26796b9d", - "symbol": "MOONRISE", - "decimals": 9, - "name": "MoonRise", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x7ee7f14427cc41d6db17829eb57dc74a26796b9d.png", - "aggregators": [ - "PancakeCoinMarketCap", - "1inch", - "Socket", - "Rubic", - "Rango" - ], - "occurrences": 5 - }, - "0xce5814efff15d53efd8025b9f2006d4d7d640b9b": { - "address": "0xce5814efff15d53efd8025b9f2006d4d7d640b9b", - "symbol": "MOONSTAR", - "decimals": 9, - "name": "MoonStar", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xce5814efff15d53efd8025b9f2006d4d7d640b9b.png", - "aggregators": [ - "PancakeCoinMarketCap", - "1inch", - "Socket", - "Rubic", - "Rango" - ], - "occurrences": 5 - }, - "0x81e4d494b85a24a58a6ba45c9b418b32a4e039de": { - "address": "0x81e4d494b85a24a58a6ba45c9b418b32a4e039de", - "symbol": "MOONTOKEN", - "decimals": 18, - "name": "Moon Token", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x81e4d494b85a24a58a6ba45c9b418b32a4e039de.png", - "aggregators": [ - "PancakeCoinMarketCap", - "1inch", - "Socket", - "Rubic", - "Rango" - ], - "occurrences": 5 - }, - "0x411ec510c85c9e56271bf4e10364ffa909e685d9": { - "address": "0x411ec510c85c9e56271bf4e10364ffa909e685d9", - "symbol": "MOWA", - "decimals": 18, - "name": "Moniwar", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x411ec510c85c9e56271bf4e10364ffa909e685d9.png", - "aggregators": [ - "PancakeCoinMarketCap", - "1inch", - "Socket", - "Rubic", - "Rango" - ], - "occurrences": 5 - }, - "0x86c3e4ffacdb3af628ef985a518cd6ee22a22b28": { - "address": "0x86c3e4ffacdb3af628ef985a518cd6ee22a22b28", - "symbol": "OCTA", - "decimals": 9, - "name": "Octans", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x86c3e4ffacdb3af628ef985a518cd6ee22a22b28.png", - "aggregators": [ - "PancakeCoinMarketCap", - "1inch", - "Socket", - "Rubic", - "Rango" - ], - "occurrences": 5 - }, - "0x9085b4d52c3e0b8b6f9af6213e85a433c7d76f19": { - "address": "0x9085b4d52c3e0b8b6f9af6213e85a433c7d76f19", - "symbol": "OWL", - "decimals": 18, - "name": "OwlDAO token", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x9085b4d52c3e0b8b6f9af6213e85a433c7d76f19.png", - "aggregators": [ - "PancakeCoinMarketCap", - "1inch", - "Socket", - "Rubic", - "Rango" - ], - "occurrences": 5 - }, - "0x5bccfbd33873a5498f8406146868eddd5e998962": { - "address": "0x5bccfbd33873a5498f8406146868eddd5e998962", - "symbol": "PDO", - "decimals": 18, - "name": "pDollar", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x5bccfbd33873a5498f8406146868eddd5e998962.png", - "aggregators": [ - "PancakeCoinMarketCap", - "1inch", - "Socket", - "Rubic", - "Rango" - ], - "occurrences": 5 - }, - "0xaef0a177c8c329cbc8508292bb7e06c00786bbfc": { - "address": "0xaef0a177c8c329cbc8508292bb7e06c00786bbfc", - "symbol": "PULI", - "decimals": 9, - "name": "PULI INU", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xaef0a177c8c329cbc8508292bb7e06c00786bbfc.png", - "aggregators": [ - "PancakeCoinMarketCap", - "1inch", - "Socket", - "Rubic", - "Rango" - ], - "occurrences": 5 - }, - "0x276b440fdb4c54631c882cac9e4317929e751ff8": { - "address": "0x276b440fdb4c54631c882cac9e4317929e751ff8", - "symbol": "REV", - "decimals": 18, - "name": "REV", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x276b440fdb4c54631c882cac9e4317929e751ff8.png", - "aggregators": [ - "PancakeCoinMarketCap", - "LiFi", - "Socket", - "Rubic", - "Rango" - ], - "occurrences": 5 - }, - "0xfb981ed9a92377ca4d75d924b9ca06df163924fd": { - "address": "0xfb981ed9a92377ca4d75d924b9ca06df163924fd", - "symbol": "SA", - "decimals": 18, - "name": "Superalgos", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xfb981ed9a92377ca4d75d924b9ca06df163924fd.png", - "aggregators": [ - "PancakeCoinMarketCap", - "1inch", - "Socket", - "Rubic", - "Rango" - ], - "occurrences": 5 - }, - "0x380624a4a7e69db1ca07deecf764025fc224d056": { - "address": "0x380624a4a7e69db1ca07deecf764025fc224d056", - "symbol": "SAFEBTC", - "decimals": 9, - "name": "SafeBTC", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x380624a4a7e69db1ca07deecf764025fc224d056.png", - "aggregators": [ - "PancakeCoinMarketCap", - "1inch", - "Socket", - "Rubic", - "Rango" - ], - "occurrences": 5 - }, - "0x6b51231c43b1604815313801db5e9e614914d6e4": { - "address": "0x6b51231c43b1604815313801db5e9e614914d6e4", - "symbol": "SAFEGALAXY", - "decimals": 9, - "name": "SafeGalaxy", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x6b51231c43b1604815313801db5e9e614914d6e4.png", - "aggregators": [ - "PancakeCoinMarketCap", - "1inch", - "Socket", - "Rubic", - "Rango" - ], - "occurrences": 5 - }, - "0xe1db3d1ee5cfe5c6333be96e6421f9bd5b85c987": { - "address": "0xe1db3d1ee5cfe5c6333be96e6421f9bd5b85c987", - "symbol": "SAFESPACE", - "decimals": 9, - "name": "SAFESPACE", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xe1db3d1ee5cfe5c6333be96e6421f9bd5b85c987.png", - "aggregators": [ - "PancakeCoinMarketCap", - "1inch", - "Socket", - "Rubic", - "Rango" - ], - "occurrences": 5 - }, - "0x3c00f8fcc8791fa78daa4a480095ec7d475781e2": { - "address": "0x3c00f8fcc8791fa78daa4a480095ec7d475781e2", - "symbol": "SAFESTAR", - "decimals": 9, - "name": "SafeStar", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x3c00f8fcc8791fa78daa4a480095ec7d475781e2.png", - "aggregators": [ - "PancakeCoinMarketCap", - "1inch", - "Socket", - "Rubic", - "Rango" - ], - "occurrences": 5 - }, - "0x0d9319565be7f53cefe84ad201be3f40feae2740": { - "address": "0x0d9319565be7f53cefe84ad201be3f40feae2740", - "symbol": "SBDO", - "decimals": 18, - "name": "SBDO", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x0d9319565be7f53cefe84ad201be3f40feae2740.png", - "aggregators": [ - "PancakeCoinMarketCap", - "1inch", - "LiFi", - "Rubic", - "Rango" - ], - "occurrences": 5 - }, - "0xfb52fc1f90dd2b070b9cf7ad68ac3d68905643fa": { - "address": "0xfb52fc1f90dd2b070b9cf7ad68ac3d68905643fa", - "symbol": "SEA", - "decimals": 18, - "name": "Sea Token", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xfb52fc1f90dd2b070b9cf7ad68ac3d68905643fa.png", - "aggregators": [ - "PancakeCoinMarketCap", - "1inch", - "Socket", - "Rubic", - "Rango" - ], - "occurrences": 5 - }, - "0x69b14e8d3cebfdd8196bfe530954a0c226e5008e": { - "address": "0x69b14e8d3cebfdd8196bfe530954a0c226e5008e", - "symbol": "SPACEPI", - "decimals": 9, - "name": "SPACEPI", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x69b14e8d3cebfdd8196bfe530954a0c226e5008e.png", - "aggregators": [ - "PancakeCoinMarketCap", - "1inch", - "Socket", - "Rubic", - "Rango" - ], - "occurrences": 5 - }, - "0x90df11a8cce420675e73922419e3f4f3fe13cccb": { - "address": "0x90df11a8cce420675e73922419e3f4f3fe13cccb", - "symbol": "STM", - "decimals": 18, - "name": "Streamity", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x90df11a8cce420675e73922419e3f4f3fe13cccb.png", - "aggregators": [ - "PancakeCoinMarketCap", - "Socket", - "Rubic", - "Rango", - "SushiSwap" - ], - "occurrences": 5 - }, - "0xa96658cd0d04a8fdcdc30d1156cc65bbfc7591ed": { - "address": "0xa96658cd0d04a8fdcdc30d1156cc65bbfc7591ed", - "symbol": "SUSHIBA", - "decimals": 9, - "name": "Sushiba", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xa96658cd0d04a8fdcdc30d1156cc65bbfc7591ed.png", - "aggregators": [ - "PancakeCoinMarketCap", - "1inch", - "Socket", - "Rubic", - "Rango" - ], - "occurrences": 5 - }, - "0x52d86850bc8207b520340b7e39cdaf22561b9e56": { - "address": "0x52d86850bc8207b520340b7e39cdaf22561b9e56", - "symbol": "SWIRL", - "decimals": 18, - "name": "Swirl.Cash", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x52d86850bc8207b520340b7e39cdaf22561b9e56.png", - "aggregators": [ - "PancakeCoinMarketCap", - "1inch", - "Socket", - "Rubic", - "Rango" - ], - "occurrences": 5 - }, - "0xb93ba7dc61ecfced69067151fc00c41ca369a797": { - "address": "0xb93ba7dc61ecfced69067151fc00c41ca369a797", - "symbol": "WENMOON", - "decimals": 7, - "name": "WenMoon Token", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xb93ba7dc61ecfced69067151fc00c41ca369a797.png", - "aggregators": [ - "PancakeCoinMarketCap", - "1inch", - "Socket", - "Rubic", - "Rango" - ], - "occurrences": 5 - }, - "0x26a5dfab467d4f58fb266648cae769503cec9580": { - "address": "0x26a5dfab467d4f58fb266648cae769503cec9580", - "symbol": "XMARK", - "decimals": 9, - "name": "XMARK", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x26a5dfab467d4f58fb266648cae769503cec9580.png", - "aggregators": [ - "PancakeExtended", - "LiFi", - "Socket", - "Rubic", - "Rango" - ], - "occurrences": 5 - }, - "0x9806aec346064183b5ce441313231dff89811f7a": { - "address": "0x9806aec346064183b5ce441313231dff89811f7a", - "symbol": "YPANDA", - "decimals": 8, - "name": "YieldPanda.finance", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x9806aec346064183b5ce441313231dff89811f7a.png", - "aggregators": [ - "PancakeCoinMarketCap", - "1inch", - "Socket", - "Rubic", - "Rango" - ], - "occurrences": 5 - }, - "0x5a16e8ce8ca316407c6e6307095dc9540a8d62b3": { - "address": "0x5a16e8ce8ca316407c6e6307095dc9540a8d62b3", - "symbol": "BTR", - "decimals": 18, - "name": "Bitrue Token", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x5a16e8ce8ca316407c6e6307095dc9540a8d62b3.png", - "aggregators": [ - "PancakeExtended", - "LiFi", - "Socket", - "Rubic", - "Rango" - ], - "occurrences": 5 - }, - "0x039cb485212f996a9dbb85a9a75d898f94d38da6": { - "address": "0x039cb485212f996a9dbb85a9a75d898f94d38da6", - "symbol": "DEXE", - "decimals": 18, - "name": "DeXe", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x039cb485212f996a9dbb85a9a75d898f94d38da6.png", - "aggregators": [ - "PancakeExtended", - "LiFi", - "Socket", - "Rubic", - "Rango" - ], - "occurrences": 5 - }, - "0x398f7827dccbefe6990478876bbf3612d93baf05": { - "address": "0x398f7827dccbefe6990478876bbf3612d93baf05", - "symbol": "MIX", - "decimals": 18, - "name": "MixMarvel Token", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x398f7827dccbefe6990478876bbf3612d93baf05.png", - "aggregators": [ - "PancakeExtended", - "1inch", - "Socket", - "Rubic", - "Rango" - ], - "occurrences": 5 - }, - "0x8b303d5bbfbbf46f1a4d9741e491e06986894e18": { - "address": "0x8b303d5bbfbbf46f1a4d9741e491e06986894e18", - "symbol": "WOOP", - "decimals": 18, - "name": "Woonkly Power", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x8b303d5bbfbbf46f1a4d9741e491e06986894e18.png", - "aggregators": [ - "PancakeExtended", - "LiFi", - "Rubic", - "Squid", - "Rango" - ], - "occurrences": 5 - }, - "0xffeb8287de7dc756067e171e9919c730f0636680": { - "address": "0xffeb8287de7dc756067e171e9919c730f0636680", - "symbol": "LAVA", - "decimals": 6, - "name": " LAVA (Axelar)", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xffeb8287de7dc756067e171e9919c730f0636680.png", - "aggregators": ["PancakeExtended", "LiFi", "Rubic", "Squid"], - "occurrences": 4 - }, - "0x4d4e595d643dc61ea7fcbf12e4b1aaa39f9975b8": { - "address": "0x4d4e595d643dc61ea7fcbf12e4b1aaa39f9975b8", - "symbol": "PET", - "decimals": 18, - "name": "PET", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x4d4e595d643dc61ea7fcbf12e4b1aaa39f9975b8.png", - "aggregators": ["1inch", "LiFi", "Socket", "Rubic", "Rango"], - "occurrences": 5 - }, - "0xe4ae305ebe1abe663f261bc00534067c80ad677c": { - "address": "0xe4ae305ebe1abe663f261bc00534067c80ad677c", - "symbol": "SPARTA", - "decimals": 18, - "name": "SPARTAN PROTOCOL TOKEN", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xe4ae305ebe1abe663f261bc00534067c80ad677c.png", - "aggregators": ["LiFi", "Socket", "Rubic", "Rango", "SushiSwap"], - "occurrences": 5 - }, - "0x9d986a3f147212327dd658f712d5264a73a1fdb0": { - "address": "0x9d986a3f147212327dd658f712d5264a73a1fdb0", - "symbol": "LAND", - "decimals": 18, - "name": "Landshare Token", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x9d986a3f147212327dd658f712d5264a73a1fdb0.png", - "aggregators": ["ApeSwap", "1inch", "Rubic", "Rango"], - "occurrences": 4 - }, - "0x1a076e4633fa139d7b908b88326de603fbe8c199": { - "address": "0x1a076e4633fa139d7b908b88326de603fbe8c199", - "symbol": "FAV", - "decimals": 18, - "name": "Football at AlphaVerse", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x1a076e4633fa139d7b908b88326de603fbe8c199.png", - "aggregators": ["PancakeCoinMarketCap", "LiFi", "Rubic", "Rango"], - "occurrences": 4 - }, - "0x886640149e31e1430fa74cc39725431eb82ddfb2": { - "address": "0x886640149e31e1430fa74cc39725431eb82ddfb2", - "symbol": "FORWARD", - "decimals": 18, - "name": "Forward", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x886640149e31e1430fa74cc39725431eb82ddfb2.png", - "aggregators": [ - "PancakeCoinMarketCap", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 4 - }, - "0xbdf5bafee1291eec45ae3aadac89be8152d4e673": { - "address": "0xbdf5bafee1291eec45ae3aadac89be8152d4e673", - "symbol": "CATA", - "decimals": 18, - "name": "Catamoto", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xbdf5bafee1291eec45ae3aadac89be8152d4e673.png", - "aggregators": ["PancakeCoinGecko", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0x09f423ac3c9babbff6f94d372b16e4206e71439f": { - "address": "0x09f423ac3c9babbff6f94d372b16e4206e71439f", - "symbol": "EJS", - "decimals": 18, - "name": "Enjinstarter", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x09f423ac3c9babbff6f94d372b16e4206e71439f.png", - "aggregators": [ - "PancakeCoinMarketCap", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 4 - }, - "0xd6ef2222cc850fdc7ee30f2b2d5384e0167700a3": { - "address": "0xd6ef2222cc850fdc7ee30f2b2d5384e0167700a3", - "symbol": "RETRO", - "decimals": 18, - "name": "RetroCraft", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xd6ef2222cc850fdc7ee30f2b2d5384e0167700a3.png", - "aggregators": ["PancakeCoinGecko", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0x8613d52d74a48883a51badf8b25ab066714087da": { - "address": "0x8613d52d74a48883a51badf8b25ab066714087da", - "symbol": "LB", - "decimals": 18, - "name": "LoveBit", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x8613d52d74a48883a51badf8b25ab066714087da.png", - "aggregators": [ - "PancakeCoinMarketCap", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 4 - }, - "0x9767c8e438aa18f550208e6d1fdf5f43541cc2c8": { - "address": "0x9767c8e438aa18f550208e6d1fdf5f43541cc2c8", - "symbol": "MMIT", - "decimals": 18, - "name": "MangoMan Intelligent", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x9767c8e438aa18f550208e6d1fdf5f43541cc2c8.png", - "aggregators": [ - "PancakeCoinMarketCap", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 4 - }, - "0x47a9b109cfb8f89d16e8b34036150ee112572435": { - "address": "0x47a9b109cfb8f89d16e8b34036150ee112572435", - "symbol": "BCAT", - "decimals": 18, - "name": "BilliCat", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x47a9b109cfb8f89d16e8b34036150ee112572435.png", - "aggregators": [ - "PancakeCoinMarketCap", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 4 - }, - "0x80262f604acac839724f66846f290a2cc8b48662": { - "address": "0x80262f604acac839724f66846f290a2cc8b48662", - "symbol": "ARI10", - "decimals": 18, - "name": "Ari10", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x80262f604acac839724f66846f290a2cc8b48662.png", - "aggregators": [ - "PancakeCoinMarketCap", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 4 - }, - "0x991b4ce57864060115700d6fc05c7780346a15ac": { - "address": "0x991b4ce57864060115700d6fc05c7780346a15ac", - "symbol": "Y8U", - "decimals": 18, - "name": "Y8U", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x991b4ce57864060115700d6fc05c7780346a15ac.png", - "aggregators": ["PancakeCoinGecko", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0x5c4625ac040486ce7a9054924b8cd3e4ba8480a6": { - "address": "0x5c4625ac040486ce7a9054924b8cd3e4ba8480a6", - "symbol": "SNIFT", - "decimals": 18, - "name": "StarryNift", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x5c4625ac040486ce7a9054924b8cd3e4ba8480a6.png", - "aggregators": ["PancakeCoinGecko", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0xadaae082237cb1772c9e079db95c117e6dd0c5af": { - "address": "0xadaae082237cb1772c9e079db95c117e6dd0c5af", - "symbol": "VIZSLASWAP", - "decimals": 18, - "name": "VizslaSwap", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xadaae082237cb1772c9e079db95c117e6dd0c5af.png", - "aggregators": [ - "PancakeCoinMarketCap", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 4 - }, - "0xeceb785a646f2c5ac759aa30d0fc85841ba004f3": { - "address": "0xeceb785a646f2c5ac759aa30d0fc85841ba004f3", - "symbol": "$BABYLONG", - "decimals": 18, - "name": "BABYLONG", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xeceb785a646f2c5ac759aa30d0fc85841ba004f3.png", - "aggregators": [ - "PancakeCoinMarketCap", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 4 - }, - "0xdebd6e2da378784a69dc6ec99fe254223b312287": { - "address": "0xdebd6e2da378784a69dc6ec99fe254223b312287", - "symbol": "EXIT", - "decimals": 18, - "name": "EXIT Designer Token", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xdebd6e2da378784a69dc6ec99fe254223b312287.png", - "aggregators": [ - "PancakeCoinMarketCap", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 4 - }, - "0x2167afa1c658dc5c4ec975f4af608ff075a8b8ae": { - "address": "0x2167afa1c658dc5c4ec975f4af608ff075a8b8ae", - "symbol": "EV", - "decimals": 8, - "name": "Evai", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x2167afa1c658dc5c4ec975f4af608ff075a8b8ae.png", - "aggregators": [ - "PancakeCoinMarketCap", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 4 - }, - "0x9320bdb3c8f3d0b1313726efbb0f0061ebf149ad": { - "address": "0x9320bdb3c8f3d0b1313726efbb0f0061ebf149ad", - "symbol": "SAFO", - "decimals": 18, - "name": "SAFEONE CHAIN", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x9320bdb3c8f3d0b1313726efbb0f0061ebf149ad.png", - "aggregators": [ - "PancakeCoinMarketCap", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 4 - }, - "0xbe6ad1eb9876cf3d3f9b85feecfb400298e80143": { - "address": "0xbe6ad1eb9876cf3d3f9b85feecfb400298e80143", - "symbol": "AIC", - "decimals": 18, - "name": "AI Companions", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xbe6ad1eb9876cf3d3f9b85feecfb400298e80143.png", - "aggregators": [ - "PancakeCoinMarketCap", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 4 - }, - "0x2024b9be6b03f2a57d3533ae33c7e1d0b0b4be47": { - "address": "0x2024b9be6b03f2a57d3533ae33c7e1d0b0b4be47", - "symbol": "BTTY", - "decimals": 18, - "name": "Bitcointry Token", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x2024b9be6b03f2a57d3533ae33c7e1d0b0b4be47.png", - "aggregators": [ - "PancakeCoinMarketCap", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 4 - }, - "0x44ece1031e5b5e2d9169546cc10ea5c95ba96237": { - "address": "0x44ece1031e5b5e2d9169546cc10ea5c95ba96237", - "symbol": "AMAZINGTEAM", - "decimals": 18, - "name": "AmazingTeamDAO", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x44ece1031e5b5e2d9169546cc10ea5c95ba96237.png", - "aggregators": [ - "PancakeCoinMarketCap", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 4 - }, - "0x320d6fadc3c39263c25cbfaa01d02971c64ac623": { - "address": "0x320d6fadc3c39263c25cbfaa01d02971c64ac623", - "symbol": "INTELLIQUE", - "decimals": 18, - "name": "KARASOU", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x320d6fadc3c39263c25cbfaa01d02971c64ac623.png", - "aggregators": [ - "PancakeCoinMarketCap", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 4 - }, - "0x6d3a160b86edcd46d8f9bba25c2f88cccade19fc": { - "address": "0x6d3a160b86edcd46d8f9bba25c2f88cccade19fc", - "symbol": "FWC", - "decimals": 9, - "name": "Football World Community", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x6d3a160b86edcd46d8f9bba25c2f88cccade19fc.png", - "aggregators": [ - "PancakeCoinMarketCap", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 4 - }, - "0xd16cb89f621820bc19dae1c29c9db6d22813b01d": { - "address": "0xd16cb89f621820bc19dae1c29c9db6d22813b01d", - "symbol": "CBE", - "decimals": 18, - "name": "Coinbidex", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xd16cb89f621820bc19dae1c29c9db6d22813b01d.png", - "aggregators": [ - "PancakeCoinMarketCap", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 4 - }, - "0xde619a9e0eeeaa9f8cd39522ed788234837f3b26": { - "address": "0xde619a9e0eeeaa9f8cd39522ed788234837f3b26", - "symbol": "HVI", - "decimals": 9, - "name": "Hungarian Vizsla Inu", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xde619a9e0eeeaa9f8cd39522ed788234837f3b26.png", - "aggregators": [ - "PancakeCoinMarketCap", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 4 - }, - "0xb10be3f4c7e1f870d86ed6cfd412fed6615feb6f": { - "address": "0xb10be3f4c7e1f870d86ed6cfd412fed6615feb6f", - "symbol": "PRI", - "decimals": 18, - "name": "Privateum Global", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xb10be3f4c7e1f870d86ed6cfd412fed6615feb6f.png", - "aggregators": [ - "PancakeCoinMarketCap", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 4 - }, - "0x64f36701138f0e85cc10c34ea535fdbadcb54147": { - "address": "0x64f36701138f0e85cc10c34ea535fdbadcb54147", - "symbol": "AINU", - "decimals": 9, - "name": "Anon Inu", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x64f36701138f0e85cc10c34ea535fdbadcb54147.png", - "aggregators": [ - "PancakeCoinMarketCap", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 4 - }, - "0x43b35e89d15b91162dea1c51133c4c93bdd1c4af": { - "address": "0x43b35e89d15b91162dea1c51133c4c93bdd1c4af", - "symbol": "SAKAI", - "decimals": 18, - "name": "Sakai Vault", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x43b35e89d15b91162dea1c51133c4c93bdd1c4af.png", - "aggregators": [ - "PancakeCoinMarketCap", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 4 - }, - "0x4b5decb9327b4d511a58137a1ade61434aacdd43": { - "address": "0x4b5decb9327b4d511a58137a1ade61434aacdd43", - "symbol": "PKN", - "decimals": 18, - "name": "Poken", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x4b5decb9327b4d511a58137a1ade61434aacdd43.png", - "aggregators": [ - "PancakeCoinMarketCap", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 4 - }, - "0x1ae369a6ab222aff166325b7b87eb9af06c86e57": { - "address": "0x1ae369a6ab222aff166325b7b87eb9af06c86e57", - "symbol": "10SET", - "decimals": 18, - "name": "Tenset", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x1ae369a6ab222aff166325b7b87eb9af06c86e57.png", - "aggregators": [ - "PancakeCoinMarketCap", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 4 - }, - "0x6a1225c87f15da91e2fa5ee7b2075e2e3a9dbc39": { - "address": "0x6a1225c87f15da91e2fa5ee7b2075e2e3a9dbc39", - "symbol": "SSE", - "decimals": 18, - "name": "Soroosh Smart Ecosystem", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x6a1225c87f15da91e2fa5ee7b2075e2e3a9dbc39.png", - "aggregators": [ - "PancakeCoinMarketCap", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 4 - }, - "0xe4e11e02aa14c7f24db749421986eaec1369e8c9": { - "address": "0xe4e11e02aa14c7f24db749421986eaec1369e8c9", - "symbol": "MNTC", - "decimals": 18, - "name": "MINATIVERSE", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xe4e11e02aa14c7f24db749421986eaec1369e8c9.png", - "aggregators": [ - "PancakeCoinMarketCap", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 4 - }, - "0x11ac6af070fe1991a457c56fb85c577efe57f0e4": { - "address": "0x11ac6af070fe1991a457c56fb85c577efe57f0e4", - "symbol": "DRAGONKING", - "decimals": 18, - "name": "DragonKing", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x11ac6af070fe1991a457c56fb85c577efe57f0e4.png", - "aggregators": [ - "PancakeCoinMarketCap", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 4 - }, - "0x5492ef6aeeba1a3896357359ef039a8b11621b45": { - "address": "0x5492ef6aeeba1a3896357359ef039a8b11621b45", - "symbol": "CHMB", - "decimals": 18, - "name": "Chumbi Valley", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x5492ef6aeeba1a3896357359ef039a8b11621b45.png", - "aggregators": [ - "PancakeCoinMarketCap", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 4 - }, - "0x5569edd2e1535be2003470b2663f2ff77e83d27e": { - "address": "0x5569edd2e1535be2003470b2663f2ff77e83d27e", - "symbol": "KOL", - "decimals": 18, - "name": "KeyOfLife", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x5569edd2e1535be2003470b2663f2ff77e83d27e.png", - "aggregators": [ - "PancakeCoinMarketCap", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 4 - }, - "0xeacd67fa73606320e6c842c05df291ca0fac4142": { - "address": "0xeacd67fa73606320e6c842c05df291ca0fac4142", - "symbol": "FTS", - "decimals": 18, - "name": "FINANCIAL TRANSACTION SYSTEM", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xeacd67fa73606320e6c842c05df291ca0fac4142.png", - "aggregators": [ - "PancakeCoinMarketCap", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 4 - }, - "0x0e4b5ea0259eb3d66e6fcb7cc8785817f8490a53": { - "address": "0x0e4b5ea0259eb3d66e6fcb7cc8785817f8490a53", - "symbol": "SOKU", - "decimals": 18, - "name": "SokuSwap", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x0e4b5ea0259eb3d66e6fcb7cc8785817f8490a53.png", - "aggregators": [ - "PancakeCoinMarketCap", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 4 - }, - "0x8eca5c1b51a801a822912167153041ed0b92a397": { - "address": "0x8eca5c1b51a801a822912167153041ed0b92a397", - "symbol": "FRP", - "decimals": 18, - "name": "Fame Reward Plus", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x8eca5c1b51a801a822912167153041ed0b92a397.png", - "aggregators": [ - "PancakeCoinMarketCap", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 4 - }, - "0xc350caa89eb963d5d6b964324a0a7736d8d65533": { - "address": "0xc350caa89eb963d5d6b964324a0a7736d8d65533", - "symbol": "INFTEE", - "decimals": 18, - "name": "Infinitee", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xc350caa89eb963d5d6b964324a0a7736d8d65533.png", - "aggregators": [ - "PancakeCoinMarketCap", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 4 - }, - "0x21adb1c644663069e83059ac3f9d9ca1133d29e4": { - "address": "0x21adb1c644663069e83059ac3f9d9ca1133d29e4", - "symbol": "EGGP", - "decimals": 18, - "name": "Eggplant Finance", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x21adb1c644663069e83059ac3f9d9ca1133d29e4.png", - "aggregators": [ - "PancakeCoinMarketCap", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 4 - }, - "0x1f36fb2d91d9951cf58ae4c1956c0b77e224f1e9": { - "address": "0x1f36fb2d91d9951cf58ae4c1956c0b77e224f1e9", - "symbol": "VCG", - "decimals": 18, - "name": "VCGamers", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x1f36fb2d91d9951cf58ae4c1956c0b77e224f1e9.png", - "aggregators": [ - "PancakeCoinMarketCap", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 4 - }, - "0xe9d78bf51ae04c7e1263a76ed89a65537b9ca903": { - "address": "0xe9d78bf51ae04c7e1263a76ed89a65537b9ca903", - "symbol": "GMEX", - "decimals": 9, - "name": "Game Coin", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xe9d78bf51ae04c7e1263a76ed89a65537b9ca903.png", - "aggregators": [ - "PancakeCoinMarketCap", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 4 - }, - "0xdb238123939637d65a03e4b2b485650b4f9d91cb": { - "address": "0xdb238123939637d65a03e4b2b485650b4f9d91cb", - "symbol": "TASTE", - "decimals": 9, - "name": "TasteNFT", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xdb238123939637d65a03e4b2b485650b4f9d91cb.png", - "aggregators": [ - "PancakeCoinMarketCap", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 4 - }, - "0x57bfe2af99aeb7a3de3bc0c42c22353742bfd20d": { - "address": "0x57bfe2af99aeb7a3de3bc0c42c22353742bfd20d", - "symbol": "WAR", - "decimals": 18, - "name": "Water Rabbit", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x57bfe2af99aeb7a3de3bc0c42c22353742bfd20d.png", - "aggregators": [ - "PancakeCoinMarketCap", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 4 - }, - "0xddfd6382a18ad7279eb6db4dfb78922ddc33d6e7": { - "address": "0xddfd6382a18ad7279eb6db4dfb78922ddc33d6e7", - "symbol": "SHRED", - "decimals": 18, - "name": "ShredN", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xddfd6382a18ad7279eb6db4dfb78922ddc33d6e7.png", - "aggregators": [ - "PancakeCoinMarketCap", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 4 - }, - "0x79cdc9ca057e16dffd45bd803491f328f49e1762": { - "address": "0x79cdc9ca057e16dffd45bd803491f328f49e1762", - "symbol": "BFLOKI", - "decimals": 9, - "name": "bitFloki", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x79cdc9ca057e16dffd45bd803491f328f49e1762.png", - "aggregators": [ - "PancakeCoinMarketCap", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 4 - }, - "0x5f980533b994c93631a639deda7892fc49995839": { - "address": "0x5f980533b994c93631a639deda7892fc49995839", - "symbol": "COSA", - "decimals": 8, - "name": "Cosanta", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x5f980533b994c93631a639deda7892fc49995839.png", - "aggregators": ["PancakeCoinGecko", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0x2456493e757fdeedf569781f053998a72adfad03": { - "address": "0x2456493e757fdeedf569781f053998a72adfad03", - "symbol": "DNT", - "decimals": 6, - "name": "Definder Network", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x2456493e757fdeedf569781f053998a72adfad03.png", - "aggregators": [ - "PancakeCoinMarketCap", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 4 - }, - "0xfa2e4ec5a818c2d2c352f4b152c06338d476b646": { - "address": "0xfa2e4ec5a818c2d2c352f4b152c06338d476b646", - "symbol": "XPX", - "decimals": 18, - "name": "XPX", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xfa2e4ec5a818c2d2c352f4b152c06338d476b646.png", - "aggregators": [ - "PancakeCoinMarketCap", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 4 - }, - "0x2136cd209bb3d8e4c008ec2791b5d6790b5e33a9": { - "address": "0x2136cd209bb3d8e4c008ec2791b5d6790b5e33a9", - "symbol": "ABLE", - "decimals": 8, - "name": "Able Finance", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x2136cd209bb3d8e4c008ec2791b5d6790b5e33a9.png", - "aggregators": [ - "PancakeCoinMarketCap", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 4 - }, - "0x679d5b2d94f454c950d683d159b87aa8eae37c9e": { - "address": "0x679d5b2d94f454c950d683d159b87aa8eae37c9e", - "symbol": "HAM", - "decimals": 7, - "name": "Hamster", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x679d5b2d94f454c950d683d159b87aa8eae37c9e.png", - "aggregators": [ - "PancakeCoinMarketCap", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 4 - }, - "0x5ce12f6d9f2fcaf0b11494a1c39e09eeb16ca7e8": { - "address": "0x5ce12f6d9f2fcaf0b11494a1c39e09eeb16ca7e8", - "symbol": "BSR", - "decimals": 18, - "name": "BinStarter", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x5ce12f6d9f2fcaf0b11494a1c39e09eeb16ca7e8.png", - "aggregators": [ - "PancakeCoinMarketCap", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 4 - }, - "0x8578eb576e126f67913a8bc0622e0a22eba0989a": { - "address": "0x8578eb576e126f67913a8bc0622e0a22eba0989a", - "symbol": "PANDA", - "decimals": 9, - "name": "HashPanda", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x8578eb576e126f67913a8bc0622e0a22eba0989a.png", - "aggregators": [ - "PancakeCoinMarketCap", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 4 - }, - "0xf6cb4ad242bab681effc5de40f7c8ff921a12d63": { - "address": "0xf6cb4ad242bab681effc5de40f7c8ff921a12d63", - "symbol": "CNS", - "decimals": 8, - "name": "Centric Swap", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xf6cb4ad242bab681effc5de40f7c8ff921a12d63.png", - "aggregators": [ - "PancakeCoinMarketCap", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 4 - }, - "0xde83180dd1166d4f8e5c2b7de14a2163b1bb4a87": { - "address": "0xde83180dd1166d4f8e5c2b7de14a2163b1bb4a87", - "symbol": "DLC", - "decimals": 18, - "name": "Diamond Launch", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xde83180dd1166d4f8e5c2b7de14a2163b1bb4a87.png", - "aggregators": [ - "PancakeCoinMarketCap", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 4 - }, - "0xf51bee141c9551338d1b26844ae5035b55993f0d": { - "address": "0xf51bee141c9551338d1b26844ae5035b55993f0d", - "symbol": "KINGCAT", - "decimals": 9, - "name": "King Cat", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xf51bee141c9551338d1b26844ae5035b55993f0d.png", - "aggregators": [ - "PancakeCoinMarketCap", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 4 - }, - "0x682f8fddfec6ebdf6c7bf1c0eec276b37a647d59": { - "address": "0x682f8fddfec6ebdf6c7bf1c0eec276b37a647d59", - "symbol": "$GIGA", - "decimals": 8, - "name": "GigaChadGPT", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x682f8fddfec6ebdf6c7bf1c0eec276b37a647d59.png", - "aggregators": [ - "PancakeCoinMarketCap", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 4 - }, - "0x510975eda48a97e0ca228dd04d1217292487bea6": { - "address": "0x510975eda48a97e0ca228dd04d1217292487bea6", - "symbol": "GXE", - "decimals": 18, - "name": "PROJECT XENO", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x510975eda48a97e0ca228dd04d1217292487bea6.png", - "aggregators": [ - "PancakeCoinMarketCap", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 4 - }, - "0x73cba57ad8bc775a5345d9a0de2e90c74621d802": { - "address": "0x73cba57ad8bc775a5345d9a0de2e90c74621d802", - "symbol": "LOOK", - "decimals": 18, - "name": "LooksCoin", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x73cba57ad8bc775a5345d9a0de2e90c74621d802.png", - "aggregators": [ - "PancakeCoinMarketCap", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 4 - }, - "0xbdc87a65e0b6bfb631847b7de815d2b07dec8ee7": { - "address": "0xbdc87a65e0b6bfb631847b7de815d2b07dec8ee7", - "symbol": "IVIP", - "decimals": 5, - "name": "iVipCoin", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xbdc87a65e0b6bfb631847b7de815d2b07dec8ee7.png", - "aggregators": [ - "PancakeCoinMarketCap", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 4 - }, - "0xe1443170fab91fba2c535b3f78935d6fce55348d": { - "address": "0xe1443170fab91fba2c535b3f78935d6fce55348d", - "symbol": "GVC", - "decimals": 18, - "name": "Global Virtual Coin", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xe1443170fab91fba2c535b3f78935d6fce55348d.png", - "aggregators": [ - "PancakeCoinMarketCap", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 4 - }, - "0xe90d1567ecef9282cc1ab348d9e9e2ac95659b99": { - "address": "0xe90d1567ecef9282cc1ab348d9e9e2ac95659b99", - "symbol": "CXPAD", - "decimals": 18, - "name": "CoinxPad", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xe90d1567ecef9282cc1ab348d9e9e2ac95659b99.png", - "aggregators": [ - "PancakeCoinMarketCap", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 4 - }, - "0x2f0c6e147974bfbf7da557b88643d74c324053a2": { - "address": "0x2f0c6e147974bfbf7da557b88643d74c324053a2", - "symbol": "CATS", - "decimals": 0, - "name": "CatCoin Token", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x2f0c6e147974bfbf7da557b88643d74c324053a2.png", - "aggregators": [ - "PancakeCoinMarketCap", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 4 - }, - "0x84cfc0427147026368c2aac4f502d98aac47eb48": { - "address": "0x84cfc0427147026368c2aac4f502d98aac47eb48", - "symbol": "SHAN", - "decimals": 18, - "name": "Shanum", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x84cfc0427147026368c2aac4f502d98aac47eb48.png", - "aggregators": [ - "PancakeCoinMarketCap", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 4 - }, - "0xbe96fcf736ad906b1821ef74a0e4e346c74e6221": { - "address": "0xbe96fcf736ad906b1821ef74a0e4e346c74e6221", - "symbol": "NIX", - "decimals": 18, - "name": "NIX", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xbe96fcf736ad906b1821ef74a0e4e346c74e6221.png", - "aggregators": [ - "PancakeCoinMarketCap", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 4 - }, - "0x02ff5065692783374947393723dba9599e59f591": { - "address": "0x02ff5065692783374947393723dba9599e59f591", - "symbol": "YOOSHI", - "decimals": 9, - "name": "YooShi", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x02ff5065692783374947393723dba9599e59f591.png", - "aggregators": [ - "PancakeCoinMarketCap", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 4 - }, - "0x44c99ca267c2b2646ceec72e898273085ab87ca5": { - "address": "0x44c99ca267c2b2646ceec72e898273085ab87ca5", - "symbol": "RPTR", - "decimals": 18, - "name": "Raptor Finance", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x44c99ca267c2b2646ceec72e898273085ab87ca5.png", - "aggregators": [ - "PancakeCoinMarketCap", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 4 - }, - "0x680d3113caf77b61b510f332d5ef4cf5b41a761d": { - "address": "0x680d3113caf77b61b510f332d5ef4cf5b41a761d", - "symbol": "DHB", - "decimals": 18, - "name": "DeHub", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x680d3113caf77b61b510f332d5ef4cf5b41a761d.png", - "aggregators": [ - "PancakeCoinMarketCap", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 4 - }, - "0xb994882a1b9bd98a71dd6ea5f61577c42848b0e8": { - "address": "0xb994882a1b9bd98a71dd6ea5f61577c42848b0e8", - "symbol": "WOD", - "decimals": 18, - "name": "World of Dypians", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xb994882a1b9bd98a71dd6ea5f61577c42848b0e8.png", - "aggregators": ["PancakeExtended", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0x735c522c20305d868f2c14654b878950f820dc50": { - "address": "0x735c522c20305d868f2c14654b878950f820dc50", - "symbol": "BEE", - "decimals": 18, - "name": "BNBEE", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x735c522c20305d868f2c14654b878950f820dc50.png", - "aggregators": [ - "PancakeCoinMarketCap", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 4 - }, - "0xaee4164c1ee46ed0bbc34790f1a3d1fc87796668": { - "address": "0xaee4164c1ee46ed0bbc34790f1a3d1fc87796668", - "symbol": "HMDX", - "decimals": 18, - "name": "Poly-Peg Mdex", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xaee4164c1ee46ed0bbc34790f1a3d1fc87796668.png", - "aggregators": [ - "PancakeCoinMarketCap", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 4 - }, - "0x62858686119135cc00c4a3102b436a0eb314d402": { - "address": "0x62858686119135cc00c4a3102b436a0eb314d402", - "symbol": "METAV", - "decimals": 18, - "name": "MetaVPad", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x62858686119135cc00c4a3102b436a0eb314d402.png", - "aggregators": [ - "PancakeCoinMarketCap", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 4 - }, - "0xfe8bf5b8f5e4eb5f9bc2be16303f7dab8cf56aa8": { - "address": "0xfe8bf5b8f5e4eb5f9bc2be16303f7dab8cf56aa8", - "symbol": "BIBI", - "decimals": 18, - "name": "BIBI", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xfe8bf5b8f5e4eb5f9bc2be16303f7dab8cf56aa8.png", - "aggregators": [ - "PancakeCoinMarketCap", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 4 - }, - "0x842668e2b9a73240abf6532dedc89c9c3e050c98": { - "address": "0x842668e2b9a73240abf6532dedc89c9c3e050c98", - "symbol": "LIGHT", - "decimals": 9, - "name": "Light Defi", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x842668e2b9a73240abf6532dedc89c9c3e050c98.png", - "aggregators": [ - "PancakeCoinMarketCap", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 4 - }, - "0x9abdba20edfba06b782126b4d8d72a5853918fd0": { - "address": "0x9abdba20edfba06b782126b4d8d72a5853918fd0", - "symbol": "TABOO", - "decimals": 9, - "name": "Taboo", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x9abdba20edfba06b782126b4d8d72a5853918fd0.png", - "aggregators": [ - "PancakeCoinMarketCap", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 4 - }, - "0xe283d0e3b8c102badf5e8166b73e02d96d92f688": { - "address": "0xe283d0e3b8c102badf5e8166b73e02d96d92f688", - "symbol": "ELEPHANT", - "decimals": 9, - "name": "Elephant Money", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xe283d0e3b8c102badf5e8166b73e02d96d92f688.png", - "aggregators": [ - "PancakeCoinMarketCap", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 4 - }, - "0x092bbec1342afffd16cfb41b56343d5a299cdf0d": { - "address": "0x092bbec1342afffd16cfb41b56343d5a299cdf0d", - "symbol": "SHICO", - "decimals": 9, - "name": "ShibaCorgi", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x092bbec1342afffd16cfb41b56343d5a299cdf0d.png", - "aggregators": [ - "PancakeCoinMarketCap", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 4 - }, - "0x5b1baec64af6dc54e6e04349315919129a6d3c23": { - "address": "0x5b1baec64af6dc54e6e04349315919129a6d3c23", - "symbol": "DXCT", - "decimals": 18, - "name": "DNAxCAT", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x5b1baec64af6dc54e6e04349315919129a6d3c23.png", - "aggregators": [ - "PancakeCoinMarketCap", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 4 - }, - "0xcdb3d3642fb4d48d2b5e4fb4a014448a2761c063": { - "address": "0xcdb3d3642fb4d48d2b5e4fb4a014448a2761c063", - "symbol": "JTT", - "decimals": 18, - "name": "Justus", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xcdb3d3642fb4d48d2b5e4fb4a014448a2761c063.png", - "aggregators": [ - "PancakeCoinMarketCap", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 4 - }, - "0x1e446cbea52badeb614fbe4ab7610f737995fb44": { - "address": "0x1e446cbea52badeb614fbe4ab7610f737995fb44", - "symbol": "SAT", - "decimals": 9, - "name": "Saturna", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x1e446cbea52badeb614fbe4ab7610f737995fb44.png", - "aggregators": [ - "PancakeCoinMarketCap", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 4 - }, - "0x1162e2efce13f99ed259ffc24d99108aaa0ce935": { - "address": "0x1162e2efce13f99ed259ffc24d99108aaa0ce935", - "symbol": "CLU", - "decimals": 9, - "name": "CluCoin", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x1162e2efce13f99ed259ffc24d99108aaa0ce935.png", - "aggregators": [ - "PancakeCoinMarketCap", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 4 - }, - "0x4615c8e2db74517a34712c9bdea5c418d999014b": { - "address": "0x4615c8e2db74517a34712c9bdea5c418d999014b", - "symbol": "GROKCAT", - "decimals": 9, - "name": "Grok Cat", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x4615c8e2db74517a34712c9bdea5c418d999014b.png", - "aggregators": [ - "PancakeCoinMarketCap", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 4 - }, - "0xa0b9bb05da11e3b19ffd64554400f59d4a378515": { - "address": "0xa0b9bb05da11e3b19ffd64554400f59d4a378515", - "symbol": "MOOO", - "decimals": 18, - "name": "Hashtagger", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xa0b9bb05da11e3b19ffd64554400f59d4a378515.png", - "aggregators": [ - "PancakeCoinMarketCap", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 4 - }, - "0x7b9f36a2f331ece03a7483d2713cfd806f9beef2": { - "address": "0x7b9f36a2f331ece03a7483d2713cfd806f9beef2", - "symbol": "IRISTOKEN", - "decimals": 9, - "name": "Iris Ecosystem", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x7b9f36a2f331ece03a7483d2713cfd806f9beef2.png", - "aggregators": [ - "PancakeCoinMarketCap", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 4 - }, - "0xd460546a74827580cd3321eec817d0b7b7094210": { - "address": "0xd460546a74827580cd3321eec817d0b7b7094210", - "symbol": "UNMD", - "decimals": 18, - "name": "Utility NexusMind", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xd460546a74827580cd3321eec817d0b7b7094210.png", - "aggregators": [ - "PancakeCoinMarketCap", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 4 - }, - "0x0aa086e7a108d387de63294fe2a88b05820a9855": { - "address": "0x0aa086e7a108d387de63294fe2a88b05820a9855", - "symbol": "MMO", - "decimals": 18, - "name": "MMOCoin", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x0aa086e7a108d387de63294fe2a88b05820a9855.png", - "aggregators": [ - "PancakeCoinMarketCap", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 4 - }, - "0x1991501f1398663f69dd7391c055bb0df6514f76": { - "address": "0x1991501f1398663f69dd7391c055bb0df6514f76", - "symbol": "HOTDOGE", - "decimals": 9, - "name": "HotDoge [OLD]", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x1991501f1398663f69dd7391c055bb0df6514f76.png", - "aggregators": [ - "PancakeCoinMarketCap", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 4 - }, - "0xa11ff9976018fda2a8c4ccfa6ffbe8423c5ab668": { - "address": "0xa11ff9976018fda2a8c4ccfa6ffbe8423c5ab668", - "symbol": "FLOKICASH", - "decimals": 18, - "name": "Floki Cash", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xa11ff9976018fda2a8c4ccfa6ffbe8423c5ab668.png", - "aggregators": [ - "PancakeCoinMarketCap", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 4 - }, - "0x7fa7df4996ac59f398476892cfb195ed38543520": { - "address": "0x7fa7df4996ac59f398476892cfb195ed38543520", - "symbol": "WAG", - "decimals": 18, - "name": "WagyuSwap", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x7fa7df4996ac59f398476892cfb195ed38543520.png", - "aggregators": [ - "PancakeCoinMarketCap", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 4 - }, - "0x5f320c3b8f82acfe8f2bb1c85d63aa66a7ff524f": { - "address": "0x5f320c3b8f82acfe8f2bb1c85d63aa66a7ff524f", - "symbol": "NLC", - "decimals": 9, - "name": "Nelore Coin", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x5f320c3b8f82acfe8f2bb1c85d63aa66a7ff524f.png", - "aggregators": [ - "PancakeCoinMarketCap", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 4 - }, - "0x16dcc0ec78e91e868dca64be86aec62bf7c61037": { - "address": "0x16dcc0ec78e91e868dca64be86aec62bf7c61037", - "symbol": "EVERETH", - "decimals": 9, - "name": "EverETH Reflect", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x16dcc0ec78e91e868dca64be86aec62bf7c61037.png", - "aggregators": [ - "PancakeCoinMarketCap", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 4 - }, - "0x56672ecb506301b1e32ed28552797037c54d36a9": { - "address": "0x56672ecb506301b1e32ed28552797037c54d36a9", - "symbol": "BIS", - "decimals": 8, - "name": "Bismuth", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x56672ecb506301b1e32ed28552797037c54d36a9.png", - "aggregators": [ - "PancakeCoinMarketCap", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 4 - }, - "0x961e149db8bfbdb318c182152725ac806d7be3f4": { - "address": "0x961e149db8bfbdb318c182152725ac806d7be3f4", - "symbol": "UW3S", - "decimals": 18, - "name": "Utility Web3Shot", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x961e149db8bfbdb318c182152725ac806d7be3f4.png", - "aggregators": [ - "PancakeCoinMarketCap", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 4 - }, - "0x1894251aebcff227133575ed3069be9670e25db0": { - "address": "0x1894251aebcff227133575ed3069be9670e25db0", - "symbol": "HALO", - "decimals": 9, - "name": "Halo Coin", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x1894251aebcff227133575ed3069be9670e25db0.png", - "aggregators": [ - "PancakeCoinMarketCap", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 4 - }, - "0x71809c4ff017ceade03038a8b597ecabb6519918": { - "address": "0x71809c4ff017ceade03038a8b597ecabb6519918", - "symbol": "CPOO", - "decimals": 18, - "name": "Cockapoo", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x71809c4ff017ceade03038a8b597ecabb6519918.png", - "aggregators": [ - "PancakeCoinMarketCap", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 4 - }, - "0xa53e61578ff54f1ad70186be99332a6e20b6ffa9": { - "address": "0xa53e61578ff54f1ad70186be99332a6e20b6ffa9", - "symbol": "GDOGE", - "decimals": 9, - "name": "Golden Doge", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xa53e61578ff54f1ad70186be99332a6e20b6ffa9.png", - "aggregators": [ - "PancakeCoinMarketCap", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 4 - }, - "0xd73f32833b6d5d9c8070c23e599e283a3039823c": { - "address": "0xd73f32833b6d5d9c8070c23e599e283a3039823c", - "symbol": "WTF", - "decimals": 18, - "name": "Waterfall Governance", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xd73f32833b6d5d9c8070c23e599e283a3039823c.png", - "aggregators": [ - "PancakeCoinMarketCap", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 4 - }, - "0x9b152a4ce62d8157dc1d539021e9bca999124b0a": { - "address": "0x9b152a4ce62d8157dc1d539021e9bca999124b0a", - "symbol": "BABYMYRO", - "decimals": 9, - "name": "Baby Myro", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x9b152a4ce62d8157dc1d539021e9bca999124b0a.png", - "aggregators": [ - "PancakeCoinMarketCap", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 4 - }, - "0xbf3950db0522a7f5caa107d4cbbbd84de9e047e2": { - "address": "0xbf3950db0522a7f5caa107d4cbbbd84de9e047e2", - "symbol": "JUSD", - "decimals": 18, - "name": "JUSD", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xbf3950db0522a7f5caa107d4cbbbd84de9e047e2.png", - "aggregators": [ - "PancakeCoinMarketCap", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 4 - }, - "0x09c704c1eb9245af48f058878e72129557a10f04": { - "address": "0x09c704c1eb9245af48f058878e72129557a10f04", - "symbol": "SWEEP", - "decimals": 9, - "name": "Sweep Token", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x09c704c1eb9245af48f058878e72129557a10f04.png", - "aggregators": [ - "PancakeCoinMarketCap", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 4 - }, - "0x7db13e8b9eaa42fc948268b954dd4e6218cc4cb1": { - "address": "0x7db13e8b9eaa42fc948268b954dd4e6218cc4cb1", - "symbol": "FWIN-AI", - "decimals": 18, - "name": "Fight Win AI", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x7db13e8b9eaa42fc948268b954dd4e6218cc4cb1.png", - "aggregators": [ - "PancakeCoinMarketCap", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 4 - }, - "0x62760e76dce6b500349ec5f6119228d047913350": { - "address": "0x62760e76dce6b500349ec5f6119228d047913350", - "symbol": "TWIF", - "decimals": 9, - "name": "Tomwifhat", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x62760e76dce6b500349ec5f6119228d047913350.png", - "aggregators": [ - "PancakeCoinMarketCap", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 4 - }, - "0xc41689a727469c1573009757200371edf36d540e": { - "address": "0xc41689a727469c1573009757200371edf36d540e", - "symbol": "DYNA", - "decimals": 9, - "name": "Dynamix", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xc41689a727469c1573009757200371edf36d540e.png", - "aggregators": [ - "PancakeCoinMarketCap", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 4 - }, - "0x10051147418c42218986cedd0adc266441f8a14f": { - "address": "0x10051147418c42218986cedd0adc266441f8a14f", - "symbol": "DYOR", - "decimals": 9, - "name": "DYOR", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x10051147418c42218986cedd0adc266441f8a14f.png", - "aggregators": [ - "PancakeCoinMarketCap", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 4 - }, - "0x79ebc9a2ce02277a4b5b3a768b1c0a4ed75bd936": { - "address": "0x79ebc9a2ce02277a4b5b3a768b1c0a4ed75bd936", - "symbol": "CATGIRL", - "decimals": 9, - "name": "Catgirl", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x79ebc9a2ce02277a4b5b3a768b1c0a4ed75bd936.png", - "aggregators": [ - "PancakeCoinMarketCap", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 4 - }, - "0x166295ebd6a938c7aaf61350eb5161a9939ab2b7": { - "address": "0x166295ebd6a938c7aaf61350eb5161a9939ab2b7", - "symbol": "MURA", - "decimals": 18, - "name": "Murasaki", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x166295ebd6a938c7aaf61350eb5161a9939ab2b7.png", - "aggregators": [ - "PancakeCoinMarketCap", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 4 - }, - "0x70b6c6a555507ee4ac91c15e5c80b7dc8ff3b489": { - "address": "0x70b6c6a555507ee4ac91c15e5c80b7dc8ff3b489", - "symbol": "XTT-B20", - "decimals": 18, - "name": "XTblock", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x70b6c6a555507ee4ac91c15e5c80b7dc8ff3b489.png", - "aggregators": [ - "PancakeCoinMarketCap", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 4 - }, - "0xa78775bba7a542f291e5ef7f13c6204e704a90ba": { - "address": "0xa78775bba7a542f291e5ef7f13c6204e704a90ba", - "symbol": "METO", - "decimals": 18, - "name": "Metafluence", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xa78775bba7a542f291e5ef7f13c6204e704a90ba.png", - "aggregators": [ - "PancakeCoinMarketCap", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 4 - }, - "0xc8cc4bbd33264db465e4c9ea011f895d02505959": { - "address": "0xc8cc4bbd33264db465e4c9ea011f895d02505959", - "symbol": "SOR", - "decimals": 18, - "name": "Sorcery Finance", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xc8cc4bbd33264db465e4c9ea011f895d02505959.png", - "aggregators": [ - "PancakeCoinMarketCap", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 4 - }, - "0xe0b0c16038845bed3fcf70304d3e167df81ce225": { - "address": "0xe0b0c16038845bed3fcf70304d3e167df81ce225", - "symbol": "CSWAP", - "decimals": 18, - "name": "CrossSwap", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xe0b0c16038845bed3fcf70304d3e167df81ce225.png", - "aggregators": [ - "PancakeCoinMarketCap", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 4 - }, - "0x5c46c55a699a6359e451b2c99344138420c87261": { - "address": "0x5c46c55a699a6359e451b2c99344138420c87261", - "symbol": "IBG", - "decimals": 18, - "name": "iBG Finance (BSC)", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x5c46c55a699a6359e451b2c99344138420c87261.png", - "aggregators": [ - "PancakeCoinMarketCap", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 4 - }, - "0x69c2fcae7e30b429166bd616a322e32bec036bcf": { - "address": "0x69c2fcae7e30b429166bd616a322e32bec036bcf", - "symbol": "MURATIAI", - "decimals": 18, - "name": "MuratiAI", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x69c2fcae7e30b429166bd616a322e32bec036bcf.png", - "aggregators": [ - "PancakeCoinMarketCap", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 4 - }, - "0x0d1afece252ff513c5d210aeae88f6c7d37e6ab2": { - "address": "0x0d1afece252ff513c5d210aeae88f6c7d37e6ab2", - "symbol": "EBYT", - "decimals": 18, - "name": "EarthByt", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x0d1afece252ff513c5d210aeae88f6c7d37e6ab2.png", - "aggregators": [ - "PancakeCoinMarketCap", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 4 - }, - "0x432b4f994760ea0c5f48baab6217e82a2b7f2c55": { - "address": "0x432b4f994760ea0c5f48baab6217e82a2b7f2c55", - "symbol": "FIRSTHARE", - "decimals": 9, - "name": "FirstHare", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x432b4f994760ea0c5f48baab6217e82a2b7f2c55.png", - "aggregators": [ - "PancakeCoinMarketCap", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 4 - }, - "0xdaca7c8e16ddfa5d5b266380228ca9e2288f3931": { - "address": "0xdaca7c8e16ddfa5d5b266380228ca9e2288f3931", - "symbol": "DYZILLA", - "decimals": 18, - "name": "DYZilla", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xdaca7c8e16ddfa5d5b266380228ca9e2288f3931.png", - "aggregators": [ - "PancakeCoinMarketCap", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 4 - }, - "0xee81ca267b8357ba30049d679027ebf65fcf7458": { - "address": "0xee81ca267b8357ba30049d679027ebf65fcf7458", - "symbol": "VOPO", - "decimals": 18, - "name": "VOPO", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xee81ca267b8357ba30049d679027ebf65fcf7458.png", - "aggregators": [ - "PancakeCoinMarketCap", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 4 - }, - "0xd08b9e557d1f64c8dd50a168453ea302a83e47fc": { - "address": "0xd08b9e557d1f64c8dd50a168453ea302a83e47fc", - "symbol": "GROKINU", - "decimals": 9, - "name": "Grok Inu", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xd08b9e557d1f64c8dd50a168453ea302a83e47fc.png", - "aggregators": [ - "PancakeCoinMarketCap", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 4 - }, - "0x7f72ebb448387537c174a5d17e762c877db28fb6": { - "address": "0x7f72ebb448387537c174a5d17e762c877db28fb6", - "symbol": "KOIN", - "decimals": 18, - "name": "Fishkoin", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x7f72ebb448387537c174a5d17e762c877db28fb6.png", - "aggregators": [ - "PancakeCoinMarketCap", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 4 - }, - "0xcf0990170a60da34ffcffa14ead4a3de27d0f4ce": { - "address": "0xcf0990170a60da34ffcffa14ead4a3de27d0f4ce", - "symbol": "BTCBAM", - "decimals": 8, - "name": "BitcoinBam", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xcf0990170a60da34ffcffa14ead4a3de27d0f4ce.png", - "aggregators": [ - "PancakeCoinMarketCap", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 4 - }, - "0x68590a47578e5060a29fd99654f4556dbfa05d10": { - "address": "0x68590a47578e5060a29fd99654f4556dbfa05d10", - "symbol": "SMRAT", - "decimals": 9, - "name": "Secured MoonRat", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x68590a47578e5060a29fd99654f4556dbfa05d10.png", - "aggregators": [ - "PancakeCoinMarketCap", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 4 - }, - "0xbfbee3dac982148ac793161f7362344925506903": { - "address": "0xbfbee3dac982148ac793161f7362344925506903", - "symbol": "CATZ", - "decimals": 18, - "name": "CatzCoin", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xbfbee3dac982148ac793161f7362344925506903.png", - "aggregators": [ - "PancakeCoinMarketCap", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 4 - }, - "0x36dbcbca106353d49e1e0e8974492ffb862a0c92": { - "address": "0x36dbcbca106353d49e1e0e8974492ffb862a0c92", - "symbol": "SME", - "decimals": 9, - "name": "SafeMeme", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x36dbcbca106353d49e1e0e8974492ffb862a0c92.png", - "aggregators": [ - "PancakeCoinMarketCap", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 4 - }, - "0x5e90253fbae4dab78aa351f4e6fed08a64ab5590": { - "address": "0x5e90253fbae4dab78aa351f4e6fed08a64ab5590", - "symbol": "BONFIRE", - "decimals": 9, - "name": "Bonfire", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x5e90253fbae4dab78aa351f4e6fed08a64ab5590.png", - "aggregators": ["PancakeCoinMarketCap", "Rubic", "Squid", "Rango"], - "occurrences": 4 - }, - "0x1ef72a1df5e4d165f84fc43b20d56caa7dad46e1": { - "address": "0x1ef72a1df5e4d165f84fc43b20d56caa7dad46e1", - "symbol": "AMI", - "decimals": 18, - "name": "AMMYI Coin", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x1ef72a1df5e4d165f84fc43b20d56caa7dad46e1.png", - "aggregators": [ - "PancakeCoinMarketCap", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 4 - }, - "0x1b391f9d0fffa86a6088a73ac4ac28d12c9ccfbd": { - "address": "0x1b391f9d0fffa86a6088a73ac4ac28d12c9ccfbd", - "symbol": "SET", - "decimals": 9, - "name": "Sustainable Energy", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x1b391f9d0fffa86a6088a73ac4ac28d12c9ccfbd.png", - "aggregators": [ - "PancakeCoinMarketCap", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 4 - }, - "0x6aa150fff813e0bec1273691f349ad080df7216d": { - "address": "0x6aa150fff813e0bec1273691f349ad080df7216d", - "symbol": "FERMA", - "decimals": 8, - "name": "Ferma", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x6aa150fff813e0bec1273691f349ad080df7216d.png", - "aggregators": [ - "PancakeCoinMarketCap", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 4 - }, - "0xb27adaffb9fea1801459a1a81b17218288c097cc": { - "address": "0xb27adaffb9fea1801459a1a81b17218288c097cc", - "symbol": "POOCOIN", - "decimals": 8, - "name": "PooCoin", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xb27adaffb9fea1801459a1a81b17218288c097cc.png", - "aggregators": [ - "PancakeCoinMarketCap", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 4 - }, - "0x484312a0aaeae3ae36a74ff3e294246f35dddf4f": { - "address": "0x484312a0aaeae3ae36a74ff3e294246f35dddf4f", - "symbol": "BASHTANK", - "decimals": 9, - "name": "Baby Shark Tank", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x484312a0aaeae3ae36a74ff3e294246f35dddf4f.png", - "aggregators": [ - "PancakeCoinMarketCap", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 4 - }, - "0xb6090a50f66046e3c6afb9311846a6432e45060a": { - "address": "0xb6090a50f66046e3c6afb9311846a6432e45060a", - "symbol": "PINKM", - "decimals": 9, - "name": "PinkMoon", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xb6090a50f66046e3c6afb9311846a6432e45060a.png", - "aggregators": [ - "PancakeCoinMarketCap", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 4 - }, - "0xaf96a19c2dd4a0f6b077d9481fcc8c9102faa141": { - "address": "0xaf96a19c2dd4a0f6b077d9481fcc8c9102faa141", - "symbol": "MOONARCH", - "decimals": 9, - "name": "Moonarch", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xaf96a19c2dd4a0f6b077d9481fcc8c9102faa141.png", - "aggregators": [ - "PancakeCoinMarketCap", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 4 - }, - "0x3916984fa787d89b648ccd8d60b5ff07e0e8e4f4": { - "address": "0x3916984fa787d89b648ccd8d60b5ff07e0e8e4f4", - "symbol": "PUBE", - "decimals": 9, - "name": "Pube Finance", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x3916984fa787d89b648ccd8d60b5ff07e0e8e4f4.png", - "aggregators": [ - "PancakeCoinMarketCap", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 4 - }, - "0x9fb677928dd244befcd0bbebdf6068dd4bef559c": { - "address": "0x9fb677928dd244befcd0bbebdf6068dd4bef559c", - "symbol": "AQUA", - "decimals": 9, - "name": "Bela Aqua", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x9fb677928dd244befcd0bbebdf6068dd4bef559c.png", - "aggregators": [ - "PancakeCoinMarketCap", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 4 - }, - "0xb8309421b0603febbc370a6b0c5c59d3af202759": { - "address": "0xb8309421b0603febbc370a6b0c5c59d3af202759", - "symbol": "P3NGUIN", - "decimals": 18, - "name": "SpacePenguin", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xb8309421b0603febbc370a6b0c5c59d3af202759.png", - "aggregators": [ - "PancakeCoinMarketCap", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 4 - }, - "0xbceee918077f63fb1b9e10403f59ca40c7061341": { - "address": "0xbceee918077f63fb1b9e10403f59ca40c7061341", - "symbol": "PAPADOGE", - "decimals": 18, - "name": "Papa Doge", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xbceee918077f63fb1b9e10403f59ca40c7061341.png", - "aggregators": [ - "PancakeCoinMarketCap", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 4 - }, - "0xe3894cb9e92ca78524fb6a30ff072fa5e533c162": { - "address": "0xe3894cb9e92ca78524fb6a30ff072fa5e533c162", - "symbol": "ELP", - "decimals": 18, - "name": "The Everlasting Parachain", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xe3894cb9e92ca78524fb6a30ff072fa5e533c162.png", - "aggregators": [ - "PancakeCoinMarketCap", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 4 - }, - "0xaecf6d1aff214fef70042740054f0f6d0caa98ab": { - "address": "0xaecf6d1aff214fef70042740054f0f6d0caa98ab", - "symbol": "BABYSHIBAINU", - "decimals": 9, - "name": "Baby Shiba Inu", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xaecf6d1aff214fef70042740054f0f6d0caa98ab.png", - "aggregators": [ - "PancakeCoinMarketCap", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 4 - }, - "0x1cfd6813a59d7b90c41dd5990ed99c3bf2eb8f55": { - "address": "0x1cfd6813a59d7b90c41dd5990ed99c3bf2eb8f55", - "symbol": "CORGIB", - "decimals": 18, - "name": "The Corgi of PolkaBridge", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x1cfd6813a59d7b90c41dd5990ed99c3bf2eb8f55.png", - "aggregators": [ - "PancakeCoinMarketCap", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 4 - }, - "0x450dcf93160a30be156a4600802c91bf64dffd2e": { - "address": "0x450dcf93160a30be156a4600802c91bf64dffd2e", - "symbol": "CORGI", - "decimals": 18, - "name": "CorgiCoin", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x450dcf93160a30be156a4600802c91bf64dffd2e.png", - "aggregators": [ - "PancakeCoinMarketCap", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 4 - }, - "0xb6d053e260d410eac02ea28755696f90a8ecca2b": { - "address": "0xb6d053e260d410eac02ea28755696f90a8ecca2b", - "symbol": "SHIKO", - "decimals": 9, - "name": "Shikoku Inu", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xb6d053e260d410eac02ea28755696f90a8ecca2b.png", - "aggregators": [ - "PancakeCoinMarketCap", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 4 - }, - "0x3e07a8a8f260edeeca24139b6767a073918e8674": { - "address": "0x3e07a8a8f260edeeca24139b6767a073918e8674", - "symbol": "CATGE", - "decimals": 9, - "name": "Catge Coin", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x3e07a8a8f260edeeca24139b6767a073918e8674.png", - "aggregators": [ - "PancakeCoinMarketCap", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 4 - }, - "0xfd42728b76772a82ccad527e298dd15a55f4ddd6": { - "address": "0xfd42728b76772a82ccad527e298dd15a55f4ddd6", - "symbol": "KAREN", - "decimals": 9, - "name": "KarenCoin", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xfd42728b76772a82ccad527e298dd15a55f4ddd6.png", - "aggregators": [ - "PancakeCoinMarketCap", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 4 - }, - "0x960cc8f437165b7362a34d95d1ec62dd2a940f00": { - "address": "0x960cc8f437165b7362a34d95d1ec62dd2a940f00", - "symbol": "COSMIC", - "decimals": 18, - "name": "CosmicSwap", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x960cc8f437165b7362a34d95d1ec62dd2a940f00.png", - "aggregators": [ - "PancakeCoinMarketCap", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 4 - }, - "0xdf0816cc717216c8b0863af8d4f0fc20bc65d643": { - "address": "0xdf0816cc717216c8b0863af8d4f0fc20bc65d643", - "symbol": "SHIBSC", - "decimals": 18, - "name": "SHIBA BSC", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xdf0816cc717216c8b0863af8d4f0fc20bc65d643.png", - "aggregators": [ - "PancakeCoinMarketCap", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 4 - }, - "0xba26397cdff25f0d26e815d218ef3c77609ae7f1": { - "address": "0xba26397cdff25f0d26e815d218ef3c77609ae7f1", - "symbol": "LYPTUS", - "decimals": 18, - "name": "Lyptus", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xba26397cdff25f0d26e815d218ef3c77609ae7f1.png", - "aggregators": ["PancakeCoinGecko", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0x4efab39b14167da54aebed2094a61aa1fd384056": { - "address": "0x4efab39b14167da54aebed2094a61aa1fd384056", - "symbol": "LEOPARD", - "decimals": 9, - "name": "Leopard", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x4efab39b14167da54aebed2094a61aa1fd384056.png", - "aggregators": [ - "PancakeCoinMarketCap", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 4 - }, - "0x51e6ac1533032e72e92094867fd5921e3ea1bfa0": { - "address": "0x51e6ac1533032e72e92094867fd5921e3ea1bfa0", - "symbol": "LUCA", - "decimals": 18, - "name": "LUCA", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x51e6ac1533032e72e92094867fd5921e3ea1bfa0.png", - "aggregators": [ - "PancakeCoinMarketCap", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 4 - }, - "0xe52c5a3590952f3ed6fccf89a0bd7f38e11c5b98": { - "address": "0xe52c5a3590952f3ed6fccf89a0bd7f38e11c5b98", - "symbol": "DEK", - "decimals": 18, - "name": "DekBox", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xe52c5a3590952f3ed6fccf89a0bd7f38e11c5b98.png", - "aggregators": ["PancakeCoinGecko", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0x07b36f2549291d320132712a1e64d3826b1fb4d7": { - "address": "0x07b36f2549291d320132712a1e64d3826b1fb4d7", - "symbol": "WIFEDOGE", - "decimals": 9, - "name": "Wifedoge", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x07b36f2549291d320132712a1e64d3826b1fb4d7.png", - "aggregators": [ - "PancakeCoinMarketCap", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 4 - }, - "0x617ba3d39e96c084e60c6db3f7b365a96ee4e555": { - "address": "0x617ba3d39e96c084e60c6db3f7b365a96ee4e555", - "symbol": "IDO", - "decimals": 9, - "name": "Interstellar Domain Order", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x617ba3d39e96c084e60c6db3f7b365a96ee4e555.png", - "aggregators": [ - "PancakeCoinMarketCap", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 4 - }, - "0x98afac3b663113d29dc2cd8c2d1d14793692f110": { - "address": "0x98afac3b663113d29dc2cd8c2d1d14793692f110", - "symbol": "MVS", - "decimals": 18, - "name": "MVS Multiverse", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x98afac3b663113d29dc2cd8c2d1d14793692f110.png", - "aggregators": [ - "PancakeCoinMarketCap", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 4 - }, - "0xb661f4576d5e0b622fee6ab041fd5451fe02ba4c": { - "address": "0xb661f4576d5e0b622fee6ab041fd5451fe02ba4c", - "symbol": "DFG", - "decimals": 18, - "name": "Defigram", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xb661f4576d5e0b622fee6ab041fd5451fe02ba4c.png", - "aggregators": [ - "PancakeCoinMarketCap", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 4 - }, - "0x48ed9372169ef0bf2b901bbe45e52b6a6b8f1ecc": { - "address": "0x48ed9372169ef0bf2b901bbe45e52b6a6b8f1ecc", - "symbol": "CRAZYBUNNY", - "decimals": 9, - "name": "Crazy Bunny", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x48ed9372169ef0bf2b901bbe45e52b6a6b8f1ecc.png", - "aggregators": [ - "PancakeCoinMarketCap", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 4 - }, - "0x53ff62409b219ccaff01042bb2743211bb99882e": { - "address": "0x53ff62409b219ccaff01042bb2743211bb99882e", - "symbol": "PRZS", - "decimals": 18, - "name": "Perezoso", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x53ff62409b219ccaff01042bb2743211bb99882e.png", - "aggregators": [ - "PancakeCoinMarketCap", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 4 - }, - "0x565d40e2ef60f0b4e5bd0136bb2c58ace83fdaa5": { - "address": "0x565d40e2ef60f0b4e5bd0136bb2c58ace83fdaa5", - "symbol": "S315", - "decimals": 18, - "name": "SWAP315", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x565d40e2ef60f0b4e5bd0136bb2c58ace83fdaa5.png", - "aggregators": [ - "PancakeCoinMarketCap", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 4 - }, - "0xc35ed584b24fd2d0885708e370343c43e20f3424": { - "address": "0xc35ed584b24fd2d0885708e370343c43e20f3424", - "symbol": "SHIBAAI", - "decimals": 18, - "name": "SHIBAAI", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xc35ed584b24fd2d0885708e370343c43e20f3424.png", - "aggregators": [ - "PancakeCoinMarketCap", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 4 - }, - "0x3d90db6cc52e95679fb431e88b1830ba18e41889": { - "address": "0x3d90db6cc52e95679fb431e88b1830ba18e41889", - "symbol": "RABI", - "decimals": 4, - "name": "Rabi", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x3d90db6cc52e95679fb431e88b1830ba18e41889.png", - "aggregators": [ - "PancakeCoinMarketCap", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 4 - }, - "0xf29480344d8e21efeab7fde39f8d8299056a7fea": { - "address": "0xf29480344d8e21efeab7fde39f8d8299056a7fea", - "symbol": "TBCC", - "decimals": 18, - "name": "TBCC", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xf29480344d8e21efeab7fde39f8d8299056a7fea.png", - "aggregators": [ - "PancakeCoinMarketCap", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 4 - }, - "0xbb1861068fca591bd3009a1d3b7f985f3a6400f8": { - "address": "0xbb1861068fca591bd3009a1d3b7f985f3a6400f8", - "symbol": "RVM", - "decimals": 18, - "name": "Realvirm", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xbb1861068fca591bd3009a1d3b7f985f3a6400f8.png", - "aggregators": [ - "PancakeCoinMarketCap", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 4 - }, - "0xddae5f343b7768eadaad88a7f520fff54f198211": { - "address": "0xddae5f343b7768eadaad88a7f520fff54f198211", - "symbol": "BCA", - "decimals": 18, - "name": "Bitcoiva", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xddae5f343b7768eadaad88a7f520fff54f198211.png", - "aggregators": [ - "PancakeCoinMarketCap", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 4 - }, - "0x3c70260eee0a2bfc4b375feb810325801f289fbd": { - "address": "0x3c70260eee0a2bfc4b375feb810325801f289fbd", - "symbol": "OCP", - "decimals": 18, - "name": "Omni Consumer Protocol", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x3c70260eee0a2bfc4b375feb810325801f289fbd.png", - "aggregators": [ - "PancakeCoinMarketCap", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 4 - }, - "0x400613f184d1207f5c07a67d67040a4e23e92feb": { - "address": "0x400613f184d1207f5c07a67d67040a4e23e92feb", - "symbol": "UPDOG", - "decimals": 9, - "name": "UpDog", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x400613f184d1207f5c07a67d67040a4e23e92feb.png", - "aggregators": [ - "PancakeCoinMarketCap", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 4 - }, - "0x63290fc683d11ea077aba09596ff7387d49df912": { - "address": "0x63290fc683d11ea077aba09596ff7387d49df912", - "symbol": "RAM", - "decimals": 9, - "name": "Ramifi Protocol", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x63290fc683d11ea077aba09596ff7387d49df912.png", - "aggregators": [ - "PancakeCoinMarketCap", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 4 - }, - "0x0b3f42481c228f70756dbfa0309d3ddc2a5e0f6a": { - "address": "0x0b3f42481c228f70756dbfa0309d3ddc2a5e0f6a", - "symbol": "ULTRA", - "decimals": 9, - "name": "UltraSafe", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x0b3f42481c228f70756dbfa0309d3ddc2a5e0f6a.png", - "aggregators": [ - "PancakeCoinMarketCap", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 4 - }, - "0xef032f652fce3a0effce3796a68eb978b465a336": { - "address": "0xef032f652fce3a0effce3796a68eb978b465a336", - "symbol": "MOOCHII", - "decimals": 9, - "name": "Moochii", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xef032f652fce3a0effce3796a68eb978b465a336.png", - "aggregators": [ - "PancakeCoinMarketCap", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 4 - }, - "0x308fc5cdd559be5cb62b08a26a4699bbef4a888f": { - "address": "0x308fc5cdd559be5cb62b08a26a4699bbef4a888f", - "symbol": "DCIP", - "decimals": 9, - "name": "Decentralized Community Investment Protocol", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x308fc5cdd559be5cb62b08a26a4699bbef4a888f.png", - "aggregators": [ - "PancakeCoinMarketCap", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 4 - }, - "0x11582ef4642b1e7f0a023804b497656e2663bc9b": { - "address": "0x11582ef4642b1e7f0a023804b497656e2663bc9b", - "symbol": "KCCPAD", - "decimals": 18, - "name": "KCCPad", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x11582ef4642b1e7f0a023804b497656e2663bc9b.png", - "aggregators": [ - "PancakeCoinMarketCap", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 4 - }, - "0x802c68730212295149f2bea78c25e2cf5a05b8a0": { - "address": "0x802c68730212295149f2bea78c25e2cf5a05b8a0", - "symbol": "CORGI", - "decimals": 8, - "name": "Corgidoge", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x802c68730212295149f2bea78c25e2cf5a05b8a0.png", - "aggregators": [ - "PancakeCoinMarketCap", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 4 - }, - "0x12da2f2761038486271c99da7e0fb4413e2b5e38": { - "address": "0x12da2f2761038486271c99da7e0fb4413e2b5e38", - "symbol": "NBM", - "decimals": 9, - "name": "NFTBlackmarket", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x12da2f2761038486271c99da7e0fb4413e2b5e38.png", - "aggregators": [ - "PancakeCoinMarketCap", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 4 - }, - "0x989b8f0219eb7aa0bed22e24f053eb2b155f4394": { - "address": "0x989b8f0219eb7aa0bed22e24f053eb2b155f4394", - "symbol": "MOMMYDOGE", - "decimals": 9, - "name": "Mommy Doge", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x989b8f0219eb7aa0bed22e24f053eb2b155f4394.png", - "aggregators": [ - "PancakeCoinMarketCap", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 4 - }, - "0x3780e00d4c60887af38345ccd44f7617dbfb10a0": { - "address": "0x3780e00d4c60887af38345ccd44f7617dbfb10a0", - "symbol": "DOGE2", - "decimals": 9, - "name": "Dogecoin 2.0", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x3780e00d4c60887af38345ccd44f7617dbfb10a0.png", - "aggregators": [ - "PancakeCoinMarketCap", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 4 - }, - "0xc77dd3ade7b717583e0924466e4e474a5673332c": { - "address": "0xc77dd3ade7b717583e0924466e4e474a5673332c", - "symbol": "BSTS", - "decimals": 9, - "name": "Magic Beasties", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xc77dd3ade7b717583e0924466e4e474a5673332c.png", - "aggregators": [ - "PancakeCoinMarketCap", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 4 - }, - "0x1006ea3289b833b6720aaa82746990ec77de8c36": { - "address": "0x1006ea3289b833b6720aaa82746990ec77de8c36", - "symbol": "DBA", - "decimals": 8, - "name": "Digital Bank of Africa", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x1006ea3289b833b6720aaa82746990ec77de8c36.png", - "aggregators": [ - "PancakeCoinMarketCap", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 4 - }, - "0x6bfd4ca8ec078d613ed6a5248eb2c7a0d5c38b7b": { - "address": "0x6bfd4ca8ec078d613ed6a5248eb2c7a0d5c38b7b", - "symbol": "ECT", - "decimals": 9, - "name": "Ecochain Finance", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x6bfd4ca8ec078d613ed6a5248eb2c7a0d5c38b7b.png", - "aggregators": [ - "PancakeCoinMarketCap", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 4 - }, - "0x4c0415a6e340eccebff58131799c6c4127cc39fa": { - "address": "0x4c0415a6e340eccebff58131799c6c4127cc39fa", - "symbol": "XDOGE", - "decimals": 18, - "name": "Xdoge", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x4c0415a6e340eccebff58131799c6c4127cc39fa.png", - "aggregators": [ - "PancakeCoinMarketCap", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 4 - }, - "0xda4714fee90ad7de50bc185ccd06b175d23906c1": { - "address": "0xda4714fee90ad7de50bc185ccd06b175d23906c1", - "symbol": "GODZ", - "decimals": 9, - "name": "Godzilla", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xda4714fee90ad7de50bc185ccd06b175d23906c1.png", - "aggregators": [ - "PancakeCoinMarketCap", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 4 - }, - "0xb6adb74efb5801160ff749b1985fd3bd5000e938": { - "address": "0xb6adb74efb5801160ff749b1985fd3bd5000e938", - "symbol": "GZONE", - "decimals": 18, - "name": "GameZone", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xb6adb74efb5801160ff749b1985fd3bd5000e938.png", - "aggregators": [ - "PancakeCoinMarketCap", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 4 - }, - "0x23125108bc4c63e4677b2e253fa498ccb4b3298b": { - "address": "0x23125108bc4c63e4677b2e253fa498ccb4b3298b", - "symbol": "DOGECOIN", - "decimals": 9, - "name": "Buff Doge Coin", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x23125108bc4c63e4677b2e253fa498ccb4b3298b.png", - "aggregators": [ - "PancakeCoinMarketCap", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 4 - }, - "0x8e2d8f40818fbaba663db6a24fb9b527fc7100be": { - "address": "0x8e2d8f40818fbaba663db6a24fb9b527fc7100be", - "symbol": "ORE", - "decimals": 18, - "name": "ORE", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x8e2d8f40818fbaba663db6a24fb9b527fc7100be.png", - "aggregators": [ - "PancakeCoinMarketCap", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 4 - }, - "0x6169b3b23e57de79a6146a2170980ceb1f83b9e0": { - "address": "0x6169b3b23e57de79a6146a2170980ceb1f83b9e0", - "symbol": "VETTER", - "decimals": 9, - "name": "Vetter", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x6169b3b23e57de79a6146a2170980ceb1f83b9e0.png", - "aggregators": [ - "PancakeCoinMarketCap", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 4 - }, - "0x34ba3af693d6c776d73c7fa67e2b2e79be8ef4ed": { - "address": "0x34ba3af693d6c776d73c7fa67e2b2e79be8ef4ed", - "symbol": "BALA", - "decimals": 18, - "name": "Shambala", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x34ba3af693d6c776d73c7fa67e2b2e79be8ef4ed.png", - "aggregators": [ - "PancakeCoinMarketCap", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 4 - }, - "0x32d7da6a7cf25ed1b86e1b0ee9a62b0252d46b16": { - "address": "0x32d7da6a7cf25ed1b86e1b0ee9a62b0252d46b16", - "symbol": "GINZA", - "decimals": 18, - "name": "Ginza Network", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x32d7da6a7cf25ed1b86e1b0ee9a62b0252d46b16.png", - "aggregators": [ - "PancakeCoinMarketCap", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 4 - }, - "0x77e5cce02139814e7eff377244cac8b802cddab8": { - "address": "0x77e5cce02139814e7eff377244cac8b802cddab8", - "symbol": "ERW", - "decimals": 18, - "name": "ZeLoop Eco Reward", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x77e5cce02139814e7eff377244cac8b802cddab8.png", - "aggregators": [ - "PancakeCoinMarketCap", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 4 - }, - "0x2f4e9c97aaffd67d98a640062d90e355b4a1c539": { - "address": "0x2f4e9c97aaffd67d98a640062d90e355b4a1c539", - "symbol": "AFRO", - "decimals": 9, - "name": "Afrostar", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x2f4e9c97aaffd67d98a640062d90e355b4a1c539.png", - "aggregators": [ - "PancakeCoinMarketCap", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 4 - }, - "0x3523d58d8036b1c5c9a13493143c97aefc5ad422": { - "address": "0x3523d58d8036b1c5c9a13493143c97aefc5ad422", - "symbol": "KBOX", - "decimals": 18, - "name": "The Killbox Game", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x3523d58d8036b1c5c9a13493143c97aefc5ad422.png", - "aggregators": [ - "PancakeCoinMarketCap", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 4 - }, - "0xec126e20e7cb114dd3ba356100eaca2cc2921322": { - "address": "0xec126e20e7cb114dd3ba356100eaca2cc2921322", - "symbol": "SEG", - "decimals": 18, - "name": "Solar Energy", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xec126e20e7cb114dd3ba356100eaca2cc2921322.png", - "aggregators": [ - "PancakeCoinMarketCap", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 4 - }, - "0x07728696ee70a28c9c032926577af1d524df30f9": { - "address": "0x07728696ee70a28c9c032926577af1d524df30f9", - "symbol": "PLACE", - "decimals": 18, - "name": "PlaceWar Governance", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x07728696ee70a28c9c032926577af1d524df30f9.png", - "aggregators": [ - "PancakeCoinMarketCap", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 4 - }, - "0x777994409c6b7e2393f6098a33a9cd8b7e9d0d28": { - "address": "0x777994409c6b7e2393f6098a33a9cd8b7e9d0d28", - "symbol": "TOTEM", - "decimals": 18, - "name": "Cryptotem", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x777994409c6b7e2393f6098a33a9cd8b7e9d0d28.png", - "aggregators": [ - "PancakeCoinMarketCap", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 4 - }, - "0x0522ecfe37ab2bdb5d60a99e08d1e8379bd35c00": { - "address": "0x0522ecfe37ab2bdb5d60a99e08d1e8379bd35c00", - "symbol": "UMY", - "decimals": 6, - "name": "KaraStar UMY", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x0522ecfe37ab2bdb5d60a99e08d1e8379bd35c00.png", - "aggregators": [ - "PancakeCoinMarketCap", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 4 - }, - "0x4c769928971548eb71a3392eaf66bedc8bef4b80": { - "address": "0x4c769928971548eb71a3392eaf66bedc8bef4b80", - "symbol": "BITCOIN", - "decimals": 9, - "name": "HarryPotterObamaSonic10Inu", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x4c769928971548eb71a3392eaf66bedc8bef4b80.png", - "aggregators": ["PancakeCoinGecko", "Socket", "Rubic", "Rango"], - "occurrences": 4 - }, - "0x26734add0650719ea29087fe5cc0aab81b4f237d": { - "address": "0x26734add0650719ea29087fe5cc0aab81b4f237d", - "symbol": "STEMX", - "decimals": 18, - "name": "STEMX", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x26734add0650719ea29087fe5cc0aab81b4f237d.png", - "aggregators": [ - "PancakeCoinMarketCap", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 4 - }, - "0x14aad57fb5f9a0c9ce136cf93521cbebe14ec2e6": { - "address": "0x14aad57fb5f9a0c9ce136cf93521cbebe14ec2e6", - "symbol": "SHIBEMP", - "decimals": 9, - "name": "Shiba Inu Empire", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x14aad57fb5f9a0c9ce136cf93521cbebe14ec2e6.png", - "aggregators": [ - "PancakeCoinMarketCap", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 4 - }, - "0x2e42c9eac96833c6e16dc71c743cecc114ccd7e3": { - "address": "0x2e42c9eac96833c6e16dc71c743cecc114ccd7e3", - "symbol": "META", - "decimals": 18, - "name": "MetaCash", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x2e42c9eac96833c6e16dc71c743cecc114ccd7e3.png", - "aggregators": [ - "PancakeCoinMarketCap", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 4 - }, - "0x26d3163b165be95137cee97241e716b2791a7572": { - "address": "0x26d3163b165be95137cee97241e716b2791a7572", - "symbol": "DSHARE", - "decimals": 18, - "name": "Dibs Share", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x26d3163b165be95137cee97241e716b2791a7572.png", - "aggregators": [ - "PancakeCoinMarketCap", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 4 - }, - "0x641ec142e67ab213539815f67e4276975c2f8d50": { - "address": "0x641ec142e67ab213539815f67e4276975c2f8d50", - "symbol": "DOGEKING", - "decimals": 18, - "name": "DogeKing", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x641ec142e67ab213539815f67e4276975c2f8d50.png", - "aggregators": [ - "PancakeCoinMarketCap", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 4 - }, - "0x404f83279c36e3e0e2771b7ae9f9b0b2b50ee27c": { - "address": "0x404f83279c36e3e0e2771b7ae9f9b0b2b50ee27c", - "symbol": "AGRO", - "decimals": 18, - "name": "Agro Global Token", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x404f83279c36e3e0e2771b7ae9f9b0b2b50ee27c.png", - "aggregators": [ - "PancakeCoinMarketCap", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 4 - }, - "0xac68931b666e086e9de380cfdb0fb5704a35dc2d": { - "address": "0xac68931b666e086e9de380cfdb0fb5704a35dc2d", - "symbol": "BNBTIGER", - "decimals": 9, - "name": "BNB Tiger Inu", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xac68931b666e086e9de380cfdb0fb5704a35dc2d.png", - "aggregators": [ - "PancakeCoinMarketCap", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 4 - }, - "0x3efe3bee4dbeb77d260bc12aeb62072cf6e68478": { - "address": "0x3efe3bee4dbeb77d260bc12aeb62072cf6e68478", - "symbol": "BABYKITTY", - "decimals": 9, - "name": "BabyKitty", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x3efe3bee4dbeb77d260bc12aeb62072cf6e68478.png", - "aggregators": [ - "PancakeCoinMarketCap", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 4 - }, - "0x287880ea252b52b63cc5f40a2d3e5a44aa665a76": { - "address": "0x287880ea252b52b63cc5f40a2d3e5a44aa665a76", - "symbol": "ALPINE", - "decimals": 8, - "name": "Alpine F1 Team Fan Token", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x287880ea252b52b63cc5f40a2d3e5a44aa665a76.png", - "aggregators": [ - "PancakeCoinMarketCap", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 4 - }, - "0xd5d21b98903257ee56c3406ef72a60981ba81703": { - "address": "0xd5d21b98903257ee56c3406ef72a60981ba81703", - "symbol": "BABYBOME", - "decimals": 9, - "name": "Book of Baby Memes", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xd5d21b98903257ee56c3406ef72a60981ba81703.png", - "aggregators": [ - "PancakeCoinMarketCap", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 4 - }, - "0xb972c4027818223bb7b9399b3ca3ca58186e1590": { - "address": "0xb972c4027818223bb7b9399b3ca3ca58186e1590", - "symbol": "SUPE", - "decimals": 18, - "name": "Supe Infinity", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xb972c4027818223bb7b9399b3ca3ca58186e1590.png", - "aggregators": [ - "PancakeCoinMarketCap", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 4 - }, - "0xa677bc9bdb10329e488a4d8387ed7a08b2fc9005": { - "address": "0xa677bc9bdb10329e488a4d8387ed7a08b2fc9005", - "symbol": "MGP", - "decimals": 18, - "name": "Magic Power", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xa677bc9bdb10329e488a4d8387ed7a08b2fc9005.png", - "aggregators": [ - "PancakeCoinMarketCap", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 4 - }, - "0x08ccac619e9c6e95d48dfd23793d722a994b95b8": { - "address": "0x08ccac619e9c6e95d48dfd23793d722a994b95b8", - "symbol": "DOGE-1", - "decimals": 9, - "name": "Doge-1 Mission to the moon", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x08ccac619e9c6e95d48dfd23793d722a994b95b8.png", - "aggregators": [ - "PancakeCoinMarketCap", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 4 - }, - "0xdf677713a2c661ecd0b2bd4d7485170aa8c1eceb": { - "address": "0xdf677713a2c661ecd0b2bd4d7485170aa8c1eceb", - "symbol": "MCT", - "decimals": 18, - "name": "Metacraft", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xdf677713a2c661ecd0b2bd4d7485170aa8c1eceb.png", - "aggregators": [ - "PancakeCoinMarketCap", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 4 - }, - "0xbb689057fe1c4bfc573a54c0679ae1a7a1982f26": { - "address": "0xbb689057fe1c4bfc573a54c0679ae1a7a1982f26", - "symbol": "SHL", - "decimals": 18, - "name": "Shelling", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xbb689057fe1c4bfc573a54c0679ae1a7a1982f26.png", - "aggregators": [ - "PancakeCoinMarketCap", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 4 - }, - "0x9ba43191a84a726cbc48716c1ceb3d13a28a4535": { - "address": "0x9ba43191a84a726cbc48716c1ceb3d13a28a4535", - "symbol": "IXIR", - "decimals": 18, - "name": "IXIR", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x9ba43191a84a726cbc48716c1ceb3d13a28a4535.png", - "aggregators": [ - "PancakeCoinMarketCap", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 4 - }, - "0x879d239bcc0356cf9df8c90442488bce99554c66": { - "address": "0x879d239bcc0356cf9df8c90442488bce99554c66", - "symbol": "METAN", - "decimals": 18, - "name": "Metan Evolutions", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x879d239bcc0356cf9df8c90442488bce99554c66.png", - "aggregators": [ - "PancakeCoinMarketCap", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 4 - }, - "0x7111e5c9b01ffa18957b1aa27e9cb0e8fba214f5": { - "address": "0x7111e5c9b01ffa18957b1aa27e9cb0e8fba214f5", - "symbol": "ULAB", - "decimals": 18, - "name": "Unilab", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x7111e5c9b01ffa18957b1aa27e9cb0e8fba214f5.png", - "aggregators": [ - "PancakeCoinMarketCap", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 4 - }, - "0x26165a5a3dd21fa528becf3ff7f114d00a517344": { - "address": "0x26165a5a3dd21fa528becf3ff7f114d00a517344", - "symbol": "META", - "decimals": 9, - "name": "Meta BSC", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x26165a5a3dd21fa528becf3ff7f114d00a517344.png", - "aggregators": [ - "PancakeCoinMarketCap", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 4 - }, - "0x501d423a828e62f9d331b3a4ee4a7efb1ea40228": { - "address": "0x501d423a828e62f9d331b3a4ee4a7efb1ea40228", - "symbol": "CHONK", - "decimals": 18, - "name": "Chonk The Cat", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x501d423a828e62f9d331b3a4ee4a7efb1ea40228.png", - "aggregators": [ - "PancakeCoinMarketCap", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 4 - }, - "0x9eeb6c5ff183e6001c65a12d70026b900ae76781": { - "address": "0x9eeb6c5ff183e6001c65a12d70026b900ae76781", - "symbol": "IRENA", - "decimals": 9, - "name": "Irena Coin Apps", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x9eeb6c5ff183e6001c65a12d70026b900ae76781.png", - "aggregators": [ - "PancakeCoinMarketCap", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 4 - }, - "0xd15d3baf3f40988810c5f9da54394ffb5246ded6": { - "address": "0xd15d3baf3f40988810c5f9da54394ffb5246ded6", - "symbol": "SEBA", - "decimals": 18, - "name": "Seba", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xd15d3baf3f40988810c5f9da54394ffb5246ded6.png", - "aggregators": [ - "PancakeCoinMarketCap", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 4 - }, - "0x926ecc7687fcfb296e97a2b4501f41a6f5f8c214": { - "address": "0x926ecc7687fcfb296e97a2b4501f41a6f5f8c214", - "symbol": "BRN", - "decimals": 18, - "name": "BRN Metaverse", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x926ecc7687fcfb296e97a2b4501f41a6f5f8c214.png", - "aggregators": [ - "PancakeCoinMarketCap", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 4 - }, - "0x9ce116224459296abc7858627abd5879514bc629": { - "address": "0x9ce116224459296abc7858627abd5879514bc629", - "symbol": "COL", - "decimals": 18, - "name": "Clash of Lilliput", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x9ce116224459296abc7858627abd5879514bc629.png", - "aggregators": [ - "PancakeCoinMarketCap", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 4 - }, - "0xaf3287cae99c982586c07401c0d911bf7de6cd82": { - "address": "0xaf3287cae99c982586c07401c0d911bf7de6cd82", - "symbol": "H2O", - "decimals": 18, - "name": "H2O Dao", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xaf3287cae99c982586c07401c0d911bf7de6cd82.png", - "aggregators": [ - "PancakeCoinMarketCap", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 4 - }, - "0x55533be59de022d585a57e29539452d708d4a410": { - "address": "0x55533be59de022d585a57e29539452d708d4a410", - "symbol": "ZENC", - "decimals": 18, - "name": "Zenc Coin", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x55533be59de022d585a57e29539452d708d4a410.png", - "aggregators": [ - "PancakeCoinMarketCap", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 4 - }, - "0xf4914e6d97a75f014acfcf4072f11be5cffc4ca6": { - "address": "0xf4914e6d97a75f014acfcf4072f11be5cffc4ca6", - "symbol": "DEXSHARE", - "decimals": 18, - "name": "dexSHARE", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xf4914e6d97a75f014acfcf4072f11be5cffc4ca6.png", - "aggregators": [ - "PancakeCoinMarketCap", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 4 - }, - "0x4f5f7a7dca8ba0a7983381d23dfc5eaf4be9c79a": { - "address": "0x4f5f7a7dca8ba0a7983381d23dfc5eaf4be9c79a", - "symbol": "STI", - "decimals": 10, - "name": "Seek Tiger", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x4f5f7a7dca8ba0a7983381d23dfc5eaf4be9c79a.png", - "aggregators": [ - "PancakeCoinMarketCap", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 4 - }, - "0x8f1fe4e6707cd4236b704759d2ee15166c68183a": { - "address": "0x8f1fe4e6707cd4236b704759d2ee15166c68183a", - "symbol": "TMC", - "decimals": 18, - "name": "Tom Coin", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x8f1fe4e6707cd4236b704759d2ee15166c68183a.png", - "aggregators": [ - "PancakeCoinMarketCap", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 4 - }, - "0xe5ba47fd94cb645ba4119222e34fb33f59c7cd90": { - "address": "0xe5ba47fd94cb645ba4119222e34fb33f59c7cd90", - "symbol": "SAFUU", - "decimals": 5, - "name": "SAFUU", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xe5ba47fd94cb645ba4119222e34fb33f59c7cd90.png", - "aggregators": [ - "PancakeCoinMarketCap", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 4 - }, - "0xc868642d123289f0a6cb34a3c2810a0a46141947": { - "address": "0xc868642d123289f0a6cb34a3c2810a0a46141947", - "symbol": "BITWALLET", - "decimals": 6, - "name": "Bitcoin E-wallet", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xc868642d123289f0a6cb34a3c2810a0a46141947.png", - "aggregators": [ - "PancakeCoinMarketCap", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 4 - }, - "0x3606f220daeaeb3d47ac1923a8ce2a61205c88cd": { - "address": "0x3606f220daeaeb3d47ac1923a8ce2a61205c88cd", - "symbol": "ATOZ", - "decimals": 18, - "name": "Race Kingdom", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x3606f220daeaeb3d47ac1923a8ce2a61205c88cd.png", - "aggregators": [ - "PancakeCoinMarketCap", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 4 - }, - "0x20de6118c3672659e488d1d45279cdf77391fbdc": { - "address": "0x20de6118c3672659e488d1d45279cdf77391fbdc", - "symbol": "BIDZ", - "decimals": 18, - "name": "BIDZ Coin", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x20de6118c3672659e488d1d45279cdf77391fbdc.png", - "aggregators": [ - "PancakeCoinMarketCap", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 4 - }, - "0x238d02ee3f80fbf5e381f049616025c186889b68": { - "address": "0x238d02ee3f80fbf5e381f049616025c186889b68", - "symbol": "MRS", - "decimals": 18, - "name": "Metars Genesis", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x238d02ee3f80fbf5e381f049616025c186889b68.png", - "aggregators": [ - "PancakeCoinMarketCap", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 4 - }, - "0xc0366a104b429f0806bfa98d0008daa9555b2bed": { - "address": "0xc0366a104b429f0806bfa98d0008daa9555b2bed", - "symbol": "SMARS", - "decimals": 9, - "name": "Safemars Protocol", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xc0366a104b429f0806bfa98d0008daa9555b2bed.png", - "aggregators": [ - "PancakeCoinMarketCap", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 4 - }, - "0x5ca09af27b8a4f1d636380909087536bc7e2d94d": { - "address": "0x5ca09af27b8a4f1d636380909087536bc7e2d94d", - "symbol": "ALT", - "decimals": 18, - "name": "Alitas", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x5ca09af27b8a4f1d636380909087536bc7e2d94d.png", - "aggregators": [ - "PancakeCoinMarketCap", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 4 - }, - "0xe77011ed703ed06927dbd78e60c549bababf913e": { - "address": "0xe77011ed703ed06927dbd78e60c549bababf913e", - "symbol": "MBTC", - "decimals": 18, - "name": "Micro Bitcoin Finance", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xe77011ed703ed06927dbd78e60c549bababf913e.png", - "aggregators": [ - "PancakeCoinMarketCap", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 4 - }, - "0xcf9f991b14620f5ad144eec11f9bc7bf08987622": { - "address": "0xcf9f991b14620f5ad144eec11f9bc7bf08987622", - "symbol": "PORNROCKET", - "decimals": 9, - "name": "PornRocket", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xcf9f991b14620f5ad144eec11f9bc7bf08987622.png", - "aggregators": [ - "PancakeCoinMarketCap", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 4 - }, - "0xc003f5193cabe3a6cbb56948dfeaae2276a6aa5e": { - "address": "0xc003f5193cabe3a6cbb56948dfeaae2276a6aa5e", - "symbol": "TRUBGR", - "decimals": 18, - "name": "TruBadger", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xc003f5193cabe3a6cbb56948dfeaae2276a6aa5e.png", - "aggregators": [ - "PancakeCoinMarketCap", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 4 - }, - "0x7a983559e130723b70e45bd637773dbdfd3f71db": { - "address": "0x7a983559e130723b70e45bd637773dbdfd3f71db", - "symbol": "DBZ", - "decimals": 18, - "name": "Diamond Boyz Coin", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x7a983559e130723b70e45bd637773dbdfd3f71db.png", - "aggregators": [ - "PancakeCoinMarketCap", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 4 - }, - "0xe6ffa2e574a8bbeb5243d2109b6b11d4a459f88b": { - "address": "0xe6ffa2e574a8bbeb5243d2109b6b11d4a459f88b", - "symbol": "HIP", - "decimals": 18, - "name": "Hippo", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xe6ffa2e574a8bbeb5243d2109b6b11d4a459f88b.png", - "aggregators": [ - "PancakeCoinMarketCap", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 4 - }, - "0xdd17629d05e068a9d118ee35d11101d4140d0586": { - "address": "0xdd17629d05e068a9d118ee35d11101d4140d0586", - "symbol": "YOCO", - "decimals": 9, - "name": "YocoinYOCO", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xdd17629d05e068a9d118ee35d11101d4140d0586.png", - "aggregators": [ - "PancakeCoinMarketCap", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 4 - }, - "0xc22e8114818a918260662375450e19ac73d32852": { - "address": "0xc22e8114818a918260662375450e19ac73d32852", - "symbol": "KCAKE", - "decimals": 18, - "name": "KittyCake", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xc22e8114818a918260662375450e19ac73d32852.png", - "aggregators": [ - "PancakeCoinMarketCap", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 4 - }, - "0x9bcab88763c33a95e73bc6dcf80fcf27a77090b2": { - "address": "0x9bcab88763c33a95e73bc6dcf80fcf27a77090b2", - "symbol": "VICS", - "decimals": 18, - "name": "RoboFi", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x9bcab88763c33a95e73bc6dcf80fcf27a77090b2.png", - "aggregators": [ - "PancakeCoinMarketCap", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 4 - }, - "0x49324d59327fb799813b902db55b2a118d601547": { - "address": "0x49324d59327fb799813b902db55b2a118d601547", - "symbol": "BOSS", - "decimals": 9, - "name": "Boss", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x49324d59327fb799813b902db55b2a118d601547.png", - "aggregators": [ - "PancakeCoinMarketCap", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 4 - }, - "0x3220ccbbc29d727bde85b7333d31b21e0d6bc6f4": { - "address": "0x3220ccbbc29d727bde85b7333d31b21e0d6bc6f4", - "symbol": "PUPDOGE", - "decimals": 9, - "name": "Pup Doge", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x3220ccbbc29d727bde85b7333d31b21e0d6bc6f4.png", - "aggregators": [ - "PancakeCoinMarketCap", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 4 - }, - "0x2a17dc11a1828725cdb318e0036acf12727d27a2": { - "address": "0x2a17dc11a1828725cdb318e0036acf12727d27a2", - "symbol": "ARENA", - "decimals": 18, - "name": "ArenaSwap", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x2a17dc11a1828725cdb318e0036acf12727d27a2.png", - "aggregators": [ - "PancakeCoinMarketCap", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 4 - }, - "0x2db0d5cb907014c67dc201886624716fb5c71123": { - "address": "0x2db0d5cb907014c67dc201886624716fb5c71123", - "symbol": "AINU", - "decimals": 9, - "name": "Ainu", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x2db0d5cb907014c67dc201886624716fb5c71123.png", - "aggregators": [ - "PancakeCoinMarketCap", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 4 - }, - "0x808fac147a9c02723d0be300ac4753eaf93c0e1f": { - "address": "0x808fac147a9c02723d0be300ac4753eaf93c0e1f", - "symbol": "BABYFLOKICOIN", - "decimals": 9, - "name": "Baby Floki Coin", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x808fac147a9c02723d0be300ac4753eaf93c0e1f.png", - "aggregators": [ - "PancakeCoinMarketCap", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 4 - }, - "0x651a89fed302227d41425235f8e934502fb94c48": { - "address": "0x651a89fed302227d41425235f8e934502fb94c48", - "symbol": "ADACASH", - "decimals": 18, - "name": "ADAcash", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x651a89fed302227d41425235f8e934502fb94c48.png", - "aggregators": [ - "PancakeCoinMarketCap", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 4 - }, - "0xaec23008b1098e39c0f8de90bf7431d185efe8b3": { - "address": "0xaec23008b1098e39c0f8de90bf7431d185efe8b3", - "symbol": "CBUNNY", - "decimals": 18, - "name": "Crazy Bunny Equity", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xaec23008b1098e39c0f8de90bf7431d185efe8b3.png", - "aggregators": [ - "PancakeCoinMarketCap", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 4 - }, - "0x23e3981052d5280c658e5e18d814fa9582bfbc9e": { - "address": "0x23e3981052d5280c658e5e18d814fa9582bfbc9e", - "symbol": "YCT", - "decimals": 18, - "name": "Youclout", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x23e3981052d5280c658e5e18d814fa9582bfbc9e.png", - "aggregators": [ - "PancakeCoinMarketCap", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 4 - }, - "0xc6f509274fcc1f485644167cb911fd0c61545e6c": { - "address": "0xc6f509274fcc1f485644167cb911fd0c61545e6c", - "symbol": "OBS", - "decimals": 18, - "name": "Obsidium", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xc6f509274fcc1f485644167cb911fd0c61545e6c.png", - "aggregators": [ - "PancakeCoinMarketCap", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 4 - }, - "0xf9d6ddf44016953dbf7ab135a0f64d7a41870ede": { - "address": "0xf9d6ddf44016953dbf7ab135a0f64d7a41870ede", - "symbol": "DOFI", - "decimals": 9, - "name": "Doge Floki Coin [OLD]", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xf9d6ddf44016953dbf7ab135a0f64d7a41870ede.png", - "aggregators": [ - "PancakeCoinMarketCap", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 4 - }, - "0x599beec263fa6ea35055011967597b259fc012a4": { - "address": "0x599beec263fa6ea35055011967597b259fc012a4", - "symbol": "FOXGIRL", - "decimals": 18, - "name": "FoxGirl", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x599beec263fa6ea35055011967597b259fc012a4.png", - "aggregators": [ - "PancakeCoinMarketCap", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 4 - }, - "0x739e81bcd49854d7bdf526302989f14a2e7994b2": { - "address": "0x739e81bcd49854d7bdf526302989f14a2e7994b2", - "symbol": "CENX", - "decimals": 9, - "name": "Centcex", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x739e81bcd49854d7bdf526302989f14a2e7994b2.png", - "aggregators": [ - "PancakeCoinMarketCap", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 4 - }, - "0x549cc5df432cdbaebc8b9158a6bdfe1cbd0ba16d": { - "address": "0x549cc5df432cdbaebc8b9158a6bdfe1cbd0ba16d", - "symbol": "HWL", - "decimals": 18, - "name": "Howl City", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x549cc5df432cdbaebc8b9158a6bdfe1cbd0ba16d.png", - "aggregators": [ - "PancakeCoinMarketCap", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 4 - }, - "0x5a341dcf49e161cc73591f02e5f8cde8a29733fb": { - "address": "0x5a341dcf49e161cc73591f02e5f8cde8a29733fb", - "symbol": "RTO", - "decimals": 9, - "name": "Reflecto", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x5a341dcf49e161cc73591f02e5f8cde8a29733fb.png", - "aggregators": [ - "PancakeCoinMarketCap", - "Rubic", - "Squid", - "Sonarwatch" - ], - "occurrences": 4 - }, - "0x6ad0f087501eee603aeda0407c52864bc7f83322": { - "address": "0x6ad0f087501eee603aeda0407c52864bc7f83322", - "symbol": "MEFA", - "decimals": 9, - "name": "Metaverse Face", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x6ad0f087501eee603aeda0407c52864bc7f83322.png", - "aggregators": [ - "PancakeCoinMarketCap", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 4 - }, - "0x5ddb331c3ba48a1d68cbf50dd3bc7aac407dc115": { - "address": "0x5ddb331c3ba48a1d68cbf50dd3bc7aac407dc115", - "symbol": "NMBTC", - "decimals": 9, - "name": "NanoMeter Bitcoin", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x5ddb331c3ba48a1d68cbf50dd3bc7aac407dc115.png", - "aggregators": [ - "PancakeCoinMarketCap", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 4 - }, - "0xf3ed4770e6efe9168c3f2f50a6d9d0f97a550df1": { - "address": "0xf3ed4770e6efe9168c3f2f50a6d9d0f97a550df1", - "symbol": "DKEY", - "decimals": 18, - "name": "DKEY Bank", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xf3ed4770e6efe9168c3f2f50a6d9d0f97a550df1.png", - "aggregators": [ - "PancakeCoinMarketCap", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 4 - }, - "0xd4099a517f2fbe8a730d2ecaad1d0824b75e084a": { - "address": "0xd4099a517f2fbe8a730d2ecaad1d0824b75e084a", - "symbol": "MONO", - "decimals": 18, - "name": "The Monopolist", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xd4099a517f2fbe8a730d2ecaad1d0824b75e084a.png", - "aggregators": [ - "PancakeCoinMarketCap", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 4 - }, - "0x940230b6b7ef1979a28f32196a8e3439c645ba49": { - "address": "0x940230b6b7ef1979a28f32196a8e3439c645ba49", - "symbol": "SHIBARMY", - "decimals": 18, - "name": "Shib Army", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x940230b6b7ef1979a28f32196a8e3439c645ba49.png", - "aggregators": [ - "PancakeCoinMarketCap", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 4 - }, - "0x86cd1faf05abbb705842ec3c98ef5006173fb4d6": { - "address": "0x86cd1faf05abbb705842ec3c98ef5006173fb4d6", - "symbol": "JP", - "decimals": 9, - "name": "JP", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x86cd1faf05abbb705842ec3c98ef5006173fb4d6.png", - "aggregators": [ - "PancakeCoinMarketCap", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 4 - }, - "0x45289007706e7ee7b42b1fa506661d97740edfb4": { - "address": "0x45289007706e7ee7b42b1fa506661d97740edfb4", - "symbol": "FLOKICEO", - "decimals": 9, - "name": "FLOKI CEO", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x45289007706e7ee7b42b1fa506661d97740edfb4.png", - "aggregators": [ - "PancakeCoinMarketCap", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 4 - }, - "0x67d8e0080b612afae75a7f7229bfed3cdb998462": { - "address": "0x67d8e0080b612afae75a7f7229bfed3cdb998462", - "symbol": "CHT", - "decimals": 18, - "name": "CyberHarbor", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x67d8e0080b612afae75a7f7229bfed3cdb998462.png", - "aggregators": [ - "PancakeCoinMarketCap", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 4 - }, - "0x3cb20d96e866d128bc469a6e66505d46d7f9baba": { - "address": "0x3cb20d96e866d128bc469a6e66505d46d7f9baba", - "symbol": "BIB", - "decimals": 18, - "name": "BIB", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x3cb20d96e866d128bc469a6e66505d46d7f9baba.png", - "aggregators": [ - "PancakeCoinMarketCap", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 4 - }, - "0x36f84ee7f720312443c02389a08185e3ecf0ebed": { - "address": "0x36f84ee7f720312443c02389a08185e3ecf0ebed", - "symbol": "MTLA", - "decimals": 18, - "name": "Meta Launcher", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x36f84ee7f720312443c02389a08185e3ecf0ebed.png", - "aggregators": [ - "PancakeCoinMarketCap", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 4 - }, - "0xaf7c3e578621aabab184c706bad94ffb1a2e0179": { - "address": "0xaf7c3e578621aabab184c706bad94ffb1a2e0179", - "symbol": "DAOP", - "decimals": 18, - "name": "Dao Space", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xaf7c3e578621aabab184c706bad94ffb1a2e0179.png", - "aggregators": [ - "PancakeCoinMarketCap", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 4 - }, - "0x2cb63fcd1380a8ad0ff5ba16ddcbdf4935154da8": { - "address": "0x2cb63fcd1380a8ad0ff5ba16ddcbdf4935154da8", - "symbol": "TTT", - "decimals": 18, - "name": "TopTrade", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x2cb63fcd1380a8ad0ff5ba16ddcbdf4935154da8.png", - "aggregators": [ - "PancakeCoinMarketCap", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 4 - }, - "0x9aeb2e6dd8d55e14292acfcfc4077e33106e4144": { - "address": "0x9aeb2e6dd8d55e14292acfcfc4077e33106e4144", - "symbol": "PAYU", - "decimals": 18, - "name": "Platform of meme coins", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x9aeb2e6dd8d55e14292acfcfc4077e33106e4144.png", - "aggregators": [ - "PancakeCoinMarketCap", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 4 - }, - "0x52721d159cd90dd76014f73c1440e4ff983420ac": { - "address": "0x52721d159cd90dd76014f73c1440e4ff983420ac", - "symbol": "TROLL", - "decimals": 9, - "name": "Troll Face", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x52721d159cd90dd76014f73c1440e4ff983420ac.png", - "aggregators": [ - "PancakeCoinMarketCap", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 4 - }, - "0xf5355ddc7ffbf7ca119bf3222cb0ecac2fbb4502": { - "address": "0xf5355ddc7ffbf7ca119bf3222cb0ecac2fbb4502", - "symbol": "UCJL", - "decimals": 18, - "name": "Utility Cjournal", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xf5355ddc7ffbf7ca119bf3222cb0ecac2fbb4502.png", - "aggregators": [ - "PancakeCoinMarketCap", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 4 - }, - "0xddae2b90559f38eb41b93d946be21fb0dfb9a294": { - "address": "0xddae2b90559f38eb41b93d946be21fb0dfb9a294", - "symbol": "YEARN", - "decimals": 18, - "name": "YearnTogether", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xddae2b90559f38eb41b93d946be21fb0dfb9a294.png", - "aggregators": [ - "PancakeCoinMarketCap", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 4 - }, - "0xfc8774321ee4586af183baca95a8793530056353": { - "address": "0xfc8774321ee4586af183baca95a8793530056353", - "symbol": "LONG", - "decimals": 18, - "name": "LOONG", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xfc8774321ee4586af183baca95a8793530056353.png", - "aggregators": [ - "PancakeCoinMarketCap", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 4 - }, - "0x624b9b1ac0fb350aed8389a51b26e36147e158c3": { - "address": "0x624b9b1ac0fb350aed8389a51b26e36147e158c3", - "symbol": "NERO", - "decimals": 9, - "name": "Nero Token", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x624b9b1ac0fb350aed8389a51b26e36147e158c3.png", - "aggregators": [ - "PancakeCoinMarketCap", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 4 - }, - "0x933bcd9a03d350f040d2fe7e36d60a9c73d42ef5": { - "address": "0x933bcd9a03d350f040d2fe7e36d60a9c73d42ef5", - "symbol": "SNPS", - "decimals": 18, - "name": "Snaps", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x933bcd9a03d350f040d2fe7e36d60a9c73d42ef5.png", - "aggregators": [ - "PancakeCoinMarketCap", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 4 - }, - "0xab8c98491816fede394582f7758a5effeb4368d7": { - "address": "0xab8c98491816fede394582f7758a5effeb4368d7", - "symbol": "DTC", - "decimals": 9, - "name": "TrumpCoin", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xab8c98491816fede394582f7758a5effeb4368d7.png", - "aggregators": [ - "PancakeCoinMarketCap", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 4 - }, - "0x1606940bb5cd6de59a7e25367f4fb8965f38f122": { - "address": "0x1606940bb5cd6de59a7e25367f4fb8965f38f122", - "symbol": "AQUAGOAT", - "decimals": 9, - "name": "Aqua Goat", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x1606940bb5cd6de59a7e25367f4fb8965f38f122.png", - "aggregators": [ - "PancakeCoinMarketCap", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 4 - }, - "0x59769630b236398c2471eb26e6a529448030d94f": { - "address": "0x59769630b236398c2471eb26e6a529448030d94f", - "symbol": "NKYC", - "decimals": 18, - "name": "NKYC Token", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x59769630b236398c2471eb26e6a529448030d94f.png", - "aggregators": [ - "PancakeCoinMarketCap", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 4 - }, - "0x6f9320833d85a63c6a187cf9ada0f87930e61690": { - "address": "0x6f9320833d85a63c6a187cf9ada0f87930e61690", - "symbol": "DOGE-1SAT", - "decimals": 9, - "name": "DOGE-1SATELLITE", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x6f9320833d85a63c6a187cf9ada0f87930e61690.png", - "aggregators": [ - "PancakeCoinMarketCap", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 4 - }, - "0x3e45b22622b19c1eced632d8fe1ed708f9d471c3": { - "address": "0x3e45b22622b19c1eced632d8fe1ed708f9d471c3", - "symbol": "BESA", - "decimals": 9, - "name": "Besa Gaming Company", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x3e45b22622b19c1eced632d8fe1ed708f9d471c3.png", - "aggregators": [ - "PancakeCoinMarketCap", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 4 - }, - "0x6e8ce91124d57c37556672f8889cb89af52a6746": { - "address": "0x6e8ce91124d57c37556672f8889cb89af52a6746", - "symbol": "CBANK", - "decimals": 18, - "name": "Cairo Bank", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x6e8ce91124d57c37556672f8889cb89af52a6746.png", - "aggregators": [ - "PancakeCoinMarketCap", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 4 - }, - "0x4e1a724b0588fa971263c8ac5f78ca215c7d09dd": { - "address": "0x4e1a724b0588fa971263c8ac5f78ca215c7d09dd", - "symbol": "MTC", - "decimals": 18, - "name": "Moonft", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x4e1a724b0588fa971263c8ac5f78ca215c7d09dd.png", - "aggregators": [ - "PancakeCoinMarketCap", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 4 - }, - "0xca1c644704febf4ab81f85daca488d1623c28e63": { - "address": "0xca1c644704febf4ab81f85daca488d1623c28e63", - "symbol": "ABRA", - "decimals": 18, - "name": "Cadabra Finance", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xca1c644704febf4ab81f85daca488d1623c28e63.png", - "aggregators": ["PancakeCoinGecko", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0x33679898ceb9dc930024de84e7339d403191d8f6": { - "address": "0x33679898ceb9dc930024de84e7339d403191d8f6", - "symbol": "ALITA", - "decimals": 18, - "name": "AlitaAI", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x33679898ceb9dc930024de84e7339d403191d8f6.png", - "aggregators": [ - "PancakeCoinMarketCap", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 4 - }, - "0xbd4c4dc19f208cda6caacadadc0bff4cd975fa34": { - "address": "0xbd4c4dc19f208cda6caacadadc0bff4cd975fa34", - "symbol": "DOGSROCK", - "decimals": 9, - "name": "Dogs Rock", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xbd4c4dc19f208cda6caacadadc0bff4cd975fa34.png", - "aggregators": [ - "PancakeCoinMarketCap", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 4 - }, - "0x57185189118c7e786cafd5c71f35b16012fa95ad": { - "address": "0x57185189118c7e786cafd5c71f35b16012fa95ad", - "symbol": "BEFE", - "decimals": 18, - "name": "BEFE", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x57185189118c7e786cafd5c71f35b16012fa95ad.png", - "aggregators": [ - "PancakeCoinMarketCap", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 4 - }, - "0x6ec07dbd9311975b8002079d70c6f6d9e3e1ee5c": { - "address": "0x6ec07dbd9311975b8002079d70c6f6d9e3e1ee5c", - "symbol": "BABYTROLL", - "decimals": 9, - "name": "Baby Troll", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x6ec07dbd9311975b8002079d70c6f6d9e3e1ee5c.png", - "aggregators": [ - "PancakeCoinMarketCap", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 4 - }, - "0xa7380f5a0897820b7a385f27fe72e5469bacc8d6": { - "address": "0xa7380f5a0897820b7a385f27fe72e5469bacc8d6", - "symbol": "SORADOGE", - "decimals": 9, - "name": "Sora Doge", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xa7380f5a0897820b7a385f27fe72e5469bacc8d6.png", - "aggregators": [ - "PancakeCoinMarketCap", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 4 - }, - "0x9cae159a21a278e0a98ee42d197ae87cbc7165b3": { - "address": "0x9cae159a21a278e0a98ee42d197ae87cbc7165b3", - "symbol": "GIA", - "decimals": 9, - "name": "Gamia", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x9cae159a21a278e0a98ee42d197ae87cbc7165b3.png", - "aggregators": [ - "PancakeCoinMarketCap", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 4 - }, - "0x2243267f01efc579871eca055027e5214bbe5f14": { - "address": "0x2243267f01efc579871eca055027e5214bbe5f14", - "symbol": "BULL", - "decimals": 18, - "name": "Bull Token", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x2243267f01efc579871eca055027e5214bbe5f14.png", - "aggregators": [ - "PancakeCoinMarketCap", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 4 - }, - "0xcb3ae3099dc997616b907cefc9af5c850a067a4b": { - "address": "0xcb3ae3099dc997616b907cefc9af5c850a067a4b", - "symbol": "EMOJI", - "decimals": 18, - "name": "MOMOJI", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xcb3ae3099dc997616b907cefc9af5c850a067a4b.png", - "aggregators": [ - "PancakeCoinMarketCap", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 4 - }, - "0xe21502db7b9c6a78ed9400e30c8521be84f2ca4f": { - "address": "0xe21502db7b9c6a78ed9400e30c8521be84f2ca4f", - "symbol": "PETS", - "decimals": 18, - "name": "BNB Pets", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xe21502db7b9c6a78ed9400e30c8521be84f2ca4f.png", - "aggregators": [ - "PancakeCoinMarketCap", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 4 - }, - "0xf1dc2f7d9b9de5421ee89ef746f482a16e213383": { - "address": "0xf1dc2f7d9b9de5421ee89ef746f482a16e213383", - "symbol": "BABYPEPE", - "decimals": 18, - "name": "Babypepefi", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xf1dc2f7d9b9de5421ee89ef746f482a16e213383.png", - "aggregators": [ - "PancakeCoinMarketCap", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 4 - }, - "0x9059101e9c3b1ed5f778d6e88ba7d368f7dc9b57": { - "address": "0x9059101e9c3b1ed5f778d6e88ba7d368f7dc9b57", - "symbol": "KINGBONK", - "decimals": 9, - "name": "King Bonk", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x9059101e9c3b1ed5f778d6e88ba7d368f7dc9b57.png", - "aggregators": [ - "PancakeCoinMarketCap", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 4 - }, - "0xa910a46e2f2002fa9b5aa85f35b9440f6dac4b10": { - "address": "0xa910a46e2f2002fa9b5aa85f35b9440f6dac4b10", - "symbol": "SCORP", - "decimals": 18, - "name": "Scorpion", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xa910a46e2f2002fa9b5aa85f35b9440f6dac4b10.png", - "aggregators": ["PancakeCoinGecko", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0x963556de0eb8138e97a85f0a86ee0acd159d210b": { - "address": "0x963556de0eb8138e97a85f0a86ee0acd159d210b", - "symbol": "MARCO", - "decimals": 18, - "name": "Melega", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x963556de0eb8138e97a85f0a86ee0acd159d210b.png", - "aggregators": [ - "PancakeCoinMarketCap", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 4 - }, - "0x7b8779e01d117ec7e220f8299a6f93672e8eae23": { - "address": "0x7b8779e01d117ec7e220f8299a6f93672e8eae23", - "symbol": "IMT", - "decimals": 18, - "name": "IMOV", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x7b8779e01d117ec7e220f8299a6f93672e8eae23.png", - "aggregators": [ - "PancakeCoinMarketCap", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 4 - }, - "0xae7c682ba26ad6835b6150ffb35f22db9987f509": { - "address": "0xae7c682ba26ad6835b6150ffb35f22db9987f509", - "symbol": "ING", - "decimals": 18, - "name": "Infinity Games", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xae7c682ba26ad6835b6150ffb35f22db9987f509.png", - "aggregators": [ - "PancakeCoinMarketCap", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 4 - }, - "0x84fd7cc4cd689fc021ee3d00759b6d255269d538": { - "address": "0x84fd7cc4cd689fc021ee3d00759b6d255269d538", - "symbol": "KUKU", - "decimals": 18, - "name": "panKUKU", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x84fd7cc4cd689fc021ee3d00759b6d255269d538.png", - "aggregators": [ - "PancakeCoinMarketCap", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 4 - }, - "0x897f2be515373cf1f899d864b5be2bd5efd4e653": { - "address": "0x897f2be515373cf1f899d864b5be2bd5efd4e653", - "symbol": "T23", - "decimals": 18, - "name": "T23", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x897f2be515373cf1f899d864b5be2bd5efd4e653.png", - "aggregators": [ - "PancakeCoinMarketCap", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 4 - }, - "0x71b87be9ccbabe4f393e809dfc26df3c9720e0a2": { - "address": "0x71b87be9ccbabe4f393e809dfc26df3c9720e0a2", - "symbol": "TMG", - "decimals": 18, - "name": "T-mac DAO", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x71b87be9ccbabe4f393e809dfc26df3c9720e0a2.png", - "aggregators": [ - "PancakeCoinMarketCap", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 4 - }, - "0x066aee69d93dee28b32a57febd1878a2d94f6b0c": { - "address": "0x066aee69d93dee28b32a57febd1878a2d94f6b0c", - "symbol": "GOLD8", - "decimals": 18, - "name": "GOLD8", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x066aee69d93dee28b32a57febd1878a2d94f6b0c.png", - "aggregators": ["PancakeCoinGecko", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0x7b665b2f633d9363b89a98b094b1f9e732bd8f86": { - "address": "0x7b665b2f633d9363b89a98b094b1f9e732bd8f86", - "symbol": "AZY", - "decimals": 18, - "name": "Amazy", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x7b665b2f633d9363b89a98b094b1f9e732bd8f86.png", - "aggregators": [ - "PancakeCoinMarketCap", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 4 - }, - "0xf59918b07278ff20109f8c37d7255e0677b45c43": { - "address": "0xf59918b07278ff20109f8c37d7255e0677b45c43", - "symbol": "AFNTY", - "decimals": 9, - "name": "Affinity", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xf59918b07278ff20109f8c37d7255e0677b45c43.png", - "aggregators": [ - "PancakeCoinMarketCap", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 4 - }, - "0xe615c5e7219f9801c3b75bc76e45a4dab3c38e51": { - "address": "0xe615c5e7219f9801c3b75bc76e45a4dab3c38e51", - "symbol": "VMT", - "decimals": 18, - "name": "Vemate", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xe615c5e7219f9801c3b75bc76e45a4dab3c38e51.png", - "aggregators": [ - "PancakeCoinMarketCap", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 4 - }, - "0x7c56d81ecb5e1d287a1e22b89b01348f07be3541": { - "address": "0x7c56d81ecb5e1d287a1e22b89b01348f07be3541", - "symbol": "1MT", - "decimals": 18, - "name": "1Move Token", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x7c56d81ecb5e1d287a1e22b89b01348f07be3541.png", - "aggregators": [ - "PancakeCoinMarketCap", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 4 - }, - "0x78b2425fc305c0266143eaa527b01b043af83fb8": { - "address": "0x78b2425fc305c0266143eaa527b01b043af83fb8", - "symbol": "VSL", - "decimals": 9, - "name": "Vetter Skylabs", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x78b2425fc305c0266143eaa527b01b043af83fb8.png", - "aggregators": [ - "PancakeCoinMarketCap", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 4 - }, - "0x42414624c55a9cba80789f47c8f9828a7974e40f": { - "address": "0x42414624c55a9cba80789f47c8f9828a7974e40f", - "symbol": "KAKI", - "decimals": 18, - "name": "Doge KaKi", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x42414624c55a9cba80789f47c8f9828a7974e40f.png", - "aggregators": [ - "PancakeCoinMarketCap", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 4 - }, - "0x87e0ce18ce0ce0a86b22537b48c15e03a519b112": { - "address": "0x87e0ce18ce0ce0a86b22537b48c15e03a519b112", - "symbol": "SHINJI", - "decimals": 9, - "name": "Shinjiru Inu", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x87e0ce18ce0ce0a86b22537b48c15e03a519b112.png", - "aggregators": [ - "PancakeCoinMarketCap", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 4 - }, - "0x967784950655b8e74a2d3d3503933f0015660074": { - "address": "0x967784950655b8e74a2d3d3503933f0015660074", - "symbol": "ALIF", - "decimals": 18, - "name": "AliF Coin", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x967784950655b8e74a2d3d3503933f0015660074.png", - "aggregators": [ - "PancakeCoinMarketCap", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 4 - }, - "0x8abfa6a4f4b9865b0e7acfdce1839a2584636d06": { - "address": "0x8abfa6a4f4b9865b0e7acfdce1839a2584636d06", - "symbol": "MGKL", - "decimals": 18, - "name": "MAGIKAL.ai", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x8abfa6a4f4b9865b0e7acfdce1839a2584636d06.png", - "aggregators": [ - "PancakeCoinMarketCap", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 4 - }, - "0xa43d3e03d001492eb586db0990cb90d0c3bbe511": { - "address": "0xa43d3e03d001492eb586db0990cb90d0c3bbe511", - "symbol": "CLYC", - "decimals": 18, - "name": "Coinlocally", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xa43d3e03d001492eb586db0990cb90d0c3bbe511.png", - "aggregators": [ - "PancakeCoinMarketCap", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 4 - }, - "0xaa88fd757fa81ebbbce0eb1f324172d0e446093e": { - "address": "0xaa88fd757fa81ebbbce0eb1f324172d0e446093e", - "symbol": "REIGN", - "decimals": 18, - "name": "Reign of Terror", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xaa88fd757fa81ebbbce0eb1f324172d0e446093e.png", - "aggregators": [ - "PancakeCoinMarketCap", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 4 - }, - "0x9cbb03effd6fb7d79c9bab1b0ceaf4232e957521": { - "address": "0x9cbb03effd6fb7d79c9bab1b0ceaf4232e957521", - "symbol": "DOGECEO", - "decimals": 9, - "name": "Doge CEO", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x9cbb03effd6fb7d79c9bab1b0ceaf4232e957521.png", - "aggregators": [ - "PancakeCoinMarketCap", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 4 - }, - "0x06dc293c250e2fb2416a4276d291803fc74fb9b5": { - "address": "0x06dc293c250e2fb2416a4276d291803fc74fb9b5", - "symbol": "TKC", - "decimals": 18, - "name": "The Kingdom Coin", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x06dc293c250e2fb2416a4276d291803fc74fb9b5.png", - "aggregators": [ - "PancakeCoinMarketCap", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 4 - }, - "0x09cf7ca1b4ca6ab3855f23020e8e0e9e721cc03d": { - "address": "0x09cf7ca1b4ca6ab3855f23020e8e0e9e721cc03d", - "symbol": "LYUM", - "decimals": 18, - "name": "Layerium", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x09cf7ca1b4ca6ab3855f23020e8e0e9e721cc03d.png", - "aggregators": [ - "PancakeCoinMarketCap", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 4 - }, - "0x405e7454e71aefe8897438adc08e3f3e6d49dfc1": { - "address": "0x405e7454e71aefe8897438adc08e3f3e6d49dfc1", - "symbol": "SCT", - "decimals": 18, - "name": "SuperCells", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x405e7454e71aefe8897438adc08e3f3e6d49dfc1.png", - "aggregators": [ - "PancakeCoinMarketCap", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 4 - }, - "0x571dbcaa3df80dfebf69fefd084dace4a22ea7bf": { - "address": "0x571dbcaa3df80dfebf69fefd084dace4a22ea7bf", - "symbol": "BOAI", - "decimals": 18, - "name": "Bolic AI", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x571dbcaa3df80dfebf69fefd084dace4a22ea7bf.png", - "aggregators": [ - "PancakeCoinMarketCap", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 4 - }, - "0x3d17e0abd8d2f023970d8df8b43776a1a2bd737c": { - "address": "0x3d17e0abd8d2f023970d8df8b43776a1a2bd737c", - "symbol": "PEPECHAIN", - "decimals": 9, - "name": "PEPE Chain", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x3d17e0abd8d2f023970d8df8b43776a1a2bd737c.png", - "aggregators": [ - "PancakeCoinMarketCap", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 4 - }, - "0xbd817c2e531b1b31f211f50f59fbc87ebc50ef48": { - "address": "0xbd817c2e531b1b31f211f50f59fbc87ebc50ef48", - "symbol": "QTCC", - "decimals": 18, - "name": "Quick Transfer Coin Plus", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xbd817c2e531b1b31f211f50f59fbc87ebc50ef48.png", - "aggregators": [ - "PancakeCoinMarketCap", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 4 - }, - "0x6fa9c0ee8a1f237466bb9cac8466bfa2aa63a978": { - "address": "0x6fa9c0ee8a1f237466bb9cac8466bfa2aa63a978", - "symbol": "BICITY", - "decimals": 18, - "name": "BiCity AI Projects", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x6fa9c0ee8a1f237466bb9cac8466bfa2aa63a978.png", - "aggregators": [ - "PancakeCoinMarketCap", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 4 - }, - "0xf1e083a825db31c844b8b6be0b16a43fd523ca9c": { - "address": "0xf1e083a825db31c844b8b6be0b16a43fd523ca9c", - "symbol": "AVAC", - "decimals": 18, - "name": "AvaCoach", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xf1e083a825db31c844b8b6be0b16a43fd523ca9c.png", - "aggregators": ["PancakeCoinGecko", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0xde6e12bdb2062dc48b409f0086219464a0c317a0": { - "address": "0xde6e12bdb2062dc48b409f0086219464a0c317a0", - "symbol": "NIAO", - "decimals": 18, - "name": "NIAO", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xde6e12bdb2062dc48b409f0086219464a0c317a0.png", - "aggregators": [ - "PancakeCoinMarketCap", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 4 - }, - "0x52da44b5e584f730005dac8d2d2acbdee44d4ba3": { - "address": "0x52da44b5e584f730005dac8d2d2acbdee44d4ba3", - "symbol": "KT", - "decimals": 18, - "name": "KingdomX", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x52da44b5e584f730005dac8d2d2acbdee44d4ba3.png", - "aggregators": [ - "PancakeCoinMarketCap", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 4 - }, - "0xf6718b2701d4a6498ef77d7c152b2137ab28b8a3": { - "address": "0xf6718b2701d4a6498ef77d7c152b2137ab28b8a3", - "symbol": "STBTC", - "decimals": 18, - "name": "Lorenzo stBTC", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xf6718b2701d4a6498ef77d7c152b2137ab28b8a3.png", - "aggregators": ["PancakeExtended", "Rubic", "Squid", "Sonarwatch"], - "occurrences": 4 - }, - "0xd25db5c22a62041376f6f79372c8e204c7be7bdb": { - "address": "0xd25db5c22a62041376f6f79372c8e204c7be7bdb", - "symbol": "TBX", - "decimals": 18, - "name": "TurboX", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xd25db5c22a62041376f6f79372c8e204c7be7bdb.png", - "aggregators": [ - "PancakeCoinMarketCap", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 4 - }, - "0xfd60b3c3c1916bdbb4319a3d264894f1dfd5eca2": { - "address": "0xfd60b3c3c1916bdbb4319a3d264894f1dfd5eca2", - "symbol": "CNG", - "decimals": 18, - "name": "CoinNavigator", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xfd60b3c3c1916bdbb4319a3d264894f1dfd5eca2.png", - "aggregators": [ - "PancakeCoinMarketCap", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 4 - }, - "0xddb341e88bb2dd7cb56e3c62991c5ad3911518cc": { - "address": "0xddb341e88bb2dd7cb56e3c62991c5ad3911518cc", - "symbol": "CC", - "decimals": 18, - "name": "CCQKL", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xddb341e88bb2dd7cb56e3c62991c5ad3911518cc.png", - "aggregators": [ - "PancakeCoinMarketCap", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 4 - }, - "0x0910320181889fefde0bb1ca63962b0a8882e413": { - "address": "0x0910320181889fefde0bb1ca63962b0a8882e413", - "symbol": "CAMLY", - "decimals": 3, - "name": "CAMLY COIN", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x0910320181889fefde0bb1ca63962b0a8882e413.png", - "aggregators": [ - "PancakeCoinMarketCap", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 4 - }, - "0x75d8bb7fbd4782a134211dc350ba5c715197b81d": { - "address": "0x75d8bb7fbd4782a134211dc350ba5c715197b81d", - "symbol": "ATS", - "decimals": 18, - "name": "Alltoscan", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x75d8bb7fbd4782a134211dc350ba5c715197b81d.png", - "aggregators": [ - "PancakeCoinMarketCap", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 4 - }, - "0x8bfca09e5877ea59f85883d13a6873334b937d41": { - "address": "0x8bfca09e5877ea59f85883d13a6873334b937d41", - "symbol": "MADPEPE", - "decimals": 18, - "name": "Mad Pepe", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x8bfca09e5877ea59f85883d13a6873334b937d41.png", - "aggregators": [ - "PancakeCoinMarketCap", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 4 - }, - "0xb263feadea2d754dc72276a62e3cccf934669522": { - "address": "0xb263feadea2d754dc72276a62e3cccf934669522", - "symbol": "SNG", - "decimals": 18, - "name": "SNG Token", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xb263feadea2d754dc72276a62e3cccf934669522.png", - "aggregators": [ - "PancakeCoinMarketCap", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 4 - }, - "0x314bc6c98a28bd0580651233c351f2994cc12645": { - "address": "0x314bc6c98a28bd0580651233c351f2994cc12645", - "symbol": "$SHIBK", - "decimals": 18, - "name": "ShibaKeanu", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x314bc6c98a28bd0580651233c351f2994cc12645.png", - "aggregators": [ - "PancakeCoinMarketCap", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 4 - }, - "0xc636782a837feee37ccc29d58bdbb4bcbdd0ae1f": { - "address": "0xc636782a837feee37ccc29d58bdbb4bcbdd0ae1f", - "symbol": "POSEIDON", - "decimals": 18, - "name": "Binance Cat", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xc636782a837feee37ccc29d58bdbb4bcbdd0ae1f.png", - "aggregators": ["PancakeCoinGecko", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0x8e5cb7626dd949dff56fe2c130b75a8b6f1a05f8": { - "address": "0x8e5cb7626dd949dff56fe2c130b75a8b6f1a05f8", - "symbol": "BICS", - "decimals": 18, - "name": "Biceps", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x8e5cb7626dd949dff56fe2c130b75a8b6f1a05f8.png", - "aggregators": [ - "PancakeCoinMarketCap", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 4 - }, - "0xb1efa16818da8432add0cb0a82cc7fab98c78893": { - "address": "0xb1efa16818da8432add0cb0a82cc7fab98c78893", - "symbol": "KBC", - "decimals": 18, - "name": "Kibho Coin", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xb1efa16818da8432add0cb0a82cc7fab98c78893.png", - "aggregators": [ - "PancakeCoinMarketCap", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 4 - }, - "0xa9f978c02915246e435c0bda9785aaaad3cc46d2": { - "address": "0xa9f978c02915246e435c0bda9785aaaad3cc46d2", - "symbol": "LFT", - "decimals": 18, - "name": "Lifeform", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xa9f978c02915246e435c0bda9785aaaad3cc46d2.png", - "aggregators": [ - "PancakeCoinMarketCap", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 4 - }, - "0xda0f9f1204395c2481070c1d4dc1f996915527f2": { - "address": "0xda0f9f1204395c2481070c1d4dc1f996915527f2", - "symbol": "TBC", - "decimals": 18, - "name": "Tour Billion Coin", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xda0f9f1204395c2481070c1d4dc1f996915527f2.png", - "aggregators": [ - "PancakeCoinMarketCap", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 4 - }, - "0x05311d9aa0e17d1071986146ced510c85c71b52f": { - "address": "0x05311d9aa0e17d1071986146ced510c85c71b52f", - "symbol": "DOGA", - "decimals": 18, - "name": "DOGITA", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x05311d9aa0e17d1071986146ced510c85c71b52f.png", - "aggregators": [ - "PancakeCoinMarketCap", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 4 - }, - "0x68355e342ff81633ccd0395cc77c83e266ca548e": { - "address": "0x68355e342ff81633ccd0395cc77c83e266ca548e", - "symbol": "YON", - "decimals": 9, - "name": "YESorNO", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x68355e342ff81633ccd0395cc77c83e266ca548e.png", - "aggregators": [ - "PancakeCoinMarketCap", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 4 - }, - "0x67009eb16ff64d06b4f782b3c552b924b1d1bb93": { - "address": "0x67009eb16ff64d06b4f782b3c552b924b1d1bb93", - "symbol": "MTC", - "decimals": 18, - "name": "Matrix Chain", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x67009eb16ff64d06b4f782b3c552b924b1d1bb93.png", - "aggregators": [ - "PancakeCoinMarketCap", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 4 - }, - "0x766e09665a8128d9f7fd9d90bcd3d9cdc50b067f": { - "address": "0x766e09665a8128d9f7fd9d90bcd3d9cdc50b067f", - "symbol": "MOLI", - "decimals": 18, - "name": "Love Moli", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x766e09665a8128d9f7fd9d90bcd3d9cdc50b067f.png", - "aggregators": [ - "PancakeCoinMarketCap", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 4 - }, - "0x1c45366641014069114c78962bdc371f534bc81c": { - "address": "0x1c45366641014069114c78962bdc371f534bc81c", - "symbol": "BINANCEDOG", - "decimals": 18, - "name": "binancedog", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x1c45366641014069114c78962bdc371f534bc81c.png", - "aggregators": ["PancakeCoinGecko", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0x64cf1e2cab86694ac8b31653460faa47a68f59f0": { - "address": "0x64cf1e2cab86694ac8b31653460faa47a68f59f0", - "symbol": "GC", - "decimals": 5, - "name": "GamesCoin", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x64cf1e2cab86694ac8b31653460faa47a68f59f0.png", - "aggregators": ["PancakeCoinGecko", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0x3405ff989f8bb8efd6c85ad6b29219d3383a5fb0": { - "address": "0x3405ff989f8bb8efd6c85ad6b29219d3383a5fb0", - "symbol": "MVK", - "decimals": 18, - "name": "Metaverse Kombat", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x3405ff989f8bb8efd6c85ad6b29219d3383a5fb0.png", - "aggregators": [ - "PancakeCoinMarketCap", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 4 - }, - "0xc409ec8a33f31437ed753c82eed3c5f16d6d7e22": { - "address": "0xc409ec8a33f31437ed753c82eed3c5f16d6d7e22", - "symbol": "TOKAU", - "decimals": 18, - "name": "Tokyo AU", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xc409ec8a33f31437ed753c82eed3c5f16d6d7e22.png", - "aggregators": [ - "PancakeCoinMarketCap", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 4 - }, - "0xddc0dbd7dc799ae53a98a60b54999cb6ebb3abf0": { - "address": "0xddc0dbd7dc799ae53a98a60b54999cb6ebb3abf0", - "symbol": "BLAST", - "decimals": 9, - "name": "SafeBlast", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xddc0dbd7dc799ae53a98a60b54999cb6ebb3abf0.png", - "aggregators": [ - "PancakeCoinMarketCap", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 4 - }, - "0xbb95cc1c662d89822bda29d2e147b124406e6e42": { - "address": "0xbb95cc1c662d89822bda29d2e147b124406e6e42", - "symbol": "TRR", - "decimals": 18, - "name": "Terran Coin", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xbb95cc1c662d89822bda29d2e147b124406e6e42.png", - "aggregators": [ - "PancakeCoinMarketCap", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 4 - }, - "0xdd325c38b12903b727d16961e61333f4871a70e0": { - "address": "0xdd325c38b12903b727d16961e61333f4871a70e0", - "symbol": "TRUNK", - "decimals": 18, - "name": "Elephant Money (TRUNK)", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xdd325c38b12903b727d16961e61333f4871a70e0.png", - "aggregators": ["PancakeCoinGecko", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0x155e8a74dac3d8560ddabbc26aa064b764535193": { - "address": "0x155e8a74dac3d8560ddabbc26aa064b764535193", - "symbol": "FCP", - "decimals": 18, - "name": "Filipcoin", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x155e8a74dac3d8560ddabbc26aa064b764535193.png", - "aggregators": [ - "PancakeCoinMarketCap", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 4 - }, - "0xde301d6a2569aefcfe271b9d98f318baee1d30a4": { - "address": "0xde301d6a2569aefcfe271b9d98f318baee1d30a4", - "symbol": "LUS", - "decimals": 18, - "name": "Luna Rush", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xde301d6a2569aefcfe271b9d98f318baee1d30a4.png", - "aggregators": [ - "PancakeCoinMarketCap", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 4 - }, - "0x3d473c3ef4cd4c909b020f48477a2ee2617a8e3c": { - "address": "0x3d473c3ef4cd4c909b020f48477a2ee2617a8e3c", - "symbol": "GRG", - "decimals": 18, - "name": "RigoBlock", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x3d473c3ef4cd4c909b020f48477a2ee2617a8e3c.png", - "aggregators": [ - "PancakeCoinMarketCap", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 4 - }, - "0x0555e30da8f98308edb960aa94c0db47230d2b9c": { - "address": "0x0555e30da8f98308edb960aa94c0db47230d2b9c", - "symbol": "WBTC", - "decimals": 8, - "name": "Wrapped BTC", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x0555e30da8f98308edb960aa94c0db47230d2b9c.png", - "aggregators": ["PancakeExtended", "Socket", "Rubic", "Rango"], - "occurrences": 4 - }, - "0x5dd1e31e1a0e2e077ac98d2a4b781f418ca50387": { - "address": "0x5dd1e31e1a0e2e077ac98d2a4b781f418ca50387", - "symbol": "ZLW", - "decimals": 18, - "name": "Zelwin", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x5dd1e31e1a0e2e077ac98d2a4b781f418ca50387.png", - "aggregators": [ - "PancakeCoinMarketCap", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 4 - }, - "0xf1e5bbd997501a8439619266a09a54b2b499eaa3": { - "address": "0xf1e5bbd997501a8439619266a09a54b2b499eaa3", - "symbol": "UCO", - "decimals": 8, - "name": "Archethic Universal Coin", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xf1e5bbd997501a8439619266a09a54b2b499eaa3.png", - "aggregators": ["PancakeCoinGecko", "Socket", "Rubic", "Rango"], - "occurrences": 4 - }, - "0x755341c49f4427e43d99d8254a8dd87056f1ee00": { - "address": "0x755341c49f4427e43d99d8254a8dd87056f1ee00", - "symbol": "ELG", - "decimals": 18, - "name": "Escoin", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x755341c49f4427e43d99d8254a8dd87056f1ee00.png", - "aggregators": [ - "PancakeCoinMarketCap", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 4 - }, - "0xd632bd021a07af70592ce1e18717ab9aa126decb": { - "address": "0xd632bd021a07af70592ce1e18717ab9aa126decb", - "symbol": "KANGAL", - "decimals": 18, - "name": "Kangal", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xd632bd021a07af70592ce1e18717ab9aa126decb.png", - "aggregators": [ - "PancakeCoinMarketCap", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 4 - }, - "0xaa076b62efc6f357882e07665157a271ab46a063": { - "address": "0xaa076b62efc6f357882e07665157a271ab46a063", - "symbol": "NSFW", - "decimals": 18, - "name": "Pleasure Coin", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xaa076b62efc6f357882e07665157a271ab46a063.png", - "aggregators": [ - "PancakeCoinMarketCap", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 4 - }, - "0xc51ef828319b131b595b7ec4b28210ecf4d05ad0": { - "address": "0xc51ef828319b131b595b7ec4b28210ecf4d05ad0", - "symbol": "EFX", - "decimals": 18, - "name": "Effect AI", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xc51ef828319b131b595b7ec4b28210ecf4d05ad0.png", - "aggregators": [ - "PancakeCoinMarketCap", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 4 - }, - "0x5f588efaf8eb57e3837486e834fc5a4e07768d98": { - "address": "0x5f588efaf8eb57e3837486e834fc5a4e07768d98", - "symbol": "MVL", - "decimals": 18, - "name": "MVL", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x5f588efaf8eb57e3837486e834fc5a4e07768d98.png", - "aggregators": [ - "PancakeCoinMarketCap", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 4 - }, - "0x40225c6277b29bf9056b4acb7ee1512cbff11671": { - "address": "0x40225c6277b29bf9056b4acb7ee1512cbff11671", - "symbol": "BUY", - "decimals": 18, - "name": "Buying.com", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x40225c6277b29bf9056b4acb7ee1512cbff11671.png", - "aggregators": [ - "PancakeCoinMarketCap", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 4 - }, - "0x8bd778b12b15416359a227f0533ce2d91844e1ed": { - "address": "0x8bd778b12b15416359a227f0533ce2d91844e1ed", - "symbol": "SAKE", - "decimals": 18, - "name": "SakeSwap", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x8bd778b12b15416359a227f0533ce2d91844e1ed.png", - "aggregators": [ - "PancakeCoinMarketCap", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 4 - }, - "0xb0c4080a8fa7afa11a09473f3be14d44af3f8743": { - "address": "0xb0c4080a8fa7afa11a09473f3be14d44af3f8743", - "symbol": "STBU", - "decimals": 18, - "name": "Stobox", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xb0c4080a8fa7afa11a09473f3be14d44af3f8743.png", - "aggregators": [ - "PancakeCoinMarketCap", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 4 - }, - "0x141383cdb8158982fb3469c3e49cc82f8026d968": { - "address": "0x141383cdb8158982fb3469c3e49cc82f8026d968", - "symbol": "CORX", - "decimals": 18, - "name": "CorionX", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x141383cdb8158982fb3469c3e49cc82f8026d968.png", - "aggregators": [ - "PancakeCoinMarketCap", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 4 - }, - "0x33a3d962955a3862c8093d1273344719f03ca17c": { - "address": "0x33a3d962955a3862c8093d1273344719f03ca17c", - "symbol": "SPORE", - "decimals": 9, - "name": "Spore", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x33a3d962955a3862c8093d1273344719f03ca17c.png", - "aggregators": [ - "PancakeCoinMarketCap", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 4 - }, - "0x36fe11b6d5c9421f68d235694fe192b35e803903": { - "address": "0x36fe11b6d5c9421f68d235694fe192b35e803903", - "symbol": "RWA", - "decimals": 18, - "name": "Xend Finance", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x36fe11b6d5c9421f68d235694fe192b35e803903.png", - "aggregators": [ - "PancakeCoinMarketCap", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 4 - }, - "0x889efce29fa0bb9b26be9fda17a8003f4e8da4de": { - "address": "0x889efce29fa0bb9b26be9fda17a8003f4e8da4de", - "symbol": "EGG", - "decimals": 18, - "name": "Waves Ducks", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x889efce29fa0bb9b26be9fda17a8003f4e8da4de.png", - "aggregators": [ - "PancakeCoinMarketCap", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 4 - }, - "0x5ca42204cdaa70d5c773946e69de942b85ca6706": { - "address": "0x5ca42204cdaa70d5c773946e69de942b85ca6706", - "symbol": "POSI", - "decimals": 18, - "name": "Position", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x5ca42204cdaa70d5c773946e69de942b85ca6706.png", - "aggregators": [ - "PancakeCoinMarketCap", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 4 - }, - "0x2aaf50869739e317ab80a57bf87caa35f5b60598": { - "address": "0x2aaf50869739e317ab80a57bf87caa35f5b60598", - "symbol": "CIOTX", - "decimals": 18, - "name": "Crosschain IOTX", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x2aaf50869739e317ab80a57bf87caa35f5b60598.png", - "aggregators": [ - "PancakeCoinMarketCap", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 4 - }, - "0xbfef6ccfc830d3baca4f6766a0d4aaa242ca9f3d": { - "address": "0xbfef6ccfc830d3baca4f6766a0d4aaa242ca9f3d", - "symbol": "NAV", - "decimals": 8, - "name": "Navcoin", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xbfef6ccfc830d3baca4f6766a0d4aaa242ca9f3d.png", - "aggregators": [ - "PancakeCoinMarketCap", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 4 - }, - "0x13ab6739368a4e4abf24695bf52959224367391f": { - "address": "0x13ab6739368a4e4abf24695bf52959224367391f", - "symbol": "YGG", - "decimals": 18, - "name": "Yield Guild Games", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x13ab6739368a4e4abf24695bf52959224367391f.png", - "aggregators": [ - "PancakeCoinMarketCap", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 4 - }, - "0x7d61d3752f759c71f5291358408947aff7b0ff2c": { - "address": "0x7d61d3752f759c71f5291358408947aff7b0ff2c", - "symbol": "TALK", - "decimals": 18, - "name": "Talken", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x7d61d3752f759c71f5291358408947aff7b0ff2c.png", - "aggregators": [ - "PancakeCoinMarketCap", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 4 - }, - "0x73cf73c2503154de4dc12067546aa9357dadaff2": { - "address": "0x73cf73c2503154de4dc12067546aa9357dadaff2", - "symbol": "42", - "decimals": 8, - "name": "42-coin", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x73cf73c2503154de4dc12067546aa9357dadaff2.png", - "aggregators": [ - "PancakeCoinMarketCap", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 4 - }, - "0x8683e604cdf911cd72652a04bf9d571697a86a60": { - "address": "0x8683e604cdf911cd72652a04bf9d571697a86a60", - "symbol": "BCDT", - "decimals": 18, - "name": "EvidenZ", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x8683e604cdf911cd72652a04bf9d571697a86a60.png", - "aggregators": [ - "PancakeCoinMarketCap", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 4 - }, - "0x2dd1b4d4548accea497050619965f91f78b3b532": { - "address": "0x2dd1b4d4548accea497050619965f91f78b3b532", - "symbol": "FPI", - "decimals": 18, - "name": "Frax Price Index", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x2dd1b4d4548accea497050619965f91f78b3b532.png", - "aggregators": [ - "PancakeCoinMarketCap", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 4 - }, - "0xe62b7c22484f8b031930275d31f42b9a517fe038": { - "address": "0xe62b7c22484f8b031930275d31f42b9a517fe038", - "symbol": "SIDUS", - "decimals": 18, - "name": "Sidus", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xe62b7c22484f8b031930275d31f42b9a517fe038.png", - "aggregators": [ - "PancakeCoinMarketCap", - "Socket", - "Rubic", - "Sonarwatch" - ], - "occurrences": 4 - }, - "0x6c9297be2e3ce9c10c480a25b7157a43fd992942": { - "address": "0x6c9297be2e3ce9c10c480a25b7157a43fd992942", - "symbol": "MEAN", - "decimals": 6, - "name": "Mean DAO", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x6c9297be2e3ce9c10c480a25b7157a43fd992942.png", - "aggregators": [ - "PancakeCoinMarketCap", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 4 - }, - "0x7283dfa2d8d7e277b148cc263b5d8ae02f1076d3": { - "address": "0x7283dfa2d8d7e277b148cc263b5d8ae02f1076d3", - "symbol": "GRLC", - "decimals": 8, - "name": "Garlicoin", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x7283dfa2d8d7e277b148cc263b5d8ae02f1076d3.png", - "aggregators": [ - "PancakeCoinMarketCap", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 4 - }, - "0xc6bdfc4f2e90196738873e824a9efa03f7c64176": { - "address": "0xc6bdfc4f2e90196738873e824a9efa03f7c64176", - "symbol": "VCNT", - "decimals": 18, - "name": "ViciCoin", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xc6bdfc4f2e90196738873e824a9efa03f7c64176.png", - "aggregators": [ - "PancakeCoinMarketCap", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 4 - }, - "0x3a9eed92422abdd7566fba8c34bb74b3f656dbb3": { - "address": "0x3a9eed92422abdd7566fba8c34bb74b3f656dbb3", - "symbol": "KAT", - "decimals": 18, - "name": "Kambria", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x3a9eed92422abdd7566fba8c34bb74b3f656dbb3.png", - "aggregators": [ - "PancakeCoinMarketCap", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 4 - }, - "0x8af48050534ee9bde12ec6e45ea3db4908c04777": { - "address": "0x8af48050534ee9bde12ec6e45ea3db4908c04777", - "symbol": "HATCHY", - "decimals": 18, - "name": "HatchyPocket", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x8af48050534ee9bde12ec6e45ea3db4908c04777.png", - "aggregators": [ - "PancakeCoinMarketCap", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 4 - }, - "0xfa704148d516b209d52c2d75f239274c8f8eaf1a": { - "address": "0xfa704148d516b209d52c2d75f239274c8f8eaf1a", - "symbol": "OCTA", - "decimals": 18, - "name": "OctaSpace", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xfa704148d516b209d52c2d75f239274c8f8eaf1a.png", - "aggregators": [ - "PancakeCoinMarketCap", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 4 - }, - "0x848b991fb420cd59c8296143c8153477393ddcab": { - "address": "0x848b991fb420cd59c8296143c8153477393ddcab", - "symbol": "KCN", - "decimals": 12, - "name": "Kylacoin", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x848b991fb420cd59c8296143c8153477393ddcab.png", - "aggregators": [ - "PancakeCoinMarketCap", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 4 - }, - "0x1bc8bf18256d8b45d8367aac50fe2e24fc6aa8ca": { - "address": "0x1bc8bf18256d8b45d8367aac50fe2e24fc6aa8ca", - "symbol": "VES", - "decimals": 18, - "name": "Vestate", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x1bc8bf18256d8b45d8367aac50fe2e24fc6aa8ca.png", - "aggregators": [ - "PancakeCoinMarketCap", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 4 - }, - "0x5c999e15b71de2bb8e651f0f999fb0bc321a0dfe": { - "address": "0x5c999e15b71de2bb8e651f0f999fb0bc321a0dfe", - "symbol": "ZED", - "decimals": 18, - "name": "ZedDex", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x5c999e15b71de2bb8e651f0f999fb0bc321a0dfe.png", - "aggregators": [ - "PancakeCoinMarketCap", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 4 - }, - "0xa40640458fbc27b6eefedea1e9c9e17d4cee7a21": { - "address": "0xa40640458fbc27b6eefedea1e9c9e17d4cee7a21", - "symbol": "AEUR", - "decimals": 18, - "name": "Anchored Coins AEUR", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xa40640458fbc27b6eefedea1e9c9e17d4cee7a21.png", - "aggregators": [ - "PancakeCoinMarketCap", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 4 - }, - "0x1ca5f369eac57cb54aa54136b9552f59a0a4050f": { - "address": "0x1ca5f369eac57cb54aa54136b9552f59a0a4050f", - "symbol": "CHADCAT", - "decimals": 9, - "name": "CHAD CAT", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x1ca5f369eac57cb54aa54136b9552f59a0a4050f.png", - "aggregators": [ - "PancakeCoinMarketCap", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 4 - }, - "0x306fd3e7b169aa4ee19412323e1a5995b8c1a1f4": { - "address": "0x306fd3e7b169aa4ee19412323e1a5995b8c1a1f4", - "symbol": "FTW", - "decimals": 18, - "name": "Black Agnus", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x306fd3e7b169aa4ee19412323e1a5995b8c1a1f4.png", - "aggregators": ["PancakeCoinGecko", "Socket", "Rubic", "Rango"], - "occurrences": 4 - }, - "0x40d8e1fbaf69173c47fa493feb50a84eec6b57ee": { - "address": "0x40d8e1fbaf69173c47fa493feb50a84eec6b57ee", - "symbol": "IONQON", - "decimals": 18, - "name": "IonQ (Ondo Tokenized)", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x40d8e1fbaf69173c47fa493feb50a84eec6b57ee.png", - "aggregators": ["CoinGecko", "Rubic", "Rango", "Ondo"], - "occurrences": 4, - "rwaData": { - "market": { - "nextOpen": "2026-05-18T20:01:00.000Z", - "nextClose": "2026-05-18T19:59:00.000Z" - }, - "nextPause": { - "start": null, - "end": null - }, - "ticker": "IONQ", - "instrumentType": "stock" - } - }, - "0xf95e50be5efc96117c28775f80c7cdb41ebc4888": { - "address": "0xf95e50be5efc96117c28775f80c7cdb41ebc4888", - "symbol": "SHYON", - "decimals": 18, - "name": "iShares 1-3 Year Treasury Bond ETF (Ondo Tokenized)", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xf95e50be5efc96117c28775f80c7cdb41ebc4888.png", - "aggregators": ["CoinGecko", "Rubic", "Rango", "Ondo"], - "occurrences": 4, - "rwaData": { - "market": { - "nextOpen": "2026-05-18T20:01:00.000Z", - "nextClose": "2026-05-18T19:59:00.000Z" - }, - "nextPause": { - "start": null, - "end": null - }, - "ticker": "SHY", - "instrumentType": "stock" - } - }, - "0xa486a0a05250e8621ba3b26c3bbc517145eba619": { - "address": "0xa486a0a05250e8621ba3b26c3bbc517145eba619", - "symbol": "IEFON", - "decimals": 18, - "name": "iShares 7-10 Year Treasury Bond ETF (Ondo Tokenized)", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xa486a0a05250e8621ba3b26c3bbc517145eba619.png", - "aggregators": ["CoinGecko", "Rubic", "Rango", "Ondo"], - "occurrences": 4, - "rwaData": { - "market": { - "nextOpen": "2026-05-18T20:01:00.000Z", - "nextClose": "2026-05-18T19:59:00.000Z" - }, - "nextPause": { - "start": null, - "end": null - }, - "ticker": "IEF", - "instrumentType": "stock" - } - }, - "0x04b16ff1f9673146f68aa5d5f57aa45adcf068e1": { - "address": "0x04b16ff1f9673146f68aa5d5f57aa45adcf068e1", - "symbol": "ETHAON", - "decimals": 18, - "name": "iShares Ethereum Trust ETF (Ondo Tokenized)", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x04b16ff1f9673146f68aa5d5f57aa45adcf068e1.png", - "aggregators": ["CoinGecko", "Rubic", "Rango", "Ondo"], - "occurrences": 4, - "rwaData": { - "market": { - "nextOpen": "2026-05-18T20:01:00.000Z", - "nextClose": "2026-05-18T19:59:00.000Z" - }, - "nextPause": { - "start": null, - "end": null - }, - "ticker": "ETHA", - "instrumentType": "stock" - } - }, - "0x9876f4b879cde9aa49ffd260034a0698b7b33a49": { - "address": "0x9876f4b879cde9aa49ffd260034a0698b7b33a49", - "symbol": "EWZON", - "decimals": 18, - "name": "iShares MSCI Brazil ETF (Ondo Tokenized)", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x9876f4b879cde9aa49ffd260034a0698b7b33a49.png", - "aggregators": ["CoinGecko", "Rubic", "Rango", "Ondo"], - "occurrences": 4, - "rwaData": { - "market": { - "nextOpen": "2026-05-18T20:01:00.000Z", - "nextClose": "2026-05-18T19:59:00.000Z" - }, - "nextPause": { - "start": null, - "end": null - }, - "ticker": "EWZ", - "instrumentType": "stock" - } - }, - "0xdb0748297fbef0b33df89e86519a0bd3adaf6459": { - "address": "0xdb0748297fbef0b33df89e86519a0bd3adaf6459", - "symbol": "INDAON", - "decimals": 18, - "name": "iShares MSCI India ETF (Ondo Tokenized)", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xdb0748297fbef0b33df89e86519a0bd3adaf6459.png", - "aggregators": ["CoinGecko", "Rubic", "Rango", "Ondo"], - "occurrences": 4, - "rwaData": { - "market": { - "nextOpen": "2026-05-18T20:01:00.000Z", - "nextClose": "2026-05-18T19:59:00.000Z" - }, - "nextPause": { - "start": null, - "end": null - }, - "ticker": "INDA", - "instrumentType": "stock" - } - }, - "0x82715299f3f132fb85f3de1f7e8fafd3d79f3eb5": { - "address": "0x82715299f3f132fb85f3de1f7e8fafd3d79f3eb5", - "symbol": "EWJON", - "decimals": 18, - "name": "iShares MSCI Japan ETF (Ondo Tokenized)", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x82715299f3f132fb85f3de1f7e8fafd3d79f3eb5.png", - "aggregators": ["CoinGecko", "Rubic", "Rango", "Ondo"], - "occurrences": 4, - "rwaData": { - "market": { - "nextOpen": "2026-05-18T20:01:00.000Z", - "nextClose": "2026-05-18T19:59:00.000Z" - }, - "nextPause": { - "start": null, - "end": null - }, - "ticker": "EWJ", - "instrumentType": "stock" - } - }, - "0x2a3cbf64c8181db4a25d41d4d7a7db9984c59dac": { - "address": "0x2a3cbf64c8181db4a25d41d4d7a7db9984c59dac", - "symbol": "SOXXON", - "decimals": 18, - "name": "iShares Semiconductor ETF (Ondo Tokenized)", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x2a3cbf64c8181db4a25d41d4d7a7db9984c59dac.png", - "aggregators": ["CoinGecko", "Rubic", "Rango", "Ondo"], - "occurrences": 4, - "rwaData": { - "market": { - "nextOpen": "2026-05-18T20:01:00.000Z", - "nextClose": "2026-05-18T19:59:00.000Z" - }, - "nextPause": { - "start": null, - "end": null - }, - "ticker": "SOXX", - "instrumentType": "stock" - } - }, - "0x7437203800140ba7d9081dde8cef09ee40e3bf03": { - "address": "0x7437203800140ba7d9081dde8cef09ee40e3bf03", - "symbol": "KWEBON", - "decimals": 18, - "name": "KraneShares CSI China Internet ETF (Ondo Tokenized)", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x7437203800140ba7d9081dde8cef09ee40e3bf03.png", - "aggregators": ["CoinGecko", "Rubic", "Rango", "Ondo"], - "occurrences": 4, - "rwaData": { - "market": { - "nextOpen": "2026-05-18T20:01:00.000Z", - "nextClose": "2026-05-18T19:59:00.000Z" - }, - "nextPause": { - "start": null, - "end": null - }, - "ticker": "KWEB", - "instrumentType": "stock" - } - }, - "0x75e9d68e99e76714ed1a7663ab48ba3aabd7a6c5": { - "address": "0x75e9d68e99e76714ed1a7663ab48ba3aabd7a6c5", - "symbol": "HYSON", - "decimals": 18, - "name": "PIMCO 0-5 Year High Yield Corporate Bond Index ETF (Ondo Tokenized)", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x75e9d68e99e76714ed1a7663ab48ba3aabd7a6c5.png", - "aggregators": ["CoinGecko", "Rubic", "Rango", "Ondo"], - "occurrences": 4, - "rwaData": { - "market": { - "nextOpen": "2026-05-18T20:01:00.000Z", - "nextClose": "2026-05-18T19:59:00.000Z" - }, - "nextPause": { - "start": null, - "end": null - }, - "ticker": "HYS", - "instrumentType": "stock" - } - }, - "0x30bd85fd4286c5c9857679f5b188f737b4a7b8c0": { - "address": "0x30bd85fd4286c5c9857679f5b188f737b4a7b8c0", - "symbol": "REGNON", - "decimals": 18, - "name": "Regeneron Pharmaceuticals (Ondo Tokenized)", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x30bd85fd4286c5c9857679f5b188f737b4a7b8c0.png", - "aggregators": ["CoinGecko", "Rubic", "Rango", "Ondo"], - "occurrences": 4, - "rwaData": { - "market": { - "nextOpen": "2026-05-18T20:01:00.000Z", - "nextClose": "2026-05-18T19:59:00.000Z" - }, - "nextPause": { - "start": "2026-05-19T23:52:00.000Z", - "end": "2026-05-20T00:12:00.000Z" - }, - "ticker": "REGN", - "instrumentType": "stock" - } - }, - "0xe7ddf606841ee278a30e5c90486681e68ddd8cbf": { - "address": "0xe7ddf606841ee278a30e5c90486681e68ddd8cbf", - "symbol": "UECON", - "decimals": 18, - "name": "Uranium Energy (Ondo Tokenized)", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xe7ddf606841ee278a30e5c90486681e68ddd8cbf.png", - "aggregators": ["CoinGecko", "Rubic", "Rango", "Ondo"], - "occurrences": 4, - "rwaData": { - "market": { - "nextOpen": "2026-05-19T08:01:00.000Z", - "nextClose": "2026-05-18T19:59:00.000Z" - }, - "nextPause": { - "start": "2026-06-01T09:00:00.000Z", - "end": "2026-06-01T23:30:00.000Z" - }, - "ticker": "UEC", - "instrumentType": "stock" - } - }, - "0x5f2d37192576a6804f44722eb828e280d5fb43dc": { - "address": "0x5f2d37192576a6804f44722eb828e280d5fb43dc", - "symbol": "BNOON", - "decimals": 18, - "name": "US Brent Oil Fund (Ondo Tokenized)", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x5f2d37192576a6804f44722eb828e280d5fb43dc.png", - "aggregators": ["CoinGecko", "Rubic", "Rango", "Ondo"], - "occurrences": 4, - "rwaData": { - "market": { - "nextOpen": "2026-05-18T20:01:00.000Z", - "nextClose": "2026-05-18T19:59:00.000Z" - }, - "nextPause": { - "start": null, - "end": null - }, - "ticker": "BNO", - "instrumentType": "stock" - } - }, - "0x10b58a3d9dcec59bb1c3bf6b9c9414eafce711c9": { - "address": "0x10b58a3d9dcec59bb1c3bf6b9c9414eafce711c9", - "symbol": "VNQON", - "decimals": 18, - "name": "Vanguard Real Estate ETF (Ondo Tokenized)", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x10b58a3d9dcec59bb1c3bf6b9c9414eafce711c9.png", - "aggregators": ["CoinGecko", "Rubic", "Rango", "Ondo"], - "occurrences": 4, - "rwaData": { - "market": { - "nextOpen": "2026-05-18T20:01:00.000Z", - "nextClose": "2026-05-18T19:59:00.000Z" - }, - "nextPause": { - "start": null, - "end": null - }, - "ticker": "VNQ", - "instrumentType": "stock" - } - }, - "0x0b790abd6594918de1022233b7cc79badb84d92a": { - "address": "0x0b790abd6594918de1022233b7cc79badb84d92a", - "symbol": "ALBON", - "decimals": 18, - "name": "Albemarle (Ondo Tokenized)", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x0b790abd6594918de1022233b7cc79badb84d92a.png", - "aggregators": ["CoinGecko", "Rubic", "Rango", "Ondo"], - "occurrences": 4, - "rwaData": { - "market": { - "nextOpen": "2026-05-18T20:01:00.000Z", - "nextClose": "2026-05-18T19:59:00.000Z" - }, - "nextPause": { - "start": "2026-06-11T23:52:00.000Z", - "end": "2026-06-12T00:12:00.000Z" - }, - "ticker": "ALB", - "instrumentType": "stock" - } - }, - "0x0585756aafb241b0f8a9df62db26c566091bde0b": { - "address": "0x0585756aafb241b0f8a9df62db26c566091bde0b", - "symbol": "COHRON", - "decimals": 18, - "name": "Coherent (Ondo Tokenized)", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x0585756aafb241b0f8a9df62db26c566091bde0b.png", - "aggregators": ["CoinGecko", "Rubic", "Rango", "Ondo"], - "occurrences": 4, - "rwaData": { - "market": { - "nextOpen": "2026-05-18T20:01:00.000Z", - "nextClose": "2026-05-18T19:59:00.000Z" - }, - "nextPause": { - "start": null, - "end": null - }, - "ticker": "COHR", - "instrumentType": "stock" - } - }, - "0x76e39171cb665a35981e744e2ceb7012f76caeac": { - "address": "0x76e39171cb665a35981e744e2ceb7012f76caeac", - "symbol": "CRWVON", - "decimals": 18, - "name": "CoreWeave (Ondo Tokenized)", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x76e39171cb665a35981e744e2ceb7012f76caeac.png", - "aggregators": ["CoinGecko", "Rubic", "Rango", "Ondo"], - "occurrences": 4, - "rwaData": { - "market": { - "nextOpen": "2026-05-18T20:01:00.000Z", - "nextClose": "2026-05-18T19:59:00.000Z" - }, - "nextPause": { - "start": null, - "end": null - }, - "ticker": "CRWV", - "instrumentType": "stock" - } - }, - "0x4697b2a050f7b5a8e1ebc27c325f9d78d094f041": { - "address": "0x4697b2a050f7b5a8e1ebc27c325f9d78d094f041", - "symbol": "ETNON", - "decimals": 18, - "name": "Eaton (Ondo Tokenized)", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x4697b2a050f7b5a8e1ebc27c325f9d78d094f041.png", - "aggregators": ["CoinGecko", "Rubic", "Rango", "Ondo"], - "occurrences": 4, - "rwaData": { - "market": { - "nextOpen": "2026-05-18T20:01:00.000Z", - "nextClose": "2026-05-18T19:59:00.000Z" - }, - "nextPause": { - "start": null, - "end": null - }, - "ticker": "ETN", - "instrumentType": "stock" - } - }, - "0x30938154e2697694f41592c2e48459287debe4bf": { - "address": "0x30938154e2697694f41592c2e48459287debe4bf", - "symbol": "ENPHON", - "decimals": 18, - "name": "Enphase Energy (Ondo Tokenized)", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x30938154e2697694f41592c2e48459287debe4bf.png", - "aggregators": ["CoinGecko", "Rubic", "Rango", "Ondo"], - "occurrences": 4, - "rwaData": { - "market": { - "nextOpen": "2026-05-18T20:01:00.000Z", - "nextClose": "2026-05-18T19:59:00.000Z" - }, - "nextPause": { - "start": null, - "end": null - }, - "ticker": "ENPH", - "instrumentType": "stock" - } - }, - "0x92d504158a8dc69de989db5ede3230d958fb8630": { - "address": "0x92d504158a8dc69de989db5ede3230d958fb8630", - "symbol": "EXODON", - "decimals": 18, - "name": "Exodus Movement (Ondo Tokenized)", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x92d504158a8dc69de989db5ede3230d958fb8630.png", - "aggregators": ["CoinGecko", "Rubic", "Rango", "Ondo"], - "occurrences": 4, - "rwaData": { - "market": { - "nextOpen": "2026-05-19T13:31:00.000Z", - "nextClose": "2026-05-18T19:59:00.000Z" - }, - "nextPause": { - "start": null, - "end": null - }, - "ticker": "EXOD", - "instrumentType": "stock" - } - }, - "0x54b92fd77229269ff6484942c123cca72f2d6fec": { - "address": "0x54b92fd77229269ff6484942c123cca72f2d6fec", - "symbol": "FSOLON", - "decimals": 18, - "name": "Fidelity Solana Fund (Ondo Tokenized)", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x54b92fd77229269ff6484942c123cca72f2d6fec.png", - "aggregators": ["CoinGecko", "Rubic", "Rango", "Ondo"], - "occurrences": 4, - "rwaData": { - "market": { - "nextOpen": "2026-05-18T20:01:00.000Z", - "nextClose": "2026-05-18T19:59:00.000Z" - }, - "nextPause": { - "start": null, - "end": null - }, - "ticker": "FSOL", - "instrumentType": "stock" - } - }, - "0xdcd4536508060dab8f43c334b3a6c72c39528da5": { - "address": "0xdcd4536508060dab8f43c334b3a6c72c39528da5", - "symbol": "CIBRON", - "decimals": 18, - "name": "First Trust NASDAQ Cybersecurity ETF (Ondo Tokenized)", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xdcd4536508060dab8f43c334b3a6c72c39528da5.png", - "aggregators": ["CoinGecko", "Rubic", "Rango", "Ondo"], - "occurrences": 4, - "rwaData": { - "market": { - "nextOpen": "2026-05-19T00:05:00.000Z", - "nextClose": "2026-05-18T19:59:00.000Z" - }, - "nextPause": { - "start": null, - "end": null - }, - "ticker": "CIBR", - "instrumentType": "stock" - } - }, - "0x5e24db6de4c21e2c8f9e81bacfcedfbac2dee4aa": { - "address": "0x5e24db6de4c21e2c8f9e81bacfcedfbac2dee4aa", - "symbol": "INCEON", - "decimals": 18, - "name": "Franklin Income Equity Focus ETF (Ondo Tokenized)", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x5e24db6de4c21e2c8f9e81bacfcedfbac2dee4aa.png", - "aggregators": ["CoinGecko", "Rubic", "Rango", "Ondo"], - "occurrences": 4, - "rwaData": { - "market": { - "nextOpen": "2026-05-19T13:31:00.000Z", - "nextClose": "2026-05-18T19:59:00.000Z" - }, - "nextPause": { - "start": null, - "end": null - }, - "ticker": "INCE", - "instrumentType": "stock" - } - }, - "0x4d3442d884202584f1729bca20db05472b886b52": { - "address": "0x4d3442d884202584f1729bca20db05472b886b52", - "symbol": "NOCON", - "decimals": 18, - "name": "Northrop Grumman (Ondo Tokenized)", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x4d3442d884202584f1729bca20db05472b886b52.png", - "aggregators": ["CoinGecko", "Rubic", "Rango", "Ondo"], - "occurrences": 4, - "rwaData": { - "market": { - "nextOpen": "2026-05-18T20:01:00.000Z", - "nextClose": "2026-05-18T19:59:00.000Z" - }, - "nextPause": { - "start": null, - "end": null - }, - "ticker": "NOC", - "instrumentType": "stock" - } - }, - "0x82e07c1017032cfd889b1ca81ebe722c4d4de825": { - "address": "0x82e07c1017032cfd889b1ca81ebe722c4d4de825", - "symbol": "QUBTON", - "decimals": 18, - "name": "Quantum Computing (Ondo Tokenized)", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x82e07c1017032cfd889b1ca81ebe722c4d4de825.png", - "aggregators": ["CoinGecko", "Rubic", "Rango", "Ondo"], - "occurrences": 4, - "rwaData": { - "market": { - "nextOpen": "2026-05-19T00:05:00.000Z", - "nextClose": "2026-05-18T19:59:00.000Z" - }, - "nextPause": { - "start": null, - "end": null - }, - "ticker": "QUBT", - "instrumentType": "stock" - } - }, - "0x23e39d94807a8bb7e3f8294b4911d04ee26dce39": { - "address": "0x23e39d94807a8bb7e3f8294b4911d04ee26dce39", - "symbol": "RDWON", - "decimals": 18, - "name": "Redwire (Ondo Tokenized)", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x23e39d94807a8bb7e3f8294b4911d04ee26dce39.png", - "aggregators": ["CoinGecko", "Rubic", "Rango", "Ondo"], - "occurrences": 4, - "rwaData": { - "market": { - "nextOpen": "2026-05-18T20:01:00.000Z", - "nextClose": "2026-05-18T19:59:00.000Z" - }, - "nextPause": { - "start": null, - "end": null - }, - "ticker": "RDW", - "instrumentType": "stock" - } - }, - "0x8755c5c39b1aa9053a83ac731242a2cf4d04b0fe": { - "address": "0x8755c5c39b1aa9053a83ac731242a2cf4d04b0fe", - "symbol": "SEDGON", - "decimals": 18, - "name": "SolarEdge Technologies (Ondo Tokenized)", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x8755c5c39b1aa9053a83ac731242a2cf4d04b0fe.png", - "aggregators": ["CoinGecko", "Rubic", "Rango", "Ondo"], - "occurrences": 4, - "rwaData": { - "market": { - "nextOpen": "2026-05-19T13:31:00.000Z", - "nextClose": "2026-05-18T19:59:00.000Z" - }, - "nextPause": { - "start": null, - "end": null - }, - "ticker": "SEDG", - "instrumentType": "stock" - } - }, - "0xf15b8f7465b92799f6ee440f86b3cab5a4dbc65a": { - "address": "0xf15b8f7465b92799f6ee440f86b3cab5a4dbc65a", - "symbol": "SCCOON", - "decimals": 18, - "name": "Southern Copper (Ondo Tokenized)", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xf15b8f7465b92799f6ee440f86b3cab5a4dbc65a.png", - "aggregators": ["CoinGecko", "Rubic", "Rango", "Ondo"], - "occurrences": 4, - "rwaData": { - "market": { - "nextOpen": "2026-05-18T20:01:00.000Z", - "nextClose": "2026-05-18T19:59:00.000Z" - }, - "nextPause": { - "start": null, - "end": null - }, - "ticker": "SCCO", - "instrumentType": "stock" - } - }, - "0xfe9aa194e3c4604f3872f220eb41c33a287fcd90": { - "address": "0xfe9aa194e3c4604f3872f220eb41c33a287fcd90", - "symbol": "UNPON", - "decimals": 18, - "name": "Union Pacific Corporation (Ondo Tokenized)", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xfe9aa194e3c4604f3872f220eb41c33a287fcd90.png", - "aggregators": ["CoinGecko", "Rubic", "Rango", "Ondo"], - "occurrences": 4, - "rwaData": { - "market": { - "nextOpen": "2026-05-18T20:01:00.000Z", - "nextClose": "2026-05-18T19:59:00.000Z" - }, - "nextPause": { - "start": "2026-05-28T23:52:00.000Z", - "end": "2026-05-29T00:12:00.000Z" - }, - "ticker": "UNP", - "instrumentType": "stock" - } - }, - "0x31d6011023d6c7695efc29bb016830f3f36de40a": { - "address": "0x31d6011023d6c7695efc29bb016830f3f36de40a", - "symbol": "OIHON", - "decimals": 18, - "name": "VanEck Oil Services ETF (Ondo Tokenized)", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x31d6011023d6c7695efc29bb016830f3f36de40a.png", - "aggregators": ["CoinGecko", "Rubic", "Rango", "Ondo"], - "occurrences": 4, - "rwaData": { - "market": { - "nextOpen": "2026-05-18T20:01:00.000Z", - "nextClose": "2026-05-18T19:59:00.000Z" - }, - "nextPause": { - "start": null, - "end": null - }, - "ticker": "OIH", - "instrumentType": "stock" - } - }, - "0x3ec23f52f6573fc0587a0631dd8c3b107f6bcb35": { - "address": "0x3ec23f52f6573fc0587a0631dd8c3b107f6bcb35", - "symbol": "PPLTON", - "decimals": 18, - "name": "abrdn Physical Platinum Shares ETF (Ondo Tokenized)", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x3ec23f52f6573fc0587a0631dd8c3b107f6bcb35.png", - "aggregators": ["CoinGecko", "Rubic", "Rango", "Ondo"], - "occurrences": 4, - "rwaData": { - "market": { - "nextOpen": "2026-05-18T20:01:00.000Z", - "nextClose": "2026-05-18T19:59:00.000Z" - }, - "nextPause": { - "start": "2026-05-17T23:50:00.000Z", - "end": "2026-05-18T17:00:00.000Z" - }, - "ticker": "PPLT", - "instrumentType": "stock" - } - }, - "0x45abf29515bc23f8c0ed2a06584444ce473a75fb": { - "address": "0x45abf29515bc23f8c0ed2a06584444ce473a75fb", - "symbol": "ASTSON", - "decimals": 18, - "name": "AST SpaceMobile (Ondo Tokenized)", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x45abf29515bc23f8c0ed2a06584444ce473a75fb.png", - "aggregators": ["CoinGecko", "Rubic", "Rango", "Ondo"], - "occurrences": 4, - "rwaData": { - "market": { - "nextOpen": "2026-05-18T20:01:00.000Z", - "nextClose": "2026-05-18T19:59:00.000Z" - }, - "nextPause": { - "start": null, - "end": null - }, - "ticker": "ASTS", - "instrumentType": "stock" - } - }, - "0x812fc2943371c952c6c8daf99fe665eb0e40cd27": { - "address": "0x812fc2943371c952c6c8daf99fe665eb0e40cd27", - "symbol": "CAPRON", - "decimals": 18, - "name": "Capricor Therapeutics (Ondo Tokenized)", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x812fc2943371c952c6c8daf99fe665eb0e40cd27.png", - "aggregators": ["CoinGecko", "Rubic", "Rango", "Ondo"], - "occurrences": 4, - "rwaData": { - "market": { - "nextOpen": "2026-05-19T13:31:00.000Z", - "nextClose": "2026-05-18T19:59:00.000Z" - }, - "nextPause": { - "start": null, - "end": null - }, - "ticker": "CAPR", - "instrumentType": "stock" - } - }, - "0x240eb4859b4537d250cf784cc758c404da5fe4bd": { - "address": "0x240eb4859b4537d250cf784cc758c404da5fe4bd", - "symbol": "FLHYON", - "decimals": 18, - "name": "Franklin High Yield Corporate ETF (Ondo Tokenized)", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x240eb4859b4537d250cf784cc758c404da5fe4bd.png", - "aggregators": ["CoinGecko", "Rubic", "Rango", "Ondo"], - "occurrences": 4, - "rwaData": { - "market": { - "nextOpen": "2026-05-19T13:31:00.000Z", - "nextClose": "2026-05-18T19:59:00.000Z" - }, - "nextPause": { - "start": null, - "end": null - }, - "ticker": "FLHY", - "instrumentType": "stock" - } - }, - "0x48187890d16aee64798e02c5bed510f4db5694a9": { - "address": "0x48187890d16aee64798e02c5bed510f4db5694a9", - "symbol": "FLQLON", - "decimals": 18, - "name": "Franklin US Large Cap Multifactor Index ETF (Ondo Tokenized)", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x48187890d16aee64798e02c5bed510f4db5694a9.png", - "aggregators": ["CoinGecko", "Rubic", "Rango", "Ondo"], - "occurrences": 4, - "rwaData": { - "market": { - "nextOpen": "2026-05-19T13:31:00.000Z", - "nextClose": "2026-05-18T19:59:00.000Z" - }, - "nextPause": { - "start": null, - "end": null - }, - "ticker": "FLQL", - "instrumentType": "stock" - } - }, - "0xe3b17e6d290a0f28bd32af4064637057627004d5": { - "address": "0xe3b17e6d290a0f28bd32af4064637057627004d5", - "symbol": "FCXON", - "decimals": 18, - "name": "Freeport-McMoRan (Ondo Tokenized)", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xe3b17e6d290a0f28bd32af4064637057627004d5.png", - "aggregators": ["CoinGecko", "Rubic", "Rango", "Ondo"], - "occurrences": 4, - "rwaData": { - "market": { - "nextOpen": "2026-05-18T20:01:00.000Z", - "nextClose": "2026-05-18T19:59:00.000Z" - }, - "nextPause": { - "start": null, - "end": null - }, - "ticker": "FCX", - "instrumentType": "stock" - } - }, - "0xf98b89825233808cd37706a53d2b4ae3e359d442": { - "address": "0xf98b89825233808cd37706a53d2b4ae3e359d442", - "symbol": "GLXYON", - "decimals": 18, - "name": "Galaxy Digital (Ondo Tokenized)", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xf98b89825233808cd37706a53d2b4ae3e359d442.png", - "aggregators": ["CoinGecko", "Rubic", "Rango", "Ondo"], - "occurrences": 4, - "rwaData": { - "market": { - "nextOpen": "2026-05-19T00:05:00.000Z", - "nextClose": "2026-05-18T19:59:00.000Z" - }, - "nextPause": { - "start": null, - "end": null - }, - "ticker": "GLXY", - "instrumentType": "stock" - } - }, - "0xc1fdbed7dac39cae2ccc0748f7a80dc446f6a594": { - "address": "0xc1fdbed7dac39cae2ccc0748f7a80dc446f6a594", - "symbol": "TRYB", - "decimals": 6, - "name": "BiLira", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xc1fdbed7dac39cae2ccc0748f7a80dc446f6a594.png", - "aggregators": [ - "PancakeCoinMarketCap", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 4 - }, - "0x1f534d2b1ee2933f1fdf8e4b63a44b2249d77eaf": { - "address": "0x1f534d2b1ee2933f1fdf8e4b63a44b2249d77eaf", - "symbol": "ZERO", - "decimals": 18, - "name": "0.exchange", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x1f534d2b1ee2933f1fdf8e4b63a44b2249d77eaf.png", - "aggregators": [ - "PancakeCoinMarketCap", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 4 - }, - "0xa5342d72d04c133180f376753f90a4b2eee29bb3": { - "address": "0xa5342d72d04c133180f376753f90a4b2eee29bb3", - "symbol": "DMC", - "decimals": 18, - "name": "Decentralized Mining Exchange", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xa5342d72d04c133180f376753f90a4b2eee29bb3.png", - "aggregators": ["PancakeCoinGecko", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0xd38c1b7b95d359978996e01b8a85286f65b3c011": { - "address": "0xd38c1b7b95d359978996e01b8a85286f65b3c011", - "symbol": "RAGE", - "decimals": 18, - "name": "Rage.Fan", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xd38c1b7b95d359978996e01b8a85286f65b3c011.png", - "aggregators": [ - "PancakeCoinMarketCap", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 4 - }, - "0x8038b1f3eb4f70436569618530ac96b439d67bae": { - "address": "0x8038b1f3eb4f70436569618530ac96b439d67bae", - "symbol": "MCT", - "decimals": 18, - "name": "MicroTuber", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x8038b1f3eb4f70436569618530ac96b439d67bae.png", - "aggregators": [ - "PancakeCoinMarketCap", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 4 - }, - "0x1b41a1ba7722e6431b1a782327dbe466fe1ee9f9": { - "address": "0x1b41a1ba7722e6431b1a782327dbe466fe1ee9f9", - "symbol": "KFT", - "decimals": 18, - "name": "Knit Finance", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x1b41a1ba7722e6431b1a782327dbe466fe1ee9f9.png", - "aggregators": [ - "PancakeCoinMarketCap", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 4 - }, - "0x23b8683ff98f9e4781552dfe6f12aa32814924e8": { - "address": "0x23b8683ff98f9e4781552dfe6f12aa32814924e8", - "symbol": "JEUR", - "decimals": 18, - "name": "Jarvis Synthetic Euro", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x23b8683ff98f9e4781552dfe6f12aa32814924e8.png", - "aggregators": [ - "PancakeCoinMarketCap", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 4 - }, - "0xa8cd6e4bf45724d3ac27f9e31e47ba4e399a7b52": { - "address": "0xa8cd6e4bf45724d3ac27f9e31e47ba4e399a7b52", - "symbol": "TAROT", - "decimals": 18, - "name": "Tarot V1", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xa8cd6e4bf45724d3ac27f9e31e47ba4e399a7b52.png", - "aggregators": ["PancakeCoinGecko", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0xe7f72bc0252ca7b16dbb72eeee1afcdb2429f2dd": { - "address": "0xe7f72bc0252ca7b16dbb72eeee1afcdb2429f2dd", - "symbol": "NFTL", - "decimals": 18, - "name": "NFTLaunch", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xe7f72bc0252ca7b16dbb72eeee1afcdb2429f2dd.png", - "aggregators": [ - "PancakeCoinMarketCap", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 4 - }, - "0x82190d28e710ea9c029d009fad951c6f1d803bb3": { - "address": "0x82190d28e710ea9c029d009fad951c6f1d803bb3", - "symbol": "LIFE", - "decimals": 18, - "name": "Life Crypto", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x82190d28e710ea9c029d009fad951c6f1d803bb3.png", - "aggregators": [ - "PancakeCoinMarketCap", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 4 - }, - "0x43f5b29d63cedc5a7c1724dbb1d698fde05ada21": { - "address": "0x43f5b29d63cedc5a7c1724dbb1d698fde05ada21", - "symbol": "FODL", - "decimals": 18, - "name": "Fodl Finance", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x43f5b29d63cedc5a7c1724dbb1d698fde05ada21.png", - "aggregators": [ - "PancakeCoinMarketCap", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 4 - }, - "0xaf6162dc717cfc8818efc8d6f46a41cf7042fcba": { - "address": "0xaf6162dc717cfc8818efc8d6f46a41cf7042fcba", - "symbol": "USV", - "decimals": 9, - "name": "Atlas USV", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xaf6162dc717cfc8818efc8d6f46a41cf7042fcba.png", - "aggregators": [ - "PancakeCoinMarketCap", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 4 - }, - "0xe336a772532650bc82828e9620dd0d5a3b78bfe8": { - "address": "0xe336a772532650bc82828e9620dd0d5a3b78bfe8", - "symbol": "DGMV", - "decimals": 18, - "name": "DigiMetaverse", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xe336a772532650bc82828e9620dd0d5a3b78bfe8.png", - "aggregators": [ - "PancakeCoinMarketCap", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 4 - }, - "0x8ae619d633cce175a2fbcfa1cea119ddc80f1342": { - "address": "0x8ae619d633cce175a2fbcfa1cea119ddc80f1342", - "symbol": "POLYPAD", - "decimals": 18, - "name": "PolyPad", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x8ae619d633cce175a2fbcfa1cea119ddc80f1342.png", - "aggregators": [ - "PancakeCoinMarketCap", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 4 - }, - "0xd1738eb733a636d1b8665f48bc8a24da889c2562": { - "address": "0xd1738eb733a636d1b8665f48bc8a24da889c2562", - "symbol": "FPIS", - "decimals": 18, - "name": "Frax Price Index Share", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xd1738eb733a636d1b8665f48bc8a24da889c2562.png", - "aggregators": [ - "PancakeCoinMarketCap", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 4 - }, - "0xb7bda6a89e724f63572ce68fddc1a6d1d5d24bcf": { - "address": "0xb7bda6a89e724f63572ce68fddc1a6d1d5d24bcf", - "symbol": "OGZ", - "decimals": 18, - "name": "OGzClub", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xb7bda6a89e724f63572ce68fddc1a6d1d5d24bcf.png", - "aggregators": [ - "PancakeCoinMarketCap", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 4 - }, - "0x71cb7ef7980c44dfbbe5744973c0587764116d26": { - "address": "0x71cb7ef7980c44dfbbe5744973c0587764116d26", - "symbol": "WELLE", - "decimals": 18, - "name": "Welle", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x71cb7ef7980c44dfbbe5744973c0587764116d26.png", - "aggregators": ["PancakeCoinGecko", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0x34dce75a3d1910cc9d188aa5a75fb9addcae0fcc": { - "address": "0x34dce75a3d1910cc9d188aa5a75fb9addcae0fcc", - "symbol": "XV", - "decimals": 18, - "name": "XV", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x34dce75a3d1910cc9d188aa5a75fb9addcae0fcc.png", - "aggregators": [ - "PancakeCoinMarketCap", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 4 - }, - "0xe406281569308b8dced15e95894052272900e332": { - "address": "0xe406281569308b8dced15e95894052272900e332", - "symbol": "$SKOL", - "decimals": 18, - "name": "Skol", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xe406281569308b8dced15e95894052272900e332.png", - "aggregators": ["PancakeCoinGecko", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0xc7806943663158d68740a14ab0b270bd60bde87d": { - "address": "0xc7806943663158d68740a14ab0b270bd60bde87d", - "symbol": "URAON", - "decimals": 18, - "name": "Global X Uranium ETF (Ondo Tokenized)", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xc7806943663158d68740a14ab0b270bd60bde87d.png", - "aggregators": ["CoinGecko", "Rubic", "Rango", "Ondo"], - "occurrences": 4, - "rwaData": { - "market": { - "nextOpen": "2026-05-18T20:01:00.000Z", - "nextClose": "2026-05-18T19:59:00.000Z" - }, - "nextPause": { - "start": null, - "end": null - }, - "ticker": "URA", - "instrumentType": "stock" - } - }, - "0x6f28cb07790c1049ecd7482d09fd13b977b47201": { - "address": "0x6f28cb07790c1049ecd7482d09fd13b977b47201", - "symbol": "PAVEON", - "decimals": 18, - "name": "Global X US Infrastructure Development ETF (Ondo Tokenized)", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x6f28cb07790c1049ecd7482d09fd13b977b47201.png", - "aggregators": ["CoinGecko", "Rubic", "Rango", "Ondo"], - "occurrences": 4, - "rwaData": { - "market": { - "nextOpen": "2026-05-18T20:01:00.000Z", - "nextClose": "2026-05-18T19:59:00.000Z" - }, - "nextPause": { - "start": null, - "end": null - }, - "ticker": "PAVE", - "instrumentType": "stock" - } - }, - "0xa3b7b7cfeb023a6c4f444f5ca9a3fc85809ece15": { - "address": "0xa3b7b7cfeb023a6c4f444f5ca9a3fc85809ece15", - "symbol": "LUNRON", - "decimals": 18, - "name": "Intuitive Machines (Ondo Tokenized)", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xa3b7b7cfeb023a6c4f444f5ca9a3fc85809ece15.png", - "aggregators": ["CoinGecko", "Rubic", "Rango", "Ondo"], - "occurrences": 4, - "rwaData": { - "market": { - "nextOpen": "2026-05-18T20:01:00.000Z", - "nextClose": "2026-05-18T19:59:00.000Z" - }, - "nextPause": { - "start": null, - "end": null - }, - "ticker": "LUNR", - "instrumentType": "stock" - } - }, - "0x68b07cef227cea1b2b6683921c8c825cd5c69ec7": { - "address": "0x68b07cef227cea1b2b6683921c8c825cd5c69ec7", - "symbol": "IBITON", - "decimals": 18, - "name": "iShares Bitcoin Trust (Ondo Tokenized)", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x68b07cef227cea1b2b6683921c8c825cd5c69ec7.png", - "aggregators": ["CoinGecko", "Rubic", "Rango", "Ondo"], - "occurrences": 4, - "rwaData": { - "market": { - "nextOpen": "2026-05-18T20:01:00.000Z", - "nextClose": "2026-05-18T19:59:00.000Z" - }, - "nextPause": { - "start": null, - "end": null - }, - "ticker": "IBIT", - "instrumentType": "stock" - } - }, - "0x9b8e987e6fec8cf1380c4dca7071e2c7853aeea1": { - "address": "0x9b8e987e6fec8cf1380c4dca7071e2c7853aeea1", - "symbol": "FXION", - "decimals": 18, - "name": "iShares China Large-Cap ETF (Ondo Tokenized)", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x9b8e987e6fec8cf1380c4dca7071e2c7853aeea1.png", - "aggregators": ["CoinGecko", "Rubic", "Rango", "Ondo"], - "occurrences": 4, - "rwaData": { - "market": { - "nextOpen": "2026-05-18T20:01:00.000Z", - "nextClose": "2026-05-18T19:59:00.000Z" - }, - "nextPause": { - "start": null, - "end": null - }, - "ticker": "FXI", - "instrumentType": "stock" - } - }, - "0x551f8db0da800c910e12cf991eac306714481685": { - "address": "0x551f8db0da800c910e12cf991eac306714481685", - "symbol": "ECHON", - "decimals": 18, - "name": "iShares MSCI Chile ETF (Ondo Tokenized)", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x551f8db0da800c910e12cf991eac306714481685.png", - "aggregators": ["CoinGecko", "Rubic", "Rango", "Ondo"], - "occurrences": 4, - "rwaData": { - "market": { - "nextOpen": "2026-05-19T08:01:00.000Z", - "nextClose": "2026-05-18T19:59:00.000Z" - }, - "nextPause": { - "start": null, - "end": null - }, - "ticker": "ECH", - "instrumentType": "stock" - } - }, - "0x88b90f45bd6a4f97f7d85d280ed64a40880e4935": { - "address": "0x88b90f45bd6a4f97f7d85d280ed64a40880e4935", - "symbol": "ITAON", - "decimals": 18, - "name": "iShares US Aerospace and Defense ETF (Ondo Tokenized)", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x88b90f45bd6a4f97f7d85d280ed64a40880e4935.png", - "aggregators": ["CoinGecko", "Rubic", "Rango", "Ondo"], - "occurrences": 4, - "rwaData": { - "market": { - "nextOpen": "2026-05-18T20:01:00.000Z", - "nextClose": "2026-05-18T19:59:00.000Z" - }, - "nextPause": { - "start": null, - "end": null - }, - "ticker": "ITA", - "instrumentType": "stock" - } - }, - "0xee268780473e7a0e47bac41547c6e01512555a16": { - "address": "0xee268780473e7a0e47bac41547c6e01512555a16", - "symbol": "NBISON", - "decimals": 18, - "name": "Nebius Group (Ondo Tokenized)", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xee268780473e7a0e47bac41547c6e01512555a16.png", - "aggregators": ["CoinGecko", "Rubic", "Rango", "Ondo"], - "occurrences": 4, - "rwaData": { - "market": { - "nextOpen": "2026-05-18T20:01:00.000Z", - "nextClose": "2026-05-18T19:59:00.000Z" - }, - "nextPause": { - "start": null, - "end": null - }, - "ticker": "NBIS", - "instrumentType": "stock" - } - }, - "0x5e63232993789601ce362e0240a299c1dfcbfbec": { - "address": "0x5e63232993789601ce362e0240a299c1dfcbfbec", - "symbol": "NEMON", - "decimals": 18, - "name": "Newmont (Ondo Tokenized)", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x5e63232993789601ce362e0240a299c1dfcbfbec.png", - "aggregators": ["CoinGecko", "Rubic", "Rango", "Ondo"], - "occurrences": 4, - "rwaData": { - "market": { - "nextOpen": "2026-05-18T20:01:00.000Z", - "nextClose": "2026-05-18T19:59:00.000Z" - }, - "nextPause": { - "start": "2026-05-26T23:52:00.000Z", - "end": "2026-05-27T00:12:00.000Z" - }, - "ticker": "NEM", - "instrumentType": "stock" - } - }, - "0xb4d695569236273745b4cd54b539b1b9cc1513af": { - "address": "0xb4d695569236273745b4cd54b539b1b9cc1513af", - "symbol": "RKLBON", - "decimals": 18, - "name": "Rocket Lab (Ondo Tokenized)", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xb4d695569236273745b4cd54b539b1b9cc1513af.png", - "aggregators": ["CoinGecko", "Rubic", "Rango", "Ondo"], - "occurrences": 4, - "rwaData": { - "market": { - "nextOpen": "2026-05-18T20:01:00.000Z", - "nextClose": "2026-05-18T19:59:00.000Z" - }, - "nextPause": { - "start": null, - "end": null - }, - "ticker": "RKLB", - "instrumentType": "stock" - } - }, - "0x966ebcba3c51e81f5cf159a1eabefd2327ab5e8d": { - "address": "0x966ebcba3c51e81f5cf159a1eabefd2327ab5e8d", - "symbol": "STXON", - "decimals": 18, - "name": "Seagate (Ondo Tokenized)", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x966ebcba3c51e81f5cf159a1eabefd2327ab5e8d.png", - "aggregators": ["CoinGecko", "Rubic", "Rango", "Ondo"], - "occurrences": 4, - "rwaData": { - "market": { - "nextOpen": "2026-05-18T20:01:00.000Z", - "nextClose": "2026-05-18T19:59:00.000Z" - }, - "nextPause": { - "start": "2026-06-23T23:52:00.000Z", - "end": "2026-06-24T00:12:00.000Z" - }, - "ticker": "STX", - "instrumentType": "stock" - } - }, - "0xa5351c9bf08055e03642b6b8649a0f7e895501bf": { - "address": "0xa5351c9bf08055e03642b6b8649a0f7e895501bf", - "symbol": "UNGON", - "decimals": 18, - "name": "US Natural Gas Fund (Ondo Tokenized)", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xa5351c9bf08055e03642b6b8649a0f7e895501bf.png", - "aggregators": ["CoinGecko", "Rubic", "Rango", "Ondo"], - "occurrences": 4, - "rwaData": { - "market": { - "nextOpen": "2026-05-18T20:01:00.000Z", - "nextClose": "2026-05-18T19:59:00.000Z" - }, - "nextPause": { - "start": null, - "end": null - }, - "ticker": "UNG", - "instrumentType": "stock" - } - }, - "0x8c9979dc208f74a5602c38691aa920f121e2f863": { - "address": "0x8c9979dc208f74a5602c38691aa920f121e2f863", - "symbol": "VRTXON", - "decimals": 18, - "name": "Vertex Pharmaceuticals (Ondo Tokenized)", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x8c9979dc208f74a5602c38691aa920f121e2f863.png", - "aggregators": ["CoinGecko", "Rubic", "Rango", "Ondo"], - "occurrences": 4, - "rwaData": { - "market": { - "nextOpen": "2026-05-18T20:01:00.000Z", - "nextClose": "2026-05-18T19:59:00.000Z" - }, - "nextPause": { - "start": null, - "end": null - }, - "ticker": "VRTX", - "instrumentType": "stock" - } - }, - "0x1d2eaaf0ae00382893aa4318bd88d1cd0e9b858a": { - "address": "0x1d2eaaf0ae00382893aa4318bd88d1cd0e9b858a", - "symbol": "VFSON", - "decimals": 18, - "name": "VinFast Auto (Ondo Tokenized)", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x1d2eaaf0ae00382893aa4318bd88d1cd0e9b858a.png", - "aggregators": ["CoinGecko", "Rubic", "Rango", "Ondo"], - "occurrences": 4, - "rwaData": { - "market": { - "nextOpen": "2026-05-19T13:31:00.000Z", - "nextClose": "2026-05-18T19:59:00.000Z" - }, - "nextPause": { - "start": "2026-06-08T09:00:00.000Z", - "end": "2026-06-08T23:30:00.000Z" - }, - "ticker": "VFS", - "instrumentType": "stock" - } - }, - "0xce0466bae0e867239719dc386ca84b1f3efe6914": { - "address": "0xce0466bae0e867239719dc386ca84b1f3efe6914", - "symbol": "WMON", - "decimals": 18, - "name": "Waste Management (Ondo Tokenized)", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xce0466bae0e867239719dc386ca84b1f3efe6914.png", - "aggregators": ["CoinGecko", "Rubic", "Rango", "Ondo"], - "occurrences": 4, - "rwaData": { - "market": { - "nextOpen": "2026-05-18T20:01:00.000Z", - "nextClose": "2026-05-18T19:59:00.000Z" - }, - "nextPause": { - "start": "2026-06-04T23:52:00.000Z", - "end": "2026-06-05T00:12:00.000Z" - }, - "ticker": "WM", - "instrumentType": "stock" - } - }, - "0xceb29848d04ad3cb46e1fe8e45b82ffac39d797d": { - "address": "0xceb29848d04ad3cb46e1fe8e45b82ffac39d797d", - "symbol": "WDCON", - "decimals": 18, - "name": "Western Digital (Ondo Tokenized)", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xceb29848d04ad3cb46e1fe8e45b82ffac39d797d.png", - "aggregators": ["CoinGecko", "Rubic", "Rango", "Ondo"], - "occurrences": 4, - "rwaData": { - "market": { - "nextOpen": "2026-05-18T20:01:00.000Z", - "nextClose": "2026-05-18T19:59:00.000Z" - }, - "nextPause": { - "start": "2026-06-04T23:52:00.000Z", - "end": "2026-06-05T00:12:00.000Z" - }, - "ticker": "WDC", - "instrumentType": "stock" - } - }, - "0x15580092796f69825cff4738cac55d05d41eaa42": { - "address": "0x15580092796f69825cff4738cac55d05d41eaa42", - "symbol": "GLTRON", - "decimals": 18, - "name": "abrdn Physical Precious Metals Basket Shares ETF (Ondo Tokenized)", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x15580092796f69825cff4738cac55d05d41eaa42.png", - "aggregators": ["CoinGecko", "Rubic", "Rango", "Ondo"], - "occurrences": 4, - "rwaData": { - "market": { - "nextOpen": "2026-05-18T20:01:00.000Z", - "nextClose": "2026-05-18T19:59:00.000Z" - }, - "nextPause": { - "start": null, - "end": null - }, - "ticker": "GLTR", - "instrumentType": "stock" - } - }, - "0x18de24acb876c0b8392d9c55583bb21c0355980b": { - "address": "0x18de24acb876c0b8392d9c55583bb21c0355980b", - "symbol": "APLDON", - "decimals": 18, - "name": "Applied Digital (Ondo Tokenized)", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x18de24acb876c0b8392d9c55583bb21c0355980b.png", - "aggregators": ["CoinGecko", "Rubic", "Rango", "Ondo"], - "occurrences": 4, - "rwaData": { - "market": { - "nextOpen": "2026-05-18T20:01:00.000Z", - "nextClose": "2026-05-18T19:59:00.000Z" - }, - "nextPause": { - "start": null, - "end": null - }, - "ticker": "APLD", - "instrumentType": "stock" - } - }, - "0x5a9d924fc336a5ec8cf3b1909aa660533b50b015": { - "address": "0x5a9d924fc336a5ec8cf3b1909aa660533b50b015", - "symbol": "ENLVON", - "decimals": 18, - "name": "Enlivex Therapeutics (Ondo Tokenized)", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x5a9d924fc336a5ec8cf3b1909aa660533b50b015.png", - "aggregators": ["CoinGecko", "Rubic", "Rango", "Ondo"], - "occurrences": 4, - "rwaData": { - "market": { - "nextOpen": "2026-05-19T13:31:00.000Z", - "nextClose": "2026-05-18T19:59:00.000Z" - }, - "nextPause": { - "start": "2026-05-29T09:00:00.000Z", - "end": "2026-05-29T23:30:00.000Z" - }, - "ticker": "ENLV", - "instrumentType": "stock" - } - }, - "0xea130432a9fee9ca1a7eda84028650d38bd0e232": { - "address": "0xea130432a9fee9ca1a7eda84028650d38bd0e232", - "symbol": "FFOGON", - "decimals": 18, - "name": "Franklin Focused Growth ETF (Ondo Tokenized)", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xea130432a9fee9ca1a7eda84028650d38bd0e232.png", - "aggregators": ["CoinGecko", "Rubic", "Rango", "Ondo"], - "occurrences": 4, - "rwaData": { - "market": { - "nextOpen": "2026-05-19T13:31:00.000Z", - "nextClose": "2026-05-18T19:59:00.000Z" - }, - "nextPause": { - "start": null, - "end": null - }, - "ticker": "FFOG", - "instrumentType": "stock" - } - }, - "0xee0d57462f20434030b8262204c00c0ea0399c41": { - "address": "0xee0d57462f20434030b8262204c00c0ea0399c41", - "symbol": "FGDLON", - "decimals": 18, - "name": "Franklin Responsibly Sourced Gold ETF (Ondo Tokenized)", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xee0d57462f20434030b8262204c00c0ea0399c41.png", - "aggregators": ["CoinGecko", "Rubic", "Rango", "Ondo"], - "occurrences": 4, - "rwaData": { - "market": { - "nextOpen": "2026-05-19T08:01:00.000Z", - "nextClose": "2026-05-18T19:59:00.000Z" - }, - "nextPause": { - "start": null, - "end": null - }, - "ticker": "FGDL", - "instrumentType": "stock" - } - }, - "0x2aea1d415d45ccf3eabe565d45dcaf4ea2035b9c": { - "address": "0x2aea1d415d45ccf3eabe565d45dcaf4ea2035b9c", - "symbol": "GEVON", - "decimals": 18, - "name": "GE Vernova (Ondo Tokenized)", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x2aea1d415d45ccf3eabe565d45dcaf4ea2035b9c.png", - "aggregators": ["CoinGecko", "Rubic", "Rango", "Ondo"], - "occurrences": 4, - "rwaData": { - "market": { - "nextOpen": "2026-05-18T20:01:00.000Z", - "nextClose": "2026-05-18T19:59:00.000Z" - }, - "nextPause": { - "start": null, - "end": null - }, - "ticker": "GEV", - "instrumentType": "stock" - } - }, - "0xaf6bd11a6f8f9c44b9d18f5fa116e403db599f8e": { - "address": "0xaf6bd11a6f8f9c44b9d18f5fa116e403db599f8e", - "symbol": "ALIX", - "decimals": 18, - "name": "AlinX", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xaf6bd11a6f8f9c44b9d18f5fa116e403db599f8e.png", - "aggregators": ["PancakeTop100", "LiFi", "Rubic"], - "occurrences": 3 - }, - "0x0e8d5504bf54d9e44260f8d153ecd5412130cabb": { - "address": "0x0e8d5504bf54d9e44260f8d153ecd5412130cabb", - "symbol": "UNCL", - "decimals": 18, - "name": "UNCL on xDai on BSC", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x0e8d5504bf54d9e44260f8d153ecd5412130cabb.png", - "aggregators": ["PancakeTop100", "LiFi", "Rubic", "Rango"], - "occurrences": 4 - }, - "0x22a213852cee93eb6d41601133414d180c5684c2": { - "address": "0x22a213852cee93eb6d41601133414d180c5684c2", - "symbol": "0XMR", - "decimals": 18, - "name": "0xMonero", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x22a213852cee93eb6d41601133414d180c5684c2.png", - "aggregators": ["PancakeCoinGecko", "Socket", "Rubic", "Rango"], - "occurrences": 4 - }, - "0xf43c9b40c9361b301019c98fb535affb3ec6c673": { - "address": "0xf43c9b40c9361b301019c98fb535affb3ec6c673", - "symbol": "1MDC", - "decimals": 18, - "name": "1MDC", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xf43c9b40c9361b301019c98fb535affb3ec6c673.png", - "aggregators": [ - "PancakeCoinMarketCap", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 4 - }, - "0x012a6a39eec345a0ea2b994b17875e721d17ee45": { - "address": "0x012a6a39eec345a0ea2b994b17875e721d17ee45", - "symbol": "1RT", - "decimals": 18, - "name": "1Reward Token", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x012a6a39eec345a0ea2b994b17875e721d17ee45.png", - "aggregators": ["PancakeCoinGecko", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0x1a515bf4e35aa2df67109281de6b3b00ec37675e": { - "address": "0x1a515bf4e35aa2df67109281de6b3b00ec37675e", - "symbol": "2GCC", - "decimals": 18, - "name": "2G Carbon Coin", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x1a515bf4e35aa2df67109281de6b3b00ec37675e.png", - "aggregators": [ - "PancakeCoinMarketCap", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 4 - }, - "0x99e6ca7e6c5c5aea22b4a992eb6895bc6d433298": { - "address": "0x99e6ca7e6c5c5aea22b4a992eb6895bc6d433298", - "symbol": "AA", - "decimals": 18, - "name": "ALVA", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x99e6ca7e6c5c5aea22b4a992eb6895bc6d433298.png", - "aggregators": [ - "PancakeCoinMarketCap", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 4 - }, - "0xcb7bf0218ccbf340c6676706c60a41c1e9cbdd44": { - "address": "0xcb7bf0218ccbf340c6676706c60a41c1e9cbdd44", - "symbol": "ACE", - "decimals": 18, - "name": "Apollo Caps", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xcb7bf0218ccbf340c6676706c60a41c1e9cbdd44.png", - "aggregators": [ - "PancakeCoinMarketCap", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 4 - }, - "0xcd392021084683803525fe5e6c00cae9c6be5774": { - "address": "0xcd392021084683803525fe5e6c00cae9c6be5774", - "symbol": "ADON", - "decimals": 18, - "name": "Adonis", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xcd392021084683803525fe5e6c00cae9c6be5774.png", - "aggregators": [ - "PancakeCoinMarketCap", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 4 - }, - "0x36f1f32c728c3f330409ec1f0928fa3ab3c8a76f": { - "address": "0x36f1f32c728c3f330409ec1f0928fa3ab3c8a76f", - "symbol": "ADR", - "decimals": 18, - "name": "Adroverse", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x36f1f32c728c3f330409ec1f0928fa3ab3c8a76f.png", - "aggregators": [ - "PancakeCoinMarketCap", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 4 - }, - "0xc8354507f0361712143efa635cce060788888888": { - "address": "0xc8354507f0361712143efa635cce060788888888", - "symbol": "AI", - "decimals": 18, - "name": "AICoin", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xc8354507f0361712143efa635cce060788888888.png", - "aggregators": [ - "PancakeCoinMarketCap", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 4 - }, - "0x1e30bbee322b3b11c60cb434a47f1605c2a99483": { - "address": "0x1e30bbee322b3b11c60cb434a47f1605c2a99483", - "symbol": "AIE", - "decimals": 18, - "name": "AIEarn", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x1e30bbee322b3b11c60cb434a47f1605c2a99483.png", - "aggregators": [ - "PancakeCoinMarketCap", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 4 - }, - "0x75d6bd84de4cbcb92495204de959f7fea6a3f89a": { - "address": "0x75d6bd84de4cbcb92495204de959f7fea6a3f89a", - "symbol": "AIMX", - "decimals": 18, - "name": "Mind Matrix", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x75d6bd84de4cbcb92495204de959f7fea6a3f89a.png", - "aggregators": [ - "PancakeCoinMarketCap", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 4 - }, - "0x8974769bcfc2715fcabcfe4341ba4fcc804abcd8": { - "address": "0x8974769bcfc2715fcabcfe4341ba4fcc804abcd8", - "symbol": "AIS", - "decimals": 18, - "name": "AI Swap", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x8974769bcfc2715fcabcfe4341ba4fcc804abcd8.png", - "aggregators": ["PancakeCoinMarketCap", "Socket", "Rubic", "Rango"], - "occurrences": 4 - }, - "0x44055f43a0dc22e77c53b16eab04e253158d6b06": { - "address": "0x44055f43a0dc22e77c53b16eab04e253158d6b06", - "symbol": "AIT", - "decimals": 18, - "name": "AI protocol", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x44055f43a0dc22e77c53b16eab04e253158d6b06.png", - "aggregators": ["PancakeCoinGecko", "Socket", "Rubic", "Rango"], - "occurrences": 4 - }, - "0x7c38870e93a1f959cb6c533eb10bbc3e438aac11": { - "address": "0x7c38870e93a1f959cb6c533eb10bbc3e438aac11", - "symbol": "ALM", - "decimals": 18, - "name": "Alium Finance", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x7c38870e93a1f959cb6c533eb10bbc3e438aac11.png", - "aggregators": [ - "PancakeCoinMarketCap", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 4 - }, - "0x9b3a01f8b4abd2e2a74597b21b7c269abf4e9f41": { - "address": "0x9b3a01f8b4abd2e2a74597b21b7c269abf4e9f41", - "symbol": "ALTB", - "decimals": 18, - "name": "Altbase", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x9b3a01f8b4abd2e2a74597b21b7c269abf4e9f41.png", - "aggregators": [ - "PancakeCoinMarketCap", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 4 - }, - "0x8929e9dbd2785e3ba16175e596cdd61520fee0d1": { - "address": "0x8929e9dbd2785e3ba16175e596cdd61520fee0d1", - "symbol": "ALTD", - "decimals": 18, - "name": "Altitude", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x8929e9dbd2785e3ba16175e596cdd61520fee0d1.png", - "aggregators": [ - "PancakeCoinMarketCap", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 4 - }, - "0x4aac18de824ec1b553dbf342829834e4ff3f7a9f": { - "address": "0x4aac18de824ec1b553dbf342829834e4ff3f7a9f", - "symbol": "ANCHOR", - "decimals": 18, - "name": "AnchorSwap", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x4aac18de824ec1b553dbf342829834e4ff3f7a9f.png", - "aggregators": [ - "PancakeCoinMarketCap", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 4 - }, - "0xa7bd657c5838472ddf85ff0797a2e6fce8fd4833": { - "address": "0xa7bd657c5838472ddf85ff0797a2e6fce8fd4833", - "symbol": "ARBI", - "decimals": 18, - "name": "ArbiPad", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xa7bd657c5838472ddf85ff0797a2e6fce8fd4833.png", - "aggregators": [ - "PancakeCoinMarketCap", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 4 - }, - "0x851f7a700c5d67db59612b871338a85526752c25": { - "address": "0x851f7a700c5d67db59612b871338a85526752c25", - "symbol": "ARGON", - "decimals": 18, - "name": "Argon", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x851f7a700c5d67db59612b871338a85526752c25.png", - "aggregators": [ - "PancakeCoinMarketCap", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 4 - }, - "0x315d6f9d775daa04bc9e36100c8a82377846dbc6": { - "address": "0x315d6f9d775daa04bc9e36100c8a82377846dbc6", - "symbol": "ATH", - "decimals": 18, - "name": "Athena DexFi", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x315d6f9d775daa04bc9e36100c8a82377846dbc6.png", - "aggregators": ["PancakeCoinMarketCap", "Socket", "Rubic", "Rango"], - "occurrences": 4 - }, - "0xbf151f63d8d1287db5fc7a3bc104a9c38124cdeb": { - "address": "0xbf151f63d8d1287db5fc7a3bc104a9c38124cdeb", - "symbol": "AVN", - "decimals": 18, - "name": "AVNRich", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xbf151f63d8d1287db5fc7a3bc104a9c38124cdeb.png", - "aggregators": [ - "PancakeCoinMarketCap", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 4 - }, - "0x14ee333538b4621a600f011e508d783ea200d60e": { - "address": "0x14ee333538b4621a600f011e508d783ea200d60e", - "symbol": "AVO", - "decimals": 18, - "name": "AVOCADO BG", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x14ee333538b4621a600f011e508d783ea200d60e.png", - "aggregators": [ - "PancakeCoinMarketCap", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 4 - }, - "0xaed8bd0608ef3cc45290a8d0e4223ef4c92dd3dc": { - "address": "0xaed8bd0608ef3cc45290a8d0e4223ef4c92dd3dc", - "symbol": "AVO", - "decimals": 18, - "name": "Avoteo", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xaed8bd0608ef3cc45290a8d0e4223ef4c92dd3dc.png", - "aggregators": [ - "PancakeCoinMarketCap", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 4 - }, - "0xbb2826ab03b6321e170f0558804f2b6488c98775": { - "address": "0xbb2826ab03b6321e170f0558804f2b6488c98775", - "symbol": "BABYBONK", - "decimals": 9, - "name": "BabyBonk", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xbb2826ab03b6321e170f0558804f2b6488c98775.png", - "aggregators": [ - "PancakeCoinMarketCap", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 4 - }, - "0x258903a8e68d5248de85cf8a0a173d9e046edd98": { - "address": "0x258903a8e68d5248de85cf8a0a173d9e046edd98", - "symbol": "BABYELON", - "decimals": 9, - "name": "Baby Elon", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x258903a8e68d5248de85cf8a0a173d9e046edd98.png", - "aggregators": [ - "PancakeCoinMarketCap", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 4 - }, - "0x88da9901b3a02fe24e498e1ed683d2310383e295": { - "address": "0x88da9901b3a02fe24e498e1ed683d2310383e295", - "symbol": "BABYGROK", - "decimals": 9, - "name": "Baby Grok", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x88da9901b3a02fe24e498e1ed683d2310383e295.png", - "aggregators": [ - "PancakeCoinMarketCap", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 4 - }, - "0x10da043d0b46e43b53b74a88ac60ccc28e2afdf8": { - "address": "0x10da043d0b46e43b53b74a88ac60ccc28e2afdf8", - "symbol": "BAI", - "decimals": 18, - "name": "BlockAI", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x10da043d0b46e43b53b74a88ac60ccc28e2afdf8.png", - "aggregators": [ - "PancakeCoinGecko", - "Socket", - "Rubic", - "Sonarwatch" - ], - "occurrences": 4 - }, - "0x3e92ce6e8929334c54ce759cf6736ea15fbfdc7f": { - "address": "0x3e92ce6e8929334c54ce759cf6736ea15fbfdc7f", - "symbol": "BAKED", - "decimals": 18, - "name": "Baked Beans Token", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x3e92ce6e8929334c54ce759cf6736ea15fbfdc7f.png", - "aggregators": ["PancakeCoinMarketCap", "Socket", "Rubic", "Rango"], - "occurrences": 4 - }, - "0xb1528a7be5a96b77de5337988ba69029ca6e2c7a": { - "address": "0xb1528a7be5a96b77de5337988ba69029ca6e2c7a", - "symbol": "BARK", - "decimals": 18, - "name": "Barking", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xb1528a7be5a96b77de5337988ba69029ca6e2c7a.png", - "aggregators": ["PancakeCoinGecko", "Socket", "Rubic", "Rango"], - "occurrences": 4 - }, - "0x16f9cc3c6f8d8006cfc0ee693cef9d76b0d44c36": { - "address": "0x16f9cc3c6f8d8006cfc0ee693cef9d76b0d44c36", - "symbol": "BB", - "decimals": 9, - "name": "Baby Bali", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x16f9cc3c6f8d8006cfc0ee693cef9d76b0d44c36.png", - "aggregators": [ - "PancakeCoinMarketCap", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 4 - }, - "0x688ec465111ed639267cb17c47e790c9cc7279c1": { - "address": "0x688ec465111ed639267cb17c47e790c9cc7279c1", - "symbol": "BB", - "decimals": 18, - "name": "BB Gaming", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x688ec465111ed639267cb17c47e790c9cc7279c1.png", - "aggregators": [ - "PancakeCoinMarketCap", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 4 - }, - "0x77776b40c3d75cb07ce54dea4b2fd1d07f865222": { - "address": "0x77776b40c3d75cb07ce54dea4b2fd1d07f865222", - "symbol": "BBUSD", - "decimals": 18, - "name": "BounceBit USD", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x77776b40c3d75cb07ce54dea4b2fd1d07f865222.png", - "aggregators": [ - "PancakeCoinMarketCap", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 4 - }, - "0x8beabaa4f025d00b4699d56a683758d692d17f20": { - "address": "0x8beabaa4f025d00b4699d56a683758d692d17f20", - "symbol": "BBYXRP", - "decimals": 9, - "name": "BabyXrp", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x8beabaa4f025d00b4699d56a683758d692d17f20.png", - "aggregators": [ - "PancakeCoinMarketCap", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 4 - }, - "0x708cb02ad77e1b245b1640cee51b3cc844bcaef4": { - "address": "0x708cb02ad77e1b245b1640cee51b3cc844bcaef4", - "symbol": "ELAND", - "decimals": 18, - "name": "Etherland", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x708cb02ad77e1b245b1640cee51b3cc844bcaef4.png", - "aggregators": [ - "PancakeCoinMarketCap", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 4 - }, - "0x7fa92c33fdfa1050256437b302832a2ed530859f": { - "address": "0x7fa92c33fdfa1050256437b302832a2ed530859f", - "symbol": "BERGERDOGE", - "decimals": 9, - "name": "BergerDoge", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x7fa92c33fdfa1050256437b302832a2ed530859f.png", - "aggregators": [ - "PancakeCoinMarketCap", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 4 - }, - "0xd04c116c4f02f3cca44b7d4e5209225c8779c8b8": { - "address": "0xd04c116c4f02f3cca44b7d4e5209225c8779c8b8", - "symbol": "BG", - "decimals": 18, - "name": "BunnyPark Game", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xd04c116c4f02f3cca44b7d4e5209225c8779c8b8.png", - "aggregators": [ - "PancakeCoinMarketCap", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 4 - }, - "0xa03110800894b3ccf8723d991d80875561f96777": { - "address": "0xa03110800894b3ccf8723d991d80875561f96777", - "symbol": "BGVT", - "decimals": 18, - "name": "Bit Game Verse Token", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xa03110800894b3ccf8723d991d80875561f96777.png", - "aggregators": [ - "PancakeCoinMarketCap", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 4 - }, - "0xed0c1c9c64ff7c7cc37c3af0dfcf5b02efe0bb5f": { - "address": "0xed0c1c9c64ff7c7cc37c3af0dfcf5b02efe0bb5f", - "symbol": "BITORB", - "decimals": 18, - "name": "BitOrbit", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xed0c1c9c64ff7c7cc37c3af0dfcf5b02efe0bb5f.png", - "aggregators": [ - "PancakeCoinMarketCap", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 4 - }, - "0x6448be0ca45a7581d9c4c9dd665e14ec60b25113": { - "address": "0x6448be0ca45a7581d9c4c9dd665e14ec60b25113", - "symbol": "BKPT", - "decimals": 18, - "name": "Biokript", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x6448be0ca45a7581d9c4c9dd665e14ec60b25113.png", - "aggregators": [ - "PancakeCoinMarketCap", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 4 - }, - "0xa2f1a99a74d4cc072b810b1696239e4dd76221c4": { - "address": "0xa2f1a99a74d4cc072b810b1696239e4dd76221c4", - "symbol": "BLACK", - "decimals": 18, - "name": "Black Token", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xa2f1a99a74d4cc072b810b1696239e4dd76221c4.png", - "aggregators": ["PancakeCoinMarketCap", "Socket", "Rubic", "Rango"], - "occurrences": 4 - }, - "0xdd1b6b259986571a85da82a84f461e1c212591c0": { - "address": "0xdd1b6b259986571a85da82a84f461e1c212591c0", - "symbol": "BLAZEX", - "decimals": 9, - "name": "BlazeX", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xdd1b6b259986571a85da82a84f461e1c212591c0.png", - "aggregators": [ - "PancakeCoinMarketCap", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 4 - }, - "0x8626264b6a1b4e920905efd381002aba52ea0eea": { - "address": "0x8626264b6a1b4e920905efd381002aba52ea0eea", - "symbol": "BLKC", - "decimals": 8, - "name": "BlackHat Coin", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x8626264b6a1b4e920905efd381002aba52ea0eea.png", - "aggregators": [ - "PancakeCoinMarketCap", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 4 - }, - "0x4954e0062e0a7668a2fe3df924cd20e6440a7b77": { - "address": "0x4954e0062e0a7668a2fe3df924cd20e6440a7b77", - "symbol": "BNU", - "decimals": 18, - "name": "ByteNext", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x4954e0062e0a7668a2fe3df924cd20e6440a7b77.png", - "aggregators": [ - "PancakeCoinMarketCap", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 4 - }, - "0x41b7d66d96a30d301be938adb8a6c18656109517": { - "address": "0x41b7d66d96a30d301be938adb8a6c18656109517", - "symbol": "BOOST", - "decimals": 18, - "name": "BitBoost", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x41b7d66d96a30d301be938adb8a6c18656109517.png", - "aggregators": ["PancakeCoinGecko", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0x4d993ec7b44276615bb2f6f20361ab34fbf0ec49": { - "address": "0x4d993ec7b44276615bb2f6f20361ab34fbf0ec49", - "symbol": "BRAND", - "decimals": 9, - "name": "BrandPad Finance", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x4d993ec7b44276615bb2f6f20361ab34fbf0ec49.png", - "aggregators": [ - "PancakeCoinMarketCap", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 4 - }, - "0xe8993ea85b9aa3e864fef4f7685966c485546161": { - "address": "0xe8993ea85b9aa3e864fef4f7685966c485546161", - "symbol": "BSG", - "decimals": 9, - "name": "Baby Squid Game", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xe8993ea85b9aa3e864fef4f7685966c485546161.png", - "aggregators": [ - "PancakeCoinMarketCap", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 4 - }, - "0x83b27de2fca046fa63a11c7ce7743de33ec58822": { - "address": "0x83b27de2fca046fa63a11c7ce7743de33ec58822", - "symbol": "BUILD", - "decimals": 18, - "name": "BUILD", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x83b27de2fca046fa63a11c7ce7743de33ec58822.png", - "aggregators": [ - "PancakeCoinMarketCap", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 4 - }, - "0x067bd9825c92a4384f55b4cb8fcaeaefffcd490e": { - "address": "0x067bd9825c92a4384f55b4cb8fcaeaefffcd490e", - "symbol": "BWLD", - "decimals": 18, - "name": "Bowled.io", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x067bd9825c92a4384f55b4cb8fcaeaefffcd490e.png", - "aggregators": [ - "PancakeCoinMarketCap", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 4 - }, - "0x76e112203ef59d445452ef7556386dd2df3ed914": { - "address": "0x76e112203ef59d445452ef7556386dd2df3ed914", - "symbol": "CADINU", - "decimals": 18, - "name": "Canadian Inuit Dog", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x76e112203ef59d445452ef7556386dd2df3ed914.png", - "aggregators": [ - "PancakeCoinMarketCap", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 4 - }, - "0x096985703f584b9444ce9730b600fc39de29ccc8": { - "address": "0x096985703f584b9444ce9730b600fc39de29ccc8", - "symbol": "CAF", - "decimals": 18, - "name": "Childrens Aid Foundation", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x096985703f584b9444ce9730b600fc39de29ccc8.png", - "aggregators": [ - "PancakeCoinMarketCap", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 4 - }, - "0x5971f6ecf4092824ed8229154d97c21317a04764": { - "address": "0x5971f6ecf4092824ed8229154d97c21317a04764", - "symbol": "CAT", - "decimals": 9, - "name": "Cat Token", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x5971f6ecf4092824ed8229154d97c21317a04764.png", - "aggregators": ["PancakeCoinGecko", "Socket", "Rubic", "Rango"], - "occurrences": 4 - }, - "0x912ef48f4da0c68d6c7c6d0b35d4e62e71771f33": { - "address": "0x912ef48f4da0c68d6c7c6d0b35d4e62e71771f33", - "symbol": "CBU", - "decimals": 4, - "name": "Banque Universal", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x912ef48f4da0c68d6c7c6d0b35d4e62e71771f33.png", - "aggregators": [ - "PancakeCoinMarketCap", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 4 - }, - "0x612e1726435fe38dd49a0b35b4065b56f49c8f11": { - "address": "0x612e1726435fe38dd49a0b35b4065b56f49c8f11", - "symbol": "CCV2", - "decimals": 18, - "name": "CryptoCart V2", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x612e1726435fe38dd49a0b35b4065b56f49c8f11.png", - "aggregators": [ - "PancakeCoinMarketCap", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 4 - }, - "0x111111267109489dc6f350608d5113b10c0c5cd7": { - "address": "0x111111267109489dc6f350608d5113b10c0c5cd7", - "symbol": "CEC", - "decimals": 18, - "name": "Counterfire Economic Coin", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x111111267109489dc6f350608d5113b10c0c5cd7.png", - "aggregators": [ - "PancakeCoinMarketCap", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 4 - }, - "0x78d66f72af18b678df82c91817b5cfd5b405b186": { - "address": "0x78d66f72af18b678df82c91817b5cfd5b405b186", - "symbol": "CENS", - "decimals": 18, - "name": "Censored AI", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x78d66f72af18b678df82c91817b5cfd5b405b186.png", - "aggregators": [ - "PancakeCoinMarketCap", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 4 - }, - "0xa3d2ae2d6684178a8565231465c3feebb05880c1": { - "address": "0xa3d2ae2d6684178a8565231465c3feebb05880c1", - "symbol": "CFT", - "decimals": 18, - "name": "CANNFINITY", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xa3d2ae2d6684178a8565231465c3feebb05880c1.png", - "aggregators": [ - "PancakeCoinMarketCap", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 4 - }, - "0xbac405e6b93846cdc809db7af3380746efa2c06f": { - "address": "0xbac405e6b93846cdc809db7af3380746efa2c06f", - "symbol": "CGPU", - "decimals": 18, - "name": "ChainGPU", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xbac405e6b93846cdc809db7af3380746efa2c06f.png", - "aggregators": [ - "PancakeCoinMarketCap", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 4 - }, - "0x7dd4cca136132e2260b3e8b4053cd7af057c3ed5": { - "address": "0x7dd4cca136132e2260b3e8b4053cd7af057c3ed5", - "symbol": "COAI", - "decimals": 18, - "name": "CodeMong Ai Games", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x7dd4cca136132e2260b3e8b4053cd7af057c3ed5.png", - "aggregators": [ - "PancakeCoinMarketCap", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 4 - }, - "0x8b6fa031c7d2e60fbfe4e663ec1b8f37df1ba483": { - "address": "0x8b6fa031c7d2e60fbfe4e663ec1b8f37df1ba483", - "symbol": "COW", - "decimals": 9, - "name": "CashCow", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x8b6fa031c7d2e60fbfe4e663ec1b8f37df1ba483.png", - "aggregators": [ - "PancakeCoinMarketCap", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 4 - }, - "0xae20bc46300bab5d85612c6bc6ea87ea0f186035": { - "address": "0xae20bc46300bab5d85612c6bc6ea87ea0f186035", - "symbol": "CRFI", - "decimals": 18, - "name": "CrossFi", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xae20bc46300bab5d85612c6bc6ea87ea0f186035.png", - "aggregators": [ - "PancakeCoinMarketCap", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 4 - }, - "0xa236fd48f30ad4dee145652a71912189855dd575": { - "address": "0xa236fd48f30ad4dee145652a71912189855dd575", - "symbol": "CRH", - "decimals": 18, - "name": "Crypto Hunters Coin", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xa236fd48f30ad4dee145652a71912189855dd575.png", - "aggregators": [ - "PancakeCoinMarketCap", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 4 - }, - "0x502b8136c48977b975a6c62b08ac4e15dabc8172": { - "address": "0x502b8136c48977b975a6c62b08ac4e15dabc8172", - "symbol": "$CS", - "decimals": 9, - "name": "Child Support", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x502b8136c48977b975a6c62b08ac4e15dabc8172.png", - "aggregators": [ - "PancakeCoinMarketCap", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 4 - }, - "0xef9481115ff33e94d3e28a52d3a8f642bf3521e5": { - "address": "0xef9481115ff33e94d3e28a52d3a8f642bf3521e5", - "symbol": "CSPD", - "decimals": 18, - "name": "CasperPad", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xef9481115ff33e94d3e28a52d3a8f642bf3521e5.png", - "aggregators": [ - "PancakeCoinMarketCap", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 4 - }, - "0xb3ba14f6a482dfdebc3c2fb726ac10df91ee504c": { - "address": "0xb3ba14f6a482dfdebc3c2fb726ac10df91ee504c", - "symbol": "CTG", - "decimals": 18, - "name": "City Tycoon Games", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xb3ba14f6a482dfdebc3c2fb726ac10df91ee504c.png", - "aggregators": [ - "PancakeCoinMarketCap", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 4 - }, - "0x73bc158e84873888cfc8b617524eebb1cfce8d4e": { - "address": "0x73bc158e84873888cfc8b617524eebb1cfce8d4e", - "symbol": "CTL", - "decimals": 18, - "name": "Twelve Legions", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x73bc158e84873888cfc8b617524eebb1cfce8d4e.png", - "aggregators": [ - "PancakeCoinMarketCap", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 4 - }, - "0x464863745ed3af8b9f8871f1082211c55f8f884d": { - "address": "0x464863745ed3af8b9f8871f1082211c55f8f884d", - "symbol": "CTT", - "decimals": 18, - "name": "CryptoTycoon", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x464863745ed3af8b9f8871f1082211c55f8f884d.png", - "aggregators": [ - "PancakeCoinMarketCap", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 4 - }, - "0x222cf80a8514f8ce551c06d1b8d01db3678688ad": { - "address": "0x222cf80a8514f8ce551c06d1b8d01db3678688ad", - "symbol": "DAWGS", - "decimals": 9, - "name": "SpaceDawgs", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x222cf80a8514f8ce551c06d1b8d01db3678688ad.png", - "aggregators": [ - "PancakeCoinMarketCap", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 4 - }, - "0x220e6a613f00c79025d5611b73639e045b186ff8": { - "address": "0x220e6a613f00c79025d5611b73639e045b186ff8", - "symbol": "DBC", - "decimals": 18, - "name": "Dhabicoin", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x220e6a613f00c79025d5611b73639e045b186ff8.png", - "aggregators": [ - "PancakeCoinMarketCap", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 4 - }, - "0x5c9ac6cbadfb0900a17735c9ffaacd20c60cfc15": { - "address": "0x5c9ac6cbadfb0900a17735c9ffaacd20c60cfc15", - "symbol": "DEMI", - "decimals": 6, - "name": "DeMi", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x5c9ac6cbadfb0900a17735c9ffaacd20c60cfc15.png", - "aggregators": [ - "PancakeCoinMarketCap", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 4 - }, - "0xb148df3c114b1233b206160a0f2a74999bb2fbf3": { - "address": "0xb148df3c114b1233b206160a0f2a74999bb2fbf3", - "symbol": "DHLT", - "decimals": 18, - "name": "DeHealth", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xb148df3c114b1233b206160a0f2a74999bb2fbf3.png", - "aggregators": [ - "PancakeCoinMarketCap", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 4 - }, - "0x697bd938e7e572e787ecd7bc74a31f1814c21264": { - "address": "0x697bd938e7e572e787ecd7bc74a31f1814c21264", - "symbol": "DIFX", - "decimals": 18, - "name": "Digital Financial Exchange", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x697bd938e7e572e787ecd7bc74a31f1814c21264.png", - "aggregators": [ - "PancakeCoinMarketCap", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 4 - }, - "0x7ec0da57eba5398470c6bcb5518406d885240c85": { - "address": "0x7ec0da57eba5398470c6bcb5518406d885240c85", - "symbol": "DIGI", - "decimals": 18, - "name": "DIGIVERSE", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x7ec0da57eba5398470c6bcb5518406d885240c85.png", - "aggregators": [ - "PancakeCoinMarketCap", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 4 - }, - "0x5fb60a9e69b53edbc95a5a2d9dd4abd8c16c4233": { - "address": "0x5fb60a9e69b53edbc95a5a2d9dd4abd8c16c4233", - "symbol": "DINO", - "decimals": 8, - "name": "Dinosaur Inu", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x5fb60a9e69b53edbc95a5a2d9dd4abd8c16c4233.png", - "aggregators": [ - "PancakeCoinMarketCap", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 4 - }, - "0x1c796c140de269e255372ea687ef7644bab87935": { - "address": "0x1c796c140de269e255372ea687ef7644bab87935", - "symbol": "DMLG", - "decimals": 18, - "name": "Demole", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x1c796c140de269e255372ea687ef7644bab87935.png", - "aggregators": [ - "PancakeCoinMarketCap", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 4 - }, - "0x9a26e6d24df036b0b015016d1b55011c19e76c87": { - "address": "0x9a26e6d24df036b0b015016d1b55011c19e76c87", - "symbol": "DMS", - "decimals": 18, - "name": "Dragon Mainland Shards", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x9a26e6d24df036b0b015016d1b55011c19e76c87.png", - "aggregators": [ - "PancakeCoinMarketCap", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 4 - }, - "0x44836708ff32246635d8d08c785f4e779e294598": { - "address": "0x44836708ff32246635d8d08c785f4e779e294598", - "symbol": "DNT", - "decimals": 8, - "name": "Space Guild Diamond Token", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x44836708ff32246635d8d08c785f4e779e294598.png", - "aggregators": [ - "PancakeCoinMarketCap", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 4 - }, - "0x94db03752342bc9b5bbf89e3bf0132494f0cb2b3": { - "address": "0x94db03752342bc9b5bbf89e3bf0132494f0cb2b3", - "symbol": "DOGAI", - "decimals": 18, - "name": "Dogai", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x94db03752342bc9b5bbf89e3bf0132494f0cb2b3.png", - "aggregators": [ - "PancakeCoinMarketCap", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 4 - }, - "0x1bec41a36356d5574aeb068b599ab7e48dd008b8": { - "address": "0x1bec41a36356d5574aeb068b599ab7e48dd008b8", - "symbol": "DOGEFOOD", - "decimals": 9, - "name": "DogeFood", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x1bec41a36356d5574aeb068b599ab7e48dd008b8.png", - "aggregators": [ - "PancakeCoinMarketCap", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 4 - }, - "0x123458c167a371250d325bd8b1fff12c8af692a7": { - "address": "0x123458c167a371250d325bd8b1fff12c8af692a7", - "symbol": "DRAC", - "decimals": 18, - "name": "DRAC Network", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x123458c167a371250d325bd8b1fff12c8af692a7.png", - "aggregators": [ - "PancakeCoinMarketCap", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 4 - }, - "0x1384555d00144c7725ac71da2bb1fd67b9ad889a": { - "address": "0x1384555d00144c7725ac71da2bb1fd67b9ad889a", - "symbol": "DSUN", - "decimals": 18, - "name": "Dsun Token", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x1384555d00144c7725ac71da2bb1fd67b9ad889a.png", - "aggregators": [ - "PancakeCoinMarketCap", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 4 - }, - "0xaee234825dc4687fae606485c1ebd06336052bcc": { - "address": "0xaee234825dc4687fae606485c1ebd06336052bcc", - "symbol": "DUKE", - "decimals": 9, - "name": "Duke Inu", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xaee234825dc4687fae606485c1ebd06336052bcc.png", - "aggregators": [ - "PancakeCoinMarketCap", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 4 - }, - "0x8ec1877698acf262fe8ad8a295ad94d6ea258988": { - "address": "0x8ec1877698acf262fe8ad8a295ad94d6ea258988", - "symbol": "DUSD", - "decimals": 18, - "name": "Davos.xyz USD", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x8ec1877698acf262fe8ad8a295ad94d6ea258988.png", - "aggregators": [ - "PancakeCoinMarketCap", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 4 - }, - "0x4e0da40b9063dc48364c1c0ffb4ae9d091fc2270": { - "address": "0x4e0da40b9063dc48364c1c0ffb4ae9d091fc2270", - "symbol": "EDG", - "decimals": 18, - "name": "Edgeware", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x4e0da40b9063dc48364c1c0ffb4ae9d091fc2270.png", - "aggregators": [ - "PancakeCoinMarketCap", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 4 - }, - "0xbe76f927d274072266cade09daa54750cd4293a1": { - "address": "0xbe76f927d274072266cade09daa54750cd4293a1", - "symbol": "EGOLD", - "decimals": 18, - "name": "EGOLD", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xbe76f927d274072266cade09daa54750cd4293a1.png", - "aggregators": ["PancakeCoinMarketCap", "Socket", "Rubic", "Rango"], - "occurrences": 4 - }, - "0xa526b7abb8010cd3b79c56e074ad34dff3d4b0e7": { - "address": "0xa526b7abb8010cd3b79c56e074ad34dff3d4b0e7", - "symbol": "ELONMARS", - "decimals": 9, - "name": "Elon Mars", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xa526b7abb8010cd3b79c56e074ad34dff3d4b0e7.png", - "aggregators": [ - "PancakeCoinMarketCap", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 4 - }, - "0x37807d4fbeb84124347b8899dd99616090d3e304": { - "address": "0x37807d4fbeb84124347b8899dd99616090d3e304", - "symbol": "LUNR", - "decimals": 4, - "name": "LunarCrush", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x37807d4fbeb84124347b8899dd99616090d3e304.png", - "aggregators": [ - "PancakeCoinMarketCap", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 4 - }, - "0x2d35c695be9080d27ef5c6efe80beefcfaab8573": { - "address": "0x2d35c695be9080d27ef5c6efe80beefcfaab8573", - "symbol": "EOTH", - "decimals": 18, - "name": "Echo Of The Horizon", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x2d35c695be9080d27ef5c6efe80beefcfaab8573.png", - "aggregators": [ - "PancakeCoinMarketCap", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 4 - }, - "0x4c48cca6153db911002f965d22fdefcd95f33be9": { - "address": "0x4c48cca6153db911002f965d22fdefcd95f33be9", - "symbol": "ESC", - "decimals": 18, - "name": "The Essential Coin", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x4c48cca6153db911002f965d22fdefcd95f33be9.png", - "aggregators": [ - "PancakeCoinMarketCap", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 4 - }, - "0x4ad006e61d77453ce99f6e24ba45d59e1c194644": { - "address": "0x4ad006e61d77453ce99f6e24ba45d59e1c194644", - "symbol": "ESX", - "decimals": 9, - "name": "EstateX", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x4ad006e61d77453ce99f6e24ba45d59e1c194644.png", - "aggregators": [ - "PancakeCoinMarketCap", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 4 - }, - "0x854f7cd3677737241e3eed0dc3d7f33dfaf72bc4": { - "address": "0x854f7cd3677737241e3eed0dc3d7f33dfaf72bc4", - "symbol": "ETHAX", - "decimals": 18, - "name": "ETHAX", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x854f7cd3677737241e3eed0dc3d7f33dfaf72bc4.png", - "aggregators": [ - "PancakeCoinMarketCap", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 4 - }, - "0x269b7a30497f92ebf307e7467fd4f1210a6c36b6": { - "address": "0x269b7a30497f92ebf307e7467fd4f1210a6c36b6", - "symbol": "EVIN", - "decimals": 18, - "name": "Evin Token", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x269b7a30497f92ebf307e7467fd4f1210a6c36b6.png", - "aggregators": [ - "PancakeCoinMarketCap", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 4 - }, - "0x3c2e501b08cf5c16061468c96b19b32bae451da3": { - "address": "0x3c2e501b08cf5c16061468c96b19b32bae451da3", - "symbol": "EVRF", - "decimals": 18, - "name": "EverReflect", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x3c2e501b08cf5c16061468c96b19b32bae451da3.png", - "aggregators": [ - "PancakeCoinMarketCap", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 4 - }, - "0x657b632714e08ac66b79444ad3f3875526ee6689": { - "address": "0x657b632714e08ac66b79444ad3f3875526ee6689", - "symbol": "F2C", - "decimals": 18, - "name": "Ftribe Fighters", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x657b632714e08ac66b79444ad3f3875526ee6689.png", - "aggregators": ["PancakeCoinGecko", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0x8132a61eff71fec65e6dfb3406f4f64e55c69a82": { - "address": "0x8132a61eff71fec65e6dfb3406f4f64e55c69a82", - "symbol": "FAND", - "decimals": 18, - "name": "Fandomdao", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x8132a61eff71fec65e6dfb3406f4f64e55c69a82.png", - "aggregators": [ - "PancakeCoinMarketCap", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 4 - }, - "0x6d1a4650e83708b583c35d5e0952a0b46354ca9b": { - "address": "0x6d1a4650e83708b583c35d5e0952a0b46354ca9b", - "symbol": "FDC", - "decimals": 18, - "name": "Fidance", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x6d1a4650e83708b583c35d5e0952a0b46354ca9b.png", - "aggregators": [ - "PancakeCoinMarketCap", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 4 - }, - "0x3a599e584075065eaaac768d75eaef85c2f2ff64": { - "address": "0x3a599e584075065eaaac768d75eaef85c2f2ff64", - "symbol": "FDT", - "decimals": 18, - "name": "Frutti Dino", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x3a599e584075065eaaac768d75eaef85c2f2ff64.png", - "aggregators": [ - "PancakeCoinMarketCap", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 4 - }, - "0xf397680d99a92e4b60637e9f5c71a4def1f6c7b5": { - "address": "0xf397680d99a92e4b60637e9f5c71a4def1f6c7b5", - "symbol": "FLIGHT", - "decimals": 4, - "name": "FlightClupcoin", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xf397680d99a92e4b60637e9f5c71a4def1f6c7b5.png", - "aggregators": [ - "PancakeCoinMarketCap", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 4 - }, - "0x0a4e1bdfa75292a98c15870aef24bd94bffe0bd4": { - "address": "0x0a4e1bdfa75292a98c15870aef24bd94bffe0bd4", - "symbol": "FOTA", - "decimals": 18, - "name": "Fight Of The Ages", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x0a4e1bdfa75292a98c15870aef24bd94bffe0bd4.png", - "aggregators": [ - "PancakeCoinMarketCap", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 4 - }, - "0x1acbc7d9c40aa8955281ae29b581bcf002eeb4f4": { - "address": "0x1acbc7d9c40aa8955281ae29b581bcf002eeb4f4", - "symbol": "FOUND", - "decimals": 18, - "name": "ccFound", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x1acbc7d9c40aa8955281ae29b581bcf002eeb4f4.png", - "aggregators": [ - "PancakeCoinMarketCap", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 4 - }, - "0x440758df68a045db3f2517257f27330a12438656": { - "address": "0x440758df68a045db3f2517257f27330a12438656", - "symbol": "FRGST", - "decimals": 18, - "name": "Froggies", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x440758df68a045db3f2517257f27330a12438656.png", - "aggregators": [ - "PancakeCoinMarketCap", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 4 - }, - "0x90a1e4bbade88366dc44436535f1571d95e666c7": { - "address": "0x90a1e4bbade88366dc44436535f1571d95e666c7", - "symbol": "FWT", - "decimals": 18, - "name": "Freeway", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x90a1e4bbade88366dc44436535f1571d95e666c7.png", - "aggregators": [ - "PancakeCoinMarketCap", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 4 - }, - "0x4d14e0c131ca155de4d69e009bc62b01a052eb87": { - "address": "0x4d14e0c131ca155de4d69e009bc62b01a052eb87", - "symbol": "GAME", - "decimals": 18, - "name": "Gamereum", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x4d14e0c131ca155de4d69e009bc62b01a052eb87.png", - "aggregators": ["PancakeCoinGecko", "Socket", "Rubic", "Rango"], - "occurrences": 4 - }, - "0xf0dcf7ac48f8c745f2920d03dff83f879b80d438": { - "address": "0xf0dcf7ac48f8c745f2920d03dff83f879b80d438", - "symbol": "GAMI", - "decimals": 18, - "name": "Gami", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xf0dcf7ac48f8c745f2920d03dff83f879b80d438.png", - "aggregators": [ - "PancakeCoinMarketCap", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 4 - }, - "0x7e5cf1f395846ab2c13eba2e6953b54b92a80bbd": { - "address": "0x7e5cf1f395846ab2c13eba2e6953b54b92a80bbd", - "symbol": "GBURN", - "decimals": 18, - "name": "GBURN", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x7e5cf1f395846ab2c13eba2e6953b54b92a80bbd.png", - "aggregators": [ - "PancakeCoinMarketCap", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 4 - }, - "0x2cd14cba3f26254beed1d78158cd2b6f91809600": { - "address": "0x2cd14cba3f26254beed1d78158cd2b6f91809600", - "symbol": "GENS", - "decimals": 18, - "name": "Genshiro", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x2cd14cba3f26254beed1d78158cd2b6f91809600.png", - "aggregators": [ - "PancakeCoinMarketCap", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 4 - }, - "0xfdfd27ae39cebefdbaac8615f18aa68ddd0f15f5": { - "address": "0xfdfd27ae39cebefdbaac8615f18aa68ddd0f15f5", - "symbol": "GHD", - "decimals": 18, - "name": "Giftedhands", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xfdfd27ae39cebefdbaac8615f18aa68ddd0f15f5.png", - "aggregators": ["PancakeCoinGecko", "Socket", "Rubic", "Rango"], - "occurrences": 4 - }, - "0x0f34810810dd05d2bcaef091d54497ad40801ff2": { - "address": "0x0f34810810dd05d2bcaef091d54497ad40801ff2", - "symbol": "GIGS", - "decimals": 18, - "name": "Climate101", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x0f34810810dd05d2bcaef091d54497ad40801ff2.png", - "aggregators": [ - "PancakeCoinMarketCap", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 4 - }, - "0x0ee7292bd28f4a490f849fb30c28cabab9440f9e": { - "address": "0x0ee7292bd28f4a490f849fb30c28cabab9440f9e", - "symbol": "GLINK", - "decimals": 8, - "name": "GemLink", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x0ee7292bd28f4a490f849fb30c28cabab9440f9e.png", - "aggregators": [ - "PancakeCoinMarketCap", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 4 - }, - "0xfa139cc2f5c5b8c72309be8e63c3024d03b7e63c": { - "address": "0xfa139cc2f5c5b8c72309be8e63c3024d03b7e63c", - "symbol": "GNP", - "decimals": 18, - "name": "Genie Protocol", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xfa139cc2f5c5b8c72309be8e63c3024d03b7e63c.png", - "aggregators": [ - "PancakeCoinMarketCap", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 4 - }, - "0xeb52620b04e8eacfd795353f2827673887f292e0": { - "address": "0xeb52620b04e8eacfd795353f2827673887f292e0", - "symbol": "GOLC", - "decimals": 18, - "name": "GOLCOIN", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xeb52620b04e8eacfd795353f2827673887f292e0.png", - "aggregators": [ - "PancakeCoinMarketCap", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 4 - }, - "0xf29bf05de3dd6a5f7496841f81f96a3a130c3420": { - "address": "0xf29bf05de3dd6a5f7496841f81f96a3a130c3420", - "symbol": "GOMD", - "decimals": 18, - "name": "Gomdori", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xf29bf05de3dd6a5f7496841f81f96a3a130c3420.png", - "aggregators": [ - "PancakeCoinMarketCap", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 4 - }, - "0x6294deb10817e47a4ee6869db59c85f3ef4bee29": { - "address": "0x6294deb10817e47a4ee6869db59c85f3ef4bee29", - "symbol": "GROKCEO", - "decimals": 9, - "name": "GROK CEO", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x6294deb10817e47a4ee6869db59c85f3ef4bee29.png", - "aggregators": [ - "PancakeCoinMarketCap", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 4 - }, - "0x6f3468588a57d5a631198532c6a3c693cf512c5c": { - "address": "0x6f3468588a57d5a631198532c6a3c693cf512c5c", - "symbol": "GROKMOON", - "decimals": 9, - "name": "Grok Moon", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x6f3468588a57d5a631198532c6a3c693cf512c5c.png", - "aggregators": [ - "PancakeCoinMarketCap", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 4 - }, - "0xa24259b154f6199f881c99fca26d7b3e8f8f2711": { - "address": "0xa24259b154f6199f881c99fca26d7b3e8f8f2711", - "symbol": "GTTM", - "decimals": 18, - "name": "Going To The Moon", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xa24259b154f6199f881c99fca26d7b3e8f8f2711.png", - "aggregators": [ - "PancakeCoinMarketCap", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 4 - }, - "0x7597bdccf10e41bccc374a6a0104cf430c420884": { - "address": "0x7597bdccf10e41bccc374a6a0104cf430c420884", - "symbol": "GULF", - "decimals": 18, - "name": "GulfCoin", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x7597bdccf10e41bccc374a6a0104cf430c420884.png", - "aggregators": [ - "PancakeCoinMarketCap", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 4 - }, - "0xd85ad783cc94bd04196a13dc042a3054a9b52210": { - "address": "0xd85ad783cc94bd04196a13dc042a3054a9b52210", - "symbol": "HAKA", - "decimals": 18, - "name": "TribeOne", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xd85ad783cc94bd04196a13dc042a3054a9b52210.png", - "aggregators": ["PancakeCoinMarketCap", "Socket", "Rubic", "Rango"], - "occurrences": 4 - }, - "0xb38c9d498bab8deefa5ffe8e1d7ca000ef6c3362": { - "address": "0xb38c9d498bab8deefa5ffe8e1d7ca000ef6c3362", - "symbol": "HECT", - "decimals": 18, - "name": "Hectic Turkey", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xb38c9d498bab8deefa5ffe8e1d7ca000ef6c3362.png", - "aggregators": [ - "PancakeCoinMarketCap", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 4 - }, - "0x45eaccc670e0ef785d9c298217a7ab777757721b": { - "address": "0x45eaccc670e0ef785d9c298217a7ab777757721b", - "symbol": "HEFI", - "decimals": 18, - "name": "HeFi", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x45eaccc670e0ef785d9c298217a7ab777757721b.png", - "aggregators": [ - "PancakeCoinMarketCap", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 4 - }, - "0x8c18ffd66d943c9b0ad3dc40e2d64638f1e6e1ab": { - "address": "0x8c18ffd66d943c9b0ad3dc40e2d64638f1e6e1ab", - "symbol": "HER", - "decimals": 9, - "name": "Herity Network", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x8c18ffd66d943c9b0ad3dc40e2d64638f1e6e1ab.png", - "aggregators": [ - "PancakeCoinMarketCap", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 4 - }, - "0x71e67b8d88718d113fc7edbd95f7ca380222b3c6": { - "address": "0x71e67b8d88718d113fc7edbd95f7ca380222b3c6", - "symbol": "$HMT", - "decimals": 8, - "name": "Humanize", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x71e67b8d88718d113fc7edbd95f7ca380222b3c6.png", - "aggregators": [ - "PancakeCoinMarketCap", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 4 - }, - "0xc1357d32bf23fd5fe3280681a36755b6f150442e": { - "address": "0xc1357d32bf23fd5fe3280681a36755b6f150442e", - "symbol": "HOTMOON", - "decimals": 18, - "name": "HotMoon", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xc1357d32bf23fd5fe3280681a36755b6f150442e.png", - "aggregators": [ - "PancakeCoinMarketCap", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 4 - }, - "0xdaa64420e769fae36ccaa78e26024fe9f583e9d8": { - "address": "0xdaa64420e769fae36ccaa78e26024fe9f583e9d8", - "symbol": "HOW", - "decimals": 18, - "name": "HowInu", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xdaa64420e769fae36ccaa78e26024fe9f583e9d8.png", - "aggregators": [ - "PancakeCoinMarketCap", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 4 - }, - "0x3be0e5edc58bd55aaa381fa642688adc289c05a3": { - "address": "0x3be0e5edc58bd55aaa381fa642688adc289c05a3", - "symbol": "HRSE", - "decimals": 18, - "name": "The Winners Circle", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x3be0e5edc58bd55aaa381fa642688adc289c05a3.png", - "aggregators": [ - "PancakeCoinMarketCap", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 4 - }, - "0x4dfad9a4cba318efc53743b803588b113f8a84bd": { - "address": "0x4dfad9a4cba318efc53743b803588b113f8a84bd", - "symbol": "HUA", - "decimals": 9, - "name": "Chihuahua", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x4dfad9a4cba318efc53743b803588b113f8a84bd.png", - "aggregators": [ - "PancakeCoinMarketCap", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 4 - }, - "0xee5b03b769ca6c690d140cafb52fc8de3f38fc28": { - "address": "0xee5b03b769ca6c690d140cafb52fc8de3f38fc28", - "symbol": "HYPER", - "decimals": 7, - "name": "HyperChainX", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xee5b03b769ca6c690d140cafb52fc8de3f38fc28.png", - "aggregators": [ - "PancakeCoinMarketCap", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 4 - }, - "0xa7266989b0df675cc8257d53b6bc1358faf6626a": { - "address": "0xa7266989b0df675cc8257d53b6bc1358faf6626a", - "symbol": "IPAD", - "decimals": 18, - "name": "Infinity PAD", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xa7266989b0df675cc8257d53b6bc1358faf6626a.png", - "aggregators": [ - "PancakeCoinMarketCap", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 4 - }, - "0x93425e1324e3fea144579ed40bbadf8b481c944a": { - "address": "0x93425e1324e3fea144579ed40bbadf8b481c944a", - "symbol": "IQT", - "decimals": 18, - "name": "IQT TOKEN", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x93425e1324e3fea144579ed40bbadf8b481c944a.png", - "aggregators": ["PancakeCoinMarketCap", "Socket", "Rubic", "Rango"], - "occurrences": 4 - }, - "0x517396bd11d750e4417b82f2b0fcfa62a4f2bb96": { - "address": "0x517396bd11d750e4417b82f2b0fcfa62a4f2bb96", - "symbol": "ITEM", - "decimals": 18, - "name": "ITEMVERSE", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x517396bd11d750e4417b82f2b0fcfa62a4f2bb96.png", - "aggregators": [ - "PancakeCoinMarketCap", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 4 - }, - "0x2b1d36f5b61addaf7da7ebbd11b35fd8cfb0de31": { - "address": "0x2b1d36f5b61addaf7da7ebbd11b35fd8cfb0de31", - "symbol": "ITP", - "decimals": 18, - "name": "Interport Token", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x2b1d36f5b61addaf7da7ebbd11b35fd8cfb0de31.png", - "aggregators": [ - "PancakeCoinMarketCap", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 4 - }, - "0x845705db1623b8363a6d9813f33b73ec50cea0a2": { - "address": "0x845705db1623b8363a6d9813f33b73ec50cea0a2", - "symbol": "JFIVE", - "decimals": 9, - "name": "Jonny Five", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x845705db1623b8363a6d9813f33b73ec50cea0a2.png", - "aggregators": [ - "PancakeCoinMarketCap", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 4 - }, - "0x7db21353a0c4659b6a9a0519066aa8d52639dfa5": { - "address": "0x7db21353a0c4659b6a9a0519066aa8d52639dfa5", - "symbol": "JOLT", - "decimals": 18, - "name": "Joltify", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x7db21353a0c4659b6a9a0519066aa8d52639dfa5.png", - "aggregators": [ - "PancakeCoinMarketCap", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 4 - }, - "0xf5d8015d625be6f59b8073c8189bd51ba28792e1": { - "address": "0xf5d8015d625be6f59b8073c8189bd51ba28792e1", - "symbol": "JULD", - "decimals": 18, - "name": "JulSwap", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xf5d8015d625be6f59b8073c8189bd51ba28792e1.png", - "aggregators": [ - "PancakeCoinMarketCap", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 4 - }, - "0x13b8abb1cfd7bbe1f5764fe967ed049d488d9d1d": { - "address": "0x13b8abb1cfd7bbe1f5764fe967ed049d488d9d1d", - "symbol": "JYC", - "decimals": 9, - "name": "Joe-Yo Coin", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x13b8abb1cfd7bbe1f5764fe967ed049d488d9d1d.png", - "aggregators": [ - "PancakeCoinMarketCap", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 4 - }, - "0x4811d9a0b2655a5f317e466f2be0139ff949297b": { - "address": "0x4811d9a0b2655a5f317e466f2be0139ff949297b", - "symbol": "KABOSU", - "decimals": 9, - "name": "Kabosu (BNB)", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x4811d9a0b2655a5f317e466f2be0139ff949297b.png", - "aggregators": [ - "PancakeCoinMarketCap", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 4 - }, - "0x14f1ec1ba0f8a8e9a3b8178c9dcc32155e82c70b": { - "address": "0x14f1ec1ba0f8a8e9a3b8178c9dcc32155e82c70b", - "symbol": "KAF", - "decimals": 18, - "name": "KAIF", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x14f1ec1ba0f8a8e9a3b8178c9dcc32155e82c70b.png", - "aggregators": [ - "PancakeCoinMarketCap", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 4 - }, - "0xe3e3f8218562a7c9b594bef2946ec72f1b043ae8": { - "address": "0xe3e3f8218562a7c9b594bef2946ec72f1b043ae8", - "symbol": "KBD", - "decimals": 18, - "name": "Kyberdyne", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xe3e3f8218562a7c9b594bef2946ec72f1b043ae8.png", - "aggregators": [ - "PancakeCoinMarketCap", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 4 - }, - "0xacff4e9e9110971e1a4d8f013f5f97dd8fb4f430": { - "address": "0xacff4e9e9110971e1a4d8f013f5f97dd8fb4f430", - "symbol": "KFR", - "decimals": 9, - "name": "KING FOREVER", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xacff4e9e9110971e1a4d8f013f5f97dd8fb4f430.png", - "aggregators": [ - "PancakeCoinMarketCap", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 4 - }, - "0x824a50df33ac1b41afc52f4194e2e8356c17c3ac": { - "address": "0x824a50df33ac1b41afc52f4194e2e8356c17c3ac", - "symbol": "KICK", - "decimals": 10, - "name": "Kick", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x824a50df33ac1b41afc52f4194e2e8356c17c3ac.png", - "aggregators": [ - "PancakeCoinMarketCap", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 4 - }, - "0x84f4f7cdb4574c9556a494dab18ffc1d1d22316c": { - "address": "0x84f4f7cdb4574c9556a494dab18ffc1d1d22316c", - "symbol": "KINGSHIB", - "decimals": 9, - "name": "King Shiba", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x84f4f7cdb4574c9556a494dab18ffc1d1d22316c.png", - "aggregators": [ - "PancakeCoinMarketCap", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 4 - }, - "0x8094e772fa4a60bdeb1dfec56ab040e17dd608d5": { - "address": "0x8094e772fa4a60bdeb1dfec56ab040e17dd608d5", - "symbol": "KODA", - "decimals": 9, - "name": "Koda Cryptocurrency", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x8094e772fa4a60bdeb1dfec56ab040e17dd608d5.png", - "aggregators": [ - "PancakeCoinMarketCap", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 4 - }, - "0xd9eade302456aff8bf8d87ff0ef77dab1fb9230f": { - "address": "0xd9eade302456aff8bf8d87ff0ef77dab1fb9230f", - "symbol": "KOL", - "decimals": 18, - "name": "King of Legends", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xd9eade302456aff8bf8d87ff0ef77dab1fb9230f.png", - "aggregators": [ - "PancakeCoinMarketCap", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 4 - }, - "0x8013d731f429b3ad418f5467f9f68285efd67ca7": { - "address": "0x8013d731f429b3ad418f5467f9f68285efd67ca7", - "symbol": "KRN", - "decimals": 18, - "name": "KRYZA Network", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x8013d731f429b3ad418f5467f9f68285efd67ca7.png", - "aggregators": [ - "PancakeCoinMarketCap", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 4 - }, - "0xf06ce11836851d71e74e4ffefa7b73fcc8a27786": { - "address": "0xf06ce11836851d71e74e4ffefa7b73fcc8a27786", - "symbol": "LAY3R", - "decimals": 18, - "name": "Autolayer", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xf06ce11836851d71e74e4ffefa7b73fcc8a27786.png", - "aggregators": ["PancakeCoinGecko", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0x15a133ba390ffd210c13a03950f0d2dfe6e14b84": { - "address": "0x15a133ba390ffd210c13a03950f0d2dfe6e14b84", - "symbol": "LESBIAN", - "decimals": 18, - "name": "Lesbian Inu", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x15a133ba390ffd210c13a03950f0d2dfe6e14b84.png", - "aggregators": [ - "PancakeCoinMarketCap", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 4 - }, - "0xd71239a33c8542bd42130c1b4aca0673b4e4f48b": { - "address": "0xd71239a33c8542bd42130c1b4aca0673b4e4f48b", - "symbol": "LFW", - "decimals": 18, - "name": "Linked Finance World", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xd71239a33c8542bd42130c1b4aca0673b4e4f48b.png", - "aggregators": [ - "PancakeCoinMarketCap", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 4 - }, - "0x0dfcb45eae071b3b846e220560bbcdd958414d78": { - "address": "0x0dfcb45eae071b3b846e220560bbcdd958414d78", - "symbol": "LIBERO", - "decimals": 18, - "name": "Libero Financial", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x0dfcb45eae071b3b846e220560bbcdd958414d78.png", - "aggregators": [ - "PancakeCoinMarketCap", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 4 - }, - "0x679d2c23497d4431311ac001618cd0b8789ac29c": { - "address": "0x679d2c23497d4431311ac001618cd0b8789ac29c", - "symbol": "LINKFI", - "decimals": 18, - "name": "LINKFI", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x679d2c23497d4431311ac001618cd0b8789ac29c.png", - "aggregators": [ - "PancakeCoinMarketCap", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 4 - }, - "0xb99172949554e6c10c28c880ec0306d2a9d5c753": { - "address": "0xb99172949554e6c10c28c880ec0306d2a9d5c753", - "symbol": "LOGE", - "decimals": 9, - "name": "LunaDoge", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xb99172949554e6c10c28c880ec0306d2a9d5c753.png", - "aggregators": [ - "PancakeCoinMarketCap", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 4 - }, - "0x20b4620a767d6dccbb9314104d5cf0d08d1f7045": { - "address": "0x20b4620a767d6dccbb9314104d5cf0d08d1f7045", - "symbol": "LOP", - "decimals": 6, - "name": "Kilopi", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x20b4620a767d6dccbb9314104d5cf0d08d1f7045.png", - "aggregators": [ - "PancakeCoinMarketCap", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 4 - }, - "0xbd2c43da85d007b0b3cd856fd55c299578d832bc": { - "address": "0xbd2c43da85d007b0b3cd856fd55c299578d832bc", - "symbol": "LQT", - "decimals": 18, - "name": "Lifty", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xbd2c43da85d007b0b3cd856fd55c299578d832bc.png", - "aggregators": [ - "PancakeCoinMarketCap", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 4 - }, - "0xf70b6d6acd652612f24f7dd2ca2f1727eb20793a": { - "address": "0xf70b6d6acd652612f24f7dd2ca2f1727eb20793a", - "symbol": "LSHARE", - "decimals": 18, - "name": "LIF3 LSHARE (OLD)", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xf70b6d6acd652612f24f7dd2ca2f1727eb20793a.png", - "aggregators": ["PancakeCoinGecko", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0x1dc84fc11e48ae640d48044f22a603bbe914a612": { - "address": "0x1dc84fc11e48ae640d48044f22a603bbe914a612", - "symbol": "LTT", - "decimals": 9, - "name": "LocalTrade", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x1dc84fc11e48ae640d48044f22a603bbe914a612.png", - "aggregators": [ - "PancakeCoinMarketCap", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 4 - }, - "0x87837b7b4850687e200254f78c0af0a34329a491": { - "address": "0x87837b7b4850687e200254f78c0af0a34329a491", - "symbol": "LUC", - "decimals": 15, - "name": "Lucretius", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x87837b7b4850687e200254f78c0af0a34329a491.png", - "aggregators": [ - "PancakeCoinMarketCap", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 4 - }, - "0x9d6df568d4d3e619b99a5f988ac7b2bcc3408753": { - "address": "0x9d6df568d4d3e619b99a5f988ac7b2bcc3408753", - "symbol": "LUMI", - "decimals": 18, - "name": "Lumishare", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x9d6df568d4d3e619b99a5f988ac7b2bcc3408753.png", - "aggregators": [ - "PancakeCoinMarketCap", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 4 - }, - "0x2a48ece377b87ce941406657b9278b4459595e06": { - "address": "0x2a48ece377b87ce941406657b9278b4459595e06", - "symbol": "LUNAT", - "decimals": 9, - "name": "Lunatics", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x2a48ece377b87ce941406657b9278b4459595e06.png", - "aggregators": [ - "PancakeCoinMarketCap", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 4 - }, - "0x7ba1a5780ce75a6998e0f65529393873a6d57cda": { - "address": "0x7ba1a5780ce75a6998e0f65529393873a6d57cda", - "symbol": "LUNCARMY", - "decimals": 18, - "name": "LUNCARMY", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x7ba1a5780ce75a6998e0f65529393873a6d57cda.png", - "aggregators": [ - "PancakeCoinMarketCap", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 4 - }, - "0x3ef144cb45c8a390eb207a6aa9bfcf3da639cb5c": { - "address": "0x3ef144cb45c8a390eb207a6aa9bfcf3da639cb5c", - "symbol": "MAGA", - "decimals": 9, - "name": "MAGA Coin BSC", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x3ef144cb45c8a390eb207a6aa9bfcf3da639cb5c.png", - "aggregators": [ - "PancakeCoinMarketCap", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 4 - }, - "0xe045fc25581cfdc3cfb5c282501f3cd1a133a7ec": { - "address": "0xe045fc25581cfdc3cfb5c282501f3cd1a133a7ec", - "symbol": "MAI", - "decimals": 18, - "name": "MatrixGPT", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xe045fc25581cfdc3cfb5c282501f3cd1a133a7ec.png", - "aggregators": [ - "PancakeCoinMarketCap", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 4 - }, - "0xa5f249f401ba8931899a364d8e2699b5fa1d87a9": { - "address": "0xa5f249f401ba8931899a364d8e2699b5fa1d87a9", - "symbol": "MAIN", - "decimals": 18, - "name": "MAIN", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xa5f249f401ba8931899a364d8e2699b5fa1d87a9.png", - "aggregators": ["PancakeCoinMarketCap", "Socket", "Rubic", "Rango"], - "occurrences": 4 - }, - "0x12e114ef949177ddb37716bc6eefb9c5bc25de12": { - "address": "0x12e114ef949177ddb37716bc6eefb9c5bc25de12", - "symbol": "MANE", - "decimals": 18, - "name": "MANE", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x12e114ef949177ddb37716bc6eefb9c5bc25de12.png", - "aggregators": [ - "PancakeCoinMarketCap", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 4 - }, - "0x9d44c04ef10cbd4ba321e51a54f1354d0799feef": { - "address": "0x9d44c04ef10cbd4ba321e51a54f1354d0799feef", - "symbol": "MAR3", - "decimals": 18, - "name": "MAR3 AI", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x9d44c04ef10cbd4ba321e51a54f1354d0799feef.png", - "aggregators": [ - "PancakeCoinMarketCap", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 4 - }, - "0x9df90628d40c72f85137e8cee09dde353a651266": { - "address": "0x9df90628d40c72f85137e8cee09dde353a651266", - "symbol": "MC", - "decimals": 18, - "name": "Mechaverse", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x9df90628d40c72f85137e8cee09dde353a651266.png", - "aggregators": ["PancakeCoinMarketCap", "Socket", "Rubic", "Rango"], - "occurrences": 4 - }, - "0xf3b185ab60128e4c08008fd90c3f1f01f4b78d50": { - "address": "0xf3b185ab60128e4c08008fd90c3f1f01f4b78d50", - "symbol": "METADOGE", - "decimals": 18, - "name": "MetaDoge BSC", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xf3b185ab60128e4c08008fd90c3f1f01f4b78d50.png", - "aggregators": [ - "PancakeCoinGecko", - "Socket", - "Rubic", - "Sonarwatch" - ], - "occurrences": 4 - }, - "0xa1a0c7849e6916945a78f8af843738c051ab15f3": { - "address": "0xa1a0c7849e6916945a78f8af843738c051ab15f3", - "symbol": "METAMOON", - "decimals": 9, - "name": "MetaMoon", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xa1a0c7849e6916945a78f8af843738c051ab15f3.png", - "aggregators": [ - "PancakeCoinMarketCap", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 4 - }, - "0x19da1f6a5c2aec9315bf16d14ce7f7163082bf82": { - "address": "0x19da1f6a5c2aec9315bf16d14ce7f7163082bf82", - "symbol": "METAQ", - "decimals": 18, - "name": "MetaQ", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x19da1f6a5c2aec9315bf16d14ce7f7163082bf82.png", - "aggregators": [ - "PancakeCoinMarketCap", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 4 - }, - "0x03ac6ab6a9a91a0fcdec7d85b38bdfbb719ec02f": { - "address": "0x03ac6ab6a9a91a0fcdec7d85b38bdfbb719ec02f", - "symbol": "MGA", - "decimals": 18, - "name": "Metagame Arena", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x03ac6ab6a9a91a0fcdec7d85b38bdfbb719ec02f.png", - "aggregators": [ - "PancakeCoinMarketCap", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 4 - }, - "0xbf37f781473f3b50e82c668352984865eac9853f": { - "address": "0xbf37f781473f3b50e82c668352984865eac9853f", - "symbol": "MILK", - "decimals": 18, - "name": "Milk", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xbf37f781473f3b50e82c668352984865eac9853f.png", - "aggregators": ["PancakeCoinMarketCap", "Socket", "Rubic", "Rango"], - "occurrences": 4 - }, - "0x6d4e8507084c7b58d33b3b88915591670f959b2f": { - "address": "0x6d4e8507084c7b58d33b3b88915591670f959b2f", - "symbol": "MINAR", - "decimals": 18, - "name": "Miner Arena", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x6d4e8507084c7b58d33b3b88915591670f959b2f.png", - "aggregators": [ - "PancakeCoinMarketCap", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 4 - }, - "0x934b0633f4874ca9340341ad66ff2f6ce3124b4c": { - "address": "0x934b0633f4874ca9340341ad66ff2f6ce3124b4c", - "symbol": "MISA", - "decimals": 18, - "name": "Sangkara", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x934b0633f4874ca9340341ad66ff2f6ce3124b4c.png", - "aggregators": [ - "PancakeCoinMarketCap", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 4 - }, - "0xcd03f8a59252f317a679eddb5315150f40d06e5e": { - "address": "0xcd03f8a59252f317a679eddb5315150f40d06e5e", - "symbol": "MNR", - "decimals": 18, - "name": "Mooner", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xcd03f8a59252f317a679eddb5315150f40d06e5e.png", - "aggregators": [ - "PancakeCoinMarketCap", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 4 - }, - "0x211fa9e7e390c29b0ab1a9248949a0ab716c4154": { - "address": "0x211fa9e7e390c29b0ab1a9248949a0ab716c4154", - "symbol": "MOM", - "decimals": 9, - "name": "Mother of Memes", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x211fa9e7e390c29b0ab1a9248949a0ab716c4154.png", - "aggregators": [ - "PancakeCoinMarketCap", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 4 - }, - "0x7e60c74b9096f8fa6fb5a9fd88405ded8b7d44f3": { - "address": "0x7e60c74b9096f8fa6fb5a9fd88405ded8b7d44f3", - "symbol": "MONIE", - "decimals": 18, - "name": "Infiblue World", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x7e60c74b9096f8fa6fb5a9fd88405ded8b7d44f3.png", - "aggregators": [ - "PancakeCoinMarketCap", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 4 - }, - "0x9073b858a7cdf121e6bf8d1367e200e5d0cc0188": { - "address": "0x9073b858a7cdf121e6bf8d1367e200e5d0cc0188", - "symbol": "MOONION", - "decimals": 18, - "name": "Moonions", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x9073b858a7cdf121e6bf8d1367e200e5d0cc0188.png", - "aggregators": [ - "PancakeCoinMarketCap", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 4 - }, - "0xf3f3d7f713df0447e9595d9b830a5f00297070e4": { - "address": "0xf3f3d7f713df0447e9595d9b830a5f00297070e4", - "symbol": "MOT", - "decimals": 9, - "name": "Mother Earth", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xf3f3d7f713df0447e9595d9b830a5f00297070e4.png", - "aggregators": [ - "PancakeCoinMarketCap", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 4 - }, - "0x11d1ac5ec23e3a193e8a491a198f5fc9ee715839": { - "address": "0x11d1ac5ec23e3a193e8a491a198f5fc9ee715839", - "symbol": "MPAD", - "decimals": 18, - "name": "MultiPad", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x11d1ac5ec23e3a193e8a491a198f5fc9ee715839.png", - "aggregators": [ - "PancakeCoinMarketCap", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 4 - }, - "0x94c6b279b5df54b335ae51866d6e2a56bf5ef9b7": { - "address": "0x94c6b279b5df54b335ae51866d6e2a56bf5ef9b7", - "symbol": "MPX", - "decimals": 18, - "name": "MPX", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x94c6b279b5df54b335ae51866d6e2a56bf5ef9b7.png", - "aggregators": ["PancakeCoinGecko", "Rubic", "Squid", "Rango"], - "occurrences": 4 - }, - "0xdd5a149740c055bdcdc5c066888f739dbe0bf2d0": { - "address": "0xdd5a149740c055bdcdc5c066888f739dbe0bf2d0", - "symbol": "MSWAP", - "decimals": 18, - "name": "MoneySwap", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xdd5a149740c055bdcdc5c066888f739dbe0bf2d0.png", - "aggregators": [ - "PancakeCoinMarketCap", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 4 - }, - "0xcc0d48a5530cca0481105ccd61a14c495a51c901": { - "address": "0xcc0d48a5530cca0481105ccd61a14c495a51c901", - "symbol": "MTHN", - "decimals": 12, - "name": "MTH Network", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xcc0d48a5530cca0481105ccd61a14c495a51c901.png", - "aggregators": [ - "PancakeCoinMarketCap", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 4 - }, - "0x08b87b1cfdba00dfb79d77cac1a5970ba6c9cde2": { - "address": "0x08b87b1cfdba00dfb79d77cac1a5970ba6c9cde2", - "symbol": "MTRX", - "decimals": 18, - "name": "Metarix", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x08b87b1cfdba00dfb79d77cac1a5970ba6c9cde2.png", - "aggregators": [ - "PancakeCoinMarketCap", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 4 - }, - "0xf8bacadc39f2bfe86df4c48a1e87c9aa89d7d018": { - "address": "0xf8bacadc39f2bfe86df4c48a1e87c9aa89d7d018", - "symbol": "MVU", - "decimals": 18, - "name": "Memes vs Undead", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xf8bacadc39f2bfe86df4c48a1e87c9aa89d7d018.png", - "aggregators": [ - "PancakeCoinMarketCap", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 4 - }, - "0xdf1f7adf59a178ba83f6140a4930cf3beb7b73bf": { - "address": "0xdf1f7adf59a178ba83f6140a4930cf3beb7b73bf", - "symbol": "MXD", - "decimals": 9, - "name": "Denarius MXD", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xdf1f7adf59a178ba83f6140a4930cf3beb7b73bf.png", - "aggregators": [ - "PancakeCoinMarketCap", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 4 - }, - "0x5989d72a559eb0192f2d20170a43a4bd28a1b174": { - "address": "0x5989d72a559eb0192f2d20170a43a4bd28a1b174", - "symbol": "N1", - "decimals": 18, - "name": "NFTify", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x5989d72a559eb0192f2d20170a43a4bd28a1b174.png", - "aggregators": [ - "PancakeCoinMarketCap", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 4 - }, - "0x74c22834744e8d5e36c79420ff7b057964aba8a7": { - "address": "0x74c22834744e8d5e36c79420ff7b057964aba8a7", - "symbol": "NBP", - "decimals": 18, - "name": "NFTBomb", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x74c22834744e8d5e36c79420ff7b057964aba8a7.png", - "aggregators": [ - "PancakeCoinMarketCap", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 4 - }, - "0xe7498f332c35a346b486f3f6a68f05934e92a228": { - "address": "0xe7498f332c35a346b486f3f6a68f05934e92a228", - "symbol": "NEVA", - "decimals": 18, - "name": "NevaCoin", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xe7498f332c35a346b486f3f6a68f05934e92a228.png", - "aggregators": [ - "PancakeCoinMarketCap", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 4 - }, - "0x5ac5e6af46ef285b3536833e65d245c49b608d9b": { - "address": "0x5ac5e6af46ef285b3536833e65d245c49b608d9b", - "symbol": "NIOB", - "decimals": 18, - "name": "NIOB", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x5ac5e6af46ef285b3536833e65d245c49b608d9b.png", - "aggregators": [ - "PancakeCoinMarketCap", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 4 - }, - "0xa67ed14c65e7b717674f0d66570c13e77583a68f": { - "address": "0xa67ed14c65e7b717674f0d66570c13e77583a68f", - "symbol": "NMD", - "decimals": 18, - "name": "NexusMind", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xa67ed14c65e7b717674f0d66570c13e77583a68f.png", - "aggregators": [ - "PancakeCoinMarketCap", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 4 - }, - "0x30683d46edd7e2a52402e5301b14db33bd4ff550": { - "address": "0x30683d46edd7e2a52402e5301b14db33bd4ff550", - "symbol": "NOMOX", - "decimals": 8, - "name": "NOMOEX Token", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x30683d46edd7e2a52402e5301b14db33bd4ff550.png", - "aggregators": [ - "PancakeCoinMarketCap", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 4 - }, - "0x57f12fe6a4e5fe819eec699fadf9db2d06606bb4": { - "address": "0x57f12fe6a4e5fe819eec699fadf9db2d06606bb4", - "symbol": "NPM", - "decimals": 18, - "name": "Neptune Mutual", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x57f12fe6a4e5fe819eec699fadf9db2d06606bb4.png", - "aggregators": [ - "PancakeCoinMarketCap", - "Rubic", - "Rango", - "SushiSwap" - ], - "occurrences": 4 - }, - "0x69fa8e7f6bf1ca1fb0de61e1366f7412b827cc51": { - "address": "0x69fa8e7f6bf1ca1fb0de61e1366f7412b827cc51", - "symbol": "NRCH", - "decimals": 9, - "name": "Enreach", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x69fa8e7f6bf1ca1fb0de61e1366f7412b827cc51.png", - "aggregators": [ - "PancakeCoinMarketCap", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 4 - }, - "0x9d71ce49ab8a0e6d2a1e7bfb89374c9392fd6804": { - "address": "0x9d71ce49ab8a0e6d2a1e7bfb89374c9392fd6804", - "symbol": "NVIR", - "decimals": 18, - "name": "NvirWorld", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x9d71ce49ab8a0e6d2a1e7bfb89374c9392fd6804.png", - "aggregators": [ - "PancakeCoinMarketCap", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 4 - }, - "0x0c27b49db71a9fb6e9cf97f7cbb0cf3f0e97f920": { - "address": "0x0c27b49db71a9fb6e9cf97f7cbb0cf3f0e97f920", - "symbol": "NYANTE", - "decimals": 18, - "name": "Nyantereum International", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x0c27b49db71a9fb6e9cf97f7cbb0cf3f0e97f920.png", - "aggregators": [ - "PancakeCoinMarketCap", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 4 - }, - "0xa94fb437b8bacb591c6b828bef5a837afe542100": { - "address": "0xa94fb437b8bacb591c6b828bef5a837afe542100", - "symbol": "NZERO", - "decimals": 18, - "name": "NETZERO", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xa94fb437b8bacb591c6b828bef5a837afe542100.png", - "aggregators": [ - "PancakeCoinMarketCap", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 4 - }, - "0x095956b142431eb9cf88b99f392540b91acbf4ad": { - "address": "0x095956b142431eb9cf88b99f392540b91acbf4ad", - "symbol": "OBS", - "decimals": 18, - "name": "One Basis Cash", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x095956b142431eb9cf88b99f392540b91acbf4ad.png", - "aggregators": [ - "PancakeCoinMarketCap", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 4 - }, - "0x07f9702ce093db82dfdc92c2c6e578d6ea8d5e22": { - "address": "0x07f9702ce093db82dfdc92c2c6e578d6ea8d5e22", - "symbol": "OBT", - "decimals": 18, - "name": "Oobit", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x07f9702ce093db82dfdc92c2c6e578d6ea8d5e22.png", - "aggregators": [ - "PancakeCoinMarketCap", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 4 - }, - "0xb0461d7e8212d311b842a58e9989ede849ac6816": { - "address": "0xb0461d7e8212d311b842a58e9989ede849ac6816", - "symbol": "OLAND", - "decimals": 18, - "name": "OceanLand", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xb0461d7e8212d311b842a58e9989ede849ac6816.png", - "aggregators": [ - "PancakeCoinMarketCap", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 4 - }, - "0xa2f89a3be1bada5eb9d58d23edc2e2fe0f82f4b0": { - "address": "0xa2f89a3be1bada5eb9d58d23edc2e2fe0f82f4b0", - "symbol": "OPA", - "decimals": 18, - "name": "Option Panda Platform", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xa2f89a3be1bada5eb9d58d23edc2e2fe0f82f4b0.png", - "aggregators": [ - "PancakeCoinMarketCap", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 4 - }, - "0x7a656f418afc09eaf4ae8b75eae74fe09e7a7706": { - "address": "0x7a656f418afc09eaf4ae8b75eae74fe09e7a7706", - "symbol": "OPY", - "decimals": 18, - "name": "OPYx", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x7a656f418afc09eaf4ae8b75eae74fe09e7a7706.png", - "aggregators": ["PancakeCoinGecko", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0xb0dba141b38e61d704168fab3ce7366575c503ad": { - "address": "0xb0dba141b38e61d704168fab3ce7366575c503ad", - "symbol": "ORE", - "decimals": 18, - "name": "Orenium Protocol", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xb0dba141b38e61d704168fab3ce7366575c503ad.png", - "aggregators": [ - "PancakeCoinMarketCap", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 4 - }, - "0xd61ec800066d4b8b1b3609ef91d50817193e6056": { - "address": "0xd61ec800066d4b8b1b3609ef91d50817193e6056", - "symbol": "PACT", - "decimals": 18, - "name": "impactMarket OLD ", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xd61ec800066d4b8b1b3609ef91d50817193e6056.png", - "aggregators": ["PancakeCoinGecko", "Socket", "Rubic", "Rango"], - "occurrences": 4 - }, - "0xa2dd9651f54320022af562ce5b25aea69b3b444c": { - "address": "0xa2dd9651f54320022af562ce5b25aea69b3b444c", - "symbol": "PAPA", - "decimals": 18, - "name": "PAPA BEAR", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xa2dd9651f54320022af562ce5b25aea69b3b444c.png", - "aggregators": [ - "PancakeCoinMarketCap", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 4 - }, - "0x91dba2cd05c8a0227b48c3e426077145d23b21df": { - "address": "0x91dba2cd05c8a0227b48c3e426077145d23b21df", - "symbol": "PAPU", - "decimals": 18, - "name": "Papu Token", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x91dba2cd05c8a0227b48c3e426077145d23b21df.png", - "aggregators": [ - "PancakeCoinMarketCap", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 4 - }, - "0xf7f0dc9fd88e436847580d883319137ec2aa6b94": { - "address": "0xf7f0dc9fd88e436847580d883319137ec2aa6b94", - "symbol": "PARMA", - "decimals": 18, - "name": "Parma Calcio 1913 Fan Token", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xf7f0dc9fd88e436847580d883319137ec2aa6b94.png", - "aggregators": [ - "PancakeCoinMarketCap", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 4 - }, - "0xfc914ecb4e4cbeea1fcf5315129c6cdb398cd465": { - "address": "0xfc914ecb4e4cbeea1fcf5315129c6cdb398cd465", - "symbol": "PAWS", - "decimals": 18, - "name": "PawStars", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xfc914ecb4e4cbeea1fcf5315129c6cdb398cd465.png", - "aggregators": [ - "PancakeCoinMarketCap", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 4 - }, - "0xdb5642fc3ffd7a8bdc2c837197736c54b120872d": { - "address": "0xdb5642fc3ffd7a8bdc2c837197736c54b120872d", - "symbol": "PAYS", - "decimals": 18, - "name": "Payslink Token", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xdb5642fc3ffd7a8bdc2c837197736c54b120872d.png", - "aggregators": [ - "PancakeCoinMarketCap", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 4 - }, - "0xb823746401d03ce7b4d748bb3e9c7a4912c68377": { - "address": "0xb823746401d03ce7b4d748bb3e9c7a4912c68377", - "symbol": "PAYX", - "decimals": 18, - "name": "PayX", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xb823746401d03ce7b4d748bb3e9c7a4912c68377.png", - "aggregators": [ - "PancakeCoinMarketCap", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 4 - }, - "0x1d1cb8997570e73949930c01fe5796c88d7336c6": { - "address": "0x1d1cb8997570e73949930c01fe5796c88d7336c6", - "symbol": "PBR", - "decimals": 18, - "name": "PolkaBridge", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x1d1cb8997570e73949930c01fe5796c88d7336c6.png", - "aggregators": ["PancakeCoinMarketCap", "Socket", "Rubic", "Rango"], - "occurrences": 4 - }, - "0xc1cbfb96a1d5361590b8df04ef78de2fa3178390": { - "address": "0xc1cbfb96a1d5361590b8df04ef78de2fa3178390", - "symbol": "PCHF", - "decimals": 18, - "name": "Peachfolio", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xc1cbfb96a1d5361590b8df04ef78de2fa3178390.png", - "aggregators": [ - "PancakeCoinMarketCap", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 4 - }, - "0x0fc170b2b697f9a97a2fe4ae26b02495aa5ff2c2": { - "address": "0x0fc170b2b697f9a97a2fe4ae26b02495aa5ff2c2", - "symbol": "PEACHY", - "decimals": 18, - "name": "PEACHY", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x0fc170b2b697f9a97a2fe4ae26b02495aa5ff2c2.png", - "aggregators": [ - "PancakeCoinMarketCap", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 4 - }, - "0xd585f9c5953ca97da3551f20725a274c9e442ff3": { - "address": "0xd585f9c5953ca97da3551f20725a274c9e442ff3", - "symbol": "PEG", - "decimals": 9, - "name": "Pegazus Finance", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xd585f9c5953ca97da3551f20725a274c9e442ff3.png", - "aggregators": [ - "PancakeCoinMarketCap", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 4 - }, - "0x22178c1b9e0455d5d20661e5aa8f34354f888888": { - "address": "0x22178c1b9e0455d5d20661e5aa8f34354f888888", - "symbol": "PEIPEI", - "decimals": 18, - "name": "Chinese PEPE", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x22178c1b9e0455d5d20661e5aa8f34354f888888.png", - "aggregators": [ - "PancakeCoinGecko", - "Socket", - "Rubic", - "Sonarwatch" - ], - "occurrences": 4 - }, - "0xa5dec77c4d1b4eba2807c9926b182812a0cbf9eb": { - "address": "0xa5dec77c4d1b4eba2807c9926b182812a0cbf9eb", - "symbol": "PEN", - "decimals": 18, - "name": "Protocon", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xa5dec77c4d1b4eba2807c9926b182812a0cbf9eb.png", - "aggregators": [ - "PancakeCoinMarketCap", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 4 - }, - "0x47fd014706081068448b89fc6baca2730977216a": { - "address": "0x47fd014706081068448b89fc6baca2730977216a", - "symbol": "PEPEBNB", - "decimals": 9, - "name": "Pepe the Frog", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x47fd014706081068448b89fc6baca2730977216a.png", - "aggregators": [ - "PancakeCoinMarketCap", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 4 - }, - "0x2a5472268d5b176f5ef28d7a53c8258bbce26313": { - "address": "0x2a5472268d5b176f5ef28d7a53c8258bbce26313", - "symbol": "PEPECASH", - "decimals": 18, - "name": "PEPECASH", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x2a5472268d5b176f5ef28d7a53c8258bbce26313.png", - "aggregators": [ - "PancakeCoinMarketCap", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 4 - }, - "0xa7ebcb0da35a8b6d2ea6943faec8949676a316cd": { - "address": "0xa7ebcb0da35a8b6d2ea6943faec8949676a316cd", - "symbol": "PERRY", - "decimals": 18, - "name": "Perry The BNB", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xa7ebcb0da35a8b6d2ea6943faec8949676a316cd.png", - "aggregators": [ - "PancakeCoinMarketCap", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 4 - }, - "0x33a64943a0eaecc2b06b10f89686b797ba75ffad": { - "address": "0x33a64943a0eaecc2b06b10f89686b797ba75ffad", - "symbol": "PGPT", - "decimals": 6, - "name": "PrivateAI", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x33a64943a0eaecc2b06b10f89686b797ba75ffad.png", - "aggregators": [ - "PancakeCoinMarketCap", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 4 - }, - "0x4399ae7538c33ca24edd4c28c5dd7ce9a80acf81": { - "address": "0x4399ae7538c33ca24edd4c28c5dd7ce9a80acf81", - "symbol": "PHM", - "decimals": 18, - "name": "Phantom Protocol", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x4399ae7538c33ca24edd4c28c5dd7ce9a80acf81.png", - "aggregators": [ - "PancakeCoinMarketCap", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 4 - }, - "0x880ab5bede12d05e125ce21689d8a5e230b38cd6": { - "address": "0x880ab5bede12d05e125ce21689d8a5e230b38cd6", - "symbol": "PIKA", - "decimals": 18, - "name": "Pika Protocol", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x880ab5bede12d05e125ce21689d8a5e230b38cd6.png", - "aggregators": [ - "PancakeCoinMarketCap", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 4 - }, - "0x7de324ad84858484f1fa7cb3d6777b74942d7a55": { - "address": "0x7de324ad84858484f1fa7cb3d6777b74942d7a55", - "symbol": "PIPE", - "decimals": 18, - "name": "Quantum Pipeline", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x7de324ad84858484f1fa7cb3d6777b74942d7a55.png", - "aggregators": ["PancakeCoinGecko", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0x47db24e17c0c4622523449a239b3de746e2b0b23": { - "address": "0x47db24e17c0c4622523449a239b3de746e2b0b23", - "symbol": "PIXEL", - "decimals": 18, - "name": "PixelVerse", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x47db24e17c0c4622523449a239b3de746e2b0b23.png", - "aggregators": [ - "PancakeCoinMarketCap", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 4 - }, - "0xfc646d0b564bf191b3d3adf2b620a792e485e6da": { - "address": "0xfc646d0b564bf191b3d3adf2b620a792e485e6da", - "symbol": "PIZA", - "decimals": 18, - "name": "Half Pizza", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xfc646d0b564bf191b3d3adf2b620a792e485e6da.png", - "aggregators": [ - "PancakeCoinMarketCap", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 4 - }, - "0xfe642f7463b7a2ab67690209ed5a070a46b66064": { - "address": "0xfe642f7463b7a2ab67690209ed5a070a46b66064", - "symbol": "PLAYFI", - "decimals": 18, - "name": "PlayFi", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xfe642f7463b7a2ab67690209ed5a070a46b66064.png", - "aggregators": ["PancakeCoinGecko", "Socket", "Rubic", "Rango"], - "occurrences": 4 - }, - "0x320f6c1304e1a2a50a0febb62ba6a9700043d152": { - "address": "0x320f6c1304e1a2a50a0febb62ba6a9700043d152", - "symbol": "PME", - "decimals": 18, - "name": "Pomerium Community Meme Token", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x320f6c1304e1a2a50a0febb62ba6a9700043d152.png", - "aggregators": [ - "PancakeCoinMarketCap", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 4 - }, - "0x6c1efbed2f57dd486ec091dffd08ee5235a570b1": { - "address": "0x6c1efbed2f57dd486ec091dffd08ee5235a570b1", - "symbol": "PNDR", - "decimals": 18, - "name": "Pandora Finance", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x6c1efbed2f57dd486ec091dffd08ee5235a570b1.png", - "aggregators": [ - "PancakeCoinMarketCap", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 4 - }, - "0x63bc9770ea9a2f21df6cc1224d64d8dec9c61a74": { - "address": "0x63bc9770ea9a2f21df6cc1224d64d8dec9c61a74", - "symbol": "POP", - "decimals": 18, - "name": "Popcoin", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x63bc9770ea9a2f21df6cc1224d64d8dec9c61a74.png", - "aggregators": [ - "PancakeCoinMarketCap", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 4 - }, - "0x1bb76a939d6b7f5be6b95c4f9f822b02b4d62ced": { - "address": "0x1bb76a939d6b7f5be6b95c4f9f822b02b4d62ced", - "symbol": "POP", - "decimals": 18, - "name": "POP Network", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x1bb76a939d6b7f5be6b95c4f9f822b02b4d62ced.png", - "aggregators": [ - "PancakeCoinMarketCap", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 4 - }, - "0xdf061250302e5ccae091b18ca2b45914d785f214": { - "address": "0xdf061250302e5ccae091b18ca2b45914d785f214", - "symbol": "PPT", - "decimals": 18, - "name": "Pop Token", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xdf061250302e5ccae091b18ca2b45914d785f214.png", - "aggregators": [ - "PancakeCoinMarketCap", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 4 - }, - "0x9f402f44684574f3535ea6f1bb5cfbffef42ee28": { - "address": "0x9f402f44684574f3535ea6f1bb5cfbffef42ee28", - "symbol": "PRNT", - "decimals": 18, - "name": "PrimeNumbers", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x9f402f44684574f3535ea6f1bb5cfbffef42ee28.png", - "aggregators": ["PancakeCoinGecko", "Socket", "Rubic", "Rango"], - "occurrences": 4 - }, - "0x84afb95ca5589674e02d227bdd6da7e7dcf31a3e": { - "address": "0x84afb95ca5589674e02d227bdd6da7e7dcf31a3e", - "symbol": "PRP", - "decimals": 9, - "name": "Perpetuum Coin", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x84afb95ca5589674e02d227bdd6da7e7dcf31a3e.png", - "aggregators": [ - "PancakeCoinMarketCap", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 4 - }, - "0xaf00aac2431b04ef6afd904d19b08d5146e3a9a0": { - "address": "0xaf00aac2431b04ef6afd904d19b08d5146e3a9a0", - "symbol": "PRT", - "decimals": 18, - "name": "Portion", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xaf00aac2431b04ef6afd904d19b08d5146e3a9a0.png", - "aggregators": ["PancakeCoinMarketCap", "Socket", "Rubic", "Rango"], - "occurrences": 4 - }, - "0xda2c0cdf7d764f8c587380cadf7129e5ecb7efb7": { - "address": "0xda2c0cdf7d764f8c587380cadf7129e5ecb7efb7", - "symbol": "PUPPETS", - "decimals": 18, - "name": "Puppets Coin", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xda2c0cdf7d764f8c587380cadf7129e5ecb7efb7.png", - "aggregators": [ - "PancakeCoinMarketCap", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 4 - }, - "0xeb79c85c6d633ae81c97be71e1691ee7dc6e132d": { - "address": "0xeb79c85c6d633ae81c97be71e1691ee7dc6e132d", - "symbol": "PXT", - "decimals": 18, - "name": "Pixer Eternity", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xeb79c85c6d633ae81c97be71e1691ee7dc6e132d.png", - "aggregators": [ - "PancakeCoinMarketCap", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 4 - }, - "0xe6df015f66653ece085a5fbba8d42c356114ce4f": { - "address": "0xe6df015f66653ece085a5fbba8d42c356114ce4f", - "symbol": "PYO", - "decimals": 18, - "name": "Pyrrho", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xe6df015f66653ece085a5fbba8d42c356114ce4f.png", - "aggregators": [ - "PancakeCoinMarketCap", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 4 - }, - "0x921d3a6ed8223afb6358410f717e2fb13cbae700": { - "address": "0x921d3a6ed8223afb6358410f717e2fb13cbae700", - "symbol": "QRT", - "decimals": 9, - "name": "Qrkita", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x921d3a6ed8223afb6358410f717e2fb13cbae700.png", - "aggregators": [ - "PancakeCoinMarketCap", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 4 - }, - "0x4c8a3a1025ab87ef184cb7f0691a5a371fe783a6": { - "address": "0x4c8a3a1025ab87ef184cb7f0691a5a371fe783a6", - "symbol": "RAKE", - "decimals": 6, - "name": "Rake.in", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x4c8a3a1025ab87ef184cb7f0691a5a371fe783a6.png", - "aggregators": ["PancakeCoinMarketCap", "Socket", "Rubic", "Rango"], - "occurrences": 4 - }, - "0x891e4554227385c5c740f9b483e935e3cbc29f01": { - "address": "0x891e4554227385c5c740f9b483e935e3cbc29f01", - "symbol": "RBT", - "decimals": 18, - "name": "Robust", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x891e4554227385c5c740f9b483e935e3cbc29f01.png", - "aggregators": [ - "PancakeCoinMarketCap", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 4 - }, - "0xf29cccc3460506e8f9bc038d4716c05b76b0441e": { - "address": "0xf29cccc3460506e8f9bc038d4716c05b76b0441e", - "symbol": "RDF", - "decimals": 18, - "name": "ReadFi", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xf29cccc3460506e8f9bc038d4716c05b76b0441e.png", - "aggregators": [ - "PancakeCoinMarketCap", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 4 - }, - "0x641a6dc991a49f7be9fe3c72c5d0fbb223edb12f": { - "address": "0x641a6dc991a49f7be9fe3c72c5d0fbb223edb12f", - "symbol": "REFI", - "decimals": 18, - "name": "RealfinanceNetwork", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x641a6dc991a49f7be9fe3c72c5d0fbb223edb12f.png", - "aggregators": ["PancakeCoinMarketCap", "Socket", "Rubic", "Rango"], - "occurrences": 4 - }, - "0xb44c63a09adf51f5e62cc7b63628b1b789941fa0": { - "address": "0xb44c63a09adf51f5e62cc7b63628b1b789941fa0", - "symbol": "RFX", - "decimals": 9, - "name": "Reflex", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xb44c63a09adf51f5e62cc7b63628b1b789941fa0.png", - "aggregators": [ - "PancakeCoinMarketCap", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 4 - }, - "0xd73e883e203646e87f6d073baf3d7719bda68bcb": { - "address": "0xd73e883e203646e87f6d073baf3d7719bda68bcb", - "symbol": "RHYTHM", - "decimals": 9, - "name": "Rhythm", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xd73e883e203646e87f6d073baf3d7719bda68bcb.png", - "aggregators": [ - "PancakeCoinMarketCap", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 4 - }, - "0xc0994af94fee0361a1e1e1ccf72bce19d5fd86fb": { - "address": "0xc0994af94fee0361a1e1e1ccf72bce19d5fd86fb", - "symbol": "RICH", - "decimals": 9, - "name": "RichCity", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xc0994af94fee0361a1e1e1ccf72bce19d5fd86fb.png", - "aggregators": [ - "PancakeCoinMarketCap", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 4 - }, - "0xa25199a79a34cc04b15e5c0bba4e3a557364e532": { - "address": "0xa25199a79a34cc04b15e5c0bba4e3a557364e532", - "symbol": "RIM", - "decimals": 18, - "name": "MetaRim", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xa25199a79a34cc04b15e5c0bba4e3a557364e532.png", - "aggregators": [ - "PancakeCoinMarketCap", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 4 - }, - "0x8c49a510756224e887b3d99d00d959f2d86dda1c": { - "address": "0x8c49a510756224e887b3d99d00d959f2d86dda1c", - "symbol": "RIO", - "decimals": 18, - "name": "Realio Network", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x8c49a510756224e887b3d99d00d959f2d86dda1c.png", - "aggregators": ["PancakeCoinGecko", "Socket", "Rubic", "Rango"], - "occurrences": 4 - }, - "0x788d2780992222360f674cc12c36478870b8e6ed": { - "address": "0x788d2780992222360f674cc12c36478870b8e6ed", - "symbol": "S4F", - "decimals": 18, - "name": "S4FE", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x788d2780992222360f674cc12c36478870b8e6ed.png", - "aggregators": [ - "PancakeCoinMarketCap", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 4 - }, - "0x5cdabc6bc3b14a77a502cce5ea05d04a0cf52557": { - "address": "0x5cdabc6bc3b14a77a502cce5ea05d04a0cf52557", - "symbol": "SAFEMOO", - "decimals": 18, - "name": "SafeMoo", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x5cdabc6bc3b14a77a502cce5ea05d04a0cf52557.png", - "aggregators": [ - "PancakeCoinMarketCap", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 4 - }, - "0x890cc7d14948478c98a6cd7f511e1f7f7f99f397": { - "address": "0x890cc7d14948478c98a6cd7f511e1f7f7f99f397", - "symbol": "SAFU", - "decimals": 9, - "name": "StaySAFU", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x890cc7d14948478c98a6cd7f511e1f7f7f99f397.png", - "aggregators": [ - "PancakeCoinMarketCap", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 4 - }, - "0x4d496efc21754481fe7a9f3f0f758785ade8e1d3": { - "address": "0x4d496efc21754481fe7a9f3f0f758785ade8e1d3", - "symbol": "SANINU", - "decimals": 18, - "name": "Santa Inu", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x4d496efc21754481fe7a9f3f0f758785ade8e1d3.png", - "aggregators": [ - "PancakeCoinMarketCap", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 4 - }, - "0xf251d850898758775958691df66895d0b5f837ad": { - "address": "0xf251d850898758775958691df66895d0b5f837ad", - "symbol": "SAP", - "decimals": 9, - "name": "Satoshi Panda", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xf251d850898758775958691df66895d0b5f837ad.png", - "aggregators": [ - "PancakeCoinMarketCap", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 4 - }, - "0x6af2f57f61cec0883c71f3175774ebeb290a10e6": { - "address": "0x6af2f57f61cec0883c71f3175774ebeb290a10e6", - "symbol": "SCIE", - "decimals": 9, - "name": "Scientia", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x6af2f57f61cec0883c71f3175774ebeb290a10e6.png", - "aggregators": [ - "PancakeCoinMarketCap", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 4 - }, - "0x510aeb87665d3fce5395a62045c5b7ae8990bf35": { - "address": "0x510aeb87665d3fce5395a62045c5b7ae8990bf35", - "symbol": "SDX", - "decimals": 18, - "name": "Steakd", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x510aeb87665d3fce5395a62045c5b7ae8990bf35.png", - "aggregators": [ - "PancakeCoinMarketCap", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 4 - }, - "0x5de40c1152c990492eaeaeecc4ecaab788bbc4fd": { - "address": "0x5de40c1152c990492eaeaeecc4ecaab788bbc4fd", - "symbol": "SEF", - "decimals": 18, - "name": "Segment Finance", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x5de40c1152c990492eaeaeecc4ecaab788bbc4fd.png", - "aggregators": ["PancakeCoinGecko", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0x63e77cf206801782239d4f126cfa22b517fb4edb": { - "address": "0x63e77cf206801782239d4f126cfa22b517fb4edb", - "symbol": "SENSI", - "decimals": 9, - "name": "Sensi", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x63e77cf206801782239d4f126cfa22b517fb4edb.png", - "aggregators": [ - "PancakeCoinMarketCap", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 4 - }, - "0x965b85d4674f64422c4898c8f8083187f02b32c0": { - "address": "0x965b85d4674f64422c4898c8f8083187f02b32c0", - "symbol": "SFIL", - "decimals": 8, - "name": "Filecoin Standard Full Hashrate", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x965b85d4674f64422c4898c8f8083187f02b32c0.png", - "aggregators": [ - "PancakeCoinMarketCap", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 4 - }, - "0xe9d6d6d7cde5c7d45927f8c37460d932e612c902": { - "address": "0xe9d6d6d7cde5c7d45927f8c37460d932e612c902", - "symbol": "SFTY", - "decimals": 18, - "name": "Stella Fantasy Token", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xe9d6d6d7cde5c7d45927f8c37460d932e612c902.png", - "aggregators": [ - "PancakeCoinMarketCap", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 4 - }, - "0x5f50411cde3eec27b0eac21691b4e500c69a5a2e": { - "address": "0x5f50411cde3eec27b0eac21691b4e500c69a5a2e", - "symbol": "SGLY", - "decimals": 18, - "name": "Singularity", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x5f50411cde3eec27b0eac21691b4e500c69a5a2e.png", - "aggregators": [ - "PancakeCoinMarketCap", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 4 - }, - "0x783fe4a84645431b31b914b609b86127b96057ea": { - "address": "0x783fe4a84645431b31b914b609b86127b96057ea", - "symbol": "SGT", - "decimals": 9, - "name": "SpaceGoat", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x783fe4a84645431b31b914b609b86127b96057ea.png", - "aggregators": [ - "PancakeCoinMarketCap", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 4 - }, - "0x1f6c1516bdeba1a01643b792eb12d68cec8658ba": { - "address": "0x1f6c1516bdeba1a01643b792eb12d68cec8658ba", - "symbol": "SHACK", - "decimals": 18, - "name": "Shackleford", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x1f6c1516bdeba1a01643b792eb12d68cec8658ba.png", - "aggregators": [ - "PancakeCoinMarketCap", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 4 - }, - "0x53c2a6cc05f9647d59201b19cb5f5e42cc6dc524": { - "address": "0x53c2a6cc05f9647d59201b19cb5f5e42cc6dc524", - "symbol": "SHAK", - "decimals": 9, - "name": "Shakita Inu", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x53c2a6cc05f9647d59201b19cb5f5e42cc6dc524.png", - "aggregators": [ - "PancakeCoinMarketCap", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 4 - }, - "0x864f20c06fff47e3130de2e1269d6067b67aa69d": { - "address": "0x864f20c06fff47e3130de2e1269d6067b67aa69d", - "symbol": "SHIBCEO", - "decimals": 9, - "name": "ShibCEO", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x864f20c06fff47e3130de2e1269d6067b67aa69d.png", - "aggregators": [ - "PancakeCoinMarketCap", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 4 - }, - "0xc0f42b31d154234a0a3ebe7ec52c662101c1d9bc": { - "address": "0xc0f42b31d154234a0a3ebe7ec52c662101c1d9bc", - "symbol": "SHOE", - "decimals": 18, - "name": "ShoeFy", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xc0f42b31d154234a0a3ebe7ec52c662101c1d9bc.png", - "aggregators": [ - "PancakeCoinMarketCap", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 4 - }, - "0xcfa784a3e9e7e9c88a845ab9afa8f3b95fcdf5d0": { - "address": "0xcfa784a3e9e7e9c88a845ab9afa8f3b95fcdf5d0", - "symbol": "SHR", - "decimals": 18, - "name": "SHREE", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xcfa784a3e9e7e9c88a845ab9afa8f3b95fcdf5d0.png", - "aggregators": [ - "PancakeCoinMarketCap", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 4 - }, - "0x68b5edb385b59e30a7a7db1e681a449e94df0213": { - "address": "0x68b5edb385b59e30a7a7db1e681a449e94df0213", - "symbol": "SILVA", - "decimals": 9, - "name": "Silva", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x68b5edb385b59e30a7a7db1e681a449e94df0213.png", - "aggregators": [ - "PancakeCoinMarketCap", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 4 - }, - "0x939dd9e433552e325d78c33a16ef4cd8004d2f9c": { - "address": "0x939dd9e433552e325d78c33a16ef4cd8004d2f9c", - "symbol": "SN", - "decimals": 18, - "name": "SpaceN", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x939dd9e433552e325d78c33a16ef4cd8004d2f9c.png", - "aggregators": [ - "PancakeCoinMarketCap", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 4 - }, - "0xf7d6243b937136d432adbc643f311b5a9436b0b0": { - "address": "0xf7d6243b937136d432adbc643f311b5a9436b0b0", - "symbol": "SNAKE", - "decimals": 18, - "name": "snake", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xf7d6243b937136d432adbc643f311b5a9436b0b0.png", - "aggregators": [ - "PancakeCoinMarketCap", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 4 - }, - "0x066cda0cca84e9c6ed0a4ecb92aa036a9582544b": { - "address": "0x066cda0cca84e9c6ed0a4ecb92aa036a9582544b", - "symbol": "SONIC", - "decimals": 9, - "name": "Sonic Inu", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x066cda0cca84e9c6ed0a4ecb92aa036a9582544b.png", - "aggregators": [ - "PancakeCoinMarketCap", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 4 - }, - "0xea136fc555e695ba96d22e10b7e2151c4c6b2a20": { - "address": "0xea136fc555e695ba96d22e10b7e2151c4c6b2a20", - "symbol": "SOURCE", - "decimals": 18, - "name": "ReSource Protocol", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xea136fc555e695ba96d22e10b7e2151c4c6b2a20.png", - "aggregators": [ - "PancakeCoinMarketCap", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 4 - }, - "0x156df0dd6300c73ac692d805720967cf4464776e": { - "address": "0x156df0dd6300c73ac692d805720967cf4464776e", - "symbol": "SPACES", - "decimals": 9, - "name": "AstroSpaces.io", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x156df0dd6300c73ac692d805720967cf4464776e.png", - "aggregators": [ - "PancakeCoinMarketCap", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 4 - }, - "0x1eaffd6b9ef0f45d663f3fbf402226c98609600e": { - "address": "0x1eaffd6b9ef0f45d663f3fbf402226c98609600e", - "symbol": "SPC", - "decimals": 18, - "name": "Storepay", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x1eaffd6b9ef0f45d663f3fbf402226c98609600e.png", - "aggregators": [ - "PancakeCoinMarketCap", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 4 - }, - "0xf1b6460e7fa76e7afddfe20740c260b0ec6807a8": { - "address": "0xf1b6460e7fa76e7afddfe20740c260b0ec6807a8", - "symbol": "SPEX", - "decimals": 18, - "name": "Speciex", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xf1b6460e7fa76e7afddfe20740c260b0ec6807a8.png", - "aggregators": [ - "PancakeCoinMarketCap", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 4 - }, - "0x8ea93d00cc6252e2bd02a34782487eed65738152": { - "address": "0x8ea93d00cc6252e2bd02a34782487eed65738152", - "symbol": "SPHRI", - "decimals": 18, - "name": "Spherium", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x8ea93d00cc6252e2bd02a34782487eed65738152.png", - "aggregators": [ - "PancakeCoinMarketCap", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 4 - }, - "0x6fc39ac154cfd20f1951a2823abab7ec471b783a": { - "address": "0x6fc39ac154cfd20f1951a2823abab7ec471b783a", - "symbol": "SPRITZMOON", - "decimals": 9, - "name": "SpritzMoon Crypto Token", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x6fc39ac154cfd20f1951a2823abab7ec471b783a.png", - "aggregators": [ - "PancakeCoinMarketCap", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 4 - }, - "0x722f41f6511ff7cda73a1cb0a9ea2f731738c4a0": { - "address": "0x722f41f6511ff7cda73a1cb0a9ea2f731738c4a0", - "symbol": "SRG", - "decimals": 18, - "name": "Street Runner", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x722f41f6511ff7cda73a1cb0a9ea2f731738c4a0.png", - "aggregators": [ - "PancakeCoinMarketCap", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 4 - }, - "0xcb2b25e783a414f0d20a65afa741c51b1ad84c49": { - "address": "0xcb2b25e783a414f0d20a65afa741c51b1ad84c49", - "symbol": "SRP", - "decimals": 18, - "name": "Starpad", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xcb2b25e783a414f0d20a65afa741c51b1ad84c49.png", - "aggregators": [ - "PancakeCoinMarketCap", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 4 - }, - "0x5396734569e26101677eb39c89413f7fa7d8006f": { - "address": "0x5396734569e26101677eb39c89413f7fa7d8006f", - "symbol": "SSTX", - "decimals": 7, - "name": "Silver Stonks", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x5396734569e26101677eb39c89413f7fa7d8006f.png", - "aggregators": [ - "PancakeCoinMarketCap", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 4 - }, - "0x14220f5893e945eed36389905b991d6b972e04f0": { - "address": "0x14220f5893e945eed36389905b991d6b972e04f0", - "symbol": "STACKS", - "decimals": 18, - "name": "STACKS", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x14220f5893e945eed36389905b991d6b972e04f0.png", - "aggregators": [ - "PancakeCoinMarketCap", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 4 - }, - "0x7f14ce2a5df31ad0d2bf658d3840b1f7559d3ee0": { - "address": "0x7f14ce2a5df31ad0d2bf658d3840b1f7559d3ee0", - "symbol": "STAY", - "decimals": 18, - "name": "NFsTay", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x7f14ce2a5df31ad0d2bf658d3840b1f7559d3ee0.png", - "aggregators": [ - "PancakeCoinMarketCap", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 4 - }, - "0x34a279ece38f260a28c8872f416319e9b6aa428e": { - "address": "0x34a279ece38f260a28c8872f416319e9b6aa428e", - "symbol": "STERN", - "decimals": 18, - "name": "Staked Ethos Reserve Note", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x34a279ece38f260a28c8872f416319e9b6aa428e.png", - "aggregators": ["PancakeCoinGecko", "Rubic", "Squid", "Rango"], - "occurrences": 4 - }, - "0x65d9033cff96782394dab5dbef17fa771bbe1732": { - "address": "0x65d9033cff96782394dab5dbef17fa771bbe1732", - "symbol": "STORE", - "decimals": 18, - "name": "Bit Store", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x65d9033cff96782394dab5dbef17fa771bbe1732.png", - "aggregators": [ - "PancakeCoinMarketCap", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 4 - }, - "0x85ee8e3e0068edeeee960979958d7f61416a9d84": { - "address": "0x85ee8e3e0068edeeee960979958d7f61416a9d84", - "symbol": "STORY", - "decimals": 18, - "name": "Story", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x85ee8e3e0068edeeee960979958d7f61416a9d84.png", - "aggregators": [ - "PancakeCoinMarketCap", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 4 - }, - "0x82e7eb8f4c307f2dcf522fdca7b7038296584f29": { - "address": "0x82e7eb8f4c307f2dcf522fdca7b7038296584f29", - "symbol": "SWAT", - "decimals": 18, - "name": "SWTCoin", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x82e7eb8f4c307f2dcf522fdca7b7038296584f29.png", - "aggregators": [ - "PancakeCoinMarketCap", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 4 - }, - "0xb1a5e3068837fcff1f7f2abf592a5de7a20b2a40": { - "address": "0xb1a5e3068837fcff1f7f2abf592a5de7a20b2a40", - "symbol": "SWT", - "decimals": 18, - "name": "SmartWalletToken", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xb1a5e3068837fcff1f7f2abf592a5de7a20b2a40.png", - "aggregators": ["PancakeCoinMarketCap", "Socket", "Rubic", "Rango"], - "occurrences": 4 - }, - "0xdc8c498cfc915dba55f0524fa9f5e57288110ab9": { - "address": "0xdc8c498cfc915dba55f0524fa9f5e57288110ab9", - "symbol": "THING", - "decimals": 9, - "name": "Thing", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xdc8c498cfc915dba55f0524fa9f5e57288110ab9.png", - "aggregators": [ - "PancakeCoinMarketCap", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 4 - }, - "0xd79bc26c424bcb52eec2708d224868c1499422c8": { - "address": "0xd79bc26c424bcb52eec2708d224868c1499422c8", - "symbol": "TKD", - "decimals": 18, - "name": "TOKUDA", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xd79bc26c424bcb52eec2708d224868c1499422c8.png", - "aggregators": [ - "PancakeCoinMarketCap", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 4 - }, - "0x29a5daf6e3fdf964def07706ea1abee7ec03d021": { - "address": "0x29a5daf6e3fdf964def07706ea1abee7ec03d021", - "symbol": "TLC", - "decimals": 18, - "name": "Trillioner", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x29a5daf6e3fdf964def07706ea1abee7ec03d021.png", - "aggregators": [ - "PancakeCoinMarketCap", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 4 - }, - "0xaee433adebe0fbb88daa47ef0c1a513caa52ef02": { - "address": "0xaee433adebe0fbb88daa47ef0c1a513caa52ef02", - "symbol": "TOON", - "decimals": 18, - "name": "Pontoon", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xaee433adebe0fbb88daa47ef0c1a513caa52ef02.png", - "aggregators": [ - "PancakeCoinMarketCap", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 4 - }, - "0x7e8db69dcff9209e486a100e611b0af300c3374e": { - "address": "0x7e8db69dcff9209e486a100e611b0af300c3374e", - "symbol": "TRDC", - "decimals": 18, - "name": "Traders Coin", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x7e8db69dcff9209e486a100e611b0af300c3374e.png", - "aggregators": [ - "PancakeCoinMarketCap", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 4 - }, - "0xd3b77ac07c963b8cead47000a5208434d9a8734d": { - "address": "0xd3b77ac07c963b8cead47000a5208434d9a8734d", - "symbol": "TREES", - "decimals": 9, - "name": "Safetrees", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xd3b77ac07c963b8cead47000a5208434d9a8734d.png", - "aggregators": [ - "PancakeCoinMarketCap", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 4 - }, - "0x328ea6e5ba4cc4b58799f2aec3d8ba839f4314ba": { - "address": "0x328ea6e5ba4cc4b58799f2aec3d8ba839f4314ba", - "symbol": "$TRUMAGA", - "decimals": 18, - "name": "TrumpMAGA", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x328ea6e5ba4cc4b58799f2aec3d8ba839f4314ba.png", - "aggregators": [ - "PancakeCoinMarketCap", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 4 - }, - "0x29a75ec2d2b8a57fdc45094dc51fefd147c908d8": { - "address": "0x29a75ec2d2b8a57fdc45094dc51fefd147c908d8", - "symbol": "TUR", - "decimals": 18, - "name": "Turex", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x29a75ec2d2b8a57fdc45094dc51fefd147c908d8.png", - "aggregators": ["PancakeCoinGecko", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0xd9a44c40584288505931880c9915c6a5eb5f2fb1": { - "address": "0xd9a44c40584288505931880c9915c6a5eb5f2fb1", - "symbol": "TYPE", - "decimals": 18, - "name": "TypeIt", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xd9a44c40584288505931880c9915c6a5eb5f2fb1.png", - "aggregators": [ - "PancakeCoinMarketCap", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 4 - }, - "0x029b739ae68b258dd777bfb6ebb43c5b04617074": { - "address": "0x029b739ae68b258dd777bfb6ebb43c5b04617074", - "symbol": "ULD", - "decimals": 18, - "name": "Unlighted", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x029b739ae68b258dd777bfb6ebb43c5b04617074.png", - "aggregators": [ - "PancakeCoinMarketCap", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 4 - }, - "0xa0cf89ee581313d84d28409eb6bb1d1f9b55d410": { - "address": "0xa0cf89ee581313d84d28409eb6bb1d1f9b55d410", - "symbol": "UNICE", - "decimals": 18, - "name": "UNICE", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xa0cf89ee581313d84d28409eb6bb1d1f9b55d410.png", - "aggregators": [ - "PancakeCoinMarketCap", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 4 - }, - "0x3b6564b5da73a41d3a66e6558a98fd0e9e1e77ad": { - "address": "0x3b6564b5da73a41d3a66e6558a98fd0e9e1e77ad", - "symbol": "UTS", - "decimals": 18, - "name": "Unitus", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x3b6564b5da73a41d3a66e6558a98fd0e9e1e77ad.png", - "aggregators": ["PancakeCoinGecko", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0xb3a95bdbe4ac65b0628db1e6600f71ed59b89255": { - "address": "0xb3a95bdbe4ac65b0628db1e6600f71ed59b89255", - "symbol": "UV", - "decimals": 18, - "name": "Unityventures", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xb3a95bdbe4ac65b0628db1e6600f71ed59b89255.png", - "aggregators": [ - "PancakeCoinMarketCap", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 4 - }, - "0xe6e4d9e1ddd783b6beeccc059abc17be88ee1a03": { - "address": "0xe6e4d9e1ddd783b6beeccc059abc17be88ee1a03", - "symbol": "VERUM", - "decimals": 8, - "name": "Verum Coin", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xe6e4d9e1ddd783b6beeccc059abc17be88ee1a03.png", - "aggregators": [ - "PancakeCoinMarketCap", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 4 - }, - "0x873801ae2ff12d816db9a7b082f5796bec64c82c": { - "address": "0x873801ae2ff12d816db9a7b082f5796bec64c82c", - "symbol": "VEST", - "decimals": 18, - "name": "DAO Invest", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x873801ae2ff12d816db9a7b082f5796bec64c82c.png", - "aggregators": [ - "PancakeCoinMarketCap", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 4 - }, - "0x8de5aa37a7c40a53062ead382b8eead3b08a7a46": { - "address": "0x8de5aa37a7c40a53062ead382b8eead3b08a7a46", - "symbol": "VTG", - "decimals": 18, - "name": "Victory Gem", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x8de5aa37a7c40a53062ead382b8eead3b08a7a46.png", - "aggregators": ["PancakeCoinGecko", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0x876866ef03d1bd9cc7afdc2df9bf21b21a57af04": { - "address": "0x876866ef03d1bd9cc7afdc2df9bf21b21a57af04", - "symbol": "WFT", - "decimals": 18, - "name": "Windfall", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x876866ef03d1bd9cc7afdc2df9bf21b21a57af04.png", - "aggregators": [ - "PancakeCoinMarketCap", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 4 - }, - "0x298632d8ea20d321fab1c9b473df5dbda249b2b6": { - "address": "0x298632d8ea20d321fab1c9b473df5dbda249b2b6", - "symbol": "WOD", - "decimals": 18, - "name": "World of Defish", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x298632d8ea20d321fab1c9b473df5dbda249b2b6.png", - "aggregators": [ - "PancakeCoinMarketCap", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 4 - }, - "0x9467f15f44a8641389556387b43d9ed3f6981818": { - "address": "0x9467f15f44a8641389556387b43d9ed3f6981818", - "symbol": "WUSDR", - "decimals": 9, - "name": "Wrapped USDR", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x9467f15f44a8641389556387b43d9ed3f6981818.png", - "aggregators": [ - "PancakeCoinMarketCap", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 4 - }, - "0x567556a7493fb7a22d2fd158dd4c766a98705f96": { - "address": "0x567556a7493fb7a22d2fd158dd4c766a98705f96", - "symbol": "WZEDX", - "decimals": 18, - "name": "Wrapped Zedxion", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x567556a7493fb7a22d2fd158dd4c766a98705f96.png", - "aggregators": [ - "PancakeCoinMarketCap", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 4 - }, - "0x8ea43e15b1a616a19903f6a87498f7dca1efae0f": { - "address": "0x8ea43e15b1a616a19903f6a87498f7dca1efae0f", - "symbol": "XAI", - "decimals": 9, - "name": "xAI", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x8ea43e15b1a616a19903f6a87498f7dca1efae0f.png", - "aggregators": ["PancakeCoinMarketCap", "Socket", "Rubic", "Rango"], - "occurrences": 4 - }, - "0x747747e47a48c669be384e0dfb248eee6ba04039": { - "address": "0x747747e47a48c669be384e0dfb248eee6ba04039", - "symbol": "XHP", - "decimals": 18, - "name": "XHYPE", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x747747e47a48c669be384e0dfb248eee6ba04039.png", - "aggregators": [ - "PancakeCoinMarketCap", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 4 - }, - "0xaa9826732f3a4973ff8b384b3f4e3c70c2984651": { - "address": "0xaa9826732f3a4973ff8b384b3f4e3c70c2984651", - "symbol": "XPRESS", - "decimals": 18, - "name": "CryptoXpress", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xaa9826732f3a4973ff8b384b3f4e3c70c2984651.png", - "aggregators": [ - "PancakeCoinMarketCap", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 4 - }, - "0xbc2a152ce36a76e3071ce221761e2445c1c496d4": { - "address": "0xbc2a152ce36a76e3071ce221761e2445c1c496d4", - "symbol": "XSP", - "decimals": 18, - "name": "XSPACE", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xbc2a152ce36a76e3071ce221761e2445c1c496d4.png", - "aggregators": [ - "PancakeCoinMarketCap", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 4 - }, - "0x3757232b55e60da4a8793183ac030cfce4c3865d": { - "address": "0x3757232b55e60da4a8793183ac030cfce4c3865d", - "symbol": "YDR", - "decimals": 18, - "name": "YDragon", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x3757232b55e60da4a8793183ac030cfce4c3865d.png", - "aggregators": ["PancakeCoinGecko", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0xdcb624c870d73cdd0b3345762977cb14de598cd0": { - "address": "0xdcb624c870d73cdd0b3345762977cb14de598cd0", - "symbol": "YFIH2", - "decimals": 18, - "name": "H2Finance", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xdcb624c870d73cdd0b3345762977cb14de598cd0.png", - "aggregators": [ - "PancakeCoinMarketCap", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 4 - }, - "0xf55a93b613d172b86c2ba3981a849dae2aecde2f": { - "address": "0xf55a93b613d172b86c2ba3981a849dae2aecde2f", - "symbol": "YFX", - "decimals": 18, - "name": "Your Futures Exchange", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xf55a93b613d172b86c2ba3981a849dae2aecde2f.png", - "aggregators": [ - "PancakeCoinMarketCap", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 4 - }, - "0xff44967f2e4ebe0b8c5b6812f25e1b9bcec70b34": { - "address": "0xff44967f2e4ebe0b8c5b6812f25e1b9bcec70b34", - "symbol": "ZEDXION", - "decimals": 18, - "name": "Zedxion", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xff44967f2e4ebe0b8c5b6812f25e1b9bcec70b34.png", - "aggregators": [ - "PancakeCoinMarketCap", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 4 - }, - "0xbf27da33a58de2bc6eb1c7dab6cf2e84e825d7dc": { - "address": "0xbf27da33a58de2bc6eb1c7dab6cf2e84e825d7dc", - "symbol": "ZGD", - "decimals": 18, - "name": "ZambesiGold", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xbf27da33a58de2bc6eb1c7dab6cf2e84e825d7dc.png", - "aggregators": [ - "PancakeCoinMarketCap", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 4 - }, - "0x29df52dbd2a73ae6f4ee3a397fd7706216af12da": { - "address": "0x29df52dbd2a73ae6f4ee3a397fd7706216af12da", - "symbol": "ZILPEPE", - "decimals": 18, - "name": "ZilPepe", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x29df52dbd2a73ae6f4ee3a397fd7706216af12da.png", - "aggregators": [ - "PancakeCoinMarketCap", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 4 - }, - "0x0cca2f5561bb0fca88e5b9b48b7fbf000349c357": { - "address": "0x0cca2f5561bb0fca88e5b9b48b7fbf000349c357", - "symbol": "ZODI", - "decimals": 18, - "name": "Zodium", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x0cca2f5561bb0fca88e5b9b48b7fbf000349c357.png", - "aggregators": [ - "PancakeCoinMarketCap", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 4 - }, - "0x1fd991fb6c3102873ba68a4e6e6a87b3a5c10271": { - "address": "0x1fd991fb6c3102873ba68a4e6e6a87b3a5c10271", - "symbol": "ATL", - "decimals": 18, - "name": "Atlantis", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x1fd991fb6c3102873ba68a4e6e6a87b3a5c10271.png", - "aggregators": ["PancakeCoinMarketCap", "LiFi", "Socket", "Rubic"], - "occurrences": 4 - }, - "0x6fefd97f328342a8a840546a55fdcfee7542f9a8": { - "address": "0x6fefd97f328342a8a840546a55fdcfee7542f9a8", - "symbol": "BTBS", - "decimals": 18, - "name": "BitBase", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x6fefd97f328342a8a840546a55fdcfee7542f9a8.png", - "aggregators": ["PancakeCoinMarketCap", "1inch", "Rubic", "Rango"], - "occurrences": 4 - }, - "0x2406dce4da5ab125a18295f4fb9fd36a0f7879a2": { - "address": "0x2406dce4da5ab125a18295f4fb9fd36a0f7879a2", - "symbol": "CPD", - "decimals": 18, - "name": "Coinspaid", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x2406dce4da5ab125a18295f4fb9fd36a0f7879a2.png", - "aggregators": ["PancakeCoinMarketCap", "Socket", "Rubic", "Rango"], - "occurrences": 4 - }, - "0x7ceb519718a80dd78a8545ad8e7f401de4f2faa7": { - "address": "0x7ceb519718a80dd78a8545ad8e7f401de4f2faa7", - "symbol": "DKT", - "decimals": 18, - "name": "Duelist King Token", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x7ceb519718a80dd78a8545ad8e7f401de4f2faa7.png", - "aggregators": ["PancakeExtended", "LiFi", "Rubic"], - "occurrences": 3 - }, - "0xa00e5306902c3fddace62bdf391907753c941050": { - "address": "0xa00e5306902c3fddace62bdf391907753c941050", - "symbol": "FLORK", - "decimals": 18, - "name": "FLORK BNB", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xa00e5306902c3fddace62bdf391907753c941050.png", - "aggregators": ["PancakeCoinMarketCap", "Socket", "Rubic", "Rango"], - "occurrences": 4 - }, - "0x444a0e0c139cac67e8f9be945c6dfe01a2766ed1": { - "address": "0x444a0e0c139cac67e8f9be945c6dfe01a2766ed1", - "symbol": "GST", - "decimals": 18, - "name": "Gemstone Token", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x444a0e0c139cac67e8f9be945c6dfe01a2766ed1.png", - "aggregators": ["PancakeCoinMarketCap", "1inch", "Rubic", "Rango"], - "occurrences": 4 - }, - "0xa80221d067603e30060f75e2458aa361f8ee5402": { - "address": "0xa80221d067603e30060f75e2458aa361f8ee5402", - "symbol": "IRL", - "decimals": 18, - "name": "Rebase", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xa80221d067603e30060f75e2458aa361f8ee5402.png", - "aggregators": ["PancakeExtended", "LiFi", "Rubic", "Rango"], - "occurrences": 4 - }, - "0x7b65b489fe53fce1f6548db886c08ad73111ddd8": { - "address": "0x7b65b489fe53fce1f6548db886c08ad73111ddd8", - "symbol": "IRON", - "decimals": 18, - "name": "IRON Stablecoin", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x7b65b489fe53fce1f6548db886c08ad73111ddd8.png", - "aggregators": ["PancakeCoinMarketCap", "Socket", "Rubic", "Rango"], - "occurrences": 4 - }, - "0x8bdd8dbcbdf0c066ca5f3286d33673aa7a553c10": { - "address": "0x8bdd8dbcbdf0c066ca5f3286d33673aa7a553c10", - "symbol": "KART", - "decimals": 18, - "name": "Dragon Kart", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x8bdd8dbcbdf0c066ca5f3286d33673aa7a553c10.png", - "aggregators": ["PancakeExtended", "LiFi", "Rubic"], - "occurrences": 3 - }, - "0x12d76741f56ffde15d0da9865c05089425337aab": { - "address": "0x12d76741f56ffde15d0da9865c05089425337aab", - "symbol": "LBCC", - "decimals": 18, - "name": "Lightbeam Courier Coin", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x12d76741f56ffde15d0da9865c05089425337aab.png", - "aggregators": [ - "PancakeCoinMarketCap", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 4 - }, - "0xe6ce27025f13f5213bbc560dc275e292965a392f": { - "address": "0xe6ce27025f13f5213bbc560dc275e292965a392f", - "symbol": "LOOM", - "decimals": 18, - "name": "Loom Token", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xe6ce27025f13f5213bbc560dc275e292965a392f.png", - "aggregators": ["PancakeCoinMarketCap", "Socket", "Rubic", "Rango"], - "occurrences": 4 - }, - "0xae493a1f8bbe36ba8e687352f638d4c07c54f8d7": { - "address": "0xae493a1f8bbe36ba8e687352f638d4c07c54f8d7", - "symbol": "MC", - "decimals": 18, - "name": "Matthew Coin", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xae493a1f8bbe36ba8e687352f638d4c07c54f8d7.png", - "aggregators": ["PancakeExtended", "LiFi", "Rubic", "Rango"], - "occurrences": 4 - }, - "0x5f0da599bb2cccfcf6fdfd7d81743b6020864350": { - "address": "0x5f0da599bb2cccfcf6fdfd7d81743b6020864350", - "symbol": "MKR", - "decimals": 18, - "name": "Maker", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x5f0da599bb2cccfcf6fdfd7d81743b6020864350.png", - "aggregators": ["PancakeCoinMarketCap", "Socket", "Rubic", "Rango"], - "occurrences": 4 - }, - "0xe4c797d43631f4d660ec67b5cb0b78ef5c902532": { - "address": "0xe4c797d43631f4d660ec67b5cb0b78ef5c902532", - "symbol": "MONS", - "decimals": 18, - "name": "Monsters Clan Token", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xe4c797d43631f4d660ec67b5cb0b78ef5c902532.png", - "aggregators": ["PancakeCoinMarketCap", "1inch", "Rubic", "Rango"], - "occurrences": 4 - }, - "0xabae871b7e3b67aeec6b46ae9fe1a91660aadac5": { - "address": "0xabae871b7e3b67aeec6b46ae9fe1a91660aadac5", - "symbol": "POPEN", - "decimals": 18, - "name": "pTokens OPEN", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xabae871b7e3b67aeec6b46ae9fe1a91660aadac5.png", - "aggregators": ["PancakeExtended", "LiFi", "Rubic", "Rango"], - "occurrences": 4 - }, - "0xd07e82440a395f3f3551b42da9210cd1ef4f8b24": { - "address": "0xd07e82440a395f3f3551b42da9210cd1ef4f8b24", - "symbol": "PRL", - "decimals": 18, - "name": "Parallel Token", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xd07e82440a395f3f3551b42da9210cd1ef4f8b24.png", - "aggregators": ["PancakeExtended", "Socket", "Rubic", "Rango"], - "occurrences": 4 - }, - "0x6ad9e9c098a45b2b41b519119c31c3dcb02accb2": { - "address": "0x6ad9e9c098a45b2b41b519119c31c3dcb02accb2", - "symbol": "PZP", - "decimals": 18, - "name": "PLAYZAP", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x6ad9e9c098a45b2b41b519119c31c3dcb02accb2.png", - "aggregators": ["PancakeCoinMarketCap", "LiFi", "Rubic", "Rango"], - "occurrences": 4 - }, - "0xf027e525d491ef6ffcc478555fbb3cfabb3406a6": { - "address": "0xf027e525d491ef6ffcc478555fbb3cfabb3406a6", - "symbol": "RBNB", - "decimals": 18, - "name": "StaFi rBNB", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xf027e525d491ef6ffcc478555fbb3cfabb3406a6.png", - "aggregators": ["PancakeExtended", "LiFi", "Rubic", "Rango"], - "occurrences": 4 - }, - "0x26193c7fa4354ae49ec53ea2cebc513dc39a10aa": { - "address": "0x26193c7fa4354ae49ec53ea2cebc513dc39a10aa", - "symbol": "SEA", - "decimals": 18, - "name": "SEA", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x26193c7fa4354ae49ec53ea2cebc513dc39a10aa.png", - "aggregators": ["PancakeCoinMarketCap", "LiFi", "Rubic", "Rango"], - "occurrences": 4 - }, - "0xb455d798e8b07dbbf9d4609f7b7bdc574463d0b3": { - "address": "0xb455d798e8b07dbbf9d4609f7b7bdc574463d0b3", - "symbol": "SHIB", - "decimals": 18, - "name": "Shibaqua", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xb455d798e8b07dbbf9d4609f7b7bdc574463d0b3.png", - "aggregators": ["PancakeCoinMarketCap", "Socket", "Rubic", "Rango"], - "occurrences": 4 - }, - "0x070a08beef8d36734dd67a491202ff35a6a16d97": { - "address": "0x070a08beef8d36734dd67a491202ff35a6a16d97", - "symbol": "SLP", - "decimals": 18, - "name": "Smooth Love Potion", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x070a08beef8d36734dd67a491202ff35a6a16d97.png", - "aggregators": ["PancakeCoinMarketCap", "Socket", "Rubic", "Rango"], - "occurrences": 4 - }, - "0x4cfbbdfbd5bf0814472ff35c72717bd095ada055": { - "address": "0x4cfbbdfbd5bf0814472ff35c72717bd095ada055", - "symbol": "SUTER", - "decimals": 18, - "name": "SUTER", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x4cfbbdfbd5bf0814472ff35c72717bd095ada055.png", - "aggregators": ["PancakeExtended", "Socket", "Rubic", "Rango"], - "occurrences": 4 - }, - "0xf4bea2c219eb95c6745983b68185c7340c319d9e": { - "address": "0xf4bea2c219eb95c6745983b68185c7340c319d9e", - "symbol": "TFS", - "decimals": 18, - "name": "Fairspin Token", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xf4bea2c219eb95c6745983b68185c7340c319d9e.png", - "aggregators": ["PancakeCoinMarketCap", "1inch", "Rubic", "Rango"], - "occurrences": 4 - }, - "0x990e7154bb999faa9b2fa5ed29e822703311ea85": { - "address": "0x990e7154bb999faa9b2fa5ed29e822703311ea85", - "symbol": "TT", - "decimals": 18, - "name": "ThunderCore", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x990e7154bb999faa9b2fa5ed29e822703311ea85.png", - "aggregators": ["PancakeExtended", "Socket", "Rubic", "Rango"], - "occurrences": 4 - }, - "0x89db9b433fec1307d3dc8908f2813e9f7a1d38f0": { - "address": "0x89db9b433fec1307d3dc8908f2813e9f7a1d38f0", - "symbol": "U", - "decimals": 18, - "name": "Unidef", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x89db9b433fec1307d3dc8908f2813e9f7a1d38f0.png", - "aggregators": ["PancakeCoinMarketCap", "Socket", "Rubic", "Rango"], - "occurrences": 4 - }, - "0xb001f1e7c8bda414ac7cf7ecba5469fe8d24b6de": { - "address": "0xb001f1e7c8bda414ac7cf7ecba5469fe8d24b6de", - "symbol": "UCO", - "decimals": 18, - "name": "UnirisToken", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xb001f1e7c8bda414ac7cf7ecba5469fe8d24b6de.png", - "aggregators": ["PancakeCoinMarketCap", "Socket", "Rubic", "Rango"], - "occurrences": 4 - }, - "0x9c4a515cd72d27a4710571aca94858a53d9278d5": { - "address": "0x9c4a515cd72d27a4710571aca94858a53d9278d5", - "symbol": "VIDT", - "decimals": 18, - "name": "VIDT DAO", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x9c4a515cd72d27a4710571aca94858a53d9278d5.png", - "aggregators": ["PancakeCoinMarketCap", "Socket", "Rubic", "Rango"], - "occurrences": 4 - }, - "0x15669cf161946c09a8b207650bfbb00e3d8a2e3e": { - "address": "0x15669cf161946c09a8b207650bfbb00e3d8a2e3e", - "symbol": "JASMY", - "decimals": 18, - "name": "JasmyCoin", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x15669cf161946c09a8b207650bfbb00e3d8a2e3e.png", - "aggregators": ["PancakeExtended", "Socket", "Rubic", "Rango"], - "occurrences": 4 - }, - "0xb67754f5b4c704a24d2db68e661b2875a4ddd197": { - "address": "0xb67754f5b4c704a24d2db68e661b2875a4ddd197", - "symbol": "MIX", - "decimals": 18, - "name": "Mix", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xb67754f5b4c704a24d2db68e661b2875a4ddd197.png", - "aggregators": ["PancakeExtended", "Socket", "Rubic"], - "occurrences": 3 - }, - "0x9f882567a62a5560d147d64871776eea72df41d3": { - "address": "0x9f882567a62a5560d147d64871776eea72df41d3", - "symbol": "MX", - "decimals": 18, - "name": "MX Token", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x9f882567a62a5560d147d64871776eea72df41d3.png", - "aggregators": ["PancakeExtended", "Socket", "Rubic", "Rango"], - "occurrences": 4 - }, - "0xa865197a84e780957422237b5d152772654341f3": { - "address": "0xa865197a84e780957422237b5d152772654341f3", - "symbol": "OLE", - "decimals": 18, - "name": "OpenLeverage", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xa865197a84e780957422237b5d152772654341f3.png", - "aggregators": ["PancakeExtended", "Socket", "Rubic", "Rango"], - "occurrences": 4 - }, - "0x0112e557d400474717056c4e6d40edd846f38351": { - "address": "0x0112e557d400474717056c4e6d40edd846f38351", - "symbol": "PHA", - "decimals": 18, - "name": "Phala Network", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x0112e557d400474717056c4e6d40edd846f38351.png", - "aggregators": ["PancakeExtended", "Socket", "Rubic", "Rango"], - "occurrences": 4 - }, - "0x300d2c875c6fb8ce4bf5480b4d34b7c9ea8a33a4": { - "address": "0x300d2c875c6fb8ce4bf5480b4d34b7c9ea8a33a4", - "symbol": "PXETH", - "decimals": 18, - "name": "Redacted Finance", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x300d2c875c6fb8ce4bf5480b4d34b7c9ea8a33a4.png", - "aggregators": ["PancakeExtended", "LiFi", "Socket"], - "occurrences": 3 - }, - "0x8729438eb15e2c8b576fcc6aecda6a148776c0f5": { - "address": "0x8729438eb15e2c8b576fcc6aecda6a148776c0f5", - "symbol": "QI", - "decimals": 18, - "name": "BENQI", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x8729438eb15e2c8b576fcc6aecda6a148776c0f5.png", - "aggregators": ["PancakeExtended", "LiFi", "Socket", "Rango"], - "occurrences": 4 - }, - "0xa1434f1fc3f437fa33f7a781e041961c0205b5da": { - "address": "0xa1434f1fc3f437fa33f7a781e041961c0205b5da", - "symbol": "QKC", - "decimals": 18, - "name": "QuarkChain Token", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xa1434f1fc3f437fa33f7a781e041961c0205b5da.png", - "aggregators": ["PancakeExtended", "Socket", "Rubic"], - "occurrences": 3 - }, - "0x67b725d7e342d7b611fa85e859df9697d9378b2e": { - "address": "0x67b725d7e342d7b611fa85e859df9697d9378b2e", - "symbol": "SAND", - "decimals": 18, - "name": "The Sandbox", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x67b725d7e342d7b611fa85e859df9697d9378b2e.png", - "aggregators": ["PancakeExtended", "Socket", "Rubic", "Rango"], - "occurrences": 4 - }, - "0x07715ee7219b07b8e01cc7d2787f4e5e75860383": { - "address": "0x07715ee7219b07b8e01cc7d2787f4e5e75860383", - "symbol": "SDT", - "decimals": 18, - "name": "Stake DAO Token", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x07715ee7219b07b8e01cc7d2787f4e5e75860383.png", - "aggregators": ["PancakeExtended", "LiFi", "Socket", "Rango"], - "occurrences": 4 - }, - "0x4a080377f83d669d7bb83b3184a8a5e61b500608": { - "address": "0x4a080377f83d669d7bb83b3184a8a5e61b500608", - "symbol": "XEND", - "decimals": 18, - "name": "XEND", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x4a080377f83d669d7bb83b3184a8a5e61b500608.png", - "aggregators": ["PancakeExtended", "1inch", "Rubic", "Rango"], - "occurrences": 4 - }, - "0xe9cd2668fb580c96b035b6d081e5753f23fe7f46": { - "address": "0xe9cd2668fb580c96b035b6d081e5753f23fe7f46", - "symbol": "AMA", - "decimals": 18, - "name": "AMAUROT", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xe9cd2668fb580c96b035b6d081e5753f23fe7f46.png", - "aggregators": ["1inch", "Socket", "Rubic", "Rango"], - "occurrences": 4 - }, - "0xf8e026dc4c0860771f691ecffbbdfe2fa51c77cf": { - "address": "0xf8e026dc4c0860771f691ecffbbdfe2fa51c77cf", - "symbol": "BGOV", - "decimals": 18, - "name": "BGOV Token", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xf8e026dc4c0860771f691ecffbbdfe2fa51c77cf.png", - "aggregators": ["1inch", "Socket", "Rubic", "Rango"], - "occurrences": 4 - }, - "0x2f7b4c618dc8e0bba648e54cdadce3d8361f9816": { - "address": "0x2f7b4c618dc8e0bba648e54cdadce3d8361f9816", - "symbol": "NFTL", - "decimals": 18, - "name": "NFTL Token", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x2f7b4c618dc8e0bba648e54cdadce3d8361f9816.png", - "aggregators": ["1inch", "Socket", "Rubic", "Rango"], - "occurrences": 4 - }, - "0x3a5325f0e5ee4da06a285e988f052d4e45aa64b4": { - "address": "0x3a5325f0e5ee4da06a285e988f052d4e45aa64b4", - "symbol": "POLAR", - "decimals": 18, - "name": "Polaris", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x3a5325f0e5ee4da06a285e988f052d4e45aa64b4.png", - "aggregators": ["1inch", "Socket", "Rubic", "Rango"], - "occurrences": 4 - }, - "0x5ef5994fa33ff4eb6c82d51ee1dc145c546065bd": { - "address": "0x5ef5994fa33ff4eb6c82d51ee1dc145c546065bd", - "symbol": "ALLOY", - "decimals": 18, - "name": "HyperAlloy", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x5ef5994fa33ff4eb6c82d51ee1dc145c546065bd.png", - "aggregators": ["1inch", "Socket", "Rubic", "Rango"], - "occurrences": 4 - }, - "0x431e0cd023a32532bf3969cddfc002c00e98429d": { - "address": "0x431e0cd023a32532bf3969cddfc002c00e98429d", - "symbol": "XCAD", - "decimals": 18, - "name": "Chainport.io-Peg XCAD Token", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x431e0cd023a32532bf3969cddfc002c00e98429d.png", - "aggregators": ["LiFi", "Socket", "Rubic", "Rango"], - "occurrences": 4 - }, - "0x3c037c4c2296f280bb318d725d0b454b76c199b9": { - "address": "0x3c037c4c2296f280bb318d725d0b454b76c199b9", - "symbol": "JNTR/B", - "decimals": 18, - "name": "JNTR/b", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x3c037c4c2296f280bb318d725d0b454b76c199b9.png", - "aggregators": ["Socket", "Rubic", "Rango", "SushiSwap"], - "occurrences": 4 - }, - "0xbfa0841f7a90c4ce6643f651756ee340991f99d5": { - "address": "0xbfa0841f7a90c4ce6643f651756ee340991f99d5", - "symbol": "NYA", - "decimals": 18, - "name": "Nyanswop Token", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xbfa0841f7a90c4ce6643f651756ee340991f99d5.png", - "aggregators": ["Socket", "Rubic", "Rango", "SushiSwap"], - "occurrences": 4 - }, - "0x1a4c5c74fb1ec39e839799baa0a91caeaeadedf7": { - "address": "0x1a4c5c74fb1ec39e839799baa0a91caeaeadedf7", - "symbol": "AKITA", - "decimals": 9, - "name": "AKITA-BSC", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x1a4c5c74fb1ec39e839799baa0a91caeaeadedf7.png", - "aggregators": ["Socket", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0x0a73d885cdd66adf69c6d64c0609e55c527db2be": { - "address": "0x0a73d885cdd66adf69c6d64c0609e55c527db2be", - "symbol": "K", - "decimals": 18, - "name": "Sidekick", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x0a73d885cdd66adf69c6d64c0609e55c527db2be.png", - "aggregators": ["PancakeExtended", "Socket", "Rubic"], - "occurrences": 3 - }, - "0x868fced65edbf0056c4163515dd840e9f287a4c3": { - "address": "0x868fced65edbf0056c4163515dd840e9f287a4c3", - "symbol": "SIGN", - "decimals": 18, - "name": "Sign", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x868fced65edbf0056c4163515dd840e9f287a4c3.png", - "aggregators": ["PancakeExtended", "LiFi", "Socket", "Rubic"], - "occurrences": 4 - }, - "0x21caef8a43163eea865baee23b9c2e327696a3bf": { - "address": "0x21caef8a43163eea865baee23b9c2e327696a3bf", - "symbol": "XAUT", - "decimals": 6, - "name": "Tether Gold", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x21caef8a43163eea865baee23b9c2e327696a3bf.png", - "aggregators": ["PancakeExtended", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x06250a4962558f0f3e69fc07f4c67bb9c9eac739": { - "address": "0x06250a4962558f0f3e69fc07f4c67bb9c9eac739", - "symbol": "BICO", - "decimals": 18, - "name": "Biconomy Token (Wormhole)", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x06250a4962558f0f3e69fc07f4c67bb9c9eac739.png", - "aggregators": ["ApeSwap", "Socket", "Rubic"], - "occurrences": 3 - }, - "0x8a5d7fcd4c90421d21d30fcc4435948ac3618b2f": { - "address": "0x8a5d7fcd4c90421d21d30fcc4435948ac3618b2f", - "symbol": "MONSTA", - "decimals": 18, - "name": "Cake Monster", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x8a5d7fcd4c90421d21d30fcc4435948ac3618b2f.png", - "aggregators": ["PancakeCoinMarketCap", "Rubic", "Rango"], - "occurrences": 3 - }, - "0xd3c6ceedd1cc7bd4304f72b011d53441d631e662": { - "address": "0xd3c6ceedd1cc7bd4304f72b011d53441d631e662", - "symbol": "OATH", - "decimals": 18, - "name": "Oath Token", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xd3c6ceedd1cc7bd4304f72b011d53441d631e662.png", - "aggregators": ["PancakeCoinMarketCap", "Socket", "Rubic"], - "occurrences": 3 - }, - "0xaaaafdc2e08371b956be515b3f3ff735ab9c9d74": { - "address": "0xaaaafdc2e08371b956be515b3f3ff735ab9c9d74", - "symbol": "AZ", - "decimals": 18, - "name": "Azbit", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xaaaafdc2e08371b956be515b3f3ff735ab9c9d74.png", - "aggregators": ["PancakeCoinMarketCap", "Rubic", "Rango"], - "occurrences": 3 - }, - "0xc3e06bebc0c00d825f9c7a3b17db8b9a2eea4444": { - "address": "0xc3e06bebc0c00d825f9c7a3b17db8b9a2eea4444", - "symbol": "最暗黑马", - "decimals": 18, - "name": "最暗黑马 (Darkest Horse)", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xc3e06bebc0c00d825f9c7a3b17db8b9a2eea4444.png", - "aggregators": ["CoinGecko", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x19683a9d2a31508847a026dfe77f53a05a084444": { - "address": "0x19683a9d2a31508847a026dfe77f53a05a084444", - "symbol": "W", - "decimals": 18, - "name": "W", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x19683a9d2a31508847a026dfe77f53a05a084444.png", - "aggregators": ["PancakeExtended", "Rubic", "Rango"], - "occurrences": 3 - }, - "0xa2320fff1069ed5b4b02ddb386823e837a7e7777": { - "address": "0xa2320fff1069ed5b4b02ddb386823e837a7e7777", - "symbol": "BFLAP", - "decimals": 18, - "name": "BubbleFlap", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xa2320fff1069ed5b4b02ddb386823e837a7e7777.png", - "aggregators": ["CoinGecko", "Rubic", "Rango"], - "occurrences": 3 - }, - "0xfc6be825925b7a83d131e33b46efef9084f0e014": { - "address": "0xfc6be825925b7a83d131e33b46efef9084f0e014", - "symbol": "RIVER PTS", - "decimals": 18, - "name": "River Point Reward Token", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xfc6be825925b7a83d131e33b46efef9084f0e014.png", - "aggregators": ["PancakeExtended", "LiFi", "Rubic"], - "occurrences": 3 - }, - "0xda033999bb6165e64db01bd9be14b40f5653092e": { - "address": "0xda033999bb6165e64db01bd9be14b40f5653092e", - "symbol": "ORI", - "decimals": 9, - "name": "ORI", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xda033999bb6165e64db01bd9be14b40f5653092e.png", - "aggregators": ["CoinGecko", "Rubic", "Rango"], - "occurrences": 3 - }, - "0xac45475abe6f9516e233a824aa013933b61bbb5c": { - "address": "0xac45475abe6f9516e233a824aa013933b61bbb5c", - "symbol": "BRG", - "decimals": 18, - "name": "BridgeAI", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xac45475abe6f9516e233a824aa013933b61bbb5c.png", - "aggregators": ["CoinGecko", "Rubic", "Rango"], - "occurrences": 3 - }, - "0xf2730645213c43d8affbb4deb9b4c1abc4e74444": { - "address": "0xf2730645213c43d8affbb4deb9b4c1abc4e74444", - "symbol": "EGG", - "decimals": 18, - "name": "EggNuke", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xf2730645213c43d8affbb4deb9b4c1abc4e74444.png", - "aggregators": ["CoinGecko", "Rubic", "Rango"], - "occurrences": 3 - }, - "0xd9375cc6d571817e65017ab94de6f927ebbb4444": { - "address": "0xd9375cc6d571817e65017ab94de6f927ebbb4444", - "symbol": "牛马", - "decimals": 18, - "name": "牛马打工人", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xd9375cc6d571817e65017ab94de6f927ebbb4444.png", - "aggregators": ["CoinGecko", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x872109274218cb50f310e2bfb160d135b502a9d5": { - "address": "0x872109274218cb50f310e2bfb160d135b502a9d5", - "symbol": "SPCX", - "decimals": 18, - "name": "SPCX", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x872109274218cb50f310e2bfb160d135b502a9d5.png", - "aggregators": ["PancakeExtended", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x004d50b3fc784b580531d8e8615aa96cf7fbb919": { - "address": "0x004d50b3fc784b580531d8e8615aa96cf7fbb919", - "symbol": "PLANCK", - "decimals": 18, - "name": "Planck", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x004d50b3fc784b580531d8e8615aa96cf7fbb919.png", - "aggregators": ["PancakeExtended", "Rubic", "Rango"], - "occurrences": 3 - }, - "0xa86a86b8acdc55812bec2971a2fc8a989455858c": { - "address": "0xa86a86b8acdc55812bec2971a2fc8a989455858c", - "symbol": "DSC", - "decimals": 18, - "name": "DSFS Coin", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xa86a86b8acdc55812bec2971a2fc8a989455858c.png", - "aggregators": ["PancakeCoinMarketCap", "Rubic", "Rango"], - "occurrences": 3 - }, - "0xc2d09cf86b9ff43cb29ef8ddca57a4eb4410d5f3": { - "address": "0xc2d09cf86b9ff43cb29ef8ddca57a4eb4410d5f3", - "symbol": "GTBTC", - "decimals": 8, - "name": "GTBTC", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xc2d09cf86b9ff43cb29ef8ddca57a4eb4410d5f3.png", - "aggregators": ["CoinGecko", "Rubic", "Rango"], - "occurrences": 3 - }, - "0xc0edcddd6d5417c22467e3d5642efa1820e454f8": { - "address": "0xc0edcddd6d5417c22467e3d5642efa1820e454f8", - "symbol": "GLG", - "decimals": 18, - "name": "Glorious Looking", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xc0edcddd6d5417c22467e3d5642efa1820e454f8.png", - "aggregators": ["CoinGecko", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x6a9540a84cd1a798a3b1a7cd74c7196cc3e24444": { - "address": "0x6a9540a84cd1a798a3b1a7cd74c7196cc3e24444", - "symbol": "FIREHORSE", - "decimals": 18, - "name": "Fire Horse", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x6a9540a84cd1a798a3b1a7cd74c7196cc3e24444.png", - "aggregators": ["CoinGecko", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x4b7c04ff792581f93f80d69c0f357cb890444444": { - "address": "0x4b7c04ff792581f93f80d69c0f357cb890444444", - "symbol": "火箭狗", - "decimals": 18, - "name": "火箭狗", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x4b7c04ff792581f93f80d69c0f357cb890444444.png", - "aggregators": ["CoinGecko", "Rubic", "Rango"], - "occurrences": 3 - }, - "0xaa242a47f4cc074e59cbc7d65309b1f21202aaa3": { - "address": "0xaa242a47f4cc074e59cbc7d65309b1f21202aaa3", - "symbol": "BTX", - "decimals": 18, - "name": "BeatSwap", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xaa242a47f4cc074e59cbc7d65309b1f21202aaa3.png", - "aggregators": ["PancakeExtended", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x2ae7e0a1d22daecabf5d80b37030c0ab25894444": { - "address": "0x2ae7e0a1d22daecabf5d80b37030c0ab25894444", - "symbol": "WINTERDOGE", - "decimals": 18, - "name": "Winter Doge", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x2ae7e0a1d22daecabf5d80b37030c0ab25894444.png", - "aggregators": ["PancakeExtended", "Rubic", "Rango"], - "occurrences": 3 - }, - "0xad4f3b563f2363e7593ddcaab322604cedf55952": { - "address": "0xad4f3b563f2363e7593ddcaab322604cedf55952", - "symbol": "ZGC", - "decimals": 18, - "name": "ZGC", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xad4f3b563f2363e7593ddcaab322604cedf55952.png", - "aggregators": ["CoinGecko", "Rubic", "Squid"], - "occurrences": 3 - }, - "0x1aaeb7d6436fda7cdac7b87ab8022e97586d2da1": { - "address": "0x1aaeb7d6436fda7cdac7b87ab8022e97586d2da1", - "symbol": "TOWN", - "decimals": 18, - "name": "Alt.town", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x1aaeb7d6436fda7cdac7b87ab8022e97586d2da1.png", - "aggregators": ["CoinGecko", "Rubic", "Rango"], - "occurrences": 3 - }, - "0xca1262e77fb25c0a4112cfc9bad3ff54f617f2e6": { - "address": "0xca1262e77fb25c0a4112cfc9bad3ff54f617f2e6", - "symbol": "WJXN", - "decimals": 0, - "name": "Wrapped JAXNET", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xca1262e77fb25c0a4112cfc9bad3ff54f617f2e6.png", - "aggregators": ["PancakeCoinMarketCap", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x6ba5657bbff83cb579503847c6baa47295ef79a8": { - "address": "0x6ba5657bbff83cb579503847c6baa47295ef79a8", - "symbol": "NBLU", - "decimals": 18, - "name": "NuriTopia", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x6ba5657bbff83cb579503847c6baa47295ef79a8.png", - "aggregators": ["PancakeCoinMarketCap", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x76b2a23f2a94c894fa9eb6c60688e8e38bd95e9a": { - "address": "0x76b2a23f2a94c894fa9eb6c60688e8e38bd95e9a", - "symbol": "CSTAR", - "decimals": 18, - "name": "coinstar", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x76b2a23f2a94c894fa9eb6c60688e8e38bd95e9a.png", - "aggregators": ["CoinGecko", "Rubic", "Rango"], - "occurrences": 3 - }, - "0xae5a409773b9a7dd0ae94ff437ac213d8fafba01": { - "address": "0xae5a409773b9a7dd0ae94ff437ac213d8fafba01", - "symbol": "UPS", - "decimals": 18, - "name": "Upscreener", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xae5a409773b9a7dd0ae94ff437ac213d8fafba01.png", - "aggregators": ["CoinGecko", "Rubic", "Rango"], - "occurrences": 3 - }, - "0xe054017a2f0ecfa294b08a74af319bce0b985a39": { - "address": "0xe054017a2f0ecfa294b08a74af319bce0b985a39", - "symbol": "LUCIC", - "decimals": 18, - "name": "Lucidum Coin", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xe054017a2f0ecfa294b08a74af319bce0b985a39.png", - "aggregators": ["CoinGecko", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x9ccff2aeb0d19565fc5d2934ab9d463274d87423": { - "address": "0x9ccff2aeb0d19565fc5d2934ab9d463274d87423", - "symbol": "KABOSU", - "decimals": 2, - "name": "X Meme Dog", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x9ccff2aeb0d19565fc5d2934ab9d463274d87423.png", - "aggregators": ["CoinGecko", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x94be0bba8e1e303fe998c9360b57b826f1a4f828": { - "address": "0x94be0bba8e1e303fe998c9360b57b826f1a4f828", - "symbol": "KGST", - "decimals": 18, - "name": "Kyrgyz Som Stablecoin", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x94be0bba8e1e303fe998c9360b57b826f1a4f828.png", - "aggregators": ["CoinGecko", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x9c30537f0116be1cceb1397ae0b1cb6792647d79": { - "address": "0x9c30537f0116be1cceb1397ae0b1cb6792647d79", - "symbol": "JQ", - "decimals": 18, - "name": "Jargon Quest", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x9c30537f0116be1cceb1397ae0b1cb6792647d79.png", - "aggregators": ["CoinGecko", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x610fd1a9601cf7b1d188dbf3264738aecc9fc96c": { - "address": "0x610fd1a9601cf7b1d188dbf3264738aecc9fc96c", - "symbol": "PETS", - "decimals": 18, - "name": "MicroPets", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x610fd1a9601cf7b1d188dbf3264738aecc9fc96c.png", - "aggregators": ["CoinGecko", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x8d0c064ab0973fe124fa9efaad492060baacb62c": { - "address": "0x8d0c064ab0973fe124fa9efaad492060baacb62c", - "symbol": "CATX", - "decimals": 9, - "name": "CATX", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x8d0c064ab0973fe124fa9efaad492060baacb62c.png", - "aggregators": ["PancakeCoinMarketCap", "Rubic", "Sonarwatch"], - "occurrences": 3 - }, - "0x95cf6927ab44c78df65177752658b2d64a524444": { - "address": "0x95cf6927ab44c78df65177752658b2d64a524444", - "symbol": "BOB", - "decimals": 18, - "name": "Book Of BSC", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x95cf6927ab44c78df65177752658b2d64a524444.png", - "aggregators": ["CoinGecko", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x854b5f2bfcc5b7cd05d6259cf5d035af57cfa301": { - "address": "0x854b5f2bfcc5b7cd05d6259cf5d035af57cfa301", - "symbol": "PRDT", - "decimals": 18, - "name": "PRDT Token", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x854b5f2bfcc5b7cd05d6259cf5d035af57cfa301.png", - "aggregators": ["PancakeExtended", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x093316456a50033a7cf5af85dabbd4206a312f25": { - "address": "0x093316456a50033a7cf5af85dabbd4206a312f25", - "symbol": "RETSA", - "decimals": 9, - "name": "Retsa Coin", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x093316456a50033a7cf5af85dabbd4206a312f25.png", - "aggregators": ["CoinGecko", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x0409633a72d846fc5bbe2f98d88564d35987904d": { - "address": "0x0409633a72d846fc5bbe2f98d88564d35987904d", - "symbol": "PHB", - "decimals": 18, - "name": "Phoenix Global", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x0409633a72d846fc5bbe2f98d88564d35987904d.png", - "aggregators": ["PancakeCoinMarketCap", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x3065930e06307eecf872304299ce9be2a2f6bce0": { - "address": "0x3065930e06307eecf872304299ce9be2a2f6bce0", - "symbol": "NIZA", - "decimals": 18, - "name": "NIZA", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x3065930e06307eecf872304299ce9be2a2f6bce0.png", - "aggregators": ["CoinGecko", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x9988d876d7500646534e2d91b382b1ac4c5a4444": { - "address": "0x9988d876d7500646534e2d91b382b1ac4c5a4444", - "symbol": "BOGE", - "decimals": 18, - "name": "BNB DOGE", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x9988d876d7500646534e2d91b382b1ac4c5a4444.png", - "aggregators": ["CoinGecko", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x40030e3e47b955351d00c98b392142ed23fa4444": { - "address": "0x40030e3e47b955351d00c98b392142ed23fa4444", - "symbol": "先富带动后富", - "decimals": 18, - "name": "先富带动后富", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x40030e3e47b955351d00c98b392142ed23fa4444.png", - "aggregators": ["CoinGecko", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x0770f3701e63495b04ba88bebca30b93dc1effff": { - "address": "0x0770f3701e63495b04ba88bebca30b93dc1effff", - "symbol": "马仰人翻", - "decimals": 18, - "name": "马仰人翻", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x0770f3701e63495b04ba88bebca30b93dc1effff.png", - "aggregators": ["CoinGecko", "Rubic", "Rango"], - "occurrences": 3 - }, - "0xf7ed52010a766164262f79a340c3868817174444": { - "address": "0xf7ed52010a766164262f79a340c3868817174444", - "symbol": "赛季", - "decimals": 18, - "name": "赛季 (Season)", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xf7ed52010a766164262f79a340c3868817174444.png", - "aggregators": ["CoinGecko", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x1224721fe8b31ac9d5d55ced8e0b12a573de4444": { - "address": "0x1224721fe8b31ac9d5d55ced8e0b12a573de4444", - "symbol": "NAMT", - "decimals": 18, - "name": "Namimoto Token", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x1224721fe8b31ac9d5d55ced8e0b12a573de4444.png", - "aggregators": ["CoinGecko", "Rubic", "Rango"], - "occurrences": 3 - }, - "0xec69f1351b66902cd5e79f0924a5ad049f682540": { - "address": "0xec69f1351b66902cd5e79f0924a5ad049f682540", - "symbol": "VFX", - "decimals": 3, - "name": "ViFoxCoin", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xec69f1351b66902cd5e79f0924a5ad049f682540.png", - "aggregators": ["CoinGecko", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x167315be60caafde69183d35b3f1501ea5677777": { - "address": "0x167315be60caafde69183d35b3f1501ea5677777", - "symbol": "VERTEX", - "decimals": 18, - "name": "Vertex Privacy", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x167315be60caafde69183d35b3f1501ea5677777.png", - "aggregators": ["CoinGecko", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x6f88dbed8f178f71f6a0c27df10d4f0b8ddf4444": { - "address": "0x6f88dbed8f178f71f6a0c27df10d4f0b8ddf4444", - "symbol": "U", - "decimals": 18, - "name": "U", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x6f88dbed8f178f71f6a0c27df10d4f0b8ddf4444.png", - "aggregators": ["CoinGecko", "Rubic", "Rango"], - "occurrences": 3 - }, - "0xe3225e11cab122f1a126a28997788e5230838ab9": { - "address": "0xe3225e11cab122f1a126a28997788e5230838ab9", - "symbol": "XNY", - "decimals": 18, - "name": "Codatta XNY", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xe3225e11cab122f1a126a28997788e5230838ab9.png", - "aggregators": ["PancakeExtended", "LiFi", "Rubic"], - "occurrences": 3 - }, - "0xedd52d44de950ccc3b2e6abdf0da8e99bb0ec480": { - "address": "0xedd52d44de950ccc3b2e6abdf0da8e99bb0ec480", - "symbol": "CRAZYTIGER", - "decimals": 9, - "name": "Crazy Tiger", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xedd52d44de950ccc3b2e6abdf0da8e99bb0ec480.png", - "aggregators": ["PancakeCoinMarketCap", "Rubic", "Sonarwatch"], - "occurrences": 3 - }, - "0x8f647568ffed14b2a75a6eb911d112b0fe570c94": { - "address": "0x8f647568ffed14b2a75a6eb911d112b0fe570c94", - "symbol": "$GOLD", - "decimals": 2, - "name": "$GOLD", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x8f647568ffed14b2a75a6eb911d112b0fe570c94.png", - "aggregators": ["CoinGecko", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x3e17ee3b1895dd1a7cf993a89769c5e029584444": { - "address": "0x3e17ee3b1895dd1a7cf993a89769c5e029584444", - "symbol": "FREEDOM OF MONEY", - "decimals": 18, - "name": "Freedom of Money", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x3e17ee3b1895dd1a7cf993a89769c5e029584444.png", - "aggregators": ["CoinGecko", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x99df6f337eec8bb3a197961099df163ea3494444": { - "address": "0x99df6f337eec8bb3a197961099df163ea3494444", - "symbol": "PLUTO", - "decimals": 18, - "name": "Pluto", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x99df6f337eec8bb3a197961099df163ea3494444.png", - "aggregators": ["CoinGecko", "Rubic", "Rango"], - "occurrences": 3 - }, - "0xc76979538aad5c50ede8fe561830e35ab49c8888": { - "address": "0xc76979538aad5c50ede8fe561830e35ab49c8888", - "symbol": "MINIDOGE", - "decimals": 18, - "name": "MiniDoge", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xc76979538aad5c50ede8fe561830e35ab49c8888.png", - "aggregators": ["CoinGecko", "Rubic", "Rango"], - "occurrences": 3 - }, - "0xd0d5ff4c23f294f0b2f629dc1e2c57b09c374444": { - "address": "0xd0d5ff4c23f294f0b2f629dc1e2c57b09c374444", - "symbol": "茄子", - "decimals": 18, - "name": "茄子", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xd0d5ff4c23f294f0b2f629dc1e2c57b09c374444.png", - "aggregators": ["CoinGecko", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x2f97137ea4cca7a9997e89cb16d4ef6e750f4444": { - "address": "0x2f97137ea4cca7a9997e89cb16d4ef6e750f4444", - "symbol": "$PRIME", - "decimals": 18, - "name": "PRIME", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x2f97137ea4cca7a9997e89cb16d4ef6e750f4444.png", - "aggregators": ["CoinGecko", "Rubic", "Rango"], - "occurrences": 3 - }, - "0xe8c392861d675517fd4b078330cd175053c74444": { - "address": "0xe8c392861d675517fd4b078330cd175053c74444", - "symbol": "招财猫", - "decimals": 18, - "name": "招财猫", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xe8c392861d675517fd4b078330cd175053c74444.png", - "aggregators": ["CoinGecko", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x9c573c93c4a25dac626fe09d6ae41d184d8f7777": { - "address": "0x9c573c93c4a25dac626fe09d6ae41d184d8f7777", - "symbol": "分红狗头", - "decimals": 18, - "name": "分红狗头 (Dividend Dog Head)", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x9c573c93c4a25dac626fe09d6ae41d184d8f7777.png", - "aggregators": ["CoinGecko", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x5f970c855c063df6b093e19bda889fdda3ca4444": { - "address": "0x5f970c855c063df6b093e19bda889fdda3ca4444", - "symbol": "LOL", - "decimals": 18, - "name": "LOL", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x5f970c855c063df6b093e19bda889fdda3ca4444.png", - "aggregators": ["CoinGecko", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x7a5c7be8478f4a65c9264bdc684f8e9e0aae4444": { - "address": "0x7a5c7be8478f4a65c9264bdc684f8e9e0aae4444", - "symbol": "$RIDER", - "decimals": 18, - "name": "Seal the Night Rider", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x7a5c7be8478f4a65c9264bdc684f8e9e0aae4444.png", - "aggregators": ["CoinGecko", "Rubic", "Rango"], - "occurrences": 3 - }, - "0xb1a3810fce5678128b6a61a41871ea344b938e76": { - "address": "0xb1a3810fce5678128b6a61a41871ea344b938e76", - "symbol": "OEX", - "decimals": 18, - "name": "OEX", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xb1a3810fce5678128b6a61a41871ea344b938e76.png", - "aggregators": ["CoinGecko", "Rubic", "Rango"], - "occurrences": 3 - }, - "0xb26df3cadef9f4b771d98d20a7f05e055173f90a": { - "address": "0xb26df3cadef9f4b771d98d20a7f05e055173f90a", - "symbol": "VELT", - "decimals": 18, - "name": "VELTRIXA", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xb26df3cadef9f4b771d98d20a7f05e055173f90a.png", - "aggregators": ["CoinGecko", "Rubic", "Rango"], - "occurrences": 3 - }, - "0xf8584516b7d2c156c763c874d6813e06b57e4cb5": { - "address": "0xf8584516b7d2c156c763c874d6813e06b57e4cb5", - "symbol": "BNBTIGER", - "decimals": 9, - "name": "Bnb Tiger Inu", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xf8584516b7d2c156c763c874d6813e06b57e4cb5.png", - "aggregators": ["CoinGecko", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x5d0ae9223533db48f32ae0aa3845eedf20894444": { - "address": "0x5d0ae9223533db48f32ae0aa3845eedf20894444", - "symbol": "HERD", - "decimals": 18, - "name": "羊群币 (Herd)", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x5d0ae9223533db48f32ae0aa3845eedf20894444.png", - "aggregators": ["CoinGecko", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x50e0de39e80b55fe2a29464c105a2823c11e83d4": { - "address": "0x50e0de39e80b55fe2a29464c105a2823c11e83d4", - "symbol": "WR", - "decimals": 9, - "name": "White Rat", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x50e0de39e80b55fe2a29464c105a2823c11e83d4.png", - "aggregators": ["CoinGecko", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x386b656500a3c9019992f0fd9f24725fca5e4444": { - "address": "0x386b656500a3c9019992f0fd9f24725fca5e4444", - "symbol": "NATIVE", - "decimals": 18, - "name": "native coin", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x386b656500a3c9019992f0fd9f24725fca5e4444.png", - "aggregators": ["CoinGecko", "Rubic", "Rango"], - "occurrences": 3 - }, - "0xfe2dd2d57a05f89438f3aec94eafa4070396bab0": { - "address": "0xfe2dd2d57a05f89438f3aec94eafa4070396bab0", - "symbol": "MAT", - "decimals": 18, - "name": "Matchain", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xfe2dd2d57a05f89438f3aec94eafa4070396bab0.png", - "aggregators": ["PancakeExtended", "1inch", "Rubic"], - "occurrences": 3 - }, - "0xabebed1684a789b3cf178db810f3cbb30cc14444": { - "address": "0xabebed1684a789b3cf178db810f3cbb30cc14444", - "symbol": "SORA", - "decimals": 18, - "name": "Sora Oracle", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xabebed1684a789b3cf178db810f3cbb30cc14444.png", - "aggregators": ["CoinGecko", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x6261963ebe9ff014aad10ecc3b0238d4d04e8353": { - "address": "0x6261963ebe9ff014aad10ecc3b0238d4d04e8353", - "symbol": "HANA", - "decimals": 18, - "name": "Hana Token", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x6261963ebe9ff014aad10ecc3b0238d4d04e8353.png", - "aggregators": ["PancakeExtended", "Socket", "Rubic"], - "occurrences": 3 - }, - "0x1a0d665ff8582fe135a8867bfd38b5e48baf7777": { - "address": "0x1a0d665ff8582fe135a8867bfd38b5e48baf7777", - "symbol": "雪球人生", - "decimals": 18, - "name": "雪球人生 (A Snowball Life)", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x1a0d665ff8582fe135a8867bfd38b5e48baf7777.png", - "aggregators": ["CoinGecko", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x51d5b1377b4d429283e8156540855ece77ad4444": { - "address": "0x51d5b1377b4d429283e8156540855ece77ad4444", - "symbol": "小股东", - "decimals": 18, - "name": "小股东 (Minor Shareholder)", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x51d5b1377b4d429283e8156540855ece77ad4444.png", - "aggregators": ["CoinGecko", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x5ae6abd70147d2214cac2e2dee7af15235bf4444": { - "address": "0x5ae6abd70147d2214cac2e2dee7af15235bf4444", - "symbol": "BRAIN", - "decimals": 18, - "name": "Ask Brain", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x5ae6abd70147d2214cac2e2dee7af15235bf4444.png", - "aggregators": ["CoinGecko", "Rubic", "Rango"], - "occurrences": 3 - }, - "0xa4b68d48d7bc6f04420e8077e6f74bdef809dea3": { - "address": "0xa4b68d48d7bc6f04420e8077e6f74bdef809dea3", - "symbol": "BGSC", - "decimals": 18, - "name": "BugsCoin", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xa4b68d48d7bc6f04420e8077e6f74bdef809dea3.png", - "aggregators": ["PancakeExtended", "Rubic", "Sonarwatch"], - "occurrences": 3 - }, - "0x71fb1795b084ff2b65eabf51cad22bbefd42ed5f": { - "address": "0x71fb1795b084ff2b65eabf51cad22bbefd42ed5f", - "symbol": "CAPX", - "decimals": 18, - "name": "Capx", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x71fb1795b084ff2b65eabf51cad22bbefd42ed5f.png", - "aggregators": ["PancakeExtended", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x610a07435f5683a7eea1b9d8479c4ec34e284444": { - "address": "0x610a07435f5683a7eea1b9d8479c4ec34e284444", - "symbol": "白马", - "decimals": 18, - "name": "白马 (White Horse)", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x610a07435f5683a7eea1b9d8479c4ec34e284444.png", - "aggregators": ["CoinGecko", "Rubic", "Rango"], - "occurrences": 3 - }, - "0xf117dfcb241c0003d5e2fc72f288755c17a46980": { - "address": "0xf117dfcb241c0003d5e2fc72f288755c17a46980", - "symbol": "SIXP", - "decimals": 18, - "name": "SIXP", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xf117dfcb241c0003d5e2fc72f288755c17a46980.png", - "aggregators": ["CoinGecko", "Rubic", "Rango"], - "occurrences": 3 - }, - "0xabfd54934ca4535afa589346bf7938b8ce3f4444": { - "address": "0xabfd54934ca4535afa589346bf7938b8ce3f4444", - "symbol": "SHIBY", - "decimals": 18, - "name": "Yellow Shib", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xabfd54934ca4535afa589346bf7938b8ce3f4444.png", - "aggregators": ["CoinGecko", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x83094ecef16971cd09092aa7cdd7f90ded2e4444": { - "address": "0x83094ecef16971cd09092aa7cdd7f90ded2e4444", - "symbol": "ZKASTER", - "decimals": 18, - "name": "zkAster", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x83094ecef16971cd09092aa7cdd7f90ded2e4444.png", - "aggregators": ["CoinGecko", "Rubic", "Rango"], - "occurrences": 3 - }, - "0xbcf2349b0092648073389e753d3e77bec9cef604": { - "address": "0xbcf2349b0092648073389e753d3e77bec9cef604", - "symbol": "BOS", - "decimals": 18, - "name": "Bitcos Pro", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xbcf2349b0092648073389e753d3e77bec9cef604.png", - "aggregators": ["CoinGecko", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x00f8da33734feb9b946fec2228c25072d2e2e41f": { - "address": "0x00f8da33734feb9b946fec2228c25072d2e2e41f", - "symbol": "NILA", - "decimals": 18, - "name": "NILA", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x00f8da33734feb9b946fec2228c25072d2e2e41f.png", - "aggregators": ["CoinGecko", "Rubic", "Rango"], - "occurrences": 3 - }, - "0xe215f9575e2fafff8d0d3f9c6866ac656bd25bd9": { - "address": "0xe215f9575e2fafff8d0d3f9c6866ac656bd25bd9", - "symbol": "DUCKY", - "decimals": 18, - "name": "Ducky", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xe215f9575e2fafff8d0d3f9c6866ac656bd25bd9.png", - "aggregators": ["CoinGecko", "Rubic", "Sonarwatch"], - "occurrences": 3 - }, - "0x5b2ba38272125bd1dcde41f1a88d98c2f5c14444": { - "address": "0x5b2ba38272125bd1dcde41f1a88d98c2f5c14444", - "symbol": "HORIZON", - "decimals": 18, - "name": "Horizon Oracles", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x5b2ba38272125bd1dcde41f1a88d98c2f5c14444.png", - "aggregators": ["CoinGecko", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x3dc8e2d80b6215a1bccae4d38715c3520581e77c": { - "address": "0x3dc8e2d80b6215a1bccae4d38715c3520581e77c", - "symbol": "EPT", - "decimals": 18, - "name": "Balance", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x3dc8e2d80b6215a1bccae4d38715c3520581e77c.png", - "aggregators": ["PancakeExtended", "Rubic", "Sonarwatch"], - "occurrences": 3 - }, - "0xda1060158f7d593667cce0a15db346bb3ffb3596": { - "address": "0xda1060158f7d593667cce0a15db346bb3ffb3596", - "symbol": "TWC", - "decimals": 9, - "name": "TIWI CAT", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xda1060158f7d593667cce0a15db346bb3ffb3596.png", - "aggregators": ["CoinGecko", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x3433a5748bda2f7338bdc600be7bc716d5882b0c": { - "address": "0x3433a5748bda2f7338bdc600be7bc716d5882b0c", - "symbol": "SAFU", - "decimals": 18, - "name": "SAFU", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x3433a5748bda2f7338bdc600be7bc716d5882b0c.png", - "aggregators": ["CoinGecko", "Rubic", "Rango"], - "occurrences": 3 - }, - "0xfdce0c0fe058e3f31153a5caef99a2ff24904444": { - "address": "0xfdce0c0fe058e3f31153a5caef99a2ff24904444", - "symbol": "TNEWS", - "decimals": 18, - "name": "TerraNewsEN", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xfdce0c0fe058e3f31153a5caef99a2ff24904444.png", - "aggregators": ["CoinGecko", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x9cbf2a763e797d8cde780d199f63901027ea3b8e": { - "address": "0x9cbf2a763e797d8cde780d199f63901027ea3b8e", - "symbol": "XPASS", - "decimals": 18, - "name": "XPASS Token", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x9cbf2a763e797d8cde780d199f63901027ea3b8e.png", - "aggregators": ["CoinGecko", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x5fca51aff213bfbeab0b711b93c3374252fd6ac3": { - "address": "0x5fca51aff213bfbeab0b711b93c3374252fd6ac3", - "symbol": "SHARE", - "decimals": 18, - "name": "ShareX Token", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x5fca51aff213bfbeab0b711b93c3374252fd6ac3.png", - "aggregators": ["PancakeExtended", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x44442271e6ca7336a29032838d70675680adc7df": { - "address": "0x44442271e6ca7336a29032838d70675680adc7df", - "symbol": "RCHV", - "decimals": 18, - "name": "Archivas", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x44442271e6ca7336a29032838d70675680adc7df.png", - "aggregators": ["CoinGecko", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x14b792a2d8252cf8fbfa5b8f29e3388576c33a31": { - "address": "0x14b792a2d8252cf8fbfa5b8f29e3388576c33a31", - "symbol": "FUST", - "decimals": 18, - "name": "FUST", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x14b792a2d8252cf8fbfa5b8f29e3388576c33a31.png", - "aggregators": ["CoinGecko", "Rubic", "Rango"], - "occurrences": 3 - }, - "0xa5deb178c729e058018db8bd68a9ffb8418df42d": { - "address": "0xa5deb178c729e058018db8bd68a9ffb8418df42d", - "symbol": "MIBNB", - "decimals": 24, - "name": "Mitosis EOL BNB", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xa5deb178c729e058018db8bd68a9ffb8418df42d.png", - "aggregators": ["CoinGecko", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x996d1b997203a024e205069a304161ba618d1c61": { - "address": "0x996d1b997203a024e205069a304161ba618d1c61", - "symbol": "TAT", - "decimals": 18, - "name": "Tell A Tale", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x996d1b997203a024e205069a304161ba618d1c61.png", - "aggregators": ["CoinGecko", "Rubic", "Rango"], - "occurrences": 3 - }, - "0xbce1a560bb7e98d21a71720b20f9dc06c6584444": { - "address": "0xbce1a560bb7e98d21a71720b20f9dc06c6584444", - "symbol": "早上好", - "decimals": 18, - "name": "早上好", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xbce1a560bb7e98d21a71720b20f9dc06c6584444.png", - "aggregators": ["CoinGecko", "Rubic", "Rango"], - "occurrences": 3 - }, - "0xff583dc5ddc7c0bb3625fff39a587a2000e78888": { - "address": "0xff583dc5ddc7c0bb3625fff39a587a2000e78888", - "symbol": "HOLD", - "decimals": 18, - "name": "Holdstation", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xff583dc5ddc7c0bb3625fff39a587a2000e78888.png", - "aggregators": ["CoinGecko", "Rubic", "Rango"], - "occurrences": 3 - }, - "0xaa648834ea4f3ec34a6ce22042b6def9aa534444": { - "address": "0xaa648834ea4f3ec34a6ce22042b6def9aa534444", - "symbol": "MBGA", - "decimals": 18, - "name": "MAKE BNB GREAT AGAIN", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xaa648834ea4f3ec34a6ce22042b6def9aa534444.png", - "aggregators": ["CoinGecko", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x4c9027e10c5271efca82379d3123917ae3f2374e": { - "address": "0x4c9027e10c5271efca82379d3123917ae3f2374e", - "symbol": "BTG", - "decimals": 18, - "name": "Bitgold", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x4c9027e10c5271efca82379d3123917ae3f2374e.png", - "aggregators": ["PancakeExtended", "Rubic", "Rango"], - "occurrences": 3 - }, - "0xf1c599e9a5fbdea408a7409c0176a2fe42c64444": { - "address": "0xf1c599e9a5fbdea408a7409c0176a2fe42c64444", - "symbol": "HACHIKO", - "decimals": 18, - "name": "Hachiko Inu", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xf1c599e9a5fbdea408a7409c0176a2fe42c64444.png", - "aggregators": ["CoinGecko", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x54ea4f36dff50a75658087a141464d2c44b8837f": { - "address": "0x54ea4f36dff50a75658087a141464d2c44b8837f", - "symbol": "CORGI", - "decimals": 18, - "name": "Corgi Inu", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x54ea4f36dff50a75658087a141464d2c44b8837f.png", - "aggregators": ["CoinGecko", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x49c6c91ec839a581de2b882e868494215250ee59": { - "address": "0x49c6c91ec839a581de2b882e868494215250ee59", - "symbol": "DGRAM", - "decimals": 18, - "name": "Datagram", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x49c6c91ec839a581de2b882e868494215250ee59.png", - "aggregators": ["PancakeExtended", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x0bc61768132aa1484e2b09301284b7def78a4444": { - "address": "0x0bc61768132aa1484e2b09301284b7def78a4444", - "symbol": "BENJI", - "decimals": 18, - "name": "Benji Bean", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x0bc61768132aa1484e2b09301284b7def78a4444.png", - "aggregators": ["CoinGecko", "Rubic", "Rango"], - "occurrences": 3 - }, - "0xf3c7cecf8cbc3066f9a87b310cebe198d00479ac": { - "address": "0xf3c7cecf8cbc3066f9a87b310cebe198d00479ac", - "symbol": "FEG", - "decimals": 18, - "name": "FEED EVERY GORILLA", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xf3c7cecf8cbc3066f9a87b310cebe198d00479ac.png", - "aggregators": ["PancakeCoinMarketCap", "Rubic", "Sonarwatch"], - "occurrences": 3 - }, - "0x52c5f209795451cbdcf1d418c508af4525304444": { - "address": "0x52c5f209795451cbdcf1d418c508af4525304444", - "symbol": "C", - "decimals": 18, - "name": "C", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x52c5f209795451cbdcf1d418c508af4525304444.png", - "aggregators": ["CoinGecko", "Rubic", "Rango"], - "occurrences": 3 - }, - "0xb03f0323da5ca66781de6823ed0681800798de57": { - "address": "0xb03f0323da5ca66781de6823ed0681800798de57", - "symbol": "CRAU", - "decimals": 18, - "name": "CRYN Gold", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xb03f0323da5ca66781de6823ed0681800798de57.png", - "aggregators": ["CoinGecko", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x44444e15232ff6dfed49b550d672707a283b3910": { - "address": "0x44444e15232ff6dfed49b550d672707a283b3910", - "symbol": "BOL", - "decimals": 18, - "name": "BNBOFLEGENDS", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x44444e15232ff6dfed49b550d672707a283b3910.png", - "aggregators": ["CoinGecko", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x3f2b10f3327ea2337c524eef23f4cd61bc364444": { - "address": "0x3f2b10f3327ea2337c524eef23f4cd61bc364444", - "symbol": "SAFU", - "decimals": 18, - "name": " Funds are SAFU", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x3f2b10f3327ea2337c524eef23f4cd61bc364444.png", - "aggregators": ["CoinGecko", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x0ea82a52da127bb06740b4b2b2863fefe9c34011": { - "address": "0x0ea82a52da127bb06740b4b2b2863fefe9c34011", - "symbol": "AIW", - "decimals": 18, - "name": "Stability World AI", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x0ea82a52da127bb06740b4b2b2863fefe9c34011.png", - "aggregators": ["CoinGecko", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x8b194370825e37b33373e74a41009161808c1488": { - "address": "0x8b194370825e37b33373e74a41009161808c1488", - "symbol": "VELVET", - "decimals": 18, - "name": "Velvet", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x8b194370825e37b33373e74a41009161808c1488.png", - "aggregators": ["PancakeExtended", "LiFi", "Rubic", "Squid"], - "occurrences": 4 - }, - "0x36a650e757da5fb28f1c50c3405360f60c5bffff": { - "address": "0x36a650e757da5fb28f1c50c3405360f60c5bffff", - "symbol": "WILLU", - "decimals": 18, - "name": "Will U", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x36a650e757da5fb28f1c50c3405360f60c5bffff.png", - "aggregators": ["CoinGecko", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x3da14529289ea39368298657071033b0c81c0fa9": { - "address": "0x3da14529289ea39368298657071033b0c81c0fa9", - "symbol": "ODIC", - "decimals": 18, - "name": "ODIC Token", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x3da14529289ea39368298657071033b0c81c0fa9.png", - "aggregators": ["CoinGecko", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x517b41b73457f7befd5930b1807bdaf196bd4444": { - "address": "0x517b41b73457f7befd5930b1807bdaf196bd4444", - "symbol": "AKITAAI", - "decimals": 18, - "name": "AkitaAI", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x517b41b73457f7befd5930b1807bdaf196bd4444.png", - "aggregators": ["CoinGecko", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x23b35c7f686cac8297ea6e81a467286481ca4444": { - "address": "0x23b35c7f686cac8297ea6e81a467286481ca4444", - "symbol": "SZN", - "decimals": 18, - "name": "BNB SZN", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x23b35c7f686cac8297ea6e81a467286481ca4444.png", - "aggregators": ["CoinGecko", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x87241b1b7fd82cf4f4842f195909ca69aa6e4444": { - "address": "0x87241b1b7fd82cf4f4842f195909ca69aa6e4444", - "symbol": "ADOG", - "decimals": 18, - "name": "aster dog", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x87241b1b7fd82cf4f4842f195909ca69aa6e4444.png", - "aggregators": ["CoinGecko", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x0aa9d742a1e3c4ad2947ebbf268afa15d7c9bfbd": { - "address": "0x0aa9d742a1e3c4ad2947ebbf268afa15d7c9bfbd", - "symbol": "LISA", - "decimals": 18, - "name": "LISA Token", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x0aa9d742a1e3c4ad2947ebbf268afa15d7c9bfbd.png", - "aggregators": ["PancakeExtended", "Rubic", "Rango"], - "occurrences": 3 - }, - "0xb208063997db51de3f0988f8a87b0aff83a6213f": { - "address": "0xb208063997db51de3f0988f8a87b0aff83a6213f", - "symbol": "BBT", - "decimals": 8, - "name": "BBT", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xb208063997db51de3f0988f8a87b0aff83a6213f.png", - "aggregators": ["CoinGecko", "Rubic", "Rango"], - "occurrences": 3 - }, - "0xcc442a4c0b9c35578aa285f0d39f2bcc0e152acd": { - "address": "0xcc442a4c0b9c35578aa285f0d39f2bcc0e152acd", - "symbol": "SSS", - "decimals": 18, - "name": "Sparkle Token", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xcc442a4c0b9c35578aa285f0d39f2bcc0e152acd.png", - "aggregators": ["PancakeExtended", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x5d7909f951436d4e6974d841316057df3a622962": { - "address": "0x5d7909f951436d4e6974d841316057df3a622962", - "symbol": "GOATED", - "decimals": 18, - "name": "Goat Network", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x5d7909f951436d4e6974d841316057df3a622962.png", - "aggregators": ["PancakeExtended", "Rubic", "Rango"], - "occurrences": 3 - }, - "0xa7536d3c8b307f9c208ec84b54af0e38a4839a5e": { - "address": "0xa7536d3c8b307f9c208ec84b54af0e38a4839a5e", - "symbol": "MHNA", - "decimals": 18, - "name": "MHNA", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xa7536d3c8b307f9c208ec84b54af0e38a4839a5e.png", - "aggregators": ["CoinGecko", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x4dbc56a42524e553a069c7c955e32b6f089cc1e2": { - "address": "0x4dbc56a42524e553a069c7c955e32b6f089cc1e2", - "symbol": "UDOG", - "decimals": 18, - "name": "UDOG", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x4dbc56a42524e553a069c7c955e32b6f089cc1e2.png", - "aggregators": ["CoinGecko", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x7453190391f2e8c19198d06845210b78a0b34444": { - "address": "0x7453190391f2e8c19198d06845210b78a0b34444", - "symbol": "GIGL", - "decimals": 18, - "name": "GIGGLE PANDA", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x7453190391f2e8c19198d06845210b78a0b34444.png", - "aggregators": ["CoinGecko", "Rubic", "Rango"], - "occurrences": 3 - }, - "0xce1b3e5087e8215876af976032382dd338cf8401": { - "address": "0xce1b3e5087e8215876af976032382dd338cf8401", - "symbol": "THOREUM", - "decimals": 18, - "name": "Thoreum V3", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xce1b3e5087e8215876af976032382dd338cf8401.png", - "aggregators": ["PancakeCoinMarketCap", "Rubic", "Sonarwatch"], - "occurrences": 3 - }, - "0xaafe1f781bc5e4d240c4b73f6748d76079678fa8": { - "address": "0xaafe1f781bc5e4d240c4b73f6748d76079678fa8", - "symbol": "TIMI", - "decimals": 18, - "name": "TIMI", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xaafe1f781bc5e4d240c4b73f6748d76079678fa8.png", - "aggregators": ["PancakeExtended", "Rubic", "Rango"], - "occurrences": 3 - }, - "0xec52981e5af19dd4a89464cc3a2a4a94b97adc62": { - "address": "0xec52981e5af19dd4a89464cc3a2a4a94b97adc62", - "symbol": "DANKDOGEAI", - "decimals": 2, - "name": "DankDoge AI Agent", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xec52981e5af19dd4a89464cc3a2a4a94b97adc62.png", - "aggregators": ["CoinGecko", "Rubic", "Rango"], - "occurrences": 3 - }, - "0xcad5a334dc54143d122d1e753bad5050181270c8": { - "address": "0xcad5a334dc54143d122d1e753bad5050181270c8", - "symbol": "KAKA", - "decimals": 18, - "name": "Miss Kaka", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xcad5a334dc54143d122d1e753bad5050181270c8.png", - "aggregators": ["CoinGecko", "Rubic", "Rango"], - "occurrences": 3 - }, - "0xcc9b175e4b88a22543c44f1cc65b73f63b0d4efe": { - "address": "0xcc9b175e4b88a22543c44f1cc65b73f63b0d4efe", - "symbol": "SHARK", - "decimals": 9, - "name": "Baby Shark", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xcc9b175e4b88a22543c44f1cc65b73f63b0d4efe.png", - "aggregators": ["PancakeCoinMarketCap", "Rubic", "Rango"], - "occurrences": 3 - }, - "0xf5dfd94bf89e0948c7770adf5e747dfa47bc4444": { - "address": "0xf5dfd94bf89e0948c7770adf5e747dfa47bc4444", - "symbol": "1", - "decimals": 18, - "name": "1", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xf5dfd94bf89e0948c7770adf5e747dfa47bc4444.png", - "aggregators": ["CoinGecko", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x146498a28b329841da47c27c4738b47f47057777": { - "address": "0x146498a28b329841da47c27c4738b47f47057777", - "symbol": "OSK", - "decimals": 18, - "name": "OSK", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x146498a28b329841da47c27c4738b47f47057777.png", - "aggregators": ["CoinGecko", "Rubic", "Rango"], - "occurrences": 3 - }, - "0xa992ffb0c9b753307b9704079c61db4e405deffd": { - "address": "0xa992ffb0c9b753307b9704079c61db4e405deffd", - "symbol": "COA", - "decimals": 18, - "name": "Alliance Games", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xa992ffb0c9b753307b9704079c61db4e405deffd.png", - "aggregators": ["CoinGecko", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x4f436232f4a21cef94c2b6d1a1dbedf675ac4444": { - "address": "0x4f436232f4a21cef94c2b6d1a1dbedf675ac4444", - "symbol": "马上领红包", - "decimals": 18, - "name": "马上领红包 (Claim Your Red Envelope Now)", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x4f436232f4a21cef94c2b6d1a1dbedf675ac4444.png", - "aggregators": ["CoinGecko", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x336ff048c664a081d527979ac4197d6c3c8bfb14": { - "address": "0x336ff048c664a081d527979ac4197d6c3c8bfb14", - "symbol": "TEA", - "decimals": 18, - "name": "TeaFi Token", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x336ff048c664a081d527979ac4197d6c3c8bfb14.png", - "aggregators": ["CoinGecko", "LiFi", "Rubic"], - "occurrences": 3 - }, - "0xa226dfdd0e2168676ba13889e93c07ce3a0b4e37": { - "address": "0xa226dfdd0e2168676ba13889e93c07ce3a0b4e37", - "symbol": "RWS", - "decimals": 18, - "name": "Real World Services", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xa226dfdd0e2168676ba13889e93c07ce3a0b4e37.png", - "aggregators": ["CoinGecko", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x2d739dd563609c39a1ae1546a03e8b469361175f": { - "address": "0x2d739dd563609c39a1ae1546a03e8b469361175f", - "symbol": "KO", - "decimals": 18, - "name": "Kyuzo’s Friends", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x2d739dd563609c39a1ae1546a03e8b469361175f.png", - "aggregators": ["PancakeExtended", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x862829e8dcf0fd939d61d1b0d4a3aaf983ee4f73": { - "address": "0x862829e8dcf0fd939d61d1b0d4a3aaf983ee4f73", - "symbol": "VEREM", - "decimals": 18, - "name": "Verified Emeralds", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x862829e8dcf0fd939d61d1b0d4a3aaf983ee4f73.png", - "aggregators": ["CoinGecko", "Rubic", "Rango"], - "occurrences": 3 - }, - "0xa1c1a7341a1713f174d59926e49e4a1228924100": { - "address": "0xa1c1a7341a1713f174d59926e49e4a1228924100", - "symbol": "MON", - "decimals": 18, - "name": "Moneymon", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xa1c1a7341a1713f174d59926e49e4a1228924100.png", - "aggregators": ["CoinGecko", "Rubic", "Rango"], - "occurrences": 3 - }, - "0xf74548802f4c700315f019fde17178b392ee4444": { - "address": "0xf74548802f4c700315f019fde17178b392ee4444", - "symbol": "MEMES", - "decimals": 18, - "name": "memes will continue", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xf74548802f4c700315f019fde17178b392ee4444.png", - "aggregators": ["PancakeExtended", "Rubic", "Rango"], - "occurrences": 3 - }, - "0xd9780513292477c4039dfda1cfcd89ff111e9da5": { - "address": "0xd9780513292477c4039dfda1cfcd89ff111e9da5", - "symbol": "TGR", - "decimals": 18, - "name": "Tegro", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xd9780513292477c4039dfda1cfcd89ff111e9da5.png", - "aggregators": ["PancakeCoinMarketCap", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x6a43cb09fc6d16525f38ecfa27cc568282d86678": { - "address": "0x6a43cb09fc6d16525f38ecfa27cc568282d86678", - "symbol": "VK", - "decimals": 18, - "name": "VK Token", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x6a43cb09fc6d16525f38ecfa27cc568282d86678.png", - "aggregators": ["CoinGecko", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x6d57f5c286e04850c2c085350f2e60aaa7b7c15b": { - "address": "0x6d57f5c286e04850c2c085350f2e60aaa7b7c15b", - "symbol": "GROKGIRL", - "decimals": 9, - "name": "Grok Girl", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x6d57f5c286e04850c2c085350f2e60aaa7b7c15b.png", - "aggregators": ["PancakeCoinMarketCap", "Rubic", "Sonarwatch"], - "occurrences": 3 - }, - "0xb150e91cb40909f47d45115ee9e90667d807464b": { - "address": "0xb150e91cb40909f47d45115ee9e90667d807464b", - "symbol": "CRTR", - "decimals": 18, - "name": "CReaToR", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xb150e91cb40909f47d45115ee9e90667d807464b.png", - "aggregators": ["CoinGecko", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x248db81f8307de98107602d5fdf1aa6398a14444": { - "address": "0x248db81f8307de98107602d5fdf1aa6398a14444", - "symbol": "山野万里 你是我藏在微风里的欢喜", - "decimals": 18, - "name": "山野万里 你是我藏在微风里的欢喜", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x248db81f8307de98107602d5fdf1aa6398a14444.png", - "aggregators": ["CoinGecko", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x90869b3a42e399951bd5f5ff278b8cc5ee1dc0fe": { - "address": "0x90869b3a42e399951bd5f5ff278b8cc5ee1dc0fe", - "symbol": "REX", - "decimals": 18, - "name": "REVOX", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x90869b3a42e399951bd5f5ff278b8cc5ee1dc0fe.png", - "aggregators": ["PancakeExtended", "Rubic", "Sonarwatch"], - "occurrences": 3 - }, - "0xc12efb9e4a1a753e7f6523482c569793c2271dbb": { - "address": "0xc12efb9e4a1a753e7f6523482c569793c2271dbb", - "symbol": "GAIX", - "decimals": 18, - "name": "GaiAI Token", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xc12efb9e4a1a753e7f6523482c569793c2271dbb.png", - "aggregators": ["PancakeExtended", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x8db780f5e1238bf3fc0e14c099b98bb63362d16e": { - "address": "0x8db780f5e1238bf3fc0e14c099b98bb63362d16e", - "symbol": "MGG", - "decimals": 18, - "name": "MGG", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x8db780f5e1238bf3fc0e14c099b98bb63362d16e.png", - "aggregators": ["CoinGecko", "Rubic", "Rango"], - "occurrences": 3 - }, - "0xd013ca6b1f361a951f0c7125e65f5621c3dd8802": { - "address": "0xd013ca6b1f361a951f0c7125e65f5621c3dd8802", - "symbol": "SNOR", - "decimals": 9, - "name": "SNOR", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xd013ca6b1f361a951f0c7125e65f5621c3dd8802.png", - "aggregators": ["CoinGecko", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x9eca8dedb4882bd694aea786c0cbe770e70d52e3": { - "address": "0x9eca8dedb4882bd694aea786c0cbe770e70d52e3", - "symbol": "LONG", - "decimals": 18, - "name": "LONG", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x9eca8dedb4882bd694aea786c0cbe770e70d52e3.png", - "aggregators": ["PancakeExtended", "Rubic", "Rango"], - "occurrences": 3 - }, - "0xf197e06dab32b3c1cd8c055598bea0af11b44444": { - "address": "0xf197e06dab32b3c1cd8c055598bea0af11b44444", - "symbol": "BINANCIANS", - "decimals": 18, - "name": "Binancians", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xf197e06dab32b3c1cd8c055598bea0af11b44444.png", - "aggregators": ["CoinGecko", "Rubic", "Rango"], - "occurrences": 3 - }, - "0xddbc2ba2d9f87cbb5ad7d315de6a6ca6ccfc4444": { - "address": "0xddbc2ba2d9f87cbb5ad7d315de6a6ca6ccfc4444", - "symbol": "YETI", - "decimals": 18, - "name": "YETI", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xddbc2ba2d9f87cbb5ad7d315de6a6ca6ccfc4444.png", - "aggregators": ["CoinGecko", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x7e7ec10e7b55194714cfbc4daa14eaa4e423b774": { - "address": "0x7e7ec10e7b55194714cfbc4daa14eaa4e423b774", - "symbol": "CAI", - "decimals": 18, - "name": "CharacterX", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x7e7ec10e7b55194714cfbc4daa14eaa4e423b774.png", - "aggregators": ["PancakeExtended", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x3e9fc4f2acf5d6f7815cb9f38b2c69576088ffff": { - "address": "0x3e9fc4f2acf5d6f7815cb9f38b2c69576088ffff", - "symbol": "FORGAI", - "decimals": 18, - "name": "ForgAI", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x3e9fc4f2acf5d6f7815cb9f38b2c69576088ffff.png", - "aggregators": ["CoinGecko", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x74ac77d7ca54c38eb5ea2e638a80a5182558d3a2": { - "address": "0x74ac77d7ca54c38eb5ea2e638a80a5182558d3a2", - "symbol": "SURGE", - "decimals": 18, - "name": "SURGE", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x74ac77d7ca54c38eb5ea2e638a80a5182558d3a2.png", - "aggregators": ["CoinGecko", "Rubic", "Rango"], - "occurrences": 3 - }, - "0xdf7434d15656809f56dd17371b2339baacd9b494": { - "address": "0xdf7434d15656809f56dd17371b2339baacd9b494", - "symbol": "GBD", - "decimals": 18, - "name": "Great Bounty Dealer", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xdf7434d15656809f56dd17371b2339baacd9b494.png", - "aggregators": ["PancakeCoinMarketCap", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x4ffa143ce16a24215e8df96c0cef5677a7b91ee4": { - "address": "0x4ffa143ce16a24215e8df96c0cef5677a7b91ee4", - "symbol": "REGENT", - "decimals": 18, - "name": "Regent Coin", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x4ffa143ce16a24215e8df96c0cef5677a7b91ee4.png", - "aggregators": ["PancakeCoinMarketCap", "Rubic", "Sonarwatch"], - "occurrences": 3 - }, - "0x730e9b7091258cdf578136ec8394daea2db84444": { - "address": "0x730e9b7091258cdf578136ec8394daea2db84444", - "symbol": "马到成功", - "decimals": 18, - "name": "马到成功", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x730e9b7091258cdf578136ec8394daea2db84444.png", - "aggregators": ["CoinGecko", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x76d7966227939b67d66fdb1373a0808ac53ca9ad": { - "address": "0x76d7966227939b67d66fdb1373a0808ac53ca9ad", - "symbol": "KEN", - "decimals": 18, - "name": "KENESIS", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x76d7966227939b67d66fdb1373a0808ac53ca9ad.png", - "aggregators": ["CoinGecko", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x9a79d9c9e521cb900d2584c74bb41997eb7bf49f": { - "address": "0x9a79d9c9e521cb900d2584c74bb41997eb7bf49f", - "symbol": "MEC", - "decimals": 18, - "name": "Mellion Coin", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x9a79d9c9e521cb900d2584c74bb41997eb7bf49f.png", - "aggregators": ["CoinGecko", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x5fc6179fcf814fcd4344ee03376ba717a95992b6": { - "address": "0x5fc6179fcf814fcd4344ee03376ba717a95992b6", - "symbol": "VCC", - "decimals": 18, - "name": "Victorum", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x5fc6179fcf814fcd4344ee03376ba717a95992b6.png", - "aggregators": ["CoinGecko", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x4444d14d522386647c29fd9cd9723f7339ac0f3c": { - "address": "0x4444d14d522386647c29fd9cd9723f7339ac0f3c", - "symbol": "TORA", - "decimals": 18, - "name": "Tensora", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x4444d14d522386647c29fd9cd9723f7339ac0f3c.png", - "aggregators": ["CoinGecko", "Rubic", "Rango"], - "occurrences": 3 - }, - "0xa9550c2112a277b03ccff6aa1baaacd74c754444": { - "address": "0xa9550c2112a277b03ccff6aa1baaacd74c754444", - "symbol": "DEW", - "decimals": 18, - "name": "DEW", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xa9550c2112a277b03ccff6aa1baaacd74c754444.png", - "aggregators": ["CoinGecko", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x55b69bca0e6749ed67e03b16c95a29e963777777": { - "address": "0x55b69bca0e6749ed67e03b16c95a29e963777777", - "symbol": "暴力雪球", - "decimals": 18, - "name": "暴力雪球 (Violent Snowball)", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x55b69bca0e6749ed67e03b16c95a29e963777777.png", - "aggregators": ["CoinGecko", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x3510fbbc13090f991ffa523527113a166161683e": { - "address": "0x3510fbbc13090f991ffa523527113a166161683e", - "symbol": "DEOD", - "decimals": 18, - "name": "Decentrawood", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x3510fbbc13090f991ffa523527113a166161683e.png", - "aggregators": ["CoinGecko", "Rubic", "Rango"], - "occurrences": 3 - }, - "0xc44f9f08e524669e5deeebc9eb142c81edfad178": { - "address": "0xc44f9f08e524669e5deeebc9eb142c81edfad178", - "symbol": "FAR", - "decimals": 18, - "name": "Farcana", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xc44f9f08e524669e5deeebc9eb142c81edfad178.png", - "aggregators": ["CoinGecko", "Rubic", "Rango"], - "occurrences": 3 - }, - "0xd955c9ba56fb1ab30e34766e252a97ccce3d31a6": { - "address": "0xd955c9ba56fb1ab30e34766e252a97ccce3d31a6", - "symbol": "XPIN", - "decimals": 18, - "name": "XPIN Token", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xd955c9ba56fb1ab30e34766e252a97ccce3d31a6.png", - "aggregators": ["PancakeExtended", "LiFi", "Rubic"], - "occurrences": 3 - }, - "0x4acb4cc1f0a073ce4bde893faebc726198c14444": { - "address": "0x4acb4cc1f0a073ce4bde893faebc726198c14444", - "symbol": "NDQ", - "decimals": 18, - "name": "Nasdaq666", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x4acb4cc1f0a073ce4bde893faebc726198c14444.png", - "aggregators": ["CoinGecko", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x56083560594e314b5cdd1680ec6a493bb851bbd8": { - "address": "0x56083560594e314b5cdd1680ec6a493bb851bbd8", - "symbol": "THC", - "decimals": 9, - "name": "Transhuman Coin", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x56083560594e314b5cdd1680ec6a493bb851bbd8.png", - "aggregators": ["PancakeCoinMarketCap", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x2aa89a0113bcbbcdc5812c6df794e2d9650fc1af": { - "address": "0x2aa89a0113bcbbcdc5812c6df794e2d9650fc1af", - "symbol": "STRIKE", - "decimals": 18, - "name": "StrikeBit", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x2aa89a0113bcbbcdc5812c6df794e2d9650fc1af.png", - "aggregators": ["PancakeExtended", "Socket", "Rubic"], - "occurrences": 3 - }, - "0xc07d28f8e9d9b5644676196afe14af09e1c79afd": { - "address": "0xc07d28f8e9d9b5644676196afe14af09e1c79afd", - "symbol": "HODL", - "decimals": 18, - "name": "HoldOn4DearLife", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xc07d28f8e9d9b5644676196afe14af09e1c79afd.png", - "aggregators": ["CoinGecko", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x0e4f6209ed984b21edea43ace6e09559ed051d48": { - "address": "0x0e4f6209ed984b21edea43ace6e09559ed051d48", - "symbol": "ON", - "decimals": 18, - "name": "Orochi Network Token", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x0e4f6209ed984b21edea43ace6e09559ed051d48.png", - "aggregators": ["PancakeExtended", "Socket", "Rubic"], - "occurrences": 3 - }, - "0xcd806d0eb9465020994c9e977cbe34fe430172ae": { - "address": "0xcd806d0eb9465020994c9e977cbe34fe430172ae", - "symbol": "DL", - "decimals": 18, - "name": "Dill", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xcd806d0eb9465020994c9e977cbe34fe430172ae.png", - "aggregators": ["PancakeExtended", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x6d8d8df799279e761a4f49edc319b3bd50f14444": { - "address": "0x6d8d8df799279e761a4f49edc319b3bd50f14444", - "symbol": "我是未来", - "decimals": 18, - "name": "我是未来 (I am the Future)", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x6d8d8df799279e761a4f49edc319b3bd50f14444.png", - "aggregators": ["CoinGecko", "Rubic", "Rango"], - "occurrences": 3 - }, - "0xc0f6a75a6102ed31f85e3b3186a64174de943792": { - "address": "0xc0f6a75a6102ed31f85e3b3186a64174de943792", - "symbol": "GOAI", - "decimals": 18, - "name": "GOATxAI", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xc0f6a75a6102ed31f85e3b3186a64174de943792.png", - "aggregators": ["PancakeExtended", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x181de8c57c4f25eba9fd27757bbd11cc66a55d31": { - "address": "0x181de8c57c4f25eba9fd27757bbd11cc66a55d31", - "symbol": "BELUGA", - "decimals": 18, - "name": "Beluga fi", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x181de8c57c4f25eba9fd27757bbd11cc66a55d31.png", - "aggregators": ["PancakeCoinGecko", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x40af8fd127dcd302d7ffa6f37cf5a002e54ac68c": { - "address": "0x40af8fd127dcd302d7ffa6f37cf5a002e54ac68c", - "symbol": "CONCILIUM", - "decimals": 18, - "name": "CONCILIUM", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x40af8fd127dcd302d7ffa6f37cf5a002e54ac68c.png", - "aggregators": ["CoinGecko", "Rubic", "Rango"], - "occurrences": 3 - }, - "0xc51a9250795c0186a6fb4a7d20a90330651e4444": { - "address": "0xc51a9250795c0186a6fb4a7d20a90330651e4444", - "symbol": "我踏马来了", - "decimals": 18, - "name": "我踏马来了", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xc51a9250795c0186a6fb4a7d20a90330651e4444.png", - "aggregators": ["PancakeExtended", "Rubic", "Rango"], - "occurrences": 3 - }, - "0xed146fa6bf4755544d295d8dc4bc3e4eabab4444": { - "address": "0xed146fa6bf4755544d295d8dc4bc3e4eabab4444", - "symbol": "SYBEX", - "decimals": 18, - "name": "Sybex Oracle", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xed146fa6bf4755544d295d8dc4bc3e4eabab4444.png", - "aggregators": ["CoinGecko", "Rubic", "Rango"], - "occurrences": 3 - }, - "0xa14b0b99c9117ea2f4fb2c9d772d95d9fd3acaab": { - "address": "0xa14b0b99c9117ea2f4fb2c9d772d95d9fd3acaab", - "symbol": "BROCCOLI", - "decimals": 18, - "name": "Broccoli", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xa14b0b99c9117ea2f4fb2c9d772d95d9fd3acaab.png", - "aggregators": ["PancakeExtended", "Rubic", "Rango"], - "occurrences": 3 - }, - "0xdf5c227ab75d309d46fb9df0f7fa043e4534d2ab": { - "address": "0xdf5c227ab75d309d46fb9df0f7fa043e4534d2ab", - "symbol": "GBCK", - "decimals": 18, - "name": "GoldBrick", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xdf5c227ab75d309d46fb9df0f7fa043e4534d2ab.png", - "aggregators": ["CoinGecko", "Rubic", "Rango"], - "occurrences": 3 - }, - "0xc269d59a0d608ea0bd672f2f4616c372d8554444": { - "address": "0xc269d59a0d608ea0bd672f2f4616c372d8554444", - "symbol": "CLIPX", - "decimals": 18, - "name": "ClipX", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xc269d59a0d608ea0bd672f2f4616c372d8554444.png", - "aggregators": ["CoinGecko", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x80f1ff15b887cb19295d88c8c16f89d47f6d8888": { - "address": "0x80f1ff15b887cb19295d88c8c16f89d47f6d8888", - "symbol": "COCO", - "decimals": 18, - "name": "coco", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x80f1ff15b887cb19295d88c8c16f89d47f6d8888.png", - "aggregators": ["CoinGecko", "Rubic", "Rango"], - "occurrences": 3 - }, - "0xeb09e61726922ec613567a63761339dad49d5d3a": { - "address": "0xeb09e61726922ec613567a63761339dad49d5d3a", - "symbol": "RTX", - "decimals": 18, - "name": "OrbitX DAO", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xeb09e61726922ec613567a63761339dad49d5d3a.png", - "aggregators": ["CoinGecko", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x80563fc2dd549bf36f82d3bf3b970bb5b08dbddb": { - "address": "0x80563fc2dd549bf36f82d3bf3b970bb5b08dbddb", - "symbol": "RVV", - "decimals": 18, - "name": "REVIVE", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x80563fc2dd549bf36f82d3bf3b970bb5b08dbddb.png", - "aggregators": ["PancakeExtended", "Rubic", "Rango"], - "occurrences": 3 - }, - "0xabe8e5cabe24cb36df9540088fd7ce1175b9bc52": { - "address": "0xabe8e5cabe24cb36df9540088fd7ce1175b9bc52", - "symbol": "SOLV", - "decimals": 18, - "name": "Solv Protocol", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xabe8e5cabe24cb36df9540088fd7ce1175b9bc52.png", - "aggregators": ["PancakeExtended", "Rubic", "Sonarwatch"], - "occurrences": 3 - }, - "0xf6402bec11bd945bbd46be77e1fa5d477883f6c2": { - "address": "0xf6402bec11bd945bbd46be77e1fa5d477883f6c2", - "symbol": "PORT3", - "decimals": 18, - "name": "Port3 Network", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xf6402bec11bd945bbd46be77e1fa5d477883f6c2.png", - "aggregators": ["PancakeExtended", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x36765928c3d4abf286f2b67120c093c26a284444": { - "address": "0x36765928c3d4abf286f2b67120c093c26a284444", - "symbol": "BBOB", - "decimals": 18, - "name": "BabyBuilder", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x36765928c3d4abf286f2b67120c093c26a284444.png", - "aggregators": ["CoinGecko", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x9f1e8901e93a141c70cc90eee4c4cefd264b44d1": { - "address": "0x9f1e8901e93a141c70cc90eee4c4cefd264b44d1", - "symbol": "DDM", - "decimals": 18, - "name": "Deutsche Mark", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x9f1e8901e93a141c70cc90eee4c4cefd264b44d1.png", - "aggregators": ["CoinGecko", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x08352620afa34ad8c82492661481d7ab62634444": { - "address": "0x08352620afa34ad8c82492661481d7ab62634444", - "symbol": "CRYPTO GUY", - "decimals": 18, - "name": "crypto guy", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x08352620afa34ad8c82492661481d7ab62634444.png", - "aggregators": ["CoinGecko", "Rubic", "Rango"], - "occurrences": 3 - }, - "0xadb50d6a3f931e5b4a14d06a4a77fe71171a462f": { - "address": "0xadb50d6a3f931e5b4a14d06a4a77fe71171a462f", - "symbol": "DUCKY", - "decimals": 18, - "name": "Ducky", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xadb50d6a3f931e5b4a14d06a4a77fe71171a462f.png", - "aggregators": ["CoinGecko", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x26186251f697484878c968b42a35fc31c50f8888": { - "address": "0x26186251f697484878c968b42a35fc31c50f8888", - "symbol": "自由人生", - "decimals": 18, - "name": "自由人生", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x26186251f697484878c968b42a35fc31c50f8888.png", - "aggregators": ["CoinGecko", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x17eafd08994305d8ace37efb82f1523177ec70ee": { - "address": "0x17eafd08994305d8ace37efb82f1523177ec70ee", - "symbol": "USDA", - "decimals": 18, - "name": "USDA", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x17eafd08994305d8ace37efb82f1523177ec70ee.png", - "aggregators": ["CoinGecko", "Rubic", "Rango"], - "occurrences": 3 - }, - "0xfecbda1b8dbd73c4eea7843c04db816107fa6666": { - "address": "0xfecbda1b8dbd73c4eea7843c04db816107fa6666", - "symbol": "BABYASTEROID", - "decimals": 9, - "name": "Baby Asteroid", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xfecbda1b8dbd73c4eea7843c04db816107fa6666.png", - "aggregators": ["CoinGecko", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x2e221f0a81eabad8bc3606e51890895e4af813c7": { - "address": "0x2e221f0a81eabad8bc3606e51890895e4af813c7", - "symbol": "BABYFROG", - "decimals": 9, - "name": "Baby Frog Coin", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x2e221f0a81eabad8bc3606e51890895e4af813c7.png", - "aggregators": ["CoinGecko", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x20d6015660b3fe52e6690a889b5c51f69902ce0e": { - "address": "0x20d6015660b3fe52e6690a889b5c51f69902ce0e", - "symbol": "GIGGLE", - "decimals": 18, - "name": "Giggle Fund", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x20d6015660b3fe52e6690a889b5c51f69902ce0e.png", - "aggregators": ["PancakeExtended", "LiFi", "Rubic", "Rango"], - "occurrences": 4 - }, - "0x617c0440334bb4a63b75847345f906c782b419ab": { - "address": "0x617c0440334bb4a63b75847345f906c782b419ab", - "symbol": "HLDR", - "decimals": 18, - "name": "HLDR", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x617c0440334bb4a63b75847345f906c782b419ab.png", - "aggregators": ["CoinGecko", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x4f9d3adbfaf4579518b1ca7e06468a363897b997": { - "address": "0x4f9d3adbfaf4579518b1ca7e06468a363897b997", - "symbol": "SMILEK", - "decimals": 18, - "name": "Smilek to the Bank", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x4f9d3adbfaf4579518b1ca7e06468a363897b997.png", - "aggregators": ["CoinGecko", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x93891a3328cc16ebd59474ced882b1d91dec63e1": { - "address": "0x93891a3328cc16ebd59474ced882b1d91dec63e1", - "symbol": "GEC", - "decimals": 18, - "name": "GreenEnvCoalition", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x93891a3328cc16ebd59474ced882b1d91dec63e1.png", - "aggregators": ["PancakeCoinMarketCap", "Rubic", "Sonarwatch"], - "occurrences": 3 - }, - "0x6e02ef88fd22390449d1610d1b8154b401134444": { - "address": "0x6e02ef88fd22390449d1610d1b8154b401134444", - "symbol": "H", - "decimals": 18, - "name": "H", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x6e02ef88fd22390449d1610d1b8154b401134444.png", - "aggregators": ["CoinGecko", "Rubic", "Rango"], - "occurrences": 3 - }, - "0xc7ab2c545aa6f0ce5571120f84a9abbc9f4736db": { - "address": "0xc7ab2c545aa6f0ce5571120f84a9abbc9f4736db", - "symbol": "KEY", - "decimals": 8, - "name": "KEY", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xc7ab2c545aa6f0ce5571120f84a9abbc9f4736db.png", - "aggregators": ["CoinGecko", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x9c27c4072738cf4b7b0b7071af0ad5666bddc096": { - "address": "0x9c27c4072738cf4b7b0b7071af0ad5666bddc096", - "symbol": "NIANNIAN", - "decimals": 18, - "name": "NianNian", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x9c27c4072738cf4b7b0b7071af0ad5666bddc096.png", - "aggregators": ["CoinGecko", "Rubic", "Rango"], - "occurrences": 3 - }, - "0xb21b24f12c6125487a33fcf96ab06a5c74114444": { - "address": "0xb21b24f12c6125487a33fcf96ab06a5c74114444", - "symbol": "NAIIVE", - "decimals": 18, - "name": "naiive", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xb21b24f12c6125487a33fcf96ab06a5c74114444.png", - "aggregators": ["PancakeExtended", "Rubic", "Rango"], - "occurrences": 3 - }, - "0xe1ab61f7b093435204df32f5b3a405de55445ea8": { - "address": "0xe1ab61f7b093435204df32f5b3a405de55445ea8", - "symbol": "ION", - "decimals": 9, - "name": "Ice Open Network", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xe1ab61f7b093435204df32f5b3a405de55445ea8.png", - "aggregators": ["CoinGecko", "Rubic", "Rango"], - "occurrences": 3 - }, - "0xe7bf59c402a50778e2f54626380abcc752fc7777": { - "address": "0xe7bf59c402a50778e2f54626380abcc752fc7777", - "symbol": "老板", - "decimals": 18, - "name": "BOSS", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xe7bf59c402a50778e2f54626380abcc752fc7777.png", - "aggregators": ["CoinGecko", "Rubic", "Rango"], - "occurrences": 3 - }, - "0xdfeb13936a8975f9f788e73fb93861ce461541f9": { - "address": "0xdfeb13936a8975f9f788e73fb93861ce461541f9", - "symbol": "XNL", - "decimals": 18, - "name": "XNL", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xdfeb13936a8975f9f788e73fb93861ce461541f9.png", - "aggregators": ["CoinGecko", "Rubic", "Rango"], - "occurrences": 3 - }, - "0xf0ebb572643336834d516c485ad31d3299999999": { - "address": "0xf0ebb572643336834d516c485ad31d3299999999", - "symbol": "MY", - "decimals": 18, - "name": "MetYa", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xf0ebb572643336834d516c485ad31d3299999999.png", - "aggregators": ["CoinGecko", "Rubic", "Rango"], - "occurrences": 3 - }, - "0xfceabd6338e41c7731f78a48cd66a3f58758f9af": { - "address": "0xfceabd6338e41c7731f78a48cd66a3f58758f9af", - "symbol": "RXRC", - "decimals": 18, - "name": "RXRC", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xfceabd6338e41c7731f78a48cd66a3f58758f9af.png", - "aggregators": ["CoinGecko", "Rubic", "Rango"], - "occurrences": 3 - }, - "0xc3cd6531634d6d0cce95b0422b9f8d8b0aa94444": { - "address": "0xc3cd6531634d6d0cce95b0422b9f8d8b0aa94444", - "symbol": "RATKING", - "decimals": 18, - "name": "Ratking", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xc3cd6531634d6d0cce95b0422b9f8d8b0aa94444.png", - "aggregators": ["CoinGecko", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x3aa6b9a5306d1cd48b0466cfb130b08a70257e12": { - "address": "0x3aa6b9a5306d1cd48b0466cfb130b08a70257e12", - "symbol": "GORILLA", - "decimals": 18, - "name": "Gorilla Finance", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x3aa6b9a5306d1cd48b0466cfb130b08a70257e12.png", - "aggregators": ["PancakeCoinMarketCap", "Rubic", "Sonarwatch"], - "occurrences": 3 - }, - "0x5ac0c096549d9df6bf2f709d8c169ceb92470267": { - "address": "0x5ac0c096549d9df6bf2f709d8c169ceb92470267", - "symbol": "SAFE", - "decimals": 18, - "name": "SAFE", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x5ac0c096549d9df6bf2f709d8c169ceb92470267.png", - "aggregators": ["CoinGecko", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x87d87671aefb97610390cd7fdbb4281c3f734444": { - "address": "0x87d87671aefb97610390cd7fdbb4281c3f734444", - "symbol": "CRYPTO WINTER", - "decimals": 18, - "name": "Crypto winter", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x87d87671aefb97610390cd7fdbb4281c3f734444.png", - "aggregators": ["CoinGecko", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x017b22fdeff61724ee94642121799960875f4444": { - "address": "0x017b22fdeff61724ee94642121799960875f4444", - "symbol": "币安汽车", - "decimals": 18, - "name": "币安汽车", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x017b22fdeff61724ee94642121799960875f4444.png", - "aggregators": ["CoinGecko", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x77d689c28b9a1661aa75451dcee6d3d3c0264444": { - "address": "0x77d689c28b9a1661aa75451dcee6d3d3c0264444", - "symbol": "HODL", - "decimals": 18, - "name": "HODL", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x77d689c28b9a1661aa75451dcee6d3d3c0264444.png", - "aggregators": ["CoinGecko", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x6c46422a0f7dbbad9bec3bbbc1189bfaf9794b05": { - "address": "0x6c46422a0f7dbbad9bec3bbbc1189bfaf9794b05", - "symbol": "LTRBT", - "decimals": 9, - "name": "Little Rabbit", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x6c46422a0f7dbbad9bec3bbbc1189bfaf9794b05.png", - "aggregators": ["PancakeCoinMarketCap", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x85e92213fca84aa99adbac5049d8426984d64444": { - "address": "0x85e92213fca84aa99adbac5049d8426984d64444", - "symbol": "BSTR", - "decimals": 18, - "name": "BSTR", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x85e92213fca84aa99adbac5049d8426984d64444.png", - "aggregators": ["PancakeExtended", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x8f1408171eae06aec4549fd0a5808a42cee6dd84": { - "address": "0x8f1408171eae06aec4549fd0a5808a42cee6dd84", - "symbol": "GAN", - "decimals": 18, - "name": "Galactic Arena: The NFTverse", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x8f1408171eae06aec4549fd0a5808a42cee6dd84.png", - "aggregators": ["PancakeCoinMarketCap", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x5a7b18ba78d2ec0fd1ef4cd196bc0d7564dc4444": { - "address": "0x5a7b18ba78d2ec0fd1ef4cd196bc0d7564dc4444", - "symbol": "GENESIS", - "decimals": 18, - "name": "Genesis Arena", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x5a7b18ba78d2ec0fd1ef4cd196bc0d7564dc4444.png", - "aggregators": ["CoinGecko", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x44440f83419de123d7d411187adb9962db017d03": { - "address": "0x44440f83419de123d7d411187adb9962db017d03", - "symbol": "BNBHOLDER", - "decimals": 18, - "name": "币安Holder", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x44440f83419de123d7d411187adb9962db017d03.png", - "aggregators": ["PancakeExtended", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x7e0d753d44d5a7492d31ffc020c9b0d07c6d05d7": { - "address": "0x7e0d753d44d5a7492d31ffc020c9b0d07c6d05d7", - "symbol": "MIDLE", - "decimals": 18, - "name": "MIDLE", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x7e0d753d44d5a7492d31ffc020c9b0d07c6d05d7.png", - "aggregators": ["CoinGecko", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x73b84f7e3901f39fc29f3704a03126d317ab4444": { - "address": "0x73b84f7e3901f39fc29f3704a03126d317ab4444", - "symbol": "PUP", - "decimals": 18, - "name": "PUP", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x73b84f7e3901f39fc29f3704a03126d317ab4444.png", - "aggregators": ["PancakeExtended", "Rubic", "Rango"], - "occurrences": 3 - }, - "0xae7484d162ba80b340eba7769a7a67838b1c16c1": { - "address": "0xae7484d162ba80b340eba7769a7a67838b1c16c1", - "symbol": "NXT", - "decimals": 18, - "name": "NEXST", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xae7484d162ba80b340eba7769a7a67838b1c16c1.png", - "aggregators": ["CoinGecko", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x1f891d25a386e6f67ead37d9bfaf5c444213a134": { - "address": "0x1f891d25a386e6f67ead37d9bfaf5c444213a134", - "symbol": "SUSDT", - "decimals": 18, - "name": "SkyTrade USDT", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x1f891d25a386e6f67ead37d9bfaf5c444213a134.png", - "aggregators": ["CoinGecko", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x6d1703d913c74afaedd4b78deee7f32aa91a5943": { - "address": "0x6d1703d913c74afaedd4b78deee7f32aa91a5943", - "symbol": "MAUSDT_LISTA", - "decimals": 24, - "name": "Mitosis Matrix USDT (Lista)", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x6d1703d913c74afaedd4b78deee7f32aa91a5943.png", - "aggregators": ["CoinGecko", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x113f9616ad86a358bb7e58eb3e977d976af44444": { - "address": "0x113f9616ad86a358bb7e58eb3e977d976af44444", - "symbol": "SUPERCYCLE", - "decimals": 18, - "name": "Crypto SuperCycle", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x113f9616ad86a358bb7e58eb3e977d976af44444.png", - "aggregators": ["CoinGecko", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x9831e9ab89e6f15b9a072f200b78e0bed8b6c66c": { - "address": "0x9831e9ab89e6f15b9a072f200b78e0bed8b6c66c", - "symbol": "HORSE", - "decimals": 18, - "name": "Horse", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x9831e9ab89e6f15b9a072f200b78e0bed8b6c66c.png", - "aggregators": ["CoinGecko", "Rubic", "Rango"], - "occurrences": 3 - }, - "0xf0a28bddac9d3045c95bf57df033e80685d881c0": { - "address": "0xf0a28bddac9d3045c95bf57df033e80685d881c0", - "symbol": "OOOO", - "decimals": 18, - "name": "oooo", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xf0a28bddac9d3045c95bf57df033e80685d881c0.png", - "aggregators": ["PancakeExtended", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x23ccab1de32e06a6235a7997c266f86440c2cbe6": { - "address": "0x23ccab1de32e06a6235a7997c266f86440c2cbe6", - "symbol": "DELABS", - "decimals": 18, - "name": "Delabs Games", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x23ccab1de32e06a6235a7997c266f86440c2cbe6.png", - "aggregators": ["PancakeExtended", "Rubic", "Rango"], - "occurrences": 3 - }, - "0xb7c0007ab75350c582d5eab1862b872b5cf53f0c": { - "address": "0xb7c0007ab75350c582d5eab1862b872b5cf53f0c", - "symbol": "PUMP", - "decimals": 18, - "name": "pumpBTC Governance token", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xb7c0007ab75350c582d5eab1862b872b5cf53f0c.png", - "aggregators": ["PancakeExtended", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x0d8c844716bcd981d9b6d3f2ccf5364129086c96": { - "address": "0x0d8c844716bcd981d9b6d3f2ccf5364129086c96", - "symbol": "ZYRA", - "decimals": 18, - "name": "Zero Knowledge Era", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x0d8c844716bcd981d9b6d3f2ccf5364129086c96.png", - "aggregators": ["CoinGecko", "Rubic", "Rango"], - "occurrences": 3 - }, - "0xa45f5eb48cecd034751651aeeda6271bd5df8888": { - "address": "0xa45f5eb48cecd034751651aeeda6271bd5df8888", - "symbol": "FROGGIE ", - "decimals": 18, - "name": "Froggie ", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xa45f5eb48cecd034751651aeeda6271bd5df8888.png", - "aggregators": ["PancakeExtended", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x1646980a0e0ebea85db014807205aa4d9bf87777": { - "address": "0x1646980a0e0ebea85db014807205aa4d9bf87777", - "symbol": "SHARE", - "decimals": 18, - "name": "BNBShare", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x1646980a0e0ebea85db014807205aa4d9bf87777.png", - "aggregators": ["CoinGecko", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x14bf16f280696ec4431f2579309e865693964444": { - "address": "0x14bf16f280696ec4431f2579309e865693964444", - "symbol": "爱你老己", - "decimals": 18, - "name": "爱你老己 明天见 (Love you, my dear. See you tomorrow.)", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x14bf16f280696ec4431f2579309e865693964444.png", - "aggregators": ["CoinGecko", "Rubic", "Rango"], - "occurrences": 3 - }, - "0xe1e93e92c0c2aff2dc4d7d4a8b250d973cad4444": { - "address": "0xe1e93e92c0c2aff2dc4d7d4a8b250d973cad4444", - "symbol": "恶俗企鹅", - "decimals": 18, - "name": "三维威廉泰尔企鹅", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xe1e93e92c0c2aff2dc4d7d4a8b250d973cad4444.png", - "aggregators": ["PancakeExtended", "Rubic", "Rango"], - "occurrences": 3 - }, - "0xde914ed9f96853ab95df19481bd14f0fd9dc2249": { - "address": "0xde914ed9f96853ab95df19481bd14f0fd9dc2249", - "symbol": "VULPEFI", - "decimals": 18, - "name": "Vulpe Finance", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xde914ed9f96853ab95df19481bd14f0fd9dc2249.png", - "aggregators": ["CoinGecko", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x2896bf7bb2d4004ec18ac0c2cb92251646904444": { - "address": "0x2896bf7bb2d4004ec18ac0c2cb92251646904444", - "symbol": "SYNAP", - "decimals": 18, - "name": "Synap", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x2896bf7bb2d4004ec18ac0c2cb92251646904444.png", - "aggregators": ["CoinGecko", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x915c882e4f67d5fed79889353bfdb0ad213e9b97": { - "address": "0x915c882e4f67d5fed79889353bfdb0ad213e9b97", - "symbol": "TYCOON", - "decimals": 18, - "name": "TYCOON", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x915c882e4f67d5fed79889353bfdb0ad213e9b97.png", - "aggregators": ["PancakeExtended", "Rubic", "Rango"], - "occurrences": 3 - }, - "0xe6cae4094352a670c3eb0fcbda17c898b71c7f2a": { - "address": "0xe6cae4094352a670c3eb0fcbda17c898b71c7f2a", - "symbol": "5PT", - "decimals": 18, - "name": "Five Pillars Token", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xe6cae4094352a670c3eb0fcbda17c898b71c7f2a.png", - "aggregators": ["CoinGecko", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x88b985007d714d1578bccdec2303212c14946cdc": { - "address": "0x88b985007d714d1578bccdec2303212c14946cdc", - "symbol": "FRTC", - "decimals": 18, - "name": "FART COIN", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x88b985007d714d1578bccdec2303212c14946cdc.png", - "aggregators": ["PancakeCoinMarketCap", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x66e3daa0c86e0ad56302d36af0e7c1ba24442244": { - "address": "0x66e3daa0c86e0ad56302d36af0e7c1ba24442244", - "symbol": "AIL", - "decimals": 18, - "name": "AILayer Token", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x66e3daa0c86e0ad56302d36af0e7c1ba24442244.png", - "aggregators": ["CoinGecko", "Rubic", "Sonarwatch"], - "occurrences": 3 - }, - "0x546d499689e0d4101c7ea774a61e312d1ad72352": { - "address": "0x546d499689e0d4101c7ea774a61e312d1ad72352", - "symbol": "BABYCAT", - "decimals": 9, - "name": "Baby Cat", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x546d499689e0d4101c7ea774a61e312d1ad72352.png", - "aggregators": ["PancakeCoinMarketCap", "Rubic", "Sonarwatch"], - "occurrences": 3 - }, - "0x652fcafea5a2da18e8947748b7849b72148b4543": { - "address": "0x652fcafea5a2da18e8947748b7849b72148b4543", - "symbol": "PM", - "decimals": 18, - "name": "PumpMeme", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x652fcafea5a2da18e8947748b7849b72148b4543.png", - "aggregators": ["CoinGecko", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x2a846aaaf896ef393ccb76398c1d96ea97374444": { - "address": "0x2a846aaaf896ef393ccb76398c1d96ea97374444", - "symbol": "BORT", - "decimals": 18, - "name": "BORT", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x2a846aaaf896ef393ccb76398c1d96ea97374444.png", - "aggregators": ["CoinGecko", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x023fae553a61e6749d03e460848b33beddcc4444": { - "address": "0x023fae553a61e6749d03e460848b33beddcc4444", - "symbol": "金狗", - "decimals": 18, - "name": "金狗 (Golden Dog)", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x023fae553a61e6749d03e460848b33beddcc4444.png", - "aggregators": ["CoinGecko", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x4c32964715e9a42f8d119bfa8917d57822d3adf1": { - "address": "0x4c32964715e9a42f8d119bfa8917d57822d3adf1", - "symbol": "NETX", - "decimals": 18, - "name": "NETX", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x4c32964715e9a42f8d119bfa8917d57822d3adf1.png", - "aggregators": ["CoinGecko", "Rubic", "Rango"], - "occurrences": 3 - }, - "0xfb69e2d3d673a8db9fa74ffc036a8cf641255769": { - "address": "0xfb69e2d3d673a8db9fa74ffc036a8cf641255769", - "symbol": "BBFT", - "decimals": 18, - "name": "Baby BFT", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xfb69e2d3d673a8db9fa74ffc036a8cf641255769.png", - "aggregators": ["CoinGecko", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x94468828f4678398d976d725361004e75dcb4444": { - "address": "0x94468828f4678398d976d725361004e75dcb4444", - "symbol": "BEEPE", - "decimals": 18, - "name": "beepe", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x94468828f4678398d976d725361004e75dcb4444.png", - "aggregators": ["CoinGecko", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x743f798dd6dd9c8baa243b83d873da569ed74444": { - "address": "0x743f798dd6dd9c8baa243b83d873da569ed74444", - "symbol": "$ALPHA", - "decimals": 18, - "name": "$ALPHA", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x743f798dd6dd9c8baa243b83d873da569ed74444.png", - "aggregators": ["CoinGecko", "Rubic", "Rango"], - "occurrences": 3 - }, - "0xa524b11473b7ce7eb1dc883a585e64471a734444": { - "address": "0xa524b11473b7ce7eb1dc883a585e64471a734444", - "symbol": "JOBIESS", - "decimals": 18, - "name": "JobIess", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xa524b11473b7ce7eb1dc883a585e64471a734444.png", - "aggregators": ["PancakeExtended", "Rubic", "Rango"], - "occurrences": 3 - }, - "0xf8f4a417dbb936c2aa0fcc9e14ecc9825b13b0b5": { - "address": "0xf8f4a417dbb936c2aa0fcc9e14ecc9825b13b0b5", - "symbol": "LOA", - "decimals": 18, - "name": "Legend of Annihilation", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xf8f4a417dbb936c2aa0fcc9e14ecc9825b13b0b5.png", - "aggregators": ["PancakeCoinMarketCap", "Rubic", "Sonarwatch"], - "occurrences": 3 - }, - "0x7d38315b92d0e7a85b35b2b7fe969b25935619d7": { - "address": "0x7d38315b92d0e7a85b35b2b7fe969b25935619d7", - "symbol": "ECOIN", - "decimals": 18, - "name": "Ecoin Finance", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x7d38315b92d0e7a85b35b2b7fe969b25935619d7.png", - "aggregators": ["PancakeCoinMarketCap", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x3ecb529752dec6c6ab08fd83e425497874e21d49": { - "address": "0x3ecb529752dec6c6ab08fd83e425497874e21d49", - "symbol": "PINGPONG", - "decimals": 18, - "name": "PINGPONG", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x3ecb529752dec6c6ab08fd83e425497874e21d49.png", - "aggregators": ["CoinGecko", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x7320fdc13c9c6fb9e261b6dd3c46555fe9a5f3bc": { - "address": "0x7320fdc13c9c6fb9e261b6dd3c46555fe9a5f3bc", - "symbol": "NANA", - "decimals": 18, - "name": "NanoVita", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x7320fdc13c9c6fb9e261b6dd3c46555fe9a5f3bc.png", - "aggregators": ["PancakeExtended", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x74836cc0e821a6be18e407e6388e430b689c66e9": { - "address": "0x74836cc0e821a6be18e407e6388e430b689c66e9", - "symbol": "JAGER", - "decimals": 18, - "name": "Jager Hunter", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x74836cc0e821a6be18e407e6388e430b689c66e9.png", - "aggregators": ["PancakeExtended", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x723000d0df87652387e737f5747ac9205bf9c213": { - "address": "0x723000d0df87652387e737f5747ac9205bf9c213", - "symbol": "ND", - "decimals": 18, - "name": "Nemesis Downfall", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x723000d0df87652387e737f5747ac9205bf9c213.png", - "aggregators": ["PancakeCoinMarketCap", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x1382992c4f997a21256be58dc546e9937a5f7777": { - "address": "0x1382992c4f997a21256be58dc546e9937a5f7777", - "symbol": "BURN", - "decimals": 18, - "name": "Burn Reward Systeam", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x1382992c4f997a21256be58dc546e9937a5f7777.png", - "aggregators": ["CoinGecko", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x6efa75a8c3f2f233b0b42cb8dc3893073e7edd95": { - "address": "0x6efa75a8c3f2f233b0b42cb8dc3893073e7edd95", - "symbol": "CNV", - "decimals": 18, - "name": "Caniverse", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x6efa75a8c3f2f233b0b42cb8dc3893073e7edd95.png", - "aggregators": ["CoinGecko", "Rubic", "Rango"], - "occurrences": 3 - }, - "0xda67fbf4e6fa4bb78f62533b7264e1b13295fdf3": { - "address": "0xda67fbf4e6fa4bb78f62533b7264e1b13295fdf3", - "symbol": "CELB", - "decimals": 18, - "name": "Celb Token", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xda67fbf4e6fa4bb78f62533b7264e1b13295fdf3.png", - "aggregators": ["PancakeExtended", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x7e4dab87cbd6307e8833cc5c540ee151c6db4f42": { - "address": "0x7e4dab87cbd6307e8833cc5c540ee151c6db4f42", - "symbol": "BELG", - "decimals": 18, - "name": "Belgian Malinois", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x7e4dab87cbd6307e8833cc5c540ee151c6db4f42.png", - "aggregators": ["CoinGecko", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x9123400446a56176eb1b6be9ee5cf703e409f492": { - "address": "0x9123400446a56176eb1b6be9ee5cf703e409f492", - "symbol": "TRADOOR", - "decimals": 18, - "name": "Tradoor", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x9123400446a56176eb1b6be9ee5cf703e409f492.png", - "aggregators": ["PancakeExtended", "Rubic", "Squid"], - "occurrences": 3 - }, - "0xfd9a3f94bec6b08711d90ff69cbba42fac96b45a": { - "address": "0xfd9a3f94bec6b08711d90ff69cbba42fac96b45a", - "symbol": "CORL", - "decimals": 18, - "name": "Coral Finance", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xfd9a3f94bec6b08711d90ff69cbba42fac96b45a.png", - "aggregators": ["CoinGecko", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x4b3d30992f003c8167699735f5ab2831b2a087d3": { - "address": "0x4b3d30992f003c8167699735f5ab2831b2a087d3", - "symbol": "COLLECT", - "decimals": 18, - "name": "Collect on Fanable", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x4b3d30992f003c8167699735f5ab2831b2a087d3.png", - "aggregators": ["PancakeExtended", "LiFi", "Rubic", "Rango"], - "occurrences": 4 - }, - "0xd743d3c50ebd82f9173b599383979d10f3494444": { - "address": "0xd743d3c50ebd82f9173b599383979d10f3494444", - "symbol": "TOTAKEKE", - "decimals": 18, - "name": "Dark Cheems", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xd743d3c50ebd82f9173b599383979d10f3494444.png", - "aggregators": ["CoinGecko", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x5119b761c43ee153b5464d83fda4361512f15835": { - "address": "0x5119b761c43ee153b5464d83fda4361512f15835", - "symbol": "YBNB", - "decimals": 18, - "name": "Yellow BNB 4", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x5119b761c43ee153b5464d83fda4361512f15835.png", - "aggregators": ["CoinGecko", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x107c9c954b19f69dec6ddeffff9a5745a05e86a3": { - "address": "0x107c9c954b19f69dec6ddeffff9a5745a05e86a3", - "symbol": "SIGHT", - "decimals": 18, - "name": "Empire of Sight", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x107c9c954b19f69dec6ddeffff9a5745a05e86a3.png", - "aggregators": ["PancakeExtended", "Rubic", "Rango"], - "occurrences": 3 - }, - "0xd29f15355de1ed59970562be731f75a504a0ffff": { - "address": "0xd29f15355de1ed59970562be731f75a504a0ffff", - "symbol": "ZYAN", - "decimals": 18, - "name": "ZAYAN", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xd29f15355de1ed59970562be731f75a504a0ffff.png", - "aggregators": ["CoinGecko", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x925c8ab7a9a8a148e87cd7f1ec7ecc3625864444": { - "address": "0x925c8ab7a9a8a148e87cd7f1ec7ecc3625864444", - "symbol": "DOYR", - "decimals": 18, - "name": "DOYR", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x925c8ab7a9a8a148e87cd7f1ec7ecc3625864444.png", - "aggregators": ["PancakeExtended", "Rubic", "Rango"], - "occurrences": 3 - }, - "0xec29c09208eb99e22c81b797679a69bcf55461cf": { - "address": "0xec29c09208eb99e22c81b797679a69bcf55461cf", - "symbol": "GGEZ1", - "decimals": 18, - "name": "GGEZ1", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xec29c09208eb99e22c81b797679a69bcf55461cf.png", - "aggregators": ["CoinGecko", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x2eb08a8fe215f72e01e089c1cd8c4c4937414444": { - "address": "0x2eb08a8fe215f72e01e089c1cd8c4c4937414444", - "symbol": "蜜蜂狗", - "decimals": 18, - "name": "蜜蜂狗", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x2eb08a8fe215f72e01e089c1cd8c4c4937414444.png", - "aggregators": ["CoinGecko", "Rubic", "Rango"], - "occurrences": 3 - }, - "0xe53d384cf33294c1882227ae4f90d64cf2a5db70": { - "address": "0xe53d384cf33294c1882227ae4f90d64cf2a5db70", - "symbol": "OCICAT", - "decimals": 6, - "name": "Ocicat", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xe53d384cf33294c1882227ae4f90d64cf2a5db70.png", - "aggregators": ["CoinGecko", "Rubic", "Rango"], - "occurrences": 3 - }, - "0xf3e07812ebc8604fddb0aa35ff79a03f48f48948": { - "address": "0xf3e07812ebc8604fddb0aa35ff79a03f48f48948", - "symbol": "JART", - "decimals": 4, - "name": "JournArt", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xf3e07812ebc8604fddb0aa35ff79a03f48f48948.png", - "aggregators": ["PancakeCoinMarketCap", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x477c2c0459004e3354ba427fa285d7c053203c0e": { - "address": "0x477c2c0459004e3354ba427fa285d7c053203c0e", - "symbol": "LIGHT", - "decimals": 6, - "name": "Bitlight", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x477c2c0459004e3354ba427fa285d7c053203c0e.png", - "aggregators": ["PancakeExtended", "Rubic", "Squid"], - "occurrences": 3 - }, - "0xb77a1bd00d9c7ff5e15d70c7f78e4b80e18e4444": { - "address": "0xb77a1bd00d9c7ff5e15d70c7f78e4b80e18e4444", - "symbol": "財務自由", - "decimals": 18, - "name": "財務自由", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xb77a1bd00d9c7ff5e15d70c7f78e4b80e18e4444.png", - "aggregators": ["PancakeExtended", "Rubic", "Rango"], - "occurrences": 3 - }, - "0xd6b8e4f8c9f4694ae8e2a9565f7e039307e98b34": { - "address": "0xd6b8e4f8c9f4694ae8e2a9565f7e039307e98b34", - "symbol": "ENTRV", - "decimals": 18, - "name": "ENTRAVE", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xd6b8e4f8c9f4694ae8e2a9565f7e039307e98b34.png", - "aggregators": ["CoinGecko", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x0f0df6cb17ee5e883eddfef9153fc6036bdb4e37": { - "address": "0x0f0df6cb17ee5e883eddfef9153fc6036bdb4e37", - "symbol": "BAS", - "decimals": 18, - "name": "BNB Attestation Service", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x0f0df6cb17ee5e883eddfef9153fc6036bdb4e37.png", - "aggregators": ["PancakeExtended", "LiFi", "Rubic", "Squid"], - "occurrences": 4 - }, - "0x169ec30125728bc7912da2df76ab5f97f3bab9cb": { - "address": "0x169ec30125728bc7912da2df76ab5f97f3bab9cb", - "symbol": "TTD", - "decimals": 18, - "name": "Trade Tide Token", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x169ec30125728bc7912da2df76ab5f97f3bab9cb.png", - "aggregators": ["PancakeExtended", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x903badf5bf9175297cc889030e051431950cffff": { - "address": "0x903badf5bf9175297cc889030e051431950cffff", - "symbol": "$CARDIO", - "decimals": 18, - "name": "Cardio", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x903badf5bf9175297cc889030e051431950cffff.png", - "aggregators": ["CoinGecko", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x70131b713a5d0e9d900feca15d0e1348658e4444": { - "address": "0x70131b713a5d0e9d900feca15d0e1348658e4444", - "symbol": "NOTIFAI", - "decimals": 18, - "name": "NotifAi News", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x70131b713a5d0e9d900feca15d0e1348658e4444.png", - "aggregators": ["CoinGecko", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x529edc4cd7d7ff773837ce0ff5492d1fd2d0eafd": { - "address": "0x529edc4cd7d7ff773837ce0ff5492d1fd2d0eafd", - "symbol": "FORU", - "decimals": 18, - "name": "ForU AI", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x529edc4cd7d7ff773837ce0ff5492d1fd2d0eafd.png", - "aggregators": ["PancakeExtended", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x2789033dfe80593f69d689f65892a75afa491111": { - "address": "0x2789033dfe80593f69d689f65892a75afa491111", - "symbol": "WM", - "decimals": 18, - "name": "White Monkey", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x2789033dfe80593f69d689f65892a75afa491111.png", - "aggregators": ["PancakeExtended", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x1a5f9d77ca46646cd4937fd8d093f460b66f4444": { - "address": "0x1a5f9d77ca46646cd4937fd8d093f460b66f4444", - "symbol": "老子", - "decimals": 18, - "name": "老子", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x1a5f9d77ca46646cd4937fd8d093f460b66f4444.png", - "aggregators": ["PancakeExtended", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x45e57907058c707a068100de358ba4535b18e2f3": { - "address": "0x45e57907058c707a068100de358ba4535b18e2f3", - "symbol": "MEFAI", - "decimals": 18, - "name": "META FINANCIAL AI", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x45e57907058c707a068100de358ba4535b18e2f3.png", - "aggregators": ["CoinGecko", "Rubic", "Rango"], - "occurrences": 3 - }, - "0xffda10b7fd9cf172e0502a6bc0e5e355516c5232": { - "address": "0xffda10b7fd9cf172e0502a6bc0e5e355516c5232", - "symbol": "SFUND", - "decimals": 18, - "name": "SFUND", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xffda10b7fd9cf172e0502a6bc0e5e355516c5232.png", - "aggregators": ["PancakeExtended", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x4cda4daad72340b28925ccd6fa78db631267d3c4": { - "address": "0x4cda4daad72340b28925ccd6fa78db631267d3c4", - "symbol": "BABYDOGECASH", - "decimals": 9, - "name": "Baby Doge Cash", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x4cda4daad72340b28925ccd6fa78db631267d3c4.png", - "aggregators": ["PancakeCoinMarketCap", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x7765a659c5b0cfbfd9fbc2ef2298b75a598f2d2d": { - "address": "0x7765a659c5b0cfbfd9fbc2ef2298b75a598f2d2d", - "symbol": "ESIM", - "decimals": 18, - "name": "DEPINSIM Token", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x7765a659c5b0cfbfd9fbc2ef2298b75a598f2d2d.png", - "aggregators": ["PancakeExtended", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x7cce94c0b2c8ae7661f02544e62178377fe8cf92": { - "address": "0x7cce94c0b2c8ae7661f02544e62178377fe8cf92", - "symbol": "DADDYDOGE", - "decimals": 9, - "name": "Daddy Doge", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x7cce94c0b2c8ae7661f02544e62178377fe8cf92.png", - "aggregators": ["PancakeCoinMarketCap", "Rubic", "Rango"], - "occurrences": 3 - }, - "0xbb6738fd45aa7bb35944f0cdcc63abf54cefd4e4": { - "address": "0xbb6738fd45aa7bb35944f0cdcc63abf54cefd4e4", - "symbol": "DXP", - "decimals": 18, - "name": "DeXRP", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xbb6738fd45aa7bb35944f0cdcc63abf54cefd4e4.png", - "aggregators": ["CoinGecko", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x4e229ee3aea5047dc070b07483d8975485dd4444": { - "address": "0x4e229ee3aea5047dc070b07483d8975485dd4444", - "symbol": "币安时代", - "decimals": 18, - "name": "币安时代", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x4e229ee3aea5047dc070b07483d8975485dd4444.png", - "aggregators": ["CoinGecko", "Rubic", "Rango"], - "occurrences": 3 - }, - "0xa4b3445a58111abd407c34402ab59b0fe05bff5a": { - "address": "0xa4b3445a58111abd407c34402ab59b0fe05bff5a", - "symbol": "EXC", - "decimals": 18, - "name": "ElonXCat", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xa4b3445a58111abd407c34402ab59b0fe05bff5a.png", - "aggregators": ["CoinGecko", "Rubic", "Rango"], - "occurrences": 3 - }, - "0xa93e4bbe09b834b5a13dcd832daeaefe79fb4ae9": { - "address": "0xa93e4bbe09b834b5a13dcd832daeaefe79fb4ae9", - "symbol": "REDPEPE", - "decimals": 18, - "name": "Red Pepe", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xa93e4bbe09b834b5a13dcd832daeaefe79fb4ae9.png", - "aggregators": ["PancakeCoinMarketCap", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x1094814045fe0c29023df28698ca539296cf7777": { - "address": "0x1094814045fe0c29023df28698ca539296cf7777", - "symbol": "FDUCK", - "decimals": 18, - "name": "FinnDuck for Autism", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x1094814045fe0c29023df28698ca539296cf7777.png", - "aggregators": ["CoinGecko", "Rubic", "Rango"], - "occurrences": 3 - }, - "0xc2bd425a63800731e3ae42b6596bdd783299fcb1": { - "address": "0xc2bd425a63800731e3ae42b6596bdd783299fcb1", - "symbol": "NB", - "decimals": 18, - "name": "Nubila Network", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xc2bd425a63800731e3ae42b6596bdd783299fcb1.png", - "aggregators": ["CoinGecko", "Rubic", "Rango"], - "occurrences": 3 - }, - "0xa7bef5abd9265ab97ee43d2fc4a56e0ba25aca25": { - "address": "0xa7bef5abd9265ab97ee43d2fc4a56e0ba25aca25", - "symbol": "BAY", - "decimals": 18, - "name": "Marina Protocol", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xa7bef5abd9265ab97ee43d2fc4a56e0ba25aca25.png", - "aggregators": ["CoinGecko", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x82ec31d69b3c289e541b50e30681fd1acad24444": { - "address": "0x82ec31d69b3c289e541b50e30681fd1acad24444", - "symbol": "哈基米", - "decimals": 18, - "name": "哈基米", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x82ec31d69b3c289e541b50e30681fd1acad24444.png", - "aggregators": ["PancakeExtended", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x683e9dcf085e5efcc7925858aace94d4b8882024": { - "address": "0x683e9dcf085e5efcc7925858aace94d4b8882024", - "symbol": "TANGYUAN", - "decimals": 9, - "name": "TangYuan", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x683e9dcf085e5efcc7925858aace94d4b8882024.png", - "aggregators": ["PancakeCoinMarketCap", "Rubic", "Sonarwatch"], - "occurrences": 3 - }, - "0xc1353d3ee02fdbd4f65f92eee543cfd709049cb1": { - "address": "0xc1353d3ee02fdbd4f65f92eee543cfd709049cb1", - "symbol": "CUDIS", - "decimals": 18, - "name": "CUDIS", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xc1353d3ee02fdbd4f65f92eee543cfd709049cb1.png", - "aggregators": ["PancakeExtended", "1inch", "Rubic"], - "occurrences": 3 - }, - "0x595b0774d1b2c87dbf9720912ba0870ae9b94444": { - "address": "0x595b0774d1b2c87dbf9720912ba0870ae9b94444", - "symbol": "SHISA", - "decimals": 18, - "name": "SHISA", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x595b0774d1b2c87dbf9720912ba0870ae9b94444.png", - "aggregators": ["CoinGecko", "Rubic", "Rango"], - "occurrences": 3 - }, - "0xd686e8dfecfd976d80e5641489b7a18ac16d965d": { - "address": "0xd686e8dfecfd976d80e5641489b7a18ac16d965d", - "symbol": "WOOP", - "decimals": 18, - "name": "Woonkly", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xd686e8dfecfd976d80e5641489b7a18ac16d965d.png", - "aggregators": ["PancakeCoinMarketCap", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x93749e69560efe1ad6661903e47df538492c50a4": { - "address": "0x93749e69560efe1ad6661903e47df538492c50a4", - "symbol": "EVDC", - "decimals": 9, - "name": "EVDC", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x93749e69560efe1ad6661903e47df538492c50a4.png", - "aggregators": ["PancakeCoinMarketCap", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x78a499a998bdd5a84cf8b5abe49100d82de12f1c": { - "address": "0x78a499a998bdd5a84cf8b5abe49100d82de12f1c", - "symbol": "JOJO", - "decimals": 9, - "name": "JOJO", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x78a499a998bdd5a84cf8b5abe49100d82de12f1c.png", - "aggregators": ["PancakeCoinMarketCap", "Rubic", "Rango"], - "occurrences": 3 - }, - "0xdc847755343c3a2b94d6afc0aae57651e1b14064": { - "address": "0xdc847755343c3a2b94d6afc0aae57651e1b14064", - "symbol": "BODAV2", - "decimals": 18, - "name": "BODA", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xdc847755343c3a2b94d6afc0aae57651e1b14064.png", - "aggregators": ["PancakeCoinMarketCap", "Rubic", "Sonarwatch"], - "occurrences": 3 - }, - "0x80d04e44955aa9c3f24041b2a824a20a88e735a8": { - "address": "0x80d04e44955aa9c3f24041b2a824a20a88e735a8", - "symbol": "MVC", - "decimals": 18, - "name": "Multiverse Capital", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x80d04e44955aa9c3f24041b2a824a20a88e735a8.png", - "aggregators": ["PancakeCoinMarketCap", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x6249428345819cac8b8c7f1f68771073cb689ab1": { - "address": "0x6249428345819cac8b8c7f1f68771073cb689ab1", - "symbol": "BBK", - "decimals": 18, - "name": "BNB Bank", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x6249428345819cac8b8c7f1f68771073cb689ab1.png", - "aggregators": ["PancakeCoinMarketCap", "Rubic", "Sonarwatch"], - "occurrences": 3 - }, - "0x34e4a7454cae15990850166a8771cb8408b62a26": { - "address": "0x34e4a7454cae15990850166a8771cb8408b62a26", - "symbol": "FLX", - "decimals": 9, - "name": "Felix", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x34e4a7454cae15990850166a8771cb8408b62a26.png", - "aggregators": ["PancakeCoinMarketCap", "Rubic", "Sonarwatch"], - "occurrences": 3 - }, - "0x7268b479eb7ce8d1b37ef1ffc3b82d7383a1162d": { - "address": "0x7268b479eb7ce8d1b37ef1ffc3b82d7383a1162d", - "symbol": "MEB", - "decimals": 18, - "name": "Meblox Protocol", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x7268b479eb7ce8d1b37ef1ffc3b82d7383a1162d.png", - "aggregators": ["PancakeCoinMarketCap", "Rubic", "Rango"], - "occurrences": 3 - }, - "0xb149b030cfa47880af0bde4cd36539e4c928b3eb": { - "address": "0xb149b030cfa47880af0bde4cd36539e4c928b3eb", - "symbol": "NUTGV2", - "decimals": 9, - "name": "NUTGAIN", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xb149b030cfa47880af0bde4cd36539e4c928b3eb.png", - "aggregators": ["PancakeCoinMarketCap", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x10b9dd394467f2cfbc769e07e88dc7e2c41b0965": { - "address": "0x10b9dd394467f2cfbc769e07e88dc7e2c41b0965", - "symbol": "RET", - "decimals": 9, - "name": "Renewable Energy Token", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x10b9dd394467f2cfbc769e07e88dc7e2c41b0965.png", - "aggregators": ["PancakeCoinMarketCap", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x4afc8c2be6a0783ea16e16066fde140d15979296": { - "address": "0x4afc8c2be6a0783ea16e16066fde140d15979296", - "symbol": "HARE", - "decimals": 9, - "name": "Hare Token", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x4afc8c2be6a0783ea16e16066fde140d15979296.png", - "aggregators": ["PancakeCoinMarketCap", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x88c55b3255ae1e6628c953c5cdff27ad3cc33c81": { - "address": "0x88c55b3255ae1e6628c953c5cdff27ad3cc33c81", - "symbol": "DLEGENDS", - "decimals": 9, - "name": "My DeFi Legends", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x88c55b3255ae1e6628c953c5cdff27ad3cc33c81.png", - "aggregators": ["PancakeCoinMarketCap", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x54626300818e5c5b44db0fcf45ba4943ca89a9e2": { - "address": "0x54626300818e5c5b44db0fcf45ba4943ca89a9e2", - "symbol": "CHECOIN", - "decimals": 18, - "name": "CheCoin", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x54626300818e5c5b44db0fcf45ba4943ca89a9e2.png", - "aggregators": ["PancakeCoinMarketCap", "Rubic", "Sonarwatch"], - "occurrences": 3 - }, - "0x4823a096382f4fa583b55d563afb9f9a58c72fc0": { - "address": "0x4823a096382f4fa583b55d563afb9f9a58c72fc0", - "symbol": "ABIC", - "decimals": 18, - "name": "Arabic", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x4823a096382f4fa583b55d563afb9f9a58c72fc0.png", - "aggregators": ["PancakeCoinMarketCap", "Rubic", "Rango"], - "occurrences": 3 - }, - "0xed66ec1acb7dbd0c01cccff33e3ff1f423057c21": { - "address": "0xed66ec1acb7dbd0c01cccff33e3ff1f423057c21", - "symbol": "VT", - "decimals": 18, - "name": "Virtual Tourist", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xed66ec1acb7dbd0c01cccff33e3ff1f423057c21.png", - "aggregators": ["PancakeCoinMarketCap", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x1b2128abc4119474d16bb0a04200b63b0e68a971": { - "address": "0x1b2128abc4119474d16bb0a04200b63b0e68a971", - "symbol": "CONX", - "decimals": 18, - "name": "Connex", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x1b2128abc4119474d16bb0a04200b63b0e68a971.png", - "aggregators": ["PancakeCoinMarketCap", "Rubic", "Rango"], - "occurrences": 3 - }, - "0xe96a53af382c669848a87d42df3af6e08c34fa5e": { - "address": "0xe96a53af382c669848a87d42df3af6e08c34fa5e", - "symbol": "GUCCIPEPE", - "decimals": 18, - "name": "GucciPepe", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xe96a53af382c669848a87d42df3af6e08c34fa5e.png", - "aggregators": ["PancakeCoinMarketCap", "Rubic", "Rango"], - "occurrences": 3 - }, - "0xded8893858419bad2fa43970ab29776d6c171455": { - "address": "0xded8893858419bad2fa43970ab29776d6c171455", - "symbol": "GELO", - "decimals": 9, - "name": "Grok Elo", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xded8893858419bad2fa43970ab29776d6c171455.png", - "aggregators": ["PancakeCoinMarketCap", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x6ec9a568881755c9698384cc6b5b13bf4064e12b": { - "address": "0x6ec9a568881755c9698384cc6b5b13bf4064e12b", - "symbol": "OPX", - "decimals": 9, - "name": "Optimus X", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x6ec9a568881755c9698384cc6b5b13bf4064e12b.png", - "aggregators": ["PancakeCoinMarketCap", "Rubic", "Sonarwatch"], - "occurrences": 3 - }, - "0xe0edfb2d674188d3fea36a38f39e6cd8a14e28e0": { - "address": "0xe0edfb2d674188d3fea36a38f39e6cd8a14e28e0", - "symbol": "SAFEGROK", - "decimals": 9, - "name": "SafeGrok", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xe0edfb2d674188d3fea36a38f39e6cd8a14e28e0.png", - "aggregators": ["PancakeCoinMarketCap", "Rubic", "Sonarwatch"], - "occurrences": 3 - }, - "0x9f7f4ddbcac23db5280d4aab83a28c5c3eff535e": { - "address": "0x9f7f4ddbcac23db5280d4aab83a28c5c3eff535e", - "symbol": "OUT", - "decimals": 18, - "name": "Outter Finance", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x9f7f4ddbcac23db5280d4aab83a28c5c3eff535e.png", - "aggregators": ["PancakeCoinMarketCap", "Rubic", "Sonarwatch"], - "occurrences": 3 - }, - "0x9851feb263dd6e559c2b934f2873401cfb09ecb5": { - "address": "0x9851feb263dd6e559c2b934f2873401cfb09ecb5", - "symbol": "BUCK", - "decimals": 18, - "name": "CoinBuck", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x9851feb263dd6e559c2b934f2873401cfb09ecb5.png", - "aggregators": ["PancakeCoinMarketCap", "Rubic", "Sonarwatch"], - "occurrences": 3 - }, - "0x0c78d4605c2972e5f989de9019de1fb00c5d3462": { - "address": "0x0c78d4605c2972e5f989de9019de1fb00c5d3462", - "symbol": "CESS", - "decimals": 18, - "name": "CESS Network", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x0c78d4605c2972e5f989de9019de1fb00c5d3462.png", - "aggregators": ["CoinGecko", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x22830be0954ff3bf7929405c488b1bba54a7e0d3": { - "address": "0x22830be0954ff3bf7929405c488b1bba54a7e0d3", - "symbol": "BRCST", - "decimals": 18, - "name": "BRCStarter", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x22830be0954ff3bf7929405c488b1bba54a7e0d3.png", - "aggregators": ["PancakeCoinMarketCap", "Rubic", "Rango"], - "occurrences": 3 - }, - "0xf00cd9366a13e725ab6764ee6fc8bd21da22786e": { - "address": "0xf00cd9366a13e725ab6764ee6fc8bd21da22786e", - "symbol": "TWD", - "decimals": 18, - "name": "THE WORD TOKEN", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xf00cd9366a13e725ab6764ee6fc8bd21da22786e.png", - "aggregators": ["PancakeCoinMarketCap", "Rubic", "Rango"], - "occurrences": 3 - }, - "0xbfc89d2134053d15d277a01c2a1a1980e0a5dbcd": { - "address": "0xbfc89d2134053d15d277a01c2a1a1980e0a5dbcd", - "symbol": "BABYTOMCAT", - "decimals": 9, - "name": "Baby Tomcat", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xbfc89d2134053d15d277a01c2a1a1980e0a5dbcd.png", - "aggregators": ["PancakeCoinMarketCap", "Rubic", "Sonarwatch"], - "occurrences": 3 - }, - "0xe11f1d5eee6be945bee3fa20dbf46febbc9f4a19": { - "address": "0xe11f1d5eee6be945bee3fa20dbf46febbc9f4a19", - "symbol": "NUSA", - "decimals": 18, - "name": "Nusa", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xe11f1d5eee6be945bee3fa20dbf46febbc9f4a19.png", - "aggregators": ["PancakeCoinMarketCap", "Rubic", "Rango"], - "occurrences": 3 - }, - "0xee7e8c85956d32c64bafdcded3f43b3c39b1ce2f": { - "address": "0xee7e8c85956d32c64bafdcded3f43b3c39b1ce2f", - "symbol": "WEB4", - "decimals": 9, - "name": "WEB4 AI", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xee7e8c85956d32c64bafdcded3f43b3c39b1ce2f.png", - "aggregators": ["PancakeCoinMarketCap", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x23f9a46a2c06f5249702aad1b9b1fd1b6e6833cf": { - "address": "0x23f9a46a2c06f5249702aad1b9b1fd1b6e6833cf", - "symbol": "NPT", - "decimals": 18, - "name": "Nero", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x23f9a46a2c06f5249702aad1b9b1fd1b6e6833cf.png", - "aggregators": ["PancakeCoinMarketCap", "Rubic", "Sonarwatch"], - "occurrences": 3 - }, - "0x71d03f5cbf039febcc6ee8dbe20bc9ba3ea874fe": { - "address": "0x71d03f5cbf039febcc6ee8dbe20bc9ba3ea874fe", - "symbol": "W3S", - "decimals": 18, - "name": "Web3Shot", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x71d03f5cbf039febcc6ee8dbe20bc9ba3ea874fe.png", - "aggregators": ["PancakeCoinMarketCap", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x62529d7de8293217c8f74d60c8c0f6481de47f0e": { - "address": "0x62529d7de8293217c8f74d60c8c0f6481de47f0e", - "symbol": "DAYL", - "decimals": 18, - "name": "Daylight Protocol", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x62529d7de8293217c8f74d60c8c0f6481de47f0e.png", - "aggregators": ["PancakeCoinMarketCap", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x6eb6e8974264bee01c160f1770a38f8e6de1a3b1": { - "address": "0x6eb6e8974264bee01c160f1770a38f8e6de1a3b1", - "symbol": "GET", - "decimals": 9, - "name": "Get AI", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x6eb6e8974264bee01c160f1770a38f8e6de1a3b1.png", - "aggregators": ["CoinGecko", "Rubic", "Sonarwatch"], - "occurrences": 3 - }, - "0xf5f53af4595bab806e2522ca7a8bbcb70a9b3da8": { - "address": "0xf5f53af4595bab806e2522ca7a8bbcb70a9b3da8", - "symbol": "T99", - "decimals": 18, - "name": "T99", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xf5f53af4595bab806e2522ca7a8bbcb70a9b3da8.png", - "aggregators": ["CoinGecko", "Rubic", "Rango"], - "occurrences": 3 - }, - "0xda05ca5303d75f14e298fb8aeff51fd2f2105803": { - "address": "0xda05ca5303d75f14e298fb8aeff51fd2f2105803", - "symbol": "ARARA", - "decimals": 18, - "name": "ARARA", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xda05ca5303d75f14e298fb8aeff51fd2f2105803.png", - "aggregators": ["CoinGecko", "Rubic", "Rango"], - "occurrences": 3 - }, - "0xd5369a3cac0f4448a9a96bb98af9c887c92fc37b": { - "address": "0xd5369a3cac0f4448a9a96bb98af9c887c92fc37b", - "symbol": "BUBB", - "decimals": 18, - "name": "Bubb", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xd5369a3cac0f4448a9a96bb98af9c887c92fc37b.png", - "aggregators": ["PancakeExtended", "Rubic", "Sonarwatch"], - "occurrences": 3 - }, - "0x07cce0b93cde5e14a00e680fb39c189c7a2b7d93": { - "address": "0x07cce0b93cde5e14a00e680fb39c189c7a2b7d93", - "symbol": "BPT", - "decimals": 18, - "name": "BPT", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x07cce0b93cde5e14a00e680fb39c189c7a2b7d93.png", - "aggregators": ["CoinGecko", "Rubic", "Rango"], - "occurrences": 3 - }, - "0xcab6311f95faf6b5db4fd306092b6bcd9807e8f0": { - "address": "0xcab6311f95faf6b5db4fd306092b6bcd9807e8f0", - "symbol": "FXBT", - "decimals": 18, - "name": "FourXBT", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xcab6311f95faf6b5db4fd306092b6bcd9807e8f0.png", - "aggregators": ["CoinGecko", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x2ff8d8cae3a9633285c60150099bad25c9b4e5d9": { - "address": "0x2ff8d8cae3a9633285c60150099bad25c9b4e5d9", - "symbol": "AICZ", - "decimals": 18, - "name": "Artificial CZ", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x2ff8d8cae3a9633285c60150099bad25c9b4e5d9.png", - "aggregators": ["CoinGecko", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x12819623921be0f4d5ebfc12c75e6d08a1683080": { - "address": "0x12819623921be0f4d5ebfc12c75e6d08a1683080", - "symbol": "BROCCOLI", - "decimals": 18, - "name": "Broccoli", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x12819623921be0f4d5ebfc12c75e6d08a1683080.png", - "aggregators": ["CoinGecko", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x86da4b72f0ce7a9d263263f521f37b3aa9a996d4": { - "address": "0x86da4b72f0ce7a9d263263f521f37b3aa9a996d4", - "symbol": "TDE", - "decimals": 9, - "name": "Trader", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x86da4b72f0ce7a9d263263f521f37b3aa9a996d4.png", - "aggregators": ["CoinGecko", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x23d3f4eaaa515403c6765bb623f287a8cca28f2b": { - "address": "0x23d3f4eaaa515403c6765bb623f287a8cca28f2b", - "symbol": "BROCCOLI", - "decimals": 18, - "name": "Broccoli", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x23d3f4eaaa515403c6765bb623f287a8cca28f2b.png", - "aggregators": ["PancakeExtended", "Rubic", "Sonarwatch"], - "occurrences": 3 - }, - "0x3ab1a5f76e12202d1ad1548a08a799501581da4e": { - "address": "0x3ab1a5f76e12202d1ad1548a08a799501581da4e", - "symbol": "DIN", - "decimals": 18, - "name": "DIN", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x3ab1a5f76e12202d1ad1548a08a799501581da4e.png", - "aggregators": ["CoinGecko", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x709a6bb090b8c4c72cb44533624f3df320a8ba80": { - "address": "0x709a6bb090b8c4c72cb44533624f3df320a8ba80", - "symbol": "BABYBROCCOLI", - "decimals": 18, - "name": "Baby Broccoli", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x709a6bb090b8c4c72cb44533624f3df320a8ba80.png", - "aggregators": ["CoinGecko", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x8a87562947422db0eb3070a5a1ac773c7a8d64e7": { - "address": "0x8a87562947422db0eb3070a5a1ac773c7a8d64e7", - "symbol": "SILENTIS", - "decimals": 18, - "name": "Silentis", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x8a87562947422db0eb3070a5a1ac773c7a8d64e7.png", - "aggregators": ["CoinGecko", "Rubic", "Sonarwatch"], - "occurrences": 3 - }, - "0x1e756f0493da68433de3b47d5de2d5e791fe5a26": { - "address": "0x1e756f0493da68433de3b47d5de2d5e791fe5a26", - "symbol": "BOBO", - "decimals": 18, - "name": "BOBO", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x1e756f0493da68433de3b47d5de2d5e791fe5a26.png", - "aggregators": ["CoinGecko", "Rubic", "Sonarwatch"], - "occurrences": 3 - }, - "0x92072f045d0904e9a0cdfd48519f54c83bf41e82": { - "address": "0x92072f045d0904e9a0cdfd48519f54c83bf41e82", - "symbol": "MOCHI", - "decimals": 9, - "name": "Mochi DeFi", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x92072f045d0904e9a0cdfd48519f54c83bf41e82.png", - "aggregators": ["PancakeCoinMarketCap", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x04c6f12e06ffe8a79935accf3d3068a4581a7e95": { - "address": "0x04c6f12e06ffe8a79935accf3d3068a4581a7e95", - "symbol": "BABYPEIPEI", - "decimals": 9, - "name": "Baby PeiPei", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x04c6f12e06ffe8a79935accf3d3068a4581a7e95.png", - "aggregators": ["PancakeCoinMarketCap", "Rubic", "Sonarwatch"], - "occurrences": 3 - }, - "0xde04da55b74435d7b9f2c5c62d9f1b53929b09aa": { - "address": "0xde04da55b74435d7b9f2c5c62d9f1b53929b09aa", - "symbol": "AICELL", - "decimals": 18, - "name": "AICell", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xde04da55b74435d7b9f2c5c62d9f1b53929b09aa.png", - "aggregators": ["PancakeExtended", "Rubic", "Sonarwatch"], - "occurrences": 3 - }, - "0xd949902af904dc295d85cf8e9de0ece9d5699a8f": { - "address": "0xd949902af904dc295d85cf8e9de0ece9d5699a8f", - "symbol": "MANA3", - "decimals": 18, - "name": "MANA3", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xd949902af904dc295d85cf8e9de0ece9d5699a8f.png", - "aggregators": ["CoinGecko", "Rubic", "Sonarwatch"], - "occurrences": 3 - }, - "0x5f2ad0a281ea15515c8feff8421cb968cbfe9ae4": { - "address": "0x5f2ad0a281ea15515c8feff8421cb968cbfe9ae4", - "symbol": "SETAI", - "decimals": 18, - "name": "Sentient AI", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x5f2ad0a281ea15515c8feff8421cb968cbfe9ae4.png", - "aggregators": ["CoinGecko", "Rubic", "Rango"], - "occurrences": 3 - }, - "0xea7ebde332834c636e788819d0dcdc94ec936200": { - "address": "0xea7ebde332834c636e788819d0dcdc94ec936200", - "symbol": "PSP", - "decimals": 18, - "name": "PSP", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xea7ebde332834c636e788819d0dcdc94ec936200.png", - "aggregators": ["CoinGecko", "Rubic", "Rango"], - "occurrences": 3 - }, - "0xac36f2697a315a0a2244b905d13cd31dfebc8e63": { - "address": "0xac36f2697a315a0a2244b905d13cd31dfebc8e63", - "symbol": "DOGE BABY", - "decimals": 8, - "name": "Doge Baby", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xac36f2697a315a0a2244b905d13cd31dfebc8e63.png", - "aggregators": ["CoinGecko", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x3303113001c51769f2753c2afb7b5a6d0535660e": { - "address": "0x3303113001c51769f2753c2afb7b5a6d0535660e", - "symbol": "BABYGROK", - "decimals": 9, - "name": "Baby Grok", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x3303113001c51769f2753c2afb7b5a6d0535660e.png", - "aggregators": ["CoinGecko", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x1e3dbc0aad9671fdd31e58b2fcc6cf1ca9947994": { - "address": "0x1e3dbc0aad9671fdd31e58b2fcc6cf1ca9947994", - "symbol": "WAI", - "decimals": 18, - "name": "WORLD3", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x1e3dbc0aad9671fdd31e58b2fcc6cf1ca9947994.png", - "aggregators": ["PancakeExtended", "Socket", "Rubic"], - "occurrences": 3 - }, - "0x001208f7f53f78db2b32e1c68198d3e8f320aa23": { - "address": "0x001208f7f53f78db2b32e1c68198d3e8f320aa23", - "symbol": "APD", - "decimals": 9, - "name": "APD", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x001208f7f53f78db2b32e1c68198d3e8f320aa23.png", - "aggregators": ["CoinGecko", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x8888888809b788cd6e40a2d27e67425d5d0b5d3b": { - "address": "0x8888888809b788cd6e40a2d27e67425d5d0b5d3b", - "symbol": "CTH", - "decimals": 18, - "name": "Wrapped CTH Token", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x8888888809b788cd6e40a2d27e67425d5d0b5d3b.png", - "aggregators": ["CoinGecko", "Rubic", "Rango"], - "occurrences": 3 - }, - "0xe41de737f691847bc5ea486f2adc443936e5010c": { - "address": "0xe41de737f691847bc5ea486f2adc443936e5010c", - "symbol": "AIX", - "decimals": 18, - "name": "AIX Wallet", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xe41de737f691847bc5ea486f2adc443936e5010c.png", - "aggregators": ["CoinGecko", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x6a37f1219f367f8a369a2e2d00c8dbe0354086dd": { - "address": "0x6a37f1219f367f8a369a2e2d00c8dbe0354086dd", - "symbol": "CAL50", - "decimals": 18, - "name": "CAL50", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x6a37f1219f367f8a369a2e2d00c8dbe0354086dd.png", - "aggregators": ["CoinGecko", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x338ede32ef54b28a9a755d07144b4a7061dd4444": { - "address": "0x338ede32ef54b28a9a755d07144b4a7061dd4444", - "symbol": "空气币", - "decimals": 18, - "name": "air coin", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x338ede32ef54b28a9a755d07144b4a7061dd4444.png", - "aggregators": ["CoinGecko", "Rubic", "Rango"], - "occurrences": 3 - }, - "0xf3091e416b8b77b9b293ce8ea15ce1e034ff4bd1": { - "address": "0xf3091e416b8b77b9b293ce8ea15ce1e034ff4bd1", - "symbol": "PUG", - "decimals": 9, - "name": "Pug Inu", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xf3091e416b8b77b9b293ce8ea15ce1e034ff4bd1.png", - "aggregators": ["CoinGecko", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x84575b87395c970f1f48e87d87a8db36ed653716": { - "address": "0x84575b87395c970f1f48e87d87a8db36ed653716", - "symbol": "CDL", - "decimals": 18, - "name": "Creditlink", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x84575b87395c970f1f48e87d87a8db36ed653716.png", - "aggregators": ["PancakeExtended", "Rubic", "Rango"], - "occurrences": 3 - }, - "0xdd6abc8d9b3741df92eb82fb593f6abb1203ea92": { - "address": "0xdd6abc8d9b3741df92eb82fb593f6abb1203ea92", - "symbol": "CCC", - "decimals": 18, - "name": "CyberCrashCoin", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xdd6abc8d9b3741df92eb82fb593f6abb1203ea92.png", - "aggregators": ["CoinGecko", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x1eb55169c045dd91ac47a0c3af2fb1df93064444": { - "address": "0x1eb55169c045dd91ac47a0c3af2fb1df93064444", - "symbol": "MOON", - "decimals": 18, - "name": "Moon", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x1eb55169c045dd91ac47a0c3af2fb1df93064444.png", - "aggregators": ["CoinGecko", "Rubic", "Rango"], - "occurrences": 3 - }, - "0xc23db46993f643f1fa0494cd30f9f43505885d84": { - "address": "0xc23db46993f643f1fa0494cd30f9f43505885d84", - "symbol": "TCOM", - "decimals": 18, - "name": "TCOM", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xc23db46993f643f1fa0494cd30f9f43505885d84.png", - "aggregators": ["PancakeExtended", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x718447e29b90d00461966d01e533fa1b69574444": { - "address": "0x718447e29b90d00461966d01e533fa1b69574444", - "symbol": "TENGE", - "decimals": 18, - "name": "TENGE TENGE", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x718447e29b90d00461966d01e533fa1b69574444.png", - "aggregators": ["CoinGecko", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x5d3a12c42e5372b2cc3264ab3cdcf660a1555238": { - "address": "0x5d3a12c42e5372b2cc3264ab3cdcf660a1555238", - "symbol": "ARIA", - "decimals": 18, - "name": "Aria.AI", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x5d3a12c42e5372b2cc3264ab3cdcf660a1555238.png", - "aggregators": ["PancakeExtended", "Rubic", "Squid"], - "occurrences": 3 - }, - "0xf22aac87e08d7fc60aa89eb21110ddfe59c20854": { - "address": "0xf22aac87e08d7fc60aa89eb21110ddfe59c20854", - "symbol": "BTC", - "decimals": 18, - "name": "Bitcoin AI", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xf22aac87e08d7fc60aa89eb21110ddfe59c20854.png", - "aggregators": ["CoinGecko", "Rubic", "Rango"], - "occurrences": 3 - }, - "0xaf62c16e46238c14ab8eda78285feb724e7d4444": { - "address": "0xaf62c16e46238c14ab8eda78285feb724e7d4444", - "symbol": "CRX", - "decimals": 18, - "name": "Chatrix", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xaf62c16e46238c14ab8eda78285feb724e7d4444.png", - "aggregators": ["CoinGecko", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x83330d159c9a4b09e6717feefef7a634b70d216a": { - "address": "0x83330d159c9a4b09e6717feefef7a634b70d216a", - "symbol": "MTP", - "decimals": 18, - "name": "Multiple Network Token", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x83330d159c9a4b09e6717feefef7a634b70d216a.png", - "aggregators": ["CoinGecko", "Rubic", "Rango"], - "occurrences": 3 - }, - "0xbfa362937bfd11ec22a023abf83b6df4e5e303d4": { - "address": "0xbfa362937bfd11ec22a023abf83b6df4e5e303d4", - "symbol": "DIT", - "decimals": 18, - "name": "DIT", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xbfa362937bfd11ec22a023abf83b6df4e5e303d4.png", - "aggregators": ["CoinGecko", "Rubic", "Rango"], - "occurrences": 3 - }, - "0xe5e1a0a43f307f390887e2a17399172f3f9a3cab": { - "address": "0xe5e1a0a43f307f390887e2a17399172f3f9a3cab", - "symbol": "ETAN", - "decimals": 18, - "name": "Etarn", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xe5e1a0a43f307f390887e2a17399172f3f9a3cab.png", - "aggregators": ["CoinGecko", "Rubic", "Rango"], - "occurrences": 3 - }, - "0xf0b6e02bb5903bc98792aebe98e72007d3d7e5e8": { - "address": "0xf0b6e02bb5903bc98792aebe98e72007d3d7e5e8", - "symbol": "BLWK", - "decimals": 18, - "name": "BlackWork", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xf0b6e02bb5903bc98792aebe98e72007d3d7e5e8.png", - "aggregators": ["CoinGecko", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x42fe1937e1db4f11509e9f7fdd97048bd8d04444": { - "address": "0x42fe1937e1db4f11509e9f7fdd97048bd8d04444", - "symbol": "DON", - "decimals": 18, - "name": "Salamanca", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x42fe1937e1db4f11509e9f7fdd97048bd8d04444.png", - "aggregators": ["CoinGecko", "Rubic", "Rango"], - "occurrences": 3 - }, - "0xe9ff81d70aa9319134748c1628b6768e8f281f19": { - "address": "0xe9ff81d70aa9319134748c1628b6768e8f281f19", - "symbol": "PUPX", - "decimals": 18, - "name": "Pupnance", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xe9ff81d70aa9319134748c1628b6768e8f281f19.png", - "aggregators": ["CoinGecko", "Rubic", "Sonarwatch"], - "occurrences": 3 - }, - "0xd8002d4bd1d50136a731c141e3206d516e6d3b3d": { - "address": "0xd8002d4bd1d50136a731c141e3206d516e6d3b3d", - "symbol": "GM", - "decimals": 18, - "name": "Gomble", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xd8002d4bd1d50136a731c141e3206d516e6d3b3d.png", - "aggregators": ["PancakeExtended", "Rubic", "Sonarwatch"], - "occurrences": 3 - }, - "0xcdc80a63d24bb2b3c7de48ef4a69a00000000000": { - "address": "0xcdc80a63d24bb2b3c7de48ef4a69a00000000000", - "symbol": "K0", - "decimals": 18, - "name": "Kill Zero Token", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xcdc80a63d24bb2b3c7de48ef4a69a00000000000.png", - "aggregators": ["CoinGecko", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x795d2710e383f33fbebe980a155b29757b6703f3": { - "address": "0x795d2710e383f33fbebe980a155b29757b6703f3", - "symbol": "GHIBLI", - "decimals": 18, - "name": "GhibliCZ", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x795d2710e383f33fbebe980a155b29757b6703f3.png", - "aggregators": ["CoinGecko", "Rubic", "Rango"], - "occurrences": 3 - }, - "0xee20edd0cd31b499796b4dc9db5fd0eb6bb17961": { - "address": "0xee20edd0cd31b499796b4dc9db5fd0eb6bb17961", - "symbol": "SENTI", - "decimals": 18, - "name": "Senti AI", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xee20edd0cd31b499796b4dc9db5fd0eb6bb17961.png", - "aggregators": ["CoinGecko", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x4a1c76b8e8b347e1852352ea931bfe649fc64444": { - "address": "0x4a1c76b8e8b347e1852352ea931bfe649fc64444", - "symbol": "ROCKET", - "decimals": 18, - "name": "DOGE ROCKET", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x4a1c76b8e8b347e1852352ea931bfe649fc64444.png", - "aggregators": ["CoinGecko", "Rubic", "Rango"], - "occurrences": 3 - }, - "0xacee924ec7fceb684369519e2d135db2eaabe192": { - "address": "0xacee924ec7fceb684369519e2d135db2eaabe192", - "symbol": "SHORT", - "decimals": 18, - "name": "Bermuda Shorts", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xacee924ec7fceb684369519e2d135db2eaabe192.png", - "aggregators": ["CoinGecko", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x7f890a4a575558307826c82e4cb6e671f3178bfc": { - "address": "0x7f890a4a575558307826c82e4cb6e671f3178bfc", - "symbol": "CTD", - "decimals": 18, - "name": "Chain Talk Daily", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x7f890a4a575558307826c82e4cb6e671f3178bfc.png", - "aggregators": ["CoinGecko", "Rubic", "Rango"], - "occurrences": 3 - }, - "0xaa9f209c295437c31bde75eee1aa8453f2acabcd": { - "address": "0xaa9f209c295437c31bde75eee1aa8453f2acabcd", - "symbol": "AID", - "decimals": 18, - "name": "AID", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xaa9f209c295437c31bde75eee1aa8453f2acabcd.png", - "aggregators": ["CoinGecko", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x380bf199b3173cf7b3b321848ae1c5014a124444": { - "address": "0x380bf199b3173cf7b3b321848ae1c5014a124444", - "symbol": "W", - "decimals": 18, - "name": "W", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x380bf199b3173cf7b3b321848ae1c5014a124444.png", - "aggregators": ["CoinGecko", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x3b4de3c7855c03bb9f50ea252cd2c9fa1125ab07": { - "address": "0x3b4de3c7855c03bb9f50ea252cd2c9fa1125ab07", - "symbol": "IDOL", - "decimals": 18, - "name": "MEET48 Token", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x3b4de3c7855c03bb9f50ea252cd2c9fa1125ab07.png", - "aggregators": ["PancakeExtended", "LiFi", "Rubic"], - "occurrences": 3 - }, - "0x74da4c5f8c254dd4fb39f9804c0924f52a808318": { - "address": "0x74da4c5f8c254dd4fb39f9804c0924f52a808318", - "symbol": "CA", - "decimals": 18, - "name": "Caila", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x74da4c5f8c254dd4fb39f9804c0924f52a808318.png", - "aggregators": ["PancakeExtended", "Socket", "Rubic"], - "occurrences": 3 - }, - "0xbfe78de7d1c51e0868501d5fa3e88e674c79acdd": { - "address": "0xbfe78de7d1c51e0868501d5fa3e88e674c79acdd", - "symbol": "LOT", - "decimals": 18, - "name": "League of Traders", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xbfe78de7d1c51e0868501d5fa3e88e674c79acdd.png", - "aggregators": ["CoinGecko", "Rubic", "Rango"], - "occurrences": 3 - }, - "0xadf7335da0e77339f2d69841f79b0aa6c14d187d": { - "address": "0xadf7335da0e77339f2d69841f79b0aa6c14d187d", - "symbol": "AIV", - "decimals": 18, - "name": "AIVille Governance Token", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xadf7335da0e77339f2d69841f79b0aa6c14d187d.png", - "aggregators": ["CoinGecko", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x3c8d20001fe883934a15c949a3355a65ca984444": { - "address": "0x3c8d20001fe883934a15c949a3355a65ca984444", - "symbol": "JANITOR", - "decimals": 18, - "name": "Janitor", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x3c8d20001fe883934a15c949a3355a65ca984444.png", - "aggregators": ["PancakeExtended", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x945cd29a40629ada610c2f6eba3f393756aa4444": { - "address": "0x945cd29a40629ada610c2f6eba3f393756aa4444", - "symbol": "USD1DOGE", - "decimals": 18, - "name": "USD1DOGE", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x945cd29a40629ada610c2f6eba3f393756aa4444.png", - "aggregators": ["CoinGecko", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x595e21b20e78674f8a64c1566a20b2b316bc3511": { - "address": "0x595e21b20e78674f8a64c1566a20b2b316bc3511", - "symbol": "BULLA", - "decimals": 18, - "name": "BULLA", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x595e21b20e78674f8a64c1566a20b2b316bc3511.png", - "aggregators": ["PancakeExtended", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x88a573484a2bb61dc830cd41cfca2f7b75622ec9": { - "address": "0x88a573484a2bb61dc830cd41cfca2f7b75622ec9", - "symbol": "MOCO", - "decimals": 0, - "name": "MOCO", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x88a573484a2bb61dc830cd41cfca2f7b75622ec9.png", - "aggregators": ["CoinGecko", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x6338daf47ea4cf4f0901d16853eaa8e64b499c30": { - "address": "0x6338daf47ea4cf4f0901d16853eaa8e64b499c30", - "symbol": "TNT", - "decimals": 18, - "name": "Titan Token", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x6338daf47ea4cf4f0901d16853eaa8e64b499c30.png", - "aggregators": ["CoinGecko", "Rubic", "Sonarwatch"], - "occurrences": 3 - }, - "0x2d2d8449ec0bb78c497c36ffaac583dff4bd4444": { - "address": "0x2d2d8449ec0bb78c497c36ffaac583dff4bd4444", - "symbol": "MVP", - "decimals": 18, - "name": "CrypstocksAI", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x2d2d8449ec0bb78c497c36ffaac583dff4bd4444.png", - "aggregators": ["CoinGecko", "Rubic", "Rango"], - "occurrences": 3 - }, - "0xd6a8dc25b26beb85cd0eef63e5d8d32048113b51": { - "address": "0xd6a8dc25b26beb85cd0eef63e5d8d32048113b51", - "symbol": "F", - "decimals": 18, - "name": "F", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xd6a8dc25b26beb85cd0eef63e5d8d32048113b51.png", - "aggregators": ["CoinGecko", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x8de4aa9716c1bd8d68ad73b1cb8639830f40ee05": { - "address": "0x8de4aa9716c1bd8d68ad73b1cb8639830f40ee05", - "symbol": "CJL", - "decimals": 18, - "name": "CJL", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x8de4aa9716c1bd8d68ad73b1cb8639830f40ee05.png", - "aggregators": ["CoinGecko", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x46ee3bfc281d59009ccd06f1dd6abdbfcd82ffc3": { - "address": "0x46ee3bfc281d59009ccd06f1dd6abdbfcd82ffc3", - "symbol": "GATA", - "decimals": 18, - "name": "Gata", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x46ee3bfc281d59009ccd06f1dd6abdbfcd82ffc3.png", - "aggregators": ["PancakeExtended", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x8a0db359c38414b5f145f65cc1c69d9253067c43": { - "address": "0x8a0db359c38414b5f145f65cc1c69d9253067c43", - "symbol": "UPTOP", - "decimals": 18, - "name": "UPTOP", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x8a0db359c38414b5f145f65cc1c69d9253067c43.png", - "aggregators": ["PancakeExtended", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x4ade32598fe2caa549fd7c720bb91c0111314444": { - "address": "0x4ade32598fe2caa549fd7c720bb91c0111314444", - "symbol": "CRYSTAL", - "decimals": 18, - "name": "CrystalMine", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x4ade32598fe2caa549fd7c720bb91c0111314444.png", - "aggregators": ["CoinGecko", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x0d4d3c739e2fdf82c7ce2a9e450e208e5330a237": { - "address": "0x0d4d3c739e2fdf82c7ce2a9e450e208e5330a237", - "symbol": "ZORO", - "decimals": 18, - "name": "ZoRobotics", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x0d4d3c739e2fdf82c7ce2a9e450e208e5330a237.png", - "aggregators": ["PancakeExtended", "Rubic", "Rango"], - "occurrences": 3 - }, - "0xd6752d1c7fcec58bffe3898eb31453b9e35d47e6": { - "address": "0xd6752d1c7fcec58bffe3898eb31453b9e35d47e6", - "symbol": "BALDOR", - "decimals": 18, - "name": "Baldor", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xd6752d1c7fcec58bffe3898eb31453b9e35d47e6.png", - "aggregators": ["CoinGecko", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x0510101ec6c49d24ed911f0011e22a0d697ee776": { - "address": "0x0510101ec6c49d24ed911f0011e22a0d697ee776", - "symbol": "X", - "decimals": 18, - "name": "TaleX", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x0510101ec6c49d24ed911f0011e22a0d697ee776.png", - "aggregators": ["PancakeExtended", "Socket", "Rubic"], - "occurrences": 3 - }, - "0x2e156a3e09782a785345b7a33c46c71596ffd551": { - "address": "0x2e156a3e09782a785345b7a33c46c71596ffd551", - "symbol": "IMAGE", - "decimals": 18, - "name": "Imagen Network (BSC)", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x2e156a3e09782a785345b7a33c46c71596ffd551.png", - "aggregators": ["CoinGecko", "Rubic", "Rango"], - "occurrences": 3 - }, - "0xc2b1ddb75046c4915c641cc0dc0d0f160ef82be5": { - "address": "0xc2b1ddb75046c4915c641cc0dc0d0f160ef82be5", - "symbol": "GLIDR", - "decimals": 18, - "name": "Glidr", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xc2b1ddb75046c4915c641cc0dc0d0f160ef82be5.png", - "aggregators": ["CoinGecko", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x6dfa5cfb15a439f78b118a14780e7c07a14148af": { - "address": "0x6dfa5cfb15a439f78b118a14780e7c07a14148af", - "symbol": "BLUP", - "decimals": 18, - "name": "Bluwhale Points Token", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x6dfa5cfb15a439f78b118a14780e7c07a14148af.png", - "aggregators": ["CoinGecko", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x6ea8211a1e47dbd8b55c487c0b906ebc57b94444": { - "address": "0x6ea8211a1e47dbd8b55c487c0b906ebc57b94444", - "symbol": "LIBERTY", - "decimals": 18, - "name": "Torch of Liberty", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x6ea8211a1e47dbd8b55c487c0b906ebc57b94444.png", - "aggregators": ["PancakeExtended", "Rubic", "Rango"], - "occurrences": 3 - }, - "0xb5b7f828caed10db9582bed424ff79809ce766cb": { - "address": "0xb5b7f828caed10db9582bed424ff79809ce766cb", - "symbol": "MOO", - "decimals": 18, - "name": "Moo", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xb5b7f828caed10db9582bed424ff79809ce766cb.png", - "aggregators": ["CoinGecko", "Rubic", "Rango"], - "occurrences": 3 - }, - "0xb86414afc434345a91ca80a889d73fd1e8155b4b": { - "address": "0xb86414afc434345a91ca80a889d73fd1e8155b4b", - "symbol": "CTCP", - "decimals": 18, - "name": "CTC PLUS", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xb86414afc434345a91ca80a889d73fd1e8155b4b.png", - "aggregators": ["CoinGecko", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x5f992abf5bc1725f6b0dfd116031c31aebb54444": { - "address": "0x5f992abf5bc1725f6b0dfd116031c31aebb54444", - "symbol": "OID", - "decimals": 18, - "name": "OID", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x5f992abf5bc1725f6b0dfd116031c31aebb54444.png", - "aggregators": ["CoinGecko", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x977c4f40742daca3f1a4c11b44938fc12d714444": { - "address": "0x977c4f40742daca3f1a4c11b44938fc12d714444", - "symbol": "2", - "decimals": 18, - "name": "2", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x977c4f40742daca3f1a4c11b44938fc12d714444.png", - "aggregators": ["CoinGecko", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x02e75d28a8aa2a0033b8cf866fcf0bb0e1ee4444": { - "address": "0x02e75d28a8aa2a0033b8cf866fcf0bb0e1ee4444", - "symbol": "PALU", - "decimals": 18, - "name": "Palu", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x02e75d28a8aa2a0033b8cf866fcf0bb0e1ee4444.png", - "aggregators": ["PancakeExtended", "Rubic", "Rango"], - "occurrences": 3 - }, - "0xb3eb140b4183bd155eb6d3e62a28758ad8a04444": { - "address": "0xb3eb140b4183bd155eb6d3e62a28758ad8a04444", - "symbol": "LULU", - "decimals": 18, - "name": "Capybara LULU", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xb3eb140b4183bd155eb6d3e62a28758ad8a04444.png", - "aggregators": ["CoinGecko", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x95db59f8aeeed345cfb3dd87762de37c77b8f520": { - "address": "0x95db59f8aeeed345cfb3dd87762de37c77b8f520", - "symbol": "$IPAX", - "decimals": 18, - "name": "Icopax", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x95db59f8aeeed345cfb3dd87762de37c77b8f520.png", - "aggregators": ["CoinGecko", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x593964358e7a1f4aa29e3c371e2148d18a6e4444": { - "address": "0x593964358e7a1f4aa29e3c371e2148d18a6e4444", - "symbol": "UPTOBER", - "decimals": 18, - "name": "Uptober", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x593964358e7a1f4aa29e3c371e2148d18a6e4444.png", - "aggregators": ["CoinGecko", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x0ace816a5336d8bdf8dece69cf084a03e36c4444": { - "address": "0x0ace816a5336d8bdf8dece69cf084a03e36c4444", - "symbol": "TIMELESS", - "decimals": 18, - "name": "Timeless", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x0ace816a5336d8bdf8dece69cf084a03e36c4444.png", - "aggregators": ["CoinGecko", "Rubic", "Rango"], - "occurrences": 3 - }, - "0xe389d200de7825db1a0fb62a0a68723920594444": { - "address": "0xe389d200de7825db1a0fb62a0a68723920594444", - "symbol": "FOREVER", - "decimals": 18, - "name": "FOREVER", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xe389d200de7825db1a0fb62a0a68723920594444.png", - "aggregators": ["CoinGecko", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x1d62584d38d26519ea509ee0668e4df25d164444": { - "address": "0x1d62584d38d26519ea509ee0668e4df25d164444", - "symbol": "ZIB", - "decimals": 18, - "name": "ZIBA", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x1d62584d38d26519ea509ee0668e4df25d164444.png", - "aggregators": ["CoinGecko", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x88883075fb050f4199cf7b2011cc15f1c966403f": { - "address": "0x88883075fb050f4199cf7b2011cc15f1c966403f", - "symbol": "BGOAT", - "decimals": 18, - "name": "BNB Goat", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x88883075fb050f4199cf7b2011cc15f1c966403f.png", - "aggregators": ["CoinGecko", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x3a89ff5a692cbb4a726a4d58253cbbbca9914444": { - "address": "0x3a89ff5a692cbb4a726a4d58253cbbbca9914444", - "symbol": "SANTA", - "decimals": 18, - "name": "Santacoin", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x3a89ff5a692cbb4a726a4d58253cbbbca9914444.png", - "aggregators": ["CoinGecko", "Rubic", "Rango"], - "occurrences": 3 - }, - "0xe9e3d8609e50c333b7e8fafb1a06f5443cb64444": { - "address": "0xe9e3d8609e50c333b7e8fafb1a06f5443cb64444", - "symbol": "YEPE", - "decimals": 18, - "name": "Yellow Pepe", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xe9e3d8609e50c333b7e8fafb1a06f5443cb64444.png", - "aggregators": ["CoinGecko", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x3ac8e2c113d5d7824ac6ebe82a3c60b1b9d64444": { - "address": "0x3ac8e2c113d5d7824ac6ebe82a3c60b1b9d64444", - "symbol": "客服小何", - "decimals": 18, - "name": "客服小何", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x3ac8e2c113d5d7824ac6ebe82a3c60b1b9d64444.png", - "aggregators": ["PancakeExtended", "Rubic", "Rango"], - "occurrences": 3 - }, - "0xf63d65a803efc5389ebded67473819a208ef4444": { - "address": "0xf63d65a803efc5389ebded67473819a208ef4444", - "symbol": "PALIE", - "decimals": 18, - "name": "Palie", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xf63d65a803efc5389ebded67473819a208ef4444.png", - "aggregators": ["CoinGecko", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x4f0a3bb884ac105d5e9f5ece437b05fc9a374444": { - "address": "0x4f0a3bb884ac105d5e9f5ece437b05fc9a374444", - "symbol": "SENDIT", - "decimals": 18, - "name": "Send It", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x4f0a3bb884ac105d5e9f5ece437b05fc9a374444.png", - "aggregators": ["CoinGecko", "Rubic", "Rango"], - "occurrences": 3 - }, - "0xc64dd458016302156323e724e94187b22a614444": { - "address": "0xc64dd458016302156323e724e94187b22a614444", - "symbol": "LIMITIESS", - "decimals": 18, - "name": "Limitless Coin", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xc64dd458016302156323e724e94187b22a614444.png", - "aggregators": ["CoinGecko", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x44443dd87ec4d1bea3425acc118adb023f07f91b": { - "address": "0x44443dd87ec4d1bea3425acc118adb023f07f91b", - "symbol": "修仙", - "decimals": 18, - "name": "修仙", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x44443dd87ec4d1bea3425acc118adb023f07f91b.png", - "aggregators": ["PancakeExtended", "Rubic", "Rango"], - "occurrences": 3 - }, - "0xc3c1b25ff8c3f828f36a030960d54082ed984444": { - "address": "0xc3c1b25ff8c3f828f36a030960d54082ed984444", - "symbol": "龙LONG", - "decimals": 18, - "name": "龙Long", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xc3c1b25ff8c3f828f36a030960d54082ed984444.png", - "aggregators": ["CoinGecko", "Rubic", "Rango"], - "occurrences": 3 - }, - "0xf368b32764a4b9e58cf6da67bb454f7809bc4444": { - "address": "0xf368b32764a4b9e58cf6da67bb454f7809bc4444", - "symbol": "1BNB", - "decimals": 18, - "name": "just buy 1bnb", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xf368b32764a4b9e58cf6da67bb454f7809bc4444.png", - "aggregators": ["CoinGecko", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x4444915314921dedff580946b691e5521d3aaa5a": { - "address": "0x4444915314921dedff580946b691e5521d3aaa5a", - "symbol": "Z", - "decimals": 18, - "name": "Z", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x4444915314921dedff580946b691e5521d3aaa5a.png", - "aggregators": ["CoinGecko", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x23d6645c66ebb25a68aa2862357eac378a274444": { - "address": "0x23d6645c66ebb25a68aa2862357eac378a274444", - "symbol": "马喽", - "decimals": 18, - "name": "马喽", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x23d6645c66ebb25a68aa2862357eac378a274444.png", - "aggregators": ["CoinGecko", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x78525f54e46d2821ec59bfae27201058881b4444": { - "address": "0x78525f54e46d2821ec59bfae27201058881b4444", - "symbol": "BULLS", - "decimals": 18, - "name": "BULLS", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x78525f54e46d2821ec59bfae27201058881b4444.png", - "aggregators": ["CoinGecko", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x7eb8f6a94cb6ffdf9f38c9d5b92e45de81474444": { - "address": "0x7eb8f6a94cb6ffdf9f38c9d5b92e45de81474444", - "symbol": "佩佩", - "decimals": 18, - "name": "PEPE", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x7eb8f6a94cb6ffdf9f38c9d5b92e45de81474444.png", - "aggregators": ["CoinGecko", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x4444f20947325dc5d37643bcaaa537c85cfcb524": { - "address": "0x4444f20947325dc5d37643bcaaa537c85cfcb524", - "symbol": "BOA", - "decimals": 18, - "name": "BULL FROG", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x4444f20947325dc5d37643bcaaa537c85cfcb524.png", - "aggregators": ["CoinGecko", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x544028231562a43b106fbceca722b65cb5c861b0": { - "address": "0x544028231562a43b106fbceca722b65cb5c861b0", - "symbol": "OLY", - "decimals": 9, - "name": "OLY", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x544028231562a43b106fbceca722b65cb5c861b0.png", - "aggregators": ["CoinGecko", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x9edcb93ecbe489d1ff2e4b9a4370d32309474444": { - "address": "0x9edcb93ecbe489d1ff2e4b9a4370d32309474444", - "symbol": "SCI6900", - "decimals": 18, - "name": "上证综合指数6900", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x9edcb93ecbe489d1ff2e4b9a4370d32309474444.png", - "aggregators": ["CoinGecko", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x0c5429e9dd1362bfb55c31c01b7f0f38f5f64444": { - "address": "0x0c5429e9dd1362bfb55c31c01b7f0f38f5f64444", - "symbol": "BINA", - "decimals": 18, - "name": "Binance yellow robot", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x0c5429e9dd1362bfb55c31c01b7f0f38f5f64444.png", - "aggregators": ["CoinGecko", "Rubic", "Rango"], - "occurrences": 3 - }, - "0xdc280afcd08e61be78ca8d154f78ef0bfea6deac": { - "address": "0xdc280afcd08e61be78ca8d154f78ef0bfea6deac", - "symbol": "BIAO", - "decimals": 18, - "name": "Biaoqing", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xdc280afcd08e61be78ca8d154f78ef0bfea6deac.png", - "aggregators": ["CoinGecko", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x810df4c7daf4ee06ae7c621d0680e73a505c9a06": { - "address": "0x810df4c7daf4ee06ae7c621d0680e73a505c9a06", - "symbol": "P", - "decimals": 18, - "name": "PoP Planet", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x810df4c7daf4ee06ae7c621d0680e73a505c9a06.png", - "aggregators": ["PancakeExtended", "Rubic", "Rango"], - "occurrences": 3 - }, - "0xee634a826465a1799afc2cfefbdb6fa3766c8888": { - "address": "0xee634a826465a1799afc2cfefbdb6fa3766c8888", - "symbol": "AEA", - "decimals": 18, - "name": "AlphaExchangeAI", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xee634a826465a1799afc2cfefbdb6fa3766c8888.png", - "aggregators": ["CoinGecko", "Rubic", "Rango"], - "occurrences": 3 - }, - "0xd0593df7a9a99ae03b46437c5f20c339bc02fc37": { - "address": "0xd0593df7a9a99ae03b46437c5f20c339bc02fc37", - "symbol": "BABYASTER", - "decimals": 9, - "name": "Baby Aster", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xd0593df7a9a99ae03b46437c5f20c339bc02fc37.png", - "aggregators": ["CoinGecko", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x6331bf8d601f0d7f0d2101772af5137c418c4444": { - "address": "0x6331bf8d601f0d7f0d2101772af5137c418c4444", - "symbol": "BSC", - "decimals": 18, - "name": "Binance Super Cycle", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x6331bf8d601f0d7f0d2101772af5137c418c4444.png", - "aggregators": ["CoinGecko", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x0320ac98a6b24acc65af829d15822f2c47904444": { - "address": "0x0320ac98a6b24acc65af829d15822f2c47904444", - "symbol": "BABYBTC", - "decimals": 18, - "name": "Baby Bitcoin", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x0320ac98a6b24acc65af829d15822f2c47904444.png", - "aggregators": ["CoinGecko", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x7d03759e5b41e36899833cb2e008455d69a24444": { - "address": "0x7d03759e5b41e36899833cb2e008455d69a24444", - "symbol": "PRICELESS", - "decimals": 18, - "name": "priceless", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x7d03759e5b41e36899833cb2e008455d69a24444.png", - "aggregators": ["CoinGecko", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x953783617a71a888f8b04f397f2c9e1a7c37af7e": { - "address": "0x953783617a71a888f8b04f397f2c9e1a7c37af7e", - "symbol": "JOJO", - "decimals": 18, - "name": "JOJOWORLD", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x953783617a71a888f8b04f397f2c9e1a7c37af7e.png", - "aggregators": ["PancakeExtended", "Rubic", "Rango"], - "occurrences": 3 - }, - "0xf1cf3b0e5c427c04cc48dbb3ab7f6ba357434444": { - "address": "0xf1cf3b0e5c427c04cc48dbb3ab7f6ba357434444", - "symbol": "杀马特", - "decimals": 18, - "name": "Shamatte", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xf1cf3b0e5c427c04cc48dbb3ab7f6ba357434444.png", - "aggregators": ["CoinGecko", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x9798da338fe83caf52d7533b48b8aed0913c4444": { - "address": "0x9798da338fe83caf52d7533b48b8aed0913c4444", - "symbol": "脸谱", - "decimals": 18, - "name": "脸谱", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x9798da338fe83caf52d7533b48b8aed0913c4444.png", - "aggregators": ["CoinGecko", "Rubic", "Rango"], - "occurrences": 3 - }, - "0xac5d77c76583a48d025ba1f01b0f544ea1294444": { - "address": "0xac5d77c76583a48d025ba1f01b0f544ea1294444", - "symbol": "PREDIFY", - "decimals": 18, - "name": "Predify", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xac5d77c76583a48d025ba1f01b0f544ea1294444.png", - "aggregators": ["CoinGecko", "Rubic", "Rango"], - "occurrences": 3 - }, - "0xcfc416b8d7937e77ac2e461afe1abea34d874444": { - "address": "0xcfc416b8d7937e77ac2e461afe1abea34d874444", - "symbol": "DARKBET", - "decimals": 18, - "name": "Darkbet", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xcfc416b8d7937e77ac2e461afe1abea34d874444.png", - "aggregators": ["CoinGecko", "Rubic", "Rango"], - "occurrences": 3 - }, - "0xc160598f2f5b216b48fa36007b4538114a234444": { - "address": "0xc160598f2f5b216b48fa36007b4538114a234444", - "symbol": "SAFE", - "decimals": 18, - "name": "SAFE", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xc160598f2f5b216b48fa36007b4538114a234444.png", - "aggregators": ["CoinGecko", "Rubic", "Rango"], - "occurrences": 3 - }, - "0xc8edb71a0a0873b8dcdfdcf619542d5de350b9e4": { - "address": "0xc8edb71a0a0873b8dcdfdcf619542d5de350b9e4", - "symbol": "FROG", - "decimals": 9, - "name": "FROG", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xc8edb71a0a0873b8dcdfdcf619542d5de350b9e4.png", - "aggregators": ["CoinGecko", "Rubic", "Rango"], - "occurrences": 3 - }, - "0xf6661fdb33c5fbf6d2c514598cdee0ea9ff04444": { - "address": "0xf6661fdb33c5fbf6d2c514598cdee0ea9ff04444", - "symbol": "ORACLE", - "decimals": 18, - "name": "OracleBNB", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xf6661fdb33c5fbf6d2c514598cdee0ea9ff04444.png", - "aggregators": ["CoinGecko", "Rubic", "Rango"], - "occurrences": 3 - }, - "0xf857213e62d9419ca2076032a1ea3a89d0714444": { - "address": "0xf857213e62d9419ca2076032a1ea3a89d0714444", - "symbol": "POCHITA", - "decimals": 18, - "name": "pochita", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xf857213e62d9419ca2076032a1ea3a89d0714444.png", - "aggregators": ["CoinGecko", "Rubic", "Rango"], - "occurrences": 3 - }, - "0xc6ebc9ac941082398b2b7118e82fa4351a234444": { - "address": "0xc6ebc9ac941082398b2b7118e82fa4351a234444", - "symbol": "DIGI1", - "decimals": 18, - "name": "Digichain Agent", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xc6ebc9ac941082398b2b7118e82fa4351a234444.png", - "aggregators": ["CoinGecko", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x15b204919815b32fc8c6319d2f09d98a02c41111": { - "address": "0x15b204919815b32fc8c6319d2f09d98a02c41111", - "symbol": "TAKO", - "decimals": 18, - "name": "TAKO", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x15b204919815b32fc8c6319d2f09d98a02c41111.png", - "aggregators": ["CoinGecko", "Rubic", "Rango"], - "occurrences": 3 - }, - "0xf909f5b0533f3269eea797c93d2c8e2abdbf4444": { - "address": "0xf909f5b0533f3269eea797c93d2c8e2abdbf4444", - "symbol": "BNBDIP", - "decimals": 18, - "name": "BNBdip", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xf909f5b0533f3269eea797c93d2c8e2abdbf4444.png", - "aggregators": ["CoinGecko", "Rubic", "Rango"], - "occurrences": 3 - }, - "0xafc4867779e03b81bebe62ec587f55e00cd02dc1": { - "address": "0xafc4867779e03b81bebe62ec587f55e00cd02dc1", - "symbol": "100¥", - "decimals": 18, - "name": "just buy 100¥ worth", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xafc4867779e03b81bebe62ec587f55e00cd02dc1.png", - "aggregators": ["CoinGecko", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x7bd8c371304cc038ff8dc0e54975a719f9aa4444": { - "address": "0x7bd8c371304cc038ff8dc0e54975a719f9aa4444", - "symbol": "重生", - "decimals": 18, - "name": "重生", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x7bd8c371304cc038ff8dc0e54975a719f9aa4444.png", - "aggregators": ["CoinGecko", "Rubic", "Rango"], - "occurrences": 3 - }, - "0xa890f8ba60051ec8a5b528f056da362ba208a96f": { - "address": "0xa890f8ba60051ec8a5b528f056da362ba208a96f", - "symbol": "GAIN", - "decimals": 18, - "name": "GriffinAI", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xa890f8ba60051ec8a5b528f056da362ba208a96f.png", - "aggregators": ["PancakeExtended", "LiFi", "Rubic"], - "occurrences": 3 - }, - "0xd6c9383d1030c3ca802632e139880d6f99604444": { - "address": "0xd6c9383d1030c3ca802632e139880d6f99604444", - "symbol": "高手", - "decimals": 18, - "name": "高手", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xd6c9383d1030c3ca802632e139880d6f99604444.png", - "aggregators": ["CoinGecko", "Rubic", "Rango"], - "occurrences": 3 - }, - "0xf34eb033ffc9dd8d64514af8e7ceaed5d6154444": { - "address": "0xf34eb033ffc9dd8d64514af8e7ceaed5d6154444", - "symbol": "PVE", - "decimals": 18, - "name": "pve", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xf34eb033ffc9dd8d64514af8e7ceaed5d6154444.png", - "aggregators": ["CoinGecko", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x085e90d9d5c9e3540ee91f7e28c48fc8cb314444": { - "address": "0x085e90d9d5c9e3540ee91f7e28c48fc8cb314444", - "symbol": "KORICO", - "decimals": 18, - "name": "Korico", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x085e90d9d5c9e3540ee91f7e28c48fc8cb314444.png", - "aggregators": ["CoinGecko", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x7a0bc0f5de87be3b2fe00546df583668b2994444": { - "address": "0x7a0bc0f5de87be3b2fe00546df583668b2994444", - "symbol": "CBNB", - "decimals": 18, - "name": "Community of BNB", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x7a0bc0f5de87be3b2fe00546df583668b2994444.png", - "aggregators": ["CoinGecko", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x15272209c6996e7dfa88c7463b899f4754794444": { - "address": "0x15272209c6996e7dfa88c7463b899f4754794444", - "symbol": "X444", - "decimals": 18, - "name": "x444", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x15272209c6996e7dfa88c7463b899f4754794444.png", - "aggregators": ["CoinGecko", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x4444b33f8d84f37c08b9487ff2efb8c908496b34": { - "address": "0x4444b33f8d84f37c08b9487ff2efb8c908496b34", - "symbol": "GM", - "decimals": 18, - "name": "gm", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x4444b33f8d84f37c08b9487ff2efb8c908496b34.png", - "aggregators": ["CoinGecko", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x444489f1ded1f000e5b4cd53c16c26f13d1b325d": { - "address": "0x444489f1ded1f000e5b4cd53c16c26f13d1b325d", - "symbol": "MIKA", - "decimals": 18, - "name": "Mika Grok Companion", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x444489f1ded1f000e5b4cd53c16c26f13d1b325d.png", - "aggregators": ["CoinGecko", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x44449eb99a54fb5f6de516ca4dc213602d50be33": { - "address": "0x44449eb99a54fb5f6de516ca4dc213602d50be33", - "symbol": "KURUMI", - "decimals": 18, - "name": "Kurumi", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x44449eb99a54fb5f6de516ca4dc213602d50be33.png", - "aggregators": ["CoinGecko", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x66969ecd173451f00a4652a53acc6246569d4444": { - "address": "0x66969ecd173451f00a4652a53acc6246569d4444", - "symbol": "DRAGON", - "decimals": 18, - "name": "DRAGON", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x66969ecd173451f00a4652a53acc6246569d4444.png", - "aggregators": ["CoinGecko", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x67b47971426bb2180453b3993ff2ec319e704444": { - "address": "0x67b47971426bb2180453b3993ff2ec319e704444", - "symbol": "LUCKY", - "decimals": 18, - "name": "B-Lucky", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x67b47971426bb2180453b3993ff2ec319e704444.png", - "aggregators": ["CoinGecko", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x2a7e3392458307493c86388d5e544aad93286836": { - "address": "0x2a7e3392458307493c86388d5e544aad93286836", - "symbol": "ARIAIP", - "decimals": 18, - "name": "Aria", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x2a7e3392458307493c86388d5e544aad93286836.png", - "aggregators": ["PancakeExtended", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x136acf349e28936489742f0d031f6271239ff63c": { - "address": "0x136acf349e28936489742f0d031f6271239ff63c", - "symbol": "NIHAO", - "decimals": 18, - "name": "NiHao Coin", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x136acf349e28936489742f0d031f6271239ff63c.png", - "aggregators": ["CoinGecko", "Rubic", "Rango"], - "occurrences": 3 - }, - "0xfca5208e4074e06596cc28b47214a109e4c14444": { - "address": "0xfca5208e4074e06596cc28b47214a109e4c14444", - "symbol": "SHIH", - "decimals": 18, - "name": "Shih Tzu", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xfca5208e4074e06596cc28b47214a109e4c14444.png", - "aggregators": ["CoinGecko", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x55f75fe8345db62fd30d57e0c60903a758484444": { - "address": "0x55f75fe8345db62fd30d57e0c60903a758484444", - "symbol": "松狮犬", - "decimals": 18, - "name": "chow-chow", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x55f75fe8345db62fd30d57e0c60903a758484444.png", - "aggregators": ["CoinGecko", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x444416a582466fdae0f2fcdf0a859675f8ff6e9f": { - "address": "0x444416a582466fdae0f2fcdf0a859675f8ff6e9f", - "symbol": "MARSCOIN", - "decimals": 18, - "name": "MarsCoin", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x444416a582466fdae0f2fcdf0a859675f8ff6e9f.png", - "aggregators": ["PancakeExtended", "Rubic", "Rango"], - "occurrences": 3 - }, - "0xd6d4854c63055e7d0caae22ab8c4e023104a4444": { - "address": "0xd6d4854c63055e7d0caae22ab8c4e023104a4444", - "symbol": "🫰", - "decimals": 18, - "name": "🫰", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xd6d4854c63055e7d0caae22ab8c4e023104a4444.png", - "aggregators": ["CoinGecko", "Rubic", "Rango"], - "occurrences": 3 - }, - "0xae9abf7172fcce37a3b423893018d3366a1f4444": { - "address": "0xae9abf7172fcce37a3b423893018d3366a1f4444", - "symbol": "WAVE", - "decimals": 18, - "name": "WaveFi", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xae9abf7172fcce37a3b423893018d3366a1f4444.png", - "aggregators": ["CoinGecko", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x49cf3353e2e514cca0f185b916a7d672de9f4444": { - "address": "0x49cf3353e2e514cca0f185b916a7d672de9f4444", - "symbol": "4444", - "decimals": 18, - "name": "4444", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x49cf3353e2e514cca0f185b916a7d672de9f4444.png", - "aggregators": ["CoinGecko", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x370fa5abd5385f1acaeb708bd675012d5bbde9ac": { - "address": "0x370fa5abd5385f1acaeb708bd675012d5bbde9ac", - "symbol": "BIOBOI", - "decimals": 18, - "name": "BioBOI", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x370fa5abd5385f1acaeb708bd675012d5bbde9ac.png", - "aggregators": ["CoinGecko", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x8fd0d741e09a98e82256c63f25f90301ea71a83e": { - "address": "0x8fd0d741e09a98e82256c63f25f90301ea71a83e", - "symbol": "SENTIS", - "decimals": 18, - "name": "Sentism AI Token", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x8fd0d741e09a98e82256c63f25f90301ea71a83e.png", - "aggregators": ["PancakeExtended", "Rubic", "Rango"], - "occurrences": 3 - }, - "0xcbccebef2258e49add9ff60221e568069b6b4444": { - "address": "0xcbccebef2258e49add9ff60221e568069b6b4444", - "symbol": "ZINTECH", - "decimals": 18, - "name": "Zintech", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xcbccebef2258e49add9ff60221e568069b6b4444.png", - "aggregators": ["CoinGecko", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x6f0d89f39e0c7034ce3a5865ed111187a30a4444": { - "address": "0x6f0d89f39e0c7034ce3a5865ed111187a30a4444", - "symbol": "CAST", - "decimals": 18, - "name": "CAST ORACLES", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x6f0d89f39e0c7034ce3a5865ed111187a30a4444.png", - "aggregators": ["CoinGecko", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x834baf4f7832cc3c00734ddb2e0c61c68d975822": { - "address": "0x834baf4f7832cc3c00734ddb2e0c61c68d975822", - "symbol": "42", - "decimals": 18, - "name": "Semantic Layer", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x834baf4f7832cc3c00734ddb2e0c61c68d975822.png", - "aggregators": ["PancakeExtended", "Rubic", "Rango"], - "occurrences": 3 - }, - "0xff5d99a5c16cf2ffb4e7da1d7c42a791e70e4444": { - "address": "0xff5d99a5c16cf2ffb4e7da1d7c42a791e70e4444", - "symbol": "1", - "decimals": 18, - "name": "Ucan fix life in1day", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xff5d99a5c16cf2ffb4e7da1d7c42a791e70e4444.png", - "aggregators": ["PancakeExtended", "Rubic", "Rango"], - "occurrences": 3 - }, - "0xd3e261612e1d0076153c1d1c37585f7dec6aeca5": { - "address": "0xd3e261612e1d0076153c1d1c37585f7dec6aeca5", - "symbol": "EVOP", - "decimals": 18, - "name": "Evolve PRO", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xd3e261612e1d0076153c1d1c37585f7dec6aeca5.png", - "aggregators": ["CoinGecko", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x63b2ec5371f4527e02193af24b81933a9ecf4444": { - "address": "0x63b2ec5371f4527e02193af24b81933a9ecf4444", - "symbol": "YULI", - "decimals": 18, - "name": "The BnB Fish", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x63b2ec5371f4527e02193af24b81933a9ecf4444.png", - "aggregators": ["CoinGecko", "Rubic", "Rango"], - "occurrences": 3 - }, - "0xa4c21320d2c4e1ee7a72abe9b2b04f2cd3786028": { - "address": "0xa4c21320d2c4e1ee7a72abe9b2b04f2cd3786028", - "symbol": "BONG", - "decimals": 18, - "name": "BONG", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xa4c21320d2c4e1ee7a72abe9b2b04f2cd3786028.png", - "aggregators": ["CoinGecko", "Rubic", "Rango"], - "occurrences": 3 - }, - "0xe77223430bfb8e497a3c8e126cb5ad5275934444": { - "address": "0xe77223430bfb8e497a3c8e126cb5ad5275934444", - "symbol": "1", - "decimals": 18, - "name": "1", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xe77223430bfb8e497a3c8e126cb5ad5275934444.png", - "aggregators": ["CoinGecko", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x2e44ab95549b8a12afdb970bde5a6a78365e4444": { - "address": "0x2e44ab95549b8a12afdb970bde5a6a78365e4444", - "symbol": "ZSWAP", - "decimals": 18, - "name": "ZygoSwap", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x2e44ab95549b8a12afdb970bde5a6a78365e4444.png", - "aggregators": ["CoinGecko", "Rubic", "Rango"], - "occurrences": 3 - }, - "0xa3cfb853339b77f385b994799b015cb04b208fe6": { - "address": "0xa3cfb853339b77f385b994799b015cb04b208fe6", - "symbol": "POP", - "decimals": 18, - "name": "Zypher Token", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xa3cfb853339b77f385b994799b015cb04b208fe6.png", - "aggregators": ["PancakeExtended", "Socket", "Rubic"], - "occurrences": 3 - }, - "0x41f52a42091a6b2146561bf05b722ad1d0e46f8b": { - "address": "0x41f52a42091a6b2146561bf05b722ad1d0e46f8b", - "symbol": "KIND", - "decimals": 18, - "name": "KIND CAT TOKEN", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x41f52a42091a6b2146561bf05b722ad1d0e46f8b.png", - "aggregators": ["CoinGecko", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x9d0d41df4ca809dc16a9bff646d3c6cbc4ebc707": { - "address": "0x9d0d41df4ca809dc16a9bff646d3c6cbc4ebc707", - "symbol": "RZR", - "decimals": 9, - "name": "Rezor", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x9d0d41df4ca809dc16a9bff646d3c6cbc4ebc707.png", - "aggregators": ["CoinGecko", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x9f6c24232f1bba6ef47bcb81b9b9434acdb94444": { - "address": "0x9f6c24232f1bba6ef47bcb81b9b9434acdb94444", - "symbol": "ASTERINU", - "decimals": 18, - "name": "Aster INU", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x9f6c24232f1bba6ef47bcb81b9b9434acdb94444.png", - "aggregators": ["CoinGecko", "Rubic", "Rango"], - "occurrences": 3 - }, - "0xeb2b7d5691878627eff20492ca7c9a71228d931d": { - "address": "0xeb2b7d5691878627eff20492ca7c9a71228d931d", - "symbol": "CREPE", - "decimals": 9, - "name": "CREPE", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xeb2b7d5691878627eff20492ca7c9a71228d931d.png", - "aggregators": ["CoinGecko", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x1a4d41219c547f3a0ee36cf3d9e68f80699cf283": { - "address": "0x1a4d41219c547f3a0ee36cf3d9e68f80699cf283", - "symbol": "OASIS", - "decimals": 18, - "name": "OASIS", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x1a4d41219c547f3a0ee36cf3d9e68f80699cf283.png", - "aggregators": ["CoinGecko", "Rubic", "Rango"], - "occurrences": 3 - }, - "0xb51d09b75193c35c1eb72d5714453a04051a80bc": { - "address": "0xb51d09b75193c35c1eb72d5714453a04051a80bc", - "symbol": "WMN", - "decimals": 18, - "name": "WebMind Network", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xb51d09b75193c35c1eb72d5714453a04051a80bc.png", - "aggregators": ["PancakeCoinMarketCap", "Rubic", "Sonarwatch"], - "occurrences": 3 - }, - "0x238950013fa29a3575eb7a3d99c00304047a77b5": { - "address": "0x238950013fa29a3575eb7a3d99c00304047a77b5", - "symbol": "BEEPER", - "decimals": 18, - "name": "Beeper Coin", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x238950013fa29a3575eb7a3d99c00304047a77b5.png", - "aggregators": ["CoinGecko", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x98a0a245ef9a96cf28f1ebf1a3b3bc562ed8d783": { - "address": "0x98a0a245ef9a96cf28f1ebf1a3b3bc562ed8d783", - "symbol": "ILMT", - "decimals": 18, - "name": "iLuminary Token", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x98a0a245ef9a96cf28f1ebf1a3b3bc562ed8d783.png", - "aggregators": ["CoinGecko", "Rubic", "Sonarwatch"], - "occurrences": 3 - }, - "0x575abfc711d630189cfd048788519782a1914444": { - "address": "0x575abfc711d630189cfd048788519782a1914444", - "symbol": "VISION", - "decimals": 18, - "name": "OcularAI", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x575abfc711d630189cfd048788519782a1914444.png", - "aggregators": ["CoinGecko", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x6ad12e761b438bea3ea09f6c6266556bb24c2181": { - "address": "0x6ad12e761b438bea3ea09f6c6266556bb24c2181", - "symbol": "BDX", - "decimals": 9, - "name": "BDX", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x6ad12e761b438bea3ea09f6c6266556bb24c2181.png", - "aggregators": ["CoinGecko", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x1ce440d1a64eea6aa1db2a5aa51c9b326930957c": { - "address": "0x1ce440d1a64eea6aa1db2a5aa51c9b326930957c", - "symbol": "ATD", - "decimals": 18, - "name": "A2DAO Token", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x1ce440d1a64eea6aa1db2a5aa51c9b326930957c.png", - "aggregators": ["PancakeCoinMarketCap", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x9bafc8d4b487cebff201721702507a3e2c67ad79": { - "address": "0x9bafc8d4b487cebff201721702507a3e2c67ad79", - "symbol": "KAVA", - "decimals": 18, - "name": "Kava", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x9bafc8d4b487cebff201721702507a3e2c67ad79.png", - "aggregators": ["PancakeExtended", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x8d010bf9c26881788b4e6bf5fd1bdc358c8f90b8": { - "address": "0x8d010bf9c26881788b4e6bf5fd1bdc358c8f90b8", - "symbol": "DOT", - "decimals": 18, - "name": "Polkadot", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x8d010bf9c26881788b4e6bf5fd1bdc358c8f90b8.png", - "aggregators": ["CoinGecko", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x711fd6ab6d65a98904522d4e3586f492b989c527": { - "address": "0x711fd6ab6d65a98904522d4e3586f492b989c527", - "symbol": "HMT", - "decimals": 18, - "name": "HUMAN Protocol", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x711fd6ab6d65a98904522d4e3586f492b989c527.png", - "aggregators": ["CoinGecko", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x4343e178c37556e708e65c1d7be0cb2537b50d7d": { - "address": "0x4343e178c37556e708e65c1d7be0cb2537b50d7d", - "symbol": "WCS", - "decimals": 8, - "name": "WeeCoins", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x4343e178c37556e708e65c1d7be0cb2537b50d7d.png", - "aggregators": ["CoinGecko", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x65e7a112db1142eae919201b1232f7aa488ed83c": { - "address": "0x65e7a112db1142eae919201b1232f7aa488ed83c", - "symbol": "REAL", - "decimals": 6, - "name": "REAL", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x65e7a112db1142eae919201b1232f7aa488ed83c.png", - "aggregators": ["CoinGecko", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x3235b13708f178af6f110de7177ed5de10c1093d": { - "address": "0x3235b13708f178af6f110de7177ed5de10c1093d", - "symbol": "MNFT", - "decimals": 18, - "name": "MongolNFT", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x3235b13708f178af6f110de7177ed5de10c1093d.png", - "aggregators": ["PancakeCoinMarketCap", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x9d5a383581882750ce27f84c72f017b378edb736": { - "address": "0x9d5a383581882750ce27f84c72f017b378edb736", - "symbol": "ALOT", - "decimals": 18, - "name": "ALOT", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x9d5a383581882750ce27f84c72f017b378edb736.png", - "aggregators": ["CoinGecko", "Rubic", "Rango"], - "occurrences": 3 - }, - "0xcf3d31dd1bced6121d97e98d110f8fc54d993365": { - "address": "0xcf3d31dd1bced6121d97e98d110f8fc54d993365", - "symbol": "LOP", - "decimals": 6, - "name": "Kilopi", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xcf3d31dd1bced6121d97e98d110f8fc54d993365.png", - "aggregators": ["CoinGecko", "Rubic", "Rango"], - "occurrences": 3 - }, - "0xced4ad3e56fdbdd31cca3f76f4ffb1eadd920dcf": { - "address": "0xced4ad3e56fdbdd31cca3f76f4ffb1eadd920dcf", - "symbol": "SSLX", - "decimals": 7, - "name": "Sl8 social crypto platform SSLX", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xced4ad3e56fdbdd31cca3f76f4ffb1eadd920dcf.png", - "aggregators": ["CoinGecko", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x75a5863a19af60ec0098d62ed8c34cc594fb470f": { - "address": "0x75a5863a19af60ec0098d62ed8c34cc594fb470f", - "symbol": "MPLX", - "decimals": 6, - "name": "Metaplex", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x75a5863a19af60ec0098d62ed8c34cc594fb470f.png", - "aggregators": ["PancakeExtended", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x92516e0ddf1ddbf7fab1b79cac26689fdc5ba8e6": { - "address": "0x92516e0ddf1ddbf7fab1b79cac26689fdc5ba8e6", - "symbol": "HUMA", - "decimals": 6, - "name": "Huma Finance", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x92516e0ddf1ddbf7fab1b79cac26689fdc5ba8e6.png", - "aggregators": ["CoinGecko", "Rubic", "Squid"], - "occurrences": 3 - }, - "0x319558c8ad708dc42f45ab70eada4750d6c942d7": { - "address": "0x319558c8ad708dc42f45ab70eada4750d6c942d7", - "symbol": "TABBY", - "decimals": 18, - "name": "TabbyPOS", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x319558c8ad708dc42f45ab70eada4750d6c942d7.png", - "aggregators": ["CoinGecko", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x0a80bbfcfe280eb072e767e4c015a2fc2da5145c": { - "address": "0x0a80bbfcfe280eb072e767e4c015a2fc2da5145c", - "symbol": "ƎԀƎԀ", - "decimals": 9, - "name": "Pepe Inverted", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x0a80bbfcfe280eb072e767e4c015a2fc2da5145c.png", - "aggregators": ["CoinGecko", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x39702843a6733932ec7ce0dde404e5a6dbd8c989": { - "address": "0x39702843a6733932ec7ce0dde404e5a6dbd8c989", - "symbol": "AVAIL", - "decimals": 18, - "name": "Avail (Wormhole)", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x39702843a6733932ec7ce0dde404e5a6dbd8c989.png", - "aggregators": ["PancakeExtended", "LiFi", "Rubic"], - "occurrences": 3 - }, - "0xc08cd26474722ce93f4d0c34d16201461c10aa8c": { - "address": "0xc08cd26474722ce93f4d0c34d16201461c10aa8c", - "symbol": "CARV", - "decimals": 18, - "name": "CARV", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xc08cd26474722ce93f4d0c34d16201461c10aa8c.png", - "aggregators": ["CoinGecko", "Rubic", "Rango"], - "occurrences": 3 - }, - "0xf81ac2e1a0373dde1bce01e2fe694a9b7e3bfcb9": { - "address": "0xf81ac2e1a0373dde1bce01e2fe694a9b7e3bfcb9", - "symbol": "XUSD", - "decimals": 6, - "name": "StraitsX XUSD", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xf81ac2e1a0373dde1bce01e2fe694a9b7e3bfcb9.png", - "aggregators": ["PancakeExtended", "Rubic", "Sonarwatch"], - "occurrences": 3 - }, - "0x7f39bcdca8e0e581c1d43aaa1cb862aa1c8c2047": { - "address": "0x7f39bcdca8e0e581c1d43aaa1cb862aa1c8c2047", - "symbol": "LUMIA", - "decimals": 18, - "name": "LUMIA", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x7f39bcdca8e0e581c1d43aaa1cb862aa1c8c2047.png", - "aggregators": ["CoinGecko", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x8d0fa28f221eb5735bc71d3a0da67ee5bc821311": { - "address": "0x8d0fa28f221eb5735bc71d3a0da67ee5bc821311", - "symbol": "USYC", - "decimals": 6, - "name": "USYC", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x8d0fa28f221eb5735bc71d3a0da67ee5bc821311.png", - "aggregators": ["CoinGecko", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x2d5bdc96d9c8aabbdb38c9a27398513e7e5ef84f": { - "address": "0x2d5bdc96d9c8aabbdb38c9a27398513e7e5ef84f", - "symbol": "BUIDL", - "decimals": 6, - "name": "BUIDL", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x2d5bdc96d9c8aabbdb38c9a27398513e7e5ef84f.png", - "aggregators": ["CoinGecko", "Rubic", "Rango"], - "occurrences": 3 - }, - "0xe8db8733c5badf634f86d6ef894ffdbf0e85b7c2": { - "address": "0xe8db8733c5badf634f86d6ef894ffdbf0e85b7c2", - "symbol": "MLC", - "decimals": 18, - "name": "My Lovely Coin", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xe8db8733c5badf634f86d6ef894ffdbf0e85b7c2.png", - "aggregators": ["CoinGecko", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x94162acc63812d53ac2bcf1f4aef65863273e63b": { - "address": "0x94162acc63812d53ac2bcf1f4aef65863273e63b", - "symbol": "NEIRO", - "decimals": 9, - "name": "NEIRO", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x94162acc63812d53ac2bcf1f4aef65863273e63b.png", - "aggregators": ["CoinGecko", "Rubic", "Rango"], - "occurrences": 3 - }, - "0xe0e8a04242f35b95dc64b07e0eae23a8e43a78e4": { - "address": "0xe0e8a04242f35b95dc64b07e0eae23a8e43a78e4", - "symbol": "RSERG", - "decimals": 9, - "name": "rsERG", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xe0e8a04242f35b95dc64b07e0eae23a8e43a78e4.png", - "aggregators": ["CoinGecko", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x226a2fa2556c48245e57cd1cba4c6c9e67077dd2": { - "address": "0x226a2fa2556c48245e57cd1cba4c6c9e67077dd2", - "symbol": "BIO", - "decimals": 18, - "name": "BIO", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x226a2fa2556c48245e57cd1cba4c6c9e67077dd2.png", - "aggregators": ["PancakeExtended", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x840b20fa3d48ac709fd841fcd878c3e8aabd7087": { - "address": "0x840b20fa3d48ac709fd841fcd878c3e8aabd7087", - "symbol": "WGLUE", - "decimals": 18, - "name": "WGLUE", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x840b20fa3d48ac709fd841fcd878c3e8aabd7087.png", - "aggregators": ["CoinGecko", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x1b93875b82da65fb3f8a3591b21888f41517be93": { - "address": "0x1b93875b82da65fb3f8a3591b21888f41517be93", - "symbol": "AITV", - "decimals": 18, - "name": "AITV", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x1b93875b82da65fb3f8a3591b21888f41517be93.png", - "aggregators": ["CoinGecko", "Rubic", "Rango"], - "occurrences": 3 - }, - "0xb035723d62e0e2ea7499d76355c9d560f13ba404": { - "address": "0xb035723d62e0e2ea7499d76355c9d560f13ba404", - "symbol": "OIK", - "decimals": 18, - "name": "Space Nation Oikos", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xb035723d62e0e2ea7499d76355c9d560f13ba404.png", - "aggregators": ["PancakeExtended", "Rubic", "Squid"], - "occurrences": 3 - }, - "0xfb93ee8152dd0a0e6f4b49c66c06d800cf1db72d": { - "address": "0xfb93ee8152dd0a0e6f4b49c66c06d800cf1db72d", - "symbol": "YB", - "decimals": 18, - "name": "Yield Basis (Bridged)", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xfb93ee8152dd0a0e6f4b49c66c06d800cf1db72d.png", - "aggregators": ["PancakeExtended", "Socket", "Rubic"], - "occurrences": 3 - }, - "0x58b4591a3fd16041f28686098431b1374c3bb789": { - "address": "0x58b4591a3fd16041f28686098431b1374c3bb789", - "symbol": "BTC.ℏ", - "decimals": 8, - "name": "BTC.ℏ", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x58b4591a3fd16041f28686098431b1374c3bb789.png", - "aggregators": ["CoinGecko", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x50a1291f69d9d3853def8209cfb1af0b46927be1": { - "address": "0x50a1291f69d9d3853def8209cfb1af0b46927be1", - "symbol": "APPX", - "decimals": 18, - "name": "AppLovin xStock", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x50a1291f69d9d3853def8209cfb1af0b46927be1.png", - "aggregators": ["CoinGecko", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x4e107a0000db66f0e9fd2039288bf811dd1f9c74": { - "address": "0x4e107a0000db66f0e9fd2039288bf811dd1f9c74", - "symbol": "VLR", - "decimals": 18, - "name": "Velora", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x4e107a0000db66f0e9fd2039288bf811dd1f9c74.png", - "aggregators": ["PancakeExtended", "Socket", "Rubic"], - "occurrences": 3 - }, - "0x5d642505fe1a28897eb3baba665f454755d8daa2": { - "address": "0x5d642505fe1a28897eb3baba665f454755d8daa2", - "symbol": "AZNX", - "decimals": 18, - "name": "AstraZeneca xStock", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x5d642505fe1a28897eb3baba665f454755d8daa2.png", - "aggregators": ["CoinGecko", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x314938c596f5ce31c3f75307d2979338c346d7f2": { - "address": "0x314938c596f5ce31c3f75307d2979338c346d7f2", - "symbol": "BACX", - "decimals": 18, - "name": "Bank of America xStock", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x314938c596f5ce31c3f75307d2979338c346d7f2.png", - "aggregators": ["CoinGecko", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x12992613fdd35abe95dec5a4964331b1ee23b50d": { - "address": "0x12992613fdd35abe95dec5a4964331b1ee23b50d", - "symbol": "BRK.BX", - "decimals": 18, - "name": "Berkshire Hathaway xStock", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x12992613fdd35abe95dec5a4964331b1ee23b50d.png", - "aggregators": ["CoinGecko", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x364f210f430ec2448fc68a49203040f6124096f0": { - "address": "0x364f210f430ec2448fc68a49203040f6124096f0", - "symbol": "COINX", - "decimals": 18, - "name": "Coinbase xStock", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x364f210f430ec2448fc68a49203040f6124096f0.png", - "aggregators": ["CoinGecko", "Rubic", "Rango"], - "occurrences": 3 - }, - "0xad5cdc3340904285b8159089974a99a1a09eb4c0": { - "address": "0xad5cdc3340904285b8159089974a99a1a09eb4c0", - "symbol": "CVXX", - "decimals": 18, - "name": "Chevron xStock", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xad5cdc3340904285b8159089974a99a1a09eb4c0.png", - "aggregators": ["CoinGecko", "Rubic", "Rango"], - "occurrences": 3 - }, - "0xe5f6d3b2405abdfe6f660e63202b25d23763160d": { - "address": "0xe5f6d3b2405abdfe6f660e63202b25d23763160d", - "symbol": "GMEX", - "decimals": 18, - "name": "Gamestop xStock", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xe5f6d3b2405abdfe6f660e63202b25d23763160d.png", - "aggregators": ["CoinGecko", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x3ee7e9b3a992fd23cd1c363b0e296856b04ab149": { - "address": "0x3ee7e9b3a992fd23cd1c363b0e296856b04ab149", - "symbol": "GSX", - "decimals": 18, - "name": "Goldman Sachs xStock", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x3ee7e9b3a992fd23cd1c363b0e296856b04ab149.png", - "aggregators": ["CoinGecko", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x766b0cd6ed6d90b5d49d2c36a3761e9728501ba9": { - "address": "0x766b0cd6ed6d90b5d49d2c36a3761e9728501ba9", - "symbol": "HDX", - "decimals": 18, - "name": "Home Depot xStock", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x766b0cd6ed6d90b5d49d2c36a3761e9728501ba9.png", - "aggregators": ["CoinGecko", "Rubic", "Rango"], - "occurrences": 3 - }, - "0xf8a80d1cb9cfd70d03d655d9df42339846f3b3c8": { - "address": "0xf8a80d1cb9cfd70d03d655d9df42339846f3b3c8", - "symbol": "INTCX", - "decimals": 18, - "name": "Intel xStock", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xf8a80d1cb9cfd70d03d655d9df42339846f3b3c8.png", - "aggregators": ["CoinGecko", "Rubic", "Rango"], - "occurrences": 3 - }, - "0xd9fc3e075d45254a1d834fea18af8041207dea0a": { - "address": "0xd9fc3e075d45254a1d834fea18af8041207dea0a", - "symbol": "JPMX", - "decimals": 18, - "name": "JPMorgan Chase xStock", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xd9fc3e075d45254a1d834fea18af8041207dea0a.png", - "aggregators": ["CoinGecko", "Rubic", "Rango"], - "occurrences": 3 - }, - "0xdcc1a2699441079da889b1f49e12b69cc791129b": { - "address": "0xdcc1a2699441079da889b1f49e12b69cc791129b", - "symbol": "KOX", - "decimals": 18, - "name": "Coca-Cola xStock", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xdcc1a2699441079da889b1f49e12b69cc791129b.png", - "aggregators": ["CoinGecko", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x19c41ea77b34bbdee61c3a87a75d1abda2ed0be4": { - "address": "0x19c41ea77b34bbdee61c3a87a75d1abda2ed0be4", - "symbol": "LLYX", - "decimals": 18, - "name": "Eli Lilly xStock", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x19c41ea77b34bbdee61c3a87a75d1abda2ed0be4.png", - "aggregators": ["CoinGecko", "Rubic", "Rango"], - "occurrences": 3 - }, - "0xb365cd2588065f522d379ad19e903304f6b622c6": { - "address": "0xb365cd2588065f522d379ad19e903304f6b622c6", - "symbol": "MAX", - "decimals": 18, - "name": "Mastercard xStock", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xb365cd2588065f522d379ad19e903304f6b622c6.png", - "aggregators": ["CoinGecko", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x96702be57cd9777f835117a809c7124fe4ec989a": { - "address": "0x96702be57cd9777f835117a809c7124fe4ec989a", - "symbol": "METAX", - "decimals": 18, - "name": "METAX", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x96702be57cd9777f835117a809c7124fe4ec989a.png", - "aggregators": ["CoinGecko", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x5621737f42dae558b81269fcb9e9e70c19aa6b35": { - "address": "0x5621737f42dae558b81269fcb9e9e70c19aa6b35", - "symbol": "MSFTX", - "decimals": 18, - "name": "MSFTX", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x5621737f42dae558b81269fcb9e9e70c19aa6b35.png", - "aggregators": ["CoinGecko", "Rubic", "Rango"], - "occurrences": 3 - }, - "0xa6a65ac27e76cd53cb790473e4345c46e5ebf961": { - "address": "0xa6a65ac27e76cd53cb790473e4345c46e5ebf961", - "symbol": "NFLXX", - "decimals": 18, - "name": "Netflix xStock", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xa6a65ac27e76cd53cb790473e4345c46e5ebf961.png", - "aggregators": ["CoinGecko", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x5afadcd1e8e3ca78ee2d37100102f2aec8bc0aa8": { - "address": "0x5afadcd1e8e3ca78ee2d37100102f2aec8bc0aa8", - "symbol": "PLUME", - "decimals": 18, - "name": "PLUME", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x5afadcd1e8e3ca78ee2d37100102f2aec8bc0aa8.png", - "aggregators": ["PancakeExtended", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x8c8d2a7d8d9cf26f5ee1bbfc0ba56e93f4a4a7ac": { - "address": "0x8c8d2a7d8d9cf26f5ee1bbfc0ba56e93f4a4a7ac", - "symbol": "AVAXAI", - "decimals": 18, - "name": "AIvalanche DeFAI Agents", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x8c8d2a7d8d9cf26f5ee1bbfc0ba56e93f4a4a7ac.png", - "aggregators": ["CoinGecko", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x7636d8722fdf7cd34232a915e48e96aa3eb386bf": { - "address": "0x7636d8722fdf7cd34232a915e48e96aa3eb386bf", - "symbol": "SFI", - "decimals": 18, - "name": "Singularity Finance", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x7636d8722fdf7cd34232a915e48e96aa3eb386bf.png", - "aggregators": ["CoinGecko", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x00312400303d02c323295f6e8b7309bc30fb6bce": { - "address": "0x00312400303d02c323295f6e8b7309bc30fb6bce", - "symbol": "ERA", - "decimals": 18, - "name": "ERA", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x00312400303d02c323295f6e8b7309bc30fb6bce.png", - "aggregators": ["PancakeExtended", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x440017a1b021006d556d7fc06a54c32e42eb745b": { - "address": "0x440017a1b021006d556d7fc06a54c32e42eb745b", - "symbol": "@G", - "decimals": 18, - "name": "Graphite Network", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x440017a1b021006d556d7fc06a54c32e42eb745b.png", - "aggregators": ["CoinGecko", "Rubic", "Sonarwatch"], - "occurrences": 3 - }, - "0xfc5a743271672e91d77f0176e5cea581fbd5d834": { - "address": "0xfc5a743271672e91d77f0176e5cea581fbd5d834", - "symbol": "SLAY", - "decimals": 6, - "name": "SatLayer", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xfc5a743271672e91d77f0176e5cea581fbd5d834.png", - "aggregators": ["PancakeExtended", "Socket", "Rubic"], - "occurrences": 3 - }, - "0xc61eb549acf4a05ed6e3fe0966f5e213b23541ce": { - "address": "0xc61eb549acf4a05ed6e3fe0966f5e213b23541ce", - "symbol": "NUMI", - "decimals": 18, - "name": "NUMINE Token", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xc61eb549acf4a05ed6e3fe0966f5e213b23541ce.png", - "aggregators": ["PancakeExtended", "Socket", "Rubic"], - "occurrences": 3 - }, - "0x00000000bca93b25a6694ca3d2109d545988b13b": { - "address": "0x00000000bca93b25a6694ca3d2109d545988b13b", - "symbol": "TOWNS", - "decimals": 18, - "name": "Towns", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x00000000bca93b25a6694ca3d2109d545988b13b.png", - "aggregators": ["PancakeExtended", "Rubic", "Squid"], - "occurrences": 3 - }, - "0x502a641decfe32b1e3d030e05effb8ae5146e64b": { - "address": "0x502a641decfe32b1e3d030e05effb8ae5146e64b", - "symbol": "PALM", - "decimals": 6, - "name": "Palm Economy", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x502a641decfe32b1e3d030e05effb8ae5146e64b.png", - "aggregators": ["CoinGecko", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x3d9be0ac1001cd81c32464276d863d2ffdca4967": { - "address": "0x3d9be0ac1001cd81c32464276d863d2ffdca4967", - "symbol": "HAEDAL", - "decimals": 9, - "name": "Haedal", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x3d9be0ac1001cd81c32464276d863d2ffdca4967.png", - "aggregators": ["PancakeExtended", "LiFi", "Rubic"], - "occurrences": 3 - }, - "0x03183ce31b1656b72a55fa6056e287f50c35bbeb": { - "address": "0x03183ce31b1656b72a55fa6056e287f50c35bbeb", - "symbol": "ACNX", - "decimals": 18, - "name": "Accenture xStock", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x03183ce31b1656b72a55fa6056e287f50c35bbeb.png", - "aggregators": ["CoinGecko", "Rubic", "Rango"], - "occurrences": 3 - }, - "0xbc7170a1280be28513b4e940c681537eb25e39f4": { - "address": "0xbc7170a1280be28513b4e940c681537eb25e39f4", - "symbol": "CMCSAX", - "decimals": 18, - "name": "Comcast xStock", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xbc7170a1280be28513b4e940c681537eb25e39f4.png", - "aggregators": ["CoinGecko", "Rubic", "Rango"], - "occurrences": 3 - }, - "0xd9913208647671fe0f48f7f260076b2c6f310aac": { - "address": "0xd9913208647671fe0f48f7f260076b2c6f310aac", - "symbol": "IBMX", - "decimals": 18, - "name": "International Business Machines xStock", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xd9913208647671fe0f48f7f260076b2c6f310aac.png", - "aggregators": ["CoinGecko", "Rubic", "Rango"], - "occurrences": 3 - }, - "0xdb0482cfad4789798623e64b15eeba01b16e917c": { - "address": "0xdb0482cfad4789798623e64b15eeba01b16e917c", - "symbol": "JNJX", - "decimals": 18, - "name": "Johnson & Johnson xStock", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xdb0482cfad4789798623e64b15eeba01b16e917c.png", - "aggregators": ["CoinGecko", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x80a77a372c1e12accda84299492f404902e2da67": { - "address": "0x80a77a372c1e12accda84299492f404902e2da67", - "symbol": "MCDX", - "decimals": 18, - "name": "McDonald's xStock", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x80a77a372c1e12accda84299492f404902e2da67.png", - "aggregators": ["CoinGecko", "Rubic", "Rango"], - "occurrences": 3 - }, - "0xc845b2894dbddd03858fd2d643b4ef725fe0849d": { - "address": "0xc845b2894dbddd03858fd2d643b4ef725fe0849d", - "symbol": "NVDAX", - "decimals": 18, - "name": "NVDAX", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xc845b2894dbddd03858fd2d643b4ef725fe0849d.png", - "aggregators": ["CoinGecko", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x36c424a6ec0e264b1616102ad63ed2ad7857413e": { - "address": "0x36c424a6ec0e264b1616102ad63ed2ad7857413e", - "symbol": "PEPX", - "decimals": 18, - "name": "PepsiCo xStock", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x36c424a6ec0e264b1616102ad63ed2ad7857413e.png", - "aggregators": ["CoinGecko", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x8ad3c73f833d3f9a523ab01476625f269aeb7cf0": { - "address": "0x8ad3c73f833d3f9a523ab01476625f269aeb7cf0", - "symbol": "TSLAX", - "decimals": 18, - "name": "Tesla xStock", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x8ad3c73f833d3f9a523ab01476625f269aeb7cf0.png", - "aggregators": ["CoinGecko", "Rubic", "Rango"], - "occurrences": 3 - }, - "0xaf072f109a2c173d822a4fe9af311a1b18f83d19": { - "address": "0xaf072f109a2c173d822a4fe9af311a1b18f83d19", - "symbol": "TMOX", - "decimals": 18, - "name": "Thermo Fisher xStock", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xaf072f109a2c173d822a4fe9af311a1b18f83d19.png", - "aggregators": ["CoinGecko", "Rubic", "Rango"], - "occurrences": 3 - }, - "0xfbf2398df672cee4afcc2a4a733222331c742a6a": { - "address": "0xfbf2398df672cee4afcc2a4a733222331c742a6a", - "symbol": "ABBVX", - "decimals": 18, - "name": "AbbVie xStock", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xfbf2398df672cee4afcc2a4a733222331c742a6a.png", - "aggregators": ["CoinGecko", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x6d482cec5f9dd1f05ccee9fd3ff79b246170f8e2": { - "address": "0x6d482cec5f9dd1f05ccee9fd3ff79b246170f8e2", - "symbol": "PLTRX", - "decimals": 18, - "name": "Palantir xStock", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x6d482cec5f9dd1f05ccee9fd3ff79b246170f8e2.png", - "aggregators": ["CoinGecko", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x1ac765b5bea23184802c7d2d497f7c33f1444a9e": { - "address": "0x1ac765b5bea23184802c7d2d497f7c33f1444a9e", - "symbol": "PFEX", - "decimals": 18, - "name": "Pfizer xStock", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x1ac765b5bea23184802c7d2d497f7c33f1444a9e.png", - "aggregators": ["CoinGecko", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x167a6375da1efc4a5be0f470e73ecefd66245048": { - "address": "0x167a6375da1efc4a5be0f470e73ecefd66245048", - "symbol": "UNHX", - "decimals": 18, - "name": "UnitedHealth xStock", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x167a6375da1efc4a5be0f470e73ecefd66245048.png", - "aggregators": ["CoinGecko", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x2363fd1235c1b6d3a5088ddf8df3a0b3a30c5293": { - "address": "0x2363fd1235c1b6d3a5088ddf8df3a0b3a30c5293", - "symbol": "VX", - "decimals": 18, - "name": "Visa xStock", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x2363fd1235c1b6d3a5088ddf8df3a0b3a30c5293.png", - "aggregators": ["CoinGecko", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x7aefc9965699fbea943e03264d96e50cd4a97b21": { - "address": "0x7aefc9965699fbea943e03264d96e50cd4a97b21", - "symbol": "WMTX", - "decimals": 18, - "name": "Walmart xStock", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x7aefc9965699fbea943e03264d96e50cd4a97b21.png", - "aggregators": ["CoinGecko", "Rubic", "Rango"], - "occurrences": 3 - }, - "0xeedb0273c5af792745180e9ff568cd01550ffa13": { - "address": "0xeedb0273c5af792745180e9ff568cd01550ffa13", - "symbol": "XOMX", - "decimals": 18, - "name": "Exxon Mobil xStock", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xeedb0273c5af792745180e9ff568cd01550ffa13.png", - "aggregators": ["CoinGecko", "Rubic", "Rango"], - "occurrences": 3 - }, - "0xdba228936f4079daf9aa906fd48a87f2300405f4": { - "address": "0xdba228936f4079daf9aa906fd48a87f2300405f4", - "symbol": "DHRX", - "decimals": 18, - "name": "Danaher xStock", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xdba228936f4079daf9aa906fd48a87f2300405f4.png", - "aggregators": ["CoinGecko", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x62a48560861b0b451654bfffdb5be6e47aa8ff1b": { - "address": "0x62a48560861b0b451654bfffdb5be6e47aa8ff1b", - "symbol": "HONX", - "decimals": 18, - "name": "Honeywell xStock", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x62a48560861b0b451654bfffdb5be6e47aa8ff1b.png", - "aggregators": ["CoinGecko", "Rubic", "Rango"], - "occurrences": 3 - }, - "0xeaad46f4146ded5a47b55aa7f6c48c191deaec88": { - "address": "0xeaad46f4146ded5a47b55aa7f6c48c191deaec88", - "symbol": "MRVLX", - "decimals": 18, - "name": "Marvell xStock", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xeaad46f4146ded5a47b55aa7f6c48c191deaec88.png", - "aggregators": ["CoinGecko", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x15059c599c16fd8f70b633ade165502d6402cd49": { - "address": "0x15059c599c16fd8f70b633ade165502d6402cd49", - "symbol": "LINX", - "decimals": 18, - "name": "Linde xStock", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x15059c599c16fd8f70b633ade165502d6402cd49.png", - "aggregators": ["CoinGecko", "Rubic", "Rango"], - "occurrences": 3 - }, - "0xa753a7395cae905cd615da0b82a53e0560f250af": { - "address": "0xa753a7395cae905cd615da0b82a53e0560f250af", - "symbol": "QQQX", - "decimals": 18, - "name": "QQQX", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xa753a7395cae905cd615da0b82a53e0560f250af.png", - "aggregators": ["CoinGecko", "Rubic", "Rango"], - "occurrences": 3 - }, - "0xbd730e618bcd88c82ddee52e10275cf2f88a4777": { - "address": "0xbd730e618bcd88c82ddee52e10275cf2f88a4777", - "symbol": "VTIX", - "decimals": 18, - "name": "Vanguard xStock", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xbd730e618bcd88c82ddee52e10275cf2f88a4777.png", - "aggregators": ["CoinGecko", "Rubic", "Rango"], - "occurrences": 3 - }, - "0xb8a677e6d805c8d743e6f14c8bc9c19305b5defc": { - "address": "0xb8a677e6d805c8d743e6f14c8bc9c19305b5defc", - "symbol": "NEWT", - "decimals": 18, - "name": "Newton", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xb8a677e6d805c8d743e6f14c8bc9c19305b5defc.png", - "aggregators": ["PancakeExtended", "Rubic", "Rango"], - "occurrences": 3 - }, - "0xbe7e12b2e128bc955a0130ffb168f031d7dd8d58": { - "address": "0xbe7e12b2e128bc955a0130ffb168f031d7dd8d58", - "symbol": "BOOST", - "decimals": 18, - "name": "Boost", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xbe7e12b2e128bc955a0130ffb168f031d7dd8d58.png", - "aggregators": ["PancakeExtended", "Socket", "Rubic"], - "occurrences": 3 - }, - "0x5845684b49aef79a5c0f887f50401c247dca7ac6": { - "address": "0x5845684b49aef79a5c0f887f50401c247dca7ac6", - "symbol": "CYC", - "decimals": 18, - "name": "Cycle Network Token", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x5845684b49aef79a5c0f887f50401c247dca7ac6.png", - "aggregators": ["PancakeExtended", "Socket", "Rubic"], - "occurrences": 3 - }, - "0xc32cc70741c3a8433dcbcb5ade071c299b55ffc8": { - "address": "0xc32cc70741c3a8433dcbcb5ade071c299b55ffc8", - "symbol": "C", - "decimals": 18, - "name": "Chainbase", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xc32cc70741c3a8433dcbcb5ade071c299b55ffc8.png", - "aggregators": ["PancakeExtended", "Rubic", "Squid"], - "occurrences": 3 - }, - "0x77146784315ba81904d654466968e3a7c196d1f3": { - "address": "0x77146784315ba81904d654466968e3a7c196d1f3", - "symbol": "TREE", - "decimals": 18, - "name": "Treehouse Token", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x77146784315ba81904d654466968e3a7c196d1f3.png", - "aggregators": ["PancakeExtended", "LiFi", "Rubic"], - "occurrences": 3 - }, - "0x2380f2673c640fb67e2d6b55b44c62f0e0e69da9": { - "address": "0x2380f2673c640fb67e2d6b55b44c62f0e0e69da9", - "symbol": "GLDX", - "decimals": 18, - "name": "GLDX", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x2380f2673c640fb67e2d6b55b44c62f0e0e69da9.png", - "aggregators": ["CoinGecko", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x06238c1b8e618abedf17669228dc95fb2d2e210b": { - "address": "0x06238c1b8e618abedf17669228dc95fb2d2e210b", - "symbol": "ECHO", - "decimals": 8, - "name": "Echo", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x06238c1b8e618abedf17669228dc95fb2d2e210b.png", - "aggregators": ["PancakeExtended", "1inch", "Rubic"], - "occurrences": 3 - }, - "0x6f0037c79d144d5b8e3e6f04e49fbb5f25fd508f": { - "address": "0x6f0037c79d144d5b8e3e6f04e49fbb5f25fd508f", - "symbol": "RCADE", - "decimals": 18, - "name": "RCADE", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x6f0037c79d144d5b8e3e6f04e49fbb5f25fd508f.png", - "aggregators": ["PancakeExtended", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x87aa6aeb62ff128aaa96e275d7b24cd12a72aba1": { - "address": "0x87aa6aeb62ff128aaa96e275d7b24cd12a72aba1", - "symbol": "PUBLIC", - "decimals": 18, - "name": "PublicAI", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x87aa6aeb62ff128aaa96e275d7b24cd12a72aba1.png", - "aggregators": ["PancakeExtended", "Rubic", "Rango"], - "occurrences": 3 - }, - "0xbee6b69345f376598fe16abd5592c6f844825e66": { - "address": "0xbee6b69345f376598fe16abd5592c6f844825e66", - "symbol": "OPENX", - "decimals": 18, - "name": "OPEN xStock", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xbee6b69345f376598fe16abd5592c6f844825e66.png", - "aggregators": ["CoinGecko", "Rubic", "Rango"], - "occurrences": 3 - }, - "0xa8aea66b361a8d53e8865c62d142167af28af058": { - "address": "0xa8aea66b361a8d53e8865c62d142167af28af058", - "symbol": "CNGN", - "decimals": 6, - "name": "CNGN", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xa8aea66b361a8d53e8865c62d142167af28af058.png", - "aggregators": ["CoinGecko", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x27f6c8289550fce67f6b50bed1f519966afe5287": { - "address": "0x27f6c8289550fce67f6b50bed1f519966afe5287", - "symbol": "TGBP", - "decimals": 18, - "name": "tGBP", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x27f6c8289550fce67f6b50bed1f519966afe5287.png", - "aggregators": ["CoinGecko", "Rubic", "Rango"], - "occurrences": 3 - }, - "0xf9471965b3e9df2d07bed059117a3ff2fee35dd1": { - "address": "0xf9471965b3e9df2d07bed059117a3ff2fee35dd1", - "symbol": "MOVA", - "decimals": 18, - "name": "MOVA", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xf9471965b3e9df2d07bed059117a3ff2fee35dd1.png", - "aggregators": ["CoinGecko", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x96adaa33e175f4a7f20c099730bc78dd0b45745b": { - "address": "0x96adaa33e175f4a7f20c099730bc78dd0b45745b", - "symbol": "AIBOT", - "decimals": 18, - "name": "CherryAI", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x96adaa33e175f4a7f20c099730bc78dd0b45745b.png", - "aggregators": ["PancakeExtended", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x4cbf89ed7bb30b8a860fa86d3c96e9c72931299b": { - "address": "0x4cbf89ed7bb30b8a860fa86d3c96e9c72931299b", - "symbol": "TBLLX", - "decimals": 18, - "name": "TBLL xStock", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x4cbf89ed7bb30b8a860fa86d3c96e9c72931299b.png", - "aggregators": ["CoinGecko", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x95c9b514566fbd224dc2037f5914eb8ab91c9201": { - "address": "0x95c9b514566fbd224dc2037f5914eb8ab91c9201", - "symbol": "PTB", - "decimals": 18, - "name": "Portal To Bitcoin", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x95c9b514566fbd224dc2037f5914eb8ab91c9201.png", - "aggregators": ["PancakeExtended", "Socket", "Rubic"], - "occurrences": 3 - }, - "0x53ec33cd4fa46b9eced9ca3f6db626c5ffcd55cc": { - "address": "0x53ec33cd4fa46b9eced9ca3f6db626c5ffcd55cc", - "symbol": "AIA", - "decimals": 9, - "name": "DeAgentAI", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x53ec33cd4fa46b9eced9ca3f6db626c5ffcd55cc.png", - "aggregators": ["CoinGecko", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x7c8217517ed4711fe2deccdfeffe8d906b9ae11f": { - "address": "0x7c8217517ed4711fe2deccdfeffe8d906b9ae11f", - "symbol": "BLESS", - "decimals": 9, - "name": "Bless", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x7c8217517ed4711fe2deccdfeffe8d906b9ae11f.png", - "aggregators": ["PancakeExtended", "Rubic", "Squid"], - "occurrences": 3 - }, - "0x58f93d6b1ef2f44ec379cb975657c132cbed3b6b": { - "address": "0x58f93d6b1ef2f44ec379cb975657c132cbed3b6b", - "symbol": "JAAA", - "decimals": 6, - "name": "JAAA", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x58f93d6b1ef2f44ec379cb975657c132cbed3b6b.png", - "aggregators": ["CoinGecko", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x374c5fb7979d5fdbaad2d95409e235e5cbdfd43c": { - "address": "0x374c5fb7979d5fdbaad2d95409e235e5cbdfd43c", - "symbol": "MLK", - "decimals": 8, - "name": "MiL.k", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x374c5fb7979d5fdbaad2d95409e235e5cbdfd43c.png", - "aggregators": ["PancakeExtended", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x80dba9c32b7ab5445e482387a5522e24c0ba4c24": { - "address": "0x80dba9c32b7ab5445e482387a5522e24c0ba4c24", - "symbol": "XDNA", - "decimals": 18, - "name": "extraDNA", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x80dba9c32b7ab5445e482387a5522e24c0ba4c24.png", - "aggregators": ["PancakeCoinMarketCap", "Rubic", "Rango"], - "occurrences": 3 - }, - "0xd4423795fd904d9b87554940a95fb7016f172773": { - "address": "0xd4423795fd904d9b87554940a95fb7016f172773", - "symbol": "AIN", - "decimals": 18, - "name": "AI Network", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xd4423795fd904d9b87554940a95fb7016f172773.png", - "aggregators": ["CoinGecko", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x76e8e912097f0e6b81cab73147161bb616df1d7d": { - "address": "0x76e8e912097f0e6b81cab73147161bb616df1d7d", - "symbol": "KEL", - "decimals": 18, - "name": "KelVPN v2", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x76e8e912097f0e6b81cab73147161bb616df1d7d.png", - "aggregators": ["CoinGecko", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x94cf269d63c4140ed481cb0b149dae03c4620cdf": { - "address": "0x94cf269d63c4140ed481cb0b149dae03c4620cdf", - "symbol": "BALN", - "decimals": 18, - "name": "Balanced", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x94cf269d63c4140ed481cb0b149dae03c4620cdf.png", - "aggregators": ["CoinGecko", "Rubic", "Sonarwatch"], - "occurrences": 3 - }, - "0x4e22ab2bbcb3e7f74249c87f62bb35ef92c3d964": { - "address": "0x4e22ab2bbcb3e7f74249c87f62bb35ef92c3d964", - "symbol": "BPX", - "decimals": 18, - "name": "Black Phoenix", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x4e22ab2bbcb3e7f74249c87f62bb35ef92c3d964.png", - "aggregators": ["PancakeCoinMarketCap", "Rubic", "Sonarwatch"], - "occurrences": 3 - }, - "0xbc33b4d48f76d17a1800afcb730e8a6aaada7fe5": { - "address": "0xbc33b4d48f76d17a1800afcb730e8a6aaada7fe5", - "symbol": "VDOT", - "decimals": 18, - "name": "Voucher DOT", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xbc33b4d48f76d17a1800afcb730e8a6aaada7fe5.png", - "aggregators": ["CoinGecko", "Rubic", "Sonarwatch"], - "occurrences": 3 - }, - "0x7ce4bfc3a66d0fcf5d91dd846911c15c3ff82ecc": { - "address": "0x7ce4bfc3a66d0fcf5d91dd846911c15c3ff82ecc", - "symbol": "MIRA", - "decimals": 2, - "name": "MIRA", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x7ce4bfc3a66d0fcf5d91dd846911c15c3ff82ecc.png", - "aggregators": ["CoinGecko", "Rubic", "Rango"], - "occurrences": 3 - }, - "0xc4044d67585d421495fb0bf08c50b15683647003": { - "address": "0xc4044d67585d421495fb0bf08c50b15683647003", - "symbol": "BITCOIN", - "decimals": 8, - "name": "HarryPotterObamaSonic10Inu (ETH)", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xc4044d67585d421495fb0bf08c50b15683647003.png", - "aggregators": ["CoinGecko", "Rubic", "Rango"], - "occurrences": 3 - }, - "0xce5098dc1748789f66926a43c054d7d2e150f46b": { - "address": "0xce5098dc1748789f66926a43c054d7d2e150f46b", - "symbol": "UNP", - "decimals": 18, - "name": "UNP", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xce5098dc1748789f66926a43c054d7d2e150f46b.png", - "aggregators": ["CoinGecko", "Rubic", "Rango"], - "occurrences": 3 - }, - "0xa7440029eca41deabd8775ef1d6086b37d4df8d6": { - "address": "0xa7440029eca41deabd8775ef1d6086b37d4df8d6", - "symbol": "BRETT", - "decimals": 18, - "name": "Brett", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xa7440029eca41deabd8775ef1d6086b37d4df8d6.png", - "aggregators": ["CoinGecko", "Rubic", "Rango"], - "occurrences": 3 - }, - "0xa2be3e48170a60119b5f0400c65f65f3158fbeee": { - "address": "0xa2be3e48170a60119b5f0400c65f65f3158fbeee", - "symbol": "ZEUS", - "decimals": 6, - "name": "ZEUS", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xa2be3e48170a60119b5f0400c65f65f3158fbeee.png", - "aggregators": ["PancakeExtended", "Socket", "Rubic"], - "occurrences": 3 - }, - "0x7a986ba67227acfab86385ff33436a80e2bb4cc5": { - "address": "0x7a986ba67227acfab86385ff33436a80e2bb4cc5", - "symbol": "PUNDIAI", - "decimals": 18, - "name": "Pundi AI", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x7a986ba67227acfab86385ff33436a80e2bb4cc5.png", - "aggregators": ["PancakeExtended", "Rubic", "Squid"], - "occurrences": 3 - }, - "0x5868a0bc3a64cff82e19a135e17fe18e18e03bc1": { - "address": "0x5868a0bc3a64cff82e19a135e17fe18e18e03bc1", - "symbol": "KRWO", - "decimals": 6, - "name": "KRWO", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x5868a0bc3a64cff82e19a135e17fe18e18e03bc1.png", - "aggregators": ["CoinGecko", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x2a3dc2d5daf9c8c46c954b8669f4643c6b1c081a": { - "address": "0x2a3dc2d5daf9c8c46c954b8669f4643c6b1c081a", - "symbol": "UBTC", - "decimals": 18, - "name": "uBTC", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x2a3dc2d5daf9c8c46c954b8669f4643c6b1c081a.png", - "aggregators": ["CoinGecko", "Rubic", "Sonarwatch"], - "occurrences": 3 - }, - "0x7b4bf9feccff207ef2cb7101ceb15b8516021acd": { - "address": "0x7b4bf9feccff207ef2cb7101ceb15b8516021acd", - "symbol": "MILK", - "decimals": 6, - "name": "MilkyWay", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x7b4bf9feccff207ef2cb7101ceb15b8516021acd.png", - "aggregators": ["PancakeExtended", "Socket", "Rubic"], - "occurrences": 3 - }, - "0x9d275685dc284c8eb1c79f6aba7a63dc75ec890a": { - "address": "0x9d275685dc284c8eb1c79f6aba7a63dc75ec890a", - "symbol": "AAPLX", - "decimals": 18, - "name": "AAPLX", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x9d275685dc284c8eb1c79f6aba7a63dc75ec890a.png", - "aggregators": ["CoinGecko", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x89233399708c18ac6887f90a2b4cd8ba5fedd06e": { - "address": "0x89233399708c18ac6887f90a2b4cd8ba5fedd06e", - "symbol": "ABTX", - "decimals": 18, - "name": "Abbott xStock", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x89233399708c18ac6887f90a2b4cd8ba5fedd06e.png", - "aggregators": ["CoinGecko", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x3557ba345b01efa20a1bddc61f573bfd87195081": { - "address": "0x3557ba345b01efa20a1bddc61f573bfd87195081", - "symbol": "AMZNX", - "decimals": 18, - "name": "AMZNX", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x3557ba345b01efa20a1bddc61f573bfd87195081.png", - "aggregators": ["CoinGecko", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x38bac69cbbd28156796e4163b2b6dcb81e336565": { - "address": "0x38bac69cbbd28156796e4163b2b6dcb81e336565", - "symbol": "AVGOX", - "decimals": 18, - "name": "Broadcom xStock", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x38bac69cbbd28156796e4163b2b6dcb81e336565.png", - "aggregators": ["CoinGecko", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x214151022c2a5e380ab80cdac31f23ae554a7345": { - "address": "0x214151022c2a5e380ab80cdac31f23ae554a7345", - "symbol": "CRWDX", - "decimals": 18, - "name": "CrowdStrike xStock", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x214151022c2a5e380ab80cdac31f23ae554a7345.png", - "aggregators": ["CoinGecko", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x053c784cd87b74f42e0c089f98643e79c1a3ff16": { - "address": "0x053c784cd87b74f42e0c089f98643e79c1a3ff16", - "symbol": "CSCOX", - "decimals": 18, - "name": "Cisco xStock", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x053c784cd87b74f42e0c089f98643e79c1a3ff16.png", - "aggregators": ["CoinGecko", "Rubic", "Rango"], - "occurrences": 3 - }, - "0xe92f673ca36c5e2efd2de7628f815f84807e803f": { - "address": "0xe92f673ca36c5e2efd2de7628f815f84807e803f", - "symbol": "GOOGLX", - "decimals": 18, - "name": "GOOGLX", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xe92f673ca36c5e2efd2de7628f815f84807e803f.png", - "aggregators": ["CoinGecko", "Rubic", "Rango"], - "occurrences": 3 - }, - "0xe1385fdd5ffb10081cd52c56584f25efa9084015": { - "address": "0xe1385fdd5ffb10081cd52c56584f25efa9084015", - "symbol": "HOODX", - "decimals": 18, - "name": "HOODX", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xe1385fdd5ffb10081cd52c56584f25efa9084015.png", - "aggregators": ["CoinGecko", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x0588e851ec0418d660bee81230d6c678daf21d46": { - "address": "0x0588e851ec0418d660bee81230d6c678daf21d46", - "symbol": "MDTX", - "decimals": 18, - "name": "Medtronic xStock", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x0588e851ec0418d660bee81230d6c678daf21d46.png", - "aggregators": ["CoinGecko", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x17d8186ed8f68059124190d147174d0f6697dc40": { - "address": "0x17d8186ed8f68059124190d147174d0f6697dc40", - "symbol": "MRKX", - "decimals": 18, - "name": "Merck xStock", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x17d8186ed8f68059124190d147174d0f6697dc40.png", - "aggregators": ["CoinGecko", "Rubic", "Rango"], - "occurrences": 3 - }, - "0xae2f842ef90c0d5213259ab82639d5bbf649b08e": { - "address": "0xae2f842ef90c0d5213259ab82639d5bbf649b08e", - "symbol": "MSTRX", - "decimals": 18, - "name": "MSTRX", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xae2f842ef90c0d5213259ab82639d5bbf649b08e.png", - "aggregators": ["CoinGecko", "Rubic", "Rango"], - "occurrences": 3 - }, - "0xa90424d5d3e770e8644103ab503ed775dd1318fd": { - "address": "0xa90424d5d3e770e8644103ab503ed775dd1318fd", - "symbol": "PGX", - "decimals": 18, - "name": "Procter & Gamble xStock", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xa90424d5d3e770e8644103ab503ed775dd1318fd.png", - "aggregators": ["CoinGecko", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x02a6c1789c3b4fdb1a7a3dfa39f90e5d3c94f4f9": { - "address": "0x02a6c1789c3b4fdb1a7a3dfa39f90e5d3c94f4f9", - "symbol": "PMX", - "decimals": 18, - "name": "Philip Morris xStock", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x02a6c1789c3b4fdb1a7a3dfa39f90e5d3c94f4f9.png", - "aggregators": ["CoinGecko", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x4a4073f2eaf299a1be22254dcd2c41727f6f54a2": { - "address": "0x4a4073f2eaf299a1be22254dcd2c41727f6f54a2", - "symbol": "CRMX", - "decimals": 18, - "name": "Salesforce xStock", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x4a4073f2eaf299a1be22254dcd2c41727f6f54a2.png", - "aggregators": ["CoinGecko", "Rubic", "Rango"], - "occurrences": 3 - }, - "0xf9523e369c5f55ad72dbaa75b0a9b92b3d8b147e": { - "address": "0xf9523e369c5f55ad72dbaa75b0a9b92b3d8b147e", - "symbol": "NVOX", - "decimals": 18, - "name": "Novo Nordisk xStock", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xf9523e369c5f55ad72dbaa75b0a9b92b3d8b147e.png", - "aggregators": ["CoinGecko", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x548308e91ec9f285c7bff05295badbd56a6e4971": { - "address": "0x548308e91ec9f285c7bff05295badbd56a6e4971", - "symbol": "ORCLX", - "decimals": 18, - "name": "Oracle xStock", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x548308e91ec9f285c7bff05295badbd56a6e4971.png", - "aggregators": ["CoinGecko", "Rubic", "Rango"], - "occurrences": 3 - }, - "0xba38b3c706f7a515ff7c8db04daa0a134ec46d2b": { - "address": "0xba38b3c706f7a515ff7c8db04daa0a134ec46d2b", - "symbol": "USELESS", - "decimals": 6, - "name": "USELESS COIN", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xba38b3c706f7a515ff7c8db04daa0a134ec46d2b.png", - "aggregators": ["PancakeExtended", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x7cea5b9548a4b48cf9551813ef9e73de916e41e0": { - "address": "0x7cea5b9548a4b48cf9551813ef9e73de916e41e0", - "symbol": "MIA", - "decimals": 18, - "name": "MIA", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x7cea5b9548a4b48cf9551813ef9e73de916e41e0.png", - "aggregators": ["PancakeExtended", "Rubic", "Rango"], - "occurrences": 3 - }, - "0xda6cef7f667d992a60eb823ab215493aa0c6b360": { - "address": "0xda6cef7f667d992a60eb823ab215493aa0c6b360", - "symbol": "RESOLV", - "decimals": 18, - "name": "Resolv", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xda6cef7f667d992a60eb823ab215493aa0c6b360.png", - "aggregators": ["PancakeExtended", "Socket", "Rubic"], - "occurrences": 3 - }, - "0xdb8e54f39aff243b25a41e4747957ed517af0511": { - "address": "0xdb8e54f39aff243b25a41e4747957ed517af0511", - "symbol": "YND", - "decimals": 18, - "name": "YieldNest", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xdb8e54f39aff243b25a41e4747957ed517af0511.png", - "aggregators": ["CoinGecko", "Socket", "Rubic"], - "occurrences": 3 - }, - "0xf7626c7ff7b778aaf187d508d056a9398d9545d1": { - "address": "0xf7626c7ff7b778aaf187d508d056a9398d9545d1", - "symbol": "ASRR", - "decimals": 9, - "name": "Assisterr AI", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xf7626c7ff7b778aaf187d508d056a9398d9545d1.png", - "aggregators": ["PancakeExtended", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x90a2a4c76b5d8c0bc892a69ea28aa775a8f2dd48": { - "address": "0x90a2a4c76b5d8c0bc892a69ea28aa775a8f2dd48", - "symbol": "SPYX", - "decimals": 18, - "name": "SPYX", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x90a2a4c76b5d8c0bc892a69ea28aa775a8f2dd48.png", - "aggregators": ["CoinGecko", "Rubic", "Rango"], - "occurrences": 3 - }, - "0xfdddb57878ef9d6f681ec4381dcb626b9e69ac86": { - "address": "0xfdddb57878ef9d6f681ec4381dcb626b9e69ac86", - "symbol": "TQQQX", - "decimals": 18, - "name": "TQQQX", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xfdddb57878ef9d6f681ec4381dcb626b9e69ac86.png", - "aggregators": ["CoinGecko", "Rubic", "Rango"], - "occurrences": 3 - }, - "0xffffff9936bd58a008855b0812b44d2c8dffe2aa": { - "address": "0xffffff9936bd58a008855b0812b44d2c8dffe2aa", - "symbol": "GGUSD", - "decimals": 6, - "name": "GGUSD", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xffffff9936bd58a008855b0812b44d2c8dffe2aa.png", - "aggregators": ["CoinGecko", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x2f714d7b9a035d4ce24af8d9b6091c07e37f43fb": { - "address": "0x2f714d7b9a035d4ce24af8d9b6091c07e37f43fb", - "symbol": "NODE", - "decimals": 18, - "name": "NodeOps", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x2f714d7b9a035d4ce24af8d9b6091c07e37f43fb.png", - "aggregators": ["PancakeExtended", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x2f9a35ab5ddfbc49927bfdeab98a86c53dc6e763": { - "address": "0x2f9a35ab5ddfbc49927bfdeab98a86c53dc6e763", - "symbol": "AMBRX", - "decimals": 18, - "name": "Amber xStock", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x2f9a35ab5ddfbc49927bfdeab98a86c53dc6e763.png", - "aggregators": ["CoinGecko", "Rubic", "Rango"], - "occurrences": 3 - }, - "0xfebded1b0986a8ee107f5ab1a1c5a813491deceb": { - "address": "0xfebded1b0986a8ee107f5ab1a1c5a813491deceb", - "symbol": "CRCLX", - "decimals": 18, - "name": "Circle xStock", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xfebded1b0986a8ee107f5ab1a1c5a813491deceb.png", - "aggregators": ["CoinGecko", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x521860bb5df5468358875266b89bfe90d990c6e7": { - "address": "0x521860bb5df5468358875266b89bfe90d990c6e7", - "symbol": "DFDVX", - "decimals": 18, - "name": "DFDV xStock", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x521860bb5df5468358875266b89bfe90d990c6e7.png", - "aggregators": ["CoinGecko", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x4c067de26475e1cefee8b8d1f6e2266b33a2372e": { - "address": "0x4c067de26475e1cefee8b8d1f6e2266b33a2372e", - "symbol": "RHEA", - "decimals": 18, - "name": "Rhea", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x4c067de26475e1cefee8b8d1f6e2266b33a2372e.png", - "aggregators": ["PancakeExtended", "LiFi", "Rubic"], - "occurrences": 3 - }, - "0xd715cc968c288740028be20685263f43ed1e4837": { - "address": "0xd715cc968c288740028be20685263f43ed1e4837", - "symbol": "GAIA", - "decimals": 18, - "name": "Gaia Token", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xd715cc968c288740028be20685263f43ed1e4837.png", - "aggregators": ["PancakeExtended", "Socket", "Rubic"], - "occurrences": 3 - }, - "0x5dd1a7a369e8273371d2dbf9d83356057088082c": { - "address": "0x5dd1a7a369e8273371d2dbf9d83356057088082c", - "symbol": "FT", - "decimals": 18, - "name": "FT", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x5dd1a7a369e8273371d2dbf9d83356057088082c.png", - "aggregators": ["CoinGecko", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x241f21df529c05289a00dafecea10139a287cdca": { - "address": "0x241f21df529c05289a00dafecea10139a287cdca", - "symbol": "WELEPHANT", - "decimals": 9, - "name": "Wrapped Elephant", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x241f21df529c05289a00dafecea10139a287cdca.png", - "aggregators": ["CoinGecko", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x8b9ee39195ea99d6ddd68030f44131116bc218f6": { - "address": "0x8b9ee39195ea99d6ddd68030f44131116bc218f6", - "symbol": "PEAQ", - "decimals": 18, - "name": "PeaqOFT", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x8b9ee39195ea99d6ddd68030f44131116bc218f6.png", - "aggregators": ["PancakeExtended", "LiFi", "Rubic"], - "occurrences": 3 - }, - "0xaa036928c9c0df07d525b55ea8ee690bb5a628c1": { - "address": "0xaa036928c9c0df07d525b55ea8ee690bb5a628c1", - "symbol": "EVAA", - "decimals": 18, - "name": "EVAA", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xaa036928c9c0df07d525b55ea8ee690bb5a628c1.png", - "aggregators": ["PancakeExtended", "LiFi", "Rubic"], - "occurrences": 3 - }, - "0x81d3a238b02827f62b9f390f947d36d4a5bf89d2": { - "address": "0x81d3a238b02827f62b9f390f947d36d4a5bf89d2", - "symbol": "CLO", - "decimals": 18, - "name": "Yei Finance", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x81d3a238b02827f62b9f390f947d36d4a5bf89d2.png", - "aggregators": ["PancakeExtended", "Rubic", "Rango"], - "occurrences": 3 - }, - "0xae1e85c3665b70b682defd778e3dafdf09ed3b0f": { - "address": "0xae1e85c3665b70b682defd778e3dafdf09ed3b0f", - "symbol": "BOS", - "decimals": 18, - "name": "BitcoinOS Token", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xae1e85c3665b70b682defd778e3dafdf09ed3b0f.png", - "aggregators": ["PancakeExtended", "Socket", "Rubic"], - "occurrences": 3 - }, - "0x775acf0fae2b97789ea58e775789925ade06b867": { - "address": "0x775acf0fae2b97789ea58e775789925ade06b867", - "symbol": "WQIE", - "decimals": 18, - "name": "WQIE", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x775acf0fae2b97789ea58e775789925ade06b867.png", - "aggregators": ["CoinGecko", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x8d047f4f57a190c96c8b9704b39a1379e999d82b": { - "address": "0x8d047f4f57a190c96c8b9704b39a1379e999d82b", - "symbol": "ECC", - "decimals": 8, - "name": "Etherconnect Coin", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x8d047f4f57a190c96c8b9704b39a1379e999d82b.png", - "aggregators": ["PancakeTop100", "Rubic", "Rango"], - "occurrences": 3 - }, - "0xf3edd4f14a018df4b6f02bf1b2cf17a8120519a2": { - "address": "0xf3edd4f14a018df4b6f02bf1b2cf17a8120519a2", - "symbol": "PWT", - "decimals": 8, - "name": "PandaInu Wallet Token", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xf3edd4f14a018df4b6f02bf1b2cf17a8120519a2.png", - "aggregators": ["PancakeTop100", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x849c6a8188b89f9a9757507705263fdfc0f8cd57": { - "address": "0x849c6a8188b89f9a9757507705263fdfc0f8cd57", - "symbol": "$EGGY", - "decimals": 18, - "name": "EGGY", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x849c6a8188b89f9a9757507705263fdfc0f8cd57.png", - "aggregators": ["PancakeCoinGecko", "Rubic", "Rango"], - "occurrences": 3 - }, - "0xb806fa32ebdc04e5dbdd2ad83e75c8f7d8e8ef8b": { - "address": "0xb806fa32ebdc04e5dbdd2ad83e75c8f7d8e8ef8b", - "symbol": "3P", - "decimals": 18, - "name": "Web3Camp", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xb806fa32ebdc04e5dbdd2ad83e75c8f7d8e8ef8b.png", - "aggregators": ["PancakeCoinMarketCap", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x7e8bae727abc245181f7abad0a4445114c0ca987": { - "address": "0x7e8bae727abc245181f7abad0a4445114c0ca987", - "symbol": "7", - "decimals": 9, - "name": "Lucky7", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x7e8bae727abc245181f7abad0a4445114c0ca987.png", - "aggregators": ["PancakeCoinMarketCap", "Rubic", "Rango"], - "occurrences": 3 - }, - "0xf92d62ed69242d655e685c96b98f32f1409c3262": { - "address": "0xf92d62ed69242d655e685c96b98f32f1409c3262", - "symbol": "A4M", - "decimals": 9, - "name": "Alien Form", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xf92d62ed69242d655e685c96b98f32f1409c3262.png", - "aggregators": ["PancakeCoinMarketCap", "Rubic", "Rango"], - "occurrences": 3 - }, - "0xed19b2b301e8a4e18c5dca374a27e7d209ba02c9": { - "address": "0xed19b2b301e8a4e18c5dca374a27e7d209ba02c9", - "symbol": "AAI", - "decimals": 18, - "name": "Aventis AI", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xed19b2b301e8a4e18c5dca374a27e7d209ba02c9.png", - "aggregators": ["PancakeCoinMarketCap", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x277ae79c42c859ca858d5a92c22222c8b65c6d94": { - "address": "0x277ae79c42c859ca858d5a92c22222c8b65c6d94", - "symbol": "ABB", - "decimals": 18, - "name": "Astro Token", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x277ae79c42c859ca858d5a92c22222c8b65c6d94.png", - "aggregators": ["PancakeCoinMarketCap", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x44f5909e97e1cbf5fbbdf0fc92fd83cde5d5c58a": { - "address": "0x44f5909e97e1cbf5fbbdf0fc92fd83cde5d5c58a", - "symbol": "ACRIA", - "decimals": 18, - "name": "Acria Token", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x44f5909e97e1cbf5fbbdf0fc92fd83cde5d5c58a.png", - "aggregators": ["PancakeCoinMarketCap", "Rubic", "Rango"], - "occurrences": 3 - }, - "0xc30c95205c7bc70d81da8e852255cc89b90480f7": { - "address": "0xc30c95205c7bc70d81da8e852255cc89b90480f7", - "symbol": "ADD", - "decimals": 18, - "name": "Add Finance", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xc30c95205c7bc70d81da8e852255cc89b90480f7.png", - "aggregators": ["PancakeCoinMarketCap", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x883916d358d6262a47b0516a4243bb08310dbdf0": { - "address": "0x883916d358d6262a47b0516a4243bb08310dbdf0", - "symbol": "ADO", - "decimals": 18, - "name": "ADO Protocol", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x883916d358d6262a47b0516a4243bb08310dbdf0.png", - "aggregators": ["PancakeCoinMarketCap", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x4e93bfcd6378e564c454bf99e130ae10a1c7b2dd": { - "address": "0x4e93bfcd6378e564c454bf99e130ae10a1c7b2dd", - "symbol": "AIRBTC", - "decimals": 18, - "name": "AIRBTC", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x4e93bfcd6378e564c454bf99e130ae10a1c7b2dd.png", - "aggregators": ["PancakeCoinMarketCap", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x69df2aaea7a40dad19c74e65192df0d0f7f7912b": { - "address": "0x69df2aaea7a40dad19c74e65192df0d0f7f7912b", - "symbol": "ALME", - "decimals": 18, - "name": "ALITA", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x69df2aaea7a40dad19c74e65192df0d0f7f7912b.png", - "aggregators": ["PancakeCoinMarketCap", "Rubic", "Sonarwatch"], - "occurrences": 3 - }, - "0x083dcb9df5453bb81f73dd9df5fa81b128035a29": { - "address": "0x083dcb9df5453bb81f73dd9df5fa81b128035a29", - "symbol": "ARG", - "decimals": 18, - "name": "Argent", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x083dcb9df5453bb81f73dd9df5fa81b128035a29.png", - "aggregators": ["PancakeCoinMarketCap", "Rubic", "Rango"], - "occurrences": 3 - }, - "0xf1f0fa0287c47804636ffef14e2c241f2587903e": { - "address": "0xf1f0fa0287c47804636ffef14e2c241f2587903e", - "symbol": "ARMA", - "decimals": 18, - "name": "Aarma", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xf1f0fa0287c47804636ffef14e2c241f2587903e.png", - "aggregators": ["PancakeCoinMarketCap", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x906089721cc5cb41c87d35bb05bea70bdf47a269": { - "address": "0x906089721cc5cb41c87d35bb05bea70bdf47a269", - "symbol": "ARMY", - "decimals": 9, - "name": "BabyDogeARMY", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x906089721cc5cb41c87d35bb05bea70bdf47a269.png", - "aggregators": ["PancakeCoinMarketCap", "Rubic", "Rango"], - "occurrences": 3 - }, - "0xc98a8ec7a07f1b743e86896a52434c4c6a0dbc42": { - "address": "0xc98a8ec7a07f1b743e86896a52434c4c6a0dbc42", - "symbol": "ASIX", - "decimals": 9, - "name": "ASIX", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xc98a8ec7a07f1b743e86896a52434c4c6a0dbc42.png", - "aggregators": ["PancakeCoinMarketCap", "Rubic", "Sonarwatch"], - "occurrences": 3 - }, - "0x8ea2f890cb86dfb0e376137451c6fd982afefc15": { - "address": "0x8ea2f890cb86dfb0e376137451c6fd982afefc15", - "symbol": "AU", - "decimals": 18, - "name": "AutoCrypto", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x8ea2f890cb86dfb0e376137451c6fd982afefc15.png", - "aggregators": ["PancakeCoinMarketCap", "Rubic", "Sonarwatch"], - "occurrences": 3 - }, - "0x1dbd1fbfb0eb339c14f63f908a4aba27b58b6fab": { - "address": "0x1dbd1fbfb0eb339c14f63f908a4aba27b58b6fab", - "symbol": "BABYMUSK", - "decimals": 18, - "name": "Baby Musk", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x1dbd1fbfb0eb339c14f63f908a4aba27b58b6fab.png", - "aggregators": ["PancakeCoinMarketCap", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x6cf278f71b4ebbfeecdb49d11373cb2c52d8e3f8": { - "address": "0x6cf278f71b4ebbfeecdb49d11373cb2c52d8e3f8", - "symbol": "BABYPORK", - "decimals": 9, - "name": "Baby Pepe Fork", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x6cf278f71b4ebbfeecdb49d11373cb2c52d8e3f8.png", - "aggregators": ["PancakeCoinMarketCap", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x079c6dc6b3b627e8eb07fa2e391b27d59eb4000b": { - "address": "0x079c6dc6b3b627e8eb07fa2e391b27d59eb4000b", - "symbol": "BABYRATS", - "decimals": 9, - "name": "Baby Rats", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x079c6dc6b3b627e8eb07fa2e391b27d59eb4000b.png", - "aggregators": ["PancakeCoinMarketCap", "Rubic", "Rango"], - "occurrences": 3 - }, - "0xb7f86029269ee2f93f51e116e08901e955a6668c": { - "address": "0xb7f86029269ee2f93f51e116e08901e955a6668c", - "symbol": "BABYSORA", - "decimals": 9, - "name": "Baby Sora", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xb7f86029269ee2f93f51e116e08901e955a6668c.png", - "aggregators": ["PancakeCoinMarketCap", "Rubic", "Sonarwatch"], - "occurrences": 3 - }, - "0x30f12482fc0f4341cc6c1be242c7578a1ff154c7": { - "address": "0x30f12482fc0f4341cc6c1be242c7578a1ff154c7", - "symbol": "BCAI", - "decimals": 18, - "name": "Bright Crypto Ai", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x30f12482fc0f4341cc6c1be242c7578a1ff154c7.png", - "aggregators": ["PancakeCoinMarketCap", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x8f081eb884fd47b79536d28e2dd9d4886773f783": { - "address": "0x8f081eb884fd47b79536d28e2dd9d4886773f783", - "symbol": "BECOIN", - "decimals": 6, - "name": "bePAY Finance", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x8f081eb884fd47b79536d28e2dd9d4886773f783.png", - "aggregators": ["PancakeCoinMarketCap", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x75b2fdd95418e093fca7db858b36549e5e412076": { - "address": "0x75b2fdd95418e093fca7db858b36549e5e412076", - "symbol": "BEFX", - "decimals": 18, - "name": "Belifex", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x75b2fdd95418e093fca7db858b36549e5e412076.png", - "aggregators": ["PancakeCoinMarketCap", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x50a53ad44590df1d6c9fcf257d6416e937e5ed4f": { - "address": "0x50a53ad44590df1d6c9fcf257d6416e937e5ed4f", - "symbol": "BEMD", - "decimals": 18, - "name": "Betterment digital", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x50a53ad44590df1d6c9fcf257d6416e937e5ed4f.png", - "aggregators": ["PancakeCoinMarketCap", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x315be92aba5c3aaaf82b0c0c613838342c1416e7": { - "address": "0x315be92aba5c3aaaf82b0c0c613838342c1416e7", - "symbol": "BENX", - "decimals": 7, - "name": "BlueBenx", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x315be92aba5c3aaaf82b0c0c613838342c1416e7.png", - "aggregators": ["PancakeCoinMarketCap", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x2bc8c2ae9dad57948fa4168e56e177a29ae0c0b1": { - "address": "0x2bc8c2ae9dad57948fa4168e56e177a29ae0c0b1", - "symbol": "BFT", - "decimals": 18, - "name": "BattleForTEN", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x2bc8c2ae9dad57948fa4168e56e177a29ae0c0b1.png", - "aggregators": ["PancakeCoinMarketCap", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x874966221020d6ac1aed0e2cfad9cbfee0ba713b": { - "address": "0x874966221020d6ac1aed0e2cfad9cbfee0ba713b", - "symbol": "BHBD", - "decimals": 3, - "name": "BNB Smart Chain HBD", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x874966221020d6ac1aed0e2cfad9cbfee0ba713b.png", - "aggregators": ["PancakeCoinMarketCap", "Rubic", "Rango"], - "occurrences": 3 - }, - "0xb12186584f74195eedc7f5e3c274c6784a000000": { - "address": "0xb12186584f74195eedc7f5e3c274c6784a000000", - "symbol": "BHC", - "decimals": 18, - "name": "Black Hole Coin", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xb12186584f74195eedc7f5e3c274c6784a000000.png", - "aggregators": ["PancakeCoinMarketCap", "Rubic", "Rango"], - "occurrences": 3 - }, - "0xdd041e030ade3db3b2221ce681b65f9650f250d7": { - "address": "0xdd041e030ade3db3b2221ce681b65f9650f250d7", - "symbol": "BIBL", - "decimals": 18, - "name": "Biblecoin", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xdd041e030ade3db3b2221ce681b65f9650f250d7.png", - "aggregators": ["PancakeCoinMarketCap", "Rubic", "Rango"], - "occurrences": 3 - }, - "0xa9cf023a5f6de6863f02761f6166799ec2595758": { - "address": "0xa9cf023a5f6de6863f02761f6166799ec2595758", - "symbol": "BLAST", - "decimals": 18, - "name": "Blast Frontiers", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xa9cf023a5f6de6863f02761f6166799ec2595758.png", - "aggregators": ["PancakeCoinMarketCap", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x42907d9f7e3d4291c801bbd1f601066eb1dfa956": { - "address": "0x42907d9f7e3d4291c801bbd1f601066eb1dfa956", - "symbol": "BLEC", - "decimals": 18, - "name": "Bless Global Credit", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x42907d9f7e3d4291c801bbd1f601066eb1dfa956.png", - "aggregators": ["PancakeCoinGecko", "Rubic", "Rango"], - "occurrences": 3 - }, - "0xf376807dcdbaa0d7fa86e7c9eacc58d11ad710e4": { - "address": "0xf376807dcdbaa0d7fa86e7c9eacc58d11ad710e4", - "symbol": "BLITZ", - "decimals": 18, - "name": "Blitz Labs", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xf376807dcdbaa0d7fa86e7c9eacc58d11ad710e4.png", - "aggregators": ["PancakeCoinMarketCap", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x04df8c91fccfd703cd15047bf6c1ce76d335c6ce": { - "address": "0x04df8c91fccfd703cd15047bf6c1ce76d335c6ce", - "symbol": "BLOVELY", - "decimals": 9, - "name": "Baby Lovely Inu", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x04df8c91fccfd703cd15047bf6c1ce76d335c6ce.png", - "aggregators": ["PancakeCoinMarketCap", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x708739980021a0b0b2e555383fe1283697e140e9": { - "address": "0x708739980021a0b0b2e555383fe1283697e140e9", - "symbol": "BLS", - "decimals": 18, - "name": "Metacourt", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x708739980021a0b0b2e555383fe1283697e140e9.png", - "aggregators": ["PancakeCoinMarketCap", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x24dcd565ba10c64daf1e9faedb0f09a9053c6d07": { - "address": "0x24dcd565ba10c64daf1e9faedb0f09a9053c6d07", - "symbol": "BLU", - "decimals": 18, - "name": "BLU", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x24dcd565ba10c64daf1e9faedb0f09a9053c6d07.png", - "aggregators": ["PancakeCoinMarketCap", "Rubic", "Rango"], - "occurrences": 3 - }, - "0xa0243cf95800a2f1358cac08e6367c5aef6bab40": { - "address": "0xa0243cf95800a2f1358cac08e6367c5aef6bab40", - "symbol": "BOMEDOGE", - "decimals": 9, - "name": "BOOK OF DOGE MEMES", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xa0243cf95800a2f1358cac08e6367c5aef6bab40.png", - "aggregators": ["PancakeCoinMarketCap", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x9f5d4479b783327b61718fa13b3a0583869a80c1": { - "address": "0x9f5d4479b783327b61718fa13b3a0583869a80c1", - "symbol": "BOXY", - "decimals": 18, - "name": "BOXY", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x9f5d4479b783327b61718fa13b3a0583869a80c1.png", - "aggregators": ["PancakeExtended", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x6aac56305825f712fd44599e59f2ede51d42c3e7": { - "address": "0x6aac56305825f712fd44599e59f2ede51d42c3e7", - "symbol": "BREWLABS", - "decimals": 9, - "name": "Brewlabs", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x6aac56305825f712fd44599e59f2ede51d42c3e7.png", - "aggregators": ["PancakeCoinMarketCap", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x98c6fd0281a9a0300cb88553bf386a3492bb70f7": { - "address": "0x98c6fd0281a9a0300cb88553bf386a3492bb70f7", - "symbol": "BRS", - "decimals": 18, - "name": "Broovs", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x98c6fd0281a9a0300cb88553bf386a3492bb70f7.png", - "aggregators": ["PancakeCoinMarketCap", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x4dd1984a706e1c2c227bea67ad2f92dbde30afce": { - "address": "0x4dd1984a706e1c2c227bea67ad2f92dbde30afce", - "symbol": "BSKT", - "decimals": 18, - "name": "BasketCoin", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x4dd1984a706e1c2c227bea67ad2f92dbde30afce.png", - "aggregators": ["PancakeCoinMarketCap", "Rubic", "Rango"], - "occurrences": 3 - }, - "0xe00cebf04e6a0a82a82a58f3b714d4b1cc67f6a1": { - "address": "0xe00cebf04e6a0a82a82a58f3b714d4b1cc67f6a1", - "symbol": "BTR", - "decimals": 18, - "name": "BTRIPS", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xe00cebf04e6a0a82a82a58f3b714d4b1cc67f6a1.png", - "aggregators": ["PancakeCoinMarketCap", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x7fcd1f0959c8c9a68087eadb74955b11830fe880": { - "address": "0x7fcd1f0959c8c9a68087eadb74955b11830fe880", - "symbol": "BURNKING", - "decimals": 18, - "name": "BurnKing", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x7fcd1f0959c8c9a68087eadb74955b11830fe880.png", - "aggregators": ["PancakeCoinMarketCap", "Rubic", "Rango"], - "occurrences": 3 - }, - "0xdfaabaa57dec10c049335bdaa2e949b4ce2ead30": { - "address": "0xdfaabaa57dec10c049335bdaa2e949b4ce2ead30", - "symbol": "CABO", - "decimals": 9, - "name": "CatBonk", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xdfaabaa57dec10c049335bdaa2e949b4ce2ead30.png", - "aggregators": ["PancakeCoinMarketCap", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x39132daa2082e12ac33a08478a74362e3c394357": { - "address": "0x39132daa2082e12ac33a08478a74362e3c394357", - "symbol": "CAKEBOT", - "decimals": 9, - "name": "CakeBot", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x39132daa2082e12ac33a08478a74362e3c394357.png", - "aggregators": ["PancakeCoinMarketCap", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x922722e9ef614ec9a3e94b78496e92abfbb5a624": { - "address": "0x922722e9ef614ec9a3e94b78496e92abfbb5a624", - "symbol": "CAPO", - "decimals": 18, - "name": "ILCAPO", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x922722e9ef614ec9a3e94b78496e92abfbb5a624.png", - "aggregators": ["PancakeCoinMarketCap", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x7df083f3b16a37ee91e89d4a11d62053aad331a4": { - "address": "0x7df083f3b16a37ee91e89d4a11d62053aad331a4", - "symbol": "CAT", - "decimals": 9, - "name": "Cat Finance", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x7df083f3b16a37ee91e89d4a11d62053aad331a4.png", - "aggregators": ["PancakeCoinMarketCap", "Rubic", "Rango"], - "occurrences": 3 - }, - "0xc9ac219c6a3eb0e0acbb5911099c6a79d29f585d": { - "address": "0xc9ac219c6a3eb0e0acbb5911099c6a79d29f585d", - "symbol": "CATEX", - "decimals": 9, - "name": "CATEX", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xc9ac219c6a3eb0e0acbb5911099c6a79d29f585d.png", - "aggregators": ["PancakeCoinMarketCap", "Rubic", "Sonarwatch"], - "occurrences": 3 - }, - "0x18d9d0d6e42bb52a13236f4fa33d9d2485d9015a": { - "address": "0x18d9d0d6e42bb52a13236f4fa33d9d2485d9015a", - "symbol": "CATSHIRA", - "decimals": 18, - "name": "Shira Cat", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x18d9d0d6e42bb52a13236f4fa33d9d2485d9015a.png", - "aggregators": ["PancakeCoinMarketCap", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x92b0e13f1c6bf5696289863ebc49a4f0bce46f3e": { - "address": "0x92b0e13f1c6bf5696289863ebc49a4f0bce46f3e", - "symbol": "CBAB", - "decimals": 18, - "name": "CreBit", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x92b0e13f1c6bf5696289863ebc49a4f0bce46f3e.png", - "aggregators": ["PancakeCoinMarketCap", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x39bff8613defd221b0410ed3d4e5c07512d55f2d": { - "address": "0x39bff8613defd221b0410ed3d4e5c07512d55f2d", - "symbol": "CBIX-P", - "decimals": 18, - "name": "Cubiex Power", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x39bff8613defd221b0410ed3d4e5c07512d55f2d.png", - "aggregators": ["PancakeCoinMarketCap", "Rubic", "Rango"], - "occurrences": 3 - }, - "0xbfb8f92e8f3a9034019ac97fd9f85c6dfb513834": { - "address": "0xbfb8f92e8f3a9034019ac97fd9f85c6dfb513834", - "symbol": "CBSL", - "decimals": 18, - "name": "CeBioLabs", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xbfb8f92e8f3a9034019ac97fd9f85c6dfb513834.png", - "aggregators": ["PancakeCoinMarketCap", "Rubic", "Rango"], - "occurrences": 3 - }, - "0xfa2ad87e35fc8d3c9f57d73c4667a4651ce6ad2f": { - "address": "0xfa2ad87e35fc8d3c9f57d73c4667a4651ce6ad2f", - "symbol": "CEB", - "decimals": 18, - "name": "Carbon Emission Blockchain", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xfa2ad87e35fc8d3c9f57d73c4667a4651ce6ad2f.png", - "aggregators": ["PancakeCoinGecko", "Rubic", "Rango"], - "occurrences": 3 - }, - "0xfc3514474306e2d4aa8350fd8fa9c46c165fe8cd": { - "address": "0xfc3514474306e2d4aa8350fd8fa9c46c165fe8cd", - "symbol": "CNAME", - "decimals": 18, - "name": "Cloudname", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xfc3514474306e2d4aa8350fd8fa9c46c165fe8cd.png", - "aggregators": ["PancakeCoinMarketCap", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x9f6651f7147c4ec16357d0a56122e52c3c804b50": { - "address": "0x9f6651f7147c4ec16357d0a56122e52c3c804b50", - "symbol": "CODAI", - "decimals": 18, - "name": "CODAI", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x9f6651f7147c4ec16357d0a56122e52c3c804b50.png", - "aggregators": ["PancakeCoinMarketCap", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x57ac045f3553882e0e1e4cb44faffdc1bdfee249": { - "address": "0x57ac045f3553882e0e1e4cb44faffdc1bdfee249", - "symbol": "COMA", - "decimals": 9, - "name": "Compound Meta", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x57ac045f3553882e0e1e4cb44faffdc1bdfee249.png", - "aggregators": ["PancakeCoinMarketCap", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x3542a28854c5243656fa5cfa1a2811a32e28c1c8": { - "address": "0x3542a28854c5243656fa5cfa1a2811a32e28c1c8", - "symbol": "CR", - "decimals": 18, - "name": "Capitalrock", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x3542a28854c5243656fa5cfa1a2811a32e28c1c8.png", - "aggregators": ["PancakeCoinMarketCap", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x6289812163af9421e566b3d74774074fac2a0441": { - "address": "0x6289812163af9421e566b3d74774074fac2a0441", - "symbol": "CRUSADER", - "decimals": 9, - "name": "Crusaders of Crypto", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x6289812163af9421e566b3d74774074fac2a0441.png", - "aggregators": ["PancakeCoinMarketCap", "Rubic", "Rango"], - "occurrences": 3 - }, - "0xc85a2576693e5a6206398fe1c498c4bfe214df58": { - "address": "0xc85a2576693e5a6206398fe1c498c4bfe214df58", - "symbol": "CT", - "decimals": 18, - "name": "CLIQ token", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xc85a2576693e5a6206398fe1c498c4bfe214df58.png", - "aggregators": ["PancakeCoinMarketCap", "Rubic", "Rango"], - "occurrences": 3 - }, - "0xa5331bb3a3f1e1cb98ba8160176569ac0a80e61d": { - "address": "0xa5331bb3a3f1e1cb98ba8160176569ac0a80e61d", - "symbol": "CTS", - "decimals": 18, - "name": "Cats Coin", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xa5331bb3a3f1e1cb98ba8160176569ac0a80e61d.png", - "aggregators": ["PancakeCoinMarketCap", "Rubic", "Rango"], - "occurrences": 3 - }, - "0xba08da6b46e3dd153dd8b66a6e4cfd37a6359559": { - "address": "0xba08da6b46e3dd153dd8b66a6e4cfd37a6359559", - "symbol": "CTY", - "decimals": 18, - "name": "CUSTODIY", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xba08da6b46e3dd153dd8b66a6e4cfd37a6359559.png", - "aggregators": ["PancakeCoinMarketCap", "Rubic", "Sonarwatch"], - "occurrences": 3 - }, - "0x7fbec0bb6a7152e77c30d005b5d49cbc08a602c3": { - "address": "0x7fbec0bb6a7152e77c30d005b5d49cbc08a602c3", - "symbol": "DDOS", - "decimals": 18, - "name": "disBalancer", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x7fbec0bb6a7152e77c30d005b5d49cbc08a602c3.png", - "aggregators": ["PancakeCoinMarketCap", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x1a131f7b106d58f33eaf0fe5b47db2f2045e5732": { - "address": "0x1a131f7b106d58f33eaf0fe5b47db2f2045e5732", - "symbol": "DEGEN", - "decimals": 18, - "name": "DegenReborn", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x1a131f7b106d58f33eaf0fe5b47db2f2045e5732.png", - "aggregators": ["PancakeCoinMarketCap", "Rubic", "Rango"], - "occurrences": 3 - }, - "0xa87584cfeb892c33a1c9a233e4a733b45c4160e6": { - "address": "0xa87584cfeb892c33a1c9a233e4a733b45c4160e6", - "symbol": "DGH", - "decimals": 18, - "name": "Digihealth", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xa87584cfeb892c33a1c9a233e4a733b45c4160e6.png", - "aggregators": ["PancakeCoinMarketCap", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x3a06212763caf64bf101daa4b0cebb0cd393fa1a": { - "address": "0x3a06212763caf64bf101daa4b0cebb0cd393fa1a", - "symbol": "DLTA", - "decimals": 18, - "name": "delta.theta", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x3a06212763caf64bf101daa4b0cebb0cd393fa1a.png", - "aggregators": ["PancakeCoinMarketCap", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x4d829d37460d2490446255b15d52c81df3093290": { - "address": "0x4d829d37460d2490446255b15d52c81df3093290", - "symbol": "DLY", - "decimals": 18, - "name": "Daily Finance", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x4d829d37460d2490446255b15d52c81df3093290.png", - "aggregators": ["PancakeCoinMarketCap", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x1a2662f7195d4a4636bf56868055d529937f8e10": { - "address": "0x1a2662f7195d4a4636bf56868055d529937f8e10", - "symbol": "DOGEGROK", - "decimals": 9, - "name": "Doge Grok", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x1a2662f7195d4a4636bf56868055d529937f8e10.png", - "aggregators": ["PancakeCoinMarketCap", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x2b2ff80c489dad868318a19fd6f258889a026da5": { - "address": "0x2b2ff80c489dad868318a19fd6f258889a026da5", - "symbol": "DXT", - "decimals": 9, - "name": "DeXit Network", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x2b2ff80c489dad868318a19fd6f258889a026da5.png", - "aggregators": ["PancakeCoinMarketCap", "Rubic", "Rango"], - "occurrences": 3 - }, - "0xb1ce906c610004e27e74415aa9bcc90e46366f90": { - "address": "0xb1ce906c610004e27e74415aa9bcc90e46366f90", - "symbol": "DYNMT", - "decimals": 2, - "name": "Dynamite", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xb1ce906c610004e27e74415aa9bcc90e46366f90.png", - "aggregators": ["PancakeCoinMarketCap", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x2b1b730c997d81db2e792b47d0bc42a64ee6aa55": { - "address": "0x2b1b730c997d81db2e792b47d0bc42a64ee6aa55", - "symbol": "EDUX", - "decimals": 18, - "name": "Edufex", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x2b1b730c997d81db2e792b47d0bc42a64ee6aa55.png", - "aggregators": ["PancakeCoinMarketCap", "Rubic", "Rango"], - "occurrences": 3 - }, - "0xae98e63db1c4646bf5b40b29c664bc922f71bc65": { - "address": "0xae98e63db1c4646bf5b40b29c664bc922f71bc65", - "symbol": "EFT", - "decimals": 18, - "name": "Energyfi Token", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xae98e63db1c4646bf5b40b29c664bc922f71bc65.png", - "aggregators": ["PancakeCoinMarketCap", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x6746e37a756da9e34f0bbf1c0495784ba33b79b4": { - "address": "0x6746e37a756da9e34f0bbf1c0495784ba33b79b4", - "symbol": "EFUN", - "decimals": 18, - "name": "EFUN", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x6746e37a756da9e34f0bbf1c0495784ba33b79b4.png", - "aggregators": ["PancakeCoinMarketCap", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x74afe449d1beffc90456cfebd700ab391abd7daf": { - "address": "0x74afe449d1beffc90456cfebd700ab391abd7daf", - "symbol": "EG", - "decimals": 18, - "name": "EG Token", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x74afe449d1beffc90456cfebd700ab391abd7daf.png", - "aggregators": ["PancakeCoinMarketCap", "Rubic", "Rango"], - "occurrences": 3 - }, - "0xc001bbe2b87079294c63ece98bdd0a88d761434e": { - "address": "0xc001bbe2b87079294c63ece98bdd0a88d761434e", - "symbol": "EGC", - "decimals": 9, - "name": "EverGrow Coin", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xc001bbe2b87079294c63ece98bdd0a88d761434e.png", - "aggregators": ["PancakeCoinMarketCap", "Rubic", "Sonarwatch"], - "occurrences": 3 - }, - "0x623be4fde518a00ac49a870bd439cfd5c35e08ed": { - "address": "0x623be4fde518a00ac49a870bd439cfd5c35e08ed", - "symbol": "EXT", - "decimals": 9, - "name": "Exatech", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x623be4fde518a00ac49a870bd439cfd5c35e08ed.png", - "aggregators": ["PancakeCoinMarketCap", "Rubic", "Sonarwatch"], - "occurrences": 3 - }, - "0xca0c1c12466a57b26850b05a0ba2fb39f9763a0c": { - "address": "0xca0c1c12466a57b26850b05a0ba2fb39f9763a0c", - "symbol": "EZI", - "decimals": 9, - "name": "Ezillion", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xca0c1c12466a57b26850b05a0ba2fb39f9763a0c.png", - "aggregators": ["PancakeCoinMarketCap", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x87e2414093632a3b9a1afea7083e5dab59b5dc4f": { - "address": "0x87e2414093632a3b9a1afea7083e5dab59b5dc4f", - "symbol": "FALCON", - "decimals": 18, - "name": "FalconsInu", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x87e2414093632a3b9a1afea7083e5dab59b5dc4f.png", - "aggregators": ["PancakeCoinMarketCap", "Rubic", "Sonarwatch"], - "occurrences": 3 - }, - "0x56513627e7cea535b9b5a18da7643a4b21999994": { - "address": "0x56513627e7cea535b9b5a18da7643a4b21999994", - "symbol": "FATHOM", - "decimals": 18, - "name": "Fathom", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x56513627e7cea535b9b5a18da7643a4b21999994.png", - "aggregators": ["PancakeCoinMarketCap", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x29cabf2a1e5de6f0ebc39ca6fe83c687fe90fb6c": { - "address": "0x29cabf2a1e5de6f0ebc39ca6fe83c687fe90fb6c", - "symbol": "FICO", - "decimals": 18, - "name": "Fish Crypto", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x29cabf2a1e5de6f0ebc39ca6fe83c687fe90fb6c.png", - "aggregators": ["PancakeCoinMarketCap", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x3b95702dd0ce375462f131f805f9ee6e1563f8d5": { - "address": "0x3b95702dd0ce375462f131f805f9ee6e1563f8d5", - "symbol": "FINE", - "decimals": 18, - "name": "This is Fine", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x3b95702dd0ce375462f131f805f9ee6e1563f8d5.png", - "aggregators": ["PancakeCoinMarketCap", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x1b219aca875f8c74c33cff9ff98f3a9b62fcbff5": { - "address": "0x1b219aca875f8c74c33cff9ff98f3a9b62fcbff5", - "symbol": "FINS", - "decimals": 18, - "name": "AutoShark DEX", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x1b219aca875f8c74c33cff9ff98f3a9b62fcbff5.png", - "aggregators": ["PancakeCoinMarketCap", "Rubic", "Rango"], - "occurrences": 3 - }, - "0xbb9f216bac27046c6b8bdaae660b761b851ab068": { - "address": "0xbb9f216bac27046c6b8bdaae660b761b851ab068", - "symbol": "FOHO", - "decimals": 8, - "name": "FOHO Coin", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xbb9f216bac27046c6b8bdaae660b761b851ab068.png", - "aggregators": ["PancakeCoinMarketCap", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x5a29c96fa93ffa8845fb7f8616a03aa85fcc11d6": { - "address": "0x5a29c96fa93ffa8845fb7f8616a03aa85fcc11d6", - "symbol": "FRF", - "decimals": 8, - "name": "France REV Finance", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x5a29c96fa93ffa8845fb7f8616a03aa85fcc11d6.png", - "aggregators": ["PancakeCoinMarketCap", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x4c561c1ef2109fc6b230304b114671f72820421b": { - "address": "0x4c561c1ef2109fc6b230304b114671f72820421b", - "symbol": "FROGGY", - "decimals": 18, - "name": "Froggy", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x4c561c1ef2109fc6b230304b114671f72820421b.png", - "aggregators": ["PancakeCoinMarketCap", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x9fbff386a9405b4c98329824418ec02b5c20976b": { - "address": "0x9fbff386a9405b4c98329824418ec02b5c20976b", - "symbol": "FUTURE", - "decimals": 18, - "name": "FUTURECOIN", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x9fbff386a9405b4c98329824418ec02b5c20976b.png", - "aggregators": ["PancakeCoinMarketCap", "Rubic", "Rango"], - "occurrences": 3 - }, - "0xa99600043e84181a9d4137ad1cefb8cfe9138674": { - "address": "0xa99600043e84181a9d4137ad1cefb8cfe9138674", - "symbol": "FXST", - "decimals": 6, - "name": "FX Stock Token", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xa99600043e84181a9d4137ad1cefb8cfe9138674.png", - "aggregators": ["PancakeCoinMarketCap", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x0158d3817c1391b4736be724b1e8e8553d615c57": { - "address": "0x0158d3817c1391b4736be724b1e8e8553d615c57", - "symbol": "GAYPEPE", - "decimals": 18, - "name": "Gay Pepe", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x0158d3817c1391b4736be724b1e8e8553d615c57.png", - "aggregators": ["PancakeCoinMarketCap", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x2d8269dae518e78d95110dbfadf1fb479b8152e7": { - "address": "0x2d8269dae518e78d95110dbfadf1fb479b8152e7", - "symbol": "GCC", - "decimals": 9, - "name": "GCCOIN", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x2d8269dae518e78d95110dbfadf1fb479b8152e7.png", - "aggregators": ["PancakeCoinMarketCap", "Rubic", "Rango"], - "occurrences": 3 - }, - "0xb2192a2829a5220bafd5b0a67f3328e209887bee": { - "address": "0xb2192a2829a5220bafd5b0a67f3328e209887bee", - "symbol": "GETA", - "decimals": 18, - "name": "Getaverse", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xb2192a2829a5220bafd5b0a67f3328e209887bee.png", - "aggregators": ["PancakeCoinMarketCap", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x2ff90b0c29ededdaf11c847925ea4a17789e88c3": { - "address": "0x2ff90b0c29ededdaf11c847925ea4a17789e88c3", - "symbol": "GINOA", - "decimals": 18, - "name": "Ginoa", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x2ff90b0c29ededdaf11c847925ea4a17789e88c3.png", - "aggregators": ["PancakeCoinMarketCap", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x655e1cb3f2c81c76856302679648df698a5f1989": { - "address": "0x655e1cb3f2c81c76856302679648df698a5f1989", - "symbol": "GLI", - "decimals": 9, - "name": "GLI TOKEN", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x655e1cb3f2c81c76856302679648df698a5f1989.png", - "aggregators": ["PancakeCoinMarketCap", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x9720ca160bbd4e7f3dd4bb3f8bd4227ca0342e63": { - "address": "0x9720ca160bbd4e7f3dd4bb3f8bd4227ca0342e63", - "symbol": "GMPD", - "decimals": 18, - "name": "GMPD", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x9720ca160bbd4e7f3dd4bb3f8bd4227ca0342e63.png", - "aggregators": ["PancakeCoinMarketCap", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x87429b114315e8dbfa8b9611bef07ecad9a13742": { - "address": "0x87429b114315e8dbfa8b9611bef07ecad9a13742", - "symbol": "GOKU", - "decimals": 18, - "name": "GOKUSWAP", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x87429b114315e8dbfa8b9611bef07ecad9a13742.png", - "aggregators": ["PancakeCoinMarketCap", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x8a99feefc8857e65be8f098f22765b99113d43ef": { - "address": "0x8a99feefc8857e65be8f098f22765b99113d43ef", - "symbol": "GOOGLY", - "decimals": 9, - "name": "Googly Cat", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x8a99feefc8857e65be8f098f22765b99113d43ef.png", - "aggregators": ["PancakeCoinMarketCap", "Rubic", "Rango"], - "occurrences": 3 - }, - "0xa5fbc3520dd4bb85fcd175e1e3b994546a2c1ee8": { - "address": "0xa5fbc3520dd4bb85fcd175e1e3b994546a2c1ee8", - "symbol": "GOTEM", - "decimals": 18, - "name": "gotEM", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xa5fbc3520dd4bb85fcd175e1e3b994546a2c1ee8.png", - "aggregators": ["PancakeCoinMarketCap", "Rubic", "Rango"], - "occurrences": 3 - }, - "0xc1a8f8bb27958c92ca1ed00340a50297cd4ccdd8": { - "address": "0xc1a8f8bb27958c92ca1ed00340a50297cd4ccdd8", - "symbol": "GROKBANK", - "decimals": 9, - "name": "Grok Bank", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xc1a8f8bb27958c92ca1ed00340a50297cd4ccdd8.png", - "aggregators": ["PancakeCoinMarketCap", "Rubic", "Sonarwatch"], - "occurrences": 3 - }, - "0xaf27e0c18d1c63884ec73cee8838a2aa49c58517": { - "address": "0xaf27e0c18d1c63884ec73cee8838a2aa49c58517", - "symbol": "GROKBOY", - "decimals": 1, - "name": "GrokBoy", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xaf27e0c18d1c63884ec73cee8838a2aa49c58517.png", - "aggregators": ["PancakeCoinMarketCap", "Rubic", "Rango"], - "occurrences": 3 - }, - "0xbd566c45e13023b94ad0f07f2a93d1ed74801f90": { - "address": "0xbd566c45e13023b94ad0f07f2a93d1ed74801f90", - "symbol": "GROKHEROES", - "decimals": 18, - "name": "GROK heroes", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xbd566c45e13023b94ad0f07f2a93d1ed74801f90.png", - "aggregators": ["PancakeCoinMarketCap", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x6ddd36f6c7c021ebf7d4b9753537d7bca8ed4e37": { - "address": "0x6ddd36f6c7c021ebf7d4b9753537d7bca8ed4e37", - "symbol": "GROOMER", - "decimals": 18, - "name": "Hamster Groomers", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x6ddd36f6c7c021ebf7d4b9753537d7bca8ed4e37.png", - "aggregators": ["PancakeCoinMarketCap", "Rubic", "Rango"], - "occurrences": 3 - }, - "0xbc4d19d6ab09fafe720db304fac0e9ec941a932b": { - "address": "0xbc4d19d6ab09fafe720db304fac0e9ec941a932b", - "symbol": "HIDE", - "decimals": 18, - "name": "Hide Coin", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xbc4d19d6ab09fafe720db304fac0e9ec941a932b.png", - "aggregators": ["PancakeCoinMarketCap", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x469acf8e1f29c1b5db99394582464fad45a1fc6f": { - "address": "0x469acf8e1f29c1b5db99394582464fad45a1fc6f", - "symbol": "HIMO", - "decimals": 18, - "name": "Himo World", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x469acf8e1f29c1b5db99394582464fad45a1fc6f.png", - "aggregators": ["PancakeCoinMarketCap", "Rubic", "Rango"], - "occurrences": 3 - }, - "0xb534b21082e44a9c5865876f41f8dd348278fdf2": { - "address": "0xb534b21082e44a9c5865876f41f8dd348278fdf2", - "symbol": "HOMIECOIN", - "decimals": 18, - "name": "Homie Wars", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xb534b21082e44a9c5865876f41f8dd348278fdf2.png", - "aggregators": ["PancakeCoinMarketCap", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x17b69d106f3fcd3ca441d794b5641428ec633f03": { - "address": "0x17b69d106f3fcd3ca441d794b5641428ec633f03", - "symbol": "HONK", - "decimals": 9, - "name": "HONK", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x17b69d106f3fcd3ca441d794b5641428ec633f03.png", - "aggregators": ["PancakeCoinMarketCap", "Rubic", "Rango"], - "occurrences": 3 - }, - "0xc75aa1fa199eac5adabc832ea4522cff6dfd521a": { - "address": "0xc75aa1fa199eac5adabc832ea4522cff6dfd521a", - "symbol": "HPAY", - "decimals": 18, - "name": "HedgePay", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xc75aa1fa199eac5adabc832ea4522cff6dfd521a.png", - "aggregators": ["PancakeCoinMarketCap", "Rubic", "Rango"], - "occurrences": 3 - }, - "0xda8929a6338f408cc78c1845fb4f71bffd2cfcfb": { - "address": "0xda8929a6338f408cc78c1845fb4f71bffd2cfcfb", - "symbol": "HSF", - "decimals": 18, - "name": "Hillstone Finance", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xda8929a6338f408cc78c1845fb4f71bffd2cfcfb.png", - "aggregators": ["PancakeCoinMarketCap", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x724f8ebae58f19bc472ae57b4b24748a9f3e55c5": { - "address": "0x724f8ebae58f19bc472ae57b4b24748a9f3e55c5", - "symbol": "HUS", - "decimals": 18, - "name": "Husky.AI", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x724f8ebae58f19bc472ae57b4b24748a9f3e55c5.png", - "aggregators": ["PancakeCoinMarketCap", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x19cd9b8e42d4ef62c3ea124110d5cfd283ceac43": { - "address": "0x19cd9b8e42d4ef62c3ea124110d5cfd283ceac43", - "symbol": "IBAT", - "decimals": 9, - "name": "BattleInfinity", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x19cd9b8e42d4ef62c3ea124110d5cfd283ceac43.png", - "aggregators": ["PancakeCoinMarketCap", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x4927b4d730ae6f5a9a9115cf81848a3b9cfad891": { - "address": "0x4927b4d730ae6f5a9a9115cf81848a3b9cfad891", - "symbol": "IFC", - "decimals": 18, - "name": "iFortune", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x4927b4d730ae6f5a9a9115cf81848a3b9cfad891.png", - "aggregators": ["PancakeCoinMarketCap", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x9babcd3a6f62d9adc709e919d5faa39aa85749fc": { - "address": "0x9babcd3a6f62d9adc709e919d5faa39aa85749fc", - "symbol": "INDSHIB", - "decimals": 18, - "name": "Indian Shiba Inu", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x9babcd3a6f62d9adc709e919d5faa39aa85749fc.png", - "aggregators": ["PancakeCoinMarketCap", "Rubic", "Rango"], - "occurrences": 3 - }, - "0xe2efe9d38e21293347018914ee1d23913ecb811c": { - "address": "0xe2efe9d38e21293347018914ee1d23913ecb811c", - "symbol": "INTL", - "decimals": 18, - "name": "Intelly", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xe2efe9d38e21293347018914ee1d23913ecb811c.png", - "aggregators": ["PancakeCoinMarketCap", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x5d681b9839e237c4f1dc7d7486e6cb0a12b9654f": { - "address": "0x5d681b9839e237c4f1dc7d7486e6cb0a12b9654f", - "symbol": "IOWN", - "decimals": 18, - "name": "iOWN Token", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x5d681b9839e237c4f1dc7d7486e6cb0a12b9654f.png", - "aggregators": ["PancakeCoinMarketCap", "Rubic", "Rango"], - "occurrences": 3 - }, - "0xcdb96d3aef363a036c6cf6c9b5736d79f0e404e2": { - "address": "0xcdb96d3aef363a036c6cf6c9b5736d79f0e404e2", - "symbol": "IPX", - "decimals": 18, - "name": "InpulseX", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xcdb96d3aef363a036c6cf6c9b5736d79f0e404e2.png", - "aggregators": ["PancakeCoinGecko", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x146171eb1c1e32faefcfdabc3c470b83197adb60": { - "address": "0x146171eb1c1e32faefcfdabc3c470b83197adb60", - "symbol": "ITC", - "decimals": 18, - "name": "ITC", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x146171eb1c1e32faefcfdabc3c470b83197adb60.png", - "aggregators": ["PancakeCoinMarketCap", "Rubic", "Rango"], - "occurrences": 3 - }, - "0xdd97ab35e3c0820215bc85a395e13671d84ccba2": { - "address": "0xdd97ab35e3c0820215bc85a395e13671d84ccba2", - "symbol": "JAWS", - "decimals": 18, - "name": "AutoShark", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xdd97ab35e3c0820215bc85a395e13671d84ccba2.png", - "aggregators": ["PancakeCoinMarketCap", "Rubic", "Rango"], - "occurrences": 3 - }, - "0xb8167c0e58f4ca0ec7a6d967a8d138f05b3a981f": { - "address": "0xb8167c0e58f4ca0ec7a6d967a8d138f05b3a981f", - "symbol": "JEN", - "decimals": 18, - "name": "Jencoin", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xb8167c0e58f4ca0ec7a6d967a8d138f05b3a981f.png", - "aggregators": ["PancakeCoinMarketCap", "Rubic", "Rango"], - "occurrences": 3 - }, - "0xdd6978f36c98aff4287e5ac803c9cf1b865641f6": { - "address": "0xdd6978f36c98aff4287e5ac803c9cf1b865641f6", - "symbol": "JERRY", - "decimals": 9, - "name": "Jerry Inu", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xdd6978f36c98aff4287e5ac803c9cf1b865641f6.png", - "aggregators": ["PancakeCoinMarketCap", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x1ec58fe5e681e35e490b5d4cbecdf42b29c1b063": { - "address": "0x1ec58fe5e681e35e490b5d4cbecdf42b29c1b063", - "symbol": "JK", - "decimals": 18, - "name": "JK Coin", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x1ec58fe5e681e35e490b5d4cbecdf42b29c1b063.png", - "aggregators": ["PancakeCoinMarketCap", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x57c58c724460f10bd75ffac248c2621818c086d5": { - "address": "0x57c58c724460f10bd75ffac248c2621818c086d5", - "symbol": "JOKER", - "decimals": 9, - "name": "JOKER", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x57c58c724460f10bd75ffac248c2621818c086d5.png", - "aggregators": ["PancakeCoinMarketCap", "Rubic", "Rango"], - "occurrences": 3 - }, - "0xe3b933caed104db24542249c7331584d5a05972f": { - "address": "0xe3b933caed104db24542249c7331584d5a05972f", - "symbol": "JOOPS", - "decimals": 18, - "name": "JOOPS", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xe3b933caed104db24542249c7331584d5a05972f.png", - "aggregators": ["PancakeCoinMarketCap", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x26a1bdfa3bb86b2744c4a42ebfdd205761d13a8a": { - "address": "0x26a1bdfa3bb86b2744c4a42ebfdd205761d13a8a", - "symbol": "KAKA", - "decimals": 18, - "name": "KAKA Metaverse Token", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x26a1bdfa3bb86b2744c4a42ebfdd205761d13a8a.png", - "aggregators": ["PancakeCoinMarketCap", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x8e984e03ab35795c60242c902ece2450242c90e9": { - "address": "0x8e984e03ab35795c60242c902ece2450242c90e9", - "symbol": "KAMPAY", - "decimals": 18, - "name": "KamPay", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x8e984e03ab35795c60242c902ece2450242c90e9.png", - "aggregators": ["PancakeCoinMarketCap", "Rubic", "Rango"], - "occurrences": 3 - }, - "0xaf6424e047d52c5394fe6151b433c6ee6d222958": { - "address": "0xaf6424e047d52c5394fe6151b433c6ee6d222958", - "symbol": "KBC", - "decimals": 7, - "name": "KB Chain", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xaf6424e047d52c5394fe6151b433c6ee6d222958.png", - "aggregators": ["PancakeCoinMarketCap", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x2df3774f46049da1efeb2b0c393efd7234b6ad56": { - "address": "0x2df3774f46049da1efeb2b0c393efd7234b6ad56", - "symbol": "KINGGROK", - "decimals": 9, - "name": "King Grok", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x2df3774f46049da1efeb2b0c393efd7234b6ad56.png", - "aggregators": ["PancakeCoinMarketCap", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x235d650fc6d9eb7d4bac77e128265295a0054304": { - "address": "0x235d650fc6d9eb7d4bac77e128265295a0054304", - "symbol": "KWAI", - "decimals": 18, - "name": "KWAI", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x235d650fc6d9eb7d4bac77e128265295a0054304.png", - "aggregators": ["PancakeCoinMarketCap", "Rubic", "Rango"], - "occurrences": 3 - }, - "0xa78628ecba2bf5fedf3fe27a7cedaa363b46708f": { - "address": "0xa78628ecba2bf5fedf3fe27a7cedaa363b46708f", - "symbol": "LBR", - "decimals": 9, - "name": "Little Bunny Rocket", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xa78628ecba2bf5fedf3fe27a7cedaa363b46708f.png", - "aggregators": ["PancakeCoinMarketCap", "Rubic", "Rango"], - "occurrences": 3 - }, - "0xce36b4caed3ea2ac7b8fe026d111718fb79caf8e": { - "address": "0xce36b4caed3ea2ac7b8fe026d111718fb79caf8e", - "symbol": "LCI", - "decimals": 18, - "name": "LOVECHAIN", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xce36b4caed3ea2ac7b8fe026d111718fb79caf8e.png", - "aggregators": ["PancakeCoinMarketCap", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x320d31183100280ccdf69366cd56180ea442a3e8": { - "address": "0x320d31183100280ccdf69366cd56180ea442a3e8", - "symbol": "LHC", - "decimals": 8, - "name": "Lightcoin", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x320d31183100280ccdf69366cd56180ea442a3e8.png", - "aggregators": ["PancakeCoinMarketCap", "Rubic", "Rango"], - "occurrences": 3 - }, - "0xbcc608002765339db153d07250d516bc4356531b": { - "address": "0xbcc608002765339db153d07250d516bc4356531b", - "symbol": "LIO", - "decimals": 18, - "name": "Leonidasbilic", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xbcc608002765339db153d07250d516bc4356531b.png", - "aggregators": ["PancakeCoinMarketCap", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x16530b5c105fcb7c50bc84a039a0a4ed806a5124": { - "address": "0x16530b5c105fcb7c50bc84a039a0a4ed806a5124", - "symbol": "LIXX", - "decimals": 9, - "name": "Libra Incentix", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x16530b5c105fcb7c50bc84a039a0a4ed806a5124.png", - "aggregators": ["PancakeCoinMarketCap", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x39926824c06491284d13f7babaf06c8fed3add6c": { - "address": "0x39926824c06491284d13f7babaf06c8fed3add6c", - "symbol": "LONGFU", - "decimals": 18, - "name": "LONGFU", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x39926824c06491284d13f7babaf06c8fed3add6c.png", - "aggregators": ["PancakeCoinMarketCap", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x7bb5c17a9889fde42c4c95a937f7d387b8bcd409": { - "address": "0x7bb5c17a9889fde42c4c95a937f7d387b8bcd409", - "symbol": "LORDZ", - "decimals": 18, - "name": "MemeLordz Token", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x7bb5c17a9889fde42c4c95a937f7d387b8bcd409.png", - "aggregators": ["PancakeCoinMarketCap", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x32413018b57a706ea5882c8a9279258e637157e6": { - "address": "0x32413018b57a706ea5882c8a9279258e637157e6", - "symbol": "MATAR", - "decimals": 18, - "name": "MATAR AI", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x32413018b57a706ea5882c8a9279258e637157e6.png", - "aggregators": ["PancakeCoinMarketCap", "Rubic", "Rango"], - "occurrences": 3 - }, - "0xaf2f53cc6cc0384aba52275b0f715851fb5aff94": { - "address": "0xaf2f53cc6cc0384aba52275b0f715851fb5aff94", - "symbol": "MBP", - "decimals": 18, - "name": "MobiPad", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xaf2f53cc6cc0384aba52275b0f715851fb5aff94.png", - "aggregators": ["PancakeCoinMarketCap", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x92d28e49a4ffd443c1e2a907dcc07d2a41e67f4d": { - "address": "0x92d28e49a4ffd443c1e2a907dcc07d2a41e67f4d", - "symbol": "MELB", - "decimals": 18, - "name": "Minelab", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x92d28e49a4ffd443c1e2a907dcc07d2a41e67f4d.png", - "aggregators": ["PancakeCoinMarketCap", "Rubic", "Rango"], - "occurrences": 3 - }, - "0xad04ac36791d923deb082da4f91ab71675dd18fb": { - "address": "0xad04ac36791d923deb082da4f91ab71675dd18fb", - "symbol": "MELI", - "decimals": 18, - "name": "MELI", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xad04ac36791d923deb082da4f91ab71675dd18fb.png", - "aggregators": ["PancakeCoinMarketCap", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x04073d16c6a08c27e8bbebe262ea4d1c6fa4c772": { - "address": "0x04073d16c6a08c27e8bbebe262ea4d1c6fa4c772", - "symbol": "META", - "decimals": 18, - "name": "MetaToken", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x04073d16c6a08c27e8bbebe262ea4d1c6fa4c772.png", - "aggregators": ["PancakeCoinMarketCap", "Rubic", "Rango"], - "occurrences": 3 - }, - "0xdc3541806d651ec79ba8639a1b495acf503eb2dd": { - "address": "0xdc3541806d651ec79ba8639a1b495acf503eb2dd", - "symbol": "METO", - "decimals": 18, - "name": "Metoshi", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xdc3541806d651ec79ba8639a1b495acf503eb2dd.png", - "aggregators": ["PancakeCoinMarketCap", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x6d23970ce32cb0f1929bece7c56d71319e1b4f01": { - "address": "0x6d23970ce32cb0f1929bece7c56d71319e1b4f01", - "symbol": "MFET", - "decimals": 8, - "name": "Multi Functional Environmental Token", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x6d23970ce32cb0f1929bece7c56d71319e1b4f01.png", - "aggregators": ["PancakeCoinMarketCap", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x336f5a68fd46a25056a6c1d9c06072c691486acc": { - "address": "0x336f5a68fd46a25056a6c1d9c06072c691486acc", - "symbol": "MIMIR", - "decimals": 18, - "name": "Mimir Token", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x336f5a68fd46a25056a6c1d9c06072c691486acc.png", - "aggregators": ["PancakeCoinMarketCap", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x5f2f6c4c491b690216e0f8ea753ff49ef4e36ba6": { - "address": "0x5f2f6c4c491b690216e0f8ea753ff49ef4e36ba6", - "symbol": "MLS", - "decimals": 18, - "name": "MetaLand Shares", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x5f2f6c4c491b690216e0f8ea753ff49ef4e36ba6.png", - "aggregators": ["PancakeCoinMarketCap", "Rubic", "Rango"], - "occurrences": 3 - }, - "0xa922a70569a7555518bf4ded5094661a965e23ca": { - "address": "0xa922a70569a7555518bf4ded5094661a965e23ca", - "symbol": "MNB", - "decimals": 8, - "name": "MN Bridge", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xa922a70569a7555518bf4ded5094661a965e23ca.png", - "aggregators": ["PancakeCoinMarketCap", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x039cd22cb49084142d55fcd4b6096a4f51ffb3b4": { - "address": "0x039cd22cb49084142d55fcd4b6096a4f51ffb3b4", - "symbol": "MOVEZ", - "decimals": 18, - "name": "MOVEZ.me", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x039cd22cb49084142d55fcd4b6096a4f51ffb3b4.png", - "aggregators": ["PancakeCoinMarketCap", "Rubic", "Rango"], - "occurrences": 3 - }, - "0xf1b602fc211e3e2976ef44e4017b764a778197e0": { - "address": "0xf1b602fc211e3e2976ef44e4017b764a778197e0", - "symbol": "MTG", - "decimals": 18, - "name": "MTG", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xf1b602fc211e3e2976ef44e4017b764a778197e0.png", - "aggregators": ["PancakeCoinMarketCap", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x6f7a1beab01c90545822a43ae1f5a59b779a30d9": { - "address": "0x6f7a1beab01c90545822a43ae1f5a59b779a30d9", - "symbol": "MTRC", - "decimals": 18, - "name": "Motorcoin", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x6f7a1beab01c90545822a43ae1f5a59b779a30d9.png", - "aggregators": ["PancakeCoinGecko", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x5e7f472b9481c80101b22d0ba4ef4253aa61dabc": { - "address": "0x5e7f472b9481c80101b22d0ba4ef4253aa61dabc", - "symbol": "MUDOL2", - "decimals": 18, - "name": "Hero Blaze: Three Kingdoms", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x5e7f472b9481c80101b22d0ba4ef4253aa61dabc.png", - "aggregators": ["PancakeCoinMarketCap", "Rubic", "Rango"], - "occurrences": 3 - }, - "0xf8028b65005b0b45f76988d2a77910186e7af4ef": { - "address": "0xf8028b65005b0b45f76988d2a77910186e7af4ef", - "symbol": "NDB", - "decimals": 12, - "name": "NDB", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xf8028b65005b0b45f76988d2a77910186e7af4ef.png", - "aggregators": ["PancakeCoinMarketCap", "Rubic", "Rango"], - "occurrences": 3 - }, - "0xf538030ba4b39e35a3576bd6698cfcc6ac34a81f": { - "address": "0xf538030ba4b39e35a3576bd6698cfcc6ac34a81f", - "symbol": "NEMO", - "decimals": 18, - "name": "NEMO", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xf538030ba4b39e35a3576bd6698cfcc6ac34a81f.png", - "aggregators": ["PancakeCoinMarketCap", "Rubic", "Rango"], - "occurrences": 3 - }, - "0xaa3ed6e6ea3ed78d4d57e373aabd6f54df5bb508": { - "address": "0xaa3ed6e6ea3ed78d4d57e373aabd6f54df5bb508", - "symbol": "NGA", - "decimals": 18, - "name": "NGA Tiger", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xaa3ed6e6ea3ed78d4d57e373aabd6f54df5bb508.png", - "aggregators": ["PancakeCoinMarketCap", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x7efb55d9ac57b23cc6811c9068db3cf83cbdfe39": { - "address": "0x7efb55d9ac57b23cc6811c9068db3cf83cbdfe39", - "symbol": "NSI", - "decimals": 18, - "name": "nSights DeFi Trader", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x7efb55d9ac57b23cc6811c9068db3cf83cbdfe39.png", - "aggregators": ["PancakeCoinMarketCap", "Rubic", "Rango"], - "occurrences": 3 - }, - "0xfdad8edc724277e975f4955d288c6eb5b20a3146": { - "address": "0xfdad8edc724277e975f4955d288c6eb5b20a3146", - "symbol": "NSWAP", - "decimals": 8, - "name": "Nulswap", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xfdad8edc724277e975f4955d288c6eb5b20a3146.png", - "aggregators": ["PancakeCoinMarketCap", "Rubic", "Rango"], - "occurrences": 3 - }, - "0xfdff7a8eda6a3739132867f989be4bf84e803c15": { - "address": "0xfdff7a8eda6a3739132867f989be4bf84e803c15", - "symbol": "NYT", - "decimals": 18, - "name": "New Year Token", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xfdff7a8eda6a3739132867f989be4bf84e803c15.png", - "aggregators": ["PancakeCoinMarketCap", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x37fe635d1e25b2f7276c1b9dbbcc7b087f80c050": { - "address": "0x37fe635d1e25b2f7276c1b9dbbcc7b087f80c050", - "symbol": "OCICAT", - "decimals": 18, - "name": "OciCat", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x37fe635d1e25b2f7276c1b9dbbcc7b087f80c050.png", - "aggregators": ["PancakeCoinMarketCap", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x6b0a03c7bd8441e0f8959394761e29bd6afbfdf7": { - "address": "0x6b0a03c7bd8441e0f8959394761e29bd6afbfdf7", - "symbol": "ONE", - "decimals": 18, - "name": "One Token", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x6b0a03c7bd8441e0f8959394761e29bd6afbfdf7.png", - "aggregators": ["PancakeCoinMarketCap", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x7536c00711e41df6aebcca650791107645b6bc52": { - "address": "0x7536c00711e41df6aebcca650791107645b6bc52", - "symbol": "OXB", - "decimals": 18, - "name": "OXBULL.TECH", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x7536c00711e41df6aebcca650791107645b6bc52.png", - "aggregators": ["PancakeCoinMarketCap", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x43a0c5eb1763a211aa3c05849a617f2ee0452767": { - "address": "0x43a0c5eb1763a211aa3c05849a617f2ee0452767", - "symbol": "PDX", - "decimals": 9, - "name": "PokeDX", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x43a0c5eb1763a211aa3c05849a617f2ee0452767.png", - "aggregators": ["PancakeCoinMarketCap", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x4adc604a0261e3d340745533964fff6bb130f3c3": { - "address": "0x4adc604a0261e3d340745533964fff6bb130f3c3", - "symbol": "PESA", - "decimals": 18, - "name": "Pesabase", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x4adc604a0261e3d340745533964fff6bb130f3c3.png", - "aggregators": ["PancakeCoinMarketCap", "Rubic", "Rango"], - "occurrences": 3 - }, - "0xa31be3734c2f2928570e363f89441cf1b527f6d4": { - "address": "0xa31be3734c2f2928570e363f89441cf1b527f6d4", - "symbol": "PIE", - "decimals": 18, - "name": "SportsPie", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xa31be3734c2f2928570e363f89441cf1b527f6d4.png", - "aggregators": ["PancakeCoinMarketCap", "Rubic", "Rango"], - "occurrences": 3 - }, - "0xb8067235c9b71feec069af151fdf0975dfbdfba5": { - "address": "0xb8067235c9b71feec069af151fdf0975dfbdfba5", - "symbol": "PION", - "decimals": 18, - "name": "PION Network", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xb8067235c9b71feec069af151fdf0975dfbdfba5.png", - "aggregators": ["PancakeCoinGecko", "Rubic", "Rango"], - "occurrences": 3 - }, - "0xac4ff793053c9fe8163020df5054865d925f9bbd": { - "address": "0xac4ff793053c9fe8163020df5054865d925f9bbd", - "symbol": "PLXY", - "decimals": 18, - "name": "Plxyer", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xac4ff793053c9fe8163020df5054865d925f9bbd.png", - "aggregators": ["PancakeCoinMarketCap", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x0cf453dc7ea21ef8fdffc1b14cb848e1e3884be5": { - "address": "0x0cf453dc7ea21ef8fdffc1b14cb848e1e3884be5", - "symbol": "POINT", - "decimals": 18, - "name": "SportPoint", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x0cf453dc7ea21ef8fdffc1b14cb848e1e3884be5.png", - "aggregators": ["PancakeCoinMarketCap", "Rubic", "Rango"], - "occurrences": 3 - }, - "0xefd8bb69ab5c0b022b1d33120ddd1dac3a83877e": { - "address": "0xefd8bb69ab5c0b022b1d33120ddd1dac3a83877e", - "symbol": "POKEGROK", - "decimals": 18, - "name": "PokeGROK", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xefd8bb69ab5c0b022b1d33120ddd1dac3a83877e.png", - "aggregators": ["PancakeCoinMarketCap", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x0c7d31befe4945089a3b8f835d6e8c1d4df6d952": { - "address": "0x0c7d31befe4945089a3b8f835d6e8c1d4df6d952", - "symbol": "POKO", - "decimals": 9, - "name": "POKO", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x0c7d31befe4945089a3b8f835d6e8c1d4df6d952.png", - "aggregators": ["PancakeCoinMarketCap", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x651189c8c0abbd79d51af276aa241915ca782b21": { - "address": "0x651189c8c0abbd79d51af276aa241915ca782b21", - "symbol": "PONG", - "decimals": 18, - "name": "Pong Heroes", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x651189c8c0abbd79d51af276aa241915ca782b21.png", - "aggregators": ["PancakeCoinMarketCap", "Rubic", "Rango"], - "occurrences": 3 - }, - "0xe8647ea19496e87c061bbad79f457928b2f52b5a": { - "address": "0xe8647ea19496e87c061bbad79f457928b2f52b5a", - "symbol": "POP", - "decimals": 18, - "name": "Popcorn", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xe8647ea19496e87c061bbad79f457928b2f52b5a.png", - "aggregators": ["PancakeCoinMarketCap", "Rubic", "Rango"], - "occurrences": 3 - }, - "0xfa53a4778431712af31a11621edee4d0926df1ac": { - "address": "0xfa53a4778431712af31a11621edee4d0926df1ac", - "symbol": "PTS", - "decimals": 18, - "name": "Petals", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xfa53a4778431712af31a11621edee4d0926df1ac.png", - "aggregators": ["PancakeCoinMarketCap", "Rubic", "Rango"], - "occurrences": 3 - }, - "0xd4d55b811d9ede2adce61a98d67d7f91bffce495": { - "address": "0xd4d55b811d9ede2adce61a98d67d7f91bffce495", - "symbol": "PULSEDOGE", - "decimals": 18, - "name": "PulseDoge", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xd4d55b811d9ede2adce61a98d67d7f91bffce495.png", - "aggregators": ["PancakeCoinMarketCap", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x6dc923900b3000bd074d1fea072839d51c76e70e": { - "address": "0x6dc923900b3000bd074d1fea072839d51c76e70e", - "symbol": "RU", - "decimals": 18, - "name": "RIFI United", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x6dc923900b3000bd074d1fea072839d51c76e70e.png", - "aggregators": ["PancakeCoinMarketCap", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x7c59a57fc16eac270421b74615c4bc009ecd486d": { - "address": "0x7c59a57fc16eac270421b74615c4bc009ecd486d", - "symbol": "RXCG", - "decimals": 18, - "name": "RXCGames", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x7c59a57fc16eac270421b74615c4bc009ecd486d.png", - "aggregators": ["PancakeCoinMarketCap", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x8d1427a32f0a4c4bf052252e68e7ff1b2ba80c01": { - "address": "0x8d1427a32f0a4c4bf052252e68e7ff1b2ba80c01", - "symbol": "RXT", - "decimals": 18, - "name": "RIMAUNANGIS", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x8d1427a32f0a4c4bf052252e68e7ff1b2ba80c01.png", - "aggregators": ["PancakeCoinMarketCap", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x855c172281e2f0a8ac59248c04cfd47a7f40e8dd": { - "address": "0x855c172281e2f0a8ac59248c04cfd47a7f40e8dd", - "symbol": "SAKA", - "decimals": 18, - "name": "Saka Vault", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x855c172281e2f0a8ac59248c04cfd47a7f40e8dd.png", - "aggregators": ["PancakeCoinGecko", "Rubic", "Rango"], - "occurrences": 3 - }, - "0xb9efd0936e4d4eff2c1e3b50629a3348a9a86942": { - "address": "0xb9efd0936e4d4eff2c1e3b50629a3348a9a86942", - "symbol": "SANTAGROK", - "decimals": 9, - "name": "Santa Grok", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xb9efd0936e4d4eff2c1e3b50629a3348a9a86942.png", - "aggregators": ["PancakeCoinMarketCap", "Rubic", "Rango"], - "occurrences": 3 - }, - "0xef43bf8c6430a615bba48987ae2522e3a3be0a18": { - "address": "0xef43bf8c6430a615bba48987ae2522e3a3be0a18", - "symbol": "SAY", - "decimals": 18, - "name": "SAYCOIN", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xef43bf8c6430a615bba48987ae2522e3a3be0a18.png", - "aggregators": ["PancakeCoinMarketCap", "Rubic", "Sonarwatch"], - "occurrences": 3 - }, - "0x6e02be885fca1138038420fddd4b41c59a8cea6d": { - "address": "0x6e02be885fca1138038420fddd4b41c59a8cea6d", - "symbol": "SBCC", - "decimals": 18, - "name": "Smart Block Chain City", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x6e02be885fca1138038420fddd4b41c59a8cea6d.png", - "aggregators": ["PancakeCoinMarketCap", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x800a25741a414ea6e6e2b382435081a479a8cc3c": { - "address": "0x800a25741a414ea6e6e2b382435081a479a8cc3c", - "symbol": "SEOR", - "decimals": 18, - "name": "SEOR Network", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x800a25741a414ea6e6e2b382435081a479a8cc3c.png", - "aggregators": ["PancakeCoinMarketCap", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x91656750bc364ff38adb51157acbb76f9f5ec2fe": { - "address": "0x91656750bc364ff38adb51157acbb76f9f5ec2fe", - "symbol": "SFZ", - "decimals": 9, - "name": "Safemoon Zilla", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x91656750bc364ff38adb51157acbb76f9f5ec2fe.png", - "aggregators": ["PancakeCoinMarketCap", "Rubic", "Rango"], - "occurrences": 3 - }, - "0xc183062db25fc96325485ea369c979ce881ac0ea": { - "address": "0xc183062db25fc96325485ea369c979ce881ac0ea", - "symbol": "SHIBELON", - "decimals": 4, - "name": "ShibElon", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xc183062db25fc96325485ea369c979ce881ac0ea.png", - "aggregators": ["PancakeCoinMarketCap", "Rubic", "Rango"], - "occurrences": 3 - }, - "0xf224ade71c20f9823e34e0792f72437596b4e28c": { - "address": "0xf224ade71c20f9823e34e0792f72437596b4e28c", - "symbol": "SHIBO", - "decimals": 9, - "name": "ShiBonk", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xf224ade71c20f9823e34e0792f72437596b4e28c.png", - "aggregators": ["PancakeCoinMarketCap", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x2ddb89a10bf2020d8cae7c5d239b6f38be9d91d9": { - "address": "0x2ddb89a10bf2020d8cae7c5d239b6f38be9d91d9", - "symbol": "SHOKI", - "decimals": 18, - "name": "Shoki", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x2ddb89a10bf2020d8cae7c5d239b6f38be9d91d9.png", - "aggregators": ["PancakeCoinMarketCap", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x71f69afed8825d6d9300ba4d74103e1dcc263b93": { - "address": "0x71f69afed8825d6d9300ba4d74103e1dcc263b93", - "symbol": "SIMPLI", - "decimals": 18, - "name": "Simpli Finance", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x71f69afed8825d6d9300ba4d74103e1dcc263b93.png", - "aggregators": ["PancakeCoinMarketCap", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x000851476180bfc499ea68450a5327d21c9b050e": { - "address": "0x000851476180bfc499ea68450a5327d21c9b050e", - "symbol": "SLAM", - "decimals": 18, - "name": "Slam Token", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x000851476180bfc499ea68450a5327d21c9b050e.png", - "aggregators": ["PancakeCoinMarketCap", "Rubic", "Rango"], - "occurrences": 3 - }, - "0xc56dc6c39b2866fa8b6970f94a228ec15be3bcf6": { - "address": "0xc56dc6c39b2866fa8b6970f94a228ec15be3bcf6", - "symbol": "SLEX", - "decimals": 18, - "name": "SLEX Token", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xc56dc6c39b2866fa8b6970f94a228ec15be3bcf6.png", - "aggregators": ["PancakeCoinMarketCap", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x9c2b1b3780a8b36b695f0b2781668664ac1bf25a": { - "address": "0x9c2b1b3780a8b36b695f0b2781668664ac1bf25a", - "symbol": "SPKY", - "decimals": 18, - "name": "SpookyShiba", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x9c2b1b3780a8b36b695f0b2781668664ac1bf25a.png", - "aggregators": ["PancakeCoinMarketCap", "Rubic", "Sonarwatch"], - "occurrences": 3 - }, - "0x56156fb7860d7eb0b4b1a5356c5354b295194a45": { - "address": "0x56156fb7860d7eb0b4b1a5356c5354b295194a45", - "symbol": "SPRT", - "decimals": 18, - "name": "Sportium Token", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x56156fb7860d7eb0b4b1a5356c5354b295194a45.png", - "aggregators": ["PancakeCoinMarketCap", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x57528b45134f09f2e0069334a36a7e14af74745f": { - "address": "0x57528b45134f09f2e0069334a36a7e14af74745f", - "symbol": "SUGAR", - "decimals": 18, - "name": "SugarYield", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x57528b45134f09f2e0069334a36a7e14af74745f.png", - "aggregators": ["PancakeCoinMarketCap", "Rubic", "Rango"], - "occurrences": 3 - }, - "0xcdaba68a050fc4ba5c7e18d37e8be955b1bfbb00": { - "address": "0xcdaba68a050fc4ba5c7e18d37e8be955b1bfbb00", - "symbol": "SWC", - "decimals": 18, - "name": "Swiss Cash Coin", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xcdaba68a050fc4ba5c7e18d37e8be955b1bfbb00.png", - "aggregators": ["PancakeCoinMarketCap", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x98b6e33e77a55732f0e2ce595429144b18ce862c": { - "address": "0x98b6e33e77a55732f0e2ce595429144b18ce862c", - "symbol": "SWCAT", - "decimals": 18, - "name": "Star Wars Cat", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x98b6e33e77a55732f0e2ce595429144b18ce862c.png", - "aggregators": ["PancakeCoinMarketCap", "Rubic", "Sonarwatch"], - "occurrences": 3 - }, - "0x7dc3577681038522d796335e73f2efeccca1878d": { - "address": "0x7dc3577681038522d796335e73f2efeccca1878d", - "symbol": "SWIRLX", - "decimals": 18, - "name": "SwirlToken", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x7dc3577681038522d796335e73f2efeccca1878d.png", - "aggregators": ["PancakeCoinMarketCap", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x53607c4a966f79d3ab1750180e770b0bfd493f46": { - "address": "0x53607c4a966f79d3ab1750180e770b0bfd493f46", - "symbol": "SWP", - "decimals": 18, - "name": "Stepwatch Paradise", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x53607c4a966f79d3ab1750180e770b0bfd493f46.png", - "aggregators": ["PancakeCoinMarketCap", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x958cc5ac2efa569cd9ad9b9b88245e1f038b02be": { - "address": "0x958cc5ac2efa569cd9ad9b9b88245e1f038b02be", - "symbol": "SWU", - "decimals": 18, - "name": "Smart World Union", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x958cc5ac2efa569cd9ad9b9b88245e1f038b02be.png", - "aggregators": ["PancakeCoinMarketCap", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x0a94ea47de185d6376db4cad70123ec8de4f2841": { - "address": "0x0a94ea47de185d6376db4cad70123ec8de4f2841", - "symbol": "SYNAPTICAI", - "decimals": 18, - "name": "Synaptic AI", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x0a94ea47de185d6376db4cad70123ec8de4f2841.png", - "aggregators": ["PancakeCoinMarketCap", "Rubic", "Rango"], - "occurrences": 3 - }, - "0xc98cf0876b23fb1f574be5c59e4217c80b34d327": { - "address": "0xc98cf0876b23fb1f574be5c59e4217c80b34d327", - "symbol": "T99", - "decimals": 18, - "name": "Tethereum", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xc98cf0876b23fb1f574be5c59e4217c80b34d327.png", - "aggregators": ["PancakeCoinGecko", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x26d6e280f9687c463420908740ae59f712419147": { - "address": "0x26d6e280f9687c463420908740ae59f712419147", - "symbol": "TBAKE", - "decimals": 18, - "name": "Bakery Tools", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x26d6e280f9687c463420908740ae59f712419147.png", - "aggregators": ["PancakeCoinMarketCap", "Rubic", "Rango"], - "occurrences": 3 - }, - "0xcf3bb6ac0f6d987a5727e2d15e39c2d6061d5bec": { - "address": "0xcf3bb6ac0f6d987a5727e2d15e39c2d6061d5bec", - "symbol": "TERZ", - "decimals": 18, - "name": "SHELTERZ", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xcf3bb6ac0f6d987a5727e2d15e39c2d6061d5bec.png", - "aggregators": ["PancakeCoinMarketCap", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x049dd7532148826cde956c7b45fec8c30b514052": { - "address": "0x049dd7532148826cde956c7b45fec8c30b514052", - "symbol": "TEX", - "decimals": 18, - "name": "IoTex Pad", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x049dd7532148826cde956c7b45fec8c30b514052.png", - "aggregators": ["PancakeCoinMarketCap", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x3da4f9e86deef7c50a8b167493f26e894edcd7d5": { - "address": "0x3da4f9e86deef7c50a8b167493f26e894edcd7d5", - "symbol": "TIIM", - "decimals": 18, - "name": "TriipMiles", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x3da4f9e86deef7c50a8b167493f26e894edcd7d5.png", - "aggregators": ["PancakeCoinMarketCap", "Rubic", "Rango"], - "occurrences": 3 - }, - "0xc81688968bd1e8da313b8f2936852ec4307cd17f": { - "address": "0xc81688968bd1e8da313b8f2936852ec4307cd17f", - "symbol": "TRUMP", - "decimals": 18, - "name": "PEPE", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xc81688968bd1e8da313b8f2936852ec4307cd17f.png", - "aggregators": ["PancakeCoinMarketCap", "Socket", "Rubic"], - "occurrences": 3 - }, - "0x9efb5bf31c3d950a8531445b7de5881001346268": { - "address": "0x9efb5bf31c3d950a8531445b7de5881001346268", - "symbol": "TSM", - "decimals": 18, - "name": "Tusima Token", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x9efb5bf31c3d950a8531445b7de5881001346268.png", - "aggregators": ["PancakeCoinGecko", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x3a1fb088d52b79c62c8b88238e174c2b0336fd6f": { - "address": "0x3a1fb088d52b79c62c8b88238e174c2b0336fd6f", - "symbol": "TVS", - "decimals": 18, - "name": "TVS", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x3a1fb088d52b79c62c8b88238e174c2b0336fd6f.png", - "aggregators": ["PancakeCoinMarketCap", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x301af3eff0c904dc5ddd06faa808f653474f7fcc": { - "address": "0x301af3eff0c904dc5ddd06faa808f653474f7fcc", - "symbol": "UNB", - "decimals": 18, - "name": "Unbound", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x301af3eff0c904dc5ddd06faa808f653474f7fcc.png", - "aggregators": ["PancakeCoinMarketCap", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x43767d226ef1f5337d10382cd19d64b60a30c5fd": { - "address": "0x43767d226ef1f5337d10382cd19d64b60a30c5fd", - "symbol": "USBT", - "decimals": 18, - "name": "Universal Blockchain", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x43767d226ef1f5337d10382cd19d64b60a30c5fd.png", - "aggregators": ["PancakeCoinMarketCap", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x39dc1f91fee49c03a0db558254707116101518bf": { - "address": "0x39dc1f91fee49c03a0db558254707116101518bf", - "symbol": "UT", - "decimals": 18, - "name": "Fantaverse", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x39dc1f91fee49c03a0db558254707116101518bf.png", - "aggregators": ["PancakeCoinMarketCap", "Rubic", "Rango"], - "occurrences": 3 - }, - "0xe6884e29ffe5c6f68f4958cf201b0e308f982ac9": { - "address": "0xe6884e29ffe5c6f68f4958cf201b0e308f982ac9", - "symbol": "VEGAS", - "decimals": 18, - "name": "Vegasino", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xe6884e29ffe5c6f68f4958cf201b0e308f982ac9.png", - "aggregators": ["PancakeCoinMarketCap", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x6759565574de509b7725abb4680020704b3f404e": { - "address": "0x6759565574de509b7725abb4680020704b3f404e", - "symbol": "VIP", - "decimals": 9, - "name": "VIP", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x6759565574de509b7725abb4680020704b3f404e.png", - "aggregators": ["PancakeCoinMarketCap", "Rubic", "Sonarwatch"], - "occurrences": 3 - }, - "0xabc69f2025bdb12efcdb8fd048d240fff943ca82": { - "address": "0xabc69f2025bdb12efcdb8fd048d240fff943ca82", - "symbol": "VNY", - "decimals": 9, - "name": "Vanity", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xabc69f2025bdb12efcdb8fd048d240fff943ca82.png", - "aggregators": ["PancakeCoinMarketCap", "Rubic", "Sonarwatch"], - "occurrences": 3 - }, - "0xa975be9202ce26dde8bce29034be42bcd4861e36": { - "address": "0xa975be9202ce26dde8bce29034be42bcd4861e36", - "symbol": "VRL", - "decimals": 8, - "name": "Virtual X ", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xa975be9202ce26dde8bce29034be42bcd4861e36.png", - "aggregators": ["PancakeCoinMarketCap", "Rubic", "Rango"], - "occurrences": 3 - }, - "0xbbdac6ca30ba9189c7bf67a1f7160379f7e25835": { - "address": "0xbbdac6ca30ba9189c7bf67a1f7160379f7e25835", - "symbol": "VX", - "decimals": 18, - "name": "ViteX Coin", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xbbdac6ca30ba9189c7bf67a1f7160379f7e25835.png", - "aggregators": ["PancakeCoinMarketCap", "Rubic", "Rango"], - "occurrences": 3 - }, - "0xd0aa796e2160ed260c668e90ac5f237b4ebd4b0d": { - "address": "0xd0aa796e2160ed260c668e90ac5f237b4ebd4b0d", - "symbol": "WAIFU", - "decimals": 18, - "name": "Waifu", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xd0aa796e2160ed260c668e90ac5f237b4ebd4b0d.png", - "aggregators": ["PancakeCoinMarketCap", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x0b1d4c430de9fc309e38826729ac9cff7070d0a5": { - "address": "0x0b1d4c430de9fc309e38826729ac9cff7070d0a5", - "symbol": "WAT", - "decimals": 9, - "name": "Wat BNB", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x0b1d4c430de9fc309e38826729ac9cff7070d0a5.png", - "aggregators": ["PancakeCoinMarketCap", "Rubic", "Sonarwatch"], - "occurrences": 3 - }, - "0xd3987cb8a59e8ef6aab0d95b92254344ed9c3c6f": { - "address": "0xd3987cb8a59e8ef6aab0d95b92254344ed9c3c6f", - "symbol": "WEBFOUR", - "decimals": 18, - "name": "Webfour", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xd3987cb8a59e8ef6aab0d95b92254344ed9c3c6f.png", - "aggregators": ["PancakeCoinMarketCap", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x1e87b1f395a6a61c8dec2933a527680bb723be11": { - "address": "0x1e87b1f395a6a61c8dec2933a527680bb723be11", - "symbol": "WHEN", - "decimals": 9, - "name": "when", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x1e87b1f395a6a61c8dec2933a527680bb723be11.png", - "aggregators": ["PancakeCoinMarketCap", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x6c015277b0f9b8c24b20bd8bbbd29fdb25738a69": { - "address": "0x6c015277b0f9b8c24b20bd8bbbd29fdb25738a69", - "symbol": "WNYC", - "decimals": 18, - "name": "Wrapped NewYorkCoin", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x6c015277b0f9b8c24b20bd8bbbd29fdb25738a69.png", - "aggregators": ["PancakeCoinMarketCap", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x747b1223b23e53070c54df355fac2e198aa54708": { - "address": "0x747b1223b23e53070c54df355fac2e198aa54708", - "symbol": "WSYS", - "decimals": 18, - "name": "Wrapped Syscoin", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x747b1223b23e53070c54df355fac2e198aa54708.png", - "aggregators": ["PancakeCoinMarketCap", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x3764bc0de9b6a68c67929130aaec16b6060cab8c": { - "address": "0x3764bc0de9b6a68c67929130aaec16b6060cab8c", - "symbol": "XIDO", - "decimals": 18, - "name": "XIDO FINANCE", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x3764bc0de9b6a68c67929130aaec16b6060cab8c.png", - "aggregators": ["PancakeCoinMarketCap", "Rubic", "Rango"], - "occurrences": 3 - }, - "0xf3be1a4a47576208c1592cc027087ce154b00672": { - "address": "0xf3be1a4a47576208c1592cc027087ce154b00672", - "symbol": "XIL", - "decimals": 18, - "name": "XIL", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xf3be1a4a47576208c1592cc027087ce154b00672.png", - "aggregators": ["PancakeCoinMarketCap", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x695adae22c14c3a166afeb46f15ab7262c5d5bc2": { - "address": "0x695adae22c14c3a166afeb46f15ab7262c5d5bc2", - "symbol": "XQUOK", - "decimals": 9, - "name": "XQUOK", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x695adae22c14c3a166afeb46f15ab7262c5d5bc2.png", - "aggregators": ["PancakeCoinMarketCap", "Rubic", "Rango"], - "occurrences": 3 - }, - "0xb25583e5e2db32b7fcbffe3f5e8e305c36157e54": { - "address": "0xb25583e5e2db32b7fcbffe3f5e8e305c36157e54", - "symbol": "XRX", - "decimals": 18, - "name": "REX", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xb25583e5e2db32b7fcbffe3f5e8e305c36157e54.png", - "aggregators": ["PancakeCoinMarketCap", "Rubic", "Rango"], - "occurrences": 3 - }, - "0xffe2a166a3ea6dd7bb11b2c48f08f1e4202d4e78": { - "address": "0xffe2a166a3ea6dd7bb11b2c48f08f1e4202d4e78", - "symbol": "XVC", - "decimals": 18, - "name": "Xave Coin", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xffe2a166a3ea6dd7bb11b2c48f08f1e4202d4e78.png", - "aggregators": ["PancakeCoinMarketCap", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x768a62a22b187eb350637e720ebc552d905c0331": { - "address": "0x768a62a22b187eb350637e720ebc552d905c0331", - "symbol": "YMII", - "decimals": 18, - "name": "Young Mids Inspired", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x768a62a22b187eb350637e720ebc552d905c0331.png", - "aggregators": ["PancakeCoinGecko", "Rubic", "Rango"], - "occurrences": 3 - }, - "0xfcadd830ff2d6cf3ad1681e1e8fc5ddce9d59e74": { - "address": "0xfcadd830ff2d6cf3ad1681e1e8fc5ddce9d59e74", - "symbol": "ZADA", - "decimals": 18, - "name": "Zada", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xfcadd830ff2d6cf3ad1681e1e8fc5ddce9d59e74.png", - "aggregators": ["PancakeCoinMarketCap", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x0e8fe6eed5342ea9189d9268d088821f0532fb74": { - "address": "0x0e8fe6eed5342ea9189d9268d088821f0532fb74", - "symbol": "ZCR", - "decimals": 18, - "name": "ZCore Network", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x0e8fe6eed5342ea9189d9268d088821f0532fb74.png", - "aggregators": ["PancakeCoinMarketCap", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x213fd3c787b6c452f50fd91f14e12ddf04a7ab4a": { - "address": "0x213fd3c787b6c452f50fd91f14e12ddf04a7ab4a", - "symbol": "ZDCV2", - "decimals": 18, - "name": "ZodiacsV2", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x213fd3c787b6c452f50fd91f14e12ddf04a7ab4a.png", - "aggregators": ["PancakeCoinMarketCap", "Rubic", "Rango"], - "occurrences": 3 - }, - "0xf226432a5f49d595def3a3c51c7210b61f0aef2d": { - "address": "0xf226432a5f49d595def3a3c51c7210b61f0aef2d", - "symbol": "ZENQ", - "decimals": 18, - "name": "ZENQIRA", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xf226432a5f49d595def3a3c51c7210b61f0aef2d.png", - "aggregators": ["PancakeCoinGecko", "Rubic", "Rango"], - "occurrences": 3 - }, - "0xe9cba5d3a0505cbbee0154be49b1d8eb68d392b3": { - "address": "0xe9cba5d3a0505cbbee0154be49b1d8eb68d392b3", - "symbol": "ZUSHI", - "decimals": 18, - "name": "ZUSHI", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xe9cba5d3a0505cbbee0154be49b1d8eb68d392b3.png", - "aggregators": ["PancakeCoinMarketCap", "Rubic", "Sonarwatch"], - "occurrences": 3 - }, - "0x85f41e668499c91ee47f7629507ad1acf96ee327": { - "address": "0x85f41e668499c91ee47f7629507ad1acf96ee327", - "symbol": "ZUZU", - "decimals": 18, - "name": "ZUZU", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x85f41e668499c91ee47f7629507ad1acf96ee327.png", - "aggregators": ["PancakeCoinMarketCap", "Rubic", "Rango"], - "occurrences": 3 - }, - "0xf625069dce62df95b4910f83446954b871f0fc4f": { - "address": "0xf625069dce62df95b4910f83446954b871f0fc4f", - "symbol": "AMT", - "decimals": 18, - "name": "Amazy Move Token", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xf625069dce62df95b4910f83446954b871f0fc4f.png", - "aggregators": ["PancakeCoinMarketCap", "Socket", "Rubic"], - "occurrences": 3 - }, - "0xa9ea4b786ee5b7a733c035564bfd9341a4c9fc1e": { - "address": "0xa9ea4b786ee5b7a733c035564bfd9341a4c9fc1e", - "symbol": "APE", - "decimals": 18, - "name": "APEcoin", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xa9ea4b786ee5b7a733c035564bfd9341a4c9fc1e.png", - "aggregators": ["PancakeCoinMarketCap", "Socket", "Rubic"], - "occurrences": 3 - }, - "0x0bc89aa98ad94e6798ec822d0814d934ccd0c0ce": { - "address": "0x0bc89aa98ad94e6798ec822d0814d934ccd0c0ce", - "symbol": "BATH", - "decimals": 18, - "name": "Battle Hero", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x0bc89aa98ad94e6798ec822d0814d934ccd0c0ce.png", - "aggregators": ["PancakeExtended", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x667bebff5cda3c4a460b514ab478da0a8cf80910": { - "address": "0x667bebff5cda3c4a460b514ab478da0a8cf80910", - "symbol": "BEST", - "decimals": 18, - "name": "Bitcoin And Ethereum Standard Token", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x667bebff5cda3c4a460b514ab478da0a8cf80910.png", - "aggregators": ["PancakeCoinMarketCap", "Socket", "Rubic"], - "occurrences": 3 - }, - "0x0aec1e4ce3cd3ccee64ff1a2ee47770fd2b0d8d3": { - "address": "0x0aec1e4ce3cd3ccee64ff1a2ee47770fd2b0d8d3", - "symbol": "CAPY", - "decimals": 18, - "name": "Capybara Coin", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x0aec1e4ce3cd3ccee64ff1a2ee47770fd2b0d8d3.png", - "aggregators": ["PancakeCoinMarketCap", "Socket", "Rubic"], - "occurrences": 3 - }, - "0x00f9928315196cdfbee0205520a8ebe60d9172f0": { - "address": "0x00f9928315196cdfbee0205520a8ebe60d9172f0", - "symbol": "DEVE", - "decimals": 18, - "name": "Develocity", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x00f9928315196cdfbee0205520a8ebe60d9172f0.png", - "aggregators": ["PancakeCoinMarketCap", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x44a21b3577924dcd2e9c81a3347d204c36a55466": { - "address": "0x44a21b3577924dcd2e9c81a3347d204c36a55466", - "symbol": "EGO", - "decimals": 18, - "name": "Paysenger EGO", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x44a21b3577924dcd2e9c81a3347d204c36a55466.png", - "aggregators": ["PancakeExtended", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x4f39c3319188a723003670c3f9b9e7ef991e52f3": { - "address": "0x4f39c3319188a723003670c3f9b9e7ef991e52f3", - "symbol": "FIGHT", - "decimals": 18, - "name": "FIGHT", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x4f39c3319188a723003670c3f9b9e7ef991e52f3.png", - "aggregators": ["PancakeExtended", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x4aadad81487c3fadd9f162b851e6a61b729200cb": { - "address": "0x4aadad81487c3fadd9f162b851e6a61b729200cb", - "symbol": "FLOKI", - "decimals": 18, - "name": "Shiba Floki Inu", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x4aadad81487c3fadd9f162b851e6a61b729200cb.png", - "aggregators": ["PancakeCoinMarketCap", "Socket", "Rubic"], - "occurrences": 3 - }, - "0x0965d7717068ff4f8f302556316f7b8e8661e485": { - "address": "0x0965d7717068ff4f8f302556316f7b8e8661e485", - "symbol": "GEC", - "decimals": 9, - "name": "Green Energy Coin - CNES", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x0965d7717068ff4f8f302556316f7b8e8661e485.png", - "aggregators": ["PancakeCoinMarketCap", "Socket", "Rubic"], - "occurrences": 3 - }, - "0xb0f2939a1c0e43683e5954c9fe142f7df9f8d967": { - "address": "0xb0f2939a1c0e43683e5954c9fe142f7df9f8d967", - "symbol": "GEN", - "decimals": 18, - "name": "Gen Token", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xb0f2939a1c0e43683e5954c9fe142f7df9f8d967.png", - "aggregators": ["PancakeCoinMarketCap", "Socket", "Rubic"], - "occurrences": 3 - }, - "0x639fc0c006bd7050e2c359295b41a79cb28694ba": { - "address": "0x639fc0c006bd7050e2c359295b41a79cb28694ba", - "symbol": "GSC", - "decimals": 18, - "name": "Gunstar Metaverse Currency", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x639fc0c006bd7050e2c359295b41a79cb28694ba.png", - "aggregators": ["PancakeCoinMarketCap", "Socket", "Rubic"], - "occurrences": 3 - }, - "0x7edc0ec89f987ecd85617b891c44fe462a325869": { - "address": "0x7edc0ec89f987ecd85617b891c44fe462a325869", - "symbol": "GST", - "decimals": 18, - "name": "Gunstar Metaverse", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x7edc0ec89f987ecd85617b891c44fe462a325869.png", - "aggregators": ["PancakeCoinMarketCap", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x5659bc175f83a609f0ff38d7e2b15533e7d14406": { - "address": "0x5659bc175f83a609f0ff38d7e2b15533e7d14406", - "symbol": "JOE", - "decimals": 9, - "name": "Joe Coin", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x5659bc175f83a609f0ff38d7e2b15533e7d14406.png", - "aggregators": ["PancakeCoinMarketCap", "Socket", "Rubic"], - "occurrences": 3 - }, - "0x4e7ae924fd9a5d60b56be486b2900efe0c6a9ca7": { - "address": "0x4e7ae924fd9a5d60b56be486b2900efe0c6a9ca7", - "symbol": "LOT", - "decimals": 9, - "name": "Lottery Token", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x4e7ae924fd9a5d60b56be486b2900efe0c6a9ca7.png", - "aggregators": ["PancakeCoinMarketCap", "Socket", "Rubic"], - "occurrences": 3 - }, - "0x668db7aa38eac6b40c9d13dbe61361dc4c4611d1": { - "address": "0x668db7aa38eac6b40c9d13dbe61361dc4c4611d1", - "symbol": "MDT", - "decimals": 18, - "name": "Measurable Data Token", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x668db7aa38eac6b40c9d13dbe61361dc4c4611d1.png", - "aggregators": ["PancakeCoinMarketCap", "Socket", "Rubic"], - "occurrences": 3 - }, - "0x994517e000aa3f117e7ad61b0e2336c76b4fd94a": { - "address": "0x994517e000aa3f117e7ad61b0e2336c76b4fd94a", - "symbol": "MTDR", - "decimals": 18, - "name": "Matador Token", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x994517e000aa3f117e7ad61b0e2336c76b4fd94a.png", - "aggregators": ["PancakeCoinMarketCap", "Socket", "Rubic"], - "occurrences": 3 - }, - "0x8ff07f92f4f432f6874a023e9bc49093a35dd726": { - "address": "0x8ff07f92f4f432f6874a023e9bc49093a35dd726", - "symbol": "NEXBOX", - "decimals": 9, - "name": "NexBox", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x8ff07f92f4f432f6874a023e9bc49093a35dd726.png", - "aggregators": ["PancakeCoinMarketCap", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x1ba8c21c623c843cd4c60438d70e7ad50f363fbb": { - "address": "0x1ba8c21c623c843cd4c60438d70e7ad50f363fbb", - "symbol": "SACT", - "decimals": 18, - "name": "srnArtGallery", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x1ba8c21c623c843cd4c60438d70e7ad50f363fbb.png", - "aggregators": ["PancakeCoinMarketCap", "Socket", "Rubic"], - "occurrences": 3 - }, - "0x46f275321107d7c49cf80216371abf1a1599c36f": { - "address": "0x46f275321107d7c49cf80216371abf1a1599c36f", - "symbol": "TGDAO", - "decimals": 18, - "name": "TGDAO", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x46f275321107d7c49cf80216371abf1a1599c36f.png", - "aggregators": ["PancakeCoinMarketCap", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x05ad6e30a855be07afa57e08a4f30d00810a402e": { - "address": "0x05ad6e30a855be07afa57e08a4f30d00810a402e", - "symbol": "TINC", - "decimals": 18, - "name": "Tiny Coin", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x05ad6e30a855be07afa57e08a4f30d00810a402e.png", - "aggregators": ["PancakeExtended", "Rubic", "Rango"], - "occurrences": 3 - }, - "0xd2ddfba7bb12f6e70c2aab6b6bf9edaef42ed22f": { - "address": "0xd2ddfba7bb12f6e70c2aab6b6bf9edaef42ed22f", - "symbol": "UBU", - "decimals": 18, - "name": "UBUToken", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xd2ddfba7bb12f6e70c2aab6b6bf9edaef42ed22f.png", - "aggregators": ["PancakeCoinMarketCap", "Socket", "Rubic"], - "occurrences": 3 - }, - "0xfdd2374be7ae7a71138b9f6b93d9ef034a49edb6": { - "address": "0xfdd2374be7ae7a71138b9f6b93d9ef034a49edb6", - "symbol": "VRGW", - "decimals": 18, - "name": "Virtual Reality Game World", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xfdd2374be7ae7a71138b9f6b93d9ef034a49edb6.png", - "aggregators": ["PancakeCoinMarketCap", "Socket", "Rubic"], - "occurrences": 3 - }, - "0xa75d9ca2a0a1d547409d82e1b06618ec284a2ced": { - "address": "0xa75d9ca2a0a1d547409d82e1b06618ec284a2ced", - "symbol": "WMX", - "decimals": 18, - "name": "Wombex Token", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xa75d9ca2a0a1d547409d82e1b06618ec284a2ced.png", - "aggregators": ["PancakeExtended", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x2c44b726adf1963ca47af88b284c06f30380fc78": { - "address": "0x2c44b726adf1963ca47af88b284c06f30380fc78", - "symbol": "PEOPLE", - "decimals": 18, - "name": "ConstitutionDAO", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x2c44b726adf1963ca47af88b284c06f30380fc78.png", - "aggregators": ["PancakeExtended", "Socket", "Rubic"], - "occurrences": 3 - }, - "0x5867cbf2a3fa758c063e8a2deeaf0de8d71c3ef4": { - "address": "0x5867cbf2a3fa758c063e8a2deeaf0de8d71c3ef4", - "symbol": "BUTTER", - "decimals": 18, - "name": "BreadnButter", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x5867cbf2a3fa758c063e8a2deeaf0de8d71c3ef4.png", - "aggregators": ["PancakeExtended", "Socket", "Rango"], - "occurrences": 3 - }, - "0xecf2bcb2342d8157d4fb4f4bdc1edf74fbf759b3": { - "address": "0xecf2bcb2342d8157d4fb4f4bdc1edf74fbf759b3", - "symbol": "MLISTA", - "decimals": 18, - "name": "mLista Token", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xecf2bcb2342d8157d4fb4f4bdc1edf74fbf759b3.png", - "aggregators": ["PancakeExtended", "LiFi", "Rango"], - "occurrences": 3 - }, - "0xdb6f1f098b55e36b036603c8e54663a8d907d6e1": { - "address": "0xdb6f1f098b55e36b036603c8e54663a8d907d6e1", - "symbol": "BEE", - "decimals": 18, - "name": "BEE", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xdb6f1f098b55e36b036603c8e54663a8d907d6e1.png", - "aggregators": ["PancakeExtended", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x308f4f8979285416d21876843ee67e79b086fa3a": { - "address": "0x308f4f8979285416d21876843ee67e79b086fa3a", - "symbol": "DESCI", - "decimals": 18, - "name": "Descipher Fund", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x308f4f8979285416d21876843ee67e79b086fa3a.png", - "aggregators": ["PancakeExtended", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x647a50540f5a1058b206f5a3eb17f56f29127f53": { - "address": "0x647a50540f5a1058b206f5a3eb17f56f29127f53", - "symbol": "SOLVBTC.DLP", - "decimals": 18, - "name": "SolvBTC DEX LP", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x647a50540f5a1058b206f5a3eb17f56f29127f53.png", - "aggregators": ["PancakeExtended", "LiFi", "Rango"], - "occurrences": 3 - }, - "0xa22159faca8bf5c57a48888a2d4ddafc88e4ddeb": { - "address": "0xa22159faca8bf5c57a48888a2d4ddafc88e4ddeb", - "symbol": "AIO", - "decimals": 18, - "name": "AIO", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xa22159faca8bf5c57a48888a2d4ddafc88e4ddeb.png", - "aggregators": ["PancakeExtended", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x79f294ae9c9257c1a8070fd8ed66bace24bc39d2": { - "address": "0x79f294ae9c9257c1a8070fd8ed66bace24bc39d2", - "symbol": "BIG", - "decimals": 18, - "name": "BIGCOUSIN", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x79f294ae9c9257c1a8070fd8ed66bace24bc39d2.png", - "aggregators": ["PancakeExtended", "LiFi", "Rango"], - "occurrences": 3 - }, - "0xf324791c3a08cc8cd9a3d77ddc4681276bdf4444": { - "address": "0xf324791c3a08cc8cd9a3d77ddc4681276bdf4444", - "symbol": "UNIART", - "decimals": 18, - "name": "UNIART", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xf324791c3a08cc8cd9a3d77ddc4681276bdf4444.png", - "aggregators": ["PancakeExtended", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x31d0e332ccef98b583e40e0cefbb7502c9a6b3f8": { - "address": "0x31d0e332ccef98b583e40e0cefbb7502c9a6b3f8", - "symbol": "NYM", - "decimals": 6, - "name": "NYM", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x31d0e332ccef98b583e40e0cefbb7502c9a6b3f8.png", - "aggregators": ["PancakeExtended", "LiFi", "Rango"], - "occurrences": 3 - }, - "0x4a61e3217d48b6361b87f598256a8ef71ac913f7": { - "address": "0x4a61e3217d48b6361b87f598256a8ef71ac913f7", - "symbol": "RWAL", - "decimals": 18, - "name": "RWAL", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x4a61e3217d48b6361b87f598256a8ef71ac913f7.png", - "aggregators": ["PancakeExtended", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x7997fc068fc3803dc35f0ae99ab61ba0b272165e": { - "address": "0x7997fc068fc3803dc35f0ae99ab61ba0b272165e", - "symbol": "WABA", - "decimals": 18, - "name": "WABA Token", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x7997fc068fc3803dc35f0ae99ab61ba0b272165e.png", - "aggregators": ["PancakeExtended", "LiFi", "Rango"], - "occurrences": 3 - }, - "0xd4058218632112de109846a2952be102d0330ab3": { - "address": "0xd4058218632112de109846a2952be102d0330ab3", - "symbol": "XNAP", - "decimals": 8, - "name": "SNAPX", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xd4058218632112de109846a2952be102d0330ab3.png", - "aggregators": ["PancakeExtended", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x8410fea2dd13c1798977ff4d55a9e1835f54f216": { - "address": "0x8410fea2dd13c1798977ff4d55a9e1835f54f216", - "symbol": "PIGGY", - "decimals": 18, - "name": "Piggycell", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x8410fea2dd13c1798977ff4d55a9e1835f54f216.png", - "aggregators": ["PancakeExtended", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x1775504c5873e179ea2f8abfce3861ec74d159bc": { - "address": "0x1775504c5873e179ea2f8abfce3861ec74d159bc", - "symbol": "CASH+", - "decimals": 18, - "name": "CashPlus", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x1775504c5873e179ea2f8abfce3861ec74d159bc.png", - "aggregators": ["PancakeExtended", "LiFi", "Rango"], - "occurrences": 3 - }, - "0x8105743e8a19c915a604d7d9e7aa3a060a4c2c32": { - "address": "0x8105743e8a19c915a604d7d9e7aa3a060a4c2c32", - "symbol": "ARTX", - "decimals": 18, - "name": "Ultiland", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x8105743e8a19c915a604d7d9e7aa3a060a4c2c32.png", - "aggregators": ["PancakeExtended", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x76cc9e532bb6803efc3d7766ac16a884a015951f": { - "address": "0x76cc9e532bb6803efc3d7766ac16a884a015951f", - "symbol": "$AIAV", - "decimals": 18, - "name": "AI AVatar", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x76cc9e532bb6803efc3d7766ac16a884a015951f.png", - "aggregators": ["PancakeExtended", "Rubic", "Rango"], - "occurrences": 3 - }, - "0xf9c6e80e9a5807a1214a79449009b48104f94444": { - "address": "0xf9c6e80e9a5807a1214a79449009b48104f94444", - "symbol": "黑马", - "decimals": 18, - "name": "黑马", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xf9c6e80e9a5807a1214a79449009b48104f94444.png", - "aggregators": ["PancakeExtended", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x1f1a06ec00c0b4505526fb928ad6a56e6e888888": { - "address": "0x1f1a06ec00c0b4505526fb928ad6a56e6e888888", - "symbol": "DEVAI", - "decimals": 18, - "name": "ClawDEV", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x1f1a06ec00c0b4505526fb928ad6a56e6e888888.png", - "aggregators": ["PancakeExtended", "LiFi", "Rango"], - "occurrences": 3 - }, - "0x7d28276933d6aa0ef1513f8b5e18dc492befefea": { - "address": "0x7d28276933d6aa0ef1513f8b5e18dc492befefea", - "symbol": "MBC", - "decimals": 18, - "name": "Mining Base Coin", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x7d28276933d6aa0ef1513f8b5e18dc492befefea.png", - "aggregators": ["Metamask", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x5ca718e2c0f2e873b8de38b02ad0497e8ac38ecb": { - "address": "0x5ca718e2c0f2e873b8de38b02ad0497e8ac38ecb", - "symbol": "C-DAO", - "decimals": 18, - "name": "Cyber-DAO", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x5ca718e2c0f2e873b8de38b02ad0497e8ac38ecb.png", - "aggregators": ["LiFi", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x13616f44ba82d63c8c0dc3ff843d36a8ec1c05a9": { - "address": "0x13616f44ba82d63c8c0dc3ff843d36a8ec1c05a9", - "symbol": "AVA", - "decimals": 18, - "name": "Travala.com Token", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x13616f44ba82d63c8c0dc3ff843d36a8ec1c05a9.png", - "aggregators": ["Socket", "Rubic", "Rango", "BinanceDex"], - "occurrences": 4 - }, - "0xd9e90df21f4229249e8841580cde7048bf935710": { - "address": "0xd9e90df21f4229249e8841580cde7048bf935710", - "symbol": "SHIELD", - "decimals": 18, - "name": "Shield protocol", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xd9e90df21f4229249e8841580cde7048bf935710.png", - "aggregators": ["Rubic", "Rango", "Sonarwatch"], - "occurrences": 3 - }, - "0x4ecec618ce8eeb94d99f970f0d9b2fd031986fd5": { - "address": "0x4ecec618ce8eeb94d99f970f0d9b2fd031986fd5", - "symbol": "BNOM", - "decimals": 9, - "name": "BitNomad", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x4ecec618ce8eeb94d99f970f0d9b2fd031986fd5.png", - "aggregators": ["Rubic", "Rango", "Sonarwatch"], - "occurrences": 3 - }, - "0x554b5daea72b2e2185147374954cb4721e20f4e1": { - "address": "0x554b5daea72b2e2185147374954cb4721e20f4e1", - "symbol": "BROC", - "decimals": 18, - "name": "Broccoli", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x554b5daea72b2e2185147374954cb4721e20f4e1.png", - "aggregators": ["Rubic", "Rango", "Sonarwatch"], - "occurrences": 3 - }, - "0xc1f0768587dc889e494c171b155c60b4e9a13f08": { - "address": "0xc1f0768587dc889e494c171b155c60b4e9a13f08", - "symbol": "AIG", - "decimals": 18, - "name": "A.I Genesis", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xc1f0768587dc889e494c171b155c60b4e9a13f08.png", - "aggregators": ["Rubic", "Rango", "Sonarwatch"], - "occurrences": 3 - }, - "0x45c1e431e255810824a508dcb4ff1f82c8a4662e": { - "address": "0x45c1e431e255810824a508dcb4ff1f82c8a4662e", - "symbol": "ASIX", - "decimals": 18, - "name": "ASIX", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x45c1e431e255810824a508dcb4ff1f82c8a4662e.png", - "aggregators": ["Rubic", "Rango", "Sonarwatch"], - "occurrences": 3 - }, - "0xba0552504704e1b2bcc98169cbd025bd37f87532": { - "address": "0xba0552504704e1b2bcc98169cbd025bd37f87532", - "symbol": "DUMP", - "decimals": 18, - "name": "Dumpling", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xba0552504704e1b2bcc98169cbd025bd37f87532.png", - "aggregators": ["Rubic", "Rango", "Sonarwatch"], - "occurrences": 3 - }, - "0x355758684251605af26dbec0fa672af174c384ab": { - "address": "0x355758684251605af26dbec0fa672af174c384ab", - "symbol": "DEGENT", - "decimals": 18, - "name": "Degent", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x355758684251605af26dbec0fa672af174c384ab.png", - "aggregators": ["Rubic", "Rango", "Sonarwatch"], - "occurrences": 3 - }, - "0xe1b8f4053de96ab94513864f409ac72d752a3703": { - "address": "0xe1b8f4053de96ab94513864f409ac72d752a3703", - "symbol": "FTPXBT", - "decimals": 18, - "name": "FOR THE PEOPLE XBT", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xe1b8f4053de96ab94513864f409ac72d752a3703.png", - "aggregators": ["Rubic", "Rango", "Sonarwatch"], - "occurrences": 3 - }, - "0x18ebb8a30dd304c306b5296518fcb0fd31372198": { - "address": "0x18ebb8a30dd304c306b5296518fcb0fd31372198", - "symbol": "BOOK", - "decimals": 18, - "name": "Bscbook", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x18ebb8a30dd304c306b5296518fcb0fd31372198.png", - "aggregators": ["Rubic", "Rango", "Sonarwatch"], - "occurrences": 3 - }, - "0xdfa7e9c060dc5292c881eb48cfe26b27aef5f0d9": { - "address": "0xdfa7e9c060dc5292c881eb48cfe26b27aef5f0d9", - "symbol": "BNBGPT", - "decimals": 18, - "name": "BNBGPT", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xdfa7e9c060dc5292c881eb48cfe26b27aef5f0d9.png", - "aggregators": ["Rubic", "Rango", "Sonarwatch"], - "occurrences": 3 - }, - "0x9804021fab007caf29c8d75e3becacec7860de30": { - "address": "0x9804021fab007caf29c8d75e3becacec7860de30", - "symbol": "EYE", - "decimals": 18, - "name": "THE EYE", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x9804021fab007caf29c8d75e3becacec7860de30.png", - "aggregators": ["Rubic", "Rango", "Sonarwatch"], - "occurrences": 3 - }, - "0x0781552e3c597b14e146b8589f322a751e90e904": { - "address": "0x0781552e3c597b14e146b8589f322a751e90e904", - "symbol": "FUXI", - "decimals": 18, - "name": "Fuxi Dragon", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x0781552e3c597b14e146b8589f322a751e90e904.png", - "aggregators": ["Rubic", "Rango", "Sonarwatch"], - "occurrences": 3 - }, - "0xaa52167bd14b1b22c74a80390469f796f1f82632": { - "address": "0xaa52167bd14b1b22c74a80390469f796f1f82632", - "symbol": "GRD", - "decimals": 18, - "name": "Grade", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xaa52167bd14b1b22c74a80390469f796f1f82632.png", - "aggregators": ["Rubic", "Rango", "Sonarwatch"], - "occurrences": 3 - }, - "0x00f2b1d536485f3493fe7609249128027951d87e": { - "address": "0x00f2b1d536485f3493fe7609249128027951d87e", - "symbol": "GROKAI", - "decimals": 9, - "name": "Grok Ai", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x00f2b1d536485f3493fe7609249128027951d87e.png", - "aggregators": ["Rubic", "Rango", "Sonarwatch"], - "occurrences": 3 - }, - "0xa0600d65366e16a3c27faecbb110eb2e150e48e1": { - "address": "0xa0600d65366e16a3c27faecbb110eb2e150e48e1", - "symbol": "INSN", - "decimals": 18, - "name": "Industry Sonic", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xa0600d65366e16a3c27faecbb110eb2e150e48e1.png", - "aggregators": ["Rubic", "Rango", "Sonarwatch"], - "occurrences": 3 - }, - "0xb00052f9b6df3c88c56451d54799c0848e0e3778": { - "address": "0xb00052f9b6df3c88c56451d54799c0848e0e3778", - "symbol": "IVY", - "decimals": 6, - "name": "Ivy Live", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xb00052f9b6df3c88c56451d54799c0848e0e3778.png", - "aggregators": ["Rubic", "Rango", "Sonarwatch"], - "occurrences": 3 - }, - "0x700735317e1af4687c17f5c30e11a74778395922": { - "address": "0x700735317e1af4687c17f5c30e11a74778395922", - "symbol": "MCC", - "decimals": 18, - "name": "MeshChain Coin", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x700735317e1af4687c17f5c30e11a74778395922.png", - "aggregators": ["Rubic", "Rango", "Sonarwatch"], - "occurrences": 3 - }, - "0xfe7364b31c9a366407986d0cbdfa8a599757dda5": { - "address": "0xfe7364b31c9a366407986d0cbdfa8a599757dda5", - "symbol": "NIMO", - "decimals": 18, - "name": "NimoAI", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xfe7364b31c9a366407986d0cbdfa8a599757dda5.png", - "aggregators": ["Rubic", "Rango", "Sonarwatch"], - "occurrences": 3 - }, - "0x2bd236ad144753bd5839d82c46ee2c2225b9e0c0": { - "address": "0x2bd236ad144753bd5839d82c46ee2c2225b9e0c0", - "symbol": "TSM", - "decimals": 18, - "name": "Tusima Network", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x2bd236ad144753bd5839d82c46ee2c2225b9e0c0.png", - "aggregators": ["Rubic", "Rango", "Sonarwatch"], - "occurrences": 3 - }, - "0x9cd3ffb31c0bae5d0771ef48e735dc1ca2333275": { - "address": "0x9cd3ffb31c0bae5d0771ef48e735dc1ca2333275", - "symbol": "UNI2", - "decimals": 18, - "name": "Uni2token", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x9cd3ffb31c0bae5d0771ef48e735dc1ca2333275.png", - "aggregators": ["Rubic", "Rango", "Sonarwatch"], - "occurrences": 3 - }, - "0xea40ba42ee2e35f36eb63770f23a96ec47e14091": { - "address": "0xea40ba42ee2e35f36eb63770f23a96ec47e14091", - "symbol": "VERB", - "decimals": 18, - "name": "Verb Ai", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xea40ba42ee2e35f36eb63770f23a96ec47e14091.png", - "aggregators": ["Rubic", "Rango", "Sonarwatch"], - "occurrences": 3 - }, - "0x0fc036cfd300519170f90b21b92a4349d2dabbae": { - "address": "0x0fc036cfd300519170f90b21b92a4349d2dabbae", - "symbol": "TNT", - "decimals": 18, - "name": "TrinityPad", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x0fc036cfd300519170f90b21b92a4349d2dabbae.png", - "aggregators": ["Rubic", "Rango", "Sonarwatch"], - "occurrences": 3 - }, - "0x6aa6eec5ba2e7ab3ae7d9807c7a13c1fecf55da7": { - "address": "0x6aa6eec5ba2e7ab3ae7d9807c7a13c1fecf55da7", - "symbol": "WLSC", - "decimals": 18, - "name": "Westland Smart City", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x6aa6eec5ba2e7ab3ae7d9807c7a13c1fecf55da7.png", - "aggregators": ["Rubic", "Rango", "Sonarwatch"], - "occurrences": 3 - }, - "0x7ed9054c48088bb8cfc5c5fbc32775b9455a13f7": { - "address": "0x7ed9054c48088bb8cfc5c5fbc32775b9455a13f7", - "symbol": "WEB3D", - "decimals": 18, - "name": "WEB3 DECISION", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x7ed9054c48088bb8cfc5c5fbc32775b9455a13f7.png", - "aggregators": ["Rubic", "Rango", "Sonarwatch"], - "occurrences": 3 - }, - "0xdaecc7ddd6df9c7840018d4d4fdf9599e101481c": { - "address": "0xdaecc7ddd6df9c7840018d4d4fdf9599e101481c", - "symbol": "XHUNT", - "decimals": 18, - "name": "XHUNT", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xdaecc7ddd6df9c7840018d4d4fdf9599e101481c.png", - "aggregators": ["Rubic", "Rango", "Sonarwatch"], - "occurrences": 3 - }, - "0x7212088a11b4d8f6fc90fbb3dfe793b45dd72323": { - "address": "0x7212088a11b4d8f6fc90fbb3dfe793b45dd72323", - "symbol": "BGME", - "decimals": 18, - "name": "Backed GameStop Corp", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x7212088a11b4d8f6fc90fbb3dfe793b45dd72323.png", - "aggregators": ["Rubic", "Rango", "Sonarwatch"], - "occurrences": 3 - }, - "0xa5b000d453143b357dba63f4ee83f2f6fda832b8": { - "address": "0xa5b000d453143b357dba63f4ee83f2f6fda832b8", - "symbol": "MET", - "decimals": 18, - "name": "MetYa", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xa5b000d453143b357dba63f4ee83f2f6fda832b8.png", - "aggregators": ["Rubic", "Rango", "Sonarwatch"], - "occurrences": 3 - }, - "0x2eaf707440974deba88f5b2425cadcc4821aa954": { - "address": "0x2eaf707440974deba88f5b2425cadcc4821aa954", - "symbol": "AZC", - "decimals": 18, - "name": "AZCoiner", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x2eaf707440974deba88f5b2425cadcc4821aa954.png", - "aggregators": ["Rubic", "Rango", "Sonarwatch"], - "occurrences": 3 - }, - "0x4341bb2200176f89eb90eac4fd6cfe958e206005": { - "address": "0x4341bb2200176f89eb90eac4fd6cfe958e206005", - "symbol": "EAFIN", - "decimals": 18, - "name": "Eafin", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x4341bb2200176f89eb90eac4fd6cfe958e206005.png", - "aggregators": ["Rubic", "Rango", "Sonarwatch"], - "occurrences": 3 - }, - "0x6d8058cdaa406ea4924d47b48f2ef5f18d35637c": { - "address": "0x6d8058cdaa406ea4924d47b48f2ef5f18d35637c", - "symbol": "GRAB", - "decimals": 18, - "name": "GRABWAY", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x6d8058cdaa406ea4924d47b48f2ef5f18d35637c.png", - "aggregators": ["Rubic", "Rango", "Sonarwatch"], - "occurrences": 3 - }, - "0x77ed4e6d616bcd773328d61cf2690225e4cca238": { - "address": "0x77ed4e6d616bcd773328d61cf2690225e4cca238", - "symbol": "MDOGE", - "decimals": 18, - "name": "Mars Doge", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x77ed4e6d616bcd773328d61cf2690225e4cca238.png", - "aggregators": ["Rubic", "Rango", "Sonarwatch"], - "occurrences": 3 - }, - "0x578a30d32cc99468ab27a0218dbe52f1b61b0f20": { - "address": "0x578a30d32cc99468ab27a0218dbe52f1b61b0f20", - "symbol": "NOEL", - "decimals": 18, - "name": "AskNoel", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x578a30d32cc99468ab27a0218dbe52f1b61b0f20.png", - "aggregators": ["Rubic", "Rango", "Sonarwatch"], - "occurrences": 3 - }, - "0x74a907ab83f77a79c6e5dfbe7e330d557704d74c": { - "address": "0x74a907ab83f77a79c6e5dfbe7e330d557704d74c", - "symbol": "KEKIUS", - "decimals": 9, - "name": "Kekius Maximus-BSC", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x74a907ab83f77a79c6e5dfbe7e330d557704d74c.png", - "aggregators": ["Rubic", "Rango", "Sonarwatch"], - "occurrences": 3 - }, - "0x095a7e0d6f3c9201fa867799e14221ea8b33562e": { - "address": "0x095a7e0d6f3c9201fa867799e14221ea8b33562e", - "symbol": "TOAD", - "decimals": 9, - "name": "TOAD", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x095a7e0d6f3c9201fa867799e14221ea8b33562e.png", - "aggregators": ["Rubic", "Rango", "Sonarwatch"], - "occurrences": 3 - }, - "0x910f42f204bd998fa271ca8aa07ce359c733b898": { - "address": "0x910f42f204bd998fa271ca8aa07ce359c733b898", - "symbol": "VZ", - "decimals": 18, - "name": "Vault Zero", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x910f42f204bd998fa271ca8aa07ce359c733b898.png", - "aggregators": ["Rubic", "Rango", "Sonarwatch"], - "occurrences": 3 - }, - "0x96be0fbbfb126063eb27bea4f34e096fa661fc9e": { - "address": "0x96be0fbbfb126063eb27bea4f34e096fa661fc9e", - "symbol": "HINAGI", - "decimals": 18, - "name": "Hinagi", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x96be0fbbfb126063eb27bea4f34e096fa661fc9e.png", - "aggregators": ["Rubic", "Rango", "Sonarwatch"], - "occurrences": 3 - }, - "0x1a72064361894f185782bdbb046bc2af94ab6abe": { - "address": "0x1a72064361894f185782bdbb046bc2af94ab6abe", - "symbol": "DUCK", - "decimals": 9, - "name": "DUCK", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x1a72064361894f185782bdbb046bc2af94ab6abe.png", - "aggregators": ["Rubic", "Rango", "Sonarwatch"], - "occurrences": 3 - }, - "0xf86ef0abe36c7aa4066408479acf37decdb739ec": { - "address": "0xf86ef0abe36c7aa4066408479acf37decdb739ec", - "symbol": "GMUBARAK", - "decimals": 18, - "name": "Ghibli Mubarak", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xf86ef0abe36c7aa4066408479acf37decdb739ec.png", - "aggregators": ["Rubic", "Rango", "Sonarwatch"], - "occurrences": 3 - }, - "0x39878e8a41af06d99e605c1e65eea755128f05f1": { - "address": "0x39878e8a41af06d99e605c1e65eea755128f05f1", - "symbol": "MANYU", - "decimals": 18, - "name": "MANYU", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x39878e8a41af06d99e605c1e65eea755128f05f1.png", - "aggregators": ["Rubic", "Rango", "Sonarwatch"], - "occurrences": 3 - }, - "0x2f2af9134f617bf4826848e0aac1e8865544dca2": { - "address": "0x2f2af9134f617bf4826848e0aac1e8865544dca2", - "symbol": "$SHIHTZU", - "decimals": 18, - "name": "SHIH TZU", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x2f2af9134f617bf4826848e0aac1e8865544dca2.png", - "aggregators": ["Rubic", "Rango", "Sonarwatch"], - "occurrences": 3 - }, - "0x753f185b24aee5e5b21e4218ff16afc9db7ae8a3": { - "address": "0x753f185b24aee5e5b21e4218ff16afc9db7ae8a3", - "symbol": "BPEPE", - "decimals": 9, - "name": "BPEPE", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x753f185b24aee5e5b21e4218ff16afc9db7ae8a3.png", - "aggregators": ["Rubic", "Rango", "Sonarwatch"], - "occurrences": 3 - }, - "0xda52b818c1348bfee27989e2a0df39224a3e52fa": { - "address": "0xda52b818c1348bfee27989e2a0df39224a3e52fa", - "symbol": "BLEND", - "decimals": 18, - "name": "Blend", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xda52b818c1348bfee27989e2a0df39224a3e52fa.png", - "aggregators": ["Rubic", "Rango", "Sonarwatch"], - "occurrences": 3 - }, - "0x46680028b950460f4f42446585051ddd232dfefe": { - "address": "0x46680028b950460f4f42446585051ddd232dfefe", - "symbol": "FROGO", - "decimals": 18, - "name": "Frogo The Lord", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x46680028b950460f4f42446585051ddd232dfefe.png", - "aggregators": ["Rubic", "Rango", "Sonarwatch"], - "occurrences": 3 - }, - "0x3dba4ae830896467a0a1c731686a2ad40cf76777": { - "address": "0x3dba4ae830896467a0a1c731686a2ad40cf76777", - "symbol": "ONI", - "decimals": 18, - "name": "ONI PROTOCOL", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x3dba4ae830896467a0a1c731686a2ad40cf76777.png", - "aggregators": ["Rubic", "Rango", "Sonarwatch"], - "occurrences": 3 - }, - "0xc468acf451922712cf45af9801df89578b0418b4": { - "address": "0xc468acf451922712cf45af9801df89578b0418b4", - "symbol": "DOODI", - "decimals": 18, - "name": "DOODiPALS", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xc468acf451922712cf45af9801df89578b0418b4.png", - "aggregators": ["Rubic", "Rango", "Sonarwatch"], - "occurrences": 3 - }, - "0x22fffab2e52c4a1dff83b7db7ef319698d48667f": { - "address": "0x22fffab2e52c4a1dff83b7db7ef319698d48667f", - "symbol": "BULL", - "decimals": 18, - "name": "Bull", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x22fffab2e52c4a1dff83b7db7ef319698d48667f.png", - "aggregators": ["Rubic", "Rango", "Sonarwatch"], - "occurrences": 3 - }, - "0x1a2457016bee420da8bb40be029b76119847731d": { - "address": "0x1a2457016bee420da8bb40be029b76119847731d", - "symbol": "$TRUST", - "decimals": 18, - "name": "Trust Inspect", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x1a2457016bee420da8bb40be029b76119847731d.png", - "aggregators": ["Rubic", "Rango", "Sonarwatch"], - "occurrences": 3 - }, - "0x5df0a19605b7b31716fc83dcfc6a79a36ef7a0f2": { - "address": "0x5df0a19605b7b31716fc83dcfc6a79a36ef7a0f2", - "symbol": "JOI", - "decimals": 18, - "name": "Joi", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x5df0a19605b7b31716fc83dcfc6a79a36ef7a0f2.png", - "aggregators": ["Rubic", "Rango", "Sonarwatch"], - "occurrences": 3 - }, - "0xd55578730450e9cc9554c47cc055d557e2af4444": { - "address": "0xd55578730450e9cc9554c47cc055d557e2af4444", - "symbol": "SHONG", - "decimals": 18, - "name": "Shong Inu", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xd55578730450e9cc9554c47cc055d557e2af4444.png", - "aggregators": ["Rubic", "Rango", "Sonarwatch"], - "occurrences": 3 - }, - "0x0abeaf56546a563824c96bb93d1c46f1d4cd11eb": { - "address": "0x0abeaf56546a563824c96bb93d1c46f1d4cd11eb", - "symbol": "BAKENEKO", - "decimals": 9, - "name": "BAKENEKO", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x0abeaf56546a563824c96bb93d1c46f1d4cd11eb.png", - "aggregators": ["Rubic", "Rango", "Sonarwatch"], - "occurrences": 3 - }, - "0x6961974d3bc7f26f3488c64330111c8ecfe75bf3": { - "address": "0x6961974d3bc7f26f3488c64330111c8ecfe75bf3", - "symbol": "GMX", - "decimals": 18, - "name": "GameXT", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x6961974d3bc7f26f3488c64330111c8ecfe75bf3.png", - "aggregators": ["Rubic", "Rango", "Sonarwatch"], - "occurrences": 3 - }, - "0x30117e4bc17d7b044194b76a38365c53b72f7d49": { - "address": "0x30117e4bc17d7b044194b76a38365c53b72f7d49", - "symbol": "GWEI", - "decimals": 18, - "name": "ETHGas", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x30117e4bc17d7b044194b76a38365c53b72f7d49.png", - "aggregators": [ - "PancakeExtended", - "LiFi", - "Socket", - "Rubic", - "Squid", - "Rango" - ], - "occurrences": 6 - }, - "0xe552fb52a4f19e44ef5a967632dbc320b0820639": { - "address": "0xe552fb52a4f19e44ef5a967632dbc320b0820639", - "symbol": "METIS", - "decimals": 18, - "name": "Metis Token", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xe552fb52a4f19e44ef5a967632dbc320b0820639.png", - "aggregators": [ - "PancakeExtended", - "LiFi", - "Socket", - "Rubic", - "Squid", - "Rango" - ], - "occurrences": 6 - }, - "0x0d35a2b85c5a63188d566d104bebf7c694334ee4": { - "address": "0x0d35a2b85c5a63188d566d104bebf7c694334ee4", - "symbol": "UPI", - "decimals": 18, - "name": "Pawtocol", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x0d35a2b85c5a63188d566d104bebf7c694334ee4.png", - "aggregators": [ - "PancakeCoinGecko", - "LiFi", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 6 - }, - "0xce24439f2d9c6a2289f741120fe202248b666666": { - "address": "0xce24439f2d9c6a2289f741120fe202248b666666", - "symbol": "U", - "decimals": 18, - "name": "United Stables", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xce24439f2d9c6a2289f741120fe202248b666666.png", - "aggregators": [ - "PancakeExtended", - "LiFi", - "Socket", - "Rubic", - "Squid", - "Rango" - ], - "occurrences": 6 - }, - "0x1346b618dc92810ec74163e4c27004c921d446a5": { - "address": "0x1346b618dc92810ec74163e4c27004c921d446a5", - "symbol": "SOLVBTC.BBN", - "decimals": 18, - "name": "Solv Protocol SolvBTC.BBN", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x1346b618dc92810ec74163e4c27004c921d446a5.png", - "aggregators": [ - "PancakeExtended", - "LiFi", - "Rubic", - "Squid", - "Rango", - "Sonarwatch" - ], - "occurrences": 6 - }, - "0x74ccbe53f77b08632ce0cb91d3a545bf6b8e0979": { - "address": "0x74ccbe53f77b08632ce0cb91d3a545bf6b8e0979", - "symbol": "BOMB", - "decimals": 18, - "name": "Fantom Bomb", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x74ccbe53f77b08632ce0cb91d3a545bf6b8e0979.png", - "aggregators": [ - "PancakeCoinMarketCap", - "LiFi", - "Rubic", - "Squid", - "Rango", - "Sonarwatch" - ], - "occurrences": 6 - }, - "0xfebfa339e44c28e2aa9e62ea1027c9cb4e378605": { - "address": "0xfebfa339e44c28e2aa9e62ea1027c9cb4e378605", - "symbol": "NPC", - "decimals": 18, - "name": "Non-Playable Coin", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xfebfa339e44c28e2aa9e62ea1027c9cb4e378605.png", - "aggregators": [ - "PancakeCoinGecko", - "Socket", - "Rubic", - "Squid", - "Rango", - "Sonarwatch" - ], - "occurrences": 6 - }, - "0xc96de26018a54d51c097160568752c4e3bd6c364": { - "address": "0xc96de26018a54d51c097160568752c4e3bd6c364", - "symbol": "FBTC", - "decimals": 8, - "name": "Function ƒBTC", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xc96de26018a54d51c097160568752c4e3bd6c364.png", - "aggregators": [ - "PancakeCoinGecko", - "LiFi", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 6 - }, - "0xa4335da338ec4c07c391fc1a9bf75f306adadc08": { - "address": "0xa4335da338ec4c07c391fc1a9bf75f306adadc08", - "symbol": "EUSD", - "decimals": 18, - "name": "ARYZE eUSD", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xa4335da338ec4c07c391fc1a9bf75f306adadc08.png", - "aggregators": [ - "PancakeCoinGecko", - "LiFi", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 6 - }, - "0xc7d8d35eba58a0935ff2d5a33df105dd9f071731": { - "address": "0xc7d8d35eba58a0935ff2d5a33df105dd9f071731", - "symbol": "HGET", - "decimals": 6, - "name": "Hedget", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xc7d8d35eba58a0935ff2d5a33df105dd9f071731.png", - "aggregators": [ - "PancakeExtended", - "LiFi", - "TrustWallet", - "Socket", - "Rubic", - "Rango" - ], - "occurrences": 6 - }, - "0x000008d2175f9aeaddb2430c26f8a6f73c5a0000": { - "address": "0x000008d2175f9aeaddb2430c26f8a6f73c5a0000", - "symbol": "UP", - "decimals": 18, - "name": "Unitas", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x000008d2175f9aeaddb2430c26f8a6f73c5a0000.png", - "aggregators": [ - "PancakeExtended", - "LiFi", - "Socket", - "Rubic", - "Rango" - ], - "occurrences": 5 - }, - "0x7c3b00cb3b40cc77d88329a58574e29cfa3cb9e2": { - "address": "0x7c3b00cb3b40cc77d88329a58574e29cfa3cb9e2", - "symbol": "MSS", - "decimals": 18, - "name": "MintStakeShare", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x7c3b00cb3b40cc77d88329a58574e29cfa3cb9e2.png", - "aggregators": [ - "CoinGecko", - "Rubic", - "Squid", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x51363f073b1e4920fda7aa9e9d84ba97ede1560e": { - "address": "0x51363f073b1e4920fda7aa9e9d84ba97ede1560e", - "symbol": "BOB", - "decimals": 18, - "name": "Build On BNB", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x51363f073b1e4920fda7aa9e9d84ba97ede1560e.png", - "aggregators": [ - "PancakeExtended", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x6cdd08de79231a1957f205a3fe5cf9dbf4b0c454": { - "address": "0x6cdd08de79231a1957f205a3fe5cf9dbf4b0c454", - "symbol": "BABYNEIRO", - "decimals": 9, - "name": "Baby Neiro", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x6cdd08de79231a1957f205a3fe5cf9dbf4b0c454.png", - "aggregators": [ - "PancakeCoinGecko", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0xb617fab6b94ed1fe6df3cad71e1dc997927a2a0e": { - "address": "0xb617fab6b94ed1fe6df3cad71e1dc997927a2a0e", - "symbol": "INCO", - "decimals": 18, - "name": "InfinitiCoin", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xb617fab6b94ed1fe6df3cad71e1dc997927a2a0e.png", - "aggregators": [ - "CoinGecko", - "1inch", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x64e4fea6e4f3637025c7bcd878e2b238b01f7d4e": { - "address": "0x64e4fea6e4f3637025c7bcd878e2b238b01f7d4e", - "symbol": "INSURANCE", - "decimals": 18, - "name": "INSURANCE", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x64e4fea6e4f3637025c7bcd878e2b238b01f7d4e.png", - "aggregators": [ - "CoinGecko", - "Rubic", - "Squid", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x36b2269fd151208a4bfc3dea503e0a6f2485fa78": { - "address": "0x36b2269fd151208a4bfc3dea503e0a6f2485fa78", - "symbol": "TUA", - "decimals": 18, - "name": "Atua AI", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x36b2269fd151208a4bfc3dea503e0a6f2485fa78.png", - "aggregators": [ - "CoinGecko", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0xdce40c14d5956f8b8ba912402ba73b4d4d599612": { - "address": "0xdce40c14d5956f8b8ba912402ba73b4d4d599612", - "symbol": "PZP", - "decimals": 18, - "name": "PlayZap", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xdce40c14d5956f8b8ba912402ba73b4d4d599612.png", - "aggregators": [ - "PancakeCoinGecko", - "LiFi", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x71e80e96af604afc23ca2aed4c1c7466db6dd0c4": { - "address": "0x71e80e96af604afc23ca2aed4c1c7466db6dd0c4", - "symbol": "BABYFLOKI", - "decimals": 7, - "name": "Baby Floki", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x71e80e96af604afc23ca2aed4c1c7466db6dd0c4.png", - "aggregators": [ - "PancakeCoinGecko", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x96e8d3a52dd950aacc8d1749932e1c14bc76e371": { - "address": "0x96e8d3a52dd950aacc8d1749932e1c14bc76e371", - "symbol": "WHALE", - "decimals": 18, - "name": "Whale", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x96e8d3a52dd950aacc8d1749932e1c14bc76e371.png", - "aggregators": [ - "CoinGecko", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x86bf362b3bcb067895481aa071a7364e5884232e": { - "address": "0x86bf362b3bcb067895481aa071a7364e5884232e", - "symbol": "ANDY", - "decimals": 9, - "name": "Andy", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x86bf362b3bcb067895481aa071a7364e5884232e.png", - "aggregators": [ - "CoinGecko", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0xd82109718fff521387bfed5424ead7e8a1cb9780": { - "address": "0xd82109718fff521387bfed5424ead7e8a1cb9780", - "symbol": "ONC", - "decimals": 18, - "name": "Oncology Network", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xd82109718fff521387bfed5424ead7e8a1cb9780.png", - "aggregators": [ - "CoinGecko", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x4f7ea8f6487a7007ca054f35c4a7b961f5b18961": { - "address": "0x4f7ea8f6487a7007ca054f35c4a7b961f5b18961", - "symbol": "CATS", - "decimals": 9, - "name": "GoldenCat", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x4f7ea8f6487a7007ca054f35c4a7b961f5b18961.png", - "aggregators": [ - "CoinGecko", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x949185d3be66775ea648f4a306740ea9eff9c567": { - "address": "0x949185d3be66775ea648f4a306740ea9eff9c567", - "symbol": "YEL", - "decimals": 18, - "name": "Yel.Finance", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x949185d3be66775ea648f4a306740ea9eff9c567.png", - "aggregators": [ - "PancakeCoinGecko", - "LiFi", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x8683ba2f8b0f69b2105f26f488bade1d3ab4dec8": { - "address": "0x8683ba2f8b0f69b2105f26f488bade1d3ab4dec8", - "symbol": "ALPH", - "decimals": 18, - "name": "Alephium", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x8683ba2f8b0f69b2105f26f488bade1d3ab4dec8.png", - "aggregators": [ - "PancakeExtended", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0xb04906e95ab5d797ada81508115611fee694c2b3": { - "address": "0xb04906e95ab5d797ada81508115611fee694c2b3", - "symbol": "USDCET", - "decimals": 6, - "name": "Bridged USD Coin (Wormhole Ethereum)", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xb04906e95ab5d797ada81508115611fee694c2b3.png", - "aggregators": [ - "PancakeCoinGecko", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0xbbcb0356bb9e6b3faa5cbf9e5f36185d53403ac9": { - "address": "0xbbcb0356bb9e6b3faa5cbf9e5f36185d53403ac9", - "symbol": "BCOIN", - "decimals": 18, - "name": "Backed Coinbase Global", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xbbcb0356bb9e6b3faa5cbf9e5f36185d53403ac9.png", - "aggregators": [ - "PancakeCoinGecko", - "LiFi", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x1e2c4fb7ede391d116e6b41cd0608260e8801d59": { - "address": "0x1e2c4fb7ede391d116e6b41cd0608260e8801d59", - "symbol": "BCSPX", - "decimals": 18, - "name": "Backed CSPX Core S&P 500", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x1e2c4fb7ede391d116e6b41cd0608260e8801d59.png", - "aggregators": [ - "PancakeCoinGecko", - "LiFi", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x758a3e0b1f842c9306b783f8a4078c6c8c03a270": { - "address": "0x758a3e0b1f842c9306b783f8a4078c6c8c03a270", - "symbol": "USD0", - "decimals": 18, - "name": "Usual USD", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x758a3e0b1f842c9306b783f8a4078c6c8c03a270.png", - "aggregators": [ - "CoinGecko", - "LiFi", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x45f55b46689402583073ff227b6ac20520052a24": { - "address": "0x45f55b46689402583073ff227b6ac20520052a24", - "symbol": "INX", - "decimals": 18, - "name": "Infinex", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x45f55b46689402583073ff227b6ac20520052a24.png", - "aggregators": ["PancakeExtended", "Socket", "Rubic", "Rango"], - "occurrences": 4 - }, - "0x3fcd741646a9790635b938cdb69af5df356cbaab": { - "address": "0x3fcd741646a9790635b938cdb69af5df356cbaab", - "symbol": "PALLON", - "decimals": 18, - "name": "abrdn Physical Palladium Shares ETF (Ondo Tokenized)", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x3fcd741646a9790635b938cdb69af5df356cbaab.png", - "aggregators": ["CoinGecko", "LiFi", "Rubic", "Rango", "Ondo"], - "occurrences": 5, - "rwaData": { - "market": { - "nextOpen": "2026-05-18T20:01:00.000Z", - "nextClose": "2026-05-18T19:59:00.000Z" - }, - "nextPause": { - "start": "2026-05-17T23:50:00.000Z", - "end": "2026-05-18T17:00:00.000Z" - }, - "ticker": "PALL", - "instrumentType": "stock" - } - }, - "0x02d608506ca0048d0d991a11f1e7fb8cad1e44f8": { - "address": "0x02d608506ca0048d0d991a11f1e7fb8cad1e44f8", - "symbol": "AALON", - "decimals": 18, - "name": "American Airlines Group (Ondo Tokenized)", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x02d608506ca0048d0d991a11f1e7fb8cad1e44f8.png", - "aggregators": ["CoinGecko", "LiFi", "Rubic", "Rango", "Ondo"], - "occurrences": 5, - "rwaData": { - "market": { - "nextOpen": "2026-05-18T20:01:00.000Z", - "nextClose": "2026-05-18T19:59:00.000Z" - }, - "nextPause": { - "start": null, - "end": null - }, - "ticker": "AAL", - "instrumentType": "stock" - } - }, - "0x52ad57a7ea642e99a892afc79e937b383f1b59e9": { - "address": "0x52ad57a7ea642e99a892afc79e937b383f1b59e9", - "symbol": "BMNRON", - "decimals": 18, - "name": "BitMine Immersion Technologies (Ondo Tokenized)", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x52ad57a7ea642e99a892afc79e937b383f1b59e9.png", - "aggregators": ["CoinGecko", "LiFi", "Rubic", "Rango", "Ondo"], - "occurrences": 5, - "rwaData": { - "market": { - "nextOpen": "2026-05-18T20:01:00.000Z", - "nextClose": "2026-05-18T19:59:00.000Z" - }, - "nextPause": { - "start": null, - "end": null - }, - "ticker": "BMNR", - "instrumentType": "stock" - } - }, - "0xec93fe7ff4b09ca3ccafbc4cc9615e62be412780": { - "address": "0xec93fe7ff4b09ca3ccafbc4cc9615e62be412780", - "symbol": "COPXON", - "decimals": 18, - "name": "Global X Copper Miners ETF (Ondo Tokenized)", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xec93fe7ff4b09ca3ccafbc4cc9615e62be412780.png", - "aggregators": ["CoinGecko", "LiFi", "Rubic", "Rango", "Ondo"], - "occurrences": 5, - "rwaData": { - "market": { - "nextOpen": "2026-05-18T20:01:00.000Z", - "nextClose": "2026-05-18T19:59:00.000Z" - }, - "nextPause": { - "start": null, - "end": null - }, - "ticker": "COPX", - "instrumentType": "stock" - } - }, - "0x4752ae8f910b25e64e4406eaad50c1b4e8de7e6d": { - "address": "0x4752ae8f910b25e64e4406eaad50c1b4e8de7e6d", - "symbol": "PLUGON", - "decimals": 18, - "name": "Plug Power (Ondo Tokenized)", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x4752ae8f910b25e64e4406eaad50c1b4e8de7e6d.png", - "aggregators": ["CoinGecko", "LiFi", "Rubic", "Rango", "Ondo"], - "occurrences": 5, - "rwaData": { - "market": { - "nextOpen": "2026-05-18T20:01:00.000Z", - "nextClose": "2026-05-18T19:59:00.000Z" - }, - "nextPause": { - "start": null, - "end": null - }, - "ticker": "PLUG", - "instrumentType": "stock" - } - }, - "0x17515b68378d86c38f394c666e79907da05dcba9": { - "address": "0x17515b68378d86c38f394c666e79907da05dcba9", - "symbol": "SQQQON", - "decimals": 18, - "name": "ProShares UltraPro Short QQQ (Ondo Tokenized)", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x17515b68378d86c38f394c666e79907da05dcba9.png", - "aggregators": ["CoinGecko", "LiFi", "Rubic", "Rango", "Ondo"], - "occurrences": 5, - "rwaData": { - "market": { - "nextOpen": "2026-05-18T20:01:00.000Z", - "nextClose": "2026-05-18T19:59:00.000Z" - }, - "nextPause": { - "start": null, - "end": null - }, - "ticker": "SQQQ", - "instrumentType": "stock" - } - }, - "0x94174e3d1335db402dd03a092f7aa7ac2cb32be4": { - "address": "0x94174e3d1335db402dd03a092f7aa7ac2cb32be4", - "symbol": "USOON", - "decimals": 18, - "name": "United States Oil Fund (Ondo Tokenized)", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x94174e3d1335db402dd03a092f7aa7ac2cb32be4.png", - "aggregators": ["CoinGecko", "LiFi", "Rubic", "Rango", "Ondo"], - "occurrences": 5, - "rwaData": { - "market": { - "nextOpen": "2026-05-18T20:01:00.000Z", - "nextClose": "2026-05-18T19:59:00.000Z" - }, - "nextPause": { - "start": null, - "end": null - }, - "ticker": "USO", - "instrumentType": "stock" - } - }, - "0xc16f47c4a7ed39372b9a0e3e2016cede9b4cb83a": { - "address": "0xc16f47c4a7ed39372b9a0e3e2016cede9b4cb83a", - "symbol": "REMXON", - "decimals": 18, - "name": "VanEck Rare Earth and Strategic Metals ETF (Ondo Tokenized)", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xc16f47c4a7ed39372b9a0e3e2016cede9b4cb83a.png", - "aggregators": ["CoinGecko", "LiFi", "Rubic", "Rango", "Ondo"], - "occurrences": 5, - "rwaData": { - "market": { - "nextOpen": "2026-05-19T13:31:00.000Z", - "nextClose": "2026-05-18T19:59:00.000Z" - }, - "nextPause": { - "start": null, - "end": null - }, - "ticker": "REMX", - "instrumentType": "stock" - } - }, - "0x65d84f0990b7394209d591380c2952c83d778aa3": { - "address": "0x65d84f0990b7394209d591380c2952c83d778aa3", - "symbol": "CEGON", - "decimals": 18, - "name": "Constellation Energy (Ondo Tokenized)", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x65d84f0990b7394209d591380c2952c83d778aa3.png", - "aggregators": ["CoinGecko", "LiFi", "Rubic", "Rango", "Ondo"], - "occurrences": 5, - "rwaData": { - "market": { - "nextOpen": "2026-05-18T20:01:00.000Z", - "nextClose": "2026-05-18T19:59:00.000Z" - }, - "nextPause": { - "start": null, - "end": null - }, - "ticker": "CEG", - "instrumentType": "stock" - } - }, - "0x71507068e98049cba81e9bbc8d901e4a2f4222eb": { - "address": "0x71507068e98049cba81e9bbc8d901e4a2f4222eb", - "symbol": "SOFION", - "decimals": 18, - "name": "SoFi Technologies (Ondo Tokenized)", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x71507068e98049cba81e9bbc8d901e4a2f4222eb.png", - "aggregators": ["CoinGecko", "LiFi", "Rubic", "Rango", "Ondo"], - "occurrences": 5, - "rwaData": { - "market": { - "nextOpen": "2026-05-18T20:01:00.000Z", - "nextClose": "2026-05-18T19:59:00.000Z" - }, - "nextPause": { - "start": null, - "end": null - }, - "ticker": "SOFI", - "instrumentType": "stock" - } - }, - "0x87acfa3fd7a6e0d48677d070644d76905c2bdc00": { - "address": "0x87acfa3fd7a6e0d48677d070644d76905c2bdc00", - "symbol": "SPACE", - "decimals": 18, - "name": "Spacecoin", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x87acfa3fd7a6e0d48677d070644d76905c2bdc00.png", - "aggregators": [ - "PancakeExtended", - "LiFi", - "Socket", - "Rubic", - "Rango" - ], - "occurrences": 5 - }, - "0xfbdf0366f800cc79d6663da26bc0bf21fb455aa6": { - "address": "0xfbdf0366f800cc79d6663da26bc0bf21fb455aa6", - "symbol": "AMGNON", - "decimals": 18, - "name": "Amgen (Ondo Tokenized)", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xfbdf0366f800cc79d6663da26bc0bf21fb455aa6.png", - "aggregators": ["CoinGecko", "LiFi", "Rubic", "Rango", "Ondo"], - "occurrences": 5, - "rwaData": { - "market": { - "nextOpen": "2026-05-18T20:01:00.000Z", - "nextClose": "2026-05-18T19:59:00.000Z" - }, - "nextPause": { - "start": null, - "end": null - }, - "ticker": "AMGN", - "instrumentType": "stock" - } - }, - "0xe6837794fbc6dd024733a1a31f86061296fa2752": { - "address": "0xe6837794fbc6dd024733a1a31f86061296fa2752", - "symbol": "CRWDON", - "decimals": 18, - "name": "CrowdStrike (Ondo Tokenized)", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xe6837794fbc6dd024733a1a31f86061296fa2752.png", - "aggregators": ["CoinGecko", "LiFi", "Rubic", "Rango", "Ondo"], - "occurrences": 5, - "rwaData": { - "market": { - "nextOpen": "2026-05-18T20:01:00.000Z", - "nextClose": "2026-05-18T19:59:00.000Z" - }, - "nextPause": { - "start": "2026-06-03T20:00:00.000Z", - "end": "2026-06-03T23:30:00.000Z" - }, - "ticker": "CRWD", - "instrumentType": "stock" - } - }, - "0xd85d4ce29b4ca361ff72ef0e53d6236e334c5db6": { - "address": "0xd85d4ce29b4ca361ff72ef0e53d6236e334c5db6", - "symbol": "ONDSON", - "decimals": 18, - "name": "Ondas Holdings (Ondo Tokenized)", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xd85d4ce29b4ca361ff72ef0e53d6236e334c5db6.png", - "aggregators": ["CoinGecko", "LiFi", "Rubic", "Rango", "Ondo"], - "occurrences": 5, - "rwaData": { - "market": { - "nextOpen": "2026-05-18T20:01:00.000Z", - "nextClose": "2026-05-18T19:59:00.000Z" - }, - "nextPause": { - "start": null, - "end": null - }, - "ticker": "ONDS", - "instrumentType": "stock" - } - }, - "0xf3e82ea164cb344b2b11bad4c24b0ea4f7ba4714": { - "address": "0xf3e82ea164cb344b2b11bad4c24b0ea4f7ba4714", - "symbol": "PDDON", - "decimals": 18, - "name": "PDD Holdings (Ondo Tokenized)", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xf3e82ea164cb344b2b11bad4c24b0ea4f7ba4714.png", - "aggregators": ["CoinGecko", "LiFi", "Rubic", "Rango", "Ondo"], - "occurrences": 5, - "rwaData": { - "market": { - "nextOpen": "2026-05-18T20:01:00.000Z", - "nextClose": "2026-05-18T19:59:00.000Z" - }, - "nextPause": { - "start": "2026-05-26T09:00:00.000Z", - "end": "2026-05-26T23:30:00.000Z" - }, - "ticker": "PDD", - "instrumentType": "stock" - } - }, - "0xed2a500eb2b66679e0bbd76e51a60049ae5f3271": { - "address": "0xed2a500eb2b66679e0bbd76e51a60049ae5f3271", - "symbol": "RGTION", - "decimals": 18, - "name": "Rigetti Computing (Ondo Tokenized)", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xed2a500eb2b66679e0bbd76e51a60049ae5f3271.png", - "aggregators": ["CoinGecko", "LiFi", "Rubic", "Rango", "Ondo"], - "occurrences": 5, - "rwaData": { - "market": { - "nextOpen": "2026-05-18T20:01:00.000Z", - "nextClose": "2026-05-18T19:59:00.000Z" - }, - "nextPause": { - "start": null, - "end": null - }, - "ticker": "RGTI", - "instrumentType": "stock" - } - }, - "0x277e1fa8704c5511fed7e30bc691f922aa30101b": { - "address": "0x277e1fa8704c5511fed7e30bc691f922aa30101b", - "symbol": "RIVNON", - "decimals": 18, - "name": "Rivian Automotive (Ondo Tokenized)", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x277e1fa8704c5511fed7e30bc691f922aa30101b.png", - "aggregators": ["CoinGecko", "LiFi", "Rubic", "Rango", "Ondo"], - "occurrences": 5, - "rwaData": { - "market": { - "nextOpen": "2026-05-18T20:01:00.000Z", - "nextClose": "2026-05-18T19:59:00.000Z" - }, - "nextPause": { - "start": null, - "end": null - }, - "ticker": "RIVN", - "instrumentType": "stock" - } - }, - "0xc0c6e4c6e70c6231b20979bda581a66f062a7967": { - "address": "0xc0c6e4c6e70c6231b20979bda581a66f062a7967", - "symbol": "ATRI", - "decimals": 0, - "name": "Atari", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xc0c6e4c6e70c6231b20979bda581a66f062a7967.png", - "aggregators": [ - "PancakeCoinMarketCap", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x91c62325f901ee29da8e521cfe68980332a4ca06": { - "address": "0x91c62325f901ee29da8e521cfe68980332a4ca06", - "symbol": "ACHRON", - "decimals": 18, - "name": "Archer Aviation (Ondo Tokenized)", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x91c62325f901ee29da8e521cfe68980332a4ca06.png", - "aggregators": ["CoinGecko", "LiFi", "Rubic", "Rango", "Ondo"], - "occurrences": 5, - "rwaData": { - "market": { - "nextOpen": "2026-05-18T20:01:00.000Z", - "nextClose": "2026-05-18T19:59:00.000Z" - }, - "nextPause": { - "start": null, - "end": null - }, - "ticker": "ACHR", - "instrumentType": "stock" - } - }, - "0x8fd70ee385f470c8d6fda2d93a4e49c849bac6a6": { - "address": "0x8fd70ee385f470c8d6fda2d93a4e49c849bac6a6", - "symbol": "IRENON", - "decimals": 18, - "name": "IREN (Ondo Tokenized)", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x8fd70ee385f470c8d6fda2d93a4e49c849bac6a6.png", - "aggregators": ["CoinGecko", "LiFi", "Rubic", "Rango", "Ondo"], - "occurrences": 5, - "rwaData": { - "market": { - "nextOpen": "2026-05-18T20:01:00.000Z", - "nextClose": "2026-05-18T19:59:00.000Z" - }, - "nextPause": { - "start": null, - "end": null - }, - "ticker": "IREN", - "instrumentType": "stock" - } - }, - "0xc008c5f579ec1450f20099c39f587547e27c7523": { - "address": "0xc008c5f579ec1450f20099c39f587547e27c7523", - "symbol": "SGOVON", - "decimals": 18, - "name": "iShares 0-3 Month Treasury Bond ETF (Ondo Tokenized)", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xc008c5f579ec1450f20099c39f587547e27c7523.png", - "aggregators": ["CoinGecko", "LiFi", "Rubic", "Rango", "Ondo"], - "occurrences": 5, - "rwaData": { - "market": { - "nextOpen": "2026-05-18T20:01:00.000Z", - "nextClose": "2026-05-18T19:59:00.000Z" - }, - "nextPause": { - "start": null, - "end": null - }, - "ticker": "SGOV", - "instrumentType": "stock" - } - }, - "0xfc263946439b0d802bf4c5a6fcd34e2885259f91": { - "address": "0xfc263946439b0d802bf4c5a6fcd34e2885259f91", - "symbol": "KLACON", - "decimals": 18, - "name": "KLA (Ondo Tokenized)", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xfc263946439b0d802bf4c5a6fcd34e2885259f91.png", - "aggregators": ["CoinGecko", "LiFi", "Rubic", "Rango", "Ondo"], - "occurrences": 5, - "rwaData": { - "market": { - "nextOpen": "2026-05-18T20:01:00.000Z", - "nextClose": "2026-05-18T19:59:00.000Z" - }, - "nextPause": { - "start": "2026-06-11T23:50:00.000Z", - "end": "2026-06-12T17:00:00.000Z" - }, - "ticker": "KLAC", - "instrumentType": "stock" - } - }, - "0xe9d43f7e6b2237e8873a7003b3f43c6b03160be5": { - "address": "0xe9d43f7e6b2237e8873a7003b3f43c6b03160be5", - "symbol": "NEEON", - "decimals": 18, - "name": "NextEra Energy (Ondo Tokenized)", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xe9d43f7e6b2237e8873a7003b3f43c6b03160be5.png", - "aggregators": ["CoinGecko", "LiFi", "Rubic", "Rango", "Ondo"], - "occurrences": 5, - "rwaData": { - "market": { - "nextOpen": "2026-05-19T13:31:00.000Z", - "nextClose": "2026-05-18T19:59:00.000Z" - }, - "nextPause": { - "start": null, - "end": null - }, - "ticker": "NEE", - "instrumentType": "stock" - } - }, - "0xaf6c03acf72355ce98d0741302b78870b376428c": { - "address": "0xaf6c03acf72355ce98d0741302b78870b376428c", - "symbol": "OKLOON", - "decimals": 18, - "name": "Oklo (Ondo Tokenized)", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xaf6c03acf72355ce98d0741302b78870b376428c.png", - "aggregators": ["CoinGecko", "LiFi", "Rubic", "Rango", "Ondo"], - "occurrences": 5, - "rwaData": { - "market": { - "nextOpen": "2026-05-18T20:01:00.000Z", - "nextClose": "2026-05-18T19:59:00.000Z" - }, - "nextPause": { - "start": null, - "end": null - }, - "ticker": "OKLO", - "instrumentType": "stock" - } - }, - "0xa09699fc0cbb1f85128450a0ff6a3c4d3a7e7b9b": { - "address": "0xa09699fc0cbb1f85128450a0ff6a3c4d3a7e7b9b", - "symbol": "OPENON", - "decimals": 18, - "name": "Opendoor Technologies (Ondo Tokenized)", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xa09699fc0cbb1f85128450a0ff6a3c4d3a7e7b9b.png", - "aggregators": ["CoinGecko", "LiFi", "Rubic", "Rango", "Ondo"], - "occurrences": 5, - "rwaData": { - "market": { - "nextOpen": "2026-05-19T13:31:00.000Z", - "nextClose": "2026-05-18T19:59:00.000Z" - }, - "nextPause": { - "start": null, - "end": null - }, - "ticker": "OPEN", - "instrumentType": "stock" - } - }, - "0xe42cfb20e00912409b77a602b5bdcff3c7acc5f4": { - "address": "0xe42cfb20e00912409b77a602b5bdcff3c7acc5f4", - "symbol": "TQQQON", - "decimals": 18, - "name": "ProShares UltraPro QQQ (Ondo Tokenized)", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xe42cfb20e00912409b77a602b5bdcff3c7acc5f4.png", - "aggregators": ["CoinGecko", "LiFi", "Rubic", "Rango", "Ondo"], - "occurrences": 5, - "rwaData": { - "market": { - "nextOpen": "2026-05-18T20:01:00.000Z", - "nextClose": "2026-05-18T19:59:00.000Z" - }, - "nextPause": { - "start": null, - "end": null - }, - "ticker": "TQQQ", - "instrumentType": "stock" - } - }, - "0xfa9a1e901085e269f6d428f79cd5252d8b919344": { - "address": "0xfa9a1e901085e269f6d428f79cd5252d8b919344", - "symbol": "GLDON", - "decimals": 18, - "name": "SPDR Gold Shares (Ondo Tokenized)", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xfa9a1e901085e269f6d428f79cd5252d8b919344.png", - "aggregators": ["CoinGecko", "LiFi", "Rubic", "Rango", "Ondo"], - "occurrences": 5, - "rwaData": { - "market": { - "nextOpen": "2026-05-18T20:01:00.000Z", - "nextClose": "2026-05-18T19:59:00.000Z" - }, - "nextPause": { - "start": null, - "end": null - }, - "ticker": "GLD", - "instrumentType": "stock" - } - }, - "0x518960f5d12eb192f89a73c2ae9b2bd369c73d40": { - "address": "0x518960f5d12eb192f89a73c2ae9b2bd369c73d40", - "symbol": "SEILOR", - "decimals": 6, - "name": "Kryptonite", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x518960f5d12eb192f89a73c2ae9b2bd369c73d40.png", - "aggregators": [ - "PancakeCoinGecko", - "Rubic", - "Squid", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x614577036f0a024dbc1c88ba616b394dd65d105a": { - "address": "0x614577036f0a024dbc1c88ba616b394dd65d105a", - "symbol": "GNUS", - "decimals": 16, - "name": "GENIUS AI", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x614577036f0a024dbc1c88ba616b394dd65d105a.png", - "aggregators": [ - "PancakeCoinMarketCap", - "Rubic", - "Squid", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x7788a3538c5fc7f9c7c8a74eac4c898fc8d87d92": { - "address": "0x7788a3538c5fc7f9c7c8a74eac4c898fc8d87d92", - "symbol": "SUSDX", - "decimals": 18, - "name": "usdx.money Staked USDX", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x7788a3538c5fc7f9c7c8a74eac4c898fc8d87d92.png", - "aggregators": [ - "PancakeExtended", - "LiFi", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x8f01d597d2022656494e30fb76eccf1eea2e092e": { - "address": "0x8f01d597d2022656494e30fb76eccf1eea2e092e", - "symbol": "TOMB", - "decimals": 18, - "name": "Tomb", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x8f01d597d2022656494e30fb76eccf1eea2e092e.png", - "aggregators": [ - "PancakeCoinGecko", - "LiFi", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0xda5be69074afd12354173b4350ec9117e73e92e2": { - "address": "0xda5be69074afd12354173b4350ec9117e73e92e2", - "symbol": "AQT", - "decimals": 18, - "name": "AQT", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xda5be69074afd12354173b4350ec9117e73e92e2.png", - "aggregators": [ - "PancakeCoinMarketCap", - "LiFi", - "Socket", - "Rubic", - "Rango" - ], - "occurrences": 5 - }, - "0xc04a23149efdf9a63697f3eb60705147e9f07ffd": { - "address": "0xc04a23149efdf9a63697f3eb60705147e9f07ffd", - "symbol": "GENI", - "decimals": 18, - "name": "GemUni", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xc04a23149efdf9a63697f3eb60705147e9f07ffd.png", - "aggregators": [ - "PancakeCoinMarketCap", - "LiFi", - "Socket", - "Rubic", - "Rango" - ], - "occurrences": 5 - }, - "0x3fda9383a84c05ec8f7630fe10adf1fac13241cc": { - "address": "0x3fda9383a84c05ec8f7630fe10adf1fac13241cc", - "symbol": "DEGO", - "decimals": 18, - "name": "dego.finance", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x3fda9383a84c05ec8f7630fe10adf1fac13241cc.png", - "aggregators": ["PancakeExtended", "LiFi", "Socket", "Rubic"], - "occurrences": 4 - }, - "0x3947b992dc0147d2d89df0392213781b04b25075": { - "address": "0x3947b992dc0147d2d89df0392213781b04b25075", - "symbol": "MAMZN", - "decimals": 18, - "name": "Mirror AMZN Token", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x3947b992dc0147d2d89df0392213781b04b25075.png", - "aggregators": [ - "PancakeExtended", - "LiFi", - "Rubic", - "Rango", - "SushiSwap" - ], - "occurrences": 5 - }, - "0x7c1cca5b25fa0bc9af9275fb53cba89dc172b878": { - "address": "0x7c1cca5b25fa0bc9af9275fb53cba89dc172b878", - "symbol": "MBTC", - "decimals": 8, - "name": "Babypie Wrapped BTC", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x7c1cca5b25fa0bc9af9275fb53cba89dc172b878.png", - "aggregators": [ - "PancakeExtended", - "LiFi", - "Rubic", - "Squid", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x62d71b23bf15218c7d2d7e48dbbd9e9c650b173f": { - "address": "0x62d71b23bf15218c7d2d7e48dbbd9e9c650b173f", - "symbol": "MGOOGL", - "decimals": 18, - "name": "Mirror GOOGL Token", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x62d71b23bf15218c7d2d7e48dbbd9e9c650b173f.png", - "aggregators": [ - "PancakeExtended", - "LiFi", - "Rubic", - "Rango", - "SushiSwap" - ], - "occurrences": 5 - }, - "0xa04f060077d90fe2647b61e4da4ad1f97d6649dc": { - "address": "0xa04f060077d90fe2647b61e4da4ad1f97d6649dc", - "symbol": "MNFLX", - "decimals": 18, - "name": "Mirror NFLX Token", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xa04f060077d90fe2647b61e4da4ad1f97d6649dc.png", - "aggregators": [ - "PancakeExtended", - "LiFi", - "Rubic", - "Rango", - "SushiSwap" - ], - "occurrences": 5 - }, - "0x53e63a31fd1077f949204b94f431bcab98f72bce": { - "address": "0x53e63a31fd1077f949204b94f431bcab98f72bce", - "symbol": "SOLVBTC.ENA", - "decimals": 18, - "name": "Solv Protocol SolvBTC.ENA", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x53e63a31fd1077f949204b94f431bcab98f72bce.png", - "aggregators": [ - "PancakeExtended", - "LiFi", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x0034719300501b06e10ebb1d07ea5967301f0941": { - "address": "0x0034719300501b06e10ebb1d07ea5967301f0941", - "symbol": "XALGO", - "decimals": 6, - "name": "Governance xAlgo", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x0034719300501b06e10ebb1d07ea5967301f0941.png", - "aggregators": [ - "PancakeExtended", - "LiFi", - "Socket", - "Rubic", - "Rango" - ], - "occurrences": 5 - }, - "0x73a325103935b0b5e7aa3aca6dba74ad22f82b03": { - "address": "0x73a325103935b0b5e7aa3aca6dba74ad22f82b03", - "symbol": "SUSDA", - "decimals": 18, - "name": "sUSDa", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x73a325103935b0b5e7aa3aca6dba74ad22f82b03.png", - "aggregators": [ - "PancakeExtended", - "LiFi", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x4a2940263acfd179dbc1c6b69a3392671accaf5b": { - "address": "0x4a2940263acfd179dbc1c6b69a3392671accaf5b", - "symbol": "SHWA", - "decimals": 18, - "name": "ShibaWallet", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x4a2940263acfd179dbc1c6b69a3392671accaf5b.png", - "aggregators": ["LiFi", "Socket", "Rubic", "Rango", "SushiSwap"], - "occurrences": 5 - }, - "0x9fe28d11ce29e340b7124c493f59607cbab9ce48": { - "address": "0x9fe28d11ce29e340b7124c493f59607cbab9ce48", - "symbol": "SPELL", - "decimals": 18, - "name": "Spell", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x9fe28d11ce29e340b7124c493f59607cbab9ce48.png", - "aggregators": ["LiFi", "Socket", "Rubic", "Rango", "SushiSwap"], - "occurrences": 5 - }, - "0x393b312c01048b3ed2720bf1b090084c09e408a1": { - "address": "0x393b312c01048b3ed2720bf1b090084c09e408a1", - "symbol": "FRIES", - "decimals": 18, - "name": "fry.world", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x393b312c01048b3ed2720bf1b090084c09e408a1.png", - "aggregators": ["LiFi", "Socket", "Rubic", "Rango", "SushiSwap"], - "occurrences": 5 - }, - "0x748ad98b14c814b28812eb42ad219c8672909879": { - "address": "0x748ad98b14c814b28812eb42ad219c8672909879", - "symbol": "DICE", - "decimals": 18, - "name": "Dice.finance Token", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x748ad98b14c814b28812eb42ad219c8672909879.png", - "aggregators": ["LiFi", "Socket", "Rubic", "Rango", "SushiSwap"], - "occurrences": 5 - }, - "0xe85afccdafbe7f2b096f268e31cce3da8da2990a": { - "address": "0xe85afccdafbe7f2b096f268e31cce3da8da2990a", - "symbol": "ABNBC", - "decimals": 18, - "name": "Ankr BNB Reward Bearing Certificate", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xe85afccdafbe7f2b096f268e31cce3da8da2990a.png", - "aggregators": ["PancakeCoinMarketCap", "LiFi", "Socket", "Rubic"], - "occurrences": 4 - }, - "0x418f9e4976f467efdb31b2009ac69a7e30ef58b7": { - "address": "0x418f9e4976f467efdb31b2009ac69a7e30ef58b7", - "symbol": "ENF", - "decimals": 18, - "name": "enfineo", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x418f9e4976f467efdb31b2009ac69a7e30ef58b7.png", - "aggregators": ["PancakeCoinGecko", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0xc9ad37e9baf41377540df5a77831db98c1915128": { - "address": "0xc9ad37e9baf41377540df5a77831db98c1915128", - "symbol": "GINUX", - "decimals": 18, - "name": "Green Shiba Inu", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xc9ad37e9baf41377540df5a77831db98c1915128.png", - "aggregators": ["PancakeCoinGecko", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0xeec027f0d9a1de829f430b5dfafe9f7ca5be9c88": { - "address": "0xeec027f0d9a1de829f430b5dfafe9f7ca5be9c88", - "symbol": "BCRE", - "decimals": 18, - "name": "BCREPE", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xeec027f0d9a1de829f430b5dfafe9f7ca5be9c88.png", - "aggregators": ["PancakeCoinGecko", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0xbe2d8ac2a370972c4328bed520b224c3903a4941": { - "address": "0xbe2d8ac2a370972c4328bed520b224c3903a4941", - "symbol": "NVM", - "decimals": 18, - "name": "Novem Pro", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xbe2d8ac2a370972c4328bed520b224c3903a4941.png", - "aggregators": ["PancakeCoinGecko", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0xc53ca0d56c420e8f913316e84d2c492ede99c61e": { - "address": "0xc53ca0d56c420e8f913316e84d2c492ede99c61e", - "symbol": "GROK", - "decimals": 18, - "name": "GROK", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xc53ca0d56c420e8f913316e84d2c492ede99c61e.png", - "aggregators": ["PancakeCoinGecko", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0xef433ebb8ba7a486ce21b854f093b9a3f4e696bc": { - "address": "0xef433ebb8ba7a486ce21b854f093b9a3f4e696bc", - "symbol": "TUK", - "decimals": 18, - "name": "eTukTuk", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xef433ebb8ba7a486ce21b854f093b9a3f4e696bc.png", - "aggregators": ["PancakeCoinGecko", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0xf8acf86194443dcde55fc5b9e448e183c290d8cb": { - "address": "0xf8acf86194443dcde55fc5b9e448e183c290d8cb", - "symbol": "COLX", - "decimals": 8, - "name": "ColossusXT", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xf8acf86194443dcde55fc5b9e448e183c290d8cb.png", - "aggregators": [ - "PancakeCoinMarketCap", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 4 - }, - "0x3439baa16ad653f644fb9f1781113d80590542a5": { - "address": "0x3439baa16ad653f644fb9f1781113d80590542a5", - "symbol": "CCFI", - "decimals": 18, - "name": "CloudCoin Finance", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x3439baa16ad653f644fb9f1781113d80590542a5.png", - "aggregators": ["PancakeCoinGecko", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0xce76fa691ffce00e6ce9bb788e9cbdfb52933f7a": { - "address": "0xce76fa691ffce00e6ce9bb788e9cbdfb52933f7a", - "symbol": "KEKE", - "decimals": 9, - "name": "Keke Inu", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xce76fa691ffce00e6ce9bb788e9cbdfb52933f7a.png", - "aggregators": ["PancakeCoinGecko", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0x179e3b3d1fcba4d740171c710e6a6cfc3c80a571": { - "address": "0x179e3b3d1fcba4d740171c710e6a6cfc3c80a571", - "symbol": "BCL", - "decimals": 18, - "name": "Blockchain Island", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x179e3b3d1fcba4d740171c710e6a6cfc3c80a571.png", - "aggregators": ["PancakeCoinGecko", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0x41515885251e724233c6ca94530d6dcf3a20dec7": { - "address": "0x41515885251e724233c6ca94530d6dcf3a20dec7", - "symbol": "HO", - "decimals": 18, - "name": "HALO Network", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x41515885251e724233c6ca94530d6dcf3a20dec7.png", - "aggregators": [ - "PancakeCoinMarketCap", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 4 - }, - "0x3fd230b77ad19aaf6330da7854ec76d5aeb49ead": { - "address": "0x3fd230b77ad19aaf6330da7854ec76d5aeb49ead", - "symbol": "COINROBOT", - "decimals": 18, - "name": "CoinRobot.AI", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x3fd230b77ad19aaf6330da7854ec76d5aeb49ead.png", - "aggregators": ["PancakeCoinGecko", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0xaf6e18ee53693c3bcd144c27df54320e29097595": { - "address": "0xaf6e18ee53693c3bcd144c27df54320e29097595", - "symbol": "HNY", - "decimals": 18, - "name": "Honey", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xaf6e18ee53693c3bcd144c27df54320e29097595.png", - "aggregators": ["PancakeCoinGecko", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0x6eadc05928acd93efb3fa0dfbc644d96c6aa1df8": { - "address": "0x6eadc05928acd93efb3fa0dfbc644d96c6aa1df8", - "symbol": "8PAY", - "decimals": 18, - "name": "8Pay", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x6eadc05928acd93efb3fa0dfbc644d96c6aa1df8.png", - "aggregators": ["PancakeExtended", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0x6ae0a238a6f51df8eee084b1756a54dd8a8e85d3": { - "address": "0x6ae0a238a6f51df8eee084b1756a54dd8a8e85d3", - "symbol": "AMT", - "decimals": 18, - "name": "AutoMiningToken", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x6ae0a238a6f51df8eee084b1756a54dd8a8e85d3.png", - "aggregators": ["PancakeCoinGecko", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0x557805bbe627ad81adecf4a94ef028141cebabdf": { - "address": "0x557805bbe627ad81adecf4a94ef028141cebabdf", - "symbol": "BCPI", - "decimals": 18, - "name": "Cryptopia", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x557805bbe627ad81adecf4a94ef028141cebabdf.png", - "aggregators": ["PancakeCoinGecko", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0xebd3619642d78f0c98c84f6fa9a678653fb5a99b": { - "address": "0xebd3619642d78f0c98c84f6fa9a678653fb5a99b", - "symbol": "ASX", - "decimals": 18, - "name": "ASX Capital", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xebd3619642d78f0c98c84f6fa9a678653fb5a99b.png", - "aggregators": ["PancakeCoinGecko", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0x65346b41b6d467ff330deaea87a1f7747e44f4cb": { - "address": "0x65346b41b6d467ff330deaea87a1f7747e44f4cb", - "symbol": "PPD", - "decimals": 18, - "name": "PaisaPad", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x65346b41b6d467ff330deaea87a1f7747e44f4cb.png", - "aggregators": ["PancakeCoinGecko", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0xb1ee6fdd6ecec9eebb8368839684f9bcf2f52076": { - "address": "0xb1ee6fdd6ecec9eebb8368839684f9bcf2f52076", - "symbol": "FAML", - "decimals": 18, - "name": "FAML", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xb1ee6fdd6ecec9eebb8368839684f9bcf2f52076.png", - "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0x99945f484ebc48f5307cc00cf8dcf8d6d3d4b017": { - "address": "0x99945f484ebc48f5307cc00cf8dcf8d6d3d4b017", - "symbol": "SWIFT", - "decimals": 18, - "name": "SwiftCash", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x99945f484ebc48f5307cc00cf8dcf8d6d3d4b017.png", - "aggregators": [ - "PancakeCoinMarketCap", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 4 - }, - "0xa4904cc19c4fd9bf3152ff96cdf72a8f135b5286": { - "address": "0xa4904cc19c4fd9bf3152ff96cdf72a8f135b5286", - "symbol": "CPET", - "decimals": 18, - "name": "Cloud Pet", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xa4904cc19c4fd9bf3152ff96cdf72a8f135b5286.png", - "aggregators": ["PancakeCoinGecko", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0x0d07873cacd5f40f47fb19b2c1115b7e1a9db4bf": { - "address": "0x0d07873cacd5f40f47fb19b2c1115b7e1a9db4bf", - "symbol": "21M", - "decimals": 8, - "name": "21Million", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x0d07873cacd5f40f47fb19b2c1115b7e1a9db4bf.png", - "aggregators": ["PancakeCoinGecko", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0xe4a1a0f812eb343e68e5e0ef1883a8196e6ec342": { - "address": "0xe4a1a0f812eb343e68e5e0ef1883a8196e6ec342", - "symbol": "CICCA", - "decimals": 18, - "name": "Cicca Network", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xe4a1a0f812eb343e68e5e0ef1883a8196e6ec342.png", - "aggregators": ["PancakeCoinGecko", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0x73cb8ea6d2331eb9892583e6f7a6ac733b932550": { - "address": "0x73cb8ea6d2331eb9892583e6f7a6ac733b932550", - "symbol": "VEVE", - "decimals": 18, - "name": "VEVE", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x73cb8ea6d2331eb9892583e6f7a6ac733b932550.png", - "aggregators": ["PancakeCoinGecko", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0x61a10e8556bed032ea176330e7f17d6a12a10000": { - "address": "0x61a10e8556bed032ea176330e7f17d6a12a10000", - "symbol": "UUSD", - "decimals": 18, - "name": "Unity USD", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x61a10e8556bed032ea176330e7f17d6a12a10000.png", - "aggregators": ["PancakeExtended", "LiFi", "Rubic", "Rango"], - "occurrences": 4 - }, - "0x9ca5dfa3b0b187d7f53f4ef83ca435a2ec2e4070": { - "address": "0x9ca5dfa3b0b187d7f53f4ef83ca435a2ec2e4070", - "symbol": "CHESS", - "decimals": 8, - "name": "ChessCoin 0.32%", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x9ca5dfa3b0b187d7f53f4ef83ca435a2ec2e4070.png", - "aggregators": ["PancakeCoinGecko", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0xace9de5af92eb82a97a5973b00eff85024bdcb39": { - "address": "0xace9de5af92eb82a97a5973b00eff85024bdcb39", - "symbol": "IR", - "decimals": 18, - "name": "Infrared Governance Token", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xace9de5af92eb82a97a5973b00eff85024bdcb39.png", - "aggregators": ["PancakeExtended", "Rubic", "Squid", "Rango"], - "occurrences": 4 - }, - "0x01ca78a2b5f1a9152d8a3a625bd7df5765eee1d8": { - "address": "0x01ca78a2b5f1a9152d8a3a625bd7df5765eee1d8", - "symbol": "ANDY", - "decimals": 18, - "name": "Andy BSC", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x01ca78a2b5f1a9152d8a3a625bd7df5765eee1d8.png", - "aggregators": ["PancakeExtended", "Socket", "Rubic", "Sonarwatch"], - "occurrences": 4 - }, - "0x6b85f1fe36af537ce5085ef441c92de09af74f0e": { - "address": "0x6b85f1fe36af537ce5085ef441c92de09af74f0e", - "symbol": "DOGER", - "decimals": 18, - "name": "Robotic Doge", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x6b85f1fe36af537ce5085ef441c92de09af74f0e.png", - "aggregators": [ - "PancakeCoinMarketCap", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 4 - }, - "0x90500b067a9b24dcb4834a839c44eec90b2cd9ac": { - "address": "0x90500b067a9b24dcb4834a839c44eec90b2cd9ac", - "symbol": "FGDS", - "decimals": 18, - "name": "FGDSwap", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x90500b067a9b24dcb4834a839c44eec90b2cd9ac.png", - "aggregators": ["PancakeCoinGecko", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0x78e624070871831842730b43f77467af3e8b580c": { - "address": "0x78e624070871831842730b43f77467af3e8b580c", - "symbol": "ALINK", - "decimals": 8, - "name": "ALINK AI", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x78e624070871831842730b43f77467af3e8b580c.png", - "aggregators": ["PancakeCoinGecko", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0x9810512be701801954449408966c630595d0cd51": { - "address": "0x9810512be701801954449408966c630595d0cd51", - "symbol": "HYDT", - "decimals": 18, - "name": "HYDT", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x9810512be701801954449408966c630595d0cd51.png", - "aggregators": ["PancakeCoinGecko", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0x100995a7e5ffd8ee60cc18a10c75cee8c572c59b": { - "address": "0x100995a7e5ffd8ee60cc18a10c75cee8c572c59b", - "symbol": "HYGT", - "decimals": 18, - "name": "HYGT", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x100995a7e5ffd8ee60cc18a10c75cee8c572c59b.png", - "aggregators": ["PancakeCoinGecko", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0xc75835c00c7b1b8589d2438e8b8d83472d238306": { - "address": "0xc75835c00c7b1b8589d2438e8b8d83472d238306", - "symbol": "RTG", - "decimals": 18, - "name": "Rectangle Finance", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xc75835c00c7b1b8589d2438e8b8d83472d238306.png", - "aggregators": ["PancakeCoinGecko", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0x89414f992d4f24fc1bde61eb5c7a74ca83fbe13b": { - "address": "0x89414f992d4f24fc1bde61eb5c7a74ca83fbe13b", - "symbol": "RBL", - "decimals": 18, - "name": "Rublex", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x89414f992d4f24fc1bde61eb5c7a74ca83fbe13b.png", - "aggregators": ["PancakeCoinGecko", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0x223a20e1b83aa3832e78d4b7b132df022e739222": { - "address": "0x223a20e1b83aa3832e78d4b7b132df022e739222", - "symbol": "R2", - "decimals": 18, - "name": "R2", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x223a20e1b83aa3832e78d4b7b132df022e739222.png", - "aggregators": ["PancakeExtended", "Rubic", "Squid", "Rango"], - "occurrences": 4 - }, - "0xd70d1dd91ecd79c6f8de86924571a454ff587818": { - "address": "0xd70d1dd91ecd79c6f8de86924571a454ff587818", - "symbol": "SLT", - "decimals": 18, - "name": "SeedLaunch", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xd70d1dd91ecd79c6f8de86924571a454ff587818.png", - "aggregators": ["PancakeCoinGecko", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0xde8e272ed57488c817b9023c1b2d3e1923ccab86": { - "address": "0xde8e272ed57488c817b9023c1b2d3e1923ccab86", - "symbol": "STAKELAYER", - "decimals": 18, - "name": "StakeLayer", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xde8e272ed57488c817b9023c1b2d3e1923ccab86.png", - "aggregators": ["PancakeCoinGecko", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0x350494bcc94efb5c6080f6a6f0043da27be2ad2c": { - "address": "0x350494bcc94efb5c6080f6a6f0043da27be2ad2c", - "symbol": "DFSM", - "decimals": 9, - "name": "DFS Mafia V2", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x350494bcc94efb5c6080f6a6f0043da27be2ad2c.png", - "aggregators": ["PancakeCoinGecko", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0xd0ed8f9c119beb13b9fce318a28827d0574c37d6": { - "address": "0xd0ed8f9c119beb13b9fce318a28827d0574c37d6", - "symbol": "CPL", - "decimals": 18, - "name": "CATERPILLAR", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xd0ed8f9c119beb13b9fce318a28827d0574c37d6.png", - "aggregators": [ - "PancakeCoinMarketCap", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 4 - }, - "0x3b26fb89eab263cc6cb1e91f611bae8793f927ef": { - "address": "0x3b26fb89eab263cc6cb1e91f611bae8793f927ef", - "symbol": "VNST", - "decimals": 18, - "name": "VNST Stablecoin", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x3b26fb89eab263cc6cb1e91f611bae8793f927ef.png", - "aggregators": ["PancakeCoinGecko", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0x7ea42e53033b9c4bf975c1afcf17ff7ef25b04a4": { - "address": "0x7ea42e53033b9c4bf975c1afcf17ff7ef25b04a4", - "symbol": "DYNA", - "decimals": 18, - "name": "Dynachain", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x7ea42e53033b9c4bf975c1afcf17ff7ef25b04a4.png", - "aggregators": ["PancakeCoinGecko", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0xd5eaaac47bd1993d661bc087e15dfb079a7f3c19": { - "address": "0xd5eaaac47bd1993d661bc087e15dfb079a7f3c19", - "symbol": "KOMA", - "decimals": 18, - "name": "Koma Inu", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xd5eaaac47bd1993d661bc087e15dfb079a7f3c19.png", - "aggregators": ["PancakeExtended", "Rubic", "Squid", "Rango"], - "occurrences": 4 - }, - "0xa164bb2d282ee762d5bc2161cf9914c712732ed7": { - "address": "0xa164bb2d282ee762d5bc2161cf9914c712732ed7", - "symbol": "GTF", - "decimals": 18, - "name": "Goatly.farm", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xa164bb2d282ee762d5bc2161cf9914c712732ed7.png", - "aggregators": ["PancakeCoinGecko", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0xd58b8747307936d1324bf8c40f45687c7bacc6b9": { - "address": "0xd58b8747307936d1324bf8c40f45687c7bacc6b9", - "symbol": "MHCASH", - "decimals": 18, - "name": "MHCASH", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xd58b8747307936d1324bf8c40f45687c7bacc6b9.png", - "aggregators": ["PancakeCoinGecko", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0x2da91257961b87e69fa13b2e20931d517dc97597": { - "address": "0x2da91257961b87e69fa13b2e20931d517dc97597", - "symbol": "LEMX", - "decimals": 18, - "name": "Lemon", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x2da91257961b87e69fa13b2e20931d517dc97597.png", - "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0x55493e35e33fcf811571707ac5bf1dbcb658bafc": { - "address": "0x55493e35e33fcf811571707ac5bf1dbcb658bafc", - "symbol": "FATCAT", - "decimals": 9, - "name": "FAT CAT", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x55493e35e33fcf811571707ac5bf1dbcb658bafc.png", - "aggregators": ["PancakeCoinGecko", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0x2d5f3b0722acd35fbb749cb936dfdd93247bbc95": { - "address": "0x2d5f3b0722acd35fbb749cb936dfdd93247bbc95", - "symbol": "BABYBNB", - "decimals": 18, - "name": "Baby BNB", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x2d5f3b0722acd35fbb749cb936dfdd93247bbc95.png", - "aggregators": ["PancakeCoinGecko", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0xde009cb3371825bafb80a01004c58f8166ee13d5": { - "address": "0xde009cb3371825bafb80a01004c58f8166ee13d5", - "symbol": "LUD", - "decimals": 9, - "name": "Little Ugly Duck", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xde009cb3371825bafb80a01004c58f8166ee13d5.png", - "aggregators": ["PancakeCoinGecko", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0xdc49a53e1f15fd7fd522e0691cb570f442e9ca6c": { - "address": "0xdc49a53e1f15fd7fd522e0691cb570f442e9ca6c", - "symbol": "QGOLD", - "decimals": 3, - "name": "Quorium", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xdc49a53e1f15fd7fd522e0691cb570f442e9ca6c.png", - "aggregators": ["PancakeCoinGecko", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0x2fd2799e83a723b19026a979899dfb70bbf6bf6b": { - "address": "0x2fd2799e83a723b19026a979899dfb70bbf6bf6b", - "symbol": "JAIHO", - "decimals": 9, - "name": "Jaiho Crypto", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x2fd2799e83a723b19026a979899dfb70bbf6bf6b.png", - "aggregators": ["PancakeCoinGecko", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0xaf1736800d805723b9fc6a176badc1d189467bc8": { - "address": "0xaf1736800d805723b9fc6a176badc1d189467bc8", - "symbol": "DRA", - "decimals": 18, - "name": "Dracoo Point", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xaf1736800d805723b9fc6a176badc1d189467bc8.png", - "aggregators": ["PancakeCoinGecko", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0x5e61e8e2aadb381af29c3048671b2d4477764ada": { - "address": "0x5e61e8e2aadb381af29c3048671b2d4477764ada", - "symbol": "CLP", - "decimals": 18, - "name": "CLP", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x5e61e8e2aadb381af29c3048671b2d4477764ada.png", - "aggregators": ["PancakeCoinGecko", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0x04e3e226bedfd57252198443561b57c0a6456e9b": { - "address": "0x04e3e226bedfd57252198443561b57c0a6456e9b", - "symbol": "FAYA", - "decimals": 9, - "name": "FAYA", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x04e3e226bedfd57252198443561b57c0a6456e9b.png", - "aggregators": ["PancakeCoinGecko", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0x2885c2e374301d494208fc9c66ad22ced289a97f": { - "address": "0x2885c2e374301d494208fc9c66ad22ced289a97f", - "symbol": "FOX", - "decimals": 18, - "name": "Foxcon", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x2885c2e374301d494208fc9c66ad22ced289a97f.png", - "aggregators": ["PancakeCoinGecko", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0x9ee10d2e9571aecfe5a604af7fe71b96eba84b7b": { - "address": "0x9ee10d2e9571aecfe5a604af7fe71b96eba84b7b", - "symbol": "WLTK", - "decimals": 18, - "name": "Walletika", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x9ee10d2e9571aecfe5a604af7fe71b96eba84b7b.png", - "aggregators": ["PancakeCoinGecko", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0x719323e2f539d35fd7e549ddccb43e6bdba08e17": { - "address": "0x719323e2f539d35fd7e549ddccb43e6bdba08e17", - "symbol": "MBXN", - "decimals": 18, - "name": "UpBots Token", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x719323e2f539d35fd7e549ddccb43e6bdba08e17.png", - "aggregators": ["PancakeCoinGecko", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0x31de61d9a39cb9f479570bd3dc3ac93bc0402cdb": { - "address": "0x31de61d9a39cb9f479570bd3dc3ac93bc0402cdb", - "symbol": "NFTPUNK", - "decimals": 9, - "name": "NFTPunk.Finance", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x31de61d9a39cb9f479570bd3dc3ac93bc0402cdb.png", - "aggregators": ["PancakeCoinGecko", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0xe550a593d09fbc8dcd557b5c88cea6946a8b404a": { - "address": "0xe550a593d09fbc8dcd557b5c88cea6946a8b404a", - "symbol": "TDOGE", - "decimals": 8, - "name": "τDoge", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xe550a593d09fbc8dcd557b5c88cea6946a8b404a.png", - "aggregators": ["PancakeExtended", "Socket", "Rubic", "Sonarwatch"], - "occurrences": 4 - }, - "0xd5239b38b93b54a31b348afaac3edcdf9e3c546a": { - "address": "0xd5239b38b93b54a31b348afaac3edcdf9e3c546a", - "symbol": "HBIT", - "decimals": 18, - "name": "HashBit [OLD]", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xd5239b38b93b54a31b348afaac3edcdf9e3c546a.png", - "aggregators": ["PancakeCoinGecko", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0x18359cf655a444204e46f286edc445c9d30ffc54": { - "address": "0x18359cf655a444204e46f286edc445c9d30ffc54", - "symbol": "DOGEMOON", - "decimals": 18, - "name": "Dogemoon", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x18359cf655a444204e46f286edc445c9d30ffc54.png", - "aggregators": [ - "PancakeCoinMarketCap", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 4 - }, - "0x633237c6fa30fae46cc5bb22014da30e50a718cc": { - "address": "0x633237c6fa30fae46cc5bb22014da30e50a718cc", - "symbol": "FIWA", - "decimals": 18, - "name": "Defi Warrior", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x633237c6fa30fae46cc5bb22014da30e50a718cc.png", - "aggregators": ["PancakeCoinGecko", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0x6421531af54c7b14ea805719035ebf1e3661c44a": { - "address": "0x6421531af54c7b14ea805719035ebf1e3661c44a", - "symbol": "BLEO", - "decimals": 3, - "name": "BEP20 LEO", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x6421531af54c7b14ea805719035ebf1e3661c44a.png", - "aggregators": ["PancakeCoinGecko", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0x19b99162adaab85134e781ac0048c275c31b205a": { - "address": "0x19b99162adaab85134e781ac0048c275c31b205a", - "symbol": "TAUR", - "decimals": 18, - "name": "Marnotaur", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x19b99162adaab85134e781ac0048c275c31b205a.png", - "aggregators": ["PancakeCoinGecko", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0x81372c18c87f6d2fe91f416d7c8a109cea48c332": { - "address": "0x81372c18c87f6d2fe91f416d7c8a109cea48c332", - "symbol": "SWI", - "decimals": 4, - "name": "Swinca", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x81372c18c87f6d2fe91f416d7c8a109cea48c332.png", - "aggregators": ["PancakeCoinGecko", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0xe0167c41bea56432f8588a4ceff0f5f3642120e7": { - "address": "0xe0167c41bea56432f8588a4ceff0f5f3642120e7", - "symbol": "VELON", - "decimals": 9, - "name": "Viking Elon", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xe0167c41bea56432f8588a4ceff0f5f3642120e7.png", - "aggregators": ["PancakeCoinGecko", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0xd48d639f72ef29458b72cdc9a47a95fa46101529": { - "address": "0xd48d639f72ef29458b72cdc9a47a95fa46101529", - "symbol": "HKC", - "decimals": 12, - "name": "HelpKidz Coin", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xd48d639f72ef29458b72cdc9a47a95fa46101529.png", - "aggregators": ["PancakeCoinGecko", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0x00855c21754fe85fd4e38ac23d2b3e091b04a042": { - "address": "0x00855c21754fe85fd4e38ac23d2b3e091b04a042", - "symbol": "YKS", - "decimals": 9, - "name": "YourKiss", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x00855c21754fe85fd4e38ac23d2b3e091b04a042.png", - "aggregators": ["PancakeCoinGecko", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0xb700597d8425ced17677bc68042d7d92764acf59": { - "address": "0xb700597d8425ced17677bc68042d7d92764acf59", - "symbol": "FACE", - "decimals": 18, - "name": "FaceDAO", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xb700597d8425ced17677bc68042d7d92764acf59.png", - "aggregators": [ - "PancakeCoinMarketCap", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 4 - }, - "0x94df6e5bc05b6eb9eb65c918902f6f4b8edd8833": { - "address": "0x94df6e5bc05b6eb9eb65c918902f6f4b8edd8833", - "symbol": "DC", - "decimals": 18, - "name": "DavidCoin", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x94df6e5bc05b6eb9eb65c918902f6f4b8edd8833.png", - "aggregators": ["PancakeCoinGecko", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0xe9c1b765c3b69ff6178c7310fe3eb106421870a5": { - "address": "0xe9c1b765c3b69ff6178c7310fe3eb106421870a5", - "symbol": "BUFF", - "decimals": 18, - "name": "Buff Coin", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xe9c1b765c3b69ff6178c7310fe3eb106421870a5.png", - "aggregators": ["PancakeCoinGecko", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0x02a9d7162bd73c2b35c5cf6cdd585e91928c850a": { - "address": "0x02a9d7162bd73c2b35c5cf6cdd585e91928c850a", - "symbol": "BFLOKI", - "decimals": 9, - "name": "Baby Floki Inu", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x02a9d7162bd73c2b35c5cf6cdd585e91928c850a.png", - "aggregators": ["PancakeCoinGecko", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0xc2cb89bbb5bba6e21db1dfe13493dfd7dcbabd68": { - "address": "0xc2cb89bbb5bba6e21db1dfe13493dfd7dcbabd68", - "symbol": "$MANGA", - "decimals": 18, - "name": "Manga", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xc2cb89bbb5bba6e21db1dfe13493dfd7dcbabd68.png", - "aggregators": [ - "PancakeCoinMarketCap", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 4 - }, - "0xfa17b330bcc4e7f3e2456996d89a5a54ab044831": { - "address": "0xfa17b330bcc4e7f3e2456996d89a5a54ab044831", - "symbol": "$CRDN", - "decimals": 18, - "name": "Cardence", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xfa17b330bcc4e7f3e2456996d89a5a54ab044831.png", - "aggregators": [ - "PancakeCoinMarketCap", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 4 - }, - "0xb4bf64b17e270b50d00658e3c0e2fbdefabdd87b": { - "address": "0xb4bf64b17e270b50d00658e3c0e2fbdefabdd87b", - "symbol": "CHEESE", - "decimals": 18, - "name": "Cheese Swap", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xb4bf64b17e270b50d00658e3c0e2fbdefabdd87b.png", - "aggregators": ["PancakeCoinGecko", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0x17fd3caa66502c6f1cbd5600d8448f3af8f2aba1": { - "address": "0x17fd3caa66502c6f1cbd5600d8448f3af8f2aba1", - "symbol": "SPY", - "decimals": 0, - "name": "Smarty Pay", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x17fd3caa66502c6f1cbd5600d8448f3af8f2aba1.png", - "aggregators": ["PancakeCoinGecko", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0x1964dd991a98690578310ba826c3755dfc753e5c": { - "address": "0x1964dd991a98690578310ba826c3755dfc753e5c", - "symbol": "SCART", - "decimals": 18, - "name": "SCART360", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x1964dd991a98690578310ba826c3755dfc753e5c.png", - "aggregators": ["PancakeCoinGecko", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0x4a1ad6a5aee1915c5bc0104bd7e2671ed37aaf0e": { - "address": "0x4a1ad6a5aee1915c5bc0104bd7e2671ed37aaf0e", - "symbol": "GED", - "decimals": 18, - "name": "GreenDex", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x4a1ad6a5aee1915c5bc0104bd7e2671ed37aaf0e.png", - "aggregators": ["PancakeCoinGecko", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0xb21d59547140c9a028efb943e723e04015597e97": { - "address": "0xb21d59547140c9a028efb943e723e04015597e97", - "symbol": "MTP", - "decimals": 18, - "name": "MetaPuss", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xb21d59547140c9a028efb943e723e04015597e97.png", - "aggregators": ["PancakeCoinGecko", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0x991bb6093fa735d27cd1444b2ad8fdd95876fed5": { - "address": "0x991bb6093fa735d27cd1444b2ad8fdd95876fed5", - "symbol": "PTAS", - "decimals": 18, - "name": "La Peseta", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x991bb6093fa735d27cd1444b2ad8fdd95876fed5.png", - "aggregators": ["PancakeCoinGecko", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0x8a5652eb940dd3832a8426fbe5afbb01b0f96a14": { - "address": "0x8a5652eb940dd3832a8426fbe5afbb01b0f96a14", - "symbol": "PARA", - "decimals": 10, - "name": "Paraverse", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x8a5652eb940dd3832a8426fbe5afbb01b0f96a14.png", - "aggregators": ["PancakeCoinGecko", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0x95ca12cd249d27008a482009e101a8501cf3a64f": { - "address": "0x95ca12cd249d27008a482009e101a8501cf3a64f", - "symbol": "MOVE", - "decimals": 18, - "name": "MoveApp", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x95ca12cd249d27008a482009e101a8501cf3a64f.png", - "aggregators": ["PancakeCoinGecko", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0xf5469e4ecc5afb3ac13da5737f88dc4563ce8454": { - "address": "0xf5469e4ecc5afb3ac13da5737f88dc4563ce8454", - "symbol": "LAN", - "decimals": 18, - "name": "LAN Network", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xf5469e4ecc5afb3ac13da5737f88dc4563ce8454.png", - "aggregators": ["PancakeCoinGecko", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0x9e0335fb61958fe19bb120f3f8408b4297921820": { - "address": "0x9e0335fb61958fe19bb120f3f8408b4297921820", - "symbol": "FFE", - "decimals": 18, - "name": "Forbidden Fruit Energy", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x9e0335fb61958fe19bb120f3f8408b4297921820.png", - "aggregators": ["PancakeCoinGecko", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0x124123c7af9efd2a86f4d41daa88ac164d02a3d5": { - "address": "0x124123c7af9efd2a86f4d41daa88ac164d02a3d5", - "symbol": "GEC", - "decimals": 18, - "name": "GreenEnvironmentalCoins", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x124123c7af9efd2a86f4d41daa88ac164d02a3d5.png", - "aggregators": ["PancakeCoinGecko", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0x851da0bea7fe6db35c11c1d3a065a96e6b36acf1": { - "address": "0x851da0bea7fe6db35c11c1d3a065a96e6b36acf1", - "symbol": "OMT", - "decimals": 4, - "name": "Oracle Meta Technologies", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x851da0bea7fe6db35c11c1d3a065a96e6b36acf1.png", - "aggregators": ["PancakeCoinGecko", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0x0079914b3c6ff1867b62c2cf8f108126970eab6e": { - "address": "0x0079914b3c6ff1867b62c2cf8f108126970eab6e", - "symbol": "W3W", - "decimals": 18, - "name": "Web3 Whales", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x0079914b3c6ff1867b62c2cf8f108126970eab6e.png", - "aggregators": ["PancakeCoinGecko", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0xd4e9e6e5a91bf44e23d53985e65f8d7df43cdd20": { - "address": "0xd4e9e6e5a91bf44e23d53985e65f8d7df43cdd20", - "symbol": "CC", - "decimals": 18, - "name": "Crypto Clubs App [OLD]", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xd4e9e6e5a91bf44e23d53985e65f8d7df43cdd20.png", - "aggregators": ["PancakeCoinGecko", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0x6b4b961391fe2b1b2b5b7ae6da87bc95831448e0": { - "address": "0x6b4b961391fe2b1b2b5b7ae6da87bc95831448e0", - "symbol": "CTI", - "decimals": 9, - "name": "Community Inu", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x6b4b961391fe2b1b2b5b7ae6da87bc95831448e0.png", - "aggregators": ["PancakeCoinGecko", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0xca39370ab6cf858343cea824a1c784964e5bf247": { - "address": "0xca39370ab6cf858343cea824a1c784964e5bf247", - "symbol": "RTIME", - "decimals": 9, - "name": "RecTime", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xca39370ab6cf858343cea824a1c784964e5bf247.png", - "aggregators": ["PancakeCoinGecko", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0x09531ece451453d68f8c6399120f67f19fee4489": { - "address": "0x09531ece451453d68f8c6399120f67f19fee4489", - "symbol": "DAN", - "decimals": 18, - "name": "Dastra Network", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x09531ece451453d68f8c6399120f67f19fee4489.png", - "aggregators": ["PancakeCoinGecko", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0xac927db34e4648781a32a9a4b673cee28c4ec4fe": { - "address": "0xac927db34e4648781a32a9a4b673cee28c4ec4fe", - "symbol": "NXTU", - "decimals": 8, - "name": "4 Next Unicorn", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xac927db34e4648781a32a9a4b673cee28c4ec4fe.png", - "aggregators": ["PancakeCoinGecko", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0xc5d3455dfc04f04a5c1889c5486bf48551990256": { - "address": "0xc5d3455dfc04f04a5c1889c5486bf48551990256", - "symbol": "SWIFT", - "decimals": 18, - "name": "SwiftPad", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xc5d3455dfc04f04a5c1889c5486bf48551990256.png", - "aggregators": ["PancakeCoinGecko", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0x6f46a74ca99bc39249af47fb5101552f5b5c55d9": { - "address": "0x6f46a74ca99bc39249af47fb5101552f5b5c55d9", - "symbol": "XPP", - "decimals": 18, - "name": "Xpad.pro", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x6f46a74ca99bc39249af47fb5101552f5b5c55d9.png", - "aggregators": ["PancakeCoinGecko", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0xc01444175ff3c39047f1548507cdf2183dc55e06": { - "address": "0xc01444175ff3c39047f1548507cdf2183dc55e06", - "symbol": "W3F", - "decimals": 18, - "name": "Web3Frontier", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xc01444175ff3c39047f1548507cdf2183dc55e06.png", - "aggregators": ["PancakeCoinGecko", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0x296d1836658344e4257ec4c9d3c0fcb8312de87c": { - "address": "0x296d1836658344e4257ec4c9d3c0fcb8312de87c", - "symbol": "FOMO", - "decimals": 18, - "name": "FomoFi", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x296d1836658344e4257ec4c9d3c0fcb8312de87c.png", - "aggregators": ["PancakeCoinGecko", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0xf8ccea8707cfc155ef595fc25cb77696d4445fcc": { - "address": "0xf8ccea8707cfc155ef595fc25cb77696d4445fcc", - "symbol": "FOMOS", - "decimals": 18, - "name": "FomosFi", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xf8ccea8707cfc155ef595fc25cb77696d4445fcc.png", - "aggregators": ["PancakeCoinGecko", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0xdf5ba79f0fd70c6609666d5ed603710609a530ab": { - "address": "0xdf5ba79f0fd70c6609666d5ed603710609a530ab", - "symbol": "CFX", - "decimals": 18, - "name": "Cosmic Force Token v2", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xdf5ba79f0fd70c6609666d5ed603710609a530ab.png", - "aggregators": ["PancakeCoinGecko", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0x6d16370d523f7626b241b8040fd444dee055d20a": { - "address": "0x6d16370d523f7626b241b8040fd444dee055d20a", - "symbol": "ANDY", - "decimals": 18, - "name": "Andy Bsc", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x6d16370d523f7626b241b8040fd444dee055d20a.png", - "aggregators": ["PancakeCoinGecko", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0x17893dd8bf3f868f691b314abeb3ba8fd615e680": { - "address": "0x17893dd8bf3f868f691b314abeb3ba8fd615e680", - "symbol": "DFISH", - "decimals": 18, - "name": "DailyFish", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x17893dd8bf3f868f691b314abeb3ba8fd615e680.png", - "aggregators": ["PancakeCoinGecko", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0x49074051ad996828504d7f719fc5769ac942220d": { - "address": "0x49074051ad996828504d7f719fc5769ac942220d", - "symbol": "AGT", - "decimals": 18, - "name": "AVATAGO", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x49074051ad996828504d7f719fc5769ac942220d.png", - "aggregators": ["PancakeCoinGecko", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0x2f03d0b2f702884fa43aee8e092e83650c5670e9": { - "address": "0x2f03d0b2f702884fa43aee8e092e83650c5670e9", - "symbol": "VOID", - "decimals": 18, - "name": "The Great Void Token", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x2f03d0b2f702884fa43aee8e092e83650c5670e9.png", - "aggregators": ["PancakeCoinGecko", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0x25587c58d335a3c89058a5f12a6adf8c966a33d3": { - "address": "0x25587c58d335a3c89058a5f12a6adf8c966a33d3", - "symbol": "TRW", - "decimals": 18, - "name": "Traders Wallet [OLD]", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x25587c58d335a3c89058a5f12a6adf8c966a33d3.png", - "aggregators": ["PancakeCoinGecko", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0x97a143545c0f8200222c051ac0a2fc93acbe6ba2": { - "address": "0x97a143545c0f8200222c051ac0a2fc93acbe6ba2", - "symbol": "DFC", - "decimals": 8, - "name": "DefiConnect V2", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x97a143545c0f8200222c051ac0a2fc93acbe6ba2.png", - "aggregators": ["PancakeCoinGecko", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0x68de53b47be0dc566bf4673c748d58bbbad3deb1": { - "address": "0x68de53b47be0dc566bf4673c748d58bbbad3deb1", - "symbol": "DGR", - "decimals": 18, - "name": "DogeGrow", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x68de53b47be0dc566bf4673c748d58bbbad3deb1.png", - "aggregators": ["PancakeCoinGecko", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0x4e53522932608e61b6bd8d50cf15a5501054db4e": { - "address": "0x4e53522932608e61b6bd8d50cf15a5501054db4e", - "symbol": "ABOAT", - "decimals": 18, - "name": "Aboat Token", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x4e53522932608e61b6bd8d50cf15a5501054db4e.png", - "aggregators": ["PancakeCoinGecko", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0x5a04565ee1c90c84061ad357ae9e2f1c32d57dc6": { - "address": "0x5a04565ee1c90c84061ad357ae9e2f1c32d57dc6", - "symbol": "BABYBNBTIG", - "decimals": 9, - "name": "BabyBNBTiger", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x5a04565ee1c90c84061ad357ae9e2f1c32d57dc6.png", - "aggregators": [ - "PancakeCoinMarketCap", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 4 - }, - "0x4c906b99a2f45a47c8570b7a41ffe940f71676af": { - "address": "0x4c906b99a2f45a47c8570b7a41ffe940f71676af", - "symbol": "OPIP", - "decimals": 18, - "name": "OpiPets", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x4c906b99a2f45a47c8570b7a41ffe940f71676af.png", - "aggregators": ["PancakeCoinGecko", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0xbb25c03be85ca09662ecb599df0000b33c2c2c26": { - "address": "0xbb25c03be85ca09662ecb599df0000b33c2c2c26", - "symbol": "TLF", - "decimals": 6, - "name": "Tradeleaf", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xbb25c03be85ca09662ecb599df0000b33c2c2c26.png", - "aggregators": ["PancakeCoinGecko", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0x99c486b908434ae4adf567e9990a929854d0c955": { - "address": "0x99c486b908434ae4adf567e9990a929854d0c955", - "symbol": "GNIMB", - "decimals": 18, - "name": "Nimbus Platform GNIMB", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x99c486b908434ae4adf567e9990a929854d0c955.png", - "aggregators": ["PancakeCoinGecko", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0xe57f73eb27da9d17f90c994744d842e95700c100": { - "address": "0xe57f73eb27da9d17f90c994744d842e95700c100", - "symbol": "PEPEAI", - "decimals": 9, - "name": "Pepe AI", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xe57f73eb27da9d17f90c994744d842e95700c100.png", - "aggregators": ["PancakeCoinGecko", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0x2c29d6da871a6b90d7b4ae470079cdf5252df5f8": { - "address": "0x2c29d6da871a6b90d7b4ae470079cdf5252df5f8", - "symbol": "BENYKE", - "decimals": 9, - "name": "Benyke Finance", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x2c29d6da871a6b90d7b4ae470079cdf5252df5f8.png", - "aggregators": ["PancakeCoinGecko", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0xe846d164b88ed2e1209609fea3cf7a3d89d70d2d": { - "address": "0xe846d164b88ed2e1209609fea3cf7a3d89d70d2d", - "symbol": "HAWK", - "decimals": 18, - "name": "Hawk", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xe846d164b88ed2e1209609fea3cf7a3d89d70d2d.png", - "aggregators": ["PancakeCoinGecko", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0xe12359d6858402d10bcbf1bb1c75cf8e7e25270b": { - "address": "0xe12359d6858402d10bcbf1bb1c75cf8e7e25270b", - "symbol": "BCX", - "decimals": 18, - "name": "Big Coin", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xe12359d6858402d10bcbf1bb1c75cf8e7e25270b.png", - "aggregators": ["PancakeCoinGecko", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0xa9883ec06b42e77b7cd9a502eb418539a4eeda03": { - "address": "0xa9883ec06b42e77b7cd9a502eb418539a4eeda03", - "symbol": "SMBA", - "decimals": 9, - "name": "ShimbaINU", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xa9883ec06b42e77b7cd9a502eb418539a4eeda03.png", - "aggregators": ["PancakeCoinGecko", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0x0d67d1bec77e562a73a65eef5ed92ac46744671c": { - "address": "0x0d67d1bec77e562a73a65eef5ed92ac46744671c", - "symbol": "SCARCITY", - "decimals": 18, - "name": "SCARCITY", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x0d67d1bec77e562a73a65eef5ed92ac46744671c.png", - "aggregators": ["PancakeCoinGecko", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0x0305ce989f3055a6da8955fc52b615b0086a2157": { - "address": "0x0305ce989f3055a6da8955fc52b615b0086a2157", - "symbol": "JACE", - "decimals": 18, - "name": "Jace", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x0305ce989f3055a6da8955fc52b615b0086a2157.png", - "aggregators": ["PancakeCoinGecko", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0xca30e772e4bd5f38ed775e6f8c57c6ffcb3c931f": { - "address": "0xca30e772e4bd5f38ed775e6f8c57c6ffcb3c931f", - "symbol": "ZEDX", - "decimals": 9, - "name": "Zedxion", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xca30e772e4bd5f38ed775e6f8c57c6ffcb3c931f.png", - "aggregators": [ - "PancakeCoinMarketCap", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 4 - }, - "0xe855e5348923560940981882ab40a5ede6bd16a0": { - "address": "0xe855e5348923560940981882ab40a5ede6bd16a0", - "symbol": "AIP", - "decimals": 18, - "name": "AI Powers", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xe855e5348923560940981882ab40a5ede6bd16a0.png", - "aggregators": ["PancakeCoinGecko", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0x5a7a15f8d5daeae4e5ba880451cddf64fa2fae6d": { - "address": "0x5a7a15f8d5daeae4e5ba880451cddf64fa2fae6d", - "symbol": "PROMISE", - "decimals": 6, - "name": "Promise", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x5a7a15f8d5daeae4e5ba880451cddf64fa2fae6d.png", - "aggregators": ["PancakeCoinGecko", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0x218617d3250be4a1f182c28a1a94b1ab37d94235": { - "address": "0x218617d3250be4a1f182c28a1a94b1ab37d94235", - "symbol": "LUMOX", - "decimals": 18, - "name": "Lumox Studio", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x218617d3250be4a1f182c28a1a94b1ab37d94235.png", - "aggregators": ["PancakeCoinGecko", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0x0c0ae048d2d0b50e7d8a2870556419d6b59b6a47": { - "address": "0x0c0ae048d2d0b50e7d8a2870556419d6b59b6a47", - "symbol": "AGRF", - "decimals": 18, - "name": "AGRI FUTURE TOKEN", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x0c0ae048d2d0b50e7d8a2870556419d6b59b6a47.png", - "aggregators": ["PancakeCoinGecko", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0x166dfe78311914cf046ece73ab8667f5ee8fbaef": { - "address": "0x166dfe78311914cf046ece73ab8667f5ee8fbaef", - "symbol": "LCOM", - "decimals": 18, - "name": "LCOM", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x166dfe78311914cf046ece73ab8667f5ee8fbaef.png", - "aggregators": ["PancakeCoinGecko", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0xb0b5c93655b7932ac4516eb4fc4a8fff45b6b562": { - "address": "0xb0b5c93655b7932ac4516eb4fc4a8fff45b6b562", - "symbol": "GG", - "decimals": 18, - "name": "GameX", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xb0b5c93655b7932ac4516eb4fc4a8fff45b6b562.png", - "aggregators": ["PancakeCoinGecko", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0x0c9bb15b32334bdaa7ad319fa356dd3e8e184564": { - "address": "0x0c9bb15b32334bdaa7ad319fa356dd3e8e184564", - "symbol": "MOGUL", - "decimals": 18, - "name": "Marine Moguls", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x0c9bb15b32334bdaa7ad319fa356dd3e8e184564.png", - "aggregators": ["PancakeCoinGecko", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0x137ffd84025c582482e03d3a0b9f74c26dddfbad": { - "address": "0x137ffd84025c582482e03d3a0b9f74c26dddfbad", - "symbol": "HODL", - "decimals": 6, - "name": "HODL", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x137ffd84025c582482e03d3a0b9f74c26dddfbad.png", - "aggregators": ["PancakeCoinGecko", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0x1592c5704f9e8c20bf7707c5d42626cecda912c0": { - "address": "0x1592c5704f9e8c20bf7707c5d42626cecda912c0", - "symbol": "TODING", - "decimals": 18, - "name": "ToDing Protocol", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x1592c5704f9e8c20bf7707c5d42626cecda912c0.png", - "aggregators": ["PancakeCoinGecko", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0x0d4629ff6d6ca422178dc66a21eea0dfb182e72c": { - "address": "0x0d4629ff6d6ca422178dc66a21eea0dfb182e72c", - "symbol": "COPX", - "decimals": 18, - "name": "CopXToken", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x0d4629ff6d6ca422178dc66a21eea0dfb182e72c.png", - "aggregators": ["PancakeCoinGecko", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0x76b560b628f74bf192be09f0449abef8e456be79": { - "address": "0x76b560b628f74bf192be09f0449abef8e456be79", - "symbol": "BABYCATE", - "decimals": 9, - "name": "BabyCate", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x76b560b628f74bf192be09f0449abef8e456be79.png", - "aggregators": ["PancakeCoinGecko", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0x726a54e04f394b6e44e58a2d7cb0fec61361d10e": { - "address": "0x726a54e04f394b6e44e58a2d7cb0fec61361d10e", - "symbol": "NAWS", - "decimals": 18, - "name": "NAWS.AI", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x726a54e04f394b6e44e58a2d7cb0fec61361d10e.png", - "aggregators": ["PancakeCoinGecko", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0xb299b7697d7b63b7c8616a120c0fe7a70db2f59b": { - "address": "0xb299b7697d7b63b7c8616a120c0fe7a70db2f59b", - "symbol": "PDOGE", - "decimals": 18, - "name": "Poor Doge", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xb299b7697d7b63b7c8616a120c0fe7a70db2f59b.png", - "aggregators": ["PancakeCoinGecko", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0xd10d6f1d4b905b67735a62079743723e6f3c19c3": { - "address": "0xd10d6f1d4b905b67735a62079743723e6f3c19c3", - "symbol": "BDOGITO", - "decimals": 18, - "name": "BullDogito", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xd10d6f1d4b905b67735a62079743723e6f3c19c3.png", - "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0x8033064fe1df862271d4546c281afb581ee25c4a": { - "address": "0x8033064fe1df862271d4546c281afb581ee25c4a", - "symbol": "SPS", - "decimals": 8, - "name": "Sparklife", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x8033064fe1df862271d4546c281afb581ee25c4a.png", - "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0x48c9473e28d0d76e9691149c9c0816e6b030ac62": { - "address": "0x48c9473e28d0d76e9691149c9c0816e6b030ac62", - "symbol": "NGY", - "decimals": 18, - "name": "NAGAYA", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x48c9473e28d0d76e9691149c9c0816e6b030ac62.png", - "aggregators": ["PancakeCoinGecko", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0x465707181acba42ed01268a33f0507e320a154bd": { - "address": "0x465707181acba42ed01268a33f0507e320a154bd", - "symbol": "STEP", - "decimals": 18, - "name": "Step", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x465707181acba42ed01268a33f0507e320a154bd.png", - "aggregators": ["PancakeCoinGecko", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0x01da6501d1083464f9a2c9a8cacf89f2dc160a97": { - "address": "0x01da6501d1083464f9a2c9a8cacf89f2dc160a97", - "symbol": "TQS", - "decimals": 18, - "name": "Torq Swap", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x01da6501d1083464f9a2c9a8cacf89f2dc160a97.png", - "aggregators": ["PancakeCoinGecko", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0xd2cdfd5d26dfa1d11116b9ed7dbd7c6b88c6e1d3": { - "address": "0xd2cdfd5d26dfa1d11116b9ed7dbd7c6b88c6e1d3", - "symbol": "BLK", - "decimals": 18, - "name": "BlackCoin", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xd2cdfd5d26dfa1d11116b9ed7dbd7c6b88c6e1d3.png", - "aggregators": [ - "PancakeCoinMarketCap", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 4 - }, - "0x3028b4395f98777123c7da327010c40f3c7cc4ef": { - "address": "0x3028b4395f98777123c7da327010c40f3c7cc4ef", - "symbol": "AUC", - "decimals": 18, - "name": "Auctus", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x3028b4395f98777123c7da327010c40f3c7cc4ef.png", - "aggregators": ["PancakeCoinGecko", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0x304fc73e86601a61a6c6db5b0eafea587622acdc": { - "address": "0x304fc73e86601a61a6c6db5b0eafea587622acdc", - "symbol": "COT", - "decimals": 18, - "name": "CoTrader", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x304fc73e86601a61a6c6db5b0eafea587622acdc.png", - "aggregators": [ - "PancakeCoinMarketCap", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 4 - }, - "0xdfc3829b127761a3218bfcee7fc92e1232c9d116": { - "address": "0xdfc3829b127761a3218bfcee7fc92e1232c9d116", - "symbol": "PRCY", - "decimals": 8, - "name": "PRivaCY Coin", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xdfc3829b127761a3218bfcee7fc92e1232c9d116.png", - "aggregators": [ - "PancakeCoinMarketCap", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 4 - }, - "0x6cd871fb811224aa23b6bf1646177cdfe5106416": { - "address": "0x6cd871fb811224aa23b6bf1646177cdfe5106416", - "symbol": "GTC", - "decimals": 4, - "name": "Global Trust Coin", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x6cd871fb811224aa23b6bf1646177cdfe5106416.png", - "aggregators": ["PancakeCoinGecko", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0x70802af0ba10dd5bb33276b5b37574b6451db3d9": { - "address": "0x70802af0ba10dd5bb33276b5b37574b6451db3d9", - "symbol": "UDO", - "decimals": 18, - "name": "Unido", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x70802af0ba10dd5bb33276b5b37574b6451db3d9.png", - "aggregators": [ - "PancakeCoinMarketCap", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 4 - }, - "0x0af55d5ff28a3269d69b98680fd034f115dd53ac": { - "address": "0x0af55d5ff28a3269d69b98680fd034f115dd53ac", - "symbol": "BSL", - "decimals": 8, - "name": "BankSocial", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x0af55d5ff28a3269d69b98680fd034f115dd53ac.png", - "aggregators": ["PancakeCoinGecko", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0x9b208b117b2c4f76c1534b6f006b033220a681a4": { - "address": "0x9b208b117b2c4f76c1534b6f006b033220a681a4", - "symbol": "DINGO", - "decimals": 8, - "name": "Dingocoin", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x9b208b117b2c4f76c1534b6f006b033220a681a4.png", - "aggregators": [ - "PancakeCoinMarketCap", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 4 - }, - "0xa0cb0ce7c6d93a7ebd72952feb4407dddee8a194": { - "address": "0xa0cb0ce7c6d93a7ebd72952feb4407dddee8a194", - "symbol": "SHIBAKEN", - "decimals": 0, - "name": "Shibaken Finance", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xa0cb0ce7c6d93a7ebd72952feb4407dddee8a194.png", - "aggregators": ["PancakeCoinGecko", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0x8cd29d79f9376f353c493a7f2ff9d27df8d372de": { - "address": "0x8cd29d79f9376f353c493a7f2ff9d27df8d372de", - "symbol": "WFDP", - "decimals": 18, - "name": "WFDP", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x8cd29d79f9376f353c493a7f2ff9d27df8d372de.png", - "aggregators": ["PancakeCoinGecko", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0x7588df009c3d82378be6ab81f2108fa963c10fc8": { - "address": "0x7588df009c3d82378be6ab81f2108fa963c10fc8", - "symbol": "FITFI", - "decimals": 18, - "name": "Step App", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x7588df009c3d82378be6ab81f2108fa963c10fc8.png", - "aggregators": ["PancakeCoinGecko", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0x156ab3346823b651294766e23e6cf87254d68962": { - "address": "0x156ab3346823b651294766e23e6cf87254d68962", - "symbol": "LUNC", - "decimals": 6, - "name": "Terra Classic (Wormhole)", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x156ab3346823b651294766e23e6cf87254d68962.png", - "aggregators": [ - "PancakeCoinMarketCap", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 4 - }, - "0x524bc91dc82d6b90ef29f76a3ecaabafffd490bc": { - "address": "0x524bc91dc82d6b90ef29f76a3ecaabafffd490bc", - "symbol": "USDTET", - "decimals": 6, - "name": "Bridged Tether (Wormhole Ethereum)", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x524bc91dc82d6b90ef29f76a3ecaabafffd490bc.png", - "aggregators": ["PancakeExtended", "Socket", "Rubic", "Sonarwatch"], - "occurrences": 4 - }, - "0xc11158c5da9db1d553ed28f0c2ba1cbedd42cfcb": { - "address": "0xc11158c5da9db1d553ed28f0c2ba1cbedd42cfcb", - "symbol": "PAW", - "decimals": 18, - "name": "PAW", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xc11158c5da9db1d553ed28f0c2ba1cbedd42cfcb.png", - "aggregators": [ - "PancakeCoinMarketCap", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 4 - }, - "0x52d134c6db5889fad3542a09eaf7aa90c0fdf9e4": { - "address": "0x52d134c6db5889fad3542a09eaf7aa90c0fdf9e4", - "symbol": "BIBTA", - "decimals": 18, - "name": "Backed IBTA $ Treasury Bond 1-3yr", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x52d134c6db5889fad3542a09eaf7aa90c0fdf9e4.png", - "aggregators": ["PancakeCoinGecko", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0x9f02af2d749ee3745fb3bd6ef76f1b5e4947cf9f": { - "address": "0x9f02af2d749ee3745fb3bd6ef76f1b5e4947cf9f", - "symbol": "KEK", - "decimals": 18, - "name": "Pepe Prophet", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x9f02af2d749ee3745fb3bd6ef76f1b5e4947cf9f.png", - "aggregators": ["PancakeCoinGecko", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0x1236ea13c7339287cd00ab196aaa8217006b04dc": { - "address": "0x1236ea13c7339287cd00ab196aaa8217006b04dc", - "symbol": "EPL", - "decimals": 18, - "name": "Epic League", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x1236ea13c7339287cd00ab196aaa8217006b04dc.png", - "aggregators": ["PancakeCoinGecko", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0x8f0f56472c3e5730b1ea2f444e7829288da261e6": { - "address": "0x8f0f56472c3e5730b1ea2f444e7829288da261e6", - "symbol": "RMAV", - "decimals": 18, - "name": "Rogue MAV", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x8f0f56472c3e5730b1ea2f444e7829288da261e6.png", - "aggregators": ["PancakeCoinGecko", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0x347862372f7c8f83d69025234367ac11c5241db3": { - "address": "0x347862372f7c8f83d69025234367ac11c5241db3", - "symbol": "KIIRO", - "decimals": 8, - "name": "Kiirocoin", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x347862372f7c8f83d69025234367ac11c5241db3.png", - "aggregators": ["PancakeCoinGecko", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0x04c0599ae5a44757c0af6f9ec3b93da8976c150a": { - "address": "0x04c0599ae5a44757c0af6f9ec3b93da8976c150a", - "symbol": "WEETH", - "decimals": 18, - "name": "Wrapped eETH", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x04c0599ae5a44757c0af6f9ec3b93da8976c150a.png", - "aggregators": ["PancakeExtended", "LiFi", "Rubic", "Rango"], - "occurrences": 4 - }, - "0x2f11eeee0bf21e7661a22dbbbb9068f4ad191b86": { - "address": "0x2f11eeee0bf21e7661a22dbbbb9068f4ad191b86", - "symbol": "BNIU", - "decimals": 18, - "name": "Backed NIU Technologies", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x2f11eeee0bf21e7661a22dbbbb9068f4ad191b86.png", - "aggregators": ["PancakeCoinGecko", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0x5db5efaea47662677f2d401504520ce2ea866638": { - "address": "0x5db5efaea47662677f2d401504520ce2ea866638", - "symbol": "XCCX", - "decimals": 4, - "name": "BlockChainCoinX", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x5db5efaea47662677f2d401504520ce2ea866638.png", - "aggregators": ["PancakeCoinGecko", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0xd711d7d893de57dc13ff465763218770bd42db1d": { - "address": "0xd711d7d893de57dc13ff465763218770bd42db1d", - "symbol": "EGBP", - "decimals": 18, - "name": "ARYZE eGBP", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xd711d7d893de57dc13ff465763218770bd42db1d.png", - "aggregators": ["PancakeCoinGecko", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0x653aab62056b92641116d63927de6141d780e596": { - "address": "0x653aab62056b92641116d63927de6141d780e596", - "symbol": "ACHF", - "decimals": 18, - "name": "Anchored Coins ACHF", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x653aab62056b92641116d63927de6141d780e596.png", - "aggregators": ["PancakeCoinGecko", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0x039d2e8f097331278bd6c1415d839310e0d5ece4": { - "address": "0x039d2e8f097331278bd6c1415d839310e0d5ece4", - "symbol": "LINDA", - "decimals": 18, - "name": "Linda", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x039d2e8f097331278bd6c1415d839310e0d5ece4.png", - "aggregators": ["PancakeCoinGecko", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0xaf42a5df3c1c1427da8fc0326bd7b030a9367e78": { - "address": "0xaf42a5df3c1c1427da8fc0326bd7b030a9367e78", - "symbol": "BSKT", - "decimals": 5, - "name": "Basket", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xaf42a5df3c1c1427da8fc0326bd7b030a9367e78.png", - "aggregators": ["PancakeCoinGecko", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0x334ed8117a7cd5efa17681093c3e66af61f877c1": { - "address": "0x334ed8117a7cd5efa17681093c3e66af61f877c1", - "symbol": "AGUS", - "decimals": 18, - "name": "AGUS", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x334ed8117a7cd5efa17681093c3e66af61f877c1.png", - "aggregators": ["PancakeCoinGecko", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0xa4e8e73c8be170528385bbce78172c891f1febd7": { - "address": "0xa4e8e73c8be170528385bbce78172c891f1febd7", - "symbol": "MVP", - "decimals": 18, - "name": "MAGA VP", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xa4e8e73c8be170528385bbce78172c891f1febd7.png", - "aggregators": ["PancakeCoinGecko", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0xe309c0fe37d3696cf8c13a629dc43eaefc077418": { - "address": "0xe309c0fe37d3696cf8c13a629dc43eaefc077418", - "symbol": "SDUSD", - "decimals": 18, - "name": "Davos Protocol Staked DUSD", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xe309c0fe37d3696cf8c13a629dc43eaefc077418.png", - "aggregators": ["PancakeCoinGecko", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0x644c545703f57a4b905f4c558f52342a206e2c55": { - "address": "0x644c545703f57a4b905f4c558f52342a206e2c55", - "symbol": "JARVIS", - "decimals": 18, - "name": "Jarvis", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x644c545703f57a4b905f4c558f52342a206e2c55.png", - "aggregators": ["PancakeCoinGecko", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0x1d7b5e06fdbe4fd33f5c64c081e32b5d539751d0": { - "address": "0x1d7b5e06fdbe4fd33f5c64c081e32b5d539751d0", - "symbol": "AMCON", - "decimals": 18, - "name": "AMC Entertainment (Ondo Tokenized)", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x1d7b5e06fdbe4fd33f5c64c081e32b5d539751d0.png", - "aggregators": ["CoinGecko", "Rubic", "Rango", "Ondo"], - "occurrences": 4, - "rwaData": { - "market": { - "nextOpen": "2026-05-19T13:31:00.000Z", - "nextClose": "2026-05-18T19:59:00.000Z" - }, - "nextPause": { - "start": null, - "end": null - }, - "ticker": "AMC", - "instrumentType": "stock" - } - }, - "0x91fc7371d6de682a1e8cfcb4eb7da693312a03a4": { - "address": "0x91fc7371d6de682a1e8cfcb4eb7da693312a03a4", - "symbol": "BILION", - "decimals": 18, - "name": "Bilibili (Ondo Tokenized)", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x91fc7371d6de682a1e8cfcb4eb7da693312a03a4.png", - "aggregators": ["CoinGecko", "Rubic", "Rango", "Ondo"], - "occurrences": 4, - "rwaData": { - "market": { - "nextOpen": "2026-05-18T20:01:00.000Z", - "nextClose": "2026-05-18T19:59:00.000Z" - }, - "nextPause": { - "start": "2026-05-19T09:00:00.000Z", - "end": "2026-05-19T13:31:00.000Z" - }, - "ticker": "BILI", - "instrumentType": "stock" - } - }, - "0xe778a2e5d953c82eb9475cf3b87654226a867344": { - "address": "0xe778a2e5d953c82eb9475cf3b87654226a867344", - "symbol": "XYZON", - "decimals": 18, - "name": "Block (Ondo Tokenized)", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xe778a2e5d953c82eb9475cf3b87654226a867344.png", - "aggregators": ["CoinGecko", "Rubic", "Rango", "Ondo"], - "occurrences": 4, - "rwaData": { - "market": { - "nextOpen": "2026-05-19T00:05:00.000Z", - "nextClose": "2026-05-18T19:59:00.000Z" - }, - "nextPause": { - "start": null, - "end": null - }, - "ticker": "XYZ", - "instrumentType": "stock" - } - }, - "0xfbe22d27b6e153244882fd7bdfe7c6109918281b": { - "address": "0xfbe22d27b6e153244882fd7bdfe7c6109918281b", - "symbol": "BLSHON", - "decimals": 18, - "name": "Bullish (Ondo Tokenized)", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xfbe22d27b6e153244882fd7bdfe7c6109918281b.png", - "aggregators": ["CoinGecko", "Rubic", "Rango", "Ondo"], - "occurrences": 4, - "rwaData": { - "market": { - "nextOpen": "2026-05-19T13:31:00.000Z", - "nextClose": "2026-05-18T19:59:00.000Z" - }, - "nextPause": { - "start": null, - "end": null - }, - "ticker": "BLSH", - "instrumentType": "stock" - } - }, - "0x817942d5de16092656568e9f67f54ccb462f8989": { - "address": "0x817942d5de16092656568e9f67f54ccb462f8989", - "symbol": "GEMION", - "decimals": 18, - "name": "Gemini Space Station (Ondo Tokenized)", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x817942d5de16092656568e9f67f54ccb462f8989.png", - "aggregators": ["CoinGecko", "Rubic", "Rango", "Ondo"], - "occurrences": 4, - "rwaData": { - "market": { - "nextOpen": "2026-05-19T13:31:00.000Z", - "nextClose": "2026-05-18T19:59:00.000Z" - }, - "nextPause": { - "start": null, - "end": null - }, - "ticker": "GEMI", - "instrumentType": "stock" - } - }, - "0xab2f74804c022c5249d52e743af4340e42f5f3b6": { - "address": "0xab2f74804c022c5249d52e743af4340e42f5f3b6", - "symbol": "GRABON", - "decimals": 18, - "name": "Grab Holdings (Ondo Tokenized)", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xab2f74804c022c5249d52e743af4340e42f5f3b6.png", - "aggregators": ["CoinGecko", "Rubic", "Rango", "Ondo"], - "occurrences": 4, - "rwaData": { - "market": { - "nextOpen": "2026-05-19T13:31:00.000Z", - "nextClose": "2026-05-18T19:59:00.000Z" - }, - "nextPause": { - "start": null, - "end": null - }, - "ticker": "GRAB", - "instrumentType": "stock" - } - }, - "0x20cce48d767ed68cbba7727c4c504efe5bcb626c": { - "address": "0x20cce48d767ed68cbba7727c4c504efe5bcb626c", - "symbol": "GRNDON", - "decimals": 18, - "name": "Grindr (Ondo Tokenized)", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x20cce48d767ed68cbba7727c4c504efe5bcb626c.png", - "aggregators": ["CoinGecko", "Rubic", "Rango", "Ondo"], - "occurrences": 4, - "rwaData": { - "market": { - "nextOpen": "2026-05-19T13:31:00.000Z", - "nextClose": "2026-05-18T19:59:00.000Z" - }, - "nextPause": { - "start": null, - "end": null - }, - "ticker": "GRND", - "instrumentType": "stock" - } - }, - "0x31dabf49e4bc1af1456c1819cb6a2562154e92f3": { - "address": "0x31dabf49e4bc1af1456c1819cb6a2562154e92f3", - "symbol": "HDON", - "decimals": 18, - "name": "Home Depot (Ondo Tokenized)", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x31dabf49e4bc1af1456c1819cb6a2562154e92f3.png", - "aggregators": ["CoinGecko", "Rubic", "Rango", "Ondo"], - "occurrences": 4, - "rwaData": { - "market": { - "nextOpen": "2026-05-19T13:31:00.000Z", - "nextClose": "2026-05-18T19:59:00.000Z" - }, - "nextPause": { - "start": "2026-05-19T09:00:00.000Z", - "end": "2026-05-19T13:31:00.000Z" - }, - "ticker": "HD", - "instrumentType": "stock" - } - }, - "0x784584933c2192caa062e90d8140d94768ce62d8": { - "address": "0x784584933c2192caa062e90d8140d94768ce62d8", - "symbol": "ISRGON", - "decimals": 18, - "name": "Intuitive Surgical (Ondo Tokenized)", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x784584933c2192caa062e90d8140d94768ce62d8.png", - "aggregators": ["CoinGecko", "Rubic", "Rango", "Ondo"], - "occurrences": 4, - "rwaData": { - "market": { - "nextOpen": "2026-05-18T20:01:00.000Z", - "nextClose": "2026-05-18T19:59:00.000Z" - }, - "nextPause": { - "start": null, - "end": null - }, - "ticker": "ISRG", - "instrumentType": "stock" - } - }, - "0xfc2067e3e6a289c205151d96ef67a032f339566d": { - "address": "0xfc2067e3e6a289c205151d96ef67a032f339566d", - "symbol": "DBCON", - "decimals": 18, - "name": "Invesco DB Commodity Index Tracking Fund (Ondo Tokenized)", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xfc2067e3e6a289c205151d96ef67a032f339566d.png", - "aggregators": ["CoinGecko", "Rubic", "Rango", "Ondo"], - "occurrences": 4, - "rwaData": { - "market": { - "nextOpen": "2026-05-19T13:31:00.000Z", - "nextClose": "2026-05-18T19:59:00.000Z" - }, - "nextPause": { - "start": null, - "end": null - }, - "ticker": "DBC", - "instrumentType": "stock" - } - }, - "0x158734153f354cb326ee690c3d55f810dcb0fc90": { - "address": "0x158734153f354cb326ee690c3d55f810dcb0fc90", - "symbol": "VTION", - "decimals": 18, - "name": "Vanguard Total Stock Market ETF (Ondo Tokenized)", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x158734153f354cb326ee690c3d55f810dcb0fc90.png", - "aggregators": ["CoinGecko", "Rubic", "Rango", "Ondo"], - "occurrences": 4, - "rwaData": { - "market": { - "nextOpen": "2026-05-18T20:01:00.000Z", - "nextClose": "2026-05-18T19:59:00.000Z" - }, - "nextPause": { - "start": null, - "end": null - }, - "ticker": "VTI", - "instrumentType": "stock" - } - }, - "0xc2dd31b1b3a2f515ce0d48de712c6744c3475170": { - "address": "0xc2dd31b1b3a2f515ce0d48de712c6744c3475170", - "symbol": "VTVON", - "decimals": 18, - "name": "Vanguard Value ETF (Ondo Tokenized)", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xc2dd31b1b3a2f515ce0d48de712c6744c3475170.png", - "aggregators": ["CoinGecko", "Rubic", "Rango", "Ondo"], - "occurrences": 4, - "rwaData": { - "market": { - "nextOpen": "2026-05-18T20:01:00.000Z", - "nextClose": "2026-05-18T19:59:00.000Z" - }, - "nextPause": { - "start": null, - "end": null - }, - "ticker": "VTV", - "instrumentType": "stock" - } - }, - "0xdad07d0ca26ed4109bc00893dbee3ed4ce8ce2a4": { - "address": "0xdad07d0ca26ed4109bc00893dbee3ed4ce8ce2a4", - "symbol": "CIFRON", - "decimals": 18, - "name": "Cipher Mining (Ondo Tokenized)", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xdad07d0ca26ed4109bc00893dbee3ed4ce8ce2a4.png", - "aggregators": ["CoinGecko", "Rubic", "Rango", "Ondo"], - "occurrences": 4, - "rwaData": { - "market": { - "nextOpen": "2026-05-19T13:31:00.000Z", - "nextClose": "2026-05-18T19:59:00.000Z" - }, - "nextPause": { - "start": null, - "end": null - }, - "ticker": "CIFR", - "instrumentType": "stock" - } - }, - "0x620477782cea4c4171165396f8014edef83a13da": { - "address": "0x620477782cea4c4171165396f8014edef83a13da", - "symbol": "FIGRON", - "decimals": 18, - "name": "Figure Technology Solutions (Ondo Tokenized)", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x620477782cea4c4171165396f8014edef83a13da.png", - "aggregators": ["CoinGecko", "Rubic", "Rango", "Ondo"], - "occurrences": 4, - "rwaData": { - "market": { - "nextOpen": "2026-05-19T13:31:00.000Z", - "nextClose": "2026-05-18T19:59:00.000Z" - }, - "nextPause": { - "start": null, - "end": null - }, - "ticker": "FIGR", - "instrumentType": "stock" - } - }, - "0xb1aba049c42b6fe811766eba61f51f11c57acc4b": { - "address": "0xb1aba049c42b6fe811766eba61f51f11c57acc4b", - "symbol": "FON", - "decimals": 18, - "name": "Ford Motor (Ondo Tokenized)", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xb1aba049c42b6fe811766eba61f51f11c57acc4b.png", - "aggregators": ["CoinGecko", "Rubic", "Rango", "Ondo"], - "occurrences": 4, - "rwaData": { - "market": { - "nextOpen": "2026-05-18T20:01:00.000Z", - "nextClose": "2026-05-18T19:59:00.000Z" - }, - "nextPause": { - "start": null, - "end": null - }, - "ticker": "F", - "instrumentType": "stock" - } - }, - "0xbcf7d958791152128710565a5fc6f68342ed71c8": { - "address": "0xbcf7d958791152128710565a5fc6f68342ed71c8", - "symbol": "TMOON", - "decimals": 18, - "name": "Thermo Fisher Scientific (Ondo Tokenized)", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xbcf7d958791152128710565a5fc6f68342ed71c8.png", - "aggregators": ["CoinGecko", "Rubic", "Rango", "Ondo"], - "occurrences": 4, - "rwaData": { - "market": { - "nextOpen": "2026-05-18T20:01:00.000Z", - "nextClose": "2026-05-18T19:59:00.000Z" - }, - "nextPause": { - "start": null, - "end": null - }, - "ticker": "TMO", - "instrumentType": "stock" - } - }, - "0xd7e3317d54473dab04135fb0676623f237ff5ca9": { - "address": "0xd7e3317d54473dab04135fb0676623f237ff5ca9", - "symbol": "CLOION", - "decimals": 18, - "name": "VanEck CLO ETF (Ondo Tokenized)", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xd7e3317d54473dab04135fb0676623f237ff5ca9.png", - "aggregators": ["CoinGecko", "Rubic", "Rango", "Ondo"], - "occurrences": 4, - "rwaData": { - "market": { - "nextOpen": "2026-05-19T13:31:00.000Z", - "nextClose": "2026-05-18T19:59:00.000Z" - }, - "nextPause": { - "start": null, - "end": null - }, - "ticker": "CLOI", - "instrumentType": "stock" - } - }, - "0x1cd89241b26fcdc421fd02907d6504c8abbfe1bc": { - "address": "0x1cd89241b26fcdc421fd02907d6504c8abbfe1bc", - "symbol": "DGRWON", - "decimals": 18, - "name": "WisdomTree US Quality Dividend Growth Fund (Ondo Tokenized)", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x1cd89241b26fcdc421fd02907d6504c8abbfe1bc.png", - "aggregators": ["CoinGecko", "Rubic", "Rango", "Ondo"], - "occurrences": 4, - "rwaData": { - "market": { - "nextOpen": "2026-05-19T13:31:00.000Z", - "nextClose": "2026-05-18T19:59:00.000Z" - }, - "nextPause": { - "start": null, - "end": null - }, - "ticker": "DGRW", - "instrumentType": "stock" - } - }, - "0x0e246e05212dbbd78a354c072a92b4e5723b2fa0": { - "address": "0x0e246e05212dbbd78a354c072a92b4e5723b2fa0", - "symbol": "ADION", - "decimals": 18, - "name": "Analog Devices (Ondo Tokenized)", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x0e246e05212dbbd78a354c072a92b4e5723b2fa0.png", - "aggregators": ["CoinGecko", "Rubic", "Rango", "Ondo"], - "occurrences": 4, - "rwaData": { - "market": { - "nextOpen": "2026-05-18T20:01:00.000Z", - "nextClose": "2026-05-18T19:59:00.000Z" - }, - "nextPause": { - "start": "2026-05-20T09:00:00.000Z", - "end": "2026-05-20T13:31:00.000Z" - }, - "ticker": "ADI", - "instrumentType": "stock" - } - }, - "0x5ecc352c4640f1d26bd231dbbd171f40f7d0eec6": { - "address": "0x5ecc352c4640f1d26bd231dbbd171f40f7d0eec6", - "symbol": "AMATON", - "decimals": 18, - "name": "Applied Materials (Ondo Tokenized)", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x5ecc352c4640f1d26bd231dbbd171f40f7d0eec6.png", - "aggregators": ["CoinGecko", "Rubic", "Rango", "Ondo"], - "occurrences": 4, - "rwaData": { - "market": { - "nextOpen": "2026-05-18T20:01:00.000Z", - "nextClose": "2026-05-18T19:59:00.000Z" - }, - "nextPause": { - "start": "2026-05-20T23:52:00.000Z", - "end": "2026-05-21T00:12:00.000Z" - }, - "ticker": "AMAT", - "instrumentType": "stock" - } - }, - "0xd615468088b19fb9d4f03cb3ce9e33876ff3db99": { - "address": "0xd615468088b19fb9d4f03cb3ce9e33876ff3db99", - "symbol": "BACON", - "decimals": 18, - "name": "Bank of America (Ondo Tokenized)", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xd615468088b19fb9d4f03cb3ce9e33876ff3db99.png", - "aggregators": ["CoinGecko", "Rubic", "Rango", "Ondo"], - "occurrences": 4, - "rwaData": { - "market": { - "nextOpen": "2026-05-18T20:01:00.000Z", - "nextClose": "2026-05-18T19:59:00.000Z" - }, - "nextPause": { - "start": "2026-06-04T23:52:00.000Z", - "end": "2026-06-05T00:12:00.000Z" - }, - "ticker": "BAC", - "instrumentType": "stock" - } - }, - "0xe5ba472c98b7e4695bd856290de66bdedaffc123": { - "address": "0xe5ba472c98b7e4695bd856290de66bdedaffc123", - "symbol": "SCHWON", - "decimals": 18, - "name": "Charles Schwab (Ondo Tokenized)", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xe5ba472c98b7e4695bd856290de66bdedaffc123.png", - "aggregators": ["CoinGecko", "Rubic", "Rango", "Ondo"], - "occurrences": 4, - "rwaData": { - "market": { - "nextOpen": "2026-05-19T00:05:00.000Z", - "nextClose": "2026-05-18T19:59:00.000Z" - }, - "nextPause": { - "start": null, - "end": null - }, - "ticker": "SCHW", - "instrumentType": "stock" - } - }, - "0x0d586b51a90dc999f9bb6a0506da7f034a1d3a2e": { - "address": "0x0d586b51a90dc999f9bb6a0506da7f034a1d3a2e", - "symbol": "COPON", - "decimals": 18, - "name": "ConocoPhillips (Ondo Tokenized)", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x0d586b51a90dc999f9bb6a0506da7f034a1d3a2e.png", - "aggregators": ["CoinGecko", "Rubic", "Rango", "Ondo"], - "occurrences": 4, - "rwaData": { - "market": { - "nextOpen": "2026-05-18T20:01:00.000Z", - "nextClose": "2026-05-18T19:59:00.000Z" - }, - "nextPause": { - "start": null, - "end": null - }, - "ticker": "COP", - "instrumentType": "stock" - } - }, - "0x19904bc04c09e5d29ed216ddd105bdf103a0ba2d": { - "address": "0x19904bc04c09e5d29ed216ddd105bdf103a0ba2d", - "symbol": "CPNGON", - "decimals": 18, - "name": "Coupang (Ondo Tokenized)", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x19904bc04c09e5d29ed216ddd105bdf103a0ba2d.png", - "aggregators": ["CoinGecko", "Rubic", "Rango", "Ondo"], - "occurrences": 4, - "rwaData": { - "market": { - "nextOpen": "2026-05-18T20:01:00.000Z", - "nextClose": "2026-05-18T19:59:00.000Z" - }, - "nextPause": { - "start": null, - "end": null - }, - "ticker": "CPNG", - "instrumentType": "stock" - } - }, - "0x90ccbb75d61cb65cd73a3abb5df04a75961612b7": { - "address": "0x90ccbb75d61cb65cd73a3abb5df04a75961612b7", - "symbol": "DEON", - "decimals": 18, - "name": "Deere (Ondo Tokenized)", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x90ccbb75d61cb65cd73a3abb5df04a75961612b7.png", - "aggregators": ["CoinGecko", "Rubic", "Rango", "Ondo"], - "occurrences": 4, - "rwaData": { - "market": { - "nextOpen": "2026-05-18T20:01:00.000Z", - "nextClose": "2026-05-18T19:59:00.000Z" - }, - "nextPause": { - "start": "2026-05-21T09:00:00.000Z", - "end": "2026-05-21T13:31:00.000Z" - }, - "ticker": "DE", - "instrumentType": "stock" - } - }, - "0x70bd780076e25d087ed9c35f4e4a540522abe8cf": { - "address": "0x70bd780076e25d087ed9c35f4e4a540522abe8cf", - "symbol": "DNNON", - "decimals": 18, - "name": "Denison Mines (Ondo Tokenized)", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x70bd780076e25d087ed9c35f4e4a540522abe8cf.png", - "aggregators": ["CoinGecko", "Rubic", "Rango", "Ondo"], - "occurrences": 4, - "rwaData": { - "market": { - "nextOpen": "2026-05-19T13:31:00.000Z", - "nextClose": "2026-05-18T19:59:00.000Z" - }, - "nextPause": { - "start": null, - "end": null - }, - "ticker": "DNN", - "instrumentType": "stock" - } - }, - "0x4d209d275e3492ac08497a7a42915899c4dd5e86": { - "address": "0x4d209d275e3492ac08497a7a42915899c4dd5e86", - "symbol": "XOMON", - "decimals": 18, - "name": "Exxon Mobil (Ondo Tokenized)", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x4d209d275e3492ac08497a7a42915899c4dd5e86.png", - "aggregators": ["CoinGecko", "Rubic", "Rango", "Ondo"], - "occurrences": 4, - "rwaData": { - "market": { - "nextOpen": "2026-05-18T20:01:00.000Z", - "nextClose": "2026-05-18T19:59:00.000Z" - }, - "nextPause": { - "start": null, - "end": null - }, - "ticker": "XOM", - "instrumentType": "stock" - } - }, - "0xe96f94e10f1265dcc15f83d251f1f6758d2cd67d": { - "address": "0xe96f94e10f1265dcc15f83d251f1f6758d2cd67d", - "symbol": "FTGCON", - "decimals": 18, - "name": "First Trust Global Tactical Commodity Strategy Fund (Ondo Tokenized)", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xe96f94e10f1265dcc15f83d251f1f6758d2cd67d.png", - "aggregators": ["CoinGecko", "Rubic", "Rango", "Ondo"], - "occurrences": 4, - "rwaData": { - "market": { - "nextOpen": "2026-05-19T13:31:00.000Z", - "nextClose": "2026-05-18T19:59:00.000Z" - }, - "nextPause": { - "start": null, - "end": null - }, - "ticker": "FTGC", - "instrumentType": "stock" - } - }, - "0xd1f799cb9f5d0a02951b0755beced6c43882712f": { - "address": "0xd1f799cb9f5d0a02951b0755beced6c43882712f", - "symbol": "JNJON", - "decimals": 18, - "name": "Johnson & Johnson (Ondo Tokenized)", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xd1f799cb9f5d0a02951b0755beced6c43882712f.png", - "aggregators": ["CoinGecko", "Rubic", "Rango", "Ondo"], - "occurrences": 4, - "rwaData": { - "market": { - "nextOpen": "2026-05-18T20:01:00.000Z", - "nextClose": "2026-05-18T19:59:00.000Z" - }, - "nextPause": { - "start": "2026-05-25T23:52:00.000Z", - "end": "2026-05-26T00:12:00.000Z" - }, - "ticker": "JNJ", - "instrumentType": "stock" - } - }, - "0xc2c7fcddc37f6737ca2481ebda6b81ee279fe20c": { - "address": "0xc2c7fcddc37f6737ca2481ebda6b81ee279fe20c", - "symbol": "BZON", - "decimals": 18, - "name": "Kanzhun (Ondo Tokenized)", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xc2c7fcddc37f6737ca2481ebda6b81ee279fe20c.png", - "aggregators": ["CoinGecko", "Rubic", "Rango", "Ondo"], - "occurrences": 4, - "rwaData": { - "market": { - "nextOpen": "2026-05-19T13:31:00.000Z", - "nextClose": "2026-05-18T19:59:00.000Z" - }, - "nextPause": { - "start": "2026-05-20T09:00:00.000Z", - "end": "2026-05-20T13:31:00.000Z" - }, - "ticker": "BZ", - "instrumentType": "stock" - } - }, - "0x35895a1fa1aff7fb3204fb01257409fd75acb24c": { - "address": "0x35895a1fa1aff7fb3204fb01257409fd75acb24c", - "symbol": "LRCXON", - "decimals": 18, - "name": "Lam Research (Ondo Tokenized)", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x35895a1fa1aff7fb3204fb01257409fd75acb24c.png", - "aggregators": ["CoinGecko", "Rubic", "Rango", "Ondo"], - "occurrences": 4, - "rwaData": { - "market": { - "nextOpen": "2026-05-18T20:01:00.000Z", - "nextClose": "2026-05-18T19:59:00.000Z" - }, - "nextPause": { - "start": null, - "end": null - }, - "ticker": "LRCX", - "instrumentType": "stock" - } - }, - "0x9810beac9af3c30d14cfb61cdd557e160f60fd50": { - "address": "0x9810beac9af3c30d14cfb61cdd557e160f60fd50", - "symbol": "LION", - "decimals": 18, - "name": "Li Auto (Ondo Tokenized)", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x9810beac9af3c30d14cfb61cdd557e160f60fd50.png", - "aggregators": ["CoinGecko", "Rubic", "Rango", "Ondo"], - "occurrences": 4, - "rwaData": { - "market": { - "nextOpen": "2026-05-19T00:05:00.000Z", - "nextClose": "2026-05-18T19:59:00.000Z" - }, - "nextPause": { - "start": "2026-05-28T09:00:00.000Z", - "end": "2026-05-28T13:31:00.000Z" - }, - "ticker": "LI", - "instrumentType": "stock" - } - }, - "0x47b36ddb9dd12a8411f78226f55e8c3f0d65481f": { - "address": "0x47b36ddb9dd12a8411f78226f55e8c3f0d65481f", - "symbol": "PCGON", - "decimals": 18, - "name": "PG&E (Ondo Tokenized)", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x47b36ddb9dd12a8411f78226f55e8c3f0d65481f.png", - "aggregators": ["CoinGecko", "Rubic", "Rango", "Ondo"], - "occurrences": 4, - "rwaData": { - "market": { - "nextOpen": "2026-05-19T13:31:00.000Z", - "nextClose": "2026-05-18T19:59:00.000Z" - }, - "nextPause": { - "start": null, - "end": null - }, - "ticker": "PCG", - "instrumentType": "stock" - } - }, - "0xcfd1f0df84300ea1a4e2ba5238043a2fa5a7237c": { - "address": "0xcfd1f0df84300ea1a4e2ba5238043a2fa5a7237c", - "symbol": "PINSON", - "decimals": 18, - "name": "Pinterest (Ondo Tokenized)", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xcfd1f0df84300ea1a4e2ba5238043a2fa5a7237c.png", - "aggregators": ["CoinGecko", "Rubic", "Rango", "Ondo"], - "occurrences": 4, - "rwaData": { - "market": { - "nextOpen": "2026-05-18T20:01:00.000Z", - "nextClose": "2026-05-18T19:59:00.000Z" - }, - "nextPause": { - "start": null, - "end": null - }, - "ticker": "PINS", - "instrumentType": "stock" - } - }, - "0x44fde2c6bc2c2b54962c69fcef57a2a50121dbd7": { - "address": "0x44fde2c6bc2c2b54962c69fcef57a2a50121dbd7", - "symbol": "RTXON", - "decimals": 18, - "name": "RTX (Ondo Tokenized)", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x44fde2c6bc2c2b54962c69fcef57a2a50121dbd7.png", - "aggregators": ["CoinGecko", "Rubic", "Rango", "Ondo"], - "occurrences": 4, - "rwaData": { - "market": { - "nextOpen": "2026-05-18T20:01:00.000Z", - "nextClose": "2026-05-18T19:59:00.000Z" - }, - "nextPause": { - "start": "2026-05-21T23:52:00.000Z", - "end": "2026-05-22T08:10:00.000Z" - }, - "ticker": "RTX", - "instrumentType": "stock" - } - }, - "0xf325884d9bcac457271fe7f7b6be1765348fcca2": { - "address": "0xf325884d9bcac457271fe7f7b6be1765348fcca2", - "symbol": "SNAPON", - "decimals": 18, - "name": "Snap (Ondo Tokenized)", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xf325884d9bcac457271fe7f7b6be1765348fcca2.png", - "aggregators": ["CoinGecko", "Rubic", "Rango", "Ondo"], - "occurrences": 4, - "rwaData": { - "market": { - "nextOpen": "2026-05-19T13:31:00.000Z", - "nextClose": "2026-05-18T19:59:00.000Z" - }, - "nextPause": { - "start": null, - "end": null - }, - "ticker": "SNAP", - "instrumentType": "stock" - } - }, - "0xad56701d9e57957e28e546db7db508a16d4f86cc": { - "address": "0xad56701d9e57957e28e546db7db508a16d4f86cc", - "symbol": "WULFON", - "decimals": 18, - "name": "Terawulf (Ondo Tokenized)", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xad56701d9e57957e28e546db7db508a16d4f86cc.png", - "aggregators": ["CoinGecko", "Rubic", "Rango", "Ondo"], - "occurrences": 4, - "rwaData": { - "market": { - "nextOpen": "2026-05-19T13:31:00.000Z", - "nextClose": "2026-05-18T19:59:00.000Z" - }, - "nextPause": { - "start": null, - "end": null - }, - "ticker": "WULF", - "instrumentType": "stock" - } - }, - "0xca3a5c955f1f01f20aacf9501b03e4aa235e478b": { - "address": "0xca3a5c955f1f01f20aacf9501b03e4aa235e478b", - "symbol": "TXNON", - "decimals": 18, - "name": "Texas Instruments (Ondo Tokenized)", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xca3a5c955f1f01f20aacf9501b03e4aa235e478b.png", - "aggregators": ["CoinGecko", "Rubic", "Rango", "Ondo"], - "occurrences": 4, - "rwaData": { - "market": { - "nextOpen": "2026-05-18T20:01:00.000Z", - "nextClose": "2026-05-18T19:59:00.000Z" - }, - "nextPause": { - "start": null, - "end": null - }, - "ticker": "TXN", - "instrumentType": "stock" - } - }, - "0xa3b089c886e6d721f49def8e050f3b9d4362560b": { - "address": "0xa3b089c886e6d721f49def8e050f3b9d4362560b", - "symbol": "VZON", - "decimals": 18, - "name": "Verizon (Ondo Tokenized)", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xa3b089c886e6d721f49def8e050f3b9d4362560b.png", - "aggregators": ["CoinGecko", "Rubic", "Rango", "Ondo"], - "occurrences": 4, - "rwaData": { - "market": { - "nextOpen": "2026-05-18T20:01:00.000Z", - "nextClose": "2026-05-18T19:59:00.000Z" - }, - "nextPause": { - "start": null, - "end": null - }, - "ticker": "VZ", - "instrumentType": "stock" - } - }, - "0x9cea8a7be1ab0320b709d368ad60d8500f55995f": { - "address": "0x9cea8a7be1ab0320b709d368ad60d8500f55995f", - "symbol": "VRTON", - "decimals": 18, - "name": "Vertiv (Ondo Tokenized)", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x9cea8a7be1ab0320b709d368ad60d8500f55995f.png", - "aggregators": ["CoinGecko", "Rubic", "Rango", "Ondo"], - "occurrences": 4, - "rwaData": { - "market": { - "nextOpen": "2026-05-18T20:01:00.000Z", - "nextClose": "2026-05-18T19:59:00.000Z" - }, - "nextPause": { - "start": null, - "end": null - }, - "ticker": "VRT", - "instrumentType": "stock" - } - }, - "0xf2c24c47805f4f72d3919c8674bfdd401505794b": { - "address": "0xf2c24c47805f4f72d3919c8674bfdd401505794b", - "symbol": "VSTON", - "decimals": 18, - "name": "Vistra (Ondo Tokenized)", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xf2c24c47805f4f72d3919c8674bfdd401505794b.png", - "aggregators": ["CoinGecko", "Rubic", "Rango", "Ondo"], - "occurrences": 4, - "rwaData": { - "market": { - "nextOpen": "2026-05-18T20:01:00.000Z", - "nextClose": "2026-05-18T19:59:00.000Z" - }, - "nextPause": { - "start": "2026-06-21T23:52:00.000Z", - "end": "2026-06-22T08:10:00.000Z" - }, - "ticker": "VST", - "instrumentType": "stock" - } - }, - "0xf4fd75764a5c086fb12f822be2ca318b3a362dc3": { - "address": "0xf4fd75764a5c086fb12f822be2ca318b3a362dc3", - "symbol": "USFRON", - "decimals": 18, - "name": "WisdomTree Floating Rate Treasury Fund (Ondo Tokenized)", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xf4fd75764a5c086fb12f822be2ca318b3a362dc3.png", - "aggregators": ["CoinGecko", "Rubic", "Rango", "Ondo"], - "occurrences": 4, - "rwaData": { - "market": { - "nextOpen": "2026-05-18T20:01:00.000Z", - "nextClose": "2026-05-18T19:59:00.000Z" - }, - "nextPause": { - "start": null, - "end": null - }, - "ticker": "USFR", - "instrumentType": "stock" - } - }, - "0x53a8c5fc5643b437779742f494691e6b7c660a8b": { - "address": "0x53a8c5fc5643b437779742f494691e6b7c660a8b", - "symbol": "COFON", - "decimals": 18, - "name": "Capital One (Ondo Tokenized)", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x53a8c5fc5643b437779742f494691e6b7c660a8b.png", - "aggregators": ["CoinGecko", "Rubic", "Rango", "Ondo"], - "occurrences": 4, - "rwaData": { - "market": { - "nextOpen": "2026-05-18T20:01:00.000Z", - "nextClose": "2026-05-18T19:59:00.000Z" - }, - "nextPause": { - "start": "2026-05-18T23:52:00.000Z", - "end": "2026-05-19T00:12:00.000Z" - }, - "ticker": "COF", - "instrumentType": "stock" - } - }, - "0xbbe4dfe7a349fb72aec6f52d5cd9bdd78ae8f313": { - "address": "0xbbe4dfe7a349fb72aec6f52d5cd9bdd78ae8f313", - "symbol": "TLNON", - "decimals": 18, - "name": "Talen Energy (Ondo Tokenized)", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xbbe4dfe7a349fb72aec6f52d5cd9bdd78ae8f313.png", - "aggregators": ["CoinGecko", "Rubic", "Rango", "Ondo"], - "occurrences": 4, - "rwaData": { - "market": { - "nextOpen": "2026-05-19T13:31:00.000Z", - "nextClose": "2026-05-18T19:59:00.000Z" - }, - "nextPause": { - "start": null, - "end": null - }, - "ticker": "TLN", - "instrumentType": "stock" - } - }, - "0x6459303f58244ff1e7a42b90aa3782dfb6ca6969": { - "address": "0x6459303f58244ff1e7a42b90aa3782dfb6ca6969", - "symbol": "TCOMON", - "decimals": 18, - "name": "Trip.com Group (Ondo Tokenized)", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x6459303f58244ff1e7a42b90aa3782dfb6ca6969.png", - "aggregators": ["CoinGecko", "Rubic", "Rango", "Ondo"], - "occurrences": 4, - "rwaData": { - "market": { - "nextOpen": "2026-05-18T20:01:00.000Z", - "nextClose": "2026-05-18T19:59:00.000Z" - }, - "nextPause": { - "start": "2026-05-18T09:00:00.000Z", - "end": "2026-05-18T23:30:00.000Z" - }, - "ticker": "TCOM", - "instrumentType": "stock" - } - }, - "0x65c8743a5a266c3512eabd34e65ade42d4355ef1": { - "address": "0x65c8743a5a266c3512eabd34e65ade42d4355ef1", - "symbol": "BPLC", - "decimals": 18, - "name": "BlackPearl", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x65c8743a5a266c3512eabd34e65ade42d4355ef1.png", - "aggregators": ["PancakeCoinGecko", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0x976e33b07565b0c05b08b2e13affd3113e3d178d": { - "address": "0x976e33b07565b0c05b08b2e13affd3113e3d178d", - "symbol": "AGA", - "decimals": 4, - "name": "AGA", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x976e33b07565b0c05b08b2e13affd3113e3d178d.png", - "aggregators": ["PancakeCoinGecko", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0x764a726d9ced0433a8d7643335919deb03a9a935": { - "address": "0x764a726d9ced0433a8d7643335919deb03a9a935", - "symbol": "POKT", - "decimals": 6, - "name": "Pocket Network", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x764a726d9ced0433a8d7643335919deb03a9a935.png", - "aggregators": ["PancakeCoinGecko", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0x388d819724dd6d71760a38f00dc01d310d879771": { - "address": "0x388d819724dd6d71760a38f00dc01d310d879771", - "symbol": "JM", - "decimals": 8, - "name": "JustMoney", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x388d819724dd6d71760a38f00dc01d310d879771.png", - "aggregators": ["PancakeCoinGecko", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0x13ef69f64de07d14517b667728db8b9f23856a38": { - "address": "0x13ef69f64de07d14517b667728db8b9f23856a38", - "symbol": "PLQ", - "decimals": 18, - "name": "Planq", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x13ef69f64de07d14517b667728db8b9f23856a38.png", - "aggregators": [ - "PancakeCoinMarketCap", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 4 - }, - "0x4d4d883f920f7c0c36a1be71a02aa0cde2aa22d1": { - "address": "0x4d4d883f920f7c0c36a1be71a02aa0cde2aa22d1", - "symbol": "OPCH", - "decimals": 18, - "name": "Opticash", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x4d4d883f920f7c0c36a1be71a02aa0cde2aa22d1.png", - "aggregators": ["PancakeCoinGecko", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0xffa188493c15dfaf2c206c97d8633377847b6a52": { - "address": "0xffa188493c15dfaf2c206c97d8633377847b6a52", - "symbol": "WEFI", - "decimals": 18, - "name": "Wefi", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xffa188493c15dfaf2c206c97d8633377847b6a52.png", - "aggregators": ["PancakeCoinGecko", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0x20c64dee8fda5269a78f2d5bdba861ca1d83df7a": { - "address": "0x20c64dee8fda5269a78f2d5bdba861ca1d83df7a", - "symbol": "BHIGH", - "decimals": 18, - "name": "Backed HIGH € High Yield Corp Bond", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x20c64dee8fda5269a78f2d5bdba861ca1d83df7a.png", - "aggregators": ["PancakeCoinGecko", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0x2f123cf3f37ce3328cc9b5b8415f9ec5109b45e7": { - "address": "0x2f123cf3f37ce3328cc9b5b8415f9ec5109b45e7", - "symbol": "BC3M", - "decimals": 18, - "name": "Backed GOVIES 0-6 months EURO", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x2f123cf3f37ce3328cc9b5b8415f9ec5109b45e7.png", - "aggregators": ["PancakeCoinGecko", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0xb55ee890426341fe45ee6dc788d2d93d25b59063": { - "address": "0xb55ee890426341fe45ee6dc788d2d93d25b59063", - "symbol": "LOVE", - "decimals": 18, - "name": "Love.io", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xb55ee890426341fe45ee6dc788d2d93d25b59063.png", - "aggregators": ["PancakeCoinGecko", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0xda31d0d1bc934fc34f7189e38a413ca0a5e8b44f": { - "address": "0xda31d0d1bc934fc34f7189e38a413ca0a5e8b44f", - "symbol": "$BSSB", - "decimals": 18, - "name": "BitStable Finance", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xda31d0d1bc934fc34f7189e38a413ca0a5e8b44f.png", - "aggregators": ["PancakeCoinGecko", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0x15fa5d3dbd11a831b72b92c1705bc9f801e233cb": { - "address": "0x15fa5d3dbd11a831b72b92c1705bc9f801e233cb", - "symbol": "PXP", - "decimals": 18, - "name": "PointPay", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x15fa5d3dbd11a831b72b92c1705bc9f801e233cb.png", - "aggregators": ["PancakeCoinGecko", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0xf8cc82e3427443f36b6d3925110cefa8a5da93d0": { - "address": "0xf8cc82e3427443f36b6d3925110cefa8a5da93d0", - "symbol": "ROSA", - "decimals": 18, - "name": "Rosa Inu", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xf8cc82e3427443f36b6d3925110cefa8a5da93d0.png", - "aggregators": ["PancakeCoinGecko", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0x259b0f9494b3f02c652fa11417b94cb700f1f7d8": { - "address": "0x259b0f9494b3f02c652fa11417b94cb700f1f7d8", - "symbol": "CVPAD", - "decimals": 18, - "name": "CV Pad", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x259b0f9494b3f02c652fa11417b94cb700f1f7d8.png", - "aggregators": ["PancakeCoinGecko", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0x23ae4fd8e7844cdbc97775496ebd0e8248656028": { - "address": "0x23ae4fd8e7844cdbc97775496ebd0e8248656028", - "symbol": "XAUM", - "decimals": 18, - "name": "Matrixdock Gold", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x23ae4fd8e7844cdbc97775496ebd0e8248656028.png", - "aggregators": ["PancakeExtended", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0x96c7957030aa8b1fd3c6e0ee3d84c4695c6eae9c": { - "address": "0x96c7957030aa8b1fd3c6e0ee3d84c4695c6eae9c", - "symbol": "AMB", - "decimals": 18, - "name": "AirDAO", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x96c7957030aa8b1fd3c6e0ee3d84c4695c6eae9c.png", - "aggregators": ["PancakeCoinGecko", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0x8677abad7b458bf16a0fb2676dfc7d3f55ac202a": { - "address": "0x8677abad7b458bf16a0fb2676dfc7d3f55ac202a", - "symbol": "ABBVON", - "decimals": 18, - "name": "AbbVie (Ondo Tokenized)", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x8677abad7b458bf16a0fb2676dfc7d3f55ac202a.png", - "aggregators": ["CoinGecko", "Rubic", "Rango", "Ondo"], - "occurrences": 4, - "rwaData": { - "market": { - "nextOpen": "2026-05-18T20:01:00.000Z", - "nextClose": "2026-05-18T19:59:00.000Z" - }, - "nextPause": { - "start": null, - "end": null - }, - "ticker": "ABBV", - "instrumentType": "stock" - } - }, - "0x538e2838f9ebc9b891399df4a8dcc42890d9dc20": { - "address": "0x538e2838f9ebc9b891399df4a8dcc42890d9dc20", - "symbol": "ANETON", - "decimals": 18, - "name": "Arista Networks (Ondo Tokenized)", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x538e2838f9ebc9b891399df4a8dcc42890d9dc20.png", - "aggregators": ["CoinGecko", "Rubic", "Rango", "Ondo"], - "occurrences": 4, - "rwaData": { - "market": { - "nextOpen": "2026-05-18T20:01:00.000Z", - "nextClose": "2026-05-18T19:59:00.000Z" - }, - "nextPause": { - "start": null, - "end": null - }, - "ticker": "ANET", - "instrumentType": "stock" - } - }, - "0xe2ac868f2fd097086d83bc939248e5ae08d35da4": { - "address": "0xe2ac868f2fd097086d83bc939248e5ae08d35da4", - "symbol": "BTGON", - "decimals": 18, - "name": "B2Gold (Ondo Tokenized)", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xe2ac868f2fd097086d83bc939248e5ae08d35da4.png", - "aggregators": ["CoinGecko", "Rubic", "Rango", "Ondo"], - "occurrences": 4, - "rwaData": { - "market": { - "nextOpen": "2026-05-19T13:31:00.000Z", - "nextClose": "2026-05-18T19:59:00.000Z" - }, - "nextPause": { - "start": "2026-06-09T23:52:00.000Z", - "end": "2026-06-10T13:40:00.000Z" - }, - "ticker": "BTG", - "instrumentType": "stock" - } - }, - "0x7ba995f1662a01f3be0dc299ce94bb7e9c7075f5": { - "address": "0x7ba995f1662a01f3be0dc299ce94bb7e9c7075f5", - "symbol": "BBAION", - "decimals": 18, - "name": "BigBear.ai Holdings (Ondo Tokenized)", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x7ba995f1662a01f3be0dc299ce94bb7e9c7075f5.png", - "aggregators": ["CoinGecko", "Rubic", "Rango", "Ondo"], - "occurrences": 4, - "rwaData": { - "market": { - "nextOpen": "2026-05-18T20:01:00.000Z", - "nextClose": "2026-05-18T19:59:00.000Z" - }, - "nextPause": { - "start": null, - "end": null - }, - "ticker": "BBAI", - "instrumentType": "stock" - } - }, - "0xc145dc2ebdbe8ead1fecdebf46c76eb1fdd0104d": { - "address": "0xc145dc2ebdbe8ead1fecdebf46c76eb1fdd0104d", - "symbol": "CVNAON", - "decimals": 18, - "name": "Carvana (Ondo Tokenized)", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xc145dc2ebdbe8ead1fecdebf46c76eb1fdd0104d.png", - "aggregators": ["CoinGecko", "Rubic", "Rango", "Ondo"], - "occurrences": 4, - "rwaData": { - "market": { - "nextOpen": "2026-05-18T20:01:00.000Z", - "nextClose": "2026-05-18T19:59:00.000Z" - }, - "nextPause": { - "start": null, - "end": null - }, - "ticker": "CVNA", - "instrumentType": "stock" - } - }, - "0xcf3e84e62002ca459db81b2032d7fe13715bad51": { - "address": "0xcf3e84e62002ca459db81b2032d7fe13715bad51", - "symbol": "PDBCON", - "decimals": 18, - "name": "Invesco Optimum Yld Dvsfd Cmd Str No K-1 ETF (Ondo Tokenized)", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xcf3e84e62002ca459db81b2032d7fe13715bad51.png", - "aggregators": ["CoinGecko", "Rubic", "Rango", "Ondo"], - "occurrences": 4, - "rwaData": { - "market": { - "nextOpen": "2026-05-19T13:31:00.000Z", - "nextClose": "2026-05-18T19:59:00.000Z" - }, - "nextPause": { - "start": null, - "end": null - }, - "ticker": "PDBC", - "instrumentType": "stock" - } - }, - "0x940f442746d9ae699e63c378d52c4494ea02684f": { - "address": "0x940f442746d9ae699e63c378d52c4494ea02684f", - "symbol": "BINCON", - "decimals": 18, - "name": "iShares Flexible Income Active ETF (Ondo Tokenized)", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x940f442746d9ae699e63c378d52c4494ea02684f.png", - "aggregators": ["CoinGecko", "Rubic", "Rango", "Ondo"], - "occurrences": 4, - "rwaData": { - "market": { - "nextOpen": "2026-05-18T20:01:00.000Z", - "nextClose": "2026-05-18T19:59:00.000Z" - }, - "nextPause": { - "start": null, - "end": null - }, - "ticker": "BINC", - "instrumentType": "stock" - } - }, - "0x84719a1082ed487c7eeac7d69885e3cc2009ea78": { - "address": "0x84719a1082ed487c7eeac7d69885e3cc2009ea78", - "symbol": "JAAAON", - "decimals": 18, - "name": "Janus Henderson AAA CLO ETF (Ondo Tokenized)", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x84719a1082ed487c7eeac7d69885e3cc2009ea78.png", - "aggregators": ["CoinGecko", "Rubic", "Rango", "Ondo"], - "occurrences": 4, - "rwaData": { - "market": { - "nextOpen": "2026-05-18T20:01:00.000Z", - "nextClose": "2026-05-18T19:59:00.000Z" - }, - "nextPause": { - "start": null, - "end": null - }, - "ticker": "JAAA", - "instrumentType": "stock" - } - }, - "0x2ec46eed30c94caa5979e6a0395abe824138335f": { - "address": "0x2ec46eed30c94caa5979e6a0395abe824138335f", - "symbol": "LOWON", - "decimals": 18, - "name": "Lowe's (Ondo Tokenized)", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x2ec46eed30c94caa5979e6a0395abe824138335f.png", - "aggregators": ["CoinGecko", "Rubic", "Rango", "Ondo"], - "occurrences": 4, - "rwaData": { - "market": { - "nextOpen": "2026-05-19T13:31:00.000Z", - "nextClose": "2026-05-18T19:59:00.000Z" - }, - "nextPause": { - "start": "2026-05-20T09:00:00.000Z", - "end": "2026-05-20T13:31:00.000Z" - }, - "ticker": "LOW", - "instrumentType": "stock" - } - }, - "0xf49046aae76eaeb7ffd3ef116ce0f7cd0f52d93e": { - "address": "0xf49046aae76eaeb7ffd3ef116ce0f7cd0f52d93e", - "symbol": "MTZON", - "decimals": 18, - "name": "MasTec (Ondo Tokenized)", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xf49046aae76eaeb7ffd3ef116ce0f7cd0f52d93e.png", - "aggregators": ["CoinGecko", "Rubic", "Rango", "Ondo"], - "occurrences": 4, - "rwaData": { - "market": { - "nextOpen": "2026-05-19T13:31:00.000Z", - "nextClose": "2026-05-18T19:59:00.000Z" - }, - "nextPause": { - "start": null, - "end": null - }, - "ticker": "MTZ", - "instrumentType": "stock" - } - }, - "0x869027261075c3c239d6a26842579b93802606f4": { - "address": "0x869027261075c3c239d6a26842579b93802606f4", - "symbol": "MRKON", - "decimals": 18, - "name": "Merck (Ondo Tokenized)", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x869027261075c3c239d6a26842579b93802606f4.png", - "aggregators": ["CoinGecko", "Rubic", "Rango", "Ondo"], - "occurrences": 4, - "rwaData": { - "market": { - "nextOpen": "2026-05-18T20:01:00.000Z", - "nextClose": "2026-05-18T19:59:00.000Z" - }, - "nextPause": { - "start": null, - "end": null - }, - "ticker": "MRK", - "instrumentType": "stock" - } - }, - "0x01486675da0764ee780ea7cb65c33062e9b2d28c": { - "address": "0x01486675da0764ee780ea7cb65c33062e9b2d28c", - "symbol": "MRNAON", - "decimals": 18, - "name": "Moderna (Ondo Tokenized)", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x01486675da0764ee780ea7cb65c33062e9b2d28c.png", - "aggregators": ["CoinGecko", "Rubic", "Rango", "Ondo"], - "occurrences": 4, - "rwaData": { - "market": { - "nextOpen": "2026-05-18T20:01:00.000Z", - "nextClose": "2026-05-18T19:59:00.000Z" - }, - "nextPause": { - "start": null, - "end": null - }, - "ticker": "MRNA", - "instrumentType": "stock" - } - }, - "0x4baf4dc56cf6a525a0874e25cc6372a6a8915135": { - "address": "0x4baf4dc56cf6a525a0874e25cc6372a6a8915135", - "symbol": "MPON", - "decimals": 18, - "name": "MP Materials (Ondo Tokenized)", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x4baf4dc56cf6a525a0874e25cc6372a6a8915135.png", - "aggregators": ["CoinGecko", "Rubic", "Rango", "Ondo"], - "occurrences": 4, - "rwaData": { - "market": { - "nextOpen": "2026-05-18T20:01:00.000Z", - "nextClose": "2026-05-18T19:59:00.000Z" - }, - "nextPause": { - "start": null, - "end": null - }, - "ticker": "MP", - "instrumentType": "stock" - } - }, - "0x282973969118f9fe39bf2ff3d8dd1efee82ccb11": { - "address": "0x282973969118f9fe39bf2ff3d8dd1efee82ccb11", - "symbol": "NTESON", - "decimals": 18, - "name": "NetEase (Ondo Tokenized)", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x282973969118f9fe39bf2ff3d8dd1efee82ccb11.png", - "aggregators": ["CoinGecko", "Rubic", "Rango", "Ondo"], - "occurrences": 4, - "rwaData": { - "market": { - "nextOpen": "2026-05-19T13:31:00.000Z", - "nextClose": "2026-05-18T19:59:00.000Z" - }, - "nextPause": { - "start": "2026-05-21T09:00:00.000Z", - "end": "2026-05-21T13:31:00.000Z" - }, - "ticker": "NTES", - "instrumentType": "stock" - } - }, - "0xc6f9edbee6042a237d72493bbda3ee2c3c62f708": { - "address": "0xc6f9edbee6042a237d72493bbda3ee2c3c62f708", - "symbol": "NIOON", - "decimals": 18, - "name": "NIO (Ondo Tokenized)", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xc6f9edbee6042a237d72493bbda3ee2c3c62f708.png", - "aggregators": ["CoinGecko", "Rubic", "Rango", "Ondo"], - "occurrences": 4, - "rwaData": { - "market": { - "nextOpen": "2026-05-18T20:01:00.000Z", - "nextClose": "2026-05-18T19:59:00.000Z" - }, - "nextPause": { - "start": "2026-05-21T09:00:00.000Z", - "end": "2026-05-21T13:31:00.000Z" - }, - "ticker": "NIO", - "instrumentType": "stock" - } - }, - "0x01b5a4ac600be98448dbefbb78bcdf38262552cc": { - "address": "0x01b5a4ac600be98448dbefbb78bcdf38262552cc", - "symbol": "OXYON", - "decimals": 18, - "name": "Occidental Petroleum (Ondo Tokenized)", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x01b5a4ac600be98448dbefbb78bcdf38262552cc.png", - "aggregators": ["CoinGecko", "Rubic", "Rango", "Ondo"], - "occurrences": 4, - "rwaData": { - "market": { - "nextOpen": "2026-05-18T20:01:00.000Z", - "nextClose": "2026-05-18T19:59:00.000Z" - }, - "nextPause": { - "start": "2026-06-09T23:52:00.000Z", - "end": "2026-06-10T08:10:00.000Z" - }, - "ticker": "OXY", - "instrumentType": "stock" - } - }, - "0xb35a9eab5d25282f4e668798b629a9294e9a47aa": { - "address": "0xb35a9eab5d25282f4e668798b629a9294e9a47aa", - "symbol": "ONON", - "decimals": 18, - "name": "ON Semiconductor (Ondo Tokenized)", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xb35a9eab5d25282f4e668798b629a9294e9a47aa.png", - "aggregators": ["CoinGecko", "Rubic", "Rango", "Ondo"], - "occurrences": 4, - "rwaData": { - "market": { - "nextOpen": "2026-05-19T13:31:00.000Z", - "nextClose": "2026-05-18T19:59:00.000Z" - }, - "nextPause": { - "start": null, - "end": null - }, - "ticker": "ON", - "instrumentType": "stock" - } - }, - "0x88672043905bdd272df55a5a7bb1b7e1e693cbc5": { - "address": "0x88672043905bdd272df55a5a7bb1b7e1e693cbc5", - "symbol": "OPRAON", - "decimals": 18, - "name": "Opera (Ondo Tokenized)", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x88672043905bdd272df55a5a7bb1b7e1e693cbc5.png", - "aggregators": ["CoinGecko", "Rubic", "Rango", "Ondo"], - "occurrences": 4, - "rwaData": { - "market": { - "nextOpen": "2026-05-19T13:31:00.000Z", - "nextClose": "2026-05-18T19:59:00.000Z" - }, - "nextPause": { - "start": null, - "end": null - }, - "ticker": "OPRA", - "instrumentType": "stock" - } - }, - "0xb0752aa50b089ee6ea9acd51373207fa460e87bb": { - "address": "0xb0752aa50b089ee6ea9acd51373207fa460e87bb", - "symbol": "OSCRON", - "decimals": 18, - "name": "Oscar Health (Ondo Tokenized)", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xb0752aa50b089ee6ea9acd51373207fa460e87bb.png", - "aggregators": ["CoinGecko", "Rubic", "Rango", "Ondo"], - "occurrences": 4, - "rwaData": { - "market": { - "nextOpen": "2026-05-19T13:31:00.000Z", - "nextClose": "2026-05-18T19:59:00.000Z" - }, - "nextPause": { - "start": null, - "end": null - }, - "ticker": "OSCR", - "instrumentType": "stock" - } - }, - "0x3802dc739ef9e226f36421a9c15efa519153bbbe": { - "address": "0x3802dc739ef9e226f36421a9c15efa519153bbbe", - "symbol": "PSQON", - "decimals": 18, - "name": "ProShares Short QQQ (Ondo Tokenized)", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x3802dc739ef9e226f36421a9c15efa519153bbbe.png", - "aggregators": ["CoinGecko", "Rubic", "Rango", "Ondo"], - "occurrences": 4, - "rwaData": { - "market": { - "nextOpen": "2026-05-18T20:01:00.000Z", - "nextClose": "2026-05-18T19:59:00.000Z" - }, - "nextPause": { - "start": null, - "end": null - }, - "ticker": "PSQ", - "instrumentType": "stock" - } - }, - "0xedcf71b2e2217064038adcb54a3c3a5fc3488ef1": { - "address": "0xedcf71b2e2217064038adcb54a3c3a5fc3488ef1", - "symbol": "SOUNON", - "decimals": 18, - "name": "SoundHound AI (Ondo Tokenized)", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xedcf71b2e2217064038adcb54a3c3a5fc3488ef1.png", - "aggregators": ["CoinGecko", "Rubic", "Rango", "Ondo"], - "occurrences": 4, - "rwaData": { - "market": { - "nextOpen": "2026-05-18T20:01:00.000Z", - "nextClose": "2026-05-18T19:59:00.000Z" - }, - "nextPause": { - "start": null, - "end": null - }, - "ticker": "SOUN", - "instrumentType": "stock" - } - }, - "0xe23f03d2907cdc38a10f6ccdc1a157bf1afe51de": { - "address": "0xe23f03d2907cdc38a10f6ccdc1a157bf1afe51de", - "symbol": "NIKLON", - "decimals": 18, - "name": "Sprott Nickel Miners ETF (Ondo Tokenized)", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xe23f03d2907cdc38a10f6ccdc1a157bf1afe51de.png", - "aggregators": ["CoinGecko", "Rubic", "Rango", "Ondo"], - "occurrences": 4, - "rwaData": { - "market": { - "nextOpen": "2026-05-19T13:31:00.000Z", - "nextClose": "2026-05-18T19:59:00.000Z" - }, - "nextPause": { - "start": null, - "end": null - }, - "ticker": "NIKL", - "instrumentType": "stock" - } - }, - "0x4255279af47cf10efb9a5c8839f90170f4ef759f": { - "address": "0x4255279af47cf10efb9a5c8839f90170f4ef759f", - "symbol": "TON", - "decimals": 18, - "name": "AT&T (Ondo Tokenized)", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x4255279af47cf10efb9a5c8839f90170f4ef759f.png", - "aggregators": ["CoinGecko", "Rubic", "Rango", "Ondo"], - "occurrences": 4, - "rwaData": { - "market": { - "nextOpen": "2026-05-18T20:01:00.000Z", - "nextClose": "2026-05-18T19:59:00.000Z" - }, - "nextPause": { - "start": null, - "end": null - }, - "ticker": "T", - "instrumentType": "stock" - } - }, - "0x274b0cb6db9473245a31cdea9b789786f4108e4b": { - "address": "0x274b0cb6db9473245a31cdea9b789786f4108e4b", - "symbol": "CATON", - "decimals": 18, - "name": "Caterpillar (Ondo Tokenized)", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x274b0cb6db9473245a31cdea9b789786f4108e4b.png", - "aggregators": ["CoinGecko", "Rubic", "Rango", "Ondo"], - "occurrences": 4, - "rwaData": { - "market": { - "nextOpen": "2026-05-18T20:01:00.000Z", - "nextClose": "2026-05-18T19:59:00.000Z" - }, - "nextPause": { - "start": null, - "end": null - }, - "ticker": "CAT", - "instrumentType": "stock" - } - }, - "0x8ddb97556f6ae98b4d408c56b167139fe1cbe3e8": { - "address": "0x8ddb97556f6ae98b4d408c56b167139fe1cbe3e8", - "symbol": "CON", - "decimals": 18, - "name": "Citigroup (Ondo Tokenized)", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x8ddb97556f6ae98b4d408c56b167139fe1cbe3e8.png", - "aggregators": ["CoinGecko", "Rubic", "Rango", "Ondo"], - "occurrences": 4, - "rwaData": { - "market": { - "nextOpen": "2026-05-18T20:01:00.000Z", - "nextClose": "2026-05-18T19:59:00.000Z" - }, - "nextPause": { - "start": null, - "end": null - }, - "ticker": "C", - "instrumentType": "stock" - } - }, - "0x4ef383f521e803863a33fca8f3f861e53ef9ef9b": { - "address": "0x4ef383f521e803863a33fca8f3f861e53ef9ef9b", - "symbol": "CLOAON", - "decimals": 18, - "name": "iShares AAA CLO Active ETF (Ondo Tokenized)", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x4ef383f521e803863a33fca8f3f861e53ef9ef9b.png", - "aggregators": ["CoinGecko", "Rubic", "Rango", "Ondo"], - "occurrences": 4, - "rwaData": { - "market": { - "nextOpen": "2026-05-19T13:31:00.000Z", - "nextClose": "2026-05-18T19:59:00.000Z" - }, - "nextPause": { - "start": null, - "end": null - }, - "ticker": "CLOA", - "instrumentType": "stock" - } - }, - "0xd7a6353a23ed2c4fcac29a63cbbe3f65ffef41f5": { - "address": "0xd7a6353a23ed2c4fcac29a63cbbe3f65ffef41f5", - "symbol": "SOON", - "decimals": 18, - "name": "Southern (Ondo Tokenized)", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xd7a6353a23ed2c4fcac29a63cbbe3f65ffef41f5.png", - "aggregators": ["CoinGecko", "Rubic", "Rango", "Ondo"], - "occurrences": 4, - "rwaData": { - "market": { - "nextOpen": "2026-05-19T13:31:00.000Z", - "nextClose": "2026-05-18T19:59:00.000Z" - }, - "nextPause": { - "start": "2026-05-17T23:52:00.000Z", - "end": "2026-05-18T13:40:00.000Z" - }, - "ticker": "SO", - "instrumentType": "stock" - } - }, - "0x2588f20bad92da8dcce7fac8311b5f8ab4690e43": { - "address": "0x2588f20bad92da8dcce7fac8311b5f8ab4690e43", - "symbol": "TMUSON", - "decimals": 18, - "name": "T-Mobile US (Ondo Tokenized)", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x2588f20bad92da8dcce7fac8311b5f8ab4690e43.png", - "aggregators": ["CoinGecko", "Rubic", "Rango", "Ondo"], - "occurrences": 4, - "rwaData": { - "market": { - "nextOpen": "2026-05-18T20:01:00.000Z", - "nextClose": "2026-05-18T19:59:00.000Z" - }, - "nextPause": { - "start": "2026-05-28T23:52:00.000Z", - "end": "2026-05-29T08:10:00.000Z" - }, - "ticker": "TMUS", - "instrumentType": "stock" - } - }, - "0xe1d1f66215998786110ba0102ef558b22224c016": { - "address": "0xe1d1f66215998786110ba0102ef558b22224c016", - "symbol": "HOO", - "decimals": 8, - "name": "HOO", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xe1d1f66215998786110ba0102ef558b22224c016.png", - "aggregators": ["PancakeExtended", "LiFi", "Rubic", "Rango"], - "occurrences": 4 - }, - "0x373e768f79c820aa441540d254dca6d045c6d25b": { - "address": "0x373e768f79c820aa441540d254dca6d045c6d25b", - "symbol": "DERC", - "decimals": 18, - "name": "DERC", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x373e768f79c820aa441540d254dca6d045c6d25b.png", - "aggregators": ["PancakeTop100", "LiFi", "Rubic", "Rango"], - "occurrences": 4 - }, - "0xa1ac3b22b102caa62c9ecaf418585528855b0ddd": { - "address": "0xa1ac3b22b102caa62c9ecaf418585528855b0ddd", - "symbol": "STRIP", - "decimals": 18, - "name": "Stripto", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xa1ac3b22b102caa62c9ecaf418585528855b0ddd.png", - "aggregators": [ - "PancakeCoinMarketCap", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 4 - }, - "0xcac007926755e2675e201223f7d4d68c74fd3439": { - "address": "0xcac007926755e2675e201223f7d4d68c74fd3439", - "symbol": "1GUY", - "decimals": 18, - "name": "1GUY", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xcac007926755e2675e201223f7d4d68c74fd3439.png", - "aggregators": ["PancakeCoinGecko", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0x817b32d386cfc1f872de306dfaedfda36429ca1e": { - "address": "0x817b32d386cfc1f872de306dfaedfda36429ca1e", - "symbol": "MOON", - "decimals": 18, - "name": "2MOON", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x817b32d386cfc1f872de306dfaedfda36429ca1e.png", - "aggregators": [ - "PancakeCoinMarketCap", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 4 - }, - "0x6ccc8db8e3fd5ffdd2e7b92bd92e8e27baf704a8": { - "address": "0x6ccc8db8e3fd5ffdd2e7b92bd92e8e27baf704a8", - "symbol": "3TH", - "decimals": 18, - "name": "Ethos", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x6ccc8db8e3fd5ffdd2e7b92bd92e8e27baf704a8.png", - "aggregators": ["PancakeCoinGecko", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0xa9e22e82d5a497c764a9fcd566bc8df933b74fbe": { - "address": "0xa9e22e82d5a497c764a9fcd566bc8df933b74fbe", - "symbol": "AGT", - "decimals": 19, - "name": "Agritech", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xa9e22e82d5a497c764a9fcd566bc8df933b74fbe.png", - "aggregators": [ - "PancakeCoinMarketCap", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 4 - }, - "0xbf70a52aef7822047076749b9ba63c4597d4626f": { - "address": "0xbf70a52aef7822047076749b9ba63c4597d4626f", - "symbol": "AIH", - "decimals": 18, - "name": "AIHub", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xbf70a52aef7822047076749b9ba63c4597d4626f.png", - "aggregators": ["PancakeCoinGecko", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0x5525821d99d3c3892f7c9aa3fa752d48c8764668": { - "address": "0x5525821d99d3c3892f7c9aa3fa752d48c8764668", - "symbol": "ALITA", - "decimals": 8, - "name": "ALITA GOLD", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x5525821d99d3c3892f7c9aa3fa752d48c8764668.png", - "aggregators": ["PancakeCoinGecko", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0x7e2cfe1d55dfa63c8a1bf989c5335419d912e37a": { - "address": "0x7e2cfe1d55dfa63c8a1bf989c5335419d912e37a", - "symbol": "APES", - "decimals": 18, - "name": "AGE OF APES", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x7e2cfe1d55dfa63c8a1bf989c5335419d912e37a.png", - "aggregators": ["PancakeCoinGecko", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0x33aa7797ac6cb8b4652b68e33e5add8ad1218a8d": { - "address": "0x33aa7797ac6cb8b4652b68e33e5add8ad1218a8d", - "symbol": "AQDC", - "decimals": 18, - "name": "Aquanee", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x33aa7797ac6cb8b4652b68e33e5add8ad1218a8d.png", - "aggregators": ["PancakeCoinGecko", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0xe3c1bdeec4db91cd90c336776332fae2e00fddd9": { - "address": "0xe3c1bdeec4db91cd90c336776332fae2e00fddd9", - "symbol": "ASH", - "decimals": 9, - "name": "Ash Token", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xe3c1bdeec4db91cd90c336776332fae2e00fddd9.png", - "aggregators": ["PancakeCoinGecko", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0x9e14c36896daf970ae77a03e157e2dd3d0577c5b": { - "address": "0x9e14c36896daf970ae77a03e157e2dd3d0577c5b", - "symbol": "AUT", - "decimals": 18, - "name": "Autentic", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x9e14c36896daf970ae77a03e157e2dd3d0577c5b.png", - "aggregators": ["PancakeCoinGecko", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0x556b60c53fbc1518ad17e03d52e47368dd4d81b3": { - "address": "0x556b60c53fbc1518ad17e03d52e47368dd4d81b3", - "symbol": "AXS", - "decimals": 18, - "name": "Axie Infinity Shard", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x556b60c53fbc1518ad17e03d52e47368dd4d81b3.png", - "aggregators": ["PancakeCoinGecko", "Socket", "Rubic", "Rango"], - "occurrences": 4 - }, - "0x0df73831c00b157bb0fed3c06eb475f201b64a78": { - "address": "0x0df73831c00b157bb0fed3c06eb475f201b64a78", - "symbol": "B2SHARE", - "decimals": 18, - "name": "B2SHARE", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x0df73831c00b157bb0fed3c06eb475f201b64a78.png", - "aggregators": ["PancakeCoinGecko", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0xdf8d912f96078f9b23cc20a128199f7a6baf82ba": { - "address": "0xdf8d912f96078f9b23cc20a128199f7a6baf82ba", - "symbol": "BHA", - "decimals": 18, - "name": "BHA", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xdf8d912f96078f9b23cc20a128199f7a6baf82ba.png", - "aggregators": ["PancakeCoinGecko", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0x9f7277778c798ef0bc1debf28994eaec1af7ba24": { - "address": "0x9f7277778c798ef0bc1debf28994eaec1af7ba24", - "symbol": "BIRD", - "decimals": 18, - "name": "LuckyBird", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x9f7277778c798ef0bc1debf28994eaec1af7ba24.png", - "aggregators": ["PancakeCoinGecko", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0xb71d6d378176842dfe778d9509d7d3852806cd7a": { - "address": "0xb71d6d378176842dfe778d9509d7d3852806cd7a", - "symbol": "BOPB", - "decimals": 18, - "name": "BIOPOP", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xb71d6d378176842dfe778d9509d7d3852806cd7a.png", - "aggregators": ["PancakeCoinGecko", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0xfc9f81b107f51f2383fce56650fedb59c5fd59bd": { - "address": "0xfc9f81b107f51f2383fce56650fedb59c5fd59bd", - "symbol": "BRT", - "decimals": 18, - "name": "Bikerush", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xfc9f81b107f51f2383fce56650fedb59c5fd59bd.png", - "aggregators": ["PancakeCoinGecko", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0x39541a42b5085f3cf69b2258eaeb5bb3ee8c823c": { - "address": "0x39541a42b5085f3cf69b2258eaeb5bb3ee8c823c", - "symbol": "BSF", - "decimals": 18, - "name": "Bull Star Finance", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x39541a42b5085f3cf69b2258eaeb5bb3ee8c823c.png", - "aggregators": ["PancakeCoinGecko", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0x011734f6ed20e8d011d85cf7894814b897420acf": { - "address": "0x011734f6ed20e8d011d85cf7894814b897420acf", - "symbol": "BSP", - "decimals": 18, - "name": "BallSwap", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x011734f6ed20e8d011d85cf7894814b897420acf.png", - "aggregators": ["PancakeCoinGecko", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0xc84fae1141b92fa5bf847276828f69caf651cb7f": { - "address": "0xc84fae1141b92fa5bf847276828f69caf651cb7f", - "symbol": "BXNF", - "decimals": 18, - "name": "bXNF", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xc84fae1141b92fa5bf847276828f69caf651cb7f.png", - "aggregators": ["PancakeCoinGecko", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0xb71b42f7f0513b3f49a0a42ffdcf90509a888888": { - "address": "0xb71b42f7f0513b3f49a0a42ffdcf90509a888888", - "symbol": "CATME", - "decimals": 0, - "name": "Elon's Cat", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xb71b42f7f0513b3f49a0a42ffdcf90509a888888.png", - "aggregators": ["PancakeCoinGecko", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0xb3a7713521007d79e757f83ce763ded56bb0f6b3": { - "address": "0xb3a7713521007d79e757f83ce763ded56bb0f6b3", - "symbol": "CB8", - "decimals": 18, - "name": "chabit", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xb3a7713521007d79e757f83ce763ded56bb0f6b3.png", - "aggregators": ["PancakeCoinGecko", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0xf68d4d917592f3a62417ace42592f15296cc33a0": { - "address": "0xf68d4d917592f3a62417ace42592f15296cc33a0", - "symbol": "CHB", - "decimals": 8, - "name": "COINHUB TOKEN", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xf68d4d917592f3a62417ace42592f15296cc33a0.png", - "aggregators": ["PancakeCoinGecko", "Socket", "Rubic", "Rango"], - "occurrences": 4 - }, - "0xa91c7bc1e07996a188c1a5b1cfdff450389d8acf": { - "address": "0xa91c7bc1e07996a188c1a5b1cfdff450389d8acf", - "symbol": "CHICKS", - "decimals": 8, - "name": "SolChicks", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xa91c7bc1e07996a188c1a5b1cfdff450389d8acf.png", - "aggregators": ["PancakeCoinGecko", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0x433fce7dfbec729a79999eaf056cb073b2153eba": { - "address": "0x433fce7dfbec729a79999eaf056cb073b2153eba", - "symbol": "CNW", - "decimals": 6, - "name": "CoinWealth", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x433fce7dfbec729a79999eaf056cb073b2153eba.png", - "aggregators": ["PancakeCoinGecko", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0xdc3254103c348c1026f3ef7e9951e5e812b8eadc": { - "address": "0xdc3254103c348c1026f3ef7e9951e5e812b8eadc", - "symbol": "CPY", - "decimals": 18, - "name": "CoinPays", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xdc3254103c348c1026f3ef7e9951e5e812b8eadc.png", - "aggregators": ["PancakeCoinGecko", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0x264cd9744c83d3b7b0255f6bee7ab1b9dd9f89ff": { - "address": "0x264cd9744c83d3b7b0255f6bee7ab1b9dd9f89ff", - "symbol": "CST", - "decimals": 18, - "name": "Crypto Samurai", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x264cd9744c83d3b7b0255f6bee7ab1b9dd9f89ff.png", - "aggregators": ["PancakeCoinGecko", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0x57f5c1a40f1e847e50ebdd29cb3dbfef777d2d3e": { - "address": "0x57f5c1a40f1e847e50ebdd29cb3dbfef777d2d3e", - "symbol": "CVN", - "decimals": 18, - "name": "ConsciousDao", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x57f5c1a40f1e847e50ebdd29cb3dbfef777d2d3e.png", - "aggregators": ["PancakeCoinGecko", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0x9001fd53504f7bf253296cffadf5b6030cd61abb": { - "address": "0x9001fd53504f7bf253296cffadf5b6030cd61abb", - "symbol": "CYFM", - "decimals": 18, - "name": "CyberFM", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x9001fd53504f7bf253296cffadf5b6030cd61abb.png", - "aggregators": ["PancakeCoinGecko", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0x83f35be304902571235c590b7564d9c495491456": { - "address": "0x83f35be304902571235c590b7564d9c495491456", - "symbol": "DCLOUD", - "decimals": 9, - "name": "DecentraCloud", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x83f35be304902571235c590b7564d9c495491456.png", - "aggregators": ["PancakeCoinGecko", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0xc632f90affec7121120275610bf17df9963f181c": { - "address": "0xc632f90affec7121120275610bf17df9963f181c", - "symbol": "DEBT", - "decimals": 8, - "name": "DEBT", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xc632f90affec7121120275610bf17df9963f181c.png", - "aggregators": ["PancakeCoinMarketCap", "LiFi", "Rubic", "Rango"], - "occurrences": 4 - }, - "0x7f4b7431a4e1b9f375ef0a94224ea4ef09b4f668": { - "address": "0x7f4b7431a4e1b9f375ef0a94224ea4ef09b4f668", - "symbol": "DEOD", - "decimals": 18, - "name": "Decentrawood", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x7f4b7431a4e1b9f375ef0a94224ea4ef09b4f668.png", - "aggregators": ["PancakeCoinGecko", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0x04088b85ab27f247c76e3adbf787f5a51e3470b6": { - "address": "0x04088b85ab27f247c76e3adbf787f5a51e3470b6", - "symbol": "DOBO", - "decimals": 18, - "name": "DonaBlock", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x04088b85ab27f247c76e3adbf787f5a51e3470b6.png", - "aggregators": ["PancakeCoinGecko", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0xce2194ef6cd74ac3fc21e5e02524f990ec31e3fd": { - "address": "0xce2194ef6cd74ac3fc21e5e02524f990ec31e3fd", - "symbol": "DON", - "decimals": 18, - "name": "TheDonato Token", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xce2194ef6cd74ac3fc21e5e02524f990ec31e3fd.png", - "aggregators": ["PancakeCoinGecko", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0x622b8f894c3d556594bf2d5e4da0478d4968a4ee": { - "address": "0x622b8f894c3d556594bf2d5e4da0478d4968a4ee", - "symbol": "DRA", - "decimals": 18, - "name": "Dracarys Token", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x622b8f894c3d556594bf2d5e4da0478d4968a4ee.png", - "aggregators": ["PancakeCoinGecko", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0x9400aa8eb5126d20cde45c7822836bfb70f19878": { - "address": "0x9400aa8eb5126d20cde45c7822836bfb70f19878", - "symbol": "DRF", - "decimals": 18, - "name": "Drife [OLD]", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x9400aa8eb5126d20cde45c7822836bfb70f19878.png", - "aggregators": ["PancakeCoinGecko", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0x5de9a1c782fd38eabbf6c99f5457e0518ab36ae4": { - "address": "0x5de9a1c782fd38eabbf6c99f5457e0518ab36ae4", - "symbol": "DRIFT", - "decimals": 18, - "name": "Drift Token", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x5de9a1c782fd38eabbf6c99f5457e0518ab36ae4.png", - "aggregators": ["PancakeCoinGecko", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0xd68e5c52f7563486cc1a15d00efa12c8644a907e": { - "address": "0xd68e5c52f7563486cc1a15d00efa12c8644a907e", - "symbol": "EGC", - "decimals": 18, - "name": "Egoras Credit", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xd68e5c52f7563486cc1a15d00efa12c8644a907e.png", - "aggregators": ["PancakeCoinGecko", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0x72a76965eb8f606675f119dae89deda557fdbf01": { - "address": "0x72a76965eb8f606675f119dae89deda557fdbf01", - "symbol": "EIQT", - "decimals": 18, - "name": "eIQT Token", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x72a76965eb8f606675f119dae89deda557fdbf01.png", - "aggregators": ["PancakeCoinGecko", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0x02bafcec586ad22ce409dadb2d2a1af11f8fc112": { - "address": "0x02bafcec586ad22ce409dadb2d2a1af11f8fc112", - "symbol": "ELON2024", - "decimals": 9, - "name": "ELON 2024", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x02bafcec586ad22ce409dadb2d2a1af11f8fc112.png", - "aggregators": ["PancakeCoinGecko", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0x5fec857958fbde28e45f779daf5aba8fdd5bd6bc": { - "address": "0x5fec857958fbde28e45f779daf5aba8fdd5bd6bc", - "symbol": "EPENDLE", - "decimals": 18, - "name": "Equilibria Finance ePENDLE", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x5fec857958fbde28e45f779daf5aba8fdd5bd6bc.png", - "aggregators": ["PancakeCoinGecko", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0xaf41054c1487b0e5e2b9250c0332ecbce6ce9d71": { - "address": "0xaf41054c1487b0e5e2b9250c0332ecbce6ce9d71", - "symbol": "EPX", - "decimals": 18, - "name": "Ellipsis X", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xaf41054c1487b0e5e2b9250c0332ecbce6ce9d71.png", - "aggregators": ["PancakeCoinGecko", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0x29c55f1b02a95f0b30e61976835a3eee2359ad92": { - "address": "0x29c55f1b02a95f0b30e61976835a3eee2359ad92", - "symbol": "ESHAREV2", - "decimals": 18, - "name": "EMP Shares", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x29c55f1b02a95f0b30e61976835a3eee2359ad92.png", - "aggregators": ["PancakeCoinGecko", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0x928f64d31186a0a341b38624177e911d746dc6b6": { - "address": "0x928f64d31186a0a341b38624177e911d746dc6b6", - "symbol": "EVLD", - "decimals": 6, - "name": "Evoload", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x928f64d31186a0a341b38624177e911d746dc6b6.png", - "aggregators": ["PancakeCoinGecko", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0x4dc507440ef8fe7e80eefd0951fbbb13fec0d7a7": { - "address": "0x4dc507440ef8fe7e80eefd0951fbbb13fec0d7a7", - "symbol": "FROP", - "decimals": 18, - "name": "Popo The Frog", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x4dc507440ef8fe7e80eefd0951fbbb13fec0d7a7.png", - "aggregators": ["PancakeCoinGecko", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0x3f6b3595ecf70735d3f48d69b09c4e4506db3f47": { - "address": "0x3f6b3595ecf70735d3f48d69b09c4e4506db3f47", - "symbol": "GAMER", - "decimals": 18, - "name": "GameStation", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x3f6b3595ecf70735d3f48d69b09c4e4506db3f47.png", - "aggregators": ["PancakeCoinGecko", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0x167fcfed3aad2d11052fcde0cbf704d879939473": { - "address": "0x167fcfed3aad2d11052fcde0cbf704d879939473", - "symbol": "GROW", - "decimals": 18, - "name": "Triathon", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x167fcfed3aad2d11052fcde0cbf704d879939473.png", - "aggregators": [ - "PancakeCoinMarketCap", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 4 - }, - "0x7777ca3b39f446d4b3472d6ea5080682686a7777": { - "address": "0x7777ca3b39f446d4b3472d6ea5080682686a7777", - "symbol": "GFX", - "decimals": 18, - "name": "GameFi X", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x7777ca3b39f446d4b3472d6ea5080682686a7777.png", - "aggregators": ["PancakeCoinGecko", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0xdb533afcbcb88edfe256e9373a513021c2d6286e": { - "address": "0xdb533afcbcb88edfe256e9373a513021c2d6286e", - "symbol": "GNFTY", - "decimals": 18, - "name": "GoNFTY", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xdb533afcbcb88edfe256e9373a513021c2d6286e.png", - "aggregators": ["PancakeCoinGecko", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0xbc5e9b2b222130115788139b495af4e1c6a70912": { - "address": "0xbc5e9b2b222130115788139b495af4e1c6a70912", - "symbol": "GROKQUEEN", - "decimals": 9, - "name": "Grok Queen", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xbc5e9b2b222130115788139b495af4e1c6a70912.png", - "aggregators": ["PancakeCoinGecko", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0x7e4c1d51ace44e26c5924d590995dea3eb8ad505": { - "address": "0x7e4c1d51ace44e26c5924d590995dea3eb8ad505", - "symbol": "HIP", - "decimals": 18, - "name": "Gameta", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x7e4c1d51ace44e26c5924d590995dea3eb8ad505.png", - "aggregators": ["PancakeCoinGecko", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0x5a7a183b6b44dc4ec2e3d2ef43f98c5152b1d76d": { - "address": "0x5a7a183b6b44dc4ec2e3d2ef43f98c5152b1d76d", - "symbol": "INETH", - "decimals": 18, - "name": "Inception Restaked ETH", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x5a7a183b6b44dc4ec2e3d2ef43f98c5152b1d76d.png", - "aggregators": ["PancakeCoinGecko", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0x7c869b5a294b1314e985283d01c702b62224a05f": { - "address": "0x7c869b5a294b1314e985283d01c702b62224a05f", - "symbol": "JCHF", - "decimals": 18, - "name": "Jarvis Synthetic Swiss Franc", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x7c869b5a294b1314e985283d01c702b62224a05f.png", - "aggregators": ["PancakeCoinGecko", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0x56a1eec9494ad59a1954616cb38715dc4aa61960": { - "address": "0x56a1eec9494ad59a1954616cb38715dc4aa61960", - "symbol": "JMTAI", - "decimals": 18, - "name": "Judgment AI", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x56a1eec9494ad59a1954616cb38715dc4aa61960.png", - "aggregators": ["PancakeCoinGecko", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0xa66cd1c4d890faa7c1a09a54a254d33d809ba3b5": { - "address": "0xa66cd1c4d890faa7c1a09a54a254d33d809ba3b5", - "symbol": "KTR", - "decimals": 18, - "name": "Kitty Run", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xa66cd1c4d890faa7c1a09a54a254d33d809ba3b5.png", - "aggregators": ["PancakeCoinGecko", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0x510ca7d22a84599e7d0f15f09e674056a6255389": { - "address": "0x510ca7d22a84599e7d0f15f09e674056a6255389", - "symbol": "LABSV2", - "decimals": 18, - "name": "LABSV2", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x510ca7d22a84599e7d0f15f09e674056a6255389.png", - "aggregators": [ - "PancakeCoinMarketCap", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 4 - }, - "0xd6a540543327b5a4f2223f123640932ee3c6c583": { - "address": "0xd6a540543327b5a4f2223f123640932ee3c6c583", - "symbol": "LCN", - "decimals": 8, - "name": "Lyncoin", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xd6a540543327b5a4f2223f123640932ee3c6c583.png", - "aggregators": ["PancakeCoinGecko", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0x61909950e1bfb5d567c5463cbd33dc1cdc85ee93": { - "address": "0x61909950e1bfb5d567c5463cbd33dc1cdc85ee93", - "symbol": "LITHO", - "decimals": 18, - "name": "Lithosphere", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x61909950e1bfb5d567c5463cbd33dc1cdc85ee93.png", - "aggregators": ["PancakeCoinGecko", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0xd979d11c03cc7a66028755846f77fff0a270f753": { - "address": "0xd979d11c03cc7a66028755846f77fff0a270f753", - "symbol": "LOH", - "decimals": 18, - "name": "Land Of Heroes", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xd979d11c03cc7a66028755846f77fff0a270f753.png", - "aggregators": ["PancakeCoinGecko", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0xd4c73fd18f732bc6ee9fb193d109b2eed815df80": { - "address": "0xd4c73fd18f732bc6ee9fb193d109b2eed815df80", - "symbol": "MAG", - "decimals": 18, - "name": "Monsterra MAG", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xd4c73fd18f732bc6ee9fb193d109b2eed815df80.png", - "aggregators": ["PancakeCoinGecko", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0x1d42e1cd643941b26a4191e72a617ed32670df55": { - "address": "0x1d42e1cd643941b26a4191e72a617ed32670df55", - "symbol": "MBP", - "decimals": 10, - "name": "MBP Coin", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x1d42e1cd643941b26a4191e72a617ed32670df55.png", - "aggregators": ["PancakeCoinGecko", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0xd77b2d571256ce5fb3365bfff3c5859d1ef40f0a": { - "address": "0xd77b2d571256ce5fb3365bfff3c5859d1ef40f0a", - "symbol": "MCAKE", - "decimals": 18, - "name": "EasyCake", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xd77b2d571256ce5fb3365bfff3c5859d1ef40f0a.png", - "aggregators": ["PancakeCoinGecko", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0xdc0d0eb492e4902c5991c5cb2038fb06409e7f99": { - "address": "0xdc0d0eb492e4902c5991c5cb2038fb06409e7f99", - "symbol": "MG8", - "decimals": 18, - "name": "Megalink", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xdc0d0eb492e4902c5991c5cb2038fb06409e7f99.png", - "aggregators": ["PancakeCoinGecko", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0xbf76dbf84b16da71366fc73cf8c19600449ce71a": { - "address": "0xbf76dbf84b16da71366fc73cf8c19600449ce71a", - "symbol": "MIMBO", - "decimals": 18, - "name": "Mimbo", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xbf76dbf84b16da71366fc73cf8c19600449ce71a.png", - "aggregators": ["PancakeCoinGecko", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0x768d221e81524de52841aed976370b2e4f990416": { - "address": "0x768d221e81524de52841aed976370b2e4f990416", - "symbol": "MMP", - "decimals": 18, - "name": "Moon Maker Protocol", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x768d221e81524de52841aed976370b2e4f990416.png", - "aggregators": ["PancakeCoinGecko", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0x33be7644c0e489b3a0c639d103392d4f3e338158": { - "address": "0x33be7644c0e489b3a0c639d103392d4f3e338158", - "symbol": "MNFT", - "decimals": 18, - "name": "Marvelous NFTs", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x33be7644c0e489b3a0c639d103392d4f3e338158.png", - "aggregators": ["PancakeCoinGecko", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0xbd4b29918d92d613b019252091ab0189f354534f": { - "address": "0xbd4b29918d92d613b019252091ab0189f354534f", - "symbol": "MSHIBA", - "decimals": 18, - "name": "Matsuri Shiba Inu", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xbd4b29918d92d613b019252091ab0189f354534f.png", - "aggregators": ["PancakeCoinGecko", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0x10c9524dbf934b3b625dce3bdc0efdc367f4e84b": { - "address": "0x10c9524dbf934b3b625dce3bdc0efdc367f4e84b", - "symbol": "MVX", - "decimals": 8, - "name": "Mavaverse", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x10c9524dbf934b3b625dce3bdc0efdc367f4e84b.png", - "aggregators": ["PancakeCoinGecko", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0x021f48697343a6396bafc01795a4c140b637f4b4": { - "address": "0x021f48697343a6396bafc01795a4c140b637f4b4", - "symbol": "MYS", - "decimals": 18, - "name": "Magic Yearn Share", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x021f48697343a6396bafc01795a4c140b637f4b4.png", - "aggregators": ["PancakeCoinGecko", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0x563b7b186dd21b320d8f721c971b40b3d6d36113": { - "address": "0x563b7b186dd21b320d8f721c971b40b3d6d36113", - "symbol": "NFTC", - "decimals": 18, - "name": "NFT Combining", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x563b7b186dd21b320d8f721c971b40b3d6d36113.png", - "aggregators": ["PancakeCoinGecko", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0x5d5c5c1d14faf8ff704295b2f502daa9d06799a0": { - "address": "0x5d5c5c1d14faf8ff704295b2f502daa9d06799a0", - "symbol": "NNN", - "decimals": 18, - "name": "Novem Gold Token", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x5d5c5c1d14faf8ff704295b2f502daa9d06799a0.png", - "aggregators": ["PancakeCoinGecko", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0x5a10bdbbaf804184508d4a9e3ebdaf453129a452": { - "address": "0x5a10bdbbaf804184508d4a9e3ebdaf453129a452", - "symbol": "NPT", - "decimals": 18, - "name": "Nexus Pro Token", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x5a10bdbbaf804184508d4a9e3ebdaf453129a452.png", - "aggregators": ["PancakeCoinGecko", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0x93ea2a6508d410490f2094fc68625522ddc5cd9f": { - "address": "0x93ea2a6508d410490f2094fc68625522ddc5cd9f", - "symbol": "NRG", - "decimals": 18, - "name": "Energy Token", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x93ea2a6508d410490f2094fc68625522ddc5cd9f.png", - "aggregators": ["PancakeCoinGecko", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0x6ab39cd7ff157caeecb97f69a54f8c0e67861feb": { - "address": "0x6ab39cd7ff157caeecb97f69a54f8c0e67861feb", - "symbol": "NYANDOGE", - "decimals": 18, - "name": "NyanDOGE International", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x6ab39cd7ff157caeecb97f69a54f8c0e67861feb.png", - "aggregators": ["PancakeCoinGecko", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0x3ec451733496b0ee147926cadf2fc58a2947300a": { - "address": "0x3ec451733496b0ee147926cadf2fc58a2947300a", - "symbol": "OCB", - "decimals": 18, - "name": "OneCoinBuy", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x3ec451733496b0ee147926cadf2fc58a2947300a.png", - "aggregators": ["PancakeCoinGecko", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0xdf0121a3ba5c10816ea2943c722650c4a4b0dbe6": { - "address": "0xdf0121a3ba5c10816ea2943c722650c4a4b0dbe6", - "symbol": "OPS", - "decimals": 18, - "name": "Octopus Protocol", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xdf0121a3ba5c10816ea2943c722650c4a4b0dbe6.png", - "aggregators": ["PancakeCoinGecko", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0x9f3a937a3cdd0673088304311a9c98a18ad0a3d8": { - "address": "0x9f3a937a3cdd0673088304311a9c98a18ad0a3d8", - "symbol": "PANA", - "decimals": 18, - "name": "Panacoin", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x9f3a937a3cdd0673088304311a9c98a18ad0a3d8.png", - "aggregators": ["PancakeCoinGecko", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0x673da443da2f6ae7c5c660a9f0d3dd24d1643d36": { - "address": "0x673da443da2f6ae7c5c660a9f0d3dd24d1643d36", - "symbol": "RAINBOWTOKEN", - "decimals": 9, - "name": "RainbowToken", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x673da443da2f6ae7c5c660a9f0d3dd24d1643d36.png", - "aggregators": [ - "PancakeCoinMarketCap", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 4 - }, - "0x2a900573082c58053377e54642038fa46f19a8a2": { - "address": "0x2a900573082c58053377e54642038fa46f19a8a2", - "symbol": "RIKO", - "decimals": 18, - "name": "RIKO", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x2a900573082c58053377e54642038fa46f19a8a2.png", - "aggregators": ["PancakeCoinGecko", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0x37ac4d6140e54304d77437a5c11924f61a2d976f": { - "address": "0x37ac4d6140e54304d77437a5c11924f61a2d976f", - "symbol": "SFUEL", - "decimals": 18, - "name": "SparkPoint Fuel", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x37ac4d6140e54304d77437a5c11924f61a2d976f.png", - "aggregators": [ - "PancakeCoinMarketCap", - "TrustWallet", - "Rubic", - "Rango" - ], - "occurrences": 4 - }, - "0x0b34d4a7c5bfc7004b9a193f8309523e99ca766e": { - "address": "0x0b34d4a7c5bfc7004b9a193f8309523e99ca766e", - "symbol": "SHON", - "decimals": 18, - "name": "Shon", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x0b34d4a7c5bfc7004b9a193f8309523e99ca766e.png", - "aggregators": ["PancakeCoinGecko", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0xb65d506b0343db06200c0803585554da3712830f": { - "address": "0xb65d506b0343db06200c0803585554da3712830f", - "symbol": "SLC", - "decimals": 18, - "name": "SparkLucky", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xb65d506b0343db06200c0803585554da3712830f.png", - "aggregators": ["PancakeCoinGecko", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0xeba6a22ba57994b6600671ec9ec8389272cbe71d": { - "address": "0xeba6a22ba57994b6600671ec9ec8389272cbe71d", - "symbol": "SMILE", - "decimals": 18, - "name": "SmileAI", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xeba6a22ba57994b6600671ec9ec8389272cbe71d.png", - "aggregators": ["PancakeCoinGecko", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0x5e7fc3844463745fca858f85d6b90d9a03fcbe93": { - "address": "0x5e7fc3844463745fca858f85d6b90d9a03fcbe93", - "symbol": "SNB", - "decimals": 8, - "name": "Safe Nebula", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x5e7fc3844463745fca858f85d6b90d9a03fcbe93.png", - "aggregators": ["PancakeCoinGecko", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0x34980c35353a8d7b1a1ba02e02e387a8383e004a": { - "address": "0x34980c35353a8d7b1a1ba02e02e387a8383e004a", - "symbol": "SNK", - "decimals": 18, - "name": "Snake", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x34980c35353a8d7b1a1ba02e02e387a8383e004a.png", - "aggregators": ["PancakeCoinGecko", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0x1a28ed8472f644e8898a169a644503b779748d6e": { - "address": "0x1a28ed8472f644e8898a169a644503b779748d6e", - "symbol": "SOFI", - "decimals": 18, - "name": "RAI Finance", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x1a28ed8472f644e8898a169a644503b779748d6e.png", - "aggregators": ["PancakeCoinGecko", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0xfab178ec82e29761f79565f260c1b1e8fead566e": { - "address": "0xfab178ec82e29761f79565f260c1b1e8fead566e", - "symbol": "SWO", - "decimals": 18, - "name": "Sword and Magic World", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xfab178ec82e29761f79565f260c1b1e8fead566e.png", - "aggregators": ["PancakeCoinGecko", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0xe981ed1c382eea4424fbaa889852149b964400be": { - "address": "0xe981ed1c382eea4424fbaa889852149b964400be", - "symbol": "TIP", - "decimals": 9, - "name": "Tiperian", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xe981ed1c382eea4424fbaa889852149b964400be.png", - "aggregators": ["PancakeCoinGecko", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0x49d71842870b5a1e19ee14c8281114be74d5be20": { - "address": "0x49d71842870b5a1e19ee14c8281114be74d5be20", - "symbol": "TRCON", - "decimals": 18, - "name": "TERATTO", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x49d71842870b5a1e19ee14c8281114be74d5be20.png", - "aggregators": ["PancakeCoinGecko", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0xccf15cf6e1b65c935572564185701a9e740da8a5": { - "address": "0xccf15cf6e1b65c935572564185701a9e740da8a5", - "symbol": "TROG", - "decimals": 9, - "name": "TROG", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xccf15cf6e1b65c935572564185701a9e740da8a5.png", - "aggregators": ["PancakeCoinGecko", "Socket", "Rubic", "Rango"], - "occurrences": 4 - }, - "0xe610d6ee762f865f98b2458af87a79828fa724f3": { - "address": "0xe610d6ee762f865f98b2458af87a79828fa724f3", - "symbol": "TRRXITTE", - "decimals": 18, - "name": "TRRXITTE International", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xe610d6ee762f865f98b2458af87a79828fa724f3.png", - "aggregators": ["PancakeCoinGecko", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0x50183054167b9dd2cb4c363092e3d6389648c2a4": { - "address": "0x50183054167b9dd2cb4c363092e3d6389648c2a4", - "symbol": "UNQT", - "decimals": 18, - "name": "Unique Utility", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x50183054167b9dd2cb4c363092e3d6389648c2a4.png", - "aggregators": ["PancakeCoinGecko", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0x0f6d3353914caafe18ab0c835a789afc886e7039": { - "address": "0x0f6d3353914caafe18ab0c835a789afc886e7039", - "symbol": "UNT", - "decimals": 18, - "name": "Umi's Friends Unity", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x0f6d3353914caafe18ab0c835a789afc886e7039.png", - "aggregators": ["PancakeCoinGecko", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0x672147dd47674757c457eb155baa382cc10705dd": { - "address": "0x672147dd47674757c457eb155baa382cc10705dd", - "symbol": "USDC", - "decimals": 6, - "name": "USD Coin (PoS)", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x672147dd47674757c457eb155baa382cc10705dd.png", - "aggregators": ["PancakeCoinGecko", "Socket", "Rubic", "Rango"], - "occurrences": 4 - }, - "0x953e94caf91a1e32337d0548b9274f337920edfa": { - "address": "0x953e94caf91a1e32337d0548b9274f337920edfa", - "symbol": "USDV", - "decimals": 18, - "name": "USDV", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x953e94caf91a1e32337d0548b9274f337920edfa.png", - "aggregators": ["PancakeCoinGecko", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0x2f053e33bd590830858161d42c67e9e8a9390019": { - "address": "0x2f053e33bd590830858161d42c67e9e8a9390019", - "symbol": "VENTION", - "decimals": 18, - "name": "Vention", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x2f053e33bd590830858161d42c67e9e8a9390019.png", - "aggregators": [ - "PancakeCoinMarketCap", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 4 - }, - "0xed236c32f695c83efde232c288701d6f9c23e60e": { - "address": "0xed236c32f695c83efde232c288701d6f9c23e60e", - "symbol": "VRTK", - "decimals": 18, - "name": "Vertek", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xed236c32f695c83efde232c288701d6f9c23e60e.png", - "aggregators": ["PancakeCoinGecko", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0xb7ae4ea886face39d47a47f46d6afabcaad5af6e": { - "address": "0xb7ae4ea886face39d47a47f46d6afabcaad5af6e", - "symbol": "W8BIT", - "decimals": 18, - "name": "8Bit Chain", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xb7ae4ea886face39d47a47f46d6afabcaad5af6e.png", - "aggregators": ["PancakeCoinGecko", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0x3623f2b63d8f50b477849d29e7c9a6625331e89d": { - "address": "0x3623f2b63d8f50b477849d29e7c9a6625331e89d", - "symbol": "WEC", - "decimals": 18, - "name": "Whole Earth Coin", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x3623f2b63d8f50b477849d29e7c9a6625331e89d.png", - "aggregators": ["PancakeCoinGecko", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0x632b8c4e95b2f8a9309417f8d990ab9c04c77369": { - "address": "0x632b8c4e95b2f8a9309417f8d990ab9c04c77369", - "symbol": "WET", - "decimals": 18, - "name": "Weble Ecosystem", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x632b8c4e95b2f8a9309417f8d990ab9c04c77369.png", - "aggregators": ["PancakeCoinGecko", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0x0093f72b900c0b526aa0ef736048a916010a02d1": { - "address": "0x0093f72b900c0b526aa0ef736048a916010a02d1", - "symbol": "XDOGE", - "decimals": 18, - "name": "XDOGE", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x0093f72b900c0b526aa0ef736048a916010a02d1.png", - "aggregators": ["PancakeCoinGecko", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0x7cc1c126be3128c1f0441a893cd6220498b27650": { - "address": "0x7cc1c126be3128c1f0441a893cd6220498b27650", - "symbol": "XROW", - "decimals": 18, - "name": "XROW", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x7cc1c126be3128c1f0441a893cd6220498b27650.png", - "aggregators": ["PancakeCoinGecko", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0x62d7c4e3566f7f4033fc8e01b4d8e9bbc01c0760": { - "address": "0x62d7c4e3566f7f4033fc8e01b4d8e9bbc01c0760", - "symbol": "XWGT", - "decimals": 18, - "name": "Wodo Gaming", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x62d7c4e3566f7f4033fc8e01b4d8e9bbc01c0760.png", - "aggregators": ["PancakeCoinGecko", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0xff61f59f1591b32d08414acac4454cf7096b67ea": { - "address": "0xff61f59f1591b32d08414acac4454cf7096b67ea", - "symbol": "YOLO", - "decimals": 18, - "name": "YOLO", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xff61f59f1591b32d08414acac4454cf7096b67ea.png", - "aggregators": ["PancakeCoinGecko", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0x2efdff1e566202f82e774bb7add18c56cbb9427d": { - "address": "0x2efdff1e566202f82e774bb7add18c56cbb9427d", - "symbol": "ZAFI", - "decimals": 17, - "name": "ZakumiFi", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x2efdff1e566202f82e774bb7add18c56cbb9427d.png", - "aggregators": [ - "PancakeCoinMarketCap", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 4 - }, - "0x9a2478c4036548864d96a97fbf93f6a3341fedac": { - "address": "0x9a2478c4036548864d96a97fbf93f6a3341fedac", - "symbol": "ZILLIONXO", - "decimals": 9, - "name": "Zillion Aakar XO", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x9a2478c4036548864d96a97fbf93f6a3341fedac.png", - "aggregators": [ - "PancakeCoinMarketCap", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 4 - }, - "0x0bb536b81aa213b4fb1ed53765d105887e8d9160": { - "address": "0x0bb536b81aa213b4fb1ed53765d105887e8d9160", - "symbol": "ZIGAP", - "decimals": 18, - "name": "ZIGAP", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x0bb536b81aa213b4fb1ed53765d105887e8d9160.png", - "aggregators": ["PancakeCoinGecko", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0x4ace5cdb2aa47d1b2b8e4c4ca01bf6850a4b87b5": { - "address": "0x4ace5cdb2aa47d1b2b8e4c4ca01bf6850a4b87b5", - "symbol": "ZILLA", - "decimals": 18, - "name": "DogeZilla", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x4ace5cdb2aa47d1b2b8e4c4ca01bf6850a4b87b5.png", - "aggregators": ["PancakeCoinGecko", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0x0b9bdcc696efa768cafe0e675525eaf42e32d108": { - "address": "0x0b9bdcc696efa768cafe0e675525eaf42e32d108", - "symbol": "ZZZ", - "decimals": 18, - "name": "GoSleep ZZZ", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x0b9bdcc696efa768cafe0e675525eaf42e32d108.png", - "aggregators": ["PancakeCoinGecko", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0xcffd4d3b517b77be32c76da768634de6c738889b": { - "address": "0xcffd4d3b517b77be32c76da768634de6c738889b", - "symbol": "ARENA", - "decimals": 18, - "name": "ESPL ARENA", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xcffd4d3b517b77be32c76da768634de6c738889b.png", - "aggregators": ["PancakeExtended", "LiFi", "Rubic"], - "occurrences": 3 - }, - "0x5afa2959c98b030716f7c0a4d85e0b0e35f3791b": { - "address": "0x5afa2959c98b030716f7c0a4d85e0b0e35f3791b", - "symbol": "BITCOIN", - "decimals": 9, - "name": "ElonXAIDogeMessi69PepeInu", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x5afa2959c98b030716f7c0a4d85e0b0e35f3791b.png", - "aggregators": ["PancakeCoinMarketCap", "Socket", "Rubic", "Rango"], - "occurrences": 4 - }, - "0x790be81c3ca0e53974be2688cdb954732c9862e1": { - "address": "0x790be81c3ca0e53974be2688cdb954732c9862e1", - "symbol": "BREW", - "decimals": 18, - "name": "CafeSwap Token", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x790be81c3ca0e53974be2688cdb954732c9862e1.png", - "aggregators": [ - "PancakeCoinMarketCap", - "TrustWallet", - "Rubic", - "Rango" - ], - "occurrences": 4 - }, - "0xc2e1acef50ae55661855e8dcb72adb182a3cc259": { - "address": "0xc2e1acef50ae55661855e8dcb72adb182a3cc259", - "symbol": "BTS", - "decimals": 18, - "name": "BTS", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xc2e1acef50ae55661855e8dcb72adb182a3cc259.png", - "aggregators": ["PancakeCoinMarketCap", "LiFi", "Rubic", "Rango"], - "occurrences": 4 - }, - "0x3cef8d4cc106a169902ea985cec2dc6ab055ad4c": { - "address": "0x3cef8d4cc106a169902ea985cec2dc6ab055ad4c", - "symbol": "CAI", - "decimals": 9, - "name": "Crypto AI", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x3cef8d4cc106a169902ea985cec2dc6ab055ad4c.png", - "aggregators": ["PancakeCoinMarketCap", "Socket", "Rubic", "Rango"], - "occurrences": 4 - }, - "0xd41c4805a9a3128f9f7a7074da25965371ba50d5": { - "address": "0xd41c4805a9a3128f9f7a7074da25965371ba50d5", - "symbol": "COINSCOPE", - "decimals": 18, - "name": "Coinscope", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xd41c4805a9a3128f9f7a7074da25965371ba50d5.png", - "aggregators": ["PancakeCoinMarketCap", "1inch", "Rubic", "Rango"], - "occurrences": 4 - }, - "0xcc2e12a9b5b75360c6fbf23b584c275d52cddb0e": { - "address": "0xcc2e12a9b5b75360c6fbf23b584c275d52cddb0e", - "symbol": "CROW", - "decimals": 18, - "name": "Crow Token", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xcc2e12a9b5b75360c6fbf23b584c275d52cddb0e.png", - "aggregators": [ - "PancakeCoinMarketCap", - "TrustWallet", - "Socket", - "Rubic" - ], - "occurrences": 4 - }, - "0xfb7400707df3d76084fbeae0109f41b178f71c02": { - "address": "0xfb7400707df3d76084fbeae0109f41b178f71c02", - "symbol": "DOWS", - "decimals": 18, - "name": "DOWS", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xfb7400707df3d76084fbeae0109f41b178f71c02.png", - "aggregators": ["PancakeCoinMarketCap", "LiFi", "Rubic", "Rango"], - "occurrences": 4 - }, - "0x3944ac66b9b9b40a6474022d6962b6caa001b5e3": { - "address": "0x3944ac66b9b9b40a6474022d6962b6caa001b5e3", - "symbol": "EBA", - "decimals": 18, - "name": "Elpis Battle", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x3944ac66b9b9b40a6474022d6962b6caa001b5e3.png", - "aggregators": ["PancakeCoinMarketCap", "LiFi", "Rubic", "Rango"], - "occurrences": 4 - }, - "0x0f0dd5e2c0e0c4a41f8908d73d36b8d142f6745a": { - "address": "0x0f0dd5e2c0e0c4a41f8908d73d36b8d142f6745a", - "symbol": "FIRE", - "decimals": 18, - "name": "FIRE", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x0f0dd5e2c0e0c4a41f8908d73d36b8d142f6745a.png", - "aggregators": ["PancakeCoinMarketCap", "Socket", "Rubic", "Rango"], - "occurrences": 4 - }, - "0x924d221c4fd599e5894706ac2e8f6a35a3cc981e": { - "address": "0x924d221c4fd599e5894706ac2e8f6a35a3cc981e", - "symbol": "FRR", - "decimals": 18, - "name": "FRR", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x924d221c4fd599e5894706ac2e8f6a35a3cc981e.png", - "aggregators": ["PancakeCoinMarketCap", "Socket", "Rubic", "Rango"], - "occurrences": 4 - }, - "0xb46049c79d77ff1d555a67835fba6978536581af": { - "address": "0xb46049c79d77ff1d555a67835fba6978536581af", - "symbol": "MFO", - "decimals": 18, - "name": "Moonfarm Finance", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xb46049c79d77ff1d555a67835fba6978536581af.png", - "aggregators": ["PancakeCoinMarketCap", "LiFi", "Rubic", "Rango"], - "occurrences": 4 - }, - "0x129385c4acd0075e45a0c9a5177bdfec9678a138": { - "address": "0x129385c4acd0075e45a0c9a5177bdfec9678a138", - "symbol": "MTK", - "decimals": 18, - "name": "METAKINGS", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x129385c4acd0075e45a0c9a5177bdfec9678a138.png", - "aggregators": ["PancakeCoinMarketCap", "Socket", "Rubic", "Rango"], - "occurrences": 4 - }, - "0xf54b110b84ab2033330ed64c645a136ef0dde683": { - "address": "0xf54b110b84ab2033330ed64c645a136ef0dde683", - "symbol": "PLENA", - "decimals": 18, - "name": "Plena", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xf54b110b84ab2033330ed64c645a136ef0dde683.png", - "aggregators": [ - "PancakeCoinMarketCap", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 4 - }, - "0x7704d0ead6f74e625d7371b079d8b2475bc852d4": { - "address": "0x7704d0ead6f74e625d7371b079d8b2475bc852d4", - "symbol": "PULSE", - "decimals": 9, - "name": "PulseAI", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x7704d0ead6f74e625d7371b079d8b2475bc852d4.png", - "aggregators": ["PancakeCoinMarketCap", "Socket", "Rubic", "Rango"], - "occurrences": 4 - }, - "0xd52efe1039d706722b3d696e74ad4095dc3d3860": { - "address": "0xd52efe1039d706722b3d696e74ad4095dc3d3860", - "symbol": "PWR", - "decimals": 18, - "name": "PWR", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xd52efe1039d706722b3d696e74ad4095dc3d3860.png", - "aggregators": ["PancakeCoinMarketCap", "LiFi", "Rubic", "Rango"], - "occurrences": 4 - }, - "0xedecfb4801c04f3eb394b89397c6aafa4adda15b": { - "address": "0xedecfb4801c04f3eb394b89397c6aafa4adda15b", - "symbol": "PYRAM", - "decimals": 18, - "name": "PYRAM", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xedecfb4801c04f3eb394b89397c6aafa4adda15b.png", - "aggregators": ["PancakeCoinMarketCap", "LiFi", "Rubic", "Rango"], - "occurrences": 4 - }, - "0x07aaa29e63ffeb2ebf59b33ee61437e1a91a3bb2": { - "address": "0x07aaa29e63ffeb2ebf59b33ee61437e1a91a3bb2", - "symbol": "QSD", - "decimals": 18, - "name": "QSD", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x07aaa29e63ffeb2ebf59b33ee61437e1a91a3bb2.png", - "aggregators": ["PancakeExtended", "LiFi", "Rubic", "Rango"], - "occurrences": 4 - }, - "0x4b497a84fe1b0df682425799c0580355b0dc05b8": { - "address": "0x4b497a84fe1b0df682425799c0580355b0dc05b8", - "symbol": "REBD", - "decimals": 18, - "name": "REBORN", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x4b497a84fe1b0df682425799c0580355b0dc05b8.png", - "aggregators": [ - "PancakeCoinMarketCap", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 4 - }, - "0x30dcf96a8a0c742aa1f534fac79e99d320c97901": { - "address": "0x30dcf96a8a0c742aa1f534fac79e99d320c97901", - "symbol": "STR", - "decimals": 13, - "name": "SourceLess", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x30dcf96a8a0c742aa1f534fac79e99d320c97901.png", - "aggregators": ["PancakeCoinMarketCap", "Socket", "Rubic", "Squid"], - "occurrences": 4 - }, - "0xe792f64c582698b8572aaf765bdc426ac3aefb6b": { - "address": "0xe792f64c582698b8572aaf765bdc426ac3aefb6b", - "symbol": "SWG", - "decimals": 18, - "name": "SWGToken", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xe792f64c582698b8572aaf765bdc426ac3aefb6b.png", - "aggregators": ["PancakeExtended", "LiFi", "Rubic"], - "occurrences": 3 - }, - "0x250b211ee44459dad5cd3bca803dd6a7ecb5d46c": { - "address": "0x250b211ee44459dad5cd3bca803dd6a7ecb5d46c", - "symbol": "SWTH", - "decimals": 8, - "name": "SWTH", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x250b211ee44459dad5cd3bca803dd6a7ecb5d46c.png", - "aggregators": ["PancakeCoinMarketCap", "LiFi", "Rubic", "Rango"], - "occurrences": 4 - }, - "0x9798df2f5d213a872c787bd03b2b91f54d0d04a1": { - "address": "0x9798df2f5d213a872c787bd03b2b91f54d0d04a1", - "symbol": "TBC", - "decimals": 18, - "name": "TeraBlock Token", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x9798df2f5d213a872c787bd03b2b91f54d0d04a1.png", - "aggregators": [ - "PancakeCoinMarketCap", - "TrustWallet", - "Socket", - "Rubic" - ], - "occurrences": 4 - }, - "0x19048172b5a0893ad008e7c52c11a6dd3c8784a1": { - "address": "0x19048172b5a0893ad008e7c52c11a6dd3c8784a1", - "symbol": "WILD", - "decimals": 18, - "name": "Wild Island Game", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x19048172b5a0893ad008e7c52c11a6dd3c8784a1.png", - "aggregators": ["PancakeCoinMarketCap", "Socket", "Rubic", "Rango"], - "occurrences": 4 - }, - "0xcbcd9c0f344960f40c5ce7eb17a17e837fe8bb92": { - "address": "0xcbcd9c0f344960f40c5ce7eb17a17e837fe8bb92", - "symbol": "WOLF", - "decimals": 18, - "name": "WOLFCOIN", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xcbcd9c0f344960f40c5ce7eb17a17e837fe8bb92.png", - "aggregators": ["PancakeCoinMarketCap", "Socket", "Rubic", "Rango"], - "occurrences": 4 - }, - "0x2a45a892877ef383c5fc93a5206546c97496da9e": { - "address": "0x2a45a892877ef383c5fc93a5206546c97496da9e", - "symbol": "X", - "decimals": 9, - "name": "X AI", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x2a45a892877ef383c5fc93a5206546c97496da9e.png", - "aggregators": ["PancakeCoinMarketCap", "Socket", "Rubic", "Rango"], - "occurrences": 4 - }, - "0xb9d35811424600fa9e8cd62a0471fbd025131cb8": { - "address": "0xb9d35811424600fa9e8cd62a0471fbd025131cb8", - "symbol": "YES", - "decimals": 18, - "name": "YES WORLD", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xb9d35811424600fa9e8cd62a0471fbd025131cb8.png", - "aggregators": ["PancakeCoinMarketCap", "LiFi", "Socket", "Rubic"], - "occurrences": 4 - }, - "0x40e46de174dfb776bb89e04df1c47d8a66855eb3": { - "address": "0x40e46de174dfb776bb89e04df1c47d8a66855eb3", - "symbol": "BSCDEFI", - "decimals": 18, - "name": "BSCDEFI", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x40e46de174dfb776bb89e04df1c47d8a66855eb3.png", - "aggregators": ["PancakeExtended", "LiFi", "Rubic", "Rango"], - "occurrences": 4 - }, - "0x5ec3adbdae549dce842e24480eb2434769e22b2e": { - "address": "0x5ec3adbdae549dce842e24480eb2434769e22b2e", - "symbol": "CVP", - "decimals": 18, - "name": "CVP", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x5ec3adbdae549dce842e24480eb2434769e22b2e.png", - "aggregators": ["PancakeExtended", "Socket", "Rubic", "Rango"], - "occurrences": 4 - }, - "0x9899a98b222fcb2f3dbee7df45d943093a4ff9ff": { - "address": "0x9899a98b222fcb2f3dbee7df45d943093a4ff9ff", - "symbol": "DFD", - "decimals": 18, - "name": "DFD", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x9899a98b222fcb2f3dbee7df45d943093a4ff9ff.png", - "aggregators": ["PancakeExtended", "LiFi", "Rubic", "Rango"], - "occurrences": 4 - }, - "0x9fd470124903957f299a1c90feda9043a4619cc6": { - "address": "0x9fd470124903957f299a1c90feda9043a4619cc6", - "symbol": "HUAHUA", - "decimals": 6, - "name": "Chihuahua Token", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x9fd470124903957f299a1c90feda9043a4619cc6.png", - "aggregators": ["PancakeExtended", "Rubic", "Squid"], - "occurrences": 3 - }, - "0x9356f6d95b8e109f4b7ce3e49d672967d3b48383": { - "address": "0x9356f6d95b8e109f4b7ce3e49d672967d3b48383", - "symbol": "KBTC", - "decimals": 18, - "name": "Kinza Babylon Staked BTC", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x9356f6d95b8e109f4b7ce3e49d672967d3b48383.png", - "aggregators": ["PancakeExtended", "LiFi", "Rubic", "Squid"], - "occurrences": 4 - }, - "0xbcf39f0edda668c58371e519af37ca705f2bfcbd": { - "address": "0xbcf39f0edda668c58371e519af37ca705f2bfcbd", - "symbol": "PCWS", - "decimals": 18, - "name": "PolyCrowns", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xbcf39f0edda668c58371e519af37ca705f2bfcbd.png", - "aggregators": ["PancakeExtended", "LiFi", "Rubic", "Rango"], - "occurrences": 4 - }, - "0x7e396bfc8a2f84748701167c2d622f041a1d7a17": { - "address": "0x7e396bfc8a2f84748701167c2d622f041a1d7a17", - "symbol": "WMASS", - "decimals": 8, - "name": "WMASS", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x7e396bfc8a2f84748701167c2d622f041a1d7a17.png", - "aggregators": ["PancakeExtended", "LiFi", "Rubic", "Rango"], - "occurrences": 4 - }, - "0x7a10f506e4c7658e6ad15fdf0443d450b7fa80d7": { - "address": "0x7a10f506e4c7658e6ad15fdf0443d450b7fa80d7", - "symbol": "EYWA", - "decimals": 18, - "name": "EYWA", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x7a10f506e4c7658e6ad15fdf0443d450b7fa80d7.png", - "aggregators": ["PancakeExtended", "Socket", "Rubic", "Rango"], - "occurrences": 4 - }, - "0xf8252c05ec4cb2fdf1e0398bae049d454ddba3ad": { - "address": "0xf8252c05ec4cb2fdf1e0398bae049d454ddba3ad", - "symbol": "JAM", - "decimals": 18, - "name": "JAM", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xf8252c05ec4cb2fdf1e0398bae049d454ddba3ad.png", - "aggregators": ["PancakeExtended", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0xd20fb09a49a8e75fef536a2dbc68222900287bac": { - "address": "0xd20fb09a49a8e75fef536a2dbc68222900287bac", - "symbol": "PRL", - "decimals": 8, - "name": "Perle", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xd20fb09a49a8e75fef536a2dbc68222900287bac.png", - "aggregators": ["PancakeExtended", "LiFi", "Socket", "Rango"], - "occurrences": 4 - }, - "0x90e767a68a7d707b74d569c8e79f9bbb79b98a8b": { - "address": "0x90e767a68a7d707b74d569c8e79f9bbb79b98a8b", - "symbol": "FAT", - "decimals": 18, - "name": "Fatfi Protocol", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x90e767a68a7d707b74d569c8e79f9bbb79b98a8b.png", - "aggregators": ["1inch", "Socket", "Rubic", "Rango"], - "occurrences": 4 - }, - "0x5a41f637c3f7553dba6ddc2d3ca92641096577ea": { - "address": "0x5a41f637c3f7553dba6ddc2d3ca92641096577ea", - "symbol": "JULD", - "decimals": 18, - "name": "JULD", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x5a41f637c3f7553dba6ddc2d3ca92641096577ea.png", - "aggregators": ["1inch", "LiFi", "Rubic", "Rango"], - "occurrences": 4 - }, - "0x6d949f9297a522c0f97c232cc209a67bd7cfa471": { - "address": "0x6d949f9297a522c0f97c232cc209a67bd7cfa471", - "symbol": "MRAT", - "decimals": 9, - "name": "Moon Rat Token", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x6d949f9297a522c0f97c232cc209a67bd7cfa471.png", - "aggregators": ["1inch", "Socket", "Rubic", "Rango"], - "occurrences": 4 - }, - "0x5cd50aae14e14b3fdf3ff13c7a40e8cf5ae8b0a5": { - "address": "0x5cd50aae14e14b3fdf3ff13c7a40e8cf5ae8b0a5", - "symbol": "ZSEED", - "decimals": 18, - "name": "ZSEED", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x5cd50aae14e14b3fdf3ff13c7a40e8cf5ae8b0a5.png", - "aggregators": ["1inch", "LiFi", "Rubic", "Rango"], - "occurrences": 4 - }, - "0x94f559ae621f1c810f31a6a620ad7376776fe09e": { - "address": "0x94f559ae621f1c810f31a6a620ad7376776fe09e", - "symbol": "SOUP", - "decimals": 18, - "name": "Soup", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x94f559ae621f1c810f31a6a620ad7376776fe09e.png", - "aggregators": ["1inch", "Socket", "Rubic", "Rango"], - "occurrences": 4 - }, - "0xe3e1fabeabd48491bd6902b0c32fdeee8d2ff12b": { - "address": "0xe3e1fabeabd48491bd6902b0c32fdeee8d2ff12b", - "symbol": "UNICORN", - "decimals": 18, - "name": "UNICORN Token", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xe3e1fabeabd48491bd6902b0c32fdeee8d2ff12b.png", - "aggregators": ["1inch", "Socket", "Rubic", "Rango"], - "occurrences": 4 - }, - "0x9131066022b909c65edd1aaf7ff213dacf4e86d0": { - "address": "0x9131066022b909c65edd1aaf7ff213dacf4e86d0", - "symbol": "LAND_1", - "decimals": 18, - "name": "META-UTOPIA LAND", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x9131066022b909c65edd1aaf7ff213dacf4e86d0.png", - "aggregators": ["1inch", "Socket", "Rubic", "Rango"], - "occurrences": 4 - }, - "0xa72a0564d0e887123112e6a4dc1aba7611ad861d": { - "address": "0xa72a0564d0e887123112e6a4dc1aba7611ad861d", - "symbol": "FEB", - "decimals": 0, - "name": "FEB Token", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xa72a0564d0e887123112e6a4dc1aba7611ad861d.png", - "aggregators": ["1inch", "Socket", "Rubic", "Rango"], - "occurrences": 4 - }, - "0x7f479d78380ad00341fdd7322fe8aef766e29e5a": { - "address": "0x7f479d78380ad00341fdd7322fe8aef766e29e5a", - "symbol": "WHIRL", - "decimals": 18, - "name": "Whirl Finance", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x7f479d78380ad00341fdd7322fe8aef766e29e5a.png", - "aggregators": ["1inch", "Socket", "Rubic", "Rango"], - "occurrences": 4 - }, - "0x8597ba143ac509189e89aab3ba28d661a5dd9830": { - "address": "0x8597ba143ac509189e89aab3ba28d661a5dd9830", - "symbol": "VANCAT", - "decimals": 0, - "name": "VANCAT Token", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x8597ba143ac509189e89aab3ba28d661a5dd9830.png", - "aggregators": ["1inch", "Socket", "Rubic", "Rango"], - "occurrences": 4 - }, - "0x67d012f731c23f0313cea1186d0121779c77fcfe": { - "address": "0x67d012f731c23f0313cea1186d0121779c77fcfe", - "symbol": "SOUL", - "decimals": 8, - "name": "APOyield SOULS", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x67d012f731c23f0313cea1186d0121779c77fcfe.png", - "aggregators": ["1inch", "Socket", "Rubic", "Rango"], - "occurrences": 4 - }, - "0x07af67b392b7a202fad8e0fbc64c34f33102165b": { - "address": "0x07af67b392b7a202fad8e0fbc64c34f33102165b", - "symbol": "AQUAGOAT", - "decimals": 9, - "name": "Aquagoat", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x07af67b392b7a202fad8e0fbc64c34f33102165b.png", - "aggregators": ["1inch", "Socket", "Rubic", "Rango"], - "occurrences": 4 - }, - "0xce5347fdd503f25f8428151a274544a5bd1bd8ca": { - "address": "0xce5347fdd503f25f8428151a274544a5bd1bd8ca", - "symbol": "UNIF", - "decimals": 9, - "name": "Unified", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xce5347fdd503f25f8428151a274544a5bd1bd8ca.png", - "aggregators": ["1inch", "Socket", "Rubic", "Rango"], - "occurrences": 4 - }, - "0xa86d305a36cdb815af991834b46ad3d7fbb38523": { - "address": "0xa86d305a36cdb815af991834b46ad3d7fbb38523", - "symbol": "BR34P", - "decimals": 8, - "name": "BR34P", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xa86d305a36cdb815af991834b46ad3d7fbb38523.png", - "aggregators": ["1inch", "Socket", "Rubic", "Rango"], - "occurrences": 4 - }, - "0xa3870fbbeb730ba99e4107051612af3465ca9f5e": { - "address": "0xa3870fbbeb730ba99e4107051612af3465ca9f5e", - "symbol": "STABLE", - "decimals": 18, - "name": "STABLE", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xa3870fbbeb730ba99e4107051612af3465ca9f5e.png", - "aggregators": ["LiFi", "Socket", "Rubic", "Rango"], - "occurrences": 4 - }, - "0x72f28c09be1342447fa01ebc76ef508473d08c5c": { - "address": "0x72f28c09be1342447fa01ebc76ef508473d08c5c", - "symbol": "DGN", - "decimals": 18, - "name": "DGN", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x72f28c09be1342447fa01ebc76ef508473d08c5c.png", - "aggregators": ["LiFi", "Socket", "Rubic", "Rango"], - "occurrences": 4 - }, - "0x8506560320826e459f356cb56ccf721da8875414": { - "address": "0x8506560320826e459f356cb56ccf721da8875414", - "symbol": "NICE", - "decimals": 18, - "name": "NICE", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x8506560320826e459f356cb56ccf721da8875414.png", - "aggregators": ["Socket", "Rubic", "Rango", "SushiSwap"], - "occurrences": 4 - }, - "0x66eff5221ca926636224650fd3b9c497ff828f7d": { - "address": "0x66eff5221ca926636224650fd3b9c497ff828f7d", - "symbol": "SSPELL", - "decimals": 18, - "name": "Staked Spell", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x66eff5221ca926636224650fd3b9c497ff828f7d.png", - "aggregators": ["Socket", "Rubic", "Rango", "SushiSwap"], - "occurrences": 4 - }, - "0x1203355742e76875154c0d13eb81dcd7711dc7d9": { - "address": "0x1203355742e76875154c0d13eb81dcd7711dc7d9", - "symbol": "USDX", - "decimals": 6, - "name": "USDX", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x1203355742e76875154c0d13eb81dcd7711dc7d9.png", - "aggregators": ["Socket", "Rubic", "Rango", "SushiSwap"], - "occurrences": 4 - }, - "0xd8a31016cd7da048ca21ffe04256c6d08c3a2251": { - "address": "0xd8a31016cd7da048ca21ffe04256c6d08c3a2251", - "symbol": "WENLAMBO", - "decimals": 18, - "name": "WenLambo", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xd8a31016cd7da048ca21ffe04256c6d08c3a2251.png", - "aggregators": ["Socket", "Rubic", "Rango", "SushiSwap"], - "occurrences": 4 - }, - "0xd944f1d1e9d5f9bb90b62f9d45e447d989580782": { - "address": "0xd944f1d1e9d5f9bb90b62f9d45e447d989580782", - "symbol": "IOTA", - "decimals": 6, - "name": "MIOTAC", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xd944f1d1e9d5f9bb90b62f9d45e447d989580782.png", - "aggregators": ["ApeSwap", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x0318c252e0a310b94d1ab5b70d81e56bbd24f479": { - "address": "0x0318c252e0a310b94d1ab5b70d81e56bbd24f479", - "symbol": "COLOS", - "decimals": 18, - "name": "ChainColosseum Token", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x0318c252e0a310b94d1ab5b70d81e56bbd24f479.png", - "aggregators": ["PancakeCoinMarketCap", "LiFi", "Rubic"], - "occurrences": 3 - }, - "0x06fda0758c17416726f77cb11305eac94c074ec0": { - "address": "0x06fda0758c17416726f77cb11305eac94c074ec0", - "symbol": "ANML", - "decimals": 18, - "name": "Animal Concerts Token", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x06fda0758c17416726f77cb11305eac94c074ec0.png", - "aggregators": ["PancakeCoinMarketCap", "Socket", "Rubic"], - "occurrences": 3 - }, - "0x08426874d46f90e5e527604fa5e3e30486770eb3": { - "address": "0x08426874d46f90e5e527604fa5e3e30486770eb3", - "symbol": "BONES", - "decimals": 18, - "name": "Moonshots Farm", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x08426874d46f90e5e527604fa5e3e30486770eb3.png", - "aggregators": ["PancakeCoinMarketCap", "LiFi", "Rubic"], - "occurrences": 3 - }, - "0x5829e758859b74426b0b2447e82e19ad8e68e87a": { - "address": "0x5829e758859b74426b0b2447e82e19ad8e68e87a", - "symbol": "ACX", - "decimals": 18, - "name": "ApexCoin", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x5829e758859b74426b0b2447e82e19ad8e68e87a.png", - "aggregators": ["PancakeCoinMarketCap", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x1b015705214bdcaaf43e8edeca13023143224ab7": { - "address": "0x1b015705214bdcaaf43e8edeca13023143224ab7", - "symbol": "YNBFBTCK", - "decimals": 8, - "name": "YieldNest Restaked BitFi BTC - Kernel", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x1b015705214bdcaaf43e8edeca13023143224ab7.png", - "aggregators": ["CoinGecko", "Rubic", "Sonarwatch"], - "occurrences": 3 - }, - "0xcf10117b30c7a5fc7c77b611bfc2555610dd4b3a": { - "address": "0xcf10117b30c7a5fc7c77b611bfc2555610dd4b3a", - "symbol": "NOTAI", - "decimals": 18, - "name": "NOTAI", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xcf10117b30c7a5fc7c77b611bfc2555610dd4b3a.png", - "aggregators": ["PancakeCoinGecko", "Rubic", "Rango"], - "occurrences": 3 - }, - "0xbb02e0dc6ca8c838daa2f73f045f831ba3dcd4a2": { - "address": "0xbb02e0dc6ca8c838daa2f73f045f831ba3dcd4a2", - "symbol": "MBC", - "decimals": 18, - "name": "MB COIN", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xbb02e0dc6ca8c838daa2f73f045f831ba3dcd4a2.png", - "aggregators": ["PancakeCoinGecko", "Rubic", "Sonarwatch"], - "occurrences": 3 - }, - "0x5e5c9001aa81332d405d993ffd1468751d659d1e": { - "address": "0x5e5c9001aa81332d405d993ffd1468751d659d1e", - "symbol": "$BABYDOGEINU", - "decimals": 9, - "name": "Baby Doge Inu", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x5e5c9001aa81332d405d993ffd1468751d659d1e.png", - "aggregators": ["PancakeCoinMarketCap", "Rubic", "Sonarwatch"], - "occurrences": 3 - }, - "0xf758cfb1467a227516d73d87da7d36e7cb6f71f1": { - "address": "0xf758cfb1467a227516d73d87da7d36e7cb6f71f1", - "symbol": "SN3", - "decimals": 18, - "name": "Supernova Nebula3", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xf758cfb1467a227516d73d87da7d36e7cb6f71f1.png", - "aggregators": ["PancakeExtended", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x6e9a1428798ff011e2cf369b129630f686232784": { - "address": "0x6e9a1428798ff011e2cf369b129630f686232784", - "symbol": "KBK", - "decimals": 15, - "name": "Koubek", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x6e9a1428798ff011e2cf369b129630f686232784.png", - "aggregators": ["PancakeCoinGecko", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x28337d750194c17769bf31324512ca4e217174fa": { - "address": "0x28337d750194c17769bf31324512ca4e217174fa", - "symbol": "DTNG", - "decimals": 8, - "name": "DTNG", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x28337d750194c17769bf31324512ca4e217174fa.png", - "aggregators": ["PancakeCoinGecko", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x95034f653d5d161890836ad2b6b8cc49d14e029a": { - "address": "0x95034f653d5d161890836ad2b6b8cc49d14e029a", - "symbol": "AB", - "decimals": 18, - "name": "AB", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x95034f653d5d161890836ad2b6b8cc49d14e029a.png", - "aggregators": ["PancakeExtended", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x36a8fcb1f8bca02dc74eb34281de3b9143eae8e3": { - "address": "0x36a8fcb1f8bca02dc74eb34281de3b9143eae8e3", - "symbol": "EMBER", - "decimals": 18, - "name": "Ember", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x36a8fcb1f8bca02dc74eb34281de3b9143eae8e3.png", - "aggregators": ["PancakeCoinGecko", "Rubic", "Rango"], - "occurrences": 3 - }, - "0xdadfead95ee0dded4031d09afac96c30430e5d6d": { - "address": "0xdadfead95ee0dded4031d09afac96c30430e5d6d", - "symbol": "FAFY", - "decimals": 18, - "name": "Fafy Token", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xdadfead95ee0dded4031d09afac96c30430e5d6d.png", - "aggregators": ["PancakeCoinGecko", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x9bb28ee1a5e4a9f5a34a151adf7a0acf34560ec8": { - "address": "0x9bb28ee1a5e4a9f5a34a151adf7a0acf34560ec8", - "symbol": "RLD", - "decimals": 18, - "name": "Refluid", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x9bb28ee1a5e4a9f5a34a151adf7a0acf34560ec8.png", - "aggregators": ["PancakeCoinGecko", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x07869c388a4decf49bdc61ec1ed2b3af8a27f116": { - "address": "0x07869c388a4decf49bdc61ec1ed2b3af8a27f116", - "symbol": "CWF", - "decimals": 18, - "name": "Universal Contact", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x07869c388a4decf49bdc61ec1ed2b3af8a27f116.png", - "aggregators": ["PancakeCoinGecko", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x3c730718c97a77562866b5d29b33228c019eac68": { - "address": "0x3c730718c97a77562866b5d29b33228c019eac68", - "symbol": "BNBD", - "decimals": 9, - "name": "BNB Diamond", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x3c730718c97a77562866b5d29b33228c019eac68.png", - "aggregators": ["PancakeCoinGecko", "Rubic", "Rango"], - "occurrences": 3 - }, - "0xca3c1dc12b0dd0d65964abaa533106cf4f372c78": { - "address": "0xca3c1dc12b0dd0d65964abaa533106cf4f372c78", - "symbol": "CAKITA", - "decimals": 9, - "name": "ChubbyAkita", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xca3c1dc12b0dd0d65964abaa533106cf4f372c78.png", - "aggregators": ["PancakeCoinGecko", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x297c6470cc7a3fe5cf8e5d977c33a2d4b4d9b126": { - "address": "0x297c6470cc7a3fe5cf8e5d977c33a2d4b4d9b126", - "symbol": "OFT", - "decimals": 18, - "name": "ONFA", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x297c6470cc7a3fe5cf8e5d977c33a2d4b4d9b126.png", - "aggregators": ["PancakeCoinGecko", "Rubic", "Rango"], - "occurrences": 3 - }, - "0xec9742f992acc615c4252060d896c845ca8fc086": { - "address": "0xec9742f992acc615c4252060d896c845ca8fc086", - "symbol": "BRICS", - "decimals": 18, - "name": "BRICS Chain", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xec9742f992acc615c4252060d896c845ca8fc086.png", - "aggregators": ["PancakeCoinGecko", "Rubic", "Sonarwatch"], - "occurrences": 3 - }, - "0x07e81d7a652a855261e093fa2b770c26395614cb": { - "address": "0x07e81d7a652a855261e093fa2b770c26395614cb", - "symbol": "BABYX", - "decimals": 9, - "name": "BabyX Swap", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x07e81d7a652a855261e093fa2b770c26395614cb.png", - "aggregators": ["PancakeCoinGecko", "Rubic", "Sonarwatch"], - "occurrences": 3 - }, - "0xdf9e1a85db4f985d5bb5644ad07d9d7ee5673b5e": { - "address": "0xdf9e1a85db4f985d5bb5644ad07d9d7ee5673b5e", - "symbol": "MM72", - "decimals": 18, - "name": "MM72", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xdf9e1a85db4f985d5bb5644ad07d9d7ee5673b5e.png", - "aggregators": ["PancakeCoinGecko", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x522d0f9f3eff479a5b256bb1c1108f47b8e1a153": { - "address": "0x522d0f9f3eff479a5b256bb1c1108f47b8e1a153", - "symbol": "IGUP", - "decimals": 18, - "name": "IGUP Token", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x522d0f9f3eff479a5b256bb1c1108f47b8e1a153.png", - "aggregators": ["PancakeCoinGecko", "Rubic", "Rango"], - "occurrences": 3 - }, - "0xc519a8fc44dbdbf1aac2205847b8d7549339215e": { - "address": "0xc519a8fc44dbdbf1aac2205847b8d7549339215e", - "symbol": "AHA", - "decimals": 18, - "name": "Anagata", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xc519a8fc44dbdbf1aac2205847b8d7549339215e.png", - "aggregators": ["PancakeCoinGecko", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x1475ff9356a8f8099a675ca81a5a4de481c15994": { - "address": "0x1475ff9356a8f8099a675ca81a5a4de481c15994", - "symbol": "OCF", - "decimals": 18, - "name": "OceanFi", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x1475ff9356a8f8099a675ca81a5a4de481c15994.png", - "aggregators": ["PancakeCoinGecko", "Rubic", "Sonarwatch"], - "occurrences": 3 - }, - "0x851944049dfdd189725b136c5ae3fb83cc62b28d": { - "address": "0x851944049dfdd189725b136c5ae3fb83cc62b28d", - "symbol": "HMNG", - "decimals": 18, - "name": "Hummingbird Finance", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x851944049dfdd189725b136c5ae3fb83cc62b28d.png", - "aggregators": ["PancakeCoinGecko", "Rubic", "Sonarwatch"], - "occurrences": 3 - }, - "0x598487dc1f4e129b3499b6231dd18642e5315608": { - "address": "0x598487dc1f4e129b3499b6231dd18642e5315608", - "symbol": "LOGG", - "decimals": 0, - "name": "Logarithm games", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x598487dc1f4e129b3499b6231dd18642e5315608.png", - "aggregators": ["PancakeCoinGecko", "Rubic", "Rango"], - "occurrences": 3 - }, - "0xb800aff8391abacdeb0199ab9cebf63771fcf491": { - "address": "0xb800aff8391abacdeb0199ab9cebf63771fcf491", - "symbol": "NOVAX", - "decimals": 18, - "name": "NovaX", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xb800aff8391abacdeb0199ab9cebf63771fcf491.png", - "aggregators": ["PancakeCoinGecko", "Rubic", "Sonarwatch"], - "occurrences": 3 - }, - "0xc18358243294ecf28955f7029559a253f04b4ad9": { - "address": "0xc18358243294ecf28955f7029559a253f04b4ad9", - "symbol": "MOB", - "decimals": 18, - "name": "Mobster", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xc18358243294ecf28955f7029559a253f04b4ad9.png", - "aggregators": ["PancakeCoinGecko", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x2442421fe1acc8a732251fc372892b5ff1fdd938": { - "address": "0x2442421fe1acc8a732251fc372892b5ff1fdd938", - "symbol": "DEER", - "decimals": 18, - "name": "DEER TOKEN", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x2442421fe1acc8a732251fc372892b5ff1fdd938.png", - "aggregators": ["CoinGecko", "Rubic", "Sonarwatch"], - "occurrences": 3 - }, - "0xca003170865d064002d0ee140d3092efa60cd74c": { - "address": "0xca003170865d064002d0ee140d3092efa60cd74c", - "symbol": "SKH", - "decimals": 18, - "name": "Skyhash", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xca003170865d064002d0ee140d3092efa60cd74c.png", - "aggregators": ["PancakeCoinGecko", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x3c6256f234ba638e5883c46b3fedb00ea2e66b8a": { - "address": "0x3c6256f234ba638e5883c46b3fedb00ea2e66b8a", - "symbol": "MGT", - "decimals": 18, - "name": "Moongate", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x3c6256f234ba638e5883c46b3fedb00ea2e66b8a.png", - "aggregators": ["CoinGecko", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x22b4fa9a13a0d303ad258ee6d62a6ac60364b0c9": { - "address": "0x22b4fa9a13a0d303ad258ee6d62a6ac60364b0c9", - "symbol": "PUMP", - "decimals": 18, - "name": "Big Pump", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x22b4fa9a13a0d303ad258ee6d62a6ac60364b0c9.png", - "aggregators": ["PancakeCoinGecko", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x51e667e91b4b8cb8e6e0528757f248406bd34b57": { - "address": "0x51e667e91b4b8cb8e6e0528757f248406bd34b57", - "symbol": "OWL", - "decimals": 18, - "name": "Owlto", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x51e667e91b4b8cb8e6e0528757f248406bd34b57.png", - "aggregators": ["PancakeExtended", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x414f9e74ba3a9d0acce65182809492f41ac671e0": { - "address": "0x414f9e74ba3a9d0acce65182809492f41ac671e0", - "symbol": "JRT", - "decimals": 18, - "name": "Jarvis Reward", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x414f9e74ba3a9d0acce65182809492f41ac671e0.png", - "aggregators": ["PancakeCoinGecko", "Rubic", "Rango"], - "occurrences": 3 - }, - "0xcbbb3e5099f769f6d4e2b8b92dc0e268f7e099d8": { - "address": "0xcbbb3e5099f769f6d4e2b8b92dc0e268f7e099d8", - "symbol": "BTCZ", - "decimals": 8, - "name": "BitcoinZ", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xcbbb3e5099f769f6d4e2b8b92dc0e268f7e099d8.png", - "aggregators": ["PancakeCoinMarketCap", "Rubic", "Sonarwatch"], - "occurrences": 3 - }, - "0xc836d8dc361e44dbe64c4862d55ba041f88ddd39": { - "address": "0xc836d8dc361e44dbe64c4862d55ba041f88ddd39", - "symbol": "WMATIC", - "decimals": 18, - "name": "Wrapped Matic", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xc836d8dc361e44dbe64c4862d55ba041f88ddd39.png", - "aggregators": ["PancakeCoinMarketCap", "Rubic", "Rango"], - "occurrences": 3 - }, - "0xe2fb3f127f5450dee44afe054385d74c392bdef4": { - "address": "0xe2fb3f127f5450dee44afe054385d74c392bdef4", - "symbol": "CRVUSD", - "decimals": 18, - "name": "Curve.fi USD Stablecoin", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xe2fb3f127f5450dee44afe054385d74c392bdef4.png", - "aggregators": ["PancakeCoinGecko", "Rubic", "Rango"], - "occurrences": 3 - }, - "0xb962150760f9a3bb00e3e9cf48297ee20ada4a33": { - "address": "0xb962150760f9a3bb00e3e9cf48297ee20ada4a33", - "symbol": "XZOOMER", - "decimals": 18, - "name": "xZoomerCoin", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xb962150760f9a3bb00e3e9cf48297ee20ada4a33.png", - "aggregators": ["PancakeCoinMarketCap", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x24b1c3f935dffcadb606920022ba8c703bb065d7": { - "address": "0x24b1c3f935dffcadb606920022ba8c703bb065d7", - "symbol": "RAIN", - "decimals": 18, - "name": "RAIN", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x24b1c3f935dffcadb606920022ba8c703bb065d7.png", - "aggregators": ["CoinGecko", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x35de111558f691f77f791fb0c08b2d6b931a9d47": { - "address": "0x35de111558f691f77f791fb0c08b2d6b931a9d47", - "symbol": "BCHAIN", - "decimals": 18, - "name": "Chain Games", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x35de111558f691f77f791fb0c08b2d6b931a9d47.png", - "aggregators": ["PancakeCoinMarketCap", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x0226a6203e113253c5a7afad2f7c75a2e8324009": { - "address": "0x0226a6203e113253c5a7afad2f7c75a2e8324009", - "symbol": "ZOO", - "decimals": 18, - "name": "ZOO", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x0226a6203e113253c5a7afad2f7c75a2e8324009.png", - "aggregators": ["PancakeCoinGecko", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x2b3f34e9d4b127797ce6244ea341a83733ddd6e4": { - "address": "0x2b3f34e9d4b127797ce6244ea341a83733ddd6e4", - "symbol": "FLOKI", - "decimals": 9, - "name": "FLOKI", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x2b3f34e9d4b127797ce6244ea341a83733ddd6e4.png", - "aggregators": ["PancakeTop100", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x48378891d6e459ca9a56b88b406e8f4eab2e39bf": { - "address": "0x48378891d6e459ca9a56b88b406e8f4eab2e39bf", - "symbol": "$FUR", - "decimals": 18, - "name": "Furio", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x48378891d6e459ca9a56b88b406e8f4eab2e39bf.png", - "aggregators": ["PancakeCoinMarketCap", "Rubic", "Rango"], - "occurrences": 3 - }, - "0xafe3321309a994831884fc1725f4c3236ac79f76": { - "address": "0xafe3321309a994831884fc1725f4c3236ac79f76", - "symbol": "$MFLATE", - "decimals": 9, - "name": "Memeflate", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xafe3321309a994831884fc1725f4c3236ac79f76.png", - "aggregators": ["PancakeCoinMarketCap", "Rubic", "Rango"], - "occurrences": 3 - }, - "0xc2eaaf69e6439abab12dd21f560ba0ec7f17cff7": { - "address": "0xc2eaaf69e6439abab12dd21f560ba0ec7f17cff7", - "symbol": "$POV", - "decimals": 18, - "name": "Pepe Original Version", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xc2eaaf69e6439abab12dd21f560ba0ec7f17cff7.png", - "aggregators": ["PancakeCoinMarketCap", "Rubic", "Rango"], - "occurrences": 3 - }, - "0xe097bceb09bfb18047cf259f321cc129b7beba5e": { - "address": "0xe097bceb09bfb18047cf259f321cc129b7beba5e", - "symbol": "$TIPSY", - "decimals": 18, - "name": "TipsyCoin", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xe097bceb09bfb18047cf259f321cc129b7beba5e.png", - "aggregators": ["PancakeCoinMarketCap", "Rubic", "Rango"], - "occurrences": 3 - }, - "0xcee4e6f4d8e634e329c457a4f98c090afafb1c4b": { - "address": "0xcee4e6f4d8e634e329c457a4f98c090afafb1c4b", - "symbol": "2024", - "decimals": 18, - "name": "2024 PUMP", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xcee4e6f4d8e634e329c457a4f98c090afafb1c4b.png", - "aggregators": ["PancakeCoinMarketCap", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x4e7ef0077a1bc31fd9bcadd6ca149dea9c3faedb": { - "address": "0x4e7ef0077a1bc31fd9bcadd6ca149dea9c3faedb", - "symbol": "4DC", - "decimals": 18, - "name": "4DCoin", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x4e7ef0077a1bc31fd9bcadd6ca149dea9c3faedb.png", - "aggregators": ["PancakeCoinGecko", "Rubic", "Rango"], - "occurrences": 3 - }, - "0xd99903242745e8e3ecf1e2a7d4f6052282f891ee": { - "address": "0xd99903242745e8e3ecf1e2a7d4f6052282f891ee", - "symbol": "4DMAPS", - "decimals": 18, - "name": "4D Twin Maps", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xd99903242745e8e3ecf1e2a7d4f6052282f891ee.png", - "aggregators": ["PancakeCoinGecko", "Rubic", "Rango"], - "occurrences": 3 - }, - "0xd8126b749e4ec149c97bffbe875ab9960bdb8916": { - "address": "0xd8126b749e4ec149c97bffbe875ab9960bdb8916", - "symbol": "A2E", - "decimals": 9, - "name": "Hey Floki AI", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xd8126b749e4ec149c97bffbe875ab9960bdb8916.png", - "aggregators": ["PancakeCoinMarketCap", "Rubic", "Rango"], - "occurrences": 3 - }, - "0xfaaa87943bfca6d97434be3d26c589647fea4375": { - "address": "0xfaaa87943bfca6d97434be3d26c589647fea4375", - "symbol": "ACE", - "decimals": 18, - "name": "ACEToken", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xfaaa87943bfca6d97434be3d26c589647fea4375.png", - "aggregators": ["PancakeCoinMarketCap", "Rubic", "Rango"], - "occurrences": 3 - }, - "0xebd949aacfc681787d3d091fa2929e4413e0e4e1": { - "address": "0xebd949aacfc681787d3d091fa2929e4413e0e4e1", - "symbol": "ACRE", - "decimals": 18, - "name": "Arable Protocol", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xebd949aacfc681787d3d091fa2929e4413e0e4e1.png", - "aggregators": ["PancakeCoinGecko", "Rubic", "Rango"], - "occurrences": 3 - }, - "0xb427e47e8fdd678278d2a91eeac014ffcddaf029": { - "address": "0xb427e47e8fdd678278d2a91eeac014ffcddaf029", - "symbol": "AGATA", - "decimals": 18, - "name": "Agatech", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xb427e47e8fdd678278d2a91eeac014ffcddaf029.png", - "aggregators": ["PancakeCoinMarketCap", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x499fc0ec9aade85de50af0c17513c7b850eb275f": { - "address": "0x499fc0ec9aade85de50af0c17513c7b850eb275f", - "symbol": "AICR", - "decimals": 18, - "name": "AICrew", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x499fc0ec9aade85de50af0c17513c7b850eb275f.png", - "aggregators": ["PancakeCoinGecko", "Rubic", "Sonarwatch"], - "occurrences": 3 - }, - "0x461ab4d656bc22230a650d9d37e1c85f90bfed02": { - "address": "0x461ab4d656bc22230a650d9d37e1c85f90bfed02", - "symbol": "AIRTOK", - "decimals": 18, - "name": "Airtok", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x461ab4d656bc22230a650d9d37e1c85f90bfed02.png", - "aggregators": ["PancakeCoinGecko", "Rubic", "Rango"], - "occurrences": 3 - }, - "0xc3438d410e9a1b3096caa4424c0d7b7257ab08ba": { - "address": "0xc3438d410e9a1b3096caa4424c0d7b7257ab08ba", - "symbol": "AISC", - "decimals": 18, - "name": "AI Surf", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xc3438d410e9a1b3096caa4424c0d7b7257ab08ba.png", - "aggregators": ["PancakeCoinGecko", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x581c124d0f4b9d365c06e30d37ea8352d5f3a2af": { - "address": "0x581c124d0f4b9d365c06e30d37ea8352d5f3a2af", - "symbol": "AIV", - "decimals": 18, - "name": "AIVOICE", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x581c124d0f4b9d365c06e30d37ea8352d5f3a2af.png", - "aggregators": ["PancakeCoinGecko", "Rubic", "Rango"], - "occurrences": 3 - }, - "0xa77d560e34bd6a8d7265f754b4fcd65d9a8e5619": { - "address": "0xa77d560e34bd6a8d7265f754b4fcd65d9a8e5619", - "symbol": "AMA", - "decimals": 18, - "name": "Mrweb Finance", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xa77d560e34bd6a8d7265f754b4fcd65d9a8e5619.png", - "aggregators": ["PancakeCoinGecko", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x70a30bb133f7b5038d3c28d8b77d8da258fc784a": { - "address": "0x70a30bb133f7b5038d3c28d8b77d8da258fc784a", - "symbol": "AMG", - "decimals": 18, - "name": "DeHeroGame Amazing Token", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x70a30bb133f7b5038d3c28d8b77d8da258fc784a.png", - "aggregators": ["PancakeCoinMarketCap", "Rubic", "Rango"], - "occurrences": 3 - }, - "0xb0abd9e24769dae9eee658498eabb35edf3f57e9": { - "address": "0xb0abd9e24769dae9eee658498eabb35edf3f57e9", - "symbol": "AMPERE", - "decimals": 18, - "name": "AmpereChain", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xb0abd9e24769dae9eee658498eabb35edf3f57e9.png", - "aggregators": ["PancakeCoinGecko", "Rubic", "Rango"], - "occurrences": 3 - }, - "0xb32d4817908f001c2a53c15bff8c14d8813109be": { - "address": "0xb32d4817908f001c2a53c15bff8c14d8813109be", - "symbol": "AOG", - "decimals": 18, - "name": "smARTOFGIVING", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xb32d4817908f001c2a53c15bff8c14d8813109be.png", - "aggregators": ["PancakeCoinMarketCap", "Rubic", "Rango"], - "occurrences": 3 - }, - "0xa49c8cbbddfe4dbc8605f0f5c8f2845c5e225d22": { - "address": "0xa49c8cbbddfe4dbc8605f0f5c8f2845c5e225d22", - "symbol": "APT", - "decimals": 18, - "name": "Apidae", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xa49c8cbbddfe4dbc8605f0f5c8f2845c5e225d22.png", - "aggregators": ["PancakeCoinGecko", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x8668fc058ac48bc2a5696c2125b4ce38d4bd0223": { - "address": "0x8668fc058ac48bc2a5696c2125b4ce38d4bd0223", - "symbol": "ARABBIT", - "decimals": 8, - "name": "Alpha Rabbit", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x8668fc058ac48bc2a5696c2125b4ce38d4bd0223.png", - "aggregators": ["PancakeCoinGecko", "Rubic", "Rango"], - "occurrences": 3 - }, - "0xaec9e50e3397f9ddc635c6c429c8c7eca418a143": { - "address": "0xaec9e50e3397f9ddc635c6c429c8c7eca418a143", - "symbol": "ARCUSD", - "decimals": 18, - "name": "Arcana arcUSD", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xaec9e50e3397f9ddc635c6c429c8c7eca418a143.png", - "aggregators": ["PancakeCoinGecko", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x701d9a068d1eec64fbc10299b9f1b18fbb355ddb": { - "address": "0x701d9a068d1eec64fbc10299b9f1b18fbb355ddb", - "symbol": "ARG", - "decimals": 18, - "name": "Argonon Helium", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x701d9a068d1eec64fbc10299b9f1b18fbb355ddb.png", - "aggregators": ["PancakeCoinGecko", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x4db2495afad4c0e481ffc40fdaf66e13a786b619": { - "address": "0x4db2495afad4c0e481ffc40fdaf66e13a786b619", - "symbol": "ARIX", - "decimals": 18, - "name": "Arix", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x4db2495afad4c0e481ffc40fdaf66e13a786b619.png", - "aggregators": ["PancakeCoinGecko", "Rubic", "Sonarwatch"], - "occurrences": 3 - }, - "0x1d4268a58ee7ec2cc2af5d70a2fd2b3a896527a2": { - "address": "0x1d4268a58ee7ec2cc2af5d70a2fd2b3a896527a2", - "symbol": "ARKEN", - "decimals": 18, - "name": "Arken Token", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x1d4268a58ee7ec2cc2af5d70a2fd2b3a896527a2.png", - "aggregators": ["PancakeCoinMarketCap", "Rubic", "Rango"], - "occurrences": 3 - }, - "0xb4d5841cb352be4b743283dd58b61ecd86655510": { - "address": "0xb4d5841cb352be4b743283dd58b61ecd86655510", - "symbol": "ATB", - "decimals": 18, - "name": "ATB", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xb4d5841cb352be4b743283dd58b61ecd86655510.png", - "aggregators": ["PancakeCoinGecko", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x00000000ba2ca30042001abc545871380f570b1f": { - "address": "0x00000000ba2ca30042001abc545871380f570b1f", - "symbol": "ATF", - "decimals": 18, - "name": "ArithFi", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x00000000ba2ca30042001abc545871380f570b1f.png", - "aggregators": ["PancakeCoinMarketCap", "Rubic", "Rango"], - "occurrences": 3 - }, - "0xa85128073e25a0190b86b72e3976f8b02dad757d": { - "address": "0xa85128073e25a0190b86b72e3976f8b02dad757d", - "symbol": "B2B", - "decimals": 18, - "name": "B2B Token", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xa85128073e25a0190b86b72e3976f8b02dad757d.png", - "aggregators": ["PancakeCoinGecko", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x43f102bbd52259f2cfd0ef82e8807e3610ae3e40": { - "address": "0x43f102bbd52259f2cfd0ef82e8807e3610ae3e40", - "symbol": "BABYDOGE", - "decimals": 9, - "name": "Save Baby Doge", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x43f102bbd52259f2cfd0ef82e8807e3610ae3e40.png", - "aggregators": ["PancakeCoinGecko", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x222c1e86c78b4a1d9c57c120d18b584be2c65937": { - "address": "0x222c1e86c78b4a1d9c57c120d18b584be2c65937", - "symbol": "BABYDRAGON", - "decimals": 9, - "name": "Baby Dragon", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x222c1e86c78b4a1d9c57c120d18b584be2c65937.png", - "aggregators": ["PancakeCoinGecko", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x63f79d1de735c922cfce240b6c1cc30a00214f8c": { - "address": "0x63f79d1de735c922cfce240b6c1cc30a00214f8c", - "symbol": "BABYMEME", - "decimals": 9, - "name": "Baby Meme Coin", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x63f79d1de735c922cfce240b6c1cc30a00214f8c.png", - "aggregators": ["PancakeCoinMarketCap", "Rubic", "Rango"], - "occurrences": 3 - }, - "0xc2fd585d2e6a33fe48a0ffc65072216b0e3b2e07": { - "address": "0xc2fd585d2e6a33fe48a0ffc65072216b0e3b2e07", - "symbol": "BASE", - "decimals": 18, - "name": "ReBaseChain", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xc2fd585d2e6a33fe48a0ffc65072216b0e3b2e07.png", - "aggregators": ["PancakeCoinGecko", "Rubic", "Sonarwatch"], - "occurrences": 3 - }, - "0x0ea8286ffc0080061d60a156cce02db24bb06858": { - "address": "0x0ea8286ffc0080061d60a156cce02db24bb06858", - "symbol": "BCAT", - "decimals": 9, - "name": "BSCCAT", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x0ea8286ffc0080061d60a156cce02db24bb06858.png", - "aggregators": ["PancakeCoinMarketCap", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x0747cda49c82d3fc6b06df1822e1de0c16673e9f": { - "address": "0x0747cda49c82d3fc6b06df1822e1de0c16673e9f", - "symbol": "BCFLUX", - "decimals": 18, - "name": "binance conflux Flux Protocol", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x0747cda49c82d3fc6b06df1822e1de0c16673e9f.png", - "aggregators": ["PancakeCoinMarketCap", "Rubic", "Rango"], - "occurrences": 3 - }, - "0xf7f3ac6ae80cecd3fdf0a74019117aa69fb86120": { - "address": "0xf7f3ac6ae80cecd3fdf0a74019117aa69fb86120", - "symbol": "BEBE", - "decimals": 18, - "name": "BEBE", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xf7f3ac6ae80cecd3fdf0a74019117aa69fb86120.png", - "aggregators": ["PancakeCoinGecko", "Rubic", "Rango"], - "occurrences": 3 - }, - "0xe75f36244902c1a2913623fce22b1e58ffe47192": { - "address": "0xe75f36244902c1a2913623fce22b1e58ffe47192", - "symbol": "BITCOINAI", - "decimals": 18, - "name": "Bitcoin AI", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xe75f36244902c1a2913623fce22b1e58ffe47192.png", - "aggregators": ["PancakeCoinGecko", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x81aa4d3ad2a86e7a2cd44630c36ccaacd6b30568": { - "address": "0x81aa4d3ad2a86e7a2cd44630c36ccaacd6b30568", - "symbol": "BLA", - "decimals": 9, - "name": "BLUEART TOKEN", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x81aa4d3ad2a86e7a2cd44630c36ccaacd6b30568.png", - "aggregators": ["PancakeCoinMarketCap", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x00db8321c431b62a6d42979ed4a5d0f3661c959e": { - "address": "0x00db8321c431b62a6d42979ed4a5d0f3661c959e", - "symbol": "BNA", - "decimals": 18, - "name": "BNAcoin", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x00db8321c431b62a6d42979ed4a5d0f3661c959e.png", - "aggregators": ["PancakeCoinGecko", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x061e64f1293bc49402a867cc6411987148bcdb1b": { - "address": "0x061e64f1293bc49402a867cc6411987148bcdb1b", - "symbol": "BNBKING", - "decimals": 9, - "name": "BNBKinG", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x061e64f1293bc49402a867cc6411987148bcdb1b.png", - "aggregators": ["PancakeCoinGecko", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x455ad1bc4e18fd4e369234b6e11d88acbc416758": { - "address": "0x455ad1bc4e18fd4e369234b6e11d88acbc416758", - "symbol": "BRCT", - "decimals": 18, - "name": "BRCT", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x455ad1bc4e18fd4e369234b6e11d88acbc416758.png", - "aggregators": ["PancakeCoinGecko", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x77491cdcbb8320feeabf21bac19a00e2e3143708": { - "address": "0x77491cdcbb8320feeabf21bac19a00e2e3143708", - "symbol": "BRCX", - "decimals": 18, - "name": "BRC20X", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x77491cdcbb8320feeabf21bac19a00e2e3143708.png", - "aggregators": ["PancakeCoinGecko", "Rubic", "Rango"], - "occurrences": 3 - }, - "0xa9231f3b68e8059722c86014df8ce8607bb8defe": { - "address": "0xa9231f3b68e8059722c86014df8ce8607bb8defe", - "symbol": "$BRES", - "decimals": 18, - "name": "BlastFi Ecosystem Token", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xa9231f3b68e8059722c86014df8ce8607bb8defe.png", - "aggregators": ["PancakeCoinGecko", "Rubic", "Sonarwatch"], - "occurrences": 3 - }, - "0x20d278c31a66d31edcb83cc0597c7182a7c91ca4": { - "address": "0x20d278c31a66d31edcb83cc0597c7182a7c91ca4", - "symbol": "BSK", - "decimals": 18, - "name": "BTCSKR", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x20d278c31a66d31edcb83cc0597c7182a7c91ca4.png", - "aggregators": ["PancakeCoinGecko", "Rubic", "Rango"], - "occurrences": 3 - }, - "0xf78a2e1824638d09571172368bbe1d8d399893ab": { - "address": "0xf78a2e1824638d09571172368bbe1d8d399893ab", - "symbol": "BTOP", - "decimals": 18, - "name": "Botopia.Finance", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xf78a2e1824638d09571172368bbe1d8d399893ab.png", - "aggregators": ["PancakeCoinMarketCap", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x91f1d3c7ddb8d5e290e71f893bad45f16e8bd7ba": { - "address": "0x91f1d3c7ddb8d5e290e71f893bad45f16e8bd7ba", - "symbol": "BURNS", - "decimals": 18, - "name": "Burnsdefi", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x91f1d3c7ddb8d5e290e71f893bad45f16e8bd7ba.png", - "aggregators": ["PancakeCoinMarketCap", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x1dacbcd9b3fc2d6a341dca3634439d12bc71ca4d": { - "address": "0x1dacbcd9b3fc2d6a341dca3634439d12bc71ca4d", - "symbol": "BVT", - "decimals": 18, - "name": "Bovine Verse Token", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x1dacbcd9b3fc2d6a341dca3634439d12bc71ca4d.png", - "aggregators": ["PancakeCoinGecko", "Rubic", "Rango"], - "occurrences": 3 - }, - "0xdefcafe7eac90d31bbba841038df365de3c4e207": { - "address": "0xdefcafe7eac90d31bbba841038df365de3c4e207", - "symbol": "CAFE", - "decimals": 9, - "name": "0xDEFCAFE", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xdefcafe7eac90d31bbba841038df365de3c4e207.png", - "aggregators": ["PancakeCoinGecko", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x9377e3c3180dddfcda4e4217ed21f2f7c3b235a0": { - "address": "0x9377e3c3180dddfcda4e4217ed21f2f7c3b235a0", - "symbol": "CAVADA", - "decimals": 6, - "name": "CAVADA", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x9377e3c3180dddfcda4e4217ed21f2f7c3b235a0.png", - "aggregators": ["PancakeCoinMarketCap", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x31913aa5de81ff679c603053c3554ab90d5dbaf8": { - "address": "0x31913aa5de81ff679c603053c3554ab90d5dbaf8", - "symbol": "CBIT", - "decimals": 18, - "name": "CentBit", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x31913aa5de81ff679c603053c3554ab90d5dbaf8.png", - "aggregators": ["PancakeCoinGecko", "Rubic", "Rango"], - "occurrences": 3 - }, - "0xa4599f3ab65e9d115df5cef609fb4f23536f6818": { - "address": "0xa4599f3ab65e9d115df5cef609fb4f23536f6818", - "symbol": "CCC", - "decimals": 18, - "name": "Candide Coin", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xa4599f3ab65e9d115df5cef609fb4f23536f6818.png", - "aggregators": ["PancakeCoinGecko", "Rubic", "Sonarwatch"], - "occurrences": 3 - }, - "0x8daa7c321f7a7fe921f51d0457ec7f149e8be926": { - "address": "0x8daa7c321f7a7fe921f51d0457ec7f149e8be926", - "symbol": "CEX", - "decimals": 18, - "name": "Coinmart Finance", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x8daa7c321f7a7fe921f51d0457ec7f149e8be926.png", - "aggregators": ["PancakeCoinGecko", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x9029d86aa59b4680b40f4f42505d5f8f880d2ac5": { - "address": "0x9029d86aa59b4680b40f4f42505d5f8f880d2ac5", - "symbol": "CO2", - "decimals": 18, - "name": "Co2DAO", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x9029d86aa59b4680b40f4f42505d5f8f880d2ac5.png", - "aggregators": ["PancakeCoinGecko", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x7e84ac3b1eea1ef60b1a58fc3679829cc19f19e6": { - "address": "0x7e84ac3b1eea1ef60b1a58fc3679829cc19f19e6", - "symbol": "COON", - "decimals": 18, - "name": "Maine Coon Cat", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x7e84ac3b1eea1ef60b1a58fc3679829cc19f19e6.png", - "aggregators": ["PancakeCoinGecko", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x88e4adc30b5dd08122d55b0cef013062a94986da": { - "address": "0x88e4adc30b5dd08122d55b0cef013062a94986da", - "symbol": "CRTAI", - "decimals": 18, - "name": "CRT AI NETWORK", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x88e4adc30b5dd08122d55b0cef013062a94986da.png", - "aggregators": ["PancakeCoinGecko", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x4861ba0ce919fee66b41c85a08a7476557914275": { - "address": "0x4861ba0ce919fee66b41c85a08a7476557914275", - "symbol": "CTN", - "decimals": 18, - "name": "Continuum Finance", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x4861ba0ce919fee66b41c85a08a7476557914275.png", - "aggregators": ["PancakeCoinMarketCap", "Rubic", "Rango"], - "occurrences": 3 - }, - "0xe5a46bf898ce7583b612e5d168073ff773d7857e": { - "address": "0xe5a46bf898ce7583b612e5d168073ff773d7857e", - "symbol": "CVIP", - "decimals": 18, - "name": "CVIP", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xe5a46bf898ce7583b612e5d168073ff773d7857e.png", - "aggregators": ["PancakeCoinMarketCap", "Rubic", "Rango"], - "occurrences": 3 - }, - "0xd3c7e51caab1089002ec05569a04d14bcc478bc4": { - "address": "0xd3c7e51caab1089002ec05569a04d14bcc478bc4", - "symbol": "D3D", - "decimals": 18, - "name": "D3D Social", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xd3c7e51caab1089002ec05569a04d14bcc478bc4.png", - "aggregators": ["PancakeCoinMarketCap", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x2c7df6aa715f77a8ebe2e14c10fabf72d0063015": { - "address": "0x2c7df6aa715f77a8ebe2e14c10fabf72d0063015", - "symbol": "DALMA", - "decimals": 18, - "name": "Dalma Inu", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x2c7df6aa715f77a8ebe2e14c10fabf72d0063015.png", - "aggregators": ["PancakeCoinGecko", "Rubic", "Rango"], - "occurrences": 3 - }, - "0xe90c8abc9901895b2ace2e0075291e9ef0aa1f07": { - "address": "0xe90c8abc9901895b2ace2e0075291e9ef0aa1f07", - "symbol": "DAW", - "decimals": 18, - "name": "Daw Currency", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xe90c8abc9901895b2ace2e0075291e9ef0aa1f07.png", - "aggregators": ["PancakeCoinMarketCap", "Rubic", "Rango"], - "occurrences": 3 - }, - "0xf106f153bd77be6d5191a07159c99c4219a1cec4": { - "address": "0xf106f153bd77be6d5191a07159c99c4219a1cec4", - "symbol": "DCNX", - "decimals": 18, - "name": "DCNTRL Network", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xf106f153bd77be6d5191a07159c99c4219a1cec4.png", - "aggregators": ["PancakeCoinGecko", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x71b3a0566f4bf80331d115d8026a7022bf670cce": { - "address": "0x71b3a0566f4bf80331d115d8026a7022bf670cce", - "symbol": "DD", - "decimals": 6, - "name": "Diment Dollar", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x71b3a0566f4bf80331d115d8026a7022bf670cce.png", - "aggregators": ["PancakeCoinMarketCap", "Rubic", "Rango"], - "occurrences": 3 - }, - "0xb2c40b797cc80debd08a4ab26d1bc2f2317b6c7c": { - "address": "0xb2c40b797cc80debd08a4ab26d1bc2f2317b6c7c", - "symbol": "DEGA", - "decimals": 9, - "name": "Dega", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xb2c40b797cc80debd08a4ab26d1bc2f2317b6c7c.png", - "aggregators": ["PancakeCoinMarketCap", "Rubic", "Rango"], - "occurrences": 3 - }, - "0xde314a065aaaf11e794706f8585c77e3bb7a2741": { - "address": "0xde314a065aaaf11e794706f8585c77e3bb7a2741", - "symbol": "DOCSWAP", - "decimals": 18, - "name": "Dex on Crypto", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xde314a065aaaf11e794706f8585c77e3bb7a2741.png", - "aggregators": ["PancakeCoinGecko", "Rubic", "Rango"], - "occurrences": 3 - }, - "0xbebdcc8a61bf7372461cd1e746a0c2ead1bc06d2": { - "address": "0xbebdcc8a61bf7372461cd1e746a0c2ead1bc06d2", - "symbol": "DOD100", - "decimals": 18, - "name": "Day of Defeat Mini 100x", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xbebdcc8a61bf7372461cd1e746a0c2ead1bc06d2.png", - "aggregators": ["PancakeCoinMarketCap", "Rubic", "Rango"], - "occurrences": 3 - }, - "0xdc49d53330317cbc6924fa53042e0c9bca0a8d63": { - "address": "0xdc49d53330317cbc6924fa53042e0c9bca0a8d63", - "symbol": "DOGEDI", - "decimals": 12, - "name": "DOGEDI", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xdc49d53330317cbc6924fa53042e0c9bca0a8d63.png", - "aggregators": ["PancakeCoinMarketCap", "Rubic", "Rango"], - "occurrences": 3 - }, - "0xf8d44b7c801bb3e323752419ff8285b80fcfbf20": { - "address": "0xf8d44b7c801bb3e323752419ff8285b80fcfbf20", - "symbol": "DOM", - "decimals": 18, - "name": "Domus AI", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xf8d44b7c801bb3e323752419ff8285b80fcfbf20.png", - "aggregators": ["PancakeCoinGecko", "Rubic", "Sonarwatch"], - "occurrences": 3 - }, - "0x229c32460c6beac113e720ac4a7495b57f53f7cf": { - "address": "0x229c32460c6beac113e720ac4a7495b57f53f7cf", - "symbol": "DONA", - "decimals": 9, - "name": "DonaSwap", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x229c32460c6beac113e720ac4a7495b57f53f7cf.png", - "aggregators": ["PancakeCoinMarketCap", "Rubic", "Rango"], - "occurrences": 3 - }, - "0xfafbc48f6aa3587984ea50e472304802b39c2604": { - "address": "0xfafbc48f6aa3587984ea50e472304802b39c2604", - "symbol": "DOR", - "decimals": 18, - "name": "DogyRace", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xfafbc48f6aa3587984ea50e472304802b39c2604.png", - "aggregators": ["PancakeCoinMarketCap", "Rubic", "Rango"], - "occurrences": 3 - }, - "0xc054131808e11a71bb585e8965d14422a4666666": { - "address": "0xc054131808e11a71bb585e8965d14422a4666666", - "symbol": "DRAGON", - "decimals": 6, - "name": "Dragon Coin", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xc054131808e11a71bb585e8965d14422a4666666.png", - "aggregators": ["PancakeCoinGecko", "Rubic", "Rango"], - "occurrences": 3 - }, - "0xe298ed3543b45037a2d4037ac6dfeb2e801f9803": { - "address": "0xe298ed3543b45037a2d4037ac6dfeb2e801f9803", - "symbol": "DU", - "decimals": 18, - "name": "Du", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xe298ed3543b45037a2d4037ac6dfeb2e801f9803.png", - "aggregators": ["PancakeCoinGecko", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x1cc73d96ff2cb0d7bec74eaf4c81f27c9132ee86": { - "address": "0x1cc73d96ff2cb0d7bec74eaf4c81f27c9132ee86", - "symbol": "EFCR", - "decimals": 8, - "name": "EFLANCER", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x1cc73d96ff2cb0d7bec74eaf4c81f27c9132ee86.png", - "aggregators": ["PancakeCoinGecko", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x8005d97e993668a528008d16338b42f9e976ed0f": { - "address": "0x8005d97e993668a528008d16338b42f9e976ed0f", - "symbol": "EGOLD", - "decimals": 18, - "name": "EGOLD - Algorithmic NFT Mining", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x8005d97e993668a528008d16338b42f9e976ed0f.png", - "aggregators": ["PancakeCoinGecko", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x9d4282b4b6dc457f44f15e39ebffd4621c6df246": { - "address": "0x9d4282b4b6dc457f44f15e39ebffd4621c6df246", - "symbol": "ELOIN", - "decimals": 18, - "name": "Eloin", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x9d4282b4b6dc457f44f15e39ebffd4621c6df246.png", - "aggregators": ["PancakeCoinGecko", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x5bc4e94ce63c5470515cbddc903f813580a2a08d": { - "address": "0x5bc4e94ce63c5470515cbddc903f813580a2a08d", - "symbol": "ENTER", - "decimals": 18, - "name": "ENTER", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x5bc4e94ce63c5470515cbddc903f813580a2a08d.png", - "aggregators": ["PancakeCoinGecko", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x90e1f81b298f6c180ce6f71a6bdb4acf41be8e01": { - "address": "0x90e1f81b298f6c180ce6f71a6bdb4acf41be8e01", - "symbol": "EPIX", - "decimals": 18, - "name": "Byepix", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x90e1f81b298f6c180ce6f71a6bdb4acf41be8e01.png", - "aggregators": ["PancakeCoinMarketCap", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x696b2518190211879d6ea281664b690ef327b717": { - "address": "0x696b2518190211879d6ea281664b690ef327b717", - "symbol": "FAYD", - "decimals": 18, - "name": "Fayda", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x696b2518190211879d6ea281664b690ef327b717.png", - "aggregators": ["PancakeCoinMarketCap", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x816ec483ceffe52f174aaba14b83bc7b5f33b403": { - "address": "0x816ec483ceffe52f174aaba14b83bc7b5f33b403", - "symbol": "FHB", - "decimals": 18, - "name": "FHB", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x816ec483ceffe52f174aaba14b83bc7b5f33b403.png", - "aggregators": ["PancakeCoinMarketCap", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x88fa341d1c61f6723491dceb56ee09f1fda6d972": { - "address": "0x88fa341d1c61f6723491dceb56ee09f1fda6d972", - "symbol": "FTT", - "decimals": 18, - "name": "FTT Token", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x88fa341d1c61f6723491dceb56ee09f1fda6d972.png", - "aggregators": ["PancakeCoinMarketCap", "Rubic", "Rango"], - "occurrences": 3 - }, - "0xc14a7747cfec02cfea62e72bb93538de6b2078e6": { - "address": "0xc14a7747cfec02cfea62e72bb93538de6b2078e6", - "symbol": "GBL", - "decimals": 18, - "name": "Global Token", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xc14a7747cfec02cfea62e72bb93538de6b2078e6.png", - "aggregators": ["PancakeCoinMarketCap", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x90a7253b4dc957257a363b9960ca383d241bd01f": { - "address": "0x90a7253b4dc957257a363b9960ca383d241bd01f", - "symbol": "GBT", - "decimals": 18, - "name": "Give Back Token", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x90a7253b4dc957257a363b9960ca383d241bd01f.png", - "aggregators": ["PancakeCoinGecko", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x52eb6c887a4691f10bee396778603927c23be1fc": { - "address": "0x52eb6c887a4691f10bee396778603927c23be1fc", - "symbol": "GLB", - "decimals": 9, - "name": "Golden Ball", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x52eb6c887a4691f10bee396778603927c23be1fc.png", - "aggregators": ["PancakeCoinMarketCap", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x606379220ab266bbe4b0fef8469e6e602f295a84": { - "address": "0x606379220ab266bbe4b0fef8469e6e602f295a84", - "symbol": "GLOW", - "decimals": 18, - "name": "Glow Token", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x606379220ab266bbe4b0fef8469e6e602f295a84.png", - "aggregators": ["PancakeCoinGecko", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x7fdf0d77f9f906addc7f3b75a73df941ae65d7d6": { - "address": "0x7fdf0d77f9f906addc7f3b75a73df941ae65d7d6", - "symbol": "GLT", - "decimals": 9, - "name": "GeoLeaf", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x7fdf0d77f9f906addc7f3b75a73df941ae65d7d6.png", - "aggregators": ["PancakeCoinGecko", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x4b71bd5e1db6cce4179e175a3a2033e4f17b7432": { - "address": "0x4b71bd5e1db6cce4179e175a3a2033e4f17b7432", - "symbol": "GMY", - "decimals": 9, - "name": "Gameology", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x4b71bd5e1db6cce4179e175a3a2033e4f17b7432.png", - "aggregators": ["PancakeCoinGecko", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x438fc473ba340d0734e2d05acdf5bee775d1b0a4": { - "address": "0x438fc473ba340d0734e2d05acdf5bee775d1b0a4", - "symbol": "GOAL", - "decimals": 18, - "name": "GOAL token", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x438fc473ba340d0734e2d05acdf5bee775d1b0a4.png", - "aggregators": ["PancakeCoinMarketCap", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x8b6fba73454101d537d51d5b12614a01067cd168": { - "address": "0x8b6fba73454101d537d51d5b12614a01067cd168", - "symbol": "GOLD", - "decimals": 18, - "name": "GOLD", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x8b6fba73454101d537d51d5b12614a01067cd168.png", - "aggregators": ["PancakeCoinGecko", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x8de4228d54fc86d4607c8425e8becefb93888fe4": { - "address": "0x8de4228d54fc86d4607c8425e8becefb93888fe4", - "symbol": "GRWV", - "decimals": 18, - "name": "GreenWAVES OLD ", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x8de4228d54fc86d4607c8425e8becefb93888fe4.png", - "aggregators": ["PancakeCoinGecko", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x552594612f935441c01c6854edf111f343c1ca07": { - "address": "0x552594612f935441c01c6854edf111f343c1ca07", - "symbol": "GWT", - "decimals": 18, - "name": "Galaxy War", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x552594612f935441c01c6854edf111f343c1ca07.png", - "aggregators": ["PancakeCoinMarketCap", "Rubic", "Rango"], - "occurrences": 3 - }, - "0xc4bc63af55d684bfd83006678a4a77d7c88431fd": { - "address": "0xc4bc63af55d684bfd83006678a4a77d7c88431fd", - "symbol": "HAC", - "decimals": 18, - "name": "Planet Hares - HAC Token v2", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xc4bc63af55d684bfd83006678a4a77d7c88431fd.png", - "aggregators": ["PancakeCoinGecko", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x20d39a5130f799b95b55a930e5b7ebc589ea9ed8": { - "address": "0x20d39a5130f799b95b55a930e5b7ebc589ea9ed8", - "symbol": "HE", - "decimals": 18, - "name": "Heroes&Empires", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x20d39a5130f799b95b55a930e5b7ebc589ea9ed8.png", - "aggregators": ["PancakeCoinGecko", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x759bd4ed07a34b9ea761f8f2ed9f0e102675a29c": { - "address": "0x759bd4ed07a34b9ea761f8f2ed9f0e102675a29c", - "symbol": "HF", - "decimals": 9, - "name": "Have Fun", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x759bd4ed07a34b9ea761f8f2ed9f0e102675a29c.png", - "aggregators": ["PancakeCoinMarketCap", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x186866858aef38c05829166a7711b37563e15994": { - "address": "0x186866858aef38c05829166a7711b37563e15994", - "symbol": "HFT", - "decimals": 9, - "name": "Hodl Finance", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x186866858aef38c05829166a7711b37563e15994.png", - "aggregators": ["PancakeCoinMarketCap", "Rubic", "Rango"], - "occurrences": 3 - }, - "0xbfdfa2143d1aa3efea094e5177295df9e77202a8": { - "address": "0xbfdfa2143d1aa3efea094e5177295df9e77202a8", - "symbol": "HOKA", - "decimals": 9, - "name": "Hokkaido Inu", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xbfdfa2143d1aa3efea094e5177295df9e77202a8.png", - "aggregators": ["PancakeCoinMarketCap", "Rubic", "Rango"], - "occurrences": 3 - }, - "0xfe7e505865d6ff8e09b6d18133c0c393c27de410": { - "address": "0xfe7e505865d6ff8e09b6d18133c0c393c27de410", - "symbol": "HRM", - "decimals": 18, - "name": "Honorarium", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xfe7e505865d6ff8e09b6d18133c0c393c27de410.png", - "aggregators": ["PancakeCoinMarketCap", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x6b2812f1a8350de38c4da2d29446ead15b91fa3c": { - "address": "0x6b2812f1a8350de38c4da2d29446ead15b91fa3c", - "symbol": "HUT", - "decimals": 18, - "name": "Hanuman Universe", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x6b2812f1a8350de38c4da2d29446ead15b91fa3c.png", - "aggregators": ["PancakeCoinGecko", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x4c61d70c0089d708040919aac7bdd600da72bc81": { - "address": "0x4c61d70c0089d708040919aac7bdd600da72bc81", - "symbol": "HYME", - "decimals": 18, - "name": "HYME", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x4c61d70c0089d708040919aac7bdd600da72bc81.png", - "aggregators": ["PancakeCoinGecko", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x92f3e7840133d372052dec535c49f07fca6bb851": { - "address": "0x92f3e7840133d372052dec535c49f07fca6bb851", - "symbol": "IEX", - "decimals": 18, - "name": "Infinity Exchange", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x92f3e7840133d372052dec535c49f07fca6bb851.png", - "aggregators": ["PancakeCoinGecko", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x94d79c325268c898d2902050730f27a478c56cc1": { - "address": "0x94d79c325268c898d2902050730f27a478c56cc1", - "symbol": "IMO", - "decimals": 18, - "name": "IMO", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x94d79c325268c898d2902050730f27a478c56cc1.png", - "aggregators": ["PancakeCoinMarketCap", "Rubic", "Rango"], - "occurrences": 3 - }, - "0xc08aa06c1d707bf910ada0bdeef1353f379e64e1": { - "address": "0xc08aa06c1d707bf910ada0bdeef1353f379e64e1", - "symbol": "INK", - "decimals": 18, - "name": "Ink Fantom", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xc08aa06c1d707bf910ada0bdeef1353f379e64e1.png", - "aggregators": ["PancakeCoinGecko", "Rubic", "Rango"], - "occurrences": 3 - }, - "0xb43cac81cfe4be81166fe984b54e8f9cb0ab2fd3": { - "address": "0xb43cac81cfe4be81166fe984b54e8f9cb0ab2fd3", - "symbol": "ITX", - "decimals": 18, - "name": "ITRONIX", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xb43cac81cfe4be81166fe984b54e8f9cb0ab2fd3.png", - "aggregators": ["PancakeCoinGecko", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x903beffc8ecc50841373d0ecc2ca53fa4b04c31f": { - "address": "0x903beffc8ecc50841373d0ecc2ca53fa4b04c31f", - "symbol": "IVY", - "decimals": 18, - "name": "Ivy Live", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x903beffc8ecc50841373d0ecc2ca53fa4b04c31f.png", - "aggregators": ["PancakeCoinMarketCap", "Rubic", "Rango"], - "occurrences": 3 - }, - "0xa310017e40e687c8670d218e3c86a0d09786574f": { - "address": "0xa310017e40e687c8670d218e3c86a0d09786574f", - "symbol": "JEDALS", - "decimals": 18, - "name": "Yoda Coin Swap", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xa310017e40e687c8670d218e3c86a0d09786574f.png", - "aggregators": ["PancakeCoinMarketCap", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x5fead99998788ac1bca768796483d899f1aef4c4": { - "address": "0x5fead99998788ac1bca768796483d899f1aef4c4", - "symbol": "JIND", - "decimals": 18, - "name": "Jindo Inu", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x5fead99998788ac1bca768796483d899f1aef4c4.png", - "aggregators": ["PancakeCoinMarketCap", "Rubic", "Sonarwatch"], - "occurrences": 3 - }, - "0x8cb623789b566f7a992f2677ddba7af7191b711a": { - "address": "0x8cb623789b566f7a992f2677ddba7af7191b711a", - "symbol": "JUMP4EVER", - "decimals": 18, - "name": "Jump Forever", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x8cb623789b566f7a992f2677ddba7af7191b711a.png", - "aggregators": ["PancakeCoinGecko", "Rubic", "Sonarwatch"], - "occurrences": 3 - }, - "0x4eae52907dba9c370e9ee99f0ce810602a4f2c63": { - "address": "0x4eae52907dba9c370e9ee99f0ce810602a4f2c63", - "symbol": "KABOSU", - "decimals": 18, - "name": "KaBoSu", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x4eae52907dba9c370e9ee99f0ce810602a4f2c63.png", - "aggregators": ["PancakeCoinGecko", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x8ffdcb0cabccf2767366a2eba6e2fdcc37baa1b2": { - "address": "0x8ffdcb0cabccf2767366a2eba6e2fdcc37baa1b2", - "symbol": "KPL", - "decimals": 18, - "name": "Kepple", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x8ffdcb0cabccf2767366a2eba6e2fdcc37baa1b2.png", - "aggregators": ["PancakeCoinMarketCap", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x53940d46a35162255511ff7cade811891d49533c": { - "address": "0x53940d46a35162255511ff7cade811891d49533c", - "symbol": "KRPZA", - "decimals": 18, - "name": "OxyO2", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x53940d46a35162255511ff7cade811891d49533c.png", - "aggregators": ["PancakeCoinGecko", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x072b4e4209df4e418bae0a490dcd8c8b75d1d7c7": { - "address": "0x072b4e4209df4e418bae0a490dcd8c8b75d1d7c7", - "symbol": "KUNKUN", - "decimals": 18, - "name": "KUNKUN Coin", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x072b4e4209df4e418bae0a490dcd8c8b75d1d7c7.png", - "aggregators": ["PancakeCoinGecko", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x8b0ce9c8797c393efeef48791960ee3d7297bac6": { - "address": "0x8b0ce9c8797c393efeef48791960ee3d7297bac6", - "symbol": "LION", - "decimals": 18, - "name": "LION", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x8b0ce9c8797c393efeef48791960ee3d7297bac6.png", - "aggregators": ["PancakeCoinGecko", "Rubic", "Rango"], - "occurrences": 3 - }, - "0xd966cc309898847ded8741deb877d16a7fae4d2c": { - "address": "0xd966cc309898847ded8741deb877d16a7fae4d2c", - "symbol": "LKT", - "decimals": 6, - "name": "LuxKingTech", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xd966cc309898847ded8741deb877d16a7fae4d2c.png", - "aggregators": ["PancakeCoinMarketCap", "Rubic", "Rango"], - "occurrences": 3 - }, - "0xc13cbf50370e5eae6f5dd9d8a1015007f34c4ead": { - "address": "0xc13cbf50370e5eae6f5dd9d8a1015007f34c4ead", - "symbol": "LNT", - "decimals": 18, - "name": "Limitless Network", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xc13cbf50370e5eae6f5dd9d8a1015007f34c4ead.png", - "aggregators": ["PancakeCoinGecko", "Rubic", "Rango"], - "occurrences": 3 - }, - "0xe702c303173f90094ce8c9c6ca3f198eca0e027c": { - "address": "0xe702c303173f90094ce8c9c6ca3f198eca0e027c", - "symbol": "LOF", - "decimals": 9, - "name": "LOFCrypto", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xe702c303173f90094ce8c9c6ca3f198eca0e027c.png", - "aggregators": ["PancakeCoinGecko", "Rubic", "Rango"], - "occurrences": 3 - }, - "0xf82aa46120314904cd8119dac84f6bcc7d90ed2e": { - "address": "0xf82aa46120314904cd8119dac84f6bcc7d90ed2e", - "symbol": "LUCA", - "decimals": 18, - "name": "Lucrosus Capital Coin", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xf82aa46120314904cd8119dac84f6bcc7d90ed2e.png", - "aggregators": ["PancakeCoinMarketCap", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x28b9aed756de31b6b362aa0f23211d13093ebb79": { - "address": "0x28b9aed756de31b6b362aa0f23211d13093ebb79", - "symbol": "LUNG", - "decimals": 18, - "name": "LungDefi", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x28b9aed756de31b6b362aa0f23211d13093ebb79.png", - "aggregators": ["PancakeCoinMarketCap", "Rubic", "Rango"], - "occurrences": 3 - }, - "0xd39ba5680e5a59ed032054485a0a8d2d5a6a2366": { - "address": "0xd39ba5680e5a59ed032054485a0a8d2d5a6a2366", - "symbol": "MCOIN", - "decimals": 18, - "name": "Mcoin", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xd39ba5680e5a59ed032054485a0a8d2d5a6a2366.png", - "aggregators": ["PancakeCoinGecko", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x1d2ec31b2fcd89997a544d6e7444586dce529b4e": { - "address": "0x1d2ec31b2fcd89997a544d6e7444586dce529b4e", - "symbol": "MDTI", - "decimals": 18, - "name": "Meditoc", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x1d2ec31b2fcd89997a544d6e7444586dce529b4e.png", - "aggregators": ["PancakeCoinGecko", "Rubic", "Sonarwatch"], - "occurrences": 3 - }, - "0xe846dd34dc07ab517e78f5e58edae79d80222fd0": { - "address": "0xe846dd34dc07ab517e78f5e58edae79d80222fd0", - "symbol": "MEF", - "decimals": 18, - "name": "Meflex", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xe846dd34dc07ab517e78f5e58edae79d80222fd0.png", - "aggregators": ["PancakeCoinMarketCap", "Rubic", "Rango"], - "occurrences": 3 - }, - "0xabcad2648fd27538e44bbd91109835aadaf981bc": { - "address": "0xabcad2648fd27538e44bbd91109835aadaf981bc", - "symbol": "MEMEMINT", - "decimals": 18, - "name": "MEME MINT", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xabcad2648fd27538e44bbd91109835aadaf981bc.png", - "aggregators": ["PancakeCoinMarketCap", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x23ccf3c12a7eff7fe09fa52c716ea9f200b87363": { - "address": "0x23ccf3c12a7eff7fe09fa52c716ea9f200b87363", - "symbol": "MEVRV2", - "decimals": 18, - "name": "Metaverse VR V2", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x23ccf3c12a7eff7fe09fa52c716ea9f200b87363.png", - "aggregators": ["PancakeCoinMarketCap", "Rubic", "Rango"], - "occurrences": 3 - }, - "0xac394dd65e1bb24b3191d3863d3f5c170b4f733d": { - "address": "0xac394dd65e1bb24b3191d3863d3f5c170b4f733d", - "symbol": "MILLE", - "decimals": 6, - "name": "MILLE CHAIN", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xac394dd65e1bb24b3191d3863d3f5c170b4f733d.png", - "aggregators": ["PancakeCoinGecko", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x66c1efe68d1cce628ba797b98ab7f654fba154dc": { - "address": "0x66c1efe68d1cce628ba797b98ab7f654fba154dc", - "symbol": "MLZ", - "decimals": 18, - "name": "MetaLabz", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x66c1efe68d1cce628ba797b98ab7f654fba154dc.png", - "aggregators": ["PancakeCoinGecko", "Rubic", "Sonarwatch"], - "occurrences": 3 - }, - "0xcc116e59dd51df5460e8b11ff615e3e706a9202a": { - "address": "0xcc116e59dd51df5460e8b11ff615e3e706a9202a", - "symbol": "MMAC", - "decimals": 9, - "name": "Rise of the Warbots MMAC", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xcc116e59dd51df5460e8b11ff615e3e706a9202a.png", - "aggregators": ["PancakeCoinGecko", "Rubic", "Rango"], - "occurrences": 3 - }, - "0xd86a046ed8a235bea8773e804d4cc50f5676fe2c": { - "address": "0xd86a046ed8a235bea8773e804d4cc50f5676fe2c", - "symbol": "MMGT", - "decimals": 18, - "name": "MultiMoney.Global", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xd86a046ed8a235bea8773e804d4cc50f5676fe2c.png", - "aggregators": ["PancakeCoinGecko", "Rubic", "Rango"], - "occurrences": 3 - }, - "0xd517ce9206c09dfaa7e7f40f98e59f54fb10e09f": { - "address": "0xd517ce9206c09dfaa7e7f40f98e59f54fb10e09f", - "symbol": "MMM", - "decimals": 18, - "name": "Meta Merge", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xd517ce9206c09dfaa7e7f40f98e59f54fb10e09f.png", - "aggregators": ["PancakeCoinMarketCap", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x36953b5ec00a13edceceb3af258d034913d2a79d": { - "address": "0x36953b5ec00a13edceceb3af258d034913d2a79d", - "symbol": "MNFT", - "decimals": 18, - "name": "MANUFACTORY", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x36953b5ec00a13edceceb3af258d034913d2a79d.png", - "aggregators": ["PancakeCoinMarketCap", "Rubic", "Rango"], - "occurrences": 3 - }, - "0xf0f14cbd7ce6753bc209eb0d8f67fc84cccb9b2f": { - "address": "0xf0f14cbd7ce6753bc209eb0d8f67fc84cccb9b2f", - "symbol": "MSS", - "decimals": 18, - "name": "MintStakeShare", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xf0f14cbd7ce6753bc209eb0d8f67fc84cccb9b2f.png", - "aggregators": ["PancakeCoinGecko", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x12de91acb5f544b37b1e66438324b8db26a91d8a": { - "address": "0x12de91acb5f544b37b1e66438324b8db26a91d8a", - "symbol": "MTF", - "decimals": 9, - "name": "MetaFootball", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x12de91acb5f544b37b1e66438324b8db26a91d8a.png", - "aggregators": ["PancakeCoinMarketCap", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x74c701d916803387ed7efd104ea6a55d299824e9": { - "address": "0x74c701d916803387ed7efd104ea6a55d299824e9", - "symbol": "MTPE", - "decimals": 18, - "name": "Misty Pepe", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x74c701d916803387ed7efd104ea6a55d299824e9.png", - "aggregators": ["PancakeCoinGecko", "Rubic", "Rango"], - "occurrences": 3 - }, - "0xe28832f94aa99d3ed4c61ef805330168556b4179": { - "address": "0xe28832f94aa99d3ed4c61ef805330168556b4179", - "symbol": "MTX", - "decimals": 9, - "name": "Matrix Protocol", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xe28832f94aa99d3ed4c61ef805330168556b4179.png", - "aggregators": ["PancakeCoinMarketCap", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x011a5de645f7b599bb4d6fa1371532dd25a45201": { - "address": "0x011a5de645f7b599bb4d6fa1371532dd25a45201", - "symbol": "MUNK", - "decimals": 18, - "name": "Dramatic Chipmunk", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x011a5de645f7b599bb4d6fa1371532dd25a45201.png", - "aggregators": ["PancakeCoinMarketCap", "Rubic", "Rango"], - "occurrences": 3 - }, - "0xc45de8ab31140e9ced1575ec53ffffa1e3062576": { - "address": "0xc45de8ab31140e9ced1575ec53ffffa1e3062576", - "symbol": "MVG", - "decimals": 18, - "name": "Mad Viking Games", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xc45de8ab31140e9ced1575ec53ffffa1e3062576.png", - "aggregators": ["PancakeCoinMarketCap", "Rubic", "Rango"], - "occurrences": 3 - }, - "0xca8a893a7464e82bdee582017c749b92e5b45b48": { - "address": "0xca8a893a7464e82bdee582017c749b92e5b45b48", - "symbol": "MW", - "decimals": 18, - "name": "Metaworld", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xca8a893a7464e82bdee582017c749b92e5b45b48.png", - "aggregators": ["PancakeCoinMarketCap", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x6ec7ad5a76dd866f07ddf293d4f5bc89c8bd2e09": { - "address": "0x6ec7ad5a76dd866f07ddf293d4f5bc89c8bd2e09", - "symbol": "N0LE", - "decimals": 9, - "name": "Nole Inu", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x6ec7ad5a76dd866f07ddf293d4f5bc89c8bd2e09.png", - "aggregators": ["PancakeCoinMarketCap", "Rubic", "Rango"], - "occurrences": 3 - }, - "0xb15488af39bd1de209d501672a293bcd05f82ab4": { - "address": "0xb15488af39bd1de209d501672a293bcd05f82ab4", - "symbol": "NANO", - "decimals": 18, - "name": "Nanomatic", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xb15488af39bd1de209d501672a293bcd05f82ab4.png", - "aggregators": ["PancakeCoinMarketCap", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x07430e1482574389bc0e5d33cfb65280e881ee8c": { - "address": "0x07430e1482574389bc0e5d33cfb65280e881ee8c", - "symbol": "NAO", - "decimals": 18, - "name": "Nami Frame Futures", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x07430e1482574389bc0e5d33cfb65280e881ee8c.png", - "aggregators": ["PancakeCoinGecko", "Rubic", "Rango"], - "occurrences": 3 - }, - "0xeac7250cf7ef47abdccb26df77b81bdac3da4cfb": { - "address": "0xeac7250cf7ef47abdccb26df77b81bdac3da4cfb", - "symbol": "NEVER", - "decimals": 18, - "name": "MALOU", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xeac7250cf7ef47abdccb26df77b81bdac3da4cfb.png", - "aggregators": ["PancakeCoinMarketCap", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x6519cb1f694ccbcc72417570b364f2d051eefb9d": { - "address": "0x6519cb1f694ccbcc72417570b364f2d051eefb9d", - "symbol": "NLC", - "decimals": 8, - "name": "NoLimitCoin", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x6519cb1f694ccbcc72417570b364f2d051eefb9d.png", - "aggregators": ["PancakeCoinMarketCap", "Rubic", "Rango"], - "occurrences": 3 - }, - "0xd8cb4c2369db13c94c90c7fd3bebc9757900ee6b": { - "address": "0xd8cb4c2369db13c94c90c7fd3bebc9757900ee6b", - "symbol": "NPXB", - "decimals": 18, - "name": "NapoleonX Token", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xd8cb4c2369db13c94c90c7fd3bebc9757900ee6b.png", - "aggregators": ["PancakeCoinMarketCap", "Rubic", "Rango"], - "occurrences": 3 - }, - "0xcce7162344dc758e4715079c8abc981dc72273b9": { - "address": "0xcce7162344dc758e4715079c8abc981dc72273b9", - "symbol": "OIL", - "decimals": 18, - "name": "CRUDE OIL BRENT", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xcce7162344dc758e4715079c8abc981dc72273b9.png", - "aggregators": ["PancakeCoinGecko", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x12ef97ebe8a51bb7cff3e1799c8f7936db9d13d3": { - "address": "0x12ef97ebe8a51bb7cff3e1799c8f7936db9d13d3", - "symbol": "OKY", - "decimals": 18, - "name": "Onigiri Kitty", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x12ef97ebe8a51bb7cff3e1799c8f7936db9d13d3.png", - "aggregators": ["PancakeCoinGecko", "Rubic", "Rango"], - "occurrences": 3 - }, - "0xc7e9841afc184485e6a3375bc59ce2f43e9f738a": { - "address": "0xc7e9841afc184485e6a3375bc59ce2f43e9f738a", - "symbol": "OMP", - "decimals": 18, - "name": "Onmax", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xc7e9841afc184485e6a3375bc59ce2f43e9f738a.png", - "aggregators": ["PancakeCoinGecko", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x674aa28ac436834051fff3fc7b6e59d6f9c57a1c": { - "address": "0x674aa28ac436834051fff3fc7b6e59d6f9c57a1c", - "symbol": "OPINU", - "decimals": 18, - "name": "Optimus Inu", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x674aa28ac436834051fff3fc7b6e59d6f9c57a1c.png", - "aggregators": ["PancakeCoinMarketCap", "Rubic", "Rango"], - "occurrences": 3 - }, - "0xf9ba4b77e9a5e7d16633191932f95eaf70086dc0": { - "address": "0xf9ba4b77e9a5e7d16633191932f95eaf70086dc0", - "symbol": "OVDM", - "decimals": 18, - "name": "Overdome", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xf9ba4b77e9a5e7d16633191932f95eaf70086dc0.png", - "aggregators": ["PancakeCoinGecko", "Rubic", "Rango"], - "occurrences": 3 - }, - "0xbfbe5fda3483f6bcd1b3e6fb0647c00667e05d54": { - "address": "0xbfbe5fda3483f6bcd1b3e6fb0647c00667e05d54", - "symbol": "OWNER", - "decimals": 18, - "name": "OPENWORLDNFT", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xbfbe5fda3483f6bcd1b3e6fb0647c00667e05d54.png", - "aggregators": ["PancakeCoinGecko", "Rubic", "Rango"], - "occurrences": 3 - }, - "0xe239b561369aef79ed55dfdded84848a3bf60480": { - "address": "0xe239b561369aef79ed55dfdded84848a3bf60480", - "symbol": "PAPER", - "decimals": 18, - "name": "Paper", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xe239b561369aef79ed55dfdded84848a3bf60480.png", - "aggregators": ["PancakeCoinGecko", "Rubic", "Rango"], - "occurrences": 3 - }, - "0xe825056ee107d8044f6f811cae6bb2d96e011dfd": { - "address": "0xe825056ee107d8044f6f811cae6bb2d96e011dfd", - "symbol": "PBIE", - "decimals": 18, - "name": "PBIE", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xe825056ee107d8044f6f811cae6bb2d96e011dfd.png", - "aggregators": ["PancakeCoinGecko", "Rubic", "Rango"], - "occurrences": 3 - }, - "0xe700ba35998fad8e669e3cca7b3a350f1fdcacf8": { - "address": "0xe700ba35998fad8e669e3cca7b3a350f1fdcacf8", - "symbol": "PCA", - "decimals": 18, - "name": "Purchasa", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xe700ba35998fad8e669e3cca7b3a350f1fdcacf8.png", - "aggregators": ["PancakeCoinGecko", "Rubic", "Rango"], - "occurrences": 3 - }, - "0xcddfbedb73f025752c61746acdf56c0f3cbb023d": { - "address": "0xcddfbedb73f025752c61746acdf56c0f3cbb023d", - "symbol": "PCK", - "decimals": 18, - "name": "Pickvibe", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xcddfbedb73f025752c61746acdf56c0f3cbb023d.png", - "aggregators": ["PancakeCoinGecko", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x6385fae4c6510d0a70d41f4bfa3529fad850aeca": { - "address": "0x6385fae4c6510d0a70d41f4bfa3529fad850aeca", - "symbol": "PEKA", - "decimals": 18, - "name": "PEKA", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x6385fae4c6510d0a70d41f4bfa3529fad850aeca.png", - "aggregators": ["PancakeCoinMarketCap", "Rubic", "Rango"], - "occurrences": 3 - }, - "0xdccb6095245b3ddb709f77faf251ab31ccf1f70c": { - "address": "0xdccb6095245b3ddb709f77faf251ab31ccf1f70c", - "symbol": "PEM", - "decimals": 18, - "name": "Pem", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xdccb6095245b3ddb709f77faf251ab31ccf1f70c.png", - "aggregators": ["PancakeCoinGecko", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x33678c7b2a58480ef599ce73ad0d002dc6b6f7dc": { - "address": "0x33678c7b2a58480ef599ce73ad0d002dc6b6f7dc", - "symbol": "PEO", - "decimals": 18, - "name": "PepeCEO", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x33678c7b2a58480ef599ce73ad0d002dc6b6f7dc.png", - "aggregators": ["PancakeCoinMarketCap", "Rubic", "Rango"], - "occurrences": 3 - }, - "0xd3317ea3178fb1852c7db37c6d50e4c823a734bc": { - "address": "0xd3317ea3178fb1852c7db37c6d50e4c823a734bc", - "symbol": "PEPES", - "decimals": 18, - "name": "Star Pepe", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xd3317ea3178fb1852c7db37c6d50e4c823a734bc.png", - "aggregators": ["PancakeCoinGecko", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x2d230f311f1f663eb5d0aafd58800cf6f2097c85": { - "address": "0x2d230f311f1f663eb5d0aafd58800cf6f2097c85", - "symbol": "PGT", - "decimals": 18, - "name": "PUZZLE GAME GOVERNANCE TOKEN", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x2d230f311f1f663eb5d0aafd58800cf6f2097c85.png", - "aggregators": ["PancakeCoinGecko", "Rubic", "Rango"], - "occurrences": 3 - }, - "0xac86e5f9ba48d680516df50c72928c2ec50f3025": { - "address": "0xac86e5f9ba48d680516df50c72928c2ec50f3025", - "symbol": "PHX", - "decimals": 18, - "name": "Phoenix Token@BSC", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xac86e5f9ba48d680516df50c72928c2ec50f3025.png", - "aggregators": ["PancakeCoinGecko", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x574f75bc522cb42ec2365dc54485d471f2efb4b6": { - "address": "0x574f75bc522cb42ec2365dc54485d471f2efb4b6", - "symbol": "PIE", - "decimals": 18, - "name": "ApplePies.co", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x574f75bc522cb42ec2365dc54485d471f2efb4b6.png", - "aggregators": ["PancakeCoinGecko", "Rubic", "Rango"], - "occurrences": 3 - }, - "0xc98a06e7362789f57c8861e8f33f2ebe3d32eed1": { - "address": "0xc98a06e7362789f57c8861e8f33f2ebe3d32eed1", - "symbol": "PITQC", - "decimals": 9, - "name": "Pitquidity Capital", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xc98a06e7362789f57c8861e8f33f2ebe3d32eed1.png", - "aggregators": ["PancakeCoinGecko", "Rubic", "Rango"], - "occurrences": 3 - }, - "0xf0aaa03cd21c989c98074aded9c942ff938b2ab0": { - "address": "0xf0aaa03cd21c989c98074aded9c942ff938b2ab0", - "symbol": "PKT", - "decimals": 18, - "name": "Play Kingdom", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xf0aaa03cd21c989c98074aded9c942ff938b2ab0.png", - "aggregators": ["PancakeCoinMarketCap", "Rubic", "Rango"], - "occurrences": 3 - }, - "0xe6d6928e5ce18aa1a6b3653993678f291cbe2b0a": { - "address": "0xe6d6928e5ce18aa1a6b3653993678f291cbe2b0a", - "symbol": "PLUP", - "decimals": 18, - "name": "PoolUp", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xe6d6928e5ce18aa1a6b3653993678f291cbe2b0a.png", - "aggregators": ["PancakeCoinMarketCap", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x43a167b15a6f24913a8b4d35488b36ac15d39200": { - "address": "0x43a167b15a6f24913a8b4d35488b36ac15d39200", - "symbol": "PMA", - "decimals": 18, - "name": "PumaPay", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x43a167b15a6f24913a8b4d35488b36ac15d39200.png", - "aggregators": ["PancakeCoinGecko", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x9b44df3318972be845d83f961735609137c4c23c": { - "address": "0x9b44df3318972be845d83f961735609137c4c23c", - "symbol": "PROPEL", - "decimals": 18, - "name": "Propel", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x9b44df3318972be845d83f961735609137c4c23c.png", - "aggregators": ["PancakeCoinGecko", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x5711f19b7b21938d31d07e5736b4660c1159d7d3": { - "address": "0x5711f19b7b21938d31d07e5736b4660c1159d7d3", - "symbol": "PRVC", - "decimals": 18, - "name": "PrivaCoin", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x5711f19b7b21938d31d07e5736b4660c1159d7d3.png", - "aggregators": ["PancakeCoinMarketCap", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x90e3414e00e231b962666bd94adb811d5bcd0c2a": { - "address": "0x90e3414e00e231b962666bd94adb811d5bcd0c2a", - "symbol": "PRX", - "decimals": 8, - "name": "PRX", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x90e3414e00e231b962666bd94adb811d5bcd0c2a.png", - "aggregators": ["PancakeCoinMarketCap", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x563ca064e41f3b5d80adeecfe49ab375fd7afbef": { - "address": "0x563ca064e41f3b5d80adeecfe49ab375fd7afbef", - "symbol": "RBP", - "decimals": 18, - "name": "Rare Ball Portion", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x563ca064e41f3b5d80adeecfe49ab375fd7afbef.png", - "aggregators": ["PancakeCoinMarketCap", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x2d94172436d869c1e3c094bead272508fab0d9e3": { - "address": "0x2d94172436d869c1e3c094bead272508fab0d9e3", - "symbol": "RCG", - "decimals": 18, - "name": "The Recharge", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x2d94172436d869c1e3c094bead272508fab0d9e3.png", - "aggregators": ["PancakeCoinMarketCap", "Rubic", "Rango"], - "occurrences": 3 - }, - "0xb922aa024e71a25077d78b593bd6f11f2f412e72": { - "address": "0xb922aa024e71a25077d78b593bd6f11f2f412e72", - "symbol": "REC", - "decimals": 18, - "name": "RecoveryDAO", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xb922aa024e71a25077d78b593bd6f11f2f412e72.png", - "aggregators": ["PancakeCoinMarketCap", "Rubic", "Rango"], - "occurrences": 3 - }, - "0xe17fbdf671f3cce0f354cacbd27e03f4245a3ffe": { - "address": "0xe17fbdf671f3cce0f354cacbd27e03f4245a3ffe", - "symbol": "RIFI", - "decimals": 18, - "name": "Rikkei Finance", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xe17fbdf671f3cce0f354cacbd27e03f4245a3ffe.png", - "aggregators": ["PancakeCoinMarketCap", "Rubic", "Rango"], - "occurrences": 3 - }, - "0xa2ea0de93ba8dbd632c6a605f59a4950a4a25a76": { - "address": "0xa2ea0de93ba8dbd632c6a605f59a4950a4a25a76", - "symbol": "RIK", - "decimals": 18, - "name": "RIKEZA", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xa2ea0de93ba8dbd632c6a605f59a4950a4a25a76.png", - "aggregators": ["PancakeCoinGecko", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x117eefdde5e5aed6626ffedbb5d2ac955f64dbf3": { - "address": "0x117eefdde5e5aed6626ffedbb5d2ac955f64dbf3", - "symbol": "RMATIC", - "decimals": 18, - "name": "StaFi Staked MATIC", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x117eefdde5e5aed6626ffedbb5d2ac955f64dbf3.png", - "aggregators": ["PancakeCoinMarketCap", "Rubic", "Rango"], - "occurrences": 3 - }, - "0xb6dea09415611c6f0425f3437c43de966aa7a1e9": { - "address": "0xb6dea09415611c6f0425f3437c43de966aa7a1e9", - "symbol": "RONG", - "decimals": 18, - "name": "Rong", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xb6dea09415611c6f0425f3437c43de966aa7a1e9.png", - "aggregators": ["PancakeCoinGecko", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x62175af6d9b045d8435cdedd9bf542c7bcc56dcc": { - "address": "0x62175af6d9b045d8435cdedd9bf542c7bcc56dcc", - "symbol": "SAFE", - "decimals": 18, - "name": "SAFE", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x62175af6d9b045d8435cdedd9bf542c7bcc56dcc.png", - "aggregators": ["PancakeCoinMarketCap", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x1bcb66eac3657a26c4bd9005e15b504555bf9433": { - "address": "0x1bcb66eac3657a26c4bd9005e15b504555bf9433", - "symbol": "SEAH", - "decimals": 18, - "name": "Seahorses", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x1bcb66eac3657a26c4bd9005e15b504555bf9433.png", - "aggregators": ["PancakeCoinGecko", "Rubic", "Rango"], - "occurrences": 3 - }, - "0xe95fd76cf16008c12ff3b3a937cb16cd9cc20284": { - "address": "0xe95fd76cf16008c12ff3b3a937cb16cd9cc20284", - "symbol": "SETS", - "decimals": 18, - "name": "Sensitrust", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xe95fd76cf16008c12ff3b3a937cb16cd9cc20284.png", - "aggregators": ["PancakeCoinGecko", "Rubic", "Rango"], - "occurrences": 3 - }, - "0xa63f56985f9c7f3bc9ffc5685535649e0c1a55f3": { - "address": "0xa63f56985f9c7f3bc9ffc5685535649e0c1a55f3", - "symbol": "SFRAX", - "decimals": 18, - "name": "Staked FRAX", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xa63f56985f9c7f3bc9ffc5685535649e0c1a55f3.png", - "aggregators": ["PancakeCoinGecko", "Rubic", "Rango"], - "occurrences": 3 - }, - "0xe79a1163a95734ccfbd006cbaaba954f3e846beb": { - "address": "0xe79a1163a95734ccfbd006cbaaba954f3e846beb", - "symbol": "SHACK", - "decimals": 18, - "name": "Shack Token", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xe79a1163a95734ccfbd006cbaaba954f3e846beb.png", - "aggregators": ["PancakeCoinMarketCap", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x0b842c7b18bef85daea11f23e1dabe0d6671c19a": { - "address": "0x0b842c7b18bef85daea11f23e1dabe0d6671c19a", - "symbol": "SHIDO", - "decimals": 18, - "name": "Shido OLD ", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x0b842c7b18bef85daea11f23e1dabe0d6671c19a.png", - "aggregators": ["PancakeCoinGecko", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x61d9f522b332d1f2ab25d5803371e5eac6cf8808": { - "address": "0x61d9f522b332d1f2ab25d5803371e5eac6cf8808", - "symbol": "SHIFO", - "decimals": 9, - "name": "Shibafomi", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x61d9f522b332d1f2ab25d5803371e5eac6cf8808.png", - "aggregators": ["PancakeCoinGecko", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x8f4e64d92adc4681093aeacb3d60d862a0536b0f": { - "address": "0x8f4e64d92adc4681093aeacb3d60d862a0536b0f", - "symbol": "SIMBA", - "decimals": 9, - "name": "Simba Coin", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x8f4e64d92adc4681093aeacb3d60d862a0536b0f.png", - "aggregators": ["PancakeCoinGecko", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x91a483538deea8ef583b413166a91e709bd2c8f6": { - "address": "0x91a483538deea8ef583b413166a91e709bd2c8f6", - "symbol": "SIR", - "decimals": 18, - "name": "Poo Chi", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x91a483538deea8ef583b413166a91e709bd2c8f6.png", - "aggregators": ["PancakeCoinGecko", "Rubic", "Rango"], - "occurrences": 3 - }, - "0xf11f3130d64aa7b52876786336c8dc55b3bdf093": { - "address": "0xf11f3130d64aa7b52876786336c8dc55b3bdf093", - "symbol": "SITY", - "decimals": 18, - "name": "Versity", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xf11f3130d64aa7b52876786336c8dc55b3bdf093.png", - "aggregators": ["PancakeCoinGecko", "Rubic", "Sonarwatch"], - "occurrences": 3 - }, - "0x3dbf8babf260be2a6221dc6fb1c4074a44b58562": { - "address": "0x3dbf8babf260be2a6221dc6fb1c4074a44b58562", - "symbol": "SLK", - "decimals": 18, - "name": "SLK", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x3dbf8babf260be2a6221dc6fb1c4074a44b58562.png", - "aggregators": ["PancakeCoinGecko", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x39e8aaaaf4b642f9c4fd57a9bee3f337665678d0": { - "address": "0x39e8aaaaf4b642f9c4fd57a9bee3f337665678d0", - "symbol": "SLT", - "decimals": 18, - "name": "SLT", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x39e8aaaaf4b642f9c4fd57a9bee3f337665678d0.png", - "aggregators": ["PancakeCoinGecko", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x8b5d49d5f9c4569c5cd5dc7a13c5846e84a035f7": { - "address": "0x8b5d49d5f9c4569c5cd5dc7a13c5846e84a035f7", - "symbol": "SQD", - "decimals": 6, - "name": "Squared Token", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x8b5d49d5f9c4569c5cd5dc7a13c5846e84a035f7.png", - "aggregators": ["PancakeCoinGecko", "Rubic", "Rango"], - "occurrences": 3 - }, - "0xa9cb8ecb67fe770fe1f2feb3c2d85117cac0d4fb": { - "address": "0xa9cb8ecb67fe770fe1f2feb3c2d85117cac0d4fb", - "symbol": "SQRB", - "decimals": 18, - "name": "SQRBIT", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xa9cb8ecb67fe770fe1f2feb3c2d85117cac0d4fb.png", - "aggregators": ["PancakeCoinGecko", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x62fac6fc252e40015b19d188529247e2a24f0a4e": { - "address": "0x62fac6fc252e40015b19d188529247e2a24f0a4e", - "symbol": "STAY", - "decimals": 18, - "name": "STAYNEX", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x62fac6fc252e40015b19d188529247e2a24f0a4e.png", - "aggregators": ["PancakeCoinGecko", "Rubic", "Sonarwatch"], - "occurrences": 3 - }, - "0xcba2aeec821b0b119857a9ab39e09b034249681a": { - "address": "0xcba2aeec821b0b119857a9ab39e09b034249681a", - "symbol": "STVLX", - "decimals": 18, - "name": "Staked VLX", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xcba2aeec821b0b119857a9ab39e09b034249681a.png", - "aggregators": ["PancakeCoinGecko", "Rubic", "Rango"], - "occurrences": 3 - }, - "0xbc404429558292ee2d769e57d57d6e74bbd2792d": { - "address": "0xbc404429558292ee2d769e57d57d6e74bbd2792d", - "symbol": "SUSX", - "decimals": 18, - "name": "Savings USX", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xbc404429558292ee2d769e57d57d6e74bbd2792d.png", - "aggregators": ["PancakeCoinGecko", "Rubic", "Sonarwatch"], - "occurrences": 3 - }, - "0x01832e3346fd3a0d38ca589d836bd78d1de7030c": { - "address": "0x01832e3346fd3a0d38ca589d836bd78d1de7030c", - "symbol": "SWPT", - "decimals": 18, - "name": "SwapTracker", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x01832e3346fd3a0d38ca589d836bd78d1de7030c.png", - "aggregators": ["PancakeCoinMarketCap", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x7d23de8d1e71b42b821ea4157ca6b81524729cf3": { - "address": "0x7d23de8d1e71b42b821ea4157ca6b81524729cf3", - "symbol": "SYAI", - "decimals": 18, - "name": "Synth Ai", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x7d23de8d1e71b42b821ea4157ca6b81524729cf3.png", - "aggregators": ["PancakeCoinGecko", "Rubic", "Rango"], - "occurrences": 3 - }, - "0xe9a5c635c51002fa5f377f956a8ce58573d63d91": { - "address": "0xe9a5c635c51002fa5f377f956a8ce58573d63d91", - "symbol": "T99", - "decimals": 18, - "name": "TETHEREUM", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xe9a5c635c51002fa5f377f956a8ce58573d63d91.png", - "aggregators": ["PancakeCoinMarketCap", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x4444a19c8bb86e9bdbc023709a363bbce91af33e": { - "address": "0x4444a19c8bb86e9bdbc023709a363bbce91af33e", - "symbol": "TANK", - "decimals": 18, - "name": "CryptoTanks", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x4444a19c8bb86e9bdbc023709a363bbce91af33e.png", - "aggregators": ["PancakeCoinMarketCap", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x837656c3f5858692ccdce13ba66e09d2685073df": { - "address": "0x837656c3f5858692ccdce13ba66e09d2685073df", - "symbol": "TOX", - "decimals": 18, - "name": "INTOVERSE TOKEN", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x837656c3f5858692ccdce13ba66e09d2685073df.png", - "aggregators": ["PancakeCoinMarketCap", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x01bd7acb6ff3b6dd5aefa05cf085f2104f3fc53f": { - "address": "0x01bd7acb6ff3b6dd5aefa05cf085f2104f3fc53f", - "symbol": "TREAT", - "decimals": 18, - "name": "TreatDAO", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x01bd7acb6ff3b6dd5aefa05cf085f2104f3fc53f.png", - "aggregators": ["PancakeCoinGecko", "Rubic", "Rango"], - "occurrences": 3 - }, - "0xf46306cdc35b845ebcc823be8363249b21f7ee63": { - "address": "0xf46306cdc35b845ebcc823be8363249b21f7ee63", - "symbol": "TRHUB", - "decimals": 18, - "name": "Tradehub", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xf46306cdc35b845ebcc823be8363249b21f7ee63.png", - "aggregators": ["PancakeCoinMarketCap", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x9fd83625b3a70f95557a117dbbfb67a0d3406d3e": { - "address": "0x9fd83625b3a70f95557a117dbbfb67a0d3406d3e", - "symbol": "TRP", - "decimals": 18, - "name": "Truth Pay", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x9fd83625b3a70f95557a117dbbfb67a0d3406d3e.png", - "aggregators": ["PancakeCoinGecko", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x697f883b7e84ea84e0880abc80b6a5bdf7daa5e0": { - "address": "0x697f883b7e84ea84e0880abc80b6a5bdf7daa5e0", - "symbol": "UB", - "decimals": 18, - "name": "UBit Token", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x697f883b7e84ea84e0880abc80b6a5bdf7daa5e0.png", - "aggregators": ["PancakeCoinMarketCap", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x35da89a339de2c78f8fb1c5e1a9a9c6539e2fa8a": { - "address": "0x35da89a339de2c78f8fb1c5e1a9a9c6539e2fa8a", - "symbol": "UNC", - "decimals": 18, - "name": "Utility Net", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x35da89a339de2c78f8fb1c5e1a9a9c6539e2fa8a.png", - "aggregators": ["PancakeCoinGecko", "Rubic", "Rango"], - "occurrences": 3 - }, - "0xdb29192fc2b487bb5185e155752328d4f249743c": { - "address": "0xdb29192fc2b487bb5185e155752328d4f249743c", - "symbol": "UNFT", - "decimals": 9, - "name": "Ultra NFT", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xdb29192fc2b487bb5185e155752328d4f249743c.png", - "aggregators": ["PancakeCoinMarketCap", "Rubic", "Rango"], - "occurrences": 3 - }, - "0xde7d1ce109236b12809c45b23d22f30dba0ef424": { - "address": "0xde7d1ce109236b12809c45b23d22f30dba0ef424", - "symbol": "USDS", - "decimals": 18, - "name": "SpiceUSD", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xde7d1ce109236b12809c45b23d22f30dba0ef424.png", - "aggregators": ["PancakeCoinMarketCap", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x04a52f280f7ffc7a08462463903883ccdf6b95a7": { - "address": "0x04a52f280f7ffc7a08462463903883ccdf6b95a7", - "symbol": "VISA", - "decimals": 18, - "name": "Visa Meme", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x04a52f280f7ffc7a08462463903883ccdf6b95a7.png", - "aggregators": ["PancakeCoinGecko", "Rubic", "Rango"], - "occurrences": 3 - }, - "0xf4dc9bcc6c5f774b2ce6f9118b3a55867ecbf6cb": { - "address": "0xf4dc9bcc6c5f774b2ce6f9118b3a55867ecbf6cb", - "symbol": "WCADAI", - "decimals": 18, - "name": "CADAI", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xf4dc9bcc6c5f774b2ce6f9118b3a55867ecbf6cb.png", - "aggregators": ["PancakeCoinMarketCap", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x5c873454ba84ada3d8a5f7b535a3a21a2eb8d7cb": { - "address": "0x5c873454ba84ada3d8a5f7b535a3a21a2eb8d7cb", - "symbol": "WUSD", - "decimals": 6, - "name": "Worldwide USD", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x5c873454ba84ada3d8a5f7b535a3a21a2eb8d7cb.png", - "aggregators": ["PancakeCoinMarketCap", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x4ae1cd329e3aa0f70164424d2e5688723a6f9b71": { - "address": "0x4ae1cd329e3aa0f70164424d2e5688723a6f9b71", - "symbol": "WXFI", - "decimals": 18, - "name": "WrappedXFI", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x4ae1cd329e3aa0f70164424d2e5688723a6f9b71.png", - "aggregators": ["PancakeCoinGecko", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x28b28dda85c60e3397933ea50ed3522bb25487ab": { - "address": "0x28b28dda85c60e3397933ea50ed3522bb25487ab", - "symbol": "X-FILE", - "decimals": 18, - "name": "XFILE", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x28b28dda85c60e3397933ea50ed3522bb25487ab.png", - "aggregators": ["PancakeCoinGecko", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x71eeba415a523f5c952cc2f06361d5443545ad28": { - "address": "0x71eeba415a523f5c952cc2f06361d5443545ad28", - "symbol": "XDAO", - "decimals": 18, - "name": "XDAO", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x71eeba415a523f5c952cc2f06361d5443545ad28.png", - "aggregators": ["PancakeCoinMarketCap", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x529a1468a91fa4ee0d65ee2b4b66fe4f6a55154f": { - "address": "0x529a1468a91fa4ee0d65ee2b4b66fe4f6a55154f", - "symbol": "XERT", - "decimals": 18, - "name": "Xertinet Token", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x529a1468a91fa4ee0d65ee2b4b66fe4f6a55154f.png", - "aggregators": ["PancakeCoinGecko", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x3a0604f9a340c0485303b58b489e23d614197ffb": { - "address": "0x3a0604f9a340c0485303b58b489e23d614197ffb", - "symbol": "XG", - "decimals": 18, - "name": "X-GAME", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x3a0604f9a340c0485303b58b489e23d614197ffb.png", - "aggregators": ["PancakeCoinGecko", "Rubic", "Sonarwatch"], - "occurrences": 3 - }, - "0xb8c3e8ff71513afc8cfb2dddc5a994a501db1916": { - "address": "0xb8c3e8ff71513afc8cfb2dddc5a994a501db1916", - "symbol": "YON", - "decimals": 18, - "name": "YES||NO", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xb8c3e8ff71513afc8cfb2dddc5a994a501db1916.png", - "aggregators": ["PancakeCoinGecko", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x382ec3f9f2e79b03abf0127f3aa985b148cef6d7": { - "address": "0x382ec3f9f2e79b03abf0127f3aa985b148cef6d7", - "symbol": "ZENF", - "decimals": 18, - "name": "Zenland", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x382ec3f9f2e79b03abf0127f3aa985b148cef6d7.png", - "aggregators": ["PancakeCoinMarketCap", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x40c9393d4e7153199fb28615a2a0a7039ae1df15": { - "address": "0x40c9393d4e7153199fb28615a2a0a7039ae1df15", - "symbol": "$CASH", - "decimals": 18, - "name": "Print Cash - BNB", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x40c9393d4e7153199fb28615a2a0a7039ae1df15.png", - "aggregators": ["PancakeCoinMarketCap", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x9cae753b661142ae766374cefa5dc800d80446ac": { - "address": "0x9cae753b661142ae766374cefa5dc800d80446ac", - "symbol": "HAVEN", - "decimals": 9, - "name": "Haven token", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x9cae753b661142ae766374cefa5dc800d80446ac.png", - "aggregators": ["PancakeCoinMarketCap", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x9767203e89dcd34851240b3919d4900d3e5069f1": { - "address": "0x9767203e89dcd34851240b3919d4900d3e5069f1", - "symbol": "A4", - "decimals": 6, - "name": "A4 Finance", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x9767203e89dcd34851240b3919d4900d3e5069f1.png", - "aggregators": ["PancakeCoinMarketCap", "Rubic", "Rango"], - "occurrences": 3 - }, - "0xbb1aa6e59e5163d8722a122cd66eba614b59df0d": { - "address": "0xbb1aa6e59e5163d8722a122cd66eba614b59df0d", - "symbol": "ABNBB", - "decimals": 18, - "name": "Ankr BNB Reward Earning Bond", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xbb1aa6e59e5163d8722a122cd66eba614b59df0d.png", - "aggregators": ["PancakeCoinMarketCap", "Socket", "Rubic"], - "occurrences": 3 - }, - "0x2cace984dab08bd192a7fd044276060cb955dd9c": { - "address": "0x2cace984dab08bd192a7fd044276060cb955dd9c", - "symbol": "ACCEL", - "decimals": 18, - "name": "ACCEL", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x2cace984dab08bd192a7fd044276060cb955dd9c.png", - "aggregators": ["PancakeCoinMarketCap", "Socket", "Rubic"], - "occurrences": 3 - }, - "0xd436f4f4f309f3eec38b33071ccc7115630a1f1c": { - "address": "0xd436f4f4f309f3eec38b33071ccc7115630a1f1c", - "symbol": "ACCG", - "decimals": 18, - "name": "Australian Crypto Coin Green", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xd436f4f4f309f3eec38b33071ccc7115630a1f1c.png", - "aggregators": ["PancakeCoinMarketCap", "Rubic", "Sonarwatch"], - "occurrences": 3 - }, - "0x706d16f0d6930867f3acca5f791f85c633d0f086": { - "address": "0x706d16f0d6930867f3acca5f791f85c633d0f086", - "symbol": "AGON", - "decimals": 9, - "name": "Arabian Dragon", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x706d16f0d6930867f3acca5f791f85c633d0f086.png", - "aggregators": ["PancakeCoinMarketCap", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x1496fb27d8cf1887d21cac161987821859ca56ba": { - "address": "0x1496fb27d8cf1887d21cac161987821859ca56ba", - "symbol": "AMC", - "decimals": 18, - "name": "AMC FIGHT NIGHTS", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x1496fb27d8cf1887d21cac161987821859ca56ba.png", - "aggregators": ["PancakeCoinMarketCap", "Socket", "Rubic"], - "occurrences": 3 - }, - "0x5224f552f110ec78e6e0468138950ae5f3040942": { - "address": "0x5224f552f110ec78e6e0468138950ae5f3040942", - "symbol": "ANOM", - "decimals": 18, - "name": "Anomus", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x5224f552f110ec78e6e0468138950ae5f3040942.png", - "aggregators": ["PancakeCoinMarketCap", "Rubic", "Rango"], - "occurrences": 3 - }, - "0xed3d88d3321f82e5c25ca9ac6d5b427ec93f567e": { - "address": "0xed3d88d3321f82e5c25ca9ac6d5b427ec93f567e", - "symbol": "APE", - "decimals": 18, - "name": "ApeMove Game Token", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xed3d88d3321f82e5c25ca9ac6d5b427ec93f567e.png", - "aggregators": ["PancakeCoinMarketCap", "Socket", "Rubic"], - "occurrences": 3 - }, - "0x4c2a5a1a4b01d293affaa4739f884d7a905a5a8f": { - "address": "0x4c2a5a1a4b01d293affaa4739f884d7a905a5a8f", - "symbol": "APES", - "decimals": 9, - "name": "ApesToken", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x4c2a5a1a4b01d293affaa4739f884d7a905a5a8f.png", - "aggregators": ["PancakeCoinMarketCap", "Socket", "Rubic"], - "occurrences": 3 - }, - "0x097f8ae21e81d4f248a2e2d18543c6b3cc0d8e59": { - "address": "0x097f8ae21e81d4f248a2e2d18543c6b3cc0d8e59", - "symbol": "APP", - "decimals": 18, - "name": "Sappchat", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x097f8ae21e81d4f248a2e2d18543c6b3cc0d8e59.png", - "aggregators": ["PancakeCoinMarketCap", "Socket", "Rubic"], - "occurrences": 3 - }, - "0xb98b2f39c82d2be83dc12087ad71ab85376285e8": { - "address": "0xb98b2f39c82d2be83dc12087ad71ab85376285e8", - "symbol": "AST", - "decimals": 18, - "name": "Astroon", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xb98b2f39c82d2be83dc12087ad71ab85376285e8.png", - "aggregators": ["PancakeCoinMarketCap", "Socket", "Rubic"], - "occurrences": 3 - }, - "0x83850d97018f665eb746fbb8f18351e977d1b0d6": { - "address": "0x83850d97018f665eb746fbb8f18351e977d1b0d6", - "symbol": "ATLAS", - "decimals": 8, - "name": "Star Atlas", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x83850d97018f665eb746fbb8f18351e977d1b0d6.png", - "aggregators": ["PancakeCoinMarketCap", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x1188d953afc697c031851169eef640f23ac8529c": { - "address": "0x1188d953afc697c031851169eef640f23ac8529c", - "symbol": "AUCTION", - "decimals": 18, - "name": "Bounce Token", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x1188d953afc697c031851169eef640f23ac8529c.png", - "aggregators": ["PancakeCoinMarketCap", "Socket", "Rubic"], - "occurrences": 3 - }, - "0x7c56c79a454cbfaf63badb39f82555109a2a80bf": { - "address": "0x7c56c79a454cbfaf63badb39f82555109a2a80bf", - "symbol": "AXLE", - "decimals": 9, - "name": "Axle Games", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x7c56c79a454cbfaf63badb39f82555109a2a80bf.png", - "aggregators": ["PancakeCoinMarketCap", "Rubic", "Rango"], - "occurrences": 3 - }, - "0xd7935bf3a576e997021789f895f0e898fc1aadd6": { - "address": "0xd7935bf3a576e997021789f895f0e898fc1aadd6", - "symbol": "BABYDRAGON", - "decimals": 9, - "name": "Baby Dragon", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xd7935bf3a576e997021789f895f0e898fc1aadd6.png", - "aggregators": ["PancakeCoinMarketCap", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x4a8049c015ae1c6665fc9e49f053458ae3a102d0": { - "address": "0x4a8049c015ae1c6665fc9e49f053458ae3a102d0", - "symbol": "BABYRWA", - "decimals": 9, - "name": "BabyRWA", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x4a8049c015ae1c6665fc9e49f053458ae3a102d0.png", - "aggregators": ["PancakeCoinMarketCap", "Rubic", "Rango"], - "occurrences": 3 - }, - "0xc134fb0200faa2f214b779bcfeafc44519f3f353": { - "address": "0xc134fb0200faa2f214b779bcfeafc44519f3f353", - "symbol": "BAI", - "decimals": 18, - "name": "BEAR AI", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xc134fb0200faa2f214b779bcfeafc44519f3f353.png", - "aggregators": ["PancakeCoinMarketCap", "Socket", "Rubic"], - "occurrences": 3 - }, - "0x084deea43349a1ff65c84750cdd624769e680a4f": { - "address": "0x084deea43349a1ff65c84750cdd624769e680a4f", - "symbol": "BANANA", - "decimals": 9, - "name": "BananaCoin", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x084deea43349a1ff65c84750cdd624769e680a4f.png", - "aggregators": ["PancakeCoinMarketCap", "Socket", "Rubic"], - "occurrences": 3 - }, - "0x26837b64f1302afb1e364082a9e6a0076bb88888": { - "address": "0x26837b64f1302afb1e364082a9e6a0076bb88888", - "symbol": "BANK", - "decimals": 1, - "name": "Bank", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x26837b64f1302afb1e364082a9e6a0076bb88888.png", - "aggregators": ["PancakeCoinMarketCap", "Socket", "Rubic"], - "occurrences": 3 - }, - "0x1b7cc2e9dfeadc0aa3c283d727c50df84558da59": { - "address": "0x1b7cc2e9dfeadc0aa3c283d727c50df84558da59", - "symbol": "BAO", - "decimals": 18, - "name": "BAO", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x1b7cc2e9dfeadc0aa3c283d727c50df84558da59.png", - "aggregators": ["PancakeCoinMarketCap", "Socket", "Rubic"], - "occurrences": 3 - }, - "0xd08527df0c264c214769d17a1bb5b27db5df2b3e": { - "address": "0xd08527df0c264c214769d17a1bb5b27db5df2b3e", - "symbol": "BCHEC", - "decimals": 9, - "name": "Bitchemical", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xd08527df0c264c214769d17a1bb5b27db5df2b3e.png", - "aggregators": ["PancakeCoinMarketCap", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x78e24521d5782c1158bcf187987fb39576d8b4c7": { - "address": "0x78e24521d5782c1158bcf187987fb39576d8b4c7", - "symbol": "BCX", - "decimals": 18, - "name": "Big Coin", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x78e24521d5782c1158bcf187987fb39576d8b4c7.png", - "aggregators": ["PancakeCoinMarketCap", "Rubic", "Rango"], - "occurrences": 3 - }, - "0xa5438df34698df262d5ed463f10387c998edc24a": { - "address": "0xa5438df34698df262d5ed463f10387c998edc24a", - "symbol": "BFK", - "decimals": 18, - "name": "BFK Warzone", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xa5438df34698df262d5ed463f10387c998edc24a.png", - "aggregators": ["PancakeCoinMarketCap", "Rubic", "Rango"], - "occurrences": 3 - }, - "0xf339e8c294046e6e7ef6ad4f6fa9e202b59b556b": { - "address": "0xf339e8c294046e6e7ef6ad4f6fa9e202b59b556b", - "symbol": "BGS", - "decimals": 18, - "name": "Battle of Guardians", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xf339e8c294046e6e7ef6ad4f6fa9e202b59b556b.png", - "aggregators": ["PancakeCoinMarketCap", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x9a2f5556e9a637e8fbce886d8e3cf8b316a1d8a2": { - "address": "0x9a2f5556e9a637e8fbce886d8e3cf8b316a1d8a2", - "symbol": "BIDR", - "decimals": 18, - "name": "BIDR BEP2", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x9a2f5556e9a637e8fbce886d8e3cf8b316a1d8a2.png", - "aggregators": [ - "PancakeCoinMarketCap", - "Rubic", - "Rango", - "BinanceDex" - ], - "occurrences": 4 - }, - "0x668935b74cd1683c44dc3e5dfa61a6e0b219b913": { - "address": "0x668935b74cd1683c44dc3e5dfa61a6e0b219b913", - "symbol": "BITX", - "decimals": 9, - "name": "BitX Exchange", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x668935b74cd1683c44dc3e5dfa61a6e0b219b913.png", - "aggregators": ["PancakeCoinMarketCap", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x773b532126b9f307665942b0fa4cda0540cedb71": { - "address": "0x773b532126b9f307665942b0fa4cda0540cedb71", - "symbol": "BOOST", - "decimals": 18, - "name": "Booster", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x773b532126b9f307665942b0fa4cda0540cedb71.png", - "aggregators": ["PancakeCoinMarketCap", "Socket", "Rubic"], - "occurrences": 3 - }, - "0xc4daa5a9f2b832ed0f9bc579662883cd53ea9d61": { - "address": "0xc4daa5a9f2b832ed0f9bc579662883cd53ea9d61", - "symbol": "BRICK", - "decimals": 18, - "name": "BrickChain", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xc4daa5a9f2b832ed0f9bc579662883cd53ea9d61.png", - "aggregators": ["PancakeCoinMarketCap", "Socket", "Rubic"], - "occurrences": 3 - }, - "0x0e5366c4b3eb849a711932c027fb0d2d2d834846": { - "address": "0x0e5366c4b3eb849a711932c027fb0d2d2d834846", - "symbol": "BT", - "decimals": 18, - "name": "Bozkurt Token", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x0e5366c4b3eb849a711932c027fb0d2d2d834846.png", - "aggregators": ["PancakeCoinMarketCap", "Socket", "Rubic"], - "occurrences": 3 - }, - "0x5de820707adc87b4581f8e7914a65341e68216db": { - "address": "0x5de820707adc87b4581f8e7914a65341e68216db", - "symbol": "BTCP", - "decimals": 8, - "name": "Bitcoin Pro Wrapped", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x5de820707adc87b4581f8e7914a65341e68216db.png", - "aggregators": ["PancakeCoinMarketCap", "Socket", "Rubic"], - "occurrences": 3 - }, - "0x99cd7207d1cbe59033a01892c06889adae47b0e5": { - "address": "0x99cd7207d1cbe59033a01892c06889adae47b0e5", - "symbol": "BULL", - "decimals": 18, - "name": "Bullshit Inu", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x99cd7207d1cbe59033a01892c06889adae47b0e5.png", - "aggregators": ["PancakeCoinMarketCap", "Socket", "Rubic"], - "occurrences": 3 - }, - "0xdacc0417add48b63cbefb77efbe4a3801aad51ba": { - "address": "0xdacc0417add48b63cbefb77efbe4a3801aad51ba", - "symbol": "BZEN", - "decimals": 9, - "name": "BITZEN", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xdacc0417add48b63cbefb77efbe4a3801aad51ba.png", - "aggregators": ["PancakeCoinMarketCap", "Socket", "Rubic"], - "occurrences": 3 - }, - "0xe82d5e015713ea2bd14b30377350626ec5172a9e": { - "address": "0xe82d5e015713ea2bd14b30377350626ec5172a9e", - "symbol": "CAT", - "decimals": 18, - "name": "NOT", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xe82d5e015713ea2bd14b30377350626ec5172a9e.png", - "aggregators": ["PancakeCoinMarketCap", "Socket", "Rubic"], - "occurrences": 3 - }, - "0x50332bdca94673f33401776365b66cc4e81ac81d": { - "address": "0x50332bdca94673f33401776365b66cc4e81ac81d", - "symbol": "CCAR", - "decimals": 18, - "name": "CCAR", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x50332bdca94673f33401776365b66cc4e81ac81d.png", - "aggregators": ["PancakeCoinMarketCap", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x6dda867f8f0019fe108e3b4c7187c1d0a2d57897": { - "address": "0x6dda867f8f0019fe108e3b4c7187c1d0a2d57897", - "symbol": "CHAIN", - "decimals": 18, - "name": "ChainSwaps", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x6dda867f8f0019fe108e3b4c7187c1d0a2d57897.png", - "aggregators": ["PancakeCoinMarketCap", "Socket", "Rubic"], - "occurrences": 3 - }, - "0x6e1b4ba8f5be7708cd475795fc23924ed078a8d2": { - "address": "0x6e1b4ba8f5be7708cd475795fc23924ed078a8d2", - "symbol": "CHANGE", - "decimals": 9, - "name": "Change Our World", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x6e1b4ba8f5be7708cd475795fc23924ed078a8d2.png", - "aggregators": ["PancakeCoinMarketCap", "Socket", "Rubic"], - "occurrences": 3 - }, - "0x3f670f65b9ce89b82e82121fd68c340ac22c08d6": { - "address": "0x3f670f65b9ce89b82e82121fd68c340ac22c08d6", - "symbol": "CTI", - "decimals": 18, - "name": "ClinTex", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x3f670f65b9ce89b82e82121fd68c340ac22c08d6.png", - "aggregators": ["PancakeCoinMarketCap", "Socket", "Rubic"], - "occurrences": 3 - }, - "0x6a50a1f2ff0c5658815215b498f7ab003a783dc7": { - "address": "0x6a50a1f2ff0c5658815215b498f7ab003a783dc7", - "symbol": "CVT", - "decimals": 18, - "name": "CV TOKEN", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x6a50a1f2ff0c5658815215b498f7ab003a783dc7.png", - "aggregators": ["PancakeCoinMarketCap", "Socket", "Rubic"], - "occurrences": 3 - }, - "0x5fdab5bdbad5277b383b3482d085f4bfef68828c": { - "address": "0x5fdab5bdbad5277b383b3482d085f4bfef68828c", - "symbol": "DFH", - "decimals": 18, - "name": "DefiHorse", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x5fdab5bdbad5277b383b3482d085f4bfef68828c.png", - "aggregators": ["PancakeCoinMarketCap", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x42712df5009c20fee340b245b510c0395896cf6e": { - "address": "0x42712df5009c20fee340b245b510c0395896cf6e", - "symbol": "DFT", - "decimals": 18, - "name": "DFT", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x42712df5009c20fee340b245b510c0395896cf6e.png", - "aggregators": ["PancakeExtended", "Rubic", "Rango"], - "occurrences": 3 - }, - "0xf317932ee2c30fa5d0e14416775977801734812d": { - "address": "0xf317932ee2c30fa5d0e14416775977801734812d", - "symbol": "DINO", - "decimals": 18, - "name": "Dino Token", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xf317932ee2c30fa5d0e14416775977801734812d.png", - "aggregators": ["PancakeCoinMarketCap", "Socket", "Rubic"], - "occurrences": 3 - }, - "0x6f8deb41ad9c9e25b2674a9ed083afc4f529bc11": { - "address": "0x6f8deb41ad9c9e25b2674a9ed083afc4f529bc11", - "symbol": "DOGE", - "decimals": 9, - "name": "MOON DOGE", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x6f8deb41ad9c9e25b2674a9ed083afc4f529bc11.png", - "aggregators": ["PancakeCoinMarketCap", "Socket", "Rubic"], - "occurrences": 3 - }, - "0xda1e806ffc0ee2e541a212183306071c3a375b74": { - "address": "0xda1e806ffc0ee2e541a212183306071c3a375b74", - "symbol": "DOGS", - "decimals": 18, - "name": "HARRIS DOGS", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xda1e806ffc0ee2e541a212183306071c3a375b74.png", - "aggregators": ["PancakeCoinMarketCap", "Socket", "Rubic"], - "occurrences": 3 - }, - "0x844fa82f1e54824655470970f7004dd90546bb28": { - "address": "0x844fa82f1e54824655470970f7004dd90546bb28", - "symbol": "DOP", - "decimals": 18, - "name": "Dopple Token", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x844fa82f1e54824655470970f7004dd90546bb28.png", - "aggregators": ["PancakeCoinMarketCap", "Socket", "Rubic"], - "occurrences": 3 - }, - "0x6db3972c6a5535708e7a4f7ad52f24d178d9a93e": { - "address": "0x6db3972c6a5535708e7a4f7ad52f24d178d9a93e", - "symbol": "DRIVENX", - "decimals": 18, - "name": "DVX", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x6db3972c6a5535708e7a4f7ad52f24d178d9a93e.png", - "aggregators": ["PancakeCoinMarketCap", "Socket", "Rubic"], - "occurrences": 3 - }, - "0xb0df5519f460e96117c12ea667557b161866189c": { - "address": "0xb0df5519f460e96117c12ea667557b161866189c", - "symbol": "DXS", - "decimals": 8, - "name": "DX SPOT", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xb0df5519f460e96117c12ea667557b161866189c.png", - "aggregators": ["PancakeCoinMarketCap", "Socket", "Rubic"], - "occurrences": 3 - }, - "0xc84d8d03aa41ef941721a4d77b24bb44d7c7ac55": { - "address": "0xc84d8d03aa41ef941721a4d77b24bb44d7c7ac55", - "symbol": "ECC", - "decimals": 9, - "name": "Empire Capital Token", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xc84d8d03aa41ef941721a4d77b24bb44d7c7ac55.png", - "aggregators": ["PancakeCoinMarketCap", "Socket", "Rubic"], - "occurrences": 3 - }, - "0x5357e9c3488c7680e710b46b744e706e484b4ad7": { - "address": "0x5357e9c3488c7680e710b46b744e706e484b4ad7", - "symbol": "EL", - "decimals": 18, - "name": "ELYSIA", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x5357e9c3488c7680e710b46b744e706e484b4ad7.png", - "aggregators": ["PancakeCoinMarketCap", "Socket", "Rubic"], - "occurrences": 3 - }, - "0x56d594d76b37be83c54abf8a4747d60ce58d32c2": { - "address": "0x56d594d76b37be83c54abf8a4747d60ce58d32c2", - "symbol": "ELF", - "decimals": 18, - "name": "ELF wallet", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x56d594d76b37be83c54abf8a4747d60ce58d32c2.png", - "aggregators": ["PancakeCoinMarketCap", "Socket", "Rubic"], - "occurrences": 3 - }, - "0x7eefb6aeb8bc2c1ba6be1d4273ec0758a1321272": { - "address": "0x7eefb6aeb8bc2c1ba6be1d4273ec0758a1321272", - "symbol": "ENG", - "decimals": 18, - "name": "Endless Board Game", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x7eefb6aeb8bc2c1ba6be1d4273ec0758a1321272.png", - "aggregators": ["PancakeCoinMarketCap", "Socket", "Rubic"], - "occurrences": 3 - }, - "0xbb38f4b6e289aa900505c92bd9743bd4d3c8d2de": { - "address": "0xbb38f4b6e289aa900505c92bd9743bd4d3c8d2de", - "symbol": "ETHM", - "decimals": 18, - "name": "Ethereum Meta", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xbb38f4b6e289aa900505c92bd9743bd4d3c8d2de.png", - "aggregators": ["PancakeCoinMarketCap", "Socket", "Rubic"], - "occurrences": 3 - }, - "0xe9a97602ea2985634032a6dfe8a391f7124328f1": { - "address": "0xe9a97602ea2985634032a6dfe8a391f7124328f1", - "symbol": "EYE", - "decimals": 18, - "name": "EYE Network ", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xe9a97602ea2985634032a6dfe8a391f7124328f1.png", - "aggregators": ["PancakeCoinMarketCap", "Socket", "Rubic"], - "occurrences": 3 - }, - "0xa5496935a247fa81b1462e553ad139d2fd0af795": { - "address": "0xa5496935a247fa81b1462e553ad139d2fd0af795", - "symbol": "FLAG", - "decimals": 18, - "name": "Flag Network", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xa5496935a247fa81b1462e553ad139d2fd0af795.png", - "aggregators": ["PancakeCoinMarketCap", "Socket", "Rubic"], - "occurrences": 3 - }, - "0xe02b264915474eb711832bfb8fb6a765b2d36e68": { - "address": "0xe02b264915474eb711832bfb8fb6a765b2d36e68", - "symbol": "FLOKI", - "decimals": 9, - "name": "SUPER FLOKI", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xe02b264915474eb711832bfb8fb6a765b2d36e68.png", - "aggregators": ["PancakeCoinMarketCap", "Socket", "Rubic"], - "occurrences": 3 - }, - "0x5eef8c4320e2bf8d1e6231a31500fd7a87d02985": { - "address": "0x5eef8c4320e2bf8d1e6231a31500fd7a87d02985", - "symbol": "FOMO", - "decimals": 18, - "name": "FOMO", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x5eef8c4320e2bf8d1e6231a31500fd7a87d02985.png", - "aggregators": ["PancakeCoinMarketCap", "Socket", "Rubic"], - "occurrences": 3 - }, - "0x02df2d8120966a143caaf760cc3ae1d12f9862a7": { - "address": "0x02df2d8120966a143caaf760cc3ae1d12f9862a7", - "symbol": "FOX", - "decimals": 18, - "name": "FOX TOKEN", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x02df2d8120966a143caaf760cc3ae1d12f9862a7.png", - "aggregators": ["PancakeCoinMarketCap", "Socket", "Rubic"], - "occurrences": 3 - }, - "0x63f712b7ec2b9f7146b54a79133900f9458eec6a": { - "address": "0x63f712b7ec2b9f7146b54a79133900f9458eec6a", - "symbol": "FTR", - "decimals": 18, - "name": "FutureToken", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x63f712b7ec2b9f7146b54a79133900f9458eec6a.png", - "aggregators": ["PancakeCoinMarketCap", "Socket", "Rubic"], - "occurrences": 3 - }, - "0xf209ce1960fb7e750ff30ba7794ea11c6acdc1f3": { - "address": "0xf209ce1960fb7e750ff30ba7794ea11c6acdc1f3", - "symbol": "GFN", - "decimals": 18, - "name": "Graphene", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xf209ce1960fb7e750ff30ba7794ea11c6acdc1f3.png", - "aggregators": ["PancakeCoinMarketCap", "Socket", "Rubic"], - "occurrences": 3 - }, - "0xd523f5097fe10cb8760f7011796a6edf7a268061": { - "address": "0xd523f5097fe10cb8760f7011796a6edf7a268061", - "symbol": "GM", - "decimals": 18, - "name": "GM Holding", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xd523f5097fe10cb8760f7011796a6edf7a268061.png", - "aggregators": ["PancakeCoinMarketCap", "Socket", "Rubic"], - "occurrences": 3 - }, - "0xf0c99b0288508d004f4abeca34d830ce7682977c": { - "address": "0xf0c99b0288508d004f4abeca34d830ce7682977c", - "symbol": "GME", - "decimals": 18, - "name": "GameStop Coin", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xf0c99b0288508d004f4abeca34d830ce7682977c.png", - "aggregators": ["PancakeCoinMarketCap", "Socket", "Rubic"], - "occurrences": 3 - }, - "0x93d8d25e3c9a847a5da79f79ecac89461feca846": { - "address": "0x93d8d25e3c9a847a5da79f79ecac89461feca846", - "symbol": "GMI", - "decimals": 18, - "name": "GMI", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x93d8d25e3c9a847a5da79f79ecac89461feca846.png", - "aggregators": ["PancakeExtended", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x7c67dccb04b67d4666fd97b2a00bb6d9b8d82e3f": { - "address": "0x7c67dccb04b67d4666fd97b2a00bb6d9b8d82e3f", - "symbol": "GOAT", - "decimals": 18, - "name": "Goatcoin", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x7c67dccb04b67d4666fd97b2a00bb6d9b8d82e3f.png", - "aggregators": ["PancakeCoinMarketCap", "Socket", "Rubic"], - "occurrences": 3 - }, - "0xc6759a4fc56b3ce9734035a56b36e8637c45b77e": { - "address": "0xc6759a4fc56b3ce9734035a56b36e8637c45b77e", - "symbol": "GRIMACE", - "decimals": 18, - "name": "GrimaceCoin", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xc6759a4fc56b3ce9734035a56b36e8637c45b77e.png", - "aggregators": ["PancakeCoinMarketCap", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x87ffc48c9f89fc5dfa05836e083406d684fd6331": { - "address": "0x87ffc48c9f89fc5dfa05836e083406d684fd6331", - "symbol": "HACHIKO", - "decimals": 9, - "name": "Hachiko", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x87ffc48c9f89fc5dfa05836e083406d684fd6331.png", - "aggregators": ["PancakeCoinMarketCap", "Socket", "Rubic"], - "occurrences": 3 - }, - "0xf19cfb40b3774df6eed83169ad5ab0aaf6865f25": { - "address": "0xf19cfb40b3774df6eed83169ad5ab0aaf6865f25", - "symbol": "HOOP", - "decimals": 18, - "name": "Chibi Dinos", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xf19cfb40b3774df6eed83169ad5ab0aaf6865f25.png", - "aggregators": ["PancakeExtended", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x984811e6f2695192add6f88615df637bf52a5cae": { - "address": "0x984811e6f2695192add6f88615df637bf52a5cae", - "symbol": "HOP", - "decimals": 9, - "name": "HOPPY", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x984811e6f2695192add6f88615df637bf52a5cae.png", - "aggregators": ["PancakeCoinMarketCap", "Socket", "Rubic"], - "occurrences": 3 - }, - "0x39d4549908e7adcee9b439429294eeb4c65c2c9e": { - "address": "0x39d4549908e7adcee9b439429294eeb4c65c2c9e", - "symbol": "HORD", - "decimals": 18, - "name": "Chainport.io-Peg HORD Token", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x39d4549908e7adcee9b439429294eeb4c65c2c9e.png", - "aggregators": ["PancakeCoinMarketCap", "Socket", "Rubic"], - "occurrences": 3 - }, - "0xb15e296636cd8c447f0d2564ce4d7dfe4a72a910": { - "address": "0xb15e296636cd8c447f0d2564ce4d7dfe4a72a910", - "symbol": "HOT", - "decimals": 18, - "name": "HYPERONE TOKEN", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xb15e296636cd8c447f0d2564ce4d7dfe4a72a910.png", - "aggregators": ["PancakeCoinMarketCap", "Socket", "Rubic"], - "occurrences": 3 - }, - "0xc15e89f2149bcc0cbd5fb204c9e77fe878f1e9b2": { - "address": "0xc15e89f2149bcc0cbd5fb204c9e77fe878f1e9b2", - "symbol": "HUH", - "decimals": 9, - "name": "HUH_Token", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xc15e89f2149bcc0cbd5fb204c9e77fe878f1e9b2.png", - "aggregators": ["PancakeCoinMarketCap", "Socket", "Rubic"], - "occurrences": 3 - }, - "0xdfcf44e9a6d99717fc04addd57fb667286bb7dc0": { - "address": "0xdfcf44e9a6d99717fc04addd57fb667286bb7dc0", - "symbol": "INCOME", - "decimals": 18, - "name": "Income", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xdfcf44e9a6d99717fc04addd57fb667286bb7dc0.png", - "aggregators": ["PancakeCoinMarketCap", "Socket", "Rubic"], - "occurrences": 3 - }, - "0x059ca11ba3099683dc2e46f048063f5799a7f34c": { - "address": "0x059ca11ba3099683dc2e46f048063f5799a7f34c", - "symbol": "IVI", - "decimals": 18, - "name": "IVIRSE", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x059ca11ba3099683dc2e46f048063f5799a7f34c.png", - "aggregators": ["PancakeCoinMarketCap", "LiFi", "Rango"], - "occurrences": 3 - }, - "0xb9eee0069bb54c2aa5762d184455686ec58a431f": { - "address": "0xb9eee0069bb54c2aa5762d184455686ec58a431f", - "symbol": "KDOE", - "decimals": 18, - "name": "Kudoe", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xb9eee0069bb54c2aa5762d184455686ec58a431f.png", - "aggregators": ["PancakeCoinMarketCap", "Socket", "Rubic"], - "occurrences": 3 - }, - "0x46e83fbcc5623172ee61935c96b7276ab92562de": { - "address": "0x46e83fbcc5623172ee61935c96b7276ab92562de", - "symbol": "KNFT", - "decimals": 18, - "name": "KStarNFT", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x46e83fbcc5623172ee61935c96b7276ab92562de.png", - "aggregators": ["PancakeCoinMarketCap", "Rubic", "Sonarwatch"], - "occurrences": 3 - }, - "0x37b53894e7429f794b56f22a32e1695567ee9913": { - "address": "0x37b53894e7429f794b56f22a32e1695567ee9913", - "symbol": "KRS", - "decimals": 18, - "name": "Kingdom Raids", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x37b53894e7429f794b56f22a32e1695567ee9913.png", - "aggregators": ["PancakeExtended", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x86296279c147bd40cbe5b353f83cea9e9cc9b7bb": { - "address": "0x86296279c147bd40cbe5b353f83cea9e9cc9b7bb", - "symbol": "KTY", - "decimals": 9, - "name": "Krypto Kitty", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x86296279c147bd40cbe5b353f83cea9e9cc9b7bb.png", - "aggregators": ["PancakeCoinMarketCap", "Socket", "Rubic"], - "occurrences": 3 - }, - "0xa3499dd7dbbbd93cb0f8303f8a8ace8d02508e73": { - "address": "0xa3499dd7dbbbd93cb0f8303f8a8ace8d02508e73", - "symbol": "LACE", - "decimals": 18, - "name": "LACE", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xa3499dd7dbbbd93cb0f8303f8a8ace8d02508e73.png", - "aggregators": ["PancakeCoinMarketCap", "Rubic", "Rango"], - "occurrences": 3 - }, - "0xe03e306466965d242db8c562ba2ce230472ca9b3": { - "address": "0xe03e306466965d242db8c562ba2ce230472ca9b3", - "symbol": "LADYS", - "decimals": 18, - "name": "Milady Coin", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xe03e306466965d242db8c562ba2ce230472ca9b3.png", - "aggregators": ["PancakeCoinMarketCap", "Socket", "Rubic"], - "occurrences": 3 - }, - "0xd38b305cac06990c0887032a02c03d6839f770a8": { - "address": "0xd38b305cac06990c0887032a02c03d6839f770a8", - "symbol": "LGCT", - "decimals": 18, - "name": "Legacy Token", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xd38b305cac06990c0887032a02c03d6839f770a8.png", - "aggregators": ["PancakeCoinMarketCap", "Rubic", "Rango"], - "occurrences": 3 - }, - "0xcfb24d3c3767364391340a2e6d99c64f1cbd7a3d": { - "address": "0xcfb24d3c3767364391340a2e6d99c64f1cbd7a3d", - "symbol": "LPOOL", - "decimals": 18, - "name": "Launchpool token (Multichain)", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xcfb24d3c3767364391340a2e6d99c64f1cbd7a3d.png", - "aggregators": ["PancakeCoinMarketCap", "Socket", "Rubic"], - "occurrences": 3 - }, - "0x71e72dde4152d274afd1f2db43531ed9e44a78fa": { - "address": "0x71e72dde4152d274afd1f2db43531ed9e44a78fa", - "symbol": "LTT", - "decimals": 9, - "name": "LordToken", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x71e72dde4152d274afd1f2db43531ed9e44a78fa.png", - "aggregators": ["PancakeCoinMarketCap", "Socket", "Rubic"], - "occurrences": 3 - }, - "0x8479b19c5a3c43e024b2543582af0fc2fef2e6a8": { - "address": "0x8479b19c5a3c43e024b2543582af0fc2fef2e6a8", - "symbol": "MAGA", - "decimals": 9, - "name": "TRUMP", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x8479b19c5a3c43e024b2543582af0fc2fef2e6a8.png", - "aggregators": ["PancakeCoinMarketCap", "Socket", "Rubic"], - "occurrences": 3 - }, - "0x38a62b2030068e7b7a5268df7ab7a48bc6e396b4": { - "address": "0x38a62b2030068e7b7a5268df7ab7a48bc6e396b4", - "symbol": "MELO", - "decimals": 18, - "name": "Melo Token", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x38a62b2030068e7b7a5268df7ab7a48bc6e396b4.png", - "aggregators": ["PancakeCoinMarketCap", "Socket", "Rubic"], - "occurrences": 3 - }, - "0xd399359683c1cd5267f611261ede08f22ce9729f": { - "address": "0xd399359683c1cd5267f611261ede08f22ce9729f", - "symbol": "MFTU", - "decimals": 18, - "name": "Mainstream For The Underground", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xd399359683c1cd5267f611261ede08f22ce9729f.png", - "aggregators": ["PancakeCoinMarketCap", "Socket", "Rubic"], - "occurrences": 3 - }, - "0xd05b1cff02b5955c8d1ceced2fe12ed12804974d": { - "address": "0xd05b1cff02b5955c8d1ceced2fe12ed12804974d", - "symbol": "MICRO", - "decimals": 18, - "name": "Micromines", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xd05b1cff02b5955c8d1ceced2fe12ed12804974d.png", - "aggregators": ["PancakeCoinMarketCap", "Socket", "Rubic"], - "occurrences": 3 - }, - "0x2b15bc62d1fb46ade4763a3c5ea0917460bb25f1": { - "address": "0x2b15bc62d1fb46ade4763a3c5ea0917460bb25f1", - "symbol": "MORPH", - "decimals": 18, - "name": "Morphose Token", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x2b15bc62d1fb46ade4763a3c5ea0917460bb25f1.png", - "aggregators": ["PancakeCoinMarketCap", "Socket", "Rubic"], - "occurrences": 3 - }, - "0xacabd3f9b8f76ffd2724604185fa5afa5df25ac6": { - "address": "0xacabd3f9b8f76ffd2724604185fa5afa5df25ac6", - "symbol": "MSS", - "decimals": 18, - "name": "Monster Slayer Share", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xacabd3f9b8f76ffd2724604185fa5afa5df25ac6.png", - "aggregators": ["PancakeCoinMarketCap", "Socket", "Rubic"], - "occurrences": 3 - }, - "0xcd657182a749554fc8487757612f02226355269d": { - "address": "0xcd657182a749554fc8487757612f02226355269d", - "symbol": "MUSK", - "decimals": 18, - "name": "Musk Token", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xcd657182a749554fc8487757612f02226355269d.png", - "aggregators": ["PancakeCoinMarketCap", "Socket", "Rubic"], - "occurrences": 3 - }, - "0xaf7bfa6240745fd41d1ed4b5fade9dcaf369ba6c": { - "address": "0xaf7bfa6240745fd41d1ed4b5fade9dcaf369ba6c", - "symbol": "MVERSE", - "decimals": 18, - "name": "MaticVerse", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xaf7bfa6240745fd41d1ed4b5fade9dcaf369ba6c.png", - "aggregators": ["PancakeCoinMarketCap", "Socket", "Rubic"], - "occurrences": 3 - }, - "0x9f1f27179fb25f11e1f8113be830cff5926c4605": { - "address": "0x9f1f27179fb25f11e1f8113be830cff5926c4605", - "symbol": "NCT", - "decimals": 9, - "name": "New Cat", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x9f1f27179fb25f11e1f8113be830cff5926c4605.png", - "aggregators": ["PancakeCoinMarketCap", "Socket", "Rubic"], - "occurrences": 3 - }, - "0xe38950f71e2d2fc4ca9dc9c3625d82560b0a5d8f": { - "address": "0xe38950f71e2d2fc4ca9dc9c3625d82560b0a5d8f", - "symbol": "NELO", - "decimals": 9, - "name": "NELO Metaverse", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xe38950f71e2d2fc4ca9dc9c3625d82560b0a5d8f.png", - "aggregators": ["PancakeCoinMarketCap", "Socket", "Rubic"], - "occurrences": 3 - }, - "0xfaab744db9def8e13194600ed02bc5d5bed3b85c": { - "address": "0xfaab744db9def8e13194600ed02bc5d5bed3b85c", - "symbol": "NFT", - "decimals": 16, - "name": "Neftipedia", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xfaab744db9def8e13194600ed02bc5d5bed3b85c.png", - "aggregators": ["PancakeCoinMarketCap", "Socket", "Rubic"], - "occurrences": 3 - }, - "0xe5904e9816b309d3ed4d061c922f5aa8f3b24c92": { - "address": "0xe5904e9816b309d3ed4d061c922f5aa8f3b24c92", - "symbol": "NFTL", - "decimals": 18, - "name": "NFTL Token", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xe5904e9816b309d3ed4d061c922f5aa8f3b24c92.png", - "aggregators": ["PancakeCoinMarketCap", "Socket", "Rubic"], - "occurrences": 3 - }, - "0x606fb7969fc1b5cad58e64b12cf827fb65ee4875": { - "address": "0x606fb7969fc1b5cad58e64b12cf827fb65ee4875", - "symbol": "OKSE", - "decimals": 18, - "name": "Okse", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x606fb7969fc1b5cad58e64b12cf827fb65ee4875.png", - "aggregators": ["PancakeCoinMarketCap", "LiFi", "Rubic"], - "occurrences": 3 - }, - "0x18b426813731c144108c6d7faf5ede71a258fd9a": { - "address": "0x18b426813731c144108c6d7faf5ede71a258fd9a", - "symbol": "OLYMPUS", - "decimals": 9, - "name": "OLYMPUS", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x18b426813731c144108c6d7faf5ede71a258fd9a.png", - "aggregators": ["PancakeCoinMarketCap", "Socket", "Rubic"], - "occurrences": 3 - }, - "0x91f006ee672f8f39c6e63ca75b1ca14067b3c366": { - "address": "0x91f006ee672f8f39c6e63ca75b1ca14067b3c366", - "symbol": "ORE", - "decimals": 8, - "name": "OUTRACE", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x91f006ee672f8f39c6e63ca75b1ca14067b3c366.png", - "aggregators": ["PancakeCoinMarketCap", "Socket", "Rubic"], - "occurrences": 3 - }, - "0x5559a5d740c09fdfd9a9929c45297a6f633bbf12": { - "address": "0x5559a5d740c09fdfd9a9929c45297a6f633bbf12", - "symbol": "OT", - "decimals": 9, - "name": "Olaf Token", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x5559a5d740c09fdfd9a9929c45297a6f633bbf12.png", - "aggregators": ["PancakeCoinMarketCap", "Socket", "Rubic"], - "occurrences": 3 - }, - "0x7665cb7b0d01df1c9f9b9cc66019f00abd6959ba": { - "address": "0x7665cb7b0d01df1c9f9b9cc66019f00abd6959ba", - "symbol": "OWN", - "decimals": 18, - "name": "Ownly", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x7665cb7b0d01df1c9f9b9cc66019f00abd6959ba.png", - "aggregators": ["PancakeCoinMarketCap", "Socket", "Rubic"], - "occurrences": 3 - }, - "0x916792fd41855914ba4b71285c8a05b866f0618b": { - "address": "0x916792fd41855914ba4b71285c8a05b866f0618b", - "symbol": "PAYB", - "decimals": 18, - "name": "Paybswap", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x916792fd41855914ba4b71285c8a05b866f0618b.png", - "aggregators": ["PancakeCoinMarketCap", "Socket", "Rubic"], - "occurrences": 3 - }, - "0xb46584e0efde3092e04010a13f2eae62adb3b9f0": { - "address": "0xb46584e0efde3092e04010a13f2eae62adb3b9f0", - "symbol": "PEPE", - "decimals": 18, - "name": "Pepe Coin", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xb46584e0efde3092e04010a13f2eae62adb3b9f0.png", - "aggregators": ["PancakeCoinMarketCap", "Socket", "Rubic"], - "occurrences": 3 - }, - "0x43b9ce0394d9affc97501359646a410a48c21a11": { - "address": "0x43b9ce0394d9affc97501359646a410a48c21a11", - "symbol": "PEPE", - "decimals": 9, - "name": "Pepecoin", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x43b9ce0394d9affc97501359646a410a48c21a11.png", - "aggregators": ["PancakeCoinMarketCap", "Socket", "Rubic"], - "occurrences": 3 - }, - "0xdce796806394e015b7bcf71d1558181a194fc62a": { - "address": "0xdce796806394e015b7bcf71d1558181a194fc62a", - "symbol": "PEPE", - "decimals": 18, - "name": "MOG PEPE", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xdce796806394e015b7bcf71d1558181a194fc62a.png", - "aggregators": ["PancakeCoinMarketCap", "Socket", "Rubic"], - "occurrences": 3 - }, - "0xb2388648cb6d7bcdfb3a623b424660448d31c1b6": { - "address": "0xb2388648cb6d7bcdfb3a623b424660448d31c1b6", - "symbol": "PEPE", - "decimals": 18, - "name": "SEXY PEPE", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xb2388648cb6d7bcdfb3a623b424660448d31c1b6.png", - "aggregators": ["PancakeCoinMarketCap", "Socket", "Rubic"], - "occurrences": 3 - }, - "0x45b19b46be1b9006f388873e2c460fccc7d00f15": { - "address": "0x45b19b46be1b9006f388873e2c460fccc7d00f15", - "symbol": "PIB", - "decimals": 18, - "name": "PiBridge Token", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x45b19b46be1b9006f388873e2c460fccc7d00f15.png", - "aggregators": ["PancakeCoinMarketCap", "Socket", "Rubic"], - "occurrences": 3 - }, - "0xf03e02acbc5eb22de027ea4f59235966f5810d4f": { - "address": "0xf03e02acbc5eb22de027ea4f59235966f5810d4f", - "symbol": "PINU", - "decimals": 18, - "name": "piinu", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xf03e02acbc5eb22de027ea4f59235966f5810d4f.png", - "aggregators": ["PancakeCoinMarketCap", "Socket", "Rubic"], - "occurrences": 3 - }, - "0x7ef000cf62623c7e8d574a80f14484a796232ecd": { - "address": "0x7ef000cf62623c7e8d574a80f14484a796232ecd", - "symbol": "PIPI", - "decimals": 18, - "name": "PIPI", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x7ef000cf62623c7e8d574a80f14484a796232ecd.png", - "aggregators": ["PancakeCoinMarketCap", "Socket", "Rubic"], - "occurrences": 3 - }, - "0x3e63e9c8f2297e3c027f8444b4591e2583d8780b": { - "address": "0x3e63e9c8f2297e3c027f8444b4591e2583d8780b", - "symbol": "PLOT", - "decimals": 18, - "name": "PLOT", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x3e63e9c8f2297e3c027f8444b4591e2583d8780b.png", - "aggregators": ["PancakeCoinMarketCap", "Socket", "Rubic"], - "occurrences": 3 - }, - "0x8ce7fc007fc5d1dea63fed829e11eeddd6406dff": { - "address": "0x8ce7fc007fc5d1dea63fed829e11eeddd6406dff", - "symbol": "POWER", - "decimals": 18, - "name": "Power", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x8ce7fc007fc5d1dea63fed829e11eeddd6406dff.png", - "aggregators": ["PancakeCoinMarketCap", "Socket", "Rubic"], - "occurrences": 3 - }, - "0xfd0fd32a20532ad690731c2685d77c351015ebba": { - "address": "0xfd0fd32a20532ad690731c2685d77c351015ebba", - "symbol": "QUA", - "decimals": 18, - "name": "Quarashi", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xfd0fd32a20532ad690731c2685d77c351015ebba.png", - "aggregators": ["PancakeCoinMarketCap", "Socket", "Rubic"], - "occurrences": 3 - }, - "0xcf909ef9a61dc5b05d46b5490a9f00d51c40bb28": { - "address": "0xcf909ef9a61dc5b05d46b5490a9f00d51c40bb28", - "symbol": "RICE", - "decimals": 18, - "name": "RICE", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xcf909ef9a61dc5b05d46b5490a9f00d51c40bb28.png", - "aggregators": ["PancakeCoinMarketCap", "Rubic", "Rango"], - "occurrences": 3 - }, - "0xe561ebd0d7f9b2bd81da6e7da655030dcb0a926b": { - "address": "0xe561ebd0d7f9b2bd81da6e7da655030dcb0a926b", - "symbol": "ROAR", - "decimals": 18, - "name": "AlphaDEX", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xe561ebd0d7f9b2bd81da6e7da655030dcb0a926b.png", - "aggregators": ["PancakeCoinMarketCap", "Socket", "Rubic"], - "occurrences": 3 - }, - "0x57bb0f40479d7dd0caa67f2a579273a8e9c038ee": { - "address": "0x57bb0f40479d7dd0caa67f2a579273a8e9c038ee", - "symbol": "RUGBUST", - "decimals": 18, - "name": "Rug Busters", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x57bb0f40479d7dd0caa67f2a579273a8e9c038ee.png", - "aggregators": ["PancakeCoinMarketCap", "Socket", "Rubic"], - "occurrences": 3 - }, - "0x7d89c67d3c4e72e8c5c64be201dc225f99d16aca": { - "address": "0x7d89c67d3c4e72e8c5c64be201dc225f99d16aca", - "symbol": "RVZ", - "decimals": 9, - "name": "Revoluzion", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x7d89c67d3c4e72e8c5c64be201dc225f99d16aca.png", - "aggregators": ["PancakeCoinMarketCap", "Socket", "Rubic"], - "occurrences": 3 - }, - "0x04f73a09e2eb410205be256054794fb452f0d245": { - "address": "0x04f73a09e2eb410205be256054794fb452f0d245", - "symbol": "SALE", - "decimals": 18, - "name": "DxSale.Network", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x04f73a09e2eb410205be256054794fb452f0d245.png", - "aggregators": ["PancakeCoinMarketCap", "Socket", "Rubic"], - "occurrences": 3 - }, - "0x40b34cc972908060d6d527276e17c105d224559d": { - "address": "0x40b34cc972908060d6d527276e17c105d224559d", - "symbol": "SEED", - "decimals": 18, - "name": "TreeDefi Token", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x40b34cc972908060d6d527276e17c105d224559d.png", - "aggregators": ["PancakeCoinMarketCap", "Socket", "Rubic"], - "occurrences": 3 - }, - "0x070a9867ea49ce7afc4505817204860e823489fe": { - "address": "0x070a9867ea49ce7afc4505817204860e823489fe", - "symbol": "SIX", - "decimals": 18, - "name": "SIX Token", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x070a9867ea49ce7afc4505817204860e823489fe.png", - "aggregators": ["PancakeCoinMarketCap", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x1cd137eb5bdf426aae58c3ed80383f74e42d9bf2": { - "address": "0x1cd137eb5bdf426aae58c3ed80383f74e42d9bf2", - "symbol": "SMILE", - "decimals": 18, - "name": "Smile Token", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x1cd137eb5bdf426aae58c3ed80383f74e42d9bf2.png", - "aggregators": ["PancakeCoinMarketCap", "Socket", "Rubic"], - "occurrences": 3 - }, - "0x8bac6b4af65c8c1967a0fbc27cd37fd6059daa00": { - "address": "0x8bac6b4af65c8c1967a0fbc27cd37fd6059daa00", - "symbol": "SPH", - "decimals": 18, - "name": "Sphynx Network", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x8bac6b4af65c8c1967a0fbc27cd37fd6059daa00.png", - "aggregators": ["PancakeCoinMarketCap", "Socket", "Rubic"], - "occurrences": 3 - }, - "0x1c3c3941acb8a9be35e50f086fae6a481f7d9df7": { - "address": "0x1c3c3941acb8a9be35e50f086fae6a481f7d9df7", - "symbol": "SQUID", - "decimals": 9, - "name": "SQUID", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x1c3c3941acb8a9be35e50f086fae6a481f7d9df7.png", - "aggregators": ["PancakeCoinMarketCap", "Socket", "Rubic"], - "occurrences": 3 - }, - "0x937dcca207128af363470a711d0c2b1cf76c49b1": { - "address": "0x937dcca207128af363470a711d0c2b1cf76c49b1", - "symbol": "SU", - "decimals": 18, - "name": "SKYUP", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x937dcca207128af363470a711d0c2b1cf76c49b1.png", - "aggregators": ["PancakeCoinMarketCap", "Socket", "Rubic"], - "occurrences": 3 - }, - "0xe56a473043eaab7947c0a2408cea623074500ee3": { - "address": "0xe56a473043eaab7947c0a2408cea623074500ee3", - "symbol": "SWAP", - "decimals": 18, - "name": "SafeSwap Token", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xe56a473043eaab7947c0a2408cea623074500ee3.png", - "aggregators": ["PancakeCoinMarketCap", "Socket", "Rango"], - "occurrences": 3 - }, - "0xe0f7c8682f865b417aeb80bf237025b4cb5ebaef": { - "address": "0xe0f7c8682f865b417aeb80bf237025b4cb5ebaef", - "symbol": "SWAP", - "decimals": 18, - "name": "SatoshiSwap", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xe0f7c8682f865b417aeb80bf237025b4cb5ebaef.png", - "aggregators": ["PancakeCoinMarketCap", "Socket", "Rubic"], - "occurrences": 3 - }, - "0xf0443834b7b21104b7102edbe8f9ec06204cd395": { - "address": "0xf0443834b7b21104b7102edbe8f9ec06204cd395", - "symbol": "TAO", - "decimals": 9, - "name": "Friction Finance", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xf0443834b7b21104b7102edbe8f9ec06204cd395.png", - "aggregators": ["PancakeCoinMarketCap", "Socket", "Rubic"], - "occurrences": 3 - }, - "0xb7fda7374362f66a50665b991aa7ee77b2c6abbe": { - "address": "0xb7fda7374362f66a50665b991aa7ee77b2c6abbe", - "symbol": "TCUB", - "decimals": 9, - "name": "TCUB www.tiger-king.org", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xb7fda7374362f66a50665b991aa7ee77b2c6abbe.png", - "aggregators": ["PancakeCoinMarketCap", "Socket", "Rubic"], - "occurrences": 3 - }, - "0x2d69c55baecefc6ec815239da0a985747b50db6e": { - "address": "0x2d69c55baecefc6ec815239da0a985747b50db6e", - "symbol": "TFF", - "decimals": 18, - "name": "Tutti Frutti", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x2d69c55baecefc6ec815239da0a985747b50db6e.png", - "aggregators": ["PancakeCoinMarketCap", "Socket", "Rubic"], - "occurrences": 3 - }, - "0x1792d8636a9c70b89022167ccb89fd836a6ac771": { - "address": "0x1792d8636a9c70b89022167ccb89fd836a6ac771", - "symbol": "TOM", - "decimals": 18, - "name": "TOMCoin", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x1792d8636a9c70b89022167ccb89fd836a6ac771.png", - "aggregators": ["PancakeCoinMarketCap", "Socket", "Rubic"], - "occurrences": 3 - }, - "0xa75ccffdd6bf0cf2f01cdbb627f9845d1ec32c2a": { - "address": "0xa75ccffdd6bf0cf2f01cdbb627f9845d1ec32c2a", - "symbol": "TOTO", - "decimals": 18, - "name": "Gold Toad Token", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xa75ccffdd6bf0cf2f01cdbb627f9845d1ec32c2a.png", - "aggregators": ["PancakeCoinMarketCap", "Socket", "Rubic"], - "occurrences": 3 - }, - "0xde7bf57c393f0da0b79cdb749e363cbae40ca1c3": { - "address": "0xde7bf57c393f0da0b79cdb749e363cbae40ca1c3", - "symbol": "TRUMP", - "decimals": 18, - "name": "MOG TRUMP", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xde7bf57c393f0da0b79cdb749e363cbae40ca1c3.png", - "aggregators": ["PancakeCoinMarketCap", "Socket", "Rubic"], - "occurrences": 3 - }, - "0xccdf812aa7cdee4ff7cb89546d7f1718bb8d46e1": { - "address": "0xccdf812aa7cdee4ff7cb89546d7f1718bb8d46e1", - "symbol": "TRUMP", - "decimals": 18, - "name": "TRUMP AI", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xccdf812aa7cdee4ff7cb89546d7f1718bb8d46e1.png", - "aggregators": ["PancakeCoinMarketCap", "Socket", "Rubic"], - "occurrences": 3 - }, - "0xee89bd9af5e72b19b48cac3e51acde3a09a3ade3": { - "address": "0xee89bd9af5e72b19b48cac3e51acde3a09a3ade3", - "symbol": "TRUSTK", - "decimals": 18, - "name": "TrustKeys Coin", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xee89bd9af5e72b19b48cac3e51acde3a09a3ade3.png", - "aggregators": ["PancakeCoinMarketCap", "LiFi", "Rubic"], - "occurrences": 3 - }, - "0x58d372a8db7696c0c066f25c9eaf2af6f147b726": { - "address": "0x58d372a8db7696c0c066f25c9eaf2af6f147b726", - "symbol": "TSUGA", - "decimals": 18, - "name": "Tsukiverse: Galactic Adventures", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x58d372a8db7696c0c066f25c9eaf2af6f147b726.png", - "aggregators": ["PancakeCoinMarketCap", "Socket", "Rubic"], - "occurrences": 3 - }, - "0x37e7e9129c78d32f547b7d42c6e3db639b76bd4b": { - "address": "0x37e7e9129c78d32f547b7d42c6e3db639b76bd4b", - "symbol": "TWEETY", - "decimals": 9, - "name": "TWEETY", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x37e7e9129c78d32f547b7d42c6e3db639b76bd4b.png", - "aggregators": ["PancakeCoinMarketCap", "Socket", "Rubic"], - "occurrences": 3 - }, - "0xaf83f292fced83032f52ced45ef7dbddb586441a": { - "address": "0xaf83f292fced83032f52ced45ef7dbddb586441a", - "symbol": "TWIN", - "decimals": 18, - "name": "Twinci", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xaf83f292fced83032f52ced45ef7dbddb586441a.png", - "aggregators": ["PancakeCoinMarketCap", "Socket", "Rubic"], - "occurrences": 3 - }, - "0x86ac3974e2bd0d60825230fa6f355ff11409df5c": { - "address": "0x86ac3974e2bd0d60825230fa6f355ff11409df5c", - "symbol": "VCAKE", - "decimals": 8, - "name": "Venus CAKE", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x86ac3974e2bd0d60825230fa6f355ff11409df5c.png", - "aggregators": ["PancakeCoinMarketCap", "LiFi", "Rubic"], - "occurrences": 3 - }, - "0x9825a3db53e8c21265cabbb73749d71e4bd7b68b": { - "address": "0x9825a3db53e8c21265cabbb73749d71e4bd7b68b", - "symbol": "VOLT", - "decimals": 18, - "name": "Bitvolt", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x9825a3db53e8c21265cabbb73749d71e4bd7b68b.png", - "aggregators": ["PancakeCoinMarketCap", "Socket", "Rubic"], - "occurrences": 3 - }, - "0x934c9198582bf2631128c5d4b051aacef9a6224f": { - "address": "0x934c9198582bf2631128c5d4b051aacef9a6224f", - "symbol": "WAI", - "decimals": 18, - "name": "Wanaka Wai Token", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x934c9198582bf2631128c5d4b051aacef9a6224f.png", - "aggregators": ["PancakeCoinMarketCap", "Socket", "Rubic"], - "occurrences": 3 - }, - "0xd306c124282880858a634e7396383ae58d37c79c": { - "address": "0xd306c124282880858a634e7396383ae58d37c79c", - "symbol": "WAL", - "decimals": 18, - "name": "WastedLands", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xd306c124282880858a634e7396383ae58d37c79c.png", - "aggregators": ["PancakeCoinMarketCap", "Socket", "Rubic"], - "occurrences": 3 - }, - "0x9e26c50b8a3b7652c3fd2b378252a8647a0c9268": { - "address": "0x9e26c50b8a3b7652c3fd2b378252a8647a0c9268", - "symbol": "WOOF", - "decimals": 18, - "name": "Shibance token", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x9e26c50b8a3b7652c3fd2b378252a8647a0c9268.png", - "aggregators": ["PancakeCoinMarketCap", "Socket", "Rubic"], - "occurrences": 3 - }, - "0x6f620ec89b8479e97a6985792d0c64f237566746": { - "address": "0x6f620ec89b8479e97a6985792d0c64f237566746", - "symbol": "WPC", - "decimals": 18, - "name": "WePiggy Coin", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x6f620ec89b8479e97a6985792d0c64f237566746.png", - "aggregators": ["PancakeCoinMarketCap", "Socket", "Rubic"], - "occurrences": 3 - }, - "0xd16eaaba33a0822f5cbe4e0c63ca51d3c3fbb08b": { - "address": "0xd16eaaba33a0822f5cbe4e0c63ca51d3c3fbb08b", - "symbol": "XAI", - "decimals": 9, - "name": "X AI", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xd16eaaba33a0822f5cbe4e0c63ca51d3c3fbb08b.png", - "aggregators": ["PancakeCoinMarketCap", "Socket", "Rubic"], - "occurrences": 3 - }, - "0x547cbe0f0c25085e7015aa6939b28402eb0ccdac": { - "address": "0x547cbe0f0c25085e7015aa6939b28402eb0ccdac", - "symbol": "XBN", - "decimals": 18, - "name": "Elastic BNB", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x547cbe0f0c25085e7015aa6939b28402eb0ccdac.png", - "aggregators": ["PancakeCoinMarketCap", "1inch", "Rubic"], - "occurrences": 3 - }, - "0xd0dff49de3e314fdfd3f93c5eeee7d5d2f5515cd": { - "address": "0xd0dff49de3e314fdfd3f93c5eeee7d5d2f5515cd", - "symbol": "ZBTC", - "decimals": 18, - "name": "ZBTC", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xd0dff49de3e314fdfd3f93c5eeee7d5d2f5515cd.png", - "aggregators": ["PancakeCoinMarketCap", "Socket", "Rubic"], - "occurrences": 3 - }, - "0x23ec58e45ac5313bcb6681f4f7827b8a8453ac45": { - "address": "0x23ec58e45ac5313bcb6681f4f7827b8a8453ac45", - "symbol": "ZEFU", - "decimals": 18, - "name": "Zenfuse Trading Platform Token (BSC)", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x23ec58e45ac5313bcb6681f4f7827b8a8453ac45.png", - "aggregators": ["PancakeCoinMarketCap", "Socket", "Rubic"], - "occurrences": 3 - }, - "0x2770b104374f8130e5a25a203b63c79436b11a0d": { - "address": "0x2770b104374f8130e5a25a203b63c79436b11a0d", - "symbol": "ZKB", - "decimals": 18, - "name": "ZK Cross Chain Bridge", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x2770b104374f8130e5a25a203b63c79436b11a0d.png", - "aggregators": ["PancakeCoinMarketCap", "Socket", "Rubic"], - "occurrences": 3 - }, - "0xdb8d30b74bf098af214e862c90e647bbb1fcc58c": { - "address": "0xdb8d30b74bf098af214e862c90e647bbb1fcc58c", - "symbol": "BABYCAKE", - "decimals": 18, - "name": "BabyCake", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xdb8d30b74bf098af214e862c90e647bbb1fcc58c.png", - "aggregators": ["PancakeExtended", "Rubic", "Squid"], - "occurrences": 3 - }, - "0x045c4324039da91c52c55df5d785385aab073dcf": { - "address": "0x045c4324039da91c52c55df5d785385aab073dcf", - "symbol": "BCFX", - "decimals": 18, - "name": "BSC Conflux", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x045c4324039da91c52c55df5d785385aab073dcf.png", - "aggregators": ["PancakeExtended", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x581fa684d0ec11ccb46b1d92f1f24c8a3f95c0ca": { - "address": "0x581fa684d0ec11ccb46b1d92f1f24c8a3f95c0ca", - "symbol": "MCAKE", - "decimals": 18, - "name": "mCake Token", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x581fa684d0ec11ccb46b1d92f1f24c8a3f95c0ca.png", - "aggregators": ["PancakeExtended", "Rubic", "Rango"], - "occurrences": 3 - }, - "0xc2098a8938119a52b1f7661893c0153a6cb116d5": { - "address": "0xc2098a8938119a52b1f7661893c0153a6cb116d5", - "symbol": "RPG", - "decimals": 18, - "name": "Rangers Protocol Gas", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xc2098a8938119a52b1f7661893c0153a6cb116d5.png", - "aggregators": ["PancakeExtended", "Socket", "Rango"], - "occurrences": 3 - }, - "0xad90c05bc51672eedfee36e58b3ff1a78bbc146d": { - "address": "0xad90c05bc51672eedfee36e58b3ff1a78bbc146d", - "symbol": "XSPACE", - "decimals": 9, - "name": "XSPACE", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xad90c05bc51672eedfee36e58b3ff1a78bbc146d.png", - "aggregators": ["1inch", "Socket", "Rubic"], - "occurrences": 3 - }, - "0x0047a0deadafb7ee6b1a0d219e70fb6767057d93": { - "address": "0x0047a0deadafb7ee6b1a0d219e70fb6767057d93", - "symbol": "XYSL", - "decimals": 18, - "name": "xYSL token", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x0047a0deadafb7ee6b1a0d219e70fb6767057d93.png", - "aggregators": ["1inch", "Socket", "Rango"], - "occurrences": 3 - }, - "0x441bb79f2da0daf457bad3d401edb68535fb3faa": { - "address": "0x441bb79f2da0daf457bad3d401edb68535fb3faa", - "symbol": "RB", - "decimals": 18, - "name": "Hey Reborn", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x441bb79f2da0daf457bad3d401edb68535fb3faa.png", - "aggregators": ["LiFi", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x7979f6c54eba05e18ded44c4f986f49a5de551c2": { - "address": "0x7979f6c54eba05e18ded44c4f986f49a5de551c2", - "symbol": "KEBAB", - "decimals": 18, - "name": "Kebab Token", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x7979f6c54eba05e18ded44c4f986f49a5de551c2.png", - "aggregators": ["TrustWallet", "Rubic", "Rango"], - "occurrences": 3 - }, - "0xfeea0bdd3d07eb6fe305938878c0cadbfa169042": { - "address": "0xfeea0bdd3d07eb6fe305938878c0cadbfa169042", - "symbol": "8PAY", - "decimals": 18, - "name": "8PAY Network", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xfeea0bdd3d07eb6fe305938878c0cadbfa169042.png", - "aggregators": ["Socket", "Rubic", "Rango"], - "occurrences": 3 - }, - "0xebd49b26169e1b52c04cfd19fcf289405df55f80": { - "address": "0xebd49b26169e1b52c04cfd19fcf289405df55f80", - "symbol": "ORBS", - "decimals": 18, - "name": "Orbs", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xebd49b26169e1b52c04cfd19fcf289405df55f80.png", - "aggregators": ["Socket", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x4206931337dc273a630d328da6441786bfad668f": { - "address": "0x4206931337dc273a630d328da6441786bfad668f", - "symbol": "DOGE", - "decimals": 8, - "name": "Dogecoin", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x4206931337dc273a630d328da6441786bfad668f.png", - "aggregators": ["Socket", "Rubic", "Squid"], - "occurrences": 3 - }, - "0x4d5f833711128f20c8065c48823e322f0b87742c": { - "address": "0x4d5f833711128f20c8065c48823e322f0b87742c", - "symbol": "PC", - "decimals": 18, - "name": "Peace Coin", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x4d5f833711128f20c8065c48823e322f0b87742c.png", - "aggregators": ["Socket", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x8b4c03308579a0c4166b44f84565d97378303247": { - "address": "0x8b4c03308579a0c4166b44f84565d97378303247", - "symbol": "GATTO", - "decimals": 18, - "name": "Madonna del gatto", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x8b4c03308579a0c4166b44f84565d97378303247.png", - "aggregators": ["Rubic", "Rango", "Sonarwatch"], - "occurrences": 3 - }, - "0xddf7d080c82b8048baae54e376a3406572429b4e": { - "address": "0xddf7d080c82b8048baae54e376a3406572429b4e", - "symbol": "OOOOOO", - "decimals": 18, - "name": "GODDOG", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xddf7d080c82b8048baae54e376a3406572429b4e.png", - "aggregators": ["Rubic", "Squid", "Rango"], - "occurrences": 3 - }, - "0x0bb0e29458714c4961e5198ab3bc808f628dd6c7": { - "address": "0x0bb0e29458714c4961e5198ab3bc808f628dd6c7", - "symbol": "SOLVEX", - "decimals": 9, - "name": "Solvex Network", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x0bb0e29458714c4961e5198ab3bc808f628dd6c7.png", - "aggregators": ["Rubic", "Rango", "Sonarwatch"], - "occurrences": 3 - }, - "0x80a78a9b6b1272fdb612b39181bf113706024875": { - "address": "0x80a78a9b6b1272fdb612b39181bf113706024875", - "symbol": "HLO", - "decimals": 18, - "name": "Halo", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x80a78a9b6b1272fdb612b39181bf113706024875.png", - "aggregators": ["Rubic", "Rango", "Sonarwatch"], - "occurrences": 3 - }, - "0x9f9bb3d5af7cc774f9b6adf66e32859b5a998952": { - "address": "0x9f9bb3d5af7cc774f9b6adf66e32859b5a998952", - "symbol": "SATX", - "decimals": 18, - "name": "$SATX", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x9f9bb3d5af7cc774f9b6adf66e32859b5a998952.png", - "aggregators": ["Rubic", "Rango", "Sonarwatch"], - "occurrences": 3 - }, - "0x59264f02d301281f3393e1385c0aefd446eb0f00": { - "address": "0x59264f02d301281f3393e1385c0aefd446eb0f00", - "symbol": "PARTI", - "decimals": 18, - "name": "PARTI Token", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x59264f02d301281f3393e1385c0aefd446eb0f00.png", - "aggregators": ["PancakeExtended", "LiFi", "Rubic"], - "occurrences": 3 - }, - "0x1a5d7e4c3a7f940b240b7357a4bfed30d17f9497": { - "address": "0x1a5d7e4c3a7f940b240b7357a4bfed30d17f9497", - "symbol": "HOLO", - "decimals": 18, - "name": "Holoworld AI", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x1a5d7e4c3a7f940b240b7357a4bfed30d17f9497.png", - "aggregators": ["PancakeExtended", "LiFi", "Rubic"], - "occurrences": 3 - }, - "0x34681c1035f97e1edcccec5f142e02ff81a3a230": { - "address": "0x34681c1035f97e1edcccec5f142e02ff81a3a230", - "symbol": "CBIX", - "decimals": 18, - "name": "Cubiex", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x34681c1035f97e1edcccec5f142e02ff81a3a230.png", - "aggregators": ["PancakeCoinMarketCap", "Rubic", "BinanceDex"], - "occurrences": 3 - }, - "0x8fce7206e3043dd360f115afa956ee31b90b787c": { - "address": "0x8fce7206e3043dd360f115afa956ee31b90b787c", - "symbol": "STAR", - "decimals": 18, - "name": "Starpower Network", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x8fce7206e3043dd360f115afa956ee31b90b787c.png", - "aggregators": ["PancakeExtended", "LiFi", "Socket"], - "occurrences": 3 - }, - "0x1510ae95447ccbc66bc2eadaa298a17427814ef2": { - "address": "0x1510ae95447ccbc66bc2eadaa298a17427814ef2", - "symbol": "NAIT", - "decimals": 5, - "name": "Node AI Token", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x1510ae95447ccbc66bc2eadaa298a17427814ef2.png", - "aggregators": ["Metamask", "Rubic"], - "occurrences": 2 - }, - "0x4ff1e3c449a7f4b42d8c6f5fbb89c52b8b47fc65": { - "address": "0x4ff1e3c449a7f4b42d8c6f5fbb89c52b8b47fc65", - "symbol": "HOLD", - "decimals": 18, - "name": "HOLD", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x4ff1e3c449a7f4b42d8c6f5fbb89c52b8b47fc65.png", - "aggregators": ["Metamask", "Rubic"], - "occurrences": 2 - }, - "0xdc0f0a5719c39764b011edd02811bd228296887c": { - "address": "0xdc0f0a5719c39764b011edd02811bd228296887c", - "symbol": "DOS", - "decimals": 18, - "name": "DOS Network Token", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xdc0f0a5719c39764b011edd02811bd228296887c.png", - "aggregators": ["Socket", "Rubic", "BinanceDex"], - "occurrences": 3 - }, - "0xbb325dde9b92e0e02b01272f761ddf51d93fabd8": { - "address": "0xbb325dde9b92e0e02b01272f761ddf51d93fabd8", - "symbol": "WESTIE", - "decimals": 9, - "name": "Westie", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xbb325dde9b92e0e02b01272f761ddf51d93fabd8.png", - "aggregators": ["CoinGecko", "Rubic", "Rango"], - "occurrences": 3 - }, - "0xe1743616f705954620aa351465c8885fbde5a8a9": { - "address": "0xe1743616f705954620aa351465c8885fbde5a8a9", - "symbol": "LINON", - "decimals": 18, - "name": "Linde plc (Ondo Tokenized)", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xe1743616f705954620aa351465c8885fbde5a8a9.png", - "aggregators": ["Rango", "Ondo"], - "occurrences": 2, - "rwaData": { - "market": { - "nextOpen": "2026-05-18T20:01:00.000Z", - "nextClose": "2026-05-18T19:59:00.000Z" - }, - "nextPause": { - "start": "2026-06-03T23:52:00.000Z", - "end": "2026-06-04T00:12:00.000Z" - }, - "ticker": "LIN", - "instrumentType": "stock" - } - }, - "0x333333c465a19c85f85c6cfbed7b16b0b26e3333": { - "address": "0x333333c465a19c85f85c6cfbed7b16b0b26e3333", - "symbol": "ORA", - "decimals": 18, - "name": "ORA Coin", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x333333c465a19c85f85c6cfbed7b16b0b26e3333.png", - "aggregators": [ - "PancakeExtended", - "LiFi", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 6 - }, - "0x0b079b33b6e72311c6be245f9f660cc385029fc3": { - "address": "0x0b079b33b6e72311c6be245f9f660cc385029fc3", - "symbol": "APE", - "decimals": 18, - "name": "APE", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x0b079b33b6e72311c6be245f9f660cc385029fc3.png", - "aggregators": ["ApeSwap", "LiFi", "Socket", "Rubic", "Rango"], - "occurrences": 5 - }, - "0x70be40667385500c5da7f108a022e21b606045dd": { - "address": "0x70be40667385500c5da7f108a022e21b606045dd", - "symbol": "ST", - "decimals": 18, - "name": "Sentio Token", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x70be40667385500c5da7f108a022e21b606045dd.png", - "aggregators": [ - "PancakeExtended", - "LiFi", - "Socket", - "Rubic", - "Rango" - ], - "occurrences": 5 - }, - "0x3d4f0513e8a29669b960f9dbca61861548a9a760": { - "address": "0x3d4f0513e8a29669b960f9dbca61861548a9a760", - "symbol": "BANANA", - "decimals": 18, - "name": "Banana For Scale", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x3d4f0513e8a29669b960f9dbca61861548a9a760.png", - "aggregators": [ - "CoinGecko", - "LiFi", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0xab7dd9c9993e63604ff57cfc2dbe430adffd33d3": { - "address": "0xab7dd9c9993e63604ff57cfc2dbe430adffd33d3", - "symbol": "LUNAR", - "decimals": 18, - "name": "MoonPrime Games", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xab7dd9c9993e63604ff57cfc2dbe430adffd33d3.png", - "aggregators": [ - "CoinGecko", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x13a5c811093dd001c328b59a0cc9dec88951f042": { - "address": "0x13a5c811093dd001c328b59a0cc9dec88951f042", - "symbol": "PAI", - "decimals": 18, - "name": "Panther AI", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x13a5c811093dd001c328b59a0cc9dec88951f042.png", - "aggregators": [ - "CoinGecko", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x56fa5f7bf457454be33d8b978c86a5f5b9dd84c2": { - "address": "0x56fa5f7bf457454be33d8b978c86a5f5b9dd84c2", - "symbol": "LTP", - "decimals": 18, - "name": "Listapie", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x56fa5f7bf457454be33d8b978c86a5f5b9dd84c2.png", - "aggregators": [ - "PancakeExtended", - "LiFi", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x85dab10c3ba20148ca60c2eb955e1f8ffe9eaa79": { - "address": "0x85dab10c3ba20148ca60c2eb955e1f8ffe9eaa79", - "symbol": "ARTH", - "decimals": 18, - "name": "ARTH", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x85dab10c3ba20148ca60c2eb955e1f8ffe9eaa79.png", - "aggregators": [ - "CoinGecko", - "LiFi", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0xbb1b031c591235408755ff4e0739cb88c5cf2507": { - "address": "0xbb1b031c591235408755ff4e0739cb88c5cf2507", - "symbol": "PAAL", - "decimals": 18, - "name": "PAAL AI", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xbb1b031c591235408755ff4e0739cb88c5cf2507.png", - "aggregators": [ - "CoinGecko", - "LiFi", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x9ecaf80c1303cca8791afbc0ad405c8a35e8d9f1": { - "address": "0x9ecaf80c1303cca8791afbc0ad405c8a35e8d9f1", - "symbol": "KERNEL", - "decimals": 18, - "name": "KernelDAO", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x9ecaf80c1303cca8791afbc0ad405c8a35e8d9f1.png", - "aggregators": [ - "CoinGecko", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x5d3a1ff2b6bab83b63cd9ad0787074081a52ef34": { - "address": "0x5d3a1ff2b6bab83b63cd9ad0787074081a52ef34", - "symbol": "USDE", - "decimals": 18, - "name": "USDe", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x5d3a1ff2b6bab83b63cd9ad0787074081a52ef34.png", - "aggregators": [ - "PancakeExtended", - "LiFi", - "Socket", - "Rubic", - "Rango" - ], - "occurrences": 5 - }, - "0x211cc4dd073734da055fbf44a2b4667d5e5fe5d2": { - "address": "0x211cc4dd073734da055fbf44a2b4667d5e5fe5d2", - "symbol": "SUSDE", - "decimals": 18, - "name": "SUSDE", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x211cc4dd073734da055fbf44a2b4667d5e5fe5d2.png", - "aggregators": [ - "PancakeExtended", - "LiFi", - "Socket", - "Rubic", - "Rango" - ], - "occurrences": 5 - }, - "0x80eede496655fb9047dd39d9f418d5483ed600df": { - "address": "0x80eede496655fb9047dd39d9f418d5483ed600df", - "symbol": "FRXUSD", - "decimals": 18, - "name": "FRXUSD", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x80eede496655fb9047dd39d9f418d5483ed600df.png", - "aggregators": ["CoinGecko", "LiFi", "Rubic", "Squid", "Rango"], - "occurrences": 5 - }, - "0x420eeed09cbc6e8416decd28857ff3c7d991fc46": { - "address": "0x420eeed09cbc6e8416decd28857ff3c7d991fc46", - "symbol": "AXLTIA", - "decimals": 6, - "name": "Axelar Wrapped TIA", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x420eeed09cbc6e8416decd28857ff3c7d991fc46.png", - "aggregators": ["LiFi", "Socket", "Rubic", "Squid", "Rango"], - "occurrences": 5 - }, - "0xe07710cdcd1c9f0fb04bfd013f9854e4552671ce": { - "address": "0xe07710cdcd1c9f0fb04bfd013f9854e4552671ce", - "symbol": "U", - "decimals": 18, - "name": "U Coin", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xe07710cdcd1c9f0fb04bfd013f9854e4552671ce.png", - "aggregators": ["ApeSwap", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0xb42e1e0165140321db20ef46a2e9a240d60284b6": { - "address": "0xb42e1e0165140321db20ef46a2e9a240d60284b6", - "symbol": "RECT", - "decimals": 18, - "name": "ReflectionAI", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xb42e1e0165140321db20ef46a2e9a240d60284b6.png", - "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0xe580d4db885f697de3e45cbfcbf746232b0a345e": { - "address": "0xe580d4db885f697de3e45cbfcbf746232b0a345e", - "symbol": "STARX", - "decimals": 18, - "name": "STARX", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xe580d4db885f697de3e45cbfcbf746232b0a345e.png", - "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0x5ff325ec2cde57373cb3db511f96a33dc92e1986": { - "address": "0x5ff325ec2cde57373cb3db511f96a33dc92e1986", - "symbol": "BABYHIPPO", - "decimals": 9, - "name": "BABY HIPPO", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x5ff325ec2cde57373cb3db511f96a33dc92e1986.png", - "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0x3e2242cb2fc1465822a0bb81ca2fe1f633a45757": { - "address": "0x3e2242cb2fc1465822a0bb81ca2fe1f633a45757", - "symbol": "FORKY", - "decimals": 18, - "name": "Forky", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x3e2242cb2fc1465822a0bb81ca2fe1f633a45757.png", - "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0x90c48855bb69f9d2c261efd0d8c7f35990f2dd6f": { - "address": "0x90c48855bb69f9d2c261efd0d8c7f35990f2dd6f", - "symbol": "WFI", - "decimals": 18, - "name": "WeFi", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x90c48855bb69f9d2c261efd0d8c7f35990f2dd6f.png", - "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0x37e2ae82c454a6888e4bbb3e21a6607034832b4f": { - "address": "0x37e2ae82c454a6888e4bbb3e21a6607034832b4f", - "symbol": "LIMO", - "decimals": 18, - "name": "Limoverse", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x37e2ae82c454a6888e4bbb3e21a6607034832b4f.png", - "aggregators": ["PancakeCoinGecko", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0xcf221109f45854ac52159420c543757fe84c113a": { - "address": "0xcf221109f45854ac52159420c543757fe84c113a", - "symbol": "AWARE", - "decimals": 18, - "name": "ChainAware.ai", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xcf221109f45854ac52159420c543757fe84c113a.png", - "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0x6050d829f5a5e0ea758d8357ddcdec1381699248": { - "address": "0x6050d829f5a5e0ea758d8357ddcdec1381699248", - "symbol": "WCC", - "decimals": 18, - "name": "Wrapped Canton Coin", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x6050d829f5a5e0ea758d8357ddcdec1381699248.png", - "aggregators": ["PancakeExtended", "LiFi", "Rubic", "Rango"], - "occurrences": 4 - }, - "0x5cc3de2a7f03b1c0a5661a846b367460c3bd128f": { - "address": "0x5cc3de2a7f03b1c0a5661a846b367460c3bd128f", - "symbol": "SLAV", - "decimals": 18, - "name": "SLAV", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x5cc3de2a7f03b1c0a5661a846b367460c3bd128f.png", - "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0x53ffa52f358ccdb59c2a248d5d17ab91a32ab44d": { - "address": "0x53ffa52f358ccdb59c2a248d5d17ab91a32ab44d", - "symbol": "GNESS", - "decimals": 18, - "name": "Gameness Token", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x53ffa52f358ccdb59c2a248d5d17ab91a32ab44d.png", - "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0x653062e37d7a52d465a8570a5daa46ca4e0bd3d9": { - "address": "0x653062e37d7a52d465a8570a5daa46ca4e0bd3d9", - "symbol": "FTD", - "decimals": 18, - "name": "Forty Two DAO Token", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x653062e37d7a52d465a8570a5daa46ca4e0bd3d9.png", - "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0x9f5c37e0fd9bf729b1f0a6f39ce57be5e9bfd435": { - "address": "0x9f5c37e0fd9bf729b1f0a6f39ce57be5e9bfd435", - "symbol": "BTCPAY", - "decimals": 18, - "name": "Bitcoin Pay", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x9f5c37e0fd9bf729b1f0a6f39ce57be5e9bfd435.png", - "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0xf40a230bd8162e34f97a3e113c4e44a7e9bafa16": { - "address": "0xf40a230bd8162e34f97a3e113c4e44a7e9bafa16", - "symbol": "HOGSCOIN", - "decimals": 18, - "name": "CryptoHog", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xf40a230bd8162e34f97a3e113c4e44a7e9bafa16.png", - "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0x4f0572ca0bf96f5ae17b7062d97cea3f35bdea6f": { - "address": "0x4f0572ca0bf96f5ae17b7062d97cea3f35bdea6f", - "symbol": "UNX", - "decimals": 18, - "name": "Unchain X", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x4f0572ca0bf96f5ae17b7062d97cea3f35bdea6f.png", - "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0x57f2be3e97e7653a2e6d6bddda40160d202d5305": { - "address": "0x57f2be3e97e7653a2e6d6bddda40160d202d5305", - "symbol": "KARAT", - "decimals": 18, - "name": "KARAT Galaxy", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x57f2be3e97e7653a2e6d6bddda40160d202d5305.png", - "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0xa97b32d699e3908ff34502af489604ccdc1feb10": { - "address": "0xa97b32d699e3908ff34502af489604ccdc1feb10", - "symbol": "SMOON", - "decimals": 18, - "name": "Solmoon BSC", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xa97b32d699e3908ff34502af489604ccdc1feb10.png", - "aggregators": ["PancakeCoinGecko", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0xbc12ad556581ff7162e595e5956f5f3845fdb38c": { - "address": "0xbc12ad556581ff7162e595e5956f5f3845fdb38c", - "symbol": "COPTER", - "decimals": 9, - "name": "Helicopter Finance", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xbc12ad556581ff7162e595e5956f5f3845fdb38c.png", - "aggregators": ["PancakeCoinGecko", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0xc30f12cd65f61ded24db6c415c84f999c9704ebc": { - "address": "0xc30f12cd65f61ded24db6c415c84f999c9704ebc", - "symbol": "SABAKAINU", - "decimals": 9, - "name": "Sabaka Inu", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xc30f12cd65f61ded24db6c415c84f999c9704ebc.png", - "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0xdafc45a82c3681d857c6ae36227998190a9b6798": { - "address": "0xdafc45a82c3681d857c6ae36227998190a9b6798", - "symbol": "SOUL", - "decimals": 18, - "name": "Kindness For The Soul SOUL", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xdafc45a82c3681d857c6ae36227998190a9b6798.png", - "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0x1225075c06b8e288953531e96f22490dd85b7f60": { - "address": "0x1225075c06b8e288953531e96f22490dd85b7f60", - "symbol": "BABYSHARK", - "decimals": 9, - "name": "Baby Shark", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x1225075c06b8e288953531e96f22490dd85b7f60.png", - "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0x07f5ceded6b3dba557b3663edc8941fb37b63945": { - "address": "0x07f5ceded6b3dba557b3663edc8941fb37b63945", - "symbol": "LAB-V2", - "decimals": 9, - "name": "Little Angry Bunny v2", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x07f5ceded6b3dba557b3663edc8941fb37b63945.png", - "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0x7eb567f5c781ee8e47c7100dc5046955503fc26a": { - "address": "0x7eb567f5c781ee8e47c7100dc5046955503fc26a", - "symbol": "KOJI", - "decimals": 9, - "name": "Koji", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x7eb567f5c781ee8e47c7100dc5046955503fc26a.png", - "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0x25574cad6f03ffacd9d08b288e8d5d88997fb2f3": { - "address": "0x25574cad6f03ffacd9d08b288e8d5d88997fb2f3", - "symbol": "REDFEG", - "decimals": 9, - "name": "RedFeg", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x25574cad6f03ffacd9d08b288e8d5d88997fb2f3.png", - "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0x041640ea980e3fe61e9c4ca26d9007bc70094c15": { - "address": "0x041640ea980e3fe61e9c4ca26d9007bc70094c15", - "symbol": "PIRATECOIN", - "decimals": 9, - "name": "PirateCoin", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x041640ea980e3fe61e9c4ca26d9007bc70094c15.png", - "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0xbbf8b05ef7af53ccbff8e3673e73714f939bfd84": { - "address": "0xbbf8b05ef7af53ccbff8e3673e73714f939bfd84", - "symbol": "FROGCEO", - "decimals": 9, - "name": "FROG CEO", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xbbf8b05ef7af53ccbff8e3673e73714f939bfd84.png", - "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0x9dce13e71b11eb5df66ca269bd657696587fd4e2": { - "address": "0x9dce13e71b11eb5df66ca269bd657696587fd4e2", - "symbol": "ALE", - "decimals": 18, - "name": "Project Ailey", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x9dce13e71b11eb5df66ca269bd657696587fd4e2.png", - "aggregators": [ - "PancakeCoinMarketCap", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 4 - }, - "0xecd042fe089473194dce264a4686298003fc173e": { - "address": "0xecd042fe089473194dce264a4686298003fc173e", - "symbol": "OPTIMUSELO", - "decimals": 9, - "name": "OptimusElonAI", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xecd042fe089473194dce264a4686298003fc173e.png", - "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0xce403dbdff00853860c68739611c64f0bd1c9aff": { - "address": "0xce403dbdff00853860c68739611c64f0bd1c9aff", - "symbol": "KITEAI", - "decimals": 6, - "name": "KITEAI", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xce403dbdff00853860c68739611c64f0bd1c9aff.png", - "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0x56f46bd073e9978eb6984c0c3e5c661407c3a447": { - "address": "0x56f46bd073e9978eb6984c0c3e5c661407c3a447", - "symbol": "DCT", - "decimals": 18, - "name": "decapitaltoken", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x56f46bd073e9978eb6984c0c3e5c661407c3a447.png", - "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0xe85562c6ff86a8ff0268222aff0205a26d37d68e": { - "address": "0xe85562c6ff86a8ff0268222aff0205a26d37d68e", - "symbol": "TOP", - "decimals": 18, - "name": "TOP PROTOCOL", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xe85562c6ff86a8ff0268222aff0205a26d37d68e.png", - "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0xc3571b3f9721d07919dc42af7fce2784b56e8e3c": { - "address": "0xc3571b3f9721d07919dc42af7fce2784b56e8e3c", - "symbol": "ZHOA", - "decimals": 18, - "name": "Chengpang Zhoa", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xc3571b3f9721d07919dc42af7fce2784b56e8e3c.png", - "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0x8ff417e9b7832b09e5717532dc7f251b346442ab": { - "address": "0x8ff417e9b7832b09e5717532dc7f251b346442ab", - "symbol": "WHYPAD", - "decimals": 18, - "name": "Unamano", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x8ff417e9b7832b09e5717532dc7f251b346442ab.png", - "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0x45787821a0bd5e6bba8e709783c773a386e34d65": { - "address": "0x45787821a0bd5e6bba8e709783c773a386e34d65", - "symbol": "RATS", - "decimals": 9, - "name": "GoldenRat", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x45787821a0bd5e6bba8e709783c773a386e34d65.png", - "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0x40ba01da634a189d248fb1ee47141a4e11cd94bd": { - "address": "0x40ba01da634a189d248fb1ee47141a4e11cd94bd", - "symbol": "X314", - "decimals": 18, - "name": "X314", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x40ba01da634a189d248fb1ee47141a4e11cd94bd.png", - "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0x566cedd201f67e542a6851a2959c1a449a041945": { - "address": "0x566cedd201f67e542a6851a2959c1a449a041945", - "symbol": "OPIUM", - "decimals": 18, - "name": "Opium", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x566cedd201f67e542a6851a2959c1a449a041945.png", - "aggregators": ["PancakeCoinGecko", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0x9929b92f4c743d014c68dfe022d04c8c8fcfa37a": { - "address": "0x9929b92f4c743d014c68dfe022d04c8c8fcfa37a", - "symbol": "OPENX", - "decimals": 18, - "name": "OpenSwap.One", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x9929b92f4c743d014c68dfe022d04c8c8fcfa37a.png", - "aggregators": ["PancakeCoinGecko", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0xc2eb046621b59f604c7abdb1600d01636adc4fed": { - "address": "0xc2eb046621b59f604c7abdb1600d01636adc4fed", - "symbol": "ZNX", - "decimals": 6, - "name": "ZENEX", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xc2eb046621b59f604c7abdb1600d01636adc4fed.png", - "aggregators": ["PancakeCoinGecko", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0x9bfa177621119e64cecbeabe184ab9993e2ef727": { - "address": "0x9bfa177621119e64cecbeabe184ab9993e2ef727", - "symbol": "M-BTC", - "decimals": 18, - "name": "Merlin's Seal BTC", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x9bfa177621119e64cecbeabe184ab9993e2ef727.png", - "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0xa0c56a8c0692bd10b3fa8f8ba79cf5332b7107f9": { - "address": "0xa0c56a8c0692bd10b3fa8f8ba79cf5332b7107f9", - "symbol": "MERL", - "decimals": 18, - "name": "Merlin Chain", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xa0c56a8c0692bd10b3fa8f8ba79cf5332b7107f9.png", - "aggregators": ["PancakeExtended", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0x25be3edd820a8fce6b8e211f40c5b82ba176994c": { - "address": "0x25be3edd820a8fce6b8e211f40c5b82ba176994c", - "symbol": "IBTC", - "decimals": 8, - "name": "iBTC Network", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x25be3edd820a8fce6b8e211f40c5b82ba176994c.png", - "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0xa4156cc61dc7796faa24278a0f9f229b15e298cb": { - "address": "0xa4156cc61dc7796faa24278a0f9f229b15e298cb", - "symbol": "BTC.Z", - "decimals": 18, - "name": "Bitcoin Bridged ZED20", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xa4156cc61dc7796faa24278a0f9f229b15e298cb.png", - "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0xb18940bbef83b687b292ab03523c89f80717c5bc": { - "address": "0xb18940bbef83b687b292ab03523c89f80717c5bc", - "symbol": "$BMC", - "decimals": 18, - "name": "BullishMarketCap", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xb18940bbef83b687b292ab03523c89f80717c5bc.png", - "aggregators": ["PancakeCoinGecko", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0x3ebde1ed6b67236b1e714b3a6bb19644df03fd18": { - "address": "0x3ebde1ed6b67236b1e714b3a6bb19644df03fd18", - "symbol": "NULL", - "decimals": 18, - "name": "NULL MATRIX", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x3ebde1ed6b67236b1e714b3a6bb19644df03fd18.png", - "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0x000000000000012def132e61759048be5b5c6033": { - "address": "0x000000000000012def132e61759048be5b5c6033", - "symbol": "CX", - "decimals": 18, - "name": "Cortex", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x000000000000012def132e61759048be5b5c6033.png", - "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0x649a2da7b28e0d54c13d5eff95d3a660652742cc": { - "address": "0x649a2da7b28e0d54c13d5eff95d3a660652742cc", - "symbol": "IDRX", - "decimals": 0, - "name": "IDRX", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x649a2da7b28e0d54c13d5eff95d3a660652742cc.png", - "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0x0cc7288a11c0c31d39d0e05eb59f24e506ad6ad5": { - "address": "0x0cc7288a11c0c31d39d0e05eb59f24e506ad6ad5", - "symbol": "EGP", - "decimals": 18, - "name": "Eigenpie", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x0cc7288a11c0c31d39d0e05eb59f24e506ad6ad5.png", - "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0x7712da72127d5dd213b621497d6e4899d5989e5c": { - "address": "0x7712da72127d5dd213b621497d6e4899d5989e5c", - "symbol": "RYZE", - "decimals": 18, - "name": "Ryze", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x7712da72127d5dd213b621497d6e4899d5989e5c.png", - "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0x9158df7da69b048a296636d5de7a3d9a7fb25e88": { - "address": "0x9158df7da69b048a296636d5de7a3d9a7fb25e88", - "symbol": "SEED", - "decimals": 18, - "name": "Kalijo", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x9158df7da69b048a296636d5de7a3d9a7fb25e88.png", - "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0xbf59dbc154421a7b37f4f2841e11f4ed2a1dee7c": { - "address": "0xbf59dbc154421a7b37f4f2841e11f4ed2a1dee7c", - "symbol": "EDEL", - "decimals": 18, - "name": "EDEL", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xbf59dbc154421a7b37f4f2841e11f4ed2a1dee7c.png", - "aggregators": ["PancakeExtended", "LiFi", "Rubic", "Rango"], - "occurrences": 4 - }, - "0x5fa699c0c1319b8d86489af77dfde4fa97b47df8": { - "address": "0x5fa699c0c1319b8d86489af77dfde4fa97b47df8", - "symbol": "BTGOON", - "decimals": 18, - "name": "BitGo Holdings (Ondo Tokenized)", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x5fa699c0c1319b8d86489af77dfde4fa97b47df8.png", - "aggregators": ["CoinGecko", "Rubic", "Rango", "Ondo"], - "occurrences": 4, - "rwaData": { - "market": { - "nextOpen": "2026-05-18T20:01:00.000Z", - "nextClose": "2026-05-18T19:59:00.000Z" - }, - "nextPause": { - "start": null, - "end": null - }, - "ticker": "BTGO", - "instrumentType": "stock" - } - }, - "0x71e9dc9debc18650bd2342b93623b88c2ad00c89": { - "address": "0x71e9dc9debc18650bd2342b93623b88c2ad00c89", - "symbol": "STRCON", - "decimals": 18, - "name": "Strategy Stretch Preferred (Ondo Tokenized)", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x71e9dc9debc18650bd2342b93623b88c2ad00c89.png", - "aggregators": ["CoinGecko", "Rubic", "Rango", "Ondo"], - "occurrences": 4, - "rwaData": { - "market": { - "nextOpen": "2026-05-18T20:01:00.000Z", - "nextClose": "2026-05-18T19:59:00.000Z" - }, - "nextPause": { - "start": null, - "end": null - }, - "ticker": "STRC", - "instrumentType": "stock" - } - }, - "0x96412902aa9aff61e13f085e70d3152c6ef2a817": { - "address": "0x96412902aa9aff61e13f085e70d3152c6ef2a817", - "symbol": "AVAX", - "decimals": 18, - "name": "Avalanche (Wormhole)", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x96412902aa9aff61e13f085e70d3152c6ef2a817.png", - "aggregators": ["PancakeCoinGecko", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0x0002bcdaf53f4889bf2f43a3252d7c03fe1b80bc": { - "address": "0x0002bcdaf53f4889bf2f43a3252d7c03fe1b80bc", - "symbol": "GORPLES", - "decimals": 18, - "name": "GorplesCoin", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x0002bcdaf53f4889bf2f43a3252d7c03fe1b80bc.png", - "aggregators": ["PancakeCoinGecko", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0xb2b446386633c6746b0a2735fb57edbb066c5878": { - "address": "0xb2b446386633c6746b0a2735fb57edbb066c5878", - "symbol": "INSLISBNB", - "decimals": 18, - "name": "Inception Restaked slisBNB", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xb2b446386633c6746b0a2735fb57edbb066c5878.png", - "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0x5019fe1867d8ccfd76d8d5abd85db5efce548fba": { - "address": "0x5019fe1867d8ccfd76d8d5abd85db5efce548fba", - "symbol": "INT", - "decimals": 18, - "name": "InteNet", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x5019fe1867d8ccfd76d8d5abd85db5efce548fba.png", - "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0x4bfaa776991e85e5f8b1255461cbbd216cfc714f": { - "address": "0x4bfaa776991e85e5f8b1255461cbbd216cfc714f", - "symbol": "HOME", - "decimals": 18, - "name": "Home", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x4bfaa776991e85e5f8b1255461cbbd216cfc714f.png", - "aggregators": ["PancakeExtended", "LiFi", "Rubic", "Rango"], - "occurrences": 4 - }, - "0xea953ea6634d55dac6697c436b1e81a679db5882": { - "address": "0xea953ea6634d55dac6697c436b1e81a679db5882", - "symbol": "USDU", - "decimals": 18, - "name": "USDu", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xea953ea6634d55dac6697c436b1e81a679db5882.png", - "aggregators": ["PancakeExtended", "LiFi", "Rubic", "Rango"], - "occurrences": 4 - }, - "0x15c5be2f72d2f8211ca1cf3d29f058f2b844ffc6": { - "address": "0x15c5be2f72d2f8211ca1cf3d29f058f2b844ffc6", - "symbol": "ADE", - "decimals": 18, - "name": "AADex Finance", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x15c5be2f72d2f8211ca1cf3d29f058f2b844ffc6.png", - "aggregators": ["PancakeCoinGecko", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0xa179248e50ce5afb507fd8c54e08a66fbac7b6ff": { - "address": "0xa179248e50ce5afb507fd8c54e08a66fbac7b6ff", - "symbol": "$FJB", - "decimals": 9, - "name": "Freedom. Jobs. Business", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xa179248e50ce5afb507fd8c54e08a66fbac7b6ff.png", - "aggregators": ["PancakeCoinGecko", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0x93ab30c08421750d5c7993fb621c6ff32fe3f89e": { - "address": "0x93ab30c08421750d5c7993fb621c6ff32fe3f89e", - "symbol": "FROGEX", - "decimals": 9, - "name": "FrogeX", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x93ab30c08421750d5c7993fb621c6ff32fe3f89e.png", - "aggregators": ["PancakeCoinGecko", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0xae3bcdadf58ec10b0ca0566f35877de4467ad222": { - "address": "0xae3bcdadf58ec10b0ca0566f35877de4467ad222", - "symbol": "MARU", - "decimals": 18, - "name": "marumaruNFT", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xae3bcdadf58ec10b0ca0566f35877de4467ad222.png", - "aggregators": ["PancakeCoinGecko", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0xe703bcd08af361b3de09a617fb74f98520954fca": { - "address": "0xe703bcd08af361b3de09a617fb74f98520954fca", - "symbol": "MGP", - "decimals": 18, - "name": "MOST Global", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xe703bcd08af361b3de09a617fb74f98520954fca.png", - "aggregators": [ - "PancakeCoinMarketCap", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 4 - }, - "0xac6ec101ddcb953774d103ba4a82fa257138459f": { - "address": "0xac6ec101ddcb953774d103ba4a82fa257138459f", - "symbol": "MRUN", - "decimals": 18, - "name": "Metarun", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xac6ec101ddcb953774d103ba4a82fa257138459f.png", - "aggregators": [ - "PancakeCoinMarketCap", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 4 - }, - "0x31c91d8fb96bff40955dd2dbc909b36e8b104dde": { - "address": "0x31c91d8fb96bff40955dd2dbc909b36e8b104dde", - "symbol": "POI$ON", - "decimals": 18, - "name": "Poison Finance", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x31c91d8fb96bff40955dd2dbc909b36e8b104dde.png", - "aggregators": ["PancakeCoinGecko", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0xa996dbda4a536700dc1441442ffbdef10c32cb9b": { - "address": "0xa996dbda4a536700dc1441442ffbdef10c32cb9b", - "symbol": "VITRA", - "decimals": 18, - "name": "Vitra Studios", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xa996dbda4a536700dc1441442ffbdef10c32cb9b.png", - "aggregators": [ - "PancakeCoinMarketCap", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 4 - }, - "0x7465b49f83bfd74e8df8574d43bfff34edbc1758": { - "address": "0x7465b49f83bfd74e8df8574d43bfff34edbc1758", - "symbol": "AMATICB", - "decimals": 18, - "name": "AMATICB", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x7465b49f83bfd74e8df8574d43bfff34edbc1758.png", - "aggregators": ["PancakeCoinMarketCap", "LiFi", "Rubic", "Rango"], - "occurrences": 4 - }, - "0xdbccd9131405dd1fe7320090af337952b9845dfa": { - "address": "0xdbccd9131405dd1fe7320090af337952b9845dfa", - "symbol": "BOT", - "decimals": 8, - "name": "Starbots", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xdbccd9131405dd1fe7320090af337952b9845dfa.png", - "aggregators": ["PancakeCoinMarketCap", "LiFi", "Rubic", "Rango"], - "occurrences": 4 - }, - "0xe68b79e51bf826534ff37aa9cee71a3842ee9c70": { - "address": "0xe68b79e51bf826534ff37aa9cee71a3842ee9c70", - "symbol": "CZUSD", - "decimals": 18, - "name": "CZUSD", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xe68b79e51bf826534ff37aa9cee71a3842ee9c70.png", - "aggregators": ["PancakeCoinMarketCap", "LiFi", "Rubic", "Rango"], - "occurrences": 4 - }, - "0x002d8563759f5e1eaf8784181f3973288f6856e4": { - "address": "0x002d8563759f5e1eaf8784181f3973288f6856e4", - "symbol": "DMOD", - "decimals": 18, - "name": "DMOD", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x002d8563759f5e1eaf8784181f3973288f6856e4.png", - "aggregators": ["PancakeCoinMarketCap", "LiFi", "Rubic", "Rango"], - "occurrences": 4 - }, - "0x7ad7242a99f21aa543f9650a56d141c57e4f6081": { - "address": "0x7ad7242a99f21aa543f9650a56d141c57e4f6081", - "symbol": "JADE", - "decimals": 9, - "name": "JADE", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x7ad7242a99f21aa543f9650a56d141c57e4f6081.png", - "aggregators": ["PancakeCoinMarketCap", "LiFi", "Rubic", "Rango"], - "occurrences": 4 - }, - "0xd3c9609b6cbc6ef02390f33c230590c38f9e5f9d": { - "address": "0xd3c9609b6cbc6ef02390f33c230590c38f9e5f9d", - "symbol": "PROT", - "decimals": 18, - "name": "PROT", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xd3c9609b6cbc6ef02390f33c230590c38f9e5f9d.png", - "aggregators": ["PancakeCoinMarketCap", "LiFi", "Rubic", "Rango"], - "occurrences": 4 - }, - "0x270388e0ca29cfd7c7e73903d9d933a23d1bab39": { - "address": "0x270388e0ca29cfd7c7e73903d9d933a23d1bab39", - "symbol": "TSX", - "decimals": 18, - "name": "TradeStars", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x270388e0ca29cfd7c7e73903d9d933a23d1bab39.png", - "aggregators": ["PancakeCoinMarketCap", "LiFi", "Rubic", "Rango"], - "occurrences": 4 - }, - "0x590d11c0696b0023176f5d7587d6b2f502a08047": { - "address": "0x590d11c0696b0023176f5d7587d6b2f502a08047", - "symbol": "LOOKS", - "decimals": 18, - "name": "LooksRare", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x590d11c0696b0023176f5d7587d6b2f502a08047.png", - "aggregators": ["PancakeExtended", "LiFi", "Rubic"], - "occurrences": 3 - }, - "0x18e37f96628db3037d633fe4d469fb1933a63c5b": { - "address": "0x18e37f96628db3037d633fe4d469fb1933a63c5b", - "symbol": "MBL", - "decimals": 18, - "name": "MovieBloc", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x18e37f96628db3037d633fe4d469fb1933a63c5b.png", - "aggregators": ["PancakeExtended", "LiFi", "Rubic"], - "occurrences": 3 - }, - "0x49022089e78a8d46ec87a3af86a1db6c189afa6f": { - "address": "0x49022089e78a8d46ec87a3af86a1db6c189afa6f", - "symbol": "MCOIN", - "decimals": 18, - "name": "MCOIN", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x49022089e78a8d46ec87a3af86a1db6c189afa6f.png", - "aggregators": ["PancakeExtended", "LiFi", "Rubic", "Rango"], - "occurrences": 4 - }, - "0x7dc91cbd6cb5a3e6a95eed713aa6bf1d987146c8": { - "address": "0x7dc91cbd6cb5a3e6a95eed713aa6bf1d987146c8", - "symbol": "BRIDGED MWBETH", - "decimals": 18, - "name": "Bridged mwBETH", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x7dc91cbd6cb5a3e6a95eed713aa6bf1d987146c8.png", - "aggregators": ["PancakeExtended", "LiFi", "Squid"], - "occurrences": 3 - }, - "0x75e8ddb518bb757b4282cd5b83bb70d4101d12fb": { - "address": "0x75e8ddb518bb757b4282cd5b83bb70d4101d12fb", - "symbol": "NFP", - "decimals": 18, - "name": "NFPrompt Token", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x75e8ddb518bb757b4282cd5b83bb70d4101d12fb.png", - "aggregators": ["PancakeExtended", "LiFi", "Rubic"], - "occurrences": 3 - }, - "0xe898edc43920f357a93083f1d4460437de6daec2": { - "address": "0xe898edc43920f357a93083f1d4460437de6daec2", - "symbol": "TITAN", - "decimals": 18, - "name": "TITAN", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xe898edc43920f357a93083f1d4460437de6daec2.png", - "aggregators": ["PancakeExtended", "LiFi", "Rubic", "Rango"], - "occurrences": 4 - }, - "0x392004bee213f1ff580c867359c246924f21e6ad": { - "address": "0x392004bee213f1ff580c867359c246924f21e6ad", - "symbol": "USDD", - "decimals": 18, - "name": "USDD", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x392004bee213f1ff580c867359c246924f21e6ad.png", - "aggregators": ["PancakeExtended", "LiFi", "Rubic", "Rango"], - "occurrences": 4 - }, - "0x00901a076785e0906d1028c7d6372d247bec7d61": { - "address": "0x00901a076785e0906d1028c7d6372d247bec7d61", - "symbol": "AUSDC", - "decimals": 18, - "name": "Aave v3 USDC", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x00901a076785e0906d1028c7d6372d247bec7d61.png", - "aggregators": ["Metamask", "1inch", "LiFi", "Rango"], - "occurrences": 4 - }, - "0xa9251ca9de909cb71783723713b21e4233fbf1b1": { - "address": "0xa9251ca9de909cb71783723713b21e4233fbf1b1", - "symbol": "AUSDT", - "decimals": 18, - "name": "Aave v3 USDT", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xa9251ca9de909cb71783723713b21e4233fbf1b1.png", - "aggregators": ["Metamask", "1inch", "LiFi", "Rango"], - "occurrences": 4 - }, - "0x78839ce14a8213779128ee4da6d75e1326606a56": { - "address": "0x78839ce14a8213779128ee4da6d75e1326606a56", - "symbol": "YNBTCK", - "decimals": 18, - "name": "YieldNest Restaked BTC - Kernel", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x78839ce14a8213779128ee4da6d75e1326606a56.png", - "aggregators": ["LiFi", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0x48dc0190df5ece990c649a7a07ba19d3650a9572": { - "address": "0x48dc0190df5ece990c649a7a07ba19d3650a9572", - "symbol": "BOT", - "decimals": 18, - "name": "BOT", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x48dc0190df5ece990c649a7a07ba19d3650a9572.png", - "aggregators": ["LiFi", "Socket", "Rubic", "Rango"], - "occurrences": 4 - }, - "0xf3e1449ddb6b218da2c9463d4594ceccc8934346": { - "address": "0xf3e1449ddb6b218da2c9463d4594ceccc8934346", - "symbol": "CELL", - "decimals": 18, - "name": "CELL", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xf3e1449ddb6b218da2c9463d4594ceccc8934346.png", - "aggregators": ["LiFi", "Socket", "Rubic", "Rango"], - "occurrences": 4 - }, - "0x11a38e06699b238d6d9a0c7a01f3ac63a07ad318": { - "address": "0x11a38e06699b238d6d9a0c7a01f3ac63a07ad318", - "symbol": "USDFI", - "decimals": 18, - "name": "USDFI", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x11a38e06699b238d6d9a0c7a01f3ac63a07ad318.png", - "aggregators": ["LiFi", "Socket", "Rubic", "Rango"], - "occurrences": 4 - }, - "0x267e0c7456df5254492127ea7b2e14e556b492b8": { - "address": "0x267e0c7456df5254492127ea7b2e14e556b492b8", - "symbol": "RVF", - "decimals": 18, - "name": "RVF", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x267e0c7456df5254492127ea7b2e14e556b492b8.png", - "aggregators": ["LiFi", "Socket", "Rubic", "Rango"], - "occurrences": 4 - }, - "0x293c3ee9abacb08bb8ced107987f00efd1539288": { - "address": "0x293c3ee9abacb08bb8ced107987f00efd1539288", - "symbol": "EMPIRE", - "decimals": 9, - "name": "EMPIRE", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x293c3ee9abacb08bb8ced107987f00efd1539288.png", - "aggregators": ["LiFi", "Socket", "Rubic", "Rango"], - "occurrences": 4 - }, - "0xfd799ddcca8ab5c1ad8a3d64a58d4e907c9d0b71": { - "address": "0xfd799ddcca8ab5c1ad8a3d64a58d4e907c9d0b71", - "symbol": "TAP", - "decimals": 18, - "name": "TAP", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xfd799ddcca8ab5c1ad8a3d64a58d4e907c9d0b71.png", - "aggregators": ["LiFi", "Socket", "Rubic", "Rango"], - "occurrences": 4 - }, - "0x0829d2d5cc09d3d341e813c821b0cfae272d9fb2": { - "address": "0x0829d2d5cc09d3d341e813c821b0cfae272d9fb2", - "symbol": "ROCKS", - "decimals": 18, - "name": "ROCKS", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x0829d2d5cc09d3d341e813c821b0cfae272d9fb2.png", - "aggregators": ["LiFi", "Socket", "Rubic", "Rango"], - "occurrences": 4 - }, - "0xe40255c5d7fa7ceec5120408c78c787cecb4cfdb": { - "address": "0xe40255c5d7fa7ceec5120408c78c787cecb4cfdb", - "symbol": "SWGB", - "decimals": 18, - "name": "SWGb", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xe40255c5d7fa7ceec5120408c78c787cecb4cfdb.png", - "aggregators": ["LiFi", "TrustWallet", "Rubic", "Rango"], - "occurrences": 4 - }, - "0x986cdf0fd180b40c4d6aeaa01ab740b996d8b782": { - "address": "0x986cdf0fd180b40c4d6aeaa01ab740b996d8b782", - "symbol": "SUSHI.MULTICHAIN", - "decimals": 18, - "name": "SushiToken MultiChain", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x986cdf0fd180b40c4d6aeaa01ab740b996d8b782.png", - "aggregators": ["LiFi", "Rubic", "SushiSwap"], - "occurrences": 3 - }, - "0x973616ff3b9d8f88411c5b4e6f928ee541e4d01f": { - "address": "0x973616ff3b9d8f88411c5b4e6f928ee541e4d01f", - "symbol": "AETHC", - "decimals": 18, - "name": "AETHC", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x973616ff3b9d8f88411c5b4e6f928ee541e4d01f.png", - "aggregators": ["LiFi", "Socket", "Rubic", "Rango"], - "occurrences": 4 - }, - "0x8c80c06c6f8c00d2d6f3cfd6333ebb3759d66868": { - "address": "0x8c80c06c6f8c00d2d6f3cfd6333ebb3759d66868", - "symbol": "SING", - "decimals": 18, - "name": "SingSing", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x8c80c06c6f8c00d2d6f3cfd6333ebb3759d66868.png", - "aggregators": ["Socket", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0xab287e6d370c61f105630e656b5468acb4d00423": { - "address": "0xab287e6d370c61f105630e656b5468acb4d00423", - "symbol": "BSR", - "decimals": 18, - "name": "BinStarter", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xab287e6d370c61f105630e656b5468acb4d00423.png", - "aggregators": ["ApeSwap", "LiFi", "Rubic"], - "occurrences": 3 - }, - "0xcd883a18f8d33cf823d13cf2c6787c913d09e640": { - "address": "0xcd883a18f8d33cf823d13cf2c6787c913d09e640", - "symbol": "TAL", - "decimals": 18, - "name": "TalentIDO", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xcd883a18f8d33cf823d13cf2c6787c913d09e640.png", - "aggregators": ["PancakeCoinGecko", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x6dc200b21894af4660b549b678ea8df22bf7cfac": { - "address": "0x6dc200b21894af4660b549b678ea8df22bf7cfac", - "symbol": "WARD", - "decimals": 18, - "name": "WARD", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x6dc200b21894af4660b549b678ea8df22bf7cfac.png", - "aggregators": ["PancakeExtended", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x71d421b6de07cefa2733d044f92a0306308de8b8": { - "address": "0x71d421b6de07cefa2733d044f92a0306308de8b8", - "symbol": "BNBLION", - "decimals": 9, - "name": "BNB LION", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x71d421b6de07cefa2733d044f92a0306308de8b8.png", - "aggregators": ["PancakeCoinMarketCap", "Rubic", "Rango"], - "occurrences": 3 - }, - "0xccd6b38fffeeab9c0ac2413bccf8b0aced748881": { - "address": "0xccd6b38fffeeab9c0ac2413bccf8b0aced748881", - "symbol": "KUVI", - "decimals": 18, - "name": "Kuvi", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xccd6b38fffeeab9c0ac2413bccf8b0aced748881.png", - "aggregators": ["CoinGecko", "Rubic", "Rango"], - "occurrences": 3 - }, - "0xbd7909318b9ca4ff140b840f69bb310a785d1095": { - "address": "0xbd7909318b9ca4ff140b840f69bb310a785d1095", - "symbol": "GTAN", - "decimals": 9, - "name": "GIANT", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xbd7909318b9ca4ff140b840f69bb310a785d1095.png", - "aggregators": ["PancakeCoinMarketCap", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x9102e0a76a5e2823073ed763a32ba8ca8521b1f3": { - "address": "0x9102e0a76a5e2823073ed763a32ba8ca8521b1f3", - "symbol": "BCHEM", - "decimals": 18, - "name": "BCHEM", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x9102e0a76a5e2823073ed763a32ba8ca8521b1f3.png", - "aggregators": ["CoinGecko", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x9d2144328e1d618f54cd38540f5ee50671f6a208": { - "address": "0x9d2144328e1d618f54cd38540f5ee50671f6a208", - "symbol": "BTCLE", - "decimals": 18, - "name": "Bitcoin Limited Edition ", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x9d2144328e1d618f54cd38540f5ee50671f6a208.png", - "aggregators": ["PancakeCoinMarketCap", "Rubic", "Rango"], - "occurrences": 3 - }, - "0xde6ed03f9706b0a49ff165a09853310c88d687c0": { - "address": "0xde6ed03f9706b0a49ff165a09853310c88d687c0", - "symbol": "DDY", - "decimals": 18, - "name": "AltsDaddy", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xde6ed03f9706b0a49ff165a09853310c88d687c0.png", - "aggregators": ["CoinGecko", "Rubic", "Sonarwatch"], - "occurrences": 3 - }, - "0x64da67a12a46f1ddf337393e2da12ed0a507ad3d": { - "address": "0x64da67a12a46f1ddf337393e2da12ed0a507ad3d", - "symbol": "BNBFROG", - "decimals": 9, - "name": "BNB Frog Inu", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x64da67a12a46f1ddf337393e2da12ed0a507ad3d.png", - "aggregators": ["PancakeCoinMarketCap", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x6e61579c22f9a6da63a33e819f29b6697d2a126e": { - "address": "0x6e61579c22f9a6da63a33e819f29b6697d2a126e", - "symbol": "ROCKETFI", - "decimals": 9, - "name": "RocketFi", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x6e61579c22f9a6da63a33e819f29b6697d2a126e.png", - "aggregators": ["PancakeCoinMarketCap", "Rubic", "Sonarwatch"], - "occurrences": 3 - }, - "0xb1957bdba889686ebde631df970ece6a7571a1b6": { - "address": "0xb1957bdba889686ebde631df970ece6a7571a1b6", - "symbol": "DTG", - "decimals": 9, - "name": "Defi Tiger", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xb1957bdba889686ebde631df970ece6a7571a1b6.png", - "aggregators": ["PancakeCoinMarketCap", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x441f06c76fd62b8a243fcec2fc3b6b4de34e875c": { - "address": "0x441f06c76fd62b8a243fcec2fc3b6b4de34e875c", - "symbol": "FH", - "decimals": 18, - "name": "Fullhouse.gg", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x441f06c76fd62b8a243fcec2fc3b6b4de34e875c.png", - "aggregators": ["CoinGecko", "Rubic", "Sonarwatch"], - "occurrences": 3 - }, - "0x0e4197e42ba77bc2a84627087c1006ab1254fae8": { - "address": "0x0e4197e42ba77bc2a84627087c1006ab1254fae8", - "symbol": "BABYGROKX", - "decimals": 9, - "name": "BabyGrok X", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x0e4197e42ba77bc2a84627087c1006ab1254fae8.png", - "aggregators": ["CoinGecko", "Rubic", "Sonarwatch"], - "occurrences": 3 - }, - "0xd5eeec1a534c35c418b44bb28e4d5a602f1a22de": { - "address": "0xd5eeec1a534c35c418b44bb28e4d5a602f1a22de", - "symbol": "IGT", - "decimals": 18, - "name": "Infinitar Governance Token", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xd5eeec1a534c35c418b44bb28e4d5a602f1a22de.png", - "aggregators": ["CoinGecko", "Rubic", "Rango"], - "occurrences": 3 - }, - "0xf86af2fbcf6a0479b21b1d3a4af3893f63207fe7": { - "address": "0xf86af2fbcf6a0479b21b1d3a4af3893f63207fe7", - "symbol": "GOUT", - "decimals": 18, - "name": "GOUT", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xf86af2fbcf6a0479b21b1d3a4af3893f63207fe7.png", - "aggregators": ["CoinGecko", "Rubic", "Sonarwatch"], - "occurrences": 3 - }, - "0x635d44f246156ed1080cb470877256c847673f19": { - "address": "0x635d44f246156ed1080cb470877256c847673f19", - "symbol": "WBAI", - "decimals": 18, - "name": "WhiteBridge Network", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x635d44f246156ed1080cb470877256c847673f19.png", - "aggregators": ["PancakeExtended", "Rubic", "Sonarwatch"], - "occurrences": 3 - }, - "0xceb24c99579e6140517d59c8dd4f5b36d84ed6de": { - "address": "0xceb24c99579e6140517d59c8dd4f5b36d84ed6de", - "symbol": "PCD ", - "decimals": 18, - "name": "Phecda", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xceb24c99579e6140517d59c8dd4f5b36d84ed6de.png", - "aggregators": ["CoinGecko", "Rubic", "Rango"], - "occurrences": 3 - }, - "0xe8c6a28a9ed7c2b8358d41a7cf679fb5e7ba15a2": { - "address": "0xe8c6a28a9ed7c2b8358d41a7cf679fb5e7ba15a2", - "symbol": "UNIFI", - "decimals": 18, - "name": "UNIFI", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xe8c6a28a9ed7c2b8358d41a7cf679fb5e7ba15a2.png", - "aggregators": ["CoinGecko", "Rubic", "Sonarwatch"], - "occurrences": 3 - }, - "0x5bebf2b9ca7f25983b0cbe2a9e681804da034558": { - "address": "0x5bebf2b9ca7f25983b0cbe2a9e681804da034558", - "symbol": "BABYCHEEMS", - "decimals": 9, - "name": "Baby Cheems", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x5bebf2b9ca7f25983b0cbe2a9e681804da034558.png", - "aggregators": ["CoinGecko", "Rubic", "Rango"], - "occurrences": 3 - }, - "0xdbe3ea3639077a837e767c5d82730254fc933e41": { - "address": "0xdbe3ea3639077a837e767c5d82730254fc933e41", - "symbol": "MLP", - "decimals": 18, - "name": "Matrix Layer Protocol", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xdbe3ea3639077a837e767c5d82730254fc933e41.png", - "aggregators": ["CoinGecko", "Rubic", "Sonarwatch"], - "occurrences": 3 - }, - "0xdea0b8ad5806d8be6ea38ba4e5fc36118808eb04": { - "address": "0xdea0b8ad5806d8be6ea38ba4e5fc36118808eb04", - "symbol": "CNX", - "decimals": 18, - "name": "CNX", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xdea0b8ad5806d8be6ea38ba4e5fc36118808eb04.png", - "aggregators": ["PancakeCoinMarketCap", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x5bfdaa3f7c28b9994b56135403bf1acea02595b0": { - "address": "0x5bfdaa3f7c28b9994b56135403bf1acea02595b0", - "symbol": "COW", - "decimals": 18, - "name": "COW", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x5bfdaa3f7c28b9994b56135403bf1acea02595b0.png", - "aggregators": ["CoinGecko", "Rubic", "Rango"], - "occurrences": 3 - }, - "0xade6057fcafa57d6d51ffa341c64ce4814995995": { - "address": "0xade6057fcafa57d6d51ffa341c64ce4814995995", - "symbol": "BZPR1", - "decimals": 18, - "name": "Backed ZPR1 $ 1-3 Month T-Bill", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xade6057fcafa57d6d51ffa341c64ce4814995995.png", - "aggregators": ["CoinGecko", "Rubic", "Sonarwatch"], - "occurrences": 3 - }, - "0x0f76d32cdccdcbd602a55af23eaf58fd1ee17245": { - "address": "0x0f76d32cdccdcbd602a55af23eaf58fd1ee17245", - "symbol": "BERNA", - "decimals": 18, - "name": "Backed ERNA $ Bond", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x0f76d32cdccdcbd602a55af23eaf58fd1ee17245.png", - "aggregators": ["CoinGecko", "Rubic", "Sonarwatch"], - "occurrences": 3 - }, - "0x40f85d6040df96ea14cd41142bcd244e14cf76f6": { - "address": "0x40f85d6040df96ea14cd41142bcd244e14cf76f6", - "symbol": "USDC.Z", - "decimals": 18, - "name": "USD Coin Bridged ZED20", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x40f85d6040df96ea14cd41142bcd244e14cf76f6.png", - "aggregators": ["CoinGecko", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x6a68abc18806cdf5665e16fca665c4fe3cf1bd13": { - "address": "0x6a68abc18806cdf5665e16fca665c4fe3cf1bd13", - "symbol": "OPULENCE", - "decimals": 18, - "name": "OPULENCE", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x6a68abc18806cdf5665e16fca665c4fe3cf1bd13.png", - "aggregators": ["PancakeCoinGecko", "Rubic", "Sonarwatch"], - "occurrences": 3 - }, - "0x3f95aa88ddbb7d9d484aa3d482bf0a80009c52c9": { - "address": "0x3f95aa88ddbb7d9d484aa3d482bf0a80009c52c9", - "symbol": "BERNX", - "decimals": 18, - "name": "Backed ERNX € Bond", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x3f95aa88ddbb7d9d484aa3d482bf0a80009c52c9.png", - "aggregators": ["CoinGecko", "Rubic", "Sonarwatch"], - "occurrences": 3 - }, - "0x30c60b20c25b2810ca524810467a0c342294fc61": { - "address": "0x30c60b20c25b2810ca524810467a0c342294fc61", - "symbol": "TAIKO", - "decimals": 18, - "name": "Taiko Token", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x30c60b20c25b2810ca524810467a0c342294fc61.png", - "aggregators": ["PancakeExtended", "Rubic", "Rango"], - "occurrences": 3 - }, - "0xd26889f63094ba5a9d32666cdf5ba381acfad6a6": { - "address": "0xd26889f63094ba5a9d32666cdf5ba381acfad6a6", - "symbol": "FNXAI", - "decimals": 18, - "name": "Finanx AI", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xd26889f63094ba5a9d32666cdf5ba381acfad6a6.png", - "aggregators": ["CoinGecko", "Rubic", "Rango"], - "occurrences": 3 - }, - "0xba9425ec55ee0e72216d18e0ad8bbba2553bfb60": { - "address": "0xba9425ec55ee0e72216d18e0ad8bbba2553bfb60", - "symbol": "REUSD", - "decimals": 18, - "name": "REUSD", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xba9425ec55ee0e72216d18e0ad8bbba2553bfb60.png", - "aggregators": ["CoinGecko", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x8b4e28607bdcacbf937f81f29e3dafe7bc1d7c0b": { - "address": "0x8b4e28607bdcacbf937f81f29e3dafe7bc1d7c0b", - "symbol": "STONEUSD", - "decimals": 18, - "name": "StakeStone USD", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x8b4e28607bdcacbf937f81f29e3dafe7bc1d7c0b.png", - "aggregators": ["CoinGecko", "Rubic", "Rango"], - "occurrences": 3 - }, - "0xca30c93b02514f86d5c86a6e375e3a330b435fb5": { - "address": "0xca30c93b02514f86d5c86a6e375e3a330b435fb5", - "symbol": "BIB01", - "decimals": 18, - "name": "Backed IB01 $ Treasury Bond 0-1yr", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xca30c93b02514f86d5c86a6e375e3a330b435fb5.png", - "aggregators": ["CoinGecko", "Rubic", "Sonarwatch"], - "occurrences": 3 - }, - "0x87d00066cf131ff54b72b134a217d5401e5392b6": { - "address": "0x87d00066cf131ff54b72b134a217d5401e5392b6", - "symbol": "PUFFER", - "decimals": 18, - "name": "PUFFER", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x87d00066cf131ff54b72b134a217d5401e5392b6.png", - "aggregators": ["PancakeExtended", "Socket", "Rubic"], - "occurrences": 3 - }, - "0x46deb1af1e93a3e5e9a277dcc4818d9e0ade242d": { - "address": "0x46deb1af1e93a3e5e9a277dcc4818d9e0ade242d", - "symbol": "SKIBIDI", - "decimals": 6, - "name": "Skibidi Dop Dop", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x46deb1af1e93a3e5e9a277dcc4818d9e0ade242d.png", - "aggregators": ["CoinGecko", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x14d72634328c4d03bba184a48081df65f1911279": { - "address": "0x14d72634328c4d03bba184a48081df65f1911279", - "symbol": "VBILL", - "decimals": 6, - "name": "VBILL", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x14d72634328c4d03bba184a48081df65f1911279.png", - "aggregators": ["CoinGecko", "Rubic", "Rango"], - "occurrences": 3 - }, - "0xbe1936a67f503e0eaf2434b0cf9f4e3d7100008a": { - "address": "0xbe1936a67f503e0eaf2434b0cf9f4e3d7100008a", - "symbol": "PROS", - "decimals": 18, - "name": "Prospective", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xbe1936a67f503e0eaf2434b0cf9f4e3d7100008a.png", - "aggregators": ["PancakeCoinMarketCap", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x8e9d4cea39299323fe8eda678cad449718556c4e": { - "address": "0x8e9d4cea39299323fe8eda678cad449718556c4e", - "symbol": "SYRUPUSDT", - "decimals": 6, - "name": "Syrup USDT", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x8e9d4cea39299323fe8eda678cad449718556c4e.png", - "aggregators": ["CoinGecko", "LiFi", "Rubic"], - "occurrences": 3 - }, - "0xa25896b34c9ea0a3da53ca0640bf6b5772e0bf2d": { - "address": "0xa25896b34c9ea0a3da53ca0640bf6b5772e0bf2d", - "symbol": "$AEONODEX", - "decimals": 9, - "name": "AEONODEX", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xa25896b34c9ea0a3da53ca0640bf6b5772e0bf2d.png", - "aggregators": ["PancakeCoinGecko", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x105dd4727c09feace2158ed125fa45382058df6c": { - "address": "0x105dd4727c09feace2158ed125fa45382058df6c", - "symbol": "$CATA", - "decimals": 9, - "name": "CATA BSC", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x105dd4727c09feace2158ed125fa45382058df6c.png", - "aggregators": ["PancakeCoinGecko", "Rubic", "Rango"], - "occurrences": 3 - }, - "0xfce692762e907e80a061c01631d15ba7328eaaaa": { - "address": "0xfce692762e907e80a061c01631d15ba7328eaaaa", - "symbol": "$MONKE", - "decimals": 0, - "name": "Monkecoin", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xfce692762e907e80a061c01631d15ba7328eaaaa.png", - "aggregators": ["PancakeCoinGecko", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x596a1017af27593e0ab371f74e36dc923f3b2c11": { - "address": "0x596a1017af27593e0ab371f74e36dc923f3b2c11", - "symbol": "$NINJAPEPE", - "decimals": 18, - "name": "NinjaPepe", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x596a1017af27593e0ab371f74e36dc923f3b2c11.png", - "aggregators": ["PancakeCoinGecko", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x2a5da6b2e641484b1233e69109ddaaa330551e90": { - "address": "0x2a5da6b2e641484b1233e69109ddaaa330551e90", - "symbol": "$RBET", - "decimals": 18, - "name": "RangerBet", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x2a5da6b2e641484b1233e69109ddaaa330551e90.png", - "aggregators": ["PancakeCoinGecko", "Rubic", "Rango"], - "occurrences": 3 - }, - "0xddd394707fc1af81d98f132825df713dd9bb494e": { - "address": "0xddd394707fc1af81d98f132825df713dd9bb494e", - "symbol": "$SOULB", - "decimals": 18, - "name": "SOULB ID TOKEN", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xddd394707fc1af81d98f132825df713dd9bb494e.png", - "aggregators": ["PancakeCoinGecko", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x4628587cd13d50eef72ec485cdc88f66c0196436": { - "address": "0x4628587cd13d50eef72ec485cdc88f66c0196436", - "symbol": "AET", - "decimals": 18, - "name": "AET", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x4628587cd13d50eef72ec485cdc88f66c0196436.png", - "aggregators": ["PancakeCoinGecko", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x5ee91759f20155c953f29284b7e96d2b05679f95": { - "address": "0x5ee91759f20155c953f29284b7e96d2b05679f95", - "symbol": "AMAR", - "decimals": 18, - "name": "Amar Token", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x5ee91759f20155c953f29284b7e96d2b05679f95.png", - "aggregators": ["PancakeCoinGecko", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x68d806380ce01e994f7583d796d0aea9ab470219": { - "address": "0x68d806380ce01e994f7583d796d0aea9ab470219", - "symbol": "AN", - "decimals": 18, - "name": "AANN ai", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x68d806380ce01e994f7583d796d0aea9ab470219.png", - "aggregators": ["PancakeCoinGecko", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x6db034647c94a73f7f4d6dbeb818cd796551238c": { - "address": "0x6db034647c94a73f7f4d6dbeb818cd796551238c", - "symbol": "ATC", - "decimals": 18, - "name": "Autochain", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x6db034647c94a73f7f4d6dbeb818cd796551238c.png", - "aggregators": ["PancakeCoinGecko", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x46f063d5dcf1378e4ca3dca992450cacf64603eb": { - "address": "0x46f063d5dcf1378e4ca3dca992450cacf64603eb", - "symbol": "B-DAO", - "decimals": 18, - "name": "Box DAO", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x46f063d5dcf1378e4ca3dca992450cacf64603eb.png", - "aggregators": ["PancakeCoinGecko", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x5896c58eb385604c33f4c5f93d547d1d0cc746e8": { - "address": "0x5896c58eb385604c33f4c5f93d547d1d0cc746e8", - "symbol": "BABYGROKCEO", - "decimals": 9, - "name": "Baby Grok CEO", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x5896c58eb385604c33f4c5f93d547d1d0cc746e8.png", - "aggregators": ["PancakeCoinGecko", "Rubic", "Rango"], - "occurrences": 3 - }, - "0xf6d0840e6c21180dc7831edeafaa33292c16a587": { - "address": "0xf6d0840e6c21180dc7831edeafaa33292c16a587", - "symbol": "BART", - "decimals": 18, - "name": "Ballswapper Accelerator Reflection", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xf6d0840e6c21180dc7831edeafaa33292c16a587.png", - "aggregators": ["PancakeCoinGecko", "Rubic", "Rango"], - "occurrences": 3 - }, - "0xf40cb2efc2e015c55da85d23fde18975edbdf99a": { - "address": "0xf40cb2efc2e015c55da85d23fde18975edbdf99a", - "symbol": "BAYE", - "decimals": 18, - "name": "Bayesian", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xf40cb2efc2e015c55da85d23fde18975edbdf99a.png", - "aggregators": ["PancakeCoinGecko", "Rubic", "Rango"], - "occurrences": 3 - }, - "0xb0458283033e5a3f7867f409477f53754b667dcc": { - "address": "0xb0458283033e5a3f7867f409477f53754b667dcc", - "symbol": "BBLURT", - "decimals": 18, - "name": "BBlurt Token", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xb0458283033e5a3f7867f409477f53754b667dcc.png", - "aggregators": ["PancakeCoinGecko", "Rubic", "Rango"], - "occurrences": 3 - }, - "0xe612fd8a8456d7fe1f3a4c93f7db1a620d6dc3d4": { - "address": "0xe612fd8a8456d7fe1f3a4c93f7db1a620d6dc3d4", - "symbol": "BCHEC", - "decimals": 18, - "name": "Bitchemical", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xe612fd8a8456d7fe1f3a4c93f7db1a620d6dc3d4.png", - "aggregators": ["PancakeCoinGecko", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x684eafeb7e5be043842d892980695c68e15152b7": { - "address": "0x684eafeb7e5be043842d892980695c68e15152b7", - "symbol": "BEET", - "decimals": 18, - "name": "Flappybee", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x684eafeb7e5be043842d892980695c68e15152b7.png", - "aggregators": ["PancakeCoinGecko", "Rubic", "Rango"], - "occurrences": 3 - }, - "0xfe1d8816a1c4431f14cdf1d20e3e0c3812dce3e0": { - "address": "0xfe1d8816a1c4431f14cdf1d20e3e0c3812dce3e0", - "symbol": "PEPEBNBS", - "decimals": 18, - "name": "PEPEBNBS", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xfe1d8816a1c4431f14cdf1d20e3e0c3812dce3e0.png", - "aggregators": ["PancakeCoinGecko", "Rubic", "Sonarwatch"], - "occurrences": 3 - }, - "0x850606b482a9d5e1be25a89d988a7eb05b613cc2": { - "address": "0x850606b482a9d5e1be25a89d988a7eb05b613cc2", - "symbol": "BNBTIGER", - "decimals": 8, - "name": "Bnb Tiger Inu", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x850606b482a9d5e1be25a89d988a7eb05b613cc2.png", - "aggregators": ["PancakeCoinGecko", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x9792f67b919d0694edfcb69294872e392bfbb0f9": { - "address": "0x9792f67b919d0694edfcb69294872e392bfbb0f9", - "symbol": "BOTC", - "decimals": 18, - "name": "Botccoin Chain", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x9792f67b919d0694edfcb69294872e392bfbb0f9.png", - "aggregators": ["PancakeCoinGecko", "Rubic", "Rango"], - "occurrences": 3 - }, - "0xd7f64df62b984547c03dd7ad161043f45a744a77": { - "address": "0xd7f64df62b984547c03dd7ad161043f45a744a77", - "symbol": "BSH", - "decimals": 6, - "name": "Banana Superhero", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xd7f64df62b984547c03dd7ad161043f45a744a77.png", - "aggregators": ["PancakeCoinGecko", "Rubic", "Rango"], - "occurrences": 3 - }, - "0xb236b181590b15ae841976f036cff64c9a1f8b9d": { - "address": "0xb236b181590b15ae841976f036cff64c9a1f8b9d", - "symbol": "BW", - "decimals": 18, - "name": "BLWise", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xb236b181590b15ae841976f036cff64c9a1f8b9d.png", - "aggregators": ["PancakeCoinGecko", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x6e64fcf15be3eb71c3d42acf44d85bb119b2d98b": { - "address": "0x6e64fcf15be3eb71c3d42acf44d85bb119b2d98b", - "symbol": "CBON", - "decimals": 18, - "name": "CADINU Bonus", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x6e64fcf15be3eb71c3d42acf44d85bb119b2d98b.png", - "aggregators": ["PancakeCoinGecko", "Rubic", "Rango"], - "occurrences": 3 - }, - "0xf86d4743fc1de2a6bef2d733158edb9b72bd16ba": { - "address": "0xf86d4743fc1de2a6bef2d733158edb9b72bd16ba", - "symbol": "CTO", - "decimals": 9, - "name": "Chief Troll Officer", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xf86d4743fc1de2a6bef2d733158edb9b72bd16ba.png", - "aggregators": ["PancakeCoinGecko", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x3a7bea5d56bbcdc599827444786c370cf4d62dfa": { - "address": "0x3a7bea5d56bbcdc599827444786c370cf4d62dfa", - "symbol": "CTUS", - "decimals": 9, - "name": "Contractus", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x3a7bea5d56bbcdc599827444786c370cf4d62dfa.png", - "aggregators": ["PancakeCoinGecko", "Rubic", "Rango"], - "occurrences": 3 - }, - "0xe6f786f4a2a82cab3fdef8d6a45a6c6ee90322cf": { - "address": "0xe6f786f4a2a82cab3fdef8d6a45a6c6ee90322cf", - "symbol": "CZPW", - "decimals": 18, - "name": "CZPOW", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xe6f786f4a2a82cab3fdef8d6a45a6c6ee90322cf.png", - "aggregators": ["PancakeCoinGecko", "Rubic", "Rango"], - "occurrences": 3 - }, - "0xf6b53b4c982b9b7e87af9dc5c66c85117a5df303": { - "address": "0xf6b53b4c982b9b7e87af9dc5c66c85117a5df303", - "symbol": "DB", - "decimals": 8, - "name": "Denarius Binance Token", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xf6b53b4c982b9b7e87af9dc5c66c85117a5df303.png", - "aggregators": ["PancakeCoinGecko", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x2528a195d09eea15e07bb9cbbce62bedbb5ef721": { - "address": "0x2528a195d09eea15e07bb9cbbce62bedbb5ef721", - "symbol": "DGW", - "decimals": 18, - "name": "DegenWin", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x2528a195d09eea15e07bb9cbbce62bedbb5ef721.png", - "aggregators": ["PancakeCoinGecko", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x2574646118b5694faafcb9dcbfdfc1206c9b6936": { - "address": "0x2574646118b5694faafcb9dcbfdfc1206c9b6936", - "symbol": "EGOLD", - "decimals": 18, - "name": "ARYZE eGold", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x2574646118b5694faafcb9dcbfdfc1206c9b6936.png", - "aggregators": ["PancakeCoinGecko", "Rubic", "Rango"], - "occurrences": 3 - }, - "0xaf55e53cfa099a59aa30554fe106f33c47564a25": { - "address": "0xaf55e53cfa099a59aa30554fe106f33c47564a25", - "symbol": "EMAGIC", - "decimals": 18, - "name": "ElvishMagic 2.0", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xaf55e53cfa099a59aa30554fe106f33c47564a25.png", - "aggregators": ["PancakeCoinMarketCap", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x06f96469fd2b81f43e26e061635177b66ac45280": { - "address": "0x06f96469fd2b81f43e26e061635177b66ac45280", - "symbol": "ENSUE", - "decimals": 18, - "name": "Ensue", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x06f96469fd2b81f43e26e061635177b66ac45280.png", - "aggregators": ["PancakeCoinGecko", "Rubic", "Rango"], - "occurrences": 3 - }, - "0xf6c2d8d863a325846ac4f37d2c4432f6683ae442": { - "address": "0xf6c2d8d863a325846ac4f37d2c4432f6683ae442", - "symbol": "FAST", - "decimals": 18, - "name": "Fastswap BSC ", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xf6c2d8d863a325846ac4f37d2c4432f6683ae442.png", - "aggregators": ["PancakeCoinGecko", "Rubic", "Rango"], - "occurrences": 3 - }, - "0xc8316fa07150e254281331a84b2198594b005e25": { - "address": "0xc8316fa07150e254281331a84b2198594b005e25", - "symbol": "FBT", - "decimals": 18, - "name": "Fitburn FBT", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xc8316fa07150e254281331a84b2198594b005e25.png", - "aggregators": ["PancakeCoinGecko", "Rubic", "Rango"], - "occurrences": 3 - }, - "0xedfee2f15ce844cbcf764a05fb7c911e2d999999": { - "address": "0xedfee2f15ce844cbcf764a05fb7c911e2d999999", - "symbol": "FIERDRAGON", - "decimals": 18, - "name": "FierDragon", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xedfee2f15ce844cbcf764a05fb7c911e2d999999.png", - "aggregators": ["PancakeCoinGecko", "Rubic", "Rango"], - "occurrences": 3 - }, - "0xaed361021d6fb2ef2ce65049e7b0e814ce5fa2c1": { - "address": "0xaed361021d6fb2ef2ce65049e7b0e814ce5fa2c1", - "symbol": "FINX", - "decimals": 18, - "name": "FINX", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xaed361021d6fb2ef2ce65049e7b0e814ce5fa2c1.png", - "aggregators": ["PancakeCoinGecko", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x297b695bef42588b15e25f45727a6012738503af": { - "address": "0x297b695bef42588b15e25f45727a6012738503af", - "symbol": "FT", - "decimals": 18, - "name": "FUEL TOKEN", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x297b695bef42588b15e25f45727a6012738503af.png", - "aggregators": ["PancakeCoinGecko", "Rubic", "Rango"], - "occurrences": 3 - }, - "0xde4addcc213f6750faabdad59c00a2eb57352737": { - "address": "0xde4addcc213f6750faabdad59c00a2eb57352737", - "symbol": "GAC", - "decimals": 18, - "name": "Greenart Coin", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xde4addcc213f6750faabdad59c00a2eb57352737.png", - "aggregators": ["PancakeCoinGecko", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x431d14283a0b9e1acb7bb28d883f4a7b99f9606c": { - "address": "0x431d14283a0b9e1acb7bb28d883f4a7b99f9606c", - "symbol": "GACH", - "decimals": 18, - "name": "Game Changer", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x431d14283a0b9e1acb7bb28d883f4a7b99f9606c.png", - "aggregators": ["PancakeCoinGecko", "Rubic", "Rango"], - "occurrences": 3 - }, - "0xb265cba9bd6e34fa412bd8b4c1514c902c0e7e7d": { - "address": "0xb265cba9bd6e34fa412bd8b4c1514c902c0e7e7d", - "symbol": "GIGGLE", - "decimals": 18, - "name": "Giggle Academy", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xb265cba9bd6e34fa412bd8b4c1514c902c0e7e7d.png", - "aggregators": ["PancakeCoinGecko", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x25a2b2327e9c787e138708b24df58bce4d9ab3f6": { - "address": "0x25a2b2327e9c787e138708b24df58bce4d9ab3f6", - "symbol": "GLD", - "decimals": 18, - "name": "GoldenCoin", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x25a2b2327e9c787e138708b24df58bce4d9ab3f6.png", - "aggregators": ["PancakeCoinGecko", "Rubic", "Rango"], - "occurrences": 3 - }, - "0xe5c85b60ff243cfdb067be4078e477ac04b594e9": { - "address": "0xe5c85b60ff243cfdb067be4078e477ac04b594e9", - "symbol": "GM", - "decimals": 8, - "name": "GhostMarket", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xe5c85b60ff243cfdb067be4078e477ac04b594e9.png", - "aggregators": ["PancakeCoinGecko", "Rubic", "Rango"], - "occurrences": 3 - }, - "0xa8de5067fa003febb7a006589dc7fe097ce5e2f9": { - "address": "0xa8de5067fa003febb7a006589dc7fe097ce5e2f9", - "symbol": "GORILLA", - "decimals": 9, - "name": "GORILLA", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xa8de5067fa003febb7a006589dc7fe097ce5e2f9.png", - "aggregators": ["PancakeCoinGecko", "Rubic", "Rango"], - "occurrences": 3 - }, - "0xb470d3bc05f88022bd151346591d51ac12b1eeb6": { - "address": "0xb470d3bc05f88022bd151346591d51ac12b1eeb6", - "symbol": "HM", - "decimals": 9, - "name": "HorizonMarketing", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xb470d3bc05f88022bd151346591d51ac12b1eeb6.png", - "aggregators": ["PancakeCoinGecko", "Rubic", "Rango"], - "occurrences": 3 - }, - "0xb2c1528a5ea04528ac6a3e481d38c19003cb71d4": { - "address": "0xb2c1528a5ea04528ac6a3e481d38c19003cb71d4", - "symbol": "IMO", - "decimals": 18, - "name": "IMonster", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xb2c1528a5ea04528ac6a3e481d38c19003cb71d4.png", - "aggregators": ["PancakeCoinGecko", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x535154b23670a8c96e68230cd59e7754884fd67e": { - "address": "0x535154b23670a8c96e68230cd59e7754884fd67e", - "symbol": "IN", - "decimals": 18, - "name": "INVESTIVE", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x535154b23670a8c96e68230cd59e7754884fd67e.png", - "aggregators": ["PancakeCoinGecko", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x0c35c6d7c7a21f3299285840710437c50f608b19": { - "address": "0x0c35c6d7c7a21f3299285840710437c50f608b19", - "symbol": "ION", - "decimals": 8, - "name": "ZIY N SAS", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x0c35c6d7c7a21f3299285840710437c50f608b19.png", - "aggregators": ["PancakeCoinGecko", "Rubic", "Rango"], - "occurrences": 3 - }, - "0xbfc83596b4da935a0d89b6ff49f46b3ef563fafd": { - "address": "0xbfc83596b4da935a0d89b6ff49f46b3ef563fafd", - "symbol": "IRBIS", - "decimals": 18, - "name": "Snow Leopard IRBIS", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xbfc83596b4da935a0d89b6ff49f46b3ef563fafd.png", - "aggregators": ["PancakeCoinGecko", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x471ea49dd8e60e697f4cac262b5fafcc307506e4": { - "address": "0x471ea49dd8e60e697f4cac262b5fafcc307506e4", - "symbol": "KOM", - "decimals": 8, - "name": "Kommunitas", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x471ea49dd8e60e697f4cac262b5fafcc307506e4.png", - "aggregators": ["PancakeCoinGecko", "Rubic", "Rango"], - "occurrences": 3 - }, - "0xff022329c5ff7d0aee3ba099a0878789aecd090d": { - "address": "0xff022329c5ff7d0aee3ba099a0878789aecd090d", - "symbol": "KUNI", - "decimals": 18, - "name": "Kuni", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xff022329c5ff7d0aee3ba099a0878789aecd090d.png", - "aggregators": ["PancakeCoinGecko", "Rubic", "Rango"], - "occurrences": 3 - }, - "0xa8a33e365d5a03c94c3258a10dd5d6dfe686941b": { - "address": "0xa8a33e365d5a03c94c3258a10dd5d6dfe686941b", - "symbol": "KY", - "decimals": 18, - "name": "Kaoya Token", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xa8a33e365d5a03c94c3258a10dd5d6dfe686941b.png", - "aggregators": ["PancakeCoinGecko", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x052775cf897b3ec894f26b8d801c514123c305d1": { - "address": "0x052775cf897b3ec894f26b8d801c514123c305d1", - "symbol": "LAR", - "decimals": 18, - "name": "LaRace Governance Token", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x052775cf897b3ec894f26b8d801c514123c305d1.png", - "aggregators": ["PancakeCoinGecko", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x92f038ea40164fc622f622150ad3ff9daa335192": { - "address": "0x92f038ea40164fc622f622150ad3ff9daa335192", - "symbol": "LCOM", - "decimals": 18, - "name": "LCOM OLD ", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x92f038ea40164fc622f622150ad3ff9daa335192.png", - "aggregators": ["PancakeCoinGecko", "Rubic", "Rango"], - "occurrences": 3 - }, - "0xfadc157f0d98e3051cfad0653e720e5889db2b92": { - "address": "0xfadc157f0d98e3051cfad0653e720e5889db2b92", - "symbol": "LIFC", - "decimals": 18, - "name": "Life Coin", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xfadc157f0d98e3051cfad0653e720e5889db2b92.png", - "aggregators": ["PancakeCoinGecko", "Rubic", "Rango"], - "occurrences": 3 - }, - "0xa5d6a00d4d16229345f7f4b3a38db1752c3aa09c": { - "address": "0xa5d6a00d4d16229345f7f4b3a38db1752c3aa09c", - "symbol": "LORDZ", - "decimals": 9, - "name": "MemeLordz", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xa5d6a00d4d16229345f7f4b3a38db1752c3aa09c.png", - "aggregators": ["PancakeCoinGecko", "Rubic", "Rango"], - "occurrences": 3 - }, - "0xb2a3ff23bc36b962ca5f2ca8fef118ef7f83c152": { - "address": "0xb2a3ff23bc36b962ca5f2ca8fef118ef7f83c152", - "symbol": "MDN", - "decimals": 18, - "name": "Maidaan", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xb2a3ff23bc36b962ca5f2ca8fef118ef7f83c152.png", - "aggregators": ["PancakeCoinGecko", "Rubic", "Rango"], - "occurrences": 3 - }, - "0xfb52370e0fcac5bfca44b4e6c09a97be1875605f": { - "address": "0xfb52370e0fcac5bfca44b4e6c09a97be1875605f", - "symbol": "METABOT", - "decimals": 18, - "name": "MetaBot", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xfb52370e0fcac5bfca44b4e6c09a97be1875605f.png", - "aggregators": ["PancakeCoinGecko", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x10adf50e15611d5a4de3bd21f0db7f3491a8ae0f": { - "address": "0x10adf50e15611d5a4de3bd21f0db7f3491a8ae0f", - "symbol": "MNTG", - "decimals": 18, - "name": "Monetas OLD ", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x10adf50e15611d5a4de3bd21f0db7f3491a8ae0f.png", - "aggregators": ["PancakeCoinGecko", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x6e7573e492f31107ef98029276922854e919ca28": { - "address": "0x6e7573e492f31107ef98029276922854e919ca28", - "symbol": "MSC", - "decimals": 18, - "name": "Matrix SmartChain", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x6e7573e492f31107ef98029276922854e919ca28.png", - "aggregators": ["PancakeCoinGecko", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x2b168f6beeaa101aaf414f3320f2fdfdc9fdf04b": { - "address": "0x2b168f6beeaa101aaf414f3320f2fdfdc9fdf04b", - "symbol": "PCH", - "decimals": 6, - "name": "PigCoinHero", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x2b168f6beeaa101aaf414f3320f2fdfdc9fdf04b.png", - "aggregators": ["PancakeCoinGecko", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x9032e5689038332d0315228a27fb3b6517b088bb": { - "address": "0x9032e5689038332d0315228a27fb3b6517b088bb", - "symbol": "PINKNINJA", - "decimals": 6, - "name": "PinkNinja", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x9032e5689038332d0315228a27fb3b6517b088bb.png", - "aggregators": ["PancakeCoinGecko", "Rubic", "Rango"], - "occurrences": 3 - }, - "0xea4821632b139b7f08e37533d8152d50976618c6": { - "address": "0xea4821632b139b7f08e37533d8152d50976618c6", - "symbol": "RUG", - "decimals": 18, - "name": "Rug", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xea4821632b139b7f08e37533d8152d50976618c6.png", - "aggregators": ["PancakeCoinGecko", "Rubic", "Rango"], - "occurrences": 3 - }, - "0xb0a1c87b890fe171371f81a59f7ed4636e82595d": { - "address": "0xb0a1c87b890fe171371f81a59f7ed4636e82595d", - "symbol": "RWX", - "decimals": 18, - "name": "RealWorldX", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xb0a1c87b890fe171371f81a59f7ed4636e82595d.png", - "aggregators": ["PancakeCoinGecko", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x640bb7b0716a3c58b29f83a10e0b4b51580693d3": { - "address": "0x640bb7b0716a3c58b29f83a10e0b4b51580693d3", - "symbol": "RYZE", - "decimals": 18, - "name": "ARYZE", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x640bb7b0716a3c58b29f83a10e0b4b51580693d3.png", - "aggregators": ["PancakeCoinGecko", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x708baac4b235d3f62bd18e58c0594b8b20b2ed5b": { - "address": "0x708baac4b235d3f62bd18e58c0594b8b20b2ed5b", - "symbol": "SATO", - "decimals": 18, - "name": "Satoshi Finance", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x708baac4b235d3f62bd18e58c0594b8b20b2ed5b.png", - "aggregators": ["PancakeCoinGecko", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x1b01a1ae8f233fd3d39fff9825c74b05caa84a7d": { - "address": "0x1b01a1ae8f233fd3d39fff9825c74b05caa84a7d", - "symbol": "SHREKAI", - "decimals": 6, - "name": "Shrek AI", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x1b01a1ae8f233fd3d39fff9825c74b05caa84a7d.png", - "aggregators": ["PancakeCoinGecko", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x8ae8663cd26d58bf51ccd78cd95cca3fda1690de": { - "address": "0x8ae8663cd26d58bf51ccd78cd95cca3fda1690de", - "symbol": "SINDI", - "decimals": 18, - "name": "SINDI", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x8ae8663cd26d58bf51ccd78cd95cca3fda1690de.png", - "aggregators": ["PancakeCoinGecko", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x1123e16abea3a59e16d2b5614668481f7d15a706": { - "address": "0x1123e16abea3a59e16d2b5614668481f7d15a706", - "symbol": "SLM", - "decimals": 18, - "name": "SLM Games", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x1123e16abea3a59e16d2b5614668481f7d15a706.png", - "aggregators": ["PancakeCoinGecko", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x16b3e050e9e2f0ac4f1bea1b3e4fdc43d7f062dd": { - "address": "0x16b3e050e9e2f0ac4f1bea1b3e4fdc43d7f062dd", - "symbol": "SMBR", - "decimals": 9, - "name": "Sombra", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x16b3e050e9e2f0ac4f1bea1b3e4fdc43d7f062dd.png", - "aggregators": ["PancakeCoinGecko", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x24ea2693e6af2e732154fc8c8e3e8aca23a4ef22": { - "address": "0x24ea2693e6af2e732154fc8c8e3e8aca23a4ef22", - "symbol": "SMT", - "decimals": 18, - "name": "Starmine", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x24ea2693e6af2e732154fc8c8e3e8aca23a4ef22.png", - "aggregators": ["PancakeCoinGecko", "Rubic", "Rango"], - "occurrences": 3 - }, - "0xb4ebc6fd70a852d052163f25949c70fb9506d6a0": { - "address": "0xb4ebc6fd70a852d052163f25949c70fb9506d6a0", - "symbol": "SOCAP", - "decimals": 18, - "name": "Social Capitalism", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xb4ebc6fd70a852d052163f25949c70fb9506d6a0.png", - "aggregators": ["PancakeCoinGecko", "Rubic", "Rango"], - "occurrences": 3 - }, - "0xf8f1cecc95a3441725243350172269299ae133b8": { - "address": "0xf8f1cecc95a3441725243350172269299ae133b8", - "symbol": "SQD", - "decimals": 6, - "name": "SQUARED", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xf8f1cecc95a3441725243350172269299ae133b8.png", - "aggregators": ["PancakeCoinGecko", "Rubic", "Rango"], - "occurrences": 3 - }, - "0xd0e98827d675a3231c2ea69d1f3ed12270df1435": { - "address": "0xd0e98827d675a3231c2ea69d1f3ed12270df1435", - "symbol": "SRBP", - "decimals": 18, - "name": "Super Rare Ball Portion", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xd0e98827d675a3231c2ea69d1f3ed12270df1435.png", - "aggregators": ["PancakeCoinGecko", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x127415d59e508c70a3990175c8267eb9c49b84fc": { - "address": "0x127415d59e508c70a3990175c8267eb9c49b84fc", - "symbol": "STAY", - "decimals": 18, - "name": "STAY", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x127415d59e508c70a3990175c8267eb9c49b84fc.png", - "aggregators": ["PancakeCoinGecko", "Rubic", "Rango"], - "occurrences": 3 - }, - "0xa35b5c783117e107644056f5d39faa468e9d8d47": { - "address": "0xa35b5c783117e107644056f5d39faa468e9d8d47", - "symbol": "STK", - "decimals": 18, - "name": "STARCK", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xa35b5c783117e107644056f5d39faa468e9d8d47.png", - "aggregators": ["PancakeCoinGecko", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x9334e37fad7c41cd6c9565bff3a97ce31cee52a3": { - "address": "0x9334e37fad7c41cd6c9565bff3a97ce31cee52a3", - "symbol": "SWYCH", - "decimals": 18, - "name": "Swych", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x9334e37fad7c41cd6c9565bff3a97ce31cee52a3.png", - "aggregators": ["PancakeCoinGecko", "Rubic", "Rango"], - "occurrences": 3 - }, - "0xca01f271694224d9b82084c40590dbc75241796b": { - "address": "0xca01f271694224d9b82084c40590dbc75241796b", - "symbol": "SWYP", - "decimals": 18, - "name": "SWYP Foundation", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xca01f271694224d9b82084c40590dbc75241796b.png", - "aggregators": ["PancakeCoinGecko", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x1354e1c028ad93ed9992ee3bfd3ee5608489439c": { - "address": "0x1354e1c028ad93ed9992ee3bfd3ee5608489439c", - "symbol": "TFBX", - "decimals": 18, - "name": "Truefeedback", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x1354e1c028ad93ed9992ee3bfd3ee5608489439c.png", - "aggregators": ["PancakeCoinGecko", "Rubic", "Rango"], - "occurrences": 3 - }, - "0xd60c9d31fcd3a70b6711c76012894d026f6ffa5f": { - "address": "0xd60c9d31fcd3a70b6711c76012894d026f6ffa5f", - "symbol": "TGMT", - "decimals": 18, - "name": "Tiger Meme Token", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xd60c9d31fcd3a70b6711c76012894d026f6ffa5f.png", - "aggregators": ["PancakeCoinGecko", "Rubic", "Rango"], - "occurrences": 3 - }, - "0xfd435840ed3a4ea061ea3a4cb3c8617823ee2049": { - "address": "0xfd435840ed3a4ea061ea3a4cb3c8617823ee2049", - "symbol": "TIF", - "decimals": 18, - "name": "This Is Fine", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xfd435840ed3a4ea061ea3a4cb3c8617823ee2049.png", - "aggregators": ["PancakeCoinGecko", "Rubic", "Rango"], - "occurrences": 3 - }, - "0xc9f8c639135fc1412f011cc84810635d6bbca19d": { - "address": "0xc9f8c639135fc1412f011cc84810635d6bbca19d", - "symbol": "TLIFE", - "decimals": 8, - "name": "TLifeCoin", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xc9f8c639135fc1412f011cc84810635d6bbca19d.png", - "aggregators": ["PancakeCoinGecko", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x75adb3f6d788c344c409278263f70c5b60feb33a": { - "address": "0x75adb3f6d788c344c409278263f70c5b60feb33a", - "symbol": "TUNA", - "decimals": 18, - "name": "Fishing Tuna", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x75adb3f6d788c344c409278263f70c5b60feb33a.png", - "aggregators": ["PancakeCoinGecko", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x13a08a0d90b84a099a7914012aa8628da696769a": { - "address": "0x13a08a0d90b84a099a7914012aa8628da696769a", - "symbol": "UMAREUM", - "decimals": 18, - "name": "UMAREUM", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x13a08a0d90b84a099a7914012aa8628da696769a.png", - "aggregators": ["PancakeCoinGecko", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x6aaed0beca7687f40b8af1272717a1c1b6a27bf3": { - "address": "0x6aaed0beca7687f40b8af1272717a1c1b6a27bf3", - "symbol": "VNPT", - "decimals": 18, - "name": "Vitruvian Nexus Protocol Tokens", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x6aaed0beca7687f40b8af1272717a1c1b6a27bf3.png", - "aggregators": ["PancakeCoinGecko", "Rubic", "Rango"], - "occurrences": 3 - }, - "0xdad237477643b5bf0bea14616747ba00d0212f8c": { - "address": "0xdad237477643b5bf0bea14616747ba00d0212f8c", - "symbol": "WATER", - "decimals": 18, - "name": "WATER", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xdad237477643b5bf0bea14616747ba00d0212f8c.png", - "aggregators": ["PancakeCoinGecko", "Rubic", "Rango"], - "occurrences": 3 - }, - "0xad9a1e7b34da8a17dec7328b151a4d3627f21d6b": { - "address": "0xad9a1e7b34da8a17dec7328b151a4d3627f21d6b", - "symbol": "WLD", - "decimals": 18, - "name": "WiLD", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xad9a1e7b34da8a17dec7328b151a4d3627f21d6b.png", - "aggregators": ["PancakeCoinGecko", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x12996c7b23c4012149bf9f5663ff9aa08a9cf2e4": { - "address": "0x12996c7b23c4012149bf9f5663ff9aa08a9cf2e4", - "symbol": "WSH", - "decimals": 18, - "name": "White Yorkshire", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x12996c7b23c4012149bf9f5663ff9aa08a9cf2e4.png", - "aggregators": ["PancakeCoinGecko", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x5587b8e1cfc8ed45a68aeaddcae001251a880cd0": { - "address": "0x5587b8e1cfc8ed45a68aeaddcae001251a880cd0", - "symbol": "ZKEVM", - "decimals": 18, - "name": "zkEVM Chain", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x5587b8e1cfc8ed45a68aeaddcae001251a880cd0.png", - "aggregators": ["PancakeCoinGecko", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x63d0761ab9705ce0af64e78664a64e550cc53b92": { - "address": "0x63d0761ab9705ce0af64e78664a64e550cc53b92", - "symbol": "ZKGAP", - "decimals": 18, - "name": "ZKGAP", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x63d0761ab9705ce0af64e78664a64e550cc53b92.png", - "aggregators": ["PancakeCoinGecko", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x2a49840ba994486dd3ceb93e1124308f7226f219": { - "address": "0x2a49840ba994486dd3ceb93e1124308f7226f219", - "symbol": "GARFIELD", - "decimals": 18, - "name": "Garfield", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x2a49840ba994486dd3ceb93e1124308f7226f219.png", - "aggregators": ["PancakeCoinMarketCap", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x3e61c7fb137765e7cfcc4399d2d7d5bc1838d6b1": { - "address": "0x3e61c7fb137765e7cfcc4399d2d7d5bc1838d6b1", - "symbol": "$MAXX", - "decimals": 18, - "name": "Maxx", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x3e61c7fb137765e7cfcc4399d2d7d5bc1838d6b1.png", - "aggregators": ["PancakeCoinMarketCap", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x4477b28e8b797ebaebd2539bb24290fdfcc27807": { - "address": "0x4477b28e8b797ebaebd2539bb24290fdfcc27807", - "symbol": "$RFG", - "decimals": 9, - "name": "$RFG", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x4477b28e8b797ebaebd2539bb24290fdfcc27807.png", - "aggregators": ["PancakeCoinMarketCap", "Rubic", "Rango"], - "occurrences": 3 - }, - "0xb27607d439751555003506455dd9e763a53e5b1d": { - "address": "0xb27607d439751555003506455dd9e763a53e5b1d", - "symbol": "TIMESERIES", - "decimals": 9, - "name": "Timeseries AI", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xb27607d439751555003506455dd9e763a53e5b1d.png", - "aggregators": ["PancakeCoinMarketCap", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x768ed2e8b05e3c1fd8361f1ba769750e108d7af4": { - "address": "0x768ed2e8b05e3c1fd8361f1ba769750e108d7af4", - "symbol": "VTR", - "decimals": 18, - "name": "Virtual Trader", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x768ed2e8b05e3c1fd8361f1ba769750e108d7af4.png", - "aggregators": ["PancakeCoinMarketCap", "Rubic", "Rango"], - "occurrences": 3 - }, - "0xed0353560c43f3e0336d197e4081c81e1015dd51": { - "address": "0xed0353560c43f3e0336d197e4081c81e1015dd51", - "symbol": "3CEO", - "decimals": 18, - "name": "FLOKI SHIBA PEPE CEO", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xed0353560c43f3e0336d197e4081c81e1015dd51.png", - "aggregators": ["PancakeCoinMarketCap", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x6c5fe6e99d2484db7e4bf34f365aba42d0e4dc20": { - "address": "0x6c5fe6e99d2484db7e4bf34f365aba42d0e4dc20", - "symbol": "ABS", - "decimals": 18, - "name": "Absorber", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x6c5fe6e99d2484db7e4bf34f365aba42d0e4dc20.png", - "aggregators": ["PancakeCoinMarketCap", "TrustWallet", "Rubic"], - "occurrences": 3 - }, - "0xc7ad2ce38f208eed77a368613c62062fce88f125": { - "address": "0xc7ad2ce38f208eed77a368613c62062fce88f125", - "symbol": "AER", - "decimals": 9, - "name": "Aerdrop", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xc7ad2ce38f208eed77a368613c62062fce88f125.png", - "aggregators": ["PancakeCoinMarketCap", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x2aa7e601a67d9c57bada24e186632539663b4945": { - "address": "0x2aa7e601a67d9c57bada24e186632539663b4945", - "symbol": "AET", - "decimals": 18, - "name": "AET", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x2aa7e601a67d9c57bada24e186632539663b4945.png", - "aggregators": ["PancakeCoinMarketCap", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x3548e7c2af658957692ec0397eed431e85bf952b": { - "address": "0x3548e7c2af658957692ec0397eed431e85bf952b", - "symbol": "AI", - "decimals": 9, - "name": "GPT AI", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x3548e7c2af658957692ec0397eed431e85bf952b.png", - "aggregators": ["PancakeCoinMarketCap", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x0cd5c0e24a29225b2e0eae25c3ab8f62ef70df9d": { - "address": "0x0cd5c0e24a29225b2e0eae25c3ab8f62ef70df9d", - "symbol": "AIFLOKI", - "decimals": 9, - "name": "AI Floki", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x0cd5c0e24a29225b2e0eae25c3ab8f62ef70df9d.png", - "aggregators": ["PancakeCoinMarketCap", "Rubic", "Rango"], - "occurrences": 3 - }, - "0xeb05ac86959725f9e7284cf67b052ba82aeb446e": { - "address": "0xeb05ac86959725f9e7284cf67b052ba82aeb446e", - "symbol": "AIGPT", - "decimals": 18, - "name": "All In GPT", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xeb05ac86959725f9e7284cf67b052ba82aeb446e.png", - "aggregators": ["PancakeCoinMarketCap", "Rubic", "Rango"], - "occurrences": 3 - }, - "0xa2214039c2ccb9b86d351000ba2f126f45ce44a4": { - "address": "0xa2214039c2ccb9b86d351000ba2f126f45ce44a4", - "symbol": "ALONMARS", - "decimals": 18, - "name": "AIon Mars", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xa2214039c2ccb9b86d351000ba2f126f45ce44a4.png", - "aggregators": ["PancakeCoinMarketCap", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x08080b4da7857e523453b140af3ff7277f81bb26": { - "address": "0x08080b4da7857e523453b140af3ff7277f81bb26", - "symbol": "AITK", - "decimals": 6, - "name": "AITK", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x08080b4da7857e523453b140af3ff7277f81bb26.png", - "aggregators": ["PancakeCoinMarketCap", "Rubic", "Rango"], - "occurrences": 3 - }, - "0xfe2f3580856376377c14e2287fa15bcb703e5fb5": { - "address": "0xfe2f3580856376377c14e2287fa15bcb703e5fb5", - "symbol": "ALT", - "decimals": 9, - "name": "Alphabet", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xfe2f3580856376377c14e2287fa15bcb703e5fb5.png", - "aggregators": ["PancakeCoinMarketCap", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x1d84850c9716c5130b114f0795a4552036b55bd4": { - "address": "0x1d84850c9716c5130b114f0795a4552036b55bd4", - "symbol": "ANB", - "decimals": 18, - "name": "Anubit", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x1d84850c9716c5130b114f0795a4552036b55bd4.png", - "aggregators": ["PancakeCoinMarketCap", "Rubic", "Rango"], - "occurrences": 3 - }, - "0xa1943bc4a417ffd2e9e11a97383fa3f9548291c3": { - "address": "0xa1943bc4a417ffd2e9e11a97383fa3f9548291c3", - "symbol": "API", - "decimals": 9, - "name": "API", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xa1943bc4a417ffd2e9e11a97383fa3f9548291c3.png", - "aggregators": ["PancakeCoinMarketCap", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x2e8138054d64917703af28d81629499318a047fa": { - "address": "0x2e8138054d64917703af28d81629499318a047fa", - "symbol": "APX", - "decimals": 18, - "name": "APX", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x2e8138054d64917703af28d81629499318a047fa.png", - "aggregators": ["PancakeCoinMarketCap", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x888ed27c3ab248868c29dabe3d1b3d7cc5c89c5b": { - "address": "0x888ed27c3ab248868c29dabe3d1b3d7cc5c89c5b", - "symbol": "ARCS", - "decimals": 18, - "name": "Arbitrum Charts", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x888ed27c3ab248868c29dabe3d1b3d7cc5c89c5b.png", - "aggregators": ["PancakeCoinMarketCap", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x48a356df5140ed37034afada32d03b74d4271d6a": { - "address": "0x48a356df5140ed37034afada32d03b74d4271d6a", - "symbol": "ARMOUR", - "decimals": 18, - "name": "Armour Wallet", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x48a356df5140ed37034afada32d03b74d4271d6a.png", - "aggregators": ["PancakeCoinMarketCap", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x8f2588f8627107b233d65c7b65c93c17ac11c871": { - "address": "0x8f2588f8627107b233d65c7b65c93c17ac11c871", - "symbol": "ASTROPEPE", - "decimals": 18, - "name": "Astro Pepe", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x8f2588f8627107b233d65c7b65c93c17ac11c871.png", - "aggregators": ["PancakeCoinMarketCap", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x261c94f2d3cccae76f86f6c8f2c93785dd6ce022": { - "address": "0x261c94f2d3cccae76f86f6c8f2c93785dd6ce022", - "symbol": "ATH", - "decimals": 18, - "name": "AETHR Token", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x261c94f2d3cccae76f86f6c8f2c93785dd6ce022.png", - "aggregators": ["PancakeCoinMarketCap", "Socket", "Rango"], - "occurrences": 3 - }, - "0xf20f2ad6a36e9a4f585755aceb0da750de80ed4e": { - "address": "0xf20f2ad6a36e9a4f585755aceb0da750de80ed4e", - "symbol": "BABYRABBIT", - "decimals": 18, - "name": "Babyrabbit", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xf20f2ad6a36e9a4f585755aceb0da750de80ed4e.png", - "aggregators": ["PancakeCoinMarketCap", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x2d77863f3586e1e4e6d91706b6c8a1e1f628b4ad": { - "address": "0x2d77863f3586e1e4e6d91706b6c8a1e1f628b4ad", - "symbol": "BAI", - "decimals": 18, - "name": "Based AI", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x2d77863f3586e1e4e6d91706b6c8a1e1f628b4ad.png", - "aggregators": ["PancakeCoinMarketCap", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x4c496592fd52c2810651b4862cc9fe13940fea31": { - "address": "0x4c496592fd52c2810651b4862cc9fe13940fea31", - "symbol": "BALVEY", - "decimals": 9, - "name": "Baby Alvey", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x4c496592fd52c2810651b4862cc9fe13940fea31.png", - "aggregators": ["PancakeCoinMarketCap", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x31b79e34b32239f0c3604db4a451ce9256b92919": { - "address": "0x31b79e34b32239f0c3604db4a451ce9256b92919", - "symbol": "BAPTOS", - "decimals": 9, - "name": "Baby Aptos", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x31b79e34b32239f0c3604db4a451ce9256b92919.png", - "aggregators": ["PancakeCoinMarketCap", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x8800e9902879ac7fb9823086d1749030c9a5eb91": { - "address": "0x8800e9902879ac7fb9823086d1749030c9a5eb91", - "symbol": "BBL", - "decimals": 18, - "name": "Basket Legends", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x8800e9902879ac7fb9823086d1749030c9a5eb91.png", - "aggregators": ["PancakeCoinMarketCap", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x8d875abca035858c901fb3b61a98179aa2ca7ed9": { - "address": "0x8d875abca035858c901fb3b61a98179aa2ca7ed9", - "symbol": "BCEO", - "decimals": 9, - "name": "BabyDoge CEO", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x8d875abca035858c901fb3b61a98179aa2ca7ed9.png", - "aggregators": ["PancakeCoinMarketCap", "Rubic", "Rango"], - "occurrences": 3 - }, - "0xa7751516e06e1715264306a51437774bf94266dc": { - "address": "0xa7751516e06e1715264306a51437774bf94266dc", - "symbol": "BIC", - "decimals": 18, - "name": "Billiard Crypto", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xa7751516e06e1715264306a51437774bf94266dc.png", - "aggregators": ["PancakeCoinMarketCap", "Rubic", "Rango"], - "occurrences": 3 - }, - "0xdd8b490001d081ed065239644dae8d1a77b8a91f": { - "address": "0xdd8b490001d081ed065239644dae8d1a77b8a91f", - "symbol": "BITV", - "decimals": 18, - "name": "BitValley", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xdd8b490001d081ed065239644dae8d1a77b8a91f.png", - "aggregators": ["PancakeCoinMarketCap", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x419264d79b92b8de3c710ab0cd3406cd11990e02": { - "address": "0x419264d79b92b8de3c710ab0cd3406cd11990e02", - "symbol": "BLC", - "decimals": 9, - "name": "Blockscape", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x419264d79b92b8de3c710ab0cd3406cd11990e02.png", - "aggregators": ["PancakeCoinMarketCap", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x755a1c9b62126b289338733aa4d6e9669de2b989": { - "address": "0x755a1c9b62126b289338733aa4d6e9669de2b989", - "symbol": "BLET", - "decimals": 18, - "name": "Blockearth", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x755a1c9b62126b289338733aa4d6e9669de2b989.png", - "aggregators": ["PancakeCoinMarketCap", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x064c8e55aa484adbd58ca2d43343ef50137473b7": { - "address": "0x064c8e55aa484adbd58ca2d43343ef50137473b7", - "symbol": "BMBX", - "decimals": 18, - "name": "Mobie bMBX", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x064c8e55aa484adbd58ca2d43343ef50137473b7.png", - "aggregators": ["PancakeCoinMarketCap", "Socket", "Rubic"], - "occurrences": 3 - }, - "0x034d4fda3860ea9cc0274e602fb9d9732712480f": { - "address": "0x034d4fda3860ea9cc0274e602fb9d9732712480f", - "symbol": "BONY", - "decimals": 18, - "name": "Bloody Bunny", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x034d4fda3860ea9cc0274e602fb9d9732712480f.png", - "aggregators": ["PancakeCoinMarketCap", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x74d23db8fd35fd20e1964f7197147c8a22d92a8d": { - "address": "0x74d23db8fd35fd20e1964f7197147c8a22d92a8d", - "symbol": "NAXAR", - "decimals": 18, - "name": "Utility Token Boxch", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x74d23db8fd35fd20e1964f7197147c8a22d92a8d.png", - "aggregators": ["PancakeCoinMarketCap", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x098a138fd939ae6bde61deb9ab82c838e85d98e3": { - "address": "0x098a138fd939ae6bde61deb9ab82c838e85d98e3", - "symbol": "BPC", - "decimals": 9, - "name": "Billionaires Pixel Club", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x098a138fd939ae6bde61deb9ab82c838e85d98e3.png", - "aggregators": ["PancakeCoinMarketCap", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x3aeff4e27e1f9144ed75ba65a80bdfee345f413e": { - "address": "0x3aeff4e27e1f9144ed75ba65a80bdfee345f413e", - "symbol": "BUMN", - "decimals": 9, - "name": "BUMooN", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x3aeff4e27e1f9144ed75ba65a80bdfee345f413e.png", - "aggregators": ["PancakeCoinMarketCap", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x9bee0c15676a65ef3c8cdb38cb3dd31c675bbd12": { - "address": "0x9bee0c15676a65ef3c8cdb38cb3dd31c675bbd12", - "symbol": "BVC", - "decimals": 18, - "name": "BattleVerse", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x9bee0c15676a65ef3c8cdb38cb3dd31c675bbd12.png", - "aggregators": ["PancakeCoinMarketCap", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x4937e7d93dd8d8e76eb83659f109cdc633ffdee9": { - "address": "0x4937e7d93dd8d8e76eb83659f109cdc633ffdee9", - "symbol": "CATCEO", - "decimals": 9, - "name": "CATCEO", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x4937e7d93dd8d8e76eb83659f109cdc633ffdee9.png", - "aggregators": ["PancakeCoinMarketCap", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x2789604fe261adc1aed3927f41277d8bffe33c36": { - "address": "0x2789604fe261adc1aed3927f41277d8bffe33c36", - "symbol": "CATCHY", - "decimals": 9, - "name": "Catchy", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x2789604fe261adc1aed3927f41277d8bffe33c36.png", - "aggregators": ["PancakeCoinMarketCap", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x116204ba071bb5c8b203e2a5f903f557b54ef577": { - "address": "0x116204ba071bb5c8b203e2a5f903f557b54ef577", - "symbol": "CAVAT", - "decimals": 18, - "name": "Cavatar", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x116204ba071bb5c8b203e2a5f903f557b54ef577.png", - "aggregators": ["PancakeCoinMarketCap", "Rubic", "Rango"], - "occurrences": 3 - }, - "0xd96e43fb44be20e9e9a5872ce1904ebaa9975ead": { - "address": "0xd96e43fb44be20e9e9a5872ce1904ebaa9975ead", - "symbol": "CAWCEO", - "decimals": 18, - "name": "CAW CEO", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xd96e43fb44be20e9e9a5872ce1904ebaa9975ead.png", - "aggregators": ["PancakeCoinMarketCap", "Rubic", "Rango"], - "occurrences": 3 - }, - "0xfdfc1ab8bf1e2d6920caf405aa488987a077fc4b": { - "address": "0xfdfc1ab8bf1e2d6920caf405aa488987a077fc4b", - "symbol": "CBYTE", - "decimals": 18, - "name": "CBYTE", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xfdfc1ab8bf1e2d6920caf405aa488987a077fc4b.png", - "aggregators": ["PancakeCoinMarketCap", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x1baadfd674c641149b0d5a39e697ec877ab47083": { - "address": "0x1baadfd674c641149b0d5a39e697ec877ab47083", - "symbol": "CCGDS", - "decimals": 18, - "name": "CCGDS", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x1baadfd674c641149b0d5a39e697ec877ab47083.png", - "aggregators": ["PancakeCoinMarketCap", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x5754a836708fe2bbdaf8dd71d13f5d1a59bcec6f": { - "address": "0x5754a836708fe2bbdaf8dd71d13f5d1a59bcec6f", - "symbol": "CCT", - "decimals": 18, - "name": "Collective Care", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x5754a836708fe2bbdaf8dd71d13f5d1a59bcec6f.png", - "aggregators": ["PancakeCoinMarketCap", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x4e5ef3493bcfb5e7548913c3f2a40623be7d7f98": { - "address": "0x4e5ef3493bcfb5e7548913c3f2a40623be7d7f98", - "symbol": "CD", - "decimals": 9, - "name": "Cash Driver", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x4e5ef3493bcfb5e7548913c3f2a40623be7d7f98.png", - "aggregators": ["PancakeCoinMarketCap", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x52f8d048ba279556dd981036e7fa0345b5a90c7a": { - "address": "0x52f8d048ba279556dd981036e7fa0345b5a90c7a", - "symbol": "CGC", - "decimals": 18, - "name": "HeroesTD CGC", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x52f8d048ba279556dd981036e7fa0345b5a90c7a.png", - "aggregators": ["PancakeCoinMarketCap", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x1c5a65ededa96e7daf0715d978cc643184fbbd6c": { - "address": "0x1c5a65ededa96e7daf0715d978cc643184fbbd6c", - "symbol": "CHAOS", - "decimals": 18, - "name": "Warrior Empires", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x1c5a65ededa96e7daf0715d978cc643184fbbd6c.png", - "aggregators": ["PancakeCoinMarketCap", "Rubic", "Rango"], - "occurrences": 3 - }, - "0xbc420bc2c015d1579f77e4a5c68270b75f2ddb9d": { - "address": "0xbc420bc2c015d1579f77e4a5c68270b75f2ddb9d", - "symbol": "CHE", - "decimals": 18, - "name": "CherrySwap Token", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xbc420bc2c015d1579f77e4a5c68270b75f2ddb9d.png", - "aggregators": ["PancakeCoinMarketCap", "Rubic", "Rango"], - "occurrences": 3 - }, - "0xd3a26b1329caa71b3c8175b454caf61e5b49c9ae": { - "address": "0xd3a26b1329caa71b3c8175b454caf61e5b49c9ae", - "symbol": "CHICA", - "decimals": 18, - "name": "CHICA", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xd3a26b1329caa71b3c8175b454caf61e5b49c9ae.png", - "aggregators": ["PancakeCoinMarketCap", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x4c888e116d57a32f84865f3789dcb131fdc9fab6": { - "address": "0x4c888e116d57a32f84865f3789dcb131fdc9fab6", - "symbol": "CIRUS", - "decimals": 18, - "name": "Cirus", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x4c888e116d57a32f84865f3789dcb131fdc9fab6.png", - "aggregators": ["PancakeCoinMarketCap", "Socket", "Rubic"], - "occurrences": 3 - }, - "0x5c10e4660ec45a89de85a1fd1b22355b0398fb66": { - "address": "0x5c10e4660ec45a89de85a1fd1b22355b0398fb66", - "symbol": "CLOUD", - "decimals": 18, - "name": "Cloud Token", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x5c10e4660ec45a89de85a1fd1b22355b0398fb66.png", - "aggregators": ["PancakeCoinMarketCap", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x77140a6f53c09c36abf10ef947655317a7670a3b": { - "address": "0x77140a6f53c09c36abf10ef947655317a7670a3b", - "symbol": "CMAI", - "decimals": 18, - "name": "CoinMatch Ai", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x77140a6f53c09c36abf10ef947655317a7670a3b.png", - "aggregators": ["PancakeCoinMarketCap", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x8c74f24de882f7a6ffe96e657e8ee10b1917849c": { - "address": "0x8c74f24de882f7a6ffe96e657e8ee10b1917849c", - "symbol": "CNYD", - "decimals": 18, - "name": "Chinese NY Dragon", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x8c74f24de882f7a6ffe96e657e8ee10b1917849c.png", - "aggregators": ["PancakeCoinMarketCap", "Rubic", "Rango"], - "occurrences": 3 - }, - "0xaf099ef77575a9f981660b1c9e3b78a3ba89ffd9": { - "address": "0xaf099ef77575a9f981660b1c9e3b78a3ba89ffd9", - "symbol": "COINSALE", - "decimals": 18, - "name": "CoinSale Token", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xaf099ef77575a9f981660b1c9e3b78a3ba89ffd9.png", - "aggregators": ["PancakeCoinMarketCap", "Rubic", "Rango"], - "occurrences": 3 - }, - "0xe0e0fbc7e8d881953d39cf899409410b50b8c924": { - "address": "0xe0e0fbc7e8d881953d39cf899409410b50b8c924", - "symbol": "CON", - "decimals": 9, - "name": "Coin of Nature", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xe0e0fbc7e8d881953d39cf899409410b50b8c924.png", - "aggregators": ["PancakeCoinMarketCap", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x365b475bc0eaf3c92f6b248b3f09d10f55ec900d": { - "address": "0x365b475bc0eaf3c92f6b248b3f09d10f55ec900d", - "symbol": "CORGICEO", - "decimals": 9, - "name": "CORGI CEO", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x365b475bc0eaf3c92f6b248b3f09d10f55ec900d.png", - "aggregators": ["PancakeCoinMarketCap", "Rubic", "Rango"], - "occurrences": 3 - }, - "0xb78e0ff3a82c487295074465ff714e45a6e7b39c": { - "address": "0xb78e0ff3a82c487295074465ff714e45a6e7b39c", - "symbol": "COSMIC", - "decimals": 18, - "name": "Cosmic Chain", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xb78e0ff3a82c487295074465ff714e45a6e7b39c.png", - "aggregators": ["PancakeCoinMarketCap", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x04260673729c5f2b9894a467736f3d85f8d34fc8": { - "address": "0x04260673729c5f2b9894a467736f3d85f8d34fc8", - "symbol": "CPAN", - "decimals": 18, - "name": "CPAN", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x04260673729c5f2b9894a467736f3d85f8d34fc8.png", - "aggregators": ["PancakeCoinMarketCap", "Rubic", "Rango"], - "occurrences": 3 - }, - "0xfbb4f2f342c6daab63ab85b0226716c4d1e26f36": { - "address": "0xfbb4f2f342c6daab63ab85b0226716c4d1e26f36", - "symbol": "CRACE", - "decimals": 18, - "name": "Coinracer", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xfbb4f2f342c6daab63ab85b0226716c4d1e26f36.png", - "aggregators": ["PancakeCoinMarketCap", "Rubic", "Rango"], - "occurrences": 3 - }, - "0xb8501a9a9aaae239a2490f44e00b284baa0b131a": { - "address": "0xb8501a9a9aaae239a2490f44e00b284baa0b131a", - "symbol": "CREMAT", - "decimals": 18, - "name": "Cremation Coin", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xb8501a9a9aaae239a2490f44e00b284baa0b131a.png", - "aggregators": ["PancakeCoinMarketCap", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x2ee8ca014fdab5f5d0436c866937d32ef97373b0": { - "address": "0x2ee8ca014fdab5f5d0436c866937d32ef97373b0", - "symbol": "CRIMSON", - "decimals": 18, - "name": "Crimson Network", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x2ee8ca014fdab5f5d0436c866937d32ef97373b0.png", - "aggregators": ["PancakeCoinMarketCap", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x78948a37bafb910e24a7cf4ccc242d5a6166ea46": { - "address": "0x78948a37bafb910e24a7cf4ccc242d5a6166ea46", - "symbol": "CYBERTRUCK", - "decimals": 9, - "name": "CYBERTRUCK", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x78948a37bafb910e24a7cf4ccc242d5a6166ea46.png", - "aggregators": ["PancakeCoinMarketCap", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x5cd0c2c744caf04cda258efc6558a3ed3defe97b": { - "address": "0x5cd0c2c744caf04cda258efc6558a3ed3defe97b", - "symbol": "CZR", - "decimals": 18, - "name": "CZRed", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x5cd0c2c744caf04cda258efc6558a3ed3defe97b.png", - "aggregators": ["PancakeCoinMarketCap", "LiFi", "Rubic"], - "occurrences": 3 - }, - "0x43bee29430a2dda4bc053dd5669a56efd6e0556a": { - "address": "0x43bee29430a2dda4bc053dd5669a56efd6e0556a", - "symbol": "DAI", - "decimals": 18, - "name": "DogeZila Ai", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x43bee29430a2dda4bc053dd5669a56efd6e0556a.png", - "aggregators": ["PancakeCoinMarketCap", "Rubic", "Rango"], - "occurrences": 3 - }, - "0xdfa1c5fcd4d64729cdf6d553b2fb1def11a7c689": { - "address": "0xdfa1c5fcd4d64729cdf6d553b2fb1def11a7c689", - "symbol": "DCO", - "decimals": 18, - "name": "DCOREUM", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xdfa1c5fcd4d64729cdf6d553b2fb1def11a7c689.png", - "aggregators": ["PancakeCoinMarketCap", "Rubic", "Rango"], - "occurrences": 3 - }, - "0xe1a0ce8b94c6a5e4791401086763d7bd0a6c18f5": { - "address": "0xe1a0ce8b94c6a5e4791401086763d7bd0a6c18f5", - "symbol": "DEFIAI", - "decimals": 18, - "name": "DeFiAI Token", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xe1a0ce8b94c6a5e4791401086763d7bd0a6c18f5.png", - "aggregators": ["PancakeCoinMarketCap", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x6c13a45101bd70561daf6186da86d7bdb018754f": { - "address": "0x6c13a45101bd70561daf6186da86d7bdb018754f", - "symbol": "DEWAE", - "decimals": 18, - "name": "DEWAE", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x6c13a45101bd70561daf6186da86d7bdb018754f.png", - "aggregators": ["PancakeCoinMarketCap", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x2a8557c1ca81573d33771d0f57a975c2388c5f38": { - "address": "0x2a8557c1ca81573d33771d0f57a975c2388c5f38", - "symbol": "DGC", - "decimals": 18, - "name": "MetaFishing", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x2a8557c1ca81573d33771d0f57a975c2388c5f38.png", - "aggregators": ["PancakeCoinMarketCap", "Rubic", "Rango"], - "occurrences": 3 - }, - "0xac55b04af8e9067d6c53785b34113e99e10c2a11": { - "address": "0xac55b04af8e9067d6c53785b34113e99e10c2a11", - "symbol": "DHD", - "decimals": 18, - "name": "Doom Hero Dao", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xac55b04af8e9067d6c53785b34113e99e10c2a11.png", - "aggregators": ["PancakeCoinMarketCap", "Rubic", "Rango"], - "occurrences": 3 - }, - "0xe2ecc66e14efa96e9c55945f79564f468882d24c": { - "address": "0xe2ecc66e14efa96e9c55945f79564f468882d24c", - "symbol": "DIS", - "decimals": 18, - "name": "Disney", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xe2ecc66e14efa96e9c55945f79564f468882d24c.png", - "aggregators": ["PancakeCoinMarketCap", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x6b9481fb5465ef9ab9347b332058d894ab09b2f6": { - "address": "0x6b9481fb5465ef9ab9347b332058d894ab09b2f6", - "symbol": "DNL", - "decimals": 18, - "name": "Dinoland Metaverse", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x6b9481fb5465ef9ab9347b332058d894ab09b2f6.png", - "aggregators": ["PancakeCoinMarketCap", "LiFi", "Rubic"], - "occurrences": 3 - }, - "0x0e9729a1db9e45ff08f64e6c4342be3921e993e0": { - "address": "0x0e9729a1db9e45ff08f64e6c4342be3921e993e0", - "symbol": "DOD", - "decimals": 18, - "name": "Day Of Defeat 2.0", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x0e9729a1db9e45ff08f64e6c4342be3921e993e0.png", - "aggregators": ["PancakeCoinMarketCap", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x182fd4f68695f1951018b5f8c1b2f778919ff0ce": { - "address": "0x182fd4f68695f1951018b5f8c1b2f778919ff0ce", - "symbol": "DPF", - "decimals": 9, - "name": "Dogepad Finance", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x182fd4f68695f1951018b5f8c1b2f778919ff0ce.png", - "aggregators": ["PancakeCoinMarketCap", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x556ee4eab4fbf6ddc4c05285966fb839f424c8a8": { - "address": "0x556ee4eab4fbf6ddc4c05285966fb839f424c8a8", - "symbol": "DROGGY", - "decimals": 18, - "name": "Droggy", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x556ee4eab4fbf6ddc4c05285966fb839f424c8a8.png", - "aggregators": ["PancakeCoinMarketCap", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x6d64010596f7ec3b40b40223a5f847a1b243fd99": { - "address": "0x6d64010596f7ec3b40b40223a5f847a1b243fd99", - "symbol": "DTA", - "decimals": 9, - "name": "Digital Trip Advisor", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x6d64010596f7ec3b40b40223a5f847a1b243fd99.png", - "aggregators": ["PancakeCoinMarketCap", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x6f1462bf17724d6f8551544d57e29bbbcbf3b1c1": { - "address": "0x6f1462bf17724d6f8551544d57e29bbbcbf3b1c1", - "symbol": "DUG", - "decimals": 9, - "name": "DUG", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x6f1462bf17724d6f8551544d57e29bbbcbf3b1c1.png", - "aggregators": ["PancakeCoinMarketCap", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x865a0e15ac5c309e7ea61410cebdea1df686dbb2": { - "address": "0x865a0e15ac5c309e7ea61410cebdea1df686dbb2", - "symbol": "DWT", - "decimals": 18, - "name": "DexWallet", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x865a0e15ac5c309e7ea61410cebdea1df686dbb2.png", - "aggregators": ["PancakeCoinMarketCap", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x5c0d0111ffc638802c9efccf55934d5c63ab3f79": { - "address": "0x5c0d0111ffc638802c9efccf55934d5c63ab3f79", - "symbol": "DYNA", - "decimals": 18, - "name": "Dynamic", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x5c0d0111ffc638802c9efccf55934d5c63ab3f79.png", - "aggregators": ["PancakeCoinMarketCap", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x33840024177a7daca3468912363bed8b425015c5": { - "address": "0x33840024177a7daca3468912363bed8b425015c5", - "symbol": "EBOX", - "decimals": 18, - "name": "ebox", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x33840024177a7daca3468912363bed8b425015c5.png", - "aggregators": ["PancakeCoinMarketCap", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x730cb2ba0f654ddec32470d265555f26fe545eb8": { - "address": "0x730cb2ba0f654ddec32470d265555f26fe545eb8", - "symbol": "EDAO", - "decimals": 18, - "name": "ElonDoge DAO", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x730cb2ba0f654ddec32470d265555f26fe545eb8.png", - "aggregators": ["PancakeCoinMarketCap", "Rubic", "Rango"], - "occurrences": 3 - }, - "0xda2e636a6b6d3eaacb3a5fb00f86ead84e0d908f": { - "address": "0xda2e636a6b6d3eaacb3a5fb00f86ead84e0d908f", - "symbol": "EDX", - "decimals": 18, - "name": "Equilibrium", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xda2e636a6b6d3eaacb3a5fb00f86ead84e0d908f.png", - "aggregators": ["PancakeCoinMarketCap", "Rubic", "Rango"], - "occurrences": 3 - }, - "0xa37100bb05271853766af8ed7a32ca20c8311acc": { - "address": "0xa37100bb05271853766af8ed7a32ca20c8311acc", - "symbol": "ELONMUSKCEO", - "decimals": 9, - "name": "Elon Musk CEO", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xa37100bb05271853766af8ed7a32ca20c8311acc.png", - "aggregators": ["PancakeCoinMarketCap", "Rubic", "Rango"], - "occurrences": 3 - }, - "0xae90ca218f9c3b1aa84af33a7907e4890ec6a167": { - "address": "0xae90ca218f9c3b1aa84af33a7907e4890ec6a167", - "symbol": "ELT", - "decimals": 18, - "name": "ECLAT", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xae90ca218f9c3b1aa84af33a7907e4890ec6a167.png", - "aggregators": ["PancakeCoinMarketCap", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x6cb8065f96d63630425fd95a408a0d6cd697c662": { - "address": "0x6cb8065f96d63630425fd95a408a0d6cd697c662", - "symbol": "EMBR", - "decimals": 18, - "name": "Embr", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x6cb8065f96d63630425fd95a408a0d6cd697c662.png", - "aggregators": ["PancakeCoinMarketCap", "Rubic", "Rango"], - "occurrences": 3 - }, - "0xe4f3252f268b6b5beae4b02a4b99b369bbea12f1": { - "address": "0xe4f3252f268b6b5beae4b02a4b99b369bbea12f1", - "symbol": "ENG", - "decimals": 18, - "name": "Enigma Gaming", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xe4f3252f268b6b5beae4b02a4b99b369bbea12f1.png", - "aggregators": ["PancakeCoinMarketCap", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x17bd2e09fa4585c15749f40bb32a6e3db58522ba": { - "address": "0x17bd2e09fa4585c15749f40bb32a6e3db58522ba", - "symbol": "ETHFIN", - "decimals": 18, - "name": "Ethernal Finance", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x17bd2e09fa4585c15749f40bb32a6e3db58522ba.png", - "aggregators": ["PancakeCoinMarketCap", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x459fab6be3b07558e28fecb07b64a481d0e8c6a3": { - "address": "0x459fab6be3b07558e28fecb07b64a481d0e8c6a3", - "symbol": "FAI", - "decimals": 18, - "name": "Flokiter", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x459fab6be3b07558e28fecb07b64a481d0e8c6a3.png", - "aggregators": ["PancakeCoinMarketCap", "Rubic", "Rango"], - "occurrences": 3 - }, - "0xb6d48fcef36e19681ee29896b19c1b6cbd1eab1b": { - "address": "0xb6d48fcef36e19681ee29896b19c1b6cbd1eab1b", - "symbol": "FAN", - "decimals": 18, - "name": "Fanadise", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xb6d48fcef36e19681ee29896b19c1b6cbd1eab1b.png", - "aggregators": ["PancakeCoinMarketCap", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x393c44a497706dde15996bb0c7bdf691a79de38a": { - "address": "0x393c44a497706dde15996bb0c7bdf691a79de38a", - "symbol": "FBL", - "decimals": 18, - "name": "FootballBattle", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x393c44a497706dde15996bb0c7bdf691a79de38a.png", - "aggregators": ["PancakeCoinMarketCap", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x14e0980675ada43085c6c69c3cd207a03e43549b": { - "address": "0x14e0980675ada43085c6c69c3cd207a03e43549b", - "symbol": "FDAO", - "decimals": 18, - "name": "Figure DAO", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x14e0980675ada43085c6c69c3cd207a03e43549b.png", - "aggregators": ["PancakeCoinMarketCap", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x85cec9d09529c4239dcd89018889238abdd3ede6": { - "address": "0x85cec9d09529c4239dcd89018889238abdd3ede6", - "symbol": "FDLS", - "decimals": 9, - "name": "FIDELIS", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x85cec9d09529c4239dcd89018889238abdd3ede6.png", - "aggregators": ["PancakeCoinMarketCap", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x1603441703472aff8cdf1871961176cc494588dc": { - "address": "0x1603441703472aff8cdf1871961176cc494588dc", - "symbol": "FINANCEAI", - "decimals": 18, - "name": "Finance AI", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x1603441703472aff8cdf1871961176cc494588dc.png", - "aggregators": ["PancakeCoinMarketCap", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x77922a521182a719a48ba650ac2a040269888888": { - "address": "0x77922a521182a719a48ba650ac2a040269888888", - "symbol": "FIT", - "decimals": 18, - "name": "FIT Token", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x77922a521182a719a48ba650ac2a040269888888.png", - "aggregators": ["PancakeCoinMarketCap", "Socket", "Rubic"], - "occurrences": 3 - }, - "0x73e8dd9d52bd26a2134698e2aff964e121f4759b": { - "address": "0x73e8dd9d52bd26a2134698e2aff964e121f4759b", - "symbol": "FITAI", - "decimals": 18, - "name": "GoFitterAI", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x73e8dd9d52bd26a2134698e2aff964e121f4759b.png", - "aggregators": ["PancakeCoinMarketCap", "Rubic", "Rango"], - "occurrences": 3 - }, - "0xe5765e33e349b2dcf22a37b2b4e87c10ad43f165": { - "address": "0xe5765e33e349b2dcf22a37b2b4e87c10ad43f165", - "symbol": "FLOC", - "decimals": 18, - "name": "Christmas Floki", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xe5765e33e349b2dcf22a37b2b4e87c10ad43f165.png", - "aggregators": ["PancakeCoinMarketCap", "Rubic", "Rango"], - "occurrences": 3 - }, - "0xdc8c8221b8e27dfda87a6d56dc5899a65087b6f4": { - "address": "0xdc8c8221b8e27dfda87a6d56dc5899a65087b6f4", - "symbol": "FLOKITA", - "decimals": 18, - "name": "FLOKITA", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xdc8c8221b8e27dfda87a6d56dc5899a65087b6f4.png", - "aggregators": ["PancakeCoinMarketCap", "Rubic", "Rango"], - "occurrences": 3 - }, - "0xae7300b51a8cd43d5b74be0dd5047715b7017e3e": { - "address": "0xae7300b51a8cd43d5b74be0dd5047715b7017e3e", - "symbol": "FOA", - "decimals": 18, - "name": "Fragments of arker", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xae7300b51a8cd43d5b74be0dd5047715b7017e3e.png", - "aggregators": ["PancakeCoinMarketCap", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x6507458bb53aec6be863161641ec28739c41cc97": { - "address": "0x6507458bb53aec6be863161641ec28739c41cc97", - "symbol": "FOOTBALLSTARS", - "decimals": 18, - "name": "FTS", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x6507458bb53aec6be863161641ec28739c41cc97.png", - "aggregators": ["PancakeCoinMarketCap", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x50ea9c9f88aeab9f554b8ffb4d7a1017957e866a": { - "address": "0x50ea9c9f88aeab9f554b8ffb4d7a1017957e866a", - "symbol": "FOXT", - "decimals": 18, - "name": "Fox Trading", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x50ea9c9f88aeab9f554b8ffb4d7a1017957e866a.png", - "aggregators": ["PancakeCoinMarketCap", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x0b98814e29a9731daed49d301e09aaf508408e28": { - "address": "0x0b98814e29a9731daed49d301e09aaf508408e28", - "symbol": "FROG", - "decimals": 9, - "name": "Frog Bsc", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x0b98814e29a9731daed49d301e09aaf508408e28.png", - "aggregators": ["PancakeCoinMarketCap", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x7806dad5651d657986f5cb27932d59d90f1646c7": { - "address": "0x7806dad5651d657986f5cb27932d59d90f1646c7", - "symbol": "FROGGO", - "decimals": 18, - "name": "FROGGO The Last Pepe", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x7806dad5651d657986f5cb27932d59d90f1646c7.png", - "aggregators": ["PancakeCoinMarketCap", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x0dbcec4214d7e9c316e0eb53991a43f42f432e15": { - "address": "0x0dbcec4214d7e9c316e0eb53991a43f42f432e15", - "symbol": "FXB", - "decimals": 18, - "name": "FxBox", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x0dbcec4214d7e9c316e0eb53991a43f42f432e15.png", - "aggregators": ["PancakeCoinMarketCap", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x77f2be773ca0887ba2b3ef8344c8cf13c98d8ca7": { - "address": "0x77f2be773ca0887ba2b3ef8344c8cf13c98d8ca7", - "symbol": "FYT", - "decimals": 18, - "name": "FloraChain", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x77f2be773ca0887ba2b3ef8344c8cf13c98d8ca7.png", - "aggregators": ["PancakeCoinMarketCap", "Rubic", "Rango"], - "occurrences": 3 - }, - "0xf300e4f1a193dd047b0c6747ad4e16dedf886297": { - "address": "0xf300e4f1a193dd047b0c6747ad4e16dedf886297", - "symbol": "GAMES", - "decimals": 18, - "name": "Gaming Stars", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xf300e4f1a193dd047b0c6747ad4e16dedf886297.png", - "aggregators": ["PancakeCoinMarketCap", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x6d830e1d0179b4fe656683c9d14c05f8cd95db75": { - "address": "0x6d830e1d0179b4fe656683c9d14c05f8cd95db75", - "symbol": "GART", - "decimals": 18, - "name": "Griffin Art Ecosystem", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x6d830e1d0179b4fe656683c9d14c05f8cd95db75.png", - "aggregators": ["PancakeCoinMarketCap", "Rubic", "Rango"], - "occurrences": 3 - }, - "0xb8d5cc1462bf5a28366d58ffd4d40d5d26030f3f": { - "address": "0xb8d5cc1462bf5a28366d58ffd4d40d5d26030f3f", - "symbol": "GBC", - "decimals": 18, - "name": "Green Block Token", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xb8d5cc1462bf5a28366d58ffd4d40d5d26030f3f.png", - "aggregators": ["PancakeCoinMarketCap", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x742f1fbec70b81ed0a32093d0c9054264fd850b2": { - "address": "0x742f1fbec70b81ed0a32093d0c9054264fd850b2", - "symbol": "GDE", - "decimals": 18, - "name": "GianniDoge Esport", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x742f1fbec70b81ed0a32093d0c9054264fd850b2.png", - "aggregators": ["PancakeCoinMarketCap", "Rubic", "Rango"], - "occurrences": 3 - }, - "0xdfdec49462f7d3c3b0a48e729f77a0645cdfa7c0": { - "address": "0xdfdec49462f7d3c3b0a48e729f77a0645cdfa7c0", - "symbol": "GEMS", - "decimals": 9, - "name": "Safegem.finance", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xdfdec49462f7d3c3b0a48e729f77a0645cdfa7c0.png", - "aggregators": ["PancakeCoinMarketCap", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x6f13b1fb6b2897bb40adbc09f7f6cfad181c0904": { - "address": "0x6f13b1fb6b2897bb40adbc09f7f6cfad181c0904", - "symbol": "GEURO", - "decimals": 18, - "name": "GEURO", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x6f13b1fb6b2897bb40adbc09f7f6cfad181c0904.png", - "aggregators": ["PancakeCoinMarketCap", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x2c8d970d7c8c878db422c4bcd7d2542104ecfa2c": { - "address": "0x2c8d970d7c8c878db422c4bcd7d2542104ecfa2c", - "symbol": "GEZY", - "decimals": 2, - "name": "EZZY GAME GEZY", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x2c8d970d7c8c878db422c4bcd7d2542104ecfa2c.png", - "aggregators": ["PancakeCoinMarketCap", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x65ad6a2288b2dd23e466226397c8f5d1794e58fc": { - "address": "0x65ad6a2288b2dd23e466226397c8f5d1794e58fc", - "symbol": "GFX", - "decimals": 18, - "name": "GamyFi", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x65ad6a2288b2dd23e466226397c8f5d1794e58fc.png", - "aggregators": ["PancakeCoinMarketCap", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x1fc71fe3e333d5262828f3d348c12c7e52306b8a": { - "address": "0x1fc71fe3e333d5262828f3d348c12c7e52306b8a", - "symbol": "GLR", - "decimals": 18, - "name": "Glory Finance", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x1fc71fe3e333d5262828f3d348c12c7e52306b8a.png", - "aggregators": ["PancakeCoinMarketCap", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x99e92123eb77bc8f999316f622e5222498438784": { - "address": "0x99e92123eb77bc8f999316f622e5222498438784", - "symbol": "GMT", - "decimals": 18, - "name": "Gambit", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x99e92123eb77bc8f999316f622e5222498438784.png", - "aggregators": ["PancakeCoinMarketCap", "Socket", "Rubic"], - "occurrences": 3 - }, - "0xde2a66c92583332e8e1f0aeeb03deb749a3fd33a": { - "address": "0xde2a66c92583332e8e1f0aeeb03deb749a3fd33a", - "symbol": "GOBLIN", - "decimals": 18, - "name": "Goblin", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xde2a66c92583332e8e1f0aeeb03deb749a3fd33a.png", - "aggregators": ["PancakeCoinMarketCap", "Rubic", "Rango"], - "occurrences": 3 - }, - "0xaddc5ce5cb80ea434e85c71589159716ab00b53c": { - "address": "0xaddc5ce5cb80ea434e85c71589159716ab00b53c", - "symbol": "GROKKY", - "decimals": 9, - "name": "GroKKy", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xaddc5ce5cb80ea434e85c71589159716ab00b53c.png", - "aggregators": ["PancakeCoinMarketCap", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x77774a06271d6a305caccdbc06f847def05c7777": { - "address": "0x77774a06271d6a305caccdbc06f847def05c7777", - "symbol": "GW", - "decimals": 18, - "name": "Gyrowin", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x77774a06271d6a305caccdbc06f847def05c7777.png", - "aggregators": ["PancakeCoinMarketCap", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x3cc20cf966b25be8538a8bc70e53c720c7133f35": { - "address": "0x3cc20cf966b25be8538a8bc70e53c720c7133f35", - "symbol": "GWINK", - "decimals": 18, - "name": "Genesis Wink", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x3cc20cf966b25be8538a8bc70e53c720c7133f35.png", - "aggregators": ["PancakeCoinMarketCap", "Rubic", "Rango"], - "occurrences": 3 - }, - "0xe33012187af219072dff81f54060febed2a91337": { - "address": "0xe33012187af219072dff81f54060febed2a91337", - "symbol": "HBN", - "decimals": 18, - "name": "HubinNetwork", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xe33012187af219072dff81f54060febed2a91337.png", - "aggregators": ["PancakeCoinMarketCap", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x29a1e54de0fce58e1018535d30af77a9d2d940c4": { - "address": "0x29a1e54de0fce58e1018535d30af77a9d2d940c4", - "symbol": "HCT", - "decimals": 18, - "name": "HeroCatGamefi", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x29a1e54de0fce58e1018535d30af77a9d2d940c4.png", - "aggregators": ["PancakeCoinMarketCap", "Rubic", "Rango"], - "occurrences": 3 - }, - "0xe350b08079f9523b24029b838184f177baf961ff": { - "address": "0xe350b08079f9523b24029b838184f177baf961ff", - "symbol": "HELENA", - "decimals": 5, - "name": "Helena Financial", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xe350b08079f9523b24029b838184f177baf961ff.png", - "aggregators": ["PancakeCoinMarketCap", "Rubic", "Rango"], - "occurrences": 3 - }, - "0xfb2c085a8b266b264ff0a38b9687ae14ef8a67fb": { - "address": "0xfb2c085a8b266b264ff0a38b9687ae14ef8a67fb", - "symbol": "HLS", - "decimals": 18, - "name": "Halis", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xfb2c085a8b266b264ff0a38b9687ae14ef8a67fb.png", - "aggregators": ["PancakeCoinMarketCap", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x0e9766df73973abcfedde700497c57110ee5c301": { - "address": "0x0e9766df73973abcfedde700497c57110ee5c301", - "symbol": "HODL", - "decimals": 9, - "name": "HODL", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x0e9766df73973abcfedde700497c57110ee5c301.png", - "aggregators": ["PancakeCoinMarketCap", "Rubic", "Rango"], - "occurrences": 3 - }, - "0xe13cd1c9d52126afc33976401aed4072597c97f8": { - "address": "0xe13cd1c9d52126afc33976401aed4072597c97f8", - "symbol": "HODL", - "decimals": 9, - "name": "ORDINAL HODL MEME", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xe13cd1c9d52126afc33976401aed4072597c97f8.png", - "aggregators": ["PancakeCoinMarketCap", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x2e7f28f0d27ffa238fdf7517a3bbe239b8189741": { - "address": "0x2e7f28f0d27ffa238fdf7517a3bbe239b8189741", - "symbol": "HOPPYINU", - "decimals": 18, - "name": "HoppyInu", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x2e7f28f0d27ffa238fdf7517a3bbe239b8189741.png", - "aggregators": ["PancakeCoinMarketCap", "Rubic", "Rango"], - "occurrences": 3 - }, - "0xf6b52a29671e74e6b3a7592ef79039abb64e2885": { - "address": "0xf6b52a29671e74e6b3a7592ef79039abb64e2885", - "symbol": "HUMAI", - "decimals": 18, - "name": "Humanoid AI", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xf6b52a29671e74e6b3a7592ef79039abb64e2885.png", - "aggregators": ["PancakeCoinMarketCap", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x62891201468a517eeec00fe72f33595a3f9047ee": { - "address": "0x62891201468a517eeec00fe72f33595a3f9047ee", - "symbol": "HYPE", - "decimals": 18, - "name": "HYPE", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x62891201468a517eeec00fe72f33595a3f9047ee.png", - "aggregators": ["PancakeCoinMarketCap", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x57d2a45653b329fac354b04cead92c4db71cf09f": { - "address": "0x57d2a45653b329fac354b04cead92c4db71cf09f", - "symbol": "IBS", - "decimals": 18, - "name": "IBStoken", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x57d2a45653b329fac354b04cead92c4db71cf09f.png", - "aggregators": ["PancakeCoinMarketCap", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x14b13e06f75e1f0fd51ca2e699589ef398e10f4c": { - "address": "0x14b13e06f75e1f0fd51ca2e699589ef398e10f4c", - "symbol": "IDM", - "decimals": 9, - "name": "IDM Token", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x14b13e06f75e1f0fd51ca2e699589ef398e10f4c.png", - "aggregators": ["PancakeCoinMarketCap", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x0f005dfe97c5041e538b7075915b2ee706677c26": { - "address": "0x0f005dfe97c5041e538b7075915b2ee706677c26", - "symbol": "JETS", - "decimals": 9, - "name": "JeToken", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x0f005dfe97c5041e538b7075915b2ee706677c26.png", - "aggregators": ["PancakeCoinMarketCap", "Rubic", "Rango"], - "occurrences": 3 - }, - "0xc8ab61bed1d2baa1237f7aa4641e68342c58824f": { - "address": "0xc8ab61bed1d2baa1237f7aa4641e68342c58824f", - "symbol": "KANG3N", - "decimals": 9, - "name": "Kang3n", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xc8ab61bed1d2baa1237f7aa4641e68342c58824f.png", - "aggregators": ["PancakeCoinMarketCap", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x64e93084a4e539b7b60a1b247756373c8b4a1db3": { - "address": "0x64e93084a4e539b7b60a1b247756373c8b4a1db3", - "symbol": "KCEO", - "decimals": 9, - "name": "KabosuCEO", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x64e93084a4e539b7b60a1b247756373c8b4a1db3.png", - "aggregators": ["PancakeCoinMarketCap", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x5616671d3d989940c67ea57cb9e8d347696826a3": { - "address": "0x5616671d3d989940c67ea57cb9e8d347696826a3", - "symbol": "KINGU", - "decimals": 18, - "name": "KINGU", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x5616671d3d989940c67ea57cb9e8d347696826a3.png", - "aggregators": ["PancakeCoinMarketCap", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x580cf2c36b913228dd0194a833f0ead8938f18ae": { - "address": "0x580cf2c36b913228dd0194a833f0ead8938f18ae", - "symbol": "KIT", - "decimals": 6, - "name": "KIT Token", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x580cf2c36b913228dd0194a833f0ead8938f18ae.png", - "aggregators": ["PancakeCoinMarketCap", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x18d3be5ecddf79279004e2d90d507594c2d46f85": { - "address": "0x18d3be5ecddf79279004e2d90d507594c2d46f85", - "symbol": "KKMA", - "decimals": 18, - "name": "Koakuma", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x18d3be5ecddf79279004e2d90d507594c2d46f85.png", - "aggregators": ["PancakeCoinMarketCap", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x078efa21a70337834788c3e6f0a99275f71393f0": { - "address": "0x078efa21a70337834788c3e6f0a99275f71393f0", - "symbol": "KNT", - "decimals": 18, - "name": "Kinect Finance", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x078efa21a70337834788c3e6f0a99275f71393f0.png", - "aggregators": ["PancakeCoinMarketCap", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x41b2f7acc00035f9b1cec868b5054a6238c0a910": { - "address": "0x41b2f7acc00035f9b1cec868b5054a6238c0a910", - "symbol": "KOCHI", - "decimals": 18, - "name": "Kochi Ken", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x41b2f7acc00035f9b1cec868b5054a6238c0a910.png", - "aggregators": ["PancakeCoinMarketCap", "Rubic", "Rango"], - "occurrences": 3 - }, - "0xfa4a5c4ce029fd6872400545df44675219c2e037": { - "address": "0xfa4a5c4ce029fd6872400545df44675219c2e037", - "symbol": "KPHI", - "decimals": 18, - "name": "Kephi Token", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xfa4a5c4ce029fd6872400545df44675219c2e037.png", - "aggregators": ["PancakeCoinMarketCap", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x8ab7ef0eb25aad36dff0661f81fb81b144af5b87": { - "address": "0x8ab7ef0eb25aad36dff0661f81fb81b144af5b87", - "symbol": "KUMAMON", - "decimals": 18, - "name": "Kumamon", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x8ab7ef0eb25aad36dff0661f81fb81b144af5b87.png", - "aggregators": ["PancakeCoinMarketCap", "Rubic", "Rango"], - "occurrences": 3 - }, - "0xbe5166e8e8a5cb801f09a6a0a46c42b7c27be755": { - "address": "0xbe5166e8e8a5cb801f09a6a0a46c42b7c27be755", - "symbol": "KVERSE", - "decimals": 18, - "name": "Keeps Coin", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xbe5166e8e8a5cb801f09a6a0a46c42b7c27be755.png", - "aggregators": ["PancakeCoinMarketCap", "Rubic", "Rango"], - "occurrences": 3 - }, - "0xcf5b48bd28dc1459ad575c0c83a839fef2a463bc": { - "address": "0xcf5b48bd28dc1459ad575c0c83a839fef2a463bc", - "symbol": "LILC", - "decimals": 9, - "name": "LIGHTCYCLE", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xcf5b48bd28dc1459ad575c0c83a839fef2a463bc.png", - "aggregators": ["PancakeCoinMarketCap", "Rubic", "Rango"], - "occurrences": 3 - }, - "0xd2b6bf88b7d9da599331719e338fcdeb235a0b99": { - "address": "0xd2b6bf88b7d9da599331719e338fcdeb235a0b99", - "symbol": "LIMO", - "decimals": 18, - "name": "LIMOVERSE", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xd2b6bf88b7d9da599331719e338fcdeb235a0b99.png", - "aggregators": ["PancakeCoinMarketCap", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x5b180109332b079c44447f52a8adad5b1cd9dcfd": { - "address": "0x5b180109332b079c44447f52a8adad5b1cd9dcfd", - "symbol": "LITH", - "decimals": 18, - "name": "Litherium", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x5b180109332b079c44447f52a8adad5b1cd9dcfd.png", - "aggregators": ["PancakeCoinMarketCap", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x167e5455e4c978883b414e7f02c0147eec9a18e9": { - "address": "0x167e5455e4c978883b414e7f02c0147eec9a18e9", - "symbol": "LTNV2", - "decimals": 18, - "name": "Life Token v2", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x167e5455e4c978883b414e7f02c0147eec9a18e9.png", - "aggregators": ["PancakeCoinMarketCap", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x037d70234eea7d05e8cd6796d89bc37a2ac45de9": { - "address": "0x037d70234eea7d05e8cd6796d89bc37a2ac45de9", - "symbol": "MAORABBIT", - "decimals": 18, - "name": "MaoRabbit", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x037d70234eea7d05e8cd6796d89bc37a2ac45de9.png", - "aggregators": ["PancakeCoinMarketCap", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x908ef6b57a6bb5b043ea6ef84142895b519c713c": { - "address": "0x908ef6b57a6bb5b043ea6ef84142895b519c713c", - "symbol": "MATCH", - "decimals": 18, - "name": "Matchcup", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x908ef6b57a6bb5b043ea6ef84142895b519c713c.png", - "aggregators": ["PancakeCoinMarketCap", "Rubic", "Rango"], - "occurrences": 3 - }, - "0xf3dbdf718667874e19ef368721a10409345fc218": { - "address": "0xf3dbdf718667874e19ef368721a10409345fc218", - "symbol": "MCA", - "decimals": 18, - "name": "MoveCash", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xf3dbdf718667874e19ef368721a10409345fc218.png", - "aggregators": ["PancakeCoinMarketCap", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x0557a288a93ed0df218785f2787dac1cd077f8f3": { - "address": "0x0557a288a93ed0df218785f2787dac1cd077f8f3", - "symbol": "MDB", - "decimals": 18, - "name": "MillionDollarBaby", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x0557a288a93ed0df218785f2787dac1cd077f8f3.png", - "aggregators": ["PancakeCoinMarketCap", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x079f0f5f3ad15e01a5cd919564a8f52dde03431b": { - "address": "0x079f0f5f3ad15e01a5cd919564a8f52dde03431b", - "symbol": "MEGA", - "decimals": 18, - "name": "MegaToken", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x079f0f5f3ad15e01a5cd919564a8f52dde03431b.png", - "aggregators": ["PancakeCoinMarketCap", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x347dc3036defc7ac9b28f4d83c65502827693414": { - "address": "0x347dc3036defc7ac9b28f4d83c65502827693414", - "symbol": "MEMEAI", - "decimals": 9, - "name": "Meme AI", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x347dc3036defc7ac9b28f4d83c65502827693414.png", - "aggregators": ["PancakeCoinMarketCap", "Rubic", "Rango"], - "occurrences": 3 - }, - "0xb1764342b981d2947bb69e68c470f0a907f08e5b": { - "address": "0xb1764342b981d2947bb69e68c470f0a907f08e5b", - "symbol": "MEMEMUSK", - "decimals": 9, - "name": "MEME MUSK", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xb1764342b981d2947bb69e68c470f0a907f08e5b.png", - "aggregators": ["PancakeCoinMarketCap", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x6f64cc61d0d5542e40e6f2828cbdda84507d214d": { - "address": "0x6f64cc61d0d5542e40e6f2828cbdda84507d214d", - "symbol": "METANIA", - "decimals": 9, - "name": "MetaniaGames", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x6f64cc61d0d5542e40e6f2828cbdda84507d214d.png", - "aggregators": ["PancakeCoinMarketCap", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x24ce3d571fbcfd9d81dc0e1a560504636a4d046d": { - "address": "0x24ce3d571fbcfd9d81dc0e1a560504636a4d046d", - "symbol": "METAPETS", - "decimals": 9, - "name": "METAPETS", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x24ce3d571fbcfd9d81dc0e1a560504636a4d046d.png", - "aggregators": ["PancakeCoinMarketCap", "Rubic", "Rango"], - "occurrences": 3 - }, - "0xf7a086bff67ded4aa785e8a0a81d4345d9bb4740": { - "address": "0xf7a086bff67ded4aa785e8a0a81d4345d9bb4740", - "symbol": "METASFM", - "decimals": 9, - "name": "MetaSafeMoon", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xf7a086bff67ded4aa785e8a0a81d4345d9bb4740.png", - "aggregators": ["PancakeCoinMarketCap", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x7082ff3a22e707136c80a9efcb215ec4c1fda810": { - "address": "0x7082ff3a22e707136c80a9efcb215ec4c1fda810", - "symbol": "METT", - "decimals": 9, - "name": "MetaThings", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x7082ff3a22e707136c80a9efcb215ec4c1fda810.png", - "aggregators": ["PancakeCoinMarketCap", "Rubic", "Rango"], - "occurrences": 3 - }, - "0xa528d8b9cd90b06d373373c37f8f188e44cad3be": { - "address": "0xa528d8b9cd90b06d373373c37f8f188e44cad3be", - "symbol": "MFB", - "decimals": 18, - "name": "Monster Ball", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xa528d8b9cd90b06d373373c37f8f188e44cad3be.png", - "aggregators": ["PancakeCoinMarketCap", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x6fe3d0f096fc932a905accd1eb1783f6e4cec717": { - "address": "0x6fe3d0f096fc932a905accd1eb1783f6e4cec717", - "symbol": "MILKY", - "decimals": 18, - "name": "Kawaii Milky Token", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x6fe3d0f096fc932a905accd1eb1783f6e4cec717.png", - "aggregators": ["PancakeCoinMarketCap", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x31e5e2b990cc9f03540b488fdc78d3806826f161": { - "address": "0x31e5e2b990cc9f03540b488fdc78d3806826f161", - "symbol": "MM", - "decimals": 18, - "name": "MetaMecha", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x31e5e2b990cc9f03540b488fdc78d3806826f161.png", - "aggregators": ["PancakeCoinMarketCap", "Rubic", "Rango"], - "occurrences": 3 - }, - "0xbe3fd4d1e0d244ddd98686a28f67355efe223346": { - "address": "0xbe3fd4d1e0d244ddd98686a28f67355efe223346", - "symbol": "MMC", - "decimals": 8, - "name": "Monopoly Millionaire Control", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xbe3fd4d1e0d244ddd98686a28f67355efe223346.png", - "aggregators": ["PancakeCoinMarketCap", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x67db74b6d1ea807cb47248489c99d144323d348d": { - "address": "0x67db74b6d1ea807cb47248489c99d144323d348d", - "symbol": "MMSC", - "decimals": 8, - "name": "MMS COIN", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x67db74b6d1ea807cb47248489c99d144323d348d.png", - "aggregators": ["PancakeCoinMarketCap", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x89e4818ed21f668d65f7851839d2dd8ce5d208b0": { - "address": "0x89e4818ed21f668d65f7851839d2dd8ce5d208b0", - "symbol": "MNTG", - "decimals": 18, - "name": "Monetas", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x89e4818ed21f668d65f7851839d2dd8ce5d208b0.png", - "aggregators": ["PancakeCoinMarketCap", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x256be284fea694f1bb11f76d556a28ecb496eee9": { - "address": "0x256be284fea694f1bb11f76d556a28ecb496eee9", - "symbol": "MNU", - "decimals": 18, - "name": "NirvanaMeta V2", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x256be284fea694f1bb11f76d556a28ecb496eee9.png", - "aggregators": ["PancakeCoinMarketCap", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x52b7c9d984ea17e9ee31159ca3fff3790981b64a": { - "address": "0x52b7c9d984ea17e9ee31159ca3fff3790981b64a", - "symbol": "MON", - "decimals": 18, - "name": "Medamon", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x52b7c9d984ea17e9ee31159ca3fff3790981b64a.png", - "aggregators": ["PancakeCoinMarketCap", "Rubic", "Rango"], - "occurrences": 3 - }, - "0xef843fb4c112e618b262f6897f479474e4586f05": { - "address": "0xef843fb4c112e618b262f6897f479474e4586f05", - "symbol": "MONA", - "decimals": 18, - "name": "Monaco Planet", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xef843fb4c112e618b262f6897f479474e4586f05.png", - "aggregators": ["PancakeCoinMarketCap", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x7317da9c15303bfb434690586c3373b94fb2dd31": { - "address": "0x7317da9c15303bfb434690586c3373b94fb2dd31", - "symbol": "MONO", - "decimals": 18, - "name": "MonoMoney", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x7317da9c15303bfb434690586c3373b94fb2dd31.png", - "aggregators": ["PancakeCoinMarketCap", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x34e942859469c9db9c22f4eaf866e2c2401bb795": { - "address": "0x34e942859469c9db9c22f4eaf866e2c2401bb795", - "symbol": "MOONER", - "decimals": 18, - "name": "CoinMooner", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x34e942859469c9db9c22f4eaf866e2c2401bb795.png", - "aggregators": ["PancakeCoinMarketCap", "Rubic", "Rango"], - "occurrences": 3 - }, - "0xd6163cec51f2e7c5974f3f4ce8fdb9c80abf142e": { - "address": "0xd6163cec51f2e7c5974f3f4ce8fdb9c80abf142e", - "symbol": "MORE", - "decimals": 18, - "name": "Mythic Ore", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xd6163cec51f2e7c5974f3f4ce8fdb9c80abf142e.png", - "aggregators": ["PancakeCoinMarketCap", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x16350ac2153a1d6322c90197129076b747d3222a": { - "address": "0x16350ac2153a1d6322c90197129076b747d3222a", - "symbol": "MORPHO", - "decimals": 18, - "name": "MORPHO NETWORK", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x16350ac2153a1d6322c90197129076b747d3222a.png", - "aggregators": ["PancakeCoinMarketCap", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x2b511aa476213e9081dd6a59a3739f0cb9d01162": { - "address": "0x2b511aa476213e9081dd6a59a3739f0cb9d01162", - "symbol": "MOVEY", - "decimals": 5, - "name": "MOVEY", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x2b511aa476213e9081dd6a59a3739f0cb9d01162.png", - "aggregators": ["PancakeCoinMarketCap", "Rubic", "Rango"], - "occurrences": 3 - }, - "0xe4b22193d68f18f8e8eb3a26f4d64cb6d4573022": { - "address": "0xe4b22193d68f18f8e8eb3a26f4d64cb6d4573022", - "symbol": "MOZ", - "decimals": 18, - "name": "MOZ", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xe4b22193d68f18f8e8eb3a26f4d64cb6d4573022.png", - "aggregators": ["PancakeCoinMarketCap", "Rubic", "Rango"], - "occurrences": 3 - }, - "0xa7aea81bb187bde731019ee0ca665c751179c102": { - "address": "0xa7aea81bb187bde731019ee0ca665c751179c102", - "symbol": "MPLAI", - "decimals": 18, - "name": "MetaPlanet AI", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xa7aea81bb187bde731019ee0ca665c751179c102.png", - "aggregators": ["PancakeCoinMarketCap", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x767b28a30e3a15dcece7bff7a020adfde9d19cf8": { - "address": "0x767b28a30e3a15dcece7bff7a020adfde9d19cf8", - "symbol": "MRXB", - "decimals": 8, - "name": "Wrapped Metrix", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x767b28a30e3a15dcece7bff7a020adfde9d19cf8.png", - "aggregators": ["PancakeCoinMarketCap", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x06ce168ff4ca760768f42c440d4266ba705e2f21": { - "address": "0x06ce168ff4ca760768f42c440d4266ba705e2f21", - "symbol": "MSHD", - "decimals": 9, - "name": "MSHD", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x06ce168ff4ca760768f42c440d4266ba705e2f21.png", - "aggregators": ["PancakeCoinMarketCap", "Rubic", "Rango"], - "occurrences": 3 - }, - "0xe37f5e9c1e8199bda350243aaa50076959ea13d2": { - "address": "0xe37f5e9c1e8199bda350243aaa50076959ea13d2", - "symbol": "MSZ", - "decimals": 9, - "name": "MegaShibaZilla", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xe37f5e9c1e8199bda350243aaa50076959ea13d2.png", - "aggregators": ["PancakeCoinMarketCap", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x4d4af26f52c7e96a5f42d7a70caa43f2dab5acb4": { - "address": "0x4d4af26f52c7e96a5f42d7a70caa43f2dab5acb4", - "symbol": "MTLS", - "decimals": 18, - "name": "METAL FRIENDS", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x4d4af26f52c7e96a5f42d7a70caa43f2dab5acb4.png", - "aggregators": ["PancakeCoinMarketCap", "Rubic", "Rango"], - "occurrences": 3 - }, - "0xca407a297ef2a3f2dfd24832e40e3fdc94448fb7": { - "address": "0xca407a297ef2a3f2dfd24832e40e3fdc94448fb7", - "symbol": "MUSKMEME", - "decimals": 9, - "name": "MUSK MEME", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xca407a297ef2a3f2dfd24832e40e3fdc94448fb7.png", - "aggregators": ["PancakeCoinMarketCap", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x0d4992e48278aa7f7c915f820743d9fab7fea713": { - "address": "0x0d4992e48278aa7f7c915f820743d9fab7fea713", - "symbol": "MZ", - "decimals": 8, - "name": "MetaZilla", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x0d4992e48278aa7f7c915f820743d9fab7fea713.png", - "aggregators": ["PancakeCoinMarketCap", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x3194e783fdbaff5edacb71afb6e4c8d7aa67ac61": { - "address": "0x3194e783fdbaff5edacb71afb6e4c8d7aa67ac61", - "symbol": "NANA", - "decimals": 18, - "name": "Bananace", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x3194e783fdbaff5edacb71afb6e4c8d7aa67ac61.png", - "aggregators": ["PancakeCoinMarketCap", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x6a061bc3bd2f90fc3fe0b305488c32d121d0093e": { - "address": "0x6a061bc3bd2f90fc3fe0b305488c32d121d0093e", - "symbol": "NETC", - "decimals": 18, - "name": "Network Capital Token", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x6a061bc3bd2f90fc3fe0b305488c32d121d0093e.png", - "aggregators": ["PancakeCoinMarketCap", "Rubic", "Rango"], - "occurrences": 3 - }, - "0xefdb93e14cd63b08561e86d3a30aae0f3aabad9a": { - "address": "0xefdb93e14cd63b08561e86d3a30aae0f3aabad9a", - "symbol": "NEXUS", - "decimals": 18, - "name": "NEXUSPAD PROTOCOL", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xefdb93e14cd63b08561e86d3a30aae0f3aabad9a.png", - "aggregators": ["PancakeCoinMarketCap", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x5d33e26336c445c71f206dd18b64ce11c2eee3f0": { - "address": "0x5d33e26336c445c71f206dd18b64ce11c2eee3f0", - "symbol": "NFTSTYLE", - "decimals": 18, - "name": "NFTStyle", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x5d33e26336c445c71f206dd18b64ce11c2eee3f0.png", - "aggregators": ["PancakeCoinMarketCap", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x02030d968558fd429eafa6e5b0c7a95a4903233b": { - "address": "0x02030d968558fd429eafa6e5b0c7a95a4903233b", - "symbol": "NGT", - "decimals": 18, - "name": "GoSleep NGT", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x02030d968558fd429eafa6e5b0c7a95a4903233b.png", - "aggregators": ["PancakeCoinMarketCap", "Rubic", "Rango"], - "occurrences": 3 - }, - "0xcb492c701f7fe71bc9c4b703b84b0da933ff26bb": { - "address": "0xcb492c701f7fe71bc9c4b703b84b0da933ff26bb", - "symbol": "NIMB", - "decimals": 18, - "name": "Nimbus Platform", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xcb492c701f7fe71bc9c4b703b84b0da933ff26bb.png", - "aggregators": ["PancakeCoinMarketCap", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x54e951e513bc09abaff971641947bc69e31068bd": { - "address": "0x54e951e513bc09abaff971641947bc69e31068bd", - "symbol": "ODYS", - "decimals": 18, - "name": "OdysseyWallet", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x54e951e513bc09abaff971641947bc69e31068bd.png", - "aggregators": ["PancakeCoinMarketCap", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x7758a52c1bb823d02878b67ad87b6ba37a0cdbf5": { - "address": "0x7758a52c1bb823d02878b67ad87b6ba37a0cdbf5", - "symbol": "OKG", - "decimals": 18, - "name": "Ookeenga", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x7758a52c1bb823d02878b67ad87b6ba37a0cdbf5.png", - "aggregators": ["PancakeCoinMarketCap", "Rubic", "Rango"], - "occurrences": 3 - }, - "0xb1d40b17d12375dec4c14cc273a461ca74a60c07": { - "address": "0xb1d40b17d12375dec4c14cc273a461ca74a60c07", - "symbol": "ONNO", - "decimals": 18, - "name": "Onno Vault", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xb1d40b17d12375dec4c14cc273a461ca74a60c07.png", - "aggregators": ["PancakeCoinMarketCap", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x20dd734594dadc69df313cd143b34a70a3d9214e": { - "address": "0x20dd734594dadc69df313cd143b34a70a3d9214e", - "symbol": "ORIGEN", - "decimals": 18, - "name": "Origen DEFI", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x20dd734594dadc69df313cd143b34a70a3d9214e.png", - "aggregators": ["PancakeCoinMarketCap", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x7e2afe446a30fa67600a5174df7f4002b8e15b03": { - "address": "0x7e2afe446a30fa67600a5174df7f4002b8e15b03", - "symbol": "ORME", - "decimals": 18, - "name": "Ormeus Coin", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x7e2afe446a30fa67600a5174df7f4002b8e15b03.png", - "aggregators": ["PancakeCoinMarketCap", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x8f2714b178676ba0f9cfb226f6519b92dd8def9d": { - "address": "0x8f2714b178676ba0f9cfb226f6519b92dd8def9d", - "symbol": "PANDA", - "decimals": 18, - "name": "Big Panda", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x8f2714b178676ba0f9cfb226f6519b92dd8def9d.png", - "aggregators": ["PancakeCoinMarketCap", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x44f0e42ea6fd05f8fc5a03697438487d04632dc5": { - "address": "0x44f0e42ea6fd05f8fc5a03697438487d04632dc5", - "symbol": "PAYBIT", - "decimals": 18, - "name": "PAY BIT", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x44f0e42ea6fd05f8fc5a03697438487d04632dc5.png", - "aggregators": ["PancakeCoinMarketCap", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x3d780eb7deef5d2fa1194e4b4b739f919bc81f00": { - "address": "0x3d780eb7deef5d2fa1194e4b4b739f919bc81f00", - "symbol": "PDRAGON", - "decimals": 18, - "name": "Phoenix Dragon", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x3d780eb7deef5d2fa1194e4b4b739f919bc81f00.png", - "aggregators": ["PancakeCoinMarketCap", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x2a374d02e244aaa175b38ba1ba9ee443d20e7e41": { - "address": "0x2a374d02e244aaa175b38ba1ba9ee443d20e7e41", - "symbol": "PEACH", - "decimals": 9, - "name": "Peach Inu", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x2a374d02e244aaa175b38ba1ba9ee443d20e7e41.png", - "aggregators": ["PancakeCoinMarketCap", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x03887c177c18140209c0f93adc230d4c5515bf4a": { - "address": "0x03887c177c18140209c0f93adc230d4c5515bf4a", - "symbol": "PEG", - "decimals": 18, - "name": "Pegasus", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x03887c177c18140209c0f93adc230d4c5515bf4a.png", - "aggregators": ["PancakeCoinMarketCap", "Rubic", "Rango"], - "occurrences": 3 - }, - "0xc9c0133f5d5227b059bffee0dbdcfc3f6a8ba434": { - "address": "0xc9c0133f5d5227b059bffee0dbdcfc3f6a8ba434", - "symbol": "PEPEDASHAI", - "decimals": 18, - "name": "Pepe Dash AI", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xc9c0133f5d5227b059bffee0dbdcfc3f6a8ba434.png", - "aggregators": ["PancakeCoinMarketCap", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x4e2434294a722329b6b64e0c2fca51b2533d7015": { - "address": "0x4e2434294a722329b6b64e0c2fca51b2533d7015", - "symbol": "PEPEF", - "decimals": 18, - "name": "PEPEFLOKI", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x4e2434294a722329b6b64e0c2fca51b2533d7015.png", - "aggregators": ["PancakeCoinMarketCap", "Rubic", "Rango"], - "occurrences": 3 - }, - "0xdd80c9625e13db655840ed47af90cc78702367ed": { - "address": "0xdd80c9625e13db655840ed47af90cc78702367ed", - "symbol": "PEPELON", - "decimals": 9, - "name": "Pepelon", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xdd80c9625e13db655840ed47af90cc78702367ed.png", - "aggregators": ["PancakeCoinMarketCap", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x54bb6c8551712ab214950cd7acf8493ef4e7e3ae": { - "address": "0x54bb6c8551712ab214950cd7acf8493ef4e7e3ae", - "symbol": "PIF", - "decimals": 18, - "name": "Pepe Wif Hat", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x54bb6c8551712ab214950cd7acf8493ef4e7e3ae.png", - "aggregators": ["PancakeCoinMarketCap", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x25c30340e6f9f6e521827cf03282943da00c0ece": { - "address": "0x25c30340e6f9f6e521827cf03282943da00c0ece", - "symbol": "PIP", - "decimals": 18, - "name": "Pi Protocol", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x25c30340e6f9f6e521827cf03282943da00c0ece.png", - "aggregators": ["PancakeCoinMarketCap", "Rubic", "Rango"], - "occurrences": 3 - }, - "0xb27b68431c9a1819c8633ff75a2dd14f54799a21": { - "address": "0xb27b68431c9a1819c8633ff75a2dd14f54799a21", - "symbol": "PIRA", - "decimals": 18, - "name": "Piratera", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xb27b68431c9a1819c8633ff75a2dd14f54799a21.png", - "aggregators": ["PancakeCoinMarketCap", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x1dc5779ed65bcc1f0a42d654444fb0ce59d7783b": { - "address": "0x1dc5779ed65bcc1f0a42d654444fb0ce59d7783b", - "symbol": "PMR", - "decimals": 18, - "name": "Pomerium Utility Token", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x1dc5779ed65bcc1f0a42d654444fb0ce59d7783b.png", - "aggregators": ["PancakeCoinMarketCap", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x76d36d44dc4595e8d2eb3ad745f175eda134284f": { - "address": "0x76d36d44dc4595e8d2eb3ad745f175eda134284f", - "symbol": "PNIC", - "decimals": 18, - "name": "Phoenic Token", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x76d36d44dc4595e8d2eb3ad745f175eda134284f.png", - "aggregators": ["PancakeCoinMarketCap", "Rubic", "Rango"], - "occurrences": 3 - }, - "0xb28a7f8f5328faffdd862985177583c2bb71e016": { - "address": "0xb28a7f8f5328faffdd862985177583c2bb71e016", - "symbol": "POLO", - "decimals": 18, - "name": "NftyPlay", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xb28a7f8f5328faffdd862985177583c2bb71e016.png", - "aggregators": ["PancakeCoinMarketCap", "Rubic", "Rango"], - "occurrences": 3 - }, - "0xefd1c4bc2d22639ea86b70e249eec0ccabf54f06": { - "address": "0xefd1c4bc2d22639ea86b70e249eec0ccabf54f06", - "symbol": "PPAI", - "decimals": 9, - "name": "Plug Power AI", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xefd1c4bc2d22639ea86b70e249eec0ccabf54f06.png", - "aggregators": ["PancakeCoinMarketCap", "Rubic", "Rango"], - "occurrences": 3 - }, - "0xbdd2e3fdb879aa42748e9d47b7359323f226ba22": { - "address": "0xbdd2e3fdb879aa42748e9d47b7359323f226ba22", - "symbol": "PRED", - "decimals": 18, - "name": "Predictcoin", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xbdd2e3fdb879aa42748e9d47b7359323f226ba22.png", - "aggregators": ["PancakeCoinMarketCap", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x3cf04a59b7bfd6299be4a2104b6e1ca1334750e3": { - "address": "0x3cf04a59b7bfd6299be4a2104b6e1ca1334750e3", - "symbol": "PROTON", - "decimals": 18, - "name": "Proton Protocol", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x3cf04a59b7bfd6299be4a2104b6e1ca1334750e3.png", - "aggregators": ["PancakeCoinMarketCap", "Rubic", "Rango"], - "occurrences": 3 - }, - "0xb72ba371c900aa68bb9fa473e93cfbe212030fcb": { - "address": "0xb72ba371c900aa68bb9fa473e93cfbe212030fcb", - "symbol": "PSR", - "decimals": 18, - "name": "Pandora Spirit", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xb72ba371c900aa68bb9fa473e93cfbe212030fcb.png", - "aggregators": ["PancakeCoinMarketCap", "LiFi", "Rubic"], - "occurrences": 3 - }, - "0x3843f234b35a311e195608d32283a68284b3c44d": { - "address": "0x3843f234b35a311e195608d32283a68284b3c44d", - "symbol": "PTA", - "decimals": 9, - "name": "La Peseta", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x3843f234b35a311e195608d32283a68284b3c44d.png", - "aggregators": ["PancakeCoinMarketCap", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x92400f8b8c4658153c10c98500b63ac9f87571c2": { - "address": "0x92400f8b8c4658153c10c98500b63ac9f87571c2", - "symbol": "PTOOLS", - "decimals": 18, - "name": "Pricetools", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x92400f8b8c4658153c10c98500b63ac9f87571c2.png", - "aggregators": ["PancakeCoinMarketCap", "Rubic", "Rango"], - "occurrences": 3 - }, - "0xa469d8e55afcd58003d6cbdc770c0ecc2dd71945": { - "address": "0xa469d8e55afcd58003d6cbdc770c0ecc2dd71945", - "symbol": "PTX", - "decimals": 8, - "name": "PLATINX", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xa469d8e55afcd58003d6cbdc770c0ecc2dd71945.png", - "aggregators": ["PancakeCoinMarketCap", "Rubic", "Rango"], - "occurrences": 3 - }, - "0xba7e020d5a463f29535b35137ccb4aa6f4359272": { - "address": "0xba7e020d5a463f29535b35137ccb4aa6f4359272", - "symbol": "PULSE", - "decimals": 18, - "name": "PulseFolio", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xba7e020d5a463f29535b35137ccb4aa6f4359272.png", - "aggregators": ["PancakeCoinMarketCap", "Rubic", "Rango"], - "occurrences": 3 - }, - "0xb4e14166f6de109f800c52a84a434c383137c8dc": { - "address": "0xb4e14166f6de109f800c52a84a434c383137c8dc", - "symbol": "PVT", - "decimals": 18, - "name": "PAYVERTISE", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xb4e14166f6de109f800c52a84a434c383137c8dc.png", - "aggregators": ["PancakeCoinMarketCap", "Rubic", "Rango"], - "occurrences": 3 - }, - "0xea917ec08ab64c030e67a80559ad569f48aa360a": { - "address": "0xea917ec08ab64c030e67a80559ad569f48aa360a", - "symbol": "PWT", - "decimals": 18, - "name": "Perpetual Wallet", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xea917ec08ab64c030e67a80559ad569f48aa360a.png", - "aggregators": ["PancakeCoinMarketCap", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x238f5cc8bd082895d1f832cef967e7bb7ba4f992": { - "address": "0x238f5cc8bd082895d1f832cef967e7bb7ba4f992", - "symbol": "QATARGROW", - "decimals": 18, - "name": "QatarGrow", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x238f5cc8bd082895d1f832cef967e7bb7ba4f992.png", - "aggregators": ["PancakeCoinMarketCap", "Rubic", "Rango"], - "occurrences": 3 - }, - "0xcfa65d49541a0a930a19321c797e442123822fb4": { - "address": "0xcfa65d49541a0a930a19321c797e442123822fb4", - "symbol": "QUACKS", - "decimals": 18, - "name": "STAR QUACK", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xcfa65d49541a0a930a19321c797e442123822fb4.png", - "aggregators": ["PancakeCoinMarketCap", "Rubic", "Rango"], - "occurrences": 3 - }, - "0xf8f95f20cd1fb6f1fa6f7776c359214220f49aa6": { - "address": "0xf8f95f20cd1fb6f1fa6f7776c359214220f49aa6", - "symbol": "RABBIT", - "decimals": 9, - "name": "Gangs Rabbit", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xf8f95f20cd1fb6f1fa6f7776c359214220f49aa6.png", - "aggregators": ["PancakeCoinMarketCap", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x626cab57051e80f4b84551856588b62983bdb94e": { - "address": "0x626cab57051e80f4b84551856588b62983bdb94e", - "symbol": "RB", - "decimals": 18, - "name": "RabbitKing", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x626cab57051e80f4b84551856588b62983bdb94e.png", - "aggregators": ["PancakeCoinMarketCap", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x92da433da84d58dfe2aade1943349e491cbd6820": { - "address": "0x92da433da84d58dfe2aade1943349e491cbd6820", - "symbol": "RDR", - "decimals": 18, - "name": "Rise of Defenders Token", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x92da433da84d58dfe2aade1943349e491cbd6820.png", - "aggregators": ["PancakeCoinMarketCap", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x3c0fe6c4acd3a21615a51372d2a430eb68ccde43": { - "address": "0x3c0fe6c4acd3a21615a51372d2a430eb68ccde43", - "symbol": "REDFLOKICEO", - "decimals": 9, - "name": "Red Floki CEO", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x3c0fe6c4acd3a21615a51372d2a430eb68ccde43.png", - "aggregators": ["PancakeCoinMarketCap", "Rubic", "Rango"], - "occurrences": 3 - }, - "0xd3513dc0df25f60c71822e7bacac14f9391845ff": { - "address": "0xd3513dc0df25f60c71822e7bacac14f9391845ff", - "symbol": "REELFI", - "decimals": 18, - "name": "ReelFi", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xd3513dc0df25f60c71822e7bacac14f9391845ff.png", - "aggregators": ["PancakeCoinMarketCap", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x6eda890c7c914e9c6b42415d2a3273b022e7b5e7": { - "address": "0x6eda890c7c914e9c6b42415d2a3273b022e7b5e7", - "symbol": "RISITA", - "decimals": 18, - "name": "Risitas Coin", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x6eda890c7c914e9c6b42415d2a3273b022e7b5e7.png", - "aggregators": ["PancakeCoinMarketCap", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x1476e96fadb37668d7680921297e2ab98ec36c2f": { - "address": "0x1476e96fadb37668d7680921297e2ab98ec36c2f", - "symbol": "RLOKI", - "decimals": 18, - "name": "Floki Rocket", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x1476e96fadb37668d7680921297e2ab98ec36c2f.png", - "aggregators": ["PancakeCoinMarketCap", "Rubic", "Rango"], - "occurrences": 3 - }, - "0xfc111b40ad299572f74f1c119c036508c621bb19": { - "address": "0xfc111b40ad299572f74f1c119c036508c621bb19", - "symbol": "ROC", - "decimals": 18, - "name": "Rocket Raccoon", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xfc111b40ad299572f74f1c119c036508c621bb19.png", - "aggregators": ["PancakeCoinMarketCap", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x267022751e06d97b9ee4e5f26cc1023670bdb349": { - "address": "0x267022751e06d97b9ee4e5f26cc1023670bdb349", - "symbol": "RPS", - "decimals": 18, - "name": "RPS LEAGUE", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x267022751e06d97b9ee4e5f26cc1023670bdb349.png", - "aggregators": ["PancakeCoinMarketCap", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x80aa21b19c2fa7aa29a654859ffec161aa6f04a4": { - "address": "0x80aa21b19c2fa7aa29a654859ffec161aa6f04a4", - "symbol": "RULE", - "decimals": 18, - "name": "Rule", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x80aa21b19c2fa7aa29a654859ffec161aa6f04a4.png", - "aggregators": ["PancakeCoinMarketCap", "Rubic", "Rango"], - "occurrences": 3 - }, - "0xff12afb3841b737289d1b02dfedbe4c85a8ec6e6": { - "address": "0xff12afb3841b737289d1b02dfedbe4c85a8ec6e6", - "symbol": "SABA", - "decimals": 18, - "name": "Saba Finance", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xff12afb3841b737289d1b02dfedbe4c85a8ec6e6.png", - "aggregators": ["PancakeCoinMarketCap", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x8ae14ce43f71201bb79babd00cc8d00a7fadb3bd": { - "address": "0x8ae14ce43f71201bb79babd00cc8d00a7fadb3bd", - "symbol": "SAVANTAI", - "decimals": 9, - "name": "Savant AI", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x8ae14ce43f71201bb79babd00cc8d00a7fadb3bd.png", - "aggregators": ["PancakeCoinMarketCap", "Rubic", "Rango"], - "occurrences": 3 - }, - "0xa4d92138537bb0bbeaeab095381be422d785e7c4": { - "address": "0xa4d92138537bb0bbeaeab095381be422d785e7c4", - "symbol": "SDXB", - "decimals": 18, - "name": "SwapDEX", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xa4d92138537bb0bbeaeab095381be422d785e7c4.png", - "aggregators": ["PancakeCoinMarketCap", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x2fc9e0f34d86f65b495de7ee3bb5cbeac7f92b04": { - "address": "0x2fc9e0f34d86f65b495de7ee3bb5cbeac7f92b04", - "symbol": "SEAMLESS", - "decimals": 18, - "name": "SeamlessSwap", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x2fc9e0f34d86f65b495de7ee3bb5cbeac7f92b04.png", - "aggregators": ["PancakeCoinMarketCap", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x0cbfdea4f45a486cc7db53cb6e37b312a137c605": { - "address": "0x0cbfdea4f45a486cc7db53cb6e37b312a137c605", - "symbol": "SEEDX", - "decimals": 18, - "name": "SEEDx", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x0cbfdea4f45a486cc7db53cb6e37b312a137c605.png", - "aggregators": ["PancakeCoinMarketCap", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x5a8261214a6c5fe68a6a4c81aec4f68bcd73ebc1": { - "address": "0x5a8261214a6c5fe68a6a4c81aec4f68bcd73ebc1", - "symbol": "SHFLCN", - "decimals": 18, - "name": "ShibFalcon", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x5a8261214a6c5fe68a6a4c81aec4f68bcd73ebc1.png", - "aggregators": ["PancakeCoinMarketCap", "Rubic", "Rango"], - "occurrences": 3 - }, - "0xbef05cf52d8b244eeca6033fb8b9b69e1974f681": { - "address": "0xbef05cf52d8b244eeca6033fb8b9b69e1974f681", - "symbol": "SHIBCEO", - "decimals": 9, - "name": "Shiba CEO", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xbef05cf52d8b244eeca6033fb8b9b69e1974f681.png", - "aggregators": ["PancakeCoinMarketCap", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x0151f08a29142e07d075664e2ecf3c949635c31e": { - "address": "0x0151f08a29142e07d075664e2ecf3c949635c31e", - "symbol": "SHIBOT", - "decimals": 9, - "name": "SHIBOT", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x0151f08a29142e07d075664e2ecf3c949635c31e.png", - "aggregators": ["PancakeCoinMarketCap", "Rubic", "Rango"], - "occurrences": 3 - }, - "0xf2e00684457de1a3c87361bc4bfe2de92342306c": { - "address": "0xf2e00684457de1a3c87361bc4bfe2de92342306c", - "symbol": "SHIELDNET", - "decimals": 18, - "name": "Shield Network", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xf2e00684457de1a3c87361bc4bfe2de92342306c.png", - "aggregators": ["PancakeCoinMarketCap", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x1b2fdb1626285b94782af2fda8e270e95cebc3b4": { - "address": "0x1b2fdb1626285b94782af2fda8e270e95cebc3b4", - "symbol": "SKMT", - "decimals": 18, - "name": "Soakmont", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x1b2fdb1626285b94782af2fda8e270e95cebc3b4.png", - "aggregators": ["PancakeCoinMarketCap", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x940580db429da7fa8662d66f7a4d312443f09f52": { - "address": "0x940580db429da7fa8662d66f7a4d312443f09f52", - "symbol": "SLGO", - "decimals": 18, - "name": "Solalgo", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x940580db429da7fa8662d66f7a4d312443f09f52.png", - "aggregators": ["PancakeCoinMarketCap", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x4a76a1eaa365c10bd9b895acab5760d52ff2f7c9": { - "address": "0x4a76a1eaa365c10bd9b895acab5760d52ff2f7c9", - "symbol": "SM96", - "decimals": 9, - "name": "Safemoon 1996", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x4a76a1eaa365c10bd9b895acab5760d52ff2f7c9.png", - "aggregators": ["PancakeCoinMarketCap", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x3d0e93bfcb8fb46331ea8c98b6ab8c575ab424c3": { - "address": "0x3d0e93bfcb8fb46331ea8c98b6ab8c575ab424c3", - "symbol": "SMASH", - "decimals": 18, - "name": "Smash Cash", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x3d0e93bfcb8fb46331ea8c98b6ab8c575ab424c3.png", - "aggregators": ["PancakeCoinMarketCap", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x515e62a3ac560fd5df08536d08336e63aed3b182": { - "address": "0x515e62a3ac560fd5df08536d08336e63aed3b182", - "symbol": "SMPF", - "decimals": 18, - "name": "SMP Finance", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x515e62a3ac560fd5df08536d08336e63aed3b182.png", - "aggregators": ["PancakeCoinMarketCap", "Rubic", "Rango"], - "occurrences": 3 - }, - "0xd5cbae3f69b0640724a6532cc81be9c798a755a7": { - "address": "0xd5cbae3f69b0640724a6532cc81be9c798a755a7", - "symbol": "SNS", - "decimals": 18, - "name": "SING NFT SHOW", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xd5cbae3f69b0640724a6532cc81be9c798a755a7.png", - "aggregators": ["PancakeCoinMarketCap", "Socket", "Rubic"], - "occurrences": 3 - }, - "0x45d51acc587574536cb292500d35dd3060796c63": { - "address": "0x45d51acc587574536cb292500d35dd3060796c63", - "symbol": "SNX", - "decimals": 18, - "name": "SincroniX", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x45d51acc587574536cb292500d35dd3060796c63.png", - "aggregators": ["PancakeCoinMarketCap", "Rubic", "Rango"], - "occurrences": 3 - }, - "0xde1a0f6c7078c5da0a6236eeb04261f4699905c5": { - "address": "0xde1a0f6c7078c5da0a6236eeb04261f4699905c5", - "symbol": "SOT", - "decimals": 18, - "name": "Soccer Crypto", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xde1a0f6c7078c5da0a6236eeb04261f4699905c5.png", - "aggregators": ["PancakeCoinMarketCap", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x178fbe1cf4775fbdb9756d6349195a05799c0fe5": { - "address": "0x178fbe1cf4775fbdb9756d6349195a05799c0fe5", - "symbol": "SPENT", - "decimals": 18, - "name": "Espento", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x178fbe1cf4775fbdb9756d6349195a05799c0fe5.png", - "aggregators": ["PancakeCoinMarketCap", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x0ecaf010fc192e2d5cbeb4dfb1fee20fbd733aa1": { - "address": "0x0ecaf010fc192e2d5cbeb4dfb1fee20fbd733aa1", - "symbol": "SPG", - "decimals": 18, - "name": "SPG", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x0ecaf010fc192e2d5cbeb4dfb1fee20fbd733aa1.png", - "aggregators": ["PancakeCoinMarketCap", "Rubic", "Rango"], - "occurrences": 3 - }, - "0xe19a9626aef55e20400a3b82a25c003403e88b7f": { - "address": "0xe19a9626aef55e20400a3b82a25c003403e88b7f", - "symbol": "SPIN", - "decimals": 18, - "name": "Spinada.cash", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xe19a9626aef55e20400a3b82a25c003403e88b7f.png", - "aggregators": ["PancakeCoinMarketCap", "Rubic", "Rango"], - "occurrences": 3 - }, - "0xe1bb77c8e012c1514373a40cfbb8645293075125": { - "address": "0xe1bb77c8e012c1514373a40cfbb8645293075125", - "symbol": "SPORTS-AI", - "decimals": 18, - "name": "Sports Artificial", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xe1bb77c8e012c1514373a40cfbb8645293075125.png", - "aggregators": ["PancakeCoinMarketCap", "Rubic", "Rango"], - "occurrences": 3 - }, - "0xd63cdf02853d759831550fae7df8fffe0b317b39": { - "address": "0xd63cdf02853d759831550fae7df8fffe0b317b39", - "symbol": "SRM", - "decimals": 6, - "name": "Serum", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xd63cdf02853d759831550fae7df8fffe0b317b39.png", - "aggregators": ["PancakeCoinMarketCap", "Rubic", "Rango"], - "occurrences": 3 - }, - "0xebc148d40313be9c9f214d3beb9f2ddebec0ec52": { - "address": "0xebc148d40313be9c9f214d3beb9f2ddebec0ec52", - "symbol": "STAI", - "decimals": 18, - "name": "StereoAI", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xebc148d40313be9c9f214d3beb9f2ddebec0ec52.png", - "aggregators": ["PancakeCoinMarketCap", "Rubic", "Rango"], - "occurrences": 3 - }, - "0xb0a480e2fa5af51c733a0af9fcb4de62bc48c38b": { - "address": "0xb0a480e2fa5af51c733a0af9fcb4de62bc48c38b", - "symbol": "STARLY", - "decimals": 8, - "name": "Starly", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xb0a480e2fa5af51c733a0af9fcb4de62bc48c38b.png", - "aggregators": ["PancakeCoinMarketCap", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x9731b59a10833ef635b2d0fb6f87716876a2d5e1": { - "address": "0x9731b59a10833ef635b2d0fb6f87716876a2d5e1", - "symbol": "STARSHIP", - "decimals": 9, - "name": "Starship", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x9731b59a10833ef635b2d0fb6f87716876a2d5e1.png", - "aggregators": ["PancakeCoinMarketCap", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x7deb9906bd1d77b410a56e5c23c36340bd60c983": { - "address": "0x7deb9906bd1d77b410a56e5c23c36340bd60c983", - "symbol": "STATIC", - "decimals": 18, - "name": "Static", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x7deb9906bd1d77b410a56e5c23c36340bd60c983.png", - "aggregators": ["PancakeCoinMarketCap", "Rubic", "Rango"], - "occurrences": 3 - }, - "0xdc42c3a92c4a03f9b9f3fbaba0125286fdaa6772": { - "address": "0xdc42c3a92c4a03f9b9f3fbaba0125286fdaa6772", - "symbol": "STINK", - "decimals": 18, - "name": "Drunk Skunks DC", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xdc42c3a92c4a03f9b9f3fbaba0125286fdaa6772.png", - "aggregators": ["PancakeCoinMarketCap", "Rubic", "Rango"], - "occurrences": 3 - }, - "0xd18dcd429c4c44b98242042cc35a3e03bfabdb08": { - "address": "0xd18dcd429c4c44b98242042cc35a3e03bfabdb08", - "symbol": "STKC", - "decimals": 18, - "name": "Streakk Chain", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xd18dcd429c4c44b98242042cc35a3e03bfabdb08.png", - "aggregators": ["PancakeCoinMarketCap", "Rubic", "Rango"], - "occurrences": 3 - }, - "0xd83cec69ed9d8044597a793445c86a5e763b0e3d": { - "address": "0xd83cec69ed9d8044597a793445c86a5e763b0e3d", - "symbol": "STOPELON", - "decimals": 9, - "name": "StopElon", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xd83cec69ed9d8044597a793445c86a5e763b0e3d.png", - "aggregators": ["PancakeCoinMarketCap", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x716de634227c1831f78d1989c92c6495e279a084": { - "address": "0x716de634227c1831f78d1989c92c6495e279a084", - "symbol": "SWS", - "decimals": 18, - "name": "SwiftSwap", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x716de634227c1831f78d1989c92c6495e279a084.png", - "aggregators": ["PancakeCoinMarketCap", "Rubic", "Rango"], - "occurrences": 3 - }, - "0xe82546b56b1b8a5f031bcd23ff6332282cb0124b": { - "address": "0xe82546b56b1b8a5f031bcd23ff6332282cb0124b", - "symbol": "SYNCBRAIN", - "decimals": 18, - "name": "Brain Sync", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xe82546b56b1b8a5f031bcd23ff6332282cb0124b.png", - "aggregators": ["PancakeCoinMarketCap", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x7606267a4bfff2c5010c92924348c3e4221955f2": { - "address": "0x7606267a4bfff2c5010c92924348c3e4221955f2", - "symbol": "TALK", - "decimals": 9, - "name": "Talkado", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x7606267a4bfff2c5010c92924348c3e4221955f2.png", - "aggregators": ["PancakeCoinMarketCap", "Rubic", "Rango"], - "occurrences": 3 - }, - "0xd20738760aededa73f6cd91a3d357746e0283a0e": { - "address": "0xd20738760aededa73f6cd91a3d357746e0283a0e", - "symbol": "TANKS", - "decimals": 18, - "name": "Tanks For Playing", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xd20738760aededa73f6cd91a3d357746e0283a0e.png", - "aggregators": ["PancakeCoinMarketCap", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x2fc00683e0b83a5472cefaf083babe3be9e7dfa6": { - "address": "0x2fc00683e0b83a5472cefaf083babe3be9e7dfa6", - "symbol": "TARM", - "decimals": 18, - "name": "Tarmex", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x2fc00683e0b83a5472cefaf083babe3be9e7dfa6.png", - "aggregators": ["PancakeCoinMarketCap", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x55a633b3fce52144222e468a326105aa617cc1cc": { - "address": "0x55a633b3fce52144222e468a326105aa617cc1cc", - "symbol": "TRUTH", - "decimals": 18, - "name": "TRUTH SEEKERS", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x55a633b3fce52144222e468a326105aa617cc1cc.png", - "aggregators": ["PancakeCoinMarketCap", "Rubic", "Rango"], - "occurrences": 3 - }, - "0xd618ad98e6557532d3c65e88bf1ff765724f21c9": { - "address": "0xd618ad98e6557532d3c65e88bf1ff765724f21c9", - "symbol": "TTAI", - "decimals": 18, - "name": "Trade Tech AI", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xd618ad98e6557532d3c65e88bf1ff765724f21c9.png", - "aggregators": ["PancakeCoinMarketCap", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x50a9eb8a53f2c2993f46b354bd5f24f1c880bf24": { - "address": "0x50a9eb8a53f2c2993f46b354bd5f24f1c880bf24", - "symbol": "TTN", - "decimals": 9, - "name": "TeleTreon", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x50a9eb8a53f2c2993f46b354bd5f24f1c880bf24.png", - "aggregators": ["PancakeCoinMarketCap", "Rubic", "Rango"], - "occurrences": 3 - }, - "0xf4ff4a33dcf849e6af763a266c0ee6628811fe79": { - "address": "0xf4ff4a33dcf849e6af763a266c0ee6628811fe79", - "symbol": "TW", - "decimals": 18, - "name": "Winners Coin", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xf4ff4a33dcf849e6af763a266c0ee6628811fe79.png", - "aggregators": ["PancakeCoinMarketCap", "Rubic", "Rango"], - "occurrences": 3 - }, - "0xd2ed1973d55488b7118ea81d5a30cd7b61c68a49": { - "address": "0xd2ed1973d55488b7118ea81d5a30cd7b61c68a49", - "symbol": "ULTRON", - "decimals": 18, - "name": "Ultron Vault", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xd2ed1973d55488b7118ea81d5a30cd7b61c68a49.png", - "aggregators": ["PancakeCoinMarketCap", "Rubic", "Rango"], - "occurrences": 3 - }, - "0xf8759de7f2c8d3f32fd8f8e4c0c02d436a05ddeb": { - "address": "0xf8759de7f2c8d3f32fd8f8e4c0c02d436a05ddeb", - "symbol": "URUB", - "decimals": 8, - "name": "Urubit", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xf8759de7f2c8d3f32fd8f8e4c0c02d436a05ddeb.png", - "aggregators": ["PancakeCoinMarketCap", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x2d3b329aed5d62945f35104cb73514f507929841": { - "address": "0x2d3b329aed5d62945f35104cb73514f507929841", - "symbol": "USDT", - "decimals": 18, - "name": "Tether USD", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x2d3b329aed5d62945f35104cb73514f507929841.png", - "aggregators": ["PancakeCoinMarketCap", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x9a2a3813ba02add52907f6cf8fa5358856a673bc": { - "address": "0x9a2a3813ba02add52907f6cf8fa5358856a673bc", - "symbol": "VFLOW", - "decimals": 18, - "name": "ValueFlow", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x9a2a3813ba02add52907f6cf8fa5358856a673bc.png", - "aggregators": ["PancakeCoinMarketCap", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x86fac768241b4133d131edccbd47f143a4fa9d32": { - "address": "0x86fac768241b4133d131edccbd47f143a4fa9d32", - "symbol": "WARC", - "decimals": 18, - "name": "WrappedARC", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x86fac768241b4133d131edccbd47f143a4fa9d32.png", - "aggregators": ["PancakeCoinMarketCap", "Rubic", "Rango"], - "occurrences": 3 - }, - "0xfc12242996ed64382286d765572f19e9b843f196": { - "address": "0xfc12242996ed64382286d765572f19e9b843f196", - "symbol": "WDF", - "decimals": 18, - "name": "Wallet Defi", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xfc12242996ed64382286d765572f19e9b843f196.png", - "aggregators": ["PancakeCoinMarketCap", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x7c5e8a22a4e8f9da2797a9e30e9d64abf5493c43": { - "address": "0x7c5e8a22a4e8f9da2797a9e30e9d64abf5493c43", - "symbol": "WEBAI", - "decimals": 18, - "name": "Web Ai", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x7c5e8a22a4e8f9da2797a9e30e9d64abf5493c43.png", - "aggregators": ["PancakeCoinMarketCap", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x637c2173f6e678ac3c9b43b6665c760dc6021c13": { - "address": "0x637c2173f6e678ac3c9b43b6665c760dc6021c13", - "symbol": "WMT", - "decimals": 6, - "name": "worldmobiletoken", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x637c2173f6e678ac3c9b43b6665c760dc6021c13.png", - "aggregators": ["PancakeCoinMarketCap", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x6ad2b6d5d8f96c8e581d3100c12878b2151a0423": { - "address": "0x6ad2b6d5d8f96c8e581d3100c12878b2151a0423", - "symbol": "WOLFIES", - "decimals": 18, - "name": "Wolf Pups", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x6ad2b6d5d8f96c8e581d3100c12878b2151a0423.png", - "aggregators": ["PancakeCoinMarketCap", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x5c0d3c165dc46cfd5ec80bbb1bf7cb8631f9d6c7": { - "address": "0x5c0d3c165dc46cfd5ec80bbb1bf7cb8631f9d6c7", - "symbol": "WSAFU", - "decimals": 18, - "name": "Wallet SAFU", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x5c0d3c165dc46cfd5ec80bbb1bf7cb8631f9d6c7.png", - "aggregators": ["PancakeCoinMarketCap", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x421f9d1b2147f534e3aefc6af95edd4cf2430874": { - "address": "0x421f9d1b2147f534e3aefc6af95edd4cf2430874", - "symbol": "WWE", - "decimals": 9, - "name": "Wrestling Shiba", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x421f9d1b2147f534e3aefc6af95edd4cf2430874.png", - "aggregators": ["PancakeCoinMarketCap", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x9dcd6ab0511b2e72af3d088538d678bae9bbf552": { - "address": "0x9dcd6ab0511b2e72af3d088538d678bae9bbf552", - "symbol": "XCB", - "decimals": 18, - "name": "CryptoBirdToken", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x9dcd6ab0511b2e72af3d088538d678bae9bbf552.png", - "aggregators": ["PancakeCoinMarketCap", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x1b818cecf52e3b47ee47f7c909e023e4d1b3027c": { - "address": "0x1b818cecf52e3b47ee47f7c909e023e4d1b3027c", - "symbol": "XCE", - "decimals": 18, - "name": "xrpcashone", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x1b818cecf52e3b47ee47f7c909e023e4d1b3027c.png", - "aggregators": ["PancakeCoinMarketCap", "Rubic", "Rango"], - "occurrences": 3 - }, - "0xf5c924b00fa2712b685bbe800d268046f06eb549": { - "address": "0xf5c924b00fa2712b685bbe800d268046f06eb549", - "symbol": "XDOG", - "decimals": 9, - "name": "XDOG", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xf5c924b00fa2712b685bbe800d268046f06eb549.png", - "aggregators": ["PancakeCoinMarketCap", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x2e2ea48c9412e0abb2d6acccec571c6b6411725a": { - "address": "0x2e2ea48c9412e0abb2d6acccec571c6b6411725a", - "symbol": "XLN", - "decimals": 9, - "name": "LunaOne", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x2e2ea48c9412e0abb2d6acccec571c6b6411725a.png", - "aggregators": ["PancakeCoinMarketCap", "Rubic", "Rango"], - "occurrences": 3 - }, - "0xb0cb8dd3b2aa9558ba632a350e242f58d2e289b0": { - "address": "0xb0cb8dd3b2aa9558ba632a350e242f58d2e289b0", - "symbol": "XMC", - "decimals": 18, - "name": "X-MASK Coin", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xb0cb8dd3b2aa9558ba632a350e242f58d2e289b0.png", - "aggregators": ["PancakeCoinMarketCap", "Rubic", "Rango"], - "occurrences": 3 - }, - "0xd88e4d729407d1fa1c04cfdd8abe3972b052f356": { - "address": "0xd88e4d729407d1fa1c04cfdd8abe3972b052f356", - "symbol": "XRS", - "decimals": 9, - "name": "Xrius", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xd88e4d729407d1fa1c04cfdd8abe3972b052f356.png", - "aggregators": ["PancakeCoinMarketCap", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x26c98b27ab51af12c616d2d2eb99909b6bde6dde": { - "address": "0x26c98b27ab51af12c616d2d2eb99909b6bde6dde", - "symbol": "YOEX", - "decimals": 12, - "name": "YO EXCHANGE", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x26c98b27ab51af12c616d2d2eb99909b6bde6dde.png", - "aggregators": ["PancakeCoinMarketCap", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x4aaf59dee18ecc1bbd2bf68b3f7ba3af47eb9cfc": { - "address": "0x4aaf59dee18ecc1bbd2bf68b3f7ba3af47eb9cfc", - "symbol": "YOURWALLET", - "decimals": 18, - "name": "YourWallet", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x4aaf59dee18ecc1bbd2bf68b3f7ba3af47eb9cfc.png", - "aggregators": ["PancakeCoinMarketCap", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x580e2b3170aa36e7018ead248298c8cc18b0f019": { - "address": "0x580e2b3170aa36e7018ead248298c8cc18b0f019", - "symbol": "ZIBU", - "decimals": 18, - "name": "Zibu", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x580e2b3170aa36e7018ead248298c8cc18b0f019.png", - "aggregators": ["PancakeCoinMarketCap", "Rubic", "Rango"], - "occurrences": 3 - }, - "0xe0399378f7a92a39da849eb64cddde2940e234bb": { - "address": "0xe0399378f7a92a39da849eb64cddde2940e234bb", - "symbol": "ZION", - "decimals": 9, - "name": "ZionTopia", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xe0399378f7a92a39da849eb64cddde2940e234bb.png", - "aggregators": ["PancakeCoinMarketCap", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x1c310cd730d36c0b34c36bd881cd3cbfac6f17e5": { - "address": "0x1c310cd730d36c0b34c36bd881cd3cbfac6f17e5", - "symbol": "ZKSVM", - "decimals": 18, - "name": "ZkSVM", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x1c310cd730d36c0b34c36bd881cd3cbfac6f17e5.png", - "aggregators": ["PancakeCoinMarketCap", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x5c8c8d560048f34e5f7f8ad71f2f81a89dbd273e": { - "address": "0x5c8c8d560048f34e5f7f8ad71f2f81a89dbd273e", - "symbol": "CART", - "decimals": 18, - "name": "CART", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x5c8c8d560048f34e5f7f8ad71f2f81a89dbd273e.png", - "aggregators": ["PancakeExtended", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x2cd1075682b0fccaadd0ca629e138e64015ba11c": { - "address": "0x2cd1075682b0fccaadd0ca629e138e64015ba11c", - "symbol": "ΤBTC", - "decimals": 9, - "name": "τBitcoin", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x2cd1075682b0fccaadd0ca629e138e64015ba11c.png", - "aggregators": ["PancakeExtended", "LiFi", "Rubic"], - "occurrences": 3 - }, - "0xf07a32eb035b786898c00bb1c64d8c6f8e7a46d5": { - "address": "0xf07a32eb035b786898c00bb1c64d8c6f8e7a46d5", - "symbol": "WELL", - "decimals": 18, - "name": "WELL", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xf07a32eb035b786898c00bb1c64d8c6f8e7a46d5.png", - "aggregators": ["PancakeExtended", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x75bd1a659bdc62e4c313950d44a2416fab43e785": { - "address": "0x75bd1a659bdc62e4c313950d44a2416fab43e785", - "symbol": "ABNBFDUSD", - "decimals": 18, - "name": "Aave BNB Smart Chain FDUSD", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x75bd1a659bdc62e4c313950d44a2416fab43e785.png", - "aggregators": ["1inch", "LiFi", "Rango"], - "occurrences": 3 - }, - "0x4d074aaa0821073da827f7bf6a02cf905b394ed0": { - "address": "0x4d074aaa0821073da827f7bf6a02cf905b394ed0", - "symbol": "STATABNBFDUSD", - "decimals": 18, - "name": "Static Aave BNB Smart Chain FDUSD", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x4d074aaa0821073da827f7bf6a02cf905b394ed0.png", - "aggregators": ["1inch", "LiFi", "Rango"], - "occurrences": 3 - }, - "0x3906cddfb781f02b21f21bd81ed7fd8dc37075e1": { - "address": "0x3906cddfb781f02b21f21bd81ed7fd8dc37075e1", - "symbol": "STATABNBUSDC", - "decimals": 18, - "name": "Static Aave BNB Smart Chain USDC", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x3906cddfb781f02b21f21bd81ed7fd8dc37075e1.png", - "aggregators": ["1inch", "LiFi", "Rango"], - "occurrences": 3 - }, - "0x0471d185cc7be61e154277cab2396cd397663da6": { - "address": "0x0471d185cc7be61e154277cab2396cd397663da6", - "symbol": "STATABNBUSDT", - "decimals": 18, - "name": "Static Aave BNB Smart Chain USDT", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x0471d185cc7be61e154277cab2396cd397663da6.png", - "aggregators": ["1inch", "LiFi", "Rango"], - "occurrences": 3 - }, - "0x31b9773f225408129a90788ef013bd449e283865": { - "address": "0x31b9773f225408129a90788ef013bd449e283865", - "symbol": "PORN", - "decimals": 9, - "name": "Porn", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x31b9773f225408129a90788ef013bd449e283865.png", - "aggregators": ["1inch", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x050787de0cf5da03d9387b344334d51cae5dd0fd": { - "address": "0x050787de0cf5da03d9387b344334d51cae5dd0fd", - "symbol": "PEKC", - "decimals": 9, - "name": "PEACOCKCOIN", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x050787de0cf5da03d9387b344334d51cae5dd0fd.png", - "aggregators": ["1inch", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x2e94171493fabe316b6205f1585779c887771e2f": { - "address": "0x2e94171493fabe316b6205f1585779c887771e2f", - "symbol": "ABNBETH", - "decimals": 18, - "name": "Aave BNB Smart Chain ETH", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x2e94171493fabe316b6205f1585779c887771e2f.png", - "aggregators": ["1inch", "LiFi", "Rango"], - "occurrences": 3 - }, - "0x52077433fb7053d747e2846ad0c18ff5015c368e": { - "address": "0x52077433fb7053d747e2846ad0c18ff5015c368e", - "symbol": "STATABNBETH", - "decimals": 18, - "name": "Static Aave BNB Smart Chain ETH", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x52077433fb7053d747e2846ad0c18ff5015c368e.png", - "aggregators": ["1inch", "LiFi", "Rango"], - "occurrences": 3 - }, - "0xbdfd4e51d3c14a232135f04988a42576efb31519": { - "address": "0xbdfd4e51d3c14a232135f04988a42576efb31519", - "symbol": "ABNBWSTETH", - "decimals": 18, - "name": "Aave BNB Smart Chain wstETH", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xbdfd4e51d3c14a232135f04988a42576efb31519.png", - "aggregators": ["1inch", "LiFi", "Rango"], - "occurrences": 3 - }, - "0x1a7e4e63778b4f12a199c062f3efdd288afcbce8": { - "address": "0x1a7e4e63778b4f12a199c062f3efdd288afcbce8", - "symbol": "LZ-AGEUR", - "decimals": 18, - "name": "LayerZero Bridge agEUR", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x1a7e4e63778b4f12a199c062f3efdd288afcbce8.png", - "aggregators": ["1inch", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x43c934a845205f0b514417d757d7235b8f53f1b9": { - "address": "0x43c934a845205f0b514417d757d7235b8f53f1b9", - "symbol": "XLM", - "decimals": 18, - "name": "XLM", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x43c934a845205f0b514417d757d7235b8f53f1b9.png", - "aggregators": ["LiFi", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x1ab6478b47270ff05af11a012ac17b098758e193": { - "address": "0x1ab6478b47270ff05af11a012ac17b098758e193", - "symbol": "BFLUX", - "decimals": 18, - "name": "Flux Protocol", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x1ab6478b47270ff05af11a012ac17b098758e193.png", - "aggregators": ["LiFi", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x78e1936f065fd4082387622878c7d11c9f05ecf4": { - "address": "0x78e1936f065fd4082387622878c7d11c9f05ecf4", - "symbol": "JNTR/B", - "decimals": 18, - "name": "JNTR/B", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x78e1936f065fd4082387622878c7d11c9f05ecf4.png", - "aggregators": ["LiFi", "Rubic", "Rango"], - "occurrences": 3 - }, - "0xe81257d932280ae440b17afc5f07c8a110d21432": { - "address": "0xe81257d932280ae440b17afc5f07c8a110d21432", - "symbol": "ZUKI", - "decimals": 18, - "name": "ZUKI MOBA", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xe81257d932280ae440b17afc5f07c8a110d21432.png", - "aggregators": ["LiFi", "Rubic", "Rango"], - "occurrences": 3 - }, - "0xf7fb08c187e6cd1f2149e6c818d0b6d4d4ef1430": { - "address": "0xf7fb08c187e6cd1f2149e6c818d0b6d4d4ef1430", - "symbol": "STN", - "decimals": 18, - "name": "STN", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xf7fb08c187e6cd1f2149e6c818d0b6d4d4ef1430.png", - "aggregators": ["LiFi", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x5e0691ba91e21f3fdc88a0550aa4f7304ed89b5c": { - "address": "0x5e0691ba91e21f3fdc88a0550aa4f7304ed89b5c", - "symbol": "DGCL", - "decimals": 18, - "name": "DGCL", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x5e0691ba91e21f3fdc88a0550aa4f7304ed89b5c.png", - "aggregators": ["LiFi", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x39db1a30122031751e803fabf329c44efbbfbf4b": { - "address": "0x39db1a30122031751e803fabf329c44efbbfbf4b", - "symbol": "FRXETH.AXL", - "decimals": 18, - "name": "Frax Ether", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x39db1a30122031751e803fabf329c44efbbfbf4b.png", - "aggregators": ["LiFi", "Rubic", "Squid"], - "occurrences": 3 - }, - "0x0ebd9537a25f56713e34c45b38f421a1e7191469": { - "address": "0x0ebd9537a25f56713e34c45b38f421a1e7191469", - "symbol": "MOOV", - "decimals": 18, - "name": "MOOV", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x0ebd9537a25f56713e34c45b38f421a1e7191469.png", - "aggregators": ["Socket", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x417e99871cdc1a48cc313be8b586667d54b46494": { - "address": "0x417e99871cdc1a48cc313be8b586667d54b46494", - "symbol": "EUSD", - "decimals": 18, - "name": "ESPENTO-USD", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x417e99871cdc1a48cc313be8b586667d54b46494.png", - "aggregators": ["Socket", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x7ddee176f665cd201f93eede625770e2fd911990": { - "address": "0x7ddee176f665cd201f93eede625770e2fd911990", - "symbol": "GALA", - "decimals": 18, - "name": "pTokens GALA", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x7ddee176f665cd201f93eede625770e2fd911990.png", - "aggregators": ["Socket", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x1fc9004ec7e5722891f5f38bae7678efcb11d34d": { - "address": "0x1fc9004ec7e5722891f5f38bae7678efcb11d34d", - "symbol": "NFT", - "decimals": 6, - "name": "NFT", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x1fc9004ec7e5722891f5f38bae7678efcb11d34d.png", - "aggregators": ["Socket", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x9029fdfae9a03135846381c7ce16595c3554e10a": { - "address": "0x9029fdfae9a03135846381c7ce16595c3554e10a", - "symbol": "OOE", - "decimals": 18, - "name": "OpenOcean", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x9029fdfae9a03135846381c7ce16595c3554e10a.png", - "aggregators": ["Socket", "Rubic", "Rango"], - "occurrences": 3 - }, - "0xa7c29b7630d6cc41a10f8e85a1fa17d6bdeb000f": { - "address": "0xa7c29b7630d6cc41a10f8e85a1fa17d6bdeb000f", - "symbol": "CATE", - "decimals": 9, - "name": "Cate", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xa7c29b7630d6cc41a10f8e85a1fa17d6bdeb000f.png", - "aggregators": ["Socket", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x3524fd7488fdb1f4723bbc22c9cbd1bf89f46e3b": { - "address": "0x3524fd7488fdb1f4723bbc22c9cbd1bf89f46e3b", - "symbol": "SUSHI", - "decimals": 18, - "name": "SushiToken", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x3524fd7488fdb1f4723bbc22c9cbd1bf89f46e3b.png", - "aggregators": ["Socket", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x786ad7b4e3f785c1d429084ca110a7647c7d3011": { - "address": "0x786ad7b4e3f785c1d429084ca110a7647c7d3011", - "symbol": "NEURAL", - "decimals": 18, - "name": "Artificial Neural Network", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x786ad7b4e3f785c1d429084ca110a7647c7d3011.png", - "aggregators": ["Socket", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x96058f8c3e16576d9bd68766f3836d9a33158f89": { - "address": "0x96058f8c3e16576d9bd68766f3836d9a33158f89", - "symbol": "BONDLY", - "decimals": 18, - "name": "BONDLY", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x96058f8c3e16576d9bd68766f3836d9a33158f89.png", - "aggregators": ["Socket", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x7db5af2b9624e1b3b4bb69d6debd9ad1016a58ac": { - "address": "0x7db5af2b9624e1b3b4bb69d6debd9ad1016a58ac", - "symbol": "VOLT", - "decimals": 9, - "name": "VOLT", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x7db5af2b9624e1b3b4bb69d6debd9ad1016a58ac.png", - "aggregators": ["Socket", "Rubic", "Rango"], - "occurrences": 3 - }, - "0xa4fffc757e8c4f24e7b209c033c123d20983ad40": { - "address": "0xa4fffc757e8c4f24e7b209c033c123d20983ad40", - "symbol": "HOGE", - "decimals": 9, - "name": "hoge.finance", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xa4fffc757e8c4f24e7b209c033c123d20983ad40.png", - "aggregators": ["Socket", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x6855f7bb6287f94ddcc8915e37e73a3c9fee5cf3": { - "address": "0x6855f7bb6287f94ddcc8915e37e73a3c9fee5cf3", - "symbol": "STACK", - "decimals": 18, - "name": "STACK", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x6855f7bb6287f94ddcc8915e37e73a3c9fee5cf3.png", - "aggregators": ["Socket", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x7b7af2f5414fb6daeea39e811cf288380323f889": { - "address": "0x7b7af2f5414fb6daeea39e811cf288380323f889", - "symbol": "BABYNEIRO", - "decimals": 18, - "name": "BABY NEIRO", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x7b7af2f5414fb6daeea39e811cf288380323f889.png", - "aggregators": ["Rubic", "Rango", "Sonarwatch"], - "occurrences": 3 - }, - "0x18c4af61dbe6fd55d6470943b4ab8530777d009c": { - "address": "0x18c4af61dbe6fd55d6470943b4ab8530777d009c", - "symbol": "AGATA", - "decimals": 18, - "name": "Agatech", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x18c4af61dbe6fd55d6470943b4ab8530777d009c.png", - "aggregators": ["Rubic", "Rango", "Sonarwatch"], - "occurrences": 3 - }, - "0x6b954b64ef0e5dbe738a4ebe466bd5a8529e7844": { - "address": "0x6b954b64ef0e5dbe738a4ebe466bd5a8529e7844", - "symbol": "ARK", - "decimals": 18, - "name": "Ark Fintech", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x6b954b64ef0e5dbe738a4ebe466bd5a8529e7844.png", - "aggregators": ["Rubic", "Rango", "Sonarwatch"], - "occurrences": 3 - }, - "0xeace46b3e761a1c06a51050ca4e8217d1c81ae2a": { - "address": "0xeace46b3e761a1c06a51050ca4e8217d1c81ae2a", - "symbol": "FINA", - "decimals": 18, - "name": "Lufina", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xeace46b3e761a1c06a51050ca4e8217d1c81ae2a.png", - "aggregators": ["Rubic", "Rango", "Sonarwatch"], - "occurrences": 3 - }, - "0xb1a1d06d42a43a8fcfdc7fdcd744f7ef03e8ad1a": { - "address": "0xb1a1d06d42a43a8fcfdc7fdcd744f7ef03e8ad1a", - "symbol": "HKD", - "decimals": 18, - "name": "HongKongDAO", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xb1a1d06d42a43a8fcfdc7fdcd744f7ef03e8ad1a.png", - "aggregators": ["Rubic", "Rango", "Sonarwatch"], - "occurrences": 3 - }, - "0xc9de725a4be9ab74b136c29d4731d6bebd7122e8": { - "address": "0xc9de725a4be9ab74b136c29d4731d6bebd7122e8", - "symbol": "HTP", - "decimals": 18, - "name": "HowToPay", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xc9de725a4be9ab74b136c29d4731d6bebd7122e8.png", - "aggregators": ["Rubic", "Rango", "Sonarwatch"], - "occurrences": 3 - }, - "0x291aa47c58558adfc2bcd6f060578fdae1f6570c": { - "address": "0x291aa47c58558adfc2bcd6f060578fdae1f6570c", - "symbol": "MBASE", - "decimals": 18, - "name": "Minebase", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x291aa47c58558adfc2bcd6f060578fdae1f6570c.png", - "aggregators": ["Rubic", "Rango", "Sonarwatch"], - "occurrences": 3 - }, - "0xcf123d8638266629fb02fc415ad47bd47de01a6b": { - "address": "0xcf123d8638266629fb02fc415ad47bd47de01a6b", - "symbol": "STZETA", - "decimals": 18, - "name": "Accumulated Finance Staked ZETA", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xcf123d8638266629fb02fc415ad47bd47de01a6b.png", - "aggregators": ["Rubic", "Rango", "Sonarwatch"], - "occurrences": 3 - }, - "0x9b403edc5c75232a6596bbe6ce4dcef44aec3bc0": { - "address": "0x9b403edc5c75232a6596bbe6ce4dcef44aec3bc0", - "symbol": "JETT", - "decimals": 18, - "name": "JETT CRYPTO", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x9b403edc5c75232a6596bbe6ce4dcef44aec3bc0.png", - "aggregators": ["Rubic", "Rango", "Sonarwatch"], - "occurrences": 3 - }, - "0x26d3c0d9f4cc4c130097b6afdebe4f5e497e6bdf": { - "address": "0x26d3c0d9f4cc4c130097b6afdebe4f5e497e6bdf", - "symbol": "MNT", - "decimals": 6, - "name": "Mynth", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x26d3c0d9f4cc4c130097b6afdebe4f5e497e6bdf.png", - "aggregators": ["Rubic", "Rango", "Sonarwatch"], - "occurrences": 3 - }, - "0x4be35ec329343d7d9f548d42b0f8c17fffe07db4": { - "address": "0x4be35ec329343d7d9f548d42b0f8c17fffe07db4", - "symbol": "USDT.Z", - "decimals": 18, - "name": "Tether USD Bridged ZED20", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x4be35ec329343d7d9f548d42b0f8c17fffe07db4.png", - "aggregators": ["Rubic", "Squid", "Rango"], - "occurrences": 3 - }, - "0xca9b8d6df0729d85dcfc8ef8bb18af1ad1990786": { - "address": "0xca9b8d6df0729d85dcfc8ef8bb18af1ad1990786", - "symbol": "CATBOY", - "decimals": 18, - "name": "Catboy", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xca9b8d6df0729d85dcfc8ef8bb18af1ad1990786.png", - "aggregators": ["Rubic", "Squid", "Rango"], - "occurrences": 3 - }, - "0x61632b49df5ca20846b3220bfc42bda5e32c81ad": { - "address": "0x61632b49df5ca20846b3220bfc42bda5e32c81ad", - "symbol": "CGT", - "decimals": 18, - "name": "Curio Gas Token", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x61632b49df5ca20846b3220bfc42bda5e32c81ad.png", - "aggregators": ["Rubic", "Rango", "Sonarwatch"], - "occurrences": 3 - }, - "0x8125355777a19ba58890d71c5754ed1cc4d58fd7": { - "address": "0x8125355777a19ba58890d71c5754ed1cc4d58fd7", - "symbol": "MAKE", - "decimals": 18, - "name": "MAKE", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x8125355777a19ba58890d71c5754ed1cc4d58fd7.png", - "aggregators": ["Rubic", "Rango", "Sonarwatch"], - "occurrences": 3 - }, - "0x25d624e571d6d7b32729b11ddbbd96fe89af44e1": { - "address": "0x25d624e571d6d7b32729b11ddbbd96fe89af44e1", - "symbol": "WIBE", - "decimals": 18, - "name": "WibeGram", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x25d624e571d6d7b32729b11ddbbd96fe89af44e1.png", - "aggregators": ["Rubic", "Rango", "Sonarwatch"], - "occurrences": 3 - }, - "0xe5ba37d7818dad6aac9212f0e8a363c6e8ea0dfb": { - "address": "0xe5ba37d7818dad6aac9212f0e8a363c6e8ea0dfb", - "symbol": "KINGNEIRO", - "decimals": 9, - "name": "King Neiro", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xe5ba37d7818dad6aac9212f0e8a363c6e8ea0dfb.png", - "aggregators": ["Rubic", "Rango", "Sonarwatch"], - "occurrences": 3 - }, - "0x45808ce43eb2d7685ff0242631f0feb6f3d8701a": { - "address": "0x45808ce43eb2d7685ff0242631f0feb6f3d8701a", - "symbol": "EKTAV2", - "decimals": 18, - "name": "EKTAv2", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x45808ce43eb2d7685ff0242631f0feb6f3d8701a.png", - "aggregators": ["Rubic", "Rango", "SushiSwap"], - "occurrences": 3 - }, - "0x3917d6bdffe43105a74e6f9c09b5206f0f3f5fc0": { - "address": "0x3917d6bdffe43105a74e6f9c09b5206f0f3f5fc0", - "symbol": "LCAT", - "decimals": 18, - "name": "Lion Cat", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x3917d6bdffe43105a74e6f9c09b5206f0f3f5fc0.png", - "aggregators": ["Rubic", "Rango", "Sonarwatch"], - "occurrences": 3 - }, - "0x00a8bc9887d40ff12575f6814e98d479afadabe6": { - "address": "0x00a8bc9887d40ff12575f6814e98d479afadabe6", - "symbol": "BABYGOAT", - "decimals": 9, - "name": "Baby Goat", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x00a8bc9887d40ff12575f6814e98d479afadabe6.png", - "aggregators": ["Rubic", "Rango", "Sonarwatch"], - "occurrences": 3 - }, - "0xa20d4d64db3be56d3a02f11c407a403164ee3456": { - "address": "0xa20d4d64db3be56d3a02f11c407a403164ee3456", - "symbol": "BABYMAGA", - "decimals": 9, - "name": "Baby Maga", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xa20d4d64db3be56d3a02f11c407a403164ee3456.png", - "aggregators": ["Rubic", "Rango", "Sonarwatch"], - "occurrences": 3 - }, - "0x248430019224e4479588b3161af49ee44155d450": { - "address": "0x248430019224e4479588b3161af49ee44155d450", - "symbol": "GIC", - "decimals": 9, - "name": "GIC Sports Network", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x248430019224e4479588b3161af49ee44155d450.png", - "aggregators": ["Rubic", "Rango", "Sonarwatch"], - "occurrences": 3 - }, - "0xc790ac3b67c42302555d928e5644b848c557e319": { - "address": "0xc790ac3b67c42302555d928e5644b848c557e319", - "symbol": "CELA", - "decimals": 18, - "name": "CELLULA", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xc790ac3b67c42302555d928e5644b848c557e319.png", - "aggregators": ["Rubic", "Rango", "Sonarwatch"], - "occurrences": 3 - }, - "0x1912a3504e59d1c1b060bf2d371deb00b70e8796": { - "address": "0x1912a3504e59d1c1b060bf2d371deb00b70e8796", - "symbol": "NFTE", - "decimals": 18, - "name": "NFTEarthOFT", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x1912a3504e59d1c1b060bf2d371deb00b70e8796.png", - "aggregators": ["Rubic", "Rango", "SushiSwap"], - "occurrences": 3 - }, - "0x501e3d716a72e11e1e22edcf0365556b357da0c9": { - "address": "0x501e3d716a72e11e1e22edcf0365556b357da0c9", - "symbol": "AXLWMAI", - "decimals": 18, - "name": "Axelar Wrapped WMAI", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x501e3d716a72e11e1e22edcf0365556b357da0c9.png", - "aggregators": ["Rubic", "Squid", "Rango"], - "occurrences": 3 - }, - "0x0bd7241fb1f38765917c42e75eb59946fe212634": { - "address": "0x0bd7241fb1f38765917c42e75eb59946fe212634", - "symbol": "PHPT", - "decimals": 18, - "name": "PHPToken", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x0bd7241fb1f38765917c42e75eb59946fe212634.png", - "aggregators": ["Metamask"], - "occurrences": 1 - }, - "0xa059080853b2f273a452424859a4701a1ce13a0e": { - "address": "0xa059080853b2f273a452424859a4701a1ce13a0e", - "symbol": "MIDAS", - "decimals": 18, - "name": "MIDAS", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xa059080853b2f273a452424859a4701a1ce13a0e.png", - "aggregators": ["Metamask"], - "occurrences": 1 - }, - "0xaca92e438df0b2401ff60da7e4337b687a2435da": { - "address": "0xaca92e438df0b2401ff60da7e4337b687a2435da", - "symbol": "MUSD", - "decimals": 6, - "name": "MetaMask USD", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xaca92e438df0b2401ff60da7e4337b687a2435da.png", - "aggregators": ["Metamask"], - "occurrences": 1 - }, - "0xc64e4e82ddacb9fc1347e3b447f784574604dbec": { - "address": "0xc64e4e82ddacb9fc1347e3b447f784574604dbec", - "symbol": "AXNV", - "decimals": 18, - "name": "Axionova", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xc64e4e82ddacb9fc1347e3b447f784574604dbec.png", - "aggregators": ["Metamask"], - "occurrences": 1 - } - }, - "timestamp": 1779126362508 - }, - "0x3e7": { - "data": { - "0x00fdbc53719604d924226215bc871d55e40a1009": { - "address": "0x00fdbc53719604d924226215bc871d55e40a1009", - "aggregators": ["CoinGecko", "LiFi", "Squid"], - "decimals": 18, - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/999/0x00fdbc53719604d924226215bc871d55e40a1009.png", - "name": "Looping Collective", - "occurrences": 3, - "symbol": "LOOP" - }, - "0x02c6a2fa58cc01a18b8d9e00ea48d65e4df26c70": { - "address": "0x02c6a2fa58cc01a18b8d9e00ea48d65e4df26c70", - "aggregators": ["Metamask", "LiFi", "Squid"], - "decimals": 18, - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/999/0x02c6a2fa58cc01a18b8d9e00ea48d65e4df26c70.png", - "name": "Felix feUSD", - "occurrences": 3, - "symbol": "FEUSD" - }, - "0x03832767bdf9a8ef007449942125ad605acfadb8": { - "address": "0x03832767bdf9a8ef007449942125ad605acfadb8", - "aggregators": ["CoinGecko", "LiFi", "Squid"], - "decimals": 18, - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/999/0x03832767bdf9a8ef007449942125ad605acfadb8.png", - "name": "Swap", - "occurrences": 3, - "symbol": "SWAP" - }, - "0x053f6755320d06b8fd6675581b0475b2e32399b1": { - "address": "0x053f6755320d06b8fd6675581b0475b2e32399b1", - "aggregators": ["CoinGecko", "LiFi", "Squid"], - "decimals": 18, - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/999/0x053f6755320d06b8fd6675581b0475b2e32399b1.png", - "name": "based.one", - "occurrences": 3, - "symbol": "BASED" - }, - "0x068f321fa8fb9f0d135f290ef6a3e2813e1c8a29": { - "address": "0x068f321fa8fb9f0d135f290ef6a3e2813e1c8a29", - "aggregators": ["Metamask", "LiFi", "Squid"], - "decimals": 9, - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/999/0x068f321fa8fb9f0d135f290ef6a3e2813e1c8a29.png", - "name": "Unit Solana", - "occurrences": 3, - "symbol": "USOL" - }, - "0x0ad339d66bf4aed5ce31c64bc37b3244b6394a77": { - "address": "0x0ad339d66bf4aed5ce31c64bc37b3244b6394a77", - "aggregators": ["CoinGecko", "LiFi", "Squid"], - "decimals": 18, - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/999/0x0ad339d66bf4aed5ce31c64bc37b3244b6394a77.png", - "name": "Resolv USD", - "occurrences": 3, - "symbol": "USR" - }, - "0x111111a1a0667d36bd57c0a9f569b98057111111": { - "address": "0x111111a1a0667d36bd57c0a9f569b98057111111", - "aggregators": ["Metamask", "LiFi", "Squid"], - "decimals": 6, - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/999/0x111111a1a0667d36bd57c0a9f569b98057111111.png", - "name": "USDH", - "occurrences": 3, - "symbol": "USDH" - }, - "0x11735dbd0b97cfa7accf47d005673ba185f7fd49": { - "address": "0x11735dbd0b97cfa7accf47d005673ba185f7fd49", - "aggregators": ["CoinGecko", "LiFi", "Squid"], - "decimals": 18, - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/999/0x11735dbd0b97cfa7accf47d005673ba185f7fd49.png", - "name": "CATBAL", - "occurrences": 3, - "symbol": "CATBAL" - }, - "0x1359b05241ca5076c9f59605214f4f84114c0de8": { - "address": "0x1359b05241ca5076c9f59605214f4f84114c0de8", - "aggregators": ["CoinGecko", "LiFi", "Squid"], - "decimals": 6, - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/999/0x1359b05241ca5076c9f59605214f4f84114c0de8.png", - "name": "Wrapped HLP", - "occurrences": 3, - "symbol": "WHLP" - }, - "0x1bee6762f0b522c606dc2ffb106c0bb391b2e309": { - "address": "0x1bee6762f0b522c606dc2ffb106c0bb391b2e309", - "aggregators": ["CoinGecko", "LiFi", "Squid"], - "decimals": 18, - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/999/0x1bee6762f0b522c606dc2ffb106c0bb391b2e309.png", - "name": "PiP", - "occurrences": 3, - "symbol": "PIP" - }, - "0x1ecd15865d7f8019d546f76d095d9c93cc34edfa": { - "address": "0x1ecd15865d7f8019d546f76d095d9c93cc34edfa", - "aggregators": ["CoinGecko", "LiFi", "Squid"], - "decimals": 18, - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/999/0x1ecd15865d7f8019d546f76d095d9c93cc34edfa.png", - "name": "LiquidLaunch", - "occurrences": 3, - "symbol": "LIQD" - }, - "0x27ec642013bcb3d80ca3706599d3cda04f6f4452": { - "address": "0x27ec642013bcb3d80ca3706599d3cda04f6f4452", - "aggregators": ["CoinGecko", "LiFi", "Squid"], - "decimals": 6, - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/999/0x27ec642013bcb3d80ca3706599d3cda04f6f4452.png", - "name": "Unit Pump", - "occurrences": 3, - "symbol": "UPUMP" - }, - "0x28245ab01298eaef7933bc90d35bd9dbca5c89db": { - "address": "0x28245ab01298eaef7933bc90d35bd9dbca5c89db", - "aggregators": ["CoinGecko", "LiFi", "Squid"], - "decimals": 18, - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/999/0x28245ab01298eaef7933bc90d35bd9dbca5c89db.png", - "name": "Peg", - "occurrences": 3, - "symbol": "PEG" - }, - "0x3b4575e689ded21caad31d64c4df1f10f3b2cedf": { - "address": "0x3b4575e689ded21caad31d64c4df1f10f3b2cedf", - "aggregators": ["Metamask", "LiFi", "Squid"], - "decimals": 6, - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/999/0x3b4575e689ded21caad31d64c4df1f10f3b2cedf.png", - "name": "Unit Fartcoin", - "occurrences": 3, - "symbol": "UFART" - }, - "0x3fa145cad2c8108a68cfc803a8e1ae246c36df3e": { - "address": "0x3fa145cad2c8108a68cfc803a8e1ae246c36df3e", - "aggregators": ["CoinGecko", "LiFi", "Squid"], - "decimals": 18, - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/999/0x3fa145cad2c8108a68cfc803a8e1ae246c36df3e.png", - "name": "HyperStrategy", - "occurrences": 3, - "symbol": "HSTR" - }, - "0x47bb061c0204af921f43dc73c7d7768d2672ddee": { - "address": "0x47bb061c0204af921f43dc73c7d7768d2672ddee", - "aggregators": ["CoinGecko", "LiFi", "Squid"], - "decimals": 6, - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/999/0x47bb061c0204af921f43dc73c7d7768d2672ddee.png", - "name": "alright buddy", - "occurrences": 3, - "symbol": "BUDDY" - }, - "0x52e444545fbe9e5972a7a371299522f7871aec1f": { - "address": "0x52e444545fbe9e5972a7a371299522f7871aec1f", - "aggregators": ["CoinGecko", "LiFi", "Squid"], - "decimals": 18, - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/999/0x52e444545fbe9e5972a7a371299522f7871aec1f.png", - "name": "Jeff", - "occurrences": 3, - "symbol": "JEFF" - }, - "0x5555555555555555555555555555555555555555": { - "address": "0x5555555555555555555555555555555555555555", - "aggregators": ["Metamask", "LiFi", "Squid"], - "decimals": 18, - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/999/0x5555555555555555555555555555555555555555.png", - "name": "Wrapped HYPE", - "occurrences": 3, - "symbol": "WHYPE" - }, - "0x5748ae796ae46a4f1348a1693de4b50560485562": { - "address": "0x5748ae796ae46a4f1348a1693de4b50560485562", - "aggregators": ["CoinGecko", "LiFi", "Squid"], - "decimals": 18, - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/999/0x5748ae796ae46a4f1348a1693de4b50560485562.png", - "name": "Looped HYPE", - "occurrences": 3, - "symbol": "LHYPE" - }, - "0x5d3a1ff2b6bab83b63cd9ad0787074081a52ef34": { - "address": "0x5d3a1ff2b6bab83b63cd9ad0787074081a52ef34", - "aggregators": ["Metamask", "LiFi", "Squid"], - "decimals": 18, - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/999/0x5d3a1ff2b6bab83b63cd9ad0787074081a52ef34.png", - "name": "Ethena USDe", - "occurrences": 3, - "symbol": "USDE" - }, - "0x5e105266db42f78fa814322bce7f388b4c2e61eb": { - "address": "0x5e105266db42f78fa814322bce7f388b4c2e61eb", - "aggregators": ["CoinGecko", "LiFi", "Squid"], - "decimals": 18, - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/999/0x5e105266db42f78fa814322bce7f388b4c2e61eb.png", - "name": "Hyperbeat USDT", - "occurrences": 3, - "symbol": "HBUSDT" - }, - "0x738dd55c272b0b686382f62dd4a590056839f4f6": { - "address": "0x738dd55c272b0b686382f62dd4a590056839f4f6", - "aggregators": ["CoinGecko", "LiFi", "Squid"], - "decimals": 6, - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/999/0x738dd55c272b0b686382f62dd4a590056839f4f6.png", - "name": "Holy Liquid", - "occurrences": 3, - "symbol": "HL" - }, - "0x7dcffcb06b40344eeced2d1cbf096b299fe4b405": { - "address": "0x7dcffcb06b40344eeced2d1cbf096b299fe4b405", - "aggregators": ["CoinGecko", "LiFi", "Squid"], - "decimals": 18, - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/999/0x7dcffcb06b40344eeced2d1cbf096b299fe4b405.png", - "name": "RUB", - "occurrences": 3, - "symbol": "RUB" - }, - "0x8888888fdaac0e7cf8c6523c8955bf7954c216fa": { - "address": "0x8888888fdaac0e7cf8c6523c8955bf7954c216fa", - "aggregators": ["CoinGecko", "LiFi", "Squid"], - "decimals": 18, - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/999/0x8888888fdaac0e7cf8c6523c8955bf7954c216fa.png", - "name": "vHYPE", - "occurrences": 3, - "symbol": "VHYPE" - }, - "0x8ff0dd9f9c40a0d76ef1bcfaf5f98c1610c74bd8": { - "address": "0x8ff0dd9f9c40a0d76ef1bcfaf5f98c1610c74bd8", - "aggregators": ["CoinGecko", "LiFi", "Squid"], - "decimals": 18, - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/999/0x8ff0dd9f9c40a0d76ef1bcfaf5f98c1610c74bd8.png", - "name": "Hyperstable", - "occurrences": 3, - "symbol": "USH" - }, - "0x94e8396e0869c9f2200760af0621afd240e1cf38": { - "address": "0x94e8396e0869c9f2200760af0621afd240e1cf38", - "aggregators": ["CoinGecko", "LiFi", "Squid"], - "decimals": 18, - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/999/0x94e8396e0869c9f2200760af0621afd240e1cf38.png", - "name": "Staked HYPE Shares", - "occurrences": 3, - "symbol": "WSTHYPE" - }, - "0x96c6cbb6251ee1c257b2162ca0f39aa5fa44b1fb": { - "address": "0x96c6cbb6251ee1c257b2162ca0f39aa5fa44b1fb", - "aggregators": ["CoinGecko", "LiFi", "Squid"], - "decimals": 18, - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/999/0x96c6cbb6251ee1c257b2162ca0f39aa5fa44b1fb.png", - "name": "Hyperbeat HYPE", - "occurrences": 3, - "symbol": "HBHYPE" - }, - "0x97df58ce4489896f4ec7d16b59b64ad0a56243a8": { - "address": "0x97df58ce4489896f4ec7d16b59b64ad0a56243a8", - "aggregators": ["Metamask", "LiFi"], - "decimals": 18, - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/999/0x97df58ce4489896f4ec7d16b59b64ad0a56243a8.png", - "name": "xBTC", - "occurrences": 2, - "symbol": "XBTC" - }, - "0x9a12cb8869498d8826567437abea27be1c2ba9ab": { - "address": "0x9a12cb8869498d8826567437abea27be1c2ba9ab", - "aggregators": ["CoinGecko", "LiFi", "Squid"], - "decimals": 18, - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/999/0x9a12cb8869498d8826567437abea27be1c2ba9ab.png", - "name": "LINK0", - "occurrences": 3, - "symbol": "LINK0" - }, - "0x9ab96a4668456896d45c301bc3a15cee76aa7b8d": { - "address": "0x9ab96a4668456896d45c301bc3a15cee76aa7b8d", - "aggregators": ["CoinGecko", "LiFi", "Squid"], - "decimals": 6, - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/999/0x9ab96a4668456896d45c301bc3a15cee76aa7b8d.png", - "name": "Relend Network USDC", - "occurrences": 3, - "symbol": "RUSDC" - }, - "0x9b498c3c8a0b8cd8ba1d9851d40d186f1872b44e": { - "address": "0x9b498c3c8a0b8cd8ba1d9851d40d186f1872b44e", - "aggregators": ["Metamask", "LiFi", "Squid"], - "decimals": 18, - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/999/0x9b498c3c8a0b8cd8ba1d9851d40d186f1872b44e.png", - "name": "Purr", - "occurrences": 3, - "symbol": "PURR" - }, - "0x9fd7466f987fd4c45a5bbde22ed8aba5bc8d72d1": { - "address": "0x9fd7466f987fd4c45a5bbde22ed8aba5bc8d72d1", - "aggregators": ["CoinGecko", "LiFi", "Squid"], - "decimals": 6, - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/999/0x9fd7466f987fd4c45a5bbde22ed8aba5bc8d72d1.png", - "name": "hwHLP", - "occurrences": 3, - "symbol": "HWHLP" - }, - "0x9fdbda0a5e284c32744d2f17ee5c74b284993463": { - "address": "0x9fdbda0a5e284c32744d2f17ee5c74b284993463", - "aggregators": ["Metamask", "LiFi", "Squid"], - "decimals": 8, - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/999/0x9fdbda0a5e284c32744d2f17ee5c74b284993463.png", - "name": "Unit Bitcoin", - "occurrences": 3, - "symbol": "UBTC" - }, - "0xa2f8da4a55898b6c947fa392ef8d6bfd87a4ff77": { - "address": "0xa2f8da4a55898b6c947fa392ef8d6bfd87a4ff77", - "aggregators": ["CoinGecko", "LiFi", "Squid"], - "decimals": 6, - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/999/0xa2f8da4a55898b6c947fa392ef8d6bfd87a4ff77.png", - "name": "Hyperwave USD", - "occurrences": 3, - "symbol": "HWUSD" - }, - "0xa320d9f65ec992eff38622c63627856382db726c": { - "address": "0xa320d9f65ec992eff38622c63627856382db726c", - "aggregators": ["CoinGecko", "LiFi", "Squid"], - "decimals": 18, - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/999/0xa320d9f65ec992eff38622c63627856382db726c.png", - "name": "HFUN", - "occurrences": 3, - "symbol": "HFUN" - }, - "0xb09158c8297acee00b900dc1f8715df46b7246a6": { - "address": "0xb09158c8297acee00b900dc1f8715df46b7246a6", - "aggregators": ["CoinGecko", "LiFi", "Squid"], - "decimals": 18, - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/999/0xb09158c8297acee00b900dc1f8715df46b7246a6.png", - "name": "Vegas", - "occurrences": 3, - "symbol": "VEGAS" - }, - "0xb50a96253abdf803d85efcdce07ad8becbc52bd5": { - "address": "0xb50a96253abdf803d85efcdce07ad8becbc52bd5", - "aggregators": ["CoinGecko", "LiFi", "Squid"], - "decimals": 6, - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/999/0xb50a96253abdf803d85efcdce07ad8becbc52bd5.png", - "name": "Hyper USD", - "occurrences": 3, - "symbol": "USDHL" - }, - "0xb5ee887259f792e613edbd20dde8970c10fefda1": { - "address": "0xb5ee887259f792e613edbd20dde8970c10fefda1", - "aggregators": ["CoinGecko", "LiFi", "Squid"], - "decimals": 18, - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/999/0xb5ee887259f792e613edbd20dde8970c10fefda1.png", - "name": "ValiDAO", - "occurrences": 3, - "symbol": "VDO" - }, - "0xb5fe77d323d69eb352a02006ea8ecc38d882620c": { - "address": "0xb5fe77d323d69eb352a02006ea8ecc38d882620c", - "aggregators": ["CoinGecko", "LiFi", "Squid"], - "decimals": 18, - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/999/0xb5fe77d323d69eb352a02006ea8ecc38d882620c.png", - "name": "KEI Stablecoin", - "occurrences": 3, - "symbol": "KEI" - }, - "0xb88339cb7199b77e23db6e890353e22632ba630f": { - "address": "0xb88339cb7199b77e23db6e890353e22632ba630f", - "aggregators": ["Metamask", "LiFi", "Squid"], - "decimals": 6, - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/999/0xb88339cb7199b77e23db6e890353e22632ba630f.png", - "name": "USDC", - "occurrences": 3, - "symbol": "USDC" - }, - "0xb8ce59fc3717ada4c02eadf9682a9e934f625ebb": { - "address": "0xb8ce59fc3717ada4c02eadf9682a9e934f625ebb", - "aggregators": ["Metamask", "LiFi", "Squid"], - "decimals": 6, - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/999/0xb8ce59fc3717ada4c02eadf9682a9e934f625ebb.png", - "name": "USDT0", - "occurrences": 3, - "symbol": "USDT0" - }, - "0xbd6dab50f03a305a80037294fa8d1a9dc0cac91b": { - "address": "0xbd6dab50f03a305a80037294fa8d1a9dc0cac91b", - "aggregators": ["Metamask", "LiFi"], - "decimals": 18, - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/999/0xbd6dab50f03a305a80037294fa8d1a9dc0cac91b.png", - "name": "HyperLend", - "occurrences": 2, - "symbol": "HPL" - }, - "0xbe6727b535545c67d5caa73dea54865b92cf7907": { - "address": "0xbe6727b535545c67d5caa73dea54865b92cf7907", - "aggregators": ["Metamask", "LiFi", "Squid"], - "decimals": 18, - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/999/0xbe6727b535545c67d5caa73dea54865b92cf7907.png", - "name": "Unit Ethereum", - "occurrences": 3, - "symbol": "UETH" - }, - "0xbef0142a0955a7d5dcce5c2a13fb84e332669d2d": { - "address": "0xbef0142a0955a7d5dcce5c2a13fb84e332669d2d", - "aggregators": ["CoinGecko", "LiFi", "Squid"], - "decimals": 18, - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/999/0xbef0142a0955a7d5dcce5c2a13fb84e332669d2d.png", - "name": "Kintsu Staked Hype", - "occurrences": 3, - "symbol": "SHYPE" - }, - "0xca79db4b49f608ef54a5cb813fbed3a6387bc645": { - "address": "0xca79db4b49f608ef54a5cb813fbed3a6387bc645", - "aggregators": ["CoinGecko", "LiFi", "Squid"], - "decimals": 18, - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/999/0xca79db4b49f608ef54a5cb813fbed3a6387bc645.png", - "name": "Last USD", - "occurrences": 3, - "symbol": "USDXL" - }, - "0xd2567ee20d75e8b74b44875173054365f6eb5052": { - "address": "0xd2567ee20d75e8b74b44875173054365f6eb5052", - "aggregators": ["CoinGecko", "LiFi", "Squid"], - "decimals": 6, - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/999/0xd2567ee20d75e8b74b44875173054365f6eb5052.png", - "name": "perpcoin", - "occurrences": 3, - "symbol": "PERPCOIN" - }, - "0xdabb040c428436d41cecd0fb06bcfdbaad3a9aa8": { - "address": "0xdabb040c428436d41cecd0fb06bcfdbaad3a9aa8", - "aggregators": ["CoinGecko", "LiFi", "Squid"], - "decimals": 18, - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/999/0xdabb040c428436d41cecd0fb06bcfdbaad3a9aa8.png", - "name": "Hyperpie Staked mHYPE", - "occurrences": 3, - "symbol": "MHYPE" - }, - "0xe6829d9a7ee3040e1276fa75293bde931859e8fa": { - "address": "0xe6829d9a7ee3040e1276fa75293bde931859e8fa", - "aggregators": ["CoinGecko", "LiFi", "Squid"], - "decimals": 18, - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/999/0xe6829d9a7ee3040e1276fa75293bde931859e8fa.png", - "name": "cmETH", - "occurrences": 3, - "symbol": "CMETH" - }, - "0xf4d9235269a96aadafc9adae454a0618ebe37949": { - "address": "0xf4d9235269a96aadafc9adae454a0618ebe37949", - "aggregators": ["Metamask", "LiFi", "Squid"], - "decimals": 6, - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/999/0xf4d9235269a96aadafc9adae454a0618ebe37949.png", - "name": "Tether Gold Tokens", - "occurrences": 3, - "symbol": "XAUT0" - }, - "0xfd739d4e423301ce9385c1fb8850539d657c296d": { - "address": "0xfd739d4e423301ce9385c1fb8850539d657c296d", - "aggregators": ["Metamask", "LiFi", "Squid"], - "decimals": 18, - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/999/0xfd739d4e423301ce9385c1fb8850539d657c296d.png", - "name": "Kinetiq Staked HYPE", - "occurrences": 3, - "symbol": "KHYPE" - }, - "0xfdd22ce6d1f66bc0ec89b20bf16ccb6670f55a5a": { - "address": "0xfdd22ce6d1f66bc0ec89b20bf16ccb6670f55a5a", - "aggregators": ["CoinGecko", "LiFi", "Squid"], - "decimals": 6, - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/999/0xfdd22ce6d1f66bc0ec89b20bf16ccb6670f55a5a.png", - "name": "thBILL", - "occurrences": 3, - "symbol": "THBILL" - }, - "0xfde5b0626fc80e36885e2fa9cd5ad9d7768d725c": { - "address": "0xfde5b0626fc80e36885e2fa9cd5ad9d7768d725c", - "aggregators": ["CoinGecko", "LiFi", "Squid"], - "decimals": 18, - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/999/0xfde5b0626fc80e36885e2fa9cd5ad9d7768d725c.png", - "name": "haHYPE", - "occurrences": 3, - "symbol": "HAHYPE" - }, - "0xffaa4a3d97fe9107cef8a3f48c069f577ff76cc1": { - "address": "0xffaa4a3d97fe9107cef8a3f48c069f577ff76cc1", - "aggregators": ["CoinGecko", "LiFi", "Squid"], - "decimals": 18, - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/999/0xffaa4a3d97fe9107cef8a3f48c069f577ff76cc1.png", - "name": "Staked HYPE", - "occurrences": 3, - "symbol": "STHYPE" - } - }, - "timestamp": 1775750886331 - }, - "0x89": { - "data": { - "0xc2132d05d31c914a87c6611c10748aeb04b58e8f": { - "address": "0xc2132d05d31c914a87c6611c10748aeb04b58e8f", - "symbol": "USDT", - "decimals": 6, - "name": "(PoS) Tether USD", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0xc2132d05d31c914a87c6611c10748aeb04b58e8f.png", - "aggregators": [ - "QuickSwap", - "1inch", - "LiFi", - "TrustWallet", - "Socket", - "Rubic", - "Squid", - "Rango", - "Sonarwatch", - "SushiSwap" - ], - "occurrences": 10 - }, - "0x1bfd67037b42cf73acf2047067bd4f2c47d9bfd6": { - "address": "0x1bfd67037b42cf73acf2047067bd4f2c47d9bfd6", - "symbol": "WBTC", - "decimals": 8, - "name": "Wrapped BTC", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x1bfd67037b42cf73acf2047067bd4f2c47d9bfd6.png", - "aggregators": [ - "QuickSwap", - "1inch", - "LiFi", - "Socket", - "Rubic", - "Squid", - "Rango", - "Sonarwatch", - "SushiSwap" - ], - "occurrences": 9 - }, - "0xd6df932a45c0f255f85145f286ea0b292b21c90b": { - "address": "0xd6df932a45c0f255f85145f286ea0b292b21c90b", - "symbol": "AAVE", - "decimals": 18, - "name": "Aave (PoS)", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0xd6df932a45c0f255f85145f286ea0b292b21c90b.png", - "aggregators": [ - "QuickSwap", - "1inch", - "LiFi", - "TrustWallet", - "Socket", - "Rubic", - "Squid", - "Rango", - "Sonarwatch", - "SushiSwap" - ], - "occurrences": 10 - }, - "0x8f3cf7ad23cd3cadbd9735aff958023239c6a063": { - "address": "0x8f3cf7ad23cd3cadbd9735aff958023239c6a063", - "symbol": "DAI", - "decimals": 18, - "name": "(PoS) Dai Stablecoin", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x8f3cf7ad23cd3cadbd9735aff958023239c6a063.png", - "aggregators": [ - "QuickSwap", - "1inch", - "LiFi", - "TrustWallet", - "Socket", - "Rubic", - "Squid", - "Rango", - "Sonarwatch", - "SushiSwap" - ], - "occurrences": 10 - }, - "0x53e0bca35ec356bd5dddfebbd1fc0fd03fabad39": { - "address": "0x53e0bca35ec356bd5dddfebbd1fc0fd03fabad39", - "symbol": "LINK", - "decimals": 18, - "name": "ChainLink Token", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x53e0bca35ec356bd5dddfebbd1fc0fd03fabad39.png", - "aggregators": [ - "QuickSwap", - "1inch", - "LiFi", - "TrustWallet", - "Socket", - "Rubic", - "Squid", - "Rango", - "Sonarwatch", - "SushiSwap" - ], - "occurrences": 10 - }, - "0xa1c57f48f0deb89f569dfbe6e2b7f46d33606fd4": { - "address": "0xa1c57f48f0deb89f569dfbe6e2b7f46d33606fd4", - "symbol": "MANA", - "decimals": 18, - "name": "Decentraland MANA", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0xa1c57f48f0deb89f569dfbe6e2b7f46d33606fd4.png", - "aggregators": [ - "QuickSwap", - "1inch", - "LiFi", - "Socket", - "Rubic", - "Squid", - "Rango", - "Sonarwatch", - "SushiSwap" - ], - "occurrences": 9 - }, - "0xb33eaad8d922b1083446dc23f610c2567fb5180f": { - "address": "0xb33eaad8d922b1083446dc23f610c2567fb5180f", - "symbol": "UNI", - "decimals": 18, - "name": "Uniswap", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0xb33eaad8d922b1083446dc23f610c2567fb5180f.png", - "aggregators": [ - "QuickSwap", - "1inch", - "LiFi", - "Socket", - "Rubic", - "Squid", - "Rango", - "Sonarwatch", - "SushiSwap" - ], - "occurrences": 9 - }, - "0x385eeac5cb85a38a9a07a70c73e0a3271cfb54a7": { - "address": "0x385eeac5cb85a38a9a07a70c73e0a3271cfb54a7", - "symbol": "GHST", - "decimals": 18, - "name": "Aavegotchi GHST Token", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x385eeac5cb85a38a9a07a70c73e0a3271cfb54a7.png", - "aggregators": [ - "QuickSwap", - "1inch", - "LiFi", - "Socket", - "Rubic", - "Squid", - "Rango", - "Sonarwatch", - "SushiSwap" - ], - "occurrences": 9 - }, - "0x7ceb23fd6bc0add59e62ac25578270cff1b9f619": { - "address": "0x7ceb23fd6bc0add59e62ac25578270cff1b9f619", - "symbol": "WETH", - "decimals": 18, - "name": "Wrapped Ether", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x7ceb23fd6bc0add59e62ac25578270cff1b9f619.png", - "aggregators": [ - "QuickSwap", - "1inch", - "LiFi", - "TrustWallet", - "Socket", - "Rubic", - "Squid", - "Rango", - "Sonarwatch", - "SushiSwap" - ], - "occurrences": 10 - }, - "0xbbba073c31bf03b8acf7c28ef0738decf3695683": { - "address": "0xbbba073c31bf03b8acf7c28ef0738decf3695683", - "symbol": "SAND", - "decimals": 18, - "name": "SAND", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0xbbba073c31bf03b8acf7c28ef0738decf3695683.png", - "aggregators": [ - "QuickSwap", - "1inch", - "LiFi", - "Socket", - "Rubic", - "Squid", - "Rango", - "Sonarwatch", - "SushiSwap" - ], - "occurrences": 9 - }, - "0xdf7837de1f2fa4631d716cf2502f8b230f1dcc32": { - "address": "0xdf7837de1f2fa4631d716cf2502f8b230f1dcc32", - "symbol": "TEL", - "decimals": 2, - "name": "Telcoin", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0xdf7837de1f2fa4631d716cf2502f8b230f1dcc32.png", - "aggregators": [ - "QuickSwap", - "1inch", - "LiFi", - "Socket", - "Rubic", - "Squid", - "Rango", - "SushiSwap" - ], - "occurrences": 8 - }, - "0x172370d5cd63279efa6d502dab29171933a610af": { - "address": "0x172370d5cd63279efa6d502dab29171933a610af", - "symbol": "CRV", - "decimals": 18, - "name": "Curve", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x172370d5cd63279efa6d502dab29171933a610af.png", - "aggregators": [ - "CoinGecko", - "1inch", - "LiFi", - "Socket", - "Rubic", - "Squid", - "Rango", - "Sonarwatch", - "SushiSwap" - ], - "occurrences": 9 - }, - "0x3c499c542cef5e3811e1192ce70d8cc03d5c3359": { - "address": "0x3c499c542cef5e3811e1192ce70d8cc03d5c3359", - "symbol": "USDC", - "decimals": 6, - "name": "USD Coin", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x3c499c542cef5e3811e1192ce70d8cc03d5c3359.png", - "aggregators": [ - "CoinGecko", - "1inch", - "LiFi", - "Socket", - "Rubic", - "Squid", - "Rango", - "Sonarwatch", - "SushiSwap" - ], - "occurrences": 9 - }, - "0x4e78011ce80ee02d2c3e649fb657e45898257815": { - "address": "0x4e78011ce80ee02d2c3e649fb657e45898257815", - "symbol": "KLIMA", - "decimals": 9, - "name": "KlimaDAO", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x4e78011ce80ee02d2c3e649fb657e45898257815.png", - "aggregators": [ - "QuickSwap", - "1inch", - "LiFi", - "Socket", - "Rubic", - "Squid", - "Rango", - "Sonarwatch", - "SushiSwap" - ], - "occurrences": 9 - }, - "0x9a71012b13ca4d3d0cdc72a177df3ef03b0e76a3": { - "address": "0x9a71012b13ca4d3d0cdc72a177df3ef03b0e76a3", - "symbol": "BAL", - "decimals": 18, - "name": "Balancer", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x9a71012b13ca4d3d0cdc72a177df3ef03b0e76a3.png", - "aggregators": [ - "OpenSwap", - "1inch", - "LiFi", - "Socket", - "Rubic", - "Rango", - "Sonarwatch", - "SushiSwap" - ], - "occurrences": 8 - }, - "0xd0258a3fd00f38aa8090dfee343f10a9d4d30d3f": { - "address": "0xd0258a3fd00f38aa8090dfee343f10a9d4d30d3f", - "symbol": "VOXEL", - "decimals": 18, - "name": "VOXEL Token", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0xd0258a3fd00f38aa8090dfee343f10a9d4d30d3f.png", - "aggregators": [ - "QuickSwap", - "1inch", - "LiFi", - "Rubic", - "Squid", - "Rango", - "Sonarwatch", - "SushiSwap" - ], - "occurrences": 8 - }, - "0x03b54a6e9a984069379fae1a4fc4dbae93b3bccd": { - "address": "0x03b54a6e9a984069379fae1a4fc4dbae93b3bccd", - "symbol": "WSTETH", - "decimals": 18, - "name": "Wrapped stETH", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x03b54a6e9a984069379fae1a4fc4dbae93b3bccd.png", - "aggregators": [ - "QuickSwap", - "1inch", - "LiFi", - "Socket", - "Rubic", - "Squid", - "Rango", - "Sonarwatch" - ], - "occurrences": 8 - }, - "0x2e1ad108ff1d8c782fcbbb89aad783ac49586756": { - "address": "0x2e1ad108ff1d8c782fcbbb89aad783ac49586756", - "symbol": "TUSD", - "decimals": 18, - "name": "TrueUSD", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x2e1ad108ff1d8c782fcbbb89aad783ac49586756.png", - "aggregators": [ - "QuickSwap", - "1inch", - "LiFi", - "Socket", - "Rubic", - "Rango", - "Sonarwatch", - "SushiSwap" - ], - "occurrences": 8 - }, - "0x0b3f868e0be5597d5db7feb59e1cadbb0fdda50a": { - "address": "0x0b3f868e0be5597d5db7feb59e1cadbb0fdda50a", - "symbol": "SUSHI", - "decimals": 18, - "name": "SushiToken", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x0b3f868e0be5597d5db7feb59e1cadbb0fdda50a.png", - "aggregators": [ - "OpenSwap", - "1inch", - "LiFi", - "Socket", - "Rubic", - "Squid", - "Rango", - "SushiSwap" - ], - "occurrences": 8 - }, - "0x45c32fa6df82ead1e2ef74d17b76547eddfaff89": { - "address": "0x45c32fa6df82ead1e2ef74d17b76547eddfaff89", - "symbol": "FRAX", - "decimals": 18, - "name": "Frax", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x45c32fa6df82ead1e2ef74d17b76547eddfaff89.png", - "aggregators": [ - "QuickSwap", - "1inch", - "LiFi", - "Socket", - "Rubic", - "Rango", - "SushiSwap" - ], - "occurrences": 7 - }, - "0x5fe2b58c013d7601147dcdd68c143a77499f5531": { - "address": "0x5fe2b58c013d7601147dcdd68c143a77499f5531", - "symbol": "GRT", - "decimals": 18, - "name": "Graph Token", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x5fe2b58c013d7601147dcdd68c143a77499f5531.png", - "aggregators": [ - "CoinGecko", - "1inch", - "LiFi", - "Socket", - "Rubic", - "Squid", - "Rango", - "Sonarwatch", - "SushiSwap" - ], - "occurrences": 9 - }, - "0x6f7c932e7684666c9fd1d44527765433e01ff61d": { - "address": "0x6f7c932e7684666c9fd1d44527765433e01ff61d", - "symbol": "MKR", - "decimals": 18, - "name": "Maker", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x6f7c932e7684666c9fd1d44527765433e01ff61d.png", - "aggregators": [ - "CoinGecko", - "1inch", - "LiFi", - "Socket", - "Rubic", - "Squid", - "Rango", - "Sonarwatch", - "SushiSwap" - ], - "occurrences": 9 - }, - "0x50b728d8d964fd00c2d0aad81718b71311fef68a": { - "address": "0x50b728d8d964fd00c2d0aad81718b71311fef68a", - "symbol": "SNX", - "decimals": 18, - "name": "Synthetix Network Token", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x50b728d8d964fd00c2d0aad81718b71311fef68a.png", - "aggregators": [ - "CoinGecko", - "1inch", - "LiFi", - "Socket", - "Rubic", - "Squid", - "Rango", - "Sonarwatch", - "SushiSwap" - ], - "occurrences": 9 - }, - "0x1c954e8fe737f99f68fa1ccda3e51ebdb291948c": { - "address": "0x1c954e8fe737f99f68fa1ccda3e51ebdb291948c", - "symbol": "KNC", - "decimals": 18, - "name": "Kyber Network Crystal v2", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x1c954e8fe737f99f68fa1ccda3e51ebdb291948c.png", - "aggregators": [ - "CoinGecko", - "1inch", - "LiFi", - "Socket", - "Rubic", - "Squid", - "Rango", - "Sonarwatch", - "SushiSwap" - ], - "occurrences": 9 - }, - "0x2f6f07cdcf3588944bf4c42ac74ff24bf56e7590": { - "address": "0x2f6f07cdcf3588944bf4c42ac74ff24bf56e7590", - "symbol": "STG", - "decimals": 18, - "name": "StargateToken", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x2f6f07cdcf3588944bf4c42ac74ff24bf56e7590.png", - "aggregators": [ - "CoinGecko", - "1inch", - "LiFi", - "Socket", - "Rubic", - "Squid", - "Rango", - "Sonarwatch", - "SushiSwap" - ], - "occurrences": 9 - }, - "0xb0b195aefa3650a6908f15cdac7d92f8a5791b0b": { - "address": "0xb0b195aefa3650a6908f15cdac7d92f8a5791b0b", - "symbol": "BOB", - "decimals": 18, - "name": "BOB", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0xb0b195aefa3650a6908f15cdac7d92f8a5791b0b.png", - "aggregators": [ - "QuickSwap", - "1inch", - "LiFi", - "Socket", - "Rubic", - "Rango", - "Sonarwatch", - "SushiSwap" - ], - "occurrences": 8 - }, - "0xee7666aacaefaa6efeef62ea40176d3eb21953b9": { - "address": "0xee7666aacaefaa6efeef62ea40176d3eb21953b9", - "symbol": "MCHC", - "decimals": 18, - "name": "MCH Coin", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0xee7666aacaefaa6efeef62ea40176d3eb21953b9.png", - "aggregators": [ - "QuickSwap", - "1inch", - "LiFi", - "Socket", - "Rubic", - "Squid", - "Rango", - "Sonarwatch" - ], - "occurrences": 8 - }, - "0x1b815d120b3ef02039ee11dc2d33de7aa4a8c603": { - "address": "0x1b815d120b3ef02039ee11dc2d33de7aa4a8c603", - "symbol": "WOO", - "decimals": 18, - "name": "Wootrade", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x1b815d120b3ef02039ee11dc2d33de7aa4a8c603.png", - "aggregators": [ - "QuickSwap", - "1inch", - "LiFi", - "Socket", - "Rubic", - "Rango", - "Sonarwatch", - "SushiSwap" - ], - "occurrences": 8 - }, - "0x3a58a54c066fdc0f2d55fc9c89f0415c92ebf3c4": { - "address": "0x3a58a54c066fdc0f2d55fc9c89f0415c92ebf3c4", - "symbol": "STMATIC", - "decimals": 18, - "name": "Lido Staked Matic", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x3a58a54c066fdc0f2d55fc9c89f0415c92ebf3c4.png", - "aggregators": [ - "QuickSwap", - "1inch", - "LiFi", - "Socket", - "Rubic", - "Squid", - "Rango", - "Sonarwatch" - ], - "occurrences": 8 - }, - "0xc3c7d422809852031b44ab29eec9f1eff2a58756": { - "address": "0xc3c7d422809852031b44ab29eec9f1eff2a58756", - "symbol": "LDO", - "decimals": 18, - "name": "Lido DAO", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0xc3c7d422809852031b44ab29eec9f1eff2a58756.png", - "aggregators": [ - "QuickSwap", - "1inch", - "LiFi", - "Socket", - "Rubic", - "Squid", - "Rango", - "Sonarwatch" - ], - "occurrences": 8 - }, - "0xfa68fb4628dff1028cfec22b4162fccd0d45efb6": { - "address": "0xfa68fb4628dff1028cfec22b4162fccd0d45efb6", - "symbol": "MATICX", - "decimals": 18, - "name": "Stader MaticX", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0xfa68fb4628dff1028cfec22b4162fccd0d45efb6.png", - "aggregators": [ - "QuickSwap", - "1inch", - "LiFi", - "Socket", - "Rubic", - "Squid", - "Rango", - "Sonarwatch" - ], - "occurrences": 8 - }, - "0x580a84c73811e1839f75d86d75d88cca0c241ff4": { - "address": "0x580a84c73811e1839f75d86d75d88cca0c241ff4", - "symbol": "QI", - "decimals": 18, - "name": "Qi Dao", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x580a84c73811e1839f75d86d75d88cca0c241ff4.png", - "aggregators": [ - "QuickSwap", - "1inch", - "LiFi", - "Socket", - "Rubic", - "Squid", - "Rango", - "SushiSwap" - ], - "occurrences": 8 - }, - "0xe06bd4f5aac8d0aa337d13ec88db6defc6eaeefe": { - "address": "0xe06bd4f5aac8d0aa337d13ec88db6defc6eaeefe", - "symbol": "IXT", - "decimals": 18, - "name": "Planet IX", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0xe06bd4f5aac8d0aa337d13ec88db6defc6eaeefe.png", - "aggregators": [ - "QuickSwap", - "1inch", - "LiFi", - "Rubic", - "Squid", - "Rango", - "Sonarwatch" - ], - "occurrences": 7 - }, - "0x2760e46d9bb43dafcbecaad1f64b93207f9f0ed7": { - "address": "0x2760e46d9bb43dafcbecaad1f64b93207f9f0ed7", - "symbol": "MVX", - "decimals": 18, - "name": "Metavault Trade", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x2760e46d9bb43dafcbecaad1f64b93207f9f0ed7.png", - "aggregators": [ - "QuickSwap", - "LiFi", - "Socket", - "Rubic", - "Squid", - "Rango", - "Sonarwatch" - ], - "occurrences": 7 - }, - "0xeb971fd26783f32694dbb392dd7289de23109148": { - "address": "0xeb971fd26783f32694dbb392dd7289de23109148", - "symbol": "SOPH", - "decimals": 18, - "name": "Sophon", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0xeb971fd26783f32694dbb392dd7289de23109148.png", - "aggregators": [ - "CoinGecko", - "1inch", - "LiFi", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 7 - }, - "0xee9a352f6aac4af1a5b9f467f6a93e0ffbe9dd35": { - "address": "0xee9a352f6aac4af1a5b9f467f6a93e0ffbe9dd35", - "symbol": "MASQ", - "decimals": 18, - "name": "MASQ", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0xee9a352f6aac4af1a5b9f467f6a93e0ffbe9dd35.png", - "aggregators": [ - "QuickSwap", - "1inch", - "LiFi", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 7 - }, - "0x695fc8b80f344411f34bdbcb4e621aa69ada384b": { - "address": "0x695fc8b80f344411f34bdbcb4e621aa69ada384b", - "symbol": "NITRO", - "decimals": 18, - "name": "Nitro League", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x695fc8b80f344411f34bdbcb4e621aa69ada384b.png", - "aggregators": [ - "QuickSwap", - "1inch", - "Socket", - "Rubic", - "Squid", - "Rango", - "Sonarwatch" - ], - "occurrences": 7 - }, - "0x0d500b1d8e8ef31e21c99d1db9a6444d3adf1270": { - "address": "0x0d500b1d8e8ef31e21c99d1db9a6444d3adf1270", - "symbol": "WMATIC", - "decimals": 18, - "name": "Wrapped MATIC", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x0d500b1d8e8ef31e21c99d1db9a6444d3adf1270.png", - "aggregators": [ - "QuickSwap", - "1inch", - "LiFi", - "TrustWallet", - "Socket", - "Rubic", - "Squid", - "Rango", - "Sonarwatch", - "SushiSwap" - ], - "occurrences": 10 - }, - "0xa3fa99a148fa48d14ed51d610c367c61876997f1": { - "address": "0xa3fa99a148fa48d14ed51d610c367c61876997f1", - "symbol": "MIMATIC", - "decimals": 18, - "name": "MAI", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0xa3fa99a148fa48d14ed51d610c367c61876997f1.png", - "aggregators": [ - "QuickSwap", - "1inch", - "LiFi", - "Socket", - "Rubic", - "Squid", - "Rango", - "Sonarwatch", - "SushiSwap" - ], - "occurrences": 9 - }, - "0x2c89bbc92bd86f8075d1decc58c7f4e0107f286b": { - "address": "0x2c89bbc92bd86f8075d1decc58c7f4e0107f286b", - "symbol": "AVAX", - "decimals": 18, - "name": "Avalanche Token", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x2c89bbc92bd86f8075d1decc58c7f4e0107f286b.png", - "aggregators": [ - "QuickSwap", - "1inch", - "LiFi", - "Socket", - "Rubic", - "Squid", - "Rango", - "Sonarwatch", - "SushiSwap" - ], - "occurrences": 9 - }, - "0x2f800db0fdb5223b3c3f354886d907a671414a7f": { - "address": "0x2f800db0fdb5223b3c3f354886d907a671414a7f", - "symbol": "BCT", - "decimals": 18, - "name": "Toucan Protocol: Base Carbon Tonne", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x2f800db0fdb5223b3c3f354886d907a671414a7f.png", - "aggregators": [ - "CoinGecko", - "1inch", - "LiFi", - "Rubic", - "Squid", - "Rango", - "Sonarwatch", - "SushiSwap" - ], - "occurrences": 8 - }, - "0xd838290e877e0188a4a44700463419ed96c16107": { - "address": "0xd838290e877e0188a4a44700463419ed96c16107", - "symbol": "NCT", - "decimals": 18, - "name": "Nature Carbon Tonne", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0xd838290e877e0188a4a44700463419ed96c16107.png", - "aggregators": [ - "CoinGecko", - "1inch", - "Socket", - "Rubic", - "Squid", - "Rango", - "Sonarwatch", - "SushiSwap" - ], - "occurrences": 8 - }, - "0x0e9b89007eee9c958c0eda24ef70723c2c93dd58": { - "address": "0x0e9b89007eee9c958c0eda24ef70723c2c93dd58", - "symbol": "ANKRMATIC", - "decimals": 18, - "name": "Ankr Staked MATIC", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x0e9b89007eee9c958c0eda24ef70723c2c93dd58.png", - "aggregators": [ - "QuickSwap", - "1inch", - "LiFi", - "Socket", - "Rubic", - "Rango", - "Sonarwatch", - "SushiSwap" - ], - "occurrences": 8 - }, - "0xcd7361ac3307d1c5a46b63086a90742ff44c63b3": { - "address": "0xcd7361ac3307d1c5a46b63086a90742ff44c63b3", - "symbol": "RAIDER", - "decimals": 18, - "name": "Crypto Raider", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0xcd7361ac3307d1c5a46b63086a90742ff44c63b3.png", - "aggregators": [ - "CoinGecko", - "1inch", - "LiFi", - "Rubic", - "Squid", - "Rango", - "Sonarwatch", - "SushiSwap" - ], - "occurrences": 8 - }, - "0x1379e8886a944d2d9d440b3d88df536aea08d9f3": { - "address": "0x1379e8886a944d2d9d440b3d88df536aea08d9f3", - "symbol": "MYST", - "decimals": 18, - "name": "Mysterium", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x1379e8886a944d2d9d440b3d88df536aea08d9f3.png", - "aggregators": [ - "QuickSwap", - "1inch", - "LiFi", - "Socket", - "Rubic", - "Squid", - "Rango", - "Sonarwatch" - ], - "occurrences": 8 - }, - "0xdbf31df14b66535af65aac99c32e9ea844e14501": { - "address": "0xdbf31df14b66535af65aac99c32e9ea844e14501", - "symbol": "RENBTC", - "decimals": 8, - "name": "Ren BTC", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0xdbf31df14b66535af65aac99c32e9ea844e14501.png", - "aggregators": [ - "CoinGecko", - "1inch", - "LiFi", - "Socket", - "Rubic", - "Rango", - "Sonarwatch", - "SushiSwap" - ], - "occurrences": 8 - }, - "0xdb725f82818de83e99f1dac22a9b5b51d3d04dd4": { - "address": "0xdb725f82818de83e99f1dac22a9b5b51d3d04dd4", - "symbol": "GET", - "decimals": 18, - "name": "Guaranteed Entrance Token", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0xdb725f82818de83e99f1dac22a9b5b51d3d04dd4.png", - "aggregators": [ - "CoinGecko", - "1inch", - "LiFi", - "Socket", - "Rubic", - "Rango", - "Sonarwatch", - "SushiSwap" - ], - "occurrences": 8 - }, - "0x750e4c4984a9e0f12978ea6742bc1c5d248f40ed": { - "address": "0x750e4c4984a9e0f12978ea6742bc1c5d248f40ed", - "symbol": "AXLUSDC", - "decimals": 6, - "name": "Axelar Wrapped USDC", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x750e4c4984a9e0f12978ea6742bc1c5d248f40ed.png", - "aggregators": [ - "QuickSwap", - "1inch", - "LiFi", - "Rubic", - "Squid", - "Rango", - "Sonarwatch", - "SushiSwap" - ], - "occurrences": 8 - }, - "0x614389eaae0a6821dc49062d56bda3d9d45fa2ff": { - "address": "0x614389eaae0a6821dc49062d56bda3d9d45fa2ff", - "symbol": "ORBS", - "decimals": 18, - "name": "Orbs", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x614389eaae0a6821dc49062d56bda3d9d45fa2ff.png", - "aggregators": [ - "QuickSwap", - "1inch", - "LiFi", - "Socket", - "Rubic", - "Squid", - "Rango", - "Sonarwatch" - ], - "occurrences": 8 - }, - "0x8c92e38eca8210f4fcbf17f0951b198dd7668292": { - "address": "0x8c92e38eca8210f4fcbf17f0951b198dd7668292", - "symbol": "DHT", - "decimals": 18, - "name": "dHedge DAO Token", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x8c92e38eca8210f4fcbf17f0951b198dd7668292.png", - "aggregators": [ - "CoinGecko", - "1inch", - "LiFi", - "Socket", - "Rubic", - "Rango", - "Sonarwatch", - "SushiSwap" - ], - "occurrences": 8 - }, - "0x65a05db8322701724c197af82c9cae41195b0aa8": { - "address": "0x65a05db8322701724c197af82c9cae41195b0aa8", - "symbol": "FOX", - "decimals": 18, - "name": "ShapeShift FOX Token", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x65a05db8322701724c197af82c9cae41195b0aa8.png", - "aggregators": [ - "CoinGecko", - "1inch", - "LiFi", - "Socket", - "Rubic", - "Rango", - "Sonarwatch", - "SushiSwap" - ], - "occurrences": 8 - }, - "0x8505b9d2254a7ae468c0e9dd10ccea3a837aef5c": { - "address": "0x8505b9d2254a7ae468c0e9dd10ccea3a837aef5c", - "symbol": "COMP", - "decimals": 18, - "name": "Compound", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x8505b9d2254a7ae468c0e9dd10ccea3a837aef5c.png", - "aggregators": [ - "CoinGecko", - "LiFi", - "Socket", - "Rubic", - "Rango", - "Sonarwatch", - "SushiSwap" - ], - "occurrences": 7 - }, - "0xc3fdbadc7c795ef1d6ba111e06ff8f16a20ea539": { - "address": "0xc3fdbadc7c795ef1d6ba111e06ff8f16a20ea539", - "symbol": "ADDY", - "decimals": 18, - "name": "Adamant", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0xc3fdbadc7c795ef1d6ba111e06ff8f16a20ea539.png", - "aggregators": [ - "QuickSwap", - "1inch", - "LiFi", - "Rubic", - "Rango", - "Sonarwatch", - "SushiSwap" - ], - "occurrences": 7 - }, - "0x7e4c577ca35913af564ee2a24d882a4946ec492b": { - "address": "0x7e4c577ca35913af564ee2a24d882a4946ec492b", - "symbol": "MOONED", - "decimals": 18, - "name": "MoonEdge", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x7e4c577ca35913af564ee2a24d882a4946ec492b.png", - "aggregators": [ - "QuickSwap", - "1inch", - "LiFi", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 7 - }, - "0x200c234721b5e549c3693ccc93cf191f90dc2af9": { - "address": "0x200c234721b5e549c3693ccc93cf191f90dc2af9", - "symbol": "METAL", - "decimals": 18, - "name": "Badmad Robots", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x200c234721b5e549c3693ccc93cf191f90dc2af9.png", - "aggregators": [ - "CoinGecko", - "1inch", - "Socket", - "Rubic", - "Squid", - "Rango", - "Sonarwatch" - ], - "occurrences": 7 - }, - "0x34d4ab47bee066f361fa52d792e69ac7bd05ee23": { - "address": "0x34d4ab47bee066f361fa52d792e69ac7bd05ee23", - "symbol": "AURUM", - "decimals": 18, - "name": "Raider Aurum", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x34d4ab47bee066f361fa52d792e69ac7bd05ee23.png", - "aggregators": [ - "CoinGecko", - "1inch", - "Rubic", - "Squid", - "Rango", - "Sonarwatch", - "SushiSwap" - ], - "occurrences": 7 - }, - "0xa3c322ad15218fbfaed26ba7f616249f7705d945": { - "address": "0xa3c322ad15218fbfaed26ba7f616249f7705d945", - "symbol": "MV", - "decimals": 18, - "name": "GensoKishi Metaverse", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0xa3c322ad15218fbfaed26ba7f616249f7705d945.png", - "aggregators": [ - "QuickSwap", - "1inch", - "LiFi", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 7 - }, - "0xe5417af564e4bfda1c483642db72007871397896": { - "address": "0xe5417af564e4bfda1c483642db72007871397896", - "symbol": "GNS", - "decimals": 18, - "name": "Gains Network", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0xe5417af564e4bfda1c483642db72007871397896.png", - "aggregators": [ - "QuickSwap", - "1inch", - "LiFi", - "Rubic", - "Squid", - "Rango", - "Sonarwatch" - ], - "occurrences": 7 - }, - "0xd1f9c58e33933a993a3891f8acfe05a68e1afc05": { - "address": "0xd1f9c58e33933a993a3891f8acfe05a68e1afc05", - "symbol": "SFL", - "decimals": 18, - "name": "Sunflower Land", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0xd1f9c58e33933a993a3891f8acfe05a68e1afc05.png", - "aggregators": [ - "QuickSwap", - "1inch", - "LiFi", - "Rubic", - "Squid", - "Rango", - "Sonarwatch" - ], - "occurrences": 7 - }, - "0x41b3966b4ff7b427969ddf5da3627d6aeae9a48e": { - "address": "0x41b3966b4ff7b427969ddf5da3627d6aeae9a48e", - "symbol": "NEXO", - "decimals": 18, - "name": "Nexo", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x41b3966b4ff7b427969ddf5da3627d6aeae9a48e.png", - "aggregators": [ - "QuickSwap", - "LiFi", - "Socket", - "Rubic", - "Rango", - "Sonarwatch", - "SushiSwap" - ], - "occurrences": 7 - }, - "0x282d8efce846a88b159800bd4130ad77443fa1a1": { - "address": "0x282d8efce846a88b159800bd4130ad77443fa1a1", - "symbol": "OCEAN", - "decimals": 18, - "name": "Ocean Protocol", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x282d8efce846a88b159800bd4130ad77443fa1a1.png", - "aggregators": [ - "QuickSwap", - "1inch", - "LiFi", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 7 - }, - "0x101a023270368c0d50bffb62780f4afd4ea79c35": { - "address": "0x101a023270368c0d50bffb62780f4afd4ea79c35", - "symbol": "ANKR", - "decimals": 18, - "name": "Ankr (PoS)", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x101a023270368c0d50bffb62780f4afd4ea79c35.png", - "aggregators": [ - "QuickSwap", - "LiFi", - "Socket", - "Rubic", - "Rango", - "Sonarwatch", - "SushiSwap" - ], - "occurrences": 7 - }, - "0x831753dd7087cac61ab5644b308642cc1c33dc13": { - "address": "0x831753dd7087cac61ab5644b308642cc1c33dc13", - "symbol": "QUICK", - "decimals": 18, - "name": "Quickswap [OLD]", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x831753dd7087cac61ab5644b308642cc1c33dc13.png", - "aggregators": [ - "QuickSwap", - "LiFi", - "Socket", - "Rubic", - "Squid", - "Rango", - "Sonarwatch" - ], - "occurrences": 7 - }, - "0x1a3acf6d19267e2d3e7f898f42803e90c9219062": { - "address": "0x1a3acf6d19267e2d3e7f898f42803e90c9219062", - "symbol": "FXS", - "decimals": 18, - "name": "Frax Share", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x1a3acf6d19267e2d3e7f898f42803e90c9219062.png", - "aggregators": [ - "CoinGecko", - "LiFi", - "Socket", - "Rubic", - "Rango", - "Sonarwatch", - "SushiSwap" - ], - "occurrences": 7 - }, - "0xee800b277a96b0f490a1a732e1d6395fad960a26": { - "address": "0xee800b277a96b0f490a1a732e1d6395fad960a26", - "symbol": "ARPA", - "decimals": 18, - "name": "ARPA Token", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0xee800b277a96b0f490a1a732e1d6395fad960a26.png", - "aggregators": [ - "CoinGecko", - "LiFi", - "Socket", - "Rubic", - "Rango", - "Sonarwatch", - "SushiSwap" - ], - "occurrences": 7 - }, - "0x85955046df4668e1dd369d2de9f3aeb98dd2a369": { - "address": "0x85955046df4668e1dd369d2de9f3aeb98dd2a369", - "symbol": "DPI", - "decimals": 18, - "name": "DefiPulse Index", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x85955046df4668e1dd369d2de9f3aeb98dd2a369.png", - "aggregators": [ - "QuickSwap", - "LiFi", - "Socket", - "Rubic", - "Rango", - "Sonarwatch", - "SushiSwap" - ], - "occurrences": 7 - }, - "0xf4c83080e80ae530d6f8180572cbbf1ac9d5d435": { - "address": "0xf4c83080e80ae530d6f8180572cbbf1ac9d5d435", - "symbol": "BLANK", - "decimals": 18, - "name": "BlockWallet", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0xf4c83080e80ae530d6f8180572cbbf1ac9d5d435.png", - "aggregators": [ - "QuickSwap", - "1inch", - "LiFi", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 7 - }, - "0x598e49f01befeb1753737934a5b11fea9119c796": { - "address": "0x598e49f01befeb1753737934a5b11fea9119c796", - "symbol": "ADS", - "decimals": 11, - "name": "Adshares", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x598e49f01befeb1753737934a5b11fea9119c796.png", - "aggregators": [ - "QuickSwap", - "1inch", - "LiFi", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 7 - }, - "0x6968105460f67c3bf751be7c15f92f5286fd0ce5": { - "address": "0x6968105460f67c3bf751be7c15f92f5286fd0ce5", - "symbol": "MONA", - "decimals": 18, - "name": "Monavale", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x6968105460f67c3bf751be7c15f92f5286fd0ce5.png", - "aggregators": [ - "QuickSwap", - "1inch", - "LiFi", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 7 - }, - "0xfe712251173a2cd5f5be2b46bb528328ea3565e1": { - "address": "0xfe712251173a2cd5f5be2b46bb528328ea3565e1", - "symbol": "MVI", - "decimals": 18, - "name": "Metaverse Index", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0xfe712251173a2cd5f5be2b46bb528328ea3565e1.png", - "aggregators": [ - "CoinGecko", - "1inch", - "LiFi", - "Socket", - "Rubic", - "Rango", - "SushiSwap" - ], - "occurrences": 7 - }, - "0xd8ca34fd379d9ca3c6ee3b3905678320f5b45195": { - "address": "0xd8ca34fd379d9ca3c6ee3b3905678320f5b45195", - "symbol": "GOHM", - "decimals": 18, - "name": "Governance Ohm", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0xd8ca34fd379d9ca3c6ee3b3905678320f5b45195.png", - "aggregators": [ - "CoinGecko", - "1inch", - "Socket", - "Rubic", - "Rango", - "Sonarwatch", - "SushiSwap" - ], - "occurrences": 7 - }, - "0x2b9e7ccdf0f4e5b24757c1e1a80e311e34cb10c7": { - "address": "0x2b9e7ccdf0f4e5b24757c1e1a80e311e34cb10c7", - "symbol": "MASK", - "decimals": 18, - "name": "MASK", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x2b9e7ccdf0f4e5b24757c1e1a80e311e34cb10c7.png", - "aggregators": [ - "QuickSwap", - "1inch", - "LiFi", - "Socket", - "Rubic", - "Squid", - "Rango" - ], - "occurrences": 7 - }, - "0xd93f7e271cb87c23aaa73edc008a79646d1f9912": { - "address": "0xd93f7e271cb87c23aaa73edc008a79646d1f9912", - "symbol": "SOL", - "decimals": 9, - "name": "SOL (Wormhole)", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0xd93f7e271cb87c23aaa73edc008a79646d1f9912.png", - "aggregators": [ - "CoinGecko", - "1inch", - "LiFi", - "Rubic", - "Squid", - "Rango", - "Sonarwatch" - ], - "occurrences": 7 - }, - "0x70c006878a5a50ed185ac4c87d837633923de296": { - "address": "0x70c006878a5a50ed185ac4c87d837633923de296", - "symbol": "REVV", - "decimals": 18, - "name": "REVV", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x70c006878a5a50ed185ac4c87d837633923de296.png", - "aggregators": [ - "QuickSwap", - "1inch", - "LiFi", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 7 - }, - "0x6ae7dfc73e0dde2aa99ac063dcf7e8a63265108c": { - "address": "0x6ae7dfc73e0dde2aa99ac063dcf7e8a63265108c", - "symbol": "JPYC", - "decimals": 18, - "name": "JPY Coin", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x6ae7dfc73e0dde2aa99ac063dcf7e8a63265108c.png", - "aggregators": [ - "QuickSwap", - "LiFi", - "Socket", - "Rubic", - "Rango", - "Sonarwatch", - "SushiSwap" - ], - "occurrences": 7 - }, - "0xc3ec80343d2bae2f8e680fdadde7c17e71e114ea": { - "address": "0xc3ec80343d2bae2f8e680fdadde7c17e71e114ea", - "symbol": "OM", - "decimals": 18, - "name": "MANTRA", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0xc3ec80343d2bae2f8e680fdadde7c17e71e114ea.png", - "aggregators": [ - "QuickSwap", - "1inch", - "LiFi", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 7 - }, - "0x76e63a3e7ba1e2e61d3da86a87479f983de89a7e": { - "address": "0x76e63a3e7ba1e2e61d3da86a87479f983de89a7e", - "symbol": "OMEN", - "decimals": 18, - "name": "Augury Finance", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x76e63a3e7ba1e2e61d3da86a87479f983de89a7e.png", - "aggregators": [ - "QuickSwap", - "1inch", - "Rubic", - "Rango", - "Sonarwatch", - "SushiSwap" - ], - "occurrences": 6 - }, - "0xd125443f38a69d776177c2b9c041f462936f8218": { - "address": "0xd125443f38a69d776177c2b9c041f462936f8218", - "symbol": "FBX", - "decimals": 18, - "name": "FireBotToken", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0xd125443f38a69d776177c2b9c041f462936f8218.png", - "aggregators": [ - "QuickSwap", - "Socket", - "Rubic", - "Rango", - "Sonarwatch", - "SushiSwap" - ], - "occurrences": 6 - }, - "0x8f9e8e833a69aa467e42c46cca640da84dd4585f": { - "address": "0x8f9e8e833a69aa467e42c46cca640da84dd4585f", - "symbol": "CHAMP", - "decimals": 8, - "name": "NFT Champions", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x8f9e8e833a69aa467e42c46cca640da84dd4585f.png", - "aggregators": [ - "QuickSwap", - "1inch", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 6 - }, - "0xc004e2318722ea2b15499d6375905d75ee5390b8": { - "address": "0xc004e2318722ea2b15499d6375905d75ee5390b8", - "symbol": "KOM", - "decimals": 8, - "name": "Kommunitas", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0xc004e2318722ea2b15499d6375905d75ee5390b8.png", - "aggregators": [ - "QuickSwap", - "1inch", - "Rubic", - "Rango", - "Sonarwatch", - "SushiSwap" - ], - "occurrences": 6 - }, - "0x00000000efe302beaa2b3e6e1b18d08d69a9012a": { - "address": "0x00000000efe302beaa2b3e6e1b18d08d69a9012a", - "symbol": "AUSD", - "decimals": 6, - "name": "AUSD", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x00000000efe302beaa2b3e6e1b18d08d69a9012a.png", - "aggregators": [ - "CoinGecko", - "LiFi", - "Rubic", - "Squid", - "Rango", - "Sonarwatch" - ], - "occurrences": 6 - }, - "0x0266f4f08d82372cf0fcbccc0ff74309089c74d1": { - "address": "0x0266f4f08d82372cf0fcbccc0ff74309089c74d1", - "symbol": "RETH", - "decimals": 18, - "name": "Rocket Pool ETH", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x0266f4f08d82372cf0fcbccc0ff74309089c74d1.png", - "aggregators": [ - "CoinGecko", - "LiFi", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 6 - }, - "0x23d29d30e35c5e8d321e1dc9a8a61bfd846d4c5c": { - "address": "0x23d29d30e35c5e8d321e1dc9a8a61bfd846d4c5c", - "symbol": "HEX", - "decimals": 8, - "name": "HEX", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x23d29d30e35c5e8d321e1dc9a8a61bfd846d4c5c.png", - "aggregators": [ - "QuickSwap", - "LiFi", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 6 - }, - "0xe82808eaa78339b06a691fd92e1be79671cad8d3": { - "address": "0xe82808eaa78339b06a691fd92e1be79671cad8d3", - "symbol": "PLOT", - "decimals": 18, - "name": "PLOT", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0xe82808eaa78339b06a691fd92e1be79671cad8d3.png", - "aggregators": [ - "QuickSwap", - "1inch", - "LiFi", - "Socket", - "Rubic", - "Rango" - ], - "occurrences": 6 - }, - "0x3b1a0c9252ee7403093ff55b4a5886d49a3d837a": { - "address": "0x3b1a0c9252ee7403093ff55b4a5886d49a3d837a", - "symbol": "UM", - "decimals": 18, - "name": "Continuum World", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x3b1a0c9252ee7403093ff55b4a5886d49a3d837a.png", - "aggregators": [ - "QuickSwap", - "1inch", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 6 - }, - "0x2bc07124d8dac638e290f401046ad584546bc47b": { - "address": "0x2bc07124d8dac638e290f401046ad584546bc47b", - "symbol": "TOWER", - "decimals": 18, - "name": "Tower", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x2bc07124d8dac638e290f401046ad584546bc47b.png", - "aggregators": [ - "QuickSwap", - "1inch", - "LiFi", - "Socket", - "Rubic", - "Sonarwatch" - ], - "occurrences": 6 - }, - "0x1599fe55cda767b1f631ee7d414b41f5d6de393d": { - "address": "0x1599fe55cda767b1f631ee7d414b41f5d6de393d", - "symbol": "MILK", - "decimals": 18, - "name": "Milk", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x1599fe55cda767b1f631ee7d414b41f5d6de393d.png", - "aggregators": ["QuickSwap", "1inch", "Socket", "Rubic", "Rango"], - "occurrences": 5 - }, - "0xeb7eab87837f4dad1bb80856db9e4506fc441f3d": { - "address": "0xeb7eab87837f4dad1bb80856db9e4506fc441f3d", - "symbol": "MEE", - "decimals": 18, - "name": "Medieval Empires", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0xeb7eab87837f4dad1bb80856db9e4506fc441f3d.png", - "aggregators": ["QuickSwap", "Socket", "Rubic", "Squid", "Rango"], - "occurrences": 5 - }, - "0x2791bca1f2de4661ed88a30c99a7a9449aa84174": { - "address": "0x2791bca1f2de4661ed88a30c99a7a9449aa84174", - "symbol": "USDC.E", - "decimals": 6, - "name": "USD Coin (PoS)", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x2791bca1f2de4661ed88a30c99a7a9449aa84174.png", - "aggregators": [ - "Metamask", - "1inch", - "LiFi", - "TrustWallet", - "Socket", - "Rubic", - "Squid", - "Rango", - "Sonarwatch", - "SushiSwap" - ], - "occurrences": 10 - }, - "0x6985884c4392d348587b19cb9eaaf157f13271cd": { - "address": "0x6985884c4392d348587b19cb9eaaf157f13271cd", - "symbol": "ZRO", - "decimals": 18, - "name": "LayerZero", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x6985884c4392d348587b19cb9eaaf157f13271cd.png", - "aggregators": [ - "CoinGecko", - "1inch", - "LiFi", - "Socket", - "Rubic", - "Squid", - "Rango", - "Sonarwatch", - "SushiSwap" - ], - "occurrences": 9 - }, - "0xf50d05a1402d0adafa880d36050736f9f6ee7dee": { - "address": "0xf50d05a1402d0adafa880d36050736f9f6ee7dee", - "symbol": "INST", - "decimals": 18, - "name": "Instadapp", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0xf50d05a1402d0adafa880d36050736f9f6ee7dee.png", - "aggregators": [ - "CoinGecko", - "1inch", - "LiFi", - "Socket", - "Rubic", - "Squid", - "Rango", - "Sonarwatch", - "SushiSwap" - ], - "occurrences": 9 - }, - "0xdc3326e71d45186f113a2f448984ca0e8d201995": { - "address": "0xdc3326e71d45186f113a2f448984ca0e8d201995", - "symbol": "XSGD", - "decimals": 6, - "name": "XSGD", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0xdc3326e71d45186f113a2f448984ca0e8d201995.png", - "aggregators": [ - "CoinGecko", - "1inch", - "LiFi", - "Socket", - "Rubic", - "Squid", - "Rango", - "Sonarwatch" - ], - "occurrences": 8 - }, - "0xb5c064f955d8e7f38fe0460c556a72987494ee17": { - "address": "0xb5c064f955d8e7f38fe0460c556a72987494ee17", - "symbol": "QUICK", - "decimals": 18, - "name": "QuickSwap", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0xb5c064f955d8e7f38fe0460c556a72987494ee17.png", - "aggregators": [ - "Metamask", - "1inch", - "LiFi", - "Socket", - "Rubic", - "Squid", - "Rango", - "Sonarwatch" - ], - "occurrences": 8 - }, - "0xb121fcd122daaa153bb8a102754127b2682645cb": { - "address": "0xb121fcd122daaa153bb8a102754127b2682645cb", - "symbol": "PERL", - "decimals": 18, - "name": "Perlin (PoS)", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0xb121fcd122daaa153bb8a102754127b2682645cb.png", - "aggregators": [ - "CoinGecko", - "LiFi", - "Socket", - "Rubic", - "Squid", - "Rango", - "Sonarwatch", - "SushiSwap" - ], - "occurrences": 8 - }, - "0xe111178a87a3bff0c8d18decba5798827539ae99": { - "address": "0xe111178a87a3bff0c8d18decba5798827539ae99", - "symbol": "EURS", - "decimals": 2, - "name": "STASIS EURS Token (PoS)", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0xe111178a87a3bff0c8d18decba5798827539ae99.png", - "aggregators": [ - "CoinGecko", - "1inch", - "LiFi", - "Socket", - "Rubic", - "Rango", - "Sonarwatch", - "SushiSwap" - ], - "occurrences": 8 - }, - "0x18e73a5333984549484348a94f4d219f4fab7b81": { - "address": "0x18e73a5333984549484348a94f4d219f4fab7b81", - "symbol": "DUCKIES", - "decimals": 8, - "name": "Yellow Duckies", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x18e73a5333984549484348a94f4d219f4fab7b81.png", - "aggregators": [ - "CoinGecko", - "Socket", - "Rubic", - "Squid", - "Rango", - "Sonarwatch", - "SushiSwap" - ], - "occurrences": 7 - }, - "0xc6c855ad634dcdad23e64da71ba85b8c51e5ad7c": { - "address": "0xc6c855ad634dcdad23e64da71ba85b8c51e5ad7c", - "symbol": "ICE", - "decimals": 18, - "name": "Decentral Games ICE", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0xc6c855ad634dcdad23e64da71ba85b8c51e5ad7c.png", - "aggregators": [ - "QuickSwap", - "1inch", - "LiFi", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 7 - }, - "0x8f18dc399594b451eda8c5da02d0563c0b2d0f16": { - "address": "0x8f18dc399594b451eda8c5da02d0563c0b2d0f16", - "symbol": "WOLF", - "decimals": 9, - "name": "Moonwolf", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x8f18dc399594b451eda8c5da02d0563c0b2d0f16.png", - "aggregators": [ - "CoinGecko", - "1inch", - "Socket", - "Rubic", - "Rango", - "Sonarwatch", - "SushiSwap" - ], - "occurrences": 7 - }, - "0xe261d618a959afffd53168cd07d12e37b26761db": { - "address": "0xe261d618a959afffd53168cd07d12e37b26761db", - "symbol": "DIMO", - "decimals": 18, - "name": "DIMO", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0xe261d618a959afffd53168cd07d12e37b26761db.png", - "aggregators": [ - "CoinGecko", - "LiFi", - "Socket", - "Rubic", - "Squid", - "Rango", - "Sonarwatch" - ], - "occurrences": 7 - }, - "0x255707b70bf90aa112006e1b07b9aea6de021424": { - "address": "0x255707b70bf90aa112006e1b07b9aea6de021424", - "symbol": "TETU", - "decimals": 18, - "name": "TETU Reward Token", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x255707b70bf90aa112006e1b07b9aea6de021424.png", - "aggregators": [ - "CoinGecko", - "1inch", - "LiFi", - "Rubic", - "Rango", - "Sonarwatch", - "SushiSwap" - ], - "occurrences": 7 - }, - "0x3ad707da309f3845cd602059901e39c4dcd66473": { - "address": "0x3ad707da309f3845cd602059901e39c4dcd66473", - "symbol": "ETH2X-FLI-P", - "decimals": 18, - "name": "ETH 2x Flexible Leverage Index", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x3ad707da309f3845cd602059901e39c4dcd66473.png", - "aggregators": [ - "CoinGecko", - "LiFi", - "Socket", - "Rubic", - "Squid", - "Rango", - "SushiSwap" - ], - "occurrences": 7 - }, - "0xaaa5b9e6c589642f98a1cda99b9d024b8407285a": { - "address": "0xaaa5b9e6c589642f98a1cda99b9d024b8407285a", - "symbol": "TITAN", - "decimals": 18, - "name": "IRON Titanium", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0xaaa5b9e6c589642f98a1cda99b9d024b8407285a.png", - "aggregators": [ - "CoinGecko", - "1inch", - "Socket", - "Rubic", - "Rango", - "Sonarwatch", - "SushiSwap" - ], - "occurrences": 7 - }, - "0x236aa50979d5f3de3bd1eeb40e81137f22ab794b": { - "address": "0x236aa50979d5f3de3bd1eeb40e81137f22ab794b", - "symbol": "TBTC", - "decimals": 18, - "name": "tBTC", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x236aa50979d5f3de3bd1eeb40e81137f22ab794b.png", - "aggregators": [ - "CoinGecko", - "1inch", - "LiFi", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 7 - }, - "0x59d9356e565ab3a36dd77763fc0d87feaf85508c": { - "address": "0x59d9356e565ab3a36dd77763fc0d87feaf85508c", - "symbol": "USDM", - "decimals": 18, - "name": "Mountain Protocol USD", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x59d9356e565ab3a36dd77763fc0d87feaf85508c.png", - "aggregators": [ - "CoinGecko", - "1inch", - "LiFi", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 7 - }, - "0x9c9e5fd8bbc25984b178fdce6117defa39d2db39": { - "address": "0x9c9e5fd8bbc25984b178fdce6117defa39d2db39", - "symbol": "BUSD", - "decimals": 18, - "name": "Binance-Peg BUSD", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x9c9e5fd8bbc25984b178fdce6117defa39d2db39.png", - "aggregators": [ - "CoinGecko", - "1inch", - "LiFi", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 7 - }, - "0xe5b49820e5a1063f6f4ddf851327b5e8b2301048": { - "address": "0xe5b49820e5a1063f6f4ddf851327b5e8b2301048", - "symbol": "BONK", - "decimals": 5, - "name": "Bonk", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0xe5b49820e5a1063f6f4ddf851327b5e8b2301048.png", - "aggregators": [ - "CoinGecko", - "1inch", - "Socket", - "Rubic", - "Squid", - "Rango", - "Sonarwatch" - ], - "occurrences": 7 - }, - "0x6ddb31002abc64e1479fc439692f7ea061e78165": { - "address": "0x6ddb31002abc64e1479fc439692f7ea061e78165", - "symbol": "COMBO", - "decimals": 18, - "name": "Furucombo", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x6ddb31002abc64e1479fc439692f7ea061e78165.png", - "aggregators": [ - "QuickSwap", - "LiFi", - "Socket", - "Rubic", - "Rango", - "Sonarwatch", - "SushiSwap" - ], - "occurrences": 7 - }, - "0x5d47baba0d66083c52009271faf3f50dcc01023c": { - "address": "0x5d47baba0d66083c52009271faf3f50dcc01023c", - "symbol": "BANANA", - "decimals": 18, - "name": "ApeSwap", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x5d47baba0d66083c52009271faf3f50dcc01023c.png", - "aggregators": [ - "CoinGecko", - "1inch", - "LiFi", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 7 - }, - "0x840195888db4d6a99ed9f73fcd3b225bb3cb1a79": { - "address": "0x840195888db4d6a99ed9f73fcd3b225bb3cb1a79", - "symbol": "SX", - "decimals": 18, - "name": "SportX", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x840195888db4d6a99ed9f73fcd3b225bb3cb1a79.png", - "aggregators": [ - "CoinGecko", - "LiFi", - "Socket", - "Rubic", - "Rango", - "Sonarwatch", - "SushiSwap" - ], - "occurrences": 7 - }, - "0x9c78ee466d6cb57a4d01fd887d2b5dfb2d46288f": { - "address": "0x9c78ee466d6cb57a4d01fd887d2b5dfb2d46288f", - "symbol": "MUST", - "decimals": 18, - "name": "Must", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x9c78ee466d6cb57a4d01fd887d2b5dfb2d46288f.png", - "aggregators": [ - "CoinGecko", - "1inch", - "LiFi", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 7 - }, - "0x361a5a4993493ce00f61c32d4ecca5512b82ce90": { - "address": "0x361a5a4993493ce00f61c32d4ecca5512b82ce90", - "symbol": "SDT", - "decimals": 18, - "name": "Stake DAO", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x361a5a4993493ce00f61c32d4ecca5512b82ce90.png", - "aggregators": [ - "CoinGecko", - "1inch", - "LiFi", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 7 - }, - "0xd85d1e945766fea5eda9103f918bd915fbca63e6": { - "address": "0xd85d1e945766fea5eda9103f918bd915fbca63e6", - "symbol": "CEL", - "decimals": 4, - "name": "Celsius", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0xd85d1e945766fea5eda9103f918bd915fbca63e6.png", - "aggregators": [ - "CoinGecko", - "LiFi", - "Socket", - "Rubic", - "Rango", - "Sonarwatch", - "SushiSwap" - ], - "occurrences": 7 - }, - "0x3809dcdd5dde24b37abe64a5a339784c3323c44f": { - "address": "0x3809dcdd5dde24b37abe64a5a339784c3323c44f", - "symbol": "SWAP", - "decimals": 18, - "name": "TrustSwap", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x3809dcdd5dde24b37abe64a5a339784c3323c44f.png", - "aggregators": [ - "CoinGecko", - "LiFi", - "Socket", - "Rubic", - "Squid", - "Rango", - "Sonarwatch" - ], - "occurrences": 7 - }, - "0x034b2090b579228482520c589dbd397c53fc51cc": { - "address": "0x034b2090b579228482520c589dbd397c53fc51cc", - "symbol": "VISION", - "decimals": 18, - "name": "APY.vision", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x034b2090b579228482520c589dbd397c53fc51cc.png", - "aggregators": [ - "CoinGecko", - "1inch", - "LiFi", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 7 - }, - "0xb9638272ad6998708de56bbc0a290a1de534a578": { - "address": "0xb9638272ad6998708de56bbc0a290a1de534a578", - "symbol": "IQ", - "decimals": 18, - "name": "IQ", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0xb9638272ad6998708de56bbc0a290a1de534a578.png", - "aggregators": [ - "CoinGecko", - "1inch", - "LiFi", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 7 - }, - "0xc168e40227e4ebd8c1cae80f7a55a4f0e6d66c97": { - "address": "0xc168e40227e4ebd8c1cae80f7a55a4f0e6d66c97", - "symbol": "DFYN", - "decimals": 18, - "name": "Dfyn Network", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0xc168e40227e4ebd8c1cae80f7a55a4f0e6d66c97.png", - "aggregators": [ - "CoinGecko", - "1inch", - "LiFi", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 7 - }, - "0xf501dd45a1198c2e1b5aef5314a68b9006d842e0": { - "address": "0xf501dd45a1198c2e1b5aef5314a68b9006d842e0", - "symbol": "MTA", - "decimals": 18, - "name": "mStable Governance Token", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0xf501dd45a1198c2e1b5aef5314a68b9006d842e0.png", - "aggregators": [ - "CoinGecko", - "LiFi", - "Socket", - "Rubic", - "Rango", - "Sonarwatch", - "SushiSwap" - ], - "occurrences": 7 - }, - "0x6c0ab120dbd11ba701aff6748568311668f63fe0": { - "address": "0x6c0ab120dbd11ba701aff6748568311668f63fe0", - "symbol": "APW", - "decimals": 18, - "name": "Spectra", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x6c0ab120dbd11ba701aff6748568311668f63fe0.png", - "aggregators": [ - "CoinGecko", - "1inch", - "LiFi", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 7 - }, - "0x3cef98bb43d732e2f285ee605a8158cde967d219": { - "address": "0x3cef98bb43d732e2f285ee605a8158cde967d219", - "symbol": "BAT", - "decimals": 18, - "name": "Basic Attention Token", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x3cef98bb43d732e2f285ee605a8158cde967d219.png", - "aggregators": [ - "CoinGecko", - "LiFi", - "Socket", - "Rubic", - "Rango", - "Sonarwatch", - "SushiSwap" - ], - "occurrences": 7 - }, - "0xf4b0903774532aee5ee567c02aab681a81539e92": { - "address": "0xf4b0903774532aee5ee567c02aab681a81539e92", - "symbol": "GAJ", - "decimals": 18, - "name": "PolyGaj Token", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0xf4b0903774532aee5ee567c02aab681a81539e92.png", - "aggregators": [ - "CoinGecko", - "LiFi", - "Socket", - "Rubic", - "Rango", - "Sonarwatch", - "SushiSwap" - ], - "occurrences": 7 - }, - "0x2b88ad57897a8b496595925f43048301c37615da": { - "address": "0x2b88ad57897a8b496595925f43048301c37615da", - "symbol": "PICKLE", - "decimals": 18, - "name": "Pickle Finance", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x2b88ad57897a8b496595925f43048301c37615da.png", - "aggregators": [ - "CoinGecko", - "LiFi", - "Socket", - "Rubic", - "Rango", - "Sonarwatch", - "SushiSwap" - ], - "occurrences": 7 - }, - "0xe2aa7db6da1dae97c5f5c6914d285fbfcc32a128": { - "address": "0xe2aa7db6da1dae97c5f5c6914d285fbfcc32a128", - "symbol": "PAR", - "decimals": 18, - "name": "Parallel", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0xe2aa7db6da1dae97c5f5c6914d285fbfcc32a128.png", - "aggregators": [ - "CoinGecko", - "1inch", - "LiFi", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 7 - }, - "0xa486c6bc102f409180ccb8a94ba045d39f8fc7cb": { - "address": "0xa486c6bc102f409180ccb8a94ba045d39f8fc7cb", - "symbol": "NEX", - "decimals": 8, - "name": "Nash", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0xa486c6bc102f409180ccb8a94ba045d39f8fc7cb.png", - "aggregators": [ - "CoinGecko", - "1inch", - "LiFi", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 7 - }, - "0xa69d14d6369e414a32a5c7e729b7afbafd285965": { - "address": "0xa69d14d6369e414a32a5c7e729b7afbafd285965", - "symbol": "GCR", - "decimals": 4, - "name": "Global Coin Research", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0xa69d14d6369e414a32a5c7e729b7afbafd285965.png", - "aggregators": [ - "CoinGecko", - "1inch", - "LiFi", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 7 - }, - "0x64ca1571d1476b7a21c5aaf9f1a750a193a103c0": { - "address": "0x64ca1571d1476b7a21c5aaf9f1a750a193a103c0", - "symbol": "BONDLY", - "decimals": 18, - "name": "Forj", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x64ca1571d1476b7a21c5aaf9f1a750a193a103c0.png", - "aggregators": [ - "CoinGecko", - "1inch", - "LiFi", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 7 - }, - "0xdb7cb471dd0b49b29cab4a1c14d070f27216a0ab": { - "address": "0xdb7cb471dd0b49b29cab4a1c14d070f27216a0ab", - "symbol": "BANK", - "decimals": 18, - "name": "Bankless Token (PoS)", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0xdb7cb471dd0b49b29cab4a1c14d070f27216a0ab.png", - "aggregators": [ - "CoinGecko", - "LiFi", - "Socket", - "Rubic", - "Rango", - "Sonarwatch", - "SushiSwap" - ], - "occurrences": 7 - }, - "0xba3cb8329d442e6f9eb70fafe1e214251df3d275": { - "address": "0xba3cb8329d442e6f9eb70fafe1e214251df3d275", - "symbol": "SWASH", - "decimals": 18, - "name": "Swash", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0xba3cb8329d442e6f9eb70fafe1e214251df3d275.png", - "aggregators": [ - "CoinGecko", - "1inch", - "LiFi", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 7 - }, - "0x3a9a81d576d83ff21f26f325066054540720fc34": { - "address": "0x3a9a81d576d83ff21f26f325066054540720fc34", - "symbol": "DATA", - "decimals": 18, - "name": "Streamr", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x3a9a81d576d83ff21f26f325066054540720fc34.png", - "aggregators": [ - "CoinGecko", - "1inch", - "LiFi", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 7 - }, - "0xeeeeeb57642040be42185f49c52f7e9b38f8eeee": { - "address": "0xeeeeeb57642040be42185f49c52f7e9b38f8eeee", - "symbol": "ELK", - "decimals": 18, - "name": "Elk Finance", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0xeeeeeb57642040be42185f49c52f7e9b38f8eeee.png", - "aggregators": [ - "CoinGecko", - "1inch", - "LiFi", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 7 - }, - "0x431d5dff03120afa4bdf332c61a6e1766ef37bdb": { - "address": "0x431d5dff03120afa4bdf332c61a6e1766ef37bdb", - "symbol": "JPYC", - "decimals": 18, - "name": "JPY Coin", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x431d5dff03120afa4bdf332c61a6e1766ef37bdb.png", - "aggregators": [ - "CoinGecko", - "1inch", - "LiFi", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 7 - }, - "0x18ec0a6e18e5bc3784fdd3a3634b31245ab704f6": { - "address": "0x18ec0a6e18e5bc3784fdd3a3634b31245ab704f6", - "symbol": "EURE", - "decimals": 18, - "name": "Monerium EUR emoney", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x18ec0a6e18e5bc3784fdd3a3634b31245ab704f6.png", - "aggregators": [ - "CoinGecko", - "LiFi", - "Socket", - "Rubic", - "Squid", - "Rango", - "Sonarwatch" - ], - "occurrences": 7 - }, - "0x61299774020da444af134c82fa83e3810b309991": { - "address": "0x61299774020da444af134c82fa83e3810b309991", - "symbol": "RENDER", - "decimals": 18, - "name": "Render", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x61299774020da444af134c82fa83e3810b309991.png", - "aggregators": [ - "1inch", - "LiFi", - "Socket", - "Rubic", - "Squid", - "Rango", - "Sonarwatch" - ], - "occurrences": 7 - }, - "0xda537104d6a5edd53c6fbba9a898708e465260b6": { - "address": "0xda537104d6a5edd53c6fbba9a898708e465260b6", - "symbol": "YFI", - "decimals": 18, - "name": "yearn finance", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0xda537104d6a5edd53c6fbba9a898708e465260b6.png", - "aggregators": [ - "OpenSwap", - "LiFi", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 6 - }, - "0x3a3e7650f8b9f667da98f236010fbf44ee4b2975": { - "address": "0x3a3e7650f8b9f667da98f236010fbf44ee4b2975", - "symbol": "XUSD", - "decimals": 18, - "name": "xDollar Stablecoin", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x3a3e7650f8b9f667da98f236010fbf44ee4b2975.png", - "aggregators": [ - "CoinGecko", - "1inch", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 6 - }, - "0xce899f26928a2b21c6a2fddd393ef37c61dba918": { - "address": "0xce899f26928a2b21c6a2fddd393ef37c61dba918", - "symbol": "MOCA", - "decimals": 18, - "name": "Museum of Crypto Art", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0xce899f26928a2b21c6a2fddd393ef37c61dba918.png", - "aggregators": [ - "QuickSwap", - "LiFi", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 6 - }, - "0x8a953cfe442c5e8855cc6c61b1293fa648bae472": { - "address": "0x8a953cfe442c5e8855cc6c61b1293fa648bae472", - "symbol": "POLYDOGE", - "decimals": 18, - "name": "PolyDoge", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x8a953cfe442c5e8855cc6c61b1293fa648bae472.png", - "aggregators": [ - "QuickSwap", - "1inch", - "Rubic", - "Rango", - "Sonarwatch", - "SushiSwap" - ], - "occurrences": 6 - }, - "0x300211def2a644b036a9bdd3e58159bb2074d388": { - "address": "0x300211def2a644b036a9bdd3e58159bb2074d388", - "symbol": "CIOTX", - "decimals": 18, - "name": "Crosschain IOTX", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x300211def2a644b036a9bdd3e58159bb2074d388.png", - "aggregators": [ - "QuickSwap", - "LiFi", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 6 - }, - "0xaa9654becca45b5bdfa5ac646c939c62b527d394": { - "address": "0xaa9654becca45b5bdfa5ac646c939c62b527d394", - "symbol": "DINO", - "decimals": 18, - "name": "DinoSwap", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0xaa9654becca45b5bdfa5ac646c939c62b527d394.png", - "aggregators": [ - "CoinGecko", - "LiFi", - "Socket", - "Rubic", - "Rango", - "SushiSwap" - ], - "occurrences": 6 - }, - "0x5c2ed810328349100a66b82b78a1791b101c9d61": { - "address": "0x5c2ed810328349100a66b82b78a1791b101c9d61", - "symbol": "AMWBTC", - "decimals": 8, - "name": "Aave Polygon WBTC", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x5c2ed810328349100a66b82b78a1791b101c9d61.png", - "aggregators": [ - "CoinGecko", - "1inch", - "LiFi", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 6 - }, - "0x723b17718289a91af252d616de2c77944962d122": { - "address": "0x723b17718289a91af252d616de2c77944962d122", - "symbol": "GAIA", - "decimals": 18, - "name": "Gaia Everworld", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x723b17718289a91af252d616de2c77944962d122.png", - "aggregators": [ - "QuickSwap", - "1inch", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 6 - }, - "0x3a3df212b7aa91aa0402b9035b098891d276572b": { - "address": "0x3a3df212b7aa91aa0402b9035b098891d276572b", - "symbol": "FISH", - "decimals": 18, - "name": "Fish", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x3a3df212b7aa91aa0402b9035b098891d276572b.png", - "aggregators": [ - "CoinGecko", - "1inch", - "LiFi", - "Rubic", - "Rango", - "SushiSwap" - ], - "occurrences": 6 - }, - "0xba0dda8762c24da9487f5fa026a9b64b695a07ea": { - "address": "0xba0dda8762c24da9487f5fa026a9b64b695a07ea", - "symbol": "OX", - "decimals": 18, - "name": "OX Coin", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0xba0dda8762c24da9487f5fa026a9b64b695a07ea.png", - "aggregators": [ - "CoinGecko", - "1inch", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 6 - }, - "0xb87904db461005fc716a6bf9f2d451c33b10b80b": { - "address": "0xb87904db461005fc716a6bf9f2d451c33b10b80b", - "symbol": "AMKT", - "decimals": 18, - "name": "Alongside Crypto Market Index", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0xb87904db461005fc716a6bf9f2d451c33b10b80b.png", - "aggregators": [ - "CoinGecko", - "LiFi", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 6 - }, - "0xe6828d65bf5023ae1851d90d8783cc821ba7eee1": { - "address": "0xe6828d65bf5023ae1851d90d8783cc821ba7eee1", - "symbol": "ABOND", - "decimals": 18, - "name": "ApeBond", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0xe6828d65bf5023ae1851d90d8783cc821ba7eee1.png", - "aggregators": [ - "CoinGecko", - "LiFi", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 6 - }, - "0x4f604735c1cf31399c6e711d5962b2b3e0225ad3": { - "address": "0x4f604735c1cf31399c6e711d5962b2b3e0225ad3", - "symbol": "USDGLO", - "decimals": 18, - "name": "Glo Dollar", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x4f604735c1cf31399c6e711d5962b2b3e0225ad3.png", - "aggregators": [ - "CoinGecko", - "Socket", - "Rubic", - "Squid", - "Rango", - "Sonarwatch" - ], - "occurrences": 6 - }, - "0xd55fce7cdab84d84f2ef3f99816d765a2a94a509": { - "address": "0xd55fce7cdab84d84f2ef3f99816d765a2a94a509", - "symbol": "CHAIN", - "decimals": 18, - "name": "CHAIN", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0xd55fce7cdab84d84f2ef3f99816d765a2a94a509.png", - "aggregators": [ - "CoinGecko", - "1inch", - "LiFi", - "Socket", - "Rubic", - "Rango" - ], - "occurrences": 6 - }, - "0xfef5d947472e72efbb2e388c730b7428406f2f95": { - "address": "0xfef5d947472e72efbb2e388c730b7428406f2f95", - "symbol": "OLAS", - "decimals": 18, - "name": "Autonolas", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0xfef5d947472e72efbb2e388c730b7428406f2f95.png", - "aggregators": [ - "CoinGecko", - "LiFi", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 6 - }, - "0xa1428174f516f527fafdd146b883bb4428682737": { - "address": "0xa1428174f516f527fafdd146b883bb4428682737", - "symbol": "SUPER", - "decimals": 18, - "name": "SUPER", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0xa1428174f516f527fafdd146b883bb4428682737.png", - "aggregators": [ - "CoinGecko", - "1inch", - "LiFi", - "Socket", - "Rubic", - "Rango" - ], - "occurrences": 6 - }, - "0xb755506531786c8ac63b756bab1ac387bacb0c04": { - "address": "0xb755506531786c8ac63b756bab1ac387bacb0c04", - "symbol": "ZARP", - "decimals": 18, - "name": "ZARP Stablecoin", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0xb755506531786c8ac63b756bab1ac387bacb0c04.png", - "aggregators": [ - "CoinGecko", - "LiFi", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 6 - }, - "0xbfc70507384047aa74c29cdc8c5cb88d0f7213ac": { - "address": "0xbfc70507384047aa74c29cdc8c5cb88d0f7213ac", - "symbol": "ALI", - "decimals": 18, - "name": "Artificial Liquid Intelligence", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0xbfc70507384047aa74c29cdc8c5cb88d0f7213ac.png", - "aggregators": [ - "QuickSwap", - "LiFi", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 6 - }, - "0xa55870278d6389ec5b524553d03c04f5677c061e": { - "address": "0xa55870278d6389ec5b524553d03c04f5677c061e", - "symbol": "XCAD", - "decimals": 18, - "name": "XCAD Network", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0xa55870278d6389ec5b524553d03c04f5677c061e.png", - "aggregators": [ - "QuickSwap", - "LiFi", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 6 - }, - "0x692ac1e363ae34b6b489148152b12e2785a3d8d6": { - "address": "0x692ac1e363ae34b6b489148152b12e2785a3d8d6", - "symbol": "TRADE", - "decimals": 18, - "name": "Polytrade", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x692ac1e363ae34b6b489148152b12e2785a3d8d6.png", - "aggregators": [ - "QuickSwap", - "LiFi", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 6 - }, - "0x1d734a02ef1e1f5886e66b0673b71af5b53ffa94": { - "address": "0x1d734a02ef1e1f5886e66b0673b71af5b53ffa94", - "symbol": "SD", - "decimals": 18, - "name": "Stader", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x1d734a02ef1e1f5886e66b0673b71af5b53ffa94.png", - "aggregators": [ - "QuickSwap", - "LiFi", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 6 - }, - "0x4e3decbb3645551b8a19f0ea1678079fcb33fb4c": { - "address": "0x4e3decbb3645551b8a19f0ea1678079fcb33fb4c", - "symbol": "JEUR", - "decimals": 18, - "name": "Jarvis Synthetic Euro", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x4e3decbb3645551b8a19f0ea1678079fcb33fb4c.png", - "aggregators": [ - "CoinGecko", - "1inch", - "LiFi", - "Socket", - "Rubic", - "Rango" - ], - "occurrences": 6 - }, - "0x00e5646f60ac6fb446f621d146b6e1886f002905": { - "address": "0x00e5646f60ac6fb446f621d146b6e1886f002905", - "symbol": "RAI", - "decimals": 18, - "name": "RAI", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x00e5646f60ac6fb446f621d146b6e1886f002905.png", - "aggregators": [ - "CoinGecko", - "1inch", - "LiFi", - "Socket", - "Rubic", - "Rango" - ], - "occurrences": 6 - }, - "0xc10358f062663448a3489fc258139944534592ac": { - "address": "0xc10358f062663448a3489fc258139944534592ac", - "symbol": "BCMC", - "decimals": 18, - "name": "Blockchain Monster Hunt", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0xc10358f062663448a3489fc258139944534592ac.png", - "aggregators": [ - "CoinGecko", - "1inch", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 6 - }, - "0xef938b6da8576a896f6e0321ef80996f4890f9c4": { - "address": "0xef938b6da8576a896f6e0321ef80996f4890f9c4", - "symbol": "DG", - "decimals": 18, - "name": "Decentral Games", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0xef938b6da8576a896f6e0321ef80996f4890f9c4.png", - "aggregators": [ - "QuickSwap", - "LiFi", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 6 - }, - "0x430ef9263e76dae63c84292c3409d61c598e9682": { - "address": "0x430ef9263e76dae63c84292c3409d61c598e9682", - "symbol": "PYR", - "decimals": 18, - "name": "Vulcan Forged", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x430ef9263e76dae63c84292c3409d61c598e9682.png", - "aggregators": [ - "QuickSwap", - "LiFi", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 6 - }, - "0x43df9c0a1156c96cea98737b511ac89d0e2a1f46": { - "address": "0x43df9c0a1156c96cea98737b511ac89d0e2a1f46", - "symbol": "GOVI", - "decimals": 18, - "name": "CVI", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x43df9c0a1156c96cea98737b511ac89d0e2a1f46.png", - "aggregators": [ - "QuickSwap", - "LiFi", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 6 - }, - "0x8839e639f210b80ffea73aedf51baed8dac04499": { - "address": "0x8839e639f210b80ffea73aedf51baed8dac04499", - "symbol": "DWEB", - "decimals": 18, - "name": "DecentraWeb", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x8839e639f210b80ffea73aedf51baed8dac04499.png", - "aggregators": [ - "CoinGecko", - "LiFi", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 6 - }, - "0xbc91347e80886453f3f8bbd6d7ac07c122d87735": { - "address": "0xbc91347e80886453f3f8bbd6d7ac07c122d87735", - "symbol": "BANANA", - "decimals": 18, - "name": "Banana", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0xbc91347e80886453f3f8bbd6d7ac07c122d87735.png", - "aggregators": [ - "QuickSwap", - "LiFi", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 6 - }, - "0xa2ca40dbe72028d3ac78b5250a8cb8c404e7fb8c": { - "address": "0xa2ca40dbe72028d3ac78b5250a8cb8c404e7fb8c", - "symbol": "FEAR", - "decimals": 18, - "name": "FEAR", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0xa2ca40dbe72028d3ac78b5250a8cb8c404e7fb8c.png", - "aggregators": [ - "QuickSwap", - "LiFi", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 6 - }, - "0x42d61d766b85431666b39b89c43011f24451bff6": { - "address": "0x42d61d766b85431666b39b89c43011f24451bff6", - "symbol": "PSP", - "decimals": 18, - "name": "ParaSwap", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x42d61d766b85431666b39b89c43011f24451bff6.png", - "aggregators": [ - "QuickSwap", - "LiFi", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 6 - }, - "0x34c1b299a74588d6abdc1b85a53345a48428a521": { - "address": "0x34c1b299a74588d6abdc1b85a53345a48428a521", - "symbol": "EZ", - "decimals": 18, - "name": "EasyFi V2", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x34c1b299a74588d6abdc1b85a53345a48428a521.png", - "aggregators": [ - "QuickSwap", - "LiFi", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 6 - }, - "0xb77e62709e39ad1cbeebe77cf493745aec0f453a": { - "address": "0xb77e62709e39ad1cbeebe77cf493745aec0f453a", - "symbol": "WISE", - "decimals": 18, - "name": "WISE", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0xb77e62709e39ad1cbeebe77cf493745aec0f453a.png", - "aggregators": [ - "QuickSwap", - "1inch", - "LiFi", - "Socket", - "Rubic", - "Rango" - ], - "occurrences": 6 - }, - "0xd28449bb9bb659725accad52947677cce3719fd7": { - "address": "0xd28449bb9bb659725accad52947677cce3719fd7", - "symbol": "DMT", - "decimals": 18, - "name": "Dark Matter", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0xd28449bb9bb659725accad52947677cce3719fd7.png", - "aggregators": [ - "1inch", - "LiFi", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 6 - }, - "0xc19669a405067927865b40ea045a2baabbbe57f5": { - "address": "0xc19669a405067927865b40ea045a2baabbbe57f5", - "symbol": "STAR", - "decimals": 18, - "name": "Star", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0xc19669a405067927865b40ea045a2baabbbe57f5.png", - "aggregators": [ - "1inch", - "LiFi", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 6 - }, - "0x2ab4f9ac80f33071211729e45cfc346c1f8446d5": { - "address": "0x2ab4f9ac80f33071211729e45cfc346c1f8446d5", - "symbol": "CGG", - "decimals": 18, - "name": "ChainGuardians Governance Token (PoS)", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x2ab4f9ac80f33071211729e45cfc346c1f8446d5.png", - "aggregators": [ - "LiFi", - "Socket", - "Rubic", - "Rango", - "Sonarwatch", - "SushiSwap" - ], - "occurrences": 6 - }, - "0x49a0400587a7f65072c87c4910449fdcc5c47242": { - "address": "0x49a0400587a7f65072c87c4910449fdcc5c47242", - "symbol": "MIM", - "decimals": 18, - "name": "Magic Internet Money", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x49a0400587a7f65072c87c4910449fdcc5c47242.png", - "aggregators": [ - "LiFi", - "Socket", - "Rubic", - "Rango", - "Sonarwatch", - "SushiSwap" - ], - "occurrences": 6 - }, - "0x086373fad3447f7f86252fb59d56107e9e0faafa": { - "address": "0x086373fad3447f7f86252fb59d56107e9e0faafa", - "symbol": "YUP", - "decimals": 18, - "name": "Yup", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x086373fad3447f7f86252fb59d56107e9e0faafa.png", - "aggregators": [ - "LiFi", - "Socket", - "Rubic", - "Squid", - "Rango", - "Sonarwatch" - ], - "occurrences": 6 - }, - "0x8a0e8b4b0903929f47c3ea30973940d4a9702067": { - "address": "0x8a0e8b4b0903929f47c3ea30973940d4a9702067", - "symbol": "INSUR", - "decimals": 18, - "name": "InsurAce", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x8a0e8b4b0903929f47c3ea30973940d4a9702067.png", - "aggregators": [ - "LiFi", - "Socket", - "Rubic", - "Rango", - "Sonarwatch", - "SushiSwap" - ], - "occurrences": 6 - }, - "0xc25351811983818c9fe6d8c580531819c8ade90f": { - "address": "0xc25351811983818c9fe6d8c580531819c8ade90f", - "symbol": "IDLE", - "decimals": 18, - "name": "Idle", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0xc25351811983818c9fe6d8c580531819c8ade90f.png", - "aggregators": [ - "LiFi", - "Socket", - "Rubic", - "Rango", - "Sonarwatch", - "SushiSwap" - ], - "occurrences": 6 - }, - "0xe6a537a407488807f0bbeb0038b79004f19dddfb": { - "address": "0xe6a537a407488807f0bbeb0038b79004f19dddfb", - "symbol": "BRLA", - "decimals": 18, - "name": "BRLA Digital BRLA", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0xe6a537a407488807f0bbeb0038b79004f19dddfb.png", - "aggregators": [ - "CoinGecko", - "Rubic", - "Squid", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0xb36b62929762acf8a9cc27ecebf6d353ebb48244": { - "address": "0xb36b62929762acf8a9cc27ecebf6d353ebb48244", - "symbol": "SHARP", - "decimals": 18, - "name": "SHARP", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0xb36b62929762acf8a9cc27ecebf6d353ebb48244.png", - "aggregators": ["CoinGecko", "LiFi", "Socket", "Rubic", "Rango"], - "occurrences": 5 - }, - "0x98965474ecbec2f532f1f780ee37b0b05f77ca55": { - "address": "0x98965474ecbec2f532f1f780ee37b0b05f77ca55", - "symbol": "SUT", - "decimals": 18, - "name": "SUPER TRUST", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x98965474ecbec2f532f1f780ee37b0b05f77ca55.png", - "aggregators": ["CoinGecko", "Socket", "Rubic", "Squid", "Rango"], - "occurrences": 5 - }, - "0x3b56a704c01d650147ade2b8cee594066b3f9421": { - "address": "0x3b56a704c01d650147ade2b8cee594066b3f9421", - "symbol": "FYN", - "decimals": 18, - "name": "Affyn", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x3b56a704c01d650147ade2b8cee594066b3f9421.png", - "aggregators": [ - "QuickSwap", - "1inch", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x27842334c55c01ddfe81bf687425f906816c5141": { - "address": "0x27842334c55c01ddfe81bf687425f906816c5141", - "symbol": "VEXT", - "decimals": 18, - "name": "Veloce", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x27842334c55c01ddfe81bf687425f906816c5141.png", - "aggregators": ["CoinGecko", "Socket", "Rubic", "Squid", "Rango"], - "occurrences": 5 - }, - "0x23e8b6a3f6891254988b84da3738d2bfe5e703b9": { - "address": "0x23e8b6a3f6891254988b84da3738d2bfe5e703b9", - "symbol": "WELT", - "decimals": 18, - "name": "Fabwelt", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x23e8b6a3f6891254988b84da3738d2bfe5e703b9.png", - "aggregators": [ - "QuickSwap", - "1inch", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x8a16d4bf8a0a716017e8d2262c4ac32927797a2f": { - "address": "0x8a16d4bf8a0a716017e8d2262c4ac32927797a2f", - "symbol": "VCNT", - "decimals": 18, - "name": "VCNT", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x8a16d4bf8a0a716017e8d2262c4ac32927797a2f.png", - "aggregators": ["CoinGecko", "Socket", "Rubic", "Squid", "Rango"], - "occurrences": 5 - }, - "0x88c949b4eb85a90071f2c0bef861bddee1a7479d": { - "address": "0x88c949b4eb85a90071f2c0bef861bddee1a7479d", - "symbol": "MSHEESHA", - "decimals": 18, - "name": "Sheesha Finance Polygon", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x88c949b4eb85a90071f2c0bef861bddee1a7479d.png", - "aggregators": [ - "QuickSwap", - "1inch", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0xe20b9e246db5a0d21bf9209e4858bc9a3ff7a034": { - "address": "0xe20b9e246db5a0d21bf9209e4858bc9a3ff7a034", - "symbol": "WBAN", - "decimals": 18, - "name": "Wrapped Banano", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0xe20b9e246db5a0d21bf9209e4858bc9a3ff7a034.png", - "aggregators": [ - "CoinGecko", - "Socket", - "Rubic", - "Rango", - "SushiSwap" - ], - "occurrences": 5 - }, - "0x4c5ca366e26409845624e29b62c388a06961a792": { - "address": "0x4c5ca366e26409845624e29b62c388a06961a792", - "symbol": "HLSCOPE", - "decimals": 6, - "name": "Hamilton Lane Senior Credit Opportunities Securitize Fund", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x4c5ca366e26409845624e29b62c388a06961a792.png", - "aggregators": [ - "CoinGecko", - "LiFi", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x229b1b6c23ff8953d663c4cbb519717e323a0a84": { - "address": "0x229b1b6c23ff8953d663c4cbb519717e323a0a84", - "symbol": "BLOK", - "decimals": 18, - "name": "Bloktopia", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x229b1b6c23ff8953d663c4cbb519717e323a0a84.png", - "aggregators": [ - "QuickSwap", - "1inch", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0xa1a39558718d6fa57c699dc45981e5a1b2e25d08": { - "address": "0xa1a39558718d6fa57c699dc45981e5a1b2e25d08", - "symbol": "$GINI", - "decimals": 18, - "name": "GINI", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0xa1a39558718d6fa57c699dc45981e5a1b2e25d08.png", - "aggregators": [ - "CoinGecko", - "LiFi", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0xffffff9936bd58a008855b0812b44d2c8dffe2aa": { - "address": "0xffffff9936bd58a008855b0812b44d2c8dffe2aa", - "symbol": "GGUSD", - "decimals": 6, - "name": "GGUSD", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0xffffff9936bd58a008855b0812b44d2c8dffe2aa.png", - "aggregators": ["CoinGecko", "LiFi", "Rubic", "Squid", "Rango"], - "occurrences": 5 - }, - "0xff7f8f301f7a706e3cfd3d2275f5dc0b9ee8009b": { - "address": "0xff7f8f301f7a706e3cfd3d2275f5dc0b9ee8009b", - "symbol": "FOLKS", - "decimals": 6, - "name": "FOLKS", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0xff7f8f301f7a706e3cfd3d2275f5dc0b9ee8009b.png", - "aggregators": ["CoinGecko", "1inch", "LiFi", "Rubic", "Rango"], - "occurrences": 5 - }, - "0x4837b18a6d7af6159c8665505b90a2ed393255e0": { - "address": "0x4837b18a6d7af6159c8665505b90a2ed393255e0", - "symbol": "LYP", - "decimals": 18, - "name": "LYP", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x4837b18a6d7af6159c8665505b90a2ed393255e0.png", - "aggregators": ["CoinGecko", "1inch", "LiFi", "Rubic", "Rango"], - "occurrences": 5 - }, - "0xafde2490236bc64950def5472296aa0d9758db0d": { - "address": "0xafde2490236bc64950def5472296aa0d9758db0d", - "symbol": "WILD", - "decimals": 18, - "name": "WILD", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0xafde2490236bc64950def5472296aa0d9758db0d.png", - "aggregators": ["CoinGecko", "LiFi", "Socket", "Rubic", "Rango"], - "occurrences": 5 - }, - "0x0cc931c30f4fc7fa36d290a4cd8d94acd738826e": { - "address": "0x0cc931c30f4fc7fa36d290a4cd8d94acd738826e", - "symbol": "SWEAT", - "decimals": 18, - "name": "Sweat Economy", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x0cc931c30f4fc7fa36d290a4cd8d94acd738826e.png", - "aggregators": [ - "CoinGecko", - "LiFi", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0xe75220cb014dfb2d354bb59be26d7458bb8d0706": { - "address": "0xe75220cb014dfb2d354bb59be26d7458bb8d0706", - "symbol": "PHT", - "decimals": 18, - "name": "PHT", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0xe75220cb014dfb2d354bb59be26d7458bb8d0706.png", - "aggregators": ["CoinGecko", "LiFi", "Rubic", "Squid", "Rango"], - "occurrences": 5 - }, - "0xe7c3d8c9a439fede00d2600032d5db0be71c3c29": { - "address": "0xe7c3d8c9a439fede00d2600032d5db0be71c3c29", - "symbol": "JPYC", - "decimals": 18, - "name": "JPYC", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0xe7c3d8c9a439fede00d2600032d5db0be71c3c29.png", - "aggregators": ["CoinGecko", "1inch", "LiFi", "Rubic", "Rango"], - "occurrences": 5 - }, - "0x7ff7fa94b8b66ef313f7970d4eebd2cb3103a2c0": { - "address": "0x7ff7fa94b8b66ef313f7970d4eebd2cb3103a2c0", - "symbol": "VANA", - "decimals": 18, - "name": "VANA", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x7ff7fa94b8b66ef313f7970d4eebd2cb3103a2c0.png", - "aggregators": ["CoinGecko", "LiFi", "Socket", "Rubic", "Rango"], - "occurrences": 5 - }, - "0x2893ef551b6dd69f661ac00f11d93e5dc5dc0e99": { - "address": "0x2893ef551b6dd69f661ac00f11d93e5dc5dc0e99", - "symbol": "BUIDL", - "decimals": 6, - "name": "BlackRock USD Institutional Digital Liquidity Fund", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x2893ef551b6dd69f661ac00f11d93e5dc5dc0e99.png", - "aggregators": [ - "CoinGecko", - "LiFi", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x7f280dac515121dcda3eac69eb4c13a52392cace": { - "address": "0x7f280dac515121dcda3eac69eb4c13a52392cace", - "symbol": "FNC", - "decimals": 18, - "name": "Fancy Games", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x7f280dac515121dcda3eac69eb4c13a52392cace.png", - "aggregators": ["QuickSwap", "LiFi", "Socket", "Rubic", "Rango"], - "occurrences": 5 - }, - "0x3f6b3595ecf70735d3f48d69b09c4e4506db3f47": { - "address": "0x3f6b3595ecf70735d3f48d69b09c4e4506db3f47", - "symbol": "GAMER", - "decimals": 18, - "name": "GameStation", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x3f6b3595ecf70735d3f48d69b09c4e4506db3f47.png", - "aggregators": [ - "QuickSwap", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x67eb41a14c0fe5cd701fc9d5a3d6597a72f641a6": { - "address": "0x67eb41a14c0fe5cd701fc9d5a3d6597a72f641a6", - "symbol": "GIDDY", - "decimals": 18, - "name": "Giddy Token", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x67eb41a14c0fe5cd701fc9d5a3d6597a72f641a6.png", - "aggregators": [ - "QuickSwap", - "Rubic", - "Rango", - "Sonarwatch", - "SushiSwap" - ], - "occurrences": 5 - }, - "0x4455ef8b4b4a007a93daa12de63a47eeac700d9d": { - "address": "0x4455ef8b4b4a007a93daa12de63a47eeac700d9d", - "symbol": "KNIGHT", - "decimals": 18, - "name": "Forest Knight", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x4455ef8b4b4a007a93daa12de63a47eeac700d9d.png", - "aggregators": [ - "QuickSwap", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x04b33078ea1aef29bf3fb29c6ab7b200c58ea126": { - "address": "0x04b33078ea1aef29bf3fb29c6ab7b200c58ea126", - "symbol": "SAFLE", - "decimals": 18, - "name": "Safle", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x04b33078ea1aef29bf3fb29c6ab7b200c58ea126.png", - "aggregators": [ - "QuickSwap", - "1inch", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x02649c1ff4296038de4b9ba8f491b42b940a8252": { - "address": "0x02649c1ff4296038de4b9ba8f491b42b940a8252", - "symbol": "XGEM", - "decimals": 18, - "name": "Exchange Genesis Ethlas Medium", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x02649c1ff4296038de4b9ba8f491b42b940a8252.png", - "aggregators": [ - "QuickSwap", - "Rubic", - "Rango", - "Sonarwatch", - "SushiSwap" - ], - "occurrences": 5 - }, - "0x236eec6359fb44cce8f97e99387aa7f8cd5cde1f": { - "address": "0x236eec6359fb44cce8f97e99387aa7f8cd5cde1f", - "symbol": "USD+", - "decimals": 6, - "name": "USD+", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x236eec6359fb44cce8f97e99387aa7f8cd5cde1f.png", - "aggregators": [ - "1inch", - "Squid", - "Rango", - "Sonarwatch", - "SushiSwap" - ], - "occurrences": 5 - }, - "0x4ff0b68abc2b9e4e1401e9b691dba7d66b264ac8": { - "address": "0x4ff0b68abc2b9e4e1401e9b691dba7d66b264ac8", - "symbol": "RIOT", - "decimals": 18, - "name": "Riot Racers", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x4ff0b68abc2b9e4e1401e9b691dba7d66b264ac8.png", - "aggregators": ["1inch", "LiFi", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 5 - }, - "0x820802fa8a99901f52e39acd21177b0be6ee2974": { - "address": "0x820802fa8a99901f52e39acd21177b0be6ee2974", - "symbol": "EUROE", - "decimals": 6, - "name": "EUROe Stablecoin", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x820802fa8a99901f52e39acd21177b0be6ee2974.png", - "aggregators": [ - "LiFi", - "Rubic", - "Rango", - "Sonarwatch", - "SushiSwap" - ], - "occurrences": 5 - }, - "0xc5b57e9a1e7914fda753a88f24e5703e617ee50c": { - "address": "0xc5b57e9a1e7914fda753a88f24e5703e617ee50c", - "symbol": "POP", - "decimals": 18, - "name": "Popcorn", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0xc5b57e9a1e7914fda753a88f24e5703e617ee50c.png", - "aggregators": ["LiFi", "Socket", "Rubic", "Rango", "SushiSwap"], - "occurrences": 5 - }, - "0xdfce1e99a31c4597a3f8a8945cbfa9037655e335": { - "address": "0xdfce1e99a31c4597a3f8a8945cbfa9037655e335", - "symbol": "ASTRAFER", - "decimals": 18, - "name": "Astrafer", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0xdfce1e99a31c4597a3f8a8945cbfa9037655e335.png", - "aggregators": ["QuickSwap", "LiFi", "Rubic", "Rango"], - "occurrences": 4 - }, - "0x9c32185b81766a051e08de671207b34466dd1021": { - "address": "0x9c32185b81766a051e08de671207b34466dd1021", - "symbol": "BTCPX", - "decimals": 8, - "name": "BTC Proxy", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x9c32185b81766a051e08de671207b34466dd1021.png", - "aggregators": ["Socket", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0x5f32abeebd3c2fac1e7459a27e1ae9f1c16cccca": { - "address": "0x5f32abeebd3c2fac1e7459a27e1ae9f1c16cccca", - "symbol": "FAR", - "decimals": 18, - "name": "FARCANA", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x5f32abeebd3c2fac1e7459a27e1ae9f1c16cccca.png", - "aggregators": ["Rubic", "Rango", "Sonarwatch"], - "occurrences": 3 - }, - "0x4ed141110f6eeeaba9a1df36d8c26f684d2475dc": { - "address": "0x4ed141110f6eeeaba9a1df36d8c26f684d2475dc", - "symbol": "BRZ", - "decimals": 18, - "name": "Brazilian Digital", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x4ed141110f6eeeaba9a1df36d8c26f684d2475dc.png", - "aggregators": [ - "CoinGecko", - "LiFi", - "Socket", - "Rubic", - "Squid", - "Rango", - "Sonarwatch" - ], - "occurrences": 7 - }, - "0x033d942a6b495c4071083f4cde1f17e986fe856c": { - "address": "0x033d942a6b495c4071083f4cde1f17e986fe856c", - "symbol": "AGA", - "decimals": 4, - "name": "AGA", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x033d942a6b495c4071083f4cde1f17e986fe856c.png", - "aggregators": [ - "CoinGecko", - "1inch", - "LiFi", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 7 - }, - "0x6e4e624106cb12e168e6533f8ec7c82263358940": { - "address": "0x6e4e624106cb12e168e6533f8ec7c82263358940", - "symbol": "AXL", - "decimals": 6, - "name": "Axelar", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x6e4e624106cb12e168e6533f8ec7c82263358940.png", - "aggregators": [ - "QuickSwap", - "LiFi", - "Socket", - "Rubic", - "Squid", - "Rango", - "Sonarwatch" - ], - "occurrences": 7 - }, - "0x596ebe76e2db4470966ea395b0d063ac6197a8c5": { - "address": "0x596ebe76e2db4470966ea395b0d063ac6197a8c5", - "symbol": "JRT", - "decimals": 18, - "name": "Jarvis Reward Token", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x596ebe76e2db4470966ea395b0d063ac6197a8c5.png", - "aggregators": [ - "CoinGecko", - "LiFi", - "Socket", - "Rubic", - "Rango", - "Sonarwatch", - "SushiSwap" - ], - "occurrences": 7 - }, - "0xde5ed76e7c05ec5e4572cfc88d1acea165109e44": { - "address": "0xde5ed76e7c05ec5e4572cfc88d1acea165109e44", - "symbol": "DEUS", - "decimals": 18, - "name": "DEUS Finance", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0xde5ed76e7c05ec5e4572cfc88d1acea165109e44.png", - "aggregators": [ - "CoinGecko", - "LiFi", - "Socket", - "Rubic", - "Squid", - "Rango", - "Sonarwatch" - ], - "occurrences": 7 - }, - "0x692597b009d13c4049a947cab2239b7d6517875f": { - "address": "0x692597b009d13c4049a947cab2239b7d6517875f", - "symbol": "USTC", - "decimals": 18, - "name": "Wrapped USTC", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x692597b009d13c4049a947cab2239b7d6517875f.png", - "aggregators": [ - "CoinGecko", - "1inch", - "LiFi", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 7 - }, - "0xf0059cc2b3e980065a906940fbce5f9db7ae40a7": { - "address": "0xf0059cc2b3e980065a906940fbce5f9db7ae40a7", - "symbol": "ULT", - "decimals": 18, - "name": "Shardus", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0xf0059cc2b3e980065a906940fbce5f9db7ae40a7.png", - "aggregators": [ - "CoinGecko", - "LiFi", - "Socket", - "Rubic", - "Squid", - "Rango", - "Sonarwatch" - ], - "occurrences": 7 - }, - "0xc48f61a288a08f1b80c2edd74652e1276b6a168c": { - "address": "0xc48f61a288a08f1b80c2edd74652e1276b6a168c", - "symbol": "GYSR", - "decimals": 18, - "name": "Geyser", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0xc48f61a288a08f1b80c2edd74652e1276b6a168c.png", - "aggregators": [ - "CoinGecko", - "LiFi", - "Socket", - "Rubic", - "Rango", - "Sonarwatch", - "SushiSwap" - ], - "occurrences": 7 - }, - "0x1631244689ec1fecbdd22fb5916e920dfc9b8d30": { - "address": "0x1631244689ec1fecbdd22fb5916e920dfc9b8d30", - "symbol": "OVR", - "decimals": 18, - "name": "Ovr", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x1631244689ec1fecbdd22fb5916e920dfc9b8d30.png", - "aggregators": [ - "CoinGecko", - "LiFi", - "Socket", - "Rubic", - "Squid", - "Rango", - "Sonarwatch" - ], - "occurrences": 7 - }, - "0xe631dabef60c37a37d70d3b4f812871df663226f": { - "address": "0xe631dabef60c37a37d70d3b4f812871df663226f", - "symbol": "SMT", - "decimals": 18, - "name": "Swarm Markets", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0xe631dabef60c37a37d70d3b4f812871df663226f.png", - "aggregators": [ - "CoinGecko", - "LiFi", - "Socket", - "Rubic", - "Squid", - "Rango", - "Sonarwatch" - ], - "occurrences": 7 - }, - "0x3d1d2afd191b165d140e3e8329e634665ffb0e5e": { - "address": "0x3d1d2afd191b165d140e3e8329e634665ffb0e5e", - "symbol": "DERI", - "decimals": 18, - "name": "Deri Protocol", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x3d1d2afd191b165d140e3e8329e634665ffb0e5e.png", - "aggregators": [ - "CoinGecko", - "LiFi", - "Socket", - "Rubic", - "Rango", - "Sonarwatch", - "SushiSwap" - ], - "occurrences": 7 - }, - "0x4e1581f01046efdd7a1a2cdb0f82cdd7f71f2e59": { - "address": "0x4e1581f01046efdd7a1a2cdb0f82cdd7f71f2e59", - "symbol": "ICE", - "decimals": 18, - "name": "IceToken", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x4e1581f01046efdd7a1a2cdb0f82cdd7f71f2e59.png", - "aggregators": [ - "1inch", - "LiFi", - "Socket", - "Rubic", - "Rango", - "Sonarwatch", - "SushiSwap" - ], - "occurrences": 7 - }, - "0x62a872d9977db171d9e213a5dc2b782e72ca0033": { - "address": "0x62a872d9977db171d9e213a5dc2b782e72ca0033", - "symbol": "NEUY", - "decimals": 18, - "name": "NEUY", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x62a872d9977db171d9e213a5dc2b782e72ca0033.png", - "aggregators": [ - "CoinGecko", - "LiFi", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 6 - }, - "0x1a13f4ca1d028320a707d99520abfefca3998b7f": { - "address": "0x1a13f4ca1d028320a707d99520abfefca3998b7f", - "symbol": "AMUSDC", - "decimals": 6, - "name": "Aave Polygon USDC", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x1a13f4ca1d028320a707d99520abfefca3998b7f.png", - "aggregators": [ - "CoinGecko", - "1inch", - "LiFi", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 6 - }, - "0x1d2a0e5ec8e5bbdca5cb219e649b565d8e5c3360": { - "address": "0x1d2a0e5ec8e5bbdca5cb219e649b565d8e5c3360", - "symbol": "AMAAVE", - "decimals": 18, - "name": "Aave Polygon AAVE", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x1d2a0e5ec8e5bbdca5cb219e649b565d8e5c3360.png", - "aggregators": [ - "CoinGecko", - "1inch", - "LiFi", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 6 - }, - "0x8df3aad3a84da6b69a4da8aec3ea40d9091b2ac4": { - "address": "0x8df3aad3a84da6b69a4da8aec3ea40d9091b2ac4", - "symbol": "AMWMATIC", - "decimals": 18, - "name": "Aave Polygon WMATIC", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x8df3aad3a84da6b69a4da8aec3ea40d9091b2ac4.png", - "aggregators": [ - "CoinGecko", - "1inch", - "LiFi", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 6 - }, - "0x4c16f69302ccb511c5fac682c7626b9ef0dc126a": { - "address": "0x4c16f69302ccb511c5fac682c7626b9ef0dc126a", - "symbol": "POLYBUNNY", - "decimals": 18, - "name": "Polygon Bunny Token", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x4c16f69302ccb511c5fac682c7626b9ef0dc126a.png", - "aggregators": [ - "CoinGecko", - "LiFi", - "Rubic", - "Rango", - "Sonarwatch", - "SushiSwap" - ], - "occurrences": 6 - }, - "0x874e178a2f3f3f9d34db862453cd756e7eab0381": { - "address": "0x874e178a2f3f3f9d34db862453cd756e7eab0381", - "symbol": "GFI", - "decimals": 18, - "name": "Gravity Finance", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x874e178a2f3f3f9d34db862453cd756e7eab0381.png", - "aggregators": [ - "CoinGecko", - "LiFi", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 6 - }, - "0x127e47aba094a9a87d084a3a93732909ff031419": { - "address": "0x127e47aba094a9a87d084a3a93732909ff031419", - "symbol": "GNUS", - "decimals": 18, - "name": "Genius Token & NFT Collections", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x127e47aba094a9a87d084a3a93732909ff031419.png", - "aggregators": [ - "CoinGecko", - "Rubic", - "Squid", - "Rango", - "Sonarwatch", - "SushiSwap" - ], - "occurrences": 6 - }, - "0x9719d867a500ef117cc201206b8ab51e794d3f82": { - "address": "0x9719d867a500ef117cc201206b8ab51e794d3f82", - "symbol": "MAUSDC", - "decimals": 6, - "name": "Matic Aave Interest Bearing USDC", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x9719d867a500ef117cc201206b8ab51e794d3f82.png", - "aggregators": [ - "CoinGecko", - "LiFi", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 6 - }, - "0x2075828cdedc356b5358d79cfd314548842e4a2e": { - "address": "0x2075828cdedc356b5358d79cfd314548842e4a2e", - "symbol": "XCCX", - "decimals": 6, - "name": "BlockChainCoinX", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x2075828cdedc356b5358d79cfd314548842e4a2e.png", - "aggregators": [ - "CoinGecko", - "LiFi", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 6 - }, - "0x27f8d03b3a2196956ed754badc28d73be8830a6e": { - "address": "0x27f8d03b3a2196956ed754badc28d73be8830a6e", - "symbol": "AMDAI", - "decimals": 18, - "name": "Aave Polygon DAI", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x27f8d03b3a2196956ed754badc28d73be8830a6e.png", - "aggregators": [ - "CoinGecko", - "1inch", - "LiFi", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 6 - }, - "0x140a4e80dd8184536acc45f1c452d7540472e6e1": { - "address": "0x140a4e80dd8184536acc45f1c452d7540472e6e1", - "symbol": "PKR", - "decimals": 18, - "name": "POLKER", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x140a4e80dd8184536acc45f1c452d7540472e6e1.png", - "aggregators": [ - "CoinGecko", - "Rubic", - "Squid", - "Rango", - "Sonarwatch", - "SushiSwap" - ], - "occurrences": 6 - }, - "0x28424507fefb6f7f8e9d3860f56504e4e5f5f390": { - "address": "0x28424507fefb6f7f8e9d3860f56504e4e5f5f390", - "symbol": "AMWETH", - "decimals": 18, - "name": "Aave Polygon WETH", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x28424507fefb6f7f8e9d3860f56504e4e5f5f390.png", - "aggregators": [ - "CoinGecko", - "1inch", - "LiFi", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 6 - }, - "0x5ec03c1f7fa7ff05ec476d19e34a22eddb48acdc": { - "address": "0x5ec03c1f7fa7ff05ec476d19e34a22eddb48acdc", - "symbol": "ZED", - "decimals": 18, - "name": "ZED RUN", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x5ec03c1f7fa7ff05ec476d19e34a22eddb48acdc.png", - "aggregators": [ - "CoinGecko", - "LiFi", - "Rubic", - "Rango", - "Sonarwatch", - "SushiSwap" - ], - "occurrences": 6 - }, - "0x60d55f02a771d515e077c9c2403a1ef324885cec": { - "address": "0x60d55f02a771d515e077c9c2403a1ef324885cec", - "symbol": "AMUSDT", - "decimals": 6, - "name": "Aave Polygon USDT", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x60d55f02a771d515e077c9c2403a1ef324885cec.png", - "aggregators": [ - "CoinGecko", - "1inch", - "LiFi", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 6 - }, - "0x431cd3c9ac9fc73644bf68bf5691f4b83f9e104f": { - "address": "0x431cd3c9ac9fc73644bf68bf5691f4b83f9e104f", - "symbol": "RBW", - "decimals": 18, - "name": "Rainbow Token", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x431cd3c9ac9fc73644bf68bf5691f4b83f9e104f.png", - "aggregators": [ - "CoinGecko", - "1inch", - "LiFi", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 6 - }, - "0x95a62521c655e7a24a3919aa1f99764c05b7ec4e": { - "address": "0x95a62521c655e7a24a3919aa1f99764c05b7ec4e", - "symbol": "MMX", - "decimals": 18, - "name": "MMX", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x95a62521c655e7a24a3919aa1f99764c05b7ec4e.png", - "aggregators": [ - "CoinGecko", - "LiFi", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 6 - }, - "0x60d01ec2d5e98ac51c8b4cf84dfcce98d527c747": { - "address": "0x60d01ec2d5e98ac51c8b4cf84dfcce98d527c747", - "symbol": "IZI", - "decimals": 18, - "name": "iZUMi Finance", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x60d01ec2d5e98ac51c8b4cf84dfcce98d527c747.png", - "aggregators": [ - "CoinGecko", - "LiFi", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 6 - }, - "0xaff41da975501e5b71848c975834341777d1a473": { - "address": "0xaff41da975501e5b71848c975834341777d1a473", - "symbol": "GUILD", - "decimals": 18, - "name": "BlockchainSpace", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0xaff41da975501e5b71848c975834341777d1a473.png", - "aggregators": [ - "CoinGecko", - "LiFi", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 6 - }, - "0x58001cc1a9e17a20935079ab40b1b8f4fc19efd1": { - "address": "0x58001cc1a9e17a20935079ab40b1b8f4fc19efd1", - "symbol": "PUSH", - "decimals": 18, - "name": "Push Protocol", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x58001cc1a9e17a20935079ab40b1b8f4fc19efd1.png", - "aggregators": [ - "CoinGecko", - "LiFi", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 6 - }, - "0xb7b31a6bc18e48888545ce79e83e06003be70930": { - "address": "0xb7b31a6bc18e48888545ce79e83e06003be70930", - "symbol": "APE", - "decimals": 18, - "name": "ApeCoin", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0xb7b31a6bc18e48888545ce79e83e06003be70930.png", - "aggregators": [ - "CoinGecko", - "LiFi", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 6 - }, - "0x714db550b574b3e927af3d93e26127d15721d4c2": { - "address": "0x714db550b574b3e927af3d93e26127d15721d4c2", - "symbol": "GMT", - "decimals": 8, - "name": "GMT", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x714db550b574b3e927af3d93e26127d15721d4c2.png", - "aggregators": [ - "CoinGecko", - "Socket", - "Rubic", - "Squid", - "Rango", - "Sonarwatch" - ], - "occurrences": 6 - }, - "0x6ab4e20f36ca48b61ecd66c0450fdf665fa130be": { - "address": "0x6ab4e20f36ca48b61ecd66c0450fdf665fa130be", - "symbol": "DOLZ", - "decimals": 18, - "name": "DOLZ.io", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x6ab4e20f36ca48b61ecd66c0450fdf665fa130be.png", - "aggregators": [ - "CoinGecko", - "LiFi", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 6 - }, - "0xf0949dd87d2531d665010d6274f06a357669457a": { - "address": "0xf0949dd87d2531d665010d6274f06a357669457a", - "symbol": "RMV", - "decimals": 18, - "name": "Reality Metaverse", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0xf0949dd87d2531d665010d6274f06a357669457a.png", - "aggregators": [ - "CoinGecko", - "LiFi", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 6 - }, - "0xc4ce1d6f5d98d65ee25cf85e9f2e9dcfee6cb5d6": { - "address": "0xc4ce1d6f5d98d65ee25cf85e9f2e9dcfee6cb5d6", - "symbol": "CRVUSD", - "decimals": 18, - "name": "crvUSD", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0xc4ce1d6f5d98d65ee25cf85e9f2e9dcfee6cb5d6.png", - "aggregators": [ - "CoinGecko", - "LiFi", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 6 - }, - "0xf21441f9ec4c1fe69cb7cf186eceab31af2b658d": { - "address": "0xf21441f9ec4c1fe69cb7cf186eceab31af2b658d", - "symbol": "VENT", - "decimals": 18, - "name": "Vent Finance", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0xf21441f9ec4c1fe69cb7cf186eceab31af2b658d.png", - "aggregators": [ - "CoinGecko", - "LiFi", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 6 - }, - "0x193f4a4a6ea24102f49b931deeeb931f6e32405d": { - "address": "0x193f4a4a6ea24102f49b931deeeb931f6e32405d", - "symbol": "TLOS", - "decimals": 18, - "name": "Telos", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x193f4a4a6ea24102f49b931deeeb931f6e32405d.png", - "aggregators": [ - "CoinGecko", - "LiFi", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 6 - }, - "0x3fb83a9a2c4408909c058b0bfe5b4823f54fafe2": { - "address": "0x3fb83a9a2c4408909c058b0bfe5b4823f54fafe2", - "symbol": "BCUT", - "decimals": 18, - "name": "bitsCrunch Token", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x3fb83a9a2c4408909c058b0bfe5b4823f54fafe2.png", - "aggregators": [ - "CoinGecko", - "LiFi", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 6 - }, - "0x2598c30330d5771ae9f983979209486ae26de875": { - "address": "0x2598c30330d5771ae9f983979209486ae26de875", - "symbol": "AI", - "decimals": 18, - "name": "Any Inu", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x2598c30330d5771ae9f983979209486ae26de875.png", - "aggregators": [ - "CoinGecko", - "Socket", - "Rubic", - "Squid", - "Rango", - "Sonarwatch" - ], - "occurrences": 6 - }, - "0x17d342b29f054030a455b4191f977c3b0aa62fd9": { - "address": "0x17d342b29f054030a455b4191f977c3b0aa62fd9", - "symbol": "KNG", - "decimals": 18, - "name": "Kanga Exchange", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x17d342b29f054030a455b4191f977c3b0aa62fd9.png", - "aggregators": [ - "CoinGecko", - "LiFi", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 6 - }, - "0xcf66eb3d546f0415b368d98a95eaf56ded7aa752": { - "address": "0xcf66eb3d546f0415b368d98a95eaf56ded7aa752", - "symbol": "USX", - "decimals": 18, - "name": "dForce USD", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0xcf66eb3d546f0415b368d98a95eaf56ded7aa752.png", - "aggregators": [ - "CoinGecko", - "LiFi", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 6 - }, - "0x9c1c23e60b72bc88a043bf64afdb16a02540ae8f": { - "address": "0x9c1c23e60b72bc88a043bf64afdb16a02540ae8f", - "symbol": "RING", - "decimals": 18, - "name": "Darwinia Network", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x9c1c23e60b72bc88a043bf64afdb16a02540ae8f.png", - "aggregators": [ - "CoinGecko", - "LiFi", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 6 - }, - "0x3c59798620e5fec0ae6df1a19c6454094572ab92": { - "address": "0x3c59798620e5fec0ae6df1a19c6454094572ab92", - "symbol": "MNW", - "decimals": 18, - "name": "Morpheus Network", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x3c59798620e5fec0ae6df1a19c6454094572ab92.png", - "aggregators": [ - "CoinGecko", - "LiFi", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 6 - }, - "0x82617aa52dddf5ed9bb7b370ed777b3182a30fd1": { - "address": "0x82617aa52dddf5ed9bb7b370ed777b3182a30fd1", - "symbol": "YGG", - "decimals": 18, - "name": "Yield Guild Games", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x82617aa52dddf5ed9bb7b370ed777b3182a30fd1.png", - "aggregators": [ - "CoinGecko", - "LiFi", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 6 - }, - "0x110b25d2b21ee73eb401f3ae7833f7072912a0bf": { - "address": "0x110b25d2b21ee73eb401f3ae7833f7072912a0bf", - "symbol": "LIF3", - "decimals": 18, - "name": "Lif3", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x110b25d2b21ee73eb401f3ae7833f7072912a0bf.png", - "aggregators": [ - "CoinGecko", - "LiFi", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 6 - }, - "0xc3a9a54c043f348027fffaac0f2f996123a19bf4": { - "address": "0xc3a9a54c043f348027fffaac0f2f996123a19bf4", - "symbol": "ERN", - "decimals": 18, - "name": "Ethos Reserve Note", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0xc3a9a54c043f348027fffaac0f2f996123a19bf4.png", - "aggregators": [ - "CoinGecko", - "LiFi", - "Rubic", - "Squid", - "Rango", - "Sonarwatch" - ], - "occurrences": 6 - }, - "0x9ff62d1fc52a907b6dcba8077c2ddca6e6a9d3e1": { - "address": "0x9ff62d1fc52a907b6dcba8077c2ddca6e6a9d3e1", - "symbol": "FORT", - "decimals": 18, - "name": "Forta", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x9ff62d1fc52a907b6dcba8077c2ddca6e6a9d3e1.png", - "aggregators": [ - "CoinGecko", - "LiFi", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 6 - }, - "0x9b3b0703d392321ad24338ff1f846650437a43c9": { - "address": "0x9b3b0703d392321ad24338ff1f846650437a43c9", - "symbol": "BOSON", - "decimals": 18, - "name": "Boson Protocol", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x9b3b0703d392321ad24338ff1f846650437a43c9.png", - "aggregators": [ - "CoinGecko", - "LiFi", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 6 - }, - "0xee327f889d5947c1dc1934bb208a1e792f953e96": { - "address": "0xee327f889d5947c1dc1934bb208a1e792f953e96", - "symbol": "FRXETH", - "decimals": 18, - "name": "Frax Ether", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0xee327f889d5947c1dc1934bb208a1e792f953e96.png", - "aggregators": [ - "CoinGecko", - "LiFi", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 6 - }, - "0xb9585ec9d4c97ad9ded7250bb9a199fe8eed0eca": { - "address": "0xb9585ec9d4c97ad9ded7250bb9a199fe8eed0eca", - "symbol": "WHALE", - "decimals": 4, - "name": "WHALE", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0xb9585ec9d4c97ad9ded7250bb9a199fe8eed0eca.png", - "aggregators": [ - "CoinGecko", - "LiFi", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 6 - }, - "0x9cb74c8032b007466865f060ad2c46145d45553d": { - "address": "0x9cb74c8032b007466865f060ad2c46145d45553d", - "symbol": "IDEX", - "decimals": 18, - "name": "IDEX", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x9cb74c8032b007466865f060ad2c46145d45553d.png", - "aggregators": [ - "CoinGecko", - "LiFi", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 6 - }, - "0xdcb72ae4d5dc6ae274461d57e65db8d50d0a33ad": { - "address": "0xdcb72ae4d5dc6ae274461d57e65db8d50d0a33ad", - "symbol": "RADAR", - "decimals": 18, - "name": "DappRadar", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0xdcb72ae4d5dc6ae274461d57e65db8d50d0a33ad.png", - "aggregators": [ - "CoinGecko", - "LiFi", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 6 - }, - "0x9e20461bc2c4c980f62f1b279d71734207a6a356": { - "address": "0x9e20461bc2c4c980f62f1b279d71734207a6a356", - "symbol": "OMNI", - "decimals": 18, - "name": "OmniCat", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x9e20461bc2c4c980f62f1b279d71734207a6a356.png", - "aggregators": [ - "CoinGecko", - "Socket", - "Rubic", - "Rango", - "Sonarwatch", - "SushiSwap" - ], - "occurrences": 6 - }, - "0x7fbc10850cae055b27039af31bd258430e714c62": { - "address": "0x7fbc10850cae055b27039af31bd258430e714c62", - "symbol": "UBT", - "decimals": 8, - "name": "Unibright", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x7fbc10850cae055b27039af31bd258430e714c62.png", - "aggregators": [ - "CoinGecko", - "LiFi", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 6 - }, - "0x46f48fbdedaa6f5500993bede9539ef85f4bee8e": { - "address": "0x46f48fbdedaa6f5500993bede9539ef85f4bee8e", - "symbol": "ARIA20", - "decimals": 18, - "name": "Arianee", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x46f48fbdedaa6f5500993bede9539ef85f4bee8e.png", - "aggregators": [ - "CoinGecko", - "LiFi", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 6 - }, - "0x2727ab1c2d22170abc9b595177b2d5c6e1ab7b7b": { - "address": "0x2727ab1c2d22170abc9b595177b2d5c6e1ab7b7b", - "symbol": "CTSI", - "decimals": 18, - "name": "Cartesi", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x2727ab1c2d22170abc9b595177b2d5c6e1ab7b7b.png", - "aggregators": [ - "CoinGecko", - "LiFi", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 6 - }, - "0x5b4cf2c120a9702225814e18543ee658c5f8631e": { - "address": "0x5b4cf2c120a9702225814e18543ee658c5f8631e", - "symbol": "UFT", - "decimals": 18, - "name": "UniLend Finance", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x5b4cf2c120a9702225814e18543ee658c5f8631e.png", - "aggregators": [ - "CoinGecko", - "LiFi", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 6 - }, - "0xa6b37fc85d870711c56fbcb8afe2f8db049ae774": { - "address": "0xa6b37fc85d870711c56fbcb8afe2f8db049ae774", - "symbol": "PLR", - "decimals": 18, - "name": "Pillar", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0xa6b37fc85d870711c56fbcb8afe2f8db049ae774.png", - "aggregators": [ - "CoinGecko", - "LiFi", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 6 - }, - "0x6aca77cf3bab0c4e8210a09b57b07854a995289a": { - "address": "0x6aca77cf3bab0c4e8210a09b57b07854a995289a", - "symbol": "MEED", - "decimals": 18, - "name": "Meeds DAO", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x6aca77cf3bab0c4e8210a09b57b07854a995289a.png", - "aggregators": [ - "CoinGecko", - "LiFi", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 6 - }, - "0x70d59baa5ab360b2723dd561415bdbcd4435e1c4": { - "address": "0x70d59baa5ab360b2723dd561415bdbcd4435e1c4", - "symbol": "SPRING", - "decimals": 18, - "name": "Spring Token", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x70d59baa5ab360b2723dd561415bdbcd4435e1c4.png", - "aggregators": [ - "CoinGecko", - "LiFi", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 6 - }, - "0xfe049f59963545bf5469f968e04c9646d6e2c2c5": { - "address": "0xfe049f59963545bf5469f968e04c9646d6e2c2c5", - "symbol": "BC", - "decimals": 18, - "name": "Blood Crystal", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0xfe049f59963545bf5469f968e04c9646d6e2c2c5.png", - "aggregators": [ - "CoinGecko", - "LiFi", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 6 - }, - "0xf972daced7c6b03223710c11413036d17eb298f6": { - "address": "0xf972daced7c6b03223710c11413036d17eb298f6", - "symbol": "IBEX", - "decimals": 18, - "name": "Impermax", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0xf972daced7c6b03223710c11413036d17eb298f6.png", - "aggregators": [ - "CoinGecko", - "LiFi", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 6 - }, - "0xc8bb8eda94931ca2f20ef43ea7dbd58e68400400": { - "address": "0xc8bb8eda94931ca2f20ef43ea7dbd58e68400400", - "symbol": "VNXAU", - "decimals": 18, - "name": "VNX Gold", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0xc8bb8eda94931ca2f20ef43ea7dbd58e68400400.png", - "aggregators": [ - "CoinGecko", - "LiFi", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 6 - }, - "0xbe5cf150e1ff59ca7f2499eaa13bfc40aae70e78": { - "address": "0xbe5cf150e1ff59ca7f2499eaa13bfc40aae70e78", - "symbol": "GLCH", - "decimals": 18, - "name": "Glitch Protocol", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0xbe5cf150e1ff59ca7f2499eaa13bfc40aae70e78.png", - "aggregators": [ - "CoinGecko", - "LiFi", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 6 - }, - "0xf88332547c680f755481bf489d890426248bb275": { - "address": "0xf88332547c680f755481bf489d890426248bb275", - "symbol": "SURE", - "decimals": 18, - "name": "inSure DeFi", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0xf88332547c680f755481bf489d890426248bb275.png", - "aggregators": [ - "CoinGecko", - "LiFi", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 6 - }, - "0x8346ab8d5ea7a9db0209aed2d1806afa0e2c4c21": { - "address": "0x8346ab8d5ea7a9db0209aed2d1806afa0e2c4c21", - "symbol": "MOD", - "decimals": 18, - "name": "Modefi", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x8346ab8d5ea7a9db0209aed2d1806afa0e2c4c21.png", - "aggregators": [ - "CoinGecko", - "LiFi", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 6 - }, - "0xadbe0eac80f955363f4ff47b0f70189093908c04": { - "address": "0xadbe0eac80f955363f4ff47b0f70189093908c04", - "symbol": "XMT", - "decimals": 18, - "name": "MetalSwap", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0xadbe0eac80f955363f4ff47b0f70189093908c04.png", - "aggregators": [ - "CoinGecko", - "LiFi", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 6 - }, - "0x6fb54ffe60386ac33b722be13d2549dd87bf63af": { - "address": "0x6fb54ffe60386ac33b722be13d2549dd87bf63af", - "symbol": "POLI", - "decimals": 18, - "name": "Polinate", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x6fb54ffe60386ac33b722be13d2549dd87bf63af.png", - "aggregators": [ - "CoinGecko", - "LiFi", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 6 - }, - "0xd566c529b33ecf15170f600d4b1ab12468c8efc6": { - "address": "0xd566c529b33ecf15170f600d4b1ab12468c8efc6", - "symbol": "UERII", - "decimals": 18, - "name": "UERII", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0xd566c529b33ecf15170f600d4b1ab12468c8efc6.png", - "aggregators": [ - "CoinGecko", - "LiFi", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 6 - }, - "0xd0e9c8f5fae381459cf07ec506c1d2896e8b5df6": { - "address": "0xd0e9c8f5fae381459cf07ec506c1d2896e8b5df6", - "symbol": "IOEN", - "decimals": 18, - "name": "Internet of Energy Network", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0xd0e9c8f5fae381459cf07ec506c1d2896e8b5df6.png", - "aggregators": [ - "CoinGecko", - "LiFi", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 6 - }, - "0xd5d86fc8d5c0ea1ac1ac5dfab6e529c9967a45e9": { - "address": "0xd5d86fc8d5c0ea1ac1ac5dfab6e529c9967a45e9", - "symbol": "WRLD", - "decimals": 18, - "name": "NFT Worlds", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0xd5d86fc8d5c0ea1ac1ac5dfab6e529c9967a45e9.png", - "aggregators": [ - "CoinGecko", - "LiFi", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 6 - }, - "0xf8f9efc0db77d8881500bb06ff5d6abc3070e695": { - "address": "0xf8f9efc0db77d8881500bb06ff5d6abc3070e695", - "symbol": "SYN", - "decimals": 18, - "name": "Synapse", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0xf8f9efc0db77d8881500bb06ff5d6abc3070e695.png", - "aggregators": [ - "CoinGecko", - "LiFi", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 6 - }, - "0xaecebfcf604ad245eaf0d5bd68459c3a7a6399c2": { - "address": "0xaecebfcf604ad245eaf0d5bd68459c3a7a6399c2", - "symbol": "RAMP", - "decimals": 18, - "name": "RAMP [OLD]", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0xaecebfcf604ad245eaf0d5bd68459c3a7a6399c2.png", - "aggregators": [ - "CoinGecko", - "LiFi", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 6 - }, - "0xad684e79ce4b6d464f2ff7c3fd51646892e24b96": { - "address": "0xad684e79ce4b6d464f2ff7c3fd51646892e24b96", - "symbol": "NIOX", - "decimals": 4, - "name": "Autonio", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0xad684e79ce4b6d464f2ff7c3fd51646892e24b96.png", - "aggregators": [ - "CoinGecko", - "LiFi", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 6 - }, - "0x71b821aa52a49f32eed535fca6eb5aa130085978": { - "address": "0x71b821aa52a49f32eed535fca6eb5aa130085978", - "symbol": "0XBTC", - "decimals": 8, - "name": "0xBitcoin", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x71b821aa52a49f32eed535fca6eb5aa130085978.png", - "aggregators": [ - "CoinGecko", - "LiFi", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 6 - }, - "0x0d6ae2a429df13e44a07cd2969e085e4833f64a0": { - "address": "0x0d6ae2a429df13e44a07cd2969e085e4833f64a0", - "symbol": "PBR", - "decimals": 18, - "name": "PolkaBridge", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x0d6ae2a429df13e44a07cd2969e085e4833f64a0.png", - "aggregators": [ - "CoinGecko", - "LiFi", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 6 - }, - "0x0df0f72ee0e5c9b7ca761ecec42754992b2da5bf": { - "address": "0x0df0f72ee0e5c9b7ca761ecec42754992b2da5bf", - "symbol": "ATA", - "decimals": 18, - "name": "Automata", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x0df0f72ee0e5c9b7ca761ecec42754992b2da5bf.png", - "aggregators": [ - "CoinGecko", - "LiFi", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 6 - }, - "0xc91c06db0f7bffba61e2a5645cc15686f0a8c828": { - "address": "0xc91c06db0f7bffba61e2a5645cc15686f0a8c828", - "symbol": "RAZOR", - "decimals": 18, - "name": "Razor Network", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0xc91c06db0f7bffba61e2a5645cc15686f0a8c828.png", - "aggregators": [ - "CoinGecko", - "LiFi", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 6 - }, - "0x4d0def42cf57d6f27cd4983042a55dce1c9f853c": { - "address": "0x4d0def42cf57d6f27cd4983042a55dce1c9f853c", - "symbol": "KIT", - "decimals": 18, - "name": "DexKit", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x4d0def42cf57d6f27cd4983042a55dce1c9f853c.png", - "aggregators": [ - "CoinGecko", - "LiFi", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 6 - }, - "0xd52f6ca48882be8fbaa98ce390db18e1dbe1062d": { - "address": "0xd52f6ca48882be8fbaa98ce390db18e1dbe1062d", - "symbol": "ORE", - "decimals": 18, - "name": "ORE Network", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0xd52f6ca48882be8fbaa98ce390db18e1dbe1062d.png", - "aggregators": [ - "CoinGecko", - "LiFi", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 6 - }, - "0x25788a1a171ec66da6502f9975a15b609ff54cf6": { - "address": "0x25788a1a171ec66da6502f9975a15b609ff54cf6", - "symbol": "POOL", - "decimals": 18, - "name": "PoolTogether", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x25788a1a171ec66da6502f9975a15b609ff54cf6.png", - "aggregators": [ - "CoinGecko", - "LiFi", - "Rubic", - "Rango", - "Sonarwatch", - "SushiSwap" - ], - "occurrences": 6 - }, - "0x87847703d4bb4fcd42db887ffdcb94496e77e3ab": { - "address": "0x87847703d4bb4fcd42db887ffdcb94496e77e3ab", - "symbol": "HID", - "decimals": 18, - "name": "Hypersign Identity", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x87847703d4bb4fcd42db887ffdcb94496e77e3ab.png", - "aggregators": [ - "CoinGecko", - "LiFi", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 6 - }, - "0x49b1be61a8ca3f9a9f178d6550e41e00d9162159": { - "address": "0x49b1be61a8ca3f9a9f178d6550e41e00d9162159", - "symbol": "GGTK", - "decimals": 18, - "name": "GG", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x49b1be61a8ca3f9a9f178d6550e41e00d9162159.png", - "aggregators": [ - "CoinGecko", - "LiFi", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 6 - }, - "0x7cdc0421469398e0f3aa8890693d86c840ac8931": { - "address": "0x7cdc0421469398e0f3aa8890693d86c840ac8931", - "symbol": "AZUKI", - "decimals": 18, - "name": "Azuki", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x7cdc0421469398e0f3aa8890693d86c840ac8931.png", - "aggregators": [ - "CoinGecko", - "LiFi", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 6 - }, - "0x0e50bea95fe001a370a4f1c220c49aedcb982dec": { - "address": "0x0e50bea95fe001a370a4f1c220c49aedcb982dec", - "symbol": "ERN", - "decimals": 18, - "name": "Ethernity Chain", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x0e50bea95fe001a370a4f1c220c49aedcb982dec.png", - "aggregators": [ - "QuickSwap", - "LiFi", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 6 - }, - "0xf1c1a3c2481a3a8a3f173a9ab5ade275292a6fa3": { - "address": "0xf1c1a3c2481a3a8a3f173a9ab5ade275292a6fa3", - "symbol": "VEE", - "decimals": 18, - "name": "VEE", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0xf1c1a3c2481a3a8a3f173a9ab5ade275292a6fa3.png", - "aggregators": [ - "CoinGecko", - "LiFi", - "Socket", - "Rubic", - "Squid", - "Rango" - ], - "occurrences": 6 - }, - "0x1b599beb7b1f50807dd58fd7e8ffcf073b435e71": { - "address": "0x1b599beb7b1f50807dd58fd7e8ffcf073b435e71", - "symbol": "BLES", - "decimals": 18, - "name": "Blind Boxes", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x1b599beb7b1f50807dd58fd7e8ffcf073b435e71.png", - "aggregators": [ - "CoinGecko", - "LiFi", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 6 - }, - "0xe79feaaa457ad7899357e8e2065a3267ac9ee601": { - "address": "0xe79feaaa457ad7899357e8e2065a3267ac9ee601", - "symbol": "WCHI", - "decimals": 8, - "name": "XAYA", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0xe79feaaa457ad7899357e8e2065a3267ac9ee601.png", - "aggregators": [ - "CoinGecko", - "LiFi", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 6 - }, - "0xe51e88dd08499762b8e4eb3a9f3da9b8e79608c3": { - "address": "0xe51e88dd08499762b8e4eb3a9f3da9b8e79608c3", - "symbol": "SKRT", - "decimals": 18, - "name": "Sekuritance", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0xe51e88dd08499762b8e4eb3a9f3da9b8e79608c3.png", - "aggregators": [ - "CoinGecko", - "LiFi", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 6 - }, - "0x51de72b17c7bd12e9e6d69eb506a669eb6b5249e": { - "address": "0x51de72b17c7bd12e9e6d69eb506a669eb6b5249e", - "symbol": "EGG", - "decimals": 18, - "name": "Waves Ducks", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x51de72b17c7bd12e9e6d69eb506a669eb6b5249e.png", - "aggregators": [ - "QuickSwap", - "LiFi", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 6 - }, - "0x5314ba045a459f63906aa7c76d9f337dcb7d6995": { - "address": "0x5314ba045a459f63906aa7c76d9f337dcb7d6995", - "symbol": "FODL", - "decimals": 18, - "name": "Fodl Finance", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x5314ba045a459f63906aa7c76d9f337dcb7d6995.png", - "aggregators": [ - "CoinGecko", - "LiFi", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 6 - }, - "0xc748b2a084f8efc47e086ccddd9b7e67aeb571bf": { - "address": "0xc748b2a084f8efc47e086ccddd9b7e67aeb571bf", - "symbol": "HMT", - "decimals": 18, - "name": "HUMAN Protocol", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0xc748b2a084f8efc47e086ccddd9b7e67aeb571bf.png", - "aggregators": [ - "CoinGecko", - "LiFi", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 6 - }, - "0xf2ae0038696774d65e67892c9d301c5f2cbbda58": { - "address": "0xf2ae0038696774d65e67892c9d301c5f2cbbda58", - "symbol": "CXO", - "decimals": 18, - "name": "CargoX", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0xf2ae0038696774d65e67892c9d301c5f2cbbda58.png", - "aggregators": [ - "CoinGecko", - "LiFi", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 6 - }, - "0x09c5a4bca808bd1ba2b8e6b3aaf7442046b4ca5b": { - "address": "0x09c5a4bca808bd1ba2b8e6b3aaf7442046b4ca5b", - "symbol": "VSP", - "decimals": 18, - "name": "Vesper Finance", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x09c5a4bca808bd1ba2b8e6b3aaf7442046b4ca5b.png", - "aggregators": [ - "CoinGecko", - "LiFi", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 6 - }, - "0x6863bd30c9e313b264657b107352ba246f8af8e0": { - "address": "0x6863bd30c9e313b264657b107352ba246f8af8e0", - "symbol": "BPT", - "decimals": 18, - "name": "BlackPool", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x6863bd30c9e313b264657b107352ba246f8af8e0.png", - "aggregators": [ - "CoinGecko", - "LiFi", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 6 - }, - "0x638df98ad8069a15569da5a6b01181804c47e34c": { - "address": "0x638df98ad8069a15569da5a6b01181804c47e34c", - "symbol": "DAFI", - "decimals": 18, - "name": "Dafi Protocol", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x638df98ad8069a15569da5a6b01181804c47e34c.png", - "aggregators": [ - "CoinGecko", - "LiFi", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 6 - }, - "0xe4bf2864ebec7b7fdf6eeca9bacae7cdfdaffe78": { - "address": "0xe4bf2864ebec7b7fdf6eeca9bacae7cdfdaffe78", - "symbol": "DODO", - "decimals": 18, - "name": "DODO", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0xe4bf2864ebec7b7fdf6eeca9bacae7cdfdaffe78.png", - "aggregators": [ - "CoinGecko", - "LiFi", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 6 - }, - "0x8d520c8e66091cfd6743fe37fbe3a09505616c4b": { - "address": "0x8d520c8e66091cfd6743fe37fbe3a09505616c4b", - "symbol": "COT", - "decimals": 18, - "name": "Cosplay Token", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x8d520c8e66091cfd6743fe37fbe3a09505616c4b.png", - "aggregators": [ - "QuickSwap", - "LiFi", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 6 - }, - "0x14af1f2f02dccb1e43402339099a05a5e363b83c": { - "address": "0x14af1f2f02dccb1e43402339099a05a5e363b83c", - "symbol": "KROM", - "decimals": 18, - "name": "Kromatika", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x14af1f2f02dccb1e43402339099a05a5e363b83c.png", - "aggregators": [ - "CoinGecko", - "LiFi", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 6 - }, - "0x538d47d142f6993038a667e9d6210d3735749b36": { - "address": "0x538d47d142f6993038a667e9d6210d3735749b36", - "symbol": "BURP", - "decimals": 18, - "name": "Burp", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x538d47d142f6993038a667e9d6210d3735749b36.png", - "aggregators": [ - "CoinGecko", - "LiFi", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 6 - }, - "0xf6f85b3f9fd581c2ee717c404f7684486f057f95": { - "address": "0xf6f85b3f9fd581c2ee717c404f7684486f057f95", - "symbol": "NORD", - "decimals": 18, - "name": "Nord Finance", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0xf6f85b3f9fd581c2ee717c404f7684486f057f95.png", - "aggregators": [ - "CoinGecko", - "LiFi", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 6 - }, - "0x3c205c8b3e02421da82064646788c82f7bd753b9": { - "address": "0x3c205c8b3e02421da82064646788c82f7bd753b9", - "symbol": "UFI", - "decimals": 18, - "name": "PureFi", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x3c205c8b3e02421da82064646788c82f7bd753b9.png", - "aggregators": [ - "CoinGecko", - "LiFi", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 6 - }, - "0x692c44990e4f408ba0917f5c78a83160c1557237": { - "address": "0x692c44990e4f408ba0917f5c78a83160c1557237", - "symbol": "THALES", - "decimals": 18, - "name": "Thales", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x692c44990e4f408ba0917f5c78a83160c1557237.png", - "aggregators": [ - "CoinGecko", - "LiFi", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 6 - }, - "0x4fb71290ac171e1d144f7221d882becac7196eb5": { - "address": "0x4fb71290ac171e1d144f7221d882becac7196eb5", - "symbol": "TRYB", - "decimals": 6, - "name": "BiLira", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x4fb71290ac171e1d144f7221d882becac7196eb5.png", - "aggregators": [ - "CoinGecko", - "LiFi", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 6 - }, - "0x111111517e4929d3dcbdfa7cce55d30d4b6bc4d6": { - "address": "0x111111517e4929d3dcbdfa7cce55d30d4b6bc4d6", - "symbol": "ICHI", - "decimals": 18, - "name": "ICHI", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x111111517e4929d3dcbdfa7cce55d30d4b6bc4d6.png", - "aggregators": [ - "CoinGecko", - "LiFi", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 6 - }, - "0x23001f892c0c82b79303edc9b9033cd190bb21c7": { - "address": "0x23001f892c0c82b79303edc9b9033cd190bb21c7", - "symbol": "LUSD", - "decimals": 18, - "name": "Liquity USD", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x23001f892c0c82b79303edc9b9033cd190bb21c7.png", - "aggregators": [ - "CoinGecko", - "LiFi", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 6 - }, - "0x79375c41d88f839f551457145066096c5c8944bc": { - "address": "0x79375c41d88f839f551457145066096c5c8944bc", - "symbol": "SG", - "decimals": 18, - "name": "SocialGood", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x79375c41d88f839f551457145066096c5c8944bc.png", - "aggregators": [ - "CoinGecko", - "LiFi", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 6 - }, - "0x7e7ff932fab08a0af569f93ce65e7b8b23698ad8": { - "address": "0x7e7ff932fab08a0af569f93ce65e7b8b23698ad8", - "symbol": "YF-DAI", - "decimals": 18, - "name": "YfDAI.finance", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x7e7ff932fab08a0af569f93ce65e7b8b23698ad8.png", - "aggregators": [ - "CoinGecko", - "LiFi", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 6 - }, - "0x1fe78e67ad10ba3a9583e672cac0480737d1b9f7": { - "address": "0x1fe78e67ad10ba3a9583e672cac0480737d1b9f7", - "symbol": "SLN", - "decimals": 18, - "name": "Smart Layer Network", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x1fe78e67ad10ba3a9583e672cac0480737d1b9f7.png", - "aggregators": [ - "CoinGecko", - "LiFi", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 6 - }, - "0xb25e20de2f2ebb4cffd4d16a55c7b395e8a94762": { - "address": "0xb25e20de2f2ebb4cffd4d16a55c7b395e8a94762", - "symbol": "REQ", - "decimals": 18, - "name": "Request", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0xb25e20de2f2ebb4cffd4d16a55c7b395e8a94762.png", - "aggregators": [ - "QuickSwap", - "LiFi", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 6 - }, - "0xfbdd194376de19a88118e84e279b977f165d01b8": { - "address": "0xfbdd194376de19a88118e84e279b977f165d01b8", - "symbol": "BIFI", - "decimals": 18, - "name": "Beefy.finance", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0xfbdd194376de19a88118e84e279b977f165d01b8.png", - "aggregators": [ - "QuickSwap", - "LiFi", - "Socket", - "Rubic", - "Rango", - "SushiSwap" - ], - "occurrences": 6 - }, - "0x553d3d295e0f695b9228246232edf400ed3560b5": { - "address": "0x553d3d295e0f695b9228246232edf400ed3560b5", - "symbol": "PAXG", - "decimals": 18, - "name": "Paxos Gold (PoS)", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x553d3d295e0f695b9228246232edf400ed3560b5.png", - "aggregators": [ - "QuickSwap", - "LiFi", - "Socket", - "Rubic", - "Squid", - "Rango" - ], - "occurrences": 6 - }, - "0xa9536b9c75a9e0fae3b56a96ac8edf76abc91978": { - "address": "0xa9536b9c75a9e0fae3b56a96ac8edf76abc91978", - "symbol": "PECO", - "decimals": 18, - "name": "Polygon Ecosystem Index", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0xa9536b9c75a9e0fae3b56a96ac8edf76abc91978.png", - "aggregators": [ - "QuickSwap", - "LiFi", - "Socket", - "Rubic", - "Rango", - "SushiSwap" - ], - "occurrences": 6 - }, - "0x2c92a8a41f4b806a6f6f1f7c9d9dec78dcd8c18e": { - "address": "0x2c92a8a41f4b806a6f6f1f7c9d9dec78dcd8c18e", - "symbol": "STZ", - "decimals": 18, - "name": "99Starz", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x2c92a8a41f4b806a6f6f1f7c9d9dec78dcd8c18e.png", - "aggregators": [ - "QuickSwap", - "LiFi", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 6 - }, - "0xf5ea626334037a2cf0155d49ea6462fddc6eff19": { - "address": "0xf5ea626334037a2cf0155d49ea6462fddc6eff19", - "symbol": "SPADE", - "decimals": 18, - "name": "PolygonFarm Finance", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0xf5ea626334037a2cf0155d49ea6462fddc6eff19.png", - "aggregators": [ - "CoinGecko", - "Rubic", - "Rango", - "Sonarwatch", - "SushiSwap" - ], - "occurrences": 5 - }, - "0x80244c2441779361f35803b8c711c6c8fc6054a3": { - "address": "0x80244c2441779361f35803b8c711c6c8fc6054a3", - "symbol": "BONE", - "decimals": 18, - "name": "BoneSwap", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x80244c2441779361f35803b8c711c6c8fc6054a3.png", - "aggregators": [ - "CoinGecko", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0xa2c638b78783e9afe26a16ec8b11de54eb169360": { - "address": "0xa2c638b78783e9afe26a16ec8b11de54eb169360", - "symbol": "PIN", - "decimals": 18, - "name": "Pay It Now", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0xa2c638b78783e9afe26a16ec8b11de54eb169360.png", - "aggregators": [ - "CoinGecko", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0xeb51d9a39ad5eef215dc0bf39a8821ff804a0f01": { - "address": "0xeb51d9a39ad5eef215dc0bf39a8821ff804a0f01", - "symbol": "LGNS", - "decimals": 9, - "name": "Longinus", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0xeb51d9a39ad5eef215dc0bf39a8821ff804a0f01.png", - "aggregators": ["CoinGecko", "1inch", "Rubic", "Squid", "Rango"], - "occurrences": 5 - }, - "0x071ac29d569a47ebffb9e57517f855cb577dcc4c": { - "address": "0x071ac29d569a47ebffb9e57517f855cb577dcc4c", - "symbol": "GCOIN", - "decimals": 18, - "name": "Galaxy Fight Club", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x071ac29d569a47ebffb9e57517f855cb577dcc4c.png", - "aggregators": [ - "CoinGecko", - "1inch", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x311434160d7537be358930def317afb606c0d737": { - "address": "0x311434160d7537be358930def317afb606c0d737", - "symbol": "NAKA", - "decimals": 18, - "name": "Nakamoto Games", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x311434160d7537be358930def317afb606c0d737.png", - "aggregators": [ - "CoinGecko", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x05089c9ebffa4f0aca269e32056b1b36b37ed71b": { - "address": "0x05089c9ebffa4f0aca269e32056b1b36b37ed71b", - "symbol": "KRILL", - "decimals": 18, - "name": "Krill", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x05089c9ebffa4f0aca269e32056b1b36b37ed71b.png", - "aggregators": ["CoinGecko", "LiFi", "Rubic", "Rango", "SushiSwap"], - "occurrences": 5 - }, - "0xfe302b8666539d5046cd9aa0707bb327f5f94c22": { - "address": "0xfe302b8666539d5046cd9aa0707bb327f5f94c22", - "symbol": "SEN", - "decimals": 18, - "name": "Senspark (POL)", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0xfe302b8666539d5046cd9aa0707bb327f5f94c22.png", - "aggregators": [ - "CoinGecko", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x82362ec182db3cf7829014bc61e9be8a2e82868a": { - "address": "0x82362ec182db3cf7829014bc61e9be8a2e82868a", - "symbol": "MESH", - "decimals": 18, - "name": "MESH", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x82362ec182db3cf7829014bc61e9be8a2e82868a.png", - "aggregators": ["CoinGecko", "1inch", "LiFi", "Rubic", "Rango"], - "occurrences": 5 - }, - "0x838c9634de6590b96aeadc4bc6db5c28fd17e3c2": { - "address": "0x838c9634de6590b96aeadc4bc6db5c28fd17e3c2", - "symbol": "FIRE", - "decimals": 18, - "name": "Matr1x Fire", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x838c9634de6590b96aeadc4bc6db5c28fd17e3c2.png", - "aggregators": [ - "CoinGecko", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x9af3b7dc29d3c4b1a5731408b6a9656fa7ac3b72": { - "address": "0x9af3b7dc29d3c4b1a5731408b6a9656fa7ac3b72", - "symbol": "PUSD", - "decimals": 18, - "name": "PUSD", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x9af3b7dc29d3c4b1a5731408b6a9656fa7ac3b72.png", - "aggregators": [ - "CoinGecko", - "Rubic", - "Rango", - "Sonarwatch", - "SushiSwap" - ], - "occurrences": 5 - }, - "0xac63686230f64bdeaf086fe6764085453ab3023f": { - "address": "0xac63686230f64bdeaf086fe6764085453ab3023f", - "symbol": "USV", - "decimals": 9, - "name": "Universal Store of Value", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0xac63686230f64bdeaf086fe6764085453ab3023f.png", - "aggregators": [ - "CoinGecko", - "Socket", - "Rubic", - "Rango", - "SushiSwap" - ], - "occurrences": 5 - }, - "0x658cda444ac43b0a7da13d638700931319b64014": { - "address": "0x658cda444ac43b0a7da13d638700931319b64014", - "symbol": "SMT", - "decimals": 18, - "name": "Smartmall Token", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x658cda444ac43b0a7da13d638700931319b64014.png", - "aggregators": [ - "CoinGecko", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0xaa4fbc6809a8e1924520fc85282ac4c76a7671d7": { - "address": "0xaa4fbc6809a8e1924520fc85282ac4c76a7671d7", - "symbol": "SOULS", - "decimals": 18, - "name": "Unfettered Ecosystem", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0xaa4fbc6809a8e1924520fc85282ac4c76a7671d7.png", - "aggregators": [ - "CoinGecko", - "Rubic", - "Squid", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x235737dbb56e8517391473f7c964db31fa6ef280": { - "address": "0x235737dbb56e8517391473f7c964db31fa6ef280", - "symbol": "KASTA", - "decimals": 18, - "name": "Kasta", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x235737dbb56e8517391473f7c964db31fa6ef280.png", - "aggregators": [ - "CoinGecko", - "1inch", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x62f594339830b90ae4c084ae7d223ffafd9658a7": { - "address": "0x62f594339830b90ae4c084ae7d223ffafd9658a7", - "symbol": "SPHERE", - "decimals": 18, - "name": "Sphere Finance", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x62f594339830b90ae4c084ae7d223ffafd9658a7.png", - "aggregators": [ - "CoinGecko", - "1inch", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x8f006d1e1d9dc6c98996f50a4c810f17a47fbf19": { - "address": "0x8f006d1e1d9dc6c98996f50a4c810f17a47fbf19", - "symbol": "NSFW", - "decimals": 18, - "name": "Pleasure Coin", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x8f006d1e1d9dc6c98996f50a4c810f17a47fbf19.png", - "aggregators": [ - "QuickSwap", - "Socket", - "Rubic", - "Rango", - "SushiSwap" - ], - "occurrences": 5 - }, - "0x58b9cb810a68a7f3e1e4f8cb45d1b9b3c79705e8": { - "address": "0x58b9cb810a68a7f3e1e4f8cb45d1b9b3c79705e8", - "symbol": "NEXT", - "decimals": 18, - "name": "Everclear", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x58b9cb810a68a7f3e1e4f8cb45d1b9b3c79705e8.png", - "aggregators": [ - "CoinGecko", - "LiFi", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x93890f346c5d02c3863a06657bc72555dc72c527": { - "address": "0x93890f346c5d02c3863a06657bc72555dc72c527", - "symbol": "ROUTE", - "decimals": 18, - "name": "Router Protocol", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x93890f346c5d02c3863a06657bc72555dc72c527.png", - "aggregators": [ - "CoinGecko", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0xaa53b93608c88ee55fad8db4c504fa20e52642ad": { - "address": "0xaa53b93608c88ee55fad8db4c504fa20e52642ad", - "symbol": "UCO", - "decimals": 8, - "name": "Archethic", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0xaa53b93608c88ee55fad8db4c504fa20e52642ad.png", - "aggregators": [ - "CoinGecko", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0xc5102fe9359fd9a28f877a67e36b0f050d81a3cc": { - "address": "0xc5102fe9359fd9a28f877a67e36b0f050d81a3cc", - "symbol": "HOP", - "decimals": 18, - "name": "Hop Protocol", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0xc5102fe9359fd9a28f877a67e36b0f050d81a3cc.png", - "aggregators": [ - "QuickSwap", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x07ed33a242bd9c08ca3c198e01189e35265024da": { - "address": "0x07ed33a242bd9c08ca3c198e01189e35265024da", - "symbol": "WAGMI", - "decimals": 18, - "name": "Wagmi", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x07ed33a242bd9c08ca3c198e01189e35265024da.png", - "aggregators": [ - "CoinGecko", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x3562ddf1f5ce2c02ef109e9d5a72e2fdb702711d": { - "address": "0x3562ddf1f5ce2c02ef109e9d5a72e2fdb702711d", - "symbol": "KAS", - "decimals": 8, - "name": "Wrapped Kaspa", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x3562ddf1f5ce2c02ef109e9d5a72e2fdb702711d.png", - "aggregators": [ - "CoinGecko", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0xe0bceef36f3a6efdd5eebfacd591423f8549b9d5": { - "address": "0xe0bceef36f3a6efdd5eebfacd591423f8549b9d5", - "symbol": "FACTR", - "decimals": 18, - "name": "Defactor", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0xe0bceef36f3a6efdd5eebfacd591423f8549b9d5.png", - "aggregators": [ - "CoinGecko", - "LiFi", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0xeee3371b89fc43ea970e908536fcddd975135d8a": { - "address": "0xeee3371b89fc43ea970e908536fcddd975135d8a", - "symbol": "DOG", - "decimals": 18, - "name": "The Doge NFT", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0xeee3371b89fc43ea970e908536fcddd975135d8a.png", - "aggregators": [ - "CoinGecko", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x68ee0d0aad9e1984af85ca224117e4d20eaf68be": { - "address": "0x68ee0d0aad9e1984af85ca224117e4d20eaf68be", - "symbol": "ROY", - "decimals": 18, - "name": "Royale", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x68ee0d0aad9e1984af85ca224117e4d20eaf68be.png", - "aggregators": [ - "CoinGecko", - "Rubic", - "Rango", - "Sonarwatch", - "SushiSwap" - ], - "occurrences": 5 - }, - "0x60ea918fc64360269da4efbda11d8fc6514617c6": { - "address": "0x60ea918fc64360269da4efbda11d8fc6514617c6", - "symbol": "SUKU", - "decimals": 18, - "name": "SUKU", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x60ea918fc64360269da4efbda11d8fc6514617c6.png", - "aggregators": ["CoinGecko", "LiFi", "Socket", "Rubic", "Rango"], - "occurrences": 5 - }, - "0xa0e390e9cea0d0e8cd40048ced9fa9ea10d71639": { - "address": "0xa0e390e9cea0d0e8cd40048ced9fa9ea10d71639", - "symbol": "DSLA", - "decimals": 18, - "name": "DSLA Protocol", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0xa0e390e9cea0d0e8cd40048ced9fa9ea10d71639.png", - "aggregators": [ - "CoinGecko", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x855d4248672a1fce482165e8dbe1207b94b1968a": { - "address": "0x855d4248672a1fce482165e8dbe1207b94b1968a", - "symbol": "WOW", - "decimals": 18, - "name": "WOWSwap", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x855d4248672a1fce482165e8dbe1207b94b1968a.png", - "aggregators": [ - "CoinGecko", - "Rubic", - "Rango", - "Sonarwatch", - "SushiSwap" - ], - "occurrences": 5 - }, - "0xab5f7a0e20b0d056aed4aa4528c78da45be7308b": { - "address": "0xab5f7a0e20b0d056aed4aa4528c78da45be7308b", - "symbol": "GBYTE", - "decimals": 18, - "name": "Obyte", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0xab5f7a0e20b0d056aed4aa4528c78da45be7308b.png", - "aggregators": [ - "CoinGecko", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0xcfb54a6d2da14abecd231174fc5735b4436965d8": { - "address": "0xcfb54a6d2da14abecd231174fc5735b4436965d8", - "symbol": "CYC", - "decimals": 18, - "name": "Cyclone Protocol", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0xcfb54a6d2da14abecd231174fc5735b4436965d8.png", - "aggregators": [ - "QuickSwap", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0xfd4959c06fbcc02250952daebf8e0fb38cf9fd8c": { - "address": "0xfd4959c06fbcc02250952daebf8e0fb38cf9fd8c", - "symbol": "ZEE", - "decimals": 18, - "name": "ZeroSwap", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0xfd4959c06fbcc02250952daebf8e0fb38cf9fd8c.png", - "aggregators": [ - "CoinGecko", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x6ab6d61428fde76768d7b45d8bfeec19c6ef91a8": { - "address": "0x6ab6d61428fde76768d7b45d8bfeec19c6ef91a8", - "symbol": "ANY", - "decimals": 18, - "name": "Anyswap", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x6ab6d61428fde76768d7b45d8bfeec19c6ef91a8.png", - "aggregators": [ - "CoinGecko", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0xe0339c80ffde91f3e20494df88d4206d86024cdf": { - "address": "0xe0339c80ffde91f3e20494df88d4206d86024cdf", - "symbol": "ELON", - "decimals": 18, - "name": "Dogelon Mars", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0xe0339c80ffde91f3e20494df88d4206d86024cdf.png", - "aggregators": [ - "QuickSwap", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x3c69d114664d48357d820dbdd121a8071eac99bf": { - "address": "0x3c69d114664d48357d820dbdd121a8071eac99bf", - "symbol": "GALAXIS", - "decimals": 18, - "name": "GALAXIS Token", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x3c69d114664d48357d820dbdd121a8071eac99bf.png", - "aggregators": [ - "CoinGecko", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x04429fbb948bbd09327763214b45e505a5293346": { - "address": "0x04429fbb948bbd09327763214b45e505a5293346", - "symbol": "ABR", - "decimals": 18, - "name": "Allbridge", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x04429fbb948bbd09327763214b45e505a5293346.png", - "aggregators": [ - "CoinGecko", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x1796ae0b0fa4862485106a0de9b654efe301d0b2": { - "address": "0x1796ae0b0fa4862485106a0de9b654efe301d0b2", - "symbol": "PMON", - "decimals": 18, - "name": "Protocol Monsters", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x1796ae0b0fa4862485106a0de9b654efe301d0b2.png", - "aggregators": [ - "CoinGecko", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x5e0294af1732498c77f8db015a2d52a76298542b": { - "address": "0x5e0294af1732498c77f8db015a2d52a76298542b", - "symbol": "ORION", - "decimals": 18, - "name": "Orion Money", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x5e0294af1732498c77f8db015a2d52a76298542b.png", - "aggregators": [ - "CoinGecko", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x5d49c278340655b56609fdf8976eb0612af3a0c3": { - "address": "0x5d49c278340655b56609fdf8976eb0612af3a0c3", - "symbol": "WBTC", - "decimals": 8, - "name": "Wrapped BTC (Wormhole)", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x5d49c278340655b56609fdf8976eb0612af3a0c3.png", - "aggregators": [ - "CoinGecko", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0xee9801669c6138e84bd50deb500827b776777d28": { - "address": "0xee9801669c6138e84bd50deb500827b776777d28", - "symbol": "O3", - "decimals": 18, - "name": "O3 Swap", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0xee9801669c6138e84bd50deb500827b776777d28.png", - "aggregators": [ - "CoinGecko", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0xc17c30e98541188614df99239cabd40280810ca3": { - "address": "0xc17c30e98541188614df99239cabd40280810ca3", - "symbol": "RISE", - "decimals": 18, - "name": "EverRise", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0xc17c30e98541188614df99239cabd40280810ca3.png", - "aggregators": [ - "CoinGecko", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x189586b5f6317538ae50c20a976597da38984a24": { - "address": "0x189586b5f6317538ae50c20a976597da38984a24", - "symbol": "PORTX", - "decimals": 18, - "name": "ChainPort", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x189586b5f6317538ae50c20a976597da38984a24.png", - "aggregators": [ - "CoinGecko", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0xe1b3eb06806601828976e491914e3de18b5d6b28": { - "address": "0xe1b3eb06806601828976e491914e3de18b5d6b28", - "symbol": "ZERC", - "decimals": 18, - "name": "zkRace", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0xe1b3eb06806601828976e491914e3de18b5d6b28.png", - "aggregators": [ - "CoinGecko", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x73b29199a8e4c146e893eb95f18dac41738a88c6": { - "address": "0x73b29199a8e4c146e893eb95f18dac41738a88c6", - "symbol": "BAG", - "decimals": 18, - "name": "Bag.win", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x73b29199a8e4c146e893eb95f18dac41738a88c6.png", - "aggregators": [ - "CoinGecko", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x7844f79fc841e4f92d974c417031c76f8578c2d5": { - "address": "0x7844f79fc841e4f92d974c417031c76f8578c2d5", - "symbol": "OPN", - "decimals": 18, - "name": "OPEN Ticketing Ecosystem", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x7844f79fc841e4f92d974c417031c76f8578c2d5.png", - "aggregators": [ - "CoinGecko", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0xb01cf1be9568f09449382a47cd5bf58e2a9d5922": { - "address": "0xb01cf1be9568f09449382a47cd5bf58e2a9d5922", - "symbol": "SPEED", - "decimals": 18, - "name": "Lightspeed", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0xb01cf1be9568f09449382a47cd5bf58e2a9d5922.png", - "aggregators": ["CoinGecko", "Socket", "Rubic", "Squid", "Rango"], - "occurrences": 5 - }, - "0x94025780a1ab58868d9b2dbbb775f44b32e8e6e5": { - "address": "0x94025780a1ab58868d9b2dbbb775f44b32e8e6e5", - "symbol": "BETS", - "decimals": 18, - "name": "BetSwirl", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x94025780a1ab58868d9b2dbbb775f44b32e8e6e5.png", - "aggregators": [ - "CoinGecko", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0xf9d3d8b25b95bcda979025b74fdfa7ac3f380f9f": { - "address": "0xf9d3d8b25b95bcda979025b74fdfa7ac3f380f9f", - "symbol": "CP", - "decimals": 18, - "name": "Cookies Protocol", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0xf9d3d8b25b95bcda979025b74fdfa7ac3f380f9f.png", - "aggregators": [ - "QuickSwap", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x81382e9693de2afc33f69b70a6c12ca9b3a73f47": { - "address": "0x81382e9693de2afc33f69b70a6c12ca9b3a73f47", - "symbol": "DOSE", - "decimals": 18, - "name": "DOSE", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x81382e9693de2afc33f69b70a6c12ca9b3a73f47.png", - "aggregators": [ - "QuickSwap", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x7a7b94f18ef6ad056cda648588181cda84800f94": { - "address": "0x7a7b94f18ef6ad056cda648588181cda84800f94", - "symbol": "FIS", - "decimals": 18, - "name": "StaFi (PoS)", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x7a7b94f18ef6ad056cda648588181cda84800f94.png", - "aggregators": ["QuickSwap", "LiFi", "Socket", "Rubic", "Rango"], - "occurrences": 5 - }, - "0x61f95bd637e3034133335c1baa0148e518d438ad": { - "address": "0x61f95bd637e3034133335c1baa0148e518d438ad", - "symbol": "MHUNT", - "decimals": 18, - "name": "MetaShooter", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x61f95bd637e3034133335c1baa0148e518d438ad.png", - "aggregators": [ - "QuickSwap", - "Rubic", - "Rango", - "Sonarwatch", - "SushiSwap" - ], - "occurrences": 5 - }, - "0x38a536a31ba4d8c1bcca016abbf786ecd25877e8": { - "address": "0x38a536a31ba4d8c1bcca016abbf786ecd25877e8", - "symbol": "MNTL", - "decimals": 6, - "name": "AssetMantle (PoS)", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x38a536a31ba4d8c1bcca016abbf786ecd25877e8.png", - "aggregators": ["QuickSwap", "LiFi", "Socket", "Rubic", "Rango"], - "occurrences": 5 - }, - "0x6286a9e6f7e745a6d884561d88f94542d6715698": { - "address": "0x6286a9e6f7e745a6d884561d88f94542d6715698", - "symbol": "TECH", - "decimals": 18, - "name": "Cryptomeda", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x6286a9e6f7e745a6d884561d88f94542d6715698.png", - "aggregators": [ - "QuickSwap", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x4287f07cbe6954f9f0decd91d0705c926d8d03a4": { - "address": "0x4287f07cbe6954f9f0decd91d0705c926d8d03a4", - "symbol": "TRACE", - "decimals": 18, - "name": "Trace Network Labs", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x4287f07cbe6954f9f0decd91d0705c926d8d03a4.png", - "aggregators": [ - "QuickSwap", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x3c720206bfacb2d16fa3ac0ed87d2048dbc401fc": { - "address": "0x3c720206bfacb2d16fa3ac0ed87d2048dbc401fc", - "symbol": "UCO", - "decimals": 18, - "name": "UCO", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x3c720206bfacb2d16fa3ac0ed87d2048dbc401fc.png", - "aggregators": ["QuickSwap", "LiFi", "Socket", "Rubic", "Rango"], - "occurrences": 5 - }, - "0xffa4d863c96e743a2e1513824ea006b8d0353c57": { - "address": "0xffa4d863c96e743a2e1513824ea006b8d0353c57", - "symbol": "USDD", - "decimals": 18, - "name": "Decentralized USD (PoS)", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0xffa4d863c96e743a2e1513824ea006b8d0353c57.png", - "aggregators": ["QuickSwap", "LiFi", "Socket", "Rubic", "Rango"], - "occurrences": 5 - }, - "0x8497842420cfdbc97896c2353d75d89fc8d5be5d": { - "address": "0x8497842420cfdbc97896c2353d75d89fc8d5be5d", - "symbol": "VERSA", - "decimals": 18, - "name": "VersaGames", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x8497842420cfdbc97896c2353d75d89fc8d5be5d.png", - "aggregators": [ - "QuickSwap", - "LiFi", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x0c9c7712c83b3c70e7c5e11100d33d9401bdf9dd": { - "address": "0x0c9c7712c83b3c70e7c5e11100d33d9401bdf9dd", - "symbol": "WOMBAT", - "decimals": 18, - "name": "Wombat", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x0c9c7712c83b3c70e7c5e11100d33d9401bdf9dd.png", - "aggregators": [ - "QuickSwap", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x7075cab6bcca06613e2d071bd918d1a0241379e2": { - "address": "0x7075cab6bcca06613e2d071bd918d1a0241379e2", - "symbol": "GFARM2", - "decimals": 18, - "name": "Gains Farm v2", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x7075cab6bcca06613e2d071bd918d1a0241379e2.png", - "aggregators": ["1inch", "LiFi", "Rubic", "Rango", "SushiSwap"], - "occurrences": 5 - }, - "0xc1c93d475dc82fe72dbc7074d55f5a734f8ceeae": { - "address": "0xc1c93d475dc82fe72dbc7074d55f5a734f8ceeae", - "symbol": "PGX", - "decimals": 18, - "name": "Pegaxy Stone", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0xc1c93d475dc82fe72dbc7074d55f5a734f8ceeae.png", - "aggregators": ["1inch", "LiFi", "Socket", "Rubic", "Rango"], - "occurrences": 5 - }, - "0xdab625853c2b35d0a9c6bd8e5a097a664ef4ccfb": { - "address": "0xdab625853c2b35d0a9c6bd8e5a097a664ef4ccfb", - "symbol": "EQUAD", - "decimals": 18, - "name": "Quadrant Protocol", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0xdab625853c2b35d0a9c6bd8e5a097a664ef4ccfb.png", - "aggregators": ["1inch", "LiFi", "Socket", "Rubic", "Rango"], - "occurrences": 5 - }, - "0x9c2c5fd7b07e95ee044ddeba0e97a665f142394f": { - "address": "0x9c2c5fd7b07e95ee044ddeba0e97a665f142394f", - "symbol": "1INCH", - "decimals": 18, - "name": "1inch", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x9c2c5fd7b07e95ee044ddeba0e97a665f142394f.png", - "aggregators": ["LiFi", "Socket", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 5 - }, - "0xfdc26cda2d2440d0e83cd1dee8e8be48405806dc": { - "address": "0xfdc26cda2d2440d0e83cd1dee8e8be48405806dc", - "symbol": "BTU", - "decimals": 18, - "name": "BTU Protocol", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0xfdc26cda2d2440d0e83cd1dee8e8be48405806dc.png", - "aggregators": ["LiFi", "Socket", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 5 - }, - "0x9ca6a77c8b38159fd2da9bd25bc3e259c33f5e39": { - "address": "0x9ca6a77c8b38159fd2da9bd25bc3e259c33f5e39", - "symbol": "SPORK", - "decimals": 18, - "name": "SporkDAO", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x9ca6a77c8b38159fd2da9bd25bc3e259c33f5e39.png", - "aggregators": ["LiFi", "Socket", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 5 - }, - "0x323665443cef804a3b5206103304bd4872ea4253": { - "address": "0x323665443cef804a3b5206103304bd4872ea4253", - "symbol": "USDV", - "decimals": 6, - "name": "Verified USD", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x323665443cef804a3b5206103304bd4872ea4253.png", - "aggregators": ["LiFi", "Socket", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 5 - }, - "0x42dbbd5ae373fea2fc320f62d44c058522bb3758": { - "address": "0x42dbbd5ae373fea2fc320f62d44c058522bb3758", - "symbol": "MEM", - "decimals": 18, - "name": "Memecoin", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x42dbbd5ae373fea2fc320f62d44c058522bb3758.png", - "aggregators": ["LiFi", "Socket", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 5 - }, - "0x5647fe4281f8f6f01e84bce775ad4b828a7b8927": { - "address": "0x5647fe4281f8f6f01e84bce775ad4b828a7b8927", - "symbol": "MM", - "decimals": 18, - "name": "Million", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x5647fe4281f8f6f01e84bce775ad4b828a7b8927.png", - "aggregators": ["LiFi", "Socket", "Rubic", "Rango", "SushiSwap"], - "occurrences": 5 - }, - "0x72928d5436ff65e57f72d5566dcd3baedc649a88": { - "address": "0x72928d5436ff65e57f72d5566dcd3baedc649a88", - "symbol": "HDAO", - "decimals": 18, - "name": "humanDAO", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x72928d5436ff65e57f72d5566dcd3baedc649a88.png", - "aggregators": ["LiFi", "Socket", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 5 - }, - "0xe7804d91dfcde7f776c90043e03eaa6df87e6395": { - "address": "0xe7804d91dfcde7f776c90043e03eaa6df87e6395", - "symbol": "DFX", - "decimals": 18, - "name": "DFX Token", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0xe7804d91dfcde7f776c90043e03eaa6df87e6395.png", - "aggregators": ["LiFi", "Socket", "Rubic", "Rango", "SushiSwap"], - "occurrences": 5 - }, - "0x381caf412b45dac0f62fbeec89de306d3eabe384": { - "address": "0x381caf412b45dac0f62fbeec89de306d3eabe384", - "symbol": "VEST", - "decimals": 18, - "name": "DAO Invest", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x381caf412b45dac0f62fbeec89de306d3eabe384.png", - "aggregators": ["LiFi", "Socket", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 5 - }, - "0x211f4e76fcb811ed2b310a232a24b3445d95e3bc": { - "address": "0x211f4e76fcb811ed2b310a232a24b3445d95e3bc", - "symbol": "MATRIX", - "decimals": 18, - "name": "Matrix Labs", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x211f4e76fcb811ed2b310a232a24b3445d95e3bc.png", - "aggregators": ["LiFi", "Socket", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 5 - }, - "0xdc0e17eae3b9651875030244b971fa0223a1764f": { - "address": "0xdc0e17eae3b9651875030244b971fa0223a1764f", - "symbol": "PERI", - "decimals": 18, - "name": "PERI Finance", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0xdc0e17eae3b9651875030244b971fa0223a1764f.png", - "aggregators": ["LiFi", "Socket", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 5 - }, - "0xdbb5da27ffcfebea8799a5832d4607714fc6aba8": { - "address": "0xdbb5da27ffcfebea8799a5832d4607714fc6aba8", - "symbol": "DGEN", - "decimals": 18, - "name": "DGEN", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0xdbb5da27ffcfebea8799a5832d4607714fc6aba8.png", - "aggregators": ["LiFi", "Socket", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 5 - }, - "0x61bdd9c7d4df4bf47a4508c0c8245505f2af5b7b": { - "address": "0x61bdd9c7d4df4bf47a4508c0c8245505f2af5b7b", - "symbol": "AXS", - "decimals": 18, - "name": "Axie Infinity", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x61bdd9c7d4df4bf47a4508c0c8245505f2af5b7b.png", - "aggregators": ["LiFi", "Socket", "Rubic", "Rango", "SushiSwap"], - "occurrences": 5 - }, - "0xd0660cd418a64a1d44e9214ad8e459324d8157f1": { - "address": "0xd0660cd418a64a1d44e9214ad8e459324d8157f1", - "symbol": "WOOFY", - "decimals": 12, - "name": "Woofy", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0xd0660cd418a64a1d44e9214ad8e459324d8157f1.png", - "aggregators": ["LiFi", "Socket", "Rubic", "Rango", "SushiSwap"], - "occurrences": 5 - }, - "0xfd0cbddec28a93bb86b9db4a62258f5ef25fefde": { - "address": "0xfd0cbddec28a93bb86b9db4a62258f5ef25fefde", - "symbol": "BITT", - "decimals": 18, - "name": "BITT", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0xfd0cbddec28a93bb86b9db4a62258f5ef25fefde.png", - "aggregators": ["LiFi", "Socket", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 5 - }, - "0x4af5ff1a60a6ef6c7c8f9c4e304cd9051fca3ec0": { - "address": "0x4af5ff1a60a6ef6c7c8f9c4e304cd9051fca3ec0", - "symbol": "RGP", - "decimals": 18, - "name": "Rigel Protocol", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x4af5ff1a60a6ef6c7c8f9c4e304cd9051fca3ec0.png", - "aggregators": ["LiFi", "Socket", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 5 - }, - "0x89c296be2f904f3e99a6125815b4b78f5388d2dd": { - "address": "0x89c296be2f904f3e99a6125815b4b78f5388d2dd", - "symbol": "RCN", - "decimals": 18, - "name": "RipioCreditNetwork", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x89c296be2f904f3e99a6125815b4b78f5388d2dd.png", - "aggregators": ["LiFi", "Socket", "Rubic", "Rango", "SushiSwap"], - "occurrences": 5 - }, - "0x6bb45ceac714c52342ef73ec663479da35934bf7": { - "address": "0x6bb45ceac714c52342ef73ec663479da35934bf7", - "symbol": "BONE", - "decimals": 18, - "name": "BONE Token", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x6bb45ceac714c52342ef73ec663479da35934bf7.png", - "aggregators": [ - "Socket", - "Rubic", - "Rango", - "Sonarwatch", - "SushiSwap" - ], - "occurrences": 5 - }, - "0xf1815bd50389c46847f0bda824ec8da914045d14": { - "address": "0xf1815bd50389c46847f0bda824ec8da914045d14", - "symbol": "XAUT0", - "decimals": 6, - "name": "Tether Gold", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0xf1815bd50389c46847f0bda824ec8da914045d14.png", - "aggregators": ["CoinGecko", "LiFi", "Rubic", "Rango"], - "occurrences": 4 - }, - "0x3d09f7f5039567564c3655b4814ea4bf63ce9fd3": { - "address": "0x3d09f7f5039567564c3655b4814ea4bf63ce9fd3", - "symbol": "KARMA", - "decimals": 18, - "name": "KARMA", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x3d09f7f5039567564c3655b4814ea4bf63ce9fd3.png", - "aggregators": ["CoinGecko", "LiFi", "Rubic", "Rango"], - "occurrences": 4 - }, - "0xee997788f625809332baabb3110bcf1ba7400824": { - "address": "0xee997788f625809332baabb3110bcf1ba7400824", - "symbol": "FELY", - "decimals": 18, - "name": "FELY", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0xee997788f625809332baabb3110bcf1ba7400824.png", - "aggregators": ["CoinGecko", "Rubic", "Squid", "Rango"], - "occurrences": 4 - }, - "0x68f610f2220a6974eb69963bdaf5a0de0dc9bd8c": { - "address": "0x68f610f2220a6974eb69963bdaf5a0de0dc9bd8c", - "symbol": "SMB", - "decimals": 18, - "name": "SMB Token", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x68f610f2220a6974eb69963bdaf5a0de0dc9bd8c.png", - "aggregators": ["CoinGecko", "LiFi", "Rubic", "Sonarwatch"], - "occurrences": 4 - }, - "0xe313bcb77dba15f39ff0b9ceabe140cedd0953cb": { - "address": "0xe313bcb77dba15f39ff0b9ceabe140cedd0953cb", - "symbol": "JUGNI", - "decimals": 9, - "name": "JUGNI", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0xe313bcb77dba15f39ff0b9ceabe140cedd0953cb.png", - "aggregators": ["CoinGecko", "Rubic", "Squid", "Rango"], - "occurrences": 4 - }, - "0x2d34a748427801e5d3da862bf474e2b28e501624": { - "address": "0x2d34a748427801e5d3da862bf474e2b28e501624", - "symbol": "MULT POOL", - "decimals": 18, - "name": "MULT POOL", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x2d34a748427801e5d3da862bf474e2b28e501624.png", - "aggregators": ["CoinGecko", "LiFi", "Rubic", "Rango"], - "occurrences": 4 - }, - "0xe8d17b127ba8b9899a160d9a07b69bca8e08bfc6": { - "address": "0xe8d17b127ba8b9899a160d9a07b69bca8e08bfc6", - "symbol": "NSDX", - "decimals": 18, - "name": "NASDEX", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0xe8d17b127ba8b9899a160d9a07b69bca8e08bfc6.png", - "aggregators": ["QuickSwap", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0x954aec663b893d81b4c8dbe1a0544491fd63fa77": { - "address": "0x954aec663b893d81b4c8dbe1a0544491fd63fa77", - "symbol": "EDOM", - "decimals": 18, - "name": "EDOM", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x954aec663b893d81b4c8dbe1a0544491fd63fa77.png", - "aggregators": ["CoinGecko", "LiFi", "Rubic", "Rango"], - "occurrences": 4 - }, - "0x5c067c80c00ecd2345b05e83a3e758ef799c40b5": { - "address": "0x5c067c80c00ecd2345b05e83a3e758ef799c40b5", - "symbol": "BRL1", - "decimals": 18, - "name": "BRL1", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x5c067c80c00ecd2345b05e83a3e758ef799c40b5.png", - "aggregators": ["CoinGecko", "Rubic", "Squid", "Rango"], - "occurrences": 4 - }, - "0xff343d97abd18c56894f0eb5302f92ad9226d55d": { - "address": "0xff343d97abd18c56894f0eb5302f92ad9226d55d", - "symbol": "SNC", - "decimals": 18, - "name": "Syncoin", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0xff343d97abd18c56894f0eb5302f92ad9226d55d.png", - "aggregators": ["CoinGecko", "LiFi", "Rubic", "Rango"], - "occurrences": 4 - }, - "0x06737d16ad9c1e41aa44fee2a952b26723b20673": { - "address": "0x06737d16ad9c1e41aa44fee2a952b26723b20673", - "symbol": "GT3", - "decimals": 18, - "name": "GT3", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x06737d16ad9c1e41aa44fee2a952b26723b20673.png", - "aggregators": ["CoinGecko", "LiFi", "Rubic", "Rango"], - "occurrences": 4 - }, - "0x613a489785c95afeb3b404cc41565ccff107b6e0": { - "address": "0x613a489785c95afeb3b404cc41565ccff107b6e0", - "symbol": "RADIO", - "decimals": 18, - "name": "RadioShack Token", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x613a489785c95afeb3b404cc41565ccff107b6e0.png", - "aggregators": ["CoinGecko", "Socket", "Rubic", "Rango"], - "occurrences": 4 - }, - "0x204820b6e6feae805e376d2c6837446186e57981": { - "address": "0x204820b6e6feae805e376d2c6837446186e57981", - "symbol": "ROND", - "decimals": 18, - "name": "ROND", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x204820b6e6feae805e376d2c6837446186e57981.png", - "aggregators": ["QuickSwap", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0x765af38a6e8fdcb1efef8a3dd2213efd3090b00f": { - "address": "0x765af38a6e8fdcb1efef8a3dd2213efd3090b00f", - "symbol": "VDT", - "decimals": 18, - "name": "Vendetta", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x765af38a6e8fdcb1efef8a3dd2213efd3090b00f.png", - "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0x2c72d25530191ebd244eb6325e1892480b0e6e28": { - "address": "0x2c72d25530191ebd244eb6325e1892480b0e6e28", - "symbol": "AIPF", - "decimals": 18, - "name": "AIPF", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x2c72d25530191ebd244eb6325e1892480b0e6e28.png", - "aggregators": ["CoinGecko", "LiFi", "Rubic", "Rango"], - "occurrences": 4 - }, - "0x888883b5f5d21fb10dfeb70e8f9722b9fb0e5e51": { - "address": "0x888883b5f5d21fb10dfeb70e8f9722b9fb0e5e51", - "symbol": "EUROP", - "decimals": 6, - "name": "EUROP", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x888883b5f5d21fb10dfeb70e8f9722b9fb0e5e51.png", - "aggregators": ["CoinGecko", "LiFi", "Rubic", "Rango"], - "occurrences": 4 - }, - "0xd4423795fd904d9b87554940a95fb7016f172773": { - "address": "0xd4423795fd904d9b87554940a95fb7016f172773", - "symbol": "AIN", - "decimals": 18, - "name": "AIN", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0xd4423795fd904d9b87554940a95fb7016f172773.png", - "aggregators": ["CoinGecko", "LiFi", "Rubic", "Rango"], - "occurrences": 4 - }, - "0x9f1e8f87c6321b84bad7dda7dfb86d5115a47605": { - "address": "0x9f1e8f87c6321b84bad7dda7dfb86d5115a47605", - "symbol": "RIZE", - "decimals": 18, - "name": "RIZE", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x9f1e8f87c6321b84bad7dda7dfb86d5115a47605.png", - "aggregators": ["CoinGecko", "LiFi", "Rubic", "Rango"], - "occurrences": 4 - }, - "0xd687759f35bb747a29246a4b9495c8f52c49e00c": { - "address": "0xd687759f35bb747a29246a4b9495c8f52c49e00c", - "symbol": "AUDX", - "decimals": 18, - "name": "AUDX", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0xd687759f35bb747a29246a4b9495c8f52c49e00c.png", - "aggregators": ["CoinGecko", "LiFi", "Rubic", "Rango"], - "occurrences": 4 - }, - "0xd571edb2ef29df10fcd6200fd6d0ed2389983db3": { - "address": "0xd571edb2ef29df10fcd6200fd6d0ed2389983db3", - "symbol": "EURQ", - "decimals": 6, - "name": "EURQ", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0xd571edb2ef29df10fcd6200fd6d0ed2389983db3.png", - "aggregators": ["CoinGecko", "LiFi", "Rubic", "Rango"], - "occurrences": 4 - }, - "0xd1cd49a08aef3af93457aec17c786c2b7f48ecd7": { - "address": "0xd1cd49a08aef3af93457aec17c786c2b7f48ecd7", - "symbol": "SPOL", - "decimals": 18, - "name": "sPOL", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0xd1cd49a08aef3af93457aec17c786c2b7f48ecd7.png", - "aggregators": ["CoinGecko", "Rubic", "Squid", "Rango"], - "occurrences": 4 - }, - "0x4933a85b5b5466fbaf179f72d3de273c287ec2c2": { - "address": "0x4933a85b5b5466fbaf179f72d3de273c287ec2c2", - "symbol": "EURAU", - "decimals": 6, - "name": "EURAU", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x4933a85b5b5466fbaf179f72d3de273c287ec2c2.png", - "aggregators": ["CoinGecko", "LiFi", "Rubic", "Rango"], - "occurrences": 4 - }, - "0x27f6c8289550fce67f6b50bed1f519966afe5287": { - "address": "0x27f6c8289550fce67f6b50bed1f519966afe5287", - "symbol": "TGBP", - "decimals": 18, - "name": "TGBP", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x27f6c8289550fce67f6b50bed1f519966afe5287.png", - "aggregators": ["CoinGecko", "LiFi", "Rubic", "Rango"], - "occurrences": 4 - }, - "0x24c80d7f032bc8d308f10d59e20d5a65b90b7334": { - "address": "0x24c80d7f032bc8d308f10d59e20d5a65b90b7334", - "symbol": "PHL", - "decimals": 18, - "name": "PHILCOIN", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x24c80d7f032bc8d308f10d59e20d5a65b90b7334.png", - "aggregators": ["CoinGecko", "Socket", "Rubic", "Rango"], - "occurrences": 4 - }, - "0xd4dd9e2f021bb459d5a5f6c24c12fe09c5d45553": { - "address": "0xd4dd9e2f021bb459d5a5f6c24c12fe09c5d45553", - "symbol": "ZCHF", - "decimals": 18, - "name": "ZCHF", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0xd4dd9e2f021bb459d5a5f6c24c12fe09c5d45553.png", - "aggregators": ["CoinGecko", "LiFi", "Rubic", "Rango"], - "occurrences": 4 - }, - "0xc7b1807822160a8c5b6c9eaf5c584aad0972deec": { - "address": "0xc7b1807822160a8c5b6c9eaf5c584aad0972deec", - "symbol": "GIV", - "decimals": 18, - "name": "GIV", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0xc7b1807822160a8c5b6c9eaf5c584aad0972deec.png", - "aggregators": ["CoinGecko", "Rubic", "Squid", "Rango"], - "occurrences": 4 - }, - "0xcccde52ef8f7d74d73ee033f7daccfafe29edd45": { - "address": "0xcccde52ef8f7d74d73ee033f7daccfafe29edd45", - "symbol": "OPUL", - "decimals": 18, - "name": "OPUL", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0xcccde52ef8f7d74d73ee033f7daccfafe29edd45.png", - "aggregators": ["CoinGecko", "Socket", "Rubic", "Rango"], - "occurrences": 4 - }, - "0x52828daa48c1a9a06f37500882b42daf0be04c3b": { - "address": "0x52828daa48c1a9a06f37500882b42daf0be04c3b", - "symbol": "CNGN", - "decimals": 6, - "name": "CNGN", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x52828daa48c1a9a06f37500882b42daf0be04c3b.png", - "aggregators": ["CoinGecko", "LiFi", "Rubic", "Rango"], - "occurrences": 4 - }, - "0x48cbc913de09317df2365e6827df50da083701d5": { - "address": "0x48cbc913de09317df2365e6827df50da083701d5", - "symbol": "FOUR", - "decimals": 18, - "name": "FOUR", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x48cbc913de09317df2365e6827df50da083701d5.png", - "aggregators": ["CoinGecko", "Socket", "Rubic", "Sonarwatch"], - "occurrences": 4 - }, - "0xd1a5f2a049343fc4d5f8d478f734eba51b22375e": { - "address": "0xd1a5f2a049343fc4d5f8d478f734eba51b22375e", - "symbol": "KEYFI", - "decimals": 18, - "name": "KEYFI", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0xd1a5f2a049343fc4d5f8d478f734eba51b22375e.png", - "aggregators": ["CoinGecko", "Socket", "Rubic", "Rango"], - "occurrences": 4 - }, - "0xe6469ba6d2fd6130788e0ea9c0a0515900563b59": { - "address": "0xe6469ba6d2fd6130788e0ea9c0a0515900563b59", - "symbol": "UST", - "decimals": 6, - "name": "TerraUSD (Wormhole)", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0xe6469ba6d2fd6130788e0ea9c0a0515900563b59.png", - "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0x15b7c0c907e4c6b9adaaaabc300c08991d6cea05": { - "address": "0x15b7c0c907e4c6b9adaaaabc300c08991d6cea05", - "symbol": "GEL", - "decimals": 18, - "name": "GEL", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x15b7c0c907e4c6b9adaaaabc300c08991d6cea05.png", - "aggregators": ["CoinGecko", "Socket", "Rubic", "Rango"], - "occurrences": 4 - }, - "0x64445f0aecc51e94ad52d8ac56b7190e764e561a": { - "address": "0x64445f0aecc51e94ad52d8ac56b7190e764e561a", - "symbol": "WFRAX", - "decimals": 18, - "name": "WFRAX", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x64445f0aecc51e94ad52d8ac56b7190e764e561a.png", - "aggregators": ["CoinGecko", "Socket", "Rubic", "Rango"], - "occurrences": 4 - }, - "0x3e12b9d6a4d12cd9b4a6d613872d0eb32f68b380": { - "address": "0x3e12b9d6a4d12cd9b4a6d613872d0eb32f68b380", - "symbol": "FLOWER", - "decimals": 18, - "name": "Flower", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x3e12b9d6a4d12cd9b4a6d613872d0eb32f68b380.png", - "aggregators": ["CoinGecko", "LiFi", "Rubic", "Squid"], - "occurrences": 4 - }, - "0xb291996477504506bf5f583102b5b5ea5d1e40e0": { - "address": "0xb291996477504506bf5f583102b5b5ea5d1e40e0", - "symbol": "USDQ", - "decimals": 6, - "name": "USDQ", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0xb291996477504506bf5f583102b5b5ea5d1e40e0.png", - "aggregators": ["CoinGecko", "LiFi", "Rubic", "Rango"], - "occurrences": 4 - }, - "0xc4420347a4791832bb7b16bf070d5c017d9fabc4": { - "address": "0xc4420347a4791832bb7b16bf070d5c017d9fabc4", - "symbol": "STABUL", - "decimals": 18, - "name": "Stabull Finance", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0xc4420347a4791832bb7b16bf070d5c017d9fabc4.png", - "aggregators": ["CoinGecko", "LiFi", "Rubic", "Sonarwatch"], - "occurrences": 4 - }, - "0x2f4efd3aa42e15a1ec6114547151b63ee5d39958": { - "address": "0x2f4efd3aa42e15a1ec6114547151b63ee5d39958", - "symbol": "COW", - "decimals": 18, - "name": "COW", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x2f4efd3aa42e15a1ec6114547151b63ee5d39958.png", - "aggregators": ["CoinGecko", "LiFi", "Rubic", "Rango"], - "occurrences": 4 - }, - "0x0b3eaead748facdb9d943d3407011f16eb17d0cf": { - "address": "0x0b3eaead748facdb9d943d3407011f16eb17d0cf", - "symbol": "PMX", - "decimals": 18, - "name": "Primex Finance", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x0b3eaead748facdb9d943d3407011f16eb17d0cf.png", - "aggregators": ["CoinGecko", "Socket", "Rubic", "Sonarwatch"], - "occurrences": 4 - }, - "0xdab529f40e671a1d4bf91361c21bf9f0c9712ab7": { - "address": "0xdab529f40e671a1d4bf91361c21bf9f0c9712ab7", - "symbol": "BUSD", - "decimals": 18, - "name": "(PoS) Binance USD", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0xdab529f40e671a1d4bf91361c21bf9f0c9712ab7.png", - "aggregators": ["OpenSwap", "LiFi", "Socket", "Rubic"], - "occurrences": 4 - }, - "0x011734f6ed20e8d011d85cf7894814b897420acf": { - "address": "0x011734f6ed20e8d011d85cf7894814b897420acf", - "symbol": "ACRE", - "decimals": 18, - "name": "Arable Protocol", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x011734f6ed20e8d011d85cf7894814b897420acf.png", - "aggregators": ["QuickSwap", "Socket", "Rubic", "Rango"], - "occurrences": 4 - }, - "0x91c89a94567980f0e9723b487b0bed586ee96aa7": { - "address": "0x91c89a94567980f0e9723b487b0bed586ee96aa7", - "symbol": "BICO", - "decimals": 18, - "name": "Biconomy Token", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x91c89a94567980f0e9723b487b0bed586ee96aa7.png", - "aggregators": ["QuickSwap", "LiFi", "Socket", "Rubic"], - "occurrences": 4 - }, - "0xb35fcbcf1fd489fce02ee146599e893fdcdc60e6": { - "address": "0xb35fcbcf1fd489fce02ee146599e893fdcdc60e6", - "symbol": "DERC", - "decimals": 18, - "name": "DERC", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0xb35fcbcf1fd489fce02ee146599e893fdcdc60e6.png", - "aggregators": ["QuickSwap", "1inch", "Rubic", "Rango"], - "occurrences": 4 - }, - "0x44a6e0be76e1d9620a7f76588e4509fe4fa8e8c8": { - "address": "0x44a6e0be76e1d9620a7f76588e4509fe4fa8e8c8", - "symbol": "FOMO", - "decimals": 18, - "name": "Aavegotchi FOMO", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x44a6e0be76e1d9620a7f76588e4509fe4fa8e8c8.png", - "aggregators": ["QuickSwap", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0x346404079b3792a6c548b072b9c4dddfb92948d5": { - "address": "0x346404079b3792a6c548b072b9c4dddfb92948d5", - "symbol": "IUX", - "decimals": 18, - "name": "GeniuX", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x346404079b3792a6c548b072b9c4dddfb92948d5.png", - "aggregators": ["QuickSwap", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0x42e5e06ef5b90fe15f853f59299fc96259209c5c": { - "address": "0x42e5e06ef5b90fe15f853f59299fc96259209c5c", - "symbol": "KEK", - "decimals": 18, - "name": "Aavegotchi KEK", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x42e5e06ef5b90fe15f853f59299fc96259209c5c.png", - "aggregators": ["QuickSwap", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0x77d97db5615dfe8a2d16b38eaa3f8f34524a0a74": { - "address": "0x77d97db5615dfe8a2d16b38eaa3f8f34524a0a74", - "symbol": "LFI", - "decimals": 18, - "name": "Lunafi", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x77d97db5615dfe8a2d16b38eaa3f8f34524a0a74.png", - "aggregators": ["QuickSwap", "Socket", "Rubic", "Rango"], - "occurrences": 4 - }, - "0xaa7dbd1598251f856c12f63557a4c4397c253cea": { - "address": "0xaa7dbd1598251f856c12f63557a4c4397c253cea", - "symbol": "MCO2", - "decimals": 18, - "name": "Moss Carbon Credit (PoS)", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0xaa7dbd1598251f856c12f63557a4c4397c253cea.png", - "aggregators": ["QuickSwap", "LiFi", "Socket", "Rubic"], - "occurrences": 4 - }, - "0x7dff46370e9ea5f0bad3c4e29711ad50062ea7a4": { - "address": "0x7dff46370e9ea5f0bad3c4e29711ad50062ea7a4", - "symbol": "SOL", - "decimals": 18, - "name": "SOL", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x7dff46370e9ea5f0bad3c4e29711ad50062ea7a4.png", - "aggregators": ["QuickSwap", "LiFi", "Rubic", "Rango"], - "occurrences": 4 - }, - "0xd3b71117e6c1558c1553305b44988cd944e97300": { - "address": "0xd3b71117e6c1558c1553305b44988cd944e97300", - "symbol": "YEL", - "decimals": 18, - "name": "YEL Token", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0xd3b71117e6c1558c1553305b44988cd944e97300.png", - "aggregators": ["1inch", "Socket", "Rubic", "Rango"], - "occurrences": 4 - }, - "0x428360b02c1269bc1c79fbc399ad31d58c1e8fda": { - "address": "0x428360b02c1269bc1c79fbc399ad31d58c1e8fda", - "symbol": "DEFIT", - "decimals": 18, - "name": "Digital Fitness", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x428360b02c1269bc1c79fbc399ad31d58c1e8fda.png", - "aggregators": ["1inch", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0xf33687811f3ad0cd6b48dd4b39f9f977bd7165a2": { - "address": "0xf33687811f3ad0cd6b48dd4b39f9f977bd7165a2", - "symbol": "TRUMATIC", - "decimals": 18, - "name": "TruFin Staked MATIC", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0xf33687811f3ad0cd6b48dd4b39f9f977bd7165a2.png", - "aggregators": ["LiFi", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0xadac33f543267c4d59a8c299cf804c303bc3e4ac": { - "address": "0xadac33f543267c4d59a8c299cf804c303bc3e4ac", - "symbol": "MIMO", - "decimals": 18, - "name": "MIMO Parallel Governance Token (PoS)", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0xadac33f543267c4d59a8c299cf804c303bc3e4ac.png", - "aggregators": ["LiFi", "Socket", "Rubic", "Rango"], - "occurrences": 4 - }, - "0x55555555a687343c6ce28c8e1f6641dc71659fad": { - "address": "0x55555555a687343c6ce28c8e1f6641dc71659fad", - "symbol": "XY", - "decimals": 18, - "name": "XY", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x55555555a687343c6ce28c8e1f6641dc71659fad.png", - "aggregators": ["LiFi", "Socket", "Rubic", "Rango"], - "occurrences": 4 - }, - "0x84a431bd2c958414b2e316cedd9f85993ace5000": { - "address": "0x84a431bd2c958414b2e316cedd9f85993ace5000", - "symbol": "L7L", - "decimals": 18, - "name": "LE7EL", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x84a431bd2c958414b2e316cedd9f85993ace5000.png", - "aggregators": ["LiFi", "Socket", "Rubic", "Rango"], - "occurrences": 4 - }, - "0xbfa35599c7aebb0dace9b5aa3ca5f2a79624d8eb": { - "address": "0xbfa35599c7aebb0dace9b5aa3ca5f2a79624d8eb", - "symbol": "RETRO", - "decimals": 18, - "name": "Retro Finance", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0xbfa35599c7aebb0dace9b5aa3ca5f2a79624d8eb.png", - "aggregators": ["LiFi", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0xb763f1177e9b2fb66fbe0d50372e3e2575c043e5": { - "address": "0xb763f1177e9b2fb66fbe0d50372e3e2575c043e5", - "symbol": "KNOT", - "decimals": 18, - "name": "Karmaverse", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0xb763f1177e9b2fb66fbe0d50372e3e2575c043e5.png", - "aggregators": ["LiFi", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0xb0f61c597bbcc29f3f38396b01f9c0f0c2e8bff0": { - "address": "0xb0f61c597bbcc29f3f38396b01f9c0f0c2e8bff0", - "symbol": "ELAND", - "decimals": 18, - "name": "Etherland", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0xb0f61c597bbcc29f3f38396b01f9c0f0c2e8bff0.png", - "aggregators": ["LiFi", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0xce829a89d4a55a63418bcc43f00145adef0edb8e": { - "address": "0xce829a89d4a55a63418bcc43f00145adef0edb8e", - "symbol": "RENDOGE", - "decimals": 8, - "name": "Ren DOGE", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0xce829a89d4a55a63418bcc43f00145adef0edb8e.png", - "aggregators": ["LiFi", "Socket", "Rango", "SushiSwap"], - "occurrences": 4 - }, - "0xf9cea445c2ac1668f50caa2c2924f93606a4a37d": { - "address": "0xf9cea445c2ac1668f50caa2c2924f93606a4a37d", - "symbol": "RIA", - "decimals": 18, - "name": "Calvaria: DoE", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0xf9cea445c2ac1668f50caa2c2924f93606a4a37d.png", - "aggregators": ["LiFi", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0x1a763170b96f23f15576d0fa0b2619d1254c437d": { - "address": "0x1a763170b96f23f15576d0fa0b2619d1254c437d", - "symbol": "AX", - "decimals": 18, - "name": "AurusX", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x1a763170b96f23f15576d0fa0b2619d1254c437d.png", - "aggregators": ["LiFi", "Socket", "Rubic", "Sonarwatch"], - "occurrences": 4 - }, - "0x698a8b4ba48c2ee8d468a3a530c83ef422d54857": { - "address": "0x698a8b4ba48c2ee8d468a3a530c83ef422d54857", - "symbol": "SIO", - "decimals": 18, - "name": "SAINO", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x698a8b4ba48c2ee8d468a3a530c83ef422d54857.png", - "aggregators": ["LiFi", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0x64afdf9e28946419e325d801fb3053d8b8ffdc23": { - "address": "0x64afdf9e28946419e325d801fb3053d8b8ffdc23", - "symbol": "MEEB", - "decimals": 18, - "name": "Meeb Master", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x64afdf9e28946419e325d801fb3053d8b8ffdc23.png", - "aggregators": ["LiFi", "Socket", "Rubic", "Rango"], - "occurrences": 4 - }, - "0xa1388e73c51b37383b1ab9dce8317ef5a0349cc5": { - "address": "0xa1388e73c51b37383b1ab9dce8317ef5a0349cc5", - "symbol": "VERSE", - "decimals": 18, - "name": "Shibaverse", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0xa1388e73c51b37383b1ab9dce8317ef5a0349cc5.png", - "aggregators": ["Socket", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0xe8377a076adabb3f9838afb77bee96eac101ffb1": { - "address": "0xe8377a076adabb3f9838afb77bee96eac101ffb1", - "symbol": "MSU", - "decimals": 18, - "name": "MetaSoccer Universe", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0xe8377a076adabb3f9838afb77bee96eac101ffb1.png", - "aggregators": ["Socket", "Rubic", "Rango", "SushiSwap"], - "occurrences": 4 - }, - "0xe3f2b1b2229c0333ad17d03f179b87500e7c5e01": { - "address": "0xe3f2b1b2229c0333ad17d03f179b87500e7c5e01", - "symbol": "AEG", - "decimals": 18, - "name": "Aether Games", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0xe3f2b1b2229c0333ad17d03f179b87500e7c5e01.png", - "aggregators": ["Socket", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0xd6a5ab46ead26f49b03bbb1f9eb1ad5c1767974a": { - "address": "0xd6a5ab46ead26f49b03bbb1f9eb1ad5c1767974a", - "symbol": "EMON", - "decimals": 18, - "name": "Ethermon", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0xd6a5ab46ead26f49b03bbb1f9eb1ad5c1767974a.png", - "aggregators": ["Socket", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0x8f36cc333f55b09bb71091409a3d7ade399e3b1c": { - "address": "0x8f36cc333f55b09bb71091409a3d7ade399e3b1c", - "symbol": "CHER", - "decimals": 18, - "name": "Cherry Network", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x8f36cc333f55b09bb71091409a3d7ade399e3b1c.png", - "aggregators": ["Socket", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0x92868a5255c628da08f550a858a802f5351c5223": { - "address": "0x92868a5255c628da08f550a858a802f5351c5223", - "symbol": "BRIDGE", - "decimals": 18, - "name": "Cross-Chain Bridge", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x92868a5255c628da08f550a858a802f5351c5223.png", - "aggregators": ["Socket", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0x20c750c57c3bc5145af4b7a33d4fb66a8e79fe05": { - "address": "0x20c750c57c3bc5145af4b7a33d4fb66a8e79fe05", - "symbol": "ORB", - "decimals": 18, - "name": "Orbcity", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x20c750c57c3bc5145af4b7a33d4fb66a8e79fe05.png", - "aggregators": ["Socket", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0x11a819beb0aa3327e39f52f90d65cc9bca499f33": { - "address": "0x11a819beb0aa3327e39f52f90d65cc9bca499f33", - "symbol": "SCA", - "decimals": 18, - "name": "Scaleswap", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x11a819beb0aa3327e39f52f90d65cc9bca499f33.png", - "aggregators": ["Socket", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0x5c15cdb9d43824dca67fceb1201e5abebe0b2cbc": { - "address": "0x5c15cdb9d43824dca67fceb1201e5abebe0b2cbc", - "symbol": "FARM", - "decimals": 6, - "name": "CryptoFarmers", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x5c15cdb9d43824dca67fceb1201e5abebe0b2cbc.png", - "aggregators": ["Socket", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0x8ad3d3e6b1b7b65138bd508e48330b544539b2c3": { - "address": "0x8ad3d3e6b1b7b65138bd508e48330b544539b2c3", - "symbol": "KAI", - "decimals": 18, - "name": "Kinetix Finance Token", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x8ad3d3e6b1b7b65138bd508e48330b544539b2c3.png", - "aggregators": ["Socket", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0x32515ffdc3a84cfbf9ad4db14ef8f0a535c7afd6": { - "address": "0x32515ffdc3a84cfbf9ad4db14ef8f0a535c7afd6", - "symbol": "BAKED", - "decimals": 18, - "name": "Baked", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x32515ffdc3a84cfbf9ad4db14ef8f0a535c7afd6.png", - "aggregators": ["Socket", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0x12a34a6759c871c4c1e8a0a42cfc97e4d7aaf68d": { - "address": "0x12a34a6759c871c4c1e8a0a42cfc97e4d7aaf68d", - "symbol": "TUT", - "decimals": 18, - "name": "Tutellus Token", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x12a34a6759c871c4c1e8a0a42cfc97e4d7aaf68d.png", - "aggregators": ["Rubic", "Rango", "Sonarwatch", "SushiSwap"], - "occurrences": 4 - }, - "0xd86b5923f3ad7b585ed81b448170ae026c65ae9a": { - "address": "0xd86b5923f3ad7b585ed81b448170ae026c65ae9a", - "symbol": "IRON", - "decimals": 18, - "name": "IRON Stablecoin", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0xd86b5923f3ad7b585ed81b448170ae026c65ae9a.png", - "aggregators": ["Rubic", "Rango", "Sonarwatch", "SushiSwap"], - "occurrences": 4 - }, - "0x22e3f02f86bc8ea0d73718a2ae8851854e62adc5": { - "address": "0x22e3f02f86bc8ea0d73718a2ae8851854e62adc5", - "symbol": "FLAME", - "decimals": 18, - "name": "FLAME", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x22e3f02f86bc8ea0d73718a2ae8851854e62adc5.png", - "aggregators": ["QuickSwap", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x5ceebb0947d58fabde2fc026ffe4b33ccfe1ba8b": { - "address": "0x5ceebb0947d58fabde2fc026ffe4b33ccfe1ba8b", - "symbol": "4INT", - "decimals": 9, - "name": "4INT", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x5ceebb0947d58fabde2fc026ffe4b33ccfe1ba8b.png", - "aggregators": ["QuickSwap", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x4b27cd6e6a5e83d236ead376d256fe2f9e9f0d2e": { - "address": "0x4b27cd6e6a5e83d236ead376d256fe2f9e9f0d2e", - "symbol": "BLID", - "decimals": 18, - "name": "Bolide", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x4b27cd6e6a5e83d236ead376d256fe2f9e9f0d2e.png", - "aggregators": ["QuickSwap", "Socket", "Rubic"], - "occurrences": 3 - }, - "0xdda40cdfe4a0090f42ff49f264a831402adb801a": { - "address": "0xdda40cdfe4a0090f42ff49f264a831402adb801a", - "symbol": "DOGIRA", - "decimals": 9, - "name": "Dogira", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0xdda40cdfe4a0090f42ff49f264a831402adb801a.png", - "aggregators": ["QuickSwap", "Rubic", "Rango"], - "occurrences": 3 - }, - "0xc2a45fe7d40bcac8369371b08419ddafd3131b4a": { - "address": "0xc2a45fe7d40bcac8369371b08419ddafd3131b4a", - "symbol": "LCD", - "decimals": 18, - "name": "Lucidao", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0xc2a45fe7d40bcac8369371b08419ddafd3131b4a.png", - "aggregators": ["QuickSwap", "Rubic", "Rango"], - "occurrences": 3 - }, - "0xd7c8469c7ec40f853da5f651de81b45aed47e5ab": { - "address": "0xd7c8469c7ec40f853da5f651de81b45aed47e5ab", - "symbol": "POT", - "decimals": 18, - "name": "PotCoin.com POT", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0xd7c8469c7ec40f853da5f651de81b45aed47e5ab.png", - "aggregators": ["Socket", "Rubic", "Rango"], - "occurrences": 3 - }, - "0xb6a5ae40e79891e4deadad06c8a7ca47396df21c": { - "address": "0xb6a5ae40e79891e4deadad06c8a7ca47396df21c", - "symbol": "CBY", - "decimals": 18, - "name": "Carbify", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0xb6a5ae40e79891e4deadad06c8a7ca47396df21c.png", - "aggregators": ["Rubic", "Rango", "Sonarwatch"], - "occurrences": 3 - }, - "0xb3886b3aaa6087b3d185daeb89ac113d195b5eb9": { - "address": "0xb3886b3aaa6087b3d185daeb89ac113d195b5eb9", - "symbol": "ROBO", - "decimals": 18, - "name": "RoboHero", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0xb3886b3aaa6087b3d185daeb89ac113d195b5eb9.png", - "aggregators": ["Rubic", "Rango", "Sonarwatch"], - "occurrences": 3 - }, - "0x34667ed7c36cbbbf2d5d5c5c8d6eb76a094edb9f": { - "address": "0x34667ed7c36cbbbf2d5d5c5c8d6eb76a094edb9f", - "symbol": "$GENE", - "decimals": 18, - "name": "GenomesDAO GENE", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x34667ed7c36cbbbf2d5d5c5c8d6eb76a094edb9f.png", - "aggregators": ["Rubic", "Rango", "Sonarwatch"], - "occurrences": 3 - }, - "0x1d3c629ca5c1d0ab3bdf74600e81b4145615df8e": { - "address": "0x1d3c629ca5c1d0ab3bdf74600e81b4145615df8e", - "symbol": "PRNT", - "decimals": 18, - "name": "Preprints.io", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x1d3c629ca5c1d0ab3bdf74600e81b4145615df8e.png", - "aggregators": ["Rubic", "Rango", "Sonarwatch"], - "occurrences": 3 - }, - "0x2ad2934d5bfb7912304754479dd1f096d5c807da": { - "address": "0x2ad2934d5bfb7912304754479dd1f096d5c807da", - "symbol": "AGC", - "decimals": 18, - "name": "Argocoin", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x2ad2934d5bfb7912304754479dd1f096d5c807da.png", - "aggregators": ["Rubic", "Squid", "Rango"], - "occurrences": 3 - }, - "0xe0b52e49357fd4daf2c15e02058dce6bc0057db4": { - "address": "0xe0b52e49357fd4daf2c15e02058dce6bc0057db4", - "symbol": "AGEUR", - "decimals": 18, - "name": "agEUR", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0xe0b52e49357fd4daf2c15e02058dce6bc0057db4.png", - "aggregators": [ - "QuickSwap", - "1inch", - "LiFi", - "Rubic", - "Rango", - "Sonarwatch", - "SushiSwap" - ], - "occurrences": 7 - }, - "0x43c73b90e0c2a355784dcf0da12f477729b31e77": { - "address": "0x43c73b90e0c2a355784dcf0da12f477729b31e77", - "symbol": "SOIL", - "decimals": 18, - "name": "Soil", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x43c73b90e0c2a355784dcf0da12f477729b31e77.png", - "aggregators": [ - "CoinGecko", - "LiFi", - "Socket", - "Rubic", - "Squid", - "Rango", - "Sonarwatch" - ], - "occurrences": 7 - }, - "0x8e677ca17065ed74675bc27bcabadb7eef10a292": { - "address": "0x8e677ca17065ed74675bc27bcabadb7eef10a292", - "symbol": "RAIN", - "decimals": 18, - "name": "Rain Coin", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x8e677ca17065ed74675bc27bcabadb7eef10a292.png", - "aggregators": [ - "CoinGecko", - "LiFi", - "Socket", - "Rubic", - "Squid", - "Rango", - "Sonarwatch" - ], - "occurrences": 7 - }, - "0x4b4327db1600b8b1440163f667e199cef35385f5": { - "address": "0x4b4327db1600b8b1440163f667e199cef35385f5", - "symbol": "FXCBETH", - "decimals": 18, - "name": "Coinbase Wrapped Staked ETH (FXERC20)", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x4b4327db1600b8b1440163f667e199cef35385f5.png", - "aggregators": [ - "QuickSwap", - "LiFi", - "Socket", - "Rubic", - "Rango", - "Sonarwatch", - "SushiSwap" - ], - "occurrences": 7 - }, - "0x16eccfdbb4ee1a85a33f3a9b21175cd7ae753db4": { - "address": "0x16eccfdbb4ee1a85a33f3a9b21175cd7ae753db4", - "symbol": "ROUTE", - "decimals": 18, - "name": "Router Protocol", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x16eccfdbb4ee1a85a33f3a9b21175cd7ae753db4.png", - "aggregators": [ - "CoinGecko", - "1inch", - "LiFi", - "Rubic", - "Rango", - "Sonarwatch", - "SushiSwap" - ], - "occurrences": 7 - }, - "0x27f485b62c4a7e635f561a87560adf5090239e93": { - "address": "0x27f485b62c4a7e635f561a87560adf5090239e93", - "symbol": "DFX", - "decimals": 18, - "name": "DFX Finance", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x27f485b62c4a7e635f561a87560adf5090239e93.png", - "aggregators": [ - "CoinGecko", - "1inch", - "LiFi", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 7 - }, - "0x66dc5a08091d1968e08c16aa5b27bac8398b02be": { - "address": "0x66dc5a08091d1968e08c16aa5b27bac8398b02be", - "symbol": "CVC", - "decimals": 8, - "name": "Civic", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x66dc5a08091d1968e08c16aa5b27bac8398b02be.png", - "aggregators": [ - "CoinGecko", - "LiFi", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 6 - }, - "0x5ffd62d3c3ee2e81c00a7b9079fb248e7df024a8": { - "address": "0x5ffd62d3c3ee2e81c00a7b9079fb248e7df024a8", - "symbol": "GNO", - "decimals": 18, - "name": "Gnosis Token", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x5ffd62d3c3ee2e81c00a7b9079fb248e7df024a8.png", - "aggregators": [ - "UniswapLabs", - "LiFi", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 6 - }, - "0x883abe4168705d2e5da925d28538b7a6aa9d8419": { - "address": "0x883abe4168705d2e5da925d28538b7a6aa9d8419", - "symbol": "BALL", - "decimals": 18, - "name": "Ball", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x883abe4168705d2e5da925d28538b7a6aa9d8419.png", - "aggregators": [ - "CoinGecko", - "LiFi", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 6 - }, - "0xd7bb095a60d7666d4a6f236423b47ddd6ae6cfa7": { - "address": "0xd7bb095a60d7666d4a6f236423b47ddd6ae6cfa7", - "symbol": "AXL-WSTETH", - "decimals": 18, - "name": "Bridged Wrapped stETH (Axelar)", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0xd7bb095a60d7666d4a6f236423b47ddd6ae6cfa7.png", - "aggregators": [ - "CoinGecko", - "LiFi", - "Rubic", - "Squid", - "Rango", - "Sonarwatch" - ], - "occurrences": 6 - }, - "0x04f177fcacf6fb4d2f95d41d7d3fee8e565ca1d0": { - "address": "0x04f177fcacf6fb4d2f95d41d7d3fee8e565ca1d0", - "symbol": "DMT", - "decimals": 18, - "name": "DragonMaster", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x04f177fcacf6fb4d2f95d41d7d3fee8e565ca1d0.png", - "aggregators": [ - "CoinGecko", - "LiFi", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 6 - }, - "0x49e6a20f1bbdfeec2a8222e052000bbb14ee6007": { - "address": "0x49e6a20f1bbdfeec2a8222e052000bbb14ee6007", - "symbol": "TNGBL", - "decimals": 18, - "name": "Tangible", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x49e6a20f1bbdfeec2a8222e052000bbb14ee6007.png", - "aggregators": [ - "CoinGecko", - "LiFi", - "Rubic", - "Rango", - "Sonarwatch", - "SushiSwap" - ], - "occurrences": 6 - }, - "0xf2b028ed5977f136982fdfa429814cf19f09693f": { - "address": "0xf2b028ed5977f136982fdfa429814cf19f09693f", - "symbol": "UNCN", - "decimals": 18, - "name": "Unseen", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0xf2b028ed5977f136982fdfa429814cf19f09693f.png", - "aggregators": [ - "CoinGecko", - "LiFi", - "Rubic", - "Squid", - "Rango", - "Sonarwatch" - ], - "occurrences": 6 - }, - "0xd2e57e7019a8faea8b3e4a3738ee5b269975008a": { - "address": "0xd2e57e7019a8faea8b3e4a3738ee5b269975008a", - "symbol": "THAT", - "decimals": 18, - "name": "THAT", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0xd2e57e7019a8faea8b3e4a3738ee5b269975008a.png", - "aggregators": [ - "CoinGecko", - "1inch", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 6 - }, - "0x09cad96bc28f55e9253cfb9a84a3a1ab79061e54": { - "address": "0x09cad96bc28f55e9253cfb9a84a3a1ab79061e54", - "symbol": "OSHI", - "decimals": 18, - "name": "OSHI3", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x09cad96bc28f55e9253cfb9a84a3a1ab79061e54.png", - "aggregators": [ - "CoinGecko", - "LiFi", - "Rubic", - "Squid", - "Rango", - "Sonarwatch" - ], - "occurrences": 6 - }, - "0x7cc15fef543f205bf21018f038f591c6bada941c": { - "address": "0x7cc15fef543f205bf21018f038f591c6bada941c", - "symbol": "POLYCUB", - "decimals": 18, - "name": "PolyCub", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x7cc15fef543f205bf21018f038f591c6bada941c.png", - "aggregators": [ - "CoinGecko", - "LiFi", - "Rubic", - "Rango", - "Sonarwatch", - "SushiSwap" - ], - "occurrences": 6 - }, - "0xa9f37d84c856fda3812ad0519dad44fa0a3fe207": { - "address": "0xa9f37d84c856fda3812ad0519dad44fa0a3fe207", - "symbol": "MLN", - "decimals": 11, - "name": "Enzyme", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0xa9f37d84c856fda3812ad0519dad44fa0a3fe207.png", - "aggregators": [ - "CoinGecko", - "LiFi", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 6 - }, - "0xc03e6ad83de7c58c9166ff08d66b960d78e64105": { - "address": "0xc03e6ad83de7c58c9166ff08d66b960d78e64105", - "symbol": "LAND", - "decimals": 18, - "name": "Landshare Token", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0xc03e6ad83de7c58c9166ff08d66b960d78e64105.png", - "aggregators": [ - "CoinGecko", - "LiFi", - "Rubic", - "Rango", - "Sonarwatch", - "SushiSwap" - ], - "occurrences": 6 - }, - "0xf328b73b6c685831f238c30a23fc19140cb4d8fc": { - "address": "0xf328b73b6c685831f238c30a23fc19140cb4d8fc", - "symbol": "ACX", - "decimals": 18, - "name": "Across Protocol Token (PoS)", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0xf328b73b6c685831f238c30a23fc19140cb4d8fc.png", - "aggregators": [ - "CoinGecko", - "LiFi", - "Rubic", - "Rango", - "Sonarwatch", - "SushiSwap" - ], - "occurrences": 6 - }, - "0xb75bbd79985a8092b05224f62d7fed25924b075d": { - "address": "0xb75bbd79985a8092b05224f62d7fed25924b075d", - "symbol": "DAM", - "decimals": 18, - "name": "Datamine", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0xb75bbd79985a8092b05224f62d7fed25924b075d.png", - "aggregators": [ - "CoinGecko", - "LiFi", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 6 - }, - "0x4985e0b13554fb521840e893574d3848c10fcc6f": { - "address": "0x4985e0b13554fb521840e893574d3848c10fcc6f", - "symbol": "NCT", - "decimals": 18, - "name": "PolySwarm", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x4985e0b13554fb521840e893574d3848c10fcc6f.png", - "aggregators": [ - "CoinGecko", - "LiFi", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 6 - }, - "0x6e7f6a2404ff6b4363b0a5085dbf7b78d46e04d7": { - "address": "0x6e7f6a2404ff6b4363b0a5085dbf7b78d46e04d7", - "symbol": "BRTR", - "decimals": 8, - "name": "Barter", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x6e7f6a2404ff6b4363b0a5085dbf7b78d46e04d7.png", - "aggregators": [ - "CoinGecko", - "LiFi", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 6 - }, - "0x57f5e098cad7a3d1eed53991d4d66c45c9af7812": { - "address": "0x57f5e098cad7a3d1eed53991d4d66c45c9af7812", - "symbol": "WUSDM", - "decimals": 18, - "name": "Wrapped USDM", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x57f5e098cad7a3d1eed53991d4d66c45c9af7812.png", - "aggregators": [ - "CoinGecko", - "LiFi", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 6 - }, - "0xe3322702bedaaed36cddab233360b939775ae5f1": { - "address": "0xe3322702bedaaed36cddab233360b939775ae5f1", - "symbol": "TRB", - "decimals": 18, - "name": "Tellor Tributes", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0xe3322702bedaaed36cddab233360b939775ae5f1.png", - "aggregators": [ - "CoinGecko", - "LiFi", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 6 - }, - "0x7205705771547cf79201111b4bd8aaf29467b9ec": { - "address": "0x7205705771547cf79201111b4bd8aaf29467b9ec", - "symbol": "RPL", - "decimals": 18, - "name": "Rocket Pool", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x7205705771547cf79201111b4bd8aaf29467b9ec.png", - "aggregators": [ - "CoinGecko", - "LiFi", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 6 - }, - "0x4987a49c253c38b3259092e9aac10ec0c7ef7542": { - "address": "0x4987a49c253c38b3259092e9aac10ec0c7ef7542", - "symbol": "DUST", - "decimals": 9, - "name": "Dust Protocol", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x4987a49c253c38b3259092e9aac10ec0c7ef7542.png", - "aggregators": [ - "CoinGecko", - "LiFi", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 6 - }, - "0x6899face15c14348e1759371049ab64a3a06bfa6": { - "address": "0x6899face15c14348e1759371049ab64a3a06bfa6", - "symbol": "SDEX", - "decimals": 18, - "name": "SmarDex", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x6899face15c14348e1759371049ab64a3a06bfa6.png", - "aggregators": [ - "CoinGecko", - "LiFi", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 6 - }, - "0xfbd8a3b908e764dbcd51e27992464b4432a1132b": { - "address": "0xfbd8a3b908e764dbcd51e27992464b4432a1132b", - "symbol": "INDEX", - "decimals": 18, - "name": "Index Cooperative", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0xfbd8a3b908e764dbcd51e27992464b4432a1132b.png", - "aggregators": [ - "CoinGecko", - "LiFi", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 6 - }, - "0xbc0bea8e634ec838a2a45f8a43e7e16cd2a8ba99": { - "address": "0xbc0bea8e634ec838a2a45f8a43e7e16cd2a8ba99", - "symbol": "GRG", - "decimals": 18, - "name": "RigoBlock", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0xbc0bea8e634ec838a2a45f8a43e7e16cd2a8ba99.png", - "aggregators": [ - "CoinGecko", - "LiFi", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 6 - }, - "0x72d6066f486bd0052eefb9114b66ae40e0a6031a": { - "address": "0x72d6066f486bd0052eefb9114b66ae40e0a6031a", - "symbol": "WRX", - "decimals": 8, - "name": "WazirX", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x72d6066f486bd0052eefb9114b66ae40e0a6031a.png", - "aggregators": [ - "CoinGecko", - "LiFi", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 6 - }, - "0xecf8f2fa183b1c4d2a269bf98a54fce86c812d3e": { - "address": "0xecf8f2fa183b1c4d2a269bf98a54fce86c812d3e", - "symbol": "CFI", - "decimals": 18, - "name": "CyberFi", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0xecf8f2fa183b1c4d2a269bf98a54fce86c812d3e.png", - "aggregators": [ - "CoinGecko", - "LiFi", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 6 - }, - "0x127984b5e6d5c59f81dacc9f1c8b3bdc8494572e": { - "address": "0x127984b5e6d5c59f81dacc9f1c8b3bdc8494572e", - "symbol": "PPDEX", - "decimals": 18, - "name": "Pepedex", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x127984b5e6d5c59f81dacc9f1c8b3bdc8494572e.png", - "aggregators": [ - "CoinGecko", - "LiFi", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 6 - }, - "0x6109cb051c5c64093830121ed76272ab04bbdd7c": { - "address": "0x6109cb051c5c64093830121ed76272ab04bbdd7c", - "symbol": "PROS", - "decimals": 18, - "name": "Prosper [OLD]", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x6109cb051c5c64093830121ed76272ab04bbdd7c.png", - "aggregators": [ - "CoinGecko", - "LiFi", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 6 - }, - "0x2fe8733dcb25bfbba79292294347415417510067": { - "address": "0x2fe8733dcb25bfbba79292294347415417510067", - "symbol": "XED", - "decimals": 18, - "name": "Exeedme", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x2fe8733dcb25bfbba79292294347415417510067.png", - "aggregators": [ - "CoinGecko", - "LiFi", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 6 - }, - "0x44acd96620b708162af4a90524f29a6839675533": { - "address": "0x44acd96620b708162af4a90524f29a6839675533", - "symbol": "TCGC", - "decimals": 18, - "name": "TCG Verse", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x44acd96620b708162af4a90524f29a6839675533.png", - "aggregators": [ - "CoinGecko", - "LiFi", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 6 - }, - "0x11cd72f7a4b699c67f225ca8abb20bc9f8db90c7": { - "address": "0x11cd72f7a4b699c67f225ca8abb20bc9f8db90c7", - "symbol": "OSAK", - "decimals": 18, - "name": "Osaka Protocol", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x11cd72f7a4b699c67f225ca8abb20bc9f8db90c7.png", - "aggregators": [ - "CoinGecko", - "Socket", - "Rubic", - "Rango", - "Sonarwatch", - "SushiSwap" - ], - "occurrences": 6 - }, - "0xe3ab61371ecc88534c522922a026f2296116c109": { - "address": "0xe3ab61371ecc88534c522922a026f2296116c109", - "symbol": "MOMA", - "decimals": 18, - "name": "Mochi Market", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0xe3ab61371ecc88534c522922a026f2296116c109.png", - "aggregators": [ - "CoinGecko", - "LiFi", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 6 - }, - "0x4cebdbcb286101a17d3ea1f7fe7bbded2b2053dd": { - "address": "0x4cebdbcb286101a17d3ea1f7fe7bbded2b2053dd", - "symbol": "YLD", - "decimals": 18, - "name": "Yield App", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x4cebdbcb286101a17d3ea1f7fe7bbded2b2053dd.png", - "aggregators": [ - "CoinGecko", - "LiFi", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 6 - }, - "0xa91fe5a535967f52d3abebdffb3b306d964ace13": { - "address": "0xa91fe5a535967f52d3abebdffb3b306d964ace13", - "symbol": "QUARTZ", - "decimals": 18, - "name": "Sandclock", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0xa91fe5a535967f52d3abebdffb3b306d964ace13.png", - "aggregators": [ - "CoinGecko", - "LiFi", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 6 - }, - "0xbd1463f02f61676d53fd183c2b19282bff93d099": { - "address": "0xbd1463f02f61676d53fd183c2b19282bff93d099", - "symbol": "JCHF", - "decimals": 18, - "name": "Jarvis Synthetic Swiss Franc", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0xbd1463f02f61676d53fd183c2b19282bff93d099.png", - "aggregators": [ - "CoinGecko", - "LiFi", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 6 - }, - "0x11602a402281974a70c2b4824d58ebede967e2be": { - "address": "0x11602a402281974a70c2b4824d58ebede967e2be", - "symbol": "BYN", - "decimals": 18, - "name": "NBX", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x11602a402281974a70c2b4824d58ebede967e2be.png", - "aggregators": [ - "CoinGecko", - "LiFi", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 6 - }, - "0x72b9f88e822cf08b031c2206612b025a82fb303c": { - "address": "0x72b9f88e822cf08b031c2206612b025a82fb303c", - "symbol": "DBD", - "decimals": 18, - "name": "Day By Day", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x72b9f88e822cf08b031c2206612b025a82fb303c.png", - "aggregators": [ - "CoinGecko", - "LiFi", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 6 - }, - "0xeb94a5e2c643403e29fa1d7197e7e0708b09ad84": { - "address": "0xeb94a5e2c643403e29fa1d7197e7e0708b09ad84", - "symbol": "ONX", - "decimals": 18, - "name": "OnX Finance", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0xeb94a5e2c643403e29fa1d7197e7e0708b09ad84.png", - "aggregators": [ - "CoinGecko", - "LiFi", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 6 - }, - "0xa3ed22eee92a3872709823a6970069e12a4540eb": { - "address": "0xa3ed22eee92a3872709823a6970069e12a4540eb", - "symbol": "FRONT", - "decimals": 18, - "name": "Frontier", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0xa3ed22eee92a3872709823a6970069e12a4540eb.png", - "aggregators": [ - "CoinGecko", - "LiFi", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 6 - }, - "0xe8f157e041df3b28151b667364e9c90789da7923": { - "address": "0xe8f157e041df3b28151b667364e9c90789da7923", - "symbol": "OPIUM", - "decimals": 18, - "name": "Opium", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0xe8f157e041df3b28151b667364e9c90789da7923.png", - "aggregators": [ - "CoinGecko", - "LiFi", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 6 - }, - "0x9fb9a33956351cf4fa040f65a13b835a3c8764e3": { - "address": "0x9fb9a33956351cf4fa040f65a13b835a3c8764e3", - "symbol": "MULTI", - "decimals": 18, - "name": "Multichain", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x9fb9a33956351cf4fa040f65a13b835a3c8764e3.png", - "aggregators": [ - "CoinGecko", - "LiFi", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 6 - }, - "0x4fafad147c8cd0e52f83830484d164e960bdc6c3": { - "address": "0x4fafad147c8cd0e52f83830484d164e960bdc6c3", - "symbol": "QWLA", - "decimals": 18, - "name": "Qawalla", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x4fafad147c8cd0e52f83830484d164e960bdc6c3.png", - "aggregators": [ - "CoinGecko", - "LiFi", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 6 - }, - "0xc3f56d567e7663e8932e65d85ae4be7eb5575ca7": { - "address": "0xc3f56d567e7663e8932e65d85ae4be7eb5575ca7", - "symbol": "FTRB", - "decimals": 18, - "name": "Faith Tribe", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0xc3f56d567e7663e8932e65d85ae4be7eb5575ca7.png", - "aggregators": [ - "CoinGecko", - "LiFi", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 6 - }, - "0xeeda694439c6fb56cbaa011cc849650b7273285b": { - "address": "0xeeda694439c6fb56cbaa011cc849650b7273285b", - "symbol": "BED", - "decimals": 18, - "name": "Bankless BED Index", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0xeeda694439c6fb56cbaa011cc849650b7273285b.png", - "aggregators": [ - "CoinGecko", - "LiFi", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 6 - }, - "0x38f9bf9dce51833ec7f03c9dc218197999999999": { - "address": "0x38f9bf9dce51833ec7f03c9dc218197999999999", - "symbol": "NYA", - "decimals": 18, - "name": "Nya", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x38f9bf9dce51833ec7f03c9dc218197999999999.png", - "aggregators": [ - "CoinGecko", - "Socket", - "Rubic", - "Squid", - "Rango", - "Sonarwatch" - ], - "occurrences": 6 - }, - "0x8bb30e0e67b11b978a5040144c410e1ccddcba30": { - "address": "0x8bb30e0e67b11b978a5040144c410e1ccddcba30", - "symbol": "ZCN", - "decimals": 10, - "name": "Zus", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x8bb30e0e67b11b978a5040144c410e1ccddcba30.png", - "aggregators": [ - "CoinGecko", - "LiFi", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 6 - }, - "0xceed2671d8634e3ee65000edbbee66139b132fbf": { - "address": "0xceed2671d8634e3ee65000edbbee66139b132fbf", - "symbol": "AXLUSDT", - "decimals": 6, - "name": "Bridged Tether (Axelar)", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0xceed2671d8634e3ee65000edbbee66139b132fbf.png", - "aggregators": [ - "CoinGecko", - "LiFi", - "Rubic", - "Squid", - "Rango", - "Sonarwatch" - ], - "occurrences": 6 - }, - "0x7f792db54b0e580cdc755178443f0430cf799aca": { - "address": "0x7f792db54b0e580cdc755178443f0430cf799aca", - "symbol": "VOLT", - "decimals": 9, - "name": "Volt Inu", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x7f792db54b0e580cdc755178443f0430cf799aca.png", - "aggregators": [ - "CoinGecko", - "Socket", - "Rubic", - "Squid", - "Rango", - "Sonarwatch" - ], - "occurrences": 6 - }, - "0x276c9cbaa4bdf57d7109a41e67bd09699536fa3d": { - "address": "0x276c9cbaa4bdf57d7109a41e67bd09699536fa3d", - "symbol": "CUBE", - "decimals": 8, - "name": "Somnium Space CUBEs", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x276c9cbaa4bdf57d7109a41e67bd09699536fa3d.png", - "aggregators": [ - "CoinGecko", - "LiFi", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 6 - }, - "0xbbbbbbbbb7949dcc7d1539c91b81a5bf09e37bdb": { - "address": "0xbbbbbbbbb7949dcc7d1539c91b81a5bf09e37bdb", - "symbol": "CAW", - "decimals": 18, - "name": "crow with knife", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0xbbbbbbbbb7949dcc7d1539c91b81a5bf09e37bdb.png", - "aggregators": [ - "CoinGecko", - "1inch", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 6 - }, - "0x91c5a5488c0decde1eacd8a4f10e0942fb925067": { - "address": "0x91c5a5488c0decde1eacd8a4f10e0942fb925067", - "symbol": "AUDT", - "decimals": 17, - "name": "Auditchain", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x91c5a5488c0decde1eacd8a4f10e0942fb925067.png", - "aggregators": [ - "CoinGecko", - "LiFi", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 6 - }, - "0x0621d647cecbfb64b79e44302c1933cb4f27054d": { - "address": "0x0621d647cecbfb64b79e44302c1933cb4f27054d", - "symbol": "AMP", - "decimals": 18, - "name": "Amp Token (PoS)", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x0621d647cecbfb64b79e44302c1933cb4f27054d.png", - "aggregators": ["UniswapLabs", "LiFi", "Socket", "Rubic", "Rango"], - "occurrences": 5 - }, - "0x3066818837c5e6ed6601bd5a91b0762877a6b731": { - "address": "0x3066818837c5e6ed6601bd5a91b0762877a6b731", - "symbol": "UMA", - "decimals": 18, - "name": "UMA Voting Token", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x3066818837c5e6ed6601bd5a91b0762877a6b731.png", - "aggregators": [ - "UniswapLabs", - "Socket", - "Rubic", - "Rango", - "SushiSwap" - ], - "occurrences": 5 - }, - "0x5559edb74751a0ede9dea4dc23aee72cca6be3d5": { - "address": "0x5559edb74751a0ede9dea4dc23aee72cca6be3d5", - "symbol": "ZRX", - "decimals": 18, - "name": "0x Protocol Token", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x5559edb74751a0ede9dea4dc23aee72cca6be3d5.png", - "aggregators": [ - "OpenSwap", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x3ce1327867077b551ae9a6987bf10c9fd08edce1": { - "address": "0x3ce1327867077b551ae9a6987bf10c9fd08edce1", - "symbol": "SWCH", - "decimals": 18, - "name": "SWCH", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x3ce1327867077b551ae9a6987bf10c9fd08edce1.png", - "aggregators": ["CoinGecko", "1inch", "LiFi", "Rubic", "Rango"], - "occurrences": 5 - }, - "0x0052074d3eb1429f39e5ea529b54a650c21f5aa4": { - "address": "0x0052074d3eb1429f39e5ea529b54a650c21f5aa4", - "symbol": "RTK", - "decimals": 18, - "name": "RetaFi", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x0052074d3eb1429f39e5ea529b54a650c21f5aa4.png", - "aggregators": [ - "CoinGecko", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0xdd9ba3b2571bea0854beb0508ce10fed0eca7e3e": { - "address": "0xdd9ba3b2571bea0854beb0508ce10fed0eca7e3e", - "symbol": "EDAT", - "decimals": 18, - "name": "EnviDa", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0xdd9ba3b2571bea0854beb0508ce10fed0eca7e3e.png", - "aggregators": [ - "CoinGecko", - "LiFi", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0xd9a1070f832cc02ff9d839500eef6e8c64983726": { - "address": "0xd9a1070f832cc02ff9d839500eef6e8c64983726", - "symbol": "BAT", - "decimals": 18, - "name": "Batic", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0xd9a1070f832cc02ff9d839500eef6e8c64983726.png", - "aggregators": [ - "CoinGecko", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x7aefff599570dec2f3dbbc2ace3cb1f8206749eb": { - "address": "0x7aefff599570dec2f3dbbc2ace3cb1f8206749eb", - "symbol": "MOON", - "decimals": 18, - "name": "Moonflow", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x7aefff599570dec2f3dbbc2ace3cb1f8206749eb.png", - "aggregators": ["CoinGecko", "Socket", "Rubic", "Squid", "Rango"], - "occurrences": 5 - }, - "0x839f1a22a59eaaf26c85958712ab32f80fea23d9": { - "address": "0x839f1a22a59eaaf26c85958712ab32f80fea23d9", - "symbol": "AXN", - "decimals": 18, - "name": "Axion", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x839f1a22a59eaaf26c85958712ab32f80fea23d9.png", - "aggregators": [ - "CoinGecko", - "Rubic", - "Rango", - "Sonarwatch", - "SushiSwap" - ], - "occurrences": 5 - }, - "0x4a81f8796e0c6ad4877a51c86693b0de8093f2ef": { - "address": "0x4a81f8796e0c6ad4877a51c86693b0de8093f2ef", - "symbol": "ICE", - "decimals": 18, - "name": "Iron Finance", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x4a81f8796e0c6ad4877a51c86693b0de8093f2ef.png", - "aggregators": [ - "CoinGecko", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x5d066d022ede10efa2717ed3d79f22f949f8c175": { - "address": "0x5d066d022ede10efa2717ed3d79f22f949f8c175", - "symbol": "CASH", - "decimals": 18, - "name": "Stabl.fi CASH", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x5d066d022ede10efa2717ed3d79f22f949f8c175.png", - "aggregators": [ - "CoinGecko", - "LiFi", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0xbf7970d56a150cd0b60bd08388a4a75a27777777": { - "address": "0xbf7970d56a150cd0b60bd08388a4a75a27777777", - "symbol": "BET", - "decimals": 18, - "name": "Betfin token", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0xbf7970d56a150cd0b60bd08388a4a75a27777777.png", - "aggregators": [ - "CoinGecko", - "Rubic", - "Squid", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x01d35cbc2070a3b76693ce2b6364eae24eb88591": { - "address": "0x01d35cbc2070a3b76693ce2b6364eae24eb88591", - "symbol": "PGEN", - "decimals": 18, - "name": "Polygen", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x01d35cbc2070a3b76693ce2b6364eae24eb88591.png", - "aggregators": [ - "CoinGecko", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0xffa188493c15dfaf2c206c97d8633377847b6a52": { - "address": "0xffa188493c15dfaf2c206c97d8633377847b6a52", - "symbol": "WEFI", - "decimals": 18, - "name": "Wefi", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0xffa188493c15dfaf2c206c97d8633377847b6a52.png", - "aggregators": [ - "CoinGecko", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0xbc5b59ea1b6f8da8258615ee38d40e999ec5d74f": { - "address": "0xbc5b59ea1b6f8da8258615ee38d40e999ec5d74f", - "symbol": "PAW", - "decimals": 18, - "name": "Paw V2", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0xbc5b59ea1b6f8da8258615ee38d40e999ec5d74f.png", - "aggregators": [ - "CoinGecko", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0xd28b3fd350a14f0b1d14633e3d14db7b80406391": { - "address": "0xd28b3fd350a14f0b1d14633e3d14db7b80406391", - "symbol": "TRUMP", - "decimals": 18, - "name": "Meme TrumpCoin", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0xd28b3fd350a14f0b1d14633e3d14db7b80406391.png", - "aggregators": [ - "CoinGecko", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x57211299bc356319ba5ca36873eb06896173f8bc": { - "address": "0x57211299bc356319ba5ca36873eb06896173f8bc", - "symbol": "SUT", - "decimals": 18, - "name": "Super Useless Token", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x57211299bc356319ba5ca36873eb06896173f8bc.png", - "aggregators": [ - "CoinGecko", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0xbbcb0356bb9e6b3faa5cbf9e5f36185d53403ac9": { - "address": "0xbbcb0356bb9e6b3faa5cbf9e5f36185d53403ac9", - "symbol": "BCOIN", - "decimals": 18, - "name": "Backed Coinbase Global", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0xbbcb0356bb9e6b3faa5cbf9e5f36185d53403ac9.png", - "aggregators": [ - "CoinGecko", - "LiFi", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0xe7a24ef0c5e95ffb0f6684b813a78f2a3ad7d171": { - "address": "0xe7a24ef0c5e95ffb0f6684b813a78f2a3ad7d171", - "symbol": "AM3CRV", - "decimals": 18, - "name": "Curve.fi amDAI/amUSDC/amUSDT", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0xe7a24ef0c5e95ffb0f6684b813a78f2a3ad7d171.png", - "aggregators": [ - "CoinGecko", - "LiFi", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x2d66953fc2eb650f0fd992dbe1e71d743a4e9fee": { - "address": "0x2d66953fc2eb650f0fd992dbe1e71d743a4e9fee", - "symbol": "NOTES", - "decimals": 9, - "name": "Backstage Pass Notes", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x2d66953fc2eb650f0fd992dbe1e71d743a4e9fee.png", - "aggregators": [ - "CoinGecko", - "Rubic", - "Squid", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0xcfe2cf35d2bdde84967e67d00ad74237e234ce59": { - "address": "0xcfe2cf35d2bdde84967e67d00ad74237e234ce59", - "symbol": "PUP", - "decimals": 18, - "name": "PolyPup", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0xcfe2cf35d2bdde84967e67d00ad74237e234ce59.png", - "aggregators": [ - "CoinGecko", - "LiFi", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x162539172b53e9a93b7d98fb6c41682de558a320": { - "address": "0x162539172b53e9a93b7d98fb6c41682de558a320", - "symbol": "GONE", - "decimals": 18, - "name": "Gone", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x162539172b53e9a93b7d98fb6c41682de558a320.png", - "aggregators": [ - "CoinGecko", - "Rubic", - "Squid", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0xb2c63830d4478cb331142fac075a39671a5541dc": { - "address": "0xb2c63830d4478cb331142fac075a39671a5541dc", - "symbol": "BCOIN", - "decimals": 18, - "name": "Bomb Crypto (POL)", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0xb2c63830d4478cb331142fac075a39671a5541dc.png", - "aggregators": [ - "CoinGecko", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x0566c506477cd2d8df4e0123512dbc344bd9d111": { - "address": "0x0566c506477cd2d8df4e0123512dbc344bd9d111", - "symbol": "MLC", - "decimals": 18, - "name": "My Lovely Coin", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x0566c506477cd2d8df4e0123512dbc344bd9d111.png", - "aggregators": [ - "CoinGecko", - "Rubic", - "Squid", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0xd14d1e501b2b52d6134db1ad0857aa91f9bfe2dd": { - "address": "0xd14d1e501b2b52d6134db1ad0857aa91f9bfe2dd", - "symbol": "SWAVE", - "decimals": 18, - "name": "shuts Wave", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0xd14d1e501b2b52d6134db1ad0857aa91f9bfe2dd.png", - "aggregators": [ - "CoinGecko", - "LiFi", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x6a8ec2d9bfbdd20a7f5a4e89d640f7e7ceba4499": { - "address": "0x6a8ec2d9bfbdd20a7f5a4e89d640f7e7ceba4499", - "symbol": "MSQ", - "decimals": 18, - "name": "MSquare Global", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x6a8ec2d9bfbdd20a7f5a4e89d640f7e7ceba4499.png", - "aggregators": [ - "CoinGecko", - "Rubic", - "Squid", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x708383ae0e80e75377d664e4d6344404dede119a": { - "address": "0x708383ae0e80e75377d664e4d6344404dede119a", - "symbol": "EMT", - "decimals": 18, - "name": "EarthMeta", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x708383ae0e80e75377d664e4d6344404dede119a.png", - "aggregators": [ - "CoinGecko", - "Rubic", - "Squid", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x2ab0e9e4ee70fff1fb9d67031e44f6410170d00e": { - "address": "0x2ab0e9e4ee70fff1fb9d67031e44f6410170d00e", - "symbol": "MXEN", - "decimals": 18, - "name": "Xen Crypto (MATIC)", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x2ab0e9e4ee70fff1fb9d67031e44f6410170d00e.png", - "aggregators": [ - "CoinGecko", - "Rubic", - "Squid", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x27ab6e82f3458edbc0703db2756391b899ce6324": { - "address": "0x27ab6e82f3458edbc0703db2756391b899ce6324", - "symbol": "RNT", - "decimals": 18, - "name": "Reental", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x27ab6e82f3458edbc0703db2756391b899ce6324.png", - "aggregators": [ - "CoinGecko", - "Rubic", - "Squid", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x61bf130d973d59c69d3227f1668d534d83119860": { - "address": "0x61bf130d973d59c69d3227f1668d534d83119860", - "symbol": "TRKX", - "decimals": 18, - "name": "Trakx", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x61bf130d973d59c69d3227f1668d534d83119860.png", - "aggregators": [ - "CoinGecko", - "Rubic", - "Squid", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0xbed0b9240bdbcc8e33f66d2ca650a5ef60a5bab0": { - "address": "0xbed0b9240bdbcc8e33f66d2ca650a5ef60a5bab0", - "symbol": "MAX", - "decimals": 18, - "name": "Matr1x", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0xbed0b9240bdbcc8e33f66d2ca650a5ef60a5bab0.png", - "aggregators": [ - "CoinGecko", - "LiFi", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x01b317bc5ed573faa112ef64dd029f407cecb155": { - "address": "0x01b317bc5ed573faa112ef64dd029f407cecb155", - "symbol": "IONX", - "decimals": 18, - "name": "Charged Particles", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x01b317bc5ed573faa112ef64dd029f407cecb155.png", - "aggregators": [ - "CoinGecko", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x444444444444c1a66f394025ac839a535246fcc8": { - "address": "0x444444444444c1a66f394025ac839a535246fcc8", - "symbol": "GENI", - "decimals": 9, - "name": "Genius", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x444444444444c1a66f394025ac839a535246fcc8.png", - "aggregators": [ - "CoinGecko", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x4a506181f07da5ddfda4ca4c2fa4c67001db94b4": { - "address": "0x4a506181f07da5ddfda4ca4c2fa4c67001db94b4", - "symbol": "DYL", - "decimals": 18, - "name": "Dyl", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x4a506181f07da5ddfda4ca4c2fa4c67001db94b4.png", - "aggregators": [ - "CoinGecko", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0xba11c5effa33c4d6f8f593cfa394241cfe925811": { - "address": "0xba11c5effa33c4d6f8f593cfa394241cfe925811", - "symbol": "OUSG", - "decimals": 18, - "name": "OUSG", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0xba11c5effa33c4d6f8f593cfa394241cfe925811.png", - "aggregators": [ - "CoinGecko", - "LiFi", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x1280830f690d0e65195b3c61b028244c3a49f26d": { - "address": "0x1280830f690d0e65195b3c61b028244c3a49f26d", - "symbol": "AXLETH", - "decimals": 18, - "name": "Axelar Wrapped Ether", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x1280830f690d0e65195b3c61b028244c3a49f26d.png", - "aggregators": [ - "CoinGecko", - "LiFi", - "Rubic", - "Squid", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x554cd6bdd03214b10aafa3e0d4d42de0c5d2937b": { - "address": "0x554cd6bdd03214b10aafa3e0d4d42de0c5d2937b", - "symbol": "IDRT", - "decimals": 6, - "name": "Rupiah Token", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x554cd6bdd03214b10aafa3e0d4d42de0c5d2937b.png", - "aggregators": [ - "CoinGecko", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0xb092e1bf50f518b3ebf7ed26a40015183ae36ac2": { - "address": "0xb092e1bf50f518b3ebf7ed26a40015183ae36ac2", - "symbol": "TAROT", - "decimals": 18, - "name": "Tarot", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0xb092e1bf50f518b3ebf7ed26a40015183ae36ac2.png", - "aggregators": [ - "CoinGecko", - "LiFi", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x1e2c4fb7ede391d116e6b41cd0608260e8801d59": { - "address": "0x1e2c4fb7ede391d116e6b41cd0608260e8801d59", - "symbol": "BCSPX", - "decimals": 18, - "name": "Backed CSPX Core S&P 500", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x1e2c4fb7ede391d116e6b41cd0608260e8801d59.png", - "aggregators": [ - "CoinGecko", - "LiFi", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0xcb64cdeb45def1c513fd890e7e76a865bae46060": { - "address": "0xcb64cdeb45def1c513fd890e7e76a865bae46060", - "symbol": "FAKT", - "decimals": 18, - "name": "Medifakt", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0xcb64cdeb45def1c513fd890e7e76a865bae46060.png", - "aggregators": [ - "CoinGecko", - "LiFi", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x3558887f15b5b0074dc4167761de14a6dfcb676e": { - "address": "0x3558887f15b5b0074dc4167761de14a6dfcb676e", - "symbol": "NETVR", - "decimals": 18, - "name": "Netvrk", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x3558887f15b5b0074dc4167761de14a6dfcb676e.png", - "aggregators": [ - "CoinGecko", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x7bebd226154e865954a87650faefa8f485d36081": { - "address": "0x7bebd226154e865954a87650faefa8f485d36081", - "symbol": "ZIG", - "decimals": 18, - "name": "Zignaly", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x7bebd226154e865954a87650faefa8f485d36081.png", - "aggregators": [ - "CoinGecko", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x644192291cc835a93d6330b24ea5f5fedd0eef9e": { - "address": "0x644192291cc835a93d6330b24ea5f5fedd0eef9e", - "symbol": "NXRA", - "decimals": 18, - "name": "Nexera", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x644192291cc835a93d6330b24ea5f5fedd0eef9e.png", - "aggregators": [ - "CoinGecko", - "LiFi", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x2f123cf3f37ce3328cc9b5b8415f9ec5109b45e7": { - "address": "0x2f123cf3f37ce3328cc9b5b8415f9ec5109b45e7", - "symbol": "BC3M", - "decimals": 18, - "name": "Backed GOVIES 0-6 months EURO", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x2f123cf3f37ce3328cc9b5b8415f9ec5109b45e7.png", - "aggregators": [ - "CoinGecko", - "LiFi", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x4b85a666dec7c959e88b97814e46113601b07e57": { - "address": "0x4b85a666dec7c959e88b97814e46113601b07e57", - "symbol": "GOC", - "decimals": 18, - "name": "GoCrypto", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x4b85a666dec7c959e88b97814e46113601b07e57.png", - "aggregators": [ - "CoinGecko", - "LiFi", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x4ec203dd0699fac6adaf483cdd2519bc05d2c573": { - "address": "0x4ec203dd0699fac6adaf483cdd2519bc05d2c573", - "symbol": "CBK", - "decimals": 18, - "name": "CBK", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x4ec203dd0699fac6adaf483cdd2519bc05d2c573.png", - "aggregators": ["CoinGecko", "LiFi", "Socket", "Rubic", "Rango"], - "occurrences": 5 - }, - "0x03cf5d93ca7c70ce0a21a09f4d70779d2c66b25a": { - "address": "0x03cf5d93ca7c70ce0a21a09f4d70779d2c66b25a", - "symbol": "JMPT", - "decimals": 18, - "name": "JumpToken", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x03cf5d93ca7c70ce0a21a09f4d70779d2c66b25a.png", - "aggregators": [ - "CoinGecko", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0xc4bb7277a74678f053259cb1f96140347efbfd46": { - "address": "0xc4bb7277a74678f053259cb1f96140347efbfd46", - "symbol": "LUCHOW", - "decimals": 18, - "name": "LunaChow", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0xc4bb7277a74678f053259cb1f96140347efbfd46.png", - "aggregators": [ - "CoinGecko", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0xd5fa77a860fea9cff31da91bbf9e0faea9538290": { - "address": "0xd5fa77a860fea9cff31da91bbf9e0faea9538290", - "symbol": "COLLAR", - "decimals": 18, - "name": "Dog Collar", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0xd5fa77a860fea9cff31da91bbf9e0faea9538290.png", - "aggregators": [ - "CoinGecko", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x6c3b2f402cd7d22ae2c319b9d2f16f57927a4a17": { - "address": "0x6c3b2f402cd7d22ae2c319b9d2f16f57927a4a17", - "symbol": "KRW", - "decimals": 18, - "name": "KROWN", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x6c3b2f402cd7d22ae2c319b9d2f16f57927a4a17.png", - "aggregators": [ - "CoinGecko", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0xd99bafe5031cc8b345cb2e8c80135991f12d7130": { - "address": "0xd99bafe5031cc8b345cb2e8c80135991f12d7130", - "symbol": "FRM", - "decimals": 18, - "name": "Ferrum Network", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0xd99bafe5031cc8b345cb2e8c80135991f12d7130.png", - "aggregators": [ - "CoinGecko", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x72a5a58f79ffc2102227b92faeba93b169a3a3f1": { - "address": "0x72a5a58f79ffc2102227b92faeba93b169a3a3f1", - "symbol": "FVT", - "decimals": 18, - "name": "Finance Vote", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x72a5a58f79ffc2102227b92faeba93b169a3a3f1.png", - "aggregators": [ - "CoinGecko", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0xd3ac016b1b8c80eeadde4d186a9138c9324e4189": { - "address": "0xd3ac016b1b8c80eeadde4d186a9138c9324e4189", - "symbol": "OK", - "decimals": 18, - "name": "Okcash", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0xd3ac016b1b8c80eeadde4d186a9138c9324e4189.png", - "aggregators": [ - "CoinGecko", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x306fd3e7b169aa4ee19412323e1a5995b8c1a1f4": { - "address": "0x306fd3e7b169aa4ee19412323e1a5995b8c1a1f4", - "symbol": "FTW", - "decimals": 18, - "name": "Black Agnus", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x306fd3e7b169aa4ee19412323e1a5995b8c1a1f4.png", - "aggregators": [ - "CoinGecko", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x08158a6b5d4018340387d1a302f882e98a8bc5b4": { - "address": "0x08158a6b5d4018340387d1a302f882e98a8bc5b4", - "symbol": "PPAY", - "decimals": 18, - "name": "Plasma Finance", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x08158a6b5d4018340387d1a302f882e98a8bc5b4.png", - "aggregators": [ - "CoinGecko", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0xfed16c746cb5bfed009730f9e3e6a673006105c7": { - "address": "0xfed16c746cb5bfed009730f9e3e6a673006105c7", - "symbol": "DRC", - "decimals": 0, - "name": "Digital Reserve Currency", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0xfed16c746cb5bfed009730f9e3e6a673006105c7.png", - "aggregators": [ - "CoinGecko", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0xf521d590fb1e0b432fd0e020cdbd6c6397d652c2": { - "address": "0xf521d590fb1e0b432fd0e020cdbd6c6397d652c2", - "symbol": "PAR", - "decimals": 18, - "name": "Parachute", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0xf521d590fb1e0b432fd0e020cdbd6c6397d652c2.png", - "aggregators": [ - "CoinGecko", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0xfe457497a2a71bce1eb93ea9e6a685057dd93dee": { - "address": "0xfe457497a2a71bce1eb93ea9e6a685057dd93dee", - "symbol": "BNSD", - "decimals": 18, - "name": "BNSD Finance", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0xfe457497a2a71bce1eb93ea9e6a685057dd93dee.png", - "aggregators": ["CoinGecko", "LiFi", "Socket", "Rubic", "Rango"], - "occurrences": 5 - }, - "0x34f380a4e3389e99c0369264453523bbe5af7fab": { - "address": "0x34f380a4e3389e99c0369264453523bbe5af7fab", - "symbol": "KANGAL", - "decimals": 18, - "name": "Kangal", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x34f380a4e3389e99c0369264453523bbe5af7fab.png", - "aggregators": [ - "CoinGecko", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0xdae89da41a96956e9e70320ac9c0dd077070d3a5": { - "address": "0xdae89da41a96956e9e70320ac9c0dd077070d3a5", - "symbol": "CNTR", - "decimals": 18, - "name": "Centaur", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0xdae89da41a96956e9e70320ac9c0dd077070d3a5.png", - "aggregators": [ - "CoinGecko", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x4597c8a59ab28b36840b82b3a674994a279593d0": { - "address": "0x4597c8a59ab28b36840b82b3a674994a279593d0", - "symbol": "COVAL", - "decimals": 8, - "name": "COVAL", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x4597c8a59ab28b36840b82b3a674994a279593d0.png", - "aggregators": ["CoinGecko", "LiFi", "Socket", "Rubic", "Rango"], - "occurrences": 5 - }, - "0x709a4b6217584188ddb93c82f5d716d969acce1c": { - "address": "0x709a4b6217584188ddb93c82f5d716d969acce1c", - "symbol": "HANU", - "decimals": 12, - "name": "Hanu Yokia", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x709a4b6217584188ddb93c82f5d716d969acce1c.png", - "aggregators": [ - "CoinGecko", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0xb41ec2c036f8a42da384dde6ada79884f8b84b26": { - "address": "0xb41ec2c036f8a42da384dde6ada79884f8b84b26", - "symbol": "TIDAL", - "decimals": 18, - "name": "Tidal Finance", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0xb41ec2c036f8a42da384dde6ada79884f8b84b26.png", - "aggregators": [ - "CoinGecko", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x1ba17c639bdaecd8dc4aac37df062d17ee43a1b8": { - "address": "0x1ba17c639bdaecd8dc4aac37df062d17ee43a1b8", - "symbol": "IXS", - "decimals": 18, - "name": "IX Swap", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x1ba17c639bdaecd8dc4aac37df062d17ee43a1b8.png", - "aggregators": [ - "CoinGecko", - "1inch", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x8eef5a82e6aa222a60f009ac18c24ee12dbf4b41": { - "address": "0x8eef5a82e6aa222a60f009ac18c24ee12dbf4b41", - "symbol": "TXL", - "decimals": 18, - "name": "Autobahn Network", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x8eef5a82e6aa222a60f009ac18c24ee12dbf4b41.png", - "aggregators": [ - "CoinGecko", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x55b1a124c04a54eefdefe5fa2ef5f852fb5f2f26": { - "address": "0x55b1a124c04a54eefdefe5fa2ef5f852fb5f2f26", - "symbol": "ETHM", - "decimals": 18, - "name": "Ethereum Meta", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x55b1a124c04a54eefdefe5fa2ef5f852fb5f2f26.png", - "aggregators": [ - "CoinGecko", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0xa0cb0ce7c6d93a7ebd72952feb4407dddee8a194": { - "address": "0xa0cb0ce7c6d93a7ebd72952feb4407dddee8a194", - "symbol": "SHIBAKEN", - "decimals": 0, - "name": "Shibaken Finance", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0xa0cb0ce7c6d93a7ebd72952feb4407dddee8a194.png", - "aggregators": [ - "CoinGecko", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x50bcbc40306230713239ae1bddd5eefeeaa273dc": { - "address": "0x50bcbc40306230713239ae1bddd5eefeeaa273dc", - "symbol": "ASIA", - "decimals": 18, - "name": "ASIA", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x50bcbc40306230713239ae1bddd5eefeeaa273dc.png", - "aggregators": ["CoinGecko", "LiFi", "Socket", "Rubic", "Rango"], - "occurrences": 5 - }, - "0x42f6bdcfd82547e89f1069bf375aa60e6c6c063d": { - "address": "0x42f6bdcfd82547e89f1069bf375aa60e6c6c063d", - "symbol": "CIV", - "decimals": 18, - "name": "Civilization", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x42f6bdcfd82547e89f1069bf375aa60e6c6c063d.png", - "aggregators": ["CoinGecko", "LiFi", "Socket", "Rubic", "Rango"], - "occurrences": 5 - }, - "0x6b021b3f68491974be6d4009fee61a4e3c708fd6": { - "address": "0x6b021b3f68491974be6d4009fee61a4e3c708fd6", - "symbol": "FUSE", - "decimals": 18, - "name": "Fuse", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x6b021b3f68491974be6d4009fee61a4e3c708fd6.png", - "aggregators": [ - "CoinGecko", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x4c9f66b2806538cf00ef596e09fb05bcb0d17dc8": { - "address": "0x4c9f66b2806538cf00ef596e09fb05bcb0d17dc8", - "symbol": "MNTO", - "decimals": 18, - "name": "Minato", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x4c9f66b2806538cf00ef596e09fb05bcb0d17dc8.png", - "aggregators": [ - "CoinGecko", - "LiFi", - "Socket", - "Rubic", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0xe613a914bbb433855378183c3ab13003285da40a": { - "address": "0xe613a914bbb433855378183c3ab13003285da40a", - "symbol": "B2M", - "decimals": 18, - "name": "Bit2Me", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0xe613a914bbb433855378183c3ab13003285da40a.png", - "aggregators": [ - "CoinGecko", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x0a3bb08b3a15a19b4de82f8acfc862606fb69a2d": { - "address": "0x0a3bb08b3a15a19b4de82f8acfc862606fb69a2d", - "symbol": "IUSD", - "decimals": 18, - "name": "iZUMi Bond USD", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x0a3bb08b3a15a19b4de82f8acfc862606fb69a2d.png", - "aggregators": [ - "CoinGecko", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x388d819724dd6d71760a38f00dc01d310d879771": { - "address": "0x388d819724dd6d71760a38f00dc01d310d879771", - "symbol": "JM", - "decimals": 8, - "name": "JustMoney", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x388d819724dd6d71760a38f00dc01d310d879771.png", - "aggregators": [ - "CoinGecko", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x564906ec1df8399f00e4ad32c0ecac0404a27a1c": { - "address": "0x564906ec1df8399f00e4ad32c0ecac0404a27a1c", - "symbol": "WALLET", - "decimals": 18, - "name": "Ambire Wallet", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x564906ec1df8399f00e4ad32c0ecac0404a27a1c.png", - "aggregators": [ - "CoinGecko", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0xe749ea14a2d18e361ed092ebefba64d77a8b4eac": { - "address": "0xe749ea14a2d18e361ed092ebefba64d77a8b4eac", - "symbol": "DGTX", - "decimals": 18, - "name": "Digitex", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0xe749ea14a2d18e361ed092ebefba64d77a8b4eac.png", - "aggregators": [ - "CoinGecko", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0xffb89d7637cf4860884ed48b57ae5562bf64e10f": { - "address": "0xffb89d7637cf4860884ed48b57ae5562bf64e10f", - "symbol": "PIKA", - "decimals": 18, - "name": "Pika", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0xffb89d7637cf4860884ed48b57ae5562bf64e10f.png", - "aggregators": [ - "CoinGecko", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x38022a157b95c52d43abcac9bd09f028a1079105": { - "address": "0x38022a157b95c52d43abcac9bd09f028a1079105", - "symbol": "DOGEVERSE", - "decimals": 18, - "name": "DogeVerse", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x38022a157b95c52d43abcac9bd09f028a1079105.png", - "aggregators": [ - "CoinGecko", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0xfa78cba4ebbf8fe28b4fc1468948f16fda2752b3": { - "address": "0xfa78cba4ebbf8fe28b4fc1468948f16fda2752b3", - "symbol": "AI", - "decimals": 18, - "name": "Flourishing AI", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0xfa78cba4ebbf8fe28b4fc1468948f16fda2752b3.png", - "aggregators": [ - "CoinGecko", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x306ee01a6ba3b4a8e993fa2c1adc7ea24462000c": { - "address": "0x306ee01a6ba3b4a8e993fa2c1adc7ea24462000c", - "symbol": "NPT", - "decimals": 18, - "name": "Neopin", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x306ee01a6ba3b4a8e993fa2c1adc7ea24462000c.png", - "aggregators": [ - "CoinGecko", - "LiFi", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0xec38621e72d86775a89c7422746de1f52bba5320": { - "address": "0xec38621e72d86775a89c7422746de1f52bba5320", - "symbol": "DUSD", - "decimals": 18, - "name": "Davos.xyz USD", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0xec38621e72d86775a89c7422746de1f52bba5320.png", - "aggregators": [ - "QuickSwap", - "1inch", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x958d208cdf087843e9ad98d23823d32e17d723a1": { - "address": "0x958d208cdf087843e9ad98d23823d32e17d723a1", - "symbol": "DQUICK", - "decimals": 18, - "name": "Dragon's Quick", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x958d208cdf087843e9ad98d23823d32e17d723a1.png", - "aggregators": [ - "QuickSwap", - "LiFi", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x59e9261255644c411afdd00bd89162d09d862e38": { - "address": "0x59e9261255644c411afdd00bd89162d09d862e38", - "symbol": "ETHA", - "decimals": 18, - "name": "ETHA", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x59e9261255644c411afdd00bd89162d09d862e38.png", - "aggregators": ["QuickSwap", "LiFi", "Socket", "Rubic", "Rango"], - "occurrences": 5 - }, - "0x5736df66b4f8401d639ffa915a46b4c548c09ac1": { - "address": "0x5736df66b4f8401d639ffa915a46b4c548c09ac1", - "symbol": "RETH", - "decimals": 18, - "name": "StaFi (PoS)", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x5736df66b4f8401d639ffa915a46b4c548c09ac1.png", - "aggregators": ["QuickSwap", "LiFi", "Socket", "Rubic", "Rango"], - "occurrences": 5 - }, - "0x689f8e5913c158ffb5ac5aeb83b3c875f5d20309": { - "address": "0x689f8e5913c158ffb5ac5aeb83b3c875f5d20309", - "symbol": "SNK", - "decimals": 18, - "name": "Snook", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x689f8e5913c158ffb5ac5aeb83b3c875f5d20309.png", - "aggregators": [ - "QuickSwap", - "LiFi", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x90f3edc7d5298918f7bb51694134b07356f7d0c7": { - "address": "0x90f3edc7d5298918f7bb51694134b07356f7d0c7", - "symbol": "DDAO", - "decimals": 18, - "name": "DDAO Hunters", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x90f3edc7d5298918f7bb51694134b07356f7d0c7.png", - "aggregators": ["1inch", "LiFi", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 5 - }, - "0xa94880d3a4b39746e90cdb57f8de3732c984de14": { - "address": "0xa94880d3a4b39746e90cdb57f8de3732c984de14", - "symbol": "UCASH", - "decimals": 8, - "name": "U.CASH", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0xa94880d3a4b39746e90cdb57f8de3732c984de14.png", - "aggregators": ["LiFi", "Socket", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 5 - }, - "0x84342e932797fc62814189f01f0fb05f52519708": { - "address": "0x84342e932797fc62814189f01f0fb05f52519708", - "symbol": "NHT", - "decimals": 18, - "name": "Neighbourhoods", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x84342e932797fc62814189f01f0fb05f52519708.png", - "aggregators": ["LiFi", "Socket", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 5 - }, - "0x0000206329b97db379d5e1bf586bbdb969c63274": { - "address": "0x0000206329b97db379d5e1bf586bbdb969c63274", - "symbol": "USDA", - "decimals": 18, - "name": "USDA", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x0000206329b97db379d5e1bf586bbdb969c63274.png", - "aggregators": ["LiFi", "Socket", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 5 - }, - "0xa041544fe2be56cce31ebb69102b965e06aace80": { - "address": "0xa041544fe2be56cce31ebb69102b965e06aace80", - "symbol": "BOND", - "decimals": 18, - "name": "BarnBridge Governance Token", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0xa041544fe2be56cce31ebb69102b965e06aace80.png", - "aggregators": ["LiFi", "Socket", "Rubic", "Rango", "SushiSwap"], - "occurrences": 5 - }, - "0x6002410dda2fb88b4d0dc3c1d562f7761191ea80": { - "address": "0x6002410dda2fb88b4d0dc3c1d562f7761191ea80", - "symbol": "WORK", - "decimals": 18, - "name": "The Employment Commons Work Token", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x6002410dda2fb88b4d0dc3c1d562f7761191ea80.png", - "aggregators": [ - "LiFi", - "Rubic", - "Rango", - "Sonarwatch", - "SushiSwap" - ], - "occurrences": 5 - }, - "0x23fe1ee2f536427b7e8ac02fb037a7f867037fe8": { - "address": "0x23fe1ee2f536427b7e8ac02fb037a7f867037fe8", - "symbol": "TORN", - "decimals": 18, - "name": "Tornado Cash", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x23fe1ee2f536427b7e8ac02fb037a7f867037fe8.png", - "aggregators": ["LiFi", "Socket", "Rubic", "Rango", "SushiSwap"], - "occurrences": 5 - }, - "0xeaf631ac57f3cdddd261770dd47f85066131a156": { - "address": "0xeaf631ac57f3cdddd261770dd47f85066131a156", - "symbol": "EQZ", - "decimals": 18, - "name": "Equalizer", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0xeaf631ac57f3cdddd261770dd47f85066131a156.png", - "aggregators": ["LiFi", "Socket", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 5 - }, - "0x7c603c3c0c97a565cf202c94ab5298bf8510f7dc": { - "address": "0x7c603c3c0c97a565cf202c94ab5298bf8510f7dc", - "symbol": "OATH", - "decimals": 18, - "name": "OATH", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x7c603c3c0c97a565cf202c94ab5298bf8510f7dc.png", - "aggregators": ["LiFi", "Rubic", "Squid", "Rango", "Sonarwatch"], - "occurrences": 5 - }, - "0xa6da8c8999c094432c77e7d318951d34019af24b": { - "address": "0xa6da8c8999c094432c77e7d318951d34019af24b", - "symbol": "TXAU", - "decimals": 18, - "name": "tGOLD", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0xa6da8c8999c094432c77e7d318951d34019af24b.png", - "aggregators": ["LiFi", "Socket", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 5 - }, - "0x3e121107f6f22da4911079845a470757af4e1a1b": { - "address": "0x3e121107f6f22da4911079845a470757af4e1a1b", - "symbol": "POLYFXS", - "decimals": 18, - "name": "Poly Frax Share", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x3e121107f6f22da4911079845a470757af4e1a1b.png", - "aggregators": ["LiFi", "Socket", "Rubic", "Rango", "SushiSwap"], - "occurrences": 5 - }, - "0x1d607faa0a51518a7728580c238d912747e71f7a": { - "address": "0x1d607faa0a51518a7728580c238d912747e71f7a", - "symbol": "DATA", - "decimals": 18, - "name": "DATA Economy Index", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x1d607faa0a51518a7728580c238d912747e71f7a.png", - "aggregators": ["LiFi", "Socket", "Rubic", "Rango", "SushiSwap"], - "occurrences": 5 - }, - "0x8626264b6a1b4e920905efd381002aba52ea0eea": { - "address": "0x8626264b6a1b4e920905efd381002aba52ea0eea", - "symbol": "BLKC", - "decimals": 8, - "name": "BlackHat Coin", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x8626264b6a1b4e920905efd381002aba52ea0eea.png", - "aggregators": ["LiFi", "Socket", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 5 - }, - "0xa8fcee762642f156b5d757b6fabc36e06b6d4a1a": { - "address": "0xa8fcee762642f156b5d757b6fabc36e06b6d4a1a", - "symbol": "ALN", - "decimals": 18, - "name": "Aluna", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0xa8fcee762642f156b5d757b6fabc36e06b6d4a1a.png", - "aggregators": ["LiFi", "Socket", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 5 - }, - "0x92c59f1cc9a322670cca29594e4d994d48bdfd36": { - "address": "0x92c59f1cc9a322670cca29594e4d994d48bdfd36", - "symbol": "PHNX", - "decimals": 18, - "name": "PhoenixDAO", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x92c59f1cc9a322670cca29594e4d994d48bdfd36.png", - "aggregators": ["LiFi", "Socket", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 5 - }, - "0x4a7b9a4589a88a06ca29f99556db08234078d727": { - "address": "0x4a7b9a4589a88a06ca29f99556db08234078d727", - "symbol": "GEM", - "decimals": 18, - "name": "NFTmall", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x4a7b9a4589a88a06ca29f99556db08234078d727.png", - "aggregators": ["LiFi", "Socket", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 5 - }, - "0x6811079e3c63ed96eb005384d7e7ec8810e3d521": { - "address": "0x6811079e3c63ed96eb005384d7e7ec8810e3d521", - "symbol": "XSUSHI", - "decimals": 18, - "name": "SushiBar", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x6811079e3c63ed96eb005384d7e7ec8810e3d521.png", - "aggregators": ["LiFi", "Socket", "Rubic", "Rango", "SushiSwap"], - "occurrences": 5 - }, - "0x3f717919def69f81d17b80839bf8af35697ccbfa": { - "address": "0x3f717919def69f81d17b80839bf8af35697ccbfa", - "symbol": "DTX", - "decimals": 18, - "name": "Data Exchange Token", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x3f717919def69f81d17b80839bf8af35697ccbfa.png", - "aggregators": ["LiFi", "Socket", "Rubic", "Rango", "SushiSwap"], - "occurrences": 5 - }, - "0x4df071fb2d145be595b767f997c91818694a6ce1": { - "address": "0x4df071fb2d145be595b767f997c91818694a6ce1", - "symbol": "MRCH", - "decimals": 18, - "name": "MerchDAO", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x4df071fb2d145be595b767f997c91818694a6ce1.png", - "aggregators": ["LiFi", "Socket", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 5 - }, - "0x13f76eab3ec634c5479cbb0fb705e867b3e469de": { - "address": "0x13f76eab3ec634c5479cbb0fb705e867b3e469de", - "symbol": "TRDM", - "decimals": 18, - "name": "TradeMaster.ninja", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x13f76eab3ec634c5479cbb0fb705e867b3e469de.png", - "aggregators": ["LiFi", "Socket", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 5 - }, - "0x08be454de533509e8832b257116c5506e55b0b64": { - "address": "0x08be454de533509e8832b257116c5506e55b0b64", - "symbol": "STND", - "decimals": 18, - "name": "Standard", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x08be454de533509e8832b257116c5506e55b0b64.png", - "aggregators": ["LiFi", "Socket", "Rubic", "Rango", "SushiSwap"], - "occurrences": 5 - }, - "0xb382c1cfa622795a534e5bd56fac93d59bac8b0d": { - "address": "0xb382c1cfa622795a534e5bd56fac93d59bac8b0d", - "symbol": "KIRO", - "decimals": 18, - "name": "KIRO", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0xb382c1cfa622795a534e5bd56fac93d59bac8b0d.png", - "aggregators": ["LiFi", "Socket", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 5 - }, - "0x66d7fdcc7403f18cae9b0e2e8385649d2acbc12a": { - "address": "0x66d7fdcc7403f18cae9b0e2e8385649d2acbc12a", - "symbol": "ETH2X-FLI", - "decimals": 18, - "name": "ETH 2x Flexible Leverage Index PoS", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x66d7fdcc7403f18cae9b0e2e8385649d2acbc12a.png", - "aggregators": ["LiFi", "Socket", "Rubic", "Rango", "SushiSwap"], - "occurrences": 5 - }, - "0xda6f726e2088f129d3ecb2257206adf7d8537ba5": { - "address": "0xda6f726e2088f129d3ecb2257206adf7d8537ba5", - "symbol": "NCR", - "decimals": 18, - "name": "Neos Credits", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0xda6f726e2088f129d3ecb2257206adf7d8537ba5.png", - "aggregators": ["LiFi", "Socket", "Rubic", "Rango", "SushiSwap"], - "occurrences": 5 - }, - "0x54cfe73f2c7d0c4b62ab869b473f5512dc0944d2": { - "address": "0x54cfe73f2c7d0c4b62ab869b473f5512dc0944d2", - "symbol": "BZRX", - "decimals": 18, - "name": "BZRX Token", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x54cfe73f2c7d0c4b62ab869b473f5512dc0944d2.png", - "aggregators": ["LiFi", "Socket", "Rubic", "Rango", "SushiSwap"], - "occurrences": 5 - }, - "0xaf24765f631c8830b5528b57002241ee7eef1c14": { - "address": "0xaf24765f631c8830b5528b57002241ee7eef1c14", - "symbol": "IOI", - "decimals": 6, - "name": "IOI Token", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0xaf24765f631c8830b5528b57002241ee7eef1c14.png", - "aggregators": ["LiFi", "Socket", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 5 - }, - "0x5eb8d998371971d01954205c7afe90a7af6a95ac": { - "address": "0x5eb8d998371971d01954205c7afe90a7af6a95ac", - "symbol": "AUDIO", - "decimals": 18, - "name": "Audius", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x5eb8d998371971d01954205c7afe90a7af6a95ac.png", - "aggregators": ["LiFi", "Socket", "Rubic", "Rango", "SushiSwap"], - "occurrences": 5 - }, - "0x4b54bc363f5f9c6e0fcd82eac6919ae213464cc6": { - "address": "0x4b54bc363f5f9c6e0fcd82eac6919ae213464cc6", - "symbol": "BTC2X-FLI", - "decimals": 18, - "name": "BTC 2x Flexible Leverage Index", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x4b54bc363f5f9c6e0fcd82eac6919ae213464cc6.png", - "aggregators": ["LiFi", "Socket", "Rubic", "Rango", "SushiSwap"], - "occurrences": 5 - }, - "0x91ca694d2b293f70fe722fba7d8a5259188959c3": { - "address": "0x91ca694d2b293f70fe722fba7d8a5259188959c3", - "symbol": "MFT", - "decimals": 18, - "name": "Hifi Finance", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x91ca694d2b293f70fe722fba7d8a5259188959c3.png", - "aggregators": ["LiFi", "Socket", "Rubic", "Rango", "SushiSwap"], - "occurrences": 5 - }, - "0xa380c0b01ad15c8cf6b46890bddab5f0868e87f3": { - "address": "0xa380c0b01ad15c8cf6b46890bddab5f0868e87f3", - "symbol": "USDV", - "decimals": 6, - "name": "Vyvo US Dollar", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0xa380c0b01ad15c8cf6b46890bddab5f0868e87f3.png", - "aggregators": ["LiFi", "Socket", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 5 - }, - "0x8de5b80a0c1b02fe4976851d030b36122dbb8624": { - "address": "0x8de5b80a0c1b02fe4976851d030b36122dbb8624", - "symbol": "VANRY", - "decimals": 18, - "name": "VANRY", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x8de5b80a0c1b02fe4976851d030b36122dbb8624.png", - "aggregators": ["CoinGecko", "Socket", "Rubic", "Rango"], - "occurrences": 4 - }, - "0x198f1d316aad1c0bfd36a79bd1a8e9dba92daa18": { - "address": "0x198f1d316aad1c0bfd36a79bd1a8e9dba92daa18", - "symbol": "DECATS", - "decimals": 18, - "name": "DeCats", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x198f1d316aad1c0bfd36a79bd1a8e9dba92daa18.png", - "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0xab9cb20a28f97e189ca0b666b8087803ad636b3c": { - "address": "0xab9cb20a28f97e189ca0b666b8087803ad636b3c", - "symbol": "MDUS", - "decimals": 18, - "name": "MEDIEUS", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0xab9cb20a28f97e189ca0b666b8087803ad636b3c.png", - "aggregators": ["CoinGecko", "LiFi", "Rubic", "Sonarwatch"], - "occurrences": 4 - }, - "0xdcff29b7bd211aaef6e4a3989e4d3f732cf5b4b6": { - "address": "0xdcff29b7bd211aaef6e4a3989e4d3f732cf5b4b6", - "symbol": "$MART", - "decimals": 18, - "name": "ArtMeta", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0xdcff29b7bd211aaef6e4a3989e4d3f732cf5b4b6.png", - "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0x8d60fb5886497851aac8c5195006ecf07647ba0d": { - "address": "0x8d60fb5886497851aac8c5195006ecf07647ba0d", - "symbol": "W3GG", - "decimals": 18, - "name": "W3GG", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x8d60fb5886497851aac8c5195006ecf07647ba0d.png", - "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0x5f2f8818002dc64753daedf4a6cb2ccb757cd220": { - "address": "0x5f2f8818002dc64753daedf4a6cb2ccb757cd220", - "symbol": "WSDM", - "decimals": 6, - "name": "WSDM", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x5f2f8818002dc64753daedf4a6cb2ccb757cd220.png", - "aggregators": ["CoinGecko", "LiFi", "Rubic", "Rango"], - "occurrences": 4 - }, - "0xd3144ff5f388d36c0a445686c08540296d8b209b": { - "address": "0xd3144ff5f388d36c0a445686c08540296d8b209b", - "symbol": "WWD", - "decimals": 18, - "name": "WolfWorksDAO", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0xd3144ff5f388d36c0a445686c08540296d8b209b.png", - "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0x7abe9edf5c544a04da83e9110cf46dbc4759170c": { - "address": "0x7abe9edf5c544a04da83e9110cf46dbc4759170c", - "symbol": "WPAY", - "decimals": 18, - "name": "WPAY", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x7abe9edf5c544a04da83e9110cf46dbc4759170c.png", - "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0x972999c58bbce63a2e398d4ed3bde414b8349eb3": { - "address": "0x972999c58bbce63a2e398d4ed3bde414b8349eb3", - "symbol": "PRPS", - "decimals": 18, - "name": "Purpose", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x972999c58bbce63a2e398d4ed3bde414b8349eb3.png", - "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0x8349314651ede274f8c5fef01aa65ff8da75e57c": { - "address": "0x8349314651ede274f8c5fef01aa65ff8da75e57c", - "symbol": "GGT", - "decimals": 8, - "name": "Go Game Token", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x8349314651ede274f8c5fef01aa65ff8da75e57c.png", - "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0x14e5386f47466a463f85d151653e1736c0c50fc3": { - "address": "0x14e5386f47466a463f85d151653e1736c0c50fc3", - "symbol": "RUM", - "decimals": 18, - "name": "Arrland RUM", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x14e5386f47466a463f85d151653e1736c0c50fc3.png", - "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0xe4feab21b42919c5c960ed2b4bdffc521e26881f": { - "address": "0xe4feab21b42919c5c960ed2b4bdffc521e26881f", - "symbol": "MUT", - "decimals": 18, - "name": "MUT", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0xe4feab21b42919c5c960ed2b4bdffc521e26881f.png", - "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0xfca466f2fa8e667a517c9c6cfa99cf985be5d9b1": { - "address": "0xfca466f2fa8e667a517c9c6cfa99cf985be5d9b1", - "symbol": "SPEPE", - "decimals": 18, - "name": "Saiyan PEPE", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0xfca466f2fa8e667a517c9c6cfa99cf985be5d9b1.png", - "aggregators": ["QuickSwap", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0x78445485a8d5b3be765e3027bc336e3c272a23c9": { - "address": "0x78445485a8d5b3be765e3027bc336e3c272a23c9", - "symbol": "UBU", - "decimals": 18, - "name": "Africarare", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x78445485a8d5b3be765e3027bc336e3c272a23c9.png", - "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0xb58458c52b6511dc723d7d6f3be8c36d7383b4a8": { - "address": "0xb58458c52b6511dc723d7d6f3be8c36d7383b4a8", - "symbol": "FANX", - "decimals": 18, - "name": "FrontFanz", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0xb58458c52b6511dc723d7d6f3be8c36d7383b4a8.png", - "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0x2f11eeee0bf21e7661a22dbbbb9068f4ad191b86": { - "address": "0x2f11eeee0bf21e7661a22dbbbb9068f4ad191b86", - "symbol": "BNIU", - "decimals": 18, - "name": "Backed NIU Technologies", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x2f11eeee0bf21e7661a22dbbbb9068f4ad191b86.png", - "aggregators": ["CoinGecko", "LiFi", "Rubic", "Sonarwatch"], - "occurrences": 4 - }, - "0xac0f66379a6d7801d7726d5a943356a172549adb": { - "address": "0xac0f66379a6d7801d7726d5a943356a172549adb", - "symbol": "GEOD", - "decimals": 18, - "name": "Geodnet", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0xac0f66379a6d7801d7726d5a943356a172549adb.png", - "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0x0d0b8488222f7f83b23e365320a4021b12ead608": { - "address": "0x0d0b8488222f7f83b23e365320a4021b12ead608", - "symbol": "NXTT", - "decimals": 18, - "name": "Next Earth", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x0d0b8488222f7f83b23e365320a4021b12ead608.png", - "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0x552f4d98f338fbbd3175ddf38ce1260f403bbba2": { - "address": "0x552f4d98f338fbbd3175ddf38ce1260f403bbba2", - "symbol": "MINX", - "decimals": 18, - "name": "Modern Innovation Network Token", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x552f4d98f338fbbd3175ddf38ce1260f403bbba2.png", - "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0xd3f07ea86ddf7baebefd49731d7bbd207fedc53b": { - "address": "0xd3f07ea86ddf7baebefd49731d7bbd207fedc53b", - "symbol": "NDEFI", - "decimals": 18, - "name": "Polly DeFi Nest", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0xd3f07ea86ddf7baebefd49731d7bbd207fedc53b.png", - "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0x0184316f58b9a44acdd3e683257259dc0cf2202a": { - "address": "0x0184316f58b9a44acdd3e683257259dc0cf2202a", - "symbol": "POLYGOLD", - "decimals": 18, - "name": "PolyGold", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x0184316f58b9a44acdd3e683257259dc0cf2202a.png", - "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0x9a4eb698e5de3d3df0a68f681789072de1e50222": { - "address": "0x9a4eb698e5de3d3df0a68f681789072de1e50222", - "symbol": "FID", - "decimals": 18, - "name": "Fidira", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x9a4eb698e5de3d3df0a68f681789072de1e50222.png", - "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0x4f800ba0dff2980c5006c6816f7aa3de63ce8087": { - "address": "0x4f800ba0dff2980c5006c6816f7aa3de63ce8087", - "symbol": "BRIL", - "decimals": 18, - "name": "Brilliant Crypto Token", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x4f800ba0dff2980c5006c6816f7aa3de63ce8087.png", - "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0x40379a439d4f6795b6fc9aa5687db461677a2dba": { - "address": "0x40379a439d4f6795b6fc9aa5687db461677a2dba", - "symbol": "USDR", - "decimals": 9, - "name": "Real USD", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x40379a439d4f6795b6fc9aa5687db461677a2dba.png", - "aggregators": ["CoinGecko", "LiFi", "Rubic", "Rango"], - "occurrences": 4 - }, - "0x4550003152f12014558e5ce025707e4dd841100f": { - "address": "0x4550003152f12014558e5ce025707e4dd841100f", - "symbol": "KZEN", - "decimals": 18, - "name": "Kaizen.Finance", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x4550003152f12014558e5ce025707e4dd841100f.png", - "aggregators": ["CoinGecko", "LiFi", "Rubic", "Sonarwatch"], - "occurrences": 4 - }, - "0x7e7737c40878e720b32e7bc9cd096259f876d69f": { - "address": "0x7e7737c40878e720b32e7bc9cd096259f876d69f", - "symbol": "CATHEON", - "decimals": 9, - "name": "Catheon Gaming", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x7e7737c40878e720b32e7bc9cd096259f876d69f.png", - "aggregators": ["QuickSwap", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0x03f61137bfb86be07394f0fd07a33984020f96d8": { - "address": "0x03f61137bfb86be07394f0fd07a33984020f96d8", - "symbol": "XPND", - "decimals": 18, - "name": "Xpendium", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x03f61137bfb86be07394f0fd07a33984020f96d8.png", - "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0x262b8aa7542004f023b0eb02bc6b96350a02b728": { - "address": "0x262b8aa7542004f023b0eb02bc6b96350a02b728", - "symbol": "SWAY", - "decimals": 18, - "name": "Sway Social", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x262b8aa7542004f023b0eb02bc6b96350a02b728.png", - "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0xee5bb31fdf28b5d64f5a5605085cc4e3649aa624": { - "address": "0xee5bb31fdf28b5d64f5a5605085cc4e3649aa624", - "symbol": "WBS", - "decimals": 18, - "name": "Websea", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0xee5bb31fdf28b5d64f5a5605085cc4e3649aa624.png", - "aggregators": ["CoinGecko", "LiFi", "Rubic", "Sonarwatch"], - "occurrences": 4 - }, - "0xf28164a485b0b2c90639e47b0f377b4a438a16b1": { - "address": "0xf28164a485b0b2c90639e47b0f377b4a438a16b1", - "symbol": "DQUICK", - "decimals": 18, - "name": "Dragon's Quick", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0xf28164a485b0b2c90639e47b0f377b4a438a16b1.png", - "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0x47dae46d31f31f84336ac120b15efda261d484fb": { - "address": "0x47dae46d31f31f84336ac120b15efda261d484fb", - "symbol": "BUND", - "decimals": 18, - "name": "Bund V2", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x47dae46d31f31f84336ac120b15efda261d484fb.png", - "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0x91f3b9366801c1fca6184c3bd99d5ab0c43a9033": { - "address": "0x91f3b9366801c1fca6184c3bd99d5ab0c43a9033", - "symbol": "ICNX", - "decimals": 18, - "name": "Icon.X World", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x91f3b9366801c1fca6184c3bd99d5ab0c43a9033.png", - "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0xaa3717090cddc9b227e49d0d84a28ac0a996e6ff": { - "address": "0xaa3717090cddc9b227e49d0d84a28ac0a996e6ff", - "symbol": "ASK", - "decimals": 18, - "name": "Permission Coin", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0xaa3717090cddc9b227e49d0d84a28ac0a996e6ff.png", - "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0x3d2bd0e15829aa5c362a4144fdf4a1112fa29b5c": { - "address": "0x3d2bd0e15829aa5c362a4144fdf4a1112fa29b5c", - "symbol": "BONSAI", - "decimals": 18, - "name": "Bonsai Token", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x3d2bd0e15829aa5c362a4144fdf4a1112fa29b5c.png", - "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0xe238ecb42c424e877652ad82d8a939183a04c35f": { - "address": "0xe238ecb42c424e877652ad82d8a939183a04c35f", - "symbol": "WIFI", - "decimals": 18, - "name": "WiFi Map", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0xe238ecb42c424e877652ad82d8a939183a04c35f.png", - "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0x33b6d77c607ea499ab5db7e2201c5a516a78a5db": { - "address": "0x33b6d77c607ea499ab5db7e2201c5a516a78a5db", - "symbol": "AIMX", - "decimals": 18, - "name": "AIMX", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x33b6d77c607ea499ab5db7e2201c5a516a78a5db.png", - "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0x483dd3425278c1f79f377f1034d9d2cae55648b6": { - "address": "0x483dd3425278c1f79f377f1034d9d2cae55648b6", - "symbol": "CROWD", - "decimals": 18, - "name": "CrowdSwap", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x483dd3425278c1f79f377f1034d9d2cae55648b6.png", - "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0x1c15926ea330c394d891fd88f62d37ea6af953c3": { - "address": "0x1c15926ea330c394d891fd88f62d37ea6af953c3", - "symbol": "AFFI", - "decimals": 18, - "name": "Affi Network", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x1c15926ea330c394d891fd88f62d37ea6af953c3.png", - "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0x5f0197ba06860dac7e31258bdf749f92b6a636d4": { - "address": "0x5f0197ba06860dac7e31258bdf749f92b6a636d4", - "symbol": "1FLR", - "decimals": 18, - "name": "Flare Token", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x5f0197ba06860dac7e31258bdf749f92b6a636d4.png", - "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0x13748d548d95d78a3c83fe3f32604b4796cffa23": { - "address": "0x13748d548d95d78a3c83fe3f32604b4796cffa23", - "symbol": "KOGECOIN", - "decimals": 9, - "name": "KogeCoin", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x13748d548d95d78a3c83fe3f32604b4796cffa23.png", - "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0x56633733fc8baf9f730ad2b6b9956ae22c6d4148": { - "address": "0x56633733fc8baf9f730ad2b6b9956ae22c6d4148", - "symbol": "COLLECT", - "decimals": 18, - "name": "CoinCollect", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x56633733fc8baf9f730ad2b6b9956ae22c6d4148.png", - "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0x8b78927048de67b9e8c8f834359f15c3822ed871": { - "address": "0x8b78927048de67b9e8c8f834359f15c3822ed871", - "symbol": "LOE", - "decimals": 18, - "name": "Legends of Elysium", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x8b78927048de67b9e8c8f834359f15c3822ed871.png", - "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0x683565196c3eab450003c964d4bad1fd3068d4cc": { - "address": "0x683565196c3eab450003c964d4bad1fd3068d4cc", - "symbol": "VDA", - "decimals": 18, - "name": "Verida", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x683565196c3eab450003c964d4bad1fd3068d4cc.png", - "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0x0e2c818fea38e7df50410f772b7d59af20589a62": { - "address": "0x0e2c818fea38e7df50410f772b7d59af20589a62", - "symbol": "DOM", - "decimals": 9, - "name": "Dominium", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x0e2c818fea38e7df50410f772b7d59af20589a62.png", - "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0x0bd49815ea8e2682220bcb41524c0dd10ba71d41": { - "address": "0x0bd49815ea8e2682220bcb41524c0dd10ba71d41", - "symbol": "PYM", - "decimals": 18, - "name": "PYM", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x0bd49815ea8e2682220bcb41524c0dd10ba71d41.png", - "aggregators": ["CoinGecko", "LiFi", "Rubic", "Rango"], - "occurrences": 4 - }, - "0x53df32548214f51821cf1fe4368109ac5ddea1ff": { - "address": "0x53df32548214f51821cf1fe4368109ac5ddea1ff", - "symbol": "$SPONGE", - "decimals": 18, - "name": "Sponge", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x53df32548214f51821cf1fe4368109ac5ddea1ff.png", - "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0xadb6d62e142a2f911fb3c9ca1c1d0fe5d9437252": { - "address": "0xadb6d62e142a2f911fb3c9ca1c1d0fe5d9437252", - "symbol": "LAI", - "decimals": 18, - "name": "LOCKON Active Index", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0xadb6d62e142a2f911fb3c9ca1c1d0fe5d9437252.png", - "aggregators": ["CoinGecko", "LiFi", "Rubic", "Sonarwatch"], - "occurrences": 4 - }, - "0x87d6f8edeccbcca766d2880d19b2c3777d322c22": { - "address": "0x87d6f8edeccbcca766d2880d19b2c3777d322c22", - "symbol": "MPT", - "decimals": 18, - "name": "Miracle Play", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x87d6f8edeccbcca766d2880d19b2c3777d322c22.png", - "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0x202655af326de310491cb54f120e02ee0da92b55": { - "address": "0x202655af326de310491cb54f120e02ee0da92b55", - "symbol": "CRETA", - "decimals": 18, - "name": "Creta World", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x202655af326de310491cb54f120e02ee0da92b55.png", - "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0x95093f8348c6678df4812c008248d88cad344069": { - "address": "0x95093f8348c6678df4812c008248d88cad344069", - "symbol": "WAR", - "decimals": 18, - "name": "War Legends", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x95093f8348c6678df4812c008248d88cad344069.png", - "aggregators": ["CoinGecko", "Socket", "Rubic", "Sonarwatch"], - "occurrences": 4 - }, - "0x13646e0e2d768d31b75d1a1e375e3e17f18567f2": { - "address": "0x13646e0e2d768d31b75d1a1e375e3e17f18567f2", - "symbol": "NWS", - "decimals": 18, - "name": "Nodewaves", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x13646e0e2d768d31b75d1a1e375e3e17f18567f2.png", - "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0xfb7f8a2c0526d01bfb00192781b7a7761841b16c": { - "address": "0xfb7f8a2c0526d01bfb00192781b7a7761841b16c", - "symbol": "LRT", - "decimals": 18, - "name": "LandRocker", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0xfb7f8a2c0526d01bfb00192781b7a7761841b16c.png", - "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0x9dbfc1cbf7a1e711503a29b4b5f9130ebeccac96": { - "address": "0x9dbfc1cbf7a1e711503a29b4b5f9130ebeccac96", - "symbol": "UPO", - "decimals": 18, - "name": "UpOnly", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x9dbfc1cbf7a1e711503a29b4b5f9130ebeccac96.png", - "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0xaa404804ba583c025fa64c9a276a6127ceb355c6": { - "address": "0xaa404804ba583c025fa64c9a276a6127ceb355c6", - "symbol": "CPR", - "decimals": 2, - "name": "CIPHER", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0xaa404804ba583c025fa64c9a276a6127ceb355c6.png", - "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0xffbf21632d4ad2b1f85031b418a8f69638118364": { - "address": "0xffbf21632d4ad2b1f85031b418a8f69638118364", - "symbol": "FAST", - "decimals": 24, - "name": "Edge Video AI", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0xffbf21632d4ad2b1f85031b418a8f69638118364.png", - "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0xc708d6f2153933daa50b2d0758955be0a93a8fec": { - "address": "0xc708d6f2153933daa50b2d0758955be0a93a8fec", - "symbol": "FXVERSE", - "decimals": 18, - "name": "FXVERSE", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0xc708d6f2153933daa50b2d0758955be0a93a8fec.png", - "aggregators": ["CoinGecko", "Socket", "Rubic", "Rango"], - "occurrences": 4 - }, - "0x903d5990119bc799423e9c25c56518ba7dd19474": { - "address": "0x903d5990119bc799423e9c25c56518ba7dd19474", - "symbol": "SPKCC", - "decimals": 5, - "name": "SPKCC", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x903d5990119bc799423e9c25c56518ba7dd19474.png", - "aggregators": ["CoinGecko", "LiFi", "Rubic", "Rango"], - "occurrences": 4 - }, - "0x7790dd69aa10ed3f1271e41cd7222d2a7d2d5948": { - "address": "0x7790dd69aa10ed3f1271e41cd7222d2a7d2d5948", - "symbol": "PRL", - "decimals": 18, - "name": "Parallel Governance Token", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x7790dd69aa10ed3f1271e41cd7222d2a7d2d5948.png", - "aggregators": ["CoinGecko", "LiFi", "Rubic", "Rango"], - "occurrences": 4 - }, - "0x99f70a0e1786402a6796c6b0aa997ef340a5c6da": { - "address": "0x99f70a0e1786402a6796c6b0aa997ef340a5c6da", - "symbol": "EURSPKCC", - "decimals": 5, - "name": "Spiko Digital Assets Cash & Carry Fund - Euro Share Class", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x99f70a0e1786402a6796c6b0aa997ef340a5c6da.png", - "aggregators": ["CoinGecko", "LiFi", "Rubic", "Rango"], - "occurrences": 4 - }, - "0xa7e22972a19dd924afeedf3db28033b146801081": { - "address": "0xa7e22972a19dd924afeedf3db28033b146801081", - "symbol": "XAUM", - "decimals": 18, - "name": "Matrixdock Gold", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0xa7e22972a19dd924afeedf3db28033b146801081.png", - "aggregators": ["CoinGecko", "LiFi", "Rubic", "Rango"], - "occurrences": 4 - }, - "0xd24157aa1097486dc9d7cf094a7e15026e566b5d": { - "address": "0xd24157aa1097486dc9d7cf094a7e15026e566b5d", - "symbol": "TPRO", - "decimals": 18, - "name": "TPRO Network", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0xd24157aa1097486dc9d7cf094a7e15026e566b5d.png", - "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0x52d134c6db5889fad3542a09eaf7aa90c0fdf9e4": { - "address": "0x52d134c6db5889fad3542a09eaf7aa90c0fdf9e4", - "symbol": "BIBTA", - "decimals": 18, - "name": "Backed IBTA $ Treasury Bond 1-3yr", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x52d134c6db5889fad3542a09eaf7aa90c0fdf9e4.png", - "aggregators": ["CoinGecko", "LiFi", "Rubic", "Sonarwatch"], - "occurrences": 4 - }, - "0x0b6f3ea2814f3fff804ba5d5c237aebbc364fba9": { - "address": "0x0b6f3ea2814f3fff804ba5d5c237aebbc364fba9", - "symbol": "UNA", - "decimals": 18, - "name": "Unagi Token", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x0b6f3ea2814f3fff804ba5d5c237aebbc364fba9.png", - "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0x4867b60ad7c6adc98653f661f1aea31740986ba5": { - "address": "0x4867b60ad7c6adc98653f661f1aea31740986ba5", - "symbol": "MEAN", - "decimals": 6, - "name": "Mean DAO", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x4867b60ad7c6adc98653f661f1aea31740986ba5.png", - "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0x20c64dee8fda5269a78f2d5bdba861ca1d83df7a": { - "address": "0x20c64dee8fda5269a78f2d5bdba861ca1d83df7a", - "symbol": "BHIGH", - "decimals": 18, - "name": "Backed HIGH € High Yield Corp Bond", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x20c64dee8fda5269a78f2d5bdba861ca1d83df7a.png", - "aggregators": ["CoinGecko", "LiFi", "Rubic", "Sonarwatch"], - "occurrences": 4 - }, - "0xa5eb60ca85898f8b26e18ff7c7e43623ccba772c": { - "address": "0xa5eb60ca85898f8b26e18ff7c7e43623ccba772c", - "symbol": "COSMIC", - "decimals": 18, - "name": "CosmicSwap", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0xa5eb60ca85898f8b26e18ff7c7e43623ccba772c.png", - "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0x7cd017ca5ddb86861fa983a34b5f495c6f898c41": { - "address": "0x7cd017ca5ddb86861fa983a34b5f495c6f898c41", - "symbol": "WUSD", - "decimals": 18, - "name": "Worldwide USD", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x7cd017ca5ddb86861fa983a34b5f495c6f898c41.png", - "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0xc6920888988caceea7acca0c96f2d65b05ee22ba": { - "address": "0xc6920888988caceea7acca0c96f2d65b05ee22ba", - "symbol": "ECLD", - "decimals": 18, - "name": "Ethernity Cloud", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0xc6920888988caceea7acca0c96f2d65b05ee22ba.png", - "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0x36fe11b6d5c9421f68d235694fe192b35e803903": { - "address": "0x36fe11b6d5c9421f68d235694fe192b35e803903", - "symbol": "RWA", - "decimals": 18, - "name": "Xend Finance", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x36fe11b6d5c9421f68d235694fe192b35e803903.png", - "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0xea50f402653c41cadbafd1f788341db7b7f37816": { - "address": "0xea50f402653c41cadbafd1f788341db7b7f37816", - "symbol": "SGYD", - "decimals": 18, - "name": "sGYD", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0xea50f402653c41cadbafd1f788341db7b7f37816.png", - "aggregators": ["CoinGecko", "LiFi", "Rubic", "Sonarwatch"], - "occurrences": 4 - }, - "0xe58e8391ba17731c5671f9c6e00e420608dca10e": { - "address": "0xe58e8391ba17731c5671f9c6e00e420608dca10e", - "symbol": "GNFT", - "decimals": 18, - "name": "GNFT", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0xe58e8391ba17731c5671f9c6e00e420608dca10e.png", - "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0x949185d3be66775ea648f4a306740ea9eff9c567": { - "address": "0x949185d3be66775ea648f4a306740ea9eff9c567", - "symbol": "YEL", - "decimals": 18, - "name": "Yel.Finance", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x949185d3be66775ea648f4a306740ea9eff9c567.png", - "aggregators": ["CoinGecko", "LiFi", "Rubic", "Sonarwatch"], - "occurrences": 4 - }, - "0x524d524b4c9366be706d3a90dcf70076ca037ae3": { - "address": "0x524d524b4c9366be706d3a90dcf70076ca037ae3", - "symbol": "RMRK", - "decimals": 18, - "name": "RMRK", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x524d524b4c9366be706d3a90dcf70076ca037ae3.png", - "aggregators": ["CoinGecko", "LiFi", "Rubic", "Rango"], - "occurrences": 4 - }, - "0x6a3e7c3c6ef65ee26975b12293ca1aad7e1daed2": { - "address": "0x6a3e7c3c6ef65ee26975b12293ca1aad7e1daed2", - "symbol": "ALPHA", - "decimals": 18, - "name": "Aavegotchi ALPHA", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x6a3e7c3c6ef65ee26975b12293ca1aad7e1daed2.png", - "aggregators": ["QuickSwap", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0x403e967b044d4be25170310157cb1a4bf10bdd0f": { - "address": "0x403e967b044d4be25170310157cb1a4bf10bdd0f", - "symbol": "FUD", - "decimals": 18, - "name": "Aavegotchi FUD", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x403e967b044d4be25170310157cb1a4bf10bdd0f.png", - "aggregators": ["QuickSwap", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0x6f3cc27e17a0f2e52d8e7693ff0d892cea1854bf": { - "address": "0x6f3cc27e17a0f2e52d8e7693ff0d892cea1854bf", - "symbol": "GOO", - "decimals": 9, - "name": "Gooeys", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x6f3cc27e17a0f2e52d8e7693ff0d892cea1854bf.png", - "aggregators": ["QuickSwap", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0x123706cdd8e60324e610e9a2cc7012d0f45a5b8e": { - "address": "0x123706cdd8e60324e610e9a2cc7012d0f45a5b8e", - "symbol": "QUIDD", - "decimals": 18, - "name": "Quidd", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x123706cdd8e60324e610e9a2cc7012d0f45a5b8e.png", - "aggregators": ["QuickSwap", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0x6f8a06447ff6fcf75d803135a7de15ce88c1d4ec": { - "address": "0x6f8a06447ff6fcf75d803135a7de15ce88c1d4ec", - "symbol": "SHIB", - "decimals": 18, - "name": "SHIB", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x6f8a06447ff6fcf75d803135a7de15ce88c1d4ec.png", - "aggregators": ["QuickSwap", "Socket", "Rubic", "Rango"], - "occurrences": 4 - }, - "0x32934cb16da43fd661116468c1b225fc26cf9a8c": { - "address": "0x32934cb16da43fd661116468c1b225fc26cf9a8c", - "symbol": "SNE", - "decimals": 18, - "name": "StrongNode", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x32934cb16da43fd661116468c1b225fc26cf9a8c.png", - "aggregators": ["QuickSwap", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0x30de46509dbc3a491128f97be0aaf70dc7ff33cb": { - "address": "0x30de46509dbc3a491128f97be0aaf70dc7ff33cb", - "symbol": "XZAR", - "decimals": 18, - "name": "South African Tether (PoS)", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x30de46509dbc3a491128f97be0aaf70dc7ff33cb.png", - "aggregators": ["1inch", "LiFi", "Rubic", "Rango"], - "occurrences": 4 - }, - "0xd4945a3d0de9923035521687d4bf18cc9b0c7c2a": { - "address": "0xd4945a3d0de9923035521687d4bf18cc9b0c7c2a", - "symbol": "LUXY", - "decimals": 18, - "name": "LUXY", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0xd4945a3d0de9923035521687d4bf18cc9b0c7c2a.png", - "aggregators": ["1inch", "LiFi", "Rubic", "Rango"], - "occurrences": 4 - }, - "0x8bc3ec2e7973e64be582a90b08cadd13457160fe": { - "address": "0x8bc3ec2e7973e64be582a90b08cadd13457160fe", - "symbol": "SDG", - "decimals": 9, - "name": "ShadowGold", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x8bc3ec2e7973e64be582a90b08cadd13457160fe.png", - "aggregators": ["LiFi", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0x119fd89e56e3845b520644dcedf4a86cd0b66aa6": { - "address": "0x119fd89e56e3845b520644dcedf4a86cd0b66aa6", - "symbol": "NOVA", - "decimals": 18, - "name": "Nova DAO", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x119fd89e56e3845b520644dcedf4a86cd0b66aa6.png", - "aggregators": ["LiFi", "Socket", "Rubic", "Rango"], - "occurrences": 4 - }, - "0x527856315a4bcd2f428ea7fa05ea251f7e96a50a": { - "address": "0x527856315a4bcd2f428ea7fa05ea251f7e96a50a", - "symbol": "CDFI", - "decimals": 18, - "name": "CeDeFiAi", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x527856315a4bcd2f428ea7fa05ea251f7e96a50a.png", - "aggregators": ["LiFi", "Socket", "Rubic", "Rango"], - "occurrences": 4 - }, - "0xca5d8f8a8d49439357d3cf46ca2e720702f132b8": { - "address": "0xca5d8f8a8d49439357d3cf46ca2e720702f132b8", - "symbol": "GYD", - "decimals": 18, - "name": "Gyroscope GYD", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0xca5d8f8a8d49439357d3cf46ca2e720702f132b8.png", - "aggregators": ["LiFi", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0x60ed6acef3a96f8cdaf0c0d207bbafa66e751af2": { - "address": "0x60ed6acef3a96f8cdaf0c0d207bbafa66e751af2", - "symbol": "EP", - "decimals": 18, - "name": "Elemental Particles", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x60ed6acef3a96f8cdaf0c0d207bbafa66e751af2.png", - "aggregators": ["LiFi", "Rubic", "Rango", "SushiSwap"], - "occurrences": 4 - }, - "0xa0ead927e6c31646cf1d4cc721705c415e515bd4": { - "address": "0xa0ead927e6c31646cf1d4cc721705c415e515bd4", - "symbol": "TRIM", - "decimals": 18, - "name": "TRIMBEX", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0xa0ead927e6c31646cf1d4cc721705c415e515bd4.png", - "aggregators": ["LiFi", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0x00e8c0e92eb3ad88189e7125ec8825edc03ab265": { - "address": "0x00e8c0e92eb3ad88189e7125ec8825edc03ab265", - "symbol": "WUSDR", - "decimals": 9, - "name": "Wrapped USDR", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x00e8c0e92eb3ad88189e7125ec8825edc03ab265.png", - "aggregators": ["LiFi", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0x51707dc661630f8fd624b985fa6ef4f1d4d919db": { - "address": "0x51707dc661630f8fd624b985fa6ef4f1d4d919db", - "symbol": "UNV", - "decimals": 18, - "name": "Unvest", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x51707dc661630f8fd624b985fa6ef4f1d4d919db.png", - "aggregators": ["LiFi", "Rubic", "Squid", "Sonarwatch"], - "occurrences": 4 - }, - "0x632b8c4e95b2f8a9309417f8d990ab9c04c77369": { - "address": "0x632b8c4e95b2f8a9309417f8d990ab9c04c77369", - "symbol": "WET", - "decimals": 18, - "name": "Weble Ecosystem", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x632b8c4e95b2f8a9309417f8d990ab9c04c77369.png", - "aggregators": ["LiFi", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0x6d969cea201e427d2875724fd4e8044833fbc7f4": { - "address": "0x6d969cea201e427d2875724fd4e8044833fbc7f4", - "symbol": "PHBD", - "decimals": 3, - "name": "Polygon HBD", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x6d969cea201e427d2875724fd4e8044833fbc7f4.png", - "aggregators": ["LiFi", "Rubic", "Rango", "SushiSwap"], - "occurrences": 4 - }, - "0x5e430f88d1be82eb3ef92b6ff06125168fd5dcf2": { - "address": "0x5e430f88d1be82eb3ef92b6ff06125168fd5dcf2", - "symbol": "MODA", - "decimals": 18, - "name": "moda", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x5e430f88d1be82eb3ef92b6ff06125168fd5dcf2.png", - "aggregators": ["LiFi", "Socket", "Rubic", "Rango"], - "occurrences": 4 - }, - "0xf14fbc6b30e2c4bc05a1d4fbe34bf9f14313309d": { - "address": "0xf14fbc6b30e2c4bc05a1d4fbe34bf9f14313309d", - "symbol": "AKT", - "decimals": 6, - "name": "AKT", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0xf14fbc6b30e2c4bc05a1d4fbe34bf9f14313309d.png", - "aggregators": ["LiFi", "Socket", "Rubic", "Rango"], - "occurrences": 4 - }, - "0x61daecab65ee2a1d5b6032df030f3faa3d116aa7": { - "address": "0x61daecab65ee2a1d5b6032df030f3faa3d116aa7", - "symbol": "DMAGIC", - "decimals": 18, - "name": "Dark Magic", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x61daecab65ee2a1d5b6032df030f3faa3d116aa7.png", - "aggregators": ["LiFi", "Rubic", "Rango", "SushiSwap"], - "occurrences": 4 - }, - "0x7272a5a8bd39f204bf773e8b74bb01e31681ad1d": { - "address": "0x7272a5a8bd39f204bf773e8b74bb01e31681ad1d", - "symbol": "OMZ", - "decimals": 18, - "name": "Open Meta City", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x7272a5a8bd39f204bf773e8b74bb01e31681ad1d.png", - "aggregators": ["LiFi", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0x0b220b82f3ea3b7f6d9a1d8ab58930c064a2b5bf": { - "address": "0x0b220b82f3ea3b7f6d9a1d8ab58930c064a2b5bf", - "symbol": "GLM", - "decimals": 18, - "name": "Golem Network Token (PoS)", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x0b220b82f3ea3b7f6d9a1d8ab58930c064a2b5bf.png", - "aggregators": ["LiFi", "Socket", "Rubic", "Rango"], - "occurrences": 4 - }, - "0xcaf5191fc480f43e4df80106c7695eca56e48b18": { - "address": "0xcaf5191fc480f43e4df80106c7695eca56e48b18", - "symbol": "DNXC", - "decimals": 18, - "name": "DinoX", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0xcaf5191fc480f43e4df80106c7695eca56e48b18.png", - "aggregators": ["LiFi", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0xf689e85988d3a7921e852867ce49f53388985e6d": { - "address": "0xf689e85988d3a7921e852867ce49f53388985e6d", - "symbol": "MOFI", - "decimals": 18, - "name": "MobiFi", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0xf689e85988d3a7921e852867ce49f53388985e6d.png", - "aggregators": ["LiFi", "Socket", "Rubic", "Sonarwatch"], - "occurrences": 4 - }, - "0x52ede6bba83b7b4ba1d738df0df713d6a2036b71": { - "address": "0x52ede6bba83b7b4ba1d738df0df713d6a2036b71", - "symbol": "0XMR", - "decimals": 18, - "name": "0xMonero (PoS)", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x52ede6bba83b7b4ba1d738df0df713d6a2036b71.png", - "aggregators": ["LiFi", "Socket", "Rubic", "Rango"], - "occurrences": 4 - }, - "0x0907b8b13970df091ecc9d4d4c7ae12a599ad923": { - "address": "0x0907b8b13970df091ecc9d4d4c7ae12a599ad923", - "symbol": "CCC", - "decimals": 18, - "name": "Credit Check Coin", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x0907b8b13970df091ecc9d4d4c7ae12a599ad923.png", - "aggregators": ["LiFi", "Socket", "Rubic", "Rango"], - "occurrences": 4 - }, - "0x4eac4c4e9050464067d673102f8e24b2fcceb350": { - "address": "0x4eac4c4e9050464067d673102f8e24b2fcceb350", - "symbol": "IBBTC", - "decimals": 18, - "name": "Interest-Bearing BTC", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x4eac4c4e9050464067d673102f8e24b2fcceb350.png", - "aggregators": ["LiFi", "Socket", "Rango", "SushiSwap"], - "occurrences": 4 - }, - "0x78b1aa5c9b37c52695c93448ad0c64560edb9c4d": { - "address": "0x78b1aa5c9b37c52695c93448ad0c64560edb9c4d", - "symbol": "FOOD", - "decimals": 18, - "name": "Fooday", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x78b1aa5c9b37c52695c93448ad0c64560edb9c4d.png", - "aggregators": ["LiFi", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0x8d1566569d5b695d44a9a234540f68d393cdc40d": { - "address": "0x8d1566569d5b695d44a9a234540f68d393cdc40d", - "symbol": "GAME", - "decimals": 18, - "name": "GAME", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x8d1566569d5b695d44a9a234540f68d393cdc40d.png", - "aggregators": ["LiFi", "Socket", "Rubic", "Rango"], - "occurrences": 4 - }, - "0xd7ecf95cf7ef5256990beaf4ac895cd9e64cb947": { - "address": "0xd7ecf95cf7ef5256990beaf4ac895cd9e64cb947", - "symbol": "PBTC", - "decimals": 18, - "name": "PBTC", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0xd7ecf95cf7ef5256990beaf4ac895cd9e64cb947.png", - "aggregators": ["LiFi", "Socket", "Rubic", "Rango"], - "occurrences": 4 - }, - "0x9b034262e0095210ab9ddec60199741a8a1fbfe7": { - "address": "0x9b034262e0095210ab9ddec60199741a8a1fbfe7", - "symbol": "THREE", - "decimals": 18, - "name": "ThreeCoin", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x9b034262e0095210ab9ddec60199741a8a1fbfe7.png", - "aggregators": ["LiFi", "Rubic", "Rango", "SushiSwap"], - "occurrences": 4 - }, - "0x0361bdeab89df6bbcc52c43589fabba5143d19dd": { - "address": "0x0361bdeab89df6bbcc52c43589fabba5143d19dd", - "symbol": "DTOP", - "decimals": 18, - "name": "dHEDGE Top Index", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x0361bdeab89df6bbcc52c43589fabba5143d19dd.png", - "aggregators": ["LiFi", "Rubic", "Rango", "SushiSwap"], - "occurrences": 4 - }, - "0xba25b552c8a098afdf276324c32c71fe28e0ad40": { - "address": "0xba25b552c8a098afdf276324c32c71fe28e0ad40", - "symbol": "MCRN", - "decimals": 18, - "name": "MacaronSwap", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0xba25b552c8a098afdf276324c32c71fe28e0ad40.png", - "aggregators": ["LiFi", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0x2db0db271a10661e7090b6758350e18f6798a49d": { - "address": "0x2db0db271a10661e7090b6758350e18f6798a49d", - "symbol": "MOT", - "decimals": 18, - "name": "Mobius Finance", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x2db0db271a10661e7090b6758350e18f6798a49d.png", - "aggregators": ["LiFi", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0x28c388fb1f4fa9f9eb445f0579666849ee5eeb42": { - "address": "0x28c388fb1f4fa9f9eb445f0579666849ee5eeb42", - "symbol": "BEL", - "decimals": 18, - "name": "BEL", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x28c388fb1f4fa9f9eb445f0579666849ee5eeb42.png", - "aggregators": ["LiFi", "Socket", "Rubic", "Rango"], - "occurrences": 4 - }, - "0xede1b77c0ccc45bfa949636757cd2ca7ef30137f": { - "address": "0xede1b77c0ccc45bfa949636757cd2ca7ef30137f", - "symbol": "WFIL", - "decimals": 18, - "name": "Wrapped Filecoin", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0xede1b77c0ccc45bfa949636757cd2ca7ef30137f.png", - "aggregators": ["LiFi", "Rubic", "Rango", "SushiSwap"], - "occurrences": 4 - }, - "0x6d5f5317308c6fe7d6ce16930353a8dfd92ba4d7": { - "address": "0x6d5f5317308c6fe7d6ce16930353a8dfd92ba4d7", - "symbol": "ABI", - "decimals": 9, - "name": "Abachi", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x6d5f5317308c6fe7d6ce16930353a8dfd92ba4d7.png", - "aggregators": ["LiFi", "Rubic", "Rango", "SushiSwap"], - "occurrences": 4 - }, - "0x858bcee0e62dd0c961611ddddb908767b0ce801c": { - "address": "0x858bcee0e62dd0c961611ddddb908767b0ce801c", - "symbol": "LSMATIC", - "decimals": 18, - "name": "Liquid Staked MATIC Index", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x858bcee0e62dd0c961611ddddb908767b0ce801c.png", - "aggregators": ["LiFi", "Rubic", "Rango", "SushiSwap"], - "occurrences": 4 - }, - "0x904371845bc56dcbbcf0225ef84a669b2fd6bd0d": { - "address": "0x904371845bc56dcbbcf0225ef84a669b2fd6bd0d", - "symbol": "RELAY", - "decimals": 18, - "name": "RELAY", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x904371845bc56dcbbcf0225ef84a669b2fd6bd0d.png", - "aggregators": ["LiFi", "Socket", "Rubic", "Rango"], - "occurrences": 4 - }, - "0xba4c54ea2d66b904c82847a7d2357d22b857e812": { - "address": "0xba4c54ea2d66b904c82847a7d2357d22b857e812", - "symbol": "UGT", - "decimals": 18, - "name": "UGT", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0xba4c54ea2d66b904c82847a7d2357d22b857e812.png", - "aggregators": ["LiFi", "Socket", "Rubic", "Rango"], - "occurrences": 4 - }, - "0xf629712180bef6f4c569b704e03d0acbe276eb6d": { - "address": "0xf629712180bef6f4c569b704e03d0acbe276eb6d", - "symbol": "WSTA", - "decimals": 18, - "name": "Wrapped STA (PoS)", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0xf629712180bef6f4c569b704e03d0acbe276eb6d.png", - "aggregators": ["LiFi", "Socket", "Rubic", "Rango"], - "occurrences": 4 - }, - "0xdda7b23d2d72746663e7939743f929a3d85fc975": { - "address": "0xdda7b23d2d72746663e7939743f929a3d85fc975", - "symbol": "ADX", - "decimals": 18, - "name": "AdEx", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0xdda7b23d2d72746663e7939743f929a3d85fc975.png", - "aggregators": ["LiFi", "Socket", "Rubic", "Sonarwatch"], - "occurrences": 4 - }, - "0x960d43be128585ca45365cd74a7773b9d814dfbe": { - "address": "0x960d43be128585ca45365cd74a7773b9d814dfbe", - "symbol": "FIREFBX", - "decimals": 18, - "name": "FireVault FBX", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x960d43be128585ca45365cd74a7773b9d814dfbe.png", - "aggregators": ["LiFi", "Rubic", "Rango", "SushiSwap"], - "occurrences": 4 - }, - "0x1db06f39c14d813d7b1ccb275a93f5b052de1cac": { - "address": "0x1db06f39c14d813d7b1ccb275a93f5b052de1cac", - "symbol": "XAV", - "decimals": 18, - "name": "Xave", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x1db06f39c14d813d7b1ccb275a93f5b052de1cac.png", - "aggregators": ["LiFi", "Rubic", "Squid", "Sonarwatch"], - "occurrences": 4 - }, - "0x281c4746c902a322b9a951f07893ac51a7221acc": { - "address": "0x281c4746c902a322b9a951f07893ac51a7221acc", - "symbol": "STERN", - "decimals": 18, - "name": "Staked Ethos Reserve Note", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x281c4746c902a322b9a951f07893ac51a7221acc.png", - "aggregators": ["LiFi", "Rubic", "Squid", "Rango"], - "occurrences": 4 - }, - "0x6ccf12b480a99c54b23647c995f4525d544a7e72": { - "address": "0x6ccf12b480a99c54b23647c995f4525d544a7e72", - "symbol": "START", - "decimals": 18, - "name": "Starter.xyz", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x6ccf12b480a99c54b23647c995f4525d544a7e72.png", - "aggregators": ["Socket", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0xa649325aa7c5093d12d6f98eb4378deae68ce23f": { - "address": "0xa649325aa7c5093d12d6f98eb4378deae68ce23f", - "symbol": "WBNB", - "decimals": 18, - "name": "Wrapped BNB", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0xa649325aa7c5093d12d6f98eb4378deae68ce23f.png", - "aggregators": ["Socket", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0xbf9f916bbda29a7f990f5f55c7607d94d7c3a60b": { - "address": "0xbf9f916bbda29a7f990f5f55c7607d94d7c3a60b", - "symbol": "DEFY", - "decimals": 18, - "name": "DEFY", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0xbf9f916bbda29a7f990f5f55c7607d94d7c3a60b.png", - "aggregators": ["Socket", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0x0a307bd521701f9d70fb29bfa9e2e36dc998dadb": { - "address": "0x0a307bd521701f9d70fb29bfa9e2e36dc998dadb", - "symbol": "CNW", - "decimals": 6, - "name": "CoinWealth", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x0a307bd521701f9d70fb29bfa9e2e36dc998dadb.png", - "aggregators": ["Socket", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0xd281af594cbb99e8469f3591d57a0c72eb725bdb": { - "address": "0xd281af594cbb99e8469f3591d57a0c72eb725bdb", - "symbol": "MNFT", - "decimals": 18, - "name": "Marvelous NFTs", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0xd281af594cbb99e8469f3591d57a0c72eb725bdb.png", - "aggregators": ["Socket", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0x8c059898ca6274750b6bf1cf38f2848347c490cc": { - "address": "0x8c059898ca6274750b6bf1cf38f2848347c490cc", - "symbol": "SOS", - "decimals": 18, - "name": "SOS (PoS)", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x8c059898ca6274750b6bf1cf38f2848347c490cc.png", - "aggregators": ["Socket", "Rubic", "Rango", "SushiSwap"], - "occurrences": 4 - }, - "0x04f3c4cf2e806da6df31e80e8a5d121f98edd61d": { - "address": "0x04f3c4cf2e806da6df31e80e8a5d121f98edd61d", - "symbol": "CREAM", - "decimals": 18, - "name": "Cream", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x04f3c4cf2e806da6df31e80e8a5d121f98edd61d.png", - "aggregators": ["Socket", "Rubic", "Rango", "SushiSwap"], - "occurrences": 4 - }, - "0x2ebd50ae084e71eed419cb6c620b3bbd3927bf7e": { - "address": "0x2ebd50ae084e71eed419cb6c620b3bbd3927bf7e", - "symbol": "AAA", - "decimals": 18, - "name": "Moon Rabbit", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x2ebd50ae084e71eed419cb6c620b3bbd3927bf7e.png", - "aggregators": ["Socket", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0x0c47298beee5203358e7bc30b9954b584361eab5": { - "address": "0x0c47298beee5203358e7bc30b9954b584361eab5", - "symbol": "BS", - "decimals": 18, - "name": "Black Stallion", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x0c47298beee5203358e7bc30b9954b584361eab5.png", - "aggregators": ["Socket", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0x057e0bd9b797f9eeeb8307b35dbc8c12e534c41e": { - "address": "0x057e0bd9b797f9eeeb8307b35dbc8c12e534c41e", - "symbol": "GURU", - "decimals": 9, - "name": "Guru", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x057e0bd9b797f9eeeb8307b35dbc8c12e534c41e.png", - "aggregators": ["Socket", "Rubic", "Rango", "SushiSwap"], - "occurrences": 4 - }, - "0xd6a33f67b733d422c821c36f0f79ca145b930d01": { - "address": "0xd6a33f67b733d422c821c36f0f79ca145b930d01", - "symbol": "AGLA", - "decimals": 18, - "name": "Angola", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0xd6a33f67b733d422c821c36f0f79ca145b930d01.png", - "aggregators": ["Socket", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0xeec2e29ff5cd4cecea61de09e9f28fae74c70ddd": { - "address": "0xeec2e29ff5cd4cecea61de09e9f28fae74c70ddd", - "symbol": "AITT", - "decimals": 8, - "name": "Aittcoin", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0xeec2e29ff5cd4cecea61de09e9f28fae74c70ddd.png", - "aggregators": ["Socket", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0xcd150b1f528f326f5194c012f32eb30135c7c2c9": { - "address": "0xcd150b1f528f326f5194c012f32eb30135c7c2c9", - "symbol": "OOKI", - "decimals": 18, - "name": "OOKI", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0xcd150b1f528f326f5194c012f32eb30135c7c2c9.png", - "aggregators": ["Socket", "Rubic", "Rango", "SushiSwap"], - "occurrences": 4 - }, - "0x7c28f627ea3aec8b882b51eb1935f66e5b875714": { - "address": "0x7c28f627ea3aec8b882b51eb1935f66e5b875714", - "symbol": "PAINT", - "decimals": 18, - "name": "MurAll", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x7c28f627ea3aec8b882b51eb1935f66e5b875714.png", - "aggregators": ["Socket", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0x4fdce518fe527439fe76883e6b51a1c522b61b7c": { - "address": "0x4fdce518fe527439fe76883e6b51a1c522b61b7c", - "symbol": "COR", - "decimals": 18, - "name": "Coreto", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x4fdce518fe527439fe76883e6b51a1c522b61b7c.png", - "aggregators": ["Socket", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0xe6b9d092223f39013656702a40dbe6b7decc5746": { - "address": "0xe6b9d092223f39013656702a40dbe6b7decc5746", - "symbol": "FEVR", - "decimals": 18, - "name": "RealFevr", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0xe6b9d092223f39013656702a40dbe6b7decc5746.png", - "aggregators": ["Socket", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0x382586651f043cbdec7bb586e367d77b26d7d149": { - "address": "0x382586651f043cbdec7bb586e367d77b26d7d149", - "symbol": "WGC", - "decimals": 6, - "name": "Wild Goat Coin", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x382586651f043cbdec7bb586e367d77b26d7d149.png", - "aggregators": ["Socket", "Rubic", "Rango", "SushiSwap"], - "occurrences": 4 - }, - "0x8a2870fb69a90000d6439b7adfb01d4ba383a415": { - "address": "0x8a2870fb69a90000d6439b7adfb01d4ba383a415", - "symbol": "DEGEN", - "decimals": 18, - "name": "DEGEN Index", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x8a2870fb69a90000d6439b7adfb01d4ba383a415.png", - "aggregators": ["Socket", "Rubic", "Rango", "SushiSwap"], - "occurrences": 4 - }, - "0xe9993763e0b7f7d915a62a5f22a6e151f91d98a8": { - "address": "0xe9993763e0b7f7d915a62a5f22a6e151f91d98a8", - "symbol": "TORG", - "decimals": 18, - "name": "TORG", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0xe9993763e0b7f7d915a62a5f22a6e151f91d98a8.png", - "aggregators": ["Socket", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0x46d502fac9aea7c5bc7b13c8ec9d02378c33d36f": { - "address": "0x46d502fac9aea7c5bc7b13c8ec9d02378c33d36f", - "symbol": "WSPP", - "decimals": 18, - "name": "WolfSafePoorPeople", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x46d502fac9aea7c5bc7b13c8ec9d02378c33d36f.png", - "aggregators": ["Rubic", "Rango", "Sonarwatch", "SushiSwap"], - "occurrences": 4 - }, - "0x40445993b0122456ec9e5c679f4f0485e1a5b474": { - "address": "0x40445993b0122456ec9e5c679f4f0485e1a5b474", - "symbol": "FDC", - "decimals": 18, - "name": "FDrive Coin", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x40445993b0122456ec9e5c679f4f0485e1a5b474.png", - "aggregators": ["CoinGecko", "LiFi", "Rubic"], - "occurrences": 3 - }, - "0xae840deab9916d80fadf42e218119a6051468169": { - "address": "0xae840deab9916d80fadf42e218119a6051468169", - "symbol": "EFI", - "decimals": 18, - "name": "EFI", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0xae840deab9916d80fadf42e218119a6051468169.png", - "aggregators": ["CoinGecko", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x231878d973c09fbcc0ca2239fffb717795402cb4": { - "address": "0x231878d973c09fbcc0ca2239fffb717795402cb4", - "symbol": "RUSK", - "decimals": 18, - "name": "RUSK", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x231878d973c09fbcc0ca2239fffb717795402cb4.png", - "aggregators": ["CoinGecko", "Rubic", "Rango"], - "occurrences": 3 - }, - "0xcc44674022a792794d219847362bb95c661937a9": { - "address": "0xcc44674022a792794d219847362bb95c661937a9", - "symbol": "ROU", - "decimals": 18, - "name": "ROU", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0xcc44674022a792794d219847362bb95c661937a9.png", - "aggregators": ["CoinGecko", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x25ed22a5b6804cd1fbf750f005d5c4c80763c0fb": { - "address": "0x25ed22a5b6804cd1fbf750f005d5c4c80763c0fb", - "symbol": "FPL", - "decimals": 18, - "name": "Fanpla", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x25ed22a5b6804cd1fbf750f005d5c4c80763c0fb.png", - "aggregators": ["CoinGecko", "LiFi", "Rubic"], - "occurrences": 3 - }, - "0x978bf545a15e29595e6c583aefa76f5fe71070c2": { - "address": "0x978bf545a15e29595e6c583aefa76f5fe71070c2", - "symbol": "LOI", - "decimals": 18, - "name": "Loop Of Infinity", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x978bf545a15e29595e6c583aefa76f5fe71070c2.png", - "aggregators": ["CoinGecko", "Rubic", "Sonarwatch"], - "occurrences": 3 - }, - "0x94b959c93761835f634b8d6e655070c58e2caa12": { - "address": "0x94b959c93761835f634b8d6e655070c58e2caa12", - "symbol": "MEN", - "decimals": 6, - "name": "DAC Platform", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x94b959c93761835f634b8d6e655070c58e2caa12.png", - "aggregators": ["Metamask", "Rubic", "Sonarwatch"], - "occurrences": 3 - }, - "0xc750c8a5115cc76a1682c3c0d83e7eb281da0d5a": { - "address": "0xc750c8a5115cc76a1682c3c0d83e7eb281da0d5a", - "symbol": "CCASH", - "decimals": 18, - "name": "C-Cash", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0xc750c8a5115cc76a1682c3c0d83e7eb281da0d5a.png", - "aggregators": ["CoinGecko", "LiFi", "Rubic"], - "occurrences": 3 - }, - "0x14f74e11f0d9d469a4c9d686cfb18a771b31d94f": { - "address": "0x14f74e11f0d9d469a4c9d686cfb18a771b31d94f", - "symbol": "ONLIVE", - "decimals": 18, - "name": "ONLIVE", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x14f74e11f0d9d469a4c9d686cfb18a771b31d94f.png", - "aggregators": ["CoinGecko", "Rubic", "Rango"], - "occurrences": 3 - }, - "0xe6800cf598015a3ec5dd534f328f349da239bc78": { - "address": "0xe6800cf598015a3ec5dd534f328f349da239bc78", - "symbol": "DRESS", - "decimals": 18, - "name": "DRESS", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0xe6800cf598015a3ec5dd534f328f349da239bc78.png", - "aggregators": ["CoinGecko", "Rubic", "Rango"], - "occurrences": 3 - }, - "0xcc0643b786d8b566a98e85dde48077239eaa8598": { - "address": "0xcc0643b786d8b566a98e85dde48077239eaa8598", - "symbol": "AVR", - "decimals": 18, - "name": "Averra", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0xcc0643b786d8b566a98e85dde48077239eaa8598.png", - "aggregators": ["CoinGecko", "LiFi", "Rubic"], - "occurrences": 3 - }, - "0x17c7c74e0cd779f33cb5a6e8ab39de46168e9ef7": { - "address": "0x17c7c74e0cd779f33cb5a6e8ab39de46168e9ef7", - "symbol": "CFR", - "decimals": 18, - "name": "CFR", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x17c7c74e0cd779f33cb5a6e8ab39de46168e9ef7.png", - "aggregators": ["CoinGecko", "Rubic", "Rango"], - "occurrences": 3 - }, - "0xe9c21de62c5c5d0ceacce2762bf655afdceb7ab3": { - "address": "0xe9c21de62c5c5d0ceacce2762bf655afdceb7ab3", - "symbol": "AKRE", - "decimals": 18, - "name": "AKRE", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0xe9c21de62c5c5d0ceacce2762bf655afdceb7ab3.png", - "aggregators": ["CoinGecko", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x7b43e83a5c5d60a7b8886b4205ace88d1f4e2803": { - "address": "0x7b43e83a5c5d60a7b8886b4205ace88d1f4e2803", - "symbol": "PAPARAZZI", - "decimals": 18, - "name": "PAPARAZZI", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x7b43e83a5c5d60a7b8886b4205ace88d1f4e2803.png", - "aggregators": ["CoinGecko", "Rubic", "Rango"], - "occurrences": 3 - }, - "0xb8d5f5f236c24e09c7f55eec313818742ac4cf79": { - "address": "0xb8d5f5f236c24e09c7f55eec313818742ac4cf79", - "symbol": "VSX", - "decimals": 18, - "name": "VSX", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0xb8d5f5f236c24e09c7f55eec313818742ac4cf79.png", - "aggregators": ["CoinGecko", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x380df89d883776ba04f65569f1d1a6e218bfc2df": { - "address": "0x380df89d883776ba04f65569f1d1a6e218bfc2df", - "symbol": "AWK", - "decimals": 18, - "name": "AWK", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x380df89d883776ba04f65569f1d1a6e218bfc2df.png", - "aggregators": ["CoinGecko", "Rubic", "Rango"], - "occurrences": 3 - }, - "0xb4e876f6c9d5ba104112d222083527b1dad17103": { - "address": "0xb4e876f6c9d5ba104112d222083527b1dad17103", - "symbol": "VOLLAR", - "decimals": 8, - "name": "VDS", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0xb4e876f6c9d5ba104112d222083527b1dad17103.png", - "aggregators": ["CoinGecko", "LiFi", "Rubic"], - "occurrences": 3 - }, - "0x68727e573d21a49c767c3c86a92d9f24bd933c99": { - "address": "0x68727e573d21a49c767c3c86a92d9f24bd933c99", - "symbol": "EMXN", - "decimals": 6, - "name": "Telcoin MXN", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x68727e573d21a49c767c3c86a92d9f24bd933c99.png", - "aggregators": ["CoinGecko", "LiFi", "Rubic"], - "occurrences": 3 - }, - "0x9b765735c82bb00085e9dbf194f20e3fa754258e": { - "address": "0x9b765735c82bb00085e9dbf194f20e3fa754258e", - "symbol": "CARR", - "decimals": 18, - "name": "CARR", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x9b765735c82bb00085e9dbf194f20e3fa754258e.png", - "aggregators": ["CoinGecko", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x1a3c7d6cb66299f769040e6d4cf0c1945f6a2f32": { - "address": "0x1a3c7d6cb66299f769040e6d4cf0c1945f6a2f32", - "symbol": "KIA", - "decimals": 18, - "name": "KIATOKEN", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x1a3c7d6cb66299f769040e6d4cf0c1945f6a2f32.png", - "aggregators": ["CoinGecko", "Rubic", "Sonarwatch"], - "occurrences": 3 - }, - "0xa8bf0b92be0338794d2e3b180b9643a1f0eb2914": { - "address": "0xa8bf0b92be0338794d2e3b180b9643a1f0eb2914", - "symbol": "ERA", - "decimals": 18, - "name": "Erable°", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0xa8bf0b92be0338794d2e3b180b9643a1f0eb2914.png", - "aggregators": ["CoinGecko", "Rubic", "Sonarwatch"], - "occurrences": 3 - }, - "0x2278485e81b735e0f79fdca936f901d0727e6603": { - "address": "0x2278485e81b735e0f79fdca936f901d0727e6603", - "symbol": "ARSE", - "decimals": 6, - "name": "ARSe", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x2278485e81b735e0f79fdca936f901d0727e6603.png", - "aggregators": ["CoinGecko", "LiFi", "Rubic"], - "occurrences": 3 - }, - "0x070c3e8a408bbacc61f40ef023d30e173f268f5e": { - "address": "0x070c3e8a408bbacc61f40ef023d30e173f268f5e", - "symbol": "GMTO", - "decimals": 18, - "name": "Game Meteor Coin", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x070c3e8a408bbacc61f40ef023d30e173f268f5e.png", - "aggregators": ["CoinGecko", "Rubic", "Rango"], - "occurrences": 3 - }, - "0xc91953e110ebb0039859304a0d1b64f8450763fc": { - "address": "0xc91953e110ebb0039859304a0d1b64f8450763fc", - "symbol": "DCI", - "decimals": 18, - "name": "DCI", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0xc91953e110ebb0039859304a0d1b64f8450763fc.png", - "aggregators": ["CoinGecko", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x433cde5a82b5e0658da3543b47a375dffd126eb6": { - "address": "0x433cde5a82b5e0658da3543b47a375dffd126eb6", - "symbol": "GOON", - "decimals": 18, - "name": "GOON", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x433cde5a82b5e0658da3543b47a375dffd126eb6.png", - "aggregators": ["CoinGecko", "Rubic", "Rango"], - "occurrences": 3 - }, - "0xd32dfefd9d00f772db460a3b542f0a736d80662f": { - "address": "0xd32dfefd9d00f772db460a3b542f0a736d80662f", - "symbol": "LPI", - "decimals": 18, - "name": "LOCKON Passive Index", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0xd32dfefd9d00f772db460a3b542f0a736d80662f.png", - "aggregators": ["CoinGecko", "LiFi", "Rubic"], - "occurrences": 3 - }, - "0xe1b0e0f0427af6f943cdeb6304eed259d152fc78": { - "address": "0xe1b0e0f0427af6f943cdeb6304eed259d152fc78", - "symbol": "OVO", - "decimals": 18, - "name": "Ovato", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0xe1b0e0f0427af6f943cdeb6304eed259d152fc78.png", - "aggregators": ["CoinGecko", "LiFi", "Rubic"], - "occurrences": 3 - }, - "0x570a42849ac23e3fdc45d8c31ddf7c09283e702d": { - "address": "0x570a42849ac23e3fdc45d8c31ddf7c09283e702d", - "symbol": "XRS", - "decimals": 18, - "name": "Xauras token", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x570a42849ac23e3fdc45d8c31ddf7c09283e702d.png", - "aggregators": ["CoinGecko", "LiFi", "Rubic"], - "occurrences": 3 - }, - "0xd87af7b418d64ff2cde48d890285ba64fc6e115f": { - "address": "0xd87af7b418d64ff2cde48d890285ba64fc6e115f", - "symbol": "DTEC", - "decimals": 18, - "name": "DTEC", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0xd87af7b418d64ff2cde48d890285ba64fc6e115f.png", - "aggregators": ["CoinGecko", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x8708cceb45b218e93a4d2cfc95eb8250ab13fa9d": { - "address": "0x8708cceb45b218e93a4d2cfc95eb8250ab13fa9d", - "symbol": "DVO", - "decimals": 18, - "name": "DVO", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x8708cceb45b218e93a4d2cfc95eb8250ab13fa9d.png", - "aggregators": ["CoinGecko", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x1adcef5c780d8895ac77e6ee9239b4b3ecb76da2": { - "address": "0x1adcef5c780d8895ac77e6ee9239b4b3ecb76da2", - "symbol": "TOTEM", - "decimals": 6, - "name": "DragonMaster Totem", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x1adcef5c780d8895ac77e6ee9239b4b3ecb76da2.png", - "aggregators": ["CoinGecko", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x14913815bcfde78baead2111f463d038ac9c2949": { - "address": "0x14913815bcfde78baead2111f463d038ac9c2949", - "symbol": "EUSD", - "decimals": 6, - "name": "EUSD", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x14913815bcfde78baead2111f463d038ac9c2949.png", - "aggregators": ["CoinGecko", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x4e24c684a90f2c1f9030a5608a6c3a6fa4e854f5": { - "address": "0x4e24c684a90f2c1f9030a5608a6c3a6fa4e854f5", - "symbol": "ORBD", - "decimals": 18, - "name": "OrbitEdge", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x4e24c684a90f2c1f9030a5608a6c3a6fa4e854f5.png", - "aggregators": ["CoinGecko", "LiFi", "Rubic"], - "occurrences": 3 - }, - "0x3deb0c60f0be9d9b99da83a2b6b2ee790f5af37a": { - "address": "0x3deb0c60f0be9d9b99da83a2b6b2ee790f5af37a", - "symbol": "USDW", - "decimals": 18, - "name": "USD DWIN", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x3deb0c60f0be9d9b99da83a2b6b2ee790f5af37a.png", - "aggregators": ["CoinGecko", "LiFi", "Rubic"], - "occurrences": 3 - }, - "0xf197ffc28c23e0309b5559e7a166f2c6164c80aa": { - "address": "0xf197ffc28c23e0309b5559e7a166f2c6164c80aa", - "symbol": "MXNB", - "decimals": 6, - "name": "MXNB", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0xf197ffc28c23e0309b5559e7a166f2c6164c80aa.png", - "aggregators": ["CoinGecko", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x6eaea1ed457e06f8cf6ee7adf34e621844c3b0fc": { - "address": "0x6eaea1ed457e06f8cf6ee7adf34e621844c3b0fc", - "symbol": "FXNESS", - "decimals": 18, - "name": "NESS (FXERC20)", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x6eaea1ed457e06f8cf6ee7adf34e621844c3b0fc.png", - "aggregators": ["CoinGecko", "LiFi", "Rubic"], - "occurrences": 3 - }, - "0x79103b27fc21c81f7c6cb5caff78901b45a972d5": { - "address": "0x79103b27fc21c81f7c6cb5caff78901b45a972d5", - "symbol": "BTC.ℏ[0X]", - "decimals": 8, - "name": "BTC.ℏ[0X]", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x79103b27fc21c81f7c6cb5caff78901b45a972d5.png", - "aggregators": ["CoinGecko", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x0f13fc8a93ab8edc9fde0a1e19aac693161599a5": { - "address": "0x0f13fc8a93ab8edc9fde0a1e19aac693161599a5", - "symbol": "SCAI", - "decimals": 18, - "name": "SecureChain AI", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x0f13fc8a93ab8edc9fde0a1e19aac693161599a5.png", - "aggregators": ["CoinGecko", "LiFi", "Rubic"], - "occurrences": 3 - }, - "0xc53ac24320e3a54c7211e4993c8095078a0cb3cf": { - "address": "0xc53ac24320e3a54c7211e4993c8095078a0cb3cf", - "symbol": "WGC", - "decimals": 6, - "name": "Wild Goat Coin", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0xc53ac24320e3a54c7211e4993c8095078a0cb3cf.png", - "aggregators": ["CoinGecko", "Socket", "Rubic"], - "occurrences": 3 - }, - "0xdcffa515620def25d18f8d2c8aeca67f9ad31f58": { - "address": "0xdcffa515620def25d18f8d2c8aeca67f9ad31f58", - "symbol": "SAVI", - "decimals": 18, - "name": "SAVI", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0xdcffa515620def25d18f8d2c8aeca67f9ad31f58.png", - "aggregators": ["CoinGecko", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x5e817f2abccb9095585d26c2a3ce234a440574fc": { - "address": "0x5e817f2abccb9095585d26c2a3ce234a440574fc", - "symbol": "FRNT", - "decimals": 6, - "name": "Frontier Stable Token", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x5e817f2abccb9095585d26c2a3ce234a440574fc.png", - "aggregators": ["CoinGecko", "LiFi", "Rubic"], - "occurrences": 3 - }, - "0xa0a675d08ca63066f48408136f8a71fc65be4afc": { - "address": "0xa0a675d08ca63066f48408136f8a71fc65be4afc", - "symbol": "BZR", - "decimals": 18, - "name": "Bazaars", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0xa0a675d08ca63066f48408136f8a71fc65be4afc.png", - "aggregators": ["CoinGecko", "LiFi", "Rubic"], - "occurrences": 3 - }, - "0x834df4c1d8f51be24322e39e4766697be015512f": { - "address": "0x834df4c1d8f51be24322e39e4766697be015512f", - "symbol": "CETES", - "decimals": 6, - "name": "Etherfuse CETES", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x834df4c1d8f51be24322e39e4766697be015512f.png", - "aggregators": ["CoinGecko", "LiFi", "Rubic"], - "occurrences": 3 - }, - "0x9246a5f10a79a5a939b0c2a75a3ad196aafdb43b": { - "address": "0x9246a5f10a79a5a939b0c2a75a3ad196aafdb43b", - "symbol": "BETS", - "decimals": 18, - "name": "BetSwirl Token", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x9246a5f10a79a5a939b0c2a75a3ad196aafdb43b.png", - "aggregators": ["QuickSwap", "Socket", "Rubic"], - "occurrences": 3 - }, - "0x5c4b7ccbf908e64f32e12c6650ec0c96d717f03f": { - "address": "0x5c4b7ccbf908e64f32e12c6650ec0c96d717f03f", - "symbol": "BNB", - "decimals": 18, - "name": "BNB", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x5c4b7ccbf908e64f32e12c6650ec0c96d717f03f.png", - "aggregators": ["QuickSwap", "Socket", "Rango"], - "occurrences": 3 - }, - "0x6f06e6bed64cf4c4187c06ee2a4732f6a171bc4e": { - "address": "0x6f06e6bed64cf4c4187c06ee2a4732f6a171bc4e", - "symbol": "FOOD", - "decimals": 18, - "name": "FoodChain Global", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x6f06e6bed64cf4c4187c06ee2a4732f6a171bc4e.png", - "aggregators": ["QuickSwap", "Rubic", "Rango"], - "occurrences": 3 - }, - "0xb85517b87bf64942adf3a0b9e4c71e4bc5caa4e5": { - "address": "0xb85517b87bf64942adf3a0b9e4c71e4bc5caa4e5", - "symbol": "FTM", - "decimals": 18, - "name": "FTM", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0xb85517b87bf64942adf3a0b9e4c71e4bc5caa4e5.png", - "aggregators": ["QuickSwap", "Socket", "Rango"], - "occurrences": 3 - }, - "0x3801c3b3b5c98f88a9c9005966aa96aa440b9afc": { - "address": "0x3801c3b3b5c98f88a9c9005966aa96aa440b9afc", - "symbol": "GLTR", - "decimals": 18, - "name": "GAX Liquidity Token Reward", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x3801c3b3b5c98f88a9c9005966aa96aa440b9afc.png", - "aggregators": ["QuickSwap", "Rubic", "Rango"], - "occurrences": 3 - }, - "0xff2382bd52efacef02cc895bcbfc4618608aa56f": { - "address": "0xff2382bd52efacef02cc895bcbfc4618608aa56f", - "symbol": "ORARE", - "decimals": 18, - "name": "OneRare", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0xff2382bd52efacef02cc895bcbfc4618608aa56f.png", - "aggregators": ["QuickSwap", "Rubic", "Rango"], - "occurrences": 3 - }, - "0xa936e1f747d14fc30d08272d065c8aef4ab7f810": { - "address": "0xa936e1f747d14fc30d08272d065c8aef4ab7f810", - "symbol": "WLD", - "decimals": 18, - "name": "wLitiDAO", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0xa936e1f747d14fc30d08272d065c8aef4ab7f810.png", - "aggregators": ["QuickSwap", "Socket", "Rubic"], - "occurrences": 3 - }, - "0xe46b4a950c389e80621d10dfc398e91613c7e25e": { - "address": "0xe46b4a950c389e80621d10dfc398e91613c7e25e", - "symbol": "PFI", - "decimals": 18, - "name": "PartyFinance", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0xe46b4a950c389e80621d10dfc398e91613c7e25e.png", - "aggregators": ["1inch", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x486ffaf06a681bf22b5209e9ffce722662a60e8c": { - "address": "0x486ffaf06a681bf22b5209e9ffce722662a60e8c", - "symbol": "FLY", - "decimals": 18, - "name": "FlyCoin (PoS)", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x486ffaf06a681bf22b5209e9ffce722662a60e8c.png", - "aggregators": ["LiFi", "Socket", "Rubic"], - "occurrences": 3 - }, - "0x06480acaae64bcfa6da8fd176f60982584385090": { - "address": "0x06480acaae64bcfa6da8fd176f60982584385090", - "symbol": "IVY", - "decimals": 18, - "name": "IVY Trading System", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x06480acaae64bcfa6da8fd176f60982584385090.png", - "aggregators": ["LiFi", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x3ad736904e9e65189c3000c7dd2c8ac8bb7cd4e3": { - "address": "0x3ad736904e9e65189c3000c7dd2c8ac8bb7cd4e3", - "symbol": "MATICX", - "decimals": 18, - "name": "Super MATIC", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x3ad736904e9e65189c3000c7dd2c8ac8bb7cd4e3.png", - "aggregators": ["LiFi", "Socket", "Rubic"], - "occurrences": 3 - }, - "0xccbe9b810d6574701d324fd6dbe0a1b68f9d5bf7": { - "address": "0xccbe9b810d6574701d324fd6dbe0a1b68f9d5bf7", - "symbol": "STACK", - "decimals": 18, - "name": "Stacker Ventures Token (PoS)", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0xccbe9b810d6574701d324fd6dbe0a1b68f9d5bf7.png", - "aggregators": ["LiFi", "Socket", "Rubic"], - "occurrences": 3 - }, - "0x3c5a5885f6ee4acc2597069fe3c19f49c6efba96": { - "address": "0x3c5a5885f6ee4acc2597069fe3c19f49c6efba96", - "symbol": "KRIDA", - "decimals": 18, - "name": "Krida Fans", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x3c5a5885f6ee4acc2597069fe3c19f49c6efba96.png", - "aggregators": ["LiFi", "Rubic", "Rango"], - "occurrences": 3 - }, - "0xf6372cdb9c1d3674e83842e3800f2a62ac9f3c66": { - "address": "0xf6372cdb9c1d3674e83842e3800f2a62ac9f3c66", - "symbol": "IOTX", - "decimals": 18, - "name": "IoTeX Network (PoS)", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0xf6372cdb9c1d3674e83842e3800f2a62ac9f3c66.png", - "aggregators": ["LiFi", "Socket", "Rubic"], - "occurrences": 3 - }, - "0x01fa5b3a5d77bcf705dd505bbcbb34bce310e7fe": { - "address": "0x01fa5b3a5d77bcf705dd505bbcbb34bce310e7fe", - "symbol": "AXI", - "decimals": 18, - "name": "Axioms (PoS)", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x01fa5b3a5d77bcf705dd505bbcbb34bce310e7fe.png", - "aggregators": ["LiFi", "Socket", "Rubic"], - "occurrences": 3 - }, - "0x0cfc9a713a5c17bc8a5ff0379467f6558bacd0e0": { - "address": "0x0cfc9a713a5c17bc8a5ff0379467f6558bacd0e0", - "symbol": "GLQ", - "decimals": 18, - "name": "GraphLinq (PoS)", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x0cfc9a713a5c17bc8a5ff0379467f6558bacd0e0.png", - "aggregators": ["LiFi", "Socket", "Rubic"], - "occurrences": 3 - }, - "0x9a41e03fef7f16f552c6fba37ffa7590fb1ec0c4": { - "address": "0x9a41e03fef7f16f552c6fba37ffa7590fb1ec0c4", - "symbol": "CHAIN", - "decimals": 18, - "name": "Arch Blockchains (PoS)", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x9a41e03fef7f16f552c6fba37ffa7590fb1ec0c4.png", - "aggregators": ["LiFi", "Socket", "Rubic"], - "occurrences": 3 - }, - "0x07cc1cc3628cc1615120df781ef9fc8ec2feae09": { - "address": "0x07cc1cc3628cc1615120df781ef9fc8ec2feae09", - "symbol": "BEPRO", - "decimals": 18, - "name": "BetProtocolToken (PoS)", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x07cc1cc3628cc1615120df781ef9fc8ec2feae09.png", - "aggregators": ["LiFi", "Socket", "Rubic"], - "occurrences": 3 - }, - "0x030a6b1da67963fc22265d8c6686d1878d581b6b": { - "address": "0x030a6b1da67963fc22265d8c6686d1878d581b6b", - "symbol": "PASS", - "decimals": 6, - "name": "Blockpass (PoS)", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x030a6b1da67963fc22265d8c6686d1878d581b6b.png", - "aggregators": ["LiFi", "Socket", "Rubic"], - "occurrences": 3 - }, - "0x190eb8a183d22a4bdf278c6791b152228857c033": { - "address": "0x190eb8a183d22a4bdf278c6791b152228857c033", - "symbol": "AGIX", - "decimals": 8, - "name": "SingularityNET Token (PoS)", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x190eb8a183d22a4bdf278c6791b152228857c033.png", - "aggregators": ["LiFi", "Socket", "Rubic"], - "occurrences": 3 - }, - "0x1e289178612f5b6d32f692e312dcf783c74b2162": { - "address": "0x1e289178612f5b6d32f692e312dcf783c74b2162", - "symbol": "ISP", - "decimals": 18, - "name": "Ispolink Token (PoS)", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x1e289178612f5b6d32f692e312dcf783c74b2162.png", - "aggregators": ["LiFi", "Socket", "Rubic"], - "occurrences": 3 - }, - "0x769434dca303597c8fc4997bf3dab233e961eda2": { - "address": "0x769434dca303597c8fc4997bf3dab233e961eda2", - "symbol": "XSGD", - "decimals": 6, - "name": "XSGD (PoS)", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x769434dca303597c8fc4997bf3dab233e961eda2.png", - "aggregators": ["LiFi", "Socket", "Rubic"], - "occurrences": 3 - }, - "0x2934b36ca9a4b31e633c5be670c8c8b28b6aa015": { - "address": "0x2934b36ca9a4b31e633c5be670c8c8b28b6aa015", - "symbol": "THX", - "decimals": 18, - "name": "THX", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x2934b36ca9a4b31e633c5be670c8c8b28b6aa015.png", - "aggregators": ["LiFi", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x34cba1561424b192f263883ba2b8ccbbc12bb13f": { - "address": "0x34cba1561424b192f263883ba2b8ccbbc12bb13f", - "symbol": "MOAR", - "decimals": 18, - "name": "MOAR Finance (PoS)", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x34cba1561424b192f263883ba2b8ccbbc12bb13f.png", - "aggregators": ["LiFi", "Socket", "Rubic"], - "occurrences": 3 - }, - "0xada58df0f643d959c2a47c9d4d4c1a4defe3f11c": { - "address": "0xada58df0f643d959c2a47c9d4d4c1a4defe3f11c", - "symbol": "CRO", - "decimals": 8, - "name": "CRO (PoS)", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0xada58df0f643d959c2a47c9d4d4c1a4defe3f11c.png", - "aggregators": ["LiFi", "Socket", "Rubic"], - "occurrences": 3 - }, - "0x26373ec913876c9e6d38494dde458cb8649cb30c": { - "address": "0x26373ec913876c9e6d38494dde458cb8649cb30c", - "symbol": "OJA", - "decimals": 18, - "name": "Ojamu", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x26373ec913876c9e6d38494dde458cb8649cb30c.png", - "aggregators": ["LiFi", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x60e6895184448f3e8ef509d083e3cc3ac31f82fd": { - "address": "0x60e6895184448f3e8ef509d083e3cc3ac31f82fd", - "symbol": "KTX", - "decimals": 18, - "name": "KwikTrust (PoS)", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x60e6895184448f3e8ef509d083e3cc3ac31f82fd.png", - "aggregators": ["LiFi", "Rubic", "Rango"], - "occurrences": 3 - }, - "0xf84bd51eab957c2e7b7d646a3427c5a50848281d": { - "address": "0xf84bd51eab957c2e7b7d646a3427c5a50848281d", - "symbol": "AGAR", - "decimals": 8, - "name": "AGAR", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0xf84bd51eab957c2e7b7d646a3427c5a50848281d.png", - "aggregators": ["LiFi", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x0527c8c43250279d6eb74da1078193f5316fc9a0": { - "address": "0x0527c8c43250279d6eb74da1078193f5316fc9a0", - "symbol": "PYD", - "decimals": 18, - "name": "PolyQuity Dollar", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x0527c8c43250279d6eb74da1078193f5316fc9a0.png", - "aggregators": ["LiFi", "Rango", "SushiSwap"], - "occurrences": 3 - }, - "0xd6d3b4254b4526c3095d8ab00b75f186c56dd72c": { - "address": "0xd6d3b4254b4526c3095d8ab00b75f186c56dd72c", - "symbol": "IONS", - "decimals": 18, - "name": "Lithium Ventures", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0xd6d3b4254b4526c3095d8ab00b75f186c56dd72c.png", - "aggregators": ["LiFi", "Rubic", "Rango"], - "occurrences": 3 - }, - "0xe21b9bda4ecef9e4652bc5c6863f731c2151ef28": { - "address": "0xe21b9bda4ecef9e4652bc5c6863f731c2151ef28", - "symbol": "KTON", - "decimals": 18, - "name": "Darwinia Commitment Token (PoS)", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0xe21b9bda4ecef9e4652bc5c6863f731c2151ef28.png", - "aggregators": ["LiFi", "Socket", "Rubic"], - "occurrences": 3 - }, - "0xd43be54c1aedf7ee4099104f2dae4ea88b18a249": { - "address": "0xd43be54c1aedf7ee4099104f2dae4ea88b18a249", - "symbol": "TRAXX", - "decimals": 18, - "name": "TRAXX", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0xd43be54c1aedf7ee4099104f2dae4ea88b18a249.png", - "aggregators": ["LiFi", "Socket", "Rubic"], - "occurrences": 3 - }, - "0xeaecc18198a475c921b24b8a6c1c1f0f5f3f7ea0": { - "address": "0xeaecc18198a475c921b24b8a6c1c1f0f5f3f7ea0", - "symbol": "SEED", - "decimals": 18, - "name": "Seed (PoS)", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0xeaecc18198a475c921b24b8a6c1c1f0f5f3f7ea0.png", - "aggregators": ["LiFi", "Socket", "Rubic"], - "occurrences": 3 - }, - "0xc9c1c1c20b3658f8787cc2fd702267791f224ce1": { - "address": "0xc9c1c1c20b3658f8787cc2fd702267791f224ce1", - "symbol": "FTM", - "decimals": 18, - "name": "Fantom Token (PoS)", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0xc9c1c1c20b3658f8787cc2fd702267791f224ce1.png", - "aggregators": ["LiFi", "Socket", "Rubic"], - "occurrences": 3 - }, - "0x9a37814d1ec68ca5f8aab205f628869f3926ce3e": { - "address": "0x9a37814d1ec68ca5f8aab205f628869f3926ce3e", - "symbol": "LAYER", - "decimals": 18, - "name": "Unilayer (PoS)", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x9a37814d1ec68ca5f8aab205f628869f3926ce3e.png", - "aggregators": ["LiFi", "Socket", "Rubic"], - "occurrences": 3 - }, - "0xe8a05e85883f9663b18a38d7aa89853deaba56e3": { - "address": "0xe8a05e85883f9663b18a38d7aa89853deaba56e3", - "symbol": "VOLT", - "decimals": 18, - "name": "VOLTAGE (PoS)", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0xe8a05e85883f9663b18a38d7aa89853deaba56e3.png", - "aggregators": ["LiFi", "Socket", "Rubic"], - "occurrences": 3 - }, - "0x2ce13e4199443fdfff531abb30c9b6594446bbc7": { - "address": "0x2ce13e4199443fdfff531abb30c9b6594446bbc7", - "symbol": "RVF", - "decimals": 18, - "name": "Rocket Vault (PoS)", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x2ce13e4199443fdfff531abb30c9b6594446bbc7.png", - "aggregators": ["LiFi", "Socket", "Rubic"], - "occurrences": 3 - }, - "0x1fcbe5937b0cc2adf69772d228fa4205acf4d9b2": { - "address": "0x1fcbe5937b0cc2adf69772d228fa4205acf4d9b2", - "symbol": "BADGER", - "decimals": 18, - "name": "Badger (PoS)", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x1fcbe5937b0cc2adf69772d228fa4205acf4d9b2.png", - "aggregators": ["LiFi", "Socket", "Rubic"], - "occurrences": 3 - }, - "0x5f5f7ca63a9d2c5200bc03ca3335a975d8f771d9": { - "address": "0x5f5f7ca63a9d2c5200bc03ca3335a975d8f771d9", - "symbol": "BITS", - "decimals": 18, - "name": "BitStarters", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x5f5f7ca63a9d2c5200bc03ca3335a975d8f771d9.png", - "aggregators": ["Socket", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x280053c54006a624c26989cb8354fa4cb86f14d1": { - "address": "0x280053c54006a624c26989cb8354fa4cb86f14d1", - "symbol": "MIND", - "decimals": 18, - "name": "Morpheus Infrastructure Node(PoS)", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x280053c54006a624c26989cb8354fa4cb86f14d1.png", - "aggregators": ["Socket", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x2c826035c1c36986117a0e949bd6ad4bab54afe2": { - "address": "0x2c826035c1c36986117a0e949bd6ad4bab54afe2", - "symbol": "XIDR", - "decimals": 6, - "name": "XIDR", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x2c826035c1c36986117a0e949bd6ad4bab54afe2.png", - "aggregators": ["Socket", "Rubic", "Rango"], - "occurrences": 3 - }, - "0xce6bf09e5c7a3e65b84f88dcc6475c88d38ba5ef": { - "address": "0xce6bf09e5c7a3e65b84f88dcc6475c88d38ba5ef", - "symbol": "OPCT", - "decimals": 18, - "name": "Opacity (PoS)", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0xce6bf09e5c7a3e65b84f88dcc6475c88d38ba5ef.png", - "aggregators": ["Socket", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x3963a400b42377376d6c3d92ddf2d6288d8ee0d6": { - "address": "0x3963a400b42377376d6c3d92ddf2d6288d8ee0d6", - "symbol": "EQ9", - "decimals": 18, - "name": "Equals9", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x3963a400b42377376d6c3d92ddf2d6288d8ee0d6.png", - "aggregators": ["Socket", "Rubic", "Rango"], - "occurrences": 3 - }, - "0xf0b2b2d73a7c070e5f44a4e12b3f6a51949a3459": { - "address": "0xf0b2b2d73a7c070e5f44a4e12b3f6a51949a3459", - "symbol": "UNI", - "decimals": 18, - "name": "UNILAPSE", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0xf0b2b2d73a7c070e5f44a4e12b3f6a51949a3459.png", - "aggregators": ["Socket", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x18c3eb88c972390120bb4abd2f705c48f62e212c": { - "address": "0x18c3eb88c972390120bb4abd2f705c48f62e212c", - "symbol": "DEFI", - "decimals": 18, - "name": "Defiway Token", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x18c3eb88c972390120bb4abd2f705c48f62e212c.png", - "aggregators": ["Socket", "Rubic", "Rango"], - "occurrences": 3 - }, - "0xa7305ae84519ff8be02484cda45834c4e7d13dd6": { - "address": "0xa7305ae84519ff8be02484cda45834c4e7d13dd6", - "symbol": "UFARM", - "decimals": 18, - "name": "UniFarm", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0xa7305ae84519ff8be02484cda45834c4e7d13dd6.png", - "aggregators": ["Socket", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x9c6bfedc14b5c23e3900889436edca7805170f01": { - "address": "0x9c6bfedc14b5c23e3900889436edca7805170f01", - "symbol": "PHX", - "decimals": 18, - "name": "PHX", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x9c6bfedc14b5c23e3900889436edca7805170f01.png", - "aggregators": ["Socket", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x5f0e650708e060cbe092547f53dfaf1e17f0b371": { - "address": "0x5f0e650708e060cbe092547f53dfaf1e17f0b371", - "symbol": "FOXE", - "decimals": 18, - "name": "Fox Europe", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x5f0e650708e060cbe092547f53dfaf1e17f0b371.png", - "aggregators": ["Socket", "Rubic", "Rango"], - "occurrences": 3 - }, - "0xb4357054c3da8d46ed642383f03139ac7f090343": { - "address": "0xb4357054c3da8d46ed642383f03139ac7f090343", - "symbol": "PORT3", - "decimals": 18, - "name": "Port3 Network", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0xb4357054c3da8d46ed642383f03139ac7f090343.png", - "aggregators": ["Socket", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x04565fe9aa3ae571ada8e1bebf8282c4e5247b2a": { - "address": "0x04565fe9aa3ae571ada8e1bebf8282c4e5247b2a", - "symbol": "WGC", - "decimals": 6, - "name": "Wild Goat Coin", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x04565fe9aa3ae571ada8e1bebf8282c4e5247b2a.png", - "aggregators": ["Socket", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x411be1e071675df40fe1c08ca760bb7aa707cedf": { - "address": "0x411be1e071675df40fe1c08ca760bb7aa707cedf", - "symbol": "LFG", - "decimals": 18, - "name": "Gamerse", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x411be1e071675df40fe1c08ca760bb7aa707cedf.png", - "aggregators": ["Socket", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x5617604ba0a30e0ff1d2163ab94e50d8b6d0b0df": { - "address": "0x5617604ba0a30e0ff1d2163ab94e50d8b6d0b0df", - "symbol": "AX", - "decimals": 18, - "name": "AthleteX", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x5617604ba0a30e0ff1d2163ab94e50d8b6d0b0df.png", - "aggregators": ["Socket", "Rango", "SushiSwap"], - "occurrences": 3 - }, - "0x3f94618ad346f34f43e27f0cf46decbb0d396b1b": { - "address": "0x3f94618ad346f34f43e27f0cf46decbb0d396b1b", - "symbol": "FKR", - "decimals": 18, - "name": "Flicker", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x3f94618ad346f34f43e27f0cf46decbb0d396b1b.png", - "aggregators": ["Rubic", "Rango", "Sonarwatch"], - "occurrences": 3 - }, - "0x3b9e9100db1389c518d47c635d80a90ad4c4f41b": { - "address": "0x3b9e9100db1389c518d47c635d80a90ad4c4f41b", - "symbol": "FAN", - "decimals": 8, - "name": "Film.io", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x3b9e9100db1389c518d47c635d80a90ad4c4f41b.png", - "aggregators": ["Rubic", "Rango", "Sonarwatch"], - "occurrences": 3 - }, - "0xe77abb1e75d2913b2076dd16049992ffeaca5235": { - "address": "0xe77abb1e75d2913b2076dd16049992ffeaca5235", - "symbol": "DEOD", - "decimals": 18, - "name": "Decentrawood", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0xe77abb1e75d2913b2076dd16049992ffeaca5235.png", - "aggregators": ["Rubic", "Rango", "Sonarwatch"], - "occurrences": 3 - }, - "0xc1ab7e48fafee6b2596c65261392e59690ce7742": { - "address": "0xc1ab7e48fafee6b2596c65261392e59690ce7742", - "symbol": "ECET", - "decimals": 18, - "name": "Evercraft Ecotechnologies", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0xc1ab7e48fafee6b2596c65261392e59690ce7742.png", - "aggregators": ["Rubic", "Rango", "Sonarwatch"], - "occurrences": 3 - }, - "0xeb45921fedadf41df0bfcf5c33453acedda32441": { - "address": "0xeb45921fedadf41df0bfcf5c33453acedda32441", - "symbol": "PZUG", - "decimals": 18, - "name": "pZUG", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0xeb45921fedadf41df0bfcf5c33453acedda32441.png", - "aggregators": ["Rubic", "Rango", "SushiSwap"], - "occurrences": 3 - }, - "0x8054d4d130c3a84852f379424bcac75673a7486b": { - "address": "0x8054d4d130c3a84852f379424bcac75673a7486b", - "symbol": "PAUSD", - "decimals": 18, - "name": "Parallel USD", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x8054d4d130c3a84852f379424bcac75673a7486b.png", - "aggregators": ["Rubic", "Rango", "Sonarwatch"], - "occurrences": 3 - }, - "0x8929e9dbd2785e3ba16175e596cdd61520fee0d1": { - "address": "0x8929e9dbd2785e3ba16175e596cdd61520fee0d1", - "symbol": "ALTD", - "decimals": 18, - "name": "Altitude", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x8929e9dbd2785e3ba16175e596cdd61520fee0d1.png", - "aggregators": ["Rubic", "Rango", "Sonarwatch"], - "occurrences": 3 - }, - "0xf868939ee81f04f463010bc52eab91c0839ef08c": { - "address": "0xf868939ee81f04f463010bc52eab91c0839ef08c", - "symbol": "ATK", - "decimals": 18, - "name": "Attack Wagon", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0xf868939ee81f04f463010bc52eab91c0839ef08c.png", - "aggregators": ["Rubic", "Rango", "Sonarwatch"], - "occurrences": 3 - }, - "0x925fadb35b73720238cc78777d02ed4dd3100816": { - "address": "0x925fadb35b73720238cc78777d02ed4dd3100816", - "symbol": "AUTOS", - "decimals": 18, - "name": "AutoSingle", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x925fadb35b73720238cc78777d02ed4dd3100816.png", - "aggregators": ["Rubic", "Rango", "Sonarwatch"], - "occurrences": 3 - }, - "0xcddbd374a9df30bbbe4bc4c008fa229cb3587511": { - "address": "0xcddbd374a9df30bbbe4bc4c008fa229cb3587511", - "symbol": "DDM", - "decimals": 18, - "name": "Deutsche Mark", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0xcddbd374a9df30bbbe4bc4c008fa229cb3587511.png", - "aggregators": ["Rubic", "Rango", "Sonarwatch"], - "occurrences": 3 - }, - "0x245e5ddb65efea6522fa913229df1f4957fb2e21": { - "address": "0x245e5ddb65efea6522fa913229df1f4957fb2e21", - "symbol": "EGG", - "decimals": 18, - "name": "LoserChick EGG", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x245e5ddb65efea6522fa913229df1f4957fb2e21.png", - "aggregators": ["Rubic", "Rango", "Sonarwatch"], - "occurrences": 3 - }, - "0xc4a206a306f0db88f98a3591419bc14832536862": { - "address": "0xc4a206a306f0db88f98a3591419bc14832536862", - "symbol": "ELE", - "decimals": 18, - "name": "Elefant", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0xc4a206a306f0db88f98a3591419bc14832536862.png", - "aggregators": ["Rubic", "Rango", "Sonarwatch"], - "occurrences": 3 - }, - "0xe0ce60af0850bf54072635e66e79df17082a1109": { - "address": "0xe0ce60af0850bf54072635e66e79df17082a1109", - "symbol": "PROPEL", - "decimals": 18, - "name": "Propel", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0xe0ce60af0850bf54072635e66e79df17082a1109.png", - "aggregators": ["Rubic", "Rango", "SushiSwap"], - "occurrences": 3 - }, - "0xf796969fa47fb0748c80b8b153cbb895e88cbd54": { - "address": "0xf796969fa47fb0748c80b8b153cbb895e88cbd54", - "symbol": "OCAVU", - "decimals": 18, - "name": "Ocavu Network", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0xf796969fa47fb0748c80b8b153cbb895e88cbd54.png", - "aggregators": ["Rubic", "Rango", "Sonarwatch"], - "occurrences": 3 - }, - "0xd57f8b6f3e5d1e0ab85118f5e0dd893a08c43346": { - "address": "0xd57f8b6f3e5d1e0ab85118f5e0dd893a08c43346", - "symbol": "OSEA", - "decimals": 18, - "name": "Omnisea", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0xd57f8b6f3e5d1e0ab85118f5e0dd893a08c43346.png", - "aggregators": ["Rubic", "Rango", "Sonarwatch"], - "occurrences": 3 - }, - "0xb424f20a80117472175f03853e2901f6fb0c0016": { - "address": "0xb424f20a80117472175f03853e2901f6fb0c0016", - "symbol": "QUICK", - "decimals": 18, - "name": "Quick Drop", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0xb424f20a80117472175f03853e2901f6fb0c0016.png", - "aggregators": ["Rubic", "Rango", "Sonarwatch"], - "occurrences": 3 - }, - "0x182f1d39df9460d7aef29afbc80bbd68ed0a41d5": { - "address": "0x182f1d39df9460d7aef29afbc80bbd68ed0a41d5", - "symbol": "RUUF", - "decimals": 18, - "name": "RuufCoin", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x182f1d39df9460d7aef29afbc80bbd68ed0a41d5.png", - "aggregators": ["Rubic", "Rango", "Sonarwatch"], - "occurrences": 3 - }, - "0xad9f61563b104281b14322fec8b42eb67711bf68": { - "address": "0xad9f61563b104281b14322fec8b42eb67711bf68", - "symbol": "SNG", - "decimals": 18, - "name": "Synergy Land Token", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0xad9f61563b104281b14322fec8b42eb67711bf68.png", - "aggregators": ["Rubic", "Rango", "Sonarwatch"], - "occurrences": 3 - }, - "0xc61f39418cd27820b5d4e9ba4a7197eefaeb8b05": { - "address": "0xc61f39418cd27820b5d4e9ba4a7197eefaeb8b05", - "symbol": "TAMA", - "decimals": 18, - "name": "Tamadoge", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0xc61f39418cd27820b5d4e9ba4a7197eefaeb8b05.png", - "aggregators": ["Rubic", "Rango", "Sonarwatch"], - "occurrences": 3 - }, - "0x3b7e1ce09afe2bb3a23919afb65a38e627cfbe97": { - "address": "0x3b7e1ce09afe2bb3a23919afb65a38e627cfbe97", - "symbol": "DST", - "decimals": 18, - "name": "Dragon Soul Token", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x3b7e1ce09afe2bb3a23919afb65a38e627cfbe97.png", - "aggregators": ["Rubic", "Rango", "Sonarwatch"], - "occurrences": 3 - }, - "0xbe75385304b3bca6fd25b755e849f63b70e84793": { - "address": "0xbe75385304b3bca6fd25b755e849f63b70e84793", - "symbol": "SWIO", - "decimals": 18, - "name": "Second World Games", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0xbe75385304b3bca6fd25b755e849f63b70e84793.png", - "aggregators": ["Rubic", "Rango", "Sonarwatch"], - "occurrences": 3 - }, - "0xc46a37fbbe433ef24bc7b9388c8728ddcf3ca87c": { - "address": "0xc46a37fbbe433ef24bc7b9388c8728ddcf3ca87c", - "symbol": "MFTU", - "decimals": 18, - "name": "Mainstream For The Underground", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0xc46a37fbbe433ef24bc7b9388c8728ddcf3ca87c.png", - "aggregators": ["Rubic", "Rango", "Sonarwatch"], - "occurrences": 3 - }, - "0x981aecc6eb4d382b96a02b75e931900705e95a31": { - "address": "0x981aecc6eb4d382b96a02b75e931900705e95a31", - "symbol": "SAVG", - "decimals": 18, - "name": "SAVAGE", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x981aecc6eb4d382b96a02b75e931900705e95a31.png", - "aggregators": ["Rubic", "Rango", "Sonarwatch"], - "occurrences": 3 - }, - "0x656bf6767fa8863ac0dd0b7d2a26602b838a2e70": { - "address": "0x656bf6767fa8863ac0dd0b7d2a26602b838a2e70", - "symbol": "FITT", - "decimals": 18, - "name": "Fitmint", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x656bf6767fa8863ac0dd0b7d2a26602b838a2e70.png", - "aggregators": ["Rubic", "Rango", "Sonarwatch"], - "occurrences": 3 - }, - "0x5dfd5edfde4d8ec9e632dca9d09fc7e833f74210": { - "address": "0x5dfd5edfde4d8ec9e632dca9d09fc7e833f74210", - "symbol": "ISKY", - "decimals": 18, - "name": "Infinity Skies", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x5dfd5edfde4d8ec9e632dca9d09fc7e833f74210.png", - "aggregators": ["Rubic", "Rango", "Sonarwatch"], - "occurrences": 3 - }, - "0x76bf0c28e604cc3fe9967c83b3c3f31c213cfe64": { - "address": "0x76bf0c28e604cc3fe9967c83b3c3f31c213cfe64", - "symbol": "CRYSTL", - "decimals": 18, - "name": "Crystl Finance", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x76bf0c28e604cc3fe9967c83b3c3f31c213cfe64.png", - "aggregators": ["Rubic", "Rango", "Sonarwatch"], - "occurrences": 3 - }, - "0x23001ae6cd2f0644c5846e156565998334fc2be3": { - "address": "0x23001ae6cd2f0644c5846e156565998334fc2be3", - "symbol": "ABYS", - "decimals": 8, - "name": "Trinity Of The Fabled Abyss Fragment", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x23001ae6cd2f0644c5846e156565998334fc2be3.png", - "aggregators": ["Rubic", "Rango", "Sonarwatch"], - "occurrences": 3 - }, - "0x6bd10299f4f1d31b3489dc369ea958712d27c81b": { - "address": "0x6bd10299f4f1d31b3489dc369ea958712d27c81b", - "symbol": "ADF", - "decimals": 18, - "name": "Art de Finance", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x6bd10299f4f1d31b3489dc369ea958712d27c81b.png", - "aggregators": ["Rubic", "Rango", "Sonarwatch"], - "occurrences": 3 - }, - "0x503836c8c3a453c57f58cc99b070f2e78ec14fc0": { - "address": "0x503836c8c3a453c57f58cc99b070f2e78ec14fc0", - "symbol": "SPORT", - "decimals": 18, - "name": "SPORT", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x503836c8c3a453c57f58cc99b070f2e78ec14fc0.png", - "aggregators": ["Rubic", "Rango", "Sonarwatch"], - "occurrences": 3 - }, - "0xa7051c5a22d963b81d71c2ba64d46a877fbc1821": { - "address": "0xa7051c5a22d963b81d71c2ba64d46a877fbc1821", - "symbol": "EROWAN", - "decimals": 18, - "name": "Sifchain", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0xa7051c5a22d963b81d71c2ba64d46a877fbc1821.png", - "aggregators": ["Rubic", "Rango", "Sonarwatch"], - "occurrences": 3 - }, - "0x5a7bb7b8eff493625a2bb855445911e63a490e42": { - "address": "0x5a7bb7b8eff493625a2bb855445911e63a490e42", - "symbol": "TSUBASAUT", - "decimals": 8, - "name": "TSUBASA Utilitiy Token", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x5a7bb7b8eff493625a2bb855445911e63a490e42.png", - "aggregators": ["Rubic", "Rango", "Sonarwatch"], - "occurrences": 3 - }, - "0xf46cb10e8c5fb9368bbf497a3176b80c0af66d44": { - "address": "0xf46cb10e8c5fb9368bbf497a3176b80c0af66d44", - "symbol": "VP", - "decimals": 11, - "name": "Vortex Protocol", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0xf46cb10e8c5fb9368bbf497a3176b80c0af66d44.png", - "aggregators": ["Rubic", "Rango", "Sonarwatch"], - "occurrences": 3 - }, - "0xf36f79feb5d97e18c69078d8d13d941cae447a04": { - "address": "0xf36f79feb5d97e18c69078d8d13d941cae447a04", - "symbol": "B01", - "decimals": 18, - "name": "b0rder1ess", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0xf36f79feb5d97e18c69078d8d13d941cae447a04.png", - "aggregators": ["Rubic", "Squid", "Rango"], - "occurrences": 3 - }, - "0x1a7e49125a6595588c9556f07a4c006461b24545": { - "address": "0x1a7e49125a6595588c9556f07a4c006461b24545", - "symbol": "AKI", - "decimals": 18, - "name": "Aki Network", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x1a7e49125a6595588c9556f07a4c006461b24545.png", - "aggregators": ["Rubic", "Rango", "Sonarwatch"], - "occurrences": 3 - }, - "0x2b1d36f5b61addaf7da7ebbd11b35fd8cfb0de31": { - "address": "0x2b1d36f5b61addaf7da7ebbd11b35fd8cfb0de31", - "symbol": "ITP", - "decimals": 18, - "name": "Interport Token", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x2b1d36f5b61addaf7da7ebbd11b35fd8cfb0de31.png", - "aggregators": ["Rubic", "Rango", "Sonarwatch"], - "occurrences": 3 - }, - "0xe78aee6ccb05471a69677fb74da80f5d251c042b": { - "address": "0xe78aee6ccb05471a69677fb74da80f5d251c042b", - "symbol": "TAKI", - "decimals": 18, - "name": "Taki Games", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0xe78aee6ccb05471a69677fb74da80f5d251c042b.png", - "aggregators": ["Rubic", "Rango", "Sonarwatch"], - "occurrences": 3 - }, - "0xe319519d910e733098fb559c2b10cb70ed854603": { - "address": "0xe319519d910e733098fb559c2b10cb70ed854603", - "symbol": "GQB", - "decimals": 18, - "name": "GuildQB Token", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0xe319519d910e733098fb559c2b10cb70ed854603.png", - "aggregators": ["Rubic", "Rango", "Sonarwatch"], - "occurrences": 3 - }, - "0x12a4cebf81f8671faf1ab0acea4e3429e42869e7": { - "address": "0x12a4cebf81f8671faf1ab0acea4e3429e42869e7", - "symbol": "HOM", - "decimals": 18, - "name": "Homeety", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x12a4cebf81f8671faf1ab0acea4e3429e42869e7.png", - "aggregators": ["Rubic", "Rango", "Sonarwatch"], - "occurrences": 3 - }, - "0xdab35042e63e93cc8556c9bae482e5415b5ac4b1": { - "address": "0xdab35042e63e93cc8556c9bae482e5415b5ac4b1", - "symbol": "IRIS", - "decimals": 18, - "name": "Iris", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0xdab35042e63e93cc8556c9bae482e5415b5ac4b1.png", - "aggregators": ["Rubic", "Rango", "Sonarwatch"], - "occurrences": 3 - }, - "0x5198e7cc1640049de37d1bd10b03fa5a3afda120": { - "address": "0x5198e7cc1640049de37d1bd10b03fa5a3afda120", - "symbol": "KABY", - "decimals": 18, - "name": "Kaby Arena", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x5198e7cc1640049de37d1bd10b03fa5a3afda120.png", - "aggregators": ["Rubic", "Rango", "Sonarwatch"], - "occurrences": 3 - }, - "0xa25610a77077390a75ad9072a084c5fbc7d43a0d": { - "address": "0xa25610a77077390a75ad9072a084c5fbc7d43a0d", - "symbol": "MCASH", - "decimals": 18, - "name": "Monsoon Finance", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0xa25610a77077390a75ad9072a084c5fbc7d43a0d.png", - "aggregators": ["Rubic", "Rango", "Sonarwatch"], - "occurrences": 3 - }, - "0x411bc96881a62572ff33c9d8ce60df99e3d96cd8": { - "address": "0x411bc96881a62572ff33c9d8ce60df99e3d96cd8", - "symbol": "MRST", - "decimals": 18, - "name": "Mars Token", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x411bc96881a62572ff33c9d8ce60df99e3d96cd8.png", - "aggregators": ["Rubic", "Rango", "Sonarwatch"], - "occurrences": 3 - }, - "0xc26d47d5c33ac71ac5cf9f776d63ba292a4f7842": { - "address": "0xc26d47d5c33ac71ac5cf9f776d63ba292a4f7842", - "symbol": "BNT", - "decimals": 18, - "name": "Bancor Network Token", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0xc26d47d5c33ac71ac5cf9f776d63ba292a4f7842.png", - "aggregators": [ - "UniswapLabs", - "LiFi", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 6 - }, - "0x735fa792e731a2e8f83f32eb539841b7b72e6d8f": { - "address": "0x735fa792e731a2e8f83f32eb539841b7b72e6d8f", - "symbol": "EEUR", - "decimals": 18, - "name": "ARYZE eEUR", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x735fa792e731a2e8f83f32eb539841b7b72e6d8f.png", - "aggregators": [ - "CoinGecko", - "LiFi", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 6 - }, - "0x612d833c0c7a54cdfbe9a4328b6d658020563ec0": { - "address": "0x612d833c0c7a54cdfbe9a4328b6d658020563ec0", - "symbol": "PINE", - "decimals": 18, - "name": "Pine", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x612d833c0c7a54cdfbe9a4328b6d658020563ec0.png", - "aggregators": [ - "CoinGecko", - "LiFi", - "Rubic", - "Squid", - "Rango", - "Sonarwatch" - ], - "occurrences": 6 - }, - "0x32dc2dd3c2be453a369625e6fe0e438aed814919": { - "address": "0x32dc2dd3c2be453a369625e6fe0e438aed814919", - "symbol": "KEY", - "decimals": 18, - "name": "SelfKey", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x32dc2dd3c2be453a369625e6fe0e438aed814919.png", - "aggregators": [ - "CoinGecko", - "LiFi", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 6 - }, - "0x6d1fdbb266fcc09a16a22016369210a15bb95761": { - "address": "0x6d1fdbb266fcc09a16a22016369210a15bb95761", - "symbol": "SFRXETH", - "decimals": 18, - "name": "Staked Frax Ether", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x6d1fdbb266fcc09a16a22016369210a15bb95761.png", - "aggregators": [ - "CoinGecko", - "LiFi", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 6 - }, - "0x2a93172c8dccbfbc60a39d56183b7279a2f647b4": { - "address": "0x2a93172c8dccbfbc60a39d56183b7279a2f647b4", - "symbol": "DG", - "decimals": 18, - "name": "decentral.games", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x2a93172c8dccbfbc60a39d56183b7279a2f647b4.png", - "aggregators": [ - "CoinGecko", - "LiFi", - "Rubic", - "Rango", - "Sonarwatch", - "SushiSwap" - ], - "occurrences": 6 - }, - "0xc553a5a789f1bb56a72847b3fda1de3e16e6763f": { - "address": "0xc553a5a789f1bb56a72847b3fda1de3e16e6763f", - "symbol": "CYG", - "decimals": 18, - "name": "CygnusDAO", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0xc553a5a789f1bb56a72847b3fda1de3e16e6763f.png", - "aggregators": [ - "CoinGecko", - "LiFi", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 6 - }, - "0xab0b2ddb9c7e440fac8e140a89c0dbcbf2d7bbff": { - "address": "0xab0b2ddb9c7e440fac8e140a89c0dbcbf2d7bbff", - "symbol": "IFARM", - "decimals": 18, - "name": "iFARM", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0xab0b2ddb9c7e440fac8e140a89c0dbcbf2d7bbff.png", - "aggregators": [ - "CoinGecko", - "1inch", - "LiFi", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 6 - }, - "0xcdb3867935247049e87c38ea270edd305d84c9ae": { - "address": "0xcdb3867935247049e87c38ea270edd305d84c9ae", - "symbol": "VCHF", - "decimals": 18, - "name": "VNX Swiss Franc", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0xcdb3867935247049e87c38ea270edd305d84c9ae.png", - "aggregators": [ - "CoinGecko", - "LiFi", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 6 - }, - "0x4e830f67ec499e69930867f9017aeb5b3f629c73": { - "address": "0x4e830f67ec499e69930867f9017aeb5b3f629c73", - "symbol": "ODDZ", - "decimals": 18, - "name": "Oddz", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x4e830f67ec499e69930867f9017aeb5b3f629c73.png", - "aggregators": [ - "CoinGecko", - "LiFi", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 6 - }, - "0x11cd37bb86f65419713f30673a480ea33c826872": { - "address": "0x11cd37bb86f65419713f30673a480ea33c826872", - "symbol": "WETH", - "decimals": 18, - "name": "Wrapped Ether (Wormhole)", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x11cd37bb86f65419713f30673a480ea33c826872.png", - "aggregators": [ - "Metamask", - "Socket", - "Rubic", - "Squid", - "Rango", - "Sonarwatch" - ], - "occurrences": 6 - }, - "0xa5ff48e326958e0ce6fdf9518de561f2b5f57da3": { - "address": "0xa5ff48e326958e0ce6fdf9518de561f2b5f57da3", - "symbol": "LKR", - "decimals": 18, - "name": "Lokr", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0xa5ff48e326958e0ce6fdf9518de561f2b5f57da3.png", - "aggregators": [ - "CoinGecko", - "LiFi", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 6 - }, - "0x46777c76dbbe40fabb2aab99e33ce20058e76c59": { - "address": "0x46777c76dbbe40fabb2aab99e33ce20058e76c59", - "symbol": "L3", - "decimals": 18, - "name": "Layer3", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x46777c76dbbe40fabb2aab99e33ce20058e76c59.png", - "aggregators": [ - "CoinGecko", - "LiFi", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 6 - }, - "0x51540d15957bdc0fdb87d32616c8d658d59f77c6": { - "address": "0x51540d15957bdc0fdb87d32616c8d658d59f77c6", - "symbol": "WINTER", - "decimals": 18, - "name": "Winter", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x51540d15957bdc0fdb87d32616c8d658d59f77c6.png", - "aggregators": [ - "CoinGecko", - "LiFi", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 6 - }, - "0x84e1670f61347cdaed56dcc736fb990fbb47ddc1": { - "address": "0x84e1670f61347cdaed56dcc736fb990fbb47ddc1", - "symbol": "LRC", - "decimals": 18, - "name": "LoopringCoin V2 (PoS)", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x84e1670f61347cdaed56dcc736fb990fbb47ddc1.png", - "aggregators": ["UniswapLabs", "LiFi", "Socket", "Rubic", "Rango"], - "occurrences": 5 - }, - "0x19782d3dc4701ceeedcd90f0993f0a9126ed89d0": { - "address": "0x19782d3dc4701ceeedcd90f0993f0a9126ed89d0", - "symbol": "REN", - "decimals": 18, - "name": "Republic Token", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x19782d3dc4701ceeedcd90f0993f0a9126ed89d0.png", - "aggregators": [ - "UniswapLabs", - "LiFi", - "Socket", - "Rubic", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x0735fa49eb7d9ddf3e4d9a9f01229627f67632a1": { - "address": "0x0735fa49eb7d9ddf3e4d9a9f01229627f67632a1", - "symbol": "CROC", - "decimals": 18, - "name": "Cropto Corn Token", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x0735fa49eb7d9ddf3e4d9a9f01229627f67632a1.png", - "aggregators": [ - "CoinGecko", - "LiFi", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x8eb270e296023e9d92081fdf967ddd7878724424": { - "address": "0x8eb270e296023e9d92081fdf967ddd7878724424", - "symbol": "AGHST", - "decimals": 18, - "name": "Aave v3 GHST", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x8eb270e296023e9d92081fdf967ddd7878724424.png", - "aggregators": [ - "CoinGecko", - "LiFi", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x6d80113e533a2c0fe82eabd35f1875dcea89ea97": { - "address": "0x6d80113e533a2c0fe82eabd35f1875dcea89ea97", - "symbol": "AWMATIC", - "decimals": 18, - "name": "Aave v3 WMATIC", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x6d80113e533a2c0fe82eabd35f1875dcea89ea97.png", - "aggregators": [ - "CoinGecko", - "LiFi", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x3af2dd7b91d8faceccc26d21a065267817213d37": { - "address": "0x3af2dd7b91d8faceccc26d21a065267817213d37", - "symbol": "RIB", - "decimals": 8, - "name": "Ribus", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x3af2dd7b91d8faceccc26d21a065267817213d37.png", - "aggregators": [ - "CoinGecko", - "LiFi", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x4d08ef733cf27b4cd37810cf9b72a82d2a135549": { - "address": "0x4d08ef733cf27b4cd37810cf9b72a82d2a135549", - "symbol": "DEAR", - "decimals": 18, - "name": "DEAR Token", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x4d08ef733cf27b4cd37810cf9b72a82d2a135549.png", - "aggregators": [ - "CoinGecko", - "LiFi", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0xa4335da338ec4c07c391fc1a9bf75f306adadc08": { - "address": "0xa4335da338ec4c07c391fc1a9bf75f306adadc08", - "symbol": "EUSD", - "decimals": 18, - "name": "ARYZE eUSD", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0xa4335da338ec4c07c391fc1a9bf75f306adadc08.png", - "aggregators": ["CoinGecko", "LiFi", "Socket", "Rubic", "Rango"], - "occurrences": 5 - }, - "0x823cd4264c1b951c9209ad0deaea9988fe8429bf": { - "address": "0x823cd4264c1b951c9209ad0deaea9988fe8429bf", - "symbol": "MAAAVE", - "decimals": 18, - "name": "Matic Aave Interest Bearing AAVE", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x823cd4264c1b951c9209ad0deaea9988fe8429bf.png", - "aggregators": [ - "CoinGecko", - "LiFi", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x3f374ed3c8e61a0d250f275609be2219005c021e": { - "address": "0x3f374ed3c8e61a0d250f275609be2219005c021e", - "symbol": "ARCADIUM", - "decimals": 18, - "name": "Arcadium", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x3f374ed3c8e61a0d250f275609be2219005c021e.png", - "aggregators": [ - "CoinGecko", - "LiFi", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x950e1561b7a7deb1a32a6419fd435410daf851b0": { - "address": "0x950e1561b7a7deb1a32a6419fd435410daf851b0", - "symbol": "DUBI", - "decimals": 18, - "name": "Decentralized Universal Basic Income", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x950e1561b7a7deb1a32a6419fd435410daf851b0.png", - "aggregators": [ - "CoinGecko", - "LiFi", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x37b8e1152fb90a867f3dcca6e8d537681b04705e": { - "address": "0x37b8e1152fb90a867f3dcca6e8d537681b04705e", - "symbol": "P-GYD", - "decimals": 18, - "name": "Proto Gyro Dollar", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x37b8e1152fb90a867f3dcca6e8d537681b04705e.png", - "aggregators": [ - "CoinGecko", - "LiFi", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x5b901182b9b2820a713ff5d88519999c550d40e8": { - "address": "0x5b901182b9b2820a713ff5d88519999c550d40e8", - "symbol": "LFIT", - "decimals": 18, - "name": "LFIT", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x5b901182b9b2820a713ff5d88519999c550d40e8.png", - "aggregators": [ - "CoinGecko", - "LiFi", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x7b3bd12675c6b9d6993eb81283cb68e6eb9260b5": { - "address": "0x7b3bd12675c6b9d6993eb81283cb68e6eb9260b5", - "symbol": "CTF", - "decimals": 18, - "name": "Crypto Trading Fund", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x7b3bd12675c6b9d6993eb81283cb68e6eb9260b5.png", - "aggregators": [ - "CoinGecko", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x28767e286113ab01ee819b9398a22d6f27badb6e": { - "address": "0x28767e286113ab01ee819b9398a22d6f27badb6e", - "symbol": "RABBIT", - "decimals": 18, - "name": "RabbitCoin Exchange", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x28767e286113ab01ee819b9398a22d6f27badb6e.png", - "aggregators": [ - "CoinGecko", - "LiFi", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x44d09156c7b4acf0c64459fbcced7613f5519918": { - "address": "0x44d09156c7b4acf0c64459fbcced7613f5519918", - "symbol": "$KMC", - "decimals": 18, - "name": "Kitsumon", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x44d09156c7b4acf0c64459fbcced7613f5519918.png", - "aggregators": [ - "CoinGecko", - "1inch", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x22737f5bbb7c5b5ba407b0c1c9a9cdf66cf25d7d": { - "address": "0x22737f5bbb7c5b5ba407b0c1c9a9cdf66cf25d7d", - "symbol": "SNPT", - "decimals": 18, - "name": "SNPIT TOKEN", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x22737f5bbb7c5b5ba407b0c1c9a9cdf66cf25d7d.png", - "aggregators": [ - "CoinGecko", - "LiFi", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0xf695f9499d18584363aeed0eba4c381d350f81c3": { - "address": "0xf695f9499d18584363aeed0eba4c381d350f81c3", - "symbol": "RVR", - "decimals": 9, - "name": "Reality VR", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0xf695f9499d18584363aeed0eba4c381d350f81c3.png", - "aggregators": [ - "CoinGecko", - "LiFi", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x74dd45dd579cad749f9381d6227e7e02277c944b": { - "address": "0x74dd45dd579cad749f9381d6227e7e02277c944b", - "symbol": "CULO", - "decimals": 9, - "name": "CULO", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x74dd45dd579cad749f9381d6227e7e02277c944b.png", - "aggregators": [ - "CoinGecko", - "Rubic", - "Squid", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x0c8c8ae8bc3a69dc8482c01ceacfb588bb516b01": { - "address": "0x0c8c8ae8bc3a69dc8482c01ceacfb588bb516b01", - "symbol": "AURORA", - "decimals": 18, - "name": "AuroraToken", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x0c8c8ae8bc3a69dc8482c01ceacfb588bb516b01.png", - "aggregators": [ - "CoinGecko", - "LiFi", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x82a0e6c02b91ec9f6ff943c0a933c03dbaa19689": { - "address": "0x82a0e6c02b91ec9f6ff943c0a933c03dbaa19689", - "symbol": "WNT", - "decimals": 18, - "name": "Wicrypt", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x82a0e6c02b91ec9f6ff943c0a933c03dbaa19689.png", - "aggregators": [ - "CoinGecko", - "LiFi", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0xc3211f7eb806e916d54a2a166fc36188cffde25b": { - "address": "0xc3211f7eb806e916d54a2a166fc36188cffde25b", - "symbol": "CROB", - "decimals": 18, - "name": "Cropto Barley Token", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0xc3211f7eb806e916d54a2a166fc36188cffde25b.png", - "aggregators": [ - "CoinGecko", - "LiFi", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x0da0bd2f57a27a70665d53db4ea71e1f26f77a46": { - "address": "0x0da0bd2f57a27a70665d53db4ea71e1f26f77a46", - "symbol": "CROW", - "decimals": 18, - "name": "Cropto Wheat Token", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x0da0bd2f57a27a70665d53db4ea71e1f26f77a46.png", - "aggregators": [ - "CoinGecko", - "LiFi", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x16dfb898cf7029303c2376031392cb9bac450f94": { - "address": "0x16dfb898cf7029303c2376031392cb9bac450f94", - "symbol": "DMA", - "decimals": 18, - "name": "Dragoma", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x16dfb898cf7029303c2376031392cb9bac450f94.png", - "aggregators": [ - "CoinGecko", - "LiFi", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0xcdf937995a55a9ab551d81b463ac0f7f02795368": { - "address": "0xcdf937995a55a9ab551d81b463ac0f7f02795368", - "symbol": "VSC", - "decimals": 18, - "name": "Vyvo Smart Chain", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0xcdf937995a55a9ab551d81b463ac0f7f02795368.png", - "aggregators": [ - "CoinGecko", - "LiFi", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x13590c53df63b52e159328c5b4ffb5f6dc5163c0": { - "address": "0x13590c53df63b52e159328c5b4ffb5f6dc5163c0", - "symbol": "FNCT", - "decimals": 18, - "name": "FNCT", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x13590c53df63b52e159328c5b4ffb5f6dc5163c0.png", - "aggregators": ["CoinGecko", "LiFi", "Socket", "Rubic", "Rango"], - "occurrences": 5 - }, - "0x131409b31bf446737dd04353d43dacada544b6fa": { - "address": "0x131409b31bf446737dd04353d43dacada544b6fa", - "symbol": "USC", - "decimals": 6, - "name": "Classic USD", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x131409b31bf446737dd04353d43dacada544b6fa.png", - "aggregators": [ - "CoinGecko", - "LiFi", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0xfce60bbc52a5705cec5b445501fbaf3274dc43d0": { - "address": "0xfce60bbc52a5705cec5b445501fbaf3274dc43d0", - "symbol": "ACRED", - "decimals": 6, - "name": "Apollo Diversified Credit Securitize Fund", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0xfce60bbc52a5705cec5b445501fbaf3274dc43d0.png", - "aggregators": [ - "CoinGecko", - "LiFi", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0xe7e72be51c3b4e1f3ceb34e177e1ba1c1744fd7d": { - "address": "0xe7e72be51c3b4e1f3ceb34e177e1ba1c1744fd7d", - "symbol": "TALK", - "decimals": 18, - "name": "Talken", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0xe7e72be51c3b4e1f3ceb34e177e1ba1c1744fd7d.png", - "aggregators": [ - "CoinGecko", - "LiFi", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0xa0769f7a8fc65e47de93797b4e21c073c117fc80": { - "address": "0xa0769f7a8fc65e47de93797b4e21c073c117fc80", - "symbol": "EUTBL", - "decimals": 5, - "name": "Spiko EU T-Bills Money Market Fund", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0xa0769f7a8fc65e47de93797b4e21c073c117fc80.png", - "aggregators": [ - "CoinGecko", - "LiFi", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0xe4880249745eac5f1ed9d8f7df844792d560e750": { - "address": "0xe4880249745eac5f1ed9d8f7df844792d560e750", - "symbol": "USTBL", - "decimals": 5, - "name": "Spiko US T-Bills Money Market Fund", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0xe4880249745eac5f1ed9d8f7df844792d560e750.png", - "aggregators": [ - "CoinGecko", - "LiFi", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x9a6a40cdf21a0af417f1b815223fd92c85636c58": { - "address": "0x9a6a40cdf21a0af417f1b815223fd92c85636c58", - "symbol": "BSKT", - "decimals": 5, - "name": "Basket", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x9a6a40cdf21a0af417f1b815223fd92c85636c58.png", - "aggregators": [ - "CoinGecko", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x38029c62dfa30d9fd3cadf4c64e9b2ab21dbda17": { - "address": "0x38029c62dfa30d9fd3cadf4c64e9b2ab21dbda17", - "symbol": "DUBBZ", - "decimals": 18, - "name": "Dubbz", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x38029c62dfa30d9fd3cadf4c64e9b2ab21dbda17.png", - "aggregators": [ - "CoinGecko", - "LiFi", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0xe292178333fc7424211795895865adac05baf3be": { - "address": "0xe292178333fc7424211795895865adac05baf3be", - "symbol": "JARVIS", - "decimals": 18, - "name": "Jarvis", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0xe292178333fc7424211795895865adac05baf3be.png", - "aggregators": [ - "CoinGecko", - "LiFi", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0xe50fa9b3c56ffb159cb0fca61f5c9d750e8128c8": { - "address": "0xe50fa9b3c56ffb159cb0fca61f5c9d750e8128c8", - "symbol": "AWETH", - "decimals": 18, - "name": "Aave v3 WETH", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0xe50fa9b3c56ffb159cb0fca61f5c9d750e8128c8.png", - "aggregators": [ - "CoinGecko", - "LiFi", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x078f358208685046a11c85e8ad32895ded33a249": { - "address": "0x078f358208685046a11c85e8ad32895ded33a249", - "symbol": "AWBTC", - "decimals": 8, - "name": "Aave v3 WBTC", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x078f358208685046a11c85e8ad32895ded33a249.png", - "aggregators": [ - "CoinGecko", - "LiFi", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x6ab707aca953edaefbc4fd23ba73294241490620": { - "address": "0x6ab707aca953edaefbc4fd23ba73294241490620", - "symbol": "AUSDT", - "decimals": 6, - "name": "Aave v3 USDT", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x6ab707aca953edaefbc4fd23ba73294241490620.png", - "aggregators": [ - "CoinGecko", - "LiFi", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0xb1a91036e4a3c144efed953e0b6cc5f6b98ad256": { - "address": "0xb1a91036e4a3c144efed953e0b6cc5f6b98ad256", - "symbol": "MUBI", - "decimals": 18, - "name": "Multibit", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0xb1a91036e4a3c144efed953e0b6cc5f6b98ad256.png", - "aggregators": [ - "CoinGecko", - "LiFi", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x82e64f49ed5ec1bc6e43dad4fc8af9bb3a2312ee": { - "address": "0x82e64f49ed5ec1bc6e43dad4fc8af9bb3a2312ee", - "symbol": "ADAI", - "decimals": 18, - "name": "Aave v3 DAI", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x82e64f49ed5ec1bc6e43dad4fc8af9bb3a2312ee.png", - "aggregators": [ - "CoinGecko", - "LiFi", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0xf329e36c7bf6e5e86ce2150875a84ce77f477375": { - "address": "0xf329e36c7bf6e5e86ce2150875a84ce77f477375", - "symbol": "AAAVE", - "decimals": 18, - "name": "Aave v3 AAVE", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0xf329e36c7bf6e5e86ce2150875a84ce77f477375.png", - "aggregators": [ - "CoinGecko", - "LiFi", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x191c10aa4af7c30e871e70c95db0e4eb77237530": { - "address": "0x191c10aa4af7c30e871e70c95db0e4eb77237530", - "symbol": "ALINK", - "decimals": 18, - "name": "Aave v3 LINK", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x191c10aa4af7c30e871e70c95db0e4eb77237530.png", - "aggregators": [ - "CoinGecko", - "LiFi", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0xb541a306dd240ef04fb5e7e0db9a3c6cb7ddbb07": { - "address": "0xb541a306dd240ef04fb5e7e0db9a3c6cb7ddbb07", - "symbol": "WFDP", - "decimals": 18, - "name": "WFDP", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0xb541a306dd240ef04fb5e7e0db9a3c6cb7ddbb07.png", - "aggregators": [ - "CoinGecko", - "LiFi", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x24834bbec7e39ef42f4a75eaf8e5b6486d3f0e57": { - "address": "0x24834bbec7e39ef42f4a75eaf8e5b6486d3f0e57", - "symbol": "LUNC", - "decimals": 18, - "name": "Wrapped Terra Classic", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x24834bbec7e39ef42f4a75eaf8e5b6486d3f0e57.png", - "aggregators": [ - "CoinGecko", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x513c7e3a9c69ca3e22550ef58ac1c0088e918fff": { - "address": "0x513c7e3a9c69ca3e22550ef58ac1c0088e918fff", - "symbol": "ACRV", - "decimals": 18, - "name": "Aave v3 CRV", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x513c7e3a9c69ca3e22550ef58ac1c0088e918fff.png", - "aggregators": [ - "CoinGecko", - "LiFi", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0xca30c93b02514f86d5c86a6e375e3a330b435fb5": { - "address": "0xca30c93b02514f86d5c86a6e375e3a330b435fb5", - "symbol": "BIB01", - "decimals": 18, - "name": "Backed IB01 $ Treasury Bond 0-1yr", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0xca30c93b02514f86d5c86a6e375e3a330b435fb5.png", - "aggregators": [ - "CoinGecko", - "LiFi", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x44e3ae622c1570dc6e492adb8de92d01ca923d26": { - "address": "0x44e3ae622c1570dc6e492adb8de92d01ca923d26", - "symbol": "RYZE", - "decimals": 18, - "name": "Ryze", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x44e3ae622c1570dc6e492adb8de92d01ca923d26.png", - "aggregators": [ - "CoinGecko", - "LiFi", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x9de41aff9f55219d5bf4359f167d1d0c772a396d": { - "address": "0x9de41aff9f55219d5bf4359f167d1d0c772a396d", - "symbol": "CADC", - "decimals": 18, - "name": "CADC", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x9de41aff9f55219d5bf4359f167d1d0c772a396d.png", - "aggregators": ["CoinGecko", "LiFi", "Socket", "Rubic", "Rango"], - "occurrences": 5 - }, - "0x764a726d9ced0433a8d7643335919deb03a9a935": { - "address": "0x764a726d9ced0433a8d7643335919deb03a9a935", - "symbol": "POKT", - "decimals": 6, - "name": "Pocket Network", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x764a726d9ced0433a8d7643335919deb03a9a935.png", - "aggregators": [ - "CoinGecko", - "LiFi", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0xe4095d9372e68d108225c306a4491cacfb33b097": { - "address": "0xe4095d9372e68d108225c306a4491cacfb33b097", - "symbol": "VEUR", - "decimals": 18, - "name": "VNX EURO", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0xe4095d9372e68d108225c306a4491cacfb33b097.png", - "aggregators": [ - "CoinGecko", - "LiFi", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x4e200fe2f3efb977d5fd9c430a41531fb04d97b8": { - "address": "0x4e200fe2f3efb977d5fd9c430a41531fb04d97b8", - "symbol": "ORDER", - "decimals": 18, - "name": "ORDER", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x4e200fe2f3efb977d5fd9c430a41531fb04d97b8.png", - "aggregators": ["CoinGecko", "LiFi", "Socket", "Rubic", "Rango"], - "occurrences": 5 - }, - "0x47536f17f4ff30e64a96a7555826b8f9e66ec468": { - "address": "0x47536f17f4ff30e64a96a7555826b8f9e66ec468", - "symbol": "BELUGA", - "decimals": 18, - "name": "Beluga.fi", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x47536f17f4ff30e64a96a7555826b8f9e66ec468.png", - "aggregators": [ - "CoinGecko", - "LiFi", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x7f426f6dc648e50464a0392e60e1bb465a67e9cf": { - "address": "0x7f426f6dc648e50464a0392e60e1bb465a67e9cf", - "symbol": "PAUTO", - "decimals": 18, - "name": "Orbit Bridge Polygon Token", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x7f426f6dc648e50464a0392e60e1bb465a67e9cf.png", - "aggregators": [ - "CoinGecko", - "Rubic", - "Rango", - "Sonarwatch", - "SushiSwap" - ], - "occurrences": 5 - }, - "0x3553f861dec0257bada9f8ed268bf0d74e45e89c": { - "address": "0x3553f861dec0257bada9f8ed268bf0d74e45e89c", - "symbol": "USDTSO", - "decimals": 6, - "name": "Bridged Tether (Wormhole)", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x3553f861dec0257bada9f8ed268bf0d74e45e89c.png", - "aggregators": [ - "CoinGecko", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0xecdcb5b88f8e3c15f95c720c51c71c9e2080525d": { - "address": "0xecdcb5b88f8e3c15f95c720c51c71c9e2080525d", - "symbol": "BNB", - "decimals": 18, - "name": "Binance Coin (Wormhole)", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0xecdcb5b88f8e3c15f95c720c51c71c9e2080525d.png", - "aggregators": [ - "CoinGecko", - "LiFi", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x9417669fbf23357d2774e9d421307bd5ea1006d2": { - "address": "0x9417669fbf23357d2774e9d421307bd5ea1006d2", - "symbol": "USDTET", - "decimals": 6, - "name": "Bridged Tether (Wormhole Ethereum)", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x9417669fbf23357d2774e9d421307bd5ea1006d2.png", - "aggregators": [ - "CoinGecko", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x4318cb63a2b8edf2de971e2f17f77097e499459d": { - "address": "0x4318cb63a2b8edf2de971e2f17f77097e499459d", - "symbol": "USDCET", - "decimals": 6, - "name": "Bridged USD Coin (Wormhole Ethereum)", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x4318cb63a2b8edf2de971e2f17f77097e499459d.png", - "aggregators": [ - "CoinGecko", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0xcf403036bc139d30080d2cf0f5b48066f98191bb": { - "address": "0xcf403036bc139d30080d2cf0f5b48066f98191bb", - "symbol": "STBU", - "decimals": 18, - "name": "Stobox", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0xcf403036bc139d30080d2cf0f5b48066f98191bb.png", - "aggregators": [ - "CoinGecko", - "LiFi", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x91e7e32c710661c44ae44d10aa86135d91c3ed65": { - "address": "0x91e7e32c710661c44ae44d10aa86135d91c3ed65", - "symbol": "PPC", - "decimals": 6, - "name": "Peercoin", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x91e7e32c710661c44ae44d10aa86135d91c3ed65.png", - "aggregators": [ - "CoinGecko", - "LiFi", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x9a06db14d639796b25a6cec6a1bf614fd98815ec": { - "address": "0x9a06db14d639796b25a6cec6a1bf614fd98815ec", - "symbol": "ZKP", - "decimals": 18, - "name": "Panther Protocol", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x9a06db14d639796b25a6cec6a1bf614fd98815ec.png", - "aggregators": [ - "CoinGecko", - "LiFi", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0xb5b8381b67248f832c7961bd265f021cd8d291a4": { - "address": "0xb5b8381b67248f832c7961bd265f021cd8d291a4", - "symbol": "ZLW", - "decimals": 18, - "name": "Zelwin", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0xb5b8381b67248f832c7961bd265f021cd8d291a4.png", - "aggregators": [ - "CoinGecko", - "LiFi", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x221743dc9e954be4f86844649bf19b43d6f8366d": { - "address": "0x221743dc9e954be4f86844649bf19b43d6f8366d", - "symbol": "OBOT", - "decimals": 18, - "name": "Obortech", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x221743dc9e954be4f86844649bf19b43d6f8366d.png", - "aggregators": [ - "CoinGecko", - "LiFi", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x534f39c5f4df9cb13e16b24ca07c7c8c0e2eadb7": { - "address": "0x534f39c5f4df9cb13e16b24ca07c7c8c0e2eadb7", - "symbol": "SHA", - "decimals": 18, - "name": "Safe Haven", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x534f39c5f4df9cb13e16b24ca07c7c8c0e2eadb7.png", - "aggregators": [ - "CoinGecko", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0xc88640b734fea3b35c132fe757aeb5ca6c8cdc66": { - "address": "0xc88640b734fea3b35c132fe757aeb5ca6c8cdc66", - "symbol": "NEXM", - "decimals": 8, - "name": "Nexum", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0xc88640b734fea3b35c132fe757aeb5ca6c8cdc66.png", - "aggregators": [ - "CoinGecko", - "LiFi", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x6cd6cb131764c704ba9167c29930fbdc38901ab7": { - "address": "0x6cd6cb131764c704ba9167c29930fbdc38901ab7", - "symbol": "XWIN", - "decimals": 18, - "name": "xWIN Finance", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x6cd6cb131764c704ba9167c29930fbdc38901ab7.png", - "aggregators": [ - "CoinGecko", - "LiFi", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x26c80854c36ff62bba7414a358c8c23bbb8dec39": { - "address": "0x26c80854c36ff62bba7414a358c8c23bbb8dec39", - "symbol": "CDT", - "decimals": 18, - "name": "CheckDot", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x26c80854c36ff62bba7414a358c8c23bbb8dec39.png", - "aggregators": [ - "CoinGecko", - "LiFi", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0xe3c8f0d7f978aadf1929cbbfb116419175844f04": { - "address": "0xe3c8f0d7f978aadf1929cbbfb116419175844f04", - "symbol": "SWK", - "decimals": 18, - "name": "Sowaka", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0xe3c8f0d7f978aadf1929cbbfb116419175844f04.png", - "aggregators": [ - "CoinGecko", - "LiFi", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0xdd28ec6b06983d01d37dbd9ab581d8d884d95264": { - "address": "0xdd28ec6b06983d01d37dbd9ab581d8d884d95264", - "symbol": "SUMMER", - "decimals": 18, - "name": "Summer", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0xdd28ec6b06983d01d37dbd9ab581d8d884d95264.png", - "aggregators": ["CoinGecko", "LiFi", "Socket", "Rubic", "Rango"], - "occurrences": 5 - }, - "0xfba4d30e964e40775c95b58acf6b5a621b929c0a": { - "address": "0xfba4d30e964e40775c95b58acf6b5a621b929c0a", - "symbol": "AUTUMN", - "decimals": 18, - "name": "Autumn", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0xfba4d30e964e40775c95b58acf6b5a621b929c0a.png", - "aggregators": ["CoinGecko", "LiFi", "Socket", "Rubic", "Rango"], - "occurrences": 5 - }, - "0xbbfe0b60de96a189bf09079de86a2db7bf0c7883": { - "address": "0xbbfe0b60de96a189bf09079de86a2db7bf0c7883", - "symbol": "LUNR", - "decimals": 4, - "name": "LunarCrush", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0xbbfe0b60de96a189bf09079de86a2db7bf0c7883.png", - "aggregators": [ - "QuickSwap", - "LiFi", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x78a0a62fba6fb21a83fe8a3433d44c73a4017a6f": { - "address": "0x78a0a62fba6fb21a83fe8a3433d44c73a4017a6f", - "symbol": "OXOLD", - "decimals": 18, - "name": "Open Exchange Token", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x78a0a62fba6fb21a83fe8a3433d44c73a4017a6f.png", - "aggregators": ["1inch", "Socket", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 5 - }, - "0x104592a158490a9228070e0a8e5343b499e125d0": { - "address": "0x104592a158490a9228070e0a8e5343b499e125d0", - "symbol": "POLYFRAX", - "decimals": 18, - "name": "Poly Frax", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x104592a158490a9228070e0a8e5343b499e125d0.png", - "aggregators": ["LiFi", "Socket", "Rubic", "Rango", "SushiSwap"], - "occurrences": 5 - }, - "0xd13cfd3133239a3c73a9e535a5c4dadee36b395c": { - "address": "0xd13cfd3133239a3c73a9e535a5c4dadee36b395c", - "symbol": "VAI", - "decimals": 18, - "name": "VAIOT Token", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0xd13cfd3133239a3c73a9e535a5c4dadee36b395c.png", - "aggregators": ["LiFi", "Socket", "Rubic", "Squid", "SushiSwap"], - "occurrences": 5 - }, - "0x0294d8eb7857d43feb1210db72456d41481f9ede": { - "address": "0x0294d8eb7857d43feb1210db72456d41481f9ede", - "symbol": "LQDR", - "decimals": 18, - "name": "LiquidDriver", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x0294d8eb7857d43feb1210db72456d41481f9ede.png", - "aggregators": ["LiFi", "Rubic", "Squid", "Rango", "Sonarwatch"], - "occurrences": 5 - }, - "0xff88434e29d1e2333ad6baa08d358b436196da6b": { - "address": "0xff88434e29d1e2333ad6baa08d358b436196da6b", - "symbol": "BOR", - "decimals": 18, - "name": "BoringDao", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0xff88434e29d1e2333ad6baa08d358b436196da6b.png", - "aggregators": ["LiFi", "Socket", "Rubic", "Rango", "SushiSwap"], - "occurrences": 5 - }, - "0xd1a718f77ab5d22e3955050658d7f65ae857a85e": { - "address": "0xd1a718f77ab5d22e3955050658d7f65ae857a85e", - "symbol": "FXSAIL", - "decimals": 18, - "name": "SAIL Token (FXERC20)", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0xd1a718f77ab5d22e3955050658d7f65ae857a85e.png", - "aggregators": [ - "Socket", - "Rubic", - "Rango", - "Sonarwatch", - "SushiSwap" - ], - "occurrences": 5 - }, - "0xa8b1e0764f85f53dfe21760e8afe5446d82606ac": { - "address": "0xa8b1e0764f85f53dfe21760e8afe5446d82606ac", - "symbol": "BAND", - "decimals": 18, - "name": "BandToken (PoS)", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0xa8b1e0764f85f53dfe21760e8afe5446d82606ac.png", - "aggregators": ["UniswapLabs", "LiFi", "Socket", "Rubic"], - "occurrences": 4 - }, - "0xbd7a5cf51d22930b8b3df6d834f9bcef90ee7c4f": { - "address": "0xbd7a5cf51d22930b8b3df6d834f9bcef90ee7c4f", - "symbol": "ENS", - "decimals": 18, - "name": "Ethereum Name Service", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0xbd7a5cf51d22930b8b3df6d834f9bcef90ee7c4f.png", - "aggregators": ["UniswapLabs", "LiFi", "Socket", "Sonarwatch"], - "occurrences": 4 - }, - "0x42f37a1296b2981f7c3caced84c5096b2eb0c72c": { - "address": "0x42f37a1296b2981f7c3caced84c5096b2eb0c72c", - "symbol": "KEEP", - "decimals": 18, - "name": "Keep Network", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x42f37a1296b2981f7c3caced84c5096b2eb0c72c.png", - "aggregators": ["UniswapLabs", "Socket", "Rubic", "Sonarwatch"], - "occurrences": 4 - }, - "0x1ed02954d60ba14e26c230eec40cbac55fa3aeea": { - "address": "0x1ed02954d60ba14e26c230eec40cbac55fa3aeea", - "symbol": "MKX", - "decimals": 18, - "name": "MakerX", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x1ed02954d60ba14e26c230eec40cbac55fa3aeea.png", - "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0xea1132120ddcdda2f119e99fa7a27a0d036f7ac9": { - "address": "0xea1132120ddcdda2f119e99fa7a27a0d036f7ac9", - "symbol": "ASTMATIC", - "decimals": 18, - "name": "Aave v3 stMATIC", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0xea1132120ddcdda2f119e99fa7a27a0d036f7ac9.png", - "aggregators": ["CoinGecko", "LiFi", "Rubic", "Sonarwatch"], - "occurrences": 4 - }, - "0xa9c992952c2090a51506c4f3636c1320f8fa93fa": { - "address": "0xa9c992952c2090a51506c4f3636c1320f8fa93fa", - "symbol": "CROF", - "decimals": 18, - "name": "Cropto Hazelnut Token", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0xa9c992952c2090a51506c4f3636c1320f8fa93fa.png", - "aggregators": ["CoinGecko", "LiFi", "Rubic", "Sonarwatch"], - "occurrences": 4 - }, - "0x80ca0d8c38d2e2bcbab66aa1648bd1c7160500fe": { - "address": "0x80ca0d8c38d2e2bcbab66aa1648bd1c7160500fe", - "symbol": "AMATICX", - "decimals": 18, - "name": "Aave v3 MaticX", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x80ca0d8c38d2e2bcbab66aa1648bd1c7160500fe.png", - "aggregators": ["CoinGecko", "LiFi", "Rubic", "Sonarwatch"], - "occurrences": 4 - }, - "0xdc4f4ed9872571d5ec8986a502a0d88f3a175f1e": { - "address": "0xdc4f4ed9872571d5ec8986a502a0d88f3a175f1e", - "symbol": "DEZ", - "decimals": 18, - "name": "$DEZ", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0xdc4f4ed9872571d5ec8986a502a0d88f3a175f1e.png", - "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0x4c392822d4be8494b798cea17b43d48b2308109c": { - "address": "0x4c392822d4be8494b798cea17b43d48b2308109c", - "symbol": "POLLY", - "decimals": 18, - "name": "Polly Finance", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x4c392822d4be8494b798cea17b43d48b2308109c.png", - "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0xd60deba014459f07bbcc077a5b817f31dafd5229": { - "address": "0xd60deba014459f07bbcc077a5b817f31dafd5229", - "symbol": "VATRENI", - "decimals": 18, - "name": "Croatian FF Fan Token", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0xd60deba014459f07bbcc077a5b817f31dafd5229.png", - "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0xc157ee77518769b8009642f68a8d6a500ff59d53": { - "address": "0xc157ee77518769b8009642f68a8d6a500ff59d53", - "symbol": "NLC", - "decimals": 18, - "name": "NoLimitCoin", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0xc157ee77518769b8009642f68a8d6a500ff59d53.png", - "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0x8437d7c167dfb82ed4cb79cd44b7a32a1dd95c77": { - "address": "0x8437d7c167dfb82ed4cb79cd44b7a32a1dd95c77", - "symbol": "AAGEUR", - "decimals": 18, - "name": "Aave v3 agEUR", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x8437d7c167dfb82ed4cb79cd44b7a32a1dd95c77.png", - "aggregators": ["CoinGecko", "LiFi", "Rubic", "Sonarwatch"], - "occurrences": 4 - }, - "0x6396252377f54ad33cff9131708da075b21d9b88": { - "address": "0x6396252377f54ad33cff9131708da075b21d9b88", - "symbol": "NFTBS", - "decimals": 9, - "name": "NFTBooks", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x6396252377f54ad33cff9131708da075b21d9b88.png", - "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0xd711d7d893de57dc13ff465763218770bd42db1d": { - "address": "0xd711d7d893de57dc13ff465763218770bd42db1d", - "symbol": "EGBP", - "decimals": 18, - "name": "ARYZE eGBP", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0xd711d7d893de57dc13ff465763218770bd42db1d.png", - "aggregators": ["CoinGecko", "LiFi", "Rubic", "Rango"], - "occurrences": 4 - }, - "0xf239e69ce434c7fb408b05a0da416b14917d934e": { - "address": "0xf239e69ce434c7fb408b05a0da416b14917d934e", - "symbol": "SHI3LD", - "decimals": 18, - "name": "PolyShield", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0xf239e69ce434c7fb408b05a0da416b14917d934e.png", - "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0x4f7cc8ef14f3dc76ee2fb60028749e1b61cea162": { - "address": "0x4f7cc8ef14f3dc76ee2fb60028749e1b61cea162", - "symbol": "BB", - "decimals": 18, - "name": "BitBoard", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x4f7cc8ef14f3dc76ee2fb60028749e1b61cea162.png", - "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0xafb755c5f2ea2aadbae693d3bf2dc2c35158dc04": { - "address": "0xafb755c5f2ea2aadbae693d3bf2dc2c35158dc04", - "symbol": "MORK", - "decimals": 18, - "name": "Morkie", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0xafb755c5f2ea2aadbae693d3bf2dc2c35158dc04.png", - "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0x94615302bcb36309371ea7454f3e99a4002105de": { - "address": "0x94615302bcb36309371ea7454f3e99a4002105de", - "symbol": "NRS", - "decimals": 18, - "name": "Nereus Token", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x94615302bcb36309371ea7454f3e99a4002105de.png", - "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0xbd8005612124dc30601e22d8b5d188a89767c640": { - "address": "0xbd8005612124dc30601e22d8b5d188a89767c640", - "symbol": "EXO", - "decimals": 18, - "name": "Exohood", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0xbd8005612124dc30601e22d8b5d188a89767c640.png", - "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0xc45a479877e1e9dfe9fcd4056c699575a1045daa": { - "address": "0xc45a479877e1e9dfe9fcd4056c699575a1045daa", - "symbol": "ASUSHI", - "decimals": 18, - "name": "Aave v3 SUSHI", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0xc45a479877e1e9dfe9fcd4056c699575a1045daa.png", - "aggregators": ["CoinGecko", "LiFi", "Rubic", "Sonarwatch"], - "occurrences": 4 - }, - "0x8105f88e77a5d102099bf73db4469d3f1e3b0cd6": { - "address": "0x8105f88e77a5d102099bf73db4469d3f1e3b0cd6", - "symbol": "JCO", - "decimals": 18, - "name": "JennyCo", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x8105f88e77a5d102099bf73db4469d3f1e3b0cd6.png", - "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0x08e175a1eac9744a0f1ccaeb8f669af6a2bda3ce": { - "address": "0x08e175a1eac9744a0f1ccaeb8f669af6a2bda3ce", - "symbol": "E8", - "decimals": 9, - "name": "Energy8", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x08e175a1eac9744a0f1ccaeb8f669af6a2bda3ce.png", - "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0xade6057fcafa57d6d51ffa341c64ce4814995995": { - "address": "0xade6057fcafa57d6d51ffa341c64ce4814995995", - "symbol": "BZPR1", - "decimals": 18, - "name": "Backed ZPR1 $ 1-3 Month T-Bill", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0xade6057fcafa57d6d51ffa341c64ce4814995995.png", - "aggregators": ["CoinGecko", "LiFi", "Rubic", "Sonarwatch"], - "occurrences": 4 - }, - "0x724dc807b04555b71ed48a6896b6f41593b8c637": { - "address": "0x724dc807b04555b71ed48a6896b6f41593b8c637", - "symbol": "ADPI", - "decimals": 18, - "name": "Aave v3 DPI", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x724dc807b04555b71ed48a6896b6f41593b8c637.png", - "aggregators": ["CoinGecko", "LiFi", "Rubic", "Sonarwatch"], - "occurrences": 4 - }, - "0xba777ae3a3c91fcd83ef85bfe65410592bdd0f7c": { - "address": "0xba777ae3a3c91fcd83ef85bfe65410592bdd0f7c", - "symbol": "CONE", - "decimals": 18, - "name": "BitCone", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0xba777ae3a3c91fcd83ef85bfe65410592bdd0f7c.png", - "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0xf86df9b91f002cfeb2aed0e6d05c4c4eaef7cf02": { - "address": "0xf86df9b91f002cfeb2aed0e6d05c4c4eaef7cf02", - "symbol": "PORY", - "decimals": 18, - "name": "Porygon", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0xf86df9b91f002cfeb2aed0e6d05c4c4eaef7cf02.png", - "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0x7ca601b0a7de5c086f265d76237b1d8a8b3194dc": { - "address": "0x7ca601b0a7de5c086f265d76237b1d8a8b3194dc", - "symbol": "LEKS", - "decimals": 18, - "name": "Lecksis", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x7ca601b0a7de5c086f265d76237b1d8a8b3194dc.png", - "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0xa8c557c7ac1626eacaa0e80fac7b6997346306e8": { - "address": "0xa8c557c7ac1626eacaa0e80fac7b6997346306e8", - "symbol": "EGX", - "decimals": 6, - "name": "Enegra", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0xa8c557c7ac1626eacaa0e80fac7b6997346306e8.png", - "aggregators": ["CoinGecko", "LiFi", "Rubic", "Sonarwatch"], - "occurrences": 4 - }, - "0x433ccebc95ad458e74d81837db0d4aa27e30e117": { - "address": "0x433ccebc95ad458e74d81837db0d4aa27e30e117", - "symbol": "UDAO", - "decimals": 18, - "name": "UDAO", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x433ccebc95ad458e74d81837db0d4aa27e30e117.png", - "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0x3ed4c2d63def617f436eb031bacae16f478f3b00": { - "address": "0x3ed4c2d63def617f436eb031bacae16f478f3b00", - "symbol": "DPEX", - "decimals": 18, - "name": "DPEX", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x3ed4c2d63def617f436eb031bacae16f478f3b00.png", - "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0xb9df5fda1c435cd4017a1f1f9111996520b64439": { - "address": "0xb9df5fda1c435cd4017a1f1f9111996520b64439", - "symbol": "IBS", - "decimals": 18, - "name": "IBS", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0xb9df5fda1c435cd4017a1f1f9111996520b64439.png", - "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0xbac3368b5110f3a3dda8b5a0f7b66edb37c47afe": { - "address": "0xbac3368b5110f3a3dda8b5a0f7b66edb37c47afe", - "symbol": "AIPEPE", - "decimals": 18, - "name": "AI PEPE KING", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0xbac3368b5110f3a3dda8b5a0f7b66edb37c47afe.png", - "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0x37c5ebfae4e4da225e9d8042b05063c4a2c94bb6": { - "address": "0x37c5ebfae4e4da225e9d8042b05063c4a2c94bb6", - "symbol": "STAU", - "decimals": 18, - "name": "STAU", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x37c5ebfae4e4da225e9d8042b05063c4a2c94bb6.png", - "aggregators": ["CoinGecko", "LiFi", "Rubic", "Rango"], - "occurrences": 4 - }, - "0x6483de4a2c76a38f288c4922fe2f507b2322ef80": { - "address": "0x6483de4a2c76a38f288c4922fe2f507b2322ef80", - "symbol": "LRS", - "decimals": 18, - "name": "Larissa Blockchain", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x6483de4a2c76a38f288c4922fe2f507b2322ef80.png", - "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0xb7f1219db39ea0cb029e4dcc3daffdcfd233defd": { - "address": "0xb7f1219db39ea0cb029e4dcc3daffdcfd233defd", - "symbol": "KEYSATIN", - "decimals": 18, - "name": "KeySATIN", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0xb7f1219db39ea0cb029e4dcc3daffdcfd233defd.png", - "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0xc114678c6e4654d041b2006c90f08478b444c4e2": { - "address": "0xc114678c6e4654d041b2006c90f08478b444c4e2", - "symbol": "EDX", - "decimals": 18, - "name": "edeXa", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0xc114678c6e4654d041b2006c90f08478b444c4e2.png", - "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0xe9e7c09e82328c3107d367f6c617cf9977e63ed0": { - "address": "0xe9e7c09e82328c3107d367f6c617cf9977e63ed0", - "symbol": "A51", - "decimals": 18, - "name": "A51 Finance", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0xe9e7c09e82328c3107d367f6c617cf9977e63ed0.png", - "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0xaa1e97614eaf8d85dbf58f7f0b3080b2affcfefc": { - "address": "0xaa1e97614eaf8d85dbf58f7f0b3080b2affcfefc", - "symbol": "FEVO", - "decimals": 18, - "name": "Flappy Bird Evolution", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0xaa1e97614eaf8d85dbf58f7f0b3080b2affcfefc.png", - "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0x61ca155f1660b0af117ed00321d1c3ee264ef943": { - "address": "0x61ca155f1660b0af117ed00321d1c3ee264ef943", - "symbol": "CRMC", - "decimals": 8, - "name": "Chrema Coin", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x61ca155f1660b0af117ed00321d1c3ee264ef943.png", - "aggregators": ["CoinGecko", "LiFi", "Rubic", "Rango"], - "occurrences": 4 - }, - "0xab670fdfb0060bdc6508b84a309ff41b56ccaf3f": { - "address": "0xab670fdfb0060bdc6508b84a309ff41b56ccaf3f", - "symbol": "USDW", - "decimals": 18, - "name": "USD WINK", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0xab670fdfb0060bdc6508b84a309ff41b56ccaf3f.png", - "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0xd33fd95fc17bc808b35e98458e078330f35dbfa3": { - "address": "0xd33fd95fc17bc808b35e98458e078330f35dbfa3", - "symbol": "NIGHT", - "decimals": 9, - "name": "Midnight", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0xd33fd95fc17bc808b35e98458e078330f35dbfa3.png", - "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0xa3f751662e282e83ec3cbc387d225ca56dd63d3a": { - "address": "0xa3f751662e282e83ec3cbc387d225ca56dd63d3a", - "symbol": "APEPE", - "decimals": 18, - "name": "Ape and Pepe", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0xa3f751662e282e83ec3cbc387d225ca56dd63d3a.png", - "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0x301595f6fd5f69fad7a488dacb8971e7c0c2f559": { - "address": "0x301595f6fd5f69fad7a488dacb8971e7c0c2f559", - "symbol": "WTPOKT", - "decimals": 12, - "name": "Wrapped ThunderPOKT", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x301595f6fd5f69fad7a488dacb8971e7c0c2f559.png", - "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0x59536e645e5f394045049c38ea98ae45b4b0ded2": { - "address": "0x59536e645e5f394045049c38ea98ae45b4b0ded2", - "symbol": "DDMT", - "decimals": 18, - "name": "Dongdaemun Token", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x59536e645e5f394045049c38ea98ae45b4b0ded2.png", - "aggregators": ["CoinGecko", "LiFi", "Rubic", "Sonarwatch"], - "occurrences": 4 - }, - "0x30ea765d4dda26e0f89e1b23a7c7b2526b7d29ec": { - "address": "0x30ea765d4dda26e0f89e1b23a7c7b2526b7d29ec", - "symbol": "POLYPAD", - "decimals": 18, - "name": "PolyPad", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x30ea765d4dda26e0f89e1b23a7c7b2526b7d29ec.png", - "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0x649a2da7b28e0d54c13d5eff95d3a660652742cc": { - "address": "0x649a2da7b28e0d54c13d5eff95d3a660652742cc", - "symbol": "IDRX", - "decimals": 0, - "name": "IDRX", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x649a2da7b28e0d54c13d5eff95d3a660652742cc.png", - "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0xe156987a81a9b841c1def6f111ea69bf817fb272": { - "address": "0xe156987a81a9b841c1def6f111ea69bf817fb272", - "symbol": "SHARDS", - "decimals": 6, - "name": "Flux Point Studios SHARDS", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0xe156987a81a9b841c1def6f111ea69bf817fb272.png", - "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0x8fa62d23fb6359c1e1685dbfa9b63ef27ecdb612": { - "address": "0x8fa62d23fb6359c1e1685dbfa9b63ef27ecdb612", - "symbol": "MCOIN", - "decimals": 3, - "name": "MariCoin", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x8fa62d23fb6359c1e1685dbfa9b63ef27ecdb612.png", - "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0x408a634b8a8f0de729b48574a3a7ec3fe820b00a": { - "address": "0x408a634b8a8f0de729b48574a3a7ec3fe820b00a", - "symbol": "BENJI", - "decimals": 18, - "name": "Franklin OnChain U.S. Government Money Fund", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x408a634b8a8f0de729b48574a3a7ec3fe820b00a.png", - "aggregators": ["CoinGecko", "LiFi", "Rubic", "Sonarwatch"], - "occurrences": 4 - }, - "0x463fae8f3c63af7c40e50df3ba28469bf9942f69": { - "address": "0x463fae8f3c63af7c40e50df3ba28469bf9942f69", - "symbol": "SABAI", - "decimals": 18, - "name": "Sabai Protocol", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x463fae8f3c63af7c40e50df3ba28469bf9942f69.png", - "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0x6749441fdc8650b5b5a854ed255c82ef361f1596": { - "address": "0x6749441fdc8650b5b5a854ed255c82ef361f1596", - "symbol": "LUCHA", - "decimals": 18, - "name": "Lucha", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x6749441fdc8650b5b5a854ed255c82ef361f1596.png", - "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0x7961ade0a767c0e5b67dd1a1f78ba44f727642ed": { - "address": "0x7961ade0a767c0e5b67dd1a1f78ba44f727642ed", - "symbol": "TGR", - "decimals": 18, - "name": "Tegro", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x7961ade0a767c0e5b67dd1a1f78ba44f727642ed.png", - "aggregators": ["CoinGecko", "LiFi", "Rubic", "Sonarwatch"], - "occurrences": 4 - }, - "0xdd75542611d57c4b6e68168b14c3591c539022ed": { - "address": "0xdd75542611d57c4b6e68168b14c3591c539022ed", - "symbol": "ZCX", - "decimals": 18, - "name": "Unizen", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0xdd75542611d57c4b6e68168b14c3591c539022ed.png", - "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0x6f64f47f95cf656f21b40e14798f6b49f80b3dc5": { - "address": "0x6f64f47f95cf656f21b40e14798f6b49f80b3dc5", - "symbol": "SAFO", - "decimals": 5, - "name": "Spiko Amundi Overnight Swap Fund", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x6f64f47f95cf656f21b40e14798f6b49f80b3dc5.png", - "aggregators": ["CoinGecko", "LiFi", "Rubic", "Rango"], - "occurrences": 4 - }, - "0x272ea767712cc4839f4a27ee35eb73116158c8a2": { - "address": "0x272ea767712cc4839f4a27ee35eb73116158c8a2", - "symbol": "EURSAFO", - "decimals": 5, - "name": "Spiko Amundi Overnight Swap Fund (EUR)", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x272ea767712cc4839f4a27ee35eb73116158c8a2.png", - "aggregators": ["CoinGecko", "LiFi", "Rubic", "Rango"], - "occurrences": 4 - }, - "0x4fe515c67eeeadb3282780325f09bb7c244fe774": { - "address": "0x4fe515c67eeeadb3282780325f09bb7c244fe774", - "symbol": "GBPSAFO", - "decimals": 5, - "name": "Spiko Amundi Overnight Swap Fund (GBP)", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x4fe515c67eeeadb3282780325f09bb7c244fe774.png", - "aggregators": ["CoinGecko", "LiFi", "Rubic", "Rango"], - "occurrences": 4 - }, - "0x039d2e8f097331278bd6c1415d839310e0d5ece4": { - "address": "0x039d2e8f097331278bd6c1415d839310e0d5ece4", - "symbol": "LINDA", - "decimals": 18, - "name": "Linda", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x039d2e8f097331278bd6c1415d839310e0d5ece4.png", - "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0x0aa1e96d2a46ec6beb2923de1e61addf5f5f1dce": { - "address": "0x0aa1e96d2a46ec6beb2923de1e61addf5f5f1dce", - "symbol": "REG", - "decimals": 18, - "name": "REG", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x0aa1e96d2a46ec6beb2923de1e61addf5f5f1dce.png", - "aggregators": ["CoinGecko", "LiFi", "Rubic", "Rango"], - "occurrences": 4 - }, - "0x0ba8a6ce46d369d779299dedade864318097b703": { - "address": "0x0ba8a6ce46d369d779299dedade864318097b703", - "symbol": "JUSD", - "decimals": 18, - "name": "JUSD", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x0ba8a6ce46d369d779299dedade864318097b703.png", - "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0x8226ac9edb26ff16da19151042a8ba3bb2cc237f": { - "address": "0x8226ac9edb26ff16da19151042a8ba3bb2cc237f", - "symbol": "ELG", - "decimals": 18, - "name": "Escoin", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x8226ac9edb26ff16da19151042a8ba3bb2cc237f.png", - "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0x1236ea13c7339287cd00ab196aaa8217006b04dc": { - "address": "0x1236ea13c7339287cd00ab196aaa8217006b04dc", - "symbol": "EPL", - "decimals": 18, - "name": "Epic League", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x1236ea13c7339287cd00ab196aaa8217006b04dc.png", - "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0xfa5d5dd2517ee9c1419534a16b132adde2e3d948": { - "address": "0xfa5d5dd2517ee9c1419534a16b132adde2e3d948", - "symbol": "ULX", - "decimals": 18, - "name": "ULTRON", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0xfa5d5dd2517ee9c1419534a16b132adde2e3d948.png", - "aggregators": ["CoinGecko", "LiFi", "Rubic", "Sonarwatch"], - "occurrences": 4 - }, - "0x77f56cf9365955486b12c4816992388ee8606f0e": { - "address": "0x77f56cf9365955486b12c4816992388ee8606f0e", - "symbol": "C98", - "decimals": 18, - "name": "Coin98", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x77f56cf9365955486b12c4816992388ee8606f0e.png", - "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0xb140665dde25c644c6b418e417c930de8a8a6ac9": { - "address": "0xb140665dde25c644c6b418e417c930de8a8a6ac9", - "symbol": "ATRI", - "decimals": 0, - "name": "ATRI", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0xb140665dde25c644c6b418e417c930de8a8a6ac9.png", - "aggregators": ["CoinGecko", "Socket", "Rubic", "Rango"], - "occurrences": 4 - }, - "0xe229b734251dd48dda27bb908d90329f229c3531": { - "address": "0xe229b734251dd48dda27bb908d90329f229c3531", - "symbol": "GRAMP", - "decimals": 18, - "name": "Gram Platinum", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0xe229b734251dd48dda27bb908d90329f229c3531.png", - "aggregators": ["CoinGecko", "LiFi", "Rubic", "Sonarwatch"], - "occurrences": 4 - }, - "0xf59036caebea7dc4b86638dfa2e3c97da9fccd40": { - "address": "0xf59036caebea7dc4b86638dfa2e3c97da9fccd40", - "symbol": "AWSTETH", - "decimals": 18, - "name": "Aave v3 wstETH", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0xf59036caebea7dc4b86638dfa2e3c97da9fccd40.png", - "aggregators": ["CoinGecko", "LiFi", "Rubic", "Sonarwatch"], - "occurrences": 4 - }, - "0x8ffdf2de812095b1d19cb146e4c004587c0a0692": { - "address": "0x8ffdf2de812095b1d19cb146e4c004587c0a0692", - "symbol": "ABAL", - "decimals": 18, - "name": "Aave v3 BAL", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x8ffdf2de812095b1d19cb146e4c004587c0a0692.png", - "aggregators": ["CoinGecko", "LiFi", "Rubic", "Sonarwatch"], - "occurrences": 4 - }, - "0xd2a530170d71a9cfe1651fb468e2b98f7ed7456b": { - "address": "0xd2a530170d71a9cfe1651fb468e2b98f7ed7456b", - "symbol": "AUDF", - "decimals": 6, - "name": "Forte AUD", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0xd2a530170d71a9cfe1651fb468e2b98f7ed7456b.png", - "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0x95e376390f472fcaa21995169e11d523954b3bbb": { - "address": "0x95e376390f472fcaa21995169e11d523954b3bbb", - "symbol": "TRYT", - "decimals": 18, - "name": "LiraT", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x95e376390f472fcaa21995169e11d523954b3bbb.png", - "aggregators": ["CoinGecko", "LiFi", "Rubic", "Sonarwatch"], - "occurrences": 4 - }, - "0xd94a8f9caed25e63ecc90edfefaf3635ea1e182a": { - "address": "0xd94a8f9caed25e63ecc90edfefaf3635ea1e182a", - "symbol": "SCOMP", - "decimals": 18, - "name": "Stablecomp", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0xd94a8f9caed25e63ecc90edfefaf3635ea1e182a.png", - "aggregators": ["CoinGecko", "LiFi", "Rubic", "Sonarwatch"], - "occurrences": 4 - }, - "0xb0b2ef34d412d73b0ff90a709d1779a20655165a": { - "address": "0xb0b2ef34d412d73b0ff90a709d1779a20655165a", - "symbol": "GUARD", - "decimals": 18, - "name": "Guardian GUARD", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0xb0b2ef34d412d73b0ff90a709d1779a20655165a.png", - "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0x2f5de51823e514de04475ba8db1eeba5b244ba84": { - "address": "0x2f5de51823e514de04475ba8db1eeba5b244ba84", - "symbol": "USDOT", - "decimals": 18, - "name": "Token Teknoloji A.Ş. USD", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x2f5de51823e514de04475ba8db1eeba5b244ba84.png", - "aggregators": ["CoinGecko", "LiFi", "Rubic", "Sonarwatch"], - "occurrences": 4 - }, - "0xb5e0cfe1b4db501ac003b740665bf43192cc7853": { - "address": "0xb5e0cfe1b4db501ac003b740665bf43192cc7853", - "symbol": "GHOST", - "decimals": 8, - "name": "Ghost", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0xb5e0cfe1b4db501ac003b740665bf43192cc7853.png", - "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0x1c0a798b5a5273a9e54028eb1524fd337b24145f": { - "address": "0x1c0a798b5a5273a9e54028eb1524fd337b24145f", - "symbol": "LOWB", - "decimals": 18, - "name": "Loser Coin", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x1c0a798b5a5273a9e54028eb1524fd337b24145f.png", - "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0x14a5f2872396802c3cc8942a39ab3e4118ee5038": { - "address": "0x14a5f2872396802c3cc8942a39ab3e4118ee5038", - "symbol": "BTSLA", - "decimals": 18, - "name": "Backed Tesla", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x14a5f2872396802c3cc8942a39ab3e4118ee5038.png", - "aggregators": ["CoinGecko", "LiFi", "Rubic", "Sonarwatch"], - "occurrences": 4 - }, - "0xac28c9178acc8ba4a11a29e013a3a2627086e422": { - "address": "0xac28c9178acc8ba4a11a29e013a3a2627086e422", - "symbol": "BMSTR", - "decimals": 18, - "name": "Backed MicroStrategy", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0xac28c9178acc8ba4a11a29e013a3a2627086e422.png", - "aggregators": ["CoinGecko", "LiFi", "Rubic", "Sonarwatch"], - "occurrences": 4 - }, - "0x0f76d32cdccdcbd602a55af23eaf58fd1ee17245": { - "address": "0x0f76d32cdccdcbd602a55af23eaf58fd1ee17245", - "symbol": "BERNA", - "decimals": 18, - "name": "Backed ERNA $ Bond", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x0f76d32cdccdcbd602a55af23eaf58fd1ee17245.png", - "aggregators": ["CoinGecko", "LiFi", "Rubic", "Sonarwatch"], - "occurrences": 4 - }, - "0xebee37aaf2905b7bda7e3b928043862e982e8f32": { - "address": "0xebee37aaf2905b7bda7e3b928043862e982e8f32", - "symbol": "BGOOGL", - "decimals": 18, - "name": "Backed Alphabet Class A", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0xebee37aaf2905b7bda7e3b928043862e982e8f32.png", - "aggregators": ["CoinGecko", "LiFi", "Rubic", "Sonarwatch"], - "occurrences": 4 - }, - "0x374a457967ba24fd3ae66294cab08244185574b0": { - "address": "0x374a457967ba24fd3ae66294cab08244185574b0", - "symbol": "BMSFT", - "decimals": 18, - "name": "Backed Microsoft", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x374a457967ba24fd3ae66294cab08244185574b0.png", - "aggregators": ["CoinGecko", "LiFi", "Rubic", "Sonarwatch"], - "occurrences": 4 - }, - "0xd8b95b1987741849ca7e71e976aeb535fd2e55a2": { - "address": "0xd8b95b1987741849ca7e71e976aeb535fd2e55a2", - "symbol": "BCSBGC3", - "decimals": 18, - "name": "Backed Swiss Domestic Government Bond 0-3", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0xd8b95b1987741849ca7e71e976aeb535fd2e55a2.png", - "aggregators": ["CoinGecko", "LiFi", "Rubic", "Sonarwatch"], - "occurrences": 4 - }, - "0x5fcb9de282af6122ce3518cde28b7089c9f97b26": { - "address": "0x5fcb9de282af6122ce3518cde28b7089c9f97b26", - "symbol": "DHV", - "decimals": 18, - "name": "DHV", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x5fcb9de282af6122ce3518cde28b7089c9f97b26.png", - "aggregators": ["CoinGecko", "Socket", "Rubic", "Rango"], - "occurrences": 4 - }, - "0x09211dc67f9fe98fb7bbb91be0ef05f4a12fa2b2": { - "address": "0x09211dc67f9fe98fb7bbb91be0ef05f4a12fa2b2", - "symbol": "WATCH", - "decimals": 18, - "name": "Yieldwatch", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x09211dc67f9fe98fb7bbb91be0ef05f4a12fa2b2.png", - "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0xbc2597d3f1f9565100582cde02e3712d03b8b0f6": { - "address": "0xbc2597d3f1f9565100582cde02e3712d03b8b0f6", - "symbol": "CCAKE", - "decimals": 18, - "name": "CheesecakeSwap", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0xbc2597d3f1f9565100582cde02e3712d03b8b0f6.png", - "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0x863d6074afaf02d9d41a5f8ea83278df7089aa86": { - "address": "0x863d6074afaf02d9d41a5f8ea83278df7089aa86", - "symbol": "SKILL", - "decimals": 18, - "name": "CryptoBlades", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x863d6074afaf02d9d41a5f8ea83278df7089aa86.png", - "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0x3c1bb39bb696b443a1d80bb2b3a3d950ba9dee87": { - "address": "0x3c1bb39bb696b443a1d80bb2b3a3d950ba9dee87", - "symbol": "WSG", - "decimals": 18, - "name": "Wall Street Games [OLD]", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x3c1bb39bb696b443a1d80bb2b3a3d950ba9dee87.png", - "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0xdb298285fe4c5410b05390ca80e8fbe9de1f259b": { - "address": "0xdb298285fe4c5410b05390ca80e8fbe9de1f259b", - "symbol": "FOREX", - "decimals": 18, - "name": "handle.fi", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0xdb298285fe4c5410b05390ca80e8fbe9de1f259b.png", - "aggregators": ["CoinGecko", "LiFi", "Rubic", "Sonarwatch"], - "occurrences": 4 - }, - "0x1d1498166ddceee616a6d99868e1e0677300056f": { - "address": "0x1d1498166ddceee616a6d99868e1e0677300056f", - "symbol": "SPACE", - "decimals": 18, - "name": "Space Token", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x1d1498166ddceee616a6d99868e1e0677300056f.png", - "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0x7bb11e7f8b10e9e571e5d8eace04735fdfb2358a": { - "address": "0x7bb11e7f8b10e9e571e5d8eace04735fdfb2358a", - "symbol": "AVAX", - "decimals": 18, - "name": "Avalanche (Wormhole)", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x7bb11e7f8b10e9e571e5d8eace04735fdfb2358a.png", - "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0x61aee582896064ecd5d85d66a32ddeb5574a699d": { - "address": "0x61aee582896064ecd5d85d66a32ddeb5574a699d", - "symbol": "HYVE", - "decimals": 18, - "name": "Hyve", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x61aee582896064ecd5d85d66a32ddeb5574a699d.png", - "aggregators": ["CoinGecko", "LiFi", "Rubic", "Sonarwatch"], - "occurrences": 4 - }, - "0xfafa220145dfa5c3ec85b6fa8a75aee2451cde5e": { - "address": "0xfafa220145dfa5c3ec85b6fa8a75aee2451cde5e", - "symbol": "ROOBEE", - "decimals": 18, - "name": "Roobee", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0xfafa220145dfa5c3ec85b6fa8a75aee2451cde5e.png", - "aggregators": ["CoinGecko", "LiFi", "Rubic", "Sonarwatch"], - "occurrences": 4 - }, - "0x14eb40fb7900185c01adc6a5b8ac506d8a600e3c": { - "address": "0x14eb40fb7900185c01adc6a5b8ac506d8a600e3c", - "symbol": "EUROT", - "decimals": 18, - "name": "Token Teknoloji A.Ş. EURO", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x14eb40fb7900185c01adc6a5b8ac506d8a600e3c.png", - "aggregators": ["CoinGecko", "LiFi", "Rubic", "Sonarwatch"], - "occurrences": 4 - }, - "0x554f074d9ccda8f483d1812d4874cbebd682644e": { - "address": "0x554f074d9ccda8f483d1812d4874cbebd682644e", - "symbol": "$ANRX", - "decimals": 18, - "name": "$ANRX", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x554f074d9ccda8f483d1812d4874cbebd682644e.png", - "aggregators": ["QuickSwap", "Socket", "Rubic", "Rango"], - "occurrences": 4 - }, - "0xac51c4c48dc3116487ed4bc16542e27b5694da1b": { - "address": "0xac51c4c48dc3116487ed4bc16542e27b5694da1b", - "symbol": "ATOM", - "decimals": 6, - "name": "ATOM", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0xac51c4c48dc3116487ed4bc16542e27b5694da1b.png", - "aggregators": ["QuickSwap", "LiFi", "Rubic", "Rango"], - "occurrences": 4 - }, - "0x72bd80445b0db58ebe3e8db056529d4c5faf6f2f": { - "address": "0x72bd80445b0db58ebe3e8db056529d4c5faf6f2f", - "symbol": "NEAR", - "decimals": 18, - "name": "NEAR", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x72bd80445b0db58ebe3e8db056529d4c5faf6f2f.png", - "aggregators": ["QuickSwap", "LiFi", "Socket", "Rango"], - "occurrences": 4 - }, - "0x9f28e2455f9ffcfac9ebd6084853417362bc5dbb": { - "address": "0x9f28e2455f9ffcfac9ebd6084853417362bc5dbb", - "symbol": "RMATIC", - "decimals": 18, - "name": "StaFi Staked MATIC", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x9f28e2455f9ffcfac9ebd6084853417362bc5dbb.png", - "aggregators": ["QuickSwap", "LiFi", "Rubic", "Rango"], - "occurrences": 4 - }, - "0x1eba4b44c4f8cc2695347c6a78f0b7a002d26413": { - "address": "0x1eba4b44c4f8cc2695347c6a78f0b7a002d26413", - "symbol": "UND", - "decimals": 18, - "name": "Unbound Dollar", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x1eba4b44c4f8cc2695347c6a78f0b7a002d26413.png", - "aggregators": ["QuickSwap", "LiFi", "Rubic", "Rango"], - "occurrences": 4 - }, - "0x42435f467d33e5c4146a4e8893976ef12bbce762": { - "address": "0x42435f467d33e5c4146a4e8893976ef12bbce762", - "symbol": "DEFI5", - "decimals": 18, - "name": "DEFI5", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x42435f467d33e5c4146a4e8893976ef12bbce762.png", - "aggregators": ["LiFi", "Socket", "Rubic", "Rango"], - "occurrences": 4 - }, - "0xb03e3b00baf9954bf1604d09a4dbd5cf88e1f695": { - "address": "0xb03e3b00baf9954bf1604d09a4dbd5cf88e1f695", - "symbol": "EDU", - "decimals": 18, - "name": "Open Campus", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0xb03e3b00baf9954bf1604d09a4dbd5cf88e1f695.png", - "aggregators": ["LiFi", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0x58d70ef99a1d22e1a8f8f0e8f27c1babcf8464f3": { - "address": "0x58d70ef99a1d22e1a8f8f0e8f27c1babcf8464f3", - "symbol": "MTS", - "decimals": 18, - "name": "Meta Plus Token", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x58d70ef99a1d22e1a8f8f0e8f27c1babcf8464f3.png", - "aggregators": ["LiFi", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0xc2a7195cef4605bd80b949cd7eb1f7ad1566c850": { - "address": "0xc2a7195cef4605bd80b949cd7eb1f7ad1566c850", - "symbol": "PWR", - "decimals": 18, - "name": "Gamebitcoin Power", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0xc2a7195cef4605bd80b949cd7eb1f7ad1566c850.png", - "aggregators": ["LiFi", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0x65517425ac3ce259a34400bb67ceb39ff3ddc0bd": { - "address": "0x65517425ac3ce259a34400bb67ceb39ff3ddc0bd", - "symbol": "NARS", - "decimals": 18, - "name": "Num ARS", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x65517425ac3ce259a34400bb67ceb39ff3ddc0bd.png", - "aggregators": ["LiFi", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0xf30aabd8cbb8e1d827a79b4354868914040ec155": { - "address": "0xf30aabd8cbb8e1d827a79b4354868914040ec155", - "symbol": "COW", - "decimals": 18, - "name": "Chronicles of Warcraft", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0xf30aabd8cbb8e1d827a79b4354868914040ec155.png", - "aggregators": ["LiFi", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0x5d2375c6af4b7de4e395ada20aab937895b4fa70": { - "address": "0x5d2375c6af4b7de4e395ada20aab937895b4fa70", - "symbol": "MSC", - "decimals": 18, - "name": "MetaSoccer Cash", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x5d2375c6af4b7de4e395ada20aab937895b4fa70.png", - "aggregators": ["LiFi", "Rubic", "Rango", "SushiSwap"], - "occurrences": 4 - }, - "0x27dfd2d7b85e0010542da35c6ebcd59e45fc949d": { - "address": "0x27dfd2d7b85e0010542da35c6ebcd59e45fc949d", - "symbol": "THE", - "decimals": 18, - "name": "THE", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x27dfd2d7b85e0010542da35c6ebcd59e45fc949d.png", - "aggregators": ["LiFi", "Socket", "Rubic", "Rango"], - "occurrences": 4 - }, - "0xdd14c9059a5eba25a41997efc106ce0a9664b53a": { - "address": "0xdd14c9059a5eba25a41997efc106ce0a9664b53a", - "symbol": "HMD", - "decimals": 18, - "name": "Healthmedi", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0xdd14c9059a5eba25a41997efc106ce0a9664b53a.png", - "aggregators": ["LiFi", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0x1221591c1d77a9c334abb0fe530ae6ee3af51af9": { - "address": "0x1221591c1d77a9c334abb0fe530ae6ee3af51af9", - "symbol": "AXMATIC", - "decimals": 18, - "name": "axMatic", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x1221591c1d77a9c334abb0fe530ae6ee3af51af9.png", - "aggregators": ["LiFi", "Rubic", "Rango", "SushiSwap"], - "occurrences": 4 - }, - "0x26d3c0d9f4cc4c130097b6afdebe4f5e497e6bdf": { - "address": "0x26d3c0d9f4cc4c130097b6afdebe4f5e497e6bdf", - "symbol": "MNT", - "decimals": 6, - "name": "Mynth", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x26d3c0d9f4cc4c130097b6afdebe4f5e497e6bdf.png", - "aggregators": ["LiFi", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0x0308a3a9c433256ad7ef24dbef9c49c8cb01300a": { - "address": "0x0308a3a9c433256ad7ef24dbef9c49c8cb01300a", - "symbol": "GPO", - "decimals": 18, - "name": "GoldPesa Option", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x0308a3a9c433256ad7ef24dbef9c49c8cb01300a.png", - "aggregators": ["LiFi", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0xd4d996ccda51b65c6fd884feaea83b237d084262": { - "address": "0xd4d996ccda51b65c6fd884feaea83b237d084262", - "symbol": "ALOR", - "decimals": 18, - "name": "Algorix (ALOR)", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0xd4d996ccda51b65c6fd884feaea83b237d084262.png", - "aggregators": ["LiFi", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0x85931ad37af0a3bb892086d13030330e93eac9df": { - "address": "0x85931ad37af0a3bb892086d13030330e93eac9df", - "symbol": "TXT", - "decimals": 18, - "name": "Tx24", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x85931ad37af0a3bb892086d13030330e93eac9df.png", - "aggregators": ["LiFi", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0x5eab32fe1d104ce0c5436fedc3433b646096e47c": { - "address": "0x5eab32fe1d104ce0c5436fedc3433b646096e47c", - "symbol": "LSHARE", - "decimals": 18, - "name": "LIF3 LSHARE", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x5eab32fe1d104ce0c5436fedc3433b646096e47c.png", - "aggregators": ["LiFi", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0xe07710cdcd1c9f0fb04bfd013f9854e4552671ce": { - "address": "0xe07710cdcd1c9f0fb04bfd013f9854e4552671ce", - "symbol": "U", - "decimals": 18, - "name": "U Coin", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0xe07710cdcd1c9f0fb04bfd013f9854e4552671ce.png", - "aggregators": ["LiFi", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0xc6480da81151b2277761024599e8db2ad4c388c8": { - "address": "0xc6480da81151b2277761024599e8db2ad4c388c8", - "symbol": "XDG", - "decimals": 18, - "name": "XDG", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0xc6480da81151b2277761024599e8db2ad4c388c8.png", - "aggregators": ["LiFi", "Socket", "Rubic", "Rango"], - "occurrences": 4 - }, - "0x08ad99fb3f9f262853b54613249b4064901bd358": { - "address": "0x08ad99fb3f9f262853b54613249b4064901bd358", - "symbol": "AXLWMAI", - "decimals": 18, - "name": "Axelar Wrapped WMAI", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x08ad99fb3f9f262853b54613249b4064901bd358.png", - "aggregators": ["LiFi", "Rubic", "Squid", "Rango"], - "occurrences": 4 - }, - "0x9e6b19874e97fe8e8cad77f2c0ab5e7a693e5dbf": { - "address": "0x9e6b19874e97fe8e8cad77f2c0ab5e7a693e5dbf", - "symbol": "ISHND", - "decimals": 18, - "name": "StrongHands Finance", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x9e6b19874e97fe8e8cad77f2c0ab5e7a693e5dbf.png", - "aggregators": ["LiFi", "Socket", "Rubic", "Rango"], - "occurrences": 4 - }, - "0x51869836681bce74a514625c856afb697a013797": { - "address": "0x51869836681bce74a514625c856afb697a013797", - "symbol": "GENESIS", - "decimals": 18, - "name": "Genesis Worlds", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x51869836681bce74a514625c856afb697a013797.png", - "aggregators": ["LiFi", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0x263026e7e53dbfdce5ae55ade22493f828922965": { - "address": "0x263026e7e53dbfdce5ae55ade22493f828922965", - "symbol": "RIC", - "decimals": 18, - "name": "RIC", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x263026e7e53dbfdce5ae55ade22493f828922965.png", - "aggregators": ["LiFi", "Rubic", "Rango", "SushiSwap"], - "occurrences": 4 - }, - "0x83a6da342099835bcaa9c219dd76a5033c837de5": { - "address": "0x83a6da342099835bcaa9c219dd76a5033c837de5", - "symbol": "BAS", - "decimals": 18, - "name": "Basis Share", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x83a6da342099835bcaa9c219dd76a5033c837de5.png", - "aggregators": ["LiFi", "Socket", "Rubic", "Rango"], - "occurrences": 4 - }, - "0x0835cdd017ea7bc4cc187c6e0f8ea2dbe0fea0dd": { - "address": "0x0835cdd017ea7bc4cc187c6e0f8ea2dbe0fea0dd", - "symbol": "KEN", - "decimals": 18, - "name": "KOHENOOR", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x0835cdd017ea7bc4cc187c6e0f8ea2dbe0fea0dd.png", - "aggregators": ["LiFi", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0xb7042c40de76cfc607ac05e68f9c28a778f0c8a6": { - "address": "0xb7042c40de76cfc607ac05e68f9c28a778f0c8a6", - "symbol": "WISTA", - "decimals": 18, - "name": "Wistaverse", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0xb7042c40de76cfc607ac05e68f9c28a778f0c8a6.png", - "aggregators": ["LiFi", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0x1ba3510a9ceeb72e5cdba8bcdde9647e1f20fb4b": { - "address": "0x1ba3510a9ceeb72e5cdba8bcdde9647e1f20fb4b", - "symbol": "DRAX", - "decimals": 18, - "name": "Drax", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x1ba3510a9ceeb72e5cdba8bcdde9647e1f20fb4b.png", - "aggregators": ["LiFi", "Rubic", "Rango", "SushiSwap"], - "occurrences": 4 - }, - "0x137ee749f0f8c2ed34ca00de33bb59e3dafa494a": { - "address": "0x137ee749f0f8c2ed34ca00de33bb59e3dafa494a", - "symbol": "WCCX", - "decimals": 6, - "name": "WrappedConceal", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x137ee749f0f8c2ed34ca00de33bb59e3dafa494a.png", - "aggregators": ["LiFi", "Rubic", "Rango", "SushiSwap"], - "occurrences": 4 - }, - "0x61e9c2f3501889f6167921087bd6ea306002904a": { - "address": "0x61e9c2f3501889f6167921087bd6ea306002904a", - "symbol": "PIXEL", - "decimals": 18, - "name": "Pixel", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x61e9c2f3501889f6167921087bd6ea306002904a.png", - "aggregators": ["LiFi", "Rubic", "Rango", "SushiSwap"], - "occurrences": 4 - }, - "0x3dc6052a693e4a2fc28eb2ea12fe0cfd3bd221d1": { - "address": "0x3dc6052a693e4a2fc28eb2ea12fe0cfd3bd221d1", - "symbol": "IRIS", - "decimals": 6, - "name": "IRIS", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x3dc6052a693e4a2fc28eb2ea12fe0cfd3bd221d1.png", - "aggregators": ["LiFi", "Socket", "Rubic", "Rango"], - "occurrences": 4 - }, - "0xacd7b3d9c10e97d0efa418903c0c7669e702e4c0": { - "address": "0xacd7b3d9c10e97d0efa418903c0c7669e702e4c0", - "symbol": "ELE", - "decimals": 18, - "name": "Eleven.finance", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0xacd7b3d9c10e97d0efa418903c0c7669e702e4c0.png", - "aggregators": ["LiFi", "Rubic", "Rango", "SushiSwap"], - "occurrences": 4 - }, - "0xf1938ce12400f9a761084e7a80d37e732a4da056": { - "address": "0xf1938ce12400f9a761084e7a80d37e732a4da056", - "symbol": "CHZ", - "decimals": 18, - "name": "CHZ (PoS)", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0xf1938ce12400f9a761084e7a80d37e732a4da056.png", - "aggregators": ["LiFi", "Socket", "Rubic", "Rango"], - "occurrences": 4 - }, - "0xcb898b0efb084df14dd8e018da37b4d0f06ab26d": { - "address": "0xcb898b0efb084df14dd8e018da37b4d0f06ab26d", - "symbol": "SING", - "decimals": 18, - "name": "Sing", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0xcb898b0efb084df14dd8e018da37b4d0f06ab26d.png", - "aggregators": ["LiFi", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0x9111d6446ac5b88a84cf06425c6286658368542f": { - "address": "0x9111d6446ac5b88a84cf06425c6286658368542f", - "symbol": "FLAG", - "decimals": 18, - "name": "For Loot And Glory", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x9111d6446ac5b88a84cf06425c6286658368542f.png", - "aggregators": ["LiFi", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0x2628568509e87c4429fbb5c664ed11391be1bd29": { - "address": "0x2628568509e87c4429fbb5c664ed11391be1bd29", - "symbol": "RENDGB", - "decimals": 8, - "name": "renDGB", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x2628568509e87c4429fbb5c664ed11391be1bd29.png", - "aggregators": ["LiFi", "Rubic", "Rango", "SushiSwap"], - "occurrences": 4 - }, - "0x0c51f415cf478f8d08c246a6c6ee180c5dc3a012": { - "address": "0x0c51f415cf478f8d08c246a6c6ee180c5dc3a012", - "symbol": "HOT", - "decimals": 18, - "name": "HOLO (PoS)", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x0c51f415cf478f8d08c246a6c6ee180c5dc3a012.png", - "aggregators": ["LiFi", "Socket", "Rubic", "Rango"], - "occurrences": 4 - }, - "0x11a1779ae6b02bb8e7ff847919bca3e55bcbb3d5": { - "address": "0x11a1779ae6b02bb8e7ff847919bca3e55bcbb3d5", - "symbol": "PAPER", - "decimals": 18, - "name": "Paper", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x11a1779ae6b02bb8e7ff847919bca3e55bcbb3d5.png", - "aggregators": ["LiFi", "Socket", "Rubic", "Rango"], - "occurrences": 4 - }, - "0x3962f4a0a0051dcce0be73a7e09cef5756736712": { - "address": "0x3962f4a0a0051dcce0be73a7e09cef5756736712", - "symbol": "LPT", - "decimals": 18, - "name": "Livepeer Token (PoS)", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x3962f4a0a0051dcce0be73a7e09cef5756736712.png", - "aggregators": ["LiFi", "Socket", "Rubic", "Rango"], - "occurrences": 4 - }, - "0xc4ace9278e7e01755b670c0838c3106367639962": { - "address": "0xc4ace9278e7e01755b670c0838c3106367639962", - "symbol": "RENFIL", - "decimals": 18, - "name": "renFIL", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0xc4ace9278e7e01755b670c0838c3106367639962.png", - "aggregators": ["LiFi", "Rubic", "Rango", "SushiSwap"], - "occurrences": 4 - }, - "0x46371c90fcce4d7367a61cb43ea7922406bc707a": { - "address": "0x46371c90fcce4d7367a61cb43ea7922406bc707a", - "symbol": "AXLKNC", - "decimals": 18, - "name": "Axelar Wrapped KNC", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x46371c90fcce4d7367a61cb43ea7922406bc707a.png", - "aggregators": ["LiFi", "Rubic", "Squid", "Rango"], - "occurrences": 4 - }, - "0x2b3ecb0991af0498ece9135bcd04013d7993110c": { - "address": "0x2b3ecb0991af0498ece9135bcd04013d7993110c", - "symbol": "UBO", - "decimals": 18, - "name": "Universal Basic Offset", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x2b3ecb0991af0498ece9135bcd04013d7993110c.png", - "aggregators": ["LiFi", "Rubic", "Rango", "SushiSwap"], - "occurrences": 4 - }, - "0x1e37b3855ca1ef46106baa162bfaf8a1e7666a5d": { - "address": "0x1e37b3855ca1ef46106baa162bfaf8a1e7666a5d", - "symbol": "TSLT", - "decimals": 18, - "name": "Tamkin", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x1e37b3855ca1ef46106baa162bfaf8a1e7666a5d.png", - "aggregators": ["LiFi", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0x6bca3b77c1909ce1a4ba1a20d1103bde8d222e48": { - "address": "0x6bca3b77c1909ce1a4ba1a20d1103bde8d222e48", - "symbol": "NBO", - "decimals": 18, - "name": "Nature Based Offset", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x6bca3b77c1909ce1a4ba1a20d1103bde8d222e48.png", - "aggregators": ["LiFi", "Rubic", "Rango", "SushiSwap"], - "occurrences": 4 - }, - "0x8829d36f6680be993f5444198e8cbfa8f02ede96": { - "address": "0x8829d36f6680be993f5444198e8cbfa8f02ede96", - "symbol": "TKAI", - "decimals": 18, - "name": "TAIKAI", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x8829d36f6680be993f5444198e8cbfa8f02ede96.png", - "aggregators": ["Socket", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0xb8cb8a7f4c2885c03e57e973c74827909fdc2032": { - "address": "0xb8cb8a7f4c2885c03e57e973c74827909fdc2032", - "symbol": "YFI", - "decimals": 18, - "name": "yearn.finance", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0xb8cb8a7f4c2885c03e57e973c74827909fdc2032.png", - "aggregators": ["Socket", "Rubic", "Rango", "SushiSwap"], - "occurrences": 4 - }, - "0x25c498781ca536547b147e2199f572e5393d36f0": { - "address": "0x25c498781ca536547b147e2199f572e5393d36f0", - "symbol": "AIRTNT", - "decimals": 18, - "name": "AirTnT", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x25c498781ca536547b147e2199f572e5393d36f0.png", - "aggregators": ["Socket", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0xda5949544aaf6124d06f398bfde4c86cc33b0ee7": { - "address": "0xda5949544aaf6124d06f398bfde4c86cc33b0ee7", - "symbol": "CYFM", - "decimals": 18, - "name": "CyberFM", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0xda5949544aaf6124d06f398bfde4c86cc33b0ee7.png", - "aggregators": ["Socket", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0xb988bd378a0754957d5d9471c96e0f8051645a26": { - "address": "0xb988bd378a0754957d5d9471c96e0f8051645a26", - "symbol": "INS", - "decimals": 18, - "name": "iNFTspace", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0xb988bd378a0754957d5d9471c96e0f8051645a26.png", - "aggregators": ["Socket", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0x8df26a1bd9bd98e2ec506fc9d8009954716a05dc": { - "address": "0x8df26a1bd9bd98e2ec506fc9d8009954716a05dc", - "symbol": "COLLAR", - "decimals": 18, - "name": "PolyPup Finance", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x8df26a1bd9bd98e2ec506fc9d8009954716a05dc.png", - "aggregators": ["Socket", "Rubic", "Rango", "SushiSwap"], - "occurrences": 4 - }, - "0x7b12598e3616261df1c05ec28de0d2fb10c1f206": { - "address": "0x7b12598e3616261df1c05ec28de0d2fb10c1f206", - "symbol": "COCA", - "decimals": 18, - "name": "COCA", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x7b12598e3616261df1c05ec28de0d2fb10c1f206.png", - "aggregators": ["CoinGecko", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x21a77520d0a25eede18a34ad4bc7a769d785c6ff": { - "address": "0x21a77520d0a25eede18a34ad4bc7a769d785c6ff", - "symbol": "SRX", - "decimals": 18, - "name": "Stars", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x21a77520d0a25eede18a34ad4bc7a769d785c6ff.png", - "aggregators": ["CoinGecko", "Rubic", "Sonarwatch"], - "occurrences": 3 - }, - "0xc65b1b55a287b4e8bf5c04faad21d43a21a1ce46": { - "address": "0xc65b1b55a287b4e8bf5c04faad21d43a21a1ce46", - "symbol": "CMT", - "decimals": 18, - "name": "CornerMarket", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0xc65b1b55a287b4e8bf5c04faad21d43a21a1ce46.png", - "aggregators": ["CoinGecko", "Rubic", "Sonarwatch"], - "occurrences": 3 - }, - "0x00a0d4f2fe50e023aec0648271ce1a6616c702e2": { - "address": "0x00a0d4f2fe50e023aec0648271ce1a6616c702e2", - "symbol": "HITT", - "decimals": 18, - "name": "TOKHIT", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x00a0d4f2fe50e023aec0648271ce1a6616c702e2.png", - "aggregators": ["CoinGecko", "Rubic", "Sonarwatch"], - "occurrences": 3 - }, - "0x2cb7285733a30bb08303b917a7a519c88146c6eb": { - "address": "0x2cb7285733a30bb08303b917a7a519c88146c6eb", - "symbol": "FRK", - "decimals": 18, - "name": "KUMA Protocol FR KUMA Interest Bearing Token", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x2cb7285733a30bb08303b917a7a519c88146c6eb.png", - "aggregators": ["CoinGecko", "Rubic", "Sonarwatch"], - "occurrences": 3 - }, - "0x24fd25a49627ce2e4be711e76dc22234c83539fe": { - "address": "0x24fd25a49627ce2e4be711e76dc22234c83539fe", - "symbol": "LIY", - "decimals": 18, - "name": "Lily", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x24fd25a49627ce2e4be711e76dc22234c83539fe.png", - "aggregators": ["CoinGecko", "LiFi", "Rubic"], - "occurrences": 3 - }, - "0xb91025710adbc140a9fee4b3e465545a2bf53e20": { - "address": "0xb91025710adbc140a9fee4b3e465545a2bf53e20", - "symbol": "EMRL.D", - "decimals": 18, - "name": "Emerald Security Token", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0xb91025710adbc140a9fee4b3e465545a2bf53e20.png", - "aggregators": ["CoinGecko", "LiFi", "Rubic"], - "occurrences": 3 - }, - "0xcce87c5b269c94b31ec437b1d7d85bf1413b7804": { - "address": "0xcce87c5b269c94b31ec437b1d7d85bf1413b7804", - "symbol": "OORT", - "decimals": 18, - "name": "Oort Digital", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0xcce87c5b269c94b31ec437b1d7d85bf1413b7804.png", - "aggregators": ["CoinGecko", "Rubic", "Sonarwatch"], - "occurrences": 3 - }, - "0x181feaecca4a69a793272ea06df40edf2dd0804c": { - "address": "0x181feaecca4a69a793272ea06df40edf2dd0804c", - "symbol": "ARES", - "decimals": 18, - "name": "Ares3 Network", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x181feaecca4a69a793272ea06df40edf2dd0804c.png", - "aggregators": ["CoinGecko", "Rubic", "Sonarwatch"], - "occurrences": 3 - }, - "0x21a00838e6b2d4aa3ac4bbc11111be011e1ca111": { - "address": "0x21a00838e6b2d4aa3ac4bbc11111be011e1ca111", - "symbol": "$GREENGOLD", - "decimals": 6, - "name": "GREENGOLD", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x21a00838e6b2d4aa3ac4bbc11111be011e1ca111.png", - "aggregators": ["CoinGecko", "Rubic", "Sonarwatch"], - "occurrences": 3 - }, - "0x62395ec568c92973a38230de209abba9de18b9b7": { - "address": "0x62395ec568c92973a38230de209abba9de18b9b7", - "symbol": "T3XP", - "decimals": 18, - "name": "XP", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x62395ec568c92973a38230de209abba9de18b9b7.png", - "aggregators": ["CoinGecko", "Rubic", "Sonarwatch"], - "occurrences": 3 - }, - "0x05059b925e1396a78f7375a74bc81085b0694436": { - "address": "0x05059b925e1396a78f7375a74bc81085b0694436", - "symbol": "MTFI", - "decimals": 18, - "name": "MTFi", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x05059b925e1396a78f7375a74bc81085b0694436.png", - "aggregators": ["CoinGecko", "Rubic", "Sonarwatch"], - "occurrences": 3 - }, - "0x9c17d36bccecafb7d284e8b3d985576d21cf2350": { - "address": "0x9c17d36bccecafb7d284e8b3d985576d21cf2350", - "symbol": "OBSW", - "decimals": 18, - "name": "OBS World", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x9c17d36bccecafb7d284e8b3d985576d21cf2350.png", - "aggregators": ["CoinGecko", "Rubic", "Sonarwatch"], - "occurrences": 3 - }, - "0x95f9b9beceb273815f7f22a5729924acf88050a6": { - "address": "0x95f9b9beceb273815f7f22a5729924acf88050a6", - "symbol": "TPT", - "decimals": 18, - "name": "Triple Plus", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x95f9b9beceb273815f7f22a5729924acf88050a6.png", - "aggregators": ["CoinGecko", "Rubic", "Rango"], - "occurrences": 3 - }, - "0xb853f7852aa780831f165899ccbaf5db0882b0d6": { - "address": "0xb853f7852aa780831f165899ccbaf5db0882b0d6", - "symbol": "CRS", - "decimals": 18, - "name": "CYRUS", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0xb853f7852aa780831f165899ccbaf5db0882b0d6.png", - "aggregators": ["CoinGecko", "Rubic", "Sonarwatch"], - "occurrences": 3 - }, - "0x0fced30234c3ea94a7b47cc88006ecb7a39dc30e": { - "address": "0x0fced30234c3ea94a7b47cc88006ecb7a39dc30e", - "symbol": "BTMT", - "decimals": 18, - "name": "BITmarkets Token", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x0fced30234c3ea94a7b47cc88006ecb7a39dc30e.png", - "aggregators": ["CoinGecko", "Rubic", "Sonarwatch"], - "occurrences": 3 - }, - "0xf401e2c1ce8f252947b60bfb92578f84217a1545": { - "address": "0xf401e2c1ce8f252947b60bfb92578f84217a1545", - "symbol": "ABAL", - "decimals": 18, - "name": "Arch Balanced Portfolio", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0xf401e2c1ce8f252947b60bfb92578f84217a1545.png", - "aggregators": ["CoinGecko", "Rubic", "Sonarwatch"], - "occurrences": 3 - }, - "0x688b4231472fde70c1d30f48638aa1661725d3ce": { - "address": "0x688b4231472fde70c1d30f48638aa1661725d3ce", - "symbol": "SENDC", - "decimals": 18, - "name": "SendCrypto", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x688b4231472fde70c1d30f48638aa1661725d3ce.png", - "aggregators": ["CoinGecko", "Rubic", "Sonarwatch"], - "occurrences": 3 - }, - "0x5d301750cc9719f00872e33ee81f9c37aba242f4": { - "address": "0x5d301750cc9719f00872e33ee81f9c37aba242f4", - "symbol": "RVLT", - "decimals": 18, - "name": "Revolt 2 Earn", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x5d301750cc9719f00872e33ee81f9c37aba242f4.png", - "aggregators": ["CoinGecko", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x823bbb870b0eb86bd7ec0bcc98c84b46a0f99ac7": { - "address": "0x823bbb870b0eb86bd7ec0bcc98c84b46a0f99ac7", - "symbol": "VOY", - "decimals": 18, - "name": "Voy Finance", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x823bbb870b0eb86bd7ec0bcc98c84b46a0f99ac7.png", - "aggregators": ["CoinGecko", "Rubic", "Sonarwatch"], - "occurrences": 3 - }, - "0xc71a7e46266a9a78212a5d87b030f8d1ce942efd": { - "address": "0xc71a7e46266a9a78212a5d87b030f8d1ce942efd", - "symbol": "CFI", - "decimals": 18, - "name": "Coinbet Finance", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0xc71a7e46266a9a78212a5d87b030f8d1ce942efd.png", - "aggregators": ["CoinGecko", "Rubic", "Sonarwatch"], - "occurrences": 3 - }, - "0x6ccb663dad597058da28b58974e8bdb81323dd09": { - "address": "0x6ccb663dad597058da28b58974e8bdb81323dd09", - "symbol": "BLOC", - "decimals": 18, - "name": "BlockCentral Token", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x6ccb663dad597058da28b58974e8bdb81323dd09.png", - "aggregators": ["CoinGecko", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x2e2992688ee4b2b7229118f2f4cfd9b8ab13c520": { - "address": "0x2e2992688ee4b2b7229118f2f4cfd9b8ab13c520", - "symbol": "EAPE", - "decimals": 18, - "name": "EraApe", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x2e2992688ee4b2b7229118f2f4cfd9b8ab13c520.png", - "aggregators": ["CoinGecko", "Rubic", "Sonarwatch"], - "occurrences": 3 - }, - "0x01d1a890d40d890d59795afcce22f5adbb511a3a": { - "address": "0x01d1a890d40d890d59795afcce22f5adbb511a3a", - "symbol": "WFRK", - "decimals": 18, - "name": "KUMA Protocol Wrapped FRK", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x01d1a890d40d890d59795afcce22f5adbb511a3a.png", - "aggregators": ["CoinGecko", "Rubic", "Sonarwatch"], - "occurrences": 3 - }, - "0xafb6e8331355fae99c8e8953bb4c6dc5d11e9f3c": { - "address": "0xafb6e8331355fae99c8e8953bb4c6dc5d11e9f3c", - "symbol": "AAGG", - "decimals": 18, - "name": "Arch Aggressive Portfolio", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0xafb6e8331355fae99c8e8953bb4c6dc5d11e9f3c.png", - "aggregators": ["CoinGecko", "Rubic", "Sonarwatch"], - "occurrences": 3 - }, - "0x6c511dc18572d31c2c3f7b1505cb2bbc08282fcc": { - "address": "0x6c511dc18572d31c2c3f7b1505cb2bbc08282fcc", - "symbol": "AIPO", - "decimals": 18, - "name": "Aipocalypto", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x6c511dc18572d31c2c3f7b1505cb2bbc08282fcc.png", - "aggregators": ["CoinGecko", "LiFi", "Rubic"], - "occurrences": 3 - }, - "0x00560e906b7c73ee2d18ebfd191591a83ae27ea0": { - "address": "0x00560e906b7c73ee2d18ebfd191591a83ae27ea0", - "symbol": "LOVELY", - "decimals": 18, - "name": "Lovely Inu Finance", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x00560e906b7c73ee2d18ebfd191591a83ae27ea0.png", - "aggregators": ["CoinGecko", "Rubic", "Sonarwatch"], - "occurrences": 3 - }, - "0x9de2b2dcdcf43540e47143f28484b6d15118f089": { - "address": "0x9de2b2dcdcf43540e47143f28484b6d15118f089", - "symbol": "CHFSAFO", - "decimals": 5, - "name": "Spiko Amundi Overnight Swap Fund (CHF)", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x9de2b2dcdcf43540e47143f28484b6d15118f089.png", - "aggregators": ["CoinGecko", "LiFi", "Rubic"], - "occurrences": 3 - }, - "0x17a011150e9feb7bec4cfada055c8df436eb730b": { - "address": "0x17a011150e9feb7bec4cfada055c8df436eb730b", - "symbol": "TT", - "decimals": 18, - "name": "TDEX Token", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x17a011150e9feb7bec4cfada055c8df436eb730b.png", - "aggregators": ["CoinGecko", "Rubic", "Sonarwatch"], - "occurrences": 3 - }, - "0x2c2d8a078b33bf7782a16acce2c5ba6653a90d5f": { - "address": "0x2c2d8a078b33bf7782a16acce2c5ba6653a90d5f", - "symbol": "L3USD", - "decimals": 18, - "name": "L3USD", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x2c2d8a078b33bf7782a16acce2c5ba6653a90d5f.png", - "aggregators": ["CoinGecko", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x1bc8bf18256d8b45d8367aac50fe2e24fc6aa8ca": { - "address": "0x1bc8bf18256d8b45d8367aac50fe2e24fc6aa8ca", - "symbol": "VES", - "decimals": 18, - "name": "VESTATE", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x1bc8bf18256d8b45d8367aac50fe2e24fc6aa8ca.png", - "aggregators": ["CoinGecko", "LiFi", "Rubic"], - "occurrences": 3 - }, - "0x4d4d883f920f7c0c36a1be71a02aa0cde2aa22d1": { - "address": "0x4d4d883f920f7c0c36a1be71a02aa0cde2aa22d1", - "symbol": "OPCH", - "decimals": 18, - "name": "Opticash", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x4d4d883f920f7c0c36a1be71a02aa0cde2aa22d1.png", - "aggregators": ["CoinGecko", "Rubic", "Sonarwatch"], - "occurrences": 3 - }, - "0x3235b13708f178af6f110de7177ed5de10c1093d": { - "address": "0x3235b13708f178af6f110de7177ed5de10c1093d", - "symbol": "MNFT", - "decimals": 18, - "name": "MNFT", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x3235b13708f178af6f110de7177ed5de10c1093d.png", - "aggregators": ["CoinGecko", "Rubic", "Rango"], - "occurrences": 3 - }, - "0xae55ab6a966863cb4c774ba8e6c0a37cfbea01f9": { - "address": "0xae55ab6a966863cb4c774ba8e6c0a37cfbea01f9", - "symbol": "GRAMG", - "decimals": 18, - "name": "Gram Gold", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0xae55ab6a966863cb4c774ba8e6c0a37cfbea01f9.png", - "aggregators": ["CoinGecko", "LiFi", "Rubic"], - "occurrences": 3 - }, - "0x0e62cadbaeec69b8b0f2e9d56510f925512837d2": { - "address": "0x0e62cadbaeec69b8b0f2e9d56510f925512837d2", - "symbol": "ZOO", - "decimals": 18, - "name": "ZooCoin", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x0e62cadbaeec69b8b0f2e9d56510f925512837d2.png", - "aggregators": ["CoinGecko", "Rubic", "Sonarwatch"], - "occurrences": 3 - }, - "0x7212088a11b4d8f6fc90fbb3dfe793b45dd72323": { - "address": "0x7212088a11b4d8f6fc90fbb3dfe793b45dd72323", - "symbol": "BGME", - "decimals": 18, - "name": "Backed GameStop Corp", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x7212088a11b4d8f6fc90fbb3dfe793b45dd72323.png", - "aggregators": ["CoinGecko", "LiFi", "Rubic"], - "occurrences": 3 - }, - "0xa34c5e0abe843e10461e2c9586ea03e55dbcc495": { - "address": "0xa34c5e0abe843e10461e2c9586ea03e55dbcc495", - "symbol": "BNVDA", - "decimals": 18, - "name": "Backed NVIDIA Corp", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0xa34c5e0abe843e10461e2c9586ea03e55dbcc495.png", - "aggregators": ["CoinGecko", "LiFi", "Rubic"], - "occurrences": 3 - }, - "0x259b0f9494b3f02c652fa11417b94cb700f1f7d8": { - "address": "0x259b0f9494b3f02c652fa11417b94cb700f1f7d8", - "symbol": "CVPAD", - "decimals": 18, - "name": "CV Pad", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x259b0f9494b3f02c652fa11417b94cb700f1f7d8.png", - "aggregators": ["CoinGecko", "Rubic", "Sonarwatch"], - "occurrences": 3 - }, - "0xd7b675cd5c84a13d1d0f84509345530f6421b57c": { - "address": "0xd7b675cd5c84a13d1d0f84509345530f6421b57c", - "symbol": "OOOI", - "decimals": 18, - "name": "Corridor Finance", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0xd7b675cd5c84a13d1d0f84509345530f6421b57c.png", - "aggregators": ["CoinGecko", "Rubic", "Sonarwatch"], - "occurrences": 3 - }, - "0x3f95aa88ddbb7d9d484aa3d482bf0a80009c52c9": { - "address": "0x3f95aa88ddbb7d9d484aa3d482bf0a80009c52c9", - "symbol": "BERNX", - "decimals": 18, - "name": "Backed ERNX € Bond", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x3f95aa88ddbb7d9d484aa3d482bf0a80009c52c9.png", - "aggregators": ["CoinGecko", "Rubic", "Sonarwatch"], - "occurrences": 3 - }, - "0x0169ec1f8f639b32eec6d923e24c2a2ff45b9dd6": { - "address": "0x0169ec1f8f639b32eec6d923e24c2a2ff45b9dd6", - "symbol": "ALGB", - "decimals": 18, - "name": "Algebra", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x0169ec1f8f639b32eec6d923e24c2a2ff45b9dd6.png", - "aggregators": ["QuickSwap", "Rango", "SushiSwap"], - "occurrences": 3 - }, - "0x8bae3f5eb10f39663e57be19741fd9ccef0e113a": { - "address": "0x8bae3f5eb10f39663e57be19741fd9ccef0e113a", - "symbol": "PEPE.AXL", - "decimals": 18, - "name": " PEPE (Axelar)", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x8bae3f5eb10f39663e57be19741fd9ccef0e113a.png", - "aggregators": ["QuickSwap", "Rubic", "Squid"], - "occurrences": 3 - }, - "0xf915fdda4c882731c0456a4214548cd13a822886": { - "address": "0xf915fdda4c882731c0456a4214548cd13a822886", - "symbol": "FUSE", - "decimals": 18, - "name": "Fuse", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0xf915fdda4c882731c0456a4214548cd13a822886.png", - "aggregators": ["QuickSwap", "Socket", "Rubic"], - "occurrences": 3 - }, - "0xed88227296943857409a8e0f15ad7134e70d0f73": { - "address": "0xed88227296943857409a8e0f15ad7134e70d0f73", - "symbol": "LUMIII", - "decimals": 18, - "name": "LumiiiToken", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0xed88227296943857409a8e0f15ad7134e70d0f73.png", - "aggregators": ["QuickSwap", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x0ef39e52704ad52e2882bbfa6781167e1b6c4510": { - "address": "0x0ef39e52704ad52e2882bbfa6781167e1b6c4510", - "symbol": "PBORA", - "decimals": 18, - "name": "pBORA", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x0ef39e52704ad52e2882bbfa6781167e1b6c4510.png", - "aggregators": ["QuickSwap", "LiFi", "Rubic"], - "occurrences": 3 - }, - "0xf0f9d895aca5c8678f706fb8216fa22957685a13": { - "address": "0xf0f9d895aca5c8678f706fb8216fa22957685a13", - "symbol": "RVLT", - "decimals": 18, - "name": "Revolt 2 Earn", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0xf0f9d895aca5c8678f706fb8216fa22957685a13.png", - "aggregators": ["QuickSwap", "Rubic", "Squid"], - "occurrences": 3 - }, - "0xf1428850f92b87e629c6f3a3b75bffbc496f7ba6": { - "address": "0xf1428850f92b87e629c6f3a3b75bffbc496f7ba6", - "symbol": "GEO$", - "decimals": 18, - "name": "GEOPOLY", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0xf1428850f92b87e629c6f3a3b75bffbc496f7ba6.png", - "aggregators": ["1inch", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x1581929770be3275a82068c1135b6dd59c5334ed": { - "address": "0x1581929770be3275a82068c1135b6dd59c5334ed", - "symbol": "ALM", - "decimals": 18, - "name": "Alium Finance", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x1581929770be3275a82068c1135b6dd59c5334ed.png", - "aggregators": ["LiFi", "Rubic", "Sonarwatch"], - "occurrences": 3 - }, - "0x43e4b063f96c33f0433863a927f5bad34bb4b03d": { - "address": "0x43e4b063f96c33f0433863a927f5bad34bb4b03d", - "symbol": "EWTB", - "decimals": 18, - "name": "Energy Web Token Bridged (PoS)", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x43e4b063f96c33f0433863a927f5bad34bb4b03d.png", - "aggregators": ["LiFi", "Socket", "Rubic"], - "occurrences": 3 - }, - "0x36de20a30386b5bf99762e4b7e62f6a28dcea3ae": { - "address": "0x36de20a30386b5bf99762e4b7e62f6a28dcea3ae", - "symbol": "BAD", - "decimals": 18, - "name": "BAD Token", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x36de20a30386b5bf99762e4b7e62f6a28dcea3ae.png", - "aggregators": ["LiFi", "Socket", "Rubic"], - "occurrences": 3 - }, - "0x835273d47a2a4cc84693639f8d890af1caea611d": { - "address": "0x835273d47a2a4cc84693639f8d890af1caea611d", - "symbol": "NDX", - "decimals": 18, - "name": "Indexed (PoS)", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x835273d47a2a4cc84693639f8d890af1caea611d.png", - "aggregators": ["LiFi", "Socket", "Rubic"], - "occurrences": 3 - }, - "0x1bd9abf284e893705104e64b564b414620b722f1": { - "address": "0x1bd9abf284e893705104e64b564b414620b722f1", - "symbol": "ACM", - "decimals": 18, - "name": "acmFinance", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x1bd9abf284e893705104e64b564b414620b722f1.png", - "aggregators": ["LiFi", "Rubic", "Sonarwatch"], - "occurrences": 3 - }, - "0xd9d77b113e6ef2696267e20c35f3abd87cdaca2c": { - "address": "0xd9d77b113e6ef2696267e20c35f3abd87cdaca2c", - "symbol": "TANPIN", - "decimals": 18, - "name": "Tanpin", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0xd9d77b113e6ef2696267e20c35f3abd87cdaca2c.png", - "aggregators": ["LiFi", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x9377eeb7419486fd4d485671d50baa4bf77c2222": { - "address": "0x9377eeb7419486fd4d485671d50baa4bf77c2222", - "symbol": "PRQ", - "decimals": 18, - "name": "Parsiq (PoS)", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x9377eeb7419486fd4d485671d50baa4bf77c2222.png", - "aggregators": ["LiFi", "Socket", "Rubic"], - "occurrences": 3 - }, - "0x590eb2920486486c2d9bb3eb651f73b81df87bcf": { - "address": "0x590eb2920486486c2d9bb3eb651f73b81df87bcf", - "symbol": "BOBC", - "decimals": 18, - "name": "bobcoin", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x590eb2920486486c2d9bb3eb651f73b81df87bcf.png", - "aggregators": ["LiFi", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x59b5654a17ac44f3068b3882f298881433bb07ef": { - "address": "0x59b5654a17ac44f3068b3882f298881433bb07ef", - "symbol": "CHP", - "decimals": 18, - "name": "CoinPoker Chips (PoS)", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x59b5654a17ac44f3068b3882f298881433bb07ef.png", - "aggregators": ["LiFi", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x8429d0afade80498eadb9919e41437a14d45a00b": { - "address": "0x8429d0afade80498eadb9919e41437a14d45a00b", - "symbol": "GRAIN", - "decimals": 18, - "name": "Granary Token", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x8429d0afade80498eadb9919e41437a14d45a00b.png", - "aggregators": ["LiFi", "Rubic", "Squid"], - "occurrences": 3 - }, - "0xace7eb41d6bad44907cda84a122f052c74cb7826": { - "address": "0xace7eb41d6bad44907cda84a122f052c74cb7826", - "symbol": "GPRO", - "decimals": 18, - "name": "GoldPro", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0xace7eb41d6bad44907cda84a122f052c74cb7826.png", - "aggregators": ["LiFi", "Rubic", "Sonarwatch"], - "occurrences": 3 - }, - "0x329434fe066ac71d5fb93489f955a6959658097b": { - "address": "0x329434fe066ac71d5fb93489f955a6959658097b", - "symbol": "ADAI", - "decimals": 18, - "name": "Aave interest bearing DAI (PoS)", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x329434fe066ac71d5fb93489f955a6959658097b.png", - "aggregators": ["LiFi", "Socket", "Rubic"], - "occurrences": 3 - }, - "0x1ef5bb23e0b91c2e8480a4a2b71feb4607cb32f1": { - "address": "0x1ef5bb23e0b91c2e8480a4a2b71feb4607cb32f1", - "symbol": "SGT", - "decimals": 8, - "name": "SGT (PoS)", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x1ef5bb23e0b91c2e8480a4a2b71feb4607cb32f1.png", - "aggregators": ["LiFi", "Socket", "Rubic"], - "occurrences": 3 - }, - "0x8f6196901a4a153d8ee8f3fa779a042f6092d908": { - "address": "0x8f6196901a4a153d8ee8f3fa779a042f6092d908", - "symbol": "SALE", - "decimals": 18, - "name": "DxSale.Network (PoS)", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x8f6196901a4a153d8ee8f3fa779a042f6092d908.png", - "aggregators": ["LiFi", "Socket", "Rubic"], - "occurrences": 3 - }, - "0x13607aa9b2ffdd8340f4628049bd35c02a68fa05": { - "address": "0x13607aa9b2ffdd8340f4628049bd35c02a68fa05", - "symbol": "PPBLZ", - "decimals": 18, - "name": "Pepemon Pepeballs (PoS)", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x13607aa9b2ffdd8340f4628049bd35c02a68fa05.png", - "aggregators": ["LiFi", "Socket", "Rubic"], - "occurrences": 3 - }, - "0x57fcbd6503c8be3b1abad191bc7799ef414a5b31": { - "address": "0x57fcbd6503c8be3b1abad191bc7799ef414a5b31", - "symbol": "TXAG", - "decimals": 18, - "name": "tSILVER", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x57fcbd6503c8be3b1abad191bc7799ef414a5b31.png", - "aggregators": ["LiFi", "Socket", "Rubic"], - "occurrences": 3 - }, - "0xc1543024dc71247888a7e139c644f44e75e96d38": { - "address": "0xc1543024dc71247888a7e139c644f44e75e96d38", - "symbol": "BWO", - "decimals": 18, - "name": "Battle World", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0xc1543024dc71247888a7e139c644f44e75e96d38.png", - "aggregators": ["LiFi", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x02567e4b14b25549331fcee2b56c647a8bab16fd": { - "address": "0x02567e4b14b25549331fcee2b56c647a8bab16fd", - "symbol": "ZCHF", - "decimals": 18, - "name": "Frankencoin (PoS)", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x02567e4b14b25549331fcee2b56c647a8bab16fd.png", - "aggregators": ["LiFi", "Socket", "Rubic"], - "occurrences": 3 - }, - "0xad5dc12e88c6534eea8cfe2265851d9d4a1472ad": { - "address": "0xad5dc12e88c6534eea8cfe2265851d9d4a1472ad", - "symbol": "FSW", - "decimals": 18, - "name": "FalconSwap Token (PoS)", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0xad5dc12e88c6534eea8cfe2265851d9d4a1472ad.png", - "aggregators": ["LiFi", "Socket", "Rubic"], - "occurrences": 3 - }, - "0x0a5926027d407222f8fe20f24cb16e103f617046": { - "address": "0x0a5926027d407222f8fe20f24cb16e103f617046", - "symbol": "NFD", - "decimals": 18, - "name": "Feisty Doge NFT (PoS)", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x0a5926027d407222f8fe20f24cb16e103f617046.png", - "aggregators": ["LiFi", "Socket", "Rubic"], - "occurrences": 3 - }, - "0x82dcf1df86ada26b2dcd9ba6334cedb8c2448e9e": { - "address": "0x82dcf1df86ada26b2dcd9ba6334cedb8c2448e9e", - "symbol": "ALEPH", - "decimals": 18, - "name": "aleph.im v2 (PoS)", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x82dcf1df86ada26b2dcd9ba6334cedb8c2448e9e.png", - "aggregators": ["LiFi", "Socket", "Rubic"], - "occurrences": 3 - }, - "0xd4cce747e623ce2d72322892e5db238e2a5eb4f3": { - "address": "0xd4cce747e623ce2d72322892e5db238e2a5eb4f3", - "symbol": "HCFW", - "decimals": 18, - "name": "HumansCareFoundationWater", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0xd4cce747e623ce2d72322892e5db238e2a5eb4f3.png", - "aggregators": ["LiFi", "Rubic", "Rango"], - "occurrences": 3 - }, - "0xc3c604f1943b8c619c5d65cd11a876e9c8edcf10": { - "address": "0xc3c604f1943b8c619c5d65cd11a876e9c8edcf10", - "symbol": "MGH", - "decimals": 18, - "name": "the metaverse game hub (PoS)", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0xc3c604f1943b8c619c5d65cd11a876e9c8edcf10.png", - "aggregators": ["LiFi", "Socket", "Rubic"], - "occurrences": 3 - }, - "0x0aab8dc887d34f00d50e19aee48371a941390d14": { - "address": "0x0aab8dc887d34f00d50e19aee48371a941390d14", - "symbol": "POWR", - "decimals": 6, - "name": "PowerLedger (PoS)", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x0aab8dc887d34f00d50e19aee48371a941390d14.png", - "aggregators": ["LiFi", "Socket", "Rubic"], - "occurrences": 3 - }, - "0x0bd820ad2d7ab7305b5c9538ba824c9b9beb0561": { - "address": "0x0bd820ad2d7ab7305b5c9538ba824c9b9beb0561", - "symbol": "ROYA", - "decimals": 18, - "name": "Royale (PoS)", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x0bd820ad2d7ab7305b5c9538ba824c9b9beb0561.png", - "aggregators": ["LiFi", "Socket", "Rubic"], - "occurrences": 3 - }, - "0x28e96ffe75cdcc97044585b866bd02bd79c12dc0": { - "address": "0x28e96ffe75cdcc97044585b866bd02bd79c12dc0", - "symbol": "JUICE", - "decimals": 6, - "name": "JUICE (PoS)", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x28e96ffe75cdcc97044585b866bd02bd79c12dc0.png", - "aggregators": ["LiFi", "Socket", "Rubic"], - "occurrences": 3 - }, - "0x00d5149cdf7cec8725bf50073c51c4fa58ecca12": { - "address": "0x00d5149cdf7cec8725bf50073c51c4fa58ecca12", - "symbol": "POWER", - "decimals": 18, - "name": "UniPower (PoS)", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x00d5149cdf7cec8725bf50073c51c4fa58ecca12.png", - "aggregators": ["LiFi", "Socket", "Rubic"], - "occurrences": 3 - }, - "0xd3fdcb837dafdb7c9c3ebd48fe22a53f6dd3d7d7": { - "address": "0xd3fdcb837dafdb7c9c3ebd48fe22a53f6dd3d7d7", - "symbol": "QI", - "decimals": 18, - "name": "QiDao", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0xd3fdcb837dafdb7c9c3ebd48fe22a53f6dd3d7d7.png", - "aggregators": ["LiFi", "Socket", "Rubic"], - "occurrences": 3 - }, - "0x556f501cf8a43216df5bc9cc57eb04d4ffaa9e6d": { - "address": "0x556f501cf8a43216df5bc9cc57eb04d4ffaa9e6d", - "symbol": "DUST", - "decimals": 8, - "name": "Distant Universe Stardust Token", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x556f501cf8a43216df5bc9cc57eb04d4ffaa9e6d.png", - "aggregators": ["LiFi", "Socket", "Rubic"], - "occurrences": 3 - }, - "0xb8e5b39689f886f8c34d3e5ac09f513a282d486d": { - "address": "0xb8e5b39689f886f8c34d3e5ac09f513a282d486d", - "symbol": "FGH", - "decimals": 18, - "name": "Flowing Hair (PoS)", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0xb8e5b39689f886f8c34d3e5ac09f513a282d486d.png", - "aggregators": ["LiFi", "Socket", "Rubic"], - "occurrences": 3 - }, - "0xa96d47c621a8316d4f9539e3b38180c7067e84ca": { - "address": "0xa96d47c621a8316d4f9539e3b38180c7067e84ca", - "symbol": "AWS", - "decimals": 18, - "name": "AurusSILVER", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0xa96d47c621a8316d4f9539e3b38180c7067e84ca.png", - "aggregators": ["LiFi", "Socket", "Rubic"], - "occurrences": 3 - }, - "0x2da719db753dfa10a62e140f436e1d67f2ddb0d6": { - "address": "0x2da719db753dfa10a62e140f436e1d67f2ddb0d6", - "symbol": "CERE", - "decimals": 10, - "name": "CERE Network", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x2da719db753dfa10a62e140f436e1d67f2ddb0d6.png", - "aggregators": ["LiFi", "Socket", "Rubic"], - "occurrences": 3 - }, - "0xfa3c05c2023918a4324fde7163591fe6bebd1692": { - "address": "0xfa3c05c2023918a4324fde7163591fe6bebd1692", - "symbol": "XCRE", - "decimals": 18, - "name": "Cresio", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0xfa3c05c2023918a4324fde7163591fe6bebd1692.png", - "aggregators": ["LiFi", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x5d146d8b1dacb1ebba5cb005ae1059da8a1fbf57": { - "address": "0x5d146d8b1dacb1ebba5cb005ae1059da8a1fbf57", - "symbol": "CADC", - "decimals": 18, - "name": "CAD Coin (PoS)", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x5d146d8b1dacb1ebba5cb005ae1059da8a1fbf57.png", - "aggregators": ["LiFi", "Socket", "Rubic"], - "occurrences": 3 - }, - "0x5b0a0cd03e9df1829e00128ebe277cc3247da346": { - "address": "0x5b0a0cd03e9df1829e00128ebe277cc3247da346", - "symbol": "BFLY", - "decimals": 18, - "name": "Butterfly Protocol (PoS)", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x5b0a0cd03e9df1829e00128ebe277cc3247da346.png", - "aggregators": ["LiFi", "Socket", "Rubic"], - "occurrences": 3 - }, - "0x10635bf5c17f5e4c0ed9012aef7c12f96a57a4dd": { - "address": "0x10635bf5c17f5e4c0ed9012aef7c12f96a57a4dd", - "symbol": "TAP", - "decimals": 18, - "name": "Tapmydata (PoS)", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x10635bf5c17f5e4c0ed9012aef7c12f96a57a4dd.png", - "aggregators": ["LiFi", "Socket", "Rubic"], - "occurrences": 3 - }, - "0x1e42edbe5376e717c1b22904c59e406426e8173f": { - "address": "0x1e42edbe5376e717c1b22904c59e406426e8173f", - "symbol": "SURF", - "decimals": 18, - "name": "SURF.Finance (PoS)", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x1e42edbe5376e717c1b22904c59e406426e8173f.png", - "aggregators": ["LiFi", "Socket", "Rubic"], - "occurrences": 3 - }, - "0xf9b2ebdfa24688f0dfb12cc55782e635f91e64a2": { - "address": "0xf9b2ebdfa24688f0dfb12cc55782e635f91e64a2", - "symbol": "CLEO", - "decimals": 18, - "name": "Cleo", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0xf9b2ebdfa24688f0dfb12cc55782e635f91e64a2.png", - "aggregators": ["LiFi", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x74ac7664abb1c8fa152d41bb60e311a663a41c7e": { - "address": "0x74ac7664abb1c8fa152d41bb60e311a663a41c7e", - "symbol": "MOONEY", - "decimals": 18, - "name": "MOONEY (PoS)", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x74ac7664abb1c8fa152d41bb60e311a663a41c7e.png", - "aggregators": ["LiFi", "Socket", "Rubic"], - "occurrences": 3 - }, - "0xfe6a2342f7c5d234e8496df12c468be17e0c181f": { - "address": "0xfe6a2342f7c5d234e8496df12c468be17e0c181f", - "symbol": "ISLA", - "decimals": 18, - "name": "Defiville Island Token (PoS)", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0xfe6a2342f7c5d234e8496df12c468be17e0c181f.png", - "aggregators": ["LiFi", "Socket", "Rubic"], - "occurrences": 3 - }, - "0x08c15fa26e519a78a666d19ce5c646d55047e0a3": { - "address": "0x08c15fa26e519a78a666d19ce5c646d55047e0a3", - "symbol": "DF", - "decimals": 18, - "name": "dForce (PoS)", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x08c15fa26e519a78a666d19ce5c646d55047e0a3.png", - "aggregators": ["LiFi", "Socket", "Rubic"], - "occurrences": 3 - }, - "0xc8a94a3d3d2dabc3c1caffffdca6a7543c3e3e65": { - "address": "0xc8a94a3d3d2dabc3c1caffffdca6a7543c3e3e65", - "symbol": "GUSD", - "decimals": 2, - "name": "Gemini dollar (PoS)", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0xc8a94a3d3d2dabc3c1caffffdca6a7543c3e3e65.png", - "aggregators": ["LiFi", "Socket", "Rubic"], - "occurrences": 3 - }, - "0x90fb380ddebaf872cc1f8d8e8c604ff2f4697c19": { - "address": "0x90fb380ddebaf872cc1f8d8e8c604ff2f4697c19", - "symbol": "OBTC", - "decimals": 18, - "name": "BoringDAO BTC (PoS)", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x90fb380ddebaf872cc1f8d8e8c604ff2f4697c19.png", - "aggregators": ["LiFi", "Socket", "Rubic"], - "occurrences": 3 - }, - "0x24f82ae063f165d621b2aec10714eb989c51938a": { - "address": "0x24f82ae063f165d621b2aec10714eb989c51938a", - "symbol": "PIXEL", - "decimals": 4, - "name": "Pixel (PoS)", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x24f82ae063f165d621b2aec10714eb989c51938a.png", - "aggregators": ["LiFi", "Socket", "Rubic"], - "occurrences": 3 - }, - "0xedd6ca8a4202d4a36611e2fff109648c4863ae19": { - "address": "0xedd6ca8a4202d4a36611e2fff109648c4863ae19", - "symbol": "MAHA", - "decimals": 18, - "name": "MahaDAO (PoS)", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0xedd6ca8a4202d4a36611e2fff109648c4863ae19.png", - "aggregators": ["LiFi", "Socket", "Rubic"], - "occurrences": 3 - }, - "0x2e6978ceea865948f4c5685e35aec72652e3cb88": { - "address": "0x2e6978ceea865948f4c5685e35aec72652e3cb88", - "symbol": "TXPT", - "decimals": 18, - "name": "tPLATINUM", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x2e6978ceea865948f4c5685e35aec72652e3cb88.png", - "aggregators": ["LiFi", "Socket", "Rubic"], - "occurrences": 3 - }, - "0x41b3fc2302c8aac4c84c552f770419091ef52435": { - "address": "0x41b3fc2302c8aac4c84c552f770419091ef52435", - "symbol": "MAXX", - "decimals": 18, - "name": "MAXXToken.com (PoS)", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x41b3fc2302c8aac4c84c552f770419091ef52435.png", - "aggregators": ["LiFi", "Socket", "Rubic"], - "occurrences": 3 - }, - "0x348e62131fce2f4e0d5ead3fe1719bc039b380a9": { - "address": "0x348e62131fce2f4e0d5ead3fe1719bc039b380a9", - "symbol": "PYR", - "decimals": 18, - "name": "PYR Token", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x348e62131fce2f4e0d5ead3fe1719bc039b380a9.png", - "aggregators": ["LiFi", "Socket", "Rubic"], - "occurrences": 3 - }, - "0xf9a4bbaa7fa1dd2352f1a47d6d3fcff259a6d05f": { - "address": "0xf9a4bbaa7fa1dd2352f1a47d6d3fcff259a6d05f", - "symbol": "LEPA", - "decimals": 18, - "name": "Lepasa (PoS)", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0xf9a4bbaa7fa1dd2352f1a47d6d3fcff259a6d05f.png", - "aggregators": ["LiFi", "Socket", "Rubic"], - "occurrences": 3 - }, - "0xffcd553464a00d7b30a48960611e5032f544700a": { - "address": "0xffcd553464a00d7b30a48960611e5032f544700a", - "symbol": "GM", - "decimals": 8, - "name": "GhostMarket Token", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0xffcd553464a00d7b30a48960611e5032f544700a.png", - "aggregators": ["LiFi", "Socket", "Rubic"], - "occurrences": 3 - }, - "0xcbb2da0127042546ceff56da69faf3f2ba6d1c51": { - "address": "0xcbb2da0127042546ceff56da69faf3f2ba6d1c51", - "symbol": "MBC", - "decimals": 18, - "name": "MarbleCoin", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0xcbb2da0127042546ceff56da69faf3f2ba6d1c51.png", - "aggregators": ["LiFi", "Socket", "Rubic"], - "occurrences": 3 - }, - "0x5c7f7fe4766fe8f0fa9b41e2e4194d939488ff1c": { - "address": "0x5c7f7fe4766fe8f0fa9b41e2e4194d939488ff1c", - "symbol": "DOKI", - "decimals": 18, - "name": "DokiDokiFinance (PoS)", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x5c7f7fe4766fe8f0fa9b41e2e4194d939488ff1c.png", - "aggregators": ["LiFi", "Socket", "Rubic"], - "occurrences": 3 - }, - "0x5ecba59dacc1adc5bdea35f38a732823fc3de977": { - "address": "0x5ecba59dacc1adc5bdea35f38a732823fc3de977", - "symbol": "FORTH", - "decimals": 18, - "name": "Ampleforth Governance (PoS)", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x5ecba59dacc1adc5bdea35f38a732823fc3de977.png", - "aggregators": ["LiFi", "Socket", "Rubic"], - "occurrences": 3 - }, - "0x422361e0e97cbfd5f95d5a50f50598a6fc4d8ce6": { - "address": "0x422361e0e97cbfd5f95d5a50f50598a6fc4d8ce6", - "symbol": "AVA", - "decimals": 18, - "name": "Alpha Fund (PoS)", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x422361e0e97cbfd5f95d5a50f50598a6fc4d8ce6.png", - "aggregators": ["LiFi", "Socket", "Rubic"], - "occurrences": 3 - }, - "0x06d02e9d62a13fc76bb229373fb3bbbd1101d2fc": { - "address": "0x06d02e9d62a13fc76bb229373fb3bbbd1101d2fc", - "symbol": "LEO", - "decimals": 18, - "name": "Bitfinex LEO Token (PoS)", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x06d02e9d62a13fc76bb229373fb3bbbd1101d2fc.png", - "aggregators": ["LiFi", "Socket", "Rubic"], - "occurrences": 3 - }, - "0x5f084f3ee7ea09e4c01cee3cdf1b5620a3344fd0": { - "address": "0x5f084f3ee7ea09e4c01cee3cdf1b5620a3344fd0", - "symbol": "KIF", - "decimals": 18, - "name": "KittenFinance (PoS)", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x5f084f3ee7ea09e4c01cee3cdf1b5620a3344fd0.png", - "aggregators": ["LiFi", "Socket", "Rubic"], - "occurrences": 3 - }, - "0x679c986e183261b31c0065eb0b3c2ebd59035d56": { - "address": "0x679c986e183261b31c0065eb0b3c2ebd59035d56", - "symbol": "ZIK", - "decimals": 18, - "name": "Ziktalk (PoS)", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x679c986e183261b31c0065eb0b3c2ebd59035d56.png", - "aggregators": ["LiFi", "Socket", "Rubic"], - "occurrences": 3 - }, - "0xfeff6c1643d38b13a198cfe1d76505701c380af0": { - "address": "0xfeff6c1643d38b13a198cfe1d76505701c380af0", - "symbol": "DIP", - "decimals": 18, - "name": "Etherisc DIP (PoS)", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0xfeff6c1643d38b13a198cfe1d76505701c380af0.png", - "aggregators": ["LiFi", "Socket", "Rubic"], - "occurrences": 3 - }, - "0xf7d9e281c5cb4c6796284c5b663b3593d2037af2": { - "address": "0xf7d9e281c5cb4c6796284c5b663b3593d2037af2", - "symbol": "NFTP", - "decimals": 18, - "name": "NFT Platform Index (PoS)", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0xf7d9e281c5cb4c6796284c5b663b3593d2037af2.png", - "aggregators": ["LiFi", "Socket", "Rubic"], - "occurrences": 3 - }, - "0xd93c61d4418d77a537b6b57478c108e193362f0c": { - "address": "0xd93c61d4418d77a537b6b57478c108e193362f0c", - "symbol": "MBONK", - "decimals": 18, - "name": "megaBONK (PoS)", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0xd93c61d4418d77a537b6b57478c108e193362f0c.png", - "aggregators": ["LiFi", "Socket", "Rubic"], - "occurrences": 3 - }, - "0xae29ac47a9e3b0a52840e547adf74b912999f7fc": { - "address": "0xae29ac47a9e3b0a52840e547adf74b912999f7fc", - "symbol": "EVE", - "decimals": 18, - "name": "EVE", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0xae29ac47a9e3b0a52840e547adf74b912999f7fc.png", - "aggregators": ["LiFi", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x5c59d7cb794471a9633391c4927ade06b8787a90": { - "address": "0x5c59d7cb794471a9633391c4927ade06b8787a90", - "symbol": "TIME", - "decimals": 18, - "name": "Timeleap Finance", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x5c59d7cb794471a9633391c4927ade06b8787a90.png", - "aggregators": ["LiFi", "Rubic", "Rango"], - "occurrences": 3 - }, - "0xd0252fb67606ed74d0cacd17b2eb38446e4466c9": { - "address": "0xd0252fb67606ed74d0cacd17b2eb38446e4466c9", - "symbol": "ARGO", - "decimals": 18, - "name": "ArGo Token (PoS)", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0xd0252fb67606ed74d0cacd17b2eb38446e4466c9.png", - "aggregators": ["LiFi", "Socket", "Rubic"], - "occurrences": 3 - }, - "0x609255414ff5289f87c99baf9737a4ec85a18643": { - "address": "0x609255414ff5289f87c99baf9737a4ec85a18643", - "symbol": "SONG", - "decimals": 18, - "name": "Beatify (PoS)", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x609255414ff5289f87c99baf9737a4ec85a18643.png", - "aggregators": ["LiFi", "Socket", "Rubic"], - "occurrences": 3 - }, - "0x33c9f7c0afe2722cb9e426360c261fb755b4483d": { - "address": "0x33c9f7c0afe2722cb9e426360c261fb755b4483d", - "symbol": "SNOW", - "decimals": 18, - "name": "SnowSwap (PoS)", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x33c9f7c0afe2722cb9e426360c261fb755b4483d.png", - "aggregators": ["LiFi", "Socket", "Rubic"], - "occurrences": 3 - }, - "0x948d2a81086a075b3130bac19e4c6dee1d2e3fe8": { - "address": "0x948d2a81086a075b3130bac19e4c6dee1d2e3fe8", - "symbol": "GUARD", - "decimals": 18, - "name": "GUARD", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x948d2a81086a075b3130bac19e4c6dee1d2e3fe8.png", - "aggregators": ["LiFi", "Rubic", "Rango"], - "occurrences": 3 - }, - "0xb3b9c016ad1e9f7efdae451b04ef696e05658b32": { - "address": "0xb3b9c016ad1e9f7efdae451b04ef696e05658b32", - "symbol": "XPRT", - "decimals": 6, - "name": "Persistence (PoS)", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0xb3b9c016ad1e9f7efdae451b04ef696e05658b32.png", - "aggregators": ["LiFi", "Socket", "Rubic"], - "occurrences": 3 - }, - "0x57999936fc9a9ec0751a8d146cce11901be8bed0": { - "address": "0x57999936fc9a9ec0751a8d146cce11901be8bed0", - "symbol": "FXVRSW", - "decimals": 18, - "name": "FXVRSW", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x57999936fc9a9ec0751a8d146cce11901be8bed0.png", - "aggregators": ["LiFi", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x7c4a54f5d20b4023d6746f1f765f4dfe7c39a7e6": { - "address": "0x7c4a54f5d20b4023d6746f1f765f4dfe7c39a7e6", - "symbol": "RENDOGE", - "decimals": 8, - "name": "renDOGE (PoS)", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x7c4a54f5d20b4023d6746f1f765f4dfe7c39a7e6.png", - "aggregators": ["LiFi", "Socket", "Rubic"], - "occurrences": 3 - }, - "0xe86e8beb7340659dddce61727e500e3a5ad75a90": { - "address": "0xe86e8beb7340659dddce61727e500e3a5ad75a90", - "symbol": "ZUT", - "decimals": 18, - "name": "ZeroUtility (PoS)", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0xe86e8beb7340659dddce61727e500e3a5ad75a90.png", - "aggregators": ["LiFi", "Socket", "Rubic"], - "occurrences": 3 - }, - "0xce4e6da9c509cb33c23d748713c681c959f68658": { - "address": "0xce4e6da9c509cb33c23d748713c681c959f68658", - "symbol": "YIELD", - "decimals": 18, - "name": "PolyYield", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0xce4e6da9c509cb33c23d748713c681c959f68658.png", - "aggregators": ["LiFi", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x2e220744f9ac1bf3045b0588d339f5fd3bb8623a": { - "address": "0x2e220744f9ac1bf3045b0588d339f5fd3bb8623a", - "symbol": "MM", - "decimals": 18, - "name": "MMToken (PoS)", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x2e220744f9ac1bf3045b0588d339f5fd3bb8623a.png", - "aggregators": ["LiFi", "Socket", "Rubic"], - "occurrences": 3 - }, - "0x09e1943dd2a4e82032773594f50cf54453000b97": { - "address": "0x09e1943dd2a4e82032773594f50cf54453000b97", - "symbol": "GALA", - "decimals": 8, - "name": "Gala (PoS)", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x09e1943dd2a4e82032773594f50cf54453000b97.png", - "aggregators": ["LiFi", "Socket", "Rubic"], - "occurrences": 3 - }, - "0x968f6f898a6df937fc1859b323ac2f14643e3fed": { - "address": "0x968f6f898a6df937fc1859b323ac2f14643e3fed", - "symbol": "NWC", - "decimals": 18, - "name": "Newscrypto", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x968f6f898a6df937fc1859b323ac2f14643e3fed.png", - "aggregators": ["LiFi", "Socket", "Rubic"], - "occurrences": 3 - }, - "0x9f5755d47fb80100e7ee65bf7e136fca85dd9334": { - "address": "0x9f5755d47fb80100e7ee65bf7e136fca85dd9334", - "symbol": "OM", - "decimals": 18, - "name": "OM Token (PoS)", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x9f5755d47fb80100e7ee65bf7e136fca85dd9334.png", - "aggregators": ["LiFi", "Socket", "Rubic"], - "occurrences": 3 - }, - "0x8ba941b64901e306667a287a370f145d98811096": { - "address": "0x8ba941b64901e306667a287a370f145d98811096", - "symbol": "CTI", - "decimals": 18, - "name": "ClinTex (PoS)", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x8ba941b64901e306667a287a370f145d98811096.png", - "aggregators": ["LiFi", "Socket", "Rubic"], - "occurrences": 3 - }, - "0xd7671bdce849eabef4da313ccc80e689151ee811": { - "address": "0xd7671bdce849eabef4da313ccc80e689151ee811", - "symbol": "BID", - "decimals": 18, - "name": "Bidao (PoS)", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0xd7671bdce849eabef4da313ccc80e689151ee811.png", - "aggregators": ["LiFi", "Socket", "Rubic"], - "occurrences": 3 - }, - "0xb371248dd0f9e4061ccf8850e9223ca48aa7ca4b": { - "address": "0xb371248dd0f9e4061ccf8850e9223ca48aa7ca4b", - "symbol": "HNY", - "decimals": 18, - "name": "Honey (PoS)", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0xb371248dd0f9e4061ccf8850e9223ca48aa7ca4b.png", - "aggregators": ["LiFi", "Socket", "Rubic"], - "occurrences": 3 - }, - "0x068180071617528606371c31892ecbf2b70ac1d2": { - "address": "0x068180071617528606371c31892ecbf2b70ac1d2", - "symbol": "SPI", - "decimals": 18, - "name": "Shopping.io (PoS)", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x068180071617528606371c31892ecbf2b70ac1d2.png", - "aggregators": ["LiFi", "Socket", "Rubic"], - "occurrences": 3 - }, - "0x95c300e7740d2a88a44124b424bfc1cb2f9c3b89": { - "address": "0x95c300e7740d2a88a44124b424bfc1cb2f9c3b89", - "symbol": "ALCX", - "decimals": 18, - "name": "Alchemix (PoS)", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x95c300e7740d2a88a44124b424bfc1cb2f9c3b89.png", - "aggregators": ["LiFi", "Socket", "Rubic"], - "occurrences": 3 - }, - "0x9d5565da88e596730522cbc5a918d2a89dbc16d9": { - "address": "0x9d5565da88e596730522cbc5a918d2a89dbc16d9", - "symbol": "OOE", - "decimals": 18, - "name": "OOE", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x9d5565da88e596730522cbc5a918d2a89dbc16d9.png", - "aggregators": ["LiFi", "Socket", "Rango"], - "occurrences": 3 - }, - "0xe2341718c6c0cbfa8e6686102dd8fbf4047a9e9b": { - "address": "0xe2341718c6c0cbfa8e6686102dd8fbf4047a9e9b", - "symbol": "AIOZ", - "decimals": 18, - "name": "AIOZ Network (PoS)", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0xe2341718c6c0cbfa8e6686102dd8fbf4047a9e9b.png", - "aggregators": ["LiFi", "Socket", "Rubic"], - "occurrences": 3 - }, - "0x60ac2e84078ce30cbc68e3d7b18bcf613271ce6b": { - "address": "0x60ac2e84078ce30cbc68e3d7b18bcf613271ce6b", - "symbol": "ALOHA", - "decimals": 18, - "name": "ALOHA", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x60ac2e84078ce30cbc68e3d7b18bcf613271ce6b.png", - "aggregators": ["LiFi", "Socket", "Rubic"], - "occurrences": 3 - }, - "0x6e8a8726639d12935b3219892155520bdc57366b": { - "address": "0x6e8a8726639d12935b3219892155520bdc57366b", - "symbol": "GNOME", - "decimals": 18, - "name": "GenomesDAO Governance (PoS)", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x6e8a8726639d12935b3219892155520bdc57366b.png", - "aggregators": ["LiFi", "Socket", "Rubic"], - "occurrences": 3 - }, - "0x7dd3d9e1868a7da87509a601e7dbbf938c819a32": { - "address": "0x7dd3d9e1868a7da87509a601e7dbbf938c819a32", - "symbol": "VOX", - "decimals": 18, - "name": "Vox.Finance (PoS)", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x7dd3d9e1868a7da87509a601e7dbbf938c819a32.png", - "aggregators": ["LiFi", "Socket", "Rubic"], - "occurrences": 3 - }, - "0xfe9ca7cf13e33b23af63fea696f4aae1b7a65585": { - "address": "0xfe9ca7cf13e33b23af63fea696f4aae1b7a65585", - "symbol": "VIDYA", - "decimals": 18, - "name": "Vidya (PoS)", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0xfe9ca7cf13e33b23af63fea696f4aae1b7a65585.png", - "aggregators": ["LiFi", "Socket", "Rubic"], - "occurrences": 3 - }, - "0xf2b5a8c37278bcdd50727d5ca879f8e5a4642e2e": { - "address": "0xf2b5a8c37278bcdd50727d5ca879f8e5a4642e2e", - "symbol": "MEME", - "decimals": 8, - "name": "MEME (PoS)", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0xf2b5a8c37278bcdd50727d5ca879f8e5a4642e2e.png", - "aggregators": ["LiFi", "Socket", "Rubic"], - "occurrences": 3 - }, - "0x780053837ce2ceead2a90d9151aa21fc89ed49c2": { - "address": "0x780053837ce2ceead2a90d9151aa21fc89ed49c2", - "symbol": "RARI", - "decimals": 18, - "name": "Rarible (PoS)", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x780053837ce2ceead2a90d9151aa21fc89ed49c2.png", - "aggregators": ["LiFi", "Socket", "Rubic"], - "occurrences": 3 - }, - "0x2a82437475a60bebd53e33997636fade77604fc2": { - "address": "0x2a82437475a60bebd53e33997636fade77604fc2", - "symbol": "CIRUS", - "decimals": 18, - "name": "Cirus (PoS)", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x2a82437475a60bebd53e33997636fade77604fc2.png", - "aggregators": ["LiFi", "Socket", "Rubic"], - "occurrences": 3 - }, - "0x2e4b0fb46a46c90cb410fe676f24e466753b469f": { - "address": "0x2e4b0fb46a46c90cb410fe676f24e466753b469f", - "symbol": "UMBR", - "decimals": 18, - "name": "UmbriaToken (PoS)", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x2e4b0fb46a46c90cb410fe676f24e466753b469f.png", - "aggregators": ["LiFi", "Socket", "Rubic"], - "occurrences": 3 - }, - "0x8dc302e2141da59c934d900886dbf1518fd92cd4": { - "address": "0x8dc302e2141da59c934d900886dbf1518fd92cd4", - "symbol": "POLS", - "decimals": 18, - "name": "PolkastarterToken (PoS)", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x8dc302e2141da59c934d900886dbf1518fd92cd4.png", - "aggregators": ["LiFi", "Socket", "Rubic"], - "occurrences": 3 - }, - "0x220ed61d1f1cc754cb71978585d69e07be576315": { - "address": "0x220ed61d1f1cc754cb71978585d69e07be576315", - "symbol": "LADZ", - "decimals": 4, - "name": "LADZ (PoS)", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x220ed61d1f1cc754cb71978585d69e07be576315.png", - "aggregators": ["LiFi", "Socket", "Rubic"], - "occurrences": 3 - }, - "0x157b28e46f301c596668a4b85c59f710f9c4bbaa": { - "address": "0x157b28e46f301c596668a4b85c59f710f9c4bbaa", - "symbol": "WWGR", - "decimals": 8, - "name": "Wrapped Wagerr (PoS)", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x157b28e46f301c596668a4b85c59f710f9c4bbaa.png", - "aggregators": ["LiFi", "Socket", "Rubic"], - "occurrences": 3 - }, - "0xcb059c5573646047d6d88dddb87b745c18161d3b": { - "address": "0xcb059c5573646047d6d88dddb87b745c18161d3b", - "symbol": "POLY", - "decimals": 18, - "name": "Polymath (PoS)", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0xcb059c5573646047d6d88dddb87b745c18161d3b.png", - "aggregators": ["LiFi", "Socket", "Rango"], - "occurrences": 3 - }, - "0x66e16d50c07a01bb473ec794349d45aa1a0e5dc2": { - "address": "0x66e16d50c07a01bb473ec794349d45aa1a0e5dc2", - "symbol": "FOAM", - "decimals": 18, - "name": "FOAM Token (PoS)", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x66e16d50c07a01bb473ec794349d45aa1a0e5dc2.png", - "aggregators": ["LiFi", "Socket", "Rubic"], - "occurrences": 3 - }, - "0x7f2841a5c7e69e921897fbfbce95caea34634a35": { - "address": "0x7f2841a5c7e69e921897fbfbce95caea34634a35", - "symbol": "WAR", - "decimals": 18, - "name": "NFT WARS (PoS)", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x7f2841a5c7e69e921897fbfbce95caea34634a35.png", - "aggregators": ["LiFi", "Socket", "Rubic"], - "occurrences": 3 - }, - "0x0731d0c0d123382c163aae78a09390cad2ffc941": { - "address": "0x0731d0c0d123382c163aae78a09390cad2ffc941", - "symbol": "INK", - "decimals": 18, - "name": "Ink Fantom", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x0731d0c0d123382c163aae78a09390cad2ffc941.png", - "aggregators": ["LiFi", "Rubic", "Rango"], - "occurrences": 3 - }, - "0xfe7ff8b5dfba93a9eab7aee447c3c72990052d93": { - "address": "0xfe7ff8b5dfba93a9eab7aee447c3c72990052d93", - "symbol": "UBI", - "decimals": 18, - "name": "Universal Basic Income (PoS)", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0xfe7ff8b5dfba93a9eab7aee447c3c72990052d93.png", - "aggregators": ["LiFi", "Socket", "Rubic"], - "occurrences": 3 - }, - "0x7e85e6b00a8e9c757f2fef60d047b6f787c66a1e": { - "address": "0x7e85e6b00a8e9c757f2fef60d047b6f787c66a1e", - "symbol": "LPL", - "decimals": 18, - "name": "LinkPool (PoS)", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x7e85e6b00a8e9c757f2fef60d047b6f787c66a1e.png", - "aggregators": ["LiFi", "Socket", "Rubic"], - "occurrences": 3 - }, - "0x4ba47b10ea8f544f8969ba61df3e5be67692a122": { - "address": "0x4ba47b10ea8f544f8969ba61df3e5be67692a122", - "symbol": "IFUND", - "decimals": 18, - "name": "UNIFUND (PoS)", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x4ba47b10ea8f544f8969ba61df3e5be67692a122.png", - "aggregators": ["LiFi", "Socket", "Rubic"], - "occurrences": 3 - }, - "0xad93e067e149f0a5ecd12d8ea83b05581dd6374c": { - "address": "0xad93e067e149f0a5ecd12d8ea83b05581dd6374c", - "symbol": "PNK", - "decimals": 18, - "name": "Pinakion (PoS)", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0xad93e067e149f0a5ecd12d8ea83b05581dd6374c.png", - "aggregators": ["LiFi", "Socket", "Rubic"], - "occurrences": 3 - }, - "0xe9949106f0777e7a2e36df891d59583ac94dc896": { - "address": "0xe9949106f0777e7a2e36df891d59583ac94dc896", - "symbol": "PAN", - "decimals": 18, - "name": "Panvala PAN (PoS)", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0xe9949106f0777e7a2e36df891d59583ac94dc896.png", - "aggregators": ["LiFi", "Socket", "Rubic"], - "occurrences": 3 - }, - "0x800eb319e3f0e962d3ca8d625c871b8f1bdf2bc8": { - "address": "0x800eb319e3f0e962d3ca8d625c871b8f1bdf2bc8", - "symbol": "AGI", - "decimals": 8, - "name": "SingularityNET Token (PoS)", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x800eb319e3f0e962d3ca8d625c871b8f1bdf2bc8.png", - "aggregators": ["LiFi", "Socket", "Rubic"], - "occurrences": 3 - }, - "0xbf3d5d13b3cb79a6173394046973c34a60ac8a41": { - "address": "0xbf3d5d13b3cb79a6173394046973c34a60ac8a41", - "symbol": "BOBA", - "decimals": 18, - "name": "bobabet.dcl.eth.link (PoS)", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0xbf3d5d13b3cb79a6173394046973c34a60ac8a41.png", - "aggregators": ["LiFi", "Socket", "Rubic"], - "occurrences": 3 - }, - "0xa3860f969075045d82de85b06bb665f93c4bae32": { - "address": "0xa3860f969075045d82de85b06bb665f93c4bae32", - "symbol": "SUPERBID", - "decimals": 18, - "name": "SuperBid (PoS)", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0xa3860f969075045d82de85b06bb665f93c4bae32.png", - "aggregators": ["LiFi", "Socket", "Rubic"], - "occurrences": 3 - }, - "0x103308793661879166464cd0d0370ac3b8a2a1cb": { - "address": "0x103308793661879166464cd0d0370ac3b8a2a1cb", - "symbol": "YOP", - "decimals": 8, - "name": "YOP (PoS)", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x103308793661879166464cd0d0370ac3b8a2a1cb.png", - "aggregators": ["LiFi", "Socket", "Rubic"], - "occurrences": 3 - }, - "0xebf9b87583c284f0a1b7af72371f84d2a7567285": { - "address": "0xebf9b87583c284f0a1b7af72371f84d2a7567285", - "symbol": "CRTS", - "decimals": 9, - "name": "Cryptotipsfr Token V2 (PoS)", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0xebf9b87583c284f0a1b7af72371f84d2a7567285.png", - "aggregators": ["LiFi", "Socket", "Rubic"], - "occurrences": 3 - }, - "0x957d1ad5214468332c5e6c00305a25116f9a46bb": { - "address": "0x957d1ad5214468332c5e6c00305a25116f9a46bb", - "symbol": "NOIA", - "decimals": 18, - "name": "NOIA Token (PoS)", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x957d1ad5214468332c5e6c00305a25116f9a46bb.png", - "aggregators": ["LiFi", "Socket", "Rubic"], - "occurrences": 3 - }, - "0x8ca5ed20346c5d8a21a849d59c64f0884a532882": { - "address": "0x8ca5ed20346c5d8a21a849d59c64f0884a532882", - "symbol": "OFT", - "decimals": 18, - "name": "Orient (PoS)", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x8ca5ed20346c5d8a21a849d59c64f0884a532882.png", - "aggregators": ["LiFi", "Socket", "Rubic"], - "occurrences": 3 - }, - "0x175bdc4e52eecb675b86fc4c9a3ea3f80adbb610": { - "address": "0x175bdc4e52eecb675b86fc4c9a3ea3f80adbb610", - "symbol": "HXN", - "decimals": 18, - "name": "Havens Nook (PoS)", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x175bdc4e52eecb675b86fc4c9a3ea3f80adbb610.png", - "aggregators": ["LiFi", "Socket", "Rubic"], - "occurrences": 3 - }, - "0x5de4005155933c0e1612ce808f12b4cd8daabc82": { - "address": "0x5de4005155933c0e1612ce808f12b4cd8daabc82", - "symbol": "ARMOR", - "decimals": 18, - "name": "Armor (PoS)", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x5de4005155933c0e1612ce808f12b4cd8daabc82.png", - "aggregators": ["LiFi", "Socket", "Rubic"], - "occurrences": 3 - }, - "0xcd0d64c971af8b477042130c5e6cd2a6f7842869": { - "address": "0xcd0d64c971af8b477042130c5e6cd2a6f7842869", - "symbol": "BZN", - "decimals": 18, - "name": "Benzene (PoS)", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0xcd0d64c971af8b477042130c5e6cd2a6f7842869.png", - "aggregators": ["LiFi", "Socket", "Rubic"], - "occurrences": 3 - }, - "0xa707734bd310883e133e0ca23f6c166aeb2a1a7a": { - "address": "0xa707734bd310883e133e0ca23f6c166aeb2a1a7a", - "symbol": "MORK", - "decimals": 4, - "name": "Mork (PoS)", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0xa707734bd310883e133e0ca23f6c166aeb2a1a7a.png", - "aggregators": ["LiFi", "Socket", "Rubic"], - "occurrences": 3 - }, - "0xb3b681dee0435ecc0a508e40b02b3c9068d618cd": { - "address": "0xb3b681dee0435ecc0a508e40b02b3c9068d618cd", - "symbol": "YAM", - "decimals": 18, - "name": "YAM (PoS)", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0xb3b681dee0435ecc0a508e40b02b3c9068d618cd.png", - "aggregators": ["LiFi", "Socket", "Rubic"], - "occurrences": 3 - }, - "0xb272b6d99858b0efb079946942006727fe105201": { - "address": "0xb272b6d99858b0efb079946942006727fe105201", - "symbol": "XPB", - "decimals": 18, - "name": "Lead Token (PoS)", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0xb272b6d99858b0efb079946942006727fe105201.png", - "aggregators": ["LiFi", "Socket", "Rubic"], - "occurrences": 3 - }, - "0x2fd4d793c1905d82018d75e3b09d3035856890a1": { - "address": "0x2fd4d793c1905d82018d75e3b09d3035856890a1", - "symbol": "SPHRI", - "decimals": 18, - "name": "Spherium", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x2fd4d793c1905d82018d75e3b09d3035856890a1.png", - "aggregators": ["LiFi", "Rubic", "Sonarwatch"], - "occurrences": 3 - }, - "0xe6f3be5b52b5de0156148a4aab2e6674e7c1f5d0": { - "address": "0xe6f3be5b52b5de0156148a4aab2e6674e7c1f5d0", - "symbol": "CODA", - "decimals": 18, - "name": "CODA", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0xe6f3be5b52b5de0156148a4aab2e6674e7c1f5d0.png", - "aggregators": ["LiFi", "Rubic", "Sonarwatch"], - "occurrences": 3 - }, - "0xc0a1adce1c62daedf1b5f07b31266090bc5cc6d2": { - "address": "0xc0a1adce1c62daedf1b5f07b31266090bc5cc6d2", - "symbol": "ONUS", - "decimals": 18, - "name": "ONUS", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0xc0a1adce1c62daedf1b5f07b31266090bc5cc6d2.png", - "aggregators": ["LiFi", "Rubic", "Sonarwatch"], - "occurrences": 3 - }, - "0x2808edb7398b25e0f6c41cd98fd114d924008c87": { - "address": "0x2808edb7398b25e0f6c41cd98fd114d924008c87", - "symbol": "FLUX", - "decimals": 18, - "name": "FLUX (PoS)", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x2808edb7398b25e0f6c41cd98fd114d924008c87.png", - "aggregators": ["LiFi", "Socket", "Rubic"], - "occurrences": 3 - }, - "0x0f92d459b20d21f6bf9e02056ea9165d3f78ba62": { - "address": "0x0f92d459b20d21f6bf9e02056ea9165d3f78ba62", - "symbol": "CUM", - "decimals": 18, - "name": "CumCoin (PoS)", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x0f92d459b20d21f6bf9e02056ea9165d3f78ba62.png", - "aggregators": ["LiFi", "Socket", "Rubic"], - "occurrences": 3 - }, - "0x709d140925272ee606825781b1bef7be6b1412cd": { - "address": "0x709d140925272ee606825781b1bef7be6b1412cd", - "symbol": "CGU", - "decimals": 8, - "name": "Crypto Global United", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x709d140925272ee606825781b1bef7be6b1412cd.png", - "aggregators": ["LiFi", "Rubic", "Sonarwatch"], - "occurrences": 3 - }, - "0xa79178574dc455dbdc846166939b686b41164758": { - "address": "0xa79178574dc455dbdc846166939b686b41164758", - "symbol": "BJR", - "decimals": 18, - "name": "BiJiRi", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0xa79178574dc455dbdc846166939b686b41164758.png", - "aggregators": ["LiFi", "Rubic", "Sonarwatch"], - "occurrences": 3 - }, - "0x49fc111e5ddd5580f48d6fdc4314540cb3a5cc4b": { - "address": "0x49fc111e5ddd5580f48d6fdc4314540cb3a5cc4b", - "symbol": "1337", - "decimals": 4, - "name": "1337 (PoS)", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x49fc111e5ddd5580f48d6fdc4314540cb3a5cc4b.png", - "aggregators": ["LiFi", "Socket", "Rubic"], - "occurrences": 3 - }, - "0x418839451873b0e69e628f95dc39a877a9715196": { - "address": "0x418839451873b0e69e628f95dc39a877a9715196", - "symbol": "NFTX", - "decimals": 18, - "name": "NFTX (PoS)", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x418839451873b0e69e628f95dc39a877a9715196.png", - "aggregators": ["LiFi", "Socket", "Rubic"], - "occurrences": 3 - }, - "0xedcfb6984a3c70501baa8b7f5421ae795ecc1496": { - "address": "0xedcfb6984a3c70501baa8b7f5421ae795ecc1496", - "symbol": "META", - "decimals": 8, - "name": "ABCMETA Token", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0xedcfb6984a3c70501baa8b7f5421ae795ecc1496.png", - "aggregators": ["Socket", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x9627a3d6872be48410fcece9b1ddd344bf08c53e": { - "address": "0x9627a3d6872be48410fcece9b1ddd344bf08c53e", - "symbol": "ACE", - "decimals": 2, - "name": "MetaTrace Utility Token", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x9627a3d6872be48410fcece9b1ddd344bf08c53e.png", - "aggregators": ["Socket", "Rubic", "Rango"], - "occurrences": 3 - }, - "0xa04c86c411320444d4a99d44082e057772e8cf96": { - "address": "0xa04c86c411320444d4a99d44082e057772e8cf96", - "symbol": "WUSD", - "decimals": 6, - "name": "Worldwide USD", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0xa04c86c411320444d4a99d44082e057772e8cf96.png", - "aggregators": ["Socket", "Rubic", "Rango"], - "occurrences": 3 - }, - "0xd07a7fac2857901e4bec0d89bbdae764723aab86": { - "address": "0xd07a7fac2857901e4bec0d89bbdae764723aab86", - "symbol": "USDK", - "decimals": 18, - "name": "USDK (PoS)", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0xd07a7fac2857901e4bec0d89bbdae764723aab86.png", - "aggregators": ["Socket", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x032f85b8fbf8540a92b986d953e4c3a61c76d39e": { - "address": "0x032f85b8fbf8540a92b986d953e4c3a61c76d39e", - "symbol": "TCP", - "decimals": 18, - "name": "TCP", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x032f85b8fbf8540a92b986d953e4c3a61c76d39e.png", - "aggregators": ["Socket", "Rubic", "Rango"], - "occurrences": 3 - }, - "0xa4ce4a467e51aefec683a649c3f14427f104667f": { - "address": "0xa4ce4a467e51aefec683a649c3f14427f104667f", - "symbol": "ONSTON", - "decimals": 18, - "name": "ONSTON", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0xa4ce4a467e51aefec683a649c3f14427f104667f.png", - "aggregators": ["Socket", "Rubic", "Rango"], - "occurrences": 3 - }, - "0xe6fc6c7cb6d2c31b359a49a33ef08ab87f4de7ce": { - "address": "0xe6fc6c7cb6d2c31b359a49a33ef08ab87f4de7ce", - "symbol": "IGG", - "decimals": 6, - "name": "IGG", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0xe6fc6c7cb6d2c31b359a49a33ef08ab87f4de7ce.png", - "aggregators": ["Socket", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x576cf361711cd940cd9c397bb98c4c896cbd38de": { - "address": "0x576cf361711cd940cd9c397bb98c4c896cbd38de", - "symbol": "USDC", - "decimals": 6, - "name": "USD Coin", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x576cf361711cd940cd9c397bb98c4c896cbd38de.png", - "aggregators": ["Socket", "Rubic", "Rango"], - "occurrences": 3 - }, - "0xa3c53b53fe43083aa31c6f32ffe90c4d91b44391": { - "address": "0xa3c53b53fe43083aa31c6f32ffe90c4d91b44391", - "symbol": "SPN", - "decimals": 18, - "name": "Sportzchain", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0xa3c53b53fe43083aa31c6f32ffe90c4d91b44391.png", - "aggregators": ["Socket", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x7ec26842f195c852fa843bb9f6d8b583a274a157": { - "address": "0x7ec26842f195c852fa843bb9f6d8b583a274a157", - "symbol": "ENJ", - "decimals": 18, - "name": "Enjin Coin (PoS)", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x7ec26842f195c852fa843bb9f6d8b583a274a157.png", - "aggregators": ["Socket", "Rubic", "Rango"], - "occurrences": 3 - }, - "0xa8d394fe7380b8ce6145d5f85e6ac22d4e91acde": { - "address": "0xa8d394fe7380b8ce6145d5f85e6ac22d4e91acde", - "symbol": "BUSD", - "decimals": 18, - "name": "BUSD", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0xa8d394fe7380b8ce6145d5f85e6ac22d4e91acde.png", - "aggregators": ["Socket", "Rubic", "Rango"], - "occurrences": 3 - }, - "0xfeb090fcd433de479396e82db8b83a470dbad3c9": { - "address": "0xfeb090fcd433de479396e82db8b83a470dbad3c9", - "symbol": "MVERSE", - "decimals": 18, - "name": "MVERSE", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0xfeb090fcd433de479396e82db8b83a470dbad3c9.png", - "aggregators": ["Socket", "Rubic", "Rango"], - "occurrences": 3 - }, - "0xd3c325848d7c6e29b574cb0789998b2ff901f17e": { - "address": "0xd3c325848d7c6e29b574cb0789998b2ff901f17e", - "symbol": "1ART", - "decimals": 18, - "name": "1ART", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0xd3c325848d7c6e29b574cb0789998b2ff901f17e.png", - "aggregators": ["Socket", "Rubic", "Rango"], - "occurrences": 3 - }, - "0xcc081220542a60a8ea7963c4f53d522b503272c1": { - "address": "0xcc081220542a60a8ea7963c4f53d522b503272c1", - "symbol": "NFTY", - "decimals": 18, - "name": "NFTY Token", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0xcc081220542a60a8ea7963c4f53d522b503272c1.png", - "aggregators": ["Socket", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x9c49ba0212bb5db371e66b59d1565b7c06e4894e": { - "address": "0x9c49ba0212bb5db371e66b59d1565b7c06e4894e", - "symbol": "CC10", - "decimals": 18, - "name": "CC10", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x9c49ba0212bb5db371e66b59d1565b7c06e4894e.png", - "aggregators": ["Socket", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x3d5efbcf89ba18ac4cf7f7e5db838e554d15fead": { - "address": "0x3d5efbcf89ba18ac4cf7f7e5db838e554d15fead", - "symbol": "DRIFT", - "decimals": 18, - "name": "Drift Token", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x3d5efbcf89ba18ac4cf7f7e5db838e554d15fead.png", - "aggregators": ["Socket", "Rubic", "Rango"], - "occurrences": 3 - }, - "0xb46e0ae620efd98516f49bb00263317096c114b2": { - "address": "0xb46e0ae620efd98516f49bb00263317096c114b2", - "symbol": "THETA", - "decimals": 18, - "name": "Theta Token (PoS)", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0xb46e0ae620efd98516f49bb00263317096c114b2.png", - "aggregators": ["Socket", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x62414d03084eeb269e18c970a21f45d2967f0170": { - "address": "0x62414d03084eeb269e18c970a21f45d2967f0170", - "symbol": "OMG", - "decimals": 18, - "name": "OMGToken (PoS)", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x62414d03084eeb269e18c970a21f45d2967f0170.png", - "aggregators": ["Socket", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x6abb753c1893194de4a83c6e8b4eadfc105fd5f5": { - "address": "0x6abb753c1893194de4a83c6e8b4eadfc105fd5f5", - "symbol": "SXP", - "decimals": 18, - "name": "Swipe (PoS)", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x6abb753c1893194de4a83c6e8b4eadfc105fd5f5.png", - "aggregators": ["Socket", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x67ce67ec4fcd4aca0fcb738dd080b2a21ff69d75": { - "address": "0x67ce67ec4fcd4aca0fcb738dd080b2a21ff69d75", - "symbol": "CHSB", - "decimals": 8, - "name": "SwissBorg (PoS)", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x67ce67ec4fcd4aca0fcb738dd080b2a21ff69d75.png", - "aggregators": ["Socket", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x8c3441e7b9aa8a30a542dde048dd067de2802e9b": { - "address": "0x8c3441e7b9aa8a30a542dde048dd067de2802e9b", - "symbol": "WINK", - "decimals": 18, - "name": "WINK", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x8c3441e7b9aa8a30a542dde048dd067de2802e9b.png", - "aggregators": ["Rubic", "Rango", "Sonarwatch"], - "occurrences": 3 - }, - "0x25578065bdd4ebd68e7ffeedfc4e6614f3f0057f": { - "address": "0x25578065bdd4ebd68e7ffeedfc4e6614f3f0057f", - "symbol": "GMTO", - "decimals": 18, - "name": "Game Meteor Coin", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x25578065bdd4ebd68e7ffeedfc4e6614f3f0057f.png", - "aggregators": ["Rubic", "Rango", "Sonarwatch"], - "occurrences": 3 - }, - "0xdc3acb92712d1d44ffe15d3a8d66d9d18c81e038": { - "address": "0xdc3acb92712d1d44ffe15d3a8d66d9d18c81e038", - "symbol": "POLAR", - "decimals": 18, - "name": "Polaris Token", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0xdc3acb92712d1d44ffe15d3a8d66d9d18c81e038.png", - "aggregators": ["Rubic", "Rango", "SushiSwap"], - "occurrences": 3 - }, - "0x5a3064cbdccf428ae907796cf6ad5a664cd7f3d8": { - "address": "0x5a3064cbdccf428ae907796cf6ad5a664cd7f3d8", - "symbol": "PYQ", - "decimals": 18, - "name": "PYQ", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x5a3064cbdccf428ae907796cf6ad5a664cd7f3d8.png", - "aggregators": ["Rubic", "Rango", "SushiSwap"], - "occurrences": 3 - }, - "0x5d0915f929fc090fd9c843a53e7e30335dd199bc": { - "address": "0x5d0915f929fc090fd9c843a53e7e30335dd199bc", - "symbol": "PTREAT", - "decimals": 18, - "name": "pTREAT", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x5d0915f929fc090fd9c843a53e7e30335dd199bc.png", - "aggregators": ["Rubic", "Rango", "SushiSwap"], - "occurrences": 3 - }, - "0xad01dffe604cdc172d8237566ee3a3ab6524d4c6": { - "address": "0xad01dffe604cdc172d8237566ee3a3ab6524d4c6", - "symbol": "C3", - "decimals": 18, - "name": "C3 Token", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0xad01dffe604cdc172d8237566ee3a3ab6524d4c6.png", - "aggregators": ["Rubic", "Rango", "SushiSwap"], - "occurrences": 3 - }, - "0xd5d84e75f48e75f01fb2eb6dfd8ea148ee3d0feb": { - "address": "0xd5d84e75f48e75f01fb2eb6dfd8ea148ee3d0feb", - "symbol": "PGOV", - "decimals": 18, - "name": "bZX PGOV Token", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0xd5d84e75f48e75f01fb2eb6dfd8ea148ee3d0feb.png", - "aggregators": ["Rubic", "Rango", "SushiSwap"], - "occurrences": 3 - }, - "0x1b43b97094aa3c6cc678edb9e28ac67daaa7cc64": { - "address": "0x1b43b97094aa3c6cc678edb9e28ac67daaa7cc64", - "symbol": "LICP", - "decimals": 18, - "name": "Liquid ICP", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x1b43b97094aa3c6cc678edb9e28ac67daaa7cc64.png", - "aggregators": ["Rubic", "Rango", "SushiSwap"], - "occurrences": 3 - }, - "0x7e94de269df2eb9f4d0443d46500191f19c9a8da": { - "address": "0x7e94de269df2eb9f4d0443d46500191f19c9a8da", - "symbol": "UNITY", - "decimals": 18, - "name": "Unity", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x7e94de269df2eb9f4d0443d46500191f19c9a8da.png", - "aggregators": ["Rubic", "Rango", "SushiSwap"], - "occurrences": 3 - }, - "0x29f1e986fca02b7e54138c04c4f503dddd250558": { - "address": "0x29f1e986fca02b7e54138c04c4f503dddd250558", - "symbol": "VSQ", - "decimals": 9, - "name": "VSQ", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x29f1e986fca02b7e54138c04c4f503dddd250558.png", - "aggregators": ["Rubic", "Rango", "SushiSwap"], - "occurrences": 3 - }, - "0x23c70dd93d4ecac7fb93631488c5412e02f4a57c": { - "address": "0x23c70dd93d4ecac7fb93631488c5412e02f4a57c", - "symbol": "REIN", - "decimals": 18, - "name": "Reyna Ventures", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x23c70dd93d4ecac7fb93631488c5412e02f4a57c.png", - "aggregators": ["Rubic", "Rango", "SushiSwap"], - "occurrences": 3 - }, - "0xc68e83a305b0fad69e264a1769a0a070f190d2d6": { - "address": "0xc68e83a305b0fad69e264a1769a0a070f190d2d6", - "symbol": "ROLL", - "decimals": 18, - "name": "Polyroll Token", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0xc68e83a305b0fad69e264a1769a0a070f190d2d6.png", - "aggregators": ["Rubic", "Rango", "SushiSwap"], - "occurrences": 3 - }, - "0xb74f2220ad34a03730400c9c97bd10863bbc4130": { - "address": "0xb74f2220ad34a03730400c9c97bd10863bbc4130", - "symbol": "CHECK", - "decimals": 6, - "name": "Check Token", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0xb74f2220ad34a03730400c9c97bd10863bbc4130.png", - "aggregators": ["Rubic", "Rango", "SushiSwap"], - "occurrences": 3 - }, - "0x2e2dde47952b9c7defde7424d00dd2341ad927ca": { - "address": "0x2e2dde47952b9c7defde7424d00dd2341ad927ca", - "symbol": "CHUM", - "decimals": 18, - "name": "ChumHum", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x2e2dde47952b9c7defde7424d00dd2341ad927ca.png", - "aggregators": ["Rubic", "Rango", "SushiSwap"], - "occurrences": 3 - }, - "0xab9ad9089f23e6779a8727900709427719f753e1": { - "address": "0xab9ad9089f23e6779a8727900709427719f753e1", - "symbol": "NGNC", - "decimals": 6, - "name": "NGN Coin", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0xab9ad9089f23e6779a8727900709427719f753e1.png", - "aggregators": ["Rubic", "Rango", "SushiSwap"], - "occurrences": 3 - }, - "0x57f12fe6a4e5fe819eec699fadf9db2d06606bb4": { - "address": "0x57f12fe6a4e5fe819eec699fadf9db2d06606bb4", - "symbol": "NPM", - "decimals": 18, - "name": "Neptune Mutual", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x57f12fe6a4e5fe819eec699fadf9db2d06606bb4.png", - "aggregators": ["Rubic", "Rango", "SushiSwap"], - "occurrences": 3 - }, - "0x2df54842cd85c60f21b4871e09bcc6047b2dcc4d": { - "address": "0x2df54842cd85c60f21b4871e09bcc6047b2dcc4d", - "symbol": "IMRTL", - "decimals": 18, - "name": "Immortl", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x2df54842cd85c60f21b4871e09bcc6047b2dcc4d.png", - "aggregators": ["Rubic", "Rango", "SushiSwap"], - "occurrences": 3 - }, - "0x0d962a1a2a27b402e4d84772dea65ac8592eb6bf": { - "address": "0x0d962a1a2a27b402e4d84772dea65ac8592eb6bf", - "symbol": "GMS", - "decimals": 18, - "name": "Gemstones", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x0d962a1a2a27b402e4d84772dea65ac8592eb6bf.png", - "aggregators": ["Rubic", "Rango", "SushiSwap"], - "occurrences": 3 - }, - "0x0c705862f56cd8ec70337f5f5184fea4158a3c00": { - "address": "0x0c705862f56cd8ec70337f5f5184fea4158a3c00", - "symbol": "AWT", - "decimals": 18, - "name": "Abyss World", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x0c705862f56cd8ec70337f5f5184fea4158a3c00.png", - "aggregators": ["Rubic", "Rango", "Sonarwatch"], - "occurrences": 3 - }, - "0x40f97ec376ac1c503e755433bf57f21e3a49f440": { - "address": "0x40f97ec376ac1c503e755433bf57f21e3a49f440", - "symbol": "CVTX", - "decimals": 18, - "name": "CarrieVerse", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x40f97ec376ac1c503e755433bf57f21e3a49f440.png", - "aggregators": ["Rubic", "Rango", "Sonarwatch"], - "occurrences": 3 - }, - "0xa0e4c84693266a9d3bbef2f394b33712c76599ab": { - "address": "0xa0e4c84693266a9d3bbef2f394b33712c76599ab", - "symbol": "EURO3", - "decimals": 18, - "name": "EURO3", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0xa0e4c84693266a9d3bbef2f394b33712c76599ab.png", - "aggregators": ["Rubic", "Rango", "SushiSwap"], - "occurrences": 3 - }, - "0xe9bc9ad74cca887aff32ba09a121b1256fc9f052": { - "address": "0xe9bc9ad74cca887aff32ba09a121b1256fc9f052", - "symbol": "PIG", - "decimals": 18, - "name": "Pigcoin", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0xe9bc9ad74cca887aff32ba09a121b1256fc9f052.png", - "aggregators": ["Rubic", "Rango", "Sonarwatch"], - "occurrences": 3 - }, - "0x2f3e306d9f02ee8e8850f9040404918d0b345207": { - "address": "0x2f3e306d9f02ee8e8850f9040404918d0b345207", - "symbol": "DOGA", - "decimals": 5, - "name": "Dogami", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x2f3e306d9f02ee8e8850f9040404918d0b345207.png", - "aggregators": ["Rubic", "Rango", "Sonarwatch"], - "occurrences": 3 - }, - "0x228b5c21ac00155cf62c57bcc704c0da8187950b": { - "address": "0x228b5c21ac00155cf62c57bcc704c0da8187950b", - "symbol": "NXD", - "decimals": 18, - "name": "Nexus Dubai", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x228b5c21ac00155cf62c57bcc704c0da8187950b.png", - "aggregators": ["Rubic", "Rango", "Sonarwatch"], - "occurrences": 3 - }, - "0x60eec374a1ba3907e9bdd8a74ce368d041d89c79": { - "address": "0x60eec374a1ba3907e9bdd8a74ce368d041d89c79", - "symbol": "PBIRB", - "decimals": 18, - "name": "Parrotly", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x60eec374a1ba3907e9bdd8a74ce368d041d89c79.png", - "aggregators": ["Rubic", "Rango", "Sonarwatch"], - "occurrences": 3 - }, - "0xfd1eeb2f3399872735f3df735816c4fc607e12c4": { - "address": "0xfd1eeb2f3399872735f3df735816c4fc607e12c4", - "symbol": "PME", - "decimals": 18, - "name": "PCO Metaverse", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0xfd1eeb2f3399872735f3df735816c4fc607e12c4.png", - "aggregators": ["Rubic", "Rango", "Sonarwatch"], - "occurrences": 3 - }, - "0x762b56f3e36a4be65763056d6464668b4c7b2f49": { - "address": "0x762b56f3e36a4be65763056d6464668b4c7b2f49", - "symbol": "PUGGY", - "decimals": 18, - "name": "PUGGY Coin", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x762b56f3e36a4be65763056d6464668b4c7b2f49.png", - "aggregators": ["Rubic", "Rango", "Sonarwatch"], - "occurrences": 3 - }, - "0xc79fc2885e207e1c4cc69cf94402dd1a5642452e": { - "address": "0xc79fc2885e207e1c4cc69cf94402dd1a5642452e", - "symbol": "SEAT", - "decimals": 18, - "name": "Seamans Token", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0xc79fc2885e207e1c4cc69cf94402dd1a5642452e.png", - "aggregators": ["Rubic", "Rango", "Sonarwatch"], - "occurrences": 3 - }, - "0xfcb54da3f4193435184f3f647467e12b50754575": { - "address": "0xfcb54da3f4193435184f3f647467e12b50754575", - "symbol": "SML", - "decimals": 8, - "name": "Smell", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0xfcb54da3f4193435184f3f647467e12b50754575.png", - "aggregators": ["Rubic", "Rango", "Sonarwatch"], - "occurrences": 3 - }, - "0xefee2de82343be622dcb4e545f75a3b9f50c272d": { - "address": "0xefee2de82343be622dcb4e545f75a3b9f50c272d", - "symbol": "TRY", - "decimals": 18, - "name": "TryHards", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0xefee2de82343be622dcb4e545f75a3b9f50c272d.png", - "aggregators": ["Rubic", "Rango", "Sonarwatch"], - "occurrences": 3 - }, - "0x41084fdc569099d9e527ccf126e12d9c7c688ec3": { - "address": "0x41084fdc569099d9e527ccf126e12d9c7c688ec3", - "symbol": "IQT", - "decimals": 18, - "name": "IQ Protocol", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x41084fdc569099d9e527ccf126e12d9c7c688ec3.png", - "aggregators": ["Rubic", "Rango", "Sonarwatch"], - "occurrences": 3 - }, - "0x03c2f6808502ffd4ab2787ad1a98ec13dbd5718b": { - "address": "0x03c2f6808502ffd4ab2787ad1a98ec13dbd5718b", - "symbol": "CTI", - "decimals": 18, - "name": "ClinTex CTi", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x03c2f6808502ffd4ab2787ad1a98ec13dbd5718b.png", - "aggregators": ["Rubic", "Rango", "Sonarwatch"], - "occurrences": 3 - }, - "0x99083d1b9c6744c71d0cf70b8965faca37684527": { - "address": "0x99083d1b9c6744c71d0cf70b8965faca37684527", - "symbol": "FRF", - "decimals": 18, - "name": "FRANCE REV FINANCE", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x99083d1b9c6744c71d0cf70b8965faca37684527.png", - "aggregators": ["Rubic", "Rango", "Sonarwatch"], - "occurrences": 3 - }, - "0xd9a9b4d466747e1ebcb7aeb42784452f40452367": { - "address": "0xd9a9b4d466747e1ebcb7aeb42784452f40452367", - "symbol": "ACTIVE", - "decimals": 18, - "name": "Active Token", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0xd9a9b4d466747e1ebcb7aeb42784452f40452367.png", - "aggregators": ["Rubic", "Rango", "Sonarwatch"], - "occurrences": 3 - }, - "0xacd4e2d936be9b16c01848a3742a34b3d5a5bdfa": { - "address": "0xacd4e2d936be9b16c01848a3742a34b3d5a5bdfa", - "symbol": "$MECHA", - "decimals": 18, - "name": "Mechanium", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0xacd4e2d936be9b16c01848a3742a34b3d5a5bdfa.png", - "aggregators": ["Rubic", "Rango", "Sonarwatch"], - "occurrences": 3 - }, - "0x492fa53b88614923937b7197c87e0f7f8eeb7b20": { - "address": "0x492fa53b88614923937b7197c87e0f7f8eeb7b20", - "symbol": "NFTE", - "decimals": 18, - "name": "NFTEarthOFT", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x492fa53b88614923937b7197c87e0f7f8eeb7b20.png", - "aggregators": ["Rubic", "Rango", "SushiSwap"], - "occurrences": 3 - }, - "0x2a07461a493b994c2a32f549fd185524f306ab38": { - "address": "0x2a07461a493b994c2a32f549fd185524f306ab38", - "symbol": "AES", - "decimals": 18, - "name": "Aree Shards", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x2a07461a493b994c2a32f549fd185524f306ab38.png", - "aggregators": ["Rubic", "Rango", "Sonarwatch"], - "occurrences": 3 - }, - "0x187ae45f2d361cbce37c6a8622119c91148f261b": { - "address": "0x187ae45f2d361cbce37c6a8622119c91148f261b", - "symbol": "POLX", - "decimals": 18, - "name": "Polylastic", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x187ae45f2d361cbce37c6a8622119c91148f261b.png", - "aggregators": ["Rubic", "Rango", "Sonarwatch"], - "occurrences": 3 - }, - "0xdb6dae4b87be1289715c08385a6fc1a3d970b09d": { - "address": "0xdb6dae4b87be1289715c08385a6fc1a3d970b09d", - "symbol": "MOOVE", - "decimals": 18, - "name": "Moove Protocol", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0xdb6dae4b87be1289715c08385a6fc1a3d970b09d.png", - "aggregators": ["Rubic", "Rango", "Sonarwatch"], - "occurrences": 3 - }, - "0xe5cf781d9e6e92b051ffb8037a5d81981863ea82": { - "address": "0xe5cf781d9e6e92b051ffb8037a5d81981863ea82", - "symbol": "TYT", - "decimals": 18, - "name": "Bounty Temple", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0xe5cf781d9e6e92b051ffb8037a5d81981863ea82.png", - "aggregators": ["Rubic", "Rango", "Sonarwatch"], - "occurrences": 3 - }, - "0xfb40b1efe90d4b786d2d9d9dc799b18bde92923b": { - "address": "0xfb40b1efe90d4b786d2d9d9dc799b18bde92923b", - "symbol": "LSHARE", - "decimals": 18, - "name": "LIF3 LSHARE (OLD)", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0xfb40b1efe90d4b786d2d9d9dc799b18bde92923b.png", - "aggregators": ["Rubic", "Rango", "Sonarwatch"], - "occurrences": 3 - }, - "0x9c891326fd8b1a713974f73bb604677e1e63396d": { - "address": "0x9c891326fd8b1a713974f73bb604677e1e63396d", - "symbol": "ISLAMI", - "decimals": 7, - "name": "ISLAMICOIN", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x9c891326fd8b1a713974f73bb604677e1e63396d.png", - "aggregators": ["Rubic", "Rango", "Sonarwatch"], - "occurrences": 3 - }, - "0x0e98c977b943f06075b2d795794238fbfb9b9a34": { - "address": "0x0e98c977b943f06075b2d795794238fbfb9b9a34", - "symbol": "TOMB", - "decimals": 18, - "name": "Tomb", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x0e98c977b943f06075b2d795794238fbfb9b9a34.png", - "aggregators": ["Rubic", "Rango", "Sonarwatch"], - "occurrences": 3 - }, - "0x03b92ebf0615d44d8c782c209e4405b74cb77d1d": { - "address": "0x03b92ebf0615d44d8c782c209e4405b74cb77d1d", - "symbol": "MUC", - "decimals": 18, - "name": "Multi Universe Central", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x03b92ebf0615d44d8c782c209e4405b74cb77d1d.png", - "aggregators": ["Rubic", "Rango", "Sonarwatch"], - "occurrences": 3 - }, - "0x0b048d6e01a6b9002c291060bf2179938fd8264c": { - "address": "0x0b048d6e01a6b9002c291060bf2179938fd8264c", - "symbol": "ALPHA", - "decimals": 18, - "name": "PolyAlpha Finance", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x0b048d6e01a6b9002c291060bf2179938fd8264c.png", - "aggregators": ["Rubic", "Rango", "SushiSwap"], - "occurrences": 3 - }, - "0x8328e6fcec9477c28298c9f02d740dd87a1683e5": { - "address": "0x8328e6fcec9477c28298c9f02d740dd87a1683e5", - "symbol": "KPN", - "decimals": 18, - "name": "KonnektVPN", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x8328e6fcec9477c28298c9f02d740dd87a1683e5.png", - "aggregators": ["Rubic", "Rango", "Sonarwatch"], - "occurrences": 3 - }, - "0xca730042595a1809793fbe2e9883c184c7eb27db": { - "address": "0xca730042595a1809793fbe2e9883c184c7eb27db", - "symbol": "GENO", - "decimals": 18, - "name": "GenomeFi", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0xca730042595a1809793fbe2e9883c184c7eb27db.png", - "aggregators": ["Rubic", "Rango", "Sonarwatch"], - "occurrences": 3 - }, - "0x3efcd659b7a45d14dda8a102836ce4b765c42324": { - "address": "0x3efcd659b7a45d14dda8a102836ce4b765c42324", - "symbol": "$GIB", - "decimals": 18, - "name": "GIB", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x3efcd659b7a45d14dda8a102836ce4b765c42324.png", - "aggregators": ["Rubic", "Rango", "Sonarwatch"], - "occurrences": 3 - }, - "0xf50441d584d435e5f917c8201f72ca2b1b7f1d04": { - "address": "0xf50441d584d435e5f917c8201f72ca2b1b7f1d04", - "symbol": "LYK", - "decimals": 8, - "name": "LayerK", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0xf50441d584d435e5f917c8201f72ca2b1b7f1d04.png", - "aggregators": ["Rubic", "Rango", "Sonarwatch"], - "occurrences": 3 - }, - "0xd0ac5be680bfbc0f1958413f4201f91934f61bea": { - "address": "0xd0ac5be680bfbc0f1958413f4201f91934f61bea", - "symbol": "MILO", - "decimals": 18, - "name": "MILO", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0xd0ac5be680bfbc0f1958413f4201f91934f61bea.png", - "aggregators": ["Rubic", "Rango", "Sonarwatch"], - "occurrences": 3 - }, - "0xdec933e2392ad908263e70a386fbf34e703ffe8f": { - "address": "0xdec933e2392ad908263e70a386fbf34e703ffe8f", - "symbol": "WBCOIN", - "decimals": 18, - "name": "Wrapped bCOIN", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0xdec933e2392ad908263e70a386fbf34e703ffe8f.png", - "aggregators": [ - "CoinGecko", - "LiFi", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 6 - }, - "0xae4efbc7736f963982aacb17efa37fcbab924cb3": { - "address": "0xae4efbc7736f963982aacb17efa37fcbab924cb3", - "symbol": "SOLVBTC", - "decimals": 18, - "name": "Solv Protocol BTC", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0xae4efbc7736f963982aacb17efa37fcbab924cb3.png", - "aggregators": [ - "CoinGecko", - "LiFi", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0xc99f5c922dae05b6e2ff83463ce705ef7c91f077": { - "address": "0xc99f5c922dae05b6e2ff83463ce705ef7c91f077", - "symbol": "XSOLVBTC", - "decimals": 18, - "name": "Solv Protocol Staked BTC", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0xc99f5c922dae05b6e2ff83463ce705ef7c91f077.png", - "aggregators": [ - "CoinGecko", - "LiFi", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x58c7b2828e7f2b2caa0cc7feef242fa3196d03df": { - "address": "0x58c7b2828e7f2b2caa0cc7feef242fa3196d03df", - "symbol": "FXA3A", - "decimals": 18, - "name": "3A Utility Token (FXERC20)", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x58c7b2828e7f2b2caa0cc7feef242fa3196d03df.png", - "aggregators": [ - "CoinGecko", - "Rubic", - "Rango", - "Sonarwatch", - "SushiSwap" - ], - "occurrences": 5 - }, - "0x625e7708f30ca75bfd92586e17077590c60eb4cd": { - "address": "0x625e7708f30ca75bfd92586e17077590c60eb4cd", - "symbol": "AUSDC", - "decimals": 6, - "name": "Aave v3 USDC", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x625e7708f30ca75bfd92586e17077590c60eb4cd.png", - "aggregators": [ - "CoinGecko", - "LiFi", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x013f9c3fac3e2759d7e90aca4f9540f75194a0d7": { - "address": "0x013f9c3fac3e2759d7e90aca4f9540f75194a0d7", - "symbol": "USDN", - "decimals": 18, - "name": "USDN", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x013f9c3fac3e2759d7e90aca4f9540f75194a0d7.png", - "aggregators": ["CoinGecko", "LiFi", "Socket", "Rubic", "Rango"], - "occurrences": 5 - }, - "0x06ddb3a8bc0abc14f85e974cf1a93a6f8d4909d9": { - "address": "0x06ddb3a8bc0abc14f85e974cf1a93a6f8d4909d9", - "symbol": "8PAY", - "decimals": 18, - "name": "8Pay", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x06ddb3a8bc0abc14f85e974cf1a93a6f8d4909d9.png", - "aggregators": [ - "CoinGecko", - "LiFi", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0xe0aea583266584dafbb3f9c3211d5588c73fea8d": { - "address": "0xe0aea583266584dafbb3f9c3211d5588c73fea8d", - "symbol": "EURE", - "decimals": 18, - "name": "Monerium EUR emoney", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0xe0aea583266584dafbb3f9c3211d5588c73fea8d.png", - "aggregators": [ - "CoinGecko", - "1inch", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x9880e3dda13c8e7d4804691a45160102d31f6060": { - "address": "0x9880e3dda13c8e7d4804691a45160102d31f6060", - "symbol": "OXT", - "decimals": 18, - "name": "Orchid", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x9880e3dda13c8e7d4804691a45160102d31f6060.png", - "aggregators": ["UniswapLabs", "LiFi", "Socket", "Sonarwatch"], - "occurrences": 4 - }, - "0xd72357daca2cf11a5f155b9ff7880e595a3f5792": { - "address": "0xd72357daca2cf11a5f155b9ff7880e595a3f5792", - "symbol": "STORJ", - "decimals": 8, - "name": "Storj Token", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0xd72357daca2cf11a5f155b9ff7880e595a3f5792.png", - "aggregators": ["UniswapLabs", "LiFi", "Socket", "Sonarwatch"], - "occurrences": 4 - }, - "0xf81b4bec6ca8f9fe7be01ca734f55b2b6e03a7a0": { - "address": "0xf81b4bec6ca8f9fe7be01ca734f55b2b6e03a7a0", - "symbol": "SUSD", - "decimals": 18, - "name": "Synth sUSD", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0xf81b4bec6ca8f9fe7be01ca734f55b2b6e03a7a0.png", - "aggregators": ["UniswapLabs", "LiFi", "Socket", "Sonarwatch"], - "occurrences": 4 - }, - "0x1fd6cf265fd3428f655378a803658942095b4c4e": { - "address": "0x1fd6cf265fd3428f655378a803658942095b4c4e", - "symbol": "YELD", - "decimals": 18, - "name": "PolyYeld", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x1fd6cf265fd3428f655378a803658942095b4c4e.png", - "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0xc011a7e12a19f7b1f670d46f03b03f3342e82dfb": { - "address": "0xc011a7e12a19f7b1f670d46f03b03f3342e82dfb", - "symbol": "PUSD", - "decimals": 6, - "name": "Polymarket USD", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0xc011a7e12a19f7b1f670d46f03b03f3342e82dfb.png", - "aggregators": ["Metamask", "LiFi", "Rubic", "Rango"], - "occurrences": 4 - }, - "0x2ab445c24c96db13383bb34678adae50c43b4baa": { - "address": "0x2ab445c24c96db13383bb34678adae50c43b4baa", - "symbol": "CLAY", - "decimals": 18, - "name": "Clay", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x2ab445c24c96db13383bb34678adae50c43b4baa.png", - "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0x11b37c9388420d79d48e8d531227f43c9bf1bbf1": { - "address": "0x11b37c9388420d79d48e8d531227f43c9bf1bbf1", - "symbol": "FIT", - "decimals": 18, - "name": "FIT", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x11b37c9388420d79d48e8d531227f43c9bf1bbf1.png", - "aggregators": ["CoinGecko", "Rubic", "Squid", "Rango"], - "occurrences": 4 - }, - "0x3bf668fe1ec79a84ca8481cead5dbb30d61cc685": { - "address": "0x3bf668fe1ec79a84ca8481cead5dbb30d61cc685", - "symbol": "TELEBTC", - "decimals": 8, - "name": "teleBTC", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x3bf668fe1ec79a84ca8481cead5dbb30d61cc685.png", - "aggregators": ["CoinGecko", "Rubic", "Squid", "Rango"], - "occurrences": 4 - }, - "0x46080f31351a6568f44575e3effde7f0c86867f9": { - "address": "0x46080f31351a6568f44575e3effde7f0c86867f9", - "symbol": "GILTS", - "decimals": 6, - "name": "GILTS", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x46080f31351a6568f44575e3effde7f0c86867f9.png", - "aggregators": ["CoinGecko", "LiFi", "Rubic", "Rango"], - "occurrences": 4 - }, - "0xc11158c5da9db1d553ed28f0c2ba1cbedd42cfcb": { - "address": "0xc11158c5da9db1d553ed28f0c2ba1cbedd42cfcb", - "symbol": "PAW", - "decimals": 18, - "name": "PAW", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0xc11158c5da9db1d553ed28f0c2ba1cbedd42cfcb.png", - "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0x80eede496655fb9047dd39d9f418d5483ed600df": { - "address": "0x80eede496655fb9047dd39d9f418d5483ed600df", - "symbol": "FRXUSD", - "decimals": 18, - "name": "FRXUSD", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x80eede496655fb9047dd39d9f418d5483ed600df.png", - "aggregators": ["CoinGecko", "LiFi", "Rubic", "Rango"], - "occurrences": 4 - }, - "0x1f82284c1658ad71c576f7230e6c2dee7901c1fa": { - "address": "0x1f82284c1658ad71c576f7230e6c2dee7901c1fa", - "symbol": "WBTSLA", - "decimals": 18, - "name": "Wrapped bTSLA", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x1f82284c1658ad71c576f7230e6c2dee7901c1fa.png", - "aggregators": ["CoinGecko", "LiFi", "Rubic", "Sonarwatch"], - "occurrences": 4 - }, - "0xfdcc3dd6671eab0709a4c0f3f53de9a333d80798": { - "address": "0xfdcc3dd6671eab0709a4c0f3f53de9a333d80798", - "symbol": "SBC", - "decimals": 18, - "name": "SBC", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0xfdcc3dd6671eab0709a4c0f3f53de9a333d80798.png", - "aggregators": ["CoinGecko", "Socket", "Rubic", "Rango"], - "occurrences": 4 - }, - "0x11a88f949c0592238959142653bb6847c6523d81": { - "address": "0x11a88f949c0592238959142653bb6847c6523d81", - "symbol": "WEN", - "decimals": 18, - "name": "WEN Token", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x11a88f949c0592238959142653bb6847c6523d81.png", - "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0xdfc3829b127761a3218bfcee7fc92e1232c9d116": { - "address": "0xdfc3829b127761a3218bfcee7fc92e1232c9d116", - "symbol": "PRCY", - "decimals": 8, - "name": "PRivaCY Coin", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0xdfc3829b127761a3218bfcee7fc92e1232c9d116.png", - "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0x9cd6746665d9557e1b9a775819625711d0693439": { - "address": "0x9cd6746665d9557e1b9a775819625711d0693439", - "symbol": "LUNC", - "decimals": 6, - "name": "Terra Classic (Wormhole)", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x9cd6746665d9557e1b9a775819625711d0693439.png", - "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0xb962150760f9a3bb00e3e9cf48297ee20ada4a33": { - "address": "0xb962150760f9a3bb00e3e9cf48297ee20ada4a33", - "symbol": "ZOOMER", - "decimals": 18, - "name": "Zoomer", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0xb962150760f9a3bb00e3e9cf48297ee20ada4a33.png", - "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0xdfffe0c33b4011c4218acd61e68a62a32eaf9a8b": { - "address": "0xdfffe0c33b4011c4218acd61e68a62a32eaf9a8b", - "symbol": "AXLREGEN", - "decimals": 6, - "name": "AXLREGEN", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0xdfffe0c33b4011c4218acd61e68a62a32eaf9a8b.png", - "aggregators": ["CoinGecko", "Rubic", "Squid", "Rango"], - "occurrences": 4 - }, - "0x1a4f71b0ff3c22540887bcf83b50054a213c673d": { - "address": "0x1a4f71b0ff3c22540887bcf83b50054a213c673d", - "symbol": "WBMSTR", - "decimals": 18, - "name": "Wrapped bMSTR", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x1a4f71b0ff3c22540887bcf83b50054a213c673d.png", - "aggregators": ["CoinGecko", "LiFi", "Rubic", "Sonarwatch"], - "occurrences": 4 - }, - "0x47c52f93a359db9f4509005cf982dfc440790561": { - "address": "0x47c52f93a359db9f4509005cf982dfc440790561", - "symbol": "MPWR", - "decimals": 18, - "name": "Empower", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x47c52f93a359db9f4509005cf982dfc440790561.png", - "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0xdef1fac7bf08f173d286bbbdcbeeade695129840": { - "address": "0xdef1fac7bf08f173d286bbbdcbeeade695129840", - "symbol": "CERBY", - "decimals": 18, - "name": "Cerby Token", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0xdef1fac7bf08f173d286bbbdcbeeade695129840.png", - "aggregators": ["LiFi", "Rubic", "Rango", "SushiSwap"], - "occurrences": 4 - }, - "0x3a79241a92a4f06952107308057da1991792d372": { - "address": "0x3a79241a92a4f06952107308057da1991792d372", - "symbol": "ZENF", - "decimals": 18, - "name": "Zenland", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x3a79241a92a4f06952107308057da1991792d372.png", - "aggregators": ["LiFi", "Socket", "Rubic", "Rango"], - "occurrences": 4 - }, - "0xa9a8eed4c7b91de6d6d2a6b2d21300ec162b1375": { - "address": "0xa9a8eed4c7b91de6d6d2a6b2d21300ec162b1375", - "symbol": "SKX", - "decimals": 18, - "name": "SKX", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0xa9a8eed4c7b91de6d6d2a6b2d21300ec162b1375.png", - "aggregators": ["CoinGecko", "LiFi", "Rubic"], - "occurrences": 3 - }, - "0x784665471bb8b945b57a76a9200b109ee214e789": { - "address": "0x784665471bb8b945b57a76a9200b109ee214e789", - "symbol": "KC", - "decimals": 6, - "name": "Krasnalcoin", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x784665471bb8b945b57a76a9200b109ee214e789.png", - "aggregators": ["CoinGecko", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x3c12f8829041bf99deaa2965014e01b750f87905": { - "address": "0x3c12f8829041bf99deaa2965014e01b750f87905", - "symbol": "TTAJ", - "decimals": 18, - "name": "TTAJ", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x3c12f8829041bf99deaa2965014e01b750f87905.png", - "aggregators": ["CoinGecko", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x0f09e11501b01b3e9dc77d96db752d1a2ac84b20": { - "address": "0x0f09e11501b01b3e9dc77d96db752d1a2ac84b20", - "symbol": "NOGS", - "decimals": 16, - "name": "Noggles", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x0f09e11501b01b3e9dc77d96db752d1a2ac84b20.png", - "aggregators": ["CoinGecko", "Rubic", "Sonarwatch"], - "occurrences": 3 - }, - "0xe56cee16b76903b3c8eb4af3c06d1d2fab320f95": { - "address": "0xe56cee16b76903b3c8eb4af3c06d1d2fab320f95", - "symbol": "KTB", - "decimals": 6, - "name": "Etherfuse KTB", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0xe56cee16b76903b3c8eb4af3c06d1d2fab320f95.png", - "aggregators": ["CoinGecko", "LiFi", "Rubic"], - "occurrences": 3 - }, - "0x7e8101a1c322d394b3961498c7d40d2dfa94c392": { - "address": "0x7e8101a1c322d394b3961498c7d40d2dfa94c392", - "symbol": "WBNVDA", - "decimals": 18, - "name": "Wrapped Backed NVIDIA Corp", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x7e8101a1c322d394b3961498c7d40d2dfa94c392.png", - "aggregators": ["CoinGecko", "LiFi", "Rubic"], - "occurrences": 3 - }, - "0x337e7456b420bd3481e7fa61fa9850343d610d34": { - "address": "0x337e7456b420bd3481e7fa61fa9850343d610d34", - "symbol": "WMXN", - "decimals": 18, - "name": "Peso Mexicano", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x337e7456b420bd3481e7fa61fa9850343d610d34.png", - "aggregators": ["CoinGecko", "LiFi", "Rubic"], - "occurrences": 3 - }, - "0xc2ff25dd99e467d2589b2c26edd270f220f14e47": { - "address": "0xc2ff25dd99e467d2589b2c26edd270f220f14e47", - "symbol": "DEURO", - "decimals": 18, - "name": "DEURO", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0xc2ff25dd99e467d2589b2c26edd270f220f14e47.png", - "aggregators": ["CoinGecko", "Rubic", "Rango"], - "occurrences": 3 - }, - "0xd0076d7e57aac42ec3f9d6e7c604d04a5b7030fa": { - "address": "0xd0076d7e57aac42ec3f9d6e7c604d04a5b7030fa", - "symbol": "VNDC", - "decimals": 0, - "name": "VNDC", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0xd0076d7e57aac42ec3f9d6e7c604d04a5b7030fa.png", - "aggregators": ["CoinGecko", "Socket", "Rubic"], - "occurrences": 3 - }, - "0x970e2adc2fdf53aea6b5fa73ca6dc30eafedfe3d": { - "address": "0x970e2adc2fdf53aea6b5fa73ca6dc30eafedfe3d", - "symbol": "UKTBL", - "decimals": 5, - "name": "Spiko UK T-Bills Money Market Fund", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x970e2adc2fdf53aea6b5fa73ca6dc30eafedfe3d.png", - "aggregators": ["CoinGecko", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x0dc4f92879b7670e5f4e4e6e3c801d229129d90d": { - "address": "0x0dc4f92879b7670e5f4e4e6e3c801d229129d90d", - "symbol": "WARS", - "decimals": 18, - "name": "Peso Argentino", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x0dc4f92879b7670e5f4e4e6e3c801d229129d90d.png", - "aggregators": ["CoinGecko", "LiFi", "Rubic"], - "occurrences": 3 - }, - "0xf4c3fac9c98aa62474998e299495b699dfdb00eb": { - "address": "0xf4c3fac9c98aa62474998e299495b699dfdb00eb", - "symbol": "HANDL", - "decimals": 18, - "name": "HandlPay", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0xf4c3fac9c98aa62474998e299495b699dfdb00eb.png", - "aggregators": ["CoinGecko", "LiFi", "Rubic"], - "occurrences": 3 - }, - "0xea0941c6e067a4fb4399436ad3e2510eb36b419d": { - "address": "0xea0941c6e067a4fb4399436ad3e2510eb36b419d", - "symbol": "PROS", - "decimals": 18, - "name": "PROS", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0xea0941c6e067a4fb4399436ad3e2510eb36b419d.png", - "aggregators": ["CoinGecko", "Rubic", "Rango"], - "occurrences": 3 - }, - "0xd76f5faf6888e24d9f04bf92a0c8b921fe4390e0": { - "address": "0xd76f5faf6888e24d9f04bf92a0c8b921fe4390e0", - "symbol": "WBRL", - "decimals": 18, - "name": "Real Brasileño", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0xd76f5faf6888e24d9f04bf92a0c8b921fe4390e0.png", - "aggregators": ["CoinGecko", "LiFi", "Rubic"], - "occurrences": 3 - }, - "0x4f34c8b3b5fb6d98da888f0fea543d4d9c9f2ebe": { - "address": "0x4f34c8b3b5fb6d98da888f0fea543d4d9c9f2ebe", - "symbol": "WPEN", - "decimals": 18, - "name": "Sol Peruano", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x4f34c8b3b5fb6d98da888f0fea543d4d9c9f2ebe.png", - "aggregators": ["CoinGecko", "LiFi", "Rubic"], - "occurrences": 3 - }, - "0x8a1d45e102e886510e891d2ec656a708991e2d76": { - "address": "0x8a1d45e102e886510e891d2ec656a708991e2d76", - "symbol": "WCOP", - "decimals": 18, - "name": "Peso Colombiano", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x8a1d45e102e886510e891d2ec656a708991e2d76.png", - "aggregators": ["CoinGecko", "LiFi", "Rubic"], - "occurrences": 3 - }, - "0x61d450a098b6a7f69fc4b98ce68198fe59768651": { - "address": "0x61d450a098b6a7f69fc4b98ce68198fe59768651", - "symbol": "WCLP", - "decimals": 18, - "name": "Peso Chileno", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x61d450a098b6a7f69fc4b98ce68198fe59768651.png", - "aggregators": ["CoinGecko", "LiFi", "Rubic"], - "occurrences": 3 - }, - "0x176f5ab638cf4ff3b6239ba609c3fadaa46ef5b0": { - "address": "0x176f5ab638cf4ff3b6239ba609c3fadaa46ef5b0", - "symbol": "MFARM", - "decimals": 18, - "name": "Harvest Reward Token", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x176f5ab638cf4ff3b6239ba609c3fadaa46ef5b0.png", - "aggregators": ["LiFi", "Socket", "Rubic"], - "occurrences": 3 - }, - "0xe81432473290f4ffcfc5e823f8069db83e8a677b": { - "address": "0xe81432473290f4ffcfc5e823f8069db83e8a677b", - "symbol": "CRE", - "decimals": 18, - "name": "CrepeToken", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0xe81432473290f4ffcfc5e823f8069db83e8a677b.png", - "aggregators": ["LiFi", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x60f7dd499956ec8fcea8ed80e9d7eade4ccdc417": { - "address": "0x60f7dd499956ec8fcea8ed80e9d7eade4ccdc417", - "symbol": "USDW", - "decimals": 6, - "name": "USD DWIN", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x60f7dd499956ec8fcea8ed80e9d7eade4ccdc417.png", - "aggregators": ["LiFi", "Rubic", "Sonarwatch"], - "occurrences": 3 - }, - "0x160d64f91ad7c4d9ac4ba2c44a0e77373ca69ebe": { - "address": "0x160d64f91ad7c4d9ac4ba2c44a0e77373ca69ebe", - "symbol": "BONDLY", - "decimals": 18, - "name": "Bondly (PoS)", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x160d64f91ad7c4d9ac4ba2c44a0e77373ca69ebe.png", - "aggregators": ["LiFi", "Socket", "Rubic"], - "occurrences": 3 - }, - "0xb6c3c00d730acca326db40e418353f04f7444e2b": { - "address": "0xb6c3c00d730acca326db40e418353f04f7444e2b", - "symbol": "FCC", - "decimals": 18, - "name": "first choice coin", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0xb6c3c00d730acca326db40e418353f04f7444e2b.png", - "aggregators": ["LiFi", "Squid", "Rango"], - "occurrences": 3 - }, - "0xfe58138156dee3eaef5e6d113210dbf460b61df1": { - "address": "0xfe58138156dee3eaef5e6d113210dbf460b61df1", - "symbol": "RYZE", - "decimals": 18, - "name": "ARYZE", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0xfe58138156dee3eaef5e6d113210dbf460b61df1.png", - "aggregators": ["LiFi", "Rubic", "Rango"], - "occurrences": 3 - }, - "0xaf0d9d65fc54de245cda37af3d18cbec860a4d4b": { - "address": "0xaf0d9d65fc54de245cda37af3d18cbec860a4d4b", - "symbol": "WUSDR", - "decimals": 9, - "name": "Wrapped USDR", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0xaf0d9d65fc54de245cda37af3d18cbec860a4d4b.png", - "aggregators": ["LiFi", "Rubic", "Rango"], - "occurrences": 3 - }, - "0xb044e4d2b145a8e7832889fc4609f654446c22f9": { - "address": "0xb044e4d2b145a8e7832889fc4609f654446c22f9", - "symbol": "SITY", - "decimals": 18, - "name": "Versity", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0xb044e4d2b145a8e7832889fc4609f654446c22f9.png", - "aggregators": ["LiFi", "Rubic", "Rango"], - "occurrences": 3 - }, - "0xed755dba6ec1eb520076cec051a582a6d81a8253": { - "address": "0xed755dba6ec1eb520076cec051a582a6d81a8253", - "symbol": "CHAMP", - "decimals": 18, - "name": "CHAMP", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0xed755dba6ec1eb520076cec051a582a6d81a8253.png", - "aggregators": ["LiFi", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x433e39ce74aef8f409182541269e417ad9b56011": { - "address": "0x433e39ce74aef8f409182541269e417ad9b56011", - "symbol": "FKRPRO", - "decimals": 18, - "name": "FlickerPro", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x433e39ce74aef8f409182541269e417ad9b56011.png", - "aggregators": ["LiFi", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x70a13201df2364b634cb5aac8d735db3a654b30c": { - "address": "0x70a13201df2364b634cb5aac8d735db3a654b30c", - "symbol": "CHAIN", - "decimals": 18, - "name": "Arch Blockchains(PoS)", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x70a13201df2364b634cb5aac8d735db3a654b30c.png", - "aggregators": ["LiFi", "Socket", "Rubic"], - "occurrences": 3 - }, - "0x521cddc0cba84f14c69c1e99249f781aa73ee0bc": { - "address": "0x521cddc0cba84f14c69c1e99249f781aa73ee0bc", - "symbol": "HH", - "decimals": 18, - "name": "Holyheld (PoS)", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x521cddc0cba84f14c69c1e99249f781aa73ee0bc.png", - "aggregators": ["LiFi", "Rubic", "Rango"], - "occurrences": 3 - }, - "0xadeb98a12b2cdfbdb45cdd2274a369e79a7002e0": { - "address": "0xadeb98a12b2cdfbdb45cdd2274a369e79a7002e0", - "symbol": "QTK", - "decimals": 18, - "name": "QuantCheck", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0xadeb98a12b2cdfbdb45cdd2274a369e79a7002e0.png", - "aggregators": ["LiFi", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x2b3b16826719bf0b494c8ddebaa5e882093ee37e": { - "address": "0x2b3b16826719bf0b494c8ddebaa5e882093ee37e", - "symbol": "FIBO", - "decimals": 18, - "name": "FIBO", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x2b3b16826719bf0b494c8ddebaa5e882093ee37e.png", - "aggregators": ["LiFi", "Rubic", "Rango"], - "occurrences": 3 - }, - "0xcaaf554900e33ae5dbc66ae9f8adc3049b7d31db": { - "address": "0xcaaf554900e33ae5dbc66ae9f8adc3049b7d31db", - "symbol": "LIVERETRO", - "decimals": 18, - "name": "liveRetro", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0xcaaf554900e33ae5dbc66ae9f8adc3049b7d31db.png", - "aggregators": ["LiFi", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x31c91d8fb96bff40955dd2dbc909b36e8b104dde": { - "address": "0x31c91d8fb96bff40955dd2dbc909b36e8b104dde", - "symbol": "POI$ON", - "decimals": 18, - "name": "Poison Finance", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x31c91d8fb96bff40955dd2dbc909b36e8b104dde.png", - "aggregators": ["LiFi", "Rubic", "Sonarwatch"], - "occurrences": 3 - }, - "0xc3cffdaf8f3fdf07da6d5e3a89b8723d5e385ff8": { - "address": "0xc3cffdaf8f3fdf07da6d5e3a89b8723d5e385ff8", - "symbol": "RBC", - "decimals": 18, - "name": "RBC", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0xc3cffdaf8f3fdf07da6d5e3a89b8723d5e385ff8.png", - "aggregators": ["LiFi", "Socket", "Rango"], - "occurrences": 3 - }, - "0x3eb177a6693ec81d1e170136f8ad02fffbe172a7": { - "address": "0x3eb177a6693ec81d1e170136f8ad02fffbe172a7", - "symbol": "AUMI", - "decimals": 18, - "name": "AUMI", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x3eb177a6693ec81d1e170136f8ad02fffbe172a7.png", - "aggregators": ["LiFi", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x2c9d233914f46b88e9ae08326fa60e40ea3faa12": { - "address": "0x2c9d233914f46b88e9ae08326fa60e40ea3faa12", - "symbol": "SPH", - "decimals": 18, - "name": "Spheroid (PoS)", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x2c9d233914f46b88e9ae08326fa60e40ea3faa12.png", - "aggregators": ["LiFi", "Socket", "Rubic"], - "occurrences": 3 - }, - "0xf244e91a46a9cdd48da295ca5d0b27894f8032b1": { - "address": "0xf244e91a46a9cdd48da295ca5d0b27894f8032b1", - "symbol": "UART", - "decimals": 12, - "name": "UART", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0xf244e91a46a9cdd48da295ca5d0b27894f8032b1.png", - "aggregators": ["LiFi", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x8bed972bc5ff0ab8290461cd01f8b58f39fa312f": { - "address": "0x8bed972bc5ff0ab8290461cd01f8b58f39fa312f", - "symbol": "EDUM", - "decimals": 18, - "name": "EDUM(PoS)", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x8bed972bc5ff0ab8290461cd01f8b58f39fa312f.png", - "aggregators": ["LiFi", "Socket", "Rubic"], - "occurrences": 3 - }, - "0x60bb3d364b765c497c8ce50ae0ae3f0882c5bd05": { - "address": "0x60bb3d364b765c497c8ce50ae0ae3f0882c5bd05", - "symbol": "IMX", - "decimals": 18, - "name": "IMX", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x60bb3d364b765c497c8ce50ae0ae3f0882c5bd05.png", - "aggregators": ["LiFi", "Socket", "Rango"], - "occurrences": 3 - }, - "0x3a29cab2e124919d14a6f735b6033a3aad2b260f": { - "address": "0x3a29cab2e124919d14a6f735b6033a3aad2b260f", - "symbol": "ORETRO", - "decimals": 18, - "name": "Option to buy RETRO", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x3a29cab2e124919d14a6f735b6033a3aad2b260f.png", - "aggregators": ["LiFi", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x5f1657896b38c4761dbc5484473c7a7c845910b6": { - "address": "0x5f1657896b38c4761dbc5484473c7a7c845910b6", - "symbol": "PSWAMP", - "decimals": 18, - "name": "PSWAMP", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x5f1657896b38c4761dbc5484473c7a7c845910b6.png", - "aggregators": ["LiFi", "Rubic", "Rango"], - "occurrences": 3 - }, - "0xfd39c9bb69cc3bd57959284acf855ae65d06f8cf": { - "address": "0xfd39c9bb69cc3bd57959284acf855ae65d06f8cf", - "symbol": "TRUTRU", - "decimals": 18, - "name": "Truebit (PoS)", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0xfd39c9bb69cc3bd57959284acf855ae65d06f8cf.png", - "aggregators": ["LiFi", "Socket", "Rubic"], - "occurrences": 3 - }, - "0x767058f11800fba6a682e73a6e79ec5eb74fac8c": { - "address": "0x767058f11800fba6a682e73a6e79ec5eb74fac8c", - "symbol": "JGBP", - "decimals": 18, - "name": "Jarvis Synthetic British Pound", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x767058f11800fba6a682e73a6e79ec5eb74fac8c.png", - "aggregators": ["LiFi", "Rubic", "Rango"], - "occurrences": 3 - }, - "0xfad65eb62a97ff5ed91b23afd039956aaca6e93b": { - "address": "0xfad65eb62a97ff5ed91b23afd039956aaca6e93b", - "symbol": "HT", - "decimals": 18, - "name": "HuobiToken (PoS)", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0xfad65eb62a97ff5ed91b23afd039956aaca6e93b.png", - "aggregators": ["LiFi", "Socket", "Rango"], - "occurrences": 3 - }, - "0x18fb181ee70c20c68a7e7905e52830bf8b47c25d": { - "address": "0x18fb181ee70c20c68a7e7905e52830bf8b47c25d", - "symbol": "SDAI", - "decimals": 18, - "name": "Savings Dai (PoS)", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x18fb181ee70c20c68a7e7905e52830bf8b47c25d.png", - "aggregators": ["LiFi", "Socket", "Rango"], - "occurrences": 3 - }, - "0xe8b9c5c5561727d248aac2a3207219bbae25a16c": { - "address": "0xe8b9c5c5561727d248aac2a3207219bbae25a16c", - "symbol": "SHC2.0", - "decimals": 18, - "name": "Show Plus Chain", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0xe8b9c5c5561727d248aac2a3207219bbae25a16c.png", - "aggregators": ["LiFi", "Rubic", "Sonarwatch"], - "occurrences": 3 - }, - "0x291aa47c58558adfc2bcd6f060578fdae1f6570c": { - "address": "0x291aa47c58558adfc2bcd6f060578fdae1f6570c", - "symbol": "MBASE", - "decimals": 18, - "name": "Minebase", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x291aa47c58558adfc2bcd6f060578fdae1f6570c.png", - "aggregators": ["LiFi", "Rubic", "Sonarwatch"], - "occurrences": 3 - }, - "0x7238390d5f6f64e67c3211c343a410e2a3dec142": { - "address": "0x7238390d5f6f64e67c3211c343a410e2a3dec142", - "symbol": "PEARL", - "decimals": 18, - "name": "Pearl", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x7238390d5f6f64e67c3211c343a410e2a3dec142.png", - "aggregators": ["LiFi", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x74ccbe53f77b08632ce0cb91d3a545bf6b8e0979": { - "address": "0x74ccbe53f77b08632ce0cb91d3a545bf6b8e0979", - "symbol": "FBOMB", - "decimals": 18, - "name": "Fantom Bomb", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x74ccbe53f77b08632ce0cb91d3a545bf6b8e0979.png", - "aggregators": ["LiFi", "Rubic", "Rango"], - "occurrences": 3 - }, - "0xc27158bb8e08899d38765752f91d7d778e16ab8e": { - "address": "0xc27158bb8e08899d38765752f91d7d778e16ab8e", - "symbol": "KAP", - "decimals": 18, - "name": "KAP Games", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0xc27158bb8e08899d38765752f91d7d778e16ab8e.png", - "aggregators": ["Rubic", "Rango", "Sonarwatch"], - "occurrences": 3 - }, - "0x77a6f2e9a9e44fd5d5c3f9be9e52831fc1c3c0a0": { - "address": "0x77a6f2e9a9e44fd5d5c3f9be9e52831fc1c3c0a0", - "symbol": "W$C", - "decimals": 18, - "name": "World$tateCoin", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x77a6f2e9a9e44fd5d5c3f9be9e52831fc1c3c0a0.png", - "aggregators": ["Rubic", "Rango", "Sonarwatch"], - "occurrences": 3 - } - }, - "timestamp": 1779126362436 - }, - "0x8f": { - "data": { - "0x754704bc059f8c67012fed69bc8a327a5aafb603": { - "address": "0x754704bc059f8c67012fed69bc8a327a5aafb603", - "symbol": "USDC", - "decimals": 6, - "name": "USDC", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/143/0x754704bc059f8c67012fed69bc8a327a5aafb603.png", - "aggregators": ["Metamask", "LiFi", "Squid"], - "occurrences": 3 - }, - "0xe7cd86e13ac4309349f30b3435a9d337750fc82d": { - "address": "0xe7cd86e13ac4309349f30b3435a9d337750fc82d", - "symbol": "USDT0", - "decimals": 6, - "name": "USDT0", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/143/0xe7cd86e13ac4309349f30b3435a9d337750fc82d.png", - "aggregators": ["Metamask", "LiFi", "Squid"], - "occurrences": 3 - }, - "0xee8c0e9f1bffb4eb878d8f15f368a02a35481242": { - "address": "0xee8c0e9f1bffb4eb878d8f15f368a02a35481242", - "symbol": "WETH", - "decimals": 18, - "name": "Wrapped Ether", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/143/0xee8c0e9f1bffb4eb878d8f15f368a02a35481242.png", - "aggregators": ["Metamask", "LiFi", "Squid"], - "occurrences": 3 - }, - "0x3bd359c1119da7da1d913d1c4d2b7c461115433a": { - "address": "0x3bd359c1119da7da1d913d1c4d2b7c461115433a", - "symbol": "WMON", - "decimals": 18, - "name": "Wrapped MON", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/143/0x3bd359c1119da7da1d913d1c4d2b7c461115433a.png", - "aggregators": ["Metamask", "LiFi", "Squid"], - "occurrences": 3 - }, - "0xa3227c5969757783154c60bf0bc1944180ed81b9": { - "address": "0xa3227c5969757783154c60bf0bc1944180ed81b9", - "symbol": "SMON", - "decimals": 18, - "name": "Kintsu Staked Monad", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/143/0xa3227c5969757783154c60bf0bc1944180ed81b9.png", - "aggregators": ["Metamask", "LiFi"], - "occurrences": 2 - }, - "0x1b68626dca36c7fe922fd2d55e4f631d962de19c": { - "address": "0x1b68626dca36c7fe922fd2d55e4f631d962de19c", - "symbol": "SHMON", - "decimals": 18, - "name": "ShMonad", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/143/0x1b68626dca36c7fe922fd2d55e4f631d962de19c.png", - "aggregators": ["Metamask", "LiFi", "Squid"], - "occurrences": 3 - }, - "0x00000000efe302beaa2b3e6e1b18d08d69a9012a": { - "address": "0x00000000efe302beaa2b3e6e1b18d08d69a9012a", - "symbol": "AUSD", - "decimals": 6, - "name": "AUSD", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/143/0x00000000efe302beaa2b3e6e1b18d08d69a9012a.png", - "aggregators": ["Metamask", "LiFi", "Squid"], - "occurrences": 3 - }, - "0x4917a5ec9fcb5e10f47cbb197abe6ab63be81fe8": { - "address": "0x4917a5ec9fcb5e10f47cbb197abe6ab63be81fe8", - "symbol": "AZND", - "decimals": 18, - "name": "Asian Dollar", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/143/0x4917a5ec9fcb5e10f47cbb197abe6ab63be81fe8.png", - "aggregators": ["Metamask", "LiFi"], - "occurrences": 2 - }, - "0xb0f70c0bd6fd87dbeb7c10dc692a2a6106817072": { - "address": "0xb0f70c0bd6fd87dbeb7c10dc692a2a6106817072", - "symbol": "BTC.B", - "decimals": 8, - "name": "Bitcoin", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/143/0xb0f70c0bd6fd87dbeb7c10dc692a2a6106817072.png", - "aggregators": ["Metamask", "LiFi"], - "occurrences": 2 - }, - "0xf59d81cd43f620e722e07f9cb3f6e41b031017a3": { - "address": "0xf59d81cd43f620e722e07f9cb3f6e41b031017a3", - "symbol": "CAKE", - "decimals": 18, - "name": "PancakeSwap Token", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/143/0xf59d81cd43f620e722e07f9cb3f6e41b031017a3.png", - "aggregators": ["MonadTeam", "LiFi"], - "occurrences": 2 - }, - "0xad96c3dffcd6374294e2573a7fbba96097cc8d7c": { - "address": "0xad96c3dffcd6374294e2573a7fbba96097cc8d7c", - "symbol": "DUST", - "decimals": 18, - "name": "Pixie Dust", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/143/0xad96c3dffcd6374294e2573a7fbba96097cc8d7c.png", - "aggregators": ["CoinGecko", "Squid"], - "occurrences": 2 - }, - "0xff7f8f301f7a706e3cfd3d2275f5dc0b9ee8009b": { - "address": "0xff7f8f301f7a706e3cfd3d2275f5dc0b9ee8009b", - "symbol": "FOLKS", - "decimals": 6, - "name": "Folks Finance", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/143/0xff7f8f301f7a706e3cfd3d2275f5dc0b9ee8009b.png", - "aggregators": ["Metamask", "LiFi"], - "occurrences": 2 - }, - "0xce6170ea245dc8d1f275a710a062b70f125f0110": { - "address": "0xce6170ea245dc8d1f275a710a062b70f125f0110", - "symbol": "FXRP", - "decimals": 6, - "name": "FXRP", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/143/0xce6170ea245dc8d1f275a710a062b70f125f0110.png", - "aggregators": ["MonadTeam", "LiFi"], - "occurrences": 2 - }, - "0xecac9c5f704e954931349da37f60e39f515c11c1": { - "address": "0xecac9c5f704e954931349da37f60e39f515c11c1", - "symbol": "LBTC", - "decimals": 8, - "name": "Lombard Staked Bitcoin", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/143/0xecac9c5f704e954931349da37f60e39f515c11c1.png", - "aggregators": ["Metamask", "LiFi"], - "occurrences": 2 - }, - "0xea17e5a9efebf1477db45082d67010e2245217f1": { - "address": "0xea17e5a9efebf1477db45082d67010e2245217f1", - "symbol": "SOL", - "decimals": 9, - "name": "Wrapped SOL", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/143/0xea17e5a9efebf1477db45082d67010e2245217f1.png", - "aggregators": ["Metamask", "LiFi"], - "occurrences": 2 - }, - "0x111111d2bf19e43c34263401e0cad979ed1cdb61": { - "address": "0x111111d2bf19e43c34263401e0cad979ed1cdb61", - "symbol": "USD1", - "decimals": 6, - "name": "USD1", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/143/0x111111d2bf19e43c34263401e0cad979ed1cdb61.png", - "aggregators": ["Metamask", "LiFi"], - "occurrences": 2 - }, - "0x0555e30da8f98308edb960aa94c0db47230d2b9c": { - "address": "0x0555e30da8f98308edb960aa94c0db47230d2b9c", - "symbol": "WBTC", - "decimals": 8, - "name": "Wrapped BTC", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/143/0x0555e30da8f98308edb960aa94c0db47230d2b9c.png", - "aggregators": ["Metamask", "LiFi"], - "occurrences": 2 - }, - "0x01bff41798a0bcf287b996046ca68b395dbc1071": { - "address": "0x01bff41798a0bcf287b996046ca68b395dbc1071", - "symbol": "XAUT0", - "decimals": 6, - "name": "XAUt0", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/143/0x01bff41798a0bcf287b996046ca68b395dbc1071.png", - "aggregators": ["Metamask", "LiFi"], - "occurrences": 2 - }, - "0x0c65a0bc65a5d819235b71f554d210d3f80e0852": { - "address": "0x0c65a0bc65a5d819235b71f554d210d3f80e0852", - "symbol": "APRMON", - "decimals": 18, - "name": "aPriori Monad LST", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/143/0x0c65a0bc65a5d819235b71f554d210d3f80e0852.png", - "aggregators": ["CoinGecko", "LiFi"], - "occurrences": 2 - }, - "0x103222f020e98bba0ad9809a011fdf8e6f067496": { - "address": "0x103222f020e98bba0ad9809a011fdf8e6f067496", - "symbol": "EARNAUSD", - "decimals": 6, - "name": "earnAUSD", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/143/0x103222f020e98bba0ad9809a011fdf8e6f067496.png", - "aggregators": ["CoinGecko", "LiFi"], - "occurrences": 2 - }, - "0x8498312a6b3cbd158bf0c93abdcf29e6e4f55081": { - "address": "0x8498312a6b3cbd158bf0c93abdcf29e6e4f55081", - "symbol": "GMON", - "decimals": 18, - "name": "gMON", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/143/0x8498312a6b3cbd158bf0c93abdcf29e6e4f55081.png", - "aggregators": ["Metamask", "LiFi"], - "occurrences": 2 - }, - "0x9c82eb49b51f7dc61e22ff347931ca32adc6cd90": { - "address": "0x9c82eb49b51f7dc61e22ff347931ca32adc6cd90", - "symbol": "LOAZND", - "decimals": 18, - "name": "Locked AZND", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/143/0x9c82eb49b51f7dc61e22ff347931ca32adc6cd90.png", - "aggregators": ["CoinGecko", "LiFi"], - "occurrences": 2 - }, - "0xf7cf282ec810fded974f99c0163e792f432892bc": { - "address": "0xf7cf282ec810fded974f99c0163e792f432892bc", - "symbol": "MHYPERBTC", - "decimals": 18, - "name": "Midas Hyperithm BTC", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/143/0xf7cf282ec810fded974f99c0163e792f432892bc.png", - "aggregators": ["CoinGecko", "LiFi"], - "occurrences": 2 - }, - "0x1d4795a4670033f47f572b910553be0295077b51": { - "address": "0x1d4795a4670033f47f572b910553be0295077b51", - "symbol": "MCMON", - "decimals": 18, - "name": "mcMON", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/143/0x1d4795a4670033f47f572b910553be0295077b51.png", - "aggregators": ["Metamask", "LiFi"], - "occurrences": 2 - }, - "0x336d414754967c6682b5a665c7daf6f1409e63e8": { - "address": "0x336d414754967c6682b5a665c7daf6f1409e63e8", - "symbol": "MUBOND", - "decimals": 18, - "name": "mu Bond", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/143/0x336d414754967c6682b5a665c7daf6f1409e63e8.png", - "aggregators": ["Metamask", "LiFi"], - "occurrences": 2 - }, - "0xd793c04b87386a6bb84ee61d98e0065fde7fda5e": { - "address": "0xd793c04b87386a6bb84ee61d98e0065fde7fda5e", - "symbol": "SAUSD", - "decimals": 6, - "name": "sAUSD", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/143/0xd793c04b87386a6bb84ee61d98e0065fde7fda5e.png", - "aggregators": ["MonadTeam"], - "occurrences": 1 - }, - "0xa3d68b74bf0528fdd07263c60d6488749044914b": { - "address": "0xa3d68b74bf0528fdd07263c60d6488749044914b", - "symbol": "WEETH", - "decimals": 18, - "name": "Wrapped eETH", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/143/0xa3d68b74bf0528fdd07263c60d6488749044914b.png", - "aggregators": ["CoinGecko", "LiFi"], - "occurrences": 2 - }, - "0x10aeaf63194db8d453d4d85a06e5efe1dd0b5417": { - "address": "0x10aeaf63194db8d453d4d85a06e5efe1dd0b5417", - "symbol": "WSTETH", - "decimals": 18, - "name": "Wrapped liquid staked Ether 2.0", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/143/0x10aeaf63194db8d453d4d85a06e5efe1dd0b5417.png", - "aggregators": ["Metamask", "LiFi"], - "occurrences": 2 - }, - "0x350035555e10d9afaf1566aaebfced5ba6c27777": { - "address": "0x350035555e10d9afaf1566aaebfced5ba6c27777", - "symbol": "CHOG", - "decimals": 18, - "name": "Chog", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/143/0x350035555e10d9afaf1566aaebfced5ba6c27777.png", - "aggregators": ["CoinGecko", "LiFi"], - "occurrences": 2 - }, - "0x97401d48a80b15bc7291599e24b590eedcd7ce37": { - "address": "0x97401d48a80b15bc7291599e24b590eedcd7ce37", - "symbol": "HST", - "decimals": 18, - "name": "HYPERSTITIONS", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/143/0x97401d48a80b15bc7291599e24b590eedcd7ce37.png", - "aggregators": ["CoinGecko", "LiFi"], - "occurrences": 2 - }, - "0x1f80c65cc2c37af84abbe1ea03183a624a6f8888": { - "address": "0x1f80c65cc2c37af84abbe1ea03183a624a6f8888", - "symbol": "GMONAD", - "decimals": 18, - "name": "Gmonad", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/143/0x1f80c65cc2c37af84abbe1ea03183a624a6f8888.png", - "aggregators": ["CoinGecko", "Squid"], - "occurrences": 2 - }, - "0x1ad7052bb331a0529c1981c3ec2bc4663498a110": { - "address": "0x1ad7052bb331a0529c1981c3ec2bc4663498a110", - "symbol": "ALLOCA", - "decimals": 18, - "name": "ALLOCA", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/143/0x1ad7052bb331a0529c1981c3ec2bc4663498a110.png", - "aggregators": ["CoinGecko", "Squid"], - "occurrences": 2 - }, - "0xd32e9ddd968b18e8429f2d1da7efb2cc1f01d42d": { - "address": "0xd32e9ddd968b18e8429f2d1da7efb2cc1f01d42d", - "symbol": "MOLANDAK", - "decimals": 18, - "name": "MOLANDAK", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/143/0xd32e9ddd968b18e8429f2d1da7efb2cc1f01d42d.png", - "aggregators": ["CoinGecko", "Squid"], - "occurrences": 2 - }, - "0xd33f18d8d48cbbb2f8b47063de97f94de0d49b99": { - "address": "0xd33f18d8d48cbbb2f8b47063de97f94de0d49b99", - "symbol": "NXPC", - "decimals": 18, - "name": "NXPC", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/143/0xd33f18d8d48cbbb2f8b47063de97f94de0d49b99.png", - "aggregators": ["Metamask", "LiFi"], - "occurrences": 2 - }, - "0xae4efbc7736f963982aacb17efa37fcbab924cb3": { - "address": "0xae4efbc7736f963982aacb17efa37fcbab924cb3", - "symbol": "SOLVBTC", - "decimals": 18, - "name": "Solv BTC", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/143/0xae4efbc7736f963982aacb17efa37fcbab924cb3.png", - "aggregators": ["CoinGecko", "LiFi"], - "occurrences": 2 - }, - "0xd18b7ec58cdf4876f6afebd3ed1730e4ce10414b": { - "address": "0xd18b7ec58cdf4876f6afebd3ed1730e4ce10414b", - "symbol": "CBBTC", - "decimals": 8, - "name": "Coinbase Wrapped BTC", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/143/0xd18b7ec58cdf4876f6afebd3ed1730e4ce10414b.png", - "aggregators": ["CoinGecko", "LiFi"], - "occurrences": 2 - }, - "0x1c8ee940b654bfced403f2a44c1603d5be0f50fa": { - "address": "0x1c8ee940b654bfced403f2a44c1603d5be0f50fa", - "symbol": "MEDGE", - "decimals": 18, - "name": "Midas mEDGE", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/143/0x1c8ee940b654bfced403f2a44c1603d5be0f50fa.png", - "aggregators": ["CoinGecko"], - "occurrences": 1 - }, - "0xfdd22ce6d1f66bc0ec89b20bf16ccb6670f55a5a": { - "address": "0xfdd22ce6d1f66bc0ec89b20bf16ccb6670f55a5a", - "symbol": "THBILL", - "decimals": 6, - "name": "thBILL", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/143/0xfdd22ce6d1f66bc0ec89b20bf16ccb6670f55a5a.png", - "aggregators": ["MonadTeam", "LiFi"], - "occurrences": 2 - }, - "0x4809010926aec940b550d34a46a52739f996d75d": { - "address": "0x4809010926aec940b550d34a46a52739f996d75d", - "symbol": "WSRUSD", - "decimals": 18, - "name": "Wrapped Savings rUSD", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/143/0x4809010926aec940b550d34a46a52739f996d75d.png", - "aggregators": ["MonadTeam", "LiFi"], - "occurrences": 2 - }, - "0xc99f5c922dae05b6e2ff83463ce705ef7c91f077": { - "address": "0xc99f5c922dae05b6e2ff83463ce705ef7c91f077", - "symbol": "XSOLVBTC", - "decimals": 18, - "name": "Solv Protocol Staked BTC", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/143/0xc99f5c922dae05b6e2ff83463ce705ef7c91f077.png", - "aggregators": ["CoinGecko"], - "occurrences": 1 - }, - "0xdef72af3fc69e1dd5a094f7dda08ba203cd0438b": { - "address": "0xdef72af3fc69e1dd5a094f7dda08ba203cd0438b", - "symbol": "EUL", - "decimals": 18, - "name": "Euler", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/143/0xdef72af3fc69e1dd5a094f7dda08ba203cd0438b.png", - "aggregators": ["MonadTeam", "LiFi"], - "occurrences": 2 - }, - "0x3fea1cb36d2c5523c062d0e060eac253608b4daf": { - "address": "0x3fea1cb36d2c5523c062d0e060eac253608b4daf", - "symbol": "FUSDLP", - "decimals": 18, - "name": "FinChain Dollar LP", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/143/0x3fea1cb36d2c5523c062d0e060eac253608b4daf.png", - "aggregators": ["MonadTeam"], - "occurrences": 1 - }, - "0x39bb4e0a204412bb98e821d25e7d955e69d40fd1": { - "address": "0x39bb4e0a204412bb98e821d25e7d955e69d40fd1", - "symbol": "GBPM", - "decimals": 18, - "name": "Mento British Pound", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/143/0x39bb4e0a204412bb98e821d25e7d955e69d40fd1.png", - "aggregators": ["MonadTeam"], - "occurrences": 1 - }, - "0x18bc5bcc660cf2b9ce3cd51a404afe1a0cbd3c22": { - "address": "0x18bc5bcc660cf2b9ce3cd51a404afe1a0cbd3c22", - "symbol": "IDRX", - "decimals": 2, - "name": "IDRX", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/143/0x18bc5bcc660cf2b9ce3cd51a404afe1a0cbd3c22.png", - "aggregators": ["MonadTeam"], - "occurrences": 1 - }, - "0x1001ff13bf368aa4fa85f21043648079f00e1001": { - "address": "0x1001ff13bf368aa4fa85f21043648079f00e1001", - "symbol": "LV", - "decimals": 18, - "name": "LeverUp", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/143/0x1001ff13bf368aa4fa85f21043648079f00e1001.png", - "aggregators": ["MonadTeam"], - "occurrences": 1 - }, - "0x91b81bfbe3a747230f0529aa28d8b2bc898e6d56": { - "address": "0x91b81bfbe3a747230f0529aa28d8b2bc898e6d56", - "symbol": "LVMON", - "decimals": 18, - "name": "LeverUp MON", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/143/0x91b81bfbe3a747230f0529aa28d8b2bc898e6d56.png", - "aggregators": ["Metamask"], - "occurrences": 1 - }, - "0xfd44b35139ae53fff7d8f2a9869c503d987f00d1": { - "address": "0xfd44b35139ae53fff7d8f2a9869c503d987f00d1", - "symbol": "LVUSD", - "decimals": 18, - "name": "LeverUp USD", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/143/0xfd44b35139ae53fff7d8f2a9869c503d987f00d1.png", - "aggregators": ["Metamask"], - "occurrences": 1 - }, - "0x04f8c38ae80bcf690b947f60f62bda18145c3d67": { - "address": "0x04f8c38ae80bcf690b947f60f62bda18145c3d67", - "symbol": "MVT", - "decimals": 18, - "name": "Monad Vault", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/143/0x04f8c38ae80bcf690b947f60f62bda18145c3d67.png", - "aggregators": ["Metamask"], - "occurrences": 1 - }, - "0x1808d4aa4d4a7cf66bb6515bf126edefa2b018c1": { - "address": "0x1808d4aa4d4a7cf66bb6515bf126edefa2b018c1", - "symbol": "USD*", - "decimals": 6, - "name": "USD Star", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/143/0x1808d4aa4d4a7cf66bb6515bf126edefa2b018c1.png", - "aggregators": ["MonadTeam"], - "occurrences": 1 - }, - "0xbc69212b8e4d445b2307c9d32dd68e2a4df00115": { - "address": "0xbc69212b8e4d445b2307c9d32dd68e2a4df00115", - "symbol": "USDM", - "decimals": 18, - "name": "Mento Dollar", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/143/0xbc69212b8e4d445b2307c9d32dd68e2a4df00115.png", - "aggregators": ["MonadTeam"], - "occurrences": 1 - }, - "0x3a2c4aaae6776dc1c31316de559598f2f952e2cb": { - "address": "0x3a2c4aaae6776dc1c31316de559598f2f952e2cb", - "symbol": "YZM", - "decimals": 6, - "name": "Yuzu Money Vault", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/143/0x3a2c4aaae6776dc1c31316de559598f2f952e2cb.png", - "aggregators": ["MonadTeam"], - "occurrences": 1 - }, - "0x7cd231120a60f500887444a9baf5e1bd753a5e59": { - "address": "0x7cd231120a60f500887444a9baf5e1bd753a5e59", - "symbol": "AHYPER", - "decimals": 6, - "name": "Hyperithm Delta Neutral Vault", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/143/0x7cd231120a60f500887444a9baf5e1bd753a5e59.png", - "aggregators": ["MonadTeam"], - "occurrences": 1 - }, - "0xd691b0afed67f96cec28ab6308cbe5b2c103b7e9": { - "address": "0xd691b0afed67f96cec28ab6308cbe5b2c103b7e9", - "symbol": "EBTC", - "decimals": 10, - "name": "eBTC", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/143/0xd691b0afed67f96cec28ab6308cbe5b2c103b7e9.png", - "aggregators": ["CoinGecko"], - "occurrences": 1 - }, - "0x8fa1365f6e39b7404737721a356b1d4a7b11ca7d": { - "address": "0x8fa1365f6e39b7404737721a356b1d4a7b11ca7d", - "symbol": "EARNMON", - "decimals": 18, - "name": "earnMON", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/143/0x8fa1365f6e39b7404737721a356b1d4a7b11ca7d.png", - "aggregators": ["MonadTeam"], - "occurrences": 1 - }, - "0xd7acb868f97f8286d5d3a0fd5ef112a8a72ecd90": { - "address": "0xd7acb868f97f8286d5d3a0fd5ef112a8a72ecd90", - "symbol": "ENZOBTC", - "decimals": 8, - "name": "Lorenzo Wrapped Bitcoin", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/143/0xd7acb868f97f8286d5d3a0fd5ef112a8a72ecd90.png", - "aggregators": ["MonadTeam"], - "occurrences": 1 - }, - "0x2416092f143378750bb29b79ed961ab195cceea5": { - "address": "0x2416092f143378750bb29b79ed961ab195cceea5", - "symbol": "EZETH", - "decimals": 18, - "name": "Renzo Restaked ETH", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/143/0x2416092f143378750bb29b79ed961ab195cceea5.png", - "aggregators": ["MonadTeam"], - "occurrences": 1 - }, - "0xd90f6bfed23ffde40106fc4498dd2e9edb95e4e7": { - "address": "0xd90f6bfed23ffde40106fc4498dd2e9edb95e4e7", - "symbol": "MHYPER", - "decimals": 18, - "name": "Midas mHYPER", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/143/0xd90f6bfed23ffde40106fc4498dd2e9edb95e4e7.png", - "aggregators": ["CoinGecko"], - "occurrences": 1 - }, - "0x37d6382b6889ccef8d6871a8b60e667115eddbcf": { - "address": "0x37d6382b6889ccef8d6871a8b60e667115eddbcf", - "symbol": "PUFETH", - "decimals": 18, - "name": "pufETH", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/143/0x37d6382b6889ccef8d6871a8b60e667115eddbcf.png", - "aggregators": ["Metamask"], - "occurrences": 1 - }, - "0xc50f2e735edd9dcd8ccd41ecfe9894e679e3195f": { - "address": "0xc50f2e735edd9dcd8ccd41ecfe9894e679e3195f", - "symbol": "RETH", - "decimals": 18, - "name": "Rocket Pool ETH", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/143/0xc50f2e735edd9dcd8ccd41ecfe9894e679e3195f.png", - "aggregators": ["MonadTeam"], - "occurrences": 1 - }, - "0x9648db94f1e6b19e7d755585542981f97dc806c6": { - "address": "0x9648db94f1e6b19e7d755585542981f97dc806c6", - "symbol": "SAVUSD", - "decimals": 18, - "name": "Staked avUSD", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/143/0x9648db94f1e6b19e7d755585542981f97dc806c6.png", - "aggregators": ["MonadTeam"], - "occurrences": 1 - }, - "0xe85411c030fb32a9d8b14bbbc6cb19417391f711": { - "address": "0xe85411c030fb32a9d8b14bbbc6cb19417391f711", - "symbol": "SUBTC", - "decimals": 18, - "name": "Sumerian BTC", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/143/0xe85411c030fb32a9d8b14bbbc6cb19417391f711.png", - "aggregators": ["Metamask"], - "occurrences": 1 - }, - "0x1c22531aa9747d76fff8f0a43b37954ca67d28e0": { - "address": "0x1c22531aa9747d76fff8f0a43b37954ca67d28e0", - "symbol": "SUETH", - "decimals": 18, - "name": "Sumerian ETH", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/143/0x1c22531aa9747d76fff8f0a43b37954ca67d28e0.png", - "aggregators": ["Metamask"], - "occurrences": 1 - }, - "0x8bf591eae535f93a242d5a954d3cde648b48a5a8": { - "address": "0x8bf591eae535f93a242d5a954d3cde648b48a5a8", - "symbol": "SUUSD", - "decimals": 18, - "name": "Sumerian USD", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/143/0x8bf591eae535f93a242d5a954d3cde648b48a5a8.png", - "aggregators": ["Metamask"], - "occurrences": 1 - }, - "0x484be0540ad49f351eaa04eeb35df0f937d4e73f": { - "address": "0x484be0540ad49f351eaa04eeb35df0f937d4e73f", - "symbol": "SYZUSD", - "decimals": 18, - "name": "Staked Yuzu USD", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/143/0x484be0540ad49f351eaa04eeb35df0f937d4e73f.png", - "aggregators": ["MonadTeam"], - "occurrences": 1 - }, - "0x8d3f9f9eb2f5e8b48efbb4074440d1e2a34bc365": { - "address": "0x8d3f9f9eb2f5e8b48efbb4074440d1e2a34bc365", - "symbol": "VUSD", - "decimals": 6, - "name": "RWA Backed Lending by Valos", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/143/0x8d3f9f9eb2f5e8b48efbb4074440d1e2a34bc365.png", - "aggregators": ["MonadTeam"], - "occurrences": 1 - }, - "0xb37476cb1f6111cc682b107b747b8652f90b0984": { - "address": "0xb37476cb1f6111cc682b107b747b8652f90b0984", - "symbol": "YZPP", - "decimals": 18, - "name": "Yuzu Protection Pool", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/143/0xb37476cb1f6111cc682b107b747b8652f90b0984.png", - "aggregators": ["MonadTeam"], - "occurrences": 1 - }, - "0x9dcb0d17edde04d27f387c89fecb78654c373858": { - "address": "0x9dcb0d17edde04d27f387c89fecb78654c373858", - "symbol": "YZUSD", - "decimals": 18, - "name": "Yuzu USD", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/143/0x9dcb0d17edde04d27f387c89fecb78654c373858.png", - "aggregators": ["MonadTeam"], - "occurrences": 1 - }, - "0x25ac11cb986ca6910501803af5b4e41cf3ad9999": { - "address": "0x25ac11cb986ca6910501803af5b4e41cf3ad9999", - "symbol": "MONADP", - "decimals": 9, - "name": "MonadPrinter", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/143/0x25ac11cb986ca6910501803af5b4e41cf3ad9999.png", - "aggregators": ["CoinGecko"], - "occurrences": 1 - }, - "0x21e325b059cd83d4037c82f0f5998ba2df3d7777": { - "address": "0x21e325b059cd83d4037c82f0f5998ba2df3d7777", - "symbol": "BOB", - "decimals": 18, - "name": "Bob", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/143/0x21e325b059cd83d4037c82f0f5998ba2df3d7777.png", - "aggregators": ["CoinGecko"], - "occurrences": 1 - }, - "0x39b9e06f226ff6d7500c870b82333aacbd2f7777": { - "address": "0x39b9e06f226ff6d7500c870b82333aacbd2f7777", - "symbol": "NADS", - "decimals": 18, - "name": "NADS", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/143/0x39b9e06f226ff6d7500c870b82333aacbd2f7777.png", - "aggregators": ["CoinGecko"], - "occurrences": 1 - }, - "0x4e8aaecce10ad9394e96fe5f2bd4e587a7b04298": { - "address": "0x4e8aaecce10ad9394e96fe5f2bd4e587a7b04298", - "symbol": "WNUSDT0", - "decimals": 6, - "name": "Wrapped Neverland USDT0", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/143/0x4e8aaecce10ad9394e96fe5f2bd4e587a7b04298.png", - "aggregators": ["CoinGecko"], - "occurrences": 1 - }, - "0x65ea4cdaf74537202bfb1124131e1c68f9512d1b": { - "address": "0x65ea4cdaf74537202bfb1124131e1c68f9512d1b", - "symbol": "SAL", - "decimals": 18, - "name": "Salmonad", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/143/0x65ea4cdaf74537202bfb1124131e1c68f9512d1b.png", - "aggregators": ["CoinGecko"], - "occurrences": 1 - }, - "0xc9ea90692757831d98ac629f2a0140e02b80a7da": { - "address": "0xc9ea90692757831d98ac629f2a0140e02b80a7da", - "symbol": "YZPRIME", - "decimals": 18, - "name": "Yuzu Prime", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/143/0xc9ea90692757831d98ac629f2a0140e02b80a7da.png", - "aggregators": ["CoinGecko"], - "occurrences": 1 - }, - "0xdb39a9d4a1f1b4e93a5684d602207628ad60613c": { - "address": "0xdb39a9d4a1f1b4e93a5684d602207628ad60613c", - "symbol": "wnWMON", - "decimals": 18, - "name": "Wrapped Neverland WMON", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/143/0xdb39a9d4a1f1b4e93a5684d602207628ad60613c.png", - "aggregators": ["Dynamic"], - "occurrences": 1 - }, - "0x228c673cae7aad0f4d9f309616d6b546356b7777": { - "address": "0x228c673cae7aad0f4d9f309616d6b546356b7777", - "symbol": "BC", - "decimals": 18, - "name": "Black Currency", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/143/0x228c673cae7aad0f4d9f309616d6b546356b7777.png", - "aggregators": ["CoinGecko"], - "occurrences": 1 - }, - "0x82c370ba90e38ef6acd8b1b078d34fd86fc6bac9": { - "address": "0x82c370ba90e38ef6acd8b1b078d34fd86fc6bac9", - "symbol": "WNAUSD", - "decimals": 6, - "name": "Wrapped Neverland AUSD", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/143/0x82c370ba90e38ef6acd8b1b078d34fd86fc6bac9.png", - "aggregators": ["CoinGecko"], - "occurrences": 1 - }, - "0x3ff60900b70db8d0bde4d4819f028673718c5d1b": { - "address": "0x3ff60900b70db8d0bde4d4819f028673718c5d1b", - "symbol": "GMONAD", - "decimals": 18, - "name": "GMONAD", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/143/0x3ff60900b70db8d0bde4d4819f028673718c5d1b.png", - "aggregators": ["CoinGecko"], - "occurrences": 1 - }, - "0x81a224f8a62f52bde942dbf23a56df77a10b7777": { - "address": "0x81a224f8a62f52bde942dbf23a56df77a10b7777", - "symbol": "emo", - "decimals": 18, - "name": "emonad", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/143/0x81a224f8a62f52bde942dbf23a56df77a10b7777.png", - "aggregators": ["Dynamic"], - "occurrences": 1 - }, - "0xc88cacd6fe1838c8dd1f0244b6cc0dee910dd261": { - "address": "0xc88cacd6fe1838c8dd1f0244b6cc0dee910dd261", - "symbol": "AETHON", - "decimals": 18, - "name": "AethonSwap", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/143/0xc88cacd6fe1838c8dd1f0244b6cc0dee910dd261.png", - "aggregators": ["CoinGecko"], - "occurrences": 1 - }, - "0xd786f7569c39a9f64e6a54eb77db21364e90f279": { - "address": "0xd786f7569c39a9f64e6a54eb77db21364e90f279", - "symbol": "WNLOAZND", - "decimals": 18, - "name": "Wrapped Neverland loAZND", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/143/0xd786f7569c39a9f64e6a54eb77db21364e90f279.png", - "aggregators": ["CoinGecko"], - "occurrences": 1 - }, - "0x8d5c2df3eef09088fcccf3376d8ecd0dd505f642": { - "address": "0x8d5c2df3eef09088fcccf3376d8ecd0dd505f642", - "symbol": "WNUSDC", - "decimals": 6, - "name": "Wrapped Neverland USDC", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/143/0x8d5c2df3eef09088fcccf3376d8ecd0dd505f642.png", - "aggregators": ["CoinGecko"], - "occurrences": 1 - }, - "0x1111b3ded9f1fe1801ad4ebef8e2788183a24111": { - "address": "0x1111b3ded9f1fe1801ad4ebef8e2788183a24111", - "symbol": "EURW", - "decimals": 6, - "name": "Newrails Euro", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/143/0x1111b3ded9f1fe1801ad4ebef8e2788183a24111.png", - "aggregators": ["CoinGecko"], - "occurrences": 1 - }, - "0x42a4aa89864a794de135b23c6a8d2e05513d7777": { - "address": "0x42a4aa89864a794de135b23c6a8d2e05513d7777", - "symbol": "shramp", - "decimals": 18, - "name": "shramp", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/143/0x42a4aa89864a794de135b23c6a8d2e05513d7777.png", - "aggregators": ["Dynamic"], - "occurrences": 1 - }, - "0x7db552eeb6b77a6babe6e0a739b5382cd653cc3e": { - "address": "0x7db552eeb6b77a6babe6e0a739b5382cd653cc3e", - "symbol": "GMONAD", - "decimals": 18, - "name": "GMONAD", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/143/0x7db552eeb6b77a6babe6e0a739b5382cd653cc3e.png", - "aggregators": ["CoinGecko"], - "occurrences": 1 - }, - "0x2fabf1c784b8583d63c00c5c9c0377d8cf1a3245": { - "address": "0x2fabf1c784b8583d63c00c5c9c0377d8cf1a3245", - "symbol": "ACRDX", - "decimals": 18, - "name": "Anemoy Tokenized Apollo Diversified Credit Fund", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/143/0x2fabf1c784b8583d63c00c5c9c0377d8cf1a3245.png", - "aggregators": ["CoinGecko"], - "occurrences": 1 - }, - "0xaca92e438df0b2401ff60da7e4337b687a2435da": { - "address": "0xaca92e438df0b2401ff60da7e4337b687a2435da", - "symbol": "MUSD", - "decimals": 6, - "name": "MetaMask USD", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/143/0xaca92e438df0b2401ff60da7e4337b687a2435da.png", - "aggregators": ["Metamask"], - "occurrences": 1 - }, - "0x2f2f2f74ab5db61ae8bd3c13ccd4dc8c9e8a2f2f": { - "address": "0x2f2f2f74ab5db61ae8bd3c13ccd4dc8c9e8a2f2f", - "symbol": "ZF", - "decimals": 18, - "name": "zkSwap Finance", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/143/0x2f2f2f74ab5db61ae8bd3c13ccd4dc8c9e8a2f2f.png", - "aggregators": ["CoinGecko"], - "occurrences": 1 - }, - "0x123468b48eadbc13c65cd9c66a9913cde4e94321": { - "address": "0x123468b48eadbc13c65cd9c66a9913cde4e94321", - "symbol": "LONG", - "decimals": 18, - "name": "Long", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/143/0x123468b48eadbc13c65cd9c66a9913cde4e94321.png", - "aggregators": ["CoinGecko"], - "occurrences": 1 - }, - "0x6fe981dbd557f81ff66836af0932cba535cbc343": { - "address": "0x6fe981dbd557f81ff66836af0932cba535cbc343", - "symbol": "LINK", - "decimals": 18, - "name": "Chainlink", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/143/0x6fe981dbd557f81ff66836af0932cba535cbc343.png", - "aggregators": ["CoinGecko"], - "occurrences": 1 - }, - "0x6a7e3f839382fbb6a6131d4aae864aaeb362292d": { - "address": "0x6a7e3f839382fbb6a6131d4aae864aaeb362292d", - "symbol": "APE", - "decimals": 18, - "name": "ApeCoin", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/143/0x6a7e3f839382fbb6a6131d4aae864aaeb362292d.png", - "aggregators": ["LiFi"], - "occurrences": 1 - }, - "0x0a332311633c0625f63cfc51ee33fc49826e0a3c": { - "address": "0x0a332311633c0625f63cfc51ee33fc49826e0a3c", - "symbol": "APR", - "decimals": 18, - "name": "aPriori", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/143/0x0a332311633c0625f63cfc51ee33fc49826e0a3c.png", - "aggregators": ["Dynamic"], - "occurrences": 1 - }, - "0x46080f31351a6568f44575e3effde7f0c86867f9": { - "address": "0x46080f31351a6568f44575e3effde7f0c86867f9", - "symbol": "GILTS", - "decimals": 6, - "name": "Etherfuse GILTS", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/143/0x46080f31351a6568f44575e3effde7f0c86867f9.png", - "aggregators": ["CoinGecko"], - "occurrences": 1 - }, - "0xad48f183e586e92a591a610397ebf534609df797": { - "address": "0xad48f183e586e92a591a610397ebf534609df797", - "symbol": "JAAA", - "decimals": 18, - "name": "Janus Henderson Anemoy AAA CLO Fund", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/143/0xad48f183e586e92a591a610397ebf534609df797.png", - "aggregators": ["CoinGecko"], - "occurrences": 1 - }, - "0x7a9990ffe3057edc18558ca4c8804430fe917456": { - "address": "0x7a9990ffe3057edc18558ca4c8804430fe917456", - "symbol": "TESOURO", - "decimals": 6, - "name": "Etherfuse TESOURO", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/143/0x7a9990ffe3057edc18558ca4c8804430fe917456.png", - "aggregators": ["CoinGecko"], - "occurrences": 1 - }, - "0xc18e6f730896971a79d748e8dea61067a9bc6040": { - "address": "0xc18e6f730896971a79d748e8dea61067a9bc6040", - "symbol": "JTRSY", - "decimals": 18, - "name": "Janus Henderson Anemoy Treasury Fund", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/143/0xc18e6f730896971a79d748e8dea61067a9bc6040.png", - "aggregators": ["CoinGecko"], - "occurrences": 1 - }, - "0x834df4c1d8f51be24322e39e4766697be015512f": { - "address": "0x834df4c1d8f51be24322e39e4766697be015512f", - "symbol": "CETES", - "decimals": 6, - "name": "Etherfuse CETES", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/143/0x834df4c1d8f51be24322e39e4766697be015512f.png", - "aggregators": ["CoinGecko"], - "occurrences": 1 - }, - "0x3db619ff72d877490699276061fb0fa0618fdf47": { - "address": "0x3db619ff72d877490699276061fb0fa0618fdf47", - "symbol": "EARN", - "decimals": 18, - "name": "HOLD", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/143/0x3db619ff72d877490699276061fb0fa0618fdf47.png", - "aggregators": ["CoinGecko"], - "occurrences": 1 - }, - "0x095957ceb9f317ac1328f0ab3123622401766d71": { - "address": "0x095957ceb9f317ac1328f0ab3123622401766d71", - "symbol": "STONEUSD", - "decimals": 18, - "name": "StakeStone USD", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/143/0x095957ceb9f317ac1328f0ab3123622401766d71.png", - "aggregators": ["CoinGecko"], - "occurrences": 1 - }, - "0x96043804d00dcec238718eedad9ac10719778380": { - "address": "0x96043804d00dcec238718eedad9ac10719778380", - "symbol": "SHUSD", - "decimals": 6, - "name": "Staked Sherpa USD", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/143/0x96043804d00dcec238718eedad9ac10719778380.png", - "aggregators": ["CoinGecko"], - "occurrences": 1 - }, - "0xe9c082921dc3564e10196c5cc15db1250ac7d5c6": { - "address": "0xe9c082921dc3564e10196c5cc15db1250ac7d5c6", - "symbol": "KTB", - "decimals": 6, - "name": "Etherfuse KTB", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/143/0xe9c082921dc3564e10196c5cc15db1250ac7d5c6.png", - "aggregators": ["CoinGecko"], - "occurrences": 1 - }, - "0xc53ac24320e3a54c7211e4993c8095078a0cb3cf": { - "address": "0xc53ac24320e3a54c7211e4993c8095078a0cb3cf", - "symbol": "WGC", - "decimals": 6, - "name": "Wild Goat Coin", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/143/0xc53ac24320e3a54c7211e4993c8095078a0cb3cf.png", - "aggregators": ["CoinGecko"], - "occurrences": 1 - }, - "0x58e3ee6accd124642ddb5d3f91928816be8d8ed3": { - "address": "0x58e3ee6accd124642ddb5d3f91928816be8d8ed3", - "symbol": "FRXUSD", - "decimals": 18, - "name": "Frax USD", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/143/0x58e3ee6accd124642ddb5d3f91928816be8d8ed3.png", - "aggregators": ["LiFi"], - "occurrences": 1 - }, - "0x3b4cf37a3335f21c945a40088404c715525fcb29": { - "address": "0x3b4cf37a3335f21c945a40088404c715525fcb29", - "symbol": "SFRXETH", - "decimals": 18, - "name": "Staked Frax Ether", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/143/0x3b4cf37a3335f21c945a40088404c715525fcb29.png", - "aggregators": ["LiFi"], - "occurrences": 1 - }, - "0x137643f7b2c189173867b3391f6629cab46f0f1a": { - "address": "0x137643f7b2c189173867b3391f6629cab46f0f1a", - "symbol": "SFRXUSD", - "decimals": 18, - "name": "Staked Frax USD", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/143/0x137643f7b2c189173867b3391f6629cab46f0f1a.png", - "aggregators": ["LiFi"], - "occurrences": 1 - }, - "0x09d4214c03d01f49544c0448dbe3a27f768f2b34": { - "address": "0x09d4214c03d01f49544c0448dbe3a27f768f2b34", - "symbol": "RUSD", - "decimals": 18, - "name": "Reservoir Stablecoin", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/143/0x09d4214c03d01f49544c0448dbe3a27f768f2b34.png", - "aggregators": ["LiFi"], - "occurrences": 1 - }, - "0x288f9d76019469bfeb56bb77d86afa2bf563b75b": { - "address": "0x288f9d76019469bfeb56bb77d86afa2bf563b75b", - "symbol": "FRXETH", - "decimals": 18, - "name": "Frax Ether", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/143/0x288f9d76019469bfeb56bb77d86afa2bf563b75b.png", - "aggregators": ["LiFi"], - "occurrences": 1 - }, - "0xd0fd2cf7f6ceff4f96b1161f5e995d5843326154": { - "address": "0xd0fd2cf7f6ceff4f96b1161f5e995d5843326154", - "symbol": "NWMON", - "decimals": 18, - "name": "Neverland Interest Bearing WMON", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/143/0xd0fd2cf7f6ceff4f96b1161f5e995d5843326154.png", - "aggregators": ["LiFi"], - "occurrences": 1 - }, - "0xbeeff443c3cba3e369da795002243beac311ab83": { - "address": "0xbeeff443c3cba3e369da795002243beac311ab83", - "symbol": "BBQUSDC", - "decimals": 18, - "name": "Steakhouse High Yield USDC", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/143/0xbeeff443c3cba3e369da795002243beac311ab83.png", - "aggregators": ["LiFi"], - "occurrences": 1 - }, - "0x38648958836ea88b368b4ac23b86ad44b0fe7508": { - "address": "0x38648958836ea88b368b4ac23b86ad44b0fe7508", - "symbol": "NUSDC", - "decimals": 6, - "name": "Neverland Interest Bearing USDC", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/143/0x38648958836ea88b368b4ac23b86ad44b0fe7508.png", - "aggregators": ["LiFi"], - "occurrences": 1 - }, - "0xc64d73bb8748c6fa7487ace2d0d945b6fbb2ecde": { - "address": "0xc64d73bb8748c6fa7487ace2d0d945b6fbb2ecde", - "symbol": "NSHMON", - "decimals": 18, - "name": "Neverland Interest Bearing SHMON", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/143/0xc64d73bb8748c6fa7487ace2d0d945b6fbb2ecde.png", - "aggregators": ["LiFi"], - "occurrences": 1 - }, - "0x7f81779736968836582d31d36274ed82053ad1ae": { - "address": "0x7f81779736968836582d31d36274ed82053ad1ae", - "symbol": "NGMON", - "decimals": 18, - "name": "Neverland Interest Bearing GMON", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/143/0x7f81779736968836582d31d36274ed82053ad1ae.png", - "aggregators": ["LiFi"], - "occurrences": 1 - }, - "0xdfc14d336aea9e49113b1356333fd374e646bf85": { - "address": "0xdfc14d336aea9e49113b1356333fd374e646bf85", - "symbol": "NSMON", - "decimals": 18, - "name": "Neverland Interest Bearing SMON", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/143/0xdfc14d336aea9e49113b1356333fd374e646bf85.png", - "aggregators": ["LiFi"], - "occurrences": 1 - }, - "0x1ed6703bd9dd1a82979100d21910f17b074c8293": { - "address": "0x1ed6703bd9dd1a82979100d21910f17b074c8293", - "symbol": "EWSTETH-3", - "decimals": 18, - "name": "EVK Vault ewstETH-3", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/143/0x1ed6703bd9dd1a82979100d21910f17b074c8293.png", - "aggregators": ["LiFi"], - "occurrences": 1 - }, - "0x225e145c65031d39c3d9c58bddaef47f8d9faec5": { - "address": "0x225e145c65031d39c3d9c58bddaef47f8d9faec5", - "symbol": "EUSDT0-7", - "decimals": 6, - "name": "EVK Vault eUSDT0-7", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/143/0x225e145c65031d39c3d9c58bddaef47f8d9faec5.png", - "aggregators": ["LiFi"], - "occurrences": 1 - }, - "0x850dafb683743076f65d62d95e36ec9d04fb4b23": { - "address": "0x850dafb683743076f65d62d95e36ec9d04fb4b23", - "symbol": "EWMON-9", - "decimals": 18, - "name": "EVK Vault eWMON-9", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/143/0x850dafb683743076f65d62d95e36ec9d04fb4b23.png", - "aggregators": ["LiFi"], - "occurrences": 1 - }, - "0x87760787d770bc9f039843fec7636f3b8dd12206": { - "address": "0x87760787d770bc9f039843fec7636f3b8dd12206", - "symbol": "EWMON-10", - "decimals": 18, - "name": "EVK Vault eWMON-10", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/143/0x87760787d770bc9f039843fec7636f3b8dd12206.png", - "aggregators": ["LiFi"], - "occurrences": 1 - }, - "0x88927d35e37286805f343dc449b750f431e70a20": { - "address": "0x88927d35e37286805f343dc449b750f431e70a20", - "symbol": "EWBTC-4", - "decimals": 8, - "name": "EVK Vault eWBTC-4", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/143/0x88927d35e37286805f343dc449b750f431e70a20.png", - "aggregators": ["LiFi"], - "occurrences": 1 - }, - "0x9190269f87bd30f0eb94dc3d6369b42a1a27eefa": { - "address": "0x9190269f87bd30f0eb94dc3d6369b42a1a27eefa", - "symbol": "EUSDT0-5", - "decimals": 6, - "name": "EVK Vault eUSDT0-5", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/143/0x9190269f87bd30f0eb94dc3d6369b42a1a27eefa.png", - "aggregators": ["LiFi"], - "occurrences": 1 - }, - "0xce67457a858da99bf19ff22d595cd60808f2e77d": { - "address": "0xce67457a858da99bf19ff22d595cd60808f2e77d", - "symbol": "EWMON-11", - "decimals": 18, - "name": "EVK Vault eWMON-11", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/143/0xce67457a858da99bf19ff22d595cd60808f2e77d.png", - "aggregators": ["LiFi"], - "occurrences": 1 - }, - "0xdb53e5c7578cfb52e72728c89ba895692e49aa45": { - "address": "0xdb53e5c7578cfb52e72728c89ba895692e49aa45", - "symbol": "ELBTC-4", - "decimals": 8, - "name": "EVK Vault eLBTC-4", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/143/0xdb53e5c7578cfb52e72728c89ba895692e49aa45.png", - "aggregators": ["LiFi"], - "occurrences": 1 - }, - "0xee3eaec5b3860ad40a767594f0990a74a32329e8": { - "address": "0xee3eaec5b3860ad40a767594f0990a74a32329e8", - "symbol": "EUSDT0-3", - "decimals": 6, - "name": "EVK Vault eUSDT0-3", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/143/0xee3eaec5b3860ad40a767594f0990a74a32329e8.png", - "aggregators": ["LiFi"], - "occurrences": 1 - }, - "0xb267cc10fa4c54db1fd5a6e9cafbb98c16cc9b97": { - "address": "0xb267cc10fa4c54db1fd5a6e9cafbb98c16cc9b97", - "symbol": "W0G", - "decimals": 18, - "name": "Wrapped 0G", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/143/0xb267cc10fa4c54db1fd5a6e9cafbb98c16cc9b97.png", - "aggregators": ["LiFi"], - "occurrences": 1 - }, - "0xe89d322b5822d828b8252d3087be8486cc2048ef": { - "address": "0xe89d322b5822d828b8252d3087be8486cc2048ef", - "symbol": "AMAUSD", - "decimals": 6, - "name": "Ample Monad AUSD", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/143/0xe89d322b5822d828b8252d3087be8486cc2048ef.png", - "aggregators": ["LiFi"], - "occurrences": 1 - }, - "0x32841a8511d5c2c5b253f45668780b99139e476d": { - "address": "0x32841a8511d5c2c5b253f45668780b99139e476d", - "symbol": "GROVE-BBQAUSD", - "decimals": 18, - "name": "Grove x Steakhouse High Yield AUSD", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/143/0x32841a8511d5c2c5b253f45668780b99139e476d.png", - "aggregators": ["LiFi"], - "occurrences": 1 - }, - "0x802c91d807a8daca257c4708ab264b6520964e44": { - "address": "0x802c91d807a8daca257c4708ab264b6520964e44", - "symbol": "BBQUSDC", - "decimals": 18, - "name": "Steakhouse High Yield USDC", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/143/0x802c91d807a8daca257c4708ab264b6520964e44.png", - "aggregators": ["LiFi"], - "occurrences": 1 - }, - "0x961a59fe249b9795fae7fa35f9e89629689d5278": { - "address": "0x961a59fe249b9795fae7fa35f9e89629689d5278", - "symbol": "BBQUSDT0", - "decimals": 18, - "name": "Steakhouse High Yield USDT0", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/143/0x961a59fe249b9795fae7fa35f9e89629689d5278.png", - "aggregators": ["LiFi"], - "occurrences": 1 - }, - "0xbc03e505ee65f9faa68a2d7e5a74452858c16d29": { - "address": "0xbc03e505ee65f9faa68a2d7e5a74452858c16d29", - "symbol": "BBQAUSD", - "decimals": 18, - "name": "Steakhouse High Yield AUSD", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/143/0xbc03e505ee65f9faa68a2d7e5a74452858c16d29.png", - "aggregators": ["LiFi"], - "occurrences": 1 - }, - "0x048e7f7857c5297cd7623244bbb4fae65936996a": { - "address": "0x048e7f7857c5297cd7623244bbb4fae65936996a", - "symbol": "EAUSD-9", - "decimals": 6, - "name": "EVK Vault eAUSD-9", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/143/0x048e7f7857c5297cd7623244bbb4fae65936996a.png", - "aggregators": ["LiFi"], - "occurrences": 1 - }, - "0x0709be7bb77b25e398ccfd518770c0bae31a38df": { - "address": "0x0709be7bb77b25e398ccfd518770c0bae31a38df", - "symbol": "EAUSD-8", - "decimals": 6, - "name": "EVK Vault eAUSD-8", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/143/0x0709be7bb77b25e398ccfd518770c0bae31a38df.png", - "aggregators": ["LiFi"], - "occurrences": 1 - }, - "0x091298d908a216cfca30729db2b194fe5f1d16be": { - "address": "0x091298d908a216cfca30729db2b194fe5f1d16be", - "symbol": "EXAUT0-4", - "decimals": 6, - "name": "EVK Vault eXAUt0-4", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/143/0x091298d908a216cfca30729db2b194fe5f1d16be.png", - "aggregators": ["LiFi"], - "occurrences": 1 - }, - "0x1874f82ac9ef2bd5603cc946cb6f3bcb9dd2d66f": { - "address": "0x1874f82ac9ef2bd5603cc946cb6f3bcb9dd2d66f", - "symbol": "ELBTC-2", - "decimals": 8, - "name": "EVK Vault eLBTC-2", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/143/0x1874f82ac9ef2bd5603cc946cb6f3bcb9dd2d66f.png", - "aggregators": ["LiFi"], - "occurrences": 1 - }, - "0x1e4d67c666c2ccf27a0af980fe6c8e0f05ac8949": { - "address": "0x1e4d67c666c2ccf27a0af980fe6c8e0f05ac8949", - "symbol": "EUSDC-5", - "decimals": 6, - "name": "EVK Vault eUSDC-5", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/143/0x1e4d67c666c2ccf27a0af980fe6c8e0f05ac8949.png", - "aggregators": ["LiFi"], - "occurrences": 1 - }, - "0x2178894927657fd5a464ce082e0b514ceb12720c": { - "address": "0x2178894927657fd5a464ce082e0b514ceb12720c", - "symbol": "EUSDT0-4", - "decimals": 6, - "name": "EVK Vault eUSDT0-4", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/143/0x2178894927657fd5a464ce082e0b514ceb12720c.png", - "aggregators": ["LiFi"], - "occurrences": 1 - }, - "0x234d354b39a4ca1274cb04972d3a9e03f1d8c4ff": { - "address": "0x234d354b39a4ca1274cb04972d3a9e03f1d8c4ff", - "symbol": "EXAUT0-2", - "decimals": 6, - "name": "EVK Vault eXAUt0-2", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/143/0x234d354b39a4ca1274cb04972d3a9e03f1d8c4ff.png", - "aggregators": ["LiFi"], - "occurrences": 1 - }, - "0x240fcaffff24aaa39e420b6f70ed5519847648b4": { - "address": "0x240fcaffff24aaa39e420b6f70ed5519847648b4", - "symbol": "EAUSD-3", - "decimals": 6, - "name": "EVK Vault eAUSD-3", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/143/0x240fcaffff24aaa39e420b6f70ed5519847648b4.png", - "aggregators": ["LiFi"], - "occurrences": 1 - }, - "0x289f801765b99b5e6263853859fe302dbecab6d6": { - "address": "0x289f801765b99b5e6263853859fe302dbecab6d6", - "symbol": "EUSDC-10", - "decimals": 6, - "name": "EVK Vault eUSDC-10", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/143/0x289f801765b99b5e6263853859fe302dbecab6d6.png", - "aggregators": ["LiFi"], - "occurrences": 1 - }, - "0x28bd4f19c812cbf9e33a206f87125f14e65dc8aa": { - "address": "0x28bd4f19c812cbf9e33a206f87125f14e65dc8aa", - "symbol": "EWMON-5", - "decimals": 18, - "name": "EVK Vault eWMON-5", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/143/0x28bd4f19c812cbf9e33a206f87125f14e65dc8aa.png", - "aggregators": ["LiFi"], - "occurrences": 1 - }, - "0x36d0f0a4cb615c200310ae2c5b5d345189d01197": { - "address": "0x36d0f0a4cb615c200310ae2c5b5d345189d01197", - "symbol": "EUSDC-8", - "decimals": 6, - "name": "EVK Vault eUSDC-8", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/143/0x36d0f0a4cb615c200310ae2c5b5d345189d01197.png", - "aggregators": ["LiFi"], - "occurrences": 1 - }, - "0x3bcc41c9510a4b601bfbfa6da8d933d50fd175e8": { - "address": "0x3bcc41c9510a4b601bfbfa6da8d933d50fd175e8", - "symbol": "ESHMON-3", - "decimals": 18, - "name": "EVK Vault eshMON-3", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/143/0x3bcc41c9510a4b601bfbfa6da8d933d50fd175e8.png", - "aggregators": ["LiFi"], - "occurrences": 1 - }, - "0x3fe40329061a40f95416da42bb69e15d8eb83740": { - "address": "0x3fe40329061a40f95416da42bb69e15d8eb83740", - "symbol": "EAUSD-7", - "decimals": 6, - "name": "EVK Vault eAUSD-7", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/143/0x3fe40329061a40f95416da42bb69e15d8eb83740.png", - "aggregators": ["LiFi"], - "occurrences": 1 - }, - "0x502e4a0b61deba3015eb9e51116b832003b22c2c": { - "address": "0x502e4a0b61deba3015eb9e51116b832003b22c2c", - "symbol": "EWETH-3", - "decimals": 18, - "name": "EVK Vault eWETH-3", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/143/0x502e4a0b61deba3015eb9e51116b832003b22c2c.png", - "aggregators": ["LiFi"], - "occurrences": 1 - }, - "0x50fe3eac875afbf5a121f2f792ffb7f9fb27629f": { - "address": "0x50fe3eac875afbf5a121f2f792ffb7f9fb27629f", - "symbol": "EUSDT0-8", - "decimals": 6, - "name": "EVK Vault eUSDT0-8", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/143/0x50fe3eac875afbf5a121f2f792ffb7f9fb27629f.png", - "aggregators": ["LiFi"], - "occurrences": 1 - }, - "0x52a59afaf5cb7cb09f94056fd631688d659a33b6": { - "address": "0x52a59afaf5cb7cb09f94056fd631688d659a33b6", - "symbol": "EWBTC-3", - "decimals": 8, - "name": "EVK Vault eWBTC-3", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/143/0x52a59afaf5cb7cb09f94056fd631688d659a33b6.png", - "aggregators": ["LiFi"], - "occurrences": 1 - }, - "0x5792753b66eb5213e416755546abbcc1aef1008a": { - "address": "0x5792753b66eb5213e416755546abbcc1aef1008a", - "symbol": "EUSDC-7", - "decimals": 6, - "name": "EVK Vault eUSDC-7", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/143/0x5792753b66eb5213e416755546abbcc1aef1008a.png", - "aggregators": ["LiFi"], - "occurrences": 1 - }, - "0x57c5dff5ddb1289c21cc752a05330a12e3542578": { - "address": "0x57c5dff5ddb1289c21cc752a05330a12e3542578", - "symbol": "EUSDT0-6", - "decimals": 6, - "name": "EVK Vault eUSDT0-6", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/143/0x57c5dff5ddb1289c21cc752a05330a12e3542578.png", - "aggregators": ["LiFi"], - "occurrences": 1 - }, - "0x5e1534af364de6f789b67dab52abdc154ab48757": { - "address": "0x5e1534af364de6f789b67dab52abdc154ab48757", - "symbol": "EWMON-4", - "decimals": 18, - "name": "EVK Vault eWMON-4", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/143/0x5e1534af364de6f789b67dab52abdc154ab48757.png", - "aggregators": ["LiFi"], - "occurrences": 1 - }, - "0x61788859b923989dfeb995b8de5cbbcd719475e9": { - "address": "0x61788859b923989dfeb995b8de5cbbcd719475e9", - "symbol": "EWSTETH-2", - "decimals": 18, - "name": "EVK Vault ewstETH-2", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/143/0x61788859b923989dfeb995b8de5cbbcd719475e9.png", - "aggregators": ["LiFi"], - "occurrences": 1 - }, - "0x6661a2b4008b70f22ff84c2134ac6f51534e162d": { - "address": "0x6661a2b4008b70f22ff84c2134ac6f51534e162d", - "symbol": "ESHMON-1", - "decimals": 18, - "name": "EVK Vault eshMON-1", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/143/0x6661a2b4008b70f22ff84c2134ac6f51534e162d.png", - "aggregators": ["LiFi"], - "occurrences": 1 - }, - "0x6e06ce28a6c28bffa274ead5cb715992033e351a": { - "address": "0x6e06ce28a6c28bffa274ead5cb715992033e351a", - "symbol": "EAUSD-6", - "decimals": 6, - "name": "EVK Vault eAUSD-6", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/143/0x6e06ce28a6c28bffa274ead5cb715992033e351a.png", - "aggregators": ["LiFi"], - "occurrences": 1 - }, - "0x7b4bcaeac5eb67ae947903f24bba660ee06a5231": { - "address": "0x7b4bcaeac5eb67ae947903f24bba660ee06a5231", - "symbol": "EWMON-6", - "decimals": 18, - "name": "EVK Vault eWMON-6", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/143/0x7b4bcaeac5eb67ae947903f24bba660ee06a5231.png", - "aggregators": ["LiFi"], - "occurrences": 1 - }, - "0x870e172c3c7ea274ce60fb8d19d86012edc3c043": { - "address": "0x870e172c3c7ea274ce60fb8d19d86012edc3c043", - "symbol": "EAUSD-4", - "decimals": 6, - "name": "EVK Vault eAUSD-4", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/143/0x870e172c3c7ea274ce60fb8d19d86012edc3c043.png", - "aggregators": ["LiFi"], - "occurrences": 1 - }, - "0x8c75a7177d64167e6ebc65a1d25d03cbf726fc46": { - "address": "0x8c75a7177d64167e6ebc65a1d25d03cbf726fc46", - "symbol": "EWETH-2", - "decimals": 18, - "name": "EVK Vault eWETH-2", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/143/0x8c75a7177d64167e6ebc65a1d25d03cbf726fc46.png", - "aggregators": ["LiFi"], - "occurrences": 1 - }, - "0x8f47d9d9d5a8202a5a37c4e41fbdd3146d88a579": { - "address": "0x8f47d9d9d5a8202a5a37c4e41fbdd3146d88a579", - "symbol": "EWBTC-2", - "decimals": 8, - "name": "EVK Vault eWBTC-2", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/143/0x8f47d9d9d5a8202a5a37c4e41fbdd3146d88a579.png", - "aggregators": ["LiFi"], - "occurrences": 1 - }, - "0x8f79f6ee218826d5144b917f901b147d4354bd74": { - "address": "0x8f79f6ee218826d5144b917f901b147d4354bd74", - "symbol": "EUSDT0-2", - "decimals": 6, - "name": "EVK Vault eUSDT0-2", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/143/0x8f79f6ee218826d5144b917f901b147d4354bd74.png", - "aggregators": ["LiFi"], - "occurrences": 1 - }, - "0x9020dbca5a8ccfab6116123e308204a44a5b93d4": { - "address": "0x9020dbca5a8ccfab6116123e308204a44a5b93d4", - "symbol": "EGMON-3", - "decimals": 18, - "name": "EVK Vault egMON-3", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/143/0x9020dbca5a8ccfab6116123e308204a44a5b93d4.png", - "aggregators": ["LiFi"], - "occurrences": 1 - }, - "0x9109529c3a2eb36de0ac3837baea74044863c60a": { - "address": "0x9109529c3a2eb36de0ac3837baea74044863c60a", - "symbol": "EWMON-8", - "decimals": 18, - "name": "EVK Vault eWMON-8", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/143/0x9109529c3a2eb36de0ac3837baea74044863c60a.png", - "aggregators": ["LiFi"], - "occurrences": 1 - }, - "0x94a169ad76f75e32b5e4e716a0cacfa28a619b66": { - "address": "0x94a169ad76f75e32b5e4e716a0cacfa28a619b66", - "symbol": "EWMON-3", - "decimals": 18, - "name": "EVK Vault eWMON-3", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/143/0x94a169ad76f75e32b5e4e716a0cacfa28a619b66.png", - "aggregators": ["LiFi"], - "occurrences": 1 - }, - "0x994d141557dc6abb13afd374ddc0224c0e7ef478": { - "address": "0x994d141557dc6abb13afd374ddc0224c0e7ef478", - "symbol": "ESMON-3", - "decimals": 18, - "name": "EVK Vault esMON-3", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/143/0x994d141557dc6abb13afd374ddc0224c0e7ef478.png", - "aggregators": ["LiFi"], - "occurrences": 1 - }, - "0x9ea1b948186f9a8cfe375278d96363103f4fa42b": { - "address": "0x9ea1b948186f9a8cfe375278d96363103f4fa42b", - "symbol": "EWMON-7", - "decimals": 18, - "name": "EVK Vault eWMON-7", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/143/0x9ea1b948186f9a8cfe375278d96363103f4fa42b.png", - "aggregators": ["LiFi"], - "occurrences": 1 - }, - "0xa8f093cfb04a536dbc6aa9bb94a2d617305a48f3": { - "address": "0xa8f093cfb04a536dbc6aa9bb94a2d617305a48f3", - "symbol": "ESMON-1", - "decimals": 18, - "name": "EVK Vault esMON-1", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/143/0xa8f093cfb04a536dbc6aa9bb94a2d617305a48f3.png", - "aggregators": ["LiFi"], - "occurrences": 1 - }, - "0xb181030ff0767c24d83c65527bd42146486f415e": { - "address": "0xb181030ff0767c24d83c65527bd42146486f415e", - "symbol": "EGMON-2", - "decimals": 18, - "name": "EVK Vault egMON-2", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/143/0xb181030ff0767c24d83c65527bd42146486f415e.png", - "aggregators": ["LiFi"], - "occurrences": 1 - }, - "0xb6a4db1fef7831f65827d9af2cb1e69f764ec123": { - "address": "0xb6a4db1fef7831f65827d9af2cb1e69f764ec123", - "symbol": "ESHMON-2", - "decimals": 18, - "name": "EVK Vault eshMON-2", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/143/0xb6a4db1fef7831f65827d9af2cb1e69f764ec123.png", - "aggregators": ["LiFi"], - "occurrences": 1 - }, - "0xb72e0659417bbb1ea55869ab2f81cb41e751938f": { - "address": "0xb72e0659417bbb1ea55869ab2f81cb41e751938f", - "symbol": "EWSTETH-1", - "decimals": 18, - "name": "EVK Vault ewstETH-1", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/143/0xb72e0659417bbb1ea55869ab2f81cb41e751938f.png", - "aggregators": ["LiFi"], - "occurrences": 1 - }, - "0xbc5fd2ca51b0bca8882246833b2ea8627a79bc59": { - "address": "0xbc5fd2ca51b0bca8882246833b2ea8627a79bc59", - "symbol": "ELBTC-3", - "decimals": 8, - "name": "EVK Vault eLBTC-3", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/143/0xbc5fd2ca51b0bca8882246833b2ea8627a79bc59.png", - "aggregators": ["LiFi"], - "occurrences": 1 - }, - "0xd2f35c39a7187bbf55c0b05c52808d7a18ed62ca": { - "address": "0xd2f35c39a7187bbf55c0b05c52808d7a18ed62ca", - "symbol": "EGMON-1", - "decimals": 18, - "name": "EVK Vault egMON-1", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/143/0xd2f35c39a7187bbf55c0b05c52808d7a18ed62ca.png", - "aggregators": ["LiFi"], - "occurrences": 1 - }, - "0xd505cce10571c1d07dd40d2d9001bef22cdf0d71": { - "address": "0xd505cce10571c1d07dd40d2d9001bef22cdf0d71", - "symbol": "EXAUT0-3", - "decimals": 6, - "name": "EVK Vault eXAUt0-3", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/143/0xd505cce10571c1d07dd40d2d9001bef22cdf0d71.png", - "aggregators": ["LiFi"], - "occurrences": 1 - }, - "0xd5ff5152edbd0d921bbff5eef84dda95c6c5a108": { - "address": "0xd5ff5152edbd0d921bbff5eef84dda95c6c5a108", - "symbol": "EAUSD-5", - "decimals": 6, - "name": "EVK Vault eAUSD-5", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/143/0xd5ff5152edbd0d921bbff5eef84dda95c6c5a108.png", - "aggregators": ["LiFi"], - "occurrences": 1 - }, - "0xddffd6801a86b598077addda04f70af08b6f8807": { - "address": "0xddffd6801a86b598077addda04f70af08b6f8807", - "symbol": "ESMON-2", - "decimals": 18, - "name": "EVK Vault esMON-2", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/143/0xddffd6801a86b598077addda04f70af08b6f8807.png", - "aggregators": ["LiFi"], - "occurrences": 1 - }, - "0xf048977215c8efd805f2d48b1d45304742d6ab58": { - "address": "0xf048977215c8efd805f2d48b1d45304742d6ab58", - "symbol": "EWETH-4", - "decimals": 18, - "name": "EVK Vault eWETH-4", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/143/0xf048977215c8efd805f2d48b1d45304742d6ab58.png", - "aggregators": ["LiFi"], - "occurrences": 1 - }, - "0xf19e8ddc541dee2f4d6796a79b1c1e10a415a0da": { - "address": "0xf19e8ddc541dee2f4d6796a79b1c1e10a415a0da", - "symbol": "EUSDC-4", - "decimals": 6, - "name": "EVK Vault eUSDC-4", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/143/0xf19e8ddc541dee2f4d6796a79b1c1e10a415a0da.png", - "aggregators": ["LiFi"], - "occurrences": 1 - }, - "0xf2acb868eaf64ef36bc0d3b4ba93af00fc3167cf": { - "address": "0xf2acb868eaf64ef36bc0d3b4ba93af00fc3167cf", - "symbol": "EUSDC-6", - "decimals": 6, - "name": "EVK Vault eUSDC-6", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/143/0xf2acb868eaf64ef36bc0d3b4ba93af00fc3167cf.png", - "aggregators": ["LiFi"], - "occurrences": 1 - }, - "0xf62c7cd4f71434f7c4d12a1142133d4ed4abaec4": { - "address": "0xf62c7cd4f71434f7c4d12a1142133d4ed4abaec4", - "symbol": "EUSDC-9", - "decimals": 6, - "name": "EVK Vault eUSDC-9", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/143/0xf62c7cd4f71434f7c4d12a1142133d4ed4abaec4.png", - "aggregators": ["LiFi"], - "occurrences": 1 - }, - "0x31f63ae5a96566b93477191778606bebdc4ca66f": { - "address": "0x31f63ae5a96566b93477191778606bebdc4ca66f", - "symbol": "NWETH", - "decimals": 18, - "name": "Neverland Interest Bearing WETH", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/143/0x31f63ae5a96566b93477191778606bebdc4ca66f.png", - "aggregators": ["LiFi"], - "occurrences": 1 - }, - "0x34c43684293963c546b0ab6841008a4d3393b9ab": { - "address": "0x34c43684293963c546b0ab6841008a4d3393b9ab", - "symbol": "NWBTC", - "decimals": 8, - "name": "Neverland Interest Bearing WBTC", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/143/0x34c43684293963c546b0ab6841008a4d3393b9ab.png", - "aggregators": ["LiFi"], - "occurrences": 1 - }, - "0x39f901c32b2e0d25ae8deaa1ee115c748f8f6bdf": { - "address": "0x39f901c32b2e0d25ae8deaa1ee115c748f8f6bdf", - "symbol": "NUSDT0", - "decimals": 6, - "name": "Neverland Interest Bearing USDT0", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/143/0x39f901c32b2e0d25ae8deaa1ee115c748f8f6bdf.png", - "aggregators": ["LiFi"], - "occurrences": 1 - }, - "0x784999fc2dd132a41d1cc0f1ae9805854bad1f2d": { - "address": "0x784999fc2dd132a41d1cc0f1ae9805854bad1f2d", - "symbol": "NAUSD", - "decimals": 6, - "name": "Neverland Interest Bearing AUSD", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/143/0x784999fc2dd132a41d1cc0f1ae9805854bad1f2d.png", - "aggregators": ["LiFi"], - "occurrences": 1 - }, - "0xacaaa891b30e13d024ab67b6eca9c2ecbd8cf52b": { - "address": "0xacaaa891b30e13d024ab67b6eca9c2ecbd8cf52b", - "symbol": "NEARNAUSD", - "decimals": 6, - "name": "Neverland Interest Bearing EARNAUSD", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/143/0xacaaa891b30e13d024ab67b6eca9c2ecbd8cf52b.png", - "aggregators": ["LiFi"], - "occurrences": 1 - }, - "0x293e2f01a38fe690eb8e570ab952b24b225113a7": { - "address": "0x293e2f01a38fe690eb8e570ab952b24b225113a7", - "symbol": "NLOAZND", - "decimals": 18, - "name": "Neverland Interest Bearing LOAZND", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/143/0x293e2f01a38fe690eb8e570ab952b24b225113a7.png", - "aggregators": ["LiFi"], - "occurrences": 1 - }, - "0xa8665084d8cd6276c00ca97cbc0bf4bc9ae94c79": { - "address": "0xa8665084d8cd6276c00ca97cbc0bf4bc9ae94c79", - "symbol": "HYPERUSDCD", - "decimals": 18, - "name": "Hyperithm USDC Degen", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/143/0xa8665084d8cd6276c00ca97cbc0bf4bc9ae94c79.png", - "aggregators": ["LiFi"], - "occurrences": 1 - }, - "0xba8424ebbed6c51bea6d6d903b8815838e6a0322": { - "address": "0xba8424ebbed6c51bea6d6d903b8815838e6a0322", - "symbol": "STEAKETH", - "decimals": 18, - "name": "Steakhouse Prime ETH", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/143/0xba8424ebbed6c51bea6d6d903b8815838e6a0322.png", - "aggregators": ["LiFi"], - "occurrences": 1 - }, - "0x78999cc96d2ba0341588c60ccb0e91c6c33cf371": { - "address": "0x78999cc96d2ba0341588c60ccb0e91c6c33cf371", - "symbol": "HYPERUSDCD", - "decimals": 18, - "name": "Hyperithm USDC Degen", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/143/0x78999cc96d2ba0341588c60ccb0e91c6c33cf371.png", - "aggregators": ["LiFi"], - "occurrences": 1 - }, - "0xbeef04b01e0275d4ac2e2986256bb14e3ff6ef42": { - "address": "0xbeef04b01e0275d4ac2e2986256bb14e3ff6ef42", - "symbol": "STEAKETH", - "decimals": 18, - "name": "Steakhouse Prime ETH", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/143/0xbeef04b01e0275d4ac2e2986256bb14e3ff6ef42.png", - "aggregators": ["LiFi"], - "occurrences": 1 - }, - "0xbeeff300e9a9caec7beea740ab8758d33b777509": { - "address": "0xbeeff300e9a9caec7beea740ab8758d33b777509", - "symbol": "BBQUSDT0", - "decimals": 18, - "name": "Steakhouse High Yield USDT0", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/143/0xbeeff300e9a9caec7beea740ab8758d33b777509.png", - "aggregators": ["LiFi"], - "occurrences": 1 - }, - "0xbeeffea75cfc4128ebe10c8d7ae22016d215060d": { - "address": "0xbeeffea75cfc4128ebe10c8d7ae22016d215060d", - "symbol": "BBQAUSD", - "decimals": 18, - "name": "Steakhouse High Yield AUSD", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/143/0xbeeffea75cfc4128ebe10c8d7ae22016d215060d.png", - "aggregators": ["LiFi"], - "occurrences": 1 - }, - "0xc402b0cacc0c684427daa40d964c8ae6fdbb96f7": { - "address": "0xc402b0cacc0c684427daa40d964c8ae6fdbb96f7", - "symbol": "HYPERCBBTCD", - "decimals": 18, - "name": "Hyperithm cbBTC Degen", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/143/0xc402b0cacc0c684427daa40d964c8ae6fdbb96f7.png", - "aggregators": ["LiFi"], - "occurrences": 1 - }, - "0xe09a93786275546690247d70f1767cf0b69e8ea0": { - "address": "0xe09a93786275546690247d70f1767cf0b69e8ea0", - "symbol": "HYPERCBBTCD", - "decimals": 18, - "name": "Hyperithm cbBTC Degen", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/143/0xe09a93786275546690247d70f1767cf0b69e8ea0.png", - "aggregators": ["LiFi"], - "occurrences": 1 - }, - "0x4f28cc08305e8585f8dd2a329ba41e77a9a54f97": { - "address": "0x4f28cc08305e8585f8dd2a329ba41e77a9a54f97", - "symbol": "BBQETH", - "decimals": 18, - "name": "Steakhouse High Yield ETH", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/143/0x4f28cc08305e8585f8dd2a329ba41e77a9a54f97.png", - "aggregators": ["LiFi"], - "occurrences": 1 - }, - "0xbeeff96d65cb80a0029dc9d3c4d7306c3c3a6253": { - "address": "0xbeeff96d65cb80a0029dc9d3c4d7306c3c3a6253", - "symbol": "BBQETH", - "decimals": 18, - "name": "Steakhouse High Yield ETH", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/143/0xbeeff96d65cb80a0029dc9d3c4d7306c3c3a6253.png", - "aggregators": ["LiFi"], - "occurrences": 1 - }, - "0x0f6f5a8272a4da23e458aabcbce6382c5cdc6b77": { - "address": "0x0f6f5a8272a4da23e458aabcbce6382c5cdc6b77", - "symbol": "BBQCBBTC", - "decimals": 18, - "name": "Steakhouse High Yield cbBTC", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/143/0x0f6f5a8272a4da23e458aabcbce6382c5cdc6b77.png", - "aggregators": ["LiFi"], - "occurrences": 1 - }, - "0xbeeff421948cde29644a63fba4ef5e5a621075d0": { - "address": "0xbeeff421948cde29644a63fba4ef5e5a621075d0", - "symbol": "BBQCBBTC", - "decimals": 18, - "name": "Steakhouse High Yield cbBTC", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/143/0xbeeff421948cde29644a63fba4ef5e5a621075d0.png", - "aggregators": ["LiFi"], - "occurrences": 1 - }, - "0x21649703fe63265058e9f22582552561af4afa3f": { - "address": "0x21649703fe63265058e9f22582552561af4afa3f", - "symbol": "AUGUSTUSDC", - "decimals": 18, - "name": "August USDC", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/143/0x21649703fe63265058e9f22582552561af4afa3f.png", - "aggregators": ["LiFi"], - "occurrences": 1 - }, - "0x80017bf0f793ebbe9679cd61ff0e395b62cabb59": { - "address": "0x80017bf0f793ebbe9679cd61ff0e395b62cabb59", - "symbol": "AUGUSTUSDCV2", - "decimals": 18, - "name": "August USDC V2", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/143/0x80017bf0f793ebbe9679cd61ff0e395b62cabb59.png", - "aggregators": ["LiFi"], - "occurrences": 1 - }, - "0x8699bfe5c6d74df561555bc708dacf165d8e0d73": { - "address": "0x8699bfe5c6d74df561555bc708dacf165d8e0d73", - "symbol": "BBQUSD1", - "decimals": 18, - "name": "Steakhouse High Yield USD1", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/143/0x8699bfe5c6d74df561555bc708dacf165d8e0d73.png", - "aggregators": ["LiFi"], - "occurrences": 1 - }, - "0xbeeffb65df79baac701307c9605b7ab207355fdb": { - "address": "0xbeeffb65df79baac701307c9605b7ab207355fdb", - "symbol": "BBQUSD1", - "decimals": 18, - "name": "Steakhouse High Yield USD1", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/143/0xbeeffb65df79baac701307c9605b7ab207355fdb.png", - "aggregators": ["LiFi"], - "occurrences": 1 - }, - "0x144290085da25e3078425c6f4a477fd8cab0c43e": { - "address": "0x144290085da25e3078425c6f4a477fd8cab0c43e", - "symbol": "EFXRP-1", - "decimals": 6, - "name": "EVK Vault eFXRP-1", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/143/0x144290085da25e3078425c6f4a477fd8cab0c43e.png", - "aggregators": ["LiFi"], - "occurrences": 1 - }, - "0x1475d3da9ca6a3aa14f76b7f5e9da0d0bcf1b2f9": { - "address": "0x1475d3da9ca6a3aa14f76b7f5e9da0d0bcf1b2f9", - "symbol": "EAUSD-12", - "decimals": 6, - "name": "EVK Vault eAUSD-12", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/143/0x1475d3da9ca6a3aa14f76b7f5e9da0d0bcf1b2f9.png", - "aggregators": ["LiFi"], - "occurrences": 1 - }, - "0x1905eddf5943ef6c92ccf1469bd40fc2cb4a77b0": { - "address": "0x1905eddf5943ef6c92ccf1469bd40fc2cb4a77b0", - "symbol": "EUSDC-12", - "decimals": 6, - "name": "EVK Vault eUSDC-12", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/143/0x1905eddf5943ef6c92ccf1469bd40fc2cb4a77b0.png", - "aggregators": ["LiFi"], - "occurrences": 1 - }, - "0x2f13d29b4eff12fc5e6b2560ed5183354c38a82f": { - "address": "0x2f13d29b4eff12fc5e6b2560ed5183354c38a82f", - "symbol": "EUSDT0-9", - "decimals": 6, - "name": "EVK Vault eUSDT0-9", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/143/0x2f13d29b4eff12fc5e6b2560ed5183354c38a82f.png", - "aggregators": ["LiFi"], - "occurrences": 1 - }, - "0xecef08a3cd83054e8ff6d8cb9ce41a36b81e8d7e": { - "address": "0xecef08a3cd83054e8ff6d8cb9ce41a36b81e8d7e", - "symbol": "UYCBBTC", - "decimals": 18, - "name": "UltraYield cbBTC", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/143/0xecef08a3cd83054e8ff6d8cb9ce41a36b81e8d7e.png", - "aggregators": ["LiFi"], - "occurrences": 1 - }, - "0x0ed3615ff949c8a34d15441970900e849a3409fc": { - "address": "0x0ed3615ff949c8a34d15441970900e849a3409fc", - "symbol": "URRWA", - "decimals": 18, - "name": "Unified Labs USDC RWA", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/143/0x0ed3615ff949c8a34d15441970900e849a3409fc.png", - "aggregators": ["LiFi"], - "occurrences": 1 - }, - "0xa16148c6ac9ede0d82f0c52899e22a575284f131": { - "address": "0xa16148c6ac9ede0d82f0c52899e22a575284f131", - "symbol": "USDC.AXL", - "decimals": 6, - "name": "USDC (Axelar)", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/143/0xa16148c6ac9ede0d82f0c52899e22a575284f131.png", - "aggregators": ["Squid"], - "occurrences": 1 - }, - "0xf8eb4ed0d4cf2bb707c0272f8c6827deb6e4c0a9": { - "address": "0xf8eb4ed0d4cf2bb707c0272f8c6827deb6e4c0a9", - "symbol": "WBTC", - "decimals": 8, - "name": "Wrapped BTC", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/143/0xf8eb4ed0d4cf2bb707c0272f8c6827deb6e4c0a9.png", - "aggregators": ["Squid"], - "occurrences": 1 - }, - "0x99ae2dc76c43979e3bcc0ae8d69f1fca077c8888": { - "address": "0x99ae2dc76c43979e3bcc0ae8d69f1fca077c8888", - "symbol": "ANAGO", - "decimals": 18, - "name": "Anago", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/143/0x99ae2dc76c43979e3bcc0ae8d69f1fca077c8888.png", - "aggregators": ["Squid"], - "occurrences": 1 - }, - "0x788571e0e5067adea87e6ba22a2b738ffdf48888": { - "address": "0x788571e0e5067adea87e6ba22a2b738ffdf48888", - "symbol": "UNIT", - "decimals": 18, - "name": "UNIT", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/143/0x788571e0e5067adea87e6ba22a2b738ffdf48888.png", - "aggregators": ["Squid"], - "occurrences": 1 - }, - "0xd0f0a3cfb7f8b90b6aa91989110fea5f77607655": { - "address": "0xd0f0a3cfb7f8b90b6aa91989110fea5f77607655", - "symbol": "BEING", - "decimals": 18, - "name": "being", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/143/0xd0f0a3cfb7f8b90b6aa91989110fea5f77607655.png", - "aggregators": ["Squid"], - "occurrences": 1 - } - }, - "timestamp": 1779126362441 - }, - "0xa": { - "data": { - "0x8700daec35af8ff88c16bdf0418774cb3d7599b4": { - "address": "0x8700daec35af8ff88c16bdf0418774cb3d7599b4", - "symbol": "SNX", - "decimals": 18, - "name": "Synthetix Network", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/10/0x8700daec35af8ff88c16bdf0418774cb3d7599b4.png", - "aggregators": [ - "Uniswap", - "1inch", - "LiFi", - "TrustWallet", - "Socket", - "Rubic", - "Squid", - "Rango", - "Sonarwatch", - "SushiSwap" - ], - "occurrences": 10 - }, - "0x0994206dfe8de6ec6920ff4d779b0d950605fb53": { - "address": "0x0994206dfe8de6ec6920ff4d779b0d950605fb53", - "symbol": "CRV", - "decimals": 18, - "name": "Curve DAO Token", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/10/0x0994206dfe8de6ec6920ff4d779b0d950605fb53.png", - "aggregators": [ - "Uniswap", - "1inch", - "LiFi", - "Socket", - "Rubic", - "Squid", - "Rango", - "Sonarwatch", - "SushiSwap" - ], - "occurrences": 9 - }, - "0xda10009cbd5d07dd0cecc66161fc93d7c9000da1": { - "address": "0xda10009cbd5d07dd0cecc66161fc93d7c9000da1", - "symbol": "DAI", - "decimals": 18, - "name": "Dai Stablecoin", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/10/0xda10009cbd5d07dd0cecc66161fc93d7c9000da1.png", - "aggregators": [ - "Uniswap", - "1inch", - "LiFi", - "Socket", - "Rubic", - "Squid", - "Rango", - "Sonarwatch", - "SushiSwap" - ], - "occurrences": 9 - }, - "0x4200000000000000000000000000000000000042": { - "address": "0x4200000000000000000000000000000000000042", - "symbol": "OP", - "decimals": 18, - "name": "Optimism", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/10/0x4200000000000000000000000000000000000042.png", - "aggregators": [ - "Uniswap", - "1inch", - "LiFi", - "Socket", - "Rubic", - "Squid", - "Rango", - "Sonarwatch", - "SushiSwap" - ], - "occurrences": 9 - }, - "0x8c6f28f2f1a3c87f0f938b96d27520d9751ec8d9": { - "address": "0x8c6f28f2f1a3c87f0f938b96d27520d9751ec8d9", - "symbol": "SUSD", - "decimals": 18, - "name": "Synth sUSD", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/10/0x8c6f28f2f1a3c87f0f938b96d27520d9751ec8d9.png", - "aggregators": [ - "Uniswap", - "1inch", - "LiFi", - "Socket", - "Rubic", - "Squid", - "Rango", - "Sonarwatch", - "SushiSwap" - ], - "occurrences": 9 - }, - "0x94b008aa00579c1307b0ef2c499ad98a8ce58e58": { - "address": "0x94b008aa00579c1307b0ef2c499ad98a8ce58e58", - "symbol": "USDT", - "decimals": 6, - "name": "Tether USD", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/10/0x94b008aa00579c1307b0ef2c499ad98a8ce58e58.png", - "aggregators": [ - "Uniswap", - "1inch", - "LiFi", - "Socket", - "Rubic", - "Squid", - "Rango", - "Sonarwatch", - "SushiSwap" - ], - "occurrences": 9 - }, - "0x68f180fcce6836688e9084f035309e29bf0a2095": { - "address": "0x68f180fcce6836688e9084f035309e29bf0a2095", - "symbol": "WBTC", - "decimals": 8, - "name": "Wrapped BTC", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/10/0x68f180fcce6836688e9084f035309e29bf0a2095.png", - "aggregators": [ - "Uniswap", - "1inch", - "LiFi", - "Socket", - "Rubic", - "Squid", - "Rango", - "Sonarwatch", - "SushiSwap" - ], - "occurrences": 9 - }, - "0x1f32b1c2345538c0c6f582fcb022739c4a194ebb": { - "address": "0x1f32b1c2345538c0c6f582fcb022739c4a194ebb", - "symbol": "WSTETH", - "decimals": 18, - "name": "Wrapped liquid staked Ether 2.0", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/10/0x1f32b1c2345538c0c6f582fcb022739c4a194ebb.png", - "aggregators": [ - "Uniswap", - "1inch", - "LiFi", - "Socket", - "Rubic", - "Squid", - "Rango", - "Sonarwatch", - "SushiSwap" - ], - "occurrences": 9 - }, - "0x350a791bfc2c21f9ed5d10980dad2e2638ffa7f6": { - "address": "0x350a791bfc2c21f9ed5d10980dad2e2638ffa7f6", - "symbol": "LINK", - "decimals": 18, - "name": "ChainLink", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/10/0x350a791bfc2c21f9ed5d10980dad2e2638ffa7f6.png", - "aggregators": [ - "Uniswap", - "1inch", - "LiFi", - "TrustWallet", - "Socket", - "Rubic", - "Squid", - "Rango", - "Sonarwatch", - "SushiSwap" - ], - "occurrences": 10 - }, - "0x4200000000000000000000000000000000000006": { - "address": "0x4200000000000000000000000000000000000006", - "symbol": "WETH", - "decimals": 18, - "name": "Wrapped Ether", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/10/0x4200000000000000000000000000000000000006.png", - "aggregators": [ - "Uniswap", - "1inch", - "LiFi", - "TrustWallet", - "Socket", - "Rubic", - "Squid", - "Rango", - "Sonarwatch", - "SushiSwap" - ], - "occurrences": 10 - }, - "0x76fb31fb4af56892a25e32cfc43de717950c9278": { - "address": "0x76fb31fb4af56892a25e32cfc43de717950c9278", - "symbol": "AAVE", - "decimals": 18, - "name": "Aave Token", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/10/0x76fb31fb4af56892a25e32cfc43de717950c9278.png", - "aggregators": [ - "Uniswap", - "1inch", - "LiFi", - "Socket", - "Rubic", - "Squid", - "Rango", - "Sonarwatch", - "SushiSwap" - ], - "occurrences": 9 - }, - "0x9e1028f5f1d5ede59748ffcee5532509976840e0": { - "address": "0x9e1028f5f1d5ede59748ffcee5532509976840e0", - "symbol": "PERP", - "decimals": 18, - "name": "Perpetual", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/10/0x9e1028f5f1d5ede59748ffcee5532509976840e0.png", - "aggregators": [ - "Uniswap", - "1inch", - "LiFi", - "TrustWallet", - "Socket", - "Rubic", - "Squid", - "Rango", - "SushiSwap" - ], - "occurrences": 9 - }, - "0x217d47011b23bb961eb6d93ca9945b7501a5bb11": { - "address": "0x217d47011b23bb961eb6d93ca9945b7501a5bb11", - "symbol": "THALES", - "decimals": 18, - "name": "Optimistic Thales Token", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/10/0x217d47011b23bb961eb6d93ca9945b7501a5bb11.png", - "aggregators": [ - "Uniswap", - "1inch", - "LiFi", - "Socket", - "Rubic", - "Squid", - "Rango", - "Sonarwatch", - "SushiSwap" - ], - "occurrences": 9 - }, - "0x8ae125e8653821e851f12a49f7765db9a9ce7384": { - "address": "0x8ae125e8653821e851f12a49f7765db9a9ce7384", - "symbol": "DOLA", - "decimals": 18, - "name": "Dola USD Stablecoin", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/10/0x8ae125e8653821e851f12a49f7765db9a9ce7384.png", - "aggregators": [ - "Uniswap", - "1inch", - "LiFi", - "Socket", - "Rubic", - "Squid", - "Rango", - "Sonarwatch", - "SushiSwap" - ], - "occurrences": 9 - }, - "0x9bcef72be871e61ed4fbbc7630889bee758eb81d": { - "address": "0x9bcef72be871e61ed4fbbc7630889bee758eb81d", - "symbol": "RETH", - "decimals": 18, - "name": "Rocket Pool ETH", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/10/0x9bcef72be871e61ed4fbbc7630889bee758eb81d.png", - "aggregators": [ - "Uniswap", - "1inch", - "LiFi", - "Socket", - "Rubic", - "Squid", - "Rango", - "Sonarwatch", - "SushiSwap" - ], - "occurrences": 9 - }, - "0x2e3d870790dc77a83dd1d18184acc7439a53f475": { - "address": "0x2e3d870790dc77a83dd1d18184acc7439a53f475", - "symbol": "FRAX", - "decimals": 18, - "name": "Frax", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/10/0x2e3d870790dc77a83dd1d18184acc7439a53f475.png", - "aggregators": [ - "Uniswap", - "1inch", - "LiFi", - "Socket", - "Rubic", - "Squid", - "Rango", - "SushiSwap" - ], - "occurrences": 8 - }, - "0xc40f949f8a4e094d1b49a23ea9241d289b7b2819": { - "address": "0xc40f949f8a4e094d1b49a23ea9241d289b7b2819", - "symbol": "LUSD", - "decimals": 18, - "name": "LUSD Stablecoin", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/10/0xc40f949f8a4e094d1b49a23ea9241d289b7b2819.png", - "aggregators": [ - "Uniswap", - "LiFi", - "Socket", - "Rubic", - "Squid", - "Rango", - "Sonarwatch", - "SushiSwap" - ], - "occurrences": 8 - }, - "0x0b2c639c533813f4aa9d7837caf62653d097ff85": { - "address": "0x0b2c639c533813f4aa9d7837caf62653d097ff85", - "symbol": "USDC", - "decimals": 6, - "name": "USD Coin", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/10/0x0b2c639c533813f4aa9d7837caf62653d097ff85.png", - "aggregators": [ - "Uniswap", - "1inch", - "LiFi", - "Socket", - "Rubic", - "Squid", - "Rango", - "SushiSwap" - ], - "occurrences": 8 - }, - "0xf98dcd95217e15e05d8638da4c91125e59590b07": { - "address": "0xf98dcd95217e15e05d8638da4c91125e59590b07", - "symbol": "KROM", - "decimals": 18, - "name": "Kromatika", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/10/0xf98dcd95217e15e05d8638da4c91125e59590b07.png", - "aggregators": [ - "Uniswap", - "1inch", - "LiFi", - "TrustWallet", - "Socket", - "Rubic", - "Squid", - "Rango", - "Sonarwatch", - "SushiSwap" - ], - "occurrences": 10 - }, - "0x61baadcf22d2565b0f471b291c475db5555e0b76": { - "address": "0x61baadcf22d2565b0f471b291c475db5555e0b76", - "symbol": "AELIN", - "decimals": 18, - "name": "Aelin Token", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/10/0x61baadcf22d2565b0f471b291c475db5555e0b76.png", - "aggregators": [ - "Uniswap", - "1inch", - "LiFi", - "TrustWallet", - "Rubic", - "Squid", - "Rango", - "Sonarwatch", - "SushiSwap" - ], - "occurrences": 9 - }, - "0xb0b195aefa3650a6908f15cdac7d92f8a5791b0b": { - "address": "0xb0b195aefa3650a6908f15cdac7d92f8a5791b0b", - "symbol": "BOB", - "decimals": 18, - "name": "BOB", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/10/0xb0b195aefa3650a6908f15cdac7d92f8a5791b0b.png", - "aggregators": [ - "Uniswap", - "1inch", - "LiFi", - "Socket", - "Rubic", - "Squid", - "Rango", - "Sonarwatch", - "SushiSwap" - ], - "occurrences": 9 - }, - "0xfdb794692724153d1488ccdbe0c56c252596735f": { - "address": "0xfdb794692724153d1488ccdbe0c56c252596735f", - "symbol": "LDO", - "decimals": 18, - "name": "Lido DAO Token", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/10/0xfdb794692724153d1488ccdbe0c56c252596735f.png", - "aggregators": [ - "Uniswap", - "LiFi", - "Socket", - "Rubic", - "Squid", - "Rango", - "Sonarwatch", - "SushiSwap" - ], - "occurrences": 8 - }, - "0x7fb688ccf682d58f86d7e38e03f9d22e7705448b": { - "address": "0x7fb688ccf682d58f86d7e38e03f9d22e7705448b", - "symbol": "RAI", - "decimals": 18, - "name": "Rai Reflex Index", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/10/0x7fb688ccf682d58f86d7e38e03f9d22e7705448b.png", - "aggregators": [ - "Uniswap", - "1inch", - "LiFi", - "Socket", - "Rubic", - "Rango", - "Sonarwatch", - "SushiSwap" - ], - "occurrences": 8 - }, - "0xe405de8f52ba7559f9df3c368500b6e6ae6cee49": { - "address": "0xe405de8f52ba7559f9df3c368500b6e6ae6cee49", - "symbol": "SETH", - "decimals": 18, - "name": "Synthetic Ether", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/10/0xe405de8f52ba7559f9df3c368500b6e6ae6cee49.png", - "aggregators": [ - "Uniswap", - "1inch", - "LiFi", - "Socket", - "Rubic", - "Rango", - "Sonarwatch", - "SushiSwap" - ], - "occurrences": 8 - }, - "0xbfd291da8a403daaf7e5e9dc1ec0aceacd4848b9": { - "address": "0xbfd291da8a403daaf7e5e9dc1ec0aceacd4848b9", - "symbol": "USX", - "decimals": 18, - "name": "dForce USD", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/10/0xbfd291da8a403daaf7e5e9dc1ec0aceacd4848b9.png", - "aggregators": [ - "Uniswap", - "LiFi", - "Socket", - "Rubic", - "Squid", - "Rango", - "Sonarwatch", - "SushiSwap" - ], - "occurrences": 8 - }, - "0xa00e3a3511aac35ca78530c85007afcd31753819": { - "address": "0xa00e3a3511aac35ca78530c85007afcd31753819", - "symbol": "KNC", - "decimals": 18, - "name": "Kyber Network Crystal v2", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/10/0xa00e3a3511aac35ca78530c85007afcd31753819.png", - "aggregators": [ - "Uniswap", - "LiFi", - "Socket", - "Rubic", - "Squid", - "Rango", - "Sonarwatch", - "SushiSwap" - ], - "occurrences": 8 - }, - "0xaf9fe3b5ccdae78188b1f8b9a49da7ae9510f151": { - "address": "0xaf9fe3b5ccdae78188b1f8b9a49da7ae9510f151", - "symbol": "DHT", - "decimals": 18, - "name": "dHEDGE DAO Token", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/10/0xaf9fe3b5ccdae78188b1f8b9a49da7ae9510f151.png", - "aggregators": [ - "Uniswap", - "1inch", - "LiFi", - "Socket", - "Rubic", - "Rango", - "SushiSwap" - ], - "occurrences": 7 - }, - "0x6fd9d7ad17242c41f7131d257212c54a0e816691": { - "address": "0x6fd9d7ad17242c41f7131d257212c54a0e816691", - "symbol": "UNI", - "decimals": 18, - "name": "Uniswap", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/10/0x6fd9d7ad17242c41f7131d257212c54a0e816691.png", - "aggregators": [ - "Uniswap", - "LiFi", - "Socket", - "Rubic", - "Rango", - "SushiSwap" - ], - "occurrences": 6 - }, - "0x7f5c764cbc14f9669b88837ca1490cca17c31607": { - "address": "0x7f5c764cbc14f9669b88837ca1490cca17c31607", - "symbol": "USDC.E", - "decimals": 6, - "name": "USD Coin", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/10/0x7f5c764cbc14f9669b88837ca1490cca17c31607.png", - "aggregators": [ - "Uniswap", - "1inch", - "LiFi", - "Socket", - "Rubic", - "Squid", - "Rango", - "Sonarwatch", - "SushiSwap" - ], - "occurrences": 9 - }, - "0x395ae52bb17aef68c2888d941736a71dc6d4e125": { - "address": "0x395ae52bb17aef68c2888d941736a71dc6d4e125", - "symbol": "POOL", - "decimals": 18, - "name": "PoolTogether", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/10/0x395ae52bb17aef68c2888d941736a71dc6d4e125.png", - "aggregators": [ - "Uniswap", - "LiFi", - "Socket", - "Rubic", - "Squid", - "Rango", - "Sonarwatch", - "SushiSwap" - ], - "occurrences": 8 - }, - "0x50c5725949a6f0c72e6c4a641f24049a917db0cb": { - "address": "0x50c5725949a6f0c72e6c4a641f24049a917db0cb", - "symbol": "LYRA", - "decimals": 18, - "name": "Lyra", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/10/0x50c5725949a6f0c72e6c4a641f24049a917db0cb.png", - "aggregators": [ - "Uniswap", - "LiFi", - "Socket", - "Rubic", - "Squid", - "Rango", - "Sonarwatch", - "SushiSwap" - ], - "occurrences": 8 - }, - "0xaddb6a0412de1ba0f936dcaeb8aaa24578dcf3b2": { - "address": "0xaddb6a0412de1ba0f936dcaeb8aaa24578dcf3b2", - "symbol": "CBETH", - "decimals": 18, - "name": "Coinbase Wrapped Staked ETH", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/10/0xaddb6a0412de1ba0f936dcaeb8aaa24578dcf3b2.png", - "aggregators": [ - "Uniswap", - "LiFi", - "Socket", - "Rubic", - "Rango", - "Sonarwatch", - "SushiSwap" - ], - "occurrences": 7 - }, - "0xbc7b1ff1c6989f006a1185318ed4e7b5796e66e1": { - "address": "0xbc7b1ff1c6989f006a1185318ed4e7b5796e66e1", - "symbol": "PENDLE", - "decimals": 18, - "name": "Pendle", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/10/0xbc7b1ff1c6989f006a1185318ed4e7b5796e66e1.png", - "aggregators": [ - "Uniswap", - "1inch", - "LiFi", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 7 - }, - "0xdc6ff44d5d932cbd77b52e5612ba0529dc6226f1": { - "address": "0xdc6ff44d5d932cbd77b52e5612ba0529dc6226f1", - "symbol": "WLD", - "decimals": 18, - "name": "Worldcoin", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/10/0xdc6ff44d5d932cbd77b52e5612ba0529dc6226f1.png", - "aggregators": [ - "Uniswap", - "1inch", - "LiFi", - "Rubic", - "Squid", - "Rango", - "Sonarwatch" - ], - "occurrences": 7 - }, - "0xc5102fe9359fd9a28f877a67e36b0f050d81a3cc": { - "address": "0xc5102fe9359fd9a28f877a67e36b0f050d81a3cc", - "symbol": "HOP", - "decimals": 18, - "name": "Hop Protocol", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/10/0xc5102fe9359fd9a28f877a67e36b0f050d81a3cc.png", - "aggregators": [ - "Uniswap", - "1inch", - "LiFi", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 7 - }, - "0xcb59a0a753fdb7491d5f3d794316f1ade197b21e": { - "address": "0xcb59a0a753fdb7491d5f3d794316f1ade197b21e", - "symbol": "TUSD", - "decimals": 18, - "name": "TrueUSD", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/10/0xcb59a0a753fdb7491d5f3d794316f1ade197b21e.png", - "aggregators": [ - "Uniswap", - "LiFi", - "Socket", - "Rubic", - "Rango", - "Sonarwatch", - "SushiSwap" - ], - "occurrences": 7 - }, - "0x73cb180bf0521828d8849bc8cf2b920918e23032": { - "address": "0x73cb180bf0521828d8849bc8cf2b920918e23032", - "symbol": "USD+", - "decimals": 6, - "name": "Overnight.fi USD+ (Optimism)", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/10/0x73cb180bf0521828d8849bc8cf2b920918e23032.png", - "aggregators": [ - "Uniswap", - "1inch", - "LiFi", - "Rubic", - "Squid", - "Rango", - "Sonarwatch" - ], - "occurrences": 7 - }, - "0xff733b2a3557a7ed6697007ab5d11b79fdd1b76b": { - "address": "0xff733b2a3557a7ed6697007ab5d11b79fdd1b76b", - "symbol": "ACX", - "decimals": 18, - "name": "Across Protocol Token", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/10/0xff733b2a3557a7ed6697007ab5d11b79fdd1b76b.png", - "aggregators": [ - "Uniswap", - "LiFi", - "Rubic", - "Rango", - "Sonarwatch", - "SushiSwap" - ], - "occurrences": 6 - }, - "0x528cdc92eab044e1e39fe43b9514bfdab4412b98": { - "address": "0x528cdc92eab044e1e39fe43b9514bfdab4412b98", - "symbol": "GIV", - "decimals": 18, - "name": "Giveth Token", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/10/0x528cdc92eab044e1e39fe43b9514bfdab4412b98.png", - "aggregators": [ - "Uniswap", - "1inch", - "LiFi", - "Socket", - "Rubic", - "Squid", - "Rango", - "Sonarwatch", - "SushiSwap" - ], - "occurrences": 9 - }, - "0x3e29d3a9316dab217754d13b28646b76607c5f04": { - "address": "0x3e29d3a9316dab217754d13b28646b76607c5f04", - "symbol": "ALETH", - "decimals": 18, - "name": "Alchemix ETH", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/10/0x3e29d3a9316dab217754d13b28646b76607c5f04.png", - "aggregators": [ - "Uniswap", - "1inch", - "LiFi", - "Socket", - "Rubic", - "Squid", - "Rango", - "Sonarwatch" - ], - "occurrences": 8 - }, - "0xfe8b128ba8c78aabc59d4c64cee7ff28e9379921": { - "address": "0xfe8b128ba8c78aabc59d4c64cee7ff28e9379921", - "symbol": "BAL", - "decimals": 18, - "name": "Balancer", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/10/0xfe8b128ba8c78aabc59d4c64cee7ff28e9379921.png", - "aggregators": [ - "Uniswap", - "LiFi", - "Socket", - "Rubic", - "Rango", - "Sonarwatch", - "SushiSwap" - ], - "occurrences": 7 - }, - "0x3e7ef8f50246f725885102e8238cbba33f276747": { - "address": "0x3e7ef8f50246f725885102e8238cbba33f276747", - "symbol": "BOND", - "decimals": 18, - "name": "BarnBridge Governance Token", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/10/0x3e7ef8f50246f725885102e8238cbba33f276747.png", - "aggregators": [ - "Uniswap", - "LiFi", - "Socket", - "Rubic", - "Rango", - "Sonarwatch", - "SushiSwap" - ], - "occurrences": 7 - }, - "0x1eba7a6a72c894026cd654ac5cdcf83a46445b08": { - "address": "0x1eba7a6a72c894026cd654ac5cdcf83a46445b08", - "symbol": "GTC", - "decimals": 18, - "name": "Gitcoin", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/10/0x1eba7a6a72c894026cd654ac5cdcf83a46445b08.png", - "aggregators": [ - "Uniswap", - "LiFi", - "Socket", - "Rubic", - "Squid", - "Rango", - "SushiSwap" - ], - "occurrences": 7 - }, - "0x4f604735c1cf31399c6e711d5962b2b3e0225ad3": { - "address": "0x4f604735c1cf31399c6e711d5962b2b3e0225ad3", - "symbol": "USDGLO", - "decimals": 18, - "name": "Glo Dollar", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/10/0x4f604735c1cf31399c6e711d5962b2b3e0225ad3.png", - "aggregators": [ - "Uniswap", - "LiFi", - "Socket", - "Rubic", - "Squid", - "Rango", - "Sonarwatch" - ], - "occurrences": 7 - }, - "0x374ad0f47f4ca39c78e5cc54f1c9e426ff8f231a": { - "address": "0x374ad0f47f4ca39c78e5cc54f1c9e426ff8f231a", - "symbol": "PREMIA", - "decimals": 18, - "name": "Premia", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/10/0x374ad0f47f4ca39c78e5cc54f1c9e426ff8f231a.png", - "aggregators": [ - "Uniswap", - "LiFi", - "Socket", - "Rubic", - "Rango", - "Sonarwatch", - "SushiSwap" - ], - "occurrences": 7 - }, - "0x929b939f8524c3be977af57a4a0ad3fb1e374b50": { - "address": "0x929b939f8524c3be977af57a4a0ad3fb1e374b50", - "symbol": "MTA", - "decimals": 18, - "name": "mStable Governance: Meta", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/10/0x929b939f8524c3be977af57a4a0ad3fb1e374b50.png", - "aggregators": [ - "Uniswap", - "LiFi", - "Socket", - "Rubic", - "Squid", - "Rango", - "Sonarwatch" - ], - "occurrences": 7 - }, - "0x65559aa14915a70190438ef90104769e5e890a00": { - "address": "0x65559aa14915a70190438ef90104769e5e890a00", - "symbol": "ENS", - "decimals": 18, - "name": "Ethereum Name Service", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/10/0x65559aa14915a70190438ef90104769e5e890a00.png", - "aggregators": [ - "Uniswap", - "LiFi", - "Socket", - "Rubic", - "Rango", - "SushiSwap" - ], - "occurrences": 6 - }, - "0x67ccea5bb16181e7b4109c9c2143c24a1c2205be": { - "address": "0x67ccea5bb16181e7b4109c9c2143c24a1c2205be", - "symbol": "FXS", - "decimals": 18, - "name": "Frax Share", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/10/0x67ccea5bb16181e7b4109c9c2143c24a1c2205be.png", - "aggregators": [ - "Uniswap", - "LiFi", - "Socket", - "Rubic", - "Rango", - "SushiSwap" - ], - "occurrences": 6 - }, - "0xfeaa9194f9f8c1b65429e31341a103071464907e": { - "address": "0xfeaa9194f9f8c1b65429e31341a103071464907e", - "symbol": "LRC", - "decimals": 18, - "name": "LoopringCoin V2", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/10/0xfeaa9194f9f8c1b65429e31341a103071464907e.png", - "aggregators": [ - "Uniswap", - "LiFi", - "Socket", - "Rubic", - "Rango", - "SushiSwap" - ], - "occurrences": 6 - }, - "0xab7badef82e9fe11f6f33f87bc9bc2aa27f2fcb5": { - "address": "0xab7badef82e9fe11f6f33f87bc9bc2aa27f2fcb5", - "symbol": "MKR", - "decimals": 18, - "name": "Maker", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/10/0xab7badef82e9fe11f6f33f87bc9bc2aa27f2fcb5.png", - "aggregators": [ - "Uniswap", - "LiFi", - "Socket", - "Rubic", - "Rango", - "SushiSwap" - ], - "occurrences": 6 - }, - "0xe7798f023fc62146e8aa1b36da45fb70855a77ea": { - "address": "0xe7798f023fc62146e8aa1b36da45fb70855a77ea", - "symbol": "UMA", - "decimals": 18, - "name": "UMA Voting Token v1", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/10/0xe7798f023fc62146e8aa1b36da45fb70855a77ea.png", - "aggregators": [ - "Uniswap", - "LiFi", - "Socket", - "Rubic", - "Rango", - "SushiSwap" - ], - "occurrences": 6 - }, - "0xd1917629b3e6a72e6772aab5dbe58eb7fa3c2f33": { - "address": "0xd1917629b3e6a72e6772aab5dbe58eb7fa3c2f33", - "symbol": "ZRX", - "decimals": 18, - "name": "0x Protocol Token", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/10/0xd1917629b3e6a72e6772aab5dbe58eb7fa3c2f33.png", - "aggregators": [ - "Uniswap", - "LiFi", - "Socket", - "Rubic", - "Rango", - "SushiSwap" - ], - "occurrences": 6 - }, - "0x6806411765af15bddd26f8f544a34cc40cb9838b": { - "address": "0x6806411765af15bddd26f8f544a34cc40cb9838b", - "symbol": "FRXETH", - "decimals": 18, - "name": "Frax Ether", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/10/0x6806411765af15bddd26f8f544a34cc40cb9838b.png", - "aggregators": [ - "Uniswap", - "LiFi", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 6 - }, - "0xe0bb0d3de8c10976511e5030ca403dbf4c25165b": { - "address": "0xe0bb0d3de8c10976511e5030ca403dbf4c25165b", - "symbol": "0XBTC", - "decimals": 8, - "name": "0xBitcoin", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/10/0xe0bb0d3de8c10976511e5030ca403dbf4c25165b.png", - "aggregators": [ - "Uniswap", - "LiFi", - "Socket", - "Rubic", - "Rango", - "SushiSwap" - ], - "occurrences": 6 - }, - "0xc98b98d17435aa00830c87ea02474c5007e1f272": { - "address": "0xc98b98d17435aa00830c87ea02474c5007e1f272", - "symbol": "BITBTC", - "decimals": 18, - "name": "BitBTC", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/10/0xc98b98d17435aa00830c87ea02474c5007e1f272.png", - "aggregators": [ - "Uniswap", - "LiFi", - "Socket", - "Rubic", - "Rango", - "SushiSwap" - ], - "occurrences": 6 - }, - "0x81ab7e0d570b01411fcc4afd3d50ec8c241cb74b": { - "address": "0x81ab7e0d570b01411fcc4afd3d50ec8c241cb74b", - "symbol": "EQZ", - "decimals": 18, - "name": "Equalizer", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/10/0x81ab7e0d570b01411fcc4afd3d50ec8c241cb74b.png", - "aggregators": [ - "Uniswap", - "LiFi", - "Socket", - "Rubic", - "Rango", - "SushiSwap" - ], - "occurrences": 6 - }, - "0x7b0bcc23851bbf7601efc9e9fe532bf5284f65d3": { - "address": "0x7b0bcc23851bbf7601efc9e9fe532bf5284f65d3", - "symbol": "EST", - "decimals": 18, - "name": "Erica Social Token", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/10/0x7b0bcc23851bbf7601efc9e9fe532bf5284f65d3.png", - "aggregators": [ - "Uniswap", - "LiFi", - "Socket", - "Rubic", - "Rango", - "SushiSwap" - ], - "occurrences": 6 - }, - "0x117cfd9060525452db4a34d51c0b3b7599087f05": { - "address": "0x117cfd9060525452db4a34d51c0b3b7599087f05", - "symbol": "GYSR", - "decimals": 18, - "name": "Geyser", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/10/0x117cfd9060525452db4a34d51c0b3b7599087f05.png", - "aggregators": [ - "Uniswap", - "LiFi", - "Socket", - "Rubic", - "Rango", - "SushiSwap" - ], - "occurrences": 6 - }, - "0x00f932f0fe257456b32deda4758922e56a4f4b42": { - "address": "0x00f932f0fe257456b32deda4758922e56a4f4b42", - "symbol": "PAPER", - "decimals": 18, - "name": "Paper", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/10/0x00f932f0fe257456b32deda4758922e56a4f4b42.png", - "aggregators": [ - "Uniswap", - "LiFi", - "Socket", - "Rubic", - "Rango", - "SushiSwap" - ], - "occurrences": 6 - }, - "0x298b9b95708152ff6968aafd889c6586e9169f1d": { - "address": "0x298b9b95708152ff6968aafd889c6586e9169f1d", - "symbol": "SBTC", - "decimals": 18, - "name": "Synthetic Bitcoin", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/10/0x298b9b95708152ff6968aafd889c6586e9169f1d.png", - "aggregators": [ - "Uniswap", - "LiFi", - "Socket", - "Rubic", - "Rango", - "SushiSwap" - ], - "occurrences": 6 - }, - "0xc5db22719a06418028a40a9b5e9a7c02959d0d08": { - "address": "0xc5db22719a06418028a40a9b5e9a7c02959d0d08", - "symbol": "SLINK", - "decimals": 18, - "name": "Synthetic Chainlink", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/10/0xc5db22719a06418028a40a9b5e9a7c02959d0d08.png", - "aggregators": [ - "Uniswap", - "LiFi", - "Socket", - "Rubic", - "Rango", - "SushiSwap" - ], - "occurrences": 6 - }, - "0x7113370218f31764c1b6353bdf6004d86ff6b9cc": { - "address": "0x7113370218f31764c1b6353bdf6004d86ff6b9cc", - "symbol": "USDD", - "decimals": 18, - "name": "Decentralized USD", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/10/0x7113370218f31764c1b6353bdf6004d86ff6b9cc.png", - "aggregators": [ - "Uniswap", - "LiFi", - "Socket", - "Rubic", - "Rango", - "SushiSwap" - ], - "occurrences": 6 - }, - "0xb548f63d4405466b36c0c0ac3318a22fdcec711a": { - "address": "0xb548f63d4405466b36c0c0ac3318a22fdcec711a", - "symbol": "RGT", - "decimals": 18, - "name": "Rari Governance Token", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/10/0xb548f63d4405466b36c0c0ac3318a22fdcec711a.png", - "aggregators": ["Uniswap", "LiFi", "Socket", "Rango", "SushiSwap"], - "occurrences": 5 - }, - "0x3c8b650257cfb5f272f799f5e2b4e65093a11a05": { - "address": "0x3c8b650257cfb5f272f799f5e2b4e65093a11a05", - "symbol": "VELO", - "decimals": 18, - "name": "VELO", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/10/0x3c8b650257cfb5f272f799f5e2b4e65093a11a05.png", - "aggregators": ["Uniswap", "LiFi", "Rubic", "Squid", "Rango"], - "occurrences": 5 - }, - "0xdfa46478f9e5ea86d57387849598dbfb2e964b02": { - "address": "0xdfa46478f9e5ea86d57387849598dbfb2e964b02", - "symbol": "MAI", - "decimals": 18, - "name": "Mai Stablecoin", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/10/0xdfa46478f9e5ea86d57387849598dbfb2e964b02.png", - "aggregators": [ - "OpenSwap", - "1inch", - "LiFi", - "Socket", - "Rubic", - "Squid", - "Rango", - "Sonarwatch", - "SushiSwap" - ], - "occurrences": 9 - }, - "0xcb8fa9a76b8e203d8c3797bf438d8fb81ea3326a": { - "address": "0xcb8fa9a76b8e203d8c3797bf438d8fb81ea3326a", - "symbol": "ALUSD", - "decimals": 18, - "name": "Alchemix USD", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/10/0xcb8fa9a76b8e203d8c3797bf438d8fb81ea3326a.png", - "aggregators": [ - "CoinGecko", - "1inch", - "LiFi", - "Socket", - "Rubic", - "Squid", - "Rango", - "Sonarwatch" - ], - "occurrences": 8 - }, - "0x296f55f8fb28e498b858d0bcda06d955b2cb3f97": { - "address": "0x296f55f8fb28e498b858d0bcda06d955b2cb3f97", - "symbol": "STG", - "decimals": 18, - "name": "Stargate Finance", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/10/0x296f55f8fb28e498b858d0bcda06d955b2cb3f97.png", - "aggregators": [ - "CoinGecko", - "1inch", - "LiFi", - "Socket", - "Rubic", - "Squid", - "Rango", - "Sonarwatch" - ], - "occurrences": 8 - }, - "0xec6adef5e1006bb305bb1975333e8fc4071295bf": { - "address": "0xec6adef5e1006bb305bb1975333e8fc4071295bf", - "symbol": "CTSI", - "decimals": 18, - "name": "Cartesi", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/10/0xec6adef5e1006bb305bb1975333e8fc4071295bf.png", - "aggregators": [ - "Uniswap", - "LiFi", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 6 - }, - "0x2561aa2bb1d2eb6629edd7b0938d7679b8b49f9e": { - "address": "0x2561aa2bb1d2eb6629edd7b0938d7679b8b49f9e", - "symbol": "OCEAN", - "decimals": 18, - "name": "Ocean Protocol", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/10/0x2561aa2bb1d2eb6629edd7b0938d7679b8b49f9e.png", - "aggregators": [ - "Uniswap", - "LiFi", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 6 - }, - "0xef6301da234fc7b0545c6e877d3359fe0b9e50a4": { - "address": "0xef6301da234fc7b0545c6e877d3359fe0b9e50a4", - "symbol": "SUKU", - "decimals": 18, - "name": "SUKU", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/10/0xef6301da234fc7b0545c6e877d3359fe0b9e50a4.png", - "aggregators": [ - "Uniswap", - "LiFi", - "Socket", - "Rubic", - "Rango", - "SushiSwap" - ], - "occurrences": 6 - }, - "0xaf8ca653fa2772d58f4368b0a71980e9e3ceb888": { - "address": "0xaf8ca653fa2772d58f4368b0a71980e9e3ceb888", - "symbol": "TRB", - "decimals": 18, - "name": "Tellor Tributes", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/10/0xaf8ca653fa2772d58f4368b0a71980e9e3ceb888.png", - "aggregators": [ - "Uniswap", - "LiFi", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 6 - }, - "0x9046d36440290ffde54fe0dd84db8b1cfee9107b": { - "address": "0x9046d36440290ffde54fe0dd84db8b1cfee9107b", - "symbol": "YFI", - "decimals": 18, - "name": "yearn.finance", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/10/0x9046d36440290ffde54fe0dd84db8b1cfee9107b.png", - "aggregators": [ - "Uniswap", - "LiFi", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 6 - }, - "0xc3248a1bd9d72fa3da6e6ba701e58cbf818354eb": { - "address": "0xc3248a1bd9d72fa3da6e6ba701e58cbf818354eb", - "symbol": "HANEP", - "decimals": 18, - "name": "HANePlatform", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/10/0xc3248a1bd9d72fa3da6e6ba701e58cbf818354eb.png", - "aggregators": [ - "Uniswap", - "Socket", - "Rubic", - "Squid", - "Rango", - "Sonarwatch" - ], - "occurrences": 6 - }, - "0x29faf5905bff9cfcc7cf56a5ed91e0f091f8664b": { - "address": "0x29faf5905bff9cfcc7cf56a5ed91e0f091f8664b", - "symbol": "BANK", - "decimals": 18, - "name": "Bankless DAO", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/10/0x29faf5905bff9cfcc7cf56a5ed91e0f091f8664b.png", - "aggregators": [ - "Uniswap", - "LiFi", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 6 - }, - "0x2218a117083f5b482b0bb821d27056ba9c04b1d3": { - "address": "0x2218a117083f5b482b0bb821d27056ba9c04b1d3", - "symbol": "SDAI", - "decimals": 18, - "name": "Savings Dai", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/10/0x2218a117083f5b482b0bb821d27056ba9c04b1d3.png", - "aggregators": [ - "Uniswap", - "LiFi", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 6 - }, - "0xd3594e879b358f430e20f82bea61e83562d49d48": { - "address": "0xd3594e879b358f430e20f82bea61e83562d49d48", - "symbol": "PSP", - "decimals": 18, - "name": "ParaSwap", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/10/0xd3594e879b358f430e20f82bea61e83562d49d48.png", - "aggregators": [ - "Uniswap", - "LiFi", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 6 - }, - "0xc52d7f23a2e460248db6ee192cb23dd12bddcbf6": { - "address": "0xc52d7f23a2e460248db6ee192cb23dd12bddcbf6", - "symbol": "CRVUSD", - "decimals": 18, - "name": "crvUSD", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/10/0xc52d7f23a2e460248db6ee192cb23dd12bddcbf6.png", - "aggregators": [ - "Uniswap", - "LiFi", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 6 - }, - "0x50bce64397c75488465253c0a034b8097fea6578": { - "address": "0x50bce64397c75488465253c0a034b8097fea6578", - "symbol": "HAN", - "decimals": 18, - "name": "HanChain", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/10/0x50bce64397c75488465253c0a034b8097fea6578.png", - "aggregators": [ - "Uniswap", - "Socket", - "Rubic", - "Squid", - "Rango", - "Sonarwatch" - ], - "occurrences": 6 - }, - "0x1da650c3b2daa8aa9ff6f661d4156ce24d08a062": { - "address": "0x1da650c3b2daa8aa9ff6f661d4156ce24d08a062", - "symbol": "DCN", - "decimals": 0, - "name": "Dentacoin", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/10/0x1da650c3b2daa8aa9ff6f661d4156ce24d08a062.png", - "aggregators": [ - "Uniswap", - "Socket", - "Rubic", - "Rango", - "Sonarwatch", - "SushiSwap" - ], - "occurrences": 6 - }, - "0x7c6b91d9be155a6db01f749217d76ff02a7227f2": { - "address": "0x7c6b91d9be155a6db01f749217d76ff02a7227f2", - "symbol": "SARCO", - "decimals": 18, - "name": "Sarcophagus", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/10/0x7c6b91d9be155a6db01f749217d76ff02a7227f2.png", - "aggregators": [ - "Uniswap", - "LiFi", - "Socket", - "Rubic", - "Rango", - "SushiSwap" - ], - "occurrences": 6 - }, - "0xcfd1d50ce23c46d3cf6407487b2f8934e96dc8f9": { - "address": "0xcfd1d50ce23c46d3cf6407487b2f8934e96dc8f9", - "symbol": "SPANK", - "decimals": 18, - "name": "SPANK", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/10/0xcfd1d50ce23c46d3cf6407487b2f8934e96dc8f9.png", - "aggregators": [ - "Uniswap", - "LiFi", - "Socket", - "Rubic", - "Rango", - "SushiSwap" - ], - "occurrences": 6 - }, - "0xba28feb4b6a6b81e3f26f08b83a19e715c4294fd": { - "address": "0xba28feb4b6a6b81e3f26f08b83a19e715c4294fd", - "symbol": "UST", - "decimals": 6, - "name": "UST (Wormhole)", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/10/0xba28feb4b6a6b81e3f26f08b83a19e715c4294fd.png", - "aggregators": [ - "Uniswap", - "LiFi", - "Socket", - "Rubic", - "Rango", - "SushiSwap" - ], - "occurrences": 6 - }, - "0xe4f27b04cc7729901876b44f4eaa5102ec150265": { - "address": "0xe4f27b04cc7729901876b44f4eaa5102ec150265", - "symbol": "XCHF", - "decimals": 18, - "name": "CryptoFranc", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/10/0xe4f27b04cc7729901876b44f4eaa5102ec150265.png", - "aggregators": [ - "Uniswap", - "LiFi", - "Socket", - "Rubic", - "Rango", - "SushiSwap" - ], - "occurrences": 6 - }, - "0x9e5aac1ba1a2e6aed6b32689dfcf62a509ca96f3": { - "address": "0x9e5aac1ba1a2e6aed6b32689dfcf62a509ca96f3", - "symbol": "DF", - "decimals": 18, - "name": "dForce", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/10/0x9e5aac1ba1a2e6aed6b32689dfcf62a509ca96f3.png", - "aggregators": [ - "Uniswap", - "LiFi", - "Socket", - "Rubic", - "Rango", - "SushiSwap" - ], - "occurrences": 6 - }, - "0xf1a0da3367bc7aa04f8d94ba57b862ff37ced174": { - "address": "0xf1a0da3367bc7aa04f8d94ba57b862ff37ced174", - "symbol": "FOX", - "decimals": 18, - "name": "ShapeShift FOX", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/10/0xf1a0da3367bc7aa04f8d94ba57b862ff37ced174.png", - "aggregators": [ - "Uniswap", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x3390108e913824b8ead638444cc52b9abdf63798": { - "address": "0x3390108e913824b8ead638444cc52b9abdf63798", - "symbol": "MASK", - "decimals": 18, - "name": "Mask Network", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/10/0x3390108e913824b8ead638444cc52b9abdf63798.png", - "aggregators": ["Uniswap", "Socket", "Rubic", "Rango", "SushiSwap"], - "occurrences": 5 - }, - "0x3eaeb77b03dbc0f6321ae1b72b2e9adb0f60112b": { - "address": "0x3eaeb77b03dbc0f6321ae1b72b2e9adb0f60112b", - "symbol": "SUSHI", - "decimals": 18, - "name": "SushiToken", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/10/0x3eaeb77b03dbc0f6321ae1b72b2e9adb0f60112b.png", - "aggregators": ["Uniswap", "Socket", "Rubic", "Rango", "SushiSwap"], - "occurrences": 5 - }, - "0x747e42eb0591547a0ab429b3627816208c734ea7": { - "address": "0x747e42eb0591547a0ab429b3627816208c734ea7", - "symbol": "T", - "decimals": 18, - "name": "Threshold Network", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/10/0x747e42eb0591547a0ab429b3627816208c734ea7.png", - "aggregators": [ - "Uniswap", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x79e6c6b6aaba4432fabacb30cc0c879d8f3e598e": { - "address": "0x79e6c6b6aaba4432fabacb30cc0c879d8f3e598e", - "symbol": "FOAM", - "decimals": 18, - "name": "FOAM Token", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/10/0x79e6c6b6aaba4432fabacb30cc0c879d8f3e598e.png", - "aggregators": ["Uniswap", "LiFi", "Socket", "Rubic", "Rango"], - "occurrences": 5 - }, - "0x6af3cb766d6cd37449bfd321d961a61b0515c1bc": { - "address": "0x6af3cb766d6cd37449bfd321d961a61b0515c1bc", - "symbol": "OS", - "decimals": 18, - "name": "Ethereans", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/10/0x6af3cb766d6cd37449bfd321d961a61b0515c1bc.png", - "aggregators": [ - "Uniswap", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x5029c236320b8f15ef0a657054b84d90bfbeded3": { - "address": "0x5029c236320b8f15ef0a657054b84d90bfbeded3", - "symbol": "BITANT", - "decimals": 18, - "name": "BitANT", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/10/0x5029c236320b8f15ef0a657054b84d90bfbeded3.png", - "aggregators": ["Uniswap", "Socket", "Rubic", "Rango", "SushiSwap"], - "occurrences": 5 - }, - "0x3bb4445d30ac020a84c1b5a8a2c6248ebc9779d0": { - "address": "0x3bb4445d30ac020a84c1b5a8a2c6248ebc9779d0", - "symbol": "LIZ", - "decimals": 18, - "name": "Theranos Coin", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/10/0x3bb4445d30ac020a84c1b5a8a2c6248ebc9779d0.png", - "aggregators": ["Uniswap", "Socket", "Rubic", "Rango", "SushiSwap"], - "occurrences": 5 - }, - "0x703d57164ca270b0b330a87fd159cfef1490c0a5": { - "address": "0x703d57164ca270b0b330a87fd159cfef1490c0a5", - "symbol": "WAD", - "decimals": 18, - "name": "WardenSwap", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/10/0x703d57164ca270b0b330a87fd159cfef1490c0a5.png", - "aggregators": ["Uniswap", "LiFi", "Rubic", "Rango", "SushiSwap"], - "occurrences": 5 - }, - "0x7a1263ec3bf0a19e25c553b8a2c312e903262c5e": { - "address": "0x7a1263ec3bf0a19e25c553b8a2c312e903262c5e", - "symbol": "SAIL", - "decimals": 18, - "name": "SAIL Token", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/10/0x7a1263ec3bf0a19e25c553b8a2c312e903262c5e.png", - "aggregators": [ - "Uniswap", - "Rubic", - "Rango", - "Sonarwatch", - "SushiSwap" - ], - "occurrences": 5 - }, - "0x6985884c4392d348587b19cb9eaaf157f13271cd": { - "address": "0x6985884c4392d348587b19cb9eaaf157f13271cd", - "symbol": "ZRO", - "decimals": 18, - "name": "LayerZero", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/10/0x6985884c4392d348587b19cb9eaaf157f13271cd.png", - "aggregators": [ - "CoinGecko", - "1inch", - "LiFi", - "Socket", - "Rubic", - "Squid", - "Rango", - "Sonarwatch", - "SushiSwap" - ], - "occurrences": 9 - }, - "0x6c84a8f1c29108f47a79964b5fe888d4f4d0de40": { - "address": "0x6c84a8f1c29108f47a79964b5fe888d4f4d0de40", - "symbol": "TBTC", - "decimals": 18, - "name": "tBTC", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/10/0x6c84a8f1c29108f47a79964b5fe888d4f4d0de40.png", - "aggregators": [ - "CoinGecko", - "1inch", - "LiFi", - "Socket", - "Rubic", - "Squid", - "Rango", - "Sonarwatch" - ], - "occurrences": 8 - }, - "0xc55e93c62874d8100dbd2dfe307edc1036ad5434": { - "address": "0xc55e93c62874d8100dbd2dfe307edc1036ad5434", - "symbol": "MOOBIFI", - "decimals": 18, - "name": "Staked BIFI", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/10/0xc55e93c62874d8100dbd2dfe307edc1036ad5434.png", - "aggregators": [ - "CoinGecko", - "1inch", - "LiFi", - "Socket", - "Rubic", - "Squid", - "Rango", - "Sonarwatch" - ], - "occurrences": 8 - }, - "0x59d9356e565ab3a36dd77763fc0d87feaf85508c": { - "address": "0x59d9356e565ab3a36dd77763fc0d87feaf85508c", - "symbol": "USDM", - "decimals": 18, - "name": "Mountain Protocol USD", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/10/0x59d9356e565ab3a36dd77763fc0d87feaf85508c.png", - "aggregators": [ - "CoinGecko", - "1inch", - "LiFi", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 7 - }, - "0xc5b001dc33727f8f26880b184090d3e252470d45": { - "address": "0xc5b001dc33727f8f26880b184090d3e252470d45", - "symbol": "ERN", - "decimals": 18, - "name": "Ethos Reserve Note", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/10/0xc5b001dc33727f8f26880b184090d3e252470d45.png", - "aggregators": [ - "CoinGecko", - "Socket", - "Rubic", - "Squid", - "Rango", - "Sonarwatch" - ], - "occurrences": 6 - }, - "0x3e5d9d8a63cc8a88748f229999cf59487e90721e": { - "address": "0x3e5d9d8a63cc8a88748f229999cf59487e90721e", - "symbol": "XMT", - "decimals": 18, - "name": "MetalSwap", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/10/0x3e5d9d8a63cc8a88748f229999cf59487e90721e.png", - "aggregators": [ - "Uniswap", - "LiFi", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 6 - }, - "0x484c2d6e3cdd945a8b2df735e079178c1036578c": { - "address": "0x484c2d6e3cdd945a8b2df735e079178c1036578c", - "symbol": "SFRXETH", - "decimals": 18, - "name": "Staked Frax Ether", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/10/0x484c2d6e3cdd945a8b2df735e079178c1036578c.png", - "aggregators": [ - "Uniswap", - "LiFi", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 6 - }, - "0x66e535e8d2ebf13f49f3d49e5c50395a97c137b1": { - "address": "0x66e535e8d2ebf13f49f3d49e5c50395a97c137b1", - "symbol": "MOLTEN", - "decimals": 18, - "name": "Molten", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/10/0x66e535e8d2ebf13f49f3d49e5c50395a97c137b1.png", - "aggregators": [ - "CoinGecko", - "Socket", - "Rubic", - "Squid", - "Rango", - "Sonarwatch" - ], - "occurrences": 6 - }, - "0xc27d9bc194a648fe3069955a5126699c4e49351c": { - "address": "0xc27d9bc194a648fe3069955a5126699c4e49351c", - "symbol": "AMKT", - "decimals": 18, - "name": "Alongside Crypto Market Index", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/10/0xc27d9bc194a648fe3069955a5126699c4e49351c.png", - "aggregators": [ - "Uniswap", - "LiFi", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 6 - }, - "0x1db2466d9f5e10d7090e7152b68d62703a2245f0": { - "address": "0x1db2466d9f5e10d7090e7152b68d62703a2245f0", - "symbol": "SONNE", - "decimals": 18, - "name": "Sonne Finance", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/10/0x1db2466d9f5e10d7090e7152b68d62703a2245f0.png", - "aggregators": [ - "OpenSwap", - "LiFi", - "Rubic", - "Squid", - "Rango", - "Sonarwatch" - ], - "occurrences": 6 - }, - "0x920cf626a271321c151d027030d5d08af699456b": { - "address": "0x920cf626a271321c151d027030d5d08af699456b", - "symbol": "KWENTA", - "decimals": 18, - "name": "Kwenta", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/10/0x920cf626a271321c151d027030d5d08af699456b.png", - "aggregators": [ - "1inch", - "LiFi", - "Rubic", - "Squid", - "Rango", - "Sonarwatch" - ], - "occurrences": 6 - }, - "0xd8737ca46aa6285de7b8777a8e3db232911bad41": { - "address": "0xd8737ca46aa6285de7b8777a8e3db232911bad41", - "symbol": "FIS", - "decimals": 18, - "name": "StaFi Token", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/10/0xd8737ca46aa6285de7b8777a8e3db232911bad41.png", - "aggregators": ["Uniswap", "LiFi", "Socket", "Rubic", "Rango"], - "occurrences": 5 - }, - "0x3a18dcc9745edcd1ef33ecb93b0b6eba5671e7ca": { - "address": "0x3a18dcc9745edcd1ef33ecb93b0b6eba5671e7ca", - "symbol": "KUJI", - "decimals": 6, - "name": "KUJI", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/10/0x3a18dcc9745edcd1ef33ecb93b0b6eba5671e7ca.png", - "aggregators": ["UniswapLabs", "Socket", "Rubic", "Squid", "Rango"], - "occurrences": 5 - }, - "0xc81d1f0eb955b0c020e5d5b264e1ff72c14d1401": { - "address": "0xc81d1f0eb955b0c020e5d5b264e1ff72c14d1401", - "symbol": "RPL", - "decimals": 18, - "name": "Rocket Pool Protocol", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/10/0xc81d1f0eb955b0c020e5d5b264e1ff72c14d1401.png", - "aggregators": ["Uniswap", "LiFi", "Socket", "Rubic", "Rango"], - "occurrences": 5 - }, - "0x01bff41798a0bcf287b996046ca68b395dbc1071": { - "address": "0x01bff41798a0bcf287b996046ca68b395dbc1071", - "symbol": "USD₮0", - "decimals": 6, - "name": "USD₮0", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/10/0x01bff41798a0bcf287b996046ca68b395dbc1071.png", - "aggregators": ["Uniswap", "LiFi", "Rubic", "Squid", "Rango"], - "occurrences": 5 - }, - "0x871f2f2ff935fd1ed867842ff2a7bfd051a5e527": { - "address": "0x871f2f2ff935fd1ed867842ff2a7bfd051a5e527", - "symbol": "WOO", - "decimals": 18, - "name": "Wootrade Network", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/10/0x871f2f2ff935fd1ed867842ff2a7bfd051a5e527.png", - "aggregators": ["Uniswap", "LiFi", "Socket", "Rubic", "Rango"], - "occurrences": 5 - }, - "0x1217bfe6c773eec6cc4a38b5dc45b92292b6e189": { - "address": "0x1217bfe6c773eec6cc4a38b5dc45b92292b6e189", - "symbol": "OUSDT", - "decimals": 6, - "name": "OUSDT", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/10/0x1217bfe6c773eec6cc4a38b5dc45b92292b6e189.png", - "aggregators": ["CoinGecko", "LiFi", "Socket", "Rubic", "Rango"], - "occurrences": 5 - }, - "0xecf46257ed31c329f204eb43e254c609dee143b3": { - "address": "0xecf46257ed31c329f204eb43e254c609dee143b3", - "symbol": "GRG", - "decimals": 18, - "name": "RigoBlock", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/10/0xecf46257ed31c329f204eb43e254c609dee143b3.png", - "aggregators": [ - "Uniswap", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x7ff7fa94b8b66ef313f7970d4eebd2cb3103a2c0": { - "address": "0x7ff7fa94b8b66ef313f7970d4eebd2cb3103a2c0", - "symbol": "VANA", - "decimals": 18, - "name": "VANA", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/10/0x7ff7fa94b8b66ef313f7970d4eebd2cb3103a2c0.png", - "aggregators": ["CoinGecko", "LiFi", "Socket", "Rubic", "Rango"], - "occurrences": 5 - }, - "0xd8f365c2c85648f9b89d9f1bf72c0ae4b1c36cfd": { - "address": "0xd8f365c2c85648f9b89d9f1bf72c0ae4b1c36cfd", - "symbol": "THEDAO", - "decimals": 16, - "name": "TheDAO", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/10/0xd8f365c2c85648f9b89d9f1bf72c0ae4b1c36cfd.png", - "aggregators": ["Uniswap", "LiFi", "Rubic", "Rango", "SushiSwap"], - "occurrences": 5 - }, - "0x5465145a47260d5e715733997333a175d97285bb": { - "address": "0x5465145a47260d5e715733997333a175d97285bb", - "symbol": "HAIR", - "decimals": 18, - "name": "HairDAO Token", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/10/0x5465145a47260d5e715733997333a175d97285bb.png", - "aggregators": ["Uniswap", "LiFi", "Socket", "Rubic", "Rango"], - "occurrences": 5 - }, - "0x01b8b6384298d4848e3be63d4c9d17830eee488a": { - "address": "0x01b8b6384298d4848e3be63d4c9d17830eee488a", - "symbol": "HAUS", - "decimals": 18, - "name": "DAOhaus Token on Optimism", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/10/0x01b8b6384298d4848e3be63d4c9d17830eee488a.png", - "aggregators": ["Uniswap", "LiFi", "Socket", "Rubic", "Rango"], - "occurrences": 5 - }, - "0x6f0fecbc276de8fc69257065fe47c5a03d986394": { - "address": "0x6f0fecbc276de8fc69257065fe47c5a03d986394", - "symbol": "POP", - "decimals": 18, - "name": "Popcorn", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/10/0x6f0fecbc276de8fc69257065fe47c5a03d986394.png", - "aggregators": ["Uniswap", "LiFi", "Socket", "Rubic", "Rango"], - "occurrences": 5 - }, - "0x323665443cef804a3b5206103304bd4872ea4253": { - "address": "0x323665443cef804a3b5206103304bd4872ea4253", - "symbol": "USDV", - "decimals": 6, - "name": "Verified USD", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/10/0x323665443cef804a3b5206103304bd4872ea4253.png", - "aggregators": ["LiFi", "Socket", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 5 - }, - "0xfd389dc9533717239856190f42475d3f263a270d": { - "address": "0xfd389dc9533717239856190f42475d3f263a270d", - "symbol": "GRAIN", - "decimals": 18, - "name": "Granary", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/10/0xfd389dc9533717239856190f42475d3f263a270d.png", - "aggregators": ["Socket", "Rubic", "Squid", "Rango", "Sonarwatch"], - "occurrences": 5 - }, - "0x7d14206c937e70e19e3a5b94011faf0d5b3928e2": { - "address": "0x7d14206c937e70e19e3a5b94011faf0d5b3928e2", - "symbol": "VITA", - "decimals": 18, - "name": "VitaDAO Token", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/10/0x7d14206c937e70e19e3a5b94011faf0d5b3928e2.png", - "aggregators": ["Uniswap", "Socket", "Rubic", "Rango"], - "occurrences": 4 - }, - "0x14778860e937f509e651192a90589de711fb88a9": { - "address": "0x14778860e937f509e651192a90589de711fb88a9", - "symbol": "CYBER", - "decimals": 18, - "name": "CYBER", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/10/0x14778860e937f509e651192a90589de711fb88a9.png", - "aggregators": [ - "CoinGecko", - "LiFi", - "Socket", - "Rubic", - "Squid", - "Rango", - "Sonarwatch" - ], - "occurrences": 7 - }, - "0xef4461891dfb3ac8572ccf7c794664a8dd927945": { - "address": "0xef4461891dfb3ac8572ccf7c794664a8dd927945", - "symbol": "WCT", - "decimals": 18, - "name": "WalletConnect Token", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/10/0xef4461891dfb3ac8572ccf7c794664a8dd927945.png", - "aggregators": [ - "Metamask", - "1inch", - "LiFi", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 7 - }, - "0xb153fb3d196a8eb25522705560ac152eeec57901": { - "address": "0xb153fb3d196a8eb25522705560ac152eeec57901", - "symbol": "MIM", - "decimals": 18, - "name": "Magic Internet Money (Optimism)", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/10/0xb153fb3d196a8eb25522705560ac152eeec57901.png", - "aggregators": [ - "CoinGecko", - "LiFi", - "Socket", - "Rubic", - "Squid", - "Rango", - "Sonarwatch" - ], - "occurrences": 7 - }, - "0x1f514a61bcde34f94bc39731235690ab9da737f7": { - "address": "0x1f514a61bcde34f94bc39731235690ab9da737f7", - "symbol": "TAROT", - "decimals": 18, - "name": "Tarot", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/10/0x1f514a61bcde34f94bc39731235690ab9da737f7.png", - "aggregators": [ - "CoinGecko", - "LiFi", - "Socket", - "Rubic", - "Squid", - "Rango", - "Sonarwatch" - ], - "occurrences": 7 - }, - "0xeb466342c4d449bc9f53a865d5cb90586f405215": { - "address": "0xeb466342c4d449bc9f53a865d5cb90586f405215", - "symbol": "AXLUSDC", - "decimals": 6, - "name": "Axelar Wrapped USDC", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/10/0xeb466342c4d449bc9f53a865d5cb90586f405215.png", - "aggregators": [ - "CoinGecko", - "LiFi", - "Rubic", - "Squid", - "Rango", - "Sonarwatch", - "SushiSwap" - ], - "occurrences": 7 - }, - "0x9c9e5fd8bbc25984b178fdce6117defa39d2db39": { - "address": "0x9c9e5fd8bbc25984b178fdce6117defa39d2db39", - "symbol": "BUSD", - "decimals": 18, - "name": "Binance-Peg BUSD", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/10/0x9c9e5fd8bbc25984b178fdce6117defa39d2db39.png", - "aggregators": [ - "CoinGecko", - "LiFi", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 6 - }, - "0x9560e827af36c94d2ac33a39bce1fe78631088db": { - "address": "0x9560e827af36c94d2ac33a39bce1fe78631088db", - "symbol": "VELO", - "decimals": 18, - "name": "Velodrome Finance", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/10/0x9560e827af36c94d2ac33a39bce1fe78631088db.png", - "aggregators": [ - "CoinGecko", - "1inch", - "LiFi", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 6 - }, - "0x3b08fcd15280e7b5a6e404c4abb87f7c774d1b2e": { - "address": "0x3b08fcd15280e7b5a6e404c4abb87f7c774d1b2e", - "symbol": "OVN", - "decimals": 18, - "name": "Overnight Finance", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/10/0x3b08fcd15280e7b5a6e404c4abb87f7c774d1b2e.png", - "aggregators": [ - "CoinGecko", - "LiFi", - "Rubic", - "Squid", - "Rango", - "Sonarwatch" - ], - "occurrences": 6 - }, - "0x9a601c5bb360811d96a23689066af316a30c3027": { - "address": "0x9a601c5bb360811d96a23689066af316a30c3027", - "symbol": "PIKA", - "decimals": 18, - "name": "Pika Protocol", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/10/0x9a601c5bb360811d96a23689066af316a30c3027.png", - "aggregators": [ - "CoinGecko", - "LiFi", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 6 - }, - "0x00a35fd824c717879bf370e70ac6868b95870dfb": { - "address": "0x00a35fd824c717879bf370e70ac6868b95870dfb", - "symbol": "IB", - "decimals": 18, - "name": "Iron Bank", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/10/0x00a35fd824c717879bf370e70ac6868b95870dfb.png", - "aggregators": [ - "CoinGecko", - "1inch", - "LiFi", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 6 - }, - "0x2598c30330d5771ae9f983979209486ae26de875": { - "address": "0x2598c30330d5771ae9f983979209486ae26de875", - "symbol": "AI", - "decimals": 18, - "name": "Any Inu", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/10/0x2598c30330d5771ae9f983979209486ae26de875.png", - "aggregators": [ - "CoinGecko", - "Socket", - "Rubic", - "Squid", - "Rango", - "Sonarwatch" - ], - "occurrences": 6 - }, - "0x57f5e098cad7a3d1eed53991d4d66c45c9af7812": { - "address": "0x57f5e098cad7a3d1eed53991d4d66c45c9af7812", - "symbol": "WUSDM", - "decimals": 18, - "name": "Wrapped USDM", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/10/0x57f5e098cad7a3d1eed53991d4d66c45c9af7812.png", - "aggregators": [ - "CoinGecko", - "LiFi", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 6 - }, - "0x5a5fff6f753d7c11a56a52fe47a177a87e431655": { - "address": "0x5a5fff6f753d7c11a56a52fe47a177a87e431655", - "symbol": "SYN", - "decimals": 18, - "name": "Synapse", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/10/0x5a5fff6f753d7c11a56a52fe47a177a87e431655.png", - "aggregators": [ - "OpenSwap", - "1inch", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 6 - }, - "0x375488f097176507e39b9653b88fdc52cde736bf": { - "address": "0x375488f097176507e39b9653b88fdc52cde736bf", - "symbol": "TAROT", - "decimals": 18, - "name": "Tarot V1", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/10/0x375488f097176507e39b9653b88fdc52cde736bf.png", - "aggregators": [ - "OpenSwap", - "LiFi", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 6 - }, - "0x93919784c523f39cacaa98ee0a9d96c3f32b593e": { - "address": "0x93919784c523f39cacaa98ee0a9d96c3f32b593e", - "symbol": "UNIBTC", - "decimals": 8, - "name": "Universal BTC", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/10/0x93919784c523f39cacaa98ee0a9d96c3f32b593e.png", - "aggregators": [ - "CoinGecko", - "LiFi", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 6 - }, - "0x9b88d293b7a791e40d36a39765ffd5a1b9b5c349": { - "address": "0x9b88d293b7a791e40d36a39765ffd5a1b9b5c349", - "symbol": "CELO", - "decimals": 18, - "name": "Celo (Wormhole)", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/10/0x9b88d293b7a791e40d36a39765ffd5a1b9b5c349.png", - "aggregators": [ - "UniswapLabs", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x589d35656641d6ab57a545f08cf473ecd9b6d5f7": { - "address": "0x589d35656641d6ab57a545f08cf473ecd9b6d5f7", - "symbol": "GYEN", - "decimals": 6, - "name": "GMO JPY", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/10/0x589d35656641d6ab57a545f08cf473ecd9b6d5f7.png", - "aggregators": ["Uniswap", "LiFi", "Socket", "Rubic", "Rango"], - "occurrences": 5 - }, - "0xc3864f98f2a61a7caeb95b039d031b4e2f55e0e9": { - "address": "0xc3864f98f2a61a7caeb95b039d031b4e2f55e0e9", - "symbol": "OPENX", - "decimals": 18, - "name": "OpenXSwap", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/10/0xc3864f98f2a61a7caeb95b039d031b4e2f55e0e9.png", - "aggregators": [ - "OpenSwap", - "Rubic", - "Squid", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x1e925de1c68ef83bd98ee3e130ef14a50309c01b": { - "address": "0x1e925de1c68ef83bd98ee3e130ef14a50309c01b", - "symbol": "EXA", - "decimals": 18, - "name": "EXA", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/10/0x1e925de1c68ef83bd98ee3e130ef14a50309c01b.png", - "aggregators": ["CoinGecko", "1inch", "Rubic", "Squid", "Rango"], - "occurrences": 5 - }, - "0x4186bfc76e2e237523cbc30fd220fe055156b41f": { - "address": "0x4186bfc76e2e237523cbc30fd220fe055156b41f", - "symbol": "RSETH", - "decimals": 18, - "name": "RSETH", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/10/0x4186bfc76e2e237523cbc30fd220fe055156b41f.png", - "aggregators": ["CoinGecko", "LiFi", "Socket", "Rubic", "Rango"], - "occurrences": 5 - }, - "0x87eee96d50fb761ad85b1c982d28a042169d61b1": { - "address": "0x87eee96d50fb761ad85b1c982d28a042169d61b1", - "symbol": "WRSETH", - "decimals": 18, - "name": "rsETHWrapper", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/10/0x87eee96d50fb761ad85b1c982d28a042169d61b1.png", - "aggregators": ["CoinGecko", "LiFi", "Rubic", "Squid", "Rango"], - "occurrences": 5 - }, - "0xe453d6649643f1f460c371dc3d1da98f7922fe51": { - "address": "0xe453d6649643f1f460c371dc3d1da98f7922fe51", - "symbol": "FUSE", - "decimals": 18, - "name": "Fuse", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/10/0xe453d6649643f1f460c371dc3d1da98f7922fe51.png", - "aggregators": [ - "CoinGecko", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0xaf1d71bf947709315655514467d5158e5d3046d5": { - "address": "0xaf1d71bf947709315655514467d5158e5d3046d5", - "symbol": "SHU", - "decimals": 18, - "name": "Shutter Token", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/10/0xaf1d71bf947709315655514467d5158e5d3046d5.png", - "aggregators": ["Uniswap", "LiFi", "Socket", "Rubic", "Rango"], - "occurrences": 5 - }, - "0xca0e54b636db823847b29f506bffee743f57729d": { - "address": "0xca0e54b636db823847b29f506bffee743f57729d", - "symbol": "CHI", - "decimals": 18, - "name": "Chi USD", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/10/0xca0e54b636db823847b29f506bffee743f57729d.png", - "aggregators": ["Uniswap", "LiFi", "Socket", "Rubic", "Rango"], - "occurrences": 5 - }, - "0x6c2f7b6110a37b3b0fbdd811876be368df02e8b0": { - "address": "0x6c2f7b6110a37b3b0fbdd811876be368df02e8b0", - "symbol": "RETH", - "decimals": 18, - "name": "StaFi Staked ETH", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/10/0x6c2f7b6110a37b3b0fbdd811876be368df02e8b0.png", - "aggregators": ["Uniswap", "LiFi", "Socket", "Rubic", "Rango"], - "occurrences": 5 - }, - "0xae31207ac34423c41576ff59bfb4e036150f9cf7": { - "address": "0xae31207ac34423c41576ff59bfb4e036150f9cf7", - "symbol": "SDL", - "decimals": 18, - "name": "Saddle DAO", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/10/0xae31207ac34423c41576ff59bfb4e036150f9cf7.png", - "aggregators": ["Uniswap", "LiFi", "Socket", "Rubic", "Rango"], - "occurrences": 5 - }, - "0xbb586ed34974b15049a876fd5366a4c2d1203115": { - "address": "0xbb586ed34974b15049a876fd5366a4c2d1203115", - "symbol": "UBI", - "decimals": 18, - "name": "Universal Basic Income", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/10/0xbb586ed34974b15049a876fd5366a4c2d1203115.png", - "aggregators": ["Uniswap", "LiFi", "Socket", "Rubic", "Rango"], - "occurrences": 5 - }, - "0xeeeeeb57642040be42185f49c52f7e9b38f8eeee": { - "address": "0xeeeeeb57642040be42185f49c52f7e9b38f8eeee", - "symbol": "ELK", - "decimals": 18, - "name": "Elk", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/10/0xeeeeeb57642040be42185f49c52f7e9b38f8eeee.png", - "aggregators": ["1inch", "LiFi", "Socket", "Rubic", "Rango"], - "occurrences": 5 - }, - "0xad42d013ac31486b73b6b059e748172994736426": { - "address": "0xad42d013ac31486b73b6b059e748172994736426", - "symbol": "1INCH", - "decimals": 18, - "name": "1INCH Token", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/10/0xad42d013ac31486b73b6b059e748172994736426.png", - "aggregators": ["Uniswap", "LiFi", "Socket", "Rango"], - "occurrences": 4 - }, - "0x334cc734866e97d8452ae6261d68fd9bc9bfa31e": { - "address": "0x334cc734866e97d8452ae6261d68fd9bc9bfa31e", - "symbol": "ARPA", - "decimals": 18, - "name": "ARPA Token", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/10/0x334cc734866e97d8452ae6261d68fd9bc9bfa31e.png", - "aggregators": ["Uniswap", "LiFi", "Socket", "Rango"], - "occurrences": 4 - }, - "0xed50ace88bd42b45cb0f49be15395021e141254e": { - "address": "0xed50ace88bd42b45cb0f49be15395021e141254e", - "symbol": "BTRST", - "decimals": 18, - "name": "BTRST", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/10/0xed50ace88bd42b45cb0f49be15395021e141254e.png", - "aggregators": ["Uniswap", "LiFi", "Socket", "Rango"], - "occurrences": 4 - }, - "0x650af3c15af43dcb218406d30784416d64cfb6b2": { - "address": "0x650af3c15af43dcb218406d30784416d64cfb6b2", - "symbol": "SNT", - "decimals": 18, - "name": "Status Network Token", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/10/0x650af3c15af43dcb218406d30784416d64cfb6b2.png", - "aggregators": ["Uniswap", "LiFi", "Socket", "Rango"], - "occurrences": 4 - }, - "0x9db118d43069b73b8a252bf0be49d50edbd81fc8": { - "address": "0x9db118d43069b73b8a252bf0be49d50edbd81fc8", - "symbol": "XYO", - "decimals": 18, - "name": "XY Oracle", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/10/0x9db118d43069b73b8a252bf0be49d50edbd81fc8.png", - "aggregators": ["Uniswap", "LiFi", "Socket", "Rango"], - "occurrences": 4 - }, - "0x38761749330c23d681d136e8ea3fc47d4bb93db3": { - "address": "0x38761749330c23d681d136e8ea3fc47d4bb93db3", - "symbol": "SWEAT", - "decimals": 18, - "name": "Sweat Economy", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/10/0x38761749330c23d681d136e8ea3fc47d4bb93db3.png", - "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0x0f13fc8a93ab8edc9fde0a1e19aac693161599a5": { - "address": "0x0f13fc8a93ab8edc9fde0a1e19aac693161599a5", - "symbol": "SCAI", - "decimals": 18, - "name": "SecureChain AI", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/10/0x0f13fc8a93ab8edc9fde0a1e19aac693161599a5.png", - "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0xfc2e6e6bcbd49ccf3a5f029c79984372dcbfe527": { - "address": "0xfc2e6e6bcbd49ccf3a5f029c79984372dcbfe527", - "symbol": "OLAS", - "decimals": 18, - "name": "Autonolas", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/10/0xfc2e6e6bcbd49ccf3a5f029c79984372dcbfe527.png", - "aggregators": ["Uniswap", "Socket", "Rubic", "Rango"], - "occurrences": 4 - }, - "0x47c337bd5b9344a6f3d6f58c474d9d8cd419d8ca": { - "address": "0x47c337bd5b9344a6f3d6f58c474d9d8cd419d8ca", - "symbol": "DACKIE", - "decimals": 18, - "name": "DackieSwap", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/10/0x47c337bd5b9344a6f3d6f58c474d9d8cd419d8ca.png", - "aggregators": ["CoinGecko", "Rubic", "Squid", "Sonarwatch"], - "occurrences": 4 - }, - "0x53ed36b1d07a5f4b01e5f872fd054f8439335460": { - "address": "0x53ed36b1d07a5f4b01e5f872fd054f8439335460", - "symbol": "GMAC", - "decimals": 18, - "name": "Gemach", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/10/0x53ed36b1d07a5f4b01e5f872fd054f8439335460.png", - "aggregators": ["Uniswap", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0x64445f0aecc51e94ad52d8ac56b7190e764e561a": { - "address": "0x64445f0aecc51e94ad52d8ac56b7190e764e561a", - "symbol": "WFRAX", - "decimals": 18, - "name": "WFRAX", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/10/0x64445f0aecc51e94ad52d8ac56b7190e764e561a.png", - "aggregators": ["CoinGecko", "Socket", "Rubic", "Rango"], - "occurrences": 4 - }, - "0x764ad60e1b81f6cacfec1a2926393d688d4493e6": { - "address": "0x764ad60e1b81f6cacfec1a2926393d688d4493e6", - "symbol": "ACRV", - "decimals": 18, - "name": "AladdinCRV", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/10/0x764ad60e1b81f6cacfec1a2926393d688d4493e6.png", - "aggregators": ["Uniswap", "Socket", "Rubic", "Rango"], - "occurrences": 4 - }, - "0xca0eac34408e4b5906d3e161c73bb4611ff22ca1": { - "address": "0xca0eac34408e4b5906d3e161c73bb4611ff22ca1", - "symbol": "CANA", - "decimals": 18, - "name": "CANA Holdings California Carbon Credits", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/10/0xca0eac34408e4b5906d3e161c73bb4611ff22ca1.png", - "aggregators": ["Uniswap", "LiFi", "Socket", "Rango"], - "occurrences": 4 - }, - "0x1d015bf7d8a6fb0fc30959f3e12355530086b2a5": { - "address": "0x1d015bf7d8a6fb0fc30959f3e12355530086b2a5", - "symbol": "CNG", - "decimals": 18, - "name": "Changer", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/10/0x1d015bf7d8a6fb0fc30959f3e12355530086b2a5.png", - "aggregators": ["Uniswap", "LiFi", "Socket", "Rango"], - "occurrences": 4 - }, - "0x0e49ca6ea763190084c846d3fc18f28bc2ac689a": { - "address": "0x0e49ca6ea763190084c846d3fc18f28bc2ac689a", - "symbol": "DUCK", - "decimals": 18, - "name": "Unit protocol", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/10/0x0e49ca6ea763190084c846d3fc18f28bc2ac689a.png", - "aggregators": ["Uniswap", "Socket", "Rubic", "Rango"], - "occurrences": 4 - }, - "0xaf3a6f67af1624d3878a8d30b09fae7915dca2a0": { - "address": "0xaf3a6f67af1624d3878a8d30b09fae7915dca2a0", - "symbol": "EQB", - "decimals": 18, - "name": "Equilibria Token", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/10/0xaf3a6f67af1624d3878a8d30b09fae7915dca2a0.png", - "aggregators": ["Uniswap", "LiFi", "Socket", "Rango"], - "occurrences": 4 - }, - "0xb58d1d90c4f0a89c96337387feafff0a7a75a722": { - "address": "0xb58d1d90c4f0a89c96337387feafff0a7a75a722", - "symbol": "FLY", - "decimals": 4, - "name": "Franklin", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/10/0xb58d1d90c4f0a89c96337387feafff0a7a75a722.png", - "aggregators": ["Uniswap", "Socket", "Rubic", "Rango"], - "occurrences": 4 - }, - "0xc871ccf95024efa2cbce69b5b775d2a1dcf49c1b": { - "address": "0xc871ccf95024efa2cbce69b5b775d2a1dcf49c1b", - "symbol": "GROW", - "decimals": 18, - "name": "ValleyDAO Token", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/10/0xc871ccf95024efa2cbce69b5b775d2a1dcf49c1b.png", - "aggregators": ["Uniswap", "LiFi", "Socket", "Rango"], - "occurrences": 4 - }, - "0xbb6bbaa0f6d839a00c82b10747abc3b7e2eecc82": { - "address": "0xbb6bbaa0f6d839a00c82b10747abc3b7e2eecc82", - "symbol": "IBEX", - "decimals": 18, - "name": "Impermax", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/10/0xbb6bbaa0f6d839a00c82b10747abc3b7e2eecc82.png", - "aggregators": ["Uniswap", "Socket", "Rubic", "Rango"], - "occurrences": 4 - }, - "0x0633e91f64c22d4fea53dbe6e77b7ba4093177b8": { - "address": "0x0633e91f64c22d4fea53dbe6e77b7ba4093177b8", - "symbol": "LITKEY", - "decimals": 18, - "name": "Lit Protocol", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/10/0x0633e91f64c22d4fea53dbe6e77b7ba4093177b8.png", - "aggregators": ["Uniswap", "LiFi", "Socket", "Rango"], - "occurrences": 4 - }, - "0xa6521c950b0ab5215337dab84d65f4ffa7f6df55": { - "address": "0xa6521c950b0ab5215337dab84d65f4ffa7f6df55", - "symbol": "SILO", - "decimals": 18, - "name": "Silo Governance Token", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/10/0xa6521c950b0ab5215337dab84d65f4ffa7f6df55.png", - "aggregators": ["Uniswap", "LiFi", "Socket", "Rango"], - "occurrences": 4 - }, - "0xb94944669f7967e16588e55ac41be0d5ef399dcd": { - "address": "0xb94944669f7967e16588e55ac41be0d5ef399dcd", - "symbol": "SIPHER", - "decimals": 18, - "name": "Sipher Token", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/10/0xb94944669f7967e16588e55ac41be0d5ef399dcd.png", - "aggregators": ["Uniswap", "LiFi", "Socket", "Rango"], - "occurrences": 4 - }, - "0x3eb398fec5f7327c6b15099a9681d9568ded2e82": { - "address": "0x3eb398fec5f7327c6b15099a9681d9568ded2e82", - "symbol": "TKN", - "decimals": 18, - "name": "Token Name Service", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/10/0x3eb398fec5f7327c6b15099a9681d9568ded2e82.png", - "aggregators": ["Uniswap", "LiFi", "Socket", "Rango"], - "occurrences": 4 - }, - "0x3ee6107d9c93955acbb3f39871d32b02f82b78ab": { - "address": "0x3ee6107d9c93955acbb3f39871d32b02f82b78ab", - "symbol": "STERN", - "decimals": 18, - "name": "Staked Ethos Reserve Note", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/10/0x3ee6107d9c93955acbb3f39871d32b02f82b78ab.png", - "aggregators": ["LiFi", "Rubic", "Squid", "Rango"], - "occurrences": 4 - }, - "0x970d50d09f3a656b43e11b0d45241a84e3a6e011": { - "address": "0x970d50d09f3a656b43e11b0d45241a84e3a6e011", - "symbol": "DAI+", - "decimals": 18, - "name": "DAI+", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/10/0x970d50d09f3a656b43e11b0d45241a84e3a6e011.png", - "aggregators": ["LiFi", "Rubic", "Squid", "Rango"], - "occurrences": 4 - }, - "0xd9cc3d70e730503e7f28c1b407389198c4b75fa2": { - "address": "0xd9cc3d70e730503e7f28c1b407389198c4b75fa2", - "symbol": "TLX", - "decimals": 18, - "name": "TLX", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/10/0xd9cc3d70e730503e7f28c1b407389198c4b75fa2.png", - "aggregators": ["CoinGecko", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x2513486f18eee1498d7b6281f668b955181dd0d9": { - "address": "0x2513486f18eee1498d7b6281f668b955181dd0d9", - "symbol": "XOPENX", - "decimals": 18, - "name": "OpenXSwap Gov Token", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/10/0x2513486f18eee1498d7b6281f668b955181dd0d9.png", - "aggregators": ["OpenSwap", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x8b21e9b7daf2c4325bf3d18c1beb79a347fe902a": { - "address": "0x8b21e9b7daf2c4325bf3d18c1beb79a347fe902a", - "symbol": "COLLAB", - "decimals": 18, - "name": "Collab.Land", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/10/0x8b21e9b7daf2c4325bf3d18c1beb79a347fe902a.png", - "aggregators": ["Uniswap", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x76c37f9949e05b37c8373d155c1fef46a6858481": { - "address": "0x76c37f9949e05b37c8373d155c1fef46a6858481", - "symbol": "EPENDLE", - "decimals": 18, - "name": "Equilibria Pendle", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/10/0x76c37f9949e05b37c8373d155c1fef46a6858481.png", - "aggregators": ["Uniswap", "LiFi", "Rango"], - "occurrences": 3 - }, - "0x9a2e53158e12bc09270af10c16a466cb2b5d7836": { - "address": "0x9a2e53158e12bc09270af10c16a466cb2b5d7836", - "symbol": "MET", - "decimals": 18, - "name": "Metronome2", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/10/0x9a2e53158e12bc09270af10c16a466cb2b5d7836.png", - "aggregators": ["Uniswap", "Socket", "Rango"], - "occurrences": 3 - }, - "0x8637725ada78db0674a679cea2a5e0a0869ef4a1": { - "address": "0x8637725ada78db0674a679cea2a5e0a0869ef4a1", - "symbol": "NFTE", - "decimals": 18, - "name": "NFTEarthOFT", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/10/0x8637725ada78db0674a679cea2a5e0a0869ef4a1.png", - "aggregators": ["Uniswap", "Rubic", "SushiSwap"], - "occurrences": 3 - }, - "0x4a36562d5d7074f8ee664922b320e066e67c2a24": { - "address": "0x4a36562d5d7074f8ee664922b320e066e67c2a24", - "symbol": "ZUN", - "decimals": 18, - "name": "Zunami Token", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/10/0x4a36562d5d7074f8ee664922b320e066e67c2a24.png", - "aggregators": ["Uniswap", "LiFi", "Rango"], - "occurrences": 3 - }, - "0xc03b43d492d904406db2d7d57e67c7e8234ba752": { - "address": "0xc03b43d492d904406db2d7d57e67c7e8234ba752", - "symbol": "WUSDR", - "decimals": 9, - "name": "Wrapped USDR", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/10/0xc03b43d492d904406db2d7d57e67c7e8234ba752.png", - "aggregators": ["LiFi", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x10010078a54396f62c96df8532dc2b4847d47ed3": { - "address": "0x10010078a54396f62c96df8532dc2b4847d47ed3", - "symbol": "HND", - "decimals": 18, - "name": "Hundred Finance", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/10/0x10010078a54396f62c96df8532dc2b4847d47ed3.png", - "aggregators": ["Socket", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x28b42698caf46b4b012cf38b6c75867e0762186d": { - "address": "0x28b42698caf46b4b012cf38b6c75867e0762186d", - "symbol": "UNIDX", - "decimals": 18, - "name": "Unidex", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/10/0x28b42698caf46b4b012cf38b6c75867e0762186d.png", - "aggregators": ["Socket", "Rubic", "Rango"], - "occurrences": 3 - }, - "0xfa436399d0458dbe8ab890c3441256e3e09022a8": { - "address": "0xfa436399d0458dbe8ab890c3441256e3e09022a8", - "symbol": "ZIP", - "decimals": 18, - "name": "ZipSwap", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/10/0xfa436399d0458dbe8ab890c3441256e3e09022a8.png", - "aggregators": ["Rubic", "Rango", "Sonarwatch"], - "occurrences": 3 - }, - "0xf467c7d5a4a9c4687ffc7986ac6ad5a4c81e1404": { - "address": "0xf467c7d5a4a9c4687ffc7986ac6ad5a4c81e1404", - "symbol": "KITE", - "decimals": 18, - "name": "Kite", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/10/0xf467c7d5a4a9c4687ffc7986ac6ad5a4c81e1404.png", - "aggregators": [ - "CoinGecko", - "1inch", - "Socket", - "Rubic", - "Squid", - "Rango", - "Sonarwatch" - ], - "occurrences": 7 - }, - "0x23ee2343b892b1bb63503a4fabc840e0e2c6810f": { - "address": "0x23ee2343b892b1bb63503a4fabc840e0e2c6810f", - "symbol": "AXL", - "decimals": 6, - "name": "Axelar", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/10/0x23ee2343b892b1bb63503a4fabc840e0e2c6810f.png", - "aggregators": [ - "CoinGecko", - "LiFi", - "Socket", - "Rubic", - "Squid", - "Rango", - "Sonarwatch" - ], - "occurrences": 7 - }, - "0x33800de7e817a70a694f31476313a7c572bba100": { - "address": "0x33800de7e817a70a694f31476313a7c572bba100", - "symbol": "DRV", - "decimals": 18, - "name": "Derive", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/10/0x33800de7e817a70a694f31476313a7c572bba100.png", - "aggregators": [ - "CoinGecko", - "LiFi", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 6 - }, - "0xaeaeed23478c3a4b798e4ed40d8b7f41366ae861": { - "address": "0xaeaeed23478c3a4b798e4ed40d8b7f41366ae861", - "symbol": "ANKR", - "decimals": 18, - "name": "Ankr Network", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/10/0xaeaeed23478c3a4b798e4ed40d8b7f41366ae861.png", - "aggregators": [ - "CoinGecko", - "LiFi", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 6 - }, - "0x38f9bf9dce51833ec7f03c9dc218197999999999": { - "address": "0x38f9bf9dce51833ec7f03c9dc218197999999999", - "symbol": "NYA", - "decimals": 18, - "name": "Nya", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/10/0x38f9bf9dce51833ec7f03c9dc218197999999999.png", - "aggregators": [ - "CoinGecko", - "Socket", - "Rubic", - "Squid", - "Rango", - "Sonarwatch" - ], - "occurrences": 6 - }, - "0xe05a08226c49b636acf99c40da8dc6af83ce5bb3": { - "address": "0xe05a08226c49b636acf99c40da8dc6af83ce5bb3", - "symbol": "ANKRETH", - "decimals": 18, - "name": "Ankr Staked ETH", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/10/0xe05a08226c49b636acf99c40da8dc6af83ce5bb3.png", - "aggregators": [ - "CoinGecko", - "LiFi", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 6 - }, - "0xc6bdfc4f2e90196738873e824a9efa03f7c64176": { - "address": "0xc6bdfc4f2e90196738873e824a9efa03f7c64176", - "symbol": "VCNT", - "decimals": 18, - "name": "ViciCoin", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/10/0xc6bdfc4f2e90196738873e824a9efa03f7c64176.png", - "aggregators": [ - "CoinGecko", - "LiFi", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 6 - }, - "0x47536f17f4ff30e64a96a7555826b8f9e66ec468": { - "address": "0x47536f17f4ff30e64a96a7555826b8f9e66ec468", - "symbol": "MMY", - "decimals": 18, - "name": "Mummy Finance", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/10/0x47536f17f4ff30e64a96a7555826b8f9e66ec468.png", - "aggregators": [ - "CoinGecko", - "LiFi", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 6 - }, - "0xbfd5206962267c7b4b4a8b3d76ac2e1b2a5c4d5e": { - "address": "0xbfd5206962267c7b4b4a8b3d76ac2e1b2a5c4d5e", - "symbol": "OSAK", - "decimals": 18, - "name": "Osaka Protocol", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/10/0xbfd5206962267c7b4b4a8b3d76ac2e1b2a5c4d5e.png", - "aggregators": [ - "CoinGecko", - "Socket", - "Rubic", - "Rango", - "Sonarwatch", - "SushiSwap" - ], - "occurrences": 6 - }, - "0xd6909e9e702024eb93312b989ee46794c0fb1c9d": { - "address": "0xd6909e9e702024eb93312b989ee46794c0fb1c9d", - "symbol": "BICO", - "decimals": 18, - "name": "Biconomy Token", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/10/0xd6909e9e702024eb93312b989ee46794c0fb1c9d.png", - "aggregators": ["Uniswap", "LiFi", "Socket", "Rubic", "Rango"], - "occurrences": 5 - }, - "0x29cb69d4780b53c1e5cd4d2b817142d2e9890715": { - "address": "0x29cb69d4780b53c1e5cd4d2b817142d2e9890715", - "symbol": "PWETH", - "decimals": 18, - "name": "PoolTogether Prize WETH - Aave", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/10/0x29cb69d4780b53c1e5cd4d2b817142d2e9890715.png", - "aggregators": [ - "CoinGecko", - "LiFi", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x17aabf6838a6303fc6e9c5a227dc1eb6d95c829a": { - "address": "0x17aabf6838a6303fc6e9c5a227dc1eb6d95c829a", - "symbol": "TUX", - "decimals": 18, - "name": "Magicaltux", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/10/0x17aabf6838a6303fc6e9c5a227dc1eb6d95c829a.png", - "aggregators": [ - "CoinGecko", - "Rubic", - "Squid", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x2dad3a13ef0c6366220f989157009e501e7938f8": { - "address": "0x2dad3a13ef0c6366220f989157009e501e7938f8", - "symbol": "EXTRA", - "decimals": 18, - "name": "Extra Finance", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/10/0x2dad3a13ef0c6366220f989157009e501e7938f8.png", - "aggregators": [ - "CoinGecko", - "LiFi", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x9cfb13e6c11054ac9fcb92ba89644f30775436e4": { - "address": "0x9cfb13e6c11054ac9fcb92ba89644f30775436e4", - "symbol": "AXL-WSTETH", - "decimals": 18, - "name": "Axelar Wrapped wstETH", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/10/0x9cfb13e6c11054ac9fcb92ba89644f30775436e4.png", - "aggregators": ["CoinGecko", "LiFi", "Rubic", "Squid", "Rango"], - "occurrences": 5 - }, - "0xb4bc46bc6cb217b59ea8f4530bae26bf69f677f0": { - "address": "0xb4bc46bc6cb217b59ea8f4530bae26bf69f677f0", - "symbol": "BEETS", - "decimals": 18, - "name": "Beethoven X", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/10/0xb4bc46bc6cb217b59ea8f4530bae26bf69f677f0.png", - "aggregators": [ - "CoinGecko", - "LiFi", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x023550adde4fa2f90d63a41d9282bee0294c04cd": { - "address": "0x023550adde4fa2f90d63a41d9282bee0294c04cd", - "symbol": "PSTAKE", - "decimals": 18, - "name": "pSTAKE Finance", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/10/0x023550adde4fa2f90d63a41d9282bee0294c04cd.png", - "aggregators": [ - "CoinGecko", - "Rubic", - "Squid", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x58b9cb810a68a7f3e1e4f8cb45d1b9b3c79705e8": { - "address": "0x58b9cb810a68a7f3e1e4f8cb45d1b9b3c79705e8", - "symbol": "NEXT", - "decimals": 18, - "name": "Everclear", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/10/0x58b9cb810a68a7f3e1e4f8cb45d1b9b3c79705e8.png", - "aggregators": [ - "CoinGecko", - "LiFi", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0xb0ae108669ceb86e9e98e8fe9e40d98b867855fd": { - "address": "0xb0ae108669ceb86e9e98e8fe9e40d98b867855fd", - "symbol": "RING", - "decimals": 18, - "name": "OneRing", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/10/0xb0ae108669ceb86e9e98e8fe9e40d98b867855fd.png", - "aggregators": [ - "CoinGecko", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x74ccbe53f77b08632ce0cb91d3a545bf6b8e0979": { - "address": "0x74ccbe53f77b08632ce0cb91d3a545bf6b8e0979", - "symbol": "BOMB", - "decimals": 18, - "name": "Fantom Bomb", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/10/0x74ccbe53f77b08632ce0cb91d3a545bf6b8e0979.png", - "aggregators": ["OpenSwap", "LiFi", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 5 - }, - "0xc7edf7b7b3667a06992508e7b156eff794a9e1c8": { - "address": "0xc7edf7b7b3667a06992508e7b156eff794a9e1c8", - "symbol": "XPRT", - "decimals": 6, - "name": "Persistence One", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/10/0xc7edf7b7b3667a06992508e7b156eff794a9e1c8.png", - "aggregators": [ - "CoinGecko", - "Rubic", - "Squid", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x1574564fcfd15bccb3fe04e9818f61131ea74066": { - "address": "0x1574564fcfd15bccb3fe04e9818f61131ea74066", - "symbol": "JARVIS", - "decimals": 18, - "name": "Jarvis", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/10/0x1574564fcfd15bccb3fe04e9818f61131ea74066.png", - "aggregators": [ - "CoinGecko", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0xe3c332a5dce0e1d9bc2cc72a68437790570c28a4": { - "address": "0xe3c332a5dce0e1d9bc2cc72a68437790570c28a4", - "symbol": "VEE", - "decimals": 18, - "name": "BLOCKv", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/10/0xe3c332a5dce0e1d9bc2cc72a68437790570c28a4.png", - "aggregators": [ - "CoinGecko", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x8f69ee043d52161fd29137aedf63f5e70cd504d5": { - "address": "0x8f69ee043d52161fd29137aedf63f5e70cd504d5", - "symbol": "DOG", - "decimals": 18, - "name": "The Doge NFT", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/10/0x8f69ee043d52161fd29137aedf63f5e70cd504d5.png", - "aggregators": [ - "CoinGecko", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0xd52f94df742a6f4b4c8b033369fe13a41782bf44": { - "address": "0xd52f94df742a6f4b4c8b033369fe13a41782bf44", - "symbol": "L2DAO", - "decimals": 18, - "name": "Layer2DAO", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/10/0xd52f94df742a6f4b4c8b033369fe13a41782bf44.png", - "aggregators": [ - "CoinGecko", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x135c78d7f52aab6e9f17bcf4a9e8627aa233d050": { - "address": "0x135c78d7f52aab6e9f17bcf4a9e8627aa233d050", - "symbol": "$BOO", - "decimals": 18, - "name": "BOO", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/10/0x135c78d7f52aab6e9f17bcf4a9e8627aa233d050.png", - "aggregators": [ - "CoinGecko", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x9485aca5bbbe1667ad97c7fe7c4531a624c8b1ed": { - "address": "0x9485aca5bbbe1667ad97c7fe7c4531a624c8b1ed", - "symbol": "AGEUR", - "decimals": 18, - "name": "agEUR", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/10/0x9485aca5bbbe1667ad97c7fe7c4531a624c8b1ed.png", - "aggregators": ["LiFi", "Rubic", "Squid", "Rango", "SushiSwap"], - "occurrences": 5 - }, - "0x25193034153afb4251a8e02a8db0deaef4c876f6": { - "address": "0x25193034153afb4251a8e02a8db0deaef4c876f6", - "symbol": "ZUN", - "decimals": 18, - "name": "Zunami Governance Token", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/10/0x25193034153afb4251a8e02a8db0deaef4c876f6.png", - "aggregators": ["LiFi", "Socket", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 5 - }, - "0x10398abc267496e49106b07dd6be13364d10dc71": { - "address": "0x10398abc267496e49106b07dd6be13364d10dc71", - "symbol": "HAI", - "decimals": 18, - "name": "Let's Get HAI", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/10/0x10398abc267496e49106b07dd6be13364d10dc71.png", - "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0xc4d4500326981eacd020e20a81b1c479c161c7ef": { - "address": "0xc4d4500326981eacd020e20a81b1c479c161c7ef", - "symbol": "EXAWETH", - "decimals": 18, - "name": "Exactly Wrapped Ether", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/10/0xc4d4500326981eacd020e20a81b1c479c161c7ef.png", - "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0x887d1c6a4f3548279c2a8a9d0fa61b5d458d14fc": { - "address": "0x887d1c6a4f3548279c2a8a9d0fa61b5d458d14fc", - "symbol": "ION", - "decimals": 18, - "name": "Ionic Protocol", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/10/0x887d1c6a4f3548279c2a8a9d0fa61b5d458d14fc.png", - "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0xb962150760f9a3bb00e3e9cf48297ee20ada4a33": { - "address": "0xb962150760f9a3bb00e3e9cf48297ee20ada4a33", - "symbol": "ZOOMER", - "decimals": 18, - "name": "Zoomer", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/10/0xb962150760f9a3bb00e3e9cf48297ee20ada4a33.png", - "aggregators": ["Uniswap", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0x73e0c0d45e048d25fc26fa3159b0aa04bfa4db98": { - "address": "0x73e0c0d45e048d25fc26fa3159b0aa04bfa4db98", - "symbol": "KBTC", - "decimals": 8, - "name": "Kraken Wrapped BTC", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/10/0x73e0c0d45e048d25fc26fa3159b0aa04bfa4db98.png", - "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0x4e720dd3ac5cfe1e1fbde4935f386bb1c66f4642": { - "address": "0x4e720dd3ac5cfe1e1fbde4935f386bb1c66f4642", - "symbol": "BIFI", - "decimals": 18, - "name": "beefy.finance", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/10/0x4e720dd3ac5cfe1e1fbde4935f386bb1c66f4642.png", - "aggregators": ["OpenSwap", "LiFi", "Socket", "Rubic"], - "occurrences": 4 - }, - "0x65334ce5aae9fb390c056574c7aa4de33cf1d40e": { - "address": "0x65334ce5aae9fb390c056574c7aa4de33cf1d40e", - "symbol": "BRIGHT", - "decimals": 18, - "name": "Bright", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/10/0x65334ce5aae9fb390c056574c7aa4de33cf1d40e.png", - "aggregators": ["Uniswap", "LiFi", "Socket", "Rango"], - "occurrences": 4 - }, - "0x86bea60374f220de9769b2fef2db725bc1cdd335": { - "address": "0x86bea60374f220de9769b2fef2db725bc1cdd335", - "symbol": "FLASH", - "decimals": 18, - "name": "Flashstake", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/10/0x86bea60374f220de9769b2fef2db725bc1cdd335.png", - "aggregators": ["Uniswap", "LiFi", "Rubic", "Rango"], - "occurrences": 4 - }, - "0x5e70affe232e2919792f77eb94e566db0320fa88": { - "address": "0x5e70affe232e2919792f77eb94e566db0320fa88", - "symbol": "MOM", - "decimals": 18, - "name": "Monetum", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/10/0x5e70affe232e2919792f77eb94e566db0320fa88.png", - "aggregators": ["Uniswap", "LiFi", "Rubic", "Rango"], - "occurrences": 4 - }, - "0x0f5d45a7023612e9e244fe84fac5fcf3740d1492": { - "address": "0x0f5d45a7023612e9e244fe84fac5fcf3740d1492", - "symbol": "STKLYRA", - "decimals": 18, - "name": "Staked Lyra", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/10/0x0f5d45a7023612e9e244fe84fac5fcf3740d1492.png", - "aggregators": ["Uniswap", "LiFi", "Rubic", "Rango"], - "occurrences": 4 - }, - "0xb1ae0a34dc3976d98c1741c92b798daf8e0e1e11": { - "address": "0xb1ae0a34dc3976d98c1741c92b798daf8e0e1e11", - "symbol": "TRX", - "decimals": 6, - "name": "TRON", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/10/0xb1ae0a34dc3976d98c1741c92b798daf8e0e1e11.png", - "aggregators": ["Uniswap", "LiFi", "Socket", "Rango"], - "occurrences": 4 - }, - "0xdb4ea87ff83eb1c80b8976fc47731da6a31d35e5": { - "address": "0xdb4ea87ff83eb1c80b8976fc47731da6a31d35e5", - "symbol": "WTBT", - "decimals": 18, - "name": "wTBT(Bridge Token)", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/10/0xdb4ea87ff83eb1c80b8976fc47731da6a31d35e5.png", - "aggregators": ["Uniswap", "LiFi", "Rubic", "Rango"], - "occurrences": 4 - }, - "0x2dd1b4d4548accea497050619965f91f78b3b532": { - "address": "0x2dd1b4d4548accea497050619965f91f78b3b532", - "symbol": "SFRAX", - "decimals": 18, - "name": "Staked FRAX", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/10/0x2dd1b4d4548accea497050619965f91f78b3b532.png", - "aggregators": ["LiFi", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0x00e1724885473b63bce08a9f0a52f35b0979e35a": { - "address": "0x00e1724885473b63bce08a9f0a52f35b0979e35a", - "symbol": "OATH", - "decimals": 18, - "name": "Oath Token", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/10/0x00e1724885473b63bce08a9f0a52f35b0979e35a.png", - "aggregators": ["LiFi", "Rubic", "Squid", "Rango"], - "occurrences": 4 - }, - "0x9fd22a17b4a96da3f83797d122172c450381fb88": { - "address": "0x9fd22a17b4a96da3f83797d122172c450381fb88", - "symbol": "JEFE", - "decimals": 9, - "name": "Jefe", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/10/0x9fd22a17b4a96da3f83797d122172c450381fb88.png", - "aggregators": ["Socket", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0xb396b31599333739a97951b74652c117be86ee1d": { - "address": "0xb396b31599333739a97951b74652c117be86ee1d", - "symbol": "DUSD", - "decimals": 18, - "name": "Davos.xyz USD", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/10/0xb396b31599333739a97951b74652c117be86ee1d.png", - "aggregators": ["Socket", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0x51707dc661630f8fd624b985fa6ef4f1d4d919db": { - "address": "0x51707dc661630f8fd624b985fa6ef4f1d4d919db", - "symbol": "UNV", - "decimals": 18, - "name": "Unvest", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/10/0x51707dc661630f8fd624b985fa6ef4f1d4d919db.png", - "aggregators": ["Rubic", "Squid", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0x07ad578ff86b135be19a12759064b802cb88854d": { - "address": "0x07ad578ff86b135be19a12759064b802cb88854d", - "symbol": "BOBA", - "decimals": 18, - "name": "Boba Token", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/10/0x07ad578ff86b135be19a12759064b802cb88854d.png", - "aggregators": ["Uniswap", "Socket", "Rango"], - "occurrences": 3 - }, - "0xc1c167cc44f7923cd0062c4370df962f9ddb16f5": { - "address": "0xc1c167cc44f7923cd0062c4370df962f9ddb16f5", - "symbol": "PEPE", - "decimals": 18, - "name": "Pepe", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/10/0xc1c167cc44f7923cd0062c4370df962f9ddb16f5.png", - "aggregators": ["Uniswap", "Socket", "Rango"], - "occurrences": 3 - }, - "0xd0cf4de352ac8dcce00bd6b93ee73d3cb272edc3": { - "address": "0xd0cf4de352ac8dcce00bd6b93ee73d3cb272edc3", - "symbol": "PCM", - "decimals": 18, - "name": "PCM", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/10/0xd0cf4de352ac8dcce00bd6b93ee73d3cb272edc3.png", - "aggregators": ["CoinGecko", "Rubic", "Rango"], - "occurrences": 3 - }, - "0xb5b2dc7fd34c249f4be7fb1fcea07950784229e0": { - "address": "0xb5b2dc7fd34c249f4be7fb1fcea07950784229e0", - "symbol": "SUSDS", - "decimals": 18, - "name": "SUSDS", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/10/0xb5b2dc7fd34c249f4be7fb1fcea07950784229e0.png", - "aggregators": ["CoinGecko", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x0b5740c6b4a97f90ef2f0220651cca420b868ffb": { - "address": "0x0b5740c6b4a97f90ef2f0220651cca420b868ffb", - "symbol": "GOHM", - "decimals": 18, - "name": "Governance OHM", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/10/0x0b5740c6b4a97f90ef2f0220651cca420b868ffb.png", - "aggregators": ["CoinGecko", "Rubic", "Rango"], - "occurrences": 3 - }, - "0xb73ee5488647a6302ebf5fee8af3152f6960ae4c": { - "address": "0xb73ee5488647a6302ebf5fee8af3152f6960ae4c", - "symbol": "WXRP", - "decimals": 6, - "name": "Hex Trust Wrapped XRP", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/10/0xb73ee5488647a6302ebf5fee8af3152f6960ae4c.png", - "aggregators": ["CoinGecko", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x8d010bf9c26881788b4e6bf5fd1bdc358c8f90b8": { - "address": "0x8d010bf9c26881788b4e6bf5fd1bdc358c8f90b8", - "symbol": "DOT", - "decimals": 18, - "name": "DOT", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/10/0x8d010bf9c26881788b4e6bf5fd1bdc358c8f90b8.png", - "aggregators": ["CoinGecko", "Rubic", "Rango"], - "occurrences": 3 - }, - "0xd83e3d560ba6f05094d9d8b3eb8aaea571d1864e": { - "address": "0xd83e3d560ba6f05094d9d8b3eb8aaea571d1864e", - "symbol": "WHYPE", - "decimals": 18, - "name": "Wrapped HYPE", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/10/0xd83e3d560ba6f05094d9d8b3eb8aaea571d1864e.png", - "aggregators": ["CoinGecko", "Rubic", "Rango"], - "occurrences": 3 - }, - "0xa0a675d08ca63066f48408136f8a71fc65be4afc": { - "address": "0xa0a675d08ca63066f48408136f8a71fc65be4afc", - "symbol": "BZR", - "decimals": 18, - "name": "Bazaars", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/10/0xa0a675d08ca63066f48408136f8a71fc65be4afc.png", - "aggregators": ["CoinGecko", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x4933a85b5b5466fbaf179f72d3de273c287ec2c2": { - "address": "0x4933a85b5b5466fbaf179f72d3de273c287ec2c2", - "symbol": "EURAU", - "decimals": 6, - "name": "EURAU", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/10/0x4933a85b5b5466fbaf179f72d3de273c287ec2c2.png", - "aggregators": ["CoinGecko", "Rubic", "Rango"], - "occurrences": 3 - }, - "0xbc33b4d48f76d17a1800afcb730e8a6aaada7fe5": { - "address": "0xbc33b4d48f76d17a1800afcb730e8a6aaada7fe5", - "symbol": "VDOT", - "decimals": 18, - "name": "Voucher DOT", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/10/0xbc33b4d48f76d17a1800afcb730e8a6aaada7fe5.png", - "aggregators": ["CoinGecko", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x17906b1cd88aa8efaefc5e82891b52a22219bd45": { - "address": "0x17906b1cd88aa8efaefc5e82891b52a22219bd45", - "symbol": "SUPR", - "decimals": 18, - "name": "SUPR", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/10/0x17906b1cd88aa8efaefc5e82891b52a22219bd45.png", - "aggregators": ["CoinGecko", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x720f86f4b5b5d5d0ea3e5718ec43071d4d05134b": { - "address": "0x720f86f4b5b5d5d0ea3e5718ec43071d4d05134b", - "symbol": "HLSCOPE", - "decimals": 6, - "name": "HLSCOPE", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/10/0x720f86f4b5b5d5d0ea3e5718ec43071d4d05134b.png", - "aggregators": ["CoinGecko", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x4e107a0000db66f0e9fd2039288bf811dd1f9c74": { - "address": "0x4e107a0000db66f0e9fd2039288bf811dd1f9c74", - "symbol": "VLR", - "decimals": 18, - "name": "VLR", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/10/0x4e107a0000db66f0e9fd2039288bf811dd1f9c74.png", - "aggregators": ["CoinGecko", "Rubic", "Rango"], - "occurrences": 3 - }, - "0xd4423795fd904d9b87554940a95fb7016f172773": { - "address": "0xd4423795fd904d9b87554940a95fb7016f172773", - "symbol": "AIN", - "decimals": 18, - "name": "AIN", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/10/0xd4423795fd904d9b87554940a95fb7016f172773.png", - "aggregators": ["CoinGecko", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x5e817f2abccb9095585d26c2a3ce234a440574fc": { - "address": "0x5e817f2abccb9095585d26c2a3ce234a440574fc", - "symbol": "FRNT", - "decimals": 6, - "name": "Frontier Stable Token", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/10/0x5e817f2abccb9095585d26c2a3ce234a440574fc.png", - "aggregators": ["CoinGecko", "Rubic", "Rango"], - "occurrences": 3 - }, - "0xd4dd9e2f021bb459d5a5f6c24c12fe09c5d45553": { - "address": "0xd4dd9e2f021bb459d5a5f6c24c12fe09c5d45553", - "symbol": "ZCHF", - "decimals": 18, - "name": "ZCHF", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/10/0xd4dd9e2f021bb459d5a5f6c24c12fe09c5d45553.png", - "aggregators": ["CoinGecko", "Rubic", "Rango"], - "occurrences": 3 - }, - "0xf4f447e6afa04c9d11ef0e2fc0d7f19c24ee55de": { - "address": "0xf4f447e6afa04c9d11ef0e2fc0d7f19c24ee55de", - "symbol": "VYUSD", - "decimals": 18, - "name": "VYUSD", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/10/0xf4f447e6afa04c9d11ef0e2fc0d7f19c24ee55de.png", - "aggregators": ["CoinGecko", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x7d3ce1265d5ea5848dc1c96aadbf754e2bad33b1": { - "address": "0x7d3ce1265d5ea5848dc1c96aadbf754e2bad33b1", - "symbol": "FASH", - "decimals": 18, - "name": "BNV", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/10/0x7d3ce1265d5ea5848dc1c96aadbf754e2bad33b1.png", - "aggregators": ["CoinGecko", "Rubic", "Rango"], - "occurrences": 3 - }, - "0xdcb612005417dc906ff72c87df732e5a90d49e11": { - "address": "0xdcb612005417dc906ff72c87df732e5a90d49e11", - "symbol": "EURC", - "decimals": 6, - "name": "EURC", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/10/0xdcb612005417dc906ff72c87df732e5a90d49e11.png", - "aggregators": ["CoinGecko", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x3417e54a51924c225330f8770514ad5560b9098d": { - "address": "0x3417e54a51924c225330f8770514ad5560b9098d", - "symbol": "RED", - "decimals": 18, - "name": "REDKoin", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/10/0x3417e54a51924c225330f8770514ad5560b9098d.png", - "aggregators": ["OpenSwap", "Socket", "Squid"], - "occurrences": 3 - }, - "0xc62c9b7be5d4e5d415f682b2331bfa5f0c8d061a": { - "address": "0xc62c9b7be5d4e5d415f682b2331bfa5f0c8d061a", - "symbol": "ATH", - "decimals": 18, - "name": "AthenaDAO Token", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/10/0xc62c9b7be5d4e5d415f682b2331bfa5f0c8d061a.png", - "aggregators": ["Uniswap", "Socket", "Rango"], - "occurrences": 3 - }, - "0xdb9888b842408b0b8efa1f5477bd9f351754999e": { - "address": "0xdb9888b842408b0b8efa1f5477bd9f351754999e", - "symbol": "BAXA", - "decimals": 18, - "name": "BAXagent Coin", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/10/0xdb9888b842408b0b8efa1f5477bd9f351754999e.png", - "aggregators": ["Uniswap", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x0af1580f49121d7a42b0f9125f5f7dc172f8a469": { - "address": "0x0af1580f49121d7a42b0f9125f5f7dc172f8a469", - "symbol": "BCAT", - "decimals": 9, - "name": "BananaCat", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/10/0x0af1580f49121d7a42b0f9125f5f7dc172f8a469.png", - "aggregators": ["Uniswap", "Socket", "Rango"], - "occurrences": 3 - }, - "0x629c2fd5d5f432357465b59d7832389a89956f0b": { - "address": "0x629c2fd5d5f432357465b59d7832389a89956f0b", - "symbol": "COC", - "decimals": 18, - "name": "CryptoOracle Collective", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/10/0x629c2fd5d5f432357465b59d7832389a89956f0b.png", - "aggregators": ["Uniswap", "Socket", "Rango"], - "occurrences": 3 - }, - "0x01402d1bc10ae6e96c0e494a5860748517a3c070": { - "address": "0x01402d1bc10ae6e96c0e494a5860748517a3c070", - "symbol": "CRYO", - "decimals": 18, - "name": "CryoDAO", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/10/0x01402d1bc10ae6e96c0e494a5860748517a3c070.png", - "aggregators": ["Uniswap", "Socket", "Rango"], - "occurrences": 3 - }, - "0x5eaa326fb2fc97facce6a79a304876dad0f2e96c": { - "address": "0x5eaa326fb2fc97facce6a79a304876dad0f2e96c", - "symbol": "DIMO", - "decimals": 18, - "name": "Dimo", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/10/0x5eaa326fb2fc97facce6a79a304876dad0f2e96c.png", - "aggregators": ["Uniswap", "Socket", "Rango"], - "occurrences": 3 - }, - "0x8368dca5ce2a4db530c0f6e535d90b6826428dee": { - "address": "0x8368dca5ce2a4db530c0f6e535d90b6826428dee", - "symbol": "FPIS", - "decimals": 18, - "name": "Frax Price Index Share", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/10/0x8368dca5ce2a4db530c0f6e535d90b6826428dee.png", - "aggregators": ["Uniswap", "Socket", "Rubic"], - "occurrences": 3 - }, - "0xa211e25f7246950e0cce054e3161c7c0b6379485": { - "address": "0xa211e25f7246950e0cce054e3161c7c0b6379485", - "symbol": "IPT", - "decimals": 18, - "name": "Interest Protocol", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/10/0xa211e25f7246950e0cce054e3161c7c0b6379485.png", - "aggregators": ["Uniswap", "LiFi", "Rango"], - "occurrences": 3 - }, - "0x0b3e851cf6508a16266bc68a651ea68b31ef673b": { - "address": "0x0b3e851cf6508a16266bc68a651ea68b31ef673b", - "symbol": "LPF", - "decimals": 18, - "name": "Loopfi", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/10/0x0b3e851cf6508a16266bc68a651ea68b31ef673b.png", - "aggregators": ["Uniswap", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x77d40cbc27f912dcdbf4348caf87b427c4d02486": { - "address": "0x77d40cbc27f912dcdbf4348caf87b427c4d02486", - "symbol": "MOCHI", - "decimals": 18, - "name": "Mochi", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/10/0x77d40cbc27f912dcdbf4348caf87b427c4d02486.png", - "aggregators": ["Uniswap", "Rubic", "Rango"], - "occurrences": 3 - }, - "0xfa956eb0c4b3e692ad5a6b2f08170ade55999aca": { - "address": "0xfa956eb0c4b3e692ad5a6b2f08170ade55999aca", - "symbol": "PHTK", - "decimals": 18, - "name": "PhunToken", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/10/0xfa956eb0c4b3e692ad5a6b2f08170ade55999aca.png", - "aggregators": ["Uniswap", "Rubic", "Rango"], - "occurrences": 3 - }, - "0xf8397db1eedb800fdbce9e62ad83a28059cbb068": { - "address": "0xf8397db1eedb800fdbce9e62ad83a28059cbb068", - "symbol": "RAZOR", - "decimals": 18, - "name": "RAZOR", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/10/0xf8397db1eedb800fdbce9e62ad83a28059cbb068.png", - "aggregators": ["Uniswap", "Socket", "Rango"], - "occurrences": 3 - }, - "0xeaeadac73baaf4cb8b024de9d65b2eefa722856c": { - "address": "0xeaeadac73baaf4cb8b024de9d65b2eefa722856c", - "symbol": "RFWSTETH", - "decimals": 18, - "name": "Respawn Finance Wrapped Staked Ethereum", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/10/0xeaeadac73baaf4cb8b024de9d65b2eefa722856c.png", - "aggregators": ["Uniswap", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x61ccfe71d8ee67780320b0d990a02d702d99c271": { - "address": "0x61ccfe71d8ee67780320b0d990a02d702d99c271", - "symbol": "SCM", - "decimals": 18, - "name": "Scamfari", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/10/0x61ccfe71d8ee67780320b0d990a02d702d99c271.png", - "aggregators": ["Uniswap", "Socket", "Rango"], - "occurrences": 3 - }, - "0x8eb99a441b04576282e9069977f6de6053ef6a97": { - "address": "0x8eb99a441b04576282e9069977f6de6053ef6a97", - "symbol": "SMT", - "decimals": 18, - "name": "Swarm Markets", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/10/0x8eb99a441b04576282e9069977f6de6053ef6a97.png", - "aggregators": ["Uniswap", "Socket", "Rango"], - "occurrences": 3 - }, - "0xe539298a99004a102e4b6997ef96e5137be42eab": { - "address": "0xe539298a99004a102e4b6997ef96e5137be42eab", - "symbol": "SPC", - "decimals": 18, - "name": "SpaceChainV2", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/10/0xe539298a99004a102e4b6997ef96e5137be42eab.png", - "aggregators": ["Uniswap", "Socket", "Rango"], - "occurrences": 3 - }, - "0xc709c9116dbf29da9c25041b13a07a0e68ac5d2d": { - "address": "0xc709c9116dbf29da9c25041b13a07a0e68ac5d2d", - "symbol": "UDT", - "decimals": 18, - "name": "Unlock Discount Token", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/10/0xc709c9116dbf29da9c25041b13a07a0e68ac5d2d.png", - "aggregators": ["Uniswap", "LiFi", "Rango"], - "occurrences": 3 - }, - "0x0a9aaa1c7542b42233ac7ffda364e97ade21f160": { - "address": "0x0a9aaa1c7542b42233ac7ffda364e97ade21f160", - "symbol": "VALX", - "decimals": 18, - "name": "Validator", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/10/0x0a9aaa1c7542b42233ac7ffda364e97ade21f160.png", - "aggregators": ["Uniswap", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x678d8f4ba8dfe6bad51796351824dcceceaeff2b": { - "address": "0x678d8f4ba8dfe6bad51796351824dcceceaeff2b", - "symbol": "VEKWENTA", - "decimals": 18, - "name": "veKwenta", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/10/0x678d8f4ba8dfe6bad51796351824dcceceaeff2b.png", - "aggregators": ["Uniswap", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x888a88eb9de9401237dbf543eaaf4b90b6574261": { - "address": "0x888a88eb9de9401237dbf543eaaf4b90b6574261", - "symbol": "VSP", - "decimals": 18, - "name": "VesperToken", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/10/0x888a88eb9de9401237dbf543eaaf4b90b6574261.png", - "aggregators": ["Uniswap", "Socket", "Rango"], - "occurrences": 3 - }, - "0x17b4f9da9e06d395db5de839e299cf829469e7ef": { - "address": "0x17b4f9da9e06d395db5de839e299cf829469e7ef", - "symbol": "VUSD", - "decimals": 18, - "name": "VUSD", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/10/0x17b4f9da9e06d395db5de839e299cf829469e7ef.png", - "aggregators": ["Uniswap", "Socket", "Rango"], - "occurrences": 3 - }, - "0x346e03f8cce9fe01dcb3d0da3e9d00dc2c0e08f0": { - "address": "0x346e03f8cce9fe01dcb3d0da3e9d00dc2c0e08f0", - "symbol": "WEETH", - "decimals": 18, - "name": "Wrapped eETH", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/10/0x346e03f8cce9fe01dcb3d0da3e9d00dc2c0e08f0.png", - "aggregators": ["Uniswap", "Socket", "Rango"], - "occurrences": 3 - }, - "0x6e4cc0ab2b4d2edafa6723cfa1582229f1dd1be1": { - "address": "0x6e4cc0ab2b4d2edafa6723cfa1582229f1dd1be1", - "symbol": "ZUSD", - "decimals": 6, - "name": "Z.com USD", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/10/0x6e4cc0ab2b4d2edafa6723cfa1582229f1dd1be1.png", - "aggregators": ["Uniswap", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x79af5dd14e855823fa3e9ecacdf001d99647d043": { - "address": "0x79af5dd14e855823fa3e9ecacdf001d99647d043", - "symbol": "JEUR", - "decimals": 18, - "name": "Jarvis Synthetic Euro", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/10/0x79af5dd14e855823fa3e9ecacdf001d99647d043.png", - "aggregators": ["LiFi", "Socket", "Rubic"], - "occurrences": 3 - }, - "0x259c1c2ed264402b5ed2f02bc7dc25a15c680c18": { - "address": "0x259c1c2ed264402b5ed2f02bc7dc25a15c680c18", - "symbol": "RING", - "decimals": 18, - "name": "OneRing", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/10/0x259c1c2ed264402b5ed2f02bc7dc25a15c680c18.png", - "aggregators": ["Socket", "Rubic", "Squid"], - "occurrences": 3 - }, - "0x67631ff69130ea1a6c4feaa4a0abf0a1e0148be7": { - "address": "0x67631ff69130ea1a6c4feaa4a0abf0a1e0148be7", - "symbol": "WGC", - "decimals": 6, - "name": "Wild Goat Coin", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/10/0x67631ff69130ea1a6c4feaa4a0abf0a1e0148be7.png", - "aggregators": ["Socket", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x2b1d36f5b61addaf7da7ebbd11b35fd8cfb0de31": { - "address": "0x2b1d36f5b61addaf7da7ebbd11b35fd8cfb0de31", - "symbol": "ITP", - "decimals": 18, - "name": "Interport Token", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/10/0x2b1d36f5b61addaf7da7ebbd11b35fd8cfb0de31.png", - "aggregators": ["Rubic", "Rango", "Sonarwatch"], - "occurrences": 3 - }, - "0x5df7abe3c51c01dcf6d1f1f9a0ab4dc3759869b9": { - "address": "0x5df7abe3c51c01dcf6d1f1f9a0ab4dc3759869b9", - "symbol": "SOONX", - "decimals": 18, - "name": "SoonChain", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/10/0x5df7abe3c51c01dcf6d1f1f9a0ab4dc3759869b9.png", - "aggregators": ["Rubic", "Rango", "Sonarwatch"], - "occurrences": 3 - }, - "0xddf7d080c82b8048baae54e376a3406572429b4e": { - "address": "0xddf7d080c82b8048baae54e376a3406572429b4e", - "symbol": "OOOOOO", - "decimals": 18, - "name": "GODDOG", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/10/0xddf7d080c82b8048baae54e376a3406572429b4e.png", - "aggregators": ["Rubic", "Squid", "Rango"], - "occurrences": 3 - }, - "0x513c7e3a9c69ca3e22550ef58ac1c0088e918fff": { - "address": "0x513c7e3a9c69ca3e22550ef58ac1c0088e918fff", - "symbol": "AOP", - "decimals": 18, - "name": "Aave v3 OP", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/10/0x513c7e3a9c69ca3e22550ef58ac1c0088e918fff.png", - "aggregators": [ - "CoinGecko", - "1inch", - "LiFi", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 6 - }, - "0x6d80113e533a2c0fe82eabd35f1875dcea89ea97": { - "address": "0x6d80113e533a2c0fe82eabd35f1875dcea89ea97", - "symbol": "ASUSD", - "decimals": 18, - "name": "Aave v3 sUSD", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/10/0x6d80113e533a2c0fe82eabd35f1875dcea89ea97.png", - "aggregators": [ - "CoinGecko", - "1inch", - "LiFi", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 6 - }, - "0x46777c76dbbe40fabb2aab99e33ce20058e76c59": { - "address": "0x46777c76dbbe40fabb2aab99e33ce20058e76c59", - "symbol": "L3", - "decimals": 18, - "name": "Layer3", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/10/0x46777c76dbbe40fabb2aab99e33ce20058e76c59.png", - "aggregators": [ - "CoinGecko", - "LiFi", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 6 - }, - "0x078f358208685046a11c85e8ad32895ded33a249": { - "address": "0x078f358208685046a11c85e8ad32895ded33a249", - "symbol": "AWBTC", - "decimals": 8, - "name": "Aave v3 WBTC", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/10/0x078f358208685046a11c85e8ad32895ded33a249.png", - "aggregators": [ - "CoinGecko", - "1inch", - "LiFi", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 6 - }, - "0x6ab707aca953edaefbc4fd23ba73294241490620": { - "address": "0x6ab707aca953edaefbc4fd23ba73294241490620", - "symbol": "AUSDT", - "decimals": 6, - "name": "Aave v3 USDT", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/10/0x6ab707aca953edaefbc4fd23ba73294241490620.png", - "aggregators": [ - "CoinGecko", - "1inch", - "LiFi", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 6 - }, - "0x724dc807b04555b71ed48a6896b6f41593b8c637": { - "address": "0x724dc807b04555b71ed48a6896b6f41593b8c637", - "symbol": "ARETH", - "decimals": 18, - "name": "Aave v3 rETH", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/10/0x724dc807b04555b71ed48a6896b6f41593b8c637.png", - "aggregators": [ - "CoinGecko", - "1inch", - "LiFi", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 6 - }, - "0x82e64f49ed5ec1bc6e43dad4fc8af9bb3a2312ee": { - "address": "0x82e64f49ed5ec1bc6e43dad4fc8af9bb3a2312ee", - "symbol": "ADAI", - "decimals": 18, - "name": "Aave v3 DAI", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/10/0x82e64f49ed5ec1bc6e43dad4fc8af9bb3a2312ee.png", - "aggregators": [ - "CoinGecko", - "1inch", - "LiFi", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 6 - }, - "0xf329e36c7bf6e5e86ce2150875a84ce77f477375": { - "address": "0xf329e36c7bf6e5e86ce2150875a84ce77f477375", - "symbol": "AAAVE", - "decimals": 18, - "name": "Aave v3 AAVE", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/10/0xf329e36c7bf6e5e86ce2150875a84ce77f477375.png", - "aggregators": [ - "CoinGecko", - "1inch", - "LiFi", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 6 - }, - "0x191c10aa4af7c30e871e70c95db0e4eb77237530": { - "address": "0x191c10aa4af7c30e871e70c95db0e4eb77237530", - "symbol": "ALINK", - "decimals": 18, - "name": "Aave v3 LINK", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/10/0x191c10aa4af7c30e871e70c95db0e4eb77237530.png", - "aggregators": [ - "CoinGecko", - "1inch", - "LiFi", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 6 - }, - "0xb12c13e66ade1f72f71834f2fc5082db8c091358": { - "address": "0xb12c13e66ade1f72f71834f2fc5082db8c091358", - "symbol": "ROOBEE", - "decimals": 18, - "name": "Roobee", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/10/0xb12c13e66ade1f72f71834f2fc5082db8c091358.png", - "aggregators": [ - "CoinGecko", - "LiFi", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 6 - }, - "0x625e7708f30ca75bfd92586e17077590c60eb4cd": { - "address": "0x625e7708f30ca75bfd92586e17077590c60eb4cd", - "symbol": "AUSDC", - "decimals": 6, - "name": "Aave v3 USDC", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/10/0x625e7708f30ca75bfd92586e17077590c60eb4cd.png", - "aggregators": [ - "CoinGecko", - "1inch", - "LiFi", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 6 - }, - "0xe50fa9b3c56ffb159cb0fca61f5c9d750e8128c8": { - "address": "0xe50fa9b3c56ffb159cb0fca61f5c9d750e8128c8", - "symbol": "AWETH", - "decimals": 18, - "name": "Aave v3 WETH", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/10/0xe50fa9b3c56ffb159cb0fca61f5c9d750e8128c8.png", - "aggregators": [ - "CoinGecko", - "1inch", - "LiFi", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 6 - }, - "0xc45a479877e1e9dfe9fcd4056c699575a1045daa": { - "address": "0xc45a479877e1e9dfe9fcd4056c699575a1045daa", - "symbol": "AWSTETH", - "decimals": 18, - "name": "Aave v3 wstETH", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/10/0xc45a479877e1e9dfe9fcd4056c699575a1045daa.png", - "aggregators": [ - "CoinGecko", - "1inch", - "LiFi", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 6 - }, - "0x8eb270e296023e9d92081fdf967ddd7878724424": { - "address": "0x8eb270e296023e9d92081fdf967ddd7878724424", - "symbol": "ALUSD", - "decimals": 18, - "name": "Aave v3 LUSD", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/10/0x8eb270e296023e9d92081fdf967ddd7878724424.png", - "aggregators": [ - "CoinGecko", - "1inch", - "LiFi", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 6 - }, - "0x15e770b95edd73fd96b02ece0266247d50895e76": { - "address": "0x15e770b95edd73fd96b02ece0266247d50895e76", - "symbol": "JRT", - "decimals": 18, - "name": "Jarvis Reward", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/10/0x15e770b95edd73fd96b02ece0266247d50895e76.png", - "aggregators": [ - "CoinGecko", - "LiFi", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 6 - }, - "0xee9801669c6138e84bd50deb500827b776777d28": { - "address": "0xee9801669c6138e84bd50deb500827b776777d28", - "symbol": "O3", - "decimals": 18, - "name": "O3 Swap", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/10/0xee9801669c6138e84bd50deb500827b776777d28.png", - "aggregators": [ - "CoinGecko", - "LiFi", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 6 - }, - "0x4e200fe2f3efb977d5fd9c430a41531fb04d97b8": { - "address": "0x4e200fe2f3efb977d5fd9c430a41531fb04d97b8", - "symbol": "ORDER", - "decimals": 18, - "name": "Orderly Network", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/10/0x4e200fe2f3efb977d5fd9c430a41531fb04d97b8.png", - "aggregators": [ - "CoinGecko", - "LiFi", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 6 - }, - "0x4a971e87ad1f61f7f3081645f52a99277ae917cf": { - "address": "0x4a971e87ad1f61f7f3081645f52a99277ae917cf", - "symbol": "XVS", - "decimals": 18, - "name": "Venus", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/10/0x4a971e87ad1f61f7f3081645f52a99277ae917cf.png", - "aggregators": [ - "CoinGecko", - "LiFi", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0xaf20f5f19698f1d19351028cd7103b63d30de7d7": { - "address": "0xaf20f5f19698f1d19351028cd7103b63d30de7d7", - "symbol": "WAGMI", - "decimals": 18, - "name": "Wagmi", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/10/0xaf20f5f19698f1d19351028cd7103b63d30de7d7.png", - "aggregators": [ - "CoinGecko", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0xb829b68f57cc546da7e5806a929e53be32a4625d": { - "address": "0xb829b68f57cc546da7e5806a929e53be32a4625d", - "symbol": "AXLETH", - "decimals": 18, - "name": "Axelar Wrapped Ether", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/10/0xb829b68f57cc546da7e5806a929e53be32a4625d.png", - "aggregators": [ - "CoinGecko", - "Rubic", - "Squid", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x7f5373ae26c3e8ffc4c77b7255df7ec1a9af52a6": { - "address": "0x7f5373ae26c3e8ffc4c77b7255df7ec1a9af52a6", - "symbol": "AXLUSDT", - "decimals": 6, - "name": "Bridged Tether (Axelar)", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/10/0x7f5373ae26c3e8ffc4c77b7255df7ec1a9af52a6.png", - "aggregators": [ - "CoinGecko", - "Rubic", - "Squid", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x5d3a1ff2b6bab83b63cd9ad0787074081a52ef34": { - "address": "0x5d3a1ff2b6bab83b63cd9ad0787074081a52ef34", - "symbol": "USDE", - "decimals": 18, - "name": "USDE", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/10/0x5d3a1ff2b6bab83b63cd9ad0787074081a52ef34.png", - "aggregators": ["CoinGecko", "LiFi", "Socket", "Rubic", "Rango"], - "occurrences": 5 - }, - "0xc4a65a93dd6cd9717551ebe827e8baee025d1d7e": { - "address": "0xc4a65a93dd6cd9717551ebe827e8baee025d1d7e", - "symbol": "PNP", - "decimals": 18, - "name": "Penpie", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/10/0xc4a65a93dd6cd9717551ebe827e8baee025d1d7e.png", - "aggregators": [ - "CoinGecko", - "LiFi", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x0000206329b97db379d5e1bf586bbdb969c63274": { - "address": "0x0000206329b97db379d5e1bf586bbdb969c63274", - "symbol": "USDA", - "decimals": 18, - "name": "USDA", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/10/0x0000206329b97db379d5e1bf586bbdb969c63274.png", - "aggregators": ["LiFi", "Socket", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 5 - }, - "0x41b94c5867f7f6217c9a30520cb3e793b1ee1b97": { - "address": "0x41b94c5867f7f6217c9a30520cb3e793b1ee1b97", - "symbol": "AXLTIA", - "decimals": 6, - "name": "Axelar Wrapped TIA", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/10/0x41b94c5867f7f6217c9a30520cb3e793b1ee1b97.png", - "aggregators": ["LiFi", "Socket", "Rubic", "Squid", "Rango"], - "occurrences": 5 - }, - "0x6f748fd65d7c71949ba6641b3248c4c191f3b322": { - "address": "0x6f748fd65d7c71949ba6641b3248c4c191f3b322", - "symbol": "EXAWBTC", - "decimals": 8, - "name": "Exactly WBTC", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/10/0x6f748fd65d7c71949ba6641b3248c4c191f3b322.png", - "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0xb9243c495117343981ec9f8aa2abffee54396fc0": { - "address": "0xb9243c495117343981ec9f8aa2abffee54396fc0", - "symbol": "USDPY", - "decimals": 18, - "name": "Perpetual Delta Neutral Yield (Optimism)", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/10/0xb9243c495117343981ec9f8aa2abffee54396fc0.png", - "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0x8fb94e08bc984497aaaf1a545ed455be89f8c675": { - "address": "0x8fb94e08bc984497aaaf1a545ed455be89f8c675", - "symbol": "TVPLS", - "decimals": 0, - "name": "Aktionariat TV PLUS AG Tokenized Shares", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/10/0x8fb94e08bc984497aaaf1a545ed455be89f8c675.png", - "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0xc02b55bb2fe3643e1955b13515396ce23b110f80": { - "address": "0xc02b55bb2fe3643e1955b13515396ce23b110f80", - "symbol": "AXRAS", - "decimals": 0, - "name": "Aktionariat Axelra Early Stage AG Tokenized Shares", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/10/0xc02b55bb2fe3643e1955b13515396ce23b110f80.png", - "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0xe64b4eb5eec6343887c4683da31f0ca62ea39ce3": { - "address": "0xe64b4eb5eec6343887c4683da31f0ca62ea39ce3", - "symbol": "BEES", - "decimals": 0, - "name": "Aktionariat BEE Digital Growth AG Tokenized Shares", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/10/0xe64b4eb5eec6343887c4683da31f0ca62ea39ce3.png", - "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0xa72f7df6c1454096387dbb74f70b3dac4f0a61f5": { - "address": "0xa72f7df6c1454096387dbb74f70b3dac4f0a61f5", - "symbol": "CAS", - "decimals": 0, - "name": "Aktionariat Carnault AG Tokenized Shares", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/10/0xa72f7df6c1454096387dbb74f70b3dac4f0a61f5.png", - "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0xed9b52e6d2df4ad9fc258254e1e5ef5ad0b3ca3c": { - "address": "0xed9b52e6d2df4ad9fc258254e1e5ef5ad0b3ca3c", - "symbol": "FDOS", - "decimals": 0, - "name": "Aktionariat Fieldoo AG Tokenized Shares", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/10/0xed9b52e6d2df4ad9fc258254e1e5ef5ad0b3ca3c.png", - "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0x5ad323d764301e057614edb0449f470d68ea9485": { - "address": "0x5ad323d764301e057614edb0449f470d68ea9485", - "symbol": "SIAS", - "decimals": 0, - "name": "Aktionariat SIA Swiss Influencer Award AG Tokenized Shares", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/10/0x5ad323d764301e057614edb0449f470d68ea9485.png", - "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0xf8e943f646816e4b51279b8934753821ed832dca": { - "address": "0xf8e943f646816e4b51279b8934753821ed832dca", - "symbol": "CTH", - "decimals": 18, - "name": "Cthulhu Finance", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/10/0xf8e943f646816e4b51279b8934753821ed832dca.png", - "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0x6926b434cce9b5b7966ae1bfeef6d0a7dcf3a8bb": { - "address": "0x6926b434cce9b5b7966ae1bfeef6d0a7dcf3a8bb", - "symbol": "EXAUSDC", - "decimals": 6, - "name": "Exactly USD Coin", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/10/0x6926b434cce9b5b7966ae1bfeef6d0a7dcf3a8bb.png", - "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0xa430a427bd00210506589906a71b54d6c256cedb": { - "address": "0xa430a427bd00210506589906a71b54d6c256cedb", - "symbol": "EXAOP", - "decimals": 18, - "name": "Exactly Optimism", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/10/0xa430a427bd00210506589906a71b54d6c256cedb.png", - "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0x065399a1e5522af1c9044c18ce60ec70d64d74a1": { - "address": "0x065399a1e5522af1c9044c18ce60ec70d64d74a1", - "symbol": "FNLS", - "decimals": 0, - "name": "Aktionariat Finelli Studios AG Tokenized Shares", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/10/0x065399a1e5522af1c9044c18ce60ec70d64d74a1.png", - "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0x22ab31cd55130435b5efbf9224b6a9d5ec36533f": { - "address": "0x22ab31cd55130435b5efbf9224b6a9d5ec36533f", - "symbol": "EXAWSTETH", - "decimals": 18, - "name": "Exactly Wrapped stETH", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/10/0x22ab31cd55130435b5efbf9224b6a9d5ec36533f.png", - "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0x69420f9e38a4e60a62224c489be4bf7a94402496": { - "address": "0x69420f9e38a4e60a62224c489be4bf7a94402496", - "symbol": "MONEY", - "decimals": 18, - "name": "Defi.money", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/10/0x69420f9e38a4e60a62224c489be4bf7a94402496.png", - "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0xb5090d514bcaca7dafb7e52763658844121f346d": { - "address": "0xb5090d514bcaca7dafb7e52763658844121f346d", - "symbol": "BNRY", - "decimals": 18, - "name": "Binary Holdings", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/10/0xb5090d514bcaca7dafb7e52763658844121f346d.png", - "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0x0d82b5d3a8420c285c6d353a6bdc30d164bb50f0": { - "address": "0x0d82b5d3a8420c285c6d353a6bdc30d164bb50f0", - "symbol": "SPOS", - "decimals": 0, - "name": "Aktionariat Sportsparadise Switzerland AG Tokenized Shares", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/10/0x0d82b5d3a8420c285c6d353a6bdc30d164bb50f0.png", - "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0x071682832d213638f8eda67a873262e581a4006d": { - "address": "0x071682832d213638f8eda67a873262e581a4006d", - "symbol": "VRGNS", - "decimals": 0, - "name": "Aktionariat Vereign AG Tokenized Shares", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/10/0x071682832d213638f8eda67a873262e581a4006d.png", - "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0x3ed9acaac7bd974eb83a8ea6432a239e3c829d5d": { - "address": "0x3ed9acaac7bd974eb83a8ea6432a239e3c829d5d", - "symbol": "2192", - "decimals": 18, - "name": "LERNITAS", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/10/0x3ed9acaac7bd974eb83a8ea6432a239e3c829d5d.png", - "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0xd6c67ff71a82f1d994d94fa01295467d273d7324": { - "address": "0xd6c67ff71a82f1d994d94fa01295467d273d7324", - "symbol": "DDCS", - "decimals": 0, - "name": "Aktionariat DDC Schweiz AG Tokenized Shares", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/10/0xd6c67ff71a82f1d994d94fa01295467d273d7324.png", - "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0xc26921b5b9ee80773774d36c84328ccb22c3a819": { - "address": "0xc26921b5b9ee80773774d36c84328ccb22c3a819", - "symbol": "WOPTIDOGE", - "decimals": 18, - "name": "Wrapped OptiDoge", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/10/0xc26921b5b9ee80773774d36c84328ccb22c3a819.png", - "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0xe3b3a464ee575e8e25d2508918383b89c832f275": { - "address": "0xe3b3a464ee575e8e25d2508918383b89c832f275", - "symbol": "PUSDC.E", - "decimals": 6, - "name": "Prize USDC.e - Aave", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/10/0xe3b3a464ee575e8e25d2508918383b89c832f275.png", - "aggregators": ["CoinGecko", "LiFi", "Rubic", "Rango"], - "occurrences": 4 - }, - "0x10b3667304130ecc9c972008459249e8141ced97": { - "address": "0x10b3667304130ecc9c972008459249e8141ced97", - "symbol": "CFES", - "decimals": 0, - "name": "Aktionariat Clever Forever Education AG Tokenized Shares", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/10/0x10b3667304130ecc9c972008459249e8141ced97.png", - "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0xc04fb38f10ad352c5f16bd4546f7456e7f1a2d9e": { - "address": "0xc04fb38f10ad352c5f16bd4546f7456e7f1a2d9e", - "symbol": "MNTO", - "decimals": 18, - "name": "Minato", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/10/0xc04fb38f10ad352c5f16bd4546f7456e7f1a2d9e.png", - "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0x94025780a1ab58868d9b2dbbb775f44b32e8e6e5": { - "address": "0x94025780a1ab58868d9b2dbbb775f44b32e8e6e5", - "symbol": "BETS", - "decimals": 18, - "name": "BetSwirl", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/10/0x94025780a1ab58868d9b2dbbb775f44b32e8e6e5.png", - "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0x42069d11a2cc72388a2e06210921e839cfbd3280": { - "address": "0x42069d11a2cc72388a2e06210921e839cfbd3280", - "symbol": "GNOME", - "decimals": 18, - "name": "GnomeLand", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/10/0x42069d11a2cc72388a2e06210921e839cfbd3280.png", - "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0xd336c74b840f9962cf2c666f8666d6d61ec24440": { - "address": "0xd336c74b840f9962cf2c666f8666d6d61ec24440", - "symbol": "BALN", - "decimals": 18, - "name": "Balanced", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/10/0xd336c74b840f9962cf2c666f8666d6d61ec24440.png", - "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0xa3b615667cbd33cfc69843bf11fbb2a1d926bd46": { - "address": "0xa3b615667cbd33cfc69843bf11fbb2a1d926bd46", - "symbol": "MPENDLE", - "decimals": 18, - "name": "mPendle", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/10/0xa3b615667cbd33cfc69843bf11fbb2a1d926bd46.png", - "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0xe2dca969624795985f2f083bcd0b674337ba130a": { - "address": "0xe2dca969624795985f2f083bcd0b674337ba130a", - "symbol": "SKR", - "decimals": 18, - "name": "Saakuru", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/10/0xe2dca969624795985f2f083bcd0b674337ba130a.png", - "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0x50549be7e21c3dc0db03c3abab83e1a78d07e6e0": { - "address": "0x50549be7e21c3dc0db03c3abab83e1a78d07e6e0", - "symbol": "IONUSDC", - "decimals": 6, - "name": "Ionic USD Coin", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/10/0x50549be7e21c3dc0db03c3abab83e1a78d07e6e0.png", - "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0xb2918350826c1fb3c8b25a553b5d49611698206f": { - "address": "0xb2918350826c1fb3c8b25a553b5d49611698206f", - "symbol": "IONUSDT", - "decimals": 6, - "name": "Ionic Tether USD", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/10/0xb2918350826c1fb3c8b25a553b5d49611698206f.png", - "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0xf7dc37493e2e375dfdebec75e71d555af68648bf": { - "address": "0xf7dc37493e2e375dfdebec75e71d555af68648bf", - "symbol": "UTU", - "decimals": 18, - "name": "UTU Coin", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/10/0xf7dc37493e2e375dfdebec75e71d555af68648bf.png", - "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0x5f5292fe4583f476ab90fbf247999816a9503f9e": { - "address": "0x5f5292fe4583f476ab90fbf247999816a9503f9e", - "symbol": "SMP", - "decimals": 18, - "name": "Seamoon Protocol", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/10/0x5f5292fe4583f476ab90fbf247999816a9503f9e.png", - "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0x8413041a7702603d9d991f2c4add29e4e8a241f8": { - "address": "0x8413041a7702603d9d991f2c4add29e4e8a241f8", - "symbol": "ROUTE", - "decimals": 18, - "name": "Router Protocol [OLD]", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/10/0x8413041a7702603d9d991f2c4add29e4e8a241f8.png", - "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0x35b5a3bf31b67f832230da9424824edc9f7ad98c": { - "address": "0x35b5a3bf31b67f832230da9424824edc9f7ad98c", - "symbol": "PT", - "decimals": 18, - "name": "Phemex Token", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/10/0x35b5a3bf31b67f832230da9424824edc9f7ad98c.png", - "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0xd3ac016b1b8c80eeadde4d186a9138c9324e4189": { - "address": "0xd3ac016b1b8c80eeadde4d186a9138c9324e4189", - "symbol": "OK", - "decimals": 18, - "name": "Okcash", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/10/0xd3ac016b1b8c80eeadde4d186a9138c9324e4189.png", - "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0xf899e3909b4492859d44260e1de41a9e663e70f5": { - "address": "0xf899e3909b4492859d44260e1de41a9e663e70f5", - "symbol": "RADIO", - "decimals": 18, - "name": "RadioShack", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/10/0xf899e3909b4492859d44260e1de41a9e663e70f5.png", - "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0x764a726d9ced0433a8d7643335919deb03a9a935": { - "address": "0x764a726d9ced0433a8d7643335919deb03a9a935", - "symbol": "POKT", - "decimals": 6, - "name": "Pocket Network", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/10/0x764a726d9ced0433a8d7643335919deb03a9a935.png", - "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0x000000000000012def132e61759048be5b5c6033": { - "address": "0x000000000000012def132e61759048be5b5c6033", - "symbol": "CX", - "decimals": 18, - "name": "Cortex", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/10/0x000000000000012def132e61759048be5b5c6033.png", - "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0xea50f402653c41cadbafd1f788341db7b7f37816": { - "address": "0xea50f402653c41cadbafd1f788341db7b7f37816", - "symbol": "SGYD", - "decimals": 18, - "name": "sGYD", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/10/0xea50f402653c41cadbafd1f788341db7b7f37816.png", - "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0x1d1498166ddceee616a6d99868e1e0677300056f": { - "address": "0x1d1498166ddceee616a6d99868e1e0677300056f", - "symbol": "SPACE", - "decimals": 18, - "name": "Space Token", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/10/0x1d1498166ddceee616a6d99868e1e0677300056f.png", - "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0xa6ae8f29e0031340ea5dbe11c2da4466cde34464": { - "address": "0xa6ae8f29e0031340ea5dbe11c2da4466cde34464", - "symbol": "SDUSD", - "decimals": 18, - "name": "Davos Protocol Staked DUSD", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/10/0xa6ae8f29e0031340ea5dbe11c2da4466cde34464.png", - "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0xbcb49fcb41899e31e442a4d7439964966e0c9b28": { - "address": "0xbcb49fcb41899e31e442a4d7439964966e0c9b28", - "symbol": "SLN", - "decimals": 18, - "name": "Smart Layer Network", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/10/0xbcb49fcb41899e31e442a4d7439964966e0c9b28.png", - "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0xdd462e9399624dfcf73018793bd50a7ef47940b9": { - "address": "0xdd462e9399624dfcf73018793bd50a7ef47940b9", - "symbol": "MEED", - "decimals": 18, - "name": "Meeds DAO", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/10/0xdd462e9399624dfcf73018793bd50a7ef47940b9.png", - "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0xe9185ee218cae427af7b9764a011bb89fea761b4": { - "address": "0xe9185ee218cae427af7b9764a011bb89fea761b4", - "symbol": "BRZ", - "decimals": 18, - "name": "BRZ Token", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/10/0xe9185ee218cae427af7b9764a011bb89fea761b4.png", - "aggregators": ["Uniswap", "Socket", "Rubic", "Rango"], - "occurrences": 4 - }, - "0x44805a7597ab90624e0b4aa6947a47f358ae4ef1": { - "address": "0x44805a7597ab90624e0b4aa6947a47f358ae4ef1", - "symbol": "COR", - "decimals": 18, - "name": "Cortensor", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/10/0x44805a7597ab90624e0b4aa6947a47f358ae4ef1.png", - "aggregators": ["Uniswap", "LiFi", "Socket", "Rango"], - "occurrences": 4 - }, - "0xca5d8f8a8d49439357d3cf46ca2e720702f132b8": { - "address": "0xca5d8f8a8d49439357d3cf46ca2e720702f132b8", - "symbol": "GYD", - "decimals": 18, - "name": "Gyroscope GYD", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/10/0xca5d8f8a8d49439357d3cf46ca2e720702f132b8.png", - "aggregators": ["LiFi", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0x2416092f143378750bb29b79ed961ab195cceea5": { - "address": "0x2416092f143378750bb29b79ed961ab195cceea5", - "symbol": "EZETH", - "decimals": 18, - "name": "Renzo Restaked ETH", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/10/0x2416092f143378750bb29b79ed961ab195cceea5.png", - "aggregators": ["LiFi", "Socket", "Squid", "Rango"], - "occurrences": 4 - }, - "0x300d2c875c6fb8ce4bf5480b4d34b7c9ea8a33a4": { - "address": "0x300d2c875c6fb8ce4bf5480b4d34b7c9ea8a33a4", - "symbol": "PXETH", - "decimals": 18, - "name": "Pirex Ether OFT", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/10/0x300d2c875c6fb8ce4bf5480b4d34b7c9ea8a33a4.png", - "aggregators": ["LiFi", "Socket", "Squid", "Rango"], - "occurrences": 4 - }, - "0x88dfaaabaf06f3a41d2606ea98bc8eda109abebb": { - "address": "0x88dfaaabaf06f3a41d2606ea98bc8eda109abebb", - "symbol": "AXLWMAI", - "decimals": 18, - "name": "Axelar Wrapped WMAI", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/10/0x88dfaaabaf06f3a41d2606ea98bc8eda109abebb.png", - "aggregators": ["LiFi", "Rubic", "Squid", "Rango"], - "occurrences": 4 - }, - "0xb448ec505c924944ca8b2c55ef05c299ee0781df": { - "address": "0xb448ec505c924944ca8b2c55ef05c299ee0781df", - "symbol": "AXLKNC", - "decimals": 18, - "name": "Axelar Wrapped KNC", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/10/0xb448ec505c924944ca8b2c55ef05c299ee0781df.png", - "aggregators": ["LiFi", "Rubic", "Squid", "Rango"], - "occurrences": 4 - }, - "0xecc68d0451e20292406967fe7c04280e5238ac7d": { - "address": "0xecc68d0451e20292406967fe7c04280e5238ac7d", - "symbol": "FRXETH", - "decimals": 18, - "name": "Frax Ether", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/10/0xecc68d0451e20292406967fe7c04280e5238ac7d.png", - "aggregators": ["LiFi", "Rubic", "Squid", "Rango"], - "occurrences": 4 - }, - "0x087c440f251ff6cfe62b86dde1be558b95b4bb9b": { - "address": "0x087c440f251ff6cfe62b86dde1be558b95b4bb9b", - "symbol": "BOLD", - "decimals": 18, - "name": "Liquity BOLD", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/10/0x087c440f251ff6cfe62b86dde1be558b95b4bb9b.png", - "aggregators": ["Socket", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0xca5921df65e2e1b0b98ae91c0187ba80d4124898": { - "address": "0xca5921df65e2e1b0b98ae91c0187ba80d4124898", - "symbol": "LIQUIDRESERVE", - "decimals": 18, - "name": "EtherFi Liquid Reserve", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/10/0xca5921df65e2e1b0b98ae91c0187ba80d4124898.png", - "aggregators": ["CoinGecko", "Rubic", "Rango"], - "occurrences": 3 - }, - "0xe7ba07519dfa06e60059563f484d6090dedf21b3": { - "address": "0xe7ba07519dfa06e60059563f484d6090dedf21b3", - "symbol": "MRE7ETH", - "decimals": 18, - "name": "Midas Re7 Ethereum", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/10/0xe7ba07519dfa06e60059563f484d6090dedf21b3.png", - "aggregators": ["CoinGecko", "Rubic", "Rango"], - "occurrences": 3 - }, - "0xcc476b1a49bcdf5192561e87b6fb8ea78aa28c13": { - "address": "0xcc476b1a49bcdf5192561e87b6fb8ea78aa28c13", - "symbol": "WEEUR", - "decimals": 18, - "name": "Liquid Euro", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/10/0xcc476b1a49bcdf5192561e87b6fb8ea78aa28c13.png", - "aggregators": ["CoinGecko", "Rubic", "Rango"], - "occurrences": 3 - }, - "0xc3997ff81f2831929499c4ee4ee4e0f08f42d4d8": { - "address": "0xc3997ff81f2831929499c4ee4ee4e0f08f42d4d8", - "symbol": "VETH", - "decimals": 18, - "name": "Bifrost Voucher ETH", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/10/0xc3997ff81f2831929499c4ee4ee4e0f08f42d4d8.png", - "aggregators": ["CoinGecko", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x949185d3be66775ea648f4a306740ea9eff9c567": { - "address": "0x949185d3be66775ea648f4a306740ea9eff9c567", - "symbol": "YEL", - "decimals": 18, - "name": "YELToken", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/10/0x949185d3be66775ea648f4a306740ea9eff9c567.png", - "aggregators": ["CoinGecko", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x1b5f7fa46ed0f487f049c42f374ca4827d65a264": { - "address": "0x1b5f7fa46ed0f487f049c42f374ca4827d65a264", - "symbol": "DEURO", - "decimals": 18, - "name": "DEURO", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/10/0x1b5f7fa46ed0f487f049c42f374ca4827d65a264.png", - "aggregators": ["CoinGecko", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x4772d2e014f9fc3a820c444e3313968e9a5c8121": { - "address": "0x4772d2e014f9fc3a820c444e3313968e9a5c8121", - "symbol": "YUSD", - "decimals": 18, - "name": "YUSD", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/10/0x4772d2e014f9fc3a820c444e3313968e9a5c8121.png", - "aggregators": ["CoinGecko", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x1f444e9fb735b2438bee3b841efea060d235abf1": { - "address": "0x1f444e9fb735b2438bee3b841efea060d235abf1", - "symbol": "OPUL", - "decimals": 18, - "name": "OPUL", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/10/0x1f444e9fb735b2438bee3b841efea060d235abf1.png", - "aggregators": ["CoinGecko", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x5e0f5388896a6b6232abf076ee89bc6dfc043685": { - "address": "0x5e0f5388896a6b6232abf076ee89bc6dfc043685", - "symbol": "AJNA", - "decimals": 18, - "name": "Ajna", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/10/0x5e0f5388896a6b6232abf076ee89bc6dfc043685.png", - "aggregators": ["Uniswap", "Socket", "Rango"], - "occurrences": 3 - }, - "0xefcc1bacd639619135746bd8113b70abbfa6c7b0": { - "address": "0xefcc1bacd639619135746bd8113b70abbfa6c7b0", - "symbol": "CTRAVL", - "decimals": 4, - "name": "Travel Deals", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/10/0xefcc1bacd639619135746bd8113b70abbfa6c7b0.png", - "aggregators": ["Uniswap", "LiFi", "Rango"], - "occurrences": 3 - }, - "0x64ba55a341ec586a4c5d58d6297cde5125ab55bc": { - "address": "0x64ba55a341ec586a4c5d58d6297cde5125ab55bc", - "symbol": "SCRY", - "decimals": 18, - "name": "Scry Protocol", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/10/0x64ba55a341ec586a4c5d58d6297cde5125ab55bc.png", - "aggregators": ["Uniswap", "LiFi", "Rango"], - "occurrences": 3 - }, - "0xa925f4057d6e6c8faf8bde537ad14ba91a1d0337": { - "address": "0xa925f4057d6e6c8faf8bde537ad14ba91a1d0337", - "symbol": "SYNTH", - "decimals": 18, - "name": "Synth", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/10/0xa925f4057d6e6c8faf8bde537ad14ba91a1d0337.png", - "aggregators": ["Uniswap", "LiFi", "Rango"], - "occurrences": 3 - }, - "0x5ac3f9edb4896db1edc0ef9d91421e740083e6e8": { - "address": "0x5ac3f9edb4896db1edc0ef9d91421e740083e6e8", - "symbol": "XRING", - "decimals": 18, - "name": "Darwinia Network xRING", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/10/0x5ac3f9edb4896db1edc0ef9d91421e740083e6e8.png", - "aggregators": ["Uniswap", "Socket", "Rango"], - "occurrences": 3 - }, - "0xb0ffa8000886e57f86dd5264b9582b2ad87b2b91": { - "address": "0xb0ffa8000886e57f86dd5264b9582b2ad87b2b91", - "symbol": "W", - "decimals": 18, - "name": "Wormhole Token", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/10/0xb0ffa8000886e57f86dd5264b9582b2ad87b2b91.png", - "aggregators": ["LiFi", "Socket", "Rubic"], - "occurrences": 3 - }, - "0x894134a25a5fac1c2c26f1d8fbf05111a3cb9487": { - "address": "0x894134a25a5fac1c2c26f1d8fbf05111a3cb9487", - "symbol": "GRAI", - "decimals": 18, - "name": "Gravita Debt Token", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/10/0x894134a25a5fac1c2c26f1d8fbf05111a3cb9487.png", - "aggregators": ["LiFi", "Socket", "Rango"], - "occurrences": 3 - }, - "0x39fde572a18448f8139b7788099f0a0740f51205": { - "address": "0x39fde572a18448f8139b7788099f0a0740f51205", - "symbol": "OATH", - "decimals": 18, - "name": "Oath Token", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/10/0x39fde572a18448f8139b7788099f0a0740f51205.png", - "aggregators": ["LiFi", "Socket", "Rubic"], - "occurrences": 3 - }, - "0x2d691c2492e056adcae7ca317569af25910fc4cb": { - "address": "0x2d691c2492e056adcae7ca317569af25910fc4cb", - "symbol": "ZUNETH", - "decimals": 18, - "name": "Zunami ETH", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/10/0x2d691c2492e056adcae7ca317569af25910fc4cb.png", - "aggregators": ["LiFi", "Rubic", "Sonarwatch"], - "occurrences": 3 - }, - "0xdc30b3bde2734a0bc55af01b38943ef04aacb423": { - "address": "0xdc30b3bde2734a0bc55af01b38943ef04aacb423", - "symbol": "ZUNUSD", - "decimals": 18, - "name": "Zunami USD", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/10/0xdc30b3bde2734a0bc55af01b38943ef04aacb423.png", - "aggregators": ["LiFi", "Rubic", "Sonarwatch"], - "occurrences": 3 - }, - "0xdc8840a0a1ebf8be5ace62a7d9360dfcb26adffc": { - "address": "0xdc8840a0a1ebf8be5ace62a7d9360dfcb26adffc", - "symbol": "SMILE", - "decimals": 13, - "name": "SMILE", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/10/0xdc8840a0a1ebf8be5ace62a7d9360dfcb26adffc.png", - "aggregators": ["Socket", "Rubic", "Rango"], - "occurrences": 3 - }, - "0xc96f4f893286137ac17e07ae7f217ffca5db3ab6": { - "address": "0xc96f4f893286137ac17e07ae7f217ffca5db3ab6", - "symbol": "NFTE", - "decimals": 18, - "name": "NFTE", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/10/0xc96f4f893286137ac17e07ae7f217ffca5db3ab6.png", - "aggregators": ["Socket", "Rubic", "Rango"], - "occurrences": 3 - }, - "0xbc404429558292ee2d769e57d57d6e74bbd2792d": { - "address": "0xbc404429558292ee2d769e57d57d6e74bbd2792d", - "symbol": "SUSX", - "decimals": 18, - "name": "Savings USX", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/10/0xbc404429558292ee2d769e57d57d6e74bbd2792d.png", - "aggregators": ["Rubic", "Rango", "Sonarwatch"], - "occurrences": 3 - }, - "0xd42fe55e8a43b546aa75fda6483073be1d7ef74c": { - "address": "0xd42fe55e8a43b546aa75fda6483073be1d7ef74c", - "symbol": "NEROX", - "decimals": 18, - "name": "NEROX AI", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/10/0xd42fe55e8a43b546aa75fda6483073be1d7ef74c.png", - "aggregators": ["Rubic", "Rango", "Sonarwatch"], - "occurrences": 3 - }, - "0x3b6564b5da73a41d3a66e6558a98fd0e9e1e77ad": { - "address": "0x3b6564b5da73a41d3a66e6558a98fd0e9e1e77ad", - "symbol": "UTS", - "decimals": 18, - "name": "Unitus", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/10/0x3b6564b5da73a41d3a66e6558a98fd0e9e1e77ad.png", - "aggregators": ["Rubic", "Rango", "Sonarwatch"], - "occurrences": 3 - }, - "0x5c0ea461fe5e6f3b4f90a071e72243c14c6abfd7": { - "address": "0x5c0ea461fe5e6f3b4f90a071e72243c14c6abfd7", - "symbol": "AMU", - "decimals": 9, - "name": "Amulet Protocol", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/10/0x5c0ea461fe5e6f3b4f90a071e72243c14c6abfd7.png", - "aggregators": ["Rubic", "Rango", "Sonarwatch"], - "occurrences": 3 - }, - "0xd08c3f25862077056cb1b710937576af899a4959": { - "address": "0xd08c3f25862077056cb1b710937576af899a4959", - "symbol": "INSTETH", - "decimals": 18, - "name": "Inception stETH", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/10/0xd08c3f25862077056cb1b710937576af899a4959.png", - "aggregators": ["Rubic", "Rango", "Sonarwatch"], - "occurrences": 3 - }, - "0x3925f9820c312d968644f12ebd314c13558a7c05": { - "address": "0x3925f9820c312d968644f12ebd314c13558a7c05", - "symbol": "MASKS", - "decimals": 18, - "name": "Masks", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/10/0x3925f9820c312d968644f12ebd314c13558a7c05.png", - "aggregators": ["Rubic", "Rango", "Sonarwatch"], - "occurrences": 3 - }, - "0x8fc7c1109c08904160d6ae36482b79814d45eb78": { - "address": "0x8fc7c1109c08904160d6ae36482b79814d45eb78", - "symbol": "TEC", - "decimals": 18, - "name": "Token Engineering Commons", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/10/0x8fc7c1109c08904160d6ae36482b79814d45eb78.png", - "aggregators": ["Rubic", "Rango", "Sonarwatch"], - "occurrences": 3 - }, - "0x0a7b751fcdbbaa8bb988b9217ad5fb5cfe7bf7a0": { - "address": "0x0a7b751fcdbbaa8bb988b9217ad5fb5cfe7bf7a0", - "symbol": "ITP", - "decimals": 18, - "name": "Infinite Trading Protocol", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/10/0x0a7b751fcdbbaa8bb988b9217ad5fb5cfe7bf7a0.png", - "aggregators": [ - "CoinGecko", - "LiFi", - "Socket", - "Rubic", - "Squid", - "Rango" - ], - "occurrences": 6 - }, - "0x1610e3c85dd44af31ed7f33a63642012dca0c5a5": { - "address": "0x1610e3c85dd44af31ed7f33a63642012dca0c5a5", - "symbol": "MSETH", - "decimals": 18, - "name": "MSETH", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/10/0x1610e3c85dd44af31ed7f33a63642012dca0c5a5.png", - "aggregators": [ - "CoinGecko", - "LiFi", - "Socket", - "Rubic", - "Squid", - "Rango" - ], - "occurrences": 6 - }, - "0x9dabae7274d28a45f0b65bf8ed201a5731492ca0": { - "address": "0x9dabae7274d28a45f0b65bf8ed201a5731492ca0", - "symbol": "MSUSD", - "decimals": 18, - "name": "MSUSD", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/10/0x9dabae7274d28a45f0b65bf8ed201a5731492ca0.png", - "aggregators": [ - "CoinGecko", - "LiFi", - "Socket", - "Rubic", - "Squid", - "Rango" - ], - "occurrences": 6 - }, - "0x2ed6222cb75e353b8789bec7bb443b7ec9022021": { - "address": "0x2ed6222cb75e353b8789bec7bb443b7ec9022021", - "symbol": "KRL", - "decimals": 18, - "name": "KRYLL", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/10/0x2ed6222cb75e353b8789bec7bb443b7ec9022021.png", - "aggregators": [ - "Uniswap", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0xedf38688b27036816a50185caa430d5479e1c63e": { - "address": "0xedf38688b27036816a50185caa430d5479e1c63e", - "symbol": "OVER", - "decimals": 18, - "name": "Overtime", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/10/0xedf38688b27036816a50185caa430d5479e1c63e.png", - "aggregators": ["CoinGecko", "LiFi", "Rubic", "Squid", "Rango"], - "occurrences": 5 - }, - "0x5a7facb970d094b6c7ff1df0ea68d99e6e73cbff": { - "address": "0x5a7facb970d094b6c7ff1df0ea68d99e6e73cbff", - "symbol": "WEETH", - "decimals": 18, - "name": "WEETH", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/10/0x5a7facb970d094b6c7ff1df0ea68d99e6e73cbff.png", - "aggregators": ["CoinGecko", "LiFi", "Socket", "Rubic", "Rango"], - "occurrences": 5 - }, - "0x58538e6a46e07434d7e7375bc268d3cb839c0133": { - "address": "0x58538e6a46e07434d7e7375bc268d3cb839c0133", - "symbol": "ENA", - "decimals": 18, - "name": "ENA", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/10/0x58538e6a46e07434d7e7375bc268d3cb839c0133.png", - "aggregators": ["CoinGecko", "LiFi", "Socket", "Rubic", "Rango"], - "occurrences": 5 - }, - "0x211cc4dd073734da055fbf44a2b4667d5e5fe5d2": { - "address": "0x211cc4dd073734da055fbf44a2b4667d5e5fe5d2", - "symbol": "SUSDE", - "decimals": 18, - "name": "SUSDE", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/10/0x211cc4dd073734da055fbf44a2b4667d5e5fe5d2.png", - "aggregators": ["CoinGecko", "LiFi", "Socket", "Rubic", "Rango"], - "occurrences": 5 - }, - "0x80137510979822322193fc997d400d5a6c747bf7": { - "address": "0x80137510979822322193fc997d400d5a6c747bf7", - "symbol": "STONE", - "decimals": 17, - "name": "StakeStone ETH", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/10/0x80137510979822322193fc997d400d5a6c747bf7.png", - "aggregators": [ - "CoinGecko", - "LiFi", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x647fe0cca3df596ba414c8c600d441bb3d10d616": { - "address": "0x647fe0cca3df596ba414c8c600d441bb3d10d616", - "symbol": "BOSON", - "decimals": 18, - "name": "Boson Token", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/10/0x647fe0cca3df596ba414c8c600d441bb3d10d616.png", - "aggregators": ["Uniswap", "LiFi", "Socket", "Rubic", "Rango"], - "occurrences": 5 - }, - "0x81c9a7b55a4df39a9b7b5f781ec0e53539694873": { - "address": "0x81c9a7b55a4df39a9b7b5f781ec0e53539694873", - "symbol": "EXAUSDC.E", - "decimals": 6, - "name": "Exactly USD.e Coin", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/10/0x81c9a7b55a4df39a9b7b5f781ec0e53539694873.png", - "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0xc47da4cb96ce65a96844a01bfae509f9d5454534": { - "address": "0xc47da4cb96ce65a96844a01bfae509f9d5454534", - "symbol": "JPYT", - "decimals": 6, - "name": "Dephaser JPY", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/10/0xc47da4cb96ce65a96844a01bfae509f9d5454534.png", - "aggregators": ["CoinGecko", "Rubic", "Squid", "Rango"], - "occurrences": 4 - }, - "0x060cb087a9730e13aa191f31a6d86bff8dfcdcc0": { - "address": "0x060cb087a9730e13aa191f31a6d86bff8dfcdcc0", - "symbol": "OHM", - "decimals": 9, - "name": "OHM", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/10/0x060cb087a9730e13aa191f31a6d86bff8dfcdcc0.png", - "aggregators": ["CoinGecko", "LiFi", "Rubic", "Rango"], - "occurrences": 4 - }, - "0x3d63825b0d8669307366e6c8202f656b9e91d368": { - "address": "0x3d63825b0d8669307366e6c8202f656b9e91d368", - "symbol": "WGC", - "decimals": 6, - "name": "Wild Goat Coin", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/10/0x3d63825b0d8669307366e6c8202f656b9e91d368.png", - "aggregators": ["CoinGecko", "Socket", "Rubic", "Rango"], - "occurrences": 4 - }, - "0xe231db5f348d709239ef1741ea30961b3b635a61": { - "address": "0xe231db5f348d709239ef1741ea30961b3b635a61", - "symbol": "YNETHX", - "decimals": 18, - "name": "YNETHX", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/10/0xe231db5f348d709239ef1741ea30961b3b635a61.png", - "aggregators": ["CoinGecko", "Socket", "Rubic", "Rango"], - "occurrences": 4 - }, - "0x248f43b622ce2f35a14db3fc528284730b619cd5": { - "address": "0x248f43b622ce2f35a14db3fc528284730b619cd5", - "symbol": "SPECTRA", - "decimals": 14, - "name": "Spectra", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/10/0x248f43b622ce2f35a14db3fc528284730b619cd5.png", - "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0x9923db8d7fbacc2e69e87fad19b886c81cd74979": { - "address": "0x9923db8d7fbacc2e69e87fad19b886c81cd74979", - "symbol": "HYPER", - "decimals": 18, - "name": "Hyperlane", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/10/0x9923db8d7fbacc2e69e87fad19b886c81cd74979.png", - "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0xfd28f108e95f4d41daae9dbfff707d677985998e": { - "address": "0xfd28f108e95f4d41daae9dbfff707d677985998e", - "symbol": "PRL", - "decimals": 18, - "name": "Parallel Governance", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/10/0xfd28f108e95f4d41daae9dbfff707d677985998e.png", - "aggregators": ["CoinGecko", "LiFi", "Rubic", "Rango"], - "occurrences": 4 - }, - "0x084382d1cc4f4dfd1769b1cc1ac2a9b1f8365e90": { - "address": "0x084382d1cc4f4dfd1769b1cc1ac2a9b1f8365e90", - "symbol": "MODE", - "decimals": 18, - "name": "MODE", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/10/0x084382d1cc4f4dfd1769b1cc1ac2a9b1f8365e90.png", - "aggregators": ["CoinGecko", "Socket", "Rubic", "Rango"], - "occurrences": 4 - }, - "0xfe3b2f655b725ba6cd0cc78961e013968ffb30fb": { - "address": "0xfe3b2f655b725ba6cd0cc78961e013968ffb30fb", - "symbol": "RUBI", - "decimals": 18, - "name": "Rubicon", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/10/0xfe3b2f655b725ba6cd0cc78961e013968ffb30fb.png", - "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0x03569cc076654f82679c4ba2124d64774781b01d": { - "address": "0x03569cc076654f82679c4ba2124d64774781b01d", - "symbol": "BOLD", - "decimals": 18, - "name": "BOLD", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/10/0x03569cc076654f82679c4ba2124d64774781b01d.png", - "aggregators": ["CoinGecko", "LiFi", "Rubic", "Rango"], - "occurrences": 4 - }, - "0x1792865d493fe4dfdd504010d3c0f6da11e8046d": { - "address": "0x1792865d493fe4dfdd504010d3c0f6da11e8046d", - "symbol": "CLBTC", - "decimals": 18, - "name": "clBTC", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/10/0x1792865d493fe4dfdd504010d3c0f6da11e8046d.png", - "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0x2baa7e92f3f14883264bfa63058cc223ad719438": { - "address": "0x2baa7e92f3f14883264bfa63058cc223ad719438", - "symbol": "IBTC", - "decimals": 8, - "name": "IBTC", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/10/0x2baa7e92f3f14883264bfa63058cc223ad719438.png", - "aggregators": ["CoinGecko", "LiFi", "Rubic", "Rango"], - "occurrences": 4 - }, - "0xa1cdab15bba75a80df4089cafba013e376957cf5": { - "address": "0xa1cdab15bba75a80df4089cafba013e376957cf5", - "symbol": "BUIDL", - "decimals": 6, - "name": "BlackRock USD Institutional Digital Liquidity Fund", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/10/0xa1cdab15bba75a80df4089cafba013e376957cf5.png", - "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0x80eede496655fb9047dd39d9f418d5483ed600df": { - "address": "0x80eede496655fb9047dd39d9f418d5483ed600df", - "symbol": "FRXUSD", - "decimals": 18, - "name": "FRXUSD", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/10/0x80eede496655fb9047dd39d9f418d5483ed600df.png", - "aggregators": ["CoinGecko", "LiFi", "Rubic", "Rango"], - "occurrences": 4 - }, - "0x139052115f8b1773cf7dcba6a553f922a2e54f69": { - "address": "0x139052115f8b1773cf7dcba6a553f922a2e54f69", - "symbol": "((==))", - "decimals": 6, - "name": "Nekocoin", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/10/0x139052115f8b1773cf7dcba6a553f922a2e54f69.png", - "aggregators": ["1inch", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0x000000001dc8bd45d7e7829fb1c969cbe4d0d1ec": { - "address": "0x000000001dc8bd45d7e7829fb1c969cbe4d0d1ec", - "symbol": "GTUSDA", - "decimals": 18, - "name": "Gauntlet USD Alpha", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/10/0x000000001dc8bd45d7e7829fb1c969cbe4d0d1ec.png", - "aggregators": ["CoinGecko", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x9f281eb58fd98ad98ede0fc4c553ad4d73e7ca2c": { - "address": "0x9f281eb58fd98ad98ede0fc4c553ad4d73e7ca2c", - "symbol": "STATAOPTUSDC", - "decimals": 6, - "name": "Static Aave Optimism USDC", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/10/0x9f281eb58fd98ad98ede0fc4c553ad4d73e7ca2c.png", - "aggregators": ["1inch", "LiFi", "Rango"], - "occurrences": 3 - }, - "0x61b620fad391b53a2d0973b10a3ed69558d5c66e": { - "address": "0x61b620fad391b53a2d0973b10a3ed69558d5c66e", - "symbol": "WAOPTDAI", - "decimals": 18, - "name": "Wrapped Aave Optimism DAI", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/10/0x61b620fad391b53a2d0973b10a3ed69558d5c66e.png", - "aggregators": ["1inch", "LiFi", "Rango"], - "occurrences": 3 - }, - "0x712ef4d78f43ecafa106ea003704a908c99d7f11": { - "address": "0x712ef4d78f43ecafa106ea003704a908c99d7f11", - "symbol": "WAOPTOP", - "decimals": 18, - "name": "Wrapped Aave Optimism OP", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/10/0x712ef4d78f43ecafa106ea003704a908c99d7f11.png", - "aggregators": ["1inch", "LiFi", "Rango"], - "occurrences": 3 - }, - "0xb972abef80046a57409e37a7df5def2638917516": { - "address": "0xb972abef80046a57409e37a7df5def2638917516", - "symbol": "STATAOPTWSTETH", - "decimals": 18, - "name": "Static Aave Optimism wstETH", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/10/0xb972abef80046a57409e37a7df5def2638917516.png", - "aggregators": ["1inch", "LiFi", "Rango"], - "occurrences": 3 - }, - "0x8ffdf2de812095b1d19cb146e4c004587c0a0692": { - "address": "0x8ffdf2de812095b1d19cb146e4c004587c0a0692", - "symbol": "AOPTMAI", - "decimals": 18, - "name": "Aave Optimism MAI", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/10/0x8ffdf2de812095b1d19cb146e4c004587c0a0692.png", - "aggregators": ["1inch", "LiFi", "Rango"], - "occurrences": 3 - }, - "0x4dd03dfd36548c840b563745e3fbec320f37ba7e": { - "address": "0x4dd03dfd36548c840b563745e3fbec320f37ba7e", - "symbol": "STATAOPTUSDCN", - "decimals": 6, - "name": "Static Aave Optimism USDCn", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/10/0x4dd03dfd36548c840b563745e3fbec320f37ba7e.png", - "aggregators": ["1inch", "LiFi", "Rango"], - "occurrences": 3 - }, - "0x035c93db04e5aaea54e6cd0261c492a3e0638b37": { - "address": "0x035c93db04e5aaea54e6cd0261c492a3e0638b37", - "symbol": "STATAOPTUSDT", - "decimals": 6, - "name": "Static Aave Optimism USDT", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/10/0x035c93db04e5aaea54e6cd0261c492a3e0638b37.png", - "aggregators": ["1inch", "LiFi", "Rango"], - "occurrences": 3 - }, - "0xd4f1cf9a038269fe8f03745c2875591ad6438ab1": { - "address": "0xd4f1cf9a038269fe8f03745c2875591ad6438ab1", - "symbol": "STATAOPTOP", - "decimals": 18, - "name": "Static Aave Optimism OP", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/10/0xd4f1cf9a038269fe8f03745c2875591ad6438ab1.png", - "aggregators": ["1inch", "LiFi", "Rango"], - "occurrences": 3 - }, - "0x39bcf217acc4bf2fcaf7bc8800e69d986912c75e": { - "address": "0x39bcf217acc4bf2fcaf7bc8800e69d986912c75e", - "symbol": "STATAOPTLINK", - "decimals": 18, - "name": "Static Aave Optimism LINK", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/10/0x39bcf217acc4bf2fcaf7bc8800e69d986912c75e.png", - "aggregators": ["1inch", "LiFi", "Rango"], - "occurrences": 3 - }, - "0xae0ca1b1bc6cac26981b5e2b9c40f8ce8a9082ee": { - "address": "0xae0ca1b1bc6cac26981b5e2b9c40f8ce8a9082ee", - "symbol": "STATAOPTAAVE", - "decimals": 18, - "name": "Static Aave Optimism AAVE", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/10/0xae0ca1b1bc6cac26981b5e2b9c40f8ce8a9082ee.png", - "aggregators": ["1inch", "LiFi", "Rango"], - "occurrences": 3 - }, - "0xf9ce3c97b4b54f3d16861420f4816d9f68190b7b": { - "address": "0xf9ce3c97b4b54f3d16861420f4816d9f68190b7b", - "symbol": "STATAOPTRETH", - "decimals": 18, - "name": "Static Aave Optimism rETH", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/10/0xf9ce3c97b4b54f3d16861420f4816d9f68190b7b.png", - "aggregators": ["1inch", "LiFi", "Rango"], - "occurrences": 3 - }, - "0x6ddc64289be8a71a707fb057d5d07cc756055d6e": { - "address": "0x6ddc64289be8a71a707fb057d5d07cc756055d6e", - "symbol": "STATAOPTDAI", - "decimals": 18, - "name": "Static Aave Optimism DAI", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/10/0x6ddc64289be8a71a707fb057d5d07cc756055d6e.png", - "aggregators": ["1inch", "LiFi", "Rango"], - "occurrences": 3 - }, - "0x6d998feefc7b3664ead09caf02b5a0fc2e365f18": { - "address": "0x6d998feefc7b3664ead09caf02b5a0fc2e365f18", - "symbol": "STATAOPTWBTC", - "decimals": 8, - "name": "Static Aave Optimism WBTC", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/10/0x6d998feefc7b3664ead09caf02b5a0fc2e365f18.png", - "aggregators": ["1inch", "LiFi", "Rango"], - "occurrences": 3 - }, - "0x38d693ce1df5aadf7bc62595a37d667ad57922e5": { - "address": "0x38d693ce1df5aadf7bc62595a37d667ad57922e5", - "symbol": "AOPTUSDCN", - "decimals": 6, - "name": "Aave Optimism USDCn", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/10/0x38d693ce1df5aadf7bc62595a37d667ad57922e5.png", - "aggregators": ["1inch", "LiFi", "Rango"], - "occurrences": 3 - }, - "0x3a956e2fcc7e71ea14b0257d40bebdb287d19652": { - "address": "0x3a956e2fcc7e71ea14b0257d40bebdb287d19652", - "symbol": "STATAOPTSUSD", - "decimals": 18, - "name": "Static Aave Optimism SUSD", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/10/0x3a956e2fcc7e71ea14b0257d40bebdb287d19652.png", - "aggregators": ["1inch", "LiFi", "Rango"], - "occurrences": 3 - }, - "0x84648dc3cefb601bc28a49a07a1a8bad04d30ad3": { - "address": "0x84648dc3cefb601bc28a49a07a1a8bad04d30ad3", - "symbol": "STATAOPTLUSD", - "decimals": 18, - "name": "Static Aave Optimism LUSD", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/10/0x84648dc3cefb601bc28a49a07a1a8bad04d30ad3.png", - "aggregators": ["1inch", "LiFi", "Rango"], - "occurrences": 3 - }, - "0x41b334e9f2c0ed1f30fd7c351874a6071c53a78e": { - "address": "0x41b334e9f2c0ed1f30fd7c351874a6071c53a78e", - "symbol": "WAOPTUSDCN", - "decimals": 6, - "name": "Wrapped Aave Optimism USDCn", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/10/0x41b334e9f2c0ed1f30fd7c351874a6071c53a78e.png", - "aggregators": ["1inch", "LiFi", "Rango"], - "occurrences": 3 - }, - "0x0ec63a55a688e5ba26afe8d9250114505e8b60a0": { - "address": "0x0ec63a55a688e5ba26afe8d9250114505e8b60a0", - "symbol": "WAOPTSUSD", - "decimals": 18, - "name": "Wrapped Aave Optimism SUSD", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/10/0x0ec63a55a688e5ba26afe8d9250114505e8b60a0.png", - "aggregators": ["1inch", "LiFi", "Rango"], - "occurrences": 3 - }, - "0x8e6a81b9d541a0cea090818b62c4b2de7f2a2cf7": { - "address": "0x8e6a81b9d541a0cea090818b62c4b2de7f2a2cf7", - "symbol": "WAOPTRETH", - "decimals": 18, - "name": "Wrapped Aave Optimism rETH", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/10/0x8e6a81b9d541a0cea090818b62c4b2de7f2a2cf7.png", - "aggregators": ["1inch", "LiFi", "Rango"], - "occurrences": 3 - }, - "0xbaf95bb30cdab3d5b7a11b67edef5631bd62be86": { - "address": "0xbaf95bb30cdab3d5b7a11b67edef5631bd62be86", - "symbol": "WAOPTWSTETH", - "decimals": 18, - "name": "Wrapped Aave Optimism wstETH", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/10/0xbaf95bb30cdab3d5b7a11b67edef5631bd62be86.png", - "aggregators": ["1inch", "LiFi", "Rango"], - "occurrences": 3 - }, - "0xea9020a9e04c557478dad749a1aad242b443042c": { - "address": "0xea9020a9e04c557478dad749a1aad242b443042c", - "symbol": "WAOPTWBTC", - "decimals": 8, - "name": "Wrapped Aave Optimism WBTC", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/10/0xea9020a9e04c557478dad749a1aad242b443042c.png", - "aggregators": ["1inch", "LiFi", "Rango"], - "occurrences": 3 - }, - "0x927cff131fd5b43fc992d071929b2c095d6e4b70": { - "address": "0x927cff131fd5b43fc992d071929b2c095d6e4b70", - "symbol": "WAOPTUSDT", - "decimals": 6, - "name": "Wrapped Aave Optimism USDT", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/10/0x927cff131fd5b43fc992d071929b2c095d6e4b70.png", - "aggregators": ["1inch", "LiFi", "Rango"], - "occurrences": 3 - }, - "0x0b590ef479c8e03825ae779839acb4583acc15fd": { - "address": "0x0b590ef479c8e03825ae779839acb4583acc15fd", - "symbol": "WAOPTUSDC", - "decimals": 6, - "name": "Wrapped Aave Optimism USDC", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/10/0x0b590ef479c8e03825ae779839acb4583acc15fd.png", - "aggregators": ["1inch", "LiFi", "Rango"], - "occurrences": 3 - }, - "0x413093e03d6aee4f2f7e48d4b88881bf4932b249": { - "address": "0x413093e03d6aee4f2f7e48d4b88881bf4932b249", - "symbol": "WAOPTLUSD", - "decimals": 18, - "name": "Wrapped Aave Optimism LUSD", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/10/0x413093e03d6aee4f2f7e48d4b88881bf4932b249.png", - "aggregators": ["1inch", "LiFi", "Rango"], - "occurrences": 3 - }, - "0x464b808c2c7e04b07e860fdf7a91870620246148": { - "address": "0x464b808c2c7e04b07e860fdf7a91870620246148", - "symbol": "WAOPTWETH", - "decimals": 18, - "name": "WAOPTWETH", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/10/0x464b808c2c7e04b07e860fdf7a91870620246148.png", - "aggregators": ["1inch", "Rubic", "Rango"], - "occurrences": 3 - }, - "0xc438643b0eee8a314eec53eb8a1ee6467c88fc24": { - "address": "0xc438643b0eee8a314eec53eb8a1ee6467c88fc24", - "symbol": "WAOPTLINK", - "decimals": 18, - "name": "Wrapped Aave Optimism LINK", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/10/0xc438643b0eee8a314eec53eb8a1ee6467c88fc24.png", - "aggregators": ["1inch", "LiFi", "Rango"], - "occurrences": 3 - }, - "0x527604e4d87a7562ec653dbe2878d0dcab7f1972": { - "address": "0x527604e4d87a7562ec653dbe2878d0dcab7f1972", - "symbol": "WAOPTAAVE", - "decimals": 18, - "name": "Wrapped Aave Optimism AAVE", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/10/0x527604e4d87a7562ec653dbe2878d0dcab7f1972.png", - "aggregators": ["1inch", "LiFi", "Rango"], - "occurrences": 3 - }, - "0x97513e975a7fa9072c72c92d8000b0db90b163c5": { - "address": "0x97513e975a7fa9072c72c92d8000b0db90b163c5", - "symbol": "BEETS", - "decimals": 18, - "name": "BEETS", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/10/0x97513e975a7fa9072c72c92d8000b0db90b163c5.png", - "aggregators": ["LiFi", "Rubic", "Rango"], - "occurrences": 3 - }, - "0xc22885e06cd8507c5c74a948c59af853aed1ea5c": { - "address": "0xc22885e06cd8507c5c74a948c59af853aed1ea5c", - "symbol": "USDD", - "decimals": 18, - "name": "Decentralized USD", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/10/0xc22885e06cd8507c5c74a948c59af853aed1ea5c.png", - "aggregators": ["Socket", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x0ce45dd53affbb011884ef1866e0738f58ab7969": { - "address": "0x0ce45dd53affbb011884ef1866e0738f58ab7969", - "symbol": "CGETH.HASHKEY", - "decimals": 18, - "name": "cgETH Hashkey Cloud", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/10/0x0ce45dd53affbb011884ef1866e0738f58ab7969.png", - "aggregators": ["Rubic", "Rango", "Sonarwatch"], - "occurrences": 3 - }, - "0xe4de4b87345815c71aa843ea4841bcdc682637bb": { - "address": "0xe4de4b87345815c71aa843ea4841bcdc682637bb", - "symbol": "BUILD", - "decimals": 4, - "name": "BUILD", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/10/0xe4de4b87345815c71aa843ea4841bcdc682637bb.png", - "aggregators": ["Rubic", "Rango", "Sonarwatch"], - "occurrences": 3 - }, - "0xfe5b10f053871e66a319a57a16cf4e709f51367f": { - "address": "0xfe5b10f053871e66a319a57a16cf4e709f51367f", - "symbol": "OVERPOW", - "decimals": 18, - "name": "OVERPOWERED", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/10/0xfe5b10f053871e66a319a57a16cf4e709f51367f.png", - "aggregators": ["Rubic", "Rango", "Sonarwatch"], - "occurrences": 3 - } - }, - "timestamp": 1779126362455 - }, - "0xa4b1": { - "data": { - "0xda10009cbd5d07dd0cecc66161fc93d7c9000da1": { - "address": "0xda10009cbd5d07dd0cecc66161fc93d7c9000da1", - "symbol": "DAI", - "decimals": 18, - "name": "Dai Stablecoin", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0xda10009cbd5d07dd0cecc66161fc93d7c9000da1.png", - "aggregators": [ - "TraderJoe", - "1inch", - "LiFi", - "TrustWallet", - "Socket", - "Rubic", - "Squid", - "Rango", - "Sonarwatch", - "SushiSwap" - ], - "occurrences": 10 - }, - "0xfd086bc7cd5c481dcc9c85ebe478a1c0b69fcbb9": { - "address": "0xfd086bc7cd5c481dcc9c85ebe478a1c0b69fcbb9", - "symbol": "USDT", - "decimals": 6, - "name": "Tether USD", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0xfd086bc7cd5c481dcc9c85ebe478a1c0b69fcbb9.png", - "aggregators": [ - "TraderJoe", - "1inch", - "LiFi", - "TrustWallet", - "Socket", - "Rubic", - "Squid", - "Rango", - "Sonarwatch", - "SushiSwap" - ], - "occurrences": 10 - }, - "0x82af49447d8a07e3bd95bd0d56f35241523fbab1": { - "address": "0x82af49447d8a07e3bd95bd0d56f35241523fbab1", - "symbol": "WETH", - "decimals": 18, - "name": "Wrapped Ether", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0x82af49447d8a07e3bd95bd0d56f35241523fbab1.png", - "aggregators": [ - "TraderJoe", - "1inch", - "LiFi", - "TrustWallet", - "Socket", - "Rubic", - "Squid", - "Rango", - "Sonarwatch", - "SushiSwap" - ], - "occurrences": 10 - }, - "0xf97f4df75117a78c1a5a0dbb814af92458539fb4": { - "address": "0xf97f4df75117a78c1a5a0dbb814af92458539fb4", - "symbol": "LINK", - "decimals": 18, - "name": "ChainLink Token", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0xf97f4df75117a78c1a5a0dbb814af92458539fb4.png", - "aggregators": [ - "TraderJoe", - "1inch", - "LiFi", - "Socket", - "Rubic", - "Squid", - "Rango", - "Sonarwatch", - "SushiSwap" - ], - "occurrences": 9 - }, - "0x539bde0d7dbd336b79148aa742883198bbf60342": { - "address": "0x539bde0d7dbd336b79148aa742883198bbf60342", - "symbol": "MAGIC", - "decimals": 18, - "name": "MAGIC", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0x539bde0d7dbd336b79148aa742883198bbf60342.png", - "aggregators": [ - "TraderJoe", - "1inch", - "LiFi", - "Socket", - "Rubic", - "Squid", - "Rango", - "Sonarwatch", - "SushiSwap" - ], - "occurrences": 9 - }, - "0x2f2a2543b76a4166549f7aab2e75bef0aefc5b0f": { - "address": "0x2f2a2543b76a4166549f7aab2e75bef0aefc5b0f", - "symbol": "WBTC", - "decimals": 8, - "name": "Wrapped BTC", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0x2f2a2543b76a4166549f7aab2e75bef0aefc5b0f.png", - "aggregators": [ - "TraderJoe", - "1inch", - "LiFi", - "Socket", - "Rubic", - "Squid", - "Rango", - "Sonarwatch", - "SushiSwap" - ], - "occurrences": 9 - }, - "0x6c2c06790b3e3e3c38e12ee22f8183b37a13ee55": { - "address": "0x6c2c06790b3e3e3c38e12ee22f8183b37a13ee55", - "symbol": "DPX", - "decimals": 18, - "name": "Dopex Governance Token", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0x6c2c06790b3e3e3c38e12ee22f8183b37a13ee55.png", - "aggregators": [ - "TraderJoe", - "1inch", - "LiFi", - "Socket", - "Rubic", - "Squid", - "Rango", - "Sonarwatch", - "SushiSwap" - ], - "occurrences": 9 - }, - "0x11cdb42b0eb46d95f990bedd4695a6e3fa034978": { - "address": "0x11cdb42b0eb46d95f990bedd4695a6e3fa034978", - "symbol": "CRV", - "decimals": 18, - "name": "Curve DAO Token", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0x11cdb42b0eb46d95f990bedd4695a6e3fa034978.png", - "aggregators": [ - "TraderJoe", - "1inch", - "LiFi", - "Socket", - "Rubic", - "Squid", - "Rango", - "Sonarwatch", - "SushiSwap" - ], - "occurrences": 9 - }, - "0x3e6648c5a70a150a88bce65f4ad4d506fe15d2af": { - "address": "0x3e6648c5a70a150a88bce65f4ad4d506fe15d2af", - "symbol": "SPELL", - "decimals": 18, - "name": "Spell Token", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0x3e6648c5a70a150a88bce65f4ad4d506fe15d2af.png", - "aggregators": [ - "TraderJoe", - "1inch", - "LiFi", - "Socket", - "Rubic", - "Squid", - "Rango", - "Sonarwatch", - "SushiSwap" - ], - "occurrences": 9 - }, - "0xd4d42f0b6def4ce0383636770ef773390d85c61a": { - "address": "0xd4d42f0b6def4ce0383636770ef773390d85c61a", - "symbol": "SUSHI", - "decimals": 18, - "name": "SushiToken", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0xd4d42f0b6def4ce0383636770ef773390d85c61a.png", - "aggregators": [ - "TraderJoe", - "1inch", - "LiFi", - "Socket", - "Rubic", - "Squid", - "Rango", - "Sonarwatch", - "SushiSwap" - ], - "occurrences": 9 - }, - "0xfa7f8980b0f1e64a2062791cc3b0871572f1f7f0": { - "address": "0xfa7f8980b0f1e64a2062791cc3b0871572f1f7f0", - "symbol": "UNI", - "decimals": 18, - "name": "Uniswap", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0xfa7f8980b0f1e64a2062791cc3b0871572f1f7f0.png", - "aggregators": [ - "TraderJoe", - "1inch", - "LiFi", - "Socket", - "Rubic", - "Squid", - "Rango", - "Sonarwatch", - "SushiSwap" - ], - "occurrences": 9 - }, - "0x32eb7902d4134bf98a28b963d26de779af92a212": { - "address": "0x32eb7902d4134bf98a28b963d26de779af92a212", - "symbol": "RDPX", - "decimals": 18, - "name": "Dopex Rebate Token", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0x32eb7902d4134bf98a28b963d26de779af92a212.png", - "aggregators": [ - "TraderJoe", - "1inch", - "LiFi", - "Socket", - "Rubic", - "Rango", - "SushiSwap" - ], - "occurrences": 7 - }, - "0xfc5a1a6eb076a2c7ad06ed22c90d7e710e35ad0a": { - "address": "0xfc5a1a6eb076a2c7ad06ed22c90d7e710e35ad0a", - "symbol": "GMX", - "decimals": 18, - "name": "GMX", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0xfc5a1a6eb076a2c7ad06ed22c90d7e710e35ad0a.png", - "aggregators": [ - "TraderJoe", - "1inch", - "LiFi", - "TrustWallet", - "Socket", - "Rubic", - "Squid", - "Rango", - "Sonarwatch", - "SushiSwap" - ], - "occurrences": 10 - }, - "0x912ce59144191c1204e64559fe8253a0e49e6548": { - "address": "0x912ce59144191c1204e64559fe8253a0e49e6548", - "symbol": "ARB", - "decimals": 18, - "name": "Arbitrum", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0x912ce59144191c1204e64559fe8253a0e49e6548.png", - "aggregators": [ - "TraderJoe", - "1inch", - "LiFi", - "Socket", - "Rubic", - "Squid", - "Rango", - "Sonarwatch", - "SushiSwap" - ], - "occurrences": 9 - }, - "0x354a6da3fcde098f8389cad84b0182725c6c91de": { - "address": "0x354a6da3fcde098f8389cad84b0182725c6c91de", - "symbol": "COMP", - "decimals": 18, - "name": "Compound", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0x354a6da3fcde098f8389cad84b0182725c6c91de.png", - "aggregators": [ - "TraderJoe", - "1inch", - "LiFi", - "Socket", - "Rubic", - "Squid", - "Rango", - "Sonarwatch", - "SushiSwap" - ], - "occurrences": 9 - }, - "0xaf88d065e77c8cc2239327c5edb3a432268e5831": { - "address": "0xaf88d065e77c8cc2239327c5edb3a432268e5831", - "symbol": "USDC", - "decimals": 6, - "name": "USD Coin (Native)", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0xaf88d065e77c8cc2239327c5edb3a432268e5831.png", - "aggregators": [ - "TraderJoe", - "1inch", - "LiFi", - "Socket", - "Rubic", - "Squid", - "Rango", - "Sonarwatch", - "SushiSwap" - ], - "occurrences": 9 - }, - "0x51fc0f6660482ea73330e414efd7808811a57fa2": { - "address": "0x51fc0f6660482ea73330e414efd7808811a57fa2", - "symbol": "PREMIA", - "decimals": 18, - "name": "Premia", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0x51fc0f6660482ea73330e414efd7808811a57fa2.png", - "aggregators": [ - "TraderJoe", - "1inch", - "LiFi", - "Socket", - "Rubic", - "Squid", - "Rango", - "Sonarwatch", - "SushiSwap" - ], - "occurrences": 9 - }, - "0x040d1edc9569d4bab2d15287dc5a4f10f56a56b8": { - "address": "0x040d1edc9569d4bab2d15287dc5a4f10f56a56b8", - "symbol": "BAL", - "decimals": 18, - "name": "Balancer", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0x040d1edc9569d4bab2d15287dc5a4f10f56a56b8.png", - "aggregators": [ - "TraderJoe", - "1inch", - "LiFi", - "Socket", - "Rubic", - "Rango", - "Sonarwatch", - "SushiSwap" - ], - "occurrences": 8 - }, - "0x9623063377ad1b27544c965ccd7342f7ea7e88c7": { - "address": "0x9623063377ad1b27544c965ccd7342f7ea7e88c7", - "symbol": "GRT", - "decimals": 18, - "name": "The Graph", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0x9623063377ad1b27544c965ccd7342f7ea7e88c7.png", - "aggregators": [ - "TraderJoe", - "1inch", - "LiFi", - "TrustWallet", - "Socket", - "Rubic", - "Squid", - "Rango", - "Sonarwatch" - ], - "occurrences": 9 - }, - "0xff970a61a04b1ca14834a43f5de4533ebddb5cc8": { - "address": "0xff970a61a04b1ca14834a43f5de4533ebddb5cc8", - "symbol": "USDC.E", - "decimals": 6, - "name": "Bridged USDC", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0xff970a61a04b1ca14834a43f5de4533ebddb5cc8.png", - "aggregators": [ - "TraderJoe", - "1inch", - "LiFi", - "TrustWallet", - "Rubic", - "Squid", - "Rango", - "Sonarwatch", - "SushiSwap" - ], - "occurrences": 9 - }, - "0x3082cc23568ea640225c2467653db90e9250aaa0": { - "address": "0x3082cc23568ea640225c2467653db90e9250aaa0", - "symbol": "RDNT", - "decimals": 18, - "name": "Radiant", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0x3082cc23568ea640225c2467653db90e9250aaa0.png", - "aggregators": [ - "TraderJoe", - "1inch", - "LiFi", - "Socket", - "Rubic", - "Squid", - "Rango", - "Sonarwatch", - "SushiSwap" - ], - "occurrences": 9 - }, - "0x5979d7b546e38e414f7e9822514be443a4800529": { - "address": "0x5979d7b546e38e414f7e9822514be443a4800529", - "symbol": "WSTETH", - "decimals": 18, - "name": "Wrapped liquid staked Ether 2.0", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0x5979d7b546e38e414f7e9822514be443a4800529.png", - "aggregators": [ - "TraderJoe", - "1inch", - "LiFi", - "Socket", - "Rubic", - "Squid", - "Rango", - "Sonarwatch", - "SushiSwap" - ], - "occurrences": 9 - }, - "0xfea7a6a0b346362bf88a9e4a88416b77a57d6c2a": { - "address": "0xfea7a6a0b346362bf88a9e4a88416b77a57d6c2a", - "symbol": "MIM", - "decimals": 18, - "name": "Magic Internet Money", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0xfea7a6a0b346362bf88a9e4a88416b77a57d6c2a.png", - "aggregators": [ - "TraderJoe", - "1inch", - "LiFi", - "Socket", - "Rubic", - "Squid", - "Rango", - "Sonarwatch", - "SushiSwap" - ], - "occurrences": 9 - }, - "0x6694340fc020c5e6b96567843da2df01b2ce1eb6": { - "address": "0x6694340fc020c5e6b96567843da2df01b2ce1eb6", - "symbol": "STG", - "decimals": 18, - "name": "StargateToken", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0x6694340fc020c5e6b96567843da2df01b2ce1eb6.png", - "aggregators": [ - "TraderJoe", - "1inch", - "LiFi", - "Socket", - "Rubic", - "Squid", - "Rango", - "Sonarwatch", - "SushiSwap" - ], - "occurrences": 9 - }, - "0xa970af1a584579b618be4d69ad6f73459d112f95": { - "address": "0xa970af1a584579b618be4d69ad6f73459d112f95", - "symbol": "SUSD", - "decimals": 18, - "name": "Synth sUSD", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0xa970af1a584579b618be4d69ad6f73459d112f95.png", - "aggregators": [ - "TraderJoe", - "LiFi", - "Socket", - "Rubic", - "Rango", - "Sonarwatch", - "SushiSwap" - ], - "occurrences": 7 - }, - "0x07e49d5de43dda6162fa28d24d5935c151875283": { - "address": "0x07e49d5de43dda6162fa28d24d5935c151875283", - "symbol": "GOVI", - "decimals": 18, - "name": "GOVI", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0x07e49d5de43dda6162fa28d24d5935c151875283.png", - "aggregators": [ - "TraderJoe", - "LiFi", - "Socket", - "Rubic", - "Rango", - "Sonarwatch", - "SushiSwap" - ], - "occurrences": 7 - }, - "0x35751007a407ca6feffe80b3cb397736d2cf4dbe": { - "address": "0x35751007a407ca6feffe80b3cb397736d2cf4dbe", - "symbol": "WEETH", - "decimals": 18, - "name": "Wrapped eETH", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0x35751007a407ca6feffe80b3cb397736d2cf4dbe.png", - "aggregators": [ - "TraderJoe", - "1inch", - "LiFi", - "Socket", - "Rubic", - "Squid", - "Rango", - "Sonarwatch", - "SushiSwap" - ], - "occurrences": 9 - }, - "0x2416092f143378750bb29b79ed961ab195cceea5": { - "address": "0x2416092f143378750bb29b79ed961ab195cceea5", - "symbol": "EZETH", - "decimals": 18, - "name": "Renzo Restaked ETH", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0x2416092f143378750bb29b79ed961ab195cceea5.png", - "aggregators": [ - "TraderJoe", - "1inch", - "LiFi", - "Socket", - "Rubic", - "Squid", - "Rango", - "Sonarwatch", - "SushiSwap" - ], - "occurrences": 9 - }, - "0x4e352cf164e64adcbad318c3a1e222e9eba4ce42": { - "address": "0x4e352cf164e64adcbad318c3a1e222e9eba4ce42", - "symbol": "MCB", - "decimals": 18, - "name": "MCDEX Token", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0x4e352cf164e64adcbad318c3a1e222e9eba4ce42.png", - "aggregators": [ - "TraderJoe", - "1inch", - "LiFi", - "Socket", - "Rubic", - "Rango", - "Sonarwatch", - "SushiSwap" - ], - "occurrences": 8 - }, - "0x4cb9a7ae498cedcbb5eae9f25736ae7d428c9d66": { - "address": "0x4cb9a7ae498cedcbb5eae9f25736ae7d428c9d66", - "symbol": "XAI", - "decimals": 18, - "name": "Xai", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0x4cb9a7ae498cedcbb5eae9f25736ae7d428c9d66.png", - "aggregators": [ - "TraderJoe", - "1inch", - "LiFi", - "Socket", - "Rubic", - "Squid", - "Rango", - "Sonarwatch" - ], - "occurrences": 8 - }, - "0xe80772eaf6e2e18b651f160bc9158b2a5cafca65": { - "address": "0xe80772eaf6e2e18b651f160bc9158b2a5cafca65", - "symbol": "XUSD", - "decimals": 6, - "name": "xUSD", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0xe80772eaf6e2e18b651f160bc9158b2a5cafca65.png", - "aggregators": [ - "TraderJoe", - "1inch", - "LiFi", - "Socket", - "Rubic", - "Squid", - "Rango", - "Sonarwatch" - ], - "occurrences": 8 - }, - "0xec70dcb4a1efa46b8f2d97c310c9c4790ba5ffa8": { - "address": "0xec70dcb4a1efa46b8f2d97c310c9c4790ba5ffa8", - "symbol": "RETH", - "decimals": 18, - "name": "Rocket Pool ETH", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0xec70dcb4a1efa46b8f2d97c310c9c4790ba5ffa8.png", - "aggregators": [ - "TraderJoe", - "1inch", - "LiFi", - "Socket", - "Rubic", - "Squid", - "Rango", - "Sonarwatch" - ], - "occurrences": 8 - }, - "0x17fc002b466eec40dae837fc4be5c67993ddbd6f": { - "address": "0x17fc002b466eec40dae837fc4be5c67993ddbd6f", - "symbol": "FRAX", - "decimals": 18, - "name": "Frax", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0x17fc002b466eec40dae837fc4be5c67993ddbd6f.png", - "aggregators": [ - "TraderJoe", - "LiFi", - "Socket", - "Rubic", - "Squid", - "Rango", - "Sonarwatch", - "SushiSwap" - ], - "occurrences": 8 - }, - "0x8d9ba570d6cb60c7e3e0f31343efe75ab8e65fb1": { - "address": "0x8d9ba570d6cb60c7e3e0f31343efe75ab8e65fb1", - "symbol": "GOHM", - "decimals": 18, - "name": "Governance OHM", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0x8d9ba570d6cb60c7e3e0f31343efe75ab8e65fb1.png", - "aggregators": [ - "TraderJoe", - "LiFi", - "Socket", - "Rubic", - "Squid", - "Rango", - "Sonarwatch", - "SushiSwap" - ], - "occurrences": 8 - }, - "0x088cd8f5ef3652623c22d48b1605dcfe860cd704": { - "address": "0x088cd8f5ef3652623c22d48b1605dcfe860cd704", - "symbol": "VELA", - "decimals": 18, - "name": "Vela Exchange", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0x088cd8f5ef3652623c22d48b1605dcfe860cd704.png", - "aggregators": [ - "TraderJoe", - "1inch", - "LiFi", - "Rubic", - "Squid", - "Rango", - "Sonarwatch", - "SushiSwap" - ], - "occurrences": 8 - }, - "0xbfa641051ba0a0ad1b0acf549a89536a0d76472e": { - "address": "0xbfa641051ba0a0ad1b0acf549a89536a0d76472e", - "symbol": "BADGER", - "decimals": 18, - "name": "Badger", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0xbfa641051ba0a0ad1b0acf549a89536a0d76472e.png", - "aggregators": [ - "TraderJoe", - "1inch", - "LiFi", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 7 - }, - "0x3a8b787f78d775aecfeea15706d4221b40f345ab": { - "address": "0x3a8b787f78d775aecfeea15706d4221b40f345ab", - "symbol": "CELR", - "decimals": 18, - "name": "CelerToken", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0x3a8b787f78d775aecfeea15706d4221b40f345ab.png", - "aggregators": [ - "TraderJoe", - "LiFi", - "Socket", - "Rubic", - "Rango", - "Sonarwatch", - "SushiSwap" - ], - "occurrences": 7 - }, - "0xa0b862f60edef4452f25b4160f177db44deb6cf1": { - "address": "0xa0b862f60edef4452f25b4160f177db44deb6cf1", - "symbol": "GNO", - "decimals": 18, - "name": "Gnosis Token", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0xa0b862f60edef4452f25b4160f177db44deb6cf1.png", - "aggregators": [ - "TraderJoe", - "LiFi", - "Socket", - "Rubic", - "Rango", - "Sonarwatch", - "SushiSwap" - ], - "occurrences": 7 - }, - "0x99f40b01ba9c469193b360f72740e416b17ac332": { - "address": "0x99f40b01ba9c469193b360f72740e416b17ac332", - "symbol": "MATH", - "decimals": 18, - "name": "MATH Token", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0x99f40b01ba9c469193b360f72740e416b17ac332.png", - "aggregators": [ - "TraderJoe", - "LiFi", - "Socket", - "Rubic", - "Rango", - "Sonarwatch", - "SushiSwap" - ], - "occurrences": 7 - }, - "0x0c880f6761f1af8d9aa9c466984b80dab9a8c9e8": { - "address": "0x0c880f6761f1af8d9aa9c466984b80dab9a8c9e8", - "symbol": "PENDLE", - "decimals": 18, - "name": "Pendle", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0x0c880f6761f1af8d9aa9c466984b80dab9a8c9e8.png", - "aggregators": [ - "TraderJoe", - "1inch", - "LiFi", - "Socket", - "Rubic", - "Squid", - "Rango" - ], - "occurrences": 7 - }, - "0xef888bca6ab6b1d26dbec977c455388ecd794794": { - "address": "0xef888bca6ab6b1d26dbec977c455388ecd794794", - "symbol": "RGT", - "decimals": 18, - "name": "Rari Governance Token", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0xef888bca6ab6b1d26dbec977c455388ecd794794.png", - "aggregators": [ - "CoinGecko", - "LiFi", - "Socket", - "Rubic", - "Rango", - "Sonarwatch", - "SushiSwap" - ], - "occurrences": 7 - }, - "0xcafcd85d8ca7ad1e1c6f82f651fa15e33aefd07b": { - "address": "0xcafcd85d8ca7ad1e1c6f82f651fa15e33aefd07b", - "symbol": "WOO", - "decimals": 18, - "name": "Wootrade Network", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0xcafcd85d8ca7ad1e1c6f82f651fa15e33aefd07b.png", - "aggregators": [ - "TraderJoe", - "LiFi", - "Socket", - "Rubic", - "Rango", - "Sonarwatch", - "SushiSwap" - ], - "occurrences": 7 - }, - "0x82e3a8f066a6989666b031d916c43672085b1582": { - "address": "0x82e3a8f066a6989666b031d916c43672085b1582", - "symbol": "YFI", - "decimals": 18, - "name": "yearn.finance", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0x82e3a8f066a6989666b031d916c43672085b1582.png", - "aggregators": [ - "TraderJoe", - "LiFi", - "Socket", - "Rubic", - "Rango", - "Sonarwatch", - "SushiSwap" - ], - "occurrences": 7 - }, - "0xf4d48ce3ee1ac3651998971541badbb9a14d7234": { - "address": "0xf4d48ce3ee1ac3651998971541badbb9a14d7234", - "symbol": "CREAM", - "decimals": 18, - "name": "Cream", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0xf4d48ce3ee1ac3651998971541badbb9a14d7234.png", - "aggregators": [ - "TraderJoe", - "LiFi", - "Socket", - "Rubic", - "Rango", - "Sonarwatch", - "SushiSwap" - ], - "occurrences": 7 - }, - "0x69eb4fa4a2fbd498c257c57ea8b7655a2559a581": { - "address": "0x69eb4fa4a2fbd498c257c57ea8b7655a2559a581", - "symbol": "DODO", - "decimals": 18, - "name": "DODO bird", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0x69eb4fa4a2fbd498c257c57ea8b7655a2559a581.png", - "aggregators": [ - "TraderJoe", - "LiFi", - "Socket", - "Rubic", - "Rango", - "Sonarwatch", - "SushiSwap" - ], - "occurrences": 7 - }, - "0x7ba4a00d54a07461d9db2aef539e91409943adc9": { - "address": "0x7ba4a00d54a07461d9db2aef539e91409943adc9", - "symbol": "SDT", - "decimals": 18, - "name": "Stake DAO Token", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0x7ba4a00d54a07461d9db2aef539e91409943adc9.png", - "aggregators": [ - "TraderJoe", - "LiFi", - "Socket", - "Rubic", - "Rango", - "Sonarwatch", - "SushiSwap" - ], - "occurrences": 7 - }, - "0x51318b7d00db7acc4026c88c3952b66278b6a67f": { - "address": "0x51318b7d00db7acc4026c88c3952b66278b6a67f", - "symbol": "PLS", - "decimals": 18, - "name": "Plutus", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0x51318b7d00db7acc4026c88c3952b66278b6a67f.png", - "aggregators": [ - "TraderJoe", - "LiFi", - "Rubic", - "Squid", - "Rango", - "Sonarwatch", - "SushiSwap" - ], - "occurrences": 7 - }, - "0x10393c20975cf177a3513071bc110f7962cd67da": { - "address": "0x10393c20975cf177a3513071bc110f7962cd67da", - "symbol": "JONES", - "decimals": 18, - "name": "Jones DAO", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0x10393c20975cf177a3513071bc110f7962cd67da.png", - "aggregators": [ - "TraderJoe", - "LiFi", - "Rubic", - "Squid", - "Rango", - "Sonarwatch", - "SushiSwap" - ], - "occurrences": 7 - }, - "0xddb46999f8891663a8f2828d25298f70416d7610": { - "address": "0xddb46999f8891663a8f2828d25298f70416d7610", - "symbol": "SUSDS", - "decimals": 18, - "name": "sUSDS", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0xddb46999f8891663a8f2828d25298f70416d7610.png", - "aggregators": [ - "CoinGecko", - "1inch", - "LiFi", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 7 - }, - "0x61dbbbb552dc893ab3aad09f289f811e67cef285": { - "address": "0x61dbbbb552dc893ab3aad09f289f811e67cef285", - "symbol": "SKATE", - "decimals": 18, - "name": "Skate", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0x61dbbbb552dc893ab3aad09f289f811e67cef285.png", - "aggregators": [ - "CoinGecko", - "1inch", - "LiFi", - "Socket", - "Rubic", - "Squid", - "Rango" - ], - "occurrences": 7 - }, - "0xf80d589b3dbe130c270a69f1a69d050f268786df": { - "address": "0xf80d589b3dbe130c270a69f1a69d050f268786df", - "symbol": "FLUX", - "decimals": 18, - "name": "Flux", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0xf80d589b3dbe130c270a69f1a69d050f268786df.png", - "aggregators": [ - "TraderJoe", - "LiFi", - "Socket", - "Rubic", - "Rango", - "SushiSwap" - ], - "occurrences": 6 - }, - "0x5575552988a3a80504bbaeb1311674fcfd40ad4b": { - "address": "0x5575552988a3a80504bbaeb1311674fcfd40ad4b", - "symbol": "SPA", - "decimals": 18, - "name": "Sperax", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0x5575552988a3a80504bbaeb1311674fcfd40ad4b.png", - "aggregators": [ - "TraderJoe", - "LiFi", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 6 - }, - "0x5d3a1ff2b6bab83b63cd9ad0787074081a52ef34": { - "address": "0x5d3a1ff2b6bab83b63cd9ad0787074081a52ef34", - "symbol": "USDE", - "decimals": 18, - "name": "USDe", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0x5d3a1ff2b6bab83b63cd9ad0787074081a52ef34.png", - "aggregators": [ - "TraderJoe", - "1inch", - "LiFi", - "Socket", - "Rubic", - "Squid", - "Rango", - "Sonarwatch", - "SushiSwap" - ], - "occurrences": 9 - }, - "0x1debd73e752beaf79865fd6446b0c970eae7732f": { - "address": "0x1debd73e752beaf79865fd6446b0c970eae7732f", - "symbol": "CBETH", - "decimals": 18, - "name": "Coinbase Wrapped Staked ETH", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0x1debd73e752beaf79865fd6446b0c970eae7732f.png", - "aggregators": [ - "TraderJoe", - "LiFi", - "Socket", - "Rubic", - "Squid", - "Rango", - "Sonarwatch", - "SushiSwap" - ], - "occurrences": 8 - }, - "0x6985884c4392d348587b19cb9eaaf157f13271cd": { - "address": "0x6985884c4392d348587b19cb9eaaf157f13271cd", - "symbol": "ZRO", - "decimals": 18, - "name": "LayerZero", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0x6985884c4392d348587b19cb9eaaf157f13271cd.png", - "aggregators": [ - "TraderJoe", - "LiFi", - "Socket", - "Rubic", - "Squid", - "Rango", - "Sonarwatch", - "SushiSwap" - ], - "occurrences": 8 - }, - "0xed3fb761414da74b74f33e5c5a1f78104b188dfc": { - "address": "0xed3fb761414da74b74f33e5c5a1f78104b188dfc", - "symbol": "NYAN", - "decimals": 18, - "name": "ArbiNYAN", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0xed3fb761414da74b74f33e5c5a1f78104b188dfc.png", - "aggregators": [ - "TraderJoe", - "LiFi", - "Socket", - "Rubic", - "Squid", - "Rango", - "Sonarwatch", - "SushiSwap" - ], - "occurrences": 8 - }, - "0x13ad51ed4f1b7e9dc168d8a00cb3f4ddd85efa60": { - "address": "0x13ad51ed4f1b7e9dc168d8a00cb3f4ddd85efa60", - "symbol": "LDO", - "decimals": 18, - "name": "Lido DAO", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0x13ad51ed4f1b7e9dc168d8a00cb3f4ddd85efa60.png", - "aggregators": [ - "TraderJoe", - "1inch", - "LiFi", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 7 - }, - "0x93b346b6bc2548da6a1e7d98e9a421b42541425b": { - "address": "0x93b346b6bc2548da6a1e7d98e9a421b42541425b", - "symbol": "LUSD", - "decimals": 18, - "name": "LUSD Stablecoin", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0x93b346b6bc2548da6a1e7d98e9a421b42541425b.png", - "aggregators": [ - "TraderJoe", - "LiFi", - "Socket", - "Rubic", - "Squid", - "Sonarwatch", - "SushiSwap" - ], - "occurrences": 7 - }, - "0xb766039cc6db368759c1e56b79affe831d0cc507": { - "address": "0xb766039cc6db368759c1e56b79affe831d0cc507", - "symbol": "RPL", - "decimals": 18, - "name": "Rocket Pool", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0xb766039cc6db368759c1e56b79affe831d0cc507.png", - "aggregators": [ - "TraderJoe", - "1inch", - "LiFi", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 7 - }, - "0xd77b108d4f6cefaa0cae9506a934e825becca46e": { - "address": "0xd77b108d4f6cefaa0cae9506a934e825becca46e", - "symbol": "WINR", - "decimals": 18, - "name": "WINR Protocol", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0xd77b108d4f6cefaa0cae9506a934e825becca46e.png", - "aggregators": [ - "TraderJoe", - "1inch", - "LiFi", - "Rubic", - "Squid", - "Rango", - "Sonarwatch" - ], - "occurrences": 7 - }, - "0x93c15cd7de26f07265f0272e0b831c5d7fab174f": { - "address": "0x93c15cd7de26f07265f0272e0b831c5d7fab174f", - "symbol": "LIQD", - "decimals": 18, - "name": "Liquid", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0x93c15cd7de26f07265f0272e0b831c5d7fab174f.png", - "aggregators": [ - "TraderJoe", - "1inch", - "Rubic", - "Squid", - "Rango", - "Sonarwatch", - "SushiSwap" - ], - "occurrences": 7 - }, - "0xc87b37a581ec3257b734886d9d3a581f5a9d056c": { - "address": "0xc87b37a581ec3257b734886d9d3a581f5a9d056c", - "symbol": "ATH", - "decimals": 18, - "name": "Aethir", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0xc87b37a581ec3257b734886d9d3a581f5a9d056c.png", - "aggregators": [ - "CoinGecko", - "1inch", - "Socket", - "Rubic", - "Squid", - "Rango", - "Sonarwatch" - ], - "occurrences": 7 - }, - "0x0341c0c0ec423328621788d4854119b97f44e391": { - "address": "0x0341c0c0ec423328621788d4854119b97f44e391", - "symbol": "SILO", - "decimals": 18, - "name": "Silo Governance Token", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0x0341c0c0ec423328621788d4854119b97f44e391.png", - "aggregators": [ - "TraderJoe", - "LiFi", - "Socket", - "Rubic", - "Rango", - "Sonarwatch", - "SushiSwap" - ], - "occurrences": 7 - }, - "0x371c7ec6d8039ff7933a2aa28eb827ffe1f52f07": { - "address": "0x371c7ec6d8039ff7933a2aa28eb827ffe1f52f07", - "symbol": "JOE", - "decimals": 18, - "name": "JOE", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0x371c7ec6d8039ff7933a2aa28eb827ffe1f52f07.png", - "aggregators": [ - "TraderJoe", - "1inch", - "LiFi", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 7 - }, - "0x9d2f299715d94d8a7e6f5eaa8e654e8c74a988a7": { - "address": "0x9d2f299715d94d8a7e6f5eaa8e654e8c74a988a7", - "symbol": "FXS", - "decimals": 18, - "name": "Frax Share", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0x9d2f299715d94d8a7e6f5eaa8e654e8c74a988a7.png", - "aggregators": [ - "TraderJoe", - "LiFi", - "Socket", - "Rubic", - "Squid", - "Rango", - "SushiSwap" - ], - "occurrences": 7 - }, - "0x323665443cef804a3b5206103304bd4872ea4253": { - "address": "0x323665443cef804a3b5206103304bd4872ea4253", - "symbol": "USDV", - "decimals": 6, - "name": "USDV", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0x323665443cef804a3b5206103304bd4872ea4253.png", - "aggregators": [ - "TraderJoe", - "LiFi", - "Socket", - "Rubic", - "Rango", - "Sonarwatch", - "SushiSwap" - ], - "occurrences": 7 - }, - "0x3b8db18e69d6686ad9371a423afe3dd1065c94f1": { - "address": "0x3b8db18e69d6686ad9371a423afe3dd1065c94f1", - "symbol": "ESP", - "decimals": 18, - "name": "Espresso", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0x3b8db18e69d6686ad9371a423afe3dd1065c94f1.png", - "aggregators": [ - "CoinGecko", - "LiFi", - "Socket", - "Rubic", - "Squid", - "Rango" - ], - "occurrences": 6 - }, - "0x46d0ce7de6247b0a95f67b43b589b4041bae7fbe": { - "address": "0x46d0ce7de6247b0a95f67b43b589b4041bae7fbe", - "symbol": "LRC", - "decimals": 18, - "name": "Loopring", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0x46d0ce7de6247b0a95f67b43b589b4041bae7fbe.png", - "aggregators": [ - "TraderJoe", - "LiFi", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 6 - }, - "0x2e9a6df78e42a30712c10a9dc4b1c8656f8f2879": { - "address": "0x2e9a6df78e42a30712c10a9dc4b1c8656f8f2879", - "symbol": "MKR", - "decimals": 18, - "name": "Maker", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0x2e9a6df78e42a30712c10a9dc4b1c8656f8f2879.png", - "aggregators": [ - "ArbitrumWhitelist", - "1inch", - "LiFi", - "Socket", - "Rubic", - "Rango" - ], - "occurrences": 6 - }, - "0x753d224bcf9aafacd81558c32341416df61d3dac": { - "address": "0x753d224bcf9aafacd81558c32341416df61d3dac", - "symbol": "PERP", - "decimals": 18, - "name": "Perpetual Protocol", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0x753d224bcf9aafacd81558c32341416df61d3dac.png", - "aggregators": [ - "TraderJoe", - "LiFi", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 6 - }, - "0x6491c05a82219b8d1479057361ff1654749b876b": { - "address": "0x6491c05a82219b8d1479057361ff1654749b876b", - "symbol": "USDS", - "decimals": 18, - "name": "USDS", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0x6491c05a82219b8d1479057361ff1654749b876b.png", - "aggregators": [ - "CoinGecko", - "1inch", - "LiFi", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 6 - }, - "0x031d35296154279dc1984dcd93e392b1f946737b": { - "address": "0x031d35296154279dc1984dcd93e392b1f946737b", - "symbol": "CAP", - "decimals": 18, - "name": "Cap", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0x031d35296154279dc1984dcd93e392b1f946737b.png", - "aggregators": [ - "TraderJoe", - "LiFi", - "Socket", - "Rubic", - "Rango", - "SushiSwap" - ], - "occurrences": 6 - }, - "0xae6aab43c4f3e0cea4ab83752c278f8debaba689": { - "address": "0xae6aab43c4f3e0cea4ab83752c278f8debaba689", - "symbol": "DF", - "decimals": 18, - "name": "dForce", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0xae6aab43c4f3e0cea4ab83752c278f8debaba689.png", - "aggregators": [ - "TraderJoe", - "LiFi", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 6 - }, - "0x8038f3c971414fd1fc220ba727f2d4a0fc98cb65": { - "address": "0x8038f3c971414fd1fc220ba727f2d4a0fc98cb65", - "symbol": "DHT", - "decimals": 18, - "name": "dHEDGE DAO", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0x8038f3c971414fd1fc220ba727f2d4a0fc98cb65.png", - "aggregators": [ - "TraderJoe", - "LiFi", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 6 - }, - "0x4425742f1ec8d98779690b5a3a6276db85ddc01a": { - "address": "0x4425742f1ec8d98779690b5a3a6276db85ddc01a", - "symbol": "DOG", - "decimals": 18, - "name": "The Doge NFT", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0x4425742f1ec8d98779690b5a3a6276db85ddc01a.png", - "aggregators": [ - "TraderJoe", - "LiFi", - "Socket", - "Rubic", - "Rango", - "SushiSwap" - ], - "occurrences": 6 - }, - "0xc3ae0333f0f34aa734d5493276223d95b8f9cb37": { - "address": "0xc3ae0333f0f34aa734d5493276223d95b8f9cb37", - "symbol": "DXD", - "decimals": 18, - "name": "DXdao", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0xc3ae0333f0f34aa734d5493276223d95b8f9cb37.png", - "aggregators": [ - "TraderJoe", - "LiFi", - "Socket", - "Rubic", - "Rango", - "SushiSwap" - ], - "occurrences": 6 - }, - "0x969131d8ddc06c2be11a13e6e7facf22cf57d95e": { - "address": "0x969131d8ddc06c2be11a13e6e7facf22cf57d95e", - "symbol": "EUX", - "decimals": 18, - "name": "dForce EUR", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0x969131d8ddc06c2be11a13e6e7facf22cf57d95e.png", - "aggregators": [ - "ArbitrumWhitelist", - "LiFi", - "Socket", - "Rubic", - "Rango", - "SushiSwap" - ], - "occurrences": 6 - }, - "0x965772e0e9c84b6f359c8597c891108dcf1c5b1a": { - "address": "0x965772e0e9c84b6f359c8597c891108dcf1c5b1a", - "symbol": "PICKLE", - "decimals": 18, - "name": "Pickle Finance", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0x965772e0e9c84b6f359c8597c891108dcf1c5b1a.png", - "aggregators": [ - "TraderJoe", - "LiFi", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 6 - }, - "0x326c33fd1113c1f29b35b4407f3d6312a8518431": { - "address": "0x326c33fd1113c1f29b35b4407f3d6312a8518431", - "symbol": "STRP", - "decimals": 18, - "name": "Strips Token", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0x326c33fd1113c1f29b35b4407f3d6312a8518431.png", - "aggregators": [ - "ArbitrumWhitelist", - "LiFi", - "Socket", - "Rubic", - "Rango", - "SushiSwap" - ], - "occurrences": 6 - }, - "0xa78d8321b20c4ef90ecd72f2588aa985a4bdb684": { - "address": "0xa78d8321b20c4ef90ecd72f2588aa985a4bdb684", - "symbol": "ANT", - "decimals": 18, - "name": "Autonomi", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0xa78d8321b20c4ef90ecd72f2588aa985a4bdb684.png", - "aggregators": [ - "CoinGecko", - "Socket", - "Rubic", - "Squid", - "Rango", - "Sonarwatch" - ], - "occurrences": 6 - }, - "0x0c1c1c109fe34733fca54b82d7b46b75cfb71f6e": { - "address": "0x0c1c1c109fe34733fca54b82d7b46b75cfb71f6e", - "symbol": "CHIP", - "decimals": 18, - "name": "USD.AI", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0x0c1c1c109fe34733fca54b82d7b46b75cfb71f6e.png", - "aggregators": [ - "CoinGecko", - "LiFi", - "Socket", - "Rubic", - "Squid", - "Rango" - ], - "occurrences": 6 - }, - "0x4cfa50b7ce747e2d61724fcac57f24b748ff2b2a": { - "address": "0x4cfa50b7ce747e2d61724fcac57f24b748ff2b2a", - "symbol": "FUSDC", - "decimals": 6, - "name": "Fluid USDC", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0x4cfa50b7ce747e2d61724fcac57f24b748ff2b2a.png", - "aggregators": [ - "TraderJoe", - "LiFi", - "Socket", - "Rubic", - "Sonarwatch", - "SushiSwap" - ], - "occurrences": 6 - }, - "0x6fbbbd8bfb1cd3986b1d05e7861a0f62f87db74b": { - "address": "0x6fbbbd8bfb1cd3986b1d05e7861a0f62f87db74b", - "symbol": "VSN", - "decimals": 18, - "name": "Vision", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0x6fbbbd8bfb1cd3986b1d05e7861a0f62f87db74b.png", - "aggregators": [ - "CoinGecko", - "LiFi", - "Socket", - "Rubic", - "Squid", - "Rango" - ], - "occurrences": 6 - }, - "0x46850ad61c2b7d64d08c9c754f45254596696984": { - "address": "0x46850ad61c2b7d64d08c9c754f45254596696984", - "symbol": "PYUSD", - "decimals": 6, - "name": "PayPal USD", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0x46850ad61c2b7d64d08c9c754f45254596696984.png", - "aggregators": [ - "CoinGecko", - "LiFi", - "Socket", - "Rubic", - "Squid", - "Rango" - ], - "occurrences": 6 - }, - "0xfdd22ce6d1f66bc0ec89b20bf16ccb6670f55a5a": { - "address": "0xfdd22ce6d1f66bc0ec89b20bf16ccb6670f55a5a", - "symbol": "THBILL", - "decimals": 6, - "name": "Theo Short Duration US Treasury Fund", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0xfdd22ce6d1f66bc0ec89b20bf16ccb6670f55a5a.png", - "aggregators": [ - "CoinGecko", - "LiFi", - "Socket", - "Rubic", - "Squid", - "Rango" - ], - "occurrences": 6 - }, - "0x0d81e50bc677fa67341c44d7eaa9228dee64a4e1": { - "address": "0x0d81e50bc677fa67341c44d7eaa9228dee64a4e1", - "symbol": "BOND", - "decimals": 18, - "name": "BarnBridge Governance Token", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0x0d81e50bc677fa67341c44d7eaa9228dee64a4e1.png", - "aggregators": ["TraderJoe", "LiFi", "Socket", "Rubic", "Rango"], - "occurrences": 5 - }, - "0x488cc08935458403a0458e45e20c0159c8ab2c92": { - "address": "0x488cc08935458403a0458e45e20c0159c8ab2c92", - "symbol": "FST", - "decimals": 18, - "name": "Futureswap", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0x488cc08935458403a0458e45e20c0159c8ab2c92.png", - "aggregators": [ - "ArbitrumWhitelist", - "LiFi", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0xde903e2712288a1da82942dddf2c20529565ac30": { - "address": "0xde903e2712288a1da82942dddf2c20529565ac30", - "symbol": "SWPR", - "decimals": 18, - "name": "Swapr", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0xde903e2712288a1da82942dddf2c20529565ac30.png", - "aggregators": [ - "TraderJoe", - "LiFi", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x4d15a3a2286d883af0aa1b3f21367843fac63e07": { - "address": "0x4d15a3a2286d883af0aa1b3f21367843fac63e07", - "symbol": "TUSD", - "decimals": 18, - "name": "TrueUSD", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0x4d15a3a2286d883af0aa1b3f21367843fac63e07.png", - "aggregators": ["TraderJoe", "LiFi", "Socket", "Rubic", "Rango"], - "occurrences": 5 - }, - "0x2cab3abfc1670d1a452df502e216a66883cdf079": { - "address": "0x2cab3abfc1670d1a452df502e216a66883cdf079", - "symbol": "L2DAO", - "decimals": 18, - "name": "Layer2DAO", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0x2cab3abfc1670d1a452df502e216a66883cdf079.png", - "aggregators": [ - "TraderJoe", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0xf0a5717ec0883ee56438932b0fe4a20822735fba": { - "address": "0xf0a5717ec0883ee56438932b0fe4a20822735fba", - "symbol": "XTK", - "decimals": 18, - "name": "xToken", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0xf0a5717ec0883ee56438932b0fe4a20822735fba.png", - "aggregators": ["TraderJoe", "Socket", "Rubic", "Rango"], - "occurrences": 4 - }, - "0xba5ddd1f9d7f570dc94a51479a000e3bce967196": { - "address": "0xba5ddd1f9d7f570dc94a51479a000e3bce967196", - "symbol": "AAVE", - "decimals": 18, - "name": "Aave", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0xba5ddd1f9d7f570dc94a51479a000e3bce967196.png", - "aggregators": [ - "CoinGecko", - "1inch", - "LiFi", - "Socket", - "Rubic", - "Squid", - "Rango", - "Sonarwatch" - ], - "occurrences": 8 - }, - "0xcbb7c0000ab88b473b1f5afd9ef808440eed33bf": { - "address": "0xcbb7c0000ab88b473b1f5afd9ef808440eed33bf", - "symbol": "CBBTC", - "decimals": 8, - "name": "Coinbase Wrapped BTC", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0xcbb7c0000ab88b473b1f5afd9ef808440eed33bf.png", - "aggregators": [ - "CoinGecko", - "1inch", - "LiFi", - "Socket", - "Rubic", - "Squid", - "Rango", - "Sonarwatch" - ], - "occurrences": 8 - }, - "0x7dff72693f6a4149b17e7c6314655f6a9f7c8b33": { - "address": "0x7dff72693f6a4149b17e7c6314655f6a9f7c8b33", - "symbol": "GHO", - "decimals": 18, - "name": "GHO", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0x7dff72693f6a4149b17e7c6314655f6a9f7c8b33.png", - "aggregators": [ - "CoinGecko", - "1inch", - "LiFi", - "Socket", - "Rubic", - "Squid", - "Rango", - "Sonarwatch" - ], - "occurrences": 8 - }, - "0x7189fb5b6504bbff6a852b13b7b82a3c118fdc27": { - "address": "0x7189fb5b6504bbff6a852b13b7b82a3c118fdc27", - "symbol": "ETHFI", - "decimals": 18, - "name": "Ether.fi", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0x7189fb5b6504bbff6a852b13b7b82a3c118fdc27.png", - "aggregators": [ - "TraderJoe", - "1inch", - "LiFi", - "Socket", - "Rubic", - "Squid", - "Rango", - "Sonarwatch" - ], - "occurrences": 8 - }, - "0x1b896893dfc86bb67cf57767298b9073d2c1ba2c": { - "address": "0x1b896893dfc86bb67cf57767298b9073d2c1ba2c", - "symbol": "CAKE", - "decimals": 18, - "name": "PancakeSwap", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0x1b896893dfc86bb67cf57767298b9073d2c1ba2c.png", - "aggregators": [ - "CoinGecko", - "1inch", - "LiFi", - "Socket", - "Rubic", - "Squid", - "Rango", - "Sonarwatch" - ], - "occurrences": 8 - }, - "0x9e758b8a98a42d612b3d38b66a22074dc03d7370": { - "address": "0x9e758b8a98a42d612b3d38b66a22074dc03d7370", - "symbol": "SIS", - "decimals": 18, - "name": "Symbiosis", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0x9e758b8a98a42d612b3d38b66a22074dc03d7370.png", - "aggregators": [ - "CoinGecko", - "1inch", - "LiFi", - "Socket", - "Rubic", - "Squid", - "Rango", - "Sonarwatch" - ], - "occurrences": 8 - }, - "0x55ff62567f09906a85183b866df84bf599a4bf70": { - "address": "0x55ff62567f09906a85183b866df84bf599a4bf70", - "symbol": "KROM", - "decimals": 18, - "name": "Kromatika", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0x55ff62567f09906a85183b866df84bf599a4bf70.png", - "aggregators": [ - "TraderJoe", - "1inch", - "LiFi", - "Socket", - "Rubic", - "Squid", - "Rango", - "Sonarwatch" - ], - "occurrences": 8 - }, - "0xd74f5255d557944cf7dd0e45ff521520002d5748": { - "address": "0xd74f5255d557944cf7dd0e45ff521520002d5748", - "symbol": "USDS", - "decimals": 18, - "name": "Sperax USD", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0xd74f5255d557944cf7dd0e45ff521520002d5748.png", - "aggregators": [ - "TraderJoe", - "1inch", - "LiFi", - "Socket", - "Rubic", - "Squid", - "Sonarwatch" - ], - "occurrences": 7 - }, - "0x4186bfc76e2e237523cbc30fd220fe055156b41f": { - "address": "0x4186bfc76e2e237523cbc30fd220fe055156b41f", - "symbol": "RSETH", - "decimals": 18, - "name": "KelpDAO Bridged rsETH (Arbitrum)", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0x4186bfc76e2e237523cbc30fd220fe055156b41f.png", - "aggregators": [ - "TraderJoe", - "1inch", - "LiFi", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 7 - }, - "0x4e200fe2f3efb977d5fd9c430a41531fb04d97b8": { - "address": "0x4e200fe2f3efb977d5fd9c430a41531fb04d97b8", - "symbol": "ORDER", - "decimals": 18, - "name": "Orderly Network", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0x4e200fe2f3efb977d5fd9c430a41531fb04d97b8.png", - "aggregators": [ - "TraderJoe", - "LiFi", - "Socket", - "Rubic", - "Squid", - "Rango", - "Sonarwatch" - ], - "occurrences": 7 - }, - "0x894134a25a5fac1c2c26f1d8fbf05111a3cb9487": { - "address": "0x894134a25a5fac1c2c26f1d8fbf05111a3cb9487", - "symbol": "GRAI", - "decimals": 18, - "name": "Grai", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0x894134a25a5fac1c2c26f1d8fbf05111a3cb9487.png", - "aggregators": [ - "CoinGecko", - "LiFi", - "Socket", - "Rubic", - "Squid", - "Rango", - "Sonarwatch" - ], - "occurrences": 7 - }, - "0x09199d9a5f4448d0848e4395d065e1ad9c4a1f74": { - "address": "0x09199d9a5f4448d0848e4395d065e1ad9c4a1f74", - "symbol": "BONK", - "decimals": 5, - "name": "Bonk", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0x09199d9a5f4448d0848e4395d065e1ad9c4a1f74.png", - "aggregators": [ - "TraderJoe", - "1inch", - "Socket", - "Rubic", - "Squid", - "Rango", - "Sonarwatch" - ], - "occurrences": 7 - }, - "0x55678cd083fcdc2947a0df635c93c838c89454a3": { - "address": "0x55678cd083fcdc2947a0df635c93c838c89454a3", - "symbol": "LON", - "decimals": 18, - "name": "Tokenlon", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0x55678cd083fcdc2947a0df635c93c838c89454a3.png", - "aggregators": [ - "TraderJoe", - "LiFi", - "Socket", - "Rubic", - "Squid", - "Rango", - "SushiSwap" - ], - "occurrences": 7 - }, - "0x178412e79c25968a32e89b11f63b33f733770c2a": { - "address": "0x178412e79c25968a32e89b11f63b33f733770c2a", - "symbol": "FRXETH", - "decimals": 18, - "name": "Frax Ether", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0x178412e79c25968a32e89b11f63b33f733770c2a.png", - "aggregators": [ - "TraderJoe", - "LiFi", - "Socket", - "Rubic", - "Squid", - "Rango", - "Sonarwatch" - ], - "occurrences": 7 - }, - "0x431402e8b9de9aa016c743880e04e517074d8cec": { - "address": "0x431402e8b9de9aa016c743880e04e517074d8cec", - "symbol": "HEGIC", - "decimals": 18, - "name": "Hegic", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0x431402e8b9de9aa016c743880e04e517074d8cec.png", - "aggregators": [ - "TraderJoe", - "LiFi", - "Socket", - "Rubic", - "Squid", - "Rango", - "Sonarwatch" - ], - "occurrences": 7 - }, - "0xe4dddfe67e7164b0fe14e218d80dc4c08edc01cb": { - "address": "0xe4dddfe67e7164b0fe14e218d80dc4c08edc01cb", - "symbol": "KNC", - "decimals": 18, - "name": "Kyber Network Crystal", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0xe4dddfe67e7164b0fe14e218d80dc4c08edc01cb.png", - "aggregators": [ - "TraderJoe", - "LiFi", - "Socket", - "Rubic", - "Squid", - "Rango", - "Sonarwatch" - ], - "occurrences": 7 - }, - "0x498c620c7c91c6eba2e3cd5485383f41613b7eb6": { - "address": "0x498c620c7c91c6eba2e3cd5485383f41613b7eb6", - "symbol": "AMKT", - "decimals": 18, - "name": "Alongside Crypto Market Index", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0x498c620c7c91c6eba2e3cd5485383f41613b7eb6.png", - "aggregators": [ - "TraderJoe", - "LiFi", - "Socket", - "Rubic", - "Squid", - "Rango", - "Sonarwatch" - ], - "occurrences": 7 - }, - "0x59d9356e565ab3a36dd77763fc0d87feaf85508c": { - "address": "0x59d9356e565ab3a36dd77763fc0d87feaf85508c", - "symbol": "USDM", - "decimals": 18, - "name": "Mountain Protocol USD", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0x59d9356e565ab3a36dd77763fc0d87feaf85508c.png", - "aggregators": [ - "CoinGecko", - "1inch", - "LiFi", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 7 - }, - "0xee9801669c6138e84bd50deb500827b776777d28": { - "address": "0xee9801669c6138e84bd50deb500827b776777d28", - "symbol": "O3", - "decimals": 18, - "name": "O3 Swap Token", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0xee9801669c6138e84bd50deb500827b776777d28.png", - "aggregators": [ - "TraderJoe", - "LiFi", - "Socket", - "Rubic", - "Rango", - "Sonarwatch", - "SushiSwap" - ], - "occurrences": 7 - }, - "0x123389c2f0e9194d9ba98c21e63c375b67614108": { - "address": "0x123389c2f0e9194d9ba98c21e63c375b67614108", - "symbol": "EMAX", - "decimals": 18, - "name": "EthereumMax", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0x123389c2f0e9194d9ba98c21e63c375b67614108.png", - "aggregators": [ - "TraderJoe", - "1inch", - "Socket", - "Rubic", - "Squid", - "Rango", - "SushiSwap" - ], - "occurrences": 7 - }, - "0xb0ffa8000886e57f86dd5264b9582b2ad87b2b91": { - "address": "0xb0ffa8000886e57f86dd5264b9582b2ad87b2b91", - "symbol": "W", - "decimals": 18, - "name": "Wormhole", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0xb0ffa8000886e57f86dd5264b9582b2ad87b2b91.png", - "aggregators": [ - "CoinGecko", - "1inch", - "LiFi", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 7 - }, - "0xcf985aba4647a432e60efceeb8054bbd64244305": { - "address": "0xcf985aba4647a432e60efceeb8054bbd64244305", - "symbol": "EUROE", - "decimals": 6, - "name": "EUROe Stablecoin", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0xcf985aba4647a432e60efceeb8054bbd64244305.png", - "aggregators": [ - "TraderJoe", - "LiFi", - "Socket", - "Rubic", - "Rango", - "Sonarwatch", - "SushiSwap" - ], - "occurrences": 7 - }, - "0xd5954c3084a1ccd70b4da011e67760b8e78aee84": { - "address": "0xd5954c3084a1ccd70b4da011e67760b8e78aee84", - "symbol": "ARX", - "decimals": 18, - "name": "Arbidex", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0xd5954c3084a1ccd70b4da011e67760b8e78aee84.png", - "aggregators": [ - "TraderJoe", - "LiFi", - "Socket", - "Rubic", - "Squid", - "Rango", - "Sonarwatch" - ], - "occurrences": 7 - }, - "0x3a18dcc9745edcd1ef33ecb93b0b6eba5671e7ca": { - "address": "0x3a18dcc9745edcd1ef33ecb93b0b6eba5671e7ca", - "symbol": "KUJI", - "decimals": 6, - "name": "Kujira", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0x3a18dcc9745edcd1ef33ecb93b0b6eba5671e7ca.png", - "aggregators": [ - "TraderJoe", - "LiFi", - "Socket", - "Rubic", - "Squid", - "Sonarwatch" - ], - "occurrences": 6 - }, - "0x289ba1701c2f088cf0faf8b3705246331cb8a839": { - "address": "0x289ba1701c2f088cf0faf8b3705246331cb8a839", - "symbol": "LPT", - "decimals": 18, - "name": "Livepeer Token", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0x289ba1701c2f088cf0faf8b3705246331cb8a839.png", - "aggregators": [ - "TraderJoe", - "LiFi", - "Socket", - "Rubic", - "Squid", - "Rango" - ], - "occurrences": 6 - }, - "0x0e15258734300290a651fdbae8deb039a8e7a2fa": { - "address": "0x0e15258734300290a651fdbae8deb039a8e7a2fa", - "symbol": "ALCH", - "decimals": 18, - "name": "Alchemy", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0x0e15258734300290a651fdbae8deb039a8e7a2fa.png", - "aggregators": [ - "ArbitrumWhitelist", - "LiFi", - "Socket", - "Rubic", - "Rango", - "SushiSwap" - ], - "occurrences": 6 - }, - "0xea986d33ef8a20a96120ecc44dbdd49830192043": { - "address": "0xea986d33ef8a20a96120ecc44dbdd49830192043", - "symbol": "AUC", - "decimals": 18, - "name": "Auctus", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0xea986d33ef8a20a96120ecc44dbdd49830192043.png", - "aggregators": [ - "TraderJoe", - "LiFi", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 6 - }, - "0xa7aa2921618e3d63da433829d448b58c9445a4c3": { - "address": "0xa7aa2921618e3d63da433829d448b58c9445a4c3", - "symbol": "DVF", - "decimals": 18, - "name": "DeversiFi Token", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0xa7aa2921618e3d63da433829d448b58c9445a4c3.png", - "aggregators": [ - "ArbitrumWhitelist", - "LiFi", - "Socket", - "Rubic", - "Rango", - "SushiSwap" - ], - "occurrences": 6 - }, - "0x2338a5d62e9a766289934e8d2e83a443e8065b83": { - "address": "0x2338a5d62e9a766289934e8d2e83a443e8065b83", - "symbol": "FLUX", - "decimals": 18, - "name": "Flux Protocol", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0x2338a5d62e9a766289934e8d2e83a443e8065b83.png", - "aggregators": [ - "ArbitrumWhitelist", - "LiFi", - "Socket", - "Rubic", - "Rango", - "SushiSwap" - ], - "occurrences": 6 - }, - "0xbdef0e9ef12e689f366fe494a7a7d0dad25d9286": { - "address": "0xbdef0e9ef12e689f366fe494a7a7d0dad25d9286", - "symbol": "FUSE", - "decimals": 18, - "name": "Fuse Token", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0xbdef0e9ef12e689f366fe494a7a7d0dad25d9286.png", - "aggregators": [ - "ArbitrumWhitelist", - "LiFi", - "Socket", - "Rubic", - "Rango", - "SushiSwap" - ], - "occurrences": 6 - }, - "0xb965029343d55189c25a7f3e0c9394dc0f5d41b1": { - "address": "0xb965029343d55189c25a7f3e0c9394dc0f5d41b1", - "symbol": "NDX", - "decimals": 18, - "name": "Indexed Finance", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0xb965029343d55189c25a7f3e0c9394dc0f5d41b1.png", - "aggregators": [ - "TraderJoe", - "LiFi", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 6 - }, - "0xa72159fc390f0e3c6d415e658264c7c4051e9b87": { - "address": "0xa72159fc390f0e3c6d415e658264c7c4051e9b87", - "symbol": "TCR", - "decimals": 18, - "name": "Tracer", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0xa72159fc390f0e3c6d415e658264c7c4051e9b87.png", - "aggregators": [ - "ArbitrumWhitelist", - "LiFi", - "Socket", - "Rubic", - "Rango", - "SushiSwap" - ], - "occurrences": 6 - }, - "0x995c235521820f2637303ca1970c7c044583df44": { - "address": "0x995c235521820f2637303ca1970c7c044583df44", - "symbol": "VISR", - "decimals": 18, - "name": "VISOR", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0x995c235521820f2637303ca1970c7c044583df44.png", - "aggregators": [ - "ArbitrumWhitelist", - "LiFi", - "Socket", - "Rubic", - "Rango", - "SushiSwap" - ], - "occurrences": 6 - }, - "0xc24a365a870821eb83fd216c9596edd89479d8d7": { - "address": "0xc24a365a870821eb83fd216c9596edd89479d8d7", - "symbol": "G3", - "decimals": 18, - "name": "GAM3S.GG", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0xc24a365a870821eb83fd216c9596edd89479d8d7.png", - "aggregators": [ - "CoinGecko", - "LiFi", - "Socket", - "Rubic", - "Squid", - "Rango" - ], - "occurrences": 6 - }, - "0x7f465507f058e17ad21623927a120ac05ca32741": { - "address": "0x7f465507f058e17ad21623927a120ac05ca32741", - "symbol": "ARC", - "decimals": 18, - "name": "Arcadeum", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0x7f465507f058e17ad21623927a120ac05ca32741.png", - "aggregators": [ - "TraderJoe", - "LiFi", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 6 - }, - "0x3d9907f9a368ad0a51be60f7da3b97cf940982d8": { - "address": "0x3d9907f9a368ad0a51be60f7da3b97cf940982d8", - "symbol": "GRAIL", - "decimals": 18, - "name": "Camelot Token", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0x3d9907f9a368ad0a51be60f7da3b97cf940982d8.png", - "aggregators": [ - "TraderJoe", - "LiFi", - "Rubic", - "Squid", - "Rango", - "Sonarwatch" - ], - "occurrences": 6 - }, - "0x58b9cb810a68a7f3e1e4f8cb45d1b9b3c79705e8": { - "address": "0x58b9cb810a68a7f3e1e4f8cb45d1b9b3c79705e8", - "symbol": "NEXT", - "decimals": 18, - "name": "Everclear", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0x58b9cb810a68a7f3e1e4f8cb45d1b9b3c79705e8.png", - "aggregators": [ - "CoinGecko", - "1inch", - "LiFi", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 6 - }, - "0x9f6abbf0ba6b5bfa27f4deb6597cc6ec20573fda": { - "address": "0x9f6abbf0ba6b5bfa27f4deb6597cc6ec20573fda", - "symbol": "FRM", - "decimals": 18, - "name": "Ferrum Network Token", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0x9f6abbf0ba6b5bfa27f4deb6597cc6ec20573fda.png", - "aggregators": [ - "TraderJoe", - "Socket", - "Rubic", - "Rango", - "Sonarwatch", - "SushiSwap" - ], - "occurrences": 6 - }, - "0x498bf2b1e120fed3ad3d42ea2165e9b73f99c1e5": { - "address": "0x498bf2b1e120fed3ad3d42ea2165e9b73f99c1e5", - "symbol": "CRVUSD", - "decimals": 18, - "name": "crvUSD", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0x498bf2b1e120fed3ad3d42ea2165e9b73f99c1e5.png", - "aggregators": [ - "CoinGecko", - "1inch", - "LiFi", - "Socket", - "Rubic", - "Rango" - ], - "occurrences": 6 - }, - "0x66e535e8d2ebf13f49f3d49e5c50395a97c137b1": { - "address": "0x66e535e8d2ebf13f49f3d49e5c50395a97c137b1", - "symbol": "MOLTEN", - "decimals": 18, - "name": "Molten", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0x66e535e8d2ebf13f49f3d49e5c50395a97c137b1.png", - "aggregators": [ - "TraderJoe", - "Socket", - "Rubic", - "Squid", - "Rango", - "Sonarwatch" - ], - "occurrences": 6 - }, - "0xdcbf4cb83d27c408b30dd7f39bfcabd7176b1ba3": { - "address": "0xdcbf4cb83d27c408b30dd7f39bfcabd7176b1ba3", - "symbol": "OOE", - "decimals": 18, - "name": "OpenOcean", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0xdcbf4cb83d27c408b30dd7f39bfcabd7176b1ba3.png", - "aggregators": [ - "CoinGecko", - "LiFi", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 6 - }, - "0x17a8541b82bf67e10b0874284b4ae66858cb1fd5": { - "address": "0x17a8541b82bf67e10b0874284b4ae66858cb1fd5", - "symbol": "PSM", - "decimals": 18, - "name": "Possum", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0x17a8541b82bf67e10b0874284b4ae66858cb1fd5.png", - "aggregators": [ - "TraderJoe", - "1inch", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 6 - }, - "0x4f604735c1cf31399c6e711d5962b2b3e0225ad3": { - "address": "0x4f604735c1cf31399c6e711d5962b2b3e0225ad3", - "symbol": "USDGLO", - "decimals": 18, - "name": "Glo Dollar", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0x4f604735c1cf31399c6e711d5962b2b3e0225ad3.png", - "aggregators": [ - "CoinGecko", - "Socket", - "Rubic", - "Squid", - "Rango", - "Sonarwatch" - ], - "occurrences": 6 - }, - "0x18c11fd286c5ec11c3b683caa813b77f5163a122": { - "address": "0x18c11fd286c5ec11c3b683caa813b77f5163a122", - "symbol": "GNS", - "decimals": 18, - "name": "Gains Network", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0x18c11fd286c5ec11c3b683caa813b77f5163a122.png", - "aggregators": [ - "TraderJoe", - "LiFi", - "Rubic", - "Squid", - "Rango", - "Sonarwatch" - ], - "occurrences": 6 - }, - "0x7b5eb3940021ec0e8e463d5dbb4b7b09a89ddf96": { - "address": "0x7b5eb3940021ec0e8e463d5dbb4b7b09a89ddf96", - "symbol": "WOM", - "decimals": 18, - "name": "Wombat Exchange", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0x7b5eb3940021ec0e8e463d5dbb4b7b09a89ddf96.png", - "aggregators": [ - "TraderJoe", - "LiFi", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 6 - }, - "0x641441c631e2f909700d2f41fd87f0aa6a6b4edb": { - "address": "0x641441c631e2f909700d2f41fd87f0aa6a6b4edb", - "symbol": "USX", - "decimals": 18, - "name": "dForce USD", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0x641441c631e2f909700d2f41fd87f0aa6a6b4edb.png", - "aggregators": [ - "TraderJoe", - "LiFi", - "Socket", - "Rubic", - "Rango", - "SushiSwap" - ], - "occurrences": 6 - }, - "0xbc011a12da28e8f0f528d9ee5e7039e22f91cf18": { - "address": "0xbc011a12da28e8f0f528d9ee5e7039e22f91cf18", - "symbol": "SWETH", - "decimals": 18, - "name": "Swell Ethereum", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0xbc011a12da28e8f0f528d9ee5e7039e22f91cf18.png", - "aggregators": [ - "TraderJoe", - "LiFi", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 6 - }, - "0x10010078a54396f62c96df8532dc2b4847d47ed3": { - "address": "0x10010078a54396f62c96df8532dc2b4847d47ed3", - "symbol": "HND", - "decimals": 18, - "name": "Hundred Finance", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0x10010078a54396f62c96df8532dc2b4847d47ed3.png", - "aggregators": [ - "TraderJoe", - "LiFi", - "Socket", - "Rubic", - "Rango", - "SushiSwap" - ], - "occurrences": 6 - }, - "0x64343594ab9b56e99087bfa6f2335db24c2d1f17": { - "address": "0x64343594ab9b56e99087bfa6f2335db24c2d1f17", - "symbol": "VST", - "decimals": 18, - "name": "Vesta Stable", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0x64343594ab9b56e99087bfa6f2335db24c2d1f17.png", - "aggregators": [ - "TraderJoe", - "LiFi", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 6 - }, - "0x80bb30d62a16e1f2084deae84dc293531c3ac3a1": { - "address": "0x80bb30d62a16e1f2084deae84dc293531c3ac3a1", - "symbol": "GRAIN", - "decimals": 18, - "name": "Granary", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0x80bb30d62a16e1f2084deae84dc293531c3ac3a1.png", - "aggregators": [ - "TraderJoe", - "Socket", - "Rubic", - "Squid", - "Rango", - "Sonarwatch" - ], - "occurrences": 6 - }, - "0x876ec6be52486eeec06bc06434f3e629d695c6ba": { - "address": "0x876ec6be52486eeec06bc06434f3e629d695c6ba", - "symbol": "FLUID", - "decimals": 18, - "name": "FluidFi", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0x876ec6be52486eeec06bc06434f3e629d695c6ba.png", - "aggregators": [ - "LiFi", - "Socket", - "Rubic", - "Squid", - "Rango", - "SushiSwap" - ], - "occurrences": 6 - }, - "0x6fe14d3cc2f7bddffba5cdb3bbe7467dd81ea101": { - "address": "0x6fe14d3cc2f7bddffba5cdb3bbe7467dd81ea101", - "symbol": "COTI", - "decimals": 18, - "name": "COTI Token", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0x6fe14d3cc2f7bddffba5cdb3bbe7467dd81ea101.png", - "aggregators": [ - "ArbitrumWhitelist", - "LiFi", - "Socket", - "Rubic", - "Rango" - ], - "occurrences": 5 - }, - "0xaef5bbcbfa438519a5ea80b4c7181b4e78d419f2": { - "address": "0xaef5bbcbfa438519a5ea80b4c7181b4e78d419f2", - "symbol": "RAI", - "decimals": 18, - "name": "Rai Reflex Index", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0xaef5bbcbfa438519a5ea80b4c7181b4e78d419f2.png", - "aggregators": [ - "ArbitrumWhitelist", - "LiFi", - "Socket", - "Rubic", - "Rango" - ], - "occurrences": 5 - }, - "0x25118290e6a5f4139381d072181157035864099d": { - "address": "0x25118290e6a5f4139381d072181157035864099d", - "symbol": "RAIN", - "decimals": 18, - "name": "RAIN", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0x25118290e6a5f4139381d072181157035864099d.png", - "aggregators": ["CoinGecko", "Socket", "Rubic", "Rango"], - "occurrences": 4 - }, - "0x40461291347e1ecbb09499f3371d3f17f10d7159": { - "address": "0x40461291347e1ecbb09499f3371d3f17f10d7159", - "symbol": "XAUT0", - "decimals": 6, - "name": "Tether Gold Tokens", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0x40461291347e1ecbb09499f3371d3f17f10d7159.png", - "aggregators": ["CoinGecko", "LiFi", "Rubic", "Squid", "Rango"], - "occurrences": 5 - }, - "0x7cb16cb78ea464ad35c8a50abf95dff3c9e09d5d": { - "address": "0x7cb16cb78ea464ad35c8a50abf95dff3c9e09d5d", - "symbol": "0XBTC", - "decimals": 8, - "name": "0xBitcoin Token", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0x7cb16cb78ea464ad35c8a50abf95dff3c9e09d5d.png", - "aggregators": ["TraderJoe", "LiFi", "Socket", "Rubic", "Rango"], - "occurrences": 5 - }, - "0x9b3fa2a7c3eb36d048a5d38d81e7fafc6bc47b25": { - "address": "0x9b3fa2a7c3eb36d048a5d38d81e7fafc6bc47b25", - "symbol": "ALN", - "decimals": 18, - "name": "Aluna", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0x9b3fa2a7c3eb36d048a5d38d81e7fafc6bc47b25.png", - "aggregators": [ - "TraderJoe", - "LiFi", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x5298ee77a8f9e226898403ebac33e68a62f770a0": { - "address": "0x5298ee77a8f9e226898403ebac33e68a62f770a0", - "symbol": "MTA", - "decimals": 18, - "name": "Meta", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0x5298ee77a8f9e226898403ebac33e68a62f770a0.png", - "aggregators": [ - "ArbitrumWhitelist", - "LiFi", - "Socket", - "Rubic", - "Rango" - ], - "occurrences": 5 - }, - "0x55704a0e9e2eb59e176c5b69655dbd3dcdcfc0f0": { - "address": "0x55704a0e9e2eb59e176c5b69655dbd3dcdcfc0f0", - "symbol": "OVR", - "decimals": 18, - "name": "OVR", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0x55704a0e9e2eb59e176c5b69655dbd3dcdcfc0f0.png", - "aggregators": [ - "ArbitrumWhitelist", - "LiFi", - "Socket", - "Rubic", - "Rango" - ], - "occurrences": 5 - }, - "0x3642c0680329ae3e103e2b5ab29ddfed4d43cbe5": { - "address": "0x3642c0680329ae3e103e2b5ab29ddfed4d43cbe5", - "symbol": "PL2", - "decimals": 18, - "name": "Plenny", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0x3642c0680329ae3e103e2b5ab29ddfed4d43cbe5.png", - "aggregators": [ - "ArbitrumWhitelist", - "Socket", - "Rubic", - "Rango", - "SushiSwap" - ], - "occurrences": 5 - }, - "0x1cd9a56c8c2ea913c70319a44da75e99255aa46f": { - "address": "0x1cd9a56c8c2ea913c70319a44da75e99255aa46f", - "symbol": "OBT", - "decimals": 18, - "name": "Orbiter Token", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0x1cd9a56c8c2ea913c70319a44da75e99255aa46f.png", - "aggregators": ["CoinGecko", "LiFi", "Socket", "Rubic", "Rango"], - "occurrences": 5 - }, - "0x8b0e6f19ee57089f7649a455d89d7bc6314d04e8": { - "address": "0x8b0e6f19ee57089f7649a455d89d7bc6314d04e8", - "symbol": "DMT", - "decimals": 18, - "name": "Dream Machine Token", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0x8b0e6f19ee57089f7649a455d89d7bc6314d04e8.png", - "aggregators": [ - "TraderJoe", - "LiFi", - "Socket", - "Rubic", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0xef261714f7e5ba6b86f4780eb6e3bf26b10729cf": { - "address": "0xef261714f7e5ba6b86f4780eb6e3bf26b10729cf", - "symbol": "LOTUS", - "decimals": 18, - "name": "White Lotus", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0xef261714f7e5ba6b86f4780eb6e3bf26b10729cf.png", - "aggregators": [ - "TraderJoe", - "Rubic", - "Squid", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x0c3ff025aacfa2670420f1d4cb593dd2a0a0383e": { - "address": "0x0c3ff025aacfa2670420f1d4cb593dd2a0a0383e", - "symbol": "WEHMND", - "decimals": 18, - "name": "Wrapped eHMND", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0x0c3ff025aacfa2670420f1d4cb593dd2a0a0383e.png", - "aggregators": ["CoinGecko", "1inch", "Rubic", "Squid", "Rango"], - "occurrences": 5 - }, - "0x462cd9e0247b2e63831c3189ae738e5e9a5a4b64": { - "address": "0x462cd9e0247b2e63831c3189ae738e5e9a5a4b64", - "symbol": "EUL", - "decimals": 18, - "name": "EUL", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0x462cd9e0247b2e63831c3189ae738e5e9a5a4b64.png", - "aggregators": ["CoinGecko", "LiFi", "Socket", "Rubic", "Rango"], - "occurrences": 5 - }, - "0xa4eaec0b1d564061a4951816fd5b1ba8cfbc425c": { - "address": "0xa4eaec0b1d564061a4951816fd5b1ba8cfbc425c", - "symbol": "GIZA", - "decimals": 18, - "name": "GIZA", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0xa4eaec0b1d564061a4951816fd5b1ba8cfbc425c.png", - "aggregators": ["CoinGecko", "LiFi", "Socket", "Rubic", "Rango"], - "occurrences": 5 - }, - "0x10ea9e5303670331bdddfa66a4cea47dae4fcf3b": { - "address": "0x10ea9e5303670331bdddfa66a4cea47dae4fcf3b", - "symbol": "SESH", - "decimals": 9, - "name": "Session Token", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0x10ea9e5303670331bdddfa66a4cea47dae4fcf3b.png", - "aggregators": [ - "CoinGecko", - "LiFi", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x31dba3c96481fde3cd81c2aaf51f2d8bf618c742": { - "address": "0x31dba3c96481fde3cd81c2aaf51f2d8bf618c742", - "symbol": "SOPH", - "decimals": 18, - "name": "SOPH", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0x31dba3c96481fde3cd81c2aaf51f2d8bf618c742.png", - "aggregators": ["CoinGecko", "LiFi", "Socket", "Rubic", "Rango"], - "occurrences": 5 - }, - "0xaeac3b55c3522157ecda7ec8fcb86c832faa28af": { - "address": "0xaeac3b55c3522157ecda7ec8fcb86c832faa28af", - "symbol": "XYRO", - "decimals": 18, - "name": "XYRO", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0xaeac3b55c3522157ecda7ec8fcb86c832faa28af.png", - "aggregators": [ - "CoinGecko", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x333333c465a19c85f85c6cfbed7b16b0b26e3333": { - "address": "0x333333c465a19c85f85c6cfbed7b16b0b26e3333", - "symbol": "ORA", - "decimals": 18, - "name": "ORA", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0x333333c465a19c85f85c6cfbed7b16b0b26e3333.png", - "aggregators": ["CoinGecko", "LiFi", "Socket", "Rubic", "Rango"], - "occurrences": 5 - }, - "0x291a50e611035b6562a2374b8b44de70aa8d7896": { - "address": "0x291a50e611035b6562a2374b8b44de70aa8d7896", - "symbol": "PEN", - "decimals": 18, - "name": "Pentagon Games", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0x291a50e611035b6562a2374b8b44de70aa8d7896.png", - "aggregators": [ - "CoinGecko", - "LiFi", - "Socket", - "Rubic", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x0b3eaead748facdb9d943d3407011f16eb17d0cf": { - "address": "0x0b3eaead748facdb9d943d3407011f16eb17d0cf", - "symbol": "PMX", - "decimals": 18, - "name": "Primex Finance", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0x0b3eaead748facdb9d943d3407011f16eb17d0cf.png", - "aggregators": [ - "CoinGecko", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0xca7dec8550f43a5e46e3dfb95801f64280e75b27": { - "address": "0xca7dec8550f43a5e46e3dfb95801f64280e75b27", - "symbol": "SWEAT", - "decimals": 18, - "name": "Sweat Economy", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0xca7dec8550f43a5e46e3dfb95801f64280e75b27.png", - "aggregators": [ - "CoinGecko", - "LiFi", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x0c5fa0e07949f941a6c2c29a008252db1527d6ee": { - "address": "0x0c5fa0e07949f941a6c2c29a008252db1527d6ee", - "symbol": "OPUL", - "decimals": 18, - "name": "Opulous", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0x0c5fa0e07949f941a6c2c29a008252db1527d6ee.png", - "aggregators": [ - "TraderJoe", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0xb1fe27b32ffb5ce54e272c096547f1e86c19e72f": { - "address": "0xb1fe27b32ffb5ce54e272c096547f1e86c19e72f", - "symbol": "RSWETH", - "decimals": 18, - "name": "RSWETH", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0xb1fe27b32ffb5ce54e272c096547f1e86c19e72f.png", - "aggregators": ["CoinGecko", "LiFi", "Socket", "Rubic", "Rango"], - "occurrences": 5 - }, - "0x61e030a56d33e8260fdd81f03b162a79fe3449cd": { - "address": "0x61e030a56d33e8260fdd81f03b162a79fe3449cd", - "symbol": "FLUID", - "decimals": 18, - "name": "Fluid", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0x61e030a56d33e8260fdd81f03b162a79fe3449cd.png", - "aggregators": ["CoinGecko", "LiFi", "Socket", "Rubic", "Rango"], - "occurrences": 5 - }, - "0x7424f00845777a06e21f0bd8873f814a8a814b2d": { - "address": "0x7424f00845777a06e21f0bd8873f814a8a814b2d", - "symbol": "WXTZ", - "decimals": 18, - "name": "Wrapped XTZ", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0x7424f00845777a06e21f0bd8873f814a8a814b2d.png", - "aggregators": ["CoinGecko", "LiFi", "Socket", "Rubic", "Rango"], - "occurrences": 5 - }, - "0x437cc33344a0b27a429f795ff6b469c72698b291": { - "address": "0x437cc33344a0b27a429f795ff6b469c72698b291", - "symbol": "WM", - "decimals": 6, - "name": "WrappedM by M0", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0x437cc33344a0b27a429f795ff6b469c72698b291.png", - "aggregators": ["CoinGecko", "LiFi", "Socket", "Rubic", "Rango"], - "occurrences": 5 - }, - "0x09d4214c03d01f49544c0448dbe3a27f768f2b34": { - "address": "0x09d4214c03d01f49544c0448dbe3a27f768f2b34", - "symbol": "RUSD", - "decimals": 18, - "name": "RUSD", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0x09d4214c03d01f49544c0448dbe3a27f768f2b34.png", - "aggregators": ["CoinGecko", "LiFi", "Socket", "Rubic", "Rango"], - "occurrences": 5 - }, - "0xe649e6a1f2afc63ca268c2363691cecaf75cf47c": { - "address": "0xe649e6a1f2afc63ca268c2363691cecaf75cf47c", - "symbol": "RLC", - "decimals": 9, - "name": "iExec RLC", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0xe649e6a1f2afc63ca268c2363691cecaf75cf47c.png", - "aggregators": ["CoinGecko", "Socket", "Rubic", "Squid", "Rango"], - "occurrences": 5 - }, - "0x4809010926aec940b550d34a46a52739f996d75d": { - "address": "0x4809010926aec940b550d34a46a52739f996d75d", - "symbol": "WSRUSD", - "decimals": 18, - "name": "WSRUSD", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0x4809010926aec940b550d34a46a52739f996d75d.png", - "aggregators": ["CoinGecko", "LiFi", "Socket", "Rubic", "Rango"], - "occurrences": 5 - }, - "0xf8173a39c56a554837c4c7f104153a005d284d11": { - "address": "0xf8173a39c56a554837c4c7f104153a005d284d11", - "symbol": "EDU", - "decimals": 18, - "name": "EDU Coin", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0xf8173a39c56a554837c4c7f104153a005d284d11.png", - "aggregators": ["CoinGecko", "LiFi", "Socket", "Rubic", "Rango"], - "occurrences": 5 - }, - "0x5e85faf503621830ca857a5f38b982e0cc57d537": { - "address": "0x5e85faf503621830ca857a5f38b982e0cc57d537", - "symbol": "DEURO", - "decimals": 18, - "name": "Decentralized Euro", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0x5e85faf503621830ca857a5f38b982e0cc57d537.png", - "aggregators": [ - "CoinGecko", - "LiFi", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x000f1720a263f96532d1ac2bb9cdc12b72c6f386": { - "address": "0x000f1720a263f96532d1ac2bb9cdc12b72c6f386", - "symbol": "FLY", - "decimals": 6, - "name": "Fluidity", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0x000f1720a263f96532d1ac2bb9cdc12b72c6f386.png", - "aggregators": [ - "TraderJoe", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x9ed7e4b1bff939ad473da5e7a218c771d1569456": { - "address": "0x9ed7e4b1bff939ad473da5e7a218c771d1569456", - "symbol": "REUNI", - "decimals": 6, - "name": "Reunit Token", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0x9ed7e4b1bff939ad473da5e7a218c771d1569456.png", - "aggregators": ["TraderJoe", "1inch", "LiFi", "Rubic", "Rango"], - "occurrences": 5 - }, - "0xdd89a4d3362828e601df52208302a741f08e46c5": { - "address": "0xdd89a4d3362828e601df52208302a741f08e46c5", - "symbol": "O3", - "decimals": 18, - "name": "O3", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0xdd89a4d3362828e601df52208302a741f08e46c5.png", - "aggregators": [ - "TraderJoe", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0xf18e4466f26b4ca55bbab890b314a54976e45b17": { - "address": "0xf18e4466f26b4ca55bbab890b314a54976e45b17", - "symbol": "G7", - "decimals": 18, - "name": "Game7", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0xf18e4466f26b4ca55bbab890b314a54976e45b17.png", - "aggregators": [ - "TraderJoe", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0xb2f30a7c980f052f02563fb518dcc39e6bf38175": { - "address": "0xb2f30a7c980f052f02563fb518dcc39e6bf38175", - "symbol": "USDX", - "decimals": 18, - "name": "Synthetix USD", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0xb2f30a7c980f052f02563fb518dcc39e6bf38175.png", - "aggregators": ["1inch", "LiFi", "Socket", "Rubic", "Rango"], - "occurrences": 5 - }, - "0xc136e6b376a9946b156db1ed3a34b08afdaed76d": { - "address": "0xc136e6b376a9946b156db1ed3a34b08afdaed76d", - "symbol": "CREDA", - "decimals": 18, - "name": "CreDA Protocol Token", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0xc136e6b376a9946b156db1ed3a34b08afdaed76d.png", - "aggregators": ["LiFi", "Socket", "Rubic", "Rango", "SushiSwap"], - "occurrences": 5 - }, - "0xafd871f684f21ab9d7137608c71808f83d75e6fc": { - "address": "0xafd871f684f21ab9d7137608c71808f83d75e6fc", - "symbol": "BUCK", - "decimals": 18, - "name": "Arbucks", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0xafd871f684f21ab9d7137608c71808f83d75e6fc.png", - "aggregators": ["Socket", "Rubic", "Squid", "Rango", "SushiSwap"], - "occurrences": 5 - }, - "0x86a1012d437bbff84fbdf62569d12d4fd3396f8c": { - "address": "0x86a1012d437bbff84fbdf62569d12d4fd3396f8c", - "symbol": "ARBYS", - "decimals": 18, - "name": "Arbys", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0x86a1012d437bbff84fbdf62569d12d4fd3396f8c.png", - "aggregators": ["Socket", "Rubic", "Squid", "Rango", "SushiSwap"], - "occurrences": 5 - }, - "0x11920f139a3121c2836e01551d43f95b3c31159c": { - "address": "0x11920f139a3121c2836e01551d43f95b3c31159c", - "symbol": "YBR", - "decimals": 18, - "name": "YieldBricks", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0x11920f139a3121c2836e01551d43f95b3c31159c.png", - "aggregators": ["Socket", "Rubic", "Squid", "Rango", "Sonarwatch"], - "occurrences": 5 - }, - "0xc9c2b86cd4cdbab70cd65d22eb044574c3539f6c": { - "address": "0xc9c2b86cd4cdbab70cd65d22eb044574c3539f6c", - "symbol": "NFD", - "decimals": 18, - "name": "Feisty Doge NFT", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0xc9c2b86cd4cdbab70cd65d22eb044574c3539f6c.png", - "aggregators": ["ArbitrumWhitelist", "Socket", "Rubic", "Rango"], - "occurrences": 4 - }, - "0x95146881b86b3ee99e63705ec87afe29fcc044d9": { - "address": "0x95146881b86b3ee99e63705ec87afe29fcc044d9", - "symbol": "VRTX", - "decimals": 18, - "name": "Vertex", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0x95146881b86b3ee99e63705ec87afe29fcc044d9.png", - "aggregators": ["TraderJoe", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0xddf7d080c82b8048baae54e376a3406572429b4e": { - "address": "0xddf7d080c82b8048baae54e376a3406572429b4e", - "symbol": "OOOOOO", - "decimals": 18, - "name": "GODDOG", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0xddf7d080c82b8048baae54e376a3406572429b4e.png", - "aggregators": ["Socket", "Rubic", "Squid", "Rango"], - "occurrences": 4 - }, - "0x0c4681e6c0235179ec3d4f4fc4df3d14fdd96017": { - "address": "0x0c4681e6c0235179ec3d4f4fc4df3d14fdd96017", - "symbol": "RDNT", - "decimals": 18, - "name": "Radiant", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0x0c4681e6c0235179ec3d4f4fc4df3d14fdd96017.png", - "aggregators": ["Rubic", "Squid", "Rango", "SushiSwap"], - "occurrences": 4 - }, - "0x6c84a8f1c29108f47a79964b5fe888d4f4d0de40": { - "address": "0x6c84a8f1c29108f47a79964b5fe888d4f4d0de40", - "symbol": "TBTC", - "decimals": 18, - "name": "Arbitrum tBTC v2", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0x6c84a8f1c29108f47a79964b5fe888d4f4d0de40.png", - "aggregators": [ - "TraderJoe", - "LiFi", - "Socket", - "Rubic", - "Squid", - "Rango", - "Sonarwatch", - "SushiSwap" - ], - "occurrences": 8 - }, - "0xf42e2b8bc2af8b110b65be98db1321b1ab8d44f5": { - "address": "0xf42e2b8bc2af8b110b65be98db1321b1ab8d44f5", - "symbol": "DONUT", - "decimals": 18, - "name": "Donut", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0xf42e2b8bc2af8b110b65be98db1321b1ab8d44f5.png", - "aggregators": [ - "CoinGecko", - "LiFi", - "Socket", - "Rubic", - "Squid", - "Rango", - "Sonarwatch", - "SushiSwap" - ], - "occurrences": 8 - }, - "0xbfbcfe8873fe28dfa25f1099282b088d52bbad9c": { - "address": "0xbfbcfe8873fe28dfa25f1099282b088d52bbad9c", - "symbol": "EQB", - "decimals": 18, - "name": "Equilibria Finance", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0xbfbcfe8873fe28dfa25f1099282b088d52bbad9c.png", - "aggregators": [ - "TraderJoe", - "LiFi", - "Socket", - "Rubic", - "Squid", - "Rango", - "Sonarwatch" - ], - "occurrences": 7 - }, - "0x155f0dd04424939368972f4e1838687d6a831151": { - "address": "0x155f0dd04424939368972f4e1838687d6a831151", - "symbol": "ADOGE", - "decimals": 18, - "name": "ArbiDoge", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0x155f0dd04424939368972f4e1838687d6a831151.png", - "aggregators": [ - "TraderJoe", - "Socket", - "Rubic", - "Squid", - "Rango", - "Sonarwatch", - "SushiSwap" - ], - "occurrences": 7 - }, - "0x092baadb7def4c3981454dd9c0a0d7ff07bcfc86": { - "address": "0x092baadb7def4c3981454dd9c0a0d7ff07bcfc86", - "symbol": "MOR", - "decimals": 18, - "name": "MorpheusAI", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0x092baadb7def4c3981454dd9c0a0d7ff07bcfc86.png", - "aggregators": [ - "CoinGecko", - "LiFi", - "Socket", - "Rubic", - "Squid", - "Rango", - "Sonarwatch" - ], - "occurrences": 7 - }, - "0xb688ba096b7bb75d7841e47163cd12d18b36a5bf": { - "address": "0xb688ba096b7bb75d7841e47163cd12d18b36a5bf", - "symbol": "MPENDLE", - "decimals": 18, - "name": "mPendle", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0xb688ba096b7bb75d7841e47163cd12d18b36a5bf.png", - "aggregators": [ - "TraderJoe", - "LiFi", - "Socket", - "Rubic", - "Squid", - "Rango", - "Sonarwatch" - ], - "occurrences": 7 - }, - "0x27f485b62c4a7e635f561a87560adf5090239e93": { - "address": "0x27f485b62c4a7e635f561a87560adf5090239e93", - "symbol": "DFX", - "decimals": 18, - "name": "DFX Finance", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0x27f485b62c4a7e635f561a87560adf5090239e93.png", - "aggregators": [ - "TraderJoe", - "1inch", - "LiFi", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 7 - }, - "0x3647c54c4c2c65bc7a2d63c0da2809b399dbbdc0": { - "address": "0x3647c54c4c2c65bc7a2d63c0da2809b399dbbdc0", - "symbol": "SOLVBTC", - "decimals": 18, - "name": "Solv BTC", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0x3647c54c4c2c65bc7a2d63c0da2809b399dbbdc0.png", - "aggregators": [ - "CoinGecko", - "LiFi", - "Socket", - "Rubic", - "Rango", - "Sonarwatch", - "SushiSwap" - ], - "occurrences": 7 - }, - "0xa3d1a8deb97b111454b294e2324efad13a9d8396": { - "address": "0xa3d1a8deb97b111454b294e2324efad13a9d8396", - "symbol": "OVN", - "decimals": 18, - "name": "Overnight Finance", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0xa3d1a8deb97b111454b294e2324efad13a9d8396.png", - "aggregators": [ - "CoinGecko", - "LiFi", - "Rubic", - "Squid", - "Rango", - "Sonarwatch", - "SushiSwap" - ], - "occurrences": 7 - }, - "0x6a7661795c374c0bfc635934efaddff3a7ee23b6": { - "address": "0x6a7661795c374c0bfc635934efaddff3a7ee23b6", - "symbol": "DOLA", - "decimals": 18, - "name": "DOLA", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0x6a7661795c374c0bfc635934efaddff3a7ee23b6.png", - "aggregators": [ - "TraderJoe", - "LiFi", - "Socket", - "Rubic", - "Squid", - "Rango", - "Sonarwatch" - ], - "occurrences": 7 - }, - "0xf0cb2dc0db5e6c66b9a70ac27b06b878da017028": { - "address": "0xf0cb2dc0db5e6c66b9a70ac27b06b878da017028", - "symbol": "OHM", - "decimals": 9, - "name": "Olympus", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0xf0cb2dc0db5e6c66b9a70ac27b06b878da017028.png", - "aggregators": [ - "TraderJoe", - "LiFi", - "Socket", - "Rubic", - "Squid", - "Rango", - "Sonarwatch" - ], - "occurrences": 7 - }, - "0x93fa0b88c0c78e45980fa74cdd87469311b7b3e4": { - "address": "0x93fa0b88c0c78e45980fa74cdd87469311b7b3e4", - "symbol": "XBG", - "decimals": 18, - "name": "XBorg", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0x93fa0b88c0c78e45980fa74cdd87469311b7b3e4.png", - "aggregators": [ - "CoinGecko", - "LiFi", - "Socket", - "Rubic", - "Squid", - "Rango", - "Sonarwatch" - ], - "occurrences": 7 - }, - "0x080f6aed32fc474dd5717105dba5ea57268f46eb": { - "address": "0x080f6aed32fc474dd5717105dba5ea57268f46eb", - "symbol": "SYN", - "decimals": 18, - "name": "Synapse", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0x080f6aed32fc474dd5717105dba5ea57268f46eb.png", - "aggregators": [ - "TraderJoe", - "LiFi", - "Socket", - "Rubic", - "Squid", - "Rango", - "Sonarwatch" - ], - "occurrences": 7 - }, - "0xb01cf1be9568f09449382a47cd5bf58e2a9d5922": { - "address": "0xb01cf1be9568f09449382a47cd5bf58e2a9d5922", - "symbol": "SPEED", - "decimals": 18, - "name": "Lightspeed", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0xb01cf1be9568f09449382a47cd5bf58e2a9d5922.png", - "aggregators": [ - "CoinGecko", - "LiFi", - "Socket", - "Rubic", - "Squid", - "Rango", - "Sonarwatch" - ], - "occurrences": 7 - }, - "0x4a24b101728e07a52053c13fb4db2bcf490cabc3": { - "address": "0x4a24b101728e07a52053c13fb4db2bcf490cabc3", - "symbol": "AIUS", - "decimals": 18, - "name": "Arbius", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0x4a24b101728e07a52053c13fb4db2bcf490cabc3.png", - "aggregators": [ - "CoinGecko", - "LiFi", - "Socket", - "Rubic", - "Squid", - "Rango", - "Sonarwatch" - ], - "occurrences": 7 - }, - "0x53691596d1bce8cea565b84d4915e69e03d9c99d": { - "address": "0x53691596d1bce8cea565b84d4915e69e03d9c99d", - "symbol": "ACX", - "decimals": 18, - "name": "Across Protocol Token", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0x53691596d1bce8cea565b84d4915e69e03d9c99d.png", - "aggregators": [ - "TraderJoe", - "LiFi", - "Rubic", - "Rango", - "Sonarwatch", - "SushiSwap" - ], - "occurrences": 6 - }, - "0xa68ec98d7ca870cf1dd0b00ebbb7c4bf60a8e74d": { - "address": "0xa68ec98d7ca870cf1dd0b00ebbb7c4bf60a8e74d", - "symbol": "BICO", - "decimals": 18, - "name": "Biconomy", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0xa68ec98d7ca870cf1dd0b00ebbb7c4bf60a8e74d.png", - "aggregators": [ - "TraderJoe", - "LiFi", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 6 - }, - "0xcb8b5cd20bdcaea9a010ac1f8d835824f5c87a04": { - "address": "0xcb8b5cd20bdcaea9a010ac1f8d835824f5c87a04", - "symbol": "COW", - "decimals": 18, - "name": "CoW Protocol", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0xcb8b5cd20bdcaea9a010ac1f8d835824f5c87a04.png", - "aggregators": [ - "CoinGecko", - "LiFi", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 6 - }, - "0x319f865b287fcc10b30d8ce6144e8b6d1b476999": { - "address": "0x319f865b287fcc10b30d8ce6144e8b6d1b476999", - "symbol": "CTSI", - "decimals": 18, - "name": "Cartesi", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0x319f865b287fcc10b30d8ce6144e8b6d1b476999.png", - "aggregators": [ - "TraderJoe", - "LiFi", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 6 - }, - "0xf929de51d91c77e42f5090069e0ad7a09e513c73": { - "address": "0xf929de51d91c77e42f5090069e0ad7a09e513c73", - "symbol": "FOX", - "decimals": 18, - "name": "ShapeShift FOX", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0xf929de51d91c77e42f5090069e0ad7a09e513c73.png", - "aggregators": [ - "CoinGecko", - "LiFi", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 6 - }, - "0xfb9e5d956d889d91a82737b9bfcdac1dce3e1449": { - "address": "0xfb9e5d956d889d91a82737b9bfcdac1dce3e1449", - "symbol": "LQTY", - "decimals": 18, - "name": "Liquity", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0xfb9e5d956d889d91a82737b9bfcdac1dce3e1449.png", - "aggregators": [ - "TraderJoe", - "LiFi", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 6 - }, - "0x8f5c1a99b1df736ad685006cb6adca7b7ae4b514": { - "address": "0x8f5c1a99b1df736ad685006cb6adca7b7ae4b514", - "symbol": "MLN", - "decimals": 18, - "name": "Enzyme", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0x8f5c1a99b1df736ad685006cb6adca7b7ae4b514.png", - "aggregators": [ - "CoinGecko", - "LiFi", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 6 - }, - "0xda0a57b710768ae17941a9fa33f8b720c8bd9ddd": { - "address": "0xda0a57b710768ae17941a9fa33f8b720c8bd9ddd", - "symbol": "POND", - "decimals": 18, - "name": "Marlin", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0xda0a57b710768ae17941a9fa33f8b720c8bd9ddd.png", - "aggregators": [ - "TraderJoe", - "LiFi", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 6 - }, - "0xca5ca9083702c56b481d1eec86f1776fdbd2e594": { - "address": "0xca5ca9083702c56b481d1eec86f1776fdbd2e594", - "symbol": "RSR", - "decimals": 18, - "name": "Reserve Rights", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0xca5ca9083702c56b481d1eec86f1776fdbd2e594.png", - "aggregators": [ - "CoinGecko", - "LiFi", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 6 - }, - "0xd58d345fd9c82262e087d2d0607624b410d88242": { - "address": "0xd58d345fd9c82262e087d2d0607624b410d88242", - "symbol": "TRB", - "decimals": 18, - "name": "Tellor Tributes", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0xd58d345fd9c82262e087d2d0607624b410d88242.png", - "aggregators": [ - "TraderJoe", - "LiFi", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 6 - }, - "0x5c816d4582c857dcadb1bb1f62ad6c9dede4576a": { - "address": "0x5c816d4582c857dcadb1bb1f62ad6c9dede4576a", - "symbol": "TURBO", - "decimals": 18, - "name": "Turbo", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0x5c816d4582c857dcadb1bb1f62ad6c9dede4576a.png", - "aggregators": [ - "UniswapLabs", - "LiFi", - "Socket", - "Rubic", - "Rango", - "SushiSwap" - ], - "occurrences": 6 - }, - "0x13a7dedb7169a17be92b0e3c7c2315b46f4772b3": { - "address": "0x13a7dedb7169a17be92b0e3c7c2315b46f4772b3", - "symbol": "BOOP", - "decimals": 18, - "name": "Boop", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0x13a7dedb7169a17be92b0e3c7c2315b46f4772b3.png", - "aggregators": [ - "TraderJoe", - "Socket", - "Rubic", - "Squid", - "Rango", - "Sonarwatch" - ], - "occurrences": 6 - }, - "0xaaa6c1e32c55a7bfa8066a6fae9b42650f262418": { - "address": "0xaaa6c1e32c55a7bfa8066a6fae9b42650f262418", - "symbol": "RAM", - "decimals": 18, - "name": "Ramses Exchange", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0xaaa6c1e32c55a7bfa8066a6fae9b42650f262418.png", - "aggregators": [ - "TraderJoe", - "LiFi", - "Rubic", - "Squid", - "Rango", - "Sonarwatch" - ], - "occurrences": 6 - }, - "0x3b475f6f2f41853706afc9fa6a6b8c5df1a2724c": { - "address": "0x3b475f6f2f41853706afc9fa6a6b8c5df1a2724c", - "symbol": "ZYB", - "decimals": 18, - "name": "Zyberswap", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0x3b475f6f2f41853706afc9fa6a6b8c5df1a2724c.png", - "aggregators": [ - "TraderJoe", - "LiFi", - "Rubic", - "Squid", - "Rango", - "Sonarwatch" - ], - "occurrences": 6 - }, - "0x15b2fb8f08e4ac1ce019eadae02ee92aedf06851": { - "address": "0x15b2fb8f08e4ac1ce019eadae02ee92aedf06851", - "symbol": "CHR", - "decimals": 18, - "name": "Chronos Finance", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0x15b2fb8f08e4ac1ce019eadae02ee92aedf06851.png", - "aggregators": [ - "TraderJoe", - "LiFi", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 6 - }, - "0x982239d38af50b0168da33346d85fb12929c4c07": { - "address": "0x982239d38af50b0168da33346d85fb12929c4c07", - "symbol": "TROVE", - "decimals": 18, - "name": "Arbitrove Governance Token", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0x982239d38af50b0168da33346d85fb12929c4c07.png", - "aggregators": [ - "TraderJoe", - "LiFi", - "Rubic", - "Squid", - "Rango", - "Sonarwatch" - ], - "occurrences": 6 - }, - "0x3212dc0f8c834e4de893532d27cc9b6001684db0": { - "address": "0x3212dc0f8c834e4de893532d27cc9b6001684db0", - "symbol": "PEAR", - "decimals": 18, - "name": "Pear Protocol", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0x3212dc0f8c834e4de893532d27cc9b6001684db0.png", - "aggregators": [ - "TraderJoe", - "LiFi", - "Rubic", - "Squid", - "Rango", - "Sonarwatch" - ], - "occurrences": 6 - }, - "0x11e969e9b3f89cb16d686a03cd8508c9fc0361af": { - "address": "0x11e969e9b3f89cb16d686a03cd8508c9fc0361af", - "symbol": "LAVA", - "decimals": 6, - "name": "Lava Network", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0x11e969e9b3f89cb16d686a03cd8508c9fc0361af.png", - "aggregators": [ - "CoinGecko", - "Rubic", - "Squid", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x3d15fd46ce9e551498328b1c83071d9509e2c3a0": { - "address": "0x3d15fd46ce9e551498328b1c83071d9509e2c3a0", - "symbol": "UNIETH", - "decimals": 18, - "name": "Universal ETH", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0x3d15fd46ce9e551498328b1c83071d9509e2c3a0.png", - "aggregators": [ - "CoinGecko", - "LiFi", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 6 - }, - "0xcb8fa9a76b8e203d8c3797bf438d8fb81ea3326a": { - "address": "0xcb8fa9a76b8e203d8c3797bf438d8fb81ea3326a", - "symbol": "ALUSD", - "decimals": 18, - "name": "Alchemix USD", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0xcb8fa9a76b8e203d8c3797bf438d8fb81ea3326a.png", - "aggregators": [ - "CoinGecko", - "LiFi", - "Rubic", - "Squid", - "Rango", - "Sonarwatch" - ], - "occurrences": 6 - }, - "0x60d01ec2d5e98ac51c8b4cf84dfcce98d527c747": { - "address": "0x60d01ec2d5e98ac51c8b4cf84dfcce98d527c747", - "symbol": "IZI", - "decimals": 18, - "name": "iZUMi Finance", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0x60d01ec2d5e98ac51c8b4cf84dfcce98d527c747.png", - "aggregators": [ - "CoinGecko", - "LiFi", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 6 - }, - "0x35ca1e5a9b1c09fa542fa18d1ba4d61c8edff852": { - "address": "0x35ca1e5a9b1c09fa542fa18d1ba4d61c8edff852", - "symbol": "SCHRODI", - "decimals": 18, - "name": "Schrodi", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0x35ca1e5a9b1c09fa542fa18d1ba4d61c8edff852.png", - "aggregators": [ - "CoinGecko", - "LiFi", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 6 - }, - "0x35f1c5cb7fb977e669fd244c567da99d8a3a6850": { - "address": "0x35f1c5cb7fb977e669fd244c567da99d8a3a6850", - "symbol": "USD0", - "decimals": 18, - "name": "Usual USD", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0x35f1c5cb7fb977e669fd244c567da99d8a3a6850.png", - "aggregators": [ - "CoinGecko", - "LiFi", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 6 - }, - "0xe0ee18eacafddaeb38f8907c74347c44385578ab": { - "address": "0xe0ee18eacafddaeb38f8907c74347c44385578ab", - "symbol": "AXGT", - "decimals": 18, - "name": "AxonDAO Governance Token", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0xe0ee18eacafddaeb38f8907c74347c44385578ab.png", - "aggregators": [ - "CoinGecko", - "LiFi", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 6 - }, - "0x86f65121804d2cdbef79f9f072d4e0c2eebabc08": { - "address": "0x86f65121804d2cdbef79f9f072d4e0c2eebabc08", - "symbol": "SEED", - "decimals": 18, - "name": "Garden", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0x86f65121804d2cdbef79f9f072d4e0c2eebabc08.png", - "aggregators": [ - "CoinGecko", - "LiFi", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 6 - }, - "0x12275dcb9048680c4be40942ea4d92c74c63b844": { - "address": "0x12275dcb9048680c4be40942ea4d92c74c63b844", - "symbol": "EUSD", - "decimals": 18, - "name": "Electronic USD", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0x12275dcb9048680c4be40942ea4d92c74c63b844.png", - "aggregators": [ - "CoinGecko", - "LiFi", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 6 - }, - "0xbfd5206962267c7b4b4a8b3d76ac2e1b2a5c4d5e": { - "address": "0xbfd5206962267c7b4b4a8b3d76ac2e1b2a5c4d5e", - "symbol": "OSAK", - "decimals": 18, - "name": "Osaka Protocol", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0xbfd5206962267c7b4b4a8b3d76ac2e1b2a5c4d5e.png", - "aggregators": [ - "TraderJoe", - "Socket", - "Rubic", - "Rango", - "Sonarwatch", - "SushiSwap" - ], - "occurrences": 6 - }, - "0xf3527ef8de265eaa3716fb312c12847bfba66cef": { - "address": "0xf3527ef8de265eaa3716fb312c12847bfba66cef", - "symbol": "USDX", - "decimals": 18, - "name": "usdx.money USDX", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0xf3527ef8de265eaa3716fb312c12847bfba66cef.png", - "aggregators": [ - "TraderJoe", - "LiFi", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 6 - }, - "0xe22c452bd2ade15dfc8ad98286bc6bdf0c9219b7": { - "address": "0xe22c452bd2ade15dfc8ad98286bc6bdf0c9219b7", - "symbol": "TRADE", - "decimals": 18, - "name": "Polytrade", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0xe22c452bd2ade15dfc8ad98286bc6bdf0c9219b7.png", - "aggregators": [ - "TraderJoe", - "LiFi", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 6 - }, - "0xeb466342c4d449bc9f53a865d5cb90586f405215": { - "address": "0xeb466342c4d449bc9f53a865d5cb90586f405215", - "symbol": "AXLUSDC", - "decimals": 6, - "name": "Axelar Wrapped USDC", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0xeb466342c4d449bc9f53a865d5cb90586f405215.png", - "aggregators": [ - "TraderJoe", - "LiFi", - "Rubic", - "Squid", - "Rango", - "SushiSwap" - ], - "occurrences": 6 - }, - "0xabd587f2607542723b17f14d00d99b987c29b074": { - "address": "0xabd587f2607542723b17f14d00d99b987c29b074", - "symbol": "SDEX", - "decimals": 18, - "name": "SmarDex", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0xabd587f2607542723b17f14d00d99b987c29b074.png", - "aggregators": [ - "TraderJoe", - "LiFi", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 6 - }, - "0xe85b662fe97e8562f4099d8a1d5a92d4b453bf30": { - "address": "0xe85b662fe97e8562f4099d8a1d5a92d4b453bf30", - "symbol": "THALES", - "decimals": 18, - "name": "Thales", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0xe85b662fe97e8562f4099d8a1d5a92d4b453bf30.png", - "aggregators": [ - "TraderJoe", - "LiFi", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 6 - }, - "0xa61f74247455a40b01b0559ff6274441fafa22a3": { - "address": "0xa61f74247455a40b01b0559ff6274441fafa22a3", - "symbol": "MGP", - "decimals": 18, - "name": "Magpie", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0xa61f74247455a40b01b0559ff6274441fafa22a3.png", - "aggregators": [ - "TraderJoe", - "LiFi", - "Rubic", - "Squid", - "Rango", - "Sonarwatch" - ], - "occurrences": 6 - }, - "0x95ab45875cffdba1e5f451b950bc2e42c0053f39": { - "address": "0x95ab45875cffdba1e5f451b950bc2e42c0053f39", - "symbol": "SFRXETH", - "decimals": 18, - "name": "Staked Frax Ether", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0x95ab45875cffdba1e5f451b950bc2e42c0053f39.png", - "aggregators": [ - "TraderJoe", - "LiFi", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 6 - }, - "0x56659245931cb6920e39c189d2a0e7dd0da2d57b": { - "address": "0x56659245931cb6920e39c189d2a0e7dd0da2d57b", - "symbol": "IBEX", - "decimals": 18, - "name": "Impermax", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0x56659245931cb6920e39c189d2a0e7dd0da2d57b.png", - "aggregators": [ - "TraderJoe", - "LiFi", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 6 - }, - "0xadf5dd3e51bf28ab4f07e684ecf5d00691818790": { - "address": "0xadf5dd3e51bf28ab4f07e684ecf5d00691818790", - "symbol": "ICHI", - "decimals": 18, - "name": "ICHI", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0xadf5dd3e51bf28ab4f07e684ecf5d00691818790.png", - "aggregators": [ - "TraderJoe", - "LiFi", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 6 - }, - "0x9dca587dc65ac0a043828b0acd946d71eb8d46c1": { - "address": "0x9dca587dc65ac0a043828b0acd946d71eb8d46c1", - "symbol": "IFARM", - "decimals": 18, - "name": "iFARM", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0x9dca587dc65ac0a043828b0acd946d71eb8d46c1.png", - "aggregators": [ - "TraderJoe", - "LiFi", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 6 - }, - "0xe05a08226c49b636acf99c40da8dc6af83ce5bb3": { - "address": "0xe05a08226c49b636acf99c40da8dc6af83ce5bb3", - "symbol": "ANKRETH", - "decimals": 18, - "name": "Ankr Staked ETH", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0xe05a08226c49b636acf99c40da8dc6af83ce5bb3.png", - "aggregators": [ - "TraderJoe", - "LiFi", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 6 - }, - "0xa334884bf6b0a066d553d19e507315e839409e62": { - "address": "0xa334884bf6b0a066d553d19e507315e839409e62", - "symbol": "ERN", - "decimals": 18, - "name": "Ethos Reserve Note", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0xa334884bf6b0a066d553d19e507315e839409e62.png", - "aggregators": [ - "TraderJoe", - "LiFi", - "Rubic", - "Squid", - "Rango", - "Sonarwatch" - ], - "occurrences": 6 - }, - "0x2ac2b254bc18cd4999f64773a966e4f4869c34ee": { - "address": "0x2ac2b254bc18cd4999f64773a966e4f4869c34ee", - "symbol": "PNP", - "decimals": 18, - "name": "Penpie Token", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0x2ac2b254bc18cd4999f64773a966e4f4869c34ee.png", - "aggregators": [ - "TraderJoe", - "LiFi", - "Socket", - "Rubic", - "Squid", - "Rango" - ], - "occurrences": 6 - }, - "0x21e60ee73f17ac0a411ae5d690f908c3ed66fe12": { - "address": "0x21e60ee73f17ac0a411ae5d690f908c3ed66fe12", - "symbol": "DERI", - "decimals": 18, - "name": "Deri Protocol", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0x21e60ee73f17ac0a411ae5d690f908c3ed66fe12.png", - "aggregators": [ - "CoinGecko", - "LiFi", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 6 - }, - "0xb1084db8d3c05cebd5fa9335df95ee4b8a0edc30": { - "address": "0xb1084db8d3c05cebd5fa9335df95ee4b8a0edc30", - "symbol": "USDT+", - "decimals": 6, - "name": "Overnight.fi USDT+", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0xb1084db8d3c05cebd5fa9335df95ee4b8a0edc30.png", - "aggregators": [ - "CoinGecko", - "LiFi", - "Rubic", - "Squid", - "Rango", - "Sonarwatch" - ], - "occurrences": 6 - }, - "0x9e20461bc2c4c980f62f1b279d71734207a6a356": { - "address": "0x9e20461bc2c4c980f62f1b279d71734207a6a356", - "symbol": "OMNI", - "decimals": 18, - "name": "OmniCat", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0x9e20461bc2c4c980f62f1b279d71734207a6a356.png", - "aggregators": [ - "TraderJoe", - "Socket", - "Rubic", - "Rango", - "Sonarwatch", - "SushiSwap" - ], - "occurrences": 6 - }, - "0x2598c30330d5771ae9f983979209486ae26de875": { - "address": "0x2598c30330d5771ae9f983979209486ae26de875", - "symbol": "AI", - "decimals": 18, - "name": "Any Inu", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0x2598c30330d5771ae9f983979209486ae26de875.png", - "aggregators": [ - "TraderJoe", - "Socket", - "Rubic", - "Squid", - "Rango", - "Sonarwatch" - ], - "occurrences": 6 - }, - "0xdb298285fe4c5410b05390ca80e8fbe9de1f259b": { - "address": "0xdb298285fe4c5410b05390ca80e8fbe9de1f259b", - "symbol": "FOREX", - "decimals": 18, - "name": "handle.fi", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0xdb298285fe4c5410b05390ca80e8fbe9de1f259b.png", - "aggregators": [ - "TraderJoe", - "LiFi", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 6 - }, - "0xc08cd26474722ce93f4d0c34d16201461c10aa8c": { - "address": "0xc08cd26474722ce93f4d0c34d16201461c10aa8c", - "symbol": "CARV", - "decimals": 18, - "name": "CARV", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0xc08cd26474722ce93f4d0c34d16201461c10aa8c.png", - "aggregators": [ - "TraderJoe", - "Socket", - "Rubic", - "Squid", - "Rango", - "Sonarwatch" - ], - "occurrences": 6 - }, - "0x6b2a01a5f79deb4c2f3c0eda7b01df456fbd726a": { - "address": "0x6b2a01a5f79deb4c2f3c0eda7b01df456fbd726a", - "symbol": "UNIBTC", - "decimals": 8, - "name": "Universal BTC", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0x6b2a01a5f79deb4c2f3c0eda7b01df456fbd726a.png", - "aggregators": [ - "TraderJoe", - "LiFi", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 6 - }, - "0x10aaed289a7b1b0155bf4b86c862f297e84465e0": { - "address": "0x10aaed289a7b1b0155bf4b86c862f297e84465e0", - "symbol": "RBC", - "decimals": 18, - "name": "Rubic", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0x10aaed289a7b1b0155bf4b86c862f297e84465e0.png", - "aggregators": [ - "TraderJoe", - "LiFi", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 6 - }, - "0xb6093b61544572ab42a0e43af08abafd41bf25a6": { - "address": "0xb6093b61544572ab42a0e43af08abafd41bf25a6", - "symbol": "WXM", - "decimals": 18, - "name": "WeatherXM", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0xb6093b61544572ab42a0e43af08abafd41bf25a6.png", - "aggregators": [ - "CoinGecko", - "LiFi", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 6 - }, - "0xc5102fe9359fd9a28f877a67e36b0f050d81a3cc": { - "address": "0xc5102fe9359fd9a28f877a67e36b0f050d81a3cc", - "symbol": "HOP", - "decimals": 18, - "name": "Hop Protocol", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0xc5102fe9359fd9a28f877a67e36b0f050d81a3cc.png", - "aggregators": [ - "TraderJoe", - "LiFi", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 6 - }, - "0x18c14c2d707b2212e17d1579789fc06010cfca23": { - "address": "0x18c14c2d707b2212e17d1579789fc06010cfca23", - "symbol": "ETH+", - "decimals": 18, - "name": "ETHPlus", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0x18c14c2d707b2212e17d1579789fc06010cfca23.png", - "aggregators": [ - "CoinGecko", - "LiFi", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 6 - }, - "0x60bf4e7cf16ff34513514b968483b54beff42a81": { - "address": "0x60bf4e7cf16ff34513514b968483b54beff42a81", - "symbol": "VCNT", - "decimals": 18, - "name": "ViciCoin", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0x60bf4e7cf16ff34513514b968483b54beff42a81.png", - "aggregators": [ - "CoinGecko", - "Socket", - "Rubic", - "Squid", - "Rango", - "Sonarwatch" - ], - "occurrences": 6 - }, - "0x3269a3c00ab86c753856fd135d97b87facb0d848": { - "address": "0x3269a3c00ab86c753856fd135d97b87facb0d848", - "symbol": "FFM", - "decimals": 18, - "name": "Florence Finance Medici", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0x3269a3c00ab86c753856fd135d97b87facb0d848.png", - "aggregators": [ - "TraderJoe", - "LiFi", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 6 - }, - "0x417a1afd44250314bffb11ff68e989775e990ab6": { - "address": "0x417a1afd44250314bffb11ff68e989775e990ab6", - "symbol": "VOLTA", - "decimals": 18, - "name": "Volta Protocol", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0x417a1afd44250314bffb11ff68e989775e990ab6.png", - "aggregators": [ - "TraderJoe", - "LiFi", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 6 - }, - "0x7788a3538c5fc7f9c7c8a74eac4c898fc8d87d92": { - "address": "0x7788a3538c5fc7f9c7c8a74eac4c898fc8d87d92", - "symbol": "SUSDX", - "decimals": 18, - "name": "Stables Labs Staked USDX", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0x7788a3538c5fc7f9c7c8a74eac4c898fc8d87d92.png", - "aggregators": [ - "TraderJoe", - "LiFi", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 6 - }, - "0x83d6c8c06ac276465e4c92e7ac8c23740f435140": { - "address": "0x83d6c8c06ac276465e4c92e7ac8c23740f435140", - "symbol": "HMX", - "decimals": 18, - "name": "HMX", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0x83d6c8c06ac276465e4c92e7ac8c23740f435140.png", - "aggregators": [ - "TraderJoe", - "LiFi", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 6 - }, - "0xbcc9c1763d54427bdf5efb6e9eb9494e5a1fbabf": { - "address": "0xbcc9c1763d54427bdf5efb6e9eb9494e5a1fbabf", - "symbol": "HWT", - "decimals": 18, - "name": "Honor World Token", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0xbcc9c1763d54427bdf5efb6e9eb9494e5a1fbabf.png", - "aggregators": [ - "TraderJoe", - "LiFi", - "Rubic", - "Rango", - "Sonarwatch", - "SushiSwap" - ], - "occurrences": 6 - }, - "0xc19669a405067927865b40ea045a2baabbbe57f5": { - "address": "0xc19669a405067927865b40ea045a2baabbbe57f5", - "symbol": "STAR", - "decimals": 18, - "name": "Star", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0xc19669a405067927865b40ea045a2baabbbe57f5.png", - "aggregators": [ - "TraderJoe", - "LiFi", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 6 - }, - "0xeb8e93a0c7504bffd8a8ffa56cd754c63aaebfe8": { - "address": "0xeb8e93a0c7504bffd8a8ffa56cd754c63aaebfe8", - "symbol": "DAI+", - "decimals": 18, - "name": "Overnight.fi DAI+", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0xeb8e93a0c7504bffd8a8ffa56cd754c63aaebfe8.png", - "aggregators": [ - "TraderJoe", - "LiFi", - "Rubic", - "Squid", - "Rango", - "Sonarwatch" - ], - "occurrences": 6 - }, - "0x680447595e8b7b3aa1b43beb9f6098c79ac2ab3f": { - "address": "0x680447595e8b7b3aa1b43beb9f6098c79ac2ab3f", - "symbol": "USDD", - "decimals": 18, - "name": "USDD", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0x680447595e8b7b3aa1b43beb9f6098c79ac2ab3f.png", - "aggregators": [ - "LiFi", - "Socket", - "Rubic", - "Squid", - "Rango", - "Sonarwatch" - ], - "occurrences": 6 - }, - "0x09ad12552ec45f82be90b38dfe7b06332a680864": { - "address": "0x09ad12552ec45f82be90b38dfe7b06332a680864", - "symbol": "ARBY", - "decimals": 18, - "name": "Adamant Token", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0x09ad12552ec45f82be90b38dfe7b06332a680864.png", - "aggregators": [ - "LiFi", - "Socket", - "Rubic", - "Squid", - "Rango", - "SushiSwap" - ], - "occurrences": 6 - }, - "0xa6219b4bf4b861a2b1c02da43b2af266186edc04": { - "address": "0xa6219b4bf4b861a2b1c02da43b2af266186edc04", - "symbol": "ARVAULT", - "decimals": 9, - "name": "ArVault", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0xa6219b4bf4b861a2b1c02da43b2af266186edc04.png", - "aggregators": [ - "LiFi", - "Socket", - "Rubic", - "Squid", - "Rango", - "SushiSwap" - ], - "occurrences": 6 - }, - "0x4e51ac49bc5e2d87e0ef713e9e5ab2d71ef4f336": { - "address": "0x4e51ac49bc5e2d87e0ef713e9e5ab2d71ef4f336", - "symbol": "CELO", - "decimals": 18, - "name": "Celo (Wormhole)", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0x4e51ac49bc5e2d87e0ef713e9e5ab2d71ef4f336.png", - "aggregators": [ - "UniswapLabs", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0xdeba25af35e4097146d7629055e0ec3c71706324": { - "address": "0xdeba25af35e4097146d7629055e0ec3c71706324", - "symbol": "DEFI5", - "decimals": 18, - "name": "DEFI Top 5 Tokens Index", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0xdeba25af35e4097146d7629055e0ec3c71706324.png", - "aggregators": [ - "ArbitrumWhitelist", - "LiFi", - "Socket", - "Rubic", - "Rango" - ], - "occurrences": 5 - }, - "0x9c67ee39e3c4954396b9142010653f17257dd39c": { - "address": "0x9c67ee39e3c4954396b9142010653f17257dd39c", - "symbol": "IMX", - "decimals": 18, - "name": "Impermax", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0x9c67ee39e3c4954396b9142010653f17257dd39c.png", - "aggregators": [ - "ArbitrumWhitelist", - "LiFi", - "Socket", - "Rubic", - "Rango" - ], - "occurrences": 5 - }, - "0xcd14c3a2ba27819b352aae73414a26e2b366dc50": { - "address": "0xcd14c3a2ba27819b352aae73414a26e2b366dc50", - "symbol": "USX", - "decimals": 18, - "name": "dForce USD", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0xcd14c3a2ba27819b352aae73414a26e2b366dc50.png", - "aggregators": [ - "ArbitrumWhitelist", - "LiFi", - "Socket", - "Rubic", - "Rango" - ], - "occurrences": 5 - }, - "0xa64ecce74f8cdb7a940766b71f1b108bac69851a": { - "address": "0xa64ecce74f8cdb7a940766b71f1b108bac69851a", - "symbol": "WCHI", - "decimals": 8, - "name": "Wrapped CHI", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0xa64ecce74f8cdb7a940766b71f1b108bac69851a.png", - "aggregators": [ - "ArbitrumWhitelist", - "LiFi", - "Socket", - "Rubic", - "Rango" - ], - "occurrences": 5 - }, - "0x59062301fb510f4ea2417b67404cb16d31e604ba": { - "address": "0x59062301fb510f4ea2417b67404cb16d31e604ba", - "symbol": "LOGX", - "decimals": 18, - "name": "LogX Network", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0x59062301fb510f4ea2417b67404cb16d31e604ba.png", - "aggregators": [ - "CoinGecko", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0xb299751b088336e165da313c33e3195b8c6663a6": { - "address": "0xb299751b088336e165da313c33e3195b8c6663a6", - "symbol": "STAR", - "decimals": 18, - "name": "StarHeroes", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0xb299751b088336e165da313c33e3195b8c6663a6.png", - "aggregators": [ - "CoinGecko", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0xccd05a0fcfc1380e9da27862adb2198e58e0d66f": { - "address": "0xccd05a0fcfc1380e9da27862adb2198e58e0d66f", - "symbol": "ANIMA", - "decimals": 18, - "name": "Anima", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0xccd05a0fcfc1380e9da27862adb2198e58e0d66f.png", - "aggregators": [ - "CoinGecko", - "Rubic", - "Rango", - "Sonarwatch", - "SushiSwap" - ], - "occurrences": 5 - }, - "0x3096e7bfd0878cc65be71f8899bc4cfb57187ba3": { - "address": "0x3096e7bfd0878cc65be71f8899bc4cfb57187ba3", - "symbol": "RWA", - "decimals": 18, - "name": "Xend Finance", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0x3096e7bfd0878cc65be71f8899bc4cfb57187ba3.png", - "aggregators": [ - "CoinGecko", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0xf1264873436a0771e440e2b28072fafcc5eebd01": { - "address": "0xf1264873436a0771e440e2b28072fafcc5eebd01", - "symbol": "KNS", - "decimals": 18, - "name": "Kenshi", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0xf1264873436a0771e440e2b28072fafcc5eebd01.png", - "aggregators": [ - "TraderJoe", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x21ccbc5e7f353ec43b2f5b1fb12c3e9d89d30dca": { - "address": "0x21ccbc5e7f353ec43b2f5b1fb12c3e9d89d30dca", - "symbol": "BDT", - "decimals": 18, - "name": "BlackDragon", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0x21ccbc5e7f353ec43b2f5b1fb12c3e9d89d30dca.png", - "aggregators": [ - "CoinGecko", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x580e933d90091b9ce380740e3a4a39c67eb85b4c": { - "address": "0x580e933d90091b9ce380740e3a4a39c67eb85b4c", - "symbol": "GSWIFT", - "decimals": 18, - "name": "GameSwift", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0x580e933d90091b9ce380740e3a4a39c67eb85b4c.png", - "aggregators": [ - "TraderJoe", - "LiFi", - "Socket", - "Rubic", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x655a6beebf2361a19549a99486ff65f709bd2646": { - "address": "0x655a6beebf2361a19549a99486ff65f709bd2646", - "symbol": "LILAI", - "decimals": 18, - "name": "LilAI", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0x655a6beebf2361a19549a99486ff65f709bd2646.png", - "aggregators": [ - "TraderJoe", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x772598e9e62155d7fdfe65fdf01eb5a53a8465be": { - "address": "0x772598e9e62155d7fdfe65fdf01eb5a53a8465be", - "symbol": "EMP", - "decimals": 18, - "name": "Empyreal", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0x772598e9e62155d7fdfe65fdf01eb5a53a8465be.png", - "aggregators": [ - "TraderJoe", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0xd56734d7f9979dd94fae3d67c7e928234e71cd4c": { - "address": "0xd56734d7f9979dd94fae3d67c7e928234e71cd4c", - "symbol": "TIA.N", - "decimals": 6, - "name": "Bridged TIA (Hyperlane)", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0xd56734d7f9979dd94fae3d67c7e928234e71cd4c.png", - "aggregators": [ - "TraderJoe", - "Rubic", - "Squid", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x1c43d05be7e5b54d506e3ddb6f0305e8a66cd04e": { - "address": "0x1c43d05be7e5b54d506e3ddb6f0305e8a66cd04e", - "symbol": "ZTX", - "decimals": 18, - "name": "ZTX", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0x1c43d05be7e5b54d506e3ddb6f0305e8a66cd04e.png", - "aggregators": [ - "TraderJoe", - "Rubic", - "Rango", - "Sonarwatch", - "SushiSwap" - ], - "occurrences": 5 - }, - "0x3de81ce90f5a27c5e6a5adb04b54aba488a6d14e": { - "address": "0x3de81ce90f5a27c5e6a5adb04b54aba488a6d14e", - "symbol": "PRIME", - "decimals": 18, - "name": "DeltaPrime", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0x3de81ce90f5a27c5e6a5adb04b54aba488a6d14e.png", - "aggregators": [ - "CoinGecko", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x004626a008b1acdc4c74ab51644093b155e59a23": { - "address": "0x004626a008b1acdc4c74ab51644093b155e59a23", - "symbol": "STEUR", - "decimals": 18, - "name": "Staked EURA", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0x004626a008b1acdc4c74ab51644093b155e59a23.png", - "aggregators": ["TraderJoe", "LiFi", "Socket", "Rubic", "Rango"], - "occurrences": 5 - }, - "0xc1eb7689147c81ac840d4ff0d298489fc7986d52": { - "address": "0xc1eb7689147c81ac840d4ff0d298489fc7986d52", - "symbol": "XVS", - "decimals": 18, - "name": "Venus", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0xc1eb7689147c81ac840d4ff0d298489fc7986d52.png", - "aggregators": ["CoinGecko", "LiFi", "Socket", "Rubic", "Rango"], - "occurrences": 5 - }, - "0xbcd4d5ac29e06e4973a1ddcd782cd035d04bc0b7": { - "address": "0xbcd4d5ac29e06e4973a1ddcd782cd035d04bc0b7", - "symbol": "QKNTL", - "decimals": 18, - "name": "Quick Intel", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0xbcd4d5ac29e06e4973a1ddcd782cd035d04bc0b7.png", - "aggregators": [ - "CoinGecko", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x999faf0af2ff109938eefe6a7bf91ca56f0d07e1": { - "address": "0x999faf0af2ff109938eefe6a7bf91ca56f0d07e1", - "symbol": "LDY", - "decimals": 18, - "name": "Ledgity Token", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0x999faf0af2ff109938eefe6a7bf91ca56f0d07e1.png", - "aggregators": ["CoinGecko", "LiFi", "Socket", "Rubic", "Rango"], - "occurrences": 5 - }, - "0x42069d11a2cc72388a2e06210921e839cfbd3280": { - "address": "0x42069d11a2cc72388a2e06210921e839cfbd3280", - "symbol": "GNOME", - "decimals": 18, - "name": "GnomeLand", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0x42069d11a2cc72388a2e06210921e839cfbd3280.png", - "aggregators": [ - "CoinGecko", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x94025780a1ab58868d9b2dbbb775f44b32e8e6e5": { - "address": "0x94025780a1ab58868d9b2dbbb775f44b32e8e6e5", - "symbol": "BETS", - "decimals": 18, - "name": "BetSwirl", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0x94025780a1ab58868d9b2dbbb775f44b32e8e6e5.png", - "aggregators": [ - "CoinGecko", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x25d887ce7a35172c62febfd67a1856f20faebb00": { - "address": "0x25d887ce7a35172c62febfd67a1856f20faebb00", - "symbol": "PEPE", - "decimals": 18, - "name": "Pepe", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0x25d887ce7a35172c62febfd67a1856f20faebb00.png", - "aggregators": [ - "TraderJoe", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x51a80238b5738725128d3a3e06ab41c1d4c05c74": { - "address": "0x51a80238b5738725128d3a3e06ab41c1d4c05c74", - "symbol": "USH", - "decimals": 18, - "name": "unshETHing_Token", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0x51a80238b5738725128d3a3e06ab41c1d4c05c74.png", - "aggregators": [ - "TraderJoe", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0xb64e280e9d1b5dbec4accedb2257a87b400db149": { - "address": "0xb64e280e9d1b5dbec4accedb2257a87b400db149", - "symbol": "LVL", - "decimals": 18, - "name": "Level", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0xb64e280e9d1b5dbec4accedb2257a87b400db149.png", - "aggregators": [ - "TraderJoe", - "LiFi", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0xaf20f5f19698f1d19351028cd7103b63d30de7d7": { - "address": "0xaf20f5f19698f1d19351028cd7103b63d30de7d7", - "symbol": "WAGMI", - "decimals": 18, - "name": "Wagmi", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0xaf20f5f19698f1d19351028cd7103b63d30de7d7.png", - "aggregators": [ - "CoinGecko", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x2bcc6d6cdbbdc0a4071e48bb3b969b06b3330c07": { - "address": "0x2bcc6d6cdbbdc0a4071e48bb3b969b06b3330c07", - "symbol": "SOL", - "decimals": 9, - "name": "Wrapped SOL", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0x2bcc6d6cdbbdc0a4071e48bb3b969b06b3330c07.png", - "aggregators": ["TraderJoe", "LiFi", "Rubic", "Squid", "Rango"], - "occurrences": 5 - }, - "0x00cbcf7b3d37844e44b888bc747bdd75fcf4e555": { - "address": "0x00cbcf7b3d37844e44b888bc747bdd75fcf4e555", - "symbol": "XPET", - "decimals": 18, - "name": "xPet.tech", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0x00cbcf7b3d37844e44b888bc747bdd75fcf4e555.png", - "aggregators": [ - "TraderJoe", - "LiFi", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x8929e9dbd2785e3ba16175e596cdd61520fee0d1": { - "address": "0x8929e9dbd2785e3ba16175e596cdd61520fee0d1", - "symbol": "ALTD", - "decimals": 18, - "name": "Altitude", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0x8929e9dbd2785e3ba16175e596cdd61520fee0d1.png", - "aggregators": [ - "TraderJoe", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0xa684cd057951541187f288294a1e1c2646aa2d24": { - "address": "0xa684cd057951541187f288294a1e1c2646aa2d24", - "symbol": "VSTA", - "decimals": 18, - "name": "Vesta Finance", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0xa684cd057951541187f288294a1e1c2646aa2d24.png", - "aggregators": [ - "TraderJoe", - "LiFi", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0xdce765f021410b3266aa0053c93cb4535f1e12e0": { - "address": "0xdce765f021410b3266aa0053c93cb4535f1e12e0", - "symbol": "PEUSD", - "decimals": 18, - "name": "peg-eUSD", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0xdce765f021410b3266aa0053c93cb4535f1e12e0.png", - "aggregators": [ - "TraderJoe", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0xe1d3495717f9534db67a6a8d4940dd17435b6a9e": { - "address": "0xe1d3495717f9534db67a6a8d4940dd17435b6a9e", - "symbol": "LOCUS", - "decimals": 18, - "name": "Locus Finance", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0xe1d3495717f9534db67a6a8d4940dd17435b6a9e.png", - "aggregators": [ - "TraderJoe", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0xf236ea74b515ef96a9898f5a4ed4aa591f253ce1": { - "address": "0xf236ea74b515ef96a9898f5a4ed4aa591f253ce1", - "symbol": "PLSDPX", - "decimals": 18, - "name": "Plutus DPX", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0xf236ea74b515ef96a9898f5a4ed4aa591f253ce1.png", - "aggregators": ["TraderJoe", "LiFi", "Rubic", "Rango", "SushiSwap"], - "occurrences": 5 - }, - "0x429fed88f10285e61b12bdf00848315fbdfcc341": { - "address": "0x429fed88f10285e61b12bdf00848315fbdfcc341", - "symbol": "TGT", - "decimals": 18, - "name": "THORWallet DEX", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0x429fed88f10285e61b12bdf00848315fbdfcc341.png", - "aggregators": ["LiFi", "Socket", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 5 - }, - "0x955b9fe60a5b5093df9dc4b1b18ec8e934e77162": { - "address": "0x955b9fe60a5b5093df9dc4b1b18ec8e934e77162", - "symbol": "SWPR", - "decimals": 18, - "name": "Swapr", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0x955b9fe60a5b5093df9dc4b1b18ec8e934e77162.png", - "aggregators": ["LiFi", "Socket", "Rubic", "Rango", "SushiSwap"], - "occurrences": 5 - }, - "0x180f7cf38805d1be95c7632f653e26b0838e2969": { - "address": "0x180f7cf38805d1be95c7632f653e26b0838e2969", - "symbol": "XDEFI", - "decimals": 18, - "name": "XDEFI", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0x180f7cf38805d1be95c7632f653e26b0838e2969.png", - "aggregators": ["LiFi", "Rubic", "Squid", "Rango", "Sonarwatch"], - "occurrences": 5 - }, - "0x816e21c33fa5f8440ebcdf6e01d39314541bea72": { - "address": "0x816e21c33fa5f8440ebcdf6e01d39314541bea72", - "symbol": "LQDR", - "decimals": 18, - "name": "LiquidDriver", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0x816e21c33fa5f8440ebcdf6e01d39314541bea72.png", - "aggregators": ["LiFi", "Rubic", "Squid", "Rango", "Sonarwatch"], - "occurrences": 5 - }, - "0x6f67043201c903bbcbc129750cb3b328dd56a0a5": { - "address": "0x6f67043201c903bbcbc129750cb3b328dd56a0a5", - "symbol": "BAC", - "decimals": 18, - "name": "BAC", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0x6f67043201c903bbcbc129750cb3b328dd56a0a5.png", - "aggregators": ["ArbitrumWhitelist", "LiFi", "Socket", "Rango"], - "occurrences": 4 - }, - "0xa5ec9d64b64b8b9e94feaa7538c084b38117e7ba": { - "address": "0xa5ec9d64b64b8b9e94feaa7538c084b38117e7ba", - "symbol": "BLANK", - "decimals": 18, - "name": "GoBlank Token", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0xa5ec9d64b64b8b9e94feaa7538c084b38117e7ba.png", - "aggregators": ["ArbitrumWhitelist", "LiFi", "Socket", "Rango"], - "occurrences": 4 - }, - "0xae6e3540e97b0b9ea8797b157b510e133afb6282": { - "address": "0xae6e3540e97b0b9ea8797b157b510e133afb6282", - "symbol": "DEGEN", - "decimals": 18, - "name": "DEGEN Index", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0xae6e3540e97b0b9ea8797b157b510e133afb6282.png", - "aggregators": ["ArbitrumWhitelist", "Socket", "Rubic", "Rango"], - "occurrences": 4 - }, - "0x1d54aa7e322e02a0453c0f2fa21505ce7f2e9e93": { - "address": "0x1d54aa7e322e02a0453c0f2fa21505ce7f2e9e93", - "symbol": "DFYN", - "decimals": 18, - "name": "DFYN Token", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0x1d54aa7e322e02a0453c0f2fa21505ce7f2e9e93.png", - "aggregators": ["ArbitrumWhitelist", "LiFi", "Socket", "Rango"], - "occurrences": 4 - }, - "0x3cd1833ce959e087d0ef0cb45ed06bffe60f23ba": { - "address": "0x3cd1833ce959e087d0ef0cb45ed06bffe60f23ba", - "symbol": "LAND", - "decimals": 18, - "name": "LAND", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0x3cd1833ce959e087d0ef0cb45ed06bffe60f23ba.png", - "aggregators": ["ArbitrumWhitelist", "LiFi", "Rubic", "Rango"], - "occurrences": 4 - }, - "0x6e6a3d8f1affac703b1aef1f43b8d2321be40043": { - "address": "0x6e6a3d8f1affac703b1aef1f43b8d2321be40043", - "symbol": "OHM", - "decimals": 9, - "name": "Olympus", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0x6e6a3d8f1affac703b1aef1f43b8d2321be40043.png", - "aggregators": ["ArbitrumWhitelist", "LiFi", "Socket", "Rango"], - "occurrences": 4 - }, - "0x5298060a95205be6dd4abc21910a4bb23d6dcd8b": { - "address": "0x5298060a95205be6dd4abc21910a4bb23d6dcd8b", - "symbol": "ROUTE", - "decimals": 18, - "name": "Route", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0x5298060a95205be6dd4abc21910a4bb23d6dcd8b.png", - "aggregators": ["ArbitrumWhitelist", "LiFi", "Socket", "Rango"], - "occurrences": 4 - }, - "0x552e4e96a0ce6d36d161b63984848c8dac471ea2": { - "address": "0x552e4e96a0ce6d36d161b63984848c8dac471ea2", - "symbol": "SAKE", - "decimals": 18, - "name": "SakeToken", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0x552e4e96a0ce6d36d161b63984848c8dac471ea2.png", - "aggregators": ["ArbitrumWhitelist", "LiFi", "Socket", "Rango"], - "occurrences": 4 - }, - "0x2ad62674a64e698c24831faf824973c360430140": { - "address": "0x2ad62674a64e698c24831faf824973c360430140", - "symbol": "UBT", - "decimals": 8, - "name": "UBT", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0x2ad62674a64e698c24831faf824973c360430140.png", - "aggregators": ["ArbitrumWhitelist", "LiFi", "Socket", "Rango"], - "occurrences": 4 - }, - "0x9ab3fd50fcae73a1aeda959468fd0d662c881b42": { - "address": "0x9ab3fd50fcae73a1aeda959468fd0d662c881b42", - "symbol": "IBBTC", - "decimals": 18, - "name": "Interest-Bearing Bitcoin", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0x9ab3fd50fcae73a1aeda959468fd0d662c881b42.png", - "aggregators": ["ArbitrumWhitelist", "LiFi", "Socket", "Rango"], - "occurrences": 4 - }, - "0x30a538effd91acefb1b12ce9bc0074ed18c9dfc9": { - "address": "0x30a538effd91acefb1b12ce9bc0074ed18c9dfc9", - "symbol": "T", - "decimals": 9, - "name": "Talos", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0x30a538effd91acefb1b12ce9bc0074ed18c9dfc9.png", - "aggregators": ["CoinGecko", "Rubic", "Squid", "Rango"], - "occurrences": 4 - }, - "0xb23bb8c2c6cb9169eeac8f2bd42fcf333a1a8c55": { - "address": "0xb23bb8c2c6cb9169eeac8f2bd42fcf333a1a8c55", - "symbol": "NOX", - "decimals": 18, - "name": "Noxcat", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0xb23bb8c2c6cb9169eeac8f2bd42fcf333a1a8c55.png", - "aggregators": ["CoinGecko", "LiFi", "Rubic", "Rango"], - "occurrences": 4 - }, - "0x6dd963c510c2d2f09d5eddb48ede45fed063eb36": { - "address": "0x6dd963c510c2d2f09d5eddb48ede45fed063eb36", - "symbol": "FCTR", - "decimals": 18, - "name": "FactorDAO", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0x6dd963c510c2d2f09d5eddb48ede45fed063eb36.png", - "aggregators": ["TraderJoe", "Rubic", "Squid", "Sonarwatch"], - "occurrences": 4 - }, - "0x4ecf61a6c2fab8a047ceb3b3b263b401763e9d49": { - "address": "0x4ecf61a6c2fab8a047ceb3b3b263b401763e9d49", - "symbol": "USND", - "decimals": 18, - "name": "USND", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0x4ecf61a6c2fab8a047ceb3b3b263b401763e9d49.png", - "aggregators": ["CoinGecko", "Rubic", "Squid", "Rango"], - "occurrences": 4 - }, - "0x374c5fb7979d5fdbaad2d95409e235e5cbdfd43c": { - "address": "0x374c5fb7979d5fdbaad2d95409e235e5cbdfd43c", - "symbol": "MLK", - "decimals": 8, - "name": "MiL.k", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0x374c5fb7979d5fdbaad2d95409e235e5cbdfd43c.png", - "aggregators": ["TraderJoe", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0xb37194e8b99020ae0b8b6861d4217a9f016706a4": { - "address": "0xb37194e8b99020ae0b8b6861d4217a9f016706a4", - "symbol": "HYB", - "decimals": 18, - "name": "Hybrid", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0xb37194e8b99020ae0b8b6861d4217a9f016706a4.png", - "aggregators": ["CoinGecko", "Rubic", "Squid", "Rango"], - "occurrences": 4 - }, - "0xc7603786470f04d33e35f9e9b56bd0ca8803fb95": { - "address": "0xc7603786470f04d33e35f9e9b56bd0ca8803fb95", - "symbol": "LITKEY", - "decimals": 18, - "name": "LITKEY", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0xc7603786470f04d33e35f9e9b56bd0ca8803fb95.png", - "aggregators": ["CoinGecko", "LiFi", "Rubic", "Rango"], - "occurrences": 4 - }, - "0x441fcb23dfe8289cf572126fedcf450974adc891": { - "address": "0x441fcb23dfe8289cf572126fedcf450974adc891", - "symbol": "RBTC", - "decimals": 18, - "name": "RBTC", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0x441fcb23dfe8289cf572126fedcf450974adc891.png", - "aggregators": ["CoinGecko", "Socket", "Rubic", "Rango"], - "occurrences": 4 - }, - "0x4772d2e014f9fc3a820c444e3313968e9a5c8121": { - "address": "0x4772d2e014f9fc3a820c444e3313968e9a5c8121", - "symbol": "YUSD", - "decimals": 18, - "name": "YieldFi yToken", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0x4772d2e014f9fc3a820c444e3313968e9a5c8121.png", - "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0x66cfbd79257dc5217903a36293120282548e2254": { - "address": "0x66cfbd79257dc5217903a36293120282548e2254", - "symbol": "WSTUSR", - "decimals": 18, - "name": "Resolv wstUSR", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0x66cfbd79257dc5217903a36293120282548e2254.png", - "aggregators": ["CoinGecko", "Socket", "Rubic", "Rango"], - "occurrences": 4 - }, - "0xbc33b4d48f76d17a1800afcb730e8a6aaada7fe5": { - "address": "0xbc33b4d48f76d17a1800afcb730e8a6aaada7fe5", - "symbol": "VDOT", - "decimals": 18, - "name": "Voucher DOT", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0xbc33b4d48f76d17a1800afcb730e8a6aaada7fe5.png", - "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0x0f13fc8a93ab8edc9fde0a1e19aac693161599a5": { - "address": "0x0f13fc8a93ab8edc9fde0a1e19aac693161599a5", - "symbol": "SCAI", - "decimals": 18, - "name": "SecureChain AI", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0x0f13fc8a93ab8edc9fde0a1e19aac693161599a5.png", - "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0x440017a1b021006d556d7fc06a54c32e42eb745b": { - "address": "0x440017a1b021006d556d7fc06a54c32e42eb745b", - "symbol": "@G", - "decimals": 18, - "name": "Graphite Network", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0x440017a1b021006d556d7fc06a54c32e42eb745b.png", - "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0xba0dda8762c24da9487f5fa026a9b64b695a07ea": { - "address": "0xba0dda8762c24da9487f5fa026a9b64b695a07ea", - "symbol": "OX", - "decimals": 18, - "name": "OX Coin", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0xba0dda8762c24da9487f5fa026a9b64b695a07ea.png", - "aggregators": ["CoinGecko", "Socket", "Rubic", "Rango"], - "occurrences": 4 - }, - "0x88a269df8fe7f53e590c561954c52fccc8ec0cfb": { - "address": "0x88a269df8fe7f53e590c561954c52fccc8ec0cfb", - "symbol": "NST", - "decimals": 18, - "name": "Ninja Squad Token", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0x88a269df8fe7f53e590c561954c52fccc8ec0cfb.png", - "aggregators": ["CoinGecko", "Socket", "Rubic", "Rango"], - "occurrences": 4 - }, - "0xe5e851b01dd3eda24fde709a407db44555b6d1e0": { - "address": "0xe5e851b01dd3eda24fde709a407db44555b6d1e0", - "symbol": "RIF", - "decimals": 18, - "name": "RIF", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0xe5e851b01dd3eda24fde709a407db44555b6d1e0.png", - "aggregators": ["CoinGecko", "Socket", "Rubic", "Rango"], - "occurrences": 4 - }, - "0xff7f8f301f7a706e3cfd3d2275f5dc0b9ee8009b": { - "address": "0xff7f8f301f7a706e3cfd3d2275f5dc0b9ee8009b", - "symbol": "FOLKS", - "decimals": 6, - "name": "FOLKS", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0xff7f8f301f7a706e3cfd3d2275f5dc0b9ee8009b.png", - "aggregators": ["CoinGecko", "LiFi", "Rubic", "Rango"], - "occurrences": 4 - }, - "0xe2b1dc2d4a3b4e59fdf0c47b71a7a86391a8b35a": { - "address": "0xe2b1dc2d4a3b4e59fdf0c47b71a7a86391a8b35a", - "symbol": "RWA", - "decimals": 18, - "name": "RWA", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0xe2b1dc2d4a3b4e59fdf0c47b71a7a86391a8b35a.png", - "aggregators": ["CoinGecko", "Socket", "Rubic", "Rango"], - "occurrences": 4 - }, - "0x64445f0aecc51e94ad52d8ac56b7190e764e561a": { - "address": "0x64445f0aecc51e94ad52d8ac56b7190e764e561a", - "symbol": "FXS", - "decimals": 18, - "name": "FXS", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0x64445f0aecc51e94ad52d8ac56b7190e764e561a.png", - "aggregators": ["CoinGecko", "Socket", "Rubic", "Rango"], - "occurrences": 4 - }, - "0x00000000efe302beaa2b3e6e1b18d08d69a9012a": { - "address": "0x00000000efe302beaa2b3e6e1b18d08d69a9012a", - "symbol": "AUSD", - "decimals": 6, - "name": "AUSD", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0x00000000efe302beaa2b3e6e1b18d08d69a9012a.png", - "aggregators": ["CoinGecko", "LiFi", "Rubic", "Rango"], - "occurrences": 4 - }, - "0xb4444468e444f89e1c2cac2f1d3ee7e336cbd1f5": { - "address": "0xb4444468e444f89e1c2cac2f1d3ee7e336cbd1f5", - "symbol": "RZR", - "decimals": 18, - "name": "RZR", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0xb4444468e444f89e1c2cac2f1d3ee7e336cbd1f5.png", - "aggregators": ["CoinGecko", "Socket", "Rubic", "Rango"], - "occurrences": 4 - }, - "0x41ca7586cc1311807b4605fbb748a3b8862b42b5": { - "address": "0x41ca7586cc1311807b4605fbb748a3b8862b42b5", - "symbol": "SYRUPUSDC", - "decimals": 6, - "name": "Syrup USDC", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0x41ca7586cc1311807b4605fbb748a3b8862b42b5.png", - "aggregators": ["CoinGecko", "LiFi", "Rubic", "Rango"], - "occurrences": 4 - }, - "0x54b334d68cf5382fee7fbbe496fcf1e76d9ba000": { - "address": "0x54b334d68cf5382fee7fbbe496fcf1e76d9ba000", - "symbol": "BOSON", - "decimals": 18, - "name": "Boson", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0x54b334d68cf5382fee7fbbe496fcf1e76d9ba000.png", - "aggregators": ["CoinGecko", "LiFi", "Rubic", "Rango"], - "occurrences": 4 - }, - "0x35e5db674d8e93a03d814fa0ada70731efe8a4b9": { - "address": "0x35e5db674d8e93a03d814fa0ada70731efe8a4b9", - "symbol": "RLP", - "decimals": 18, - "name": "Resolv Liquidity Provider Token", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0x35e5db674d8e93a03d814fa0ada70731efe8a4b9.png", - "aggregators": ["CoinGecko", "Socket", "Rubic", "Rango"], - "occurrences": 4 - }, - "0x527e8d368298dea5a53be257e5300f4dbafb7a97": { - "address": "0x527e8d368298dea5a53be257e5300f4dbafb7a97", - "symbol": "LION", - "decimals": 18, - "name": "Loaded Lions", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0x527e8d368298dea5a53be257e5300f4dbafb7a97.png", - "aggregators": ["CoinGecko", "Socket", "Rubic", "Rango"], - "occurrences": 4 - }, - "0x40bd670a58238e6e230c430bbb5ce6ec0d40df48": { - "address": "0x40bd670a58238e6e230c430bbb5ce6ec0d40df48", - "symbol": "MORPHO", - "decimals": 18, - "name": "MORPHO", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0x40bd670a58238e6e230c430bbb5ce6ec0d40df48.png", - "aggregators": ["CoinGecko", "Socket", "Rubic", "Rango"], - "occurrences": 4 - }, - "0x2492d0006411af6c8bbb1c8afc1b0197350a79e9": { - "address": "0x2492d0006411af6c8bbb1c8afc1b0197350a79e9", - "symbol": "USR", - "decimals": 18, - "name": "USR", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0x2492d0006411af6c8bbb1c8afc1b0197350a79e9.png", - "aggregators": ["CoinGecko", "Socket", "Rubic", "Rango"], - "occurrences": 4 - }, - "0x000000000026839b3f4181f2cf69336af6153b99": { - "address": "0x000000000026839b3f4181f2cf69336af6153b99", - "symbol": "GG", - "decimals": 18, - "name": "Reboot", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0x000000000026839b3f4181f2cf69336af6153b99.png", - "aggregators": ["TraderJoe", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0x15a808ed3846d25e88ae868de79f1bcb1ac382b5": { - "address": "0x15a808ed3846d25e88ae868de79f1bcb1ac382b5", - "symbol": "MVD", - "decimals": 9, - "name": "Metavault DAO", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0x15a808ed3846d25e88ae868de79f1bcb1ac382b5.png", - "aggregators": ["TraderJoe", "LiFi", "Rubic", "Rango"], - "occurrences": 4 - }, - "0x5429706887fcb58a595677b73e9b0441c25d993d": { - "address": "0x5429706887fcb58a595677b73e9b0441c25d993d", - "symbol": "UNIDX", - "decimals": 18, - "name": "Unidex", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0x5429706887fcb58a595677b73e9b0441c25d993d.png", - "aggregators": ["TraderJoe", "Socket", "Rubic", "Rango"], - "occurrences": 4 - }, - "0x6609be1547166d1c4605f3a243fdcff467e600c3": { - "address": "0x6609be1547166d1c4605f3a243fdcff467e600c3", - "symbol": "NEU", - "decimals": 18, - "name": "Neutra Finance", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0x6609be1547166d1c4605f3a243fdcff467e600c3.png", - "aggregators": ["TraderJoe", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0x6daf586b7370b14163171544fca24abcc0862ac5": { - "address": "0x6daf586b7370b14163171544fca24abcc0862ac5", - "symbol": "BPET", - "decimals": 18, - "name": "xPet.tech BPET", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0x6daf586b7370b14163171544fca24abcc0862ac5.png", - "aggregators": ["TraderJoe", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0xe7f6c3c1f0018e4c08acc52965e5cbff99e34a44": { - "address": "0xe7f6c3c1f0018e4c08acc52965e5cbff99e34a44", - "symbol": "PLSJONES", - "decimals": 18, - "name": "Plutus JONES", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0xe7f6c3c1f0018e4c08acc52965e5cbff99e34a44.png", - "aggregators": ["TraderJoe", "Rubic", "Rango", "SushiSwap"], - "occurrences": 4 - }, - "0xf19547f9ed24aa66b03c3a552d181ae334fbb8db": { - "address": "0xf19547f9ed24aa66b03c3a552d181ae334fbb8db", - "symbol": "LODE", - "decimals": 18, - "name": "Lodestar", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0xf19547f9ed24aa66b03c3a552d181ae334fbb8db.png", - "aggregators": ["TraderJoe", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0xeeeeeb57642040be42185f49c52f7e9b38f8eeee": { - "address": "0xeeeeeb57642040be42185f49c52f7e9b38f8eeee", - "symbol": "ELK", - "decimals": 18, - "name": "Elk", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0xeeeeeb57642040be42185f49c52f7e9b38f8eeee.png", - "aggregators": ["1inch", "LiFi", "Socket", "Rubic"], - "occurrences": 4 - }, - "0xfb9fed8cb962548a11fe7f6f282949061395c7f5": { - "address": "0xfb9fed8cb962548a11fe7f6f282949061395c7f5", - "symbol": "NUON", - "decimals": 18, - "name": "NUON", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0xfb9fed8cb962548a11fe7f6f282949061395c7f5.png", - "aggregators": ["LiFi", "Rubic", "Rango", "SushiSwap"], - "occurrences": 4 - }, - "0xf7a0dd3317535ec4f4d29adf9d620b3d8d5d5069": { - "address": "0xf7a0dd3317535ec4f4d29adf9d620b3d8d5d5069", - "symbol": "STERN", - "decimals": 18, - "name": "Staked ERN Vault", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0xf7a0dd3317535ec4f4d29adf9d620b3d8d5d5069.png", - "aggregators": ["LiFi", "Rubic", "Squid", "Rango"], - "occurrences": 4 - }, - "0x1b8d516e2146d7a32aca0fcbf9482db85fd42c3a": { - "address": "0x1b8d516e2146d7a32aca0fcbf9482db85fd42c3a", - "symbol": "ASCN", - "decimals": 18, - "name": "AlphaScan AI", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0x1b8d516e2146d7a32aca0fcbf9482db85fd42c3a.png", - "aggregators": ["Socket", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0x2b1d36f5b61addaf7da7ebbd11b35fd8cfb0de31": { - "address": "0x2b1d36f5b61addaf7da7ebbd11b35fd8cfb0de31", - "symbol": "ITP", - "decimals": 18, - "name": "Interport Token", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0x2b1d36f5b61addaf7da7ebbd11b35fd8cfb0de31.png", - "aggregators": ["Socket", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0x2b41806cbf1ffb3d9e31a9ece6b738bf9d6f645f": { - "address": "0x2b41806cbf1ffb3d9e31a9ece6b738bf9d6f645f", - "symbol": "ENO", - "decimals": 18, - "name": "ENO", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0x2b41806cbf1ffb3d9e31a9ece6b738bf9d6f645f.png", - "aggregators": ["Socket", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0xb41bd4c99da73510d9e081c5fadbe7a27ac1f814": { - "address": "0xb41bd4c99da73510d9e081c5fadbe7a27ac1f814", - "symbol": "IMO", - "decimals": 18, - "name": "Ideamarket", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0xb41bd4c99da73510d9e081c5fadbe7a27ac1f814.png", - "aggregators": ["Socket", "Rubic", "Rango", "SushiSwap"], - "occurrences": 4 - }, - "0x1c986661170c1834db49c3830130d4038eeeb866": { - "address": "0x1c986661170c1834db49c3830130d4038eeeb866", - "symbol": "APTR", - "decimals": 6, - "name": "Aperture Finance", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0x1c986661170c1834db49c3830130d4038eeeb866.png", - "aggregators": ["Socket", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0x2ea0be86990e8dac0d09e4316bb92086f304622d": { - "address": "0x2ea0be86990e8dac0d09e4316bb92086f304622d", - "symbol": "USDS", - "decimals": 18, - "name": "TheStandard USD", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0x2ea0be86990e8dac0d09e4316bb92086f304622d.png", - "aggregators": ["Socket", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0x3816e40c1eb106c8fb7c05f901cfd58c7292d051": { - "address": "0x3816e40c1eb106c8fb7c05f901cfd58c7292d051", - "symbol": "FOR", - "decimals": 18, - "name": "The Force Token", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0x3816e40c1eb106c8fb7c05f901cfd58c7292d051.png", - "aggregators": ["ArbitrumWhitelist", "Socket", "Rango"], - "occurrences": 3 - }, - "0x0ae38f7e10a43b5b2fb064b42a2f4514cba909ef": { - "address": "0x0ae38f7e10a43b5b2fb064b42a2f4514cba909ef", - "symbol": "UNSHETH", - "decimals": 18, - "name": "unshETH Ether", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0x0ae38f7e10a43b5b2fb064b42a2f4514cba909ef.png", - "aggregators": ["TraderJoe", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x7cfadfd5645b50be87d546f42699d863648251ad": { - "address": "0x7cfadfd5645b50be87d546f42699d863648251ad", - "symbol": "STATAARBUSDCN", - "decimals": 6, - "name": "Static Aave Arbitrum USDCn", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0x7cfadfd5645b50be87d546f42699d863648251ad.png", - "aggregators": ["1inch", "LiFi", "Rubic"], - "occurrences": 3 - }, - "0xfb853acea0e76f73f8274b521fe1611c888670cc": { - "address": "0xfb853acea0e76f73f8274b521fe1611c888670cc", - "symbol": "PLX", - "decimals": 18, - "name": "Plexus", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0xfb853acea0e76f73f8274b521fe1611c888670cc.png", - "aggregators": ["Socket", "Rubic", "Rango"], - "occurrences": 3 - }, - "0xf93fc7d6508ae2faf8fc5675e896bc38d6e7212c": { - "address": "0xf93fc7d6508ae2faf8fc5675e896bc38d6e7212c", - "symbol": "YOU", - "decimals": 18, - "name": "Your Omnichain U Protocol Governance Token", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0xf93fc7d6508ae2faf8fc5675e896bc38d6e7212c.png", - "aggregators": ["Socket", "Rubic", "Rango"], - "occurrences": 3 - }, - "0xa586b3b80d7e3e8d439e25fbc16bc5bcee3e2c85": { - "address": "0xa586b3b80d7e3e8d439e25fbc16bc5bcee3e2c85", - "symbol": "CTOK", - "decimals": 18, - "name": "Codyfight", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0xa586b3b80d7e3e8d439e25fbc16bc5bcee3e2c85.png", - "aggregators": ["Rubic", "Rango", "Sonarwatch"], - "occurrences": 3 - }, - "0xa06d505ec28fd9756a200d2b503a66103db98d09": { - "address": "0xa06d505ec28fd9756a200d2b503a66103db98d09", - "symbol": "KEI", - "decimals": 18, - "name": "KEI Finance", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0xa06d505ec28fd9756a200d2b503a66103db98d09.png", - "aggregators": ["Rubic", "Rango", "Sonarwatch"], - "occurrences": 3 - }, - "0x37a645648df29205c6261289983fb04ecd70b4b3": { - "address": "0x37a645648df29205c6261289983fb04ecd70b4b3", - "symbol": "ANIME", - "decimals": 18, - "name": "Animecoin", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0x37a645648df29205c6261289983fb04ecd70b4b3.png", - "aggregators": [ - "CoinGecko", - "1inch", - "LiFi", - "Socket", - "Rubic", - "Squid", - "Rango", - "Sonarwatch" - ], - "occurrences": 8 - }, - "0x3124678d62d2aa1f615b54525310fbfda6dcf7ae": { - "address": "0x3124678d62d2aa1f615b54525310fbfda6dcf7ae", - "symbol": "SNSY", - "decimals": 18, - "name": "Sensay", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0x3124678d62d2aa1f615b54525310fbfda6dcf7ae.png", - "aggregators": [ - "CoinGecko", - "LiFi", - "Socket", - "Rubic", - "Squid", - "Rango", - "Sonarwatch", - "SushiSwap" - ], - "occurrences": 8 - }, - "0xfa5ed56a203466cbbc2430a43c66b9d8723528e7": { - "address": "0xfa5ed56a203466cbbc2430a43c66b9d8723528e7", - "symbol": "AGEUR", - "decimals": 18, - "name": "agEUR", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0xfa5ed56a203466cbbc2430a43c66b9d8723528e7.png", - "aggregators": [ - "TraderJoe", - "1inch", - "LiFi", - "Rubic", - "Rango", - "Sonarwatch", - "SushiSwap" - ], - "occurrences": 7 - }, - "0x23ee2343b892b1bb63503a4fabc840e0e2c6810f": { - "address": "0x23ee2343b892b1bb63503a4fabc840e0e2c6810f", - "symbol": "AXL", - "decimals": 6, - "name": "Axelar", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0x23ee2343b892b1bb63503a4fabc840e0e2c6810f.png", - "aggregators": [ - "TraderJoe", - "LiFi", - "Socket", - "Rubic", - "Squid", - "Rango", - "Sonarwatch" - ], - "occurrences": 7 - }, - "0x1337420ded5adb9980cfc35f8f2b054ea86f8ab1": { - "address": "0x1337420ded5adb9980cfc35f8f2b054ea86f8ab1", - "symbol": "SQD", - "decimals": 18, - "name": "Subsquid", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0x1337420ded5adb9980cfc35f8f2b054ea86f8ab1.png", - "aggregators": [ - "CoinGecko", - "1inch", - "LiFi", - "Socket", - "Rubic", - "Squid", - "Rango" - ], - "occurrences": 7 - }, - "0xb08d8becab1bf76a9ce3d2d5fa946f65ec1d3e83": { - "address": "0xb08d8becab1bf76a9ce3d2d5fa946f65ec1d3e83", - "symbol": "GS", - "decimals": 18, - "name": "GammaSwap", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0xb08d8becab1bf76a9ce3d2d5fa946f65ec1d3e83.png", - "aggregators": [ - "CoinGecko", - "1inch", - "LiFi", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 7 - }, - "0x61a1ff55c5216b636a294a07d77c6f4df10d3b56": { - "address": "0x61a1ff55c5216b636a294a07d77c6f4df10d3b56", - "symbol": "APEX", - "decimals": 18, - "name": "ApeX", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0x61a1ff55c5216b636a294a07d77c6f4df10d3b56.png", - "aggregators": [ - "TraderJoe", - "LiFi", - "Socket", - "Rubic", - "Squid", - "Rango", - "Sonarwatch" - ], - "occurrences": 7 - }, - "0x3f56e0c36d275367b8c502090edf38289b3dea0d": { - "address": "0x3f56e0c36d275367b8c502090edf38289b3dea0d", - "symbol": "MAI", - "decimals": 18, - "name": "Mai Stablecoin", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0x3f56e0c36d275367b8c502090edf38289b3dea0d.png", - "aggregators": [ - "1inch", - "LiFi", - "Socket", - "Rubic", - "Rango", - "Sonarwatch", - "SushiSwap" - ], - "occurrences": 7 - }, - "0x77b7787a09818502305c95d68a2571f090abb135": { - "address": "0x77b7787a09818502305c95d68a2571f090abb135", - "symbol": "DRV", - "decimals": 18, - "name": "Derive", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0x77b7787a09818502305c95d68a2571f090abb135.png", - "aggregators": [ - "CoinGecko", - "LiFi", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 6 - }, - "0x2297aebd383787a160dd0d9f71508148769342e3": { - "address": "0x2297aebd383787a160dd0d9f71508148769342e3", - "symbol": "BTC.B", - "decimals": 8, - "name": "Avalanche Bridged BTC (Arbitrum One)", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0x2297aebd383787a160dd0d9f71508148769342e3.png", - "aggregators": [ - "TraderJoe", - "LiFi", - "Rubic", - "Squid", - "Rango", - "Sonarwatch" - ], - "occurrences": 6 - }, - "0x3106e2e148525b3db36795b04691d444c24972fb": { - "address": "0x3106e2e148525b3db36795b04691d444c24972fb", - "symbol": "WSTLINK", - "decimals": 18, - "name": "Wrapped Staked LINK", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0x3106e2e148525b3db36795b04691d444c24972fb.png", - "aggregators": [ - "TraderJoe", - "LiFi", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 6 - }, - "0x050c24dbf1eec17babe5fc585f06116a259cc77a": { - "address": "0x050c24dbf1eec17babe5fc585f06116a259cc77a", - "symbol": "DLCBTC", - "decimals": 8, - "name": "dlcBTC", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0x050c24dbf1eec17babe5fc585f06116a259cc77a.png", - "aggregators": [ - "TraderJoe", - "1inch", - "LiFi", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 6 - }, - "0xf63b14f5ee5574e3f337b2796bbdf6dcfb4e2cb7": { - "address": "0xf63b14f5ee5574e3f337b2796bbdf6dcfb4e2cb7", - "symbol": "KIP", - "decimals": 18, - "name": "KIP", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0xf63b14f5ee5574e3f337b2796bbdf6dcfb4e2cb7.png", - "aggregators": [ - "CoinGecko", - "Socket", - "Rubic", - "Squid", - "Rango", - "Sonarwatch" - ], - "occurrences": 6 - }, - "0x38f9bf9dce51833ec7f03c9dc218197999999999": { - "address": "0x38f9bf9dce51833ec7f03c9dc218197999999999", - "symbol": "NYA", - "decimals": 18, - "name": "Nya", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0x38f9bf9dce51833ec7f03c9dc218197999999999.png", - "aggregators": [ - "CoinGecko", - "Socket", - "Rubic", - "Squid", - "Rango", - "Sonarwatch" - ], - "occurrences": 6 - }, - "0x57f5e098cad7a3d1eed53991d4d66c45c9af7812": { - "address": "0x57f5e098cad7a3d1eed53991d4d66c45c9af7812", - "symbol": "WUSDM", - "decimals": 18, - "name": "Wrapped USDM", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0x57f5e098cad7a3d1eed53991d4d66c45c9af7812.png", - "aggregators": [ - "CoinGecko", - "LiFi", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 6 - }, - "0x8cf7e3aa6faf6ae180e5ec3f0fb95081c2086ebe": { - "address": "0x8cf7e3aa6faf6ae180e5ec3f0fb95081c2086ebe", - "symbol": "SX", - "decimals": 18, - "name": "SX Network", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0x8cf7e3aa6faf6ae180e5ec3f0fb95081c2086ebe.png", - "aggregators": [ - "CoinGecko", - "LiFi", - "Rubic", - "Rango", - "Sonarwatch", - "SushiSwap" - ], - "occurrences": 6 - }, - "0xf525e73bdeb4ac1b0e741af3ed8a8cbb43ab0756": { - "address": "0xf525e73bdeb4ac1b0e741af3ed8a8cbb43ab0756", - "symbol": "KIBSHI", - "decimals": 18, - "name": "KiboShib", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0xf525e73bdeb4ac1b0e741af3ed8a8cbb43ab0756.png", - "aggregators": [ - "CoinGecko", - "Socket", - "Rubic", - "Squid", - "Rango", - "Sonarwatch" - ], - "occurrences": 6 - }, - "0x330bd769382cfc6d50175903434ccc8d206dcae5": { - "address": "0x330bd769382cfc6d50175903434ccc8d206dcae5", - "symbol": "PNK", - "decimals": 18, - "name": "Kleros", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0x330bd769382cfc6d50175903434ccc8d206dcae5.png", - "aggregators": [ - "CoinGecko", - "LiFi", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 6 - }, - "0x24404dc041d74cd03cfe28855f555559390c931b": { - "address": "0x24404dc041d74cd03cfe28855f555559390c931b", - "symbol": "MOON", - "decimals": 18, - "name": "r/CryptoCurrency Moons", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0x24404dc041d74cd03cfe28855f555559390c931b.png", - "aggregators": [ - "TraderJoe", - "LiFi", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 6 - }, - "0xa71e2738704e367798baa2755af5a10499634953": { - "address": "0xa71e2738704e367798baa2755af5a10499634953", - "symbol": "AVRK", - "decimals": 18, - "name": "Avarik Saga", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0xa71e2738704e367798baa2755af5a10499634953.png", - "aggregators": [ - "CoinGecko", - "LiFi", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 6 - }, - "0x193f4a4a6ea24102f49b931deeeb931f6e32405d": { - "address": "0x193f4a4a6ea24102f49b931deeeb931f6e32405d", - "symbol": "TLOS", - "decimals": 18, - "name": "Telos", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0x193f4a4a6ea24102f49b931deeeb931f6e32405d.png", - "aggregators": [ - "CoinGecko", - "LiFi", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 6 - }, - "0x02f92800f57bcd74066f5709f1daa1a4302df875": { - "address": "0x02f92800f57bcd74066f5709f1daa1a4302df875", - "symbol": "PEAS", - "decimals": 18, - "name": "Peapods Finance", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0x02f92800f57bcd74066f5709f1daa1a4302df875.png", - "aggregators": [ - "TraderJoe", - "LiFi", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 6 - }, - "0x9f07f8a82cb1af1466252e505b7b7ddee103bc91": { - "address": "0x9f07f8a82cb1af1466252e505b7b7ddee103bc91", - "symbol": "DEGEN", - "decimals": 18, - "name": "Degen", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0x9f07f8a82cb1af1466252e505b7b7ddee103bc91.png", - "aggregators": [ - "CoinGecko", - "LiFi", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 6 - }, - "0x7f4638a58c0615037decc86f1dae60e55fe92874": { - "address": "0x7f4638a58c0615037decc86f1dae60e55fe92874", - "symbol": "GRG", - "decimals": 18, - "name": "RigoBlock", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0x7f4638a58c0615037decc86f1dae60e55fe92874.png", - "aggregators": [ - "CoinGecko", - "LiFi", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 6 - }, - "0x9e523234d36973f9e38642886197d023c88e307e": { - "address": "0x9e523234d36973f9e38642886197d023c88e307e", - "symbol": "RING", - "decimals": 18, - "name": "Darwinia Network", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0x9e523234d36973f9e38642886197d023c88e307e.png", - "aggregators": [ - "TraderJoe", - "LiFi", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 6 - }, - "0x6aa395f06986ea4efe0a4630c7865c1eb08d5e7e": { - "address": "0x6aa395f06986ea4efe0a4630c7865c1eb08d5e7e", - "symbol": "JRT", - "decimals": 18, - "name": "Jarvis Reward", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0x6aa395f06986ea4efe0a4630c7865c1eb08d5e7e.png", - "aggregators": [ - "CoinGecko", - "LiFi", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 6 - }, - "0xb0b195aefa3650a6908f15cdac7d92f8a5791b0b": { - "address": "0xb0b195aefa3650a6908f15cdac7d92f8a5791b0b", - "symbol": "BOB", - "decimals": 18, - "name": "BOB", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0xb0b195aefa3650a6908f15cdac7d92f8a5791b0b.png", - "aggregators": [ - "TraderJoe", - "LiFi", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 6 - }, - "0x3509f19581afedeff07c53592bc0ca84e4855475": { - "address": "0x3509f19581afedeff07c53592bc0ca84e4855475", - "symbol": "XUSD", - "decimals": 18, - "name": "xDollar Stablecoin", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0x3509f19581afedeff07c53592bc0ca84e4855475.png", - "aggregators": [ - "TraderJoe", - "LiFi", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 6 - }, - "0xaeaeed23478c3a4b798e4ed40d8b7f41366ae861": { - "address": "0xaeaeed23478c3a4b798e4ed40d8b7f41366ae861", - "symbol": "ANKR", - "decimals": 18, - "name": "Ankr Network", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0xaeaeed23478c3a4b798e4ed40d8b7f41366ae861.png", - "aggregators": [ - "TraderJoe", - "LiFi", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 6 - }, - "0x9cfb13e6c11054ac9fcb92ba89644f30775436e4": { - "address": "0x9cfb13e6c11054ac9fcb92ba89644f30775436e4", - "symbol": "AXL-WSTETH", - "decimals": 18, - "name": "Bridged Wrapped stETH (Axelar)", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0x9cfb13e6c11054ac9fcb92ba89644f30775436e4.png", - "aggregators": [ - "TraderJoe", - "LiFi", - "Rubic", - "Squid", - "Rango", - "Sonarwatch" - ], - "occurrences": 6 - }, - "0x6f5401c53e2769c858665621d22ddbf53d8d27c5": { - "address": "0x6f5401c53e2769c858665621d22ddbf53d8d27c5", - "symbol": "CNFI", - "decimals": 18, - "name": "Connect Financial", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0x6f5401c53e2769c858665621d22ddbf53d8d27c5.png", - "aggregators": [ - "TraderJoe", - "LiFi", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 6 - }, - "0x079504b86d38119f859c4194765029f692b7b7aa": { - "address": "0x079504b86d38119f859c4194765029f692b7b7aa", - "symbol": "LYRA", - "decimals": 18, - "name": "Lyra Finance", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0x079504b86d38119f859c4194765029f692b7b7aa.png", - "aggregators": [ - "TraderJoe", - "LiFi", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 6 - }, - "0x1622bf67e6e5747b81866fe0b85178a93c7f86e3": { - "address": "0x1622bf67e6e5747b81866fe0b85178a93c7f86e3", - "symbol": "UMAMI", - "decimals": 9, - "name": "Umami", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0x1622bf67e6e5747b81866fe0b85178a93c7f86e3.png", - "aggregators": [ - "TraderJoe", - "LiFi", - "Socket", - "Rubic", - "Rango", - "SushiSwap" - ], - "occurrences": 6 - }, - "0xc9cbf102c73fb77ec14f8b4c8bd88e050a6b2646": { - "address": "0xc9cbf102c73fb77ec14f8b4c8bd88e050a6b2646", - "symbol": "ALPHA", - "decimals": 18, - "name": "AlphaToken", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0xc9cbf102c73fb77ec14f8b4c8bd88e050a6b2646.png", - "aggregators": ["UniswapLabs", "LiFi", "Socket", "Rubic", "Rango"], - "occurrences": 5 - }, - "0x74885b4d524d497261259b38900f54e6dbad2210": { - "address": "0x74885b4d524d497261259b38900f54e6dbad2210", - "symbol": "APE", - "decimals": 18, - "name": "ApeCoin", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0x74885b4d524d497261259b38900f54e6dbad2210.png", - "aggregators": ["UniswapLabs", "LiFi", "Socket", "Rubic", "Rango"], - "occurrences": 5 - }, - "0x84f5c2cfba754e76dd5ae4fb369cfc920425e12b": { - "address": "0x84f5c2cfba754e76dd5ae4fb369cfc920425e12b", - "symbol": "CTX", - "decimals": 18, - "name": "Cryptex", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0x84f5c2cfba754e76dd5ae4fb369cfc920425e12b.png", - "aggregators": ["TraderJoe", "LiFi", "Socket", "Rubic", "Rango"], - "occurrences": 5 - }, - "0x589d35656641d6ab57a545f08cf473ecd9b6d5f7": { - "address": "0x589d35656641d6ab57a545f08cf473ecd9b6d5f7", - "symbol": "GYEN", - "decimals": 6, - "name": "GMO JPY", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0x589d35656641d6ab57a545f08cf473ecd9b6d5f7.png", - "aggregators": ["TraderJoe", "LiFi", "Socket", "Rubic", "Rango"], - "occurrences": 5 - }, - "0x561877b6b3dd7651313794e5f2894b2f18be0766": { - "address": "0x561877b6b3dd7651313794e5f2894b2f18be0766", - "symbol": "MATIC", - "decimals": 18, - "name": "Polygon", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0x561877b6b3dd7651313794e5f2894b2f18be0766.png", - "aggregators": ["UniswapLabs", "LiFi", "Socket", "Rubic", "Rango"], - "occurrences": 5 - }, - "0x88266f9eb705f5282a2507a9c418821a2ac9f8bd": { - "address": "0x88266f9eb705f5282a2507a9c418821a2ac9f8bd", - "symbol": "NCASH", - "decimals": 18, - "name": "Nutcash", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0x88266f9eb705f5282a2507a9c418821a2ac9f8bd.png", - "aggregators": [ - "CoinGecko", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0xafe8107123eefd62469474dec9680860b890e5b6": { - "address": "0xafe8107123eefd62469474dec9680860b890e5b6", - "symbol": "OIL", - "decimals": 18, - "name": "Oil Token", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0xafe8107123eefd62469474dec9680860b890e5b6.png", - "aggregators": [ - "CoinGecko", - "Rubic", - "Squid", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x9e64d3b9e8ec387a9a58ced80b71ed815f8d82b5": { - "address": "0x9e64d3b9e8ec387a9a58ced80b71ed815f8d82b5", - "symbol": "SMOL", - "decimals": 18, - "name": "Smolcoin", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0x9e64d3b9e8ec387a9a58ced80b71ed815f8d82b5.png", - "aggregators": [ - "TraderJoe", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x0caadd427a6feb5b5fc1137eb05aa7ddd9c08ce9": { - "address": "0x0caadd427a6feb5b5fc1137eb05aa7ddd9c08ce9", - "symbol": "VEE", - "decimals": 18, - "name": "VEE", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0x0caadd427a6feb5b5fc1137eb05aa7ddd9c08ce9.png", - "aggregators": [ - "CoinGecko", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0xb4bbfe92702730ef7f1d28e4b9e42381182f48a5": { - "address": "0xb4bbfe92702730ef7f1d28e4b9e42381182f48a5", - "symbol": "HOLD", - "decimals": 18, - "name": "Hold VIP", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0xb4bbfe92702730ef7f1d28e4b9e42381182f48a5.png", - "aggregators": [ - "TraderJoe", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0xd4939d69b31fbe981ed6904a3af43ee1dc777aab": { - "address": "0xd4939d69b31fbe981ed6904a3af43ee1dc777aab", - "symbol": "ETH+", - "decimals": 18, - "name": "Ethereum+ (Overnight)", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0xd4939d69b31fbe981ed6904a3af43ee1dc777aab.png", - "aggregators": [ - "CoinGecko", - "LiFi", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x45d9831d8751b2325f3dbf48db748723726e1c8c": { - "address": "0x45d9831d8751b2325f3dbf48db748723726e1c8c", - "symbol": "EVA", - "decimals": 18, - "name": "EverValue Coin", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0x45d9831d8751b2325f3dbf48db748723726e1c8c.png", - "aggregators": [ - "CoinGecko", - "Rubic", - "Squid", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x872bad41cfc8ba731f811fea8b2d0b9fd6369585": { - "address": "0x872bad41cfc8ba731f811fea8b2d0b9fd6369585", - "symbol": "GFLY", - "decimals": 18, - "name": "BattleFly", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0x872bad41cfc8ba731f811fea8b2d0b9fd6369585.png", - "aggregators": [ - "TraderJoe", - "LiFi", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0xdfb8be6f8c87f74295a87de951974362cedcfa30": { - "address": "0xdfb8be6f8c87f74295a87de951974362cedcfa30", - "symbol": "EMC", - "decimals": 18, - "name": "EdgeMatrix Chain", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0xdfb8be6f8c87f74295a87de951974362cedcfa30.png", - "aggregators": [ - "Metamask", - "Rubic", - "Rango", - "Sonarwatch", - "SushiSwap" - ], - "occurrences": 5 - }, - "0x7f90122bf0700f9e7e1f688fe926940e8839f353": { - "address": "0x7f90122bf0700f9e7e1f688fe926940e8839f353", - "symbol": "2CRV", - "decimals": 18, - "name": "Curve.fi USDC/USDT", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0x7f90122bf0700f9e7e1f688fe926940e8839f353.png", - "aggregators": [ - "TraderJoe", - "LiFi", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0xb5b5b428e4de365f809ced8271d202449e5c2f72": { - "address": "0xb5b5b428e4de365f809ced8271d202449e5c2f72", - "symbol": "BRUH", - "decimals": 6, - "name": "BRUH", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0xb5b5b428e4de365f809ced8271d202449e5c2f72.png", - "aggregators": [ - "TraderJoe", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x1d987200df3b744cfa9c14f713f5334cb4bc4d5d": { - "address": "0x1d987200df3b744cfa9c14f713f5334cb4bc4d5d", - "symbol": "REKT", - "decimals": 6, - "name": "REKT", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0x1d987200df3b744cfa9c14f713f5334cb4bc4d5d.png", - "aggregators": [ - "TraderJoe", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0xca4e51f6ad4afd9d1068e5899de9dd7d73f3463d": { - "address": "0xca4e51f6ad4afd9d1068e5899de9dd7d73f3463d", - "symbol": "AARK", - "decimals": 18, - "name": "Aark Digital", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0xca4e51f6ad4afd9d1068e5899de9dd7d73f3463d.png", - "aggregators": [ - "TraderJoe", - "LiFi", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0xc760f9782f8cea5b06d862574464729537159966": { - "address": "0xc760f9782f8cea5b06d862574464729537159966", - "symbol": "TANGO", - "decimals": 18, - "name": "Contango", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0xc760f9782f8cea5b06d862574464729537159966.png", - "aggregators": [ - "CoinGecko", - "LiFi", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x54bdbf3ce36f451ec61493236b8e6213ac87c0f6": { - "address": "0x54bdbf3ce36f451ec61493236b8e6213ac87c0f6", - "symbol": "RDP", - "decimals": 18, - "name": "Radpie", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0x54bdbf3ce36f451ec61493236b8e6213ac87c0f6.png", - "aggregators": [ - "TraderJoe", - "LiFi", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x7e7a7c916c19a45769f6bdaf91087f93c6c12f78": { - "address": "0x7e7a7c916c19a45769f6bdaf91087f93c6c12f78", - "symbol": "EGP", - "decimals": 18, - "name": "Eigenpie", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0x7e7a7c916c19a45769f6bdaf91087f93c6c12f78.png", - "aggregators": [ - "CoinGecko", - "LiFi", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0xb59c8912c83157a955f9d715e556257f432c35d7": { - "address": "0xb59c8912c83157a955f9d715e556257f432c35d7", - "symbol": "TRUF", - "decimals": 15, - "name": "Truflation", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0xb59c8912c83157a955f9d715e556257f432c35d7.png", - "aggregators": [ - "CoinGecko", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x47c337bd5b9344a6f3d6f58c474d9d8cd419d8ca": { - "address": "0x47c337bd5b9344a6f3d6f58c474d9d8cd419d8ca", - "symbol": "DACKIE", - "decimals": 18, - "name": "DackieSwap", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0x47c337bd5b9344a6f3d6f58c474d9d8cd419d8ca.png", - "aggregators": [ - "CoinGecko", - "Rubic", - "Squid", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x4d22e37eb4d71d1acc5f4889a65936d2a44a2f15": { - "address": "0x4d22e37eb4d71d1acc5f4889a65936d2a44a2f15", - "symbol": "HAT", - "decimals": 18, - "name": "Hat", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0x4d22e37eb4d71d1acc5f4889a65936d2a44a2f15.png", - "aggregators": ["TraderJoe", "LiFi", "Socket", "Rubic", "Rango"], - "occurrences": 5 - }, - "0x3419875b4d3bca7f3fdda2db7a476a79fd31b4fe": { - "address": "0x3419875b4d3bca7f3fdda2db7a476a79fd31b4fe", - "symbol": "DZHV", - "decimals": 18, - "name": "DizzyHavoc", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0x3419875b4d3bca7f3fdda2db7a476a79fd31b4fe.png", - "aggregators": [ - "CoinGecko", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x35e050d3c0ec2d29d269a8ecea763a183bdf9a9d": { - "address": "0x35e050d3c0ec2d29d269a8ecea763a183bdf9a9d", - "symbol": "USDY", - "decimals": 18, - "name": "USDY", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0x35e050d3c0ec2d29d269a8ecea763a183bdf9a9d.png", - "aggregators": ["TraderJoe", "LiFi", "Socket", "Rubic", "Rango"], - "occurrences": 5 - }, - "0x8697841b82c71fcbd9e58c15f6de68cd1c63fd02": { - "address": "0x8697841b82c71fcbd9e58c15f6de68cd1c63fd02", - "symbol": "NUT", - "decimals": 18, - "name": "NutCoin", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0x8697841b82c71fcbd9e58c15f6de68cd1c63fd02.png", - "aggregators": [ - "CoinGecko", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x7ce746b45eabd0c4321538dec1b849c79a9a8476": { - "address": "0x7ce746b45eabd0c4321538dec1b849c79a9a8476", - "symbol": "DSLA", - "decimals": 18, - "name": "DSLA Protocol", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0x7ce746b45eabd0c4321538dec1b849c79a9a8476.png", - "aggregators": [ - "TraderJoe", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0xbad58ed9b5f26a002ea250d7a60dc6729a4a2403": { - "address": "0xbad58ed9b5f26a002ea250d7a60dc6729a4a2403", - "symbol": "PBX", - "decimals": 18, - "name": "Paribus", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0xbad58ed9b5f26a002ea250d7a60dc6729a4a2403.png", - "aggregators": [ - "TraderJoe", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0xd3ac016b1b8c80eeadde4d186a9138c9324e4189": { - "address": "0xd3ac016b1b8c80eeadde4d186a9138c9324e4189", - "symbol": "OK", - "decimals": 18, - "name": "Okcash", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0xd3ac016b1b8c80eeadde4d186a9138c9324e4189.png", - "aggregators": [ - "TraderJoe", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0xe10d4a4255d2d35c9e23e2c4790e073046fbaf5c": { - "address": "0xe10d4a4255d2d35c9e23e2c4790e073046fbaf5c", - "symbol": "LNDX", - "decimals": 6, - "name": "LandX Governance Token", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0xe10d4a4255d2d35c9e23e2c4790e073046fbaf5c.png", - "aggregators": [ - "CoinGecko", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x0cbd6fadcf8096cc9a43d90b45f65826102e3ece": { - "address": "0x0cbd6fadcf8096cc9a43d90b45f65826102e3ece", - "symbol": "CDT", - "decimals": 18, - "name": "CheckDot", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0x0cbd6fadcf8096cc9a43d90b45f65826102e3ece.png", - "aggregators": [ - "CoinGecko", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0xfb9fbcb328317123f5275cda30b6589d5841216b": { - "address": "0xfb9fbcb328317123f5275cda30b6589d5841216b", - "symbol": "ATF", - "decimals": 18, - "name": "Antfarm Token", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0xfb9fbcb328317123f5275cda30b6589d5841216b.png", - "aggregators": [ - "TraderJoe", - "LiFi", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0xd8724322f44e5c58d7a815f542036fb17dbbf839": { - "address": "0xd8724322f44e5c58d7a815f542036fb17dbbf839", - "symbol": "WOETH", - "decimals": 18, - "name": "Wrapped OETH", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0xd8724322f44e5c58d7a815f542036fb17dbbf839.png", - "aggregators": ["CoinGecko", "LiFi", "Socket", "Rubic", "Rango"], - "occurrences": 5 - }, - "0x13278cd824d33a7adb9f0a9a84aca7c0d2deebf7": { - "address": "0x13278cd824d33a7adb9f0a9a84aca7c0d2deebf7", - "symbol": "TAROT", - "decimals": 18, - "name": "Tarot", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0x13278cd824d33a7adb9f0a9a84aca7c0d2deebf7.png", - "aggregators": [ - "TraderJoe", - "LiFi", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0xf3c091ed43de9c270593445163a41a876a0bb3dd": { - "address": "0xf3c091ed43de9c270593445163a41a876a0bb3dd", - "symbol": "ORBS", - "decimals": 18, - "name": "Orbs", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0xf3c091ed43de9c270593445163a41a876a0bb3dd.png", - "aggregators": [ - "TraderJoe", - "Rubic", - "Squid", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x8b5e4c9a188b1a187f2d1e80b1c2fb17fa2922e1": { - "address": "0x8b5e4c9a188b1a187f2d1e80b1c2fb17fa2922e1", - "symbol": "GOLD", - "decimals": 18, - "name": "GoldenBoys", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0x8b5e4c9a188b1a187f2d1e80b1c2fb17fa2922e1.png", - "aggregators": [ - "CoinGecko", - "LiFi", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x6b021b3f68491974be6d4009fee61a4e3c708fd6": { - "address": "0x6b021b3f68491974be6d4009fee61a4e3c708fd6", - "symbol": "FUSE", - "decimals": 18, - "name": "Fuse", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0x6b021b3f68491974be6d4009fee61a4e3c708fd6.png", - "aggregators": [ - "TraderJoe", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0xcf934e2402a5e072928a39a956964eb8f2b5b79c": { - "address": "0xcf934e2402a5e072928a39a956964eb8f2b5b79c", - "symbol": "POOL", - "decimals": 18, - "name": "PoolTogether", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0xcf934e2402a5e072928a39a956964eb8f2b5b79c.png", - "aggregators": [ - "CoinGecko", - "LiFi", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x249c48e22e95514ca975de31f473f30c2f3c0916": { - "address": "0x249c48e22e95514ca975de31f473f30c2f3c0916", - "symbol": "USDFI", - "decimals": 18, - "name": "USDFI", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0x249c48e22e95514ca975de31f473f30c2f3c0916.png", - "aggregators": [ - "CoinGecko", - "LiFi", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x0a3bb08b3a15a19b4de82f8acfc862606fb69a2d": { - "address": "0x0a3bb08b3a15a19b4de82f8acfc862606fb69a2d", - "symbol": "IUSD", - "decimals": 18, - "name": "iZUMi Bond USD", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0x0a3bb08b3a15a19b4de82f8acfc862606fb69a2d.png", - "aggregators": [ - "TraderJoe", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x9500ba777560daf9d3ab148ea1cf1ed39df9ebdb": { - "address": "0x9500ba777560daf9d3ab148ea1cf1ed39df9ebdb", - "symbol": "STYLE", - "decimals": 18, - "name": "STYLE Token", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0x9500ba777560daf9d3ab148ea1cf1ed39df9ebdb.png", - "aggregators": ["CoinGecko", "LiFi", "Socket", "Rubic", "Rango"], - "occurrences": 5 - }, - "0x847503fbf003ce8b005546aa3c03b80b7c2f9771": { - "address": "0x847503fbf003ce8b005546aa3c03b80b7c2f9771", - "symbol": "BYTE", - "decimals": 9, - "name": "Byte", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0x847503fbf003ce8b005546aa3c03b80b7c2f9771.png", - "aggregators": [ - "CoinGecko", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x9f41b34f42058a7b74672055a5fae22c4b113fd1": { - "address": "0x9f41b34f42058a7b74672055a5fae22c4b113fd1", - "symbol": "YUM", - "decimals": 18, - "name": "Yum", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0x9f41b34f42058a7b74672055a5fae22c4b113fd1.png", - "aggregators": [ - "CoinGecko", - "Rubic", - "Squid", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x30dcba0405004cf124045793e1933c798af9e66a": { - "address": "0x30dcba0405004cf124045793e1933c798af9e66a", - "symbol": "YDF", - "decimals": 18, - "name": "Yieldification", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0x30dcba0405004cf124045793e1933c798af9e66a.png", - "aggregators": [ - "TraderJoe", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x34229b3f16fbcdfa8d8d9d17c0852f9496f4c7bb": { - "address": "0x34229b3f16fbcdfa8d8d9d17c0852f9496f4c7bb", - "symbol": "IPOR", - "decimals": 18, - "name": "IPOR", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0x34229b3f16fbcdfa8d8d9d17c0852f9496f4c7bb.png", - "aggregators": [ - "TraderJoe", - "LiFi", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x53bcf6698c911b2a7409a740eacddb901fc2a2c6": { - "address": "0x53bcf6698c911b2a7409a740eacddb901fc2a2c6", - "symbol": "KABOSU", - "decimals": 18, - "name": "Kabosu (Arbitrum)", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0x53bcf6698c911b2a7409a740eacddb901fc2a2c6.png", - "aggregators": [ - "TraderJoe", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x643b34980e635719c15a2d4ce69571a258f940e9": { - "address": "0x643b34980e635719c15a2d4ce69571a258f940e9", - "symbol": "EUROS", - "decimals": 18, - "name": "The Standard EURO", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0x643b34980e635719c15a2d4ce69571a258f940e9.png", - "aggregators": [ - "TraderJoe", - "LiFi", - "Socket", - "Rubic", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x65c936f008bc34fe819bce9fa5afd9dc2d49977f": { - "address": "0x65c936f008bc34fe819bce9fa5afd9dc2d49977f", - "symbol": "Y2K", - "decimals": 18, - "name": "Y2K", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0x65c936f008bc34fe819bce9fa5afd9dc2d49977f.png", - "aggregators": [ - "TraderJoe", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x8626264b6a1b4e920905efd381002aba52ea0eea": { - "address": "0x8626264b6a1b4e920905efd381002aba52ea0eea", - "symbol": "BLKC", - "decimals": 8, - "name": "BlackHat Coin", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0x8626264b6a1b4e920905efd381002aba52ea0eea.png", - "aggregators": [ - "TraderJoe", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0xc84fae1141b92fa5bf847276828f69caf651cb7f": { - "address": "0xc84fae1141b92fa5bf847276828f69caf651cb7f", - "symbol": "XNF", - "decimals": 18, - "name": "XNF", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0xc84fae1141b92fa5bf847276828f69caf651cb7f.png", - "aggregators": [ - "TraderJoe", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0xcbe94d75ec713b7ead84f55620dc3174beeb1cfe": { - "address": "0xcbe94d75ec713b7ead84f55620dc3174beeb1cfe", - "symbol": "FORE", - "decimals": 18, - "name": "FORE Protocol", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0xcbe94d75ec713b7ead84f55620dc3174beeb1cfe.png", - "aggregators": [ - "TraderJoe", - "LiFi", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0xf7693c6fd9a7172d537fa75d133d309501cbd657": { - "address": "0xf7693c6fd9a7172d537fa75d133d309501cbd657", - "symbol": "W3N", - "decimals": 18, - "name": "Web3 No Value", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0xf7693c6fd9a7172d537fa75d133d309501cbd657.png", - "aggregators": [ - "TraderJoe", - "Rubic", - "Rango", - "Sonarwatch", - "SushiSwap" - ], - "occurrences": 5 - }, - "0x2172fad929e857ddfd7ddc31e24904438434cb0b": { - "address": "0x2172fad929e857ddfd7ddc31e24904438434cb0b", - "symbol": "MBTC", - "decimals": 8, - "name": "Babypie Wrapped BTC", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0x2172fad929e857ddfd7ddc31e24904438434cb0b.png", - "aggregators": ["LiFi", "Socket", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 5 - }, - "0x0a84edf70f30325151631ce7a61307d1f4d619a3": { - "address": "0x0a84edf70f30325151631ce7a61307d1f4d619a3", - "symbol": "BONZAI", - "decimals": 18, - "name": "BonzAI DePIN", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0x0a84edf70f30325151631ce7a61307d1f4d619a3.png", - "aggregators": ["LiFi", "Socket", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 5 - }, - "0x99c409e5f62e4bd2ac142f17cafb6810b8f0baae": { - "address": "0x99c409e5f62e4bd2ac142f17cafb6810b8f0baae", - "symbol": "BIFI", - "decimals": 18, - "name": "Beefy Finance", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0x99c409e5f62e4bd2ac142f17cafb6810b8f0baae.png", - "aggregators": ["LiFi", "Socket", "Rubic", "Rango", "SushiSwap"], - "occurrences": 5 - }, - "0x23a941036ae778ac51ab04cea08ed6e2fe103614": { - "address": "0x23a941036ae778ac51ab04cea08ed6e2fe103614", - "symbol": "GRT", - "decimals": 18, - "name": "Graph Token", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0x23a941036ae778ac51ab04cea08ed6e2fe103614.png", - "aggregators": ["LiFi", "Socket", "Rubic", "Rango", "SushiSwap"], - "occurrences": 5 - }, - "0x00e1724885473b63bce08a9f0a52f35b0979e35a": { - "address": "0x00e1724885473b63bce08a9f0a52f35b0979e35a", - "symbol": "OATH", - "decimals": 18, - "name": "OATH", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0x00e1724885473b63bce08a9f0a52f35b0979e35a.png", - "aggregators": ["LiFi", "Rubic", "Squid", "Rango", "Sonarwatch"], - "occurrences": 5 - }, - "0xdb96f8efd6865644993505318cc08ff9c42fb9ac": { - "address": "0xdb96f8efd6865644993505318cc08ff9c42fb9ac", - "symbol": "Z2O", - "decimals": 9, - "name": "ZeroTwOhm", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0xdb96f8efd6865644993505318cc08ff9c42fb9ac.png", - "aggregators": ["LiFi", "Socket", "Rubic", "Rango", "SushiSwap"], - "occurrences": 5 - }, - "0x41b94c5867f7f6217c9a30520cb3e793b1ee1b97": { - "address": "0x41b94c5867f7f6217c9a30520cb3e793b1ee1b97", - "symbol": "AXLTIA", - "decimals": 6, - "name": "Axelar Wrapped TIA", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0x41b94c5867f7f6217c9a30520cb3e793b1ee1b97.png", - "aggregators": ["LiFi", "Rubic", "Squid", "Rango", "SushiSwap"], - "occurrences": 5 - }, - "0xd693ec944a85eeca4247ec1c3b130dca9b0c3b22": { - "address": "0xd693ec944a85eeca4247ec1c3b130dca9b0c3b22", - "symbol": "UMA", - "decimals": 18, - "name": "UMA Voting Token v1", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0xd693ec944a85eeca4247ec1c3b130dca9b0c3b22.png", - "aggregators": ["UniswapLabs", "LiFi", "Rubic", "Rango"], - "occurrences": 4 - }, - "0xba9a5dd807c9f072850be15a52df3408ba25fd18": { - "address": "0xba9a5dd807c9f072850be15a52df3408ba25fd18", - "symbol": "BTU", - "decimals": 18, - "name": "BTU Protocol", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0xba9a5dd807c9f072850be15a52df3408ba25fd18.png", - "aggregators": ["ArbitrumWhitelist", "LiFi", "Socket", "Rango"], - "occurrences": 4 - }, - "0x04cb2d263a7489f02d813eaab9ba1bb8466347f2": { - "address": "0x04cb2d263a7489f02d813eaab9ba1bb8466347f2", - "symbol": "KUN", - "decimals": 18, - "name": "QIAN governance token", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0x04cb2d263a7489f02d813eaab9ba1bb8466347f2.png", - "aggregators": ["ArbitrumWhitelist", "LiFi", "Rubic", "Rango"], - "occurrences": 4 - }, - "0xaaa62d9584cbe8e4d68a43ec91bff4ff1fadb202": { - "address": "0xaaa62d9584cbe8e4d68a43ec91bff4ff1fadb202", - "symbol": "MATTER", - "decimals": 18, - "name": "MATTER", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0xaaa62d9584cbe8e4d68a43ec91bff4ff1fadb202.png", - "aggregators": ["ArbitrumWhitelist", "LiFi", "Rubic", "Rango"], - "occurrences": 4 - }, - "0x0f61b24272af65eacf6adfe507028957698e032f": { - "address": "0x0f61b24272af65eacf6adfe507028957698e032f", - "symbol": "ZIPT", - "decimals": 18, - "name": "Zippie", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0x0f61b24272af65eacf6adfe507028957698e032f.png", - "aggregators": ["ArbitrumWhitelist", "LiFi", "Rubic", "Rango"], - "occurrences": 4 - }, - "0x94fcd9c18f99538c0f7c61c5500ca79f0d5c4dab": { - "address": "0x94fcd9c18f99538c0f7c61c5500ca79f0d5c4dab", - "symbol": "KIMA", - "decimals": 18, - "name": "Kima Network", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0x94fcd9c18f99538c0f7c61c5500ca79f0d5c4dab.png", - "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0x7a10f506e4c7658e6ad15fdf0443d450b7fa80d7": { - "address": "0x7a10f506e4c7658e6ad15fdf0443d450b7fa80d7", - "symbol": "EYWA", - "decimals": 18, - "name": "EYWA", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0x7a10f506e4c7658e6ad15fdf0443d450b7fa80d7.png", - "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0x602eb0d99a5e3e76d1510372c4d2020e12eaea8a": { - "address": "0x602eb0d99a5e3e76d1510372c4d2020e12eaea8a", - "symbol": "PSI", - "decimals": 9, - "name": "TridentDAO", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0x602eb0d99a5e3e76d1510372c4d2020e12eaea8a.png", - "aggregators": ["TraderJoe", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0xd3443ee1e91af28e5fb858fbd0d72a63ba8046e0": { - "address": "0xd3443ee1e91af28e5fb858fbd0d72a63ba8046e0", - "symbol": "GUSDC", - "decimals": 6, - "name": "Gains Network USDC", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0xd3443ee1e91af28e5fb858fbd0d72a63ba8046e0.png", - "aggregators": ["TraderJoe", "LiFi", "Rubic", "Rango"], - "occurrences": 4 - }, - "0xaae0c3856e665ff9b3e2872b6d75939d810b7e40": { - "address": "0xaae0c3856e665ff9b3e2872b6d75939d810b7e40", - "symbol": "YFX", - "decimals": 18, - "name": "YieldFarming Index", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0xaae0c3856e665ff9b3e2872b6d75939d810b7e40.png", - "aggregators": ["TraderJoe", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0x7c8a1a80fdd00c9cccd6ebd573e9ecb49bfa2a59": { - "address": "0x7c8a1a80fdd00c9cccd6ebd573e9ecb49bfa2a59", - "symbol": "AICODE", - "decimals": 18, - "name": "AI CODE", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0x7c8a1a80fdd00c9cccd6ebd573e9ecb49bfa2a59.png", - "aggregators": ["TraderJoe", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0x33c88d4cac6ac34f77020915a2a88cd0417dc069": { - "address": "0x33c88d4cac6ac34f77020915a2a88cd0417dc069", - "symbol": "USSD", - "decimals": 6, - "name": "Autonomous Secure Dollar", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0x33c88d4cac6ac34f77020915a2a88cd0417dc069.png", - "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0x93d504070ab0eede5449c89c5ea0f5e34d8103f8": { - "address": "0x93d504070ab0eede5449c89c5ea0f5e34d8103f8", - "symbol": "ARCHI", - "decimals": 18, - "name": "Archi Token", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0x93d504070ab0eede5449c89c5ea0f5e34d8103f8.png", - "aggregators": ["TraderJoe", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0x6fd58f5a2f3468e35feb098b5f59f04157002407": { - "address": "0x6fd58f5a2f3468e35feb098b5f59f04157002407", - "symbol": "POGAI", - "decimals": 18, - "name": "POGAI", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0x6fd58f5a2f3468e35feb098b5f59f04157002407.png", - "aggregators": ["TraderJoe", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0x79ead7a012d97ed8deece279f9bc39e264d7eef9": { - "address": "0x79ead7a012d97ed8deece279f9bc39e264d7eef9", - "symbol": "BONSAI", - "decimals": 18, - "name": "Bonsai", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0x79ead7a012d97ed8deece279f9bc39e264d7eef9.png", - "aggregators": ["TraderJoe", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0xc701f86e6d242b97d3035f6c2cecaf8e7087e898": { - "address": "0xc701f86e6d242b97d3035f6c2cecaf8e7087e898", - "symbol": "RUX", - "decimals": 18, - "name": "RunBlox (Arbitrum)", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0xc701f86e6d242b97d3035f6c2cecaf8e7087e898.png", - "aggregators": ["TraderJoe", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0xdadeca1167fe47499e53eb50f261103630974905": { - "address": "0xdadeca1167fe47499e53eb50f261103630974905", - "symbol": "NRN", - "decimals": 18, - "name": "Neuron", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0xdadeca1167fe47499e53eb50f261103630974905.png", - "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0xf5a27e55c748bcddbfea5477cb9ae924f0f7fd2e": { - "address": "0xf5a27e55c748bcddbfea5477cb9ae924f0f7fd2e", - "symbol": "TST", - "decimals": 18, - "name": "TheStandard Token", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0xf5a27e55c748bcddbfea5477cb9ae924f0f7fd2e.png", - "aggregators": ["TraderJoe", "Socket", "Rubic", "Sonarwatch"], - "occurrences": 4 - }, - "0x5117f4ad0bc70dbb3b05bf39a1ec1ee40dd67654": { - "address": "0x5117f4ad0bc70dbb3b05bf39a1ec1ee40dd67654", - "symbol": "AVIVE", - "decimals": 18, - "name": "Avive", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0x5117f4ad0bc70dbb3b05bf39a1ec1ee40dd67654.png", - "aggregators": ["TraderJoe", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0xbc4c97fb9befaa8b41448e1dfcc5236da543217f": { - "address": "0xbc4c97fb9befaa8b41448e1dfcc5236da543217f", - "symbol": "CATCH", - "decimals": 18, - "name": "SpaceCatch", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0xbc4c97fb9befaa8b41448e1dfcc5236da543217f.png", - "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0x8d7c2588c365b9e98ea464b63dbccdf13ecd9809": { - "address": "0x8d7c2588c365b9e98ea464b63dbccdf13ecd9809", - "symbol": "AI", - "decimals": 18, - "name": "Flourishing AI", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0x8d7c2588c365b9e98ea464b63dbccdf13ecd9809.png", - "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0x6db8b088c4d41d622b44cd81b900ba690f2d496c": { - "address": "0x6db8b088c4d41d622b44cd81b900ba690f2d496c", - "symbol": "IDIA", - "decimals": 18, - "name": "Impossible Finance Launchpad", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0x6db8b088c4d41d622b44cd81b900ba690f2d496c.png", - "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0xe20b9e246db5a0d21bf9209e4858bc9a3ff7a034": { - "address": "0xe20b9e246db5a0d21bf9209e4858bc9a3ff7a034", - "symbol": "WBAN", - "decimals": 18, - "name": "Wrapped Banano", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0xe20b9e246db5a0d21bf9209e4858bc9a3ff7a034.png", - "aggregators": ["TraderJoe", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0x7f4db37d7beb31f445307782bc3da0f18df13696": { - "address": "0x7f4db37d7beb31f445307782bc3da0f18df13696", - "symbol": "YAK", - "decimals": 18, - "name": "Yield Yak", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0x7f4db37d7beb31f445307782bc3da0f18df13696.png", - "aggregators": ["TraderJoe", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0x306fd3e7b169aa4ee19412323e1a5995b8c1a1f4": { - "address": "0x306fd3e7b169aa4ee19412323e1a5995b8c1a1f4", - "symbol": "FTW", - "decimals": 18, - "name": "Black Agnus", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0x306fd3e7b169aa4ee19412323e1a5995b8c1a1f4.png", - "aggregators": ["CoinGecko", "Socket", "Rubic", "Rango"], - "occurrences": 4 - }, - "0xa23e44aea714fbbc08ef28340d78067b9a8cad73": { - "address": "0xa23e44aea714fbbc08ef28340d78067b9a8cad73", - "symbol": "LBR", - "decimals": 18, - "name": "Lybra", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0xa23e44aea714fbbc08ef28340d78067b9a8cad73.png", - "aggregators": ["TraderJoe", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0x3b60ff35d3f7f62d636b067dd0dc0dfdad670e4e": { - "address": "0x3b60ff35d3f7f62d636b067dd0dc0dfdad670e4e", - "symbol": "LADYS", - "decimals": 18, - "name": "Milady Meme Coin", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0x3b60ff35d3f7f62d636b067dd0dc0dfdad670e4e.png", - "aggregators": ["TraderJoe", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0x666966ef3925b1c92fa355fda9722899f3e73451": { - "address": "0x666966ef3925b1c92fa355fda9722899f3e73451", - "symbol": "STABLE", - "decimals": 18, - "name": "Stable", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0x666966ef3925b1c92fa355fda9722899f3e73451.png", - "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0x02150e97271fdc0d6e3a16d9094a0948266f07dd": { - "address": "0x02150e97271fdc0d6e3a16d9094a0948266f07dd", - "symbol": "HAMI", - "decimals": 18, - "name": "Hamachi", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0x02150e97271fdc0d6e3a16d9094a0948266f07dd.png", - "aggregators": ["TraderJoe", "Rubic", "Rango", "SushiSwap"], - "occurrences": 4 - }, - "0x20547341e58fb558637fa15379c92e11f7b7f710": { - "address": "0x20547341e58fb558637fa15379c92e11f7b7f710", - "symbol": "MOZ", - "decimals": 18, - "name": "Mozaic Token", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0x20547341e58fb558637fa15379c92e11f7b7f710.png", - "aggregators": ["TraderJoe", "LiFi", "Rubic", "Rango"], - "occurrences": 4 - }, - "0x352f4bf396a7353a0877f99e99757e5d294df374": { - "address": "0x352f4bf396a7353a0877f99e99757e5d294df374", - "symbol": "SUNDAE", - "decimals": 18, - "name": "Sundae the Dog", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0x352f4bf396a7353a0877f99e99757e5d294df374.png", - "aggregators": ["TraderJoe", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0x43c25f828390de5a3648864eb485cc523e039e67": { - "address": "0x43c25f828390de5a3648864eb485cc523e039e67", - "symbol": "PET", - "decimals": 18, - "name": "Pet Token", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0x43c25f828390de5a3648864eb485cc523e039e67.png", - "aggregators": ["TraderJoe", "LiFi", "Rubic", "Rango"], - "occurrences": 4 - }, - "0x4727a7d2022e99ee5c298513b730307f458f9b40": { - "address": "0x4727a7d2022e99ee5c298513b730307f458f9b40", - "symbol": "GUBERTO", - "decimals": 18, - "name": "Guberto", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0x4727a7d2022e99ee5c298513b730307f458f9b40.png", - "aggregators": ["TraderJoe", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0x560363bda52bc6a44ca6c8c9b4a5fadbda32fa60": { - "address": "0x560363bda52bc6a44ca6c8c9b4a5fadbda32fa60", - "symbol": "SFUND", - "decimals": 18, - "name": "Seedify.fund", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0x560363bda52bc6a44ca6c8c9b4a5fadbda32fa60.png", - "aggregators": ["TraderJoe", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0x6604b5da093f3f35066c6c79e51d581a44c35288": { - "address": "0x6604b5da093f3f35066c6c79e51d581a44c35288", - "symbol": "U", - "decimals": 18, - "name": "Uranium3o8", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0x6604b5da093f3f35066c6c79e51d581a44c35288.png", - "aggregators": ["TraderJoe", "Socket", "Rubic", "Rango"], - "occurrences": 4 - }, - "0x7241bc8035b65865156ddb5edef3eb32874a3af6": { - "address": "0x7241bc8035b65865156ddb5edef3eb32874a3af6", - "symbol": "JGLP", - "decimals": 18, - "name": "Jones GLP", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0x7241bc8035b65865156ddb5edef3eb32874a3af6.png", - "aggregators": ["TraderJoe", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0x7a5d193fe4ed9098f7eadc99797087c96b002907": { - "address": "0x7a5d193fe4ed9098f7eadc99797087c96b002907", - "symbol": "PLSARB", - "decimals": 18, - "name": "Plutus ARB", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0x7a5d193fe4ed9098f7eadc99797087c96b002907.png", - "aggregators": ["TraderJoe", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0x842216e0aa2ae608699f7b1063f26ce6b30c5311": { - "address": "0x842216e0aa2ae608699f7b1063f26ce6b30c5311", - "symbol": "URD", - "decimals": 18, - "name": "UrDEX Finance", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0x842216e0aa2ae608699f7b1063f26ce6b30c5311.png", - "aggregators": ["TraderJoe", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0x89c49a3fa372920ac23ce757a029e6936c0b8e02": { - "address": "0x89c49a3fa372920ac23ce757a029e6936c0b8e02", - "symbol": "CU", - "decimals": 18, - "name": "Crypto Unicorns", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0x89c49a3fa372920ac23ce757a029e6936c0b8e02.png", - "aggregators": ["TraderJoe", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0xafccb724e3aec1657fc9514e3e53a0e71e80622d": { - "address": "0xafccb724e3aec1657fc9514e3e53a0e71e80622d", - "symbol": "VKA", - "decimals": 18, - "name": "Vaultka", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0xafccb724e3aec1657fc9514e3e53a0e71e80622d.png", - "aggregators": ["TraderJoe", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0xb0ecc6ac0073c063dcfc026ccdc9039cae2998e1": { - "address": "0xb0ecc6ac0073c063dcfc026ccdc9039cae2998e1", - "symbol": "AA", - "decimals": 18, - "name": "A3S", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0xb0ecc6ac0073c063dcfc026ccdc9039cae2998e1.png", - "aggregators": ["TraderJoe", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0xc72633f995e98ac3bb8a89e6a9c4af335c3d6e44": { - "address": "0xc72633f995e98ac3bb8a89e6a9c4af335c3d6e44", - "symbol": "OSEA", - "decimals": 18, - "name": "Omnisea", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0xc72633f995e98ac3bb8a89e6a9c4af335c3d6e44.png", - "aggregators": ["TraderJoe", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0xc8ccbd97b96834b976c995a67bf46e5754e2c48e": { - "address": "0xc8ccbd97b96834b976c995a67bf46e5754e2c48e", - "symbol": "PLX", - "decimals": 18, - "name": "Parallax Token", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0xc8ccbd97b96834b976c995a67bf46e5754e2c48e.png", - "aggregators": ["TraderJoe", "Socket", "Rubic", "Rango"], - "occurrences": 4 - }, - "0xf50874f8246776ca4b89eef471e718f70f38458f": { - "address": "0xf50874f8246776ca4b89eef471e718f70f38458f", - "symbol": "ARBS", - "decimals": 18, - "name": "Arbswap", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0xf50874f8246776ca4b89eef471e718f70f38458f.png", - "aggregators": ["TraderJoe", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0xf8388c2b6edf00e2e27eef5200b1befb24ce141d": { - "address": "0xf8388c2b6edf00e2e27eef5200b1befb24ce141d", - "symbol": "NOLA", - "decimals": 18, - "name": "Nola", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0xf8388c2b6edf00e2e27eef5200b1befb24ce141d.png", - "aggregators": ["TraderJoe", "Rubic", "Rango", "SushiSwap"], - "occurrences": 4 - }, - "0xd22a58f79e9481d1a88e00c343885a588b34b68b": { - "address": "0xd22a58f79e9481d1a88e00c343885a588b34b68b", - "symbol": "EURS", - "decimals": 2, - "name": "STASIS EURS Token", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0xd22a58f79e9481d1a88e00c343885a588b34b68b.png", - "aggregators": ["1inch", "LiFi", "Socket", "Rubic"], - "occurrences": 4 - }, - "0x1ddcaa4ed761428ae348befc6718bcb12e63bfaa": { - "address": "0x1ddcaa4ed761428ae348befc6718bcb12e63bfaa", - "symbol": "DEUSDC", - "decimals": 6, - "name": "DEUSDC", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0x1ddcaa4ed761428ae348befc6718bcb12e63bfaa.png", - "aggregators": ["1inch", "LiFi", "Rubic", "Rango"], - "occurrences": 4 - }, - "0xe3b3fe7bca19ca77ad877a5bebab186becfad906": { - "address": "0xe3b3fe7bca19ca77ad877a5bebab186becfad906", - "symbol": "SFRAX", - "decimals": 18, - "name": "Staked FRAX", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0xe3b3fe7bca19ca77ad877a5bebab186becfad906.png", - "aggregators": ["LiFi", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0xca5d8f8a8d49439357d3cf46ca2e720702f132b8": { - "address": "0xca5d8f8a8d49439357d3cf46ca2e720702f132b8", - "symbol": "GYD", - "decimals": 18, - "name": "Gyroscope GYD", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0xca5d8f8a8d49439357d3cf46ca2e720702f132b8.png", - "aggregators": ["LiFi", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0x6cc5b1fb8c2fd7af1d2858f916f274b8faac82e1": { - "address": "0x6cc5b1fb8c2fd7af1d2858f916f274b8faac82e1", - "symbol": "OJA", - "decimals": 18, - "name": "Ojamu Token", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0x6cc5b1fb8c2fd7af1d2858f916f274b8faac82e1.png", - "aggregators": ["LiFi", "Socket", "Rubic", "Rango"], - "occurrences": 4 - }, - "0x130096af9163b185cae4a833f856760199fc6ceb": { - "address": "0x130096af9163b185cae4a833f856760199fc6ceb", - "symbol": "FU", - "decimals": 18, - "name": "FU Money", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0x130096af9163b185cae4a833f856760199fc6ceb.png", - "aggregators": ["LiFi", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0x73700aecfc4621e112304b6edc5ba9e36d7743d3": { - "address": "0x73700aecfc4621e112304b6edc5ba9e36d7743d3", - "symbol": "LQETH", - "decimals": 18, - "name": "liquid ETH", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0x73700aecfc4621e112304b6edc5ba9e36d7743d3.png", - "aggregators": ["LiFi", "Rubic", "Rango", "SushiSwap"], - "occurrences": 4 - }, - "0x5375616bb6c52a90439ff96882a986d8fcdce421": { - "address": "0x5375616bb6c52a90439ff96882a986d8fcdce421", - "symbol": "JGOHM", - "decimals": 18, - "name": "Jones gOHM", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0x5375616bb6c52a90439ff96882a986d8fcdce421.png", - "aggregators": ["LiFi", "Rubic", "Rango", "SushiSwap"], - "occurrences": 4 - }, - "0x68ead55c258d6fa5e46d67fc90f53211eab885be": { - "address": "0x68ead55c258d6fa5e46d67fc90f53211eab885be", - "symbol": "POP", - "decimals": 18, - "name": "Popcorn", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0x68ead55c258d6fa5e46d67fc90f53211eab885be.png", - "aggregators": ["LiFi", "Socket", "Rubic", "Rango"], - "occurrences": 4 - }, - "0x8ffd9f31980f26fbf4ac693678db700f1d8c51f6": { - "address": "0x8ffd9f31980f26fbf4ac693678db700f1d8c51f6", - "symbol": "LSETH", - "decimals": 18, - "name": "Liquid Staked ETH", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0x8ffd9f31980f26fbf4ac693678db700f1d8c51f6.png", - "aggregators": ["LiFi", "Socket", "Rubic", "Rango"], - "occurrences": 4 - }, - "0xdbf31df14b66535af65aac99c32e9ea844e14501": { - "address": "0xdbf31df14b66535af65aac99c32e9ea844e14501", - "symbol": "RENBTC", - "decimals": 8, - "name": "RENBTC", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0xdbf31df14b66535af65aac99c32e9ea844e14501.png", - "aggregators": ["LiFi", "Socket", "Rubic", "Rango"], - "occurrences": 4 - }, - "0x5db7b150c5f38c5f5db11dcbdb885028fcc51d68": { - "address": "0x5db7b150c5f38c5f5db11dcbdb885028fcc51d68", - "symbol": "STR", - "decimals": 18, - "name": "Sterling", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0x5db7b150c5f38c5f5db11dcbdb885028fcc51d68.png", - "aggregators": ["LiFi", "Socket", "Rubic", "Rango"], - "occurrences": 4 - }, - "0x7dd747d63b094971e6638313a6a2685e80c7fb2e": { - "address": "0x7dd747d63b094971e6638313a6a2685e80c7fb2e", - "symbol": "STFX", - "decimals": 18, - "name": "STFX", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0x7dd747d63b094971e6638313a6a2685e80c7fb2e.png", - "aggregators": ["LiFi", "Socket", "Rubic", "Rango"], - "occurrences": 4 - }, - "0x1f6fa7a58701b3773b08a1a16d06b656b0eccb23": { - "address": "0x1f6fa7a58701b3773b08a1a16d06b656b0eccb23", - "symbol": "JRDPX", - "decimals": 18, - "name": "Jones rDPX", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0x1f6fa7a58701b3773b08a1a16d06b656b0eccb23.png", - "aggregators": ["LiFi", "Rubic", "Rango", "SushiSwap"], - "occurrences": 4 - }, - "0x369eb8197062093a20402935d3a707b4ae414e9d": { - "address": "0x369eb8197062093a20402935d3a707b4ae414e9d", - "symbol": "PANA", - "decimals": 18, - "name": "Pana DAO", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0x369eb8197062093a20402935d3a707b4ae414e9d.png", - "aggregators": ["LiFi", "Rubic", "Rango", "SushiSwap"], - "occurrences": 4 - }, - "0x8ec1877698acf262fe8ad8a295ad94d6ea258988": { - "address": "0x8ec1877698acf262fe8ad8a295ad94d6ea258988", - "symbol": "DUSD", - "decimals": 18, - "name": "Davos.xyz USD", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0x8ec1877698acf262fe8ad8a295ad94d6ea258988.png", - "aggregators": ["Socket", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0xcb58418aa51ba525aef0fe474109c0354d844b7c": { - "address": "0xcb58418aa51ba525aef0fe474109c0354d844b7c", - "symbol": "ICE", - "decimals": 18, - "name": "Ice Token", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0xcb58418aa51ba525aef0fe474109c0354d844b7c.png", - "aggregators": ["Socket", "Rubic", "Rango", "SushiSwap"], - "occurrences": 4 - }, - "0x1a7bd9edc36fb2b3c0852bcd7438c2a957fd7ad5": { - "address": "0x1a7bd9edc36fb2b3c0852bcd7438c2a957fd7ad5", - "symbol": "AMOON", - "decimals": 9, - "name": "ArbiMoon", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0x1a7bd9edc36fb2b3c0852bcd7438c2a957fd7ad5.png", - "aggregators": ["Socket", "Rubic", "Rango", "SushiSwap"], - "occurrences": 4 - }, - "0x255f1b39172f65dc6406b8bee8b08155c45fe1b6": { - "address": "0x255f1b39172f65dc6406b8bee8b08155c45fe1b6", - "symbol": "HARAMBE", - "decimals": 18, - "name": "HarambeCoin", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0x255f1b39172f65dc6406b8bee8b08155c45fe1b6.png", - "aggregators": ["Socket", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0x2c650dab03a59332e2e0c0c4a7f726913e5028c1": { - "address": "0x2c650dab03a59332e2e0c0c4a7f726913e5028c1", - "symbol": "TAP", - "decimals": 18, - "name": "TapToken", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0x2c650dab03a59332e2e0c0c4a7f726913e5028c1.png", - "aggregators": ["Socket", "Rubic", "Rango", "SushiSwap"], - "occurrences": 4 - }, - "0xf0b5ceefc89684889e5f7e0a7775bd100fcd3709": { - "address": "0xf0b5ceefc89684889e5f7e0a7775bd100fcd3709", - "symbol": "DUSD", - "decimals": 6, - "name": "DigitalDollar", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0xf0b5ceefc89684889e5f7e0a7775bd100fcd3709.png", - "aggregators": ["Socket", "Rubic", "Rango", "SushiSwap"], - "occurrences": 4 - }, - "0xf7428ffcb2581a2804998efbb036a43255c8a8d3": { - "address": "0xf7428ffcb2581a2804998efbb036a43255c8a8d3", - "symbol": "SSPELL", - "decimals": 18, - "name": "Staked Spell Token", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0xf7428ffcb2581a2804998efbb036a43255c8a8d3.png", - "aggregators": ["Socket", "Rubic", "Rango", "SushiSwap"], - "occurrences": 4 - }, - "0x78055daa07035aa5ebc3e5139c281ce6312e1b22": { - "address": "0x78055daa07035aa5ebc3e5139c281ce6312e1b22", - "symbol": "PPEGG", - "decimals": 18, - "name": "Parrot Egg", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0x78055daa07035aa5ebc3e5139c281ce6312e1b22.png", - "aggregators": ["Socket", "Rubic", "Rango", "SushiSwap"], - "occurrences": 4 - }, - "0x9f20de1fc9b161b34089cbeae888168b44b03461": { - "address": "0x9f20de1fc9b161b34089cbeae888168b44b03461", - "symbol": "ARBIS", - "decimals": 18, - "name": "Arbis", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0x9f20de1fc9b161b34089cbeae888168b44b03461.png", - "aggregators": ["Socket", "Rubic", "Rango", "SushiSwap"], - "occurrences": 4 - }, - "0xa2f9ecf83a48b86265ff5fd36cdbaaa1f349916c": { - "address": "0xa2f9ecf83a48b86265ff5fd36cdbaaa1f349916c", - "symbol": "GOB", - "decimals": 18, - "name": "Goons of Balatroon", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0xa2f9ecf83a48b86265ff5fd36cdbaaa1f349916c.png", - "aggregators": ["Socket", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0xa54b8e178a49f8e5405a4d44bb31f496e5564a05": { - "address": "0xa54b8e178a49f8e5405a4d44bb31f496e5564a05", - "symbol": "PEPE", - "decimals": 18, - "name": "Pepe", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0xa54b8e178a49f8e5405a4d44bb31f496e5564a05.png", - "aggregators": ["Socket", "Rubic", "Rango", "SushiSwap"], - "occurrences": 4 - }, - "0x1a6b3a62391eccaaa992ade44cd4afe6bec8cff1": { - "address": "0x1a6b3a62391eccaaa992ade44cd4afe6bec8cff1", - "symbol": "UXLINK", - "decimals": 18, - "name": "UXLINK", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0x1a6b3a62391eccaaa992ade44cd4afe6bec8cff1.png", - "aggregators": ["Socket", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0x57f12fe6a4e5fe819eec699fadf9db2d06606bb4": { - "address": "0x57f12fe6a4e5fe819eec699fadf9db2d06606bb4", - "symbol": "NPM", - "decimals": 18, - "name": "Neptune Mutual", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0x57f12fe6a4e5fe819eec699fadf9db2d06606bb4.png", - "aggregators": ["Socket", "Rubic", "Rango", "SushiSwap"], - "occurrences": 4 - }, - "0xd1e094cabc5acb9d3b0599c3f76f2d01ff8d3563": { - "address": "0xd1e094cabc5acb9d3b0599c3f76f2d01ff8d3563", - "symbol": "VRSW", - "decimals": 18, - "name": "VirtuSwap", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0xd1e094cabc5acb9d3b0599c3f76f2d01ff8d3563.png", - "aggregators": ["Socket", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0xb52bd62ee0cf462fa9ccbda4bf27fe84d9ab6cf7": { - "address": "0xb52bd62ee0cf462fa9ccbda4bf27fe84d9ab6cf7", - "symbol": "SAIL", - "decimals": 18, - "name": "SAIL Token", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0xb52bd62ee0cf462fa9ccbda4bf27fe84d9ab6cf7.png", - "aggregators": ["Rubic", "Rango", "Sonarwatch", "SushiSwap"], - "occurrences": 4 - }, - "0x662d0f9ff837a51cf89a1fe7e0882a906dac08a3": { - "address": "0x662d0f9ff837a51cf89a1fe7e0882a906dac08a3", - "symbol": "JETH", - "decimals": 18, - "name": "Jones ETH", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0x662d0f9ff837a51cf89a1fe7e0882a906dac08a3.png", - "aggregators": ["Rubic", "Squid", "Rango", "SushiSwap"], - "occurrences": 4 - }, - "0x51707dc661630f8fd624b985fa6ef4f1d4d919db": { - "address": "0x51707dc661630f8fd624b985fa6ef4f1d4d919db", - "symbol": "UNV", - "decimals": 18, - "name": "Unvest", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0x51707dc661630f8fd624b985fa6ef4f1d4d919db.png", - "aggregators": ["Rubic", "Squid", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0x1db06f39c14d813d7b1ccb275a93f5b052de1cac": { - "address": "0x1db06f39c14d813d7b1ccb275a93f5b052de1cac", - "symbol": "XAV", - "decimals": 18, - "name": "Xave", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0x1db06f39c14d813d7b1ccb275a93f5b052de1cac.png", - "aggregators": ["Rubic", "Squid", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0xc7def82ba77baf30bbbc9b6162dc075b49092fb4": { - "address": "0xc7def82ba77baf30bbbc9b6162dc075b49092fb4", - "symbol": "ATH", - "decimals": 18, - "name": "Aethir Token", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0xc7def82ba77baf30bbbc9b6162dc075b49092fb4.png", - "aggregators": ["UniswapLabs", "LiFi", "Rango"], - "occurrences": 3 - }, - "0x37058c4b45fdfc8953fb453da4d6d83670ecdf9d": { - "address": "0x37058c4b45fdfc8953fb453da4d6d83670ecdf9d", - "symbol": "EV", - "decimals": 18, - "name": "Everything", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0x37058c4b45fdfc8953fb453da4d6d83670ecdf9d.png", - "aggregators": ["UniswapLabs", "LiFi", "Rango"], - "occurrences": 3 - }, - "0x68731d6f14b827bbcffbebb62b19daa18de1d79c": { - "address": "0x68731d6f14b827bbcffbebb62b19daa18de1d79c", - "symbol": "IDOS", - "decimals": 18, - "name": "IdOS", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0x68731d6f14b827bbcffbebb62b19daa18de1d79c.png", - "aggregators": ["CoinGecko", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x010700ab046dd8e92b0e3587842080df36364ed3": { - "address": "0x010700ab046dd8e92b0e3587842080df36364ed3", - "symbol": "K", - "decimals": 18, - "name": "Kinto", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0x010700ab046dd8e92b0e3587842080df36364ed3.png", - "aggregators": ["UniswapLabs", "LiFi", "Rubic"], - "occurrences": 3 - }, - "0xe390c0b46bd723995be02640e6f1e1c802f620ac": { - "address": "0xe390c0b46bd723995be02640e6f1e1c802f620ac", - "symbol": "MORPHO", - "decimals": 18, - "name": "Morpho Token", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0xe390c0b46bd723995be02640e6f1e1c802f620ac.png", - "aggregators": ["UniswapLabs", "LiFi", "Rango"], - "occurrences": 3 - }, - "0xe7bef5cc7750820516162f5f5b520e9aa510a466": { - "address": "0xe7bef5cc7750820516162f5f5b520e9aa510a466", - "symbol": "OKB", - "decimals": 18, - "name": "OKB", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0xe7bef5cc7750820516162f5f5b520e9aa510a466.png", - "aggregators": ["UniswapLabs", "LiFi", "Rango"], - "occurrences": 3 - }, - "0xac7ce9f2794e01c0d27b096c52f592e343d77cbf": { - "address": "0xac7ce9f2794e01c0d27b096c52f592e343d77cbf", - "symbol": "PIRATE", - "decimals": 18, - "name": "Pirate Nation", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0xac7ce9f2794e01c0d27b096c52f592e343d77cbf.png", - "aggregators": ["UniswapLabs", "LiFi", "Rango"], - "occurrences": 3 - }, - "0x73efdc761596328461b68e5fc58c3284cb15ba13": { - "address": "0x73efdc761596328461b68e5fc58c3284cb15ba13", - "symbol": "PLUME", - "decimals": 18, - "name": "Plume", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0x73efdc761596328461b68e5fc58c3284cb15ba13.png", - "aggregators": ["UniswapLabs", "LiFi", "Rango"], - "occurrences": 3 - }, - "0x6380f3d0c1412a80eb00f49064da30749db991de": { - "address": "0x6380f3d0c1412a80eb00f49064da30749db991de", - "symbol": "PORTAL", - "decimals": 18, - "name": "Portal", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0x6380f3d0c1412a80eb00f49064da30749db991de.png", - "aggregators": ["UniswapLabs", "LiFi", "Rango"], - "occurrences": 3 - }, - "0x3c45038f4807c5bb72f6bc72c2a2b9c012155e49": { - "address": "0x3c45038f4807c5bb72f6bc72c2a2b9c012155e49", - "symbol": "RAD", - "decimals": 18, - "name": "Radicle", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0x3c45038f4807c5bb72f6bc72c2a2b9c012155e49.png", - "aggregators": ["UniswapLabs", "LiFi", "Rango"], - "occurrences": 3 - }, - "0x7550de0a4b9fb8caba8c32e72ee356afdd217a33": { - "address": "0x7550de0a4b9fb8caba8c32e72ee356afdd217a33", - "symbol": "USD1", - "decimals": 18, - "name": "World Liberty Financial USD", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0x7550de0a4b9fb8caba8c32e72ee356afdd217a33.png", - "aggregators": ["UniswapLabs", "LiFi", "Rango"], - "occurrences": 3 - }, - "0x7639ab8599f1b417cbe4ced492fb30162140abbb": { - "address": "0x7639ab8599f1b417cbe4ced492fb30162140abbb", - "symbol": "USUAL", - "decimals": 18, - "name": "USUAL", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0x7639ab8599f1b417cbe4ced492fb30162140abbb.png", - "aggregators": ["UniswapLabs", "LiFi", "Rango"], - "occurrences": 3 - }, - "0x022cd1aed3f5cbfd7cf4481ac32847d62da746e6": { - "address": "0x022cd1aed3f5cbfd7cf4481ac32847d62da746e6", - "symbol": "VIRTUAL", - "decimals": 18, - "name": "Virtuals Protocol", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0x022cd1aed3f5cbfd7cf4481ac32847d62da746e6.png", - "aggregators": ["UniswapLabs", "LiFi", "Rango"], - "occurrences": 3 - }, - "0x4d1d7134b87490ae5eebdb22a5820d7d0e1980bf": { - "address": "0x4d1d7134b87490ae5eebdb22a5820d7d0e1980bf", - "symbol": "WLFI", - "decimals": 18, - "name": "World Liberty Financial", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0x4d1d7134b87490ae5eebdb22a5820d7d0e1980bf.png", - "aggregators": ["UniswapLabs", "LiFi", "Rango"], - "occurrences": 3 - }, - "0xd44e8f8768d4ed25119921a53802d8758a5b20dd": { - "address": "0xd44e8f8768d4ed25119921a53802d8758a5b20dd", - "symbol": "BOOST", - "decimals": 18, - "name": "Boost", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0xd44e8f8768d4ed25119921a53802d8758a5b20dd.png", - "aggregators": ["ArbitrumWhitelist", "Socket", "Rango"], - "occurrences": 3 - }, - "0xce32aa8d60807182c0003ef9cc1976fa10e5d312": { - "address": "0xce32aa8d60807182c0003ef9cc1976fa10e5d312", - "symbol": "ESS", - "decimals": 18, - "name": "Empty Set Share", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0xce32aa8d60807182c0003ef9cc1976fa10e5d312.png", - "aggregators": ["ArbitrumWhitelist", "Socket", "Rango"], - "occurrences": 3 - }, - "0x590020b1005b8b25f1a2c82c5f743c540dcfa24d": { - "address": "0x590020b1005b8b25f1a2c82c5f743c540dcfa24d", - "symbol": "GMX", - "decimals": 18, - "name": "GMX", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0x590020b1005b8b25f1a2c82c5f743c540dcfa24d.png", - "aggregators": ["ArbitrumWhitelist", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x52f5d9b3a2bb89d3aec5829a3415c21115acd633": { - "address": "0x52f5d9b3a2bb89d3aec5829a3415c21115acd633", - "symbol": "OCTO", - "decimals": 18, - "name": "Octo.fi", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0x52f5d9b3a2bb89d3aec5829a3415c21115acd633.png", - "aggregators": ["ArbitrumWhitelist", "Socket", "Rango"], - "occurrences": 3 - }, - "0x20f9628a485ebcc566622314f6e07e7ee61ff332": { - "address": "0x20f9628a485ebcc566622314f6e07e7ee61ff332", - "symbol": "SUM", - "decimals": 18, - "name": "SUM", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0x20f9628a485ebcc566622314f6e07e7ee61ff332.png", - "aggregators": ["ArbitrumWhitelist", "LiFi", "Rango"], - "occurrences": 3 - }, - "0xd5d3aa404d7562d09a848f96a8a8d5d65977bf90": { - "address": "0xd5d3aa404d7562d09a848f96a8a8d5d65977bf90", - "symbol": "UDT", - "decimals": 18, - "name": "Unlock Discount Token", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0xd5d3aa404d7562d09a848f96a8a8d5d65977bf90.png", - "aggregators": ["ArbitrumWhitelist", "LiFi", "Rango"], - "occurrences": 3 - }, - "0x2ed14d1788dfb780fd216706096aed018514eccd": { - "address": "0x2ed14d1788dfb780fd216706096aed018514eccd", - "symbol": "VOX", - "decimals": 18, - "name": "Vox.Finance", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0x2ed14d1788dfb780fd216706096aed018514eccd.png", - "aggregators": ["ArbitrumWhitelist", "Socket", "Rango"], - "occurrences": 3 - }, - "0x7ce42e8a5a42eb15f0c9a08ee9a079d99b1d83cf": { - "address": "0x7ce42e8a5a42eb15f0c9a08ee9a079d99b1d83cf", - "symbol": "GRANT", - "decimals": 18, - "name": "GrantiX Token", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0x7ce42e8a5a42eb15f0c9a08ee9a079d99b1d83cf.png", - "aggregators": ["CoinGecko", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x3572f8f8c2d8f4ec9469bb1c8573439c7500771e": { - "address": "0x3572f8f8c2d8f4ec9469bb1c8573439c7500771e", - "symbol": "KNOW", - "decimals": 18, - "name": "KNOW", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0x3572f8f8c2d8f4ec9469bb1c8573439c7500771e.png", - "aggregators": ["CoinGecko", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x747952a59292a9b3862f3c59664b95e8b461ef45": { - "address": "0x747952a59292a9b3862f3c59664b95e8b461ef45", - "symbol": "ARW", - "decimals": 18, - "name": "ARW", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0x747952a59292a9b3862f3c59664b95e8b461ef45.png", - "aggregators": ["CoinGecko", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x7629c1df323c8168cf15d4576b340ca74c811207": { - "address": "0x7629c1df323c8168cf15d4576b340ca74c811207", - "symbol": "TRI", - "decimals": 18, - "name": "Triumph", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0x7629c1df323c8168cf15d4576b340ca74c811207.png", - "aggregators": ["CoinGecko", "Rubic", "Squid"], - "occurrences": 3 - }, - "0x45940000009600102a1c002f0097c4a500fa00ab": { - "address": "0x45940000009600102a1c002f0097c4a500fa00ab", - "symbol": "HERMES", - "decimals": 18, - "name": "Hermes Protocol", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0x45940000009600102a1c002f0097c4a500fa00ab.png", - "aggregators": ["CoinGecko", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x15f7ad22caa786b1237b27d4324c7e4a93c5e66b": { - "address": "0x15f7ad22caa786b1237b27d4324c7e4a93c5e66b", - "symbol": "ATVUSDC", - "decimals": 18, - "name": "aarna atv USDC (Arbitrum)", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0x15f7ad22caa786b1237b27d4324c7e4a93c5e66b.png", - "aggregators": ["CoinGecko", "Rubic", "Rango"], - "occurrences": 3 - }, - "0xb1c3960aeeaf4c255a877da04b06487bba698386": { - "address": "0xb1c3960aeeaf4c255a877da04b06487bba698386", - "symbol": "BIC", - "decimals": 18, - "name": "Beincom", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0xb1c3960aeeaf4c255a877da04b06487bba698386.png", - "aggregators": ["CoinGecko", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x463913d3a3d3d291667d53b8325c598eb88d3b0e": { - "address": "0x463913d3a3d3d291667d53b8325c598eb88d3b0e", - "symbol": "SLIZ", - "decimals": 18, - "name": "SolidLizard", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0x463913d3a3d3d291667d53b8325c598eb88d3b0e.png", - "aggregators": ["CoinGecko", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x90a2a4c76b5d8c0bc892a69ea28aa775a8f2dd48": { - "address": "0x90a2a4c76b5d8c0bc892a69ea28aa775a8f2dd48", - "symbol": "SPYX", - "decimals": 18, - "name": "SPYX", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0x90a2a4c76b5d8c0bc892a69ea28aa775a8f2dd48.png", - "aggregators": ["CoinGecko", "Rubic", "Rango"], - "occurrences": 3 - }, - "0xe061aa40be525a13296cb4bf69f513242349d708": { - "address": "0xe061aa40be525a13296cb4bf69f513242349d708", - "symbol": "XVGARB", - "decimals": 18, - "name": "XVGARB", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0xe061aa40be525a13296cb4bf69f513242349d708.png", - "aggregators": ["CoinGecko", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x88b8d272b9f1bab7d7896f5f88f8825ce14b05bd": { - "address": "0x88b8d272b9f1bab7d7896f5f88f8825ce14b05bd", - "symbol": "ROGUE", - "decimals": 18, - "name": "Rogue", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0x88b8d272b9f1bab7d7896f5f88f8825ce14b05bd.png", - "aggregators": ["CoinGecko", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x113a05170273e9087f5d0e0cdee0388478a1546d": { - "address": "0x113a05170273e9087f5d0e0cdee0388478a1546d", - "symbol": "YFLOW", - "decimals": 18, - "name": "Yieldflow", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0x113a05170273e9087f5d0e0cdee0388478a1546d.png", - "aggregators": ["CoinGecko", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x4debfb9ed639144cf1e401674af361ffffcefb58": { - "address": "0x4debfb9ed639144cf1e401674af361ffffcefb58", - "symbol": "CADAI", - "decimals": 18, - "name": "CADAICO", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0x4debfb9ed639144cf1e401674af361ffffcefb58.png", - "aggregators": ["CoinGecko", "Rubic", "Rango"], - "occurrences": 3 - }, - "0xe1a6bda42fbafae38607598386a1050613c1a64b": { - "address": "0xe1a6bda42fbafae38607598386a1050613c1a64b", - "symbol": "ATV111", - "decimals": 18, - "name": "aarna atv111 (Arbitrum)", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0xe1a6bda42fbafae38607598386a1050613c1a64b.png", - "aggregators": ["CoinGecko", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x87ca1ac7697c1240518b464b02e92a856d81aee1": { - "address": "0x87ca1ac7697c1240518b464b02e92a856d81aee1", - "symbol": "AHTR", - "decimals": 18, - "name": "a-Hathor", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0x87ca1ac7697c1240518b464b02e92a856d81aee1.png", - "aggregators": ["CoinGecko", "Rubic", "Rango"], - "occurrences": 3 - }, - "0xcec3ba7029d54d005275d3510960cfe433811c59": { - "address": "0xcec3ba7029d54d005275d3510960cfe433811c59", - "symbol": "NERI", - "decimals": 18, - "name": "Nerite", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0xcec3ba7029d54d005275d3510960cfe433811c59.png", - "aggregators": ["CoinGecko", "Rubic", "Rango"], - "occurrences": 3 - }, - "0xb14448b48452d7ba076abeb3c505fc044deaf4e9": { - "address": "0xb14448b48452d7ba076abeb3c505fc044deaf4e9", - "symbol": "UNITE", - "decimals": 4, - "name": "Unbound Science", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0xb14448b48452d7ba076abeb3c505fc044deaf4e9.png", - "aggregators": ["CoinGecko", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x8c1ea32448e09a59f36595abec6207c9ebd590a2": { - "address": "0x8c1ea32448e09a59f36595abec6207c9ebd590a2", - "symbol": "PLUTUS", - "decimals": 18, - "name": "Plutus", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0x8c1ea32448e09a59f36595abec6207c9ebd590a2.png", - "aggregators": ["CoinGecko", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x3e76bb02286bfeaa89dd35f11253f2cbce634f91": { - "address": "0x3e76bb02286bfeaa89dd35f11253f2cbce634f91", - "symbol": "PGOLD", - "decimals": 18, - "name": "Pleasing Gold", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0x3e76bb02286bfeaa89dd35f11253f2cbce634f91.png", - "aggregators": ["CoinGecko", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x2380f2673c640fb67e2d6b55b44c62f0e0e69da9": { - "address": "0x2380f2673c640fb67e2d6b55b44c62f0e0e69da9", - "symbol": "GLDX", - "decimals": 18, - "name": "GLDX", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0x2380f2673c640fb67e2d6b55b44c62f0e0e69da9.png", - "aggregators": ["CoinGecko", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x894341be568eae3697408c420f1d0acfce6e55f9": { - "address": "0x894341be568eae3697408c420f1d0acfce6e55f9", - "symbol": "FUSD", - "decimals": 18, - "name": "FUSD", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0x894341be568eae3697408c420f1d0acfce6e55f9.png", - "aggregators": ["CoinGecko", "Rubic", "Rango"], - "occurrences": 3 - }, - "0xa753a7395cae905cd615da0b82a53e0560f250af": { - "address": "0xa753a7395cae905cd615da0b82a53e0560f250af", - "symbol": "QQQX", - "decimals": 18, - "name": "QQQX", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0xa753a7395cae905cd615da0b82a53e0560f250af.png", - "aggregators": ["CoinGecko", "Rubic", "Rango"], - "occurrences": 3 - }, - "0xd0e4fc5b430b0cac0f59b7b8b66d40d0b3f64a6b": { - "address": "0xd0e4fc5b430b0cac0f59b7b8b66d40d0b3f64a6b", - "symbol": "TRCR", - "decimals": 18, - "name": "TRCR", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0xd0e4fc5b430b0cac0f59b7b8b66d40d0b3f64a6b.png", - "aggregators": ["CoinGecko", "Rubic", "Rango"], - "occurrences": 3 - }, - "0xfdddb57878ef9d6f681ec4381dcb626b9e69ac86": { - "address": "0xfdddb57878ef9d6f681ec4381dcb626b9e69ac86", - "symbol": "TQQQX", - "decimals": 18, - "name": "TQQQX", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0xfdddb57878ef9d6f681ec4381dcb626b9e69ac86.png", - "aggregators": ["CoinGecko", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x0290a3256c939f3acb6ca5465154d94133dc5e02": { - "address": "0x0290a3256c939f3acb6ca5465154d94133dc5e02", - "symbol": "WC", - "decimals": 18, - "name": "Wildcard", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0x0290a3256c939f3acb6ca5465154d94133dc5e02.png", - "aggregators": ["CoinGecko", "Rubic", "Rango"], - "occurrences": 3 - }, - "0xc8fb643d18f1e53698cfda5c8fdf0cdc03c1dbec": { - "address": "0xc8fb643d18f1e53698cfda5c8fdf0cdc03c1dbec", - "symbol": "PUSD", - "decimals": 18, - "name": "Pleasing USD", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0xc8fb643d18f1e53698cfda5c8fdf0cdc03c1dbec.png", - "aggregators": ["CoinGecko", "Rubic", "Rango"], - "occurrences": 3 - }, - "0xe22865a7820823e27d6c630b15711b070cbd0d57": { - "address": "0xe22865a7820823e27d6c630b15711b070cbd0d57", - "symbol": "DESK", - "decimals": 18, - "name": "DESK", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0xe22865a7820823e27d6c630b15711b070cbd0d57.png", - "aggregators": ["CoinGecko", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x8a23fa9ca68226a1ea9fb2df42b9e87a1728381e": { - "address": "0x8a23fa9ca68226a1ea9fb2df42b9e87a1728381e", - "symbol": "AZEN", - "decimals": 18, - "name": "AZEN", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0x8a23fa9ca68226a1ea9fb2df42b9e87a1728381e.png", - "aggregators": ["CoinGecko", "Rubic", "Rango"], - "occurrences": 3 - }, - "0xe16e2548a576ad448fb014bbe85284d7f3542df5": { - "address": "0xe16e2548a576ad448fb014bbe85284d7f3542df5", - "symbol": "MOZ", - "decimals": 18, - "name": "Lumoz token", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0xe16e2548a576ad448fb014bbe85284d7f3542df5.png", - "aggregators": ["CoinGecko", "Rubic", "Rango"], - "occurrences": 3 - }, - "0xbd730e618bcd88c82ddee52e10275cf2f88a4777": { - "address": "0xbd730e618bcd88c82ddee52e10275cf2f88a4777", - "symbol": "VTIX", - "decimals": 18, - "name": "VTIX", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0xbd730e618bcd88c82ddee52e10275cf2f88a4777.png", - "aggregators": ["CoinGecko", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x077574441c4f8763a37a2cfee2ecb444aa60a15e": { - "address": "0x077574441c4f8763a37a2cfee2ecb444aa60a15e", - "symbol": "RCADE", - "decimals": 18, - "name": "RCADE", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0x077574441c4f8763a37a2cfee2ecb444aa60a15e.png", - "aggregators": ["CoinGecko", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x0b3547cd0e14e7d42f8921b0c370fdfd708bff6c": { - "address": "0x0b3547cd0e14e7d42f8921b0c370fdfd708bff6c", - "symbol": "MRLN", - "decimals": 18, - "name": "Merlin Token", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0x0b3547cd0e14e7d42f8921b0c370fdfd708bff6c.png", - "aggregators": ["CoinGecko", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x44f49ff0da2498bcb1d3dc7c0f999578f67fd8c6": { - "address": "0x44f49ff0da2498bcb1d3dc7c0f999578f67fd8c6", - "symbol": "CORN", - "decimals": 18, - "name": "Corn", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0x44f49ff0da2498bcb1d3dc7c0f999578f67fd8c6.png", - "aggregators": ["CoinGecko", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x1f53b7aa6f4b36b7dfdedb4bc4a14747a19cf7b1": { - "address": "0x1f53b7aa6f4b36b7dfdedb4bc4a14747a19cf7b1", - "symbol": "APU", - "decimals": 18, - "name": "APU", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0x1f53b7aa6f4b36b7dfdedb4bc4a14747a19cf7b1.png", - "aggregators": ["CoinGecko", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x4933a85b5b5466fbaf179f72d3de273c287ec2c2": { - "address": "0x4933a85b5b5466fbaf179f72d3de273c287ec2c2", - "symbol": "EURAU", - "decimals": 6, - "name": "EURAU", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0x4933a85b5b5466fbaf179f72d3de273c287ec2c2.png", - "aggregators": ["CoinGecko", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x86856814e74456893cfc8946bedcbb472b5fa856": { - "address": "0x86856814e74456893cfc8946bedcbb472b5fa856", - "symbol": "GLDT", - "decimals": 8, - "name": "GLDT", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0x86856814e74456893cfc8946bedcbb472b5fa856.png", - "aggregators": ["CoinGecko", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x00312400303d02c323295f6e8b7309bc30fb6bce": { - "address": "0x00312400303d02c323295f6e8b7309bc30fb6bce", - "symbol": "ERA", - "decimals": 18, - "name": "ERA", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0x00312400303d02c323295f6e8b7309bc30fb6bce.png", - "aggregators": ["CoinGecko", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x99f70a0e1786402a6796c6b0aa997ef340a5c6da": { - "address": "0x99f70a0e1786402a6796c6b0aa997ef340a5c6da", - "symbol": "SPKCC", - "decimals": 5, - "name": "SPKCC", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0x99f70a0e1786402a6796c6b0aa997ef340a5c6da.png", - "aggregators": ["CoinGecko", "Rubic", "Rango"], - "occurrences": 3 - }, - "0xdefa1d21c5f1cbeac00eeb54b44c7d86467cc3a3": { - "address": "0xdefa1d21c5f1cbeac00eeb54b44c7d86467cc3a3", - "symbol": "ALMANAK", - "decimals": 18, - "name": "ALMANAK", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0xdefa1d21c5f1cbeac00eeb54b44c7d86467cc3a3.png", - "aggregators": ["CoinGecko", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x76ce01f0ef25aa66cc5f1e546a005e4a63b25609": { - "address": "0x76ce01f0ef25aa66cc5f1e546a005e4a63b25609", - "symbol": "REUSD", - "decimals": 18, - "name": "REUSD", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0x76ce01f0ef25aa66cc5f1e546a005e4a63b25609.png", - "aggregators": ["CoinGecko", "Rubic", "Rango"], - "occurrences": 3 - }, - "0xb638f8eb4f242eb1883de8553998aa89624e9e81": { - "address": "0xb638f8eb4f242eb1883de8553998aa89624e9e81", - "symbol": "VNX", - "decimals": 9, - "name": "VNX", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0xb638f8eb4f242eb1883de8553998aa89624e9e81.png", - "aggregators": ["CoinGecko", "Rubic", "Rango"], - "occurrences": 3 - }, - "0xaaa0008c8cf3a7dca931adaf04336a5d808c82cc": { - "address": "0xaaa0008c8cf3a7dca931adaf04336a5d808c82cc", - "symbol": "DEJAAA", - "decimals": 18, - "name": "DeFi Janus Henderson Anemoy AAA CLO Fund", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0xaaa0008c8cf3a7dca931adaf04336a5d808c82cc.png", - "aggregators": ["CoinGecko", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x8d010bf9c26881788b4e6bf5fd1bdc358c8f90b8": { - "address": "0x8d010bf9c26881788b4e6bf5fd1bdc358c8f90b8", - "symbol": "DOT", - "decimals": 18, - "name": "Polkadot", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0x8d010bf9c26881788b4e6bf5fd1bdc358c8f90b8.png", - "aggregators": ["CoinGecko", "Rubic", "Rango"], - "occurrences": 3 - }, - "0xdd73ea766b80417c0607a3f08e34a0c415d89d56": { - "address": "0xdd73ea766b80417c0607a3f08e34a0c415d89d56", - "symbol": "WEUSD", - "decimals": 6, - "name": "WEUSD", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0xdd73ea766b80417c0607a3f08e34a0c415d89d56.png", - "aggregators": ["CoinGecko", "Rubic", "Rango"], - "occurrences": 3 - }, - "0xe7e7e741c23a4767831a56a8c99f522c5ac1e7e7": { - "address": "0xe7e7e741c23a4767831a56a8c99f522c5ac1e7e7", - "symbol": "EV", - "decimals": 18, - "name": "Everything", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0xe7e7e741c23a4767831a56a8c99f522c5ac1e7e7.png", - "aggregators": ["CoinGecko", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x2f9a35ab5ddfbc49927bfdeab98a86c53dc6e763": { - "address": "0x2f9a35ab5ddfbc49927bfdeab98a86c53dc6e763", - "symbol": "AMBRX", - "decimals": 18, - "name": "AMBRX", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0x2f9a35ab5ddfbc49927bfdeab98a86c53dc6e763.png", - "aggregators": ["CoinGecko", "Rubic", "Rango"], - "occurrences": 3 - }, - "0xa0a675d08ca63066f48408136f8a71fc65be4afc": { - "address": "0xa0a675d08ca63066f48408136f8a71fc65be4afc", - "symbol": "BZR", - "decimals": 18, - "name": "Bazaars", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0xa0a675d08ca63066f48408136f8a71fc65be4afc.png", - "aggregators": ["CoinGecko", "Rubic", "Rango"], - "occurrences": 3 - }, - "0xe72fe64840f4ef80e3ec73a1c749491b5c938cb9": { - "address": "0xe72fe64840f4ef80e3ec73a1c749491b5c938cb9", - "symbol": "NTBILL", - "decimals": 6, - "name": "NTBILL", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0xe72fe64840f4ef80e3ec73a1c749491b5c938cb9.png", - "aggregators": ["CoinGecko", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x2e412435928efe43b156caa8f4b1068729fee275": { - "address": "0x2e412435928efe43b156caa8f4b1068729fee275", - "symbol": "KING", - "decimals": 18, - "name": "KING", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0x2e412435928efe43b156caa8f4b1068729fee275.png", - "aggregators": ["CoinGecko", "Rubic", "Rango"], - "occurrences": 3 - }, - "0xa58663faef461761e44066ea26c1fcddf2927b80": { - "address": "0xa58663faef461761e44066ea26c1fcddf2927b80", - "symbol": "KOM", - "decimals": 8, - "name": "Kommunitas", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0xa58663faef461761e44066ea26c1fcddf2927b80.png", - "aggregators": ["TraderJoe", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x93c9932e4afa59201f0b5e63f7d816516f1669fe": { - "address": "0x93c9932e4afa59201f0b5e63f7d816516f1669fe", - "symbol": "FDUSD", - "decimals": 18, - "name": "FDUSD", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0x93c9932e4afa59201f0b5e63f7d816516f1669fe.png", - "aggregators": ["CoinGecko", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x5e817f2abccb9095585d26c2a3ce234a440574fc": { - "address": "0x5e817f2abccb9095585d26c2a3ce234a440574fc", - "symbol": "FRNT", - "decimals": 6, - "name": "Frontier Stable Token", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0x5e817f2abccb9095585d26c2a3ce234a440574fc.png", - "aggregators": ["CoinGecko", "Rubic", "Rango"], - "occurrences": 3 - }, - "0xecc5f868add75f4ff9fd00bbbde12c35ba2c9c89": { - "address": "0xecc5f868add75f4ff9fd00bbbde12c35ba2c9c89", - "symbol": "BOB", - "decimals": 8, - "name": "BOB", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0xecc5f868add75f4ff9fd00bbbde12c35ba2c9c89.png", - "aggregators": ["CoinGecko", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x521860bb5df5468358875266b89bfe90d990c6e7": { - "address": "0x521860bb5df5468358875266b89bfe90d990c6e7", - "symbol": "DFDVX", - "decimals": 18, - "name": "DFDVX", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0x521860bb5df5468358875266b89bfe90d990c6e7.png", - "aggregators": ["CoinGecko", "Rubic", "Rango"], - "occurrences": 3 - }, - "0xfebded1b0986a8ee107f5ab1a1c5a813491deceb": { - "address": "0xfebded1b0986a8ee107f5ab1a1c5a813491deceb", - "symbol": "CRCLX", - "decimals": 18, - "name": "CRCLX", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0xfebded1b0986a8ee107f5ab1a1c5a813491deceb.png", - "aggregators": ["CoinGecko", "Rubic", "Rango"], - "occurrences": 3 - }, - "0xd4423795fd904d9b87554940a95fb7016f172773": { - "address": "0xd4423795fd904d9b87554940a95fb7016f172773", - "symbol": "AIN", - "decimals": 18, - "name": "AIN", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0xd4423795fd904d9b87554940a95fb7016f172773.png", - "aggregators": ["CoinGecko", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x97e66d3c4d5bcd7c64e3e55af28544c9addf9281": { - "address": "0x97e66d3c4d5bcd7c64e3e55af28544c9addf9281", - "symbol": "CAPX", - "decimals": 18, - "name": "Capx", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0x97e66d3c4d5bcd7c64e3e55af28544c9addf9281.png", - "aggregators": ["CoinGecko", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x139450c2dcef827c9a2a0bb1cb5506260940c9fd": { - "address": "0x139450c2dcef827c9a2a0bb1cb5506260940c9fd", - "symbol": "SSUPERUSD", - "decimals": 6, - "name": "SSUPERUSD", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0x139450c2dcef827c9a2a0bb1cb5506260940c9fd.png", - "aggregators": ["CoinGecko", "Rubic", "Rango"], - "occurrences": 3 - }, - "0xa891b374942cde9061e044c1d19c5b5de06a68e1": { - "address": "0xa891b374942cde9061e044c1d19c5b5de06a68e1", - "symbol": "KAI", - "decimals": 18, - "name": "KAI", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0xa891b374942cde9061e044c1d19c5b5de06a68e1.png", - "aggregators": ["CoinGecko", "Rubic", "Rango"], - "occurrences": 3 - }, - "0xd4dd9e2f021bb459d5a5f6c24c12fe09c5d45553": { - "address": "0xd4dd9e2f021bb459d5a5f6c24c12fe09c5d45553", - "symbol": "ZCHF", - "decimals": 18, - "name": "ZCHF", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0xd4dd9e2f021bb459d5a5f6c24c12fe09c5d45553.png", - "aggregators": ["CoinGecko", "Rubic", "Rango"], - "occurrences": 3 - }, - "0xf4f447e6afa04c9d11ef0e2fc0d7f19c24ee55de": { - "address": "0xf4f447e6afa04c9d11ef0e2fc0d7f19c24ee55de", - "symbol": "VYUSD", - "decimals": 18, - "name": "VYUSD", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0xf4f447e6afa04c9d11ef0e2fc0d7f19c24ee55de.png", - "aggregators": ["CoinGecko", "Rubic", "Rango"], - "occurrences": 3 - }, - "0xb4818bb69478730ef4e33cc068dd94278e2766cb": { - "address": "0xb4818bb69478730ef4e33cc068dd94278e2766cb", - "symbol": "SATUSD", - "decimals": 18, - "name": "SATUSD", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0xb4818bb69478730ef4e33cc068dd94278e2766cb.png", - "aggregators": ["CoinGecko", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x9b8df6e244526ab5f6e6400d331db28c8fdddb55": { - "address": "0x9b8df6e244526ab5f6e6400d331db28c8fdddb55", - "symbol": "USOL", - "decimals": 18, - "name": "Wrapped Solana (Universal)", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0x9b8df6e244526ab5f6e6400d331db28c8fdddb55.png", - "aggregators": ["CoinGecko", "Rubic", "Rango"], - "occurrences": 3 - }, - "0xb0505e5a99abd03d94a1169e638b78edfed26ea4": { - "address": "0xb0505e5a99abd03d94a1169e638b78edfed26ea4", - "symbol": "USUI", - "decimals": 18, - "name": "Sui (Universal)", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0xb0505e5a99abd03d94a1169e638b78edfed26ea4.png", - "aggregators": ["CoinGecko", "Rubic", "Rango"], - "occurrences": 3 - }, - "0xe333e7754a2dc1e020a162ecab019254b9dab653": { - "address": "0xe333e7754a2dc1e020a162ecab019254b9dab653", - "symbol": "XSGD", - "decimals": 6, - "name": "XSGD", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0xe333e7754a2dc1e020a162ecab019254b9dab653.png", - "aggregators": ["CoinGecko", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x2615a94df961278dcbc41fb0a54fec5f10a693ae": { - "address": "0x2615a94df961278dcbc41fb0a54fec5f10a693ae", - "symbol": "UXRP", - "decimals": 18, - "name": "Wrapped XRP (Universal)", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0x2615a94df961278dcbc41fb0a54fec5f10a693ae.png", - "aggregators": ["CoinGecko", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x11bf4f05eb28b802ed3ab672594decb20ffe2313": { - "address": "0x11bf4f05eb28b802ed3ab672594decb20ffe2313", - "symbol": "AURY", - "decimals": 9, - "name": "Aury", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0x11bf4f05eb28b802ed3ab672594decb20ffe2313.png", - "aggregators": ["TraderJoe", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x1a5b0aaf478bf1fda7b934c76e7692d722982a6d": { - "address": "0x1a5b0aaf478bf1fda7b934c76e7692d722982a6d", - "symbol": "BFR", - "decimals": 18, - "name": "Buffer Token", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0x1a5b0aaf478bf1fda7b934c76e7692d722982a6d.png", - "aggregators": ["TraderJoe", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x27d8de4c30ffde34e982482ae504fc7f23061f61": { - "address": "0x27d8de4c30ffde34e982482ae504fc7f23061f61", - "symbol": "MMT", - "decimals": 18, - "name": "MyMetaTrader Token", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0x27d8de4c30ffde34e982482ae504fc7f23061f61.png", - "aggregators": ["TraderJoe", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x4aa81d7ab59c775fe6f9f45e6941a0fb8cd692a6": { - "address": "0x4aa81d7ab59c775fe6f9f45e6941a0fb8cd692a6", - "symbol": "MILKTIA", - "decimals": 6, - "name": "milkTIA", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0x4aa81d7ab59c775fe6f9f45e6941a0fb8cd692a6.png", - "aggregators": ["TraderJoe", "Rubic", "Squid"], - "occurrences": 3 - }, - "0xad4b9c1fbf4923061814dd9d5732eb703faa53d4": { - "address": "0xad4b9c1fbf4923061814dd9d5732eb703faa53d4", - "symbol": "WNT", - "decimals": 18, - "name": "Wicrypt Network Token", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0xad4b9c1fbf4923061814dd9d5732eb703faa53d4.png", - "aggregators": ["TraderJoe", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x03569cc076654f82679c4ba2124d64774781b01d": { - "address": "0x03569cc076654f82679c4ba2124d64774781b01d", - "symbol": "BOLD", - "decimals": 18, - "name": "BOLD", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0x03569cc076654f82679c4ba2124d64774781b01d.png", - "aggregators": ["LiFi", "Rubic", "Rango"], - "occurrences": 3 - }, - "0xa6d7d0e650aa40ffa42d845a354c12c2bc0ab15f": { - "address": "0xa6d7d0e650aa40ffa42d845a354c12c2bc0ab15f", - "symbol": "MMY", - "decimals": 18, - "name": "MMY", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0xa6d7d0e650aa40ffa42d845a354c12c2bc0ab15f.png", - "aggregators": ["LiFi", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x9efcfc5b49390fc3fb9b58607d2e89445bb380bf": { - "address": "0x9efcfc5b49390fc3fb9b58607d2e89445bb380bf", - "symbol": "ABCRAM", - "decimals": 18, - "name": "abcRAM", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0x9efcfc5b49390fc3fb9b58607d2e89445bb380bf.png", - "aggregators": ["LiFi", "Rubic", "Rango"], - "occurrences": 3 - }, - "0xa88a1ed0bac18727a615299ce5f557b8220a33d7": { - "address": "0xa88a1ed0bac18727a615299ce5f557b8220a33d7", - "symbol": "WCROTCH", - "decimals": 18, - "name": "WCrotch", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0xa88a1ed0bac18727a615299ce5f557b8220a33d7.png", - "aggregators": ["LiFi", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x4fb21b1dbd1da7616003ff3a8eb57aeab3d241f0": { - "address": "0x4fb21b1dbd1da7616003ff3a8eb57aeab3d241f0", - "symbol": "PACT", - "decimals": 18, - "name": "impactMarket", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0x4fb21b1dbd1da7616003ff3a8eb57aeab3d241f0.png", - "aggregators": ["Socket", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x8ed4191f81f1e1d24a8a1195267d024d9358c9d7": { - "address": "0x8ed4191f81f1e1d24a8a1195267d024d9358c9d7", - "symbol": "MAGNET", - "decimals": 18, - "name": "Magnethereum", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0x8ed4191f81f1e1d24a8a1195267d024d9358c9d7.png", - "aggregators": ["Socket", "Rubic", "SushiSwap"], - "occurrences": 3 - }, - "0xdb40357fbc1eb1038c5df94c1cd7b7fd3f434480": { - "address": "0xdb40357fbc1eb1038c5df94c1cd7b7fd3f434480", - "symbol": "SSDX", - "decimals": 18, - "name": "SpunkySDX", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0xdb40357fbc1eb1038c5df94c1cd7b7fd3f434480.png", - "aggregators": ["Socket", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x188fb5f5ae5bbe4154d5778f2bbb2fb985c94d25": { - "address": "0x188fb5f5ae5bbe4154d5778f2bbb2fb985c94d25", - "symbol": "OBX", - "decimals": 18, - "name": "OpenBlox", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0x188fb5f5ae5bbe4154d5778f2bbb2fb985c94d25.png", - "aggregators": ["Rubic", "Rango", "Sonarwatch"], - "occurrences": 3 - }, - "0x577fd586c9e6ba7f2e85e025d5824dbe19896656": { - "address": "0x577fd586c9e6ba7f2e85e025d5824dbe19896656", - "symbol": "SYNO", - "decimals": 18, - "name": "SYNO Finance", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0x577fd586c9e6ba7f2e85e025d5824dbe19896656.png", - "aggregators": ["Rubic", "Rango", "Sonarwatch"], - "occurrences": 3 - }, - "0xdc8184ba488e949815d4aafb35b3c56ad03b4179": { - "address": "0xdc8184ba488e949815d4aafb35b3c56ad03b4179", - "symbol": "ROSX", - "decimals": 18, - "name": "Roseon", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0xdc8184ba488e949815d4aafb35b3c56ad03b4179.png", - "aggregators": ["Rubic", "Rango", "Sonarwatch"], - "occurrences": 3 - }, - "0x43ab8f7d2a8dd4102ccea6b438f6d747b1b9f034": { - "address": "0x43ab8f7d2a8dd4102ccea6b438f6d747b1b9f034", - "symbol": "SVY", - "decimals": 18, - "name": "Savvy", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0x43ab8f7d2a8dd4102ccea6b438f6d747b1b9f034.png", - "aggregators": ["Rubic", "Rango", "SushiSwap"], - "occurrences": 3 - }, - "0x6b5b5eac259e883b484ed879d43dd4d616a90e65": { - "address": "0x6b5b5eac259e883b484ed879d43dd4d616a90e65", - "symbol": "KNOW", - "decimals": 18, - "name": "The Knowers", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0x6b5b5eac259e883b484ed879d43dd4d616a90e65.png", - "aggregators": ["Rubic", "Rango", "Sonarwatch"], - "occurrences": 3 - }, - "0x3858567501fbf030bd859ee831610fcc710319f4": { - "address": "0x3858567501fbf030bd859ee831610fcc710319f4", - "symbol": "NEXD", - "decimals": 18, - "name": "Nexade", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0x3858567501fbf030bd859ee831610fcc710319f4.png", - "aggregators": ["Rubic", "Rango", "Sonarwatch"], - "occurrences": 3 - }, - "0x7fb7ede54259cb3d4e1eaf230c7e2b1ffc951e9a": { - "address": "0x7fb7ede54259cb3d4e1eaf230c7e2b1ffc951e9a", - "symbol": "NUMA", - "decimals": 18, - "name": "Numa", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0x7fb7ede54259cb3d4e1eaf230c7e2b1ffc951e9a.png", - "aggregators": ["Rubic", "Rango", "Sonarwatch"], - "occurrences": 3 - }, - "0x16a500aec6c37f84447ef04e66c57cfc6254cf92": { - "address": "0x16a500aec6c37f84447ef04e66c57cfc6254cf92", - "symbol": "UMJA", - "decimals": 18, - "name": "Umoja", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0x16a500aec6c37f84447ef04e66c57cfc6254cf92.png", - "aggregators": ["Rubic", "Rango", "Sonarwatch"], - "occurrences": 3 - }, - "0x59debed8d46a0cb823d8be8b957add987ead39aa": { - "address": "0x59debed8d46a0cb823d8be8b957add987ead39aa", - "symbol": "QUACK", - "decimals": 18, - "name": "Quack Token", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0x59debed8d46a0cb823d8be8b957add987ead39aa.png", - "aggregators": ["Rubic", "Squid", "Rango"], - "occurrences": 3 - }, - "0x0bbf664d46becc28593368c97236faa0fb397595": { - "address": "0x0bbf664d46becc28593368c97236faa0fb397595", - "symbol": "KNOX", - "decimals": 18, - "name": "KNOX Dollar", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0x0bbf664d46becc28593368c97236faa0fb397595.png", - "aggregators": ["Rubic", "Rango", "Sonarwatch"], - "occurrences": 3 - }, - "0x8096ad3107715747361acefe685943bfb427c722": { - "address": "0x8096ad3107715747361acefe685943bfb427c722", - "symbol": "CVOL", - "decimals": 18, - "name": "Crypto Volatility Token", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0x8096ad3107715747361acefe685943bfb427c722.png", - "aggregators": ["Rubic", "Rango", "SushiSwap"], - "occurrences": 3 - }, - "0x8c6bd546fb8b53fe371654a0e54d7a5bd484b319": { - "address": "0x8c6bd546fb8b53fe371654a0e54d7a5bd484b319", - "symbol": "GOA", - "decimals": 18, - "name": "Goat Protocol", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0x8c6bd546fb8b53fe371654a0e54d7a5bd484b319.png", - "aggregators": ["Rubic", "Rango", "Sonarwatch"], - "occurrences": 3 - }, - "0xcf1d7d1a7bbf5d11ccfe717fc6a9a45c8dd9c7be": { - "address": "0xcf1d7d1a7bbf5d11ccfe717fc6a9a45c8dd9c7be", - "symbol": "ILOCK", - "decimals": 18, - "name": "Interlock", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0xcf1d7d1a7bbf5d11ccfe717fc6a9a45c8dd9c7be.png", - "aggregators": ["Rubic", "Rango", "Sonarwatch"], - "occurrences": 3 - }, - "0x1310952bc5594852459ee45bfd0df70b34ac5509": { - "address": "0x1310952bc5594852459ee45bfd0df70b34ac5509", - "symbol": "PRF", - "decimals": 18, - "name": "Parifi", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0x1310952bc5594852459ee45bfd0df70b34ac5509.png", - "aggregators": ["Rubic", "Rango", "Sonarwatch"], - "occurrences": 3 - }, - "0x763a716dd74a79d037e57f993fe3047271879bc1": { - "address": "0x763a716dd74a79d037e57f993fe3047271879bc1", - "symbol": "QODA", - "decimals": 18, - "name": "QODA", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0x763a716dd74a79d037e57f993fe3047271879bc1.png", - "aggregators": ["Rubic", "Rango", "Sonarwatch"], - "occurrences": 3 - }, - "0x1f2b426417663ac76eb92149a037753a45969f31": { - "address": "0x1f2b426417663ac76eb92149a037753a45969f31", - "symbol": "RWAS", - "decimals": 18, - "name": "RWA Finance", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0x1f2b426417663ac76eb92149a037753a45969f31.png", - "aggregators": ["Rubic", "Rango", "Sonarwatch"], - "occurrences": 3 - }, - "0x76bc2e765414e6c8b596c0f52c4240f80268f41d": { - "address": "0x76bc2e765414e6c8b596c0f52c4240f80268f41d", - "symbol": "UIBT", - "decimals": 18, - "name": "Unibit", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0x76bc2e765414e6c8b596c0f52c4240f80268f41d.png", - "aggregators": ["Rubic", "Rango", "Sonarwatch"], - "occurrences": 3 - }, - "0x346c574c56e1a4aaa8dc88cda8f7eb12b39947ab": { - "address": "0x346c574c56e1a4aaa8dc88cda8f7eb12b39947ab", - "symbol": "SOLVBTC.BBN", - "decimals": 18, - "name": "SolvBTC Babylon", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0x346c574c56e1a4aaa8dc88cda8f7eb12b39947ab.png", - "aggregators": [ - "CoinGecko", - "LiFi", - "Socket", - "Rubic", - "Squid", - "Rango", - "Sonarwatch", - "SushiSwap" - ], - "occurrences": 8 - }, - "0xe50fa9b3c56ffb159cb0fca61f5c9d750e8128c8": { - "address": "0xe50fa9b3c56ffb159cb0fca61f5c9d750e8128c8", - "symbol": "AWETH", - "decimals": 18, - "name": "Aave v3 WETH", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0xe50fa9b3c56ffb159cb0fca61f5c9d750e8128c8.png", - "aggregators": [ - "CoinGecko", - "1inch", - "LiFi", - "Rubic", - "Squid", - "Rango", - "Sonarwatch" - ], - "occurrences": 7 - }, - "0x8ffdf2de812095b1d19cb146e4c004587c0a0692": { - "address": "0x8ffdf2de812095b1d19cb146e4c004587c0a0692", - "symbol": "ALUSD", - "decimals": 18, - "name": "Aave v3 LUSD", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0x8ffdf2de812095b1d19cb146e4c004587c0a0692.png", - "aggregators": [ - "CoinGecko", - "1inch", - "LiFi", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 6 - }, - "0x513c7e3a9c69ca3e22550ef58ac1c0088e918fff": { - "address": "0x513c7e3a9c69ca3e22550ef58ac1c0088e918fff", - "symbol": "AWSTETH", - "decimals": 18, - "name": "Aave v3 wstETH", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0x513c7e3a9c69ca3e22550ef58ac1c0088e918fff.png", - "aggregators": [ - "CoinGecko", - "1inch", - "LiFi", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 6 - }, - "0x6d80113e533a2c0fe82eabd35f1875dcea89ea97": { - "address": "0x6d80113e533a2c0fe82eabd35f1875dcea89ea97", - "symbol": "AEURS", - "decimals": 2, - "name": "Aave v3 EURS", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0x6d80113e533a2c0fe82eabd35f1875dcea89ea97.png", - "aggregators": [ - "TraderJoe", - "1inch", - "LiFi", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 6 - }, - "0x6533afac2e7bccb20dca161449a13a32d391fb00": { - "address": "0x6533afac2e7bccb20dca161449a13a32d391fb00", - "symbol": "AARB", - "decimals": 18, - "name": "Aave v3 ARB", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0x6533afac2e7bccb20dca161449a13a32d391fb00.png", - "aggregators": [ - "TraderJoe", - "1inch", - "LiFi", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 6 - }, - "0x7f9fbf9bdd3f4105c478b996b648fe6e828a1e98": { - "address": "0x7f9fbf9bdd3f4105c478b996b648fe6e828a1e98", - "symbol": "APE", - "decimals": 18, - "name": "ApeCoin", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0x7f9fbf9bdd3f4105c478b996b648fe6e828a1e98.png", - "aggregators": [ - "TraderJoe", - "LiFi", - "Socket", - "Rubic", - "Squid", - "Rango" - ], - "occurrences": 6 - }, - "0x6e401189c8a68d05562c9bab7f674f910821eacf": { - "address": "0x6e401189c8a68d05562c9bab7f674f910821eacf", - "symbol": "KERNEL", - "decimals": 18, - "name": "KernelDAO", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0x6e401189c8a68d05562c9bab7f674f910821eacf.png", - "aggregators": [ - "CoinGecko", - "LiFi", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 6 - }, - "0x79bbf4508b1391af3a0f4b30bb5fc4aa9ab0e07c": { - "address": "0x79bbf4508b1391af3a0f4b30bb5fc4aa9ab0e07c", - "symbol": "ANON", - "decimals": 18, - "name": "ANON", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0x79bbf4508b1391af3a0f4b30bb5fc4aa9ab0e07c.png", - "aggregators": [ - "CoinGecko", - "LiFi", - "Socket", - "Rubic", - "Squid", - "Rango" - ], - "occurrences": 6 - }, - "0x968be3f7bfef0f8edc3c1ad90232ebb0da0867aa": { - "address": "0x968be3f7bfef0f8edc3c1ad90232ebb0da0867aa", - "symbol": "SWORLD", - "decimals": 18, - "name": "Seedworld", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0x968be3f7bfef0f8edc3c1ad90232ebb0da0867aa.png", - "aggregators": [ - "TraderJoe", - "Socket", - "Rubic", - "Squid", - "Rango", - "Sonarwatch" - ], - "occurrences": 6 - }, - "0x724dc807b04555b71ed48a6896b6f41593b8c637": { - "address": "0x724dc807b04555b71ed48a6896b6f41593b8c637", - "symbol": "AUSDC", - "decimals": 6, - "name": "Aave v3 USDC", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0x724dc807b04555b71ed48a6896b6f41593b8c637.png", - "aggregators": [ - "Metamask", - "1inch", - "LiFi", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 6 - }, - "0x1b01514a2b3cdef16fd3c680a818a0ab97da8a09": { - "address": "0x1b01514a2b3cdef16fd3c680a818a0ab97da8a09", - "symbol": "FPI", - "decimals": 18, - "name": "Frax Price Index", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0x1b01514a2b3cdef16fd3c680a818a0ab97da8a09.png", - "aggregators": [ - "TraderJoe", - "LiFi", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 6 - }, - "0x078f358208685046a11c85e8ad32895ded33a249": { - "address": "0x078f358208685046a11c85e8ad32895ded33a249", - "symbol": "AWBTC", - "decimals": 8, - "name": "Aave v3 WBTC", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0x078f358208685046a11c85e8ad32895ded33a249.png", - "aggregators": [ - "TraderJoe", - "1inch", - "LiFi", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 6 - }, - "0x6ab707aca953edaefbc4fd23ba73294241490620": { - "address": "0x6ab707aca953edaefbc4fd23ba73294241490620", - "symbol": "AUSDT", - "decimals": 6, - "name": "Aave v3 USDT", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0x6ab707aca953edaefbc4fd23ba73294241490620.png", - "aggregators": [ - "Metamask", - "1inch", - "LiFi", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 6 - }, - "0xf763fa322dc58dee588252fafee5f448e863b633": { - "address": "0xf763fa322dc58dee588252fafee5f448e863b633", - "symbol": "SWTH", - "decimals": 8, - "name": "Carbon Protocol", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0xf763fa322dc58dee588252fafee5f448e863b633.png", - "aggregators": [ - "TraderJoe", - "LiFi", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 6 - }, - "0x8eb270e296023e9d92081fdf967ddd7878724424": { - "address": "0x8eb270e296023e9d92081fdf967ddd7878724424", - "symbol": "ARETH", - "decimals": 18, - "name": "Aave v3 rETH", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0x8eb270e296023e9d92081fdf967ddd7878724424.png", - "aggregators": [ - "TraderJoe", - "1inch", - "LiFi", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 6 - }, - "0x82e64f49ed5ec1bc6e43dad4fc8af9bb3a2312ee": { - "address": "0x82e64f49ed5ec1bc6e43dad4fc8af9bb3a2312ee", - "symbol": "ADAI", - "decimals": 18, - "name": "Aave v3 DAI", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0x82e64f49ed5ec1bc6e43dad4fc8af9bb3a2312ee.png", - "aggregators": [ - "Metamask", - "1inch", - "LiFi", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 6 - }, - "0xf329e36c7bf6e5e86ce2150875a84ce77f477375": { - "address": "0xf329e36c7bf6e5e86ce2150875a84ce77f477375", - "symbol": "AAAVE", - "decimals": 18, - "name": "Aave v3 AAVE", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0xf329e36c7bf6e5e86ce2150875a84ce77f477375.png", - "aggregators": [ - "TraderJoe", - "1inch", - "LiFi", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 6 - }, - "0x191c10aa4af7c30e871e70c95db0e4eb77237530": { - "address": "0x191c10aa4af7c30e871e70c95db0e4eb77237530", - "symbol": "ALINK", - "decimals": 18, - "name": "Aave v3 LINK", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0x191c10aa4af7c30e871e70c95db0e4eb77237530.png", - "aggregators": [ - "TraderJoe", - "1inch", - "LiFi", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 6 - }, - "0x6d7187220f769bde541ff51dd37ee07416f861d2": { - "address": "0x6d7187220f769bde541ff51dd37ee07416f861d2", - "symbol": "NSTR", - "decimals": 18, - "name": "Nostra", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0x6d7187220f769bde541ff51dd37ee07416f861d2.png", - "aggregators": [ - "CoinGecko", - "LiFi", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 6 - }, - "0x9fb9a33956351cf4fa040f65a13b835a3c8764e3": { - "address": "0x9fb9a33956351cf4fa040f65a13b835a3c8764e3", - "symbol": "MULTI", - "decimals": 18, - "name": "Multichain", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0x9fb9a33956351cf4fa040f65a13b835a3c8764e3.png", - "aggregators": [ - "TraderJoe", - "LiFi", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 6 - }, - "0x6314c31a7a1652ce482cffe247e9cb7c3f4bb9af": { - "address": "0x6314c31a7a1652ce482cffe247e9cb7c3f4bb9af", - "symbol": "1INCH", - "decimals": 18, - "name": "1INCH Token", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0x6314c31a7a1652ce482cffe247e9cb7c3f4bb9af.png", - "aggregators": ["UniswapLabs", "LiFi", "Socket", "Rubic", "Rango"], - "occurrences": 5 - }, - "0x3a1429d50e0cbbc45c997af600541fe1cc3d2923": { - "address": "0x3a1429d50e0cbbc45c997af600541fe1cc3d2923", - "symbol": "FORT", - "decimals": 18, - "name": "Forta", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0x3a1429d50e0cbbc45c997af600541fe1cc3d2923.png", - "aggregators": ["CoinGecko", "LiFi", "Socket", "Rubic", "Rango"], - "occurrences": 5 - }, - "0x91b468fe3dce581d7a6cfe34189f1314b6862ed6": { - "address": "0x91b468fe3dce581d7a6cfe34189f1314b6862ed6", - "symbol": "MXC", - "decimals": 18, - "name": "MXCToken", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0x91b468fe3dce581d7a6cfe34189f1314b6862ed6.png", - "aggregators": ["UniswapLabs", "LiFi", "Socket", "Rubic", "Rango"], - "occurrences": 5 - }, - "0xa2d52a05b8bead5d824df54dd1aa63188b37a5e7": { - "address": "0xa2d52a05b8bead5d824df54dd1aa63188b37a5e7", - "symbol": "ONDO", - "decimals": 18, - "name": "Ondo Finance", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0xa2d52a05b8bead5d824df54dd1aa63188b37a5e7.png", - "aggregators": ["UniswapLabs", "LiFi", "Socket", "Rubic", "Rango"], - "occurrences": 5 - }, - "0xc7557c73e0eca2e1bf7348bb6874aee63c7eff85": { - "address": "0xc7557c73e0eca2e1bf7348bb6874aee63c7eff85", - "symbol": "QNT", - "decimals": 18, - "name": "Quant", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0xc7557c73e0eca2e1bf7348bb6874aee63c7eff85.png", - "aggregators": ["UniswapLabs", "LiFi", "Socket", "Rubic", "Rango"], - "occurrences": 5 - }, - "0xcf78572a8fe97b2b9a4b9709f6a7d9a863c1b8e0": { - "address": "0xcf78572a8fe97b2b9a4b9709f6a7d9a863c1b8e0", - "symbol": "RARI", - "decimals": 18, - "name": "Rarible", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0xcf78572a8fe97b2b9a4b9709f6a7d9a863c1b8e0.png", - "aggregators": ["UniswapLabs", "LiFi", "Socket", "Rubic", "Rango"], - "occurrences": 5 - }, - "0x707f635951193ddafbb40971a0fcaab8a6415160": { - "address": "0x707f635951193ddafbb40971a0fcaab8a6415160", - "symbol": "SNT", - "decimals": 18, - "name": "Status", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0x707f635951193ddafbb40971a0fcaab8a6415160.png", - "aggregators": ["UniswapLabs", "LiFi", "Socket", "Rubic", "Rango"], - "occurrences": 5 - }, - "0xb2be52744a804cc732d606817c2572c5a3b264e7": { - "address": "0xb2be52744a804cc732d606817c2572c5a3b264e7", - "symbol": "SOCKS", - "decimals": 18, - "name": "Unisocks", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0xb2be52744a804cc732d606817c2572c5a3b264e7.png", - "aggregators": ["UniswapLabs", "LiFi", "Socket", "Rubic", "Rango"], - "occurrences": 5 - }, - "0xb74da9fe2f96b9e0a5f4a3cf0b92dd2bec617124": { - "address": "0xb74da9fe2f96b9e0a5f4a3cf0b92dd2bec617124", - "symbol": "SOL", - "decimals": 9, - "name": "Wrapped SOL (Wormhole)", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0xb74da9fe2f96b9e0a5f4a3cf0b92dd2bec617124.png", - "aggregators": ["UniswapLabs", "LiFi", "Socket", "Rubic", "Rango"], - "occurrences": 5 - }, - "0x32df62dc3aed2cd6224193052ce665dc18165841": { - "address": "0x32df62dc3aed2cd6224193052ce665dc18165841", - "symbol": "DLP", - "decimals": 18, - "name": "Balancer 80 RDNT 20 WETH", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0x32df62dc3aed2cd6224193052ce665dc18165841.png", - "aggregators": [ - "TraderJoe", - "LiFi", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0xac28c9178acc8ba4a11a29e013a3a2627086e422": { - "address": "0xac28c9178acc8ba4a11a29e013a3a2627086e422", - "symbol": "BMSTR", - "decimals": 18, - "name": "Backed MicroStrategy", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0xac28c9178acc8ba4a11a29e013a3a2627086e422.png", - "aggregators": [ - "CoinGecko", - "LiFi", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x14a5f2872396802c3cc8942a39ab3e4118ee5038": { - "address": "0x14a5f2872396802c3cc8942a39ab3e4118ee5038", - "symbol": "BTSLA", - "decimals": 18, - "name": "Backed Tesla", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0x14a5f2872396802c3cc8942a39ab3e4118ee5038.png", - "aggregators": [ - "CoinGecko", - "LiFi", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x09e18590e8f76b6cf471b3cd75fe1a1a9d2b2c2b": { - "address": "0x09e18590e8f76b6cf471b3cd75fe1a1a9d2b2c2b", - "symbol": "AIDOGE", - "decimals": 6, - "name": "ArbDoge AI", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0x09e18590e8f76b6cf471b3cd75fe1a1a9d2b2c2b.png", - "aggregators": [ - "TraderJoe", - "Rubic", - "Squid", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x0b63c61bba4a876a6eb8b5e596800f7649a9b71e": { - "address": "0x0b63c61bba4a876a6eb8b5e596800f7649a9b71e", - "symbol": "SECT", - "decimals": 18, - "name": "Sector", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0x0b63c61bba4a876a6eb8b5e596800f7649a9b71e.png", - "aggregators": [ - "TraderJoe", - "Rubic", - "Squid", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0xaf7e3f16d747e77e927dc94287f86eb95a64d83d": { - "address": "0xaf7e3f16d747e77e927dc94287f86eb95a64d83d", - "symbol": "VEMP", - "decimals": 18, - "name": "VEMP Horizon", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0xaf7e3f16d747e77e927dc94287f86eb95a64d83d.png", - "aggregators": [ - "CoinGecko", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0xa34c5e0abe843e10461e2c9586ea03e55dbcc495": { - "address": "0xa34c5e0abe843e10461e2c9586ea03e55dbcc495", - "symbol": "BNVDA", - "decimals": 18, - "name": "Backed NVIDIA", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0xa34c5e0abe843e10461e2c9586ea03e55dbcc495.png", - "aggregators": [ - "CoinGecko", - "LiFi", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0xe4db3652ac7f88c5712717fd774676bf4aa56769": { - "address": "0xe4db3652ac7f88c5712717fd774676bf4aa56769", - "symbol": "MEED", - "decimals": 18, - "name": "Meeds DAO", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0xe4db3652ac7f88c5712717fd774676bf4aa56769.png", - "aggregators": [ - "CoinGecko", - "LiFi", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x46777c76dbbe40fabb2aab99e33ce20058e76c59": { - "address": "0x46777c76dbbe40fabb2aab99e33ce20058e76c59", - "symbol": "L3", - "decimals": 18, - "name": "Layer3", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0x46777c76dbbe40fabb2aab99e33ce20058e76c59.png", - "aggregators": ["CoinGecko", "LiFi", "Socket", "Rubic", "Rango"], - "occurrences": 5 - }, - "0x9134283afaf6e1b45689ec0b0c82ff2b232bcb30": { - "address": "0x9134283afaf6e1b45689ec0b0c82ff2b232bcb30", - "symbol": "KIT", - "decimals": 18, - "name": "DexKit", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0x9134283afaf6e1b45689ec0b0c82ff2b232bcb30.png", - "aggregators": [ - "CoinGecko", - "LiFi", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0xf197ffc28c23e0309b5559e7a166f2c6164c80aa": { - "address": "0xf197ffc28c23e0309b5559e7a166f2c6164c80aa", - "symbol": "MXNB", - "decimals": 6, - "name": "MXNB", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0xf197ffc28c23e0309b5559e7a166f2c6164c80aa.png", - "aggregators": ["CoinGecko", "LiFi", "Rubic", "Squid", "Rango"], - "occurrences": 5 - }, - "0x7e40b3e0fd0473e0240288d2b7618ac6f0c17e1b": { - "address": "0x7e40b3e0fd0473e0240288d2b7618ac6f0c17e1b", - "symbol": "USDLR", - "decimals": 6, - "name": "Stable USDLR", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0x7e40b3e0fd0473e0240288d2b7618ac6f0c17e1b.png", - "aggregators": [ - "CoinGecko", - "LiFi", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x27bc2757fab0b8ab406016d1f71d8123452095d3": { - "address": "0x27bc2757fab0b8ab406016d1f71d8123452095d3", - "symbol": "LAND", - "decimals": 18, - "name": "Landshare", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0x27bc2757fab0b8ab406016d1f71d8123452095d3.png", - "aggregators": [ - "CoinGecko", - "LiFi", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x8bf591eae535f93a242d5a954d3cde648b48a5a8": { - "address": "0x8bf591eae535f93a242d5a954d3cde648b48a5a8", - "symbol": "SUUSD", - "decimals": 18, - "name": "Sumer.Money suUSD", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0x8bf591eae535f93a242d5a954d3cde648b48a5a8.png", - "aggregators": [ - "TraderJoe", - "LiFi", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x8888888888f004100c0353d657be6300587a6ccd": { - "address": "0x8888888888f004100c0353d657be6300587a6ccd", - "symbol": "ACS", - "decimals": 18, - "name": "ACryptoS", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0x8888888888f004100c0353d657be6300587a6ccd.png", - "aggregators": [ - "CoinGecko", - "LiFi", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x51c601dc278eb2cfea8e52c4caa35b3d6a9a2c26": { - "address": "0x51c601dc278eb2cfea8e52c4caa35b3d6a9a2c26", - "symbol": "XCHNG", - "decimals": 18, - "name": "Chainge", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0x51c601dc278eb2cfea8e52c4caa35b3d6a9a2c26.png", - "aggregators": [ - "CoinGecko", - "LiFi", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0xb829b68f57cc546da7e5806a929e53be32a4625d": { - "address": "0xb829b68f57cc546da7e5806a929e53be32a4625d", - "symbol": "AXLETH", - "decimals": 18, - "name": "Axelar Wrapped Ether", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0xb829b68f57cc546da7e5806a929e53be32a4625d.png", - "aggregators": [ - "CoinGecko", - "Rubic", - "Squid", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x7f5373ae26c3e8ffc4c77b7255df7ec1a9af52a6": { - "address": "0x7f5373ae26c3e8ffc4c77b7255df7ec1a9af52a6", - "symbol": "AXLUSDT", - "decimals": 6, - "name": "Bridged Tether (Axelar)", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0x7f5373ae26c3e8ffc4c77b7255df7ec1a9af52a6.png", - "aggregators": [ - "TraderJoe", - "Rubic", - "Squid", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x7be5dd337cc6ce3e474f64e2a92a566445290864": { - "address": "0x7be5dd337cc6ce3e474f64e2a92a566445290864", - "symbol": "OLE", - "decimals": 18, - "name": "OpenLeverage", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0x7be5dd337cc6ce3e474f64e2a92a566445290864.png", - "aggregators": [ - "TraderJoe", - "LiFi", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x6688b00f0c23a4a546beaae51a7c90c439895d48": { - "address": "0x6688b00f0c23a4a546beaae51a7c90c439895d48", - "symbol": "TAROT", - "decimals": 18, - "name": "Tarot V1", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0x6688b00f0c23a4a546beaae51a7c90c439895d48.png", - "aggregators": [ - "TraderJoe", - "LiFi", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0xdbb5cf12408a3ac17d668037ce289f9ea75439d7": { - "address": "0xdbb5cf12408a3ac17d668037ce289f9ea75439d7", - "symbol": "WMTX", - "decimals": 6, - "name": "World Mobile Token", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0xdbb5cf12408a3ac17d668037ce289f9ea75439d7.png", - "aggregators": ["Metamask", "LiFi", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 5 - }, - "0xb1bc21f748ae2be95674876710bc6d78235480e0": { - "address": "0xb1bc21f748ae2be95674876710bc6d78235480e0", - "symbol": "HORD", - "decimals": 18, - "name": "Hord", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0xb1bc21f748ae2be95674876710bc6d78235480e0.png", - "aggregators": [ - "TraderJoe", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0xf0dfad1817b5ba73726b02ab34dd4b4b00bcd392": { - "address": "0xf0dfad1817b5ba73726b02ab34dd4b4b00bcd392", - "symbol": "MNTO", - "decimals": 18, - "name": "Minato", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0xf0dfad1817b5ba73726b02ab34dd4b4b00bcd392.png", - "aggregators": [ - "TraderJoe", - "LiFi", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x38d693ce1df5aadf7bc62595a37d667ad57922e5": { - "address": "0x38d693ce1df5aadf7bc62595a37d667ad57922e5", - "symbol": "AFRAX", - "decimals": 18, - "name": "Aave v3 FRAX", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0x38d693ce1df5aadf7bc62595a37d667ad57922e5.png", - "aggregators": [ - "TraderJoe", - "1inch", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x848e0ba28b637e8490d88bae51fa99c87116409b": { - "address": "0x848e0ba28b637e8490d88bae51fa99c87116409b", - "symbol": "AGVE", - "decimals": 18, - "name": "Agave", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0x848e0ba28b637e8490d88bae51fa99c87116409b.png", - "aggregators": [ - "TraderJoe", - "LiFi", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0xbbcb0356bb9e6b3faa5cbf9e5f36185d53403ac9": { - "address": "0xbbcb0356bb9e6b3faa5cbf9e5f36185d53403ac9", - "symbol": "BCOIN", - "decimals": 18, - "name": "Backed Coinbase Global", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0xbbcb0356bb9e6b3faa5cbf9e5f36185d53403ac9.png", - "aggregators": [ - "CoinGecko", - "LiFi", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x1e2c4fb7ede391d116e6b41cd0608260e8801d59": { - "address": "0x1e2c4fb7ede391d116e6b41cd0608260e8801d59", - "symbol": "BCSPX", - "decimals": 18, - "name": "Backed CSPX Core S&P 500", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0x1e2c4fb7ede391d116e6b41cd0608260e8801d59.png", - "aggregators": [ - "CoinGecko", - "LiFi", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x80137510979822322193fc997d400d5a6c747bf7": { - "address": "0x80137510979822322193fc997d400d5a6c747bf7", - "symbol": "STONE", - "decimals": 18, - "name": "StakeStone ETH", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0x80137510979822322193fc997d400d5a6c747bf7.png", - "aggregators": [ - "CoinGecko", - "LiFi", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0xc96de26018a54d51c097160568752c4e3bd6c364": { - "address": "0xc96de26018a54d51c097160568752c4e3bd6c364", - "symbol": "FBTC", - "decimals": 8, - "name": "Ignition FBTC", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0xc96de26018a54d51c097160568752c4e3bd6c364.png", - "aggregators": [ - "CoinGecko", - "LiFi", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x16f1967565aad72dd77588a332ce445e7cef752b": { - "address": "0x16f1967565aad72dd77588a332ce445e7cef752b", - "symbol": "CAW", - "decimals": 0, - "name": "crow with knife", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0x16f1967565aad72dd77588a332ce445e7cef752b.png", - "aggregators": [ - "CoinGecko", - "1inch", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x033f193b3fceb22a440e89a2867e8fee181594d9": { - "address": "0x033f193b3fceb22a440e89a2867e8fee181594d9", - "symbol": "RDO", - "decimals": 18, - "name": "Rodeo Finance", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0x033f193b3fceb22a440e89a2867e8fee181594d9.png", - "aggregators": [ - "TraderJoe", - "LiFi", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x965d00aa7abc62ca10132e641d08593435ac811d": { - "address": "0x965d00aa7abc62ca10132e641d08593435ac811d", - "symbol": "KAP", - "decimals": 18, - "name": "KAP Games", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0x965d00aa7abc62ca10132e641d08593435ac811d.png", - "aggregators": [ - "TraderJoe", - "LiFi", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x9b06f3c5de42d4623d7a2bd940ec735103c68a76": { - "address": "0x9b06f3c5de42d4623d7a2bd940ec735103c68a76", - "symbol": "VOLTA", - "decimals": 18, - "name": "Volta Club", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0x9b06f3c5de42d4623d7a2bd940ec735103c68a76.png", - "aggregators": [ - "TraderJoe", - "LiFi", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x0000206329b97db379d5e1bf586bbdb969c63274": { - "address": "0x0000206329b97db379d5e1bf586bbdb969c63274", - "symbol": "USDA", - "decimals": 18, - "name": "USDA", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0x0000206329b97db379d5e1bf586bbdb969c63274.png", - "aggregators": ["LiFi", "Socket", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 5 - }, - "0xecc68d0451e20292406967fe7c04280e5238ac7d": { - "address": "0xecc68d0451e20292406967fe7c04280e5238ac7d", - "symbol": "AXLFRXETH", - "decimals": 18, - "name": "Axelar Bridged Frax Ether", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0xecc68d0451e20292406967fe7c04280e5238ac7d.png", - "aggregators": ["LiFi", "Rubic", "Squid", "Rango", "Sonarwatch"], - "occurrences": 5 - }, - "0x739ca6d71365a08f584c8fc4e1029045fa8abc4b": { - "address": "0x739ca6d71365a08f584c8fc4e1029045fa8abc4b", - "symbol": "WSOHM", - "decimals": 18, - "name": "Wrapped sOHM", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0x739ca6d71365a08f584c8fc4e1029045fa8abc4b.png", - "aggregators": ["LiFi", "Socket", "Rubic", "Rango", "SushiSwap"], - "occurrences": 5 - }, - "0x377c1fc73d4d0f5600cd943776ced07c2b9783cd": { - "address": "0x377c1fc73d4d0f5600cd943776ced07c2b9783cd", - "symbol": "AEVO", - "decimals": 18, - "name": "Aevo", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0x377c1fc73d4d0f5600cd943776ced07c2b9783cd.png", - "aggregators": ["UniswapLabs", "LiFi", "Socket", "Rango"], - "occurrences": 4 - }, - "0xb7910e8b16e63efd51d5d1a093d56280012a3b9c": { - "address": "0xb7910e8b16e63efd51d5d1a093d56280012a3b9c", - "symbol": "AGLD", - "decimals": 18, - "name": "Adventure Gold", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0xb7910e8b16e63efd51d5d1a093d56280012a3b9c.png", - "aggregators": ["UniswapLabs", "LiFi", "Socket", "Rango"], - "occurrences": 4 - }, - "0xec76e8fe6e2242e6c2117caa244b9e2de1569923": { - "address": "0xec76e8fe6e2242e6c2117caa244b9e2de1569923", - "symbol": "AIOZ", - "decimals": 18, - "name": "AIOZ Network", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0xec76e8fe6e2242e6c2117caa244b9e2de1569923.png", - "aggregators": ["UniswapLabs", "LiFi", "Socket", "Rango"], - "occurrences": 4 - }, - "0xef6124368c0b56556667e0de77ea008dfc0a71d1": { - "address": "0xef6124368c0b56556667e0de77ea008dfc0a71d1", - "symbol": "ALI", - "decimals": 18, - "name": "Alethea Artificial Liquid Intelligence", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0xef6124368c0b56556667e0de77ea008dfc0a71d1.png", - "aggregators": ["UniswapLabs", "LiFi", "Socket", "Rango"], - "occurrences": 4 - }, - "0x1bfc5d35bf0f7b9e15dc24c78b8c02dbc1e95447": { - "address": "0x1bfc5d35bf0f7b9e15dc24c78b8c02dbc1e95447", - "symbol": "ANKR", - "decimals": 18, - "name": "Ankr Network", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0x1bfc5d35bf0f7b9e15dc24c78b8c02dbc1e95447.png", - "aggregators": ["UniswapLabs", "LiFi", "Socket", "Rango"], - "occurrences": 4 - }, - "0xf01db12f50d0cdf5fe360ae005b9c52f92ca7811": { - "address": "0xf01db12f50d0cdf5fe360ae005b9c52f92ca7811", - "symbol": "API3", - "decimals": 18, - "name": "API3", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0xf01db12f50d0cdf5fe360ae005b9c52f92ca7811.png", - "aggregators": ["UniswapLabs", "LiFi", "Socket", "Rango"], - "occurrences": 4 - }, - "0xdac5094b7d59647626444a4f905060fcda4e656e": { - "address": "0xdac5094b7d59647626444a4f905060fcda4e656e", - "symbol": "ARKM", - "decimals": 18, - "name": "Arkham", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0xdac5094b7d59647626444a4f905060fcda4e656e.png", - "aggregators": ["UniswapLabs", "LiFi", "Socket", "Rango"], - "occurrences": 4 - }, - "0xac9ac2c17cdfed4abc80a53c5553388575714d03": { - "address": "0xac9ac2c17cdfed4abc80a53c5553388575714d03", - "symbol": "ATA", - "decimals": 18, - "name": "Automata", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0xac9ac2c17cdfed4abc80a53c5553388575714d03.png", - "aggregators": ["UniswapLabs", "LiFi", "Socket", "Rango"], - "occurrences": 4 - }, - "0xe88998fb579266628af6a03e3821d5983e5d0089": { - "address": "0xe88998fb579266628af6a03e3821d5983e5d0089", - "symbol": "AXS", - "decimals": 18, - "name": "Axie Infinity", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0xe88998fb579266628af6a03e3821d5983e5d0089.png", - "aggregators": ["UniswapLabs", "LiFi", "Socket", "Rango"], - "occurrences": 4 - }, - "0x3450687ef141dcd6110b77c2dc44b008616aee75": { - "address": "0x3450687ef141dcd6110b77c2dc44b008616aee75", - "symbol": "BAT", - "decimals": 18, - "name": "Basic Attention Token", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0x3450687ef141dcd6110b77c2dc44b008616aee75.png", - "aggregators": ["UniswapLabs", "LiFi", "Socket", "Rango"], - "occurrences": 4 - }, - "0x406c8db506653d882295875f633bec0beb921c2a": { - "address": "0x406c8db506653d882295875f633bec0beb921c2a", - "symbol": "BIT", - "decimals": 18, - "name": "BitDAO", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0x406c8db506653d882295875f633bec0beb921c2a.png", - "aggregators": ["UniswapLabs", "LiFi", "Socket", "Rango"], - "occurrences": 4 - }, - "0xef171a5ba71348eff16616fd692855c2fe606eb2": { - "address": "0xef171a5ba71348eff16616fd692855c2fe606eb2", - "symbol": "BLUR", - "decimals": 18, - "name": "Blur", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0xef171a5ba71348eff16616fd692855c2fe606eb2.png", - "aggregators": ["UniswapLabs", "LiFi", "Socket", "Rango"], - "occurrences": 4 - }, - "0x7a24159672b83ed1b89467c9d6a99556ba06d073": { - "address": "0x7a24159672b83ed1b89467c9d6a99556ba06d073", - "symbol": "BNT", - "decimals": 18, - "name": "Bancor Network Token", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0x7a24159672b83ed1b89467c9d6a99556ba06d073.png", - "aggregators": ["UniswapLabs", "LiFi", "Socket", "Rango"], - "occurrences": 4 - }, - "0x31190254504622cefdfa55a7d3d272e6462629a2": { - "address": "0x31190254504622cefdfa55a7d3d272e6462629a2", - "symbol": "BUSD", - "decimals": 18, - "name": "Binance USD", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0x31190254504622cefdfa55a7d3d272e6462629a2.png", - "aggregators": ["UniswapLabs", "LiFi", "Socket", "Rango"], - "occurrences": 4 - }, - "0x8ea3156f834a0dfc78f1a5304fac2cda676f354c": { - "address": "0x8ea3156f834a0dfc78f1a5304fac2cda676f354c", - "symbol": "CRO", - "decimals": 8, - "name": "Cronos", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0x8ea3156f834a0dfc78f1a5304fac2cda676f354c.png", - "aggregators": ["UniswapLabs", "LiFi", "Socket", "Rango"], - "occurrences": 4 - }, - "0x9dffb23cad3322440bccff7ab1c58e781ddbf144": { - "address": "0x9dffb23cad3322440bccff7ab1c58e781ddbf144", - "symbol": "CVC", - "decimals": 8, - "name": "Civic", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0x9dffb23cad3322440bccff7ab1c58e781ddbf144.png", - "aggregators": ["UniswapLabs", "LiFi", "Socket", "Rango"], - "occurrences": 4 - }, - "0xaafcfd42c9954c6689ef1901e03db742520829c5": { - "address": "0xaafcfd42c9954c6689ef1901e03db742520829c5", - "symbol": "CVX", - "decimals": 18, - "name": "Convex Finance", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0xaafcfd42c9954c6689ef1901e03db742520829c5.png", - "aggregators": ["UniswapLabs", "LiFi", "Socket", "Rango"], - "occurrences": 4 - }, - "0x3be7cb2e9413ef8f42b4a202a0114eb59b64e227": { - "address": "0x3be7cb2e9413ef8f42b4a202a0114eb59b64e227", - "symbol": "DEXT", - "decimals": 18, - "name": "DexTools", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0x3be7cb2e9413ef8f42b4a202a0114eb59b64e227.png", - "aggregators": ["UniswapLabs", "LiFi", "Socket", "Rango"], - "occurrences": 4 - }, - "0xca642467c6ebe58c13cb4a7091317f34e17ac05e": { - "address": "0xca642467c6ebe58c13cb4a7091317f34e17ac05e", - "symbol": "DIA", - "decimals": 18, - "name": "DIA", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0xca642467c6ebe58c13cb4a7091317f34e17ac05e.png", - "aggregators": ["UniswapLabs", "LiFi", "Socket", "Rango"], - "occurrences": 4 - }, - "0xe3696a02b2c9557639e29d829e9c45efa49ad47a": { - "address": "0xe3696a02b2c9557639e29d829e9c45efa49ad47a", - "symbol": "DNT", - "decimals": 18, - "name": "district0x", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0xe3696a02b2c9557639e29d829e9c45efa49ad47a.png", - "aggregators": ["UniswapLabs", "LiFi", "Socket", "Rango"], - "occurrences": 4 - }, - "0x4667cf53c4edf659e402b733bea42b18b68dd74c": { - "address": "0x4667cf53c4edf659e402b733bea42b18b68dd74c", - "symbol": "DPI", - "decimals": 18, - "name": "DeFi Pulse Index", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0x4667cf53c4edf659e402b733bea42b18b68dd74c.png", - "aggregators": ["UniswapLabs", "LiFi", "Socket", "Rango"], - "occurrences": 4 - }, - "0x606c3e5075e5555e79aa15f1e9facb776f96c248": { - "address": "0x606c3e5075e5555e79aa15f1e9facb776f96c248", - "symbol": "EIGEN", - "decimals": 18, - "name": "EigenLayer", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0x606c3e5075e5555e79aa15f1e9facb776f96c248.png", - "aggregators": ["TraderJoe", "LiFi", "Socket", "Rango"], - "occurrences": 4 - }, - "0xdf8f0c63d9335a0abd89f9f752d293a98ea977d8": { - "address": "0xdf8f0c63d9335a0abd89f9f752d293a98ea977d8", - "symbol": "ENA", - "decimals": 18, - "name": "Ethena", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0xdf8f0c63d9335a0abd89f9f752d293a98ea977d8.png", - "aggregators": ["UniswapLabs", "LiFi", "Socket", "Rango"], - "occurrences": 4 - }, - "0x7fa9549791efc9030e1ed3f25d18014163806758": { - "address": "0x7fa9549791efc9030e1ed3f25d18014163806758", - "symbol": "ENJ", - "decimals": 18, - "name": "Enjin Coin", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0x7fa9549791efc9030e1ed3f25d18014163806758.png", - "aggregators": ["UniswapLabs", "LiFi", "Socket", "Rango"], - "occurrences": 4 - }, - "0xfea31d704deb0975da8e77bf13e04239e70d7c28": { - "address": "0xfea31d704deb0975da8e77bf13e04239e70d7c28", - "symbol": "ENS", - "decimals": 18, - "name": "Ethereum Name Service", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0xfea31d704deb0975da8e77bf13e04239e70d7c28.png", - "aggregators": ["UniswapLabs", "LiFi", "Socket", "Rango"], - "occurrences": 4 - }, - "0x2354c8e9ea898c751f1a15addeb048714d667f96": { - "address": "0x2354c8e9ea898c751f1a15addeb048714d667f96", - "symbol": "ERN", - "decimals": 18, - "name": "@EthernityChain $ERN Token", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0x2354c8e9ea898c751f1a15addeb048714d667f96.png", - "aggregators": ["UniswapLabs", "LiFi", "Socket", "Rango"], - "occurrences": 4 - }, - "0x8553d254cb6934b16f87d2e486b64bbd24c83c70": { - "address": "0x8553d254cb6934b16f87d2e486b64bbd24c83c70", - "symbol": "FARM", - "decimals": 18, - "name": "Harvest Finance", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0x8553d254cb6934b16f87d2e486b64bbd24c83c70.png", - "aggregators": ["UniswapLabs", "LiFi", "Socket", "Rango"], - "occurrences": 4 - }, - "0x849b40ab2469309117ed1038c5a99894767c7282": { - "address": "0x849b40ab2469309117ed1038c5a99894767c7282", - "symbol": "FIS", - "decimals": 18, - "name": "Stafi", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0x849b40ab2469309117ed1038c5a99894767c7282.png", - "aggregators": ["UniswapLabs", "LiFi", "Socket", "Rango"], - "occurrences": 4 - }, - "0x7468a5d8e02245b00e8c0217fce021c70bc51305": { - "address": "0x7468a5d8e02245b00e8c0217fce021c70bc51305", - "symbol": "FRAX", - "decimals": 18, - "name": "Frax", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0x7468a5d8e02245b00e8c0217fce021c70bc51305.png", - "aggregators": ["UniswapLabs", "LiFi", "Socket", "Rango"], - "occurrences": 4 - }, - "0xd42785d323e608b9e99fa542bd8b1000d4c2df37": { - "address": "0xd42785d323e608b9e99fa542bd8b1000d4c2df37", - "symbol": "FTM", - "decimals": 18, - "name": "Fantom", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0xd42785d323e608b9e99fa542bd8b1000d4c2df37.png", - "aggregators": ["UniswapLabs", "LiFi", "Socket", "Rango"], - "occurrences": 4 - }, - "0xd9f9d2ee2d3efe420699079f16d9e924afffdea4": { - "address": "0xd9f9d2ee2d3efe420699079f16d9e924afffdea4", - "symbol": "FXS", - "decimals": 18, - "name": "Frax Share", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0xd9f9d2ee2d3efe420699079f16d9e924afffdea4.png", - "aggregators": ["UniswapLabs", "LiFi", "Socket", "Rango"], - "occurrences": 4 - }, - "0x2a676eead159c4c8e8593471c6d666f02827ff8c": { - "address": "0x2a676eead159c4c8e8593471c6d666f02827ff8c", - "symbol": "GALA", - "decimals": 8, - "name": "GALA", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0x2a676eead159c4c8e8593471c6d666f02827ff8c.png", - "aggregators": ["UniswapLabs", "LiFi", "Socket", "Rango"], - "occurrences": 4 - }, - "0x7f9a7db853ca816b9a138aee3380ef34c437dee0": { - "address": "0x7f9a7db853ca816b9a138aee3380ef34c437dee0", - "symbol": "GTC", - "decimals": 18, - "name": "Gitcoin", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0x7f9a7db853ca816b9a138aee3380ef34c437dee0.png", - "aggregators": ["UniswapLabs", "LiFi", "Socket", "Rango"], - "occurrences": 4 - }, - "0xd12eeb0142d4efe7af82e4f29e5af382615bceea": { - "address": "0xd12eeb0142d4efe7af82e4f29e5af382615bceea", - "symbol": "HIGH", - "decimals": 18, - "name": "Highstreet", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0xd12eeb0142d4efe7af82e4f29e5af382615bceea.png", - "aggregators": ["UniswapLabs", "LiFi", "Socket", "Rango"], - "occurrences": 4 - }, - "0x177f394a3ed18faa85c1462ae626438a70294ef7": { - "address": "0x177f394a3ed18faa85c1462ae626438a70294ef7", - "symbol": "HOPR", - "decimals": 18, - "name": "HOPR", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0x177f394a3ed18faa85c1462ae626438a70294ef7.png", - "aggregators": ["UniswapLabs", "LiFi", "Socket", "Rango"], - "occurrences": 4 - }, - "0x61ca9d186f6b9a793bc08f6c79fd35f205488673": { - "address": "0x61ca9d186f6b9a793bc08f6c79fd35f205488673", - "symbol": "ILV", - "decimals": 18, - "name": "Illuvium", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0x61ca9d186f6b9a793bc08f6c79fd35f205488673.png", - "aggregators": ["UniswapLabs", "LiFi", "Socket", "Rango"], - "occurrences": 4 - }, - "0x3cfd99593a7f035f717142095a3898e3fca7783e": { - "address": "0x3cfd99593a7f035f717142095a3898e3fca7783e", - "symbol": "IMX", - "decimals": 18, - "name": "Immutable X", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0x3cfd99593a7f035f717142095a3898e3fca7783e.png", - "aggregators": ["UniswapLabs", "LiFi", "Socket", "Rango"], - "occurrences": 4 - }, - "0x2a2053cb633cad465b4a8975ed3d7f09df608f80": { - "address": "0x2a2053cb633cad465b4a8975ed3d7f09df608f80", - "symbol": "INJ", - "decimals": 18, - "name": "Injective", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0x2a2053cb633cad465b4a8975ed3d7f09df608f80.png", - "aggregators": ["UniswapLabs", "LiFi", "Socket", "Rango"], - "occurrences": 4 - }, - "0x25f05699548d3a0820b99f93c10c8bb573e27083": { - "address": "0x25f05699548d3a0820b99f93c10c8bb573e27083", - "symbol": "JASMY", - "decimals": 18, - "name": "JasmyCoin", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0x25f05699548d3a0820b99f93c10c8bb573e27083.png", - "aggregators": ["UniswapLabs", "LiFi", "Socket", "Rango"], - "occurrences": 4 - }, - "0x349fc93da004a63f3b1343361465981330a40b25": { - "address": "0x349fc93da004a63f3b1343361465981330a40b25", - "symbol": "LIT", - "decimals": 18, - "name": "Litentry", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0x349fc93da004a63f3b1343361465981330a40b25.png", - "aggregators": ["UniswapLabs", "LiFi", "Socket", "Rango"], - "occurrences": 4 - }, - "0x442d24578a564ef628a65e6a7e3e7be2a165e231": { - "address": "0x442d24578a564ef628a65e6a7e3e7be2a165e231", - "symbol": "MANA", - "decimals": 18, - "name": "Decentraland", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0x442d24578a564ef628a65e6a7e3e7be2a165e231.png", - "aggregators": ["UniswapLabs", "LiFi", "Socket", "Rango"], - "occurrences": 4 - }, - "0x533a7b414cd1236815a5e09f1e97fc7d5c313739": { - "address": "0x533a7b414cd1236815a5e09f1e97fc7d5c313739", - "symbol": "MASK", - "decimals": 18, - "name": "Mask Network", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0x533a7b414cd1236815a5e09f1e97fc7d5c313739.png", - "aggregators": ["UniswapLabs", "LiFi", "Socket", "Rango"], - "occurrences": 4 - }, - "0x7f728f3595db17b0b359f4fc47ae80fad2e33769": { - "address": "0x7f728f3595db17b0b359f4fc47ae80fad2e33769", - "symbol": "METIS", - "decimals": 18, - "name": "Metis", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0x7f728f3595db17b0b359f4fc47ae80fad2e33769.png", - "aggregators": ["UniswapLabs", "LiFi", "Socket", "Rango"], - "occurrences": 4 - }, - "0xb20a02dffb172c474bc4bda3fd6f4ee70c04daf2": { - "address": "0xb20a02dffb172c474bc4bda3fd6f4ee70c04daf2", - "symbol": "MIM", - "decimals": 18, - "name": "Magic Internet Money", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0xb20a02dffb172c474bc4bda3fd6f4ee70c04daf2.png", - "aggregators": ["UniswapLabs", "LiFi", "Socket", "Rango"], - "occurrences": 4 - }, - "0x29024832ec3babf5074d4f46102aa988097f0ca0": { - "address": "0x29024832ec3babf5074d4f46102aa988097f0ca0", - "symbol": "MPL", - "decimals": 18, - "name": "Maple", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0x29024832ec3babf5074d4f46102aa988097f0ca0.png", - "aggregators": ["UniswapLabs", "LiFi", "Socket", "Rango"], - "occurrences": 4 - }, - "0x7b9b94aebe5e2039531af8e31045f377ecd9a39a": { - "address": "0x7b9b94aebe5e2039531af8e31045f377ecd9a39a", - "symbol": "MULTI", - "decimals": 18, - "name": "Multichain", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0x7b9b94aebe5e2039531af8e31045f377ecd9a39a.png", - "aggregators": ["UniswapLabs", "LiFi", "Socket", "Rango"], - "occurrences": 4 - }, - "0x53236015a675fcb937485f1ae58040e4fb920d5b": { - "address": "0x53236015a675fcb937485f1ae58040e4fb920d5b", - "symbol": "NCT", - "decimals": 18, - "name": "PolySwarm", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0x53236015a675fcb937485f1ae58040e4fb920d5b.png", - "aggregators": ["UniswapLabs", "LiFi", "Socket", "Rango"], - "occurrences": 4 - }, - "0xbe06ca305a5cb49abf6b1840da7c42690406177b": { - "address": "0xbe06ca305a5cb49abf6b1840da7c42690406177b", - "symbol": "NKN", - "decimals": 18, - "name": "NKN", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0xbe06ca305a5cb49abf6b1840da7c42690406177b.png", - "aggregators": ["UniswapLabs", "LiFi", "Socket", "Rango"], - "occurrences": 4 - }, - "0x597701b32553b9fa473e21362d480b3a6b569711": { - "address": "0x597701b32553b9fa473e21362d480b3a6b569711", - "symbol": "NMR", - "decimals": 18, - "name": "Numeraire", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0x597701b32553b9fa473e21362d480b3a6b569711.png", - "aggregators": ["UniswapLabs", "LiFi", "Socket", "Rango"], - "occurrences": 4 - }, - "0x933d31561e470478079feb9a6dd2691fad8234df": { - "address": "0x933d31561e470478079feb9a6dd2691fad8234df", - "symbol": "OCEAN", - "decimals": 18, - "name": "Ocean Protocol", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0x933d31561e470478079feb9a6dd2691fad8234df.png", - "aggregators": ["UniswapLabs", "LiFi", "Socket", "Rango"], - "occurrences": 4 - }, - "0x6feb262feb0f775b5312d2e009923f7f58ae423e": { - "address": "0x6feb262feb0f775b5312d2e009923f7f58ae423e", - "symbol": "OGN", - "decimals": 18, - "name": "Origin Protocol", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0x6feb262feb0f775b5312d2e009923f7f58ae423e.png", - "aggregators": ["UniswapLabs", "LiFi", "Socket", "Rango"], - "occurrences": 4 - }, - "0xd962c1895c46ac0378c502c207748b7061421e8e": { - "address": "0xd962c1895c46ac0378c502c207748b7061421e8e", - "symbol": "OMG", - "decimals": 18, - "name": "OMG Network", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0xd962c1895c46ac0378c502c207748b7061421e8e.png", - "aggregators": ["UniswapLabs", "LiFi", "Socket", "Rango"], - "occurrences": 4 - }, - "0x1bdcc2075d5370293e248cab0173ec3e551e6218": { - "address": "0x1bdcc2075d5370293e248cab0173ec3e551e6218", - "symbol": "ORN", - "decimals": 8, - "name": "Orion Protocol", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0x1bdcc2075d5370293e248cab0173ec3e551e6218.png", - "aggregators": ["UniswapLabs", "LiFi", "Socket", "Rango"], - "occurrences": 4 - }, - "0xeeeb5eac2db7a7fc28134aa3248580d48b016b64": { - "address": "0xeeeb5eac2db7a7fc28134aa3248580d48b016b64", - "symbol": "POLS", - "decimals": 18, - "name": "Polkastarter", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0xeeeb5eac2db7a7fc28134aa3248580d48b016b64.png", - "aggregators": ["UniswapLabs", "LiFi", "Socket", "Rango"], - "occurrences": 4 - }, - "0xe12f29704f635f4a6e7ae154838d21f9b33809e9": { - "address": "0xe12f29704f635f4a6e7ae154838d21f9b33809e9", - "symbol": "POLY", - "decimals": 18, - "name": "Polymath", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0xe12f29704f635f4a6e7ae154838d21f9b33809e9.png", - "aggregators": ["UniswapLabs", "LiFi", "Socket", "Rango"], - "occurrences": 4 - }, - "0x4e91f2af1ee0f84b529478f19794f5afd423e4a6": { - "address": "0x4e91f2af1ee0f84b529478f19794f5afd423e4a6", - "symbol": "POWR", - "decimals": 6, - "name": "Power Ledger", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0x4e91f2af1ee0f84b529478f19794f5afd423e4a6.png", - "aggregators": ["UniswapLabs", "LiFi", "Socket", "Rango"], - "occurrences": 4 - }, - "0x8d8e1b6ffc6832e8d2ef0de8a3d957cae7ac5067": { - "address": "0x8d8e1b6ffc6832e8d2ef0de8a3d957cae7ac5067", - "symbol": "PRIME", - "decimals": 18, - "name": "Prime", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0x8d8e1b6ffc6832e8d2ef0de8a3d957cae7ac5067.png", - "aggregators": ["UniswapLabs", "LiFi", "Socket", "Rango"], - "occurrences": 4 - }, - "0x82164a8b646401a8776f9dc5c8cba35dcaf60cd2": { - "address": "0x82164a8b646401a8776f9dc5c8cba35dcaf60cd2", - "symbol": "PRQ", - "decimals": 18, - "name": "PARSIQ", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0x82164a8b646401a8776f9dc5c8cba35dcaf60cd2.png", - "aggregators": ["UniswapLabs", "LiFi", "Socket", "Rango"], - "occurrences": 4 - }, - "0x9fa891e1db0a6d1eeac4b929b5aae1011c79a204": { - "address": "0x9fa891e1db0a6d1eeac4b929b5aae1011c79a204", - "symbol": "REN", - "decimals": 18, - "name": "Republic Token", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0x9fa891e1db0a6d1eeac4b929b5aae1011c79a204.png", - "aggregators": ["UniswapLabs", "LiFi", "Socket", "Rango"], - "occurrences": 4 - }, - "0x1cb5bbc64e148c5b889e3c667b49edf78bb92171": { - "address": "0x1cb5bbc64e148c5b889e3c667b49edf78bb92171", - "symbol": "REQ", - "decimals": 18, - "name": "Request", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0x1cb5bbc64e148c5b889e3c667b49edf78bb92171.png", - "aggregators": ["UniswapLabs", "LiFi", "Socket", "Rango"], - "occurrences": 4 - }, - "0xc8a4eea31e9b6b61c406df013dd4fec76f21e279": { - "address": "0xc8a4eea31e9b6b61c406df013dd4fec76f21e279", - "symbol": "RNDR", - "decimals": 18, - "name": "Render Token", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0xc8a4eea31e9b6b61c406df013dd4fec76f21e279.png", - "aggregators": ["UniswapLabs", "LiFi", "Socket", "Rango"], - "occurrences": 4 - }, - "0xd1318eb19dbf2647743c720ed35174efd64e3dac": { - "address": "0xd1318eb19dbf2647743c720ed35174efd64e3dac", - "symbol": "SAND", - "decimals": 18, - "name": "The Sandbox", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0xd1318eb19dbf2647743c720ed35174efd64e3dac.png", - "aggregators": ["UniswapLabs", "LiFi", "Socket", "Rango"], - "occurrences": 4 - }, - "0x1629c4112952a7a377cb9b8d7d8c903092f34b63": { - "address": "0x1629c4112952a7a377cb9b8d7d8c903092f34b63", - "symbol": "SD", - "decimals": 18, - "name": "Stader", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0x1629c4112952a7a377cb9b8d7d8c903092f34b63.png", - "aggregators": ["UniswapLabs", "LiFi", "Socket", "Rango"], - "occurrences": 4 - }, - "0x4f9b7dedd8865871df65c5d26b1c2dd537267878": { - "address": "0x4f9b7dedd8865871df65c5d26b1c2dd537267878", - "symbol": "SKL", - "decimals": 18, - "name": "SKALE", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0x4f9b7dedd8865871df65c5d26b1c2dd537267878.png", - "aggregators": ["UniswapLabs", "LiFi", "Socket", "Rango"], - "occurrences": 4 - }, - "0xcba56cd8216fcbbf3fa6df6137f3147cbca37d60": { - "address": "0xcba56cd8216fcbbf3fa6df6137f3147cbca37d60", - "symbol": "SNX", - "decimals": 18, - "name": "Synthetix Network Token", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0xcba56cd8216fcbbf3fa6df6137f3147cbca37d60.png", - "aggregators": ["UniswapLabs", "LiFi", "Socket", "Rango"], - "occurrences": 4 - }, - "0xe018c7a3d175fb0fe15d70da2c874d3ca16313ec": { - "address": "0xe018c7a3d175fb0fe15d70da2c874d3ca16313ec", - "symbol": "STG", - "decimals": 18, - "name": "StargateToken", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0xe018c7a3d175fb0fe15d70da2c874d3ca16313ec.png", - "aggregators": ["UniswapLabs", "LiFi", "Socket", "Rango"], - "occurrences": 4 - }, - "0xe6320ebf209971b4f4696f7f0954b8457aa2fcc2": { - "address": "0xe6320ebf209971b4f4696f7f0954b8457aa2fcc2", - "symbol": "STORJ", - "decimals": 8, - "name": "Storj Token", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0xe6320ebf209971b4f4696f7f0954b8457aa2fcc2.png", - "aggregators": ["UniswapLabs", "LiFi", "Socket", "Rango"], - "occurrences": 4 - }, - "0x7f9cf5a2630a0d58567122217df7609c26498956": { - "address": "0x7f9cf5a2630a0d58567122217df7609c26498956", - "symbol": "SUPER", - "decimals": 18, - "name": "SuperFarm", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0x7f9cf5a2630a0d58567122217df7609c26498956.png", - "aggregators": ["UniswapLabs", "LiFi", "Socket", "Rango"], - "occurrences": 4 - }, - "0x1bcfc0b4ee1471674cd6a9f6b363a034375ead84": { - "address": "0x1bcfc0b4ee1471674cd6a9f6b363a034375ead84", - "symbol": "SYN", - "decimals": 18, - "name": "Synapse", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0x1bcfc0b4ee1471674cd6a9f6b363a034375ead84.png", - "aggregators": ["UniswapLabs", "LiFi", "Socket", "Rango"], - "occurrences": 4 - }, - "0x0945cae3ae47cb384b2d47bc448dc6a9dec21f55": { - "address": "0x0945cae3ae47cb384b2d47bc448dc6a9dec21f55", - "symbol": "T", - "decimals": 18, - "name": "Threshold Network", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0x0945cae3ae47cb384b2d47bc448dc6a9dec21f55.png", - "aggregators": ["UniswapLabs", "LiFi", "Socket", "Rango"], - "occurrences": 4 - }, - "0x7e2a1edee171c5b19e6c54d73752396c0a572594": { - "address": "0x7e2a1edee171c5b19e6c54d73752396c0a572594", - "symbol": "TBTC", - "decimals": 18, - "name": "tBTC v2", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0x7e2a1edee171c5b19e6c54d73752396c0a572594.png", - "aggregators": ["UniswapLabs", "LiFi", "Socket", "Rango"], - "occurrences": 4 - }, - "0xbfae6fecd8124ba33cbb2180aab0fe4c03914a5a": { - "address": "0xbfae6fecd8124ba33cbb2180aab0fe4c03914a5a", - "symbol": "TRIBE", - "decimals": 18, - "name": "Tribe", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0xbfae6fecd8124ba33cbb2180aab0fe4c03914a5a.png", - "aggregators": ["UniswapLabs", "LiFi", "Socket", "Rango"], - "occurrences": 4 - }, - "0x78df3a6044ce3cb1905500345b967788b699df8f": { - "address": "0x78df3a6044ce3cb1905500345b967788b699df8f", - "symbol": "USDP", - "decimals": 18, - "name": "Pax Dollar", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0x78df3a6044ce3cb1905500345b967788b699df8f.png", - "aggregators": ["UniswapLabs", "LiFi", "Socket", "Rango"], - "occurrences": 4 - }, - "0x1c8ec4de3c2bfd3050695d89853ec6d78ae650bb": { - "address": "0x1c8ec4de3c2bfd3050695d89853ec6d78ae650bb", - "symbol": "WAMPL", - "decimals": 18, - "name": "Wrapped Ampleforth", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0x1c8ec4de3c2bfd3050695d89853ec6d78ae650bb.png", - "aggregators": ["UniswapLabs", "LiFi", "Socket", "Rango"], - "occurrences": 4 - }, - "0x58bbc087e36db40a84b22c1b93a042294deeafed": { - "address": "0x58bbc087e36db40a84b22c1b93a042294deeafed", - "symbol": "XCN", - "decimals": 18, - "name": "Chain", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0x58bbc087e36db40a84b22c1b93a042294deeafed.png", - "aggregators": ["UniswapLabs", "LiFi", "Socket", "Rango"], - "occurrences": 4 - }, - "0xa05245ade25cc1063ee50cf7c083b4524c1c4302": { - "address": "0xa05245ade25cc1063ee50cf7c083b4524c1c4302", - "symbol": "XSGD", - "decimals": 6, - "name": "XSGD", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0xa05245ade25cc1063ee50cf7c083b4524c1c4302.png", - "aggregators": ["UniswapLabs", "LiFi", "Socket", "Rango"], - "occurrences": 4 - }, - "0x6ddbbce7858d276678fc2b36123fd60547b88954": { - "address": "0x6ddbbce7858d276678fc2b36123fd60547b88954", - "symbol": "ZETA", - "decimals": 18, - "name": "Zetachain", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0x6ddbbce7858d276678fc2b36123fd60547b88954.png", - "aggregators": ["UniswapLabs", "LiFi", "Socket", "Rango"], - "occurrences": 4 - }, - "0xbd591bd4ddb64b77b5f76eab8f03d02519235ae2": { - "address": "0xbd591bd4ddb64b77b5f76eab8f03d02519235ae2", - "symbol": "ZRX", - "decimals": 18, - "name": "0x Protocol Token", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0xbd591bd4ddb64b77b5f76eab8f03d02519235ae2.png", - "aggregators": ["UniswapLabs", "LiFi", "Socket", "Rango"], - "occurrences": 4 - }, - "0x4810e5a7741ea5fdbb658eda632ddfac3b19e3c6": { - "address": "0x4810e5a7741ea5fdbb658eda632ddfac3b19e3c6", - "symbol": "ARBI", - "decimals": 18, - "name": "Arbitrum Ecosystem Index", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0x4810e5a7741ea5fdbb658eda632ddfac3b19e3c6.png", - "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0x7e325091e5525d3ea4d54a1488ecca8d1df732f3": { - "address": "0x7e325091e5525d3ea4d54a1488ecca8d1df732f3", - "symbol": "PAC", - "decimals": 18, - "name": "Pacman Native Token", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0x7e325091e5525d3ea4d54a1488ecca8d1df732f3.png", - "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0x292975973200064b1c6453505aeac5be697f5233": { - "address": "0x292975973200064b1c6453505aeac5be697f5233", - "symbol": "LUDAMOON", - "decimals": 18, - "name": "Lumi to da moon", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0x292975973200064b1c6453505aeac5be697f5233.png", - "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0xe8876189a80b2079d8c0a7867e46c50361d972c1": { - "address": "0xe8876189a80b2079d8c0a7867e46c50361d972c1", - "symbol": "ARC", - "decimals": 18, - "name": "Archly Finance", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0xe8876189a80b2079d8c0a7867e46c50361d972c1.png", - "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0x03183ce31b1656b72a55fa6056e287f50c35bbeb": { - "address": "0x03183ce31b1656b72a55fa6056e287f50c35bbeb", - "symbol": "ACNX", - "decimals": 18, - "name": "Accenture xStock", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0x03183ce31b1656b72a55fa6056e287f50c35bbeb.png", - "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0x0f76d32cdccdcbd602a55af23eaf58fd1ee17245": { - "address": "0x0f76d32cdccdcbd602a55af23eaf58fd1ee17245", - "symbol": "BERNA", - "decimals": 18, - "name": "Backed ERNA $ Bond", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0x0f76d32cdccdcbd602a55af23eaf58fd1ee17245.png", - "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0x5326e71ff593ecc2cf7acae5fe57582d6e74cff1": { - "address": "0x5326e71ff593ecc2cf7acae5fe57582d6e74cff1", - "symbol": "PLVGLP", - "decimals": 18, - "name": "plvGLP", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0x5326e71ff593ecc2cf7acae5fe57582d6e74cff1.png", - "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0x0a1694716de67c98f61942b2cab7df7fe659c87a": { - "address": "0x0a1694716de67c98f61942b2cab7df7fe659c87a", - "symbol": "MNLT", - "decimals": 18, - "name": "Crescentswap Moonlight", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0x0a1694716de67c98f61942b2cab7df7fe659c87a.png", - "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0x374a457967ba24fd3ae66294cab08244185574b0": { - "address": "0x374a457967ba24fd3ae66294cab08244185574b0", - "symbol": "BMSFT", - "decimals": 18, - "name": "Backed Microsoft", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0x374a457967ba24fd3ae66294cab08244185574b0.png", - "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0xacc51ffdef63fb0c014c882267c3a17261a5ed50": { - "address": "0xacc51ffdef63fb0c014c882267c3a17261a5ed50", - "symbol": "SYK", - "decimals": 18, - "name": "Stryke", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0xacc51ffdef63fb0c014c882267c3a17261a5ed50.png", - "aggregators": ["TraderJoe", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0xd41f1f0cf89fd239ca4c1f8e8ada46345c86b0a4": { - "address": "0xd41f1f0cf89fd239ca4c1f8e8ada46345c86b0a4", - "symbol": "CHF24", - "decimals": 2, - "name": "Fiat24 CHF", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0xd41f1f0cf89fd239ca4c1f8e8ada46345c86b0a4.png", - "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0xd8b95b1987741849ca7e71e976aeb535fd2e55a2": { - "address": "0xd8b95b1987741849ca7e71e976aeb535fd2e55a2", - "symbol": "BCSBGC3", - "decimals": 18, - "name": "Backed Swiss Domestic Government Bond 0-3", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0xd8b95b1987741849ca7e71e976aeb535fd2e55a2.png", - "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0x00000000ea00f3f4000e7ed5ed91965b19f1009b": { - "address": "0x00000000ea00f3f4000e7ed5ed91965b19f1009b", - "symbol": "MAIA", - "decimals": 18, - "name": "Maia", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0x00000000ea00f3f4000e7ed5ed91965b19f1009b.png", - "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0x05eaea39f69b24f8f2da13af2d8ee0853889f2a8": { - "address": "0x05eaea39f69b24f8f2da13af2d8ee0853889f2a8", - "symbol": "CYG", - "decimals": 18, - "name": "CygnusDAO", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0x05eaea39f69b24f8f2da13af2d8ee0853889f2a8.png", - "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0x4a7779abed707a9c7deadbbef5c15f3e52370a99": { - "address": "0x4a7779abed707a9c7deadbbef5c15f3e52370a99", - "symbol": "FLAME", - "decimals": 18, - "name": "Flame", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0x4a7779abed707a9c7deadbbef5c15f3e52370a99.png", - "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0xcb55d61e6299597c39feec3d4036e727afbe11be": { - "address": "0xcb55d61e6299597c39feec3d4036e727afbe11be", - "symbol": "LUAG", - "decimals": 18, - "name": "Lumi Finance Governance Token", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0xcb55d61e6299597c39feec3d4036e727afbe11be.png", - "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0x299142a6370e1912156e53fbd4f25d7ba49ddcc5": { - "address": "0x299142a6370e1912156e53fbd4f25d7ba49ddcc5", - "symbol": "AMC", - "decimals": 18, - "name": "AI Meta Club", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0x299142a6370e1912156e53fbd4f25d7ba49ddcc5.png", - "aggregators": ["TraderJoe", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0xd6cf874e24a9f5f43075142101a6b13735cdd424": { - "address": "0xd6cf874e24a9f5f43075142101a6b13735cdd424", - "symbol": "CBPAY", - "decimals": 18, - "name": "CoinbarPay", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0xd6cf874e24a9f5f43075142101a6b13735cdd424.png", - "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0xebee37aaf2905b7bda7e3b928043862e982e8f32": { - "address": "0xebee37aaf2905b7bda7e3b928043862e982e8f32", - "symbol": "BGOOGL", - "decimals": 18, - "name": "Backed Alphabet Class A", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0xebee37aaf2905b7bda7e3b928043862e982e8f32.png", - "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0xf65247b6ed3e7fdbac313959b3f62475fbb5f8e4": { - "address": "0xf65247b6ed3e7fdbac313959b3f62475fbb5f8e4", - "symbol": "BRIX", - "decimals": 9, - "name": "Brightpool Finance BRIX", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0xf65247b6ed3e7fdbac313959b3f62475fbb5f8e4.png", - "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0x2c7941a0fe9c52223b229747322af16160161c98": { - "address": "0x2c7941a0fe9c52223b229747322af16160161c98", - "symbol": "JARVIS", - "decimals": 18, - "name": "Jarvis", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0x2c7941a0fe9c52223b229747322af16160161c98.png", - "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0xb4b07b60455a2f38cba98a8f3dd161f7ca396a9c": { - "address": "0xb4b07b60455a2f38cba98a8f3dd161f7ca396a9c", - "symbol": "OT", - "decimals": 18, - "name": "Onchain Trade Protocol", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0xb4b07b60455a2f38cba98a8f3dd161f7ca396a9c.png", - "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0x344c796cc2474e4b779d0e81765afb91d7741a42": { - "address": "0x344c796cc2474e4b779d0e81765afb91d7741a42", - "symbol": "LASAGNA", - "decimals": 18, - "name": "Garffeldo", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0x344c796cc2474e4b779d0e81765afb91d7741a42.png", - "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0x939727d85d99d0ac339bf1b76dfe30ca27c19067": { - "address": "0x939727d85d99d0ac339bf1b76dfe30ca27c19067", - "symbol": "SIZE", - "decimals": 18, - "name": "SIZE", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0x939727d85d99d0ac339bf1b76dfe30ca27c19067.png", - "aggregators": ["TraderJoe", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0xfa296fca3c7dba4a92a42ec0b5e2138da3b29050": { - "address": "0xfa296fca3c7dba4a92a42ec0b5e2138da3b29050", - "symbol": "SHIBAI", - "decimals": 6, - "name": "AiShiba", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0xfa296fca3c7dba4a92a42ec0b5e2138da3b29050.png", - "aggregators": ["TraderJoe", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0xc3abc47863524ced8daf3ef98d74dd881e131c38": { - "address": "0xc3abc47863524ced8daf3ef98d74dd881e131c38", - "symbol": "LUA", - "decimals": 18, - "name": "Lumi Finance", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0xc3abc47863524ced8daf3ef98d74dd881e131c38.png", - "aggregators": ["TraderJoe", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0xe018c227bc84e44c96391d3067fab5a9a46b7e62": { - "address": "0xe018c227bc84e44c96391d3067fab5a9a46b7e62", - "symbol": "CR", - "decimals": 18, - "name": "Chromium Dollar", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0xe018c227bc84e44c96391d3067fab5a9a46b7e62.png", - "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0x4117ec0a779448872d3820f37ba2060ae0b7c34b": { - "address": "0x4117ec0a779448872d3820f37ba2060ae0b7c34b", - "symbol": "USDEX+", - "decimals": 18, - "name": "USDEX+", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0x4117ec0a779448872d3820f37ba2060ae0b7c34b.png", - "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0x2c852d3334188be136bfc540ef2bb8c37b590bad": { - "address": "0x2c852d3334188be136bfc540ef2bb8c37b590bad", - "symbol": "MAGIC", - "decimals": 18, - "name": "MagicLand", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0x2c852d3334188be136bfc540ef2bb8c37b590bad.png", - "aggregators": ["TraderJoe", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0xe5f6d3b2405abdfe6f660e63202b25d23763160d": { - "address": "0xe5f6d3b2405abdfe6f660e63202b25d23763160d", - "symbol": "GMEX", - "decimals": 18, - "name": "Gamestop xStock", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0xe5f6d3b2405abdfe6f660e63202b25d23763160d.png", - "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0x635d0e13f98e107cf6c5cdfbf52c19843f87e76a": { - "address": "0x635d0e13f98e107cf6c5cdfbf52c19843f87e76a", - "symbol": "DOMDOM", - "decimals": 18, - "name": "Dominator Domains", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0x635d0e13f98e107cf6c5cdfbf52c19843f87e76a.png", - "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0x3ee7e9b3a992fd23cd1c363b0e296856b04ab149": { - "address": "0x3ee7e9b3a992fd23cd1c363b0e296856b04ab149", - "symbol": "GSX", - "decimals": 18, - "name": "Goldman Sachs xStock", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0x3ee7e9b3a992fd23cd1c363b0e296856b04ab149.png", - "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0xfc90518d5136585ba45e34ed5e1d108bd3950cfa": { - "address": "0xfc90518d5136585ba45e34ed5e1d108bd3950cfa", - "symbol": "USD+", - "decimals": 6, - "name": "USD+", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0xfc90518d5136585ba45e34ed5e1d108bd3950cfa.png", - "aggregators": ["CoinGecko", "LiFi", "Rubic", "Rango"], - "occurrences": 4 - }, - "0x2389f6a46562ae5f1557db8562c39ef553f3832b": { - "address": "0x2389f6a46562ae5f1557db8562c39ef553f3832b", - "symbol": "KERC", - "decimals": 18, - "name": "KERC", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0x2389f6a46562ae5f1557db8562c39ef553f3832b.png", - "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0x319e222de462ac959baf2aec848697aec2bbd770": { - "address": "0x319e222de462ac959baf2aec848697aec2bbd770", - "symbol": "OREO", - "decimals": 18, - "name": "OreoSwap", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0x319e222de462ac959baf2aec848697aec2bbd770.png", - "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0x4ac623237de0aa622b4fdf4da63cf97216371acf": { - "address": "0x4ac623237de0aa622b4fdf4da63cf97216371acf", - "symbol": "ALXAI", - "decimals": 18, - "name": "alXAI", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0x4ac623237de0aa622b4fdf4da63cf97216371acf.png", - "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0xbbea044f9e7c0520195e49ad1e561572e7e1b948": { - "address": "0xbbea044f9e7c0520195e49ad1e561572e7e1b948", - "symbol": "MZR", - "decimals": 18, - "name": "Mizar", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0xbbea044f9e7c0520195e49ad1e561572e7e1b948.png", - "aggregators": ["TraderJoe", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0x92a212d9f5eef0b262ac7d84aea64a0d0758b94f": { - "address": "0x92a212d9f5eef0b262ac7d84aea64a0d0758b94f", - "symbol": "GDEX", - "decimals": 18, - "name": "DexFi Governance", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0x92a212d9f5eef0b262ac7d84aea64a0d0758b94f.png", - "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0x89233399708c18ac6887f90a2b4cd8ba5fedd06e": { - "address": "0x89233399708c18ac6887f90a2b4cd8ba5fedd06e", - "symbol": "ABTX", - "decimals": 18, - "name": "Abbott xStock", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0x89233399708c18ac6887f90a2b4cd8ba5fedd06e.png", - "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0x6612ce012ba5574a2ecea3a825c1ddf641f78623": { - "address": "0x6612ce012ba5574a2ecea3a825c1ddf641f78623", - "symbol": "$DORAB", - "decimals": 18, - "name": "Dorado Finance", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0x6612ce012ba5574a2ecea3a825c1ddf641f78623.png", - "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0xe11508d3e0cf09e6fd6e94fdf41e83836d83ce50": { - "address": "0xe11508d3e0cf09e6fd6e94fdf41e83836d83ce50", - "symbol": "PFUSDC", - "decimals": 6, - "name": "Parifi USDC", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0xe11508d3e0cf09e6fd6e94fdf41e83836d83ce50.png", - "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0x0b5c6ac0e1082f2d81e829b8c2957886e6bb3994": { - "address": "0x0b5c6ac0e1082f2d81e829b8c2957886e6bb3994", - "symbol": "PRISM", - "decimals": 18, - "name": "Prism", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0x0b5c6ac0e1082f2d81e829b8c2957886e6bb3994.png", - "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0x1dd6b5f9281c6b4f043c02a83a46c2772024636c": { - "address": "0x1dd6b5f9281c6b4f043c02a83a46c2772024636c", - "symbol": "LUAUSD", - "decimals": 18, - "name": "Lumi Finance LUAUSD", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0x1dd6b5f9281c6b4f043c02a83a46c2772024636c.png", - "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0xa6ef0ad746d1c35d6ff4d66ceeae0e596d742924": { - "address": "0xa6ef0ad746d1c35d6ff4d66ceeae0e596d742924", - "symbol": "LTM04", - "decimals": 18, - "name": "LumiTerra Totem 404", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0xa6ef0ad746d1c35d6ff4d66ceeae0e596d742924.png", - "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0xee0b14e8fc86691cf6ee42b9954985b4cf968534": { - "address": "0xee0b14e8fc86691cf6ee42b9954985b4cf968534", - "symbol": "$ZPC", - "decimals": 18, - "name": "ZenPandaCoin", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0xee0b14e8fc86691cf6ee42b9954985b4cf968534.png", - "aggregators": ["TraderJoe", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0x836975c507bff631fcd7fba875e9127c8a50dba6": { - "address": "0x836975c507bff631fcd7fba875e9127c8a50dba6", - "symbol": "ARBINAUTS", - "decimals": 18, - "name": "Arbinauts", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0x836975c507bff631fcd7fba875e9127c8a50dba6.png", - "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0x2c5d06f591d0d8cd43ac232c2b654475a142c7da": { - "address": "0x2c5d06f591d0d8cd43ac232c2b654475a142c7da", - "symbol": "EUR24", - "decimals": 2, - "name": "Fiat24 EUR", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0x2c5d06f591d0d8cd43ac232c2b654475a142c7da.png", - "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0x0ae1bb2bc04308765a6b1215236cea8cfee8cab9": { - "address": "0x0ae1bb2bc04308765a6b1215236cea8cfee8cab9", - "symbol": "TT", - "decimals": 18, - "name": "TDEX Token", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0x0ae1bb2bc04308765a6b1215236cea8cfee8cab9.png", - "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0x3ed03e95dd894235090b3d4a49e0c3239edce59e": { - "address": "0x3ed03e95dd894235090b3d4a49e0c3239edce59e", - "symbol": "MYRC", - "decimals": 18, - "name": "Blox MYRC", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0x3ed03e95dd894235090b3d4a49e0c3239edce59e.png", - "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0x5f320aae9b786a9f329a39e41a74e88e14783067": { - "address": "0x5f320aae9b786a9f329a39e41a74e88e14783067", - "symbol": "PEPEX", - "decimals": 18, - "name": "PEPEX", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0x5f320aae9b786a9f329a39e41a74e88e14783067.png", - "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0x4c4b907bd5c38d14a084aac4f511a9b46f7ec429": { - "address": "0x4c4b907bd5c38d14a084aac4f511a9b46f7ec429", - "symbol": "RBX", - "decimals": 18, - "name": "RB Share", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0x4c4b907bd5c38d14a084aac4f511a9b46f7ec429.png", - "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0x6a9896837021ea3ed83f623f655c119c54abe02c": { - "address": "0x6a9896837021ea3ed83f623f655c119c54abe02c", - "symbol": "BOUNTY", - "decimals": 18, - "name": "ChainBounty", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0x6a9896837021ea3ed83f623f655c119c54abe02c.png", - "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0x6dbf2155b0636cb3fd5359fccefb8a2c02b6cb51": { - "address": "0x6dbf2155b0636cb3fd5359fccefb8a2c02b6cb51", - "symbol": "PLSRDNT", - "decimals": 18, - "name": "Plutus RDNT", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0x6dbf2155b0636cb3fd5359fccefb8a2c02b6cb51.png", - "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0xbea0005b8599265d41256905a9b3073d397812e4": { - "address": "0xbea0005b8599265d41256905a9b3073d397812e4", - "symbol": "BEAN", - "decimals": 6, - "name": "Bean", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0xbea0005b8599265d41256905a9b3073d397812e4.png", - "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0xbe00f3db78688d9704bcb4e0a827aea3a9cc0d62": { - "address": "0xbe00f3db78688d9704bcb4e0a827aea3a9cc0d62", - "symbol": "USD24", - "decimals": 2, - "name": "Fiat24 USD", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0xbe00f3db78688d9704bcb4e0a827aea3a9cc0d62.png", - "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0xb9e4765bce2609bc1949592059b17ea72fee6c6a": { - "address": "0xb9e4765bce2609bc1949592059b17ea72fee6c6a", - "symbol": "BENJI", - "decimals": 18, - "name": "Franklin OnChain U.S. Government Money Fund", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0xb9e4765bce2609bc1949592059b17ea72fee6c6a.png", - "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0x2b28e826b55e399f4d4699b85f68666ac51e6f70": { - "address": "0x2b28e826b55e399f4d4699b85f68666ac51e6f70", - "symbol": "CADC", - "decimals": 18, - "name": "CAD Coin", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0x2b28e826b55e399f4d4699b85f68666ac51e6f70.png", - "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0x000000000000012def132e61759048be5b5c6033": { - "address": "0x000000000000012def132e61759048be5b5c6033", - "symbol": "CX", - "decimals": 18, - "name": "Cortex", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0x000000000000012def132e61759048be5b5c6033.png", - "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0xfd28f108e95f4d41daae9dbfff707d677985998e": { - "address": "0xfd28f108e95f4d41daae9dbfff707d677985998e", - "symbol": "PRL", - "decimals": 18, - "name": "Parallel Governance", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0xfd28f108e95f4d41daae9dbfff707d677985998e.png", - "aggregators": ["CoinGecko", "LiFi", "Rubic", "Rango"], - "occurrences": 4 - }, - "0xac7952d30850c9d214b0f44cbe213781b4dacf05": { - "address": "0xac7952d30850c9d214b0f44cbe213781b4dacf05", - "symbol": "BALN", - "decimals": 18, - "name": "Balanced", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0xac7952d30850c9d214b0f44cbe213781b4dacf05.png", - "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0x812f2d5ff6088ed7a655567dbcdf0d42cf07ca38": { - "address": "0x812f2d5ff6088ed7a655567dbcdf0d42cf07ca38", - "symbol": "GRIX", - "decimals": 18, - "name": "GRIX", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0x812f2d5ff6088ed7a655567dbcdf0d42cf07ca38.png", - "aggregators": ["CoinGecko", "LiFi", "Rubic", "Rango"], - "occurrences": 4 - }, - "0x1b2c29e3897b8f9170c98440a483e90e715c879d": { - "address": "0x1b2c29e3897b8f9170c98440a483e90e715c879d", - "symbol": "SUSDZ", - "decimals": 18, - "name": "Anzen Staked USDz", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0x1b2c29e3897b8f9170c98440a483e90e715c879d.png", - "aggregators": ["CoinGecko", "LiFi", "Rubic", "Rango"], - "occurrences": 4 - }, - "0x9d0c0675a995d5f12b03e880763f639d0628b5c6": { - "address": "0x9d0c0675a995d5f12b03e880763f639d0628b5c6", - "symbol": "WALK", - "decimals": 18, - "name": "SuperWalk WALK", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0x9d0c0675a995d5f12b03e880763f639d0628b5c6.png", - "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0xda661fa59320b808c5a6d23579fcfedf1fd3cf36": { - "address": "0xda661fa59320b808c5a6d23579fcfedf1fd3cf36", - "symbol": "MBOX", - "decimals": 18, - "name": "Mobox", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0xda661fa59320b808c5a6d23579fcfedf1fd3cf36.png", - "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0xcbeb19549054cc0a6257a77736fc78c367216ce7": { - "address": "0xcbeb19549054cc0a6257a77736fc78c367216ce7", - "symbol": "EUTBL", - "decimals": 5, - "name": "Spiko EU T-Bills Money Market Fund", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0xcbeb19549054cc0a6257a77736fc78c367216ce7.png", - "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0x2b65f9d2e4b84a2df6ff0525741b75d1276a9c2f": { - "address": "0x2b65f9d2e4b84a2df6ff0525741b75d1276a9c2f", - "symbol": "USD0++", - "decimals": 18, - "name": "USD0 Liquid Bond", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0x2b65f9d2e4b84a2df6ff0525741b75d1276a9c2f.png", - "aggregators": ["CoinGecko", "LiFi", "Rubic", "Rango"], - "occurrences": 4 - }, - "0x1bc8bf18256d8b45d8367aac50fe2e24fc6aa8ca": { - "address": "0x1bc8bf18256d8b45d8367aac50fe2e24fc6aa8ca", - "symbol": "VES", - "decimals": 18, - "name": "Vestate", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0x1bc8bf18256d8b45d8367aac50fe2e24fc6aa8ca.png", - "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0xeb4d25db65dcef52380c99ba7e1344c820ecb1fc": { - "address": "0xeb4d25db65dcef52380c99ba7e1344c820ecb1fc", - "symbol": "XWG", - "decimals": 18, - "name": "X World Games", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0xeb4d25db65dcef52380c99ba7e1344c820ecb1fc.png", - "aggregators": ["TraderJoe", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0xf84d28a8d28292842dd73d1c5f99476a80b6666a": { - "address": "0xf84d28a8d28292842dd73d1c5f99476a80b6666a", - "symbol": "TBILL", - "decimals": 6, - "name": "OpenEden TBILL", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0xf84d28a8d28292842dd73d1c5f99476a80b6666a.png", - "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0xe5cca68b9e1d5575b7e3062fa34b0c725b003a69": { - "address": "0xe5cca68b9e1d5575b7e3062fa34b0c725b003a69", - "symbol": "COLX", - "decimals": 8, - "name": "ColossusXT", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0xe5cca68b9e1d5575b7e3062fa34b0c725b003a69.png", - "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0xdc8b6b6beab4d5034ae91b7a1cf7d05a41f0d239": { - "address": "0xdc8b6b6beab4d5034ae91b7a1cf7d05a41f0d239", - "symbol": "GMAC", - "decimals": 18, - "name": "Gemach", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0xdc8b6b6beab4d5034ae91b7a1cf7d05a41f0d239.png", - "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0x021289588cd81dc1ac87ea91e91607eef68303f5": { - "address": "0x021289588cd81dc1ac87ea91e91607eef68303f5", - "symbol": "USTBL", - "decimals": 5, - "name": "Spiko US T-Bills Money Market Fund", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0x021289588cd81dc1ac87ea91e91607eef68303f5.png", - "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0x02cea97794d2cfb5f560e1ff4e9c59d1bec75969": { - "address": "0x02cea97794d2cfb5f560e1ff4e9c59d1bec75969", - "symbol": "VCHF", - "decimals": 18, - "name": "VNX Swiss Franc", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0x02cea97794d2cfb5f560e1ff4e9c59d1bec75969.png", - "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0x4883c8f0529f37e40ebea870f3c13cdfad5d01f8": { - "address": "0x4883c8f0529f37e40ebea870f3c13cdfad5d01f8", - "symbol": "VEUR", - "decimals": 18, - "name": "VNX EURO", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0x4883c8f0529f37e40ebea870f3c13cdfad5d01f8.png", - "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0x64fcc3a02eeeba05ef701b7eed066c6ebd5d4e51": { - "address": "0x64fcc3a02eeeba05ef701b7eed066c6ebd5d4e51", - "symbol": "SPECTRA", - "decimals": 18, - "name": "Spectra", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0x64fcc3a02eeeba05ef701b7eed066c6ebd5d4e51.png", - "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0x69420f9e38a4e60a62224c489be4bf7a94402496": { - "address": "0x69420f9e38a4e60a62224c489be4bf7a94402496", - "symbol": "MONEY", - "decimals": 18, - "name": "Defi.money", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0x69420f9e38a4e60a62224c489be4bf7a94402496.png", - "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0xa3210cd727fe6daf8386af5623ba51a367e46263": { - "address": "0xa3210cd727fe6daf8386af5623ba51a367e46263", - "symbol": "BSKT", - "decimals": 5, - "name": "Basket", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0xa3210cd727fe6daf8386af5623ba51a367e46263.png", - "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0x039d2e8f097331278bd6c1415d839310e0d5ece4": { - "address": "0x039d2e8f097331278bd6c1415d839310e0d5ece4", - "symbol": "LINDA", - "decimals": 18, - "name": "Linda", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0x039d2e8f097331278bd6c1415d839310e0d5ece4.png", - "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0x2b089381f53525451fe5115f23e9d2cc92d7ff1d": { - "address": "0x2b089381f53525451fe5115f23e9d2cc92d7ff1d", - "symbol": "DRC", - "decimals": 0, - "name": "Digital Reserve Currency", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0x2b089381f53525451fe5115f23e9d2cc92d7ff1d.png", - "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0x9dce8e754913d928eb39bc4fc3cf047e364f7f2c": { - "address": "0x9dce8e754913d928eb39bc4fc3cf047e364f7f2c", - "symbol": "BLOK", - "decimals": 18, - "name": "Bloktopia", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0x9dce8e754913d928eb39bc4fc3cf047e364f7f2c.png", - "aggregators": ["TraderJoe", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0x2fac624899a844e0628bfdcc70efcd25f6e90b95": { - "address": "0x2fac624899a844e0628bfdcc70efcd25f6e90b95", - "symbol": "YOU", - "decimals": 18, - "name": "Youwho", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0x2fac624899a844e0628bfdcc70efcd25f6e90b95.png", - "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0xbcf339df10d78f2b44aa760ead0f715a7a7d7269": { - "address": "0xbcf339df10d78f2b44aa760ead0f715a7a7d7269", - "symbol": "GUARD", - "decimals": 18, - "name": "Guardian GUARD", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0xbcf339df10d78f2b44aa760ead0f715a7a7d7269.png", - "aggregators": ["TraderJoe", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0xa4f63404b58c3efd9db6d53352bd386ffa174e5a": { - "address": "0xa4f63404b58c3efd9db6d53352bd386ffa174e5a", - "symbol": "MPT", - "decimals": 18, - "name": "Miracle Play", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0xa4f63404b58c3efd9db6d53352bd386ffa174e5a.png", - "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0xd45e486a90ebb84e9336d371a35dcb021424b96c": { - "address": "0xd45e486a90ebb84e9336d371a35dcb021424b96c", - "symbol": "SQUAD", - "decimals": 18, - "name": "Superpower Squad", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0xd45e486a90ebb84e9336d371a35dcb021424b96c.png", - "aggregators": ["TraderJoe", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0x3405e88af759992937b84e58f2fe691ef0eea320": { - "address": "0x3405e88af759992937b84e58f2fe691ef0eea320", - "symbol": "FPIS", - "decimals": 18, - "name": "Frax Price Index Share", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0x3405e88af759992937b84e58f2fe691ef0eea320.png", - "aggregators": ["TraderJoe", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0xcaa38bcc8fb3077975bbe217acfaa449e6596a84": { - "address": "0xcaa38bcc8fb3077975bbe217acfaa449e6596a84", - "symbol": "DAO", - "decimals": 18, - "name": "DAO Maker", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0xcaa38bcc8fb3077975bbe217acfaa449e6596a84.png", - "aggregators": ["TraderJoe", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0x9cf7eebb75b751dc8fdd2268ae8c9b570b4c97b9": { - "address": "0x9cf7eebb75b751dc8fdd2268ae8c9b570b4c97b9", - "symbol": "NULL", - "decimals": 18, - "name": "NULL MATRIX", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0x9cf7eebb75b751dc8fdd2268ae8c9b570b4c97b9.png", - "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0x2f11eeee0bf21e7661a22dbbbb9068f4ad191b86": { - "address": "0x2f11eeee0bf21e7661a22dbbbb9068f4ad191b86", - "symbol": "BNIU", - "decimals": 18, - "name": "Backed NIU Technologies", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0x2f11eeee0bf21e7661a22dbbbb9068f4ad191b86.png", - "aggregators": ["TraderJoe", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0xf061956612b3dc79fd285d3d51bc128f2ea87740": { - "address": "0xf061956612b3dc79fd285d3d51bc128f2ea87740", - "symbol": "YF-DAI", - "decimals": 18, - "name": "YfDAI.finance", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0xf061956612b3dc79fd285d3d51bc128f2ea87740.png", - "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0xffa188493c15dfaf2c206c97d8633377847b6a52": { - "address": "0xffa188493c15dfaf2c206c97d8633377847b6a52", - "symbol": "WEFI", - "decimals": 18, - "name": "Wefi", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0xffa188493c15dfaf2c206c97d8633377847b6a52.png", - "aggregators": ["TraderJoe", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0x3bd2dfd03bc7c3011ed7fb8c4d0949b382726cee": { - "address": "0x3bd2dfd03bc7c3011ed7fb8c4d0949b382726cee", - "symbol": "ROOBEE", - "decimals": 18, - "name": "Roobee", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0x3bd2dfd03bc7c3011ed7fb8c4d0949b382726cee.png", - "aggregators": ["TraderJoe", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0x5441695f4445e40900b4c4b0fb3ed2b9e51601a6": { - "address": "0x5441695f4445e40900b4c4b0fb3ed2b9e51601a6", - "symbol": "ARTH", - "decimals": 18, - "name": "ARTH", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0x5441695f4445e40900b4c4b0fb3ed2b9e51601a6.png", - "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0x11bbf12363dc8375b78d2719395d505f52a02f68": { - "address": "0x11bbf12363dc8375b78d2719395d505f52a02f68", - "symbol": "ROUTE", - "decimals": 18, - "name": "Router Protocol [OLD]", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0x11bbf12363dc8375b78d2719395d505f52a02f68.png", - "aggregators": ["TraderJoe", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0xd978f8489e1245568704407a479a71fcce2afe8f": { - "address": "0xd978f8489e1245568704407a479a71fcce2afe8f", - "symbol": "BANANA", - "decimals": 18, - "name": "ApeSwap", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0xd978f8489e1245568704407a479a71fcce2afe8f.png", - "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0xca30c93b02514f86d5c86a6e375e3a330b435fb5": { - "address": "0xca30c93b02514f86d5c86a6e375e3a330b435fb5", - "symbol": "BIB01", - "decimals": 18, - "name": "Backed IB01 $ Treasury Bond 0-1yr", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0xca30c93b02514f86d5c86a6e375e3a330b435fb5.png", - "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0xc9bd1c1e65ebfb36cf4b3d9fc8e2b844248deee8": { - "address": "0xc9bd1c1e65ebfb36cf4b3d9fc8e2b844248deee8", - "symbol": "KUDAI", - "decimals": 18, - "name": "Kudai", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0xc9bd1c1e65ebfb36cf4b3d9fc8e2b844248deee8.png", - "aggregators": ["TraderJoe", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0x9d5a383581882750ce27f84c72f017b378edb736": { - "address": "0x9d5a383581882750ce27f84c72f017b378edb736", - "symbol": "ALOT", - "decimals": 18, - "name": "Dexalot", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0x9d5a383581882750ce27f84c72f017b378edb736.png", - "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0xee0a242f28034fce0bdfac33c0ad2a58ec35fd38": { - "address": "0xee0a242f28034fce0bdfac33c0ad2a58ec35fd38", - "symbol": "ROSA", - "decimals": 18, - "name": "Rosa Inu", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0xee0a242f28034fce0bdfac33c0ad2a58ec35fd38.png", - "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0xa5312c3e42a82d459162b2a3bd7ffc4f9099b911": { - "address": "0xa5312c3e42a82d459162b2a3bd7ffc4f9099b911", - "symbol": "GALAXIS", - "decimals": 18, - "name": "GALAXIS Token", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0xa5312c3e42a82d459162b2a3bd7ffc4f9099b911.png", - "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0xea50f402653c41cadbafd1f788341db7b7f37816": { - "address": "0xea50f402653c41cadbafd1f788341db7b7f37816", - "symbol": "SGYD", - "decimals": 18, - "name": "sGYD", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0xea50f402653c41cadbafd1f788341db7b7f37816.png", - "aggregators": ["CoinGecko", "LiFi", "Rubic", "Sonarwatch"], - "occurrences": 4 - }, - "0x3088e120b220e67a2e092f5da8cdf02ea0170f6a": { - "address": "0x3088e120b220e67a2e092f5da8cdf02ea0170f6a", - "symbol": "FNXAI", - "decimals": 18, - "name": "Finanx AI", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0x3088e120b220e67a2e092f5da8cdf02ea0170f6a.png", - "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0x3b58a4c865b568a2f6a957c264f6b50cba35d8ce": { - "address": "0x3b58a4c865b568a2f6a957c264f6b50cba35d8ce", - "symbol": "GRND", - "decimals": 18, - "name": "SuperWalk GRND", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0x3b58a4c865b568a2f6a957c264f6b50cba35d8ce.png", - "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0x259b0f9494b3f02c652fa11417b94cb700f1f7d8": { - "address": "0x259b0f9494b3f02c652fa11417b94cb700f1f7d8", - "symbol": "CVPAD", - "decimals": 18, - "name": "CV Pad", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0x259b0f9494b3f02c652fa11417b94cb700f1f7d8.png", - "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0xb3f13b0c61d65d67d7d6215d70c89533ee567a91": { - "address": "0xb3f13b0c61d65d67d7d6215d70c89533ee567a91", - "symbol": "A51", - "decimals": 18, - "name": "A51 Finance", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0xb3f13b0c61d65d67d7d6215d70c89533ee567a91.png", - "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0x949185d3be66775ea648f4a306740ea9eff9c567": { - "address": "0x949185d3be66775ea648f4a306740ea9eff9c567", - "symbol": "YEL", - "decimals": 18, - "name": "Yel.Finance", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0x949185d3be66775ea648f4a306740ea9eff9c567.png", - "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0x2680e82fb8beb5a153a67fe687ffa67abb6b9013": { - "address": "0x2680e82fb8beb5a153a67fe687ffa67abb6b9013", - "symbol": "SMT", - "decimals": 18, - "name": "Swarm Markets", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0x2680e82fb8beb5a153a67fe687ffa67abb6b9013.png", - "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0xb00eaedb98f1e30ad545703d8ff14b24d109514f": { - "address": "0xb00eaedb98f1e30ad545703d8ff14b24d109514f", - "symbol": "YAKU", - "decimals": 9, - "name": "Yaku", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0xb00eaedb98f1e30ad545703d8ff14b24d109514f.png", - "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0x5a691001bf7065a17e150681f5bfbd7bc45a668e": { - "address": "0x5a691001bf7065a17e150681f5bfbd7bc45a668e", - "symbol": "SDUSD", - "decimals": 18, - "name": "Davos Protocol Staked DUSD", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0x5a691001bf7065a17e150681f5bfbd7bc45a668e.png", - "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0x28514bd097d5f9ecea778cc7a4ca4bac5fedb0b6": { - "address": "0x28514bd097d5f9ecea778cc7a4ca4bac5fedb0b6", - "symbol": "$BOO", - "decimals": 18, - "name": "BOO", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0x28514bd097d5f9ecea778cc7a4ca4bac5fedb0b6.png", - "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0x2ad62eb9744c720364f6ac856360a43e8a2229b5": { - "address": "0x2ad62eb9744c720364f6ac856360a43e8a2229b5", - "symbol": "DOC", - "decimals": 18, - "name": "Dollar On Chain", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0x2ad62eb9744c720364f6ac856360a43e8a2229b5.png", - "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0x565f12c7f08d906ea9f32c0826412ec13d4f8030": { - "address": "0x565f12c7f08d906ea9f32c0826412ec13d4f8030", - "symbol": "RUBI", - "decimals": 18, - "name": "Rubicon", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0x565f12c7f08d906ea9f32c0826412ec13d4f8030.png", - "aggregators": ["CoinGecko", "LiFi", "Rubic", "Rango"], - "occurrences": 4 - }, - "0x764a726d9ced0433a8d7643335919deb03a9a935": { - "address": "0x764a726d9ced0433a8d7643335919deb03a9a935", - "symbol": "POKT", - "decimals": 6, - "name": "Pocket Network", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0x764a726d9ced0433a8d7643335919deb03a9a935.png", - "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0x1c22531aa9747d76fff8f0a43b37954ca67d28e0": { - "address": "0x1c22531aa9747d76fff8f0a43b37954ca67d28e0", - "symbol": "SUETH", - "decimals": 18, - "name": "Sumer.Money suETH", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0x1c22531aa9747d76fff8f0a43b37954ca67d28e0.png", - "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0x07dd5beaffb65b8ff2e575d500bdf324a05295dc": { - "address": "0x07dd5beaffb65b8ff2e575d500bdf324a05295dc", - "symbol": "ARBI", - "decimals": 18, - "name": "ArbiPad", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0x07dd5beaffb65b8ff2e575d500bdf324a05295dc.png", - "aggregators": ["TraderJoe", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0x1426cf37caa89628c4da2864e40cf75e6d66ac6b": { - "address": "0x1426cf37caa89628c4da2864e40cf75e6d66ac6b", - "symbol": "RELAY", - "decimals": 18, - "name": "Relay Token", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0x1426cf37caa89628c4da2864e40cf75e6d66ac6b.png", - "aggregators": ["TraderJoe", "LiFi", "Rubic", "Rango"], - "occurrences": 4 - }, - "0x1824a51c106efc27d35a74efb56d9bf54ddb22d4": { - "address": "0x1824a51c106efc27d35a74efb56d9bf54ddb22d4", - "symbol": "PRY", - "decimals": 18, - "name": "Perpy Finance", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0x1824a51c106efc27d35a74efb56d9bf54ddb22d4.png", - "aggregators": ["TraderJoe", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0x1aae7de64d9ae1487e95858bbf98185f21e926fd": { - "address": "0x1aae7de64d9ae1487e95858bbf98185f21e926fd", - "symbol": "AICORE", - "decimals": 18, - "name": "AICORE", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0x1aae7de64d9ae1487e95858bbf98185f21e926fd.png", - "aggregators": ["TraderJoe", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0x1b7ad346b6ff2d196daa8e78aed86baa6d7e3b02": { - "address": "0x1b7ad346b6ff2d196daa8e78aed86baa6d7e3b02", - "symbol": "VITAI", - "decimals": 18, - "name": "VitAI", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0x1b7ad346b6ff2d196daa8e78aed86baa6d7e3b02.png", - "aggregators": ["TraderJoe", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0x24ef78c7092d255ed14a0281ac1800c359af3afe": { - "address": "0x24ef78c7092d255ed14a0281ac1800c359af3afe", - "symbol": "RAB", - "decimals": 18, - "name": "Rabbit Wallet", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0x24ef78c7092d255ed14a0281ac1800c359af3afe.png", - "aggregators": ["TraderJoe", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0x31c91d8fb96bff40955dd2dbc909b36e8b104dde": { - "address": "0x31c91d8fb96bff40955dd2dbc909b36e8b104dde", - "symbol": "POI$ON", - "decimals": 18, - "name": "Poison Finance", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0x31c91d8fb96bff40955dd2dbc909b36e8b104dde.png", - "aggregators": ["TraderJoe", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0x3b6564b5da73a41d3a66e6558a98fd0e9e1e77ad": { - "address": "0x3b6564b5da73a41d3a66e6558a98fd0e9e1e77ad", - "symbol": "UTS", - "decimals": 18, - "name": "Unitus", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0x3b6564b5da73a41d3a66e6558a98fd0e9e1e77ad.png", - "aggregators": ["TraderJoe", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0x4e0da40b9063dc48364c1c0ffb4ae9d091fc2270": { - "address": "0x4e0da40b9063dc48364c1c0ffb4ae9d091fc2270", - "symbol": "EDG", - "decimals": 18, - "name": "Edgeware", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0x4e0da40b9063dc48364c1c0ffb4ae9d091fc2270.png", - "aggregators": ["TraderJoe", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0x500756c7d239aee30f52c7e52af4f4f008d1a98f": { - "address": "0x500756c7d239aee30f52c7e52af4f4f008d1a98f", - "symbol": "OIL", - "decimals": 18, - "name": "Petroleum OIL", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0x500756c7d239aee30f52c7e52af4f4f008d1a98f.png", - "aggregators": ["TraderJoe", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0x50e401255275dc405a99d3281f396cca681eea9d": { - "address": "0x50e401255275dc405a99d3281f396cca681eea9d", - "symbol": "KORA", - "decimals": 18, - "name": "Kortana", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0x50e401255275dc405a99d3281f396cca681eea9d.png", - "aggregators": ["TraderJoe", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0x59a729658e9245b0cf1f8cb9fb37945d2b06ea27": { - "address": "0x59a729658e9245b0cf1f8cb9fb37945d2b06ea27", - "symbol": "$GENE", - "decimals": 18, - "name": "GenomesDAO GENE", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0x59a729658e9245b0cf1f8cb9fb37945d2b06ea27.png", - "aggregators": ["TraderJoe", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0x67c31056358b8977ea95a3a899dd380d4bced706": { - "address": "0x67c31056358b8977ea95a3a899dd380d4bced706", - "symbol": "ETHFAI", - "decimals": 18, - "name": "ETHforestAI", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0x67c31056358b8977ea95a3a899dd380d4bced706.png", - "aggregators": ["TraderJoe", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0x7a2c1b8e26c48a5b73816b7ec826fd4053f5f34b": { - "address": "0x7a2c1b8e26c48a5b73816b7ec826fd4053f5f34b", - "symbol": "ZZZ", - "decimals": 18, - "name": "GoSleep ZZZ", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0x7a2c1b8e26c48a5b73816b7ec826fd4053f5f34b.png", - "aggregators": ["TraderJoe", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0x93ca0d85837ff83158cd14d65b169cdb223b1921": { - "address": "0x93ca0d85837ff83158cd14d65b169cdb223b1921", - "symbol": "ECLIP", - "decimals": 6, - "name": "Eclipse Fi", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0x93ca0d85837ff83158cd14d65b169cdb223b1921.png", - "aggregators": ["TraderJoe", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0xa0c8d91b6dce36f6deeadf716ab02bc539d9bebf": { - "address": "0xa0c8d91b6dce36f6deeadf716ab02bc539d9bebf", - "symbol": "GMB", - "decimals": 18, - "name": "Gameboi", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0xa0c8d91b6dce36f6deeadf716ab02bc539d9bebf.png", - "aggregators": ["TraderJoe", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0xb98058640970d8aa7bbce3b067b2d63c14143786": { - "address": "0xb98058640970d8aa7bbce3b067b2d63c14143786", - "symbol": "BARB", - "decimals": 18, - "name": "Baby Arbitrum", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0xb98058640970d8aa7bbce3b067b2d63c14143786.png", - "aggregators": ["TraderJoe", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0xd26b0c6ef8581e921ae41c66e508c62a581b709d": { - "address": "0xd26b0c6ef8581e921ae41c66e508c62a581b709d", - "symbol": "SEX", - "decimals": 18, - "name": "Sexone", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0xd26b0c6ef8581e921ae41c66e508c62a581b709d.png", - "aggregators": ["TraderJoe", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0xed7f000ee335b8199b004cca1c6f36d188cf6cb8": { - "address": "0xed7f000ee335b8199b004cca1c6f36d188cf6cb8", - "symbol": "D2", - "decimals": 18, - "name": "D2 Finance", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0xed7f000ee335b8199b004cca1c6f36d188cf6cb8.png", - "aggregators": ["TraderJoe", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0xf29fdf6b7bdffb025d7e6dfdf344992d2d16e249": { - "address": "0xf29fdf6b7bdffb025d7e6dfdf344992d2d16e249", - "symbol": "GENSX", - "decimals": 6, - "name": "Genius X", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0xf29fdf6b7bdffb025d7e6dfdf344992d2d16e249.png", - "aggregators": ["TraderJoe", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0xf6eb7a9799f6680c320e79d0fb35e842d54d38ce": { - "address": "0xf6eb7a9799f6680c320e79d0fb35e842d54d38ce", - "symbol": "OVER", - "decimals": 18, - "name": "Overlord", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0xf6eb7a9799f6680c320e79d0fb35e842d54d38ce.png", - "aggregators": ["TraderJoe", "Socket", "Rubic", "Rango"], - "occurrences": 4 - }, - "0xfbbb21d8e7a461f06e5e27efd69703acb5c732a8": { - "address": "0xfbbb21d8e7a461f06e5e27efd69703acb5c732a8", - "symbol": "KNJ", - "decimals": 18, - "name": "Kunji Finance", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0xfbbb21d8e7a461f06e5e27efd69703acb5c732a8.png", - "aggregators": ["TraderJoe", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0x65c101e95d7dd475c7966330fa1a803205ff92ab": { - "address": "0x65c101e95d7dd475c7966330fa1a803205ff92ab", - "symbol": "HOL", - "decimals": 18, - "name": "Hall of Legends", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0x65c101e95d7dd475c7966330fa1a803205ff92ab.png", - "aggregators": ["1inch", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0x8616e8ea83f048ab9a5ec513c9412dd2993bce3f": { - "address": "0x8616e8ea83f048ab9a5ec513c9412dd2993bce3f", - "symbol": "FXUSD", - "decimals": 18, - "name": "handleUSD", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0x8616e8ea83f048ab9a5ec513c9412dd2993bce3f.png", - "aggregators": ["LiFi", "Socket", "Rubic", "Rango"], - "occurrences": 4 - }, - "0x8933fedd98cbb482e27c41e1bd7216a4e42ebd39": { - "address": "0x8933fedd98cbb482e27c41e1bd7216a4e42ebd39", - "symbol": "PGS", - "decimals": 18, - "name": "PegasusBot", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0x8933fedd98cbb482e27c41e1bd7216a4e42ebd39.png", - "aggregators": ["LiFi", "Rubic", "Rango", "SushiSwap"], - "occurrences": 4 - }, - "0xb448ec505c924944ca8b2c55ef05c299ee0781df": { - "address": "0xb448ec505c924944ca8b2c55ef05c299ee0781df", - "symbol": "AXLKNC", - "decimals": 18, - "name": "Axelar Wrapped KNC", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0xb448ec505c924944ca8b2c55ef05c299ee0781df.png", - "aggregators": ["LiFi", "Rubic", "Squid", "Rango"], - "occurrences": 4 - }, - "0x346e74dc9935a9b02eb34fb84658a66010fa056d": { - "address": "0x346e74dc9935a9b02eb34fb84658a66010fa056d", - "symbol": "ZUN", - "decimals": 18, - "name": "Zunami Governance Token", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0x346e74dc9935a9b02eb34fb84658a66010fa056d.png", - "aggregators": ["LiFi", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0xaeeba475edc438f8eeb6bfbc3164c1c7716fb304": { - "address": "0xaeeba475edc438f8eeb6bfbc3164c1c7716fb304", - "symbol": "DICE", - "decimals": 18, - "name": "Party Dice", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0xaeeba475edc438f8eeb6bfbc3164c1c7716fb304.png", - "aggregators": ["LiFi", "Rubic", "Rango", "SushiSwap"], - "occurrences": 4 - }, - "0x06d65ec13465ac5a4376dc101e1141252c4addf8": { - "address": "0x06d65ec13465ac5a4376dc101e1141252c4addf8", - "symbol": "ZUNETH", - "decimals": 18, - "name": "Zunami ETH", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0x06d65ec13465ac5a4376dc101e1141252c4addf8.png", - "aggregators": ["LiFi", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0xafafd68afe3fe65d376eec9eab1802616cfaccb8": { - "address": "0xafafd68afe3fe65d376eec9eab1802616cfaccb8", - "symbol": "SOLVBTC.ENA", - "decimals": 18, - "name": "SolvBTC Ethena", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0xafafd68afe3fe65d376eec9eab1802616cfaccb8.png", - "aggregators": ["LiFi", "Rubic", "Rango", "SushiSwap"], - "occurrences": 4 - }, - "0x88dfaaabaf06f3a41d2606ea98bc8eda109abebb": { - "address": "0x88dfaaabaf06f3a41d2606ea98bc8eda109abebb", - "symbol": "AXLWMAI", - "decimals": 18, - "name": "Axelar Wrapped WMAI", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0x88dfaaabaf06f3a41d2606ea98bc8eda109abebb.png", - "aggregators": ["LiFi", "Rubic", "Squid", "Rango"], - "occurrences": 4 - }, - "0xb827710314a05bcbee9180e11c2abe5823289422": { - "address": "0xb827710314a05bcbee9180e11c2abe5823289422", - "symbol": "ABI", - "decimals": 18, - "name": "Abachi", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0xb827710314a05bcbee9180e11c2abe5823289422.png", - "aggregators": ["LiFi", "Socket", "Rubic", "Rango"], - "occurrences": 4 - }, - "0x32e4d98d3010ac12d75019c484caa78665b03986": { - "address": "0x32e4d98d3010ac12d75019c484caa78665b03986", - "symbol": "GBOT", - "decimals": 18, - "name": "GBOT", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0x32e4d98d3010ac12d75019c484caa78665b03986.png", - "aggregators": ["LiFi", "Rubic", "Rango", "SushiSwap"], - "occurrences": 4 - }, - "0xa8c25fdc09763a176353cc6a76882e05b4905fae": { - "address": "0xa8c25fdc09763a176353cc6a76882e05b4905fae", - "symbol": "FLOKI", - "decimals": 9, - "name": "FLOKI", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0xa8c25fdc09763a176353cc6a76882e05b4905fae.png", - "aggregators": ["UniswapLabs", "Socket", "Rango"], - "occurrences": 3 - }, - "0x631a64e240180d4b604f736cb6e19c1a7ec77254": { - "address": "0x631a64e240180d4b604f736cb6e19c1a7ec77254", - "symbol": "PRO", - "decimals": 8, - "name": "Propy", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0x631a64e240180d4b604f736cb6e19c1a7ec77254.png", - "aggregators": ["UniswapLabs", "LiFi", "Rango"], - "occurrences": 3 - }, - "0xe575586566b02a16338c199c23ca6d295d794e66": { - "address": "0xe575586566b02a16338c199c23ca6d295d794e66", - "symbol": "RLC", - "decimals": 9, - "name": "iExec RLC", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0xe575586566b02a16338c199c23ca6d295d794e66.png", - "aggregators": ["UniswapLabs", "Socket", "Rango"], - "occurrences": 3 - }, - "0xfa51b42d4c9ea35f1758828226aaedbec50dd54e": { - "address": "0xfa51b42d4c9ea35f1758828226aaedbec50dd54e", - "symbol": "TAC", - "decimals": 18, - "name": "Taekwondo Access Credit", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0xfa51b42d4c9ea35f1758828226aaedbec50dd54e.png", - "aggregators": ["ArbitrumWhitelist", "LiFi", "Rango"], - "occurrences": 3 - }, - "0x250f471385894fc81183a99d6fde8ce9c5b142d6": { - "address": "0x250f471385894fc81183a99d6fde8ce9c5b142d6", - "symbol": "UNT", - "decimals": 18, - "name": "Unity Network", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0x250f471385894fc81183a99d6fde8ce9c5b142d6.png", - "aggregators": ["ArbitrumWhitelist", "LiFi", "Rango"], - "occurrences": 3 - }, - "0xa150245f155778e749185c9446e9e59e406674ef": { - "address": "0xa150245f155778e749185c9446e9e59e406674ef", - "symbol": "WBRK.BX", - "decimals": 18, - "name": "Wrapped Berkshire Hathaway xStock", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0xa150245f155778e749185c9446e9e59e406674ef.png", - "aggregators": ["CoinGecko", "Rubic", "Sonarwatch"], - "occurrences": 3 - }, - "0xad5cdc3340904285b8159089974a99a1a09eb4c0": { - "address": "0xad5cdc3340904285b8159089974a99a1a09eb4c0", - "symbol": "CVXX", - "decimals": 18, - "name": "CVXX", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0xad5cdc3340904285b8159089974a99a1a09eb4c0.png", - "aggregators": ["CoinGecko", "Rubic", "Rango"], - "occurrences": 3 - }, - "0xcfa485bc42c2492917351f89f5cf5c7b2c5a66aa": { - "address": "0xcfa485bc42c2492917351f89f5cf5c7b2c5a66aa", - "symbol": "WCSCOX", - "decimals": 18, - "name": "Wrapped Cisco xStock", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0xcfa485bc42c2492917351f89f5cf5c7b2c5a66aa.png", - "aggregators": ["CoinGecko", "Rubic", "Sonarwatch"], - "occurrences": 3 - }, - "0x13a78809528b02ad5e7c42f39232d332761dfb1d": { - "address": "0x13a78809528b02ad5e7c42f39232d332761dfb1d", - "symbol": "PFWETH", - "decimals": 18, - "name": "Parifi WETH", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0x13a78809528b02ad5e7c42f39232d332761dfb1d.png", - "aggregators": ["CoinGecko", "Rubic", "Rango"], - "occurrences": 3 - }, - "0xd9913208647671fe0f48f7f260076b2c6f310aac": { - "address": "0xd9913208647671fe0f48f7f260076b2c6f310aac", - "symbol": "IBMX", - "decimals": 18, - "name": "IBMX", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0xd9913208647671fe0f48f7f260076b2c6f310aac.png", - "aggregators": ["CoinGecko", "Rubic", "Rango"], - "occurrences": 3 - }, - "0xaedf7656fbb47c5b97dd529ac1d0e807e051f2dd": { - "address": "0xaedf7656fbb47c5b97dd529ac1d0e807e051f2dd", - "symbol": "MXC", - "decimals": 18, - "name": "MXC Token", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0xaedf7656fbb47c5b97dd529ac1d0e807e051f2dd.png", - "aggregators": ["CoinGecko", "Rubic", "Rango"], - "occurrences": 3 - }, - "0xbc7170a1280be28513b4e940c681537eb25e39f4": { - "address": "0xbc7170a1280be28513b4e940c681537eb25e39f4", - "symbol": "CMCSAX", - "decimals": 18, - "name": "CMCSAX", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0xbc7170a1280be28513b4e940c681537eb25e39f4.png", - "aggregators": ["CoinGecko", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x314938c596f5ce31c3f75307d2979338c346d7f2": { - "address": "0x314938c596f5ce31c3f75307d2979338c346d7f2", - "symbol": "BACX", - "decimals": 18, - "name": "BACX", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0x314938c596f5ce31c3f75307d2979338c346d7f2.png", - "aggregators": ["CoinGecko", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x214151022c2a5e380ab80cdac31f23ae554a7345": { - "address": "0x214151022c2a5e380ab80cdac31f23ae554a7345", - "symbol": "CRWDX", - "decimals": 18, - "name": "CRWDX", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0x214151022c2a5e380ab80cdac31f23ae554a7345.png", - "aggregators": ["CoinGecko", "Rubic", "Rango"], - "occurrences": 3 - }, - "0xbe023308ac2ef7e1c3799f4e6a3003ee6d342635": { - "address": "0xbe023308ac2ef7e1c3799f4e6a3003ee6d342635", - "symbol": "GBPSAFO", - "decimals": 5, - "name": "Spiko Amundi Overnight Swap Fund (GBP)", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0xbe023308ac2ef7e1c3799f4e6a3003ee6d342635.png", - "aggregators": ["CoinGecko", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x51f6ee60108cbcb3b613093bd3f224cb49aa1610": { - "address": "0x51f6ee60108cbcb3b613093bd3f224cb49aa1610", - "symbol": "BRI", - "decimals": 9, - "name": "BrightPool Token", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0x51f6ee60108cbcb3b613093bd3f224cb49aa1610.png", - "aggregators": ["CoinGecko", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x9d275685dc284c8eb1c79f6aba7a63dc75ec890a": { - "address": "0x9d275685dc284c8eb1c79f6aba7a63dc75ec890a", - "symbol": "AAPLX", - "decimals": 18, - "name": "AAPLX", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0x9d275685dc284c8eb1c79f6aba7a63dc75ec890a.png", - "aggregators": ["CoinGecko", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x1412632f2b89e87bfa20c1318a43ced25f1d7b76": { - "address": "0x1412632f2b89e87bfa20c1318a43ced25f1d7b76", - "symbol": "EURSAFO", - "decimals": 5, - "name": "Spiko Amundi Overnight Swap Fund (EUR)", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0x1412632f2b89e87bfa20c1318a43ced25f1d7b76.png", - "aggregators": ["CoinGecko", "Rubic", "Rango"], - "occurrences": 3 - }, - "0xab5c23bdbe99d75a7ae4756e7ccefd0a97b37e78": { - "address": "0xab5c23bdbe99d75a7ae4756e7ccefd0a97b37e78", - "symbol": "STXAI", - "decimals": 18, - "name": "stXAI", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0xab5c23bdbe99d75a7ae4756e7ccefd0a97b37e78.png", - "aggregators": ["CoinGecko", "Rubic", "Sonarwatch"], - "occurrences": 3 - }, - "0x12992613fdd35abe95dec5a4964331b1ee23b50d": { - "address": "0x12992613fdd35abe95dec5a4964331b1ee23b50d", - "symbol": "BRK.BX", - "decimals": 18, - "name": "BRK.BX", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0x12992613fdd35abe95dec5a4964331b1ee23b50d.png", - "aggregators": ["CoinGecko", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x0c709396739b9cfb72bcea6ac691ce0ddf66479c": { - "address": "0x0c709396739b9cfb72bcea6ac691ce0ddf66479c", - "symbol": "SAFO", - "decimals": 5, - "name": "Spiko Amundi Overnight Swap Fund", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0x0c709396739b9cfb72bcea6ac691ce0ddf66479c.png", - "aggregators": ["CoinGecko", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x3557ba345b01efa20a1bddc61f573bfd87195081": { - "address": "0x3557ba345b01efa20a1bddc61f573bfd87195081", - "symbol": "AMZNX", - "decimals": 18, - "name": "AMZNX", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0x3557ba345b01efa20a1bddc61f573bfd87195081.png", - "aggregators": ["CoinGecko", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x17176a9868f321411b15ccb9b934cf95597e89c4": { - "address": "0x17176a9868f321411b15ccb9b934cf95597e89c4", - "symbol": "GOOD", - "decimals": 18, - "name": "Good Entry", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0x17176a9868f321411b15ccb9b934cf95597e89c4.png", - "aggregators": ["TraderJoe", "Rubic", "Sonarwatch"], - "occurrences": 3 - }, - "0xe1385fdd5ffb10081cd52c56584f25efa9084015": { - "address": "0xe1385fdd5ffb10081cd52c56584f25efa9084015", - "symbol": "HOODX", - "decimals": 18, - "name": "HOODX", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0xe1385fdd5ffb10081cd52c56584f25efa9084015.png", - "aggregators": ["CoinGecko", "Rubic", "Rango"], - "occurrences": 3 - }, - "0xfc675adfdd721064ba923d07a8a238a9e52d8ace": { - "address": "0xfc675adfdd721064ba923d07a8a238a9e52d8ace", - "symbol": "ESPRF", - "decimals": 18, - "name": "escrowed PRF", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0xfc675adfdd721064ba923d07a8a238a9e52d8ace.png", - "aggregators": ["CoinGecko", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x50a1291f69d9d3853def8209cfb1af0b46927be1": { - "address": "0x50a1291f69d9d3853def8209cfb1af0b46927be1", - "symbol": "APPX", - "decimals": 18, - "name": "APPX", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0x50a1291f69d9d3853def8209cfb1af0b46927be1.png", - "aggregators": ["CoinGecko", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x8deb752aaa807e0258afd5ccffe2b5a804026f28": { - "address": "0x8deb752aaa807e0258afd5ccffe2b5a804026f28", - "symbol": "WAVGOX", - "decimals": 18, - "name": "Wrapped Broadcom xStock", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0x8deb752aaa807e0258afd5ccffe2b5a804026f28.png", - "aggregators": ["CoinGecko", "Rubic", "Sonarwatch"], - "occurrences": 3 - }, - "0xe92f673ca36c5e2efd2de7628f815f84807e803f": { - "address": "0xe92f673ca36c5e2efd2de7628f815f84807e803f", - "symbol": "GOOGLX", - "decimals": 18, - "name": "GOOGLX", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0xe92f673ca36c5e2efd2de7628f815f84807e803f.png", - "aggregators": ["CoinGecko", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x68d6d2545f14751baf36c417c2cc7cdf8da8a15b": { - "address": "0x68d6d2545f14751baf36c417c2cc7cdf8da8a15b", - "symbol": "PLSSYK", - "decimals": 18, - "name": "Plutus SYK", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0x68d6d2545f14751baf36c417c2cc7cdf8da8a15b.png", - "aggregators": ["CoinGecko", "Rubic", "Rango"], - "occurrences": 3 - }, - "0xd7a892f28dedc74e6b7b33f93be08abfc394a360": { - "address": "0xd7a892f28dedc74e6b7b33f93be08abfc394a360", - "symbol": "CIP", - "decimals": 18, - "name": "Crypto Index Pool", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0xd7a892f28dedc74e6b7b33f93be08abfc394a360.png", - "aggregators": ["TraderJoe", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x38bac69cbbd28156796e4163b2b6dcb81e336565": { - "address": "0x38bac69cbbd28156796e4163b2b6dcb81e336565", - "symbol": "AVGOX", - "decimals": 18, - "name": "AVGOX", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0x38bac69cbbd28156796e4163b2b6dcb81e336565.png", - "aggregators": ["CoinGecko", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x364f210f430ec2448fc68a49203040f6124096f0": { - "address": "0x364f210f430ec2448fc68a49203040f6124096f0", - "symbol": "COINX", - "decimals": 18, - "name": "COINX", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0x364f210f430ec2448fc68a49203040f6124096f0.png", - "aggregators": ["CoinGecko", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x723ce01b57dfd7148785b90d66275005aa2edd17": { - "address": "0x723ce01b57dfd7148785b90d66275005aa2edd17", - "symbol": "LZM", - "decimals": 8, - "name": "LZM", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0x723ce01b57dfd7148785b90d66275005aa2edd17.png", - "aggregators": ["CoinGecko", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x053c784cd87b74f42e0c089f98643e79c1a3ff16": { - "address": "0x053c784cd87b74f42e0c089f98643e79c1a3ff16", - "symbol": "CSCOX", - "decimals": 18, - "name": "CSCOX", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0x053c784cd87b74f42e0c089f98643e79c1a3ff16.png", - "aggregators": ["CoinGecko", "Rubic", "Rango"], - "occurrences": 3 - }, - "0xf8a80d1cb9cfd70d03d655d9df42339846f3b3c8": { - "address": "0xf8a80d1cb9cfd70d03d655d9df42339846f3b3c8", - "symbol": "INTCX", - "decimals": 18, - "name": "INTCX", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0xf8a80d1cb9cfd70d03d655d9df42339846f3b3c8.png", - "aggregators": ["CoinGecko", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x6c511dc18572d31c2c3f7b1505cb2bbc08282fcc": { - "address": "0x6c511dc18572d31c2c3f7b1505cb2bbc08282fcc", - "symbol": "AIPO", - "decimals": 18, - "name": "Aipocalypto", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0x6c511dc18572d31c2c3f7b1505cb2bbc08282fcc.png", - "aggregators": ["CoinGecko", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x52d134c6db5889fad3542a09eaf7aa90c0fdf9e4": { - "address": "0x52d134c6db5889fad3542a09eaf7aa90c0fdf9e4", - "symbol": "BIBTA", - "decimals": 18, - "name": "Backed IBTA $ Treasury Bond 1-3yr", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0x52d134c6db5889fad3542a09eaf7aa90c0fdf9e4.png", - "aggregators": ["CoinGecko", "Rubic", "Sonarwatch"], - "occurrences": 3 - }, - "0x20c64dee8fda5269a78f2d5bdba861ca1d83df7a": { - "address": "0x20c64dee8fda5269a78f2d5bdba861ca1d83df7a", - "symbol": "BHIGH", - "decimals": 18, - "name": "Backed HIGH € High Yield Corp Bond", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0x20c64dee8fda5269a78f2d5bdba861ca1d83df7a.png", - "aggregators": ["CoinGecko", "Rubic", "Sonarwatch"], - "occurrences": 3 - }, - "0xed6c7a7b116876a4bf225cbf044681f070684fa5": { - "address": "0xed6c7a7b116876a4bf225cbf044681f070684fa5", - "symbol": "BTC.ℏ[ARB]", - "decimals": 8, - "name": "BTC.ℏ[ARB]", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0xed6c7a7b116876a4bf225cbf044681f070684fa5.png", - "aggregators": ["CoinGecko", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x0e389c83bc1d16d86412476f6103027555c03265": { - "address": "0x0e389c83bc1d16d86412476f6103027555c03265", - "symbol": "EURSPKCC", - "decimals": 5, - "name": "Spiko Digital Assets Cash & Carry Fund - Euro Share Class", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0x0e389c83bc1d16d86412476f6103027555c03265.png", - "aggregators": ["CoinGecko", "Rubic", "Rango"], - "occurrences": 3 - }, - "0xcded6b899edba762d793f44ed295248049440e1e": { - "address": "0xcded6b899edba762d793f44ed295248049440e1e", - "symbol": "FIUSD", - "decimals": 2, - "name": "FIUSD", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0xcded6b899edba762d793f44ed295248049440e1e.png", - "aggregators": ["CoinGecko", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x7712da72127d5dd213b621497d6e4899d5989e5c": { - "address": "0x7712da72127d5dd213b621497d6e4899d5989e5c", - "symbol": "RYZE", - "decimals": 18, - "name": "Ryze", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0x7712da72127d5dd213b621497d6e4899d5989e5c.png", - "aggregators": ["CoinGecko", "Rubic", "Rango"], - "occurrences": 3 - }, - "0xade6057fcafa57d6d51ffa341c64ce4814995995": { - "address": "0xade6057fcafa57d6d51ffa341c64ce4814995995", - "symbol": "BZPR1", - "decimals": 18, - "name": "Backed ZPR1 $ 1-3 Month T-Bill", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0xade6057fcafa57d6d51ffa341c64ce4814995995.png", - "aggregators": ["CoinGecko", "Rubic", "Sonarwatch"], - "occurrences": 3 - }, - "0xecf2adaff1de8a512f6e8bfe67a2c836edb25da3": { - "address": "0xecf2adaff1de8a512f6e8bfe67a2c836edb25da3", - "symbol": "WMEMO", - "decimals": 18, - "name": "Wrapped MEMO", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0xecf2adaff1de8a512f6e8bfe67a2c836edb25da3.png", - "aggregators": ["CoinGecko", "Rubic", "Rango"], - "occurrences": 3 - }, - "0xd7b675cd5c84a13d1d0f84509345530f6421b57c": { - "address": "0xd7b675cd5c84a13d1d0f84509345530f6421b57c", - "symbol": "OOOI", - "decimals": 18, - "name": "Corridor Finance", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0xd7b675cd5c84a13d1d0f84509345530f6421b57c.png", - "aggregators": ["CoinGecko", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x89d59a38eb2a91df58a709bb249bf1d13ad11037": { - "address": "0x89d59a38eb2a91df58a709bb249bf1d13ad11037", - "symbol": "ELG", - "decimals": 18, - "name": "ELG", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0x89d59a38eb2a91df58a709bb249bf1d13ad11037.png", - "aggregators": ["CoinGecko", "Rubic", "Rango"], - "occurrences": 3 - }, - "0xdbae615958708c0bc61234d2624b95077b017eb7": { - "address": "0xdbae615958708c0bc61234d2624b95077b017eb7", - "symbol": "BITPRO", - "decimals": 18, - "name": "BitPRO", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0xdbae615958708c0bc61234d2624b95077b017eb7.png", - "aggregators": ["CoinGecko", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x6a4db980360fc55762e32f6921610601e1882846": { - "address": "0x6a4db980360fc55762e32f6921610601e1882846", - "symbol": "MOC", - "decimals": 18, - "name": "Money On Chain", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0x6a4db980360fc55762e32f6921610601e1882846.png", - "aggregators": ["CoinGecko", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x1d1498166ddceee616a6d99868e1e0677300056f": { - "address": "0x1d1498166ddceee616a6d99868e1e0677300056f", - "symbol": "XSPACE", - "decimals": 18, - "name": "xSpace Token", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0x1d1498166ddceee616a6d99868e1e0677300056f.png", - "aggregators": ["CoinGecko", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x000d636bd52bfc1b3a699165ef5aa340bea8939c": { - "address": "0x000d636bd52bfc1b3a699165ef5aa340bea8939c", - "symbol": "ODG", - "decimals": 18, - "name": "Open Dollar Governance", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0x000d636bd52bfc1b3a699165ef5aa340bea8939c.png", - "aggregators": ["TraderJoe", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x1922c36f3bc762ca300b4a46bb2102f84b1684ab": { - "address": "0x1922c36f3bc762ca300b4a46bb2102f84b1684ab", - "symbol": "CMUMAMI", - "decimals": 9, - "name": "Compounded Marinated UMAMI", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0x1922c36f3bc762ca300b4a46bb2102f84b1684ab.png", - "aggregators": ["TraderJoe", "Socket", "Rubic"], - "occurrences": 3 - }, - "0x221a0f68770658c15b525d0f89f5da2baab5f321": { - "address": "0x221a0f68770658c15b525d0f89f5da2baab5f321", - "symbol": "OD", - "decimals": 18, - "name": "Open Dollar", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0x221a0f68770658c15b525d0f89f5da2baab5f321.png", - "aggregators": ["TraderJoe", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x2e516ba5bf3b7ee47fb99b09eadb60bde80a82e0": { - "address": "0x2e516ba5bf3b7ee47fb99b09eadb60bde80a82e0", - "symbol": "AEGGS", - "decimals": 18, - "name": "Arbitrum Eggs", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0x2e516ba5bf3b7ee47fb99b09eadb60bde80a82e0.png", - "aggregators": ["TraderJoe", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x3404149e9ee6f17fb41db1ce593ee48fbdcd9506": { - "address": "0x3404149e9ee6f17fb41db1ce593ee48fbdcd9506", - "symbol": "HDN", - "decimals": 18, - "name": "Hydranet", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0x3404149e9ee6f17fb41db1ce593ee48fbdcd9506.png", - "aggregators": ["TraderJoe", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x39a49bc5017fc668299cd32e734c9269acc35295": { - "address": "0x39a49bc5017fc668299cd32e734c9269acc35295", - "symbol": "PHONON", - "decimals": 18, - "name": "Phonon DAO", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0x39a49bc5017fc668299cd32e734c9269acc35295.png", - "aggregators": ["TraderJoe", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x3a33473d7990a605a88ac72a78ad4efc40a54adb": { - "address": "0x3a33473d7990a605a88ac72a78ad4efc40a54adb", - "symbol": "TIG", - "decimals": 18, - "name": "Tigris", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0x3a33473d7990a605a88ac72a78ad4efc40a54adb.png", - "aggregators": ["TraderJoe", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x4d010dbe0c6cdc0571bba026d6dfabbf40c9af28": { - "address": "0x4d010dbe0c6cdc0571bba026d6dfabbf40c9af28", - "symbol": "GEM", - "decimals": 18, - "name": "Gemdrop", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0x4d010dbe0c6cdc0571bba026d6dfabbf40c9af28.png", - "aggregators": ["TraderJoe", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x5f006745a9a192a7cd1236089f704f9b35d3b9cd": { - "address": "0x5f006745a9a192a7cd1236089f704f9b35d3b9cd", - "symbol": "ACRE", - "decimals": 18, - "name": "Arable Protocol", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0x5f006745a9a192a7cd1236089f704f9b35d3b9cd.png", - "aggregators": ["TraderJoe", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x76ce14237110c865f431e18f91fc1b225fb6fe99": { - "address": "0x76ce14237110c865f431e18f91fc1b225fb6fe99", - "symbol": "POT", - "decimals": 6, - "name": "POT Token", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0x76ce14237110c865f431e18f91fc1b225fb6fe99.png", - "aggregators": ["TraderJoe", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x802124eb78e43fd8d3d4e6daaaa4be28dc7993dc": { - "address": "0x802124eb78e43fd8d3d4e6daaaa4be28dc7993dc", - "symbol": "SPINAQ", - "decimals": 18, - "name": "Spinaq", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0x802124eb78e43fd8d3d4e6daaaa4be28dc7993dc.png", - "aggregators": ["TraderJoe", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x894a3abb764a0ef5da69c62336ac3c15b88bf106": { - "address": "0x894a3abb764a0ef5da69c62336ac3c15b88bf106", - "symbol": "CHUNKS", - "decimals": 18, - "name": "CHUNKS", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0x894a3abb764a0ef5da69c62336ac3c15b88bf106.png", - "aggregators": ["TraderJoe", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x8a66794e1aaebc7018a7b75f61f384e30ae3b159": { - "address": "0x8a66794e1aaebc7018a7b75f61f384e30ae3b159", - "symbol": "BLS", - "decimals": 18, - "name": "BLS Token", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0x8a66794e1aaebc7018a7b75f61f384e30ae3b159.png", - "aggregators": ["TraderJoe", "Rubic", "Rango"], - "occurrences": 3 - }, - "0xc9c4fd7579133701fa2769b6955e7e56bb386db1": { - "address": "0xc9c4fd7579133701fa2769b6955e7e56bb386db1", - "symbol": "BRG", - "decimals": 18, - "name": "Bridge", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0xc9c4fd7579133701fa2769b6955e7e56bb386db1.png", - "aggregators": ["TraderJoe", "Rubic", "Rango"], - "occurrences": 3 - }, - "0xe9a5af50874c0ef2748b5db70104b5ccb5557f6d": { - "address": "0xe9a5af50874c0ef2748b5db70104b5ccb5557f6d", - "symbol": "GMBL", - "decimals": 18, - "name": "GMBL COMPUTER CHiP", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0xe9a5af50874c0ef2748b5db70104b5ccb5557f6d.png", - "aggregators": ["TraderJoe", "Rubic", "Rango"], - "occurrences": 3 - }, - "0xee9857de0e55d4a54d36a5a5a73a15e57435fdca": { - "address": "0xee9857de0e55d4a54d36a5a5a73a15e57435fdca", - "symbol": "ODIN", - "decimals": 18, - "name": "AsgardX", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0xee9857de0e55d4a54d36a5a5a73a15e57435fdca.png", - "aggregators": ["TraderJoe", "Rubic", "Rango"], - "occurrences": 3 - }, - "0xef00278d7eadf3b2c05267a2f185e468ad7eab7d": { - "address": "0xef00278d7eadf3b2c05267a2f185e468ad7eab7d", - "symbol": "PEPE", - "decimals": 18, - "name": "PEPE PAD", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0xef00278d7eadf3b2c05267a2f185e468ad7eab7d.png", - "aggregators": ["TraderJoe", "Rubic", "Rango"], - "occurrences": 3 - }, - "0xf18c263ec50cc211ef3f172228549b6618f10613": { - "address": "0xf18c263ec50cc211ef3f172228549b6618f10613", - "symbol": "COLLAB", - "decimals": 18, - "name": "Collab.Land", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0xf18c263ec50cc211ef3f172228549b6618f10613.png", - "aggregators": ["TraderJoe", "Rubic", "Rango"], - "occurrences": 3 - }, - "0xf9ca0ec182a94f6231df9b14bd147ef7fb9fa17c": { - "address": "0xf9ca0ec182a94f6231df9b14bd147ef7fb9fa17c", - "symbol": "BONER", - "decimals": 18, - "name": "Boner", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0xf9ca0ec182a94f6231df9b14bd147ef7fb9fa17c.png", - "aggregators": ["TraderJoe", "Rubic", "Rango"], - "occurrences": 3 - }, - "0xfdad8edc724277e975f4955d288c6eb5b20a3146": { - "address": "0xfdad8edc724277e975f4955d288c6eb5b20a3146", - "symbol": "NSWAP", - "decimals": 8, - "name": "Nulswap", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0xfdad8edc724277e975f4955d288c6eb5b20a3146.png", - "aggregators": ["TraderJoe", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x8b5d1d8b3466ec21f8ee33ce63f319642c026142": { - "address": "0x8b5d1d8b3466ec21f8ee33ce63f319642c026142", - "symbol": "HYETH", - "decimals": 18, - "name": "High Yield ETH Index", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0x8b5d1d8b3466ec21f8ee33ce63f319642c026142.png", - "aggregators": ["LiFi", "Rubic", "Rango"], - "occurrences": 3 - }, - "0xf202ab403cd7e90197ec0f010ee897e283037706": { - "address": "0xf202ab403cd7e90197ec0f010ee897e283037706", - "symbol": "SVUSD", - "decimals": 18, - "name": "Savvy USD", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0xf202ab403cd7e90197ec0f010ee897e283037706.png", - "aggregators": ["LiFi", "Socket", "Rubic"], - "occurrences": 3 - }, - "0xfeb4dfc8c4cf7ed305bb08065d08ec6ee6728429": { - "address": "0xfeb4dfc8c4cf7ed305bb08065d08ec6ee6728429", - "symbol": "PAXG", - "decimals": 18, - "name": "PAX Gold", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0xfeb4dfc8c4cf7ed305bb08065d08ec6ee6728429.png", - "aggregators": ["LiFi", "Socket", "Rango"], - "occurrences": 3 - }, - "0xe2105bea3819d3131b5b2306d44eb3271bfcfe0e": { - "address": "0xe2105bea3819d3131b5b2306d44eb3271bfcfe0e", - "symbol": "FIEF", - "decimals": 18, - "name": "Fief", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0xe2105bea3819d3131b5b2306d44eb3271bfcfe0e.png", - "aggregators": ["LiFi", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x11f98c7e42a367dab4f200d2fdc460fb445ce9a8": { - "address": "0x11f98c7e42a367dab4f200d2fdc460fb445ce9a8", - "symbol": "SPARTA", - "decimals": 18, - "name": "SPARTA", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0x11f98c7e42a367dab4f200d2fdc460fb445ce9a8.png", - "aggregators": ["LiFi", "Rubic", "Rango"], - "occurrences": 3 - }, - "0xb21be1caf592a5dc1e75e418704d1b6d50b0d083": { - "address": "0xb21be1caf592a5dc1e75e418704d1b6d50b0d083", - "symbol": "CRX", - "decimals": 18, - "name": "CORTEX", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0xb21be1caf592a5dc1e75e418704d1b6d50b0d083.png", - "aggregators": ["LiFi", "Rubic", "Rango"], - "occurrences": 3 - }, - "0xa1150db5105987cec5fd092273d1e3cbb22b378b": { - "address": "0xa1150db5105987cec5fd092273d1e3cbb22b378b", - "symbol": "OATH", - "decimals": 18, - "name": "Oath Token", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0xa1150db5105987cec5fd092273d1e3cbb22b378b.png", - "aggregators": ["LiFi", "Socket", "Rubic"], - "occurrences": 3 - }, - "0x75c9bc761d88f70156daf83aa010e84680baf131": { - "address": "0x75c9bc761d88f70156daf83aa010e84680baf131", - "symbol": "SDL", - "decimals": 18, - "name": "Saddle DAO", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0x75c9bc761d88f70156daf83aa010e84680baf131.png", - "aggregators": ["LiFi", "Socket", "Rubic"], - "occurrences": 3 - }, - "0xda51015b73ce11f77a115bb1b8a7049e02ddecf0": { - "address": "0xda51015b73ce11f77a115bb1b8a7049e02ddecf0", - "symbol": "NEU", - "decimals": 18, - "name": "Neutra Token", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0xda51015b73ce11f77a115bb1b8a7049e02ddecf0.png", - "aggregators": ["LiFi", "Socket", "Rubic"], - "occurrences": 3 - }, - "0x4945970efeec98d393b4b979b9be265a3ae28a8b": { - "address": "0x4945970efeec98d393b4b979b9be265a3ae28a8b", - "symbol": "GMD", - "decimals": 18, - "name": "GMD", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0x4945970efeec98d393b4b979b9be265a3ae28a8b.png", - "aggregators": ["LiFi", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x8dcd3393a6e48e898a60e05baec0d568df128f89": { - "address": "0x8dcd3393a6e48e898a60e05baec0d568df128f89", - "symbol": "PTSLA", - "decimals": 18, - "name": "Poison.Finance Tesla Potion", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0x8dcd3393a6e48e898a60e05baec0d568df128f89.png", - "aggregators": ["LiFi", "Rango", "SushiSwap"], - "occurrences": 3 - }, - "0x96a993f06951b01430523d0d5590192d650ebf3e": { - "address": "0x96a993f06951b01430523d0d5590192d650ebf3e", - "symbol": "RGUSD", - "decimals": 18, - "name": "Revenue Generating USD", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0x96a993f06951b01430523d0d5590192d650ebf3e.png", - "aggregators": ["LiFi", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x370f01c998b583e7cc9a7ee79be8ed0bb27345e7": { - "address": "0x370f01c998b583e7cc9a7ee79be8ed0bb27345e7", - "symbol": "EKO", - "decimals": 18, - "name": "EchoLinkV8", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0x370f01c998b583e7cc9a7ee79be8ed0bb27345e7.png", - "aggregators": ["LiFi", "Rubic", "Rango"], - "occurrences": 3 - }, - "0xcf8600347dc375c5f2fdd6dab9bb66e0b6773cd7": { - "address": "0xcf8600347dc375c5f2fdd6dab9bb66e0b6773cd7", - "symbol": "RARI", - "decimals": 18, - "name": "Rarible", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0xcf8600347dc375c5f2fdd6dab9bb66e0b6773cd7.png", - "aggregators": ["LiFi", "Socket", "Rubic"], - "occurrences": 3 - }, - "0x11c1879227d463b60db18c17c20ae739ae8e961a": { - "address": "0x11c1879227d463b60db18c17c20ae739ae8e961a", - "symbol": "BAL.AXL", - "decimals": 18, - "name": " BAL (Axelar)", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0x11c1879227d463b60db18c17c20ae739ae8e961a.png", - "aggregators": ["LiFi", "Rubic", "Squid"], - "occurrences": 3 - }, - "0xbfeb8b6813491bb4fb823b8f451b62ef535420d1": { - "address": "0xbfeb8b6813491bb4fb823b8f451b62ef535420d1", - "symbol": "ZUNUSD", - "decimals": 18, - "name": "Zunami USD", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0xbfeb8b6813491bb4fb823b8f451b62ef535420d1.png", - "aggregators": ["LiFi", "Rubic", "Sonarwatch"], - "occurrences": 3 - }, - "0x296a0b8847bd4ed9af71a9ef238fa5be0778b611": { - "address": "0x296a0b8847bd4ed9af71a9ef238fa5be0778b611", - "symbol": "ATA", - "decimals": 18, - "name": "ATLAS", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0x296a0b8847bd4ed9af71a9ef238fa5be0778b611.png", - "aggregators": ["Socket", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x17eb7c08c4057b6c270dc0549745adbc874eb15b": { - "address": "0x17eb7c08c4057b6c270dc0549745adbc874eb15b", - "symbol": "SAT", - "decimals": 8, - "name": "Satoshi Airline Token", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0x17eb7c08c4057b6c270dc0549745adbc874eb15b.png", - "aggregators": ["Socket", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x9aee3c99934c88832399d6c6e08ad802112ebeab": { - "address": "0x9aee3c99934c88832399d6c6e08ad802112ebeab", - "symbol": "FU", - "decimals": 18, - "name": "FU Money", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0x9aee3c99934c88832399d6c6e08ad802112ebeab.png", - "aggregators": ["Socket", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x71eeba415a523f5c952cc2f06361d5443545ad28": { - "address": "0x71eeba415a523f5c952cc2f06361d5443545ad28", - "symbol": "XDAO", - "decimals": 18, - "name": "XDAO", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0x71eeba415a523f5c952cc2f06361d5443545ad28.png", - "aggregators": ["Socket", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x406d59819bc2aef682f4ff2769085c98a264f97b": { - "address": "0x406d59819bc2aef682f4ff2769085c98a264f97b", - "symbol": "BEBE", - "decimals": 6, - "name": "BEBE", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0x406d59819bc2aef682f4ff2769085c98a264f97b.png", - "aggregators": ["Socket", "Rubic", "Rango"], - "occurrences": 3 - }, - "0xd4848211b699503c772aa1bc7d33b433c4242ac3": { - "address": "0xd4848211b699503c772aa1bc7d33b433c4242ac3", - "symbol": "EPENDLE", - "decimals": 18, - "name": "Equilibria Finance ePENDLE", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0xd4848211b699503c772aa1bc7d33b433c4242ac3.png", - "aggregators": ["Rubic", "Rango", "Sonarwatch"], - "occurrences": 3 - }, - "0x1c7f32699ff9163f928089c0a4d6ee5ad5885c6f": { - "address": "0x1c7f32699ff9163f928089c0a4d6ee5ad5885c6f", - "symbol": "AGS", - "decimals": 18, - "name": "Gambler Shiba", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0x1c7f32699ff9163f928089c0a4d6ee5ad5885c6f.png", - "aggregators": ["Rubic", "Rango", "SushiSwap"], - "occurrences": 3 - }, - "0x26d3c0d9f4cc4c130097b6afdebe4f5e497e6bdf": { - "address": "0x26d3c0d9f4cc4c130097b6afdebe4f5e497e6bdf", - "symbol": "MNT", - "decimals": 6, - "name": "Mynth", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0x26d3c0d9f4cc4c130097b6afdebe4f5e497e6bdf.png", - "aggregators": ["Rubic", "Rango", "Sonarwatch"], - "occurrences": 3 - }, - "0xfb930d1a28990820c98144201637c99bea8cb91c": { - "address": "0xfb930d1a28990820c98144201637c99bea8cb91c", - "symbol": "BUMP", - "decimals": 18, - "name": "Bumper", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0xfb930d1a28990820c98144201637c99bea8cb91c.png", - "aggregators": ["Rubic", "Rango", "Sonarwatch"], - "occurrences": 3 - }, - "0x0721b3c9f19cfef1d622c918dcd431960f35e060": { - "address": "0x0721b3c9f19cfef1d622c918dcd431960f35e060", - "symbol": "SYNTH", - "decimals": 18, - "name": "SYNTHR", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0x0721b3c9f19cfef1d622c918dcd431960f35e060.png", - "aggregators": ["Rubic", "Rango", "Sonarwatch"], - "occurrences": 3 - }, - "0xbe5acfd64358805616b5cbd5277b9a85011d7cf1": { - "address": "0xbe5acfd64358805616b5cbd5277b9a85011d7cf1", - "symbol": "PCH", - "decimals": 18, - "name": "Pichi Finance", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0xbe5acfd64358805616b5cbd5277b9a85011d7cf1.png", - "aggregators": ["Rubic", "Rango", "Sonarwatch"], - "occurrences": 3 - }, - "0x6b43732a9ae9f8654d496c0a075aa4aa43057a0b": { - "address": "0x6b43732a9ae9f8654d496c0a075aa4aa43057a0b", - "symbol": "CNDY", - "decimals": 18, - "name": "Sugarverse", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0x6b43732a9ae9f8654d496c0a075aa4aa43057a0b.png", - "aggregators": ["Rubic", "Rango", "Sonarwatch"], - "occurrences": 3 - }, - "0xd6b3d81868770083307840f513a3491960b95cb6": { - "address": "0xd6b3d81868770083307840f513a3491960b95cb6", - "symbol": "$CBL", - "decimals": 18, - "name": "Credbull", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0xd6b3d81868770083307840f513a3491960b95cb6.png", - "aggregators": ["Rubic", "Rango", "Sonarwatch"], - "occurrences": 3 - }, - "0xe8b201be5357c07f0aa58693f98fb048323777f9": { - "address": "0xe8b201be5357c07f0aa58693f98fb048323777f9", - "symbol": "BLADE", - "decimals": 18, - "name": "Blade", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0xe8b201be5357c07f0aa58693f98fb048323777f9.png", - "aggregators": ["Rubic", "Rango", "Sonarwatch"], - "occurrences": 3 - }, - "0xc4cbd54ffa7a6a142fd73554cc6c23dd95cd8e01": { - "address": "0xc4cbd54ffa7a6a142fd73554cc6c23dd95cd8e01", - "symbol": "GAME", - "decimals": 18, - "name": "$GAME Token", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0xc4cbd54ffa7a6a142fd73554cc6c23dd95cd8e01.png", - "aggregators": ["Rubic", "Rango", "Sonarwatch"], - "occurrences": 3 - }, - "0x4568ca00299819998501914690d6010ae48a59ba": { - "address": "0x4568ca00299819998501914690d6010ae48a59ba", - "symbol": "AFC", - "decimals": 0, - "name": "Army of Fortune Metaverse", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0x4568ca00299819998501914690d6010ae48a59ba.png", - "aggregators": ["Rubic", "Rango", "Sonarwatch"], - "occurrences": 3 - }, - "0x619c82392cb6e41778b7d088860fea8447941f4c": { - "address": "0x619c82392cb6e41778b7d088860fea8447941f4c", - "symbol": "AFG", - "decimals": 18, - "name": "Army of Fortune Gem", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0x619c82392cb6e41778b7d088860fea8447941f4c.png", - "aggregators": ["Rubic", "Rango", "Sonarwatch"], - "occurrences": 3 - }, - "0xb9af4762c039d63e30039f1712dfab77026408c7": { - "address": "0xb9af4762c039d63e30039f1712dfab77026408c7", - "symbol": "AIBB", - "decimals": 18, - "name": "BullBear AI", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0xb9af4762c039d63e30039f1712dfab77026408c7.png", - "aggregators": ["Rubic", "Rango", "Sonarwatch"], - "occurrences": 3 - }, - "0x284592a004d945f98de5b040808578c61a4bb39a": { - "address": "0x284592a004d945f98de5b040808578c61a4bb39a", - "symbol": "AIR", - "decimals": 18, - "name": "AIR", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0x284592a004d945f98de5b040808578c61a4bb39a.png", - "aggregators": ["Rubic", "Rango", "Sonarwatch"], - "occurrences": 3 - }, - "0x493070ef5280e7a275a106a30b0414dbdb21febd": { - "address": "0x493070ef5280e7a275a106a30b0414dbdb21febd", - "symbol": "AISP", - "decimals": 9, - "name": "AI Supreme", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0x493070ef5280e7a275a106a30b0414dbdb21febd.png", - "aggregators": ["Rubic", "Rango", "Sonarwatch"], - "occurrences": 3 - }, - "0xfd2fb8de10ec41ddd898a8c7fa70d8fc100834c4": { - "address": "0xfd2fb8de10ec41ddd898a8c7fa70d8fc100834c4", - "symbol": "BOGE", - "decimals": 18, - "name": "Bitci DOGE", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0xfd2fb8de10ec41ddd898a8c7fa70d8fc100834c4.png", - "aggregators": ["Rubic", "Rango", "Sonarwatch"], - "occurrences": 3 - }, - "0x65cd2e7d7bacdac3aa9dae68fb5d548dfe1fefb5": { - "address": "0x65cd2e7d7bacdac3aa9dae68fb5d548dfe1fefb5", - "symbol": "SLUSDT", - "decimals": 18, - "name": "Shared-liquidity USDT", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0x65cd2e7d7bacdac3aa9dae68fb5d548dfe1fefb5.png", - "aggregators": ["Rubic", "Rango", "SushiSwap"], - "occurrences": 3 - }, - "0x221c5799209132766a01c4cbed0d28600d282b41": { - "address": "0x221c5799209132766a01c4cbed0d28600d282b41", - "symbol": "BTRM", - "decimals": 18, - "name": "Bitrium", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0x221c5799209132766a01c4cbed0d28600d282b41.png", - "aggregators": ["Rubic", "Rango", "Sonarwatch"], - "occurrences": 3 - }, - "0xd07d35368e04a839dee335e213302b21ef14bb4a": { - "address": "0xd07d35368e04a839dee335e213302b21ef14bb4a", - "symbol": "CRYSTAL", - "decimals": 18, - "name": "Crystal", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0xd07d35368e04a839dee335e213302b21ef14bb4a.png", - "aggregators": ["Rubic", "Rango", "Sonarwatch"], - "occurrences": 3 - }, - "0x9cce9ae579142e372a8959285e3a5a2e211904f7": { - "address": "0x9cce9ae579142e372a8959285e3a5a2e211904f7", - "symbol": "DGW", - "decimals": 18, - "name": "DGWToken", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0x9cce9ae579142e372a8959285e3a5a2e211904f7.png", - "aggregators": ["Rubic", "Rango", "Sonarwatch"], - "occurrences": 3 - }, - "0x903ca00944d0b51e50d9f4fc96167c89f211542a": { - "address": "0x903ca00944d0b51e50d9f4fc96167c89f211542a", - "symbol": "FIN", - "decimals": 18, - "name": "Poolshark", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0x903ca00944d0b51e50d9f4fc96167c89f211542a.png", - "aggregators": ["Rubic", "Rango", "Sonarwatch"], - "occurrences": 3 - }, - "0xd08c3f25862077056cb1b710937576af899a4959": { - "address": "0xd08c3f25862077056cb1b710937576af899a4959", - "symbol": "INSTETH", - "decimals": 18, - "name": "Inception stETH", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0xd08c3f25862077056cb1b710937576af899a4959.png", - "aggregators": ["Rubic", "Rango", "Sonarwatch"], - "occurrences": 3 - }, - "0xf6dae0d2be4993b00a2673360820af6bafd53887": { - "address": "0xf6dae0d2be4993b00a2673360820af6bafd53887", - "symbol": "LPOOL", - "decimals": 18, - "name": "Launchpool", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0xf6dae0d2be4993b00a2673360820af6bafd53887.png", - "aggregators": ["Rubic", "Rango", "Sonarwatch"], - "occurrences": 3 - }, - "0xfa58c669b855b29f99374d0f160db286849d139b": { - "address": "0xfa58c669b855b29f99374d0f160db286849d139b", - "symbol": "MKC", - "decimals": 18, - "name": "MonkeyCoin", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0xfa58c669b855b29f99374d0f160db286849d139b.png", - "aggregators": ["Rubic", "Rango", "SushiSwap"], - "occurrences": 3 - }, - "0xa170eaa9a74ab4b3218c736210b0421af35c3c00": { - "address": "0xa170eaa9a74ab4b3218c736210b0421af35c3c00", - "symbol": "MOLANDAK", - "decimals": 18, - "name": "Molandak", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0xa170eaa9a74ab4b3218c736210b0421af35c3c00.png", - "aggregators": ["Rubic", "Rango", "Sonarwatch"], - "occurrences": 3 - }, - "0x4dd40ec670722067241b4396dbd253c38dd820b5": { - "address": "0x4dd40ec670722067241b4396dbd253c38dd820b5", - "symbol": "MTMS", - "decimals": 18, - "name": "MTMS Network", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0x4dd40ec670722067241b4396dbd253c38dd820b5.png", - "aggregators": ["Rubic", "Rango", "Sonarwatch"], - "occurrences": 3 - }, - "0x0534d7272a8e4f24d269b56605f2bf6cf3271891": { - "address": "0x0534d7272a8e4f24d269b56605f2bf6cf3271891", - "symbol": "U", - "decimals": 18, - "name": "U Coin", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0x0534d7272a8e4f24d269b56605f2bf6cf3271891.png", - "aggregators": ["Rubic", "Rango", "Sonarwatch"], - "occurrences": 3 - }, - "0xe4421566a501045ae4285996577a36f6cf074190": { - "address": "0xe4421566a501045ae4285996577a36f6cf074190", - "symbol": "ICE", - "decimals": 18, - "name": "Ice", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0xe4421566a501045ae4285996577a36f6cf074190.png", - "aggregators": ["Rubic", "Rango", "Sonarwatch"], - "occurrences": 3 - }, - "0x51b902f19a56f0c8e409a34a215ad2673edf3284": { - "address": "0x51b902f19a56f0c8e409a34a215ad2673edf3284", - "symbol": "NFTE", - "decimals": 18, - "name": "NFTEarthOFT", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0x51b902f19a56f0c8e409a34a215ad2673edf3284.png", - "aggregators": ["Rubic", "Rango", "SushiSwap"], - "occurrences": 3 - }, - "0xef04804e1e474d3f9b73184d7ef5d786f3fce930": { - "address": "0xef04804e1e474d3f9b73184d7ef5d786f3fce930", - "symbol": "WSG", - "decimals": 18, - "name": "Wall Street Games", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0xef04804e1e474d3f9b73184d7ef5d786f3fce930.png", - "aggregators": ["Rubic", "Rango", "Sonarwatch"], - "occurrences": 3 - }, - "0xed5740209fcf6974d6f3a5f11e295b5e468ac27c": { - "address": "0xed5740209fcf6974d6f3a5f11e295b5e468ac27c", - "symbol": "KWL", - "decimals": 18, - "name": "KEWL EXCHANGE", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0xed5740209fcf6974d6f3a5f11e295b5e468ac27c.png", - "aggregators": ["Rubic", "Rango", "Sonarwatch"], - "occurrences": 3 - }, - "0xd4d026322c88c2d49942a75dff920fcfbc5614c1": { - "address": "0xd4d026322c88c2d49942a75dff920fcfbc5614c1", - "symbol": "OLE", - "decimals": 18, - "name": "OpenLeverage", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0xd4d026322c88c2d49942a75dff920fcfbc5614c1.png", - "aggregators": ["Rubic", "Rango", "SushiSwap"], - "occurrences": 3 - }, - "0xb261104a83887ae92392fb5ce5899fcfe5481456": { - "address": "0xb261104a83887ae92392fb5ce5899fcfe5481456", - "symbol": "NFTE", - "decimals": 18, - "name": "NFTEarth", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0xb261104a83887ae92392fb5ce5899fcfe5481456.png", - "aggregators": ["Rubic", "Rango", "SushiSwap"], - "occurrences": 3 - }, - "0x1fae2a29940015632f2a6ce006dfa7e3225515a7": { - "address": "0x1fae2a29940015632f2a6ce006dfa7e3225515a7", - "symbol": "NIFLOKI", - "decimals": 9, - "name": "Nitro Floki", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0x1fae2a29940015632f2a6ce006dfa7e3225515a7.png", - "aggregators": ["Rubic", "Rango", "SushiSwap"], - "occurrences": 3 - }, - "0x910d3c72c5177c3f1bfb0863b793ec23fa7f6990": { - "address": "0x910d3c72c5177c3f1bfb0863b793ec23fa7f6990", - "symbol": "NISHIB", - "decimals": 18, - "name": "NitroShiba", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0x910d3c72c5177c3f1bfb0863b793ec23fa7f6990.png", - "aggregators": ["Rubic", "Rango", "SushiSwap"], - "occurrences": 3 - }, - "0xf018865b26ffab9cd1735dcca549d95b0cb9ea19": { - "address": "0xf018865b26ffab9cd1735dcca549d95b0cb9ea19", - "symbol": "JDPX", - "decimals": 18, - "name": "Jones DPX", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0xf018865b26ffab9cd1735dcca549d95b0cb9ea19.png", - "aggregators": ["Rubic", "Rango", "SushiSwap"], - "occurrences": 3 - }, - "0x5d4974f8543bc78d43fd1044ecfdb9d85482aa21": { - "address": "0x5d4974f8543bc78d43fd1044ecfdb9d85482aa21", - "symbol": "BAMA", - "decimals": 18, - "name": "Bitbama", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0x5d4974f8543bc78d43fd1044ecfdb9d85482aa21.png", - "aggregators": ["Rubic", "Rango", "Sonarwatch"], - "occurrences": 3 - }, - "0x5a7a183b6b44dc4ec2e3d2ef43f98c5152b1d76d": { - "address": "0x5a7a183b6b44dc4ec2e3d2ef43f98c5152b1d76d", - "symbol": "INETH", - "decimals": 18, - "name": "Inception Restaked ETH", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0x5a7a183b6b44dc4ec2e3d2ef43f98c5152b1d76d.png", - "aggregators": ["Rubic", "Rango", "Sonarwatch"], - "occurrences": 3 - }, - "0xa992b7dde2ed1632d0b66c56744e914ed673a37f": { - "address": "0xa992b7dde2ed1632d0b66c56744e914ed673a37f", - "symbol": "AGIO", - "decimals": 18, - "name": "Agio", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0xa992b7dde2ed1632d0b66c56744e914ed673a37f.png", - "aggregators": ["Rubic", "Rango", "Sonarwatch"], - "occurrences": 3 - }, - "0x9483ab65847a447e36d21af1cab8c87e9712ff93": { - "address": "0x9483ab65847a447e36d21af1cab8c87e9712ff93", - "symbol": "WUSDR", - "decimals": 9, - "name": "Wrapped USDR", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0x9483ab65847a447e36d21af1cab8c87e9712ff93.png", - "aggregators": ["Rubic", "Rango", "Sonarwatch"], - "occurrences": 3 - }, - "0x2c110867ca90e43d372c1c2e92990b00ea32818b": { - "address": "0x2c110867ca90e43d372c1c2e92990b00ea32818b", - "symbol": "STBZ", - "decimals": 18, - "name": "Stabilize", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0x2c110867ca90e43d372c1c2e92990b00ea32818b.png", - "aggregators": ["Rubic", "Rango", "Sonarwatch"], - "occurrences": 3 - }, - "0x4b019aaa21e98e212d31e54c843e73ff34d25717": { - "address": "0x4b019aaa21e98e212d31e54c843e73ff34d25717", - "symbol": "TUXC", - "decimals": 18, - "name": "TUX Project", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0x4b019aaa21e98e212d31e54c843e73ff34d25717.png", - "aggregators": ["Rubic", "Rango", "Sonarwatch"], - "occurrences": 3 - }, - "0xdf4ef6ee483953fe3b84abd08c6a060445c01170": { - "address": "0xdf4ef6ee483953fe3b84abd08c6a060445c01170", - "symbol": "WACME", - "decimals": 8, - "name": "Wrapped Accumulate", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0xdf4ef6ee483953fe3b84abd08c6a060445c01170.png", - "aggregators": ["Rubic", "Rango", "Sonarwatch"], - "occurrences": 3 - }, - "0x36295e7de7024362ad95bb8be93d6d6d21d7f6c1": { - "address": "0x36295e7de7024362ad95bb8be93d6d6d21d7f6c1", - "symbol": "XGPU", - "decimals": 18, - "name": "XGPU AI", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0x36295e7de7024362ad95bb8be93d6d6d21d7f6c1.png", - "aggregators": ["Rubic", "Rango", "Sonarwatch"], - "occurrences": 3 - }, - "0x625e7708f30ca75bfd92586e17077590c60eb4cd": { - "address": "0x625e7708f30ca75bfd92586e17077590c60eb4cd", - "symbol": "AUSDC.E", - "decimals": 6, - "name": "Aave v3 USDC.e", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0x625e7708f30ca75bfd92586e17077590c60eb4cd.png", - "aggregators": [ - "TraderJoe", - "1inch", - "LiFi", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 6 - }, - "0x0c06ccf38114ddfc35e07427b9424adcca9f44f8": { - "address": "0x0c06ccf38114ddfc35e07427b9424adcca9f44f8", - "symbol": "EURE", - "decimals": 18, - "name": "EURE", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0x0c06ccf38114ddfc35e07427b9424adcca9f44f8.png", - "aggregators": [ - "CoinGecko", - "1inch", - "LiFi", - "Socket", - "Rubic", - "Rango" - ], - "occurrences": 6 - }, - "0xef4a1d459d62dfd2ebb9c45b04f90f0a7ba1d56e": { - "address": "0xef4a1d459d62dfd2ebb9c45b04f90f0a7ba1d56e", - "symbol": "PEPE", - "decimals": 18, - "name": "Pepe Community", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0xef4a1d459d62dfd2ebb9c45b04f90f0a7ba1d56e.png", - "aggregators": [ - "Metamask", - "LiFi", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 6 - }, - "0x74ccbe53f77b08632ce0cb91d3a545bf6b8e0979": { - "address": "0x74ccbe53f77b08632ce0cb91d3a545bf6b8e0979", - "symbol": "BOMB", - "decimals": 18, - "name": "Fantom Bomb", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0x74ccbe53f77b08632ce0cb91d3a545bf6b8e0979.png", - "aggregators": [ - "TraderJoe", - "LiFi", - "Rubic", - "Squid", - "Rango", - "Sonarwatch" - ], - "occurrences": 6 - }, - "0xf75ee6d319741057a82a88eeff1dbafab7307b69": { - "address": "0xf75ee6d319741057a82a88eeff1dbafab7307b69", - "symbol": "KRL", - "decimals": 18, - "name": "KRYLL", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0xf75ee6d319741057a82a88eeff1dbafab7307b69.png", - "aggregators": [ - "CoinGecko", - "LiFi", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x0419e8bfbbb2623728c3a6129090da4ff4e48113": { - "address": "0x0419e8bfbbb2623728c3a6129090da4ff4e48113", - "symbol": "TEL", - "decimals": 2, - "name": "Telcoin", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0x0419e8bfbbb2623728c3a6129090da4ff4e48113.png", - "aggregators": [ - "CoinGecko", - "LiFi", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0xd089b4cb88dacf4e27be869a00e9f7e2e3c18193": { - "address": "0xd089b4cb88dacf4e27be869a00e9f7e2e3c18193", - "symbol": "WAARBGHO", - "decimals": 18, - "name": "Wrapped Aave Arbitrum GHO", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0xd089b4cb88dacf4e27be869a00e9f7e2e3c18193.png", - "aggregators": ["CoinGecko", "1inch", "LiFi", "Rubic", "Rango"], - "occurrences": 5 - }, - "0x4ff50c17df0d1b788d021acd85039810a1aa68a1": { - "address": "0x4ff50c17df0d1b788d021acd85039810a1aa68a1", - "symbol": "WAARBEZETH", - "decimals": 18, - "name": "Wrapped Aave Arbitrum ezETH", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0x4ff50c17df0d1b788d021acd85039810a1aa68a1.png", - "aggregators": ["CoinGecko", "1inch", "LiFi", "Rubic", "Rango"], - "occurrences": 5 - }, - "0x0a1a1a107e45b7ced86833863f482bc5f4ed82ef": { - "address": "0x0a1a1a107e45b7ced86833863f482bc5f4ed82ef", - "symbol": "USDAI", - "decimals": 18, - "name": "USDai", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0x0a1a1a107e45b7ced86833863f482bc5f4ed82ef.png", - "aggregators": ["CoinGecko", "LiFi", "Socket", "Rubic", "Rango"], - "occurrences": 5 - }, - "0x0b2b2b2076d95dda7817e785989fe353fe955ef9": { - "address": "0x0b2b2b2076d95dda7817e785989fe353fe955ef9", - "symbol": "SUSDAI", - "decimals": 18, - "name": "Staked USDai", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0x0b2b2b2076d95dda7817e785989fe353fe955ef9.png", - "aggregators": ["CoinGecko", "LiFi", "Socket", "Rubic", "Rango"], - "occurrences": 5 - }, - "0x4ce13a79f45c1be00bdabd38b764ac28c082704e": { - "address": "0x4ce13a79f45c1be00bdabd38b764ac28c082704e", - "symbol": "WAARBWETH", - "decimals": 18, - "name": "Wrapped Aave Arbitrum WETH", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0x4ce13a79f45c1be00bdabd38b764ac28c082704e.png", - "aggregators": ["CoinGecko", "1inch", "LiFi", "Rubic", "Rango"], - "occurrences": 5 - }, - "0x17573150d67d820542efb24210371545a4868b03": { - "address": "0x17573150d67d820542efb24210371545a4868b03", - "symbol": "ALETH", - "decimals": 18, - "name": "Alchemix ETH", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0x17573150d67d820542efb24210371545a4868b03.png", - "aggregators": ["CoinGecko", "LiFi", "Rubic", "Squid", "Rango"], - "occurrences": 5 - }, - "0x211cc4dd073734da055fbf44a2b4667d5e5fe5d2": { - "address": "0x211cc4dd073734da055fbf44a2b4667d5e5fe5d2", - "symbol": "SUSDE", - "decimals": 18, - "name": "Staked USDe", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0x211cc4dd073734da055fbf44a2b4667d5e5fe5d2.png", - "aggregators": ["CoinGecko", "LiFi", "Socket", "Rubic", "Rango"], - "occurrences": 5 - }, - "0x58538e6a46e07434d7e7375bc268d3cb839c0133": { - "address": "0x58538e6a46e07434d7e7375bc268d3cb839c0133", - "symbol": "ENA", - "decimals": 18, - "name": "ENA", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0x58538e6a46e07434d7e7375bc268d3cb839c0133.png", - "aggregators": ["CoinGecko", "LiFi", "Socket", "Rubic", "Rango"], - "occurrences": 5 - }, - "0x064f8b858c2a603e1b106a2039f5446d32dc81c1": { - "address": "0x064f8b858c2a603e1b106a2039f5446d32dc81c1", - "symbol": "OLAS", - "decimals": 18, - "name": "Autonolas", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0x064f8b858c2a603e1b106a2039f5446d32dc81c1.png", - "aggregators": [ - "CoinGecko", - "LiFi", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0xe231db5f348d709239ef1741ea30961b3b635a61": { - "address": "0xe231db5f348d709239ef1741ea30961b3b635a61", - "symbol": "YNETHX", - "decimals": 18, - "name": "ynETH MAX", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0xe231db5f348d709239ef1741ea30961b3b635a61.png", - "aggregators": [ - "CoinGecko", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x5829d6fe7528bc8e92c4e81cc8f20a528820b51a": { - "address": "0x5829d6fe7528bc8e92c4e81cc8f20a528820b51a", - "symbol": "OVER", - "decimals": 18, - "name": "Overtime", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0x5829d6fe7528bc8e92c4e81cc8f20a528820b51a.png", - "aggregators": [ - "CoinGecko", - "LiFi", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x5bff88ca1442c2496f7e475e9e7786383bc070c0": { - "address": "0x5bff88ca1442c2496f7e475e9e7786383bc070c0", - "symbol": "SFRXUSD", - "decimals": 18, - "name": "Staked Frax USD", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0x5bff88ca1442c2496f7e475e9e7786383bc070c0.png", - "aggregators": [ - "CoinGecko", - "LiFi", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x7bbcf1b600565ae023a1806ef637af4739de3255": { - "address": "0x7bbcf1b600565ae023a1806ef637af4739de3255", - "symbol": "PRFI", - "decimals": 18, - "name": "PrimeFi", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0x7bbcf1b600565ae023a1806ef637af4739de3255.png", - "aggregators": [ - "CoinGecko", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x09f569af991c730cae05a392bae6490558ef2214": { - "address": "0x09f569af991c730cae05a392bae6490558ef2214", - "symbol": "SILO", - "decimals": 18, - "name": "Silo Finance", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0x09f569af991c730cae05a392bae6490558ef2214.png", - "aggregators": [ - "CoinGecko", - "LiFi", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0xc11158c5da9db1d553ed28f0c2ba1cbedd42cfcb": { - "address": "0xc11158c5da9db1d553ed28f0c2ba1cbedd42cfcb", - "symbol": "PAW", - "decimals": 18, - "name": "PAW", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0xc11158c5da9db1d553ed28f0c2ba1cbedd42cfcb.png", - "aggregators": [ - "CoinGecko", - "LiFi", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x06e90a57d1ece8752d6ce92d1ad348ead5eae4f4": { - "address": "0x06e90a57d1ece8752d6ce92d1ad348ead5eae4f4", - "symbol": "SMURFCAT", - "decimals": 18, - "name": "Real Smurf Cat", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0x06e90a57d1ece8752d6ce92d1ad348ead5eae4f4.png", - "aggregators": [ - "CoinGecko", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x7ff7fa94b8b66ef313f7970d4eebd2cb3103a2c0": { - "address": "0x7ff7fa94b8b66ef313f7970d4eebd2cb3103a2c0", - "symbol": "VANA", - "decimals": 18, - "name": "VANA", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0x7ff7fa94b8b66ef313f7970d4eebd2cb3103a2c0.png", - "aggregators": ["CoinGecko", "LiFi", "Socket", "Rubic", "Rango"], - "occurrences": 5 - }, - "0x17e1e5c6bc9ebb11647c94e1c5e3ba619f2781ea": { - "address": "0x17e1e5c6bc9ebb11647c94e1c5e3ba619f2781ea", - "symbol": "HOT", - "decimals": 18, - "name": "HOT", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0x17e1e5c6bc9ebb11647c94e1c5e3ba619f2781ea.png", - "aggregators": ["CoinGecko", "LiFi", "Socket", "Rubic", "Rango"], - "occurrences": 5 - }, - "0x6e4cc0ab2b4d2edafa6723cfa1582229f1dd1be1": { - "address": "0x6e4cc0ab2b4d2edafa6723cfa1582229f1dd1be1", - "symbol": "ZUSD", - "decimals": 6, - "name": "ZUSD", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0x6e4cc0ab2b4d2edafa6723cfa1582229f1dd1be1.png", - "aggregators": [ - "TraderJoe", - "LiFi", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0xe7dcd50836d0a28c959c72d72122fedb8e245a6c": { - "address": "0xe7dcd50836d0a28c959c72d72122fedb8e245a6c", - "symbol": "ALEPH", - "decimals": 18, - "name": "Aleph im", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0xe7dcd50836d0a28c959c72d72122fedb8e245a6c.png", - "aggregators": ["UniswapLabs", "LiFi", "Socket", "Rango"], - "occurrences": 4 - }, - "0x07d65c18cecba423298c0aeb5d2beded4dfd5736": { - "address": "0x07d65c18cecba423298c0aeb5d2beded4dfd5736", - "symbol": "ETHFI", - "decimals": 18, - "name": "ether.fi governance token", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0x07d65c18cecba423298c0aeb5d2beded4dfd5736.png", - "aggregators": ["UniswapLabs", "LiFi", "Socket", "Rango"], - "occurrences": 4 - }, - "0x863708032b5c328e11abcbc0df9d79c71fc52a48": { - "address": "0x863708032b5c328e11abcbc0df9d79c71fc52a48", - "symbol": "EURC", - "decimals": 6, - "name": "Euro Coin", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0x863708032b5c328e11abcbc0df9d79c71fc52a48.png", - "aggregators": ["UniswapLabs", "LiFi", "Socket", "Rango"], - "occurrences": 4 - }, - "0x4be87c766a7ce11d5cc864b6c3abb7457dcc4cc9": { - "address": "0x4be87c766a7ce11d5cc864b6c3abb7457dcc4cc9", - "symbol": "FET", - "decimals": 18, - "name": "Fetch ai", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0x4be87c766a7ce11d5cc864b6c3abb7457dcc4cc9.png", - "aggregators": ["UniswapLabs", "LiFi", "Socket", "Rango"], - "occurrences": 4 - }, - "0xc27e7325a6bea1fcc06de7941473f5279bfd1182": { - "address": "0xc27e7325a6bea1fcc06de7941473f5279bfd1182", - "symbol": "GAL", - "decimals": 18, - "name": "Galxe", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0xc27e7325a6bea1fcc06de7941473f5279bfd1182.png", - "aggregators": ["UniswapLabs", "LiFi", "Socket", "Rango"], - "occurrences": 4 - }, - "0x5445972e76c5e4cedd12b6e2bcef69133e15992f": { - "address": "0x5445972e76c5e4cedd12b6e2bcef69133e15992f", - "symbol": "MV", - "decimals": 18, - "name": "GensoKishi Metaverse", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0x5445972e76c5e4cedd12b6e2bcef69133e15992f.png", - "aggregators": ["UniswapLabs", "LiFi", "Socket", "Rango"], - "occurrences": 4 - }, - "0x3ad63b3c0ea6d7a093ff98fde040baddc389ecdc": { - "address": "0x3ad63b3c0ea6d7a093ff98fde040baddc389ecdc", - "symbol": "NFLX.D", - "decimals": 18, - "name": "Dinari NFLX", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0x3ad63b3c0ea6d7a093ff98fde040baddc389ecdc.png", - "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0xc9d23ed2adb0f551369946bd377f8644ce1ca5c4": { - "address": "0xc9d23ed2adb0f551369946bd377f8644ce1ca5c4", - "symbol": "HYPER", - "decimals": 18, - "name": "Hyperlane", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0xc9d23ed2adb0f551369946bd377f8644ce1ca5c4.png", - "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0xc845b2894dbddd03858fd2d643b4ef725fe0849d": { - "address": "0xc845b2894dbddd03858fd2d643b4ef725fe0849d", - "symbol": "NVDAX", - "decimals": 18, - "name": "NVIDIA xStock", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0xc845b2894dbddd03858fd2d643b4ef725fe0849d.png", - "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0xce38e140fc3982a6bcebc37b040913ef2cd6c5a7": { - "address": "0xce38e140fc3982a6bcebc37b040913ef2cd6c5a7", - "symbol": "AAPL.D", - "decimals": 18, - "name": "Dinari AAPL", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0xce38e140fc3982a6bcebc37b040913ef2cd6c5a7.png", - "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0x9c46e1b70d447b770dbfc8d450543a431af6df3a": { - "address": "0x9c46e1b70d447b770dbfc8d450543a431af6df3a", - "symbol": "USFR.D", - "decimals": 18, - "name": "Dinari USFR", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0x9c46e1b70d447b770dbfc8d450543a431af6df3a.png", - "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0x7f6501d3b98ee91f9b9535e4b0ac710fb0f9e0bc": { - "address": "0x7f6501d3b98ee91f9b9535e4b0ac710fb0f9e0bc", - "symbol": "WAARBUSDCN", - "decimals": 6, - "name": "Wrapped Aave Arbitrum USDCn", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0x7f6501d3b98ee91f9b9535e4b0ac710fb0f9e0bc.png", - "aggregators": ["CoinGecko", "1inch", "Rubic", "Rango"], - "occurrences": 4 - }, - "0xe98fc055c99decd8da0c111b090885d5d15c774e": { - "address": "0xe98fc055c99decd8da0c111b090885d5d15c774e", - "symbol": "WAARBWSTETH", - "decimals": 18, - "name": "Wrapped Aave Arbitrum wstETH", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0xe98fc055c99decd8da0c111b090885d5d15c774e.png", - "aggregators": ["CoinGecko", "1inch", "Rubic", "Rango"], - "occurrences": 4 - }, - "0x67bad479f77488f0f427584e267e66086a7da43a": { - "address": "0x67bad479f77488f0f427584e267e66086a7da43a", - "symbol": "ARM.D", - "decimals": 18, - "name": "Dinari ARM", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0x67bad479f77488f0f427584e267e66086a7da43a.png", - "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0x77308f8b63a99b24b262d930e0218ed2f49f8475": { - "address": "0x77308f8b63a99b24b262d930e0218ed2f49f8475", - "symbol": "MSFT.D", - "decimals": 18, - "name": "Dinari MSFT", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0x77308f8b63a99b24b262d930e0218ed2f49f8475.png", - "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0x9da913f4dca9b210a232d588113047685a4ed4b1": { - "address": "0x9da913f4dca9b210a232d588113047685a4ed4b1", - "symbol": "BRK.A.D", - "decimals": 18, - "name": "Dinari BRK.A", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0x9da913f4dca9b210a232d588113047685a4ed4b1.png", - "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0x8ad3c73f833d3f9a523ab01476625f269aeb7cf0": { - "address": "0x8ad3c73f833d3f9a523ab01476625f269aeb7cf0", - "symbol": "TSLAX", - "decimals": 18, - "name": "Tesla xStock", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0x8ad3c73f833d3f9a523ab01476625f269aeb7cf0.png", - "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0x2363fd1235c1b6d3a5088ddf8df3a0b3a30c5293": { - "address": "0x2363fd1235c1b6d3a5088ddf8df3a0b3a30c5293", - "symbol": "VX", - "decimals": 18, - "name": "Visa xStock", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0x2363fd1235c1b6d3a5088ddf8df3a0b3a30c5293.png", - "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0x28bf1c9ee2eb746a2d61a0bec97a344028171d6c": { - "address": "0x28bf1c9ee2eb746a2d61a0bec97a344028171d6c", - "symbol": "AMC.D", - "decimals": 18, - "name": "Dinari AMC", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0x28bf1c9ee2eb746a2d61a0bec97a344028171d6c.png", - "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0xb365cd2588065f522d379ad19e903304f6b622c6": { - "address": "0xb365cd2588065f522d379ad19e903304f6b622c6", - "symbol": "MAX", - "decimals": 18, - "name": "Mastercard xStock", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0xb365cd2588065f522d379ad19e903304f6b622c6.png", - "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0x36d37b6cbca364cf1d843eff8c2f6824491bcf81": { - "address": "0x36d37b6cbca364cf1d843eff8c2f6824491bcf81", - "symbol": "TSLA.D", - "decimals": 18, - "name": "Dinari TSLA", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0x36d37b6cbca364cf1d843eff8c2f6824491bcf81.png", - "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0xdb0482cfad4789798623e64b15eeba01b16e917c": { - "address": "0xdb0482cfad4789798623e64b15eeba01b16e917c", - "symbol": "JNJX", - "decimals": 18, - "name": "Johnson & Johnson xStock", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0xdb0482cfad4789798623e64b15eeba01b16e917c.png", - "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0x85667409a723684fe1e57dd1abde8d88c2f54214": { - "address": "0x85667409a723684fe1e57dd1abde8d88c2f54214", - "symbol": "MAGICGLP", - "decimals": 18, - "name": "MagicGLP", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0x85667409a723684fe1e57dd1abde8d88c2f54214.png", - "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0x519062155b0591627c8a0c0958110a8c5639dca6": { - "address": "0x519062155b0591627c8a0c0958110a8c5639dca6", - "symbol": "META.D", - "decimals": 18, - "name": "Dinari META", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0x519062155b0591627c8a0c0958110a8c5639dca6.png", - "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0x63db244bc895b3accec6698ce11b0dbd1d3e1c44": { - "address": "0x63db244bc895b3accec6698ce11b0dbd1d3e1c44", - "symbol": "TRT", - "decimals": 18, - "name": "TRUST AI", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0x63db244bc895b3accec6698ce11b0dbd1d3e1c44.png", - "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0x5837e4189819637853a357af36650902347f5e73": { - "address": "0x5837e4189819637853a357af36650902347f5e73", - "symbol": "KPK_USDC_YIELDV2", - "decimals": 18, - "name": "kpk USDC Yield V2 Morpho Vault (Arbitrum)", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0x5837e4189819637853a357af36650902347f5e73.png", - "aggregators": ["CoinGecko", "LiFi", "Rubic", "Rango"], - "occurrences": 4 - }, - "0x3c9f23db4ddc5655f7be636358d319a3de1ff0c4": { - "address": "0x3c9f23db4ddc5655f7be636358d319a3de1ff0c4", - "symbol": "DIS.D", - "decimals": 18, - "name": "Dinari DIS", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0x3c9f23db4ddc5655f7be636358d319a3de1ff0c4.png", - "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0xf4bd09b048248876e39fcf2e0cdf1aee1240a9d2": { - "address": "0xf4bd09b048248876e39fcf2e0cdf1aee1240a9d2", - "symbol": "SPY.D", - "decimals": 18, - "name": "Dinari SPY", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0xf4bd09b048248876e39fcf2e0cdf1aee1240a9d2.png", - "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0x118346c2bb9d24412ed58c53bf9bb6f61a20d7ec": { - "address": "0x118346c2bb9d24412ed58c53bf9bb6f61a20d7ec", - "symbol": "PLD.D", - "decimals": 18, - "name": "Dinari PLD", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0x118346c2bb9d24412ed58c53bf9bb6f61a20d7ec.png", - "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0x97ec5dada8262bd922bffd54a93f5a11efe0b136": { - "address": "0x97ec5dada8262bd922bffd54a93f5a11efe0b136", - "symbol": "RDDT.D", - "decimals": 18, - "name": "Dinari RDDT", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0x97ec5dada8262bd922bffd54a93f5a11efe0b136.png", - "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0xf1f18f765f118c3598cc54dcac1d0e12066263fe": { - "address": "0xf1f18f765f118c3598cc54dcac1d0e12066263fe", - "symbol": "PFE.D", - "decimals": 18, - "name": "Dinari PFE", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0xf1f18f765f118c3598cc54dcac1d0e12066263fe.png", - "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0x96702be57cd9777f835117a809c7124fe4ec989a": { - "address": "0x96702be57cd9777f835117a809c7124fe4ec989a", - "symbol": "METAX", - "decimals": 18, - "name": "Meta xStock", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0x96702be57cd9777f835117a809c7124fe4ec989a.png", - "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0xfbf2398df672cee4afcc2a4a733222331c742a6a": { - "address": "0xfbf2398df672cee4afcc2a4a733222331c742a6a", - "symbol": "ABBVX", - "decimals": 18, - "name": "AbbVie xStock", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0xfbf2398df672cee4afcc2a4a733222331c742a6a.png", - "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0x36c424a6ec0e264b1616102ad63ed2ad7857413e": { - "address": "0x36c424a6ec0e264b1616102ad63ed2ad7857413e", - "symbol": "PEPX", - "decimals": 18, - "name": "PepsiCo xStock", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0x36c424a6ec0e264b1616102ad63ed2ad7857413e.png", - "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0xd9fc3e075d45254a1d834fea18af8041207dea0a": { - "address": "0xd9fc3e075d45254a1d834fea18af8041207dea0a", - "symbol": "JPMX", - "decimals": 18, - "name": "JPMorgan Chase xStock", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0xd9fc3e075d45254a1d834fea18af8041207dea0a.png", - "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0x17d8186ed8f68059124190d147174d0f6697dc40": { - "address": "0x17d8186ed8f68059124190d147174d0f6697dc40", - "symbol": "MRKX", - "decimals": 18, - "name": "Merck xStock", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0x17d8186ed8f68059124190d147174d0f6697dc40.png", - "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0xf9523e369c5f55ad72dbaa75b0a9b92b3d8b147e": { - "address": "0xf9523e369c5f55ad72dbaa75b0a9b92b3d8b147e", - "symbol": "NVOX", - "decimals": 18, - "name": "Novo Nordisk xStock", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0xf9523e369c5f55ad72dbaa75b0a9b92b3d8b147e.png", - "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0xb0f66bdb39acbb043308eb9dbe78f5bb47ea5430": { - "address": "0xb0f66bdb39acbb043308eb9dbe78f5bb47ea5430", - "symbol": "HDN", - "decimals": 18, - "name": "Hydranet", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0xb0f66bdb39acbb043308eb9dbe78f5bb47ea5430.png", - "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0xd8f728adb72a46ae2c92234ae8870d04907786c5": { - "address": "0xd8f728adb72a46ae2c92234ae8870d04907786c5", - "symbol": "AMD.D", - "decimals": 18, - "name": "Dinari AMD", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0xd8f728adb72a46ae2c92234ae8870d04907786c5.png", - "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0x8240affe697cde618ad05c3c8963f5bfe152650b": { - "address": "0x8240affe697cde618ad05c3c8963f5bfe152650b", - "symbol": "AMZN.D", - "decimals": 18, - "name": "Dinari AMZN", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0x8240affe697cde618ad05c3c8963f5bfe152650b.png", - "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0x8e50d11a54cff859b202b7fe5225353be0646410": { - "address": "0x8e50d11a54cff859b202b7fe5225353be0646410", - "symbol": "GOOGL.D", - "decimals": 18, - "name": "Dinari GOOGL", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0x8e50d11a54cff859b202b7fe5225353be0646410.png", - "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0xb415998a7bb6f11dc589e0eb20adf586ba32f12a": { - "address": "0xb415998a7bb6f11dc589e0eb20adf586ba32f12a", - "symbol": "GME.D", - "decimals": 18, - "name": "Dinari GME", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0xb415998a7bb6f11dc589e0eb20adf586ba32f12a.png", - "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0xf34450d1f23902657cffb2636153677be7d38750": { - "address": "0xf34450d1f23902657cffb2636153677be7d38750", - "symbol": "NOX", - "decimals": 9, - "name": "Equinox Ecosystem", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0xf34450d1f23902657cffb2636153677be7d38750.png", - "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0x1ac765b5bea23184802c7d2d497f7c33f1444a9e": { - "address": "0x1ac765b5bea23184802c7d2d497f7c33f1444a9e", - "symbol": "PFEX", - "decimals": 18, - "name": "Pfizer xStock", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0x1ac765b5bea23184802c7d2d497f7c33f1444a9e.png", - "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0xa6d12574efb239fc1d2099732bd8b5dc6306897f": { - "address": "0xa6d12574efb239fc1d2099732bd8b5dc6306897f", - "symbol": "WAARBUSDT", - "decimals": 6, - "name": "Wrapped Aave Arbitrum USDT", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0xa6d12574efb239fc1d2099732bd8b5dc6306897f.png", - "aggregators": ["CoinGecko", "1inch", "Rubic", "Rango"], - "occurrences": 4 - }, - "0x80a77a372c1e12accda84299492f404902e2da67": { - "address": "0x80a77a372c1e12accda84299492f404902e2da67", - "symbol": "MCDX", - "decimals": 18, - "name": "McDonald's xStock", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0x80a77a372c1e12accda84299492f404902e2da67.png", - "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0x80eede496655fb9047dd39d9f418d5483ed600df": { - "address": "0x80eede496655fb9047dd39d9f418d5483ed600df", - "symbol": "FRXUSD", - "decimals": 18, - "name": "FRXUSD", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0x80eede496655fb9047dd39d9f418d5483ed600df.png", - "aggregators": ["CoinGecko", "LiFi", "Rubic", "Rango"], - "occurrences": 4 - }, - "0xc53ac24320e3a54c7211e4993c8095078a0cb3cf": { - "address": "0xc53ac24320e3a54c7211e4993c8095078a0cb3cf", - "symbol": "WGC", - "decimals": 6, - "name": "Wild Goat Coin", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0xc53ac24320e3a54c7211e4993c8095078a0cb3cf.png", - "aggregators": ["CoinGecko", "Socket", "Rubic", "Rango"], - "occurrences": 4 - }, - "0x083fb956333f9c1568f66fc0d0be451f31f8c46c": { - "address": "0x083fb956333f9c1568f66fc0d0be451f31f8c46c", - "symbol": "RIZ", - "decimals": 8, - "name": "Rivalz Network", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0x083fb956333f9c1568f66fc0d0be451f31f8c46c.png", - "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0x1792865d493fe4dfdd504010d3c0f6da11e8046d": { - "address": "0x1792865d493fe4dfdd504010d3c0f6da11e8046d", - "symbol": "CLBTC", - "decimals": 18, - "name": "clBTC", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0x1792865d493fe4dfdd504010d3c0f6da11e8046d.png", - "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0xc65d8d96cdddb31328186efa113a460b0af9ec63": { - "address": "0xc65d8d96cdddb31328186efa113a460b0af9ec63", - "symbol": "PELL", - "decimals": 18, - "name": "Pell Network Token", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0xc65d8d96cdddb31328186efa113a460b0af9ec63.png", - "aggregators": ["CoinGecko", "Rubic", "Squid", "Rango"], - "occurrences": 4 - }, - "0xd09acb80c1e8f2291862c4978a008791c9167003": { - "address": "0xd09acb80c1e8f2291862c4978a008791c9167003", - "symbol": "TETH", - "decimals": 18, - "name": "TETH", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0xd09acb80c1e8f2291862c4978a008791c9167003.png", - "aggregators": ["CoinGecko", "LiFi", "Rubic", "Rango"], - "occurrences": 4 - }, - "0x1cb9bd2c6e7f4a7de3778547d46c8d4c22abc093": { - "address": "0x1cb9bd2c6e7f4a7de3778547d46c8d4c22abc093", - "symbol": "STBU", - "decimals": 18, - "name": "Stobox Token", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0x1cb9bd2c6e7f4a7de3778547d46c8d4c22abc093.png", - "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0x0002bcdaf53f4889bf2f43a3252d7c03fe1b80bc": { - "address": "0x0002bcdaf53f4889bf2f43a3252d7c03fe1b80bc", - "symbol": "GORPLES", - "decimals": 18, - "name": "GorplesCoin", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0x0002bcdaf53f4889bf2f43a3252d7c03fe1b80bc.png", - "aggregators": ["TraderJoe", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0x10663b695b8f75647bd3ff0ff609e16d35bbd1ec": { - "address": "0x10663b695b8f75647bd3ff0ff609e16d35bbd1ec", - "symbol": "AGG", - "decimals": 18, - "name": "AmpliFi DAO", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0x10663b695b8f75647bd3ff0ff609e16d35bbd1ec.png", - "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0xadd5620057336f868eae78a451c503ae7b576bad": { - "address": "0xadd5620057336f868eae78a451c503ae7b576bad", - "symbol": "ENQAI", - "decimals": 18, - "name": "enqAI", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0xadd5620057336f868eae78a451c503ae7b576bad.png", - "aggregators": ["TraderJoe", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0xf7d4e7273e5015c96728a6b02f31c505ee184603": { - "address": "0xf7d4e7273e5015c96728a6b02f31c505ee184603", - "symbol": "OSETH", - "decimals": 18, - "name": "OSETH", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0xf7d4e7273e5015c96728a6b02f31c505ee184603.png", - "aggregators": ["CoinGecko", "LiFi", "Rubic", "Rango"], - "occurrences": 4 - }, - "0x13ad3f1150db0e1e05fd32bdeeb7c110ee023de6": { - "address": "0x13ad3f1150db0e1e05fd32bdeeb7c110ee023de6", - "symbol": "DEFAI", - "decimals": 18, - "name": "AISweatShop", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0x13ad3f1150db0e1e05fd32bdeeb7c110ee023de6.png", - "aggregators": ["TraderJoe", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0x1bd013bd089c2b6b2d30a0e0b545810a5844e761": { - "address": "0x1bd013bd089c2b6b2d30a0e0b545810a5844e761", - "symbol": "HOME", - "decimals": 18, - "name": "OtterHome", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0x1bd013bd089c2b6b2d30a0e0b545810a5844e761.png", - "aggregators": ["TraderJoe", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0x5018609ab477cc502e170a5accf5312b86a4b94f": { - "address": "0x5018609ab477cc502e170a5accf5312b86a4b94f", - "symbol": "USDZ", - "decimals": 18, - "name": "USDz", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0x5018609ab477cc502e170a5accf5312b86a4b94f.png", - "aggregators": ["TraderJoe", "LiFi", "Socket", "Rubic"], - "occurrences": 4 - }, - "0xeca14f81085e5b8d1c9d32dcb596681574723561": { - "address": "0xeca14f81085e5b8d1c9d32dcb596681574723561", - "symbol": "SPOOL", - "decimals": 18, - "name": "Spool DAO Token", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0xeca14f81085e5b8d1c9d32dcb596681574723561.png", - "aggregators": ["TraderJoe", "LiFi", "Rubic", "Rango"], - "occurrences": 4 - }, - "0x569deb225441fd18bde18aed53e2ec7eb4e10d93": { - "address": "0x569deb225441fd18bde18aed53e2ec7eb4e10d93", - "symbol": "YFX", - "decimals": 17, - "name": "Your Futures Exchange", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0x569deb225441fd18bde18aed53e2ec7eb4e10d93.png", - "aggregators": ["LiFi", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0xb9c8f0d3254007ee4b98970b94544e473cd610ec": { - "address": "0xb9c8f0d3254007ee4b98970b94544e473cd610ec", - "symbol": "QI", - "decimals": 18, - "name": "QiDao", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0xb9c8f0d3254007ee4b98970b94544e473cd610ec.png", - "aggregators": ["LiFi", "Socket", "Rubic", "Rango"], - "occurrences": 4 - }, - "0x0de59c86c306b9fead9fb67e65551e2b6897c3f6": { - "address": "0x0de59c86c306b9fead9fb67e65551e2b6897c3f6", - "symbol": "KUMA", - "decimals": 18, - "name": "Kuma World", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0x0de59c86c306b9fead9fb67e65551e2b6897c3f6.png", - "aggregators": ["Socket", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0xf7e17ba61973bcdb61f471efb989e47d13bd565d": { - "address": "0xf7e17ba61973bcdb61f471efb989e47d13bd565d", - "symbol": "BITCOIN", - "decimals": 8, - "name": "HarryPotterObamaSonic10Inu", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0xf7e17ba61973bcdb61f471efb989e47d13bd565d.png", - "aggregators": ["UniswapLabs", "LiFi", "Rango"], - "occurrences": 3 - }, - "0xcdc343ebf71e38f003ed6c80171f5b8d7cf58860": { - "address": "0xcdc343ebf71e38f003ed6c80171f5b8d7cf58860", - "symbol": "CAKE", - "decimals": 18, - "name": "PancakeSwap", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0xcdc343ebf71e38f003ed6c80171f5b8d7cf58860.png", - "aggregators": ["UniswapLabs", "LiFi", "Rango"], - "occurrences": 3 - }, - "0x69b937db799a9becc9e8a6f0a5d36ea3657273bf": { - "address": "0x69b937db799a9becc9e8a6f0a5d36ea3657273bf", - "symbol": "CQT", - "decimals": 18, - "name": "Covalent", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0x69b937db799a9becc9e8a6f0a5d36ea3657273bf.png", - "aggregators": ["UniswapLabs", "Socket", "Rango"], - "occurrences": 3 - }, - "0x51863cb90ce5d6da9663106f292fa27c8cc90c5a": { - "address": "0x51863cb90ce5d6da9663106f292fa27c8cc90c5a", - "symbol": "DYDX", - "decimals": 18, - "name": "dYdX", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0x51863cb90ce5d6da9663106f292fa27c8cc90c5a.png", - "aggregators": ["UniswapLabs", "LiFi", "Rango"], - "occurrences": 3 - }, - "0x3e4cff6e50f37f731284a92d44ae943e17077fd4": { - "address": "0x3e4cff6e50f37f731284a92d44ae943e17077fd4", - "symbol": "ELON", - "decimals": 18, - "name": "Dogelon Mars", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0x3e4cff6e50f37f731284a92d44ae943e17077fd4.png", - "aggregators": ["UniswapLabs", "Socket", "Rango"], - "occurrences": 3 - }, - "0x63806c056fa458c548fb416b15e358a9d685710a": { - "address": "0x63806c056fa458c548fb416b15e358a9d685710a", - "symbol": "FLUX", - "decimals": 18, - "name": "Flux", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0x63806c056fa458c548fb416b15e358a9d685710a.png", - "aggregators": ["UniswapLabs", "LiFi", "Rango"], - "occurrences": 3 - }, - "0xf03a553fbcb2f52daae15170347830e5d3d16096": { - "address": "0xf03a553fbcb2f52daae15170347830e5d3d16096", - "symbol": "L3", - "decimals": 18, - "name": "Layer3", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0xf03a553fbcb2f52daae15170347830e5d3d16096.png", - "aggregators": ["UniswapLabs", "LiFi", "Rango"], - "occurrences": 3 - }, - "0x9c1a1c7ba9c2602123fd7ef3eb41a769edf6c53a": { - "address": "0x9c1a1c7ba9c2602123fd7ef3eb41a769edf6c53a", - "symbol": "MNT", - "decimals": 18, - "name": "Mantle", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0x9c1a1c7ba9c2602123fd7ef3eb41a769edf6c53a.png", - "aggregators": ["UniswapLabs", "LiFi", "Rango"], - "occurrences": 3 - }, - "0x96c42662820f6ea32f0a61a06a38a72b206aabac": { - "address": "0x96c42662820f6ea32f0a61a06a38a72b206aabac", - "symbol": "MOG", - "decimals": 18, - "name": "Mog Coin", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0x96c42662820f6ea32f0a61a06a38a72b206aabac.png", - "aggregators": ["UniswapLabs", "Socket", "Rango"], - "occurrences": 3 - }, - "0x35e6a59f786d9266c7961ea28c7b768b33959cbb": { - "address": "0x35e6a59f786d9266c7961ea28c7b768b33959cbb", - "symbol": "PEPE", - "decimals": 18, - "name": "Pepe", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0x35e6a59f786d9266c7961ea28c7b768b33959cbb.png", - "aggregators": ["UniswapLabs", "Socket", "Rango"], - "occurrences": 3 - }, - "0x6d78bc9ebc2431861b2928bb2af52bdd10baddd7": { - "address": "0x6d78bc9ebc2431861b2928bb2af52bdd10baddd7", - "symbol": "PEPECOIN", - "decimals": 18, - "name": "PepeCoin", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0x6d78bc9ebc2431861b2928bb2af52bdd10baddd7.png", - "aggregators": ["UniswapLabs", "LiFi", "Rango"], - "occurrences": 3 - }, - "0x044d8e7f3a17751d521efea8ccf9282268fe08cc": { - "address": "0x044d8e7f3a17751d521efea8ccf9282268fe08cc", - "symbol": "POL", - "decimals": 18, - "name": "Polygon Ecosystem Token", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0x044d8e7f3a17751d521efea8ccf9282268fe08cc.png", - "aggregators": ["UniswapLabs", "LiFi", "Rango"], - "occurrences": 3 - }, - "0x2e9ae8f178d5ea81970c7799a377b3985cbc335f": { - "address": "0x2e9ae8f178d5ea81970c7799a377b3985cbc335f", - "symbol": "RBC", - "decimals": 18, - "name": "Rubic", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0x2e9ae8f178d5ea81970c7799a377b3985cbc335f.png", - "aggregators": ["UniswapLabs", "Socket", "Rango"], - "occurrences": 3 - }, - "0x5033833c9fe8b9d3e09eed2f73d2aaf7e3872fd1": { - "address": "0x5033833c9fe8b9d3e09eed2f73d2aaf7e3872fd1", - "symbol": "SHIB", - "decimals": 18, - "name": "Shiba Inu", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0x5033833c9fe8b9d3e09eed2f73d2aaf7e3872fd1.png", - "aggregators": ["UniswapLabs", "Socket", "Rango"], - "occurrences": 3 - }, - "0xd43f10ce4bc089782ff8635c17f015edbc16d71b": { - "address": "0xd43f10ce4bc089782ff8635c17f015edbc16d71b", - "symbol": "SKY", - "decimals": 18, - "name": "SKY Governance Token", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0xd43f10ce4bc089782ff8635c17f015edbc16d71b.png", - "aggregators": ["UniswapLabs", "LiFi", "Rango"], - "occurrences": 3 - }, - "0x53e70cc1d527b524a1c46eaa892e4cb35d2ba901": { - "address": "0x53e70cc1d527b524a1c46eaa892e4cb35d2ba901", - "symbol": "SPX", - "decimals": 8, - "name": "SPX6900", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0x53e70cc1d527b524a1c46eaa892e4cb35d2ba901.png", - "aggregators": ["UniswapLabs", "LiFi", "Rango"], - "occurrences": 3 - }, - "0x2c96be2612bec20fe2975c3acfcbbe61a58f2571": { - "address": "0x2c96be2612bec20fe2975c3acfcbbe61a58f2571", - "symbol": "SWELL", - "decimals": 18, - "name": "Swell", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0x2c96be2612bec20fe2975c3acfcbbe61a58f2571.png", - "aggregators": ["UniswapLabs", "LiFi", "Rango"], - "occurrences": 3 - }, - "0x9b86f3c7d145979ec6b2f42ed7f92d06cfc6c9d3": { - "address": "0x9b86f3c7d145979ec6b2f42ed7f92d06cfc6c9d3", - "symbol": "XAUT", - "decimals": 6, - "name": "Tether Gold", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0x9b86f3c7d145979ec6b2f42ed7f92d06cfc6c9d3.png", - "aggregators": ["UniswapLabs", "LiFi", "Rango"], - "occurrences": 3 - }, - "0x5621737f42dae558b81269fcb9e9e70c19aa6b35": { - "address": "0x5621737f42dae558b81269fcb9e9e70c19aa6b35", - "symbol": "MSFTX", - "decimals": 18, - "name": "MSFTX", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0x5621737f42dae558b81269fcb9e9e70c19aa6b35.png", - "aggregators": ["CoinGecko", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x116998824ff90532906bab91becea4a8e4ce06db": { - "address": "0x116998824ff90532906bab91becea4a8e4ce06db", - "symbol": "EXOD", - "decimals": 8, - "name": "EXOD", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0x116998824ff90532906bab91becea4a8e4ce06db.png", - "aggregators": ["CoinGecko", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x0afc19943fa98e9e9e90fc4ab4d4d3c13e162232": { - "address": "0x0afc19943fa98e9e9e90fc4ab4d4d3c13e162232", - "symbol": "WPGX", - "decimals": 18, - "name": "Wrapped Procter & Gamble xStock", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0x0afc19943fa98e9e9e90fc4ab4d4d3c13e162232.png", - "aggregators": ["CoinGecko", "Rubic", "Sonarwatch"], - "occurrences": 3 - }, - "0x4a4073f2eaf299a1be22254dcd2c41727f6f54a2": { - "address": "0x4a4073f2eaf299a1be22254dcd2c41727f6f54a2", - "symbol": "CRMX", - "decimals": 18, - "name": "CRMX", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0x4a4073f2eaf299a1be22254dcd2c41727f6f54a2.png", - "aggregators": ["CoinGecko", "Rubic", "Rango"], - "occurrences": 3 - }, - "0xdcc1a2699441079da889b1f49e12b69cc791129b": { - "address": "0xdcc1a2699441079da889b1f49e12b69cc791129b", - "symbol": "KOX", - "decimals": 18, - "name": "KOX", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0xdcc1a2699441079da889b1f49e12b69cc791129b.png", - "aggregators": ["CoinGecko", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x7c2e00e6b0d519a8c492d20c2524342a4398ff34": { - "address": "0x7c2e00e6b0d519a8c492d20c2524342a4398ff34", - "symbol": "WPMX", - "decimals": 18, - "name": "Wrapped Philip Morris xStock", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0x7c2e00e6b0d519a8c492d20c2524342a4398ff34.png", - "aggregators": ["CoinGecko", "Rubic", "Sonarwatch"], - "occurrences": 3 - }, - "0x44966bf47a494b36dfb407afb334a9226cdf90bc": { - "address": "0x44966bf47a494b36dfb407afb334a9226cdf90bc", - "symbol": "AZN.D", - "decimals": 18, - "name": "Dinari AZN", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0x44966bf47a494b36dfb407afb334a9226cdf90bc.png", - "aggregators": ["CoinGecko", "Rubic", "Sonarwatch"], - "occurrences": 3 - }, - "0xc52915fe75dc8db9fb6306f43aaef1344e0837ab": { - "address": "0xc52915fe75dc8db9fb6306f43aaef1344e0837ab", - "symbol": "BTCW.D", - "decimals": 18, - "name": "Dinari BTCW", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0xc52915fe75dc8db9fb6306f43aaef1344e0837ab.png", - "aggregators": ["CoinGecko", "Rubic", "Sonarwatch"], - "occurrences": 3 - }, - "0xae2f842ef90c0d5213259ab82639d5bbf649b08e": { - "address": "0xae2f842ef90c0d5213259ab82639d5bbf649b08e", - "symbol": "MSTRX", - "decimals": 18, - "name": "MSTRX", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0xae2f842ef90c0d5213259ab82639d5bbf649b08e.png", - "aggregators": ["CoinGecko", "Rubic", "Rango"], - "occurrences": 3 - }, - "0xe649980d1b911756f217e4b61de76a7d2a3b108a": { - "address": "0xe649980d1b911756f217e4b61de76a7d2a3b108a", - "symbol": "CAT.D", - "decimals": 18, - "name": "Dinari CAT", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0xe649980d1b911756f217e4b61de76a7d2a3b108a.png", - "aggregators": ["CoinGecko", "Rubic", "Sonarwatch"], - "occurrences": 3 - }, - "0xdd92f0723a7318e684a88532cac2421e3cc9968e": { - "address": "0xdd92f0723a7318e684a88532cac2421e3cc9968e", - "symbol": "DEFI.D", - "decimals": 18, - "name": "Dinari DEFI", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0xdd92f0723a7318e684a88532cac2421e3cc9968e.png", - "aggregators": ["CoinGecko", "Rubic", "Sonarwatch"], - "occurrences": 3 - }, - "0x0753d920a5e37b0bf2114a7b4a71d46f66ce4b30": { - "address": "0x0753d920a5e37b0bf2114a7b4a71d46f66ce4b30", - "symbol": "HOOD.D", - "decimals": 18, - "name": "Dinari HOOD", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0x0753d920a5e37b0bf2114a7b4a71d46f66ce4b30.png", - "aggregators": ["CoinGecko", "Rubic", "Sonarwatch"], - "occurrences": 3 - }, - "0x0588e851ec0418d660bee81230d6c678daf21d46": { - "address": "0x0588e851ec0418d660bee81230d6c678daf21d46", - "symbol": "MDTX", - "decimals": 18, - "name": "Medtronic xStock", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0x0588e851ec0418d660bee81230d6c678daf21d46.png", - "aggregators": ["CoinGecko", "Rubic", "Sonarwatch"], - "occurrences": 3 - }, - "0xcdb53a7cba9ec6d55dfe8f58bd6772826722d7bd": { - "address": "0xcdb53a7cba9ec6d55dfe8f58bd6772826722d7bd", - "symbol": "WJNJX", - "decimals": 18, - "name": "Wrapped Johnson & Johnson xStock", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0xcdb53a7cba9ec6d55dfe8f58bd6772826722d7bd.png", - "aggregators": ["CoinGecko", "Rubic", "Sonarwatch"], - "occurrences": 3 - }, - "0x4e6894c3481b3a45393ce8ac9552945ad50a3758": { - "address": "0x4e6894c3481b3a45393ce8ac9552945ad50a3758", - "symbol": "WPFEX", - "decimals": 18, - "name": "Wrapped Pfizer xStock", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0x4e6894c3481b3a45393ce8ac9552945ad50a3758.png", - "aggregators": ["CoinGecko", "Rubic", "Sonarwatch"], - "occurrences": 3 - }, - "0x46b979440ac257151ee5a5bc9597b76386907fa1": { - "address": "0x46b979440ac257151ee5a5bc9597b76386907fa1", - "symbol": "COIN.D", - "decimals": 18, - "name": "Dinari COIN", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0x46b979440ac257151ee5a5bc9597b76386907fa1.png", - "aggregators": ["CoinGecko", "Rubic", "Sonarwatch"], - "occurrences": 3 - }, - "0x15059c599c16fd8f70b633ade165502d6402cd49": { - "address": "0x15059c599c16fd8f70b633ade165502d6402cd49", - "symbol": "LINX", - "decimals": 18, - "name": "LINX", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0x15059c599c16fd8f70b633ade165502d6402cd49.png", - "aggregators": ["CoinGecko", "Rubic", "Rango"], - "occurrences": 3 - }, - "0xcf6c2bb97a8978321c9e207afe8a2037fa9be45c": { - "address": "0xcf6c2bb97a8978321c9e207afe8a2037fa9be45c", - "symbol": "ORBETH", - "decimals": 18, - "name": "Orbit Ether", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0xcf6c2bb97a8978321c9e207afe8a2037fa9be45c.png", - "aggregators": ["CoinGecko", "Rubic", "Sonarwatch"], - "occurrences": 3 - }, - "0x316ffea434348c2cb72024e62ae845770315351e": { - "address": "0x316ffea434348c2cb72024e62ae845770315351e", - "symbol": "WLINX", - "decimals": 18, - "name": "Wrapped Linde xStock", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0x316ffea434348c2cb72024e62ae845770315351e.png", - "aggregators": ["CoinGecko", "Rubic", "Sonarwatch"], - "occurrences": 3 - }, - "0x0d6fce45796d5c00689c0916b976645a0ff1f0ce": { - "address": "0x0d6fce45796d5c00689c0916b976645a0ff1f0ce", - "symbol": "WMRVLX", - "decimals": 18, - "name": "Wrapped Marvell xStock", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0x0d6fce45796d5c00689c0916b976645a0ff1f0ce.png", - "aggregators": ["CoinGecko", "Rubic", "Sonarwatch"], - "occurrences": 3 - }, - "0x5b32624f352d2fc6cc70889967a143ba1814f82b": { - "address": "0x5b32624f352d2fc6cc70889967a143ba1814f82b", - "symbol": "WMAX", - "decimals": 18, - "name": "Wrapped Mastercard xStock", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0x5b32624f352d2fc6cc70889967a143ba1814f82b.png", - "aggregators": ["CoinGecko", "Rubic", "Sonarwatch"], - "occurrences": 3 - }, - "0x315a2dca4b1b633d3a707c71d96243534c02f7c4": { - "address": "0x315a2dca4b1b633d3a707c71d96243534c02f7c4", - "symbol": "XOM.D", - "decimals": 18, - "name": "Dinari XOM", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0x315a2dca4b1b633d3a707c71d96243534c02f7c4.png", - "aggregators": ["CoinGecko", "Rubic", "Sonarwatch"], - "occurrences": 3 - }, - "0xa90424d5d3e770e8644103ab503ed775dd1318fd": { - "address": "0xa90424d5d3e770e8644103ab503ed775dd1318fd", - "symbol": "PGX", - "decimals": 18, - "name": "PGX", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0xa90424d5d3e770e8644103ab503ed775dd1318fd.png", - "aggregators": ["CoinGecko", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x7f88888b7a81546a036554aa67a289ea428b20d4": { - "address": "0x7f88888b7a81546a036554aa67a289ea428b20d4", - "symbol": "WCVXX", - "decimals": 18, - "name": "Wrapped Chevron xStock", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0x7f88888b7a81546a036554aa67a289ea428b20d4.png", - "aggregators": ["CoinGecko", "Rubic", "Sonarwatch"], - "occurrences": 3 - }, - "0xdba228936f4079daf9aa906fd48a87f2300405f4": { - "address": "0xdba228936f4079daf9aa906fd48a87f2300405f4", - "symbol": "DHRX", - "decimals": 18, - "name": "DHRX", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0xdba228936f4079daf9aa906fd48a87f2300405f4.png", - "aggregators": ["CoinGecko", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x1a4fd0e749c86eeb6f80d1047d6c25432c703d48": { - "address": "0x1a4fd0e749c86eeb6f80d1047d6c25432c703d48", - "symbol": "ARKK.D", - "decimals": 18, - "name": "Dinari ARKK", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0x1a4fd0e749c86eeb6f80d1047d6c25432c703d48.png", - "aggregators": ["CoinGecko", "Rubic", "Sonarwatch"], - "occurrences": 3 - }, - "0x42ba3ac0c2d9b611623e1e48f51757606a105d9e": { - "address": "0x42ba3ac0c2d9b611623e1e48f51757606a105d9e", - "symbol": "KO.D", - "decimals": 18, - "name": "Dinari KO", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0x42ba3ac0c2d9b611623e1e48f51757606a105d9e.png", - "aggregators": ["CoinGecko", "Rubic", "Sonarwatch"], - "occurrences": 3 - }, - "0x19c41ea77b34bbdee61c3a87a75d1abda2ed0be4": { - "address": "0x19c41ea77b34bbdee61c3a87a75d1abda2ed0be4", - "symbol": "LLYX", - "decimals": 18, - "name": "LLYX", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0x19c41ea77b34bbdee61c3a87a75d1abda2ed0be4.png", - "aggregators": ["CoinGecko", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x700e4edb5c7d8f53ccb0cf212b81a121728e1d5b": { - "address": "0x700e4edb5c7d8f53ccb0cf212b81a121728e1d5b", - "symbol": "LOPO", - "decimals": 18, - "name": "LOPO", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0x700e4edb5c7d8f53ccb0cf212b81a121728e1d5b.png", - "aggregators": ["CoinGecko", "Rubic", "Rango"], - "occurrences": 3 - }, - "0xa213072a726062aca3c07839b7e531f101740c5c": { - "address": "0xa213072a726062aca3c07839b7e531f101740c5c", - "symbol": "SPSK.D", - "decimals": 18, - "name": "Dinari SPSK", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0xa213072a726062aca3c07839b7e531f101740c5c.png", - "aggregators": ["CoinGecko", "Rubic", "Sonarwatch"], - "occurrences": 3 - }, - "0x2824efe5cedb3bc8730e412981997dac7c7640c2": { - "address": "0x2824efe5cedb3bc8730e412981997dac7c7640c2", - "symbol": "BTCO.D", - "decimals": 18, - "name": "Dinari BTCO", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0x2824efe5cedb3bc8730e412981997dac7c7640c2.png", - "aggregators": ["CoinGecko", "Rubic", "Sonarwatch"], - "occurrences": 3 - }, - "0x167a6375da1efc4a5be0f470e73ecefd66245048": { - "address": "0x167a6375da1efc4a5be0f470e73ecefd66245048", - "symbol": "UNHX", - "decimals": 18, - "name": "UNHX", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0x167a6375da1efc4a5be0f470e73ecefd66245048.png", - "aggregators": ["CoinGecko", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x2594a6392832b341b76b60e8b00f42094e30b1b3": { - "address": "0x2594a6392832b341b76b60e8b00f42094e30b1b3", - "symbol": "SPUS.D", - "decimals": 18, - "name": "Dinari SPUS", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0x2594a6392832b341b76b60e8b00f42094e30b1b3.png", - "aggregators": ["CoinGecko", "Rubic", "Sonarwatch"], - "occurrences": 3 - }, - "0x5b041a4e76b08c5afc1e0b9a789cbfab5ebec993": { - "address": "0x5b041a4e76b08c5afc1e0b9a789cbfab5ebec993", - "symbol": "EEM.D", - "decimals": 18, - "name": "Dinari EEM", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0x5b041a4e76b08c5afc1e0b9a789cbfab5ebec993.png", - "aggregators": ["CoinGecko", "Rubic", "Sonarwatch"], - "occurrences": 3 - }, - "0xb1284f6b3e487e3f773e9ad40f337c3b3cda5c69": { - "address": "0xb1284f6b3e487e3f773e9ad40f337c3b3cda5c69", - "symbol": "GBTC.D", - "decimals": 18, - "name": "Dinari GBTC", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0xb1284f6b3e487e3f773e9ad40f337c3b3cda5c69.png", - "aggregators": ["CoinGecko", "Rubic", "Sonarwatch"], - "occurrences": 3 - }, - "0xbe8e3f4d5bd6ee0175359982cc91dafa3cf72502": { - "address": "0xbe8e3f4d5bd6ee0175359982cc91dafa3cf72502", - "symbol": "GLD.D", - "decimals": 18, - "name": "Dinari GLD", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0xbe8e3f4d5bd6ee0175359982cc91dafa3cf72502.png", - "aggregators": ["CoinGecko", "Rubic", "Sonarwatch"], - "occurrences": 3 - }, - "0x0c59f6b96d3cac58240429c7659ec107f8b1efa7": { - "address": "0x0c59f6b96d3cac58240429c7659ec107f8b1efa7", - "symbol": "HODL.D", - "decimals": 18, - "name": "Dinari HODL", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0x0c59f6b96d3cac58240429c7659ec107f8b1efa7.png", - "aggregators": ["CoinGecko", "Rubic", "Sonarwatch"], - "occurrences": 3 - }, - "0x808167ea744e02c6fec3f56636d19f3448b72981": { - "address": "0x808167ea744e02c6fec3f56636d19f3448b72981", - "symbol": "HUT.D", - "decimals": 18, - "name": "Dinari HUT", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0x808167ea744e02c6fec3f56636d19f3448b72981.png", - "aggregators": ["CoinGecko", "Rubic", "Sonarwatch"], - "occurrences": 3 - }, - "0x39bce681d72720f80424914800a78c63fdfaf645": { - "address": "0x39bce681d72720f80424914800a78c63fdfaf645", - "symbol": "IAU.D", - "decimals": 18, - "name": "Dinari IAU", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0x39bce681d72720f80424914800a78c63fdfaf645.png", - "aggregators": ["CoinGecko", "Rubic", "Sonarwatch"], - "occurrences": 3 - }, - "0xc1ba16afdcb3a41242944c9faaccd9fb6f2b428c": { - "address": "0xc1ba16afdcb3a41242944c9faaccd9fb6f2b428c", - "symbol": "IBIT.D", - "decimals": 18, - "name": "Dinari IBIT", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0xc1ba16afdcb3a41242944c9faaccd9fb6f2b428c.png", - "aggregators": ["CoinGecko", "Rubic", "Sonarwatch"], - "occurrences": 3 - }, - "0xc0ce7221db1508529752339c3bd5dcf01fa1b0ca": { - "address": "0xc0ce7221db1508529752339c3bd5dcf01fa1b0ca", - "symbol": "MARA.D", - "decimals": 18, - "name": "Dinari MARA", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0xc0ce7221db1508529752339c3bd5dcf01fa1b0ca.png", - "aggregators": ["CoinGecko", "Rubic", "Sonarwatch"], - "occurrences": 3 - }, - "0x7aefc9965699fbea943e03264d96e50cd4a97b21": { - "address": "0x7aefc9965699fbea943e03264d96e50cd4a97b21", - "symbol": "WMTX", - "decimals": 18, - "name": "WMTX", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0x7aefc9965699fbea943e03264d96e50cd4a97b21.png", - "aggregators": ["CoinGecko", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x548308e91ec9f285c7bff05295badbd56a6e4971": { - "address": "0x548308e91ec9f285c7bff05295badbd56a6e4971", - "symbol": "ORCLX", - "decimals": 18, - "name": "ORCLX", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0x548308e91ec9f285c7bff05295badbd56a6e4971.png", - "aggregators": ["CoinGecko", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x1ae31840d492993a58baf558180b5ee83ce2f8ce": { - "address": "0x1ae31840d492993a58baf558180b5ee83ce2f8ce", - "symbol": "SNOW.D", - "decimals": 18, - "name": "Dinari SNOW", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0x1ae31840d492993a58baf558180b5ee83ce2f8ce.png", - "aggregators": ["CoinGecko", "Rubic", "Sonarwatch"], - "occurrences": 3 - }, - "0xab635f839f81a12dc8db8ab31006af14e26292fe": { - "address": "0xab635f839f81a12dc8db8ab31006af14e26292fe", - "symbol": "WJPMX", - "decimals": 18, - "name": "Wrapped JPMorgan Chase xStock", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0xab635f839f81a12dc8db8ab31006af14e26292fe.png", - "aggregators": ["CoinGecko", "Rubic", "Sonarwatch"], - "occurrences": 3 - }, - "0xccf43c38fe53c633425e14f6aba50a98e5ab1408": { - "address": "0xccf43c38fe53c633425e14f6aba50a98e5ab1408", - "symbol": "SPWO.D", - "decimals": 18, - "name": "Dinari SPWO", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0xccf43c38fe53c633425e14f6aba50a98e5ab1408.png", - "aggregators": ["CoinGecko", "Rubic", "Sonarwatch"], - "occurrences": 3 - }, - "0xd883bcf80b2b085fa40cc3e2416b4ab1cbca649e": { - "address": "0xd883bcf80b2b085fa40cc3e2416b4ab1cbca649e", - "symbol": "SQ.D", - "decimals": 18, - "name": "Dinari SQ", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0xd883bcf80b2b085fa40cc3e2416b4ab1cbca649e.png", - "aggregators": ["CoinGecko", "Rubic", "Sonarwatch"], - "occurrences": 3 - }, - "0x3f29fda039ee80f7d30fa5eb4e3b40691329f020": { - "address": "0x3f29fda039ee80f7d30fa5eb4e3b40691329f020", - "symbol": "UFO.D", - "decimals": 18, - "name": "Dinari UFO", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0x3f29fda039ee80f7d30fa5eb4e3b40691329f020.png", - "aggregators": ["CoinGecko", "Rubic", "Sonarwatch"], - "occurrences": 3 - }, - "0x40914f6007da3fcee3c8a6db211b5797848f8882": { - "address": "0x40914f6007da3fcee3c8a6db211b5797848f8882", - "symbol": "VXX.D", - "decimals": 18, - "name": "Dinari VXX", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0x40914f6007da3fcee3c8a6db211b5797848f8882.png", - "aggregators": ["CoinGecko", "Rubic", "Sonarwatch"], - "occurrences": 3 - }, - "0xc20770116f2821d550574c2b9ce1b4baa7012377": { - "address": "0xc20770116f2821d550574c2b9ce1b4baa7012377", - "symbol": "WEAT.D", - "decimals": 18, - "name": "Dinari WEAT", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0xc20770116f2821d550574c2b9ce1b4baa7012377.png", - "aggregators": ["CoinGecko", "Rubic", "Sonarwatch"], - "occurrences": 3 - }, - "0x13f950ee286a5be0254065d4b66420fc0e57adfc": { - "address": "0x13f950ee286a5be0254065d4b66420fc0e57adfc", - "symbol": "WOOD.D", - "decimals": 18, - "name": "Dinari WOOD", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0x13f950ee286a5be0254065d4b66420fc0e57adfc.png", - "aggregators": ["CoinGecko", "Rubic", "Sonarwatch"], - "occurrences": 3 - }, - "0xa8f31436ffe4e71f51b2d65b7d5a5c457ae2000f": { - "address": "0xa8f31436ffe4e71f51b2d65b7d5a5c457ae2000f", - "symbol": "WIBMX", - "decimals": 18, - "name": "Wrapped International Business Machines xStock", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0xa8f31436ffe4e71f51b2d65b7d5a5c457ae2000f.png", - "aggregators": ["CoinGecko", "Rubic", "Sonarwatch"], - "occurrences": 3 - }, - "0xa6a65ac27e76cd53cb790473e4345c46e5ebf961": { - "address": "0xa6a65ac27e76cd53cb790473e4345c46e5ebf961", - "symbol": "NFLXX", - "decimals": 18, - "name": "NFLXX", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0xa6a65ac27e76cd53cb790473e4345c46e5ebf961.png", - "aggregators": ["CoinGecko", "Rubic", "Rango"], - "occurrences": 3 - }, - "0xeedb0273c5af792745180e9ff568cd01550ffa13": { - "address": "0xeedb0273c5af792745180e9ff568cd01550ffa13", - "symbol": "XOMX", - "decimals": 18, - "name": "XOMX", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0xeedb0273c5af792745180e9ff568cd01550ffa13.png", - "aggregators": ["CoinGecko", "Rubic", "Rango"], - "occurrences": 3 - }, - "0xa3b6fe1a923585bb828fcfaa460b78eefd5ae2ec": { - "address": "0xa3b6fe1a923585bb828fcfaa460b78eefd5ae2ec", - "symbol": "WPLTRX", - "decimals": 18, - "name": "Wrapped Palantir xStock", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0xa3b6fe1a923585bb828fcfaa460b78eefd5ae2ec.png", - "aggregators": ["CoinGecko", "Rubic", "Sonarwatch"], - "occurrences": 3 - }, - "0xeaad46f4146ded5a47b55aa7f6c48c191deaec88": { - "address": "0xeaad46f4146ded5a47b55aa7f6c48c191deaec88", - "symbol": "MRVLX", - "decimals": 18, - "name": "MRVLX", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0xeaad46f4146ded5a47b55aa7f6c48c191deaec88.png", - "aggregators": ["CoinGecko", "Rubic", "Rango"], - "occurrences": 3 - }, - "0xd3188e0df68559c0b63361f6160c57ad88b239d8": { - "address": "0xd3188e0df68559c0b63361f6160c57ad88b239d8", - "symbol": "ASTRADAO", - "decimals": 17, - "name": "Astra DAO", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0xd3188e0df68559c0b63361f6160c57ad88b239d8.png", - "aggregators": ["TraderJoe", "Rubic", "Rango"], - "occurrences": 3 - }, - "0xa00a5538708b5aca7045f2ca15104707965bac94": { - "address": "0xa00a5538708b5aca7045f2ca15104707965bac94", - "symbol": "WPEPX", - "decimals": 18, - "name": "Wrapped PepsiCo xStock", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0xa00a5538708b5aca7045f2ca15104707965bac94.png", - "aggregators": ["CoinGecko", "Rubic", "Sonarwatch"], - "occurrences": 3 - }, - "0x903d5990119bc799423e9c25c56518ba7dd19474": { - "address": "0x903d5990119bc799423e9c25c56518ba7dd19474", - "symbol": "UKTBL", - "decimals": 5, - "name": "Spiko UK T-Bills Money Market Fund", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0x903d5990119bc799423e9c25c56518ba7dd19474.png", - "aggregators": ["CoinGecko", "Rubic", "Rango"], - "occurrences": 3 - }, - "0xaf072f109a2c173d822a4fe9af311a1b18f83d19": { - "address": "0xaf072f109a2c173d822a4fe9af311a1b18f83d19", - "symbol": "TMOX", - "decimals": 18, - "name": "TMOX", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0xaf072f109a2c173d822a4fe9af311a1b18f83d19.png", - "aggregators": ["CoinGecko", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x289594b223ab31832726eb99871fa99adac583e5": { - "address": "0x289594b223ab31832726eb99871fa99adac583e5", - "symbol": "ADBE.D", - "decimals": 18, - "name": "Dinari ADBE", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0x289594b223ab31832726eb99871fa99adac583e5.png", - "aggregators": ["CoinGecko", "Rubic", "Sonarwatch"], - "occurrences": 3 - }, - "0x3619ca1e96c629f7d71c1b03dc0ee56479356228": { - "address": "0x3619ca1e96c629f7d71c1b03dc0ee56479356228", - "symbol": "ARKB.D", - "decimals": 18, - "name": "Dinari ARKB", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0x3619ca1e96c629f7d71c1b03dc0ee56479356228.png", - "aggregators": ["CoinGecko", "Rubic", "Sonarwatch"], - "occurrences": 3 - }, - "0x071e1fd14fbacb2b856867043eb12ace1ee3cb52": { - "address": "0x071e1fd14fbacb2b856867043eb12ace1ee3cb52", - "symbol": "ERO.D", - "decimals": 18, - "name": "Dinari ERO", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0x071e1fd14fbacb2b856867043eb12ace1ee3cb52.png", - "aggregators": ["CoinGecko", "Rubic", "Sonarwatch"], - "occurrences": 3 - }, - "0x4cb894d1a5fc353ec18ba50cb087b88f6f73121f": { - "address": "0x4cb894d1a5fc353ec18ba50cb087b88f6f73121f", - "symbol": "ETHE.D", - "decimals": 18, - "name": "Dinari ETHE", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0x4cb894d1a5fc353ec18ba50cb087b88f6f73121f.png", - "aggregators": ["CoinGecko", "Rubic", "Sonarwatch"], - "occurrences": 3 - }, - "0xa6f344abc6e2501b2b303fcbba99cd89f136b5fb": { - "address": "0xa6f344abc6e2501b2b303fcbba99cd89f136b5fb", - "symbol": "EZBC.D", - "decimals": 18, - "name": "Dinari EZBC", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0xa6f344abc6e2501b2b303fcbba99cd89f136b5fb.png", - "aggregators": ["CoinGecko", "Rubic", "Sonarwatch"], - "occurrences": 3 - }, - "0x7af89514dadd0a39b5e87f013b0f3fd2ed591c88": { - "address": "0x7af89514dadd0a39b5e87f013b0f3fd2ed591c88", - "symbol": "F.D", - "decimals": 18, - "name": "Dinari F", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0x7af89514dadd0a39b5e87f013b0f3fd2ed591c88.png", - "aggregators": ["CoinGecko", "Rubic", "Sonarwatch"], - "occurrences": 3 - }, - "0x026fdf3024953cb2e8982bc11c67d336f37a5044": { - "address": "0x026fdf3024953cb2e8982bc11c67d336f37a5044", - "symbol": "FBTC.D", - "decimals": 18, - "name": "Dinari FBTC", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0x026fdf3024953cb2e8982bc11c67d336f37a5044.png", - "aggregators": ["CoinGecko", "Rubic", "Sonarwatch"], - "occurrences": 3 - }, - "0xef5713f65e32332b604e1096e68a6d78a0e927cf": { - "address": "0xef5713f65e32332b604e1096e68a6d78a0e927cf", - "symbol": "HYMB.D", - "decimals": 18, - "name": "Dinari HYMB", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0xef5713f65e32332b604e1096e68a6d78a0e927cf.png", - "aggregators": ["CoinGecko", "Rubic", "Sonarwatch"], - "occurrences": 3 - }, - "0xf1f313acc8c65dc2e7eebeb166c7c30be634eb38": { - "address": "0xf1f313acc8c65dc2e7eebeb166c7c30be634eb38", - "symbol": "ITA.D", - "decimals": 18, - "name": "Dinari ITA", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0xf1f313acc8c65dc2e7eebeb166c7c30be634eb38.png", - "aggregators": ["CoinGecko", "Rubic", "Sonarwatch"], - "occurrences": 3 - }, - "0x50e2b96f958133cbda56d1a62d156e812fe97828": { - "address": "0x50e2b96f958133cbda56d1a62d156e812fe97828", - "symbol": "JNJ.D", - "decimals": 18, - "name": "Dinari JNJ", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0x50e2b96f958133cbda56d1a62d156e812fe97828.png", - "aggregators": ["CoinGecko", "Rubic", "Sonarwatch"], - "occurrences": 3 - }, - "0x893ff58cd1e34eac0c8ce4fa92b30adee4e14986": { - "address": "0x893ff58cd1e34eac0c8ce4fa92b30adee4e14986", - "symbol": "LMT.D", - "decimals": 18, - "name": "Dinari LMT", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0x893ff58cd1e34eac0c8ce4fa92b30adee4e14986.png", - "aggregators": ["CoinGecko", "Rubic", "Sonarwatch"], - "occurrences": 3 - }, - "0xe15602ceeb794feb4163b049fe82a1f8432781b2": { - "address": "0xe15602ceeb794feb4163b049fe82a1f8432781b2", - "symbol": "JPM.D", - "decimals": 18, - "name": "Dinari JPM", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0xe15602ceeb794feb4163b049fe82a1f8432781b2.png", - "aggregators": ["CoinGecko", "Rubic", "Sonarwatch"], - "occurrences": 3 - }, - "0x0c29891dc5060618c779e2a45fbe4808aa5ae6ad": { - "address": "0x0c29891dc5060618c779e2a45fbe4808aa5ae6ad", - "symbol": "MCD.D", - "decimals": 18, - "name": "Dinari MCD", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0x0c29891dc5060618c779e2a45fbe4808aa5ae6ad.png", - "aggregators": ["CoinGecko", "Rubic", "Sonarwatch"], - "occurrences": 3 - }, - "0x41c9954ff544c2376385afc15d11d9bcfac777ab": { - "address": "0x41c9954ff544c2376385afc15d11d9bcfac777ab", - "symbol": "MELI.D", - "decimals": 18, - "name": "Dinari MELI", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0x41c9954ff544c2376385afc15d11d9bcfac777ab.png", - "aggregators": ["CoinGecko", "Rubic", "Sonarwatch"], - "occurrences": 3 - }, - "0x5b6424769823e82a1829b0a8bcaf501bffd90d25": { - "address": "0x5b6424769823e82a1829b0a8bcaf501bffd90d25", - "symbol": "PYPL.D", - "decimals": 18, - "name": "PayPal Holdings, Inc. - Dinari", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0x5b6424769823e82a1829b0a8bcaf501bffd90d25.png", - "aggregators": ["CoinGecko", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x6468cd2aa21a87b4e52d89b8dd123fbb5db101ed": { - "address": "0x6468cd2aa21a87b4e52d89b8dd123fbb5db101ed", - "symbol": "RBLX.D", - "decimals": 18, - "name": "Dinari RBLX", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0x6468cd2aa21a87b4e52d89b8dd123fbb5db101ed.png", - "aggregators": ["CoinGecko", "Rubic", "Sonarwatch"], - "occurrences": 3 - }, - "0x0b5ac0d7dcf6964609a12af4f6c6f3c257070193": { - "address": "0x0b5ac0d7dcf6964609a12af4f6c6f3c257070193", - "symbol": "RIOT.D", - "decimals": 18, - "name": "Dinari RIOT", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0x0b5ac0d7dcf6964609a12af4f6c6f3c257070193.png", - "aggregators": ["CoinGecko", "Rubic", "Sonarwatch"], - "occurrences": 3 - }, - "0xe3b82cfbfeda73dc6870d76090061bc3c97d25ac": { - "address": "0xe3b82cfbfeda73dc6870d76090061bc3c97d25ac", - "symbol": "RKLB.D", - "decimals": 18, - "name": "Dinari RKLB", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0xe3b82cfbfeda73dc6870d76090061bc3c97d25ac.png", - "aggregators": ["CoinGecko", "Rubic", "Sonarwatch"], - "occurrences": 3 - }, - "0x4b72de2da8be112cad87773b47537cf550676ffa": { - "address": "0x4b72de2da8be112cad87773b47537cf550676ffa", - "symbol": "SBUX.D", - "decimals": 18, - "name": "Dinari SBUX", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0x4b72de2da8be112cad87773b47537cf550676ffa.png", - "aggregators": ["CoinGecko", "Rubic", "Sonarwatch"], - "occurrences": 3 - }, - "0x0a2919147b871a0fc90f04944e31fad56d9af666": { - "address": "0x0a2919147b871a0fc90f04944e31fad56d9af666", - "symbol": "SLX.D", - "decimals": 18, - "name": "Dinari SLX", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0x0a2919147b871a0fc90f04944e31fad56d9af666.png", - "aggregators": ["CoinGecko", "Rubic", "Sonarwatch"], - "occurrences": 3 - }, - "0x5644fe2f365397a0313ee323da3ead314405c09a": { - "address": "0x5644fe2f365397a0313ee323da3ead314405c09a", - "symbol": "SONY.D", - "decimals": 18, - "name": "Dinari SONY", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0x5644fe2f365397a0313ee323da3ead314405c09a.png", - "aggregators": ["CoinGecko", "Rubic", "Sonarwatch"], - "occurrences": 3 - }, - "0x9fe6002c876972d8d84124ec25000a6fa14c88ec": { - "address": "0x9fe6002c876972d8d84124ec25000a6fa14c88ec", - "symbol": "SOXL.D", - "decimals": 18, - "name": "Dinari SOXL", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0x9fe6002c876972d8d84124ec25000a6fa14c88ec.png", - "aggregators": ["CoinGecko", "Rubic", "Sonarwatch"], - "occurrences": 3 - }, - "0x1795eeacbf98f08e7ee5af0a8913d5a54c24bb40": { - "address": "0x1795eeacbf98f08e7ee5af0a8913d5a54c24bb40", - "symbol": "SPTE.D", - "decimals": 18, - "name": "Dinari SPTE", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0x1795eeacbf98f08e7ee5af0a8913d5a54c24bb40.png", - "aggregators": ["CoinGecko", "Rubic", "Sonarwatch"], - "occurrences": 3 - }, - "0x50f7b76a0b888e5d7196f1a472d2e567d425c761": { - "address": "0x50f7b76a0b888e5d7196f1a472d2e567d425c761", - "symbol": "TJX.D", - "decimals": 18, - "name": "Dinari TJX", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0x50f7b76a0b888e5d7196f1a472d2e567d425c761.png", - "aggregators": ["CoinGecko", "Rubic", "Sonarwatch"], - "occurrences": 3 - }, - "0x63ad78a6e2db3322d16943fc65e71a0010571521": { - "address": "0x63ad78a6e2db3322d16943fc65e71a0010571521", - "symbol": "TQQQ.D", - "decimals": 18, - "name": "Dinari TQQQ", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0x63ad78a6e2db3322d16943fc65e71a0010571521.png", - "aggregators": ["CoinGecko", "Rubic", "Sonarwatch"], - "occurrences": 3 - }, - "0x1bed98b79f8a5e32031b0d735022fc006db47d37": { - "address": "0x1bed98b79f8a5e32031b0d735022fc006db47d37", - "symbol": "VWO.D", - "decimals": 18, - "name": "Dinari VWO", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0x1bed98b79f8a5e32031b0d735022fc006db47d37.png", - "aggregators": ["CoinGecko", "Rubic", "Sonarwatch"], - "occurrences": 3 - }, - "0x92b81204dd07b14ff8664092897ab660ce3ab323": { - "address": "0x92b81204dd07b14ff8664092897ab660ce3ab323", - "symbol": "WALRF.D", - "decimals": 18, - "name": "Dinari WALRF", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0x92b81204dd07b14ff8664092897ab660ce3ab323.png", - "aggregators": ["CoinGecko", "Rubic", "Sonarwatch"], - "occurrences": 3 - }, - "0xeb0d1360a14c3b162f2974daa5d218e0c1090146": { - "address": "0xeb0d1360a14c3b162f2974daa5d218e0c1090146", - "symbol": "YUM.D", - "decimals": 18, - "name": "Dinari YUM", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0xeb0d1360a14c3b162f2974daa5d218e0c1090146.png", - "aggregators": ["CoinGecko", "Rubic", "Sonarwatch"], - "occurrences": 3 - }, - "0x6d482cec5f9dd1f05ccee9fd3ff79b246170f8e2": { - "address": "0x6d482cec5f9dd1f05ccee9fd3ff79b246170f8e2", - "symbol": "PLTRX", - "decimals": 18, - "name": "PLTRX", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0x6d482cec5f9dd1f05ccee9fd3ff79b246170f8e2.png", - "aggregators": ["CoinGecko", "Rubic", "Rango"], - "occurrences": 3 - }, - "0xa81323f79c4f3887e18cc2702b31635a56ec606e": { - "address": "0xa81323f79c4f3887e18cc2702b31635a56ec606e", - "symbol": "CCL.D", - "decimals": 18, - "name": "Dinari CCL", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0xa81323f79c4f3887e18cc2702b31635a56ec606e.png", - "aggregators": ["CoinGecko", "Rubic", "Sonarwatch"], - "occurrences": 3 - }, - "0x62a48560861b0b451654bfffdb5be6e47aa8ff1b": { - "address": "0x62a48560861b0b451654bfffdb5be6e47aa8ff1b", - "symbol": "HONX", - "decimals": 18, - "name": "HONX", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0x62a48560861b0b451654bfffdb5be6e47aa8ff1b.png", - "aggregators": ["CoinGecko", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x4dafffddea93ddf1e0e7b61e844331455053ce5c": { - "address": "0x4dafffddea93ddf1e0e7b61e844331455053ce5c", - "symbol": "NVDA.D", - "decimals": 18, - "name": "Dinari NVDA", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0x4dafffddea93ddf1e0e7b61e844331455053ce5c.png", - "aggregators": ["CoinGecko", "Rubic", "Sonarwatch"], - "occurrences": 3 - }, - "0x08ebf126f903e76d22869b5cb8c54d1db55e2e84": { - "address": "0x08ebf126f903e76d22869b5cb8c54d1db55e2e84", - "symbol": "USDW", - "decimals": 18, - "name": "USD DWIN", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0x08ebf126f903e76d22869b5cb8c54d1db55e2e84.png", - "aggregators": ["CoinGecko", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x8eef5ed361c6823156d936209e23a8e0349e5c61": { - "address": "0x8eef5ed361c6823156d936209e23a8e0349e5c61", - "symbol": "USDRIF", - "decimals": 18, - "name": "USDRIF", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0x8eef5ed361c6823156d936209e23a8e0349e5c61.png", - "aggregators": ["CoinGecko", "Rubic", "Rango"], - "occurrences": 3 - }, - "0xa6525ae43edcd03dc08e775774dcabd3bb925872": { - "address": "0xa6525ae43edcd03dc08e775774dcabd3bb925872", - "symbol": "BUIDL", - "decimals": 6, - "name": "BUIDL", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0xa6525ae43edcd03dc08e775774dcabd3bb925872.png", - "aggregators": ["CoinGecko", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x5019fe1867d8ccfd76d8d5abd85db5efce548fba": { - "address": "0x5019fe1867d8ccfd76d8d5abd85db5efce548fba", - "symbol": "INT", - "decimals": 18, - "name": "InteNet", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0x5019fe1867d8ccfd76d8d5abd85db5efce548fba.png", - "aggregators": ["CoinGecko", "Rubic", "Sonarwatch"], - "occurrences": 3 - }, - "0x000000001dc8bd45d7e7829fb1c969cbe4d0d1ec": { - "address": "0x000000001dc8bd45d7e7829fb1c969cbe4d0d1ec", - "symbol": "GTUSDA", - "decimals": 18, - "name": "Gauntlet USD Alpha", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0x000000001dc8bd45d7e7829fb1c969cbe4d0d1ec.png", - "aggregators": ["CoinGecko", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x154388a4650d63acc823e06ef9e47c1eddd3cbb2": { - "address": "0x154388a4650d63acc823e06ef9e47c1eddd3cbb2", - "symbol": "SEN", - "decimals": 18, - "name": "Seneca", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0x154388a4650d63acc823e06ef9e47c1eddd3cbb2.png", - "aggregators": ["TraderJoe", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x1689a6e1f09658ff37d0bb131514e701045876da": { - "address": "0x1689a6e1f09658ff37d0bb131514e701045876da", - "symbol": "ZOO", - "decimals": 18, - "name": "ZooDAO", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0x1689a6e1f09658ff37d0bb131514e701045876da.png", - "aggregators": ["TraderJoe", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x244ae62439c1ef3187f244d8604ac2c391ef2b53": { - "address": "0x244ae62439c1ef3187f244d8604ac2c391ef2b53", - "symbol": "MOD", - "decimals": 18, - "name": "Modular", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0x244ae62439c1ef3187f244d8604ac2c391ef2b53.png", - "aggregators": ["TraderJoe", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x2ef354c71caab6dc7469bb3c99642878ccd1143f": { - "address": "0x2ef354c71caab6dc7469bb3c99642878ccd1143f", - "symbol": "IGRAIL", - "decimals": 18, - "name": "Grail Inu", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0x2ef354c71caab6dc7469bb3c99642878ccd1143f.png", - "aggregators": ["TraderJoe", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x300d2c875c6fb8ce4bf5480b4d34b7c9ea8a33a4": { - "address": "0x300d2c875c6fb8ce4bf5480b4d34b7c9ea8a33a4", - "symbol": "PXETH", - "decimals": 18, - "name": "Redacted Finance", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0x300d2c875c6fb8ce4bf5480b4d34b7c9ea8a33a4.png", - "aggregators": ["TraderJoe", "LiFi", "Socket"], - "occurrences": 3 - }, - "0x3eabe18eae267d1b57f917aba085bb5906114600": { - "address": "0x3eabe18eae267d1b57f917aba085bb5906114600", - "symbol": "EPENDLE", - "decimals": 18, - "name": "Equilibria Pendle", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0x3eabe18eae267d1b57f917aba085bb5906114600.png", - "aggregators": ["TraderJoe", "LiFi", "Squid"], - "occurrences": 3 - }, - "0x43df266501dff4773f8f33179e3b96ab94dbc28d": { - "address": "0x43df266501dff4773f8f33179e3b96ab94dbc28d", - "symbol": "GLEND", - "decimals": 18, - "name": "Glend", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0x43df266501dff4773f8f33179e3b96ab94dbc28d.png", - "aggregators": ["TraderJoe", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x5190f06eacefa2c552dc6bd5e763b81c73293293": { - "address": "0x5190f06eacefa2c552dc6bd5e763b81c73293293", - "symbol": "WMX", - "decimals": 18, - "name": "Wombex Token", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0x5190f06eacefa2c552dc6bd5e763b81c73293293.png", - "aggregators": ["TraderJoe", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x6bb7a17acc227fd1f6781d1eedeae01b42047ee0": { - "address": "0x6bb7a17acc227fd1f6781d1eedeae01b42047ee0", - "symbol": "LEX", - "decimals": 18, - "name": "LEX", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0x6bb7a17acc227fd1f6781d1eedeae01b42047ee0.png", - "aggregators": ["TraderJoe", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x7698ac5d15bb3ba7185adcbff32a80ebd9d0709b": { - "address": "0x7698ac5d15bb3ba7185adcbff32a80ebd9d0709b", - "symbol": "GNOME", - "decimals": 18, - "name": "GenomesDAO Governance", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0x7698ac5d15bb3ba7185adcbff32a80ebd9d0709b.png", - "aggregators": ["TraderJoe", "Rubic", "Rango"], - "occurrences": 3 - }, - "0xa14a26bb46e236da394da6b09a5b4cf737ce707b": { - "address": "0xa14a26bb46e236da394da6b09a5b4cf737ce707b", - "symbol": "WTAO", - "decimals": 18, - "name": "Wrapped TAO", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0xa14a26bb46e236da394da6b09a5b4cf737ce707b.png", - "aggregators": ["TraderJoe", "Socket", "Squid"], - "occurrences": 3 - }, - "0xccd3891c1452b7cb0e4632774b9365dc4ee24f20": { - "address": "0xccd3891c1452b7cb0e4632774b9365dc4ee24f20", - "symbol": "EDE", - "decimals": 18, - "name": "EDE", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0xccd3891c1452b7cb0e4632774b9365dc4ee24f20.png", - "aggregators": ["TraderJoe", "Rubic", "Rango"], - "occurrences": 3 - }, - "0xe4177c1400a8eee1799835dcde2489c6f0d5d616": { - "address": "0xe4177c1400a8eee1799835dcde2489c6f0d5d616", - "symbol": "CRAZYRABBIT", - "decimals": 18, - "name": "CRAZYRABBIT", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0xe4177c1400a8eee1799835dcde2489c6f0d5d616.png", - "aggregators": ["TraderJoe", "Rubic", "Rango"], - "occurrences": 3 - }, - "0xe66998533a1992ece9ea99cdf47686f4fc8458e0": { - "address": "0xe66998533a1992ece9ea99cdf47686f4fc8458e0", - "symbol": "JUSDC", - "decimals": 18, - "name": "Jones USDC", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0xe66998533a1992ece9ea99cdf47686f4fc8458e0.png", - "aggregators": ["TraderJoe", "Rubic", "Rango"], - "occurrences": 3 - }, - "0xf1a88250532a4a66a2420a8cbb434da82e1e2ca1": { - "address": "0xf1a88250532a4a66a2420a8cbb434da82e1e2ca1", - "symbol": "AGETH", - "decimals": 18, - "name": "agETHWrapper", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0xf1a88250532a4a66a2420a8cbb434da82e1e2ca1.png", - "aggregators": ["TraderJoe", "Socket", "Rubic"], - "occurrences": 3 - }, - "0xf36a65fd3b7df848860d174115f1864e6aa2db5e": { - "address": "0xf36a65fd3b7df848860d174115f1864e6aa2db5e", - "symbol": "SENUSD", - "decimals": 18, - "name": "Seneca USD", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0xf36a65fd3b7df848860d174115f1864e6aa2db5e.png", - "aggregators": ["TraderJoe", "Rubic", "Rango"], - "occurrences": 3 - }, - "0xf4acde4d938844751f34659c67056f7e69dbe85a": { - "address": "0xf4acde4d938844751f34659c67056f7e69dbe85a", - "symbol": "CLUTCH", - "decimals": 18, - "name": "Clutch", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0xf4acde4d938844751f34659c67056f7e69dbe85a.png", - "aggregators": ["TraderJoe", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x656b80b667a46869144047e6e6c0000c81610253": { - "address": "0x656b80b667a46869144047e6e6c0000c81610253", - "symbol": "ANGLE", - "decimals": 18, - "name": "ANGLE_arbitrum", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0x656b80b667a46869144047e6e6c0000c81610253.png", - "aggregators": ["LiFi", "Socket", "Rango"], - "occurrences": 3 - }, - "0x4e47951508fd4a4126f8ff9cf5e6fa3b7cc8e073": { - "address": "0x4e47951508fd4a4126f8ff9cf5e6fa3b7cc8e073", - "symbol": "FLUID", - "decimals": 18, - "name": "Fluid", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0x4e47951508fd4a4126f8ff9cf5e6fa3b7cc8e073.png", - "aggregators": ["LiFi", "Rubic", "Rango"], - "occurrences": 3 - }, - "0xfac38532829fdd744373fdcd4708ab90fa0c4078": { - "address": "0xfac38532829fdd744373fdcd4708ab90fa0c4078", - "symbol": "TLPT", - "decimals": 18, - "name": "TLPT", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0xfac38532829fdd744373fdcd4708ab90fa0c4078.png", - "aggregators": ["LiFi", "Rubic", "Rango"], - "occurrences": 3 - }, - "0xa6099b214e8d069911702bc92ef274f63c476c5a": { - "address": "0xa6099b214e8d069911702bc92ef274f63c476c5a", - "symbol": "ZENF", - "decimals": 18, - "name": "ZENF Token", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0xa6099b214e8d069911702bc92ef274f63c476c5a.png", - "aggregators": ["LiFi", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x3d48ae69a2f35d02d6f0c5e84cfe66be885f3963": { - "address": "0x3d48ae69a2f35d02d6f0c5e84cfe66be885f3963", - "symbol": "VIDYA", - "decimals": 18, - "name": "Vidya", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0x3d48ae69a2f35d02d6f0c5e84cfe66be885f3963.png", - "aggregators": ["LiFi", "Socket", "Rubic"], - "occurrences": 3 - }, - "0x0fc0c323cf76e188654d63d62e668cabec7a525b": { - "address": "0x0fc0c323cf76e188654d63d62e668cabec7a525b", - "symbol": "LMR", - "decimals": 8, - "name": "Lumerin", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0x0fc0c323cf76e188654d63d62e668cabec7a525b.png", - "aggregators": ["LiFi", "Socket", "Rubic"], - "occurrences": 3 - }, - "0xcab86f6fb6d1c2cbeeb97854a0c023446a075fe3": { - "address": "0xcab86f6fb6d1c2cbeeb97854a0c023446a075fe3", - "symbol": "DEETH", - "decimals": 18, - "name": "DEETH", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0xcab86f6fb6d1c2cbeeb97854a0c023446a075fe3.png", - "aggregators": ["LiFi", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x56b251d4b493ee3956e3f899d36b7290902d2326": { - "address": "0x56b251d4b493ee3956e3f899d36b7290902d2326", - "symbol": "MMF", - "decimals": 18, - "name": "Mad Meerkat Finance", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0x56b251d4b493ee3956e3f899d36b7290902d2326.png", - "aggregators": ["LiFi", "Rubic", "Rango"], - "occurrences": 3 - }, - "0xec13336bbd50790a00cdc0feddf11287eaf92529": { - "address": "0xec13336bbd50790a00cdc0feddf11287eaf92529", - "symbol": "GMUSD", - "decimals": 18, - "name": "gmUSD", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0xec13336bbd50790a00cdc0feddf11287eaf92529.png", - "aggregators": ["LiFi", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x9ef758ac000a354479e538b8b2f01b917b8e89e7": { - "address": "0x9ef758ac000a354479e538b8b2f01b917b8e89e7", - "symbol": "XDO", - "decimals": 18, - "name": "XDO", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0x9ef758ac000a354479e538b8b2f01b917b8e89e7.png", - "aggregators": ["LiFi", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x7e50c0c6dbd5e63cc81001f6c8cf1bf7010ef7c9": { - "address": "0x7e50c0c6dbd5e63cc81001f6c8cf1bf7010ef7c9", - "symbol": "MFG", - "decimals": 18, - "name": "SyncFab Smart Manufacturing Blockchain", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0x7e50c0c6dbd5e63cc81001f6c8cf1bf7010ef7c9.png", - "aggregators": ["LiFi", "Socket", "Rubic"], - "occurrences": 3 - }, - "0xce4db2ce8cca463f8aa1e2174c244ba4a8d672cb": { - "address": "0xce4db2ce8cca463f8aa1e2174c244ba4a8d672cb", - "symbol": "IQ", - "decimals": 18, - "name": "Everipedia IQ", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0xce4db2ce8cca463f8aa1e2174c244ba4a8d672cb.png", - "aggregators": ["LiFi", "Socket", "Rubic"], - "occurrences": 3 - }, - "0xc4be0798e5b5b1c15eda36d9b2d8c1a60717fa92": { - "address": "0xc4be0798e5b5b1c15eda36d9b2d8c1a60717fa92", - "symbol": "GOLD", - "decimals": 18, - "name": "Adventurer Gold", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0xc4be0798e5b5b1c15eda36d9b2d8c1a60717fa92.png", - "aggregators": ["LiFi", "Rubic", "Rango"], - "occurrences": 3 - }, - "0xd67a097dce9d4474737e6871684ae3c05460f571": { - "address": "0xd67a097dce9d4474737e6871684ae3c05460f571", - "symbol": "GND", - "decimals": 18, - "name": "GND", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0xd67a097dce9d4474737e6871684ae3c05460f571.png", - "aggregators": ["LiFi", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x250caff618cf205997309940c14c52b5dceb351e": { - "address": "0x250caff618cf205997309940c14c52b5dceb351e", - "symbol": "CROWD", - "decimals": 18, - "name": "CROWD", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0x250caff618cf205997309940c14c52b5dceb351e.png", - "aggregators": ["LiFi", "Rubic", "Rango"], - "occurrences": 3 - }, - "0xdaf69e281a30b15e387e27fb334c4116c0a87709": { - "address": "0xdaf69e281a30b15e387e27fb334c4116c0a87709", - "symbol": "DAO", - "decimals": 18, - "name": "DAO Maker", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0xdaf69e281a30b15e387e27fb334c4116c0a87709.png", - "aggregators": ["LiFi", "Socket", "Rubic"], - "occurrences": 3 - }, - "0xd6c0156e85decdf2983c7a2c4a3015ed268d6f8a": { - "address": "0xd6c0156e85decdf2983c7a2c4a3015ed268d6f8a", - "symbol": "ROSX", - "decimals": 18, - "name": "Roseon", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0xd6c0156e85decdf2983c7a2c4a3015ed268d6f8a.png", - "aggregators": ["LiFi", "Rubic", "Rango"], - "occurrences": 3 - }, - "0xe85411c030fb32a9d8b14bbbc6cb19417391f711": { - "address": "0xe85411c030fb32a9d8b14bbbc6cb19417391f711", - "symbol": "SUBTC", - "decimals": 18, - "name": "Sumerian BTC", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0xe85411c030fb32a9d8b14bbbc6cb19417391f711.png", - "aggregators": ["LiFi", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x867b1cd06039eb70385788a048b57f6d4fdc5dbb": { - "address": "0x867b1cd06039eb70385788a048b57f6d4fdc5dbb", - "symbol": "PSLVR", - "decimals": 18, - "name": "Poison.Finance Silver Potion", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0x867b1cd06039eb70385788a048b57f6d4fdc5dbb.png", - "aggregators": ["LiFi", "Rango", "SushiSwap"], - "occurrences": 3 - }, - "0xe656165d39419c03d588515c835d109e19221e1e": { - "address": "0xe656165d39419c03d588515c835d109e19221e1e", - "symbol": "PAMZN", - "decimals": 18, - "name": "Poison.Finance Amazon Potion", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0xe656165d39419c03d588515c835d109e19221e1e.png", - "aggregators": ["LiFi", "Rango", "SushiSwap"], - "occurrences": 3 - }, - "0xf8f636bb3be1feeb979e1ea281389b49cf3a6853": { - "address": "0xf8f636bb3be1feeb979e1ea281389b49cf3a6853", - "symbol": "PAAPL", - "decimals": 18, - "name": "Poison.Finance Apple Potion", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0xf8f636bb3be1feeb979e1ea281389b49cf3a6853.png", - "aggregators": ["LiFi", "Rango", "SushiSwap"], - "occurrences": 3 - }, - "0x870908873b6f940e025a7c6879678cb82ec6c9b6": { - "address": "0x870908873b6f940e025a7c6879678cb82ec6c9b6", - "symbol": "ZUNUSD", - "decimals": 18, - "name": "Zunami USD", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0x870908873b6f940e025a7c6879678cb82ec6c9b6.png", - "aggregators": ["LiFi", "Rubic", "Rango"], - "occurrences": 3 - }, - "0xdee46be9d0b207e5d88d2efd84a045e725a242f7": { - "address": "0xdee46be9d0b207e5d88d2efd84a045e725a242f7", - "symbol": "PEPE", - "decimals": 18, - "name": "Pepe", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0xdee46be9d0b207e5d88d2efd84a045e725a242f7.png", - "aggregators": ["Socket", "Rango", "SushiSwap"], - "occurrences": 3 - }, - "0x0ce45dd53affbb011884ef1866e0738f58ab7969": { - "address": "0x0ce45dd53affbb011884ef1866e0738f58ab7969", - "symbol": "CGETH.HASHKEY", - "decimals": 18, - "name": "cgETH Hashkey Cloud", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0x0ce45dd53affbb011884ef1866e0738f58ab7969.png", - "aggregators": ["Rubic", "Rango", "Sonarwatch"], - "occurrences": 3 - }, - "0x1045971c168b5294acbc8727a4f1c9e1af99f6d0": { - "address": "0x1045971c168b5294acbc8727a4f1c9e1af99f6d0", - "symbol": "FTN", - "decimals": 18, - "name": "Fasttoken", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0x1045971c168b5294acbc8727a4f1c9e1af99f6d0.png", - "aggregators": ["Rubic", "Rango", "Sonarwatch"], - "occurrences": 3 - }, - "0x98a5f77d1fec5d68c9a6decb715f11beaba84f38": { - "address": "0x98a5f77d1fec5d68c9a6decb715f11beaba84f38", - "symbol": "NSFW", - "decimals": 18, - "name": "Pleasure Coin", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0x98a5f77d1fec5d68c9a6decb715f11beaba84f38.png", - "aggregators": ["Rubic", "Rango", "SushiSwap"], - "occurrences": 3 - }, - "0x2e80259c9071b6176205ff5f5eb6f7ec8361b93f": { - "address": "0x2e80259c9071b6176205ff5f5eb6f7ec8361b93f", - "symbol": "HASH", - "decimals": 18, - "name": "HashDAO Token", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0x2e80259c9071b6176205ff5f5eb6f7ec8361b93f.png", - "aggregators": ["Rubic", "Squid", "Rango"], - "occurrences": 3 - }, - "0x53ce5f2a18a623317357d6366ec59b47cbb0060d": { - "address": "0x53ce5f2a18a623317357d6366ec59b47cbb0060d", - "symbol": "RBOT", - "decimals": 18, - "name": "Runbot", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0x53ce5f2a18a623317357d6366ec59b47cbb0060d.png", - "aggregators": ["Rubic", "Rango", "Sonarwatch"], - "occurrences": 3 - }, - "0x58cb98a966f62aa6f2190eb3aa03132a0c3de3d5": { - "address": "0x58cb98a966f62aa6f2190eb3aa03132a0c3de3d5", - "symbol": "OPEN", - "decimals": 18, - "name": "OpenWorld", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0x58cb98a966f62aa6f2190eb3aa03132a0c3de3d5.png", - "aggregators": ["Rubic", "Rango", "SushiSwap"], - "occurrences": 3 - }, - "0xa06a65032b78106ea47d122387e40e1fbcba942d": { - "address": "0xa06a65032b78106ea47d122387e40e1fbcba942d", - "symbol": "XBTC", - "decimals": 18, - "name": "xBTC", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0xa06a65032b78106ea47d122387e40e1fbcba942d.png", - "aggregators": ["Metamask"], - "occurrences": 1 - } - }, - "timestamp": 1779126362482 - }, - "0xa86a": { - "data": { - "0xb31f66aa3c1e785363f0875a1b74e27b85fd66c7": { - "address": "0xb31f66aa3c1e785363f0875a1b74e27b85fd66c7", - "symbol": "WAVAX", - "decimals": 18, - "name": "Wrapped AVAX", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/43114/0xb31f66aa3c1e785363f0875a1b74e27b85fd66c7.png", - "aggregators": [ - "TraderJoe", - "1inch", - "LiFi", - "TrustWallet", - "Socket", - "Rubic", - "Squid", - "Rango", - "Sonarwatch", - "SushiSwap" - ], - "occurrences": 10 - }, - "0xb97ef9ef8734c71904d8002f8b6bc66dd9c48a6e": { - "address": "0xb97ef9ef8734c71904d8002f8b6bc66dd9c48a6e", - "symbol": "USDC", - "decimals": 6, - "name": "USD Coin", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/43114/0xb97ef9ef8734c71904d8002f8b6bc66dd9c48a6e.png", - "aggregators": [ - "TraderJoe", - "1inch", - "LiFi", - "TrustWallet", - "Socket", - "Rubic", - "Squid", - "Rango", - "Sonarwatch", - "SushiSwap" - ], - "occurrences": 10 - }, - "0x9702230a8ea53601f5cd2dc00fdbc13d4df4a8c7": { - "address": "0x9702230a8ea53601f5cd2dc00fdbc13d4df4a8c7", - "symbol": "USDT", - "decimals": 6, - "name": "TetherToken", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/43114/0x9702230a8ea53601f5cd2dc00fdbc13d4df4a8c7.png", - "aggregators": [ - "TraderJoe", - "1inch", - "LiFi", - "TrustWallet", - "Socket", - "Rubic", - "Squid", - "Rango", - "Sonarwatch", - "SushiSwap" - ], - "occurrences": 10 - }, - "0x130966628846bfd36ff31a822705796e8cb8c18d": { - "address": "0x130966628846bfd36ff31a822705796e8cb8c18d", - "symbol": "MIM", - "decimals": 18, - "name": "Magic Internet Money", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/43114/0x130966628846bfd36ff31a822705796e8cb8c18d.png", - "aggregators": [ - "PangolinDex", - "1inch", - "LiFi", - "Socket", - "Rubic", - "Squid", - "Rango", - "Sonarwatch", - "SushiSwap" - ], - "occurrences": 9 - }, - "0x6e84a6216ea6dacc71ee8e6b0a5b7322eebc0fdd": { - "address": "0x6e84a6216ea6dacc71ee8e6b0a5b7322eebc0fdd", - "symbol": "JOE", - "decimals": 18, - "name": "JoeToken", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/43114/0x6e84a6216ea6dacc71ee8e6b0a5b7322eebc0fdd.png", - "aggregators": [ - "TraderJoe", - "1inch", - "LiFi", - "Socket", - "Rubic", - "Squid", - "Rango", - "Sonarwatch", - "SushiSwap" - ], - "occurrences": 9 - }, - "0xc7198437980c041c805a1edcba50c1ce5db95118": { - "address": "0xc7198437980c041c805a1edcba50c1ce5db95118", - "symbol": "USDT.E", - "decimals": 6, - "name": "Tether USD", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/43114/0xc7198437980c041c805a1edcba50c1ce5db95118.png", - "aggregators": [ - "TraderJoe", - "1inch", - "LiFi", - "TrustWallet", - "Socket", - "Rubic", - "Squid", - "Rango", - "Sonarwatch", - "SushiSwap" - ], - "occurrences": 10 - }, - "0xa7d7079b0fead91f3e65f86e8915cb59c1a4c664": { - "address": "0xa7d7079b0fead91f3e65f86e8915cb59c1a4c664", - "symbol": "USDC.E", - "decimals": 6, - "name": "USD Coin", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/43114/0xa7d7079b0fead91f3e65f86e8915cb59c1a4c664.png", - "aggregators": [ - "TraderJoe", - "1inch", - "LiFi", - "TrustWallet", - "Socket", - "Rubic", - "Squid", - "Rango", - "Sonarwatch", - "SushiSwap" - ], - "occurrences": 10 - }, - "0xd24c2ad096400b6fbcd2ad8b24e7acbc21a1da64": { - "address": "0xd24c2ad096400b6fbcd2ad8b24e7acbc21a1da64", - "symbol": "FRAX", - "decimals": 18, - "name": "Frax", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/43114/0xd24c2ad096400b6fbcd2ad8b24e7acbc21a1da64.png", - "aggregators": [ - "TraderJoe", - "1inch", - "LiFi", - "TrustWallet", - "Socket", - "Rubic", - "Squid", - "Rango", - "Sonarwatch", - "SushiSwap" - ], - "occurrences": 10 - }, - "0x60781c2586d68229fde47564546784ab3faca982": { - "address": "0x60781c2586d68229fde47564546784ab3faca982", - "symbol": "PNG", - "decimals": 18, - "name": "Pangolin", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/43114/0x60781c2586d68229fde47564546784ab3faca982.png", - "aggregators": [ - "TraderJoe", - "1inch", - "LiFi", - "TrustWallet", - "Socket", - "Rubic", - "Squid", - "Rango", - "Sonarwatch" - ], - "occurrences": 9 - }, - "0x214db107654ff987ad859f34125307783fc8e387": { - "address": "0x214db107654ff987ad859f34125307783fc8e387", - "symbol": "FXS", - "decimals": 18, - "name": "Frax Share", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/43114/0x214db107654ff987ad859f34125307783fc8e387.png", - "aggregators": [ - "TraderJoe", - "1inch", - "LiFi", - "TrustWallet", - "Socket", - "Rubic", - "Rango", - "Sonarwatch", - "SushiSwap" - ], - "occurrences": 9 - }, - "0x62edc0692bd897d2295872a9ffcac5425011c661": { - "address": "0x62edc0692bd897d2295872a9ffcac5425011c661", - "symbol": "GMX", - "decimals": 18, - "name": "GMX", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/43114/0x62edc0692bd897d2295872a9ffcac5425011c661.png", - "aggregators": [ - "TraderJoe", - "1inch", - "LiFi", - "TrustWallet", - "Socket", - "Rubic", - "Squid", - "Rango", - "SushiSwap" - ], - "occurrences": 9 - }, - "0x59414b3089ce2af0010e7523dea7e2b35d776ec7": { - "address": "0x59414b3089ce2af0010e7523dea7e2b35d776ec7", - "symbol": "YAK", - "decimals": 18, - "name": "Yield Yak", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/43114/0x59414b3089ce2af0010e7523dea7e2b35d776ec7.png", - "aggregators": [ - "TraderJoe", - "1inch", - "LiFi", - "Socket", - "Rubic", - "Squid", - "Rango", - "Sonarwatch" - ], - "occurrences": 8 - }, - "0xd1c3f94de7e5b45fa4edbba472491a9f4b166fc4": { - "address": "0xd1c3f94de7e5b45fa4edbba472491a9f4b166fc4", - "symbol": "XAVA", - "decimals": 18, - "name": "Avalaunch", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/43114/0xd1c3f94de7e5b45fa4edbba472491a9f4b166fc4.png", - "aggregators": [ - "TraderJoe", - "1inch", - "LiFi", - "Socket", - "Rubic", - "Squid", - "Rango", - "Sonarwatch" - ], - "occurrences": 8 - }, - "0xa32608e873f9ddef944b24798db69d80bbb4d1ed": { - "address": "0xa32608e873f9ddef944b24798db69d80bbb4d1ed", - "symbol": "CRA", - "decimals": 18, - "name": "Crabada", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/43114/0xa32608e873f9ddef944b24798db69d80bbb4d1ed.png", - "aggregators": [ - "PangolinDex", - "1inch", - "Socket", - "Rubic", - "Squid", - "Rango", - "Sonarwatch" - ], - "occurrences": 7 - }, - "0x22d4002028f537599be9f666d1c4fa138522f9c8": { - "address": "0x22d4002028f537599be9f666d1c4fa138522f9c8", - "symbol": "PTP", - "decimals": 18, - "name": "Platypus Finance", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/43114/0x22d4002028f537599be9f666d1c4fa138522f9c8.png", - "aggregators": [ - "PangolinDex", - "1inch", - "Socket", - "Rubic", - "Squid", - "Rango", - "Sonarwatch" - ], - "occurrences": 7 - }, - "0xec3492a2508ddf4fdc0cd76f31f340b30d1793e6": { - "address": "0xec3492a2508ddf4fdc0cd76f31f340b30d1793e6", - "symbol": "CLY", - "decimals": 18, - "name": "Colony Token", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/43114/0xec3492a2508ddf4fdc0cd76f31f340b30d1793e6.png", - "aggregators": [ - "TraderJoe", - "1inch", - "Socket", - "Rubic", - "Squid", - "Rango" - ], - "occurrences": 6 - }, - "0xd586e7f844cea2f87f50152665bcbc2c279d8d70": { - "address": "0xd586e7f844cea2f87f50152665bcbc2c279d8d70", - "symbol": "DAI.E", - "decimals": 18, - "name": "Dai Stablecoin", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/43114/0xd586e7f844cea2f87f50152665bcbc2c279d8d70.png", - "aggregators": [ - "TraderJoe", - "1inch", - "LiFi", - "TrustWallet", - "Socket", - "Rubic", - "Squid", - "Rango", - "Sonarwatch", - "SushiSwap" - ], - "occurrences": 10 - }, - "0x5947bb275c521040051d82396192181b413227a3": { - "address": "0x5947bb275c521040051d82396192181b413227a3", - "symbol": "LINK.E", - "decimals": 18, - "name": "Chainlink Token", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/43114/0x5947bb275c521040051d82396192181b413227a3.png", - "aggregators": [ - "TraderJoe", - "1inch", - "LiFi", - "TrustWallet", - "Socket", - "Rubic", - "Squid", - "Rango", - "Sonarwatch", - "SushiSwap" - ], - "occurrences": 10 - }, - "0xce1bffbd5374dac86a2893119683f4911a2f7814": { - "address": "0xce1bffbd5374dac86a2893119683f4911a2f7814", - "symbol": "SPELL", - "decimals": 18, - "name": "Spell Token", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/43114/0xce1bffbd5374dac86a2893119683f4911a2f7814.png", - "aggregators": [ - "PangolinDex", - "1inch", - "LiFi", - "TrustWallet", - "Socket", - "Rubic", - "Squid", - "Rango", - "Sonarwatch", - "SushiSwap" - ], - "occurrences": 10 - }, - "0x49d5c2bdffac6ce2bfdb6640f4f80f226bc10bab": { - "address": "0x49d5c2bdffac6ce2bfdb6640f4f80f226bc10bab", - "symbol": "WETH", - "decimals": 18, - "name": "Wrapped Ether", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/43114/0x49d5c2bdffac6ce2bfdb6640f4f80f226bc10bab.png", - "aggregators": [ - "TraderJoe", - "1inch", - "LiFi", - "Socket", - "Rubic", - "Squid", - "Rango", - "Sonarwatch", - "SushiSwap" - ], - "occurrences": 9 - }, - "0x8729438eb15e2c8b576fcc6aecda6a148776c0f5": { - "address": "0x8729438eb15e2c8b576fcc6aecda6a148776c0f5", - "symbol": "QI", - "decimals": 18, - "name": "BENQI", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/43114/0x8729438eb15e2c8b576fcc6aecda6a148776c0f5.png", - "aggregators": [ - "TraderJoe", - "1inch", - "LiFi", - "Socket", - "Rubic", - "Squid", - "Rango", - "Sonarwatch" - ], - "occurrences": 8 - }, - "0x2f6f07cdcf3588944bf4c42ac74ff24bf56e7590": { - "address": "0x2f6f07cdcf3588944bf4c42ac74ff24bf56e7590", - "symbol": "STG", - "decimals": 18, - "name": "StargateToken", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/43114/0x2f6f07cdcf3588944bf4c42ac74ff24bf56e7590.png", - "aggregators": [ - "TraderJoe", - "1inch", - "LiFi", - "Socket", - "Rubic", - "Rango", - "Sonarwatch", - "SushiSwap" - ], - "occurrences": 8 - }, - "0x321e7092a180bb43555132ec53aaa65a5bf84251": { - "address": "0x321e7092a180bb43555132ec53aaa65a5bf84251", - "symbol": "GOHM", - "decimals": 18, - "name": "Governance OHM", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/43114/0x321e7092a180bb43555132ec53aaa65a5bf84251.png", - "aggregators": [ - "TraderJoe", - "1inch", - "LiFi", - "Socket", - "Rubic", - "Squid", - "Rango", - "Sonarwatch" - ], - "occurrences": 8 - }, - "0x7761e2338b35bceb6bda6ce477ef012bde7ae611": { - "address": "0x7761e2338b35bceb6bda6ce477ef012bde7ae611", - "symbol": "EGG", - "decimals": 18, - "name": "Chikn Egg", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/43114/0x7761e2338b35bceb6bda6ce477ef012bde7ae611.png", - "aggregators": [ - "TraderJoe", - "1inch", - "Socket", - "Rubic", - "Squid", - "Rango", - "Sonarwatch" - ], - "occurrences": 7 - }, - "0x2b2c81e08f1af8835a78bb2a90ae924ace0ea4be": { - "address": "0x2b2c81e08f1af8835a78bb2a90ae924ace0ea4be", - "symbol": "SAVAX", - "decimals": 18, - "name": "BENQI Liquid Staked AVAX", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/43114/0x2b2c81e08f1af8835a78bb2a90ae924ace0ea4be.png", - "aggregators": [ - "TraderJoe", - "1inch", - "LiFi", - "Rubic", - "Squid", - "Rango", - "Sonarwatch" - ], - "occurrences": 7 - }, - "0xc38f41a296a4493ff429f1238e030924a1542e50": { - "address": "0xc38f41a296a4493ff429f1238e030924a1542e50", - "symbol": "SNOB", - "decimals": 18, - "name": "Snowball", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/43114/0xc38f41a296a4493ff429f1238e030924a1542e50.png", - "aggregators": [ - "PangolinDex", - "1inch", - "LiFi", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 7 - }, - "0xe896cdeaac9615145c0ca09c8cd5c25bced6384c": { - "address": "0xe896cdeaac9615145c0ca09c8cd5c25bced6384c", - "symbol": "PEFI", - "decimals": 18, - "name": "Penguin Finance", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/43114/0xe896cdeaac9615145c0ca09c8cd5c25bced6384c.png", - "aggregators": [ - "PangolinDex", - "1inch", - "LiFi", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 7 - }, - "0x50b7545627a5162f82a992c33b87adc75187b218": { - "address": "0x50b7545627a5162f82a992c33b87adc75187b218", - "symbol": "WBTC.E", - "decimals": 8, - "name": "Wrapped BTC", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/43114/0x50b7545627a5162f82a992c33b87adc75187b218.png", - "aggregators": [ - "TraderJoe", - "1inch", - "LiFi", - "TrustWallet", - "Socket", - "Rubic", - "Squid", - "Rango", - "Sonarwatch", - "SushiSwap" - ], - "occurrences": 10 - }, - "0x63a72806098bd3d9520cc43356dd78afe5d386d9": { - "address": "0x63a72806098bd3d9520cc43356dd78afe5d386d9", - "symbol": "AAVE.E", - "decimals": 18, - "name": "Aave Token", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/43114/0x63a72806098bd3d9520cc43356dd78afe5d386d9.png", - "aggregators": [ - "TraderJoe", - "1inch", - "LiFi", - "TrustWallet", - "Socket", - "Rubic", - "Squid", - "Rango", - "Sonarwatch", - "SushiSwap" - ], - "occurrences": 10 - }, - "0x152b9d0fdc40c096757f570a51e494bd4b943e50": { - "address": "0x152b9d0fdc40c096757f570a51e494bd4b943e50", - "symbol": "BTC.B", - "decimals": 8, - "name": "Bitcoin", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/43114/0x152b9d0fdc40c096757f570a51e494bd4b943e50.png", - "aggregators": [ - "TraderJoe", - "1inch", - "LiFi", - "Rubic", - "Squid", - "Rango", - "Sonarwatch", - "SushiSwap" - ], - "occurrences": 8 - }, - "0x264c1383ea520f73dd837f915ef3a732e204a493": { - "address": "0x264c1383ea520f73dd837f915ef3a732e204a493", - "symbol": "WBNB", - "decimals": 18, - "name": "Wrapped BNB", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/43114/0x264c1383ea520f73dd837f915ef3a732e204a493.png", - "aggregators": [ - "PangolinDex", - "1inch", - "LiFi", - "Socket", - "Rubic", - "Squid", - "Rango", - "Sonarwatch" - ], - "occurrences": 8 - }, - "0x1c20e891bab6b1727d14da358fae2984ed9b59eb": { - "address": "0x1c20e891bab6b1727d14da358fae2984ed9b59eb", - "symbol": "TUSD", - "decimals": 18, - "name": "TrueUSD", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/43114/0x1c20e891bab6b1727d14da358fae2984ed9b59eb.png", - "aggregators": [ - "PangolinDex", - "1inch", - "LiFi", - "TrustWallet", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 8 - }, - "0x8f47416cae600bccf9530e9f3aeaa06bdd1caa79": { - "address": "0x8f47416cae600bccf9530e9f3aeaa06bdd1caa79", - "symbol": "THOR", - "decimals": 18, - "name": "ThorFi", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/43114/0x8f47416cae600bccf9530e9f3aeaa06bdd1caa79.png", - "aggregators": [ - "TraderJoe", - "1inch", - "LiFi", - "Socket", - "Rubic", - "Squid", - "Rango", - "Sonarwatch" - ], - "occurrences": 8 - }, - "0xb54f16fb19478766a268f172c9480f8da1a7c9c3": { - "address": "0xb54f16fb19478766a268f172c9480f8da1a7c9c3", - "symbol": "TIME", - "decimals": 9, - "name": "Time", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/43114/0xb54f16fb19478766a268f172c9480f8da1a7c9c3.png", - "aggregators": [ - "PangolinDex", - "LiFi", - "Socket", - "Rubic", - "Rango", - "Sonarwatch", - "SushiSwap" - ], - "occurrences": 7 - }, - "0xed2b42d3c9c6e97e11755bb37df29b6375ede3eb": { - "address": "0xed2b42d3c9c6e97e11755bb37df29b6375ede3eb", - "symbol": "HON", - "decimals": 18, - "name": "Heroes of NFT", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/43114/0xed2b42d3c9c6e97e11755bb37df29b6375ede3eb.png", - "aggregators": [ - "TraderJoe", - "1inch", - "LiFi", - "Rubic", - "Squid", - "Rango", - "Sonarwatch" - ], - "occurrences": 7 - }, - "0x544c42fbb96b39b21df61cf322b5edc285ee7429": { - "address": "0x544c42fbb96b39b21df61cf322b5edc285ee7429", - "symbol": "INSUR", - "decimals": 18, - "name": "InsurAce", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/43114/0x544c42fbb96b39b21df61cf322b5edc285ee7429.png", - "aggregators": [ - "PangolinDex", - "1inch", - "LiFi", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 7 - }, - "0x100cc3a819dd3e8573fd2e46d1e66ee866068f30": { - "address": "0x100cc3a819dd3e8573fd2e46d1e66ee866068f30", - "symbol": "DCAU", - "decimals": 18, - "name": "Dragon Crypto Aurum", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/43114/0x100cc3a819dd3e8573fd2e46d1e66ee866068f30.png", - "aggregators": [ - "TraderJoe", - "1inch", - "LiFi", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 7 - }, - "0xfcc6ce74f4cd7edef0c5429bb99d38a3608043a5": { - "address": "0xfcc6ce74f4cd7edef0c5429bb99d38a3608043a5", - "symbol": "FIRE", - "decimals": 18, - "name": "The Phoenix", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/43114/0xfcc6ce74f4cd7edef0c5429bb99d38a3608043a5.png", - "aggregators": [ - "PangolinDex", - "LiFi", - "Socket", - "Rubic", - "Squid", - "Rango", - "Sonarwatch" - ], - "occurrences": 7 - }, - "0x346a59146b9b4a77100d369a3d18e8007a9f46a6": { - "address": "0x346a59146b9b4a77100d369a3d18e8007a9f46a6", - "symbol": "AVAI", - "decimals": 18, - "name": "Orca AVAI", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/43114/0x346a59146b9b4a77100d369a3d18e8007a9f46a6.png", - "aggregators": [ - "PangolinDex", - "1inch", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 6 - }, - "0x26debd39d5ed069770406fca10a0e4f8d2c743eb": { - "address": "0x26debd39d5ed069770406fca10a0e4f8d2c743eb", - "symbol": "WGUN", - "decimals": 18, - "name": "Wrapped GUN", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/43114/0x26debd39d5ed069770406fca10a0e4f8d2c743eb.png", - "aggregators": [ - "TraderJoe", - "LiFi", - "Rubic", - "Squid", - "Rango", - "Sonarwatch" - ], - "occurrences": 6 - }, - "0x9c9e5fd8bbc25984b178fdce6117defa39d2db39": { - "address": "0x9c9e5fd8bbc25984b178fdce6117defa39d2db39", - "symbol": "BUSD", - "decimals": 18, - "name": "BUSD Token", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/43114/0x9c9e5fd8bbc25984b178fdce6117defa39d2db39.png", - "aggregators": [ - "PangolinDex", - "LiFi", - "Socket", - "Rubic", - "Rango", - "SushiSwap" - ], - "occurrences": 6 - }, - "0x01c2086facfd7aa38f69a6bd8c91bef3bb5adfca": { - "address": "0x01c2086facfd7aa38f69a6bd8c91bef3bb5adfca", - "symbol": "YAY", - "decimals": 18, - "name": "YAY Network", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/43114/0x01c2086facfd7aa38f69a6bd8c91bef3bb5adfca.png", - "aggregators": [ - "PangolinDex", - "1inch", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 6 - }, - "0x027dbca046ca156de9622cd1e2d907d375e53aa7": { - "address": "0x027dbca046ca156de9622cd1e2d907d375e53aa7", - "symbol": "AMPL", - "decimals": 9, - "name": "Ampleforth", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/43114/0x027dbca046ca156de9622cd1e2d907d375e53aa7.png", - "aggregators": [ - "PangolinDex", - "1inch", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 6 - }, - "0x637afeff75ca669ff92e4570b14d6399a658902f": { - "address": "0x637afeff75ca669ff92e4570b14d6399a658902f", - "symbol": "COOK", - "decimals": 18, - "name": "Cook", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/43114/0x637afeff75ca669ff92e4570b14d6399a658902f.png", - "aggregators": [ - "PangolinDex", - "1inch", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 6 - }, - "0x44754455564474a89358b2c2265883df993b12f0": { - "address": "0x44754455564474a89358b2c2265883df993b12f0", - "symbol": "ZEE", - "decimals": 18, - "name": "ZeroSwap", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/43114/0x44754455564474a89358b2c2265883df993b12f0.png", - "aggregators": [ - "PangolinDex", - "LiFi", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 6 - }, - "0x564a341df6c126f90cf3ecb92120fd7190acb401": { - "address": "0x564a341df6c126f90cf3ecb92120fd7190acb401", - "symbol": "TRYB", - "decimals": 6, - "name": "BiLira", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/43114/0x564a341df6c126f90cf3ecb92120fd7190acb401.png", - "aggregators": [ - "PangolinDex", - "LiFi", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 6 - }, - "0xb1466d4cf0dcfc0bcddcf3500f473cdacb88b56d": { - "address": "0xb1466d4cf0dcfc0bcddcf3500f473cdacb88b56d", - "symbol": "WET", - "decimals": 18, - "name": "Weble Ecosystem", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/43114/0xb1466d4cf0dcfc0bcddcf3500f473cdacb88b56d.png", - "aggregators": [ - "PangolinDex", - "LiFi", - "Rubic", - "Squid", - "Rango", - "Sonarwatch" - ], - "occurrences": 6 - }, - "0x8ae8be25c23833e0a01aa200403e826f611f9cd2": { - "address": "0x8ae8be25c23833e0a01aa200403e826f611f9cd2", - "symbol": "CRAFT", - "decimals": 18, - "name": "TaleCraft", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/43114/0x8ae8be25c23833e0a01aa200403e826f611f9cd2.png", - "aggregators": [ - "PangolinDex", - "LiFi", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 6 - }, - "0x9e3ca00f2d4a9e5d4f0add0900de5f15050812cf": { - "address": "0x9e3ca00f2d4a9e5d4f0add0900de5f15050812cf", - "symbol": "NFTD", - "decimals": 18, - "name": "NFTrade", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/43114/0x9e3ca00f2d4a9e5d4f0add0900de5f15050812cf.png", - "aggregators": [ - "PangolinDex", - "1inch", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 6 - }, - "0xc7f4debc8072e23fe9259a5c0398326d8efb7f5c": { - "address": "0xc7f4debc8072e23fe9259a5c0398326d8efb7f5c", - "symbol": "HEC", - "decimals": 18, - "name": "HeroesChained", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/43114/0xc7f4debc8072e23fe9259a5c0398326d8efb7f5c.png", - "aggregators": [ - "PangolinDex", - "LiFi", - "Rubic", - "Squid", - "Rango", - "Sonarwatch" - ], - "occurrences": 6 - }, - "0xf891214fdcf9cdaa5fdc42369ee4f27f226adad6": { - "address": "0xf891214fdcf9cdaa5fdc42369ee4f27f226adad6", - "symbol": "IME", - "decimals": 18, - "name": "Imperium Empires", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/43114/0xf891214fdcf9cdaa5fdc42369ee4f27f226adad6.png", - "aggregators": [ - "PangolinDex", - "Rubic", - "Squid", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x1db749847c4abb991d8b6032102383e6bfd9b1c7": { - "address": "0x1db749847c4abb991d8b6032102383e6bfd9b1c7", - "symbol": "DON", - "decimals": 18, - "name": "Dogeon", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/43114/0x1db749847c4abb991d8b6032102383e6bfd9b1c7.png", - "aggregators": [ - "PangolinDex", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x6985884c4392d348587b19cb9eaaf157f13271cd": { - "address": "0x6985884c4392d348587b19cb9eaaf157f13271cd", - "symbol": "ZRO", - "decimals": 18, - "name": "LayerZero", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/43114/0x6985884c4392d348587b19cb9eaaf157f13271cd.png", - "aggregators": [ - "TraderJoe", - "1inch", - "LiFi", - "Socket", - "Rubic", - "Squid", - "Rango", - "Sonarwatch", - "SushiSwap" - ], - "occurrences": 9 - }, - "0xb599c3590f42f8f995ecfa0f85d2980b76862fc1": { - "address": "0xb599c3590f42f8f995ecfa0f85d2980b76862fc1", - "symbol": "UST", - "decimals": 6, - "name": "UST (Portal)", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/43114/0xb599c3590f42f8f995ecfa0f85d2980b76862fc1.png", - "aggregators": [ - "PangolinDex", - "LiFi", - "TrustWallet", - "Socket", - "Rubic", - "Squid", - "Rango", - "Sonarwatch" - ], - "occurrences": 8 - }, - "0x1f1e7c893855525b303f99bdf5c3c05be09ca251": { - "address": "0x1f1e7c893855525b303f99bdf5c3c05be09ca251", - "symbol": "SYN", - "decimals": 18, - "name": "Synapse", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/43114/0x1f1e7c893855525b303f99bdf5c3c05be09ca251.png", - "aggregators": [ - "TraderJoe", - "1inch", - "LiFi", - "Socket", - "Rubic", - "Squid", - "Rango", - "Sonarwatch" - ], - "occurrences": 8 - }, - "0xa25eaf2906fa1a3a13edac9b9657108af7b703e3": { - "address": "0xa25eaf2906fa1a3a13edac9b9657108af7b703e3", - "symbol": "GGAVAX", - "decimals": 18, - "name": "GoGoPool ggAVAX", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/43114/0xa25eaf2906fa1a3a13edac9b9657108af7b703e3.png", - "aggregators": [ - "TraderJoe", - "1inch", - "LiFi", - "Rubic", - "Squid", - "Rango", - "Sonarwatch" - ], - "occurrences": 7 - }, - "0x0da67235dd5787d67955420c84ca1cecd4e5bb3b": { - "address": "0x0da67235dd5787d67955420c84ca1cecd4e5bb3b", - "symbol": "WMEMO", - "decimals": 18, - "name": "Wrapped Memo", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/43114/0x0da67235dd5787d67955420c84ca1cecd4e5bb3b.png", - "aggregators": [ - "CoinGecko", - "LiFi", - "Socket", - "Rubic", - "Rango", - "Sonarwatch", - "SushiSwap" - ], - "occurrences": 7 - }, - "0xeeeeeb57642040be42185f49c52f7e9b38f8eeee": { - "address": "0xeeeeeb57642040be42185f49c52f7e9b38f8eeee", - "symbol": "ELK", - "decimals": 18, - "name": "Elk Finance", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/43114/0xeeeeeb57642040be42185f49c52f7e9b38f8eeee.png", - "aggregators": [ - "CoinGecko", - "1inch", - "LiFi", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 7 - }, - "0xf14f4ce569cb3679e99d5059909e23b07bd2f387": { - "address": "0xf14f4ce569cb3679e99d5059909e23b07bd2f387", - "symbol": "NXUSD", - "decimals": 18, - "name": "NXUSD", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/43114/0xf14f4ce569cb3679e99d5059909e23b07bd2f387.png", - "aggregators": [ - "CoinGecko", - "1inch", - "LiFi", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 7 - }, - "0x5c49b268c9841aff1cc3b0a418ff5c3442ee3f3b": { - "address": "0x5c49b268c9841aff1cc3b0a418ff5c3442ee3f3b", - "symbol": "MIMATIC", - "decimals": 18, - "name": "MAI (Avalanche)", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/43114/0x5c49b268c9841aff1cc3b0a418ff5c3442ee3f3b.png", - "aggregators": [ - "PangolinDex", - "LiFi", - "Socket", - "Rubic", - "Squid", - "Rango", - "Sonarwatch" - ], - "occurrences": 7 - }, - "0xfcde4a87b8b6fa58326bb462882f1778158b02f1": { - "address": "0xfcde4a87b8b6fa58326bb462882f1778158b02f1", - "symbol": "WXT", - "decimals": 18, - "name": "WXT Token", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/43114/0xfcde4a87b8b6fa58326bb462882f1778158b02f1.png", - "aggregators": [ - "CoinGecko", - "1inch", - "LiFi", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 7 - }, - "0x323665443cef804a3b5206103304bd4872ea4253": { - "address": "0x323665443cef804a3b5206103304bd4872ea4253", - "symbol": "USDV", - "decimals": 6, - "name": "USDV", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/43114/0x323665443cef804a3b5206103304bd4872ea4253.png", - "aggregators": [ - "TraderJoe", - "LiFi", - "Socket", - "Rubic", - "Rango", - "Sonarwatch", - "SushiSwap" - ], - "occurrences": 7 - }, - "0xb2a85c5ecea99187a977ac34303b80acbddfa208": { - "address": "0xb2a85c5ecea99187a977ac34303b80acbddfa208", - "symbol": "ROCO", - "decimals": 18, - "name": "Roco Finance", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/43114/0xb2a85c5ecea99187a977ac34303b80acbddfa208.png", - "aggregators": [ - "PangolinDex", - "1inch", - "LiFi", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 6 - }, - "0xb279f8dd152b99ec1d84a489d32c35bc0c7f5674": { - "address": "0xb279f8dd152b99ec1d84a489d32c35bc0c7f5674", - "symbol": "STEAK", - "decimals": 18, - "name": "SteakHut Finance", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/43114/0xb279f8dd152b99ec1d84a489d32c35bc0c7f5674.png", - "aggregators": [ - "TraderJoe", - "Socket", - "Rubic", - "Squid", - "Rango", - "Sonarwatch" - ], - "occurrences": 6 - }, - "0xab592d197acc575d16c3346f4eb70c703f308d1e": { - "address": "0xab592d197acc575d16c3346f4eb70c703f308d1e", - "symbol": "FEED", - "decimals": 18, - "name": "chikn feed", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/43114/0xab592d197acc575d16c3346f4eb70c703f308d1e.png", - "aggregators": [ - "TraderJoe", - "1inch", - "Rubic", - "Squid", - "Rango", - "Sonarwatch" - ], - "occurrences": 6 - }, - "0xe8385cecb013561b69beb63ff59f4d10734881f3": { - "address": "0xe8385cecb013561b69beb63ff59f4d10734881f3", - "symbol": "GEC", - "decimals": 18, - "name": "Gecko Inu", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/43114/0xe8385cecb013561b69beb63ff59f4d10734881f3.png", - "aggregators": [ - "TraderJoe", - "Socket", - "Rubic", - "Squid", - "Rango", - "Sonarwatch" - ], - "occurrences": 6 - }, - "0xacfb898cff266e53278cc0124fc2c7c94c8cb9a5": { - "address": "0xacfb898cff266e53278cc0124fc2c7c94c8cb9a5", - "symbol": "NOCHILL", - "decimals": 18, - "name": "AVAX HAS NO CHILL", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/43114/0xacfb898cff266e53278cc0124fc2c7c94c8cb9a5.png", - "aggregators": [ - "TraderJoe", - "LiFi", - "Rubic", - "Squid", - "Rango", - "Sonarwatch" - ], - "occurrences": 6 - }, - "0x65378b697853568da9ff8eab60c13e1ee9f4a654": { - "address": "0x65378b697853568da9ff8eab60c13e1ee9f4a654", - "symbol": "HUSKY", - "decimals": 18, - "name": "Husky Avax", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/43114/0x65378b697853568da9ff8eab60c13e1ee9f4a654.png", - "aggregators": [ - "TraderJoe", - "1inch", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 6 - }, - "0xd18555a6c2fda350069735419900478eec4abd96": { - "address": "0xd18555a6c2fda350069735419900478eec4abd96", - "symbol": "ALVA", - "decimals": 18, - "name": "Alvara Protocol", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/43114/0xd18555a6c2fda350069735419900478eec4abd96.png", - "aggregators": [ - "CoinGecko", - "Socket", - "Rubic", - "Squid", - "Rango", - "Sonarwatch" - ], - "occurrences": 6 - }, - "0x431d5dff03120afa4bdf332c61a6e1766ef37bdb": { - "address": "0x431d5dff03120afa4bdf332c61a6e1766ef37bdb", - "symbol": "JPYC", - "decimals": 18, - "name": "JPY Coin", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/43114/0x431d5dff03120afa4bdf332c61a6e1766ef37bdb.png", - "aggregators": [ - "PangolinDex", - "LiFi", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 6 - }, - "0x1b88d7ad51626044ec62ef9803ea264da4442f32": { - "address": "0x1b88d7ad51626044ec62ef9803ea264da4442f32", - "symbol": "ZOO", - "decimals": 18, - "name": "ZooKeeper", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/43114/0x1b88d7ad51626044ec62ef9803ea264da4442f32.png", - "aggregators": [ - "TraderJoe", - "Socket", - "Rubic", - "Squid", - "Rango", - "Sonarwatch" - ], - "occurrences": 6 - }, - "0xb0a6e056b587d0a85640b39b1cb44086f7a26a1e": { - "address": "0xb0a6e056b587d0a85640b39b1cb44086f7a26a1e", - "symbol": "ODDZ", - "decimals": 18, - "name": "Oddz", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/43114/0xb0a6e056b587d0a85640b39b1cb44086f7a26a1e.png", - "aggregators": [ - "PangolinDex", - "TrustWallet", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 6 - }, - "0xfc6da929c031162841370af240dec19099861d3b": { - "address": "0xfc6da929c031162841370af240dec19099861d3b", - "symbol": "DOMI", - "decimals": 18, - "name": "DOMI", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/43114/0xfc6da929c031162841370af240dec19099861d3b.png", - "aggregators": [ - "TraderJoe", - "1inch", - "LiFi", - "Socket", - "Rubic", - "Rango" - ], - "occurrences": 6 - }, - "0xc1d02e488a9ce2481bfdcd797d5373dd2e70a9c2": { - "address": "0xc1d02e488a9ce2481bfdcd797d5373dd2e70a9c2", - "symbol": "SHAKE", - "decimals": 18, - "name": "Spaceswap SHAKE", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/43114/0xc1d02e488a9ce2481bfdcd797d5373dd2e70a9c2.png", - "aggregators": [ - "PangolinDex", - "LiFi", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 6 - }, - "0xcf8419a615c57511807236751c0af38db4ba3351": { - "address": "0xcf8419a615c57511807236751c0af38db4ba3351", - "symbol": "AXIAL", - "decimals": 18, - "name": "Axial Token", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/43114/0xcf8419a615c57511807236751c0af38db4ba3351.png", - "aggregators": [ - "PangolinDex", - "1inch", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 6 - }, - "0x35a7341ae0adb31cb210524d4d02563c061feac5": { - "address": "0x35a7341ae0adb31cb210524d4d02563c061feac5", - "symbol": "WOOF", - "decimals": 18, - "name": "Woof", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/43114/0x35a7341ae0adb31cb210524d4d02563c061feac5.png", - "aggregators": [ - "TraderJoe", - "Rubic", - "Squid", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x5817d4f0b62a59b17f75207da1848c2ce75e7af4": { - "address": "0x5817d4f0b62a59b17f75207da1848c2ce75e7af4", - "symbol": "VTX", - "decimals": 18, - "name": "VTX", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/43114/0x5817d4f0b62a59b17f75207da1848c2ce75e7af4.png", - "aggregators": ["TraderJoe", "LiFi", "Socket", "Rubic", "Rango"], - "occurrences": 5 - }, - "0x99f2bdf00acd067c65a79a0b6a3914c555196ea4": { - "address": "0x99f2bdf00acd067c65a79a0b6a3914c555196ea4", - "symbol": "KULA", - "decimals": 18, - "name": "Kula", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/43114/0x99f2bdf00acd067c65a79a0b6a3914c555196ea4.png", - "aggregators": [ - "CoinGecko", - "Rubic", - "Squid", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x0f669808d88b2b0b3d23214dcd2a1cc6a8b1b5cd": { - "address": "0x0f669808d88b2b0b3d23214dcd2a1cc6a8b1b5cd", - "symbol": "BLUB", - "decimals": 18, - "name": "Blub", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/43114/0x0f669808d88b2b0b3d23214dcd2a1cc6a8b1b5cd.png", - "aggregators": [ - "TraderJoe", - "Rubic", - "Squid", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x5a15bdcf9a3a8e799fa4381e666466a516f2d9c8": { - "address": "0x5a15bdcf9a3a8e799fa4381e666466a516f2d9c8", - "symbol": "SLIME", - "decimals": 18, - "name": "Snail Trail", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/43114/0x5a15bdcf9a3a8e799fa4381e666466a516f2d9c8.png", - "aggregators": [ - "TraderJoe", - "Rubic", - "Squid", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0xad4cb79293322c07973ee83aed5df66a53214dc6": { - "address": "0xad4cb79293322c07973ee83aed5df66a53214dc6", - "symbol": "SHELL", - "decimals": 18, - "name": "Stargate Bridged Shell (Avalanche)", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/43114/0xad4cb79293322c07973ee83aed5df66a53214dc6.png", - "aggregators": [ - "CoinGecko", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x5ac04b69bde6f67c0bd5d6ba6fd5d816548b066a": { - "address": "0x5ac04b69bde6f67c0bd5d6ba6fd5d816548b066a", - "symbol": "TECH", - "decimals": 18, - "name": "NumberGoUpTech", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/43114/0x5ac04b69bde6f67c0bd5d6ba6fd5d816548b066a.png", - "aggregators": [ - "TraderJoe", - "Rubic", - "Squid", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x4fbf0429599460d327bd5f55625e30e4fc066095": { - "address": "0x4fbf0429599460d327bd5f55625e30e4fc066095", - "symbol": "TSD", - "decimals": 18, - "name": "Teddy Dollar", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/43114/0x4fbf0429599460d327bd5f55625e30e4fc066095.png", - "aggregators": [ - "PangolinDex", - "LiFi", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x4c9b4e1ac6f24cde3660d5e4ef1ebf77c710c084": { - "address": "0x4c9b4e1ac6f24cde3660d5e4ef1ebf77c710c084", - "symbol": "LYD", - "decimals": 18, - "name": "Lydia Finance", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/43114/0x4c9b4e1ac6f24cde3660d5e4ef1ebf77c710c084.png", - "aggregators": [ - "PangolinDex", - "1inch", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x6e6080e15f8c0010d333d8caeead29292adb78f7": { - "address": "0x6e6080e15f8c0010d333d8caeead29292adb78f7", - "symbol": "SIERRA", - "decimals": 6, - "name": "SIERRA", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/43114/0x6e6080e15f8c0010d333d8caeead29292adb78f7.png", - "aggregators": ["TraderJoe", "LiFi", "Rubic", "Squid", "Rango"], - "occurrences": 5 - }, - "0xcd94a87696fac69edae3a70fe5725307ae1c43f6": { - "address": "0xcd94a87696fac69edae3a70fe5725307ae1c43f6", - "symbol": "BLACK", - "decimals": 18, - "name": "BLACK", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/43114/0xcd94a87696fac69edae3a70fe5725307ae1c43f6.png", - "aggregators": ["PangolinDex", "1inch", "LiFi", "Rubic", "Rango"], - "occurrences": 5 - }, - "0x420fca0121dc28039145009570975747295f2329": { - "address": "0x420fca0121dc28039145009570975747295f2329", - "symbol": "COQ", - "decimals": 18, - "name": "Coq Inu", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/43114/0x420fca0121dc28039145009570975747295f2329.png", - "aggregators": [ - "TraderJoe", - "Rubic", - "Squid", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0xb27c8941a7df8958a1778c0259f76d1f8b711c35": { - "address": "0xb27c8941a7df8958a1778c0259f76d1f8b711c35", - "symbol": "KLO", - "decimals": 18, - "name": "Kalao", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/43114/0xb27c8941a7df8958a1778c0259f76d1f8b711c35.png", - "aggregators": [ - "PangolinDex", - "LiFi", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0xff7f8f301f7a706e3cfd3d2275f5dc0b9ee8009b": { - "address": "0xff7f8f301f7a706e3cfd3d2275f5dc0b9ee8009b", - "symbol": "FOLKS", - "decimals": 6, - "name": "FOLKS", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/43114/0xff7f8f301f7a706e3cfd3d2275f5dc0b9ee8009b.png", - "aggregators": ["TraderJoe", "LiFi", "Rubic", "Squid", "Rango"], - "occurrences": 5 - }, - "0x4e200fe2f3efb977d5fd9c430a41531fb04d97b8": { - "address": "0x4e200fe2f3efb977d5fd9c430a41531fb04d97b8", - "symbol": "ORDER", - "decimals": 18, - "name": "ORDER", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/43114/0x4e200fe2f3efb977d5fd9c430a41531fb04d97b8.png", - "aggregators": ["CoinGecko", "LiFi", "Socket", "Rubic", "Rango"], - "occurrences": 5 - }, - "0x2775d5105276781b4b85ba6ea6a6653beed1dd32": { - "address": "0x2775d5105276781b4b85ba6ea6a6653beed1dd32", - "symbol": "XAUT0", - "decimals": 6, - "name": "Tether Gold", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/43114/0x2775d5105276781b4b85ba6ea6a6653beed1dd32.png", - "aggregators": ["TraderJoe", "LiFi", "Rubic", "Squid", "Rango"], - "occurrences": 5 - }, - "0xc430c78da6e4af49bd115f0329d154bb135f1363": { - "address": "0xc430c78da6e4af49bd115f0329d154bb135f1363", - "symbol": "RSETH", - "decimals": 18, - "name": "RSETH", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/43114/0xc430c78da6e4af49bd115f0329d154bb135f1363.png", - "aggregators": ["CoinGecko", "LiFi", "Socket", "Rubic", "Rango"], - "occurrences": 5 - }, - "0x5d3a1ff2b6bab83b63cd9ad0787074081a52ef34": { - "address": "0x5d3a1ff2b6bab83b63cd9ad0787074081a52ef34", - "symbol": "USDE", - "decimals": 18, - "name": "USDe", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/43114/0x5d3a1ff2b6bab83b63cd9ad0787074081a52ef34.png", - "aggregators": ["TraderJoe", "LiFi", "Socket", "Rubic", "Rango"], - "occurrences": 5 - }, - "0xa3d68b74bf0528fdd07263c60d6488749044914b": { - "address": "0xa3d68b74bf0528fdd07263c60d6488749044914b", - "symbol": "WEETH", - "decimals": 18, - "name": "WEETH", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/43114/0xa3d68b74bf0528fdd07263c60d6488749044914b.png", - "aggregators": ["TraderJoe", "LiFi", "Socket", "Rubic", "Rango"], - "occurrences": 5 - }, - "0x4809010926aec940b550d34a46a52739f996d75d": { - "address": "0x4809010926aec940b550d34a46a52739f996d75d", - "symbol": "WSRUSD", - "decimals": 18, - "name": "WSRUSD", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/43114/0x4809010926aec940b550d34a46a52739f996d75d.png", - "aggregators": ["CoinGecko", "LiFi", "Socket", "Rubic", "Rango"], - "occurrences": 5 - }, - "0x58538e6a46e07434d7e7375bc268d3cb839c0133": { - "address": "0x58538e6a46e07434d7e7375bc268d3cb839c0133", - "symbol": "ENA", - "decimals": 18, - "name": "ENA", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/43114/0x58538e6a46e07434d7e7375bc268d3cb839c0133.png", - "aggregators": ["CoinGecko", "LiFi", "Socket", "Rubic", "Rango"], - "occurrences": 5 - }, - "0x09d4214c03d01f49544c0448dbe3a27f768f2b34": { - "address": "0x09d4214c03d01f49544c0448dbe3a27f768f2b34", - "symbol": "RUSD", - "decimals": 18, - "name": "RUSD", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/43114/0x09d4214c03d01f49544c0448dbe3a27f768f2b34.png", - "aggregators": ["CoinGecko", "LiFi", "Socket", "Rubic", "Rango"], - "occurrences": 5 - }, - "0xca2671dcd031a72359f456c212f62a9bda737cd7": { - "address": "0xca2671dcd031a72359f456c212f62a9bda737cd7", - "symbol": "YUSD", - "decimals": 18, - "name": "YUSD", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/43114/0xca2671dcd031a72359f456c212f62a9bda737cd7.png", - "aggregators": ["TraderJoe", "LiFi", "Socket", "Rubic", "Rango"], - "occurrences": 5 - }, - "0x211cc4dd073734da055fbf44a2b4667d5e5fe5d2": { - "address": "0x211cc4dd073734da055fbf44a2b4667d5e5fe5d2", - "symbol": "SUSDE", - "decimals": 18, - "name": "SUSDE", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/43114/0x211cc4dd073734da055fbf44a2b4667d5e5fe5d2.png", - "aggregators": ["TraderJoe", "LiFi", "Socket", "Rubic", "Rango"], - "occurrences": 5 - }, - "0x9ceed3a7f753608372eeab300486cc7c2f38ac68": { - "address": "0x9ceed3a7f753608372eeab300486cc7c2f38ac68", - "symbol": "EUL", - "decimals": 18, - "name": "EUL", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/43114/0x9ceed3a7f753608372eeab300486cc7c2f38ac68.png", - "aggregators": ["CoinGecko", "LiFi", "Socket", "Rubic", "Rango"], - "occurrences": 5 - }, - "0x79bbf4508b1391af3a0f4b30bb5fc4aa9ab0e07c": { - "address": "0x79bbf4508b1391af3a0f4b30bb5fc4aa9ab0e07c", - "symbol": "ANON", - "decimals": 18, - "name": "ANON", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/43114/0x79bbf4508b1391af3a0f4b30bb5fc4aa9ab0e07c.png", - "aggregators": ["TraderJoe", "LiFi", "Socket", "Rubic", "Rango"], - "occurrences": 5 - }, - "0x721c299e6bf7d6a430d9bea3364ea197314bce09": { - "address": "0x721c299e6bf7d6a430d9bea3364ea197314bce09", - "symbol": "MILK2", - "decimals": 18, - "name": "Spaceswap MILK2", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/43114/0x721c299e6bf7d6a430d9bea3364ea197314bce09.png", - "aggregators": [ - "PangolinDex", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x4bfc90322dd638f81f034517359bd447f8e0235a": { - "address": "0x4bfc90322dd638f81f034517359bd447f8e0235a", - "symbol": "NEWO", - "decimals": 18, - "name": "New Order", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/43114/0x4bfc90322dd638f81f034517359bd447f8e0235a.png", - "aggregators": [ - "CoinGecko", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x904567252d8f48555b7447c67dca23f0372e16be": { - "address": "0x904567252d8f48555b7447c67dca23f0372e16be", - "symbol": "KITE", - "decimals": 18, - "name": "KITE", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/43114/0x904567252d8f48555b7447c67dca23f0372e16be.png", - "aggregators": ["CoinGecko", "LiFi", "Socket", "Rubic", "Rango"], - "occurrences": 5 - }, - "0x938fe3788222a74924e062120e7bfac829c719fb": { - "address": "0x938fe3788222a74924e062120e7bfac829c719fb", - "symbol": "APEIN", - "decimals": 18, - "name": "Ape In", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/43114/0x938fe3788222a74924e062120e7bfac829c719fb.png", - "aggregators": ["PangolinDex", "1inch", "LiFi", "Rubic", "Rango"], - "occurrences": 5 - }, - "0x885d748c00a279b67a7749ec6b03301700dd0455": { - "address": "0x885d748c00a279b67a7749ec6b03301700dd0455", - "symbol": "MAXI", - "decimals": 18, - "name": "Maximus", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/43114/0x885d748c00a279b67a7749ec6b03301700dd0455.png", - "aggregators": [ - "PangolinDex", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x47eb6f7525c1aa999fbc9ee92715f5231eb1241d": { - "address": "0x47eb6f7525c1aa999fbc9ee92715f5231eb1241d", - "symbol": "MELT", - "decimals": 18, - "name": "MELT", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/43114/0x47eb6f7525c1aa999fbc9ee92715f5231eb1241d.png", - "aggregators": ["PangolinDex", "LiFi", "Socket", "Rubic", "Rango"], - "occurrences": 5 - }, - "0xe19a1684873fab5fb694cfd06607100a632ff21c": { - "address": "0xe19a1684873fab5fb694cfd06607100a632ff21c", - "symbol": "BAVA", - "decimals": 18, - "name": "Baklava", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/43114/0xe19a1684873fab5fb694cfd06607100a632ff21c.png", - "aggregators": [ - "PangolinDex", - "Rubic", - "Squid", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0xdbc5192a6b6ffee7451301bb4ec312f844f02b4a": { - "address": "0xdbc5192a6b6ffee7451301bb4ec312f844f02b4a", - "symbol": "UTY", - "decimals": 18, - "name": "UTY", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/43114/0xdbc5192a6b6ffee7451301bb4ec312f844f02b4a.png", - "aggregators": ["TraderJoe", "LiFi", "Rubic", "Squid", "Rango"], - "occurrences": 5 - }, - "0x488f73cddda1de3664775ffd91623637383d6404": { - "address": "0x488f73cddda1de3664775ffd91623637383d6404", - "symbol": "YTS", - "decimals": 18, - "name": "YetiSwap", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/43114/0x488f73cddda1de3664775ffd91623637383d6404.png", - "aggregators": ["PangolinDex", "1inch", "Socket", "Rubic"], - "occurrences": 4 - }, - "0xf693248f96fe03422fea95ac0afbbbc4a8fdd172": { - "address": "0xf693248f96fe03422fea95ac0afbbbc4a8fdd172", - "symbol": "TUS", - "decimals": 18, - "name": "TUS", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/43114/0xf693248f96fe03422fea95ac0afbbbc4a8fdd172.png", - "aggregators": ["PangolinDex", "1inch", "Rubic", "Rango"], - "occurrences": 4 - }, - "0x7b2b702706d9b361dfe3f00bd138c0cfda7fb2cf": { - "address": "0x7b2b702706d9b361dfe3f00bd138c0cfda7fb2cf", - "symbol": "PLN", - "decimals": 18, - "name": "Pollen", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/43114/0x7b2b702706d9b361dfe3f00bd138c0cfda7fb2cf.png", - "aggregators": ["PangolinDex", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0x0256b279d973c8d687264ac3eb36be09232d4474": { - "address": "0x0256b279d973c8d687264ac3eb36be09232d4474", - "symbol": "MYST", - "decimals": 18, - "name": "MyStandard", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/43114/0x0256b279d973c8d687264ac3eb36be09232d4474.png", - "aggregators": [ - "TraderJoe", - "LiFi", - "Socket", - "Rubic", - "Squid", - "Rango", - "Sonarwatch" - ], - "occurrences": 7 - }, - "0x111111111111ed1d73f860f57b2798b683f2d325": { - "address": "0x111111111111ed1d73f860f57b2798b683f2d325", - "symbol": "YUSD", - "decimals": 18, - "name": "YUSD Stablecoin", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/43114/0x111111111111ed1d73f860f57b2798b683f2d325.png", - "aggregators": [ - "CoinGecko", - "LiFi", - "Socket", - "Rubic", - "Squid", - "Rango", - "Sonarwatch" - ], - "occurrences": 7 - }, - "0x69260b9483f9871ca57f81a90d91e2f96c2cd11d": { - "address": "0x69260b9483f9871ca57f81a90d91e2f96c2cd11d", - "symbol": "GGP", - "decimals": 18, - "name": "GoGoPool", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/43114/0x69260b9483f9871ca57f81a90d91e2f96c2cd11d.png", - "aggregators": [ - "TraderJoe", - "1inch", - "LiFi", - "Rubic", - "Squid", - "Rango", - "Sonarwatch" - ], - "occurrences": 7 - }, - "0xd402298a793948698b9a63311404fbbee944eafd": { - "address": "0xd402298a793948698b9a63311404fbbee944eafd", - "symbol": "SHRAP", - "decimals": 18, - "name": "Shrapnel", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/43114/0xd402298a793948698b9a63311404fbbee944eafd.png", - "aggregators": [ - "TraderJoe", - "LiFi", - "Socket", - "Rubic", - "Squid", - "Rango", - "Sonarwatch" - ], - "occurrences": 7 - }, - "0x37b608519f91f70f2eeb0e5ed9af4061722e4f76": { - "address": "0x37b608519f91f70f2eeb0e5ed9af4061722e4f76", - "symbol": "SUSHI.E", - "decimals": 18, - "name": "SushiToken", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/43114/0x37b608519f91f70f2eeb0e5ed9af4061722e4f76.png", - "aggregators": [ - "PangolinDex", - "LiFi", - "TrustWallet", - "Rubic", - "Rango", - "Sonarwatch", - "SushiSwap" - ], - "occurrences": 7 - }, - "0xfab550568c688d5d8a52c7d794cb93edc26ec0ec": { - "address": "0xfab550568c688d5d8a52c7d794cb93edc26ec0ec", - "symbol": "AXLUSDC", - "decimals": 6, - "name": "Axelar Wrapped USDC", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/43114/0xfab550568c688d5d8a52c7d794cb93edc26ec0ec.png", - "aggregators": [ - "TraderJoe", - "LiFi", - "Rubic", - "Squid", - "Rango", - "Sonarwatch", - "SushiSwap" - ], - "occurrences": 7 - }, - "0x44c784266cf024a60e8acf2427b9857ace194c5d": { - "address": "0x44c784266cf024a60e8acf2427b9857ace194c5d", - "symbol": "AXL", - "decimals": 6, - "name": "Axelar", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/43114/0x44c784266cf024a60e8acf2427b9857ace194c5d.png", - "aggregators": [ - "CoinGecko", - "LiFi", - "Socket", - "Rubic", - "Squid", - "Rango", - "Sonarwatch" - ], - "occurrences": 7 - }, - "0xc7b5d72c836e718cda8888eaf03707faef675079": { - "address": "0xc7b5d72c836e718cda8888eaf03707faef675079", - "symbol": "SWAP", - "decimals": 18, - "name": "TrustSwap", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/43114/0xc7b5d72c836e718cda8888eaf03707faef675079.png", - "aggregators": [ - "CoinGecko", - "1inch", - "LiFi", - "Rubic", - "Squid", - "Rango", - "Sonarwatch" - ], - "occurrences": 7 - }, - "0x968be3f7bfef0f8edc3c1ad90232ebb0da0867aa": { - "address": "0x968be3f7bfef0f8edc3c1ad90232ebb0da0867aa", - "symbol": "SWORLD", - "decimals": 18, - "name": "Seedworld", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/43114/0x968be3f7bfef0f8edc3c1ad90232ebb0da0867aa.png", - "aggregators": [ - "TraderJoe", - "Socket", - "Rubic", - "Squid", - "Rango", - "Sonarwatch" - ], - "occurrences": 6 - }, - "0xf7d9281e8e363584973f946201b82ba72c965d27": { - "address": "0xf7d9281e8e363584973f946201b82ba72c965d27", - "symbol": "YYAVAX", - "decimals": 18, - "name": "Yield Yak AVAX", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/43114/0xf7d9281e8e363584973f946201b82ba72c965d27.png", - "aggregators": [ - "TraderJoe", - "LiFi", - "Rubic", - "Squid", - "Rango", - "Sonarwatch" - ], - "occurrences": 6 - }, - "0xd036414fa2bcbb802691491e323bff1348c5f4ba": { - "address": "0xd036414fa2bcbb802691491e323bff1348c5f4ba", - "symbol": "MU", - "decimals": 18, - "name": "Mu Coin", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/43114/0xd036414fa2bcbb802691491e323bff1348c5f4ba.png", - "aggregators": [ - "TraderJoe", - "LiFi", - "Rubic", - "Rango", - "Sonarwatch", - "SushiSwap" - ], - "occurrences": 6 - }, - "0xbc78d84ba0c46dfe32cf2895a19939c86b81a777": { - "address": "0xbc78d84ba0c46dfe32cf2895a19939c86b81a777", - "symbol": "SOLVBTC", - "decimals": 18, - "name": "Solv Protocol SolvBTC", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/43114/0xbc78d84ba0c46dfe32cf2895a19939c86b81a777.png", - "aggregators": [ - "TraderJoe", - "LiFi", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 6 - }, - "0x3ab1c9adb065f3fca0059652cd7a52b05c98f9a9": { - "address": "0x3ab1c9adb065f3fca0059652cd7a52b05c98f9a9", - "symbol": "ORBS", - "decimals": 18, - "name": "Orbs", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/43114/0x3ab1c9adb065f3fca0059652cd7a52b05c98f9a9.png", - "aggregators": [ - "PangolinDex", - "LiFi", - "Rubic", - "Squid", - "Rango", - "Sonarwatch" - ], - "occurrences": 6 - }, - "0x62d0a8458ed7719fdaf978fe5929c6d342b0bfce": { - "address": "0x62d0a8458ed7719fdaf978fe5929c6d342b0bfce", - "symbol": "BEAM", - "decimals": 18, - "name": "Beam", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/43114/0x62d0a8458ed7719fdaf978fe5929c6d342b0bfce.png", - "aggregators": [ - "TraderJoe", - "Socket", - "Rubic", - "Squid", - "Rango", - "Sonarwatch" - ], - "occurrences": 6 - }, - "0x491a4eb4f1fc3bff8e1d2fc856a6a46663ad556f": { - "address": "0x491a4eb4f1fc3bff8e1d2fc856a6a46663ad556f", - "symbol": "BRZ", - "decimals": 4, - "name": "Brazilian Digital", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/43114/0x491a4eb4f1fc3bff8e1d2fc856a6a46663ad556f.png", - "aggregators": [ - "PangolinDex", - "LiFi", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 6 - }, - "0x0cbd6fadcf8096cc9a43d90b45f65826102e3ece": { - "address": "0x0cbd6fadcf8096cc9a43d90b45f65826102e3ece", - "symbol": "CDT", - "decimals": 18, - "name": "CheckDot", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/43114/0x0cbd6fadcf8096cc9a43d90b45f65826102e3ece.png", - "aggregators": [ - "CoinGecko", - "LiFi", - "Rubic", - "Rango", - "Sonarwatch", - "SushiSwap" - ], - "occurrences": 6 - }, - "0x089d3daf549f99553c2182db24bc4336a4f0c824": { - "address": "0x089d3daf549f99553c2182db24bc4336a4f0c824", - "symbol": "IBEX", - "decimals": 18, - "name": "Impermax", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/43114/0x089d3daf549f99553c2182db24bc4336a4f0c824.png", - "aggregators": [ - "CoinGecko", - "LiFi", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 6 - }, - "0x12d8ce035c5de3ce39b1fdd4c1d5a745eaba3b8c": { - "address": "0x12d8ce035c5de3ce39b1fdd4c1d5a745eaba3b8c", - "symbol": "ANKRETH", - "decimals": 18, - "name": "Ankr Staked ETH", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/43114/0x12d8ce035c5de3ce39b1fdd4c1d5a745eaba3b8c.png", - "aggregators": [ - "CoinGecko", - "LiFi", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 6 - }, - "0x9fda7ceec4c18008096c2fe2b85f05dc300f94d0": { - "address": "0x9fda7ceec4c18008096c2fe2b85f05dc300f94d0", - "symbol": "MFI", - "decimals": 18, - "name": "Marginswap", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/43114/0x9fda7ceec4c18008096c2fe2b85f05dc300f94d0.png", - "aggregators": [ - "PangolinDex", - "LiFi", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 6 - }, - "0x961c8c0b1aad0c0b10a51fef6a867e3091bcef17": { - "address": "0x961c8c0b1aad0c0b10a51fef6a867e3091bcef17", - "symbol": "DYP", - "decimals": 18, - "name": "Dypius [OLD]", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/43114/0x961c8c0b1aad0c0b10a51fef6a867e3091bcef17.png", - "aggregators": [ - "PangolinDex", - "LiFi", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 6 - }, - "0xc17c30e98541188614df99239cabd40280810ca3": { - "address": "0xc17c30e98541188614df99239cabd40280810ca3", - "symbol": "RISE", - "decimals": 18, - "name": "EverRise", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/43114/0xc17c30e98541188614df99239cabd40280810ca3.png", - "aggregators": [ - "CoinGecko", - "TrustWallet", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 6 - }, - "0xa384bc7cdc0a93e686da9e7b8c0807cd040f4e0b": { - "address": "0xa384bc7cdc0a93e686da9e7b8c0807cd040f4e0b", - "symbol": "WOW", - "decimals": 18, - "name": "WOWSwap", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/43114/0xa384bc7cdc0a93e686da9e7b8c0807cd040f4e0b.png", - "aggregators": [ - "PangolinDex", - "LiFi", - "Rubic", - "Rango", - "Sonarwatch", - "SushiSwap" - ], - "occurrences": 6 - }, - "0xfb98b335551a418cd0737375a2ea0ded62ea213b": { - "address": "0xfb98b335551a418cd0737375a2ea0ded62ea213b", - "symbol": "PENDLE", - "decimals": 18, - "name": "PENDLE", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/43114/0xfb98b335551a418cd0737375a2ea0ded62ea213b.png", - "aggregators": [ - "1inch", - "LiFi", - "Socket", - "Rubic", - "Squid", - "Rango" - ], - "occurrences": 6 - }, - "0x237917e8a998b37759c8ee2faa529d60c66c2927": { - "address": "0x237917e8a998b37759c8ee2faa529d60c66c2927", - "symbol": "SIFU", - "decimals": 18, - "name": "Sifu", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/43114/0x237917e8a998b37759c8ee2faa529d60c66c2927.png", - "aggregators": [ - "LiFi", - "Socket", - "Rubic", - "Squid", - "Rango", - "SushiSwap" - ], - "occurrences": 6 - }, - "0x0ef27ddc8f89d4886e89d630de089962ffc12e43": { - "address": "0x0ef27ddc8f89d4886e89d630de089962ffc12e43", - "symbol": "PGX", - "decimals": 18, - "name": "Pegaxy", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/43114/0x0ef27ddc8f89d4886e89d630de089962ffc12e43.png", - "aggregators": [ - "LiFi", - "Socket", - "Rubic", - "Squid", - "Rango", - "Sonarwatch" - ], - "occurrences": 6 - }, - "0x82fe038ea4b50f9c957da326c412ebd73462077c": { - "address": "0x82fe038ea4b50f9c957da326c412ebd73462077c", - "symbol": "HAT", - "decimals": 18, - "name": "Joe Hat", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/43114/0x82fe038ea4b50f9c957da326c412ebd73462077c.png", - "aggregators": [ - "TraderJoe", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x31c994ac062c1970c086260bc61babb708643fac": { - "address": "0x31c994ac062c1970c086260bc61babb708643fac", - "symbol": "XETA", - "decimals": 18, - "name": "XANA", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/43114/0x31c994ac062c1970c086260bc61babb708643fac.png", - "aggregators": [ - "CoinGecko", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x8ad25b0083c9879942a64f00f20a70d3278f6187": { - "address": "0x8ad25b0083c9879942a64f00f20a70d3278f6187", - "symbol": "MEOW", - "decimals": 18, - "name": "MeowCat", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/43114/0x8ad25b0083c9879942a64f00f20a70d3278f6187.png", - "aggregators": [ - "TraderJoe", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x1c7c53aa86b49a28c627b6450091998e447a42f9": { - "address": "0x1c7c53aa86b49a28c627b6450091998e447a42f9", - "symbol": "VELAI", - "decimals": 18, - "name": "Velvet AI", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/43114/0x1c7c53aa86b49a28c627b6450091998e447a42f9.png", - "aggregators": [ - "TraderJoe", - "Rubic", - "Squid", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x714f020c54cc9d104b6f4f6998c63ce2a31d1888": { - "address": "0x714f020c54cc9d104b6f4f6998c63ce2a31d1888", - "symbol": "FITFI", - "decimals": 18, - "name": "Step App", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/43114/0x714f020c54cc9d104b6f4f6998c63ce2a31d1888.png", - "aggregators": [ - "PangolinDex", - "Rubic", - "Squid", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x440abbf18c54b2782a4917b80a1746d3a2c2cce1": { - "address": "0x440abbf18c54b2782a4917b80a1746d3a2c2cce1", - "symbol": "SHIBX", - "decimals": 18, - "name": "Shibavax", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/43114/0x440abbf18c54b2782a4917b80a1746d3a2c2cce1.png", - "aggregators": [ - "PangolinDex", - "1inch", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x8d88e48465f30acfb8dac0b3e35c9d6d7d36abaf": { - "address": "0x8d88e48465f30acfb8dac0b3e35c9d6d7d36abaf", - "symbol": "CNR", - "decimals": 18, - "name": "Canary", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/43114/0x8d88e48465f30acfb8dac0b3e35c9d6d7d36abaf.png", - "aggregators": [ - "PangolinDex", - "LiFi", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x83a283641c6b4df383bcddf807193284c84c5342": { - "address": "0x83a283641c6b4df383bcddf807193284c84c5342", - "symbol": "VPND", - "decimals": 18, - "name": "VaporNodes", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/43114/0x83a283641c6b4df383bcddf807193284c84c5342.png", - "aggregators": [ - "CoinGecko", - "Rubic", - "Squid", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x4f94b8aef08c92fefe416af073f1df1e284438ec": { - "address": "0x4f94b8aef08c92fefe416af073f1df1e284438ec", - "symbol": "WOLF", - "decimals": 18, - "name": "Landwolf on AVAX", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/43114/0x4f94b8aef08c92fefe416af073f1df1e284438ec.png", - "aggregators": [ - "TraderJoe", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0xc69eba65e87889f0805db717af06797055a0ba07": { - "address": "0xc69eba65e87889f0805db717af06797055a0ba07", - "symbol": "NCASH", - "decimals": 18, - "name": "Nitro Network", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/43114/0xc69eba65e87889f0805db717af06797055a0ba07.png", - "aggregators": [ - "PangolinDex", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x184ff13b3ebcb25be44e860163a5d8391dd568c1": { - "address": "0x184ff13b3ebcb25be44e860163a5d8391dd568c1", - "symbol": "KIMBO", - "decimals": 18, - "name": "Kimbo", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/43114/0x184ff13b3ebcb25be44e860163a5d8391dd568c1.png", - "aggregators": [ - "TraderJoe", - "Rubic", - "Squid", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x6e7f5c0b9f4432716bdd0a77a3601291b9d9e985": { - "address": "0x6e7f5c0b9f4432716bdd0a77a3601291b9d9e985", - "symbol": "SPORE", - "decimals": 9, - "name": "Spore", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/43114/0x6e7f5c0b9f4432716bdd0a77a3601291b9d9e985.png", - "aggregators": [ - "PangolinDex", - "1inch", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x0f577433bf59560ef2a79c124e9ff99fca258948": { - "address": "0x0f577433bf59560ef2a79c124e9ff99fca258948", - "symbol": "MONEY", - "decimals": 18, - "name": "Moremoney USD", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/43114/0x0f577433bf59560ef2a79c124e9ff99fca258948.png", - "aggregators": [ - "PangolinDex", - "LiFi", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x89a8633bcad3af0951acc5137811ea21a17c37dc": { - "address": "0x89a8633bcad3af0951acc5137811ea21a17c37dc", - "symbol": "LAMA", - "decimals": 18, - "name": "Lama", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/43114/0x89a8633bcad3af0951acc5137811ea21a17c37dc.png", - "aggregators": [ - "TraderJoe", - "Rubic", - "Squid", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x3419875b4d3bca7f3fdda2db7a476a79fd31b4fe": { - "address": "0x3419875b4d3bca7f3fdda2db7a476a79fd31b4fe", - "symbol": "DZHV", - "decimals": 18, - "name": "DizzyHavoc", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/43114/0x3419875b4d3bca7f3fdda2db7a476a79fd31b4fe.png", - "aggregators": [ - "CoinGecko", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0xe397784960f814ba35c9ee0bc4c9dffdf86925f9": { - "address": "0xe397784960f814ba35c9ee0bc4c9dffdf86925f9", - "symbol": "MSTR", - "decimals": 18, - "name": "Monsterra", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/43114/0xe397784960f814ba35c9ee0bc4c9dffdf86925f9.png", - "aggregators": [ - "PangolinDex", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x68ee0d0aad9e1984af85ca224117e4d20eaf68be": { - "address": "0x68ee0d0aad9e1984af85ca224117e4d20eaf68be", - "symbol": "ROY", - "decimals": 18, - "name": "Royale", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/43114/0x68ee0d0aad9e1984af85ca224117e4d20eaf68be.png", - "aggregators": [ - "TraderJoe", - "Rubic", - "Rango", - "Sonarwatch", - "SushiSwap" - ], - "occurrences": 5 - }, - "0xba0dda8762c24da9487f5fa026a9b64b695a07ea": { - "address": "0xba0dda8762c24da9487f5fa026a9b64b695a07ea", - "symbol": "OX", - "decimals": 18, - "name": "OX Coin", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/43114/0xba0dda8762c24da9487f5fa026a9b64b695a07ea.png", - "aggregators": [ - "CoinGecko", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x6f97d3f120fbbdaacf1c9da61a8ad126b7426861": { - "address": "0x6f97d3f120fbbdaacf1c9da61a8ad126b7426861", - "symbol": "UNIX", - "decimals": 18, - "name": "UniX", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/43114/0x6f97d3f120fbbdaacf1c9da61a8ad126b7426861.png", - "aggregators": [ - "CoinGecko", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0xb00f1ad977a949a3ccc389ca1d1282a2946963b0": { - "address": "0xb00f1ad977a949a3ccc389ca1d1282a2946963b0", - "symbol": "BOOFI", - "decimals": 18, - "name": "BOOFI", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/43114/0xb00f1ad977a949a3ccc389ca1d1282a2946963b0.png", - "aggregators": ["PangolinDex", "LiFi", "Socket", "Rubic", "Rango"], - "occurrences": 5 - }, - "0xbd100d061e120b2c67a24453cf6368e63f1be056": { - "address": "0xbd100d061e120b2c67a24453cf6368e63f1be056", - "symbol": "IDYP", - "decimals": 18, - "name": "iDypius", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/43114/0xbd100d061e120b2c67a24453cf6368e63f1be056.png", - "aggregators": [ - "PangolinDex", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0xb84527d59b6ecb96f433029ecc890d4492c5dce1": { - "address": "0xb84527d59b6ecb96f433029ecc890d4492c5dce1", - "symbol": "TOMB", - "decimals": 18, - "name": "Tomb", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/43114/0xb84527d59b6ecb96f433029ecc890d4492c5dce1.png", - "aggregators": [ - "PangolinDex", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x5541d83efad1f281571b343977648b75d95cdac2": { - "address": "0x5541d83efad1f281571b343977648b75d95cdac2", - "symbol": "GRAPE", - "decimals": 18, - "name": "Grape Finance", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/43114/0x5541d83efad1f281571b343977648b75d95cdac2.png", - "aggregators": [ - "LiFi", - "Rubic", - "Rango", - "Sonarwatch", - "SushiSwap" - ], - "occurrences": 5 - }, - "0xff24003428fb2e969c39edee4e9f464b0b78313d": { - "address": "0xff24003428fb2e969c39edee4e9f464b0b78313d", - "symbol": "WAIFU", - "decimals": 18, - "name": "Waifu", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/43114/0xff24003428fb2e969c39edee4e9f464b0b78313d.png", - "aggregators": ["TraderJoe", "Rubic", "Squid", "Rango"], - "occurrences": 4 - }, - "0x2cd3cdb3bd68eea0d3be81da707bc0c8743d7335": { - "address": "0x2cd3cdb3bd68eea0d3be81da707bc0c8743d7335", - "symbol": "YBTC.B", - "decimals": 8, - "name": "YBTC.B", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/43114/0x2cd3cdb3bd68eea0d3be81da707bc0c8743d7335.png", - "aggregators": ["TraderJoe", "LiFi", "Rubic", "Rango"], - "occurrences": 4 - }, - "0x5e0e90e268bc247cc850c789a0db0d5c7621fb59": { - "address": "0x5e0e90e268bc247cc850c789a0db0d5c7621fb59", - "symbol": "NXPC", - "decimals": 18, - "name": "NXPC", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/43114/0x5e0e90e268bc247cc850c789a0db0d5c7621fb59.png", - "aggregators": ["TraderJoe", "LiFi", "Rubic", "Rango"], - "occurrences": 4 - }, - "0x13a466998ce03db73abc2d4df3bbd845ed1f28e7": { - "address": "0x13a466998ce03db73abc2d4df3bbd845ed1f28e7", - "symbol": "PHAR", - "decimals": 18, - "name": "Pharaoh", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/43114/0x13a466998ce03db73abc2d4df3bbd845ed1f28e7.png", - "aggregators": ["CoinGecko", "LiFi", "Rubic", "Rango"], - "occurrences": 4 - }, - "0x08c4b51e6ca9eb89c255f0a5ab8afd721420e447": { - "address": "0x08c4b51e6ca9eb89c255f0a5ab8afd721420e447", - "symbol": "PEARL", - "decimals": 18, - "name": "Stargate Bridged Pearl (Avalanche)", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/43114/0x08c4b51e6ca9eb89c255f0a5ab8afd721420e447.png", - "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0x451532f1c9eb7e4dc2d493db52b682c0acf6f5ef": { - "address": "0x451532f1c9eb7e4dc2d493db52b682c0acf6f5ef", - "symbol": "SUZ", - "decimals": 18, - "name": "SUZ", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/43114/0x451532f1c9eb7e4dc2d493db52b682c0acf6f5ef.png", - "aggregators": ["PangolinDex", "LiFi", "Rubic", "Rango"], - "occurrences": 4 - }, - "0x4d6ec47118f807ace03d3b3a4ee6aa96cb2ab677": { - "address": "0x4d6ec47118f807ace03d3b3a4ee6aa96cb2ab677", - "symbol": "BNZ", - "decimals": 18, - "name": "MadSkullz BNZ", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/43114/0x4d6ec47118f807ace03d3b3a4ee6aa96cb2ab677.png", - "aggregators": ["TraderJoe", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0x8c8d2a7d8d9cf26f5ee1bbfc0ba56e93f4a4a7ac": { - "address": "0x8c8d2a7d8d9cf26f5ee1bbfc0ba56e93f4a4a7ac", - "symbol": "AVAXAI", - "decimals": 18, - "name": "AIvalanche DeFAI Agents", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/43114/0x8c8d2a7d8d9cf26f5ee1bbfc0ba56e93f4a4a7ac.png", - "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0xa813d175675c7f19bb7fd541f5ad1bcaf2117fe7": { - "address": "0xa813d175675c7f19bb7fd541f5ad1bcaf2117fe7", - "symbol": "PEON", - "decimals": 18, - "name": "PEON", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/43114/0xa813d175675c7f19bb7fd541f5ad1bcaf2117fe7.png", - "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0x97f2624d5f99a953ae5574ea57d3268785941de4": { - "address": "0x97f2624d5f99a953ae5574ea57d3268785941de4", - "symbol": "COLS", - "decimals": 18, - "name": "Cointel", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/43114/0x97f2624d5f99a953ae5574ea57d3268785941de4.png", - "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0x26e9dbe75aed331e41272bece932ff1b48926ca9": { - "address": "0x26e9dbe75aed331e41272bece932ff1b48926ca9", - "symbol": "P33", - "decimals": 18, - "name": "P33", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/43114/0x26e9dbe75aed331e41272bece932ff1b48926ca9.png", - "aggregators": ["CoinGecko", "LiFi", "Rubic", "Rango"], - "occurrences": 4 - }, - "0x14a84f1a61ccd7d1be596a6cc11fe33a36bc1646": { - "address": "0x14a84f1a61ccd7d1be596a6cc11fe33a36bc1646", - "symbol": "TAVAX", - "decimals": 18, - "name": "TAVAX", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/43114/0x14a84f1a61ccd7d1be596a6cc11fe33a36bc1646.png", - "aggregators": ["CoinGecko", "LiFi", "Rubic", "Rango"], - "occurrences": 4 - }, - "0x0f875ae3eb1fc8a3289657676fc2a288585982a5": { - "address": "0x0f875ae3eb1fc8a3289657676fc2a288585982a5", - "symbol": "REKT", - "decimals": 18, - "name": "REKT", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/43114/0x0f875ae3eb1fc8a3289657676fc2a288585982a5.png", - "aggregators": ["CoinGecko", "Socket", "Rubic", "Rango"], - "occurrences": 4 - }, - "0x1e4c0e060fba7d62fa9fbb1aa624e58f796b4efe": { - "address": "0x1e4c0e060fba7d62fa9fbb1aa624e58f796b4efe", - "symbol": "SWEAT", - "decimals": 18, - "name": "SWEAT", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/43114/0x1e4c0e060fba7d62fa9fbb1aa624e58f796b4efe.png", - "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0xfc87d55bc8bf441abfc24d04b2068a8f77bcfcc0": { - "address": "0xfc87d55bc8bf441abfc24d04b2068a8f77bcfcc0", - "symbol": "MON", - "decimals": 18, - "name": "MON Protocol", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/43114/0xfc87d55bc8bf441abfc24d04b2068a8f77bcfcc0.png", - "aggregators": ["CoinGecko", "Rubic", "Squid", "Rango"], - "occurrences": 4 - }, - "0x9ee1963f05553ef838604dd39403be21cef26aa4": { - "address": "0x9ee1963f05553ef838604dd39403be21cef26aa4", - "symbol": "USDP", - "decimals": 18, - "name": "USDP", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/43114/0x9ee1963f05553ef838604dd39403be21cef26aa4.png", - "aggregators": ["CoinGecko", "LiFi", "Rubic", "Rango"], - "occurrences": 4 - }, - "0x64445f0aecc51e94ad52d8ac56b7190e764e561a": { - "address": "0x64445f0aecc51e94ad52d8ac56b7190e764e561a", - "symbol": "WFRAX", - "decimals": 18, - "name": "WFRAX", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/43114/0x64445f0aecc51e94ad52d8ac56b7190e764e561a.png", - "aggregators": ["CoinGecko", "Socket", "Rubic", "Rango"], - "occurrences": 4 - }, - "0xfec5906e8470ea7e2a2242b314a35f4ff42b19e1": { - "address": "0xfec5906e8470ea7e2a2242b314a35f4ff42b19e1", - "symbol": "L1", - "decimals": 18, - "name": "Lamina1", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/43114/0xfec5906e8470ea7e2a2242b314a35f4ff42b19e1.png", - "aggregators": ["TraderJoe", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0x09fa58228bb791ea355c90da1e4783452b9bd8c3": { - "address": "0x09fa58228bb791ea355c90da1e4783452b9bd8c3", - "symbol": "SUPER", - "decimals": 18, - "name": "SUPER", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/43114/0x09fa58228bb791ea355c90da1e4783452b9bd8c3.png", - "aggregators": ["PangolinDex", "Socket", "Rubic", "Rango"], - "occurrences": 4 - }, - "0x153374c6d6786b6ca2c4bc96f9c3a471428f2bc7": { - "address": "0x153374c6d6786b6ca2c4bc96f9c3a471428f2bc7", - "symbol": "WILD", - "decimals": 18, - "name": "WILD", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/43114/0x153374c6d6786b6ca2c4bc96f9c3a471428f2bc7.png", - "aggregators": ["PangolinDex", "Socket", "Rubic", "Rango"], - "occurrences": 4 - }, - "0xc53ac24320e3a54c7211e4993c8095078a0cb3cf": { - "address": "0xc53ac24320e3a54c7211e4993c8095078a0cb3cf", - "symbol": "WGC", - "decimals": 6, - "name": "Wild Goat Coin", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/43114/0xc53ac24320e3a54c7211e4993c8095078a0cb3cf.png", - "aggregators": ["CoinGecko", "Socket", "Rubic", "Rango"], - "occurrences": 4 - }, - "0x056d114ff1e01de3bca30f0efa3655df42880e5b": { - "address": "0x056d114ff1e01de3bca30f0efa3655df42880e5b", - "symbol": "KTE", - "decimals": 18, - "name": "Kyte.One", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/43114/0x056d114ff1e01de3bca30f0efa3655df42880e5b.png", - "aggregators": ["PangolinDex", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0xe7c3d8c9a439fede00d2600032d5db0be71c3c29": { - "address": "0xe7c3d8c9a439fede00d2600032d5db0be71c3c29", - "symbol": "JPYC", - "decimals": 18, - "name": "JPYC", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/43114/0xe7c3d8c9a439fede00d2600032d5db0be71c3c29.png", - "aggregators": ["TraderJoe", "1inch", "Rubic", "Rango"], - "occurrences": 4 - }, - "0xfc421ad3c883bf9e7c4f42de845c4e4405799e73": { - "address": "0xfc421ad3c883bf9e7c4f42de845c4e4405799e73", - "symbol": "GHO", - "decimals": 18, - "name": "GHO", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/43114/0xfc421ad3c883bf9e7c4f42de845c4e4405799e73.png", - "aggregators": ["PangolinDex", "LiFi", "Rubic", "Rango"], - "occurrences": 4 - }, - "0x8835a2f66a7aaccb297cb985831a616b75e2e16c": { - "address": "0x8835a2f66a7aaccb297cb985831a616b75e2e16c", - "symbol": "EUROP", - "decimals": 6, - "name": "EURØP", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/43114/0x8835a2f66a7aaccb297cb985831a616b75e2e16c.png", - "aggregators": ["CoinGecko", "Rubic", "Squid", "Rango"], - "occurrences": 4 - }, - "0xf9fb20b8e097904f0ab7d12e9dbee88f2dcd0f16": { - "address": "0xf9fb20b8e097904f0ab7d12e9dbee88f2dcd0f16", - "symbol": "SBC", - "decimals": 18, - "name": "SBC", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/43114/0xf9fb20b8e097904f0ab7d12e9dbee88f2dcd0f16.png", - "aggregators": ["CoinGecko", "Socket", "Rubic", "Rango"], - "occurrences": 4 - }, - "0x397bbd6a0e41bdf4c3f971731e180db8ad06ebc1": { - "address": "0x397bbd6a0e41bdf4c3f971731e180db8ad06ebc1", - "symbol": "AVXT", - "decimals": 6, - "name": "Avaxtars", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/43114/0x397bbd6a0e41bdf4c3f971731e180db8ad06ebc1.png", - "aggregators": ["PangolinDex", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0x7086e045b78e1e72f741f25231c08d238812cf8a": { - "address": "0x7086e045b78e1e72f741f25231c08d238812cf8a", - "symbol": "RACEX", - "decimals": 18, - "name": "RaceX", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/43114/0x7086e045b78e1e72f741f25231c08d238812cf8a.png", - "aggregators": ["PangolinDex", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0xe0ce60af0850bf54072635e66e79df17082a1109": { - "address": "0xe0ce60af0850bf54072635e66e79df17082a1109", - "symbol": "ICE", - "decimals": 18, - "name": "Ice Token", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/43114/0xe0ce60af0850bf54072635e66e79df17082a1109.png", - "aggregators": ["PangolinDex", "Socket", "Rubic", "SushiSwap"], - "occurrences": 4 - }, - "0x3eefb18003d033661f84e48360ebecd181a84709": { - "address": "0x3eefb18003d033661f84e48360ebecd181a84709", - "symbol": "ISA", - "decimals": 18, - "name": "Islander", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/43114/0x3eefb18003d033661f84e48360ebecd181a84709.png", - "aggregators": ["PangolinDex", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0xf32398dae246c5f672b52a54e9b413dffcae1a44": { - "address": "0xf32398dae246c5f672b52a54e9b413dffcae1a44", - "symbol": "KACY", - "decimals": 18, - "name": "Kassandra", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/43114/0xf32398dae246c5f672b52a54e9b413dffcae1a44.png", - "aggregators": ["PangolinDex", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0xf03dccaec9a28200a6708c686cf0b8bf26ddc356": { - "address": "0xf03dccaec9a28200a6708c686cf0b8bf26ddc356", - "symbol": "YDR", - "decimals": 18, - "name": "YDragon", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/43114/0xf03dccaec9a28200a6708c686cf0b8bf26ddc356.png", - "aggregators": ["PangolinDex", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0x51e48670098173025c477d9aa3f0eff7bf9f7812": { - "address": "0x51e48670098173025c477d9aa3f0eff7bf9f7812", - "symbol": "DGNX", - "decimals": 18, - "name": "DegenX", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/43114/0x51e48670098173025c477d9aa3f0eff7bf9f7812.png", - "aggregators": ["PangolinDex", "Socket", "Rubic", "Sonarwatch"], - "occurrences": 4 - }, - "0x7698a5311da174a95253ce86c21ca7272b9b05f8": { - "address": "0x7698a5311da174a95253ce86c21ca7272b9b05f8", - "symbol": "WINK", - "decimals": 18, - "name": "Wink", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/43114/0x7698a5311da174a95253ce86c21ca7272b9b05f8.png", - "aggregators": ["TraderJoe", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0x73831e7c5577859fb0583af97c9c68f96a43fcb6": { - "address": "0x73831e7c5577859fb0583af97c9c68f96a43fcb6", - "symbol": "$AIGG", - "decimals": 18, - "name": "AIGG", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/43114/0x73831e7c5577859fb0583af97c9c68f96a43fcb6.png", - "aggregators": ["TraderJoe", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0x885c3a3a4998f0b5ac367a46217e68a200737a32": { - "address": "0x885c3a3a4998f0b5ac367a46217e68a200737a32", - "symbol": "ALBERT", - "decimals": 18, - "name": "ALBERT", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/43114/0x885c3a3a4998f0b5ac367a46217e68a200737a32.png", - "aggregators": ["TraderJoe", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0xb57b25851fe2311cc3fe511c8f10e868932e0680": { - "address": "0xb57b25851fe2311cc3fe511c8f10e868932e0680", - "symbol": "DEUSD", - "decimals": 18, - "name": "Elixir deUSD", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/43114/0xb57b25851fe2311cc3fe511c8f10e868932e0680.png", - "aggregators": ["TraderJoe", "LiFi", "Rubic", "Rango"], - "occurrences": 4 - }, - "0x47afa96cdc9fab46904a55a6ad4bf6660b53c38a": { - "address": "0x47afa96cdc9fab46904a55a6ad4bf6660b53c38a", - "symbol": "AVDAI", - "decimals": 18, - "name": "Aave Avalanche Market DAI", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/43114/0x47afa96cdc9fab46904a55a6ad4bf6660b53c38a.png", - "aggregators": ["1inch", "LiFi", "Socket", "Rubic"], - "occurrences": 4 - }, - "0x532e6537fea298397212f09a61e03311686f548e": { - "address": "0x532e6537fea298397212f09a61e03311686f548e", - "symbol": "AVUSDT", - "decimals": 6, - "name": "Aave Avalanche Market USDT", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/43114/0x532e6537fea298397212f09a61e03311686f548e.png", - "aggregators": ["1inch", "LiFi", "Socket", "Rubic"], - "occurrences": 4 - }, - "0x46a51127c3ce23fb7ab1de06226147f446e4a857": { - "address": "0x46a51127c3ce23fb7ab1de06226147f446e4a857", - "symbol": "AVUSDC", - "decimals": 6, - "name": "Aave Avalanche Market USDC", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/43114/0x46a51127c3ce23fb7ab1de06226147f446e4a857.png", - "aggregators": ["1inch", "LiFi", "Socket", "Rubic"], - "occurrences": 4 - }, - "0x686bef2417b6dc32c50a3cbfbcc3bb60e1e9a15d": { - "address": "0x686bef2417b6dc32c50a3cbfbcc3bb60e1e9a15d", - "symbol": "AVWBTC", - "decimals": 8, - "name": "Aave Avalanche Market WBTC", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/43114/0x686bef2417b6dc32c50a3cbfbcc3bb60e1e9a15d.png", - "aggregators": ["1inch", "LiFi", "Socket", "Rubic"], - "occurrences": 4 - }, - "0xdfe521292ece2a4f44242efbcd66bc594ca9714b": { - "address": "0xdfe521292ece2a4f44242efbcd66bc594ca9714b", - "symbol": "AVWAVAX", - "decimals": 18, - "name": "Aave Avalanche Market WAVAX", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/43114/0xdfe521292ece2a4f44242efbcd66bc594ca9714b.png", - "aggregators": ["1inch", "LiFi", "Socket", "Rubic"], - "occurrences": 4 - }, - "0xccf719c44e2c36e919335692e89d22cf13d6aaeb": { - "address": "0xccf719c44e2c36e919335692e89d22cf13d6aaeb", - "symbol": "OBX", - "decimals": 18, - "name": "OpenBlox", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/43114/0xccf719c44e2c36e919335692e89d22cf13d6aaeb.png", - "aggregators": ["Socket", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0xf99516bc189af00ff8effd5a1f2295b67d70a90e": { - "address": "0xf99516bc189af00ff8effd5a1f2295b67d70a90e", - "symbol": "ART", - "decimals": 18, - "name": "ART", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/43114/0xf99516bc189af00ff8effd5a1f2295b67d70a90e.png", - "aggregators": ["CoinGecko", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x595c8481c48894771ce8fade54ac6bf59093f9e8": { - "address": "0x595c8481c48894771ce8fade54ac6bf59093f9e8", - "symbol": "GAJ", - "decimals": 18, - "name": "Gaj Finance", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/43114/0x595c8481c48894771ce8fade54ac6bf59093f9e8.png", - "aggregators": ["PangolinDex", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x00ee200df31b869a321b10400da10b561f3ee60d": { - "address": "0x00ee200df31b869a321b10400da10b561f3ee60d", - "symbol": "ACRE", - "decimals": 18, - "name": "Arable Protocol", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/43114/0x00ee200df31b869a321b10400da10b561f3ee60d.png", - "aggregators": ["PangolinDex", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x449674b82f05d498e126dd6615a1057a9c088f2c": { - "address": "0x449674b82f05d498e126dd6615a1057a9c088f2c", - "symbol": "LOST", - "decimals": 18, - "name": "LOST", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/43114/0x449674b82f05d498e126dd6615a1057a9c088f2c.png", - "aggregators": ["PangolinDex", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x1111111111182587795ef1098ac7da81a108c97a": { - "address": "0x1111111111182587795ef1098ac7da81a108c97a", - "symbol": "BPT", - "decimals": 18, - "name": "Bold Point Token", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/43114/0x1111111111182587795ef1098ac7da81a108c97a.png", - "aggregators": ["PangolinDex", "Socket", "Rubic"], - "occurrences": 3 - }, - "0x0f34919404a290e71fc6a510cb4a6acb8d764b24": { - "address": "0x0f34919404a290e71fc6a510cb4a6acb8d764b24", - "symbol": "BLZZ", - "decimals": 18, - "name": "BLZZ", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/43114/0x0f34919404a290e71fc6a510cb4a6acb8d764b24.png", - "aggregators": ["Socket", "Rubic", "Rango"], - "occurrences": 3 - }, - "0xc55036b5348cfb45a932481744645985010d3a44": { - "address": "0xc55036b5348cfb45a932481744645985010d3a44", - "symbol": "WINE", - "decimals": 18, - "name": "Wine Shares", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/43114/0xc55036b5348cfb45a932481744645985010d3a44.png", - "aggregators": ["Rubic", "Rango", "SushiSwap"], - "occurrences": 3 - }, - "0xffff003a6bad9b743d658048742935fffe2b6ed7": { - "address": "0xffff003a6bad9b743d658048742935fffe2b6ed7", - "symbol": "KET", - "decimals": 18, - "name": "Ket", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/43114/0xffff003a6bad9b743d658048742935fffe2b6ed7.png", - "aggregators": [ - "TraderJoe", - "1inch", - "LiFi", - "Rubic", - "Squid", - "Rango", - "Sonarwatch" - ], - "occurrences": 7 - }, - "0xb2f85b7ab3c2b6f62df06de6ae7d09c010a5096e": { - "address": "0xb2f85b7ab3c2b6f62df06de6ae7d09c010a5096e", - "symbol": "XSGD", - "decimals": 6, - "name": "XSGD", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/43114/0xb2f85b7ab3c2b6f62df06de6ae7d09c010a5096e.png", - "aggregators": [ - "TraderJoe", - "LiFi", - "Socket", - "Rubic", - "Squid", - "Rango", - "Sonarwatch" - ], - "occurrences": 7 - }, - "0x00000000efe302beaa2b3e6e1b18d08d69a9012a": { - "address": "0x00000000efe302beaa2b3e6e1b18d08d69a9012a", - "symbol": "AUSD", - "decimals": 6, - "name": "AUSD", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/43114/0x00000000efe302beaa2b3e6e1b18d08d69a9012a.png", - "aggregators": [ - "TraderJoe", - "LiFi", - "Socket", - "Rubic", - "Squid", - "Rango", - "Sonarwatch" - ], - "occurrences": 7 - }, - "0x2147efff675e4a4ee1c2f918d181cdbd7a8e208f": { - "address": "0x2147efff675e4a4ee1c2f918d181cdbd7a8e208f", - "symbol": "ALPHA.E", - "decimals": 18, - "name": "AlphaToken", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/43114/0x2147efff675e4a4ee1c2f918d181cdbd7a8e208f.png", - "aggregators": [ - "CoinGecko", - "LiFi", - "TrustWallet", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 7 - }, - "0xb8d7710f7d8349a506b75dd184f05777c82dad0c": { - "address": "0xb8d7710f7d8349a506b75dd184f05777c82dad0c", - "symbol": "ARENA", - "decimals": 18, - "name": "The Arena", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/43114/0xb8d7710f7d8349a506b75dd184f05777c82dad0c.png", - "aggregators": [ - "TraderJoe", - "LiFi", - "Rubic", - "Squid", - "Rango", - "Sonarwatch" - ], - "occurrences": 6 - }, - "0xaaab9d12a30504559b0c5a9a5977fee4a6081c6b": { - "address": "0xaaab9d12a30504559b0c5a9a5977fee4a6081c6b", - "symbol": "PHAR", - "decimals": 18, - "name": "Pharaoh", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/43114/0xaaab9d12a30504559b0c5a9a5977fee4a6081c6b.png", - "aggregators": [ - "TraderJoe", - "LiFi", - "Rubic", - "Squid", - "Rango", - "Sonarwatch" - ], - "occurrences": 6 - }, - "0x7d1232b90d3f809a54eeaeebc639c62df8a8942f": { - "address": "0x7d1232b90d3f809a54eeaeebc639c62df8a8942f", - "symbol": "SB", - "decimals": 9, - "name": "Snowbank", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/43114/0x7d1232b90d3f809a54eeaeebc639c62df8a8942f.png", - "aggregators": [ - "CoinGecko", - "LiFi", - "Rubic", - "Squid", - "Rango", - "Sonarwatch" - ], - "occurrences": 6 - }, - "0x48f88a3fe843ccb0b5003e70b4192c1d7448bef0": { - "address": "0x48f88a3fe843ccb0b5003e70b4192c1d7448bef0", - "symbol": "CAI", - "decimals": 18, - "name": "Colony Avalanche Index", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/43114/0x48f88a3fe843ccb0b5003e70b4192c1d7448bef0.png", - "aggregators": [ - "TraderJoe", - "Socket", - "Rubic", - "Squid", - "Rango", - "Sonarwatch" - ], - "occurrences": 6 - }, - "0x093783055f9047c2bff99c4e414501f8a147bc69": { - "address": "0x093783055f9047c2bff99c4e414501f8a147bc69", - "symbol": "ALOT", - "decimals": 18, - "name": "Dexalot", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/43114/0x093783055f9047c2bff99c4e414501f8a147bc69.png", - "aggregators": [ - "TraderJoe", - "LiFi", - "Rubic", - "Squid", - "Rango", - "Sonarwatch" - ], - "occurrences": 6 - }, - "0x6afd5a1ea4b793cc1526d6dc7e99a608b356ef7b": { - "address": "0x6afd5a1ea4b793cc1526d6dc7e99a608b356ef7b", - "symbol": "STORM", - "decimals": 18, - "name": "Storm", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/43114/0x6afd5a1ea4b793cc1526d6dc7e99a608b356ef7b.png", - "aggregators": [ - "CoinGecko", - "LiFi", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 6 - }, - "0x38f9bf9dce51833ec7f03c9dc218197999999999": { - "address": "0x38f9bf9dce51833ec7f03c9dc218197999999999", - "symbol": "NYA", - "decimals": 18, - "name": "Nya", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/43114/0x38f9bf9dce51833ec7f03c9dc218197999999999.png", - "aggregators": [ - "CoinGecko", - "Socket", - "Rubic", - "Squid", - "Rango", - "Sonarwatch" - ], - "occurrences": 6 - }, - "0xdf474b7109b73b7d57926d43598d5934131136b2": { - "address": "0xdf474b7109b73b7d57926d43598d5934131136b2", - "symbol": "ANKR", - "decimals": 18, - "name": "Ankr Network", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/43114/0xdf474b7109b73b7d57926d43598d5934131136b2.png", - "aggregators": [ - "CoinGecko", - "LiFi", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 6 - }, - "0x228a48df6819ccc2eca01e2192ebafffdad56c19": { - "address": "0x228a48df6819ccc2eca01e2192ebafffdad56c19", - "symbol": "VCHF", - "decimals": 18, - "name": "VNX Swiss Franc", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/43114/0x228a48df6819ccc2eca01e2192ebafffdad56c19.png", - "aggregators": [ - "CoinGecko", - "LiFi", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 6 - }, - "0xe15bcb9e0ea69e6ab9fa080c4c4a5632896298c3": { - "address": "0xe15bcb9e0ea69e6ab9fa080c4c4a5632896298c3", - "symbol": "BAL", - "decimals": 18, - "name": "Balancer", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/43114/0xe15bcb9e0ea69e6ab9fa080c4c4a5632896298c3.png", - "aggregators": [ - "CoinGecko", - "LiFi", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 6 - }, - "0x5fc17416925789e0852fbfcd81c490ca4abc51f9": { - "address": "0x5fc17416925789e0852fbfcd81c490ca4abc51f9", - "symbol": "SURE", - "decimals": 18, - "name": "inSure", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/43114/0x5fc17416925789e0852fbfcd81c490ca4abc51f9.png", - "aggregators": [ - "PangolinDex", - "TrustWallet", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 6 - }, - "0xfe6b19286885a4f7f55adad09c3cd1f906d2478f": { - "address": "0xfe6b19286885a4f7f55adad09c3cd1f906d2478f", - "symbol": "SOL", - "decimals": 9, - "name": "SOL (Portal)", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/43114/0xfe6b19286885a4f7f55adad09c3cd1f906d2478f.png", - "aggregators": [ - "TraderJoe", - "LiFi", - "TrustWallet", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 6 - }, - "0x8ebaf22b6f053dffeaf46f4dd9efa95d89ba8580": { - "address": "0x8ebaf22b6f053dffeaf46f4dd9efa95d89ba8580", - "symbol": "UNI.E", - "decimals": 18, - "name": "Uniswap", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/43114/0x8ebaf22b6f053dffeaf46f4dd9efa95d89ba8580.png", - "aggregators": [ - "PangolinDex", - "LiFi", - "TrustWallet", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 6 - }, - "0x6b289cceaa8639e3831095d75a3e43520fabf552": { - "address": "0x6b289cceaa8639e3831095d75a3e43520fabf552", - "symbol": "CTSI", - "decimals": 18, - "name": "Cartesi", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/43114/0x6b289cceaa8639e3831095d75a3e43520fabf552.png", - "aggregators": [ - "CoinGecko", - "LiFi", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 6 - }, - "0x2598c30330d5771ae9f983979209486ae26de875": { - "address": "0x2598c30330d5771ae9f983979209486ae26de875", - "symbol": "AI", - "decimals": 18, - "name": "Any Inu", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/43114/0x2598c30330d5771ae9f983979209486ae26de875.png", - "aggregators": [ - "TraderJoe", - "Socket", - "Rubic", - "Squid", - "Rango", - "Sonarwatch" - ], - "occurrences": 6 - }, - "0x96e1056a8814de39c8c3cd0176042d6cecd807d7": { - "address": "0x96e1056a8814de39c8c3cd0176042d6cecd807d7", - "symbol": "OSAK", - "decimals": 18, - "name": "Osaka Protocol", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/43114/0x96e1056a8814de39c8c3cd0176042d6cecd807d7.png", - "aggregators": [ - "TraderJoe", - "Socket", - "Rubic", - "Rango", - "Sonarwatch", - "SushiSwap" - ], - "occurrences": 6 - }, - "0x39fc9e94caeacb435842fadedecb783589f50f5f": { - "address": "0x39fc9e94caeacb435842fadedecb783589f50f5f", - "symbol": "KNC", - "decimals": 18, - "name": "Kyber Network Crystal v2", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/43114/0x39fc9e94caeacb435842fadedecb783589f50f5f.png", - "aggregators": [ - "CoinGecko", - "LiFi", - "TrustWallet", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 6 - }, - "0xe7d69acbc00d0ec5d9c02162310ee21daa77f69c": { - "address": "0xe7d69acbc00d0ec5d9c02162310ee21daa77f69c", - "symbol": "COQAI", - "decimals": 18, - "name": "COQ AI", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/43114/0xe7d69acbc00d0ec5d9c02162310ee21daa77f69c.png", - "aggregators": [ - "TraderJoe", - "Rubic", - "Squid", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x107d2b7c619202d994a4d044c762dd6f8e0c5326": { - "address": "0x107d2b7c619202d994a4d044c762dd6f8e0c5326", - "symbol": "FLDX", - "decimals": 18, - "name": "Flair Dex", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/43114/0x107d2b7c619202d994a4d044c762dd6f8e0c5326.png", - "aggregators": [ - "CoinGecko", - "LiFi", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x79ea4e536f598dcd67c76ee3829f84ab9e72a558": { - "address": "0x79ea4e536f598dcd67c76ee3829f84ab9e72a558", - "symbol": "AI9000", - "decimals": 18, - "name": "ai9000", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/43114/0x79ea4e536f598dcd67c76ee3829f84ab9e72a558.png", - "aggregators": [ - "TraderJoe", - "Rubic", - "Squid", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x19c79f282d151995d91f6dbdda2739701f9c47aa": { - "address": "0x19c79f282d151995d91f6dbdda2739701f9c47aa", - "symbol": "BEAR", - "decimals": 18, - "name": "Bear", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/43114/0x19c79f282d151995d91f6dbdda2739701f9c47aa.png", - "aggregators": [ - "CoinGecko", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x2d0afed89a6d6a100273db377dba7a32c739e314": { - "address": "0x2d0afed89a6d6a100273db377dba7a32c739e314", - "symbol": "BIG", - "decimals": 18, - "name": "BIG", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/43114/0x2d0afed89a6d6a100273db377dba7a32c739e314.png", - "aggregators": [ - "TraderJoe", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x6c14c1898c843ff66ca51e87244690bbc28df215": { - "address": "0x6c14c1898c843ff66ca51e87244690bbc28df215", - "symbol": "ORNG", - "decimals": 18, - "name": "ORANGE", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/43114/0x6c14c1898c843ff66ca51e87244690bbc28df215.png", - "aggregators": [ - "CoinGecko", - "LiFi", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x6d923f688c7ff287dc3a5943caeefc994f97b290": { - "address": "0x6d923f688c7ff287dc3a5943caeefc994f97b290", - "symbol": "SMRTR", - "decimals": 18, - "name": "SmarterCoin", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/43114/0x6d923f688c7ff287dc3a5943caeefc994f97b290.png", - "aggregators": [ - "TraderJoe", - "1inch", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x46b9144771cb3195d66e4eda643a7493fadcaf9d": { - "address": "0x46b9144771cb3195d66e4eda643a7493fadcaf9d", - "symbol": "$BLS", - "decimals": 18, - "name": "BloodLoop", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/43114/0x46b9144771cb3195d66e4eda643a7493fadcaf9d.png", - "aggregators": [ - "TraderJoe", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x5ecfec22aa950cb5a3b4fd7249dc30b2bd160f18": { - "address": "0x5ecfec22aa950cb5a3b4fd7249dc30b2bd160f18", - "symbol": "TAROT", - "decimals": 18, - "name": "Tarot", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/43114/0x5ecfec22aa950cb5a3b4fd7249dc30b2bd160f18.png", - "aggregators": [ - "CoinGecko", - "LiFi", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0xd3ac016b1b8c80eeadde4d186a9138c9324e4189": { - "address": "0xd3ac016b1b8c80eeadde4d186a9138c9324e4189", - "symbol": "OK", - "decimals": 18, - "name": "Okcash", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/43114/0xd3ac016b1b8c80eeadde4d186a9138c9324e4189.png", - "aggregators": [ - "CoinGecko", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x33333ee26a7d02e41c33828b42fb1e0889143477": { - "address": "0x33333ee26a7d02e41c33828b42fb1e0889143477", - "symbol": "LIQR", - "decimals": 18, - "name": "Topshelf Finance", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/43114/0x33333ee26a7d02e41c33828b42fb1e0889143477.png", - "aggregators": [ - "CoinGecko", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x3d8f74620857dd8ed6d0da02ceb13fd0ed8ba678": { - "address": "0x3d8f74620857dd8ed6d0da02ceb13fd0ed8ba678", - "symbol": "ONX", - "decimals": 18, - "name": "OnX Finance", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/43114/0x3d8f74620857dd8ed6d0da02ceb13fd0ed8ba678.png", - "aggregators": [ - "CoinGecko", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x644192291cc835a93d6330b24ea5f5fedd0eef9e": { - "address": "0x644192291cc835a93d6330b24ea5f5fedd0eef9e", - "symbol": "NXRA", - "decimals": 18, - "name": "Nexera", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/43114/0x644192291cc835a93d6330b24ea5f5fedd0eef9e.png", - "aggregators": [ - "CoinGecko", - "LiFi", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x7678e162f38ec9ef2bfd1d0aaf9fd93355e5fa0b": { - "address": "0x7678e162f38ec9ef2bfd1d0aaf9fd93355e5fa0b", - "symbol": "VEUR", - "decimals": 18, - "name": "VNX EURO", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/43114/0x7678e162f38ec9ef2bfd1d0aaf9fd93355e5fa0b.png", - "aggregators": [ - "CoinGecko", - "LiFi", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0xc685e8eddc9f078666794cbfcd8d8351bac404ef": { - "address": "0xc685e8eddc9f078666794cbfcd8d8351bac404ef", - "symbol": "ULX", - "decimals": 18, - "name": "ULTRON", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/43114/0xc685e8eddc9f078666794cbfcd8d8351bac404ef.png", - "aggregators": [ - "CoinGecko", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x444444444444c1a66f394025ac839a535246fcc8": { - "address": "0x444444444444c1a66f394025ac839a535246fcc8", - "symbol": "GENI", - "decimals": 9, - "name": "Genius", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/43114/0x444444444444c1a66f394025ac839a535246fcc8.png", - "aggregators": [ - "CoinGecko", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0xe5caef4af8780e59df925470b050fb23c43ca68c": { - "address": "0xe5caef4af8780e59df925470b050fb23c43ca68c", - "symbol": "FRM", - "decimals": 18, - "name": "Ferrum Network", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/43114/0xe5caef4af8780e59df925470b050fb23c43ca68c.png", - "aggregators": [ - "CoinGecko", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x03e8d118a1864c7dc53bf91e007ab7d91f5a06fa": { - "address": "0x03e8d118a1864c7dc53bf91e007ab7d91f5a06fa", - "symbol": "DEXTF", - "decimals": 18, - "name": "Memento", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/43114/0x03e8d118a1864c7dc53bf91e007ab7d91f5a06fa.png", - "aggregators": [ - "CoinGecko", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0xcaf5191fc480f43e4df80106c7695eca56e48b18": { - "address": "0xcaf5191fc480f43e4df80106c7695eca56e48b18", - "symbol": "AKITA", - "decimals": 18, - "name": "Akita Inu", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/43114/0xcaf5191fc480f43e4df80106c7695eca56e48b18.png", - "aggregators": [ - "CoinGecko", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0xb09fe1613fe03e7361319d2a43edc17422f36b09": { - "address": "0xb09fe1613fe03e7361319d2a43edc17422f36b09", - "symbol": "BOG", - "decimals": 18, - "name": "Bogged Finance", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/43114/0xb09fe1613fe03e7361319d2a43edc17422f36b09.png", - "aggregators": [ - "CoinGecko", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x511d35c52a3c244e7b8bd92c0c297755fbd89212": { - "address": "0x511d35c52a3c244e7b8bd92c0c297755fbd89212", - "symbol": "BETA", - "decimals": 18, - "name": "Beta Finance", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/43114/0x511d35c52a3c244e7b8bd92c0c297755fbd89212.png", - "aggregators": [ - "CoinGecko", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x97cd1cfe2ed5712660bb6c14053c0ecb031bff7d": { - "address": "0x97cd1cfe2ed5712660bb6c14053c0ecb031bff7d", - "symbol": "RAI", - "decimals": 18, - "name": "Rai Reflex Index", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/43114/0x97cd1cfe2ed5712660bb6c14053c0ecb031bff7d.png", - "aggregators": [ - "CoinGecko", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0xbd83010eb60f12112908774998f65761cf9f6f9a": { - "address": "0xbd83010eb60f12112908774998f65761cf9f6f9a", - "symbol": "BOO", - "decimals": 18, - "name": "Spookyswap", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/43114/0xbd83010eb60f12112908774998f65761cf9f6f9a.png", - "aggregators": [ - "CoinGecko", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x2cf51e73c3516f3d86e9c0b4de0971dbf0766fd4": { - "address": "0x2cf51e73c3516f3d86e9c0b4de0971dbf0766fd4", - "symbol": "XIO", - "decimals": 18, - "name": "Blockzero Labs", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/43114/0x2cf51e73c3516f3d86e9c0b4de0971dbf0766fd4.png", - "aggregators": [ - "CoinGecko", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x23675ba5d0a8075da5ba18756554e7633cea2c85": { - "address": "0x23675ba5d0a8075da5ba18756554e7633cea2c85", - "symbol": "RST", - "decimals": 18, - "name": "Raini Studios Token", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/43114/0x23675ba5d0a8075da5ba18756554e7633cea2c85.png", - "aggregators": [ - "TraderJoe", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0xc0fbc4967259786c743361a5885ef49380473dcf": { - "address": "0xc0fbc4967259786c743361a5885ef49380473dcf", - "symbol": "ALEPH", - "decimals": 18, - "name": "Aleph.im", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/43114/0xc0fbc4967259786c743361a5885ef49380473dcf.png", - "aggregators": [ - "TraderJoe", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x9fb9a33956351cf4fa040f65a13b835a3c8764e3": { - "address": "0x9fb9a33956351cf4fa040f65a13b835a3c8764e3", - "symbol": "MULTI", - "decimals": 18, - "name": "Multichain", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/43114/0x9fb9a33956351cf4fa040f65a13b835a3c8764e3.png", - "aggregators": [ - "CoinGecko", - "LiFi", - "Socket", - "Rubic", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x4e3642603a75528489c2d94f86e9507260d3c5a1": { - "address": "0x4e3642603a75528489c2d94f86e9507260d3c5a1", - "symbol": "JGN", - "decimals": 18, - "name": "Juggernaut", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/43114/0x4e3642603a75528489c2d94f86e9507260d3c5a1.png", - "aggregators": [ - "CoinGecko", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0xd7c295e399ca928a3a14b01d760e794f1adf8990": { - "address": "0xd7c295e399ca928a3a14b01d760e794f1adf8990", - "symbol": "DSLA", - "decimals": 18, - "name": "DSLA Protocol", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/43114/0xd7c295e399ca928a3a14b01d760e794f1adf8990.png", - "aggregators": [ - "CoinGecko", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x806cc7a21bd85e960857ac1e097802fabad6f594": { - "address": "0x806cc7a21bd85e960857ac1e097802fabad6f594", - "symbol": "EARN", - "decimals": 18, - "name": "HOLD", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/43114/0x806cc7a21bd85e960857ac1e097802fabad6f594.png", - "aggregators": [ - "CoinGecko", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0xafe3d2a31231230875dee1fa1eef14a412443d22": { - "address": "0xafe3d2a31231230875dee1fa1eef14a412443d22", - "symbol": "DFIAT", - "decimals": 18, - "name": "DeFiato", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/43114/0xafe3d2a31231230875dee1fa1eef14a412443d22.png", - "aggregators": [ - "CoinGecko", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x120ad3e5a7c796349e591f1570d9f7980f4ea9cb": { - "address": "0x120ad3e5a7c796349e591f1570d9f7980f4ea9cb", - "symbol": "LUNA", - "decimals": 6, - "name": "LUNA", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/43114/0x120ad3e5a7c796349e591f1570d9f7980f4ea9cb.png", - "aggregators": ["PangolinDex", "Socket", "Rubic", "Squid", "Rango"], - "occurrences": 5 - }, - "0xd9d90f882cddd6063959a9d837b05cb748718a05": { - "address": "0xd9d90f882cddd6063959a9d837b05cb748718a05", - "symbol": "MORE", - "decimals": 18, - "name": "Moremoney Finance", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/43114/0xd9d90f882cddd6063959a9d837b05cb748718a05.png", - "aggregators": [ - "PangolinDex", - "LiFi", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x80d18b1c9ab0c9b5d6a6d5173575417457d00a12": { - "address": "0x80d18b1c9ab0c9b5d6a6d5173575417457d00a12", - "symbol": "AXLATOM", - "decimals": 6, - "name": "Axelar Wrapped ATOM", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/43114/0x80d18b1c9ab0c9b5d6a6d5173575417457d00a12.png", - "aggregators": ["PangolinDex", "LiFi", "Rubic", "Squid", "Rango"], - "occurrences": 5 - }, - "0x19860ccb0a68fd4213ab9d8266f7bbf05a8dde98": { - "address": "0x19860ccb0a68fd4213ab9d8266f7bbf05a8dde98", - "symbol": "BUSD.E", - "decimals": 18, - "name": "Binance USD", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/43114/0x19860ccb0a68fd4213ab9d8266f7bbf05a8dde98.png", - "aggregators": [ - "PangolinDex", - "LiFi", - "TrustWallet", - "Rubic", - "Rango" - ], - "occurrences": 5 - }, - "0x783c08b5f26e3daf8c4681f3bf49844e425b6393": { - "address": "0x783c08b5f26e3daf8c4681f3bf49844e425b6393", - "symbol": "AUSD", - "decimals": 18, - "name": "AUSD", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/43114/0x783c08b5f26e3daf8c4681f3bf49844e425b6393.png", - "aggregators": ["PangolinDex", "LiFi", "Socket", "Rubic", "Rango"], - "occurrences": 5 - }, - "0x096d19b58cab84a2f0ff0e81c08291bffaa62848": { - "address": "0x096d19b58cab84a2f0ff0e81c08291bffaa62848", - "symbol": "SHOE", - "decimals": 18, - "name": "Shoe404", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/43114/0x096d19b58cab84a2f0ff0e81c08291bffaa62848.png", - "aggregators": [ - "TraderJoe", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0xf20d962a6c8f70c731bd838a3a388d7d48fa6e15": { - "address": "0xf20d962a6c8f70c731bd838a3a388d7d48fa6e15", - "symbol": "OLDWETH", - "decimals": 18, - "name": "Old Wrapped Ether", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/43114/0xf20d962a6c8f70c731bd838a3a388d7d48fa6e15.png", - "aggregators": ["Socket", "Rubic", "Squid", "Rango", "SushiSwap"], - "occurrences": 5 - }, - "0x694200a68b18232916353250955be220e88c5cbb": { - "address": "0x694200a68b18232916353250955be220e88c5cbb", - "symbol": "KOVIN", - "decimals": 18, - "name": "Kovin Segnocchi", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/43114/0x694200a68b18232916353250955be220e88c5cbb.png", - "aggregators": ["TraderJoe", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0x7bddaf6dbab30224aa2116c4291521c7a60d5f55": { - "address": "0x7bddaf6dbab30224aa2116c4291521c7a60d5f55", - "symbol": "VAPE", - "decimals": 18, - "name": "VAPE", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/43114/0x7bddaf6dbab30224aa2116c4291521c7a60d5f55.png", - "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0xc654721fbf1f374fd9ffa3385bba2f4932a6af55": { - "address": "0xc654721fbf1f374fd9ffa3385bba2f4932a6af55", - "symbol": "JUICY", - "decimals": 18, - "name": "JUICY", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/43114/0xc654721fbf1f374fd9ffa3385bba2f4932a6af55.png", - "aggregators": ["TraderJoe", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0xca8ebfb8e1460aaac7c272cb9053b3d42412aac2": { - "address": "0xca8ebfb8e1460aaac7c272cb9053b3d42412aac2", - "symbol": "GAU", - "decimals": 18, - "name": "Gamer Arena", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/43114/0xca8ebfb8e1460aaac7c272cb9053b3d42412aac2.png", - "aggregators": ["TraderJoe", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0x997ddaa07d716995de90577c123db411584e5e46": { - "address": "0x997ddaa07d716995de90577c123db411584e5e46", - "symbol": "JEWEL", - "decimals": 18, - "name": "DeFi Kingdoms", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/43114/0x997ddaa07d716995de90577c123db411584e5e46.png", - "aggregators": ["TraderJoe", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0x13b1f0579bc895b2ffb835f295fd9b63fef36da0": { - "address": "0x13b1f0579bc895b2ffb835f295fd9b63fef36da0", - "symbol": "B4FWX", - "decimals": 18, - "name": "Be For FWX", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/43114/0x13b1f0579bc895b2ffb835f295fd9b63fef36da0.png", - "aggregators": ["PangolinDex", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0x88f89be3e9b1dc1c5f208696fb9cabfcc684bd5f": { - "address": "0x88f89be3e9b1dc1c5f208696fb9cabfcc684bd5f", - "symbol": "FLD", - "decimals": 18, - "name": "Fold", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/43114/0x88f89be3e9b1dc1c5f208696fb9cabfcc684bd5f.png", - "aggregators": ["TraderJoe", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0xbbaaa0420d474b34be197f95a323c2ff3829e811": { - "address": "0xbbaaa0420d474b34be197f95a323c2ff3829e811", - "symbol": "LOD3", - "decimals": 17, - "name": "LOD3 Token", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/43114/0xbbaaa0420d474b34be197f95a323c2ff3829e811.png", - "aggregators": ["PangolinDex", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0x9913ba363073ca3e9ea0cd296e36b75af9e40bef": { - "address": "0x9913ba363073ca3e9ea0cd296e36b75af9e40bef", - "symbol": "TRESR", - "decimals": 18, - "name": "NFTREASURE", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/43114/0x9913ba363073ca3e9ea0cd296e36b75af9e40bef.png", - "aggregators": ["TraderJoe", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0xc6bdfc4f2e90196738873e824a9efa03f7c64176": { - "address": "0xc6bdfc4f2e90196738873e824a9efa03f7c64176", - "symbol": "VCNT", - "decimals": 18, - "name": "ViciCoin", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/43114/0xc6bdfc4f2e90196738873e824a9efa03f7c64176.png", - "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0x08d58f06ddfa9b99ae651f68232014be3914c5cd": { - "address": "0x08d58f06ddfa9b99ae651f68232014be3914c5cd", - "symbol": "ERN", - "decimals": 18, - "name": "Ethos Reserve Note", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/43114/0x08d58f06ddfa9b99ae651f68232014be3914c5cd.png", - "aggregators": ["CoinGecko", "Rubic", "Squid", "Rango"], - "occurrences": 4 - }, - "0xee9801669c6138e84bd50deb500827b776777d28": { - "address": "0xee9801669c6138e84bd50deb500827b776777d28", - "symbol": "O3", - "decimals": 18, - "name": "O3 Swap", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/43114/0xee9801669c6138e84bd50deb500827b776777d28.png", - "aggregators": ["CoinGecko", "Socket", "Rubic", "Rango"], - "occurrences": 4 - }, - "0xd4d026322c88c2d49942a75dff920fcfbc5614c1": { - "address": "0xd4d026322c88c2d49942a75dff920fcfbc5614c1", - "symbol": "DEP", - "decimals": 18, - "name": "DEP", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/43114/0xd4d026322c88c2d49942a75dff920fcfbc5614c1.png", - "aggregators": ["PangolinDex", "LiFi", "Rubic", "Rango"], - "occurrences": 4 - }, - "0xb0a8e082e5f8d2a04e74372c1be47737d85a0e73": { - "address": "0xb0a8e082e5f8d2a04e74372c1be47737d85a0e73", - "symbol": "USV", - "decimals": 9, - "name": "Atlas USV", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/43114/0xb0a8e082e5f8d2a04e74372c1be47737d85a0e73.png", - "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0x94025780a1ab58868d9b2dbbb775f44b32e8e6e5": { - "address": "0x94025780a1ab58868d9b2dbbb775f44b32e8e6e5", - "symbol": "BETS", - "decimals": 18, - "name": "BetSwirl", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/43114/0x94025780a1ab58868d9b2dbbb775f44b32e8e6e5.png", - "aggregators": ["TraderJoe", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0xbd3936ec8d83a5d4e73eca625ecfa006da8c8f52": { - "address": "0xbd3936ec8d83a5d4e73eca625ecfa006da8c8f52", - "symbol": "URQA", - "decimals": 18, - "name": "UREEQA", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/43114/0xbd3936ec8d83a5d4e73eca625ecfa006da8c8f52.png", - "aggregators": ["CoinGecko", "Socket", "Rubic", "Rango"], - "occurrences": 4 - }, - "0x81440c939f2c1e34fc7048e518a637205a632a74": { - "address": "0x81440c939f2c1e34fc7048e518a637205a632a74", - "symbol": "CYCLE", - "decimals": 18, - "name": "CYCLE", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/43114/0x81440c939f2c1e34fc7048e518a637205a632a74.png", - "aggregators": ["PangolinDex", "LiFi", "Rubic", "Rango"], - "occurrences": 4 - }, - "0x45c13620b55c35a5f539d26e88247011eb10fdbd": { - "address": "0x45c13620b55c35a5f539d26e88247011eb10fdbd", - "symbol": "HCT", - "decimals": 18, - "name": "HurricaneSwap", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/43114/0x45c13620b55c35a5f539d26e88247011eb10fdbd.png", - "aggregators": ["PangolinDex", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0xf69c2fcd9128d49dfa22348c69177f9380438eb8": { - "address": "0xf69c2fcd9128d49dfa22348c69177f9380438eb8", - "symbol": "NFSG", - "decimals": 6, - "name": "NFT Soccer Games", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/43114/0xf69c2fcd9128d49dfa22348c69177f9380438eb8.png", - "aggregators": ["PangolinDex", "LiFi", "Rubic", "Rango"], - "occurrences": 4 - }, - "0x026187bdbc6b751003517bcb30ac7817d5b766f8": { - "address": "0x026187bdbc6b751003517bcb30ac7817d5b766f8", - "symbol": "H2O", - "decimals": 18, - "name": "Defrost Finance H2O", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/43114/0x026187bdbc6b751003517bcb30ac7817d5b766f8.png", - "aggregators": ["PangolinDex", "LiFi", "Socket", "Rubic"], - "occurrences": 4 - }, - "0x61ecd63e42c27415696e10864d70ecea4aa11289": { - "address": "0x61ecd63e42c27415696e10864d70ecea4aa11289", - "symbol": "RUGPULL", - "decimals": 18, - "name": "Rugpull Prevention", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/43114/0x61ecd63e42c27415696e10864d70ecea4aa11289.png", - "aggregators": ["PangolinDex", "LiFi", "Rubic", "Rango"], - "occurrences": 4 - }, - "0xcf799767d366d789e8b446981c2d578e241fa25c": { - "address": "0xcf799767d366d789e8b446981c2d578e241fa25c", - "symbol": "USDD", - "decimals": 18, - "name": "Decentralized USD", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/43114/0xcf799767d366d789e8b446981c2d578e241fa25c.png", - "aggregators": ["PangolinDex", "TrustWallet", "Socket", "Rubic"], - "occurrences": 4 - }, - "0x333000333b26ee30214b4af6419d9ab07a450400": { - "address": "0x333000333b26ee30214b4af6419d9ab07a450400", - "symbol": "MELD", - "decimals": 18, - "name": "MELD", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/43114/0x333000333b26ee30214b4af6419d9ab07a450400.png", - "aggregators": ["PangolinDex", "Socket", "Rubic", "Rango"], - "occurrences": 4 - }, - "0x769bfeb9faacd6eb2746979a8dd0b7e9920ac2a4": { - "address": "0x769bfeb9faacd6eb2746979a8dd0b7e9920ac2a4", - "symbol": "ZJOE", - "decimals": 18, - "name": "zJOE", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/43114/0x769bfeb9faacd6eb2746979a8dd0b7e9920ac2a4.png", - "aggregators": ["TraderJoe", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0xb44b645b5058f7e393f3ae6af58a4cef67006196": { - "address": "0xb44b645b5058f7e393f3ae6af58a4cef67006196", - "symbol": "STICK", - "decimals": 18, - "name": "Stick", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/43114/0xb44b645b5058f7e393f3ae6af58a4cef67006196.png", - "aggregators": ["TraderJoe", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0xe3b3f75f99da4ff26aa867ef70b48f8f6b2d4958": { - "address": "0xe3b3f75f99da4ff26aa867ef70b48f8f6b2d4958", - "symbol": "$WEAPON", - "decimals": 9, - "name": "Megaweapon", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/43114/0xe3b3f75f99da4ff26aa867ef70b48f8f6b2d4958.png", - "aggregators": ["TraderJoe", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0xbf1230bb63bfd7f5d628ab7b543bcefa8a24b81b": { - "address": "0xbf1230bb63bfd7f5d628ab7b543bcefa8a24b81b", - "symbol": "CHRO", - "decimals": 18, - "name": "Chronicum", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/43114/0xbf1230bb63bfd7f5d628ab7b543bcefa8a24b81b.png", - "aggregators": ["1inch", "Socket", "Rubic", "Rango"], - "occurrences": 4 - }, - "0xb262a485d98d8e19175818d47453e7812ca255a8": { - "address": "0xb262a485d98d8e19175818d47453e7812ca255a8", - "symbol": "BINGO", - "decimals": 18, - "name": "Bingo", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/43114/0xb262a485d98d8e19175818d47453e7812ca255a8.png", - "aggregators": ["1inch", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0xca5d8f8a8d49439357d3cf46ca2e720702f132b8": { - "address": "0xca5d8f8a8d49439357d3cf46ca2e720702f132b8", - "symbol": "GYD", - "decimals": 18, - "name": "Gyroscope GYD", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/43114/0xca5d8f8a8d49439357d3cf46ca2e720702f132b8.png", - "aggregators": ["LiFi", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0x9b06f3c5de42d4623d7a2bd940ec735103c68a76": { - "address": "0x9b06f3c5de42d4623d7a2bd940ec735103c68a76", - "symbol": "VOLTA", - "decimals": 18, - "name": "Volta Club", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/43114/0x9b06f3c5de42d4623d7a2bd940ec735103c68a76.png", - "aggregators": ["LiFi", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0x924157b5dbb387a823719916b25256410a4ad470": { - "address": "0x924157b5dbb387a823719916b25256410a4ad470", - "symbol": "SLOT", - "decimals": 18, - "name": "Snowtomb LOT", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/43114/0x924157b5dbb387a823719916b25256410a4ad470.png", - "aggregators": ["LiFi", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0xf976ba91b6bb3468c91e4f02e68b37bc64a57e66": { - "address": "0xf976ba91b6bb3468c91e4f02e68b37bc64a57e66", - "symbol": "AXLUSDT", - "decimals": 6, - "name": "Axelar Wrapped USDT", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/43114/0xf976ba91b6bb3468c91e4f02e68b37bc64a57e66.png", - "aggregators": ["LiFi", "Rubic", "Squid", "SushiSwap"], - "occurrences": 4 - }, - "0x04f388e30bfd03f357ae061ec5680c7e4ac4cf09": { - "address": "0x04f388e30bfd03f357ae061ec5680c7e4ac4cf09", - "symbol": "LEO", - "decimals": 18, - "name": "LeoAVAX", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/43114/0x04f388e30bfd03f357ae061ec5680c7e4ac4cf09.png", - "aggregators": ["Socket", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0x78ea3fef1c1f07348199bf44f45b803b9b0dbe28": { - "address": "0x78ea3fef1c1f07348199bf44f45b803b9b0dbe28", - "symbol": "FLY", - "decimals": 18, - "name": "Hoppers Game", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/43114/0x78ea3fef1c1f07348199bf44f45b803b9b0dbe28.png", - "aggregators": ["Socket", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0x5478b121ceb140f8114e16b16d1752f3b29d514f": { - "address": "0x5478b121ceb140f8114e16b16d1752f3b29d514f", - "symbol": "FINE", - "decimals": 18, - "name": "FINE", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/43114/0x5478b121ceb140f8114e16b16d1752f3b29d514f.png", - "aggregators": ["Socket", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0x6121191018baf067c6dc6b18d42329447a164f05": { - "address": "0x6121191018baf067c6dc6b18d42329447a164f05", - "symbol": "PIZZA", - "decimals": 18, - "name": "Pizza Game", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/43114/0x6121191018baf067c6dc6b18d42329447a164f05.png", - "aggregators": ["Socket", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0x51707dc661630f8fd624b985fa6ef4f1d4d919db": { - "address": "0x51707dc661630f8fd624b985fa6ef4f1d4d919db", - "symbol": "UNV", - "decimals": 18, - "name": "Unvest", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/43114/0x51707dc661630f8fd624b985fa6ef4f1d4d919db.png", - "aggregators": ["Rubic", "Squid", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0xad090976ce846935dcff1ded852668beed912916": { - "address": "0xad090976ce846935dcff1ded852668beed912916", - "symbol": "OATH", - "decimals": 18, - "name": "OATH", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/43114/0xad090976ce846935dcff1ded852668beed912916.png", - "aggregators": ["Rubic", "Squid", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0x913c61ec3573e5e4ee6488552535fb1be84ff2ac": { - "address": "0x913c61ec3573e5e4ee6488552535fb1be84ff2ac", - "symbol": "XAV", - "decimals": 18, - "name": "Xave", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/43114/0x913c61ec3573e5e4ee6488552535fb1be84ff2ac.png", - "aggregators": ["Rubic", "Squid", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0x9df4ac62f9e435dbcd85e06c990a7f0ea32739a9": { - "address": "0x9df4ac62f9e435dbcd85e06c990a7f0ea32739a9", - "symbol": "GRAIN", - "decimals": 18, - "name": "Granary", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/43114/0x9df4ac62f9e435dbcd85e06c990a7f0ea32739a9.png", - "aggregators": ["Rubic", "Squid", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0xe088d859d8bce513b76dc11c05d559254e28a336": { - "address": "0xe088d859d8bce513b76dc11c05d559254e28a336", - "symbol": "WIFE", - "decimals": 18, - "name": "WIFE", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/43114/0xe088d859d8bce513b76dc11c05d559254e28a336.png", - "aggregators": ["TraderJoe", "Rubic", "Rango"], - "occurrences": 3 - }, - "0xac6e53f1e1ebafda8553c0add8c5b32bcb5890c4": { - "address": "0xac6e53f1e1ebafda8553c0add8c5b32bcb5890c4", - "symbol": "FINANCE", - "decimals": 18, - "name": "FINANCE", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/43114/0xac6e53f1e1ebafda8553c0add8c5b32bcb5890c4.png", - "aggregators": ["PangolinDex", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x3709e8615e02c15b096f8a9b460ccb8ca8194e86": { - "address": "0x3709e8615e02c15b096f8a9b460ccb8ca8194e86", - "symbol": "VEE", - "decimals": 18, - "name": "Vee", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/43114/0x3709e8615e02c15b096f8a9b460ccb8ca8194e86.png", - "aggregators": ["PangolinDex", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x4cb85e39d5622af604405077a589c3078f3a59b2": { - "address": "0x4cb85e39d5622af604405077a589c3078f3a59b2", - "symbol": "CROC", - "decimals": 18, - "name": "CROC", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/43114/0x4cb85e39d5622af604405077a589c3078f3a59b2.png", - "aggregators": ["PangolinDex", "Rubic", "Rango"], - "occurrences": 3 - }, - "0xb9c188bc558a82a1ee9e75ae0857df443f407632": { - "address": "0xb9c188bc558a82a1ee9e75ae0857df443f407632", - "symbol": "GOAT", - "decimals": 18, - "name": "GreatestOfAVAXTrenches", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/43114/0xb9c188bc558a82a1ee9e75ae0857df443f407632.png", - "aggregators": ["PangolinDex", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x5ddc8d968a94cf95cfeb7379f8372d858b9c797d": { - "address": "0x5ddc8d968a94cf95cfeb7379f8372d858b9c797d", - "symbol": "WOLFI", - "decimals": 18, - "name": "WOLFI", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/43114/0x5ddc8d968a94cf95cfeb7379f8372d858b9c797d.png", - "aggregators": ["PangolinDex", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x870982d17cf51d3c304833924eac0ceec4183099": { - "address": "0x870982d17cf51d3c304833924eac0ceec4183099", - "symbol": "BEATR", - "decimals": 18, - "name": "BEATER", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/43114/0x870982d17cf51d3c304833924eac0ceec4183099.png", - "aggregators": ["CoinGecko", "Rubic", "Rango"], - "occurrences": 3 - }, - "0xce8e89bb70aae88fb3fe4784045a718d00eb8e21": { - "address": "0xce8e89bb70aae88fb3fe4784045a718d00eb8e21", - "symbol": "IT", - "decimals": 18, - "name": "Index Token", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/43114/0xce8e89bb70aae88fb3fe4784045a718d00eb8e21.png", - "aggregators": ["CoinGecko", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x34a528da3b2ea5c6ad1796eba756445d1299a577": { - "address": "0x34a528da3b2ea5c6ad1796eba756445d1299a577", - "symbol": "ID", - "decimals": 18, - "name": "Integrity DAO", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/43114/0x34a528da3b2ea5c6ad1796eba756445d1299a577.png", - "aggregators": ["PangolinDex", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x694207a9f708355ee3119f11e55bc5c0b1845ba2": { - "address": "0x694207a9f708355ee3119f11e55bc5c0b1845ba2", - "symbol": "RPEPE", - "decimals": 18, - "name": "Red Pepe", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/43114/0x694207a9f708355ee3119f11e55bc5c0b1845ba2.png", - "aggregators": ["CoinGecko", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x4bf8cf8e8a20d965d585097256ecf2be98a5fbd8": { - "address": "0x4bf8cf8e8a20d965d585097256ecf2be98a5fbd8", - "symbol": "BENIS", - "decimals": 18, - "name": "BENIS", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/43114/0x4bf8cf8e8a20d965d585097256ecf2be98a5fbd8.png", - "aggregators": ["PangolinDex", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x7979871595b80433183950ab6c6457752b585805": { - "address": "0x7979871595b80433183950ab6c6457752b585805", - "symbol": "SECOND", - "decimals": 18, - "name": "MetaDOS", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/43114/0x7979871595b80433183950ab6c6457752b585805.png", - "aggregators": ["TraderJoe", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x66db035009efbcfe9a3decaeafe9fb4ebc5df812": { - "address": "0x66db035009efbcfe9a3decaeafe9fb4ebc5df812", - "symbol": "BTF", - "decimals": 18, - "name": "Bee Trade Finance", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/43114/0x66db035009efbcfe9a3decaeafe9fb4ebc5df812.png", - "aggregators": ["CoinGecko", "Rubic", "Sonarwatch"], - "occurrences": 3 - }, - "0x6f43ff77a9c0cf552b5b653268fbfe26a052429b": { - "address": "0x6f43ff77a9c0cf552b5b653268fbfe26a052429b", - "symbol": "LAMBO", - "decimals": 18, - "name": "LAMBO", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/43114/0x6f43ff77a9c0cf552b5b653268fbfe26a052429b.png", - "aggregators": ["PangolinDex", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x133879524ddb38582cf0b93d10adb789601ff397": { - "address": "0x133879524ddb38582cf0b93d10adb789601ff397", - "symbol": "BORNE", - "decimals": 18, - "name": "BORNE", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/43114/0x133879524ddb38582cf0b93d10adb789601ff397.png", - "aggregators": ["PangolinDex", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x39e58c9b8a539e007b4457a5dd1107b1434d278b": { - "address": "0x39e58c9b8a539e007b4457a5dd1107b1434d278b", - "symbol": "BJUB", - "decimals": 18, - "name": "BABY JUBJUB", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/43114/0x39e58c9b8a539e007b4457a5dd1107b1434d278b.png", - "aggregators": ["CoinGecko", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x1edf79e77693561e80072becbcce1e16dc356aca": { - "address": "0x1edf79e77693561e80072becbcce1e16dc356aca", - "symbol": "APIX", - "decimals": 18, - "name": "APIX", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/43114/0x1edf79e77693561e80072becbcce1e16dc356aca.png", - "aggregators": ["CoinGecko", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x33c8036e99082b0c395374832fecf70c42c7f298": { - "address": "0x33c8036e99082b0c395374832fecf70c42c7f298", - "symbol": "PRIME", - "decimals": 18, - "name": "DeltaPrime", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/43114/0x33c8036e99082b0c395374832fecf70c42c7f298.png", - "aggregators": ["TraderJoe", "Rubic", "Rango"], - "occurrences": 3 - }, - "0xcac4904e1db1589aa17a2ec742f5a6bcf4c4d037": { - "address": "0xcac4904e1db1589aa17a2ec742f5a6bcf4c4d037", - "symbol": "EROL", - "decimals": 18, - "name": "Erol Musk", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/43114/0xcac4904e1db1589aa17a2ec742f5a6bcf4c4d037.png", - "aggregators": ["TraderJoe", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x67ea3abd5cee0b99d743155051c191b09135f93c": { - "address": "0x67ea3abd5cee0b99d743155051c191b09135f93c", - "symbol": "AXD", - "decimals": 18, - "name": "Aesyx Dollar", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/43114/0x67ea3abd5cee0b99d743155051c191b09135f93c.png", - "aggregators": ["PangolinDex", "Rubic", "Rango"], - "occurrences": 3 - }, - "0xf3dd4e0a1db7c5dcbf3b225698cb6a916aeb24d9": { - "address": "0xf3dd4e0a1db7c5dcbf3b225698cb6a916aeb24d9", - "symbol": "APOW", - "decimals": 18, - "name": "APOW", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/43114/0xf3dd4e0a1db7c5dcbf3b225698cb6a916aeb24d9.png", - "aggregators": ["CoinGecko", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x9209e7ebd056d72c5996220e99df6049253debcf": { - "address": "0x9209e7ebd056d72c5996220e99df6049253debcf", - "symbol": "MEOW", - "decimals": 18, - "name": "MEOW", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/43114/0x9209e7ebd056d72c5996220e99df6049253debcf.png", - "aggregators": ["PangolinDex", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x2f0ec0ed7d746936f1aeac5702816d38329ee9e6": { - "address": "0x2f0ec0ed7d746936f1aeac5702816d38329ee9e6", - "symbol": "SLEEP", - "decimals": 18, - "name": "Degen Hours", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/43114/0x2f0ec0ed7d746936f1aeac5702816d38329ee9e6.png", - "aggregators": ["PangolinDex", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x6b1ecf0c181afff3d7096b26c3d2bc31f55ceab9": { - "address": "0x6b1ecf0c181afff3d7096b26c3d2bc31f55ceab9", - "symbol": "MUON", - "decimals": 18, - "name": "Muon", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/43114/0x6b1ecf0c181afff3d7096b26c3d2bc31f55ceab9.png", - "aggregators": ["TraderJoe", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x8e48d9f6d73e9805df87dcf63f7b35ae04079713": { - "address": "0x8e48d9f6d73e9805df87dcf63f7b35ae04079713", - "symbol": "KIGU", - "decimals": 18, - "name": "KIGU", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/43114/0x8e48d9f6d73e9805df87dcf63f7b35ae04079713.png", - "aggregators": ["PangolinDex", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x822b906e74d493d07223cf6858620ccda66b2154": { - "address": "0x822b906e74d493d07223cf6858620ccda66b2154", - "symbol": "RLOOP", - "decimals": 18, - "name": "rLoop", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/43114/0x822b906e74d493d07223cf6858620ccda66b2154.png", - "aggregators": ["CoinGecko", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x34a1d2105dd1b658a48ead516a9ce3032082799c": { - "address": "0x34a1d2105dd1b658a48ead516a9ce3032082799c", - "symbol": "GLADIUS", - "decimals": 18, - "name": "GLADIUS", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/43114/0x34a1d2105dd1b658a48ead516a9ce3032082799c.png", - "aggregators": ["CoinGecko", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x7cc9c624efa62c2decf0a2a028f7885ecea95a17": { - "address": "0x7cc9c624efa62c2decf0a2a028f7885ecea95a17", - "symbol": "SPCM", - "decimals": 18, - "name": "SPCM", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/43114/0x7cc9c624efa62c2decf0a2a028f7885ecea95a17.png", - "aggregators": ["CoinGecko", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x42006ab57701251b580bdfc24778c43c9ff589a1": { - "address": "0x42006ab57701251b580bdfc24778c43c9ff589a1", - "symbol": "EVO", - "decimals": 18, - "name": "EvoVerses", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/43114/0x42006ab57701251b580bdfc24778c43c9ff589a1.png", - "aggregators": ["TraderJoe", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x53c44c368a11f54b8dc496915dd71bd42bd64a91": { - "address": "0x53c44c368a11f54b8dc496915dd71bd42bd64a91", - "symbol": "ƎԀƎԀ", - "decimals": 9, - "name": "Pepe Inverted", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/43114/0x53c44c368a11f54b8dc496915dd71bd42bd64a91.png", - "aggregators": ["CoinGecko", "Rubic", "Rango"], - "occurrences": 3 - }, - "0xeb2729257280580694a06c499cb8c622e74215c8": { - "address": "0xeb2729257280580694a06c499cb8c622e74215c8", - "symbol": "MOG", - "decimals": 18, - "name": "MOG", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/43114/0xeb2729257280580694a06c499cb8c622e74215c8.png", - "aggregators": ["PangolinDex", "Rubic", "Rango"], - "occurrences": 3 - }, - "0xa659d083b677d6bffe1cb704e1473b896727be6d": { - "address": "0xa659d083b677d6bffe1cb704e1473b896727be6d", - "symbol": "PEPE", - "decimals": 18, - "name": "PEPE", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/43114/0xa659d083b677d6bffe1cb704e1473b896727be6d.png", - "aggregators": ["CoinGecko", "Rubic", "Rango"], - "occurrences": 3 - }, - "0xaaa0008c8cf3a7dca931adaf04336a5d808c82cc": { - "address": "0xaaa0008c8cf3a7dca931adaf04336a5d808c82cc", - "symbol": "DEJAAA", - "decimals": 18, - "name": "DeFi Janus Henderson Anemoy AAA CLO Fund", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/43114/0xaaa0008c8cf3a7dca931adaf04336a5d808c82cc.png", - "aggregators": ["CoinGecko", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x846e52d0dd71c2fdc891538b2d37ff84345c7b9f": { - "address": "0x846e52d0dd71c2fdc891538b2d37ff84345c7b9f", - "symbol": "DOGE", - "decimals": 18, - "name": "DOGE", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/43114/0x846e52d0dd71c2fdc891538b2d37ff84345c7b9f.png", - "aggregators": ["CoinGecko", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x94f9bb5c972285728dcee7eaece48bec2ff341ce": { - "address": "0x94f9bb5c972285728dcee7eaece48bec2ff341ce", - "symbol": "XUSD", - "decimals": 6, - "name": "XUSD", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/43114/0x94f9bb5c972285728dcee7eaece48bec2ff341ce.png", - "aggregators": ["CoinGecko", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x9b3a8159e119eb09822115ae08ee1526849e1116": { - "address": "0x9b3a8159e119eb09822115ae08ee1526849e1116", - "symbol": "MMA", - "decimals": 18, - "name": "Meme Alliance", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/43114/0x9b3a8159e119eb09822115ae08ee1526849e1116.png", - "aggregators": ["CoinGecko", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x3e5b9c8930ecab017e16c3b7a2d0cb746d8bcdcf": { - "address": "0x3e5b9c8930ecab017e16c3b7a2d0cb746d8bcdcf", - "symbol": "LIMBO", - "decimals": 18, - "name": "LIMBO", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/43114/0x3e5b9c8930ecab017e16c3b7a2d0cb746d8bcdcf.png", - "aggregators": ["TraderJoe", "Rubic", "Rango"], - "occurrences": 3 - }, - "0xa5d465251fbcc907f5dd6bb2145488dfc6a2627b": { - "address": "0xa5d465251fbcc907f5dd6bb2145488dfc6a2627b", - "symbol": "JTRSY", - "decimals": 6, - "name": "JTRSY", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/43114/0xa5d465251fbcc907f5dd6bb2145488dfc6a2627b.png", - "aggregators": ["CoinGecko", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x6f911b6b39bcc665a463129c94b5380a4387b7eb": { - "address": "0x6f911b6b39bcc665a463129c94b5380a4387b7eb", - "symbol": "SPX", - "decimals": 18, - "name": "SPX", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/43114/0x6f911b6b39bcc665a463129c94b5380a4387b7eb.png", - "aggregators": ["CoinGecko", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x5dd1a7a369e8273371d2dbf9d83356057088082c": { - "address": "0x5dd1a7a369e8273371d2dbf9d83356057088082c", - "symbol": "FT", - "decimals": 18, - "name": "FT", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/43114/0x5dd1a7a369e8273371d2dbf9d83356057088082c.png", - "aggregators": ["CoinGecko", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x9b9fd410d5f01a6a60acf4678a5a99d8027fa5a7": { - "address": "0x9b9fd410d5f01a6a60acf4678a5a99d8027fa5a7", - "symbol": "MYTH", - "decimals": 18, - "name": "MYTH", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/43114/0x9b9fd410d5f01a6a60acf4678a5a99d8027fa5a7.png", - "aggregators": ["CoinGecko", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x6edac263561da41ade155a992759260fafb87b43": { - "address": "0x6edac263561da41ade155a992759260fafb87b43", - "symbol": "VERTAI", - "decimals": 18, - "name": "VERTAI", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/43114/0x6edac263561da41ade155a992759260fafb87b43.png", - "aggregators": ["PangolinDex", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x6aa38edd7f32a28b7b2c2dc86fc5b0bf2ae61579": { - "address": "0x6aa38edd7f32a28b7b2c2dc86fc5b0bf2ae61579", - "symbol": "CHAMP", - "decimals": 18, - "name": "CHAMP", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/43114/0x6aa38edd7f32a28b7b2c2dc86fc5b0bf2ae61579.png", - "aggregators": ["PangolinDex", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x180af87b47bf272b2df59dccf2d76a6eafa625bf": { - "address": "0x180af87b47bf272b2df59dccf2d76a6eafa625bf", - "symbol": "REUSD", - "decimals": 18, - "name": "REUSD", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/43114/0x180af87b47bf272b2df59dccf2d76a6eafa625bf.png", - "aggregators": ["PangolinDex", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x840b20fa3d48ac709fd841fcd878c3e8aabd7087": { - "address": "0x840b20fa3d48ac709fd841fcd878c3e8aabd7087", - "symbol": "GLUE", - "decimals": 18, - "name": "GLUE", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/43114/0x840b20fa3d48ac709fd841fcd878c3e8aabd7087.png", - "aggregators": ["CoinGecko", "Rubic", "Rango"], - "occurrences": 3 - }, - "0xd4dd9e2f021bb459d5a5f6c24c12fe09c5d45553": { - "address": "0xd4dd9e2f021bb459d5a5f6c24c12fe09c5d45553", - "symbol": "ZCHF", - "decimals": 18, - "name": "ZCHF", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/43114/0xd4dd9e2f021bb459d5a5f6c24c12fe09c5d45553.png", - "aggregators": ["CoinGecko", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x3fe4902b275caf603c46c81f3d921bb8515b5bc0": { - "address": "0x3fe4902b275caf603c46c81f3d921bb8515b5bc0", - "symbol": "JACK", - "decimals": 18, - "name": "JACK", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/43114/0x3fe4902b275caf603c46c81f3d921bb8515b5bc0.png", - "aggregators": ["TraderJoe", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x27f6c8289550fce67f6b50bed1f519966afe5287": { - "address": "0x27f6c8289550fce67f6b50bed1f519966afe5287", - "symbol": "TGBP", - "decimals": 18, - "name": "TGBP", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/43114/0x27f6c8289550fce67f6b50bed1f519966afe5287.png", - "aggregators": ["CoinGecko", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x9d92c21205383651610f90722131655a5b8ed3e0": { - "address": "0x9d92c21205383651610f90722131655a5b8ed3e0", - "symbol": "SUSDP", - "decimals": 18, - "name": "Staked USDp", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/43114/0x9d92c21205383651610f90722131655a5b8ed3e0.png", - "aggregators": ["CoinGecko", "LiFi", "Rubic"], - "occurrences": 3 - }, - "0xd4423795fd904d9b87554940a95fb7016f172773": { - "address": "0xd4423795fd904d9b87554940a95fb7016f172773", - "symbol": "AIN", - "decimals": 18, - "name": "AIN", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/43114/0xd4423795fd904d9b87554940a95fb7016f172773.png", - "aggregators": ["CoinGecko", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x02bfd11499847003de5f0f5aa081c43854d48815": { - "address": "0x02bfd11499847003de5f0f5aa081c43854d48815", - "symbol": "RADIO", - "decimals": 18, - "name": "RadioShack Token", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/43114/0x02bfd11499847003de5f0f5aa081c43854d48815.png", - "aggregators": ["CoinGecko", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x846d50248baf8b7ceaa9d9b53bfd12d7d7fbb25a": { - "address": "0x846d50248baf8b7ceaa9d9b53bfd12d7d7fbb25a", - "symbol": "VSO", - "decimals": 18, - "name": "VSO", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/43114/0x846d50248baf8b7ceaa9d9b53bfd12d7d7fbb25a.png", - "aggregators": ["PangolinDex", "Rubic", "Rango"], - "occurrences": 3 - }, - "0xe06fba763c2104db5027f57f6a5be0a0d86308af": { - "address": "0xe06fba763c2104db5027f57f6a5be0a0d86308af", - "symbol": "AKITAX", - "decimals": 18, - "name": "AKITAVAX", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/43114/0xe06fba763c2104db5027f57f6a5be0a0d86308af.png", - "aggregators": ["PangolinDex", "Rubic", "Rango"], - "occurrences": 3 - }, - "0xce2fbed816e320258161ced52c2d0cebcdfd8136": { - "address": "0xce2fbed816e320258161ced52c2d0cebcdfd8136", - "symbol": "BRIBE", - "decimals": 18, - "name": "Police & Thief Game - BRIBE", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/43114/0xce2fbed816e320258161ced52c2d0cebcdfd8136.png", - "aggregators": ["PangolinDex", "Socket", "Rubic"], - "occurrences": 3 - }, - "0xd13eb71515dc48a8a367d12f844e5737bab415df": { - "address": "0xd13eb71515dc48a8a367d12f844e5737bab415df", - "symbol": "SFI", - "decimals": 18, - "name": "Spice", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/43114/0xd13eb71515dc48a8a367d12f844e5737bab415df.png", - "aggregators": ["PangolinDex", "LiFi", "Rango"], - "occurrences": 3 - }, - "0x827eb4bada6cb76c90f887969b3fe5fad585ffe3": { - "address": "0x827eb4bada6cb76c90f887969b3fe5fad585ffe3", - "symbol": "XETA", - "decimals": 18, - "name": "XETA", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/43114/0x827eb4bada6cb76c90f887969b3fe5fad585ffe3.png", - "aggregators": ["PangolinDex", "LiFi", "Rubic"], - "occurrences": 3 - }, - "0xa2cde628d7617956eaf4780e32f68df19cc13d62": { - "address": "0xa2cde628d7617956eaf4780e32f68df19cc13d62", - "symbol": "SUBAVA", - "decimals": 18, - "name": "Subava Token", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/43114/0xa2cde628d7617956eaf4780e32f68df19cc13d62.png", - "aggregators": ["PangolinDex", "Rubic", "Rango"], - "occurrences": 3 - }, - "0xc55fa890fd62c25c85d46f57ac972f3f30839e2f": { - "address": "0xc55fa890fd62c25c85d46f57ac972f3f30839e2f", - "symbol": "CRIME", - "decimals": 18, - "name": "CRIME", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/43114/0xc55fa890fd62c25c85d46f57ac972f3f30839e2f.png", - "aggregators": ["PangolinDex", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x9261330c6a2b472c58dbc149ca9dfc20e6861d66": { - "address": "0x9261330c6a2b472c58dbc149ca9dfc20e6861d66", - "symbol": "SUMMIT", - "decimals": 18, - "name": "SUMMIT", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/43114/0x9261330c6a2b472c58dbc149ca9dfc20e6861d66.png", - "aggregators": ["PangolinDex", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x803f5e3d74e17e3be3f2a2bfbd5d9f9b44e9488b": { - "address": "0x803f5e3d74e17e3be3f2a2bfbd5d9f9b44e9488b", - "symbol": "WOOT", - "decimals": 18, - "name": "Just Woot", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/43114/0x803f5e3d74e17e3be3f2a2bfbd5d9f9b44e9488b.png", - "aggregators": ["PangolinDex", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x5b08fee76c6b1d4f5fab98fc41a242b51cb090df": { - "address": "0x5b08fee76c6b1d4f5fab98fc41a242b51cb090df", - "symbol": "CDN", - "decimals": 18, - "name": "CEDEN Network Token", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/43114/0x5b08fee76c6b1d4f5fab98fc41a242b51cb090df.png", - "aggregators": ["TraderJoe", "Socket", "Rubic"], - "occurrences": 3 - }, - "0x53f7c5869a859f0aec3d334ee8b4cf01e3492f21": { - "address": "0x53f7c5869a859f0aec3d334ee8b4cf01e3492f21", - "symbol": "AVWETH", - "decimals": 18, - "name": "Aave Avalanche Market WETH", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/43114/0x53f7c5869a859f0aec3d334ee8b4cf01e3492f21.png", - "aggregators": ["1inch", "LiFi", "Rubic"], - "occurrences": 3 - }, - "0xd45b7c061016102f9fa220502908f2c0f1add1d7": { - "address": "0xd45b7c061016102f9fa220502908f2c0f1add1d7", - "symbol": "AVAAVE", - "decimals": 18, - "name": "Aave Avalanche Market AAVE", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/43114/0xd45b7c061016102f9fa220502908f2c0f1add1d7.png", - "aggregators": ["1inch", "LiFi", "Socket"], - "occurrences": 3 - }, - "0x75739a693459f33b1fbcc02099eea3ebcf150cbe": { - "address": "0x75739a693459f33b1fbcc02099eea3ebcf150cbe", - "symbol": "TIC", - "decimals": 18, - "name": "ElasticSwap Tic Token", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/43114/0x75739a693459f33b1fbcc02099eea3ebcf150cbe.png", - "aggregators": ["1inch", "Socket", "Rubic"], - "occurrences": 3 - }, - "0x57319d41f71e81f3c65f2a47ca4e001ebafd4f33": { - "address": "0x57319d41f71e81f3c65f2a47ca4e001ebafd4f33", - "symbol": "XJOE", - "decimals": 18, - "name": "JoeBar", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/43114/0x57319d41f71e81f3c65f2a47ca4e001ebafd4f33.png", - "aggregators": ["LiFi", "Rubic", "SushiSwap"], - "occurrences": 3 - }, - "0xb418417374fca27bb54169d3c777492e6fe17ee7": { - "address": "0xb418417374fca27bb54169d3c777492e6fe17ee7", - "symbol": "DUA", - "decimals": 18, - "name": "DUA", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/43114/0xb418417374fca27bb54169d3c777492e6fe17ee7.png", - "aggregators": ["LiFi", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x78c42324016cd91d1827924711563fb66e33a83a": { - "address": "0x78c42324016cd91d1827924711563fb66e33a83a", - "symbol": "RELAY", - "decimals": 18, - "name": "Relay Chain", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/43114/0x78c42324016cd91d1827924711563fb66e33a83a.png", - "aggregators": ["LiFi", "Rubic", "Rango"], - "occurrences": 3 - }, - "0xcc2f1d827b18321254223df4e84de399d9ff116c": { - "address": "0xcc2f1d827b18321254223df4e84de399d9ff116c", - "symbol": "SMRT", - "decimals": 18, - "name": "SMRT", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/43114/0xcc2f1d827b18321254223df4e84de399d9ff116c.png", - "aggregators": ["Socket", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x00da149c4e01e4a391ab86deddaae66e906b6fb7": { - "address": "0x00da149c4e01e4a391ab86deddaae66e906b6fb7", - "symbol": "KIB", - "decimals": 18, - "name": "Kibble", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/43114/0x00da149c4e01e4a391ab86deddaae66e906b6fb7.png", - "aggregators": ["Rubic", "Rango", "Sonarwatch"], - "occurrences": 3 - }, - "0xa77d05fd853af120cd4db48e73498e0cabd3f628": { - "address": "0xa77d05fd853af120cd4db48e73498e0cabd3f628", - "symbol": "$ERROR", - "decimals": 18, - "name": "AI404", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/43114/0xa77d05fd853af120cd4db48e73498e0cabd3f628.png", - "aggregators": ["Rubic", "Rango", "Sonarwatch"], - "occurrences": 3 - }, - "0x0a2f2efdb1233c0da050fb47f19f98851753718f": { - "address": "0x0a2f2efdb1233c0da050fb47f19f98851753718f", - "symbol": "ALAI", - "decimals": 6, - "name": "AlaunchAI", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/43114/0x0a2f2efdb1233c0da050fb47f19f98851753718f.png", - "aggregators": ["Rubic", "Rango", "Sonarwatch"], - "occurrences": 3 - }, - "0xf2536e4301a428af9686ed73e42b50c1f9aed517": { - "address": "0xf2536e4301a428af9686ed73e42b50c1f9aed517", - "symbol": "AKITAX", - "decimals": 18, - "name": "Akitavax", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/43114/0xf2536e4301a428af9686ed73e42b50c1f9aed517.png", - "aggregators": ["Rubic", "Rango", "Sonarwatch"], - "occurrences": 3 - }, - "0x68327a91e79f87f501bc8522fc333fb7a72393cb": { - "address": "0x68327a91e79f87f501bc8522fc333fb7a72393cb", - "symbol": "AUX", - "decimals": 18, - "name": "AUX Coin", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/43114/0x68327a91e79f87f501bc8522fc333fb7a72393cb.png", - "aggregators": ["Rubic", "Rango", "Sonarwatch"], - "occurrences": 3 - }, - "0x916aba115f5162960e48a2675ad4d8cbd09ce8e4": { - "address": "0x916aba115f5162960e48a2675ad4d8cbd09ce8e4", - "symbol": "MCV", - "decimals": 18, - "name": "MCVERSE", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/43114/0x916aba115f5162960e48a2675ad4d8cbd09ce8e4.png", - "aggregators": ["Rubic", "Rango", "Sonarwatch"], - "occurrences": 3 - }, - "0xa1afcc973d44ce1c65a21d9e644cb82489d26503": { - "address": "0xa1afcc973d44ce1c65a21d9e644cb82489d26503", - "symbol": "RUX", - "decimals": 18, - "name": "RunBlox", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/43114/0xa1afcc973d44ce1c65a21d9e644cb82489d26503.png", - "aggregators": ["Rubic", "Rango", "Sonarwatch"], - "occurrences": 3 - }, - "0x22bc1c924a6174eb9b2c98035f8d2f20e8bc4a1e": { - "address": "0x22bc1c924a6174eb9b2c98035f8d2f20e8bc4a1e", - "symbol": "SUP", - "decimals": 18, - "name": "Supcoin", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/43114/0x22bc1c924a6174eb9b2c98035f8d2f20e8bc4a1e.png", - "aggregators": ["Rubic", "Rango", "Sonarwatch"], - "occurrences": 3 - }, - "0x66584240143bb36b59065342b3eecac06876ec11": { - "address": "0x66584240143bb36b59065342b3eecac06876ec11", - "symbol": "GOTS", - "decimals": 18, - "name": "Guardians Of The Spark", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/43114/0x66584240143bb36b59065342b3eecac06876ec11.png", - "aggregators": ["Rubic", "Rango", "Sonarwatch"], - "occurrences": 3 - }, - "0x7a842193d291840fc38b45f991c5b8cc908f8a7c": { - "address": "0x7a842193d291840fc38b45f991c5b8cc908f8a7c", - "symbol": "PLSR", - "decimals": 18, - "name": "PULSAR", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/43114/0x7a842193d291840fc38b45f991c5b8cc908f8a7c.png", - "aggregators": ["Rubic", "Rango", "Sonarwatch"], - "occurrences": 3 - }, - "0xc891eb4cbdeff6e073e859e987815ed1505c2acd": { - "address": "0xc891eb4cbdeff6e073e859e987815ed1505c2acd", - "symbol": "EURC", - "decimals": 6, - "name": "EURC", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/43114/0xc891eb4cbdeff6e073e859e987815ed1505c2acd.png", - "aggregators": [ - "TraderJoe", - "1inch", - "LiFi", - "Rubic", - "Squid", - "Rango", - "Sonarwatch" - ], - "occurrences": 7 - }, - "0x442f7f22b1ee2c842beaff52880d4573e9201158": { - "address": "0x442f7f22b1ee2c842beaff52880d4573e9201158", - "symbol": "BNB", - "decimals": 18, - "name": "Binance Coin (Portal)", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/43114/0x442f7f22b1ee2c842beaff52880d4573e9201158.png", - "aggregators": [ - "CoinGecko", - "LiFi", - "TrustWallet", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 7 - }, - "0x06d47f3fb376649c3a9dafe069b3d6e35572219e": { - "address": "0x06d47f3fb376649c3a9dafe069b3d6e35572219e", - "symbol": "SAVUSD", - "decimals": 18, - "name": "Avant Staked USD", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/43114/0x06d47f3fb376649c3a9dafe069b3d6e35572219e.png", - "aggregators": [ - "TraderJoe", - "LiFi", - "Rubic", - "Squid", - "Rango", - "Sonarwatch" - ], - "occurrences": 6 - }, - "0x24de8771bc5ddb3362db529fc3358f2df3a0e346": { - "address": "0x24de8771bc5ddb3362db529fc3358f2df3a0e346", - "symbol": "AVUSD", - "decimals": 18, - "name": "Avant USD", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/43114/0x24de8771bc5ddb3362db529fc3358f2df3a0e346.png", - "aggregators": [ - "TraderJoe", - "LiFi", - "Rubic", - "Squid", - "Rango", - "Sonarwatch" - ], - "occurrences": 6 - }, - "0x57f5e098cad7a3d1eed53991d4d66c45c9af7812": { - "address": "0x57f5e098cad7a3d1eed53991d4d66c45c9af7812", - "symbol": "WUSDM", - "decimals": 18, - "name": "Wrapped USDM", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/43114/0x57f5e098cad7a3d1eed53991d4d66c45c9af7812.png", - "aggregators": [ - "CoinGecko", - "LiFi", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 6 - }, - "0x078f358208685046a11c85e8ad32895ded33a249": { - "address": "0x078f358208685046a11c85e8ad32895ded33a249", - "symbol": "AWBTC", - "decimals": 8, - "name": "Aave v3 WBTC", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/43114/0x078f358208685046a11c85e8ad32895ded33a249.png", - "aggregators": [ - "CoinGecko", - "LiFi", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 6 - }, - "0x6ab707aca953edaefbc4fd23ba73294241490620": { - "address": "0x6ab707aca953edaefbc4fd23ba73294241490620", - "symbol": "AUSDT", - "decimals": 6, - "name": "Aave v3 USDT", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/43114/0x6ab707aca953edaefbc4fd23ba73294241490620.png", - "aggregators": [ - "CoinGecko", - "LiFi", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 6 - }, - "0xc3048e19e76cb9a3aa9d77d8c03c29fc906e2437": { - "address": "0xc3048e19e76cb9a3aa9d77d8c03c29fc906e2437", - "symbol": "COMP.E", - "decimals": 18, - "name": "Compound", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/43114/0xc3048e19e76cb9a3aa9d77d8c03c29fc906e2437.png", - "aggregators": [ - "CoinGecko", - "LiFi", - "TrustWallet", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 6 - }, - "0x82e64f49ed5ec1bc6e43dad4fc8af9bb3a2312ee": { - "address": "0x82e64f49ed5ec1bc6e43dad4fc8af9bb3a2312ee", - "symbol": "ADAI", - "decimals": 18, - "name": "Aave v3 DAI", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/43114/0x82e64f49ed5ec1bc6e43dad4fc8af9bb3a2312ee.png", - "aggregators": [ - "CoinGecko", - "LiFi", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 6 - }, - "0xf329e36c7bf6e5e86ce2150875a84ce77f477375": { - "address": "0xf329e36c7bf6e5e86ce2150875a84ce77f477375", - "symbol": "AAAVE", - "decimals": 18, - "name": "Aave v3 AAVE", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/43114/0xf329e36c7bf6e5e86ce2150875a84ce77f477375.png", - "aggregators": [ - "CoinGecko", - "LiFi", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 6 - }, - "0x191c10aa4af7c30e871e70c95db0e4eb77237530": { - "address": "0x191c10aa4af7c30e871e70c95db0e4eb77237530", - "symbol": "ALINK", - "decimals": 18, - "name": "Aave v3 LINK", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/43114/0x191c10aa4af7c30e871e70c95db0e4eb77237530.png", - "aggregators": [ - "CoinGecko", - "LiFi", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 6 - }, - "0x9eaac1b23d935365bd7b542fe22ceee2922f52dc": { - "address": "0x9eaac1b23d935365bd7b542fe22ceee2922f52dc", - "symbol": "YFI.E", - "decimals": 18, - "name": "yearn.finance", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/43114/0x9eaac1b23d935365bd7b542fe22ceee2922f52dc.png", - "aggregators": [ - "CoinGecko", - "LiFi", - "TrustWallet", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 6 - }, - "0xbec243c995409e6520d7c41e404da5deba4b209b": { - "address": "0xbec243c995409e6520d7c41e404da5deba4b209b", - "symbol": "SNX.E", - "decimals": 18, - "name": "Synthetix Network Token", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/43114/0xbec243c995409e6520d7c41e404da5deba4b209b.png", - "aggregators": [ - "CoinGecko", - "LiFi", - "TrustWallet", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 6 - }, - "0x70928e5b188def72817b7775f0bf6325968e563b": { - "address": "0x70928e5b188def72817b7775f0bf6325968e563b", - "symbol": "LUNA", - "decimals": 6, - "name": "LUNA (Portal)", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/43114/0x70928e5b188def72817b7775f0bf6325968e563b.png", - "aggregators": [ - "CoinGecko", - "TrustWallet", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 6 - }, - "0x98443b96ea4b0858fdf3219cd13e98c7a4690588": { - "address": "0x98443b96ea4b0858fdf3219cd13e98c7a4690588", - "symbol": "BAT.E", - "decimals": 18, - "name": "Basic Attention Token", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/43114/0x98443b96ea4b0858fdf3219cd13e98c7a4690588.png", - "aggregators": [ - "PangolinDex", - "LiFi", - "TrustWallet", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 6 - }, - "0x1337bedc9d22ecbe766df105c9623922a27963ec": { - "address": "0x1337bedc9d22ecbe766df105c9623922a27963ec", - "symbol": "3CRV", - "decimals": 18, - "name": "LP 3pool Curve", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/43114/0x1337bedc9d22ecbe766df105c9623922a27963ec.png", - "aggregators": [ - "CoinGecko", - "LiFi", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 6 - }, - "0x625e7708f30ca75bfd92586e17077590c60eb4cd": { - "address": "0x625e7708f30ca75bfd92586e17077590c60eb4cd", - "symbol": "AUSDC", - "decimals": 6, - "name": "Aave v3 USDC", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/43114/0x625e7708f30ca75bfd92586e17077590c60eb4cd.png", - "aggregators": [ - "CoinGecko", - "LiFi", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 6 - }, - "0x8a0cac13c7da965a312f08ea4229c37869e85cb9": { - "address": "0x8a0cac13c7da965a312f08ea4229c37869e85cb9", - "symbol": "GRT.E", - "decimals": 18, - "name": "Graph Token", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/43114/0x8a0cac13c7da965a312f08ea4229c37869e85cb9.png", - "aggregators": [ - "PangolinDex", - "LiFi", - "TrustWallet", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 6 - }, - "0x3bd2b1c7ed8d396dbb98ded3aebb41350a5b2339": { - "address": "0x3bd2b1c7ed8d396dbb98ded3aebb41350a5b2339", - "symbol": "UMA.E", - "decimals": 18, - "name": "UMA Voting Token v1", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/43114/0x3bd2b1c7ed8d396dbb98ded3aebb41350a5b2339.png", - "aggregators": [ - "CoinGecko", - "LiFi", - "TrustWallet", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 6 - }, - "0x8b82a291f83ca07af22120aba21632088fc92931": { - "address": "0x8b82a291f83ca07af22120aba21632088fc92931", - "symbol": "ETH", - "decimals": 18, - "name": "Ether (Portal)", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/43114/0x8b82a291f83ca07af22120aba21632088fc92931.png", - "aggregators": [ - "TraderJoe", - "TrustWallet", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 6 - }, - "0xb5cc2ce99b3f98a969dbe458b96a117680ae0fa1": { - "address": "0xb5cc2ce99b3f98a969dbe458b96a117680ae0fa1", - "symbol": "LUCKY", - "decimals": 18, - "name": "Lucky Coin", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/43114/0xb5cc2ce99b3f98a969dbe458b96a117680ae0fa1.png", - "aggregators": [ - "TraderJoe", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0xebb5d4959b2fba6318fbda7d03cd44ae771fc999": { - "address": "0xebb5d4959b2fba6318fbda7d03cd44ae771fc999", - "symbol": "KONG", - "decimals": 18, - "name": "KONG", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/43114/0xebb5d4959b2fba6318fbda7d03cd44ae771fc999.png", - "aggregators": [ - "TraderJoe", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x513c7e3a9c69ca3e22550ef58ac1c0088e918fff": { - "address": "0x513c7e3a9c69ca3e22550ef58ac1c0088e918fff", - "symbol": "ASAVAX", - "decimals": 18, - "name": "Aave v3 sAVAX", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/43114/0x513c7e3a9c69ca3e22550ef58ac1c0088e918fff.png", - "aggregators": [ - "CoinGecko", - "LiFi", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x4586af10ecceed4e383e3f2ec93b6c61e26500b5": { - "address": "0x4586af10ecceed4e383e3f2ec93b6c61e26500b5", - "symbol": "HUNDRED", - "decimals": 18, - "name": "HUNDRED", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/43114/0x4586af10ecceed4e383e3f2ec93b6c61e26500b5.png", - "aggregators": [ - "CoinGecko", - "Rubic", - "Squid", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0xa77e70d0af1ac7ff86726740db1bd065c3566937": { - "address": "0xa77e70d0af1ac7ff86726740db1bd065c3566937", - "symbol": "3ULL", - "decimals": 18, - "name": "PLAYA3ULL GAMES", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/43114/0xa77e70d0af1ac7ff86726740db1bd065c3566937.png", - "aggregators": [ - "TraderJoe", - "Rubic", - "Squid", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x42069000770c482fed048e1da03a5f82773abd69": { - "address": "0x42069000770c482fed048e1da03a5f82773abd69", - "symbol": "BRO", - "decimals": 18, - "name": "My Bro", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/43114/0x42069000770c482fed048e1da03a5f82773abd69.png", - "aggregators": [ - "TraderJoe", - "Rubic", - "Squid", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0xd5d053d5b769383e860d1520da7a908e00919f36": { - "address": "0xd5d053d5b769383e860d1520da7a908e00919f36", - "symbol": "JUC", - "decimals": 18, - "name": "Juice", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/43114/0xd5d053d5b769383e860d1520da7a908e00919f36.png", - "aggregators": [ - "CoinGecko", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0xf197ffc28c23e0309b5559e7a166f2c6164c80aa": { - "address": "0xf197ffc28c23e0309b5559e7a166f2c6164c80aa", - "symbol": "MXNB", - "decimals": 6, - "name": "MXNB", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/43114/0xf197ffc28c23e0309b5559e7a166f2c6164c80aa.png", - "aggregators": ["TraderJoe", "LiFi", "Rubic", "Squid", "Rango"], - "occurrences": 5 - }, - "0x6c44e09737ac84bcf27633883daf7487898e4e5e": { - "address": "0x6c44e09737ac84bcf27633883daf7487898e4e5e", - "symbol": "OPUL", - "decimals": 18, - "name": "Opulous", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/43114/0x6c44e09737ac84bcf27633883daf7487898e4e5e.png", - "aggregators": [ - "CoinGecko", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x61f23250451305f6c4426e81c50ae535edf94a02": { - "address": "0x61f23250451305f6c4426e81c50ae535edf94a02", - "symbol": "FTR", - "decimals": 18, - "name": "Fautor", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/43114/0x61f23250451305f6c4426e81c50ae535edf94a02.png", - "aggregators": [ - "TraderJoe", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x1e2c4fb7ede391d116e6b41cd0608260e8801d59": { - "address": "0x1e2c4fb7ede391d116e6b41cd0608260e8801d59", - "symbol": "BCSPX", - "decimals": 18, - "name": "Backed CSPX Core S&P 500", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/43114/0x1e2c4fb7ede391d116e6b41cd0608260e8801d59.png", - "aggregators": [ - "CoinGecko", - "LiFi", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0xbbcb0356bb9e6b3faa5cbf9e5f36185d53403ac9": { - "address": "0xbbcb0356bb9e6b3faa5cbf9e5f36185d53403ac9", - "symbol": "BCOIN", - "decimals": 18, - "name": "Backed Coinbase Global", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/43114/0xbbcb0356bb9e6b3faa5cbf9e5f36185d53403ac9.png", - "aggregators": [ - "CoinGecko", - "LiFi", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0xabc9547b534519ff73921b1fba6e672b5f58d083": { - "address": "0xabc9547b534519ff73921b1fba6e672b5f58d083", - "symbol": "WOO", - "decimals": 18, - "name": "WOO", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/43114/0xabc9547b534519ff73921b1fba6e672b5f58d083.png", - "aggregators": [ - "CoinGecko", - "LiFi", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x88128fd4b259552a9a1d457f435a6527aab72d42": { - "address": "0x88128fd4b259552a9a1d457f435a6527aab72d42", - "symbol": "MKR.E", - "decimals": 18, - "name": "Maker", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/43114/0x88128fd4b259552a9a1d457f435a6527aab72d42.png", - "aggregators": [ - "PangolinDex", - "LiFi", - "TrustWallet", - "Rubic", - "Rango" - ], - "occurrences": 5 - }, - "0xb44a9b6905af7c801311e8f4e76932ee959c663c": { - "address": "0xb44a9b6905af7c801311e8f4e76932ee959c663c", - "symbol": "ANY", - "decimals": 18, - "name": "Anyswap", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/43114/0xb44a9b6905af7c801311e8f4e76932ee959c663c.png", - "aggregators": [ - "CoinGecko", - "TrustWallet", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x8888888888f004100c0353d657be6300587a6ccd": { - "address": "0x8888888888f004100c0353d657be6300587a6ccd", - "symbol": "ACS", - "decimals": 18, - "name": "ACryptoS", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/43114/0x8888888888f004100c0353d657be6300587a6ccd.png", - "aggregators": [ - "CoinGecko", - "LiFi", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0xe50fa9b3c56ffb159cb0fca61f5c9d750e8128c8": { - "address": "0xe50fa9b3c56ffb159cb0fca61f5c9d750e8128c8", - "symbol": "AWETH", - "decimals": 18, - "name": "Aave v3 WETH", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/43114/0xe50fa9b3c56ffb159cb0fca61f5c9d750e8128c8.png", - "aggregators": [ - "CoinGecko", - "LiFi", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0xb24ca28d4e2742907115fecda335b40dbda07a4c": { - "address": "0xb24ca28d4e2742907115fecda335b40dbda07a4c", - "symbol": "USDCET", - "decimals": 6, - "name": "USD Coin (Portal from Ethereum)", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/43114/0xb24ca28d4e2742907115fecda335b40dbda07a4c.png", - "aggregators": [ - "CoinGecko", - "TrustWallet", - "Socket", - "Rubic", - "Rango" - ], - "occurrences": 5 - }, - "0x9a8e0217cd870783c3f2317985c57bf570969153": { - "address": "0x9a8e0217cd870783c3f2317985c57bf570969153", - "symbol": "MAGICK", - "decimals": 18, - "name": "Cosmic Universe Magick", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/43114/0x9a8e0217cd870783c3f2317985c57bf570969153.png", - "aggregators": [ - "TraderJoe", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0xd501281565bf7789224523144fe5d98e8b28f267": { - "address": "0xd501281565bf7789224523144fe5d98e8b28f267", - "symbol": "1INCH.E", - "decimals": 18, - "name": "1INCH Token", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/43114/0xd501281565bf7789224523144fe5d98e8b28f267.png", - "aggregators": [ - "LiFi", - "TrustWallet", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0xf2f7ce610a091b94d41d69f4ff1129434a82e2f0": { - "address": "0xf2f7ce610a091b94d41d69f4ff1129434a82e2f0", - "symbol": "GG", - "decimals": 9, - "name": "Galaxy Goggle", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/43114/0xf2f7ce610a091b94d41d69f4ff1129434a82e2f0.png", - "aggregators": ["LiFi", "TrustWallet", "Socket", "Rubic", "Rango"], - "occurrences": 5 - }, - "0x596fa47043f99a4e0f122243b841e55375cde0d2": { - "address": "0x596fa47043f99a4e0f122243b841e55375cde0d2", - "symbol": "ZRX.E", - "decimals": 18, - "name": "ZRX", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/43114/0x596fa47043f99a4e0f122243b841e55375cde0d2.png", - "aggregators": [ - "LiFi", - "TrustWallet", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0xc8e7fb72b53d08c4f95b93b390ed3f132d03f2d5": { - "address": "0xc8e7fb72b53d08c4f95b93b390ed3f132d03f2d5", - "symbol": "SQRCAT", - "decimals": 18, - "name": "SQRCAT", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/43114/0xc8e7fb72b53d08c4f95b93b390ed3f132d03f2d5.png", - "aggregators": ["TraderJoe", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0x18e3605b13f10016901eac609b9e188cf7c18973": { - "address": "0x18e3605b13f10016901eac609b9e188cf7c18973", - "symbol": "HEFE", - "decimals": 18, - "name": "HEFE", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/43114/0x18e3605b13f10016901eac609b9e188cf7c18973.png", - "aggregators": ["TraderJoe", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0x73f49d00ac1b520f94d11248808c40774aeb0802": { - "address": "0x73f49d00ac1b520f94d11248808c40774aeb0802", - "symbol": "MAJIN", - "decimals": 18, - "name": "Majin", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/43114/0x73f49d00ac1b520f94d11248808c40774aeb0802.png", - "aggregators": ["TraderJoe", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0x4f3c5c53279536ffcfe8bcafb78e612e933d53c6": { - "address": "0x4f3c5c53279536ffcfe8bcafb78e612e933d53c6", - "symbol": "PNIC", - "decimals": 18, - "name": "Phoenic Token", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/43114/0x4f3c5c53279536ffcfe8bcafb78e612e933d53c6.png", - "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0x15fa5d3dbd11a831b72b92c1705bc9f801e233cb": { - "address": "0x15fa5d3dbd11a831b72b92c1705bc9f801e233cb", - "symbol": "PXP", - "decimals": 18, - "name": "PointPay", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/43114/0x15fa5d3dbd11a831b72b92c1705bc9f801e233cb.png", - "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0x3377aca4c0bfd021be6bd762b5f594975e77f9cf": { - "address": "0x3377aca4c0bfd021be6bd762b5f594975e77f9cf", - "symbol": "CATWIF", - "decimals": 18, - "name": "Cat Wif Hands", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/43114/0x3377aca4c0bfd021be6bd762b5f594975e77f9cf.png", - "aggregators": ["TraderJoe", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0x5ac34c53a04b9aaa0bf047e7291fb4e8a48f2a18": { - "address": "0x5ac34c53a04b9aaa0bf047e7291fb4e8a48f2a18", - "symbol": "NAI", - "decimals": 18, - "name": "Nuklai", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/43114/0x5ac34c53a04b9aaa0bf047e7291fb4e8a48f2a18.png", - "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0x7f9c841feadddb4bdbb2a161ca40bebc4f215a9a": { - "address": "0x7f9c841feadddb4bdbb2a161ca40bebc4f215a9a", - "symbol": "APOW", - "decimals": 18, - "name": "XPowermine.com APOW", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/43114/0x7f9c841feadddb4bdbb2a161ca40bebc4f215a9a.png", - "aggregators": ["TraderJoe", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0x37f44b98316ad2815357113aebe0459029543e1e": { - "address": "0x37f44b98316ad2815357113aebe0459029543e1e", - "symbol": "AVEX", - "decimals": 18, - "name": "AvaDex Token", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/43114/0x37f44b98316ad2815357113aebe0459029543e1e.png", - "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0xf3e5914ca1f678e0a3a38031b5514682e3450919": { - "address": "0xf3e5914ca1f678e0a3a38031b5514682e3450919", - "symbol": "QUILL", - "decimals": 18, - "name": "Ink Finance", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/43114/0xf3e5914ca1f678e0a3a38031b5514682e3450919.png", - "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0xdf788ad40181894da035b827cdf55c523bf52f67": { - "address": "0xdf788ad40181894da035b827cdf55c523bf52f67", - "symbol": "RSAVAX", - "decimals": 18, - "name": "RSAVAX", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/43114/0xdf788ad40181894da035b827cdf55c523bf52f67.png", - "aggregators": ["TraderJoe", "LiFi", "Rubic", "Rango"], - "occurrences": 4 - }, - "0x47c3118ad183712acd42648e9e522e13690f29a0": { - "address": "0x47c3118ad183712acd42648e9e522e13690f29a0", - "symbol": "MEAT", - "decimals": 6, - "name": "Meat", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/43114/0x47c3118ad183712acd42648e9e522e13690f29a0.png", - "aggregators": ["TraderJoe", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0x9e6832d13b29d0b1c1c3465242681039b31c7a05": { - "address": "0x9e6832d13b29d0b1c1c3465242681039b31c7a05", - "symbol": "STOMB", - "decimals": 18, - "name": "Snowtomb", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/43114/0x9e6832d13b29d0b1c1c3465242681039b31c7a05.png", - "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0x71f99bdbe8e6b958016ea399e3dba0790f82ca88": { - "address": "0x71f99bdbe8e6b958016ea399e3dba0790f82ca88", - "symbol": "ABG", - "decimals": 18, - "name": "AB Group", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/43114/0x71f99bdbe8e6b958016ea399e3dba0790f82ca88.png", - "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0x77776ab9495729e0939e9badaf7e7c3312777777": { - "address": "0x77776ab9495729e0939e9badaf7e7c3312777777", - "symbol": "WABBIT", - "decimals": 18, - "name": "WABBIT", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/43114/0x77776ab9495729e0939e9badaf7e7c3312777777.png", - "aggregators": ["TraderJoe", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0x223a368ad0e7396165fc629976d77596a51f155c": { - "address": "0x223a368ad0e7396165fc629976d77596a51f155c", - "symbol": "GURS", - "decimals": 18, - "name": "GursOnAVAX", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/43114/0x223a368ad0e7396165fc629976d77596a51f155c.png", - "aggregators": ["TraderJoe", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0x502580fc390606b47fc3b741d6d49909383c28a9": { - "address": "0x502580fc390606b47fc3b741d6d49909383c28a9", - "symbol": "HATCHY", - "decimals": 18, - "name": "HatchyPocket", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/43114/0x502580fc390606b47fc3b741d6d49909383c28a9.png", - "aggregators": ["TraderJoe", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0x0a10d108e2d81ccc793e37b56206c84bf96ddc57": { - "address": "0x0a10d108e2d81ccc793e37b56206c84bf96ddc57", - "symbol": "XSEED", - "decimals": 18, - "name": "MXS Games", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/43114/0x0a10d108e2d81ccc793e37b56206c84bf96ddc57.png", - "aggregators": ["TraderJoe", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0x4a5bb433132b7e7f75d6a9a3e4136bb85ce6e4d5": { - "address": "0x4a5bb433132b7e7f75d6a9a3e4136bb85ce6e4d5", - "symbol": "$BOOTY", - "decimals": 18, - "name": "Booty", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/43114/0x4a5bb433132b7e7f75d6a9a3e4136bb85ce6e4d5.png", - "aggregators": ["TraderJoe", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0x8eb270e296023e9d92081fdf967ddd7878724424": { - "address": "0x8eb270e296023e9d92081fdf967ddd7878724424", - "symbol": "AMAI", - "decimals": 18, - "name": "Aave v3 MAI", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/43114/0x8eb270e296023e9d92081fdf967ddd7878724424.png", - "aggregators": ["CoinGecko", "LiFi", "Rubic", "Sonarwatch"], - "occurrences": 4 - }, - "0x000000000000012def132e61759048be5b5c6033": { - "address": "0x000000000000012def132e61759048be5b5c6033", - "symbol": "CX", - "decimals": 18, - "name": "Cortex", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/43114/0x000000000000012def132e61759048be5b5c6033.png", - "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0x7c64925002bfa705834b118a923e9911bee32875": { - "address": "0x7c64925002bfa705834b118a923e9911bee32875", - "symbol": "ACRED", - "decimals": 6, - "name": "Apollo Diversified Credit Securitize Fund", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/43114/0x7c64925002bfa705834b118a923e9911bee32875.png", - "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0xca30c93b02514f86d5c86a6e375e3a330b435fb5": { - "address": "0xca30c93b02514f86d5c86a6e375e3a330b435fb5", - "symbol": "BIB01", - "decimals": 18, - "name": "Backed IB01 $ Treasury Bond 0-1yr", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/43114/0xca30c93b02514f86d5c86a6e375e3a330b435fb5.png", - "aggregators": ["TraderJoe", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0xa34c5e0abe843e10461e2c9586ea03e55dbcc495": { - "address": "0xa34c5e0abe843e10461e2c9586ea03e55dbcc495", - "symbol": "BNVDA", - "decimals": 18, - "name": "Backed NVIDIA", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/43114/0xa34c5e0abe843e10461e2c9586ea03e55dbcc495.png", - "aggregators": ["CoinGecko", "LiFi", "Rubic", "Sonarwatch"], - "occurrences": 4 - }, - "0xbd3d46b98b2f6ada480d6bd53d11cf4553c18f41": { - "address": "0xbd3d46b98b2f6ada480d6bd53d11cf4553c18f41", - "symbol": "GMAC", - "decimals": 18, - "name": "Gemach", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/43114/0xbd3d46b98b2f6ada480d6bd53d11cf4553c18f41.png", - "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0xb1f19e492401545c1b060c4b18688f9178325b4d": { - "address": "0xb1f19e492401545c1b060c4b18688f9178325b4d", - "symbol": "SHARDS", - "decimals": 6, - "name": "Flux Point Studios SHARDS", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/43114/0xb1f19e492401545c1b060c4b18688f9178325b4d.png", - "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0xaf20f5f19698f1d19351028cd7103b63d30de7d7": { - "address": "0xaf20f5f19698f1d19351028cd7103b63d30de7d7", - "symbol": "WAGMI", - "decimals": 18, - "name": "Wagmi", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/43114/0xaf20f5f19698f1d19351028cd7103b63d30de7d7.png", - "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0x52d134c6db5889fad3542a09eaf7aa90c0fdf9e4": { - "address": "0x52d134c6db5889fad3542a09eaf7aa90c0fdf9e4", - "symbol": "BIBTA", - "decimals": 18, - "name": "Backed IBTA $ Treasury Bond 1-3yr", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/43114/0x52d134c6db5889fad3542a09eaf7aa90c0fdf9e4.png", - "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0x20c64dee8fda5269a78f2d5bdba861ca1d83df7a": { - "address": "0x20c64dee8fda5269a78f2d5bdba861ca1d83df7a", - "symbol": "BHIGH", - "decimals": 18, - "name": "Backed HIGH € High Yield Corp Bond", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/43114/0x20c64dee8fda5269a78f2d5bdba861ca1d83df7a.png", - "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0x2f123cf3f37ce3328cc9b5b8415f9ec5109b45e7": { - "address": "0x2f123cf3f37ce3328cc9b5b8415f9ec5109b45e7", - "symbol": "BC3M", - "decimals": 18, - "name": "Backed GOVIES 0-6 months EURO", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/43114/0x2f123cf3f37ce3328cc9b5b8415f9ec5109b45e7.png", - "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0x945ca41d03ec19b6a6ebf2ef0f4d0a50b23e4f2c": { - "address": "0x945ca41d03ec19b6a6ebf2ef0f4d0a50b23e4f2c", - "symbol": "GRELF", - "decimals": 8, - "name": "GRELF", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/43114/0x945ca41d03ec19b6a6ebf2ef0f4d0a50b23e4f2c.png", - "aggregators": ["PangolinDex", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0xa4fb4f0ff2431262d236778495145ecbc975c38b": { - "address": "0xa4fb4f0ff2431262d236778495145ecbc975c38b", - "symbol": "INFRA", - "decimals": 18, - "name": "Bware", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/43114/0xa4fb4f0ff2431262d236778495145ecbc975c38b.png", - "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0x008e26068b3eb40b443d3ea88c1ff99b789c10f7": { - "address": "0x008e26068b3eb40b443d3ea88c1ff99b789c10f7", - "symbol": "ZERO", - "decimals": 18, - "name": "0.exchange", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/43114/0x008e26068b3eb40b443d3ea88c1ff99b789c10f7.png", - "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0xa5acfeca5270bc9768633fbc86caa959b85ec8b7": { - "address": "0xa5acfeca5270bc9768633fbc86caa959b85ec8b7", - "symbol": "KRW", - "decimals": 18, - "name": "KROWN", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/43114/0xa5acfeca5270bc9768633fbc86caa959b85ec8b7.png", - "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0xafc43610c7840b20b90caaf93759be5b54b291c9": { - "address": "0xafc43610c7840b20b90caaf93759be5b54b291c9", - "symbol": "ABR", - "decimals": 18, - "name": "Allbridge", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/43114/0xafc43610c7840b20b90caaf93759be5b54b291c9.png", - "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0x2f86508f41310d8d974b76deb3d246c0caa71cf5": { - "address": "0x2f86508f41310d8d974b76deb3d246c0caa71cf5", - "symbol": "HOTCROSS", - "decimals": 18, - "name": "Hot Cross", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/43114/0x2f86508f41310d8d974b76deb3d246c0caa71cf5.png", - "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0x4036f3d9c45a20f44f0b8b85dd6ca33005ff9654": { - "address": "0x4036f3d9c45a20f44f0b8b85dd6ca33005ff9654", - "symbol": "ROOBEE", - "decimals": 18, - "name": "Roobee", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/43114/0x4036f3d9c45a20f44f0b8b85dd6ca33005ff9654.png", - "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0xf2f13f0b7008ab2fa4a2418f4ccc3684e49d20eb": { - "address": "0xf2f13f0b7008ab2fa4a2418f4ccc3684e49d20eb", - "symbol": "MATICPO", - "decimals": 18, - "name": "MATIC (Portal from Polygon)", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/43114/0xf2f13f0b7008ab2fa4a2418f4ccc3684e49d20eb.png", - "aggregators": ["TraderJoe", "TrustWallet", "Rubic", "Rango"], - "occurrences": 4 - }, - "0xfcaf13227dcbfa2dc2b1928acfca03b85e2d25dd": { - "address": "0xfcaf13227dcbfa2dc2b1928acfca03b85e2d25dd", - "symbol": "IDIA", - "decimals": 18, - "name": "Impossible Finance Launchpad", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/43114/0xfcaf13227dcbfa2dc2b1928acfca03b85e2d25dd.png", - "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0x6ac048ae05e7e015acca2aa7abd0ec013e8e3a59": { - "address": "0x6ac048ae05e7e015acca2aa7abd0ec013e8e3a59", - "symbol": "BSKT", - "decimals": 5, - "name": "Basket", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/43114/0x6ac048ae05e7e015acca2aa7abd0ec013e8e3a59.png", - "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0x872952d3c1caf944852c5adda65633f1ef218a26": { - "address": "0x872952d3c1caf944852c5adda65633f1ef218a26", - "symbol": "LQDX", - "decimals": 18, - "name": "Reddex", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/43114/0x872952d3c1caf944852c5adda65633f1ef218a26.png", - "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0x8af94528fbe3c4c148523e7aad48bcebcc0a71d7": { - "address": "0x8af94528fbe3c4c148523e7aad48bcebcc0a71d7", - "symbol": "ATF", - "decimals": 18, - "name": "Antfarm Token", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/43114/0x8af94528fbe3c4c148523e7aad48bcebcc0a71d7.png", - "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0x5f880678320a9445824bb15d18ef67b5ecbaa42a": { - "address": "0x5f880678320a9445824bb15d18ef67b5ecbaa42a", - "symbol": "WBRGE", - "decimals": 18, - "name": "Wrapped OrdBridge", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/43114/0x5f880678320a9445824bb15d18ef67b5ecbaa42a.png", - "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0xc45a479877e1e9dfe9fcd4056c699575a1045daa": { - "address": "0xc45a479877e1e9dfe9fcd4056c699575a1045daa", - "symbol": "AFRAX", - "decimals": 18, - "name": "Aave v3 FRAX", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/43114/0xc45a479877e1e9dfe9fcd4056c699575a1045daa.png", - "aggregators": ["CoinGecko", "LiFi", "Rubic", "Sonarwatch"], - "occurrences": 4 - }, - "0xe8876189a80b2079d8c0a7867e46c50361d972c1": { - "address": "0xe8876189a80b2079d8c0a7867e46c50361d972c1", - "symbol": "ARC", - "decimals": 18, - "name": "Archly Finance", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/43114/0xe8876189a80b2079d8c0a7867e46c50361d972c1.png", - "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0x617724974218a18769020a70162165a539c07e8a": { - "address": "0x617724974218a18769020a70162165a539c07e8a", - "symbol": "OLIVE", - "decimals": 18, - "name": "Olive Cash", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/43114/0x617724974218a18769020a70162165a539c07e8a.png", - "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0xab236ed82a0184ab754534f3952b48408468c09b": { - "address": "0xab236ed82a0184ab754534f3952b48408468c09b", - "symbol": "NULL", - "decimals": 18, - "name": "NULL MATRIX", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/43114/0xab236ed82a0184ab754534f3952b48408468c09b.png", - "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0x873801ae2ff12d816db9a7b082f5796bec64c82c": { - "address": "0x873801ae2ff12d816db9a7b082f5796bec64c82c", - "symbol": "WTF", - "decimals": 18, - "name": "Waterfall Governance", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/43114/0x873801ae2ff12d816db9a7b082f5796bec64c82c.png", - "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0xfc8a21dbcab432fb5e469d80f976e022c2f56ea0": { - "address": "0xfc8a21dbcab432fb5e469d80f976e022c2f56ea0", - "symbol": "MMUI", - "decimals": 6, - "name": "MetaMUI", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/43114/0xfc8a21dbcab432fb5e469d80f976e022c2f56ea0.png", - "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0x62aceea3e666c5706ce1c61055fac1a669d31d93": { - "address": "0x62aceea3e666c5706ce1c61055fac1a669d31d93", - "symbol": "KALM", - "decimals": 18, - "name": "KALM", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/43114/0x62aceea3e666c5706ce1c61055fac1a669d31d93.png", - "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0x039d2e8f097331278bd6c1415d839310e0d5ece4": { - "address": "0x039d2e8f097331278bd6c1415d839310e0d5ece4", - "symbol": "LINDA", - "decimals": 18, - "name": "Linda", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/43114/0x039d2e8f097331278bd6c1415d839310e0d5ece4.png", - "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0x21c5402c3b7d40c89cc472c9df5dd7e51bbab1b1": { - "address": "0x21c5402c3b7d40c89cc472c9df5dd7e51bbab1b1", - "symbol": "TUNDRA", - "decimals": 18, - "name": "TundraToken", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/43114/0x21c5402c3b7d40c89cc472c9df5dd7e51bbab1b1.png", - "aggregators": ["PangolinDex", "LiFi", "Rubic", "Rango"], - "occurrences": 4 - }, - "0x094bd7b2d99711a1486fb94d4395801c6d0fddcc": { - "address": "0x094bd7b2d99711a1486fb94d4395801c6d0fddcc", - "symbol": "TEDDY", - "decimals": 18, - "name": "TEDDY", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/43114/0x094bd7b2d99711a1486fb94d4395801c6d0fddcc.png", - "aggregators": ["PangolinDex", "Socket", "Rubic", "Rango"], - "occurrences": 4 - }, - "0xd67de0e0a0fd7b15dc8348bb9be742f3c5850454": { - "address": "0xd67de0e0a0fd7b15dc8348bb9be742f3c5850454", - "symbol": "FXS", - "decimals": 18, - "name": "FXS", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/43114/0xd67de0e0a0fd7b15dc8348bb9be742f3c5850454.png", - "aggregators": ["PangolinDex", "LiFi", "Rubic", "Rango"], - "occurrences": 4 - }, - "0x90842eb834cfd2a1db0b1512b254a18e4d396215": { - "address": "0x90842eb834cfd2a1db0b1512b254a18e4d396215", - "symbol": "GB", - "decimals": 9, - "name": "GB", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/43114/0x90842eb834cfd2a1db0b1512b254a18e4d396215.png", - "aggregators": ["PangolinDex", "LiFi", "Rubic", "Rango"], - "occurrences": 4 - }, - "0xc3344870d52688874b06d844e0c36cc39fc727f6": { - "address": "0xc3344870d52688874b06d844e0c36cc39fc727f6", - "symbol": "ANKRAVAX", - "decimals": 18, - "name": "ANKRAVAX", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/43114/0xc3344870d52688874b06d844e0c36cc39fc727f6.png", - "aggregators": ["PangolinDex", "LiFi", "Rubic", "Rango"], - "occurrences": 4 - }, - "0x7c08413cbf02202a1c13643db173f2694e0f73f0": { - "address": "0x7c08413cbf02202a1c13643db173f2694e0f73f0", - "symbol": "MAXI", - "decimals": 9, - "name": "MAXI", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/43114/0x7c08413cbf02202a1c13643db173f2694e0f73f0.png", - "aggregators": ["PangolinDex", "LiFi", "Socket", "Rango"], - "occurrences": 4 - }, - "0x260bbf5698121eb85e7a74f2e45e16ce762ebe11": { - "address": "0x260bbf5698121eb85e7a74f2e45e16ce762ebe11", - "symbol": "UST", - "decimals": 6, - "name": "Axelar Wrapped UST", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/43114/0x260bbf5698121eb85e7a74f2e45e16ce762ebe11.png", - "aggregators": ["PangolinDex", "LiFi", "Squid", "Rango"], - "occurrences": 4 - }, - "0x3c780f5cbf94de3efcec964af928d08c4508eebe": { - "address": "0x3c780f5cbf94de3efcec964af928d08c4508eebe", - "symbol": "SPACEM", - "decimals": 18, - "name": "SpaceM Token", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/43114/0x3c780f5cbf94de3efcec964af928d08c4508eebe.png", - "aggregators": ["TraderJoe", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0x214dd1b5cbe543d4189ab39832f1bc1eedebb1d3": { - "address": "0x214dd1b5cbe543d4189ab39832f1bc1eedebb1d3", - "symbol": "JUNIOR", - "decimals": 9, - "name": "Junior", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/43114/0x214dd1b5cbe543d4189ab39832f1bc1eedebb1d3.png", - "aggregators": ["TraderJoe", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0x2dc45b5377739aa47e1162f42ca591c1688bc647": { - "address": "0x2dc45b5377739aa47e1162f42ca591c1688bc647", - "symbol": "YEET", - "decimals": 18, - "name": "Yeet The Yeti", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/43114/0x2dc45b5377739aa47e1162f42ca591c1688bc647.png", - "aggregators": ["TraderJoe", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0x3cc96f3cb4f45b5b5cdbce61faee8ae80d805c65": { - "address": "0x3cc96f3cb4f45b5b5cdbce61faee8ae80d805c65", - "symbol": "AVAXMINERAI", - "decimals": 18, - "name": "AvaxMinerAI", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/43114/0x3cc96f3cb4f45b5b5cdbce61faee8ae80d805c65.png", - "aggregators": ["TraderJoe", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0x5c5e384bd4e36724b2562ccaa582afd125277c9b": { - "address": "0x5c5e384bd4e36724b2562ccaa582afd125277c9b", - "symbol": "ARROW", - "decimals": 18, - "name": "Arrow Token", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/43114/0x5c5e384bd4e36724b2562ccaa582afd125277c9b.png", - "aggregators": ["TraderJoe", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0x735d8f3b6a5d2c96d0405230c50eaf96794fbb88": { - "address": "0x735d8f3b6a5d2c96d0405230c50eaf96794fbb88", - "symbol": "XPOW", - "decimals": 18, - "name": "XPowermine.com XPOW", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/43114/0x735d8f3b6a5d2c96d0405230c50eaf96794fbb88.png", - "aggregators": ["TraderJoe", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0x9c846d808a41328a209e235b5e3c4e626dab169e": { - "address": "0x9c846d808a41328a209e235b5e3c4e626dab169e", - "symbol": "FERT", - "decimals": 18, - "name": "Chikn Fert", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/43114/0x9c846d808a41328a209e235b5e3c4e626dab169e.png", - "aggregators": ["TraderJoe", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0xb36faf341c7817d681f23bcedbd3d85467e5ad9f": { - "address": "0xb36faf341c7817d681f23bcedbd3d85467e5ad9f", - "symbol": "RPEPE", - "decimals": 18, - "name": "Red Pepe", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/43114/0xb36faf341c7817d681f23bcedbd3d85467e5ad9f.png", - "aggregators": ["TraderJoe", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0x8ffdf2de812095b1d19cb146e4c004587c0a0692": { - "address": "0x8ffdf2de812095b1d19cb146e4c004587c0a0692", - "symbol": "ABTC.B", - "decimals": 8, - "name": "Aave v3 BTC.b", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/43114/0x8ffdf2de812095b1d19cb146e4c004587c0a0692.png", - "aggregators": ["LiFi", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0x6d80113e533a2c0fe82eabd35f1875dcea89ea97": { - "address": "0x6d80113e533a2c0fe82eabd35f1875dcea89ea97", - "symbol": "AWAVAX", - "decimals": 18, - "name": "Aave v3 WAVAX", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/43114/0x6d80113e533a2c0fe82eabd35f1875dcea89ea97.png", - "aggregators": ["LiFi", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0x820802fa8a99901f52e39acd21177b0be6ee2974": { - "address": "0x820802fa8a99901f52e39acd21177b0be6ee2974", - "symbol": "EUROE", - "decimals": 6, - "name": "EUROe Stablecoin", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/43114/0x820802fa8a99901f52e39acd21177b0be6ee2974.png", - "aggregators": ["LiFi", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0xd889657e1570c5bedd3fa846ab7865a86aaa338a": { - "address": "0xd889657e1570c5bedd3fa846ab7865a86aaa338a", - "symbol": "AXLWMAI", - "decimals": 18, - "name": "Axelar Wrapped WMAI", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/43114/0xd889657e1570c5bedd3fa846ab7865a86aaa338a.png", - "aggregators": ["LiFi", "Rubic", "Squid", "Rango"], - "occurrences": 4 - }, - "0xd6070ae98b8069de6b494332d1a1a81b6179d960": { - "address": "0xd6070ae98b8069de6b494332d1a1a81b6179d960", - "symbol": "BIFI", - "decimals": 18, - "name": "beefy.finance", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/43114/0xd6070ae98b8069de6b494332d1a1a81b6179d960.png", - "aggregators": ["LiFi", "TrustWallet", "Socket", "Rubic"], - "occurrences": 4 - }, - "0x0802d66f029c46e042b74d543fc43b6705ccb4ba": { - "address": "0x0802d66f029c46e042b74d543fc43b6705ccb4ba", - "symbol": "APE", - "decimals": 18, - "name": "APE", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/43114/0x0802d66f029c46e042b74d543fc43b6705ccb4ba.png", - "aggregators": ["LiFi", "Socket", "Rubic", "Rango"], - "occurrences": 4 - }, - "0x249848beca43ac405b8102ec90dd5f22ca513c06": { - "address": "0x249848beca43ac405b8102ec90dd5f22ca513c06", - "symbol": "CRV.E", - "decimals": 18, - "name": "Curve DAO Token", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/43114/0x249848beca43ac405b8102ec90dd5f22ca513c06.png", - "aggregators": ["LiFi", "TrustWallet", "Rubic", "Rango"], - "occurrences": 4 - }, - "0xd5d0a9b3f2c264b955ae7161cfa6d38a7aea60a7": { - "address": "0xd5d0a9b3f2c264b955ae7161cfa6d38a7aea60a7", - "symbol": "ABCPHAR", - "decimals": 18, - "name": "abcPHAR", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/43114/0xd5d0a9b3f2c264b955ae7161cfa6d38a7aea60a7.png", - "aggregators": ["LiFi", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0xedf647326007e64d94b0ee69743350f3736e392c": { - "address": "0xedf647326007e64d94b0ee69743350f3736e392c", - "symbol": "TICO", - "decimals": 18, - "name": "TICO", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/43114/0xedf647326007e64d94b0ee69743350f3736e392c.png", - "aggregators": ["PangolinDex", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x0cd741f007b417088ca7f4392e8d6b49b4f7a975": { - "address": "0x0cd741f007b417088ca7f4392e8d6b49b4f7a975", - "symbol": "KINGSHIT", - "decimals": 18, - "name": "Kingshit", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/43114/0x0cd741f007b417088ca7f4392e8d6b49b4f7a975.png", - "aggregators": ["TraderJoe", "Rubic", "Sonarwatch"], - "occurrences": 3 - }, - "0x95e376390f472fcaa21995169e11d523954b3bbb": { - "address": "0x95e376390f472fcaa21995169e11d523954b3bbb", - "symbol": "TRYT", - "decimals": 18, - "name": "LiraT", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/43114/0x95e376390f472fcaa21995169e11d523954b3bbb.png", - "aggregators": ["CoinGecko", "Rubic", "Sonarwatch"], - "occurrences": 3 - }, - "0x7c6a937943f135283a2561938de2200994a8f7a7": { - "address": "0x7c6a937943f135283a2561938de2200994a8f7a7", - "symbol": "NOTE", - "decimals": 8, - "name": "Republic Note", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/43114/0x7c6a937943f135283a2561938de2200994a8f7a7.png", - "aggregators": ["CoinGecko", "Rubic", "Sonarwatch"], - "occurrences": 3 - }, - "0x14eb40fb7900185c01adc6a5b8ac506d8a600e3c": { - "address": "0x14eb40fb7900185c01adc6a5b8ac506d8a600e3c", - "symbol": "EUROT", - "decimals": 18, - "name": "Token Teknoloji A.Ş. EURO", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/43114/0x14eb40fb7900185c01adc6a5b8ac506d8a600e3c.png", - "aggregators": ["CoinGecko", "Rubic", "Rango"], - "occurrences": 3 - }, - "0xae55ab6a966863cb4c774ba8e6c0a37cfbea01f9": { - "address": "0xae55ab6a966863cb4c774ba8e6c0a37cfbea01f9", - "symbol": "GRAMG", - "decimals": 18, - "name": "Gram Gold", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/43114/0xae55ab6a966863cb4c774ba8e6c0a37cfbea01f9.png", - "aggregators": ["CoinGecko", "Rubic", "Sonarwatch"], - "occurrences": 3 - }, - "0xe229b734251dd48dda27bb908d90329f229c3531": { - "address": "0xe229b734251dd48dda27bb908d90329f229c3531", - "symbol": "GRAMP", - "decimals": 18, - "name": "Gram Platinum", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/43114/0xe229b734251dd48dda27bb908d90329f229c3531.png", - "aggregators": ["CoinGecko", "Rubic", "Sonarwatch"], - "occurrences": 3 - }, - "0xe08b4c1005603427420e64252a8b120cace4d122": { - "address": "0xe08b4c1005603427420e64252a8b120cace4d122", - "symbol": "BENJI", - "decimals": 18, - "name": "Franklin OnChain U.S. Government Money Fund", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/43114/0xe08b4c1005603427420e64252a8b120cace4d122.png", - "aggregators": ["CoinGecko", "Rubic", "Sonarwatch"], - "occurrences": 3 - }, - "0x14a5f2872396802c3cc8942a39ab3e4118ee5038": { - "address": "0x14a5f2872396802c3cc8942a39ab3e4118ee5038", - "symbol": "BTSLA", - "decimals": 18, - "name": "Backed Tesla Inc", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/43114/0x14a5f2872396802c3cc8942a39ab3e4118ee5038.png", - "aggregators": ["CoinGecko", "LiFi", "Rubic"], - "occurrences": 3 - }, - "0xac28c9178acc8ba4a11a29e013a3a2627086e422": { - "address": "0xac28c9178acc8ba4a11a29e013a3a2627086e422", - "symbol": "BMSTR", - "decimals": 18, - "name": "Backed MicroStrategy Inc", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/43114/0xac28c9178acc8ba4a11a29e013a3a2627086e422.png", - "aggregators": ["CoinGecko", "LiFi", "Rubic"], - "occurrences": 3 - }, - "0x542245f2b93b30994a4670121541b38226f1208c": { - "address": "0x542245f2b93b30994a4670121541b38226f1208c", - "symbol": "BALN", - "decimals": 18, - "name": "BALN", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/43114/0x542245f2b93b30994a4670121541b38226f1208c.png", - "aggregators": ["CoinGecko", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x7212088a11b4d8f6fc90fbb3dfe793b45dd72323": { - "address": "0x7212088a11b4d8f6fc90fbb3dfe793b45dd72323", - "symbol": "BGME", - "decimals": 18, - "name": "Backed GameStop Corp", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/43114/0x7212088a11b4d8f6fc90fbb3dfe793b45dd72323.png", - "aggregators": ["CoinGecko", "Rubic", "Sonarwatch"], - "occurrences": 3 - }, - "0x30c74769ea97c6454e2a4d4e9d2da947c64ca1e0": { - "address": "0x30c74769ea97c6454e2a4d4e9d2da947c64ca1e0", - "symbol": "BTC.ℏ[AVA]", - "decimals": 8, - "name": "BTC.ℏ[AVA]", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/43114/0x30c74769ea97c6454e2a4d4e9d2da947c64ca1e0.png", - "aggregators": ["CoinGecko", "Rubic", "Rango"], - "occurrences": 3 - }, - "0xebee37aaf2905b7bda7e3b928043862e982e8f32": { - "address": "0xebee37aaf2905b7bda7e3b928043862e982e8f32", - "symbol": "BGOOGL", - "decimals": 18, - "name": "Backed Alphabet Class A", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/43114/0xebee37aaf2905b7bda7e3b928043862e982e8f32.png", - "aggregators": ["CoinGecko", "Rubic", "Sonarwatch"], - "occurrences": 3 - }, - "0xade6057fcafa57d6d51ffa341c64ce4814995995": { - "address": "0xade6057fcafa57d6d51ffa341c64ce4814995995", - "symbol": "BZPR1", - "decimals": 18, - "name": "Backed ZPR1 $ 1-3 Month T-Bill", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/43114/0xade6057fcafa57d6d51ffa341c64ce4814995995.png", - "aggregators": ["CoinGecko", "Rubic", "Sonarwatch"], - "occurrences": 3 - }, - "0xf44ff799ea2bbfec96f9a50498209aac3c2b3b8b": { - "address": "0xf44ff799ea2bbfec96f9a50498209aac3c2b3b8b", - "symbol": "ROUTE", - "decimals": 18, - "name": "Router Protocol [OLD]", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/43114/0xf44ff799ea2bbfec96f9a50498209aac3c2b3b8b.png", - "aggregators": ["CoinGecko", "Rubic", "Sonarwatch"], - "occurrences": 3 - }, - "0x422812fc000e831b5ff13c181d85f34dd71380b3": { - "address": "0x422812fc000e831b5ff13c181d85f34dd71380b3", - "symbol": "MPT", - "decimals": 18, - "name": "MPT", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/43114/0x422812fc000e831b5ff13c181d85f34dd71380b3.png", - "aggregators": ["CoinGecko", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x2f11eeee0bf21e7661a22dbbbb9068f4ad191b86": { - "address": "0x2f11eeee0bf21e7661a22dbbbb9068f4ad191b86", - "symbol": "BNIU", - "decimals": 18, - "name": "Backed NIU Technologies", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/43114/0x2f11eeee0bf21e7661a22dbbbb9068f4ad191b86.png", - "aggregators": ["CoinGecko", "Rubic", "Rango"], - "occurrences": 3 - }, - "0xd2a530170d71a9cfe1651fb468e2b98f7ed7456b": { - "address": "0xd2a530170d71a9cfe1651fb468e2b98f7ed7456b", - "symbol": "AUDF", - "decimals": 6, - "name": "Forte AUD", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/43114/0xd2a530170d71a9cfe1651fb468e2b98f7ed7456b.png", - "aggregators": ["CoinGecko", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x374a457967ba24fd3ae66294cab08244185574b0": { - "address": "0x374a457967ba24fd3ae66294cab08244185574b0", - "symbol": "BMSFT", - "decimals": 18, - "name": "Backed Microsoft", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/43114/0x374a457967ba24fd3ae66294cab08244185574b0.png", - "aggregators": ["CoinGecko", "Rubic", "Sonarwatch"], - "occurrences": 3 - }, - "0xea50f402653c41cadbafd1f788341db7b7f37816": { - "address": "0xea50f402653c41cadbafd1f788341db7b7f37816", - "symbol": "SGYD", - "decimals": 18, - "name": "sGYD", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/43114/0xea50f402653c41cadbafd1f788341db7b7f37816.png", - "aggregators": ["CoinGecko", "Rubic", "Sonarwatch"], - "occurrences": 3 - }, - "0x949185d3be66775ea648f4a306740ea9eff9c567": { - "address": "0x949185d3be66775ea648f4a306740ea9eff9c567", - "symbol": "YEL", - "decimals": 18, - "name": "YELToken", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/43114/0x949185d3be66775ea648f4a306740ea9eff9c567.png", - "aggregators": ["CoinGecko", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x0f76d32cdccdcbd602a55af23eaf58fd1ee17245": { - "address": "0x0f76d32cdccdcbd602a55af23eaf58fd1ee17245", - "symbol": "BERNA", - "decimals": 18, - "name": "Backed ERNA $ Bond", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/43114/0x0f76d32cdccdcbd602a55af23eaf58fd1ee17245.png", - "aggregators": ["CoinGecko", "Rubic", "Sonarwatch"], - "occurrences": 3 - }, - "0x3f95aa88ddbb7d9d484aa3d482bf0a80009c52c9": { - "address": "0x3f95aa88ddbb7d9d484aa3d482bf0a80009c52c9", - "symbol": "BERNX", - "decimals": 18, - "name": "Backed ERNX € Bond", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/43114/0x3f95aa88ddbb7d9d484aa3d482bf0a80009c52c9.png", - "aggregators": ["CoinGecko", "Rubic", "Sonarwatch"], - "occurrences": 3 - }, - "0x78ea17559b3d2cf85a7f9c2c704eda119db5e6de": { - "address": "0x78ea17559b3d2cf85a7f9c2c704eda119db5e6de", - "symbol": "AVE", - "decimals": 18, - "name": "Avaware", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/43114/0x78ea17559b3d2cf85a7f9c2c704eda119db5e6de.png", - "aggregators": ["PangolinDex", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x1ecd47ff4d9598f89721a2866bfeb99505a413ed": { - "address": "0x1ecd47ff4d9598f89721a2866bfeb99505a413ed", - "symbol": "AVME", - "decimals": 18, - "name": "AVME", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/43114/0x1ecd47ff4d9598f89721a2866bfeb99505a413ed.png", - "aggregators": ["PangolinDex", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x0ebd9537a25f56713e34c45b38f421a1e7191469": { - "address": "0x0ebd9537a25f56713e34c45b38f421a1e7191469", - "symbol": "OOE", - "decimals": 18, - "name": "OpenOcean", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/43114/0x0ebd9537a25f56713e34c45b38f421a1e7191469.png", - "aggregators": ["PangolinDex", "Socket", "Rubic"], - "occurrences": 3 - }, - "0xea6887e4a9cda1b77e70129e5fba830cdb5cddef": { - "address": "0xea6887e4a9cda1b77e70129e5fba830cdb5cddef", - "symbol": "IMX.A", - "decimals": 18, - "name": "IMX@avalanche", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/43114/0xea6887e4a9cda1b77e70129e5fba830cdb5cddef.png", - "aggregators": ["PangolinDex", "LiFi", "Rubic", "Rango"], - "occurrences": 4 - }, - "0x4f60a160d8c2dddaafe16fcc57566db84d674bd6": { - "address": "0x4f60a160d8c2dddaafe16fcc57566db84d674bd6", - "symbol": "JEWEL", - "decimals": 18, - "name": "Jewels", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/43114/0x4f60a160d8c2dddaafe16fcc57566db84d674bd6.png", - "aggregators": ["PangolinDex", "LiFi", "Rango"], - "occurrences": 3 - }, - "0xca220f1e486a8e35d6f1dcd62073ad8dd04659ed": { - "address": "0xca220f1e486a8e35d6f1dcd62073ad8dd04659ed", - "symbol": "GLDB", - "decimals": 6, - "name": "BiAltin", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/43114/0xca220f1e486a8e35d6f1dcd62073ad8dd04659ed.png", - "aggregators": ["PangolinDex", "LiFi", "Rubic"], - "occurrences": 3 - }, - "0xfa4b6db72a650601e7bd50a0a9f537c9e98311b2": { - "address": "0xfa4b6db72a650601e7bd50a0a9f537c9e98311b2", - "symbol": "HSHARES", - "decimals": 18, - "name": "HERMES Shares", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/43114/0xfa4b6db72a650601e7bd50a0a9f537c9e98311b2.png", - "aggregators": ["PangolinDex", "LiFi", "Rubic"], - "occurrences": 3 - }, - "0xe6b9d092223f39013656702a40dbe6b7decc5746": { - "address": "0xe6b9d092223f39013656702a40dbe6b7decc5746", - "symbol": "ANGLE", - "decimals": 18, - "name": "ANGLE", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/43114/0xe6b9d092223f39013656702a40dbe6b7decc5746.png", - "aggregators": ["PangolinDex", "LiFi", "Rubic"], - "occurrences": 3 - }, - "0x9c8e99eb130aed653ef90fed709d9c3e9cc8b269": { - "address": "0x9c8e99eb130aed653ef90fed709d9c3e9cc8b269", - "symbol": "HTZ", - "decimals": 18, - "name": "Hertz Token", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/43114/0x9c8e99eb130aed653ef90fed709d9c3e9cc8b269.png", - "aggregators": ["PangolinDex", "LiFi", "Rubic"], - "occurrences": 3 - }, - "0x0fec6d8a84a85b79a1ffe0e28c1902e08b653efe": { - "address": "0x0fec6d8a84a85b79a1ffe0e28c1902e08b653efe", - "symbol": "HOOP", - "decimals": 18, - "name": "Hoopoe Ventures", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/43114/0x0fec6d8a84a85b79a1ffe0e28c1902e08b653efe.png", - "aggregators": ["PangolinDex", "LiFi", "Rubic"], - "occurrences": 3 - }, - "0x402fd175049e95cef2cc9ca1fecdb6d9736e690d": { - "address": "0x402fd175049e95cef2cc9ca1fecdb6d9736e690d", - "symbol": "CATS", - "decimals": 18, - "name": "CATOSHI", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/43114/0x402fd175049e95cef2cc9ca1fecdb6d9736e690d.png", - "aggregators": ["PangolinDex", "LiFi", "Rubic"], - "occurrences": 3 - }, - "0x1fe4751d9bdabac8d90067056cb45ab6823d2c12": { - "address": "0x1fe4751d9bdabac8d90067056cb45ab6823d2c12", - "symbol": "ARGON", - "decimals": 18, - "name": "ArgonToken", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/43114/0x1fe4751d9bdabac8d90067056cb45ab6823d2c12.png", - "aggregators": ["PangolinDex", "LiFi", "Rubic"], - "occurrences": 3 - }, - "0x312ee43df66d1fd1ea28e5b28f355da84dca13c2": { - "address": "0x312ee43df66d1fd1ea28e5b28f355da84dca13c2", - "symbol": "SWAPXI", - "decimals": 12, - "name": "SwapXI Token", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/43114/0x312ee43df66d1fd1ea28e5b28f355da84dca13c2.png", - "aggregators": ["PangolinDex", "LiFi", "Rubic"], - "occurrences": 3 - }, - "0x0659133127749cc0616ed6632912ddf7cc8d7545": { - "address": "0x0659133127749cc0616ed6632912ddf7cc8d7545", - "symbol": "DLAUNCH", - "decimals": 18, - "name": "DefiLaunch Token", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/43114/0x0659133127749cc0616ed6632912ddf7cc8d7545.png", - "aggregators": ["PangolinDex", "LiFi", "Rubic"], - "occurrences": 3 - }, - "0xf3ec49acb3084618121741e4bbb20996d383e9b2": { - "address": "0xf3ec49acb3084618121741e4bbb20996d383e9b2", - "symbol": "KING", - "decimals": 18, - "name": "KING", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/43114/0xf3ec49acb3084618121741e4bbb20996d383e9b2.png", - "aggregators": ["PangolinDex", "LiFi", "Rubic"], - "occurrences": 3 - }, - "0x15c841043e13ffaa9a99fabea236d40f45615623": { - "address": "0x15c841043e13ffaa9a99fabea236d40f45615623", - "symbol": "BUSINESSES", - "decimals": 18, - "name": "$BUSINESSES", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/43114/0x15c841043e13ffaa9a99fabea236d40f45615623.png", - "aggregators": ["PangolinDex", "LiFi", "Rubic"], - "occurrences": 3 - }, - "0x979ffd8eed7a43629ea29581df4bfe2b3f224e47": { - "address": "0x979ffd8eed7a43629ea29581df4bfe2b3f224e47", - "symbol": "OML", - "decimals": 18, - "name": "Omlira", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/43114/0x979ffd8eed7a43629ea29581df4bfe2b3f224e47.png", - "aggregators": ["PangolinDex", "LiFi", "Rubic"], - "occurrences": 3 - }, - "0x6fefd97f328342a8a840546a55fdcfee7542f9a8": { - "address": "0x6fefd97f328342a8a840546a55fdcfee7542f9a8", - "symbol": "AGEUR", - "decimals": 18, - "name": "agEUR (Multichain)", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/43114/0x6fefd97f328342a8a840546a55fdcfee7542f9a8.png", - "aggregators": ["PangolinDex", "LiFi", "Rubic"], - "occurrences": 3 - }, - "0x6b56ec4a92765203508fb40fec9fa23e549b705a": { - "address": "0x6b56ec4a92765203508fb40fec9fa23e549b705a", - "symbol": "UND", - "decimals": 18, - "name": "Unbound Dollar", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/43114/0x6b56ec4a92765203508fb40fec9fa23e549b705a.png", - "aggregators": ["PangolinDex", "LiFi", "Rubic"], - "occurrences": 3 - }, - "0x25f11e22d5079c2970496d592579bf4902d09d76": { - "address": "0x25f11e22d5079c2970496d592579bf4902d09d76", - "symbol": "JIGEN", - "decimals": 18, - "name": "Jigen", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/43114/0x25f11e22d5079c2970496d592579bf4902d09d76.png", - "aggregators": ["TraderJoe", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x79ba10485ae46a9436d560d9664369176ec2eb2b": { - "address": "0x79ba10485ae46a9436d560d9664369176ec2eb2b", - "symbol": "WORM", - "decimals": 18, - "name": "Chikn Worm", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/43114/0x79ba10485ae46a9436d560d9664369176ec2eb2b.png", - "aggregators": ["TraderJoe", "Rubic", "Rango"], - "occurrences": 3 - }, - "0xc06e17bdc3f008f4ce08d27d364416079289e729": { - "address": "0xc06e17bdc3f008f4ce08d27d364416079289e729", - "symbol": "DWC", - "decimals": 18, - "name": "DOGwifCROCS", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/43114/0xc06e17bdc3f008f4ce08d27d364416079289e729.png", - "aggregators": ["TraderJoe", "Rubic", "Rango"], - "occurrences": 3 - }, - "0xe46b44179db3af934da552b35ff8869e98dc6af5": { - "address": "0xe46b44179db3af934da552b35ff8869e98dc6af5", - "symbol": "PREDICT", - "decimals": 18, - "name": "predict", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/43114/0xe46b44179db3af934da552b35ff8869e98dc6af5.png", - "aggregators": ["TraderJoe", "Rubic", "Rango"], - "occurrences": 3 - }, - "0xdef1fac7bf08f173d286bbbdcbeeade695129840": { - "address": "0xdef1fac7bf08f173d286bbbdcbeeade695129840", - "symbol": "CERBY", - "decimals": 18, - "name": "Cerby Token", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/43114/0xdef1fac7bf08f173d286bbbdcbeeade695129840.png", - "aggregators": ["LiFi", "Rubic", "SushiSwap"], - "occurrences": 3 - }, - "0x853ea32391aaa14c112c645fd20ba389ab25c5e0": { - "address": "0x853ea32391aaa14c112c645fd20ba389ab25c5e0", - "symbol": "USX", - "decimals": 18, - "name": "dForce USD", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/43114/0x853ea32391aaa14c112c645fd20ba389ab25c5e0.png", - "aggregators": ["LiFi", "Socket", "Rubic"], - "occurrences": 3 - }, - "0xf873633df9d5cdd62bb1f402499cc470a72a02d7": { - "address": "0xf873633df9d5cdd62bb1f402499cc470a72a02d7", - "symbol": "MOVR", - "decimals": 18, - "name": "MoonRiver", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/43114/0xf873633df9d5cdd62bb1f402499cc470a72a02d7.png", - "aggregators": ["LiFi", "Rubic", "SushiSwap"], - "occurrences": 3 - }, - "0xdbf31df14b66535af65aac99c32e9ea844e14501": { - "address": "0xdbf31df14b66535af65aac99c32e9ea844e14501", - "symbol": "RENBTC", - "decimals": 8, - "name": "renBTC", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/43114/0xdbf31df14b66535af65aac99c32e9ea844e14501.png", - "aggregators": ["LiFi", "Socket", "Rubic"], - "occurrences": 3 - }, - "0x320ada89dbfa3a154613d2731c9bc3a4030dba19": { - "address": "0x320ada89dbfa3a154613d2731c9bc3a4030dba19", - "symbol": "FROST", - "decimals": 18, - "name": "FROST", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/43114/0x320ada89dbfa3a154613d2731c9bc3a4030dba19.png", - "aggregators": ["LiFi", "Rubic", "Rango"], - "occurrences": 3 - }, - "0xaec8318a9a59baeb39861d10ff6c7f7bf1f96c57": { - "address": "0xaec8318a9a59baeb39861d10ff6c7f7bf1f96c57", - "symbol": "AGEUR", - "decimals": 18, - "name": "agEUR", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/43114/0xaec8318a9a59baeb39861d10ff6c7f7bf1f96c57.png", - "aggregators": ["LiFi", "Rubic", "SushiSwap"], - "occurrences": 3 - }, - "0xe1c110e1b1b4a1ded0caf3e42bfbdbb7b5d7ce1c": { - "address": "0xe1c110e1b1b4a1ded0caf3e42bfbdbb7b5d7ce1c", - "symbol": "ELK", - "decimals": 18, - "name": "Elk", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/43114/0xe1c110e1b1b4a1ded0caf3e42bfbdbb7b5d7ce1c.png", - "aggregators": ["LiFi", "Socket", "Rubic"], - "occurrences": 3 - }, - "0xa6220b4209353dfef03b6ce410c8f01105515f94": { - "address": "0xa6220b4209353dfef03b6ce410c8f01105515f94", - "symbol": "AXLWBTC", - "decimals": 8, - "name": "Axelar Wrapped WBTC", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/43114/0xa6220b4209353dfef03b6ce410c8f01105515f94.png", - "aggregators": ["LiFi", "Squid", "SushiSwap"], - "occurrences": 3 - }, - "0x939b1a17c0d0aa3fea634ad9157c88245a53c713": { - "address": "0x939b1a17c0d0aa3fea634ad9157c88245a53c713", - "symbol": "FRXETH.AXL", - "decimals": 18, - "name": "Frax Ether", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/43114/0x939b1a17c0d0aa3fea634ad9157c88245a53c713.png", - "aggregators": ["LiFi", "Rubic", "Squid"], - "occurrences": 3 - }, - "0xc5fa5669e326da8b2c35540257cd48811f40a36b": { - "address": "0xc5fa5669e326da8b2c35540257cd48811f40a36b", - "symbol": "AXLDAI", - "decimals": 18, - "name": "Axelar Wrapped DAI", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/43114/0xc5fa5669e326da8b2c35540257cd48811f40a36b.png", - "aggregators": ["LiFi", "Squid", "SushiSwap"], - "occurrences": 3 - }, - "0x937e077abaea52d3abf879c9b9d3f2ebd15baa21": { - "address": "0x937e077abaea52d3abf879c9b9d3f2ebd15baa21", - "symbol": "OH", - "decimals": 18, - "name": "Oh! Finance", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/43114/0x937e077abaea52d3abf879c9b9d3f2ebd15baa21.png", - "aggregators": ["Socket", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x49f519002eeced6902f24c0be72b6d898e4d27fc": { - "address": "0x49f519002eeced6902f24c0be72b6d898e4d27fc", - "symbol": "BSGG", - "decimals": 18, - "name": "Betswap.gg", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/43114/0x49f519002eeced6902f24c0be72b6d898e4d27fc.png", - "aggregators": ["Socket", "Rubic", "Rango"], - "occurrences": 3 - }, - "0xb168085d608d7ba4931a503d3424bc44ddb6b30d": { - "address": "0xb168085d608d7ba4931a503d3424bc44ddb6b30d", - "symbol": "SIFU", - "decimals": 18, - "name": "Sifu Vision", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/43114/0xb168085d608d7ba4931a503d3424bc44ddb6b30d.png", - "aggregators": ["Socket", "Rubic", "Squid"], - "occurrences": 3 - }, - "0xa1144a6a1304bd9cbb16c800f7a867508726566e": { - "address": "0xa1144a6a1304bd9cbb16c800f7a867508726566e", - "symbol": "BAG", - "decimals": 18, - "name": "BAG", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/43114/0xa1144a6a1304bd9cbb16c800f7a867508726566e.png", - "aggregators": ["Socket", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x3405e88af759992937b84e58f2fe691ef0eea320": { - "address": "0x3405e88af759992937b84e58f2fe691ef0eea320", - "symbol": "SFRAX", - "decimals": 18, - "name": "Staked FRAX", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/43114/0x3405e88af759992937b84e58f2fe691ef0eea320.png", - "aggregators": ["Rubic", "Rango", "Sonarwatch"], - "occurrences": 3 - }, - "0x63682bdc5f875e9bf69e201550658492c9763f89": { - "address": "0x63682bdc5f875e9bf69e201550658492c9763f89", - "symbol": "BSGG", - "decimals": 18, - "name": "Betswap.gg", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/43114/0x63682bdc5f875e9bf69e201550658492c9763f89.png", - "aggregators": ["Rubic", "Rango", "SushiSwap"], - "occurrences": 3 - }, - "0xb9a98894ffbfa98c73a818b5b044e5b1c8666f56": { - "address": "0xb9a98894ffbfa98c73a818b5b044e5b1c8666f56", - "symbol": "AVIA", - "decimals": 18, - "name": "Kepler", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/43114/0xb9a98894ffbfa98c73a818b5b044e5b1c8666f56.png", - "aggregators": ["Rubic", "Rango", "Sonarwatch"], - "occurrences": 3 - }, - "0x087c440f251ff6cfe62b86dde1be558b95b4bb9b": { - "address": "0x087c440f251ff6cfe62b86dde1be558b95b4bb9b", - "symbol": "BOLD", - "decimals": 18, - "name": "Legacy BOLD", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/43114/0x087c440f251ff6cfe62b86dde1be558b95b4bb9b.png", - "aggregators": ["Rubic", "Rango", "Sonarwatch"], - "occurrences": 3 - }, - "0xf44fb887334fa17d2c5c0f970b5d320ab53ed557": { - "address": "0xf44fb887334fa17d2c5c0f970b5d320ab53ed557", - "symbol": "START", - "decimals": 18, - "name": "Starter.xyz", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/43114/0xf44fb887334fa17d2c5c0f970b5d320ab53ed557.png", - "aggregators": ["Rubic", "Rango", "Sonarwatch"], - "occurrences": 3 - }, - "0xc0367f9b1f84ca8de127226ac2a994ea4bf1e41b": { - "address": "0xc0367f9b1f84ca8de127226ac2a994ea4bf1e41b", - "symbol": "BRIDGE", - "decimals": 18, - "name": "Cross-Chain Bridge", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/43114/0xc0367f9b1f84ca8de127226ac2a994ea4bf1e41b.png", - "aggregators": ["Rubic", "Rango", "Sonarwatch"], - "occurrences": 3 - }, - "0xc92f165f5e20979576a7ba48f16eb45361c078a2": { - "address": "0xc92f165f5e20979576a7ba48f16eb45361c078a2", - "symbol": "EGS", - "decimals": 18, - "name": "EminGunSirer", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/43114/0xc92f165f5e20979576a7ba48f16eb45361c078a2.png", - "aggregators": ["Rubic", "Rango", "Sonarwatch"], - "occurrences": 3 - }, - "0xfda866cfece71f4c17b4a5e5f9a00ac08c72eadc": { - "address": "0xfda866cfece71f4c17b4a5e5f9a00ac08c72eadc", - "symbol": "PERA", - "decimals": 18, - "name": "Pera Finance", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/43114/0xfda866cfece71f4c17b4a5e5f9a00ac08c72eadc.png", - "aggregators": ["Rubic", "Rango", "Sonarwatch"], - "occurrences": 3 - }, - "0xdebb1d6a2196f2335ad51fbde7ca587205889360": { - "address": "0xdebb1d6a2196f2335ad51fbde7ca587205889360", - "symbol": "GEM", - "decimals": 18, - "name": "NFTmall", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/43114/0xdebb1d6a2196f2335ad51fbde7ca587205889360.png", - "aggregators": ["Rubic", "Rango", "Sonarwatch"], - "occurrences": 3 - }, - "0x99083d1b9c6744c71d0cf70b8965faca37684527": { - "address": "0x99083d1b9c6744c71d0cf70b8965faca37684527", - "symbol": "FRF", - "decimals": 18, - "name": "FRANCE REV FINANCE", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/43114/0x99083d1b9c6744c71d0cf70b8965faca37684527.png", - "aggregators": ["Rubic", "Rango", "Sonarwatch"], - "occurrences": 3 - }, - "0x8929e9dbd2785e3ba16175e596cdd61520fee0d1": { - "address": "0x8929e9dbd2785e3ba16175e596cdd61520fee0d1", - "symbol": "ALTD", - "decimals": 18, - "name": "Altitude", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/43114/0x8929e9dbd2785e3ba16175e596cdd61520fee0d1.png", - "aggregators": ["Rubic", "Rango", "Sonarwatch"], - "occurrences": 3 - }, - "0x1209810df5370f68b28e6832dc4ac80072e2d0b8": { - "address": "0x1209810df5370f68b28e6832dc4ac80072e2d0b8", - "symbol": "AVALOX", - "decimals": 18, - "name": "Avalox", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/43114/0x1209810df5370f68b28e6832dc4ac80072e2d0b8.png", - "aggregators": ["Rubic", "Rango", "Sonarwatch"], - "occurrences": 3 - }, - "0x2da8312e2c08b79104c6b18ba26bc7065abec704": { - "address": "0x2da8312e2c08b79104c6b18ba26bc7065abec704", - "symbol": "$BAWLS", - "decimals": 18, - "name": "Bawls onu", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/43114/0x2da8312e2c08b79104c6b18ba26bc7065abec704.png", - "aggregators": ["Rubic", "Rango", "Sonarwatch"], - "occurrences": 3 - }, - "0xde8232cf3cca014554e3b607e0fd554fbfdb20c6": { - "address": "0xde8232cf3cca014554e3b607e0fd554fbfdb20c6", - "symbol": "BEES", - "decimals": 18, - "name": "BEE Launchpad", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/43114/0xde8232cf3cca014554e3b607e0fd554fbfdb20c6.png", - "aggregators": ["Rubic", "Rango", "Sonarwatch"], - "occurrences": 3 - }, - "0x334efd1aa0caf4b9b206dd8b9002b7172fc805e6": { - "address": "0x334efd1aa0caf4b9b206dd8b9002b7172fc805e6", - "symbol": "BLOB", - "decimals": 18, - "name": "BLOB", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/43114/0x334efd1aa0caf4b9b206dd8b9002b7172fc805e6.png", - "aggregators": ["Rubic", "Rango", "Sonarwatch"], - "occurrences": 3 - }, - "0xf5f3216e9fed36f8ccf08d310fec6fbf7f06200f": { - "address": "0xf5f3216e9fed36f8ccf08d310fec6fbf7f06200f", - "symbol": "BOBS", - "decimals": 18, - "name": "BOBS", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/43114/0xf5f3216e9fed36f8ccf08d310fec6fbf7f06200f.png", - "aggregators": ["Rubic", "Rango", "Sonarwatch"], - "occurrences": 3 - }, - "0xb723783e0f9015c8e20b87f6cf7ae24df6479e62": { - "address": "0xb723783e0f9015c8e20b87f6cf7ae24df6479e62", - "symbol": "CCY", - "decimals": 18, - "name": "ChoccySwap", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/43114/0xb723783e0f9015c8e20b87f6cf7ae24df6479e62.png", - "aggregators": ["Rubic", "Rango", "Sonarwatch"], - "occurrences": 3 - }, - "0x5085434227ab73151fad2de546210cbc8663df96": { - "address": "0x5085434227ab73151fad2de546210cbc8663df96", - "symbol": "DBY", - "decimals": 18, - "name": "Metaderby", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/43114/0x5085434227ab73151fad2de546210cbc8663df96.png", - "aggregators": ["Rubic", "Rango", "Sonarwatch"], - "occurrences": 3 - }, - "0xe533b81297b820d2eb2cd837263926596328e8d2": { - "address": "0xe533b81297b820d2eb2cd837263926596328e8d2", - "symbol": "EMDX", - "decimals": 18, - "name": "EMDX", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/43114/0xe533b81297b820d2eb2cd837263926596328e8d2.png", - "aggregators": ["Rubic", "Rango", "Sonarwatch"], - "occurrences": 3 - }, - "0x5477e4e18b54cf1380242cb3d0edb03c79c242b9": { - "address": "0x5477e4e18b54cf1380242cb3d0edb03c79c242b9", - "symbol": "YETI", - "decimals": 18, - "name": "Yeti", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/43114/0x5477e4e18b54cf1380242cb3d0edb03c79c242b9.png", - "aggregators": ["Rubic", "Rango", "Sonarwatch"], - "occurrences": 3 - }, - "0x921f10d157d6dfff4ddcf72a12b53c2effefbb90": { - "address": "0x921f10d157d6dfff4ddcf72a12b53c2effefbb90", - "symbol": "LFG", - "decimals": 18, - "name": "Lotofomogrow", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/43114/0x921f10d157d6dfff4ddcf72a12b53c2effefbb90.png", - "aggregators": ["Rubic", "Rango", "Sonarwatch"], - "occurrences": 3 - }, - "0xed0d09ee0f32f7b5afae6f2d728189c5e355b52a": { - "address": "0xed0d09ee0f32f7b5afae6f2d728189c5e355b52a", - "symbol": "LIZARD", - "decimals": 18, - "name": "Lizard", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/43114/0xed0d09ee0f32f7b5afae6f2d728189c5e355b52a.png", - "aggregators": ["Rubic", "Rango", "Sonarwatch"], - "occurrences": 3 - }, - "0x53b22d356f34e977e48921e07381de0f8200b8e6": { - "address": "0x53b22d356f34e977e48921e07381de0f8200b8e6", - "symbol": "MAG", - "decimals": 18, - "name": "Monsterra MAG", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/43114/0x53b22d356f34e977e48921e07381de0f8200b8e6.png", - "aggregators": ["Rubic", "Rango", "Sonarwatch"], - "occurrences": 3 - }, - "0x771c01e1917b5ab5b791f7b96f0cd69e22f6dbcf": { - "address": "0x771c01e1917b5ab5b791f7b96f0cd69e22f6dbcf", - "symbol": "NNT", - "decimals": 18, - "name": "Nunu Spirits", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/43114/0x771c01e1917b5ab5b791f7b96f0cd69e22f6dbcf.png", - "aggregators": ["Rubic", "Rango", "Sonarwatch"], - "occurrences": 3 - }, - "0x94960952876e3ed6a7760b198354fcc5319a406a": { - "address": "0x94960952876e3ed6a7760b198354fcc5319a406a", - "symbol": "RBX", - "decimals": 18, - "name": "RBX", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/43114/0x94960952876e3ed6a7760b198354fcc5319a406a.png", - "aggregators": ["Rubic", "Rango", "Sonarwatch"], - "occurrences": 3 - }, - "0x5f018e73c185ab23647c82bd039e762813877f0e": { - "address": "0x5f018e73c185ab23647c82bd039e762813877f0e", - "symbol": "BUILD", - "decimals": 18, - "name": "BUILD", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/43114/0x5f018e73c185ab23647c82bd039e762813877f0e.png", - "aggregators": ["Rubic", "Rango", "Sonarwatch"], - "occurrences": 3 - }, - "0x2b1d36f5b61addaf7da7ebbd11b35fd8cfb0de31": { - "address": "0x2b1d36f5b61addaf7da7ebbd11b35fd8cfb0de31", - "symbol": "ITP", - "decimals": 18, - "name": "Interport Token", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/43114/0x2b1d36f5b61addaf7da7ebbd11b35fd8cfb0de31.png", - "aggregators": ["Rubic", "Rango", "Sonarwatch"], - "occurrences": 3 - }, - "0x65fda84473084ba2cca8452883e6ea3561092234": { - "address": "0x65fda84473084ba2cca8452883e6ea3561092234", - "symbol": "RKFI", - "decimals": 18, - "name": "Arkefi", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/43114/0x65fda84473084ba2cca8452883e6ea3561092234.png", - "aggregators": ["Rubic", "Rango", "Sonarwatch"], - "occurrences": 3 - }, - "0x1a3264f2e7b1cfc6220ec9348d33ccf02af7aaa4": { - "address": "0x1a3264f2e7b1cfc6220ec9348d33ccf02af7aaa4", - "symbol": "DYP", - "decimals": 18, - "name": "Dypius", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/43114/0x1a3264f2e7b1cfc6220ec9348d33ccf02af7aaa4.png", - "aggregators": ["Rubic", "Rango", "Sonarwatch"], - "occurrences": 3 - }, - "0xcc0966d8418d412c599a6421b760a847eb169a8c": { - "address": "0xcc0966d8418d412c599a6421b760a847eb169a8c", - "symbol": "SOLVBTC.BBN", - "decimals": 18, - "name": "Solv Protocol SolvBTC.BBN", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/43114/0xcc0966d8418d412c599a6421b760a847eb169a8c.png", - "aggregators": [ - "TraderJoe", - "LiFi", - "Socket", - "Rubic", - "Squid", - "Rango", - "Sonarwatch" - ], - "occurrences": 7 - }, - "0xdec933e2392ad908263e70a386fbf34e703ffe8f": { - "address": "0xdec933e2392ad908263e70a386fbf34e703ffe8f", - "symbol": "WBCOIN", - "decimals": 18, - "name": "Wrapped Backed Coinbase Global", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/43114/0xdec933e2392ad908263e70a386fbf34e703ffe8f.png", - "aggregators": [ - "CoinGecko", - "LiFi", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 6 - }, - "0x0555e30da8f98308edb960aa94c0db47230d2b9c": { - "address": "0x0555e30da8f98308edb960aa94c0db47230d2b9c", - "symbol": "WBTC", - "decimals": 8, - "name": "WBTC", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/43114/0x0555e30da8f98308edb960aa94c0db47230d2b9c.png", - "aggregators": ["TraderJoe", "Socket", "Rubic", "Squid", "Rango"], - "occurrences": 5 - }, - "0x59d9356e565ab3a36dd77763fc0d87feaf85508c": { - "address": "0x59d9356e565ab3a36dd77763fc0d87feaf85508c", - "symbol": "USDM", - "decimals": 18, - "name": "USDM", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/43114/0x59d9356e565ab3a36dd77763fc0d87feaf85508c.png", - "aggregators": ["CoinGecko", "1inch", "LiFi", "Rubic", "Rango"], - "occurrences": 5 - }, - "0x580d5e1399157fd0d58218b7a514b60974f2ab01": { - "address": "0x580d5e1399157fd0d58218b7a514b60974f2ab01", - "symbol": "YUTY", - "decimals": 18, - "name": "YUTY", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/43114/0x580d5e1399157fd0d58218b7a514b60974f2ab01.png", - "aggregators": ["TraderJoe", "LiFi", "Rubic", "Squid", "Rango"], - "occurrences": 5 - }, - "0x59933c571d200dc6a7fd1cda22495db442082e34": { - "address": "0x59933c571d200dc6a7fd1cda22495db442082e34", - "symbol": "WAAVAUSDT", - "decimals": 6, - "name": "Wrapped Aave Avalanche USDT", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/43114/0x59933c571d200dc6a7fd1cda22495db442082e34.png", - "aggregators": ["CoinGecko", "LiFi", "Rubic", "Rango"], - "occurrences": 4 - }, - "0x634608ed64c61ca9e741f8095193c0bfa0fa19cc": { - "address": "0x634608ed64c61ca9e741f8095193c0bfa0fa19cc", - "symbol": "SOL", - "decimals": 18, - "name": "SOL", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/43114/0x634608ed64c61ca9e741f8095193c0bfa0fa19cc.png", - "aggregators": ["TraderJoe", "Rubic", "Squid", "Rango"], - "occurrences": 4 - }, - "0xe1bfc96d95badcb10ff013cb0c9c6c737ca07009": { - "address": "0xe1bfc96d95badcb10ff013cb0c9c6c737ca07009", - "symbol": "WAAVAUSDC", - "decimals": 6, - "name": "Wrapped Aave Avalanche USDC", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/43114/0xe1bfc96d95badcb10ff013cb0c9c6c737ca07009.png", - "aggregators": ["CoinGecko", "LiFi", "Rubic", "Rango"], - "occurrences": 4 - }, - "0xc139aa91399600f6b72975ac3317b6d49cb30a69": { - "address": "0xc139aa91399600f6b72975ac3317b6d49cb30a69", - "symbol": "AMI", - "decimals": 18, - "name": "AVAX Meme Index", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/43114/0xc139aa91399600f6b72975ac3317b6d49cb30a69.png", - "aggregators": ["TraderJoe", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0x7d0394f8898fba73836bf12bd606228887705895": { - "address": "0x7d0394f8898fba73836bf12bd606228887705895", - "symbol": "WAAVASAVAX", - "decimals": 18, - "name": "Wrapped Aave Avalanche SAVAX", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/43114/0x7d0394f8898fba73836bf12bd606228887705895.png", - "aggregators": ["CoinGecko", "LiFi", "Rubic", "Rango"], - "occurrences": 4 - }, - "0xccf580e697b8bba73748ba881c1872dd4fb01cda": { - "address": "0xccf580e697b8bba73748ba881c1872dd4fb01cda", - "symbol": "LUEYGI", - "decimals": 8, - "name": "Lueygi", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/43114/0xccf580e697b8bba73748ba881c1872dd4fb01cda.png", - "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0xd7da0de6ef4f51d6206bf2a35fcd2030f54c3f7b": { - "address": "0xd7da0de6ef4f51d6206bf2a35fcd2030f54c3f7b", - "symbol": "WAAVAWAVAX", - "decimals": 18, - "name": "Wrapped Aave Avalanche WAVAX", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/43114/0xd7da0de6ef4f51d6206bf2a35fcd2030f54c3f7b.png", - "aggregators": ["CoinGecko", "LiFi", "Rubic", "Rango"], - "occurrences": 4 - }, - "0x87bbfc9dcb66caa8ce7582a3f17b60a25cd8a248": { - "address": "0x87bbfc9dcb66caa8ce7582a3f17b60a25cd8a248", - "symbol": "$TD", - "decimals": 9, - "name": "The Big Red", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/43114/0x87bbfc9dcb66caa8ce7582a3f17b60a25cd8a248.png", - "aggregators": ["TraderJoe", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0x45cf39eeb437fa95bb9b52c0105254a6bd25d01e": { - "address": "0x45cf39eeb437fa95bb9b52c0105254a6bd25d01e", - "symbol": "WAAVAAUSD", - "decimals": 6, - "name": "Wrapped Aave Avalanche AUSD", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/43114/0x45cf39eeb437fa95bb9b52c0105254a6bd25d01e.png", - "aggregators": ["CoinGecko", "LiFi", "Rubic", "Rango"], - "occurrences": 4 - }, - "0x2d324fd1ca86d90f61b0965d2db2f86d22ea4b74": { - "address": "0x2d324fd1ca86d90f61b0965d2db2f86d22ea4b74", - "symbol": "WAAVABTC.B", - "decimals": 8, - "name": "Wrapped Aave Avalanche BTC.b", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/43114/0x2d324fd1ca86d90f61b0965d2db2f86d22ea4b74.png", - "aggregators": ["CoinGecko", "LiFi", "Rubic", "Rango"], - "occurrences": 4 - }, - "0x25be3edd820a8fce6b8e211f40c5b82ba176994c": { - "address": "0x25be3edd820a8fce6b8e211f40c5b82ba176994c", - "symbol": "IBTC", - "decimals": 8, - "name": "iBTC Network", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/43114/0x25be3edd820a8fce6b8e211f40c5b82ba176994c.png", - "aggregators": ["TraderJoe", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0x53fc82f14f009009b440a706e31c9021e1196a2f": { - "address": "0x53fc82f14f009009b440a706e31c9021e1196a2f", - "symbol": "BUIDL", - "decimals": 6, - "name": "BlackRock USD Institutional Digital Liquidity Fund", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/43114/0x53fc82f14f009009b440a706e31c9021e1196a2f.png", - "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0x7e8101a1c322d394b3961498c7d40d2dfa94c392": { - "address": "0x7e8101a1c322d394b3961498c7d40d2dfa94c392", - "symbol": "WBNVDA", - "decimals": 18, - "name": "Wrapped bNVDA", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/43114/0x7e8101a1c322d394b3961498c7d40d2dfa94c392.png", - "aggregators": ["CoinGecko", "LiFi", "Rubic", "Sonarwatch"], - "occurrences": 4 - }, - "0x1a4f71b0ff3c22540887bcf83b50054a213c673d": { - "address": "0x1a4f71b0ff3c22540887bcf83b50054a213c673d", - "symbol": "WBMSTR", - "decimals": 18, - "name": "Wrapped bMSTR", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/43114/0x1a4f71b0ff3c22540887bcf83b50054a213c673d.png", - "aggregators": ["CoinGecko", "LiFi", "Rubic", "Sonarwatch"], - "occurrences": 4 - }, - "0x80eede496655fb9047dd39d9f418d5483ed600df": { - "address": "0x80eede496655fb9047dd39d9f418d5483ed600df", - "symbol": "FRXUSD", - "decimals": 18, - "name": "FRXUSD", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/43114/0x80eede496655fb9047dd39d9f418d5483ed600df.png", - "aggregators": ["CoinGecko", "LiFi", "Rubic", "Rango"], - "occurrences": 4 - }, - "0x1f82284c1658ad71c576f7230e6c2dee7901c1fa": { - "address": "0x1f82284c1658ad71c576f7230e6c2dee7901c1fa", - "symbol": "WBTSLA", - "decimals": 18, - "name": "Wrapped bTSLA", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/43114/0x1f82284c1658ad71c576f7230e6c2dee7901c1fa.png", - "aggregators": ["CoinGecko", "LiFi", "Rubic", "Sonarwatch"], - "occurrences": 4 - }, - "0xf0ff231e3f1a50f83136717f287adab862f89431": { - "address": "0xf0ff231e3f1a50f83136717f287adab862f89431", - "symbol": "USDTSO", - "decimals": 6, - "name": "Tether USD (Portal from Solana)", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/43114/0xf0ff231e3f1a50f83136717f287adab862f89431.png", - "aggregators": ["CoinGecko", "TrustWallet", "Rubic", "Rango"], - "occurrences": 4 - }, - "0xc0c5aa69dbe4d6dddfbc89c0957686ec60f24389": { - "address": "0xc0c5aa69dbe4d6dddfbc89c0957686ec60f24389", - "symbol": "XEN", - "decimals": 18, - "name": "XEN Crypto", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/43114/0xc0c5aa69dbe4d6dddfbc89c0957686ec60f24389.png", - "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0x59234b44214d88c57b7c54a6d2633334d95c5161": { - "address": "0x59234b44214d88c57b7c54a6d2633334d95c5161", - "symbol": "NUMI", - "decimals": 18, - "name": "NUMINE Token", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/43114/0x59234b44214d88c57b7c54a6d2633334d95c5161.png", - "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0x88a0f8318bf0ce19e999f1802bf5b12dc8d7cdfe": { - "address": "0x88a0f8318bf0ce19e999f1802bf5b12dc8d7cdfe", - "symbol": "NSFW", - "decimals": 18, - "name": "Pleasure Coin", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/43114/0x88a0f8318bf0ce19e999f1802bf5b12dc8d7cdfe.png", - "aggregators": ["LiFi", "Socket", "Rubic", "SushiSwap"], - "occurrences": 4 - }, - "0x39cf1bd5f15fb22ec3d9ff86b0727afc203427cc": { - "address": "0x39cf1bd5f15fb22ec3d9ff86b0727afc203427cc", - "symbol": "OLDSUSHI", - "decimals": 18, - "name": "Old SushiToken", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/43114/0x39cf1bd5f15fb22ec3d9ff86b0727afc203427cc.png", - "aggregators": ["LiFi", "Rubic", "Rango", "SushiSwap"], - "occurrences": 4 - }, - "0x22fa75d747320ae5d14cc625f696487c83243cd3": { - "address": "0x22fa75d747320ae5d14cc625f696487c83243cd3", - "symbol": "AXLKNC", - "decimals": 18, - "name": "Axelar Wrapped KNC", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/43114/0x22fa75d747320ae5d14cc625f696487c83243cd3.png", - "aggregators": ["LiFi", "Rubic", "Squid", "Rango"], - "occurrences": 4 - }, - "0xa9ef87eb3fdc2f08ef5ee401326f7331d4d312cf": { - "address": "0xa9ef87eb3fdc2f08ef5ee401326f7331d4d312cf", - "symbol": "IXAD", - "decimals": 17, - "name": "Index Avalanche DeFi", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/43114/0xa9ef87eb3fdc2f08ef5ee401326f7331d4d312cf.png", - "aggregators": ["CoinGecko", "Rubic", "Sonarwatch"], - "occurrences": 3 - }, - "0xcc18b41a0f63c67f17f23388c848aec67b583422": { - "address": "0xcc18b41a0f63c67f17f23388c848aec67b583422", - "symbol": "XPUSD", - "decimals": 6, - "name": "Gaming XP USD", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/43114/0xcc18b41a0f63c67f17f23388c848aec67b583422.png", - "aggregators": ["CoinGecko", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x7f4546ef315efc65336187fe3765ea779ac90183": { - "address": "0x7f4546ef315efc65336187fe3765ea779ac90183", - "symbol": "VBILL", - "decimals": 6, - "name": "VBILL", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/43114/0x7f4546ef315efc65336187fe3765ea779ac90183.png", - "aggregators": ["CoinGecko", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x58f93d6b1ef2f44ec379cb975657c132cbed3b6b": { - "address": "0x58f93d6b1ef2f44ec379cb975657c132cbed3b6b", - "symbol": "JAAA", - "decimals": 6, - "name": "JAAA", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/43114/0x58f93d6b1ef2f44ec379cb975657c132cbed3b6b.png", - "aggregators": ["CoinGecko", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x5c09a9ce08c4b332ef1cc5f7cadb1158c32767ce": { - "address": "0x5c09a9ce08c4b332ef1cc5f7cadb1158c32767ce", - "symbol": "FBOMB", - "decimals": 18, - "name": "FBOMB", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/43114/0x5c09a9ce08c4b332ef1cc5f7cadb1158c32767ce.png", - "aggregators": ["PangolinDex", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x1263fea931b86f3e8ce8afbf29f66631b7be9347": { - "address": "0x1263fea931b86f3e8ce8afbf29f66631b7be9347", - "symbol": "BNPL", - "decimals": 18, - "name": "BNPL Pay [OLD]", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/43114/0x1263fea931b86f3e8ce8afbf29f66631b7be9347.png", - "aggregators": ["CoinGecko", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x193f4a4a6ea24102f49b931deeeb931f6e32405d": { - "address": "0x193f4a4a6ea24102f49b931deeeb931f6e32405d", - "symbol": "TLOS", - "decimals": 18, - "name": "Telos", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/43114/0x193f4a4a6ea24102f49b931deeeb931f6e32405d.png", - "aggregators": ["CoinGecko", "LiFi", "Sonarwatch"], - "occurrences": 3 - }, - "0x841aef70237a88027ccb2d15c1bbaf88a669674a": { - "address": "0x841aef70237a88027ccb2d15c1bbaf88a669674a", - "symbol": "XSPACE", - "decimals": 18, - "name": "xSpace Token", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/43114/0x841aef70237a88027ccb2d15c1bbaf88a669674a.png", - "aggregators": ["CoinGecko", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x4156f18bf7c1ef04248632c66aa119de152d8f2e": { - "address": "0x4156f18bf7c1ef04248632c66aa119de152d8f2e", - "symbol": "ZEUS", - "decimals": 18, - "name": "Zeus Node Finance", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/43114/0x4156f18bf7c1ef04248632c66aa119de152d8f2e.png", - "aggregators": ["PangolinDex", "LiFi", "Rango"], - "occurrences": 3 - }, - "0x250bdca7d1845cd543bb55e7d82dca24d48e9f0f": { - "address": "0x250bdca7d1845cd543bb55e7d82dca24d48e9f0f", - "symbol": "DCAR", - "decimals": 18, - "name": "Dragon Crypto Argenti", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/43114/0x250bdca7d1845cd543bb55e7d82dca24d48e9f0f.png", - "aggregators": ["TraderJoe", "Rubic", "Rango"], - "occurrences": 3 - }, - "0xa56f9a54880afbc30cf29bb66d2d9adcdcaeadd6": { - "address": "0xa56f9a54880afbc30cf29bb66d2d9adcdcaeadd6", - "symbol": "QI", - "decimals": 18, - "name": "Qi Dao Protocol", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/43114/0xa56f9a54880afbc30cf29bb66d2d9adcdcaeadd6.png", - "aggregators": ["TraderJoe", "Socket", "Rubic"], - "occurrences": 3 - }, - "0x3b55e45fd6bd7d4724f5c47e0d1bcaedd059263e": { - "address": "0x3b55e45fd6bd7d4724f5c47e0d1bcaedd059263e", - "symbol": "MAI", - "decimals": 18, - "name": "Mai Stablecoin", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/43114/0x3b55e45fd6bd7d4724f5c47e0d1bcaedd059263e.png", - "aggregators": ["LiFi", "Rubic", "SushiSwap"], - "occurrences": 3 - }, - "0x5684a087c739a2e845f4aaaabf4fbd261edc2be8": { - "address": "0x5684a087c739a2e845f4aaaabf4fbd261edc2be8", - "symbol": "LF", - "decimals": 9, - "name": "LF", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/43114/0x5684a087c739a2e845f4aaaabf4fbd261edc2be8.png", - "aggregators": ["LiFi", "Rubic", "Rango"], - "occurrences": 3 - }, - "0xc4b06f17eccb2215a5dbf042c672101fc20daf55": { - "address": "0xc4b06f17eccb2215a5dbf042c672101fc20daf55", - "symbol": "FLUX", - "decimals": 8, - "name": "Flux", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/43114/0xc4b06f17eccb2215a5dbf042c672101fc20daf55.png", - "aggregators": ["LiFi", "Socket", "Rubic"], - "occurrences": 3 - }, - "0xe684f692bdf5b3b0db7e8e31a276de8a2e9f0025": { - "address": "0xe684f692bdf5b3b0db7e8e31a276de8a2e9f0025", - "symbol": "RBTC.B", - "decimals": 18, - "name": "RBTC.B", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/43114/0xe684f692bdf5b3b0db7e8e31a276de8a2e9f0025.png", - "aggregators": ["LiFi", "Rubic", "Rango"], - "occurrences": 3 - }, - "0xa5e2cfe48fe8c4abd682ca2b10fcaafe34b8774c": { - "address": "0xa5e2cfe48fe8c4abd682ca2b10fcaafe34b8774c", - "symbol": "PSHARE", - "decimals": 18, - "name": "PSHARE", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/43114/0xa5e2cfe48fe8c4abd682ca2b10fcaafe34b8774c.png", - "aggregators": ["LiFi", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x8cd309e14575203535ef120b5b0ab4dded0c2073": { - "address": "0x8cd309e14575203535ef120b5b0ab4dded0c2073", - "symbol": "WSOHM", - "decimals": 18, - "name": "WSOHM", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/43114/0x8cd309e14575203535ef120b5b0ab4dded0c2073.png", - "aggregators": ["LiFi", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x77fbb8760c9be73205296ed1ef8aa5f719a0407d": { - "address": "0x77fbb8760c9be73205296ed1ef8aa5f719a0407d", - "symbol": "PENGUIN", - "decimals": 18, - "name": "Penguin404", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/43114/0x77fbb8760c9be73205296ed1ef8aa5f719a0407d.png", - "aggregators": ["LiFi", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x42a62eb3fd2a05ed499117f128de8a3192b49ebb": { - "address": "0x42a62eb3fd2a05ed499117f128de8a3192b49ebb", - "symbol": "AXLETH", - "decimals": 18, - "name": "Axelar Wrapped ETH", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/43114/0x42a62eb3fd2a05ed499117f128de8a3192b49ebb.png", - "aggregators": ["LiFi", "Squid", "SushiSwap"], - "occurrences": 3 - }, - "0xa56b1b9f4e5a1a1e0868f5fd4352ce7cdf0c2a4f": { - "address": "0xa56b1b9f4e5a1a1e0868f5fd4352ce7cdf0c2a4f", - "symbol": "MATIC", - "decimals": 19, - "name": "Matic", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/43114/0xa56b1b9f4e5a1a1e0868f5fd4352ce7cdf0c2a4f.png", - "aggregators": ["LiFi", "Rubic", "SushiSwap"], - "occurrences": 3 - }, - "0x6145e8a910ae937913426bf32de2b26039728acf": { - "address": "0x6145e8a910ae937913426bf32de2b26039728acf", - "symbol": "USDCBS", - "decimals": 18, - "name": "USD Coin (Portal from BSC)", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/43114/0x6145e8a910ae937913426bf32de2b26039728acf.png", - "aggregators": ["TrustWallet", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x543672e9cbec728cbba9c3ccd99ed80ac3607fa8": { - "address": "0x543672e9cbec728cbba9c3ccd99ed80ac3607fa8", - "symbol": "USDCPO", - "decimals": 6, - "name": "USD Coin (PoS) (Portal from Polygon)", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/43114/0x543672e9cbec728cbba9c3ccd99ed80ac3607fa8.png", - "aggregators": ["TrustWallet", "Rubic", "Rango"], - "occurrences": 3 - }, - "0xa41a6c7e25ddd361343e8cb8cfa579bbe5eedb7a": { - "address": "0xa41a6c7e25ddd361343e8cb8cfa579bbe5eedb7a", - "symbol": "BUSDBS", - "decimals": 18, - "name": "Binance USD (Portal from BSC)", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/43114/0xa41a6c7e25ddd361343e8cb8cfa579bbe5eedb7a.png", - "aggregators": ["TrustWallet", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x8ce2dee54bb9921a2ae0a63dbb2df8ed88b91dd9": { - "address": "0x8ce2dee54bb9921a2ae0a63dbb2df8ed88b91dd9", - "symbol": "AAVE", - "decimals": 18, - "name": "AAVE", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/43114/0x8ce2dee54bb9921a2ae0a63dbb2df8ed88b91dd9.png", - "aggregators": ["Socket", "Rubic", "Rango"], - "occurrences": 3 - }, - "0xefd6aa06eb95e0ab23de9ac0977d870888b89a71": { - "address": "0xefd6aa06eb95e0ab23de9ac0977d870888b89a71", - "symbol": "MICRO", - "decimals": 18, - "name": "Micro Coq", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/43114/0xefd6aa06eb95e0ab23de9ac0977d870888b89a71.png", - "aggregators": ["Socket", "Rubic", "Rango"], - "occurrences": 3 - }, - "0xfa7664f2385743b73369bdc9427cdb2a942af809": { - "address": "0xfa7664f2385743b73369bdc9427cdb2a942af809", - "symbol": "ARC", - "decimals": 18, - "name": "Arcade", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/43114/0xfa7664f2385743b73369bdc9427cdb2a942af809.png", - "aggregators": ["Rubic", "Rango", "Sonarwatch"], - "occurrences": 3 - }, - "0x22897cf0da31e1f118649d9f6ad1809cabd84948": { - "address": "0x22897cf0da31e1f118649d9f6ad1809cabd84948", - "symbol": "BCOQ", - "decimals": 9, - "name": "Baby Coq Inu", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/43114/0x22897cf0da31e1f118649d9f6ad1809cabd84948.png", - "aggregators": ["Rubic", "Rango", "Sonarwatch"], - "occurrences": 3 - }, - "0xc09a033927f9fd558c92cf7aeabe34b71ce4b31e": { - "address": "0xc09a033927f9fd558c92cf7aeabe34b71ce4b31e", - "symbol": "PLYR", - "decimals": 18, - "name": "PLYR L1", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/43114/0xc09a033927f9fd558c92cf7aeabe34b71ce4b31e.png", - "aggregators": ["Rubic", "Rango", "Sonarwatch"], - "occurrences": 3 - } - }, - "timestamp": 1779126362354 - }, - "0xaa36a7": { - "data": {}, - "timestamp": 1771890334759 - }, - "0xe708": { - "data": { - "0xe5d7c2a44ffddf6b295a15c148167daaaf5cf34f": { - "address": "0xe5d7c2a44ffddf6b295a15c148167daaaf5cf34f", - "symbol": "WETH", - "decimals": 18, - "name": "Wrapped Ether", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/59144/0xe5d7c2a44ffddf6b295a15c148167daaaf5cf34f.png", - "aggregators": [ - "CoinGecko", - "1inch", - "LiFi", - "Socket", - "Rubic", - "Squid", - "Rango", - "Sonarwatch", - "SushiSwap" - ], - "occurrences": 9 - }, - "0x176211869ca2b568f2a7d4ee941e073a821ee1ff": { - "address": "0x176211869ca2b568f2a7d4ee941e073a821ee1ff", - "symbol": "USDC", - "decimals": 6, - "name": "USDC", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/59144/0x176211869ca2b568f2a7d4ee941e073a821ee1ff.png", - "aggregators": [ - "Metamask", - "1inch", - "LiFi", - "Socket", - "Rubic", - "Squid", - "Rango", - "Sonarwatch", - "SushiSwap" - ], - "occurrences": 9 - }, - "0x93f4d0ab6a8b4271f4a28db399b5e30612d21116": { - "address": "0x93f4d0ab6a8b4271f4a28db399b5e30612d21116", - "symbol": "STONE", - "decimals": 18, - "name": "StakeStone ETH", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/59144/0x93f4d0ab6a8b4271f4a28db399b5e30612d21116.png", - "aggregators": [ - "CoinGecko", - "1inch", - "LiFi", - "Socket", - "Rubic", - "Squid", - "Rango", - "Sonarwatch" - ], - "occurrences": 8 - }, - "0xa219439258ca9da29e9cc4ce5596924745e12b93": { - "address": "0xa219439258ca9da29e9cc4ce5596924745e12b93", - "symbol": "USDT", - "decimals": 6, - "name": "Bridged Tether (Linea)", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/59144/0xa219439258ca9da29e9cc4ce5596924745e12b93.png", - "aggregators": [ - "CoinGecko", - "1inch", - "LiFi", - "Socket", - "Rubic", - "Squid", - "Rango", - "Sonarwatch" - ], - "occurrences": 8 - }, - "0xb5bedd42000b71fdde22d3ee8a79bd49a568fc8f": { - "address": "0xb5bedd42000b71fdde22d3ee8a79bd49a568fc8f", - "symbol": "WSTETH", - "decimals": 18, - "name": "Wrapped stETH", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/59144/0xb5bedd42000b71fdde22d3ee8a79bd49a568fc8f.png", - "aggregators": [ - "CoinGecko", - "1inch", - "LiFi", - "Socket", - "Rubic", - "Squid", - "Rango", - "Sonarwatch" - ], - "occurrences": 8 - }, - "0x1789e0043623282d5dcc7f213d703c6d8bafbb04": { - "address": "0x1789e0043623282d5dcc7f213d703c6d8bafbb04", - "symbol": "LINEA", - "decimals": 18, - "name": "Linea", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/59144/0x1789e0043623282d5dcc7f213d703c6d8bafbb04.png", - "aggregators": [ - "Metamask", - "1inch", - "LiFi", - "Socket", - "Rubic", - "Squid", - "Rango" - ], - "occurrences": 7 - }, - "0x3ff47c5bf409c86533fe1f4907524d304062428d": { - "address": "0x3ff47c5bf409c86533fe1f4907524d304062428d", - "symbol": "EURE", - "decimals": 18, - "name": "Monerium EUR emoney", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/59144/0x3ff47c5bf409c86533fe1f4907524d304062428d.png", - "aggregators": [ - "CoinGecko", - "1inch", - "LiFi", - "Rubic", - "Squid", - "Rango", - "Sonarwatch" - ], - "occurrences": 7 - }, - "0x4af15ec2a0bd43db75dd04e62faa3b8ef36b00d5": { - "address": "0x4af15ec2a0bd43db75dd04e62faa3b8ef36b00d5", - "symbol": "DAI", - "decimals": 18, - "name": "Bridged Dai Stablecoin (Linea)", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/59144/0x4af15ec2a0bd43db75dd04e62faa3b8ef36b00d5.png", - "aggregators": [ - "CoinGecko", - "1inch", - "LiFi", - "Socket", - "Rubic", - "Squid", - "Rango", - "Sonarwatch" - ], - "occurrences": 8 - }, - "0x3aab2285ddcddad8edf438c1bab47e1a9d05a9b4": { - "address": "0x3aab2285ddcddad8edf438c1bab47e1a9d05a9b4", - "symbol": "WBTC", - "decimals": 8, - "name": "Linea Bridged WBTC (Linea)", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/59144/0x3aab2285ddcddad8edf438c1bab47e1a9d05a9b4.png", - "aggregators": [ - "CoinGecko", - "1inch", - "LiFi", - "Socket", - "Rubic", - "Squid", - "Rango", - "Sonarwatch" - ], - "occurrences": 8 - }, - "0x2416092f143378750bb29b79ed961ab195cceea5": { - "address": "0x2416092f143378750bb29b79ed961ab195cceea5", - "symbol": "EZETH", - "decimals": 18, - "name": "Everclear Bridged ezETH (Linea)", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/59144/0x2416092f143378750bb29b79ed961ab195cceea5.png", - "aggregators": [ - "CoinGecko", - "1inch", - "LiFi", - "Socket", - "Rubic", - "Squid", - "Rango", - "Sonarwatch" - ], - "occurrences": 8 - }, - "0x1bf74c010e6320bab11e2e5a532b5ac15e0b8aa6": { - "address": "0x1bf74c010e6320bab11e2e5a532b5ac15e0b8aa6", - "symbol": "WEETH", - "decimals": 18, - "name": "ether.fi Bridged weETH (Linea)", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/59144/0x1bf74c010e6320bab11e2e5a532b5ac15e0b8aa6.png", - "aggregators": [ - "CoinGecko", - "1inch", - "LiFi", - "Socket", - "Rubic", - "Squid", - "Rango", - "Sonarwatch" - ], - "occurrences": 8 - }, - "0x5fbdf89403270a1846f5ae7d113a989f850d1566": { - "address": "0x5fbdf89403270a1846f5ae7d113a989f850d1566", - "symbol": "FOXY", - "decimals": 18, - "name": "Foxy", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/59144/0x5fbdf89403270a1846f5ae7d113a989f850d1566.png", - "aggregators": [ - "CoinGecko", - "1inch", - "LiFi", - "Rubic", - "Squid", - "Rango", - "Sonarwatch" - ], - "occurrences": 7 - }, - "0x1a51b19ce03dbe0cb44c1528e34a7edd7771e9af": { - "address": "0x1a51b19ce03dbe0cb44c1528e34a7edd7771e9af", - "symbol": "LYNX", - "decimals": 18, - "name": "Lynex", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/59144/0x1a51b19ce03dbe0cb44c1528e34a7edd7771e9af.png", - "aggregators": [ - "CoinGecko", - "1inch", - "LiFi", - "Rubic", - "Squid", - "Rango", - "Sonarwatch" - ], - "occurrences": 7 - }, - "0x78354f8dccb269a615a7e0a24f9b0718fdc3c7a7": { - "address": "0x78354f8dccb269a615a7e0a24f9b0718fdc3c7a7", - "symbol": "ZERO", - "decimals": 18, - "name": "ZeroLend", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/59144/0x78354f8dccb269a615a7e0a24f9b0718fdc3c7a7.png", - "aggregators": [ - "CoinGecko", - "1inch", - "Socket", - "Rubic", - "Squid", - "Rango", - "Sonarwatch" - ], - "occurrences": 7 - }, - "0xd2671165570f41bbb3b0097893300b6eb6101e6c": { - "address": "0xd2671165570f41bbb3b0097893300b6eb6101e6c", - "symbol": "WRSETH", - "decimals": 18, - "name": "Wrapped rsETH", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/59144/0xd2671165570f41bbb3b0097893300b6eb6101e6c.png", - "aggregators": [ - "CoinGecko", - "1inch", - "LiFi", - "Rubic", - "Squid", - "Rango", - "Sonarwatch" - ], - "occurrences": 7 - }, - "0xaca92e438df0b2401ff60da7e4337b687a2435da": { - "address": "0xaca92e438df0b2401ff60da7e4337b687a2435da", - "symbol": "MUSD", - "decimals": 6, - "name": "MetaMask USD", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/59144/0xaca92e438df0b2401ff60da7e4337b687a2435da.png", - "aggregators": [ - "Metamask", - "LiFi", - "Socket", - "Rubic", - "Squid", - "Rango" - ], - "occurrences": 6 - }, - "0xb79dd08ea68a908a97220c76d19a6aa9cbde4376": { - "address": "0xb79dd08ea68a908a97220c76d19a6aa9cbde4376", - "symbol": "USD+", - "decimals": 6, - "name": "USD+", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/59144/0xb79dd08ea68a908a97220c76d19a6aa9cbde4376.png", - "aggregators": ["LineaTeam", "LiFi", "Rubic", "Squid", "Rango"], - "occurrences": 5 - }, - "0x1e1f509963a6d33e169d9497b11c7dbfe73b7f13": { - "address": "0x1e1f509963a6d33e169d9497b11c7dbfe73b7f13", - "symbol": "USDT+", - "decimals": 6, - "name": "Overnight.fi USDT+", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/59144/0x1e1f509963a6d33e169d9497b11c7dbfe73b7f13.png", - "aggregators": [ - "CoinGecko", - "Rubic", - "Squid", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0xaaaac83751090c6ea42379626435f805ddf54dc8": { - "address": "0xaaaac83751090c6ea42379626435f805ddf54dc8", - "symbol": "NILE", - "decimals": 18, - "name": "Nile", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/59144/0xaaaac83751090c6ea42379626435f805ddf54dc8.png", - "aggregators": [ - "CoinGecko", - "1inch", - "LiFi", - "Rubic", - "Squid", - "Rango", - "Sonarwatch" - ], - "occurrences": 7 - }, - "0x43e8809ea748eff3204ee01f08872f063e44065f": { - "address": "0x43e8809ea748eff3204ee01f08872f063e44065f", - "symbol": "MENDI", - "decimals": 18, - "name": "Mendi Finance", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/59144/0x43e8809ea748eff3204ee01f08872f063e44065f.png", - "aggregators": [ - "CoinGecko", - "1inch", - "LiFi", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 6 - }, - "0x8c56017b172226fe024dea197748fc1eaccc82b1": { - "address": "0x8c56017b172226fe024dea197748fc1eaccc82b1", - "symbol": "XFIT", - "decimals": 18, - "name": "XFai", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/59144/0x8c56017b172226fe024dea197748fc1eaccc82b1.png", - "aggregators": [ - "CoinGecko", - "LiFi", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 6 - }, - "0xefd81eec32b9a8222d1842ec3d99c7532c31e348": { - "address": "0xefd81eec32b9a8222d1842ec3d99c7532c31e348", - "symbol": "REX", - "decimals": 18, - "name": "REX", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/59144/0xefd81eec32b9a8222d1842ec3d99c7532c31e348.png", - "aggregators": ["CoinGecko", "LiFi", "Rubic", "Squid", "Rango"], - "occurrences": 5 - }, - "0xe4eeb461ad1e4ef8b8ef71a33694ccd84af051c4": { - "address": "0xe4eeb461ad1e4ef8b8ef71a33694ccd84af051c4", - "symbol": "REX33", - "decimals": 18, - "name": "REX33", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/59144/0xe4eeb461ad1e4ef8b8ef71a33694ccd84af051c4.png", - "aggregators": ["CoinGecko", "LiFi", "Rubic", "Squid", "Rango"], - "occurrences": 5 - }, - "0x0d1e753a25ebda689453309112904807625befbe": { - "address": "0x0d1e753a25ebda689453309112904807625befbe", - "symbol": "CAKE", - "decimals": 18, - "name": "PancakeSwap", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/59144/0x0d1e753a25ebda689453309112904807625befbe.png", - "aggregators": [ - "CoinGecko", - "1inch", - "LiFi", - "Socket", - "Rubic", - "Squid", - "Rango", - "Sonarwatch" - ], - "occurrences": 8 - }, - "0xf3b001d64c656e30a62fbaaca003b1336b4ce12a": { - "address": "0xf3b001d64c656e30a62fbaaca003b1336b4ce12a", - "symbol": "MIMATIC", - "decimals": 18, - "name": "MAI (Linea)", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/59144/0xf3b001d64c656e30a62fbaaca003b1336b4ce12a.png", - "aggregators": [ - "LineaTeam", - "LiFi", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 6 - }, - "0x0018d96c579121a94307249d47f053e2d687b5e7": { - "address": "0x0018d96c579121a94307249d47f053e2d687b5e7", - "symbol": "MVX", - "decimals": 18, - "name": "Metavault Trade", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/59144/0x0018d96c579121a94307249d47f053e2d687b5e7.png", - "aggregators": [ - "CoinGecko", - "LiFi", - "Rubic", - "Squid", - "Rango", - "Sonarwatch" - ], - "occurrences": 6 - }, - "0x60d01ec2d5e98ac51c8b4cf84dfcce98d527c747": { - "address": "0x60d01ec2d5e98ac51c8b4cf84dfcce98d527c747", - "symbol": "IZI", - "decimals": 18, - "name": "iZUMi Finance", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/59144/0x60d01ec2d5e98ac51c8b4cf84dfcce98d527c747.png", - "aggregators": [ - "CoinGecko", - "LiFi", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 6 - }, - "0x3d4b2132ed4ea0aa93903713a4de9f98e625a5c7": { - "address": "0x3d4b2132ed4ea0aa93903713a4de9f98e625a5c7", - "symbol": "A3A", - "decimals": 18, - "name": "3A", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/59144/0x3d4b2132ed4ea0aa93903713a4de9f98e625a5c7.png", - "aggregators": [ - "CoinGecko", - "Rubic", - "Squid", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x894134a25a5fac1c2c26f1d8fbf05111a3cb9487": { - "address": "0x894134a25a5fac1c2c26f1d8fbf05111a3cb9487", - "symbol": "GRAI", - "decimals": 18, - "name": "Gravita Debt Token", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/59144/0x894134a25a5fac1c2c26f1d8fbf05111a3cb9487.png", - "aggregators": ["LineaTeam", "LiFi", "Socket", "Rubic", "Rango"], - "occurrences": 5 - }, - "0x6ef95b6f3b0f39508e3e04054be96d5ee39ede0d": { - "address": "0x6ef95b6f3b0f39508e3e04054be96d5ee39ede0d", - "symbol": "SIS", - "decimals": 18, - "name": "Symbiosis", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/59144/0x6ef95b6f3b0f39508e3e04054be96d5ee39ede0d.png", - "aggregators": [ - "CoinGecko", - "LiFi", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0xec859566fc5d7ed84ac823509f3f7db06c461b20": { - "address": "0xec859566fc5d7ed84ac823509f3f7db06c461b20", - "symbol": "SOULS", - "decimals": 18, - "name": "Unfettered Ecosystem", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/59144/0xec859566fc5d7ed84ac823509f3f7db06c461b20.png", - "aggregators": [ - "CoinGecko", - "Rubic", - "Squid", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x7d43aabc515c356145049227cee54b608342c0ad": { - "address": "0x7d43aabc515c356145049227cee54b608342c0ad", - "symbol": "BUSD", - "decimals": 18, - "name": "Binance USD (Linea)", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/59144/0x7d43aabc515c356145049227cee54b608342c0ad.png", - "aggregators": [ - "CoinGecko", - "LiFi", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0xe4d584ae9b753e549cae66200a6475d2f00705f7": { - "address": "0xe4d584ae9b753e549cae66200a6475d2f00705f7", - "symbol": "M-BTC", - "decimals": 18, - "name": "Merlin's Seal BTC", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/59144/0xe4d584ae9b753e549cae66200a6475d2f00705f7.png", - "aggregators": [ - "CoinGecko", - "LiFi", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x81be2acb2e9291db6400f9f6a4d0f35f24de2e77": { - "address": "0x81be2acb2e9291db6400f9f6a4d0f35f24de2e77", - "symbol": "LPUSS", - "decimals": 18, - "name": "Linpuss", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/59144/0x81be2acb2e9291db6400f9f6a4d0f35f24de2e77.png", - "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0x636b22bc471c955a8db60f28d4795066a8201fa3": { - "address": "0x636b22bc471c955a8db60f28d4795066a8201fa3", - "symbol": "UNI", - "decimals": 18, - "name": "Linea Bridged UNI (Linea)", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/59144/0x636b22bc471c955a8db60f28d4795066a8201fa3.png", - "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0x15eefe5b297136b8712291b632404b66a8ef4d25": { - "address": "0x15eefe5b297136b8712291b632404b66a8ef4d25", - "symbol": "UNIETH", - "decimals": 18, - "name": "Universal ETH", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/59144/0x15eefe5b297136b8712291b632404b66a8ef4d25.png", - "aggregators": ["LineaTeam", "LiFi", "Rubic", "Squid"], - "occurrences": 4 - }, - "0xb1afd04774c02ae84692619448b08ba79f19b1ff": { - "address": "0xb1afd04774c02ae84692619448b08ba79f19b1ff", - "symbol": "FRXETH", - "decimals": 18, - "name": "FRXETH", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/59144/0xb1afd04774c02ae84692619448b08ba79f19b1ff.png", - "aggregators": ["CoinGecko", "LiFi", "Rubic", "Rango"], - "occurrences": 4 - }, - "0x56aa6d651bfefa9207b35e508716466359bae8ef": { - "address": "0x56aa6d651bfefa9207b35e508716466359bae8ef", - "symbol": "TURTLE", - "decimals": 18, - "name": "TURTLE", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/59144/0x56aa6d651bfefa9207b35e508716466359bae8ef.png", - "aggregators": ["CoinGecko", "LiFi", "Rubic", "Rango"], - "occurrences": 4 - }, - "0xc7346783f5e645aa998b106ef9e7f499528673d8": { - "address": "0xc7346783f5e645aa998b106ef9e7f499528673d8", - "symbol": "FRXUSD", - "decimals": 18, - "name": "FRXUSD", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/59144/0xc7346783f5e645aa998b106ef9e7f499528673d8.png", - "aggregators": ["CoinGecko", "LiFi", "Rubic", "Rango"], - "occurrences": 4 - }, - "0xa500000000e482752f032ea387390b6025a2377b": { - "address": "0xa500000000e482752f032ea387390b6025a2377b", - "symbol": "ASUSD", - "decimals": 18, - "name": "Astera USD", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/59144/0xa500000000e482752f032ea387390b6025a2377b.png", - "aggregators": ["LiFi", "Socket", "Rubic", "Rango"], - "occurrences": 4 - }, - "0x0b1a02a7309dfbfad1cd4adc096582c87e8a3ac1": { - "address": "0x0b1a02a7309dfbfad1cd4adc096582c87e8a3ac1", - "symbol": "HZN", - "decimals": 18, - "name": "Horizon", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/59144/0x0b1a02a7309dfbfad1cd4adc096582c87e8a3ac1.png", - "aggregators": ["Rubic", "Squid", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0xeb466342c4d449bc9f53a865d5cb90586f405215": { - "address": "0xeb466342c4d449bc9f53a865d5cb90586f405215", - "symbol": "AXLUSDC", - "decimals": 6, - "name": "Axelar Wrapped USDC", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/59144/0xeb466342c4d449bc9f53a865d5cb90586f405215.png", - "aggregators": [ - "CoinGecko", - "LiFi", - "TrustWallet", - "Rubic", - "Squid", - "Rango", - "Sonarwatch", - "SushiSwap" - ], - "occurrences": 8 - }, - "0x3b2f62d42db19b30588648bf1c184865d4c3b1d6": { - "address": "0x3b2f62d42db19b30588648bf1c184865d4c3b1d6", - "symbol": "KNC", - "decimals": 18, - "name": "Kyber Network Crystal", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/59144/0x3b2f62d42db19b30588648bf1c184865d4c3b1d6.png", - "aggregators": [ - "CoinGecko", - "LiFi", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 6 - }, - "0x60892e742d91d16be2cb0ffe847e85445989e30b": { - "address": "0x60892e742d91d16be2cb0ffe847e85445989e30b", - "symbol": "WEFI", - "decimals": 18, - "name": "Wefi", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/59144/0x60892e742d91d16be2cb0ffe847e85445989e30b.png", - "aggregators": [ - "CoinGecko", - "LiFi", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 6 - }, - "0xba2f9e7ae9f5f03fce7d560f986743659e768bbf": { - "address": "0xba2f9e7ae9f5f03fce7d560f986743659e768bbf", - "symbol": "EUSD", - "decimals": 18, - "name": "ARYZE eUSD", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/59144/0xba2f9e7ae9f5f03fce7d560f986743659e768bbf.png", - "aggregators": [ - "CoinGecko", - "LiFi", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 6 - }, - "0xecc68d0451e20292406967fe7c04280e5238ac7d": { - "address": "0xecc68d0451e20292406967fe7c04280e5238ac7d", - "symbol": "AXLFRXETH", - "decimals": 18, - "name": "Axelar Bridged Frax Ether", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/59144/0xecc68d0451e20292406967fe7c04280e5238ac7d.png", - "aggregators": [ - "1inch", - "LiFi", - "Rubic", - "Squid", - "Rango", - "Sonarwatch" - ], - "occurrences": 6 - }, - "0xacb54d07ca167934f57f829bee2cc665e1a5ebef": { - "address": "0xacb54d07ca167934f57f829bee2cc665e1a5ebef", - "symbol": "CROAK", - "decimals": 18, - "name": "CROAK", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/59144/0xacb54d07ca167934f57f829bee2cc665e1a5ebef.png", - "aggregators": [ - "Metamask", - "Rubic", - "Squid", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0xeb1fd1dbb8adda4fa2b5a5c4bce34f6f20d125d2": { - "address": "0xeb1fd1dbb8adda4fa2b5a5c4bce34f6f20d125d2", - "symbol": "DTC", - "decimals": 18, - "name": "Donald Toad Coin", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/59144/0xeb1fd1dbb8adda4fa2b5a5c4bce34f6f20d125d2.png", - "aggregators": [ - "CoinGecko", - "LiFi", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0xe2a6e74118e708f7652fc4c74d2f9ee5fa210563": { - "address": "0xe2a6e74118e708f7652fc4c74d2f9ee5fa210563", - "symbol": "NWG", - "decimals": 18, - "name": "NotWifGary", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/59144/0xe2a6e74118e708f7652fc4c74d2f9ee5fa210563.png", - "aggregators": [ - "CoinGecko", - "Rubic", - "Squid", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x9201f3b9dfab7c13cd659ac5695d12d605b5f1e6": { - "address": "0x9201f3b9dfab7c13cd659ac5695d12d605b5f1e6", - "symbol": "ECP", - "decimals": 18, - "name": "EchoDEX Community Portion", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/59144/0x9201f3b9dfab7c13cd659ac5695d12d605b5f1e6.png", - "aggregators": [ - "CoinGecko", - "LiFi", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x808d7c71ad2ba3fa531b068a2417c63106bc0949": { - "address": "0x808d7c71ad2ba3fa531b068a2417c63106bc0949", - "symbol": "STG", - "decimals": 18, - "name": "Stargate Finance", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/59144/0x808d7c71ad2ba3fa531b068a2417c63106bc0949.png", - "aggregators": [ - "CoinGecko", - "LiFi", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0xa334884bf6b0a066d553d19e507315e839409e62": { - "address": "0xa334884bf6b0a066d553d19e507315e839409e62", - "symbol": "ERN", - "decimals": 18, - "name": "Ethos Reserve Note", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/59144/0xa334884bf6b0a066d553d19e507315e839409e62.png", - "aggregators": [ - "CoinGecko", - "Rubic", - "Squid", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x5b16228b94b68c7ce33af2acc5663ebde4dcfa2d": { - "address": "0x5b16228b94b68c7ce33af2acc5663ebde4dcfa2d", - "symbol": "LINK", - "decimals": 18, - "name": "Linea Bridged LINK (Linea)", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/59144/0x5b16228b94b68c7ce33af2acc5663ebde4dcfa2d.png", - "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0xa88b54e6b76fb97cdb8ecae868f1458e18a953f4": { - "address": "0xa88b54e6b76fb97cdb8ecae868f1458e18a953f4", - "symbol": "DUSD", - "decimals": 18, - "name": "Davos.xyz USD", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/59144/0xa88b54e6b76fb97cdb8ecae868f1458e18a953f4.png", - "aggregators": ["LineaTeam", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0xe516a5cff996cc399efbb48355fd5ab83438e7a9": { - "address": "0xe516a5cff996cc399efbb48355fd5ab83438e7a9", - "symbol": "GNO", - "decimals": 18, - "name": "Linea Bridged GNO (Linea)", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/59144/0xe516a5cff996cc399efbb48355fd5ab83438e7a9.png", - "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0x0e076aafd86a71dceac65508daf975425c9d0cb6": { - "address": "0x0e076aafd86a71dceac65508daf975425c9d0cb6", - "symbol": "LDO", - "decimals": 18, - "name": "Linea Bridged LDO (Linea)", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/59144/0x0e076aafd86a71dceac65508daf975425c9d0cb6.png", - "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0x1be3735dd0c0eb229fb11094b6c277192349ebbf": { - "address": "0x1be3735dd0c0eb229fb11094b6c277192349ebbf", - "symbol": "LUBE", - "decimals": 18, - "name": "LUBE", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/59144/0x1be3735dd0c0eb229fb11094b6c277192349ebbf.png", - "aggregators": ["LineaTeam", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0x3e5d9d8a63cc8a88748f229999cf59487e90721e": { - "address": "0x3e5d9d8a63cc8a88748f229999cf59487e90721e", - "symbol": "XMT", - "decimals": 18, - "name": "MetalSwap", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/59144/0x3e5d9d8a63cc8a88748f229999cf59487e90721e.png", - "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0x7da14988e4f390c2e34ed41df1814467d3ade0c3": { - "address": "0x7da14988e4f390c2e34ed41df1814467d3ade0c3", - "symbol": "PEPE", - "decimals": 18, - "name": "Linea Bridged PEPE (Linea)", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/59144/0x7da14988e4f390c2e34ed41df1814467d3ade0c3.png", - "aggregators": ["LineaTeam", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0x13a7f090d46c74acba98c51786a5c46ed9a474f0": { - "address": "0x13a7f090d46c74acba98c51786a5c46ed9a474f0", - "symbol": "SCM", - "decimals": 18, - "name": "ScamFari", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/59144/0x13a7f090d46c74acba98c51786a5c46ed9a474f0.png", - "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0x68592c5c98c4f4a8a4bc6da2121e65da3d1c0917": { - "address": "0x68592c5c98c4f4a8a4bc6da2121e65da3d1c0917", - "symbol": "USDLR", - "decimals": 6, - "name": "Stable USDLR", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/59144/0x68592c5c98c4f4a8a4bc6da2121e65da3d1c0917.png", - "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0x796000fad0d00b003b9dd8e531ba90cff39e01e0": { - "address": "0x796000fad0d00b003b9dd8e531ba90cff39e01e0", - "symbol": "DUCKIES", - "decimals": 8, - "name": "Yellow Duckies", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/59144/0x796000fad0d00b003b9dd8e531ba90cff39e01e0.png", - "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0x5a7a183b6b44dc4ec2e3d2ef43f98c5152b1d76d": { - "address": "0x5a7a183b6b44dc4ec2e3d2ef43f98c5152b1d76d", - "symbol": "INETH", - "decimals": 18, - "name": "Inception Restaked ETH", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/59144/0x5a7a183b6b44dc4ec2e3d2ef43f98c5152b1d76d.png", - "aggregators": ["LiFi", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0x6baa318cf7c51c76e17ae1ebe9bbff96ae017acb": { - "address": "0x6baa318cf7c51c76e17ae1ebe9bbff96ae017acb", - "symbol": "APE", - "decimals": 18, - "name": "ApeCoin", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/59144/0x6baa318cf7c51c76e17ae1ebe9bbff96ae017acb.png", - "aggregators": ["LineaTeam", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x0a79e44c99505c7f388ca30c787ff97217e73ecc": { - "address": "0x0a79e44c99505c7f388ca30c787ff97217e73ecc", - "symbol": "FXS", - "decimals": 18, - "name": "Linea Bridged FXS (LInea)", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/59144/0x0a79e44c99505c7f388ca30c787ff97217e73ecc.png", - "aggregators": ["LineaTeam", "Rubic", "Rango"], - "occurrences": 3 - }, - "0xd83af4fbd77f3ab65c3b1dc4b38d7e67aecf599a": { - "address": "0xd83af4fbd77f3ab65c3b1dc4b38d7e67aecf599a", - "symbol": "LXP", - "decimals": 18, - "name": "Linea Voyage XP", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/59144/0xd83af4fbd77f3ab65c3b1dc4b38d7e67aecf599a.png", - "aggregators": ["CoinGecko", "Rubic", "Sonarwatch"], - "occurrences": 3 - }, - "0x2442bd7ae83b51f6664de408a385375fe4a84f52": { - "address": "0x2442bd7ae83b51f6664de408a385375fe4a84f52", - "symbol": "MKR", - "decimals": 18, - "name": "Linea Bridged MKR (LInea)", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/59144/0x2442bd7ae83b51f6664de408a385375fe4a84f52.png", - "aggregators": ["LineaTeam", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x12bbdc004a0e9085ff94df1717336ecbc9f9e5fe": { - "address": "0x12bbdc004a0e9085ff94df1717336ecbc9f9e5fe", - "symbol": "RUSTY", - "decimals": 18, - "name": "RustyAI", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/59144/0x12bbdc004a0e9085ff94df1717336ecbc9f9e5fe.png", - "aggregators": ["CoinGecko", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x67454b41baf8d29751cc64f60e3c62b5634567a4": { - "address": "0x67454b41baf8d29751cc64f60e3c62b5634567a4", - "symbol": "$TBAG", - "decimals": 18, - "name": "TBAG", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/59144/0x67454b41baf8d29751cc64f60e3c62b5634567a4.png", - "aggregators": ["CoinGecko", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x539ae81a166e5e80aed211731563e549c411b140": { - "address": "0x539ae81a166e5e80aed211731563e549c411b140", - "symbol": "TA", - "decimals": 18, - "name": "TA", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/59144/0x539ae81a166e5e80aed211731563e549c411b140.png", - "aggregators": ["CoinGecko", "Rubic", "Rango"], - "occurrences": 3 - }, - "0xa18152629128738a5c081eb226335fed4b9c95e9": { - "address": "0xa18152629128738a5c081eb226335fed4b9c95e9", - "symbol": "LINK", - "decimals": 18, - "name": "LINK", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/59144/0xa18152629128738a5c081eb226335fed4b9c95e9.png", - "aggregators": ["CoinGecko", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x5217ab28ece654aab2c68efedb6a22739df6c3d5": { - "address": "0x5217ab28ece654aab2c68efedb6a22739df6c3d5", - "symbol": "WFRAX", - "decimals": 18, - "name": "WFRAX", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/59144/0x5217ab28ece654aab2c68efedb6a22739df6c3d5.png", - "aggregators": ["CoinGecko", "Rubic", "Rango"], - "occurrences": 3 - }, - "0xa0b18e70387ba72d1c7038bc0bd3a05e5a2287f6": { - "address": "0xa0b18e70387ba72d1c7038bc0bd3a05e5a2287f6", - "symbol": "CADC", - "decimals": 18, - "name": "CADC", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/59144/0xa0b18e70387ba72d1c7038bc0bd3a05e5a2287f6.png", - "aggregators": ["CoinGecko", "Rubic", "Rango"], - "occurrences": 3 - }, - "0xdbecd077c1c2fefdcb75f547d1b5a73bf8207e4c": { - "address": "0xdbecd077c1c2fefdcb75f547d1b5a73bf8207e4c", - "symbol": "EVAETH", - "decimals": 18, - "name": "evaETH", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/59144/0xdbecd077c1c2fefdcb75f547d1b5a73bf8207e4c.png", - "aggregators": ["CoinGecko", "Rubic", "Rango"], - "occurrences": 3 - }, - "0xa0a675d08ca63066f48408136f8a71fc65be4afc": { - "address": "0xa0a675d08ca63066f48408136f8a71fc65be4afc", - "symbol": "BZR", - "decimals": 18, - "name": "Bazaars", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/59144/0xa0a675d08ca63066f48408136f8a71fc65be4afc.png", - "aggregators": ["CoinGecko", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x501ebf66d76a96d4fb26ccead42957653e16b8b8": { - "address": "0x501ebf66d76a96d4fb26ccead42957653e16b8b8", - "symbol": "EVAUSDT", - "decimals": 6, - "name": "evaUSDT", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/59144/0x501ebf66d76a96d4fb26ccead42957653e16b8b8.png", - "aggregators": ["CoinGecko", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x741bd193b6b40f8703d2e116fd1965421f290f58": { - "address": "0x741bd193b6b40f8703d2e116fd1965421f290f58", - "symbol": "EVAUSDC", - "decimals": 6, - "name": "evaUSDC", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/59144/0x741bd193b6b40f8703d2e116fd1965421f290f58.png", - "aggregators": ["CoinGecko", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x5ffce65a40f6d3de5332766fff6a28bf491c868c": { - "address": "0x5ffce65a40f6d3de5332766fff6a28bf491c868c", - "symbol": "SOLVBTC.M", - "decimals": 18, - "name": "SOLVBTC.M", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/59144/0x5ffce65a40f6d3de5332766fff6a28bf491c868c.png", - "aggregators": ["LiFi", "Rubic", "Rango"], - "occurrences": 3 - }, - "0xa1d241276b76638ee74fc04c7152208596954a44": { - "address": "0xa1d241276b76638ee74fc04c7152208596954a44", - "symbol": "WCROTCH", - "decimals": 18, - "name": "CROTCH", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/59144/0xa1d241276b76638ee74fc04c7152208596954a44.png", - "aggregators": ["LiFi", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x2b1d36f5b61addaf7da7ebbd11b35fd8cfb0de31": { - "address": "0x2b1d36f5b61addaf7da7ebbd11b35fd8cfb0de31", - "symbol": "ITP", - "decimals": 18, - "name": "Interport Token", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/59144/0x2b1d36f5b61addaf7da7ebbd11b35fd8cfb0de31.png", - "aggregators": ["Rubic", "Rango", "Sonarwatch"], - "occurrences": 3 - }, - "0xf5c6825015280cdfd0b56903f9f8b5a2233476f5": { - "address": "0xf5c6825015280cdfd0b56903f9f8b5a2233476f5", - "symbol": "WBNB", - "decimals": 18, - "name": "Wrapped BNB", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/59144/0xf5c6825015280cdfd0b56903f9f8b5a2233476f5.png", - "aggregators": [ - "CoinGecko", - "LiFi", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 6 - }, - "0x5471ea8f739dd37e9b81be9c5c77754d8aa953e4": { - "address": "0x5471ea8f739dd37e9b81be9c5c77754d8aa953e4", - "symbol": "WAVAX", - "decimals": 18, - "name": "Celer Bridged WAVAX (Linea)", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/59144/0x5471ea8f739dd37e9b81be9c5c77754d8aa953e4.png", - "aggregators": [ - "CoinGecko", - "LiFi", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 6 - }, - "0x265b25e22bcd7f10a5bd6e6410f10537cc7567e8": { - "address": "0x265b25e22bcd7f10a5bd6e6410f10537cc7567e8", - "symbol": "WPOL", - "decimals": 18, - "name": "Wrapped POL", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/59144/0x265b25e22bcd7f10a5bd6e6410f10537cc7567e8.png", - "aggregators": [ - "CoinGecko", - "LiFi", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 6 - }, - "0xcf0f95e34f25d1bb3d9cad3cbb2eb40dab7c3841": { - "address": "0xcf0f95e34f25d1bb3d9cad3cbb2eb40dab7c3841", - "symbol": "IBEX", - "decimals": 18, - "name": "Impermax", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/59144/0xcf0f95e34f25d1bb3d9cad3cbb2eb40dab7c3841.png", - "aggregators": [ - "CoinGecko", - "LiFi", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0xdd3b8084af79b9bae3d1b668c0de08ccc2c9429a": { - "address": "0xdd3b8084af79b9bae3d1b668c0de08ccc2c9429a", - "symbol": "MIM", - "decimals": 18, - "name": "Magic Internet Money (Linea)", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/59144/0xdd3b8084af79b9bae3d1b668c0de08ccc2c9429a.png", - "aggregators": [ - "CoinGecko", - "LiFi", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x41b94c5867f7f6217c9a30520cb3e793b1ee1b97": { - "address": "0x41b94c5867f7f6217c9a30520cb3e793b1ee1b97", - "symbol": "TIA", - "decimals": 6, - "name": "Axelar Wrapped TIA", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/59144/0x41b94c5867f7f6217c9a30520cb3e793b1ee1b97.png", - "aggregators": ["LiFi", "Socket", "Rubic", "Squid", "Rango"], - "occurrences": 5 - }, - "0x82cc61354d78b846016b559e3ccd766fa7e793d5": { - "address": "0x82cc61354d78b846016b559e3ccd766fa7e793d5", - "symbol": "LINDA", - "decimals": 18, - "name": "Linda", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/59144/0x82cc61354d78b846016b559e3ccd766fa7e793d5.png", - "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0x11f98c7e42a367dab4f200d2fdc460fb445ce9a8": { - "address": "0x11f98c7e42a367dab4f200d2fdc460fb445ce9a8", - "symbol": "SPARTA", - "decimals": 18, - "name": "SpartaDEX", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/59144/0x11f98c7e42a367dab4f200d2fdc460fb445ce9a8.png", - "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0x7a087e75807f2e5143c161a817e64df6dc5eafe0": { - "address": "0x7a087e75807f2e5143c161a817e64df6dc5eafe0", - "symbol": "ABTC", - "decimals": 18, - "name": "XLink Bridged BTC", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/59144/0x7a087e75807f2e5143c161a817e64df6dc5eafe0.png", - "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0x34b5c2936dae6698e54781edb8b1e69a2c2873f8": { - "address": "0x34b5c2936dae6698e54781edb8b1e69a2c2873f8", - "symbol": "RYZE", - "decimals": 18, - "name": "Ryze", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/59144/0x34b5c2936dae6698e54781edb8b1e69a2c2873f8.png", - "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0x11d8680c7f8f82f623e840130eb06c33d9f90c89": { - "address": "0x11d8680c7f8f82f623e840130eb06c33d9f90c89", - "symbol": "ANKRETH", - "decimals": 18, - "name": "Ankr Staked ETH", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/59144/0x11d8680c7f8f82f623e840130eb06c33d9f90c89.png", - "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0x757cd583004400ee67e5cc3c7a60c6a62e3f6d30": { - "address": "0x757cd583004400ee67e5cc3c7a60c6a62e3f6d30", - "symbol": "DACKIE", - "decimals": 18, - "name": "DackieSwap", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/59144/0x757cd583004400ee67e5cc3c7a60c6a62e3f6d30.png", - "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0xa8ae6365383eb907e6b4b1b7e82a35752cc5ef8c": { - "address": "0xa8ae6365383eb907e6b4b1b7e82a35752cc5ef8c", - "symbol": "ANKR", - "decimals": 18, - "name": "Ankr Network", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/59144/0xa8ae6365383eb907e6b4b1b7e82a35752cc5ef8c.png", - "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0x5e15e8afc627397075ebe0a7c9dc14177429bbff": { - "address": "0x5e15e8afc627397075ebe0a7c9dc14177429bbff", - "symbol": "SLN", - "decimals": 18, - "name": "Smart Layer Network", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/59144/0x5e15e8afc627397075ebe0a7c9dc14177429bbff.png", - "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0xf3df0a31ec5ea438150987805e841f960b9471b6": { - "address": "0xf3df0a31ec5ea438150987805e841f960b9471b6", - "symbol": "WOO", - "decimals": 18, - "name": "WOO", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/59144/0xf3df0a31ec5ea438150987805e841f960b9471b6.png", - "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0x4186bfc76e2e237523cbc30fd220fe055156b41f": { - "address": "0x4186bfc76e2e237523cbc30fd220fe055156b41f", - "symbol": "RSETH", - "decimals": 18, - "name": "KelpDAO Bridged rsETH (Linea)", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/59144/0x4186bfc76e2e237523cbc30fd220fe055156b41f.png", - "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0x0a3bb08b3a15a19b4de82f8acfc862606fb69a2d": { - "address": "0x0a3bb08b3a15a19b4de82f8acfc862606fb69a2d", - "symbol": "IUSD", - "decimals": 18, - "name": "IUSD", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/59144/0x0a3bb08b3a15a19b4de82f8acfc862606fb69a2d.png", - "aggregators": ["LiFi", "Socket", "Rubic", "Rango"], - "occurrences": 4 - }, - "0x23ee2343b892b1bb63503a4fabc840e0e2c6810f": { - "address": "0x23ee2343b892b1bb63503a4fabc840e0e2c6810f", - "symbol": "WAXL", - "decimals": 6, - "name": "Axelar", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/59144/0x23ee2343b892b1bb63503a4fabc840e0e2c6810f.png", - "aggregators": ["LiFi", "Socket", "Rubic", "Squid"], - "occurrences": 4 - }, - "0x092b9e25a7d143c83d44c27194f5cee7c1150f22": { - "address": "0x092b9e25a7d143c83d44c27194f5cee7c1150f22", - "symbol": "CWC", - "decimals": 18, - "name": "CatWifCap", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/59144/0x092b9e25a7d143c83d44c27194f5cee7c1150f22.png", - "aggregators": ["Rubic", "Squid", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0x139c3d0d52c58fd1ea10b44981aaf21976f7ff51": { - "address": "0x139c3d0d52c58fd1ea10b44981aaf21976f7ff51", - "symbol": "SBET", - "decimals": 6, - "name": "SharpLink Gaming, Inc.", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/59144/0x139c3d0d52c58fd1ea10b44981aaf21976f7ff51.png", - "aggregators": ["CoinGecko", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x43b3c64dbc95f9ed83795e051fc00014059e698f": { - "address": "0x43b3c64dbc95f9ed83795e051fc00014059e698f", - "symbol": "LYUSD", - "decimals": 18, - "name": "Ledgity Yield USD", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/59144/0x43b3c64dbc95f9ed83795e051fc00014059e698f.png", - "aggregators": ["CoinGecko", "Rubic", "Rango"], - "occurrences": 3 - }, - "0xc53ac24320e3a54c7211e4993c8095078a0cb3cf": { - "address": "0xc53ac24320e3a54c7211e4993c8095078a0cb3cf", - "symbol": "WGC", - "decimals": 6, - "name": "Wild Goat Coin", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/59144/0xc53ac24320e3a54c7211e4993c8095078a0cb3cf.png", - "aggregators": ["CoinGecko", "Rubic", "Rango"], - "occurrences": 3 - }, - "0xb20116ee399f15647bb1eef9a74f6ef3b58bc951": { - "address": "0xb20116ee399f15647bb1eef9a74f6ef3b58bc951", - "symbol": "LYU", - "decimals": 18, - "name": "LYU", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/59144/0xb20116ee399f15647bb1eef9a74f6ef3b58bc951.png", - "aggregators": ["LiFi", "Rubic", "Rango"], - "occurrences": 3 - }, - "0xb97f21d1f2508ff5c73e7b5af02847640b1ff75d": { - "address": "0xb97f21d1f2508ff5c73e7b5af02847640b1ff75d", - "symbol": "LAB", - "decimals": 18, - "name": "LAB", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/59144/0xb97f21d1f2508ff5c73e7b5af02847640b1ff75d.png", - "aggregators": ["LiFi", "Rubic", "Rango"], - "occurrences": 3 - }, - "0xd08c3f25862077056cb1b710937576af899a4959": { - "address": "0xd08c3f25862077056cb1b710937576af899a4959", - "symbol": "INSTETH", - "decimals": 18, - "name": "Inception stETH", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/59144/0xd08c3f25862077056cb1b710937576af899a4959.png", - "aggregators": ["Rubic", "Rango", "Sonarwatch"], - "occurrences": 3 - }, - "0x1f63d0ec7193964142ef6b13d901462d0e5cbb50": { - "address": "0x1f63d0ec7193964142ef6b13d901462d0e5cbb50", - "symbol": "ONEPUNCH", - "decimals": 18, - "name": "ONEPUNCH", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/59144/0x1f63d0ec7193964142ef6b13d901462d0e5cbb50.png", - "aggregators": ["Rubic", "Rango", "Sonarwatch"], - "occurrences": 3 - }, - "0x5cc5e64ab764a0f1e97f23984e20fd4528356a6a": { - "address": "0x5cc5e64ab764a0f1e97f23984e20fd4528356a6a", - "symbol": "XRGB", - "decimals": 18, - "name": "XRGB", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/59144/0x5cc5e64ab764a0f1e97f23984e20fd4528356a6a.png", - "aggregators": ["Rubic", "Rango", "Sonarwatch"], - "occurrences": 3 - }, - "0x3c56229dbc7dbe69908e3ad3e2ba9016b30e83c5": { - "address": "0x3c56229dbc7dbe69908e3ad3e2ba9016b30e83c5", - "symbol": "PUPI", - "decimals": 18, - "name": "PUPI", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/59144/0x3c56229dbc7dbe69908e3ad3e2ba9016b30e83c5.png", - "aggregators": ["LineaTeam", "LiFi"], - "occurrences": 2 - }, - "0x023617babed6cef5da825bea8363a5a9862e120f": { - "address": "0x023617babed6cef5da825bea8363a5a9862e120f", - "symbol": "WDAI", - "decimals": 18, - "name": "WrappedDAI", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/59144/0x023617babed6cef5da825bea8363a5a9862e120f.png", - "aggregators": ["LineaTeam", "Rubic"], - "occurrences": 2 - }, - "0x374d7860c4f2f604de0191298dd393703cce84f3": { - "address": "0x374d7860c4f2f604de0191298dd393703cce84f3", - "symbol": "AUSDC", - "decimals": 6, - "name": "Aave v3 USDC", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/59144/0x374d7860c4f2f604de0191298dd393703cce84f3.png", - "aggregators": ["Metamask", "1inch", "LiFi", "Rubic", "Rango"], - "occurrences": 5 - }, - "0x0e5f2ee8c29e7ebc14e45da7ff90566d8c407db7": { - "address": "0x0e5f2ee8c29e7ebc14e45da7ff90566d8c407db7", - "symbol": "HAPI", - "decimals": 18, - "name": "HAPI", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/59144/0x0e5f2ee8c29e7ebc14e45da7ff90566d8c407db7.png", - "aggregators": ["LineaTeam", "LiFi", "Socket", "Rubic", "Rango"], - "occurrences": 5 - }, - "0x211cc4dd073734da055fbf44a2b4667d5e5fe5d2": { - "address": "0x211cc4dd073734da055fbf44a2b4667d5e5fe5d2", - "symbol": "SUSDE", - "decimals": 18, - "name": "SUSDE", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/59144/0x211cc4dd073734da055fbf44a2b4667d5e5fe5d2.png", - "aggregators": ["CoinGecko", "LiFi", "Socket", "Rubic", "Rango"], - "occurrences": 5 - }, - "0xcc0966d8418d412c599a6421b760a847eb169a8c": { - "address": "0xcc0966d8418d412c599a6421b760a847eb169a8c", - "symbol": "XSOLVBTC", - "decimals": 18, - "name": "Solv Protocol Staked BTC", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/59144/0xcc0966d8418d412c599a6421b760a847eb169a8c.png", - "aggregators": [ - "CoinGecko", - "LiFi", - "Rubic", - "Rango", - "Sonarwatch" - ], - "occurrences": 5 - }, - "0x88231dfec71d4ff5c1e466d08c321944a7adc673": { - "address": "0x88231dfec71d4ff5c1e466d08c321944a7adc673", - "symbol": "AUSDT", - "decimals": 6, - "name": "Aave v3 USDT", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/59144/0x88231dfec71d4ff5c1e466d08c321944a7adc673.png", - "aggregators": ["Metamask", "1inch", "LiFi", "Rango"], - "occurrences": 4 - }, - "0x5d3a1ff2b6bab83b63cd9ad0787074081a52ef34": { - "address": "0x5d3a1ff2b6bab83b63cd9ad0787074081a52ef34", - "symbol": "USDE", - "decimals": 18, - "name": "USDE", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/59144/0x5d3a1ff2b6bab83b63cd9ad0787074081a52ef34.png", - "aggregators": ["CoinGecko", "LiFi", "Rubic", "Rango"], - "occurrences": 4 - }, - "0xd96536b77ae5500fe850add2253bcf640e7824c1": { - "address": "0xd96536b77ae5500fe850add2253bcf640e7824c1", - "symbol": "SIDUS", - "decimals": 18, - "name": "Sidus", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/59144/0xd96536b77ae5500fe850add2253bcf640e7824c1.png", - "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0x406cde76a3fd20e48bc1e0f60651e60ae204b040": { - "address": "0x406cde76a3fd20e48bc1e0f60651e60ae204b040", - "symbol": "FRAX", - "decimals": 18, - "name": "Bridged FRAX", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/59144/0x406cde76a3fd20e48bc1e0f60651e60ae204b040.png", - "aggregators": ["Rubic", "Squid", "Rango", "Sonarwatch"], - "occurrences": 4 - }, - "0x880a3ae90f989030708a529abd841589053c1dc2": { - "address": "0x880a3ae90f989030708a529abd841589053c1dc2", - "symbol": "BEAVER", - "decimals": 18, - "name": "Beaver Coin", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/59144/0x880a3ae90f989030708a529abd841589053c1dc2.png", - "aggregators": ["CoinGecko", "Rubic", "Rango"], - "occurrences": 3 - }, - "0xcc22f6aa610d1b2a0e89ef228079cb3e1831b1d1": { - "address": "0xcc22f6aa610d1b2a0e89ef228079cb3e1831b1d1", - "symbol": "LVC", - "decimals": 18, - "name": "Linea Velocore", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/59144/0xcc22f6aa610d1b2a0e89ef228079cb3e1831b1d1.png", - "aggregators": ["LineaTeam", "LiFi", "Rubic"], - "occurrences": 3 - }, - "0x8cf881799e3b5ab24271a9b66b6ca2b0e575b1ef": { - "address": "0x8cf881799e3b5ab24271a9b66b6ca2b0e575b1ef", - "symbol": "FBOMB", - "decimals": 18, - "name": "FBOMB", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/59144/0x8cf881799e3b5ab24271a9b66b6ca2b0e575b1ef.png", - "aggregators": ["CoinGecko", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x303241e2b3b4aed0bb0f8623e7442368fed8faf3": { - "address": "0x303241e2b3b4aed0bb0f8623e7442368fed8faf3", - "symbol": "ALETH", - "decimals": 18, - "name": "Alchemix ETH", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/59144/0x303241e2b3b4aed0bb0f8623e7442368fed8faf3.png", - "aggregators": ["CoinGecko", "Rubic", "Rango"], - "occurrences": 3 - }, - "0x787897df92703bb3fc4d9ee98e15c0b8130bf163": { - "address": "0x787897df92703bb3fc4d9ee98e15c0b8130bf163", - "symbol": "ALINWETH", - "decimals": 18, - "name": "Aave Linea WETH", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/59144/0x787897df92703bb3fc4d9ee98e15c0b8130bf163.png", - "aggregators": ["1inch", "LiFi", "Rango"], - "occurrences": 3 - }, - "0x37f7e06359f98162615e016d0008023d910bb576": { - "address": "0x37f7e06359f98162615e016d0008023d910bb576", - "symbol": "ALINWBTC", - "decimals": 8, - "name": "Aave Linea WBTC", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/59144/0x37f7e06359f98162615e016d0008023d910bb576.png", - "aggregators": ["1inch", "LiFi", "Rango"], - "occurrences": 3 - }, - "0x0c7921ab4888fd06731898b3ffffeb06781d5f4f": { - "address": "0x0c7921ab4888fd06731898b3ffffeb06781d5f4f", - "symbol": "ALINWEETH", - "decimals": 18, - "name": "Aave Linea weETH", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/59144/0x0c7921ab4888fd06731898b3ffffeb06781d5f4f.png", - "aggregators": ["1inch", "LiFi", "Rango"], - "occurrences": 3 - }, - "0x935efcbefc1df0541afc3fe145134f8c9a0beb89": { - "address": "0x935efcbefc1df0541afc3fe145134f8c9a0beb89", - "symbol": "ALINEZETH", - "decimals": 18, - "name": "Aave Linea ezETH", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/59144/0x935efcbefc1df0541afc3fe145134f8c9a0beb89.png", - "aggregators": ["1inch", "LiFi", "Rango"], - "occurrences": 3 - }, - "0x5860a0bf37133f8461b2dede7c80e55d6bff3721": { - "address": "0x5860a0bf37133f8461b2dede7c80e55d6bff3721", - "symbol": "FXS.AXL", - "decimals": 18, - "name": "Frax Share", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/59144/0x5860a0bf37133f8461b2dede7c80e55d6bff3721.png", - "aggregators": ["LiFi", "Rubic", "Squid"], - "occurrences": 3 - }, - "0xb448ec505c924944ca8b2c55ef05c299ee0781df": { - "address": "0xb448ec505c924944ca8b2c55ef05c299ee0781df", - "symbol": "AXLKNC", - "decimals": 18, - "name": "Axelar Wrapped KNC", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/59144/0xb448ec505c924944ca8b2c55ef05c299ee0781df.png", - "aggregators": ["LiFi", "Squid", "Rango"], - "occurrences": 3 - }, - "0x332c72dd7e77070740f01d2d35851c461585d5d0": { - "address": "0x332c72dd7e77070740f01d2d35851c461585d5d0", - "symbol": "LQDR.AXL", - "decimals": 18, - "name": " Lqdr (Axelar)", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/59144/0x332c72dd7e77070740f01d2d35851c461585d5d0.png", - "aggregators": ["LiFi", "Rubic", "Squid"], - "occurrences": 3 - }, - "0xb7f8f05825f3e37dfa68e1f3df8b6d4b5829bc78": { - "address": "0xb7f8f05825f3e37dfa68e1f3df8b6d4b5829bc78", - "symbol": "USDZ", - "decimals": 18, - "name": "ZAI Stablecoin", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/59144/0xb7f8f05825f3e37dfa68e1f3df8b6d4b5829bc78.png", - "aggregators": ["Rubic", "Rango", "Sonarwatch"], - "occurrences": 3 - }, - "0x5c7e299cf531eb66f2a1df637d37abb78e6200c7": { - "address": "0x5c7e299cf531eb66f2a1df637d37abb78e6200c7", - "symbol": "AXLDAI", - "decimals": 18, - "name": "Axelar Wrapped DAI", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/59144/0x5c7e299cf531eb66f2a1df637d37abb78e6200c7.png", - "aggregators": ["Rubic", "Squid", "SushiSwap"], - "occurrences": 3 - }, - "0x63ba74893621d3d12f13cec1e86517ec3d329837": { - "address": "0x63ba74893621d3d12f13cec1e86517ec3d329837", - "symbol": "LUSD", - "decimals": 18, - "name": "LUSD Stablecoin", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/59144/0x63ba74893621d3d12f13cec1e86517ec3d329837.png", - "aggregators": ["LineaTeam", "LiFi"], - "occurrences": 2 - }, - "0x45dc7323e7357713d92edee756733dada5865fd5": { - "address": "0x45dc7323e7357713d92edee756733dada5865fd5", - "symbol": "NEMS", - "decimals": 18, - "name": "The Nemesis", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/59144/0x45dc7323e7357713d92edee756733dada5865fd5.png", - "aggregators": ["LineaTeam", "Rubic"], - "occurrences": 2 - }, - "0x8717d1bd821fd8faf023fd6fb6087512182b477f": { - "address": "0x8717d1bd821fd8faf023fd6fb6087512182b477f", - "symbol": "1CHOOSE", - "decimals": 18, - "name": "1CHOOSE", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/59144/0x8717d1bd821fd8faf023fd6fb6087512182b477f.png", - "aggregators": ["LineaTeam"], - "occurrences": 1 - }, - "0x29380ed69d0012e2fa825b7ecc8751ebb21aa79d": { - "address": "0x29380ed69d0012e2fa825b7ecc8751ebb21aa79d", - "symbol": "ABT", - "decimals": 18, - "name": "ABT", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/59144/0x29380ed69d0012e2fa825b7ecc8751ebb21aa79d.png", - "aggregators": ["LineaTeam"], - "occurrences": 1 - }, - "0x7324a70d1a70cf0e9dab2ea8335ced1ec100bcf3": { - "address": "0x7324a70d1a70cf0e9dab2ea8335ced1ec100bcf3", - "symbol": "AJP", - "decimals": 18, - "name": "Ajira Pay Finance", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/59144/0x7324a70d1a70cf0e9dab2ea8335ced1ec100bcf3.png", - "aggregators": ["LineaTeam"], - "occurrences": 1 - }, - "0x1578f35532fa091eced8638730f9db829930ce16": { - "address": "0x1578f35532fa091eced8638730f9db829930ce16", - "symbol": "AGEUR", - "decimals": 18, - "name": "Angle Protocol", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/59144/0x1578f35532fa091eced8638730f9db829930ce16.png", - "aggregators": ["LineaTeam"], - "occurrences": 1 - }, - "0x4acde18acde7f195e6fb928e15dc8d83d67c1f3a": { - "address": "0x4acde18acde7f195e6fb928e15dc8d83d67c1f3a", - "symbol": "DERI", - "decimals": 18, - "name": "Deri Protocol", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/59144/0x4acde18acde7f195e6fb928e15dc8d83d67c1f3a.png", - "aggregators": ["LineaTeam"], - "occurrences": 1 - }, - "0x1f031f8c523b339c7a831355879e3568fa3eb263": { - "address": "0x1f031f8c523b339c7a831355879e3568fa3eb263", - "symbol": "DVF", - "decimals": 18, - "name": "DeversiFi Token", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/59144/0x1f031f8c523b339c7a831355879e3568fa3eb263.png", - "aggregators": ["LineaTeam"], - "occurrences": 1 - }, - "0x70359c1eeb98eb3d12ee7178359a4541ff11cc8e": { - "address": "0x70359c1eeb98eb3d12ee7178359a4541ff11cc8e", - "symbol": "DSLA", - "decimals": 18, - "name": "DSLA Protocol", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/59144/0x70359c1eeb98eb3d12ee7178359a4541ff11cc8e.png", - "aggregators": ["LineaTeam"], - "occurrences": 1 - }, - "0xf312ec9f8087c87fbf3439b0369ea233a1ee4a7d": { - "address": "0xf312ec9f8087c87fbf3439b0369ea233a1ee4a7d", - "symbol": "DUST", - "decimals": 18, - "name": "Dust", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/59144/0xf312ec9f8087c87fbf3439b0369ea233a1ee4a7d.png", - "aggregators": ["LineaTeam"], - "occurrences": 1 - }, - "0x65e413f21bf468fed23996a8e701dd67fdf22b83": { - "address": "0x65e413f21bf468fed23996a8e701dd67fdf22b83", - "symbol": "DYSN", - "decimals": 18, - "name": "Dyson Sphere", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/59144/0x65e413f21bf468fed23996a8e701dd67fdf22b83.png", - "aggregators": ["LineaTeam"], - "occurrences": 1 - }, - "0x42d4eb291c00a243c7cbc2759b47892ed1852a9d": { - "address": "0x42d4eb291c00a243c7cbc2759b47892ed1852a9d", - "symbol": "GENESIS", - "decimals": 18, - "name": "Genesis", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/59144/0x42d4eb291c00a243c7cbc2759b47892ed1852a9d.png", - "aggregators": ["LineaTeam"], - "occurrences": 1 - }, - "0xaec06345b26451bda999d83b361beaad6ea93f87": { - "address": "0xaec06345b26451bda999d83b361beaad6ea93f87", - "symbol": "VELVC", - "decimals": 18, - "name": "Locked LVC", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/59144/0xaec06345b26451bda999d83b361beaad6ea93f87.png", - "aggregators": ["LineaTeam"], - "occurrences": 1 - }, - "0x9d36f49d3d42b3a9bcc0f5ac76ff8ef78fb2bc01": { - "address": "0x9d36f49d3d42b3a9bcc0f5ac76ff8ef78fb2bc01", - "symbol": "LBR", - "decimals": 18, - "name": "Lybra Finance", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/59144/0x9d36f49d3d42b3a9bcc0f5ac76ff8ef78fb2bc01.png", - "aggregators": ["LineaTeam"], - "occurrences": 1 - }, - "0xa6eb75b11b36fb9175fb94c5b96959879a26c2a8": { - "address": "0xa6eb75b11b36fb9175fb94c5b96959879a26c2a8", - "symbol": "PEEL", - "decimals": 18, - "name": "Meta Apes Peel", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/59144/0xa6eb75b11b36fb9175fb94c5b96959879a26c2a8.png", - "aggregators": ["LineaTeam"], - "occurrences": 1 - }, - "0xd2bc272ea0154a93bf00191c8a1db23e67643ec5": { - "address": "0xd2bc272ea0154a93bf00191c8a1db23e67643ec5", - "symbol": "USDP", - "decimals": 18, - "name": "Pax Dollar", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/59144/0xd2bc272ea0154a93bf00191c8a1db23e67643ec5.png", - "aggregators": ["LineaTeam"], - "occurrences": 1 - }, - "0x99ad925c1dc14ac7cc6ca1244eef8043c74e99d5": { - "address": "0x99ad925c1dc14ac7cc6ca1244eef8043c74e99d5", - "symbol": "SHIB", - "decimals": 18, - "name": "SHIBA INU", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/59144/0x99ad925c1dc14ac7cc6ca1244eef8043c74e99d5.png", - "aggregators": ["LineaTeam"], - "occurrences": 1 - }, - "0x60c2d7af58da5915af06f5e7a0e49fc98271a4b3": { - "address": "0x60c2d7af58da5915af06f5e7a0e49fc98271a4b3", - "symbol": "SHRT", - "decimals": 18, - "name": "Shortia Token", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/59144/0x60c2d7af58da5915af06f5e7a0e49fc98271a4b3.png", - "aggregators": ["LineaTeam"], - "occurrences": 1 - }, - "0x150b1e51738cdf0ccfe472594c62d7d6074921ca": { - "address": "0x150b1e51738cdf0ccfe472594c62d7d6074921ca", - "symbol": "SMENDI", - "decimals": 18, - "name": "Staked Mendi", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/59144/0x150b1e51738cdf0ccfe472594c62d7d6074921ca.png", - "aggregators": ["LineaTeam"], - "occurrences": 1 - }, - "0xcf8dedcdc62317beaedfbee3c77c08425f284486": { - "address": "0xcf8dedcdc62317beaedfbee3c77c08425f284486", - "symbol": "UMENDI", - "decimals": 18, - "name": "Staked Mendi", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/59144/0xcf8dedcdc62317beaedfbee3c77c08425f284486.png", - "aggregators": ["LineaTeam"], - "occurrences": 1 - }, - "0xa3c26a308ac52520320ebcafdba0bb0aaa105ee8": { - "address": "0xa3c26a308ac52520320ebcafdba0bb0aaa105ee8", - "symbol": "SNT", - "decimals": 18, - "name": "Status", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/59144/0xa3c26a308ac52520320ebcafdba0bb0aaa105ee8.png", - "aggregators": ["LineaTeam"], - "occurrences": 1 - }, - "0xd221cf22b2b9643b44ba0873e08ec1952d52508a": { - "address": "0xd221cf22b2b9643b44ba0873e08ec1952d52508a", - "symbol": "TATERZ", - "decimals": 18, - "name": "TATERZ", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/59144/0xd221cf22b2b9643b44ba0873e08ec1952d52508a.png", - "aggregators": ["LineaTeam"], - "occurrences": 1 - }, - "0xc84f2ce21272f17d92d2a450f1c8567bf0ff448e": { - "address": "0xc84f2ce21272f17d92d2a450f1c8567bf0ff448e", - "symbol": "USK", - "decimals": 18, - "name": "US KUMA Interest Bearing Token", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/59144/0xc84f2ce21272f17d92d2a450f1c8567bf0ff448e.png", - "aggregators": ["LineaTeam"], - "occurrences": 1 - }, - "0x2c2dc9770c1185e76920c8e763c4833b7a02dd1a": { - "address": "0x2c2dc9770c1185e76920c8e763c4833b7a02dd1a", - "symbol": "WRMY", - "decimals": 18, - "name": "Wormy", - "iconUrl": "https://static.cx.metamask.io/api/v1/tokenIcons/59144/0x2c2dc9770c1185e76920c8e763c4833b7a02dd1a.png", - "aggregators": ["LineaTeam"], - "occurrences": 1 - } - }, - "timestamp": 1779126362429 - } - }, - "allTokens": { - "0x1": { - "0x141d32a89a1e0a5ef360034a2f60a4b917c18838": [ - { - "address": "0x6B175474E89094C44Da98b954EedeAC495271d0F", - "aggregators": [ - "Metamask", - "1inch", - "LiFi", - "Socket", - "Rubic", - "Squid", - "Rango", - "Sonarwatch", - "SushiSwap", - "PMM", - "Bancor" - ], - "decimals": 18, - "image": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x6b175474e89094c44da98b954eedeac495271d0f.png", - "name": "Dai Stablecoin", - "symbol": "DAI" - }, - { - "address": "0x14c3abF95Cb9C93a8b82C1CdCB76D72Cb87b2d4c", - "aggregators": ["CoinGecko", "Rubic", "Rango", "Ondo"], - "decimals": 18, - "image": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x14c3abf95cb9c93a8b82c1cdcb76d72cb87b2d4c.png", - "name": "Apple (Ondo Tokenized)", - "rwaData": { - "market": { - "nextOpen": "2026-05-15T20:01:00.000Z", - "nextClose": "2026-05-15T19:59:00.000Z" - }, - "nextPause": { - "start": null, - "end": null - }, - "ticker": "AAPL", - "instrumentType": "stock" - }, - "symbol": "AAPLON" - }, - { - "address": "0xD4419C2d3DAA986Dc30444Fa333a846be44Fd1eb", - "aggregators": [ - "CoinMarketCap", - "Socket", - "Rubic", - "Rango", - "Sonarwatch" - ], - "decimals": 18, - "image": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xd4419c2d3daa986dc30444fa333a846be44fd1eb.png", - "name": "ZIK coin", - "symbol": "ZIK" - }, - { - "address": "0xacA92E438df0B2401fF60dA7E4337B687a2435DA", - "aggregators": ["Metamask", "LiFi", "Socket", "Rubic", "Rango"], - "decimals": 6, - "image": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xaca92e438df0b2401ff60da7e4337b687a2435da.png", - "name": "MetaMask USD", - "symbol": "MUSD" - } - ], - "0x30e8ccad5a980bdf30447f8c2c48e70989d9d294": [ - { - "address": "0xacA92E438df0B2401fF60dA7E4337B687a2435DA", - "aggregators": ["Metamask", "LiFi", "Socket", "Rango"], - "decimals": 6, - "image": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xaca92e438df0b2401ff60da7e4337b687a2435da.png", - "name": "MetaMask USD", - "symbol": "MUSD" - }, - { - "address": "0x14c3abF95Cb9C93a8b82C1CdCB76D72Cb87b2d4c", - "aggregators": ["CoinGecko", "Rango", "Ondo"], - "decimals": 18, - "image": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x14c3abf95cb9c93a8b82c1cdcb76d72cb87b2d4c.png", - "name": "Apple (Ondo Tokenized)", - "rwaData": { - "instrumentType": "stock", - "market": { - "nextClose": "2026-05-11T13:29:00.000Z", - "nextOpen": "2026-05-11T13:31:00.000Z" - }, - "nextPause": { - "end": null, - "start": null - }, - "ticker": "AAPL" - }, - "symbol": "AAPLON" - }, - { - "address": "0xD4419C2d3DAA986Dc30444Fa333a846be44Fd1eb", - "aggregators": ["CoinMarketCap", "Socket", "Rango", "Sonarwatch"], - "decimals": 18, - "image": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xd4419c2d3daa986dc30444fa333a846be44fd1eb.png", - "name": "ZIK coin", - "symbol": "ZIK" - }, - { - "address": "0xdAC17F958D2ee523a2206206994597C13D831ec7", - "aggregators": [ - "Metamask", - "1inch", - "LiFi", - "TrustWallet", - "Socket", - "Rubic", - "Squid", - "Rango", - "Sonarwatch", - "SushiSwap", - "Bancor" - ], - "decimals": 6, - "image": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xdac17f958d2ee523a2206206994597c13d831ec7.png", - "name": "Tether USD", - "symbol": "USDT" - } - ], - "0xb3864b298f4fddbbbd2fa5cf1a2a2748932b3b81": [ - { - "address": "0x14c3abF95Cb9C93a8b82C1CdCB76D72Cb87b2d4c", - "aggregators": ["CoinGecko", "Rubic", "Rango", "Ondo"], - "decimals": 18, - "image": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x14c3abf95cb9c93a8b82c1cdcb76d72cb87b2d4c.png", - "name": "Apple (Ondo Tokenized)", - "rwaData": { - "instrumentType": "stock", - "market": { - "nextClose": "2026-04-13T19:59:00.000Z", - "nextOpen": "2026-04-13T20:01:00.000Z" - }, - "nextPause": { - "end": "2026-04-30T23:30:00.000Z", - "start": "2026-04-30T20:00:00.000Z" - }, - "ticker": "AAPL" - }, - "symbol": "AAPLON" - } - ], - "0xe2f39519240814a77047490357ced4d094b6c9c7": [ - { - "address": "0xdAC17F958D2ee523a2206206994597C13D831ec7", - "aggregators": [ - "Metamask", - "1inch", - "LiFi", - "Socket", - "Rubic", - "Squid", - "Rango", - "Sonarwatch", - "SushiSwap", - "PMM", - "Bancor" - ], - "decimals": 6, - "image": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xdac17f958d2ee523a2206206994597c13d831ec7.png", - "name": "Tether USD", - "symbol": "USDT" - }, - { - "address": "0xacA92E438df0B2401fF60dA7E4337B687a2435DA", - "aggregators": ["metamask", "liFi", "socket", "rubic", "rango"], - "decimals": 6, - "image": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xaca92e438df0b2401ff60da7e4337b687a2435da.png", - "name": "MetaMask USD", - "symbol": "MUSD" - } - ], - "0xeeeab71a5989b7951389e3df313ea9876508856f": [ - { - "address": "0x14c3abF95Cb9C93a8b82C1CdCB76D72Cb87b2d4c", - "aggregators": ["CoinGecko", "Rubic", "Rango", "Ondo"], - "decimals": 18, - "image": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x14c3abf95cb9c93a8b82c1cdcb76d72cb87b2d4c.png", - "name": "Apple (Ondo Tokenized)", - "rwaData": { - "instrumentType": "stock", - "market": { - "nextClose": "2026-03-19T19:59:00.000Z", - "nextOpen": "2026-03-19T20:01:00.000Z" - }, - "nextPause": { - "end": null, - "start": null - }, - "ticker": "AAPL" - }, - "symbol": "AAPLON" - } - ], - "0xf25bd11c334507fd007d584e2d0b7b2c6543f714": [ - { - "address": "0xacA92E438df0B2401fF60dA7E4337B687a2435DA", - "aggregators": ["Metamask", "LiFi", "Socket", "Rango"], - "decimals": 6, - "image": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xaca92e438df0b2401ff60da7e4337b687a2435da.png", - "name": "MetaMask USD", - "symbol": "MUSD" - }, - { - "address": "0xD4419C2d3DAA986Dc30444Fa333a846be44Fd1eb", - "aggregators": ["CoinMarketCap", "Socket", "Rango", "Sonarwatch"], - "decimals": 18, - "image": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xd4419c2d3daa986dc30444fa333a846be44fd1eb.png", - "name": "ZIK coin", - "symbol": "ZIK" - } - ] - }, - "0x10e6": { - "0x141d32a89a1e0a5ef360034a2f60a4b917c18838": [ - { - "address": "0xB8CE59FC3717ada4C02eaDF9682A9e934F625ebb", - "aggregators": [], - "decimals": 6, - "image": "https://static.cx.metamask.io/api/v2/tokenIcons/assets/eip155/4326/erc20/0xb8ce59fc3717ada4c02eadf9682a9e934f625ebb.png", - "name": "USDT0", - "symbol": "USDT0" - }, - { - "address": "0xFAfDdbb3FC7688494971a79cc65DCa3EF82079E7", - "aggregators": [], - "decimals": 18, - "image": "https://static.cx.metamask.io/api/v2/tokenIcons/assets/eip155/4326/erc20/0xfafddbb3fc7688494971a79cc65dca3ef82079e7.png", - "name": "MegaUSD", - "symbol": "USDm" - }, - { - "address": "0xB0F70C0bD6FD87dbEb7C10dC692a2a6106817072", - "aggregators": [], - "decimals": 8, - "image": "https://static.cx.metamask.io/api/v2/tokenIcons/assets/eip155/4326/erc20/0xb0f70c0bd6fd87dbeb7c10dc692a2a6106817072.png", - "name": "Bitcoin", - "symbol": "BTC.b" - }, - { - "address": "0xf7d2F0d0b0517CBDbf87C86910ce10FaAab3589D", - "aggregators": [], - "decimals": 18, - "image": "https://static.cx.metamask.io/api/v2/tokenIcons/assets/eip155/4326/erc20/0xf7d2f0d0b0517cbdbf87c86910ce10faaab3589d.png", - "name": "Crown Credits", - "symbol": "CROWN" - }, - { - "address": "0x2eA493384F42d7Ea78564F3EF4C86986eAB4a890", - "aggregators": [], - "decimals": 18, - "image": "https://static.cx.metamask.io/api/v2/tokenIcons/assets/eip155/4326/erc20/0x2ea493384f42d7ea78564f3ef4c86986eab4a890.png", - "name": "USDm Yield", - "symbol": "USDmY" - }, - { - "address": "0x601aC63637933D88285A025C685AC4e9a92a98dA", - "aggregators": [], - "decimals": 18, - "image": "https://static.cx.metamask.io/api/v2/tokenIcons/assets/eip155/4326/erc20/0x601ac63637933d88285a025c685ac4e9a92a98da.png", - "name": "Wrapped liquid staked Ether 2.0", - "symbol": "wstETH" - }, - { - "address": "0x551DFe38994eC53c9E7E18084D73893225Eea3bf", - "aggregators": [], - "decimals": 18, - "image": "https://static.cx.metamask.io/api/v2/tokenIcons/assets/eip155/4326/erc20/0x551dfe38994ec53c9e7e18084d73893225eea3bf.png", - "name": "Gains Network", - "symbol": "GNS" - }, - { - "address": "0x3F927036A6c29F50e1c2dfceba572FC40Cf39069", - "aggregators": [], - "decimals": 18, - "image": "https://static.cx.metamask.io/api/v2/tokenIcons/assets/eip155/4326/erc20/0x3f927036a6c29f50e1c2dfceba572fc40cf39069.png", - "name": "Kumbaya Pump Initiative", - "symbol": "KPI" - }, - { - "address": "0x1C4784308adB589c1ED3fa88A48B7FcEFba5FA3C", - "aggregators": [], - "decimals": 18, - "image": "https://static.cx.metamask.io/api/v2/tokenIcons/assets/eip155/4326/erc20/0x1c4784308adb589c1ed3fa88a48b7fcefba5fa3c.png", - "name": "Etch", - "symbol": "ECT" - }, - { - "address": "0x5d3a1Ff2b6BAb83b63cd9AD0787074081a52ef34", - "aggregators": [], - "decimals": 18, - "image": "https://static.cx.metamask.io/api/v2/tokenIcons/assets/eip155/4326/erc20/0x5d3a1ff2b6bab83b63cd9ad0787074081a52ef34.png", - "name": "USDe", - "symbol": "USDe" - }, - { - "address": "0x28B7E77f82B25B95953825F1E3eA0E36c1c29861", - "aggregators": [], - "decimals": 18, - "image": "https://static.cx.metamask.io/api/v2/tokenIcons/assets/eip155/4326/erc20/0x28b7e77f82b25b95953825f1e3ea0e36c1c29861.png", - "name": "MEGA", - "symbol": "MEGA" - }, - { - "address": "0x88887bE419578051FF9F4eb6C858A951921D8888", - "aggregators": [], - "decimals": 18, - "image": "https://static.cx.metamask.io/api/v2/tokenIcons/assets/eip155/4326/erc20/0x88887be419578051ff9f4eb6c858a951921d8888.png", - "name": "Staked Cap USD", - "symbol": "stcUSD" - } - ], - "0x30e8ccad5a980bdf30447f8c2c48e70989d9d294": [ - { - "address": "0xB8CE59FC3717ada4C02eaDF9682A9e934F625ebb", - "aggregators": [], - "decimals": 6, - "image": "https://static.cx.metamask.io/api/v2/tokenIcons/assets/eip155/4326/erc20/0xb8ce59fc3717ada4c02eadf9682a9e934f625ebb.png", - "name": "USDT0", - "symbol": "USDT0" - }, - { - "address": "0xFAfDdbb3FC7688494971a79cc65DCa3EF82079E7", - "aggregators": [], - "decimals": 18, - "image": "https://static.cx.metamask.io/api/v2/tokenIcons/assets/eip155/4326/erc20/0xfafddbb3fc7688494971a79cc65dca3ef82079e7.png", - "name": "MegaUSD", - "symbol": "USDm" - }, - { - "address": "0x3F927036A6c29F50e1c2dfceba572FC40Cf39069", - "aggregators": [], - "decimals": 18, - "image": "https://static.cx.metamask.io/api/v2/tokenIcons/assets/eip155/4326/erc20/0x3f927036a6c29f50e1c2dfceba572fc40cf39069.png", - "name": "Kumbaya Pump Initiative", - "symbol": "KPI" - }, - { - "address": "0xB0F70C0bD6FD87dbEb7C10dC692a2a6106817072", - "aggregators": [], - "decimals": 8, - "image": "https://static.cx.metamask.io/api/v2/tokenIcons/assets/eip155/4326/erc20/0xb0f70c0bd6fd87dbeb7c10dc692a2a6106817072.png", - "name": "Bitcoin", - "symbol": "BTC.b" - }, - { - "address": "0xf7d2F0d0b0517CBDbf87C86910ce10FaAab3589D", - "aggregators": [], - "decimals": 18, - "image": "https://static.cx.metamask.io/api/v2/tokenIcons/assets/eip155/4326/erc20/0xf7d2f0d0b0517cbdbf87c86910ce10faaab3589d.png", - "name": "Crown Credits", - "symbol": "CROWN" - }, - { - "address": "0x601aC63637933D88285A025C685AC4e9a92a98dA", - "aggregators": [], - "decimals": 18, - "image": "https://static.cx.metamask.io/api/v2/tokenIcons/assets/eip155/4326/erc20/0x601ac63637933d88285a025c685ac4e9a92a98da.png", - "name": "Wrapped liquid staked Ether 2.0", - "symbol": "wstETH" - }, - { - "address": "0x021ee124cF23D302A7f725AE7a01B77A8ce9782B", - "aggregators": [], - "decimals": 18, - "image": "https://static.cx.metamask.io/api/v2/tokenIcons/assets/eip155/4326/erc20/0x021ee124cf23d302a7f725ae7a01b77a8ce9782b.png", - "name": "Duck Token", - "symbol": "DUCK" - }, - { - "address": "0xcCcc62962d17b8914c62D74FfB843d73B2a3cccC", - "aggregators": [], - "decimals": 18, - "image": "https://static.cx.metamask.io/api/v2/tokenIcons/assets/eip155/4326/erc20/0xcccc62962d17b8914c62d74ffb843d73b2a3cccc.png", - "name": "Cap USD", - "symbol": "cUSD" - }, - { - "address": "0x551DFe38994eC53c9E7E18084D73893225Eea3bf", - "aggregators": [], - "decimals": 18, - "image": "https://static.cx.metamask.io/api/v2/tokenIcons/assets/eip155/4326/erc20/0x551dfe38994ec53c9e7e18084d73893225eea3bf.png", - "name": "Gains Network", - "symbol": "GNS" - }, - { - "address": "0x273D38762CEe7Db9474ec0FD37a94bBda198E6c0", - "aggregators": [], - "decimals": 18, - "image": "https://static.cx.metamask.io/api/v2/tokenIcons/assets/eip155/4326/erc20/0x273d38762cee7db9474ec0fd37a94bbda198e6c0.png", - "name": "KUMA", - "symbol": "KUMA" - }, - { - "address": "0x2eA493384F42d7Ea78564F3EF4C86986eAB4a890", - "aggregators": [], - "decimals": 18, - "image": "https://static.cx.metamask.io/api/v2/tokenIcons/assets/eip155/4326/erc20/0x2ea493384f42d7ea78564f3ef4c86986eab4a890.png", - "name": "USDm Yield", - "symbol": "USDmY" - }, - { - "address": "0x118b949f2CaF55F9D75cdE8D2F6C8fEC98376420", - "aggregators": [], - "decimals": 18, - "image": "https://static.cx.metamask.io/api/v2/tokenIcons/assets/eip155/4326/erc20/0x118b949f2caf55f9d75cde8d2f6c8fec98376420.png", - "name": "BUN", - "symbol": "BUN" - }, - { - "address": "0x141cF6BFe9D5057883B9BECB39fEE8A62982dC93", - "aggregators": [], - "decimals": 18, - "image": "https://static.cx.metamask.io/api/v2/tokenIcons/assets/eip155/4326/erc20/0x141cf6bfe9d5057883b9becb39fee8a62982dc93.png", - "name": "Sigma Bunny", - "symbol": "Σ:" - }, - { - "address": "0x1f2C6BF8d3Cbd7EF80d9dd42A21b297a0a7af136", - "aggregators": [], - "decimals": 18, - "image": "https://static.cx.metamask.io/api/v2/tokenIcons/assets/eip155/4326/erc20/0x1f2c6bf8d3cbd7ef80d9dd42a21b297a0a7af136.png", - "name": "The World Computer", - "symbol": "WORLDCOMP" - }, - { - "address": "0x0C833bcDd2dC74d7a8Dca82ed011E32d04Fe5843", - "aggregators": [], - "decimals": 18, - "image": "https://static.cx.metamask.io/api/v2/tokenIcons/assets/eip155/4326/erc20/0x0c833bcdd2dc74d7a8dca82ed011e32d04fe5843.png", - "name": "Make Ethereum Great Again", - "symbol": "MEGA" - }, - { - "address": "0x16513005E80A20683b3527f977Ff74166F6Bcf73", - "aggregators": [], - "image": "https://static.cx.metamask.io/api/v2/tokenIcons/assets/eip155/4326/erc20/0x16513005e80a20683b3527f977ff74166f6bcf73.png" - }, - { - "address": "0x5d3a1Ff2b6BAb83b63cd9AD0787074081a52ef34", - "aggregators": [], - "decimals": 18, - "image": "https://static.cx.metamask.io/api/v2/tokenIcons/assets/eip155/4326/erc20/0x5d3a1ff2b6bab83b63cd9ad0787074081a52ef34.png", - "name": "USDe", - "symbol": "USDe" - }, - { - "address": "0x28B7E77f82B25B95953825F1E3eA0E36c1c29861", - "aggregators": [], - "decimals": 18, - "image": "https://static.cx.metamask.io/api/v2/tokenIcons/assets/eip155/4326/erc20/0x28b7e77f82b25b95953825f1e3ea0e36c1c29861.png", - "name": "MEGA", - "symbol": "MEGA" - }, - { - "address": "0x2A3a4c92ce37ABd7239fB010BC390710f4062407", - "aggregators": [], - "decimals": 18, - "image": "https://static.cx.metamask.io/api/v2/tokenIcons/assets/eip155/4326/erc20/0x2a3a4c92ce37abd7239fb010bc390710f4062407.png", - "name": "Fluffey", - "symbol": "FLUFFEY" - }, - { - "address": "0x39894d0B1aa402ae565678fc47F31717Ac2ae888", - "aggregators": [], - "decimals": 18, - "image": "https://static.cx.metamask.io/api/v2/tokenIcons/assets/eip155/4326/erc20/0x39894d0b1aa402ae565678fc47f31717ac2ae888.png", - "name": "Ronnie Red", - "symbol": "RONNIE" - }, - { - "address": "0x88887bE419578051FF9F4eb6C858A951921D8888", - "aggregators": [], - "decimals": 18, - "image": "https://static.cx.metamask.io/api/v2/tokenIcons/assets/eip155/4326/erc20/0x88887be419578051ff9f4eb6c858a951921d8888.png", - "name": "Staked Cap USD", - "symbol": "stcUSD" - } - ], - "0x422b8d8914cdad779f587414d647e953bb3a87db": [ - { - "address": "0xB8CE59FC3717ada4C02eaDF9682A9e934F625ebb", - "aggregators": [], - "decimals": 6, - "image": "https://static.cx.metamask.io/api/v2/tokenIcons/assets/eip155/4326/erc20/0xb8ce59fc3717ada4c02eadf9682a9e934f625ebb.png", - "name": "USDT0", - "symbol": "USDT0" - }, - { - "address": "0xFAfDdbb3FC7688494971a79cc65DCa3EF82079E7", - "aggregators": [], - "decimals": 18, - "image": "https://static.cx.metamask.io/api/v2/tokenIcons/assets/eip155/4326/erc20/0xfafddbb3fc7688494971a79cc65dca3ef82079e7.png", - "name": "MegaUSD", - "symbol": "USDm" - }, - { - "address": "0x3F927036A6c29F50e1c2dfceba572FC40Cf39069", - "aggregators": [], - "decimals": 18, - "image": "https://static.cx.metamask.io/api/v2/tokenIcons/assets/eip155/4326/erc20/0x3f927036a6c29f50e1c2dfceba572fc40cf39069.png", - "name": "Kumbaya Pump Initiative", - "symbol": "KPI" - }, - { - "address": "0xB0F70C0bD6FD87dbEb7C10dC692a2a6106817072", - "aggregators": [], - "decimals": 8, - "image": "https://static.cx.metamask.io/api/v2/tokenIcons/assets/eip155/4326/erc20/0xb0f70c0bd6fd87dbeb7c10dc692a2a6106817072.png", - "name": "Bitcoin", - "symbol": "BTC.b" - }, - { - "address": "0x601aC63637933D88285A025C685AC4e9a92a98dA", - "aggregators": [], - "decimals": 18, - "image": "https://static.cx.metamask.io/api/v2/tokenIcons/assets/eip155/4326/erc20/0x601ac63637933d88285a025c685ac4e9a92a98da.png", - "name": "Wrapped liquid staked Ether 2.0", - "symbol": "wstETH" - } - ], - "0x452ca3dad6db7f3a47bbf15b758b6749db579bbc": [ - { - "address": "0xB8CE59FC3717ada4C02eaDF9682A9e934F625ebb", - "aggregators": [], - "decimals": 6, - "image": "https://static.cx.metamask.io/api/v2/tokenIcons/assets/eip155/4326/erc20/0xb8ce59fc3717ada4c02eadf9682a9e934f625ebb.png", - "name": "USDT0", - "symbol": "USDT0" - }, - { - "address": "0x5d3a1Ff2b6BAb83b63cd9AD0787074081a52ef34", - "aggregators": [], - "decimals": 18, - "image": "https://static.cx.metamask.io/api/v2/tokenIcons/assets/eip155/4326/erc20/0x5d3a1ff2b6bab83b63cd9ad0787074081a52ef34.png", - "name": "USDe", - "symbol": "USDe" - }, - { - "address": "0xFAfDdbb3FC7688494971a79cc65DCa3EF82079E7", - "aggregators": [], - "decimals": 18, - "image": "https://static.cx.metamask.io/api/v2/tokenIcons/assets/eip155/4326/erc20/0xfafddbb3fc7688494971a79cc65dca3ef82079e7.png", - "name": "MegaUSD", - "symbol": "USDm" - }, - { - "address": "0xB0F70C0bD6FD87dbEb7C10dC692a2a6106817072", - "aggregators": [], - "decimals": 8, - "image": "https://static.cx.metamask.io/api/v2/tokenIcons/assets/eip155/4326/erc20/0xb0f70c0bd6fd87dbeb7c10dc692a2a6106817072.png", - "name": "Bitcoin", - "symbol": "BTC.b" - }, - { - "address": "0x601aC63637933D88285A025C685AC4e9a92a98dA", - "aggregators": [], - "decimals": 18, - "image": "https://static.cx.metamask.io/api/v2/tokenIcons/assets/eip155/4326/erc20/0x601ac63637933d88285a025c685ac4e9a92a98da.png", - "name": "Wrapped liquid staked Ether 2.0", - "symbol": "wstETH" - } - ], - "0xb3864b298f4fddbbbd2fa5cf1a2a2748932b3b81": [ - { - "address": "0xB8CE59FC3717ada4C02eaDF9682A9e934F625ebb", - "aggregators": [], - "decimals": 6, - "image": "https://static.cx.metamask.io/api/v2/tokenIcons/assets/eip155/4326/erc20/0xb8ce59fc3717ada4c02eadf9682a9e934f625ebb.png", - "name": "USDT0", - "symbol": "USDT0" - }, - { - "address": "0xFAfDdbb3FC7688494971a79cc65DCa3EF82079E7", - "aggregators": [], - "decimals": 18, - "image": "https://static.cx.metamask.io/api/v2/tokenIcons/assets/eip155/4326/erc20/0xfafddbb3fc7688494971a79cc65dca3ef82079e7.png", - "name": "MegaUSD", - "symbol": "USDm" - }, - { - "address": "0x3F927036A6c29F50e1c2dfceba572FC40Cf39069", - "aggregators": [], - "decimals": 18, - "image": "https://static.cx.metamask.io/api/v2/tokenIcons/assets/eip155/4326/erc20/0x3f927036a6c29f50e1c2dfceba572fc40cf39069.png", - "name": "Kumbaya Pump Initiative", - "symbol": "KPI" - }, - { - "address": "0xB0F70C0bD6FD87dbEb7C10dC692a2a6106817072", - "aggregators": [], - "decimals": 8, - "image": "https://static.cx.metamask.io/api/v2/tokenIcons/assets/eip155/4326/erc20/0xb0f70c0bd6fd87dbeb7c10dc692a2a6106817072.png", - "name": "Bitcoin", - "symbol": "BTC.b" - }, - { - "address": "0x601aC63637933D88285A025C685AC4e9a92a98dA", - "aggregators": [], - "decimals": 18, - "image": "https://static.cx.metamask.io/api/v2/tokenIcons/assets/eip155/4326/erc20/0x601ac63637933d88285a025c685ac4e9a92a98da.png", - "name": "Wrapped liquid staked Ether 2.0", - "symbol": "wstETH" - }, - { - "address": "0x5d3a1Ff2b6BAb83b63cd9AD0787074081a52ef34", - "aggregators": [], - "decimals": 18, - "image": "https://static.cx.metamask.io/api/v2/tokenIcons/assets/eip155/4326/erc20/0x5d3a1ff2b6bab83b63cd9ad0787074081a52ef34.png", - "name": "USDe", - "symbol": "USDe" - } - ], - "0xe2f39519240814a77047490357ced4d094b6c9c7": [ - { - "address": "0xB8CE59FC3717ada4C02eaDF9682A9e934F625ebb", - "aggregators": [], - "decimals": 6, - "image": "https://static.cx.metamask.io/api/v2/tokenIcons/assets/eip155/4326/erc20/0xb8ce59fc3717ada4c02eadf9682a9e934f625ebb.png", - "name": "USDT0", - "symbol": "USDT0" - }, - { - "address": "0xFAfDdbb3FC7688494971a79cc65DCa3EF82079E7", - "aggregators": [], - "decimals": 18, - "image": "https://static.cx.metamask.io/api/v2/tokenIcons/assets/eip155/4326/erc20/0xfafddbb3fc7688494971a79cc65dca3ef82079e7.png", - "name": "MegaUSD", - "symbol": "USDm" - }, - { - "address": "0xB0F70C0bD6FD87dbEb7C10dC692a2a6106817072", - "aggregators": [], - "decimals": 8, - "image": "https://static.cx.metamask.io/api/v2/tokenIcons/assets/eip155/4326/erc20/0xb0f70c0bd6fd87dbeb7c10dc692a2a6106817072.png", - "name": "Bitcoin", - "symbol": "BTC.b" - }, - { - "address": "0xf7d2F0d0b0517CBDbf87C86910ce10FaAab3589D", - "aggregators": [], - "decimals": 18, - "image": "https://static.cx.metamask.io/api/v2/tokenIcons/assets/eip155/4326/erc20/0xf7d2f0d0b0517cbdbf87c86910ce10faaab3589d.png", - "name": "Crown Credits", - "symbol": "CROWN" - }, - { - "address": "0x601aC63637933D88285A025C685AC4e9a92a98dA", - "aggregators": [], - "decimals": 18, - "image": "https://static.cx.metamask.io/api/v2/tokenIcons/assets/eip155/4326/erc20/0x601ac63637933d88285a025c685ac4e9a92a98da.png", - "name": "Wrapped liquid staked Ether 2.0", - "symbol": "wstETH" - }, - { - "address": "0x5d3a1Ff2b6BAb83b63cd9AD0787074081a52ef34", - "aggregators": [], - "decimals": 18, - "image": "https://static.cx.metamask.io/api/v2/tokenIcons/assets/eip155/4326/erc20/0x5d3a1ff2b6bab83b63cd9ad0787074081a52ef34.png", - "name": "USDe", - "symbol": "USDe" - }, - { - "address": "0x28B7E77f82B25B95953825F1E3eA0E36c1c29861", - "aggregators": [], - "decimals": 18, - "image": "https://static.cx.metamask.io/api/v2/tokenIcons/assets/eip155/4326/erc20/0x28b7e77f82b25b95953825f1e3ea0e36c1c29861.png", - "name": "MEGA", - "symbol": "MEGA" - } - ], - "0xf25bd11c334507fd007d584e2d0b7b2c6543f714": [ - { - "address": "0xB8CE59FC3717ada4C02eaDF9682A9e934F625ebb", - "aggregators": [], - "decimals": 6, - "image": "https://static.cx.metamask.io/api/v2/tokenIcons/assets/eip155/4326/erc20/0xb8ce59fc3717ada4c02eadf9682a9e934f625ebb.png", - "name": "USDT0", - "symbol": "USDT0" - }, - { - "address": "0xFAfDdbb3FC7688494971a79cc65DCa3EF82079E7", - "aggregators": [], - "decimals": 18, - "image": "https://static.cx.metamask.io/api/v2/tokenIcons/assets/eip155/4326/erc20/0xfafddbb3fc7688494971a79cc65dca3ef82079e7.png", - "name": "MegaUSD", - "symbol": "USDm" - }, - { - "address": "0x3F927036A6c29F50e1c2dfceba572FC40Cf39069", - "aggregators": [], - "decimals": 18, - "image": "https://static.cx.metamask.io/api/v2/tokenIcons/assets/eip155/4326/erc20/0x3f927036a6c29f50e1c2dfceba572fc40cf39069.png", - "name": "Kumbaya Pump Initiative", - "symbol": "KPI" - }, - { - "address": "0xB0F70C0bD6FD87dbEb7C10dC692a2a6106817072", - "aggregators": [], - "decimals": 8, - "image": "https://static.cx.metamask.io/api/v2/tokenIcons/assets/eip155/4326/erc20/0xb0f70c0bd6fd87dbeb7c10dc692a2a6106817072.png", - "name": "Bitcoin", - "symbol": "BTC.b" - }, - { - "address": "0xf7d2F0d0b0517CBDbf87C86910ce10FaAab3589D", - "aggregators": [], - "decimals": 18, - "image": "https://static.cx.metamask.io/api/v2/tokenIcons/assets/eip155/4326/erc20/0xf7d2f0d0b0517cbdbf87c86910ce10faaab3589d.png", - "name": "Crown Credits", - "symbol": "CROWN" - }, - { - "address": "0x2eA493384F42d7Ea78564F3EF4C86986eAB4a890", - "aggregators": [], - "decimals": 18, - "image": "https://static.cx.metamask.io/api/v2/tokenIcons/assets/eip155/4326/erc20/0x2ea493384f42d7ea78564f3ef4c86986eab4a890.png", - "name": "USDm Yield", - "symbol": "USDmY" - }, - { - "address": "0x551DFe38994eC53c9E7E18084D73893225Eea3bf", - "aggregators": [], - "decimals": 18, - "image": "https://static.cx.metamask.io/api/v2/tokenIcons/assets/eip155/4326/erc20/0x551dfe38994ec53c9e7e18084d73893225eea3bf.png", - "name": "Gains Network", - "symbol": "GNS" - }, - { - "address": "0x601aC63637933D88285A025C685AC4e9a92a98dA", - "aggregators": [], - "decimals": 18, - "image": "https://static.cx.metamask.io/api/v2/tokenIcons/assets/eip155/4326/erc20/0x601ac63637933d88285a025c685ac4e9a92a98da.png", - "name": "Wrapped liquid staked Ether 2.0", - "symbol": "wstETH" - }, - { - "address": "0xcCcc62962d17b8914c62D74FfB843d73B2a3cccC", - "aggregators": [], - "decimals": 18, - "image": "https://static.cx.metamask.io/api/v2/tokenIcons/assets/eip155/4326/erc20/0xcccc62962d17b8914c62d74ffb843d73b2a3cccc.png", - "name": "Cap USD", - "symbol": "cUSD" - }, - { - "address": "0x1f2C6BF8d3Cbd7EF80d9dd42A21b297a0a7af136", - "aggregators": [], - "decimals": 18, - "image": "https://static.cx.metamask.io/api/v2/tokenIcons/assets/eip155/4326/erc20/0x1f2c6bf8d3cbd7ef80d9dd42a21b297a0a7af136.png", - "name": "The World Computer", - "symbol": "WORLDCOMP" - }, - { - "address": "0x27a4A176007047A9470dbaEd609290F68815B069", - "aggregators": [], - "image": "https://static.cx.metamask.io/api/v2/tokenIcons/assets/eip155/4326/erc20/0x27a4a176007047a9470dbaed609290f68815b069.png" - }, - { - "address": "0x16513005E80A20683b3527f977Ff74166F6Bcf73", - "aggregators": [], - "image": "https://static.cx.metamask.io/api/v2/tokenIcons/assets/eip155/4326/erc20/0x16513005e80a20683b3527f977ff74166f6bcf73.png" - }, - { - "address": "0x021ee124cF23D302A7f725AE7a01B77A8ce9782B", - "aggregators": [], - "decimals": 18, - "image": "https://static.cx.metamask.io/api/v2/tokenIcons/assets/eip155/4326/erc20/0x021ee124cf23d302a7f725ae7a01b77a8ce9782b.png", - "name": "Duck Token", - "symbol": "DUCK" - }, - { - "address": "0x0C833bcDd2dC74d7a8Dca82ed011E32d04Fe5843", - "aggregators": [], - "decimals": 18, - "image": "https://static.cx.metamask.io/api/v2/tokenIcons/assets/eip155/4326/erc20/0x0c833bcdd2dc74d7a8dca82ed011e32d04fe5843.png", - "name": "Make Ethereum Great Again", - "symbol": "MEGA" - }, - { - "address": "0x5d3a1Ff2b6BAb83b63cd9AD0787074081a52ef34", - "aggregators": [], - "decimals": 18, - "image": "https://static.cx.metamask.io/api/v2/tokenIcons/assets/eip155/4326/erc20/0x5d3a1ff2b6bab83b63cd9ad0787074081a52ef34.png", - "name": "USDe", - "symbol": "USDe" - }, - { - "address": "0x28B7E77f82B25B95953825F1E3eA0E36c1c29861", - "aggregators": [], - "decimals": 18, - "image": "https://static.cx.metamask.io/api/v2/tokenIcons/assets/eip155/4326/erc20/0x28b7e77f82b25b95953825f1e3ea0e36c1c29861.png", - "name": "MEGA", - "symbol": "MEGA" - }, - { - "address": "0x88887bE419578051FF9F4eb6C858A951921D8888", - "aggregators": [], - "decimals": 18, - "image": "https://static.cx.metamask.io/api/v2/tokenIcons/assets/eip155/4326/erc20/0x88887be419578051ff9f4eb6c858a951921d8888.png", - "name": "Staked Cap USD", - "symbol": "stcUSD" - } - ] - }, - "0x2105": { - "0x141d32a89a1e0a5ef360034a2f60a4b917c18838": [ - { - "address": "0x07d15798a67253D76cea61F0eA6F57AeDC59DffB", - "aggregators": ["CoinGecko", "Rubic", "Rango"], - "decimals": 18, - "image": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x07d15798a67253d76cea61f0ea6f57aedc59dffb.png", - "name": "Based Coin", - "symbol": "BASED" - }, - { - "address": "0x3d63825B0d8669307366E6c8202f656b9E91D368", - "aggregators": ["CoinGecko", "Socket", "Rubic"], - "decimals": 6, - "image": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x3d63825b0d8669307366e6c8202f656b9e91d368.png", - "name": "Wild Goat Coin", - "symbol": "WGC" - }, - { - "address": "0x623cD3a3EdF080057892aaF8D773Bbb7A5C9b6e9", - "aggregators": [ - "CoinGecko", - "LiFi", - "Rubic", - "Rango", - "Sonarwatch" - ], - "decimals": 18, - "image": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x623cd3a3edf080057892aaf8d773bbb7a5c9b6e9.png", - "name": "Sekuya Multiverse", - "symbol": "SKYA" - }, - { - "address": "0x88Fb150BDc53A65fe94Dea0c9BA0a6dAf8C6e196", - "aggregators": ["CoinGecko", "LiFi", "Rubic", "Rango"], - "decimals": 18, - "image": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x88fb150bdc53a65fe94dea0c9ba0a6daf8c6e196.png", - "name": "ChainLink Token", - "symbol": "LINK" - }, - { - "address": "0xC438B0c0E80A8Fa1B36898d1b36A3fc2eC371C54", - "aggregators": ["CoinGecko", "Rubic", "Rango", "Sonarwatch"], - "decimals": 18, - "image": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xc438b0c0e80a8fa1b36898d1b36a3fc2ec371c54.png", - "name": "Blep Super Meme", - "symbol": "BLEP" - }, - { - "address": "0xCa72827a3D211CfD8F6b00Ac98824872b72CAb49", - "aggregators": [ - "CoinGecko", - "LiFi", - "Rubic", - "Rango", - "Sonarwatch" - ], - "decimals": 6, - "image": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xca72827a3d211cfd8f6b00ac98824872b72cab49.png", - "name": "Cygnus Finance Global USD", - "symbol": "CGUSD" - }, - { - "address": "0xD968196FA6977c4e58F2af5aC01C655ea8332d22", - "aggregators": ["Metamask", "Rubic", "Rango", "Sonarwatch"], - "decimals": 18, - "image": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0xd968196fa6977c4e58f2af5ac01c655ea8332d22.png", - "name": "The Nation Token", - "symbol": "NATO" - } - ] - }, - "0x38": { - "0x141d32a89a1e0a5ef360034a2f60a4b917c18838": [ - { - "address": "0x000Ae314E2A2172a039B26378814C252734f556A", - "aggregators": [ - "PancakeExtended", - "1inch", - "LiFi", - "Rubic", - "Squid", - "Rango" - ], - "decimals": 18, - "image": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x000ae314e2a2172a039b26378814c252734f556a.png", - "name": "Aster", - "symbol": "ASTER" - }, - { - "address": "0x5CA42204cDaa70d5c773946e69dE942b85CA6706", - "aggregators": [ - "PancakeCoinMarketCap", - "Rubic", - "Rango", - "Sonarwatch" - ], - "decimals": 18, - "image": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x5ca42204cdaa70d5c773946e69de942b85ca6706.png", - "name": "Position", - "symbol": "POSI" - }, - { - "address": "0x683e9dCf085E5efCc7925858aAcE94D4b8882024", - "aggregators": ["PancakeCoinMarketCap", "Rubic", "Sonarwatch"], - "decimals": 9, - "image": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x683e9dcf085e5efcc7925858aace94d4b8882024.png", - "name": "TangYuan", - "symbol": "TANGYUAN" - }, - { - "address": "0x55d398326f99059fF775485246999027B3197955", - "aggregators": [ - "PancakeExtended", - "1inch", - "LiFi", - "TrustWallet", - "Socket", - "Rubic", - "Squid", - "Rango", - "Sonarwatch", - "SushiSwap" - ], - "decimals": 18, - "image": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x55d398326f99059ff775485246999027b3197955.png", - "name": "Tether USD", - "symbol": "USDT" - }, - { - "address": "0x1AF3F329e8BE154074D8769D1FFa4eE058B1DBc3", - "aggregators": [ - "PancakeExtended", - "1inch", - "LiFi", - "TrustWallet", - "Socket", - "Rubic", - "Rango", - "Sonarwatch", - "SushiSwap", - "BinanceDex" - ], - "decimals": 18, - "image": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x1af3f329e8be154074d8769d1ffa4ee058b1dbc3.png", - "name": "BNB pegged Dai Token", - "symbol": "DAI" - }, - { - "address": "0xF8A0BF9cF54Bb92F17374d9e9A321E6a111a51bD", - "aggregators": [ - "PancakeTop100", - "1inch", - "LiFi", - "TrustWallet", - "Socket", - "Rubic", - "Squid", - "Rango", - "Sonarwatch", - "SushiSwap" - ], - "decimals": 18, - "image": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0xf8a0bf9cf54bb92f17374d9e9a321e6a111a51bd.png", - "name": "BNB pegged ChainLink", - "symbol": "LINK" - } - ], - "0x30e8ccad5a980bdf30447f8c2c48e70989d9d294": [ - { - "address": "0x55d398326f99059fF775485246999027B3197955", - "aggregators": [ - "PancakeExtended", - "1inch", - "LiFi", - "TrustWallet", - "Socket", - "Squid", - "Rango", - "Sonarwatch", - "SushiSwap" - ], - "decimals": 18, - "image": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x55d398326f99059ff775485246999027b3197955.png", - "name": "Tether USD", - "symbol": "USDT" - } - ], - "0xf25bd11c334507fd007d584e2d0b7b2c6543f714": [ - { - "address": "0x55d398326f99059fF775485246999027B3197955", - "aggregators": [ - "PancakeExtended", - "1inch", - "LiFi", - "TrustWallet", - "Socket", - "Squid", - "Rango", - "Sonarwatch", - "SushiSwap" - ], - "decimals": 18, - "image": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x55d398326f99059ff775485246999027b3197955.png", - "name": "Tether USD", - "symbol": "USDT" - } - ] - }, - "0x89": { - "0x141d32a89a1e0a5ef360034a2f60a4b917c18838": [ - { - "address": "0x53E0bca35eC356BD5ddDFebbD1Fc0fD03FaBad39", - "aggregators": [ - "QuickSwap", - "1inch", - "LiFi", - "TrustWallet", - "Socket", - "Rubic", - "Squid", - "Rango", - "Sonarwatch", - "SushiSwap" - ], - "decimals": 18, - "image": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x53e0bca35ec356bd5dddfebbd1fc0fd03fabad39.png", - "name": "ChainLink Token", - "symbol": "LINK" - }, - { - "address": "0xA649325Aa7C5093d12D6F98EB4378deAe68CE23F", - "aggregators": ["Socket", "Rubic", "Rango", "Sonarwatch"], - "decimals": 18, - "image": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0xa649325aa7c5093d12d6f98eb4378deae68ce23f.png", - "name": "Wrapped BNB", - "symbol": "WBNB" - }, - { - "address": "0xb33EaAd8d922B1083446DC23f610c2567fB5180f", - "aggregators": [ - "QuickSwap", - "1inch", - "LiFi", - "Socket", - "Rubic", - "Squid", - "Rango", - "Sonarwatch", - "SushiSwap" - ], - "decimals": 18, - "image": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0xb33eaad8d922b1083446dc23f610c2567fb5180f.png", - "name": "Uniswap", - "symbol": "UNI" - }, - { - "address": "0xc2132D05D31c914a87C6611C10748AEb04B58e8F", - "aggregators": [ - "QuickSwap", - "1inch", - "LiFi", - "TrustWallet", - "Socket", - "Rubic", - "Squid", - "Rango", - "Sonarwatch", - "SushiSwap" - ], - "decimals": 6, - "image": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0xc2132d05d31c914a87c6611c10748aeb04b58e8f.png", - "name": "(PoS) Tether USD", - "symbol": "USDT" - }, - { - "address": "0x2791Bca1f2de4661ED88A30C99A7a9449Aa84174", - "aggregators": [ - "Metamask", - "1inch", - "LiFi", - "TrustWallet", - "Socket", - "Rubic", - "Squid", - "Rango", - "Sonarwatch", - "SushiSwap" - ], - "decimals": 6, - "image": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x2791bca1f2de4661ed88a30c99a7a9449aa84174.png", - "name": "USD Coin (PoS)", - "symbol": "USDC.E" - } - ], - "0x30e8ccad5a980bdf30447f8c2c48e70989d9d294": [ - { - "address": "0xc2132D05D31c914a87C6611C10748AEb04B58e8F", - "aggregators": [ - "QuickSwap", - "1inch", - "LiFi", - "Socket", - "Squid", - "Rango", - "Sonarwatch", - "SushiSwap" - ], - "decimals": 6, - "image": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0xc2132d05d31c914a87c6611c10748aeb04b58e8f.png", - "name": "Tether USD", - "symbol": "USDT" - }, - { - "address": "0xb33EaAd8d922B1083446DC23f610c2567fB5180f", - "aggregators": [ - "QuickSwap", - "1inch", - "LiFi", - "Socket", - "Squid", - "Rango", - "Sonarwatch", - "SushiSwap" - ], - "decimals": 18, - "image": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0xb33eaad8d922b1083446dc23f610c2567fb5180f.png", - "name": "Uniswap", - "symbol": "UNI" - } - ], - "0xf25bd11c334507fd007d584e2d0b7b2c6543f714": [ - { - "address": "0xc2132D05D31c914a87C6611C10748AEb04B58e8F", - "aggregators": [ - "QuickSwap", - "1inch", - "LiFi", - "Socket", - "Squid", - "Rango", - "Sonarwatch", - "SushiSwap" - ], - "decimals": 6, - "image": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0xc2132d05d31c914a87c6611c10748aeb04b58e8f.png", - "name": "Tether USD", - "symbol": "USDT" - } - ] - }, - "0x8f": { - "0x141d32a89a1e0a5ef360034a2f60a4b917c18838": [ - { - "address": "0xacA92E438df0B2401fF60dA7E4337B687a2435DA", - "aggregators": ["dynamic"], - "decimals": 6, - "image": "https://static.cx.metamask.io/api/v1/tokenIcons/143/0xaca92e438df0b2401ff60da7e4337b687a2435da.png", - "name": "MetaMask USD", - "symbol": "mUSD" - } - ], - "0x30e8ccad5a980bdf30447f8c2c48e70989d9d294": [ - { - "address": "0xacA92E438df0B2401fF60dA7E4337B687a2435DA", - "aggregators": ["dynamic"], - "decimals": 6, - "image": "https://static.cx.metamask.io/api/v1/tokenIcons/143/0xaca92e438df0b2401ff60da7e4337b687a2435da.png", - "name": "MetaMask USD", - "symbol": "mUSD" - } - ], - "0xe2f39519240814a77047490357ced4d094b6c9c7": [ - { - "address": "0xacA92E438df0B2401fF60dA7E4337B687a2435DA", - "aggregators": ["dynamic"], - "decimals": 6, - "image": "https://static.cx.metamask.io/api/v1/tokenIcons/143/0xaca92e438df0b2401ff60da7e4337b687a2435da.png", - "name": "MetaMask USD", - "symbol": "mUSD" - } - ], - "0xf25bd11c334507fd007d584e2d0b7b2c6543f714": [ - { - "address": "0xacA92E438df0B2401fF60dA7E4337B687a2435DA", - "aggregators": ["dynamic"], - "decimals": 6, - "image": "https://static.cx.metamask.io/api/v1/tokenIcons/143/0xaca92e438df0b2401ff60da7e4337b687a2435da.png", - "name": "MetaMask USD", - "symbol": "mUSD" - } - ] - }, - "0xa": { - "0x141d32a89a1e0a5ef360034a2f60a4b917c18838": [ - { - "address": "0x0994206dfE8De6Ec6920FF4D779B0d950605Fb53", - "aggregators": [ - "Uniswap", - "1inch", - "LiFi", - "Socket", - "Rubic", - "Squid", - "Rango", - "Sonarwatch", - "SushiSwap" - ], - "decimals": 18, - "image": "https://static.cx.metamask.io/api/v1/tokenIcons/10/0x0994206dfe8de6ec6920ff4d779b0d950605fb53.png", - "name": "Curve DAO Token", - "symbol": "CRV" - }, - { - "address": "0xDA10009cBd5D07dd0CeCc66161FC93D7c9000da1", - "aggregators": [ - "Uniswap", - "1inch", - "LiFi", - "Socket", - "Rubic", - "Squid", - "Rango", - "Sonarwatch", - "SushiSwap" - ], - "decimals": 18, - "image": "https://static.cx.metamask.io/api/v1/tokenIcons/10/0xda10009cbd5d07dd0cecc66161fc93d7c9000da1.png", - "name": "Dai Stablecoin", - "symbol": "DAI" - }, - { - "address": "0x4200000000000000000000000000000000000042", - "aggregators": [ - "Uniswap", - "1inch", - "LiFi", - "Socket", - "Rubic", - "Squid", - "Rango", - "Sonarwatch", - "SushiSwap" - ], - "decimals": 18, - "image": "https://static.cx.metamask.io/api/v1/tokenIcons/10/0x4200000000000000000000000000000000000042.png", - "name": "Optimism", - "symbol": "OP" - }, - { - "address": "0x0b2C639c533813f4Aa9D7837CAf62653d097Ff85", - "aggregators": [ - "Uniswap", - "1inch", - "LiFi", - "Socket", - "Rubic", - "Squid", - "Rango", - "SushiSwap" - ], - "decimals": 6, - "image": "https://static.cx.metamask.io/api/v1/tokenIcons/10/0x0b2c639c533813f4aa9d7837caf62653d097ff85.png", - "name": "USD Coin", - "symbol": "USDC" - } - ] - }, - "0xa4b1": { - "0x04400bb51b1f886cff338eb2b4118f9ceb4e6fd5": [ - { - "address": "0xaf88d065e77c8cC2239327C5EDb3A432268e5831", - "aggregators": [ - "TraderJoe", - "1inch", - "LiFi", - "Socket", - "Rubic", - "Squid", - "Rango", - "Sonarwatch", - "SushiSwap" - ], - "decimals": 6, - "image": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0xaf88d065e77c8cc2239327c5edb3a432268e5831.png", - "name": "USD Coin (Native)", - "symbol": "USDC" - } - ], - "0x141d32a89a1e0a5ef360034a2f60a4b917c18838": [ - { - "address": "0xaf88d065e77c8cC2239327C5EDb3A432268e5831", - "aggregators": [ - "TraderJoe", - "1inch", - "LiFi", - "Socket", - "Rubic", - "Squid", - "Rango", - "Sonarwatch", - "SushiSwap" - ], - "decimals": 6, - "image": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0xaf88d065e77c8cc2239327c5edb3a432268e5831.png", - "name": "USD Coin (Native)", - "symbol": "USDC" - }, - { - "address": "0x306fD3e7b169Aa4ee19412323e1a5995B8c1a1f4", - "aggregators": ["CoinGecko", "Socket", "Rubic", "Rango"], - "decimals": 18, - "image": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0x306fd3e7b169aa4ee19412323e1a5995b8c1a1f4.png", - "name": "Black Agnus", - "symbol": "FTW" - } - ], - "0x30e8ccad5a980bdf30447f8c2c48e70989d9d294": [ - { - "address": "0xaf88d065e77c8cC2239327C5EDb3A432268e5831", - "aggregators": [ - "TraderJoe", - "1inch", - "LiFi", - "Socket", - "Rubic", - "Squid", - "Rango", - "Sonarwatch", - "SushiSwap" - ], - "decimals": 6, - "image": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0xaf88d065e77c8cc2239327c5edb3a432268e5831.png", - "name": "USD Coin (Native)", - "symbol": "USDC" - } - ] - }, - "0xa86a": { - "0x141d32a89a1e0a5ef360034a2f60a4b917c18838": [ - { - "address": "0xB97EF9Ef8734C71904D8002F8b6Bc66Dd9c48a6E", - "aggregators": [ - "TraderJoe", - "1inch", - "LiFi", - "TrustWallet", - "Socket", - "Rubic", - "Squid", - "Rango", - "Sonarwatch", - "SushiSwap" - ], - "decimals": 6, - "image": "https://static.cx.metamask.io/api/v1/tokenIcons/43114/0xb97ef9ef8734c71904d8002f8b6bc66dd9c48a6e.png", - "name": "USD Coin", - "symbol": "USDC" - } - ], - "0x30e8ccad5a980bdf30447f8c2c48e70989d9d294": [ - { - "address": "0xB97EF9Ef8734C71904D8002F8b6Bc66Dd9c48a6E", - "aggregators": [ - "TraderJoe", - "1inch", - "LiFi", - "TrustWallet", - "Socket", - "Rubic", - "Squid", - "Rango", - "Sonarwatch", - "SushiSwap" - ], - "decimals": 6, - "image": "https://static.cx.metamask.io/api/v1/tokenIcons/43114/0xb97ef9ef8734c71904d8002f8b6bc66dd9c48a6e.png", - "name": "USD Coin", - "symbol": "USDC" - } - ], - "0xf25bd11c334507fd007d584e2d0b7b2c6543f714": [ - { - "address": "0xB97EF9Ef8734C71904D8002F8b6Bc66Dd9c48a6E", - "aggregators": [ - "TraderJoe", - "1inch", - "LiFi", - "TrustWallet", - "Socket", - "Rubic", - "Squid", - "Rango", - "Sonarwatch", - "SushiSwap" - ], - "decimals": 6, - "image": "https://static.cx.metamask.io/api/v1/tokenIcons/43114/0xb97ef9ef8734c71904d8002f8b6bc66dd9c48a6e.png", - "name": "USD Coin", - "symbol": "USDC" - } - ] - }, - "0xe708": { - "0x141d32a89a1e0a5ef360034a2f60a4b917c18838": [ - { - "address": "0x176211869cA2b568f2A7D4EE941E073a821EE1ff", - "aggregators": [ - "Metamask", - "1inch", - "LiFi", - "Socket", - "Rubic", - "Squid", - "Rango", - "Sonarwatch", - "SushiSwap" - ], - "decimals": 6, - "image": "https://static.cx.metamask.io/api/v1/tokenIcons/59144/0x176211869ca2b568f2a7d4ee941e073a821ee1ff.png", - "name": "USDC", - "symbol": "USDC" - }, - { - "address": "0xacA92E438df0B2401fF60dA7E4337B687a2435DA", - "aggregators": [ - "Metamask", - "LiFi", - "Socket", - "Rubic", - "Squid", - "Rango" - ], - "decimals": 6, - "image": "https://static.cx.metamask.io/api/v1/tokenIcons/59144/0xaca92e438df0b2401ff60da7e4337b687a2435da.png", - "name": "MetaMask USD", - "symbol": "MUSD" - } - ], - "0x30e8ccad5a980bdf30447f8c2c48e70989d9d294": [ - { - "address": "0x176211869cA2b568f2A7D4EE941E073a821EE1ff", - "aggregators": [ - "Metamask", - "1inch", - "LiFi", - "Socket", - "Rubic", - "Squid", - "Rango", - "Sonarwatch", - "SushiSwap" - ], - "decimals": 6, - "image": "https://static.cx.metamask.io/api/v1/tokenIcons/59144/0x176211869ca2b568f2a7d4ee941e073a821ee1ff.png", - "name": "USDC", - "symbol": "USDC" - }, - { - "address": "0xacA92E438df0B2401fF60dA7E4337B687a2435DA", - "aggregators": [ - "Metamask", - "LiFi", - "Socket", - "Rubic", - "Squid", - "Rango" - ], - "decimals": 6, - "image": "https://static.cx.metamask.io/api/v1/tokenIcons/59144/0xaca92e438df0b2401ff60da7e4337b687a2435da.png", - "name": "MetaMask USD", - "symbol": "MUSD" - } - ], - "0xe2f39519240814a77047490357ced4d094b6c9c7": [ - { - "address": "0xacA92E438df0B2401fF60dA7E4337B687a2435DA", - "aggregators": [ - "metamask", - "liFi", - "socket", - "rubic", - "squid", - "rango" - ], - "decimals": 6, - "image": "https://static.cx.metamask.io/api/v1/tokenIcons/59144/0xaca92e438df0b2401ff60da7e4337b687a2435da.png", - "name": "MetaMask USD", - "symbol": "MUSD" - } - ], - "0xf25bd11c334507fd007d584e2d0b7b2c6543f714": [ - { - "address": "0xacA92E438df0B2401fF60dA7E4337B687a2435DA", - "aggregators": [ - "metamask", - "liFi", - "socket", - "rubic", - "squid", - "rango" - ], - "decimals": 6, - "image": "https://static.cx.metamask.io/api/v1/tokenIcons/59144/0xaca92e438df0b2401ff60da7e4337b687a2435da.png", - "name": "MetaMask USD", - "symbol": "MUSD" - } - ] - } - }, - "allIgnoredTokens": {}, - "allDetectedTokens": {}, - "tokenBalances": { - "0x04400bb51b1f886cff338eb2b4118f9ceb4e6fd5": { - "0x1": { - "0x0000000000000000000000000000000000000000": "0x0", - "0x4FEF9D741011476750A243aC70b9789a63dd47Df": "0x0" - }, - "0x10e6": { - "0x0000000000000000000000000000000000000000": "0x0" - }, - "0x89": { - "0x0000000000000000000000000000000000000000": "0x0" - }, - "0xa4b1": { - "0x0000000000000000000000000000000000000000": "0x0", - "0xaf88d065e77c8cC2239327C5EDb3A432268e5831": "0x0" - }, - "0xe708": { - "0x0000000000000000000000000000000000000000": "0x0" - } - }, - "0x141d32a89a1e0a5ef360034a2f60a4b917c18838": { - "0x1": { - "0x0000000000000000000000000000000000000000": "0x1f4cd90b253e", - "0x00e2B6D170740c15bF9Fb01D0B6e77C0d4510E32": "0xde0b6b3a7640000", - "0x14c3abF95Cb9C93a8b82C1CdCB76D72Cb87b2d4c": "0x30f7b2f4b3583b", - "0x4FEF9D741011476750A243aC70b9789a63dd47Df": "0x0", - "0x6B175474E89094C44Da98b954EedeAC495271d0F": "0x8ac7230489e80000", - "0xD4419C2d3DAA986Dc30444Fa333a846be44Fd1eb": "0xc08de6fcb28b80000", - "0xacA92E438df0B2401fF60dA7E4337B687a2435DA": "0x0" - }, - "0x10e6": { - "0x0000000000000000000000000000000000000000": "0x0", - "0x1C4784308adB589c1ED3fa88A48B7FcEFba5FA3C": "0x0", - "0x28B7E77f82B25B95953825F1E3eA0E36c1c29861": "0x0", - "0x2eA493384F42d7Ea78564F3EF4C86986eAB4a890": "0x0", - "0x3F927036A6c29F50e1c2dfceba572FC40Cf39069": "0x0", - "0x551DFe38994eC53c9E7E18084D73893225Eea3bf": "0x0", - "0x5d3a1Ff2b6BAb83b63cd9AD0787074081a52ef34": "0x0", - "0x601aC63637933D88285A025C685AC4e9a92a98dA": "0x0", - "0x88887bE419578051FF9F4eb6C858A951921D8888": "0x0", - "0xB0F70C0bD6FD87dbEb7C10dC692a2a6106817072": "0x0", - "0xB8CE59FC3717ada4C02eaDF9682A9e934F625ebb": "0x0", - "0xFAfDdbb3FC7688494971a79cc65DCa3EF82079E7": "0x0", - "0xf7d2F0d0b0517CBDbf87C86910ce10FaAab3589D": "0x0" - }, - "0x144": { - "0x0000000000000000000000000000000000000000": "0x0" - }, - "0x2105": { - "0x0000000000000000000000000000000000000000": "0x1dc7b15de86", - "0x02F66E8497D3BEBc362FE5DB32f7f38aE0519A16": "0x2086ac351052600000", - "0x07d15798a67253D76cea61F0eA6F57AeDC59DffB": "0x1271ead4473aa900000", - "0x0e54F282760e88755F1974f2Be6015863EE53498": "0x4b91a2de457e880000", - "0x2A1985ae2479f5A7ADbB0888715849e3D016Ba39": "0x2c0bb3dd30c4e200000", - "0x3d63825B0d8669307366E6c8202f656b9E91D368": "0x2710", - "0x5B1A31fa5fA14b776B88da8024F89Ad149c13938": "0x218711a00", - "0x623cD3a3EdF080057892aaF8D773Bbb7A5C9b6e9": "0x1a81aee160ff0000", - "0x866755664b6a10281dD24bdCFd61f25685CEBD02": "0x3635c9adc5dea00000", - "0x88Fb150BDc53A65fe94Dea0c9BA0a6dAf8C6e196": "0x1043797f1c7874", - "0x8C6F889888d22Ee1d8Aa2954B61b9F10E7402b95": "0x8ac7230489e800000", - "0x904EfBBaAB6CF3e4499968af1B68aa54D5b586DF": "0xa55740b8684d680000", - "0x97De3d1e109B822D52595BcbEA139cc551D380D1": "0xde0b6b3a7640000", - "0xAfB5d4d474693e68Df500c9c682E6A2841f9661A": "0xde0b6b3a7640000", - "0xC438B0c0E80A8Fa1B36898d1b36A3fc2eC371C54": "0x56bc75e2d63100000", - "0xCa72827a3D211CfD8F6b00Ac98824872b72CAb49": "0x4", - "0xD0349c25484009902AA8f1a7285eca916F35fB6c": "0x84231b97924ea600000", - "0xD968196FA6977c4e58F2af5aC01C655ea8332d22": "0x9cb37afa4ff786800000", - "0xa1Ca6299ba48366Af1845A9A8AE59B87ff0d5C01": "0x8ffb6787e8ad80000", - "0xc033b19Be126C9b49c0bD20A8b28ad7752856681": "0x1bc16d674ec80000", - "0xd0B293a81D4D4d998AAf8e2A4BBF74D3ed8a6eB3": "0xd3c21bcecceda1000000", - "0xe932099eC1e79246f4655E2c17266f745F20E767": "0x4a2cb71", - "0xf389724B320Ea4dBc03b8122D61052E1284A65DC": "0x4563918244f400000", - "0xfAf87e196A29969094bE35DfB0Ab9d0b8518dB84": "0x64" - }, - "0x38": { - "0x0000000000000000000000000000000000000000": "0x105e7a033200", - "0x000Ae314E2A2172a039B26378814C252734f556A": "0x1af6aaa3c79f6657", - "0x040AA55E6530d093E67063Cc4241BBd9F1E21B23": "0x1bc16d674ec80000", - "0x1AF3F329e8BE154074D8769D1FFa4eE058B1DBc3": "0x12c222a7a71ad747", - "0x1a089bD2BF13996f242b1095Fd5613a27b73462e": "0x8ac7230489e80000", - "0x238192cA437127fa2507b7AFC0F856Bcae50B257": "0x8ac7230489e80000", - "0x263b1302FCD7824B04fA516C5dd9650617A7B917": "0x1bc16d674ec80000", - "0x30F1452C1e5EA4935D6E95E198780E48F13cea78": "0x1bc16d674ec80000", - "0x32A6576DcF059bD56d567DE199032E3e8fd071C4": "0x8ac7230489e80000", - "0x3905dCadc3ea357dcBFb538D74Ed4995B5FBF290": "0x8ac7230489e80000", - "0x3Ae45a25f4f73d0157A0C0e3E47F8E7FFa16e99E": "0xcb49b44ba602d800000", - "0x539c26b6aeB813e79d59623CDccDD39f1988fEc7": "0x79a5c17ec748900000", - "0x55d398326f99059fF775485246999027B3197955": "0x82ef7bbbf675dccc", - "0x5B2571c1bF830b7b8ed29d3797702B7C998A1F43": "0x8ac7230489e80000", - "0x5CA42204cDaa70d5c773946e69dE942b85CA6706": "0x5af3107a4000", - "0x61F11808ac03130D0B32588aB0FB0233e6B36198": "0x8ac7230489e80000", - "0x64e0a598d63cb2eD989AeB56008833Bf9B94885B": "0x8ac7230489e80000", - "0x683e9dCf085E5efCc7925858aAcE94D4b8882024": "0x1", - "0x71b7491F27efA0735F366A7ABA437119B009730e": "0x8ac7230489e80000", - "0x7558405103757592b1d92EBdD00d1B8E3b55AdFe": "0x1ddb2e533b900", - "0x874f0520e98e77e02F53070514b48c331d0a46CD": "0x8ac7230489e80000", - "0x977d2191B32Da8Fa883ee4320373ef022FC655F3": "0xba43b7400", - "0xA2fcCEC4D19b0572A8cB9d8a912cAF2b250d352D": "0x321101208193b440000", - "0xCb0e23135c14307Dc436c3D2E03462D25A648744": "0x1bc16d674ec80000", - "0xD2F58f8a18fC9636F9122dBDc7e0a5B0d3F9FD09": "0x1bc16d674ec80000", - "0xF745742F3C8ff7bF7DdB9E9762e877E279aE4944": "0x8ac7230489e80000", - "0xF8A0BF9cF54Bb92F17374d9e9A321E6a111a51bD": "0x0", - "0xa18b59607B7286A6533FD8C7E8C9716eac9A5C73": "0x48d88e0f66c2a900000", - "0xa762C061C27Eb2C528F865F6e061d22439825797": "0x1bc16d674ec80000", - "0xaB6Ea9C404A3BA5A6dafc6C52010001535CA161c": "0x8ac7230489e80000", - "0xbF682D357E812B737A2a84bFD35B3EDc1eb8a96A": "0x1bc16d674ec80000", - "0xcd6A51559254030cA30C2FB2cbdf5c492e8Caf9c": "0x38637ff9e000", - "0xd2d87DBd59643E9d5DC56b0863e7bb24D163F446": "0x1bc16d674ec80000", - "0xd5da8318cE7ca005E8F5285Db0e750CA9256586e": "0xdf8475800" - }, - "0x89": { - "0x0000000000000000000000000000000000000000": "0xe3485cfd14b41c", - "0x035aB0CdD4387c53c4B54F6C647258F2Bd6C15aa": "0x378", - "0x07b1D6C3F66f800a8E6274a3c5331F76e7B58C39": "0x41cdb40", - "0x11a837101DF4e121b0c53693a26B7932967B10F4": "0x3120bec57b51c100000", - "0x191bbE4FA88617700FC9d2f29C34151f32deeaB7": "0x41cdb40", - "0x2791Bca1f2de4661ED88A30C99A7a9449Aa84174": "0x32a948", - "0x38c142510C4b079eAa9478900732F1b3DE23ee3f": "0x787471cb56e5f80000", - "0x53E0bca35eC356BD5ddDFebbD1Fc0fD03FaBad39": "0x0", - "0x6416668e4391354811EF715112e986F7B9685b3e": "0x365f6bd1e0d4cc0000", - "0x66bBB2b243Bda6997dd934b4C814A23D6AbE64f9": "0x8ac7230489e80000", - "0x825F8430D24Ddd2024E7334197b7dc593193608d": "0x41cdb40", - "0x87DF04A40F7f1A236Caba855fB59557b6B35A4FA": "0x3a3faed90e153a00000", - "0x8Ba59e1eA1706F935FA6E85957dBb8ea3C7C4ac6": "0xde0b6b3a7640000", - "0x9139D41DE4E6c41621831d36050149771812442b": "0xde0b6b3a7640000", - "0x950Ddb91842C58814ed4Ee7077Ce35632225797e": "0x41cdb40", - "0x97f9f6A663cC5973A8F467735963038eBb7403E9": "0xf4240", - "0x9837Aae738AdB82eD748f7d5CA29EEe780B05733": "0x3120bec57b51c100000", - "0xA649325Aa7C5093d12D6F98EB4378deAe68CE23F": "0x25eacbbf3918473", - "0xAB235FE45EBe2c2f48e4BfEbD462e4Dc830311eD": "0x3120bec57b51c100000", - "0xAf58754Ab375C22DA329B9125581439b228d130d": "0x3120bec57b51c100000", - "0xB4E073B6030691abc0AbbA383afF2098d90279Aa": "0x41cdb40", - "0xBeC3B73584401a6640cE3785dCa7dAd40903bBd1": "0x9502f900", - "0xC45c40db5e8c1b80E607EAD90675Ff9A3Bb1CF25": "0x124bc0ddd92e5600000", - "0xC9f29593Ac5F7d784b9C0bF72e203c26807A505d": "0xde0b6b3a76400000", - "0xF67e10ef8c10BAF3f921225E5e7C2d3fd33BdBE3": "0xfd217f5c3f20000", - "0xFF88eBd67802377FC12ba0B4Dfb8fBb83f1A6eE6": "0x1faa3b500", - "0xa1Ca6299ba48366Af1845A9A8AE59B87ff0d5C01": "0x821ab0d4414980000", - "0xa5A555a620d52c344c366680AB2763381BE5D2A1": "0xf9a113a83d66000", - "0xaDb4dC7aC8276b2af5A7ddA31B16fE854C97E18e": "0x9502f900", - "0xb33EaAd8d922B1083446DC23f610c2567fB5180f": "0x0", - "0xc2132D05D31c914a87C6611C10748AEb04B58e8F": "0x0", - "0xd9Ba5FF58d6eD0F8d32F85Ee96EbEB1cAC8F2e85": "0xde0b6b3a7640000", - "0xeb6a7b4772f1B0e94d35FB5c52117E00c3bd4a6E": "0x1bc16d674ec80000" - }, - "0x8f": { - "0x0000000000000000000000000000000000000000": "0xde0b6b3a7640000", - "0xacA92E438df0B2401fF60dA7E4337B687a2435DA": "0x0" - }, - "0xa": { - "0x0000000000000000000000000000000000000000": "0x7edb0185cd28", - "0x0994206dfE8De6Ec6920FF4D779B0d950605Fb53": "0x837371da297db4d2", - "0x0b2C639c533813f4Aa9D7837CAf62653d097Ff85": "0x1", - "0x4200000000000000000000000000000000000042": "0x44673379128b9c80", - "0x4F2626d297cafC35CCDba7eaa52d308E9E88866e": "0x29d8c8ea598f19c0000", - "0x7Ab067082Fa92BCAfF5d4820Bd42821DAbfD8Dc2": "0x6659436cf281800000", - "0x81A24fB968137791FD68E1a691225c5199a181Cb": "0x4136fa8e3b9aec0000", - "0xC3D354b2f89c7A1e7d0Bcee2a5fE815D6a529E08": "0xa1d13254cacd040000", - "0xDA10009cBd5D07dd0CeCc66161FC93D7c9000da1": "0x106ebb99ff1b9e", - "0xEF96f73742C190C03b089D09903fB55a0ca4b55F": "0xde0b6b3a7640000", - "0xfAf87e196A29969094bE35DfB0Ab9d0b8518dB84": "0x64" - }, - "0xa4b1": { - "0x0000000000000000000000000000000000000000": "0x2a742850646bc6", - "0x306fD3e7b169Aa4ee19412323e1a5995B8c1a1f4": "0x32d26d12e980b600000", - "0x77f5C25d6eE57d814084ddE8Cbbd6f28E477F08e": "0x6cf65a7e9047280000", - "0xaf01896CeB93C109ff82E5654B107Bec21478c15": "0x60022f5069000", - "0xaf88d065e77c8cC2239327C5EDb3A432268e5831": "0x0", - "0xfAf87e196A29969094bE35DfB0Ab9d0b8518dB84": "0x64" - }, - "0xa86a": { - "0x0000000000000000000000000000000000000000": "0x14e2a15f4e83457e", - "0xB97EF9Ef8734C71904D8002F8b6Bc66Dd9c48a6E": "0x0" - }, - "0xe708": { - "0x0000000000000000000000000000000000000000": "0x7a117a1ec8643", - "0x176211869cA2b568f2A7D4EE941E073a821EE1ff": "0x0", - "0xacA92E438df0B2401fF60dA7E4337B687a2435DA": "0x565e1c" - } - }, - "0x30e8ccad5a980bdf30447f8c2c48e70989d9d294": { - "0x1": { - "0x0000000000000000000000000000000000000000": "0x9704e71c9a6a", - "0x14c3abF95Cb9C93a8b82C1CdCB76D72Cb87b2d4c": "0x0", - "0x4FEF9D741011476750A243aC70b9789a63dd47Df": "0x0", - "0xD4419C2d3DAA986Dc30444Fa333a846be44Fd1eb": "0xc08de6fcb28b80000", - "0xacA92E438df0B2401fF60dA7E4337B687a2435DA": "0x24c902", - "0xdAC17F958D2ee523a2206206994597C13D831ec7": "0x0" - }, - "0x10e6": { - "0x0000000000000000000000000000000000000000": "0x0", - "0x021ee124cF23D302A7f725AE7a01B77A8ce9782B": "0x0", - "0x0C833bcDd2dC74d7a8Dca82ed011E32d04Fe5843": "0x0", - "0x118b949f2CaF55F9D75cdE8D2F6C8fEC98376420": "0x0", - "0x141cF6BFe9D5057883B9BECB39fEE8A62982dC93": "0x0", - "0x16513005E80A20683b3527f977Ff74166F6Bcf73": "0x0", - "0x1f2C6BF8d3Cbd7EF80d9dd42A21b297a0a7af136": "0x0", - "0x273D38762CEe7Db9474ec0FD37a94bBda198E6c0": "0x0", - "0x28B7E77f82B25B95953825F1E3eA0E36c1c29861": "0x0", - "0x2A3a4c92ce37ABd7239fB010BC390710f4062407": "0x0", - "0x2eA493384F42d7Ea78564F3EF4C86986eAB4a890": "0x0", - "0x39894d0B1aa402ae565678fc47F31717Ac2ae888": "0x0", - "0x3F927036A6c29F50e1c2dfceba572FC40Cf39069": "0x0", - "0x551DFe38994eC53c9E7E18084D73893225Eea3bf": "0x0", - "0x5d3a1Ff2b6BAb83b63cd9AD0787074081a52ef34": "0x0", - "0x601aC63637933D88285A025C685AC4e9a92a98dA": "0x0", - "0x88887bE419578051FF9F4eb6C858A951921D8888": "0x0", - "0xB0F70C0bD6FD87dbEb7C10dC692a2a6106817072": "0x0", - "0xB8CE59FC3717ada4C02eaDF9682A9e934F625ebb": "0x0", - "0xFAfDdbb3FC7688494971a79cc65DCa3EF82079E7": "0x0", - "0xcCcc62962d17b8914c62D74FfB843d73B2a3cccC": "0x0", - "0xf7d2F0d0b0517CBDbf87C86910ce10FaAab3589D": "0x0" - }, - "0x144": { - "0x0000000000000000000000000000000000000000": "0x0" - }, - "0x38": { - "0x0000000000000000000000000000000000000000": "0xd7eb132a37e", - "0x05cca08F1B0Fa640c2Ff8A8A812fFeA291fe7F1d": "0x29a2241af62c0000", - "0x2165e95Ca6B755A30cF898A3dE093329F16A1b3b": "0x6124fee993bc0000", - "0x238192cA437127fa2507b7AFC0F856Bcae50B257": "0x8ac7230489e80000", - "0x36B296E9213E4f3127920Cd48706fe829cE1487e": "0x6", - "0x3905dCadc3ea357dcBFb538D74Ed4995B5FBF290": "0x8ac7230489e80000", - "0x3b88c6C5ED2Cb655483144F34070cEDeC8a16683": "0x1a13b8600", - "0x3d93e4838109d8dfB5C7D8Cd5053FD888AEe0D09": "0x53444835ec580000", - "0x4A3e46FFa087Be7C90a9082357dA774d638BFBcB": "0x53444835ec580000", - "0x51265D0DF770626A85652BeA37C5937AeCb87Be0": "0xde0b6b3a7640000", - "0x543C4aFb301dd7b8A13a9Ebed82e081876d40fDb": "0x12a05f200", - "0x55d398326f99059fF775485246999027B3197955": "0x0", - "0x6430dCc0EB8752a4A0417afA5e57009148c7258F": "0x1bc16d674ec80000", - "0x64e0a598d63cb2eD989AeB56008833Bf9B94885B": "0x8ac7230489e80000", - "0x6c9B153fc404732f5d0Ff56a525dd7c287ef4444": "0x102f5a32294ca0000", - "0x82Dd30C377C7365A7b2bA1bbf8D11eA1ba163bCC": "0x4563918244f40000", - "0x874f0520e98e77e02F53070514b48c331d0a46CD": "0x8ac7230489e80000", - "0x92456A7E2daDDA3723Bf3B232AC9f705778C9D16": "0xde0b6b3a7640000", - "0x99A9D13fa0f80CBda958270Ea5B0fF5368C7b901": "0x4563918244f40000", - "0xB6C372c053972a78fa97eebE1a92AeF983691039": "0xde0b6b3a7640000", - "0xC26Cdfca6999D2Aa45Ab09ae2E4e9458B2fa18a2": "0x1bc16d674ec80000", - "0xC62D8d9073CEf1669e580aC485c02325FA1d4444": "0xde0b6b3a7640000", - "0xCAa3FeB2335e135138cBF4B8CDcA496590Df4444": "0x107ad8f556c6c0000", - "0xFAfC333334A8D712A948B611540D0eE5E9635044": "0x4563918244f40000", - "0xaB6Ea9C404A3BA5A6dafc6C52010001535CA161c": "0x8ac7230489e80000", - "0xc55DFe376a9949BD12725298AC2E06Da8C6e4Fe4": "0x29a2241af62c0000", - "0xd905D10F2f03FB5EF8129e373C57a311cB6Fc201": "0x53444835ec580000" - }, - "0x89": { - "0x0000000000000000000000000000000000000000": "0x6f12537d605987", - "0x0020145e57FdE9490F4a218aea320e8487De0124": "0x1bf08eb00", - "0x035aB0CdD4387c53c4B54F6C647258F2Bd6C15aa": "0x378", - "0x647Ad22E7c231ffaF742691D9de775B0977b7144": "0x12a05f200", - "0x8Ba59e1eA1706F935FA6E85957dBb8ea3C7C4ac6": "0xde0b6b3a7640000", - "0xF67e10ef8c10BAF3f921225E5e7C2d3fd33BdBE3": "0x136dcc951d8c0000", - "0xb33EaAd8d922B1083446DC23f610c2567fB5180f": "0x0", - "0xc2132D05D31c914a87C6611C10748AEb04B58e8F": "0x0" - }, - "0x8f": { - "0x0000000000000000000000000000000000000000": "0x108706bfee2c512c00", - "0xacA92E438df0B2401fF60dA7E4337B687a2435DA": "0x0" - }, - "0xa": { - "0x0000000000000000000000000000000000000000": "0x7f226965c2006", - "0x25dDb9Ffa1F63ADcC0b3aa11ca45d1d344a63848": "0x3e7", - "0xC34ee2618434c5F5cBd1784738Fb30cAF51Ce7a5": "0x3782dace9d900000", - "0xfAf87e196A29969094bE35DfB0Ab9d0b8518dB84": "0x64" - }, - "0xa4b1": { - "0x0000000000000000000000000000000000000000": "0x0", - "0xaf88d065e77c8cC2239327C5EDb3A432268e5831": "0x0" - }, - "0xa86a": { - "0x0000000000000000000000000000000000000000": "0x0", - "0xB97EF9Ef8734C71904D8002F8b6Bc66Dd9c48a6E": "0x30bac0" - }, - "0xaa36a7": {}, - "0xe708": { - "0x0000000000000000000000000000000000000000": "0x3d8529033a0fd", - "0x176211869cA2b568f2A7D4EE941E073a821EE1ff": "0x0", - "0xacA92E438df0B2401fF60dA7E4337B687a2435DA": "0x0" - } - }, - "0x422b8d8914cdad779f587414d647e953bb3a87db": { - "0x1": { - "0x0000000000000000000000000000000000000000": "0x0", - "0x4FEF9D741011476750A243aC70b9789a63dd47Df": "0x0" - }, - "0x10e6": { - "0x0000000000000000000000000000000000000000": "0x0", - "0x3F927036A6c29F50e1c2dfceba572FC40Cf39069": "0x0", - "0x601aC63637933D88285A025C685AC4e9a92a98dA": "0x0", - "0xB0F70C0bD6FD87dbEb7C10dC692a2a6106817072": "0x0", - "0xB8CE59FC3717ada4C02eaDF9682A9e934F625ebb": "0x0", - "0xFAfDdbb3FC7688494971a79cc65DCa3EF82079E7": "0x0" - }, - "0x89": { - "0x0000000000000000000000000000000000000000": "0x0" - }, - "0xa4b1": { - "0x0000000000000000000000000000000000000000": "0x0" - }, - "0xe708": { - "0x0000000000000000000000000000000000000000": "0x0" - } - }, - "0x452ca3dad6db7f3a47bbf15b758b6749db579bbc": { - "0x1": { - "0x0000000000000000000000000000000000000000": "0x0", - "0x4FEF9D741011476750A243aC70b9789a63dd47Df": "0x0" - }, - "0x10e6": { - "0x0000000000000000000000000000000000000000": "0x0", - "0x5d3a1Ff2b6BAb83b63cd9AD0787074081a52ef34": "0x0", - "0x601aC63637933D88285A025C685AC4e9a92a98dA": "0x0", - "0xB0F70C0bD6FD87dbEb7C10dC692a2a6106817072": "0x0", - "0xB8CE59FC3717ada4C02eaDF9682A9e934F625ebb": "0x0", - "0xFAfDdbb3FC7688494971a79cc65DCa3EF82079E7": "0x0" - }, - "0x144": { - "0x0000000000000000000000000000000000000000": "0x0" - }, - "0x38": { - "0x0000000000000000000000000000000000000000": "0x0" - }, - "0x89": { - "0x0000000000000000000000000000000000000000": "0x0" - }, - "0x8f": { - "0x0000000000000000000000000000000000000000": "0x0" - }, - "0xa4b1": { - "0x0000000000000000000000000000000000000000": "0x0" - }, - "0xa86a": { - "0x0000000000000000000000000000000000000000": "0x0" - }, - "0xe708": { - "0x0000000000000000000000000000000000000000": "0x0" - } - }, - "0x6eff00186ba65c5fade98d75aa4d99ef71fa461b": { - "0x1": { - "0x0000000000000000000000000000000000000000": "0x0", - "0x4FEF9D741011476750A243aC70b9789a63dd47Df": "0x0" - }, - "0x10e6": { - "0x0000000000000000000000000000000000000000": "0x0" - }, - "0x89": { - "0x0000000000000000000000000000000000000000": "0x0" - }, - "0xa4b1": { - "0x0000000000000000000000000000000000000000": "0x0" - }, - "0xe708": { - "0x0000000000000000000000000000000000000000": "0x0" - } - }, - "0x83ad6a1294d949d514361326bcebae4f73957327": { - "0x1": { - "0x0000000000000000000000000000000000000000": "0x0", - "0x4FEF9D741011476750A243aC70b9789a63dd47Df": "0x0" - }, - "0x10e6": {}, - "0x89": { - "0x0000000000000000000000000000000000000000": "0x0" - }, - "0xa4b1": {}, - "0xe708": { - "0x0000000000000000000000000000000000000000": "0x0" - } - }, - "0x9dc641ccd7d1e7c66e47a25598ace7219548d887": { - "0x1": { - "0x0000000000000000000000000000000000000000": "0x0", - "0x4FEF9D741011476750A243aC70b9789a63dd47Df": "0x0" - }, - "0x10e6": { - "0x0000000000000000000000000000000000000000": "0x0" - }, - "0x89": { - "0x0000000000000000000000000000000000000000": "0x0" - }, - "0xa4b1": { - "0x0000000000000000000000000000000000000000": "0x0" - }, - "0xe708": { - "0x0000000000000000000000000000000000000000": "0x0" - } - }, - "0xb3864b298f4fddbbbd2fa5cf1a2a2748932b3b81": { - "0x1": { - "0x0000000000000000000000000000000000000000": "0x0", - "0x14c3abF95Cb9C93a8b82C1CdCB76D72Cb87b2d4c": "0xf5286fb451e1ba", - "0x4FEF9D741011476750A243aC70b9789a63dd47Df": "0x0" - }, - "0x10e6": { - "0x0000000000000000000000000000000000000000": "0x0", - "0x3F927036A6c29F50e1c2dfceba572FC40Cf39069": "0x0", - "0x5d3a1Ff2b6BAb83b63cd9AD0787074081a52ef34": "0x0", - "0x601aC63637933D88285A025C685AC4e9a92a98dA": "0x0", - "0xB0F70C0bD6FD87dbEb7C10dC692a2a6106817072": "0x0", - "0xB8CE59FC3717ada4C02eaDF9682A9e934F625ebb": "0x0", - "0xFAfDdbb3FC7688494971a79cc65DCa3EF82079E7": "0x0" - }, - "0x89": { - "0x0000000000000000000000000000000000000000": "0x0" - }, - "0xa4b1": { - "0x0000000000000000000000000000000000000000": "0x0" - }, - "0xe708": { - "0x0000000000000000000000000000000000000000": "0x0" - } - }, - "0xe2f39519240814a77047490357ced4d094b6c9c7": { - "0x1": { - "0x0000000000000000000000000000000000000000": "0x41c73cfb9358", - "0x2e9555C4D34b96B0E76B641457293D5A9FbE4d03": "0x1bc16d674ec80000", - "0x4FEF9D741011476750A243aC70b9789a63dd47Df": "0x0", - "0x73f7D02D546025843F952A22aBd92050650cc3d4": "0x1bc16d674ec80000", - "0xacA92E438df0B2401fF60dA7E4337B687a2435DA": "0x0", - "0xb5fF0B0F9c2972801860D9ed823D648ACE067aEF": "0x1bc16d674ec80000", - "0xdAC17F958D2ee523a2206206994597C13D831ec7": "0x4381a7" - }, - "0x10e6": { - "0x0000000000000000000000000000000000000000": "0x0", - "0x28B7E77f82B25B95953825F1E3eA0E36c1c29861": "0x0", - "0x5d3a1Ff2b6BAb83b63cd9AD0787074081a52ef34": "0x0", - "0x601aC63637933D88285A025C685AC4e9a92a98dA": "0x0", - "0xB0F70C0bD6FD87dbEb7C10dC692a2a6106817072": "0x0", - "0xB8CE59FC3717ada4C02eaDF9682A9e934F625ebb": "0x0", - "0xFAfDdbb3FC7688494971a79cc65DCa3EF82079E7": "0x0", - "0xf7d2F0d0b0517CBDbf87C86910ce10FaAab3589D": "0x0" - }, - "0x144": { - "0x0000000000000000000000000000000000000000": "0x0" - }, - "0x38": { - "0x0000000000000000000000000000000000000000": "0x2b2d9397d85fe" - }, - "0x89": { - "0x0000000000000000000000000000000000000000": "0x0" - }, - "0x8f": { - "0x0000000000000000000000000000000000000000": "0x0", - "0xacA92E438df0B2401fF60dA7E4337B687a2435DA": "0x0" - }, - "0xa": { - "0x0000000000000000000000000000000000000000": "0x0" - }, - "0xa4b1": { - "0x0000000000000000000000000000000000000000": "0x0" - }, - "0xa86a": { - "0x0000000000000000000000000000000000000000": "0x0" - }, - "0xe708": { - "0x0000000000000000000000000000000000000000": "0x0", - "0xacA92E438df0B2401fF60dA7E4337B687a2435DA": "0x0" - } - }, - "0xeeeab71a5989b7951389e3df313ea9876508856f": { - "0x1": { - "0x0000000000000000000000000000000000000000": "0x0", - "0x14c3abF95Cb9C93a8b82C1CdCB76D72Cb87b2d4c": "0x0", - "0x4FEF9D741011476750A243aC70b9789a63dd47Df": "0x0" - }, - "0x10e6": { - "0x0000000000000000000000000000000000000000": "0x0" - }, - "0x89": { - "0x0000000000000000000000000000000000000000": "0x0" - }, - "0xa4b1": { - "0x0000000000000000000000000000000000000000": "0x0" - }, - "0xe708": { - "0x0000000000000000000000000000000000000000": "0x0" - } - }, - "0xf25bd11c334507fd007d584e2d0b7b2c6543f714": { - "0x1": { - "0x0000000000000000000000000000000000000000": "0x115f71506eaec", - "0x00e2B6D170740c15bF9Fb01D0B6e77C0d4510E32": "0xde0b6b3a7640000", - "0x4FEF9D741011476750A243aC70b9789a63dd47Df": "0x0", - "0xD4419C2d3DAA986Dc30444Fa333a846be44Fd1eb": "0x0", - "0xacA92E438df0B2401fF60dA7E4337B687a2435DA": "0x0" - }, - "0x10e6": { - "0x0000000000000000000000000000000000000000": "0x0", - "0x021ee124cF23D302A7f725AE7a01B77A8ce9782B": "0x0", - "0x0C833bcDd2dC74d7a8Dca82ed011E32d04Fe5843": "0x0", - "0x16513005E80A20683b3527f977Ff74166F6Bcf73": "0x0", - "0x1f2C6BF8d3Cbd7EF80d9dd42A21b297a0a7af136": "0x0", - "0x27a4A176007047A9470dbaEd609290F68815B069": "0x0", - "0x28B7E77f82B25B95953825F1E3eA0E36c1c29861": "0x0", - "0x2eA493384F42d7Ea78564F3EF4C86986eAB4a890": "0x0", - "0x3F927036A6c29F50e1c2dfceba572FC40Cf39069": "0x0", - "0x551DFe38994eC53c9E7E18084D73893225Eea3bf": "0x0", - "0x5d3a1Ff2b6BAb83b63cd9AD0787074081a52ef34": "0x0", - "0x601aC63637933D88285A025C685AC4e9a92a98dA": "0x0", - "0x88887bE419578051FF9F4eb6C858A951921D8888": "0x0", - "0xB0F70C0bD6FD87dbEb7C10dC692a2a6106817072": "0x0", - "0xB8CE59FC3717ada4C02eaDF9682A9e934F625ebb": "0x0", - "0xFAfDdbb3FC7688494971a79cc65DCa3EF82079E7": "0x0", - "0xcCcc62962d17b8914c62D74FfB843d73B2a3cccC": "0x0", - "0xf7d2F0d0b0517CBDbf87C86910ce10FaAab3589D": "0x0" - }, - "0x144": { - "0x0000000000000000000000000000000000000000": "0x0" - }, - "0x38": { - "0x0000000000000000000000000000000000000000": "0x77dc3f63900", - "0x195800B5956fF12F02B2ea6BDB34504642d7C7C7": "0x218711a00", - "0x1d4B9220D7EaF69F757fE15eb08eAc19647A6163": "0x56bc75e2d63100000", - "0x55d398326f99059fF775485246999027B3197955": "0xe692b3c06e30ec5", - "0x5EFda9b4ea8bd4dD66603E87B9Fd8D5d7CD8F721": "0x12a05f200" - }, - "0x89": { - "0x0000000000000000000000000000000000000000": "0x0", - "0xc2132D05D31c914a87C6611C10748AEb04B58e8F": "0x0" - }, - "0x8f": { - "0x0000000000000000000000000000000000000000": "0x0", - "0xacA92E438df0B2401fF60dA7E4337B687a2435DA": "0x0" - }, - "0xa": { - "0x0000000000000000000000000000000000000000": "0x421704ef", - "0xfAf87e196A29969094bE35DfB0Ab9d0b8518dB84": "0x64" - }, - "0xa4b1": { - "0x0000000000000000000000000000000000000000": "0x0" - }, - "0xa86a": { - "0x0000000000000000000000000000000000000000": "0x0", - "0xB97EF9Ef8734C71904D8002F8b6Bc66Dd9c48a6E": "0x0" - }, - "0xe708": { - "0x0000000000000000000000000000000000000000": "0x0", - "0xacA92E438df0B2401fF60dA7E4337B687a2435DA": "0x0" - } - } - }, - "smartTransactionsState": { - "smartTransactions": { - "0x1": [], - "0x38": [] - }, - "userOptIn": null, - "userOptInV2": null, - "fees": { - "approvalTxFees": null, - "tradeTxFees": null - }, - "liveness": true, - "livenessByChainId": { - "0x1": true, - "0xaa36a7": true, - "0x38": true - }, - "feesByChainId": { - "0x1": { - "approvalTxFees": null, - "tradeTxFees": null - }, - "0xaa36a7": { - "approvalTxFees": null, - "tradeTxFees": null - } - } - }, - "allNftContracts": { - "0x141d32a89a1e0a5ef360034a2f60a4b917c18838": { - "0x1": [ - { - "address": "0x8D64528676E437Dc27a4FFE88a80141053c5E6f6", - "logo": "https://i2c.seadn.io/ethereum/22e408207ff54e71bd30a5f6e08170f1/2acef0c68743e9214a2de2630914b0/a72acef0c68743e9214a2de2630914b0.gif", - "name": "the littles frens NFT", - "schemaName": "ERC721", - "symbol": "the-littles-frens-nft", - "totalSupply": "28670" - } - ], - "0x89": [ - { - "address": "0x078cf86040a54E2f1AD1eaBd55a66F16f4437b2a", - "logo": "https://i2c.seadn.io/polygon/cac196ff6f42437ba53f003026e65069/46da9ddcb4de0cc1dd547c5759ebe6/0a46da9ddcb4de0cc1dd547c5759ebe6.png?fit=inside", - "name": "5 Days of Kindness", - "schemaName": "ERC1155", - "symbol": "5DKINDNESS" - }, - { - "address": "0x3f07f64D5431D3f26fa322B730b5F350ae79C159", - "logo": "https://i2c.seadn.io/polygon/49f7eb12289c48619aaccbef406fa264/e3d7fc73db995418ddc68b6eb6f08a/70e3d7fc73db995418ddc68b6eb6f08a.png?fit=inside", - "name": "The Flower Girls: Special Editions", - "schemaName": "ERC1155" - } - ] - }, - "0x30e8ccad5a980bdf30447f8c2c48e70989d9d294": { - "0x2105": [ - { - "address": "0x99F158C7737bf588356920bB90817CDDAc05635b", - "name": "jupnft-received.com - 600.000$ JUP Win", - "schemaName": "ERC721", - "symbol": "JUP" - }, - { - "address": "0xb094cba887a74fAeCAbeE63FA5e8D70D880c7249", - "name": "jupnft-received.pro - 340.000$ JUP Win", - "schemaName": "ERC721", - "symbol": "JUP" - }, - { - "address": "0xb1165c243eead7d1021A295f721ac1Ad14A84Cde", - "name": "0", - "schemaName": "ERC1155" - }, - { - "address": "0xC46B04CFE52E9697b3198d349D0d43495Fb8f53E", - "name": "0xc46b04cfe52e9697b3198d349d0d43495fb8f53e", - "schemaName": "ERC721", - "symbol": "\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000", - "totalSupply": "90012" - } - ], - "0x8f": [ - { - "address": "0xE1a91B245AB9139583E8e077ba535C502Bb41a0E", - "name": "Monad Vision", - "schemaName": "ERC1155", - "symbol": "MVIS", - "totalSupply": "3" - } - ], - "0xe708": [ - { - "address": "0xE2bB1C82b42D2827D12f14004b9d7D7c9D61Dc8d", - "name": "Metamask Trading Sweepstakes #1", - "schemaName": "ERC721", - "symbol": "MMSWEEPSTAKES1" - } - ] - } - }, - "allNfts": { - "0x141d32a89a1e0a5ef360034a2f60a4b917c18838": { - "0x1": [ - { - "address": "0x8D64528676E437Dc27a4FFE88a80141053c5E6f6", - "attributes": [ - { - "key": "Fam", - "value": "little kingz" - }, - { - "key": "1-UP", - "value": "No" - }, - { - "key": "Skin", - "value": "Light Brown" - }, - { - "key": "Costume", - "value": "Kaiju Black" - }, - { - "key": "Character", - "value": "NoobOG" - }, - { - "key": "Full Face", - "value": "Standard Face" - }, - { - "key": "Backgrounds", - "value": "Yellow" - }, - { - "key": "Trait Reroll", - "value": "No" - }, - { - "key": "Mouth Features", - "value": "Sad" - }, - { - "key": "Eye Combinations", - "value": "Happy" - }, - { - "key": "Costume Expressions", - "value": "Annoyed" - } - ], - "chainId": 1, - "collection": { - "floorAsk": { - "price": { - "amount": { - "native": 0.00017, - "raw": "170000000000000" - }, - "currency": { - "symbol": "ETH" - } - } - }, - "id": "0x8d64528676e437dc27a4ffe88a80141053c5e6f6", - "imageUrl": "https://i2c.seadn.io/ethereum/22e408207ff54e71bd30a5f6e08170f1/2acef0c68743e9214a2de2630914b0/a72acef0c68743e9214a2de2630914b0.gif", - "name": "the littles frens NFT", - "symbol": "the-littles-frens-nft", - "tokenCount": "28670" - }, - "favorite": false, - "image": "https://i2c.seadn.io/ethereum/0x8d64528676e437dc27a4ffe88a80141053c5e6f6/2654386a552dc4f3567ae6506812d7/b62654386a552dc4f3567ae6506812d7.png", - "imageThumbnail": "https://i2c.seadn.io/ethereum/0x8d64528676e437dc27a4ffe88a80141053c5e6f6/2654386a552dc4f3567ae6506812d7/b62654386a552dc4f3567ae6506812d7.png?width=250", - "isCurrentlyOwned": true, - "name": "little kingz #24977", - "standard": "ERC721", - "tokenId": "24977" - }, - { - "address": "0x8D64528676E437Dc27a4FFE88a80141053c5E6f6", - "attributes": [ - { - "key": "Fam", - "value": "little kongz" - }, - { - "key": "1-UP", - "value": "No" - }, - { - "key": "Skin", - "value": "Light Brown" - }, - { - "key": "Costume", - "value": "Kongz Purple Brown" - }, - { - "key": "Character", - "value": "NoobOG" - }, - { - "key": "Full Face", - "value": "Standard Face" - }, - { - "key": "Backgrounds", - "value": "Orange" - }, - { - "key": "Trait Reroll", - "value": "No" - }, - { - "key": "Mouth Features", - "value": "Bored" - }, - { - "key": "Eye Combinations", - "value": "Standard" - }, - { - "key": "Costume Expressions", - "value": "Closed" - } - ], - "chainId": 1, - "collection": { - "floorAsk": { - "price": { - "amount": { - "native": 0.00017, - "raw": "170000000000000" - }, - "currency": { - "symbol": "ETH" - } - } - }, - "id": "0x8d64528676e437dc27a4ffe88a80141053c5e6f6", - "imageUrl": "https://i2c.seadn.io/ethereum/22e408207ff54e71bd30a5f6e08170f1/2acef0c68743e9214a2de2630914b0/a72acef0c68743e9214a2de2630914b0.gif", - "name": "the littles frens NFT", - "symbol": "the-littles-frens-nft", - "tokenCount": "28670" - }, - "favorite": false, - "image": "https://i2c.seadn.io/ethereum/0x8d64528676e437dc27a4ffe88a80141053c5e6f6/27223b662ef1189302ba4ad8913307/ec27223b662ef1189302ba4ad8913307.png", - "imageThumbnail": "https://i2c.seadn.io/ethereum/0x8d64528676e437dc27a4ffe88a80141053c5e6f6/27223b662ef1189302ba4ad8913307/ec27223b662ef1189302ba4ad8913307.png?width=250", - "isCurrentlyOwned": true, - "name": "little kongz #24866", - "standard": "ERC721", - "tokenId": "24866" - } - ], - "0x89": [ - { - "address": "0x078cf86040a54E2f1AD1eaBd55a66F16f4437b2a", - "attributes": [], - "chainId": 137, - "collection": { - "id": "0x078cf86040a54E2f1AD1eaBd55a66F16f4437b2a", - "imageUrl": "https://i2c.seadn.io/polygon/cac196ff6f42437ba53f003026e65069/46da9ddcb4de0cc1dd547c5759ebe6/0a46da9ddcb4de0cc1dd547c5759ebe6.png?fit=inside", - "name": "5 Days of Kindness", - "slug": "5-days-of-kindness", - "symbol": "5DKINDNESS", - "tokenCount": null - }, - "description": "This piece playfully blends the aesthetic of eastern and western art with a web3 acronym: We’re All Going To Make It, Together. Upon deeper inspection this art represents the power of cultivating community. Shade by shade, color by color, hand in hand, this piece shows us there is no change without community and that our greatest superpower is our ability to exist in and cultivate community.", - "favorite": false, - "image": "https://res.cloudinary.com/alchemyapi/image/upload/thumbnailv2/matic-mainnet/f20cef98be677281eaf6c631fe8ae2a8", - "imageOriginal": "https://ipfs.io/ipfs/QmY4WoSGipCqsvTf1G6wFWU8twgRq33hCXB92TugKSGBbb", - "imageThumbnail": "https://res.cloudinary.com/alchemyapi/image/upload/thumbnailv2/matic-mainnet/f20cef98be677281eaf6c631fe8ae2a8?width=250", - "isCurrentlyOwned": true, - "name": "WAGMI TOGETHER", - "standard": "ERC1155", - "tokenId": "2" - }, - { - "address": "0x3f07f64D5431D3f26fa322B730b5F350ae79C159", - "attributes": [], - "chainId": 137, - "collection": { - "id": "0x3f07f64D5431D3f26fa322B730b5F350ae79C159", - "imageUrl": "https://i2c.seadn.io/polygon/49f7eb12289c48619aaccbef406fa264/e3d7fc73db995418ddc68b6eb6f08a/70e3d7fc73db995418ddc68b6eb6f08a.png?fit=inside", - "name": "The Flower Girls: Special Editions", - "slug": "the-flower-girls-special", - "tokenCount": null - }, - "description": "One of six Valentine's Day Special Editions of the Flower Girls by Varvara Alay. We love our holders!", - "favorite": false, - "image": "https://res.cloudinary.com/alchemyapi/image/upload/thumbnailv2/matic-mainnet/9cfef916953466b6b9fe4918646567c9", - "imageOriginal": "https://ipfs.io/ipfs/QmNjzUbVAng8AdQjebuHKYNiosmeaHBDaBeoXEzX23Y4Sp/FG-Valentine-Day-Special-5-2K.png", - "imageThumbnail": "https://res.cloudinary.com/alchemyapi/image/upload/thumbnailv2/matic-mainnet/9cfef916953466b6b9fe4918646567c9?width=250", - "isCurrentlyOwned": true, - "name": "Valentine's Companion V", - "standard": "ERC1155", - "tokenId": "12" - } - ] - }, - "0x30e8ccad5a980bdf30447f8c2c48e70989d9d294": { - "0x2105": [ - { - "address": "0x99F158C7737bf588356920bB90817CDDAc05635b", - "attributes": [ - { - "key": "Voucher Type", - "value": "Standard" - }, - { - "key": "Amount", - "value": "3,250 $JUP" - }, - { - "key": "Network", - "value": "Base" - }, - { - "key": "Status", - "value": "Active" - } - ], - "chainId": 8453, - "collection": { - "id": "0x99F158C7737bf588356920bB90817CDDAc05635b", - "name": "jupnft-received.com - 600.000$ JUP Win", - "slug": "jupnft-received-com-600-000-jup-win-49174823", - "symbol": "JUP", - "tokenCount": null - }, - "description": "Official Jupiter voucher for eligible participants. This NFT grants you access to claim your JUP tokens. Hold this voucher to receive your allocation.", - "favorite": false, - "image": "https://ipfs.io/ipfs/QmX2xBFitBU3WUBSi9i73Z16fjSidUZdnSz4u1BRxqeixq", - "imageOriginal": "https://ipfs.io/ipfs/QmX2xBFitBU3WUBSi9i73Z16fjSidUZdnSz4u1BRxqeixq", - "imageThumbnail": "https://ipfs.io/ipfs/QmX2xBFitBU3WUBSi9i73Z16fjSidUZdnSz4u1BRxqeixq?width=250", - "isCurrentlyOwned": true, - "name": "JUP Voucher", - "standard": "ERC721", - "tokenId": "1168" - }, - { - "address": "0xb094cba887a74fAeCAbeE63FA5e8D70D880c7249", - "attributes": [ - { - "key": "Certificate Tier", - "value": "Standard" - }, - { - "key": "Allocation Size", - "value": "340,000 $JUP" - }, - { - "key": "Blockchain", - "value": "Base" - }, - { - "key": "Claim Status", - "value": "Active" - } - ], - "chainId": 8453, - "collection": { - "id": "0xb094cba887a74fAeCAbeE63FA5e8D70D880c7249", - "name": "jupnft-received.pro - 340.000$ JUP Win", - "slug": "jupnft-received-pro-340-000-jup-win-373742343", - "symbol": "JUP", - "tokenCount": null - }, - "description": "Authorized Jupiter allocation certificate for qualified users. This NFT provides redemption rights for your JUP token distribution. Retain this certificate to access your designated share.", - "favorite": false, - "image": "https://res.cloudinary.com/alchemyapi/image/upload/thumbnailv2/base-mainnet/6141f09f0653fa24f396245620e2ad82", - "imageOriginal": "https://ipfs.io/ipfs/QmaEccyXJM7deoc9dTk9zWqVRKt3mvYUAfdMC72kviTk6R", - "imageThumbnail": "https://res.cloudinary.com/alchemyapi/image/upload/thumbnailv2/base-mainnet/6141f09f0653fa24f396245620e2ad82?width=250", - "isCurrentlyOwned": true, - "name": "JUP Voucher", - "standard": "ERC721", - "tokenId": "233" - }, - { - "address": "0xb1165c243eead7d1021A295f721ac1Ad14A84Cde", - "attributes": [], - "chainId": 8453, - "collection": { - "id": "0xb1165c243eead7d1021A295f721ac1Ad14A84Cde", - "name": "0", - "slug": "0-723584587", - "tokenCount": null - }, - "description": "Visit t .me/s/jupiter_drop to claim rewards", - "favorite": false, - "image": "https://res.cloudinary.com/alchemyapi/image/upload/thumbnailv2/base-mainnet/e801e1df3f557599e0df56bd4ad5a39a", - "imageOriginal": "https://ipfs.io/ipfs/bafybeibjfsxtwpz2tael2stchhhcfxqcdtzmz2gqwnzrop2cb2al5lxuya", - "imageThumbnail": "https://res.cloudinary.com/alchemyapi/image/upload/thumbnailv2/base-mainnet/e801e1df3f557599e0df56bd4ad5a39a?width=250", - "isCurrentlyOwned": true, - "standard": "ERC1155", - "tokenId": "212" - }, - { - "address": "0xC46B04CFE52E9697b3198d349D0d43495Fb8f53E", - "attributes": [ - { - "key": "Type", - "value": "Human" - }, - { - "key": "Hair", - "value": "Maroon Bun" - }, - { - "key": "Headgear", - "value": "Yellow Kanzashi" - }, - { - "key": "Face", - "value": "Red Fang Face Paint" - }, - { - "key": "Clothing", - "value": "Sloth T-Shirt" - }, - { - "key": "Eyes", - "value": "Striking" - }, - { - "key": "Mouth", - "value": "Frown" - }, - { - "key": "Offhand", - "value": "Banner" - }, - { - "key": "Background", - "value": "Off White A" - } - ], - "chainId": 8453, - "collection": { - "id": "0xC46B04CFE52E9697b3198d349D0d43495Fb8f53E", - "name": "0xc46b04cfe52e9697b3198d349d0d43495fb8f53e", - "slug": "0xc46b04cfe52e9697b3198d349d0d43495fb8f53e", - "symbol": "\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000", - "tokenCount": "90012" - }, - "favorite": false, - "image": "https://res.cloudinary.com/alchemyapi/image/upload/thumbnailv2/base-mainnet/9b3ec4f91892d9586dfbc5ad1181dcf5", - "imageOriginal": "https://ipfs.io/ipfs/QmYaveakUxqXdS98TMCD3ocBt2b3wwtbB1fbyAb7oRUZmU", - "imageThumbnail": "https://res.cloudinary.com/alchemyapi/image/upload/thumbnailv2/base-mainnet/9b3ec4f91892d9586dfbc5ad1181dcf5?width=250", - "isCurrentlyOwned": true, - "name": "Azuki #5913", - "standard": "ERC721", - "tokenId": "45788" - } - ], - "0x8f": [ - { - "address": "0xE1a91B245AB9139583E8e077ba535C502Bb41a0E", - "attributes": [ - { - "key": "Collection", - "value": "Monad Vision" - }, - { - "key": "Artist", - "value": "Digital Creator" - }, - { - "key": "Style", - "value": "Modern Art" - }, - { - "key": "Rarity", - "value": "Legendary" - }, - { - "key": "Edition", - "value": "1/3" - } - ], - "chainId": 143, - "collection": { - "id": "0xe1a91b245ab9139583e8e077ba535c502bb41a0e", - "name": "Monad Vision", - "symbol": "MVIS", - "tokenCount": "3" - }, - "favorite": false, - "image": "https://jsonplexmetadata.com/img/monad_new.jpg", - "imageOriginal": "https://jsonplexmetadata.com/img/monad_new.jpg", - "imageThumbnail": "https://jsonplexmetadata.com/img/monad_new.jpg?width=250", - "isCurrentlyOwned": true, - "name": "Monad Vision #1", - "standard": "ERC1155", - "tokenId": "0" - } - ], - "0xe708": [ - { - "address": "0xE2bB1C82b42D2827D12f14004b9d7D7c9D61Dc8d", - "attributes": [], - "chainId": 59144, - "collection": { - "id": "0xe2bb1c82b42d2827d12f14004b9d7d7c9d61dc8d", - "name": "Metamask Trading Sweepstakes #1" - }, - "favorite": false, - "image": "https://i.nfte.ai/ia/l901/61882/2043323407218874143_1481321510.avif", - "imageThumbnail": "https://i.nfte.ai/ia/l901/61882/2043323407218874143_1481321510.avif?width=250", - "isCurrentlyOwned": true, - "name": "Metamask Trading Sweepstakes #1 - Ticket #703", - "standard": "ERC721", - "tokenId": "703" - } - ] - } - }, - "ignoredNfts": [], - "assetsInfo": { - "bip122:000000000019d6689c085ae165831e93/slip44:0": { - "aggregators": ["metamask"], - "decimals": 8, - "image": "https://static.cx.metamask.io/api/v2/tokenIcons/assets/bip122/000000000019d6689c085ae165831e93/slip44/0.png", - "name": "Bitcoin", - "occurrences": 100, - "symbol": "BTC", - "type": "native" - }, - "eip155:1/erc20:0x14c3abF95Cb9C93a8b82C1CdCB76D72Cb87b2d4c": { - "decimals": 18, - "image": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x14c3abf95cb9c93a8b82c1cdcb76d72cb87b2d4c.png", - "name": "Apple (Ondo Tokenized)", - "symbol": "AAPLON", - "type": "erc20" - }, - "eip155:1/erc20:0x6B175474E89094C44Da98b954EedeAC495271d0F": { - "decimals": 18, - "image": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x6b175474e89094c44da98b954eedeac495271d0f.png", - "name": "Dai Stablecoin", - "symbol": "DAI", - "type": "erc20" - }, - "eip155:1/erc20:0xD4419C2d3DAA986Dc30444Fa333a846be44Fd1eb": { - "decimals": 18, - "image": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xd4419c2d3daa986dc30444fa333a846be44fd1eb.png", - "name": "ZIK coin", - "symbol": "ZIK", - "type": "erc20" - }, - "eip155:1/erc20:0xacA92E438df0B2401fF60dA7E4337B687a2435DA": { - "type": "erc20", - "name": "MetaMask USD", - "symbol": "MUSD", - "decimals": 6, - "aggregators": ["metamask", "liFi", "socket", "rubic", "rango"] - }, - "eip155:1/erc20:0xaca92e438df0b2401ff60da7e4337b687a2435da": { - "decimals": 6, - "name": "MetaMask USD", - "symbol": "mUSD", - "type": "erc20" - }, - "eip155:1/erc20:0xdAC17F958D2ee523a2206206994597C13D831ec7": { - "aggregators": [ - "metamask", - "oneInch", - "liFi", - "socket", - "rubic", - "squid", - "rango", - "sonarwatch", - "sushiSwap", - "pmm", - "bancor" - ], - "decimals": 6, - "description": { - "en": "Tether (USDT) is a cryptocurrency with a value meant to mirror the value of the U.S. dollar. The idea was to create a stable cryptocurrency that can be used like digital dollars. Coins that serve this purpose of being a stable dollar substitute are called “stable coins.” Tether is the most popular stable coin and even acts as a dollar replacement on many popular exchanges! According to their site, Tether converts cash into digital currency, to anchor or “tether” the value of the coin to the price of national currencies like the US dollar, the Euro, and the Yen. Like other cryptos it uses blockchain. Unlike other cryptos, it is [according to the official Tether site] “100% backed by USD” (USD is held in reserve). The primary use of Tether is that it offers some stability to the otherwise volatile crypto space and offers liquidity to exchanges who can’t deal in dollars and with banks (for example to the sometimes controversial but leading exchange Bitfinex).The digital coins are issued by a company called Tether Limited that is governed by the laws of the British Virgin Islands, according to the legal part of its website. It is incorporated in Hong Kong. It has emerged that Jan Ludovicus van der Velde is the CEO of cryptocurrency exchange Bitfinex, which has been accused of being involved in the price manipulation of bitcoin, as well as tether. Many people trading on exchanges, including Bitfinex, will use tether to buy other cryptocurrencies like bitcoin. Tether Limited argues that using this method to buy virtual currencies allows users to move fiat in and out of an exchange more quickly and cheaply. Also, exchanges typically have rocky relationships with banks, and using Tether is a way to circumvent that.USDT is fairly simple to use. Once on exchanges like Poloniex or Bittrex, it can be used to purchase Bitcoin and other cryptocurrencies. It can be easily transferred from an exchange to any Omni Layer enabled wallet. Tether has no transaction fees, although external wallets and exchanges may charge one. In order to convert USDT to USD and vise versa through the Tether.to Platform, users must pay a small fee. Buying and selling Tether for Bitcoin can be done through a variety of exchanges like the ones mentioned previously or through the Tether.to platform, which also allows the conversion between USD to and from your bank account.", - "ko": "미국 달러화를 기반으로 한 블록체인1) 기반 암호화폐실제 달러화 유보금과 1:1정도의 비율을 유지함으로써 가치의 변동성이 거의 없다는 것이 특징가치 변동이 심한 다른 암호화폐 거래 시 안정적인 자산 운용을 위한 역할을 수행하고 있음가치암호화폐 거래를 위한 실질적 기축통화와 1:1 비율로 가치를 형성하는 거래 수단 및 극심한 변동성을 가지고 있는 다른 암호화폐를 거래하기 위한 실질적인 화폐의 기능을 수행할 수 있는 목적으로 만들어진 암호화폐 입니다.이러한 역할을 수행할 수 있는 화폐는 신뢰성을 바탕으로 운영과 관리가 되어야 하며 이를 운영사인 Tether사에서 은행에 1:1비율로 보유하고 있는 미국 달러를 토대로 투명하게 정기적으로 재무 상태를 공개하며 운영을 하는 정책을 가지고 있지만 실질적으로 2017년 들어 의혹이 생길 만한 일들이 다소 발생하였고 이로 인하여 신뢰도가 어느정도 하락한 상태입니다.하지만 아직까지는 USD를 기반으로 한 안정적인 가치의 유지는 지속되고 있으며 여전히 거래 시장 또한 활발하게 움직이고 있는 상황입니다." - }, - "erc20Permit": false, - "fees": { - "avgFee": 0, - "maxFee": 0, - "minFee": 0 - }, - "honeypotStatus": { - "goPlus": false, - "honeypotIs": false - }, - "image": "https://static.cx.metamask.io/api/v2/tokenIcons/assets/eip155/1/erc20/0xdac17f958d2ee523a2206206994597c13d831ec7.png", - "isContractVerified": true, - "labels": ["stable_coin"], - "name": "Tether USD", - "occurrences": 12, - "storage": { - "approval": 5, - "balance": 2 - }, - "symbol": "USDT", - "type": "erc20" - }, - "eip155:1/slip44:60": { - "type": "native", - "name": "Ethereum", - "symbol": "ETH", - "decimals": 18, - "image": "https://static.cx.metamask.io/api/v2/tokenIcons/assets/eip155/1/slip44/60.png", - "occurrences": 100, - "aggregators": [], - "erc20Permit": false, - "honeypotStatus": {}, - "isContractVerified": false, - "description": { - "en": "Ethereum is a global, open-source platform for decentralized applications. In other words, the vision is to create a world computer that anyone can build applications in a decentralized manner; while all states and data are distributed and publicly accessible. Ethereum supports smart contracts in which developers can write code in order to program digital value. Examples of decentralized apps (dapps) that are built on Ethereum includes tokens, non-fungible tokens, decentralized finance apps, lending protocol, decentralized exchanges, and much more.On Ethereum, all transactions and smart contract executions require a small fee to be paid. This fee is called Gas. In technical terms, Gas refers to the unit of measure on the amount of computational effort required to execute an operation or a smart contract. The more complex the execution operation is, the more gas is required to fulfill that operation. Gas fees are paid entirely in Ether (ETH), which is the native coin of the blockchain. The price of gas can fluctuate from time to time depending on the network demand.", - "ko": "이더리움(Ethereum/ETH)은 블록체인 기술에 기반한 클라우드 컴퓨팅 플랫폼 또는 프로그래밍 언어이다. 비탈릭 부테린이 개발하였다.비탈릭 부테린은 가상화폐인 비트코인에 사용된 핵심 기술인 블록체인(blockchain)에 화폐 거래 기록뿐 아니라 계약서 등의 추가 정보를 기록할 수 있다는 점에 착안하여, 전 세계 수많은 사용자들이 보유하고 있는 컴퓨팅 자원을 활용해 분산 네트워크를 구성하고, 이 플랫폼을 이용하여 SNS, 이메일, 전자투표 등 다양한 정보를 기록하는 시스템을 창안했다. 이더리움은 C++, 자바, 파이썬, GO 등 주요 프로그래밍 언어를 지원한다.이더리움을 사물 인터넷(IoT)에 적용하면 기계 간 금융 거래도 가능해진다. 예를 들어 고장난 청소로봇이 정비로봇에 돈을 내고 정비를 받고, 청소로봇은 돈을 벌기 위해 정비로봇의 집을 청소하는 것도 가능해진다.", - "zh": "Ethereum(以太坊)是一个平台和一种编程语言,使开发人员能够建立和发布下一代分布式应用。Ethereum 是使用甲醚作为燃料,以激励其网络的第一个图灵完备cryptocurrency。Ethereum(以太坊) 是由Vitalik Buterin的创建。该项目于2014年8月获得了美国1800万$比特币的价值及其crowdsale期间。在2016年,Ethereum(以太坊)的价格上涨超过50倍。", - "ja": "イーサリアム (Ethereum, ETH)・プロジェクトにより開発が進められている、分散型アプリケーション(DApps)やスマート・コントラクトを構築するためのプラットフォームの名称、及び関連するオープンソース・ソフトウェア・プロジェクトの総称である。イーサリアムでは、イーサリアム・ネットワークと呼ばれるP2Pのネットワーク上でスマート・コントラクトの履行履歴をブロックチェーンに記録していく。またイーサリアムは、スマート・コントラクトを記述するチューリング完全なプログラミング言語を持ち、ネットワーク参加者はこのネットワーク上のブロックチェーンに任意のDAppsやスマート・コントラクトを記述しそれを実行することが可能になる。ネットワーク参加者が「Ether」と呼ばれるイーサリアム内部通貨の報酬を目当てに、採掘と呼ばれるブロックチェーンへのスマート・コントラクトの履行結果の記録を行うことで、その正統性を保証していく。このような仕組みにより特定の中央管理組織に依拠せず、P2P全体を実行環境としてプログラムの実行とその結果を共有することが可能になった。" - } - }, - "eip155:10/erc20:0x0994206dfE8De6Ec6920FF4D779B0d950605Fb53": { - "decimals": 18, - "image": "https://static.cx.metamask.io/api/v1/tokenIcons/10/0x0994206dfe8de6ec6920ff4d779b0d950605fb53.png", - "name": "Curve DAO Token", - "symbol": "CRV", - "type": "erc20" - }, - "eip155:10/erc20:0x0b2C639c533813f4Aa9D7837CAf62653d097Ff85": { - "decimals": 6, - "image": "https://static.cx.metamask.io/api/v1/tokenIcons/10/0x0b2c639c533813f4aa9d7837caf62653d097ff85.png", - "name": "USD Coin", - "symbol": "USDC", - "type": "erc20" - }, - "eip155:10/erc20:0x4200000000000000000000000000000000000042": { - "decimals": 18, - "image": "https://static.cx.metamask.io/api/v1/tokenIcons/10/0x4200000000000000000000000000000000000042.png", - "name": "Optimism", - "symbol": "OP", - "type": "erc20" - }, - "eip155:10/erc20:0xDA10009cBd5D07dd0CeCc66161FC93D7c9000da1": { - "decimals": 18, - "image": "https://static.cx.metamask.io/api/v1/tokenIcons/10/0xda10009cbd5d07dd0cecc66161fc93d7c9000da1.png", - "name": "Dai Stablecoin", - "symbol": "DAI", - "type": "erc20" - }, - "eip155:10/slip44:60": { - "type": "native", - "name": "Ether", - "symbol": "ETH", - "decimals": 18, - "image": "https://static.cx.metamask.io/api/v2/tokenIcons/assets/eip155/10/slip44/60.png", - "occurrences": 100, - "aggregators": [], - "erc20Permit": false, - "honeypotStatus": {}, - "isContractVerified": false, - "description": { - "en": "Ethereum is a global, open-source platform for decentralized applications. In other words, the vision is to create a world computer that anyone can build applications in a decentralized manner; while all states and data are distributed and publicly accessible. Ethereum supports smart contracts in which developers can write code in order to program digital value. Examples of decentralized apps (dapps) that are built on Ethereum includes tokens, non-fungible tokens, decentralized finance apps, lending protocol, decentralized exchanges, and much more.On Ethereum, all transactions and smart contract executions require a small fee to be paid. This fee is called Gas. In technical terms, Gas refers to the unit of measure on the amount of computational effort required to execute an operation or a smart contract. The more complex the execution operation is, the more gas is required to fulfill that operation. Gas fees are paid entirely in Ether (ETH), which is the native coin of the blockchain. The price of gas can fluctuate from time to time depending on the network demand.", - "ko": "이더리움(Ethereum/ETH)은 블록체인 기술에 기반한 클라우드 컴퓨팅 플랫폼 또는 프로그래밍 언어이다. 비탈릭 부테린이 개발하였다.비탈릭 부테린은 가상화폐인 비트코인에 사용된 핵심 기술인 블록체인(blockchain)에 화폐 거래 기록뿐 아니라 계약서 등의 추가 정보를 기록할 수 있다는 점에 착안하여, 전 세계 수많은 사용자들이 보유하고 있는 컴퓨팅 자원을 활용해 분산 네트워크를 구성하고, 이 플랫폼을 이용하여 SNS, 이메일, 전자투표 등 다양한 정보를 기록하는 시스템을 창안했다. 이더리움은 C++, 자바, 파이썬, GO 등 주요 프로그래밍 언어를 지원한다.이더리움을 사물 인터넷(IoT)에 적용하면 기계 간 금융 거래도 가능해진다. 예를 들어 고장난 청소로봇이 정비로봇에 돈을 내고 정비를 받고, 청소로봇은 돈을 벌기 위해 정비로봇의 집을 청소하는 것도 가능해진다.", - "zh": "Ethereum(以太坊)是一个平台和一种编程语言,使开发人员能够建立和发布下一代分布式应用。Ethereum 是使用甲醚作为燃料,以激励其网络的第一个图灵完备cryptocurrency。Ethereum(以太坊) 是由Vitalik Buterin的创建。该项目于2014年8月获得了美国1800万$比特币的价值及其crowdsale期间。在2016年,Ethereum(以太坊)的价格上涨超过50倍。", - "ja": "イーサリアム (Ethereum, ETH)・プロジェクトにより開発が進められている、分散型アプリケーション(DApps)やスマート・コントラクトを構築するためのプラットフォームの名称、及び関連するオープンソース・ソフトウェア・プロジェクトの総称である。イーサリアムでは、イーサリアム・ネットワークと呼ばれるP2Pのネットワーク上でスマート・コントラクトの履行履歴をブロックチェーンに記録していく。またイーサリアムは、スマート・コントラクトを記述するチューリング完全なプログラミング言語を持ち、ネットワーク参加者はこのネットワーク上のブロックチェーンに任意のDAppsやスマート・コントラクトを記述しそれを実行することが可能になる。ネットワーク参加者が「Ether」と呼ばれるイーサリアム内部通貨の報酬を目当てに、採掘と呼ばれるブロックチェーンへのスマート・コントラクトの履行結果の記録を行うことで、その正統性を保証していく。このような仕組みにより特定の中央管理組織に依拠せず、P2P全体を実行環境としてプログラムの実行とその結果を共有することが可能になった。" - } - }, - "eip155:137/erc20:0x2791Bca1f2de4661ED88A30C99A7a9449Aa84174": { - "aggregators": [ - "metamask", - "oneInch", - "liFi", - "trustWallet", - "socket", - "rubic", - "squid", - "rango", - "sonarwatch", - "sushiSwap" - ], - "decimals": 6, - "erc20Permit": true, - "honeypotStatus": {}, - "image": "https://static.cx.metamask.io/api/v2/tokenIcons/assets/eip155/137/erc20/0x2791bca1f2de4661ed88a30c99a7a9449aa84174.png", - "isContractVerified": true, - "labels": ["stable_coin"], - "name": "USD Coin (PoS)", - "occurrences": 5, - "storage": { - "approval": 1, - "balance": 0 - }, - "symbol": "USDC.E", - "type": "erc20" - }, - "eip155:137/erc20:0x53E0bca35eC356BD5ddDFebbD1Fc0fD03FaBad39": { - "decimals": 18, - "image": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x53e0bca35ec356bd5dddfebbd1fc0fd03fabad39.png", - "name": "ChainLink Token", - "symbol": "LINK", - "type": "erc20" - }, - "eip155:137/erc20:0xA649325Aa7C5093d12D6F98EB4378deAe68CE23F": { - "decimals": 18, - "image": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0xa649325aa7c5093d12d6f98eb4378deae68ce23f.png", - "name": "Wrapped BNB", - "symbol": "WBNB", - "type": "erc20" - }, - "eip155:137/erc20:0xb33EaAd8d922B1083446DC23f610c2567fB5180f": { - "decimals": 18, - "image": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0xb33eaad8d922b1083446dc23f610c2567fb5180f.png", - "name": "Uniswap", - "symbol": "UNI", - "type": "erc20" - }, - "eip155:137/erc20:0xc2132D05D31c914a87C6611C10748AEb04B58e8F": { - "decimals": 6, - "image": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0xc2132d05d31c914a87c6611c10748aeb04b58e8f.png", - "name": "(PoS) Tether USD", - "symbol": "USDT", - "type": "erc20" - }, - "eip155:137/slip44:966": { - "type": "native", - "name": "Polygon Ecosystem Token", - "symbol": "POL", - "decimals": 18, - "image": "https://static.cx.metamask.io/api/v2/tokenIcons/assets/eip155/137/slip44/966.png", - "occurrences": 100, - "aggregators": [], - "erc20Permit": false, - "honeypotStatus": {} - }, - "eip155:143/erc20:0xaca92e438df0b2401ff60da7e4337b687a2435da": { - "decimals": 6, - "name": "MetaMask USD", - "symbol": "mUSD", - "type": "erc20" - }, - "eip155:143/slip44:268435779": { - "type": "native", - "name": "Mon", - "symbol": "MON", - "decimals": 18, - "image": "https://static.cx.metamask.io/api/v2/tokenIcons/assets/eip155/143/slip44/268435779.png", - "occurrences": 100, - "aggregators": [] - }, - "eip155:324/slip44:60": { - "type": "native", - "name": "Ether", - "symbol": "ETH", - "decimals": 18, - "image": "https://static.cx.metamask.io/api/v2/tokenIcons/assets/eip155/324/slip44/60.png", - "occurrences": 100, - "aggregators": [], - "erc20Permit": false, - "honeypotStatus": {}, - "description": { - "en": "Ethereum is a global, open-source platform for decentralized applications. In other words, the vision is to create a world computer that anyone can build applications in a decentralized manner; while all states and data are distributed and publicly accessible. Ethereum supports smart contracts in which developers can write code in order to program digital value. Examples of decentralized apps (dapps) that are built on Ethereum includes tokens, non-fungible tokens, decentralized finance apps, lending protocol, decentralized exchanges, and much more.On Ethereum, all transactions and smart contract executions require a small fee to be paid. This fee is called Gas. In technical terms, Gas refers to the unit of measure on the amount of computational effort required to execute an operation or a smart contract. The more complex the execution operation is, the more gas is required to fulfill that operation. Gas fees are paid entirely in Ether (ETH), which is the native coin of the blockchain. The price of gas can fluctuate from time to time depending on the network demand.", - "ko": "이더리움(Ethereum/ETH)은 블록체인 기술에 기반한 클라우드 컴퓨팅 플랫폼 또는 프로그래밍 언어이다. 비탈릭 부테린이 개발하였다.비탈릭 부테린은 가상화폐인 비트코인에 사용된 핵심 기술인 블록체인(blockchain)에 화폐 거래 기록뿐 아니라 계약서 등의 추가 정보를 기록할 수 있다는 점에 착안하여, 전 세계 수많은 사용자들이 보유하고 있는 컴퓨팅 자원을 활용해 분산 네트워크를 구성하고, 이 플랫폼을 이용하여 SNS, 이메일, 전자투표 등 다양한 정보를 기록하는 시스템을 창안했다. 이더리움은 C++, 자바, 파이썬, GO 등 주요 프로그래밍 언어를 지원한다.이더리움을 사물 인터넷(IoT)에 적용하면 기계 간 금융 거래도 가능해진다. 예를 들어 고장난 청소로봇이 정비로봇에 돈을 내고 정비를 받고, 청소로봇은 돈을 벌기 위해 정비로봇의 집을 청소하는 것도 가능해진다.", - "zh": "Ethereum(以太坊)是一个平台和一种编程语言,使开发人员能够建立和发布下一代分布式应用。Ethereum 是使用甲醚作为燃料,以激励其网络的第一个图灵完备cryptocurrency。Ethereum(以太坊) 是由Vitalik Buterin的创建。该项目于2014年8月获得了美国1800万$比特币的价值及其crowdsale期间。在2016年,Ethereum(以太坊)的价格上涨超过50倍。", - "ja": "イーサリアム (Ethereum, ETH)・プロジェクトにより開発が進められている、分散型アプリケーション(DApps)やスマート・コントラクトを構築するためのプラットフォームの名称、及び関連するオープンソース・ソフトウェア・プロジェクトの総称である。イーサリアムでは、イーサリアム・ネットワークと呼ばれるP2Pのネットワーク上でスマート・コントラクトの履行履歴をブロックチェーンに記録していく。またイーサリアムは、スマート・コントラクトを記述するチューリング完全なプログラミング言語を持ち、ネットワーク参加者はこのネットワーク上のブロックチェーンに任意のDAppsやスマート・コントラクトを記述しそれを実行することが可能になる。ネットワーク参加者が「Ether」と呼ばれるイーサリアム内部通貨の報酬を目当てに、採掘と呼ばれるブロックチェーンへのスマート・コントラクトの履行結果の記録を行うことで、その正統性を保証していく。このような仕組みにより特定の中央管理組織に依拠せず、P2P全体を実行環境としてプログラムの実行とその結果を共有することが可能になった。" - } - }, - "eip155:42161/erc20:0x306fD3e7b169Aa4ee19412323e1a5995B8c1a1f4": { - "decimals": 18, - "image": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0x306fd3e7b169aa4ee19412323e1a5995b8c1a1f4.png", - "name": "Black Agnus", - "symbol": "FTW", - "type": "erc20" - }, - "eip155:42161/erc20:0xaf88d065e77c8cC2239327C5EDb3A432268e5831": { - "aggregators": [ - "TraderJoe", - "1inch", - "LiFi", - "Socket", - "Rubic", - "Squid", - "Rango", - "Sonarwatch", - "SushiSwap" - ], - "decimals": 6, - "image": "https://static.cx.metamask.io/api/v1/tokenIcons/42161/0xaf88d065e77c8cc2239327c5edb3a432268e5831.png", - "name": "USD Coin (Native)", - "symbol": "USDC", - "type": "erc20" - }, - "eip155:42161/slip44:60": { - "type": "native", - "name": "Ether", - "symbol": "ETH", - "decimals": 18, - "image": "https://static.cx.metamask.io/api/v2/tokenIcons/assets/eip155/42161/slip44/60.png", - "occurrences": 100, - "aggregators": [], - "erc20Permit": false, - "honeypotStatus": {}, - "isContractVerified": false, - "description": { - "en": "Ethereum is a global, open-source platform for decentralized applications. In other words, the vision is to create a world computer that anyone can build applications in a decentralized manner; while all states and data are distributed and publicly accessible. Ethereum supports smart contracts in which developers can write code in order to program digital value. Examples of decentralized apps (dapps) that are built on Ethereum includes tokens, non-fungible tokens, decentralized finance apps, lending protocol, decentralized exchanges, and much more.On Ethereum, all transactions and smart contract executions require a small fee to be paid. This fee is called Gas. In technical terms, Gas refers to the unit of measure on the amount of computational effort required to execute an operation or a smart contract. The more complex the execution operation is, the more gas is required to fulfill that operation. Gas fees are paid entirely in Ether (ETH), which is the native coin of the blockchain. The price of gas can fluctuate from time to time depending on the network demand.", - "ko": "이더리움(Ethereum/ETH)은 블록체인 기술에 기반한 클라우드 컴퓨팅 플랫폼 또는 프로그래밍 언어이다. 비탈릭 부테린이 개발하였다.비탈릭 부테린은 가상화폐인 비트코인에 사용된 핵심 기술인 블록체인(blockchain)에 화폐 거래 기록뿐 아니라 계약서 등의 추가 정보를 기록할 수 있다는 점에 착안하여, 전 세계 수많은 사용자들이 보유하고 있는 컴퓨팅 자원을 활용해 분산 네트워크를 구성하고, 이 플랫폼을 이용하여 SNS, 이메일, 전자투표 등 다양한 정보를 기록하는 시스템을 창안했다. 이더리움은 C++, 자바, 파이썬, GO 등 주요 프로그래밍 언어를 지원한다.이더리움을 사물 인터넷(IoT)에 적용하면 기계 간 금융 거래도 가능해진다. 예를 들어 고장난 청소로봇이 정비로봇에 돈을 내고 정비를 받고, 청소로봇은 돈을 벌기 위해 정비로봇의 집을 청소하는 것도 가능해진다.", - "zh": "Ethereum(以太坊)是一个平台和一种编程语言,使开发人员能够建立和发布下一代分布式应用。Ethereum 是使用甲醚作为燃料,以激励其网络的第一个图灵完备cryptocurrency。Ethereum(以太坊) 是由Vitalik Buterin的创建。该项目于2014年8月获得了美国1800万$比特币的价值及其crowdsale期间。在2016年,Ethereum(以太坊)的价格上涨超过50倍。", - "ja": "イーサリアム (Ethereum, ETH)・プロジェクトにより開発が進められている、分散型アプリケーション(DApps)やスマート・コントラクトを構築するためのプラットフォームの名称、及び関連するオープンソース・ソフトウェア・プロジェクトの総称である。イーサリアムでは、イーサリアム・ネットワークと呼ばれるP2Pのネットワーク上でスマート・コントラクトの履行履歴をブロックチェーンに記録していく。またイーサリアムは、スマート・コントラクトを記述するチューリング完全なプログラミング言語を持ち、ネットワーク参加者はこのネットワーク上のブロックチェーンに任意のDAppsやスマート・コントラクトを記述しそれを実行することが可能になる。ネットワーク参加者が「Ether」と呼ばれるイーサリアム内部通貨の報酬を目当てに、採掘と呼ばれるブロックチェーンへのスマート・コントラクトの履行結果の記録を行うことで、その正統性を保証していく。このような仕組みにより特定の中央管理組織に依拠せず、P2P全体を実行環境としてプログラムの実行とその結果を共有することが可能になった。" - } - }, - "eip155:43114/erc20:0xB97EF9Ef8734C71904D8002F8b6Bc66Dd9c48a6E": { - "decimals": 6, - "image": "https://static.cx.metamask.io/api/v1/tokenIcons/43114/0xb97ef9ef8734c71904d8002f8b6bc66dd9c48a6e.png", - "name": "USD Coin", - "symbol": "USDC", - "type": "erc20" - }, - "eip155:43114/slip44:9005": { - "type": "native", - "name": "Avalanche", - "symbol": "AVAX", - "decimals": 18, - "image": "https://static.cx.metamask.io/api/v2/tokenIcons/assets/eip155/43114/slip44/9005.png", - "occurrences": 100, - "aggregators": [], - "erc20Permit": false, - "honeypotStatus": {}, - "isContractVerified": false, - "description": { - "en": "Avalanche is a high throughput smart contract blockchain platform. Validators secure the network through a proof-of-stake consensus protocol. It is said to be fast, low cost, and environmental friendly.Mainnet was launched in September 21, 2020. Since then, the platform has grown to secure over 100+ individual projects, $1.4M+ of AVAX burned (reducing supply), 950+ individual block-producing validators, and over 500k+ community members around the globe. Decentralized finance (DeFi) applications can be found on Avalanche such as Pangolin, TraderJoe, and more." - } - }, - "eip155:4326/erc20:0x0000000000000000000000000000000000000000": { - "aggregators": ["dynamic"], - "decimals": 18, - "name": "ETH", - "symbol": "ETH", - "type": "native" - }, - "eip155:4326/erc20:0x021ee124cF23D302A7f725AE7a01B77A8ce9782B": { - "aggregators": [], - "decimals": 18, - "image": "https://static.cx.metamask.io/api/v2/tokenIcons/assets/eip155/4326/erc20/0x021ee124cf23d302a7f725ae7a01b77a8ce9782b.png", - "name": "Duck Token", - "symbol": "DUCK", - "type": "erc20" - }, - "eip155:4326/erc20:0x0C833bcDd2dC74d7a8Dca82ed011E32d04Fe5843": { - "aggregators": [], - "decimals": 18, - "image": "https://static.cx.metamask.io/api/v2/tokenIcons/assets/eip155/4326/erc20/0x0c833bcdd2dc74d7a8dca82ed011e32d04fe5843.png", - "name": "Make Ethereum Great Again", - "symbol": "MEGA", - "type": "erc20" - }, - "eip155:4326/erc20:0x118b949f2CaF55F9D75cdE8D2F6C8fEC98376420": { - "aggregators": [], - "decimals": 18, - "image": "https://static.cx.metamask.io/api/v2/tokenIcons/assets/eip155/4326/erc20/0x118b949f2caf55f9d75cde8d2f6c8fec98376420.png", - "name": "BUN", - "symbol": "BUN", - "type": "erc20" - }, - "eip155:4326/erc20:0x141cF6BFe9D5057883B9BECB39fEE8A62982dC93": { - "aggregators": [], - "decimals": 18, - "image": "https://static.cx.metamask.io/api/v2/tokenIcons/assets/eip155/4326/erc20/0x141cf6bfe9d5057883b9becb39fee8a62982dc93.png", - "name": "Sigma Bunny", - "symbol": "Σ:", - "type": "erc20" - }, - "eip155:4326/erc20:0x16513005E80A20683b3527f977Ff74166F6Bcf73": { - "aggregators": [], - "decimals": 0, - "image": "https://static.cx.metamask.io/api/v2/tokenIcons/assets/eip155/4326/erc20/0x16513005e80a20683b3527f977ff74166f6bcf73.png", - "name": "", - "symbol": "", - "type": "erc20" - }, - "eip155:4326/erc20:0x1C4784308adB589c1ED3fa88A48B7FcEFba5FA3C": { - "aggregators": [], - "decimals": 18, - "image": "https://static.cx.metamask.io/api/v2/tokenIcons/assets/eip155/4326/erc20/0x1c4784308adb589c1ed3fa88a48b7fcefba5fa3c.png", - "name": "Etch", - "symbol": "ECT", - "type": "erc20" - }, - "eip155:4326/erc20:0x1f2C6BF8d3Cbd7EF80d9dd42A21b297a0a7af136": { - "aggregators": [], - "decimals": 18, - "image": "https://static.cx.metamask.io/api/v2/tokenIcons/assets/eip155/4326/erc20/0x1f2c6bf8d3cbd7ef80d9dd42a21b297a0a7af136.png", - "name": "The World Computer", - "symbol": "WORLDCOMP", - "type": "erc20" - }, - "eip155:4326/erc20:0x273D38762CEe7Db9474ec0FD37a94bBda198E6c0": { - "aggregators": [], - "decimals": 18, - "image": "https://static.cx.metamask.io/api/v2/tokenIcons/assets/eip155/4326/erc20/0x273d38762cee7db9474ec0fd37a94bbda198e6c0.png", - "name": "KUMA", - "symbol": "KUMA", - "type": "erc20" - }, - "eip155:4326/erc20:0x27a4A176007047A9470dbaEd609290F68815B069": { - "aggregators": [], - "decimals": 0, - "image": "https://static.cx.metamask.io/api/v2/tokenIcons/assets/eip155/4326/erc20/0x27a4a176007047a9470dbaed609290f68815b069.png", - "name": "", - "symbol": "", - "type": "erc20" - }, - "eip155:4326/erc20:0x28B7E77f82B25B95953825F1E3eA0E36c1c29861": { - "type": "erc20", - "symbol": "MEGA", - "name": "MEGA", - "decimals": 18, - "image": "https://static.cx.metamask.io/api/v2/tokenIcons/assets/eip155/4326/erc20/0x28b7e77f82b25b95953825f1e3ea0e36c1c29861.png", - "aggregators": [] - }, - "eip155:4326/erc20:0x2A3a4c92ce37ABd7239fB010BC390710f4062407": { - "aggregators": [], - "decimals": 18, - "image": "https://static.cx.metamask.io/api/v2/tokenIcons/assets/eip155/4326/erc20/0x2a3a4c92ce37abd7239fb010bc390710f4062407.png", - "name": "Fluffey", - "symbol": "FLUFFEY", - "type": "erc20" - }, - "eip155:4326/erc20:0x2eA493384F42d7Ea78564F3EF4C86986eAB4a890": { - "aggregators": [], - "decimals": 18, - "image": "https://static.cx.metamask.io/api/v2/tokenIcons/assets/eip155/4326/erc20/0x2ea493384f42d7ea78564f3ef4c86986eab4a890.png", - "name": "USDm Yield", - "symbol": "USDmY", - "type": "erc20" - }, - "eip155:4326/erc20:0x39894d0B1aa402ae565678fc47F31717Ac2ae888": { - "aggregators": [], - "decimals": 18, - "image": "https://static.cx.metamask.io/api/v2/tokenIcons/assets/eip155/4326/erc20/0x39894d0b1aa402ae565678fc47f31717ac2ae888.png", - "name": "Ronnie Red", - "symbol": "RONNIE", - "type": "erc20" - }, - "eip155:4326/erc20:0x3F927036A6c29F50e1c2dfceba572FC40Cf39069": { - "aggregators": [], - "decimals": 18, - "image": "https://static.cx.metamask.io/api/v2/tokenIcons/assets/eip155/4326/erc20/0x3f927036a6c29f50e1c2dfceba572fc40cf39069.png", - "name": "Kumbaya Pump Initiative", - "symbol": "KPI", - "type": "erc20" - }, - "eip155:4326/erc20:0x551DFe38994eC53c9E7E18084D73893225Eea3bf": { - "aggregators": [], - "decimals": 18, - "image": "https://static.cx.metamask.io/api/v2/tokenIcons/assets/eip155/4326/erc20/0x551dfe38994ec53c9e7e18084d73893225eea3bf.png", - "name": "Gains Network", - "symbol": "GNS", - "type": "erc20" - }, - "eip155:4326/erc20:0x5d3a1Ff2b6BAb83b63cd9AD0787074081a52ef34": { - "type": "erc20", - "symbol": "USDe", - "name": "USDe", - "decimals": 18, - "image": "https://static.cx.metamask.io/api/v2/tokenIcons/assets/eip155/4326/erc20/0x5d3a1ff2b6bab83b63cd9ad0787074081a52ef34.png", - "aggregators": [] - }, - "eip155:4326/erc20:0x601aC63637933D88285A025C685AC4e9a92a98dA": { - "type": "erc20", - "symbol": "wstETH", - "name": "Wrapped liquid staked Ether 2.0", - "decimals": 18, - "image": "https://static.cx.metamask.io/api/v2/tokenIcons/assets/eip155/4326/erc20/0x601ac63637933d88285a025c685ac4e9a92a98da.png", - "aggregators": [] - }, - "eip155:4326/erc20:0xB0F70C0bD6FD87dbEb7C10dC692a2a6106817072": { - "aggregators": [], - "decimals": 8, - "image": "https://static.cx.metamask.io/api/v2/tokenIcons/assets/eip155/4326/erc20/0xb0f70c0bd6fd87dbeb7c10dc692a2a6106817072.png", - "name": "Bitcoin", - "symbol": "BTC.b", - "type": "erc20" - }, - "eip155:4326/erc20:0xB8CE59FC3717ada4C02eaDF9682A9e934F625ebb": { - "type": "erc20", - "symbol": "USDT0", - "name": "USDT0", - "decimals": 6, - "image": "https://static.cx.metamask.io/api/v2/tokenIcons/assets/eip155/4326/erc20/0xb8ce59fc3717ada4c02eadf9682a9e934f625ebb.png", - "aggregators": [] - }, - "eip155:4326/erc20:0xFAfDdbb3FC7688494971a79cc65DCa3EF82079E7": { - "type": "erc20", - "symbol": "USDm", - "name": "MegaUSD", - "decimals": 18, - "image": "https://static.cx.metamask.io/api/v2/tokenIcons/assets/eip155/4326/erc20/0xfafddbb3fc7688494971a79cc65dca3ef82079e7.png", - "aggregators": [] - }, - "eip155:4326/erc20:0xcCcc62962d17b8914c62D74FfB843d73B2a3cccC": { - "aggregators": [], - "decimals": 18, - "image": "https://static.cx.metamask.io/api/v2/tokenIcons/assets/eip155/4326/erc20/0xcccc62962d17b8914c62d74ffb843d73b2a3cccc.png", - "name": "Cap USD", - "symbol": "cUSD", - "type": "erc20" - }, - "eip155:4326/erc20:0xf7d2F0d0b0517CBDbf87C86910ce10FaAab3589D": { - "aggregators": [], - "decimals": 18, - "image": "https://static.cx.metamask.io/api/v2/tokenIcons/assets/eip155/4326/erc20/0xf7d2f0d0b0517cbdbf87c86910ce10faaab3589d.png", - "name": "Crown Credits", - "symbol": "CROWN", - "type": "erc20" - }, - "eip155:4326/slip44:60": { - "decimals": 18, - "name": "ETH", - "symbol": "ETH", - "type": "native" - }, - "eip155:56/erc20:0x000Ae314E2A2172a039B26378814C252734f556A": { - "decimals": 18, - "image": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x000ae314e2a2172a039b26378814c252734f556a.png", - "name": "Aster", - "symbol": "ASTER", - "type": "erc20" - }, - "eip155:56/erc20:0x1AF3F329e8BE154074D8769D1FFa4eE058B1DBc3": { - "aggregators": [ - "pancakeExtended", - "oneInch", - "liFi", - "trustWallet", - "socket", - "rubic", - "rango", - "sonarwatch", - "sushiSwap", - "binanceDex" - ], - "decimals": 18, - "description": { - "en": "MakerDAO has launched Multi-collateral DAI (MCD). This token refers to the new DAI that is collaterized by multiple assets." - }, - "erc20Permit": false, - "fees": { - "avgFee": 0, - "maxFee": 0, - "minFee": 0 - }, - "honeypotStatus": { - "goPlus": false, - "honeypotIs": false - }, - "image": "https://static.cx.metamask.io/api/v2/tokenIcons/assets/eip155/56/erc20/0x1af3f329e8be154074d8769d1ffa4ee058b1dbc3.png", - "isContractVerified": true, - "name": "BNB pegged Dai Token", - "occurrences": 12, - "storage": { - "approval": 2, - "balance": 1 - }, - "symbol": "DAI", - "type": "erc20" - }, - "eip155:56/erc20:0x55d398326f99059fF775485246999027B3197955": { - "aggregators": [ - "pancakeExtended", - "oneInch", - "liFi", - "trustWallet", - "socket", - "rubic", - "squid", - "rango", - "sonarwatch", - "sushiSwap" - ], - "decimals": 18, - "description": { - "en": "Tether (USDT) is a cryptocurrency with a value meant to mirror the value of the U.S. dollar. The idea was to create a stable cryptocurrency that can be used like digital dollars. Coins that serve this purpose of being a stable dollar substitute are called “stable coins.” Tether is the most popular stable coin and even acts as a dollar replacement on many popular exchanges! According to their site, Tether converts cash into digital currency, to anchor or “tether” the value of the coin to the price of national currencies like the US dollar, the Euro, and the Yen. Like other cryptos it uses blockchain. Unlike other cryptos, it is [according to the official Tether site] “100% backed by USD” (USD is held in reserve). The primary use of Tether is that it offers some stability to the otherwise volatile crypto space and offers liquidity to exchanges who can’t deal in dollars and with banks (for example to the sometimes controversial but leading exchange Bitfinex).The digital coins are issued by a company called Tether Limited that is governed by the laws of the British Virgin Islands, according to the legal part of its website. It is incorporated in Hong Kong. It has emerged that Jan Ludovicus van der Velde is the CEO of cryptocurrency exchange Bitfinex, which has been accused of being involved in the price manipulation of bitcoin, as well as tether. Many people trading on exchanges, including Bitfinex, will use tether to buy other cryptocurrencies like bitcoin. Tether Limited argues that using this method to buy virtual currencies allows users to move fiat in and out of an exchange more quickly and cheaply. Also, exchanges typically have rocky relationships with banks, and using Tether is a way to circumvent that.USDT is fairly simple to use. Once on exchanges like Poloniex or Bittrex, it can be used to purchase Bitcoin and other cryptocurrencies. It can be easily transferred from an exchange to any Omni Layer enabled wallet. Tether has no transaction fees, although external wallets and exchanges may charge one. In order to convert USDT to USD and vise versa through the Tether.to Platform, users must pay a small fee. Buying and selling Tether for Bitcoin can be done through a variety of exchanges like the ones mentioned previously or through the Tether.to platform, which also allows the conversion between USD to and from your bank account.", - "ko": "미국 달러화를 기반으로 한 블록체인1) 기반 암호화폐실제 달러화 유보금과 1:1정도의 비율을 유지함으로써 가치의 변동성이 거의 없다는 것이 특징가치 변동이 심한 다른 암호화폐 거래 시 안정적인 자산 운용을 위한 역할을 수행하고 있음가치암호화폐 거래를 위한 실질적 기축통화와 1:1 비율로 가치를 형성하는 거래 수단 및 극심한 변동성을 가지고 있는 다른 암호화폐를 거래하기 위한 실질적인 화폐의 기능을 수행할 수 있는 목적으로 만들어진 암호화폐 입니다.이러한 역할을 수행할 수 있는 화폐는 신뢰성을 바탕으로 운영과 관리가 되어야 하며 이를 운영사인 Tether사에서 은행에 1:1비율로 보유하고 있는 미국 달러를 토대로 투명하게 정기적으로 재무 상태를 공개하며 운영을 하는 정책을 가지고 있지만 실질적으로 2017년 들어 의혹이 생길 만한 일들이 다소 발생하였고 이로 인하여 신뢰도가 어느정도 하락한 상태입니다.하지만 아직까지는 USD를 기반으로 한 안정적인 가치의 유지는 지속되고 있으며 여전히 거래 시장 또한 활발하게 움직이고 있는 상황입니다." - }, - "erc20Permit": false, - "fees": { - "avgFee": 0, - "maxFee": 0, - "minFee": 0 - }, - "honeypotStatus": { - "goPlus": false, - "honeypotIs": false - }, - "image": "https://static.cx.metamask.io/api/v2/tokenIcons/assets/eip155/56/erc20/0x55d398326f99059ff775485246999027b3197955.png", - "isContractVerified": true, - "name": "Tether USD", - "occurrences": 11, - "storage": { - "approval": 2, - "balance": 1 - }, - "symbol": "USDT", - "type": "erc20" - }, - "eip155:56/erc20:0x5CA42204cDaa70d5c773946e69dE942b85CA6706": { - "decimals": 18, - "image": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x5ca42204cdaa70d5c773946e69de942b85ca6706.png", - "name": "Position", - "symbol": "POSI", - "type": "erc20" - }, - "eip155:56/erc20:0x683e9dCf085E5efCc7925858aAcE94D4b8882024": { - "decimals": 9, - "image": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x683e9dcf085e5efcc7925858aace94d4b8882024.png", - "name": "TangYuan", - "symbol": "TANGYUAN", - "type": "erc20" - }, - "eip155:56/erc20:0xF8A0BF9cF54Bb92F17374d9e9A321E6a111a51bD": { - "aggregators": [ - "pancakeTop100", - "oneInch", - "liFi", - "trustWallet", - "socket", - "rubic", - "squid", - "rango", - "sonarwatch", - "sushiSwap" - ], - "decimals": 18, - "description": { - "en": "Chainlink is a framework for building Decentralized Oracle Networks (DONs) that bring real-world data onto blockchain networks, enabling the creation of hybrid smart contracts. These DONs provide decentralized services such as Price Feeds, Proof of Reserve, Verifiable Randomness, Keepers, and the ability to connect to any web API. It aims to ensure that the external information (pricing, weather data, event outcomes, etc.) and off-chain computations (randomness, transaction automation, fair ordering, etc.) fed to on-chain smart contracts are reliable and tamper-proof.", - "ko": "블록체인기반의 완벽히 탈중앙화된 신탁 네트워크를 지향기존 블록체인들을 연결시켜주는 중계자 역할의 미들웨어ERC202) 토큰 기반이더리움의 창시자 비탈릭 부테린이 언급했던 플랫폼으로써 기존 블록체인들 간의 연결고리 역할을 수행하는 플랫폼입니다. 예를 들어 증권사와 은행간의 연결 및 API연동 기능을 수행할 수 있으며 서로 다른 플랫폼 간의 외부링크 및 API의 연동문제를 한번에 해결할 수 있는 플랫폼으로써 그 가치를 인정받고 있습니다.네트워크는 오라클 네트워크를 사용하며 당장 상용화를 할 수 있는 부분이 장점으로 인정받아 꾸준한 상승세를 이어 나가고 있는 추세입니다." - }, - "erc20Permit": false, - "fees": { - "avgFee": 0, - "maxFee": 0, - "minFee": 0 - }, - "honeypotStatus": { - "goPlus": false, - "honeypotIs": false - }, - "image": "https://static.cx.metamask.io/api/v2/tokenIcons/assets/eip155/56/erc20/0xf8a0bf9cf54bb92f17374d9e9a321e6a111a51bd.png", - "isContractVerified": true, - "name": "BNB pegged ChainLink", - "occurrences": 13, - "storage": { - "approval": 2, - "balance": 1 - }, - "symbol": "LINK", - "type": "erc20" - }, - "eip155:56/slip44:714": { - "type": "native", - "name": "Binance Coin", - "symbol": "BNB", - "decimals": 18, - "image": "https://static.cx.metamask.io/api/v2/tokenIcons/assets/eip155/56/slip44/714.png", - "occurrences": 100, - "aggregators": [], - "erc20Permit": false, - "honeypotStatus": {}, - "isContractVerified": false, - "description": { - "en": "Binance Coin is the cryptocurrency of the Binance platform. It is a trading platform exclusively for cryptocurrencies. The name \"Binance\" is a combination of binary and finance.Thus, the startup name shows that only cryptocurrencies can be traded against each other. It is not possible to trade crypto currencies against Fiat. The platform achieved an enormous success within a very short time and is focused on worldwide market with Malta headquarters. The cryptocurrency currently has a daily trading volume of 1.5 billion - 2 billion US dollars and is still increasing.In total, there will only be 200 million BNBs. Binance uses the ERC20 token standard from Ethereum and has distributed it as follow: 50% sold on ICO, 40% to the team and 10% to Angel investors. The coin can be used to pay fees on Binance. These include trading fees, transaction fees, listing fees and others. Binance gives you a huge discount when fees are paid in BNB. The schedule of BNB fees discount is as follow: In the first year, 50% discount on all fees, second year 25% discount, third year 12.5% discount, fourth year 6.75 % discount, and from the fifth year onwards there is no discount. This structure is used to incentivize users to buy BNB and do trades within Binance.Binance announced in a buyback plan that it would buy back up to 100 million BNB in Q1 2018. The coins are then burned. This means that they are devaluated to increase the value of the remaining coins. This benefits investors. In the future, the cryptocurrency will remain an asset on the trading platform and will be used as gas.Other tokens that are issued by exchanges include Bibox Token, OKB, Huobi Token, and more." - } - }, - "eip155:59144/erc20:0x176211869cA2b568f2A7D4EE941E073a821EE1ff": { - "aggregators": [ - "Metamask", - "1inch", - "LiFi", - "Socket", - "Rubic", - "Squid", - "Rango", - "Sonarwatch", - "SushiSwap" - ], - "decimals": 6, - "image": "https://static.cx.metamask.io/api/v1/tokenIcons/59144/0x176211869ca2b568f2a7d4ee941e073a821ee1ff.png", - "name": "USDC", - "symbol": "USDC", - "type": "erc20" - }, - "eip155:59144/erc20:0xacA92E438df0B2401fF60dA7E4337B687a2435DA": { - "decimals": 6, - "image": "https://static.cx.metamask.io/api/v1/tokenIcons/59144/0xaca92e438df0b2401ff60da7e4337b687a2435da.png", - "name": "MetaMask USD", - "symbol": "MUSD", - "type": "erc20" - }, - "eip155:59144/erc20:0xaca92e438df0b2401ff60da7e4337b687a2435da": { - "decimals": 6, - "name": "MetaMask USD", - "symbol": "mUSD", - "type": "erc20" - }, - "eip155:59144/slip44:60": { - "type": "native", - "name": "Ether", - "symbol": "ETH", - "decimals": 18, - "image": "https://static.cx.metamask.io/api/v2/tokenIcons/assets/eip155/59144/slip44/60.png", - "occurrences": 100, - "aggregators": [], - "erc20Permit": false, - "honeypotStatus": {}, - "description": { - "en": "Ethereum is a global, open-source platform for decentralized applications. In other words, the vision is to create a world computer that anyone can build applications in a decentralized manner; while all states and data are distributed and publicly accessible. Ethereum supports smart contracts in which developers can write code in order to program digital value. Examples of decentralized apps (dapps) that are built on Ethereum includes tokens, non-fungible tokens, decentralized finance apps, lending protocol, decentralized exchanges, and much more.On Ethereum, all transactions and smart contract executions require a small fee to be paid. This fee is called Gas. In technical terms, Gas refers to the unit of measure on the amount of computational effort required to execute an operation or a smart contract. The more complex the execution operation is, the more gas is required to fulfill that operation. Gas fees are paid entirely in Ether (ETH), which is the native coin of the blockchain. The price of gas can fluctuate from time to time depending on the network demand.", - "ko": "이더리움(Ethereum/ETH)은 블록체인 기술에 기반한 클라우드 컴퓨팅 플랫폼 또는 프로그래밍 언어이다. 비탈릭 부테린이 개발하였다.비탈릭 부테린은 가상화폐인 비트코인에 사용된 핵심 기술인 블록체인(blockchain)에 화폐 거래 기록뿐 아니라 계약서 등의 추가 정보를 기록할 수 있다는 점에 착안하여, 전 세계 수많은 사용자들이 보유하고 있는 컴퓨팅 자원을 활용해 분산 네트워크를 구성하고, 이 플랫폼을 이용하여 SNS, 이메일, 전자투표 등 다양한 정보를 기록하는 시스템을 창안했다. 이더리움은 C++, 자바, 파이썬, GO 등 주요 프로그래밍 언어를 지원한다.이더리움을 사물 인터넷(IoT)에 적용하면 기계 간 금융 거래도 가능해진다. 예를 들어 고장난 청소로봇이 정비로봇에 돈을 내고 정비를 받고, 청소로봇은 돈을 벌기 위해 정비로봇의 집을 청소하는 것도 가능해진다.", - "zh": "Ethereum(以太坊)是一个平台和一种编程语言,使开发人员能够建立和发布下一代分布式应用。Ethereum 是使用甲醚作为燃料,以激励其网络的第一个图灵完备cryptocurrency。Ethereum(以太坊) 是由Vitalik Buterin的创建。该项目于2014年8月获得了美国1800万$比特币的价值及其crowdsale期间。在2016年,Ethereum(以太坊)的价格上涨超过50倍。", - "ja": "イーサリアム (Ethereum, ETH)・プロジェクトにより開発が進められている、分散型アプリケーション(DApps)やスマート・コントラクトを構築するためのプラットフォームの名称、及び関連するオープンソース・ソフトウェア・プロジェクトの総称である。イーサリアムでは、イーサリアム・ネットワークと呼ばれるP2Pのネットワーク上でスマート・コントラクトの履行履歴をブロックチェーンに記録していく。またイーサリアムは、スマート・コントラクトを記述するチューリング完全なプログラミング言語を持ち、ネットワーク参加者はこのネットワーク上のブロックチェーンに任意のDAppsやスマート・コントラクトを記述しそれを実行することが可能になる。ネットワーク参加者が「Ether」と呼ばれるイーサリアム内部通貨の報酬を目当てに、採掘と呼ばれるブロックチェーンへのスマート・コントラクトの履行結果の記録を行うことで、その正統性を保証していく。このような仕組みにより特定の中央管理組織に依拠せず、P2P全体を実行環境としてプログラムの実行とその結果を共有することが可能になった。" - } - }, - "eip155:8453/erc20:0x623cD3a3EdF080057892aaF8D773Bbb7A5C9b6e9": { - "type": "erc20", - "name": "Sekuya Multiverse", - "symbol": "SKYA", - "decimals": 18, - "occurrences": 3, - "aggregators": ["coinGecko", "liFi", "rubic", "rango", "sonarwatch"], - "erc20Permit": false, - "honeypotStatus": { - "goPlus": false - }, - "storage": { - "balance": 1, - "approval": 2 - }, - "isContractVerified": true, - "description": { - "en": "Sekuya is a video game company headquartered in Singapore. Born from a community, Sekuya aims to revolutionize the gaming landscape with a community-driven approach in all new anime epic fantasy universe. Sekuya’s flagship project, Sekuya Multiverse, an award-winning start-up project, combines 2 of the world’s most popular gaming genres: MOBA + RPG, promising a new gaming experience for global players of both genres. Problem: The current fast-growing MOBA gaming genres have not received a significant gameplay update since around 2003. Additionally, despite the total gaming revenue reaching $180 billion in 2023, game item ownership remains centralized. Approach: An entirely new genre of Epic Fantasy MOBA MMORPG powered by a unique Web3 ownership (heroes, items, skills, pets) and AI co-creation tools (user generated skin & personalized superpower). Positioning: We are among the pioneers in introducing a completely unique gameplay experience, along with Web3 ownership and AI co-creation tools that have the potential to appeal to millions of gamers and creators. Sekuya Multiverse, an award-winning start up project with GAMEFI AI RWA narrative, combines 2 of the world’s most favorite gaming genres: MOBA MMORPG, promising a new experience for 250 million global players Supported by over 100 communities in Southeast Asia, Sekuya Multiverse offers an immersive MMORPG experience set in the Novae Terrae, a 10-world universe. Players, known as \"Jumpers,\" can utilize an AI character creator to customize their own character, interact with AI NPCs, embark on engaging storylines, and participate in battles to collect 400+ sekumon souls and win the grand rewards. Anticipate an exhilarating 5v5 MOBA featuring unique superpowers bestowed by Sekuya heroes and special abilities tailored to each player's personality." - } - }, - "eip155:8453/erc20:0xC438B0c0E80A8Fa1B36898d1b36A3fc2eC371C54": { - "type": "erc20", - "name": "Blep Super Meme", - "symbol": "BLEP", - "decimals": 18, - "occurrences": 3, - "aggregators": ["coinGecko", "rubic", "rango", "sonarwatch"], - "fees": { - "maxFee": 0, - "avgFee": 0, - "minFee": 0 - }, - "honeypotStatus": { - "goPlus": false - }, - "isContractVerified": true - }, - "eip155:8453/slip44:60": { - "type": "native", - "name": "Ether", - "symbol": "ETH", - "decimals": 18, - "image": "https://static.cx.metamask.io/api/v2/tokenIcons/assets/eip155/8453/slip44/60.png", - "occurrences": 100, - "aggregators": [], - "erc20Permit": false, - "honeypotStatus": {} - }, - "solana:5eykt4UsFv8P8NJdTREpY1vzqKqZKvdp/slip44:501": { - "aggregators": [], - "decimals": 9, - "image": "https://static.cx.metamask.io/api/v2/tokenIcons/assets/solana/5eykt4UsFv8P8NJdTREpY1vzqKqZKvdp/slip44/501.png", - "name": "SOL", - "occurrences": 100, - "symbol": "SOL", - "type": "native" - }, - "solana:5eykt4UsFv8P8NJdTREpY1vzqKqZKvdp/token:27G8MtK7VtTcCHkpASjSDdkWWYfoqT6ggEuKidVJidD4": { - "aggregators": ["trustWallet", "coinGecko", "jupiter", "orca", "lifi"], - "decimals": 6, - "image": "https://static.cx.metamask.io/api/v2/tokenIcons/assets/solana/5eykt4UsFv8P8NJdTREpY1vzqKqZKvdp/token/27G8MtK7VtTcCHkpASjSDdkWWYfoqT6ggEuKidVJidD4.png", - "name": "Jupiter Perps LP", - "occurrences": 5, - "symbol": "JLP", - "type": "erc20" - }, - "solana:5eykt4UsFv8P8NJdTREpY1vzqKqZKvdp/token:7atgF8KQo4wJrD5ATGX7t1V2zVvykPJbFfNeVf1icFv1": { - "aggregators": ["coinGecko", "jupiter", "orca"], - "decimals": 2, - "image": "https://static.cx.metamask.io/api/v2/tokenIcons/assets/solana/5eykt4UsFv8P8NJdTREpY1vzqKqZKvdp/token/7atgF8KQo4wJrD5ATGX7t1V2zVvykPJbFfNeVf1icFv1.png", - "name": "catwifhat", - "occurrences": 3, - "symbol": "$CWIF", - "type": "erc20" - }, - "solana:5eykt4UsFv8P8NJdTREpY1vzqKqZKvdp/token:7vfCXTUXx5WJV5JADk17DUJ4ksgau7utNKj4b963voxs": { - "aggregators": ["trustWallet", "coinGecko", "jupiter", "orca", "lifi"], - "decimals": 8, - "image": "https://static.cx.metamask.io/api/v2/tokenIcons/assets/solana/5eykt4UsFv8P8NJdTREpY1vzqKqZKvdp/token/7vfCXTUXx5WJV5JADk17DUJ4ksgau7utNKj4b963voxs.png", - "name": "Ether (Portal)", - "occurrences": 5, - "symbol": "ETH", - "type": "erc20" - }, - "solana:5eykt4UsFv8P8NJdTREpY1vzqKqZKvdp/token:8crhketCxuYMFfkvGfikwp6LGuN9sXx5i3oTC4PXpump": { - "decimals": 6, - "image": "https://static.cx.metamask.io/api/v2/tokenIcons/assets/solana/5eykt4UsFv8P8NJdTREpY1vzqKqZKvdp/token/8crhketCxuYMFfkvGfikwp6LGuN9sXx5i3oTC4PXpump.png", - "name": "SLMN", - "symbol": "SLMN", - "type": "erc20" - }, - "solana:5eykt4UsFv8P8NJdTREpY1vzqKqZKvdp/token:9zNQRsGLjNKwCUU5Gq5LR8beUCPzQMVMqKAi3SSZh54u": { - "aggregators": ["coinGecko", "jupiter", "orca", "lifi"], - "decimals": 6, - "image": "https://static.cx.metamask.io/api/v2/tokenIcons/assets/solana/5eykt4UsFv8P8NJdTREpY1vzqKqZKvdp/token/9zNQRsGLjNKwCUU5Gq5LR8beUCPzQMVMqKAi3SSZh54u.png", - "name": "First Digital USD", - "occurrences": 4, - "symbol": "FDUSD", - "type": "erc20" - }, - "solana:5eykt4UsFv8P8NJdTREpY1vzqKqZKvdp/token:CKfatsPMUf8SkiURsDXs7eK6GWb4Jsd6UDbs7twMCWxo": { - "aggregators": ["coinGecko", "jupiter", "lifi"], - "decimals": 5, - "image": "https://static.cx.metamask.io/api/v2/tokenIcons/assets/solana/5eykt4UsFv8P8NJdTREpY1vzqKqZKvdp/token/CKfatsPMUf8SkiURsDXs7eK6GWb4Jsd6UDbs7twMCWxo.png", - "name": "BonkEarn", - "occurrences": 3, - "symbol": "BERN", - "type": "erc20" - }, - "solana:5eykt4UsFv8P8NJdTREpY1vzqKqZKvdp/token:EPjFWdd5AufqSSqeM2qN1xzybapC8G4wEGGkZwyTDt1v": { - "aggregators": ["trustWallet", "coinGecko", "jupiter", "orca", "lifi"], - "decimals": 6, - "image": "https://static.cx.metamask.io/api/v2/tokenIcons/assets/solana/5eykt4UsFv8P8NJdTREpY1vzqKqZKvdp/token/EPjFWdd5AufqSSqeM2qN1xzybapC8G4wEGGkZwyTDt1v.png", - "labels": [], - "name": "USD Coin", - "occurrences": 5, - "symbol": "USDC", - "type": "erc20" - }, - "solana:5eykt4UsFv8P8NJdTREpY1vzqKqZKvdp/token:Es9vMFrzaCERmJfrF4H2FYD4KCoNkY11McCe8BenwNYB": { - "aggregators": ["trustWallet", "coinGecko", "jupiter", "orca", "lifi"], - "decimals": 6, - "image": "https://static.cx.metamask.io/api/v2/tokenIcons/assets/solana/5eykt4UsFv8P8NJdTREpY1vzqKqZKvdp/token/Es9vMFrzaCERmJfrF4H2FYD4KCoNkY11McCe8BenwNYB.png", - "name": "Tether USDT", - "occurrences": 5, - "symbol": "USDT", - "type": "erc20" - }, - "solana:5eykt4UsFv8P8NJdTREpY1vzqKqZKvdp/token:HeLp6NuQkmYB4pYWo2zYs22mESHXPQYzXbB8n4V98jwC": { - "aggregators": ["coinGecko", "jupiter", "orca", "lifi"], - "decimals": 9, - "image": "https://static.cx.metamask.io/api/v2/tokenIcons/assets/solana/5eykt4UsFv8P8NJdTREpY1vzqKqZKvdp/token/HeLp6NuQkmYB4pYWo2zYs22mESHXPQYzXbB8n4V98jwC.png", - "name": "ai16z", - "occurrences": 4, - "symbol": "AI16Z", - "type": "erc20" - }, - "solana:5eykt4UsFv8P8NJdTREpY1vzqKqZKvdp/token:JUPyiwrYJFskUPiHa7hkeR8VUtAeFoSYbKedZNsDvCN": { - "aggregators": ["coinGecko", "jupiter", "orca", "lifi"], - "decimals": 6, - "image": "https://static.cx.metamask.io/api/v2/tokenIcons/assets/solana/5eykt4UsFv8P8NJdTREpY1vzqKqZKvdp/token/JUPyiwrYJFskUPiHa7hkeR8VUtAeFoSYbKedZNsDvCN.png", - "name": "Jupiter", - "occurrences": 4, - "symbol": "JUP", - "type": "erc20" - }, - "tron:728126428/slip44:195": { - "aggregators": [], - "decimals": 6, - "image": "https://static.cx.metamask.io/api/v2/tokenIcons/assets/tron/728126428/slip44/195.png", - "name": "TRON", - "occurrences": 100, - "symbol": "TRX", - "type": "native" - }, - "tron:728126428/trc20:TR7NHqjeKQxGTCi8q8ZY4pL8otSzgjLj6t": { - "aggregators": ["coinGecko"], - "decimals": 6, - "image": "https://static.cx.metamask.io/api/v2/tokenIcons/assets/tron/728126428/trc20/TR7NHqjeKQxGTCi8q8ZY4pL8otSzgjLj6t.png", - "name": "Tether", - "occurrences": 1, - "symbol": "USDT", - "type": "erc20" - }, - "eip155:4326/erc20:0x88887bE419578051FF9F4eb6C858A951921D8888": { - "type": "erc20", - "symbol": "stcUSD", - "name": "Staked Cap USD", - "decimals": 18, - "image": "https://static.cx.metamask.io/api/v2/tokenIcons/assets/eip155/4326/erc20/0x88887be419578051ff9f4eb6c858a951921d8888.png", - "aggregators": [] - }, - "eip155:4326/erc20:0x8F77A685bDe702E6d32A103e9AeB41906317D7e5": { - "type": "erc20", - "symbol": "RBT", - "name": "Reserve Backed Token", - "decimals": 18, - "image": "https://static.cx.metamask.io/api/v2/tokenIcons/assets/eip155/4326/erc20/0x8f77a685bde702e6d32a103e9aeb41906317d7e5.png", - "aggregators": [] - } - }, - "assetsBalance": { - "02c4222b-f0d3-448e-848f-7bf6b3ce3379": { - "eip155:1/erc20:0xaca92e438df0b2401ff60da7e4337b687a2435da": { - "amount": "0" - }, - "eip155:1/erc20:0xdAC17F958D2ee523a2206206994597C13D831ec7": { - "amount": "4.424103" - }, - "eip155:1/slip44:60": { - "amount": "0.00007232397741756" - }, - "eip155:10/slip44:60": { - "amount": "0" - }, - "eip155:137/slip44:966": { - "amount": "0" - }, - "eip155:143/erc20:0xaca92e438df0b2401ff60da7e4337b687a2435da": { - "amount": "0" - }, - "eip155:143/slip44:268435779": { - "amount": "0" - }, - "eip155:324/slip44:60": { - "amount": "0" - }, - "eip155:42161/slip44:60": { - "amount": "0" - }, - "eip155:43114/slip44:9005": { - "amount": "0" - }, - "eip155:4326/erc20:0x0000000000000000000000000000000000000000": { - "amount": "0" - }, - "eip155:4326/erc20:0x5d3a1Ff2b6BAb83b63cd9AD0787074081a52ef34": { - "amount": "0" - }, - "eip155:4326/erc20:0x601aC63637933D88285A025C685AC4e9a92a98dA": { - "amount": "0" - }, - "eip155:4326/erc20:0xB0F70C0bD6FD87dbEb7C10dC692a2a6106817072": { - "amount": "0" - }, - "eip155:4326/erc20:0xB8CE59FC3717ada4C02eaDF9682A9e934F625ebb": { - "amount": "0" - }, - "eip155:4326/erc20:0xFAfDdbb3FC7688494971a79cc65DCa3EF82079E7": { - "amount": "0" - }, - "eip155:4326/erc20:0xf7d2F0d0b0517CBDbf87C86910ce10FaAab3589D": { - "amount": "0" - }, - "eip155:4326/slip44:60": { - "amount": "0" - }, - "eip155:56/slip44:714": { - "amount": "0.000759595995596286" - }, - "eip155:59144/erc20:0xaca92e438df0b2401ff60da7e4337b687a2435da": { - "amount": "0" - }, - "eip155:59144/slip44:60": { - "amount": "0" - } - }, - "076cbb47-1752-40b0-9314-1f07e7b88ffa": { - "solana:5eykt4UsFv8P8NJdTREpY1vzqKqZKvdp/slip44:501": { - "amount": "0.015372701" - }, - "solana:5eykt4UsFv8P8NJdTREpY1vzqKqZKvdp/token:CKfatsPMUf8SkiURsDXs7eK6GWb4Jsd6UDbs7twMCWxo": { - "amount": "0.00005" - }, - "solana:5eykt4UsFv8P8NJdTREpY1vzqKqZKvdp/token:HeLp6NuQkmYB4pYWo2zYs22mESHXPQYzXbB8n4V98jwC": { - "amount": "16.403260987" - }, - "solana:5eykt4UsFv8P8NJdTREpY1vzqKqZKvdp/token:7vfCXTUXx5WJV5JADk17DUJ4ksgau7utNKj4b963voxs": { - "amount": "0" - }, - "solana:5eykt4UsFv8P8NJdTREpY1vzqKqZKvdp/token:EPjFWdd5AufqSSqeM2qN1xzybapC8G4wEGGkZwyTDt1v": { - "amount": "0" - }, - "solana:5eykt4UsFv8P8NJdTREpY1vzqKqZKvdp/token:JUPyiwrYJFskUPiHa7hkeR8VUtAeFoSYbKedZNsDvCN": { - "amount": "0" - } - }, - "1c2440b0-d05e-4b07-881c-ebb9bce2bbb7": { - "tron:2494104990/slip44:195": { - "amount": "0" - }, - "tron:2494104990/slip44:195-in-lock-period": { - "amount": "0" - }, - "tron:2494104990/slip44:195-ready-for-withdrawal": { - "amount": "0" - }, - "tron:2494104990/slip44:195-staked-for-bandwidth": { - "amount": "0" - }, - "tron:2494104990/slip44:195-staked-for-energy": { - "amount": "0" - }, - "tron:2494104990/slip44:195-staking-rewards": { - "amount": "0" - }, - "tron:2494104990/slip44:bandwidth": { - "amount": "0" - }, - "tron:2494104990/slip44:energy": { - "amount": "0" - }, - "tron:2494104990/slip44:maximum-bandwidth": { - "amount": "0" - }, - "tron:2494104990/slip44:maximum-energy": { - "amount": "0" - }, - "tron:3448148188/slip44:195": { - "amount": "0" - }, - "tron:3448148188/slip44:195-in-lock-period": { - "amount": "0" - }, - "tron:3448148188/slip44:195-ready-for-withdrawal": { - "amount": "0" - }, - "tron:3448148188/slip44:195-staked-for-bandwidth": { - "amount": "0" - }, - "tron:3448148188/slip44:195-staked-for-energy": { - "amount": "0" - }, - "tron:3448148188/slip44:195-staking-rewards": { - "amount": "0" - }, - "tron:3448148188/slip44:bandwidth": { - "amount": "0" - }, - "tron:3448148188/slip44:energy": { - "amount": "0" - }, - "tron:3448148188/slip44:maximum-bandwidth": { - "amount": "0" - }, - "tron:3448148188/slip44:maximum-energy": { - "amount": "0" - }, - "tron:728126428/slip44:195": { - "amount": "0" - }, - "tron:728126428/slip44:195-in-lock-period": { - "amount": "0" - }, - "tron:728126428/slip44:195-ready-for-withdrawal": { - "amount": "0" - }, - "tron:728126428/slip44:195-staked-for-bandwidth": { - "amount": "0" - }, - "tron:728126428/slip44:195-staked-for-energy": { - "amount": "0" - }, - "tron:728126428/slip44:195-staking-rewards": { - "amount": "0" - }, - "tron:728126428/slip44:bandwidth": { - "amount": "0" - }, - "tron:728126428/slip44:energy": { - "amount": "0" - }, - "tron:728126428/slip44:maximum-bandwidth": { - "amount": "0" - }, - "tron:728126428/slip44:maximum-energy": { - "amount": "0" - } - }, - "23ce192d-62e7-4d4f-a168-93ae18dc915d": { - "bip122:000000000019d6689c085ae165831e93/slip44:0": { - "amount": "0" - } - }, - "2727ea45-0879-4ce8-bbac-e7b83a7ca3de": { - "eip155:1/slip44:60": { - "amount": "0.000034414919361854" - }, - "eip155:1/erc20:0x6B175474E89094C44Da98b954EedeAC495271d0F": { - "amount": "10.000000000000000000" - }, - "eip155:1/erc20:0x14c3abF95Cb9C93a8b82C1CdCB76D72Cb87b2d4c": { - "amount": "0.013783146863745083" - }, - "eip155:1/erc20:0xD4419C2d3DAA986Dc30444Fa333a846be44Fd1eb": { - "amount": "222.000000000000000000" - }, - "eip155:8453/slip44:60": { - "amount": "0.000002046469463686" - }, - "eip155:8453/erc20:0x07d15798a67253D76cea61F0eA6F57AeDC59DffB": { - "amount": "5444.000000000000000000" - }, - "eip155:8453/erc20:0x3d63825B0d8669307366E6c8202f656b9E91D368": { - "amount": "0.010000" - }, - "eip155:8453/erc20:0x623cD3a3EdF080057892aaF8D773Bbb7A5C9b6e9": { - "amount": "1.910000000000000000" - }, - "eip155:8453/erc20:0x88Fb150BDc53A65fe94Dea0c9BA0a6dAf8C6e196": { - "amount": "0.004577788730046580" - }, - "eip155:8453/erc20:0x8C6F889888d22Ee1d8Aa2954B61b9F10E7402b95": { - "amount": "160.000000000000000000" - }, - "eip155:8453/erc20:0xa1Ca6299ba48366Af1845A9A8AE59B87ff0d5C01": { - "amount": "166.000000000000000000" - }, - "eip155:8453/erc20:0xAfB5d4d474693e68Df500c9c682E6A2841f9661A": { - "amount": "1.000000000000000000" - }, - "eip155:8453/erc20:0xC438B0c0E80A8Fa1B36898d1b36A3fc2eC371C54": { - "amount": "100.000000000000000000" - }, - "eip155:8453/erc20:0xCa72827a3D211CfD8F6b00Ac98824872b72CAb49": { - "amount": "0.000004" - }, - "eip155:8453/erc20:0xD968196FA6977c4e58F2af5aC01C655ea8332d22": { - "amount": "740000.000000000000000000" - }, - "eip155:8453/erc20:0xfAf87e196A29969094bE35DfB0Ab9d0b8518dB84": { - "amount": "0.000100" - }, - "eip155:56/slip44:714": { - "amount": "0.00003121948" - }, - "eip155:56/erc20:0x1AF3F329e8BE154074D8769D1FFa4eE058B1DBc3": { - "amount": "4.326704419849461523" - }, - "eip155:56/erc20:0x55d398326f99059fF775485246999027B3197955": { - "amount": "1.434895791588498636" - }, - "eip155:56/erc20:0xF8A0BF9cF54Bb92F17374d9e9A321E6a111a51bD": { - "amount": "0.487747159749581541" - }, - "eip155:56/erc20:0x000Ae314E2A2172a039B26378814C252734f556A": { - "amount": "1.942927909662451287" - }, - "eip155:56/erc20:0xa18b59607B7286A6533FD8C7E8C9716eac9A5C73": { - "amount": "21500.320000000000000000" - }, - "eip155:56/erc20:0xd5da8318cE7ca005E8F5285Db0e750CA9256586e": { - "amount": "60000.000000" - }, - "eip155:137/slip44:966": { - "amount": "0.063974383933502492" - }, - "eip155:137/erc20:0x2791Bca1f2de4661ED88A30C99A7a9449Aa84174": { - "amount": "3.320136" - }, - "eip155:137/erc20:0x950Ddb91842C58814ed4Ee7077Ce35632225797e": { - "amount": "69.000000" - }, - "eip155:137/erc20:0xa1Ca6299ba48366Af1845A9A8AE59B87ff0d5C01": { - "amount": "150.000000000000000000" - }, - "eip155:137/erc20:0xA649325Aa7C5093d12D6F98EB4378deAe68CE23F": { - "amount": "0.170763759131919475" - }, - "eip155:143/slip44:268435779": { - "amount": "1" - }, - "eip155:10/slip44:60": { - "amount": "0.000139479088483624" - }, - "eip155:10/erc20:0x0b2C639c533813f4Aa9D7837CAf62653d097Ff85": { - "amount": "0.000001" - }, - "eip155:10/erc20:0xDA10009cBd5D07dd0CeCc66161FC93D7c9000da1": { - "amount": "0.004625351648943006" - }, - "eip155:10/erc20:0x0994206dfE8De6Ec6920FF4D779B0d950605Fb53": { - "amount": "9.472039623103198418" - }, - "eip155:10/erc20:0x4200000000000000000000000000000000000042": { - "amount": "4.928964912275496064" - }, - "eip155:42161/slip44:60": { - "amount": "0.011949665518119878" - }, - "eip155:42161/erc20:0x306fD3e7b169Aa4ee19412323e1a5995B8c1a1f4": { - "amount": "15000.000000000000000000" - }, - "eip155:59144/slip44:60": { - "amount": "0.002147447709926979" - }, - "eip155:59144/erc20:0xacA92E438df0B2401fF60dA7E4337B687a2435DA": { - "amount": "5.660188" - }, - "eip155:1/erc20:0xacA92E438df0B2401fF60dA7E4337B687a2435DA": { - "amount": "0" - }, - "eip155:4326/erc20:0xB8CE59FC3717ada4C02eaDF9682A9e934F625ebb": { - "amount": "0" - }, - "eip155:4326/erc20:0xFAfDdbb3FC7688494971a79cc65DCa3EF82079E7": { - "amount": "0" - }, - "eip155:4326/erc20:0xB0F70C0bD6FD87dbEb7C10dC692a2a6106817072": { - "amount": "0" - }, - "eip155:4326/erc20:0xf7d2F0d0b0517CBDbf87C86910ce10FaAab3589D": { - "amount": "0" - }, - "eip155:4326/erc20:0x2eA493384F42d7Ea78564F3EF4C86986eAB4a890": { - "amount": "0" - }, - "eip155:4326/erc20:0x601aC63637933D88285A025C685AC4e9a92a98dA": { - "amount": "0" - }, - "eip155:4326/erc20:0x551DFe38994eC53c9E7E18084D73893225Eea3bf": { - "amount": "0" - }, - "eip155:4326/erc20:0x3F927036A6c29F50e1c2dfceba572FC40Cf39069": { - "amount": "0" - }, - "eip155:4326/erc20:0x1C4784308adB589c1ED3fa88A48B7FcEFba5FA3C": { - "amount": "0" - }, - "eip155:4326/erc20:0x5d3a1Ff2b6BAb83b63cd9AD0787074081a52ef34": { - "amount": "0" - }, - "eip155:42161/erc20:0xaf88d065e77c8cC2239327C5EDb3A432268e5831": { - "amount": "0" - }, - "eip155:59144/erc20:0x176211869cA2b568f2A7D4EE941E073a821EE1ff": { - "amount": "0" - }, - "eip155:4326/erc20:0x28B7E77f82B25B95953825F1E3eA0E36c1c29861": { - "amount": "0" - }, - "eip155:4326/erc20:0x88887bE419578051FF9F4eb6C858A951921D8888": { - "amount": "0" - }, - "eip155:4326/erc20:0x8F77A685bDe702E6d32A103e9AeB41906317D7e5": { - "amount": "0" - }, - "eip155:4326/erc20:0x0000000000000000000000000000000000000000": { - "amount": "0" - }, - "eip155:324/slip44:60": { - "amount": "0" - }, - "eip155:43114/slip44:9005": { - "amount": "1.504942656206357886" - }, - "eip155:1/erc20:0xaca92e438df0b2401ff60da7e4337b687a2435da": { - "amount": "0" - }, - "eip155:143/erc20:0xaca92e438df0b2401ff60da7e4337b687a2435da": { - "amount": "0" - }, - "eip155:59144/erc20:0xaca92e438df0b2401ff60da7e4337b687a2435da": { - "amount": "0" - } - }, - "2ddfe00a-fef1-4085-82f5-e5cdc9d8871f": { - "eip155:1/slip44:60": { - "amount": "0" - }, - "eip155:10/slip44:60": { - "amount": "0" - }, - "eip155:137/slip44:966": { - "amount": "0" - }, - "eip155:143/slip44:268435779": { - "amount": "0" - }, - "eip155:324/slip44:60": { - "amount": "0" - }, - "eip155:42161/slip44:60": { - "amount": "0" - }, - "eip155:43114/slip44:9005": { - "amount": "0" - }, - "eip155:4326/slip44:60": { - "amount": "0" - }, - "eip155:56/slip44:714": { - "amount": "0" - }, - "eip155:59144/slip44:60": { - "amount": "0" - }, - "eip155:8453/slip44:60": { - "amount": "0" - } - }, - "3d26ef67-6870-4750-af80-bce53fa4a0af": { - "tron:2494104990/slip44:195": { - "amount": "0" - }, - "tron:2494104990/slip44:195-in-lock-period": { - "amount": "0" - }, - "tron:2494104990/slip44:195-ready-for-withdrawal": { - "amount": "0" - }, - "tron:2494104990/slip44:195-staked-for-bandwidth": { - "amount": "0" - }, - "tron:2494104990/slip44:195-staked-for-energy": { - "amount": "0" - }, - "tron:2494104990/slip44:195-staking-rewards": { - "amount": "0" - }, - "tron:2494104990/slip44:bandwidth": { - "amount": "0" - }, - "tron:2494104990/slip44:energy": { - "amount": "0" - }, - "tron:2494104990/slip44:maximum-bandwidth": { - "amount": "0" - }, - "tron:2494104990/slip44:maximum-energy": { - "amount": "0" - }, - "tron:3448148188/slip44:195": { - "amount": "0" - }, - "tron:3448148188/slip44:195-in-lock-period": { - "amount": "0" - }, - "tron:3448148188/slip44:195-ready-for-withdrawal": { - "amount": "0" - }, - "tron:3448148188/slip44:195-staked-for-bandwidth": { - "amount": "0" - }, - "tron:3448148188/slip44:195-staked-for-energy": { - "amount": "0" - }, - "tron:3448148188/slip44:195-staking-rewards": { - "amount": "0" - }, - "tron:3448148188/slip44:bandwidth": { - "amount": "0" - }, - "tron:3448148188/slip44:energy": { - "amount": "0" - }, - "tron:3448148188/slip44:maximum-bandwidth": { - "amount": "0" - }, - "tron:3448148188/slip44:maximum-energy": { - "amount": "0" - }, - "tron:728126428/slip44:195": { - "amount": "53.676935" - }, - "tron:728126428/slip44:195-in-lock-period": { - "amount": "0" - }, - "tron:728126428/slip44:195-ready-for-withdrawal": { - "amount": "0" - }, - "tron:728126428/slip44:195-staked-for-bandwidth": { - "amount": "0" - }, - "tron:728126428/slip44:195-staked-for-energy": { - "amount": "0" - }, - "tron:728126428/slip44:195-staking-rewards": { - "amount": "0" - }, - "tron:728126428/slip44:bandwidth": { - "amount": "600" - }, - "tron:728126428/slip44:energy": { - "amount": "0" - }, - "tron:728126428/slip44:maximum-bandwidth": { - "amount": "600" - }, - "tron:728126428/slip44:maximum-energy": { - "amount": "0" - }, - "tron:728126428/trc20:TR7NHqjeKQxGTCi8q8ZY4pL8otSzgjLj6t": { - "amount": "10.349701" - } - }, - "55fe5095-3194-42c2-81d3-5701dcad1924": { - "eip155:1/slip44:60": { - "amount": "0" - }, - "eip155:10/slip44:60": { - "amount": "0" - }, - "eip155:137/slip44:966": { - "amount": "0" - }, - "eip155:143/slip44:268435779": { - "amount": "0" - }, - "eip155:324/slip44:60": { - "amount": "0" - }, - "eip155:42161/slip44:60": { - "amount": "0" - }, - "eip155:43114/slip44:9005": { - "amount": "0" - }, - "eip155:4326/erc20:0x0000000000000000000000000000000000000000": { - "amount": "0" - }, - "eip155:56/slip44:714": { - "amount": "0" - }, - "eip155:59144/slip44:60": { - "amount": "0" - }, - "solana:5eykt4UsFv8P8NJdTREpY1vzqKqZKvdp/slip44:501": { - "amount": "0.002413557" - }, - "solana:5eykt4UsFv8P8NJdTREpY1vzqKqZKvdp/token:27G8MtK7VtTcCHkpASjSDdkWWYfoqT6ggEuKidVJidD4": { - "amount": "0" - }, - "solana:5eykt4UsFv8P8NJdTREpY1vzqKqZKvdp/token:7atgF8KQo4wJrD5ATGX7t1V2zVvykPJbFfNeVf1icFv1": { - "amount": "0" - }, - "solana:5eykt4UsFv8P8NJdTREpY1vzqKqZKvdp/token:8crhketCxuYMFfkvGfikwp6LGuN9sXx5i3oTC4PXpump": { - "amount": "0" - }, - "solana:5eykt4UsFv8P8NJdTREpY1vzqKqZKvdp/token:9zNQRsGLjNKwCUU5Gq5LR8beUCPzQMVMqKAi3SSZh54u": { - "amount": "0" - }, - "solana:5eykt4UsFv8P8NJdTREpY1vzqKqZKvdp/token:CKfatsPMUf8SkiURsDXs7eK6GWb4Jsd6UDbs7twMCWxo": { - "amount": "13.43184" - }, - "solana:5eykt4UsFv8P8NJdTREpY1vzqKqZKvdp/token:EPjFWdd5AufqSSqeM2qN1xzybapC8G4wEGGkZwyTDt1v": { - "amount": "0" - }, - "solana:5eykt4UsFv8P8NJdTREpY1vzqKqZKvdp/token:Es9vMFrzaCERmJfrF4H2FYD4KCoNkY11McCe8BenwNYB": { - "amount": "0" - } - }, - "574cb22f-c2d5-40d2-86a5-e3393d33050f": { - "bip122:000000000019d6689c085ae165831e93/slip44:0": { - "amount": "0.00015445" - } - }, - "5a747531-d39f-49d5-afbd-59c018cc4757": { - "solana:5eykt4UsFv8P8NJdTREpY1vzqKqZKvdp/slip44:501": { - "amount": "0" - } - }, - "7020eb89-94df-4e67-ba9f-a9ebe6c40524": { - "eip155:1/erc20:0xD4419C2d3DAA986Dc30444Fa333a846be44Fd1eb": { - "amount": "0" - }, - "eip155:1/erc20:0xacA92E438df0B2401fF60dA7E4337B687a2435DA": { - "amount": "0" - }, - "eip155:1/erc20:0xaca92e438df0b2401ff60da7e4337b687a2435da": { - "amount": "0" - }, - "eip155:1/slip44:60": { - "amount": "0.000305625930590956" - }, - "eip155:10/slip44:60": { - "amount": "0.000000001108804847" - }, - "eip155:137/erc20:0xc2132D05D31c914a87C6611C10748AEb04B58e8F": { - "amount": "0" - }, - "eip155:137/slip44:966": { - "amount": "0" - }, - "eip155:143/erc20:0xaca92e438df0b2401ff60da7e4337b687a2435da": { - "amount": "0" - }, - "eip155:143/slip44:268435779": { - "amount": "0" - }, - "eip155:324/slip44:60": { - "amount": "0" - }, - "eip155:42161/slip44:60": { - "amount": "0" - }, - "eip155:43114/erc20:0xB97EF9Ef8734C71904D8002F8b6Bc66Dd9c48a6E": { - "amount": "0" - }, - "eip155:43114/slip44:9005": { - "amount": "0" - }, - "eip155:4326/erc20:0x0000000000000000000000000000000000000000": { - "amount": "0" - }, - "eip155:4326/erc20:0x021ee124cF23D302A7f725AE7a01B77A8ce9782B": { - "amount": "0" - }, - "eip155:4326/erc20:0x0C833bcDd2dC74d7a8Dca82ed011E32d04Fe5843": { - "amount": "0" - }, - "eip155:4326/erc20:0x16513005E80A20683b3527f977Ff74166F6Bcf73": { - "amount": "0" - }, - "eip155:4326/erc20:0x1f2C6BF8d3Cbd7EF80d9dd42A21b297a0a7af136": { - "amount": "0" - }, - "eip155:4326/erc20:0x27a4A176007047A9470dbaEd609290F68815B069": { - "amount": "0" - }, - "eip155:4326/erc20:0x2eA493384F42d7Ea78564F3EF4C86986eAB4a890": { - "amount": "0" - }, - "eip155:4326/erc20:0x3F927036A6c29F50e1c2dfceba572FC40Cf39069": { - "amount": "0" - }, - "eip155:4326/erc20:0x551DFe38994eC53c9E7E18084D73893225Eea3bf": { - "amount": "0" - }, - "eip155:4326/erc20:0x5d3a1Ff2b6BAb83b63cd9AD0787074081a52ef34": { - "amount": "0" - }, - "eip155:4326/erc20:0x601aC63637933D88285A025C685AC4e9a92a98dA": { - "amount": "0" - }, - "eip155:4326/erc20:0xB0F70C0bD6FD87dbEb7C10dC692a2a6106817072": { - "amount": "0" - }, - "eip155:4326/erc20:0xB8CE59FC3717ada4C02eaDF9682A9e934F625ebb": { - "amount": "0" - }, - "eip155:4326/erc20:0xFAfDdbb3FC7688494971a79cc65DCa3EF82079E7": { - "amount": "0" - }, - "eip155:4326/erc20:0xcCcc62962d17b8914c62D74FfB843d73B2a3cccC": { - "amount": "0" - }, - "eip155:4326/erc20:0xf7d2F0d0b0517CBDbf87C86910ce10FaAab3589D": { - "amount": "0" - }, - "eip155:4326/slip44:60": { - "amount": "0" - }, - "eip155:56/erc20:0x55d398326f99059fF775485246999027B3197955": { - "amount": "1.038408725899185861" - }, - "eip155:56/slip44:714": { - "amount": "0.00000823674" - }, - "eip155:59144/erc20:0xaca92e438df0b2401ff60da7e4337b687a2435da": { - "amount": "0" - }, - "eip155:59144/slip44:60": { - "amount": "0" - } - }, - "8b0e3ad2-d40d-47b1-a9c3-702eb67ab1ba": { - "tron:2494104990/slip44:195": { - "amount": "0" - }, - "tron:2494104990/slip44:195-in-lock-period": { - "amount": "0" - }, - "tron:2494104990/slip44:195-ready-for-withdrawal": { - "amount": "0" - }, - "tron:2494104990/slip44:195-staked-for-bandwidth": { - "amount": "0" - }, - "tron:2494104990/slip44:195-staked-for-energy": { - "amount": "0" - }, - "tron:2494104990/slip44:195-staking-rewards": { - "amount": "0" - }, - "tron:2494104990/slip44:bandwidth": { - "amount": "0" - }, - "tron:2494104990/slip44:energy": { - "amount": "0" - }, - "tron:2494104990/slip44:maximum-bandwidth": { - "amount": "0" - }, - "tron:2494104990/slip44:maximum-energy": { - "amount": "0" - }, - "tron:3448148188/slip44:195": { - "amount": "0" - }, - "tron:3448148188/slip44:195-in-lock-period": { - "amount": "0" - }, - "tron:3448148188/slip44:195-ready-for-withdrawal": { - "amount": "0" - }, - "tron:3448148188/slip44:195-staked-for-bandwidth": { - "amount": "0" - }, - "tron:3448148188/slip44:195-staked-for-energy": { - "amount": "0" - }, - "tron:3448148188/slip44:195-staking-rewards": { - "amount": "0" - }, - "tron:3448148188/slip44:bandwidth": { - "amount": "0" - }, - "tron:3448148188/slip44:energy": { - "amount": "0" - }, - "tron:3448148188/slip44:maximum-bandwidth": { - "amount": "0" - }, - "tron:3448148188/slip44:maximum-energy": { - "amount": "0" - }, - "tron:728126428/slip44:195": { - "amount": "0" - }, - "tron:728126428/slip44:195-in-lock-period": { - "amount": "0" - }, - "tron:728126428/slip44:195-ready-for-withdrawal": { - "amount": "0" - }, - "tron:728126428/slip44:195-staked-for-bandwidth": { - "amount": "0" - }, - "tron:728126428/slip44:195-staked-for-energy": { - "amount": "0" - }, - "tron:728126428/slip44:195-staking-rewards": { - "amount": "0" - }, - "tron:728126428/slip44:bandwidth": { - "amount": "0" - }, - "tron:728126428/slip44:energy": { - "amount": "0" - }, - "tron:728126428/slip44:maximum-bandwidth": { - "amount": "0" - }, - "tron:728126428/slip44:maximum-energy": { - "amount": "0" - } - }, - "c5bf70b0-2c4b-4016-9107-cab94be5fbb0": { - "tron:728126428/slip44:195": { - "amount": "49.889968" - }, - "tron:728126428/slip44:bandwidth": { - "amount": "600" - }, - "tron:728126428/slip44:maximum-bandwidth": { - "amount": "600" - }, - "tron:728126428/slip44:energy": { - "amount": "0" - }, - "tron:728126428/slip44:maximum-energy": { - "amount": "0" - }, - "tron:728126428/slip44:195-staked-for-bandwidth": { - "amount": "0" - }, - "tron:728126428/slip44:195-staked-for-energy": { - "amount": "0" - }, - "tron:728126428/slip44:195-ready-for-withdrawal": { - "amount": "0" - }, - "tron:728126428/slip44:195-in-lock-period": { - "amount": "0" - }, - "tron:728126428/slip44:195-staking-rewards": { - "amount": "0" - }, - "tron:3448148188/slip44:195": { - "amount": "0" - }, - "tron:2494104990/slip44:195": { - "amount": "0" - }, - "tron:3448148188/slip44:195-staked-for-bandwidth": { - "amount": "0" - }, - "tron:2494104990/slip44:195-staked-for-bandwidth": { - "amount": "0" - }, - "tron:3448148188/slip44:195-staked-for-energy": { - "amount": "0" - }, - "tron:2494104990/slip44:195-staked-for-energy": { - "amount": "0" - }, - "tron:3448148188/slip44:195-ready-for-withdrawal": { - "amount": "0" - }, - "tron:2494104990/slip44:195-ready-for-withdrawal": { - "amount": "0" - }, - "tron:3448148188/slip44:195-staking-rewards": { - "amount": "0" - }, - "tron:2494104990/slip44:195-staking-rewards": { - "amount": "0" - }, - "tron:3448148188/slip44:195-in-lock-period": { - "amount": "0" - }, - "tron:2494104990/slip44:195-in-lock-period": { - "amount": "0" - }, - "tron:3448148188/slip44:bandwidth": { - "amount": "0" - }, - "tron:2494104990/slip44:bandwidth": { - "amount": "0" - }, - "tron:3448148188/slip44:maximum-bandwidth": { - "amount": "0" - }, - "tron:2494104990/slip44:maximum-bandwidth": { - "amount": "0" - }, - "tron:3448148188/slip44:energy": { - "amount": "0" - }, - "tron:2494104990/slip44:energy": { - "amount": "0" - }, - "tron:3448148188/slip44:maximum-energy": { - "amount": "0" - }, - "tron:2494104990/slip44:maximum-energy": { - "amount": "0" - } - }, - "c6d62ae8-d02c-4a7a-8222-17ed6cdf0e52": { - "bip122:000000000019d6689c085ae165831e93/slip44:0": { - "amount": "0" - } - }, - "c86652a6-e1f3-4e4c-b411-c58efe220dcf": { - "solana:5eykt4UsFv8P8NJdTREpY1vzqKqZKvdp/slip44:501": { - "amount": "0" - } - }, - "cf6fe6ed-1d1c-4649-9662-a232e0aadb82": { - "eip155:1/erc20:0x14c3abF95Cb9C93a8b82C1CdCB76D72Cb87b2d4c": { - "amount": "0" - }, - "eip155:1/erc20:0xD4419C2d3DAA986Dc30444Fa333a846be44Fd1eb": { - "amount": "222.000000000000000000" - }, - "eip155:1/erc20:0xacA92E438df0B2401fF60dA7E4337B687a2435DA": { - "amount": "2.410754" - }, - "eip155:1/erc20:0xaca92e438df0b2401ff60da7e4337b687a2435da": { - "amount": "0" - }, - "eip155:1/slip44:60": { - "amount": "0.000166047313074794" - }, - "eip155:10/slip44:60": { - "amount": "0.002236572382273542" - }, - "eip155:137/erc20:0xb33EaAd8d922B1083446DC23f610c2567fB5180f": { - "amount": "0" - }, - "eip155:137/erc20:0xc2132D05D31c914a87C6611C10748AEb04B58e8F": { - "amount": "0" - }, - "eip155:137/slip44:966": { - "amount": "0.031263872209934727" - }, - "eip155:143/erc20:0xaca92e438df0b2401ff60da7e4337b687a2435da": { - "amount": "0" - }, - "eip155:143/slip44:268435779": { - "amount": "304.877580254" - }, - "eip155:324/slip44:60": { - "amount": "0" - }, - "eip155:42161/erc20:0xaf88d065e77c8cC2239327C5EDb3A432268e5831": { - "amount": "0" - }, - "eip155:42161/slip44:60": { - "amount": "0" - }, - "eip155:43114/erc20:0xB97EF9Ef8734C71904D8002F8b6Bc66Dd9c48a6E": { - "amount": "3.193536" - }, - "eip155:43114/slip44:9005": { - "amount": "0" - }, - "eip155:4326/erc20:0x0000000000000000000000000000000000000000": { - "amount": "0" - }, - "eip155:4326/erc20:0x021ee124cF23D302A7f725AE7a01B77A8ce9782B": { - "amount": "0" - }, - "eip155:4326/erc20:0x0C833bcDd2dC74d7a8Dca82ed011E32d04Fe5843": { - "amount": "0" - }, - "eip155:4326/erc20:0x118b949f2CaF55F9D75cdE8D2F6C8fEC98376420": { - "amount": "0" - }, - "eip155:4326/erc20:0x141cF6BFe9D5057883B9BECB39fEE8A62982dC93": { - "amount": "0" - }, - "eip155:4326/erc20:0x16513005E80A20683b3527f977Ff74166F6Bcf73": { - "amount": "0" - }, - "eip155:4326/erc20:0x1f2C6BF8d3Cbd7EF80d9dd42A21b297a0a7af136": { - "amount": "0" - }, - "eip155:4326/erc20:0x273D38762CEe7Db9474ec0FD37a94bBda198E6c0": { - "amount": "0" - }, - "eip155:4326/erc20:0x28B7E77f82B25B95953825F1E3eA0E36c1c29861": { - "amount": "0" - }, - "eip155:4326/erc20:0x2A3a4c92ce37ABd7239fB010BC390710f4062407": { - "amount": "0" - }, - "eip155:4326/erc20:0x2eA493384F42d7Ea78564F3EF4C86986eAB4a890": { - "amount": "0" - }, - "eip155:4326/erc20:0x39894d0B1aa402ae565678fc47F31717Ac2ae888": { - "amount": "0" - }, - "eip155:4326/erc20:0x3F927036A6c29F50e1c2dfceba572FC40Cf39069": { - "amount": "0" - }, - "eip155:4326/erc20:0x551DFe38994eC53c9E7E18084D73893225Eea3bf": { - "amount": "0" - }, - "eip155:4326/erc20:0x5d3a1Ff2b6BAb83b63cd9AD0787074081a52ef34": { - "amount": "0" - }, - "eip155:4326/erc20:0x601aC63637933D88285A025C685AC4e9a92a98dA": { - "amount": "0" - }, - "eip155:4326/erc20:0xB0F70C0bD6FD87dbEb7C10dC692a2a6106817072": { - "amount": "0" - }, - "eip155:4326/erc20:0xB8CE59FC3717ada4C02eaDF9682A9e934F625ebb": { - "amount": "0" - }, - "eip155:4326/erc20:0xFAfDdbb3FC7688494971a79cc65DCa3EF82079E7": { - "amount": "0" - }, - "eip155:4326/erc20:0xcCcc62962d17b8914c62D74FfB843d73B2a3cccC": { - "amount": "0" - }, - "eip155:4326/erc20:0xf7d2F0d0b0517CBDbf87C86910ce10FaAab3589D": { - "amount": "0" - }, - "eip155:56/erc20:0x55d398326f99059fF775485246999027B3197955": { - "amount": "0" - }, - "eip155:56/slip44:714": { - "amount": "0.00001483778992627" - }, - "eip155:59144/erc20:0x176211869cA2b568f2A7D4EE941E073a821EE1ff": { - "amount": "0" - }, - "eip155:59144/erc20:0xacA92E438df0B2401fF60dA7E4337B687a2435DA": { - "amount": "0" - }, - "eip155:59144/erc20:0xaca92e438df0b2401ff60da7e4337b687a2435da": { - "amount": "0" - }, - "eip155:59144/slip44:60": { - "amount": "0.001082274048352509" - } - }, - "d05ca007-7a11-470f-8433-a89767f95995": { - "bip122:000000000019d6689c085ae165831e93/slip44:0": { - "amount": "0" - } - }, - "e4cb2ec8-15e3-494a-bde2-6ea14e6d0d6c": { - "eip155:1/slip44:60": { - "amount": "0" - }, - "eip155:10/slip44:60": { - "amount": "0" - }, - "eip155:137/slip44:966": { - "amount": "0" - }, - "eip155:143/slip44:268435779": { - "amount": "0" - }, - "eip155:324/slip44:60": { - "amount": "0" - }, - "eip155:42161/slip44:60": { - "amount": "0" - }, - "eip155:43114/slip44:9005": { - "amount": "0" - }, - "eip155:4326/erc20:0x0000000000000000000000000000000000000000": { - "amount": "0" - }, - "eip155:56/slip44:714": { - "amount": "0" - }, - "eip155:59144/slip44:60": { - "amount": "0" - }, - "solana:5eykt4UsFv8P8NJdTREpY1vzqKqZKvdp/slip44:501": { - "amount": "0" - } - }, - "fedf900d-3caf-4540-9e24-c63400ef2b18": { - "tron:2494104990/slip44:195": { - "amount": "0" - }, - "tron:2494104990/slip44:195-in-lock-period": { - "amount": "0" - }, - "tron:2494104990/slip44:195-ready-for-withdrawal": { - "amount": "0" - }, - "tron:2494104990/slip44:195-staked-for-bandwidth": { - "amount": "0" - }, - "tron:2494104990/slip44:195-staked-for-energy": { - "amount": "0" - }, - "tron:2494104990/slip44:195-staking-rewards": { - "amount": "0" - }, - "tron:2494104990/slip44:bandwidth": { - "amount": "0" - }, - "tron:2494104990/slip44:energy": { - "amount": "0" - }, - "tron:2494104990/slip44:maximum-bandwidth": { - "amount": "0" - }, - "tron:2494104990/slip44:maximum-energy": { - "amount": "0" - }, - "tron:3448148188/slip44:195": { - "amount": "0" - }, - "tron:3448148188/slip44:195-in-lock-period": { - "amount": "0" - }, - "tron:3448148188/slip44:195-ready-for-withdrawal": { - "amount": "0" - }, - "tron:3448148188/slip44:195-staked-for-bandwidth": { - "amount": "0" - }, - "tron:3448148188/slip44:195-staked-for-energy": { - "amount": "0" - }, - "tron:3448148188/slip44:195-staking-rewards": { - "amount": "0" - }, - "tron:3448148188/slip44:bandwidth": { - "amount": "0" - }, - "tron:3448148188/slip44:energy": { - "amount": "0" - }, - "tron:3448148188/slip44:maximum-bandwidth": { - "amount": "0" - }, - "tron:3448148188/slip44:maximum-energy": { - "amount": "0" - }, - "tron:728126428/slip44:195": { - "amount": "0" - }, - "tron:728126428/slip44:195-in-lock-period": { - "amount": "0" - }, - "tron:728126428/slip44:195-ready-for-withdrawal": { - "amount": "0" - }, - "tron:728126428/slip44:195-staked-for-bandwidth": { - "amount": "0" - }, - "tron:728126428/slip44:195-staked-for-energy": { - "amount": "0" - }, - "tron:728126428/slip44:195-staking-rewards": { - "amount": "0" - }, - "tron:728126428/slip44:bandwidth": { - "amount": "0" - }, - "tron:728126428/slip44:energy": { - "amount": "0" - }, - "tron:728126428/slip44:maximum-bandwidth": { - "amount": "0" - }, - "tron:728126428/slip44:maximum-energy": { - "amount": "0" - } - }, - "ffb79cf7-3a88-4cfe-864c-a9f656ce1840": { - "bip122:000000000019d6689c085ae165831e93/slip44:0": { - "amount": "0" - } - } - }, - "assetsPrice": { - "eip155:1/slip44:60": { - "id": "eip155:1/slip44:60", - "price": 2104.15, - "marketCap": 253940707670, - "allTimeHigh": 4946.05, - "allTimeLow": 0.432979, - "totalVolume": 17599498817, - "high1d": 2192.13, - "low1d": 2093.23, - "circulatingSupply": 120685747.4287429, - "dilutedMarketCap": 253940707670, - "marketCapPercentChange1d": -3.40721, - "priceChange1d": -75.83300825204878, - "pricePercentChange1h": 0.38530249074169703, - "pricePercentChange1d": -3.4786082210530314, - "pricePercentChange7d": -9.777646316930449, - "pricePercentChange14d": -10.566381250000676, - "pricePercentChange30d": -10.986504895952764, - "pricePercentChange200d": -44.18281615879957, - "pricePercentChange1y": -18.316903800941922, - "liquidity": 218452808.4449664, - "assetPriceType": "fungible", - "usdPrice": 2104.15, - "lastUpdated": 1779126364403 - }, - "eip155:1/erc20:0x6B175474E89094C44Da98b954EedeAC495271d0F": { - "id": "eip155:1/erc20:0x6b175474e89094c44da98b954eedeac495271d0f", - "price": 0.999692, - "marketCap": 4385695595, - "allTimeHigh": 1.22, - "allTimeLow": 0.88196, - "totalVolume": 268846167, - "high1d": 0.999904, - "low1d": 0.999414, - "circulatingSupply": 4386796969.400237, - "dilutedMarketCap": 4385695595, - "marketCapPercentChange1d": 0.15559, - "priceChange1d": 0.00016728, - "pricePercentChange1h": 0.010920894179145131, - "pricePercentChange1d": 0.016736213943889196, - "pricePercentChange7d": 0.00946555696725301, - "pricePercentChange14d": -0.006235277535892024, - "pricePercentChange30d": 0.026763823094852635, - "pricePercentChange200d": -0.037938211647420374, - "pricePercentChange1y": -0.01736919481063436, - "liquidity": 52885514.197185196, - "assetPriceType": "fungible", - "usdPrice": 0.999692, - "lastUpdated": 1779126362449 - }, - "eip155:1/erc20:0x14c3abF95Cb9C93a8b82C1CdCB76D72Cb87b2d4c": { - "id": "eip155:1/erc20:0x14c3abf95cb9c93a8b82c1cdcb76d72cb87b2d4c", - "price": 296.926549109769, - "marketCap": 4409584891880, - "allTimeHigh": null, - "allTimeLow": null, - "totalVolume": 17678487.371798, - "high1d": null, - "low1d": null, - "circulatingSupply": null, - "dilutedMarketCap": 4361065932626.67, - "marketCapPercentChange1d": null, - "priceChange1d": null, - "pricePercentChange1h": 0.2636006906825598, - "pricePercentChange1d": -1.23350719764039, - "pricePercentChange7d": null, - "pricePercentChange14d": null, - "pricePercentChange30d": null, - "pricePercentChange200d": null, - "pricePercentChange1y": null, - "totalSupply": 14687356000, - "holderCount": 4099, - "assetPriceType": "fungible", - "usdPrice": 296.926549109769, - "lastUpdated": 1779126362449 - }, - "eip155:1/erc20:0xD4419C2d3DAA986Dc30444Fa333a846be44Fd1eb": { - "id": "eip155:1/erc20:0xd4419c2d3daa986dc30444fa333a846be44fd1eb", - "price": 0.0001134733180127, - "marketCap": 0, - "allTimeHigh": 0.00021605221408971, - "allTimeLow": 0.000077143637782163, - "totalVolume": 21653802.997447472, - "high1d": 0.00012159720315792, - "low1d": 0.000110913346273088, - "circulatingSupply": 0, - "dilutedMarketCap": null, - "marketCapPercentChange1d": null, - "priceChange1d": null, - "pricePercentChange1h": -0.11, - "pricePercentChange1d": 0, - "pricePercentChange7d": null, - "pricePercentChange14d": null, - "pricePercentChange30d": null, - "pricePercentChange200d": null, - "pricePercentChange1y": null, - "assetPriceType": "fungible", - "usdPrice": 0.0001134733180127, - "lastUpdated": 1779126362449 - }, - "eip155:8453/slip44:60": { - "id": "eip155:8453/slip44:60", - "price": 2104.15, - "marketCap": 253940707670, - "allTimeHigh": 4946.05, - "allTimeLow": 0.432979, - "totalVolume": 17599498817, - "high1d": 2192.13, - "low1d": 2093.23, - "circulatingSupply": 120685747.4287429, - "dilutedMarketCap": 253940707670, - "marketCapPercentChange1d": -3.40721, - "priceChange1d": -75.83300825204878, - "pricePercentChange1h": 0.38530249074169703, - "pricePercentChange1d": -3.4786082210530314, - "pricePercentChange7d": -9.777646316930449, - "pricePercentChange14d": -10.566381250000676, - "pricePercentChange30d": -10.986504895952764, - "pricePercentChange200d": -44.18281615879957, - "pricePercentChange1y": -18.316903800941922, - "liquidity": 218452808.4449664, - "assetPriceType": "fungible", - "usdPrice": 2104.15, - "lastUpdated": 1779126364403 - }, - "eip155:8453/erc20:0x07d15798a67253D76cea61F0eA6F57AeDC59DffB": { - "id": "eip155:8453/erc20:0x07d15798a67253d76cea61f0ea6f57aedc59dffb", - "price": 0.00000451859990347, - "marketCap": 258825.6545156292, - "allTimeHigh": 0.0000262, - "allTimeLow": 0.000003849999999983, - "totalVolume": 109363314.6226106, - "high1d": 0.0000052182079639, - "low1d": 0.00000414331148121, - "circulatingSupply": 57280055779.41685, - "dilutedMarketCap": null, - "marketCapPercentChange1d": null, - "priceChange1d": null, - "pricePercentChange1h": 0.4, - "pricePercentChange1d": -5.96, - "pricePercentChange7d": null, - "pricePercentChange14d": null, - "pricePercentChange30d": null, - "pricePercentChange200d": null, - "pricePercentChange1y": null, - "assetPriceType": "fungible", - "usdPrice": 0.00000451859990347, - "lastUpdated": 1779126362449 - }, - "eip155:8453/erc20:0x3d63825B0d8669307366E6c8202f656b9E91D368": { - "id": "eip155:8453/erc20:0x3d63825b0d8669307366e6c8202f656b9e91d368", - "price": 0.000007278608383846, - "marketCap": 29114.433535384, - "allTimeHigh": 0.00135352000000001, - "allTimeLow": 0.000003120000000009, - "totalVolume": 3663358.195072, - "high1d": 0.000009606035351168, - "low1d": 0.00000682667889117, - "circulatingSupply": 4000000000, - "dilutedMarketCap": null, - "marketCapPercentChange1d": null, - "priceChange1d": null, - "pricePercentChange1h": 0, - "pricePercentChange1d": 0, - "pricePercentChange7d": null, - "pricePercentChange14d": null, - "pricePercentChange30d": null, - "pricePercentChange200d": null, - "pricePercentChange1y": null, - "assetPriceType": "fungible", - "usdPrice": 0.000007278608383846, - "lastUpdated": 1779126362449 - }, - "eip155:8453/erc20:0x623cD3a3EdF080057892aaF8D773Bbb7A5C9b6e9": { - "id": "eip155:8453/erc20:0x623cd3a3edf080057892aaf8d773bbb7a5c9b6e9", - "price": 0.000651853033138812, - "marketCap": 353173.849416803, - "allTimeHigh": 0.0629624183040723, - "allTimeLow": 0.000623127441780115, - "totalVolume": 98541.5719436287, - "high1d": 0.000669404229529376, - "low1d": 0.000645686126434403, - "circulatingSupply": 541808362.7489184, - "dilutedMarketCap": 385766.501073769, - "marketCapPercentChange1d": -1.95471, - "priceChange1d": -0.000014520079925607, - "pricePercentChange1h": -0.7143558734121473, - "pricePercentChange1d": -2.1779073115304413, - "pricePercentChange7d": -0.7069414908059729, - "pricePercentChange14d": -3.1355357723833897, - "pricePercentChange30d": -0.4709233762962848, - "pricePercentChange200d": -75.602079291652, - "pricePercentChange1y": -88.59893243878955, - "assetPriceType": "fungible", - "usdPrice": 0.000651853033138812, - "lastUpdated": 1779126362449 - }, - "eip155:8453/erc20:0x88Fb150BDc53A65fe94Dea0c9BA0a6dAf8C6e196": { - "id": "eip155:8453/erc20:0x88fb150bdc53a65fe94dea0c9ba0a6daf8c6e196", - "price": 9.44, - "marketCap": 6863718223, - "allTimeHigh": 52.7, - "allTimeLow": 0.148183, - "totalVolume": 367659763, - "high1d": 9.76, - "low1d": 9.37, - "circulatingSupply": 727099970.4255477, - "dilutedMarketCap": 9439854907, - "marketCapPercentChange1d": -2.30906, - "priceChange1d": -0.23191403733159355, - "pricePercentChange1h": 0.3175239802736925, - "pricePercentChange1d": -2.398969728273755, - "pricePercentChange7d": -10.722444214749787, - "pricePercentChange14d": 0.3873611277134814, - "pricePercentChange30d": 0.706551954963502, - "pricePercentChange200d": -44.163403028008304, - "pricePercentChange1y": -42.08712495811131, - "liquidity": 26476380.399498962, - "assetPriceType": "fungible", - "usdPrice": 9.44, - "lastUpdated": 1779126362449 - }, - "eip155:8453/erc20:0xC438B0c0E80A8Fa1B36898d1b36A3fc2eC371C54": { - "id": "eip155:8453/erc20:0xc438b0c0e80a8fa1b36898d1b36a3fc2ec371c54", - "price": 0.0000207115335042388, - "marketCap": 20714.5380788622, - "allTimeHigh": 0.0039293825218107, - "allTimeLow": 0.0000203009083236393, - "totalVolume": 6.37971317325168, - "high1d": 0.0000214025856377552, - "low1d": 0.0000203009083236393, - "circulatingSupply": 999999999.999993, - "dilutedMarketCap": 20714.5380788622, - "marketCapPercentChange1d": -1.15655, - "priceChange1d": -2.42010850873e-7, - "pricePercentChange1h": 1.9864947022361155, - "pricePercentChange1d": -1.1565533852554568, - "pricePercentChange7d": -7.954893796462903, - "pricePercentChange14d": -10.07398882021542, - "pricePercentChange30d": -19.061954404063318, - "pricePercentChange200d": -45.04592772847019, - "pricePercentChange1y": -91.56545962718117, - "assetPriceType": "fungible", - "usdPrice": 0.0000207115335042388, - "lastUpdated": 1779126362449 - }, - "eip155:8453/erc20:0xCa72827a3D211CfD8F6b00Ac98824872b72CAb49": { - "id": "eip155:8453/erc20:0xca72827a3d211cfd8f6b00ac98824872b72cab49", - "price": 0.99313, - "marketCap": 75136364, - "allTimeHigh": 1.089, - "allTimeLow": 0.724325, - "totalVolume": 9.22, - "high1d": 0.993172, - "low1d": 0.992936, - "circulatingSupply": 75655687.755582, - "dilutedMarketCap": 75136364, - "marketCapPercentChange1d": 0.00637, - "priceChange1d": -0.000039129750457945, - "pricePercentChange1h": 0.009510712405161973, - "pricePercentChange1d": -0.003939888454275518, - "pricePercentChange7d": -0.04417648696226419, - "pricePercentChange14d": -0.07500760757873508, - "pricePercentChange30d": -0.18996534026063625, - "pricePercentChange200d": -0.37229104893580606, - "pricePercentChange1y": 1.950385101582745, - "liquidity": 23095.837199222507, - "assetPriceType": "fungible", - "usdPrice": 0.99313, - "lastUpdated": 1779126362449 - }, - "eip155:8453/erc20:0xD968196FA6977c4e58F2af5aC01C655ea8332d22": { - "id": "eip155:8453/erc20:0xd968196fa6977c4e58f2af5ac01c655ea8332d22", - "price": 4.07154008943e-7, - "marketCap": 407154.008943, - "allTimeHigh": 0.000002763827674905, - "allTimeLow": 3.78393532024e-7, - "totalVolume": 79889364.8826172, - "high1d": 4.27248923823e-7, - "low1d": 3.78393532024e-7, - "circulatingSupply": 1000000000000, - "dilutedMarketCap": null, - "marketCapPercentChange1d": null, - "priceChange1d": null, - "pricePercentChange1h": 0, - "pricePercentChange1d": -3.54, - "pricePercentChange7d": null, - "pricePercentChange14d": null, - "pricePercentChange30d": null, - "pricePercentChange200d": null, - "pricePercentChange1y": null, - "assetPriceType": "fungible", - "usdPrice": 4.07154008943e-7, - "lastUpdated": 1779126362449 - }, - "eip155:56/slip44:714": { - "id": "eip155:56/slip44:714", - "price": 639.86, - "marketCap": 86230819089, - "allTimeHigh": 1369.99, - "allTimeLow": 0.0398177, - "totalVolume": 877644458, - "high1d": 656.83, - "low1d": 635.04, - "circulatingSupply": 134785291.29, - "dilutedMarketCap": 86230819089, - "marketCapPercentChange1d": -1.61475, - "priceChange1d": -10.68487312350112, - "pricePercentChange1h": 0.1421804709021826, - "pricePercentChange1d": -1.6424387080073912, - "pricePercentChange7d": -3.239796707265997, - "pricePercentChange14d": 2.254378169634202, - "pricePercentChange30d": 0.9991483224906604, - "pricePercentChange200d": -40.55143954558362, - "pricePercentChange1y": -2.0421416623967117, - "liquidity": 22854353.787967276, - "assetPriceType": "fungible", - "usdPrice": 639.86, - "lastUpdated": 1779126364403 - }, - "eip155:56/erc20:0x1AF3F329e8BE154074D8769D1FFa4eE058B1DBc3": { - "id": "eip155:56/erc20:0x1af3f329e8be154074d8769d1ffa4ee058b1dbc3", - "price": 0.9990552822548269, - "marketCap": 31073574.43539065, - "allTimeHigh": 1.058, - "allTimeLow": 0.826447999999987, - "totalVolume": 343815.9510192342, - "high1d": 1.0101247691494344, - "low1d": 0.9916252199163054, - "circulatingSupply": 31102957.95169499, - "dilutedMarketCap": null, - "marketCapPercentChange1d": null, - "priceChange1d": null, - "pricePercentChange1h": -0.08, - "pricePercentChange1d": -0.08, - "pricePercentChange7d": null, - "pricePercentChange14d": null, - "pricePercentChange30d": null, - "pricePercentChange200d": null, - "pricePercentChange1y": null, - "assetPriceType": "fungible", - "usdPrice": 0.9990552822548269, - "lastUpdated": 1779126362449 - }, - "eip155:56/erc20:0x55d398326f99059fF775485246999027B3197955": { - "id": "eip155:56/erc20:0x55d398326f99059ff775485246999027b3197955", - "price": 0.99928, - "marketCap": 9178395869, - "allTimeHigh": 1.05, - "allTimeLow": 0.942186, - "totalVolume": 803178599, - "high1d": 1, - "low1d": 0.9986, - "circulatingSupply": 9184992539.51384, - "dilutedMarketCap": 9178395869, - "marketCapPercentChange1d": -0.02732, - "priceChange1d": -0.000168207864876369, - "pricePercentChange1h": -0.029196233333950123, - "pricePercentChange1d": -0.01683007754798247, - "pricePercentChange7d": -0.0006643009266779973, - "pricePercentChange14d": -0.04363303709493185, - "pricePercentChange30d": -0.06359181479007367, - "pricePercentChange200d": -0.07014885197949143, - "pricePercentChange1y": -0.1606387192769309, - "liquidity": 9505227091.471348, - "assetPriceType": "fungible", - "usdPrice": 0.99928, - "lastUpdated": 1779126362449 - }, - "eip155:56/erc20:0xF8A0BF9cF54Bb92F17374d9e9A321E6a111a51bD": { - "id": "eip155:56/erc20:0xf8a0bf9cf54bb92f17374d9e9a321e6a111a51bd", - "price": 9.44, - "marketCap": 6863718223, - "allTimeHigh": 52.7, - "allTimeLow": 0.148183, - "totalVolume": 367659763, - "high1d": 9.76, - "low1d": 9.37, - "circulatingSupply": 727099970.4255477, - "dilutedMarketCap": 9439854907, - "marketCapPercentChange1d": -2.30906, - "priceChange1d": -0.23191403733159355, - "pricePercentChange1h": 0.3175239802736925, - "pricePercentChange1d": -2.398969728273755, - "pricePercentChange7d": -10.722444214749787, - "pricePercentChange14d": 0.3873611277134814, - "pricePercentChange30d": 0.706551954963502, - "pricePercentChange200d": -44.163403028008304, - "pricePercentChange1y": -42.08712495811131, - "liquidity": 26476380.399498962, - "assetPriceType": "fungible", - "usdPrice": 9.44, - "lastUpdated": 1779126362449 - }, - "eip155:56/erc20:0x000Ae314E2A2172a039B26378814C252734f556A": { - "id": "eip155:56/erc20:0x000ae314e2a2172a039b26378814c252734f556a", - "price": 0.64954, - "marketCap": 1676408463, - "allTimeHigh": 2.41, - "allTimeLow": 0.099713, - "totalVolume": 103349712, - "high1d": 0.664935, - "low1d": 0.642641, - "circulatingSupply": 2579922243.4698935, - "dilutedMarketCap": 5082801959, - "marketCapPercentChange1d": -1.40399, - "priceChange1d": -0.009958712236775469, - "pricePercentChange1h": 0.06047281636979331, - "pricePercentChange1d": -1.5100426296859535, - "pricePercentChange7d": -5.000935718020159, - "pricePercentChange14d": -3.2254210624941297, - "pricePercentChange30d": -2.8682252283069047, - "pricePercentChange200d": -26.575222920845317, - "pricePercentChange1y": null, - "liquidity": 4785602.45234296, - "assetPriceType": "fungible", - "usdPrice": 0.64954, - "lastUpdated": 1779126362449 - }, - "eip155:137/slip44:966": { - "id": "eip155:137/slip44:966", - "price": 0.08991, - "marketCap": 957100972, - "allTimeHigh": 1.29, - "allTimeLow": 0.081453, - "totalVolume": 46683814, - "high1d": 0.09241, - "low1d": 0.088918, - "circulatingSupply": 10645154481.43636, - "dilutedMarketCap": 957100972, - "marketCapPercentChange1d": -1.83783, - "priceChange1d": -0.001711822411120292, - "pricePercentChange1h": 0.20987274171292572, - "pricePercentChange1d": -1.8683595815177496, - "pricePercentChange7d": -12.320278582912849, - "pricePercentChange14d": -7.015886310645815, - "pricePercentChange30d": 0.2180958916979836, - "pricePercentChange200d": -51.27058699164607, - "pricePercentChange1y": -63.12162332192103, - "liquidity": 54559.339025580324, - "assetPriceType": "fungible", - "usdPrice": 0.08991, - "lastUpdated": 1779126364403 - }, - "eip155:137/erc20:0x2791Bca1f2de4661ED88A30C99A7a9449Aa84174": { - "id": "eip155:137/erc20:0x2791bca1f2de4661ed88a30c99a7a9449aa84174", - "price": 1.0001312473645765, - "marketCap": 1068770313.0010698, - "allTimeHigh": 1.028, - "allTimeLow": 0.975633000000001, - "totalVolume": 29470810.467576, - "high1d": 1.0094546136784308, - "low1d": 0.9926056010759271, - "circulatingSupply": 1068630058.122234, - "dilutedMarketCap": null, - "marketCapPercentChange1d": null, - "priceChange1d": null, - "pricePercentChange1h": -0.04, - "pricePercentChange1d": 0.07, - "pricePercentChange7d": null, - "pricePercentChange14d": null, - "pricePercentChange30d": null, - "pricePercentChange200d": null, - "pricePercentChange1y": null, - "assetPriceType": "fungible", - "usdPrice": 1.0001312473645765, - "lastUpdated": 1779126362449 - }, - "eip155:143/slip44:268435779": { - "id": "eip155:143/slip44:268435779", - "price": 0.02632189, - "marketCap": 311258020, - "allTimeHigh": 0.04882901, - "allTimeLow": 0.01636691, - "totalVolume": 66041203, - "high1d": 0.02904069, - "low1d": 0.02608834, - "circulatingSupply": 11825165000, - "dilutedMarketCap": 2650142125, - "marketCapPercentChange1d": -5.09509, - "priceChange1d": -0.001457544850105668, - "pricePercentChange1h": 0.8952105552902903, - "pricePercentChange1d": -5.246848566812334, - "pricePercentChange7d": -21.88083546501118, - "pricePercentChange14d": -11.55846405368266, - "pricePercentChange30d": -21.95842431161472, - "pricePercentChange200d": null, - "pricePercentChange1y": null, - "liquidity": 48603526.40424816, - "assetPriceType": "fungible", - "usdPrice": 0.02632189, - "lastUpdated": 1779126364403 - }, - "eip155:10/slip44:60": { - "id": "eip155:10/slip44:60", - "price": 2104.15, - "marketCap": 253940707670, - "allTimeHigh": 4946.05, - "allTimeLow": 0.432979, - "totalVolume": 17599498817, - "high1d": 2192.13, - "low1d": 2093.23, - "circulatingSupply": 120685747.4287429, - "dilutedMarketCap": 253940707670, - "marketCapPercentChange1d": -3.40721, - "priceChange1d": -75.83300825204878, - "pricePercentChange1h": 0.38530249074169703, - "pricePercentChange1d": -3.4786082210530314, - "pricePercentChange7d": -9.777646316930449, - "pricePercentChange14d": -10.566381250000676, - "pricePercentChange30d": -10.986504895952764, - "pricePercentChange200d": -44.18281615879957, - "pricePercentChange1y": -18.316903800941922, - "liquidity": 218452808.4449664, - "assetPriceType": "fungible", - "usdPrice": 2104.15, - "lastUpdated": 1779126364403 - }, - "eip155:10/erc20:0x0b2C639c533813f4Aa9D7837CAf62653d097Ff85": { - "id": "eip155:10/erc20:0x0b2c639c533813f4aa9d7837caf62653d097ff85", - "price": 0.999687, - "marketCap": 76897548180, - "allTimeHigh": 1.043, - "allTimeLow": 0.877647, - "totalVolume": 14969698693, - "high1d": 1, - "low1d": 0.999072, - "circulatingSupply": 76921805532.86145, - "dilutedMarketCap": 76899845518, - "marketCapPercentChange1d": -0.06217, - "priceChange1d": -0.000109168334079701, - "pricePercentChange1h": -0.03655911530680087, - "pricePercentChange1d": -0.010919053936290748, - "pricePercentChange7d": -0.0033485270413815276, - "pricePercentChange14d": -0.012576026383498798, - "pricePercentChange30d": -0.01837774342443481, - "pricePercentChange200d": -0.013487204381956618, - "pricePercentChange1y": -0.021211137521695622, - "liquidity": 5288475754.205398, - "assetPriceType": "fungible", - "usdPrice": 0.999687, - "lastUpdated": 1779126362449 - }, - "eip155:10/erc20:0xDA10009cBd5D07dd0CeCc66161FC93D7c9000da1": { - "id": "eip155:10/erc20:0xda10009cbd5d07dd0cecc66161fc93d7c9000da1", - "price": 0.9997676922834058, - "marketCap": 14631886.926498424, - "allTimeHigh": 1.061, - "allTimeLow": 0.955882, - "totalVolume": 170272.87280318033, - "high1d": 1.0078675034674114, - "low1d": 0.9901916679383712, - "circulatingSupply": 14635286.81656048, - "dilutedMarketCap": null, - "marketCapPercentChange1d": null, - "priceChange1d": null, - "pricePercentChange1h": -0.01, - "pricePercentChange1d": 0.03, - "pricePercentChange7d": null, - "pricePercentChange14d": null, - "pricePercentChange30d": null, - "pricePercentChange200d": null, - "pricePercentChange1y": null, - "assetPriceType": "fungible", - "usdPrice": 0.9997676922834058, - "lastUpdated": 1779126362449 - }, - "eip155:10/erc20:0x0994206dfE8De6Ec6920FF4D779B0d950605Fb53": { - "id": "eip155:10/erc20:0x0994206dfe8de6ec6920ff4d779b0d950605fb53", - "price": 0.232238, - "marketCap": 352046735, - "allTimeHigh": 15.37, - "allTimeLow": 0.180354, - "totalVolume": 35426021, - "high1d": 0.238014, - "low1d": 0.227636, - "circulatingSupply": 1514650623, - "dilutedMarketCap": 553575135, - "marketCapPercentChange1d": -0.2499, - "priceChange1d": -0.000859718599230147, - "pricePercentChange1h": 0.060722716903962505, - "pricePercentChange1d": -0.3688235282969646, - "pricePercentChange7d": -13.64779028448162, - "pricePercentChange14d": -1.653543650618483, - "pricePercentChange30d": 0.38501290943954364, - "pricePercentChange200d": -53.21436106118958, - "pricePercentChange1y": -67.44206819417855, - "liquidity": 357520861.58687055, - "assetPriceType": "fungible", - "usdPrice": 0.232238, - "lastUpdated": 1779126362449 - }, - "eip155:10/erc20:0x4200000000000000000000000000000000000042": { - "id": "eip155:10/erc20:0x4200000000000000000000000000000000000042", - "price": 0.126222, - "marketCap": 271483682, - "allTimeHigh": 4.84, - "allTimeLow": 0.100074, - "totalVolume": 53807256, - "high1d": 0.131407, - "low1d": 0.124317, - "circulatingSupply": 2150875957, - "dilutedMarketCap": 542111009, - "marketCapPercentChange1d": -3.47396, - "priceChange1d": -0.004580528619887447, - "pricePercentChange1h": 0.4591230802621258, - "pricePercentChange1d": -3.5018613134466263, - "pricePercentChange7d": -19.636385367397192, - "pricePercentChange14d": 2.1662444616534695, - "pricePercentChange30d": -1.1552618625451123, - "pricePercentChange200d": -68.37564360061153, - "pricePercentChange1y": -83.08169778450599, - "liquidity": 1075495.6689833852, - "assetPriceType": "fungible", - "usdPrice": 0.126222, - "lastUpdated": 1779126362449 - }, - "eip155:42161/slip44:60": { - "id": "eip155:42161/slip44:60", - "price": 2104.15, - "marketCap": 253940707670, - "allTimeHigh": 4946.05, - "allTimeLow": 0.432979, - "totalVolume": 17599498817, - "high1d": 2192.13, - "low1d": 2093.23, - "circulatingSupply": 120685747.4287429, - "dilutedMarketCap": 253940707670, - "marketCapPercentChange1d": -3.40721, - "priceChange1d": -75.83300825204878, - "pricePercentChange1h": 0.38530249074169703, - "pricePercentChange1d": -3.4786082210530314, - "pricePercentChange7d": -9.777646316930449, - "pricePercentChange14d": -10.566381250000676, - "pricePercentChange30d": -10.986504895952764, - "pricePercentChange200d": -44.18281615879957, - "pricePercentChange1y": -18.316903800941922, - "liquidity": 218452808.4449664, - "assetPriceType": "fungible", - "usdPrice": 2104.15, - "lastUpdated": 1779126364403 - }, - "eip155:42161/erc20:0x306fD3e7b169Aa4ee19412323e1a5995B8c1a1f4": { - "id": "eip155:42161/erc20:0x306fd3e7b169aa4ee19412323e1a5995b8c1a1f4", - "price": 1.34629756002e-9, - "marketCap": 80800.3435697797, - "allTimeHigh": 0.00283637011674895, - "allTimeLow": 3.2941937799e-10, - "totalVolume": 3.89771478312559, - "high1d": 1.3514120672e-9, - "low1d": 1.31458282663e-9, - "circulatingSupply": 59996494221475.84, - "dilutedMarketCap": 80800.3435697797, - "marketCapPercentChange1d": 1.63993, - "priceChange1d": 2.2621e-11, - "pricePercentChange1h": null, - "pricePercentChange1d": 1.748403301650532, - "pricePercentChange7d": 16.337858584806682, - "pricePercentChange14d": 16.337858584806682, - "pricePercentChange30d": -24.73610551316709, - "pricePercentChange200d": -52.30050908702219, - "pricePercentChange1y": -74.44657673737993, - "bondingCurveProgressPercent": null, - "liquidity": 1914495.8632, - "assetPriceType": "fungible", - "usdPrice": 1.34629756002e-9, - "lastUpdated": 1779126362449 - }, - "eip155:59144/slip44:60": { - "id": "eip155:59144/slip44:60", - "price": 2104.15, - "marketCap": 253940707670, - "allTimeHigh": 4946.05, - "allTimeLow": 0.432979, - "totalVolume": 17599498817, - "high1d": 2192.13, - "low1d": 2093.23, - "circulatingSupply": 120685747.4287429, - "dilutedMarketCap": 253940707670, - "marketCapPercentChange1d": -3.40721, - "priceChange1d": -75.83300825204878, - "pricePercentChange1h": 0.38530249074169703, - "pricePercentChange1d": -3.4786082210530314, - "pricePercentChange7d": -9.777646316930449, - "pricePercentChange14d": -10.566381250000676, - "pricePercentChange30d": -10.986504895952764, - "pricePercentChange200d": -44.18281615879957, - "pricePercentChange1y": -18.316903800941922, - "liquidity": 218452808.4449664, - "assetPriceType": "fungible", - "usdPrice": 2104.15, - "lastUpdated": 1779126364403 - }, - "eip155:59144/erc20:0xacA92E438df0B2401fF60dA7E4337B687a2435DA": { - "id": "eip155:59144/erc20:0xaca92e438df0b2401ff60da7e4337b687a2435da", - "price": 0.999875, - "marketCap": 33817148, - "allTimeHigh": 1.26, - "allTimeLow": 0.979806, - "totalVolume": 523065, - "high1d": 1.004, - "low1d": 0.996874, - "circulatingSupply": 33826611.284955, - "dilutedMarketCap": 33817148, - "marketCapPercentChange1d": 0.01454, - "priceChange1d": 0.00009895, - "pricePercentChange1h": 0.024872832470449347, - "pricePercentChange1d": 0.009897401578188997, - "pricePercentChange7d": 0.016019505645414416, - "pricePercentChange14d": 0.07736206582621177, - "pricePercentChange30d": 0.0072860037643663975, - "pricePercentChange200d": 0.10497418385850388, - "pricePercentChange1y": null, - "liquidity": 42994997.53650001, - "assetPriceType": "fungible", - "usdPrice": 0.999875, - "lastUpdated": 1779126362449 - }, - "eip155:1/erc20:0xacA92E438df0B2401fF60dA7E4337B687a2435DA": { - "id": "eip155:1/erc20:0xaca92e438df0b2401ff60da7e4337b687a2435da", - "price": 0.999875, - "marketCap": 33817148, - "allTimeHigh": 1.26, - "allTimeLow": 0.979806, - "totalVolume": 523065, - "high1d": 1.004, - "low1d": 0.996874, - "circulatingSupply": 33826611.284955, - "dilutedMarketCap": 33817148, - "marketCapPercentChange1d": 0.01454, - "priceChange1d": 0.00009895, - "pricePercentChange1h": 0.024872832470449347, - "pricePercentChange1d": 0.009897401578188997, - "pricePercentChange7d": 0.016019505645414416, - "pricePercentChange14d": 0.07736206582621177, - "pricePercentChange30d": 0.0072860037643663975, - "pricePercentChange200d": 0.10497418385850388, - "pricePercentChange1y": null, - "liquidity": 42994997.53650001, - "assetPriceType": "fungible", - "usdPrice": 0.999875, - "lastUpdated": 1779126364403 - }, - "eip155:4326/erc20:0xB8CE59FC3717ada4C02eaDF9682A9e934F625ebb": { - "id": "eip155:4326/erc20:0xb8ce59fc3717ada4c02eadf9682a9e934f625ebb", - "price": 0.99932, - "marketCap": 4060885458, - "allTimeHigh": 1.052, - "allTimeLow": 0.975737, - "totalVolume": 128398717, - "high1d": 1, - "low1d": 0.998648, - "circulatingSupply": 4064676256.80415, - "dilutedMarketCap": 4060885458, - "marketCapPercentChange1d": -0.04865, - "priceChange1d": -0.000201861488756783, - "pricePercentChange1h": 0.0015754981440812875, - "pricePercentChange1d": -0.02019580747306237, - "pricePercentChange7d": -0.015201176785293783, - "pricePercentChange14d": -0.052961993292802774, - "pricePercentChange30d": -0.06698679493421765, - "pricePercentChange200d": -0.08635698528722503, - "pricePercentChange1y": -0.15407109377726227, - "liquidity": 159318136.03774107, - "assetPriceType": "fungible", - "usdPrice": 0.99932, - "lastUpdated": 1779126364403 - }, - "eip155:4326/erc20:0xFAfDdbb3FC7688494971a79cc65DCa3EF82079E7": { - "id": "eip155:4326/erc20:0xfafddbb3fc7688494971a79cc65dca3ef82079e7", - "price": 1.001, - "marketCap": 277950610, - "allTimeHigh": 1.017, - "allTimeLow": 0.977115, - "totalVolume": 3112118, - "high1d": 1.001, - "low1d": 0.997356, - "circulatingSupply": 277944515.8847235, - "dilutedMarketCap": 277950610, - "marketCapPercentChange1d": -1.16152, - "priceChange1d": 0.00052958, - "pricePercentChange1h": 0.17006517189476086, - "pricePercentChange1d": 0.05295327048835007, - "pricePercentChange7d": -0.0804116480601849, - "pricePercentChange14d": 0.07411384155251871, - "pricePercentChange30d": -0.16671517559855548, - "pricePercentChange200d": null, - "pricePercentChange1y": null, - "liquidity": 12334188.500187475, - "assetPriceType": "fungible", - "usdPrice": 1.001, - "lastUpdated": 1779126364403 - }, - "eip155:4326/erc20:0xB0F70C0bD6FD87dbEb7C10dC692a2a6106817072": { - "id": "eip155:4326/erc20:0xb0f70c0bd6fd87dbeb7c10dc692a2a6106817072", - "price": 79883.6472887336, - "marketCap": 214241517.457576, - "allTimeHigh": 126305.737410078, - "allTimeLow": 7833.63111864005, - "totalVolume": 8724531.0288626, - "high1d": 81718.0920614708, - "low1d": 79078.8197681046, - "circulatingSupply": 2683.21139279, - "dilutedMarketCap": 214241517.457576, - "marketCapPercentChange1d": -1.48625, - "priceChange1d": -1140.6284209429577, - "pricePercentChange1h": -0.2090915274563225, - "pricePercentChange1d": -1.412647133548963, - "pricePercentChange7d": -2.3539126387487546, - "pricePercentChange14d": 4.842534662084739, - "pricePercentChange30d": 10.332383149092921, - "pricePercentChange200d": -28.47365733529833, - "pricePercentChange1y": -23.52439534278479, - "bondingCurveProgressPercent": null, - "liquidity": 2240904.615, - "assetPriceType": "fungible", - "usdPrice": 79883.6472887336, - "lastUpdated": 1779126364403 - }, - "eip155:4326/erc20:0x601aC63637933D88285A025C685AC4e9a92a98dA": { - "id": "eip155:4326/erc20:0x601ac63637933d88285a025c685ac4e9a92a98da", - "price": 2797.89089958356, - "marketCap": 9461516791.23555, - "allTimeHigh": 7291.72661535108, - "allTimeLow": 561.288555397833, - "totalVolume": 3245103.84187654, - "high1d": 2879.91254868896, - "low1d": 2774.7576189849, - "circulatingSupply": 3380818.245608431, - "dilutedMarketCap": 9461516791.23555, - "marketCapPercentChange1d": -1.12805, - "priceChange1d": -37.235236253446146, - "pricePercentChange1h": 0.13357444173607796, - "pricePercentChange1d": -1.3197330751332634, - "pricePercentChange7d": -3.7223883402848177, - "pricePercentChange14d": 1.2063039653358774, - "pricePercentChange30d": 1.201128478278992, - "pricePercentChange200d": -42.028607111084625, - "pricePercentChange1y": -12.151001581806655, - "bondingCurveProgressPercent": null, - "liquidity": 8077159.6306, - "assetPriceType": "fungible", - "usdPrice": 2797.89089958356, - "lastUpdated": 1779126364403 - }, - "eip155:4326/erc20:0x551DFe38994eC53c9E7E18084D73893225Eea3bf": { - "id": "eip155:4326/erc20:0x551dfe38994ec53c9e7e18084d73893225eea3bf", - "price": 0.480219, - "marketCap": 11653643, - "allTimeHigh": 12.48, - "allTimeLow": 0.265841, - "totalVolume": 1980832, - "high1d": 0.494023, - "low1d": 0.465669, - "circulatingSupply": 24282416, - "dilutedMarketCap": 11653539, - "marketCapPercentChange1d": -1.35831, - "priceChange1d": -0.002033543709995034, - "pricePercentChange1h": -0.8485407782670725, - "pricePercentChange1d": -0.4216757072893481, - "pricePercentChange7d": -18.881279488692574, - "pricePercentChange14d": -13.638250690028537, - "pricePercentChange30d": -34.300406935857055, - "pricePercentChange200d": -66.74467775018987, - "pricePercentChange1y": -66.5231866227031, - "liquidity": 404072.6830274942, - "assetPriceType": "fungible", - "usdPrice": 0.480219, - "lastUpdated": 1779126364403 - }, - "eip155:4326/erc20:0x5d3a1Ff2b6BAb83b63cd9AD0787074081a52ef34": { - "id": "eip155:4326/erc20:0x5d3a1ff2b6bab83b63cd9ad0787074081a52ef34", - "price": 0.99965, - "marketCap": 4348149238, - "allTimeHigh": 1.034, - "allTimeLow": 0.929486, - "totalVolume": 66032732, - "high1d": 0.999992, - "low1d": 0.999483, - "circulatingSupply": 4349553220.719031, - "dilutedMarketCap": 4348149238, - "marketCapPercentChange1d": -0.00367, - "priceChange1d": -0.00007279162914775, - "pricePercentChange1h": 0.016689230218521693, - "pricePercentChange1d": -0.007281182001141166, - "pricePercentChange7d": 0.040942636266623256, - "pricePercentChange14d": 0.047264284461432736, - "pricePercentChange30d": -0.025114217417671298, - "pricePercentChange200d": 0.07001379890376709, - "pricePercentChange1y": -0.11578946462592614, - "liquidity": 521485645.86109847, - "assetPriceType": "fungible", - "usdPrice": 0.99965, - "lastUpdated": 1779126364403 - }, - "eip155:42161/erc20:0xaf88d065e77c8cC2239327C5EDb3A432268e5831": { - "id": "eip155:42161/erc20:0xaf88d065e77c8cc2239327c5edb3a432268e5831", - "price": 0.999687, - "marketCap": 76897548180, - "allTimeHigh": 1.043, - "allTimeLow": 0.877647, - "totalVolume": 14969698693, - "high1d": 1, - "low1d": 0.999072, - "circulatingSupply": 76921805532.86145, - "dilutedMarketCap": 76899845518, - "marketCapPercentChange1d": -0.06217, - "priceChange1d": -0.000109168334079701, - "pricePercentChange1h": -0.03655911530680087, - "pricePercentChange1d": -0.010919053936290748, - "pricePercentChange7d": -0.0033485270413815276, - "pricePercentChange14d": -0.012576026383498798, - "pricePercentChange30d": -0.01837774342443481, - "pricePercentChange200d": -0.013487204381956618, - "pricePercentChange1y": -0.021211137521695622, - "liquidity": 5288475754.205398, - "assetPriceType": "fungible", - "usdPrice": 0.999687, - "lastUpdated": 1779126364403 - }, - "eip155:59144/erc20:0x176211869cA2b568f2A7D4EE941E073a821EE1ff": { - "id": "eip155:59144/erc20:0x176211869ca2b568f2a7d4ee941e073a821ee1ff", - "price": 0.999175, - "marketCap": 89095398, - "allTimeHigh": 1.13, - "allTimeLow": 0.920892, - "totalVolume": 466562, - "high1d": 1.002, - "low1d": 0.986534, - "circulatingSupply": 89149161.205714, - "dilutedMarketCap": 89095398, - "marketCapPercentChange1d": -0.08758, - "priceChange1d": -0.001136626370919713, - "pricePercentChange1h": -0.04712183052961146, - "pricePercentChange1d": -0.11362722257755346, - "pricePercentChange7d": 0.009712533925177265, - "pricePercentChange14d": 0.1629669566513597, - "pricePercentChange30d": 0.014611793630647468, - "pricePercentChange200d": -0.06369062609130348, - "pricePercentChange1y": -0.027576110640297077, - "liquidity": 1469846.8584685798, - "assetPriceType": "fungible", - "usdPrice": 0.999175, - "lastUpdated": 1779126364403 - }, - "eip155:4326/erc20:0x28B7E77f82B25B95953825F1E3eA0E36c1c29861": { - "id": "eip155:4326/erc20:0x28b7e77f82b25b95953825f1e3ea0e36c1c29861", - "price": 0.08679, - "marketCap": 98089584, - "allTimeHigh": 0.2249, - "allTimeLow": 0.085249, - "totalVolume": 24532028, - "high1d": 0.093066, - "low1d": 0.085249, - "circulatingSupply": 1129792788, - "dilutedMarketCap": 868208618, - "marketCapPercentChange1d": -5.13743, - "priceChange1d": -0.004725693994780455, - "pricePercentChange1h": -0.2005079993186175, - "pricePercentChange1d": -5.163812505554921, - "pricePercentChange7d": -28.70787549881209, - "pricePercentChange14d": -34.59127698903131, - "pricePercentChange30d": null, - "pricePercentChange200d": null, - "pricePercentChange1y": null, - "liquidity": 2210297.7410900886, - "assetPriceType": "fungible", - "usdPrice": 0.08679, - "lastUpdated": 1779126364403 - }, - "solana:5eykt4UsFv8P8NJdTREpY1vzqKqZKvdp/slip44:501": { - "id": "solana:5eykt4UsFv8P8NJdTREpY1vzqKqZKvdp/slip44:501", - "price": 84.28, - "marketCap": 48741411502, - "allTimeHigh": 293.31, - "allTimeLow": 0.500801, - "totalVolume": 3142289530, - "high1d": 86.86, - "low1d": 83.71, - "circulatingSupply": 578281108.8790019, - "dilutedMarketCap": 52815445703, - "marketCapPercentChange1d": -2.08098, - "priceChange1d": -1.8759390048115847, - "pricePercentChange1h": 0.06032293405378755, - "pricePercentChange1d": -2.1774497308944447, - "pricePercentChange7d": -13.457089958579335, - "pricePercentChange14d": -0.25304929585092084, - "pricePercentChange30d": -2.8412296036875127, - "pricePercentChange200d": -54.412752726816784, - "pricePercentChange1y": -52.08684976894323, - "assetPriceType": "fungible", - "usdPrice": 84.28, - "lastUpdated": 1779126365152 - }, - "bip122:000000000019d6689c085ae165831e93/slip44:0": { - "id": "bip122:000000000019d6689c085ae165831e93/slip44:0", - "price": 76564, - "marketCap": 1533668657947, - "allTimeHigh": 126080, - "allTimeLow": 67.81, - "totalVolume": 43175601932, - "high1d": 78419, - "low1d": 76055, - "circulatingSupply": 20031106, - "dilutedMarketCap": 1533670572056, - "marketCapPercentChange1d": -1.77846, - "priceChange1d": -1422.0044384231733, - "pricePercentChange1h": 0.2293567015353519, - "pricePercentChange1d": -1.8234015497053078, - "pricePercentChange7d": -5.9219286793981665, - "pricePercentChange14d": -4.291878191908877, - "pricePercentChange30d": 0.5019111024105839, - "pricePercentChange200d": -28.86550874880614, - "pricePercentChange1y": -27.419625900114852, - "assetPriceType": "fungible", - "usdPrice": 76564, - "lastUpdated": 1779126373811 - }, - "solana:5eykt4UsFv8P8NJdTREpY1vzqKqZKvdp/token:CKfatsPMUf8SkiURsDXs7eK6GWb4Jsd6UDbs7twMCWxo": { - "id": "solana:5eykt4UsFv8P8NJdTREpY1vzqKqZKvdp/token:CKfatsPMUf8SkiURsDXs7eK6GWb4Jsd6UDbs7twMCWxo", - "price": 0.00068112, - "marketCap": 646470, - "allTimeHigh": 0.0400155, - "allTimeLow": 1.26334e-7, - "totalVolume": 16.12, - "high1d": 0.00076551, - "low1d": 0.00068105, - "circulatingSupply": 949129850.20681, - "dilutedMarketCap": 646470, - "marketCapPercentChange1d": -2.97428, - "priceChange1d": -0.000020056228930052, - "pricePercentChange1h": 0.00949334640036451, - "pricePercentChange1d": -2.8603774706054805, - "pricePercentChange7d": -13.863510743234519, - "pricePercentChange14d": -8.433744260039344, - "pricePercentChange30d": -16.695498251846438, - "pricePercentChange200d": -61.19417543148784, - "pricePercentChange1y": -67.16419992521648, - "assetPriceType": "fungible", - "usdPrice": 0.00068112, - "lastUpdated": 1779126365152 - }, - "solana:5eykt4UsFv8P8NJdTREpY1vzqKqZKvdp/token:HeLp6NuQkmYB4pYWo2zYs22mESHXPQYzXbB8n4V98jwC": { - "id": "solana:5eykt4UsFv8P8NJdTREpY1vzqKqZKvdp/token:HeLp6NuQkmYB4pYWo2zYs22mESHXPQYzXbB8n4V98jwC", - "price": 0.0006116520966465, - "marketCap": 0, - "allTimeHigh": 0.000889407667438147, - "allTimeLow": 0.000463525853260071, - "totalVolume": 18681641.652230017, - "high1d": 0.000636932318797122, - "low1d": 0.000578877921003052, - "circulatingSupply": 0, - "dilutedMarketCap": null, - "marketCapPercentChange1d": null, - "priceChange1d": null, - "pricePercentChange1h": 0, - "pricePercentChange1d": 0, - "pricePercentChange7d": null, - "pricePercentChange14d": null, - "pricePercentChange30d": null, - "pricePercentChange200d": null, - "pricePercentChange1y": null, - "assetPriceType": "fungible", - "usdPrice": 0.0006116520966465, - "lastUpdated": 1779126365152 - }, - "eip155:143/erc20:0xacA92E438df0B2401fF60dA7E4337B687a2435DA": { - "id": "eip155:143/erc20:0xaca92e438df0b2401ff60da7e4337b687a2435da", - "price": 0.999785, - "marketCap": 32309179, - "allTimeHigh": 1.066, - "allTimeLow": 0.979806, - "totalVolume": 4339796, - "high1d": 1, - "low1d": 0.999551, - "circulatingSupply": 32316361.588697, - "dilutedMarketCap": 32309179, - "marketCapPercentChange1d": 3.20142, - "priceChange1d": 0.00006075, - "pricePercentChange1h": -0.015593179809223617, - "pricePercentChange1d": 0.006077081494096176, - "pricePercentChange7d": -0.0020597576431088172, - "pricePercentChange14d": -0.02538896271501371, - "pricePercentChange30d": 0.005398677457616838, - "pricePercentChange200d": 0.0321504011308796, - "pricePercentChange1y": null, - "liquidity": 85731366.0504693, - "assetPriceType": "fungible", - "usdPrice": 0.999785, - "lastUpdated": 1778887724646 - }, - "eip155:324/slip44:60": { - "id": "eip155:324/slip44:60", - "price": 2104.15, - "marketCap": 253940707670, - "allTimeHigh": 4946.05, - "allTimeLow": 0.432979, - "totalVolume": 17599498817, - "high1d": 2192.13, - "low1d": 2093.23, - "circulatingSupply": 120685747.4287429, - "dilutedMarketCap": 253940707670, - "marketCapPercentChange1d": -3.40721, - "priceChange1d": -75.83300825204878, - "pricePercentChange1h": 0.38530249074169703, - "pricePercentChange1d": -3.4786082210530314, - "pricePercentChange7d": -9.777646316930449, - "pricePercentChange14d": -10.566381250000676, - "pricePercentChange30d": -10.986504895952764, - "pricePercentChange200d": -44.18281615879957, - "pricePercentChange1y": -18.316903800941922, - "liquidity": 218452808.4449664, - "assetPriceType": "fungible", - "usdPrice": 2104.15, - "lastUpdated": 1779126363532 - }, - "eip155:43114/slip44:9005": { - "id": "eip155:43114/slip44:9005", - "price": 9.12, - "marketCap": 3940938730, - "allTimeHigh": 144.96, - "allTimeLow": 2.8, - "totalVolume": 210878994, - "high1d": 9.33, - "low1d": 9.03, - "circulatingSupply": 431771961.1772119, - "dilutedMarketCap": 4229994051, - "marketCapPercentChange1d": -1.2095, - "priceChange1d": -0.12438414739967385, - "pricePercentChange1h": 0.42962263165251796, - "pricePercentChange1d": -1.3452624019789676, - "pricePercentChange7d": -10.362538211433877, - "pricePercentChange14d": -0.7992958701567113, - "pricePercentChange30d": -2.818837586173472, - "pricePercentChange200d": -49.99504373710831, - "pricePercentChange1y": -61.58982655412956, - "liquidity": 117236.33381849254, - "assetPriceType": "fungible", - "usdPrice": 9.12, - "lastUpdated": 1779126364403 - }, - "eip155:4326/erc20:0x0000000000000000000000000000000000000000": { - "id": "eip155:4326/erc20:0x0000000000000000000000000000000000000000", - "price": 2104.15, - "marketCap": 253940707670, - "allTimeHigh": 4946.05, - "allTimeLow": 0.432979, - "totalVolume": 17599498817, - "high1d": 2192.13, - "low1d": 2093.23, - "circulatingSupply": 120685747.4287429, - "dilutedMarketCap": 253940707670, - "marketCapPercentChange1d": -3.40721, - "priceChange1d": -75.83300825204878, - "pricePercentChange1h": 0.38530249074169703, - "pricePercentChange1d": -3.4786082210530314, - "pricePercentChange7d": -9.777646316930449, - "pricePercentChange14d": -10.566381250000676, - "pricePercentChange30d": -10.986504895952764, - "pricePercentChange200d": -44.18281615879957, - "pricePercentChange1y": -18.316903800941922, - "liquidity": 218452808.4449664, - "assetPriceType": "fungible", - "usdPrice": 2104.15, - "lastUpdated": 1779126364403 - }, - "tron:728126428/slip44:195": { - "id": "tron:728126428/slip44:195", - "price": 0.35516, - "marketCap": 33667336913, - "allTimeHigh": 0.431288, - "allTimeLow": 0.00180434, - "totalVolume": 582070730, - "high1d": 0.357892, - "low1d": 0.353999, - "circulatingSupply": 94802132926.8866, - "dilutedMarketCap": 33667332301, - "marketCapPercentChange1d": -0.52071, - "priceChange1d": -0.001562654212082071, - "pricePercentChange1h": -0.0008691001693975259, - "pricePercentChange1d": -0.43805802663419374, - "pricePercentChange7d": 1.217616448071256, - "pricePercentChange14d": 4.32513181006943, - "pricePercentChange30d": 7.799323857395696, - "pricePercentChange200d": 21.79874410256151, - "pricePercentChange1y": 30.118613646103125, - "assetPriceType": "fungible", - "usdPrice": 0.35516, - "lastUpdated": 1779126373939 - }, - "solana:5eykt4UsFv8P8NJdTREpY1vzqKqZKvdp/token:EPjFWdd5AufqSSqeM2qN1xzybapC8G4wEGGkZwyTDt1v": { - "id": "solana:5eykt4UsFv8P8NJdTREpY1vzqKqZKvdp/token:EPjFWdd5AufqSSqeM2qN1xzybapC8G4wEGGkZwyTDt1v", - "price": 0.999687, - "marketCap": 76897548180, - "allTimeHigh": 1.043, - "allTimeLow": 0.877647, - "totalVolume": 14969698693, - "high1d": 1, - "low1d": 0.999072, - "circulatingSupply": 76921805532.86145, - "dilutedMarketCap": 76899845518, - "marketCapPercentChange1d": -0.06217, - "priceChange1d": -0.000109168334079701, - "pricePercentChange1h": -0.03655911530680087, - "pricePercentChange1d": -0.010919053936290748, - "pricePercentChange7d": -0.0033485270413815276, - "pricePercentChange14d": -0.012576026383498798, - "pricePercentChange30d": -0.01837774342443481, - "pricePercentChange200d": -0.013487204381956618, - "pricePercentChange1y": -0.021211137521695622, - "liquidity": 5288475754.205398, - "assetPriceType": "fungible", - "usdPrice": 0.999687, - "lastUpdated": 1779126365152 - }, - "solana:5eykt4UsFv8P8NJdTREpY1vzqKqZKvdp/token:JUPyiwrYJFskUPiHa7hkeR8VUtAeFoSYbKedZNsDvCN": { - "id": "solana:5eykt4UsFv8P8NJdTREpY1vzqKqZKvdp/token:JUPyiwrYJFskUPiHa7hkeR8VUtAeFoSYbKedZNsDvCN", - "price": 0.19428, - "marketCap": 645050460, - "allTimeHigh": 2, - "allTimeLow": 0.135801, - "totalVolume": 20629724, - "high1d": 0.200273, - "low1d": 0.191732, - "circulatingSupply": 3320312968.08, - "dilutedMarketCap": 1333192706, - "marketCapPercentChange1d": -0.83539, - "priceChange1d": -0.001630945057309902, - "pricePercentChange1h": 0.5334502483214983, - "pricePercentChange1d": -0.8324945111023817, - "pricePercentChange7d": -18.692532215994046, - "pricePercentChange14d": 8.054062470941327, - "pricePercentChange30d": 8.578114087943401, - "pricePercentChange200d": -50.355343740419215, - "pricePercentChange1y": -63.3214823561012, - "liquidity": 2781131.6343463943, - "assetPriceType": "fungible", - "usdPrice": 0.19428, - "lastUpdated": 1779126365152 - }, - "solana:5eykt4UsFv8P8NJdTREpY1vzqKqZKvdp/token:7vfCXTUXx5WJV5JADk17DUJ4ksgau7utNKj4b963voxs": { - "id": "solana:5eykt4UsFv8P8NJdTREpY1vzqKqZKvdp/token:7vfCXTUXx5WJV5JADk17DUJ4ksgau7utNKj4b963voxs", - "price": 2316.71702969389, - "marketCap": 0, - "allTimeHigh": 4899.17524683593, - "allTimeLow": 144.891276626096, - "totalVolume": 28015214.6044288, - "high1d": 2327.21410340496, - "low1d": 2275.5202201433, - "circulatingSupply": 0, - "dilutedMarketCap": 188690688.684073, - "marketCapPercentChange1d": 0, - "priceChange1d": 31.17, - "pricePercentChange1h": 0.3136385286359188, - "pricePercentChange1d": 1.3489826617103648, - "pricePercentChange7d": 14.987514549308282, - "pricePercentChange14d": 17.854635099145625, - "pricePercentChange30d": 19.805208186664363, - "pricePercentChange200d": -45.70596725527689, - "pricePercentChange1y": 22.794240038790328, - "bondingCurveProgressPercent": null, - "liquidity": 90942.0315, - "assetPriceType": "fungible", - "usdPrice": 2316.71702969389, - "lastUpdated": 1779126365152 - }, - "eip155:8453/erc20:0xa1Ca6299ba48366Af1845A9A8AE59B87ff0d5C01": { - "id": "eip155:8453/erc20:0xa1ca6299ba48366af1845a9a8ae59b87ff0d5c01", - "price": 4.4301235144e-8, - "marketCap": null, - "allTimeHigh": 8.1797523317e-8, - "allTimeLow": 5.01632304e-10, - "totalVolume": 165185179.15945327, - "high1d": 4.9083403152e-8, - "low1d": 5.01632304e-10, - "circulatingSupply": null, - "dilutedMarketCap": null, - "marketCapPercentChange1d": null, - "priceChange1d": null, - "pricePercentChange1h": null, - "pricePercentChange1d": 16.22, - "pricePercentChange7d": null, - "pricePercentChange14d": null, - "pricePercentChange30d": null, - "pricePercentChange200d": null, - "pricePercentChange1y": null, - "assetPriceType": "fungible", - "usdPrice": 4.4301235144e-8, - "lastUpdated": 1779049723923 - }, - "eip155:4326/erc20:0x88887bE419578051FF9F4eb6C858A951921D8888": { - "id": "eip155:4326/erc20:0x88887be419578051ff9f4eb6c858a951921d8888", - "price": 1.0620599825, - "marketCap": null, - "allTimeHigh": null, - "allTimeLow": null, - "totalVolume": 14759.6575612737, - "high1d": null, - "low1d": null, - "circulatingSupply": null, - "dilutedMarketCap": 3042.637378238, - "marketCapPercentChange1d": null, - "priceChange1d": null, - "pricePercentChange1h": -0.606, - "pricePercentChange1d": 0.18, - "pricePercentChange7d": null, - "pricePercentChange14d": null, - "pricePercentChange30d": null, - "pricePercentChange200d": null, - "pricePercentChange1y": null, - "bondingCurveProgressPercent": null, - "liquidity": 482251.69290685904, - "totalSupply": 2864.845139, - "assetPriceType": "fungible", - "usdPrice": 1.0620599825, - "lastUpdated": 1779126364403 - }, - "eip155:4326/erc20:0x8F77A685bDe702E6d32A103e9AeB41906317D7e5": { - "id": "eip155:4326/erc20:0x8f77a685bde702e6d32a103e9aeb41906317d7e5", - "price": 4.5894623026, - "marketCap": null, - "allTimeHigh": null, - "allTimeLow": null, - "totalVolume": 94166.3735830086, - "high1d": null, - "low1d": null, - "circulatingSupply": null, - "dilutedMarketCap": 114741.147027628, - "marketCapPercentChange1d": null, - "priceChange1d": null, - "pricePercentChange1h": 3.044, - "pricePercentChange1d": 7.628, - "pricePercentChange7d": null, - "pricePercentChange14d": null, - "pricePercentChange30d": null, - "pricePercentChange200d": null, - "pricePercentChange1y": null, - "bondingCurveProgressPercent": null, - "liquidity": 81109.04123334326, - "totalSupply": 25001, - "assetPriceType": "fungible", - "usdPrice": 4.5894623026, - "lastUpdated": 1779126364403 - } - }, - "customAssets": { - "02c4222b-f0d3-448e-848f-7bf6b3ce3379": [ - "eip155:4326/erc20:0xB8CE59FC3717ada4C02eaDF9682A9e934F625ebb", - "eip155:4326/erc20:0xFAfDdbb3FC7688494971a79cc65DCa3EF82079E7", - "eip155:4326/erc20:0xB0F70C0bD6FD87dbEb7C10dC692a2a6106817072", - "eip155:4326/erc20:0xf7d2F0d0b0517CBDbf87C86910ce10FaAab3589D", - "eip155:4326/erc20:0x601aC63637933D88285A025C685AC4e9a92a98dA", - "eip155:4326/erc20:0x5d3a1Ff2b6BAb83b63cd9AD0787074081a52ef34" - ], - "2727ea45-0879-4ce8-bbac-e7b83a7ca3de": [ - "eip155:1/erc20:0xacA92E438df0B2401fF60dA7E4337B687a2435DA", - "eip155:4326/erc20:0xB8CE59FC3717ada4C02eaDF9682A9e934F625ebb", - "eip155:4326/erc20:0xFAfDdbb3FC7688494971a79cc65DCa3EF82079E7", - "eip155:4326/erc20:0xB0F70C0bD6FD87dbEb7C10dC692a2a6106817072", - "eip155:4326/erc20:0xf7d2F0d0b0517CBDbf87C86910ce10FaAab3589D", - "eip155:4326/erc20:0x2eA493384F42d7Ea78564F3EF4C86986eAB4a890", - "eip155:4326/erc20:0x601aC63637933D88285A025C685AC4e9a92a98dA", - "eip155:4326/erc20:0x551DFe38994eC53c9E7E18084D73893225Eea3bf", - "eip155:4326/erc20:0x3F927036A6c29F50e1c2dfceba572FC40Cf39069", - "eip155:4326/erc20:0x1C4784308adB589c1ED3fa88A48B7FcEFba5FA3C", - "eip155:4326/erc20:0x5d3a1Ff2b6BAb83b63cd9AD0787074081a52ef34", - "eip155:42161/erc20:0xaf88d065e77c8cC2239327C5EDb3A432268e5831", - "eip155:59144/erc20:0x176211869cA2b568f2A7D4EE941E073a821EE1ff", - "eip155:4326/erc20:0x28B7E77f82B25B95953825F1E3eA0E36c1c29861", - "eip155:4326/erc20:0x88887bE419578051FF9F4eb6C858A951921D8888", - "eip155:4326/erc20:0x8F77A685bDe702E6d32A103e9AeB41906317D7e5" - ], - "2ddfe00a-fef1-4085-82f5-e5cdc9d8871f": [ - "eip155:4326/erc20:0xB8CE59FC3717ada4C02eaDF9682A9e934F625ebb", - "eip155:4326/erc20:0x5d3a1Ff2b6BAb83b63cd9AD0787074081a52ef34", - "eip155:4326/erc20:0xFAfDdbb3FC7688494971a79cc65DCa3EF82079E7", - "eip155:4326/erc20:0xB0F70C0bD6FD87dbEb7C10dC692a2a6106817072", - "eip155:4326/erc20:0x601aC63637933D88285A025C685AC4e9a92a98dA" - ], - "7020eb89-94df-4e67-ba9f-a9ebe6c40524": [ - "eip155:1/erc20:0xacA92E438df0B2401fF60dA7E4337B687a2435DA", - "eip155:1/erc20:0xD4419C2d3DAA986Dc30444Fa333a846be44Fd1eb", - "eip155:4326/erc20:0xB8CE59FC3717ada4C02eaDF9682A9e934F625ebb", - "eip155:4326/erc20:0xFAfDdbb3FC7688494971a79cc65DCa3EF82079E7", - "eip155:4326/erc20:0x3F927036A6c29F50e1c2dfceba572FC40Cf39069", - "eip155:4326/erc20:0xB0F70C0bD6FD87dbEb7C10dC692a2a6106817072", - "eip155:4326/erc20:0xf7d2F0d0b0517CBDbf87C86910ce10FaAab3589D", - "eip155:4326/erc20:0x2eA493384F42d7Ea78564F3EF4C86986eAB4a890", - "eip155:4326/erc20:0x551DFe38994eC53c9E7E18084D73893225Eea3bf", - "eip155:4326/erc20:0x601aC63637933D88285A025C685AC4e9a92a98dA", - "eip155:4326/erc20:0xcCcc62962d17b8914c62D74FfB843d73B2a3cccC", - "eip155:4326/erc20:0x1f2C6BF8d3Cbd7EF80d9dd42A21b297a0a7af136", - "eip155:4326/erc20:0x27a4A176007047A9470dbaEd609290F68815B069", - "eip155:4326/erc20:0x16513005E80A20683b3527f977Ff74166F6Bcf73", - "eip155:4326/erc20:0x021ee124cF23D302A7f725AE7a01B77A8ce9782B", - "eip155:4326/erc20:0x0C833bcDd2dC74d7a8Dca82ed011E32d04Fe5843", - "eip155:4326/erc20:0x5d3a1Ff2b6BAb83b63cd9AD0787074081a52ef34", - "eip155:137/erc20:0xc2132D05D31c914a87C6611C10748AEb04B58e8F", - "eip155:43114/erc20:0xB97EF9Ef8734C71904D8002F8b6Bc66Dd9c48a6E" - ], - "7a1e85fa-7c26-48a7-890c-5b2ea56f650c": [ - "eip155:1/erc20:0x14c3abF95Cb9C93a8b82C1CdCB76D72Cb87b2d4c" - ], - "88caeea6-0032-4313-b351-096e9f8e60a9": [ - "eip155:4326/erc20:0xB8CE59FC3717ada4C02eaDF9682A9e934F625ebb", - "eip155:4326/erc20:0xFAfDdbb3FC7688494971a79cc65DCa3EF82079E7", - "eip155:4326/erc20:0x3F927036A6c29F50e1c2dfceba572FC40Cf39069", - "eip155:4326/erc20:0xB0F70C0bD6FD87dbEb7C10dC692a2a6106817072", - "eip155:4326/erc20:0x601aC63637933D88285A025C685AC4e9a92a98dA" - ], - "bf588376-0492-4a35-b653-0f1304a6c5f1": [ - "eip155:1/erc20:0x14c3abF95Cb9C93a8b82C1CdCB76D72Cb87b2d4c", - "eip155:4326/erc20:0xB8CE59FC3717ada4C02eaDF9682A9e934F625ebb", - "eip155:4326/erc20:0xFAfDdbb3FC7688494971a79cc65DCa3EF82079E7", - "eip155:4326/erc20:0x3F927036A6c29F50e1c2dfceba572FC40Cf39069", - "eip155:4326/erc20:0xB0F70C0bD6FD87dbEb7C10dC692a2a6106817072", - "eip155:4326/erc20:0x601aC63637933D88285A025C685AC4e9a92a98dA", - "eip155:4326/erc20:0x5d3a1Ff2b6BAb83b63cd9AD0787074081a52ef34" - ], - "cf6fe6ed-1d1c-4649-9662-a232e0aadb82": [ - "eip155:1/erc20:0x14c3abF95Cb9C93a8b82C1CdCB76D72Cb87b2d4c", - "eip155:4326/erc20:0xB8CE59FC3717ada4C02eaDF9682A9e934F625ebb", - "eip155:4326/erc20:0xFAfDdbb3FC7688494971a79cc65DCa3EF82079E7", - "eip155:4326/erc20:0x3F927036A6c29F50e1c2dfceba572FC40Cf39069", - "eip155:4326/erc20:0xB0F70C0bD6FD87dbEb7C10dC692a2a6106817072", - "eip155:4326/erc20:0xf7d2F0d0b0517CBDbf87C86910ce10FaAab3589D", - "eip155:4326/erc20:0x601aC63637933D88285A025C685AC4e9a92a98dA", - "eip155:4326/erc20:0x021ee124cF23D302A7f725AE7a01B77A8ce9782B", - "eip155:4326/erc20:0xcCcc62962d17b8914c62D74FfB843d73B2a3cccC", - "eip155:4326/erc20:0x551DFe38994eC53c9E7E18084D73893225Eea3bf", - "eip155:4326/erc20:0x273D38762CEe7Db9474ec0FD37a94bBda198E6c0", - "eip155:4326/erc20:0x2eA493384F42d7Ea78564F3EF4C86986eAB4a890", - "eip155:4326/erc20:0x118b949f2CaF55F9D75cdE8D2F6C8fEC98376420", - "eip155:4326/erc20:0x141cF6BFe9D5057883B9BECB39fEE8A62982dC93", - "eip155:4326/erc20:0x1f2C6BF8d3Cbd7EF80d9dd42A21b297a0a7af136", - "eip155:4326/erc20:0x0C833bcDd2dC74d7a8Dca82ed011E32d04Fe5843", - "eip155:4326/erc20:0x16513005E80A20683b3527f977Ff74166F6Bcf73", - "eip155:4326/erc20:0x5d3a1Ff2b6BAb83b63cd9AD0787074081a52ef34", - "eip155:4326/erc20:0x28B7E77f82B25B95953825F1E3eA0E36c1c29861", - "eip155:4326/erc20:0x2A3a4c92ce37ABd7239fB010BC390710f4062407", - "eip155:4326/erc20:0x39894d0B1aa402ae565678fc47F31717Ac2ae888", - "eip155:56/erc20:0x55d398326f99059fF775485246999027B3197955", - "eip155:137/erc20:0xc2132D05D31c914a87C6611C10748AEb04B58e8F", - "eip155:137/erc20:0xb33EaAd8d922B1083446DC23f610c2567fB5180f", - "eip155:42161/erc20:0xaf88d065e77c8cC2239327C5EDb3A432268e5831", - "eip155:59144/erc20:0x176211869cA2b568f2A7D4EE941E073a821EE1ff", - "eip155:59144/erc20:0xacA92E438df0B2401fF60dA7E4337B687a2435DA" - ], - "ea035e3a-ea43-4df0-96aa-b4e50c16396c": [ - "eip155:42161/erc20:0xaf88d065e77c8cC2239327C5EDb3A432268e5831" - ] - }, - "assetPreferences": {}, - "selectedCurrency": "usd", - "domains": { - "http://localhost:3000": "sepolia", - "http://localhost:8000": "sepolia", - "https://alpha.mycactus.io": "sepolia", - "https://app-beta.signer.cubist.dev": "linea-mainnet", - "https://app-gamma.signer.cubist.dev": "linea-mainnet", - "https://app.bitgo-test.com": "sepolia", - "https://app.bitgo.com": "sepolia", - "https://app.metamask.io": "sepolia", - "https://app.safe.global": "d108790b-593d-4fec-88e8-69229f9c58e0", - "https://app.signer.cubist.dev": "linea-mainnet", - "https://apps-portal.safe.global": "sepolia", - "https://console.dev.mpcvault.com": "sepolia", - "https://console.fireblocks.io": "sepolia", - "https://console.mpcvault.com": "sepolia", - "https://debug.mycactus.dev:1443": "sepolia", - "https://dev10-console.waterballoons.xyz": "sepolia", - "https://dev4-console.waterballoons.xyz": "sepolia", - "https://developer.metamask.io": "sepolia", - "https://docs.metamask.io": "sepolia", - "https://eu-console.fireblocks.io": "sepolia", - "https://eu2-console.fireblocks.io": "sepolia", - "https://local.waterballoons.xyz:4200": "sepolia", - "https://localhost:3000": "sepolia", - "https://neptune-custody-ui.metamask-institutional.io": "sepolia", - "https://portfolio-builds.metafi-dev.codefi.network": "sepolia", - "https://portfolio.metamask.io": "sepolia", - "https://pre.mycactus.com": "sepolia", - "https://sandbox.fireblocks.io": "sepolia", - "https://saturn-custody-ui.metamask-institutional.io": "sepolia", - "https://ui-preprod-v2.qa.zodia.io": "sepolia", - "https://ui-preprod-v2.uat.zodia.io": "sepolia", - "https://ui-v2.qa.zodia.io": "sepolia", - "https://ui-v2.sit.zodia.io": "sepolia", - "https://v2.custody.zodia.io": "sepolia", - "https://www.mycactus.com": "sepolia", - "https://www.mycactus.dev": "sepolia", - "localhost:8000": "sepolia", - "npm:@metamask/bitcoin-wallet-snap": "arbitrum-mainnet", - "npm:@metamask/ens-resolver-snap": "mainnet", - "npm:@metamask/gator-permissions-snap": "sepolia", - "npm:@metamask/institutional-wallet-snap": "linea-mainnet", - "npm:@metamask/message-signing-snap": "sepolia", - "npm:@metamask/permissions-kernel-snap": "sepolia", - "npm:@metamask/solana-wallet-snap": "sepolia", - "npm:@metamask/tron-wallet-snap": "sepolia" - }, - "logs": { - "0bfc3b70-1e2c-11f1-a9ab-a1628dd5d3f8": { - "id": "0bfc3b70-1e2c-11f1-a9ab-a1628dd5d3f8", - "log": { - "data": { - "signingData": { - "data": "{\"domain\":{\"verifyingContract\":\"0x4040ae3e14c17f581b237c59bf07d41c1aa2bc70\",\"chainId\":143},\"message\":{\"to\":\"0x4040ae3e14c17f581b237c59bf07d41c1aa2bc70\",\"value\":\"0\",\"data\":\"0x0d582f13000000000000000000000000f052a7d1d73d47356c02dbbe43d4f0f6478dee760000000000000000000000000000000000000000000000000000000000000005\",\"operation\":0,\"baseGas\":\"0\",\"gasPrice\":\"0\",\"gasToken\":\"0x0000000000000000000000000000000000000000\",\"refundReceiver\":\"0x0000000000000000000000000000000000000000\",\"nonce\":4,\"safeTxGas\":\"0\"},\"primaryType\":\"SafeTx\",\"types\":{\"EIP712Domain\":[{\"name\":\"chainId\",\"type\":\"uint256\"},{\"name\":\"verifyingContract\",\"type\":\"address\"}],\"SafeTx\":[{\"type\":\"address\",\"name\":\"to\"},{\"type\":\"uint256\",\"name\":\"value\"},{\"type\":\"bytes\",\"name\":\"data\"},{\"type\":\"uint8\",\"name\":\"operation\"},{\"type\":\"uint256\",\"name\":\"safeTxGas\"},{\"type\":\"uint256\",\"name\":\"baseGas\"},{\"type\":\"uint256\",\"name\":\"gasPrice\"},{\"type\":\"address\",\"name\":\"gasToken\"},{\"type\":\"address\",\"name\":\"refundReceiver\"},{\"type\":\"uint256\",\"name\":\"nonce\"}]}}", - "from": "0x9f66e62fd52eeb9286385f620d2bcbe02c94443e", - "metamaskId": "f696eff1-1e2b-11f1-a9ab-a1628dd5d3f8", - "origin": "https://app.safe.global", - "requestId": 627910418, - "signatureMethod": "eth_signTypedData_v4", - "version": "V4" - }, - "signingMethod": "eth_signTypedData_v4", - "stage": "signed" - }, - "type": "EthSignLog" - }, - "timestamp": 1773330995367 - }, - "46dd5260-1e2c-11f1-a9ab-a1628dd5d3f8": { - "id": "46dd5260-1e2c-11f1-a9ab-a1628dd5d3f8", - "log": { - "data": { - "signingData": { - "data": "{\"domain\":{\"verifyingContract\":\"0x4040ae3e14c17f581b237c59bf07d41c1aa2bc70\",\"chainId\":143},\"message\":{\"to\":\"0x4040ae3e14c17f581b237c59bf07d41c1aa2bc70\",\"value\":\"0\",\"data\":\"0x0d582f130000000000000000000000002a449ec2a0dcc20f970d0a33cdebc296e268d1460000000000000000000000000000000000000000000000000000000000000005\",\"operation\":0,\"baseGas\":\"0\",\"gasPrice\":\"0\",\"gasToken\":\"0x0000000000000000000000000000000000000000\",\"refundReceiver\":\"0x0000000000000000000000000000000000000000\",\"nonce\":5,\"safeTxGas\":\"0\"},\"primaryType\":\"SafeTx\",\"types\":{\"EIP712Domain\":[{\"name\":\"chainId\",\"type\":\"uint256\"},{\"name\":\"verifyingContract\",\"type\":\"address\"}],\"SafeTx\":[{\"type\":\"address\",\"name\":\"to\"},{\"type\":\"uint256\",\"name\":\"value\"},{\"type\":\"bytes\",\"name\":\"data\"},{\"type\":\"uint8\",\"name\":\"operation\"},{\"type\":\"uint256\",\"name\":\"safeTxGas\"},{\"type\":\"uint256\",\"name\":\"baseGas\"},{\"type\":\"uint256\",\"name\":\"gasPrice\"},{\"type\":\"address\",\"name\":\"gasToken\"},{\"type\":\"address\",\"name\":\"refundReceiver\"},{\"type\":\"uint256\",\"name\":\"nonce\"}]}}", - "from": "0x9f66e62fd52eeb9286385f620d2bcbe02c94443e", - "signatureMethod": "eth_signTypedData_v4", - "version": "V4" - }, - "signingMethod": "eth_signTypedData_v4", - "stage": "proposed" - }, - "type": "EthSignLog" - }, - "timestamp": 1773331094150 - }, - "4b35d710-1e2c-11f1-a9ab-a1628dd5d3f8": { - "id": "4b35d710-1e2c-11f1-a9ab-a1628dd5d3f8", - "log": { - "data": { - "signingData": { - "data": "{\"domain\":{\"verifyingContract\":\"0x4040ae3e14c17f581b237c59bf07d41c1aa2bc70\",\"chainId\":143},\"message\":{\"to\":\"0x4040ae3e14c17f581b237c59bf07d41c1aa2bc70\",\"value\":\"0\",\"data\":\"0x0d582f130000000000000000000000002a449ec2a0dcc20f970d0a33cdebc296e268d1460000000000000000000000000000000000000000000000000000000000000005\",\"operation\":0,\"baseGas\":\"0\",\"gasPrice\":\"0\",\"gasToken\":\"0x0000000000000000000000000000000000000000\",\"refundReceiver\":\"0x0000000000000000000000000000000000000000\",\"nonce\":5,\"safeTxGas\":\"0\"},\"primaryType\":\"SafeTx\",\"types\":{\"EIP712Domain\":[{\"name\":\"chainId\",\"type\":\"uint256\"},{\"name\":\"verifyingContract\",\"type\":\"address\"}],\"SafeTx\":[{\"type\":\"address\",\"name\":\"to\"},{\"type\":\"uint256\",\"name\":\"value\"},{\"type\":\"bytes\",\"name\":\"data\"},{\"type\":\"uint8\",\"name\":\"operation\"},{\"type\":\"uint256\",\"name\":\"safeTxGas\"},{\"type\":\"uint256\",\"name\":\"baseGas\"},{\"type\":\"uint256\",\"name\":\"gasPrice\"},{\"type\":\"address\",\"name\":\"gasToken\"},{\"type\":\"address\",\"name\":\"refundReceiver\"},{\"type\":\"uint256\",\"name\":\"nonce\"}]}}", - "from": "0x9f66e62fd52eeb9286385f620d2bcbe02c94443e", - "metamaskId": "46dd5261-1e2c-11f1-a9ab-a1628dd5d3f8", - "origin": "https://app.safe.global", - "requestId": 1118005244, - "signatureMethod": "eth_signTypedData_v4", - "version": "V4" - }, - "signingMethod": "eth_signTypedData_v4", - "stage": "signed" - }, - "type": "EthSignLog" - }, - "timestamp": 1773331101441 - }, - "7251e500-1e2c-11f1-a9ab-a1628dd5d3f8": { - "id": "7251e500-1e2c-11f1-a9ab-a1628dd5d3f8", - "log": { - "data": { - "signingData": { - "data": "{\"domain\":{\"verifyingContract\":\"0xa10bdf04f5d2e65265ab2ff351dc29f1d4a12f63\",\"chainId\":42161},\"message\":{\"to\":\"0xa10bdf04f5d2e65265ab2ff351dc29f1d4a12f63\",\"value\":\"0\",\"data\":\"0x0d582f13000000000000000000000000f052a7d1d73d47356c02dbbe43d4f0f6478dee760000000000000000000000000000000000000000000000000000000000000005\",\"operation\":0,\"baseGas\":\"0\",\"gasPrice\":\"0\",\"gasToken\":\"0x0000000000000000000000000000000000000000\",\"refundReceiver\":\"0x0000000000000000000000000000000000000000\",\"nonce\":42,\"safeTxGas\":\"0\"},\"primaryType\":\"SafeTx\",\"types\":{\"EIP712Domain\":[{\"name\":\"chainId\",\"type\":\"uint256\"},{\"name\":\"verifyingContract\",\"type\":\"address\"}],\"SafeTx\":[{\"type\":\"address\",\"name\":\"to\"},{\"type\":\"uint256\",\"name\":\"value\"},{\"type\":\"bytes\",\"name\":\"data\"},{\"type\":\"uint8\",\"name\":\"operation\"},{\"type\":\"uint256\",\"name\":\"safeTxGas\"},{\"type\":\"uint256\",\"name\":\"baseGas\"},{\"type\":\"uint256\",\"name\":\"gasPrice\"},{\"type\":\"address\",\"name\":\"gasToken\"},{\"type\":\"address\",\"name\":\"refundReceiver\"},{\"type\":\"uint256\",\"name\":\"nonce\"}]}}", - "from": "0x9f66e62fd52eeb9286385f620d2bcbe02c94443e", - "signatureMethod": "eth_signTypedData_v4", - "version": "V4" - }, - "signingMethod": "eth_signTypedData_v4", - "stage": "proposed" - }, - "type": "EthSignLog" - }, - "timestamp": 1773331167056 - }, - "7b116d50-1e2c-11f1-a9ab-a1628dd5d3f8": { - "id": "7b116d50-1e2c-11f1-a9ab-a1628dd5d3f8", - "log": { - "data": { - "signingData": { - "data": "{\"domain\":{\"verifyingContract\":\"0xa10bdf04f5d2e65265ab2ff351dc29f1d4a12f63\",\"chainId\":42161},\"message\":{\"to\":\"0xa10bdf04f5d2e65265ab2ff351dc29f1d4a12f63\",\"value\":\"0\",\"data\":\"0x0d582f13000000000000000000000000f052a7d1d73d47356c02dbbe43d4f0f6478dee760000000000000000000000000000000000000000000000000000000000000005\",\"operation\":0,\"baseGas\":\"0\",\"gasPrice\":\"0\",\"gasToken\":\"0x0000000000000000000000000000000000000000\",\"refundReceiver\":\"0x0000000000000000000000000000000000000000\",\"nonce\":42,\"safeTxGas\":\"0\"},\"primaryType\":\"SafeTx\",\"types\":{\"EIP712Domain\":[{\"name\":\"chainId\",\"type\":\"uint256\"},{\"name\":\"verifyingContract\",\"type\":\"address\"}],\"SafeTx\":[{\"type\":\"address\",\"name\":\"to\"},{\"type\":\"uint256\",\"name\":\"value\"},{\"type\":\"bytes\",\"name\":\"data\"},{\"type\":\"uint8\",\"name\":\"operation\"},{\"type\":\"uint256\",\"name\":\"safeTxGas\"},{\"type\":\"uint256\",\"name\":\"baseGas\"},{\"type\":\"uint256\",\"name\":\"gasPrice\"},{\"type\":\"address\",\"name\":\"gasToken\"},{\"type\":\"address\",\"name\":\"refundReceiver\"},{\"type\":\"uint256\",\"name\":\"nonce\"}]}}", - "from": "0x9f66e62fd52eeb9286385f620d2bcbe02c94443e", - "metamaskId": "7251e501-1e2c-11f1-a9ab-a1628dd5d3f8", - "origin": "https://app.safe.global", - "requestId": 2568699685, - "signatureMethod": "eth_signTypedData_v4", - "version": "V4" - }, - "signingMethod": "eth_signTypedData_v4", - "stage": "signed" - }, - "type": "EthSignLog" - }, - "timestamp": 1773331181733 - }, - "8b49c320-1747-11f1-b7b3-03d70bc40886": { - "id": "8b49c320-1747-11f1-b7b3-03d70bc40886", - "log": { - "data": { - "signingData": { - "data": "{\"domain\":{\"verifyingContract\":\"0x7e4c2852fc93613a7b01e50aea48431b125079c5\",\"chainId\":143},\"message\":{\"to\":\"0x9641d764fc13c8b624c04430c7356c1c7c8102e2\",\"value\":\"0\",\"data\":\"0x8d80ff0a000000000000000000000000000000000000000000000000000000000000002000000000000000000000000000000000000000000000000000000000000000d900fb00d4ea6f3f0d0b4a57b32378075df408f2aaba00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000084391224610000000000000000000000000000000000000000000000000000000000000040000000000000000000000000c37d63122911c274493407d4ea37270bc087dbbb0000000000000000000000000000000000000000000000000000000000000013636972636c65436374704164617074657256320000000000000000000000000000000000000000\",\"operation\":1,\"baseGas\":\"0\",\"gasPrice\":\"0\",\"gasToken\":\"0x0000000000000000000000000000000000000000\",\"refundReceiver\":\"0x0000000000000000000000000000000000000000\",\"nonce\":2,\"safeTxGas\":\"0\"},\"primaryType\":\"SafeTx\",\"types\":{\"EIP712Domain\":[{\"name\":\"chainId\",\"type\":\"uint256\"},{\"name\":\"verifyingContract\",\"type\":\"address\"}],\"SafeTx\":[{\"type\":\"address\",\"name\":\"to\"},{\"type\":\"uint256\",\"name\":\"value\"},{\"type\":\"bytes\",\"name\":\"data\"},{\"type\":\"uint8\",\"name\":\"operation\"},{\"type\":\"uint256\",\"name\":\"safeTxGas\"},{\"type\":\"uint256\",\"name\":\"baseGas\"},{\"type\":\"uint256\",\"name\":\"gasPrice\"},{\"type\":\"address\",\"name\":\"gasToken\"},{\"type\":\"address\",\"name\":\"refundReceiver\"},{\"type\":\"uint256\",\"name\":\"nonce\"}]}}", - "from": "0x9f66e62fd52eeb9286385f620d2bcbe02c94443e", - "signatureMethod": "eth_signTypedData_v4", - "version": "V4" - }, - "signingMethod": "eth_signTypedData_v4", - "stage": "proposed" - }, - "type": "EthSignLog" - }, - "timestamp": 1772573147218 - }, - "8f0ce5a0-1747-11f1-b7c4-03d70bc40886": { - "id": "8f0ce5a0-1747-11f1-b7c4-03d70bc40886", - "log": { - "data": { - "signingData": { - "data": "{\"domain\":{\"verifyingContract\":\"0x7e4c2852fc93613a7b01e50aea48431b125079c5\",\"chainId\":143},\"message\":{\"to\":\"0x9641d764fc13c8b624c04430c7356c1c7c8102e2\",\"value\":\"0\",\"data\":\"0x8d80ff0a000000000000000000000000000000000000000000000000000000000000002000000000000000000000000000000000000000000000000000000000000000d900fb00d4ea6f3f0d0b4a57b32378075df408f2aaba00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000084391224610000000000000000000000000000000000000000000000000000000000000040000000000000000000000000c37d63122911c274493407d4ea37270bc087dbbb0000000000000000000000000000000000000000000000000000000000000013636972636c65436374704164617074657256320000000000000000000000000000000000000000\",\"operation\":1,\"baseGas\":\"0\",\"gasPrice\":\"0\",\"gasToken\":\"0x0000000000000000000000000000000000000000\",\"refundReceiver\":\"0x0000000000000000000000000000000000000000\",\"nonce\":2,\"safeTxGas\":\"0\"},\"primaryType\":\"SafeTx\",\"types\":{\"EIP712Domain\":[{\"name\":\"chainId\",\"type\":\"uint256\"},{\"name\":\"verifyingContract\",\"type\":\"address\"}],\"SafeTx\":[{\"type\":\"address\",\"name\":\"to\"},{\"type\":\"uint256\",\"name\":\"value\"},{\"type\":\"bytes\",\"name\":\"data\"},{\"type\":\"uint8\",\"name\":\"operation\"},{\"type\":\"uint256\",\"name\":\"safeTxGas\"},{\"type\":\"uint256\",\"name\":\"baseGas\"},{\"type\":\"uint256\",\"name\":\"gasPrice\"},{\"type\":\"address\",\"name\":\"gasToken\"},{\"type\":\"address\",\"name\":\"refundReceiver\"},{\"type\":\"uint256\",\"name\":\"nonce\"}]}}", - "from": "0x9f66e62fd52eeb9286385f620d2bcbe02c94443e", - "signatureMethod": "eth_signTypedData_v4", - "version": "V4" - }, - "signingMethod": "eth_signTypedData_v4", - "stage": "proposed" - }, - "type": "EthSignLog" - }, - "timestamp": 1772573153530 - }, - "98e9c4d0-1747-11f1-b7cd-03d70bc40886": { - "id": "98e9c4d0-1747-11f1-b7cd-03d70bc40886", - "log": { - "data": { - "signingData": { - "data": "{\"domain\":{\"verifyingContract\":\"0x7e4c2852fc93613a7b01e50aea48431b125079c5\",\"chainId\":143},\"message\":{\"to\":\"0x9641d764fc13c8b624c04430c7356c1c7c8102e2\",\"value\":\"0\",\"data\":\"0x8d80ff0a000000000000000000000000000000000000000000000000000000000000002000000000000000000000000000000000000000000000000000000000000000d900fb00d4ea6f3f0d0b4a57b32378075df408f2aaba00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000084391224610000000000000000000000000000000000000000000000000000000000000040000000000000000000000000c37d63122911c274493407d4ea37270bc087dbbb0000000000000000000000000000000000000000000000000000000000000013636972636c65436374704164617074657256320000000000000000000000000000000000000000\",\"operation\":1,\"baseGas\":\"0\",\"gasPrice\":\"0\",\"gasToken\":\"0x0000000000000000000000000000000000000000\",\"refundReceiver\":\"0x0000000000000000000000000000000000000000\",\"nonce\":2,\"safeTxGas\":\"0\"},\"primaryType\":\"SafeTx\",\"types\":{\"EIP712Domain\":[{\"name\":\"chainId\",\"type\":\"uint256\"},{\"name\":\"verifyingContract\",\"type\":\"address\"}],\"SafeTx\":[{\"type\":\"address\",\"name\":\"to\"},{\"type\":\"uint256\",\"name\":\"value\"},{\"type\":\"bytes\",\"name\":\"data\"},{\"type\":\"uint8\",\"name\":\"operation\"},{\"type\":\"uint256\",\"name\":\"safeTxGas\"},{\"type\":\"uint256\",\"name\":\"baseGas\"},{\"type\":\"uint256\",\"name\":\"gasPrice\"},{\"type\":\"address\",\"name\":\"gasToken\"},{\"type\":\"address\",\"name\":\"refundReceiver\"},{\"type\":\"uint256\",\"name\":\"nonce\"}]}}", - "from": "0x9f66e62fd52eeb9286385f620d2bcbe02c94443e", - "signatureMethod": "eth_signTypedData_v4", - "version": "V4" - }, - "signingMethod": "eth_signTypedData_v4", - "stage": "proposed" - }, - "type": "EthSignLog" - }, - "timestamp": 1772573170077 - }, - "9f60e3c0-1747-11f1-b7d6-03d70bc40886": { - "id": "9f60e3c0-1747-11f1-b7d6-03d70bc40886", - "log": { - "data": { - "signingData": { - "data": "{\"domain\":{\"verifyingContract\":\"0x7e4c2852fc93613a7b01e50aea48431b125079c5\",\"chainId\":143},\"message\":{\"to\":\"0x9641d764fc13c8b624c04430c7356c1c7c8102e2\",\"value\":\"0\",\"data\":\"0x8d80ff0a000000000000000000000000000000000000000000000000000000000000002000000000000000000000000000000000000000000000000000000000000000d900fb00d4ea6f3f0d0b4a57b32378075df408f2aaba00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000084391224610000000000000000000000000000000000000000000000000000000000000040000000000000000000000000c37d63122911c274493407d4ea37270bc087dbbb0000000000000000000000000000000000000000000000000000000000000013636972636c65436374704164617074657256320000000000000000000000000000000000000000\",\"operation\":1,\"baseGas\":\"0\",\"gasPrice\":\"0\",\"gasToken\":\"0x0000000000000000000000000000000000000000\",\"refundReceiver\":\"0x0000000000000000000000000000000000000000\",\"nonce\":2,\"safeTxGas\":\"0\"},\"primaryType\":\"SafeTx\",\"types\":{\"EIP712Domain\":[{\"name\":\"chainId\",\"type\":\"uint256\"},{\"name\":\"verifyingContract\",\"type\":\"address\"}],\"SafeTx\":[{\"type\":\"address\",\"name\":\"to\"},{\"type\":\"uint256\",\"name\":\"value\"},{\"type\":\"bytes\",\"name\":\"data\"},{\"type\":\"uint8\",\"name\":\"operation\"},{\"type\":\"uint256\",\"name\":\"safeTxGas\"},{\"type\":\"uint256\",\"name\":\"baseGas\"},{\"type\":\"uint256\",\"name\":\"gasPrice\"},{\"type\":\"address\",\"name\":\"gasToken\"},{\"type\":\"address\",\"name\":\"refundReceiver\"},{\"type\":\"uint256\",\"name\":\"nonce\"}]}}", - "from": "0x9f66e62fd52eeb9286385f620d2bcbe02c94443e", - "metamaskId": "98e9c4d1-1747-11f1-b7cd-03d70bc40886", - "origin": "https://app.safe.global", - "requestId": 1878310115, - "signatureMethod": "eth_signTypedData_v4", - "version": "V4" - }, - "signingMethod": "eth_signTypedData_v4", - "stage": "signed" - }, - "type": "EthSignLog" - }, - "timestamp": 1772573180924 - }, - "f696eff0-1e2b-11f1-a9ab-a1628dd5d3f8": { - "id": "f696eff0-1e2b-11f1-a9ab-a1628dd5d3f8", - "log": { - "data": { - "signingData": { - "data": "{\"domain\":{\"verifyingContract\":\"0x4040ae3e14c17f581b237c59bf07d41c1aa2bc70\",\"chainId\":143},\"message\":{\"to\":\"0x4040ae3e14c17f581b237c59bf07d41c1aa2bc70\",\"value\":\"0\",\"data\":\"0x0d582f13000000000000000000000000f052a7d1d73d47356c02dbbe43d4f0f6478dee760000000000000000000000000000000000000000000000000000000000000005\",\"operation\":0,\"baseGas\":\"0\",\"gasPrice\":\"0\",\"gasToken\":\"0x0000000000000000000000000000000000000000\",\"refundReceiver\":\"0x0000000000000000000000000000000000000000\",\"nonce\":4,\"safeTxGas\":\"0\"},\"primaryType\":\"SafeTx\",\"types\":{\"EIP712Domain\":[{\"name\":\"chainId\",\"type\":\"uint256\"},{\"name\":\"verifyingContract\",\"type\":\"address\"}],\"SafeTx\":[{\"type\":\"address\",\"name\":\"to\"},{\"type\":\"uint256\",\"name\":\"value\"},{\"type\":\"bytes\",\"name\":\"data\"},{\"type\":\"uint8\",\"name\":\"operation\"},{\"type\":\"uint256\",\"name\":\"safeTxGas\"},{\"type\":\"uint256\",\"name\":\"baseGas\"},{\"type\":\"uint256\",\"name\":\"gasPrice\"},{\"type\":\"address\",\"name\":\"gasToken\"},{\"type\":\"address\",\"name\":\"refundReceiver\"},{\"type\":\"uint256\",\"name\":\"nonce\"}]}}", - "from": "0x9f66e62fd52eeb9286385f620d2bcbe02c94443e", - "signatureMethod": "eth_signTypedData_v4", - "version": "V4" - }, - "signingMethod": "eth_signTypedData_v4", - "stage": "proposed" - }, - "type": "EthSignLog" - }, - "timestamp": 1773330959471 - } - }, - "fiatCurrency": "usd", - "rates": { - "btc": { - "conversionDate": 1778777373658, - "conversionRate": 81447.15, - "usdConversionRate": 81447.15 - }, - "sol": { - "conversionDate": 1778777373658, - "conversionRate": 93, - "usdConversionRate": 93 - } - }, - "cryptocurrencies": ["btc", "sol"], - "snaps": { - "npm:@metamask/bitcoin-wallet-snap": { - "blocked": false, - "enabled": true, - "hideSnapBranding": true, - "id": "npm:@metamask/bitcoin-wallet-snap", - "initialPermissions": { - "endowment:assets": { - "scopes": [ - "bip122:000000000019d6689c085ae165831e93", - "bip122:000000000933ea01ad0ee984209779ba", - "bip122:00000000da84f2bafbbc53dee25a72ae", - "bip122:00000008819873e925422c1ff0f99f7c", - "bip122:regtest" - ] - }, - "endowment:cronjob": { - "jobs": [ - { - "duration": "PT30S", - "request": { - "method": "synchronizeAccounts" - } - } - ] - }, - "endowment:keyring": {}, - "endowment:lifecycle-hooks": {}, - "endowment:network-access": {}, - "endowment:webassembly": {}, - "snap_dialog": {}, - "snap_getBip32Entropy": [ - { - "curve": "secp256k1", - "path": ["m", "44'", "0'"] - }, - { - "curve": "secp256k1", - "path": ["m", "44'", "1'"] - }, - { - "curve": "secp256k1", - "path": ["m", "49'", "0'"] - }, - { - "curve": "secp256k1", - "path": ["m", "49'", "1'"] - }, - { - "curve": "secp256k1", - "path": ["m", "84'", "0'"] - }, - { - "curve": "secp256k1", - "path": ["m", "84'", "1'"] - }, - { - "curve": "secp256k1", - "path": ["m", "86'", "0'"] - }, - { - "curve": "secp256k1", - "path": ["m", "86'", "1'"] - } - ], - "snap_getPreferences": {}, - "snap_manageAccounts": {}, - "snap_manageState": {} - }, - "localizationFiles": [ - { - "locale": "de", - "messages": { - "MmssingNonWitnessUtxo": { - "message": "Transaktion konnte nicht erstellt werden: fehlender Non-Witness UTXO" - }, - "amount": { - "message": "Betrag" - }, - "asset": { - "message": "Asset" - }, - "balance": { - "message": "Guthaben" - }, - "base58": { - "message": "Ungültige Bitcoin-Adresse" - }, - "bech32": { - "message": "Ungültige Bitcoin-Adresse" - }, - "cancel": { - "message": "Abbrechen" - }, - "clear": { - "message": "Löschen" - }, - "confirmation.account": { - "message": "Konto" - }, - "confirmation.confirmButton": { - "message": "Bestätigen" - }, - "confirmation.estimatedChanges": { - "message": "Geschätzte Änderungen" - }, - "confirmation.estimatedChanges.send": { - "message": "Sie senden" - }, - "confirmation.origin": { - "message": "Ursprung" - }, - "confirmation.origin.tooltip": { - "message": "Die dApp, die die Signatur anfordert" - }, - "confirmation.requestOrigin": { - "message": "Anfrage von" - }, - "confirmation.signAndSendTransaction.title": { - "message": "Transaktionsanfrage" - }, - "confirmation.signMessage.confirmButton": { - "message": "Signieren" - }, - "confirmation.signMessage.message": { - "message": "Nachricht" - }, - "confirmation.signMessage.title": { - "message": "Nachricht signieren" - }, - "continue": { - "message": "Fortfahren" - }, - "error": { - "message": "Fehler" - }, - "error.0": { - "message": "Ungültiges Format" - }, - "error.1000": { - "message": "Validierung fehlgeschlagen" - }, - "error.2000": { - "message": "Ressource nicht gefunden" - }, - "error.3000": { - "message": "Verbindungsfehler" - }, - "error.4000": { - "message": "Wallet-Zustand beschädigt" - }, - "error.5000": { - "message": "Speicherfehler" - }, - "error.6000": { - "message": "Methode nicht implementiert oder nicht unterstützt" - }, - "error.7000": { - "message": "Zugriff verweigert oder unzureichende Berechtigung" - }, - "error.8000": { - "message": "Benutzeraktionsfehler" - }, - "error.9000": { - "message": "Beschädigter Zustand, Invariante nicht eingehalten oder fehlgeschlagene Assertion" - }, - "error.internal": { - "message": "Interner Fehler. Bitte versuchen Sie es später erneut oder kontaktieren Sie den Support" - }, - "feeRate": { - "message": "Gebührenrate" - }, - "feeRateTooLow": { - "message": "Gebührenrate zu niedrig" - }, - "feeTooLow": { - "message": "Gebühr zu niedrig" - }, - "from": { - "message": "Von" - }, - "inputTooLarge": { - "message": "Ungültiger Betrag: zu groß" - }, - "insufficientFunds": { - "message": "Unzureichende Mittel, um Betrag plus Gebühr zu decken" - }, - "invalidBase58PayloadLength": { - "message": "Ungültige Bitcoin-Adresse: ungültige Länge" - }, - "invalidCharacter": { - "message": "Ungültiger Betrag: ungültiges Zeichen" - }, - "invalidLegacyPrefix": { - "message": "Ungültige Bitcoin-Adresse: ungültiges Legacy-Prefix" - }, - "legacyAddressTooLong": { - "message": "Ungültige Bitcoin-Adresse" - }, - "max": { - "message": "Max" - }, - "minutes": { - "message": "min" - }, - "missingDigits": { - "message": "Ungültiger Betrag: fehlende Ziffern" - }, - "network": { - "message": "Netzwerk" - }, - "networkFee": { - "message": "Netzwerkgebühr" - }, - "networkFeeTooltip": { - "message": "Die gesamte Netzwerkgebühr" - }, - "networkValidation": { - "message": "Ungültige Bitcoin-Adresse: falsches Netzwerk" - }, - "noRecipients": { - "message": "Fehlende Empfänger" - }, - "noUtxosSelected": { - "message": "Transaktion konnte nicht erstellt werden: fehlende UTXOs" - }, - "outOfRange": { - "message": "Ungültiger Betrag: außerhalb des Bereichs" - }, - "outputBelowDustLimit": { - "message": "Betrag unter Dust-Limit" - }, - "psbt": { - "message": "Ungültiges PSBT" - }, - "recipient": { - "message": "Empfänger" - }, - "recipientPlaceholder": { - "message": "Empfängeradresse eingeben" - }, - "review": { - "message": "Überprüfen" - }, - "reviewTransactionWarning": { - "message": "Überprüfen Sie die Transaktion, bevor Sie fortfahren" - }, - "send": { - "message": "Senden" - }, - "sending": { - "message": "Wird gesendet" - }, - "toAddress": { - "message": "An" - }, - "tooPrecise": { - "message": "Ungültiger Betrag: zu präzise" - }, - "total": { - "message": "Gesamt" - }, - "transactionSpeed": { - "message": "Transaktionsgeschwindigkeit" - }, - "transactionSpeedTooltip": { - "message": "Die geschätzte Zeit der Transaktion" - }, - "unexpected": { - "message": "Ein unerwarteter Fehler ist aufgetreten" - }, - "unknownError": { - "message": "Ein unbekannter Fehler ist aufgetreten" - }, - "unknownUtxo": { - "message": "Transaktion konnte nicht erstellt werden: unbekannter UTXO" - }, - "witnessProgram": { - "message": "Ungültige Bitcoin-Adresse: Witness-Programm" - }, - "witnessVersion": { - "message": "Ungültige Bitcoin-Adresse: Witness-Version" - } - } - }, - { - "locale": "en", - "messages": { - "MmssingNonWitnessUtxo": { - "message": "Failed to build transaction: missing non-witness UTXO" - }, - "amount": { - "message": "Amount" - }, - "asset": { - "message": "Asset" - }, - "balance": { - "message": "Balance" - }, - "base58": { - "message": "Invalid Bitcoin address" - }, - "bech32": { - "message": "Invalid Bitcoin address" - }, - "cancel": { - "message": "Cancel" - }, - "clear": { - "message": "Clear" - }, - "confirmation.account": { - "message": "Account" - }, - "confirmation.confirmButton": { - "message": "Confirm" - }, - "confirmation.estimatedChanges": { - "message": "Estimated changes" - }, - "confirmation.estimatedChanges.send": { - "message": "You send" - }, - "confirmation.origin": { - "message": "Origin" - }, - "confirmation.origin.tooltip": { - "message": "The dApp requesting the signature" - }, - "confirmation.requestOrigin": { - "message": "Request from" - }, - "confirmation.signAndSendTransaction.title": { - "message": "Transaction request" - }, - "confirmation.signMessage.confirmButton": { - "message": "Sign" - }, - "confirmation.signMessage.message": { - "message": "Message" - }, - "confirmation.signMessage.title": { - "message": "Sign Message" - }, - "continue": { - "message": "Continue" - }, - "error": { - "message": "Error" - }, - "error.0": { - "message": "Invalid format" - }, - "error.1000": { - "message": "Validation failed" - }, - "error.2000": { - "message": "Resource not found" - }, - "error.3000": { - "message": "Connection error" - }, - "error.3100": { - "message": "One or more accounts failed to synchronize" - }, - "error.4000": { - "message": "Wallet state corrupted" - }, - "error.5000": { - "message": "Storage error" - }, - "error.6000": { - "message": "Method not implemented or not supported" - }, - "error.7000": { - "message": "Permission denied or insufficient authorization" - }, - "error.8000": { - "message": "User action error" - }, - "error.9000": { - "message": "Corrupted state, invariant not respected or failed assertion." - }, - "error.internal": { - "message": "Internal error. Please try again later or contact support" - }, - "feeRate": { - "message": "Fee rate" - }, - "feeRateTooLow": { - "message": "Fee rate too low" - }, - "feeTooLow": { - "message": "Fee too low" - }, - "from": { - "message": "From" - }, - "inputTooLarge": { - "message": "Invalid amount: too large" - }, - "insufficientFunds": { - "message": "Funds are insufficient to cover amount plus fee" - }, - "invalidBase58PayloadLength": { - "message": "Invalid Bitcoin address: invalid length" - }, - "invalidCharacter": { - "message": "Invalid amount: invalid character" - }, - "invalidLegacyPrefix": { - "message": "Invalid Bitcoin address: invalid legacy prefix" - }, - "legacyAddressTooLong": { - "message": "Invalid Bitcoin address" - }, - "max": { - "message": "Max" - }, - "minutes": { - "message": "min" - }, - "missingDigits": { - "message": "Invalid amount: missing digits" - }, - "network": { - "message": "Network" - }, - "networkFee": { - "message": "Network fee" - }, - "networkFeeTooltip": { - "message": "The total network fee" - }, - "networkValidation": { - "message": "Invalid Bitcoin address: wrong network" - }, - "noRecipients": { - "message": "Missing recipients" - }, - "noUtxosSelected": { - "message": "Failed to build transaction: missing UTXOs" - }, - "outOfRange": { - "message": "Invalid amount: out of range" - }, - "outputBelowDustLimit": { - "message": "Amount below dust limit" - }, - "psbt": { - "message": "Invalid PSBT" - }, - "recipient": { - "message": "Recipient" - }, - "recipientPlaceholder": { - "message": "Enter receiving address" - }, - "review": { - "message": "Review" - }, - "reviewTransactionWarning": { - "message": "Review the transaction before proceeding" - }, - "send": { - "message": "Send" - }, - "sending": { - "message": "Sending" - }, - "toAddress": { - "message": "To" - }, - "tooPrecise": { - "message": "Invalid amount: too precise" - }, - "total": { - "message": "Total" - }, - "transactionSpeed": { - "message": "Transaction speed" - }, - "transactionSpeedTooltip": { - "message": "The estimated time of the transaction" - }, - "unexpected": { - "message": "An unexpected error occurred" - }, - "unknownError": { - "message": "An unknown error occurred" - }, - "unknownUtxo": { - "message": "Failed to build transaction: unknown UTXO" - }, - "witnessProgram": { - "message": "Invalid Bitcoin address: witness program" - }, - "witnessVersion": { - "message": "Invalid Bitcoin address: witness version" - } - } - }, - { - "locale": "es", - "messages": { - "MmssingNonWitnessUtxo": { - "message": "No se pudo construir la transacción: falta UTXO non-witness" - }, - "amount": { - "message": "Monto" - }, - "asset": { - "message": "Activo" - }, - "balance": { - "message": "Saldo" - }, - "base58": { - "message": "Dirección de Bitcoin inválida" - }, - "bech32": { - "message": "Dirección de Bitcoin inválida" - }, - "cancel": { - "message": "Cancelar" - }, - "clear": { - "message": "Borrar" - }, - "confirmation.account": { - "message": "Cuenta" - }, - "confirmation.confirmButton": { - "message": "Confirmar" - }, - "confirmation.estimatedChanges": { - "message": "Cambios estimados" - }, - "confirmation.estimatedChanges.send": { - "message": "Usted envía" - }, - "confirmation.origin": { - "message": "Origen" - }, - "confirmation.origin.tooltip": { - "message": "La dApp solicitando la firma" - }, - "confirmation.requestOrigin": { - "message": "Solicitud de" - }, - "confirmation.signAndSendTransaction.title": { - "message": "Solicitud de transacción" - }, - "confirmation.signMessage.confirmButton": { - "message": "Firmar" - }, - "confirmation.signMessage.message": { - "message": "Mensaje" - }, - "confirmation.signMessage.title": { - "message": "Firmar mensaje" - }, - "continue": { - "message": "Continuar" - }, - "error": { - "message": "Error" - }, - "error.0": { - "message": "Formato inválido" - }, - "error.1000": { - "message": "Validación fallida" - }, - "error.2000": { - "message": "Recurso no encontrado" - }, - "error.3000": { - "message": "Error de conexión" - }, - "error.4000": { - "message": "Estado de la billetera corrompido" - }, - "error.5000": { - "message": "Error de almacenamiento" - }, - "error.6000": { - "message": "Método no implementado o no soportado" - }, - "error.7000": { - "message": "Permiso denegado o autorización insuficiente" - }, - "error.8000": { - "message": "Error de acción del usuario" - }, - "error.9000": { - "message": "Estado corrompido, invariante no respetada o aserción fallida." - }, - "error.internal": { - "message": "Error interno. Por favor intente de nuevo más tarde o contacte al soporte" - }, - "feeRate": { - "message": "Tasa de tarifa" - }, - "feeRateTooLow": { - "message": "Tasa de tarifa demasiado baja" - }, - "feeTooLow": { - "message": "Tarifa demasiado baja" - }, - "from": { - "message": "De" - }, - "inputTooLarge": { - "message": "Monto inválido: demasiado grande" - }, - "insufficientFunds": { - "message": "Fondos insuficientes para cubrir el monto más la tarifa" - }, - "invalidBase58PayloadLength": { - "message": "Dirección de Bitcoin inválida: longitud inválida" - }, - "invalidCharacter": { - "message": "Monto inválido: carácter inválido" - }, - "invalidLegacyPrefix": { - "message": "Dirección de Bitcoin inválida: prefijo legacy inválido" - }, - "legacyAddressTooLong": { - "message": "Dirección de Bitcoin inválida" - }, - "max": { - "message": "Máx" - }, - "minutes": { - "message": "min" - }, - "missingDigits": { - "message": "Monto inválido: faltan dígitos" - }, - "network": { - "message": "Red" - }, - "networkFee": { - "message": "Tarifa de red" - }, - "networkFeeTooltip": { - "message": "La tarifa total de red" - }, - "networkValidation": { - "message": "Dirección de Bitcoin inválida: red incorrecta" - }, - "noRecipients": { - "message": "Faltan destinatarios" - }, - "noUtxosSelected": { - "message": "No se pudo construir la transacción: faltan UTXOs" - }, - "outOfRange": { - "message": "Monto inválido: fuera de rango" - }, - "outputBelowDustLimit": { - "message": "Monto por debajo del límite de dust" - }, - "psbt": { - "message": "PSBT inválido" - }, - "recipient": { - "message": "Destinatario" - }, - "recipientPlaceholder": { - "message": "Ingrese la dirección de recepción" - }, - "review": { - "message": "Revisar" - }, - "reviewTransactionWarning": { - "message": "Revise la transacción antes de continuar" - }, - "send": { - "message": "Enviar" - }, - "sending": { - "message": "Enviando" - }, - "toAddress": { - "message": "A" - }, - "tooPrecise": { - "message": "Monto inválido: demasiado preciso" - }, - "total": { - "message": "Total" - }, - "transactionSpeed": { - "message": "Velocidad de la transacción" - }, - "transactionSpeedTooltip": { - "message": "El tiempo estimado de la transacción" - }, - "unexpected": { - "message": "Se produjo un error inesperado" - }, - "unknownError": { - "message": "Se produjo un error desconocido" - }, - "unknownUtxo": { - "message": "No se pudo construir la transacción: UTXO desconocido" - }, - "witnessProgram": { - "message": "Dirección de Bitcoin inválida: programa witness" - }, - "witnessVersion": { - "message": "Dirección de Bitcoin inválida: versión witness" - } - } - }, - { - "locale": "fr", - "messages": { - "MmssingNonWitnessUtxo": { - "message": "Échec de la construction de la transaction : UTXO non-witness manquant" - }, - "amount": { - "message": "Montant" - }, - "asset": { - "message": "Actif" - }, - "balance": { - "message": "Solde" - }, - "base58": { - "message": "Adresse Bitcoin invalide" - }, - "bech32": { - "message": "Adresse Bitcoin invalide" - }, - "cancel": { - "message": "Annuler" - }, - "clear": { - "message": "Effacer" - }, - "confirmation.account": { - "message": "Compte" - }, - "confirmation.confirmButton": { - "message": "Confirmer" - }, - "confirmation.estimatedChanges": { - "message": "Changements estimés" - }, - "confirmation.estimatedChanges.send": { - "message": "Vous envoyez" - }, - "confirmation.origin": { - "message": "Origine" - }, - "confirmation.origin.tooltip": { - "message": "Le dApp demandant la signature" - }, - "confirmation.requestOrigin": { - "message": "Demande de la part de" - }, - "confirmation.signAndSendTransaction.title": { - "message": "Demande de transaction" - }, - "confirmation.signMessage.confirmButton": { - "message": "Signer" - }, - "confirmation.signMessage.message": { - "message": "Message" - }, - "confirmation.signMessage.title": { - "message": "Signer le message" - }, - "continue": { - "message": "Continuer" - }, - "error": { - "message": "Erreur" - }, - "error.0": { - "message": "Format invalide" - }, - "error.1000": { - "message": "Validation échouée" - }, - "error.2000": { - "message": "Ressource non trouvée" - }, - "error.3000": { - "message": "Erreur de connexion" - }, - "error.4000": { - "message": "État du portefeuille corrompu" - }, - "error.5000": { - "message": "Erreur de stockage" - }, - "error.6000": { - "message": "Méthode non implémentée ou non supportée" - }, - "error.7000": { - "message": "Permission refusée ou autorisation insuffisante" - }, - "error.8000": { - "message": "Erreur d'action de l'utilisateur" - }, - "error.9000": { - "message": "État corrompu, invariante non respectée ou assertion échouée." - }, - "error.internal": { - "message": "Erreur interne. Veuillez réessayer plus tard ou contacter le support" - }, - "feeRate": { - "message": "Taux de frais" - }, - "feeRateTooLow": { - "message": "Taux de frais trop bas" - }, - "feeTooLow": { - "message": "Frais trop bas" - }, - "from": { - "message": "De" - }, - "inputTooLarge": { - "message": "Montant invalide : trop grand" - }, - "insufficientFunds": { - "message": "Fonds insuffisants pour couvrir le montant plus les frais" - }, - "invalidBase58PayloadLength": { - "message": "Adresse Bitcoin invalide : longueur invalide" - }, - "invalidCharacter": { - "message": "Montant invalide : caractère invalide" - }, - "invalidLegacyPrefix": { - "message": "Adresse Bitcoin invalide : préfixe legacy invalide" - }, - "legacyAddressTooLong": { - "message": "Adresse Bitcoin invalide" - }, - "max": { - "message": "Max" - }, - "minutes": { - "message": "min" - }, - "missingDigits": { - "message": "Montant invalide : chiffres manquants" - }, - "network": { - "message": "Réseau" - }, - "networkFee": { - "message": "Frais de réseau" - }, - "networkFeeTooltip": { - "message": "Les frais de réseau totaux" - }, - "networkValidation": { - "message": "Adresse Bitcoin invalide : réseau incorrect" - }, - "noRecipients": { - "message": "Destinataires manquants" - }, - "noUtxosSelected": { - "message": "Échec de la construction de la transaction : UTXOs manquants" - }, - "outOfRange": { - "message": "Montant invalide : hors plage" - }, - "outputBelowDustLimit": { - "message": "Montant en dessous de la limite dust" - }, - "psbt": { - "message": "PSBT invalide" - }, - "recipient": { - "message": "Destinataire" - }, - "recipientPlaceholder": { - "message": "Entrez l'adresse de réception" - }, - "review": { - "message": "Vérifier" - }, - "reviewTransactionWarning": { - "message": "Vérifiez la transaction avant de continuer" - }, - "send": { - "message": "Envoyer" - }, - "sending": { - "message": "Envoi" - }, - "toAddress": { - "message": "À" - }, - "tooPrecise": { - "message": "Montant invalide : trop précis" - }, - "total": { - "message": "Total" - }, - "transactionSpeed": { - "message": "Vitesse de transaction" - }, - "transactionSpeedTooltip": { - "message": "Le temps estimé de la transaction" - }, - "unexpected": { - "message": "Une erreur inattendue s'est produite" - }, - "unknownError": { - "message": "Une erreur inconnue s'est produite" - }, - "unknownUtxo": { - "message": "Échec de la construction de la transaction : UTXO inconnu" - }, - "witnessProgram": { - "message": "Adresse Bitcoin invalide : programme witness" - }, - "witnessVersion": { - "message": "Adresse Bitcoin invalide : version witness" - } - } - }, - { - "locale": "ja", - "messages": { - "MmssingNonWitnessUtxo": { - "message": "トランザクションの構築に失敗: non-witness UTXO が不足しています" - }, - "amount": { - "message": "金額" - }, - "asset": { - "message": "資産" - }, - "balance": { - "message": "残高" - }, - "base58": { - "message": "無効な Bitcoin アドレス" - }, - "bech32": { - "message": "無効な Bitcoin アドレス" - }, - "cancel": { - "message": "キャンセル" - }, - "clear": { - "message": "クリア" - }, - "confirmation.account": { - "message": "アカウント" - }, - "confirmation.confirmButton": { - "message": "確定" - }, - "confirmation.estimatedChanges": { - "message": "予測される増減額" - }, - "confirmation.estimatedChanges.send": { - "message": "送金額" - }, - "confirmation.origin": { - "message": "オリジン" - }, - "confirmation.origin.tooltip": { - "message": "署名をリクエストしている dApp" - }, - "confirmation.requestOrigin": { - "message": "要求元" - }, - "confirmation.signAndSendTransaction.title": { - "message": "トランザクションリクエスト" - }, - "confirmation.signMessage.confirmButton": { - "message": "署名" - }, - "confirmation.signMessage.message": { - "message": "メッセージ" - }, - "confirmation.signMessage.title": { - "message": "メッセージに署名" - }, - "continue": { - "message": "続ける" - }, - "error": { - "message": "エラー" - }, - "error.0": { - "message": "無効な形式" - }, - "error.1000": { - "message": "検証に失敗しました" - }, - "error.2000": { - "message": "リソースが見つかりません" - }, - "error.3000": { - "message": "接続エラー" - }, - "error.4000": { - "message": "ウォレット状態が破損しています" - }, - "error.5000": { - "message": "ストレージエラー" - }, - "error.6000": { - "message": "メソッドが実装されていないかサポートされていません" - }, - "error.7000": { - "message": "権限が拒否されたか十分な認証がありません" - }, - "error.8000": { - "message": "ユーザーアクションエラー" - }, - "error.9000": { - "message": "破損した状態、不変条件が守られていないかアサーションに失敗しました。" - }, - "error.internal": { - "message": "内部エラー。後ほどお試しくださいまたはサポートにご連絡ください" - }, - "feeRate": { - "message": "手数料率" - }, - "feeRateTooLow": { - "message": "手数料率が低すぎます" - }, - "feeTooLow": { - "message": "手数料が低すぎます" - }, - "from": { - "message": "送金元" - }, - "inputTooLarge": { - "message": "無効な金額: 大きすぎる" - }, - "insufficientFunds": { - "message": "金額プラス手数料をカバーするのに資金が不足しています" - }, - "invalidBase58PayloadLength": { - "message": "無効な Bitcoin アドレス: 無効な長さ" - }, - "invalidCharacter": { - "message": "無効な金額: 無効な文字" - }, - "invalidLegacyPrefix": { - "message": "無効な Bitcoin アドレス: 無効な legacy プレフィックス" - }, - "legacyAddressTooLong": { - "message": "無効な Bitcoin アドレス" - }, - "max": { - "message": "最大" - }, - "minutes": { - "message": "分" - }, - "missingDigits": { - "message": "無効な金額: 桁が不足" - }, - "network": { - "message": "ネットワーク" - }, - "networkFee": { - "message": "ネットワーク手数料" - }, - "networkFeeTooltip": { - "message": "総ネットワーク手数料" - }, - "networkValidation": { - "message": "無効な Bitcoin アドレス: 間違ったネットワーク" - }, - "noRecipients": { - "message": "受取人が不足しています" - }, - "noUtxosSelected": { - "message": "トランザクションの構築に失敗: UTXO が不足しています" - }, - "outOfRange": { - "message": "無効な金額: 範囲外" - }, - "outputBelowDustLimit": { - "message": "金額がダスト制限以下です" - }, - "psbt": { - "message": "無効な PSBT" - }, - "recipient": { - "message": "受取人" - }, - "recipientPlaceholder": { - "message": "受信アドレスを入力" - }, - "review": { - "message": "レビュー" - }, - "reviewTransactionWarning": { - "message": "進める前にトランザクションを確認してください" - }, - "send": { - "message": "送信" - }, - "sending": { - "message": "送信中" - }, - "toAddress": { - "message": "宛先" - }, - "tooPrecise": { - "message": "無効な金額: 精度が高すぎる" - }, - "total": { - "message": "合計" - }, - "transactionSpeed": { - "message": "トランザクション速度" - }, - "transactionSpeedTooltip": { - "message": "トランザクションの予想時間" - }, - "unexpected": { - "message": "予期せぬエラーが発生しました" - }, - "unknownError": { - "message": "不明なエラーが発生しました" - }, - "unknownUtxo": { - "message": "トランザクションの構築に失敗: 不明な UTXO" - }, - "witnessProgram": { - "message": "無効な Bitcoin アドレス: witness プログラム" - }, - "witnessVersion": { - "message": "無効な Bitcoin アドレス: witness バージョン" - } - } - }, - { - "locale": "ru", - "messages": { - "MmssingNonWitnessUtxo": { - "message": "Failed to build transaction: missing non-witness UTXO" - }, - "amount": { - "message": "Сумма" - }, - "asset": { - "message": "Asset" - }, - "balance": { - "message": "Баланс" - }, - "base58": { - "message": "Invalid Bitcoin address" - }, - "bech32": { - "message": "Invalid Bitcoin address" - }, - "cancel": { - "message": "Отмена" - }, - "clear": { - "message": "Clear" - }, - "confirmation.account": { - "message": "Аккаунт" - }, - "confirmation.confirmButton": { - "message": "Подтвердить" - }, - "confirmation.estimatedChanges": { - "message": "Прогнозируемые изменения" - }, - "confirmation.estimatedChanges.send": { - "message": "Вы отправляете" - }, - "confirmation.origin": { - "message": "Источник" - }, - "confirmation.origin.tooltip": { - "message": "dApp, запрашивающий подпись" - }, - "confirmation.requestOrigin": { - "message": "Запрос от" - }, - "confirmation.signAndSendTransaction.title": { - "message": "Запрос транзакции" - }, - "confirmation.signMessage.confirmButton": { - "message": "Подписать" - }, - "confirmation.signMessage.message": { - "message": "Сообщение" - }, - "confirmation.signMessage.title": { - "message": "Подписать сообщение" - }, - "continue": { - "message": "Continue" - }, - "error": { - "message": "Ошибка" - }, - "error.internal": { - "message": "Внутренняя ошибка. Пожалуйста, попробуйте позже или обратитесь в поддержку" - }, - "feeRate": { - "message": "Fee rate" - }, - "feeRateTooLow": { - "message": "Fee rate too low" - }, - "feeTooLow": { - "message": "Fee too low" - }, - "from": { - "message": "От" - }, - "inputTooLarge": { - "message": "Invalid amount: too large" - }, - "insufficientFunds": { - "message": "Funds are insufficient to cover amount plus fee" - }, - "invalidBase58PayloadLength": { - "message": "Invalid Bitcoin address: invalid length" - }, - "invalidCharacter": { - "message": "Invalid amount: invalid character" - }, - "invalidLegacyPrefix": { - "message": "Invalid Bitcoin address: invalid legacy prefix" - }, - "legacyAddressTooLong": { - "message": "Invalid Bitcoin address" - }, - "max": { - "message": "Макс." - }, - "minutes": { - "message": "min" - }, - "missingDigits": { - "message": "Invalid amount: missing digits" - }, - "network": { - "message": "Сеть" - }, - "networkFee": { - "message": "Network Fee" - }, - "networkFeeTooltip": { - "message": "The total network fee" - }, - "networkValidation": { - "message": "Invalid Bitcoin address: wrong network" - }, - "noRecipients": { - "message": "Missing recipients" - }, - "noUtxosSelected": { - "message": "Failed to build transaction: missing UTXOs" - }, - "outOfRange": { - "message": "Invalid amount: out of range" - }, - "outputBelowDustLimit": { - "message": "Amount below dust limit" - }, - "psbt": { - "message": "Invalid PSBT" - }, - "recipient": { - "message": "Получатель" - }, - "recipientPlaceholder": { - "message": "Enter receiving address" - }, - "review": { - "message": "Просмотр" - }, - "reviewTransactionWarning": { - "message": "Проверьте транзакцию, прежде чем продолжить" - }, - "send": { - "message": "Отправить" - }, - "sending": { - "message": "Отправка..." - }, - "toAddress": { - "message": "To Address" - }, - "tooPrecise": { - "message": "Invalid amount: too precise" - }, - "total": { - "message": "Итого" - }, - "transactionSpeed": { - "message": "Скорость транзакции" - }, - "transactionSpeedTooltip": { - "message": "Примерное время транзакции" - }, - "unexpected": { - "message": "An unexpected error occurred" - }, - "unknownError": { - "message": "An unknown error occurred" - }, - "unknownUtxo": { - "message": "Failed to build transaction: unknown UTXO" - }, - "witnessProgram": { - "message": "Invalid Bitcoin address: witness program" - }, - "witnessVersion": { - "message": "Invalid Bitcoin address: witness version" - } - } - }, - { - "locale": "tl", - "messages": { - "MmssingNonWitnessUtxo": { - "message": "Failed to build transaction: missing non-witness UTXO" - }, - "amount": { - "message": "Halaga" - }, - "asset": { - "message": "Asset" - }, - "balance": { - "message": "Balanse" - }, - "base58": { - "message": "Invalid Bitcoin address" - }, - "bech32": { - "message": "Invalid Bitcoin address" - }, - "cancel": { - "message": "Kanselahin" - }, - "clear": { - "message": "Clear" - }, - "confirmation.account": { - "message": "Account" - }, - "confirmation.confirmButton": { - "message": "Kumpirmahin" - }, - "confirmation.estimatedChanges": { - "message": "Tinatayang mga pagbabago" - }, - "confirmation.estimatedChanges.send": { - "message": "Nagpadala ka ng" - }, - "confirmation.origin": { - "message": "Pinagmulan" - }, - "confirmation.origin.tooltip": { - "message": "Ang dApp na humihingi ng lagda" - }, - "confirmation.requestOrigin": { - "message": "Kahilingan mula sa/kay" - }, - "confirmation.signAndSendTransaction.title": { - "message": "Hiling na transaksyon" - }, - "confirmation.signMessage.confirmButton": { - "message": "Lagdaan" - }, - "confirmation.signMessage.message": { - "message": "Mensahe" - }, - "confirmation.signMessage.title": { - "message": "Lagdaan ang Mensahe" - }, - "continue": { - "message": "Continue" - }, - "error": { - "message": "Error" - }, - "error.internal": { - "message": "Panloob na error. Subukang muli mamaya o makipag-ugnayan sa suporta" - }, - "feeRate": { - "message": "Fee rate" - }, - "feeRateTooLow": { - "message": "Fee rate too low" - }, - "feeTooLow": { - "message": "Fee too low" - }, - "from": { - "message": "Mula sa" - }, - "inputTooLarge": { - "message": "Invalid amount: too large" - }, - "insufficientFunds": { - "message": "Funds are insufficient to cover amount plus fee" - }, - "invalidBase58PayloadLength": { - "message": "Invalid Bitcoin address: invalid length" - }, - "invalidCharacter": { - "message": "Invalid amount: invalid character" - }, - "invalidLegacyPrefix": { - "message": "Invalid Bitcoin address: invalid legacy prefix" - }, - "legacyAddressTooLong": { - "message": "Invalid Bitcoin address" - }, - "max": { - "message": "Max" - }, - "minutes": { - "message": "min" - }, - "missingDigits": { - "message": "Invalid amount: missing digits" - }, - "network": { - "message": "Network" - }, - "networkFee": { - "message": "Network Fee" - }, - "networkFeeTooltip": { - "message": "The total network fee" - }, - "networkValidation": { - "message": "Invalid Bitcoin address: wrong network" - }, - "noRecipients": { - "message": "Missing recipients" - }, - "noUtxosSelected": { - "message": "Failed to build transaction: missing UTXOs" - }, - "outOfRange": { - "message": "Invalid amount: out of range" - }, - "outputBelowDustLimit": { - "message": "Amount below dust limit" - }, - "psbt": { - "message": "Invalid PSBT" - }, - "recipient": { - "message": "Tatanggap" - }, - "recipientPlaceholder": { - "message": "Enter receiving address" - }, - "review": { - "message": "Suriin" - }, - "reviewTransactionWarning": { - "message": "Suriin ang transaksyon bago magpatuloy" - }, - "send": { - "message": "Ipadala" - }, - "sending": { - "message": "Ipinapadala" - }, - "toAddress": { - "message": "To Address" - }, - "tooPrecise": { - "message": "Invalid amount: too precise" - }, - "total": { - "message": "Kabuuan" - }, - "transactionSpeed": { - "message": "Bilis ng Transaksyon" - }, - "transactionSpeedTooltip": { - "message": "Ang tinatayang tagal ng transaksyon" - }, - "unexpected": { - "message": "An unexpected error occurred" - }, - "unknownError": { - "message": "An unknown error occurred" - }, - "unknownUtxo": { - "message": "Failed to build transaction: unknown UTXO" - }, - "witnessProgram": { - "message": "Invalid Bitcoin address: witness program" - }, - "witnessVersion": { - "message": "Invalid Bitcoin address: witness version" - } - } - }, - { - "locale": "tr", - "messages": { - "MmssingNonWitnessUtxo": { - "message": "Failed to build transaction: missing non-witness UTXO" - }, - "amount": { - "message": "Miktar" - }, - "asset": { - "message": "Asset" - }, - "balance": { - "message": "Bakiye" - }, - "base58": { - "message": "Invalid Bitcoin address" - }, - "bech32": { - "message": "Invalid Bitcoin address" - }, - "cancel": { - "message": "İptal" - }, - "clear": { - "message": "Clear" - }, - "confirmation.account": { - "message": "Hesap" - }, - "confirmation.confirmButton": { - "message": "Onayla" - }, - "confirmation.estimatedChanges": { - "message": "Tahmini değişiklikler" - }, - "confirmation.estimatedChanges.send": { - "message": "Gönderdiğiniz" - }, - "confirmation.origin": { - "message": "Kaynak" - }, - "confirmation.origin.tooltip": { - "message": "İmzayı isteyen dApp" - }, - "confirmation.requestOrigin": { - "message": "Talebi gönderen" - }, - "confirmation.signAndSendTransaction.title": { - "message": "İşlem talebi" - }, - "confirmation.signMessage.confirmButton": { - "message": "İmzala" - }, - "confirmation.signMessage.message": { - "message": "Mesaj" - }, - "confirmation.signMessage.title": { - "message": "Mesajı İmzala" - }, - "continue": { - "message": "Continue" - }, - "error": { - "message": "Hata" - }, - "error.internal": { - "message": "İç hata. Lütfen daha sonra tekrar deneyin veya destekle iletişime geçin" - }, - "feeRate": { - "message": "Fee rate" - }, - "feeRateTooLow": { - "message": "Fee rate too low" - }, - "feeTooLow": { - "message": "Fee too low" - }, - "from": { - "message": "Gönderen" - }, - "inputTooLarge": { - "message": "Invalid amount: too large" - }, - "insufficientFunds": { - "message": "Funds are insufficient to cover amount plus fee" - }, - "invalidBase58PayloadLength": { - "message": "Invalid Bitcoin address: invalid length" - }, - "invalidCharacter": { - "message": "Invalid amount: invalid character" - }, - "invalidLegacyPrefix": { - "message": "Invalid Bitcoin address: invalid legacy prefix" - }, - "legacyAddressTooLong": { - "message": "Invalid Bitcoin address" - }, - "max": { - "message": "Maksimum" - }, - "minutes": { - "message": "min" - }, - "missingDigits": { - "message": "Invalid amount: missing digits" - }, - "network": { - "message": "Ağ" - }, - "networkFee": { - "message": "Network Fee" - }, - "networkFeeTooltip": { - "message": "The total network fee" - }, - "networkValidation": { - "message": "Invalid Bitcoin address: wrong network" - }, - "noRecipients": { - "message": "Missing recipients" - }, - "noUtxosSelected": { - "message": "Failed to build transaction: missing UTXOs" - }, - "outOfRange": { - "message": "Invalid amount: out of range" - }, - "outputBelowDustLimit": { - "message": "Amount below dust limit" - }, - "psbt": { - "message": "Invalid PSBT" - }, - "recipient": { - "message": "Alıcı" - }, - "recipientPlaceholder": { - "message": "Enter receiving address" - }, - "review": { - "message": "İncele" - }, - "reviewTransactionWarning": { - "message": "Devam etmeden önce işlemi inceleyin" - }, - "send": { - "message": "Gönder" - }, - "sending": { - "message": "Gönderiliyor" - }, - "toAddress": { - "message": "To Address" - }, - "tooPrecise": { - "message": "Invalid amount: too precise" - }, - "total": { - "message": "Toplam" - }, - "transactionSpeed": { - "message": "İşlem Hızı" - }, - "transactionSpeedTooltip": { - "message": "Tahmini işlem süresi" - }, - "unexpected": { - "message": "An unexpected error occurred" - }, - "unknownError": { - "message": "An unknown error occurred" - }, - "unknownUtxo": { - "message": "Failed to build transaction: unknown UTXO" - }, - "witnessProgram": { - "message": "Invalid Bitcoin address: witness program" - }, - "witnessVersion": { - "message": "Invalid Bitcoin address: witness version" - } - } - }, - { - "locale": "vi", - "messages": { - "MmssingNonWitnessUtxo": { - "message": "Failed to build transaction: missing non-witness UTXO" - }, - "amount": { - "message": "Số tiền" - }, - "asset": { - "message": "Asset" - }, - "balance": { - "message": "Số dư" - }, - "base58": { - "message": "Invalid Bitcoin address" - }, - "bech32": { - "message": "Invalid Bitcoin address" - }, - "cancel": { - "message": "Hủy" - }, - "clear": { - "message": "Clear" - }, - "confirmation.account": { - "message": "Tài khoản" - }, - "confirmation.confirmButton": { - "message": "Xác nhận" - }, - "confirmation.estimatedChanges": { - "message": "Thay đổi ước tính" - }, - "confirmation.estimatedChanges.send": { - "message": "Bạn gửi" - }, - "confirmation.origin": { - "message": "Nguồn gốc" - }, - "confirmation.origin.tooltip": { - "message": "DApp yêu cầu chữ ký" - }, - "confirmation.requestOrigin": { - "message": "Yêu cầu từ" - }, - "confirmation.signAndSendTransaction.title": { - "message": "Yêu cầu giao dịch" - }, - "confirmation.signMessage.confirmButton": { - "message": "Ký" - }, - "confirmation.signMessage.message": { - "message": "Tin nhắn" - }, - "confirmation.signMessage.title": { - "message": "Ký Tin nhắn" - }, - "continue": { - "message": "Continue" - }, - "error": { - "message": "Lỗi" - }, - "error.internal": { - "message": "Lỗi nội bộ. Vui lòng thử lại sau hoặc liên hệ hỗ trợ" - }, - "feeRate": { - "message": "Fee rate" - }, - "feeRateTooLow": { - "message": "Fee rate too low" - }, - "feeTooLow": { - "message": "Fee too low" - }, - "from": { - "message": "Từ" - }, - "inputTooLarge": { - "message": "Invalid amount: too large" - }, - "insufficientFunds": { - "message": "Funds are insufficient to cover amount plus fee" - }, - "invalidBase58PayloadLength": { - "message": "Invalid Bitcoin address: invalid length" - }, - "invalidCharacter": { - "message": "Invalid amount: invalid character" - }, - "invalidLegacyPrefix": { - "message": "Invalid Bitcoin address: invalid legacy prefix" - }, - "legacyAddressTooLong": { - "message": "Invalid Bitcoin address" - }, - "max": { - "message": "Tối đa" - }, - "minutes": { - "message": "min" - }, - "missingDigits": { - "message": "Invalid amount: missing digits" - }, - "network": { - "message": "Mạng" - }, - "networkFee": { - "message": "Network Fee" - }, - "networkFeeTooltip": { - "message": "The total network fee" - }, - "networkValidation": { - "message": "Invalid Bitcoin address: wrong network" - }, - "noRecipients": { - "message": "Missing recipients" - }, - "noUtxosSelected": { - "message": "Failed to build transaction: missing UTXOs" - }, - "outOfRange": { - "message": "Invalid amount: out of range" - }, - "outputBelowDustLimit": { - "message": "Amount below dust limit" - }, - "psbt": { - "message": "Invalid PSBT" - }, - "recipient": { - "message": "Người nhận" - }, - "recipientPlaceholder": { - "message": "Enter receiving address" - }, - "review": { - "message": "Xem lại" - }, - "reviewTransactionWarning": { - "message": "Xem lại giao dịch trước khi tiếp tục" - }, - "send": { - "message": "Gửi" - }, - "sending": { - "message": "Đang gửi" - }, - "toAddress": { - "message": "To Address" - }, - "tooPrecise": { - "message": "Invalid amount: too precise" - }, - "total": { - "message": "Tổng" - }, - "transactionSpeed": { - "message": "Tốc độ giao dịch" - }, - "transactionSpeedTooltip": { - "message": "Thời gian giao dịch ước tính" - }, - "unexpected": { - "message": "An unexpected error occurred" - }, - "unknownError": { - "message": "An unknown error occurred" - }, - "unknownUtxo": { - "message": "Failed to build transaction: unknown UTXO" - }, - "witnessProgram": { - "message": "Invalid Bitcoin address: witness program" - }, - "witnessVersion": { - "message": "Invalid Bitcoin address: witness version" - } - } - }, - { - "locale": "中文", - "messages": { - "MmssingNonWitnessUtxo": { - "message": "Failed to build transaction: missing non-witness UTXO" - }, - "amount": { - "message": "金额" - }, - "asset": { - "message": "Asset" - }, - "balance": { - "message": "余额" - }, - "base58": { - "message": "Invalid Bitcoin address" - }, - "bech32": { - "message": "Invalid Bitcoin address" - }, - "cancel": { - "message": "取消" - }, - "clear": { - "message": "Clear" - }, - "confirmation.account": { - "message": "账户" - }, - "confirmation.confirmButton": { - "message": "确认" - }, - "confirmation.estimatedChanges": { - "message": "预计变化" - }, - "confirmation.estimatedChanges.send": { - "message": "您发送" - }, - "confirmation.origin": { - "message": "来源" - }, - "confirmation.origin.tooltip": { - "message": "请求签名的 dApp" - }, - "confirmation.requestOrigin": { - "message": "请求来自" - }, - "confirmation.signAndSendTransaction.title": { - "message": "交易请求" - }, - "confirmation.signMessage.confirmButton": { - "message": "签名" - }, - "confirmation.signMessage.message": { - "message": "消息" - }, - "confirmation.signMessage.title": { - "message": "签名消息" - }, - "continue": { - "message": "Continue" - }, - "error": { - "message": "错误" - }, - "error.internal": { - "message": "内部错误。请稍后重试或联系支持" - }, - "feeRate": { - "message": "Fee rate" - }, - "feeRateTooLow": { - "message": "Fee rate too low" - }, - "feeTooLow": { - "message": "Fee too low" - }, - "from": { - "message": "从" - }, - "inputTooLarge": { - "message": "Invalid amount: too large" - }, - "insufficientFunds": { - "message": "Funds are insufficient to cover amount plus fee" - }, - "invalidBase58PayloadLength": { - "message": "Invalid Bitcoin address: invalid length" - }, - "invalidCharacter": { - "message": "Invalid amount: invalid character" - }, - "invalidLegacyPrefix": { - "message": "Invalid Bitcoin address: invalid legacy prefix" - }, - "legacyAddressTooLong": { - "message": "Invalid Bitcoin address" - }, - "max": { - "message": "最多" - }, - "minutes": { - "message": "min" - }, - "missingDigits": { - "message": "Invalid amount: missing digits" - }, - "network": { - "message": "网络" - }, - "networkFee": { - "message": "Network Fee" - }, - "networkFeeTooltip": { - "message": "The total network fee" - }, - "networkValidation": { - "message": "Invalid Bitcoin address: wrong network" - }, - "noRecipients": { - "message": "Missing recipients" - }, - "noUtxosSelected": { - "message": "Failed to build transaction: missing UTXOs" - }, - "outOfRange": { - "message": "Invalid amount: out of range" - }, - "outputBelowDustLimit": { - "message": "Amount below dust limit" - }, - "psbt": { - "message": "Invalid PSBT" - }, - "recipient": { - "message": "收款人" - }, - "recipientPlaceholder": { - "message": "Enter receiving address" - }, - "review": { - "message": "审查" - }, - "reviewTransactionWarning": { - "message": "继续之前,请先审查交易" - }, - "send": { - "message": "发送" - }, - "sending": { - "message": "发送中" - }, - "toAddress": { - "message": "To Address" - }, - "tooPrecise": { - "message": "Invalid amount: too precise" - }, - "total": { - "message": "总额" - }, - "transactionSpeed": { - "message": "交易速度" - }, - "transactionSpeedTooltip": { - "message": "交易预计时间" - }, - "unexpected": { - "message": "An unexpected error occurred" - }, - "unknownError": { - "message": "An unknown error occurred" - }, - "unknownUtxo": { - "message": "Failed to build transaction: unknown UTXO" - }, - "witnessProgram": { - "message": "Invalid Bitcoin address: witness program" - }, - "witnessVersion": { - "message": "Invalid Bitcoin address: witness version" - } - } - } - ], - "manifest": { - "description": "Manage Bitcoin using MetaMask", - "initialPermissions": { - "endowment:assets": { - "scopes": [ - "bip122:000000000019d6689c085ae165831e93", - "bip122:000000000933ea01ad0ee984209779ba", - "bip122:00000000da84f2bafbbc53dee25a72ae", - "bip122:00000008819873e925422c1ff0f99f7c", - "bip122:regtest" - ] - }, - "endowment:cronjob": { - "jobs": [ - { - "duration": "PT30S", - "request": { - "method": "synchronizeAccounts" - } - } - ] - }, - "endowment:keyring": {}, - "endowment:lifecycle-hooks": {}, - "endowment:network-access": {}, - "endowment:webassembly": {}, - "snap_dialog": {}, - "snap_getBip32Entropy": [ - { - "curve": "secp256k1", - "path": ["m", "44'", "0'"] - }, - { - "curve": "secp256k1", - "path": ["m", "44'", "1'"] - }, - { - "curve": "secp256k1", - "path": ["m", "49'", "0'"] - }, - { - "curve": "secp256k1", - "path": ["m", "49'", "1'"] - }, - { - "curve": "secp256k1", - "path": ["m", "84'", "0'"] - }, - { - "curve": "secp256k1", - "path": ["m", "84'", "1'"] - }, - { - "curve": "secp256k1", - "path": ["m", "86'", "0'"] - }, - { - "curve": "secp256k1", - "path": ["m", "86'", "1'"] - } - ], - "snap_getPreferences": {}, - "snap_manageAccounts": {}, - "snap_manageState": {} - }, - "manifestVersion": "0.1", - "platformVersion": "10.3.0", - "proposedName": "Bitcoin", - "repository": { - "type": "git", - "url": "https://github.com/MetaMask/snap-bitcoin-wallet.git" - }, - "source": { - "locales": [ - "locales/de.json", - "locales/en.json", - "locales/es.json", - "locales/fr.json", - "locales/ja.json", - "locales/ru.json", - "locales/tl.json", - "locales/tr.json", - "locales/vi.json", - "locales/zh_CN.json" - ], - "location": { - "npm": { - "filePath": "dist/bundle.js", - "iconPath": "images/icon.svg", - "packageName": "@metamask/bitcoin-wallet-snap", - "registry": "https://registry.npmjs.org/" - } - }, - "shasum": "fXjFb2OqFUgWxxREGh1F1xYPCTrNttNvDgc0ZOUuLhk=" - }, - "version": "1.10.1" - }, - "preinstalled": true, - "removable": false, - "status": "running", - "version": "1.10.1", - "versionHistory": [ - { - "date": 1771890332059, - "origin": "metamask", - "version": "1.10.0" - }, - { - "date": 1775606918464, - "origin": "metamask", - "version": "1.10.1" - } - ] - }, - "npm:@metamask/ens-resolver-snap": { - "blocked": false, - "enabled": true, - "id": "npm:@metamask/ens-resolver-snap", - "initialPermissions": { - "endowment:ethereum-provider": {}, - "endowment:name-lookup": {}, - "endowment:network-access": {} - }, - "localizationFiles": [], - "manifest": { - "description": "A Snap used for ENS name resolution", - "initialPermissions": { - "endowment:ethereum-provider": {}, - "endowment:name-lookup": {}, - "endowment:network-access": {} - }, - "manifestVersion": "0.1", - "platformVersion": "10.0.0", - "proposedName": "Ethereum Name Service resolver", - "repository": { - "type": "git", - "url": "https://github.com/MetaMask/ens-resolver-snap.git" - }, - "source": { - "location": { - "npm": { - "filePath": "dist/bundle.js", - "iconPath": "images/icon.svg", - "packageName": "@metamask/ens-resolver-snap", - "registry": "https://registry.npmjs.org/" - } - }, - "shasum": "SZ90B7Jf3BDtVGwZDHCkEqr/18m+g3QKYOBAHEf0fc4=" - }, - "version": "1.2.0" - }, - "preinstalled": true, - "removable": false, - "status": "stopped", - "version": "1.2.0", - "versionHistory": [ - { - "date": 1771890332038, - "origin": "metamask", - "version": "1.1.0" - }, - { - "date": 1777322895682, - "origin": "metamask", - "version": "1.2.0" - } - ] - }, - "npm:@metamask/gator-permissions-snap": { - "blocked": false, - "enabled": true, - "hideSnapBranding": true, - "id": "npm:@metamask/gator-permissions-snap", - "initialConnections": { - "npm:@metamask/permissions-kernel-snap": {} - }, - "initialPermissions": { - "endowment:ethereum-provider": {}, - "endowment:network-access": {}, - "endowment:rpc": { - "dapps": false, - "snaps": true - }, - "snap_dialog": {}, - "snap_getPreferences": {}, - "snap_manageState": {} - }, - "localizationFiles": [], - "manifest": { - "description": "Grants 7715 permissions from a DeleGator smart account", - "initialConnections": { - "npm:@metamask/permissions-kernel-snap": {} - }, - "initialPermissions": { - "endowment:ethereum-provider": {}, - "endowment:network-access": {}, - "endowment:rpc": { - "dapps": false, - "snaps": true - }, - "snap_dialog": {}, - "snap_getPreferences": {}, - "snap_manageState": {} - }, - "manifestVersion": "0.1", - "platformVersion": "11.1.0", - "proposedName": "Gator Permissions", - "repository": { - "type": "git", - "url": "https://github.com/MetaMask/snap-7715-permissions.git" - }, - "source": { - "location": { - "npm": { - "filePath": "dist/bundle.js", - "iconPath": "images/icon.svg", - "packageName": "@metamask/gator-permissions-snap", - "registry": "https://registry.npmjs.org/" - } - }, - "shasum": "Uj9l8gKTSJhNVxsqHo/Dn93JHgLEEdCMzBy0RXZaLMU=" - }, - "version": "2.1.0" - }, - "preinstalled": true, - "removable": false, - "status": "stopped", - "version": "2.1.0", - "versionHistory": [ - { - "date": 1771890332023, - "origin": "metamask", - "version": "1.1.1" - }, - { - "date": 1773763012195, - "origin": "metamask", - "version": "1.3.0" - }, - { - "date": 1774392818819, - "origin": "metamask", - "version": "1.3.1" - }, - { - "date": 1778517176266, - "origin": "metamask", - "version": "2.0.0" - }, - { - "date": 1778690165280, - "origin": "metamask", - "version": "2.1.0" - } - ] - }, - "npm:@metamask/institutional-wallet-snap": { - "blocked": false, - "enabled": true, - "hideSnapBranding": true, - "id": "npm:@metamask/institutional-wallet-snap", - "initialConnections": { - "http://localhost:3000": {}, - "http://localhost:8000": {}, - "https://alpha.mycactus.io": {}, - "https://app-beta.signer.cubist.dev": {}, - "https://app-gamma.signer.cubist.dev": {}, - "https://app.bitgo-test.com": {}, - "https://app.bitgo.com": {}, - "https://app.signer.cubist.dev": {}, - "https://apps-portal.safe.global": {}, - "https://console.dev.mpcvault.com": {}, - "https://console.fireblocks.io": {}, - "https://console.mpcvault.com": {}, - "https://debug.mycactus.dev:1443": {}, - "https://dev10-console.waterballoons.xyz": {}, - "https://dev4-console.waterballoons.xyz": {}, - "https://eu-console.fireblocks.io": {}, - "https://eu2-console.fireblocks.io": {}, - "https://local.waterballoons.xyz:4200": {}, - "https://localhost:3000": {}, - "https://neptune-custody-ui.metamask-institutional.io": {}, - "https://pre.mycactus.com": {}, - "https://sandbox.fireblocks.io": {}, - "https://saturn-custody-ui.metamask-institutional.io": {}, - "https://ui-preprod-v2.qa.zodia.io": {}, - "https://ui-preprod-v2.uat.zodia.io": {}, - "https://ui-v2.qa.zodia.io": {}, - "https://ui-v2.sit.zodia.io": {}, - "https://v2.custody.zodia.io": {}, - "https://www.mycactus.com": {}, - "https://www.mycactus.dev": {}, - "localhost:8000": {} - }, - "initialPermissions": { - "endowment:cronjob": { - "jobs": [ - { - "expression": "5/15 * * * * *", - "request": { - "method": "execute" - } - }, - { - "expression": "* * * * *", - "request": { - "method": "manageSleepState" - } - } - ] - }, - "endowment:ethereum-provider": {}, - "endowment:keyring": { - "allowedOrigins": ["localhost:8000", "http://localhost:8000"] - }, - "endowment:network-access": {}, - "endowment:page-home": {}, - "endowment:rpc": { - "allowedOrigins": [ - "localhost:8000", - "http://localhost:8000", - "localhost:3000", - "https://localhost:3000", - "http://localhost:3000", - "https://neptune-custody-ui.metamask-institutional.io", - "https://zodia.io", - "https://ui-v2.sit.zodia.io", - "https://ui-v2.qa.zodia.io", - "https://ui-preprod-v2.qa.zodia.io", - "https://ui-preprod-v2.uat.zodia.io", - "https://v2.custody.zodia.io", - "https://console.fireblocks.io", - "https://eu-console.fireblocks.io", - "https://eu2-console.fireblocks.io", - "https://sandbox.fireblocks.io", - "https://local.waterballoons.xyz:4200", - "https://dev4-console.waterballoons.xyz", - "https://dev10-console.waterballoons.xyz", - "https://console.dev.mpcvault.com", - "https://saturn-custody-ui.metamask-institutional.io", - "https://console.mpcvault.com", - "https://app.bitgo.com", - "https://app.bitgo-test.com", - "https://apps-portal.safe.global", - "https://alpha.mycactus.io", - "https://pre.mycactus.com", - "https://www.mycactus.dev", - "https://debug.mycactus.dev:1443", - "https://www.mycactus.com", - "https://app-gamma.signer.cubist.dev", - "https://app-beta.signer.cubist.dev", - "https://app.signer.cubist.dev" - ] - }, - "snap_dialog": {}, - "snap_manageAccounts": {}, - "snap_manageState": {}, - "snap_notify": {} - }, - "localizationFiles": [], - "manifest": { - "description": "Institutional accounts in MetaMask.", - "initialConnections": { - "http://localhost:3000": {}, - "http://localhost:8000": {}, - "https://alpha.mycactus.io": {}, - "https://app-beta.signer.cubist.dev": {}, - "https://app-gamma.signer.cubist.dev": {}, - "https://app.bitgo-test.com": {}, - "https://app.bitgo.com": {}, - "https://app.signer.cubist.dev": {}, - "https://apps-portal.safe.global": {}, - "https://console.dev.mpcvault.com": {}, - "https://console.fireblocks.io": {}, - "https://console.mpcvault.com": {}, - "https://debug.mycactus.dev:1443": {}, - "https://dev10-console.waterballoons.xyz": {}, - "https://dev4-console.waterballoons.xyz": {}, - "https://eu-console.fireblocks.io": {}, - "https://eu2-console.fireblocks.io": {}, - "https://local.waterballoons.xyz:4200": {}, - "https://localhost:3000": {}, - "https://neptune-custody-ui.metamask-institutional.io": {}, - "https://pre.mycactus.com": {}, - "https://sandbox.fireblocks.io": {}, - "https://saturn-custody-ui.metamask-institutional.io": {}, - "https://ui-preprod-v2.qa.zodia.io": {}, - "https://ui-preprod-v2.uat.zodia.io": {}, - "https://ui-v2.qa.zodia.io": {}, - "https://ui-v2.sit.zodia.io": {}, - "https://v2.custody.zodia.io": {}, - "https://www.mycactus.com": {}, - "https://www.mycactus.dev": {}, - "localhost:8000": {} - }, - "initialPermissions": { - "endowment:cronjob": { - "jobs": [ - { - "expression": "5/15 * * * * *", - "request": { - "method": "execute" - } - }, - { - "expression": "* * * * *", - "request": { - "method": "manageSleepState" - } - } - ] - }, - "endowment:ethereum-provider": {}, - "endowment:keyring": { - "allowedOrigins": ["localhost:8000", "http://localhost:8000"] - }, - "endowment:network-access": {}, - "endowment:page-home": {}, - "endowment:rpc": { - "allowedOrigins": [ - "localhost:8000", - "http://localhost:8000", - "localhost:3000", - "https://localhost:3000", - "http://localhost:3000", - "https://neptune-custody-ui.metamask-institutional.io", - "https://zodia.io", - "https://ui-v2.sit.zodia.io", - "https://ui-v2.qa.zodia.io", - "https://ui-preprod-v2.qa.zodia.io", - "https://ui-preprod-v2.uat.zodia.io", - "https://v2.custody.zodia.io", - "https://console.fireblocks.io", - "https://eu-console.fireblocks.io", - "https://eu2-console.fireblocks.io", - "https://sandbox.fireblocks.io", - "https://local.waterballoons.xyz:4200", - "https://dev4-console.waterballoons.xyz", - "https://dev10-console.waterballoons.xyz", - "https://console.dev.mpcvault.com", - "https://saturn-custody-ui.metamask-institutional.io", - "https://console.mpcvault.com", - "https://app.bitgo.com", - "https://app.bitgo-test.com", - "https://apps-portal.safe.global", - "https://alpha.mycactus.io", - "https://pre.mycactus.com", - "https://www.mycactus.dev", - "https://debug.mycactus.dev:1443", - "https://www.mycactus.com", - "https://app-gamma.signer.cubist.dev", - "https://app-beta.signer.cubist.dev", - "https://app.signer.cubist.dev" - ] - }, - "snap_dialog": {}, - "snap_manageAccounts": {}, - "snap_manageState": {}, - "snap_notify": {} - }, - "manifestVersion": "0.1", - "proposedName": "Institutional Wallet", - "repository": { - "type": "git", - "url": "git+https://github.com/MetaMask/snap-institutional-wallet.git" - }, - "source": { - "location": { - "npm": { - "filePath": "dist/bundle.js", - "iconPath": "images/icon.svg", - "packageName": "@metamask/institutional-wallet-snap", - "registry": "https://registry.npmjs.org/" - } - }, - "shasum": "9KSYI8gbTMuwmAeXT1KFr5Cp0sSpZ8f6h0cefgt0SKE=" - }, - "version": "1.5.0" - }, - "preinstalled": true, - "removable": false, - "status": "running", - "version": "1.5.0", - "versionHistory": [ - { - "date": 1771890332042, - "origin": "metamask", - "version": "1.3.4" - }, - { - "date": 1775785213610, - "origin": "metamask", - "version": "1.5.0" - } - ] - }, - "npm:@metamask/message-signing-snap": { - "blocked": false, - "enabled": true, - "id": "npm:@metamask/message-signing-snap", - "initialConnections": { - "https://app.metamask.io": {}, - "https://developer.metamask.io": {}, - "https://docs.metamask.io": {}, - "https://portfolio-builds.metafi-dev.codefi.network": {}, - "https://portfolio.metamask.io": {}, - "npm:@metamask/gator-permissions-snap": {} - }, - "initialPermissions": { - "endowment:rpc": { - "dapps": true, - "snaps": true - }, - "snap_getEntropy": {} - }, - "localizationFiles": [], - "manifest": { - "description": "Provides public key and message signing used for signing in with MetaMask", - "initialConnections": { - "https://app.metamask.io": {}, - "https://developer.metamask.io": {}, - "https://docs.metamask.io": {}, - "https://portfolio-builds.metafi-dev.codefi.network": {}, - "https://portfolio.metamask.io": {}, - "npm:@metamask/gator-permissions-snap": {} - }, - "initialPermissions": { - "endowment:rpc": { - "dapps": true, - "snaps": true - }, - "snap_getEntropy": {} - }, - "manifestVersion": "0.1", - "platformVersion": "8.1.0", - "proposedName": "Sign in with MetaMask", - "repository": { - "type": "git", - "url": "https://github.com/MetaMask/message-signing-snap.git" - }, - "source": { - "location": { - "npm": { - "filePath": "dist/bundle.js", - "iconPath": "images/icon.svg", - "packageName": "@metamask/message-signing-snap", - "registry": "https://registry.npmjs.org/" - } - }, - "shasum": "9XT0QAdCcds4xq1qG+zB7DchjMLCv4g7crpYi9G0Tos=" - }, - "version": "1.1.4" - }, - "preinstalled": true, - "removable": false, - "status": "running", - "version": "1.1.4", - "versionHistory": [ - { - "date": 1771890332035, - "origin": "metamask", - "version": "1.1.4" - } - ] - }, - "npm:@metamask/permissions-kernel-snap": { - "blocked": false, - "enabled": true, - "hideSnapBranding": true, - "id": "npm:@metamask/permissions-kernel-snap", - "initialPermissions": { - "endowment:rpc": { - "dapps": true, - "snaps": false - } - }, - "localizationFiles": [], - "manifest": { - "description": "Manage onchain 7715 permissions", - "initialPermissions": { - "endowment:rpc": { - "dapps": true, - "snaps": false - } - }, - "manifestVersion": "0.1", - "platformVersion": "11.1.0", - "proposedName": "MetaMask Permissions Kernel", - "repository": { - "type": "git", - "url": "https://github.com/MetaMask/snap-7715-permissions.git" - }, - "source": { - "location": { - "npm": { - "filePath": "dist/bundle.js", - "iconPath": "images/icon.svg", - "packageName": "@metamask/permissions-kernel-snap", - "registry": "https://registry.npmjs.org/" - } - }, - "shasum": "RjVHlC9iqBsU/krj87qEwD0PqVy92NrSWJSIBPyAft0=" - }, - "version": "1.3.0" - }, - "preinstalled": true, - "removable": false, - "status": "stopped", - "version": "1.3.0", - "versionHistory": [ - { - "date": 1771890332021, - "origin": "metamask", - "version": "1.0.0" - }, - { - "date": 1773763012110, - "origin": "metamask", - "version": "1.1.0" - }, - { - "date": 1778517176165, - "origin": "metamask", - "version": "1.2.0" - }, - { - "date": 1778690165145, - "origin": "metamask", - "version": "1.3.0" - } - ] - }, - "npm:@metamask/solana-wallet-snap": { - "blocked": false, - "enabled": true, - "hideSnapBranding": true, - "id": "npm:@metamask/solana-wallet-snap", - "initialConnections": { - "https://portfolio.metamask.io": {} - }, - "initialPermissions": { - "endowment:assets": { - "scopes": [ - "solana:5eykt4UsFv8P8NJdTREpY1vzqKqZKvdp", - "solana:EtWTRABZaYq6iMfeYKouRu166VU2xqa1" - ] - }, - "endowment:cronjob": { - "jobs": [] - }, - "endowment:keyring": { - "allowedOrigins": ["https://portfolio.metamask.io"] - }, - "endowment:lifecycle-hooks": {}, - "endowment:name-lookup": { - "chains": [ - "solana:5eykt4UsFv8P8NJdTREpY1vzqKqZKvdp", - "solana:EtWTRABZaYq6iMfeYKouRu166VU2xqa1" - ] - }, - "endowment:network-access": {}, - "endowment:protocol": { - "scopes": { - "solana:5eykt4UsFv8P8NJdTREpY1vzqKqZKvdp": { - "methods": [ - "getGenesisHash", - "getLatestBlockhash", - "getMinimumBalanceForRentExemption" - ] - }, - "solana:EtWTRABZaYq6iMfeYKouRu166VU2xqa1": { - "methods": [ - "getGenesisHash", - "getLatestBlockhash", - "getMinimumBalanceForRentExemption" - ] - } - } - }, - "endowment:rpc": { - "dapps": true, - "snaps": false - }, - "snap_dialog": {}, - "snap_getBip32Entropy": [ - { - "curve": "ed25519", - "path": ["m", "44'", "501'"] - } - ], - "snap_getPreferences": {}, - "snap_manageAccounts": {}, - "snap_manageState": {} - }, - "localizationFiles": [ - { - "locale": "en", - "messages": { - "confirmation.account": { - "message": "Account" - }, - "confirmation.advanced.data": { - "message": "Data" - }, - "confirmation.advanced.hide": { - "message": "Hide advanced" - }, - "confirmation.advanced.programId": { - "message": "Program ID" - }, - "confirmation.advanced.show": { - "message": "Show advanced" - }, - "confirmation.advanced.unknownInstruction": { - "message": "Unknown" - }, - "confirmation.cancelButton": { - "message": "Cancel" - }, - "confirmation.confirmButton": { - "message": "Confirm" - }, - "confirmation.estimatedChanges": { - "message": "Estimated changes" - }, - "confirmation.estimatedChanges.noChanges": { - "message": "No changes" - }, - "confirmation.estimatedChanges.notAvailable": { - "message": "Not available" - }, - "confirmation.estimatedChanges.receive": { - "message": "You receive" - }, - "confirmation.estimatedChanges.send": { - "message": "You send" - }, - "confirmation.estimatedChanges.tooltip": { - "message": "Estimated changes are what might happen if you go through with this transaction. This is just a prediction, not a guarantee." - }, - "confirmation.fee": { - "message": "Network fee" - }, - "confirmation.feeError": { - "message": "Unable to estimate fee" - }, - "confirmation.network": { - "message": "Network" - }, - "confirmation.origin": { - "message": "Request from" - }, - "confirmation.origin.tooltip": { - "message": "This is the site asking for your confirmation." - }, - "confirmation.recipient": { - "message": "Recipient" - }, - "confirmation.sendAndConfirmTransaction.title": { - "message": "Sending and confirming transaction" - }, - "confirmation.signAndSendTransaction.title": { - "message": "Transaction request" - }, - "confirmation.signIn.badAccount": { - "message": "This site is asking you to sign in using the wrong account." - }, - "confirmation.signIn.badDomain": { - "message": "This site is asking you to sign in using the wrong domain." - }, - "confirmation.signIn.chainId": { - "message": "Chain ID" - }, - "confirmation.signIn.description": { - "message": "A site wants you to sign in to prove you own this account." - }, - "confirmation.signIn.domain": { - "message": "Domain" - }, - "confirmation.signIn.expirationTime": { - "message": "Expiration time" - }, - "confirmation.signIn.issuedAt": { - "message": "Issued at" - }, - "confirmation.signIn.message": { - "message": "Message" - }, - "confirmation.signIn.nonce": { - "message": "Nonce" - }, - "confirmation.signIn.notBefore": { - "message": "Not before" - }, - "confirmation.signIn.requestId": { - "message": "Request ID" - }, - "confirmation.signIn.resources": { - "message": "Resources" - }, - "confirmation.signIn.signingInWith": { - "message": "Signing in with" - }, - "confirmation.signIn.statement": { - "message": "Statement" - }, - "confirmation.signIn.title": { - "message": "Sign-in request" - }, - "confirmation.signIn.unknownDomain": { - "message": "Unknown domain" - }, - "confirmation.signIn.version": { - "message": "Version" - }, - "confirmation.signMessage.message": { - "message": "Message" - }, - "confirmation.signMessage.title": { - "message": "Sign message" - }, - "confirmation.signTransaction.title": { - "message": "Signing request" - }, - "confirmation.simulationErrorSubtitle": { - "message": "{reason}" - }, - "confirmation.simulationErrorTitle": { - "message": "This transaction was reverted during simulation." - }, - "confirmation.validationErrorLearnMore": { - "message": "Learn more" - }, - "confirmation.validationErrorSecurityAdviced": { - "message": "Security advice by" - }, - "confirmation.validationErrorSubtitle": { - "message": "If you approve this request, a third party known for scams will take all your assets." - }, - "confirmation.validationErrorTitle": { - "message": "This is a deceptive request" - }, - "send.amountField": { - "message": "Amount" - }, - "send.amountGreatherThanMinimumBalanceForRentExemptionError": { - "message": "Amount must be greater than {minimumValue}" - }, - "send.amountRequiredError": { - "message": "Amount is required" - }, - "send.assetField": { - "message": "Token" - }, - "send.balance": { - "message": "Balance" - }, - "send.cancelButton": { - "message": "Cancel" - }, - "send.confirmation.cancelButton": { - "message": "Cancel" - }, - "send.confirmation.fee": { - "message": "Network fee" - }, - "send.confirmation.from": { - "message": "From" - }, - "send.confirmation.network": { - "message": "Network" - }, - "send.confirmation.recipient": { - "message": "Recipient" - }, - "send.confirmation.sendButton": { - "message": "Send" - }, - "send.confirmation.title": { - "message": "Review" - }, - "send.confirmation.transactionSpeed": { - "message": "Transaction speed" - }, - "send.confirmation.viewTransaction": { - "message": "View transaction" - }, - "send.continueButton": { - "message": "Continue" - }, - "send.fromField": { - "message": "From" - }, - "send.fromRequiredError": { - "message": "Account is required" - }, - "send.insufficientBalance": { - "message": "Insufficient balance" - }, - "send.insuffientSolToCoverFee": { - "message": "Insufficient SOL balance to cover the transaction fee" - }, - "send.maxButton": { - "message": "Max" - }, - "send.selectedTokenPriceNotAvailable": { - "message": "Prices for tokens in {currency} are currently not available. You are still able to send tokens." - }, - "send.send-pending.subtitle": { - "message": "Your transaction was submitted." - }, - "send.send-pending.title": { - "message": "Sending..." - }, - "send.simulationMessageAPIError": { - "message": "Only continue if you trust every address involved." - }, - "send.simulationMessageError": { - "message": "This transaction was reverted during simulation." - }, - "send.simulationTitleAPIError": { - "message": "Because of an error, we couldn't check for security alerts." - }, - "send.simulationTitleError": { - "message": "Transaction simulation failed" - }, - "send.title": { - "message": "Send" - }, - "send.toDomainResolutionStatus.error": { - "message": "Unable to resolve domain name." - }, - "send.toDomainResolutionStatus.fetched": { - "message": "Domain name resolved." - }, - "send.toDomainResolutionStatus.fetching": { - "message": "Resolving domain name..." - }, - "send.toDomainResolutionStatus.initial": { - "message": "Domain" - }, - "send.toField": { - "message": "To" - }, - "send.toInvalidError": { - "message": "Invalid Solana address or domain name" - }, - "send.toInvalidErrorDomain": { - "message": "Unable to resolve domain name" - }, - "send.toPlaceholder": { - "message": "Enter public address or domain name" - }, - "send.toRequiredError": { - "message": "To address is required" - }, - "send.transaction-failure.subtitle": { - "message": "Unable to send {amount} {tokenSymbol}" - }, - "send.transaction-failure.title": { - "message": "Transaction failed" - }, - "send.transaction-success.subtitle": { - "message": "{amount} {tokenSymbol} was successfully sent" - }, - "send.transaction-success.title": { - "message": "Sent" - }, - "transactionScan.errors.accountAlreadyInUse": { - "message": "An account with the same address already exists." - }, - "transactionScan.errors.insufficientSol": { - "message": "Account does not have enough SOL to perform the operation." - }, - "transactionScan.errors.slippageToleranceExceeded": { - "message": "The transaction was reverted because the slippage tolerance was exceeded." - }, - "transactionScan.errors.unknownError": { - "message": "An unknown error occurred." - } - } - } - ], - "manifest": { - "description": "Manage Solana using MetaMask", - "initialConnections": { - "https://portfolio.metamask.io": {} - }, - "initialPermissions": { - "endowment:assets": { - "scopes": [ - "solana:5eykt4UsFv8P8NJdTREpY1vzqKqZKvdp", - "solana:EtWTRABZaYq6iMfeYKouRu166VU2xqa1" - ] - }, - "endowment:cronjob": { - "jobs": [] - }, - "endowment:keyring": { - "allowedOrigins": ["https://portfolio.metamask.io"] - }, - "endowment:lifecycle-hooks": {}, - "endowment:name-lookup": { - "chains": [ - "solana:5eykt4UsFv8P8NJdTREpY1vzqKqZKvdp", - "solana:EtWTRABZaYq6iMfeYKouRu166VU2xqa1" - ] - }, - "endowment:network-access": {}, - "endowment:protocol": { - "scopes": { - "solana:5eykt4UsFv8P8NJdTREpY1vzqKqZKvdp": { - "methods": [ - "getGenesisHash", - "getLatestBlockhash", - "getMinimumBalanceForRentExemption" - ] - }, - "solana:EtWTRABZaYq6iMfeYKouRu166VU2xqa1": { - "methods": [ - "getGenesisHash", - "getLatestBlockhash", - "getMinimumBalanceForRentExemption" - ] - } - } - }, - "endowment:rpc": { - "dapps": true, - "snaps": false - }, - "snap_dialog": {}, - "snap_getBip32Entropy": [ - { - "curve": "ed25519", - "path": ["m", "44'", "501'"] - } - ], - "snap_getPreferences": {}, - "snap_manageAccounts": {}, - "snap_manageState": {} - }, - "manifestVersion": "0.1", - "platformVersion": "10.3.0", - "proposedName": "Solana", - "repository": { - "type": "git", - "url": "https://github.com/MetaMask/snap-solana-wallet.git" - }, - "source": { - "locales": ["locales/en.json"], - "location": { - "npm": { - "filePath": "dist/bundle.js", - "iconPath": "images/icon.svg", - "packageName": "@metamask/solana-wallet-snap", - "registry": "https://registry.npmjs.org/" - } - }, - "shasum": "hFc9PK6QCElAWB+pnkHVzW3JQVj8UNub9NozdKIxAOQ=" - }, - "version": "2.8.0" - }, - "preinstalled": true, - "removable": false, - "status": "running", - "version": "2.8.0", - "versionHistory": [ - { - "date": 1771890332093, - "origin": "metamask", - "version": "2.7.3" - }, - { - "date": 1775750871394, - "origin": "metamask", - "version": "2.8.0" - } - ] - }, - "npm:@metamask/tron-wallet-snap": { - "blocked": false, - "enabled": true, - "hideSnapBranding": true, - "id": "npm:@metamask/tron-wallet-snap", - "initialConnections": { - "https://portfolio.metamask.io": {} - }, - "initialPermissions": { - "endowment:assets": { - "scopes": ["tron:728126428"] - }, - "endowment:cronjob": { - "jobs": [ - { - "duration": "PT30S", - "request": { - "method": "onSynchronizeSelectedAccountsCronjob" - } - } - ] - }, - "endowment:keyring": { - "allowedOrigins": ["https://portfolio.metamask.io"] - }, - "endowment:network-access": {}, - "snap_dialog": {}, - "snap_getBip32Entropy": [ - { - "curve": "secp256k1", - "path": ["m", "44'", "195'"] - } - ], - "snap_getPreferences": {}, - "snap_manageAccounts": {}, - "snap_manageState": {} - }, - "localizationFiles": [ - { - "locale": "en", - "messages": { - "confirmation.account": { - "message": "Account" - }, - "confirmation.bandwidthConsumed": { - "message": "Bandwidth consumed" - }, - "confirmation.cancelButton": { - "message": "Cancel" - }, - "confirmation.confirmButton": { - "message": "Confirm" - }, - "confirmation.estimatedChanges.noChanges": { - "message": "No estimated changes" - }, - "confirmation.estimatedChanges.notAvailable": { - "message": "Estimated changes are not available" - }, - "confirmation.estimatedChanges.receive": { - "message": "You receive" - }, - "confirmation.estimatedChanges.send": { - "message": "You send" - }, - "confirmation.estimatedChanges.title": { - "message": "Estimated changes" - }, - "confirmation.estimatedChanges.tooltip": { - "message": "Estimated changes are what might happen if you go through with this transaction. This is just a prediction, not a guarantee." - }, - "confirmation.estimatedChanges.unsupportedContract": { - "message": "Unsupported contract for simulation" - }, - "confirmation.from": { - "message": "From" - }, - "confirmation.network": { - "message": "Network" - }, - "confirmation.origin": { - "message": "Request from" - }, - "confirmation.origin.tooltip": { - "message": "This is the site asking for your confirmation." - }, - "confirmation.signMessage.message": { - "message": "Message" - }, - "confirmation.signMessage.title": { - "message": "Sign message" - }, - "confirmation.signTransaction.title": { - "message": "Sign transaction" - }, - "confirmation.simulationErrorSubtitle": { - "message": "{reason}" - }, - "confirmation.simulationErrorTitle": { - "message": "This transaction was reverted during simulation." - }, - "confirmation.simulationMessageAPIError": { - "message": "Only continue if you trust every address involved." - }, - "confirmation.simulationTitleAPIError": { - "message": "Because of an error, we couldn't check for security alerts." - }, - "confirmation.to": { - "message": "To" - }, - "confirmation.transaction.title": { - "message": "Transaction request" - }, - "confirmation.transactionFee": { - "message": "Network fee" - }, - "confirmation.validationErrorLearnMore": { - "message": "Learn more" - }, - "confirmation.validationErrorSecurityAdviced": { - "message": "Security advice by" - }, - "confirmation.validationErrorSubtitle": { - "message": "If you approve this request, a third party known for scams will take all your assets." - }, - "confirmation.validationErrorTitle": { - "message": "This is a deceptive request" - }, - "transactionScan.errors.insufficientBalance": { - "message": "Insufficient balance" - }, - "transactionScan.errors.insufficientFunds": { - "message": "Insufficient funds" - }, - "transactionScan.errors.invalidAddress": { - "message": "Invalid address" - }, - "transactionScan.errors.invalidTransaction": { - "message": "Invalid transaction" - }, - "transactionScan.errors.unknownError": { - "message": "An unknown error occurred" - }, - "transactionScan.errors.unsupportedEIP712Message": { - "message": "Unsupported method" - } - } - } - ], - "manifest": { - "description": "Manage Tron using MetaMask", - "initialConnections": { - "https://portfolio.metamask.io": {} - }, - "initialPermissions": { - "endowment:assets": { - "scopes": ["tron:728126428"] - }, - "endowment:cronjob": { - "jobs": [ - { - "duration": "PT30S", - "request": { - "method": "onSynchronizeSelectedAccountsCronjob" - } - } - ] - }, - "endowment:keyring": { - "allowedOrigins": ["https://portfolio.metamask.io"] - }, - "endowment:network-access": {}, - "snap_dialog": {}, - "snap_getBip32Entropy": [ - { - "curve": "secp256k1", - "path": ["m", "44'", "195'"] - } - ], - "snap_getPreferences": {}, - "snap_manageAccounts": {}, - "snap_manageState": {} - }, - "manifestVersion": "0.1", - "platformVersion": "10.3.0", - "proposedName": "Tron", - "repository": { - "type": "git", - "url": "https://github.com/MetaMask/snap-tron-wallet.git" - }, - "source": { - "locales": ["locales/en.json"], - "location": { - "npm": { - "filePath": "dist/bundle.js", - "iconPath": "images/icon.svg", - "packageName": "@metamask/tron-wallet-snap", - "registry": "https://registry.npmjs.org/" - } - }, - "shasum": "rjbm46pYTWfZhZOTVdx1FjN+Ynww7vbZRRU1W4cTB6s=" - }, - "version": "1.25.3" - }, - "preinstalled": true, - "removable": false, - "status": "running", - "version": "1.25.3", - "versionHistory": [ - { - "date": 1772733142944, - "origin": "metamask", - "version": "1.22.1" - }, - { - "date": 1775606918507, - "origin": "metamask", - "version": "1.25.0" - }, - { - "date": 1775750871424, - "origin": "metamask", - "version": "1.25.1" - }, - { - "date": 1776364729632, - "origin": "metamask", - "version": "1.25.2" - }, - { - "date": 1777322895814, - "origin": "metamask", - "version": "1.25.3" - } - ] - } - }, - "isReady": true, - "events": { - "cronjob-npm:@metamask/bitcoin-wallet-snap-0": { - "date": "2026-05-18T17:46:43.491Z", - "id": "cronjob-npm:@metamask/bitcoin-wallet-snap-0", - "recurring": true, - "request": { - "method": "synchronizeAccounts" - }, - "schedule": "PT30S", - "scheduledAt": "2026-04-08T00:08:38.502Z", - "snapId": "npm:@metamask/bitcoin-wallet-snap" - }, - "cronjob-npm:@metamask/institutional-wallet-snap-0": { - "date": "2026-05-18T17:46:35.000Z", - "id": "cronjob-npm:@metamask/institutional-wallet-snap-0", - "recurring": true, - "request": { - "method": "execute" - }, - "schedule": "5/15 * * * * *", - "scheduledAt": "2026-04-10T01:40:13.705Z", - "snapId": "npm:@metamask/institutional-wallet-snap" - }, - "cronjob-npm:@metamask/institutional-wallet-snap-1": { - "date": "2026-05-18T17:47:00.000Z", - "id": "cronjob-npm:@metamask/institutional-wallet-snap-1", - "recurring": true, - "request": { - "method": "manageSleepState" - }, - "schedule": "* * * * *", - "scheduledAt": "2026-04-10T01:40:13.707Z", - "snapId": "npm:@metamask/institutional-wallet-snap" - }, - "cronjob-npm:@metamask/tron-wallet-snap-0": { - "date": "2026-05-18T17:46:43.496Z", - "id": "cronjob-npm:@metamask/tron-wallet-snap-0", - "recurring": true, - "request": { - "method": "onSynchronizeSelectedAccountsCronjob" - }, - "schedule": "PT30S", - "scheduledAt": "2026-04-27T20:48:15.828Z", - "snapId": "npm:@metamask/tron-wallet-snap" - } - }, - "database": { - "blockedSnaps": [ - { - "id": "npm:@consensys/starknet-snap", - "versionRange": "<0.1.11" - }, - { - "checksum": "A83r5/ZIcKuKwuAnQHHByVFCuofj7jGK5hOStmHY6A0=" - }, - { - "id": "npm:onthis-snap", - "versionRange": "<1.4.1" - }, - { - "id": "npm:wallet-guard-snap", - "versionRange": "<1.1.3" - }, - { - "id": "npm:@forta-network/metamask-snap", - "versionRange": "<=0.1.3" - } - ], - "verifiedSnaps": { - "npm:0xname-resolver-snap": { - "id": "npm:0xname-resolver-snap", - "metadata": { - "author": { - "name": "beast dao", - "website": "https://beastdao.org/" - }, - "category": "name resolution", - "description": "The 0xname Resolver Snap enables resolving of web3 names issued via app.0xname.foo. 0xNAME is a public good platform built by BEAST DAO to provide web3 users with free personal names.\n\nThis Snap empowered by the official Snap SDK enhances a MetaMask wallet with a single functionality: to seamlessly resolve any 0xNAME web3 names with any custom suffix like alice@eth, yulia@beast or bob@yourdao etc. to their respective Ethereum addresses.\n\nAnyone can get their 100% free web3 personal names associated with various communities, projects, DAOs, initiatives or even events with 0xNAME. And after installing the Snap, simply type any 0xname like yulia@beast in the MetaMask send flow instead of long, complex wallet addresses.", - "name": "0xNAME resolver", - "screenshots": [ - "./images/0xname-resolver-snap/1.png", - "./images/0xname-resolver-snap/2.png", - "./images/0xname-resolver-snap/3.png" - ], - "sourceCode": "https://github.com/beastdao/0xname-resolver-snap", - "summary": "Use free 0xNAME instead of Ethereum address in MetaMask.", - "support": { - "contact": "https://discord.gg/McqF7vyCWx", - "faq": "https://github.com/beastdao/0xname-resolver-snap/blob/main/README.md#faq-and-knowledge-base", - "knowledgeBase": "https://github.com/beastdao/0xname-resolver-snap/blob/main/README.md#faq-and-knowledge-base" - } - }, - "versions": { - "0.1.2": { - "checksum": "StUwQKPnkP/IHWVjSLk8zcyjvRI2Kz3Mfgpb7hdOumQ=" - } - } - }, - "npm:@0sum/pepu-snap": { - "id": "npm:@0sum/pepu-snap", - "metadata": { - "author": { - "name": "PEPE Unchained", - "website": "https://pepeunchained.com/" - }, - "category": "notifications", - "description": "Stay up to date with PEPU ecosystem. Read important notifications directly into your MetaMask wallet. Get news directly from the PEPU team, when tokens are bonded on pumppad and community notifications on HolderRadar.\n\n- News\n- Pumppad\n- HolderRadar", - "name": "PEPE Unchained", - "screenshots": [ - "./images/@0sum/pepu-snap/1.png", - "./images/@0sum/pepu-snap/2.png", - "./images/@0sum/pepu-snap/3.png" - ], - "sourceCode": "https://github.com/0sum-io/pepu-snap", - "summary": "Bring PEPU Notifications to MetaMask", - "support": { - "contact": "mailto:leon@0sum.io" - } - }, - "versions": { - "0.1.5": { - "checksum": "MSS3MNr8B2gklT23eJffSuBCMamaRbKtxwpvuqGZ4K0=" - } - } - }, - "npm:@aeternity-snap/plugin": { - "id": "npm:@aeternity-snap/plugin", - "metadata": { - "audits": [ - { - "auditor": "OtterSec", - "report": "https://file.notion.so/f/f/97ab6450-64d1-4350-a5cf-a0c0c607f5c4/e9815101-cd01-43f3-89f8-7367e5244fc4/aeternity_snap_audit_final.pdf?table=block&id=141e1dd2-cb7b-473b-8e07-39771b4007d4&spaceId=97ab6450-64d1-4350-a5cf-a0c0c607f5c4&expirationTimestamp=1725408000000&signature=YlFtdd2awQRHogD2fRNq0I0PhMDvdiLZzR5i1IN7wZU&downloadName=aeternity_snap_audit_final.pdf" - } - ], - "author": { - "name": "Aeternity", - "website": "https://aeternity.com/" - }, - "category": "interoperability", - "description": "Aeternity Snap enhances MetaMask by adding support for Aeternity blockchain features. Users can:\n\nManage AE tokens and track balances\nInteract with Aeternity smart contracts seamlessly\nPerform secure blockchain transactions within MetaMask\nExplore Aeternity’s decentralized applications\nTo use the Snap, install the Aeternity Snap package in MetaMask, connect your MetaMask wallet, and start interacting with the Aeternity blockchain.", - "name": "Aeternity Wallet", - "sourceCode": "https://github.com/4-point-0/aeternity-snap", - "summary": "Interact with Aeternity smart contracts, manage AE tokens, and perform blockchain transactions.", - "support": { - "contact": "mailto:donna@aeternity.com" - }, - "website": "https://aeternity-snap.vercel.app/" - }, - "versions": { - "0.0.9": { - "checksum": "pl+Yu5DlFCrrKwuZakPfMzslJm5ovJk8kIzTeASvVkY=" - } - } - }, - "npm:@algorandfoundation/algorand-metamask-snap": { - "id": "npm:@algorandfoundation/algorand-metamask-snap", - "metadata": { - "audits": [ - { - "auditor": "OtterSec", - "report": "https://ottersec.notion.site/Sampled-Public-Audit-Reports-a296e98838aa4fdb8f3b192663400772?p=b25b9f3a52ab4821914f379ff0d3ec62&pm=s" - } - ], - "author": { - "name": "Algorand Foundation", - "website": "https://www.algorand.foundation/" - }, - "category": "interoperability", - "description": "Manage Algorand accounts with MetaMask, transfer, swap, and interact with Algorand dapps.\n\nAlgorand is a scalable layer-1 blockchain powered by the Pure Proof-of-Stake consensus mechanism with quick block times and instant finality.\n\nWebsite coming soon.", - "name": "Algorand Wallet", - "sourceCode": "https://github.com/algorandfoundation/algo-metamask", - "summary": "Manage Algorand accounts, transfer, swap, and interact with Algorand dapps.", - "support": { - "contact": "mailto:snap-algo@algorand.foundation" - } - }, - "versions": { - "10.0.2": { - "checksum": "Ac+HbVc2OlKU9zIGvp7JzHfuyNh4u1hiE3EC/tHIER0=" - } - } - }, - "npm:@amax/amaxsnap": { - "id": "npm:@amax/amaxsnap", - "metadata": { - "audits": [ - { - "auditor": "Sayfer", - "report": "https://sayfer.io/audits/metamask-snap-audit-report-for-amax/" - } - ], - "author": { - "name": "AMAX DAO", - "website": "https://amaxup.xyz/about" - }, - "category": "interoperability", - "description": "AMAX UP is Armonia Meta Chain's Snap wallet that manages tokens and NFTs assets, enabling bridge, swap, stake, and other operations; it supports the use of MetaMask to connect to the AMC chain and use almost all functions of AMC.\n\nAfter installing the Snap, visit the website to connect with MetaMask and manage your AMC account(s).", - "name": "AMAX UP", - "sourceCode": "https://github.com/armoniax/amaxup.evmsnap", - "summary": "Manage assets and use dapps on AMC (Armonia Meta Chain).", - "support": { - "contact": "mailto:armoniax000@gmail.com" - }, - "website": "https://amaxup.xyz/" - }, - "versions": { - "0.0.5": { - "checksum": "uBmE8MJYdM5373rBxbQpzGkIC1mForIVWCUbBUv7eX0=" - } - } - }, - "npm:@ans-abstract-name-service/ans-snap": { - "id": "npm:@ans-abstract-name-service/ans-snap", - "metadata": { - "author": { - "name": "ANS | Abstract Name Service", - "website": "https://absnameservice.xyz/" - }, - "category": "name resolution", - "description": "ANS | Abstract Name Service enables native .abs name resolution inside MetaMask on Abstract (chain ID 2741). Features:\n\n- Forward lookup: resolves name.abs -> address using ANS V2 records.\n- Reverse lookup: resolves address -> primary .abs name when available.\n- Owner fallback: if no resolver record exists, falls back to ANS ownership data.\n\nHow to use:\n1. Connect wallet on the companion site.\n2. Install the Snap.\n3. In MetaMask, send assets using a .abs name (for example: shroomy.abs).\n\nNetwork scope:\n- Abstract mainnet only (eip155:2741).", - "name": "ANS | Abstract Name Service", - "screenshots": [ - "./images/@ans-abstract-name-service/ans-snap/1.png", - "./images/@ans-abstract-name-service/ans-snap/2.png", - "./images/@ans-abstract-name-service/ans-snap/3.png" - ], - "sourceCode": "https://github.com/0xShroomy/ans-snap", - "summary": "Resolve .abs names on Abstract mainnet.", - "support": { - "contact": "https://discord.gg/5jXUqCSR7Q", - "knowledgeBase": "https://absnameservice.xyz/docs/metamask-snap" - } - }, - "versions": { - "0.1.3": { - "checksum": "nPqrzsM7u3H68Gt60vAEkUmSFouWWktgPAeO2LDEBOU=" - } - } - }, - "npm:@ardata-tech/qubic-wallet": { - "id": "npm:@ardata-tech/qubic-wallet", - "metadata": { - "audits": [ - { - "auditor": "OtterSec", - "report": "https://github.com/ardata-tech/qubic-audit/blob/master/ardata_tech_snap_audit.pdf" - } - ], - "author": { - "name": "AR Data Technologies", - "website": "https://www.ardata.tech" - }, - "category": "interoperability", - "description": "Qubic Wallet is a powerful and secure interface designed to enable seamless interactions with the Qubic blockchain ecosystem. Whether you're a developer, enterprise, or individual user, Qubic Wallet provides a streamlined gateway for integrating decentralized features into your applications with confidence.", - "name": "Qubic Wallet", - "screenshots": [ - "./images/@ardata-tech/qubic-wallet/1.png", - "./images/@ardata-tech/qubic-wallet/2.png", - "./images/@ardata-tech/qubic-wallet/3.png" - ], - "sourceCode": "https://github.com/ardata-tech/qubic-wallet", - "summary": "Secure and streamlined gateway to interacting with the Qubic blockchain.", - "support": { - "contact": "https://ardata-tech.notion.site/1aefbc8879c7816ca0bcf2127836a712", - "faq": "https://ardata-tech.notion.site/Qubic-Connect-FAQs-1affbc8879c78044b387dcea34754e9f", - "knowledgeBase": "https://ardata-tech.notion.site/Qubic-Connect-Knowledge-Base-1affbc8879c7802ba998d2388c225b7f" - }, - "website": "https://connect.qubic.org" - }, - "versions": { - "1.0.7": { - "checksum": "CUiQNRISBu/m0w9wZ3lpwkW9jsRaDM1JoH9ptrB1dN0=" - } - } - }, - "npm:@astar-network/snap": { - "id": "npm:@astar-network/snap", - "metadata": { - "audits": [ - { - "auditor": "Sayfer", - "report": "https://sayfer.io/audits/metamask-snap-audit-report-for-astar/" - } - ], - "author": { - "name": "Astar Network", - "website": "https://astar.network/" - }, - "category": "interoperability", - "description": "Adds support for Astar, an interoperable blockchain platform for Polkadot and Ethereum ecosystems supporting both Wasm and EVM smart contracts.\n\nAfter installing the Snap, visit the Astar Portal at https://portal.astar.network/ to connect. Make sure to select 'Astar Snap' under the Native Accounts options.", - "name": "Astar Wallet", - "screenshots": [ - "./images/@astar-network/snap/1.png", - "./images/@astar-network/snap/2.png", - "./images/@astar-network/snap/3.png" - ], - "sourceCode": "https://github.com/AstarNetwork/metamask-snap-astar", - "summary": "Adds support for Astar.", - "support": { - "knowledgeBase": "https://docs.astar.network/docs/use/manage-wallets/wallet-providers/metamask-astar-snap/" - }, - "website": "https://portal.astar.network/" - }, - "versions": { - "0.9.1": { - "checksum": "7668ZwlcG4/X7WBaTRZYmUJFOoewItCkShKhoaeo38o=" - } - } - }, - "npm:@avail-project/avail-snap": { - "id": "npm:@avail-project/avail-snap", - "metadata": { - "author": { - "name": "Avail", - "website": "https://www.availproject.org/" - }, - "category": "interoperability", - "description": "View and sign transactions on the Avail blockchain, as well as swap and stake the AVAIL token, with MetaMask.\n\nFeatures:\n\n- Create a wallet account on Avail\n- Sign transactions on Avail", - "name": "Avail Wallet", - "screenshots": [ - "./images/@availproject/avail-snap/1.jpg", - "./images/@availproject/avail-snap/2.jpg", - "./images/@availproject/avail-snap/3.jpg" - ], - "sourceCode": "https://github.com/availproject/metamask-snap-avail", - "summary": "View and sign transactions, swap, and stake AVAIL tokens.", - "support": { - "contact": "https://discord.gg/y6fHnxZQX8", - "knowledgeBase": "https://docs.availproject.org/docs/end-user-guide/avail-snap" - }, - "website": "https://snap.availproject.org/" - }, - "versions": { - "1.0.8": { - "checksum": "KZV4C5Gao8Ij61Thb/Q2zp34iPvugBNoYK7US5oLju8=" - }, - "1.1.0": { - "checksum": "gjufYGFpX3NZV1Iudo+iClSubn5t8sj+fBnSpX5WXEI=" - } - } - }, - "npm:@bitfinding/unblind-second-factor-snap": { - "id": "npm:@bitfinding/unblind-second-factor-snap", - "metadata": { - "audits": [], - "author": { - "name": "Bitfinding", - "website": "https://bitfinding.com/" - }, - "category": "transaction insights", - "description": "This Snap sends human-readable transaction summaries to your Telegram before you sign.\nIt simulates each transaction and delivers a plain-English summary to your account. This lets you clearly see asset movements and contract interactions, helping you spot potential risks like wallet drainers or unexpected token transfers.\n\nHow to Use:\n\n1. Install the Snap and connect it to your Telegram account.\n2. When you start a transaction, a summary will appear in your Telegram chat.\n3. Review the details, then confirm the transaction in MetaMask.\n\nSecurity & Privacy:\n\nThe Snap has read-only access to transaction data to generate explanations. It cannot access your private keys, sign transactions, or modify your assets.", - "name": "Unblind Second Factor", - "screenshots": [ - "./images/@bitfinding/unblind-second-factor-snap/1.png", - "./images/@bitfinding/unblind-second-factor-snap/2.png", - "./images/@bitfinding/unblind-second-factor-snap/3.png" - ], - "sourceCode": "https://github.com/BitFinding/unblind-second-factor-snap", - "summary": "Get Telegram notifications with human-readable information of what you are about to sign.", - "support": { - "contact": "mailto:hello@bitfinding.com" - }, - "website": "https://unblind.app/" - }, - "versions": { - "0.3.0": { - "checksum": "TFShtGXesoy/yC1unUADT5KCt6jSwXG8wwXskWC0tZ4=" - } - } - }, - "npm:@bitpandacustody/trust-vault-snap": { - "id": "npm:@bitpandacustody/trust-vault-snap", - "metadata": { - "audits": [ - { - "auditor": "Kudelski Security", - "report": "https://cdn.bitpanda.com/media/white-label/Kudelski_Security_Bitpanda_Snap_Code_Review_v2.0.pdf" - } - ], - "author": { - "name": "bitpanda", - "website": "https://www.bitpanda.com" - }, - "category": "account management", - "description": "1. Sign in to your Trust Vault account at https://app.bitpandacustody.com/\n2. Visit the Snap management page at https://app.bitpandacustody.com/metamask-snap\n3. Connect the Snap to Trust Vault\n4. Add Subwallets to MetaMask", - "name": "TrustVault", - "sourceCode": "https://github.com/bitpanda-labs/trust-vault-snap", - "summary": "Connect Trust Vault wallets to MetaMask.", - "support": { - "contact": "https://www.bitpanda.com/en/bts-contact-us", - "faq": "https://custodysupport.bitpanda.com/hc/en-us/sections/16398205255196-MetaMask", - "knowledgeBase": "https://custodysupport.bitpanda.com/hc/en-us/articles/18830192748188-TrustVault-MetaMask-Snap-User-Guide" - }, - "website": "https://app.bitpandacustody.com" - }, - "versions": { - "0.1.11": { - "checksum": "VqDQKQSUmSWoh4zVTKver6aGjqrGbVik4Z1QpoS/Liw=" - }, - "1.0.0": { - "checksum": "RYAYosxly2V4GWk1KBOvZWOcl8t5iFw0Mkyi+vVqwVU=" - } - } - }, - "npm:@blockchain-lab-um/masca": { - "id": "npm:@blockchain-lab-um/masca", - "metadata": { - "audits": [ - { - "auditor": "Least Authority", - "report": "https://leastauthority.com/blog/audits/audit-of-masca-metamask-snap/" - } - ], - "author": { - "name": "Blockchain Lab:UM", - "website": "https://blockchain-lab.um.si/?lang=en" - }, - "category": "interoperability", - "description": "Masca enables everyone to build their decentralized identity by expanding MetaMask with functionalities to manage your identifiers and credentials (based on DIDs, VCs, and VPs). Store your credentials locally or on Ceramic Network and receive/share data over popular identity protocols, such as OID4VC and Polygon ID. This makes Masca a truly universal identity solution, perfect for Web3 explorers and non-Web3 native users. Any website can connect to Masca to access identity data, and dapp developers can already start with the integration!\n\nAfter installing the Snap, visit the website to manage your decentralized identity.", - "name": "Masca", - "screenshots": [ - "./images/@blockchain-lab-um/masca/1.png", - "./images/@blockchain-lab-um/masca/2.png", - "./images/@blockchain-lab-um/masca/3.png" - ], - "sourceCode": "https://github.com/blockchain-lab-um/masca", - "summary": "Manage decentralized identities, including DIDs and VCs.", - "support": { - "contact": "https://discord.gg/M5xgNz7TTF", - "knowledgeBase": "https://docs.masca.io/" - }, - "website": "https://masca.io/app" - }, - "versions": { - "1.2.2": { - "checksum": "0+ZdkgoSljBRrV6JARt/+Z2Amq30jiWb2EItGfihB30=" - }, - "1.3.0": { - "checksum": "8URAjwPCrIRShFA7aIRxryil+i8RCtc48pLcpIyD+PU=" - } - } - }, - "npm:@bobanetwork/snap-account-abstraction-keyring-hc": { - "id": "npm:@bobanetwork/snap-account-abstraction-keyring-hc", - "metadata": { - "audits": [ - { - "auditor": "Sayfer", - "report": "https://sayfer.io/audits/metamask-snap-audit-report-for-enya-labs/" - } - ], - "author": { - "name": "Enya Labs", - "website": "https://enya.ai/" - }, - "category": "account management", - "description": "Hybrid Compute enables you to seamlessly work with off-chain APIs in your smart contracts such as GenAI or Social Media. Hybrid Compute is fueled by Account Abstraction and allows for NextGen and Web2-like UX.\n\nHybridCompute™ propels the next-gen blockchain applications by seamlessly blending Web2 and Web3 data, bridging legacy systems with future innovations, and offering streamlined development, enduring security, and limitless potential, shaping decentralized applications across sectors.\n\nBy enabling the integration of dynamic external data such as market prices, weather conditions, or IoT sensor readings, this advancement empowers smart contracts to become potent tools automating processes across a multitude of industries, spanning finance, supply chain management, healthcare, and beyond.\n\nIntegrating HybridCompute™ into your projects is remarkably straightforward, requiring just a single line of code. Complexity is reduced, efficiency is amplified, and innovation knows no bounds.\n\nEnduring security is paramount with HybridCompute™, guaranteeing the confidentiality and integrity of your transaction data through robust encryption and L1 transaction security standards, instilling trust and confidence in your blockchain applications.\n\nFrom enhancing DeFi protocols with real estate assets to enabling NFT lending through advanced ML-based valuation models, its versatility empowers developers to drive innovation and expand decentralized ecosystems.\n\nMore documentation about Hybrid Compute: \nhttps://boba.network/hybridcompute/", - "name": "Boba Network Account Abstraction Keyring", - "screenshots": [ - "./images/@bobanetwork/snap-account-abstraction-keyring-hc/1.jpg", - "./images/@bobanetwork/snap-account-abstraction-keyring-hc/2.jpg", - "./images/@bobanetwork/snap-account-abstraction-keyring-hc/3.jpg" - ], - "sourceCode": "https://github.com/bobanetwork/snap-account-abstraction-keyring-hc", - "summary": "Seamlessly integrate off-chain APIs into your smart contracts with Hybrid Compute.", - "support": { - "contact": "mailto:kevin@enya.ai", - "faq": "https://snap.boba.network", - "knowledgeBase": "https://snap.boba.network" - }, - "website": "https://snap.boba.network/" - }, - "versions": { - "1.1.19": { - "checksum": "tGF4m1uHjh48/OZrQgxShsjdv5c7YoawcMsy2G1ktKM=" - }, - "1.1.22": { - "checksum": "9qgo0z8k1RKwxB3+B3a24qN3WnpZPFfRq7qpNmvAfAw=" - }, - "1.1.26": { - "checksum": "RtZsNLxOwozfqKyiaiWPeKxZX47G0a6VHiHUUxd2y/0=" - } - } - }, - "npm:@celestials-id/celestials-snap": { - "id": "npm:@celestials-id/celestials-snap", - "metadata": { - "author": { - "name": "Celestials", - "website": "https://celestials.id/" - }, - "category": "name resolution", - "description": "Adds support for verified Celestials \".i\" names to MetaMask.\n\nWhen sending in MetaMask, simply type a Celestials ID like ‘celestials.i’ to automatically resolve it to the linked address on your selected network.\nUse your Celestials ID across different protocols, verify your accounts for airdrops, and easily manage your tokens across all supported networks.", - "name": "Celestials", - "screenshots": [ - "./images/@celestials/celestials-snap/1.png", - "./images/@celestials/celestials-snap/2.png", - "./images/@celestials/celestials-snap/3.png" - ], - "sourceCode": "https://github.com/celestials-id/celestials-snap", - "summary": "Celestials.id resolver for Metamask", - "support": { - "contact": "https://discord.gg/celestials", - "faq": "https://celestials.id/snap#faq" - }, - "website": "https://celestials.id/snap" - }, - "versions": { - "1.0.2": { - "checksum": "eqJzfrja04/LPK8lI+7dAlEzAEB/d8DpxGPf2aOwUi0=" - }, - "1.1.0": { - "checksum": "QXtzKPW4okQlE1ZX6OgBk+CorzxCXvs5sCRn+UQeDOg=" - } - } - }, - "npm:@chainsafe/aleo-snap": { - "id": "npm:@chainsafe/aleo-snap", - "metadata": { - "audits": [ - { - "auditor": "Sayfer", - "report": "https://sayfer.io/audits/metamask-snap-audit-report-for-aleo/" - } - ], - "author": { - "name": "Provable", - "website": "https://provable.com/" - }, - "category": "interoperability", - "description": "Enables MetaMask users to interact with Aleo blockchain.", - "name": "Aleo", - "sourceCode": "https://github.com/ChainSafe/aleo-snap", - "summary": "Enables users to interact with the Aleo blockchain.", - "support": { - "contact": "https://discord.gg/xSAwrnCWcg" - } - }, - "versions": { - "1.2.0": { - "checksum": "DB8uCN9I0YY19mPwwsYrRyHoJbRXDNrs5cf/ZJX+Wmc=" - }, - "1.2.2": { - "checksum": "CaO1hCMftzS8NR608xuMe/kjXG7k+YtG6eq1Q6jAx7Q=" - } - } - }, - "npm:@chainsafe/polkadot-snap": { - "id": "npm:@chainsafe/polkadot-snap", - "metadata": { - "audits": [ - { - "auditor": "Sayfer", - "report": "https://sayfer.io/audits/metamask-snap-audit-report-for-polkadot/" - } - ], - "author": { - "name": "ChainSafe", - "website": "https://chainsafe.io/" - }, - "description": "Adds support for Polkadot to MetaMask. After installing the Snap, visit the website to manage your Polkadot account and assets.", - "name": "Polkadot Wallet", - "screenshots": [ - "./images/@chainsafe/polkadot-snap/1.png", - "./images/@chainsafe/polkadot-snap/2.png", - "./images/@chainsafe/polkadot-snap/3.png" - ], - "sourceCode": "https://github.com/ChainSafe/metamask-snap-polkadot", - "summary": "Add support for Polkadot.", - "support": { - "contact": "https://discord.gg/xSAwrnCWcg", - "faq": "https://github.com/ChainSafe/metamask-snap-polkadot/wiki/Example-dApp-Usage" - }, - "website": "https://polkadot.snap.chainsafe.io/" - }, - "versions": { - "0.11.3": { - "checksum": "Gbn0vViRFgsc8GeIcq27qoPjFh/5yneWntEQ2bpuvPU=" - } - } - }, - "npm:@chainsafe/webzjs-zcash-snap": { - "id": "npm:@chainsafe/webzjs-zcash-snap", - "metadata": { - "audits": [ - { - "auditor": "Hacken", - "report": "https://audits.hacken.io/zcash/dapp-zcash-snap-may2025/" - } - ], - "author": { - "name": "ChainSafe", - "website": "https://webzjs.chainsafe.dev/" - }, - "category": "interoperability", - "description": "WebZjs Zcash Snap is a MetaMask Snap that integrates full Zcash functionality directly into the MetaMask browser extension. It leverages the WebZjs JavaScript SDK to provide native support for Zcash’s privacy-preserving features in a web environment.\n\nKey features:\n\n- Native support for Zcash’s PCZT transactions\n\n- Secure in-browser syncing with the Zcash blockchain using a gRPC-web lightwallet proxy\n\n- Utilizes WebZjs, the first JavaScript SDK for Zcash, optimized for browser environments\n\nWebZjs uses the Zcash Snap for secure key handling", - "name": "Zcash Shielded Wallet", - "screenshots": [ - "./images/@chainsafe/webzjs-zcash-snap/1.png", - "./images/@chainsafe/webzjs-zcash-snap/2.png", - "./images/@chainsafe/webzjs-zcash-snap/3.png" - ], - "sourceCode": "https://github.com/ChainSafe/WebZjs/tree/main/packages/snap", - "summary": "WebZjs Zcash Snap is a MetaMask Snap that brings Zcash functionality directly into the MetaMask browser extension. WebZjs is the first JavaScript SDK for Zcash, enabling seamless integration of Zcash privacy features for web users.", - "support": { - "contact": "mailto:colin@chainsafe.io", - "faq": "mailto:info@chainsafe.io", - "knowledgeBase": "https://github.com/ChainSafe/WebZjs/tree/main/packages/snap" - }, - "website": "https://webzjs.chainsafe.dev/" - }, - "versions": { - "0.2.4": { - "checksum": "xO5sXGTa5PxZf1GG33xhD0ep5PLontAmeamjM3h+YFA=" - }, - "0.2.6": { - "checksum": "8Nspw4PiDnqHYCS32Dwpz7Ubo0J0ocBhXYPAvXM4Kew=" - }, - "0.3.0": { - "checksum": "WOy/9JeJPJ346afb8ZQnvY0N6fX58ci737rwSSfjtLs=" - } - } - }, - "npm:@clustersxyz/metamask-snap": { - "id": "npm:@clustersxyz/metamask-snap", - "metadata": { - "author": { - "name": "Clusters", - "website": "https://clusters.xyz" - }, - "category": "name resolution", - "description": "After installing the Snap, configure your cluster at https://clusters.xyz then use cluster names for sending and receiving native tokens, ERC20s, or NFTs", - "name": "Clusters", - "screenshots": [ - "./images/@clustersxyz/metamask-snap/1.png", - "./images/@clustersxyz/metamask-snap/2.png", - "./images/@clustersxyz/metamask-snap/3.png" - ], - "sourceCode": "https://github.com/clustersxyz/metamask-snap", - "summary": "View clusters names natively within your wallet.", - "support": { - "contact": "mailto:rye@clusters.xyz", - "faq": "https://github.com/clustersxyz/metamask-snap/wiki/FAQ", - "knowledgeBase": "https://github.com/clustersxyz/metamask-snap/wiki" - }, - "website": "https://clusters.xyz" - }, - "versions": { - "0.1.0": { - "checksum": "N96QmstXczcmjpAHYmAePDFt4Zpc2CUrHBumJs+ahIM=" - } - } - }, - "npm:@colabs-dev/name-resolver": { - "id": "npm:@colabs-dev/name-resolver", - "metadata": { - "author": { - "name": "CoLabs", - "website": "https://conft.app" - }, - "category": "name resolution", - "description": "coNFT Domain Names Snap integrates coNFT’s domain resolution into MetaMask, enabling users to send tokens to readable domain names rather than cumbersome addresses.\n\n- No more copy-pasting 0x… addresses—simply enter a registered domain like alice.linea or bob.sony.\n- Reduces errors, enhances convenience, and brings user-friendly domain-based transactions right into your MetaMask.\n\nLearn more at conft.app and explore how domain-based transfers can simplify your daily crypto interactions.", - "name": "Conft Domains", - "screenshots": [ - "./images/@colabs-dev/snap/1.png", - "./images/@colabs-dev/snap/2.png", - "./images/@colabs-dev/snap/3.png" - ], - "sourceCode": "https://github.com/Conft-dev/conft-snap", - "summary": "Replace cryptic addresses with domain names for easy token transfers in MetaMask.", - "support": { - "contact": "mailto:cnftspprt@gmail.com", - "faq": "https://docs.google.com/document/d/1ZfXigMXPUPOesCYQpzVfCXhPoBF6uyNLe1A9SaeiFoA/edit?usp=sharing", - "knowledgeBase": "https://docs.google.com/document/d/1kBpOoioniHHNKcjZ_JluGqWC5MyHWKtwvSj7_3uj5ps/edit?usp=sharing" - } - }, - "versions": { - "0.3.6": { - "checksum": "cK4lFDwnXVXWPx/Up70KRwOVSXMLfe86aBLSEX9EIJk=" - }, - "0.3.7": { - "checksum": "PAe6xX5jfqaxtRw8/tTxEDkB6lj9FcW2Z/DCttgix7U=" - }, - "0.3.8": { - "checksum": "6IkxDk97x3m3oqwFfD6xhjv+oWm3eew1To2qNKF9qsk=" - } - } - }, - "npm:@consensys/starknet-snap": { - "id": "npm:@consensys/starknet-snap", - "metadata": { - "audits": [ - { - "auditor": "Cobalt", - "report": "https://drive.google.com/file/d/1Q-Ee7QewVUoAx--x7w_T7WQcvc5MHqVr/view" - }, - { - "auditor": "Consensys Diligence", - "report": "https://consensys.io/diligence/audits/2023/06/metamask/partner-snaps-starknetsnap/" - } - ], - "author": { - "name": "Consensys", - "website": "https://consensys.io/" - }, - "category": "interoperability", - "description": "The Starknet Snap is your gateway to the Starknet ecosystem, enabling you to deploy accounts, execute transactions, and interact with Starknet smart contracts. This Snap allows you to seamlessly bridge tokens, swap assets, lend/borrow, provide liquidity, and even claim your Starknet ID—all from the convenience of MetaMask.\n\nWhether you’re exploring or building on Starknet, the Snap simplifies your connection to Starknet activities. Developers can refer to our Knowledge Base to learn how to create MetaMask-compatible Starknet dapps.\n\nGet started with these resources:\n\n- Companion dapp: Set up your account, check balances, and send tokens: https://snaps.consensys.io/starknet/\n- StarkGate: https://starkgate.starknet.io/\n- AVNU: https://www.avnu.fi/\n- Fibrous: https://app.fibrous.finance/\n- Starknet ID: https://app.starknet.id/\n- Nostra: https://app.nostra.finance/\n\nThe compatibility list is continuously growing, expanding your access to Starknet’s vibrant and evolving ecosystem. Simplify your journey with the Starknet Snap today!", - "name": "Starknet", - "screenshots": [ - "./images/@consensys/starknet-snap/1.png", - "./images/@consensys/starknet-snap/2.png", - "./images/@consensys/starknet-snap/3.png" - ], - "sourceCode": "https://github.com/Consensys/starknet-snap", - "summary": "Deploy Starknet accounts, make transactions, and interact with Starknet dapps.", - "support": { - "contact": "https://discord.gg/hYpHRjK", - "knowledgeBase": "https://docs.metamask.io/wallet/how-to/use-non-evm-networks/starknet/" - }, - "website": "https://snaps.consensys.io/starknet" - }, - "versions": { - "3.1.0-staging": { - "checksum": "FqZpSPhTq0xZ1ak13RTeavyaiDXLeS1pe7F/65wUPTo=" - }, - "4.2.0": { - "checksum": "TV3uoZzP0GFvDHXpFlfoMlOmyI4CESVZtN+znkRjxxA=" - } - } - }, - "npm:@cosmsnap/snap": { - "id": "npm:@cosmsnap/snap", - "metadata": { - "audits": [ - { - "auditor": "OtterSec", - "report": "https://ottersec.notion.site/Cosmos-Snap-ef7a8ccde39948e7bece99e86239ae6b" - } - ], - "author": { - "name": "Mystic Labs", - "website": "https://www.mysticlabs.xyz/" - }, - "category": "interoperability", - "description": "Cosmos Extension aims to add full support of MetaMask, a highly popular Ethereum wallet, to all Cosmos SDK blockchains, potentially opening the door to over 30 million Ethereum users and stimulating growth for every project in the Cosmos ecosystem.\n\nAfter installing the Snap, visit the website to manage your Cosmos account.", - "name": "Cosmos Extension", - "sourceCode": "https://github.com/cosmos/snap", - "summary": "Adds Cosmos support and capabilities.", - "support": { - "contact": "mailto:help@mysticlabs.xyz", - "faq": "https://metamask.mysticlabs.xyz/faq", - "knowledgeBase": "https://metamask.mysticlabs.xyz/general" - }, - "website": "http://metamask.mysticlabs.xyz/" - }, - "versions": { - "0.1.20": { - "checksum": "Ka5d45bzE3iPt6FchypG0ffAWNOJjFaIxzNNl3RcpPA=" - }, - "0.1.22": { - "checksum": "iy7sFNnki+rvhkmOaWGfKE5ZiaEqOYkuE1AVb5dEiN0=" - } - } - }, - "npm:@coti-io/coti-snap": { - "id": "npm:@coti-io/coti-snap", - "metadata": { - "author": { - "name": "COTI", - "website": "https://coti.io" - }, - "category": "interoperability", - "description": "1. AES Key Management: Securely store and manage AES keys in MetaMask\n2. Confidential Tokens: View and manage confidential ERC-20 tokens\n3. NFT Support: Handle confidential NFTs with metadata\n4. Token Operations: Transfer and deposit tokens\n5. Secure Storage: Encrypted storage within MetaMask's secure environment\n6. COTI Network: Native support for COTI's confidential blockchain", - "name": "COTI", - "sourceCode": "https://github.com/coti-io/coti-snap", - "summary": "Onboard your network AES and use it to encrypt and decrypt network data", - "support": { - "contact": "mailto:dev@coti.io", - "knowledgeBase": "https://docs.coti.io/coti-documentation/build-on-coti/tools/coti-metamask-snap" - }, - "website": "https://metamask.coti.io/" - }, - "versions": { - "1.0.52-eeccdb": { - "checksum": "frm3bxp1Wf6YRW+fNZo8MaF/DkpV2bAjyB3qwHZN6/Y=" - } - } - }, - "npm:@cubist-labs/cubesigner-snap": { - "id": "npm:@cubist-labs/cubesigner-snap", - "metadata": { - "audits": [ - { - "auditor": "Veridise", - "report": "https://f8t2x8b2.rocketcdn.me/wp-content/uploads/2023/09/VAR-Cubist-Snap4.pdf" - } - ], - "author": { - "name": "Cubist", - "website": "https://cubist.dev/" - }, - "category": "interoperability", - "description": "A Snap for Snap- and dapp-developers to safely manage EVM, Bitcoin, Solana, and other keys on behalf of MetaMask end users. Use the CubeSigner API to generate keys and sign transactions completely within server-side secure hardware. Your users' keys are never exposed in memory to attackers, and there's no risk of accidentally leaking keys. Visit https://cubist.dev/cubesigner-snap to get started.", - "name": "CubeSigner", - "sourceCode": "https://github.com/cubist-labs/CubeSigner-Snap", - "summary": "Manage EVM/non-EVM keys in secure hardware.", - "support": { - "contact": "https://discord.gg/Aw46GsGSy7", - "faq": "https://github.com/cubist-labs/CubeSigner-Snap/discussions/2" - }, - "website": "https://cubist.dev/cubesigner-snap" - }, - "versions": { - "0.2.13": { - "checksum": "AvyU4UjF8b56fVe5TuVg2OowAV7j3YwwRJ5tuz/Qpr8=" - } - } - }, - "npm:@cypher-laboratory/alicesring-snap": { - "id": "npm:@cypher-laboratory/alicesring-snap", - "metadata": { - "author": { - "name": "Cypher Lab", - "website": "https://www.cypherlab.org/" - }, - "category": "interoperability", - "description": "This Snap utilizes the ring signature implementation from Cypher Lab to privately sign messages. The signature can then be verified by any third party without revealing the actual signer.\n\nIt supports two types of ring signatures: Spontaneous Anonymous Group signatures (SAG) and Linkable Spontaneous Anonymous Group signatures (LSAG). If you are using the SAG scheme, no one will ever know that you signed the message. Use the LSAG scheme if you want third parties to know you signed multiple messages without revealing your identity.\n\nFeatures:\n- Create an Ethereum account\n- Import an Ethereum account using a mnemonic\n- Export the snap addresses\n- Sign a message using SAG and LSAG with the snap\n- Verify a SAG or LSAG signature\n\nWhat are Ring Signatures?\nRing signatures are a type of digital signature that allows a group of users to sign a message anonymously. Unlike traditional digital signatures uniquely linked to one user, ring signatures obscure the actual author by linking multiple possible signers together in a “ring.”\n\nRing signatures preserve privacy and anonymity by obscuring the specific originator of a message. By grouping possible signers in a “ring,” there is no way to definitively pinpoint the actual individual who authored the content. This prevents transactions from being easily traced back to a single user. The larger the ring of possible signers, the more anonymity is provided to the real originator.\n\nRing signatures have been known to cryptographers for several years, but their use within the blockchain ecosystem has been limited. The Monero blockchain is noted as one of the first to employ this cryptographic solution at the protocol level. However, there is currently no complete, robust, and audited implementation of ring signatures adapted for the browser environment. This is where we come in!\n\nUseful links:\n- More about ring signatures: https://people.csail.mit.edu/rivest/pubs/RST01.pdf\n- SAG repository: https://github.com/Cypher-Laboratory/Alice-s-Ring-SAG-TS\n- LSAG repository: https://github.com/Cypher-Laboratory/Alice-s-Ring-LSAG-TS\n- Toolkit for integrating with dapps: https://github.com/Cypher-Laboratory/Alice-s-Ring-snap-toolkit", - "name": "Ring Signatures", - "screenshots": [ - "./images/@cypher-laboratory/alicesring-snap/1.jpg", - "./images/@cypher-laboratory/alicesring-snap/2.jpg", - "./images/@cypher-laboratory/alicesring-snap/3.jpg" - ], - "sourceCode": "https://github.com/Cypher-Laboratory/Alice-s-Ring-snap", - "summary": "Use SAG and LSAG signatures for privacy-enhanced dapps.", - "support": { - "contact": "https://discord.gg/jUEkpw5zyH", - "faq": "https://github.com/Cypher-Laboratory/Alice-s-Ring-snap/blob/main/README.md#faq" - } - }, - "versions": { - "0.3.10": { - "checksum": "LJdsAPDrD79oY8rvLZ22Ju44HWj6UJgk8Y7QlsV43c4=" - } - } - }, - "npm:@d3-inc/d3connect-snap": { - "id": "npm:@d3-inc/d3connect-snap", - "metadata": { - "author": { - "name": "D3", - "website": "https://d3.inc/" - }, - "category": "name resolution", - "description": "The D3 Connect Snap is a MetaMask extension that enables custom name resolution using D3 Connect. Once installed, you can use any D3 name (e.g. d3connect.core) instead of a wallet address to send/receive crypto in MetaMask.", - "name": "D3 Connect", - "screenshots": [ - "./images/@d3-inc/d3connect-snap/1.png", - "./images/@d3-inc/d3connect-snap/2.png", - "./images/@d3-inc/d3connect-snap/3.png" - ], - "sourceCode": "https://github.com/d3-inc/d3-connect-snap", - "summary": "The D3 Connect Snap is a MetaMask extension that enables custom name resolution using D3 Connect", - "support": { - "contact": "https://discord.com/invite/D3inc", - "knowledgeBase": "https://docs.d3.app/integrating-d3-infrastructure" - } - }, - "versions": { - "0.3.3": { - "checksum": "hCYbcjeRdHViQAQubfoEZIFopHjoiF5bX03h8BolP8s=" - } - } - }, - "npm:@doggyfi-official/kobosu": { - "id": "npm:@doggyfi-official/kobosu", - "metadata": { - "audits": [ - { - "auditor": "Sayfer", - "report": "https://sayfer.io/audits/metamask-snap-audit-report-for-doggyfi/" - } - ], - "author": { - "name": "The Epiphyte Corporation", - "website": "https://theepiphytecorporation.xyz" - }, - "category": "interoperability", - "description": "DoggyFi brings Dogecoin functionality directly into your MetaMask wallet. With this Snap, you can interact with the Dogecoin blockchain seamlessly.\n\nFeatures:\n\n- Generate a single Dogecoin address derived from your MetaMask secret recovery phrase.\n- Check the balance of your Dogecoin address.\n- View the list of transactions associated with your address.\n- Send DOGE from your address to another address.\n- Send DRC-20 tokens from your address to another address.\n- Send Dunes from your address to another address.\n- Mint DRC-20 tokens.\n- Mint transfer inscriptions for DRC-20 tokens.\n- Deploy DRC-20 tokens to the network.\n- Send Doginals to specified addresses.\n- Inscribe Doginals onto the Dogecoin blockchain.\n- Open Dunes by deploying open dune transactions.\n\nHow to Use:\n\n1. Head to https://doggyfi.xyz/snap and connect your MetaMask wallet. You will be prompted to install the Snap.\n2. Grant Permissions: When prompted, grant the required permissions to enable full functionality.\n3. Interact with Dogecoin: Use your MetaMask wallet to interact with the Dogecoin network using the features listed above.\n\nFor more detailed information and tutorials, please visit the DoggyFi Snap README: https://github.com/DoggyFiOfficial/dogecoin-snap-public/blob/main/README.md.\n\nFor Developers:\n\n- Utilize the exposed RPC API methods to build DApps or integrations that leverage Dogecoin within MetaMask: https://github.com/DoggyFiOfficial/dogecoin-snap-public/tree/main?tab=readme-ov-file#methods.", - "name": "kobosu", - "sourceCode": "https://github.com/DoggyFiOfficial/dogecoin-snap-public", - "summary": "Trade and manage dogecoin, DRC-20, Dunes, Doginals and more", - "support": { - "contact": "https://discord.gg/kyc4rvSe7A", - "knowledgeBase": "https://github.com/DoggyFiOfficial/dogecoin-snap-public/blob/main/README.md" - }, - "website": "https://doggyfi.xyz/snap" - }, - "versions": { - "0.1.10": { - "checksum": "lljEc08Brhupw9DmWa8TaiSfGiBlBFwqt8WSMvOY2fQ=" - }, - "0.1.9": { - "checksum": "beuDKypWeXHUJN1Znnmv7zfDVSqjKWdkJfrxhalpT9M=" - } - } - }, - "npm:@dotmundo-io/dotmundo-resolution-snap": { - "id": "npm:@dotmundo-io/dotmundo-resolution-snap", - "metadata": { - "author": { - "name": "Dotmundo", - "website": "https://dotmundo.io/" - }, - "category": "name resolution", - "description": "You no longer have to share your long and complex MetaMask wallet address to send and receive crypto assets anymore. With the Dotmundo Snap you can replace your MetaMask wallet addresses with your own easy-to-share Web3 domain.\n\nThe Dotmundo Snap makes it easy for both new and experienced Web3 users to seamlessly resolve their Web3 domain to their MetaMask wallet addresses in a user-friendly way.\n\nAfter installing the Dotmundo Snap, you can immediately send and receive cryptocurrencies with your Web3 domains!\n\nPlease note: the Dotmundo Snap is compatible from MetaMask version 12.0.0 and higher, and with Web3 domains that are registered and minted via official Dotmundo partner registrars. Please check here for more info about our MetaMask Snap and official partners.", - "name": "Dotmundo", - "screenshots": [ - "./images/@dotmundo-io/dotmundo-resolution-snap/1.jpg", - "./images/@dotmundo-io/dotmundo-resolution-snap/2.jpg", - "./images/@dotmundo-io/dotmundo-resolution-snap/3.jpg" - ], - "sourceCode": "https://gitlab.com/dotmundo/dotmundo-resolution-snap", - "summary": "Replace your wallet address with your domain.", - "support": { - "contact": "https://dotmundo.io/dotmundo-snap.php#contact", - "faq": "https://dotmundo.io/dotmundo-snap.php#faq", - "knowledgeBase": "https://dotmundo.io/dotmundo-snap.php" - }, - "website": "https://dotmundo.io/dotmundo-snap.php" - }, - "versions": { - "1.0.4": { - "checksum": "XzTlsW99C8qaMNNRqAYTysvlzhjZK6kb+6C9fyAHx7E=" - } - } - }, - "npm:@drift-labs/snap-solana": { - "id": "npm:@drift-labs/snap-solana", - "metadata": { - "audits": [ - { - "auditor": "OtterSec", - "report": "https://ottersec.notion.site/Drift-Snap-8575cd9031ae466d87d3b6a1c0afa028" - } - ], - "author": { - "name": "Drift Protocol", - "website": "https://www.drift.trade/" - }, - "description": "Connect by Drift allows MetaMask to seamlessly connect to Drift and function as a Solana wallet. Users of the Snap can connect to Drift, bridge their Ethereum assets to Solana, and trade on Drift all from within MetaMask.\n\nAfter installing the Snap, visit the website and click Launch App to try it. Please note: Drift may not be available in your region.", - "name": "Connect by Drift", - "screenshots": [ - "./images/@drift-labs/snap-solana/1.png", - "./images/@drift-labs/snap-solana/2.png", - "./images/@drift-labs/snap-solana/3.png" - ], - "sourceCode": "https://github.com/drift-labs/snap-solana", - "summary": "Interact natively with Solana applications.", - "support": { - "contact": "https://discord.com/invite/fMcZBH8ErM" - }, - "website": "https://app.drift.trade/" - }, - "versions": { - "0.2.1": { - "checksum": "YUVSrvkkDIlTTdFwuWB+5SrY4OETUQefAt9oyt5pYag=" - }, - "0.2.3": { - "checksum": "rAMiFZ+6Cid0YmQp01E7jWBz04ELul5WmSvaNBpXE40=" - }, - "0.3.0": { - "checksum": "aBFo5H+O8XP+U6Q39mxbm6oLXV1IhsezUmbwMltHLBQ=" - } - } - }, - "npm:@enjin-io/snap": { - "id": "npm:@enjin-io/snap", - "metadata": { - "audits": [ - { - "auditor": "Sayfer", - "report": "https://sayfer.io/audits/metamask-snap-audit-report-for-enjin/" - } - ], - "author": { - "name": "Enjin", - "website": "http://enjin.io" - }, - "category": "interoperability", - "description": "Enjin Snap enhances the MetaMask experience by integrating features specifically designed for the Enjin blockchain. Users can easily manage their NFTs and digital assets with the following capabilities:\n- NFT Management: View, send, and receive NFTs within the Enjin ecosystem.\n- Blockchain Interactions: Execute transactions on the Enjin blockchain without leaving MetaMask.\n- User-Friendly Interface: A streamlined interface that simplifies asset management.\n\nTo get started with Enjin Snap, follow these steps:\n1. Install MetaMask if you haven't already.\n2. Access Enjin Snap through the MetaMask Snaps interface.\n3. Connect your wallet to the Enjin network.\n4. Begin managing your NFTs and assets seamlessly.\n\nFor more information, visit:\nEnjin Snap Support (https://support.enjin.io/hc/en-gb/articles/23053873072274-Enjin-Snap)\nConnecting via MetaMask (https://support.nft.io/hc/en-gb/articles/23654979839378-How-to-Connect-via-MetaMask-Enjin-Snap)\nGitHub Repository (https://github.com/enjin/metamask-snap-enjin)", - "name": "Enjin Connect", - "screenshots": [ - "./images/@enjin-io/snap/1.jpg", - "./images/@enjin-io/snap/2.jpg", - "./images/@enjin-io/snap/3.jpg" - ], - "sourceCode": "https://github.com/enjin/metamask-snap-enjin", - "summary": "Seamlessly manage NFTs and blockchain assets within the Enjin ecosystem", - "support": { - "contact": "mailto:support@enjin.io", - "faq": "https://support.enjin.io/hc/en-gb/articles/23053873072274-Enjin-Snap", - "knowledgeBase": "https://support.nft.io/hc/en-gb/articles/23654979839378-How-to-Connect-via-MetaMask-Enjin-Snap" - }, - "website": "https://nft.io/" - }, - "versions": { - "0.1.2": { - "checksum": "PR5M+x5x7vlXA5Jh53a7JSu1Z1EbzyXsyT0Ev3iwRCI=" - } - } - }, - "npm:@ethereum-attestation-service/eas-metamask-snap": { - "id": "npm:@ethereum-attestation-service/eas-metamask-snap", - "metadata": { - "audits": [ - { - "auditor": "SlowMist", - "report": "https://github.com/slowmist/Knowledge-Base/blob/master/open-report-V2/blockchain-application/SlowMist%20Audit%20Report%20-%20EAS%20Snap_en-us.pdf" - } - ], - "author": { - "name": "EAS", - "website": "https://attest.sh/" - }, - "category": "transaction insights", - "description": "The EAS Snap enhances the transparency and security of EAS attestations signed with your MetaMask. It decodes attestation data, allowing users to clearly understand and verify the details before confirming a transaction.\n\nWhy It Matters\nWhen signing attestations with MetaMask, the data often appears in a hexadecimal format, which is not human-readable. The EAS Snap converts this data into a clear, readable format. This ensures you're fully aware of the attestation's details, mitigating the risk of unintentional or malicious signings.\n\nKey Features\n- Attestation Decoding: Utilizes SchemaEncoder from the EAS SDK to decode attestation data, presenting it in a readable format.\n- Transaction Data Parsing: The snap parses Ethereum transaction data to identify if it is related to an EAS attestation, using ethers library.\n- Dynamic Content Rendering: It dynamically renders transaction details in the MetaMask UI, including schema, recipient, reference UID, expiration time, and revocability status, offering users a complete overview of the attestation they are about to sign.\n- Time Formatting: Utilizes dayjs with extended formats to display expiration times in a user-friendly manner.\n- GraphQL Integration: Communicates with EAS's GraphQL endpoint to fetch and display the schema associated with the attestation.\n- Data Decoding and Display: Decodes and displays each piece of attestation data using the fetched schema, allowing users to understand the specifics of what they are attesting.\n\nAfter installing the Snap, you can view insights in the transaction flow while interacting with an EAS contract. To explore EAS, try EAS Scan: https://sepolia.easscan.org/", - "name": "EAS", - "sourceCode": "https://github.com/ethereum-attestation-service/eas-metamask-snap", - "summary": "Decode attestation transaction data.", - "support": { - "contact": "https://t.me/+EcynOr0iFu03MTYx", - "faq": "https://docs.attest.sh/docs/developer-tools/metamask-snap/eas-snap-faq", - "knowledgeBase": "https://docs.attest.sh/docs/developer-tools/metamask-snap/" - } - }, - "versions": { - "0.1.6": { - "checksum": "5NJCG0Enpqd9CMBLk0999tDaT4PViEAE+KwN9hkE51s=" - } - } - }, - "npm:@fioprotocol/fio-wallet-snap": { - "id": "npm:@fioprotocol/fio-wallet-snap", - "metadata": { - "audits": [ - { - "auditor": "Sayfer", - "report": "https://sayfer.io/audits/metamask-snap-audit-report-for-fio/" - } - ], - "author": { - "name": "FIO Protocol", - "website": "https://fio.net/" - }, - "category": "name resolution", - "description": "Connect with MetaMask to FIO Protocol App to register your FREE custom FIO Handle and map it to all your crypto public addresses.\n\nFIO Protocol makes crypto easier. You can replace all your public wallet addresses with a single, secure, customizable handle and make any transaction, on any chain, as easy as sending an email. FIO Handles work across many leading wallets and exchanges.\n\nWith the FIO Protocol App you can also send and receive crypto payment requests and even sign NFTs to assert your ownership. FIO Handles are now supported inside MetaMask.\n\nHead over to FIO App to register your FREE FIO Handle: https://app.fio.net/\n\nPlease note: FIO handles are only compatible with MetaMask Extension version 12.4.2 and up. Please make sure you are on the latest version of the MetaMask Extension before adding this Snap to MetaMask.", - "name": "FIO Wallet", - "sourceCode": "https://github.com/fioprotocol/fio-wallet-snap", - "summary": "Register a custom FIO Handle and map it to crypto public addresses.", - "support": { - "contact": "https://help.fio.net", - "faq": "https://app.fio.net/metamask" - }, - "website": "https://fio.net/" - }, - "versions": { - "1.0.2": { - "checksum": "b6Z0SYw5x5yYEYu1TiguPRbRV/izLsjK0FFJ/+strwg=" - }, - "1.1.1": { - "checksum": "Zif5f5FHoyFlCBY7PPD5+dDfa9VKFjRraKH85m71HJk=" - } - } - }, - "npm:@fort-major/msq": { - "id": "npm:@fort-major/msq", - "metadata": { - "audits": [ - { - "auditor": "Consensys Diligence", - "report": "https://consensys.io/diligence/audits/2024/03/msq-snap/" - } - ], - "author": { - "name": "Fort Major", - "website": "https://github.com/fort-major" - }, - "category": "interoperability", - "description": "Seamless integration with MetaMask: Enables users to interact with the Internet Computer (ICP) blockchain directly from their MetaMask wallet.\n\nEnhanced security: Implements robust security measures to protect users from scams and malicious activities.\n\nImproved privacy: Utilizes a 'scoped identity model' to protect user identities and transaction details.\n\nUser-friendly interface: Offers a straightforward and intuitive experience for managing ICRC-1 assets, making blockchain interactions simpler.\n\nAutomatic installation: MSQ is installed automatically within MetaMask during the Snap installation, requiring no additional setup from the user.\n\nCommunity engagement: Active Discord community for user support, feedback, and ongoing development discussions.", - "name": "MSQ - Safe ICP Wallet", - "screenshots": [ - "./images/@fort-major/msq/1.png", - "./images/@fort-major/msq/2.png", - "./images/@fort-major/msq/3.png" - ], - "sourceCode": "https://github.com/fort-major/msq", - "summary": "Use your wallet to interact with the Internet Computer blockchain.", - "support": { - "contact": "https://discord.gg/RMxyF5Huhs", - "faq": "https://icp.msq.tech", - "knowledgeBase": "https://discord.gg/RMxyF5Huhs" - }, - "website": "https://icp.msq.tech/" - }, - "versions": { - "0.3.4": { - "checksum": "+KJdgDUrocpPB1lluac9CYuOYAzi0K37d2uB2ZGLowk=" - } - } - }, - "npm:@galactica-net/snap": { - "id": "npm:@galactica-net/snap", - "metadata": { - "audits": [ - { - "auditor": "Sayfer", - "report": "https://sayfer.io/audits/metamask-snap-audit-report-for-galactica/" - } - ], - "author": { - "name": "Galactica Network", - "website": "https://galactica.com/" - }, - "category": "interoperability", - "description": "The Galactica.com ZK Vault Snap holds zero-knowledge certificates issued on Galactica Network in the user's wallet, allowing self custody of your data. It generates zero-knowledge proofs inside MetaMask to selectively disclose statements on-chain while keeping personal data private. For example, you can import a KYC certificate and privately prove your authenticity and compliance to a smart contract.\n\n\n\nAfter installing the Snap, visit https://app.galactica.com/ to get started.", - "name": "Galactica ZK Vault", - "screenshots": [ - "./images/@galactica-net/snap/1.jpg", - "./images/@galactica-net/snap/2.jpg", - "./images/@galactica-net/snap/3.jpg" - ], - "sourceCode": "https://github.com/Galactica-corp/galactica-monorepo/tree/main/packages/snap", - "summary": "Manages zero-knowledge certificates on Galactica.com - own your identity, not just your assets", - "support": { - "contact": "https://discord.gg/galactica", - "knowledgeBase": "https://docs.galactica.com/" - }, - "website": "https://app.galactica.com/" - }, - "versions": { - "1.0.3": { - "checksum": "AHgbUp1j76tTsoLLDTm3l3A+y0+qrYtGr3gCU+H/zHg=" - } - } - }, - "npm:@gobob/bob-snap": { - "id": "npm:@gobob/bob-snap", - "metadata": { - "audits": [ - { - "auditor": "Cure53", - "report": "https://github.com/bob-collective/bob-snap/blob/master/docs/audit.pdf" - } - ], - "author": { - "name": "BOB", - "website": "https://www.gobob.xyz/" - }, - "category": "interoperability", - "description": "The BOB Bitcoin Snap unlocks Bitcoin, ordinals, BRC20, and more to MetaMask users.\n\nThe BOB Bitcoin Snap allows users to:\n\n- Receive and transfer BTC on Bitcoin\n\n- Mint ordinals and BRC20 on Bitcoin\n\n- Transfer ordinals, BRC20, runes, and other inscriptions", - "name": "BOB", - "sourceCode": "https://github.com/bob-collective/bob-snap", - "summary": "Receive and transfer BTC, and manage ordinals including BRC20.", - "support": { - "contact": "mailto:contact@gobob.xyz", - "faq": "https://docs.gobob.xyz/docs/build/how-to/metamask-snap", - "knowledgeBase": "https://docs.gobob.xyz/docs/build/how-to/metamask-snap" - }, - "website": "https://www.gobob.xyz/" - }, - "versions": { - "2.0.11": { - "checksum": "UNNvSkasqOeujfTzwe0FTpswTufzXIgIV9or3UlkSi4=" - }, - "2.2.1": { - "checksum": "HHxMGzE7qqYdjyYNB6L+2droaS0ElKFS1CIyDl4pIo0=" - }, - "2.2.2": { - "checksum": "tUeqZ/Wk3Ot1VfrXoGa8QVw1dtLO3Sm1kQ3/3+UVjIk=" - } - } - }, - "npm:@goplus/riskdetect-snap": { - "id": "npm:@goplus/riskdetect-snap", - "metadata": { - "audits": [ - { - "auditor": "SlowMist", - "report": "https://github.com/MetaMask/snaps-registry/files/12554521/SlowMist.Audit.Report.-.Riskdetect-snap.1.pdf" - } - ], - "author": { - "name": "GoPlus Security", - "website": "https://gopluslabs.io/" - }, - "category": "transaction insights", - "description": "A MetaMask Snap that can detect risks of user assets, supported by GoPlus Security.\n\nAfter installing the Snap, visit the website to connect your account and run the detection.", - "name": "Assets Risk Detection", - "sourceCode": "https://github.com/GoPlusSecurity/riskdetect-snap", - "summary": "Detect risks of user assets with GoPlus Security.", - "support": { - "contact": "mailto:service@gopluslabs.io", - "faq": "https://snaps.gopluslabs.io/faq/" - }, - "website": "https://snaps.gopluslabs.io/" - }, - "versions": { - "0.1.8": { - "checksum": "T71m8iWOll6TqZuk9zqeV+JxvhBZSn4SbMBkifAKPgU=" - } - } - }, - "npm:@greymass/eos-wallet": { - "id": "npm:@greymass/eos-wallet", - "metadata": { - "audits": [ - { - "auditor": "Cure53", - "report": "https://cure53.de/pentest-report_antelope-snap.pdf" - } - ], - "author": { - "name": "Greymass", - "website": "https://www.greymass.com/" - }, - "category": "interoperability", - "description": "The EOS Wallet enables you to create an EOS account, sign transactions and interact with EOS smart contracts. After installing the EOS Wallet, visit the companion dapp, Unicove, to create and manage your EOS account. On Unicove you can stake EOS, participate in the RAM market and more. Dapp compatibility is expected to grow, which will expand access to the EOS Ecosystem.\n\nNeed any additional information or support? Feel free to visit our knowledge base or reach out to our support team (support@greymass.com). If you're a developer and would like to support MetaMask in your EOS application, please check out Wharf and the MetaMask Wallet Plugin.\n\nLinks:\n Unicove: https://unicove.com/en/eos/metamask\n Knowledge Base: https://greymass.freshdesk.com/a/solutions/categories/72000352473/\n Wharf: https://wharfkit.com/\n MetaMask Wallet Plugin: https://github.com/wharfkit/wallet-plugin-metamask", - "name": "EOS Wallet", - "sourceCode": "https://github.com/greymass/antelope-snap/tree/eos", - "summary": "Create and manage EOS accounts, sign transactions, and interact with EOS smart contracts.", - "support": { - "contact": "mailto:support@greymass.com", - "faq": "https://unicove.com/en/eos/metamask", - "knowledgeBase": "https://greymass.freshdesk.com/support/solutions/categories/72000352473" - }, - "website": "https://unicove.com/" - }, - "versions": { - "1.1.0": { - "checksum": "05RXQ66dkZzU6uIeHBWC8PwII1X8voKdZuCDXfrrCew=" - } - } - }, - "npm:@hashgraph/hedera-identify-snap": { - "id": "npm:@hashgraph/hedera-identify-snap", - "metadata": { - "audits": [ - { - "auditor": "Cure53", - "report": "https://cure53.de/pentest-report_hedera-snap_v3.pdf" - } - ], - "author": { - "name": "Tuum Technologies", - "website": "https://www.tuum.tech/" - }, - "category": "interoperability", - "description": "Identify Snap extends MetaMask's features by adding support for Decentralized Identifiers (DIDs) and Verifiable Credentials (VCs), thereby turning MetaMask into a DID wallet.\n\nIdentify Snap supports 3 DID methods - did:pkh, did:key and did:hedera and users can choose between the 3 methods. More methods will be supported in the future.\n\nExamples of use cases for Identify Snap include:\n- Secure access control: Identify Snap can be employed for authentication and authorization purposes, granting users secure access to various online services and resources based on their verifiable credentials.\n- Credential management: Users can create, manage, and verify their credentials, such as educational qualifications or professional certifications, with the added convenience and security provided by the MetaMask extension.\n- Decentralized identity management: Identify Snap empowers users to establish and maintain control over their digital identities through the use of DIDs and VCs, thus ensuring privacy, security, and reduced reliance on centralized authorities.", - "name": "Identify", - "screenshots": [ - "./images/@hashgraph/hedera-identify-snap/1.png", - "./images/@hashgraph/hedera-identify-snap/2.png", - "./images/@hashgraph/hedera-identify-snap/3.png" - ], - "sourceCode": "https://github.com/hashgraph/hedera-metamask-snaps/tree/main/packages/hedera-identify-snap/packages/snap", - "summary": "Turn MetaMask into a DID wallet. Support for Decentralized Identifiers (DIDs) and Verifiable Credentials (VCs)", - "support": { - "contact": "https://discord.gg/BsDqX3fhq4", - "faq": "https://docs.tuum.tech/identify/basics/faqs", - "knowledgeBase": "https://docs.tuum.tech/identify" - }, - "website": "https://docs.tuum.tech/identify/identify-snap/snap-rpc-apis/basic-apis/hello#live-demo-on-codepen" - }, - "versions": { - "0.2.1": { - "checksum": "G0wvMOcnrXDw3J6hZkGXH4p/xSgF9axYIW16wkdFAf0=" - } - } - }, - "npm:@hashgraph/hedera-wallet-snap": { - "id": "npm:@hashgraph/hedera-wallet-snap", - "metadata": { - "audits": [ - { - "auditor": "Cure53", - "report": "https://cure53.de/pentest-report_tuum-hedera-snap.pdf" - } - ], - "author": { - "name": "Tuum Technologies", - "website": "https://www.tuum.tech/" - }, - "category": "interoperability", - "description": "Hedera Wallet unlocks wallet functionality via MetaMask that any other apps can interact with, thereby turning MetaMask into a native Hedera wallet without relying on Hedera JSON-RPC Relay.", - "name": "Hedera Wallet", - "screenshots": [ - "./images/@hashgraph/hedera-wallet-snap/1.png", - "./images/@hashgraph/hedera-wallet-snap/2.png", - "./images/@hashgraph/hedera-wallet-snap/3.png" - ], - "sourceCode": "https://github.com/hashgraph/hedera-metamask-snaps", - "summary": "Add native Hedera support to your wallet.", - "support": { - "contact": "https://discord.gg/BsDqX3fhq4", - "faq": "https://docs.tuum.tech/hedera-wallet-snap/basics/faqs", - "knowledgeBase": "https://docs.tuum.tech/hedera-wallet-snap" - }, - "website": "https://pulse.tuum.tech/" - }, - "versions": { - "0.6.2": { - "checksum": "SXhsFNEi+/LvBBBvccQYhlqtbuQgcADUyWwOcl26WIE=" - } - } - }, - "npm:@hathor/snap": { - "id": "npm:@hathor/snap", - "metadata": { - "audits": [ - { - "auditor": "Sayfer", - "report": "https://sayfer.io/audits/metamask-snap-audit-report-for-hathor/" - } - ], - "author": { - "name": "Hathor Labs", - "website": "https://hathor.network/" - }, - "category": "interoperability", - "description": "Features: \n\n - Send and receive HTR and custom tokens \n - Create Token \n - Create Nano Contract \n - View your balance \n - View addresses and get new address \n\nExpect many new features soon!", - "name": "Hathor Wallet", - "screenshots": [ - "./images/@hathor/snap/1.jpg", - "./images/@hathor/snap/2.jpg", - "./images/@hathor/snap/3.jpg" - ], - "sourceCode": "https://github.com/HathorNetwork/hathor-rpc-lib", - "summary": "View and sign transactions on Hathor Network, and interact with dapps built with Nano Contracts.", - "support": { - "contact": "https://discord.com/invite/35mFEhk", - "knowledgeBase": "https://docs.hathor.network/explanations/features/metamask-snap" - } - }, - "versions": { - "0.4.2": { - "checksum": "P5zK+T8afxLRSILibyFCD8RnkeoD3U1mrtaIQ7UDupw=" - } - } - }, - "npm:@hiveio/metamask-snap": { - "id": "npm:@hiveio/metamask-snap", - "metadata": { - "audits": [ - { - "auditor": "Hacken", - "report": "https://github.com/openhive-network/metamask-snap/wiki/assets/documents/Hacken_Hive_dApp_Hive_Snap_Audit_May2025.pdf" - } - ], - "author": { - "name": "thebeedevs", - "website": "https://blog.openhive.network/@thebeedevs" - }, - "category": "interoperability", - "description": "Features supported by this Snap include:\n- Preparation of Hive account creation request, next encoded into URL link to be shared with existing Hive user who should execute it\n- Seamless process specific to associating generated public keys to the existing Hive account\n- Derive Hive keys from MetaMask wallet\n- Sign Hive transactions securely\n- Encode / decode buffer using derived Hive keys\n- No private key exposure", - "name": "Hive Wallet", - "sourceCode": "https://github.com/openhive-network/metamask-snap", - "summary": "Enables secure Hive blockchain interactions directly through your MetaMask wallet.", - "support": { - "contact": "https://github.com/openhive-network/metamask-snap/issues/new", - "faq": "https://github.com/openhive-network/metamask-snap/wiki/FAQ", - "knowledgeBase": "https://github.com/openhive-network/metamask-snap/wiki/KB" - }, - "website": "https://auth.openhive.network/" - }, - "versions": { - "1.6.0": { - "checksum": "Gi/COgu8L73LLMFQGrpbDZII8igqYpVTUWTyBdKWAtA=" - }, - "1.7.0": { - "checksum": "G+5qsDlLbzhKCGqIYUkovutGZKZvLdlQQdpyPFhMHbc=" - } - } - }, - "npm:@hivemindhq/snap": { - "id": "npm:@hivemindhq/snap", - "metadata": { - "author": { - "name": "Hive Mind", - "website": "https://hivemindhq.io/" - }, - "category": "transaction insights", - "description": "Hive Mind shows you community trust signals from the Intuition knowledge graph before you sign transactions. When you're about to send crypto or interact with a smart contract, you'll see real-time data about the destination address and the dApp you're using. WHAT YOU'LL SEE:\n\n• Trust Signals — How many people have staked that an address is trustworthy (or not)\n• Stake Amounts — The economic weight behind each trust signal in TRUST tokens\n• Your Position — Whether you've already staked on this address\n• Aliases — Community-assigned labels for addresses\n• dApp Trust — Trust data for the dApp origin you're interacting with\n• Trusted Circle — Which of your trusted contacts have staked on this address HOW IT WORKS:\n\nIntuition is a decentralized knowledge graph where users stake cryptocurrency to signal trust or distrust. High stakes on 'trustworthy' mean the community has put real money behind their endorsement. This creates skin-in-the-game reputation that's harder to fake than traditional reviews. The Snap queries Intuition's knowledge graph in real-time and displays the results directly in your MetaMask transaction confirmation screen. No extra steps required — the data appears automatically when you're about to sign. TAKE ACTION:\n\nIf you see an address without trust data, you can click through to create a trust signal yourself.", - "name": "Hive Mind", - "screenshots": [ - "./images/@hivemindhq/snap/1.png", - "./images/@hivemindhq/snap/2.png", - "./images/@hivemindhq/snap/3.png" - ], - "sourceCode": "https://github.com/hivemindhq-io/snap", - "summary": "Real-time trust signals powered by the Intuition knowledge graph", - "support": { - "knowledgeBase": "https://github.com/hivemindhq-io/snap/blob/main/docs/USER-KNOWLEDGE-BASE.md" - } - }, - "versions": { - "1.2.4": { - "checksum": "ffdfxK4L0hmiIj8b93NQUVFhLcSqm8PZKpTTWea+0XU=" - }, - "1.3.1": { - "checksum": "SU005Ag236ZhGi7A98hvfLt2540oJ/vSN8p+06BWrl4=" - } - } - }, - "npm:@idriss-crypto/snap": { - "id": "npm:@idriss-crypto/snap", - "metadata": { - "author": { - "name": "IDriss", - "website": "https://www.idriss.xyz/" - }, - "category": "name resolution", - "description": "Web3 Address Book can be used to resolve several naming services in MetaMask.\n\nIt supports resolution of:\n\n1. IDriss\n2. Farcaster names\n3. Lens handles\n4. Unstoppable Domains\n5. ENS domains on networks other than Ethereum Mainnet\n\nSupported formats:\n\n1. IDriss: Registered Twitter handles @[name]\n2. Farcaster: [name].fc or [name].farcaster\n3. Lens: [name].lens\n4. UD: any registered UD\n5. ENS: Any registered ENS, given it does not resolve to a contract address.", - "name": "Web3 Address Book", - "sourceCode": "https://github.com/idriss-crypto/snap/", - "summary": "Use your favorite name services in MetaMask.", - "support": { - "contact": "hello@idriss.xyz" - } - }, - "versions": { - "0.1.2": { - "checksum": "9a+ZgF4hWDGgYEAjyEbg0hxTU/COftFoCfH7X3APF3A=" - } - } - }, - "npm:@kleros/scout-snap": { - "id": "npm:@kleros/scout-snap", - "metadata": { - "audits": [ - { - "auditor": "Veridise", - "report": "https://f8t2x8b2.rocketcdn.me/wp-content/uploads/2023/06/VAR-Kleros-Scout.pdf" - } - ], - "author": { - "name": "Kleros", - "website": "https://kleros.io/" - }, - "category": "transaction insights", - "description": "This Snap pulls contract metadata from Kleros's decentralized token curated registries to provide insights to the contract you are interacting with. \nAfter installing the Snap, you will see it in the transaction confirmation window.", - "name": "Kleros Scout", - "screenshots": [ - "./images/@kleros/scout-snap/1.png", - "./images/@kleros/scout-snap/2.png", - "./images/@kleros/scout-snap/3.png" - ], - "sourceCode": "https://github.com/kleros/scout-snap", - "summary": "Pull contract metadata from Kleros' community curated registries to provide smart contract insights.", - "support": { - "contact": "mailto:contact@kleros.io", - "faq": "https://docs.kleros.io/products/curate/kleros-scout-metamask-snaps/faqs", - "knowledgeBase": "https://docs.kleros.io/products/curate/kleros-scout-metamask-snaps/knowledge-base" - }, - "website": "https://klerosscout.eth.limo" - }, - "versions": { - "1.3.9": { - "checksum": "ayOxQ97u42HLTny+ivrIjLTsq/hQnctZYM2lO5jG6o8=" - }, - "1.4.1": { - "checksum": "dLpYpqbP53gfOkceWC7tNFpnftJv0qriT5muEMtH8gc=" - } - } - }, - "npm:@kunalabs-io/sui-metamask-snap": { - "id": "npm:@kunalabs-io/sui-metamask-snap", - "metadata": { - "audits": [ - { - "auditor": "Sayfer", - "report": "https://sayfer.io/audits/metamask-snap-audit-report-for-kunalabs/" - } - ], - "author": { - "name": "Kuna Labs", - "website": "https://kunalabs.io/" - }, - "category": "interoperability", - "description": "A Snap for making transactions on the Sui blockchain. After installing the Snap, visit the website to manage your Sui accounts.", - "name": "Sui", - "screenshots": [ - "./images/@kunalabs-io/sui-metamask-snap/1.png", - "./images/@kunalabs-io/sui-metamask-snap/2.png", - "./images/@kunalabs-io/sui-metamask-snap/3.png" - ], - "sourceCode": "https://github.com/kunalabs-io/sui-snap", - "summary": "Make transactions on the Sui blockchain.", - "support": { - "contact": "https://discord.com/invite/nTth43SUxJ" - }, - "website": "https://suisnap.com/" - }, - "versions": { - "1.0.1": { - "checksum": "JeAHhMjDDsJ21FuyOA+AVNTkn0FQrk6ksL8DqbBWx7w=" - } - } - }, - "npm:@kurslog/metamask-snap": { - "id": "npm:@kurslog/metamask-snap", - "metadata": { - "author": { - "name": "Kurslog", - "website": "https://kurslog.com/en" - }, - "category": "transaction insights", - "description": "Kurslog Rate Tracker helps you find the best OTC exchange rates for crypto cash-out directly inside MetaMask.\n\nTransaction Insight: When you swap tokens on Uniswap, SushiSwap, 1inch, or PancakeSwap, Kurslog shows you the best cash-out rates (Card UAH, Cash UAH, Cash USD) right on the transaction confirmation screen. See how much you would get if you sell your crypto directly through an OTC exchanger instead.\n\nHome Page: Browse popular exchange directions with real-time rates from 100+ exchangers. Check rates for any currency pair.\n\nRate Check: Select from 190+ currencies organized by category (Crypto, UAH, USD, EUR, and more). Compare rates from trusted exchangers with trust scores.\n\nMulti-country: Supports 98 countries and 285 cities. Cash rates are shown for your selected city. Card rates work globally.\n\nMulti-language: Ukrainian, Russian, and English. Language is auto-detected from your MetaMask settings.\n\nSupported DEXs: Uniswap V2/V3, Universal Router, SushiSwap, 1inch v5/v6, PancakeSwap, QuickSwap.\n\nSupported networks: Ethereum, Polygon, BSC.", - "name": "Kurslog Rate Tracker", - "sourceCode": "https://github.com/kurslog/kurslog-metamask-snap", - "summary": "Compare OTC exchange rates from 100+ exchangers and find the best cash-out rate in your city. Get real-time rate insights when swapping tokens on Uniswap, SushiSwap, 1inch, and PancakeSwap.", - "support": { - "contact": "mailto:support@kurslog.com", - "knowledgeBase": "https://kurslog.com/en/info/metamask-snap" - } - }, - "versions": { - "1.0.2": { - "checksum": "OkAjkpv19JYsVYR/v+bEZOw46kdk6ILAXRrAEqkdqPg=" - } - } - }, - "npm:@l3mbda/metamask-snap": { - "id": "npm:@l3mbda/metamask-snap", - "metadata": { - "author": { - "name": "L3MBDA", - "website": "https://l3mbda.com/" - }, - "category": "notifications", - "description": "This Snap enhances 🦊 MetaMask with the functionality of L3MBDA. It enables you to create Oracles and receive alerts right in your browser!\n\nAfter installing the Snap, please visit the website to connect with MetaMask.", - "name": "L3MBDA Alerts", - "screenshots": [ - "./images/@l3mbda/metamask-snap/1.jpg", - "./images/@l3mbda/metamask-snap/2.jpg", - "./images/@l3mbda/metamask-snap/3.jpg" - ], - "sourceCode": "https://github.com/l3mbdaorg/metamask-snap", - "summary": "Get browser notifications.", - "support": { - "contact": "mailto:snap@l3mbda.com", - "faq": "https://l3mbda.com/integrations", - "knowledgeBase": "https://l3mbda.com/guides" - }, - "website": "https://l3mbda.com/integrations" - }, - "versions": { - "1.0.4": { - "checksum": "gL54Dj6ndVt6Ky+s2HukMN+ke6QXe789qYGNAyyiKFc=" - } - } - }, - "npm:@leapwallet/metamask-cosmos-snap": { - "id": "npm:@leapwallet/metamask-cosmos-snap", - "metadata": { - "audits": [ - { - "auditor": "Sayfer", - "report": "https://github.com/MetaMask/snaps-registry/files/12544468/Sayfer.-.2023-08.Penetration.Testing.Report.for.LeapWallet.Snap.-.Updated.pdf" - } - ], - "author": { - "name": "Leap", - "website": "https://www.leapwallet.io/" - }, - "category": "interoperability", - "description": "Securely manage keys, connect to Cosmos dapps, and sign transactions.\n\nAfter installing the Snap, visit the website to connect with MetaMask and start using the Snap.", - "name": "Cosmos Wallet", - "screenshots": [ - "./images/@leapwallet/metamask-cosmos-snap/1.png", - "./images/@leapwallet/metamask-cosmos-snap/2.png", - "./images/@leapwallet/metamask-cosmos-snap/3.png" - ], - "sourceCode": "https://github.com/leapwallet/cosmos-metamask-snap", - "summary": "Securely manage keys, connect to Cosmos dapps, and sign transactions.", - "support": { - "contact": "https://leapwallet.notion.site/Leap-Cosmos-Wallet-Support-ba1da3c05d3341eaa44a1850ed3260ee", - "faq": "https://leapwallet.notion.site/Leap-Cosmos-Wallet-Support-ba1da3c05d3341eaa44a1850ed3260ee#b9f076f6aeb947818b449a058cd2967b" - }, - "website": "https://cosmos.leapwallet.io/snaps" - }, - "versions": { - "0.1.17": { - "checksum": "CLwZocaUEbDErtQAsybaudZDJq65a8AwlEFgkGUpmAQ=" - }, - "0.1.18": { - "checksum": "zwTU57HXUX94fMIYhLMfYxAK/pGRwI0Dqao76/BqWZk=" - }, - "0.1.21": { - "checksum": "O8AnRrDyQolfSUSxK7uZyf8GEK3KmF4+UE3Gx1uAr4M=" - } - } - }, - "npm:@liquidlink-lab/iota-metamask-snap": { - "id": "npm:@liquidlink-lab/iota-metamask-snap", - "metadata": { - "audits": [ - { - "auditor": "Sayfer", - "report": "https://sayfer.io/audits/metamask-snap-audit-report-for-liquidlink/" - } - ], - "author": { - "name": "LiquidLink", - "website": "https://www.liquidlink.io/" - }, - "category": "interoperability", - "description": "After installing the Snap, you can visit the IOTA Snap website https://snap.liquidlink.io/ and generate an IOTA address directly using MetaMask. Then, you can receive, send, and manage assets, as well as interact with DeFi protocols on the IOTA network.\n\nDevelopers can use the IOTA Snap SDK to integrate with the frontend, enabling existing web interfaces to support MetaMask-based signing.\n\nDemo video: https://www.youtube.com/watch?v=pi5QiGYrE08", - "name": "Iota", - "sourceCode": "https://github.com/Liquidlink-Lab/iota-metamask-snap", - "summary": "Interact with IOTA on-chain assets and perform digital signatures", - "support": { - "contact": "mailto:liquidlink.io@gmail.com", - "faq": "https://github.com/Liquidlink-Lab/iota-snap-package-main/blob/main/FAQ.md" - }, - "website": "https://snap.liquidlink.io/" - }, - "versions": { - "0.0.14": { - "checksum": "3UCnqaTEozFtbLCeQEI0vdF62N6ShDpYrcev+Gk/arI=" - } - } - }, - "npm:@massalabs/metamask-snap": { - "id": "npm:@massalabs/metamask-snap", - "metadata": { - "audits": [ - { - "auditor": "Sayfer", - "report": "https://sayfer.io/audits/metamask-snap-audit-report-for-massa/" - } - ], - "author": { - "name": "Massa Labs", - "website": "https://massa.net/" - }, - "category": "interoperability", - "description": "Massa Snap is your gateway to the Massa ecosystem, offering a seamless and user-friendly way to interact with the innovative Massa blockchain directly from MetaMask. With this Snap, you can:\n\n- Send and receive MAS tokens effortlessly.\n- View transaction history and account balances.\n- Interact with Massa Smart Contracts.\n\nAs the Massa ecosystem continues to grow, more dApps will integrate with the Massa Snap to enhance its functionality. The first dApp already compatible is Syntra, a cutting-edge application powered by Massa’s autonomous smart contracts. Syntra simplifies token scheduling, enabling automated and seamless transactions for tipping content creators, managing token vesting, and more.\n\nFuture integrations will expand the Snap’s capabilities, allowing users to:\n\n- Engage with MRC20 tokens and NFTs.\n- Deploy and manage smart contracts.\n- Buy and sell rolls directly within MetaMask.\n\nStay tuned as more dApps and features are integrated into the Massa Snap, further connecting you to the ecosystem.\n\nGet started with these resources:\n\n- Massa Documentation: Learn about Massa’s features and developer tools: https://docs.massa.net\n- Massa Ecosystem Apps: Explore decentralized services and apps: https://massa.net\n\nWhy Massa?\nThe Massa blockchain combines the scalability of BlockDAG, autonomous smart contracts, and fully decentralized web capabilities, making it a revolutionary platform for developers and users alike. Start your journey with Massa Snap for MetaMask today and be part of this evolving ecosystem!", - "name": "Massa", - "sourceCode": "https://github.com/massalabs/metamask-massa", - "summary": "Massa smart wallet", - "support": { - "contact": "https://discord.com/invite/massa", - "faq": "https://docs.massa.net/docs/build/wallet/metamask-snap#faqs", - "knowledgeBase": "https://docs.massa.net/docs/build/wallet/metamask-snap" - } - }, - "versions": { - "1.2.1": { - "checksum": "ZP9Nh4+vhw1Lv3ReNrzKUMQfNsK/SRlYXy43C7VyPl4=" - } - } - }, - "npm:@mendi-finance/alert-snap": { - "id": "npm:@mendi-finance/alert-snap", - "metadata": { - "author": { - "name": "Mendi Finance", - "website": "https://mendi.finance/" - }, - "category": "notifications", - "description": "Enables Mendi Finance users to set custom alerts based on their preferred borrow limit to receive notifications when their positions are above the preferred threshold.\n\nLearn more: https://mendi.finance/snap/", - "name": "Mendi Finance Liquidation Alert", - "screenshots": [ - "./images/@mendi-finance/alert-snap/1.png", - "./images/@mendi-finance/alert-snap/2.png", - "./images/@mendi-finance/alert-snap/3.png" - ], - "sourceCode": "https://github.com/mendi-finance/metamask-alert-snap", - "summary": "Receive timely notifications to stay on top of borrowing.", - "support": { - "contact": "https://discord.com/invite/G3vWy8cbnK", - "faq": "https://docs.mendi.finance/mendi-snap/faq" - }, - "website": "https://mendi.finance/snap" - }, - "versions": { - "1.0.1": { - "checksum": "yX7A0MbM0e2ZO9KINXuWo8dibyuzKrLZ8zyYGWyOcXw=" - } - } - }, - "npm:@metamask/background-events-example-snap": { - "id": "npm:@metamask/background-events-example-snap", - "metadata": { - "hidden": true, - "name": "Background Events Example Snap" - }, - "versions": { - "1.0.0": { - "checksum": "hErp73GYyo7PY+AZUPmuL94+EgeKfPJeUVq2UURgfQU=" - } - } - }, - "npm:@metamask/bip32-example-snap": { - "id": "npm:@metamask/bip32-example-snap", - "metadata": { - "hidden": true, - "name": "BIP-32 Example Snap" - }, - "versions": { - "0.35.0-flask.1": { - "checksum": "nSL22rF7OWVCYzaj9B+7tUgRWCw8oMfi2r0utoJH6rg=" - }, - "0.35.2-flask.1": { - "checksum": "cOJYxa17Mn160j/YH8887WOpGFVl0N0c2TK4WBfpdh0=" - }, - "0.37.2-flask.1": { - "checksum": "9zlU1HnaCKIKeIYLWAZMpKKGhniZz3uCfL6lMi6HxmU=" - }, - "0.37.3-flask.1": { - "checksum": "q09kHX1Yh6y5o3ttFwB+ZVM6FOElyy3qqvoyYCWHiSQ=" - }, - "1.0.0": { - "checksum": "J3MpNxvOJdEwGq+zeIHh05yOsAoS8q2AqlTT5PLAkf8=" - }, - "2.0.1": { - "checksum": "4N4ZT8QBuqMJrLYXBTAN7DtUXxerR1HXD+89p/8Vurw=" - }, - "2.1.0": { - "checksum": "3PiDzz7GdMsESG/6ZAJqFjn2Li8oaCvw2i3k+IFooXs=" - }, - "2.1.1": { - "checksum": "lqz9XyQ0fC81A2LIRKSUInXBJEv26N9+8UIT5HcGG8E=" - }, - "2.1.2": { - "checksum": "NVydltk67wE3e1uAxlmal62P2EcP+cMfsNZ66EyJ7O4=" - }, - "2.2.0": { - "checksum": "xw62rD8He0Lm1dDr3RfVoycp0PTWauVCclc8JbpwofU=" - }, - "2.2.1": { - "checksum": "PxNHa0ebJ1qA/LXiY4vTzUsBKNl3rdfbHwg198YtOH4=" - }, - "2.3.0": { - "checksum": "EYj8a1CyBIrzcSGQ6EY9Ny6Q+azLzobzU7agR7CKisA=" - } - } - }, - "npm:@metamask/bip44-example-snap": { - "id": "npm:@metamask/bip44-example-snap", - "metadata": { - "hidden": true, - "name": "BIP-44 Example Snap" - }, - "versions": { - "0.37.2-flask.1": { - "checksum": "1wPZsEPMVO88H3Lt1XBqz9BiKT3QV1ruIcqJQN9bLNY=" - }, - "0.38.0-flask.1": { - "checksum": "greQKnNTgVqeKdtbMiyIdng09Jy/u6bK2ctZkzy0hdY=" - }, - "0.38.1-flask.1": { - "checksum": "w3Sp0Y7HB+uqHgv1L6S+V+Q7TW10/mUD7+jbbMUgz0g=" - }, - "1.0.0": { - "checksum": "JKHoUebJ9c2urnFcUO06lKbtCcAOW3CaRGSImdpDG34=" - }, - "2.0.1": { - "checksum": "6y7H6/XXdUTd0neTWUflYhBSMEHWA9mKF15hemGju5s=" - }, - "2.1.0": { - "checksum": "/o2NevZCcocYbJaDzVkOJFDCozfyUDVYhv+EUJoJBGY=" - }, - "2.1.1": { - "checksum": "G88Poc8uX2NVEqWnuOHZhEpt8TzD6fhOXbXZj2JGeSQ=" - }, - "2.1.2": { - "checksum": "cGgUQlMw+WDBaoWHvG4s/xaZO47vBrEp9sa+4DhBmTA=" - }, - "2.1.3": { - "checksum": "Nb4y6u121k+rnDRGblkG77S7s9IFt1TZTQeSZOXNdyY=" - }, - "2.2.0": { - "checksum": "7ITCfMBWovBJmXIqrHSIsO+DvhSI52fO07JRevLMIkw=" - } - } - }, - "npm:@metamask/bitcoin-wallet-snap": { - "id": "npm:@metamask/bitcoin-wallet-snap", - "metadata": { - "hidden": true, - "name": "Bitcoin" - }, - "versions": { - "1.8.0": { - "checksum": "YA+qmj7Q3fB1UcO5A2d3UekTzVHuY/YuMhrmfynHg20=" - } - } - }, - "npm:@metamask/client-status-example-snap": { - "id": "npm:@metamask/client-status-example-snap", - "metadata": { - "hidden": true, - "name": "Client Status Example Snap" - }, - "versions": { - "1.0.1": { - "checksum": "NTV+uXRXbL4OA/RpOHRUTjfnHywIl/6Z+qLi4ikQSc8=" - }, - "1.0.2": { - "checksum": "6jscZ6A0qMZUnPm6AxpTHXY++XeNFtkT9Pr1OkjSTyI=" - }, - "1.0.3": { - "checksum": "fyBeeuYGaIpBnxm6MVoRe19JR+8QiIeFtJM+nlOWnsU=" - } - } - }, - "npm:@metamask/cronjob-duration-example-snap": { - "id": "npm:@metamask/cronjob-duration-example-snap", - "metadata": { - "hidden": true, - "name": "Cronjob Duration Example Snap" - }, - "versions": { - "1.0.0": { - "checksum": "vzzpBIX/vOKbSw6x8JXHzMMeBe8lpOhaZi0KSZk9uOY=" - } - } - }, - "npm:@metamask/cronjob-example-snap": { - "id": "npm:@metamask/cronjob-example-snap", - "metadata": { - "hidden": true, - "name": "Cronjob Example Snap" - }, - "versions": { - "0.37.2-flask.1": { - "checksum": "M8rlf48QIGa4Dk8X/EM9OgQUwrhvCpQyrJkv8FMVYkM=" - }, - "0.38.0-flask.1": { - "checksum": "2X5dKpZLlpO/b3sL2FLCLAjGvsamMh4jP/HRkwWeknI=" - }, - "0.38.1-flask.1": { - "checksum": "uMXNv7TEb5zPsMIS8kfcX5HbvPdjIiUdj3zP05DuV+w=" - }, - "1.0.0": { - "checksum": "rvezXlgNZfZl22VCm9paR8ZQBkEW6MMhsjHJsZ88mgU=" - }, - "2.0.1": { - "checksum": "kSNWxUiNr5CRJD/TtNRUWLrFuvA8wY2hyRuSMRm6k7Y=" - }, - "2.1.0": { - "checksum": "5QcNsKW2OCV+Oi5jv0adqdorGJlrRXk6b2N8ggNKfJg=" - }, - "2.1.1": { - "checksum": "Lkw2STqcJn6zw3u7uB7QTBjVc539gv/RFdNL6DqAE0Q=" - }, - "2.1.3": { - "checksum": "J8ekYCK9+rqN9d6qBw85RomNqdXMbkB9s1eHnQkaABs=" - }, - "2.1.4": { - "checksum": "52lYQY0bh6ZtKx4ZNtQNO17ustuhQBewko/WzQkS68A=" - }, - "2.2.0": { - "checksum": "B0eoXOpzU2Cts5d42w11AdvgClmS/une3zXQ9vHnJgU=" - }, - "3.0.0": { - "checksum": "p0EjILZJvCZE2KZSlJ8e5q96ODsV/heJHp2nmUx7DG8=" - } - } - }, - "npm:@metamask/dialog-example-snap": { - "id": "npm:@metamask/dialog-example-snap", - "metadata": { - "hidden": true, - "name": "Dialog Example Snap" - }, - "versions": { - "0.37.2-flask.1": { - "checksum": "JTisnR3icqN8BSTKQEhgx3unm8JbSHeyJ2nM29arcrE=" - }, - "0.38.0-flask.1": { - "checksum": "ovAw6BvnbeNMcF3DwmhqKzYSEBOo1sxYRi6kDDv3WdQ=" - }, - "0.38.1-flask.1": { - "checksum": "slwFtkG5J8ldBG0JUL3EvAW5+0NGKERXcXdlIyCImqM=" - }, - "1.0.0": { - "checksum": "Tcm1oNE+DXYHjyz6Eeb1+SycfrpMQnEpJv+0++BoZss=" - }, - "2.0.1": { - "checksum": "yEpBUyy0QVw6DUsxDh33Lz4KuVN6Vy98yNDLVZ2NkXA=" - }, - "2.1.0": { - "checksum": "gBlp/vQeFAxBYBB+ZtKp544lvphaUGnPdlZT3TcRYtM=" - }, - "2.2.0": { - "checksum": "wX4pqJ2RkmZdllC1iVnHP4uE4sWiqTb6GWXNyEUDnCA=" - }, - "2.2.1": { - "checksum": "2omN9u/lT2cXPZ3O6j4wG3W3HBn/6No9JxH4ncqUG6M=" - }, - "2.3.0": { - "checksum": "Os7gpMBdr9ZYsLGc5xNCSgjVZ4lAkm0qXy7Nsfytvxs=" - }, - "2.3.1": { - "checksum": "v2oIs3UY5j/3dXW5eRh3rg7Tv5qcVzHon7qzPQeRsAE=" - } - } - }, - "npm:@metamask/error-example-snap": { - "id": "npm:@metamask/error-example-snap", - "metadata": { - "hidden": true, - "name": "Error Example Snap" - }, - "versions": { - "0.37.2-flask.1": { - "checksum": "bO6Nz4mmWwLZodzNJIzt9Fw9V4IV5luD/vFjMA9bNZQ=" - }, - "0.38.0-flask.1": { - "checksum": "WXWIhv3YhG8JuPwZ1SnTgFv9ZaBNAKOermQ5bWU8a1Q=" - }, - "0.38.1-flask.1": { - "checksum": "fRj3eRk7NIBp3Bd/Ji3rCIcMQy65psytCBFIQFo2G6s=" - }, - "1.0.0": { - "checksum": "Wa5LuPosJ5nAXu55PlzY9nk41VRuVmo3LcOdLaIbjq0=" - }, - "2.0.1": { - "checksum": "8/0lDDnckpXRXdIVPnWY1GKqYFbg5C0RplaiQOEfZqQ=" - }, - "2.1.0": { - "checksum": "ov5mgh9BqfOJ9kcgQ33BokQmf2v6+GjIshAqrBFIncM=" - }, - "2.1.1": { - "checksum": "uH2l5R13JDUJZGxdcOB6mDDSSWCji2MDpYC9tOYBd7g=" - }, - "2.1.2": { - "checksum": "6sJsnsPeGr45rdXrBtKhdNhbqBJhatSFzMWHP8gcWQ0=" - }, - "2.1.3": { - "checksum": "yBkP0yx/0fYCe3r3hglrIJJAXuxTgMpCsR0HMJ/KV7o=" - } - } - }, - "npm:@metamask/ethereum-provider-example-snap": { - "id": "npm:@metamask/ethereum-provider-example-snap", - "metadata": { - "hidden": true, - "name": "Ethereum Provider Example Snap" - }, - "versions": { - "0.37.2-flask.1": { - "checksum": "iqnHsz3ns+0TpnqmZOkVen+ySQxXDhb7LU6SWWpksB8=" - }, - "0.38.0-flask.1": { - "checksum": "02i/AryMkfxh6jeOXWKjyaBCLCzaKXADhRc/dWfsmEg=" - }, - "0.38.1-flask.1": { - "checksum": "+C2UG75icr02O2XPKLPaYAba1KsKg12qQDOMWmJ1li0=" - }, - "1.0.0": { - "checksum": "CwJGR0Jll1DjOt3kpxD6l4utazQFokN95bqWCOToFKI=" - }, - "2.0.1": { - "checksum": "6Qd5Rh+dmhKWgsqGRiUXAqmefdqy5UNKL67TJQ9nkBA=" - }, - "2.1.0": { - "checksum": "h2kl7pefimDcWYtzO1uJypryY/R1DMY1r8srOcf7vEo=" - }, - "2.1.1": { - "checksum": "m2nHsw+2Ofob0EtfxjAWZjoXy0ZSMbUvr7xZmtp5p90=" - }, - "2.1.2": { - "checksum": "t6qrFcAL9Hw/7r7/Q4q1rSrFQ1FdWG+JaTDnLpBv9DM=" - }, - "2.1.3": { - "checksum": "pSiTZjO5nox8zYh+fQtQfZLp5HwbxKByu+WOo+tAAH0=" - }, - "2.2.1": { - "checksum": "8f7Fo6y40+L0x+KHkDCq2wjEMrkTL+L6e2NSNBZYVLA=" - }, - "2.3.0": { - "checksum": "7i20r0cCFwMESzBcTMgRNOt82AjwHneiM6LtD7vXCGw=" - }, - "2.4.0": { - "checksum": "I4+h3lL7U70t4ZHZagAuECK8sYOKcsiqowBM52gLd/8=" - }, - "3.0.0": { - "checksum": "3KRQiL+BkDxdEzEIabxnfGZIdHP/1T7er0hdCh75SfU=" - } - } - }, - "npm:@metamask/ethers-js-example-snap": { - "id": "npm:@metamask/ethers-js-example-snap", - "metadata": { - "hidden": true, - "name": "Ethers.js Example Snap" - }, - "versions": { - "0.37.2-flask.1": { - "checksum": "C3XZa2lDh8LWVZNQmn3Ns/ZByyZTFz7zznClGMen4Yg=" - }, - "0.38.0-flask.1": { - "checksum": "P6Tvtbs6qn77XI7xQVbBNmd1Sp8WRdAfFrGpLQODabA=" - }, - "0.38.1-flask.1": { - "checksum": "ydfyZetMKS1Z6iJEgaC51yZ2kPdCAwnciuM0TC9oDBs=" - }, - "1.0.0": { - "checksum": "QY3seNbkU81kQ25hpBICjcMUK41iI0tYUlwqsiWbVCo=" - }, - "2.0.1": { - "checksum": "mTaBDVniZbs+DC4B0vWa/MkK31FmpQAg7GS+GvRYHk8=" - }, - "2.1.0": { - "checksum": "mwQVVwVq4B6u9x7VMmCQ2w2bREK0sWHcK+siAjs7e+c=" - }, - "2.1.1": { - "checksum": "N9i27+suBYwVHDzqQGtvafY55vHNCkcYAL7Fuw6wOz0=" - }, - "2.1.2": { - "checksum": "dHiE+9mYVkqNRma5GsZprTawv/bDUzcdbeciRzCmkhQ=" - }, - "2.1.3": { - "checksum": "3ec/uMXW2lAaVxSJJRjsAmQ1oSqVJpHUkF4i4YTa9Gk=" - } - } - }, - "npm:@metamask/file-upload-example-snap": { - "id": "npm:@metamask/file-upload-example-snap", - "metadata": { - "hidden": true, - "name": "File Upload Example Snap" - }, - "versions": { - "1.0.1": { - "checksum": "z4vMdrs40TdVE+vk7sPruIvWi0q669V+p3jc6WQIib4=" - } - } - }, - "npm:@metamask/get-entropy-example-snap": { - "id": "npm:@metamask/get-entropy-example-snap", - "metadata": { - "hidden": true, - "name": "Get Entropy Example Snap" - }, - "versions": { - "0.37.2-flask.1": { - "checksum": "3ngy5lgb166/id89vLEsA10MjtHAbyWoCM/y2foLyMs=" - }, - "0.38.0-flask.1": { - "checksum": "mtAscMuF0zF1TIVUBmoSc/Vc1xP2vQR7GCw+fIx08vE=" - }, - "0.38.1-flask.1": { - "checksum": "RftaRiY4VJewuY8jTQPrtxJ4oqBK9h2E4bTMiNQJkgE=" - }, - "1.0.0": { - "checksum": "jz0qC13DGpmyhERi+4iQRk1EpogtRkOd5cE5T8uKb6I=" - }, - "2.0.1": { - "checksum": "8q8+u8jJwUzxaMTpOTi/6l2edNsWnIVOq6cNod3s8Fw=" - }, - "2.1.0": { - "checksum": "adrLao09LcOWwhlW+YfcJOdGyHgb4ap2JwhKCl+HWkM=" - }, - "2.1.1": { - "checksum": "H/SD72HvzJOGI687mfl8QLGrMyDIgYjEm45fmmWuZrU=" - }, - "2.1.2": { - "checksum": "dTL+fLvEFKI0vtcRZ0ZGxU2menzmWl3rPuOwnsqNMIQ=" - }, - "2.1.3": { - "checksum": "OYSzxQ1qHApZ2MHWvQ/XYWRwKJptpyVQ5VgyhgFEmmo=" - }, - "2.2.0": { - "checksum": "vUiybKJcdxY44IuamgNJQadSEl+o9n152JyZ84jGc7w=" - } - } - }, - "npm:@metamask/get-file-example-snap": { - "id": "npm:@metamask/get-file-example-snap", - "metadata": { - "hidden": true, - "name": "Get File Example Snap" - }, - "versions": { - "1.0.1": { - "checksum": "BcmD1BGF05yH9qRi1bj8N6I2diXAyfqjmVjiHMGXIRg=" - }, - "1.1.0": { - "checksum": "0LYVuy8axHCCii9kBjsl6e0o/NNGe3d2hFysfOJzDYc=" - }, - "1.1.1": { - "checksum": "jLIJlUMNJxBPdD7VXu+lauJFMbrlZ7Ctpa3CG48aB+I=" - }, - "1.1.2": { - "checksum": "+jhsvzvvvNA8Gf1d8zGZT0de5KpYoZsLfiz0EowMK0g=" - }, - "1.1.3": { - "checksum": "aTuxZCIXcq/FP7XjSoBY4e4pHQbuoDJ1U6FUe/rAfiQ=" - } - } - }, - "npm:@metamask/get-locale-example-snap": { - "id": "npm:@metamask/get-locale-example-snap", - "metadata": { - "hidden": true, - "name": "Get Locale Example Snap" - }, - "versions": { - "0.38.1-flask.1": { - "checksum": "7u3+H0DxS/50QglAzBGJptTwr1axVoUErCiXeL4eevY=" - }, - "1.0.0": { - "checksum": "XY2MC1SyQ2H5oBn47Tu9HSB/+pNFzYkNXVFSXY1jHco=" - }, - "2.0.1": { - "checksum": "ttZu/V293nj2AVppqkocM+HMGuUmslWpiW18XrMovl8=" - } - } - }, - "npm:@metamask/home-page-example-snap": { - "id": "npm:@metamask/home-page-example-snap", - "metadata": { - "hidden": true, - "name": "Home Page Example Snap" - }, - "versions": { - "1.1.0": { - "checksum": "EhHC32ZDU+SWvnUAcm2ibsZdqfwlr4h+mAvmCqyPPK0=" - }, - "1.1.1": { - "checksum": "6wP6Hm3oTFQcO7CU9pj+LB0WvzU1dO1H3D9FRwieyo8=" - }, - "1.1.2": { - "checksum": "+RC3pwNreHxiMjByPmX0vglQye6wRfdfqC3/Y20tnc8=" - }, - "1.1.3": { - "checksum": "emnlXHvrhsGBMi/y1IPhiQPX9ogHmjmOU/iujBu5GB8=" - } - } - }, - "npm:@metamask/images-example-snap": { - "id": "npm:@metamask/images-example-snap", - "metadata": { - "hidden": true, - "name": "Images Example Snap" - }, - "versions": { - "1.1.0": { - "checksum": "SxUO9T9xJ/R+jHURdjaLvy0Wfq+6+7CkovvO0CB0wxY=" - }, - "1.1.1": { - "checksum": "kbuZtLjZiY9+HOtc7DIpuGUjMes2id67dES3Ze/Z3dY=" - }, - "1.2.0": { - "checksum": "7Wzg0p7PiQ5Q2U8VqAbkwj+Ep0jbETFeu7E/oe9DgUo=" - } - } - }, - "npm:@metamask/insights-example-snap": { - "id": "npm:@metamask/insights-example-snap", - "metadata": { - "hidden": true, - "name": "Insights Example Snap" - }, - "versions": { - "0.37.2-flask.1": { - "checksum": "jGSkiBXrmxd2lWtUtYQUni7gl2bGL4Dsep8pLbmJfzM=" - }, - "0.38.0-flask.1": { - "checksum": "7GvuWK7PaCWGnZx9MCrE2xttCOFsDzzIV2B4SPYCSDQ=" - }, - "0.38.1-flask.1": { - "checksum": "9leaWB2VbcMzyGfUSwOlBRnz0m94AwAE74011uLthfY=" - }, - "1.0.0": { - "checksum": "8V8IDFAjnJro0x76n9qcAEHMQiWJXGEB33R8PzICy3E=" - }, - "2.0.1": { - "checksum": "pwZ8HNdAGVlykuChlpCgDbAFLWIp2x0AiwpTwsvlYa0=" - }, - "2.1.0": { - "checksum": "Kfj87CBq4qcjYQywETQ4ORayuEjZO+QeQWJ3aQnZgUA=" - }, - "2.2.0": { - "checksum": "AVioFJ3NkshQl4HQhihpu+w+uq5I5QFn8uXZjgfFp8I=" - }, - "2.2.1": { - "checksum": "tx2+S+SWVNjrs5O3YbVWBN0TsWwf/uw5u52yBPpIzwU=" - }, - "2.2.2": { - "checksum": "76NEiG+oW2yBCnvjY9TAjkitGYBfZ9hipf+i2l2e8uE=" - }, - "2.2.3": { - "checksum": "oKKYF+AERJAyRBABHRf4nsfQ6IrhKele+Fei+JXxGzA=" - } - } - }, - "npm:@metamask/interactive-ui-example-snap": { - "id": "npm:@metamask/interactive-ui-example-snap", - "metadata": { - "hidden": true, - "name": "Interactive UI Example Snap" - }, - "versions": { - "2.0.0": { - "checksum": "Bzph8qHiipWZxvfPRRIF8uTNn/B6vsru5Y/iM4oncuo=" - }, - "2.1.0": { - "checksum": "Ko9xBAU/AMTQmdJHIKVaXEvIMRKil4LMaFj+3gS3eZo=" - }, - "2.2.0": { - "checksum": "gAlUmrpqDhqJ7Suu3Fpr7Do1y7MFEi7qR22uyjhRDb8=" - }, - "2.2.1": { - "checksum": "uOuMArCEwmOmCl0Bl1WnRRm+DKcq0Y+O+5n8Z1KBMr8=" - }, - "2.3.0": { - "checksum": "1sEjG59gm8iGvsIT9oa2WLRjcr7XQz5k6gkNXjBvuPg=" - }, - "2.4.0": { - "checksum": "I+kz7pvB5o7oyC/2z5LnURYG7TrTHR9+oWueIcsuDyA=" - }, - "2.5.0": { - "checksum": "BkV0BL502gxdAXneGE5PZkAvETCUkHlItX3bka/LznA=" - } - } - }, - "npm:@metamask/json-rpc-example-snap": { - "id": "npm:@metamask/json-rpc-example-snap", - "metadata": { - "hidden": true, - "name": "JSON-RPC Example Snap" - }, - "versions": { - "0.37.2-flask.1": { - "checksum": "wMGE+zthQo8NHhhFulqYOOrdxtCQkveQt8MgZIAQSUA=" - }, - "0.37.3-flask.1": { - "checksum": "Vjp8paYaHuaEZzNA1KmLTSEHNvO5BxO5g8m58+92gDY=" - }, - "1.0.0": { - "checksum": "gKdBa0h+SZKNu6WFHFps5W1ly7WNTU2lrrOsyy7Z7VU=" - }, - "2.0.1": { - "checksum": "qxtyrratXpKUDXIzpfNCXNxQTarE4o984cXSV2sZXq8=" - }, - "2.1.0": { - "checksum": "Jy7ti30LfK+D/PnqwMP0gfSv4wl90uD/7uw4CjwqdzQ=" - }, - "2.1.1": { - "checksum": "V4E+vD5xcCFOe83roTieTbZVXxH8byN7CJqCTCTBgqU=" - }, - "2.1.2": { - "checksum": "lhPQ91mCD7n9r0yiA/KxP/olypotYlAbGauZTTUHh2w=" - }, - "2.1.3": { - "checksum": "loHXuvuW/Zb4kMSSdekMiV20UVtxXYyoDC0iRZbV274=" - } - } - }, - "npm:@metamask/jsx-example-snap": { - "id": "npm:@metamask/jsx-example-snap", - "metadata": { - "hidden": true, - "name": "JSX Example Snap" - }, - "versions": { - "1.1.1": { - "checksum": "RKQvu6SSgoRBULQF/tZU7VbTCDgsy6ud6uFPTEeCs7w=" - }, - "1.2.0": { - "checksum": "dXRb2xwCuTTo6gNaykoZsF44tnzzLKM51Os2gT3uRgE=" - }, - "1.2.1": { - "checksum": "3U9+Lvmmdc9JRmaHLcwGgi9lpnaj25joBF9+zXY4644=" - } - } - }, - "npm:@metamask/lifecycle-hooks-example-snap": { - "id": "npm:@metamask/lifecycle-hooks-example-snap", - "metadata": { - "hidden": true, - "name": "Lifecycle Hooks Example Snap" - }, - "versions": { - "0.38.0-flask.1": { - "checksum": "4DHXPu5lFAka46ohpDpyfwcSjT73s+nnZnO8PrVEr18=" - }, - "1.0.0": { - "checksum": "TszJ60KeknYWFD5tY/w/PMOk+cA5eeeaAkzyYbPqwYw=" - }, - "2.0.1": { - "checksum": "n5crYirSmJZ0adrdl7jvw/0E0qd0YmpwWUq6BXz+MTc=" - }, - "2.1.0": { - "checksum": "UiUa8rv9kqEP4DEs59e7ctxlOmv0fc39HXxU96FAozc=" - }, - "2.1.1": { - "checksum": "HsMiA68gfvszwts1V24kUURGhMk2iq/Vy0ALXqnA7lE=" - }, - "2.1.2": { - "checksum": "BXlcBtRno7GhLlq0cqal08ALFJa9G+DP/a1Ad7cTUKY=" - }, - "2.1.3": { - "checksum": "TSu0FIqVXvJG6WzqtKPx5kN2fjveQ8EypKCk/jAShmM=" - }, - "2.2.0": { - "checksum": "5tlM5E71Fbeid7I3F0oQURWL7/+0620wplybtklBCHQ=" - }, - "2.3.0": { - "checksum": "s2CUQ+L8GuVTLahEgApRNp8gEdH3Fv7TAvu+9+Mmx54=" - } - } - }, - "npm:@metamask/localization-example-snap": { - "id": "npm:@metamask/localization-example-snap", - "metadata": { - "hidden": true, - "name": "Localization Example Snap" - }, - "versions": { - "1.1.1": { - "checksum": "CZ9MGbtCRoCDFdTnXUqvCTQ8EDyLIShPZx+1McdEmRc=" - }, - "1.1.2": { - "checksum": "yh6gQI6x50HN+mte35DVEukn9IdXol9/3oiN1jwtl1Y=" - }, - "1.1.3": { - "checksum": "vO4Ep4ZPZCfGukm9uw9WvvoMoojZ77/3Q2ajMNNCHQA=" - }, - "1.1.4": { - "checksum": "KHrWdamfUEJ10ak4/oE/C4/oTO9BRnLSLjOiS9RFlHw=" - } - } - }, - "npm:@metamask/manage-state-example-snap": { - "id": "npm:@metamask/manage-state-example-snap", - "metadata": { - "hidden": true, - "name": "Manage State Example Snap" - }, - "versions": { - "0.37.2-flask.1": { - "checksum": "RcjOYLrBT5ZBOqHxXr/+g2L6hgqRALFCco+P/z9HvIs=" - }, - "0.38.0-flask.1": { - "checksum": "d4qYxIOdz869tdC5v6C8JzkS2fHRyJ33OeH3sqoUUEw=" - }, - "0.38.1-flask.1": { - "checksum": "mK8k9cUJX4aMrC0wnljGS7H9kDXY5h8atsu+Av3QyYI=" - }, - "1.0.0": { - "checksum": "56wgGzkHUCLNO3MxSciVCRIfy67gmEfBW6MeB0rMe5Q=" - }, - "2.0.1": { - "checksum": "tWayblKplxrTlRen2tNpos5hXOfAFrXLdmt+gyHwGyc=" - }, - "2.2.0": { - "checksum": "7BU7O6zjdNfdXzdxaMrMWkBasBATeJdW2gvzaOKn4ik=" - }, - "2.2.1": { - "checksum": "92szqCrEqmxOcL+MVbmPrOxJmC8jR5U4iKiVViZBupY=" - }, - "2.2.2": { - "checksum": "f9PoXGMUUbGJtHHvKt715/pvWiHR3KogkfWAV07itaM=" - }, - "2.2.3": { - "checksum": "5FNiUEpsrVxG3rTbJvhx/IBZ/jIYYu0ZbnCX9A6dAPE=" - }, - "3.0.0": { - "checksum": "9n3dGpYT/s9CwkwfGTkOgMA8jvrkLg9KVP2Y/KsrWkg=" - } - } - }, - "npm:@metamask/multichain-provider-example-snap": { - "id": "npm:@metamask/multichain-provider-example-snap", - "metadata": { - "hidden": true, - "name": "Multichain Provider Example Snap" - }, - "versions": { - "1.0.0": { - "checksum": "jfHLDvDp6aQQ0dIfa6J0oSMURJ+8qwMMC2VoLrYTEWQ=" - } - } - }, - "npm:@metamask/name-lookup-example-snap": { - "id": "npm:@metamask/name-lookup-example-snap", - "metadata": { - "hidden": true, - "name": "Name Lookup Example Snap" - }, - "versions": { - "3.1.0": { - "checksum": "NiLwtU8hXtIh2Z53Zf8PiuRasUjJolMfEB+dMAUfxqk=" - }, - "3.1.1": { - "checksum": "xk7O5itVsuV3Dfldq3rI3WgggHa3z7HX7e17jzheE8w=" - }, - "3.1.2": { - "checksum": "SRmLTMVKJvWHyVH5H3HhvMz0iQOWn4St4/9xX8Sv1EM=" - } - } - }, - "npm:@metamask/network-example-snap": { - "id": "npm:@metamask/network-example-snap", - "metadata": { - "hidden": true, - "name": "Network Access Test Snap" - }, - "versions": { - "0.37.2-flask.1": { - "checksum": "WA9XsjYi5NlQGz19iXBL0R7QVfUna3GAPZmUpb81gHM=" - }, - "0.38.0-flask.1": { - "checksum": "/xrzK+LNyXfupec9dDNUM6AGROGkJzIzrnnn5++j/Z0=" - }, - "0.38.1-flask.1": { - "checksum": "YXxtxjP6SbPiDHzskryvh0QA6Hvv/FurI+GwNN8WF0U=" - }, - "0.38.2-flask.1": { - "checksum": "gietRn5VTciRfESWtWnTLKykNCZbTuIY7sRFhyTYkJI=" - }, - "1.0.0": { - "checksum": "6yhB3CDYFp1NILq/F8Y25mKCDRNdn1DjPYl8hUqd/Js=" - }, - "2.0.1": { - "checksum": "eCkaGM5/bc1MQd57cU/nBxe+d6SjH4HaI1Gzh00Hyy0=" - }, - "2.1.0": { - "checksum": "oplXlD/xpRmd5pI+oICXVnJFO6W2F2GfQ+5jrjN+1vQ=" - }, - "2.1.1": { - "checksum": "oPeY40NbUed6VM6Ex0gteyIP8dZjtiIr0J4Pca2T3/U=" - }, - "2.1.2": { - "checksum": "t4cfOsg8zpOverDV5ZdNKovQFhg2wDLZM+nYq6qmddA=" - }, - "2.1.3": { - "checksum": "+V4EDf0266FOJDTVrhQ91ZaycBruUesJqSoAzohWnO0=" - }, - "2.2.0": { - "checksum": "scw0xXWz40VXRIgwF/GbGaQRT47ydnDC/SJzT+sRKPU=" - } - } - }, - "npm:@metamask/notification-example-snap": { - "id": "npm:@metamask/notification-example-snap", - "metadata": { - "hidden": true, - "name": "Notifications Example Snap" - }, - "versions": { - "0.37.2-flask.1": { - "checksum": "C3zDF0V9lFhFymAc3UJEryLY8uJw5eR5zSHUvQCAjGY=" - }, - "0.38.0-flask.1": { - "checksum": "ATRtqsBVScH5op0YokHjsg0Sj5WjggEIJ2I1cs6OI3k=" - }, - "0.38.1-flask.1": { - "checksum": "yVIjEtJtZA6UXqh9auF2KfI2kBS3TU1kXTPKNUX+7Ms=" - }, - "1.0.0": { - "checksum": "uq9ZlrcyEVDZ3iAFoxI3j6Ocu4Pp6VVp7P+nMjVhE80=" - }, - "2.0.1": { - "checksum": "tzQoWctgT7pWpcpCLXtMetsEj+9Fvj5/v9DAaIcT9N0=" - }, - "2.1.0": { - "checksum": "7B1tbfkFvZZrfCQ6BOE13svMJpUnCAz01rm8ey5N37Y=" - }, - "2.1.1": { - "checksum": "UG9pic6TiYCm/VVuVrbT6586mxjsEWXwXTGmoESR4w8=" - }, - "2.1.3": { - "checksum": "uLxnaoy3UvlSqkAVwSa1s3YRDmle0CLeeD6obROqNK4=" - }, - "2.1.4": { - "checksum": "S3wZGdkOLX7tdJYssmy+UxBXe+VuwZaNUQNqK+G3hu4=" - }, - "2.2.0": { - "checksum": "ZXgMRkK/FtEZlwVSdOC+dmP99tuBTqHx/2Mj/FNhzAg=" - }, - "2.3.0": { - "checksum": "vgZf2fdTM9fTAFroi78267SHtaEeTJLTNa/hobO22s0=" - } - } - }, - "npm:@metamask/preferences-example-snap": { - "id": "npm:@metamask/preferences-example-snap", - "metadata": { - "hidden": true, - "name": "Preferences Example Snap" - }, - "versions": { - "1.0.0": { - "checksum": "I256k2BDHu9ZRRnDVfP335n69beXXTqN/7Hlih+Jnqc=" - } - } - }, - "npm:@metamask/protocol-example-snap": { - "id": "npm:@metamask/protocol-example-snap", - "metadata": { - "hidden": true, - "name": "Protocol Example Snap" - }, - "versions": { - "1.0.0": { - "checksum": "5mGoGgmZ7RhyLQ+aNzd/H2qhQTkiirztWm399vqxPUw=" - } - } - }, - "npm:@metamask/snap-simple-keyring-snap": { - "id": "npm:@metamask/snap-simple-keyring-snap", - "metadata": { - "hidden": true, - "name": "MetaMask Simple Snap Keyring" - }, - "versions": { - "1.0.1": { - "checksum": "rBefvbSfjNsvzlhzUTNwlqk9lAecu/X7cP1ZOC/Wa2A=" - }, - "1.1.0": { - "checksum": "z53gbieRalN7oU+qY4gZgC+U9EfhbfAAnY4d8Wb5sYg=" - }, - "1.1.1": { - "checksum": "kTIqxcFUYPRiaV7etXM0HpD+fSaJw/+ePbFgjXW3Btk=" - }, - "1.1.2": { - "checksum": "euGuIXw57Wfb1sBktAhCRMd6DY8Xl07GOXOg88NF/Bk=" - }, - "1.1.6": { - "checksum": "P2BbaJn6jb7+ecBF6mJJnheQ4j8dtEZ8O4FLqLv8e8M=" - }, - "2.0.0": { - "checksum": "bFMN5hlkguPBHNaiusJPWZh6yhFnTShcY1mu0Ko5YMM=" - }, - "2.0.1": { - "checksum": "TfeKGNKMSPQqAKQ/IrnOaziMcLqC6tWSjKRWo5YHMLs=" - }, - "2.1.0": { - "checksum": "V1nc4Dr3tA6lrG2DKSmEzecmlFXsny+wcxz2SmVfJyY=" - } - } - }, - "npm:@metamask/tron-wallet-snap": { - "id": "npm:@metamask/tron-wallet-snap", - "metadata": { - "hidden": true, - "name": "Tron" - }, - "versions": { - "1.21.1": { - "checksum": "z4+3fdZhAyzb6R94sNJYeTuW/t7H48Qyuc3t72eraXw=" - }, - "1.25.0": { - "checksum": "RUgbv0GaqjyNwcbChml5Jg7ZvylzNZSGKPDBCN9MWVE=", - "clientVersions": { - "extension": ">=13.23.0", - "mobile": ">=7.70.0" - } - } - } - }, - "npm:@metamask/wasm-example-snap": { - "id": "npm:@metamask/wasm-example-snap", - "metadata": { - "hidden": true, - "name": "WebAssembly Example Snap" - }, - "versions": { - "0.37.2-flask.1": { - "checksum": "I3d7noxypEv9Szc1/MD7AIAmrgcX9YEpx1EtFoTCoWM=" - }, - "0.37.3-flask.1": { - "checksum": "mYgoreKol2M0vXCADK74P5y76F2ik5+/6WNiuYUmTug=" - }, - "1.0.0": { - "checksum": "dbAcz7LgrYbcKyQ/mmLD6xFyfNTPCAeLiOXh9Yq922k=" - }, - "2.0.1": { - "checksum": "mOjpTt807Z2LAfcu1exPS8dxsFH8s9iW+D6C52GVQqU=" - }, - "2.1.0": { - "checksum": "AMnwjxTjpz1sEo8xl3fzvambLqqcnTibH2X2gYqlUao=" - }, - "2.1.1": { - "checksum": "xvDOsWHm2VMzBoLlKkabI0CAr4vh7JJU0ErsfcxKTBo=" - }, - "2.1.2": { - "checksum": "H20Dsk8zqD/lNFMdLY+aTyLg8XuJQCXGpQueiaVwWBI=" - }, - "2.1.3": { - "checksum": "n4JE2r3hx1TX4nWT6BelHRyaNJnW5Q3b3pMMLHvSPb0=" - }, - "2.1.4": { - "checksum": "rNBULIRBi45r+MXpWUNwkSaWog2pNTfG5VYKZ676w6g=" - }, - "2.1.5": { - "checksum": "wdI83+z6Tq2JRwosE5vlj+gBM1oGo0C0kjZPkJcd9mA=" - } - } - }, - "npm:@metamask/webpack-plugin-example-snap": { - "id": "npm:@metamask/webpack-plugin-example-snap", - "metadata": { - "hidden": true, - "name": "Webpack Plugin Example Snap" - }, - "versions": { - "2.0.0": { - "checksum": "CHsW41YUXAecl+03+ViwwQmN1WmK3nVsXOaOjUxJ2QM=" - }, - "2.1.3": { - "checksum": "YvikqvHw0838qOaBrqjfegOyMSFM4ZwdyOH2qXode5M=" - } - } - }, - "npm:@mindsend/kadena-snap": { - "id": "npm:@mindsend/kadena-snap", - "metadata": { - "audits": [ - { - "auditor": "Veridise", - "report": "https://veridise.com/wp-content/uploads/2024/10/VAR_Kadena_240909_kadena_snap_V3.pdf" - } - ], - "author": { - "name": "Mindsend", - "website": "https://snak.mindsend.xyz" - }, - "category": "interoperability", - "description": "The Kadena Snap enables interaction with the Kadena blockchain via MetaMask, allowing users to manage Kadena accounts and sign transactions from the familiarity of their MetaMask wallet.\n Cross-chain transfers allow users to seamlessly move their KDA tokens across Kadena’s multi-chains. Learn more about Kadena’s multi-chain architecture: https://www.kadena.io/chainweb.\nLedger support enables users to use their Ledger hardware wallet for additional security.\nAfter installing the Kadena Snap, visit https://snak.mindsend.xyz/ to start using your MetaMask wallet with Kadena.\nThe snaK browser wallet supports:\n - Creating and managing Kadena accounts\n - Signing and sending KDA transactions\n - Switching between networks (mainnet/testnet/custom)\n - Using hardware wallets like Ledger\nFully documented and packaged as an npm Snap.\nSee https://docs.snak.mindsend.xyz for usage.", - "name": "Kadena", - "screenshots": [ - "./images/@mindsend/kadena-snap/1.jpg", - "./images/@mindsend/kadena-snap/2.png", - "./images/@mindsend/kadena-snap/3.png" - ], - "sourceCode": "https://github.com/mindsend-datatech/kadena-snap", - "summary": "Securely send and receive KDA with your MetaMask wallet", - "support": { - "contact": "https://discord.com/invite/zBAuJcu3eC", - "faq": "https://docs.snak.mindsend.xyz/faqs.html", - "knowledgeBase": "https://docs.snak.mindsend.xyz/" - }, - "website": "https://snak.mindsend.xyz" - }, - "versions": { - "1.0.7": { - "checksum": "cJcquQhDsvEpUc7EvHSwJ4UHMeqpiuJ7JO+G2pNu85w=" - }, - "1.0.8": { - "checksum": "suin9Czu4rPMzho6A3LHgqTkdlUhHmlDg0ZwBOnYDbY=" - } - } - }, - "npm:@multiversx/metamask-snap": { - "id": "npm:@multiversx/metamask-snap", - "metadata": { - "audits": [ - { - "auditor": "Hacken", - "report": "https://wp.hacken.io/wp-content/uploads/2024/06/Final_Report_Hacken_Multiverse-X_dApp_May_2024.pdf" - } - ], - "author": { - "name": "MultiversX", - "website": "https://multiversx.com/" - }, - "category": "interoperability", - "description": "The MultiversX Integration Snap brings the power of the MultiversX blockchain to your MetaMask wallet. With this snap, you can seamlessly interact with the MultiversX network, enabling you to perform secure transactions, manage your assets, and interact with dapps directly from your MetaMask interface.\n\nFeatures:\n\n- Secure Transactions: Execute secure and efficient transactions on the MultiversX blockchain.\n- Asset Management: Easily manage your MultiversX assets within MetaMask.\n- Dapp Interaction: Access and interact with decentralized applications on the MultiversX network.\n- User-friendly Interface: Enjoy a smooth and intuitive user experience integrated into your MetaMask wallet.\n\nHow to Use:\n\n1. Install MetaMask: Ensure you have the MetaMask extension installed in your browser. You can download it from MetaMask.\n2. Add the Snap: Open MetaMask and navigate to the Snap section to add the MultiversX Integration Snap.\n3. Connect to MultiversX: Follow the prompts to connect your MetaMask wallet to the MultiversX blockchain.\n4. Manage Assets: Use the MetaMask interface to view and manage your MultiversX assets.\n5. Perform Transactions: Initiate and confirm transactions securely on the MultiversX network.\n6. Explore dapps: Access and interact with various decentralized applications built on MultiversX.\n\nFor more detailed instructions and support, visit our documentation at MultiversX Snap Documentation: https://help.multiversx.com/en/articles/9453616-metamask-snap-integration.", - "name": "MultiversX", - "screenshots": [ - "./images/@multiversx/metamask-snap/1.png", - "./images/@multiversx/metamask-snap/2.png", - "./images/@multiversx/metamask-snap/3.png" - ], - "sourceCode": "https://github.com/multiversx/mx-metamask-snaps", - "summary": "Seamlessly interact with MultiversX blockchain and perform secure transactions.", - "support": { - "contact": "mailto:contact@multiversx.com", - "faq": "https://help.multiversx.com/en/articles/9453616-metamask-snap-integration" - }, - "website": "https://multiversx.com/metamask" - }, - "versions": { - "1.0.2": { - "checksum": "mlWGyqeOgzYwnAsDYlSptuZX0GJHH+idXVA9rvuDnRI=" - }, - "2.0.0": { - "checksum": "wkW7IjpfJtBGGkFDJNqsZvovlqC20TPFqn+POnbrK0g=" - } - } - }, - "npm:@near-snap/plugin": { - "id": "npm:@near-snap/plugin", - "metadata": { - "audits": [ - { - "auditor": "OtterSec", - "report": "https://github.com/here-wallet/near-snap/blob/main/ottersec.pdf" - } - ], - "author": { - "name": "HERE Wallet", - "website": "https://www.herewallet.app/" - }, - "category": "interoperability", - "description": "View and sign transactions for NEAR Protocol blockchain.\n\nFeatures:\n1. You can create an account on NEAR Protocol with ed25519 key\n2. You can sign transactions on NEAR Protocol\n3. FT token transfers and token additions are visualized\n4. You can export keys to a third-party wallet\n5. Meta-transactions on NEAR Protocol are supported", - "name": "NEAR Protocol", - "sourceCode": "https://github.com/here-wallet/near-snap", - "summary": "View and sign transactions for NEAR Protocol.", - "support": { - "contact": "https://discord.gg/vhDSpqbmFj", - "knowledgeBase": "https://github.com/here-wallet/near-snap#readme" - }, - "website": "https://my.herewallet.app/" - }, - "versions": { - "0.7.0": { - "checksum": "yR6Ldx32rWLhSRLNymGqxe+9wlJ8wPvmvtAqIxCfGa8=" - } - } - }, - "npm:@nightlylabs/metamask-move-snap": { - "id": "npm:@nightlylabs/metamask-move-snap", - "metadata": { - "audits": [ - { - "auditor": "OtterSec", - "report": "https://github.com/nightly-labs/move-snap/blob/main/audit/nightly_labs_audit_final.pdf" - } - ], - "author": { - "name": "Nightly", - "website": "https://nightly.app" - }, - "category": "interoperability", - "description": "Swap, Borrow, Lend, Earn and more with Movement apps using your Metamask.\n\nFull ecosystem support is in progress, and dApp developers can start testing and integrating using the Nightly wallet connector \nA working example is available here: https://movement-web3-template.nightly.app\n\nKey features:\n- Generate and manage Movement addresses securely\n- Interact with Movement based dApp\n- Execute smart contract transactions\n- Change between different Movement networks\n\nUsage:\n- Install the Snap through MetaMask\n-Connect to Movement network automatically\n- Start interacting with Movement dApps", - "name": "Move Wallet", - "screenshots": [ - "./images/@nightlylabs/metamask-move-snap/1.jpg", - "./images/@nightlylabs/metamask-move-snap/2.jpg", - "./images/@nightlylabs/metamask-move-snap/3.jpg" - ], - "sourceCode": "https://github.com/nightly-labs/move-snap", - "summary": "Manage tokens and interact with dApps on Movement network.", - "support": { - "contact": "https://discord.gg/Kkqq8nahcG", - "faq": "https://github.com/nightly-labs/move-snap/blob/main/FAQ.md", - "knowledgeBase": "https://github.com/nightly-labs/move-snap/blob/main/KNOWLEDGE.md" - } - }, - "versions": { - "0.1.6": { - "checksum": "d4wrUM/VAKV5r5GWKrKF+oIJ0Xd+o8czolSiT2+GIVk=" - } - } - }, - "npm:@nocturne-xyz/snap": { - "id": "npm:@nocturne-xyz/snap", - "metadata": { - "audits": [ - { - "auditor": "OtterSec", - "report": "https://ottersec.notion.site/Nocturne-Snap-51f214a222b24df4a938411502ca13cd" - } - ], - "author": { - "name": "Nocturne", - "website": "https://nocturnelabs.xyz" - }, - "description": "During the Nocturne onboarding flow, the user derives an alternative private key called their Nocturne spending key. This key controls the user's funds within Nocturne. The Nocturne MetaMask Snap stores and manages this spending key.\n\nNocturne Spending Key Derivation\nDuring the first user onboarding flow, the user is prompted to sign a fixed message. The produced signature serves as the user's spending key and is stored in the Nocturne Snap. After being stored, the key never leaves the Nocturne Snap and is only accessed by the Snap for producing signatures.\n\nRegistering Your Canonical Address\nA canonical Nocturne address is a public address that can be used to generate more Nocturne stealth addresses that belong to the owner of the corresponding Nocturne spending key. One of the last steps in the user-onboarding flow is for the user to register their canonical Nocturne address against their public Ethereum address to facilitate a convenient mapping. The Nocturne Snap will prompt the user to sign a message proving that they own the canonical Nocturne address. After that, the user generates a ZKP of the signature and then submits it to the canonical address registry contract to link their Nocturne address to their public wallet.\n\nSigning Operations\nAll operations that spend private funds, (transferring ETH to a fresh address, performing a private swap, etc) must be authorized from your Nocturne spending key. When a user wants to perform an operation, the Nocturne Snap will prompt the user to confirm they would like to authorize the operation. If the user hits 'Confirm,' the Snap will sign the operation with the user's spending key, authorizing the operation.", - "name": "Nocturne", - "sourceCode": "https://github.com/nocturne-xyz/snap", - "summary": "Enable private transactions with built-in asset privacy.", - "support": { - "contact": "https://discord.gg/MxZYtzzFmJ", - "knowledgeBase": "https://nocturne-xyz.gitbook.io/nocturne/users/metamask-snap" - }, - "website": "https://app.nocturne.xyz/" - }, - "versions": { - "0.10.2": { - "checksum": "+Cky/t82zETXWfy49UiObmoC68sgW1jz+/3NXIBhCC4=" - }, - "0.11.0": { - "checksum": "5/aWJTM0Rtj1zvba8ARJiQTXOGUeb0s3sRTWTou58TI=" - } - } - }, - "npm:@nodefortress/cc-snap": { - "id": "npm:@nodefortress/cc-snap", - "metadata": { - "author": { - "name": "Node Fortress", - "website": "https://nodefortress.io/" - }, - "category": "interoperability", - "description": "After installing the app, visit the companion app at https://ccsnap.io to deploy your account.", - "name": "CC by Node Fortress", - "sourceCode": "https://github.com/nodefortress/cc-snap", - "summary": "Manage Canton Network accounts and assets.", - "support": { - "contact": "mailto:wallet@nodefortress.io" - } - }, - "versions": { - "0.1.14": { - "checksum": "zmCRkePVLGVlbdBjof52OQqh14qum8XUq/I2y407rHE=" - } - } - }, - "npm:@nufi/cardano-metamask-snap": { - "id": "npm:@nufi/cardano-metamask-snap", - "metadata": { - "audits": [ - { - "auditor": "Sayfer", - "report": "https://sayfer.io/audits/metamask-snap-audit-report-for-nufi/" - } - ], - "author": { - "name": "NuFi", - "website": "https://nu.fi/" - }, - "category": "interoperability", - "description": "1. After installing the Snap, visit wallet.nu.fi to connect your MetaMask to the extended wallet. \n2. In the dapp directory, you'll find a list of Cardano dapps that support MetaMask. \n3. Enjoy!", - "name": "Cardano Wallet", - "screenshots": [ - "./images/@nufi/cardano-wallet/1.png", - "./images/@nufi/cardano-wallet/2.png", - "./images/@nufi/cardano-wallet/3.png" - ], - "sourceCode": "https://github.com/nufi-official/nufi-snap", - "summary": "Store, buy, manage ADA, tokens, and NFTs, and access DeFi applications on Cardano.", - "support": { - "contact": "https://support.nu.fi/support/tickets/new", - "faq": "https://nu.fi/metamask#faq", - "knowledgeBase": "https://support.nu.fi/support/solutions/80000463691" - }, - "website": "https://nu.fi/metamask/" - }, - "versions": { - "0.2.0": { - "checksum": "guxrkpSVtjygNnycQnk+6/0W81xeBOdMGZ9asuDBir0=" - }, - "0.2.1": { - "checksum": "WgxYBu6KhUDuTHS2+FSq9GI45Czosri2NKS1c0xvl1w=" - } - } - }, - "npm:@obsidia/xnap": { - "id": "npm:@obsidia/xnap", - "metadata": { - "audits": [ - { - "auditor": "OtterSec", - "report": "https://github.com/user-attachments/files/22505890/obsidia_xnap_audit_final.pdf" - } - ], - "author": { - "name": "Obsidia", - "website": "https://obsidia.io/" - }, - "category": "interoperability", - "description": "Xnap lets you securely manage and transact with Nano (XNO) in MetaMask using your existing SRP. You can also approve dapp requests for transactions and message signing, which enables features like online micropayments and signing into applications.", - "name": "Xnap: Nano Wallet", - "sourceCode": "https://github.com/ObsidiaHQ/xnap", - "summary": "Manage, send and receive Nano (XNO) in MetaMask", - "support": { - "contact": "mailto:contact@obsidia.io" - }, - "website": "https://xnap.xyz/" - }, - "versions": { - "1.0.0": { - "checksum": "QB+pPN18cdO++DaUNIzbJHVNv28zMbiBmE1J/nXcEgs=" - } - } - }, - "npm:@oneid-xyz/connect-snap": { - "id": "npm:@oneid-xyz/connect-snap", - "metadata": { - "author": { - "name": "OneID", - "website": "https://www.oneid.xyz/" - }, - "category": "name resolution", - "description": "OneID Snap allows users to send & receive their digital assets directly on Metamask using their OneID.\nRegister your OneID today: https://www.oneid.xyz/", - "name": "OneID", - "screenshots": [ - "./images/@oneid-xyz/connect-snap/1.png", - "./images/@oneid-xyz/connect-snap/2.png", - "./images/@oneid-xyz/connect-snap/3.png" - ], - "sourceCode": "https://github.com/coin98/connect-snap", - "summary": "Resolve OneID names to addresses.", - "support": { - "contact": "https://discord.gg/oneid-official", - "faq": "https://docs.oneid.xyz/product/oneid-snap-on-metamask#oneid-snap-faqs", - "knowledgeBase": "https://docs.oneid.xyz/product/oneid-snap-on-metamask#oneid-snap" - } - }, - "versions": { - "1.0.2": { - "checksum": "b6j5wDNI9bb6YNxBeIx7GDhFf8B5DRVILuB/E4xXZFE=" - } - } - }, - "npm:@partisiablockchain/snap": { - "id": "npm:@partisiablockchain/snap", - "metadata": { - "audits": [ - { - "auditor": "Veridise", - "report": "https://f8t2x8b2.rocketcdn.me/wp-content/uploads/2023/09/VAR-Partisia-Blockchain-Snap.pdf" - } - ], - "author": { - "name": "Partisia Blockchain", - "website": "https://partisiablockchain.com/" - }, - "category": "interoperability", - "description": "The Partisia Blockchain Snap allows dapp developers to use MetaMask for signing transactions towards Partisia Blockchain.\n\nAfter installing the Snap, visit the website to Sign in with MetaMask and manage your Partisia account.", - "name": "Partisia Blockchain", - "screenshots": [ - "./images/@partisiablockchain/snap/1.png", - "./images/@partisiablockchain/snap/2.png", - "./images/@partisiablockchain/snap/3.png" - ], - "sourceCode": "https://gitlab.com/partisiablockchain/tools/snap", - "summary": "Sign transactions for Partisia Blockchain.", - "support": { - "contact": "https://partisiablockchain.gitlab.io/documentation/get-support-from-pbc-community.html" - }, - "website": "https://browser.partisiablockchain.com/" - }, - "versions": { - "0.1.2": { - "checksum": "xrF1SkRRiUN/iuuxTO3lzF/gTciYRVVSzRap5soRhnA=" - }, - "0.2.1": { - "checksum": "r10QK64EMA0uFhZryfixi/+bP/eGoPW4T1czAs5tfyQ=" - }, - "0.3.0": { - "checksum": "5ZD5e2lXfNXSfiSqdoOdYaEjkEdqBevpykVL5ZjgsEY=" - } - } - }, - "npm:@pianity/arsnap": { - "id": "npm:@pianity/arsnap", - "metadata": { - "audits": [ - { - "auditor": "Sayfer", - "report": "https://sayfer.io/audits/pianity-snap" - } - ], - "author": { - "name": "Pianity", - "website": "https://pianity.com/" - }, - "category": "interoperability", - "description": "Access Arweave through MetaMask and interact with Arweave dapps.\n\nAfter installing the Snap, visit the website to manage your Arweave account.", - "name": "Arweave Wallet", - "screenshots": [ - "./images/@pianity/arsnap/1.png", - "./images/@pianity/arsnap/2.png", - "./images/@pianity/arsnap/3.png" - ], - "sourceCode": "https://github.com/pianity/arsnap", - "summary": "Access Arweave and interact with Arweave dapps.", - "support": { - "contact": "https://discord.gg/NW5RqQP338", - "faq": "https://github.com/pianity/arsnap/blob/main/packages/arsnap/FAQ.md" - }, - "website": "https://arsnap.org/" - }, - "versions": { - "0.2.1": { - "checksum": "5QhJ/Ojl+ArgAwok95ia+dNCMb9rjmCR0NmwDK8NnPc=" - }, - "0.2.2": { - "checksum": "zyeeE8ml0+Y29G8TiTp9oIpJFraGWetutzkHt7i8b78=" - } - } - }, - "npm:@polkagate/snap": { - "id": "npm:@polkagate/snap", - "metadata": { - "audits": [ - { - "auditor": "Sayfer", - "report": "https://sayfer.io/audits/metamask-snap-audit-report-for-polkagate-snap/" - } - ], - "author": { - "name": "PolkaGate", - "website": "https://polkagate.xyz/" - }, - "category": "interoperability", - "description": "Enables MetaMask to interact with tokens within the Polkadot ecosystem, including Polkadot, Kusama, and more.\n\nAfter installing the Snap, visit https://apps.polkagate.xyz/ to manage transactions such as fund transfers, staking, participating in crowdloans, and more.", - "name": "PolkaGate", - "screenshots": [ - "./images/@polkagate/snap/1.png", - "./images/@polkagate/snap/2.png", - "./images/@polkagate/snap/3.png" - ], - "sourceCode": "https://github.com/PolkaGate/snap", - "summary": "Explore Polkadot dapps and manage your tokens using MetaMask.", - "support": { - "contact": "mailto:polkagate@outlook.com", - "faq": "https://github.com/PolkaGate/snap/wiki/FAQs", - "knowledgeBase": "https://docs.polkagate.xyz/polkagate/metamask-snap-user-guide/installing-polkagate-snap" - }, - "website": "https://apps.polkagate.xyz/" - }, - "versions": { - "2.3.2": { - "checksum": "TwSx2jjvpNOaM04mhoI2HbR43ZmIm0xA6AKGPeukHxw=" - }, - "2.5.1": { - "checksum": "rGhTb7iYMQcVBoNjnBAHe1G6djpL4TR6V2r7Jfl3PSM=" - } - } - }, - "npm:@postfiat/pftl-snap": { - "id": "npm:@postfiat/pftl-snap", - "metadata": { - "audits": [ - { - "auditor": "Sayfer", - "report": "https://sayfer.io/audits/metamask-snap-audit-report-for-thewarp/" - } - ], - "author": { - "name": "Post Fiat", - "website": "https://postfiat.org/" - }, - "category": "interoperability", - "description": "If you have a MetaMask wallet now you have an PFTL one. Securely manage your PFT and interact with PFTL-based dapps directly from MetaMask.", - "name": "PFTL", - "screenshots": [ - "./images/@postfiat/pftl-snap/1.png", - "./images/@postfiat/pftl-snap/2.png", - "./images/@postfiat/pftl-snap/3.png" - ], - "sourceCode": "https://github.com/postfiatorg/pftl-snap", - "summary": "Connect to the Post Fiat blockchain.", - "support": { - "contact": "https://discord.gg/T4G78kveD5" - } - }, - "versions": { - "1.1.5": { - "checksum": "54X1+6twNRyYEgWygzpnfYrb1VyOxk3+5i3SLmxev40=" - } - } - }, - "npm:@pushprotocol/snap": { - "id": "npm:@pushprotocol/snap", - "metadata": { - "audits": [ - { - "auditor": "Consensys Diligence", - "report": "https://consensys.io/diligence/audits/2023/07/push-protocol-snap-for-metamask/" - } - ], - "author": { - "name": "Push Protocol", - "website": "https://push.org/" - }, - "category": "notifications", - "description": "The Push Snap is a MetaMask wallet enhancement that allows you to receive real-time notification alerts of your favourite web3 applications directly in your MetaMask wallet.\n\nAdd to MetaMask now.\n\n--\n\nTerms to know:\n\n- Channels: Channels simply represent any protocol or dapp that's activated itself on Push protocol and has the capability of sending notifications. For instance, Uniswap, ENS, Lens Protocol etc. are channels on Push Protocol that you can opt-in to.\n- Notifications: Notifications are alerts from any of the channels that user opts-in to. For example, loan liquidation alerts, new governance proposals, ENS domain name expiry or web3 news updates.\n\n—-Web3 users often interact with a plethora of decentralized applications (dapps) ranging from DeFi tools, to NFT marketplaces to media channels. With so many dapps, staying updated often demands constant attention and regular logins, resulting in an overwhelming user experience.\n\nThe Push Snap aims to resolve this issue by bringing all essential updates for the user directly into their MetaMask wallet. This eliminates the need to bounce between multiple web3 applications as the user's MetaMask wallet now acts as a unified notification center for all imperative web3 updates.\n\nGet Started in 4-Simple Steps\n\n1. Installation: Click on 'Add to MetaMask' button shown above. This initiates the process of adding the Push Snap to your MetaMask wallet.\n2. Setting-Up Push Snap: Once installed, you should be prompted to visit Push dapp, i.e., https://app.push.org/snap. Visit the dapp to proceed with next steps.\n3. Adding your Address: Once connected to the dapp, the Snap will require confirmation to add your address. Adding of address in the Snap means enabling your wallet to receive notifications.\n4. Opt-In to Channels: Once address is added, simply click on Get Started. This takes you to https://app.push.org/channels wherein you can opt-in to any of your favorite channels to receive real-time notifications.\n\nVideo Walk-through\n\nhttps://www.youtube.com/watch?v=LjPxKoYLiGs\n\nAdditional Features of Push Snap\n\n1. Address Selection: Users can add or remove their preferred addresses to the snap for notification whenever they want.\n2. Customization of Pop-Ups: Push Snap also allows users to toggle popup notifications at their convenience.", - "name": "Push", - "screenshots": [ - "./images/@pushprotocol/snap/1.png", - "./images/@pushprotocol/snap/2.png", - "./images/@pushprotocol/snap/3.png" - ], - "sourceCode": "https://github.com/ethereum-push-notification-service/push-protocol-snaps", - "summary": "Receive web3 notifications directly in your wallet.", - "support": { - "contact": "https://discord.com/invite/pushprotocol", - "faq": "https://app.push.org/snap/faq", - "knowledgeBase": "https://app.push.org/snap/knowledge" - }, - "website": "https://app.push.org/snap" - }, - "versions": { - "1.1.12": { - "checksum": "bLscj+khp9cAMhRM0+0+RMR0ZbT4LESnaSFBWUw7X5c=" - }, - "1.1.13": { - "checksum": "8nCT1jxp2n3KFx7rzJGAmJKO5XmSeAUrk97gE44Tde8=" - } - } - }, - "npm:@qtumproject/qtum-wallet": { - "id": "npm:@qtumproject/qtum-wallet", - "metadata": { - "audits": [ - { - "auditor": "Sayfer", - "report": "https://sayfer.io/audits/metamask-snap-audit-report-for-qtum/" - } - ], - "author": { - "name": "Qtum", - "website": "https://qtum.info/" - }, - "category": "interoperability", - "description": "The Qtum MetaMask Snap is an extension for MetaMask that enables users to manage Qtum tokens, including QRC20 variants, and interact seamlessly with Qtum decentralized applications (dapps) directly within their MetaMask wallet. The Snap supports core wallet functionalities and is designed for easy integration into existing Ethereum Virtual Machine (EVM) dapps, allowing developers to leverage Qtum effectively.", - "name": "Qtum Wallet", - "screenshots": [ - "./images/@qtumproject/qtum-wallet/1.png", - "./images/@qtumproject/qtum-wallet/2.png", - "./images/@qtumproject/qtum-wallet/3.png" - ], - "sourceCode": "https://github.com/qtumproject/qtum-extension-wallet", - "summary": "Seamlessly connect to the Qtum network, enabling dapp interactions through an easy-to-use adapter.", - "support": { - "contact": "mailto:support@qtum.info", - "faq": "https://github.com/qtumproject/qtum-extension-wallet?tab=readme-ov-file#qtum-wallet-faq", - "knowledgeBase": "https://github.com/qtumproject/qtum-extension-wallet?tab=readme-ov-file#qtum-wallet-knowledge-doc" - }, - "website": "https://www.qtum.org/developers/snap/" - }, - "versions": { - "0.2.0": { - "checksum": "SB/fFdS7jmrx1Fp/c98Gx2RQzo0+nbBOXeplPvYc6VU=" - } - } - }, - "npm:@quantumshield-js/snap": { - "id": "npm:@quantumshield-js/snap", - "metadata": { - "author": { - "name": "QuantumShield", - "website": "https://quantumshield.xyz/" - }, - "category": "interoperability", - "description": "QuantumShield PQC Snap brings post-quantum cryptography to MetaMask. It implements ML-DSA-65 (NIST FIPS 204, Security Level 3) — a lattice-based digital signature algorithm standardized by NIST in August 2024 to resist attacks from both classical and quantum computers. Quantum computers running Shor's algorithm will eventually break the ECDSA signatures that secure every Ethereum wallet today. QuantumShield prepares users for this threat by adding a second, quantum-resistant signature layer on top of the existing ECDSA infrastructure.\n\nWhat this Snap does:\nKey Generation — Generates ML-DSA-65 key pairs (1,952-byte public key, 4,032-byte private key) inside the Snap's isolated storage. Private keys never leave the Snap environment. Users can generate multiple labeled key pairs and manage them independently.\nHybrid Signing — Creates dual signatures that combine ECDSA (classical) and ML-DSA-65 (post-quantum) into a single 3,375-byte payload. A transaction is only valid when both signatures verify. This means security is maintained even if either algorithm is compromised individually.\nPQC-Only Signing — For scenarios where ECDSA is considered compromised, the Snap can produce ML-DSA-65-only signatures (3,310 bytes) that bypass ECDSA entirely.\nSignature Verification — Verifies the ML-DSA-65 component of both hybrid and PQC-only signatures locally within the Snap.\nKey Management — List, inspect, export, and delete key pairs. Key import is supported with automatic integrity verification (sign-and-verify check on import). Public key export enables on-chain registration with QuantumShield L2 smart accounts.\n\nThis Snap is designed for use with QuantumShield L2, an OP Stack-based Layer 2 that includes an on-chain ML-DSA-65 verification precompile. However, the key generation and signing functionality works independently — any dApp can integrate post-quantum signatures by calling the Snap's RPC methods.\n\nPermissions used:\nsnap_dialog (user confirmation before key generation, signing, and export), snap_manageState (encrypted key storage), snap_notify (operation notifications), endowment:rpc (dApp communication).\n\nNo network access is required. All cryptographic operations are performed locally using the @noble/post-quantum library, a JavaScript implementation audited and maintained by Paul Miller.", - "name": "QuantumShield PQC", - "sourceCode": "https://github.com/quantumshield-xyz/snap", - "summary": "Generates post-quantum key pairs and creates ECDSA + ML-DSA-65 hybrid signatures for QuantumShield L2", - "support": { - "contact": "mailto:develop@superlabs.studio", - "knowledgeBase": "https://quantumshield.xyz/snap" - } - }, - "versions": { - "0.1.5": { - "checksum": "b9iaMZN7D9Bv2hUqTv7+/Hfn/5K0YRXMKyegKoXPtSM=" - } - } - }, - "npm:@qubic-lib/qubic-mm-snap": { - "id": "npm:@qubic-lib/qubic-mm-snap", - "metadata": { - "audits": [ - { - "auditor": "Sayfer", - "report": "https://sayfer.io/audits/metamask-snap-audit-report-for-qubic/" - } - ], - "author": { - "name": "Qubic", - "website": "https://qubic.org" - }, - "category": "interoperability", - "description": "This Snap enables MetaMask users to interact with Qubic. Currently, it is designed for developers and integrators, with end-user functionality coming soon. To explore and integrate, visit: https://github.com/qubic/qubic-mm-snap/blob/main/FAQ.md", - "name": "Qubic Connect", - "screenshots": [ - "./images/@qubic-lib/qubic-mm-snap/1.png", - "./images/@qubic-lib/qubic-mm-snap/2.png", - "./images/@qubic-lib/qubic-mm-snap/3.png" - ], - "sourceCode": "https://github.com/qubic/qubic-mm-snap", - "summary": "Basic connector for the Qubic network.", - "support": { - "contact": "mailto:joetom@qubic.li", - "faq": "https://github.com/qubic/qubic-mm-snap/blob/main/FAQ.md" - }, - "website": "https://connect.qubic.world/" - }, - "versions": { - "0.0.3": { - "checksum": "p2rH2f3N6LNVyz+bqrAqo0RMqY6FmV+/W7IMoVvqZOk=" - } - } - }, - "npm:@quickintel/quickintel-snap": { - "id": "npm:@quickintel/quickintel-snap", - "metadata": { - "audits": [ - { - "auditor": "Veridise", - "report": "https://github.com/Quick-Intel/quickintel-snap/blob/main/VAR_quickintel_snap.pdf" - } - ], - "author": { - "name": "Quick Intel", - "website": "https://quickintel.io/" - }, - "category": "transaction insights", - "description": "Quick Intel Snap performs scans on any DEX, the Quick Intel window appears with audit results before you swap the token. Real-time data to protect you from potential scams!\n\nAfter installing the Snap, you will see the Quick Intel insights in the transaction confirmation screen.", - "name": "Quick Intel", - "sourceCode": "https://github.com/Quick-Intel/quickintel-snap", - "summary": "Real-time token risk analysis across 28 blockchains.", - "support": { - "contact": "https://discord.gg/quicki", - "faq": "https://docs.quickintel.io/metamask-snap/faq", - "knowledgeBase": "https://docs.quickintel.io/metamask-snap/introduction" - }, - "website": "https://quickintel.io/snap" - }, - "versions": { - "1.0.1": { - "checksum": "fDEVgkJ+8LZnQHX9vVDksf/EZP2nr5WKA5y14QJywyQ=" - } - } - }, - "npm:@rarimo/rarime": { - "id": "npm:@rarimo/rarime", - "metadata": { - "audits": [ - { - "auditor": "Halborn", - "report": "https://github.com/rarimo/rarime/blob/main/audits/halborn_2023-08-28.pdf" - } - ], - "author": { - "name": "Rarimo", - "website": "https://rarimo.com/" - }, - "category": "interoperability", - "description": "RariMe is a MetaMask Snap that safely holds any of your credentials and allows you to prove your identity without revealing any personal data. Powered by Rarimo Protocol and Zero-Knowledge Proof technology.\n\nThis Snap allows you to 1) receive credentials 2) create Zero Knowledge Proofs of your credentials and 3) submit proofs to dapps. For each of these steps, you will be automatically prompted by the identity providers and the dapps that have integrated with RariMe.\n\nRariMe will never access your private keys or compromise your security and control over your assets.", - "name": "RariMe", - "screenshots": [ - "./images/@rarimo/rarime/1.png", - "./images/@rarimo/rarime/2.png", - "./images/@rarimo/rarime/3.png" - ], - "sourceCode": "https://github.com/rarimo/rarime", - "summary": "Hold credentials securely and prove your identity without revealing personal data.", - "support": { - "contact": "https://discord.gg/Bzjm5MDXrU", - "faq": "https://rarimo.notion.site/rariME-FAQ-19ebf31d8eaf4475aa8e64a1cc558800", - "knowledgeBase": "https://rarimo.notion.site/RariMe-Knowledge-Doc-bf401216ae604f0faa490265f2ccd86f" - }, - "website": "https://dashboard.rarime.com/" - }, - "versions": { - "2.0.2": { - "checksum": "i0ljRZ0cephpKn1+G77icrHnm0Gh4soRcJ9b6xpQaXA=" - }, - "2.0.3": { - "checksum": "JYhh0dVzYXZVrMEI1gIfjYaZ4OEwGwGVaZmGrUgieXU=" - }, - "2.1.0": { - "checksum": "CQgk91hCMZDesbgW1yDO4bWYyHY6Lpwp3b1GK/zPxY8=" - }, - "2.1.1": { - "checksum": "8qJxnKDj9B1mL6nCqd3GcwaCpG4lPgfeOGaBKJk0Zpw=" - } - } - }, - "npm:@rss3/social-notifier-snap": { - "id": "npm:@rss3/social-notifier-snap", - "metadata": { - "audits": [ - { - "auditor": "SlowMist", - "report": "https://github.com/NaturalSelectionLabs/RSS3-Social-Notifier-Snap/blob/main/audit/SlowMist%20Audit%20Report%20-%20RSS3-Social-Notifier-Snap.pdf" - } - ], - "author": { - "name": "RSS3", - "website": "https://rss3.io/" - }, - "category": "notifications", - "description": "The RSS3 Social Notifier is a notification Snap allowing MetaMask users to connect all their on-chain social profiles (e.g. Lens, Farcaster) and sync existing social graphs. Users will get notified directly through MetaMask and stay tuned with their friends' latest activities in a human-readable style.\n\nAfter installing the Snap, visit the website at https://snap.rss3.io to connect your social profiles and configure notifications.", - "name": "RSS3 Social Notifier", - "screenshots": [ - "./images/@rss3/social-notifier-snap/1.png", - "./images/@rss3/social-notifier-snap/2.png", - "./images/@rss3/social-notifier-snap/3.png" - ], - "sourceCode": "https://github.com/NaturalSelectionLabs/RSS3-Social-Notifier-Snap", - "summary": "Stay on top of social activities from Lens, Farcaster, and more.", - "support": { - "contact": "https://discord.gg/vfhpMjdbGU", - "faq": "https://snap.rss3.io/" - } - }, - "versions": { - "0.1.13": { - "checksum": "F/41Grd5/wgk5Xpu6kkSAhFC2La75rLsX8f7iz6uzII=" - } - } - }, - "npm:@safeheron/mpcsnap": { - "id": "npm:@safeheron/mpcsnap", - "metadata": { - "additionalSourceCode": [ - { - "name": "MPC Algorithm Library", - "url": "https://github.com/Safeheron/safeheron-crypto-suites-cpp" - }, - { - "name": "Multi Party Sig CPP", - "url": "https://github.com/Safeheron/multi-party-sig-cpp/" - }, - { - "name": "MPC Snap WASM", - "url": "https://github.com/Safeheron/mpc-snap-wasm" - }, - { - "name": "Javascript SDK", - "url": "https://github.com/Safeheron/mpc-wasm-sdk" - }, - { - "name": "Snap App", - "url": "https://github.com/Safeheron/safeheron-snap-app" - } - ], - "audits": [ - { - "auditor": "Cure53", - "report": "https://cure53.de/pentest-report_safeheron-snap.pdf" - }, - { - "auditor": "Least Authority", - "report": "https://leastauthority.com/wp-content/uploads/2024/02/Safeheron_Crypto_Suites__Multiparty_ECDSA_Updated_Final_Audit_Report_Least_Authority.pdf" - } - ], - "author": { - "name": "Safeheron", - "website": "https://www.safeheron.com/" - }, - "category": "account management", - "description": "A fully decentralized MPC wallet with three key shards distributed across the MetaMask Extension and two mobile phones with the Safeheron Snap App installed. Use two devices to sign transactions.\n\n1. Secure and User-Friendly\nDistribute 3 key shards on 3 devices and utilize 2 devices to complete signature for a transaction.\n\n2. 100% Asset Control\nUsers have access to all 3 key shards and securely back them up via recovery phrases.\n\n3. Recovery\nIf one device is lost/stolen, users can use another 2 devices to recover a new key shard.\n\n4. Use MPC wallet in MetaMask\nSupport MetaMask Account Snap feature. After you back up your wallet, it will automatically add the wallet to your MetaMask Account. You can directly use the MPC wallet in MetaMask.\n\n5. Secure and convenient Web3 access\nBenefiting from the support of the MetaMask Account Snap feature, the Safeheron Snap wallet can easily connect to any Web3 application, offering hardware wallet-level security and the convenience of MPC signatures.\n\n6. Fully Decentralized\nUsers possess all 3 MPC key shards, without any cloud servers. MPC signing and communication are both performed on the user's device.", - "name": "Safeheron", - "sourceCode": "https://github.com/Safeheron/multi-mpc-snap-monorepo", - "summary": "MPC wallet with key shards distributed across devices.", - "support": { - "contact": "mailto:mpcsnap@safeheron.com", - "faq": "https://mpcsnap.safeheron.com/#/faq", - "keyRecovery": "https://github.com/Safeheron/snap-offline-recovery-tool" - }, - "website": "https://mpcsnap.safeheron.com" - }, - "versions": { - "2.4.8": { - "checksum": "lsLGMbBoP5VIViV28jKZ+edzfPZxvbIlPGOB3pDOn6w=" - } - } - }, - "npm:@secure-ci/snap": { - "id": "npm:@secure-ci/snap", - "metadata": { - "author": { - "name": "SCI", - "website": "https://www.sci.domains" - }, - "category": "transaction insights", - "description": "We aim to bolster security measures within the web3 ecosystem by establishing an on-chain registry that allows owners to verify which smart contracts should be allowed to interact with their web domains.\n\nSCI's purpose is to verify that websites are interacting with validated and authorized smart contracts minimizing user risks and exploits.\n\nBy installing the MetaMask SCI Snap, when making any interactions through MetaMask, you will be able to easily verify if the underlying transaction is trusted.", - "name": "SCI", - "screenshots": [ - "./images/@secure-ci/snap/1.png", - "./images/@secure-ci/snap/2.png", - "./images/@secure-ci/snap/3.png" - ], - "sourceCode": "https://github.com/sci-domains/snaps", - "summary": "Secure your transactions and interactions across the web3 ecosystem with MetaMask and the SCI protocol.", - "support": { - "contact": "mailto:support@sci.domains", - "faq": "https://discreet-xylocarp-fcc.notion.site/SCI-Metamask-Snap-FAQ-3425386e80a54f69afcbb90af8f5cb6b", - "knowledgeBase": "https://discreet-xylocarp-fcc.notion.site/How-Does-the-SCI-MetaMask-Snap-Work-32997a113f4a453fa75ded3d9098141f" - }, - "website": "https://sci.domains/#snap" - }, - "versions": { - "0.0.14": { - "checksum": "PChbGT2/bzUbrx2tvJ91w102n5CQHlXPZO0h49XxnTE=" - } - } - }, - "npm:@shapeshiftoss/metamask-snaps": { - "id": "npm:@shapeshiftoss/metamask-snaps", - "metadata": { - "audits": [ - { - "auditor": "Consensys Diligence", - "report": "https://consensys.io/diligence/audits/2023/07/metamask/partner-snaps-shapeshift-snap/" - } - ], - "author": { - "name": "ShapeShift", - "website": "https://shapeshift.com/" - }, - "category": "interoperability", - "description": "Support 11 chains including Bitcoin, Dogecoin, Cosmos, Litecoin, Binance Chain, THORChain, Bitcoin Cash and more in one Snap.\n\nAdd the Snap to your MetaMask, visit https://app.shapeshift.com, and connect with MetaMask to start using all the chains supported.\n\nPlease note: you must connect Account 1 to the ShapeShift website to use all the chains supported by the Snap. Hardware wallets or imported private keys are not supported with this feature.", - "name": "ShapeShift Multichain", - "screenshots": [ - "./images/@shapeshiftoss/metamask-snaps/1.jpg", - "./images/@shapeshiftoss/metamask-snaps/2.jpg", - "./images/@shapeshiftoss/metamask-snaps/3.jpg" - ], - "sourceCode": "https://github.com/shapeshift/metamask-snaps", - "summary": "Support 11 chains including Bitcoin, Dogecoin, Cosmos, Litecoin, and more.", - "support": { - "contact": "https://discord.com/invite/shapeshift", - "knowledgeBase": "https://docs.shapeshift.com/faq/protocols/metamask-snaps" - }, - "website": "https://app.shapeshift.com/" - }, - "versions": { - "1.0.0": { - "checksum": "sALq4aMfg09UKOAcC8f/P0EC36vihVjLxkQX2y3BP3c=" - }, - "1.0.9": { - "checksum": "CCfVhqwMAZKSm+PH+fULDXhdbaMgT5pKZsQEKXPZ32Q=" - } - } - }, - "npm:@silencelaboratories/silent-shard-snap": { - "id": "npm:@silencelaboratories/silent-shard-snap", - "metadata": { - "additionalSourceCode": [ - { - "name": "ECDSA TSS Algorithm", - "url": "https://github.com/silence-laboratories/ecdsa-tss-js" - }, - { - "name": "Dapp", - "url": "https://github.com/silence-laboratories/silent-shard-dapp" - }, - { - "name": "Mobile App", - "url": "https://github.com/silence-laboratories/silent-shard-mobile" - }, - { - "name": "Flutter SDK", - "url": "https://github.com/silence-laboratories/silent-shard-flutter-sdk" - } - ], - "audits": [ - { - "auditor": "Cure53", - "report": "https://cure53.de/pentest-report_silencelabs-snap.pdf" - }, - { - "auditor": "Cure53", - "report": "https://cure53.de/audit-report_silencelabs-ecdsa-lib.pdf" - }, - { - "auditor": "Cure53", - "report": "https://cure53.de/pentest-report_silencelabs-apps.pdf" - } - ], - "author": { - "name": "Silence Laboratories", - "website": "https://www.silencelaboratories.com/" - }, - "category": "account management", - "description": "The Silent Shard Snap brings a balanced notion of usability, security and user-empowerment with its “Distributed Self-Custody” design which leverages MPC cryptography. Using this Snap, users of accounts, inside MetaMask, would still have pure self-custody (all key shards are under user control and possession), while the key shards are distributed between their browser wallet and phone. \n\nSilent Shard enables an experience where the user is requested to approve transactions on their paired phone. This brings the user flow of the web3 wallet closer and more conforming to conventional 2FA, which is well accepted in traditional internet banking and fintech applications. \n\nThe Snap supports features like instant backup and recovery, and transaction security insights are to come. You can now bid goodbye to a seed phrase as a single point of failure and enjoy a fully decentralised experience.", - "name": "Silent Shard", - "screenshots": [ - "./images/@silencelaboratories/silent-shard-snap/1.png", - "./images/@silencelaboratories/silent-shard-snap/2.png", - "./images/@silencelaboratories/silent-shard-snap/3.png" - ], - "sourceCode": "https://github.com/silence-laboratories/silent-shard-snap", - "summary": "MPC-powered 2FA-like transaction approvals on phone.", - "support": { - "contact": "mailto:support+snap@silencelaboratories.com", - "faq": "https://www.silencelaboratories.com/silent-shard-snap#faq", - "keyRecovery": "https://github.com/silence-laboratories/silent-shard-offline-recovery-tool" - }, - "website": "https://snap.silencelaboratories.com" - }, - "versions": { - "1.2.10": { - "checksum": "5hFK3JOH2b3qTPG/4M3gii6KFupooUyS2tdt4wMEqh0=" - } - } - }, - "npm:@snowballmoney/metamask-snap": { - "id": "npm:@snowballmoney/metamask-snap", - "metadata": { - "author": { - "name": "Snowball Money", - "website": "https://www.snowball.money/" - }, - "category": "name resolution", - "description": "With MNS Snap, users can replace long wallet addresses with easy-to-remember identity names, enhancing transactions and the overall user experience.\n\nTo start using MNS Snap, claim your MNS identity on modular.name, install the MNS Snap from the MetaMask Snaps Directory, and enjoy the convenience of sending and receiving assets effortlessly in MetaMask.\n\nExperience a more intuitive way to manage your digital identity in the decentralized ecosystem with MNS Snap!", - "name": "Modular Naming Service", - "screenshots": [ - "./images/@snowballmoney/metamask-snap/1.png", - "./images/@snowballmoney/metamask-snap/2.png", - "./images/@snowballmoney/metamask-snap/3.png" - ], - "sourceCode": "https://github.com/snowballmoney/metamask-snap", - "summary": "Easily send and receive assets in MetaMask using MNS names—no more copying long addresses.", - "support": { - "contact": "https://discord.com/invite/jW4GzbdNBm", - "faq": "https://snowball-5.gitbook.io/snowball/modular-naming-service-mns/metamask-snaps/faq", - "knowledgeBase": "https://snowball-5.gitbook.io/snowball/modular-naming-service-mns/metamask-snaps/knowledge-base" - } - }, - "versions": { - "0.2.1": { - "checksum": "l7U8N83P7X1P+7fF7vL3ZwMwc4GXHBT3avwOomAt8wo=" - } - } - }, - "npm:@solflare-wallet/solana-snap": { - "id": "npm:@solflare-wallet/solana-snap", - "metadata": { - "audits": [ - { - "auditor": "Consensys Diligence", - "report": "https://consensys.io/diligence/audits/2023/08/solflare-metamask-snaps-solflare-sui-aptos/" - } - ], - "author": { - "name": "Solflare", - "website": "https://solflare.com/" - }, - "description": "Manage Solana-based tokens and NFTs, swap, stake, bridge from EVM to SOL, and connect to Solana apps with MetaMask.\n\nAfter installing the Snap, visit the website to connect and manage your Solana accounts.", - "name": "Solana Wallet", - "screenshots": [ - "./images/@solflare-wallet/solana-snap/1.png", - "./images/@solflare-wallet/solana-snap/2.png", - "./images/@solflare-wallet/solana-snap/3.png" - ], - "sourceCode": "https://github.com/solflare-wallet/solflare-snap", - "summary": "Manage Solana-based tokens, NFTs, swap, stake, bridge to SOL, and connect to Solana apps.", - "support": { - "contact": "https://academy.solflare.com/guides", - "faq": "https://solflare.com/metamask" - }, - "website": "https://solflare.com/metamask" - }, - "versions": { - "1.0.3": { - "checksum": "hyw8D7jdrDe4FGohp7hjn7miXCk5JVo7yohV5Q3I2io=" - }, - "1.0.4": { - "checksum": "g7+rMyiiRr/hkxpPCgyF/qKefm/5AT9oUr+G4AhHb4E=" - } - } - }, - "npm:@taker007/crypto-guardian-snap": { - "id": "npm:@taker007/crypto-guardian-snap", - "metadata": { - "author": { - "name": "HAJ Solutions, Inc", - "website": "https://github.com/taker007/crypto-guardian" - }, - "category": "transaction insights", - "description": "Crypto Guardian is an advisory-only MetaMask Snap that provides on-chain risk signals for Ethereum tokens before a user proceeds with an interaction. The Snap analyzes publicly available on-chain data related to a token or contract and presents a simple risk summary to the user using a confirmation dialog. It is designed to help users make more informed decisions, not to enforce or automate any action. Crypto Guardian does NOT sign transactions, send transactions, block transactions, read wallet balances, estimate gas, or move funds. It does not have access to private keys, seed phrases, or signing material. All analysis is read-only. How it works: When triggered, the Snap requests a risk assessment for the selected Ethereum token or contract. The result is displayed to the user as an informational dialog showing a risk level and supporting context. The user remains fully in control and may choose to proceed or stop on their own. Backend usage: Risk analysis is performed via a read-only backend service. Only the minimum information required to analyze on-chain risk is sent (such as a token or contract identifier). No personal data, wallet secrets, or transaction signing payloads are transmitted. Graceful degradation: If the backend service is unreachable or unavailable, Crypto Guardian does not fail silently. Instead, it displays a warning dialog and defaults the assessment to a high-risk, unverified state, allowing the user to decide how to proceed. Crypto Guardian is intended as an informational safety tool. It provides signals and context only and should not be considered financial advice or an automated security enforcement mechanism.", - "name": "Crypto Guardian", - "sourceCode": "https://github.com/taker007/crypto-guardian", - "summary": "Shows on-chain risk signals for Ethereum tokens so users can make informed decisions before proceeding. Advisory only.", - "support": { - "knowledgeBase": "https://github.com/taker007/crypto-guardian/blob/main/packages/snap/README.md" - } - }, - "versions": { - "1.1.1": { - "checksum": "cNlMbl70B1usNJxalMQiLdWUUULHHxxPWZPAi6Boyvo=" - } - } - }, - "npm:@taxdao/fintax-snap": { - "id": "npm:@taxdao/fintax-snap", - "metadata": { - "audits": [ - { - "auditor": "SlowMist", - "report": "https://github.com/slowmist/Knowledge-Base/blob/master/open-report-V2/blockchain-application/SlowMist%20Audit%20Report%20-%20fintax-snap.pdf" - } - ], - "author": { - "name": "FinTax", - "website": "https://www.fintax.tech" - }, - "category": "interoperability", - "description": "FinTax is the world's first professional tax and financial management software dedicated to crypto. It covers major compliance regions worldwide and supports one-click transaction imports and tax calculations. After installing the Snap, visit the website to connect and manage your crypto asset taxes and finance.", - "name": "FinTax for Crypto Tax", - "screenshots": [ - "./images/@taxdao/fintax-snap/1.png", - "./images/@taxdao/fintax-snap/2.png", - "./images/@taxdao/fintax-snap/3.png" - ], - "sourceCode": "https://github.com/InTaxDev/fintax-snap", - "summary": "Manage crypto asset taxes and finances.", - "support": { - "contact": "mailto:support@fintax.tech", - "faq": "https://docs.google.com/document/d/1oI8R7ZQdCvj16EGZEMRimGNQMph9tvniz-UJb8gIJHk/edit?usp=sharing", - "knowledgeBase": "https://docs.google.com/document/d/1BwIURbSHepV2CusFuBmrMMg3j24Tt1IpV5SYlu07cC4/edit?usp=sharing" - }, - "website": "https://www.fintax.tech/#/snap" - }, - "versions": { - "0.1.4": { - "checksum": "dMNPliBnqJJ3Rb+O9Xz4/7nXSetXsk4w6lJwf7du5K8=" - }, - "0.1.5": { - "checksum": "oipnBy/oZ5Beu1hJ20uASyk9rdscPn9+KsiadsRaqM4=" - } - } - }, - "npm:@tenderly/metamask-snap": { - "id": "npm:@tenderly/metamask-snap", - "metadata": { - "audits": [ - { - "auditor": "Sayfer", - "report": "https://github.com/Tenderly/tenderly-snap/blob/main/audits/2023-08-Metamask-Snap-PT-for-Tenderly.pdf" - } - ], - "author": { - "name": "Tenderly", - "website": "https://tenderly.co/" - }, - "category": "transaction insights", - "description": "Preview transactions before sending them on-chain to get valuable insights, avoid failed transactions, and save funds. Get human-readable information on transferred assets with corresponding dollar values for ERC-20 tokens and NFTs.\n\nThe Tenderly TX Preview insight will be displayed in the transaction confirmation flow. Before you can see the insight, you must configure the Snap with your Tenderly account. Visit the website to learn more.", - "name": "Tenderly TX Preview", - "screenshots": [ - "./images/@tenderly/metamask-snap/1.png", - "./images/@tenderly/metamask-snap/2.png", - "./images/@tenderly/metamask-snap/3.png" - ], - "sourceCode": "https://github.com/Tenderly/tenderly-snap", - "summary": "Preview transactions, get insights, and avoid failed transactions.", - "support": { - "contact": "mailto:metamask.snap@tenderly.co", - "faq": "https://docs.tenderly.co/how-to-install-tenderly-tx-preview-snap" - }, - "website": "https://docs.tenderly.co/how-to-install-tenderly-tx-preview-snap" - }, - "versions": { - "1.2.3": { - "checksum": "WuDywSqVFK/ELGbAuNHk/XkUn/mP3Y4S/Hyh3xXDkBw=" - } - } - }, - "npm:@tezoroproject/snap": { - "id": "npm:@tezoroproject/snap", - "metadata": { - "audits": [ - { - "auditor": "Consensys Diligence", - "report": "https://consensys.io/diligence/audits/2024/04/tezoro-snap/" - } - ], - "author": { - "name": "Tezoro, Inc.", - "website": "https://tezoro.io/" - }, - "category": "transaction insights", - "description": "Tezoro Snap provides a Digital Will service. Users can create a smart contract that will be able to recover assets and distribute them among beneficiaries. Users can choose under what circumstances their Digital Will will be executed: due to the inactivity of the wallet, on a specific date, through an executor on Etherscan or via Tezoro dashboard.\n\nTezoro Snap uses Snap's capabilities to provide notifications to users when their balance exceeds $2,000 and they should consider creating a Digital Will to ensure they don't lose access to assets.", - "name": "Tezoro", - "screenshots": [ - "./images/@tezoroproject/snap/1.png", - "./images/@tezoroproject/snap/2.png", - "./images/@tezoroproject/snap/3.png" - ], - "sourceCode": "https://github.com/tezoroproject/metamask-snap", - "summary": "Create an on-chain will for your digital assets.", - "support": { - "contact": "mailto:hello@tezoro.io", - "faq": "https://tezoroio.notion.site/FAQ-1fdb392f83eb4dd6b5f86ad9cd9ca357", - "knowledgeBase": "https://tezoroio.notion.site/Knowledge-Base-b689d40be72340c79582942f22bb4912" - }, - "website": "https://tezoro.io/" - }, - "versions": { - "0.9.0": { - "checksum": "RRXI8F6v4FhcElULjnydzjMiMzop95oPfQP3p2hof2c=" - } - } - }, - "npm:@token-kit/tapp-snap": { - "id": "npm:@token-kit/tapp-snap", - "metadata": { - "author": { - "name": "SmartToken Labs", - "website": " https://smarttokenlabs.com/" - }, - "category": "interoperability", - "description": "Tapp Snap is a new way for Tapp users to access their own Tapps -- a new kind of cross-platform mini app linking with a token.\nAfter installation, Tapp users can go to the Tapp sites via installed Tapp to finish any onchain/offchain actions.\nThis Snap makes MetaMask a Tapp Store.", - "name": "Tapp", - "screenshots": [ - "./images/@token-kit/tapp-snap/1.png", - "./images/@token-kit/tapp-snap/2.png", - "./images/@token-kit/tapp-snap/3.png" - ], - "sourceCode": "https://github.com/TokenScript-Framework/token-kit/tree/main/packages/tapp-snap", - "summary": "Access Tapps (cross-platform mini apps).", - "support": { - "contact": "mailto:v@smarttokenlabs.com", - "faq": "https://github.com/TokenScript-Framework/token-kit/blob/main/packages/tapp-snap/FAQ.md", - "knowledgeBase": "https://github.com/TokenScript-Framework/token-kit/blob/main/packages/tapp-snap/README.md" - }, - "website": "https://d3b4oczgnqtk98.cloudfront.net" - }, - "versions": { - "0.0.4": { - "checksum": "2dngDF7smvhq8M1qMs1hnYNO2ZmKvYTOlHc1V8UyfCw=" - } - } - }, - "npm:@tuum-tech/authflow-snap": { - "id": "npm:@tuum-tech/authflow-snap", - "metadata": { - "audits": [ - { - "auditor": "Cure53", - "report": "https://cure53.de/pentest-report_tuum-auth-snap.pdf" - } - ], - "author": { - "name": "Tuum Technologies", - "website": "https://www.tuum.tech/" - }, - "category": "interoperability", - "description": "AuthFlow manages both basic and verifiable credentials, and requires that Identify Snap is installed as a pre-requisite. There are two entry points, the homepage UI and the JSON-RPC API.\n\nVia the Snap homepage: \n- Store basic credentials - 'Store New Passwords'\n- Delete a basic credential - 'Delete Single Password'\n- Delete all basic credentials - 'Delete All Passwords'\n- Display basic credentials - 'Show All Passwords'\n- Display verifiable credentials - 'Get All Verifiable Credentials'\n- Delete all stored verifiable credentials - 'Delete All Verifiable Credentials'\n- Delete a single verifiable credential - 'Delete One Verifiable Credential'\n- Rename a verifiable credential with a friendly name - 'Rename Verifiable Credential'\n- Create a verifiable presentation with a comma separated list of verifiable credential names - 'Create Verifiable Presentation'\n- Create a sample verifiable credential - 'Create Sample Verifiable Credential'\n- Sync AuthFlow and Identify records of verifiable credentials - 'Sync With Identify'\n\nVia the JSON-RPC API\n- Send a basic credential to a dapp given a friendly name as input - 'getBasicCreds'\n- Send a verifiable credential to a dapp given a friendly name as input - 'getVerifiableCreds'\n- Create a verifiable presentation from a comma separated list of verifiable credentials and send to a dapp - 'Create Verifiable Presentation'", - "name": "AuthFlow", - "screenshots": [ - "./images/@tuum-tech/authflow-snap/1.png", - "./images/@tuum-tech/authflow-snap/2.png", - "./images/@tuum-tech/authflow-snap/3.png" - ], - "sourceCode": "https://github.com/tuum-tech/authflow-snap", - "summary": "Credential management for both basic and verifiable credentials.", - "support": { - "contact": "https://discord.gg/BsDqX3fhq4", - "faq": "https://github.com/tuum-tech/authflow-snap/wiki/FAQ", - "knowledgeBase": "https://github.com/tuum-tech/authflow-snap/wiki" - } - }, - "versions": { - "0.1.4": { - "checksum": "Cj1VBk1unamMq7Ns3uzqEU0xhWv3q8MuZapIhOdWEVY=" - } - } - }, - "npm:@tuum-tech/identify": { - "id": "npm:@tuum-tech/identify", - "metadata": { - "audits": [ - { - "auditor": "Cure53", - "report": "https://github.com/tuum-tech/identify/blob/main/SNAP_AUDIT_REPORT_BY_CURE53.pdf" - } - ], - "author": { - "name": "Tuum Technologies", - "website": "https://www.tuum.tech/" - }, - "description": "Extends the functionality of the most popular crypto wallet by adding Decentralized Identity.\n\nVisit the website to learn how to integrate Identify into your dapps.", - "name": "Identify", - "sourceCode": "https://github.com/tuum-tech/identify", - "summary": "Extends MetaMask by adding Decentralized Identity.", - "support": { - "contact": "mailto:developer@tuum.tech", - "faq": "https://docs.tuum.tech/identify/basics/faqs", - "knowledgeBase": "https://docs.tuum.tech/identify" - }, - "website": "https://docs.tuum.tech/identify/identify-snap/snap-rpc-apis/basic-apis/hello#live-demo-on-codepen" - }, - "versions": { - "1.5.0": { - "checksum": "ECg9tSmTGnEohIna/s0ECP3nGSyo1r3sue3QUU8xwlE=" - } - } - }, - "npm:@txfort/snap": { - "id": "npm:@txfort/snap", - "metadata": { - "author": { - "name": "TxFort", - "website": "https://txfort.com/" - }, - "category": "transaction insights", - "description": "TxFort: Security Shield is a professional transaction analysis tool designed to bring clarity and security to your MetaMask experience. Our goal is to empower users with human-readable insights, ensuring you know exactly what a transaction does before you sign it.\n\nBy providing a clear breakdown of smart contract interactions, TxFort helps prevent mistakes and protects your digital assets across multiple blockchain networks.\n\nKey Features:\n\n1. Clear Transaction Descriptions\nTxFort transforms complex blockchain data into plain English. Whether you are swapping tokens, interacting with a DeFi protocol, or minting an NFT, we provide a natural language summary of the transaction's purpose and its expected outcome.\n\n2. Comprehensive Security Insights\nOur analysis engine identifies potential risks within the transaction data. TxFort highlights dangerous contract permissions—such as broad token approvals—and provides warnings for suspicious transaction patterns that could lead to asset loss.\n\n3. Token and Permission Tracking\nSee exactly which assets are involved in a transaction. TxFort explicitly calls out token transfers and permission requests, ensuring you never inadvertently grant control of your wallet to an unverified contract.\n\n4. Seamless Multi-Chain Coverage\nSecurity should be consistent across all your activities. TxFort supports a wide range of EVM-compatible chains, including Ethereum, Polygon, Arbitrum, Optimism, and more, offering the same level of protection regardless of the network.\n\n5. Integrated User Experience\nTxFort insights are displayed directly within your MetaMask wallet. There is no need to visit external websites or use separate tools; your security analysis is available right where you need it most—at the moment of signing.\n\nHow to Use:\n\n1. Install the Snap: Add TxFort: Security Shield to your MetaMask wallet.\n2. Activate your Profile: Visit https://txfort.com/metamask to connect and initialize your account.\n3. Transact Securely: Every time you initiate a transaction, the TxFort tab in MetaMask will automatically provide you with detailed analysis and security indicators.\n\nProtect your assets and gain confidence in your blockchain interactions with TxFort. Visit https://txfort.com for support and more information.", - "name": "TxFort: Security Shield", - "sourceCode": "https://github.com/txfort/txfort-snap", - "summary": "Real-time transaction analysis, safety warnings, and clear descriptions before you sign.", - "support": { - "contact": "https://www.txfort.com/contact" - } - }, - "versions": { - "1.0.4": { - "checksum": "Kw9QHUASDr8/dwY3ciZ+rG7bIPISDYZ0CGnApeNXs4E=" - } - } - }, - "npm:@unipasswallet/unipass-snap": { - "id": "npm:@unipasswallet/unipass-snap", - "metadata": { - "audits": [ - { - "auditor": "SlowMist", - "report": "https://github.com/UniPassID/UniPass-Snap/blob/main/audits/2023-07-SlowMist%20Audit%20Report.pdf" - } - ], - "author": { - "name": "Account Labs", - "website": "https://www.accountlabs.com/" - }, - "category": "interoperability", - "description": "UniPass is a stablecoin payment product designed to enhance your MetaMask experience by harnessing the power of smart contract wallet capabilities.\n\nAfter installing the Snap, visit the website to connect and explore all the available features.", - "name": "UniPass", - "sourceCode": "https://github.com/UniPassID/UniPass-Snap/", - "summary": "Enhance the stablecoin payment experience with smart contract wallet capabilities.", - "support": { - "contact": "mailto:unipass-snap-support@accountlabs.com", - "faq": "https://accountlabs.notion.site/UniPass-FAQ-f14aee595f694f71812588309e62c5be", - "knowledgeBase": "https://accountlabs.notion.site/UniPass-Document-90ee049fb60b4601a2e3b43e3c5a7e1d" - }, - "website": "https://snap.unipass.xyz/" - }, - "versions": { - "0.1.1": { - "checksum": "ShI025dlcw6qUy79VxlSuy+eWmVkNTfZp4K00sZlQRU=" - } - } - }, - "npm:@unstoppabledomains/unstoppable-resolution-snap": { - "id": "npm:@unstoppabledomains/unstoppable-resolution-snap", - "metadata": { - "author": { - "name": "Unstoppable Domains", - "website": "https://unstoppabledomains.com/" - }, - "category": "name resolution", - "description": "Replace long, complex wallet addresses with an easy-to-read Unstoppable Domain to effortlessly send and receive crypto.\n\nAfter installing the Snap, you will be able to use Unstoppable Domains in the send flow.\n\nPlease note: this Snap is only compatible with MetaMask Extension version 12.4.1 and up, and .x names are only compatible with MetaMask Extension version 12.4.2 and up. Please make sure you are on the latest version of the MetaMask Extension before adding this Snap to MetaMask.", - "name": "Unstoppable", - "screenshots": [ - "./images/@unstoppabledomains/unstoppable-resolution-snap/1.png", - "./images/@unstoppabledomains/unstoppable-resolution-snap/2.png", - "./images/@unstoppabledomains/unstoppable-resolution-snap/3.png" - ], - "sourceCode": "https://github.com/unstoppabledomains/unstoppable-resolution-snap/", - "summary": "Simplify transactions with web3 domains.", - "support": { - "contact": "https://support.unstoppabledomains.com/support/tickets/new", - "faq": "https://unstoppabledomains.com/products/metamask#faq", - "knowledgeBase": "https://unstoppabledomains.com/products/metamask" - } - }, - "versions": { - "1.0.1": { - "checksum": "h04dnOTsyrv6eyXM/c9BGUGFOOZ4AlPxuVUOPMfsnW0=" - } - } - }, - "npm:@usecapsule/account-snap": { - "id": "npm:@usecapsule/account-snap", - "metadata": { - "additionalSourceCode": [ - { - "name": "Multi-Party Sig", - "url": "https://github.com/getpara/multi-party-sig" - } - ], - "audits": [ - { - "auditor": "Least Authority", - "report": "https://leastauthority.com/wp-content/uploads/2024/01/Capsule_MetaMask_Snap_Final_Audit_Report_Least_Authority.pdf" - }, - { - "auditor": "Least Authority", - "report": "https://leastauthority.com/wp-content/uploads/2024/02/Capsule_Signing_and_Permissioning_Toolkit_Updated_2.pdf" - } - ], - "author": { - "name": "Para", - "website": "https://getpara.com/" - }, - "category": "account management", - "description": "The Para Account Management Snap makes it easy to create secure, embedded MPC wallets with an email in the Metamask extension using an authenticator app or passkey. You can also connect to a Para wallet created in any other application. A note that Capsule has recently changed our name to Para. However, our npm package remains named @usecapsule/account-snap, and this is still the correct package.", - "name": "Para", - "privateCode": true, - "sourceCode": "https://github.com/getpara/mm-snap-keyring", - "summary": "MPC wallet that can be used anywhere with just an email", - "support": { - "contact": "mailto:support@getpara.com", - "faq": "https://docs.getpara.com/metamask/faq", - "keyRecovery": "https://github.com/getpara/mpc-export" - }, - "website": "http://snap.app.getpara.com/" - }, - "versions": { - "1.0.0": { - "checksum": "1wurDdau/BhAsdkeL42a+S/CVXwD8AvEV/biMm3ACso=" - } - } - }, - "npm:@ututrust/utu-metamask-snap": { - "id": "npm:@ututrust/utu-metamask-snap", - "metadata": { - "author": { - "name": "UTU Technologies", - "website": "https://utu.io/" - }, - "category": "transaction insights", - "description": "The UTU Trust Snap integrates the full review and reputation capabilities of UTU Protocol into your MetaMask wallet. This allows you to view feedback (star ratings, badges, text and video reviews, and UTU Trust Token (UTT) endorsements) about on-chain addresses from social networks (Telegram, X, and GitHub so far) in real-time as you browse the web, directly in your MetaMask, giving you a layer of 'social security' on top of any technical trust tools like smart contract analyzers that you may use.\n\nThe UTU Trust Snap also enables you to leave signals (star ratings, badges, text and video reviews, and UTT endorsements) about on-chain addresses directly from your MetaMask. When your UTT endorsements help future users find things they end up liking, you earn rewards in reputation (UTT) and cash ($UTU).", - "name": "UTU Trust", - "sourceCode": "https://gitlab.com/ututrust/utu-metamask-snap", - "summary": "View and leave signals on any address or asset", - "support": { - "contact": "mailto:support@utu.io", - "knowledgeBase": "https://docs.utu.io/04-faq/faq.html#id2" - }, - "website": "https://app.utu.io/dashboard?source=snap" - }, - "versions": { - "1.10.13": { - "checksum": "wZmm7zb+sGEEet9C4XHHVlRDA1pym4CLBH+V1bege6M=" - }, - "1.10.15": { - "checksum": "TzjIsdUK6/KwJ9oM1dfbUsLGU1fhgGTsZ2Fs4CBWVJg=" - } - } - }, - "npm:@vegaprotocol/snap": { - "id": "npm:@vegaprotocol/snap", - "metadata": { - "audits": [ - { - "auditor": "OtterSec", - "report": "https://ottersec.notion.site/Vega-Snap-7545db216bee4e128cfcac16d41896b6" - } - ], - "author": { - "name": "Vega", - "website": "https://vega.xyz/" - }, - "description": "Vega is an order book based DEX with no gas fees for trading. Deposit ERC20s and trade on the Vega appchain. Vega markets are created and controlled by the Vega community and any trader operating as a market maker can commit to provide liquidity and share fee revenue.", - "name": "Vega Protocol", - "sourceCode": "https://github.com/vegaprotocol/vega-snap", - "summary": "Trade on a gas-free order book-based DEX by depositing ERC20s.", - "support": { - "contact": "https://vega.xyz/discord" - }, - "website": "https://vegaprotocol.eth.limo/" - }, - "versions": { - "0.3.1": { - "checksum": "YL4cKtHZV6p2KJouMeXMvjCzpOA+4lLk3qfSDNNJZRw=" - }, - "1.0.1": { - "checksum": "CmTs/E+H30LSIIFLcbHosdISjn8Gow/sSPi4PrBQWKE=" - }, - "1.0.2": { - "checksum": "yhZUQOgl3oxKSyUwQa4F+Eh13aJ2ltz7KvBM7VTarxU=" - }, - "1.0.3": { - "checksum": "hM0iRQ77F71/Y1S5AwEF/sO/na/wR5M1uoa5xzMqsA4=" - } - } - }, - "npm:@vital-wallet/neo-snap": { - "id": "npm:@vital-wallet/neo-snap", - "metadata": { - "audits": [ - { - "auditor": "Hacken", - "report": "https://audits.hacken.io/vital-wallet/" - } - ], - "author": { - "name": "Neo", - "website": "https://neo.org/" - }, - "category": "interoperability", - "description": "With Vital, users can easily generate a Neo network address directly through the MetaMask wallet. This integration allows users to interact with the Neo blockchain without the hassle of managing Neo network private keys, offering a seamless and user-friendly experience.", - "name": "Vital Wallet", - "screenshots": [ - "./images/@vital-wallet/neo-snap/1.png", - "./images/@vital-wallet/neo-snap/2.png", - "./images/@vital-wallet/neo-snap/3.png" - ], - "sourceCode": " https://github.com/neo-ngd/neo-metamask-snap.git", - "summary": "Manage accounts on the Neo network.", - "support": { - "contact": "https://discord.com/invite/rvZFQ5382k" - }, - "website": "https://vitalwallet.xyz/" - }, - "versions": { - "0.1.2": { - "checksum": "KZ2eYSxf3G11WNH0fTXKobnneukRviupW0I3qw9QDSU=" - } - } - }, - "npm:@web3-antivirus/web3-antivirus-snap": { - "id": "npm:@web3-antivirus/web3-antivirus-snap", - "metadata": { - "audits": [ - { - "auditor": "Veridise", - "report": "https://f8t2x8b2.rocketcdn.me/wp-content/uploads/2023/11/VAR-Web3AntivirusSnap.pdf" - } - ], - "author": { - "name": "Web3 Antivirus", - "website": "https://web3antivirus.io" - }, - "category": "transaction insights", - "description": "Have your Web3 security guard right in your wallet. W3A Snap simulates transactions, runs thorough checks of all contracts, addresses, and assets you interact with, and evaluates their safety. If it detects any risks such as wallet drainers, honeypots, poisoning attacks, phishing, wash trading, malicious contract logic, scam assets or addresses, etc., you will receive a real-time alert.", - "name": "Web3 Antivirus", - "screenshots": [ - "./images/@web3-antivirus/web3-antivirus-snap/1.jpg", - "./images/@web3-antivirus/web3-antivirus-snap/2.jpg", - "./images/@web3-antivirus/web3-antivirus-snap/3.jpg" - ], - "sourceCode": "https://github.com/web3-antivirus/web3-antivirus-snap", - "summary": "Receive alerts about scams and risks like honeypots, phishing, and malicious contracts.", - "support": { - "contact": "https://web3antivirus.io/support", - "faq": "https://web3antivirus.io/snap/#faq", - "knowledgeBase": "https://web3antivirus.notion.site/W3A-Snap-Knowledge-Base-3158f8369eaa4b5cb5a4bee33108f7fc" - }, - "website": "https://web3antivirus.io/snap/" - }, - "versions": { - "0.1.5": { - "checksum": "//46Lf2S2PUtQB/rodthHFQsvXmEgEWuLhgBeHjimcQ=" - } - } - }, - "npm:@web3-name-sdk/snap": { - "id": "npm:@web3-name-sdk/snap", - "metadata": { - "audits": [ - { - "auditor": "SlowMist", - "report": "https://github.com/slowmist/Knowledge-Base/blob/master/open-report-V2/blockchain-application/SlowMist%20Audit%20Report%20-%20web3-name-snap_en-us.pdf" - } - ], - "author": { - "name": "SPACE ID", - "website": "https://space.id/" - }, - "category": "name resolution", - "description": "SPACE ID Web3 Domain Snap allows you to easily transfer assets using domain names instead of complex wallet addresses. It resolves top-level  domain names and Payment IDs issued on the SPACE ID platform, significantly simplifying transactions within MetaMask.\n\n- Top-Level Domains (TLDs) names, such as jerry.bnb\n\nSPACE ID Web3 Domain Snap resolves domain names across all EVM-compatible chains in MetaMask, supporting a wide range of domain name services such as .bnb, eth, .ip, .arb, .g, .mph, .wod, .duck, .zeta, .mode, .taiko, .mint, .manta, .zkf, .floki, .cake, .merlin, .tomo, and more (https://space.id/tld). \n\n- Payment ID, such as jerry@binance\n\nUsers can register a Payment ID on SPACE ID and link it to supported CEX addresses on both EVM-compatible chains (Ethereum, BNB Chain, Arbitrum, etc.) and non-EVM networks such as Bitcoin, Solana, TRON, Aptos, and Sui. Additionally, they can associate their Payment ID with frequently used wallets and on-chain addresses. The SPACE ID Web3 Domain Snap allows seamless resolution of all registered Payment IDs within MetaMask, streamlining transactions effortlessly.\n\nGet Started Easily:\n\n- Upgrade your Metamask to the latest version (https://support.metamask.io/configure/wallet/how-to-update-the-version-of-metamask/) to leverage all the features \n- Enable secure & simple transactions: Download SPACE ID Snaps from https://space.id/metamask\n- Register a domain or Payment ID if you haven’t yet: https://space.id\n\nNote: Make sure your MetaMask extension is up to date before downloading the SPACE ID Snap: https://support.metamask.io/managing-my-wallet/using-metamask/how-to-update-the-version-of-metamask/ \n\nHelpful Tutorials:\n\n- Update MetaMask: https://support.metamask.io/\n- Register a domain and a Payment ID: https://space.id/\n- Download SPACE ID Snaps https://space.id/metamask/\n- SPACE ID Snap Knowledge Base: https://docs.space.id/getting-started/using-domain-on-metamask-snap\n\nJoin Our Community:\n\n- X (formerly Twitter): https://x.com/SpaceIDProtocol/\n- Discord: https://discord.com/invite/spaceid/\n- Telegram: https://t.me/spaceid_news/\n- LinkedIn: https://linkedin.com/\n\nStay updated with the latest news on our blog (https://blog.space.id/) and our Youtube channel (https://www.youtube.com/@SPACEID-web3domains/). Unlock the power of decentralized identities, easier on-chain interactions, and secure and simplified payments with SPACE ID!", - "name": "SPACE ID Web3 Domain", - "screenshots": [ - "./images/@web3-name-sdk/snap/1.png", - "./images/@web3-name-sdk/snap/2.png", - "./images/@web3-name-sdk/snap/3.png" - ], - "sourceCode": "https://github.com/Space-ID/web3-name-snap", - "summary": "Easily transfer assets using domain names and Payment IDs instead of complex wallet addresses.", - "support": { - "contact": "https://discord.gg/spaceid", - "faq": "https://docs.space.id/getting-started/using-domain-on-metamask-snap-releasing/general-faq", - "knowledgeBase": "https://docs.space.id/getting-started/using-domain-on-metamask-snap-releasing/knowledge-base" - }, - "website": "https://space.id/metamask/" - }, - "versions": { - "0.0.7": { - "checksum": "xXoZsokWq7tBx+fuqWXZoWG/CcTT+IYbKYFCieRoaEk=" - } - } - }, - "npm:@web3mq/snap": { - "id": "npm:@web3mq/snap", - "metadata": { - "audits": [ - { - "auditor": "Least Authority", - "report": "https://github.com/MetaMask/snaps-registry/files/12604989/Least_Authority_Generative_Labs_MetaMask_Snap_Updated_Final_Audit.pdf" - } - ], - "author": { - "name": "Web3MQ", - "website": "https://www.web3mq.com/" - }, - "category": "notifications", - "description": "Web3-native decentralized communication protocol. Encrypted, efficient and borderless.\n\nWeb3MQ Snap provides more possibilities for building web3 social dapps. The website shows you an example of how it works. Read the documentation on GitHub to learn how to integrate the Snap with your dapp.", - "name": "Web3MQ", - "sourceCode": "https://github.com/Generative-Labs/Web3MQ-Snap", - "summary": "Web3-native decentralized communication protocol. Encrypted, efficient, and borderless.", - "support": { - "faq": "https://s3labs.notion.site/Web3MQ-Snap-Frequently-Asked-Questions-c705bcf4a0604b85830cca2283d0ab7b" - }, - "website": "https://web3mq-snap-demo.pages.dev/" - }, - "versions": { - "1.0.0": { - "checksum": "YeL3PfCT8hjTTHED2AD0BvsbkjNEjmC3pLxzjgXLFqE=" - } - } - }, - "npm:@xmtp/snap": { - "id": "npm:@xmtp/snap", - "metadata": { - "audits": [ - { - "auditor": "Least Authority", - "report": "https://leastauthority.com/blog/audits/audit-of-xmtp-metamask-snap/" - } - ], - "author": { - "name": "XMTP", - "website": "https://xmtp.org/" - }, - "category": "interoperability", - "description": "Use the “Sign in with XMTP” MetaMask Snap to securely and conveniently sign in to any web app built with XMTP.\n\nWhen you install the Snap, you give it permission to store your XMTP user keys in MetaMask secure storage. From then on, when you use an app you've authorized to work with Sign in with XMTP, the Snap seamlessly and securely allows the app to use those keys without accessing the key material directly, enabling you to start messaging without needing to provide a signature.", - "name": "Sign in with XMTP", - "sourceCode": "https://github.com/xmtp/snap", - "summary": "Securely sign in to any web app built with XMTP.", - "support": { - "contact": "mailto:support@xmtp.com", - "knowledgeBase": "https://xmtp.org/docs/tutorials/other/xmtp-metamask-snap" - }, - "website": "https://xmtp.org/docs/tutorials/other/xmtp-metamask-snap" - }, - "versions": { - "1.2.2": { - "checksum": "pHhTGrqjGkNoK/2wb64Zqxpo3TFnE2a5smfVt45VCRM=" - }, - "1.3.0": { - "checksum": "BIA5ZOGiZZrlYgJx6sdk0ifx+qMoOcaZO8dBBU3w5QA=" - }, - "1.3.6": { - "checksum": "nSaMsID9TJhlwTnR/oAoNTYVm/2IBEDzPVJbaFVwpSI=" - }, - "1.3.7": { - "checksum": "42saDUqoadEmdlwxBhkhDgbZIln1IKzuA6Xs7prmrEM=" - } - } - }, - "npm:@xrpname/snap": { - "id": "npm:@xrpname/snap", - "metadata": { - "author": { - "name": "XRP Web3 Identity", - "website": "https://xrpdomains.xyz" - }, - "category": "name resolution", - "description": "The XRP Name Snap simplifies your transactions with XRPName on MetaMask-transfer assets using xrp names instead of complex wallet addresses.\n\n\n\nCheck out our tutorials:\n\nRegister a xrp name: https://xrpdomains.xyz/app\nLink your EVM wallet to your xrp name: https://xrpdomains.xyz/ens\nDownload XRPName Snap: https://xrpdomains.xyz/snap", - "name": "XRP Name", - "sourceCode": "https://github.com/XRPDomains/XRPNameSnap", - "summary": "Transfer assets using xrp names instead of complex wallet addresses.", - "support": { - "contact": "info@xrpdomains.xyz", - "knowledgeBase": "https://xrpdomains.xyz/snap" - }, - "website": "https://xrpdomains.xyz/snap" - }, - "versions": { - "0.1.3": { - "checksum": "sjrISl4jK3Cx1QeHZsdKX6SE+QEnb3II0BEM7S7UZx8=" - } - } - }, - "npm:@xtreamly/xtreamly_slippage_predictor": { - "id": "npm:@xtreamly/xtreamly_slippage_predictor", - "metadata": { - "audits": [ - { - "auditor": "Sayfer", - "report": "https://sayfer.io/audits/metamask-snap-audit-report-for-xtreamly/" - } - ], - "author": { - "name": "Xtreamly", - "website": "https://info.xtreamly.io" - }, - "category": "transaction insights", - "description": "Xtreamly slippage prediction Snap provides insights and predicts slippage as well as volatility on DeX swaps.\n\nAfter installing the Snap, you will see the insights when swapping with ETH/USDT and ETH/USDC pairs on Uniswap V3.", - "name": "Xtreamly Slippage Predictor", - "screenshots": [ - "./images/@xtreamly/xtreamly_slippage_predictor/1.jpg", - "./images/@xtreamly/xtreamly_slippage_predictor/2.jpg", - "./images/@xtreamly/xtreamly_slippage_predictor/3.jpg" - ], - "sourceCode": "https://github.com/Xtreamly-Team/Slippage-Snap", - "summary": "Predict slippage and volatility in dynamic crypto markets.", - "support": { - "contact": "mailto:info@xtreamly.io", - "faq": "https://info.xtreamly.io/", - "knowledgeBase": "https://info.xtreamly.io/xtreamly-transforming-ethereum-with-ai-driven-liquidity-growth/product/snaps-user-guide" - }, - "website": "https://snap.xtreamly.io/" - }, - "versions": { - "1.0.25": { - "checksum": "1UXosQmu9xauCoCG0V2gF18rxnWL4tbjEnbJloKAUBQ=" - } - } - }, - "npm:@yigitkara/chain-guardian": { - "id": "npm:@yigitkara/chain-guardian", - "metadata": { - "author": { - "name": "YigitKara", - "website": "https://chain-guardian-site.vercel.app/" - }, - "category": "transaction insights", - "description": "Chain Guardian protects your crypto transactions from one of the most common and costly mistakes in web3: sending funds to an address on the wrong blockchain network. HOW IT WORKS\n\nEvery time you send a transaction in MetaMask, Chain Guardian automatically analyzes the destination address and checks if it is compatible with the network you are currently on. The result appears directly in your transaction confirmation screen before you click confirm. WHAT IT DETECTS\n\nChain Guardian currently detects address format mismatches for the following networks:\n- EVM chains (Ethereum, Polygon, BNB Smart Chain, Avalanche, Optimism, Arbitrum, Base, and more)\n- Solana\n- Bitcoin (Legacy, SegWit, and Bech32 formats)\n- Tron\n- XRP / Ripple\n- Litecoin\n- Cardano\n- Cosmos\n- Polkadot\n- Stellar WHAT YOU SEE\n\nGreen checkmark: The destination address format is compatible with your current network. Safe to proceed.\n\nRed warning: The destination address looks like it belongs to a different blockchain. Your funds would be permanently lost if you proceed. Chain Guardian will also suggest bridges you can use to send your funds to the correct network. Yellow warning: The address format is unrecognized. Proceed only if you are certain the address is correct. HOW TO USE IT\n\nInstall Chain Guardian and it works automatically. No configuration needed. Every transaction you initiate in MetaMask will be analyzed instantly. Source code: https://github.com/YigitKara/chain-guardian\nPackage: https://www.npmjs.com/package/@yigitkara/chain-guardian", - "name": "Chain Guardian", - "sourceCode": "https://github.com/YigitKara/chain-guardian", - "summary": "Never send crypto to the wrong chain again.", - "support": { - "contact": "https://github.com/YigitKara/chain-guardian/issues", - "knowledgeBase": "https://github.com/YigitKara/chain-guardian/blob/main/packages/snap/README.md" - } - }, - "versions": { - "0.1.3": { - "checksum": "z1Z5zz7zI8qpGLFErKa+xvx+fHaO60ny8CTY5WI+rvU=" - } - } - }, - "npm:@zenchain-protocol/zazen": { - "id": "npm:@zenchain-protocol/zazen", - "metadata": { - "author": { - "name": "Zenchain", - "website": " https://zenchain.io/" - }, - "category": "interoperability", - "description": "Zazen Snap: Secure Cloud Access Key Management within MetaMask\n\nZazen is a MetaMask Snap that provides a secure, encrypted storage solution for your Zenchain validator node cloud access keys directly within MetaMask. By integrating key management into your wallet, Zazen simplifies the process of deploying and accessing your validator nodes without the need for external password managers or manual key handling.\n\n\nKey Features:\n\n- Secure Storage: Zazen encrypts your cloud access keys, storing them securely within MetaMask's storage. This ensures that your sensitive information remains protected at all times.\n- Easy Access: Quickly deploy or log into your validator nodes without the hassle of managing keys externally. Zazen streamlines your workflow by keeping everything within MetaMask.\n- Future Expansion: Planned features include support for additional types of sensitive data and enhanced key management functionalities, providing greater flexibility and utility.\nTechnical and Security Considerations:\n\n- Encrypted Storage: Your keys are encrypted and stored securely within MetaMask's storage, accessible only when MetaMask is unlocked.\n- Permissions: Zazen requires the snap_manageState permission to manage the encrypted state within MetaMask.\n- Open-Source: Zazen is open-source, allowing transparency and community contributions to enhance security and functionality.\n- MetaMask Integration: Seamlessly integrates with MetaMask, ensuring a smooth and secure user experience without the need for additional software.", - "name": "Zazen", - "screenshots": [ - "./images/@zenchain-protocol/zazen/1.png", - "./images/@zenchain-protocol/zazen/2.png", - "./images/@zenchain-protocol/zazen/3.png" - ], - "sourceCode": "https://github.com/zenchain-protocol/zazen", - "summary": "Manage Zenchain validator node cloud access keys.", - "support": { - "contact": "https://github.com/zenchain-protocol/zazen/issues", - "faq": "https://docs.zenchain.io/docs/become-a-validator/zazen-snap-faq", - "knowledgeBase": "https://docs.zenchain.io/docs/become-a-validator/zazen-snap-knowledge-base" - }, - "website": "https://node.zenchain.io/" - }, - "versions": { - "0.0.6": { - "checksum": "qFquENdgWP6N7pRTHMcLDx0Geyljy8WFMzXycHTs2+o=" - } - } - }, - "npm:aegis-snap": { - "id": "npm:aegis-snap", - "metadata": { - "author": { - "name": "Lossless", - "website": "https://aegis.lossless.io/" - }, - "category": "transaction insights", - "description": "Lossless Aegis Insights is an add-on designed to analyze smart contracts without the need to interact with them. It provides reports and risk scores that help you assess the risks associated with both known and unknown smart contracts, helping you keep your funds safe.\nFeatures:\n- Easy setup\n- Wallet security, through transaction analysis\n- Get a risk score, assessment before committing a transaction\n- Get initial analysis of the address you will be interacting with.", - "name": "Lossless Aegis Insights", - "screenshots": [ - "./images/aegis-snap/1.png", - "./images/aegis-snap/2.png", - "./images/aegis-snap/3.png" - ], - "sourceCode": "https://github.com/Lossless-Cash/aegis-snap/", - "summary": "Enhance web3 safety by scanning smart contracts before interaction.", - "support": { - "contact": "mailto:hello@lossless.io", - "faq": "https://aegis.lossless.io/snap/" - }, - "website": "https://aegis.lossless.io/snap/" - }, - "versions": { - "0.2.1": { - "checksum": "2Y+1OTNbMoH8dBk5xBTNLhpG+GZEfa3KC9H2p2aL8fg=" - } - } - }, - "npm:ans-mmsnap": { - "id": "npm:ans-mmsnap", - "metadata": { - "author": { - "name": "Novalink", - "website": "https://www.novalink.tech/" - }, - "category": "name resolution", - "description": "The AutonomysNameService Snap provides name resolution services for Autonomys Name Service (ANS). It enables users to resolve domain names to Ethereum addresses directly within MetaMask.\n\nEvery user in the Autonomys network can call the `ANS Contract`(0xbdF673bd60232917Ce960AD268a8bF6441CeFDdD) to register their own ans domain name.\n\nFeatures: \n\n- Resolves domain names to Ethereum addresses\n- Integrates seamlessly with MetaMask\n- Directly interacts with ANS smart contracts through MetaMask for maximum security (no additional network calls)\n- Supports reverse resolution (coming soon).", - "name": "AutonomysNameService", - "sourceCode": "https://github.com/AetherLinkLabs/ans-mmsnap", - "summary": "Resolve Autonomys Name Service (ANS) domains to addresses.", - "support": { - "contact": "https://github.com/AetherLinkLabs/ans-mmsnap/issues/new", - "knowledgeBase": "https://github.com/AetherLinkLabs/ans-mmsnap/" - }, - "website": "https://autonomys.site/" - }, - "versions": { - "0.1.3": { - "checksum": "EczXi0rJR5XaXr804YNz3x326bS6PxJwoMz0ps/rhHc=" - } - } - }, - "npm:azero-wallet": { - "id": "npm:azero-wallet", - "metadata": { - "audits": [ - { - "auditor": "Sayfer", - "report": "https://sayfer.io/audits/metamask-snap-audit-report-for-alephzero/" - } - ], - "author": { - "name": "Bide", - "website": "https://bide.dev/" - }, - "category": "interoperability", - "description": "With Aleph Zero Wallet, you can send transaction in native asset of Aleph Zero network, and sign transactions and messages using your MetaMask wallet.", - "name": "Aleph Zero Wallet", - "sourceCode": "https://github.com/bide-dev/azero-wallet/tree/main/packages/snap", - "summary": "Transact and sign messages on the Aleph Zero network.", - "support": { - "contact": "mailto:support@bide.dev", - "faq": "https://bide-dev.github.io/azero-wallet/faq.html", - "knowledgeBase": "https://bide-dev.github.io/azero-wallet/" - }, - "website": "https://azero.dev/" - }, - "versions": { - "0.3.4": { - "checksum": "Yj5GtWV5+Wu6T4cszpsY26qbxA8+S10lbShM2jKYqbo=" - }, - "0.3.6": { - "checksum": "VtlEruX2c9v+92vQLvD4x0OMfGpoLK6/w9+QDqJkLgs=" - } - } - }, - "npm:bch-snap": { - "id": "npm:bch-snap", - "metadata": { - "audits": [ - { - "auditor": "Sayfer", - "report": "https://sayfer.io/audits/metamask-snap-audit-report-for-fexcash/" - } - ], - "author": { - "name": "Fex.Cash", - "website": "https://fex.cash" - }, - "category": "interoperability", - "description": "BCH Wallet is a MetaMask Snap built by the Fex.Cash team. It has the following features:\n\n1.⁠ ⁠Manage multiple BCH accounts\n\n2.⁠ ⁠Manage fungible token(FT) assets, including bch and cashtokens.\n\n3.⁠ ⁠Manage non-fungible token (NFT) assets, currently supporting CRC721 NFTs.\n\n4.⁠ ⁠View wallet transaction history.\n\n5.⁠ ⁠Sign the transactions.", - "name": "Bitcoin Cash Wallet", - "sourceCode": "https://github.com/fex-cash/bch-snap", - "summary": "Manage Bitcoin Cash and cashtoken assets.", - "support": { - "contact": "https://t.me/fexcash_disscusion", - "faq": "https://docs.fex.cash/wallet/snaps", - "knowledgeBase": "https://github.com/fex-cash/bch-snap/tree/main/packages/snap" - }, - "website": "https://fex.cash" - }, - "versions": { - "0.1.1": { - "checksum": "pyRkBzZcJWx8LywORfnkh6PyhgCuqb6sC9xLX35yyK0=" - } - } - }, - "npm:beranames_resolver": { - "id": "npm:beranames_resolver", - "metadata": { - "author": { - "name": "Berakin", - "website": "https://berakin.io/" - }, - "category": "name resolution", - "description": "Replace long, complex wallet addresses with an easy-to-read Beraname to effortlessly send and receive crypto.\n\nAfter installing the Snap, you will be able to use .bera and .🐻⛓️ names in the send flow.", - "name": "Beranames Resolver", - "screenshots": [ - "./images/beranames_resolver/1.jpg", - "./images/beranames_resolver/2.jpg", - "./images/beranames_resolver/3.jpg" - ], - "sourceCode": "https://github.com/Beranames/beranames-resolution-snap", - "summary": "The official name service of Berachain", - "support": { - "contact": "mailto:lethale@berakin.io", - "faq": "https://docs.beranames.com/integrate/how-to-use-beranames-with-metamask", - "knowledgeBase": "https://docs.beranames.com/" - }, - "website": "https://beranames.com/" - }, - "versions": { - "1.0.1": { - "checksum": "IdP6dEHAS46UnQaqAZajBPqJm/pOh1rtMzWHPfeAxkc=" - } - } - }, - "npm:bitbadges-snap": { - "id": "npm:bitbadges-snap", - "metadata": { - "author": { - "name": "BitBadges", - "website": "https://bitbadges.io/" - }, - "category": "transaction insights", - "description": "The BitBadges Snap allows you to gain insights into a user's BitBadges portfolio, allowing you to learn about their digital identity.\n\nIt scans relevant addresses from a transaction and checks / displays custom criteria requirements, such as badge / NFT ownership, credentials, lists, protocols, attestations, and more. Connect BitBadges with any chain or any app (over 7000+ supported).", - "name": "BitBadges", - "screenshots": [ - "./images/bitbadges-snap/1.png", - "./images/bitbadges-snap/2.png", - "./images/bitbadges-snap/3.png" - ], - "sourceCode": "https://github.com/bitbadges/bitbadges-snap", - "summary": "Gain insights into a user's BitBadges portfolio.", - "support": { - "contact": "https://discord.com/invite/TJMaEd9bar", - "knowledgeBase": "https://docs.bitbadges.io/overview/metamask-snap" - }, - "website": "https://bitbadges.io/snap" - }, - "versions": { - "0.1.1": { - "checksum": "8jMPCa9lCgK3ZTVLvXcnBmRBxvi75YRHWt7OXasukmE=" - } - } - }, - "npm:blockfence-insights": { - "id": "npm:blockfence-insights", - "metadata": { - "audits": [ - { - "auditor": "Least Authority", - "report": "https://leastauthority.com/blog/audits/audit-of-blockfence-metamask-snap/" - } - ], - "author": { - "name": "Blockfence", - "website": "https://blockfence.io/" - }, - "category": "transaction insights", - "description": "Blockfence empowers you to evaluate the safety of your transactions before giving them a green light. This ensures you steer clear of scams and fraudulent activities. Moreover, Blockfence Snap consolidates information from industry security leaders, providing clarity on the dapps you engage with, the contracts you transact with, and much more.\n\nAfter installing the Snap, you will see it in the transaction confirmation window.", - "name": "Blockfence", - "sourceCode": "https://github.com/blockfence-io/snap-insights", - "summary": "Blockfence empowers you to evaluate the safety of your transactions before giving them a green light. This ensures you steer clear of scams and fraudulent activities.", - "support": { - "contact": "mailto:support@blockfence.io", - "faq": "https://blockfence.io/snap/" - }, - "website": "https://blockfence.io/snap/" - }, - "versions": { - "0.1.2": { - "checksum": "vcMyFWDfB2eKE1pBjCE8E+2ZkZKsm+uQQDhoLGsZk8Y=" - } - } - }, - "npm:btcsnap": { - "id": "npm:btcsnap", - "metadata": { - "audits": [ - { - "auditor": "SlowMist", - "report": "https://github.com/slowmist/Knowledge-Base/blob/master/open-report-V2/blockchain-application/SlowMist%20Audit%20Report%20-%20BTCSnap_en-us.pdf" - } - ], - "author": { - "name": "Account Labs", - "website": "https://www.accountlabs.com/" - }, - "description": "Zion is the world's first application allowing users to directly manage Bitcoin within the MetaMask interface, without having to wrap tokens.\n\nAfter installing the Snap, visit the website to manage your Bitcoin accounts.", - "name": "Zion", - "sourceCode": "https://github.com/snapdao/btcsnap", - "summary": "Manage Bitcoin directly without wrapping tokens.", - "support": { - "contact": "mailto:snap@accountlabs.com", - "faq": "https://btc.justsnap.io/faq", - "knowledgeBase": "https://btc.justsnap.io/base-knowledge" - }, - "website": "https://btc.justsnap.io/" - }, - "versions": { - "2.0.3": { - "checksum": "Ci79gfFXP8eVY9fnvOFuOHycz7QairyYhbzbcuCKrNY=" - } - } - }, - "npm:casper-manager": { - "id": "npm:casper-manager", - "metadata": { - "audits": [ - { - "auditor": "Halborn", - "report": "https://github.com/casper-ecosystem/casper-manager/blob/main/audits/20_06_2023_Casper_Management_Snap_App_WebApp_Pentest_Report_Halborn_Final.pdf" - } - ], - "author": { - "name": "Div3", - "website": "https://casperholders.io/" - }, - "category": "interoperability", - "description": "Sign deploys and messages for the Casper Blockchain with your Casper account(s).\n\nAfter installing, visit the website to interact with the Casper Blockchain. You can also connect to the block explorer at https://div3.in", - "name": "Casper Manager", - "sourceCode": "https://github.com/casper-ecosystem/casper-manager", - "summary": "Sign deploys and messages for the Casper Blockchain with your Casper account(s).", - "support": { - "contact": "https://discord.com/invite/casperblockchain", - "faq": "https://github.com/casper-ecosystem/casper-manager/blob/main/FAQ.md" - }, - "website": "https://testnet.casperholders.io/" - }, - "versions": { - "1.0.3": { - "checksum": "QrcMLvXc2lTNWdgzWeMp83YUAk3XIUs27Ivm7iizD60=" - }, - "1.0.4": { - "checksum": "tV4HOIewc7A1oy9cZlJQ6Qn5ekmJmy3Ek6e0tSiUQsA=" - }, - "2.0.0": { - "checksum": "wNt6SCJZ2/2EMvv22pNJB8Ti0oWkjDll0PNs6Z+Fnmk=" - } - } - }, - "npm:dedaub-metamask-snap": { - "id": "npm:dedaub-metamask-snap", - "metadata": { - "audits": [ - { - "auditor": "Cure53", - "report": "https://cure53.de/pentest-report_dedaub-metamask-snap.pdf" - } - ], - "author": { - "name": "Dedaub", - "website": "https://dedaub.com/" - }, - "category": "transaction insights", - "description": "The Dedaub Transaction Simulator Snap is a tool that helps users simulate financial transactions. It allows users to verify the authenticity and credibility of the accounts involved and calculate the financial outcomes of their actions. The tool uses the Smart Contract database of Dedaub Watchdog in real-time, providing users with up-to-date and comprehensive information to make informed decisions.\n\nAfter installing the Snap, it will appear in the transaction confirmation screen.", - "name": "Dedaub", - "sourceCode": "https://github.com/Dedaub/metamask-snap", - "summary": "Simulate transactions, verify reputation, and calculate financial impact.", - "support": { - "faq": "https://docs.dedaub.com/docs/snap/faq", - "knowledgeBase": "https://docs.dedaub.com/docs/snap/introduction" - } - }, - "versions": { - "1.0.6": { - "checksum": "8+4DZuIMeHUT5HGvSnVXNWQnEBOX2Sti/iBE349dB2E=" - } - } - }, - "npm:defi-armor-snap": { - "id": "npm:defi-armor-snap", - "metadata": { - "audits": [ - { - "auditor": "Cure53", - "report": "https://github.com/Eulith/eulith-metamask-snap/blob/master/audit-report.pdf" - } - ], - "author": { - "name": "Eulith", - "website": "https://www.eulith.com/" - }, - "category": "transaction insights", - "description": "The DeFi Armor Snap brings the transaction simulation and policy engine of our standalone DeFi Armor product to MetaMask. Every transaction is deep-simulated and checked against our curated, customizable security policy. Any transfer of ETH or ERC-20 assets will be detected, even if it is deep inside the call stack. Warnings are issued when a transaction fails the security policy, along with a detailed explanation of what went wrong.", - "name": "DeFi Armor", - "sourceCode": "https://github.com/Eulith/eulith-metamask-snap", - "summary": "Protect on-chain assets with transaction simulation and a security policy.", - "support": { - "contact": "mailto:snap-support@eulith.com", - "faq": "https://docs.google.com/document/d/1ZA-sUHE0a8e1kViCfG3xM9hm3vpZh_ZNcZ0xP-9JpLs/edit", - "knowledgeBase": "https://docs.google.com/document/d/1ZA-sUHE0a8e1kViCfG3xM9hm3vpZh_ZNcZ0xP-9JpLs/edit" - }, - "website": "https://www.eulith.com/" - }, - "versions": { - "0.2.3": { - "checksum": "fd+wiJngXnDU/6Lt8tH7hQmyDTVLQsrVtQhyXqsFU60=" - }, - "0.2.4": { - "checksum": "M/AEe8l8UV+lIL0lqdlgFyDhoZ+IDysZ3r//tVXC2Ts=" - }, - "0.2.5": { - "checksum": "hp4PBkTppEaWdIlrKnM7801rAimN4Y9t1+AB59yFHB4=" - } - } - }, - "npm:dmail-snap": { - "id": "npm:dmail-snap", - "metadata": { - "author": { - "name": "Dmail", - "website": "https://dmail.ai/" - }, - "category": "notifications", - "description": "Users in Metamask can receive email alerts and notifications from the Dmail network right in their wallet interface after installing the Dmail Snap.\n\nOnce connected successfully, users will be notified of any new emails sent to their wallet address through the Dmail decentralized email system.\n\nThe notifications can be viewed directly within MetaMask, providing a seamless experience for managing both transactions and decentralized communications in one place.\n\nThis integration brings email functionality natively into MetaMask, making it easier to stay updated on Dmail messages without needing to constantly check the Dmail dApp interface.", - "name": "Dmail", - "screenshots": [ - "./images/dmail-snap/1.jpg", - "./images/dmail-snap/2.jpg", - "./images/dmail-snap/3.jpg" - ], - "sourceCode": "https://github.com/dmail-core/snap", - "summary": "You can receive e-mail notifications from the Dmail network in MetaMask.", - "support": { - "contact": "mailto:contact@mail.dmail.ai", - "faq": "https://t.me/dmailofficial", - "knowledgeBase": "https://dmailnetwork.gitbook.io/dmail-network" - }, - "website": "https://dmail.ai/" - }, - "versions": { - "0.1.6": { - "checksum": "pzKVgqs6yZsanDpAUH8zITn1Yk2+XEAfFfmwYsFnKr4=" - } - } - }, - "npm:filsnap": { - "id": "npm:filsnap", - "metadata": { - "audits": [ - { - "auditor": "Consensys Diligence", - "report": "https://consensys.io/diligence/audits/2023/08/metamask/partner-snaps-filsnap/" - } - ], - "author": { - "name": "Filecoin Foundation", - "website": "https://fil.org/" - }, - "category": "interoperability", - "description": "Adds Filecoin support to the MetaMask extension.\n\nFeatures:\n- Enables dapps access to Filecoin accounts using MetaMask.\n- Manage Filecoin accounts, check balance, address, export private key and more.\n- Send and receive FIL from native and FEVM addresses.\n- Sign Filecoin messages and arbitrary data.\n- Send Filecoin messages and estimate gas fees.\n- Transaction and signature insights for FEVM and Filecoin Onchain Cloud operations.\n- UCAN signature insights for EIP191 signers.", - "name": "Filecoin Wallet", - "screenshots": [ - "./images/filsnap/1.png", - "./images/filsnap/2.png", - "./images/filsnap/3.png" - ], - "sourceCode": "https://github.com/filecoin-project/filsnap/", - "summary": "Manage Filecoin native accounts within MetaMask.", - "support": { - "contact": "mailto:filecoin-snap@fil.org" - }, - "website": "https://filsnap.dev/" - }, - "versions": { - "1.10.4": { - "checksum": "mBnXqhB8kWQQ2L7/FX4SoY/jk0qG6cH0JPAQoG/lxa4=" - } - } - }, - "npm:freename-resolution-snap": { - "id": "npm:freename-resolution-snap", - "metadata": { - "author": { - "name": "Freename AG", - "website": "https://freename.io" - }, - "category": "name resolution", - "description": "The Freename Resolution Snap enhances your MetaMask wallet by integrating with the Freename Resolution API. With this Snap, you can resolve domain names across multiple providers, including Freename, ENS, Unstoppable Domains, and more, directly to their on-chain addresses.\n\nThis Snap leverages the official Snap SDK to provide seamless domain resolution, making it easier than ever to manage and interact with decentralized domain names through MetaMask.", - "name": "Freename Web3 Resolver", - "screenshots": [ - "./images/freename-resolution-snap/1.jpg", - "./images/freename-resolution-snap/2.jpg", - "./images/freename-resolution-snap/3.jpg" - ], - "sourceCode": "https://github.com/FreenameDomains/freename-resolution-snap", - "summary": "Adds domain resolution, supporting Freename, ENS, Unstoppable Domains, and more.", - "support": { - "contact": "https://freename.io", - "faq": "https://freename-1.gitbook.io/freename-docs/freename-web3-resolver/faq", - "knowledgeBase": "https://freename-1.gitbook.io/freename-docs/freename-web3-resolver/knowledge-base" - } - }, - "versions": { - "1.0.6": { - "checksum": "U/l83hOSMVwBr4Y9AD76Nlm1fNM5s3wNwiyce75IR1Q=" - } - } - }, - "npm:genius-miners-lite": { - "id": "npm:genius-miners-lite", - "metadata": { - "author": { - "name": "Shades", - "website": "https://github.com/poundbang" - }, - "category": "interoperability", - "description": "Genius Miners Lite is a read-only query of Genius miners for an account. Users install Genius Miners Lite to view their miners. They simply need to click `Vew Miners` button and the snap will query their connected miner's account on chain. It will then calculate miner's earnings and present the user with a table of miners and their parameters, including earnings, shares, principal and other pertinent information Genius users would like to know about their miners.", - "name": "Genius Miners Lite", - "screenshots": [ - "./images/genius-miners-lite/1.png", - "./images/genius-miners-lite/2.png", - "./images/genius-miners-lite/3.png" - ], - "sourceCode": "https://github.com/poundbang/genius-miners-lite", - "summary": "View Genius Financial Contract miners with snapshot earnings and contract state details.", - "support": { - "contact": "mailto:poundbang@gmail.com", - "faq": "https://github.com/poundbang/genius-miners-lite#readme", - "knowledgeBase": "https://github.com/poundbang/genius-miners-lite#readme" - } - }, - "versions": { - "0.1.5": { - "checksum": "y7Kl0chL6jhIXjX2pcKe0A71OdmGHE7zcyQjWdWpckI=" - } - } - }, - "npm:getheminames_resolver": { - "id": "npm:getheminames_resolver", - "metadata": { - "author": { - "name": "getHemiNames Resolver", - "website": "https://unstoppabledomains.com/" - }, - "category": "name resolution", - "description": "Simplify your cryptocurrency experience with HemiNames, the innovative solution that transforms complex blockchain interactions into user-friendly experiences. HemiNames replaces those intimidating, error-prone 42-character wallet addresses with intuitive, memorable .hemi domains that anyone can easily read, type, and share. This revolutionary naming system allows for seamless sending and receiving of digital assets across the cryptocurrency ecosystem, eliminating the anxiety of potential address errors that could result in lost funds.\n\nBy simply installing the MetaMask Snap, you'll instantly enable .hemi name resolution within your existing send flow, creating a frictionless transaction experience without changing your familiar workflow. HemiNames bridges the gap between technical blockchain complexity and everyday usability, making cryptocurrency accessible to everyone from seasoned traders to complete newcomers.", - "name": "getHemiNames Resolver", - "screenshots": [ - "./images/getheminames/1.png", - "./images/getheminames/2.png", - "./images/getheminames/3.png" - ], - "sourceCode": "https://github.com/getHemiNames/getHemiNames-resolution-snap", - "summary": "Simplify crypto transactions by replacing long wallet addresses with easy-to-read HemiNames for seamless sending and receiving.", - "support": { - "contact": "https://discord.com/invite/hemixyz", - "faq": "https://discord.com/invite/hemixyz", - "knowledgeBase": "https://explorer.hemi.xyz/" - } - }, - "versions": { - "0.1.3": { - "checksum": "qGq6KkKi1lDzr00zoIN4GgDc8CHYsjUhMzaYtY0bKcQ=" - } - } - }, - "npm:hapilabs-snap": { - "id": "npm:hapilabs-snap", - "metadata": { - "audits": [ - { - "auditor": "Hacken", - "report": "https://hacken.io/audits/hapi-snap/" - } - ], - "author": { - "name": "HAPI", - "website": "https://hapi.one/" - }, - "category": "transaction insights", - "description": "HAPI Snap, developed by the HAPI Team, is an advanced tool for blockchain threat detection, providing users with the means to protect their digital assets from potential risks.\n\nMain Features:\n\n1. Data Aggregation: Gathers comprehensive threat data from diverse sources.\n\n2. AI Threat Detection: Utilizes AI for real-time risk assessment.\n\n3. Wallet Security Enhancement: Offers transaction analysis, phishing protection, and alerts.\n\n4. Free Access: Enables thorough due diligence without cost.\n\nAdvantages:\n\n- Superior Protection: Shields against a wide range of blockchain threats.\n\n- Informed Transactions: Facilitates educated decision-making with detailed threat data.\n\n- User-Friendly: Simple and automated monitoring for ease of use.\n\n- Cost-Effective: Free, unlimited access to security tools and data.\n\nEase of Use:\n\n- Quick setup, offering automated threat monitoring and intuitive access to security insights, making it accessible for all users without extra fees.", - "name": "HAPI", - "screenshots": [ - "./images/hapilabs-snap/1.png", - "./images/hapilabs-snap/2.png", - "./images/hapilabs-snap/3.png" - ], - "sourceCode": "https://github.com/HAPIprotocol/hapilabs-snap", - "summary": "Receive alerts about blockchain threats and risky activities.", - "support": { - "contact": "mailto:i.am.hapi@hapi.one", - "faq": "https://hapi.one/snap", - "knowledgeBase": "https://hapi.one/snap" - }, - "website": "https://hapi.one/snap" - }, - "versions": { - "1.0.2": { - "checksum": "84epmblZfaiYOhWLvIClfovtKJ3giY/DddsaEsDxP1k=" - } - } - }, - "npm:hashdit-snap-security": { - "id": "npm:hashdit-snap-security", - "metadata": { - "audits": [ - { - "auditor": "SlowMist", - "report": "https://github.com/slowmist/Knowledge-Base/blob/master/open-report-V2/blockchain-application/SlowMist%20Audit%20Report%20-%20HashDit-Snaps_en-us.pdf" - } - ], - "author": { - "name": "HashDit", - "website": "https://www.hashdit.io/" - }, - "category": "transaction insights", - "description": "HashDit protects your funds with real-time risk warnings and detailed insights on smart contracts, transactions, and URLs for Binance Smart Chain and Ethereum.\n\nWhat is HashDit Snap?\n\nHashDit Snap uses our API to provide users with a risk assessment before their transactions are executed. Once installed, it returns a risk level ranging from low to critical for each of our security features.\n\nFeatures\n\n- Transaction Screening: HashDit analyzes transaction data before you engage with potentially vulnerable or malicious smart contracts. This protects users against scams such as rug pulls, honeypots, wallet drainers, high-risk contract calls, and other smart contract risks.\n- Address Poisoning Protection: HashDit checks for similarities between all of your addresses and the addresses you are engaging with. If any resemblance is detected, a warning will be displayed, protecting you from address poisoning attacks.\n- Blacklist/Whitelist Screening: HashDit compares addresses against our database of blacklisted addresses and smart contracts known to be scammers or malicious. It also checks against our database of whitelisted addresses that are highly trusted within the ecosystem.\n- URL Screening: HashDit matches websites against our comprehensive database of spam, malware, social engineering, phishing, and scam websites.\n- Function Call Insights: View which functions are being called and the exact value of each paraHashDit protects your funds with real-time risk warnings and detailed insights on smart contracts, transactions, and URLs for Binance Smart Chain and Ethereum.\n\nWhat is HashDit Snap?\n\nHashDit Snap uses our API to provide users with a risk assessment before their transactions are executed. Once installed, it returns a risk level ranging from low to critical for each of our security features.\n\nFeatures\n\n\nUnverified Checks: Receive instant warnings when interacting with unverified smart contracts or executing unknown and uncommon functions, helping you avoid potential risks.\n\nSignature Screening: HashDit analyzes signature requests in real-time, detecting and alerting users to potentially malicious activity for safer transactions.\n\nAddress Poisoning Protection: Prevent address poisoning attacks by ensuring the addresses you interact with do not closely resemble your own. If any similarities are detected, HashDit immediately issues a warning.\n\nTransaction Risk Analysis: Before executing a transaction, HashDit scans smart contract interactions to identify vulnerabilities and potential threats, including rug pulls, honeypots, wallet drainers, and other high-risk contract calls.\n\nBlacklist & Whitelist Screening: HashDit verifies addresses against a curated database of known malicious actors while also recognizing highly trusted entities within the ecosystem.\n\nURL Security Check: Stay safe from online threats—HashDit screens websites against an extensive database of phishing, malware, scam, and social engineering sites.\n\n\nHow To Install HashDit Snap\n\nThe installation guide can be found here: https://hashdit.gitbook.io/hashdit-snap/usage/installing-hashdit-snap\n\nHow To Use HashDit Snap\n\nOnce the HashDit Snap is installed, the security features are entirely automatic. The HashDit Snap will provide an insight before a transaction is executed by a user. In the transaction screen, a user can switch to the HashDit Security tab to view the risks involved with their transaction.\n\nNetwork Support\n\nHashDit Snap is fully supported on the Binance Smart Chain and Ethereum. The snap can provide URL Screening and Address Poisoning Protection on all other networks supported by MetaMask.\n\nSecurity And Permissions\n\nHashDit Snap does not have access to the user's private keys. It is limited to reading transactions and providing a transaction insight. The only transaction initiated by the Snap is a safe signature request dispatched during installation.\n\nDocumentation\n\nhttps://hashdit.gitbook.io/hashdit-snap\n\nAbout HashDit \n\nHashDit is a Web3 Security Firm focused on providing a safe ecosystem for both protocol users and smart contract developers on the BNB Chain. The central objective is to furnish crucial threat intelligence to empower everyday DeFi investors in making well-informed decisions. Navigating this DeFi intricate landscape poses challenges even for seasoned investors, let alone newcomers. HashDit aims to bridge this knowledge gap by offering timely and comprehensive threat intelligence on DeFi projects. HashDit is empowering PancakeSwap, Trust Wallet, and BscScan with our API.", - "name": "HashDit Security", - "sourceCode": "https://github.com/hashdit/metamask-snap", - "summary": "Receive real-time risk warnings and detailed transaction insights.", - "support": { - "contact": "mailto:support@hashdit.io", - "faq": "https://hashdit.gitbook.io/hashdit-snap/information/faq-and-knowledge-base", - "knowledgeBase": "https://hashdit.gitbook.io/hashdit-snap" - }, - "website": "https://www.hashdit.io/en/snap" - }, - "versions": { - "1.0.2": { - "checksum": "WQpKP4qbE4GvmOc4PuO1yadpIOfEr/IU0E9lxmDUGa8=" - } - } - }, - "npm:hln-resolver-snap": { - "id": "npm:hln-resolver-snap", - "metadata": { - "author": { - "name": "Hyperliquid Names", - "website": "https://hlnames.xyz/" - }, - "category": "name resolution", - "description": "Hyperliquid Names lets users seamlessly use .hl names in place of wallet addresses on HyperEVM. Users can simply type a .hl name in the address field, and the snap will automatically resolve it to the correct wallet address. This snap only runs on HyperEVM (chainId 999) and .hl TLDs.", - "name": "Hyperliquid Names", - "sourceCode": "https://github.com/HLnames/hln-resolver-snap", - "summary": "Resolve your .hl name on HyperEVM.", - "support": { - "contact": "https://discord.gg/9bTeZgE8E3", - "knowledgeBase": "https://hyperliquid-names.gitbook.io/hyperliquid-names/hyperliquid-names-on-metamask" - } - }, - "versions": { - "0.1.3": { - "checksum": "OVipIcwmpfxMZrcAaWvjp8ODPE7u5sURjJXNibFS694=" - } - } - }, - "npm:hns-id": { - "id": "npm:hns-id", - "metadata": { - "author": { - "name": "namebase", - "website": "https://www.namebase.io/" - }, - "category": "name resolution", - "description": "The MetaMask Snap for HNS.ID enhances the MetaMask wallet by enabling domain resolution for HNS.ID domains and improving ENS resolution on EVM-compatible chains. This Snap provides users with broader support for hns.id domains and expanded functionality for interactions across different networks.\n\n\nKey Features:\n\n- Multi-Chain Support: Resolves HNS.ID domains across various EVM chains, ensuring seamless domain interactions within MetaMask.\n\n- ENS Enhancement: Preserves and improves ENS resolution functionality by enabling CCIP-linked ENS domain resolution on networks beyond Ethereum mainnet.\n\n- Effortless Integration: Installs directly within MetaMask, adding domain resolution capabilities without interfering with existing ENS lookups.\n\n- Secure Permissions: Requires internet access for domain resolution and permissions for domain/address look-ups.\n\n\nVisit: https://hns.id for more information about the platform and how to get started.\n\n\nThis Snap helps bridge the gap for users needing enhanced domain resolution capabilities, offering a streamlined experience without disrupting standard MetaMask operations.", - "name": "HNS ID Name Resolution", - "sourceCode": "https://github.com/namebasehq/hns-id-mm-snap", - "summary": "Resolve hns.id domains natively on multiple EVM blockchains.", - "support": { - "contact": "mailto:support@hns.id", - "faq": "https://docs.hns.id/resolving-domains/metamask-snap" - }, - "website": "https://hns.id/" - }, - "versions": { - "0.1.16": { - "checksum": "mXQW3g18buic9nB20A9PYjYH94XkKQpYwckVXvKEKEg=" - } - } - }, - "npm:iotex-snap": { - "id": "npm:iotex-snap", - "metadata": { - "author": { - "name": "IoTeX Network", - "website": "https://iotex.io/" - }, - "category": "name resolution", - "description": "Unleash the power of IoTeX directly in MetaMask with the IoTeX Snap! This Snap enables you to:\n\n- Send tokens to io addresses or INS domains\n- Seamlessly convert addresses between io and 0x formats\n- Get real-time updates and information about DePIN projects\n\nThe IoTeX Snap is designed for a smooth, community-driven experience that keeps you at the forefront of decentralized and physical networks (DePIN). Boost your wallet with the power of IoTeX today!", - "name": "IoTeX", - "screenshots": [ - "./images/iotex-snap/1.png", - "./images/iotex-snap/2.png", - "./images/iotex-snap/3.png" - ], - "sourceCode": "https://github.com/iotexproject/iotex-snap/", - "summary": "Send tokens to io addresses or INS domains, convert addresses, and track DePIN projects.", - "support": { - "contact": "https://discord.com/invite/q5eYde2CU7", - "faq": "https://github.com/iotexproject/iotex-snap/blob/main/packages/snap/README.md#iotex-metamask-snap--faq", - "knowledgeBase": "https://github.com/iotexproject/iotex-snap/blob/main/packages/snap/README.md#iotex-metamask-snap--knowledge-base" - } - }, - "versions": { - "1.5.3": { - "checksum": "MccEmY8k4npuubSTeJFG7/hcoCkK/CXSualiUF9KHUM=" - } - } - }, - "npm:keychain-snap": { - "id": "npm:keychain-snap", - "metadata": { - "audits": [ - { - "auditor": "OtterSec", - "report": "https://ottersec.notion.site/EthSign-keychain-snap-acf38810de8544f9b07beadae5014675" - } - ], - "author": { - "name": "EthSign", - "website": "https://www.ethsign.xyz/" - }, - "category": "interoperability", - "description": "EthSign Keychain is an encrypted password manager. State-keeping outside of MetaMask is optional and delegated to Arweave or AWS to enable decentralized cross-device synchronization.\n\nThis Snap is designed to work with a companion extension or with dapps that have implemented the EthSign Keychain API. After installing the Snap, visit the website to learn more.", - "name": "EthSign Keychain", - "sourceCode": "https://github.com/EthSign/keychain-snap", - "summary": "Manage encrypted passwords and enable decentralized cross-device synchronization.", - "support": { - "contact": "https://discord.gg/Wvhp9dWdSg" - }, - "website": "https://docs.ethsign.xyz/ethsign-keychain/" - }, - "versions": { - "0.3.6": { - "checksum": "REl6dY3tSDpChyXGJZjfDuKVrFNCt86ZPfs+jNRmIPU=" - } - } - }, - "npm:know-your-transaction": { - "id": "npm:know-your-transaction", - "metadata": { - "author": { - "name": "bitsCrunch", - "website": "https://bitscrunch.com/" - }, - "category": "transaction insights", - "description": "Stay Safe with Every Transaction\n\nThe KYT MetaMask Snap by bitsCrunch brings Know Your Transaction (KYT) protection directly to your MetaMask wallet. With real time transaction scores and summaries, our AI-powered Snap helps shield you from phishing, scams, and other malicious on-chain activities.\n\nHow It Protects You\n\nThe bitsCrunch KYT Snap uses advanced AI algorithms to flag:\n\n- Wallets involved in illicit or suspicious activities.\n- Smart contracts with wallet-draining functionality.\n- Duplicate or counterfeit tokens mimicking legitimate assets.\n- Token approvals that could potentially drain your funds.\n\nHow It Works\n\nOur AI analyzes historical address activity such as transaction volume, nature of interactions, and asset holdings to assign a transaction score and generate a concise summary inside your MetaMask wallet. This helps you quickly identify malicious or high-risk addresses before you proceed.\n\nHow to Use\n\n- Install the bitsCrunch Snap for MetaMask.\n- When making a transaction, open the bitsCrunch tab inside your MetaMask wallet.\n- Review the transaction score and summary before confirming to ensure you're not falling victim to phishing or scams.", - "name": "Know your transaction", - "screenshots": [ - "./images/know-your-transaction/1.png", - "./images/know-your-transaction/2.png", - "./images/know-your-transaction/3.png" - ], - "sourceCode": "https://github.com/bitscrunch-protocol/Know-Your-Transaction", - "summary": "Real-time transaction scores and summaries powered by AI", - "support": { - "contact": "mailto:support@bitscrunch.com", - "knowledgeBase": "https://clean-rudbeckia-69f.notion.site/KYT-MetaMask-Snap-by-bitsCrunch-1fb84e5ac1048010b02fcf91c75ff9ff" - } - }, - "versions": { - "0.1.1": { - "checksum": "t/E7x9g6nSoIPjmjhM2TebIlkZ9WM8b/k98+H6r8IVQ=" - } - } - }, - "npm:metamask-aura-connect-snap": { - "id": "npm:metamask-aura-connect-snap", - "metadata": { - "author": { - "name": "Thomas McMillan", - "website": "https://github.com/tomm696" - }, - "category": "interoperability", - "description": "Aura Connect is an unofficial, community-built, and fully open-source MetaMask Snap that integrates AdEx Aura — an AI-driven DeFi recommendation engine.\n\nIt enables MetaMask users to explore personalized DeFi strategies, insights, and wallet-based recommendations powered by Aura’s public APIs.\n\nWhat is AdEx Aura?\nAdEx Aura is a personal AI agent framework that generates secure, high-impact DeFi strategy recommendations.\n\nLearn more about AdEx Aura at https://www.adex.network\n\nWith Aura Connect, users can:\n\nConnect their MetaMask wallet to Aura seamlessly.\n\nView real-time strategy suggestions tailored to their on-chain activity for each of their accounts.\n\nExplore actionable DeFi opportunities directly within MetaMask.\n\nNo private keys or user data leave MetaMask — all data is fetched securely via public Aura endpoints.\n\nThis Snap is developed and maintained by the community, not officially affiliated with AdEx or MetaMask.", - "name": "Aura Connect", - "sourceCode": "https://github.com/tomm696/metamask-aura-snap", - "summary": "Personalized DeFi insights through Aura's AI agent services", - "support": { - "knowledgeBase": "https://github.com/tomm696/metamask-aura-snap/blob/master/FAQ.md" - } - }, - "versions": { - "0.1.3": { - "checksum": "6cTbPF+lwg+I5220cEdchHMz4UA9lQz4KFXv7Ouy1II=" - } - } - }, - "npm:mina-portal": { - "id": "npm:mina-portal", - "metadata": { - "audits": [ - { - "auditor": "Veridise", - "report": "https://f8t2x8b2.rocketcdn.me/wp-content/uploads/2023/08/VAR-Mina-Snap-V101.pdf" - } - ], - "author": { - "name": "SotaTek", - "website": "https://www.sotatek.com/" - }, - "category": "interoperability", - "description": "Interact with Mina protocol using MetaMask. After installing the Snap, visit the website to manage your Mina account.", - "name": "MinaPortal", - "screenshots": [ - "./images/mina-portal/1.png", - "./images/mina-portal/2.png", - "./images/mina-portal/3.png" - ], - "sourceCode": "https://github.com/sotatek-dev/mina-snap", - "summary": "Interact with the Mina protocol using your wallet.", - "support": { - "contact": "https://github.com/sotatek-dev/mina-snap/wiki/FAQ#how-do-i-reach-out-for-mina-snap-support" - }, - "website": "https://minaportal.sotatek.works/" - }, - "versions": { - "0.1.6": { - "checksum": "I30rV0Vx18OeOz79Yu/OKQw1buyPXd7NGNduVTonhIw=" - } - } - }, - "npm:nomis": { - "id": "npm:nomis", - "metadata": { - "author": { - "name": "Nomis Protocol", - "website": "https://nomis.cc" - }, - "category": "transaction insights", - "description": "The Nomis Protocol Snap allows you to view your Nomis Scores within MetaMask.\n\nAfter installing the Nomis Protocol Snap, choose the chain you're interested in, then access Nomis Protocol from the Snaps menu in MetaMask. Connect your desired account to view your Nomis Score. Your minted Score will be displayed on the Snap's homepage. If it hasn't been minted yet, you'll have the option to calculate it.\n\nWhen conducting transactions, switch to the Nomis Protocol Snap tab to view the counterparty's Score, as long as they have a minted Score.\n\nYou can always switch the active account by visiting https://nomis.cc.", - "name": "Nomis Protocol", - "screenshots": [ - "./images/nomis/1.png", - "./images/nomis/2.png", - "./images/nomis/3.png" - ], - "sourceCode": "https://github.com/Nomis-cc/nomis-snaps", - "summary": "Check your Nomis-powered score and view recipient scores in transaction confirmations.", - "support": { - "contact": "https://discord.com/invite/0xnomis", - "faq": "https://nomis.cc/#faq", - "knowledgeBase": "https://nomis.cc/#how-it-works" - }, - "website": "https://nomis.cc/snap/" - }, - "versions": { - "0.1.5": { - "checksum": "zQ9UOPgD92Me7v9ZaUrHZtSvtSgKkgwhHgOwejAmKyw=" - } - } - }, - "npm:noves-foresight": { - "id": "npm:noves-foresight", - "metadata": { - "author": { - "name": "Noves", - "website": "https://noves.fi" - }, - "category": "transaction insights", - "description": "Noves Foresight allows you to experience transaction signing like never before, by providing clear descriptions of exactly what is about to happen. It leverages Noves's industry-leading translation engine for smart contracts, providing extensive coverage across 50+ chains and hundreds of millions of smart contracts.\n\nHow it works:\n\nWhen you initiate a transaction, and before you sign it, Noves Foresight will perform a simulation of the transaction that will calculate all of the asset transfers that would take place. It will then translate the raw simulation into something easy to understand, including:\n\n- An English sentence that describes the real-world meaning of the transaction. For example: 'This transaction will claim 10 CRV in rewards' or 'This transaction will add 1 ETH and 4000 USDC to a liquidity pool.'\n\n- A fully-tagged 'flow' view of all the asset transfers that will take place. You'll be able to easily see why a particular token is coming in or out of your wallet.\n\nHow to use:\n\nIt's super simple! Just check out the 'Noves Foresight' tab in your MetaMask prompt, any time you've initiated a transaction and want to check what's going to happen before you sign.", - "name": "Foresight by Noves", - "screenshots": [ - "./images/noves-foresight/1.png", - "./images/noves-foresight/2.png", - "./images/noves-foresight/3.png" - ], - "sourceCode": "https://github.com/Noves-Inc/foresight-metamask-snap", - "summary": "Understand what is about to happen before you sign a transaction.", - "support": { - "contact": "mailto:support@noves.fi", - "faq": "https://docs.noves.fi/reference/metamask-snapfaq", - "knowledgeBase": "https://docs.noves.fi/reference/metamask-snap" - } - }, - "versions": { - "0.0.5": { - "checksum": "UUAPZJ+pI0Shxeozl8/DZ8yGbuOgKqrYdvlVNQFPw9M=" - } - } - }, - "npm:quai-snap": { - "id": "npm:quai-snap", - "metadata": { - "audits": [ - { - "auditor": "Hacken", - "report": "https://drive.google.com/file/d/1qnQDt0D_zPyRwhAkDvO72_yVSB2reZt1/view?usp=sharing" - } - ], - "author": { - "name": "Dominant Strategies", - "website": "https://dominantstrategies.io/" - }, - "category": "interoperability", - "description": "Quai Wallet is a snap that allows Metamask users to interact with Quai Network mainnet. After installation, the wallet can be accessed as follows: \n- Open the Metamask extension. \n- Click the three dashed lines at the top right of the Metamask window.\n- Click on Snaps in the dropdown list. \n- Click on Quai Wallet in the list. If you do not see Quai Wallet in the list, ensure you have installed the snap from the Snaps Directory (https://snaps.metamask.io) \n- Wait for the snap to generate you a Quai wallet. This will take a few seconds. \n- There is no need to write down a seed phrase because the wallet is generated from your Metamask keys. That means that as long as you have your Metamask keys, you will always generate the same Quai address when you install the Quai Wallet Snap. \n- With the wallet, you can send QUAI tokens and receive QUAI tokens to your address. You will be able to interact with Quai dApps when support for those dApps is added. \n", - "name": "Quai Wallet", - "sourceCode": "https://github.com/dominant-strategies/quai-snap", - "summary": "The Quai Wallet snap allows Metamask users to send and receive QUAI tokens on Quai mainnet. It will also enable Quai dApps to interact with Metamask users who have the snap installed.", - "support": { - "contact": "https://discord.gg/quai", - "faq": "http://docs.qu.ai/guides/wallet/metamask-snap", - "knowledgeBase": "http://docs.qu.ai/guides/wallet/metamask-snap" - }, - "website": "https://dominantstrategies.io/" - }, - "versions": { - "0.1.9": { - "checksum": "FQjjUGvt7d6SgqBNiuTTJUPtMGlKie4VOmxzsviZmbc=" - } - } - }, - "npm:rentality": { - "id": "npm:rentality", - "metadata": { - "author": { - "name": "rentality", - "website": "https://rentality.xyz/" - }, - "category": "interoperability", - "description": "rentality Snap\nrentality Snap is your first step toward a Web 3.0 car rental experience, enabling users to easily access the rentality platform via MetaMask.\n\nWith this Snap, you can:\nView the number of cars available for rent.\nClick a button to rent a car, which redirects you to the rentality app for booking.\n\nMore features are coming soon, including:\nAccess to rental details and contract management via the Snap.\n\nStay tuned for further updates as the rentality Snap evolves to provide a decentralized, cost-efficient car rental service directly from MetaMask.\n\nResources:\n\nrentality App: Discover the app where you can book and manage your rentals.\n- https://app.rentality.xyz/\nrentality Documentation: Learn more about the platform and how it works:\n-https://medium.com/@rentality\n-https://zealy.io/cw/rentality/questboard", - "name": "rentality", - "screenshots": [ - "./images/rentality/1.png", - "./images/rentality/2.png", - "./images/rentality/3.png" - ], - "sourceCode": "https://github.com/Daniloday/rentality-snap/", - "summary": "Transforming the future of car rentals with blockchain.", - "support": { - "contact": "mailto:info@rentality.xyz", - "knowledgeBase": "https://app.rentality.xyz/guest/legal" - }, - "website": "https://app.rentality.xyz/" - }, - "versions": { - "1.0.9": { - "checksum": "XCNUyPlOxUXceJXo4ZpGAY6whq/WNuU+VwuGP+xmBP4=" - } - } - }, - "npm:rubic-snap": { - "id": "npm:rubic-snap", - "metadata": { - "audits": [ - { - "auditor": "Cure53", - "report": "https://cure53.de/pentest-report_rubic-snap.pdf" - } - ], - "author": { - "name": "Rubic", - "website": "https://rubic.exchange/" - }, - "category": "interoperability", - "description": "Rubic's 'Best Rate Finder' makes it easier than ever before to pick the most cost-efficient route for your token swap by actively comparing swap rates across 200+ DEXs simultaneously – all within your MetaMask wallet.\n\nHere's how it works:\n\n1. Watch The Tutorial: https://www.youtube.com/watch?v=mqwcymo20Sw&ab_channel=Rubic\n\n2. Initiate your transaction on a DEX in a browser.\n\n3. Within the MetaMask transaction confirmation window, you'll have access to Rubic's Snap tab.\n\n4. Rubic's innovative 'Best Rate Finder' algorithm searches from over 200 DEXs, analyzing various routes to identify the most cost-efficient option for your intended swap.\n\n5. If Rubic indicates a better rate than the one offered by the current DEX you're on, you'll have the option to seamlessly switch to Rubic's App to complete the transaction using the more optimal route.\n\nStop juggling between multiple DEXs to find the best rate. Leave that heavy lifting to us and have peace of mind knowing you're always getting the best swap rate possible!\n\nSnap's Page - https://rubic.exchange/metamasksnap\n\nAbout Rubic:\n\nRubic aggregates 70+ blockchains and testnets, while it enables swaps of 15,500+ assets with the best rates, highest liquidity, and transaction speeds — in one click, thanks to the integration of 220+ DEXs and bridges.\n\nhttps://rubic.exchange/", - "name": "Rubic", - "screenshots": [ - "./images/rubic-snap/1.png", - "./images/rubic-snap/2.png", - "./images/rubic-snap/3.png" - ], - "sourceCode": "https://github.com/Cryptorubic/rubic-snap-frontend", - "summary": "Compare swaps across 200+ DEXs to find the best rate.", - "support": { - "contact": "https://t.me/RubicSupportBot", - "faq": "https://rubic.exchange/metamasksnap", - "knowledgeBase": "https://rubic.exchange/blog/introducing-rubics-best-rate-finder-metamask-snap-revolutionizing-crypto-trading/" - }, - "website": "https://rubic.exchange/metamasksnap" - }, - "versions": { - "0.4.0": { - "checksum": "I8BnlhKoeV9j789awS0/IKC/G1Mu01PfkpHC9sNBogI=" - } - } - }, - "npm:safe-send": { - "id": "npm:safe-send", - "metadata": { - "author": { - "name": "Blitz Blitz Blitz", - "website": "https://github.com/tyleradams" - }, - "category": "transaction insights", - "description": "This Snap enhances transaction insights by performing blockchain checks before a transaction is submitted.\n\nCurrently, it is built specifically for Polymarket, where it:\n- Verifies whether the Polymarket contract was deployed.\n- Checks who deployed the contract.\n- Ensures that users send the correct token to the Polymarket address.\n\nFuture Enhancements:\n\nThe next steps include expanding support to additional services, starting with:\n- Bridges, since users sometimes send funds manually.\n- Advanced security measures, such as:\n- Blocking transactions with potential errors.\n- Requiring manual overrides for high-risk transactions.\n\nThe goal is to help users avoid accidentally sending funds to incorrect or scam addresses, improving both security and usability.", - "name": "Safe Send", - "sourceCode": "https://github.com/tyleradams/safe-send", - "summary": "Tools to help people safely send funds", - "support": { - "contact": "tyler@blitzblitzblitz.com", - "knowledgeBase": "https://www.npmjs.com/package/safe-send" - } - }, - "versions": { - "1.0.2": { - "checksum": "ipsHDXONQumdJTv/x99x2StYYYagcD0P7awhHYzF2bY=" - } - } - }, - "npm:scorechain-safetransfer": { - "id": "npm:scorechain-safetransfer", - "metadata": { - "author": { - "name": "Scorechain", - "website": "https://www.scorechain.com/" - }, - "category": "transaction insights", - "description": "The Scorechain SafeTransfer Snap for MetaMask is an advanced tool designed to enhance the security of your crypto transactions. By integrating directly with your MetaMask wallet, the Snap evaluates the risk level of transaction addresses in real-time using Scorechain's trusted registry of known fraudulent entities. This ensures you have all the necessary insights to make informed decisions before signing a transaction.\n\nWhen you initiate a transaction in MetaMask, the Snap automatically activates and provides a clear risk assessment. The Scorechain Tab appears during the signing process, offering detailed information about potential threats such as scam addresses, suspicious patterns, and other risks. This transparency empowers you to confidently decide whether to proceed with or cancel the transaction.\n\nSafeTransfer prioritizes your privacy and does not collect personal data, wallet addresses, or transaction IDs. It is designed to be accessible to everyone, from newcomers navigating the complexities of blockchain security to experienced users looking to strengthen their protection against sophisticated scams.\n\nSince its inception, Scorechain has been trusted by over 350 compliance and digital asset teams worldwide. The platform has mapped 500 blockchains, scored more than 270,000 wallets, and identified over 1,000 virtual asset service providers (VASPs). This expertise underpins the reliability and accuracy of the SafeTransfer Snap.\n\nTo use the Snap, simply initiate a transaction in MetaMask as usual. The Scorechain Tab will appear automatically, providing detailed insights into the risk level of the transaction. Review the information and decide whether to proceed or cancel.\n\nFor any questions or feedback, you can reach out to the Scorechain support team at support@scorechain.com. Ensure your transactions are secure and informed with the Scorechain SafeTransfer Snap for MetaMask.\n\nYou can find more information here: https://www.scorechain.com/resources/metamask-safe-transfer", - "name": "SafeTransfer", - "screenshots": [ - "./images/scorechain-safetransfer/1.jpg", - "./images/scorechain-safetransfer/2.jpg", - "./images/scorechain-safetransfer/3.jpg" - ], - "sourceCode": "https://github.com/scorechain/safetransfer", - "summary": "Protect your crypto transactions", - "support": { - "contact": "mailto:support@scorechain.com", - "faq": "https://www.scorechain.com/blog/metamask-snap-faq", - "knowledgeBase": "https://www.scorechain.com/blog/metamask-snaps-knowledge-base" - }, - "website": "https://www.scorechain.com/resources/metamask-safe-transfer/" - }, - "versions": { - "1.0.6": { - "checksum": "QYe6poOqWPfgF5aKTFNKvRQMj1Uju/4mVM61bzsqWYA=" - }, - "1.0.8": { - "checksum": "pmaH2obJBb4R4HpgxF3ktjtJ/39KhIpQBLtJRhdwvu8=" - } - } - }, - "npm:self-name-resolution": { - "id": "npm:self-name-resolution", - "metadata": { - "author": { - "name": "SELF Crypto", - "website": "https://selfcrypto.io/" - }, - "category": "name resolution", - "description": "SELF Name Resolution Snap\n\nThis MetaMask Snap enables resolution of SELF domain names to their corresponding cryptocurrency addresses using either domain.self or $:domain formats. It integrates with the SELF naming service to provide seamless name resolution directly within MetaMask.\n\n## Features\n\n- Resolves SELF domain names in two formats:\n - .self domains (e.g., domain.self)\n - $: scheme (e.g., $:domain)\n- Supports multiple chains including:\n - Ethereum (EIP155:1)\n - BNB Smart Chain (EIP155:56)\n - Avalanche (EIP155:43114)\n - Arbitrum (EIP155:42161)\n- Seamless integration with MetaMask's name resolution system", - "name": "SELF Name Resolution", - "sourceCode": "https://github.com/selfcrypto/self-snap", - "summary": "Resolve SELF crypto names to addresses", - "support": { - "contact": "mailto:enrique.ferrater@selfcrypto.io", - "faq": "https://github.com/selfcrypto/self-snap/blob/main/README.md#faq", - "knowledgeBase": "https://github.com/selfcrypto/self-snap/blob/main/README.md" - } - }, - "versions": { - "0.1.4": { - "checksum": "0iYGbs3NNk8lZRJXRrHm94McRohhaxpTKkg5k4awQ/8=" - } - } - }, - "npm:smartsentinels-alerts": { - "id": "npm:smartsentinels-alerts", - "metadata": { - "author": { - "name": "SmartSentinels", - "website": "https://smartsentinels.net/" - }, - "category": "notifications", - "description": "SmartSentinels Alerts brings real-time campaign notifications, airdrop alerts, and reward tracking directly into your MetaMask wallet.\n\nFeatures:\n- Campaign Notifications: Receive push notifications every 30 minutes about new campaigns, airdrops, and rewards relevant to your connected wallet.\n- Homepage: Browse all active campaigns from within MetaMask. View campaign details including titles, descriptions, and action links without leaving your wallet.\n- One-Click Actions: Each campaign includes an action button that takes you directly to claim rewards, join airdrops, or participate in partner offers.\n- Automatic Wallet Registration: On install, your wallet is registered with SmartSentinels so you receive campaigns targeted to your address.\n- Multi-Wallet Support: Connect multiple wallets and receive consolidated campaign feeds across all your addresses.\n\nHow to use:\n1. Install SmartSentinels Alerts from the MetaMask Snaps Directory.\n2. When prompted, connect your wallet to allow the Snap to fetch campaigns for your address.\n3. Open the Snap homepage from the MetaMask menu to browse active campaigns.\n4. You will automatically receive in-app notifications about new campaigns every 30 minutes.\n5. Click through on any campaign to claim rewards or learn more.\n\nYou can also install the Snap from our benefits hub at https://smartsentinels.net/hub/benefits\n\nFor support, contact us at office@smartsentinels.net\n\nLearn more at https://smartsentinels.net\n\nSource code: https://github.com/C00K1E-dev/SmartSentinelsSnap", - "name": "SmartSentinels Alerts", - "sourceCode": "https://github.com/C00K1E-dev/SmartSentinelsSnap", - "summary": "Real-time campaign alerts, airdrop notifications, and reward tracking directly in MetaMask.", - "support": { - "contact": "mailto:office@smartsentinels.net" - } - }, - "versions": { - "0.1.1": { - "checksum": "AH4tfCMwR4yY5lfltena3XBZqeH+S8E3FTAFnOZk4NY=" - } - } - }, - "npm:social-names-snap": { - "id": "npm:social-names-snap", - "metadata": { - "author": { - "name": "Christian Montoya", - "website": "https://github.com/Montoya" - }, - "category": "name resolution", - "description": "Adds support for Farcaster names to MetaMask.\n\nIn the MetaMask send flow, type a Farcaster username like dwr.fcast.id or v.farcaster to resolve to their Farcaster wallet addresses and verified addresses.\n\nYou will also see suggested Farcaster names when interacting with addresses in MetaMask.", - "name": "Farcaster Names", - "screenshots": [ - "./images/social-names-snap/1.jpg", - "./images/social-names-snap/2.jpg", - "./images/social-names-snap/3.jpg" - ], - "sourceCode": "https://github.com/Montoya/social-names-snap", - "summary": "Use Farcaster names (fnames) in MetaMask", - "support": { - "contact": "https://github.com/Montoya/social-names-snap/issues" - } - }, - "versions": { - "0.3.0": { - "checksum": "8/GfXWzWfCCCuKeEmqnExFPK2rPYd+IsVSn1d0rmHxM=" - } - } - }, - "npm:sonic_resolver": { - "id": "npm:sonic_resolver", - "metadata": { - "author": { - "name": "Krown Labs", - "website": "https://www.krownlabs.app/" - }, - "category": "name resolution", - "description": "The Sonic Name Service (SNS) Resolver brings the convenience of human-readable addresses to your MetaMask wallet.\n\nInstead of dealing with complicated hexadecimal addresses like 0x1234...5678, you can simply type a .s domain name (like yourname.s) directly in MetaMask's address field when sending transactions on the Sonic network.\n\nKey Features:\n\nSeamlessly resolve .s domain names to their corresponding wallet addresses\nPerform reverse lookups to see SNS names associated with addresses\nWorks natively within the MetaMask interface\nSupports the Sonic network\n\nThis Snap simplifies your crypto experience by making addresses more human-friendly and reducing the risk of errors when sending transactions. Perfect for anyone using the Sonic network.\n\nSimply install the Snap, and start using .s domains immediately in your MetaMask transactions!", - "name": "Sonic Name Service Resolver", - "screenshots": [ - "./images/sonic_resolver/1.jpg", - "./images/sonic_resolver/2.jpg", - "./images/sonic_resolver/3.jpg" - ], - "sourceCode": "https://github.com/krownlabs/sns-resolution-snap", - "summary": "Use your .s domain names to easily send transactions on the Sonic network.", - "support": { - "contact": "https://discord.com/invite/KTU4krfhrG", - "faq": "https://docs.krownlabs.app/krown-labs/sonic-name-service-sns-snap-frequently-asked-questions", - "knowledgeBase": "https://docs.krownlabs.app/krown-labs/sonic-name-service/sonic-name-service-sns-snap-knowledge-base" - } - }, - "versions": { - "1.0.1": { - "checksum": "4iJUL7wlEdt3Nwv/YSI5UU3S8RIM156Njn/BWbVukIA=" - } - } - }, - "npm:stellar-snap": { - "id": "npm:stellar-snap", - "metadata": { - "audits": [ - { - "auditor": "Cure53", - "report": "https://cure53.de/pentest-report_kyraview-stellar-snap.pdf" - } - ], - "author": { - "name": "Paul Fears", - "website": "https://github.com/paulfears" - }, - "category": "interoperability", - "description": "Stellar Wallet\n\nThis Snap allows you to manage, send, and receive stellar tokens, as well as interact with soroban smart contracts.\n\n- Full Soroban Support\n- Full Testnet Support\n- Multiple Accounts\n- Documentation https://stellar-wallet-demo.vercel.app/docs\n- Internal Stellar/Soroban Transaction parsing", - "name": "Stellar", - "sourceCode": "https://github.com/paulfears/StellarSnap", - "summary": "Send, receive, and interact with Stellar tokens and contracts.", - "support": { - "contact": "mailto:paulrfears@gmail.com", - "faq": "https://stellar-wallet-demo.vercel.app/faq", - "knowledgeBase": "https://stellar-wallet-demo.vercel.app/docs" - }, - "website": "https://stellar-wallet-demo.vercel.app" - }, - "versions": { - "1.0.9": { - "checksum": "ZBO5amqeB4r5rjui+CDr3mpSE33h9KmOvkav6GM9w+k=" - } - } - }, - "npm:tezos-metamask-snap": { - "id": "npm:tezos-metamask-snap", - "metadata": { - "audits": [ - { - "auditor": "Sayfer", - "report": "https://github.com/MetaMask/snaps-registry/files/12543946/Sayfer.-.2023-06.Penetration.Testing.Report.for.Tezos.Metamask.Snap.Application.pdf" - } - ], - "author": { - "name": "trilitech", - "website": "https://www.trili.tech/" - }, - "category": "interoperability", - "description": "Tezos Wallet allows you to use your MetaMask wallet to interact with Tezos dapps, specifically for signing payloads and operations.", - "name": "Tezos Wallet", - "sourceCode": "https://github.com/airgap-it/tezos-metamask-snap", - "summary": "Interact with Tezos dapps for signing payloads and operations.", - "support": { - "contact": "mailto:metamask-snap@trili.tech", - "faq": "https://github.com/airgap-it/tezos-metamask-snap/wiki/FAQs" - }, - "website": "https://metamask.tezos.com/" - }, - "versions": { - "1.0.7": { - "checksum": "AidXQY04oresSzTw0awcl1fLtn1lIpANF/z99bqnBJw=" - } - } - }, - "npm:themiracle-benefits-tracker": { - "id": "npm:themiracle-benefits-tracker", - "metadata": { - "author": { - "name": "theMiracle", - "website": "https://www.themiracle.io/" - }, - "category": "interoperability", - "description": "theMiracle Benefits Tracker helps you discover everything your NFTs and tokens unlock, including airdrops, whitelists, discounts, giveaways, event tickets, merchandise, and more. \nGetting started is simple: Open your Snap menu, select theMiracle Snap, and connect your accounts. Once connected, you can revisit the Snap anytime to view your personalized benefits and explore new perks tied to your assets. \nStay updated and never miss out—check back regularly for the latest rewards!", - "name": "theMiracle Benefits Tracker", - "sourceCode": "https://github.com/0xAskar/themiraclesnap", - "summary": " Showcases all the benefits, perks, and rewards associated with your fungible and non-fungible holdings.", - "support": { - "contact": "mailto:askar@flipslabs.xyz", - "faq": "https://app.themiracle.io/snap" - }, - "website": "https://app.themiracle.io/snap" - }, - "versions": { - "0.1.5": { - "checksum": "WcJJDtL+Bu5uhIM09M0wwor4SzVq35nujZQ4ncFtjsg=" - } - } - }, - "npm:unleashnfts": { - "id": "npm:unleashnfts", - "metadata": { - "author": { - "name": "Bitscrunch", - "website": "https://www.bistcrunch.com/" - }, - "category": "transaction insights", - "description": "UnleashNFTs Snap helps you determine the fair value of NFTs. This AI-powered snap detects price manipulation and estimates the true market worth of NFTs.\n\nHow it works:\n\n- Our AI-powered price estimation model evaluates supported NFTs based on past transactions, market sentiment, and rarity to provide an accurate valuation.\n- The NFT wash trade detection feature identifies artificial trading practices that inflate values, helping you avoid overpaying for manipulated assets.", - "name": "unleashNFTs", - "screenshots": [ - "./images/unleashnfts/1.jpg", - "./images/unleashnfts/2.jpg", - "./images/unleashnfts/3.jpg" - ], - "sourceCode": "https://github.com/bitsCrunch/unleashnfts-snaps", - "summary": "Evaluate NFTs and stay protected from frauds.", - "support": { - "contact": "mailto:support@bitscrunch.com", - "faq": "https://clean-rudbeckia-69f.notion.site/UnleashNFTs-Metamask-FAQs-18884e5ac104803dbf35e0b0348739ab?pvs=4", - "knowledgeBase": "https://clean-rudbeckia-69f.notion.site/Metamask-Snaps-UnleashNFTs-13484e5ac10480cc99fef2bc720d48d6?pvs=4" - }, - "website": "https://unleashnfts.com/metamask-plugin" - }, - "versions": { - "0.1.9": { - "checksum": "1atGobDPmABseQGCVLV6ffGqRWd5I7dYJrieu9Ncoyc=" - } - } - }, - "npm:vaulta-wallet": { - "id": "npm:vaulta-wallet", - "metadata": { - "audits": [ - { - "auditor": "Cure53", - "report": "https://cure53.de/pentest-report_antelope-snap.pdf" - } - ], - "author": { - "name": "Greymass, Inc.", - "website": "https://greymass.com" - }, - "category": "interoperability", - "description": "The Vaulta Wallet enables you to create a Vaulta account, sign transactions and interact with Vaulta smart contracts. After installing the Vaulta Wallet, visit the companion dapp, Unicove, to create and manage your Vaulta account. On Unicove you can stake Vaulta, participate in the RAM market and more. Dapp compatibility is expected to grow, which will expand access to the Vaulta Ecosystem.\n\nNeed any additional information or support? Feel free to visit our knowledge base or reach out to our support team (support@greymass.com). If you're a developer and would like to support MetaMask in your Vaulta application, please check out Wharf and the MetaMask Wallet Plugin.\n\nLinks:\nUnicove: https://unicove.com\nKnowledge Base: https://greymass.freshdesk.com/support/solutions/categories/72000352473/\nWharf: https://wharfkit.com/\nMetaMask Wallet Plugin: https://github.com/wharfkit/wallet-plugin-metamask", - "name": "Vaulta Wallet", - "sourceCode": "https://github.com/greymass/antelope-snap/tree/vaulta", - "summary": "Create a Vaulta account, sign transactions and interact with Vaulta smart contracts.", - "support": { - "contact": "mailto:support@greymass.com", - "knowledgeBase": "https://greymass.freshdesk.com/support/solutions/categories/72000352473" - }, - "website": "https://unicove.com" - }, - "versions": { - "1.1.1": { - "checksum": "bbqcKS92PhHJ1PwE+e1IP/JL8SQT1ZwVLOFNdzs7G80=" - } - } - }, - "npm:walletchat-metamask-snap": { - "id": "npm:walletchat-metamask-snap", - "metadata": { - "audits": [ - { - "auditor": "Cure53", - "report": "https://drive.google.com/file/d/1pNhN43mMOLiA2jWUF5IbJA-5kmfAod1f/view?usp=drive_link" - }, - { - "auditor": "Cure53", - "report": "https://drive.google.com/file/d/1dixJw4G4ekcO40GpbH7VmizLTINS5gUL/view?usp=drive_link" - } - ], - "author": { - "name": "WalletChat", - "website": "https://www.walletchat.fun/" - }, - "category": "notifications", - "description": "Send and receive DMs from any wallet address or ENS inside MetaMask, with WalletChat.\n\nAfter enabling this Snap, you will need to set up a WalletChat account, in 3 simple steps. Then all set!\nFrom now on, you will get a pop up notification displaying each DM you receive. You can respond to the DM from the same pop up.\nTo initiate new messages, for now, you will need to use https://app.walletchat.fun/. In the near future, this wlll also be possible from within the Snap.\n\nDitch Telegram and turn your MetaMask into a web3-native messenger!\nVideo tutorial: https://docs.walletchat.fun/metamask-integration\n\nWalletChat is the leading web3 messaging ecosystem, available across multiple blockchains and embedded inside dapps ranging from NFTfi, games, and wallets like Ledger Live. Learn more at https://www.walletchat.fun/", - "name": "app.walletchat.fun 💬", - "screenshots": [ - "./images/walletchat-metamask-snap/1.png", - "./images/walletchat-metamask-snap/2.png", - "./images/walletchat-metamask-snap/3.png" - ], - "sourceCode": "https://github.com/Wallet-Chat/walletchat-metamask-snap", - "summary": "Send and receive DMs with WalletChat.", - "support": { - "contact": "mailto:contact@walletchat.fun", - "faq": "https://docs.walletchat.fun/metamask-integration/walletchat-metamask-snap-faq", - "knowledgeBase": "https://docs.walletchat.fun/metamask-integration" - }, - "website": "https://app.walletchat.fun/" - }, - "versions": { - "0.2.1": { - "checksum": "IV0FlbWNvx5HJUxqNWVXizRVwmib/aVmi7jjZhVAuXw=" - }, - "0.2.2": { - "checksum": "3A61a9PBllUtH9B0HVh7aHVoSBwouuM7eNMJga0p/q0=" - } - } - }, - "npm:web3-security-snap": { - "id": "npm:web3-security-snap", - "metadata": { - "audits": [ - { - "auditor": "Sayfer", - "report": "https://github.com/MetaMask/snaps-registry/files/12544383/Sayfer.-.2023-08.Penetration.Testing.Report.for.AnChain.Snap.pdf" - } - ], - "author": { - "name": "AnChain.AI", - "website": "https://www.anchain.ai/" - }, - "category": "transaction insights", - "description": "By seamlessly integrating AnChain.AI's revolutionary AI-powered Blockchain Ecosystem Intelligence (BEI) into your MetaMask wallet, Web3 Security Snap empowers you to make informed decisions and engage fearlessly with the digital economy.\n\nAfter installing the Snap, you will see it in the transaction confirmation window. You can also visit the website to learn more about how to use it.", - "name": "AnChain.AI", - "screenshots": [ - "./images/web3-security-snap/1.png", - "./images/web3-security-snap/2.png", - "./images/web3-security-snap/3.png" - ], - "sourceCode": "https://github.com/AnChainAI/web3-security-snap", - "summary": "Integrate BEI Risk Scores for web3 security.", - "support": { - "contact": "https://discord.gg/RZ84RUNuNF", - "faq": "https://snap.anchainai.com/#faq" - }, - "website": "https://snap.anchainai.com/" - }, - "versions": { - "1.0.3": { - "checksum": "yKSdXrV6vUdxXvBcDfydSW1aNGHiSa3EZXkfZMDGIt4=" - } - } - }, - "npm:wise-signer-snap": { - "id": "npm:wise-signer-snap", - "metadata": { - "author": { - "name": "patrickalphac", - "website": "https://cyfrin.io/" - }, - "category": "transaction insights", - "description": "Use AI to explain what your transactions are doing!\n\nThis Snap can identify address poisoning, malicious tokens, and other types of attacks! Of course, the AI can make mistakes, so be sure to do your own due diligence as well.\n\nFeatures\n\n1. Built-in buttons to quickly send transaction/signature context to your AI of choice\n2. EIP-712 hash calculation directly in MetaMask\n3. Auto-explain mode for seamless transaction analysis\n4. Buttons to bring your hex data to an ABI decoding site for further inspection\n\nThese buttons directly in MetaMask will help give context to AIs quickly.\n\nFor using the 'auto-explain' feature:\n1. Get a Claude API Key: https://console.anthropic.com/settings/workspaces/default/keys\n\n2. Configure the Snap:\n - Click on the Snap in MetaMask (Menu → Snaps → AI Transaction Explainer)\n - Paste your Claude API key and click 'Save API Key'\n - Choose your preferred model:\n -- Claude Opus 4: Most capable, best for complex transactions\n -- Claude Sonnet 4: Balanced performance and speed\n -- Claude Sonnet 3.7: Fastest responses\n- Toggle 'Auto-Explain' based on your preference\n\nAnd boom! Now the next transaction you make, you can have your MetaMask AI try to figure out what your transaction is doing.\n\nWatch this demo video for an in-depth explanation: https://youtu.be/jcFhv8AM2pU", - "name": "Wise Signer", - "sourceCode": "https://github.com/PatrickAlphaC/wise-signer-snap", - "summary": "Debug and describe transactions with Claude AI", - "support": { - "contact": "https://discord.gg/sccXzKDVJp", - "faq": "https://github.com/PatrickAlphaC/wise-signer-snap/blob/main/FAQ.md" - } - }, - "versions": { - "0.0.6": { - "checksum": "NoH023QOfvuux+k46mM8haUg3Mg5uNrAc3mU+RJFl0Y=" - }, - "0.0.8": { - "checksum": "tMZlRlqkvRRu/9t3TKVUVDK0JYZdusbxD7G5LycyNgo=" - } - } - }, - "npm:xdcdomains-snap": { - "id": "npm:xdcdomains-snap", - "metadata": { - "author": { - "name": "XDCDomains", - "website": "https://xdcdomains.xyz/" - }, - "category": "name resolution", - "description": "XDCDomains Snap allows users to send and receive their digital assets directly on MetaMask using their .xdc.\n\nSee more: https://xdcdomains.xyz/metamask", - "name": "XDCWeb3Domains", - "screenshots": [ - "./images/xdcdomains-snap/1.png", - "./images/xdcdomains-snap/2.png", - "./images/xdcdomains-snap/3.png" - ], - "sourceCode": "https://github.com/XDCWeb3Domains/xdcdomains-snap", - "summary": "Easily transfer assets using .xdc domain names instead of complex wallet addresses.", - "support": { - "contact": "mailto:info@xdcdomains.xyz", - "knowledgeBase": "https://xdcdomains.xyz/metamask" - }, - "website": "https://xdcdomains.xyz/metamask/" - }, - "versions": { - "0.1.17": { - "checksum": "byxhQxot1n1f6vU6hzh+o0BX6qMgp0GkmVV4oyL5XdY=" - } - } - }, - "npm:xrpl-snap": { - "id": "npm:xrpl-snap", - "metadata": { - "audits": [ - { - "auditor": "Sayfer", - "report": "https://sayfer.io/audits/metamask-snap-audit-report-for-peersyst/" - } - ], - "author": { - "name": "Peersyst Technology", - "website": "https://peersyst.com" - }, - "category": "interoperability", - "description": "Interact with the XRP Ledger directly within your MetaMask wallet. Seamlessly bridge your assets between XRPL and Ethereum-based dapps, and manage all your XRP, XRPL tokens, and NFTs with the security and ease of MetaMask. Benefit from fast, cost-effective transactions on the XRP Ledger while enjoying the trusted user experience of MetaMask.\n\nKey Features: \n\n- Secure, Fast, and Low-Cost XRPL Transactions: Send and receive XRP and tokens on one of the fastest and most cost-effective blockchains directly through MetaMask.\n- Cross-Chain Asset Management: Seamlessly manage XRP, XRPL tokens, and NFTs alongside your Ethereum assets and dapps within the familiar MetaMask interface.\n- Buy XRP Instantly: Purchase XRP directly from your wallet with our integrated Transak solution.\n- Full support for all transaction types in XRPL: sign any transaction\n- Asset Bridging: Effortlessly move assets between EVM and XRPL networks using our integrated bridge feature. \n\nGetting Started: \n\n- Install XRP Ledger Snap: Add the XRP Ledger Snap to your MetaMask wallet.\n- Connect Your Account: Visit https://snap.xrplevm.org/ to connect your account securely.\n- Manage Your Assets: Start managing your XRP, XRPL tokens, and NFTs within MetaMask.\n- Activate Your Account: Add XRP to activate and begin using your XRPL account.", - "name": "XRP Ledger", - "screenshots": [ - "./images/xrpl-snap/1.png", - "./images/xrpl-snap/2.png", - "./images/xrpl-snap/3.png" - ], - "sourceCode": "https://github.com/Peersyst/xrpl-snap", - "summary": "Access the XRP Ledger for fast, low-cost transactions and asset management.", - "support": { - "contact": "https://discord.gg/xrplevm", - "faq": "https://snap.xrplevm.org/#faq", - "knowledgeBase": "https://docs.xrplsnap.com/" - }, - "website": "https://wallet.xrplevm.org/" - }, - "versions": { - "1.0.3": { - "checksum": "oHKKiLgKAZ64wNLhrekTnDfhjKCEKDqcQ2Cu47u/GoU=" - } - } - }, - "npm:zetalink": { - "id": "npm:zetalink", - "metadata": { - "audits": [ - { - "auditor": "Hacken", - "report": "https://audits.hacken.io/zetachain/dapp-zetachain-snap-audit-jul2024/" - } - ], - "author": { - "name": "Ishaan Parmar", - "website": "https://x.com/ishaanonx/" - }, - "category": "interoperability", - "description": "ZetaLink is an innovative MetaMask Snap that allows users to deposit and transfer native Bitcoin to select ZRC20 tokens across multiple blockchain networks, including ZetaChain, Polygon, Binance Smart Chain, and Ethereum. This Snap enhances the MetaMask experience by providing seamless cross-chain functionality for both developers and users.\n\nZetaLink offers several key features. First, it provides cross-chain compatibility, enabling users to deposit native Bitcoin and convert it into ZRC20 tokens without needing to switch networks or wrap tokens. This makes it easier to interact with various dapps across multiple platforms. ZetaLink also features a user-friendly interface that simplifies asset management and transaction processes, allowing users to easily navigate their assets and conduct transactions with minimal effort.\n\nSecurity is paramount with ZetaLink, as it operates within the secure environment of MetaMask, ensuring that user data and transactions are protected. The Snap utilizes a permissions model that allows users to review the permissions granted during installation.\n\nTo use ZetaLink, follow these steps:\n\n- Depositing Bitcoin: Open your MetaMask wallet, navigate to the ZetaLink Snap within your installed Snaps, select the option to deposit Bitcoin, and follow the prompts to complete the transaction.\n- Transferring to native ZETA or ZRC20 Tokens: After depositing Bitcoin, choose your desired ZRC20 token from the list provided, enter the amount you wish to transfer, and confirm the transaction.\n- Managing Assets: Use the ZetaLink interface to view your balances across different tokens and monitor transaction history efficiently.\n\nThe benefits of using ZetaLink are significant. Users enjoy a seamless experience by interacting with multiple blockchains without needing to switch wallets or networks, making transactions more efficient. Increased liquidity is another advantage, as facilitating cross-chain transactions enhances liquidity across platforms and allows users to capitalize on market opportunities more effectively. For developers, ZetaLink creates innovative development opportunities by enabling them to create versatile dapps that utilize both Bitcoin and ZRC20 tokens.\n\nZetaLink is not just a tool -- it’s a gateway to a more interconnected blockchain experience. By bridging Bitcoin with emerging token standards like ZRC20, it empowers users and developers alike to explore new horizons in decentralized finance.\n\nJoin us in shaping the future of cross-chain interactions with ZetaLink!", - "name": "ZetaLink", - "screenshots": [ - "./images/zetalink/1.png", - "./images/zetalink/2.png", - "./images/zetalink/3.png" - ], - "sourceCode": "https://github.com/1337-ishaan/zetalink", - "summary": "Bridge and cross-chain transfer native Bitcoin to select ZRC20 tokens across ZetaChain, Ethereum, Binance Smart Chain, and Polygon, with seamless cross-chain functionality and enhanced interoperability.", - "support": { - "contact": "mailto:zetalinksnap@gmail.com", - "faq": "https://docs.zetalink.xyz/faqs", - "knowledgeBase": "https://docs.zetalink.xyz/" - }, - "website": "https://zetalink.xyz/" - }, - "versions": { - "0.2.1": { - "checksum": "FZppi2JiT0+eKYRgdfue07PGlqqXOv1QMUCtPucSxjg=" - } - } - }, - "npm:zns-connect": { - "id": "npm:zns-connect", - "metadata": { - "author": { - "name": "ZNS Connect Name Service", - "website": "https://www.znsconnect.io" - }, - "category": "name resolution", - "description": "ZNS Connect is a powerful MetaMask Snap that brings (ZNS) domain resolution directly to your wallet.\n\nKey Features:\n- Resolve ZNS domains across multiple networks (Polygon, BSC, Ethereum)\n- Support for multiple TLDs including .honey, .cz, and .ink\n- Direct wallet integration for seamless domain resolution\n- Real-time domain validation and checking\n\nHow to Use:\n1. Install the Snap through MetaMask\n2. Enter any ZNS domain (example: mydomain.poly)\n3. Get instant resolution to the corresponding wallet address\n\nThis Snap simplifies blockchain domain resolution by eliminating the need for external resolvers or websites. Perfect for developers, crypto enthusiasts, and anyone working with ZNS domains.", - "name": "ZNS Connect Name Service", - "screenshots": [ - "./images/zns-connect/1.png", - "./images/zns-connect/2.png", - "./images/zns-connect/3.png" - ], - "sourceCode": "https://github.com/xinkin/znsConnect", - "summary": "Resolve ZNS domains like .honey, .hvm, .ink, .poly, and more directly in your wallet across multiple networks.", - "support": { - "contact": "mailto:info@znsconnect.io", - "faq": "https://docs.znsconnect.io/user-guide/zns-on-metamask-snap/general-faq", - "knowledgeBase": "https://docs.znsconnect.io/user-guide/zns-on-metamask-snap/knowledge-base" - } - }, - "versions": { - "0.1.7": { - "checksum": "Wr3nvnhYmtLBRj8WUOw9uHVSEPgER0MycY75N9eE+ZM=" - } - } - }, - "npm:zyfi-paymaster-insight-snap": { - "id": "npm:zyfi-paymaster-insight-snap", - "metadata": { - "author": { - "name": "Zyfi", - "website": "https://www.zyfi.org" - }, - "category": "transaction insights", - "description": "The Zyfi Paymaster Insight Snap aims to improve the readability of signing transactions on the ZKsync ecosystem, particularly for paymaster-related transactions using txType 113 (https://docs.zksync.io/zk-stack/concepts/transaction-lifecycle#eip-712-0x71). This transaction is an EIP-712 type, but on MetaMask’s signature popup, critical information like “from” and “to” addresses is displayed in an unintuitive format (e.g., uint256).\n\nThe Snap’s key purpose is to decode these fields into a more readable format, making it easier for users to understand the transaction details they’re signing. Additionally, it provides extra information related to the paymaster, such as the paymaster address, type, gas fee token address, and gas fee token amount. This gives users more clarity on what they’re signing, helping them avoid potential malicious signatures.", - "name": "Zyfi Paymaster Insights", - "screenshots": [ - "./images/zyfi-paymaster-insight-snap/1.jpg", - "./images/zyfi-paymaster-insight-snap/2.jpg", - "./images/zyfi-paymaster-insight-snap/3.jpg" - ], - "sourceCode": "https://github.com/ondefy/zyfi-snaps", - "summary": "Improve readability for ZKsync and Elastic chains EIP-712 type-113 transactions.", - "support": { - "contact": "https://discord.gg/ondefy-877871589444710450" - }, - "website": "https://staging.zyfi.org/paymaster-insight-snap" - }, - "versions": { - "0.1.0": { - "checksum": "F8f2M6/vpFU2WRDKiMVFfXJbkYB4bifhbIXIpGftmkg=" - } - } - } - } - }, - "signature": "0x304402206e345ea9ae4a4b973b0a56bf3fbf0bd9f089052ab77150affab0b0b2ff13aa55022050e977207b5e8dbb36b65f12ad52f5f3dd7edb584bc6634ed6c98f7c311bfdbc", - "lastUpdated": 1778884124470, - "databaseUnavailable": false, - "interfaces": {}, - "insights": {}, - "names": { - "ethereumAddress": { - "0x2b6a82d1fea4d5b137095ca5306ba2589b630a08": { - "*": { - "name": "Account 5", - "origin": "account-identity", - "proposedNames": {}, - "sourceId": null - } - }, - "0x30e8ccad5a980bdf30447f8c2c48e70989d9d294": { - "*": { - "name": "Account 1", - "origin": "account-identity", - "proposedNames": {}, - "sourceId": null - } - }, - "0x3823c59973351f50e8b985e182b81300dae9bb45": { - "*": { - "name": "Account 9", - "origin": "account-identity", - "proposedNames": {}, - "sourceId": null - } - }, - "0x452ca3dad6db7f3a47bbf15b758b6749db579bbc": { - "*": { - "name": "Account 4", - "origin": "account-identity", - "proposedNames": {}, - "sourceId": null - } - }, - "0x83ad6a1294d949d514361326bcebae4f73957327": { - "*": { - "name": "Account 7", - "origin": "account-identity", - "proposedNames": {}, - "sourceId": null - } - }, - "0x94d1362400e999b38c845ca2c305c084031dae84": { - "*": { - "name": "Account 6", - "origin": "account-identity", - "proposedNames": {}, - "sourceId": null - } - }, - "0x9f66e62fd52eeb9286385f620d2bcbe02c94443e": { - "*": { - "name": "Ledger 1", - "origin": "account-identity", - "proposedNames": {}, - "sourceId": null - } - }, - "0xbcc30cc9b8109f87fcede0c57e3a8c3dc979e3d0": { - "*": { - "name": "Account 8", - "origin": "account-identity", - "proposedNames": {}, - "sourceId": null - } - }, - "0xe2f39519240814a77047490357ced4d094b6c9c7": { - "*": { - "name": "Account 3", - "origin": "account-identity", - "proposedNames": {}, - "sourceId": null - } - }, - "0xf25bd11c334507fd007d584e2d0b7b2c6543f714": { - "*": { - "name": "Account 2", - "origin": "account-identity", - "proposedNames": {}, - "sourceId": null - } - } - } - }, - "nameSources": {}, - "userOperations": {}, - "isSignedIn": true, - "needsProfilePairing": true, - "srpSessionData": { - "01KJ6E9MG4VY87VPKWJPR6W39K": { - "profile": { - "identifierId": "12438dcb5c88f13778491fdb251a5b1f13d43bf2f0b7bde7c329643bbe455599", - "metaMetricsId": "0x585932e95120a60224e1b9306442908dee59fd4785240188a2f92eb49c668e92", - "profileId": "dbb2ad9a-010f-4a82-8676-15885d61dd00", - "canonicalProfileId": "dbb2ad9a-010f-4a82-8676-15885d61dd00" - }, - "token": { - "expiresIn": 86399, - "obtainedAt": 1779088870216 - } - }, - "01KMK79H2SG3MB2Q7XWEXMZ013": { - "profile": { - "identifierId": "94dfb28e8aecdbe77a2ff17165f51b2fe73968565334aec4422c1b58a82f0ee4", - "metaMetricsId": "0x585932e95120a60224e1b9306442908dee59fd4785240188a2f92eb49c668e92", - "profileId": "4bfc51e5-cdda-4983-8046-7f332a0ee8e8", - "canonicalProfileId": "4bfc51e5-cdda-4983-8046-7f332a0ee8e8" - }, - "token": { - "expiresIn": 86399, - "obtainedAt": 1779126364326 - } - } - }, - "isBackupAndSyncEnabled": true, - "isBackupAndSyncUpdateLoading": false, - "isAccountSyncingEnabled": true, - "isContactSyncingEnabled": true, - "isContactSyncingInProgress": false, - "subscriptionAccountsSeen": [ - "0x30E8ccaD5A980BDF30447f8c2C48e70989D9d294", - "0xF25bd11C334507Fd007d584E2D0b7b2C6543f714", - "0xE2F39519240814a77047490357cEd4d094B6C9C7", - "0x452cA3DAd6dB7F3a47bbF15b758B6749Db579bBc", - "0x2b6a82d1Fea4D5B137095cA5306BA2589B630A08", - "0x94d1362400E999b38C845cA2c305c084031DAe84", - "0x83AD6A1294d949d514361326bcebAe4F73957327", - "0xbcc30CC9B8109f87fcEDE0C57E3A8c3DC979e3D0", - "0x3823C59973351F50e8B985e182b81300Dae9Bb45", - "0xc9442048Fd0c34b684035a82188B69c4eE5e8f21", - "0x9dc641ccD7D1e7C66e47a25598aCe7219548d887", - "0x6Eff00186BA65C5FAde98d75aA4d99eF71fA461B", - "0x04400BB51B1f886CFf338eb2b4118f9CeB4E6fD5", - "0xb3864B298f4fDdbbBd2Fa5CF1a2a2748932b3B81", - "0xeeEAB71A5989b7951389e3dF313Ea9876508856f", - "0x422B8d8914cDad779f587414d647e953bB3A87db", - "0x141d32a89a1e0a5Ef360034a2f60a4B917c18838", - "0x98931E2B2272891c2E8e47D675007D94aE90cE64", - "0xf1F63D55E8f25C962079BE324c71CDcf792c6047", - "0xDA04e0fE4e79eebcaFfCbfFf8eA0BDcd442d2119", - "0xa30078E306614C2F444550da6bC759173Dfb61Fd", - "0x09b8556833e53f92EE0b668DB146B43CA2CAB130" - ], - "isMetamaskNotificationsFeatureSeen": true, - "isNotificationServicesEnabled": true, - "isFeatureAnnouncementsEnabled": true, - "metamaskNotificationsList": [ - { - "created_at": "2026-03-30T22:55:02.273318Z", - "id": "07ae895c-30e8-52ba-858e-a00a27e09461", - "notification_type": "on-chain", - "payload": { - "address": "0xf25bd11c334507fd007d584e2d0b7b2c6543f714", - "block_number": 89693538, - "block_timestamp": "1774911301", - "chain_id": 56, - "data": { - "to": "0x1a1ec25dc08e98e5e93f1104b5e5cdd298707d31", - "from": "0xf25bd11c334507fd007d584e2d0b7b2c6543f714", - "kind": "eth_sent", - "amount": { - "eth": "0.001715375681294112", - "usd": "1.05" - }, - "network_fee": { - "gas_price": "60000000", - "native_token_price_in_usd": "611.17" - } - }, - "network": { - "block_explorer": { - "name": "BscScan", - "url": "https://bscscan.com" - }, - "name": "BNB Smart Chain", - "native_symbol": "BNB" - }, - "tx_hash": "0x113ff4b548529b6b75024876e21275f9a39e6be2f0c70c480b774d7d0ea1a851" - }, - "unread": true, - "type": "eth_sent", - "createdAt": "2026-03-30T22:55:02.273Z", - "isRead": true - }, - { - "created_at": "2026-03-30T22:55:02.262602Z", - "id": "026c12ae-813a-503b-92ae-cd0b513fc1ab", - "notification_type": "on-chain", - "payload": { - "address": "0xf25bd11c334507fd007d584e2d0b7b2c6543f714", - "block_number": 89693538, - "block_timestamp": "1774911301", - "chain_id": 56, - "data": { - "kind": "metamask_swap_completed", - "rate": "0.0016519272599608813615", - "token_in": { - "usd": "611.17", - "name": "Binance Coin", - "image": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x0000000000000000000000000000000000000000.png", - "amount": "1715375681294112", - "symbol": "BNB", - "address": "0x0000000000000000000000000000000000000000", - "decimals": "18" - }, - "token_out": { - "usd": "0.999147", - "name": "Tether USD", - "image": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x55d398326f99059ff775485246999027b3197955.png", - "amount": "1038408725899185861", - "symbol": "USDT", - "address": "0x55d398326f99059ff775485246999027b3197955", - "decimals": "18" - }, - "network_fee": { - "gas_price": "60000000", - "native_token_price_in_usd": "611.17" - } - }, - "network": { - "block_explorer": { - "name": "BscScan", - "url": "https://bscscan.com" - }, - "name": "BNB Smart Chain", - "native_symbol": "BNB" - }, - "tx_hash": "0x113ff4b548529b6b75024876e21275f9a39e6be2f0c70c480b774d7d0ea1a851" - }, - "unread": true, - "type": "metamask_swap_completed", - "createdAt": "2026-03-30T22:55:02.262Z", - "isRead": true - }, - { - "created_at": "2026-03-26T18:19:19.585406Z", - "id": "d916658e-179f-519a-907e-4216e362f601", - "notification_type": "on-chain", - "payload": { - "address": "0xf25bd11c334507fd007d584e2d0b7b2c6543f714", - "block_number": 88889592, - "block_timestamp": "1774549159", - "chain_id": 56, - "data": { - "kind": "metamask_swap_completed", - "rate": "0", - "token_in": { - "usd": "625.2", - "name": "Binance Coin", - "image": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x0000000000000000000000000000000000000000.png", - "amount": "0", - "symbol": "BNB", - "address": "0x0000000000000000000000000000000000000000", - "decimals": "18" - }, - "token_out": { - "usd": "0.999545", - "name": "Tether USD", - "image": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x55d398326f99059ff775485246999027b3197955.png", - "amount": "1088590308995545055", - "symbol": "USDT", - "address": "0x55d398326f99059ff775485246999027b3197955", - "decimals": "18" - }, - "network_fee": { - "gas_price": "60000000", - "native_token_price_in_usd": "625.2" - } - }, - "network": { - "block_explorer": { - "name": "BscScan", - "url": "https://bscscan.com" - }, - "name": "BNB Smart Chain", - "native_symbol": "BNB" - }, - "tx_hash": "0x2a85a6146bed8e61c13c91d3d3fda74d4283b5fae7513aa1744ed98b63087edd" - }, - "unread": true, - "type": "metamask_swap_completed", - "createdAt": "2026-03-26T18:19:19.585Z", - "isRead": true - }, - { - "created_at": "2026-03-25T21:47:01.524127Z", - "id": "5e5bd91c-0313-5b57-a264-3fb24667f4b0", - "notification_type": "on-chain", - "payload": { - "address": "0xf25bd11c334507fd007d584e2d0b7b2c6543f714", - "block_number": 43842937, - "block_timestamp": "1774475221", - "chain_id": 8453, - "data": { - "to": "0xa5c1ce365ddb5a91ff466774ec4bdf8f97cb9f55", - "from": "0xf25bd11c334507fd007d584e2d0b7b2c6543f714", - "kind": "erc20_sent", - "token": { - "usd": "0.999846", - "name": "USD Coin", - "image": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x833589fcd6edb6e08f4c7c32d4f71b54bda02913.png", - "amount": "1213960", - "symbol": "USDC", - "address": "0x833589fcd6edb6e08f4c7c32d4f71b54bda02913", - "decimals": "6" - }, - "network_fee": { - "gas_price": "6000001", - "native_token_price_in_usd": "2163.23" - } - }, - "network": { - "block_explorer": { - "name": "BaseScan", - "url": "https://basescan.org" - }, - "name": "Base", - "native_symbol": "ETH" - }, - "tx_hash": "0x6ec64d9443bdbe76357c6cecd06a6aaa9782f06d52b9807af4e7fad0464df8f8" - }, - "unread": true, - "type": "erc20_sent", - "createdAt": "2026-03-25T21:47:01.524Z", - "isRead": true - }, - { - "created_at": "2026-03-25T21:46:23.401277Z", - "id": "a428e7e3-b427-57a8-8f24-ad412c119c94", - "notification_type": "on-chain", - "payload": { - "address": "0xf25bd11c334507fd007d584e2d0b7b2c6543f714", - "block_number": 43842918, - "block_timestamp": "1774475183", - "chain_id": 8453, - "data": { - "to": "0xf25bd11c334507fd007d584e2d0b7b2c6543f714", - "from": "0xf70da97812cb96acdf810712aa562db8dfa3dbef", - "kind": "erc20_received", - "token": { - "usd": "0.999846", - "name": "USD Coin", - "image": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x833589fcd6edb6e08f4c7c32d4f71b54bda02913.png", - "amount": "1213960", - "symbol": "USDC", - "address": "0x833589fcd6edb6e08f4c7c32d4f71b54bda02913", - "decimals": "6" - }, - "network_fee": { - "gas_price": "6000000", - "native_token_price_in_usd": "2163.23" - } - }, - "network": { - "block_explorer": { - "name": "BaseScan", - "url": "https://basescan.org" - }, - "name": "Base", - "native_symbol": "ETH" - }, - "tx_hash": "0xcf8c5f42c635a50c325e5f3360528d99218e897e4fcd2f6091677755a860145d" - }, - "unread": true, - "type": "erc20_received", - "createdAt": "2026-03-25T21:46:23.401Z", - "isRead": true - }, - { - "created_at": "2026-03-25T21:46:19.41119Z", - "id": "ba8e192d-35f4-5667-966e-b63170d5dd18", - "notification_type": "on-chain", - "payload": { - "address": "0xf25bd11c334507fd007d584e2d0b7b2c6543f714", - "block_number": 88725343, - "block_timestamp": "1774475178", - "chain_id": 56, - "data": { - "to": "0xaec23140408534b378bf5832defc426df8604b59", - "from": "0xf25bd11c334507fd007d584e2d0b7b2c6543f714", - "kind": "eth_sent", - "amount": { - "eth": "0.001942184844518098", - "usd": "1.26" - }, - "network_fee": { - "gas_price": "60000000", - "native_token_price_in_usd": "646.82" - } - }, - "network": { - "block_explorer": { - "name": "BscScan", - "url": "https://bscscan.com" - }, - "name": "BNB Smart Chain", - "native_symbol": "BNB" - }, - "tx_hash": "0x1cc8541b9f2b287e1031bd05dcb97b01f1c95b6d7462f99cc0bbcea3fd0a51b8" - }, - "unread": true, - "type": "eth_sent", - "createdAt": "2026-03-25T21:46:19.411Z", - "isRead": true - }, - { - "created_at": "2026-03-25T19:03:08.428294Z", - "id": "18768dd8-b355-5138-bee4-7890f86d0ba6", - "notification_type": "on-chain", - "payload": { - "address": "0xf25bd11c334507fd007d584e2d0b7b2c6543f714", - "block_number": 88703611, - "block_timestamp": "1774465387", - "chain_id": 56, - "data": { - "to": "0x1a1ec25dc08e98e5e93f1104b5e5cdd298707d31", - "from": "0xf25bd11c334507fd007d584e2d0b7b2c6543f714", - "kind": "eth_sent", - "amount": { - "eth": "0.002024433351334836", - "usd": "1.31" - }, - "network_fee": { - "gas_price": "60000000", - "native_token_price_in_usd": "644.66" - } - }, - "network": { - "block_explorer": { - "name": "BscScan", - "url": "https://bscscan.com" - }, - "name": "BNB Smart Chain", - "native_symbol": "BNB" - }, - "tx_hash": "0x58e366cf331a28effcdca91502a9bbfd34ddd2a876c59e6939bea52911d919ab" - }, - "unread": true, - "type": "eth_sent", - "createdAt": "2026-03-25T19:03:08.428Z", - "isRead": true - }, - { - "created_at": "2026-03-25T19:03:08.403788Z", - "id": "75f9e614-7eec-5814-b179-6951bfa62c0b", - "notification_type": "on-chain", - "payload": { - "address": "0xf25bd11c334507fd007d584e2d0b7b2c6543f714", - "block_number": 88703611, - "block_timestamp": "1774465387", - "chain_id": 56, - "data": { - "kind": "metamask_swap_completed", - "rate": "0.0015626516989449120791", - "token_in": { - "usd": "644.66", - "name": "Binance Coin", - "image": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x0000000000000000000000000000000000000000.png", - "amount": "2024433351334836", - "symbol": "BNB", - "address": "0x0000000000000000000000000000000000000000", - "decimals": "18" - }, - "token_out": { - "usd": "0.999839", - "name": "Tether USD", - "image": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x55d398326f99059ff775485246999027b3197955.png", - "amount": "1295511567102070542", - "symbol": "USDT", - "address": "0x55d398326f99059ff775485246999027b3197955", - "decimals": "18" - }, - "network_fee": { - "gas_price": "60000000", - "native_token_price_in_usd": "644.66" - } - }, - "network": { - "block_explorer": { - "name": "BscScan", - "url": "https://bscscan.com" - }, - "name": "BNB Smart Chain", - "native_symbol": "BNB" - }, - "tx_hash": "0x58e366cf331a28effcdca91502a9bbfd34ddd2a876c59e6939bea52911d919ab" - }, - "unread": true, - "type": "metamask_swap_completed", - "createdAt": "2026-03-25T19:03:08.403Z", - "isRead": true - }, - { - "created_at": "2026-03-25T19:01:04.372461Z", - "id": "d68a5eb2-c446-5e58-b2e5-7a0abf2c1f25", - "notification_type": "on-chain", - "payload": { - "address": "0xf25bd11c334507fd007d584e2d0b7b2c6543f714", - "block_number": 88703336, - "block_timestamp": "1774465264", - "chain_id": 56, - "data": { - "to": "0x1a1ec25dc08e98e5e93f1104b5e5cdd298707d31", - "from": "0xf25bd11c334507fd007d584e2d0b7b2c6543f714", - "kind": "eth_sent", - "amount": { - "eth": "0.002118032564563131", - "usd": "1.37" - }, - "network_fee": { - "gas_price": "60000000", - "native_token_price_in_usd": "645.44" - } - }, - "network": { - "block_explorer": { - "name": "BscScan", - "url": "https://bscscan.com" - }, - "name": "BNB Smart Chain", - "native_symbol": "BNB" - }, - "tx_hash": "0xe2c4a8d392e591179103675a0726ffe5755e495f6a72f165ea96cab30250c91d" - }, - "unread": true, - "type": "eth_sent", - "createdAt": "2026-03-25T19:01:04.372Z", - "isRead": true - }, - { - "created_at": "2026-03-25T19:01:04.34123Z", - "id": "e881cb42-baa2-50b9-b757-0f0696530603", - "notification_type": "on-chain", - "payload": { - "address": "0xf25bd11c334507fd007d584e2d0b7b2c6543f714", - "block_number": 88703336, - "block_timestamp": "1774465264", - "chain_id": 56, - "data": { - "kind": "metamask_swap_completed", - "rate": "0.0015643971655388769015", - "token_in": { - "usd": "645.44", - "name": "Binance Coin", - "image": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x0000000000000000000000000000000000000000.png", - "amount": "2118032564563131", - "symbol": "BNB", - "address": "0x0000000000000000000000000000000000000000", - "decimals": "18" - }, - "token_out": { - "usd": "0.999885", - "name": "Tether USD", - "image": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x55d398326f99059ff775485246999027b3197955.png", - "amount": "1353896958662378554", - "symbol": "USDT", - "address": "0x55d398326f99059ff775485246999027b3197955", - "decimals": "18" - }, - "network_fee": { - "gas_price": "60000000", - "native_token_price_in_usd": "645.44" - } - }, - "network": { - "block_explorer": { - "name": "BscScan", - "url": "https://bscscan.com" - }, - "name": "BNB Smart Chain", - "native_symbol": "BNB" - }, - "tx_hash": "0xe2c4a8d392e591179103675a0726ffe5755e495f6a72f165ea96cab30250c91d" - }, - "unread": true, - "type": "metamask_swap_completed", - "createdAt": "2026-03-25T19:01:04.341Z", - "isRead": true - }, - { - "created_at": "2026-03-25T18:42:16.05176Z", - "id": "dbd7c52f-6b2c-5d2c-99cd-bb02f3d5cda7", - "notification_type": "on-chain", - "payload": { - "address": "0xf25bd11c334507fd007d584e2d0b7b2c6543f714", - "block_number": 88700828, - "block_timestamp": "1774464135", - "chain_id": 56, - "data": { - "to": "0x1a1ec25dc08e98e5e93f1104b5e5cdd298707d31", - "from": "0xf25bd11c334507fd007d584e2d0b7b2c6543f714", - "kind": "eth_sent", - "amount": { - "eth": "0.002216708230453404", - "usd": "1.43" - }, - "network_fee": { - "gas_price": "60000000", - "native_token_price_in_usd": "645.73" - } - }, - "network": { - "block_explorer": { - "name": "BscScan", - "url": "https://bscscan.com" - }, - "name": "BNB Smart Chain", - "native_symbol": "BNB" - }, - "tx_hash": "0x6ef78ff859c7229730e89421c950472579c8d302e9a0161369b6a8b24742aacc" - }, - "unread": true, - "type": "eth_sent", - "createdAt": "2026-03-25T18:42:16.051Z", - "isRead": true - }, - { - "created_at": "2026-03-25T18:42:16.03523Z", - "id": "6c3e7c09-088e-56c9-b4c8-f1e423584b81", - "notification_type": "on-chain", - "payload": { - "address": "0xf25bd11c334507fd007d584e2d0b7b2c6543f714", - "block_number": 88700828, - "block_timestamp": "1774464135", - "chain_id": 56, - "data": { - "kind": "metamask_swap_completed", - "rate": "0.0015659078046342170305", - "token_in": { - "usd": "645.73", - "name": "Binance Coin", - "image": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x0000000000000000000000000000000000000000.png", - "amount": "2216708230453404", - "symbol": "BNB", - "address": "0x0000000000000000000000000000000000000000", - "decimals": "18" - }, - "token_out": { - "usd": "0.999484", - "name": "Tether USD", - "image": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x55d398326f99059ff775485246999027b3197955.png", - "amount": "1415605838283185840", - "symbol": "USDT", - "address": "0x55d398326f99059ff775485246999027b3197955", - "decimals": "18" - }, - "network_fee": { - "gas_price": "60000000", - "native_token_price_in_usd": "645.73" - } - }, - "network": { - "block_explorer": { - "name": "BscScan", - "url": "https://bscscan.com" - }, - "name": "BNB Smart Chain", - "native_symbol": "BNB" - }, - "tx_hash": "0x6ef78ff859c7229730e89421c950472579c8d302e9a0161369b6a8b24742aacc" - }, - "unread": true, - "type": "metamask_swap_completed", - "createdAt": "2026-03-25T18:42:16.035Z", - "isRead": true - }, - { - "created_at": "2026-03-25T18:41:38.487292Z", - "id": "540d2cfa-547c-5509-82bd-8727f6cdc876", - "notification_type": "on-chain", - "payload": { - "address": "0xf25bd11c334507fd007d584e2d0b7b2c6543f714", - "block_number": 88700745, - "block_timestamp": "1774464098", - "chain_id": 56, - "data": { - "to": "0x1a1ec25dc08e98e5e93f1104b5e5cdd298707d31", - "from": "0xf25bd11c334507fd007d584e2d0b7b2c6543f714", - "kind": "eth_sent", - "amount": { - "eth": "0.002300036775198028", - "usd": "1.49" - }, - "network_fee": { - "gas_price": "60000000", - "native_token_price_in_usd": "645.73" - } - }, - "network": { - "block_explorer": { - "name": "BscScan", - "url": "https://bscscan.com" - }, - "name": "BNB Smart Chain", - "native_symbol": "BNB" - }, - "tx_hash": "0xd8a28bcfd324c25014c9914da4e4eeecfa24efe393a91796eaeef82e1b49a4b1" - }, - "unread": true, - "type": "eth_sent", - "createdAt": "2026-03-25T18:41:38.487Z", - "isRead": true - }, - { - "created_at": "2026-03-25T18:41:38.451112Z", - "id": "2708fdec-87f3-57cb-b4a5-465d3ece7cee", - "notification_type": "on-chain", - "payload": { - "address": "0xf25bd11c334507fd007d584e2d0b7b2c6543f714", - "block_number": 88700745, - "block_timestamp": "1774464098", - "chain_id": 56, - "data": { - "kind": "metamask_swap_completed", - "rate": "0.0015650890302949105024", - "token_in": { - "usd": "645.73", - "name": "Binance Coin", - "image": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x0000000000000000000000000000000000000000.png", - "amount": "2300036775198028", - "symbol": "BNB", - "address": "0x0000000000000000000000000000000000000000", - "decimals": "18" - }, - "token_out": { - "usd": "0.999484", - "name": "Tether USD", - "image": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x55d398326f99059ff775485246999027b3197955.png", - "amount": "1469588458341332141", - "symbol": "USDT", - "address": "0x55d398326f99059ff775485246999027b3197955", - "decimals": "18" - }, - "network_fee": { - "gas_price": "60000000", - "native_token_price_in_usd": "645.73" - } - }, - "network": { - "block_explorer": { - "name": "BscScan", - "url": "https://bscscan.com" - }, - "name": "BNB Smart Chain", - "native_symbol": "BNB" - }, - "tx_hash": "0xd8a28bcfd324c25014c9914da4e4eeecfa24efe393a91796eaeef82e1b49a4b1" - }, - "unread": true, - "type": "metamask_swap_completed", - "createdAt": "2026-03-25T18:41:38.451Z", - "isRead": true - }, - { - "created_at": "2026-03-25T18:30:42.188002Z", - "id": "24ec61b7-289d-5317-8a89-f253b255ef57", - "notification_type": "on-chain", - "payload": { - "address": "0xf25bd11c334507fd007d584e2d0b7b2c6543f714", - "block_number": 88699285, - "block_timestamp": "1774463441", - "chain_id": 56, - "data": { - "to": "0x1a1ec25dc08e98e5e93f1104b5e5cdd298707d31", - "from": "0xf25bd11c334507fd007d584e2d0b7b2c6543f714", - "kind": "eth_sent", - "amount": { - "eth": "0.002435261339369288", - "usd": "1.57" - }, - "network_fee": { - "gas_price": "60000000", - "native_token_price_in_usd": "645.08" - } - }, - "network": { - "block_explorer": { - "name": "BscScan", - "url": "https://bscscan.com" - }, - "name": "BNB Smart Chain", - "native_symbol": "BNB" - }, - "tx_hash": "0x6b505990c88b14267dd67a0d2dc2aff452201ed408f3311fba1c3e5e5ea9ef34" - }, - "unread": true, - "type": "eth_sent", - "createdAt": "2026-03-25T18:30:42.188Z", - "isRead": true - }, - { - "created_at": "2026-03-25T18:30:42.18791Z", - "id": "6c84a2e0-7548-5be1-b088-0bbc6cff1410", - "notification_type": "on-chain", - "payload": { - "address": "0xf25bd11c334507fd007d584e2d0b7b2c6543f714", - "block_number": 88699285, - "block_timestamp": "1774463441", - "chain_id": 56, - "data": { - "kind": "metamask_swap_completed", - "rate": "0.0015621955429501558669", - "token_in": { - "usd": "645.08", - "name": "Binance Coin", - "image": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x0000000000000000000000000000000000000000.png", - "amount": "2435261339369288", - "symbol": "BNB", - "address": "0x0000000000000000000000000000000000000000", - "decimals": "18" - }, - "token_out": { - "usd": "0.999801", - "name": "Tether USD", - "image": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x55d398326f99059ff775485246999027b3197955.png", - "amount": "1558871007127811639", - "symbol": "USDT", - "address": "0x55d398326f99059ff775485246999027b3197955", - "decimals": "18" - }, - "network_fee": { - "gas_price": "60000000", - "native_token_price_in_usd": "645.08" - } - }, - "network": { - "block_explorer": { - "name": "BscScan", - "url": "https://bscscan.com" - }, - "name": "BNB Smart Chain", - "native_symbol": "BNB" - }, - "tx_hash": "0x6b505990c88b14267dd67a0d2dc2aff452201ed408f3311fba1c3e5e5ea9ef34" - }, - "unread": true, - "type": "metamask_swap_completed", - "createdAt": "2026-03-25T18:30:42.187Z", - "isRead": true - }, - { - "created_at": "2026-03-25T18:25:10.410852Z", - "id": "180c60f5-1fdb-5cfd-a9a6-ba9ca1e7922a", - "notification_type": "on-chain", - "payload": { - "address": "0xf25bd11c334507fd007d584e2d0b7b2c6543f714", - "block_number": 88698549, - "block_timestamp": "1774463109", - "chain_id": 56, - "data": { - "to": "0x1a1ec25dc08e98e5e93f1104b5e5cdd298707d31", - "from": "0xf25bd11c334507fd007d584e2d0b7b2c6543f714", - "kind": "eth_sent", - "amount": { - "eth": "0.002546692829074388", - "usd": "1.64" - }, - "network_fee": { - "gas_price": "60000000", - "native_token_price_in_usd": "645.08" - } - }, - "network": { - "block_explorer": { - "name": "BscScan", - "url": "https://bscscan.com" - }, - "name": "BNB Smart Chain", - "native_symbol": "BNB" - }, - "tx_hash": "0x751d896dc840a31c715e68fd6bc4a34cc55a2289d742a6125200cb59c615e7d3" - }, - "unread": true, - "type": "eth_sent", - "createdAt": "2026-03-25T18:25:10.410Z", - "isRead": true - }, - { - "created_at": "2026-03-25T18:25:10.394469Z", - "id": "f504f507-7c62-5939-8f1d-c191aba9efe3", - "notification_type": "on-chain", - "payload": { - "address": "0xf25bd11c334507fd007d584e2d0b7b2c6543f714", - "block_number": 88698549, - "block_timestamp": "1774463109", - "chain_id": 56, - "data": { - "kind": "metamask_swap_completed", - "rate": "0.0015615216338902649602", - "token_in": { - "usd": "645.08", - "name": "Binance Coin", - "image": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x0000000000000000000000000000000000000000.png", - "amount": "2546692829074388", - "symbol": "BNB", - "address": "0x0000000000000000000000000000000000000000", - "decimals": "18" - }, - "token_out": { - "usd": "0.999801", - "name": "Tether USD", - "image": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x55d398326f99059ff775485246999027b3197955.png", - "amount": "1630904608557831471", - "symbol": "USDT", - "address": "0x55d398326f99059ff775485246999027b3197955", - "decimals": "18" - }, - "network_fee": { - "gas_price": "60000000", - "native_token_price_in_usd": "645.08" - } - }, - "network": { - "block_explorer": { - "name": "BscScan", - "url": "https://bscscan.com" - }, - "name": "BNB Smart Chain", - "native_symbol": "BNB" - }, - "tx_hash": "0x751d896dc840a31c715e68fd6bc4a34cc55a2289d742a6125200cb59c615e7d3" - }, - "unread": true, - "type": "metamask_swap_completed", - "createdAt": "2026-03-25T18:25:10.394Z", - "isRead": true - }, - { - "created_at": "2026-03-25T18:23:32.492976Z", - "id": "6cf546c4-345b-5606-886c-c58f2dcecb7c", - "notification_type": "on-chain", - "payload": { - "address": "0xf25bd11c334507fd007d584e2d0b7b2c6543f714", - "block_number": 88698331, - "block_timestamp": "1774463011", - "chain_id": 56, - "data": { - "to": "0x1a1ec25dc08e98e5e93f1104b5e5cdd298707d31", - "from": "0xf25bd11c334507fd007d584e2d0b7b2c6543f714", - "kind": "eth_sent", - "amount": { - "eth": "0.002655420037010217", - "usd": "1.71" - }, - "network_fee": { - "gas_price": "60000000", - "native_token_price_in_usd": "645.08" - } - }, - "network": { - "block_explorer": { - "name": "BscScan", - "url": "https://bscscan.com" - }, - "name": "BNB Smart Chain", - "native_symbol": "BNB" - }, - "tx_hash": "0xaeb7b86ec71bf5485670a5a5cbd2530ae36f2ee746ca47ab7839f9b90dc54ffd" - }, - "unread": true, - "type": "eth_sent", - "createdAt": "2026-03-25T18:23:32.492Z", - "isRead": true - }, - { - "created_at": "2026-03-25T18:23:32.482849Z", - "id": "391b2608-96b4-5f5f-bdb6-dfa54f39bafa", - "notification_type": "on-chain", - "payload": { - "address": "0xf25bd11c334507fd007d584e2d0b7b2c6543f714", - "block_number": 88698331, - "block_timestamp": "1774463011", - "chain_id": 56, - "data": { - "kind": "metamask_swap_completed", - "rate": "0.0015612181318352170781", - "token_in": { - "usd": "645.08", - "name": "Binance Coin", - "image": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x0000000000000000000000000000000000000000.png", - "amount": "2655420037010217", - "symbol": "BNB", - "address": "0x0000000000000000000000000000000000000000", - "decimals": "18" - }, - "token_out": { - "usd": "0.999801", - "name": "Tether USD", - "image": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x55d398326f99059ff775485246999027b3197955.png", - "amount": "1700864205240021113", - "symbol": "USDT", - "address": "0x55d398326f99059ff775485246999027b3197955", - "decimals": "18" - }, - "network_fee": { - "gas_price": "60000000", - "native_token_price_in_usd": "645.08" - } - }, - "network": { - "block_explorer": { - "name": "BscScan", - "url": "https://bscscan.com" - }, - "name": "BNB Smart Chain", - "native_symbol": "BNB" - }, - "tx_hash": "0xaeb7b86ec71bf5485670a5a5cbd2530ae36f2ee746ca47ab7839f9b90dc54ffd" - }, - "unread": true, - "type": "metamask_swap_completed", - "createdAt": "2026-03-25T18:23:32.482Z", - "isRead": true - }, - { - "created_at": "2026-03-25T18:17:57.193721Z", - "id": "b7b57ec9-e493-5533-b594-289065afcf99", - "notification_type": "on-chain", - "payload": { - "address": "0xf25bd11c334507fd007d584e2d0b7b2c6543f714", - "block_number": 88697586, - "block_timestamp": "1774462676", - "chain_id": 56, - "data": { - "to": "0x1a1ec25dc08e98e5e93f1104b5e5cdd298707d31", - "from": "0xf25bd11c334507fd007d584e2d0b7b2c6543f714", - "kind": "eth_sent", - "amount": { - "eth": "0.002759091539282358", - "usd": "1.78" - }, - "network_fee": { - "gas_price": "60000000", - "native_token_price_in_usd": "645.08" - } - }, - "network": { - "block_explorer": { - "name": "BscScan", - "url": "https://bscscan.com" - }, - "name": "BNB Smart Chain", - "native_symbol": "BNB" - }, - "tx_hash": "0x6d7fead23509911fab6a8965b0ddb40b7c51662ea05fba0c9856ab3a1dc79078" - }, - "unread": true, - "type": "eth_sent", - "createdAt": "2026-03-25T18:17:57.193Z", - "isRead": true - }, - { - "created_at": "2026-03-25T18:17:57.193627Z", - "id": "61079144-0d04-5ee8-8de1-fadb5ed1f345", - "notification_type": "on-chain", - "payload": { - "address": "0xf25bd11c334507fd007d584e2d0b7b2c6543f714", - "block_number": 88697586, - "block_timestamp": "1774462676", - "chain_id": 56, - "data": { - "kind": "metamask_swap_completed", - "rate": "0.0015631723454732526157", - "token_in": { - "usd": "645.08", - "name": "Binance Coin", - "image": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x0000000000000000000000000000000000000000.png", - "amount": "2759091539282358", - "symbol": "BNB", - "address": "0x0000000000000000000000000000000000000000", - "decimals": "18" - }, - "token_out": { - "usd": "0.999801", - "name": "Tether USD", - "image": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x55d398326f99059ff775485246999027b3197955.png", - "amount": "1765059078272677076", - "symbol": "USDT", - "address": "0x55d398326f99059ff775485246999027b3197955", - "decimals": "18" - }, - "network_fee": { - "gas_price": "60000000", - "native_token_price_in_usd": "645.08" - } - }, - "network": { - "block_explorer": { - "name": "BscScan", - "url": "https://bscscan.com" - }, - "name": "BNB Smart Chain", - "native_symbol": "BNB" - }, - "tx_hash": "0x6d7fead23509911fab6a8965b0ddb40b7c51662ea05fba0c9856ab3a1dc79078" - }, - "unread": true, - "type": "metamask_swap_completed", - "createdAt": "2026-03-25T18:17:57.193Z", - "isRead": true - }, - { - "created_at": "2026-03-25T18:11:44.603982Z", - "id": "b2a5ec28-e8dc-51e3-94d9-f65116853314", - "notification_type": "on-chain", - "payload": { - "address": "0xf25bd11c334507fd007d584e2d0b7b2c6543f714", - "block_number": 88696759, - "block_timestamp": "1774462304", - "chain_id": 56, - "data": { - "to": "0x1a1ec25dc08e98e5e93f1104b5e5cdd298707d31", - "from": "0xf25bd11c334507fd007d584e2d0b7b2c6543f714", - "kind": "eth_sent", - "amount": { - "eth": "0.002864686371414607", - "usd": "1.85" - }, - "network_fee": { - "gas_price": "60000000", - "native_token_price_in_usd": "645.06" - } - }, - "network": { - "block_explorer": { - "name": "BscScan", - "url": "https://bscscan.com" - }, - "name": "BNB Smart Chain", - "native_symbol": "BNB" - }, - "tx_hash": "0xb4c8ba10f5fa990d7b1c5ac39c05afb13ae448eb1135480bac4e4e7e5c06e9ba" - }, - "unread": true, - "type": "eth_sent", - "createdAt": "2026-03-25T18:11:44.603Z", - "isRead": true - }, - { - "created_at": "2026-03-25T18:11:44.594304Z", - "id": "f98078e8-a4e1-589e-a4a0-6285d3c0bcfa", - "notification_type": "on-chain", - "payload": { - "address": "0xf25bd11c334507fd007d584e2d0b7b2c6543f714", - "block_number": 88696759, - "block_timestamp": "1774462304", - "chain_id": 56, - "data": { - "kind": "metamask_swap_completed", - "rate": "0.0015634558574497592351", - "token_in": { - "usd": "645.06", - "name": "Binance Coin", - "image": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x0000000000000000000000000000000000000000.png", - "amount": "2864686371414607", - "symbol": "BNB", - "address": "0x0000000000000000000000000000000000000000", - "decimals": "18" - }, - "token_out": { - "usd": "0.99988", - "name": "Tether USD", - "image": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x55d398326f99059ff775485246999027b3197955.png", - "amount": "1832278383661792682", - "symbol": "USDT", - "address": "0x55d398326f99059ff775485246999027b3197955", - "decimals": "18" - }, - "network_fee": { - "gas_price": "60000000", - "native_token_price_in_usd": "645.06" - } - }, - "network": { - "block_explorer": { - "name": "BscScan", - "url": "https://bscscan.com" - }, - "name": "BNB Smart Chain", - "native_symbol": "BNB" - }, - "tx_hash": "0xb4c8ba10f5fa990d7b1c5ac39c05afb13ae448eb1135480bac4e4e7e5c06e9ba" - }, - "unread": true, - "type": "metamask_swap_completed", - "createdAt": "2026-03-25T18:11:44.594Z", - "isRead": true - }, - { - "created_at": "2026-03-25T17:29:26.071345Z", - "id": "e2173d50-7240-51e1-b9f8-16edf40afe9a", - "notification_type": "on-chain", - "payload": { - "address": "0xf25bd11c334507fd007d584e2d0b7b2c6543f714", - "block_number": 88691117, - "block_timestamp": "1774459765", - "chain_id": 56, - "data": { - "to": "0x1a1ec25dc08e98e5e93f1104b5e5cdd298707d31", - "from": "0xf25bd11c334507fd007d584e2d0b7b2c6543f714", - "kind": "eth_sent", - "amount": { - "eth": "0.002962069992279377", - "usd": "1.92" - }, - "network_fee": { - "gas_price": "60000000", - "native_token_price_in_usd": "646.85" - } - }, - "network": { - "block_explorer": { - "name": "BscScan", - "url": "https://bscscan.com" - }, - "name": "BNB Smart Chain", - "native_symbol": "BNB" - }, - "tx_hash": "0x0b261d2f943301061504dfecc3d59c026344c4fe1f8f980a99cfc0f0d13648b3" - }, - "unread": true, - "type": "eth_sent", - "createdAt": "2026-03-25T17:29:26.071Z", - "isRead": true - }, - { - "created_at": "2026-03-25T17:29:26.059792Z", - "id": "6308f39d-f0b4-5a6e-aa8a-98de27a4afe2", - "notification_type": "on-chain", - "payload": { - "address": "0xf25bd11c334507fd007d584e2d0b7b2c6543f714", - "block_number": 88691117, - "block_timestamp": "1774459765", - "chain_id": 56, - "data": { - "kind": "metamask_swap_completed", - "rate": "0.0015595891530019940334", - "token_in": { - "usd": "646.85", - "name": "Binance Coin", - "image": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x0000000000000000000000000000000000000000.png", - "amount": "2962069992279377", - "symbol": "BNB", - "address": "0x0000000000000000000000000000000000000000", - "decimals": "18" - }, - "token_out": { - "usd": "0.999819", - "name": "Tether USD", - "image": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x55d398326f99059ff775485246999027b3197955.png", - "amount": "1899263012042498994", - "symbol": "USDT", - "address": "0x55d398326f99059ff775485246999027b3197955", - "decimals": "18" - }, - "network_fee": { - "gas_price": "60000000", - "native_token_price_in_usd": "646.85" - } - }, - "network": { - "block_explorer": { - "name": "BscScan", - "url": "https://bscscan.com" - }, - "name": "BNB Smart Chain", - "native_symbol": "BNB" - }, - "tx_hash": "0x0b261d2f943301061504dfecc3d59c026344c4fe1f8f980a99cfc0f0d13648b3" - }, - "unread": true, - "type": "metamask_swap_completed", - "createdAt": "2026-03-25T17:29:26.059Z", - "isRead": true - }, - { - "created_at": "2026-03-25T17:18:28.259605Z", - "id": "f41310d9-71a1-5304-af17-8f37217619be", - "notification_type": "on-chain", - "payload": { - "address": "0xf25bd11c334507fd007d584e2d0b7b2c6543f714", - "block_number": 88689656, - "block_timestamp": "1774459107", - "chain_id": 56, - "data": { - "to": "0x1a1ec25dc08e98e5e93f1104b5e5cdd298707d31", - "from": "0xf25bd11c334507fd007d584e2d0b7b2c6543f714", - "kind": "eth_sent", - "amount": { - "eth": "0.003085055568328475", - "usd": "2.00" - }, - "network_fee": { - "gas_price": "60000000", - "native_token_price_in_usd": "646.85" - } - }, - "network": { - "block_explorer": { - "name": "BscScan", - "url": "https://bscscan.com" - }, - "name": "BNB Smart Chain", - "native_symbol": "BNB" - }, - "tx_hash": "0x4f4e6bbc9ef22800f4fe801687315a1a3b26962f22aeb3cd8ae8f52015bee654" - }, - "unread": true, - "type": "eth_sent", - "createdAt": "2026-03-25T17:18:28.259Z", - "isRead": true - }, - { - "created_at": "2026-03-25T17:18:28.236424Z", - "id": "2a69f6ba-cb8f-5fb1-bae8-b87427d9b129", - "notification_type": "on-chain", - "payload": { - "address": "0xf25bd11c334507fd007d584e2d0b7b2c6543f714", - "block_number": 88689656, - "block_timestamp": "1774459107", - "chain_id": 56, - "data": { - "kind": "metamask_swap_completed", - "rate": "0.0015622577438715769504", - "token_in": { - "usd": "646.85", - "name": "Binance Coin", - "image": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x0000000000000000000000000000000000000000.png", - "amount": "3085055568328475", - "symbol": "BNB", - "address": "0x0000000000000000000000000000000000000000", - "decimals": "18" - }, - "token_out": { - "usd": "0.999819", - "name": "Tether USD", - "image": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x55d398326f99059ff775485246999027b3197955.png", - "amount": "1974741735434199490", - "symbol": "USDT", - "address": "0x55d398326f99059ff775485246999027b3197955", - "decimals": "18" - }, - "network_fee": { - "gas_price": "60000000", - "native_token_price_in_usd": "646.85" - } - }, - "network": { - "block_explorer": { - "name": "BscScan", - "url": "https://bscscan.com" - }, - "name": "BNB Smart Chain", - "native_symbol": "BNB" - }, - "tx_hash": "0x4f4e6bbc9ef22800f4fe801687315a1a3b26962f22aeb3cd8ae8f52015bee654" - }, - "unread": true, - "type": "metamask_swap_completed", - "createdAt": "2026-03-25T17:18:28.236Z", - "isRead": true - }, - { - "created_at": "2026-03-24T23:15:41.151088Z", - "id": "8897283c-7a38-536d-b1f6-09cb77b68c53", - "notification_type": "on-chain", - "payload": { - "address": "0xf25bd11c334507fd007d584e2d0b7b2c6543f714", - "block_number": 88545320, - "block_timestamp": "1774394140", - "chain_id": 56, - "data": { - "to": "0x1a1ec25dc08e98e5e93f1104b5e5cdd298707d31", - "from": "0xf25bd11c334507fd007d584e2d0b7b2c6543f714", - "kind": "eth_sent", - "amount": { - "eth": "0.003226095629701272", - "usd": "2.05" - }, - "network_fee": { - "gas_price": "60000000", - "native_token_price_in_usd": "635.96" - } - }, - "network": { - "block_explorer": { - "name": "BscScan", - "url": "https://bscscan.com" - }, - "name": "BNB Smart Chain", - "native_symbol": "BNB" - }, - "tx_hash": "0xee4b91aef18e81ceb7946a4d531551324a47eb6c2fda2e193cc6a27837e54c3b" - }, - "unread": true, - "type": "eth_sent", - "createdAt": "2026-03-24T23:15:41.151Z", - "isRead": true - }, - { - "created_at": "2026-03-24T23:15:41.133906Z", - "id": "f3bc78d2-a9a7-5294-9982-a5809eb43d38", - "notification_type": "on-chain", - "payload": { - "address": "0xf25bd11c334507fd007d584e2d0b7b2c6543f714", - "block_number": 88545320, - "block_timestamp": "1774394140", - "chain_id": 56, - "data": { - "kind": "metamask_swap_completed", - "rate": "0.0015819149242905570078", - "token_in": { - "usd": "635.96", - "name": "Binance Coin", - "image": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x0000000000000000000000000000000000000000.png", - "amount": "3226095629701272", - "symbol": "BNB", - "address": "0x0000000000000000000000000000000000000000", - "decimals": "18" - }, - "token_out": { - "usd": "0.999454", - "name": "Tether USD", - "image": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x55d398326f99059ff775485246999027b3197955.png", - "amount": "2039361017564255159", - "symbol": "USDT", - "address": "0x55d398326f99059ff775485246999027b3197955", - "decimals": "18" - }, - "network_fee": { - "gas_price": "60000000", - "native_token_price_in_usd": "635.96" - } - }, - "network": { - "block_explorer": { - "name": "BscScan", - "url": "https://bscscan.com" - }, - "name": "BNB Smart Chain", - "native_symbol": "BNB" - }, - "tx_hash": "0xee4b91aef18e81ceb7946a4d531551324a47eb6c2fda2e193cc6a27837e54c3b" - }, - "unread": true, - "type": "metamask_swap_completed", - "createdAt": "2026-03-24T23:15:41.133Z", - "isRead": true - }, - { - "created_at": "2026-03-19T22:53:31.406623Z", - "id": "f0ae1145-be3c-564b-a682-495cedbf3691", - "notification_type": "on-chain", - "payload": { - "address": "0xf25bd11c334507fd007d584e2d0b7b2c6543f714", - "block_number": 87582792, - "block_timestamp": "1773960811", - "chain_id": 56, - "data": { - "to": "0xf25bd11c334507fd007d584e2d0b7b2c6543f714", - "from": "0xacc0c1f672b03b9a5fed4535f840f09b85f40e98", - "kind": "erc20_received", - "token": { - "usd": "1", - "name": "Tether USD", - "image": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x55d398326f99059ff775485246999027b3197955.png", - "amount": "2098214822452410000", - "symbol": "USDT", - "address": "0x55d398326f99059ff775485246999027b3197955", - "decimals": "18" - }, - "network_fee": { - "gas_price": "50000000", - "native_token_price_in_usd": "639.57" - } - }, - "network": { - "block_explorer": { - "name": "BscScan", - "url": "https://bscscan.com" - }, - "name": "BNB Smart Chain", - "native_symbol": "BNB" - }, - "tx_hash": "0x21a3536558d18d130723d1dd083f28baafa930e7d8e1bba73683c8b03a636920" - }, - "unread": true, - "type": "erc20_received", - "createdAt": "2026-03-19T22:53:31.406Z", - "isRead": true - }, - { - "created_at": "2026-03-19T22:53:27.318899Z", - "id": "19698d81-da96-5b2b-956c-749049220c05", - "notification_type": "on-chain", - "payload": { - "address": "0xf25bd11c334507fd007d584e2d0b7b2c6543f714", - "block_number": 149181015, - "block_timestamp": "1773960807", - "chain_id": 10, - "data": { - "to": "0x1d3960155fc7aeec56fed24b109a21fcdf78a21e", - "from": "0xf25bd11c334507fd007d584e2d0b7b2c6543f714", - "kind": "erc20_sent", - "token": { - "usd": "0.999968", - "name": "USD Coin", - "image": "https://static.cx.metamask.io/api/v1/tokenIcons/10/0x0b2c639c533813f4aa9d7837caf62653d097ff85.png", - "amount": "2120063", - "symbol": "USDC", - "address": "0x0b2c639c533813f4aa9d7837caf62653d097ff85", - "decimals": "6" - }, - "network_fee": { - "gas_price": "100878", - "native_token_price_in_usd": "2136.53" - } - }, - "network": { - "block_explorer": { - "name": "Optimistic Etherscan", - "url": "https://optimistic.etherscan.io" - }, - "name": "Optimism", - "native_symbol": "ETH" - }, - "tx_hash": "0x909efb7bda1c2d53210f5b38754b96a2dbce031df57ce62fd0e68774d2ba2c08" - }, - "unread": true, - "type": "erc20_sent", - "createdAt": "2026-03-19T22:53:27.318Z", - "isRead": true - }, - { - "created_at": "2026-03-19T22:52:57.315718Z", - "id": "203b2c41-24bd-5ecc-a4b4-650a5f19ed65", - "notification_type": "on-chain", - "payload": { - "address": "0xf25bd11c334507fd007d584e2d0b7b2c6543f714", - "block_number": 149181000, - "block_timestamp": "1773960777", - "chain_id": 10, - "data": { - "to": "0x9dda6ef3d919c9bc8885d5560999a3640431e8e6", - "from": "0xf25bd11c334507fd007d584e2d0b7b2c6543f714", - "kind": "eth_sent", - "amount": { - "eth": "0.001000000000000000", - "usd": "2.14" - }, - "network_fee": { - "gas_price": "100879", - "native_token_price_in_usd": "2136.53" - } - }, - "network": { - "block_explorer": { - "name": "Optimistic Etherscan", - "url": "https://optimistic.etherscan.io" - }, - "name": "Optimism", - "native_symbol": "ETH" - }, - "tx_hash": "0x1de5763787c50e0ba564406418aaf567343fe52459c8392f4fb83294d170a9bd" - }, - "unread": true, - "type": "eth_sent", - "createdAt": "2026-03-19T22:52:57.315Z", - "isRead": true - }, - { - "created_at": "2026-03-19T22:52:57.305253Z", - "id": "d21d110f-9669-5274-9f14-e307f63bd016", - "notification_type": "on-chain", - "payload": { - "address": "0xf25bd11c334507fd007d584e2d0b7b2c6543f714", - "block_number": 149181000, - "block_timestamp": "1773960777", - "chain_id": 10, - "data": { - "kind": "metamask_swap_completed", - "rate": "0.00047168409618016068387", - "token_in": { - "usd": "2136.53", - "name": "Optimism", - "image": "https://static.cx.metamask.io/api/v1/tokenIcons/10/0x0000000000000000000000000000000000000000.png", - "amount": "1000000000000000", - "symbol": "OP", - "address": "0x0000000000000000000000000000000000000000", - "decimals": "18" - }, - "token_out": { - "usd": "0.999968", - "name": "USD Coin", - "image": "https://static.cx.metamask.io/api/v1/tokenIcons/10/0x0b2c639c533813f4aa9d7837caf62653d097ff85.png", - "amount": "2120063", - "symbol": "USDC", - "address": "0x0b2c639c533813f4aa9d7837caf62653d097ff85", - "decimals": "6" - }, - "network_fee": { - "gas_price": "100879", - "native_token_price_in_usd": "2136.53" - } - }, - "network": { - "block_explorer": { - "name": "Optimistic Etherscan", - "url": "https://optimistic.etherscan.io" - }, - "name": "Optimism", - "native_symbol": "ETH" - }, - "tx_hash": "0x1de5763787c50e0ba564406418aaf567343fe52459c8392f4fb83294d170a9bd" - }, - "unread": true, - "type": "metamask_swap_completed", - "createdAt": "2026-03-19T22:52:57.305Z", - "isRead": true - }, - { - "created_at": "2026-03-19T22:50:39.377421Z", - "id": "426f0194-a270-5c30-9506-bb0549c9c8d8", - "notification_type": "on-chain", - "payload": { - "address": "0xf25bd11c334507fd007d584e2d0b7b2c6543f714", - "block_number": 149180931, - "block_timestamp": "1773960639", - "chain_id": 10, - "data": { - "to": "0xf25bd11c334507fd007d584e2d0b7b2c6543f714", - "from": "0xacc0c1f672b03b9a5fed4535f840f09b85f40e98", - "kind": "eth_received", - "amount": { - "eth": "0.000921244312951873", - "usd": "1.97" - }, - "network_fee": { - "gas_price": "100865", - "native_token_price_in_usd": "2136.53" - } - }, - "network": { - "block_explorer": { - "name": "Optimistic Etherscan", - "url": "https://optimistic.etherscan.io" - }, - "name": "Optimism", - "native_symbol": "ETH" - }, - "tx_hash": "0x6031af671b4986aa4446bc86c81384cf465c6a6f4714b15e7654d42eb2468aac" - }, - "unread": true, - "type": "eth_received", - "createdAt": "2026-03-19T22:50:39.377Z", - "isRead": true - }, - { - "created_at": "2026-03-19T22:50:33.349945Z", - "id": "f5319390-6402-5f7e-8ae2-8563aa2fb2fc", - "notification_type": "on-chain", - "payload": { - "address": "0xf25bd11c334507fd007d584e2d0b7b2c6543f714", - "block_number": 43585643, - "block_timestamp": "1773960633", - "chain_id": 8453, - "data": { - "to": "0xa5c1ce365ddb5a91ff466774ec4bdf8f97cb9f55", - "from": "0xf25bd11c334507fd007d584e2d0b7b2c6543f714", - "kind": "erc20_sent", - "token": { - "usd": "0.999968", - "name": "USD Coin", - "image": "https://static.cx.metamask.io/api/v1/tokenIcons/8453/0x833589fcd6edb6e08f4c7c32d4f71b54bda02913.png", - "amount": "2000000", - "symbol": "USDC", - "address": "0x833589fcd6edb6e08f4c7c32d4f71b54bda02913", - "decimals": "6" - }, - "network_fee": { - "gas_price": "6000001", - "native_token_price_in_usd": "2138.25" - } - }, - "network": { - "block_explorer": { - "name": "BaseScan", - "url": "https://basescan.org" - }, - "name": "Base", - "native_symbol": "ETH" - }, - "tx_hash": "0xaf7df1971789b4bed9f1824fa4346a2943938679c2908c1af9e3902a74b75cb2" - }, - "unread": true, - "type": "erc20_sent", - "createdAt": "2026-03-19T22:50:33.349Z", - "isRead": true - }, - { - "created_at": "2026-03-19T22:48:39.152068Z", - "id": "502ad172-e553-5f3d-94a7-f93ee23cbb3d", - "notification_type": "on-chain", - "payload": { - "address": "0x30e8ccad5a980bdf30447f8c2c48e70989d9d294", - "block_number": 29806282, - "block_timestamp": "1773960519", - "chain_id": 59144, - "data": { - "kind": "metamask_swap_completed", - "rate": "2157.675612993209397", - "token_in": { - "usd": "0.999911", - "name": "MetaMask USD", - "image": "https://static.cx.metamask.io/api/v1/tokenIcons/59144/0xaca92e438df0b2401ff60da7e4337b687a2435da.png", - "amount": "2312697", - "symbol": "MUSD", - "address": "0xaca92e438df0b2401ff60da7e4337b687a2435da", - "decimals": "6" - }, - "token_out": { - "usd": "2136.94", - "name": "Ether", - "image": "https://static.cx.metamask.io/api/v1/tokenIcons/59144/0x0000000000000000000000000000000000000000.png", - "amount": "1071846475009160", - "symbol": "ETH", - "address": "0x0000000000000000000000000000000000000000", - "decimals": "18" - }, - "network_fee": { - "gas_price": "39386762", - "native_token_price_in_usd": "2136.94" - } - }, - "network": { - "block_explorer": { - "name": "LineaScan", - "url": "https://lineascan.build" - }, - "name": "Linea", - "native_symbol": "ETH" - }, - "tx_hash": "0x7599337af56b3fc8078b3b51e6b3d2956bf0a3c3c51f17873ea8a851e1a0e410" - }, - "unread": true, - "type": "metamask_swap_completed", - "createdAt": "2026-03-19T22:48:39.152Z", - "isRead": true - }, - { - "created_at": "2026-03-19T17:22:32.106178Z", - "id": "eaab5f66-f53c-5cbc-9023-cfd418c3f502", - "notification_type": "on-chain", - "payload": { - "address": "0x30e8ccad5a980bdf30447f8c2c48e70989d9d294", - "block_number": 84410459, - "block_timestamp": "1773940951", - "chain_id": 137, - "data": { - "to": "0xfb7c744da69aef11dfb54f31d9db12a3b086b025", - "from": "0x30e8ccad5a980bdf30447f8c2c48e70989d9d294", - "kind": "erc20_sent", - "token": { - "usd": "0.999908", - "name": "Tether USD", - "image": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0xc2132d05d31c914a87c6611c10748aeb04b58e8f.png", - "amount": "12425413", - "symbol": "USDT", - "address": "0xc2132d05d31c914a87c6611c10748aeb04b58e8f", - "decimals": "6" - }, - "network_fee": { - "gas_price": "163614606846", - "native_token_price_in_usd": "0.094428" - } - }, - "network": { - "block_explorer": { - "name": "PolygonScan", - "url": "https://polygonscan.com" - }, - "name": "Polygon", - "native_symbol": "POL" - }, - "tx_hash": "0x41ee34e2510ab1a748457924214dd345a4b5daf50fbff0cd89520763859e0758" - }, - "unread": true, - "type": "erc20_sent", - "createdAt": "2026-03-19T17:22:32.106Z", - "isRead": true - }, - { - "created_at": "2026-03-18T05:06:13.7323Z", - "id": "15da431d-75d0-5d30-ae62-d5254c6c242d", - "notification_type": "on-chain", - "payload": { - "address": "0x30e8ccad5a980bdf30447f8c2c48e70989d9d294", - "block_number": 24682166, - "block_timestamp": "1773810371", - "chain_id": 1, - "data": { - "to": "0x881d40237659c251811cec9c364ef91dc08d300c", - "from": "0x30e8ccad5a980bdf30447f8c2c48e70989d9d294", - "kind": "eth_sent", - "amount": { - "eth": "0.000906988746274251", - "usd": "2.11" - }, - "network_fee": { - "gas_price": "2137565772", - "native_token_price_in_usd": "2327.9" - } - }, - "network": { - "block_explorer": { - "name": "Etherscan", - "url": "https://etherscan.io" - }, - "name": "Ethereum", - "native_symbol": "ETH" - }, - "tx_hash": "0xbd7520e80d8f6ad8f74d8446e0da4cd10eb7a969fe20549e93f930f28098d515" - }, - "unread": true, - "type": "eth_sent", - "createdAt": "2026-03-18T05:06:13.732Z", - "isRead": true - }, - { - "created_at": "2026-03-18T05:06:13.191421Z", - "id": "dc61c934-d019-5f77-a55e-8ff86cad835b", - "notification_type": "on-chain", - "payload": { - "address": "0x30e8ccad5a980bdf30447f8c2c48e70989d9d294", - "block_number": 24682166, - "block_timestamp": "1773810371", - "chain_id": 1, - "data": { - "kind": "metamask_swap_completed", - "rate": "0.0044414511839491259", - "token_in": { - "usd": "2327.9", - "name": "Ethereum", - "image": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x0000000000000000000000000000000000000000.png", - "amount": "906988746274251", - "symbol": "ETH", - "address": "0x0000000000000000000000000000000000000000", - "decimals": "18" - }, - "token_out": { - "usd": "0.999925", - "name": "MetaMask USD", - "image": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0xaca92e438df0b2401ff60da7e4337b687a2435da.png", - "amount": "204210", - "symbol": "MUSD", - "address": "0xaca92e438df0b2401ff60da7e4337b687a2435da", - "decimals": "6" - }, - "network_fee": { - "gas_price": "2137565772", - "native_token_price_in_usd": "2327.9" - } - }, - "network": { - "block_explorer": { - "name": "Etherscan", - "url": "https://etherscan.io" - }, - "name": "Ethereum", - "native_symbol": "ETH" - }, - "tx_hash": "0xbd7520e80d8f6ad8f74d8446e0da4cd10eb7a969fe20549e93f930f28098d515" - }, - "unread": true, - "type": "metamask_swap_completed", - "createdAt": "2026-03-18T05:06:13.191Z", - "isRead": true - }, - { - "created_at": "2026-03-12T16:43:43.8985Z", - "id": "33ddab81-1112-570e-9e92-612e9d3ab524", - "notification_type": "on-chain", - "payload": { - "address": "0x30e8ccad5a980bdf30447f8c2c48e70989d9d294", - "block_number": 84106895, - "block_timestamp": "1773333823", - "chain_id": 137, - "data": { - "kind": "metamask_swap_completed", - "rate": "18.003997649273214285", - "token_in": { - "usd": "0.097982", - "name": "Polygon Ecosystem Token", - "image": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x0000000000000000000000000000000000000000.png", - "amount": "1260279835449125", - "symbol": "POL", - "address": "0x0000000000000000000000000000000000000000", - "decimals": "18" - }, - "token_out": { - "usd": "1", - "name": "Tether USD", - "image": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0xc2132d05d31c914a87c6611c10748aeb04b58e8f.png", - "amount": "70", - "symbol": "USDT", - "address": "0xc2132d05d31c914a87c6611c10748aeb04b58e8f", - "decimals": "6" - }, - "network_fee": { - "gas_price": "126778290703", - "native_token_price_in_usd": "0.097982" - } - }, - "network": { - "block_explorer": { - "name": "PolygonScan", - "url": "https://polygonscan.com" - }, - "name": "Polygon", - "native_symbol": "POL" - }, - "tx_hash": "0x82db1514ef756ef9e5de877414df89228bfd7fe910e5d70848bdebff11bea3ed" - }, - "unread": true, - "type": "metamask_swap_completed", - "createdAt": "2026-03-12T16:43:43.898Z", - "isRead": true - }, - { - "created_at": "2026-03-12T16:42:15.707696Z", - "id": "d505bb50-d038-559f-bb30-db391eacd910", - "notification_type": "on-chain", - "payload": { - "address": "0x30e8ccad5a980bdf30447f8c2c48e70989d9d294", - "block_number": 84106851, - "block_timestamp": "1773333735", - "chain_id": 137, - "data": { - "to": "0x1a1ec25dc08e98e5e93f1104b5e5cdd298707d31", - "from": "0x30e8ccad5a980bdf30447f8c2c48e70989d9d294", - "kind": "eth_sent", - "amount": { - "eth": "127.520147906999322263", - "usd": "12.49" - }, - "network_fee": { - "gas_price": "174856198387", - "native_token_price_in_usd": "0.097982" - } - }, - "network": { - "block_explorer": { - "name": "PolygonScan", - "url": "https://polygonscan.com" - }, - "name": "Polygon", - "native_symbol": "POL" - }, - "tx_hash": "0x2155058d28ec8b01956f1471a4fda6b4f3b61fde2e36fe73754681a5fb05f66f" - }, - "unread": true, - "type": "eth_sent", - "createdAt": "2026-03-12T16:42:15.707Z", - "isRead": true - }, - { - "created_at": "2026-03-12T16:42:15.659361Z", - "id": "7bcc6c4c-c8d2-5e58-b907-2b6e1ecd6ca2", - "notification_type": "on-chain", - "payload": { - "address": "0x30e8ccad5a980bdf30447f8c2c48e70989d9d294", - "block_number": 84106851, - "block_timestamp": "1773333735", - "chain_id": 137, - "data": { - "kind": "metamask_swap_completed", - "rate": "10.2629076643597945156", - "token_in": { - "usd": "0.097982", - "name": "Polygon Ecosystem Token", - "image": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x0000000000000000000000000000000000000000.png", - "amount": "127520147906999322263", - "symbol": "POL", - "address": "0x0000000000000000000000000000000000000000", - "decimals": "18" - }, - "token_out": { - "usd": "1", - "name": "Tether USD", - "image": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0xc2132d05d31c914a87c6611c10748aeb04b58e8f.png", - "amount": "12425343", - "symbol": "USDT", - "address": "0xc2132d05d31c914a87c6611c10748aeb04b58e8f", - "decimals": "6" - }, - "network_fee": { - "gas_price": "174856198387", - "native_token_price_in_usd": "0.097982" - } - }, - "network": { - "block_explorer": { - "name": "PolygonScan", - "url": "https://polygonscan.com" - }, - "name": "Polygon", - "native_symbol": "POL" - }, - "tx_hash": "0x2155058d28ec8b01956f1471a4fda6b4f3b61fde2e36fe73754681a5fb05f66f" - }, - "unread": true, - "type": "metamask_swap_completed", - "createdAt": "2026-03-12T16:42:15.659Z", - "isRead": true - }, - { - "created_at": "2026-03-12T16:39:16.806426Z", - "id": "55d96864-8973-54b7-9d9d-063f1359c1dc", - "notification_type": "on-chain", - "payload": { - "address": "0x30e8ccad5a980bdf30447f8c2c48e70989d9d294", - "block_number": 84106761, - "block_timestamp": "1773333555", - "chain_id": 137, - "data": { - "to": "0x1a1ec25dc08e98e5e93f1104b5e5cdd298707d31", - "from": "0x30e8ccad5a980bdf30447f8c2c48e70989d9d294", - "kind": "eth_sent", - "amount": { - "eth": "129.909352491371104051", - "usd": "12.73" - }, - "network_fee": { - "gas_price": "185477519508", - "native_token_price_in_usd": "0.097982" - } - }, - "network": { - "block_explorer": { - "name": "PolygonScan", - "url": "https://polygonscan.com" - }, - "name": "Polygon", - "native_symbol": "POL" - }, - "tx_hash": "0x957c2b74ec2970af7f1fa24ca2623108f93febc178378813bc4c9acc6574baee" - }, - "unread": true, - "type": "eth_sent", - "createdAt": "2026-03-12T16:39:16.806Z", - "isRead": true - }, - { - "created_at": "2026-03-12T16:39:16.730446Z", - "id": "71ebd270-2611-580b-a3d6-088e40a635a3", - "notification_type": "on-chain", - "payload": { - "address": "0x30e8ccad5a980bdf30447f8c2c48e70989d9d294", - "block_number": 84106761, - "block_timestamp": "1773333555", - "chain_id": 137, - "data": { - "kind": "metamask_swap_completed", - "rate": "10.2670118018961152826", - "token_in": { - "usd": "0.097982", - "name": "Polygon Ecosystem Token", - "image": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x0000000000000000000000000000000000000000.png", - "amount": "129909352491371104051", - "symbol": "POL", - "address": "0x0000000000000000000000000000000000000000", - "decimals": "18" - }, - "token_out": { - "usd": "1", - "name": "Tether USD", - "image": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0xc2132d05d31c914a87c6611c10748aeb04b58e8f.png", - "amount": "12653083", - "symbol": "USDT", - "address": "0xc2132d05d31c914a87c6611c10748aeb04b58e8f", - "decimals": "6" - }, - "network_fee": { - "gas_price": "185477519508", - "native_token_price_in_usd": "0.097982" - } - }, - "network": { - "block_explorer": { - "name": "PolygonScan", - "url": "https://polygonscan.com" - }, - "name": "Polygon", - "native_symbol": "POL" - }, - "tx_hash": "0x957c2b74ec2970af7f1fa24ca2623108f93febc178378813bc4c9acc6574baee" - }, - "unread": true, - "type": "metamask_swap_completed", - "createdAt": "2026-03-12T16:39:16.730Z", - "isRead": true - }, - { - "created_at": "2026-03-12T00:27:33.545863Z", - "id": "67b59675-d9f7-53de-a5bd-29dfc5e943bf", - "notification_type": "on-chain", - "payload": { - "address": "0x30e8ccad5a980bdf30447f8c2c48e70989d9d294", - "block_number": 29648187, - "block_timestamp": "1773275252", - "chain_id": 59144, - "data": { - "kind": "metamask_swap_completed", - "rate": "1.025473721806185592", - "token_in": { - "usd": "1", - "name": "USDC", - "image": "https://static.cx.metamask.io/api/v1/tokenIcons/59144/0x176211869ca2b568f2a7d4ee941e073a821ee1ff.png", - "amount": "2371610", - "symbol": "USDC", - "address": "0x176211869ca2b568f2a7d4ee941e073a821ee1ff", - "decimals": "6" - }, - "token_out": { - "usd": "1", - "name": "MetaMask USD", - "image": "https://static.cx.metamask.io/api/v1/tokenIcons/59144/0xaca92e438df0b2401ff60da7e4337b687a2435da.png", - "amount": "2312697", - "symbol": "MUSD", - "address": "0xaca92e438df0b2401ff60da7e4337b687a2435da", - "decimals": "6" - }, - "network_fee": { - "gas_price": "50000008", - "native_token_price_in_usd": "2053.63" - } - }, - "network": { - "block_explorer": { - "name": "LineaScan", - "url": "https://lineascan.build" - }, - "name": "Linea", - "native_symbol": "ETH" - }, - "tx_hash": "0x5d319d811f7b4dd6fcd757d6215841e791c1432c986d5af5e89cfef69008e97e" - }, - "unread": true, - "type": "metamask_swap_completed", - "createdAt": "2026-03-12T00:27:33.545Z", - "isRead": true - }, - { - "created_at": "2026-03-12T00:26:28.29725Z", - "id": "5681599a-55ff-5630-a88b-3a03118e242b", - "notification_type": "on-chain", - "payload": { - "address": "0x30e8ccad5a980bdf30447f8c2c48e70989d9d294", - "block_number": 84077577, - "block_timestamp": "1773275187", - "chain_id": 137, - "data": { - "to": "0x1a1ec25dc08e98e5e93f1104b5e5cdd298707d31", - "from": "0x30e8ccad5a980bdf30447f8c2c48e70989d9d294", - "kind": "eth_sent", - "amount": { - "eth": "132.757424264753032225", - "usd": "12.98" - }, - "network_fee": { - "gas_price": "213367080503", - "native_token_price_in_usd": "0.09776" - } - }, - "network": { - "block_explorer": { - "name": "PolygonScan", - "url": "https://polygonscan.com" - }, - "name": "Polygon", - "native_symbol": "POL" - }, - "tx_hash": "0xf1bdb406de6a29b3b42ddde8d266a877e4812a485fc6eff294efe6ab8fb4cc6f" - }, - "unread": true, - "type": "eth_sent", - "createdAt": "2026-03-12T00:26:28.297Z", - "isRead": true - }, - { - "created_at": "2026-03-12T00:26:28.297224Z", - "id": "c98acf20-3b52-5882-ae2c-d69ab86c8951", - "notification_type": "on-chain", - "payload": { - "address": "0x30e8ccad5a980bdf30447f8c2c48e70989d9d294", - "block_number": 84077577, - "block_timestamp": "1773275187", - "chain_id": 137, - "data": { - "kind": "metamask_swap_completed", - "rate": "10.2889123321124015132", - "token_in": { - "usd": "0.09776", - "name": "Polygon Ecosystem Token", - "image": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x0000000000000000000000000000000000000000.png", - "amount": "132757424264753032225", - "symbol": "POL", - "address": "0x0000000000000000000000000000000000000000", - "decimals": "18" - }, - "token_out": { - "usd": "0.99956", - "name": "Tether USD", - "image": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0xc2132d05d31c914a87c6611c10748aeb04b58e8f.png", - "amount": "12902960", - "symbol": "USDT", - "address": "0xc2132d05d31c914a87c6611c10748aeb04b58e8f", - "decimals": "6" - }, - "network_fee": { - "gas_price": "213367080503", - "native_token_price_in_usd": "0.09776" - } - }, - "network": { - "block_explorer": { - "name": "PolygonScan", - "url": "https://polygonscan.com" - }, - "name": "Polygon", - "native_symbol": "POL" - }, - "tx_hash": "0xf1bdb406de6a29b3b42ddde8d266a877e4812a485fc6eff294efe6ab8fb4cc6f" - }, - "unread": true, - "type": "metamask_swap_completed", - "createdAt": "2026-03-12T00:26:28.297Z", - "isRead": true - }, - { - "created_at": "2026-03-12T00:20:01.552827Z", - "id": "9787353e-5758-5395-abff-bc16676fffc2", - "notification_type": "on-chain", - "payload": { - "address": "0x30e8ccad5a980bdf30447f8c2c48e70989d9d294", - "block_number": 29648097, - "block_timestamp": "1773274801", - "chain_id": 59144, - "data": { - "kind": "metamask_swap_completed", - "rate": "0.00049094928144525659783", - "token_in": { - "usd": "2052.4", - "name": "Ether", - "image": "https://static.cx.metamask.io/api/v1/tokenIcons/59144/0x0000000000000000000000000000000000000000.png", - "amount": "1164340225368385", - "symbol": "ETH", - "address": "0x0000000000000000000000000000000000000000", - "decimals": "18" - }, - "token_out": { - "usd": "1", - "name": "USDC", - "image": "https://static.cx.metamask.io/api/v1/tokenIcons/59144/0x176211869ca2b568f2a7d4ee941e073a821ee1ff.png", - "amount": "2371610", - "symbol": "USDC", - "address": "0x176211869ca2b568f2a7d4ee941e073a821ee1ff", - "decimals": "6" - }, - "network_fee": { - "gas_price": "50000008", - "native_token_price_in_usd": "2052.4" - } - }, - "network": { - "block_explorer": { - "name": "LineaScan", - "url": "https://lineascan.build" - }, - "name": "Linea", - "native_symbol": "ETH" - }, - "tx_hash": "0xf628cb1a36a1ab3c5b27b03d660283277960c30b4e4d102297e771aca54155bd" - }, - "unread": true, - "type": "metamask_swap_completed", - "createdAt": "2026-03-12T00:20:01.552Z", - "isRead": true - }, - { - "created_at": "2026-03-12T00:20:01.552794Z", - "id": "f6648e46-444e-5244-8518-8336d26aa616", - "notification_type": "on-chain", - "payload": { - "address": "0x30e8ccad5a980bdf30447f8c2c48e70989d9d294", - "block_number": 29648097, - "block_timestamp": "1773274801", - "chain_id": 59144, - "data": { - "to": "0x9dda6ef3d919c9bc8885d5560999a3640431e8e6", - "from": "0x30e8ccad5a980bdf30447f8c2c48e70989d9d294", - "kind": "eth_sent", - "amount": { - "eth": "0.001164340225368385", - "usd": "2.39" - }, - "network_fee": { - "gas_price": "50000008", - "native_token_price_in_usd": "2052.4" - } - }, - "network": { - "block_explorer": { - "name": "LineaScan", - "url": "https://lineascan.build" - }, - "name": "Linea", - "native_symbol": "ETH" - }, - "tx_hash": "0xf628cb1a36a1ab3c5b27b03d660283277960c30b4e4d102297e771aca54155bd" - }, - "unread": true, - "type": "eth_sent", - "createdAt": "2026-03-12T00:20:01.552Z", - "isRead": true - }, - { - "created_at": "2026-03-12T00:15:43.993301Z", - "id": "0d4a333d-1cf9-5e38-969f-33ec6721eee6", - "notification_type": "on-chain", - "payload": { - "address": "0x30e8ccad5a980bdf30447f8c2c48e70989d9d294", - "block_number": 29648025, - "block_timestamp": "1773274543", - "chain_id": 59144, - "data": { - "to": "0x30e8ccad5a980bdf30447f8c2c48e70989d9d294", - "from": "0xacc0c1f672b03b9a5fed4535f840f09b85f40e98", - "kind": "eth_received", - "amount": { - "eth": "0.000684465871536834", - "usd": "1.40" - }, - "network_fee": { - "gas_price": "47167977", - "native_token_price_in_usd": "2052.4" - } - }, - "network": { - "block_explorer": { - "name": "LineaScan", - "url": "https://lineascan.build" - }, - "name": "Linea", - "native_symbol": "ETH" - }, - "tx_hash": "0x8d4782302c4041d88b852dab15f41e5c91702601cbebcf6f6d5d7c771b553e93" - }, - "unread": true, - "type": "eth_received", - "createdAt": "2026-03-12T00:15:43.993Z", - "isRead": true - }, - { - "created_at": "2026-03-12T00:15:39.255755Z", - "id": "69136390-e7c0-5bc8-bee8-5bdef749918e", - "notification_type": "on-chain", - "payload": { - "address": "0x30e8ccad5a980bdf30447f8c2c48e70989d9d294", - "block_number": 148837881, - "block_timestamp": "1773274539", - "chain_id": 10, - "data": { - "to": "0x1d3960155fc7aeec56fed24b109a21fcdf78a21e", - "from": "0x30e8ccad5a980bdf30447f8c2c48e70989d9d294", - "kind": "erc20_sent", - "token": { - "usd": "0.99998", - "name": "USD Coin", - "image": "https://static.cx.metamask.io/api/v1/tokenIcons/10/0x0b2c639c533813f4aa9d7837caf62653d097ff85.png", - "amount": "1424520", - "symbol": "USDC", - "address": "0x0b2c639c533813f4aa9d7837caf62653d097ff85", - "decimals": "6" - }, - "network_fee": { - "gas_price": "100416", - "native_token_price_in_usd": "2052.4" - } - }, - "network": { - "block_explorer": { - "name": "Optimistic Etherscan", - "url": "https://optimistic.etherscan.io" - }, - "name": "Optimism", - "native_symbol": "ETH" - }, - "tx_hash": "0x61289d45a7deaa73a05f4732b7f8f47594ab991a1935d52086b90a597453557d" - }, - "unread": true, - "type": "erc20_sent", - "createdAt": "2026-03-12T00:15:39.255Z", - "isRead": true - }, - { - "created_at": "2026-03-12T00:12:32.752004Z", - "id": "e5dd53da-7f80-59aa-a743-453a2552066e", - "notification_type": "on-chain", - "payload": { - "address": "0x30e8ccad5a980bdf30447f8c2c48e70989d9d294", - "block_number": 84077159, - "block_timestamp": "1773274351", - "chain_id": 137, - "data": { - "to": "0x1a1ec25dc08e98e5e93f1104b5e5cdd298707d31", - "from": "0x30e8ccad5a980bdf30447f8c2c48e70989d9d294", - "kind": "eth_sent", - "amount": { - "eth": "135.629926823363927219", - "usd": "13.27" - }, - "network_fee": { - "gas_price": "158294312454", - "native_token_price_in_usd": "0.097828" - } - }, - "network": { - "block_explorer": { - "name": "PolygonScan", - "url": "https://polygonscan.com" - }, - "name": "Polygon", - "native_symbol": "POL" - }, - "tx_hash": "0x654f28283ca0424ddfd325b12dcf43a0fb9a2d712073a3ab9d32bc51570c90cc" - }, - "unread": true, - "type": "eth_sent", - "createdAt": "2026-03-12T00:12:32.752Z", - "isRead": true - }, - { - "created_at": "2026-03-12T00:12:32.685147Z", - "id": "b28095f5-2eb0-5100-aada-93b05fa7927b", - "notification_type": "on-chain", - "payload": { - "address": "0x30e8ccad5a980bdf30447f8c2c48e70989d9d294", - "block_number": 84077159, - "block_timestamp": "1773274351", - "chain_id": 137, - "data": { - "kind": "metamask_swap_completed", - "rate": "10.3212744253067411072", - "token_in": { - "usd": "0.097828", - "name": "Polygon Ecosystem Token", - "image": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x0000000000000000000000000000000000000000.png", - "amount": "135629926823363927218", - "symbol": "POL", - "address": "0x0000000000000000000000000000000000000000", - "decimals": "18" - }, - "token_out": { - "usd": "0.999903", - "name": "Tether USD", - "image": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0xc2132d05d31c914a87c6611c10748aeb04b58e8f.png", - "amount": "13140812", - "symbol": "USDT", - "address": "0xc2132d05d31c914a87c6611c10748aeb04b58e8f", - "decimals": "6" - }, - "network_fee": { - "gas_price": "158294312454", - "native_token_price_in_usd": "0.097828" - } - }, - "network": { - "block_explorer": { - "name": "PolygonScan", - "url": "https://polygonscan.com" - }, - "name": "Polygon", - "native_symbol": "POL" - }, - "tx_hash": "0x654f28283ca0424ddfd325b12dcf43a0fb9a2d712073a3ab9d32bc51570c90cc" - }, - "unread": true, - "type": "metamask_swap_completed", - "createdAt": "2026-03-12T00:12:32.685Z", - "isRead": true - }, - { - "created_at": "2026-03-12T00:11:21.289144Z", - "id": "9c92fa47-2167-5a6b-b22b-aa72ccfcf79c", - "notification_type": "on-chain", - "payload": { - "address": "0x30e8ccad5a980bdf30447f8c2c48e70989d9d294", - "block_number": 148837752, - "block_timestamp": "1773274281", - "chain_id": 10, - "data": { - "to": "0x9dda6ef3d919c9bc8885d5560999a3640431e8e6", - "from": "0x30e8ccad5a980bdf30447f8c2c48e70989d9d294", - "kind": "eth_sent", - "amount": { - "eth": "0.000700000000000000", - "usd": "1.44" - }, - "network_fee": { - "gas_price": "100417", - "native_token_price_in_usd": "2052.4" - } - }, - "network": { - "block_explorer": { - "name": "Optimistic Etherscan", - "url": "https://optimistic.etherscan.io" - }, - "name": "Optimism", - "native_symbol": "ETH" - }, - "tx_hash": "0x66fb5bec3eb87cf864b6b44f342b44b18e349d2d39ed322cb43cdd926ed362e0" - }, - "unread": true, - "type": "eth_sent", - "createdAt": "2026-03-12T00:11:21.289Z", - "isRead": true - }, - { - "created_at": "2026-03-12T00:11:21.278428Z", - "id": "d3dd23f1-927d-513f-b32d-d40c01fcd871", - "notification_type": "on-chain", - "payload": { - "address": "0x30e8ccad5a980bdf30447f8c2c48e70989d9d294", - "block_number": 148837752, - "block_timestamp": "1773274281", - "chain_id": 10, - "data": { - "kind": "metamask_swap_completed", - "rate": "0.0004913935922275573526", - "token_in": { - "usd": "2052.4", - "name": "Optimism", - "image": "https://static.cx.metamask.io/api/v1/tokenIcons/10/0x0000000000000000000000000000000000000000.png", - "amount": "700000000000000", - "symbol": "OP", - "address": "0x0000000000000000000000000000000000000000", - "decimals": "18" - }, - "token_out": { - "usd": "0.999988", - "name": "USD Coin", - "image": "https://static.cx.metamask.io/api/v1/tokenIcons/10/0x0b2c639c533813f4aa9d7837caf62653d097ff85.png", - "amount": "1424520", - "symbol": "USDC", - "address": "0x0b2c639c533813f4aa9d7837caf62653d097ff85", - "decimals": "6" - }, - "network_fee": { - "gas_price": "100417", - "native_token_price_in_usd": "2052.4" - } - }, - "network": { - "block_explorer": { - "name": "Optimistic Etherscan", - "url": "https://optimistic.etherscan.io" - }, - "name": "Optimism", - "native_symbol": "ETH" - }, - "tx_hash": "0x66fb5bec3eb87cf864b6b44f342b44b18e349d2d39ed322cb43cdd926ed362e0" - }, - "unread": true, - "type": "metamask_swap_completed", - "createdAt": "2026-03-12T00:11:21.278Z", - "isRead": true - }, - { - "created_at": "2026-03-11T23:57:29.786516Z", - "id": "dd14ea55-b439-5648-a68a-5ae506a6411e", - "notification_type": "on-chain", - "payload": { - "address": "0x30e8ccad5a980bdf30447f8c2c48e70989d9d294", - "block_number": 84076708, - "block_timestamp": "1773273449", - "chain_id": 137, - "data": { - "to": "0x3a0b42ce6166abb05d30ddf12e726c95a83d7a16", - "from": "0x30e8ccad5a980bdf30447f8c2c48e70989d9d294", - "kind": "eth_sent", - "amount": { - "eth": "138.776239712069265167", - "usd": "13.62" - }, - "network_fee": { - "gas_price": "118478746172", - "native_token_price_in_usd": "0.098167" - } - }, - "network": { - "block_explorer": { - "name": "PolygonScan", - "url": "https://polygonscan.com" - }, - "name": "Polygon", - "native_symbol": "POL" - }, - "tx_hash": "0x5680e0d0fea59c82b73cc7b7340a584174f03cc5397a67427503cc87875a0d53" - }, - "unread": true, - "type": "eth_sent", - "createdAt": "2026-03-11T23:57:29.786Z", - "isRead": true - }, - { - "created_at": "2026-03-11T23:55:16.408079Z", - "id": "ce968fb5-32f7-58ab-9e98-2871b586c56f", - "notification_type": "on-chain", - "payload": { - "address": "0x30e8ccad5a980bdf30447f8c2c48e70989d9d294", - "block_number": 84076641, - "block_timestamp": "1773273315", - "chain_id": 137, - "data": { - "to": "0x3a0b42ce6166abb05d30ddf12e726c95a83d7a16", - "from": "0x30e8ccad5a980bdf30447f8c2c48e70989d9d294", - "kind": "eth_sent", - "amount": { - "eth": "143.545717723418569563", - "usd": "14.09" - }, - "network_fee": { - "gas_price": "178537615961", - "native_token_price_in_usd": "0.098167" - } - }, - "network": { - "block_explorer": { - "name": "PolygonScan", - "url": "https://polygonscan.com" - }, - "name": "Polygon", - "native_symbol": "POL" - }, - "tx_hash": "0xa980eeca97c105c5a2f4f2cad1aa36a58cfcd2e376d6c756340a398fc1cdc800" - }, - "unread": true, - "type": "eth_sent", - "createdAt": "2026-03-11T23:55:16.408Z", - "isRead": true - }, - { - "created_at": "2026-03-11T23:45:32.605368Z", - "id": "25e363e3-8988-537e-91e7-71efb0f27875", - "notification_type": "on-chain", - "payload": { - "address": "0x30e8ccad5a980bdf30447f8c2c48e70989d9d294", - "block_number": 84076349, - "block_timestamp": "1773272731", - "chain_id": 137, - "data": { - "to": "0x30e8ccad5a980bdf30447f8c2c48e70989d9d294", - "from": "0xacc0c1f672b03b9a5fed4535f840f09b85f40e98", - "kind": "erc20_received", - "token": { - "usd": "0.999887", - "name": "Tether USD", - "image": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0xc2132d05d31c914a87c6611c10748aeb04b58e8f.png", - "amount": "5191880", - "symbol": "USDT", - "address": "0xc2132d05d31c914a87c6611c10748aeb04b58e8f", - "decimals": "6" - }, - "network_fee": { - "gas_price": "187750473579", - "native_token_price_in_usd": "0.098192" - } - }, - "network": { - "block_explorer": { - "name": "PolygonScan", - "url": "https://polygonscan.com" - }, - "name": "Polygon", - "native_symbol": "POL" - }, - "tx_hash": "0xe8139d5df7d6395945fc56c2a294fcddbe560c589c14dccad632ce085ce7e094" - }, - "unread": true, - "type": "erc20_received", - "createdAt": "2026-03-11T23:45:32.605Z", - "isRead": true - }, - { - "created_at": "2026-03-11T23:45:24.729087Z", - "id": "a7cf61f8-6f81-52fe-a7bf-e557173f0eca", - "notification_type": "on-chain", - "payload": { - "address": "0x30e8ccad5a980bdf30447f8c2c48e70989d9d294", - "block_number": 86058896, - "block_timestamp": "1773272724", - "chain_id": 56, - "data": { - "to": "0xdc9a3a73bb728cd540a0e16accfa20c88e69c28b", - "from": "0x30e8ccad5a980bdf30447f8c2c48e70989d9d294", - "kind": "erc20_sent", - "token": { - "usd": "1", - "name": "Tether USD", - "image": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x55d398326f99059ff775485246999027b3197955.png", - "amount": "5248075136684161675", - "symbol": "USDT", - "address": "0x55d398326f99059ff775485246999027b3197955", - "decimals": "18" - }, - "network_fee": { - "gas_price": "59999999", - "native_token_price_in_usd": "651.34" - } - }, - "network": { - "block_explorer": { - "name": "BscScan", - "url": "https://bscscan.com" - }, - "name": "BNB Smart Chain", - "native_symbol": "BNB" - }, - "tx_hash": "0x8ace2bcccc7eb0cdf3435031029ca48553728446102aef54f55e330f0be40a0c" - }, - "unread": true, - "type": "erc20_sent", - "createdAt": "2026-03-11T23:45:24.729Z", - "isRead": true - }, - { - "created_at": "2026-03-11T23:44:30.796551Z", - "id": "ea29a341-f571-5a8a-9a0e-171a39a3b01f", - "notification_type": "on-chain", - "payload": { - "address": "0x30e8ccad5a980bdf30447f8c2c48e70989d9d294", - "block_number": 86058776, - "block_timestamp": "1773272670", - "chain_id": 56, - "data": { - "to": "0x1a1ec25dc08e98e5e93f1104b5e5cdd298707d31", - "from": "0x30e8ccad5a980bdf30447f8c2c48e70989d9d294", - "kind": "eth_sent", - "amount": { - "eth": "0.004132711639338957", - "usd": "2.69" - }, - "network_fee": { - "gas_price": "60000000", - "native_token_price_in_usd": "651.34" - } - }, - "network": { - "block_explorer": { - "name": "BscScan", - "url": "https://bscscan.com" - }, - "name": "BNB Smart Chain", - "native_symbol": "BNB" - }, - "tx_hash": "0xffff6d0c07ba2a2e9dff1d7e5302a4613c12e7529342ee73fbf4f4e834315e91" - }, - "unread": true, - "type": "eth_sent", - "createdAt": "2026-03-11T23:44:30.796Z", - "isRead": true - }, - { - "created_at": "2026-03-11T23:44:30.772594Z", - "id": "055429e9-ab2a-53e6-b85d-e8d0ab06c922", - "notification_type": "on-chain", - "payload": { - "address": "0x30e8ccad5a980bdf30447f8c2c48e70989d9d294", - "block_number": 86058776, - "block_timestamp": "1773272670", - "chain_id": 56, - "data": { - "kind": "metamask_swap_completed", - "rate": "0.0015492876652903692955", - "token_in": { - "usd": "651.34", - "name": "Binance Coin", - "image": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x0000000000000000000000000000000000000000.png", - "amount": "4132711639338957", - "symbol": "BNB", - "address": "0x0000000000000000000000000000000000000000", - "decimals": "18" - }, - "token_out": { - "usd": "1", - "name": "Tether USD", - "image": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x55d398326f99059ff775485246999027b3197955.png", - "amount": "2667491474905920315", - "symbol": "USDT", - "address": "0x55d398326f99059ff775485246999027b3197955", - "decimals": "18" - }, - "network_fee": { - "gas_price": "60000000", - "native_token_price_in_usd": "651.34" - } - }, - "network": { - "block_explorer": { - "name": "BscScan", - "url": "https://bscscan.com" - }, - "name": "BNB Smart Chain", - "native_symbol": "BNB" - }, - "tx_hash": "0xffff6d0c07ba2a2e9dff1d7e5302a4613c12e7529342ee73fbf4f4e834315e91" - }, - "unread": true, - "type": "metamask_swap_completed", - "createdAt": "2026-03-11T23:44:30.772Z", - "isRead": true - }, - { - "created_at": "2026-03-11T17:21:35.299016Z", - "id": "389ea6f0-0398-505d-878a-a50a537ff7d1", - "notification_type": "on-chain", - "payload": { - "address": "0x30e8ccad5a980bdf30447f8c2c48e70989d9d294", - "block_number": 86007748, - "block_timestamp": "1773249694", - "chain_id": 56, - "data": { - "kind": "metamask_swap_completed", - "rate": "0.0015468905430865550601", - "token_in": { - "usd": "650.92", - "name": "Binance Coin", - "image": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x0000000000000000000000000000000000000000.png", - "amount": "1000000000000000", - "symbol": "BNB", - "address": "0x0000000000000000000000000000000000000000", - "decimals": "18" - }, - "token_out": { - "usd": "1", - "name": "Tether USD", - "image": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x55d398326f99059ff775485246999027b3197955.png", - "amount": "646458150816974628", - "symbol": "USDT", - "address": "0x55d398326f99059ff775485246999027b3197955", - "decimals": "18" - }, - "network_fee": { - "gas_price": "50000000", - "native_token_price_in_usd": "650.92" - } - }, - "network": { - "block_explorer": { - "name": "BscScan", - "url": "https://bscscan.com" - }, - "name": "BNB Smart Chain", - "native_symbol": "BNB" - }, - "tx_hash": "0x2fef9566ec9fcc2b16c4ad30b54e55ebf26730aa814d401c5ff7b3c9627c64cd" - }, - "unread": true, - "type": "metamask_swap_completed", - "createdAt": "2026-03-11T17:21:35.299Z", - "isRead": true - }, - { - "created_at": "2026-03-11T17:21:01.352042Z", - "id": "d58af24b-daeb-5fc7-ae8c-2a55dd610626", - "notification_type": "on-chain", - "payload": { - "address": "0x30e8ccad5a980bdf30447f8c2c48e70989d9d294", - "block_number": 86007672, - "block_timestamp": "1773249660", - "chain_id": 56, - "data": { - "kind": "metamask_swap_completed", - "rate": "0.0015459200670506640359", - "token_in": { - "usd": "650.92", - "name": "Binance Coin", - "image": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x0000000000000000000000000000000000000000.png", - "amount": "1000000000000000", - "symbol": "BNB", - "address": "0x0000000000000000000000000000000000000000", - "decimals": "18" - }, - "token_out": { - "usd": "1", - "name": "Tether USD", - "image": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x55d398326f99059ff775485246999027b3197955.png", - "amount": "646863975255731809", - "symbol": "USDT", - "address": "0x55d398326f99059ff775485246999027b3197955", - "decimals": "18" - }, - "network_fee": { - "gas_price": "50000000", - "native_token_price_in_usd": "650.92" - } - }, - "network": { - "block_explorer": { - "name": "BscScan", - "url": "https://bscscan.com" - }, - "name": "BNB Smart Chain", - "native_symbol": "BNB" - }, - "tx_hash": "0x1ba592107f077ae6999c8d8ea316ec7bb12dd13ba3101dccc31cb50a1bc27b18" - }, - "unread": true, - "type": "metamask_swap_completed", - "createdAt": "2026-03-11T17:21:01.352Z", - "isRead": true - }, - { - "created_at": "2026-03-11T17:05:17.084751Z", - "id": "5e9b387d-5c55-585c-b4d0-1ccb27806044", - "notification_type": "on-chain", - "payload": { - "address": "0x30e8ccad5a980bdf30447f8c2c48e70989d9d294", - "block_number": 86005574, - "block_timestamp": "1773248716", - "chain_id": 56, - "data": { - "kind": "metamask_swap_completed", - "rate": "0.0015501713488723483754", - "token_in": { - "usd": "649.39", - "name": "Binance Coin", - "image": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x0000000000000000000000000000000000000000.png", - "amount": "1000000000000000", - "symbol": "BNB", - "address": "0x0000000000000000000000000000000000000000", - "decimals": "18" - }, - "token_out": { - "usd": "1", - "name": "Tether USD", - "image": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x55d398326f99059ff775485246999027b3197955.png", - "amount": "645089977135390072", - "symbol": "USDT", - "address": "0x55d398326f99059ff775485246999027b3197955", - "decimals": "18" - }, - "network_fee": { - "gas_price": "50000000", - "native_token_price_in_usd": "649.39" - } - }, - "network": { - "block_explorer": { - "name": "BscScan", - "url": "https://bscscan.com" - }, - "name": "BNB Smart Chain", - "native_symbol": "BNB" - }, - "tx_hash": "0x8b80069b22d3ae3e9c65f86cc18c4fb0716d7d511143fc14eb2a0f4c0ca736dc" - }, - "unread": true, - "type": "metamask_swap_completed", - "createdAt": "2026-03-11T17:05:17.084Z", - "isRead": true - }, - { - "created_at": "2026-03-11T16:57:26.45022Z", - "id": "8f642bf2-b943-53ad-8a1f-11286d144b74", - "notification_type": "on-chain", - "payload": { - "address": "0x30e8ccad5a980bdf30447f8c2c48e70989d9d294", - "block_number": 86004528, - "block_timestamp": "1773248245", - "chain_id": 56, - "data": { - "kind": "metamask_swap_completed", - "rate": "0.0015572162713443642749", - "token_in": { - "usd": "649.39", - "name": "Binance Coin", - "image": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x0000000000000000000000000000000000000000.png", - "amount": "1000000000000000", - "symbol": "BNB", - "address": "0x0000000000000000000000000000000000000000", - "decimals": "18" - }, - "token_out": { - "usd": "0.999834", - "name": "Tether USD", - "image": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x55d398326f99059ff775485246999027b3197955.png", - "amount": "642171558570144851", - "symbol": "USDT", - "address": "0x55d398326f99059ff775485246999027b3197955", - "decimals": "18" - }, - "network_fee": { - "gas_price": "50000000", - "native_token_price_in_usd": "649.39" - } - }, - "network": { - "block_explorer": { - "name": "BscScan", - "url": "https://bscscan.com" - }, - "name": "BNB Smart Chain", - "native_symbol": "BNB" - }, - "tx_hash": "0xc4bb8d8400fe8ce1839bb52312d3df25f263b0bafce5012b9783ebdcf4564af2" - }, - "unread": true, - "type": "metamask_swap_completed", - "createdAt": "2026-03-11T16:57:26.450Z", - "isRead": true - }, - { - "created_at": "2026-03-11T16:48:06.718751Z", - "id": "332ccde6-8f1e-5461-a6f8-1059dcb5f8a8", - "notification_type": "on-chain", - "payload": { - "address": "0x30e8ccad5a980bdf30447f8c2c48e70989d9d294", - "block_number": 86003284, - "block_timestamp": "1773247686", - "chain_id": 56, - "data": { - "kind": "metamask_swap_completed", - "rate": "0.0015537804363802702043", - "token_in": { - "usd": "648.42", - "name": "Binance Coin", - "image": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x0000000000000000000000000000000000000000.png", - "amount": "1000000000000000", - "symbol": "BNB", - "address": "0x0000000000000000000000000000000000000000", - "decimals": "18" - }, - "token_out": { - "usd": "0.999834", - "name": "Tether USD", - "image": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x55d398326f99059ff775485246999027b3197955.png", - "amount": "643591576123604442", - "symbol": "USDT", - "address": "0x55d398326f99059ff775485246999027b3197955", - "decimals": "18" - }, - "network_fee": { - "gas_price": "50000000", - "native_token_price_in_usd": "648.42" - } - }, - "network": { - "block_explorer": { - "name": "BscScan", - "url": "https://bscscan.com" - }, - "name": "BNB Smart Chain", - "native_symbol": "BNB" - }, - "tx_hash": "0xd88174ec98bc544754b5cc7d2523d83abdafbd9fcf7712799d40d62ed7b3bc82" - }, - "unread": true, - "type": "metamask_swap_completed", - "createdAt": "2026-03-11T16:48:06.718Z", - "isRead": true - }, - { - "created_at": "2026-03-11T16:45:44.359727Z", - "id": "6b5a113e-7cd4-5994-9864-9e5c07354fed", - "notification_type": "on-chain", - "payload": { - "address": "0x30e8ccad5a980bdf30447f8c2c48e70989d9d294", - "block_number": 86002968, - "block_timestamp": "1773247543", - "chain_id": 56, - "data": { - "kind": "metamask_swap_completed", - "rate": "0.0015558478647003672536", - "token_in": { - "usd": "648.42", - "name": "Binance Coin", - "image": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x0000000000000000000000000000000000000000.png", - "amount": "1399009100582177", - "symbol": "BNB", - "address": "0x0000000000000000000000000000000000000000", - "decimals": "18" - }, - "token_out": { - "usd": "0.999834", - "name": "Tether USD", - "image": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x55d398326f99059ff775485246999027b3197955.png", - "amount": "899194022965481252", - "symbol": "USDT", - "address": "0x55d398326f99059ff775485246999027b3197955", - "decimals": "18" - }, - "network_fee": { - "gas_price": "60000000", - "native_token_price_in_usd": "648.42" - } - }, - "network": { - "block_explorer": { - "name": "BscScan", - "url": "https://bscscan.com" - }, - "name": "BNB Smart Chain", - "native_symbol": "BNB" - }, - "tx_hash": "0x5344efc17565dd9b51eddf2545835e14628294508423299a1e17b2b4a5c13808" - }, - "unread": true, - "type": "metamask_swap_completed", - "createdAt": "2026-03-11T16:45:44.359Z", - "isRead": true - }, - { - "created_at": "2026-03-11T16:45:16.746465Z", - "id": "043ceffb-8d27-5159-b3f9-8cd2078941e5", - "notification_type": "on-chain", - "payload": { - "address": "0x30e8ccad5a980bdf30447f8c2c48e70989d9d294", - "block_number": 86002908, - "block_timestamp": "1773247516", - "chain_id": 56, - "data": { - "kind": "metamask_swap_completed", - "rate": "0.0015545595289367316187", - "token_in": { - "usd": "648.42", - "name": "Binance Coin", - "image": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x0000000000000000000000000000000000000000.png", - "amount": "1000000000000000", - "symbol": "BNB", - "address": "0x0000000000000000000000000000000000000000", - "decimals": "18" - }, - "token_out": { - "usd": "0.999834", - "name": "Tether USD", - "image": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x55d398326f99059ff775485246999027b3197955.png", - "amount": "643269029835073360", - "symbol": "USDT", - "address": "0x55d398326f99059ff775485246999027b3197955", - "decimals": "18" - }, - "network_fee": { - "gas_price": "50000000", - "native_token_price_in_usd": "648.42" - } - }, - "network": { - "block_explorer": { - "name": "BscScan", - "url": "https://bscscan.com" - }, - "name": "BNB Smart Chain", - "native_symbol": "BNB" - }, - "tx_hash": "0x3cd2802baeee8c5f2d5e5d86eb13dc3b6617e3e804dab8c050aa8b58da730465" - }, - "unread": true, - "type": "metamask_swap_completed", - "createdAt": "2026-03-11T16:45:16.746Z", - "isRead": true - }, - { - "created_at": "2026-03-11T16:43:53.822982Z", - "id": "5d1fecdb-8653-5d92-9477-fac4e06487b7", - "notification_type": "on-chain", - "payload": { - "address": "0x30e8ccad5a980bdf30447f8c2c48e70989d9d294", - "block_number": 86002724, - "block_timestamp": "1773247433", - "chain_id": 56, - "data": { - "kind": "metamask_swap_completed", - "rate": "0.0015567999996684552984", - "token_in": { - "usd": "648.42", - "name": "Binance Coin", - "image": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x0000000000000000000000000000000000000000.png", - "amount": "1000000000000000", - "symbol": "BNB", - "address": "0x0000000000000000000000000000000000000000", - "decimals": "18" - }, - "token_out": { - "usd": "0.999834", - "name": "Tether USD", - "image": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x55d398326f99059ff775485246999027b3197955.png", - "amount": "642343268379345778", - "symbol": "USDT", - "address": "0x55d398326f99059ff775485246999027b3197955", - "decimals": "18" - }, - "network_fee": { - "gas_price": "50000000", - "native_token_price_in_usd": "648.42" - } - }, - "network": { - "block_explorer": { - "name": "BscScan", - "url": "https://bscscan.com" - }, - "name": "BNB Smart Chain", - "native_symbol": "BNB" - }, - "tx_hash": "0x06fede25fa8a1f2ae276ace706413e14a98be4dd1da4c72dc9ab1ab6713eb343" - }, - "unread": true, - "type": "metamask_swap_completed", - "createdAt": "2026-03-11T16:43:53.822Z", - "isRead": true - }, - { - "created_at": "2026-03-11T16:42:19.733557Z", - "id": "a3eaf30e-ae92-58b6-b366-56e06de0c77a", - "notification_type": "on-chain", - "payload": { - "address": "0x30e8ccad5a980bdf30447f8c2c48e70989d9d294", - "block_number": 86002515, - "block_timestamp": "1773247339", - "chain_id": 56, - "data": { - "kind": "metamask_swap_completed", - "rate": "0.0015558207846667622881", - "token_in": { - "usd": "648.42", - "name": "Binance Coin", - "image": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x0000000000000000000000000000000000000000.png", - "amount": "1000000000000000", - "symbol": "BNB", - "address": "0x0000000000000000000000000000000000000000", - "decimals": "18" - }, - "token_out": { - "usd": "1", - "name": "Tether USD", - "image": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x55d398326f99059ff775485246999027b3197955.png", - "amount": "642747551553110099", - "symbol": "USDT", - "address": "0x55d398326f99059ff775485246999027b3197955", - "decimals": "18" - }, - "network_fee": { - "gas_price": "50000000", - "native_token_price_in_usd": "648.42" - } - }, - "network": { - "block_explorer": { - "name": "BscScan", - "url": "https://bscscan.com" - }, - "name": "BNB Smart Chain", - "native_symbol": "BNB" - }, - "tx_hash": "0x2b400f44585ffc102ac52d4896121282f4194499b992d8dced37ddde4edf32e8" - }, - "unread": true, - "type": "metamask_swap_completed", - "createdAt": "2026-03-11T16:42:19.733Z", - "isRead": true - }, - { - "created_at": "2026-03-11T16:42:03.373563Z", - "id": "773eaa82-0ee0-59f2-b950-4eea01d18796", - "notification_type": "on-chain", - "payload": { - "address": "0x30e8ccad5a980bdf30447f8c2c48e70989d9d294", - "block_number": 86002478, - "block_timestamp": "1773247322", - "chain_id": 56, - "data": { - "kind": "metamask_swap_completed", - "rate": "0.0015556138164334222835", - "token_in": { - "usd": "648.42", - "name": "Binance Coin", - "image": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x0000000000000000000000000000000000000000.png", - "amount": "1000000000000000", - "symbol": "BNB", - "address": "0x0000000000000000000000000000000000000000", - "decimals": "18" - }, - "token_out": { - "usd": "1", - "name": "Tether USD", - "image": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x55d398326f99059ff775485246999027b3197955.png", - "amount": "642833066559356030", - "symbol": "USDT", - "address": "0x55d398326f99059ff775485246999027b3197955", - "decimals": "18" - }, - "network_fee": { - "gas_price": "50000000", - "native_token_price_in_usd": "648.42" - } - }, - "network": { - "block_explorer": { - "name": "BscScan", - "url": "https://bscscan.com" - }, - "name": "BNB Smart Chain", - "native_symbol": "BNB" - }, - "tx_hash": "0xf1bdb845c03442a7edd9aca67e5d52aefbec02b06043f507f976a29c2252fa0c" - }, - "unread": true, - "type": "metamask_swap_completed", - "createdAt": "2026-03-11T16:42:03.373Z", - "isRead": true - }, - { - "created_at": "2026-03-11T16:31:20.575528Z", - "id": "272265e8-52ea-506c-bc89-8f79284d29ac", - "notification_type": "on-chain", - "payload": { - "address": "0x30e8ccad5a980bdf30447f8c2c48e70989d9d294", - "block_number": 86001050, - "block_timestamp": "1773246680", - "chain_id": 56, - "data": { - "kind": "metamask_swap_completed", - "rate": "0.0015573243317963164436", - "token_in": { - "usd": "646.97", - "name": "Binance Coin", - "image": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x0000000000000000000000000000000000000000.png", - "amount": "1000000000000000", - "symbol": "BNB", - "address": "0x0000000000000000000000000000000000000000", - "decimals": "18" - }, - "token_out": { - "usd": "1", - "name": "Tether USD", - "image": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x55d398326f99059ff775485246999027b3197955.png", - "amount": "642126999227281521", - "symbol": "USDT", - "address": "0x55d398326f99059ff775485246999027b3197955", - "decimals": "18" - }, - "network_fee": { - "gas_price": "50000000", - "native_token_price_in_usd": "646.97" - } - }, - "network": { - "block_explorer": { - "name": "BscScan", - "url": "https://bscscan.com" - }, - "name": "BNB Smart Chain", - "native_symbol": "BNB" - }, - "tx_hash": "0xcc0028446315d88f19fb6ef1100c8a91398d4893ce9c1661a5575417208e35e7" - }, - "unread": true, - "type": "metamask_swap_completed", - "createdAt": "2026-03-11T16:31:20.575Z", - "isRead": true - }, - { - "created_at": "2026-03-11T16:31:00.164737Z", - "id": "f7f0ef78-e38e-55ba-ade1-9d3a3bb22592", - "notification_type": "on-chain", - "payload": { - "address": "0x30e8ccad5a980bdf30447f8c2c48e70989d9d294", - "block_number": 86001004, - "block_timestamp": "1773246659", - "chain_id": 56, - "data": { - "kind": "metamask_swap_completed", - "rate": "0.0015575674404985925276", - "token_in": { - "usd": "646.97", - "name": "Binance Coin", - "image": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x0000000000000000000000000000000000000000.png", - "amount": "1000000000000000", - "symbol": "BNB", - "address": "0x0000000000000000000000000000000000000000", - "decimals": "18" - }, - "token_out": { - "usd": "1", - "name": "Tether USD", - "image": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x55d398326f99059ff775485246999027b3197955.png", - "amount": "642026774570923393", - "symbol": "USDT", - "address": "0x55d398326f99059ff775485246999027b3197955", - "decimals": "18" - }, - "network_fee": { - "gas_price": "50000000", - "native_token_price_in_usd": "646.97" - } - }, - "network": { - "block_explorer": { - "name": "BscScan", - "url": "https://bscscan.com" - }, - "name": "BNB Smart Chain", - "native_symbol": "BNB" - }, - "tx_hash": "0x0b913d25fd94a89b0dec9ff937761096daa841b4d9ce0ffa475d5b491a0008bc" - }, - "unread": true, - "type": "metamask_swap_completed", - "createdAt": "2026-03-11T16:31:00.164Z", - "isRead": true - }, - { - "created_at": "2026-03-11T16:16:09.134112Z", - "id": "c1dde884-0c1b-58e5-94b1-ad5d09443bdd", - "notification_type": "on-chain", - "payload": { - "address": "0x30e8ccad5a980bdf30447f8c2c48e70989d9d294", - "block_number": 85999025, - "block_timestamp": "1773245768", - "chain_id": 56, - "data": { - "kind": "metamask_swap_completed", - "rate": "0.0015578731050394358884", - "token_in": { - "usd": "646.18", - "name": "Binance Coin", - "image": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x0000000000000000000000000000000000000000.png", - "amount": "1000000000000000", - "symbol": "BNB", - "address": "0x0000000000000000000000000000000000000000", - "decimals": "18" - }, - "token_out": { - "usd": "1", - "name": "Tether USD", - "image": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x55d398326f99059ff775485246999027b3197955.png", - "amount": "641900804863491158", - "symbol": "USDT", - "address": "0x55d398326f99059ff775485246999027b3197955", - "decimals": "18" - }, - "network_fee": { - "gas_price": "50000000", - "native_token_price_in_usd": "646.18" - } - }, - "network": { - "block_explorer": { - "name": "BscScan", - "url": "https://bscscan.com" - }, - "name": "BNB Smart Chain", - "native_symbol": "BNB" - }, - "tx_hash": "0xcccf1079c9c3912f185c07a524c45b8789f9a38be010cde31e12d6bef7b5c167" - }, - "unread": true, - "type": "metamask_swap_completed", - "createdAt": "2026-03-11T16:16:09.134Z", - "isRead": true - }, - { - "created_at": "2026-03-11T16:13:47.187081Z", - "id": "d39eef54-729f-5396-9192-58670762ddf4", - "notification_type": "on-chain", - "payload": { - "address": "0xf25bd11c334507fd007d584e2d0b7b2c6543f714", - "block_number": 85998710, - "block_timestamp": "1773245626", - "chain_id": 56, - "data": { - "kind": "metamask_swap_completed", - "rate": "0.0015806002930275604058", - "token_in": { - "usd": "646.18", - "name": "Binance Coin", - "image": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x0000000000000000000000000000000000000000.png", - "amount": "16104189014254", - "symbol": "BNB", - "address": "0x0000000000000000000000000000000000000000", - "decimals": "18" - }, - "token_out": { - "usd": "1", - "name": "Tether USD", - "image": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x55d398326f99059ff775485246999027b3197955.png", - "amount": "10188653693975493", - "symbol": "USDT", - "address": "0x55d398326f99059ff775485246999027b3197955", - "decimals": "18" - }, - "network_fee": { - "gas_price": "60000000", - "native_token_price_in_usd": "646.18" - } - }, - "network": { - "block_explorer": { - "name": "BscScan", - "url": "https://bscscan.com" - }, - "name": "BNB Smart Chain", - "native_symbol": "BNB" - }, - "tx_hash": "0xd6f8a677cd107d2f977e7bd3a1d9a19804a5af7000ce4e92b074b5490c6f537d" - }, - "unread": true, - "type": "metamask_swap_completed", - "createdAt": "2026-03-11T16:13:47.187Z", - "isRead": true - }, - { - "created_at": "2026-03-11T16:10:42.757438Z", - "id": "f68461dc-aa2e-524d-a392-429bf56c48a1", - "notification_type": "on-chain", - "payload": { - "address": "0xf25bd11c334507fd007d584e2d0b7b2c6543f714", - "block_number": 85998293, - "block_timestamp": "1773245439", - "chain_id": 56, - "data": { - "kind": "metamask_swap_completed", - "rate": "0.0015669847481467083391", - "token_in": { - "usd": "646.18", - "name": "Binance Coin", - "image": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x0000000000000000000000000000000000000000.png", - "amount": "47465857955950", - "symbol": "BNB", - "address": "0x0000000000000000000000000000000000000000", - "decimals": "18" - }, - "token_out": { - "usd": "0.999832", - "name": "Tether USD", - "image": "https://static.cx.metamask.io/api/v1/tokenIcons/56/0x55d398326f99059ff775485246999027b3197955.png", - "amount": "30291206096350612", - "symbol": "USDT", - "address": "0x55d398326f99059ff775485246999027b3197955", - "decimals": "18" - }, - "network_fee": { - "gas_price": "60000000", - "native_token_price_in_usd": "646.18" - } - }, - "network": { - "block_explorer": { - "name": "BscScan", - "url": "https://bscscan.com" - }, - "name": "BNB Smart Chain", - "native_symbol": "BNB" - }, - "tx_hash": "0xc5f80798a60c0a370167a6d7b79007201fc0e008759754c3222971f9fc33b2a8" - }, - "unread": true, - "type": "metamask_swap_completed", - "createdAt": "2026-03-11T16:10:42.757Z", - "isRead": true - }, - { - "created_at": "2026-03-10T23:03:23.987735Z", - "id": "f5f8d142-becd-519c-88f3-50c9da61b96f", - "notification_type": "on-chain", - "payload": { - "address": "0x30e8ccad5a980bdf30447f8c2c48e70989d9d294", - "block_number": 84031885, - "block_timestamp": "1773183803", - "chain_id": 137, - "data": { - "to": "0x1a1ec25dc08e98e5e93f1104b5e5cdd298707d31", - "from": "0x30e8ccad5a980bdf30447f8c2c48e70989d9d294", - "kind": "eth_sent", - "amount": { - "eth": "61.271876290461501360", - "usd": "5.89" - }, - "network_fee": { - "gas_price": "312853988853", - "native_token_price_in_usd": "0.096166" - } - }, - "network": { - "block_explorer": { - "name": "PolygonScan", - "url": "https://polygonscan.com" - }, - "name": "Polygon", - "native_symbol": "POL" - }, - "tx_hash": "0x6a98e4fc480b8302ac1ef773ef15c95c4c2f15e0501076aee58ac1767f3e144c" - }, - "unread": true, - "type": "eth_sent", - "createdAt": "2026-03-10T23:03:23.987Z", - "isRead": true - }, - { - "created_at": "2026-03-10T23:03:23.94612Z", - "id": "61994766-5032-5a4f-85ba-41cfcc1d7a31", - "notification_type": "on-chain", - "payload": { - "address": "0x30e8ccad5a980bdf30447f8c2c48e70989d9d294", - "block_number": 84031885, - "block_timestamp": "1773183803", - "chain_id": 137, - "data": { - "kind": "metamask_swap_completed", - "rate": "10.482659111090457661", - "token_in": { - "usd": "0.096166", - "name": "Polygon Ecosystem Token", - "image": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x0000000000000000000000000000000000000000.png", - "amount": "61271876290461501360", - "symbol": "POL", - "address": "0x0000000000000000000000000000000000000000", - "decimals": "18" - }, - "token_out": { - "usd": "0.999999999999996", - "name": "Tether USD", - "image": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0xc2132d05d31c914a87c6611c10748aeb04b58e8f.png", - "amount": "5845070", - "symbol": "USDT", - "address": "0xc2132d05d31c914a87c6611c10748aeb04b58e8f", - "decimals": "6" - }, - "network_fee": { - "gas_price": "312853988853", - "native_token_price_in_usd": "0.096166" - } - }, - "network": { - "block_explorer": { - "name": "PolygonScan", - "url": "https://polygonscan.com" - }, - "name": "Polygon", - "native_symbol": "POL" - }, - "tx_hash": "0x6a98e4fc480b8302ac1ef773ef15c95c4c2f15e0501076aee58ac1767f3e144c" - }, - "unread": true, - "type": "metamask_swap_completed", - "createdAt": "2026-03-10T23:03:23.946Z", - "isRead": true - }, - { - "created_at": "2026-03-05T18:22:13.027871Z", - "id": "a46e51b1-42ca-598c-a1b7-26268375a4f0", - "notification_type": "on-chain", - "payload": { - "address": "0x30e8ccad5a980bdf30447f8c2c48e70989d9d294", - "block_number": 24593031, - "block_timestamp": "1772734931", - "chain_id": 1, - "data": { - "to": "0xb3864b298f4fddbbbd2fa5cf1a2a2748932b3b81", - "from": "0x30e8ccad5a980bdf30447f8c2c48e70989d9d294", - "kind": "erc20_sent", - "token": { - "usd": "259.84", - "name": "Apple (Ondo Tokenized)", - "image": "https://static.cx.metamask.io/api/v1/tokenIcons/1/0x14c3abf95cb9c93a8b82c1cdcb76d72cb87b2d4c.png", - "amount": "69005829525856698", - "symbol": "AAPLON", - "address": "0x14c3abf95cb9c93a8b82c1cdcb76d72cb87b2d4c", - "decimals": "18" - }, - "network_fee": { - "gas_price": "2138881559", - "native_token_price_in_usd": "2063.08" - } - }, - "network": { - "block_explorer": { - "name": "Etherscan", - "url": "https://etherscan.io" - }, - "name": "Ethereum", - "native_symbol": "ETH" - }, - "tx_hash": "0xa4899b3fe157eb9fef5ca83a984e7f65c1ae47df2292e0e5af182d8c8e7de1cc" - }, - "unread": true, - "type": "erc20_sent", - "createdAt": "2026-03-05T18:22:13.027Z", - "isRead": true - }, - { - "created_at": "2026-03-05T18:21:49.434759Z", - "id": "e176e811-4390-5130-87f6-1489b17391f3", - "notification_type": "on-chain", - "payload": { - "address": "0x30e8ccad5a980bdf30447f8c2c48e70989d9d294", - "block_number": 24593029, - "block_timestamp": "1772734907", - "chain_id": 1, - "data": { - "to": "0x30e8ccad5a980bdf30447f8c2c48e70989d9d294", - "from": "0x56c262027e0de4aea31d2489529cb25d23e58a8b", - "kind": "eth_received", - "amount": { - "eth": "0.001534107384785586", - "usd": "3.16" - }, - "network_fee": { - "gas_price": "154647340", - "native_token_price_in_usd": "2063.08" - } - }, - "network": { - "block_explorer": { - "name": "Etherscan", - "url": "https://etherscan.io" - }, - "name": "Ethereum", - "native_symbol": "ETH" - }, - "tx_hash": "0x8c7c607a6445e69c50983fb9b8da37faaaf2900b57e717cda57c616f22ee54d6" - }, - "unread": true, - "type": "eth_received", - "createdAt": "2026-03-05T18:21:49.434Z", - "isRead": true - }, - { - "created_at": "2026-03-05T17:53:30.364866Z", - "id": "6016e3ca-ce2b-5c0b-b7d2-4ad9efdacc99", - "notification_type": "on-chain", - "payload": { - "address": "0x30e8ccad5a980bdf30447f8c2c48e70989d9d294", - "block_number": 83806589, - "block_timestamp": "1772733209", - "chain_id": 137, - "data": { - "to": "0x1a1ec25dc08e98e5e93f1104b5e5cdd298707d31", - "from": "0x30e8ccad5a980bdf30447f8c2c48e70989d9d294", - "kind": "eth_sent", - "amount": { - "eth": "10.000000000000000000", - "usd": "1.00" - }, - "network_fee": { - "gas_price": "183058301860", - "native_token_price_in_usd": "0.100115" - } - }, - "network": { - "block_explorer": { - "name": "PolygonScan", - "url": "https://polygonscan.com" - }, - "name": "Polygon", - "native_symbol": "POL" - }, - "tx_hash": "0x97dbd5dde86d4651b27a138ae71668928e00aa440d596d89acd39ea40e318d91" - }, - "unread": true, - "type": "eth_sent", - "createdAt": "2026-03-05T17:53:30.364Z", - "isRead": true - }, - { - "created_at": "2026-03-05T17:53:30.290038Z", - "id": "4fbac2fd-bcbd-5f14-b870-2ec7f2bad589", - "notification_type": "on-chain", - "payload": { - "address": "0x30e8ccad5a980bdf30447f8c2c48e70989d9d294", - "block_number": 83806589, - "block_timestamp": "1772733209", - "chain_id": 137, - "data": { - "kind": "metamask_swap_completed", - "rate": "10.0824543113582880795", - "token_in": { - "usd": "0.100115", - "name": "Polygon Ecosystem Token", - "image": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x0000000000000000000000000000000000000000.png", - "amount": "10000000000000000000", - "symbol": "POL", - "address": "0x0000000000000000000000000000000000000000", - "decimals": "18" - }, - "token_out": { - "usd": "1", - "name": "Tether USD", - "image": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0xc2132d05d31c914a87c6611c10748aeb04b58e8f.png", - "amount": "991822", - "symbol": "USDT", - "address": "0xc2132d05d31c914a87c6611c10748aeb04b58e8f", - "decimals": "6" - }, - "network_fee": { - "gas_price": "183058301860", - "native_token_price_in_usd": "0.100115" - } - }, - "network": { - "block_explorer": { - "name": "PolygonScan", - "url": "https://polygonscan.com" - }, - "name": "Polygon", - "native_symbol": "POL" - }, - "tx_hash": "0x97dbd5dde86d4651b27a138ae71668928e00aa440d596d89acd39ea40e318d91" - }, - "unread": true, - "type": "metamask_swap_completed", - "createdAt": "2026-03-05T17:53:30.290Z", - "isRead": true - }, - { - "created_at": "2026-03-05T17:52:46.28602Z", - "id": "3b302450-fd15-56eb-b6af-a1c7286b9a9c", - "notification_type": "on-chain", - "payload": { - "address": "0x30e8ccad5a980bdf30447f8c2c48e70989d9d294", - "block_number": 83806567, - "block_timestamp": "1772733165", - "chain_id": 137, - "data": { - "to": "0x1a1ec25dc08e98e5e93f1104b5e5cdd298707d31", - "from": "0x30e8ccad5a980bdf30447f8c2c48e70989d9d294", - "kind": "eth_sent", - "amount": { - "eth": "10.000000000000000000", - "usd": "1.00" - }, - "network_fee": { - "gas_price": "182379273590", - "native_token_price_in_usd": "0.100115" - } - }, - "network": { - "block_explorer": { - "name": "PolygonScan", - "url": "https://polygonscan.com" - }, - "name": "Polygon", - "native_symbol": "POL" - }, - "tx_hash": "0x075a45124c42750745dc9efc32a64831fd4603aa14dfa04ffbd77610e60b34fb" - }, - "unread": true, - "type": "eth_sent", - "createdAt": "2026-03-05T17:52:46.286Z", - "isRead": true - }, - { - "created_at": "2026-03-05T17:52:46.217482Z", - "id": "ad794c5b-3112-5368-8856-0e924d3c8833", - "notification_type": "on-chain", - "payload": { - "address": "0x30e8ccad5a980bdf30447f8c2c48e70989d9d294", - "block_number": 83806567, - "block_timestamp": "1772733165", - "chain_id": 137, - "data": { - "kind": "metamask_swap_completed", - "rate": "10.0832574568209707554", - "token_in": { - "usd": "0.100115", - "name": "Polygon Ecosystem Token", - "image": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x0000000000000000000000000000000000000000.png", - "amount": "10000000000000000000", - "symbol": "POL", - "address": "0x0000000000000000000000000000000000000000", - "decimals": "18" - }, - "token_out": { - "usd": "1", - "name": "Tether USD", - "image": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0xc2132d05d31c914a87c6611c10748aeb04b58e8f.png", - "amount": "991743", - "symbol": "USDT", - "address": "0xc2132d05d31c914a87c6611c10748aeb04b58e8f", - "decimals": "6" - }, - "network_fee": { - "gas_price": "182379273590", - "native_token_price_in_usd": "0.100115" - } - }, - "network": { - "block_explorer": { - "name": "PolygonScan", - "url": "https://polygonscan.com" - }, - "name": "Polygon", - "native_symbol": "POL" - }, - "tx_hash": "0x075a45124c42750745dc9efc32a64831fd4603aa14dfa04ffbd77610e60b34fb" - }, - "unread": true, - "type": "metamask_swap_completed", - "createdAt": "2026-03-05T17:52:46.217Z", - "isRead": true - }, - { - "created_at": "2026-03-05T00:27:29.911177Z", - "id": "7cce6c62-7ea3-51e7-9156-940c7674a567", - "notification_type": "on-chain", - "payload": { - "address": "0x30e8ccad5a980bdf30447f8c2c48e70989d9d294", - "block_number": 83775209, - "block_timestamp": "1772670449", - "chain_id": 137, - "data": { - "to": "0x1a1ec25dc08e98e5e93f1104b5e5cdd298707d31", - "from": "0x30e8ccad5a980bdf30447f8c2c48e70989d9d294", - "kind": "eth_sent", - "amount": { - "eth": "10.000000000000000000", - "usd": "1.04" - }, - "network_fee": { - "gas_price": "229848191150", - "native_token_price_in_usd": "0.103716" - } - }, - "network": { - "block_explorer": { - "name": "PolygonScan", - "url": "https://polygonscan.com" - }, - "name": "Polygon", - "native_symbol": "POL" - }, - "tx_hash": "0x4d48be211dd7e858ef3afaca946b5961b3dded1b7e872c92f811f3e98b556842" - }, - "unread": true, - "type": "eth_sent", - "createdAt": "2026-03-05T00:27:29.911Z", - "isRead": true - }, - { - "created_at": "2026-03-05T00:27:29.828366Z", - "id": "f6703240-9141-53fd-9fbf-ed4a37b4258b", - "notification_type": "on-chain", - "payload": { - "address": "0x30e8ccad5a980bdf30447f8c2c48e70989d9d294", - "block_number": 83775209, - "block_timestamp": "1772670449", - "chain_id": 137, - "data": { - "kind": "metamask_swap_completed", - "rate": "9.719788225254148162", - "token_in": { - "usd": "0.103716", - "name": "Polygon Ecosystem Token", - "image": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x0000000000000000000000000000000000000000.png", - "amount": "10000000000000000000", - "symbol": "POL", - "address": "0x0000000000000000000000000000000000000000", - "decimals": "18" - }, - "token_out": { - "usd": "1.001", - "name": "Tether USD", - "image": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0xc2132d05d31c914a87c6611c10748aeb04b58e8f.png", - "amount": "1028829", - "symbol": "USDT", - "address": "0xc2132d05d31c914a87c6611c10748aeb04b58e8f", - "decimals": "6" - }, - "network_fee": { - "gas_price": "229848191150", - "native_token_price_in_usd": "0.103716" - } - }, - "network": { - "block_explorer": { - "name": "PolygonScan", - "url": "https://polygonscan.com" - }, - "name": "Polygon", - "native_symbol": "POL" - }, - "tx_hash": "0x4d48be211dd7e858ef3afaca946b5961b3dded1b7e872c92f811f3e98b556842" - }, - "unread": true, - "type": "metamask_swap_completed", - "createdAt": "2026-03-05T00:27:29.828Z", - "isRead": true - }, - { - "created_at": "2026-03-05T00:27:22.745771Z", - "id": "0b90aef3-0491-5bf7-95b4-621bf8bb215a", - "notification_type": "on-chain", - "payload": { - "address": "0x30e8ccad5a980bdf30447f8c2c48e70989d9d294", - "block_number": 83775205, - "block_timestamp": "1772670441", - "chain_id": 137, - "data": { - "to": "0x1a1ec25dc08e98e5e93f1104b5e5cdd298707d31", - "from": "0x30e8ccad5a980bdf30447f8c2c48e70989d9d294", - "kind": "eth_sent", - "amount": { - "eth": "10.000000000000000000", - "usd": "1.04" - }, - "network_fee": { - "gas_price": "227325709881", - "native_token_price_in_usd": "0.103716" - } - }, - "network": { - "block_explorer": { - "name": "PolygonScan", - "url": "https://polygonscan.com" - }, - "name": "Polygon", - "native_symbol": "POL" - }, - "tx_hash": "0xb6fae9523a17e51bac6f432f72c4b882be2292228b50038210a4dea3b52b4846" - }, - "unread": true, - "type": "eth_sent", - "createdAt": "2026-03-05T00:27:22.745Z", - "isRead": true - }, - { - "created_at": "2026-03-05T00:27:22.745635Z", - "id": "c9aa0305-19d0-5b51-abb6-06381eaa819d", - "notification_type": "on-chain", - "payload": { - "address": "0x30e8ccad5a980bdf30447f8c2c48e70989d9d294", - "block_number": 83775205, - "block_timestamp": "1772670441", - "chain_id": 137, - "data": { - "kind": "metamask_swap_completed", - "rate": "9.71642610415037141", - "token_in": { - "usd": "0.103716", - "name": "Polygon Ecosystem Token", - "image": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x0000000000000000000000000000000000000000.png", - "amount": "10000000000000000000", - "symbol": "POL", - "address": "0x0000000000000000000000000000000000000000", - "decimals": "18" - }, - "token_out": { - "usd": "1.001", - "name": "Tether USD", - "image": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0xc2132d05d31c914a87c6611c10748aeb04b58e8f.png", - "amount": "1029185", - "symbol": "USDT", - "address": "0xc2132d05d31c914a87c6611c10748aeb04b58e8f", - "decimals": "6" - }, - "network_fee": { - "gas_price": "227325709881", - "native_token_price_in_usd": "0.103716" - } - }, - "network": { - "block_explorer": { - "name": "PolygonScan", - "url": "https://polygonscan.com" - }, - "name": "Polygon", - "native_symbol": "POL" - }, - "tx_hash": "0xb6fae9523a17e51bac6f432f72c4b882be2292228b50038210a4dea3b52b4846" - }, - "unread": true, - "type": "metamask_swap_completed", - "createdAt": "2026-03-05T00:27:22.745Z", - "isRead": true - }, - { - "created_at": "2026-03-05T00:27:14.523322Z", - "id": "001dbbde-3ab9-51b1-92d7-47bf9aa80960", - "notification_type": "on-chain", - "payload": { - "address": "0x30e8ccad5a980bdf30447f8c2c48e70989d9d294", - "block_number": 83775201, - "block_timestamp": "1772670433", - "chain_id": 137, - "data": { - "kind": "metamask_swap_completed", - "rate": "9.713066308189766119", - "token_in": { - "usd": "0.103716", - "name": "Polygon Ecosystem Token", - "image": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x0000000000000000000000000000000000000000.png", - "amount": "10000000000000000000", - "symbol": "POL", - "address": "0x0000000000000000000000000000000000000000", - "decimals": "18" - }, - "token_out": { - "usd": "1", - "name": "Tether USD", - "image": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0xc2132d05d31c914a87c6611c10748aeb04b58e8f.png", - "amount": "1029541", - "symbol": "USDT", - "address": "0xc2132d05d31c914a87c6611c10748aeb04b58e8f", - "decimals": "6" - }, - "network_fee": { - "gas_price": "226343111780", - "native_token_price_in_usd": "0.103716" - } - }, - "network": { - "block_explorer": { - "name": "PolygonScan", - "url": "https://polygonscan.com" - }, - "name": "Polygon", - "native_symbol": "POL" - }, - "tx_hash": "0xb41d8bbf9c9868dae187ca71e4f480e46f329c528c5418cb68275048bfc702b1" - }, - "unread": true, - "type": "metamask_swap_completed", - "createdAt": "2026-03-05T00:27:14.523Z", - "isRead": true - }, - { - "created_at": "2026-03-05T00:27:14.52327Z", - "id": "79410374-ff70-5220-bba5-a0f2373a073e", - "notification_type": "on-chain", - "payload": { - "address": "0x30e8ccad5a980bdf30447f8c2c48e70989d9d294", - "block_number": 83775201, - "block_timestamp": "1772670433", - "chain_id": 137, - "data": { - "to": "0x1a1ec25dc08e98e5e93f1104b5e5cdd298707d31", - "from": "0x30e8ccad5a980bdf30447f8c2c48e70989d9d294", - "kind": "eth_sent", - "amount": { - "eth": "10.000000000000000000", - "usd": "1.04" - }, - "network_fee": { - "gas_price": "226343111780", - "native_token_price_in_usd": "0.103716" - } - }, - "network": { - "block_explorer": { - "name": "PolygonScan", - "url": "https://polygonscan.com" - }, - "name": "Polygon", - "native_symbol": "POL" - }, - "tx_hash": "0xb41d8bbf9c9868dae187ca71e4f480e46f329c528c5418cb68275048bfc702b1" - }, - "unread": true, - "type": "eth_sent", - "createdAt": "2026-03-05T00:27:14.523Z", - "isRead": true - }, - { - "created_at": "2026-03-05T00:25:49.925134Z", - "id": "96d486fc-0c05-5dba-8532-e4e1cfaa47e1", - "notification_type": "on-chain", - "payload": { - "address": "0x30e8ccad5a980bdf30447f8c2c48e70989d9d294", - "block_number": 83775159, - "block_timestamp": "1772670349", - "chain_id": 137, - "data": { - "to": "0x1a1ec25dc08e98e5e93f1104b5e5cdd298707d31", - "from": "0x30e8ccad5a980bdf30447f8c2c48e70989d9d294", - "kind": "eth_sent", - "amount": { - "eth": "10.000000000000000000", - "usd": "1.04" - }, - "network_fee": { - "gas_price": "206908876726", - "native_token_price_in_usd": "0.103716" - } - }, - "network": { - "block_explorer": { - "name": "PolygonScan", - "url": "https://polygonscan.com" - }, - "name": "Polygon", - "native_symbol": "POL" - }, - "tx_hash": "0x19f5431502801719910455587c980657c3023ffc11201e35ccd7a9c6b7b8eadd" - }, - "unread": true, - "type": "eth_sent", - "createdAt": "2026-03-05T00:25:49.925Z", - "isRead": true - }, - { - "created_at": "2026-03-05T00:25:49.902164Z", - "id": "f9dd73ff-0cd8-528e-bdd9-5ae09fdcf090", - "notification_type": "on-chain", - "payload": { - "address": "0x30e8ccad5a980bdf30447f8c2c48e70989d9d294", - "block_number": 83775159, - "block_timestamp": "1772670349", - "chain_id": 137, - "data": { - "kind": "metamask_swap_completed", - "rate": "9.704893595546618426", - "token_in": { - "usd": "0.103716", - "name": "Polygon Ecosystem Token", - "image": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0x0000000000000000000000000000000000000000.png", - "amount": "10000000000000000000", - "symbol": "POL", - "address": "0x0000000000000000000000000000000000000000", - "decimals": "18" - }, - "token_out": { - "usd": "1", - "name": "Tether USD", - "image": "https://static.cx.metamask.io/api/v1/tokenIcons/137/0xc2132d05d31c914a87c6611c10748aeb04b58e8f.png", - "amount": "1030408", - "symbol": "USDT", - "address": "0xc2132d05d31c914a87c6611c10748aeb04b58e8f", - "decimals": "6" - }, - "network_fee": { - "gas_price": "206908876726", - "native_token_price_in_usd": "0.103716" - } - }, - "network": { - "block_explorer": { - "name": "PolygonScan", - "url": "https://polygonscan.com" - }, - "name": "Polygon", - "native_symbol": "POL" - }, - "tx_hash": "0x19f5431502801719910455587c980657c3023ffc11201e35ccd7a9c6b7b8eadd" - }, - "unread": true, - "type": "metamask_swap_completed", - "createdAt": "2026-03-05T00:25:49.902Z", - "isRead": true - } - ], - "metamaskNotificationsReadList": [], - "isUpdatingMetamaskNotifications": false, - "isFetchingMetamaskNotifications": false, - "isUpdatingMetamaskNotificationsAccount": [], - "isCheckingAccountsPresence": false, - "isPushEnabled": false, - "fcmToken": "", - "isUpdatingFCMToken": false, - "remoteFeatureFlags": { - "addBitcoinAccount": false, - "addBitcoinAccountDummyFlag": false, - "addSolanaAccount": true, - "additionalNetworksBlacklist": [], - "assetsAccountApiBalances": [ - "0x1", - "0xe708", - "0x38", - "0x89", - "0x2105", - "0xa", - "0xa4b1" - ], - "assetsDefiPositionsEnabled": true, - "assetsEnableNotificationsByDefault": true, - "assetsEnableNotificationsByDefaultV2": { - "name": "feature is ON", - "value": true - }, - "assetsUnifyState": { - "enabled": true, - "featureVersion": "1", - "minimumVersion": "13.32.0" - }, - "backendWebSocketConnection": { - "name": "feature is ON", - "value": true - }, - "bitcoinAccounts": { - "minimumVersion": "13.9.0", - "enabled": true - }, - "bitcoinTestnetsEnabled": false, - "bridgeConfig": { - "sse": { - "enabled": true, - "minimumVersion": "13.9.0" - }, - "chains": { - "1": { - "isSingleSwapBridgeButtonEnabled": true, - "noFeeAssets": [], - "topAssets": ["0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48"], - "batchSellDestStablecoins": [ - "eip155:1/erc20:0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48" - ], - "isActiveDest": true, - "isActiveSrc": true, - "isGaslessSwapEnabled": true - }, - "10": { - "isActiveDest": true, - "isActiveSrc": true, - "isSingleSwapBridgeButtonEnabled": true - }, - "56": { - "isActiveDest": true, - "isActiveSrc": true, - "isGaslessSwapEnabled": true, - "isSingleSwapBridgeButtonEnabled": true - }, - "137": { - "isActiveSrc": true, - "isSingleSwapBridgeButtonEnabled": true, - "isActiveDest": true - }, - "143": { - "isActiveSrc": true, - "isSingleSwapBridgeButtonEnabled": true, - "isActiveDest": true - }, - "324": { - "isActiveSrc": true, - "isSingleSwapBridgeButtonEnabled": true, - "isActiveDest": true - }, - "999": { - "isActiveDest": true, - "isActiveSrc": true, - "isSingleSwapBridgeButtonEnabled": true - }, - "1329": { - "isActiveDest": true, - "isActiveSrc": true, - "isSingleSwapBridgeButtonEnabled": true - }, - "4326": { - "isActiveDest": true, - "isActiveSrc": true, - "isSingleSwapBridgeButtonEnabled": true - }, - "8453": { - "isActiveSrc": true, - "isGaslessSwapEnabled": true, - "isSingleSwapBridgeButtonEnabled": true, - "isActiveDest": true - }, - "42161": { - "isSingleSwapBridgeButtonEnabled": true, - "isActiveDest": true, - "isActiveSrc": true - }, - "43114": { - "isActiveDest": true, - "isActiveSrc": true, - "isSingleSwapBridgeButtonEnabled": true - }, - "59144": { - "isSingleSwapBridgeButtonEnabled": true, - "noFeeAssets": [], - "topAssets": ["0x176211869ca2b568f2a7d4ee941e073a821ee1ff"], - "isActiveDest": true, - "isActiveSrc": true, - "isGaslessSwapEnabled": true - }, - "728126428": { - "isSingleSwapBridgeButtonEnabled": true, - "isActiveDest": true, - "isActiveSrc": true - }, - "20000000000001": { - "isActiveDest": true, - "isActiveSrc": true, - "isSingleSwapBridgeButtonEnabled": true - }, - "1151111081099710": { - "isSingleSwapBridgeButtonEnabled": true, - "isSnapConfirmationEnabled": true, - "refreshRate": 10000, - "topAssets": [ - "EPjFWdd5AufqSSqeM2qN1xzybapC8G4wEGGkZwyTDt1v", - "6p6xgHyF7AeE6TZkSmFsko444wqoP15icUSqi2jfGiPN", - "JUPyiwrYJFskUPiHa7hkeR8VUtAeFoSYbKedZNsDvCN", - "7vfCXTUXx5WJV5JADk17DUJ4ksgau7utNKj4b963voxsDx8F8k8k3uYw1PDC", - "3iQL8BFS2vE7mww4ehAqQHAsbmRNCrPxizWAT2Zfyr9y", - "9zNQRsGLjNKwCUU5Gq5LR8beUCPzQMVMqKAi3SSZh54u", - "DezXAZ8z7PnrnRJjz3wXBoRgixCa6xjnB7YaB1pPB263", - "rndrizKT3MK1iimdxRdWabcF7Zg7AR5T4nud4EkHBof", - "21AErpiB8uSb94oQKRcwuHqyHF93njAxBSbdUrpupump", - "pumpCmXqMfrsAkQ5r49WcJnRayYRqmXz6ae8H7H9Dfn" - ], - "isActiveDest": true, - "isActiveSrc": true - } - }, - "bridgeQuoteStatusUpdateEnabled": true, - "priceImpactThreshold": { - "error": 0.25, - "gasless": 0.2, - "normal": 0.05, - "warning": 0.05 - }, - "chainRanking": [ - { - "name": "Ethereum", - "chainId": "eip155:1" - }, - { - "chainId": "eip155:56", - "name": "BNB Chain" - }, - { - "chainId": "bip122:000000000019d6689c085ae165831e93", - "name": "BTC" - }, - { - "chainId": "solana:5eykt4UsFv8P8NJdTREpY1vzqKqZKvdp", - "name": "Solana" - }, - { - "chainId": "tron:728126428", - "name": "Tron" - }, - { - "chainId": "eip155:8453", - "name": "Base" - }, - { - "chainId": "eip155:42161", - "name": "Arbitrum" - }, - { - "name": "Linea", - "chainId": "eip155:59144" - }, - { - "chainId": "eip155:137", - "name": "Polygon" - }, - { - "chainId": "eip155:43114", - "name": "Avalanche" - }, - { - "chainId": "eip155:10", - "name": "Optimism" - }, - { - "chainId": "eip155:143", - "name": "Monad" - }, - { - "chainId": "eip155:1329", - "name": "Sei" - }, - { - "name": "MegaETH", - "chainId": "eip155:4326" - }, - { - "chainId": "eip155:999", - "name": "HyperEVM" - }, - { - "name": "zkSync Era", - "chainId": "eip155:324" - } - ], - "minimumVersion": "0.0.0", - "refreshRate": 30000, - "bip44DefaultPairs": { - "solana": { - "other": {}, - "standard": { - "solana:5eykt4UsFv8P8NJdTREpY1vzqKqZKvdp/slip44:501": "solana:5eykt4UsFv8P8NJdTREpY1vzqKqZKvdp/token:EPjFWdd5AufqSSqeM2qN1xzybapC8G4wEGGkZwyTDt1v" - } - }, - "bip122": { - "other": {}, - "standard": { - "bip122:000000000019d6689c085ae165831e93/slip44:0": "eip155:1/slip44:60" - } - }, - "eip155": { - "other": {}, - "standard": { - "eip155:1/slip44:60": "eip155:1/erc20:0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48" - } - } - }, - "maxRefreshCount": 5, - "support": true, - "stablecoins": [ - "eip155:1/erc20:0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "eip155:1/erc20:0xdac17f958d2ee523a2206206994597c13d831ec7", - "eip155:59144/erc20:0x176211869ca2b568f2a7d4ee941e073a821ee1ff", - "eip155:59144/erc20:0xa219439258ca9da29e9cc4ce5596924745e12b93", - "eip155:137/erc20:0x3c499c542cef5e3811e1192ce70d8cc03d5c3359", - "eip155:137/erc20:0x2791bca1f2de4661ed88a30c99a7a9449aa84174", - "eip155:137/erc20:0xc2132d05d31c914a87c6611c10748aeb04b58e8f", - "eip155:42161/erc20:0xaf88d065e77c8cc2239327c5edb3a432268e5831", - "eip155:42161/erc20:0xff970a61a04b1ca14834a43f5de4533ebddb5cc8", - "eip155:42161/erc20:0xfd086bc7cd5c481dcc9c85ebe478a1c0b69fcbb9", - "eip155:8453/erc20:0x833589fcd6edb6e08f4c7c32d4f71b54bda02913", - "eip155:10/erc20:0x0b2c639c533813f4aa9d7837caf62653d097ff85", - "eip155:10/erc20:0x7f5c764cbc14f9669b88837ca1490cca17c31607", - "eip155:10/erc20:0x94b008aa00579c1307b0ef2c499ad98a8ce58e58", - "eip155:56/erc20:0x8ac76a51cc950d9822d68b83fe1ad97b32cd580d", - "eip155:56/erc20:0x55d398326f99059ff775485246999027b3197955", - "eip155:43114/erc20:0xb97ef9ef8734c71904d8002f8b6bc66dd9c48a6e", - "eip155:43114/erc20:0xa7d7079b0fead91f3e65f86e8915cb59c1a4c664", - "eip155:43114/erc20:0x9702230a8ea53601f5cd2dc00fdbc13d4df4a8c7", - "eip155:43114/erc20:0xc7198437980c041c805a1edcba50c1ce5db95118", - "eip155:324/erc20:0x1d17cbcf0d6d143135ae902365d2e5e2a16538d4", - "eip155:324/erc20:0x3355df6d4c9c3035724fd0e3914de96a5a83aaf4", - "eip155:324/erc20:0x493257fd37edb34451f62edf8d2a0c418852ba4c", - "eip155:1329/erc20:0xe15fc38f6d8c56af07bbcbe3baf5708a2bf42392", - "eip155:4326/erc20:0xb8ce59fc3717ada4c02eadf9682a9e934f625ebb", - "eip155:999/erc20:0xb88339cb7199b77e23db6e890353e22632ba630f" - ] - }, - "carouselBanners": true, - "complianceEnabled": { - "enabled": true, - "minimumVersion": "7.70.0" - }, - "configRegistryApiEnabled": true, - "confirmations_eip_7702": { - "supportedChains": [ - "0x1", - "0x1012", - "0x1079", - "0x13882", - "0x138c5", - "0x138de", - "0x13fb", - "0x14a34", - "0x152", - "0x18c6", - "0x19", - "0x2105", - "0x279f", - "0x27d8", - "0x38", - "0x3909", - "0x515", - "0x530", - "0x531", - "0x61", - "0x64", - "0x66eee", - "0x82", - "0x88bb0", - "0x89", - "0x8f", - "0x92", - "0xa", - "0xa4b1", - "0xa4ba", - "0xa4ec", - "0xa5bf", - "0xaa044c", - "0xaa36a7", - "0xaa37dc", - "0xe708" - ], - "contracts": { - "0x3909": [ - { - "name": "Sonic Testnet", - "signature": "0xc092cc0bcf804f95eb659d281c00586bc72018a242d66fefacdc33a990faf99478c368612277cbbf72aee4a10b7ace6d8666f2c8c4fece9daada40cb360190631b", - "address": "0x63c0c19a282a1B52b07dD5a65b58948A07DAE32B" - } - ], - "0xa4ba": [ - { - "name": "Arbitrum Nova", - "signature": "0x818898e7f90f2f1f47dc7bec74dd683dfcc11efc7025d81f57644d366a3d9e442edb789731045ccb5ba89ee0d84bb517194bb9a097b152922bbd39ffd022ff421c", - "address": "0x63c0c19a282a1B52b07dD5a65b58948A07DAE32B" - } - ], - "0x92": [ - { - "address": "0x63c0c19a282a1B52b07dD5a65b58948A07DAE32B", - "name": "Sonic Mainnet", - "signature": "0x9f2a94332f2b71bff8a772053f47dbb65e26e5286341be0a3c55270d5549351f1dddb7566be0619b0150d42d540b0847cb0acbd0ab118ff608a40a18400834711b" - } - ], - "0x1012": [ - { - "name": "Citrea", - "signature": "0x6818c8c50d25e23dd3810758f3fc45d41c5444bec8fe0983660387414fab00366f6d8a0462b2e8985c16cdff5898d6bf9787e255b1a668d083728b448a5c3f641c", - "address": "0x63c0c19a282a1B52b07dD5a65b58948A07DAE32B" - } - ], - "0x61": [ - { - "signature": "0x80aaf42c70b0b9efdf26e38ced69fce70f6b4f5496e7e59888819c14fb16290301ad049299d99e3650fa1a616a87bb80eb52ae9f02ddd8b53dd6b983275d0eb61b", - "address": "0x63c0c19a282a1B52b07dD5a65b58948A07DAE32B", - "name": "BNB Testnet" - } - ], - "0x19": [ - { - "name": "Cronos", - "signature": "0xa1856ef8c948b0a5204da687d53231848de2a585def9faac05c23c47412615dc476db943010164356b1d2ca8a8a66a8b0ae2d30c11b6b2aaf1cca116f0a333761c", - "address": "0x63c0c19a282a1B52b07dD5a65b58948A07DAE32B" - } - ], - "0x279f": [ - { - "signature": "0x85ec60e9dbac6404b66803b5abace8517ce1325bb6391b7d1ff8ec4433bbe62f4363031873a11ed79364290e196a47830fc36346a9aaf2e44518c1101496983c1b", - "address": "0x63c0c19a282a1B52b07dD5a65b58948A07DAE32B", - "name": "Monad Testnet" - } - ], - "0x2105": [ - { - "name": "Base", - "signature": "0xbdddd2e925cf2cc7e148d3c11b02c917995fba8f3a3dc0b73c0059d029feca88014e723b8a32b2310a60c5b1cc17dfb3ae180b5a39f1d3264f985314b9168e0a1c", - "address": "0x63c0c19a282a1B52b07dD5a65b58948A07DAE32B" - } - ], - "0xa4ec": [ - { - "address": "0x63c0c19a282a1B52b07dD5a65b58948A07DAE32B", - "name": "Celo Mainnet", - "signature": "0x1421ea4d014170a4fc5d0559f267974f4aa095a6e6047b107eff1807afa425774775f796a52a90b767810eade3b5919087bb361651a7b8f4f9679f1f46adb60e1b" - } - ], - "0xe708": [ - { - "name": "Linea", - "signature": "0x8bad472a54f1be8adbcce8badc512045a467d64aa2affce55eb6ecb9b6eda8a142eee478bc99a81580ff52d5daea857eb9e482e457b1e121c0574191e01ec9f21c", - "address": "0x63c0c19a282a1B52b07dD5a65b58948A07DAE32B" - } - ], - "0xa": [ - { - "address": "0x63c0c19a282a1B52b07dD5a65b58948A07DAE32B", - "name": "Optimism", - "signature": "0x60e12ffc04e098bd26a897ed2a974e4e255fc6db3b052fe3a2647372bfbac76f096bf5236510ddc217e12b802e08617cc27292d69ca51b0467ba91c6df74cd7b1c" - } - ], - "0x64": [ - { - "address": "0x63c0c19a282a1B52b07dD5a65b58948A07DAE32B", - "name": "Gnosis", - "signature": "0xd0cfc2959c866e5218faf675f852e0c7021a454064e509d40256c5bec395e300381c19dcbec2e921b2f6d7d9a925a39dee8ea2e8dd8f595633b8dc333d91f1af1b" - } - ], - "0x152": [ - { - "address": "0x63c0c19a282a1B52b07dD5a65b58948A07DAE32B", - "name": "Cronos Testnet", - "signature": "0x8fec0190a311f6ba5dc9df8d76fef3673e6c4081c087f779bca7e3247bb40a5070d393d29c6b268deb3fa231a138b7914b25395cd6dec0fdf4b2b7701975e78b1c" - } - ], - "0x88bb0": [ - { - "name": "Hoodi Testnet", - "signature": "0x23de8eb645a65b08721e5d2194063acead5f5f818474b7884ae767c7aaf9bb9b22233ab92684bc41087f8509e945d96083124ae1919a9357f2ae65267df4f0e21b", - "address": "0x63c0c19a282a1B52b07dD5a65b58948A07DAE32B" - } - ], - "0x13882": [ - { - "address": "0x63c0c19a282a1B52b07dD5a65b58948A07DAE32B", - "name": "Polygon Amoy Testnet", - "signature": "0x472bb78ebb6686ddf0bb2e75265e1f4266cd050f8b498e88f97e9380afd8bfbd169c4d3221ec8845cb81ba7e9ddb7de9b819a15617803e20aee2aaa07664b6c81b" - } - ], - "0x13fb": [ - { - "address": "0x63c0c19a282a1B52b07dD5a65b58948A07DAE32B", - "name": "Citrea Testnet", - "signature": "0xf9e4aa35fc098468212352c2b9662022f9565bd713ca66e634c804f9820b5e0c266d710afba58aed00e5b7e24134dd9b52e2e331076de745137531a6d245a7521b" - } - ], - "0x8f": [ - { - "signature": "0x12d31e58c92cdc29dac8af0405883b3b0ee44156d7fdf5c3c2ffa4138f2461cc20e7f8625431dbd24bb784407d1a1d9bdb75b191a6cf127eac68b67d13bd11e41c", - "address": "0x63c0c19a282a1B52b07dD5a65b58948A07DAE32B", - "name": "Monad" - } - ], - "0xaa37dc": [ - { - "address": "0x63c0c19a282a1B52b07dD5a65b58948A07DAE32B", - "name": "Optimism Sepolia", - "signature": "0xa60cab833af6a8aa2dcc80d5e12d9e1566edb6cdf51c38e7cf43d441dac561007f05643e73e6b00107e18dbf15de98aae14192306276e92d654f62bd7c3023241c" - } - ], - "0x89": [ - { - "name": "Polygon", - "signature": "0x302aa2d59940e88f35d2fa140fe6a1e9dc682218a444a7fb2d88f007fbe7792b2b8d615f5ae1e4f184533a02c47d8ac0f6ba3f591679295dff93c65095c0f03d1b", - "address": "0x63c0c19a282a1B52b07dD5a65b58948A07DAE32B" - } - ], - "0x66eee": [ - { - "address": "0x63c0c19a282a1B52b07dD5a65b58948A07DAE32B", - "name": "Arbitrum Sepolia", - "signature": "0x6fdb53ecf8f575b85ff9895277b1f8e11349970fbb42225fe41587a072bbcef43e8d54303c4e1aa38d44cae9ba2c8bf825e9e138176d6b09a729cd82a14356cf1b" - } - ], - "0x531": [ - { - "name": "Sei", - "signature": "0xde089fc9af662bc4b0f873e4dc79760f6c3539f6f1cf32d9bc46baccf86ebae070a9062436f29ee86d04cc55699b27579f657922a2292ec2f1c5170d587917401b", - "address": "0x63c0c19a282a1B52b07dD5a65b58948A07DAE32B" - } - ], - "0x82": [ - { - "signature": "0x54c423b1af4abbd1fb226e260dddba757acbcd8881e6b55b842c6b839874fa3f0e2f77685389ad5c28e096f12ef22557cebf6a77f6064baa071453a445a4c7d51c", - "address": "0x63c0c19a282a1B52b07dD5a65b58948A07DAE32B", - "name": "Unichain Mainnet" - } - ], - "0x1079": [ - { - "address": "0x63c0c19a282a1B52b07dD5a65b58948A07DAE32B", - "name": "Tempo", - "signature": "0x810496170fb570d0d976c58273ad4a423252bac1f2e10c8a63adbbbfc4e79d2c5d894bae20c28e90a577338e68506138ac6dea142a1e80a31c0c2dd2999efa651b" - } - ], - "0x18c6": [ - { - "address": "0x63c0c19a282a1B52b07dD5a65b58948A07DAE32B", - "name": "MegaEth Testnet", - "signature": "0x6743135a8dfc8f58133d827b4997bc5316c8eb92883d2704a30b1d8a7bf494ce226b523e5f85a681eb5de8349c9564e62d389876d0e5fe5cc06fb9412d9d1cb61b" - } - ], - "0x1": [ - { - "signature": "0xffb37facfedf12f1e98b56203de1c855391b791a20ee361234c546f4b50eb11853283cfc311419049f0325ad0a806ec232cc519073e3b5d4ad59ff331964d2e71b", - "address": "0x63c0c19a282a1B52b07dD5a65b58948A07DAE32B", - "name": "Mainnet" - } - ], - "0x38": [ - { - "address": "0x63c0c19a282a1B52b07dD5a65b58948A07DAE32B", - "name": "BNB", - "signature": "0x28ae371904b3ba71344e426c8de0e2cee0b8529a9510c059b412671655881ad646b8cf544342a5f8e0753eda83221e14e3c9dae5435417401f5fee8ee1d63dce1b" - } - ], - "0xa4b1": [ - { - "signature": "0xc3be82057efec197d92b0cbb7cef9d50dba0345646524687a3ae7235a8fcb1706ba79f197d45fcf4c6cfb5808ef70258c5f6bb29b7e3553a4b9660692eb5e81d1b", - "address": "0x63c0c19a282a1B52b07dD5a65b58948A07DAE32B", - "name": "Arbitrum One" - } - ], - "0xaa36a7": [ - { - "signature": "0x1aba1c0dafadab6663efdd6086764a9b9fa5ab5c002e88ebae85edea162fbc425c398b2b93afdc036503f12361c05a7ff0b409ee523d5277e0b4d0a840679e591c", - "address": "0x63c0c19a282a1B52b07dD5a65b58948A07DAE32B", - "name": "Sepolia - Official" - }, - { - "address": "0xCd8D6C5554e209Fbb0deC797C6293cf7eAE13454", - "name": "Sepolia - Testing", - "signature": "0x016cf109489c415ba28e695eb3cb06ac46689c5c49e2aba101d7ec2f68c890282563b324f5c8df5e0536994451825aa235438b7346e8c18b4e64161d990781891c" - } - ], - "0x515": [ - { - "name": "Unichain Sepolia", - "signature": "0x64487330691a05700a2321ee1db4092adce9590e7aded6e489df024838ecec734c935d182f74883818cb7659d5c784163573afdf8221252fa68d960cbe1c312f1b", - "address": "0x63c0c19a282a1B52b07dD5a65b58948A07DAE32B" - } - ], - "0x530": [ - { - "address": "0x63c0c19a282a1B52b07dD5a65b58948A07DAE32B", - "name": "Sei Testnet", - "signature": "0x91135fcd7bfb9e2456c227ff12905128c3854db36775278d47b96c3c669f730c4063e3a62d94884617769bbad2868f35d725cb3b611d9bd1231bceb5967724711c" - } - ], - "0x138c5": [ - { - "address": "0x63c0c19a282a1B52b07dD5a65b58948A07DAE32B", - "name": "Berachain Testnet", - "signature": "0x66940bcb2c4b95ec2c1c1024fee1e3a8e51c8f072a52a9f0252a793604c8a6ba58ac3153d4dd041873d33eec349450c4a9acd51ddaed117bee448ed7a388208c1b" - } - ], - "0x14a34": [ - { - "address": "0x63c0c19a282a1B52b07dD5a65b58948A07DAE32B", - "name": "Base Sepolia", - "signature": "0xaed94ac035e745629423c547200eb2411fd7194d832a6b4cf459d3e3d34a6b62124e88640a0bf623146bdef63b0ce1c8797bd2a6c8357fab86c8be466744f55d1c" - } - ], - "0xa5bf": [ - { - "signature": "0x2413338e5c47c56853195d1870988d721ec502c78e54fe5b98468a401538b942237a2769461ffbfa8269936bf309243d5b0d69f7114938653469c4d8225715ee1c", - "address": "0x63c0c19a282a1B52b07dD5a65b58948A07DAE32B", - "name": "Tempo Testnet" - } - ], - "0xaa044c": [ - { - "name": "Celo Sepolia", - "signature": "0x1590458cdfa10225e4fe734ed44deec95ac1887c877e63deb5ad35b41025c9ef2f33666cdd2c189b1999a78072ab9f8f122d93a52eaf12687fb2ff5b74d8de9f1c", - "address": "0x63c0c19a282a1B52b07dD5a65b58948A07DAE32B" - } - ], - "0x138de": [ - { - "name": "Berachain", - "signature": "0x2c2037ddedcdfb9b7d8ea7c546259eef371a86b0e3610192eb15ece0114c59d86134791cd9e9df4208bbbdc83776d80b30b1fea6bf1a05bb072575217492497a1b", - "address": "0x63c0c19a282a1B52b07dD5a65b58948A07DAE32B" - } - ], - "0x27d8": [ - { - "address": "0x63c0c19a282a1B52b07dD5a65b58948A07DAE32B", - "name": "Chiado", - "signature": "0x0ff531d6afcc191c3b3bdffc1596d9ce8d1d52fa500ea2097c0823820a66f97963b88b646d4d4edbc0f781127d7985b87132d89c62c3cb4ad42848ce289645fa1b" - } - ] - }, - "dev": true - }, - "confirmations_enforced_simulations": { - "enabled": false, - "slippage": 9.5 - }, - "confirmations_gas_buffer": { - "included": 1.5, - "perChainConfig": { - "0xa4b1": { - "base": 1.2, - "name": "arbitrum" - }, - "0x10e6": { - "name": "megaeth", - "base": 1.3 - }, - "0x18c6": { - "base": 1.3, - "name": "megaeth" - }, - "0x18c7": { - "base": 1.3, - "name": "megaeth" - }, - "0x2105": { - "name": "base", - "eip7702": 1.3 - }, - "0x38": { - "name": "bnb", - "eip7702": 1.3 - }, - "0xa": { - "eip7702": 1.3, - "name": "optimism" - } - }, - "default": 1, - "dev": true - }, - "confirmations_incoming_transactions": { - "useBackendWebSocketService": false, - "pollingIntervalMs": 60000 - }, - "confirmations_pay": { - "slippage": 0.005, - "name": "dev", - "relayQuoteUrl": "https://intents.dev-api.cx.metamask.io/relay/quote" - }, - "confirmations_pay_dapps": { - "enabled": true - }, - "confirmations_pay_extended": { - "payStrategies": { - "relay": { - "gaslessEnabled": true - } - } - }, - "confirmations_pay_post_quote": { - "default": { - "tokens": {}, - "enabled": true - }, - "overrides": { - "perpsWithdraw": { - "enabled": true, - "tokens": { - "0x2105": [ - "0x0000000000000000000000000000000000000000", - "0x833589fCD6eDb6E08f4c7C32D4f71b54bdA02913" - ], - "0x38": [ - "0x0000000000000000000000000000000000000000", - "0x55d398326f99059fF775485246999027B3197955", - "0x8AC76a51cc950d9822D68b83fE1Ad97B32Cd580d" - ], - "0x89": [ - "0x0000000000000000000000000000000000001010", - "0x3c499c542cEF5E3811e1192ce70d8cC03d5c3359", - "0xc2132d05d31c914a87c6611c10748aeb04b58e8f" - ], - "0xa4b1": [ - "0x0000000000000000000000000000000000000000", - "0xaf88d065e77c8cC2239327C5EDb3A432268e5831", - "0xFd086bC7CD5C481DCC9C85ebE478A1C0b69FCbb9" - ], - "0xe708": [ - "0x0000000000000000000000000000000000000000", - "0xacA92E438df0B2401fF60dA7E4337B687a2435DA" - ], - "0x1": [ - "0x0000000000000000000000000000000000000000", - "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", - "0xdAC17F958D2ee523a2206206994597C13D831ec7", - "0xacA92E438df0B2401fF60dA7E4337B687a2435DA", - "0x2260FAC5E5542a773Aa44fBCfeDf7C193bc2C599" - ] - } - } - } - }, - "confirmations_pay_tokens": { - "preferredTokens": { - "overrides": { - "perpsWithdraw": [ - { - "name": "mUSD", - "address": "0xacA92E438df0B2401fF60dA7E4337B687a2435DA", - "chainId": "0x1" - } - ] - }, - "default": {} - } - }, - "confirmations_transactions": { - "gasEstimateFallback": { - "perChainConfig": { - "0x279f": { - "fixed": 1000000 - } - } - }, - "gasFeeRandomisation": { - "randomisedGasFeeDigits": { - "0x2105": 5 - } - }, - "timeoutAttempts": { - "default": 10 - }, - "useWebsockets": true, - "acceleratedPolling": { - "perChainConfig": { - "0x11c3": { - "name": "TRUMPCHAIN", - "blockTime": 250, - "chainId": "4547", - "countMax": 15, - "intervalMs": 500 - }, - "0x27bc86aa": { - "intervalMs": 500, - "name": "DEGEN_CHAIN", - "blockTime": 250, - "chainId": "666666666", - "countMax": 15 - }, - "0x34fb5e38": { - "chainId": "888888888", - "countMax": 10, - "intervalMs": 1300, - "name": "ANXIENT8", - "blockTime": 2000 - }, - "0xb5f": { - "blockTime": 250, - "chainId": "2911", - "countMax": 15, - "intervalMs": 500, - "name": "HYTOPIA" - }, - "0x88b": { - "countMax": 15, - "intervalMs": 500, - "name": "GAME7", - "blockTime": 250, - "chainId": "2187" - }, - "0x88bb0": { - "blockTime": 12000, - "chainId": "560048", - "countMax": 10, - "intervalMs": 3000, - "name": "HOODI" - }, - "0x3e7": { - "intervalMs": 700, - "name": "HYPEREVM", - "blockTime": 1000, - "chainId": "999", - "countMax": 10 - }, - "0x18232": { - "countMax": 10, - "intervalMs": 2000, - "name": "PLUME", - "blockTime": 3000, - "chainId": "98866" - }, - "0x8279": { - "countMax": 15, - "intervalMs": 500, - "name": "SLINGSHOTDAO", - "blockTime": 250, - "chainId": "33401" - }, - "0x9c4401": { - "intervalMs": 500, - "name": "ALIENX_TESTNET", - "blockTime": 250, - "chainId": "10241025", - "countMax": 15 - }, - "0x13f8": { - "chainId": "5112", - "countMax": 10, - "intervalMs": 1300, - "name": "HAM", - "blockTime": 2000 - }, - "0xe35": { - "intervalMs": 3000, - "name": "BOTANIX", - "blockTime": 5667, - "chainId": "3637", - "countMax": 10 - }, - "0xaa36a7": { - "name": "ETHEREUM_SEPOLIA", - "blockTime": 16000, - "chainId": "11155111", - "countMax": 10, - "intervalMs": 3000 - }, - "0x142b6": { - "chainId": "82614", - "countMax": 15, - "intervalMs": 500, - "name": "VEMP", - "blockTime": 250 - }, - "0x15b43": { - "name": "UNITE", - "blockTime": 250, - "chainId": "88899", - "countMax": 15, - "intervalMs": 500 - }, - "0x64": { - "name": "GNOSIS", - "blockTime": 8333, - "chainId": "100", - "countMax": 10, - "intervalMs": 3000 - }, - "0xa3c3": { - "blockTime": 250, - "chainId": "41923", - "countMax": 15, - "intervalMs": 500, - "name": "EDUCHAIN" - }, - "0xbde31": { - "countMax": 15, - "intervalMs": 500, - "name": "WINR", - "blockTime": 250, - "chainId": "777777" - }, - "0x134b3cf": { - "intervalMs": 500, - "name": "DERI", - "blockTime": 250, - "chainId": "20231119", - "countMax": 15 - }, - "0x82750": { - "name": "SCROLL", - "blockTime": 2333, - "chainId": "534352", - "countMax": 10, - "intervalMs": 1600 - }, - "0x7ea": { - "chainId": "2026", - "countMax": 10, - "intervalMs": 1300, - "name": "EDGELESS", - "blockTime": 2000 - }, - "0xa9": { - "intervalMs": 1300, - "name": "MANTA", - "blockTime": 2000, - "chainId": "169", - "countMax": 10 - }, - "0x1388": { - "blockTime": 2000, - "chainId": "5000", - "countMax": 10, - "intervalMs": 1300, - "name": "MANTLE" - }, - "0x813df": { - "blockTime": 250, - "chainId": "529375", - "countMax": 15, - "intervalMs": 500, - "name": "LAYER_K" - }, - "0xa0c71fd": { - "name": "BLAST_SEPOLIA", - "blockTime": 2000, - "chainId": "168587773", - "countMax": 10, - "intervalMs": 1300 - }, - "0x52415249": { - "chainId": "1380012617", - "countMax": 15, - "intervalMs": 500, - "name": "RARIBLE", - "blockTime": 250 - }, - "0x6c1": { - "intervalMs": 500, - "name": "REYA", - "blockTime": 250, - "chainId": "1729", - "countMax": 15 - }, - "0x1": { - "chainId": "1", - "countMax": 10, - "intervalMs": 3000, - "name": "ETHEREUM", - "blockTime": 12000 - }, - "0x13c23": { - "chainId": "80931", - "countMax": 15, - "intervalMs": 500, - "name": "FORTA", - "blockTime": 250 - }, - "0x4268": { - "chainId": "17000", - "countMax": 10, - "intervalMs": 2700, - "name": "ETHEREUM_HOLESKY", - "blockTime": 4000 - }, - "0x13bf8": { - "intervalMs": 500, - "name": "ONYX", - "blockTime": 250, - "chainId": "80888", - "countMax": 15 - }, - "0x128ca": { - "blockTime": 250, - "chainId": "75978", - "countMax": 15, - "intervalMs": 500, - "name": "FUSION" - }, - "0xab5": { - "intervalMs": 500, - "name": "ABSTRACT", - "blockTime": 667, - "chainId": "2741", - "countMax": 15 - }, - "0xb67d2": { - "chainId": "747474", - "countMax": 10, - "intervalMs": 700, - "name": "KATANA", - "blockTime": 1000 - }, - "0xca74": { - "chainId": "51828", - "countMax": 15, - "intervalMs": 500, - "name": "CHAINBOUNTY", - "blockTime": 250 - }, - "0x46f": { - "name": "LISK", - "blockTime": 2000, - "chainId": "1135", - "countMax": 10, - "intervalMs": 1300 - }, - "0xcc": { - "countMax": 10, - "intervalMs": 700, - "name": "OPBNB", - "blockTime": 1000, - "chainId": "204" - }, - "0xe705": { - "blockTime": 2000, - "chainId": "59141", - "countMax": 10, - "intervalMs": 1300, - "name": "LINEA_SEPOLIA" - }, - "0x171": { - "blockTime": 10000, - "chainId": "369", - "countMax": 10, - "intervalMs": 3000, - "name": "PULSECHAIN" - }, - "0x1713c": { - "intervalMs": 500, - "name": "IDEX", - "blockTime": 250, - "chainId": "94524", - "countMax": 15 - }, - "0x28c58": { - "chainId": "167000", - "countMax": 10, - "intervalMs": 3000, - "name": "TAIKO", - "blockTime": 8000 - }, - "0x28c61": { - "chainId": "167009", - "countMax": 10, - "intervalMs": 2700, - "name": "TAIKO_HEKLA", - "blockTime": 4000 - }, - "0x3023": { - "chainId": "12323", - "countMax": 15, - "intervalMs": 500, - "name": "HUDDLE01", - "blockTime": 250 - }, - "0x2105": { - "countMax": 10, - "intervalMs": 1300, - "name": "BASE", - "blockTime": 2000, - "chainId": "8453" - }, - "0x8173": { - "chainId": "33139", - "countMax": 15, - "intervalMs": 500, - "name": "APECHAIN", - "blockTime": 250 - }, - "0x1142d": { - "blockTime": 250, - "chainId": "70701", - "countMax": 15, - "intervalMs": 500, - "name": "PROOF_OF_PLAY_BOSS" - }, - "0x2ba": { - "name": "MATCHAIN", - "blockTime": 2000, - "chainId": "698", - "countMax": 10, - "intervalMs": 1300 - }, - "0x13e31": { - "chainId": "81457", - "countMax": 10, - "intervalMs": 1300, - "name": "BLAST", - "blockTime": 2000 - }, - "0xe49b1": { - "chainId": "936369", - "countMax": 15, - "intervalMs": 500, - "name": "LOGX", - "blockTime": 250 - }, - "0x2eb": { - "blockTime": 667, - "chainId": "747", - "countMax": 15, - "intervalMs": 500, - "name": "FLOW" - }, - "0xb9": { - "blockTime": 2000, - "chainId": "185", - "countMax": 10, - "intervalMs": 1300, - "name": "MINT" - }, - "0x42af": { - "blockTime": 250, - "chainId": "17071", - "countMax": 15, - "intervalMs": 500, - "name": "ONCHAIN_POINTS" - }, - "0x38": { - "chainId": "56", - "countMax": 10, - "intervalMs": 700, - "name": "BNB", - "blockTime": 1000 - }, - "0x99797f": { - "chainId": "10058111", - "countMax": 15, - "intervalMs": 500, - "name": "SPOTLIGHT", - "blockTime": 250 - }, - "0x1b59": { - "blockTime": 3667, - "chainId": "7001", - "countMax": 10, - "intervalMs": 2400, - "name": "ZETACHAIN_TESTNET" - }, - "0x14a34": { - "chainId": "84532", - "countMax": 15, - "intervalMs": 500, - "name": "BASE_SEPOLIA_TESTNET", - "blockTime": 250 - }, - "0x98967f": { - "intervalMs": 500, - "name": "FLUENCE", - "blockTime": 250, - "chainId": "9999999", - "countMax": 15 - }, - "0x2f0": { - "blockTime": 250, - "chainId": "752", - "countMax": 15, - "intervalMs": 500, - "name": "RIVALZ" - }, - "0x2780b": { - "blockTime": 250, - "chainId": "161803", - "countMax": 15, - "intervalMs": 500, - "name": "EVENTUM" - }, - "0xa": { - "countMax": 10, - "intervalMs": 1300, - "name": "OPTIMISM", - "blockTime": 2000, - "chainId": "10" - }, - "0x279f": { - "chainId": "10143", - "countMax": 15, - "intervalMs": 500, - "name": "MONAD_TESTNET", - "blockTime": 500 - }, - "0x515": { - "blockTime": 2000, - "chainId": "1301", - "countMax": 10, - "intervalMs": 1300, - "name": "UNICHAIN_SEPOLIA" - }, - "0x138de": { - "chainId": "80094", - "countMax": 10, - "intervalMs": 1300, - "name": "BERACHAIN", - "blockTime": 2000 - }, - "0x61": { - "chainId": "97", - "countMax": 15, - "intervalMs": 500, - "name": "BNB_TESTNET", - "blockTime": 667 - }, - "0x32": { - "name": "XDC", - "blockTime": 2000, - "chainId": "50", - "countMax": 10, - "intervalMs": 1300 - }, - "0x8f": { - "chainId": "143", - "countMax": 15, - "intervalMs": 500, - "name": "MONAD", - "blockTime": 500 - }, - "0xa33fc": { - "blockTime": 250, - "chainId": "668668", - "countMax": 15, - "intervalMs": 500, - "name": "CONWAI" - }, - "0xa1ef": { - "name": "ALEPH_ZERO", - "blockTime": 250, - "chainId": "41455", - "countMax": 15, - "intervalMs": 500 - }, - "0x15eb": { - "intervalMs": 700, - "name": "OPBNB_TESTNET", - "blockTime": 1000, - "chainId": "5611", - "countMax": 10 - }, - "0xd7cc": { - "chainId": "55244", - "countMax": 15, - "intervalMs": 500, - "name": "SUPERPOSITION", - "blockTime": 250 - }, - "0x2a": { - "countMax": 10, - "intervalMs": 2700, - "name": "LUKSO", - "blockTime": 4000, - "chainId": "42" - }, - "0xe708": { - "blockTime": 2000, - "chainId": "59144", - "countMax": 10, - "intervalMs": 1300, - "name": "LINEA" - }, - "0xb1c9": { - "chainId": "45513", - "countMax": 15, - "intervalMs": 500, - "name": "BLESSNET", - "blockTime": 250 - }, - "0x62ef": { - "intervalMs": 500, - "name": "EVERCLEAR", - "blockTime": 250, - "chainId": "25327", - "countMax": 15 - }, - "0x16fd8": { - "countMax": 15, - "intervalMs": 500, - "name": "LUMITERRA", - "blockTime": 250, - "chainId": "94168" - }, - "0xe34": { - "blockTime": 6000, - "chainId": "3636", - "countMax": 10, - "intervalMs": 3000, - "name": "BOTANIX_TESTNET" - }, - "0x123": { - "blockTime": 2000, - "chainId": "291", - "countMax": 10, - "intervalMs": 1300, - "name": "ORDERLY" - }, - "0x144": { - "chainId": "324", - "countMax": 10, - "intervalMs": 700, - "name": "ZKSYNC", - "blockTime": 1000 - }, - "0x13881": { - "name": "POLYGON_MUMBAI", - "blockTime": 2000, - "chainId": "80001", - "countMax": 10, - "intervalMs": 1300 - }, - "0x1142c": { - "chainId": "70700", - "countMax": 15, - "intervalMs": 500, - "name": "PROOF_OF_PLAY_APEX", - "blockTime": 250 - }, - "0xa86a": { - "chainId": "43114", - "countMax": 10, - "intervalMs": 900, - "name": "AVALANCHE", - "blockTime": 1333 - }, - "0x1331": { - "countMax": 15, - "intervalMs": 500, - "name": "API3", - "blockTime": 250, - "chainId": "4913" - }, - "0x2b2": { - "countMax": 10, - "intervalMs": 1300, - "name": "REDSTONE", - "blockTime": 2000, - "chainId": "690" - }, - "0x9c4400": { - "intervalMs": 500, - "name": "ALIENX", - "blockTime": 250, - "chainId": "10241024", - "countMax": 15 - }, - "0x15a9": { - "countMax": 15, - "intervalMs": 500, - "name": "DUCK", - "blockTime": 250, - "chainId": "5545" - }, - "0x1b58": { - "intervalMs": 2400, - "name": "ZETACHAIN", - "blockTime": 3667, - "chainId": "7000", - "countMax": 10 - }, - "0x82": { - "blockTime": 2000, - "chainId": "130", - "countMax": 10, - "intervalMs": 1300, - "name": "UNICHAIN" - }, - "0x531": { - "countMax": 15, - "intervalMs": 500, - "name": "SEI", - "blockTime": 667, - "chainId": "1329" - }, - "0x868b": { - "countMax": 10, - "intervalMs": 1300, - "name": "MODE", - "blockTime": 2000, - "chainId": "34443" - }, - "0xe8": { - "name": "LENS", - "blockTime": 27333, - "chainId": "232", - "countMax": 10, - "intervalMs": 3000 - }, - "0x725": { - "chainId": "1829", - "countMax": 15, - "intervalMs": 500, - "name": "PLAYBLOCK", - "blockTime": 250 - }, - "0x316b8": { - "intervalMs": 500, - "name": "BLOCKFIT", - "blockTime": 250, - "chainId": "202424", - "countMax": 15 - }, - "0xc350": { - "name": "CITRONUS", - "blockTime": 250, - "chainId": "50000", - "countMax": 15, - "intervalMs": 500 - }, - "0x163e7": { - "name": "HENEZ", - "blockTime": 250, - "chainId": "91111", - "countMax": 15, - "intervalMs": 500 - }, - "0x7cc": { - "chainId": "1996", - "countMax": 15, - "intervalMs": 500, - "name": "SANKO", - "blockTime": 250 - }, - "0x74c": { - "blockTime": 2000, - "chainId": "1868", - "countMax": 10, - "intervalMs": 1300, - "name": "SONEIUM" - }, - "0xa4b1": { - "blockTime": 250, - "chainId": "42161", - "countMax": 15, - "intervalMs": 500, - "name": "ARBITRUM_ONE" - }, - "0xe4": { - "countMax": 15, - "intervalMs": 500, - "name": "MIND", - "blockTime": 250, - "chainId": "228" - }, - "0x9dd": { - "intervalMs": 500, - "name": "INEVM", - "blockTime": 250, - "chainId": "2525", - "countMax": 15 - }, - "0x1042": { - "countMax": 15, - "intervalMs": 500, - "name": "SX_ROLLUP", - "blockTime": 250, - "chainId": "4162" - }, - "0xd0d0": { - "blockTime": 250, - "chainId": "53456", - "countMax": 15, - "intervalMs": 500, - "name": "DODO" - }, - "0x76adf1": { - "intervalMs": 1300, - "name": "ZORA", - "blockTime": 2000, - "chainId": "7777777", - "countMax": 10 - }, - "0x659": { - "blockTime": 250, - "chainId": "1625", - "countMax": 15, - "intervalMs": 500, - "name": "GRAVITY" - }, - "0xfee": { - "countMax": 15, - "intervalMs": 500, - "name": "COMETH", - "blockTime": 250, - "chainId": "4078" - }, - "0x343b": { - "name": "IMMUTABLE", - "blockTime": 2000, - "chainId": "13371", - "countMax": 10, - "intervalMs": 1300 - }, - "0x13882": { - "countMax": 10, - "intervalMs": 1300, - "name": "POLYGON_AMOY", - "blockTime": 2000, - "chainId": "80002" - }, - "0x2272": { - "name": "CLINK", - "blockTime": 250, - "chainId": "8818", - "countMax": 15, - "intervalMs": 500 - }, - "0xa1337": { - "blockTime": 250, - "chainId": "660279", - "countMax": 15, - "intervalMs": 500, - "name": "XAI" - }, - "0x18c6": { - "countMax": 10, - "intervalMs": 2700, - "name": "MEGAETH_TESTNET", - "blockTime": 4000, - "chainId": "6342" - }, - "0x89": { - "intervalMs": 1300, - "name": "POLYGON", - "blockTime": 2000, - "chainId": "137", - "countMax": 10 - }, - "0xf4290": { - "name": "SCOREKOUNT", - "blockTime": 250, - "chainId": "1000080", - "countMax": 15, - "intervalMs": 500 - }, - "0x1ecf": { - "name": "KINTO", - "blockTime": 250, - "chainId": "7887", - "countMax": 15, - "intervalMs": 500 - }, - "0x18c7": { - "blockTime": 4000, - "chainId": "6343", - "countMax": 10, - "intervalMs": 2700, - "name": "MEGAETH_TESTNET" - }, - "0x5d979": { - "intervalMs": 500, - "name": "CHEESE", - "blockTime": 250, - "chainId": "383353", - "countMax": 15 - }, - "0xaa37dc": { - "countMax": 10, - "intervalMs": 1300, - "name": "OPTIMISM_SEPOLIA", - "blockTime": 2000, - "chainId": "11155420" - }, - "0x16876": { - "name": "MIRACLE", - "blockTime": 250, - "chainId": "92278", - "countMax": 15, - "intervalMs": 500 - }, - "0x19": { - "chainId": "25", - "countMax": 15, - "intervalMs": 500, - "name": "CRONOS", - "blockTime": 667 - }, - "0xa867": { - "countMax": 10, - "intervalMs": 800, - "name": "HEMI", - "blockTime": 1200, - "chainId": "43111" - }, - "0x8274f": { - "blockTime": 3333, - "chainId": "534351", - "countMax": 10, - "intervalMs": 2200, - "name": "SCROLL_SEPOLIA" - }, - "0x1406f40": { - "chainId": "21000000", - "countMax": 15, - "intervalMs": 500, - "name": "CORN", - "blockTime": 250 - }, - "0x34a1": { - "name": "IMMUTABLE_TESTNET", - "blockTime": 2000, - "chainId": "13473", - "countMax": 10, - "intervalMs": 1300 - }, - "0x1b254": { - "name": "REAL", - "blockTime": 250, - "chainId": "111188", - "countMax": 15, - "intervalMs": 500 - }, - "0xfc": { - "blockTime": 2000, - "chainId": "252", - "countMax": 10, - "intervalMs": 1300, - "name": "FRAXTAL" - }, - "0xfa": { - "blockTime": 4000, - "chainId": "250", - "countMax": 10, - "intervalMs": 2700, - "name": "FANTOM" - }, - "0x13a43": { - "name": "GEO_GENESIS", - "blockTime": 250, - "chainId": "80451", - "countMax": 15, - "intervalMs": 500 - }, - "0x6f0": { - "blockTime": 667, - "chainId": "1776", - "countMax": 15, - "intervalMs": 500, - "name": "INJECTIVE" - }, - "0x3bd": { - "countMax": 10, - "intervalMs": 1300, - "name": "LYRA", - "blockTime": 2000, - "chainId": "957" - }, - "0x974": { - "blockTime": 250, - "chainId": "2420", - "countMax": 15, - "intervalMs": 500, - "name": "DOGELON" - }, - "0xa6": { - "name": "OMNI", - "blockTime": 1333, - "chainId": "166", - "countMax": 10, - "intervalMs": 900 - }, - "0x7c5": { - "countMax": 15, - "intervalMs": 500, - "name": "LYDIA", - "blockTime": 250, - "chainId": "1989" - }, - "0x2611": { - "intervalMs": 700, - "name": "PLASMA", - "blockTime": 1000, - "chainId": "9745", - "countMax": 10 - }, - "0xa4ba": { - "countMax": 15, - "intervalMs": 500, - "name": "ARBITRUM_NOVA", - "blockTime": 250, - "chainId": "42170" - }, - "0x13a": { - "countMax": 10, - "intervalMs": 3000, - "name": "FILECOIN", - "blockTime": 30000, - "chainId": "314" - } - }, - "defaultCountMax": 10, - "defaultIntervalMs": 3000 - }, - "batchSizeLimit": 10, - "dev": true - }, - "contentfulCarouselEnabled": true, - "coreExtensionUxCeux1024AbtestReferralUi": { - "name": "treatment" - }, - "dappSwapMetrics": { - "bridge_quote_fees": 250, - "enabled": true, - "origins": ["https://app.uniswap.org", "https://metamask.github.io"] - }, - "dappSwapQa": { - "enabled": true - }, - "dappSwapUi": { - "enabled": true, - "threshold": 0.01 - }, - "earnMerklCampaignClaiming": { - "enabled": true, - "minimumVersion": "13.23.0" - }, - "earnMusdConversionAssetOverviewCtaEnabled": { - "enabled": true, - "minimumVersion": "13.23.0" - }, - "earnMusdConversionCtaTokens": { - "0x1": ["USDC", "USDT", "DAI"], - "0xe708": ["USDC", "USDT", "DAI"] - }, - "earnMusdConversionFlowEnabled": { - "enabled": true, - "minimumVersion": "13.23.0" - }, - "earnMusdConversionGeoBlockedCountries": { - "blockedRegions": ["GB"] - }, - "earnMusdConversionMinAssetBalanceRequired": 0.01, - "earnMusdConversionTokenListItemCtaEnabled": { - "minimumVersion": "13.23.0", - "enabled": true - }, - "earnMusdConvertibleTokensAllowlist": { - "0x1": ["USDC", "USDT", "DAI"], - "0xe708": ["USDC", "USDT", "DAI"] - }, - "earnMusdConvertibleTokensBlocklist": {}, - "earnMusdCtaEnabled": { - "enabled": true, - "minimumVersion": "13.23.0" - }, - "enableMultichainAccounts": { - "featureVersion": "1", - "minimumVersion": "13.0.0", - "enabled": true - }, - "enableMultichainAccountsState2": { - "enabled": true, - "featureVersion": "2", - "minimumVersion": "13.5.0" - }, - "enabledAdvancedPermissions": { - "permissions": [ - "native-token-stream", - "native-token-periodic", - "erc20-token-stream", - "erc20-token-periodic", - "erc20-token-revocation", - "native-token-allowance", - "erc20-token-allowance", - "token-approval-revocation" - ] - }, - "extensionPlatformAutoReloadAfterUpdate": true, - "extensionSignedDeepLinkWarningEnabled": { - "name": "Warning enabled", - "value": true - }, - "extensionUpdatePromptMinimumVersion": "12.18.0", - "extensionUxDefaultAddressVersioned": { - "enabled": true, - "minimumVersion": "13.28.0" - }, - "extensionUxDefiReferral": true, - "extensionUxDefiReferralPartners": { - "hyperliquid": true, - "asterdex": true, - "gmx": true - }, - "extensionUxPna25": true, - "extensionUxSidepanel": false, - "extensionUxTokenManagementFilter": { - "minimumVersion": "13.33.0", - "enabled": true - }, - "extensionSkipTransactionStatusPage": { - "minimumVersion": "13.31.0", - "enabled": true - }, - "extensionTransactionLabels": true, - "gasFeesSponsoredNetwork": { - "0x38": false, - "0x531": true, - "0x8f": true - }, - "isSolanaBuyable": false, - "neNetworkDiscoverButton": { - "0x531": true, - "0x8f": false, - "0xe708": true, - "solana:5eykt4UsFv8P8NJdTREpY1vzqKqZKvdp": true, - "tron:728126428": true - }, - "nonZeroUnusedApprovals": [ - "https://aerodrome.finance", - "https://www.aerodrome.finance", - "https://app.bio.xyz", - "https://app.ethena.fi", - "https://app.euler.finance", - "https://app.rocketx.exchange", - "https://app.seer.pm", - "https://app.sky.money", - "https://app.spark.fi", - "https://app.tea-fi.com", - "https://app.uniswap.org", - "https://bridge.gravity.xyz", - "https://dev-relay-sdk.vercel.app", - "https://evm.ekubo.org", - "https://flaunch.gg", - "https://fluid.io", - "https://flyingtulip.com", - "https://jumper.exchange", - "https://jumper.xyz", - "https://linea.build", - "https://pancakeswap.finance", - "https://privacypools.com", - "https://relay.link", - "https://revoke.cash", - "https://staging.relay.link", - "https://superbridge.app", - "https://swap.defillama.com", - "https://toros.finance", - "https://velodrome.finance", - "https://walletstats.io", - "https://www.bungee.exchange", - "https://www.dev.relay.link", - "https://www.fxhash.xyz", - "https://www.hydrex.fi", - "https://www.relay.link", - "https://yearn.fi", - "https://app.teller.org", - "https://kalshi.com", - "https://app.carbondefi.xyz", - "https://celo.carbondefi.xyz", - "https://sei.carbondefi.xyz", - "https://matcha.xyz", - "https://app.trysweep.finance" - ], - "perpsEnabled": true, - "perpsEnabledVersion": { - "enabled": true, - "minimumVersion": "13.30.0" - }, - "perpsHip3AllowlistMarkets": "", - "perpsHip3BlocklistMarkets": "", - "perpsPerpTradingGeoBlockedCountriesV2": { - "blockedRegions": [] - }, - "platformSplitStateGradualRollout": { - "name": "feature is OFF", - "value": { - "enabled": 0, - "maxAccounts": 0, - "maxNetworks": 0 - } - }, - "rewardsBitcoinEnabledExtension": false, - "rewardsEnabled": { - "minimumVersion": "13.32.0", - "enabled": true - }, - "rewardsOnboardingEnabled": { - "enabled": false, - "minimumVersion": "0.0.0" - }, - "rewardsTronEnabledExtension": false, - "rwaTokensEnabled": true, - "sendRedesign": { - "enabled": true - }, - "settingsRedesign": false, - "smartTransactionsNetworks": { - "0x2105": { - "extensionActive": true, - "gaslessBridgeWith7702Enabled": true, - "sentinelUrl": "https://tx-sentinel-base-mainnet.api.cx.metamask.io" - }, - "0x8f": { - "sentinelUrl": "https://tx-sentinel-monad-mainnet.api.cx.metamask.io", - "extensionActive": false - }, - "0x89": { - "extensionActive": true, - "gaslessBridgeWith7702Enabled": true, - "sentinelUrl": "https://tx-sentinel-polygon-mainnet.api.cx.metamask.io" - }, - "default": { - "extensionActive": false, - "extensionReturnTxHashAsapBatch": true, - "variation": "dev", - "extensionReturnTxHashAsap": true, - "expectedDeadline": 45, - "batchStatusPollingInterval": 1000, - "extensionSkipSmartTransactionStatusPage": false, - "gaslessBridgeWith7702Enabled": false, - "maxDeadline": 150 - }, - "0xa4b1": { - "extensionActive": true, - "gaslessBridgeWith7702Enabled": true, - "sentinelUrl": "https://tx-sentinel-arbitrum-mainnet.api.cx.metamask.io" - }, - "0xe708": { - "sentinelUrl": "https://tx-sentinel-linea-mainnet.api.cx.metamask.io", - "extensionActive": true, - "gaslessBridgeWith7702Enabled": true - }, - "0x38": { - "extensionActive": true, - "gaslessBridgeWith7702Enabled": false, - "sentinelUrl": "https://tx-sentinel-bsc-mainnet.api.cx.metamask.io" - }, - "0x1": { - "maxDeadline": 160, - "sentinelUrl": "https://tx-sentinel-ethereum-mainnet.api.cx.metamask.io", - "expectedDeadline": 45, - "extensionActive": true, - "gaslessBridgeWith7702Enabled": false - }, - "0xa": { - "extensionActive": false, - "sentinelUrl": "https://tx-sentinel-optimism-mainnet.api.cx.metamask.io" - }, - "0x144": { - "extensionActive": false, - "sentinelUrl": "https://tx-sentinel-zksync-mainnet.api.cx.metamask.io" - }, - "0x531": { - "sentinelUrl": "https://tx-sentinel-sei-mainnet.api.cx.metamask.io", - "extensionActive": false - }, - "0xa86a": { - "extensionActive": false, - "sentinelUrl": "https://tx-sentinel-avalanche-mainnet.api.cx.metamask.io" - } - }, - "solanaCardEnabled": false, - "solanaTestnetsEnabled": false, - "staticAssetsPollingOptions": { - "cacheExpirationTime": 3600000, - "interval": 10800000, - "occurrenceFloor": {}, - "supportedChains": ["0x10e6"], - "topX": 5 - }, - "stellarAccounts": { - "minimumVersion": "0.0.1", - "enabled": true - }, - "stxMigrationBatchStatus": { - "name": "sentinel on", - "value": true - }, - "stxMigrationCancel": { - "name": "sentinel on", - "value": true - }, - "stxMigrationGetFees": { - "name": "sentinel on", - "value": true - }, - "stxMigrationSubmitTransactions": { - "name": "sentinel on", - "value": true - }, - "tempoConfig": { - "enabled": true, - "perChainConfig": { - "0x1079": { - "enabled": true, - "defaultFeeToken": "0x20c0000000000000000000000000000000000000" - }, - "0x89": { - "defaultFeeToken": "0x20c0000000000000000000000000000000000000", - "enabled": true - }, - "0xa5bf": { - "defaultFeeToken": "0x20c0000000000000000000000000000000000000", - "enabled": true - } - } - }, - "tronAccounts": { - "enabled": true, - "minimumVersion": "13.13.2" - }, - "walletFrameworkRpcFailoverEnabled": true - }, - "localOverrides": {}, - "rawRemoteFeatureFlags": { - "addBitcoinAccount": false, - "addBitcoinAccountDummyFlag": false, - "addSolanaAccount": true, - "additionalNetworksBlacklist": [], - "assetsAccountApiBalances": [ - "0x1", - "0xe708", - "0x38", - "0x89", - "0x2105", - "0xa", - "0xa4b1" - ], - "assetsDefiPositionsEnabled": true, - "assetsEnableNotificationsByDefault": true, - "assetsEnableNotificationsByDefaultV2": [ - { - "scope": { - "value": 1, - "type": "threshold" - }, - "value": true, - "name": "feature is ON" - }, - { - "value": false, - "name": "feature is OFF", - "scope": { - "type": "threshold", - "value": 0 - } - } - ], - "assetsUnifyState": { - "versions": { - "13.32.0": { - "enabled": true, - "featureVersion": "1", - "minimumVersion": "13.32.0" - }, - "13.15.0": { - "minimumVersion": null, - "enabled": false, - "featureVersion": null - } - } - }, - "backendWebSocketConnection": [ - { - "value": true, - "name": "feature is ON", - "scope": { - "type": "threshold", - "value": 1 - } - }, - { - "scope": { - "type": "threshold", - "value": 0 - }, - "value": false, - "name": "feature is OFF" - } - ], - "bitcoinAccounts": { - "minimumVersion": "13.9.0", - "enabled": true - }, - "bitcoinTestnetsEnabled": false, - "bridgeConfig": { - "sse": { - "enabled": true, - "minimumVersion": "13.9.0" - }, - "chains": { - "1": { - "isSingleSwapBridgeButtonEnabled": true, - "noFeeAssets": [], - "topAssets": ["0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48"], - "batchSellDestStablecoins": [ - "eip155:1/erc20:0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48" - ], - "isActiveDest": true, - "isActiveSrc": true, - "isGaslessSwapEnabled": true - }, - "10": { - "isActiveDest": true, - "isActiveSrc": true, - "isSingleSwapBridgeButtonEnabled": true - }, - "56": { - "isActiveDest": true, - "isActiveSrc": true, - "isGaslessSwapEnabled": true, - "isSingleSwapBridgeButtonEnabled": true - }, - "137": { - "isActiveSrc": true, - "isSingleSwapBridgeButtonEnabled": true, - "isActiveDest": true - }, - "143": { - "isActiveSrc": true, - "isSingleSwapBridgeButtonEnabled": true, - "isActiveDest": true - }, - "324": { - "isActiveSrc": true, - "isSingleSwapBridgeButtonEnabled": true, - "isActiveDest": true - }, - "999": { - "isActiveDest": true, - "isActiveSrc": true, - "isSingleSwapBridgeButtonEnabled": true - }, - "1329": { - "isActiveDest": true, - "isActiveSrc": true, - "isSingleSwapBridgeButtonEnabled": true - }, - "4326": { - "isActiveDest": true, - "isActiveSrc": true, - "isSingleSwapBridgeButtonEnabled": true - }, - "8453": { - "isActiveSrc": true, - "isGaslessSwapEnabled": true, - "isSingleSwapBridgeButtonEnabled": true, - "isActiveDest": true - }, - "42161": { - "isSingleSwapBridgeButtonEnabled": true, - "isActiveDest": true, - "isActiveSrc": true - }, - "43114": { - "isActiveDest": true, - "isActiveSrc": true, - "isSingleSwapBridgeButtonEnabled": true - }, - "59144": { - "isSingleSwapBridgeButtonEnabled": true, - "noFeeAssets": [], - "topAssets": ["0x176211869ca2b568f2a7d4ee941e073a821ee1ff"], - "isActiveDest": true, - "isActiveSrc": true, - "isGaslessSwapEnabled": true - }, - "728126428": { - "isSingleSwapBridgeButtonEnabled": true, - "isActiveDest": true, - "isActiveSrc": true - }, - "20000000000001": { - "isActiveDest": true, - "isActiveSrc": true, - "isSingleSwapBridgeButtonEnabled": true - }, - "1151111081099710": { - "isSingleSwapBridgeButtonEnabled": true, - "isSnapConfirmationEnabled": true, - "refreshRate": 10000, - "topAssets": [ - "EPjFWdd5AufqSSqeM2qN1xzybapC8G4wEGGkZwyTDt1v", - "6p6xgHyF7AeE6TZkSmFsko444wqoP15icUSqi2jfGiPN", - "JUPyiwrYJFskUPiHa7hkeR8VUtAeFoSYbKedZNsDvCN", - "7vfCXTUXx5WJV5JADk17DUJ4ksgau7utNKj4b963voxsDx8F8k8k3uYw1PDC", - "3iQL8BFS2vE7mww4ehAqQHAsbmRNCrPxizWAT2Zfyr9y", - "9zNQRsGLjNKwCUU5Gq5LR8beUCPzQMVMqKAi3SSZh54u", - "DezXAZ8z7PnrnRJjz3wXBoRgixCa6xjnB7YaB1pPB263", - "rndrizKT3MK1iimdxRdWabcF7Zg7AR5T4nud4EkHBof", - "21AErpiB8uSb94oQKRcwuHqyHF93njAxBSbdUrpupump", - "pumpCmXqMfrsAkQ5r49WcJnRayYRqmXz6ae8H7H9Dfn" - ], - "isActiveDest": true, - "isActiveSrc": true - } - }, - "bridgeQuoteStatusUpdateEnabled": true, - "priceImpactThreshold": { - "error": 0.25, - "gasless": 0.2, - "normal": 0.05, - "warning": 0.05 - }, - "chainRanking": [ - { - "name": "Ethereum", - "chainId": "eip155:1" - }, - { - "chainId": "eip155:56", - "name": "BNB Chain" - }, - { - "chainId": "bip122:000000000019d6689c085ae165831e93", - "name": "BTC" - }, - { - "chainId": "solana:5eykt4UsFv8P8NJdTREpY1vzqKqZKvdp", - "name": "Solana" - }, - { - "chainId": "tron:728126428", - "name": "Tron" - }, - { - "chainId": "eip155:8453", - "name": "Base" - }, - { - "chainId": "eip155:42161", - "name": "Arbitrum" - }, - { - "name": "Linea", - "chainId": "eip155:59144" - }, - { - "chainId": "eip155:137", - "name": "Polygon" - }, - { - "chainId": "eip155:43114", - "name": "Avalanche" - }, - { - "chainId": "eip155:10", - "name": "Optimism" - }, - { - "chainId": "eip155:143", - "name": "Monad" - }, - { - "chainId": "eip155:1329", - "name": "Sei" - }, - { - "name": "MegaETH", - "chainId": "eip155:4326" - }, - { - "chainId": "eip155:999", - "name": "HyperEVM" - }, - { - "name": "zkSync Era", - "chainId": "eip155:324" - } - ], - "minimumVersion": "0.0.0", - "refreshRate": 30000, - "bip44DefaultPairs": { - "solana": { - "other": {}, - "standard": { - "solana:5eykt4UsFv8P8NJdTREpY1vzqKqZKvdp/slip44:501": "solana:5eykt4UsFv8P8NJdTREpY1vzqKqZKvdp/token:EPjFWdd5AufqSSqeM2qN1xzybapC8G4wEGGkZwyTDt1v" - } - }, - "bip122": { - "other": {}, - "standard": { - "bip122:000000000019d6689c085ae165831e93/slip44:0": "eip155:1/slip44:60" - } - }, - "eip155": { - "other": {}, - "standard": { - "eip155:1/slip44:60": "eip155:1/erc20:0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48" - } - } - }, - "maxRefreshCount": 5, - "support": true, - "stablecoins": [ - "eip155:1/erc20:0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "eip155:1/erc20:0xdac17f958d2ee523a2206206994597c13d831ec7", - "eip155:59144/erc20:0x176211869ca2b568f2a7d4ee941e073a821ee1ff", - "eip155:59144/erc20:0xa219439258ca9da29e9cc4ce5596924745e12b93", - "eip155:137/erc20:0x3c499c542cef5e3811e1192ce70d8cc03d5c3359", - "eip155:137/erc20:0x2791bca1f2de4661ed88a30c99a7a9449aa84174", - "eip155:137/erc20:0xc2132d05d31c914a87c6611c10748aeb04b58e8f", - "eip155:42161/erc20:0xaf88d065e77c8cc2239327c5edb3a432268e5831", - "eip155:42161/erc20:0xff970a61a04b1ca14834a43f5de4533ebddb5cc8", - "eip155:42161/erc20:0xfd086bc7cd5c481dcc9c85ebe478a1c0b69fcbb9", - "eip155:8453/erc20:0x833589fcd6edb6e08f4c7c32d4f71b54bda02913", - "eip155:10/erc20:0x0b2c639c533813f4aa9d7837caf62653d097ff85", - "eip155:10/erc20:0x7f5c764cbc14f9669b88837ca1490cca17c31607", - "eip155:10/erc20:0x94b008aa00579c1307b0ef2c499ad98a8ce58e58", - "eip155:56/erc20:0x8ac76a51cc950d9822d68b83fe1ad97b32cd580d", - "eip155:56/erc20:0x55d398326f99059ff775485246999027b3197955", - "eip155:43114/erc20:0xb97ef9ef8734c71904d8002f8b6bc66dd9c48a6e", - "eip155:43114/erc20:0xa7d7079b0fead91f3e65f86e8915cb59c1a4c664", - "eip155:43114/erc20:0x9702230a8ea53601f5cd2dc00fdbc13d4df4a8c7", - "eip155:43114/erc20:0xc7198437980c041c805a1edcba50c1ce5db95118", - "eip155:324/erc20:0x1d17cbcf0d6d143135ae902365d2e5e2a16538d4", - "eip155:324/erc20:0x3355df6d4c9c3035724fd0e3914de96a5a83aaf4", - "eip155:324/erc20:0x493257fd37edb34451f62edf8d2a0c418852ba4c", - "eip155:1329/erc20:0xe15fc38f6d8c56af07bbcbe3baf5708a2bf42392", - "eip155:4326/erc20:0xb8ce59fc3717ada4c02eadf9682a9e934f625ebb", - "eip155:999/erc20:0xb88339cb7199b77e23db6e890353e22632ba630f" - ] - }, - "carouselBanners": true, - "complianceEnabled": { - "enabled": true, - "minimumVersion": "7.70.0" - }, - "configRegistryApiEnabled": true, - "confirmations_eip_7702": { - "supportedChains": [ - "0x1", - "0x1012", - "0x1079", - "0x13882", - "0x138c5", - "0x138de", - "0x13fb", - "0x14a34", - "0x152", - "0x18c6", - "0x19", - "0x2105", - "0x279f", - "0x27d8", - "0x38", - "0x3909", - "0x515", - "0x530", - "0x531", - "0x61", - "0x64", - "0x66eee", - "0x82", - "0x88bb0", - "0x89", - "0x8f", - "0x92", - "0xa", - "0xa4b1", - "0xa4ba", - "0xa4ec", - "0xa5bf", - "0xaa044c", - "0xaa36a7", - "0xaa37dc", - "0xe708" - ], - "contracts": { - "0x3909": [ - { - "name": "Sonic Testnet", - "signature": "0xc092cc0bcf804f95eb659d281c00586bc72018a242d66fefacdc33a990faf99478c368612277cbbf72aee4a10b7ace6d8666f2c8c4fece9daada40cb360190631b", - "address": "0x63c0c19a282a1B52b07dD5a65b58948A07DAE32B" - } - ], - "0xa4ba": [ - { - "name": "Arbitrum Nova", - "signature": "0x818898e7f90f2f1f47dc7bec74dd683dfcc11efc7025d81f57644d366a3d9e442edb789731045ccb5ba89ee0d84bb517194bb9a097b152922bbd39ffd022ff421c", - "address": "0x63c0c19a282a1B52b07dD5a65b58948A07DAE32B" - } - ], - "0x92": [ - { - "address": "0x63c0c19a282a1B52b07dD5a65b58948A07DAE32B", - "name": "Sonic Mainnet", - "signature": "0x9f2a94332f2b71bff8a772053f47dbb65e26e5286341be0a3c55270d5549351f1dddb7566be0619b0150d42d540b0847cb0acbd0ab118ff608a40a18400834711b" - } - ], - "0x1012": [ - { - "name": "Citrea", - "signature": "0x6818c8c50d25e23dd3810758f3fc45d41c5444bec8fe0983660387414fab00366f6d8a0462b2e8985c16cdff5898d6bf9787e255b1a668d083728b448a5c3f641c", - "address": "0x63c0c19a282a1B52b07dD5a65b58948A07DAE32B" - } - ], - "0x61": [ - { - "signature": "0x80aaf42c70b0b9efdf26e38ced69fce70f6b4f5496e7e59888819c14fb16290301ad049299d99e3650fa1a616a87bb80eb52ae9f02ddd8b53dd6b983275d0eb61b", - "address": "0x63c0c19a282a1B52b07dD5a65b58948A07DAE32B", - "name": "BNB Testnet" - } - ], - "0x19": [ - { - "name": "Cronos", - "signature": "0xa1856ef8c948b0a5204da687d53231848de2a585def9faac05c23c47412615dc476db943010164356b1d2ca8a8a66a8b0ae2d30c11b6b2aaf1cca116f0a333761c", - "address": "0x63c0c19a282a1B52b07dD5a65b58948A07DAE32B" - } - ], - "0x279f": [ - { - "signature": "0x85ec60e9dbac6404b66803b5abace8517ce1325bb6391b7d1ff8ec4433bbe62f4363031873a11ed79364290e196a47830fc36346a9aaf2e44518c1101496983c1b", - "address": "0x63c0c19a282a1B52b07dD5a65b58948A07DAE32B", - "name": "Monad Testnet" - } - ], - "0x2105": [ - { - "name": "Base", - "signature": "0xbdddd2e925cf2cc7e148d3c11b02c917995fba8f3a3dc0b73c0059d029feca88014e723b8a32b2310a60c5b1cc17dfb3ae180b5a39f1d3264f985314b9168e0a1c", - "address": "0x63c0c19a282a1B52b07dD5a65b58948A07DAE32B" - } - ], - "0xa4ec": [ - { - "address": "0x63c0c19a282a1B52b07dD5a65b58948A07DAE32B", - "name": "Celo Mainnet", - "signature": "0x1421ea4d014170a4fc5d0559f267974f4aa095a6e6047b107eff1807afa425774775f796a52a90b767810eade3b5919087bb361651a7b8f4f9679f1f46adb60e1b" - } - ], - "0xe708": [ - { - "name": "Linea", - "signature": "0x8bad472a54f1be8adbcce8badc512045a467d64aa2affce55eb6ecb9b6eda8a142eee478bc99a81580ff52d5daea857eb9e482e457b1e121c0574191e01ec9f21c", - "address": "0x63c0c19a282a1B52b07dD5a65b58948A07DAE32B" - } - ], - "0xa": [ - { - "address": "0x63c0c19a282a1B52b07dD5a65b58948A07DAE32B", - "name": "Optimism", - "signature": "0x60e12ffc04e098bd26a897ed2a974e4e255fc6db3b052fe3a2647372bfbac76f096bf5236510ddc217e12b802e08617cc27292d69ca51b0467ba91c6df74cd7b1c" - } - ], - "0x64": [ - { - "address": "0x63c0c19a282a1B52b07dD5a65b58948A07DAE32B", - "name": "Gnosis", - "signature": "0xd0cfc2959c866e5218faf675f852e0c7021a454064e509d40256c5bec395e300381c19dcbec2e921b2f6d7d9a925a39dee8ea2e8dd8f595633b8dc333d91f1af1b" - } - ], - "0x152": [ - { - "address": "0x63c0c19a282a1B52b07dD5a65b58948A07DAE32B", - "name": "Cronos Testnet", - "signature": "0x8fec0190a311f6ba5dc9df8d76fef3673e6c4081c087f779bca7e3247bb40a5070d393d29c6b268deb3fa231a138b7914b25395cd6dec0fdf4b2b7701975e78b1c" - } - ], - "0x88bb0": [ - { - "name": "Hoodi Testnet", - "signature": "0x23de8eb645a65b08721e5d2194063acead5f5f818474b7884ae767c7aaf9bb9b22233ab92684bc41087f8509e945d96083124ae1919a9357f2ae65267df4f0e21b", - "address": "0x63c0c19a282a1B52b07dD5a65b58948A07DAE32B" - } - ], - "0x13882": [ - { - "address": "0x63c0c19a282a1B52b07dD5a65b58948A07DAE32B", - "name": "Polygon Amoy Testnet", - "signature": "0x472bb78ebb6686ddf0bb2e75265e1f4266cd050f8b498e88f97e9380afd8bfbd169c4d3221ec8845cb81ba7e9ddb7de9b819a15617803e20aee2aaa07664b6c81b" - } - ], - "0x13fb": [ - { - "address": "0x63c0c19a282a1B52b07dD5a65b58948A07DAE32B", - "name": "Citrea Testnet", - "signature": "0xf9e4aa35fc098468212352c2b9662022f9565bd713ca66e634c804f9820b5e0c266d710afba58aed00e5b7e24134dd9b52e2e331076de745137531a6d245a7521b" - } - ], - "0x8f": [ - { - "signature": "0x12d31e58c92cdc29dac8af0405883b3b0ee44156d7fdf5c3c2ffa4138f2461cc20e7f8625431dbd24bb784407d1a1d9bdb75b191a6cf127eac68b67d13bd11e41c", - "address": "0x63c0c19a282a1B52b07dD5a65b58948A07DAE32B", - "name": "Monad" - } - ], - "0xaa37dc": [ - { - "address": "0x63c0c19a282a1B52b07dD5a65b58948A07DAE32B", - "name": "Optimism Sepolia", - "signature": "0xa60cab833af6a8aa2dcc80d5e12d9e1566edb6cdf51c38e7cf43d441dac561007f05643e73e6b00107e18dbf15de98aae14192306276e92d654f62bd7c3023241c" - } - ], - "0x89": [ - { - "name": "Polygon", - "signature": "0x302aa2d59940e88f35d2fa140fe6a1e9dc682218a444a7fb2d88f007fbe7792b2b8d615f5ae1e4f184533a02c47d8ac0f6ba3f591679295dff93c65095c0f03d1b", - "address": "0x63c0c19a282a1B52b07dD5a65b58948A07DAE32B" - } - ], - "0x66eee": [ - { - "address": "0x63c0c19a282a1B52b07dD5a65b58948A07DAE32B", - "name": "Arbitrum Sepolia", - "signature": "0x6fdb53ecf8f575b85ff9895277b1f8e11349970fbb42225fe41587a072bbcef43e8d54303c4e1aa38d44cae9ba2c8bf825e9e138176d6b09a729cd82a14356cf1b" - } - ], - "0x531": [ - { - "name": "Sei", - "signature": "0xde089fc9af662bc4b0f873e4dc79760f6c3539f6f1cf32d9bc46baccf86ebae070a9062436f29ee86d04cc55699b27579f657922a2292ec2f1c5170d587917401b", - "address": "0x63c0c19a282a1B52b07dD5a65b58948A07DAE32B" - } - ], - "0x82": [ - { - "signature": "0x54c423b1af4abbd1fb226e260dddba757acbcd8881e6b55b842c6b839874fa3f0e2f77685389ad5c28e096f12ef22557cebf6a77f6064baa071453a445a4c7d51c", - "address": "0x63c0c19a282a1B52b07dD5a65b58948A07DAE32B", - "name": "Unichain Mainnet" - } - ], - "0x1079": [ - { - "address": "0x63c0c19a282a1B52b07dD5a65b58948A07DAE32B", - "name": "Tempo", - "signature": "0x810496170fb570d0d976c58273ad4a423252bac1f2e10c8a63adbbbfc4e79d2c5d894bae20c28e90a577338e68506138ac6dea142a1e80a31c0c2dd2999efa651b" - } - ], - "0x18c6": [ - { - "address": "0x63c0c19a282a1B52b07dD5a65b58948A07DAE32B", - "name": "MegaEth Testnet", - "signature": "0x6743135a8dfc8f58133d827b4997bc5316c8eb92883d2704a30b1d8a7bf494ce226b523e5f85a681eb5de8349c9564e62d389876d0e5fe5cc06fb9412d9d1cb61b" - } - ], - "0x1": [ - { - "signature": "0xffb37facfedf12f1e98b56203de1c855391b791a20ee361234c546f4b50eb11853283cfc311419049f0325ad0a806ec232cc519073e3b5d4ad59ff331964d2e71b", - "address": "0x63c0c19a282a1B52b07dD5a65b58948A07DAE32B", - "name": "Mainnet" - } - ], - "0x38": [ - { - "address": "0x63c0c19a282a1B52b07dD5a65b58948A07DAE32B", - "name": "BNB", - "signature": "0x28ae371904b3ba71344e426c8de0e2cee0b8529a9510c059b412671655881ad646b8cf544342a5f8e0753eda83221e14e3c9dae5435417401f5fee8ee1d63dce1b" - } - ], - "0xa4b1": [ - { - "signature": "0xc3be82057efec197d92b0cbb7cef9d50dba0345646524687a3ae7235a8fcb1706ba79f197d45fcf4c6cfb5808ef70258c5f6bb29b7e3553a4b9660692eb5e81d1b", - "address": "0x63c0c19a282a1B52b07dD5a65b58948A07DAE32B", - "name": "Arbitrum One" - } - ], - "0xaa36a7": [ - { - "signature": "0x1aba1c0dafadab6663efdd6086764a9b9fa5ab5c002e88ebae85edea162fbc425c398b2b93afdc036503f12361c05a7ff0b409ee523d5277e0b4d0a840679e591c", - "address": "0x63c0c19a282a1B52b07dD5a65b58948A07DAE32B", - "name": "Sepolia - Official" - }, - { - "address": "0xCd8D6C5554e209Fbb0deC797C6293cf7eAE13454", - "name": "Sepolia - Testing", - "signature": "0x016cf109489c415ba28e695eb3cb06ac46689c5c49e2aba101d7ec2f68c890282563b324f5c8df5e0536994451825aa235438b7346e8c18b4e64161d990781891c" - } - ], - "0x515": [ - { - "name": "Unichain Sepolia", - "signature": "0x64487330691a05700a2321ee1db4092adce9590e7aded6e489df024838ecec734c935d182f74883818cb7659d5c784163573afdf8221252fa68d960cbe1c312f1b", - "address": "0x63c0c19a282a1B52b07dD5a65b58948A07DAE32B" - } - ], - "0x530": [ - { - "address": "0x63c0c19a282a1B52b07dD5a65b58948A07DAE32B", - "name": "Sei Testnet", - "signature": "0x91135fcd7bfb9e2456c227ff12905128c3854db36775278d47b96c3c669f730c4063e3a62d94884617769bbad2868f35d725cb3b611d9bd1231bceb5967724711c" - } - ], - "0x138c5": [ - { - "address": "0x63c0c19a282a1B52b07dD5a65b58948A07DAE32B", - "name": "Berachain Testnet", - "signature": "0x66940bcb2c4b95ec2c1c1024fee1e3a8e51c8f072a52a9f0252a793604c8a6ba58ac3153d4dd041873d33eec349450c4a9acd51ddaed117bee448ed7a388208c1b" - } - ], - "0x14a34": [ - { - "address": "0x63c0c19a282a1B52b07dD5a65b58948A07DAE32B", - "name": "Base Sepolia", - "signature": "0xaed94ac035e745629423c547200eb2411fd7194d832a6b4cf459d3e3d34a6b62124e88640a0bf623146bdef63b0ce1c8797bd2a6c8357fab86c8be466744f55d1c" - } - ], - "0xa5bf": [ - { - "signature": "0x2413338e5c47c56853195d1870988d721ec502c78e54fe5b98468a401538b942237a2769461ffbfa8269936bf309243d5b0d69f7114938653469c4d8225715ee1c", - "address": "0x63c0c19a282a1B52b07dD5a65b58948A07DAE32B", - "name": "Tempo Testnet" - } - ], - "0xaa044c": [ - { - "name": "Celo Sepolia", - "signature": "0x1590458cdfa10225e4fe734ed44deec95ac1887c877e63deb5ad35b41025c9ef2f33666cdd2c189b1999a78072ab9f8f122d93a52eaf12687fb2ff5b74d8de9f1c", - "address": "0x63c0c19a282a1B52b07dD5a65b58948A07DAE32B" - } - ], - "0x138de": [ - { - "name": "Berachain", - "signature": "0x2c2037ddedcdfb9b7d8ea7c546259eef371a86b0e3610192eb15ece0114c59d86134791cd9e9df4208bbbdc83776d80b30b1fea6bf1a05bb072575217492497a1b", - "address": "0x63c0c19a282a1B52b07dD5a65b58948A07DAE32B" - } - ], - "0x27d8": [ - { - "address": "0x63c0c19a282a1B52b07dD5a65b58948A07DAE32B", - "name": "Chiado", - "signature": "0x0ff531d6afcc191c3b3bdffc1596d9ce8d1d52fa500ea2097c0823820a66f97963b88b646d4d4edbc0f781127d7985b87132d89c62c3cb4ad42848ce289645fa1b" - } - ] - }, - "dev": true - }, - "confirmations_enforced_simulations": { - "enabled": false, - "slippage": 9.5 - }, - "confirmations_gas_buffer": { - "included": 1.5, - "perChainConfig": { - "0xa4b1": { - "base": 1.2, - "name": "arbitrum" - }, - "0x10e6": { - "name": "megaeth", - "base": 1.3 - }, - "0x18c6": { - "base": 1.3, - "name": "megaeth" - }, - "0x18c7": { - "base": 1.3, - "name": "megaeth" - }, - "0x2105": { - "name": "base", - "eip7702": 1.3 - }, - "0x38": { - "name": "bnb", - "eip7702": 1.3 - }, - "0xa": { - "eip7702": 1.3, - "name": "optimism" - } - }, - "default": 1, - "dev": true - }, - "confirmations_incoming_transactions": { - "useBackendWebSocketService": false, - "pollingIntervalMs": 60000 - }, - "confirmations_pay": { - "slippage": 0.005, - "name": "dev", - "relayQuoteUrl": "https://intents.dev-api.cx.metamask.io/relay/quote" - }, - "confirmations_pay_dapps": { - "enabled": true - }, - "confirmations_pay_extended": { - "payStrategies": { - "relay": { - "gaslessEnabled": true - } - } - }, - "confirmations_pay_post_quote": { - "versions": { - "13.32.0": { - "default": { - "tokens": {}, - "enabled": true - }, - "overrides": { - "perpsWithdraw": { - "enabled": true, - "tokens": { - "0x2105": [ - "0x0000000000000000000000000000000000000000", - "0x833589fCD6eDb6E08f4c7C32D4f71b54bdA02913" - ], - "0x38": [ - "0x0000000000000000000000000000000000000000", - "0x55d398326f99059fF775485246999027B3197955", - "0x8AC76a51cc950d9822D68b83fE1Ad97B32Cd580d" - ], - "0x89": [ - "0x0000000000000000000000000000000000001010", - "0x3c499c542cEF5E3811e1192ce70d8cC03d5c3359", - "0xc2132d05d31c914a87c6611c10748aeb04b58e8f" - ], - "0xa4b1": [ - "0x0000000000000000000000000000000000000000", - "0xaf88d065e77c8cC2239327C5EDb3A432268e5831", - "0xFd086bC7CD5C481DCC9C85ebE478A1C0b69FCbb9" - ], - "0xe708": [ - "0x0000000000000000000000000000000000000000", - "0xacA92E438df0B2401fF60dA7E4337B687a2435DA" - ], - "0x1": [ - "0x0000000000000000000000000000000000000000", - "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", - "0xdAC17F958D2ee523a2206206994597C13D831ec7", - "0xacA92E438df0B2401fF60dA7E4337B687a2435DA", - "0x2260FAC5E5542a773Aa44fBCfeDf7C193bc2C599" - ] - } - } - } - } - } - }, - "confirmations_pay_tokens": { - "dev": true, - "versions": { - "13.31.0": { - "preferredTokens": { - "overrides": { - "perpsWithdraw": [ - { - "name": "mUSD", - "address": "0xacA92E438df0B2401fF60dA7E4337B687a2435DA", - "chainId": "0x1" - } - ] - }, - "default": {} - } - } - } - }, - "confirmations_transactions": { - "gasEstimateFallback": { - "perChainConfig": { - "0x279f": { - "fixed": 1000000 - } - } - }, - "gasFeeRandomisation": { - "randomisedGasFeeDigits": { - "0x2105": 5 - } - }, - "timeoutAttempts": { - "default": 10 - }, - "useWebsockets": true, - "acceleratedPolling": { - "perChainConfig": { - "0x11c3": { - "name": "TRUMPCHAIN", - "blockTime": 250, - "chainId": "4547", - "countMax": 15, - "intervalMs": 500 - }, - "0x27bc86aa": { - "intervalMs": 500, - "name": "DEGEN_CHAIN", - "blockTime": 250, - "chainId": "666666666", - "countMax": 15 - }, - "0x34fb5e38": { - "chainId": "888888888", - "countMax": 10, - "intervalMs": 1300, - "name": "ANXIENT8", - "blockTime": 2000 - }, - "0xb5f": { - "blockTime": 250, - "chainId": "2911", - "countMax": 15, - "intervalMs": 500, - "name": "HYTOPIA" - }, - "0x88b": { - "countMax": 15, - "intervalMs": 500, - "name": "GAME7", - "blockTime": 250, - "chainId": "2187" - }, - "0x88bb0": { - "blockTime": 12000, - "chainId": "560048", - "countMax": 10, - "intervalMs": 3000, - "name": "HOODI" - }, - "0x3e7": { - "intervalMs": 700, - "name": "HYPEREVM", - "blockTime": 1000, - "chainId": "999", - "countMax": 10 - }, - "0x18232": { - "countMax": 10, - "intervalMs": 2000, - "name": "PLUME", - "blockTime": 3000, - "chainId": "98866" - }, - "0x8279": { - "countMax": 15, - "intervalMs": 500, - "name": "SLINGSHOTDAO", - "blockTime": 250, - "chainId": "33401" - }, - "0x9c4401": { - "intervalMs": 500, - "name": "ALIENX_TESTNET", - "blockTime": 250, - "chainId": "10241025", - "countMax": 15 - }, - "0x13f8": { - "chainId": "5112", - "countMax": 10, - "intervalMs": 1300, - "name": "HAM", - "blockTime": 2000 - }, - "0xe35": { - "intervalMs": 3000, - "name": "BOTANIX", - "blockTime": 5667, - "chainId": "3637", - "countMax": 10 - }, - "0xaa36a7": { - "name": "ETHEREUM_SEPOLIA", - "blockTime": 16000, - "chainId": "11155111", - "countMax": 10, - "intervalMs": 3000 - }, - "0x142b6": { - "chainId": "82614", - "countMax": 15, - "intervalMs": 500, - "name": "VEMP", - "blockTime": 250 - }, - "0x15b43": { - "name": "UNITE", - "blockTime": 250, - "chainId": "88899", - "countMax": 15, - "intervalMs": 500 - }, - "0x64": { - "name": "GNOSIS", - "blockTime": 8333, - "chainId": "100", - "countMax": 10, - "intervalMs": 3000 - }, - "0xa3c3": { - "blockTime": 250, - "chainId": "41923", - "countMax": 15, - "intervalMs": 500, - "name": "EDUCHAIN" - }, - "0xbde31": { - "countMax": 15, - "intervalMs": 500, - "name": "WINR", - "blockTime": 250, - "chainId": "777777" - }, - "0x134b3cf": { - "intervalMs": 500, - "name": "DERI", - "blockTime": 250, - "chainId": "20231119", - "countMax": 15 - }, - "0x82750": { - "name": "SCROLL", - "blockTime": 2333, - "chainId": "534352", - "countMax": 10, - "intervalMs": 1600 - }, - "0x7ea": { - "chainId": "2026", - "countMax": 10, - "intervalMs": 1300, - "name": "EDGELESS", - "blockTime": 2000 - }, - "0xa9": { - "intervalMs": 1300, - "name": "MANTA", - "blockTime": 2000, - "chainId": "169", - "countMax": 10 - }, - "0x1388": { - "blockTime": 2000, - "chainId": "5000", - "countMax": 10, - "intervalMs": 1300, - "name": "MANTLE" - }, - "0x813df": { - "blockTime": 250, - "chainId": "529375", - "countMax": 15, - "intervalMs": 500, - "name": "LAYER_K" - }, - "0xa0c71fd": { - "name": "BLAST_SEPOLIA", - "blockTime": 2000, - "chainId": "168587773", - "countMax": 10, - "intervalMs": 1300 - }, - "0x52415249": { - "chainId": "1380012617", - "countMax": 15, - "intervalMs": 500, - "name": "RARIBLE", - "blockTime": 250 - }, - "0x6c1": { - "intervalMs": 500, - "name": "REYA", - "blockTime": 250, - "chainId": "1729", - "countMax": 15 - }, - "0x1": { - "chainId": "1", - "countMax": 10, - "intervalMs": 3000, - "name": "ETHEREUM", - "blockTime": 12000 - }, - "0x13c23": { - "chainId": "80931", - "countMax": 15, - "intervalMs": 500, - "name": "FORTA", - "blockTime": 250 - }, - "0x4268": { - "chainId": "17000", - "countMax": 10, - "intervalMs": 2700, - "name": "ETHEREUM_HOLESKY", - "blockTime": 4000 - }, - "0x13bf8": { - "intervalMs": 500, - "name": "ONYX", - "blockTime": 250, - "chainId": "80888", - "countMax": 15 - }, - "0x128ca": { - "blockTime": 250, - "chainId": "75978", - "countMax": 15, - "intervalMs": 500, - "name": "FUSION" - }, - "0xab5": { - "intervalMs": 500, - "name": "ABSTRACT", - "blockTime": 667, - "chainId": "2741", - "countMax": 15 - }, - "0xb67d2": { - "chainId": "747474", - "countMax": 10, - "intervalMs": 700, - "name": "KATANA", - "blockTime": 1000 - }, - "0xca74": { - "chainId": "51828", - "countMax": 15, - "intervalMs": 500, - "name": "CHAINBOUNTY", - "blockTime": 250 - }, - "0x46f": { - "name": "LISK", - "blockTime": 2000, - "chainId": "1135", - "countMax": 10, - "intervalMs": 1300 - }, - "0xcc": { - "countMax": 10, - "intervalMs": 700, - "name": "OPBNB", - "blockTime": 1000, - "chainId": "204" - }, - "0xe705": { - "blockTime": 2000, - "chainId": "59141", - "countMax": 10, - "intervalMs": 1300, - "name": "LINEA_SEPOLIA" - }, - "0x171": { - "blockTime": 10000, - "chainId": "369", - "countMax": 10, - "intervalMs": 3000, - "name": "PULSECHAIN" - }, - "0x1713c": { - "intervalMs": 500, - "name": "IDEX", - "blockTime": 250, - "chainId": "94524", - "countMax": 15 - }, - "0x28c58": { - "chainId": "167000", - "countMax": 10, - "intervalMs": 3000, - "name": "TAIKO", - "blockTime": 8000 - }, - "0x28c61": { - "chainId": "167009", - "countMax": 10, - "intervalMs": 2700, - "name": "TAIKO_HEKLA", - "blockTime": 4000 - }, - "0x3023": { - "chainId": "12323", - "countMax": 15, - "intervalMs": 500, - "name": "HUDDLE01", - "blockTime": 250 - }, - "0x2105": { - "countMax": 10, - "intervalMs": 1300, - "name": "BASE", - "blockTime": 2000, - "chainId": "8453" - }, - "0x8173": { - "chainId": "33139", - "countMax": 15, - "intervalMs": 500, - "name": "APECHAIN", - "blockTime": 250 - }, - "0x1142d": { - "blockTime": 250, - "chainId": "70701", - "countMax": 15, - "intervalMs": 500, - "name": "PROOF_OF_PLAY_BOSS" - }, - "0x2ba": { - "name": "MATCHAIN", - "blockTime": 2000, - "chainId": "698", - "countMax": 10, - "intervalMs": 1300 - }, - "0x13e31": { - "chainId": "81457", - "countMax": 10, - "intervalMs": 1300, - "name": "BLAST", - "blockTime": 2000 - }, - "0xe49b1": { - "chainId": "936369", - "countMax": 15, - "intervalMs": 500, - "name": "LOGX", - "blockTime": 250 - }, - "0x2eb": { - "blockTime": 667, - "chainId": "747", - "countMax": 15, - "intervalMs": 500, - "name": "FLOW" - }, - "0xb9": { - "blockTime": 2000, - "chainId": "185", - "countMax": 10, - "intervalMs": 1300, - "name": "MINT" - }, - "0x42af": { - "blockTime": 250, - "chainId": "17071", - "countMax": 15, - "intervalMs": 500, - "name": "ONCHAIN_POINTS" - }, - "0x38": { - "chainId": "56", - "countMax": 10, - "intervalMs": 700, - "name": "BNB", - "blockTime": 1000 - }, - "0x99797f": { - "chainId": "10058111", - "countMax": 15, - "intervalMs": 500, - "name": "SPOTLIGHT", - "blockTime": 250 - }, - "0x1b59": { - "blockTime": 3667, - "chainId": "7001", - "countMax": 10, - "intervalMs": 2400, - "name": "ZETACHAIN_TESTNET" - }, - "0x14a34": { - "chainId": "84532", - "countMax": 15, - "intervalMs": 500, - "name": "BASE_SEPOLIA_TESTNET", - "blockTime": 250 - }, - "0x98967f": { - "intervalMs": 500, - "name": "FLUENCE", - "blockTime": 250, - "chainId": "9999999", - "countMax": 15 - }, - "0x2f0": { - "blockTime": 250, - "chainId": "752", - "countMax": 15, - "intervalMs": 500, - "name": "RIVALZ" - }, - "0x2780b": { - "blockTime": 250, - "chainId": "161803", - "countMax": 15, - "intervalMs": 500, - "name": "EVENTUM" - }, - "0xa": { - "countMax": 10, - "intervalMs": 1300, - "name": "OPTIMISM", - "blockTime": 2000, - "chainId": "10" - }, - "0x279f": { - "chainId": "10143", - "countMax": 15, - "intervalMs": 500, - "name": "MONAD_TESTNET", - "blockTime": 500 - }, - "0x515": { - "blockTime": 2000, - "chainId": "1301", - "countMax": 10, - "intervalMs": 1300, - "name": "UNICHAIN_SEPOLIA" - }, - "0x138de": { - "chainId": "80094", - "countMax": 10, - "intervalMs": 1300, - "name": "BERACHAIN", - "blockTime": 2000 - }, - "0x61": { - "chainId": "97", - "countMax": 15, - "intervalMs": 500, - "name": "BNB_TESTNET", - "blockTime": 667 - }, - "0x32": { - "name": "XDC", - "blockTime": 2000, - "chainId": "50", - "countMax": 10, - "intervalMs": 1300 - }, - "0x8f": { - "chainId": "143", - "countMax": 15, - "intervalMs": 500, - "name": "MONAD", - "blockTime": 500 - }, - "0xa33fc": { - "blockTime": 250, - "chainId": "668668", - "countMax": 15, - "intervalMs": 500, - "name": "CONWAI" - }, - "0xa1ef": { - "name": "ALEPH_ZERO", - "blockTime": 250, - "chainId": "41455", - "countMax": 15, - "intervalMs": 500 - }, - "0x15eb": { - "intervalMs": 700, - "name": "OPBNB_TESTNET", - "blockTime": 1000, - "chainId": "5611", - "countMax": 10 - }, - "0xd7cc": { - "chainId": "55244", - "countMax": 15, - "intervalMs": 500, - "name": "SUPERPOSITION", - "blockTime": 250 - }, - "0x2a": { - "countMax": 10, - "intervalMs": 2700, - "name": "LUKSO", - "blockTime": 4000, - "chainId": "42" - }, - "0xe708": { - "blockTime": 2000, - "chainId": "59144", - "countMax": 10, - "intervalMs": 1300, - "name": "LINEA" - }, - "0xb1c9": { - "chainId": "45513", - "countMax": 15, - "intervalMs": 500, - "name": "BLESSNET", - "blockTime": 250 - }, - "0x62ef": { - "intervalMs": 500, - "name": "EVERCLEAR", - "blockTime": 250, - "chainId": "25327", - "countMax": 15 - }, - "0x16fd8": { - "countMax": 15, - "intervalMs": 500, - "name": "LUMITERRA", - "blockTime": 250, - "chainId": "94168" - }, - "0xe34": { - "blockTime": 6000, - "chainId": "3636", - "countMax": 10, - "intervalMs": 3000, - "name": "BOTANIX_TESTNET" - }, - "0x123": { - "blockTime": 2000, - "chainId": "291", - "countMax": 10, - "intervalMs": 1300, - "name": "ORDERLY" - }, - "0x144": { - "chainId": "324", - "countMax": 10, - "intervalMs": 700, - "name": "ZKSYNC", - "blockTime": 1000 - }, - "0x13881": { - "name": "POLYGON_MUMBAI", - "blockTime": 2000, - "chainId": "80001", - "countMax": 10, - "intervalMs": 1300 - }, - "0x1142c": { - "chainId": "70700", - "countMax": 15, - "intervalMs": 500, - "name": "PROOF_OF_PLAY_APEX", - "blockTime": 250 - }, - "0xa86a": { - "chainId": "43114", - "countMax": 10, - "intervalMs": 900, - "name": "AVALANCHE", - "blockTime": 1333 - }, - "0x1331": { - "countMax": 15, - "intervalMs": 500, - "name": "API3", - "blockTime": 250, - "chainId": "4913" - }, - "0x2b2": { - "countMax": 10, - "intervalMs": 1300, - "name": "REDSTONE", - "blockTime": 2000, - "chainId": "690" - }, - "0x9c4400": { - "intervalMs": 500, - "name": "ALIENX", - "blockTime": 250, - "chainId": "10241024", - "countMax": 15 - }, - "0x15a9": { - "countMax": 15, - "intervalMs": 500, - "name": "DUCK", - "blockTime": 250, - "chainId": "5545" - }, - "0x1b58": { - "intervalMs": 2400, - "name": "ZETACHAIN", - "blockTime": 3667, - "chainId": "7000", - "countMax": 10 - }, - "0x82": { - "blockTime": 2000, - "chainId": "130", - "countMax": 10, - "intervalMs": 1300, - "name": "UNICHAIN" - }, - "0x531": { - "countMax": 15, - "intervalMs": 500, - "name": "SEI", - "blockTime": 667, - "chainId": "1329" - }, - "0x868b": { - "countMax": 10, - "intervalMs": 1300, - "name": "MODE", - "blockTime": 2000, - "chainId": "34443" - }, - "0xe8": { - "name": "LENS", - "blockTime": 27333, - "chainId": "232", - "countMax": 10, - "intervalMs": 3000 - }, - "0x725": { - "chainId": "1829", - "countMax": 15, - "intervalMs": 500, - "name": "PLAYBLOCK", - "blockTime": 250 - }, - "0x316b8": { - "intervalMs": 500, - "name": "BLOCKFIT", - "blockTime": 250, - "chainId": "202424", - "countMax": 15 - }, - "0xc350": { - "name": "CITRONUS", - "blockTime": 250, - "chainId": "50000", - "countMax": 15, - "intervalMs": 500 - }, - "0x163e7": { - "name": "HENEZ", - "blockTime": 250, - "chainId": "91111", - "countMax": 15, - "intervalMs": 500 - }, - "0x7cc": { - "chainId": "1996", - "countMax": 15, - "intervalMs": 500, - "name": "SANKO", - "blockTime": 250 - }, - "0x74c": { - "blockTime": 2000, - "chainId": "1868", - "countMax": 10, - "intervalMs": 1300, - "name": "SONEIUM" - }, - "0xa4b1": { - "blockTime": 250, - "chainId": "42161", - "countMax": 15, - "intervalMs": 500, - "name": "ARBITRUM_ONE" - }, - "0xe4": { - "countMax": 15, - "intervalMs": 500, - "name": "MIND", - "blockTime": 250, - "chainId": "228" - }, - "0x9dd": { - "intervalMs": 500, - "name": "INEVM", - "blockTime": 250, - "chainId": "2525", - "countMax": 15 - }, - "0x1042": { - "countMax": 15, - "intervalMs": 500, - "name": "SX_ROLLUP", - "blockTime": 250, - "chainId": "4162" - }, - "0xd0d0": { - "blockTime": 250, - "chainId": "53456", - "countMax": 15, - "intervalMs": 500, - "name": "DODO" - }, - "0x76adf1": { - "intervalMs": 1300, - "name": "ZORA", - "blockTime": 2000, - "chainId": "7777777", - "countMax": 10 - }, - "0x659": { - "blockTime": 250, - "chainId": "1625", - "countMax": 15, - "intervalMs": 500, - "name": "GRAVITY" - }, - "0xfee": { - "countMax": 15, - "intervalMs": 500, - "name": "COMETH", - "blockTime": 250, - "chainId": "4078" - }, - "0x343b": { - "name": "IMMUTABLE", - "blockTime": 2000, - "chainId": "13371", - "countMax": 10, - "intervalMs": 1300 - }, - "0x13882": { - "countMax": 10, - "intervalMs": 1300, - "name": "POLYGON_AMOY", - "blockTime": 2000, - "chainId": "80002" - }, - "0x2272": { - "name": "CLINK", - "blockTime": 250, - "chainId": "8818", - "countMax": 15, - "intervalMs": 500 - }, - "0xa1337": { - "blockTime": 250, - "chainId": "660279", - "countMax": 15, - "intervalMs": 500, - "name": "XAI" - }, - "0x18c6": { - "countMax": 10, - "intervalMs": 2700, - "name": "MEGAETH_TESTNET", - "blockTime": 4000, - "chainId": "6342" - }, - "0x89": { - "intervalMs": 1300, - "name": "POLYGON", - "blockTime": 2000, - "chainId": "137", - "countMax": 10 - }, - "0xf4290": { - "name": "SCOREKOUNT", - "blockTime": 250, - "chainId": "1000080", - "countMax": 15, - "intervalMs": 500 - }, - "0x1ecf": { - "name": "KINTO", - "blockTime": 250, - "chainId": "7887", - "countMax": 15, - "intervalMs": 500 - }, - "0x18c7": { - "blockTime": 4000, - "chainId": "6343", - "countMax": 10, - "intervalMs": 2700, - "name": "MEGAETH_TESTNET" - }, - "0x5d979": { - "intervalMs": 500, - "name": "CHEESE", - "blockTime": 250, - "chainId": "383353", - "countMax": 15 - }, - "0xaa37dc": { - "countMax": 10, - "intervalMs": 1300, - "name": "OPTIMISM_SEPOLIA", - "blockTime": 2000, - "chainId": "11155420" - }, - "0x16876": { - "name": "MIRACLE", - "blockTime": 250, - "chainId": "92278", - "countMax": 15, - "intervalMs": 500 - }, - "0x19": { - "chainId": "25", - "countMax": 15, - "intervalMs": 500, - "name": "CRONOS", - "blockTime": 667 - }, - "0xa867": { - "countMax": 10, - "intervalMs": 800, - "name": "HEMI", - "blockTime": 1200, - "chainId": "43111" - }, - "0x8274f": { - "blockTime": 3333, - "chainId": "534351", - "countMax": 10, - "intervalMs": 2200, - "name": "SCROLL_SEPOLIA" - }, - "0x1406f40": { - "chainId": "21000000", - "countMax": 15, - "intervalMs": 500, - "name": "CORN", - "blockTime": 250 - }, - "0x34a1": { - "name": "IMMUTABLE_TESTNET", - "blockTime": 2000, - "chainId": "13473", - "countMax": 10, - "intervalMs": 1300 - }, - "0x1b254": { - "name": "REAL", - "blockTime": 250, - "chainId": "111188", - "countMax": 15, - "intervalMs": 500 - }, - "0xfc": { - "blockTime": 2000, - "chainId": "252", - "countMax": 10, - "intervalMs": 1300, - "name": "FRAXTAL" - }, - "0xfa": { - "blockTime": 4000, - "chainId": "250", - "countMax": 10, - "intervalMs": 2700, - "name": "FANTOM" - }, - "0x13a43": { - "name": "GEO_GENESIS", - "blockTime": 250, - "chainId": "80451", - "countMax": 15, - "intervalMs": 500 - }, - "0x6f0": { - "blockTime": 667, - "chainId": "1776", - "countMax": 15, - "intervalMs": 500, - "name": "INJECTIVE" - }, - "0x3bd": { - "countMax": 10, - "intervalMs": 1300, - "name": "LYRA", - "blockTime": 2000, - "chainId": "957" - }, - "0x974": { - "blockTime": 250, - "chainId": "2420", - "countMax": 15, - "intervalMs": 500, - "name": "DOGELON" - }, - "0xa6": { - "name": "OMNI", - "blockTime": 1333, - "chainId": "166", - "countMax": 10, - "intervalMs": 900 - }, - "0x7c5": { - "countMax": 15, - "intervalMs": 500, - "name": "LYDIA", - "blockTime": 250, - "chainId": "1989" - }, - "0x2611": { - "intervalMs": 700, - "name": "PLASMA", - "blockTime": 1000, - "chainId": "9745", - "countMax": 10 - }, - "0xa4ba": { - "countMax": 15, - "intervalMs": 500, - "name": "ARBITRUM_NOVA", - "blockTime": 250, - "chainId": "42170" - }, - "0x13a": { - "countMax": 10, - "intervalMs": 3000, - "name": "FILECOIN", - "blockTime": 30000, - "chainId": "314" - } - }, - "defaultCountMax": 10, - "defaultIntervalMs": 3000 - }, - "batchSizeLimit": 10, - "dev": true - }, - "contentfulCarouselEnabled": true, - "coreExtensionUxCeux1024AbtestReferralUi": [ - { - "scope": { - "value": 0.5, - "type": "threshold" - }, - "name": "control" - }, - { - "scope": { - "type": "threshold", - "value": 1 - }, - "name": "treatment" - } - ], - "dappSwapMetrics": { - "bridge_quote_fees": 250, - "enabled": true, - "origins": ["https://app.uniswap.org", "https://metamask.github.io"] - }, - "dappSwapQa": { - "enabled": true - }, - "dappSwapUi": { - "enabled": true, - "threshold": 0.01 - }, - "earnMerklCampaignClaiming": { - "enabled": true, - "minimumVersion": "13.23.0" - }, - "earnMusdConversionAssetOverviewCtaEnabled": { - "enabled": true, - "minimumVersion": "13.23.0" - }, - "earnMusdConversionCtaTokens": { - "0x1": ["USDC", "USDT", "DAI"], - "0xe708": ["USDC", "USDT", "DAI"] - }, - "earnMusdConversionFlowEnabled": { - "enabled": true, - "minimumVersion": "13.23.0" - }, - "earnMusdConversionGeoBlockedCountries": { - "blockedRegions": ["GB"] - }, - "earnMusdConversionMinAssetBalanceRequired": 0.01, - "earnMusdConversionTokenListItemCtaEnabled": { - "minimumVersion": "13.23.0", - "enabled": true - }, - "earnMusdConvertibleTokensAllowlist": { - "0x1": ["USDC", "USDT", "DAI"], - "0xe708": ["USDC", "USDT", "DAI"] - }, - "earnMusdConvertibleTokensBlocklist": {}, - "earnMusdCtaEnabled": { - "enabled": true, - "minimumVersion": "13.23.0" - }, - "enableMultichainAccounts": { - "featureVersion": "1", - "minimumVersion": "13.0.0", - "enabled": true - }, - "enableMultichainAccountsState2": { - "enabled": true, - "featureVersion": "2", - "minimumVersion": "13.5.0" - }, - "enabledAdvancedPermissions": { - "permissions": [ - "native-token-stream", - "native-token-periodic", - "erc20-token-stream", - "erc20-token-periodic", - "erc20-token-revocation", - "native-token-allowance", - "erc20-token-allowance", - "token-approval-revocation" - ] - }, - "extensionPlatformAutoReloadAfterUpdate": true, - "extensionSignedDeepLinkWarningEnabled": [ - { - "value": true, - "name": "Warning enabled", - "scope": { - "value": 1, - "type": "threshold" - } - } - ], - "extensionUpdatePromptMinimumVersion": "12.18.0", - "extensionUxDefaultAddressVersioned": { - "enabled": true, - "minimumVersion": "13.28.0" - }, - "extensionUxDefiReferral": true, - "extensionUxDefiReferralPartners": { - "hyperliquid": true, - "asterdex": true, - "gmx": true - }, - "extensionUxPna25": true, - "extensionUxSidepanel": false, - "extensionUxTokenManagementFilter": { - "minimumVersion": "13.33.0", - "enabled": true - }, - "extensionSkipTransactionStatusPage": { - "minimumVersion": "13.31.0", - "enabled": true - }, - "extensionTransactionLabels": true, - "gasFeesSponsoredNetwork": { - "0x38": false, - "0x531": true, - "0x8f": true - }, - "isSolanaBuyable": false, - "neNetworkDiscoverButton": { - "0x531": true, - "0x8f": false, - "0xe708": true, - "solana:5eykt4UsFv8P8NJdTREpY1vzqKqZKvdp": true, - "tron:728126428": true - }, - "nonZeroUnusedApprovals": [ - "https://aerodrome.finance", - "https://www.aerodrome.finance", - "https://app.bio.xyz", - "https://app.ethena.fi", - "https://app.euler.finance", - "https://app.rocketx.exchange", - "https://app.seer.pm", - "https://app.sky.money", - "https://app.spark.fi", - "https://app.tea-fi.com", - "https://app.uniswap.org", - "https://bridge.gravity.xyz", - "https://dev-relay-sdk.vercel.app", - "https://evm.ekubo.org", - "https://flaunch.gg", - "https://fluid.io", - "https://flyingtulip.com", - "https://jumper.exchange", - "https://jumper.xyz", - "https://linea.build", - "https://pancakeswap.finance", - "https://privacypools.com", - "https://relay.link", - "https://revoke.cash", - "https://staging.relay.link", - "https://superbridge.app", - "https://swap.defillama.com", - "https://toros.finance", - "https://velodrome.finance", - "https://walletstats.io", - "https://www.bungee.exchange", - "https://www.dev.relay.link", - "https://www.fxhash.xyz", - "https://www.hydrex.fi", - "https://www.relay.link", - "https://yearn.fi", - "https://app.teller.org", - "https://kalshi.com", - "https://app.carbondefi.xyz", - "https://celo.carbondefi.xyz", - "https://sei.carbondefi.xyz", - "https://matcha.xyz", - "https://app.trysweep.finance" - ], - "perpsEnabled": true, - "perpsEnabledVersion": { - "enabled": true, - "minimumVersion": "13.30.0" - }, - "perpsHip3AllowlistMarkets": "", - "perpsHip3BlocklistMarkets": "", - "perpsPerpTradingGeoBlockedCountriesV2": { - "blockedRegions": [] - }, - "platformSplitStateGradualRollout": [ - { - "value": { - "maxNetworks": 5, - "enabled": 1, - "maxAccounts": 1 - }, - "name": "feature is ON", - "scope": { - "type": "threshold", - "value": 0.01 - } - }, - { - "name": "feature is OFF", - "scope": { - "type": "threshold", - "value": 1 - }, - "value": { - "enabled": 0, - "maxAccounts": 0, - "maxNetworks": 0 - } - } - ], - "rewardsBitcoinEnabledExtension": false, - "rewardsEnabled": { - "minimumVersion": "13.32.0", - "enabled": true - }, - "rewardsOnboardingEnabled": { - "enabled": false, - "minimumVersion": "0.0.0" - }, - "rewardsTronEnabledExtension": false, - "rwaTokensEnabled": true, - "sendRedesign": { - "enabled": true - }, - "settingsRedesign": false, - "smartTransactionsNetworks": { - "0x2105": { - "extensionActive": true, - "gaslessBridgeWith7702Enabled": true, - "sentinelUrl": "https://tx-sentinel-base-mainnet.api.cx.metamask.io" - }, - "0x8f": { - "sentinelUrl": "https://tx-sentinel-monad-mainnet.api.cx.metamask.io", - "extensionActive": false - }, - "0x89": { - "extensionActive": true, - "gaslessBridgeWith7702Enabled": true, - "sentinelUrl": "https://tx-sentinel-polygon-mainnet.api.cx.metamask.io" - }, - "default": { - "extensionActive": false, - "extensionReturnTxHashAsapBatch": true, - "variation": "dev", - "extensionReturnTxHashAsap": true, - "expectedDeadline": 45, - "batchStatusPollingInterval": 1000, - "extensionSkipSmartTransactionStatusPage": false, - "gaslessBridgeWith7702Enabled": false, - "maxDeadline": 150 - }, - "0xa4b1": { - "extensionActive": true, - "gaslessBridgeWith7702Enabled": true, - "sentinelUrl": "https://tx-sentinel-arbitrum-mainnet.api.cx.metamask.io" - }, - "0xe708": { - "sentinelUrl": "https://tx-sentinel-linea-mainnet.api.cx.metamask.io", - "extensionActive": true, - "gaslessBridgeWith7702Enabled": true - }, - "0x38": { - "extensionActive": true, - "gaslessBridgeWith7702Enabled": false, - "sentinelUrl": "https://tx-sentinel-bsc-mainnet.api.cx.metamask.io" - }, - "0x1": { - "maxDeadline": 160, - "sentinelUrl": "https://tx-sentinel-ethereum-mainnet.api.cx.metamask.io", - "expectedDeadline": 45, - "extensionActive": true, - "gaslessBridgeWith7702Enabled": false - }, - "0xa": { - "extensionActive": false, - "sentinelUrl": "https://tx-sentinel-optimism-mainnet.api.cx.metamask.io" - }, - "0x144": { - "extensionActive": false, - "sentinelUrl": "https://tx-sentinel-zksync-mainnet.api.cx.metamask.io" - }, - "0x531": { - "sentinelUrl": "https://tx-sentinel-sei-mainnet.api.cx.metamask.io", - "extensionActive": false - }, - "0xa86a": { - "extensionActive": false, - "sentinelUrl": "https://tx-sentinel-avalanche-mainnet.api.cx.metamask.io" - } - }, - "solanaCardEnabled": false, - "solanaTestnetsEnabled": false, - "staticAssetsPollingOptions": { - "cacheExpirationTime": 3600000, - "interval": 10800000, - "occurrenceFloor": {}, - "supportedChains": ["0x10e6"], - "topX": 5 - }, - "stellarAccounts": { - "minimumVersion": "0.0.1", - "enabled": true - }, - "stxMigrationBatchStatus": [ - { - "value": true, - "name": "sentinel on", - "scope": { - "type": "threshold", - "value": 1 - } - }, - { - "scope": { - "type": "threshold", - "value": 0 - }, - "value": false, - "name": "sentinel off" - } - ], - "stxMigrationCancel": [ - { - "value": true, - "name": "sentinel on", - "scope": { - "type": "threshold", - "value": 1 - } - }, - { - "value": false, - "name": "sentinel off", - "scope": { - "value": 0, - "type": "threshold" - } - } - ], - "stxMigrationGetFees": [ - { - "name": "sentinel on", - "scope": { - "type": "threshold", - "value": 1 - }, - "value": true - }, - { - "name": "sentinel off", - "scope": { - "value": 0, - "type": "threshold" - }, - "value": false - } - ], - "stxMigrationSubmitTransactions": [ - { - "value": true, - "name": "sentinel on", - "scope": { - "value": 1, - "type": "threshold" - } - }, - { - "scope": { - "type": "threshold", - "value": 0 - }, - "value": false, - "name": "sentinel off" - } - ], - "tempoConfig": { - "enabled": true, - "perChainConfig": { - "0x1079": { - "enabled": true, - "defaultFeeToken": "0x20c0000000000000000000000000000000000000" - }, - "0x89": { - "defaultFeeToken": "0x20c0000000000000000000000000000000000000", - "enabled": true - }, - "0xa5bf": { - "defaultFeeToken": "0x20c0000000000000000000000000000000000000", - "enabled": true - } - } - }, - "tronAccounts": { - "enabled": true, - "minimumVersion": "13.13.2" - }, - "walletFrameworkRpcFailoverEnabled": true - }, - "cacheTimestamp": 1779126362118, - "thresholdCache": { - "0x585932e95120a60224e1b9306442908dee59fd4785240188a2f92eb49c668e92:assetsEnableNotificationsByDefaultV2": 0.170914, - "0x585932e95120a60224e1b9306442908dee59fd4785240188a2f92eb49c668e92:backendWebSocketConnection": 0.477214, - "0x585932e95120a60224e1b9306442908dee59fd4785240188a2f92eb49c668e92:coreExtensionUxCeux1024AbtestReferralUi": 0.620227, - "0x585932e95120a60224e1b9306442908dee59fd4785240188a2f92eb49c668e92:extensionSignedDeepLinkWarningEnabled": 0.530274, - "0x585932e95120a60224e1b9306442908dee59fd4785240188a2f92eb49c668e92:platformSplitStateGradualRollout": 0.696131, - "0x585932e95120a60224e1b9306442908dee59fd4785240188a2f92eb49c668e92:stxMigrationBatchStatus": 0.934666, - "0x585932e95120a60224e1b9306442908dee59fd4785240188a2f92eb49c668e92:stxMigrationCancel": 0.150381, - "0x585932e95120a60224e1b9306442908dee59fd4785240188a2f92eb49c668e92:stxMigrationGetFees": 0.695454, - "0x585932e95120a60224e1b9306442908dee59fd4785240188a2f92eb49c668e92:stxMigrationSubmitTransactions": 0.410409 - }, - "allDeFiPositions": { - "0x141d32a89a1e0a5ef360034a2f60a4b917c18838": {} - }, - "allDeFiPositionsCount": { - "0x141d32a89a1e0a5ef360034a2f60a4b917c18838": 0 - }, - "urlScanCache": { - "app.safe.global": { - "data": { - "hostname": "app.safe.global", - "recommendedAction": "VERIFIED" - }, - "timestamp": 1773330552 - }, - "i.nfte.ai": { - "data": { - "domainName": "i.nfte.ai", - "recommendedAction": "NONE", - "riskFactors": null, - "status": "COMPLETE", - "verified": false - }, - "timestamp": 1778534283 - }, - "i2c.seadn.io": { - "data": { - "domainName": "i2c.seadn.io", - "recommendedAction": "NONE", - "riskFactors": null, - "status": "COMPLETE", - "verified": false - }, - "timestamp": 1778803081 - }, - "ipfs.io": { - "data": { - "domainName": "ipfs.io", - "recommendedAction": "NONE", - "riskFactors": null, - "status": "COMPLETE", - "verified": false - }, - "timestamp": 1774544144 - }, - "jsonplexmetadata.com": { - "data": { - "domainName": "jsonplexmetadata.com", - "recommendedAction": "NONE", - "riskFactors": null, - "status": "COMPLETE", - "verified": false - }, - "timestamp": 1772651855 - }, - "res.cloudinary.com": { - "data": { - "domainName": "res.cloudinary.com", - "recommendedAction": "NONE", - "riskFactors": null, - "status": "COMPLETE", - "verified": false - }, - "timestamp": 1774544144 - } - }, - "tokenScanCache": { - "solana:27G8MtK7VtTcCHkpASjSDdkWWYfoqT6ggEuKidVJidD4": { - "data": { - "result_type": "Verified" - }, - "timestamp": 1777411014 - }, - "solana:7atgF8KQo4wJrD5ATGX7t1V2zVvykPJbFfNeVf1icFv1": { - "data": { - "result_type": "Benign" - }, - "timestamp": 1777411014 - }, - "solana:7vfCXTUXx5WJV5JADk17DUJ4ksgau7utNKj4b963voxs": { - "data": { - "result_type": "Verified" - }, - "timestamp": 1778617228 - }, - "solana:8crhketCxuYMFfkvGfikwp6LGuN9sXx5i3oTC4PXpump": { - "data": { - "result_type": "Benign" - }, - "timestamp": 1777411014 - }, - "solana:9zNQRsGLjNKwCUU5Gq5LR8beUCPzQMVMqKAi3SSZh54u": { - "data": { - "result_type": "Verified" - }, - "timestamp": 1777411014 - }, - "solana:EPjFWdd5AufqSSqeM2qN1xzybapC8G4wEGGkZwyTDt1v": { - "data": { - "result_type": "Verified" - }, - "timestamp": 1777411014 - }, - "solana:Es9vMFrzaCERmJfrF4H2FYD4KCoNkY11McCe8BenwNYB": { - "data": { - "result_type": "Verified" - }, - "timestamp": 1777411014 - }, - "solana:JUPyiwrYJFskUPiHa7hkeR8VUtAeFoSYbKedZNsDvCN": { - "data": { - "result_type": "Verified" - }, - "timestamp": 1778617228 - }, - "solana:CKfatsPMUf8SkiURsDXs7eK6GWb4Jsd6UDbs7twMCWxo": { - "data": { - "result_type": "Benign" - }, - "timestamp": 1779056924 - }, - "solana:HeLp6NuQkmYB4pYWo2zYs22mESHXPQYzXbB8n4V98jwC": { - "data": { - "result_type": "Verified" - }, - "timestamp": 1779056924 - } - }, - "addressScanCache": {}, - "coverageResults": {}, - "orderedTransactionHistory": [], - "claimsConfigurations": { - "supportedNetworks": ["0x1", "0xe708"], - "validSubmissionWindowDays": 21 - }, - "claims": [], - "drafts": [], - "initialEnqueueCompleted": true, - "syncQueue": {}, - "initialDelayEndTimestamp": 1778884124587, - "accountsByChainId": { - "0x38": { - "0xE2F39519240814a77047490357cEd4d094B6C9C7": { - "balance": "0x0" - }, - "0xbcc30CC9B8109f87fcEDE0C57E3A8c3DC979e3D0": { - "balance": "0x0" - }, - "0x141d32a89a1e0a5Ef360034a2f60a4B917c18838": { - "balance": "0x1c64da03f600" - }, - "0x452cA3DAd6dB7F3a47bbF15b758B6749Db579bBc": { - "balance": "0x0" - }, - "0xa30078E306614C2F444550da6bC759173Dfb61Fd": { - "balance": "0x0" - }, - "0x94d1362400E999b38C845cA2c305c084031DAe84": { - "balance": "0x0" - }, - "0x2b6a82d1Fea4D5B137095cA5306BA2589B630A08": { - "balance": "0x0" - }, - "0xF25bd11C334507Fd007d584E2D0b7b2C6543f714": { - "balance": "0x0" - }, - "0x83AD6A1294d949d514361326bcebAe4F73957327": { - "balance": "0x0" - }, - "0xeeEAB71A5989b7951389e3dF313Ea9876508856f": { - "balance": "0x0" - }, - "0x3823C59973351F50e8B985e182b81300Dae9Bb45": { - "balance": "0x0" - }, - "0xf1F63D55E8f25C962079BE324c71CDcf792c6047": { - "balance": "0x0" - }, - "0x09b8556833e53f92EE0b668DB146B43CA2CAB130": { - "balance": "0x0" - }, - "0x422B8d8914cDad779f587414d647e953bB3A87db": { - "balance": "0x0" - }, - "0x9dc641ccD7D1e7C66e47a25598aCe7219548d887": { - "balance": "0x0" - }, - "0x6Eff00186BA65C5FAde98d75aA4d99eF71fA461B": { - "balance": "0x0" - }, - "0xb3864B298f4fDdbbBd2Fa5CF1a2a2748932b3B81": { - "balance": "0x0" - }, - "0x30E8ccaD5A980BDF30447f8c2C48e70989D9d294": { - "balance": "0x0" - }, - "0x98931E2B2272891c2E8e47D675007D94aE90cE64": { - "balance": "0x0" - }, - "0xDA04e0fE4e79eebcaFfCbfFf8eA0BDcd442d2119": { - "balance": "0x0" - }, - "0xc9442048Fd0c34b684035a82188B69c4eE5e8f21": { - "balance": "0x0" - }, - "0x04400BB51B1f886CFf338eb2b4118f9CeB4E6fD5": { - "balance": "0x0" - } - }, - "0x1": { - "0xE2F39519240814a77047490357cEd4d094B6C9C7": { - "balance": "0x0" - }, - "0xbcc30CC9B8109f87fcEDE0C57E3A8c3DC979e3D0": { - "balance": "0x0" - }, - "0x141d32a89a1e0a5Ef360034a2f60a4B917c18838": { - "balance": "0x1f4cd90b253e", - "stakedBalance": "0x0" - }, - "0x452cA3DAd6dB7F3a47bbF15b758B6749Db579bBc": { - "balance": "0x0" - }, - "0xa30078E306614C2F444550da6bC759173Dfb61Fd": { - "balance": "0x0" - }, - "0x94d1362400E999b38C845cA2c305c084031DAe84": { - "balance": "0x0" - }, - "0x2b6a82d1Fea4D5B137095cA5306BA2589B630A08": { - "balance": "0x0" - }, - "0xF25bd11C334507Fd007d584E2D0b7b2C6543f714": { - "balance": "0x0" - }, - "0x83AD6A1294d949d514361326bcebAe4F73957327": { - "balance": "0x0" - }, - "0xeeEAB71A5989b7951389e3dF313Ea9876508856f": { - "balance": "0x0" - }, - "0x3823C59973351F50e8B985e182b81300Dae9Bb45": { - "balance": "0x0" - }, - "0xf1F63D55E8f25C962079BE324c71CDcf792c6047": { - "balance": "0x0" - }, - "0x09b8556833e53f92EE0b668DB146B43CA2CAB130": { - "balance": "0x0" - }, - "0x422B8d8914cDad779f587414d647e953bB3A87db": { - "balance": "0x0" - }, - "0x9dc641ccD7D1e7C66e47a25598aCe7219548d887": { - "balance": "0x0" - }, - "0x6Eff00186BA65C5FAde98d75aA4d99eF71fA461B": { - "balance": "0x0" - }, - "0xb3864B298f4fDdbbBd2Fa5CF1a2a2748932b3B81": { - "balance": "0x0" - }, - "0x30E8ccaD5A980BDF30447f8c2C48e70989D9d294": { - "balance": "0x0" - }, - "0x98931E2B2272891c2E8e47D675007D94aE90cE64": { - "balance": "0x0" - }, - "0xDA04e0fE4e79eebcaFfCbfFf8eA0BDcd442d2119": { - "balance": "0x0" - }, - "0xc9442048Fd0c34b684035a82188B69c4eE5e8f21": { - "balance": "0x0" - }, - "0x04400BB51B1f886CFf338eb2b4118f9CeB4E6fD5": { - "balance": "0x0" - } - }, - "0x10e6": { - "0xE2F39519240814a77047490357cEd4d094B6C9C7": { - "balance": "0x0" - }, - "0xbcc30CC9B8109f87fcEDE0C57E3A8c3DC979e3D0": { - "balance": "0x0" - }, - "0x141d32a89a1e0a5Ef360034a2f60a4B917c18838": { - "balance": "0x0" - }, - "0x452cA3DAd6dB7F3a47bbF15b758B6749Db579bBc": { - "balance": "0x0" - }, - "0xa30078E306614C2F444550da6bC759173Dfb61Fd": { - "balance": "0x0" - }, - "0x94d1362400E999b38C845cA2c305c084031DAe84": { - "balance": "0x0" - }, - "0x2b6a82d1Fea4D5B137095cA5306BA2589B630A08": { - "balance": "0x0" - }, - "0xF25bd11C334507Fd007d584E2D0b7b2C6543f714": { - "balance": "0x0" - }, - "0x83AD6A1294d949d514361326bcebAe4F73957327": { - "balance": "0x0" - }, - "0xeeEAB71A5989b7951389e3dF313Ea9876508856f": { - "balance": "0x0" - }, - "0x3823C59973351F50e8B985e182b81300Dae9Bb45": { - "balance": "0x0" - }, - "0xf1F63D55E8f25C962079BE324c71CDcf792c6047": { - "balance": "0x0" - }, - "0x09b8556833e53f92EE0b668DB146B43CA2CAB130": { - "balance": "0x0" - }, - "0x422B8d8914cDad779f587414d647e953bB3A87db": { - "balance": "0x0" - }, - "0x9dc641ccD7D1e7C66e47a25598aCe7219548d887": { - "balance": "0x0" - }, - "0x6Eff00186BA65C5FAde98d75aA4d99eF71fA461B": { - "balance": "0x0" - }, - "0xb3864B298f4fDdbbBd2Fa5CF1a2a2748932b3B81": { - "balance": "0x0" - }, - "0x30E8ccaD5A980BDF30447f8c2C48e70989D9d294": { - "balance": "0x0" - }, - "0x98931E2B2272891c2E8e47D675007D94aE90cE64": { - "balance": "0x0" - }, - "0xDA04e0fE4e79eebcaFfCbfFf8eA0BDcd442d2119": { - "balance": "0x0" - }, - "0xc9442048Fd0c34b684035a82188B69c4eE5e8f21": { - "balance": "0x0" - }, - "0x04400BB51B1f886CFf338eb2b4118f9CeB4E6fD5": { - "balance": "0x0" - } - }, - "0x144": { - "0xE2F39519240814a77047490357cEd4d094B6C9C7": { - "balance": "0x0" - }, - "0xbcc30CC9B8109f87fcEDE0C57E3A8c3DC979e3D0": { - "balance": "0x0" - }, - "0x141d32a89a1e0a5Ef360034a2f60a4B917c18838": { - "balance": "0x0" - }, - "0x452cA3DAd6dB7F3a47bbF15b758B6749Db579bBc": { - "balance": "0x0" - }, - "0xa30078E306614C2F444550da6bC759173Dfb61Fd": { - "balance": "0x0" - }, - "0x94d1362400E999b38C845cA2c305c084031DAe84": { - "balance": "0x0" - }, - "0x2b6a82d1Fea4D5B137095cA5306BA2589B630A08": { - "balance": "0x0" - }, - "0xF25bd11C334507Fd007d584E2D0b7b2C6543f714": { - "balance": "0x0" - }, - "0x83AD6A1294d949d514361326bcebAe4F73957327": { - "balance": "0x0" - }, - "0xeeEAB71A5989b7951389e3dF313Ea9876508856f": { - "balance": "0x0" - }, - "0x3823C59973351F50e8B985e182b81300Dae9Bb45": { - "balance": "0x0" - }, - "0xf1F63D55E8f25C962079BE324c71CDcf792c6047": { - "balance": "0x0" - }, - "0x09b8556833e53f92EE0b668DB146B43CA2CAB130": { - "balance": "0x0" - }, - "0x422B8d8914cDad779f587414d647e953bB3A87db": { - "balance": "0x0" - }, - "0x9dc641ccD7D1e7C66e47a25598aCe7219548d887": { - "balance": "0x0" - }, - "0x6Eff00186BA65C5FAde98d75aA4d99eF71fA461B": { - "balance": "0x0" - }, - "0xb3864B298f4fDdbbBd2Fa5CF1a2a2748932b3B81": { - "balance": "0x0" - }, - "0x30E8ccaD5A980BDF30447f8c2C48e70989D9d294": { - "balance": "0x0" - }, - "0x98931E2B2272891c2E8e47D675007D94aE90cE64": { - "balance": "0x0" - }, - "0xDA04e0fE4e79eebcaFfCbfFf8eA0BDcd442d2119": { - "balance": "0x0" - }, - "0xc9442048Fd0c34b684035a82188B69c4eE5e8f21": { - "balance": "0x0" - }, - "0x04400BB51B1f886CFf338eb2b4118f9CeB4E6fD5": { - "balance": "0x0" - } - }, - "0x18c7": { - "0xE2F39519240814a77047490357cEd4d094B6C9C7": { - "balance": "0x0" - }, - "0xbcc30CC9B8109f87fcEDE0C57E3A8c3DC979e3D0": { - "balance": "0x0" - }, - "0x141d32a89a1e0a5Ef360034a2f60a4B917c18838": { - "balance": "0x0" - }, - "0x452cA3DAd6dB7F3a47bbF15b758B6749Db579bBc": { - "balance": "0x0" - }, - "0xa30078E306614C2F444550da6bC759173Dfb61Fd": { - "balance": "0x0" - }, - "0x94d1362400E999b38C845cA2c305c084031DAe84": { - "balance": "0x0" - }, - "0x2b6a82d1Fea4D5B137095cA5306BA2589B630A08": { - "balance": "0x0" - }, - "0xF25bd11C334507Fd007d584E2D0b7b2C6543f714": { - "balance": "0x0" - }, - "0x83AD6A1294d949d514361326bcebAe4F73957327": { - "balance": "0x0" - }, - "0xeeEAB71A5989b7951389e3dF313Ea9876508856f": { - "balance": "0x0" - }, - "0x3823C59973351F50e8B985e182b81300Dae9Bb45": { - "balance": "0x0" - }, - "0xf1F63D55E8f25C962079BE324c71CDcf792c6047": { - "balance": "0x0" - }, - "0x09b8556833e53f92EE0b668DB146B43CA2CAB130": { - "balance": "0x0" - }, - "0x422B8d8914cDad779f587414d647e953bB3A87db": { - "balance": "0x0" - }, - "0x9dc641ccD7D1e7C66e47a25598aCe7219548d887": { - "balance": "0x0" - }, - "0x6Eff00186BA65C5FAde98d75aA4d99eF71fA461B": { - "balance": "0x0" - }, - "0xb3864B298f4fDdbbBd2Fa5CF1a2a2748932b3B81": { - "balance": "0x0" - }, - "0x30E8ccaD5A980BDF30447f8c2C48e70989D9d294": { - "balance": "0x0" - }, - "0x98931E2B2272891c2E8e47D675007D94aE90cE64": { - "balance": "0x0" - }, - "0xDA04e0fE4e79eebcaFfCbfFf8eA0BDcd442d2119": { - "balance": "0x0" - }, - "0xc9442048Fd0c34b684035a82188B69c4eE5e8f21": { - "balance": "0x0" - }, - "0x04400BB51B1f886CFf338eb2b4118f9CeB4E6fD5": { - "balance": "0x0" - } - }, - "0x2105": { - "0xE2F39519240814a77047490357cEd4d094B6C9C7": { - "balance": "0x0" - }, - "0xbcc30CC9B8109f87fcEDE0C57E3A8c3DC979e3D0": { - "balance": "0x0" - }, - "0x141d32a89a1e0a5Ef360034a2f60a4B917c18838": { - "balance": "0x1dc7b15de86" - }, - "0x452cA3DAd6dB7F3a47bbF15b758B6749Db579bBc": { - "balance": "0x0" - }, - "0xa30078E306614C2F444550da6bC759173Dfb61Fd": { - "balance": "0x0" - }, - "0x94d1362400E999b38C845cA2c305c084031DAe84": { - "balance": "0x0" - }, - "0x2b6a82d1Fea4D5B137095cA5306BA2589B630A08": { - "balance": "0x0" - }, - "0xF25bd11C334507Fd007d584E2D0b7b2C6543f714": { - "balance": "0x0" - }, - "0x83AD6A1294d949d514361326bcebAe4F73957327": { - "balance": "0x0" - }, - "0xeeEAB71A5989b7951389e3dF313Ea9876508856f": { - "balance": "0x0" - }, - "0x3823C59973351F50e8B985e182b81300Dae9Bb45": { - "balance": "0x0" - }, - "0xf1F63D55E8f25C962079BE324c71CDcf792c6047": { - "balance": "0x0" - }, - "0x09b8556833e53f92EE0b668DB146B43CA2CAB130": { - "balance": "0x0" - }, - "0x422B8d8914cDad779f587414d647e953bB3A87db": { - "balance": "0x0" - }, - "0x9dc641ccD7D1e7C66e47a25598aCe7219548d887": { - "balance": "0x0" - }, - "0x6Eff00186BA65C5FAde98d75aA4d99eF71fA461B": { - "balance": "0x0" - }, - "0xb3864B298f4fDdbbBd2Fa5CF1a2a2748932b3B81": { - "balance": "0x0" - }, - "0x30E8ccaD5A980BDF30447f8c2C48e70989D9d294": { - "balance": "0x0" - }, - "0x98931E2B2272891c2E8e47D675007D94aE90cE64": { - "balance": "0x0" - }, - "0xDA04e0fE4e79eebcaFfCbfFf8eA0BDcd442d2119": { - "balance": "0x0" - }, - "0xc9442048Fd0c34b684035a82188B69c4eE5e8f21": { - "balance": "0x0" - }, - "0x04400BB51B1f886CFf338eb2b4118f9CeB4E6fD5": { - "balance": "0x0" - } - }, - "0x279f": { - "0xE2F39519240814a77047490357cEd4d094B6C9C7": { - "balance": "0x0" - }, - "0xbcc30CC9B8109f87fcEDE0C57E3A8c3DC979e3D0": { - "balance": "0x0" - }, - "0x141d32a89a1e0a5Ef360034a2f60a4B917c18838": { - "balance": "0x0" - }, - "0x452cA3DAd6dB7F3a47bbF15b758B6749Db579bBc": { - "balance": "0x0" - }, - "0xa30078E306614C2F444550da6bC759173Dfb61Fd": { - "balance": "0x0" - }, - "0x94d1362400E999b38C845cA2c305c084031DAe84": { - "balance": "0x0" - }, - "0x2b6a82d1Fea4D5B137095cA5306BA2589B630A08": { - "balance": "0x0" - }, - "0xF25bd11C334507Fd007d584E2D0b7b2C6543f714": { - "balance": "0x0" - }, - "0x83AD6A1294d949d514361326bcebAe4F73957327": { - "balance": "0x0" - }, - "0xeeEAB71A5989b7951389e3dF313Ea9876508856f": { - "balance": "0x0" - }, - "0x3823C59973351F50e8B985e182b81300Dae9Bb45": { - "balance": "0x0" - }, - "0xf1F63D55E8f25C962079BE324c71CDcf792c6047": { - "balance": "0x0" - }, - "0x09b8556833e53f92EE0b668DB146B43CA2CAB130": { - "balance": "0x0" - }, - "0x422B8d8914cDad779f587414d647e953bB3A87db": { - "balance": "0x0" - }, - "0x9dc641ccD7D1e7C66e47a25598aCe7219548d887": { - "balance": "0x0" - }, - "0x6Eff00186BA65C5FAde98d75aA4d99eF71fA461B": { - "balance": "0x0" - }, - "0xb3864B298f4fDdbbBd2Fa5CF1a2a2748932b3B81": { - "balance": "0x0" - }, - "0x30E8ccaD5A980BDF30447f8c2C48e70989D9d294": { - "balance": "0x0" - }, - "0x98931E2B2272891c2E8e47D675007D94aE90cE64": { - "balance": "0x0" - }, - "0xDA04e0fE4e79eebcaFfCbfFf8eA0BDcd442d2119": { - "balance": "0x0" - }, - "0xc9442048Fd0c34b684035a82188B69c4eE5e8f21": { - "balance": "0x0" - }, - "0x04400BB51B1f886CFf338eb2b4118f9CeB4E6fD5": { - "balance": "0x0" - } - }, - "0x89": { - "0xE2F39519240814a77047490357cEd4d094B6C9C7": { - "balance": "0x0" - }, - "0xbcc30CC9B8109f87fcEDE0C57E3A8c3DC979e3D0": { - "balance": "0x0" - }, - "0x141d32a89a1e0a5Ef360034a2f60a4B917c18838": { - "balance": "0xe3485cfd14b41c" - }, - "0x452cA3DAd6dB7F3a47bbF15b758B6749Db579bBc": { - "balance": "0x0" - }, - "0xa30078E306614C2F444550da6bC759173Dfb61Fd": { - "balance": "0x0" - }, - "0x94d1362400E999b38C845cA2c305c084031DAe84": { - "balance": "0x0" - }, - "0x2b6a82d1Fea4D5B137095cA5306BA2589B630A08": { - "balance": "0x0" - }, - "0xF25bd11C334507Fd007d584E2D0b7b2C6543f714": { - "balance": "0x0" - }, - "0x83AD6A1294d949d514361326bcebAe4F73957327": { - "balance": "0x0" - }, - "0xeeEAB71A5989b7951389e3dF313Ea9876508856f": { - "balance": "0x0" - }, - "0x3823C59973351F50e8B985e182b81300Dae9Bb45": { - "balance": "0x0" - }, - "0xf1F63D55E8f25C962079BE324c71CDcf792c6047": { - "balance": "0x0" - }, - "0x09b8556833e53f92EE0b668DB146B43CA2CAB130": { - "balance": "0x0" - }, - "0x422B8d8914cDad779f587414d647e953bB3A87db": { - "balance": "0x0" - }, - "0x9dc641ccD7D1e7C66e47a25598aCe7219548d887": { - "balance": "0x0" - }, - "0x6Eff00186BA65C5FAde98d75aA4d99eF71fA461B": { - "balance": "0x0" - }, - "0xb3864B298f4fDdbbBd2Fa5CF1a2a2748932b3B81": { - "balance": "0x0" - }, - "0x30E8ccaD5A980BDF30447f8c2C48e70989D9d294": { - "balance": "0x0" - }, - "0x98931E2B2272891c2E8e47D675007D94aE90cE64": { - "balance": "0x0" - }, - "0xDA04e0fE4e79eebcaFfCbfFf8eA0BDcd442d2119": { - "balance": "0x0" - }, - "0xc9442048Fd0c34b684035a82188B69c4eE5e8f21": { - "balance": "0x0" - }, - "0x04400BB51B1f886CFf338eb2b4118f9CeB4E6fD5": { - "balance": "0x0" - } - }, - "0x8f": { - "0xE2F39519240814a77047490357cEd4d094B6C9C7": { - "balance": "0x0" - }, - "0xbcc30CC9B8109f87fcEDE0C57E3A8c3DC979e3D0": { - "balance": "0x0" - }, - "0x141d32a89a1e0a5Ef360034a2f60a4B917c18838": { - "balance": "0xde0b6b3a7640000" - }, - "0x452cA3DAd6dB7F3a47bbF15b758B6749Db579bBc": { - "balance": "0x0" - }, - "0xa30078E306614C2F444550da6bC759173Dfb61Fd": { - "balance": "0x0" - }, - "0x94d1362400E999b38C845cA2c305c084031DAe84": { - "balance": "0x0" - }, - "0x2b6a82d1Fea4D5B137095cA5306BA2589B630A08": { - "balance": "0x0" - }, - "0xF25bd11C334507Fd007d584E2D0b7b2C6543f714": { - "balance": "0x0" - }, - "0x83AD6A1294d949d514361326bcebAe4F73957327": { - "balance": "0x0" - }, - "0xeeEAB71A5989b7951389e3dF313Ea9876508856f": { - "balance": "0x0" - }, - "0x3823C59973351F50e8B985e182b81300Dae9Bb45": { - "balance": "0x0" - }, - "0xf1F63D55E8f25C962079BE324c71CDcf792c6047": { - "balance": "0x0" - }, - "0x09b8556833e53f92EE0b668DB146B43CA2CAB130": { - "balance": "0x0" - }, - "0x422B8d8914cDad779f587414d647e953bB3A87db": { - "balance": "0x0" - }, - "0x9dc641ccD7D1e7C66e47a25598aCe7219548d887": { - "balance": "0x0" - }, - "0x6Eff00186BA65C5FAde98d75aA4d99eF71fA461B": { - "balance": "0x0" - }, - "0xb3864B298f4fDdbbBd2Fa5CF1a2a2748932b3B81": { - "balance": "0x0" - }, - "0x30E8ccaD5A980BDF30447f8c2C48e70989D9d294": { - "balance": "0x0" - }, - "0x98931E2B2272891c2E8e47D675007D94aE90cE64": { - "balance": "0x0" - }, - "0xDA04e0fE4e79eebcaFfCbfFf8eA0BDcd442d2119": { - "balance": "0x0" - }, - "0xc9442048Fd0c34b684035a82188B69c4eE5e8f21": { - "balance": "0x0" - }, - "0x04400BB51B1f886CFf338eb2b4118f9CeB4E6fD5": { - "balance": "0x0" - } - }, - "0xa": { - "0xE2F39519240814a77047490357cEd4d094B6C9C7": { - "balance": "0x0" - }, - "0xbcc30CC9B8109f87fcEDE0C57E3A8c3DC979e3D0": { - "balance": "0x0" - }, - "0x141d32a89a1e0a5Ef360034a2f60a4B917c18838": { - "balance": "0x7edb0185cd28" - }, - "0x452cA3DAd6dB7F3a47bbF15b758B6749Db579bBc": { - "balance": "0x0" - }, - "0xa30078E306614C2F444550da6bC759173Dfb61Fd": { - "balance": "0x0" - }, - "0x94d1362400E999b38C845cA2c305c084031DAe84": { - "balance": "0x0" - }, - "0x2b6a82d1Fea4D5B137095cA5306BA2589B630A08": { - "balance": "0x0" - }, - "0xF25bd11C334507Fd007d584E2D0b7b2C6543f714": { - "balance": "0x0" - }, - "0x83AD6A1294d949d514361326bcebAe4F73957327": { - "balance": "0x0" - }, - "0xeeEAB71A5989b7951389e3dF313Ea9876508856f": { - "balance": "0x0" - }, - "0x3823C59973351F50e8B985e182b81300Dae9Bb45": { - "balance": "0x0" - }, - "0xf1F63D55E8f25C962079BE324c71CDcf792c6047": { - "balance": "0x0" - }, - "0x09b8556833e53f92EE0b668DB146B43CA2CAB130": { - "balance": "0x0" - }, - "0x422B8d8914cDad779f587414d647e953bB3A87db": { - "balance": "0x0" - }, - "0x9dc641ccD7D1e7C66e47a25598aCe7219548d887": { - "balance": "0x0" - }, - "0x6Eff00186BA65C5FAde98d75aA4d99eF71fA461B": { - "balance": "0x0" - }, - "0xb3864B298f4fDdbbBd2Fa5CF1a2a2748932b3B81": { - "balance": "0x0" - }, - "0x30E8ccaD5A980BDF30447f8c2C48e70989D9d294": { - "balance": "0x0" - }, - "0x98931E2B2272891c2E8e47D675007D94aE90cE64": { - "balance": "0x0" - }, - "0xDA04e0fE4e79eebcaFfCbfFf8eA0BDcd442d2119": { - "balance": "0x0" - }, - "0xc9442048Fd0c34b684035a82188B69c4eE5e8f21": { - "balance": "0x0" - }, - "0x04400BB51B1f886CFf338eb2b4118f9CeB4E6fD5": { - "balance": "0x0" - } - }, - "0xa4b1": { - "0xE2F39519240814a77047490357cEd4d094B6C9C7": { - "balance": "0x0" - }, - "0xbcc30CC9B8109f87fcEDE0C57E3A8c3DC979e3D0": { - "balance": "0x0" - }, - "0x141d32a89a1e0a5Ef360034a2f60a4B917c18838": { - "balance": "0x2a742850646bc6" - }, - "0x452cA3DAd6dB7F3a47bbF15b758B6749Db579bBc": { - "balance": "0x0" - }, - "0xa30078E306614C2F444550da6bC759173Dfb61Fd": { - "balance": "0x0" - }, - "0x94d1362400E999b38C845cA2c305c084031DAe84": { - "balance": "0x0" - }, - "0x2b6a82d1Fea4D5B137095cA5306BA2589B630A08": { - "balance": "0x0" - }, - "0xF25bd11C334507Fd007d584E2D0b7b2C6543f714": { - "balance": "0x0" - }, - "0x83AD6A1294d949d514361326bcebAe4F73957327": { - "balance": "0x0" - }, - "0xeeEAB71A5989b7951389e3dF313Ea9876508856f": { - "balance": "0x0" - }, - "0x3823C59973351F50e8B985e182b81300Dae9Bb45": { - "balance": "0x0" - }, - "0xf1F63D55E8f25C962079BE324c71CDcf792c6047": { - "balance": "0x0" - }, - "0x09b8556833e53f92EE0b668DB146B43CA2CAB130": { - "balance": "0x0" - }, - "0x422B8d8914cDad779f587414d647e953bB3A87db": { - "balance": "0x0" - }, - "0x9dc641ccD7D1e7C66e47a25598aCe7219548d887": { - "balance": "0x0" - }, - "0x6Eff00186BA65C5FAde98d75aA4d99eF71fA461B": { - "balance": "0x0" - }, - "0xb3864B298f4fDdbbBd2Fa5CF1a2a2748932b3B81": { - "balance": "0x0" - }, - "0x30E8ccaD5A980BDF30447f8c2C48e70989D9d294": { - "balance": "0x0" - }, - "0x98931E2B2272891c2E8e47D675007D94aE90cE64": { - "balance": "0x0" - }, - "0xDA04e0fE4e79eebcaFfCbfFf8eA0BDcd442d2119": { - "balance": "0x0" - }, - "0xc9442048Fd0c34b684035a82188B69c4eE5e8f21": { - "balance": "0x0" - }, - "0x04400BB51B1f886CFf338eb2b4118f9CeB4E6fD5": { - "balance": "0x0" - } - }, - "0xa86a": { - "0xE2F39519240814a77047490357cEd4d094B6C9C7": { - "balance": "0x0" - }, - "0xbcc30CC9B8109f87fcEDE0C57E3A8c3DC979e3D0": { - "balance": "0x0" - }, - "0x141d32a89a1e0a5Ef360034a2f60a4B917c18838": { - "balance": "0x14e2a15f4e83457e" - }, - "0x452cA3DAd6dB7F3a47bbF15b758B6749Db579bBc": { - "balance": "0x0" - }, - "0xa30078E306614C2F444550da6bC759173Dfb61Fd": { - "balance": "0x0" - }, - "0x94d1362400E999b38C845cA2c305c084031DAe84": { - "balance": "0x0" - }, - "0x2b6a82d1Fea4D5B137095cA5306BA2589B630A08": { - "balance": "0x0" - }, - "0xF25bd11C334507Fd007d584E2D0b7b2C6543f714": { - "balance": "0x0" - }, - "0x83AD6A1294d949d514361326bcebAe4F73957327": { - "balance": "0x0" - }, - "0xeeEAB71A5989b7951389e3dF313Ea9876508856f": { - "balance": "0x0" - }, - "0x3823C59973351F50e8B985e182b81300Dae9Bb45": { - "balance": "0x0" - }, - "0xf1F63D55E8f25C962079BE324c71CDcf792c6047": { - "balance": "0x0" - }, - "0x09b8556833e53f92EE0b668DB146B43CA2CAB130": { - "balance": "0x0" - }, - "0x422B8d8914cDad779f587414d647e953bB3A87db": { - "balance": "0x0" - }, - "0x9dc641ccD7D1e7C66e47a25598aCe7219548d887": { - "balance": "0x0" - }, - "0x6Eff00186BA65C5FAde98d75aA4d99eF71fA461B": { - "balance": "0x0" - }, - "0xb3864B298f4fDdbbBd2Fa5CF1a2a2748932b3B81": { - "balance": "0x0" - }, - "0x30E8ccaD5A980BDF30447f8c2C48e70989D9d294": { - "balance": "0x0" - }, - "0x98931E2B2272891c2E8e47D675007D94aE90cE64": { - "balance": "0x0" - }, - "0xDA04e0fE4e79eebcaFfCbfFf8eA0BDcd442d2119": { - "balance": "0x0" - }, - "0xc9442048Fd0c34b684035a82188B69c4eE5e8f21": { - "balance": "0x0" - }, - "0x04400BB51B1f886CFf338eb2b4118f9CeB4E6fD5": { - "balance": "0x0" - } - }, - "0xaa36a7": { - "0xE2F39519240814a77047490357cEd4d094B6C9C7": { - "balance": "0x0" - }, - "0xbcc30CC9B8109f87fcEDE0C57E3A8c3DC979e3D0": { - "balance": "0x0" - }, - "0x141d32a89a1e0a5Ef360034a2f60a4B917c18838": { - "balance": "0x0" - }, - "0x452cA3DAd6dB7F3a47bbF15b758B6749Db579bBc": { - "balance": "0x0" - }, - "0xa30078E306614C2F444550da6bC759173Dfb61Fd": { - "balance": "0x0" - }, - "0x94d1362400E999b38C845cA2c305c084031DAe84": { - "balance": "0x0" - }, - "0x2b6a82d1Fea4D5B137095cA5306BA2589B630A08": { - "balance": "0x0" - }, - "0xF25bd11C334507Fd007d584E2D0b7b2C6543f714": { - "balance": "0x0" - }, - "0x83AD6A1294d949d514361326bcebAe4F73957327": { - "balance": "0x0" - }, - "0xeeEAB71A5989b7951389e3dF313Ea9876508856f": { - "balance": "0x0" - }, - "0x3823C59973351F50e8B985e182b81300Dae9Bb45": { - "balance": "0x0" - }, - "0xf1F63D55E8f25C962079BE324c71CDcf792c6047": { - "balance": "0x0" - }, - "0x09b8556833e53f92EE0b668DB146B43CA2CAB130": { - "balance": "0x0" - }, - "0x422B8d8914cDad779f587414d647e953bB3A87db": { - "balance": "0x0" - }, - "0x9dc641ccD7D1e7C66e47a25598aCe7219548d887": { - "balance": "0x0" - }, - "0x6Eff00186BA65C5FAde98d75aA4d99eF71fA461B": { - "balance": "0x0" - }, - "0xb3864B298f4fDdbbBd2Fa5CF1a2a2748932b3B81": { - "balance": "0x0" - }, - "0x30E8ccaD5A980BDF30447f8c2C48e70989D9d294": { - "balance": "0x0" - }, - "0x98931E2B2272891c2E8e47D675007D94aE90cE64": { - "balance": "0x0" - }, - "0xDA04e0fE4e79eebcaFfCbfFf8eA0BDcd442d2119": { - "balance": "0x0" - }, - "0xc9442048Fd0c34b684035a82188B69c4eE5e8f21": { - "balance": "0x0" - }, - "0x04400BB51B1f886CFf338eb2b4118f9CeB4E6fD5": { - "balance": "0x0" - } - }, - "0xe705": { - "0xE2F39519240814a77047490357cEd4d094B6C9C7": { - "balance": "0x0" - }, - "0xbcc30CC9B8109f87fcEDE0C57E3A8c3DC979e3D0": { - "balance": "0x0" - }, - "0x141d32a89a1e0a5Ef360034a2f60a4B917c18838": { - "balance": "0x0" - }, - "0x452cA3DAd6dB7F3a47bbF15b758B6749Db579bBc": { - "balance": "0x0" - }, - "0xa30078E306614C2F444550da6bC759173Dfb61Fd": { - "balance": "0x0" - }, - "0x94d1362400E999b38C845cA2c305c084031DAe84": { - "balance": "0x0" - }, - "0x2b6a82d1Fea4D5B137095cA5306BA2589B630A08": { - "balance": "0x0" - }, - "0xF25bd11C334507Fd007d584E2D0b7b2C6543f714": { - "balance": "0x0" - }, - "0x83AD6A1294d949d514361326bcebAe4F73957327": { - "balance": "0x0" - }, - "0xeeEAB71A5989b7951389e3dF313Ea9876508856f": { - "balance": "0x0" - }, - "0x3823C59973351F50e8B985e182b81300Dae9Bb45": { - "balance": "0x0" - }, - "0xf1F63D55E8f25C962079BE324c71CDcf792c6047": { - "balance": "0x0" - }, - "0x09b8556833e53f92EE0b668DB146B43CA2CAB130": { - "balance": "0x0" - }, - "0x422B8d8914cDad779f587414d647e953bB3A87db": { - "balance": "0x0" - }, - "0x9dc641ccD7D1e7C66e47a25598aCe7219548d887": { - "balance": "0x0" - }, - "0x6Eff00186BA65C5FAde98d75aA4d99eF71fA461B": { - "balance": "0x0" - }, - "0xb3864B298f4fDdbbBd2Fa5CF1a2a2748932b3B81": { - "balance": "0x0" - }, - "0x30E8ccaD5A980BDF30447f8c2C48e70989D9d294": { - "balance": "0x0" - }, - "0x98931E2B2272891c2E8e47D675007D94aE90cE64": { - "balance": "0x0" - }, - "0xDA04e0fE4e79eebcaFfCbfFf8eA0BDcd442d2119": { - "balance": "0x0" - }, - "0xc9442048Fd0c34b684035a82188B69c4eE5e8f21": { - "balance": "0x0" - }, - "0x04400BB51B1f886CFf338eb2b4118f9CeB4E6fD5": { - "balance": "0x0" - } - }, - "0xe708": { - "0xE2F39519240814a77047490357cEd4d094B6C9C7": { - "balance": "0x0" - }, - "0xbcc30CC9B8109f87fcEDE0C57E3A8c3DC979e3D0": { - "balance": "0x0" - }, - "0x141d32a89a1e0a5Ef360034a2f60a4B917c18838": { - "balance": "0x7a117a1ec8643" - }, - "0x452cA3DAd6dB7F3a47bbF15b758B6749Db579bBc": { - "balance": "0x0" - }, - "0xa30078E306614C2F444550da6bC759173Dfb61Fd": { - "balance": "0x0" - }, - "0x94d1362400E999b38C845cA2c305c084031DAe84": { - "balance": "0x0" - }, - "0x2b6a82d1Fea4D5B137095cA5306BA2589B630A08": { - "balance": "0x0" - }, - "0xF25bd11C334507Fd007d584E2D0b7b2C6543f714": { - "balance": "0x0" - }, - "0x83AD6A1294d949d514361326bcebAe4F73957327": { - "balance": "0x0" - }, - "0xeeEAB71A5989b7951389e3dF313Ea9876508856f": { - "balance": "0x0" - }, - "0x3823C59973351F50e8B985e182b81300Dae9Bb45": { - "balance": "0x0" - }, - "0xf1F63D55E8f25C962079BE324c71CDcf792c6047": { - "balance": "0x0" - }, - "0x09b8556833e53f92EE0b668DB146B43CA2CAB130": { - "balance": "0x0" - }, - "0x422B8d8914cDad779f587414d647e953bB3A87db": { - "balance": "0x0" - }, - "0x9dc641ccD7D1e7C66e47a25598aCe7219548d887": { - "balance": "0x0" - }, - "0x6Eff00186BA65C5FAde98d75aA4d99eF71fA461B": { - "balance": "0x0" - }, - "0xb3864B298f4fDdbbBd2Fa5CF1a2a2748932b3B81": { - "balance": "0x0" - }, - "0x30E8ccaD5A980BDF30447f8c2C48e70989D9d294": { - "balance": "0x0" - }, - "0x98931E2B2272891c2E8e47D675007D94aE90cE64": { - "balance": "0x0" - }, - "0xDA04e0fE4e79eebcaFfCbfFf8eA0BDcd442d2119": { - "balance": "0x0" - }, - "0xc9442048Fd0c34b684035a82188B69c4eE5e8f21": { - "balance": "0x0" - }, - "0x04400BB51B1f886CFf338eb2b4118f9CeB4E6fD5": { - "balance": "0x0" - } - } - }, - "unapprovedDecryptMsgs": {}, - "unapprovedDecryptMsgCount": 0, - "unapprovedEncryptionPublicKeyMsgs": {}, - "unapprovedEncryptionPublicKeyMsgCount": 0, - "signatureRequests": {}, - "unapprovedPersonalMsgs": {}, - "unapprovedTypedMessages": {}, - "unapprovedPersonalMsgCount": 0, - "unapprovedTypedMessagesCount": 0, - "quoteRequest": [ - { - "srcTokenAddress": "0xf8a0bf9cf54bb92f17374d9e9a321e6a111a51bd", - "destTokenAddress": "0x55d398326f99059fF775485246999027B3197955", - "srcTokenAmount": "487747159749581540", - "srcChainId": "eip155:56", - "destChainId": "eip155:56", - "insufficientBal": false, - "slippage": 2, - "walletAddress": "0x141d32a89a1e0a5ef360034a2f60a4b917c18838", - "destWalletAddress": "0x141d32a89a1e0a5ef360034a2f60a4b917c18838", - "gasIncluded": true, - "gasIncluded7702": false, - "resetApproval": false - }, - { - "srcTokenAddress": "0x1AF3F329e8BE154074D8769D1FFa4eE058B1DBc3", - "destTokenAddress": "0x55d398326f99059ff775485246999027b3197955", - "srcTokenAmount": "1000000000000000000", - "srcChainId": "eip155:56", - "destChainId": "eip155:56", - "insufficientBal": false, - "slippage": 2, - "walletAddress": "0x141d32a89a1e0a5ef360034a2f60a4b917c18838", - "destWalletAddress": "0x141d32a89a1e0a5ef360034a2f60a4b917c18838", - "gasIncluded": true, - "gasIncluded7702": false, - "resetApproval": false - } - ], - "quotesInitialLoadTime": 466, - "quotes": [ - { - "quote": { - "requestId": "0x964569bf63a3b5dd6d483adc043a2253d506417889f574b964aaa95796765b1a", - "bridgeId": "okx", - "srcChainId": 56, - "destChainId": 56, - "aggregator": "okx", - "aggregatorType": "AGG", - "srcAsset": { - "address": "0x1af3f329e8be154074d8769d1ffa4ee058b1dbc3", - "chainId": 56, - "assetId": "eip155:56/erc20:0x1af3f329e8be154074d8769d1ffa4ee058b1dbc3", - "symbol": "DAI", - "decimals": 18, - "name": "BNB pegged Dai Token", - "coingeckoId": "binance-peg-dai", - "aggregators": [ - "pancakeExtended", - "oneInch", - "liFi", - "trustWallet", - "socket", - "rubic", - "rango", - "sonarwatch", - "sushiSwap", - "binanceDex" - ], - "occurrences": 12, - "iconUrl": "https://static.cx.metamask.io/api/v2/tokenIcons/assets/eip155/56/erc20/0x1af3f329e8be154074d8769d1ffa4ee058b1dbc3.png", - "metadata": { - "storage": { - "balance": 1, - "approval": 2 - } - } - }, - "srcTokenAmount": "991250000000000000", - "destAsset": { - "address": "0x55d398326f99059ff775485246999027b3197955", - "chainId": 56, - "assetId": "eip155:56/erc20:0x55d398326f99059ff775485246999027b3197955", - "symbol": "USDT", - "decimals": 18, - "name": "Tether USD", - "coingeckoId": "binance-bridged-usdt-bnb-smart-chain", - "aggregators": [ - "pancakeExtended", - "oneInch", - "liFi", - "trustWallet", - "socket", - "rubic", - "squid", - "rango", - "sonarwatch", - "sushiSwap" - ], - "occurrences": 11, - "iconUrl": "https://static.cx.metamask.io/api/v2/tokenIcons/assets/eip155/56/erc20/0x55d398326f99059ff775485246999027b3197955.png", - "metadata": { - "storage": { - "balance": 1, - "approval": 2 - } - } - }, - "destTokenAmount": "990847005897558151", - "minDestTokenAmount": "971030065779606987", - "walletAddress": "0x141d32a89a1e0a5ef360034a2f60a4b917c18838", - "destWalletAddress": "0x141d32a89a1e0a5ef360034a2f60a4b917c18838", - "feeData": { - "metabridge": { - "amount": "8750000000000000", - "asset": { - "address": "0x1af3f329e8be154074d8769d1ffa4ee058b1dbc3", - "chainId": 56, - "assetId": "eip155:56/erc20:0x1af3f329e8be154074d8769d1ffa4ee058b1dbc3", - "symbol": "DAI", - "decimals": 18, - "name": "BNB pegged Dai Token", - "coingeckoId": "binance-peg-dai", - "aggregators": [ - "pancakeExtended", - "oneInch", - "liFi", - "trustWallet", - "socket", - "rubic", - "rango", - "sonarwatch", - "sushiSwap", - "binanceDex" - ], - "occurrences": 12, - "iconUrl": "https://static.cx.metamask.io/api/v2/tokenIcons/assets/eip155/56/erc20/0x1af3f329e8be154074d8769d1ffa4ee058b1dbc3.png", - "metadata": { - "storage": { - "balance": 1, - "approval": 2 - } - } - }, - "quoteBpsFee": 87.5, - "baseBpsFee": 87.5, - "usd": "0.008742761859012143" - } - }, - "bridges": ["okx"], - "protocols": ["okx"], - "steps": [], - "slippage": 2, - "gasSponsored": false, - "gasIncluded": false, - "gasIncluded7702": false, - "priceData": { - "totalFromAmountUsd": "0.999172783887102", - "totalToAmountUsd": "0.9903694176407155", - "priceImpact": "0.00006118997407835052", - "totalFeeAmountUsd": "0.008742761859012143" - } - }, - "approval": { - "chainId": 56, - "to": "0x1af3f329e8be154074d8769d1ffa4ee058b1dbc3", - "from": "0x141d32a89a1e0a5ef360034a2f60a4b917c18838", - "value": "0x0", - "data": "0x095ea7b30000000000000000000000001a1ec25dc08e98e5e93f1104b5e5cdd298707d310000000000000000000000000000000000000000000000000de0b6b3a7640000", - "gasLimit": 51234, - "feeEstimate": 2771640000000, - "effectiveGas": 46194, - "gasCost": "0", - "gasIncludedFeeData": { - "maxFeePerGas": "0x3938700", - "maxPriorityFeePerGas": "0x3938700", - "gas": "0xb5f0", - "balanceNeeded": "0x28aa8c19000", - "currentBalance": "0x1c64da03f600", - "error": "Not enough funds" - } - }, - "trade": { - "chainId": 56, - "to": "0x1a1ec25DC08e98e5E93F1104B5e5cdD298707d31", - "from": "0x141d32a89a1e0a5ef360034a2f60a4b917c18838", - "value": "0x0", - "data": "0x5f57552900000000000000000000000000000000000000000000000000000000000000800000000000000000000000001af3f329e8be154074d8769d1ffa4ee058b1dbc30000000000000000000000000000000000000000000000000de0b6b3a764000000000000000000000000000000000000000000000000000000000000000000c000000000000000000000000000000000000000000000000000000000000000046f6b78360000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000008400000000000000000000000001af3f329e8be154074d8769d1ffa4ee058b1dbc300000000000000000000000055d398326f99059ff775485246999027b31979550000000000000000000000000000000000000000000000000dc1a09f859b20000000000000000000000000000000000000000000000000000d79cab3390485cb0000000000000000000000000000000000000000000000000000000000000120000000000000000000000000000000000000000000000000001f161421c8e000000000000000000000000000b28da7bc87a9dd1e60849aa7fcb5da24ea913c4200000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000704f2c42696000000000000000000000000000000000000000000000000000000003bbd39960000000000000000000000001af3f329e8be154074d8769d1ffa4ee058b1dbc300000000000000000000000055d398326f99059ff775485246999027b31979550000000000000000000000000000000000000000000000000dc1a09f859b20000000000000000000000000000000000000000000000000000d79cab3390485cb000000000000000000000000000000000000000000000000000000006a07ac4300000000000000000000000000000000000000000000000000000000000000e00000000000000000000000000000000000000000000000000000000000000002000000000000000000000000000000000000000000000000000000000000004000000000000000000000000000000000000000000000000000000000000003e000000000000000000000000000000000000000000000000000000000000000a00000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000000000016000000000000000000000000000000000000000000000000000000000000001c00000000000000000000000001af3f329e8be154074d8769d1ffa4ee058b1dbc3000000000000000000000000000000000000000000000000000000000000000200000000000000000000000072e3ee933eaf568ea35049f30c01990cb6c2544b00000000000000000000000072e3ee933eaf568ea35049f30c01990cb6c2544b000000000000000000000000000000000000000000000000000000000000000200000000000000000000000072e3ee933eaf568ea35049f30c01990cb6c2544b00000000000000000000000072e3ee933eaf568ea35049f30c01990cb6c2544b0000000000000000000000000000000000000000000000000000000000000002800000000000000000011fa4860822cac26fb7e74e2cfad2642bc8a14d51227080000000000000000002076c860822cac26fb7e74e2cfad2642bc8a14d51227000000000000000000000000000000000000000000000000000000000000000020000000000000000000000000000000000000000000000000000000000000040000000000000000000000000000000000000000000000000000000000000010000000000000000000000000000000000000000000000000000000000000000a00000000000000000000000001af3f329e8be154074d8769d1ffa4ee058b1dbc3000000000000000000000000e9e7cea3dedca5984780bafc599bd69add087d5600000000000000000000000000000000000000000000000000000000000000040000000000000000000000000000000000000000000000000000000000000002000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000a00000000000000000000000001af3f329e8be154074d8769d1ffa4ee058b1dbc300000000000000000000000055d398326f99059ff775485246999027b319795500000000000000000000000000000000000000000000000000000000000000040000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000000000000000000000000000000e000000000000000000000000000000000000000000000000000000000000001200000000000000000000000000000000000000000000000000000000000000160000000000000000000000000e9e7cea3dedca5984780bafc599bd69add087d560000000000000000000000000000000000000000000000000000000000000001000000000000000000000000d953ed5afe1e2d2a24e0ef1cfdb3bcfe35cb5a1e0000000000000000000000000000000000000000000000000000000000000001000000000000000000000000d953ed5afe1e2d2a24e0ef1cfdb3bcfe35cb5a1e0000000000000000000000000000000000000000000000000000000000000001000000000000000001022710be60d4c4250438344bec816ec2dec99925deb4c700000000000000000000000000000000000000000000000000000000000000010000000000000000000000000000000000000000000000000000000000000020000000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000000000007777777711118000000000000000000000000000000000000dc0321a25488887777777771111000000000064fa00a9ed787f3793db668bff3e6e6e7db0f92a1b0000000000000000000000000000000000000000000000000000000042", - "gasLimit": 1228766, - "feeEstimate": 38295720000000, - "effectiveGas": 638262, - "gasCost": "0", - "gasIncludedFeeData": { - "maxFeePerGas": "0x3938700", - "maxPriorityFeePerGas": "0x3938700", - "gas": "0xc7fe9", - "balanceNeeded": "0x2cb3c53edf00", - "currentBalance": "0x19da31426600", - "error": "Not enough funds" - } - }, - "estimatedProcessingTimeInSeconds": 0, - "quoteId": "3527de48-d52a-4b2f-98c1-877551ec1ade", - "quoteRequestIndex": 1 - }, - { - "quote": { - "requestId": "0xb535799ef1c62d3ba5175ff8092a4252acd3b93f2d6059526ef81ba3dfd69143", - "bridgeId": "1inch", - "srcChainId": 56, - "destChainId": 56, - "aggregator": "1inch", - "aggregatorType": "AGG", - "srcAsset": { - "address": "0x1af3f329e8be154074d8769d1ffa4ee058b1dbc3", - "chainId": 56, - "assetId": "eip155:56/erc20:0x1af3f329e8be154074d8769d1ffa4ee058b1dbc3", - "symbol": "DAI", - "decimals": 18, - "name": "BNB pegged Dai Token", - "coingeckoId": "binance-peg-dai", - "aggregators": [ - "pancakeExtended", - "oneInch", - "liFi", - "trustWallet", - "socket", - "rubic", - "rango", - "sonarwatch", - "sushiSwap", - "binanceDex" - ], - "occurrences": 12, - "iconUrl": "https://static.cx.metamask.io/api/v2/tokenIcons/assets/eip155/56/erc20/0x1af3f329e8be154074d8769d1ffa4ee058b1dbc3.png", - "metadata": { - "storage": { - "balance": 1, - "approval": 2 - } - } - }, - "srcTokenAmount": "991250000000000000", - "destAsset": { - "address": "0x55d398326f99059ff775485246999027b3197955", - "chainId": 56, - "assetId": "eip155:56/erc20:0x55d398326f99059ff775485246999027b3197955", - "symbol": "USDT", - "decimals": 18, - "name": "Tether USD", - "coingeckoId": "binance-bridged-usdt-bnb-smart-chain", - "aggregators": [ - "pancakeExtended", - "oneInch", - "liFi", - "trustWallet", - "socket", - "rubic", - "squid", - "rango", - "sonarwatch", - "sushiSwap" - ], - "occurrences": 11, - "iconUrl": "https://static.cx.metamask.io/api/v2/tokenIcons/assets/eip155/56/erc20/0x55d398326f99059ff775485246999027b3197955.png", - "metadata": { - "storage": { - "balance": 1, - "approval": 2 - } - } - }, - "destTokenAmount": "990599597874191689", - "minDestTokenAmount": "970787605916707855", - "walletAddress": "0x141d32a89a1e0a5ef360034a2f60a4b917c18838", - "destWalletAddress": "0x141d32a89a1e0a5ef360034a2f60a4b917c18838", - "feeData": { - "metabridge": { - "amount": "8750000000000000", - "asset": { - "address": "0x1af3f329e8be154074d8769d1ffa4ee058b1dbc3", - "chainId": 56, - "assetId": "eip155:56/erc20:0x1af3f329e8be154074d8769d1ffa4ee058b1dbc3", - "symbol": "DAI", - "decimals": 18, - "name": "BNB pegged Dai Token", - "coingeckoId": "binance-peg-dai", - "aggregators": [ - "pancakeExtended", - "oneInch", - "liFi", - "trustWallet", - "socket", - "rubic", - "rango", - "sonarwatch", - "sushiSwap", - "binanceDex" - ], - "occurrences": 12, - "iconUrl": "https://static.cx.metamask.io/api/v2/tokenIcons/assets/eip155/56/erc20/0x1af3f329e8be154074d8769d1ffa4ee058b1dbc3.png", - "metadata": { - "storage": { - "balance": 1, - "approval": 2 - } - } - }, - "quoteBpsFee": 87.5, - "baseBpsFee": 87.5, - "usd": "0.008742761859012143" - } - }, - "bridges": ["1inch"], - "protocols": ["1inch"], - "steps": [], - "slippage": 2, - "gasSponsored": false, - "gasIncluded": false, - "gasIncluded7702": false, - "priceData": { - "totalFromAmountUsd": "0.999172783887102", - "totalToAmountUsd": "0.9901221288680164", - "priceImpact": "0.0003108681615314265", - "totalFeeAmountUsd": "0.008742761859012143" - } - }, - "approval": { - "chainId": 56, - "to": "0x1af3f329e8be154074d8769d1ffa4ee058b1dbc3", - "from": "0x141d32a89a1e0a5ef360034a2f60a4b917c18838", - "value": "0x0", - "data": "0x095ea7b30000000000000000000000001a1ec25dc08e98e5e93f1104b5e5cdd298707d310000000000000000000000000000000000000000000000000de0b6b3a7640000", - "gasLimit": 51234, - "feeEstimate": 2771640000000, - "effectiveGas": 46194, - "gasCost": "0", - "gasIncludedFeeData": { - "maxFeePerGas": "0x39386ff", - "maxPriorityFeePerGas": "0x39386ff", - "gas": "0xb5f0", - "balanceNeeded": "0x28aa8c19000", - "currentBalance": "0x1c64da03f600", - "error": "" - } - }, - "trade": { - "chainId": 56, - "to": "0x1a1ec25DC08e98e5E93F1104B5e5cdD298707d31", - "from": "0x141d32a89a1e0a5ef360034a2f60a4b917c18838", - "value": "0x0", - "data": "0x5f57552900000000000000000000000000000000000000000000000000000000000000800000000000000000000000001af3f329e8be154074d8769d1ffa4ee058b1dbc30000000000000000000000000000000000000000000000000de0b6b3a764000000000000000000000000000000000000000000000000000000000000000000c000000000000000000000000000000000000000000000000000000000000000136f6e65496e6368563646656544796e616d69630000000000000000000000000000000000000000000000000000000000000000000000000000000000000003200000000000000000000000001af3f329e8be154074d8769d1ffa4ee058b1dbc300000000000000000000000055d398326f99059ff775485246999027b31979550000000000000000000000000000000000000000000000000dc1a09f859b20000000000000000000000000000000000000000000000000000d78ee2f23046c0f0000000000000000000000000000000000000000000000000000000000000120000000000000000000000000000000000000000000000000001f161421c8e000000000000000000000000000b28da7bc87a9dd1e60849aa7fcb5da24ea913c42000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001e807ed23790000000000000000000000004c3ccc98c01103be72bcfd29e1d2454c98d1a6e30000000000000000000000001af3f329e8be154074d8769d1ffa4ee058b1dbc300000000000000000000000055d398326f99059ff775485246999027b31979550000000000000000000000004c3ccc98c01103be72bcfd29e1d2454c98d1a6e3000000000000000000000000c590175e458b83680867afd273527ff58f74c02b0000000000000000000000000000000000000000000000000dc1a09f859b20000000000000000000000000000000000000000000000000000d78ee2f23046c0f00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000120000000000000000000000000000000000000000000000000000000000000008100000000000000000000000000000000000000000000000000000000006302a00000000000000000000000000000000000000000000000000d78ee2f23046c0fee63c1e581039df62583ddc1c5fda75db152b87113d863b6d61af3f329e8be154074d8769d1ffa4ee058b1dbc3111111125421ca6dc452d289314280a0f8842a65000000000000000000000000000000000000000000000000000000000000007dcbea7c00000000000000000000000000000000000000000000000088", - "gasLimit": 398637, - "feeEstimate": 12446700000000, - "effectiveGas": 207445, - "gasCost": "0", - "gasIncludedFeeData": { - "maxFeePerGas": "0x39386ff", - "maxPriorityFeePerGas": "0x39386ff", - "gas": "0x40e1e", - "balanceNeeded": "0xe8098abd200", - "currentBalance": "0x19da31426600", - "error": "" - } - }, - "estimatedProcessingTimeInSeconds": 0, - "quoteId": "ab32cd90-666e-4fed-911d-dbb8ef8a790d", - "quoteRequestIndex": 1 - }, - { - "quote": { - "requestId": "0xf524cb3593f91ac707d5914a28e2c7bb83ef4ec7e2c6d28bfbbfe2411611fa50", - "bridgeId": "1inch", - "srcChainId": 56, - "destChainId": 56, - "aggregator": "1inch", - "aggregatorType": "AGG", - "srcAsset": { - "address": "0xf8a0bf9cf54bb92f17374d9e9a321e6a111a51bd", - "chainId": 56, - "assetId": "eip155:56/erc20:0xf8a0bf9cf54bb92f17374d9e9a321e6a111a51bd", - "symbol": "LINK", - "decimals": 18, - "name": "BNB pegged ChainLink", - "coingeckoId": "chainlink", - "aggregators": [ - "pancakeTop100", - "oneInch", - "liFi", - "trustWallet", - "socket", - "rubic", - "squid", - "rango", - "sonarwatch", - "sushiSwap" - ], - "occurrences": 13, - "iconUrl": "https://static.cx.metamask.io/api/v2/tokenIcons/assets/eip155/56/erc20/0xf8a0bf9cf54bb92f17374d9e9a321e6a111a51bd.png", - "metadata": { - "storage": { - "balance": 1, - "approval": 2 - } - } - }, - "srcTokenAmount": "487747159749581540", - "destAsset": { - "address": "0x55d398326f99059ff775485246999027b3197955", - "chainId": 56, - "assetId": "eip155:56/erc20:0x55d398326f99059ff775485246999027b3197955", - "symbol": "USDT", - "decimals": 18, - "name": "Tether USD", - "coingeckoId": "binance-bridged-usdt-bnb-smart-chain", - "aggregators": [ - "pancakeExtended", - "oneInch", - "liFi", - "trustWallet", - "socket", - "rubic", - "squid", - "rango", - "sonarwatch", - "sushiSwap" - ], - "occurrences": 11, - "iconUrl": "https://static.cx.metamask.io/api/v2/tokenIcons/assets/eip155/56/erc20/0x55d398326f99059ff775485246999027b3197955.png", - "metadata": { - "storage": { - "balance": 1, - "approval": 2 - } - } - }, - "destTokenAmount": "4845912262241738849", - "minDestTokenAmount": "4748994016996904072", - "walletAddress": "0x141d32a89a1e0a5ef360034a2f60a4b917c18838", - "destWalletAddress": "0x141d32a89a1e0a5ef360034a2f60a4b917c18838", - "feeData": { - "metabridge": { - "amount": "42776022491415097", - "asset": { - "address": "0x55d398326f99059ff775485246999027b3197955", - "chainId": 56, - "assetId": "eip155:56/erc20:0x55d398326f99059ff775485246999027b3197955", - "symbol": "USDT", - "decimals": 18, - "name": "Tether USD", - "coingeckoId": "binance-bridged-usdt-bnb-smart-chain", - "aggregators": [ - "pancakeExtended", - "oneInch", - "liFi", - "trustWallet", - "socket", - "rubic", - "squid", - "rango", - "sonarwatch", - "sushiSwap" - ], - "occurrences": 11, - "iconUrl": "https://static.cx.metamask.io/api/v2/tokenIcons/assets/eip155/56/erc20/0x55d398326f99059ff775485246999027b3197955.png", - "metadata": { - "storage": { - "balance": 1, - "approval": 2 - } - } - }, - "quoteBpsFee": 87.5, - "baseBpsFee": 87.5, - "usd": "0.04275540444857424" - } - }, - "bridges": ["1inch"], - "protocols": ["1inch"], - "steps": [], - "slippage": 2, - "gasSponsored": false, - "gasIncluded": false, - "gasIncluded7702": false, - "priceData": { - "totalFromAmountUsd": "4.906736427080791", - "totalToAmountUsd": "4.843576532531339", - "priceImpact": "0.004158464674862844", - "totalFeeAmountUsd": "0.04275540444857424" - } - }, - "approval": { - "chainId": 56, - "to": "0xf8a0bf9cf54bb92f17374d9e9a321e6a111a51bd", - "from": "0x141d32a89a1e0a5ef360034a2f60a4b917c18838", - "value": "0x0", - "data": "0x095ea7b30000000000000000000000001a1ec25dc08e98e5e93f1104b5e5cdd298707d3100000000000000000000000000000000000000000000000006c4d37525145ae4", - "gasLimit": 51261, - "feeEstimate": 2773080000000, - "effectiveGas": 46218, - "gasCost": "0", - "gasIncludedFeeData": { - "maxFeePerGas": "0x39386ff", - "maxPriorityFeePerGas": "0x39386ff", - "gas": "0xb608", - "balanceNeeded": "0x28afe963800", - "currentBalance": "0x1c64da03f600", - "error": "" - } - }, - "trade": { - "chainId": 56, - "to": "0x1a1ec25DC08e98e5E93F1104B5e5cdD298707d31", - "from": "0x141d32a89a1e0a5ef360034a2f60a4b917c18838", - "value": "0x0", - "data": "0x5f5755290000000000000000000000000000000000000000000000000000000000000080000000000000000000000000f8a0bf9cf54bb92f17374d9e9a321e6a111a51bd00000000000000000000000000000000000000000000000006c4d37525145ae400000000000000000000000000000000000000000000000000000000000000c000000000000000000000000000000000000000000000000000000000000000136f6e65496e6368563646656544796e616d6963000000000000000000000000000000000000000000000000000000000000000000000000000000000000000320000000000000000000000000f8a0bf9cf54bb92f17374d9e9a321e6a111a51bd00000000000000000000000055d398326f99059ff775485246999027b319795500000000000000000000000000000000000000000000000006c4d37525145ae400000000000000000000000000000000000000000000000041e7d0e5af8e4c8800000000000000000000000000000000000000000000000000000000000001200000000000000000000000000000000000000000000000000097f890d9814239000000000000000000000000b28da7bc87a9dd1e60849aa7fcb5da24ea913c42000000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000000001e807ed23790000000000000000000000004c3ccc98c01103be72bcfd29e1d2454c98d1a6e3000000000000000000000000f8a0bf9cf54bb92f17374d9e9a321e6a111a51bd00000000000000000000000055d398326f99059ff775485246999027b31979550000000000000000000000004c3ccc98c01103be72bcfd29e1d2454c98d1a6e3000000000000000000000000c590175e458b83680867afd273527ff58f74c02b00000000000000000000000000000000000000000000000006c4d37525145ae4000000000000000000000000000000000000000000000000427cbf5f288cf8f300000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000120000000000000000000000000000000000000000000000000000000000000008100000000000000000000000000000000000000000000000000000000006302a0000000000000000000000000000000000000000000000000427cbf5f288cf8f3ee63c1e580c8d19b4ea42939a4b14260f0c8b4a0d6f70c8496f8a0bf9cf54bb92f17374d9e9a321e6a111a51bd111111125421ca6dc452d289314280a0f8842a65000000000000000000000000000000000000000000000000000000000000007dcbea7c00000000000000000000000000000000000000000000000031", - "gasLimit": 412268, - "feeEstimate": 12876060000000, - "effectiveGas": 214601, - "gasCost": "0", - "gasIncludedFeeData": { - "maxFeePerGas": "0x39386ff", - "maxPriorityFeePerGas": "0x39386ff", - "gas": "0x4319d", - "balanceNeeded": "0xeff8a50cb00", - "currentBalance": "0x19d9db6dbe00", - "error": "" - } - }, - "estimatedProcessingTimeInSeconds": 0, - "quoteId": "6c632f67-6d52-4d5b-b551-8dd189fa64df", - "quoteRequestIndex": 0 - }, - { - "quote": { - "requestId": "0xf90d1f9235b4327b1d99731324833fe658a17cbe54712eab067d2b44f37d7cb3", - "bridgeId": "0x", - "srcChainId": 56, - "destChainId": 56, - "aggregator": "0x", - "aggregatorType": "AGG", - "srcAsset": { - "address": "0xf8a0bf9cf54bb92f17374d9e9a321e6a111a51bd", - "chainId": 56, - "assetId": "eip155:56/erc20:0xf8a0bf9cf54bb92f17374d9e9a321e6a111a51bd", - "symbol": "LINK", - "decimals": 18, - "name": "BNB pegged ChainLink", - "coingeckoId": "chainlink", - "aggregators": [ - "pancakeTop100", - "oneInch", - "liFi", - "trustWallet", - "socket", - "rubic", - "squid", - "rango", - "sonarwatch", - "sushiSwap" - ], - "occurrences": 13, - "iconUrl": "https://static.cx.metamask.io/api/v2/tokenIcons/assets/eip155/56/erc20/0xf8a0bf9cf54bb92f17374d9e9a321e6a111a51bd.png", - "metadata": { - "storage": { - "balance": 1, - "approval": 2 - } - } - }, - "srcTokenAmount": "487747159749581540", - "destAsset": { - "address": "0x55d398326f99059ff775485246999027b3197955", - "chainId": 56, - "assetId": "eip155:56/erc20:0x55d398326f99059ff775485246999027b3197955", - "symbol": "USDT", - "decimals": 18, - "name": "Tether USD", - "coingeckoId": "binance-bridged-usdt-bnb-smart-chain", - "aggregators": [ - "pancakeExtended", - "oneInch", - "liFi", - "trustWallet", - "socket", - "rubic", - "squid", - "rango", - "sonarwatch", - "sushiSwap" - ], - "occurrences": 11, - "iconUrl": "https://static.cx.metamask.io/api/v2/tokenIcons/assets/eip155/56/erc20/0x55d398326f99059ff775485246999027b3197955.png", - "metadata": { - "storage": { - "balance": 1, - "approval": 2 - } - } - }, - "destTokenAmount": "4850193215727346824", - "minDestTokenAmount": "4753189351412799887", - "walletAddress": "0x141d32a89a1e0a5ef360034a2f60a4b917c18838", - "destWalletAddress": "0x141d32a89a1e0a5ef360034a2f60a4b917c18838", - "feeData": { - "metabridge": { - "amount": "42813811488135470", - "asset": { - "address": "0x55d398326f99059ff775485246999027b3197955", - "chainId": 56, - "assetId": "eip155:56/erc20:0x55d398326f99059ff775485246999027b3197955", - "symbol": "USDT", - "decimals": 18, - "name": "Tether USD", - "coingeckoId": "binance-bridged-usdt-bnb-smart-chain", - "aggregators": [ - "pancakeExtended", - "oneInch", - "liFi", - "trustWallet", - "socket", - "rubic", - "squid", - "rango", - "sonarwatch", - "sushiSwap" - ], - "occurrences": 11, - "iconUrl": "https://static.cx.metamask.io/api/v2/tokenIcons/assets/eip155/56/erc20/0x55d398326f99059ff775485246999027b3197955.png", - "metadata": { - "storage": { - "balance": 1, - "approval": 2 - } - } - }, - "quoteBpsFee": 87.5, - "baseBpsFee": 87.5, - "usd": "0.04279317523099819" - } - }, - "bridges": ["0x"], - "protocols": ["0x"], - "steps": [], - "slippage": 2, - "gasSponsored": false, - "gasIncluded": false, - "gasIncluded7702": false, - "priceData": { - "totalFromAmountUsd": "4.906736427080791", - "totalToAmountUsd": "4.847855422597367", - "priceImpact": "0.00327872293356457", - "totalFeeAmountUsd": "0.04279317523099819" - } - }, - "approval": { - "chainId": 56, - "to": "0xf8a0bf9cf54bb92f17374d9e9a321e6a111a51bd", - "from": "0x141d32a89a1e0a5ef360034a2f60a4b917c18838", - "value": "0x0", - "data": "0x095ea7b30000000000000000000000001a1ec25dc08e98e5e93f1104b5e5cdd298707d3100000000000000000000000000000000000000000000000006c4d37525145ae4", - "gasLimit": 51261, - "feeEstimate": 2773080000000, - "effectiveGas": 46218, - "gasCost": "0", - "gasIncludedFeeData": { - "maxFeePerGas": "0x39386ff", - "maxPriorityFeePerGas": "0x39386ff", - "gas": "0xb608", - "balanceNeeded": "0x28afe963800", - "currentBalance": "0x1c64da03f600", - "error": "" - } - }, - "trade": { - "chainId": 56, - "to": "0x1a1ec25DC08e98e5E93F1104B5e5cdD298707d31", - "from": "0x141d32a89a1e0a5ef360034a2f60a4b917c18838", - "value": "0x0", - "data": "0x5f5755290000000000000000000000000000000000000000000000000000000000000080000000000000000000000000f8a0bf9cf54bb92f17374d9e9a321e6a111a51bd00000000000000000000000000000000000000000000000006c4d37525145ae400000000000000000000000000000000000000000000000000000000000000c00000000000000000000000000000000000000000000000000000000000000004307856320000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000005a0000000000000000000000000f8a0bf9cf54bb92f17374d9e9a321e6a111a51bd00000000000000000000000055d398326f99059ff775485246999027b319795500000000000000000000000000000000000000000000000006c4d37525145ae400000000000000000000000000000000000000000000000041f6b8881921198f000000000000000000000000000000000000000000000000000000000000012000000000000000000000000000000000000000000000000000981aef493b192e000000000000000000000000b28da7bc87a9dd1e60849aa7fcb5da24ea913c42000000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000000004642213bc0b000000000000000000000000c2eff1f1ce35d395408a34ad881dbcd978f40b89000000000000000000000000f8a0bf9cf54bb92f17374d9e9a321e6a111a51bd00000000000000000000000000000000000000000000000006c4d37525145ae4000000000000000000000000c2eff1f1ce35d395408a34ad881dbcd978f40b8900000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000000000000000000000000000003841fff991f000000000000000000000000c590175e458b83680867afd273527ff58f74c02b00000000000000000000000055d398326f99059ff775485246999027b319795500000000000000000000000000000000000000000000000043399e53cb43181000000000000000000000000000000000000000000000000000000000000000a0bf5c0b5f7c583628abc005dc000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000020000000000000000000000000000000000000000000000000000000000000040000000000000000000000000000000000000000000000000000000000000020000000000000000000000000000000000000000000000000000000000000001843036d6a6000000000000000000000000c2eff1f1ce35d395408a34ad881dbcd978f40b89000000000000000000000000f8a0bf9cf54bb92f17374d9e9a321e6a111a51bd00000000000000000000000000000000000000000000000006c4d37525145ae40000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000006a079f5f0000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000000000016000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000040f8a0bf9cf54bb92f17374d9e9a321e6a111a51bd010009c4fffd8963efd1fc6a506488495d951d5263988d2555d398326f99059ff775485246999027b3197955000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000008434ee90ca000000000000000000000000d0a67cb08be17475f4315a04c5f0be3e200ef66c00000000000000000000000055d398326f99059ff775485246999027b319795500000000000000000000000000000000000000000000000043e891ef40cc385a000000000000000000000000000000000000000000000000000000000000271000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000088", - "gasLimit": 426980, - "feeEstimate": 13339500000000, - "effectiveGas": 222325, - "gasCost": "0", - "gasIncludedFeeData": { - "maxFeePerGas": "0x39386ff", - "maxPriorityFeePerGas": "0x39386ff", - "gas": "0x457ed", - "balanceNeeded": "0xf888e74fb00", - "currentBalance": "0x19d9db6dbe00", - "error": "" - } - }, - "estimatedProcessingTimeInSeconds": 0, - "quoteId": "e2250eb8-7ceb-4b33-a036-2595e8b3eee4", - "quoteRequestIndex": 0 - }, - { - "quote": { - "requestId": "0x8b08a9f97df366fee37fc51b52432b4bd534134ebebfb09f43911dec8296db22", - "bridgeId": "0x", - "srcChainId": 56, - "destChainId": 56, - "aggregator": "0x", - "aggregatorType": "AGG", - "srcAsset": { - "address": "0x1af3f329e8be154074d8769d1ffa4ee058b1dbc3", - "chainId": 56, - "assetId": "eip155:56/erc20:0x1af3f329e8be154074d8769d1ffa4ee058b1dbc3", - "symbol": "DAI", - "decimals": 18, - "name": "BNB pegged Dai Token", - "coingeckoId": "binance-peg-dai", - "aggregators": [ - "pancakeExtended", - "oneInch", - "liFi", - "trustWallet", - "socket", - "rubic", - "rango", - "sonarwatch", - "sushiSwap", - "binanceDex" - ], - "occurrences": 12, - "iconUrl": "https://static.cx.metamask.io/api/v2/tokenIcons/assets/eip155/56/erc20/0x1af3f329e8be154074d8769d1ffa4ee058b1dbc3.png", - "metadata": { - "storage": { - "balance": 1, - "approval": 2 - } - } - }, - "srcTokenAmount": "991250000000000000", - "destAsset": { - "address": "0x55d398326f99059ff775485246999027b3197955", - "chainId": 56, - "assetId": "eip155:56/erc20:0x55d398326f99059ff775485246999027b3197955", - "symbol": "USDT", - "decimals": 18, - "name": "Tether USD", - "coingeckoId": "binance-bridged-usdt-bnb-smart-chain", - "aggregators": [ - "pancakeExtended", - "oneInch", - "liFi", - "trustWallet", - "socket", - "rubic", - "squid", - "rango", - "sonarwatch", - "sushiSwap" - ], - "occurrences": 11, - "iconUrl": "https://static.cx.metamask.io/api/v2/tokenIcons/assets/eip155/56/erc20/0x55d398326f99059ff775485246999027b3197955.png", - "metadata": { - "storage": { - "balance": 1, - "approval": 2 - } - } - }, - "destTokenAmount": "990599597874191689", - "minDestTokenAmount": "970787605916707855", - "walletAddress": "0x141d32a89a1e0a5ef360034a2f60a4b917c18838", - "destWalletAddress": "0x141d32a89a1e0a5ef360034a2f60a4b917c18838", - "feeData": { - "metabridge": { - "amount": "8750000000000000", - "asset": { - "address": "0x1af3f329e8be154074d8769d1ffa4ee058b1dbc3", - "chainId": 56, - "assetId": "eip155:56/erc20:0x1af3f329e8be154074d8769d1ffa4ee058b1dbc3", - "symbol": "DAI", - "decimals": 18, - "name": "BNB pegged Dai Token", - "coingeckoId": "binance-peg-dai", - "aggregators": [ - "pancakeExtended", - "oneInch", - "liFi", - "trustWallet", - "socket", - "rubic", - "rango", - "sonarwatch", - "sushiSwap", - "binanceDex" - ], - "occurrences": 12, - "iconUrl": "https://static.cx.metamask.io/api/v2/tokenIcons/assets/eip155/56/erc20/0x1af3f329e8be154074d8769d1ffa4ee058b1dbc3.png", - "metadata": { - "storage": { - "balance": 1, - "approval": 2 - } - } - }, - "quoteBpsFee": 87.5, - "baseBpsFee": 87.5, - "usd": "0.008742761859012143" - } - }, - "bridges": ["0x"], - "protocols": ["0x"], - "steps": [], - "slippage": 2, - "gasSponsored": false, - "gasIncluded": false, - "gasIncluded7702": false, - "priceData": { - "totalFromAmountUsd": "0.999172783887102", - "totalToAmountUsd": "0.9901221288680164", - "priceImpact": "0.0003108681615314265", - "totalFeeAmountUsd": "0.008742761859012143" - } - }, - "approval": { - "chainId": 56, - "to": "0x1af3f329e8be154074d8769d1ffa4ee058b1dbc3", - "from": "0x141d32a89a1e0a5ef360034a2f60a4b917c18838", - "value": "0x0", - "data": "0x095ea7b30000000000000000000000001a1ec25dc08e98e5e93f1104b5e5cdd298707d310000000000000000000000000000000000000000000000000de0b6b3a7640000", - "gasLimit": 51234, - "feeEstimate": 2771640000000, - "effectiveGas": 46194, - "gasCost": "0", - "gasIncludedFeeData": { - "maxFeePerGas": "0x39386ff", - "maxPriorityFeePerGas": "0x39386ff", - "gas": "0xb5f0", - "balanceNeeded": "0x28aa8c19000", - "currentBalance": "0x1c64da03f600", - "error": "" - } - }, - "trade": { - "chainId": 56, - "to": "0x1a1ec25DC08e98e5E93F1104B5e5cdD298707d31", - "from": "0x141d32a89a1e0a5ef360034a2f60a4b917c18838", - "value": "0x0", - "data": "0x5f57552900000000000000000000000000000000000000000000000000000000000000800000000000000000000000001af3f329e8be154074d8769d1ffa4ee058b1dbc30000000000000000000000000000000000000000000000000de0b6b3a764000000000000000000000000000000000000000000000000000000000000000000c00000000000000000000000000000000000000000000000000000000000000004307856320000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000005a00000000000000000000000001af3f329e8be154074d8769d1ffa4ee058b1dbc300000000000000000000000055d398326f99059ff775485246999027b31979550000000000000000000000000000000000000000000000000dc1a09f859b20000000000000000000000000000000000000000000000000000d78ee2f23046c0f0000000000000000000000000000000000000000000000000000000000000120000000000000000000000000000000000000000000000000001f161421c8e000000000000000000000000000b28da7bc87a9dd1e60849aa7fcb5da24ea913c42000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000004642213bc0b000000000000000000000000c2eff1f1ce35d395408a34ad881dbcd978f40b890000000000000000000000001af3f329e8be154074d8769d1ffa4ee058b1dbc30000000000000000000000000000000000000000000000000dc1a09f859b2000000000000000000000000000c2eff1f1ce35d395408a34ad881dbcd978f40b8900000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000000000000000000000000000003841fff991f000000000000000000000000c590175e458b83680867afd273527ff58f74c02b00000000000000000000000055d398326f99059ff775485246999027b31979550000000000000000000000000000000000000000000000000d9c1fa28e79fe2400000000000000000000000000000000000000000000000000000000000000a095d749b96952913df66364d4000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000020000000000000000000000000000000000000000000000000000000000000040000000000000000000000000000000000000000000000000000000000000020000000000000000000000000000000000000000000000000000000000000001843036d6a6000000000000000000000000c2eff1f1ce35d395408a34ad881dbcd978f40b890000000000000000000000001af3f329e8be154074d8769d1ffa4ee058b1dbc30000000000000000000000000000000000000000000000000dc1a09f859b20000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000006a079f5f00000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000000160000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000401af3f329e8be154074d8769d1ffa4ee058b1dbc30000006400000000000000000000000000000001000276a455d398326f99059ff775485246999027b3197955000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000008434ee90ca000000000000000000000000d0a67cb08be17475f4315a04c5f0be3e200ef66c00000000000000000000000055d398326f99059ff775485246999027b31979550000000000000000000000000000000000000000000000000dbf5115f9ef9d490000000000000000000000000000000000000000000000000000000000002710000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000e5", - "gasLimit": 396177, - "feeEstimate": 12369240000000, - "effectiveGas": 206154, - "gasCost": "0", - "gasIncludedFeeData": { - "maxFeePerGas": "0x39386ff", - "maxPriorityFeePerGas": "0x39386ff", - "gas": "0x407b6", - "balanceNeeded": "0xe69af92fa00", - "currentBalance": "0x19da31426600", - "error": "" - } - }, - "estimatedProcessingTimeInSeconds": 0, - "quoteId": "0ca2ede5-cd60-40f8-98da-608a3fd10e3f", - "quoteRequestIndex": 1 - }, - { - "quote": { - "requestId": "0xaec6a7b9b4292b82c6ccc56017df437b609f3f5bebe60d919ecdf1f3b23381e4", - "bridgeId": "openocean", - "srcChainId": 56, - "destChainId": 56, - "aggregator": "openocean", - "aggregatorType": "AGG", - "srcAsset": { - "address": "0x1af3f329e8be154074d8769d1ffa4ee058b1dbc3", - "chainId": 56, - "assetId": "eip155:56/erc20:0x1af3f329e8be154074d8769d1ffa4ee058b1dbc3", - "symbol": "DAI", - "decimals": 18, - "name": "BNB pegged Dai Token", - "coingeckoId": "binance-peg-dai", - "aggregators": [ - "pancakeExtended", - "oneInch", - "liFi", - "trustWallet", - "socket", - "rubic", - "rango", - "sonarwatch", - "sushiSwap", - "binanceDex" - ], - "occurrences": 12, - "iconUrl": "https://static.cx.metamask.io/api/v2/tokenIcons/assets/eip155/56/erc20/0x1af3f329e8be154074d8769d1ffa4ee058b1dbc3.png", - "metadata": { - "storage": { - "balance": 1, - "approval": 2 - } - } - }, - "srcTokenAmount": "991250000000000000", - "destAsset": { - "address": "0x55d398326f99059ff775485246999027b3197955", - "chainId": 56, - "assetId": "eip155:56/erc20:0x55d398326f99059ff775485246999027b3197955", - "symbol": "USDT", - "decimals": 18, - "name": "Tether USD", - "coingeckoId": "binance-bridged-usdt-bnb-smart-chain", - "aggregators": [ - "pancakeExtended", - "oneInch", - "liFi", - "trustWallet", - "socket", - "rubic", - "squid", - "rango", - "sonarwatch", - "sushiSwap" - ], - "occurrences": 11, - "iconUrl": "https://static.cx.metamask.io/api/v2/tokenIcons/assets/eip155/56/erc20/0x55d398326f99059ff775485246999027b3197955.png", - "metadata": { - "storage": { - "balance": 1, - "approval": 2 - } - } - }, - "destTokenAmount": "990603665402661265", - "minDestTokenAmount": "970791592094608039", - "walletAddress": "0x141d32a89a1e0a5ef360034a2f60a4b917c18838", - "destWalletAddress": "0x141d32a89a1e0a5ef360034a2f60a4b917c18838", - "feeData": { - "metabridge": { - "amount": "8750000000000000", - "asset": { - "address": "0x1af3f329e8be154074d8769d1ffa4ee058b1dbc3", - "chainId": 56, - "assetId": "eip155:56/erc20:0x1af3f329e8be154074d8769d1ffa4ee058b1dbc3", - "symbol": "DAI", - "decimals": 18, - "name": "BNB pegged Dai Token", - "coingeckoId": "binance-peg-dai", - "aggregators": [ - "pancakeExtended", - "oneInch", - "liFi", - "trustWallet", - "socket", - "rubic", - "rango", - "sonarwatch", - "sushiSwap", - "binanceDex" - ], - "occurrences": 12, - "iconUrl": "https://static.cx.metamask.io/api/v2/tokenIcons/assets/eip155/56/erc20/0x1af3f329e8be154074d8769d1ffa4ee058b1dbc3.png", - "metadata": { - "storage": { - "balance": 1, - "approval": 2 - } - } - }, - "quoteBpsFee": 87.5, - "baseBpsFee": 87.5, - "usd": "0.008742761859012143" - } - }, - "bridges": ["openocean"], - "protocols": ["openocean"], - "steps": [], - "slippage": 2, - "gasSponsored": false, - "gasIncluded": false, - "gasIncluded7702": false, - "priceData": { - "totalFromAmountUsd": "0.999172783887102", - "totalToAmountUsd": "0.9901261944359373", - "priceImpact": "0.00030676331027444464", - "totalFeeAmountUsd": "0.008742761859012143" - } - }, - "approval": { - "chainId": 56, - "to": "0x1af3f329e8be154074d8769d1ffa4ee058b1dbc3", - "from": "0x141d32a89a1e0a5ef360034a2f60a4b917c18838", - "value": "0x0", - "data": "0x095ea7b30000000000000000000000001a1ec25dc08e98e5e93f1104b5e5cdd298707d310000000000000000000000000000000000000000000000000de0b6b3a7640000", - "gasLimit": 51234, - "feeEstimate": 2771640000000, - "effectiveGas": 46194, - "gasCost": "0", - "gasIncludedFeeData": { - "maxFeePerGas": "0x39386ff", - "maxPriorityFeePerGas": "0x39386ff", - "gas": "0xb5f0", - "balanceNeeded": "0x28aa8c19000", - "currentBalance": "0x1c64da03f600", - "error": "" - } - }, - "trade": { - "chainId": 56, - "to": "0x1a1ec25DC08e98e5E93F1104B5e5cdD298707d31", - "from": "0x141d32a89a1e0a5ef360034a2f60a4b917c18838", - "value": "0x0", - "data": "0x5f57552900000000000000000000000000000000000000000000000000000000000000800000000000000000000000001af3f329e8be154074d8769d1ffa4ee058b1dbc30000000000000000000000000000000000000000000000000de0b6b3a764000000000000000000000000000000000000000000000000000000000000000000c000000000000000000000000000000000000000000000000000000000000000136f70656e4f6365616e46656544796e616d6963000000000000000000000000000000000000000000000000000000000000000000000000000000000000000f200000000000000000000000001af3f329e8be154074d8769d1ffa4ee058b1dbc300000000000000000000000055d398326f99059ff775485246999027b31979550000000000000000000000000000000000000000000000000dc1a09f859b20000000000000000000000000000000000000000000000000000d78f1cf3dbc2aa70000000000000000000000000000000000000000000000000000000000000120000000000000000000000000000000000000000000000000001f161421c8e000000000000000000000000000b28da7bc87a9dd1e60849aa7fcb5da24ea913c4200000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000de490411a320000000000000000000000001911c4fd8cccc5931ab39e66779ea4b5a851827a000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000001c00000000000000000000000001af3f329e8be154074d8769d1ffa4ee058b1dbc300000000000000000000000055d398326f99059ff775485246999027b31979550000000000000000000000001911c4fd8cccc5931ab39e66779ea4b5a851827a000000000000000000000000c590175e458b83680867afd273527ff58f74c02b0000000000000000000000000000000000000000000000000dc1a09f859b20000000000000000000000000000000000000000000000000000d78f1cf3dbc2aa70000000000000000000000000000000000000000000000000dbf54c9058689910000000000000000000000000000000000000000000000000000000000000002000000000000000000000000ef53a4bd0e16ccc9116770a41c4bd3ad1147bd4f00000000000000000000000000000000000000000000000000000000000001400000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000500000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000000000000000000000000000001c00000000000000000000000000000000000000000000000000000000000000300000000000000000000000000000000000000000000000000000000000000088000000000000000000000000000000000000000000000000000000000000009a000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000800000000000000000000000000000000000000000000000000000000000000064eb5625d90000000000000000000000001af3f329e8be154074d8769d1ffa4ee058b1dbc300000000000000000000000031c2f6fcff4f8759b3bd5bf0e1084a055615c7680000000000000000000000000000000000000000000000000dc1a09f859b20000000000000000000000000000000000000000000000000000000000000000000000000000000000031c2f6fcff4f8759b3bd5bf0e1084a055615c768000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000080000000000000000000000000000000000000000000000000000000000000008487517c450000000000000000000000001af3f329e8be154074d8769d1ffa4ee058b1dbc3000000000000000000000000d9c500dff816a1da21a48a732d3498bf09dc9aeb0000000000000000000000000000000000000000000000000dc1a09f859b2000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000d9c500dff816a1da21a48a732d3498bf09dc9aeb00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000008000000000000000000000000000000000000000000000000000000000000004c424856bc300000000000000000000000000000000000000000000000000000000000000400000000000000000000000000000000000000000000000000000000000000080000000000000000000000000000000000000000000000000000000000000000110000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000002000000000000000000000000000000000000000000000000000000000000003e0000000000000000000000000000000000000000000000000000000000000004000000000000000000000000000000000000000000000000000000000000000800000000000000000000000000000000000000000000000000000000000000003070b0e000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000030000000000000000000000000000000000000000000000000000000000000060000000000000000000000000000000000000000000000000000000000000024000000000000000000000000000000000000000000000000000000000000002c000000000000000000000000000000000000000000000000000000000000001c000000000000000000000000000000000000000000000000000000000000000200000000000000000000000001af3f329e8be154074d8769d1ffa4ee058b1dbc300000000000000000000000000000000000000000000000000000000000000800000000000000000000000000000000000000000000000000dc1a09f859b200000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000002000000000000000000000000055d398326f99059ff775485246999027b319795500000000000000000000000000000000000000000000000000000000000000360000000000000000000000000000000000000000000000000000000000000000000000000000000000000000a0ffb9c1ce1fe56963b0321b32e7a0302114058b00000000000000000000000000000000000000000000000000000000000000c00000000000000000000000000000000000000000000000000000000000010000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000600000000000000000000000001af3f329e8be154074d8769d1ffa4ee058b1dbc300000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000006000000000000000000000000055d398326f99059ff775485246999027b31979550000000000000000000000001911c4fd8cccc5931ab39e66779ea4b5a851827a000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000008000000000000000000000000000000000000000000000000000000000000000648a6a1e8500000000000000000000000055d398326f99059ff775485246999027b3197955000000000000000000000000922164bbbd36acf9e854acbbf32facc949fcaeef0000000000000000000000000000000000000000000000000dbf54c90586899100000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000008000000000000000000000000000000000000000000000000000000000000001a49f86542200000000000000000000000055d398326f99059ff775485246999027b319795500000000000000000000000000000001000000000000000000000000000000010000000000000000000000000000000000000000000000000000000000000080000000000000000000000000000000000000000000000000000000000000004400000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000800000000000000000000000000000000000000000000000000000000000000064d1660f9900000000000000000000000055d398326f99059ff775485246999027b3197955000000000000000000000000c590175e458b83680867afd273527ff58f74c02b0000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000a4", - "gasLimit": 707997, - "feeEstimate": 22191600000000, - "effectiveGas": 369860, - "gasCost": "0", - "gasIncludedFeeData": { - "maxFeePerGas": "0x39386ff", - "maxPriorityFeePerGas": "0x39386ff", - "gas": "0x733be", - "balanceNeeded": "0x19c1bc633200", - "currentBalance": "0x19da31426600", - "error": "" - } - }, - "estimatedProcessingTimeInSeconds": 0, - "quoteId": "398d41f7-9a17-4a22-a6d3-1e5f99df79f3", - "quoteRequestIndex": 1 - }, - { - "quote": { - "requestId": "0x6d6fac548a691b3b652cd18b45957a43104508757aa376a62795daefc4eb1017", - "bridgeId": "kyberswap", - "srcChainId": 56, - "destChainId": 56, - "aggregator": "kyberswap", - "aggregatorType": "AGG", - "srcAsset": { - "address": "0x1af3f329e8be154074d8769d1ffa4ee058b1dbc3", - "chainId": 56, - "assetId": "eip155:56/erc20:0x1af3f329e8be154074d8769d1ffa4ee058b1dbc3", - "symbol": "DAI", - "decimals": 18, - "name": "BNB pegged Dai Token", - "coingeckoId": "binance-peg-dai", - "aggregators": [ - "pancakeExtended", - "oneInch", - "liFi", - "trustWallet", - "socket", - "rubic", - "rango", - "sonarwatch", - "sushiSwap", - "binanceDex" - ], - "occurrences": 12, - "iconUrl": "https://static.cx.metamask.io/api/v2/tokenIcons/assets/eip155/56/erc20/0x1af3f329e8be154074d8769d1ffa4ee058b1dbc3.png", - "metadata": { - "storage": { - "balance": 1, - "approval": 2 - } - } - }, - "srcTokenAmount": "991250000000000000", - "destAsset": { - "address": "0x55d398326f99059ff775485246999027b3197955", - "chainId": 56, - "assetId": "eip155:56/erc20:0x55d398326f99059ff775485246999027b3197955", - "symbol": "USDT", - "decimals": 18, - "name": "Tether USD", - "coingeckoId": "binance-bridged-usdt-bnb-smart-chain", - "aggregators": [ - "pancakeExtended", - "oneInch", - "liFi", - "trustWallet", - "socket", - "rubic", - "squid", - "rango", - "sonarwatch", - "sushiSwap" - ], - "occurrences": 11, - "iconUrl": "https://static.cx.metamask.io/api/v2/tokenIcons/assets/eip155/56/erc20/0x55d398326f99059ff775485246999027b3197955.png", - "metadata": { - "storage": { - "balance": 1, - "approval": 2 - } - } - }, - "destTokenAmount": "989547232510600724", - "minDestTokenAmount": "969756287860388709", - "walletAddress": "0x141d32a89a1e0a5ef360034a2f60a4b917c18838", - "destWalletAddress": "0x141d32a89a1e0a5ef360034a2f60a4b917c18838", - "feeData": { - "metabridge": { - "amount": "8750000000000000", - "asset": { - "address": "0x1af3f329e8be154074d8769d1ffa4ee058b1dbc3", - "chainId": 56, - "assetId": "eip155:56/erc20:0x1af3f329e8be154074d8769d1ffa4ee058b1dbc3", - "symbol": "DAI", - "decimals": 18, - "name": "BNB pegged Dai Token", - "coingeckoId": "binance-peg-dai", - "aggregators": [ - "pancakeExtended", - "oneInch", - "liFi", - "trustWallet", - "socket", - "rubic", - "rango", - "sonarwatch", - "sushiSwap", - "binanceDex" - ], - "occurrences": 12, - "iconUrl": "https://static.cx.metamask.io/api/v2/tokenIcons/assets/eip155/56/erc20/0x1af3f329e8be154074d8769d1ffa4ee058b1dbc3.png", - "metadata": { - "storage": { - "balance": 1, - "approval": 2 - } - } - }, - "quoteBpsFee": 87.5, - "baseBpsFee": 87.5, - "usd": "0.008742761859012143" - } - }, - "bridges": ["kyberswap"], - "protocols": ["kyberswap"], - "steps": [], - "slippage": 2, - "gasSponsored": false, - "gasIncluded": false, - "gasIncluded7702": false, - "priceData": { - "totalFromAmountUsd": "0.999172783887102", - "totalToAmountUsd": "0.9890702707445307", - "priceImpact": "0.0013728898087870933", - "totalFeeAmountUsd": "0.008742761859012143" - } - }, - "approval": { - "chainId": 56, - "to": "0x1af3f329e8be154074d8769d1ffa4ee058b1dbc3", - "from": "0x141d32a89a1e0a5ef360034a2f60a4b917c18838", - "value": "0x0", - "data": "0x095ea7b30000000000000000000000001a1ec25dc08e98e5e93f1104b5e5cdd298707d310000000000000000000000000000000000000000000000000de0b6b3a7640000", - "gasLimit": 51234, - "feeEstimate": 2771640000000, - "effectiveGas": 46194, - "gasCost": "0", - "gasIncludedFeeData": { - "maxFeePerGas": "0x39386ff", - "maxPriorityFeePerGas": "0x39386ff", - "gas": "0xb5f0", - "balanceNeeded": "0x28aa8c19000", - "currentBalance": "0x1c64da03f600", - "error": "" - } - }, - "trade": { - "chainId": 56, - "to": "0x1a1ec25DC08e98e5E93F1104B5e5cdD298707d31", - "from": "0x141d32a89a1e0a5ef360034a2f60a4b917c18838", - "value": "0x0", - "data": "0x5f57552900000000000000000000000000000000000000000000000000000000000000800000000000000000000000001af3f329e8be154074d8769d1ffa4ee058b1dbc30000000000000000000000000000000000000000000000000de0b6b3a764000000000000000000000000000000000000000000000000000000000000000000c000000000000000000000000000000000000000000000000000000000000000136b796265725377617046656544796e616d6963000000000000000000000000000000000000000000000000000000000000000000000000000000000000000a200000000000000000000000001af3f329e8be154074d8769d1ffa4ee058b1dbc300000000000000000000000055d398326f99059ff775485246999027b31979550000000000000000000000000000000000000000000000000dc1a09f859b20000000000000000000000000000000000000000000000000000d754434b09eb3650000000000000000000000000000000000000000000000000000000000000120000000000000000000000000000000000000000000000000001f161421c8e000000000000000000000000000b28da7bc87a9dd1e60849aa7fcb5da24ea913c42000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000008e4e21fd0e900000000000000000000000000000000000000000000000000000000000000200000000000000000000000008f10b468b06c6fd214b65f87778827f7d113f996000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000000000000000000000000000005a000000000000000000000000000000000000000000000000000000000000007e000000000000000000000000000000000000000000000000000000000000004e000000000000000000dc1a09f859b200000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000000e000000000000000000000000000000000000000000000000000000000000000414ec602280a16806da15860e1039db1fa835f6ce1af866fdbbe21015e2e46834037f9315d68e89fc68ecec1a08e85fdc47cc46c3ba92017f68f7ac8240339aa061b0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000003e0000000000000000000000000c590175e458b83680867afd273527ff58f74c02b0000000000000000000000000000000000000000000000000000000000000140000000000000000000000000000000000000000000000000000000000000018000000000000000000d118bcabeecf80000000000000000000e71b5744c49480000000000000000000dc1a09f859b200000000000000000000dbb93f71243e615000000000000000000000000000000000000e6659c7cfe0000000f42400000000000000000000000000000004f82e73edb06d29ff62c91ec8f5ff06571bdeb290000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000006a07a2e400000000000000000000000000000000000000000000000000000000000003c0000000000000000000000000000000000000000000000000000000000000000161f598cd00000000000000003261c1bf28a7663c8ecccf14914a2c02ce17e5660000000000000000000000000000000000000000000000000000000000000002000000000000000000000000000000000000000000000000000000000000004000000000000000000000000000000000000000000000000000000000000001a00000000000000000000000001af3f329e8be154074d8769d1ffa4ee058b1dbc38000000000000000000000e6cb1aa88000000000000000000dc1a09f859b20000000000000000000000000000000000000000000000000000000000000000060000000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000000000200000000000000000000000000000000000000000000000000dc1a09f859b2000567e636a00000000000200015455c918e405a2831fbff8595c0aae35ee3db9d10000000000000000000000000000000000000000000000000000000000000080000000000000000000000000c590175e458b83680867afd273527ff58f74c02b00000000000000000000000000000000000000000000000000000000000000200000000100000000000003e8e0caab61ee7a12d03b268e1f6a56537ac1b61d1300000000000000000000000055d398326f99059ff775485246999027b319795580000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000060000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001af3f329e8be154074d8769d1ffa4ee058b1dbc300000000000000000000000055d398326f99059ff775485246999027b3197955000000000000000000000000000000000000000000000000000000000000016000000000000000000000000000000000000000000000000000000000000001a000000000000000000000000000000000000000000000000000000000000001e00000000000000000000000000000000000000000000000000000000000000200000000000000000000000000c590175e458b83680867afd273527ff58f74c02b0000000000000000000000000000000000000000000000000dc1a09f859b20000000000000000000000000000000000000000000000000000d754434b09eb365000000000000000000000000000000000000000000000000000000000000020000000000000000000000000000000000000000000000000000000000000002200000000000000000000000000000000000000000000000000000000000000001000000000000000000000000e0caab61ee7a12d03b268e1f6a56537ac1b61d1300000000000000000000000000000000000000000000000000000000000000010000000000000000000000000000000000000000000000000dc1a09f859b200000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000ae7b22536f75726365223a226d6574616d61736b222c22416d6f756e74496e555344223a22302e393930323831222c22416d6f756e744f7574555344223a22302e393839313432222c22416d6f756e744f7574223a22393839353437323332353130363030373234222c22526f7574654944223a223833393235323030594f70476c724f6a3a3438393063326238305f704643627075222c2254696d657374616d70223a313737383838343134387d0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000062", - "gasLimit": 471833, - "feeEstimate": 15428460000000, - "effectiveGas": 257141, - "gasCost": "0", - "gasIncludedFeeData": { - "maxFeePerGas": "0x39386ff", - "maxPriorityFeePerGas": "0x39386ff", - "gas": "0x4ccbb", - "balanceNeeded": "0x112a48579d00", - "currentBalance": "0x19da31426600", - "error": "" - } - }, - "estimatedProcessingTimeInSeconds": 0, - "quoteId": "b57d2d2d-45fd-492e-ae3c-1953df384b4b", - "quoteRequestIndex": 1 - }, - { - "quote": { - "requestId": "0xe18182dee96d515410d7bf8de7fd8b9c01808ae0674fc179bf8aaa13d79e7111", - "bridgeId": "openocean", - "srcChainId": 56, - "destChainId": 56, - "aggregator": "openocean", - "aggregatorType": "AGG", - "srcAsset": { - "address": "0xf8a0bf9cf54bb92f17374d9e9a321e6a111a51bd", - "chainId": 56, - "assetId": "eip155:56/erc20:0xf8a0bf9cf54bb92f17374d9e9a321e6a111a51bd", - "symbol": "LINK", - "decimals": 18, - "name": "BNB pegged ChainLink", - "coingeckoId": "chainlink", - "aggregators": [ - "pancakeTop100", - "oneInch", - "liFi", - "trustWallet", - "socket", - "rubic", - "squid", - "rango", - "sonarwatch", - "sushiSwap" - ], - "occurrences": 13, - "iconUrl": "https://static.cx.metamask.io/api/v2/tokenIcons/assets/eip155/56/erc20/0xf8a0bf9cf54bb92f17374d9e9a321e6a111a51bd.png", - "metadata": { - "storage": { - "balance": 1, - "approval": 2 - } - } - }, - "srcTokenAmount": "487747159749581540", - "destAsset": { - "address": "0x55d398326f99059ff775485246999027b3197955", - "chainId": 56, - "assetId": "eip155:56/erc20:0x55d398326f99059ff775485246999027b3197955", - "symbol": "USDT", - "decimals": 18, - "name": "Tether USD", - "coingeckoId": "binance-bridged-usdt-bnb-smart-chain", - "aggregators": [ - "pancakeExtended", - "oneInch", - "liFi", - "trustWallet", - "socket", - "rubic", - "squid", - "rango", - "sonarwatch", - "sushiSwap" - ], - "occurrences": 11, - "iconUrl": "https://static.cx.metamask.io/api/v2/tokenIcons/assets/eip155/56/erc20/0x55d398326f99059ff775485246999027b3197955.png", - "metadata": { - "storage": { - "balance": 1, - "approval": 2 - } - } - }, - "destTokenAmount": "4850193215727346824", - "minDestTokenAmount": "4753189351412799887", - "walletAddress": "0x141d32a89a1e0a5ef360034a2f60a4b917c18838", - "destWalletAddress": "0x141d32a89a1e0a5ef360034a2f60a4b917c18838", - "feeData": { - "metabridge": { - "amount": "42813811488135470", - "asset": { - "address": "0x55d398326f99059ff775485246999027b3197955", - "chainId": 56, - "assetId": "eip155:56/erc20:0x55d398326f99059ff775485246999027b3197955", - "symbol": "USDT", - "decimals": 18, - "name": "Tether USD", - "coingeckoId": "binance-bridged-usdt-bnb-smart-chain", - "aggregators": [ - "pancakeExtended", - "oneInch", - "liFi", - "trustWallet", - "socket", - "rubic", - "squid", - "rango", - "sonarwatch", - "sushiSwap" - ], - "occurrences": 11, - "iconUrl": "https://static.cx.metamask.io/api/v2/tokenIcons/assets/eip155/56/erc20/0x55d398326f99059ff775485246999027b3197955.png", - "metadata": { - "storage": { - "balance": 1, - "approval": 2 - } - } - }, - "quoteBpsFee": 87.5, - "baseBpsFee": 87.5, - "usd": "0.04279317523099819" - } - }, - "bridges": ["openocean"], - "protocols": ["openocean"], - "steps": [], - "slippage": 2, - "gasSponsored": false, - "gasIncluded": false, - "gasIncluded7702": false, - "priceData": { - "totalFromAmountUsd": "4.906736427080791", - "totalToAmountUsd": "4.847855422597367", - "priceImpact": "0.00327872293356457", - "totalFeeAmountUsd": "0.04279317523099819" - } - }, - "approval": { - "chainId": 56, - "to": "0xf8a0bf9cf54bb92f17374d9e9a321e6a111a51bd", - "from": "0x141d32a89a1e0a5ef360034a2f60a4b917c18838", - "value": "0x0", - "data": "0x095ea7b30000000000000000000000001a1ec25dc08e98e5e93f1104b5e5cdd298707d3100000000000000000000000000000000000000000000000006c4d37525145ae4", - "gasLimit": 51261, - "feeEstimate": 2773080000000, - "effectiveGas": 46218, - "gasCost": "0", - "gasIncludedFeeData": { - "maxFeePerGas": "0x39386ff", - "maxPriorityFeePerGas": "0x39386ff", - "gas": "0xb608", - "balanceNeeded": "0x28afe963800", - "currentBalance": "0x1c64da03f600", - "error": "" - } - }, - "trade": { - "chainId": 56, - "to": "0x1a1ec25DC08e98e5E93F1104B5e5cdD298707d31", - "from": "0x141d32a89a1e0a5ef360034a2f60a4b917c18838", - "value": "0x0", - "data": "0x5f5755290000000000000000000000000000000000000000000000000000000000000080000000000000000000000000f8a0bf9cf54bb92f17374d9e9a321e6a111a51bd00000000000000000000000000000000000000000000000006c4d37525145ae400000000000000000000000000000000000000000000000000000000000000c000000000000000000000000000000000000000000000000000000000000000136f70656e4f6365616e46656544796e616d69630000000000000000000000000000000000000000000000000000000000000000000000000000000000000008c0000000000000000000000000f8a0bf9cf54bb92f17374d9e9a321e6a111a51bd00000000000000000000000055d398326f99059ff775485246999027b319795500000000000000000000000000000000000000000000000006c4d37525145ae400000000000000000000000000000000000000000000000041f6b8881921198f000000000000000000000000000000000000000000000000000000000000012000000000000000000000000000000000000000000000000000981aef493b192e000000000000000000000000b28da7bc87a9dd1e60849aa7fcb5da24ea913c420000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000078490411a320000000000000000000000001911c4fd8cccc5931ab39e66779ea4b5a851827a000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000001c0000000000000000000000000f8a0bf9cf54bb92f17374d9e9a321e6a111a51bd00000000000000000000000055d398326f99059ff775485246999027b31979550000000000000000000000001911c4fd8cccc5931ab39e66779ea4b5a851827a000000000000000000000000c590175e458b83680867afd273527ff58f74c02b00000000000000000000000000000000000000000000000006c4d37525145ae4000000000000000000000000000000000000000000000000428bc8b009db042800000000000000000000000000000000000000000000000043e773f78cab3db60000000000000000000000000000000000000000000000000000000000000002000000000000000000000000ef53a4bd0e16ccc9116770a41c4bd3ad1147bd4f00000000000000000000000000000000000000000000000000000000000001400000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000300000000000000000000000000000000000000000000000000000000000000600000000000000000000000000000000000000000000000000000000000000220000000000000000000000000000000000000000000000000000000000000034000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000800000000000000000000000000000000000000000000000000000000000000104e5b07cdb000000000000000000000000c6faf89f23cbe4bd39e9d16e2685d74545ba7659000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000006c4d37525145ae40000000000000000000000001911c4fd8cccc5931ab39e66779ea4b5a851827a00000000000000000000000000000000000000000000000000000000000000a0000000000000000000000000000000000000000000000000000000000000002ef8a0bf9cf54bb92f17374d9e9a321e6a111a51bd0009c455d398326f99059ff775485246999027b319795500000300000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000008000000000000000000000000000000000000000000000000000000000000000648a6a1e8500000000000000000000000055d398326f99059ff775485246999027b3197955000000000000000000000000922164bbbd36acf9e854acbbf32facc949fcaeef00000000000000000000000000000000000000000000000043e773f78cab3db600000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000008000000000000000000000000000000000000000000000000000000000000001a49f86542200000000000000000000000055d398326f99059ff775485246999027b319795500000000000000000000000000000001000000000000000000000000000000010000000000000000000000000000000000000000000000000000000000000080000000000000000000000000000000000000000000000000000000000000004400000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000800000000000000000000000000000000000000000000000000000000000000064d1660f9900000000000000000000000055d398326f99059ff775485246999027b3197955000000000000000000000000c590175e458b83680867afd273527ff58f74c02b000000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000062", - "gasLimit": 560112, - "feeEstimate": 17533200000000, - "effectiveGas": 292220, - "gasCost": "0", - "gasIncludedFeeData": { - "maxFeePerGas": "0x39386ff", - "maxPriorityFeePerGas": "0x39386ff", - "gas": "0x5b2a0", - "balanceNeeded": "0x146073126000", - "currentBalance": "0x19d9db6dbe00", - "error": "" - } - }, - "estimatedProcessingTimeInSeconds": 0, - "quoteId": "9db2ea49-3fad-494c-ad41-06c0985d53dc", - "quoteRequestIndex": 0 - }, - { - "quote": { - "requestId": "0x970b45400c2dc74b60709a936bce72ec569085257c7d656c79d80f71069c359c", - "bridgeId": "okx", - "srcChainId": 56, - "destChainId": 56, - "aggregator": "okx", - "aggregatorType": "AGG", - "srcAsset": { - "address": "0xf8a0bf9cf54bb92f17374d9e9a321e6a111a51bd", - "chainId": 56, - "assetId": "eip155:56/erc20:0xf8a0bf9cf54bb92f17374d9e9a321e6a111a51bd", - "symbol": "LINK", - "decimals": 18, - "name": "BNB pegged ChainLink", - "coingeckoId": "chainlink", - "aggregators": [ - "pancakeTop100", - "oneInch", - "liFi", - "trustWallet", - "socket", - "rubic", - "squid", - "rango", - "sonarwatch", - "sushiSwap" - ], - "occurrences": 13, - "iconUrl": "https://static.cx.metamask.io/api/v2/tokenIcons/assets/eip155/56/erc20/0xf8a0bf9cf54bb92f17374d9e9a321e6a111a51bd.png", - "metadata": { - "storage": { - "balance": 1, - "approval": 2 - } - } - }, - "srcTokenAmount": "487747159749581540", - "destAsset": { - "address": "0x55d398326f99059ff775485246999027b3197955", - "chainId": 56, - "assetId": "eip155:56/erc20:0x55d398326f99059ff775485246999027b3197955", - "symbol": "USDT", - "decimals": 18, - "name": "Tether USD", - "coingeckoId": "binance-bridged-usdt-bnb-smart-chain", - "aggregators": [ - "pancakeExtended", - "oneInch", - "liFi", - "trustWallet", - "socket", - "rubic", - "squid", - "rango", - "sonarwatch", - "sushiSwap" - ], - "occurrences": 11, - "iconUrl": "https://static.cx.metamask.io/api/v2/tokenIcons/assets/eip155/56/erc20/0x55d398326f99059ff775485246999027b3197955.png", - "metadata": { - "storage": { - "balance": 1, - "approval": 2 - } - } - }, - "destTokenAmount": "4854141442836257601", - "minDestTokenAmount": "4757058613979532448", - "walletAddress": "0x141d32a89a1e0a5ef360034a2f60a4b917c18838", - "destWalletAddress": "0x141d32a89a1e0a5ef360034a2f60a4b917c18838", - "feeData": { - "metabridge": { - "amount": "42848663429828251", - "asset": { - "address": "0x55d398326f99059ff775485246999027b3197955", - "chainId": 56, - "assetId": "eip155:56/erc20:0x55d398326f99059ff775485246999027b3197955", - "symbol": "USDT", - "decimals": 18, - "name": "Tether USD", - "coingeckoId": "binance-bridged-usdt-bnb-smart-chain", - "aggregators": [ - "pancakeExtended", - "oneInch", - "liFi", - "trustWallet", - "socket", - "rubic", - "squid", - "rango", - "sonarwatch", - "sushiSwap" - ], - "occurrences": 11, - "iconUrl": "https://static.cx.metamask.io/api/v2/tokenIcons/assets/eip155/56/erc20/0x55d398326f99059ff775485246999027b3197955.png", - "metadata": { - "storage": { - "balance": 1, - "approval": 2 - } - } - }, - "quoteBpsFee": 87.5, - "baseBpsFee": 87.5, - "usd": "0.04282801037405508" - } - }, - "bridges": ["okx"], - "protocols": ["okx"], - "steps": [], - "slippage": 2, - "gasSponsored": false, - "gasIncluded": false, - "gasIncluded7702": false, - "priceData": { - "totalFromAmountUsd": "4.906736427080791", - "totalToAmountUsd": "4.8518017466608105", - "priceImpact": "0.002467356913468514", - "totalFeeAmountUsd": "0.04282801037405508" - } - }, - "approval": { - "chainId": 56, - "to": "0xf8a0bf9cf54bb92f17374d9e9a321e6a111a51bd", - "from": "0x141d32a89a1e0a5ef360034a2f60a4b917c18838", - "value": "0x0", - "data": "0x095ea7b30000000000000000000000001a1ec25dc08e98e5e93f1104b5e5cdd298707d3100000000000000000000000000000000000000000000000006c4d37525145ae4", - "gasLimit": 51261, - "feeEstimate": 2773080000000, - "effectiveGas": 46218, - "gasCost": "0", - "gasIncludedFeeData": { - "maxFeePerGas": "0x3938700", - "maxPriorityFeePerGas": "0x3938700", - "gas": "0xb608", - "balanceNeeded": "0x28afe963800", - "currentBalance": "0x1c64da03f600", - "error": "Not enough funds" - } - }, - "trade": { - "chainId": 56, - "to": "0x1a1ec25DC08e98e5E93F1104B5e5cdD298707d31", - "from": "0x141d32a89a1e0a5ef360034a2f60a4b917c18838", - "value": "0x0", - "data": "0x5f5755290000000000000000000000000000000000000000000000000000000000000080000000000000000000000000f8a0bf9cf54bb92f17374d9e9a321e6a111a51bd00000000000000000000000000000000000000000000000006c4d37525145ae400000000000000000000000000000000000000000000000000000000000000c000000000000000000000000000000000000000000000000000000000000000046f6b7836000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000cc0000000000000000000000000f8a0bf9cf54bb92f17374d9e9a321e6a111a51bd00000000000000000000000055d398326f99059ff775485246999027b319795500000000000000000000000000000000000000000000000006c4d37525145ae40000000000000000000000000000000000000000000000004204779afdf64ca0000000000000000000000000000000000000000000000000000000000000012000000000000000000000000000000000000000000000000000983aa1e2d5ce9b000000000000000000000000b28da7bc87a9dd1e60849aa7fcb5da24ea913c4200000000000000000000000000000000000000000000000000000000000000010000000000000000000000000000000000000000000000000000000000000b84f2c42696000000000000000000000000000000000000000000000000000000003bbd3996000000000000000000000000f8a0bf9cf54bb92f17374d9e9a321e6a111a51bd00000000000000000000000055d398326f99059ff775485246999027b319795500000000000000000000000000000000000000000000000006c4d37525145ae40000000000000000000000000000000000000000000000004299a6d33d8a63e6000000000000000000000000000000000000000000000000000000006a07ac4400000000000000000000000000000000000000000000000000000000000000e0000000000000000000000000000000000000000000000000000000000000000300000000000000000000000000000000000000000000000000000000000000600000000000000000000000000000000000000000000000000000000000000240000000000000000000000000000000000000000000000000000000000000074000000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000000000000000000000000000000e000000000000000000000000000000000000000000000000000000000000001200000000000000000000000000000000000000000000000000000000000000160000000000000000000000000f8a0bf9cf54bb92f17374d9e9a321e6a111a51bd0000000000000000000000000000000000000000000000000000000000000001000000000000000000000000a96a96669295e85af046026bf714a26e84096889000000000000000000000000000000000000000000000000000000000000000100000000000000000000000016fe21c91c426e603977b1c6ecd59fc510a518c2000000000000000000000000000000000000000000000000000000000000000180000000000000000001271016fe21c91c426e603977b1c6ecd59fc510a518c2000000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000000000200000000000000000000000000000000000000000000000000000000000000020000000000000000000000000000000000000000000000000000000000000001400000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000000000000000000000000000000e000000000000000000000000000000000000000000000000000000000000001200000000000000000000000000000000000000000000000000000000000000160000000000000000000000000bb4cdb9cbd36b01bd1cbaebf2de08d9173bc095c000000000000000000000000000000000000000000000000000000000000000100000000000000000000000061e3fca605e2f0e29d5a176e1c9868d4f0ee817f000000000000000000000000000000000000000000000000000000000000000100000000000000000000000061e3fca605e2f0e29d5a176e1c9868d4f0ee817f0000000000000000000000000000000000000000000000000000000000000001000000000000000001022710dd30339c4b2f7bac319ef4fa5c6963cc9f470b2d000000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000000000200000000000000000000000000000000000000000000000000000000000000340000000000000000000000000000000000000000000000000000000000000008000000000000000000000000000000000000000000000000000000000000002c000000000000000000000000000000000000000000000000000000000000000010000000000000000000000000000000000000000000000000000000000000003000000000000000000000000000000000000000000000000000000000000022000000000000000000000000000000000000000000000000000000000000000200000000000000000000000000000000000000000000000003d8074de880c1c80000000000000000000000000000000000000000000000000000000006a079e530000000000000000000000008ac76a51cc950d9822d68b83fe1ad97b32cd580d000000000000000000000000bb4cdb9cbd36b01bd1cbaebf2de08d9173bc095c00000000000000000000000065ec88a7eeee54a6b4cf6604d43edae415043fd200000000000000000000000000000000000000000000000043e3c71f0ff0b4000000000000000000000000000000000000000000000000000019db3183f01f020000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000006a079e3800000000000000000000000000000000000000000000000000000000000000f000000000000000000000000000000000000000000000000000000000000004b000000000000000000000000000000000000000000000000000000000000001c0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001e00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000416c70f2c12ec6a3a679fc1cf8216f7bfcadd67a8908047c64ffe02869b3d98b9c29e546441182fd663dc965bb1b265ef231c6a29d119dde59a25289c3ba99f38c1b0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000000000000000000000000000000e0000000000000000000000000000000000000000000000000000000000000012000000000000000000000000000000000000000000000000000000000000001600000000000000000000000008ac76a51cc950d9822d68b83fe1ad97b32cd580d0000000000000000000000000000000000000000000000000000000000000001000000000000000000000000dd3d3c05a672b8a1112e158cd2fc6f577c2b6e1f0000000000000000000000000000000000000000000000000000000000000001000000000000000000000000dd3d3c05a672b8a1112e158cd2fc6f577c2b6e1f000000000000000000000000000000000000000000000000000000000000000180000000000000000203271000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000002000000000000000000000000000000000000000000000000000000000000001400000000000000000000000000000000000000000000000000000000000000020000000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000000000200000000000000000000000008ac76a51cc950d9822d68b83fe1ad97b32cd580d00000000000000000000000055d398326f99059ff775485246999027b319795500000000000000000000000000000000000000000000000000000000000000010000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000c0000000000000000000000000000000000000000000000000000000000000000077777777111180000000000000000000000000000000000043f59a8e6897a9dc777777771111000000000064fa00a9ed787f3793db668bff3e6e6e7db0f92a1b00000000000000000000000000000000000000000000000000000000b8", - "gasLimit": 995735, - "feeEstimate": 31012200000000, - "effectiveGas": 516870, - "gasCost": "0", - "gasIncludedFeeData": { - "maxFeePerGas": "0x3938700", - "maxPriorityFeePerGas": "0x3938700", - "gas": "0xa210f", - "balanceNeeded": "0x2439800be900", - "currentBalance": "0x19d9db6dbe00", - "error": "Not enough funds" - } - }, - "estimatedProcessingTimeInSeconds": 0, - "quoteId": "b54573d9-6b56-42d4-8233-1c522ed18705", - "quoteRequestIndex": 0 - }, - { - "quote": { - "requestId": "0x82be70427844fa142fef34141edf33ce8249156def80e9d81d1625cceff2f33d", - "bridgeId": "relay", - "srcChainId": 56, - "destChainId": 56, - "aggregator": "relay", - "aggregatorType": "AGG", - "srcAsset": { - "address": "0xf8a0bf9cf54bb92f17374d9e9a321e6a111a51bd", - "chainId": 56, - "assetId": "eip155:56/erc20:0xf8a0bf9cf54bb92f17374d9e9a321e6a111a51bd", - "symbol": "LINK", - "decimals": 18, - "name": "BNB pegged ChainLink", - "coingeckoId": "chainlink", - "aggregators": [ - "pancakeTop100", - "oneInch", - "liFi", - "trustWallet", - "socket", - "rubic", - "squid", - "rango", - "sonarwatch", - "sushiSwap" - ], - "occurrences": 13, - "iconUrl": "https://static.cx.metamask.io/api/v2/tokenIcons/assets/eip155/56/erc20/0xf8a0bf9cf54bb92f17374d9e9a321e6a111a51bd.png", - "metadata": { - "storage": { - "balance": 1, - "approval": 2 - } - } - }, - "srcTokenAmount": "487747159749581540", - "destAsset": { - "address": "0x55d398326f99059ff775485246999027b3197955", - "chainId": 56, - "assetId": "eip155:56/erc20:0x55d398326f99059ff775485246999027b3197955", - "symbol": "USDT", - "decimals": 18, - "name": "Tether USD", - "coingeckoId": "binance-bridged-usdt-bnb-smart-chain", - "aggregators": [ - "pancakeExtended", - "oneInch", - "liFi", - "trustWallet", - "socket", - "rubic", - "squid", - "rango", - "sonarwatch", - "sushiSwap" - ], - "occurrences": 11, - "iconUrl": "https://static.cx.metamask.io/api/v2/tokenIcons/assets/eip155/56/erc20/0x55d398326f99059ff775485246999027b3197955.png", - "metadata": { - "storage": { - "balance": 1, - "approval": 2 - } - } - }, - "destTokenAmount": "4794488746644715999", - "minDestTokenAmount": "4698598971711821679", - "walletAddress": "0x141d32a89a1e0a5ef360034a2f60a4b917c18838", - "destWalletAddress": "0x141d32a89a1e0a5ef360034a2f60a4b917c18838", - "feeData": { - "metabridge": { - "amount": "42322094863194214", - "asset": { - "address": "0x55d398326f99059ff775485246999027b3197955", - "chainId": 56, - "assetId": "eip155:56/erc20:0x55d398326f99059ff775485246999027b3197955", - "symbol": "USDT", - "decimals": 18, - "name": "Tether USD", - "coingeckoId": "binance-bridged-usdt-bnb-smart-chain", - "aggregators": [ - "pancakeExtended", - "oneInch", - "liFi", - "trustWallet", - "socket", - "rubic", - "squid", - "rango", - "sonarwatch", - "sushiSwap" - ], - "occurrences": 11, - "iconUrl": "https://static.cx.metamask.io/api/v2/tokenIcons/assets/eip155/56/erc20/0x55d398326f99059ff775485246999027b3197955.png", - "metadata": { - "storage": { - "balance": 1, - "approval": 2 - } - } - }, - "quoteBpsFee": 87.5, - "baseBpsFee": 87.5, - "usd": "0.04230169561347016" - } - }, - "bridges": ["relay"], - "protocols": ["relay"], - "steps": [], - "slippage": 2, - "gasSponsored": false, - "gasIncluded": false, - "gasIncluded7702": false, - "priceData": { - "totalFromAmountUsd": "4.906736427080791", - "totalToAmountUsd": "4.792177803068833", - "priceImpact": "0.014726066800673001", - "totalFeeAmountUsd": "0.04230169561347016" - } - }, - "approval": { - "chainId": 56, - "to": "0xf8a0bf9cf54bb92f17374d9e9a321e6a111a51bd", - "from": "0x141d32a89a1e0a5ef360034a2f60a4b917c18838", - "value": "0x0", - "data": "0x095ea7b30000000000000000000000001a1ec25dc08e98e5e93f1104b5e5cdd298707d3100000000000000000000000000000000000000000000000006c4d37525145ae4", - "gasLimit": 51261, - "feeEstimate": 2773080000000, - "effectiveGas": 46218, - "gasCost": "0", - "gasIncludedFeeData": { - "maxFeePerGas": "0x3938700", - "maxPriorityFeePerGas": "0x3938700", - "gas": "0xb608", - "balanceNeeded": "0x28afe963800", - "currentBalance": "0x1c64da03f600", - "error": "Not enough funds" - } - }, - "trade": { - "chainId": 56, - "to": "0x1a1ec25DC08e98e5E93F1104B5e5cdD298707d31", - "from": "0x141d32a89a1e0a5ef360034a2f60a4b917c18838", - "value": "0x0", - "data": "0x5f5755290000000000000000000000000000000000000000000000000000000000000080000000000000000000000000f8a0bf9cf54bb92f17374d9e9a321e6a111a51bd00000000000000000000000000000000000000000000000006c4d37525145ae400000000000000000000000000000000000000000000000000000000000000c0000000000000000000000000000000000000000000000000000000000000000e72656c61794164617074657256330000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000e80000000000000000000000000f8a0bf9cf54bb92f17374d9e9a321e6a111a51bd00000000000000000000000055d398326f99059ff775485246999027b319795500000000000000000000000000000000000000000000000006c4d37525145ae40000000000000000000000000000000000000000000000004134c6dedae6176f000000000000000000000000000000000000000000000000000000000000012000000000000000000000000000000000000000000000000000965bb896789866000000000000000000000000b28da7bc87a9dd1e60849aa7fcb5da24ea913c4200000000000000000000000000000000000000000000000000000000000000010000000000000000000000000000000000000000000000000000000000000d44f9e4bab400000000000000000000000000000000000000000000000000000000000000c000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000000140000000000000000000000000c590175e458b83680867afd273527ff58f74c02b000000000000000000000000c590175e458b83680867afd273527ff58f74c02b0000000000000000000000000000000000000000000000000000000000000cc00000000000000000000000000000000000000000000000000000000000000001000000000000000000000000f8a0bf9cf54bb92f17374d9e9a321e6a111a51bd000000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000006c4d37525145ae400000000000000000000000000000000000000000000000000000000000000040000000000000000000000000000000000000000000000000000000000000080000000000000000000000000000000000000000000000000000000000000018000000000000000000000000000000000000000000000000000000000000006a00000000000000000000000000000000000000000000000000000000000000900000000000000000000000000f8a0bf9cf54bb92f17374d9e9a321e6a111a51bd0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000800000000000000000000000000000000000000000000000000000000000000044095ea7b30000000000000000000000000000000000001ff3684f28c67538d4d072c2273400000000000000000000000000000000000000000000000006c4d37525145ae4000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001ff3684f28c67538d4d072c2273400000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000008000000000000000000000000000000000000000000000000000000000000004642213bc0b000000000000000000000000c2eff1f1ce35d395408a34ad881dbcd978f40b89000000000000000000000000f8a0bf9cf54bb92f17374d9e9a321e6a111a51bd00000000000000000000000000000000000000000000000006c4d37525145ae4000000000000000000000000c2eff1f1ce35d395408a34ad881dbcd978f40b8900000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000000000000000000000000000003841fff991f000000000000000000000000b92fe925dc43a0ecde6c8b1a2709c170ec4fff4f00000000000000000000000055d398326f99059ff775485246999027b319795500000000000000000000000000000000000000000000000043399e53cb43181000000000000000000000000000000000000000000000000000000000000000a0afdee7bbf67c8f7e6a721e23000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000020000000000000000000000000000000000000000000000000000000000000040000000000000000000000000000000000000000000000000000000000000020000000000000000000000000000000000000000000000000000000000000001843036d6a6000000000000000000000000c2eff1f1ce35d395408a34ad881dbcd978f40b89000000000000000000000000f8a0bf9cf54bb92f17374d9e9a321e6a111a51bd00000000000000000000000000000000000000000000000006c4d37525145ae40000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000006a079f5f0000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000000000016000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000040f8a0bf9cf54bb92f17374d9e9a321e6a111a51bd010009c4fffd8963efd1fc6a506488495d951d5263988d2555d398326f99059ff775485246999027b3197955000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000008434ee90ca000000000000000000000000f5c4f3dc02c3fb9279495a8fef7b0741da95615700000000000000000000000055d398326f99059ff775485246999027b319795500000000000000000000000000000000000000000000000043e891ef41094ac60000000000000000000000000000000000000000000000000000000000002710000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000b92fe925dc43a0ecde6c8b1a2709c170ec4fff4f00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000008000000000000000000000000000000000000000000000000000000000000001a49bb43718000000000000000000000000000000000000000000000000000000000000008000000000000000000000000000000000000000000000000000000000000000c000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000000140000000000000000000000000000000000000000000000000000000000000000100000000000000000000000055d398326f99059ff775485246999027b31979550000000000000000000000000000000000000000000000000000000000000001000000000000000000000000f70da97812cb96acdf810712aa562db8dfa3dbef00000000000000000000000000000000000000000000000000000000000000010000000000000000000000000000000000000000000000000019d07e556cc5cb00000000000000000000000000000000000000000000000000000000000000214cbe74779600aad4ceb695cb283d8f9aa4b9f1f0d4bcb3896768121a41adc9c4010000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000b92fe925dc43a0ecde6c8b1a2709c170ec4fff4f00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000008000000000000000000000000000000000000000000000000000000000000001a49bb43718000000000000000000000000000000000000000000000000000000000000008000000000000000000000000000000000000000000000000000000000000000c000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000000140000000000000000000000000000000000000000000000000000000000000000100000000000000000000000055d398326f99059ff775485246999027b31979550000000000000000000000000000000000000000000000000000000000000001000000000000000000000000c590175e458b83680867afd273527ff58f74c02b0000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000214cbe74779600aad4ceb695cb283d8f9aa4b9f1f0d4bcb3896768121a41adc9c400000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000214cbe74779600aad4ceb695cb283d8f9aa4b9f1f0d4bcb3896768121a41adc9c400000000000000000000000000000000000000000000000000000000000000004c9cda14a1218676983bcb4d0f1f9b4aa9f8d382bc596bec4daa00697747ebc400000000000000000000000000000000000000000000000000000000b9", - "gasLimit": 775779, - "feeEstimate": 24326640000000, - "effectiveGas": 405444, - "gasCost": "0", - "gasIncludedFeeData": { - "maxFeePerGas": "0x3938700", - "maxPriorityFeePerGas": "0x3938700", - "gas": "0x7e442", - "balanceNeeded": "0x1c390144ce00", - "currentBalance": "0x19d9db6dbe00", - "error": "Not enough funds" - } - }, - "estimatedProcessingTimeInSeconds": 0, - "quoteId": "5626a3e9-e6de-4ee6-813b-8e51781a79b4", - "quoteRequestIndex": 0 - }, - { - "quote": { - "requestId": "0x7b2bcc07f7f645ccf0a87b04d26fae935b357a865a5916421ccd14917e6ce802", - "bridgeId": "mayan", - "srcChainId": 56, - "destChainId": 56, - "aggregator": "mayan", - "aggregatorType": "AGG", - "srcAsset": { - "address": "0xf8a0bf9cf54bb92f17374d9e9a321e6a111a51bd", - "chainId": 56, - "assetId": "eip155:56/erc20:0xf8a0bf9cf54bb92f17374d9e9a321e6a111a51bd", - "symbol": "LINK", - "decimals": 18, - "name": "BNB pegged ChainLink", - "coingeckoId": "chainlink", - "aggregators": [ - "pancakeTop100", - "oneInch", - "liFi", - "trustWallet", - "socket", - "rubic", - "squid", - "rango", - "sonarwatch", - "sushiSwap" - ], - "occurrences": 13, - "iconUrl": "https://static.cx.metamask.io/api/v2/tokenIcons/assets/eip155/56/erc20/0xf8a0bf9cf54bb92f17374d9e9a321e6a111a51bd.png", - "metadata": { - "storage": { - "balance": 1, - "approval": 2 - } - } - }, - "srcTokenAmount": "487747159749581540", - "destAsset": { - "address": "0x55d398326f99059ff775485246999027b3197955", - "chainId": 56, - "assetId": "eip155:56/erc20:0x55d398326f99059ff775485246999027b3197955", - "symbol": "USDT", - "decimals": 18, - "name": "Tether USD", - "coingeckoId": "binance-bridged-usdt-bnb-smart-chain", - "aggregators": [ - "pancakeExtended", - "oneInch", - "liFi", - "trustWallet", - "socket", - "rubic", - "squid", - "rango", - "sonarwatch", - "sushiSwap" - ], - "occurrences": 11, - "iconUrl": "https://static.cx.metamask.io/api/v2/tokenIcons/assets/eip155/56/erc20/0x55d398326f99059ff775485246999027b3197955.png", - "metadata": { - "storage": { - "balance": 1, - "approval": 2 - } - } - }, - "destTokenAmount": "4850193215727344550", - "minDestTokenAmount": "4753189351412797659", - "walletAddress": "0x141d32a89a1e0a5ef360034a2f60a4b917c18838", - "destWalletAddress": "0x141d32a89a1e0a5ef360034a2f60a4b917c18838", - "feeData": { - "metabridge": { - "amount": "42813811488135450", - "asset": { - "address": "0x55d398326f99059ff775485246999027b3197955", - "chainId": 56, - "assetId": "eip155:56/erc20:0x55d398326f99059ff775485246999027b3197955", - "symbol": "USDT", - "decimals": 18, - "name": "Tether USD", - "coingeckoId": "binance-bridged-usdt-bnb-smart-chain", - "aggregators": [ - "pancakeExtended", - "oneInch", - "liFi", - "trustWallet", - "socket", - "rubic", - "squid", - "rango", - "sonarwatch", - "sushiSwap" - ], - "occurrences": 11, - "iconUrl": "https://static.cx.metamask.io/api/v2/tokenIcons/assets/eip155/56/erc20/0x55d398326f99059ff775485246999027b3197955.png", - "metadata": { - "storage": { - "balance": 1, - "approval": 2 - } - } - }, - "quoteBpsFee": 87.5, - "baseBpsFee": 87.5, - "usd": "0.04279317523099817" - } - }, - "bridges": ["mayan"], - "protocols": ["mayan"], - "steps": [], - "slippage": 2, - "gasSponsored": false, - "gasIncluded": false, - "gasIncluded7702": false, - "priceData": { - "totalFromAmountUsd": "4.906736427080791", - "totalToAmountUsd": "4.847855422597364", - "priceImpact": "0.003278722933564932", - "totalFeeAmountUsd": "0.04279317523099817" - } - }, - "approval": { - "chainId": 56, - "to": "0xf8a0bf9cf54bb92f17374d9e9a321e6a111a51bd", - "from": "0x141d32a89a1e0a5ef360034a2f60a4b917c18838", - "value": "0x0", - "data": "0x095ea7b30000000000000000000000001a1ec25dc08e98e5e93f1104b5e5cdd298707d3100000000000000000000000000000000000000000000000006c4d37525145ae4", - "gasLimit": 51261, - "feeEstimate": 2773080000000, - "effectiveGas": 46218, - "gasCost": "0", - "gasIncludedFeeData": { - "maxFeePerGas": "0x39386ff", - "maxPriorityFeePerGas": "0x39386ff", - "gas": "0xb608", - "balanceNeeded": "0x28afe963800", - "currentBalance": "0x1c64da03f600", - "error": "" - } - }, - "trade": { - "chainId": 56, - "to": "0x1a1ec25DC08e98e5E93F1104B5e5cdD298707d31", - "from": "0x141d32a89a1e0a5ef360034a2f60a4b917c18838", - "value": "0x0", - "data": "0x5f5755290000000000000000000000000000000000000000000000000000000000000080000000000000000000000000f8a0bf9cf54bb92f17374d9e9a321e6a111a51bd00000000000000000000000000000000000000000000000006c4d37525145ae400000000000000000000000000000000000000000000000000000000000000c0000000000000000000000000000000000000000000000000000000000000000f6d6179616e46656544796e616d696300000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000860000000000000000000000000f8a0bf9cf54bb92f17374d9e9a321e6a111a51bd00000000000000000000000055d398326f99059ff775485246999027b319795500000000000000000000000000000000000000000000000006c4d37525145ae400000000000000000000000000000000000000000000000041f6b888192110db000000000000000000000000000000000000000000000000000000000000012000000000000000000000000000000000000000000000000000981aef493b191a000000000000000000000000b28da7bc87a9dd1e60849aa7fcb5da24ea913c420000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000072430dedc57000000000000000000000000f8a0bf9cf54bb92f17374d9e9a321e6a111a51bd00000000000000000000000000000000000000000000000006c4d37525145ae4000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001ff3684f28c67538d4d072c2273400000000000000000000000000000000000000000000000000000000000001a000000000000000000000000055d398326f99059ff775485246999027b3197955000000000000000000000000000000000000000000000000428bc8ae7c390000000000000000000000000000238856de6d9d32ea3dd4e9e7dbfe08b23cd5048c000000000000000000000000000000000000000000000000000000000000064000000000000000000000000000000000000000000000000000000000000004642213bc0b000000000000000000000000c2eff1f1ce35d395408a34ad881dbcd978f40b89000000000000000000000000f8a0bf9cf54bb92f17374d9e9a321e6a111a51bd00000000000000000000000000000000000000000000000006c4d37525145ae4000000000000000000000000c2eff1f1ce35d395408a34ad881dbcd978f40b8900000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000000000000000000000000000003841fff991f000000000000000000000000337685fdab40d39bd02028545a4ffa7d287cc3e200000000000000000000000055d398326f99059ff775485246999027b3197955000000000000000000000000000000000000000000000000428bc8b009dafb6000000000000000000000000000000000000000000000000000000000000000a009d484841dbf65bde26b0b73000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000020000000000000000000000000000000000000000000000000000000000000040000000000000000000000000000000000000000000000000000000000000020000000000000000000000000000000000000000000000000000000000000001843036d6a6000000000000000000000000c2eff1f1ce35d395408a34ad881dbcd978f40b89000000000000000000000000f8a0bf9cf54bb92f17374d9e9a321e6a111a51bd00000000000000000000000000000000000000000000000006c4d37525145ae40000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000006a079f600000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000000000016000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000040f8a0bf9cf54bb92f17374d9e9a321e6a111a51bd010009c4fffd8963efd1fc6a506488495d951d5263988d2555d398326f99059ff775485246999027b3197955000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000008434ee90ca000000000000000000000000f5c4f3dc02c3fb9279495a8fef7b0741da95615700000000000000000000000055d398326f99059ff775485246999027b319795500000000000000000000000000000000000000000000000043e891ef41094ac6000000000000000000000000000000000000000000000000000000000000271000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000a429d8eb0a00000000000000000000000055d398326f99059ff775485246999027b319795500000000000000000000000000000000000000000000000043e773f5de97b800000000000000000000000000c590175e458b83680867afd273527ff58f74c02b0000000000000000000000001f3c3f0243d06a0353abcb066be9140747aeb8c900000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000c6", - "gasLimit": 674921, - "feeEstimate": 21149640000000, - "effectiveGas": 352494, - "gasCost": "0", - "gasIncludedFeeData": { - "maxFeePerGas": "0x39386ff", - "maxPriorityFeePerGas": "0x39386ff", - "gas": "0x6dd9b", - "balanceNeeded": "0x188dafddbd00", - "currentBalance": "0x19d9db6dbe00", - "error": "" - } - }, - "estimatedProcessingTimeInSeconds": 0, - "quoteId": "7bfb090e-d42f-4a00-b6c4-e8b1d4fce77f", - "quoteRequestIndex": 0 - }, - { - "quote": { - "requestId": "0xc8c24b9e02af88ed2c1b83498f1f626583b27a041a0246afc30b20c4eb3d86da", - "bridgeId": "relay", - "srcChainId": 56, - "destChainId": 56, - "aggregator": "relay", - "aggregatorType": "AGG", - "srcAsset": { - "address": "0x1af3f329e8be154074d8769d1ffa4ee058b1dbc3", - "chainId": 56, - "assetId": "eip155:56/erc20:0x1af3f329e8be154074d8769d1ffa4ee058b1dbc3", - "symbol": "DAI", - "decimals": 18, - "name": "BNB pegged Dai Token", - "coingeckoId": "binance-peg-dai", - "aggregators": [ - "pancakeExtended", - "oneInch", - "liFi", - "trustWallet", - "socket", - "rubic", - "rango", - "sonarwatch", - "sushiSwap", - "binanceDex" - ], - "occurrences": 12, - "iconUrl": "https://static.cx.metamask.io/api/v2/tokenIcons/assets/eip155/56/erc20/0x1af3f329e8be154074d8769d1ffa4ee058b1dbc3.png", - "metadata": { - "storage": { - "balance": 1, - "approval": 2 - } - } - }, - "srcTokenAmount": "991250000000000000", - "destAsset": { - "address": "0x55d398326f99059ff775485246999027b3197955", - "chainId": 56, - "assetId": "eip155:56/erc20:0x55d398326f99059ff775485246999027b3197955", - "symbol": "USDT", - "decimals": 18, - "name": "Tether USD", - "coingeckoId": "binance-bridged-usdt-bnb-smart-chain", - "aggregators": [ - "pancakeExtended", - "oneInch", - "liFi", - "trustWallet", - "socket", - "rubic", - "squid", - "rango", - "sonarwatch", - "sushiSwap" - ], - "occurrences": 11, - "iconUrl": "https://static.cx.metamask.io/api/v2/tokenIcons/assets/eip155/56/erc20/0x55d398326f99059ff775485246999027b3197955.png", - "metadata": { - "storage": { - "balance": 1, - "approval": 2 - } - } - }, - "destTokenAmount": "980595532535258556", - "minDestTokenAmount": "960983621884553384", - "walletAddress": "0x141d32a89a1e0a5ef360034a2f60a4b917c18838", - "destWalletAddress": "0x141d32a89a1e0a5ef360034a2f60a4b917c18838", - "feeData": { - "metabridge": { - "amount": "8750000000000000", - "asset": { - "address": "0x1af3f329e8be154074d8769d1ffa4ee058b1dbc3", - "chainId": 56, - "assetId": "eip155:56/erc20:0x1af3f329e8be154074d8769d1ffa4ee058b1dbc3", - "symbol": "DAI", - "decimals": 18, - "name": "BNB pegged Dai Token", - "coingeckoId": "binance-peg-dai", - "aggregators": [ - "pancakeExtended", - "oneInch", - "liFi", - "trustWallet", - "socket", - "rubic", - "rango", - "sonarwatch", - "sushiSwap", - "binanceDex" - ], - "occurrences": 12, - "iconUrl": "https://static.cx.metamask.io/api/v2/tokenIcons/assets/eip155/56/erc20/0x1af3f329e8be154074d8769d1ffa4ee058b1dbc3.png", - "metadata": { - "storage": { - "balance": 1, - "approval": 2 - } - } - }, - "quoteBpsFee": 87.5, - "baseBpsFee": 87.5, - "usd": "0.008742761859012143" - } - }, - "bridges": ["relay"], - "protocols": ["relay"], - "steps": [], - "slippage": 2, - "gasSponsored": false, - "gasIncluded": false, - "gasIncluded7702": false, - "priceData": { - "totalFromAmountUsd": "0.999172783887102", - "totalToAmountUsd": "0.9801228854885766", - "priceImpact": "0.010406728703969843", - "totalFeeAmountUsd": "0.008742761859012143" - } - }, - "approval": { - "chainId": 56, - "to": "0x1af3f329e8be154074d8769d1ffa4ee058b1dbc3", - "from": "0x141d32a89a1e0a5ef360034a2f60a4b917c18838", - "value": "0x0", - "data": "0x095ea7b30000000000000000000000001a1ec25dc08e98e5e93f1104b5e5cdd298707d310000000000000000000000000000000000000000000000000de0b6b3a7640000", - "gasLimit": 51234, - "feeEstimate": 2771640000000, - "effectiveGas": 46194, - "gasCost": "0", - "gasIncludedFeeData": { - "maxFeePerGas": "0x3938700", - "maxPriorityFeePerGas": "0x3938700", - "gas": "0xb5f0", - "balanceNeeded": "0x28aa8c19000", - "currentBalance": "0x1c64da03f600", - "error": "Not enough funds" - } - }, - "trade": { - "chainId": 56, - "to": "0x1a1ec25DC08e98e5E93F1104B5e5cdD298707d31", - "from": "0x141d32a89a1e0a5ef360034a2f60a4b917c18838", - "value": "0x0", - "data": "0x5f57552900000000000000000000000000000000000000000000000000000000000000800000000000000000000000001af3f329e8be154074d8769d1ffa4ee058b1dbc30000000000000000000000000000000000000000000000000de0b6b3a764000000000000000000000000000000000000000000000000000000000000000000c0000000000000000000000000000000000000000000000000000000000000000e72656c61794164617074657256330000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000e800000000000000000000000001af3f329e8be154074d8769d1ffa4ee058b1dbc300000000000000000000000055d398326f99059ff775485246999027b31979550000000000000000000000000000000000000000000000000dc1a09f859b20000000000000000000000000000000000000000000000000000d5619833965a8a80000000000000000000000000000000000000000000000000000000000000120000000000000000000000000000000000000000000000000001f161421c8e000000000000000000000000000b28da7bc87a9dd1e60849aa7fcb5da24ea913c4200000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000d44f9e4bab400000000000000000000000000000000000000000000000000000000000000c000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000000140000000000000000000000000c590175e458b83680867afd273527ff58f74c02b000000000000000000000000c590175e458b83680867afd273527ff58f74c02b0000000000000000000000000000000000000000000000000000000000000cc000000000000000000000000000000000000000000000000000000000000000010000000000000000000000001af3f329e8be154074d8769d1ffa4ee058b1dbc300000000000000000000000000000000000000000000000000000000000000010000000000000000000000000000000000000000000000000dc1a09f859b200000000000000000000000000000000000000000000000000000000000000000040000000000000000000000000000000000000000000000000000000000000080000000000000000000000000000000000000000000000000000000000000018000000000000000000000000000000000000000000000000000000000000006a000000000000000000000000000000000000000000000000000000000000009000000000000000000000000001af3f329e8be154074d8769d1ffa4ee058b1dbc30000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000800000000000000000000000000000000000000000000000000000000000000044095ea7b30000000000000000000000000000000000001ff3684f28c67538d4d072c227340000000000000000000000000000000000000000000000000dc1a09f859b2000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001ff3684f28c67538d4d072c2273400000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000008000000000000000000000000000000000000000000000000000000000000004642213bc0b000000000000000000000000c2eff1f1ce35d395408a34ad881dbcd978f40b890000000000000000000000001af3f329e8be154074d8769d1ffa4ee058b1dbc30000000000000000000000000000000000000000000000000dc1a09f859b2000000000000000000000000000c2eff1f1ce35d395408a34ad881dbcd978f40b8900000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000000000000000000000000000003841fff991f000000000000000000000000b92fe925dc43a0ecde6c8b1a2709c170ec4fff4f00000000000000000000000055d398326f99059ff775485246999027b31979550000000000000000000000000000000000000000000000000d9c1fa28e79fe2400000000000000000000000000000000000000000000000000000000000000a066dd850b225d912068b33a38000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000020000000000000000000000000000000000000000000000000000000000000040000000000000000000000000000000000000000000000000000000000000020000000000000000000000000000000000000000000000000000000000000001843036d6a6000000000000000000000000c2eff1f1ce35d395408a34ad881dbcd978f40b890000000000000000000000001af3f329e8be154074d8769d1ffa4ee058b1dbc30000000000000000000000000000000000000000000000000dc1a09f859b20000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000006a079f5f00000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000000160000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000401af3f329e8be154074d8769d1ffa4ee058b1dbc30000006400000000000000000000000000000001000276a455d398326f99059ff775485246999027b3197955000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000008434ee90ca000000000000000000000000f5c4f3dc02c3fb9279495a8fef7b0741da95615700000000000000000000000055d398326f99059ff775485246999027b31979550000000000000000000000000000000000000000000000000dbf5115f9ef9d490000000000000000000000000000000000000000000000000000000000002710000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000b92fe925dc43a0ecde6c8b1a2709c170ec4fff4f00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000008000000000000000000000000000000000000000000000000000000000000001a49bb43718000000000000000000000000000000000000000000000000000000000000008000000000000000000000000000000000000000000000000000000000000000c000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000000140000000000000000000000000000000000000000000000000000000000000000100000000000000000000000055d398326f99059ff775485246999027b31979550000000000000000000000000000000000000000000000000000000000000001000000000000000000000000f70da97812cb96acdf810712aa562db8dfa3dbef0000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000059318d60a068000000000000000000000000000000000000000000000000000000000000002197da7bf6f74e272290566d8406fda8899f75088a495511b4f5dd4ce5641198c8010000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000b92fe925dc43a0ecde6c8b1a2709c170ec4fff4f00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000008000000000000000000000000000000000000000000000000000000000000001a49bb43718000000000000000000000000000000000000000000000000000000000000008000000000000000000000000000000000000000000000000000000000000000c000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000000140000000000000000000000000000000000000000000000000000000000000000100000000000000000000000055d398326f99059ff775485246999027b31979550000000000000000000000000000000000000000000000000000000000000001000000000000000000000000c590175e458b83680867afd273527ff58f74c02b00000000000000000000000000000000000000000000000000000000000000010000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000002197da7bf6f74e272290566d8406fda8899f75088a495511b4f5dd4ce5641198c8000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000002197da7bf6f74e272290566d8406fda8899f75088a495511b4f5dd4ce5641198c800000000000000000000000000000000000000000000000000000000000000008c8911465ec4dd5f4b115594a88057f9988adf6048d665092272e47f6fb7ad790000000000000000000000000000000000000000000000000000000061", - "gasLimit": 744942, - "feeEstimate": 23355360000000, - "effectiveGas": 389256, - "gasCost": "0", - "gasIncludedFeeData": { - "maxFeePerGas": "0x3938700", - "maxPriorityFeePerGas": "0x3938700", - "gas": "0x793f4", - "balanceNeeded": "0x1b19d021ac00", - "currentBalance": "0x19da31426600", - "error": "Not enough funds" - } - }, - "estimatedProcessingTimeInSeconds": 0, - "quoteId": "d99cc3ea-4806-4ab9-8bde-2616a9fd21e7", - "quoteRequestIndex": 1 - }, - { - "quote": { - "requestId": "0x5ef3d167461054aeeebabfc564c9cde5bd956c2caaf5c8b8938ef697f9067fd3", - "bridgeId": "mayan", - "srcChainId": 56, - "destChainId": 56, - "aggregator": "mayan", - "aggregatorType": "AGG", - "srcAsset": { - "address": "0x1af3f329e8be154074d8769d1ffa4ee058b1dbc3", - "chainId": 56, - "assetId": "eip155:56/erc20:0x1af3f329e8be154074d8769d1ffa4ee058b1dbc3", - "symbol": "DAI", - "decimals": 18, - "name": "BNB pegged Dai Token", - "coingeckoId": "binance-peg-dai", - "aggregators": [ - "pancakeExtended", - "oneInch", - "liFi", - "trustWallet", - "socket", - "rubic", - "rango", - "sonarwatch", - "sushiSwap", - "binanceDex" - ], - "occurrences": 12, - "iconUrl": "https://static.cx.metamask.io/api/v2/tokenIcons/assets/eip155/56/erc20/0x1af3f329e8be154074d8769d1ffa4ee058b1dbc3.png", - "metadata": { - "storage": { - "balance": 1, - "approval": 2 - } - } - }, - "srcTokenAmount": "991250000000000000", - "destAsset": { - "address": "0x55d398326f99059ff775485246999027b3197955", - "chainId": 56, - "assetId": "eip155:56/erc20:0x55d398326f99059ff775485246999027b3197955", - "symbol": "USDT", - "decimals": 18, - "name": "Tether USD", - "coingeckoId": "binance-bridged-usdt-bnb-smart-chain", - "aggregators": [ - "pancakeExtended", - "oneInch", - "liFi", - "trustWallet", - "socket", - "rubic", - "squid", - "rango", - "sonarwatch", - "sushiSwap" - ], - "occurrences": 11, - "iconUrl": "https://static.cx.metamask.io/api/v2/tokenIcons/assets/eip155/56/erc20/0x55d398326f99059ff775485246999027b3197955.png", - "metadata": { - "storage": { - "balance": 1, - "approval": 2 - } - } - }, - "destTokenAmount": "990603665402661000", - "minDestTokenAmount": "970791592094607780", - "walletAddress": "0x141d32a89a1e0a5ef360034a2f60a4b917c18838", - "destWalletAddress": "0x141d32a89a1e0a5ef360034a2f60a4b917c18838", - "feeData": { - "metabridge": { - "amount": "8750000000000000", - "asset": { - "address": "0x1af3f329e8be154074d8769d1ffa4ee058b1dbc3", - "chainId": 56, - "assetId": "eip155:56/erc20:0x1af3f329e8be154074d8769d1ffa4ee058b1dbc3", - "symbol": "DAI", - "decimals": 18, - "name": "BNB pegged Dai Token", - "coingeckoId": "binance-peg-dai", - "aggregators": [ - "pancakeExtended", - "oneInch", - "liFi", - "trustWallet", - "socket", - "rubic", - "rango", - "sonarwatch", - "sushiSwap", - "binanceDex" - ], - "occurrences": 12, - "iconUrl": "https://static.cx.metamask.io/api/v2/tokenIcons/assets/eip155/56/erc20/0x1af3f329e8be154074d8769d1ffa4ee058b1dbc3.png", - "metadata": { - "storage": { - "balance": 1, - "approval": 2 - } - } - }, - "quoteBpsFee": 87.5, - "baseBpsFee": 87.5, - "usd": "0.008742761859012143" - } - }, - "bridges": ["mayan"], - "protocols": ["mayan"], - "steps": [], - "slippage": 2, - "gasSponsored": false, - "gasIncluded": false, - "gasIncluded7702": false, - "priceData": { - "totalFromAmountUsd": "0.999172783887102", - "totalToAmountUsd": "0.990126194435937", - "priceImpact": "0.00030676331027478096", - "totalFeeAmountUsd": "0.008742761859012143" - } - }, - "approval": { - "chainId": 56, - "to": "0x1af3f329e8be154074d8769d1ffa4ee058b1dbc3", - "from": "0x141d32a89a1e0a5ef360034a2f60a4b917c18838", - "value": "0x0", - "data": "0x095ea7b30000000000000000000000001a1ec25dc08e98e5e93f1104b5e5cdd298707d310000000000000000000000000000000000000000000000000de0b6b3a7640000", - "gasLimit": 51234, - "feeEstimate": 2771640000000, - "effectiveGas": 46194, - "gasCost": "0", - "gasIncludedFeeData": { - "maxFeePerGas": "0x3938700", - "maxPriorityFeePerGas": "0x3938700", - "gas": "0xb5f0", - "balanceNeeded": "0x28aa8c19000", - "currentBalance": "0x1c64da03f600", - "error": "Not enough funds" - } - }, - "trade": { - "chainId": 56, - "to": "0x1a1ec25DC08e98e5E93F1104B5e5cdD298707d31", - "from": "0x141d32a89a1e0a5ef360034a2f60a4b917c18838", - "value": "0x0", - "data": "0x5f57552900000000000000000000000000000000000000000000000000000000000000800000000000000000000000001af3f329e8be154074d8769d1ffa4ee058b1dbc30000000000000000000000000000000000000000000000000de0b6b3a764000000000000000000000000000000000000000000000000000000000000000000c0000000000000000000000000000000000000000000000000000000000000000f6d6179616e46656544796e616d6963000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000009c00000000000000000000000001af3f329e8be154074d8769d1ffa4ee058b1dbc300000000000000000000000055d398326f99059ff775485246999027b31979550000000000000000000000000000000000000000000000000dc1a09f859b20000000000000000000000000000000000000000000000000000d78f1cf3dbc29a40000000000000000000000000000000000000000000000000000000000000120000000000000000000000000000000000000000000000000001f161421c8e000000000000000000000000000b28da7bc87a9dd1e60849aa7fcb5da24ea913c420000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000088430dedc570000000000000000000000001af3f329e8be154074d8769d1ffa4ee058b1dbc30000000000000000000000000000000000000000000000000dc1a09f859b2000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001ff3684f28c67538d4d072c2273400000000000000000000000000000000000000000000000000000000000001a000000000000000000000000055d398326f99059ff775485246999027b31979550000000000000000000000000000000000000000000000000d78f1cec0e2fc00000000000000000000000000238856de6d9d32ea3dd4e9e7dbfe08b23cd5048c00000000000000000000000000000000000000000000000000000000000007a000000000000000000000000000000000000000000000000000000000000005c42213bc0b000000000000000000000000c2eff1f1ce35d395408a34ad881dbcd978f40b890000000000000000000000001af3f329e8be154074d8769d1ffa4ee058b1dbc30000000000000000000000000000000000000000000000000dc1a09f859b2000000000000000000000000000c2eff1f1ce35d395408a34ad881dbcd978f40b8900000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000000000000000000000000000004e41fff991f000000000000000000000000337685fdab40d39bd02028545a4ffa7d287cc3e200000000000000000000000055d398326f99059ff775485246999027b31979550000000000000000000000000000000000000000000000000d78f1cf3dbc25d000000000000000000000000000000000000000000000000000000000000000a05380ca92bf85ab802f6e39310000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000300000000000000000000000000000000000000000000000000000000000000600000000000000000000000000000000000000000000000000000000000000180000000000000000000000000000000000000000000000000000000000000036000000000000000000000000000000000000000000000000000000000000000e4c1fb425e000000000000000000000000c2eff1f1ce35d395408a34ad881dbcd978f40b890000000000000000000000001af3f329e8be154074d8769d1ffa4ee058b1dbc30000000000000000000000000000000000000000000000000dc1a09f859b20000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000006a079f6000000000000000000000000000000000000000000000000000000000000000c000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001a4df753f1e000000000000000000000000c2eff1f1ce35d395408a34ad881dbcd978f40b890000000000000000000000001af3f329e8be154074d8769d1ffa4ee058b1dbc3000000000000000000000000000000000000000000000000000000000000271000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000002000000000000000000000000000000000000000000000000ffffffffffffffc5000000000000000000000000000000000000000000000000000000000000010000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000066271000000000000000000000000000000001000276a40155d398326f99059ff775485246999027b31979550000000000000000000000000000000000000000000000360000000000000000000000000000000000000000000000000000000000010000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000008434ee90ca000000000000000000000000f5c4f3dc02c3fb9279495a8fef7b0741da95615700000000000000000000000055d398326f99059ff775485246999027b31979550000000000000000000000000000000000000000000000000dc072c0b9e496a1000000000000000000000000000000000000000000000000000000000000271000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000a429d8eb0a00000000000000000000000055d398326f99059ff775485246999027b31979550000000000000000000000000000000000000000000000000dbf54c7c3807800000000000000000000000000c590175e458b83680867afd273527ff58f74c02b0000000000000000000000001f3c3f0243d06a0353abcb066be9140747aeb8c90000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000078", - "gasLimit": 741296, - "feeEstimate": 23240460000000, - "effectiveGas": 387341, - "gasCost": "0", - "gasIncludedFeeData": { - "maxFeePerGas": "0x3938700", - "maxPriorityFeePerGas": "0x3938700", - "gas": "0x78a75", - "balanceNeeded": "0x1af7da32b300", - "currentBalance": "0x19da31426600", - "error": "Not enough funds" - } - }, - "estimatedProcessingTimeInSeconds": 0, - "quoteId": "e0eefc45-8591-4ed9-a8f6-13d4aad7e06a", - "quoteRequestIndex": 1 - }, - { - "quote": { - "requestId": "0xdbd429004b09dac59f7a5fe3d8aa63485e5beea4b3efc0da572a8a0e5d2df714", - "bridgeId": "uniswap", - "srcChainId": 56, - "destChainId": 56, - "aggregator": "uniswap", - "aggregatorType": "AGG", - "srcAsset": { - "address": "0x1af3f329e8be154074d8769d1ffa4ee058b1dbc3", - "chainId": 56, - "assetId": "eip155:56/erc20:0x1af3f329e8be154074d8769d1ffa4ee058b1dbc3", - "symbol": "DAI", - "decimals": 18, - "name": "BNB pegged Dai Token", - "coingeckoId": "binance-peg-dai", - "aggregators": [ - "pancakeExtended", - "oneInch", - "liFi", - "trustWallet", - "socket", - "rubic", - "rango", - "sonarwatch", - "sushiSwap", - "binanceDex" - ], - "occurrences": 12, - "iconUrl": "https://static.cx.metamask.io/api/v2/tokenIcons/assets/eip155/56/erc20/0x1af3f329e8be154074d8769d1ffa4ee058b1dbc3.png", - "metadata": { - "storage": { - "balance": 1, - "approval": 2 - } - } - }, - "srcTokenAmount": "991250000000000000", - "destAsset": { - "address": "0x55d398326f99059ff775485246999027b3197955", - "chainId": 56, - "assetId": "eip155:56/erc20:0x55d398326f99059ff775485246999027b3197955", - "symbol": "USDT", - "decimals": 18, - "name": "Tether USD", - "coingeckoId": "binance-bridged-usdt-bnb-smart-chain", - "aggregators": [ - "pancakeExtended", - "oneInch", - "liFi", - "trustWallet", - "socket", - "rubic", - "squid", - "rango", - "sonarwatch", - "sushiSwap" - ], - "occurrences": 11, - "iconUrl": "https://static.cx.metamask.io/api/v2/tokenIcons/assets/eip155/56/erc20/0x55d398326f99059ff775485246999027b3197955.png", - "metadata": { - "storage": { - "balance": 1, - "approval": 2 - } - } - }, - "destTokenAmount": "990599597874191689", - "minDestTokenAmount": "970787605916707855", - "walletAddress": "0x141d32a89a1e0a5ef360034a2f60a4b917c18838", - "destWalletAddress": "0x141d32a89a1e0a5ef360034a2f60a4b917c18838", - "feeData": { - "metabridge": { - "amount": "8750000000000000", - "asset": { - "address": "0x1af3f329e8be154074d8769d1ffa4ee058b1dbc3", - "chainId": 56, - "assetId": "eip155:56/erc20:0x1af3f329e8be154074d8769d1ffa4ee058b1dbc3", - "symbol": "DAI", - "decimals": 18, - "name": "BNB pegged Dai Token", - "coingeckoId": "binance-peg-dai", - "aggregators": [ - "pancakeExtended", - "oneInch", - "liFi", - "trustWallet", - "socket", - "rubic", - "rango", - "sonarwatch", - "sushiSwap", - "binanceDex" - ], - "occurrences": 12, - "iconUrl": "https://static.cx.metamask.io/api/v2/tokenIcons/assets/eip155/56/erc20/0x1af3f329e8be154074d8769d1ffa4ee058b1dbc3.png", - "metadata": { - "storage": { - "balance": 1, - "approval": 2 - } - } - }, - "quoteBpsFee": 87.5, - "baseBpsFee": 87.5, - "usd": "0.008742761859012143" - } - }, - "bridges": ["uniswap"], - "protocols": ["uniswap"], - "steps": [], - "slippage": 2, - "gasSponsored": false, - "gasIncluded": false, - "gasIncluded7702": false, - "priceData": { - "totalFromAmountUsd": "0.999172783887102", - "totalToAmountUsd": "0.9901221288680164", - "priceImpact": "0.0003108681615314265", - "totalFeeAmountUsd": "0.008742761859012143" - } - }, - "approval": { - "chainId": 56, - "to": "0x1af3f329e8be154074d8769d1ffa4ee058b1dbc3", - "from": "0x141d32a89a1e0a5ef360034a2f60a4b917c18838", - "value": "0x0", - "data": "0x095ea7b30000000000000000000000001a1ec25dc08e98e5e93f1104b5e5cdd298707d310000000000000000000000000000000000000000000000000de0b6b3a7640000", - "gasLimit": 51234, - "feeEstimate": 2771640000000, - "effectiveGas": 46194, - "gasCost": "0", - "gasIncludedFeeData": { - "maxFeePerGas": "0x39386ff", - "maxPriorityFeePerGas": "0x39386ff", - "gas": "0xb5f0", - "balanceNeeded": "0x28aa8c19000", - "currentBalance": "0x1c64da03f600", - "error": "" - } - }, - "trade": { - "chainId": 56, - "to": "0x1a1ec25DC08e98e5E93F1104B5e5cdD298707d31", - "from": "0x141d32a89a1e0a5ef360034a2f60a4b917c18838", - "value": "0x0", - "data": "0x5f57552900000000000000000000000000000000000000000000000000000000000000800000000000000000000000001af3f329e8be154074d8769d1ffa4ee058b1dbc30000000000000000000000000000000000000000000000000de0b6b3a764000000000000000000000000000000000000000000000000000000000000000000c00000000000000000000000000000000000000000000000000000000000000018756e69737761705065726d69743246656544796e616d6963000000000000000000000000000000000000000000000000000000000000000000000000000003400000000000000000000000001af3f329e8be154074d8769d1ffa4ee058b1dbc300000000000000000000000055d398326f99059ff775485246999027b31979550000000000000000000000000000000000000000000000000dc1a09f859b20000000000000000000000000000000000000000000000000000d78ee2f23046c0f0000000000000000000000000000000000000000000000000000000000000120000000000000000000000000000000000000000000000000001f161421c8e000000000000000000000000000b28da7bc87a9dd1e60849aa7fcb5da24ea913c420000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000020e3593564c000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000000a0000000000000000000000000000000000000000000000000000000006a07a53d00000000000000000000000000000000000000000000000000000000000000010000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000000000200000000000000000000000000000000000000000000000000000000000000100000000000000000000000000c590175e458b83680867afd273527ff58f74c02b0000000000000000000000000000000000000000000000000dc1a09f859b20000000000000000000000000000000000000000000000000000d7a4f7ef50908a100000000000000000000000000000000000000000000000000000000000000a00000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000002b1af3f329e8be154074d8769d1ffa4ee058b1dbc300006455d398326f99059ff775485246999027b3197955000000000000000000000000000000000000000000756e69780000b2c5de0b000000000000000000000000000000000000ff", - "gasLimit": 353267, - "feeEstimate": 11172840000000, - "effectiveGas": 186214, - "gasCost": "0", - "gasIncludedFeeData": { - "maxFeePerGas": "0x39386ff", - "maxPriorityFeePerGas": "0x39386ff", - "gas": "0x397f7", - "balanceNeeded": "0xcda0cf84100", - "currentBalance": "0x19da31426600", - "error": "" - } - }, - "estimatedProcessingTimeInSeconds": 0, - "quoteId": "930b9ca8-3bd8-46e7-be85-744ac22d2c0b", - "quoteRequestIndex": 1 - }, - { - "quote": { - "requestId": "0x6aa8429aa2b6109fc06fbcfbf30a88e1854c8c62a7189bd611fb8d1aa25a04fa", - "bridgeId": "kyberswap", - "srcChainId": 56, - "destChainId": 56, - "aggregator": "kyberswap", - "aggregatorType": "AGG", - "srcAsset": { - "address": "0xf8a0bf9cf54bb92f17374d9e9a321e6a111a51bd", - "chainId": 56, - "assetId": "eip155:56/erc20:0xf8a0bf9cf54bb92f17374d9e9a321e6a111a51bd", - "symbol": "LINK", - "decimals": 18, - "name": "BNB pegged ChainLink", - "coingeckoId": "chainlink", - "aggregators": [ - "pancakeTop100", - "oneInch", - "liFi", - "trustWallet", - "socket", - "rubic", - "squid", - "rango", - "sonarwatch", - "sushiSwap" - ], - "occurrences": 13, - "iconUrl": "https://static.cx.metamask.io/api/v2/tokenIcons/assets/eip155/56/erc20/0xf8a0bf9cf54bb92f17374d9e9a321e6a111a51bd.png", - "metadata": { - "storage": { - "balance": 1, - "approval": 2 - } - } - }, - "srcTokenAmount": "487747159749581540", - "destAsset": { - "address": "0x55d398326f99059ff775485246999027b3197955", - "chainId": 56, - "assetId": "eip155:56/erc20:0x55d398326f99059ff775485246999027b3197955", - "symbol": "USDT", - "decimals": 18, - "name": "Tether USD", - "coingeckoId": "binance-bridged-usdt-bnb-smart-chain", - "aggregators": [ - "pancakeExtended", - "oneInch", - "liFi", - "trustWallet", - "socket", - "rubic", - "squid", - "rango", - "sonarwatch", - "sushiSwap" - ], - "occurrences": 11, - "iconUrl": "https://static.cx.metamask.io/api/v2/tokenIcons/assets/eip155/56/erc20/0x55d398326f99059ff775485246999027b3197955.png", - "metadata": { - "storage": { - "balance": 1, - "approval": 2 - } - } - }, - "destTokenAmount": "4845426335187781456", - "minDestTokenAmount": "4748517808484025826", - "walletAddress": "0x141d32a89a1e0a5ef360034a2f60a4b917c18838", - "destWalletAddress": "0x141d32a89a1e0a5ef360034a2f60a4b917c18838", - "feeData": { - "metabridge": { - "amount": "42771733097496179", - "asset": { - "address": "0x55d398326f99059ff775485246999027b3197955", - "chainId": 56, - "assetId": "eip155:56/erc20:0x55d398326f99059ff775485246999027b3197955", - "symbol": "USDT", - "decimals": 18, - "name": "Tether USD", - "coingeckoId": "binance-bridged-usdt-bnb-smart-chain", - "aggregators": [ - "pancakeExtended", - "oneInch", - "liFi", - "trustWallet", - "socket", - "rubic", - "squid", - "rango", - "sonarwatch", - "sushiSwap" - ], - "occurrences": 11, - "iconUrl": "https://static.cx.metamask.io/api/v2/tokenIcons/assets/eip155/56/erc20/0x55d398326f99059ff775485246999027b3197955.png", - "metadata": { - "storage": { - "balance": 1, - "approval": 2 - } - } - }, - "quoteBpsFee": 87.5, - "baseBpsFee": 87.5, - "usd": "0.04275111712214318" - } - }, - "bridges": ["kyberswap"], - "protocols": ["kyberswap"], - "steps": [], - "slippage": 2, - "gasSponsored": false, - "gasIncluded": false, - "gasIncluded7702": false, - "priceData": { - "totalFromAmountUsd": "4.906736427080791", - "totalToAmountUsd": "4.843090839694221", - "priceImpact": "0.0042583233428042004", - "totalFeeAmountUsd": "0.04275111712214318" - } - }, - "approval": { - "chainId": 56, - "to": "0xf8a0bf9cf54bb92f17374d9e9a321e6a111a51bd", - "from": "0x141d32a89a1e0a5ef360034a2f60a4b917c18838", - "value": "0x0", - "data": "0x095ea7b30000000000000000000000001a1ec25dc08e98e5e93f1104b5e5cdd298707d3100000000000000000000000000000000000000000000000006c4d37525145ae4", - "gasLimit": 51261, - "feeEstimate": 2773080000000, - "effectiveGas": 46218, - "gasCost": "0", - "gasIncludedFeeData": { - "maxFeePerGas": "0x39386ff", - "maxPriorityFeePerGas": "0x39386ff", - "gas": "0xb608", - "balanceNeeded": "0x28afe963800", - "currentBalance": "0x1c64da03f600", - "error": "" - } - }, - "trade": { - "chainId": 56, - "to": "0x1a1ec25DC08e98e5E93F1104B5e5cdD298707d31", - "from": "0x141d32a89a1e0a5ef360034a2f60a4b917c18838", - "value": "0x0", - "data": "0x5f5755290000000000000000000000000000000000000000000000000000000000000080000000000000000000000000f8a0bf9cf54bb92f17374d9e9a321e6a111a51bd00000000000000000000000000000000000000000000000006c4d37525145ae400000000000000000000000000000000000000000000000000000000000000c000000000000000000000000000000000000000000000000000000000000000136b796265725377617046656544796e616d6963000000000000000000000000000000000000000000000000000000000000000000000000000000000000000ba0000000000000000000000000f8a0bf9cf54bb92f17374d9e9a321e6a111a51bd00000000000000000000000055d398326f99059ff775485246999027b319795500000000000000000000000000000000000000000000000006c4d37525145ae400000000000000000000000000000000000000000000000041e61fc9c04e85e200000000000000000000000000000000000000000000000000000000000001200000000000000000000000000000000000000000000000000097f4aa25b43e73000000000000000000000000b28da7bc87a9dd1e60849aa7fcb5da24ea913c4200000000000000000000000000000000000000000000000000000000000000010000000000000000000000000000000000000000000000000000000000000a64e21fd0e900000000000000000000000000000000000000000000000000000000000000200000000000000000000000008f10b468b06c6fd214b65f87778827f7d113f996000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000a0000000000000000000000000000000000000000000000000000000000000072000000000000000000000000000000000000000000000000000000000000009600000000000000000000000000000000000000000000000000000000000000660000000000000000006c4d37525145ae400000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000000e000000000000000000000000000000000000000000000000000000000000000418c43a21043d87f0d30c0cee887503de2c2f290dd0928826a4774994c7637fe331b7c4e296a938602d918ad01088549a7fbe74cac3ccf2d6dc9e5acea440f0b9b1c000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000560000000000000000000000000c590175e458b83680867afd273527ff58f74c02b000000000000000000000000000000000000000000000000000000000000014000000000000000000000000000000000000000000000000000000000000001800000000000000000066e2f48e339bcc00000000000000000071b77a166eef940000000000000000006c4d37525145ae4000000000000000043d65e3e8be505c4000000000000000000000000000000000004721f4f383d0000000f42400000000000000000000000000000004f82e73edb06d29ff62c91ec8f5ff06571bdeb290000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000006a07a2e50000000000000000000000000000000000000000000000000000000000000540000000000000000000000000000000000000000000000000000000000000000161f598cd00000000000000003261c1bf28a7663c8ecccf14914a2c02ce17e5660000000000000000000000000000000000000000000000000000000000000003000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000001c00000000000000000000000000000000000000000000000000000000000000320000000000000000000000000f8a0bf9cf54bb92f17374d9e9a321e6a111a51bd8000000000000000000000718fff06c5000000000000000006c4d37525145ae400000000000000000000000000000000000000000000000000000000000000600000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000002000000000000000000000000000000000000000000000000006c4d37525145ae4b372966800000000000000015455c918e405a2831fbff8595c0aae35ee3db9d100000000000000000000000000000000000000000000000000000000000000800000000000000000000000001e40450f8e21bb68490d7d91ab422888fb3d60f100000000000000000000000000000000000000000000000000000000000000200000000100000000000003e8e7b2d08e7cd3270df7ff804786f444434ff7e1f60000000000000000000000008ac76a51cc950d9822d68b83fe1ad97b32cd580d800000000000000000000471e4567128000000000000000043d2da68002a754700000000000000000000000000000000000000000000000000000000000000600000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000002000000000000000000000000000000000000000000000000043d2da68002a7547f7f995d600000000000200025455c918e405a2831fbff8595c0aae35ee3db9d10000000000000000000000000000000000000000000000000000000000000080000000000000000000000000c590175e458b83680867afd273527ff58f74c02b00000000000000000000000000000000000000000000000000000000000000200000000000000000000000001e40450f8e21bb68490d7d91ab422888fb3d60f100000000000000000000000055d398326f99059ff775485246999027b31979558000000000000000000000000000000100000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000f8a0bf9cf54bb92f17374d9e9a321e6a111a51bd00000000000000000000000055d398326f99059ff775485246999027b3197955000000000000000000000000000000000000000000000000000000000000016000000000000000000000000000000000000000000000000000000000000001a000000000000000000000000000000000000000000000000000000000000001e00000000000000000000000000000000000000000000000000000000000000200000000000000000000000000c590175e458b83680867afd273527ff58f74c02b00000000000000000000000000000000000000000000000006c4d37525145ae4000000000000000000000000000000000000000000000000427b0a707edb5272000000000000000000000000000000000000000000000000000000000000020000000000000000000000000000000000000000000000000000000000000002200000000000000000000000000000000000000000000000000000000000000001000000000000000000000000e7b2d08e7cd3270df7ff804786f444434ff7e1f6000000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000006c4d37525145ae400000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000af7b22536f75726365223a226d6574616d61736b222c22416d6f756e74496e555344223a22342e393030383236222c22416d6f756e744f7574555344223a22342e383836313934222c22416d6f756e744f7574223a2234383838313938303638323835323737363335222c22526f7574654944223a2232303061323137376e623944544a306b3a623462323465336463794e4b37354a70222c2254696d657374616d70223a313737383838343134397d00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000065", - "gasLimit": 632463, - "feeEstimate": 21585240000000, - "effectiveGas": 359754, - "gasCost": "0", - "gasIncludedFeeData": { - "maxFeePerGas": "0x39386ff", - "maxPriorityFeePerGas": "0x39386ff", - "gas": "0x66f0a", - "balanceNeeded": "0x1702454c4600", - "currentBalance": "0x19d9db6dbe00", - "error": "" - } - }, - "estimatedProcessingTimeInSeconds": 0, - "quoteId": "2f7c1d74-173c-4b82-8704-98c7ee44404f", - "quoteRequestIndex": 0 - }, - { - "quote": { - "requestId": "0xfe96f45df0c6f71142798002b5319f4e28f33e9b607299e3c91a85d56dcc8097", - "bridgeId": "pancakeswap", - "srcChainId": 56, - "destChainId": 56, - "aggregator": "pancakeswap", - "aggregatorType": "AGG", - "srcAsset": { - "address": "0xf8a0bf9cf54bb92f17374d9e9a321e6a111a51bd", - "chainId": 56, - "assetId": "eip155:56/erc20:0xf8a0bf9cf54bb92f17374d9e9a321e6a111a51bd", - "symbol": "LINK", - "decimals": 18, - "name": "BNB pegged ChainLink", - "coingeckoId": "chainlink", - "aggregators": [ - "pancakeTop100", - "oneInch", - "liFi", - "trustWallet", - "socket", - "rubic", - "squid", - "rango", - "sonarwatch", - "sushiSwap" - ], - "occurrences": 13, - "iconUrl": "https://static.cx.metamask.io/api/v2/tokenIcons/assets/eip155/56/erc20/0xf8a0bf9cf54bb92f17374d9e9a321e6a111a51bd.png", - "metadata": { - "storage": { - "balance": 1, - "approval": 2 - } - } - }, - "srcTokenAmount": "487747159749581540", - "destAsset": { - "address": "0x55d398326f99059ff775485246999027b3197955", - "chainId": 56, - "assetId": "eip155:56/erc20:0x55d398326f99059ff775485246999027b3197955", - "symbol": "USDT", - "decimals": 18, - "name": "Tether USD", - "coingeckoId": "binance-bridged-usdt-bnb-smart-chain", - "aggregators": [ - "pancakeExtended", - "oneInch", - "liFi", - "trustWallet", - "socket", - "rubic", - "squid", - "rango", - "sonarwatch", - "sushiSwap" - ], - "occurrences": 11, - "iconUrl": "https://static.cx.metamask.io/api/v2/tokenIcons/assets/eip155/56/erc20/0x55d398326f99059ff775485246999027b3197955.png", - "metadata": { - "storage": { - "balance": 1, - "approval": 2 - } - } - }, - "destTokenAmount": "4850193215727346824", - "minDestTokenAmount": "4753189351412799887", - "walletAddress": "0x141d32a89a1e0a5ef360034a2f60a4b917c18838", - "destWalletAddress": "0x141d32a89a1e0a5ef360034a2f60a4b917c18838", - "feeData": { - "metabridge": { - "amount": "42813811488135470", - "asset": { - "address": "0x55d398326f99059ff775485246999027b3197955", - "chainId": 56, - "assetId": "eip155:56/erc20:0x55d398326f99059ff775485246999027b3197955", - "symbol": "USDT", - "decimals": 18, - "name": "Tether USD", - "coingeckoId": "binance-bridged-usdt-bnb-smart-chain", - "aggregators": [ - "pancakeExtended", - "oneInch", - "liFi", - "trustWallet", - "socket", - "rubic", - "squid", - "rango", - "sonarwatch", - "sushiSwap" - ], - "occurrences": 11, - "iconUrl": "https://static.cx.metamask.io/api/v2/tokenIcons/assets/eip155/56/erc20/0x55d398326f99059ff775485246999027b3197955.png", - "metadata": { - "storage": { - "balance": 1, - "approval": 2 - } - } - }, - "quoteBpsFee": 87.5, - "baseBpsFee": 87.5, - "usd": "0.04279317523099819" - } - }, - "bridges": ["pancakeswap"], - "protocols": ["pancakeswap"], - "steps": [], - "slippage": 2, - "gasSponsored": false, - "gasIncluded": false, - "gasIncluded7702": false, - "priceData": { - "totalFromAmountUsd": "4.906736427080791", - "totalToAmountUsd": "4.847855422597367", - "priceImpact": "0.00327872293356457", - "totalFeeAmountUsd": "0.04279317523099819" - } - }, - "approval": { - "chainId": 56, - "to": "0xf8a0bf9cf54bb92f17374d9e9a321e6a111a51bd", - "from": "0x141d32a89a1e0a5ef360034a2f60a4b917c18838", - "value": "0x0", - "data": "0x095ea7b30000000000000000000000001a1ec25dc08e98e5e93f1104b5e5cdd298707d3100000000000000000000000000000000000000000000000006c4d37525145ae4", - "gasLimit": 51261, - "feeEstimate": 2773080000000, - "effectiveGas": 46218, - "gasCost": "0", - "gasIncludedFeeData": { - "maxFeePerGas": "0x39386ff", - "maxPriorityFeePerGas": "0x39386ff", - "gas": "0xb608", - "balanceNeeded": "0x28afe963800", - "currentBalance": "0x1c64da03f600", - "error": "" - } - }, - "trade": { - "chainId": 56, - "to": "0x1a1ec25DC08e98e5E93F1104B5e5cdD298707d31", - "from": "0x141d32a89a1e0a5ef360034a2f60a4b917c18838", - "value": "0x0", - "data": "0x5f5755290000000000000000000000000000000000000000000000000000000000000080000000000000000000000000f8a0bf9cf54bb92f17374d9e9a321e6a111a51bd00000000000000000000000000000000000000000000000006c4d37525145ae400000000000000000000000000000000000000000000000000000000000000c0000000000000000000000000000000000000000000000000000000000000001b70616e63616b6553776170526f7574657246656544796e616d696300000000000000000000000000000000000000000000000000000000000000000000000220000000000000000000000000f8a0bf9cf54bb92f17374d9e9a321e6a111a51bd00000000000000000000000055d398326f99059ff775485246999027b319795500000000000000000000000000000000000000000000000006c4d37525145ae400000000000000000000000000000000000000000000000041f6b8881921198f000000000000000000000000000000000000000000000000000000000000012000000000000000000000000000000000000000000000000000981aef493b192e000000000000000000000000b28da7bc87a9dd1e60849aa7fcb5da24ea913c42000000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000000000e404e45aaf000000000000000000000000f8a0bf9cf54bb92f17374d9e9a321e6a111a51bd00000000000000000000000055d398326f99059ff775485246999027b319795500000000000000000000000000000000000000000000000000000000000009c4000000000000000000000000c590175e458b83680867afd273527ff58f74c02b00000000000000000000000000000000000000000000000006c4d37525145ae4000000000000000000000000000000000000000000000000429299d998f83276000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000ad", - "gasLimit": 384447, - "feeEstimate": 11999760000000, - "effectiveGas": 199996, - "gasCost": "0", - "gasIncludedFeeData": { - "maxFeePerGas": "0x39386ff", - "maxPriorityFeePerGas": "0x39386ff", - "gas": "0x3e92a", - "balanceNeeded": "0xdfc71132600", - "currentBalance": "0x19d9db6dbe00", - "error": "" - } - }, - "estimatedProcessingTimeInSeconds": 0, - "quoteId": "a669e380-c970-437e-b83d-0d95a36444dc", - "quoteRequestIndex": 0 - }, - { - "quote": { - "requestId": "0x3f64cb4f8ff9895a676d5fbbacb159a5cf3f0f22dcdd300f5bb364616fc987ec", - "bridgeId": "pancakeswap", - "srcChainId": 56, - "destChainId": 56, - "aggregator": "pancakeswap", - "aggregatorType": "AGG", - "srcAsset": { - "address": "0x1af3f329e8be154074d8769d1ffa4ee058b1dbc3", - "chainId": 56, - "assetId": "eip155:56/erc20:0x1af3f329e8be154074d8769d1ffa4ee058b1dbc3", - "symbol": "DAI", - "decimals": 18, - "name": "BNB pegged Dai Token", - "coingeckoId": "binance-peg-dai", - "aggregators": [ - "pancakeExtended", - "oneInch", - "liFi", - "trustWallet", - "socket", - "rubic", - "rango", - "sonarwatch", - "sushiSwap", - "binanceDex" - ], - "occurrences": 12, - "iconUrl": "https://static.cx.metamask.io/api/v2/tokenIcons/assets/eip155/56/erc20/0x1af3f329e8be154074d8769d1ffa4ee058b1dbc3.png", - "metadata": { - "storage": { - "balance": 1, - "approval": 2 - } - } - }, - "srcTokenAmount": "991250000000000000", - "destAsset": { - "address": "0x55d398326f99059ff775485246999027b3197955", - "chainId": 56, - "assetId": "eip155:56/erc20:0x55d398326f99059ff775485246999027b3197955", - "symbol": "USDT", - "decimals": 18, - "name": "Tether USD", - "coingeckoId": "binance-bridged-usdt-bnb-smart-chain", - "aggregators": [ - "pancakeExtended", - "oneInch", - "liFi", - "trustWallet", - "socket", - "rubic", - "squid", - "rango", - "sonarwatch", - "sushiSwap" - ], - "occurrences": 11, - "iconUrl": "https://static.cx.metamask.io/api/v2/tokenIcons/assets/eip155/56/erc20/0x55d398326f99059ff775485246999027b3197955.png", - "metadata": { - "storage": { - "balance": 1, - "approval": 2 - } - } - }, - "destTokenAmount": "990588537053038367", - "minDestTokenAmount": "970776766311977599", - "walletAddress": "0x141d32a89a1e0a5ef360034a2f60a4b917c18838", - "destWalletAddress": "0x141d32a89a1e0a5ef360034a2f60a4b917c18838", - "feeData": { - "metabridge": { - "amount": "8750000000000000", - "asset": { - "address": "0x1af3f329e8be154074d8769d1ffa4ee058b1dbc3", - "chainId": 56, - "assetId": "eip155:56/erc20:0x1af3f329e8be154074d8769d1ffa4ee058b1dbc3", - "symbol": "DAI", - "decimals": 18, - "name": "BNB pegged Dai Token", - "coingeckoId": "binance-peg-dai", - "aggregators": [ - "pancakeExtended", - "oneInch", - "liFi", - "trustWallet", - "socket", - "rubic", - "rango", - "sonarwatch", - "sushiSwap", - "binanceDex" - ], - "occurrences": 12, - "iconUrl": "https://static.cx.metamask.io/api/v2/tokenIcons/assets/eip155/56/erc20/0x1af3f329e8be154074d8769d1ffa4ee058b1dbc3.png", - "metadata": { - "storage": { - "balance": 1, - "approval": 2 - } - } - }, - "quoteBpsFee": 87.5, - "baseBpsFee": 87.5, - "usd": "0.008742761859012143" - } - }, - "bridges": ["pancakeswap"], - "protocols": ["pancakeswap"], - "steps": [], - "slippage": 2, - "gasSponsored": false, - "gasIncluded": false, - "gasIncluded7702": false, - "priceData": { - "totalFromAmountUsd": "0.999172783887102", - "totalToAmountUsd": "0.9901110733781788", - "priceImpact": "0.0003220304744578448", - "totalFeeAmountUsd": "0.008742761859012143" - } - }, - "approval": { - "chainId": 56, - "to": "0x1af3f329e8be154074d8769d1ffa4ee058b1dbc3", - "from": "0x141d32a89a1e0a5ef360034a2f60a4b917c18838", - "value": "0x0", - "data": "0x095ea7b30000000000000000000000001a1ec25dc08e98e5e93f1104b5e5cdd298707d310000000000000000000000000000000000000000000000000de0b6b3a7640000", - "gasLimit": 51234, - "feeEstimate": 2771640000000, - "effectiveGas": 46194, - "gasCost": "0", - "gasIncludedFeeData": { - "maxFeePerGas": "0x39386ff", - "maxPriorityFeePerGas": "0x39386ff", - "gas": "0xb5f0", - "balanceNeeded": "0x28aa8c19000", - "currentBalance": "0x1c64da03f600", - "error": "" - } - }, - "trade": { - "chainId": 56, - "to": "0x1a1ec25DC08e98e5E93F1104B5e5cdD298707d31", - "from": "0x141d32a89a1e0a5ef360034a2f60a4b917c18838", - "value": "0x0", - "data": "0x5f57552900000000000000000000000000000000000000000000000000000000000000800000000000000000000000001af3f329e8be154074d8769d1ffa4ee058b1dbc30000000000000000000000000000000000000000000000000de0b6b3a764000000000000000000000000000000000000000000000000000000000000000000c0000000000000000000000000000000000000000000000000000000000000001b70616e63616b6553776170526f7574657246656544796e616d6963000000000000000000000000000000000000000000000000000000000000000000000002200000000000000000000000001af3f329e8be154074d8769d1ffa4ee058b1dbc300000000000000000000000055d398326f99059ff775485246999027b31979550000000000000000000000000000000000000000000000000dc1a09f859b20000000000000000000000000000000000000000000000000000d78e453583a527f0000000000000000000000000000000000000000000000000000000000000120000000000000000000000000000000000000000000000000001f161421c8e000000000000000000000000000b28da7bc87a9dd1e60849aa7fcb5da24ea913c42000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000e404e45aaf0000000000000000000000001af3f329e8be154074d8769d1ffa4ee058b1dbc300000000000000000000000055d398326f99059ff775485246999027b31979550000000000000000000000000000000000000000000000000000000000000064000000000000000000000000c590175e458b83680867afd273527ff58f74c02b0000000000000000000000000000000000000000000000000dc1a09f859b20000000000000000000000000000000000000000000000000000d7a45a227b4c337000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000ad", - "gasLimit": 373703, - "feeEstimate": 11661300000000, - "effectiveGas": 194355, - "gasCost": "0", - "gasIncludedFeeData": { - "maxFeePerGas": "0x39386ff", - "maxPriorityFeePerGas": "0x39386ff", - "gas": "0x3cd2f", - "balanceNeeded": "0xd986030c900", - "currentBalance": "0x19da31426600", - "error": "" - } - }, - "estimatedProcessingTimeInSeconds": 0, - "quoteId": "f0e7f4d6-8d63-4c9e-a0ea-ef49138efc1b", - "quoteRequestIndex": 1 - } - ], - "quotesLastFetched": 1778884147493, - "quotesLoadingStatus": 1, - "quoteFetchError": null, - "quotesRefreshCount": 1, - "assetExchangeRates": {}, - "minimumBalanceForRentExemptionInLamports": "0", - "tokenWarnings": [], - "tokenSecurityTypeDestination": null, - "quoteStreamComplete": { - "quoteCount": 17, - "hasQuotes": true - }, - "batchSellTrades": { - "transactions": [ - { - "type": "approval", - "chainId": 56, - "from": "0x141d32a89a1e0a5ef360034a2f60a4b917c18838", - "to": "0xf8a0bf9cf54bb92f17374d9e9a321e6a111a51bd", - "value": "0x0", - "data": "0x095ea7b30000000000000000000000001a1ec25dc08e98e5e93f1104b5e5cdd298707d3100000000000000000000000000000000000000000000000006c4d37525145ae4", - "gasLimit": 69900, - "maxFeePerGas": "0x3938700", - "maxPriorityFeePerGas": "0x3938700" - }, - { - "type": "trade", - "chainId": 56, - "from": "0x141d32a89a1e0a5ef360034a2f60a4b917c18838", - "to": "0x1a1ec25DC08e98e5E93F1104B5e5cdD298707d31", - "value": "0x0", - "data": "0x5f5755290000000000000000000000000000000000000000000000000000000000000080000000000000000000000000f8a0bf9cf54bb92f17374d9e9a321e6a111a51bd00000000000000000000000000000000000000000000000006c4d37525145ae400000000000000000000000000000000000000000000000000000000000000c0000000000000000000000000000000000000000000000000000000000000001b70616e63616b6553776170526f7574657246656544796e616d696300000000000000000000000000000000000000000000000000000000000000000000000220000000000000000000000000f8a0bf9cf54bb92f17374d9e9a321e6a111a51bd00000000000000000000000055d398326f99059ff775485246999027b319795500000000000000000000000000000000000000000000000006c4d37525145ae400000000000000000000000000000000000000000000000041f6b8881921198f000000000000000000000000000000000000000000000000000000000000012000000000000000000000000000000000000000000000000000981aef493b192e000000000000000000000000b28da7bc87a9dd1e60849aa7fcb5da24ea913c42000000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000000000e404e45aaf000000000000000000000000f8a0bf9cf54bb92f17374d9e9a321e6a111a51bd00000000000000000000000055d398326f99059ff775485246999027b319795500000000000000000000000000000000000000000000000000000000000009c4000000000000000000000000c590175e458b83680867afd273527ff58f74c02b00000000000000000000000000000000000000000000000006c4d37525145ae4000000000000000000000000000000000000000000000000429299d998f83276000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000ad", - "gasLimit": 384471, - "maxFeePerGas": "0x3938700", - "maxPriorityFeePerGas": "0x3938700" - }, - { - "type": "approval", - "chainId": 56, - "from": "0x141d32a89a1e0a5ef360034a2f60a4b917c18838", - "to": "0x1af3f329e8be154074d8769d1ffa4ee058b1dbc3", - "value": "0x0", - "data": "0x095ea7b30000000000000000000000001a1ec25dc08e98e5e93f1104b5e5cdd298707d310000000000000000000000000000000000000000000000000de0b6b3a7640000", - "gasLimit": 69864, - "maxFeePerGas": "0x3938700", - "maxPriorityFeePerGas": "0x3938700" - }, - { - "type": "trade", - "chainId": 56, - "from": "0x141d32a89a1e0a5ef360034a2f60a4b917c18838", - "to": "0x1a1ec25DC08e98e5E93F1104B5e5cdD298707d31", - "value": "0x0", - "data": "0x5f57552900000000000000000000000000000000000000000000000000000000000000800000000000000000000000001af3f329e8be154074d8769d1ffa4ee058b1dbc30000000000000000000000000000000000000000000000000de0b6b3a764000000000000000000000000000000000000000000000000000000000000000000c00000000000000000000000000000000000000000000000000000000000000018756e69737761705065726d69743246656544796e616d6963000000000000000000000000000000000000000000000000000000000000000000000000000003400000000000000000000000001af3f329e8be154074d8769d1ffa4ee058b1dbc300000000000000000000000055d398326f99059ff775485246999027b31979550000000000000000000000000000000000000000000000000dc1a09f859b20000000000000000000000000000000000000000000000000000d78ee2f23046c0f0000000000000000000000000000000000000000000000000000000000000120000000000000000000000000000000000000000000000000001f161421c8e000000000000000000000000000b28da7bc87a9dd1e60849aa7fcb5da24ea913c420000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000020e3593564c000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000000a0000000000000000000000000000000000000000000000000000000006a07a53d00000000000000000000000000000000000000000000000000000000000000010000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000000000200000000000000000000000000000000000000000000000000000000000000100000000000000000000000000c590175e458b83680867afd273527ff58f74c02b0000000000000000000000000000000000000000000000000dc1a09f859b20000000000000000000000000000000000000000000000000000d7a4f7ef50908a100000000000000000000000000000000000000000000000000000000000000a00000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000002b1af3f329e8be154074d8769d1ffa4ee058b1dbc300006455d398326f99059ff775485246999027b3197955000000000000000000000000000000000000000000756e69780000b2c5de0b000000000000000000000000000000000000ff", - "gasLimit": 353291, - "maxFeePerGas": "0x3938700", - "maxPriorityFeePerGas": "0x3938700" - }, - { - "type": "transfer", - "chainId": 56, - "from": "0x141d32a89a1e0a5ef360034a2f60a4b917c18838", - "to": "0x55d398326f99059ff775485246999027b3197955", - "value": "0x0", - "data": "0xa9059cbb000000000000000000000000e3478b0bb1a5084567c319096437924948be196400000000000000000000000000000000000000000000000000aa3e72161ce670", - "gasLimit": 52311, - "maxFeePerGas": "0x3938700", - "maxPriorityFeePerGas": "0x3938700" - } - ], - "fee": { - "asset": { - "address": "0x55d398326f99059ff775485246999027b3197955", - "chainId": 56, - "assetId": "eip155:56/erc20:0x55d398326f99059ff775485246999027b3197955", - "symbol": "USDT", - "decimals": 18, - "name": "Tether USD", - "coingeckoId": "binance-bridged-usdt-bnb-smart-chain", - "aggregators": [ - "pancakeExtended", - "oneInch", - "liFi", - "trustWallet", - "socket", - "rubic", - "squid", - "rango", - "sonarwatch", - "sushiSwap" - ], - "occurrences": 11, - "iconUrl": "https://static.cx.metamask.io/api/v2/tokenIcons/assets/eip155/56/erc20/0x55d398326f99059ff775485246999027b3197955.png", - "metadata": { - "storage": { - "balance": 1, - "approval": 2 - } - } - }, - "amount": "47919405758998128" - } - }, - "batchSellTradesLoadingStatus": 1, - "txHistory": { - "0248b3c0-2880-11f1-927e-9d8a4fbc2cec": { - "account": "0xf25bd11c334507fd007d584e2d0b7b2c6543f714", - "batchId": "0x4833455d75f9412495503e879918b757", - "estimatedProcessingTimeInSeconds": 0, - "hasApprovalTx": false, - "isStxEnabled": true, - "location": "Main View", - "originalTransactionId": "0248b3c0-2880-11f1-927e-9d8a4fbc2cec", - "pricingData": { - "amountSent": "0.001950721614518098", - "amountSentInUsd": "1.26047761242164057491098084", - "quotedGasAmount": "0.0000125086", - "quotedGasInUsd": "0.008082552705313788", - "quotedReturnInUsd": "1.2499799131534746656849401666611780917188608" - }, - "quote": { - "aggregator": "1inch", - "aggregatorType": "AGG", - "bridgeId": "1inch", - "bridges": ["1inch"], - "destAsset": { - "address": "0x55d398326f99059ff775485246999027b3197955", - "aggregators": [ - "pancakeExtended", - "oneInch", - "liFi", - "trustWallet", - "socket", - "rubic", - "squid", - "rango", - "sonarwatch", - "sushiSwap" - ], - "assetId": "eip155:56/erc20:0x55d398326f99059ff775485246999027b3197955", - "chainId": 56, - "coingeckoId": "binance-bridged-usdt-bnb-smart-chain", - "decimals": 18, - "iconUrl": "https://static.cx.metamask.io/api/v2/tokenIcons/assets/eip155/56/erc20/0x55d398326f99059ff775485246999027b3197955.png", - "metadata": { - "storage": { - "approval": 2, - "balance": 1 - } - }, - "name": "Tether USD", - "occurrences": 11, - "symbol": "USDT" - }, - "destChainId": 56, - "destTokenAmount": "1250460089827013632", - "destWalletAddress": "0xF25bd11C334507Fd007d584E2D0b7b2C6543f714", - "feeData": { - "metabridge": { - "amount": "17068814127033", - "asset": { - "address": "0x0000000000000000000000000000000000000000", - "aggregators": [], - "assetId": "eip155:56/slip44:714", - "chainId": 56, - "coingeckoId": "binancecoin", - "decimals": 18, - "iconUrl": "https://static.cx.metamask.io/api/v2/tokenIcons/assets/eip155/56/slip44/714.png", - "metadata": {}, - "name": "Binance Coin", - "occurrences": 100, - "symbol": "BNB" - }, - "baseBpsFee": 87.5, - "quoteBpsFee": 87.5 - }, - "txFee": { - "amount": "0", - "asset": { - "address": "0x0000000000000000000000000000000000000000", - "aggregators": [], - "assetId": "eip155:56/slip44:714", - "chainId": 56, - "coingeckoId": "binancecoin", - "decimals": 18, - "iconUrl": "https://static.cx.metamask.io/api/v2/tokenIcons/assets/eip155/56/slip44/714.png", - "metadata": {}, - "name": "Binance Coin", - "occurrences": 100, - "symbol": "BNB" - }, - "maxFeePerGas": "59999999", - "maxPriorityFeePerGas": "59999999" - } - }, - "gasIncluded": true, - "gasIncluded7702": false, - "gasSponsored": false, - "minDestTokenAmount": "1225450888030473359", - "priceData": { - "priceImpact": "0.008513005960701052", - "totalFeeAmountUsd": "0.011031233194018887", - "totalFromAmountUsd": "1.2607123650307563", - "totalToAmountUsd": "1.24997991315252" - }, - "protocols": ["1inch"], - "requestId": "0x66225b1e3a6ee14ef469886821b04cfa61594bebedb0b60ad8707a108407cc67", - "slippage": 2, - "srcAsset": { - "address": "0x0000000000000000000000000000000000000000", - "aggregators": [], - "assetId": "eip155:56/slip44:714", - "chainId": 56, - "coingeckoId": "binancecoin", - "decimals": 18, - "iconUrl": "https://static.cx.metamask.io/api/v2/tokenIcons/assets/eip155/56/slip44/714.png", - "metadata": {}, - "name": "Binance Coin", - "occurrences": 100, - "symbol": "BNB" - }, - "srcChainId": 56, - "srcTokenAmount": "1933652800391065", - "steps": [], - "walletAddress": "0xF25bd11C334507Fd007d584E2D0b7b2C6543f714" - }, - "slippagePercentage": 0, - "startTime": 1774466568316, - "status": { - "srcChain": { - "chainId": 56, - "txHash": "0x0f5ee2bcf3219aa12b8ffd56b455ecf65deecfb80fba5383be67e0a3b5a2cbba" - }, - "status": "FAILED" - }, - "txMetaId": "0248b3c0-2880-11f1-927e-9d8a4fbc2cec" - }, - "0b840310-182a-11f1-b7d6-03d70bc40886": { - "account": "0x30e8ccad5a980bdf30447f8c2c48e70989d9d294", - "batchId": "0x6b5e01ae62fb4795bc40a9528a01f082", - "estimatedProcessingTimeInSeconds": 0, - "hasApprovalTx": false, - "isStxEnabled": true, - "pricingData": { - "amountSent": "10", - "amountSentInUsd": "1.03943129", - "quotedGasAmount": "0.048220070153767674", - "quotedGasInUsd": "0.005012144972382123174611946", - "quotedReturnInUsd": "1.03023162744013789578985517895" - }, - "quote": { - "aggregator": "uniswap", - "aggregatorType": "AGG", - "bridgeId": "uniswap", - "bridges": ["uniswap"], - "destAsset": { - "address": "0xc2132d05d31c914a87c6611c10748aeb04b58e8f", - "aggregators": [ - "quickswap", - "oneInch", - "liFi", - "socket", - "squid", - "rango", - "sonarwatch", - "sushiSwap" - ], - "assetId": "eip155:137/erc20:0xc2132d05d31c914a87c6611c10748aeb04b58e8f", - "chainId": 137, - "coingeckoId": "polygon-bridged-usdt-polygon", - "decimals": 6, - "iconUrl": "https://static.cx.metamask.io/api/v2/tokenIcons/assets/eip155/137/erc20/0xc2132d05d31c914a87c6611c10748aeb04b58e8f.png", - "metadata": { - "storage": { - "approval": 1, - "balance": 0 - } - }, - "name": "Tether USD", - "occurrences": 8, - "symbol": "USDT" - }, - "destChainId": 137, - "destTokenAmount": "1029541", - "destWalletAddress": "0x30E8ccaD5A980BDF30447f8c2C48e70989D9d294", - "feeData": { - "metabridge": { - "amount": "87500000000000000", - "asset": { - "address": "0x0000000000000000000000000000000000000000", - "aggregators": [], - "assetId": "eip155:137/slip44:966", - "chainId": 137, - "coingeckoId": "matic-network", - "decimals": 18, - "iconUrl": "https://static.cx.metamask.io/api/v2/tokenIcons/assets/eip155/137/slip44/966.png", - "metadata": {}, - "name": "Polygon Ecosystem Token", - "occurrences": 100, - "symbol": "POL" - }, - "baseBpsFee": 87.5, - "quoteBpsFee": 87.5 - } - }, - "gasIncluded7702": false, - "gasSponsored": false, - "minDestTokenAmount": "1008950", - "priceData": { - "priceImpact": "0.00025566483421602553", - "totalFeeAmountUsd": "0.009084687499999999", - "totalFromAmountUsd": "1.0382500000000001", - "totalToAmountUsd": "1.0289021911209988" - }, - "protocols": ["uniswap"], - "requestId": "0xb0d6fc377c20604e6352de7ad7412073547d3b5daa227e969cfdf2b91af0cef5", - "slippage": 2, - "srcAsset": { - "address": "0x0000000000000000000000000000000000000000", - "aggregators": [], - "assetId": "eip155:137/slip44:966", - "chainId": 137, - "coingeckoId": "matic-network", - "decimals": 18, - "iconUrl": "https://static.cx.metamask.io/api/v2/tokenIcons/assets/eip155/137/slip44/966.png", - "metadata": {}, - "name": "Polygon Ecosystem Token", - "occurrences": 100, - "symbol": "POL" - }, - "srcChainId": 137, - "srcTokenAmount": "9912500000000000000", - "steps": [], - "walletAddress": "0x30E8ccaD5A980BDF30447f8c2C48e70989D9d294" - }, - "slippagePercentage": 0, - "startTime": 1772670428575, - "status": { - "srcChain": { - "chainId": 137 - }, - "status": "PENDING" - }, - "txMetaId": "0b840310-182a-11f1-b7d6-03d70bc40886" - }, - "0bad35f0-182a-11f1-b7d6-03d70bc40886": { - "account": "0x30e8ccad5a980bdf30447f8c2c48e70989d9d294", - "batchId": "0x7c4e097ffb484161b47562a27a8e1972", - "estimatedProcessingTimeInSeconds": 0, - "hasApprovalTx": false, - "isStxEnabled": true, - "pricingData": { - "amountSent": "10", - "amountSentInUsd": "1.03943129", - "quotedGasAmount": "0.048220070153767674", - "quotedGasInUsd": "0.005012144972382123174611946", - "quotedReturnInUsd": "1.03023162744013789578985517895" - }, - "quote": { - "aggregator": "uniswap", - "aggregatorType": "AGG", - "bridgeId": "uniswap", - "bridges": ["uniswap"], - "destAsset": { - "address": "0xc2132d05d31c914a87c6611c10748aeb04b58e8f", - "aggregators": [ - "quickswap", - "oneInch", - "liFi", - "socket", - "squid", - "rango", - "sonarwatch", - "sushiSwap" - ], - "assetId": "eip155:137/erc20:0xc2132d05d31c914a87c6611c10748aeb04b58e8f", - "chainId": 137, - "coingeckoId": "polygon-bridged-usdt-polygon", - "decimals": 6, - "iconUrl": "https://static.cx.metamask.io/api/v2/tokenIcons/assets/eip155/137/erc20/0xc2132d05d31c914a87c6611c10748aeb04b58e8f.png", - "metadata": { - "storage": { - "approval": 1, - "balance": 0 - } - }, - "name": "Tether USD", - "occurrences": 8, - "symbol": "USDT" - }, - "destChainId": 137, - "destTokenAmount": "1029541", - "destWalletAddress": "0x30E8ccaD5A980BDF30447f8c2C48e70989D9d294", - "feeData": { - "metabridge": { - "amount": "87500000000000000", - "asset": { - "address": "0x0000000000000000000000000000000000000000", - "aggregators": [], - "assetId": "eip155:137/slip44:966", - "chainId": 137, - "coingeckoId": "matic-network", - "decimals": 18, - "iconUrl": "https://static.cx.metamask.io/api/v2/tokenIcons/assets/eip155/137/slip44/966.png", - "metadata": {}, - "name": "Polygon Ecosystem Token", - "occurrences": 100, - "symbol": "POL" - }, - "baseBpsFee": 87.5, - "quoteBpsFee": 87.5 - } - }, - "gasIncluded7702": false, - "gasSponsored": false, - "minDestTokenAmount": "1008950", - "priceData": { - "priceImpact": "0.00025566483421602553", - "totalFeeAmountUsd": "0.009084687499999999", - "totalFromAmountUsd": "1.0382500000000001", - "totalToAmountUsd": "1.0289021911209988" - }, - "protocols": ["uniswap"], - "requestId": "0xb0d6fc377c20604e6352de7ad7412073547d3b5daa227e969cfdf2b91af0cef5", - "slippage": 2, - "srcAsset": { - "address": "0x0000000000000000000000000000000000000000", - "aggregators": [], - "assetId": "eip155:137/slip44:966", - "chainId": 137, - "coingeckoId": "matic-network", - "decimals": 18, - "iconUrl": "https://static.cx.metamask.io/api/v2/tokenIcons/assets/eip155/137/slip44/966.png", - "metadata": {}, - "name": "Polygon Ecosystem Token", - "occurrences": 100, - "symbol": "POL" - }, - "srcChainId": 137, - "srcTokenAmount": "9912500000000000000", - "steps": [], - "walletAddress": "0x30E8ccaD5A980BDF30447f8c2C48e70989D9d294" - }, - "slippagePercentage": 0, - "startTime": 1772670428848, - "status": { - "srcChain": { - "chainId": 137 - }, - "status": "PENDING" - }, - "txMetaId": "0bad35f0-182a-11f1-b7d6-03d70bc40886" - }, - "0bc810f0-182a-11f1-b7d6-03d70bc40886": { - "account": "0x30e8ccad5a980bdf30447f8c2c48e70989d9d294", - "batchId": "0x5f4d75c45e8f4ca899585aa811134606", - "estimatedProcessingTimeInSeconds": 0, - "hasApprovalTx": false, - "isStxEnabled": true, - "pricingData": { - "amountSent": "10", - "amountSentInUsd": "1.03943129", - "quotedGasAmount": "0.048220070153767674", - "quotedGasInUsd": "0.005012144972382123174611946", - "quotedReturnInUsd": "1.03023162744013789578985517895" - }, - "quote": { - "aggregator": "uniswap", - "aggregatorType": "AGG", - "bridgeId": "uniswap", - "bridges": ["uniswap"], - "destAsset": { - "address": "0xc2132d05d31c914a87c6611c10748aeb04b58e8f", - "aggregators": [ - "quickswap", - "oneInch", - "liFi", - "socket", - "squid", - "rango", - "sonarwatch", - "sushiSwap" - ], - "assetId": "eip155:137/erc20:0xc2132d05d31c914a87c6611c10748aeb04b58e8f", - "chainId": 137, - "coingeckoId": "polygon-bridged-usdt-polygon", - "decimals": 6, - "iconUrl": "https://static.cx.metamask.io/api/v2/tokenIcons/assets/eip155/137/erc20/0xc2132d05d31c914a87c6611c10748aeb04b58e8f.png", - "metadata": { - "storage": { - "approval": 1, - "balance": 0 - } - }, - "name": "Tether USD", - "occurrences": 8, - "symbol": "USDT" - }, - "destChainId": 137, - "destTokenAmount": "1029541", - "destWalletAddress": "0x30E8ccaD5A980BDF30447f8c2C48e70989D9d294", - "feeData": { - "metabridge": { - "amount": "87500000000000000", - "asset": { - "address": "0x0000000000000000000000000000000000000000", - "aggregators": [], - "assetId": "eip155:137/slip44:966", - "chainId": 137, - "coingeckoId": "matic-network", - "decimals": 18, - "iconUrl": "https://static.cx.metamask.io/api/v2/tokenIcons/assets/eip155/137/slip44/966.png", - "metadata": {}, - "name": "Polygon Ecosystem Token", - "occurrences": 100, - "symbol": "POL" - }, - "baseBpsFee": 87.5, - "quoteBpsFee": 87.5 - } - }, - "gasIncluded7702": false, - "gasSponsored": false, - "minDestTokenAmount": "1008950", - "priceData": { - "priceImpact": "0.00025566483421602553", - "totalFeeAmountUsd": "0.009084687499999999", - "totalFromAmountUsd": "1.0382500000000001", - "totalToAmountUsd": "1.0289021911209988" - }, - "protocols": ["uniswap"], - "requestId": "0xb0d6fc377c20604e6352de7ad7412073547d3b5daa227e969cfdf2b91af0cef5", - "slippage": 2, - "srcAsset": { - "address": "0x0000000000000000000000000000000000000000", - "aggregators": [], - "assetId": "eip155:137/slip44:966", - "chainId": 137, - "coingeckoId": "matic-network", - "decimals": 18, - "iconUrl": "https://static.cx.metamask.io/api/v2/tokenIcons/assets/eip155/137/slip44/966.png", - "metadata": {}, - "name": "Polygon Ecosystem Token", - "occurrences": 100, - "symbol": "POL" - }, - "srcChainId": 137, - "srcTokenAmount": "9912500000000000000", - "steps": [], - "walletAddress": "0x30E8ccaD5A980BDF30447f8c2C48e70989D9d294" - }, - "slippagePercentage": 0, - "startTime": 1772670429031, - "status": { - "srcChain": { - "chainId": 137 - }, - "status": "PENDING" - }, - "txMetaId": "0bc810f0-182a-11f1-b7d6-03d70bc40886" - }, - "0eb6d2c0-1414-11f1-b5d8-f92a9c5664e8": { - "account": "0x30e8ccad5a980bdf30447f8c2c48e70989d9d294", - "approvalTxId": "0eae2030-1414-11f1-b5d8-f92a9c5664e8", - "batchId": "0x8a475ad2ca7d4712800421dd436c9d65", - "estimatedProcessingTimeInSeconds": 0, - "hasApprovalTx": true, - "isStxEnabled": true, - "pricingData": { - "amountSent": "3", - "amountSentInUsd": "3", - "quotedGasAmount": "0.00001191705", - "quotedGasInUsd": "0.007268923818", - "quotedReturnInUsd": "2.95945685110773945936" - }, - "quote": { - "aggregator": "uniswap", - "aggregatorType": "AGG", - "bridgeId": "uniswap", - "bridges": ["uniswap"], - "destAsset": { - "address": "0x0000000000000000000000000000000000000000", - "aggregators": [], - "assetId": "eip155:56/slip44:714", - "chainId": 56, - "coingeckoId": "binancecoin", - "decimals": 18, - "iconUrl": "https://static.cx.metamask.io/api/v2/tokenIcons/assets/eip155/56/slip44/714.png", - "metadata": {}, - "name": "Binance Coin", - "occurrences": 100, - "symbol": "BNB" - }, - "destChainId": 56, - "destTokenAmount": "4851886764882516", - "destWalletAddress": "0x30E8ccaD5A980BDF30447f8c2C48e70989D9d294", - "feeData": { - "metabridge": { - "amount": "43056567769706", - "asset": { - "address": "0x0000000000000000000000000000000000000000", - "aggregators": [], - "assetId": "eip155:56/slip44:714", - "chainId": 56, - "coingeckoId": "binancecoin", - "decimals": 18, - "iconUrl": "https://static.cx.metamask.io/api/v2/tokenIcons/assets/eip155/56/slip44/714.png", - "metadata": {}, - "name": "Binance Coin", - "occurrences": 100, - "symbol": "BNB" - }, - "baseBpsFee": 87.5, - "quoteBpsFee": 87.5 - }, - "txFee": { - "amount": "25807269600000", - "asset": { - "address": "0x0000000000000000000000000000000000000000", - "aggregators": [], - "assetId": "eip155:56/slip44:714", - "chainId": 56, - "coingeckoId": "binancecoin", - "decimals": 18, - "iconUrl": "https://static.cx.metamask.io/api/v2/tokenIcons/assets/eip155/56/slip44/714.png", - "metadata": {}, - "name": "Binance Coin", - "occurrences": 100, - "symbol": "BNB" - }, - "maxFeePerGas": "60000000", - "maxPriorityFeePerGas": "60000000" - } - }, - "gasIncluded": true, - "gasIncluded7702": false, - "minDestTokenAmount": "4754849029584865", - "priceData": { - "priceImpact": "-0.0005326429717786997", - "totalFeeAmountUsd": "0.026262353511132177", - "totalFromAmountUsd": "2.9998139999999998", - "totalToAmountUsd": "2.9594083322400913" - }, - "protocols": ["uniswap"], - "requestId": "0x11fb8e79bab01ebbcc0e4ac96e1ed33e2347bc2e5d7d809f950c9aa61a0ecd7f", - "srcAsset": { - "address": "0x55d398326f99059ff775485246999027b3197955", - "aggregators": [ - "pancakeExtended", - "oneInch", - "liFi", - "socket", - "squid", - "rango", - "sonarwatch", - "sushiSwap" - ], - "assetId": "eip155:56/erc20:0x55d398326f99059ff775485246999027b3197955", - "chainId": 56, - "coingeckoId": "binance-bridged-usdt-bnb-smart-chain", - "decimals": 18, - "iconUrl": "https://static.cx.metamask.io/api/v2/tokenIcons/assets/eip155/56/erc20/0x55d398326f99059ff775485246999027b3197955.png", - "metadata": { - "storage": { - "approval": 2, - "balance": 1 - } - }, - "name": "Tether USD", - "occurrences": 8, - "symbol": "USDT" - }, - "srcChainId": 56, - "srcTokenAmount": "3000000000000000000", - "steps": [], - "walletAddress": "0x30E8ccaD5A980BDF30447f8c2C48e70989D9d294" - }, - "slippagePercentage": 0, - "startTime": 1772221180338, - "status": { - "srcChain": { - "chainId": 56 - }, - "status": "PENDING" - }, - "txMetaId": "0eb6d2c0-1414-11f1-b5d8-f92a9c5664e8" - }, - "108f1b10-4ff2-11f1-9f48-c9082a6dd9ea": { - "account": "0x141d32a89a1e0a5ef360034a2f60a4b917c18838", - "batchId": "0x19e28f7e5fc", - "estimatedProcessingTimeInSeconds": 0, - "hasApprovalTx": true, - "isStxEnabled": false, - "location": "Main View", - "originalTransactionId": "108f1b10-4ff2-11f1-9f48-c9082a6dd9ea", - "pricingData": { - "amountSent": "3.603763007320799794", - "amountSentInUsd": "37.731398686634464384476199498749177234147328", - "quotedGasAmount": "0.0000124996", - "quotedGasInUsd": "0.008485751471263232", - "quotedReturnInUsd": "3.570934458887845161318442216972540636454784" - }, - "quote": { - "aggregator": "uniswap", - "aggregatorType": "AGG", - "bridgeId": "uniswap", - "bridges": ["uniswap"], - "destAsset": { - "address": "0x55d398326f99059ff775485246999027b3197955", - "aggregators": [ - "pancakeExtended", - "oneInch", - "liFi", - "trustWallet", - "socket", - "rubic", - "squid", - "rango", - "sonarwatch", - "sushiSwap" - ], - "assetId": "eip155:56/erc20:0x55d398326f99059ff775485246999027b3197955", - "chainId": 56, - "coingeckoId": "binance-bridged-usdt-bnb-smart-chain", - "decimals": 18, - "iconUrl": "https://static.cx.metamask.io/api/v2/tokenIcons/assets/eip155/56/erc20/0x55d398326f99059ff775485246999027b3197955.png", - "metadata": { - "storage": { - "approval": 2, - "balance": 1 - } - }, - "name": "Tether USD", - "occurrences": 10, - "symbol": "USDT" - }, - "destChainId": 56, - "destTokenAmount": "3571920308894442306", - "destWalletAddress": "0x141d32a89a1e0a5ef360034a2f60a4b917c18838", - "feeData": { - "metabridge": { - "amount": "31532926314056998", - "asset": { - "address": "0x1af3f329e8be154074d8769d1ffa4ee058b1dbc3", - "aggregators": [ - "pancakeExtended", - "oneInch", - "liFi", - "trustWallet", - "socket", - "rubic", - "rango", - "sonarwatch", - "sushiSwap" - ], - "assetId": "eip155:56/erc20:0x1af3f329e8be154074d8769d1ffa4ee058b1dbc3", - "chainId": 56, - "coingeckoId": "binance-peg-dai", - "decimals": 18, - "iconUrl": "https://static.cx.metamask.io/api/v2/tokenIcons/assets/eip155/56/erc20/0x1af3f329e8be154074d8769d1ffa4ee058b1dbc3.png", - "metadata": { - "storage": { - "approval": 2, - "balance": 1 - } - }, - "name": "BNB pegged Dai Token", - "occurrences": 9, - "symbol": "DAI" - }, - "baseBpsFee": 87.5, - "quoteBpsFee": 87.5, - "usd": "0.03153476037471023" - } - }, - "gasIncluded": false, - "gasIncluded7702": false, - "gasSponsored": false, - "minDestTokenAmount": "3500481902716553459", - "priceData": { - "priceImpact": "0.00042083167019072544", - "totalFeeAmountUsd": "0.03153476037471023", - "totalFromAmountUsd": "3.6039726142525974", - "totalToAmountUsd": "3.5709344588891874" - }, - "protocols": ["uniswap"], - "requestId": "0x032dc4ad0e368aa4e85eb3a05270f1e4c6bc4dcd69ba7c833ada800ca84926e8", - "slippage": 2, - "srcAsset": { - "address": "0x1af3f329e8be154074d8769d1ffa4ee058b1dbc3", - "aggregators": [ - "pancakeExtended", - "oneInch", - "liFi", - "trustWallet", - "socket", - "rubic", - "rango", - "sonarwatch", - "sushiSwap" - ], - "assetId": "eip155:56/erc20:0x1af3f329e8be154074d8769d1ffa4ee058b1dbc3", - "chainId": 56, - "coingeckoId": "binance-peg-dai", - "decimals": 18, - "iconUrl": "https://static.cx.metamask.io/api/v2/tokenIcons/assets/eip155/56/erc20/0x1af3f329e8be154074d8769d1ffa4ee058b1dbc3.png", - "metadata": { - "storage": { - "approval": 2, - "balance": 1 - } - }, - "name": "BNB pegged Dai Token", - "occurrences": 9, - "symbol": "DAI" - }, - "srcChainId": 56, - "srcTokenAmount": "3572230081006742796", - "steps": [], - "walletAddress": "0x141d32a89a1e0a5ef360034a2f60a4b917c18838" - }, - "slippagePercentage": 0, - "startTime": 1778803650233, - "status": { - "srcChain": { - "chainId": 56, - "txHash": "0x1af8fb2bebcc7b224ced25e09d3952f2b3a98f4bb8924502510d53301a0df3d5" - }, - "status": "COMPLETE" - }, - "tokenSecurityTypeDestination": null, - "txMetaId": "108f1b10-4ff2-11f1-9f48-c9082a6dd9ea" - }, - "110d0b00-12a4-11f1-ac17-173d9aac5876": { - "account": "0x30e8ccad5a980bdf30447f8c2c48e70989d9d294", - "batchId": "0x57f4c26e64ab4702bb7191d2b093c545", - "completionTime": 1772063177500, - "estimatedProcessingTimeInSeconds": 10, - "hasApprovalTx": false, - "isStxEnabled": true, - "location": "Main View", - "originalTransactionId": "110d0b00-12a4-11f1-ac17-173d9aac5876", - "pricingData": { - "amountSent": "10", - "amountSentInUsd": "1.14407905", - "quotedGasAmount": "0.10028672661493401", - "quotedGasInUsd": "0.01147359429132234179734905", - "quotedReturnInUsd": "1.08725327706307583850375717" - }, - "quote": { - "aggregator": "mayan", - "bridgeId": "mayan", - "bridges": ["mayan"], - "destAsset": { - "address": "0x0000000000000000000000000000000000000000", - "aggregators": [], - "assetId": "eip155:56/slip44:714", - "chainId": 56, - "coingeckoId": "binancecoin", - "decimals": 18, - "iconUrl": "https://static.cx.metamask.io/api/v2/tokenIcons/assets/eip155/56/slip44/714.png", - "metadata": {}, - "name": "Binance Coin", - "occurrences": 100, - "symbol": "BNB" - }, - "destChainId": 56, - "destTokenAmount": "1731935135059970", - "feeData": { - "metabridge": { - "amount": "87500000000000000", - "asset": { - "address": "0x0000000000000000000000000000000000000000", - "aggregators": [], - "assetId": "eip155:137/slip44:966", - "chainId": 137, - "coingeckoId": "matic-network", - "decimals": 18, - "iconUrl": "https://static.cx.metamask.io/api/v2/tokenIcons/assets/eip155/137/slip44/966.png", - "metadata": {}, - "name": "Polygon Ecosystem Token", - "occurrences": 100, - "symbol": "POL" - }, - "baseBpsFee": 87.5, - "quoteBpsFee": 87.5 - } - }, - "minDestTokenAmount": "1697296432358770", - "priceData": { - "priceImpact": "0.04165370030356173", - "totalFeeAmountUsd": "0.0100144625", - "totalFromAmountUsd": "1.14451", - "totalToAmountUsd": "1.0872396003852467" - }, - "protocols": ["mayan"], - "requestId": "0xcefe58fc1ccd2095123aaf5b1fc130cafe070ac32b713e02bf076cf056debd21", - "slippage": 2, - "srcAsset": { - "address": "0x0000000000000000000000000000000000000000", - "aggregators": [], - "assetId": "eip155:137/slip44:966", - "chainId": 137, - "coingeckoId": "matic-network", - "decimals": 18, - "iconUrl": "https://static.cx.metamask.io/api/v2/tokenIcons/assets/eip155/137/slip44/966.png", - "metadata": {}, - "name": "Polygon Ecosystem Token", - "occurrences": 100, - "symbol": "POL" - }, - "srcChainId": 137, - "srcTokenAmount": "9912500000000000000", - "steps": [ - { - "action": "bridge", - "destAmount": "1731935135059970", - "destAsset": { - "address": "0x0000000000000000000000000000000000000000", - "aggregators": [], - "assetId": "eip155:56/slip44:714", - "chainId": 56, - "coingeckoId": "binancecoin", - "decimals": 18, - "iconUrl": "https://static.cx.metamask.io/api/v2/tokenIcons/assets/eip155/56/slip44/714.png", - "metadata": {}, - "name": "Binance Coin", - "occurrences": 100, - "symbol": "BNB" - }, - "destChainId": 56, - "protocol": { - "displayName": "Mayan", - "name": "Mayan" - }, - "srcAmount": "9912500000000000000", - "srcAsset": { - "address": "0x0000000000000000000000000000000000000000", - "aggregators": [], - "assetId": "eip155:137/slip44:966", - "chainId": 137, - "coingeckoId": "matic-network", - "decimals": 18, - "iconUrl": "https://static.cx.metamask.io/api/v2/tokenIcons/assets/eip155/137/slip44/966.png", - "metadata": {}, - "name": "Polygon Ecosystem Token", - "occurrences": 100, - "symbol": "POL" - }, - "srcChainId": 137 - } - ] - }, - "slippagePercentage": 0, - "startTime": 1772063129461, - "status": { - "destChain": { - "amount": "1724840669924144", - "chainId": 56, - "token": { - "address": "0x0000000000000000000000000000000000000000", - "aggregators": [], - "assetId": "eip155:56/slip44:714", - "chainId": 56, - "coingeckoId": "binancecoin", - "decimals": 18, - "iconUrl": "https://static.cx.metamask.io/api/v2/tokenIcons/assets/eip155/56/slip44/714.png", - "metadata": {}, - "name": "Binance Coin", - "occurrences": 100, - "symbol": "BNB" - }, - "txHash": "0x00d9ce902b8b8561456e826a76219e1a63925bff9baa88455529431da9b30ad1" - }, - "srcChain": { - "amount": "1112478", - "chainId": 137, - "token": { - "address": "0x0000000000000000000000000000000000000000", - "aggregators": [], - "assetId": "eip155:137/slip44:966", - "chainId": 137, - "coingeckoId": "matic-network", - "decimals": 18, - "iconUrl": "https://static.cx.metamask.io/api/v2/tokenIcons/assets/eip155/137/slip44/966.png", - "metadata": {}, - "name": "Polygon Ecosystem Token", - "occurrences": 100, - "symbol": "POL" - }, - "txHash": "0x56a4fbc7956e65fe2ab423e82c135ec71fe60b51cf66c1372ccb375c9f63d20f" - }, - "status": "COMPLETE" - }, - "txMetaId": "110d0b00-12a4-11f1-ac17-173d9aac5876" - }, - "12ca1b10-1d6a-11f1-9ec6-3b0a0edc0d9a": { - "account": "0x30e8ccad5a980bdf30447f8c2c48e70989d9d294", - "batchId": "0x3278dd322b6246d09048d55a1fa1fea9", - "estimatedProcessingTimeInSeconds": 0, - "hasApprovalTx": false, - "isStxEnabled": true, - "location": "Main View", - "originalTransactionId": "12ca1b10-1d6a-11f1-9ec6-3b0a0edc0d9a", - "pricingData": { - "amountSent": "0.001", - "amountSentInUsd": "0.648324392824", - "quotedGasAmount": "0.0000097123", - "quotedGasInUsd": "0.0062967210004245352", - "quotedReturnInUsd": "0.64317932128292752718456466277623113745342768" - }, - "quote": { - "aggregator": "uniswap", - "aggregatorType": "AGG", - "bridgeId": "uniswap", - "bridges": ["uniswap"], - "destAsset": { - "address": "0x55d398326f99059ff775485246999027b3197955", - "aggregators": [ - "pancakeExtended", - "oneInch", - "liFi", - "socket", - "rubic", - "squid", - "rango", - "sonarwatch", - "sushiSwap" - ], - "assetId": "eip155:56/erc20:0x55d398326f99059ff775485246999027b3197955", - "chainId": 56, - "coingeckoId": "binance-bridged-usdt-bnb-smart-chain", - "decimals": 18, - "iconUrl": "https://static.cx.metamask.io/api/v2/tokenIcons/assets/eip155/56/erc20/0x55d398326f99059ff775485246999027b3197955.png", - "metadata": { - "storage": { - "approval": 2, - "balance": 1 - } - }, - "name": "Tether USD", - "occurrences": 11, - "symbol": "USDT" - }, - "destChainId": 56, - "destTokenAmount": "643757682034398594", - "destWalletAddress": "0x30E8ccaD5A980BDF30447f8c2C48e70989D9d294", - "feeData": { - "metabridge": { - "amount": "8750000000000", - "asset": { - "address": "0x0000000000000000000000000000000000000000", - "aggregators": [], - "assetId": "eip155:56/slip44:714", - "chainId": 56, - "coingeckoId": "binancecoin", - "decimals": 18, - "iconUrl": "https://static.cx.metamask.io/api/v2/tokenIcons/assets/eip155/56/slip44/714.png", - "metadata": {}, - "name": "Binance Coin", - "occurrences": 100, - "symbol": "BNB" - }, - "baseBpsFee": 87.5, - "quoteBpsFee": 87.5 - } - }, - "gasIncluded": false, - "gasIncluded7702": false, - "gasSponsored": false, - "minDestTokenAmount": "630882528393710622", - "priceData": { - "priceImpact": "-0.001480823655291638", - "totalFeeAmountUsd": "0.0056742", - "totalFromAmountUsd": "0.6484800000000001", - "totalToAmountUsd": "0.6437576820343986" - }, - "protocols": ["uniswap"], - "requestId": "0x0e4ccd15f2b1931d29d04332be4cedc3f3a3b952470264d9a8006a3a7c30cdb7", - "slippage": 2, - "srcAsset": { - "address": "0x0000000000000000000000000000000000000000", - "aggregators": [], - "assetId": "eip155:56/slip44:714", - "chainId": 56, - "coingeckoId": "binancecoin", - "decimals": 18, - "iconUrl": "https://static.cx.metamask.io/api/v2/tokenIcons/assets/eip155/56/slip44/714.png", - "metadata": {}, - "name": "Binance Coin", - "occurrences": 100, - "symbol": "BNB" - }, - "srcChainId": 56, - "srcTokenAmount": "991250000000000", - "steps": [], - "walletAddress": "0x30E8ccaD5A980BDF30447f8c2C48e70989D9d294" - }, - "slippagePercentage": 0, - "startTime": 1773247684414, - "status": { - "srcChain": { - "chainId": 56 - }, - "status": "PENDING" - }, - "txMetaId": "12ca1b10-1d6a-11f1-9ec6-3b0a0edc0d9a" - }, - "13e54300-2876-11f1-8041-cdbe50267c7d": { - "account": "0xf25bd11c334507fd007d584e2d0b7b2c6543f714", - "batchId": "0x3301cb46a9d04962a2f571b148c09e6e", - "estimatedProcessingTimeInSeconds": 0, - "hasApprovalTx": false, - "isStxEnabled": false, - "location": "Main View", - "originalTransactionId": "13e54300-2876-11f1-8041-cdbe50267c7d", - "pricingData": { - "amountSent": "0.002886713511414607", - "amountSentInUsd": "1.861972563884929144983022668", - "quotedGasAmount": "0.0000098011", - "quotedGasInUsd": "0.0063218532853125564", - "quotedReturnInUsd": "1.82971927135451688778651758158487458631242232" - }, - "quote": { - "aggregator": "uniswap", - "aggregatorType": "AGG", - "bridgeId": "uniswap", - "bridges": ["uniswap"], - "destAsset": { - "address": "0x55d398326f99059ff775485246999027b3197955", - "aggregators": [ - "pancakeExtended", - "oneInch", - "liFi", - "trustWallet", - "socket", - "rubic", - "squid", - "rango", - "sonarwatch", - "sushiSwap" - ], - "assetId": "eip155:56/erc20:0x55d398326f99059ff775485246999027b3197955", - "chainId": 56, - "coingeckoId": "binance-bridged-usdt-bnb-smart-chain", - "decimals": 18, - "iconUrl": "https://static.cx.metamask.io/api/v2/tokenIcons/assets/eip155/56/erc20/0x55d398326f99059ff775485246999027b3197955.png", - "metadata": { - "storage": { - "approval": 2, - "balance": 1 - } - }, - "name": "Tether USD", - "occurrences": 11, - "symbol": "USDT" - }, - "destChainId": 56, - "destTokenAmount": "1832104085786407962", - "destWalletAddress": "0xF25bd11C334507Fd007d584E2D0b7b2C6543f714", - "feeData": { - "metabridge": { - "amount": "25258743224877", - "asset": { - "address": "0x0000000000000000000000000000000000000000", - "aggregators": [], - "assetId": "eip155:56/slip44:714", - "chainId": 56, - "coingeckoId": "binancecoin", - "decimals": 18, - "iconUrl": "https://static.cx.metamask.io/api/v2/tokenIcons/assets/eip155/56/slip44/714.png", - "metadata": {}, - "name": "Binance Coin", - "occurrences": 100, - "symbol": "BNB" - }, - "baseBpsFee": 87.5, - "quoteBpsFee": 87.5 - }, - "txFee": { - "amount": "22027140000000", - "asset": { - "address": "0x0000000000000000000000000000000000000000", - "aggregators": [], - "assetId": "eip155:56/slip44:714", - "chainId": 56, - "coingeckoId": "binancecoin", - "decimals": 18, - "iconUrl": "https://static.cx.metamask.io/api/v2/tokenIcons/assets/eip155/56/slip44/714.png", - "metadata": {}, - "name": "Binance Coin", - "occurrences": 100, - "symbol": "BNB" - }, - "maxFeePerGas": "60000000", - "maxPriorityFeePerGas": "60000000" - } - }, - "gasIncluded": true, - "gasIncluded7702": false, - "gasSponsored": false, - "minDestTokenAmount": "1795462004070679802", - "priceData": { - "priceImpact": "0.00933599882304792", - "totalFeeAmountUsd": "0.016301487702471116", - "totalFromAmountUsd": "1.863027165996759", - "totalToAmountUsd": "1.8315507903525003" - }, - "protocols": ["uniswap"], - "requestId": "0xe8c2bcde57fc8434171dc26bacf4e282afe082435e7818ff149e6373f6aff6af", - "slippage": 2, - "srcAsset": { - "address": "0x0000000000000000000000000000000000000000", - "aggregators": [], - "assetId": "eip155:56/slip44:714", - "chainId": 56, - "coingeckoId": "binancecoin", - "decimals": 18, - "iconUrl": "https://static.cx.metamask.io/api/v2/tokenIcons/assets/eip155/56/slip44/714.png", - "metadata": {}, - "name": "Binance Coin", - "occurrences": 100, - "symbol": "BNB" - }, - "srcChainId": 56, - "srcTokenAmount": "2839427628189730", - "steps": [], - "walletAddress": "0xF25bd11C334507Fd007d584E2D0b7b2C6543f714" - }, - "slippagePercentage": 0, - "startTime": 1774462286273, - "status": { - "srcChain": { - "chainId": 56 - }, - "status": "PENDING" - }, - "txMetaId": "13e54300-2876-11f1-8041-cdbe50267c7d" - }, - "14962b30-2870-11f1-b293-91d48c70505b": { - "account": "0xf25bd11c334507fd007d584e2d0b7b2c6543f714", - "batchId": "0x80592d2a3faf4e6a8a5b39d64baaa8cd", - "estimatedProcessingTimeInSeconds": 0, - "hasApprovalTx": false, - "isStxEnabled": false, - "location": "Main View", - "originalTransactionId": "14962b30-2870-11f1-b293-91d48c70505b", - "pricingData": { - "amountSent": "0.002993514252279377", - "amountSentInUsd": "1.934556896989950131526374364", - "quotedGasAmount": "0.0000098025", - "quotedGasInUsd": "0.00633486009572343", - "quotedReturnInUsd": "1.90535756008891037947137150834293594778932016" - }, - "quote": { - "aggregator": "uniswap", - "aggregatorType": "AGG", - "bridgeId": "uniswap", - "bridges": ["uniswap"], - "destAsset": { - "address": "0x55d398326f99059ff775485246999027b3197955", - "aggregators": [ - "pancakeExtended", - "oneInch", - "liFi", - "trustWallet", - "socket", - "squid", - "rango", - "sonarwatch", - "sushiSwap" - ], - "assetId": "eip155:56/erc20:0x55d398326f99059ff775485246999027b3197955", - "chainId": 56, - "coingeckoId": "binance-bridged-usdt-bnb-smart-chain", - "decimals": 18, - "iconUrl": "https://static.cx.metamask.io/api/v2/tokenIcons/assets/eip155/56/erc20/0x55d398326f99059ff775485246999027b3197955.png", - "metadata": { - "storage": { - "approval": 2, - "balance": 1 - } - }, - "name": "Tether USD", - "occurrences": 9, - "symbol": "USDT" - }, - "destChainId": 56, - "destTokenAmount": "1906762637169830969", - "destWalletAddress": "0xF25bd11C334507Fd007d584E2D0b7b2C6543f714", - "feeData": { - "metabridge": { - "amount": "26193249707444", - "asset": { - "address": "0x0000000000000000000000000000000000000000", - "aggregators": [], - "assetId": "eip155:56/slip44:714", - "chainId": 56, - "coingeckoId": "binancecoin", - "decimals": 18, - "iconUrl": "https://static.cx.metamask.io/api/v2/tokenIcons/assets/eip155/56/slip44/714.png", - "metadata": {}, - "name": "Binance Coin", - "occurrences": 100, - "symbol": "BNB" - }, - "baseBpsFee": 87.5, - "quoteBpsFee": 87.5 - }, - "txFee": { - "amount": "22029660000000", - "asset": { - "address": "0x0000000000000000000000000000000000000000", - "aggregators": [], - "assetId": "eip155:56/slip44:714", - "chainId": 56, - "coingeckoId": "binancecoin", - "decimals": 18, - "iconUrl": "https://static.cx.metamask.io/api/v2/tokenIcons/assets/eip155/56/slip44/714.png", - "metadata": {}, - "name": "Binance Coin", - "occurrences": 100, - "symbol": "BNB" - }, - "maxFeePerGas": "60000000", - "maxPriorityFeePerGas": "60000000" - } - }, - "gasIncluded": true, - "gasIncluded7702": false, - "gasSponsored": false, - "minDestTokenAmount": "1868627384426434349", - "priceData": { - "priceImpact": "0.007584532658291934", - "totalFeeAmountUsd": "0.016932626273377174", - "totalFromAmountUsd": "1.9351572883860035", - "totalToAmountUsd": "1.906346962914928" - }, - "protocols": ["uniswap"], - "requestId": "0xe28f0656b343b61006bf3ac53e858656642fcd9aa047c99416fe40ac12406f02", - "slippage": 2, - "srcAsset": { - "address": "0x0000000000000000000000000000000000000000", - "aggregators": [], - "assetId": "eip155:56/slip44:714", - "chainId": 56, - "coingeckoId": "binancecoin", - "decimals": 18, - "iconUrl": "https://static.cx.metamask.io/api/v2/tokenIcons/assets/eip155/56/slip44/714.png", - "metadata": {}, - "name": "Binance Coin", - "occurrences": 100, - "symbol": "BNB" - }, - "srcChainId": 56, - "srcTokenAmount": "2945291342571933", - "steps": [], - "walletAddress": "0xF25bd11C334507Fd007d584E2D0b7b2C6543f714" - }, - "slippagePercentage": 0, - "startTime": 1774459727017, - "status": { - "srcChain": { - "chainId": 56, - "txHash": "0xf6d27b065d8bcce56694369865018eff37e3a316e97160045576f2289d47fd98" - }, - "status": "FAILED" - }, - "txMetaId": "14962b30-2870-11f1-b293-91d48c70505b" - }, - "14ce7f50-2288-11f1-8fe3-5f35f53fd12f": { - "account": "0x30e8ccad5a980bdf30447f8c2c48e70989d9d294", - "batchId": "0xfae27daf048c4cfe8e8fade899d8cb6a", - "estimatedProcessingTimeInSeconds": 0, - "hasApprovalTx": false, - "isStxEnabled": true, - "location": "Main View", - "originalTransactionId": "14ce7f50-2288-11f1-8fe3-5f35f53fd12f", - "pricingData": { - "amountSent": "0.001475272498495145", - "amountSentInUsd": "3.43413843040426188547115809", - "quotedGasAmount": "0.000386190024590864", - "quotedGasInUsd": "0.898972905845582337514614688", - "quotedReturnInUsd": "0.20417038325999047119363532673796" - }, - "quote": { - "aggregator": "pancakeswap", - "aggregatorType": "AGG", - "bridgeId": "pancakeswap", - "bridges": ["pancakeswap"], - "destAsset": { - "address": "0xaca92e438df0b2401ff60da7e4337b687a2435da", - "aggregators": ["metamask", "liFi", "socket", "rubic", "rango"], - "assetId": "eip155:1/erc20:0xaca92e438df0b2401ff60da7e4337b687a2435da", - "chainId": 1, - "decimals": 6, - "iconUrl": "https://static.cx.metamask.io/api/v2/tokenIcons/assets/eip155/1/erc20/0xaca92e438df0b2401ff60da7e4337b687a2435da.png", - "metadata": {}, - "name": "MetaMask USD", - "occurrences": 5, - "symbol": "MUSD" - }, - "destChainId": 1, - "destTokenAmount": "204210", - "destWalletAddress": "0x30E8ccaD5A980BDF30447f8c2C48e70989D9d294", - "feeData": { - "metabridge": { - "amount": "0", - "asset": { - "address": "0x0000000000000000000000000000000000000000", - "aggregators": [], - "assetId": "eip155:1/slip44:60", - "chainId": 1, - "coingeckoId": "ethereum", - "decimals": 18, - "iconUrl": "https://static.cx.metamask.io/api/v2/tokenIcons/assets/eip155/1/slip44/60.png", - "metadata": {}, - "name": "Ether", - "occurrences": 100, - "symbol": "ETH" - }, - "baseBpsFee": 87.5, - "quoteBpsFee": 0 - }, - "txFee": { - "amount": "568283752220894", - "asset": { - "address": "0x0000000000000000000000000000000000000000", - "aggregators": [], - "assetId": "eip155:1/slip44:60", - "chainId": 1, - "coingeckoId": "ethereum", - "decimals": 18, - "iconUrl": "https://static.cx.metamask.io/api/v2/tokenIcons/assets/eip155/1/slip44/60.png", - "metadata": {}, - "name": "Ether", - "occurrences": 100, - "symbol": "ETH" - }, - "maxFeePerGas": "2141250266", - "maxPriorityFeePerGas": "2100000001" - } - }, - "gasIncluded": true, - "gasIncluded7702": false, - "gasSponsored": false, - "minDestTokenAmount": "200125", - "priceData": { - "priceImpact": "0.9035518118891557", - "totalFeeAmountUsd": "0", - "totalFromAmountUsd": "3.437857110963734", - "totalToAmountUsd": "0.20385039027013002" - }, - "protocols": ["pancakeswap"], - "requestId": "0xf185079496fa39b0a77a50b296bf1dbc3b53d25eaec41a5981580631171a4ba0", - "slippage": 2, - "srcAsset": { - "address": "0x0000000000000000000000000000000000000000", - "aggregators": [], - "assetId": "eip155:1/slip44:60", - "chainId": 1, - "coingeckoId": "ethereum", - "decimals": 18, - "iconUrl": "https://static.cx.metamask.io/api/v2/tokenIcons/assets/eip155/1/slip44/60.png", - "metadata": {}, - "name": "Ether", - "occurrences": 100, - "symbol": "ETH" - }, - "srcChainId": 1, - "srcTokenAmount": "906988746274251", - "steps": [], - "walletAddress": "0x30E8ccaD5A980BDF30447f8c2C48e70989D9d294" - }, - "slippagePercentage": 0, - "startTime": 1773810328512, - "status": { - "srcChain": { - "chainId": 1 - }, - "status": "PENDING" - }, - "txMetaId": "14ce7f50-2288-11f1-8fe3-5f35f53fd12f" - }, - "16608280-182b-11f1-b7d6-03d70bc40886": { - "account": "0x30e8ccad5a980bdf30447f8c2c48e70989d9d294", - "approvalTxId": "165ba080-182b-11f1-b7d6-03d70bc40886", - "batchId": "0x549a4071524148eda943e04cc2029194", - "estimatedProcessingTimeInSeconds": 0, - "hasApprovalTx": true, - "isStxEnabled": true, - "pricingData": { - "amountSent": "1", - "amountSentInUsd": "0.99534762344306532453024", - "quotedGasAmount": "0.070147564141661708", - "quotedGasInUsd": "0.007285973833802465361223872", - "quotedReturnInUsd": "0.99100623948687191431977096" - }, - "quote": { - "aggregator": "uniswap", - "aggregatorType": "AGG", - "bridgeId": "uniswap", - "bridges": ["uniswap"], - "destAsset": { - "address": "0x0000000000000000000000000000000000000000", - "aggregators": [], - "assetId": "eip155:137/slip44:966", - "chainId": 137, - "coingeckoId": "matic-network", - "decimals": 18, - "iconUrl": "https://static.cx.metamask.io/api/v2/tokenIcons/assets/eip155/137/slip44/966.png", - "metadata": {}, - "name": "Polygon Ecosystem Token", - "occurrences": 100, - "symbol": "POL" - }, - "destChainId": 137, - "destTokenAmount": "9541164343286196565", - "destWalletAddress": "0x30E8ccaD5A980BDF30447f8c2C48e70989D9d294", - "feeData": { - "metabridge": { - "amount": "84222131655741962", - "asset": { - "address": "0x0000000000000000000000000000000000000000", - "aggregators": [], - "assetId": "eip155:137/slip44:966", - "chainId": 137, - "coingeckoId": "matic-network", - "decimals": 18, - "iconUrl": "https://static.cx.metamask.io/api/v2/tokenIcons/assets/eip155/137/slip44/966.png", - "metadata": {}, - "name": "Polygon Ecosystem Token", - "occurrences": 100, - "symbol": "POL" - }, - "baseBpsFee": 87.5, - "quoteBpsFee": 87.5 - } - }, - "gasIncluded7702": false, - "gasSponsored": false, - "minDestTokenAmount": "9350341056420472633", - "priceData": { - "priceImpact": "-0.0036725275730579536", - "totalFeeAmountUsd": "0.008751016367558213", - "totalFromAmountUsd": "0.9964566418", - "totalToAmountUsd": "0.9913651399248089" - }, - "protocols": ["uniswap"], - "requestId": "0xc7866031b328f47445a38bf78b00506bfd0120178192593b597ca2d2a0122adb", - "slippage": 2, - "srcAsset": { - "address": "0xc2132d05d31c914a87c6611c10748aeb04b58e8f", - "aggregators": [ - "quickswap", - "oneInch", - "liFi", - "socket", - "squid", - "rango", - "sonarwatch", - "sushiSwap" - ], - "assetId": "eip155:137/erc20:0xc2132d05d31c914a87c6611c10748aeb04b58e8f", - "chainId": 137, - "coingeckoId": "polygon-bridged-usdt-polygon", - "decimals": 6, - "iconUrl": "https://static.cx.metamask.io/api/v2/tokenIcons/assets/eip155/137/erc20/0xc2132d05d31c914a87c6611c10748aeb04b58e8f.png", - "metadata": { - "storage": { - "approval": 1, - "balance": 0 - } - }, - "name": "Tether USD", - "occurrences": 8, - "symbol": "USDT" - }, - "srcChainId": 137, - "srcTokenAmount": "1000000", - "steps": [], - "walletAddress": "0x30E8ccaD5A980BDF30447f8c2C48e70989D9d294" - }, - "slippagePercentage": 0, - "startTime": 1772670876234, - "status": { - "srcChain": { - "chainId": 137 - }, - "status": "PENDING" - }, - "txMetaId": "16608280-182b-11f1-b7d6-03d70bc40886" - }, - "1774391914102.0298": { - "account": "0x30e8ccad5a980bdf30447f8c2c48e70989d9d294", - "actionId": "1774391914102.0298", - "estimatedProcessingTimeInSeconds": 0, - "hasApprovalTx": false, - "isStxEnabled": false, - "location": "Main View", - "pricingData": { - "amountSent": "0.00001483778992627", - "amountSentInUsd": "0.00943211713729465924900544", - "quotedGasAmount": "0.0000185041", - "quotedGasInUsd": "0.0117627247445529152", - "quotedReturnInUsd": "0.0093517564337073897932347202923282154748384" - }, - "quote": { - "aggregator": "kyberswap", - "aggregatorType": "AGG", - "bridgeId": "kyberswap", - "bridges": ["kyberswap"], - "destAsset": { - "address": "0x55d398326f99059ff775485246999027b3197955", - "aggregators": [ - "pancakeExtended", - "oneInch", - "liFi", - "trustWallet", - "socket", - "squid", - "rango", - "sonarwatch", - "sushiSwap" - ], - "assetId": "eip155:56/erc20:0x55d398326f99059ff775485246999027b3197955", - "chainId": 56, - "coingeckoId": "binance-bridged-usdt-bnb-smart-chain", - "decimals": 18, - "iconUrl": "https://static.cx.metamask.io/api/v2/tokenIcons/assets/eip155/56/erc20/0x55d398326f99059ff775485246999027b3197955.png", - "metadata": { - "storage": { - "approval": 2, - "balance": 1 - } - }, - "name": "Tether USD", - "occurrences": 9, - "symbol": "USDT" - }, - "destChainId": 56, - "destTokenAmount": "9356172547150989", - "destWalletAddress": "0x30E8ccaD5A980BDF30447f8c2C48e70989D9d294", - "feeData": { - "metabridge": { - "amount": "129830661854", - "asset": { - "address": "0x0000000000000000000000000000000000000000", - "aggregators": [], - "assetId": "eip155:56/slip44:714", - "chainId": 56, - "coingeckoId": "binancecoin", - "decimals": 18, - "iconUrl": "https://static.cx.metamask.io/api/v2/tokenIcons/assets/eip155/56/slip44/714.png", - "metadata": {}, - "name": "Binance Coin", - "occurrences": 100, - "symbol": "BNB" - }, - "baseBpsFee": 87.5, - "quoteBpsFee": 87.5 - }, - "txFee": { - "amount": "0", - "asset": { - "address": "0x0000000000000000000000000000000000000000", - "aggregators": [], - "assetId": "eip155:56/slip44:714", - "chainId": 56, - "coingeckoId": "binancecoin", - "decimals": 18, - "iconUrl": "https://static.cx.metamask.io/api/v2/tokenIcons/assets/eip155/56/slip44/714.png", - "metadata": {}, - "name": "Binance Coin", - "occurrences": 100, - "symbol": "BNB" - }, - "maxFeePerGas": "59999999", - "maxPriorityFeePerGas": "59999999" - } - }, - "gasIncluded": true, - "gasIncluded7702": false, - "gasSponsored": false, - "minDestTokenAmount": "9169049096207969", - "priceData": { - "priceImpact": "0.009264760530268371", - "totalFeeAmountUsd": "0.00008259307384504064", - "totalFromAmountUsd": "0.009439208439495923", - "totalToAmountUsd": "0.009351756433708705" - }, - "protocols": ["kyberswap"], - "requestId": "0xfc7a1e9854c7cb1d55ec8245a744a46f588cdfc0ce06b3d034dc7ec6f515ba8a", - "slippage": 2, - "srcAsset": { - "address": "0x0000000000000000000000000000000000000000", - "aggregators": [], - "assetId": "eip155:56/slip44:714", - "chainId": 56, - "coingeckoId": "binancecoin", - "decimals": 18, - "iconUrl": "https://static.cx.metamask.io/api/v2/tokenIcons/assets/eip155/56/slip44/714.png", - "metadata": {}, - "name": "Binance Coin", - "occurrences": 100, - "symbol": "BNB" - }, - "srcChainId": 56, - "srcTokenAmount": "14707959264416", - "steps": [], - "walletAddress": "0x30E8ccaD5A980BDF30447f8c2C48e70989D9d294" - }, - "slippagePercentage": 0, - "startTime": 1774391913921, - "status": { - "srcChain": { - "chainId": 56, - "txHash": "" - }, - "status": "FAILED" - } - }, - "1778785382907.707": { - "account": "0x141d32a89a1e0a5ef360034a2f60a4b917c18838", - "actionId": "1778785382907.707", - "approvalTxId": "8821aab0-4fc7-11f1-8307-b914f900c1b6", - "estimatedProcessingTimeInSeconds": 0, - "hasApprovalTx": true, - "isStxEnabled": false, - "location": "Main View", - "pricingData": { - "amountSent": "0.41535", - "amountSentInUsd": "0.41533917028517996250759045", - "quotedGasAmount": "0.125439923253426042", - "quotedGasInUsd": "0.011914146052134749953939842", - "quotedReturnInUsd": "0.4110480203554907665288" - }, - "quote": { - "aggregator": "1inch", - "aggregatorType": "AGG", - "bridgeId": "1inch", - "bridges": ["1inch"], - "destAsset": { - "address": "0x2791bca1f2de4661ed88a30c99a7a9449aa84174", - "aggregators": [ - "metamask", - "oneInch", - "liFi", - "trustWallet", - "socket", - "rubic", - "squid", - "rango", - "sonarwatch", - "sushiSwap" - ], - "assetId": "eip155:137/erc20:0x2791bca1f2de4661ed88a30c99a7a9449aa84174", - "chainId": 137, - "coingeckoId": "bridged-usdc-polygon-pos-bridge", - "decimals": 6, - "iconUrl": "https://static.cx.metamask.io/api/v2/tokenIcons/assets/eip155/137/erc20/0x2791bca1f2de4661ed88a30c99a7a9449aa84174.png", - "metadata": { - "storage": { - "approval": 1, - "balance": 0 - } - }, - "name": "USD Coin (PoS)", - "occurrences": 10, - "symbol": "USDC.E" - }, - "destChainId": 137, - "destTokenAmount": "411034", - "destWalletAddress": "0x141d32a89a1e0a5ef360034a2f60a4b917c18838", - "feeData": { - "metabridge": { - "amount": "3628", - "asset": { - "address": "0x2791bca1f2de4661ed88a30c99a7a9449aa84174", - "aggregators": [ - "metamask", - "oneInch", - "liFi", - "trustWallet", - "socket", - "rubic", - "squid", - "rango", - "sonarwatch", - "sushiSwap" - ], - "assetId": "eip155:137/erc20:0x2791bca1f2de4661ed88a30c99a7a9449aa84174", - "chainId": 137, - "coingeckoId": "bridged-usdc-polygon-pos-bridge", - "decimals": 6, - "iconUrl": "https://static.cx.metamask.io/api/v2/tokenIcons/assets/eip155/137/erc20/0x2791bca1f2de4661ed88a30c99a7a9449aa84174.png", - "metadata": { - "storage": { - "approval": 1, - "balance": 0 - } - }, - "name": "USD Coin (PoS)", - "occurrences": 10, - "symbol": "USDC.E" - }, - "baseBpsFee": 87.5, - "quoteBpsFee": 87.5, - "usd": "0.003627897130266999" - } - }, - "gasIncluded": false, - "gasIncluded7702": false, - "gasSponsored": false, - "minDestTokenAmount": "408978", - "priceData": { - "priceImpact": "0.0017099949226371711", - "totalFeeAmountUsd": "0.003627897130266999", - "totalFromAmountUsd": "0.41536050686904885", - "totalToAmountUsd": "0.4110223453809718" - }, - "protocols": ["1inch"], - "requestId": "0x02c9a259172a216b0ba86ddfdbdc293a89caceaadde0e4cc9438e22836e06439", - "slippage": 0.5, - "srcAsset": { - "address": "0xc2132d05d31c914a87c6611c10748aeb04b58e8f", - "aggregators": [ - "sonarwatch", - "oneInch", - "liFi", - "trustWallet", - "socket", - "rubic", - "squid", - "rango", - "sushiSwap" - ], - "assetId": "eip155:137/erc20:0xc2132d05d31c914a87c6611c10748aeb04b58e8f", - "chainId": 137, - "coingeckoId": "polygon-bridged-usdt-polygon", - "decimals": 6, - "iconUrl": "https://static.cx.metamask.io/api/v2/tokenIcons/assets/eip155/137/erc20/0xc2132d05d31c914a87c6611c10748aeb04b58e8f.png", - "metadata": { - "storage": { - "approval": 1, - "balance": 0 - } - }, - "name": "(PoS) Tether USD", - "occurrences": 9, - "symbol": "USDT" - }, - "srcChainId": 137, - "srcTokenAmount": "415350", - "steps": [], - "walletAddress": "0x141d32a89a1e0a5ef360034a2f60a4b917c18838" - }, - "slippagePercentage": 0, - "startTime": 1778785382453, - "status": { - "srcChain": { - "chainId": 137 - }, - "status": "FAILED" - }, - "tokenSecurityTypeDestination": "Verified" - }, - "1778785542034.9695": { - "account": "0x141d32a89a1e0a5ef360034a2f60a4b917c18838", - "actionId": "1778785542034.9695", - "estimatedProcessingTimeInSeconds": 0, - "hasApprovalTx": false, - "isStxEnabled": false, - "location": "Main View", - "pricingData": { - "amountSent": "0.41535", - "amountSentInUsd": "0.41533917028517996250759045", - "quotedGasAmount": "0.091050033130089501", - "quotedGasInUsd": "0.008647832082709490836618401", - "quotedReturnInUsd": "0.410842333326406036939" - }, - "quote": { - "aggregator": "1inch", - "aggregatorType": "AGG", - "bridgeId": "1inch", - "bridges": ["1inch"], - "destAsset": { - "address": "0x2791bca1f2de4661ed88a30c99a7a9449aa84174", - "aggregators": [ - "metamask", - "oneInch", - "liFi", - "trustWallet", - "socket", - "rubic", - "squid", - "rango", - "sonarwatch", - "sushiSwap" - ], - "assetId": "eip155:137/erc20:0x2791bca1f2de4661ed88a30c99a7a9449aa84174", - "chainId": 137, - "coingeckoId": "bridged-usdc-polygon-pos-bridge", - "decimals": 6, - "iconUrl": "https://static.cx.metamask.io/api/v2/tokenIcons/assets/eip155/137/erc20/0x2791bca1f2de4661ed88a30c99a7a9449aa84174.png", - "metadata": { - "storage": { - "approval": 1, - "balance": 0 - } - }, - "name": "USD Coin (PoS)", - "occurrences": 10, - "symbol": "USDC.E" - }, - "destChainId": 137, - "destTokenAmount": "411034", - "destWalletAddress": "0x141d32a89a1e0a5ef360034a2f60a4b917c18838", - "feeData": { - "metabridge": { - "amount": "3628", - "asset": { - "address": "0x2791bca1f2de4661ed88a30c99a7a9449aa84174", - "aggregators": [ - "metamask", - "oneInch", - "liFi", - "trustWallet", - "socket", - "rubic", - "squid", - "rango", - "sonarwatch", - "sushiSwap" - ], - "assetId": "eip155:137/erc20:0x2791bca1f2de4661ed88a30c99a7a9449aa84174", - "chainId": 137, - "coingeckoId": "bridged-usdc-polygon-pos-bridge", - "decimals": 6, - "iconUrl": "https://static.cx.metamask.io/api/v2/tokenIcons/assets/eip155/137/erc20/0x2791bca1f2de4661ed88a30c99a7a9449aa84174.png", - "metadata": { - "storage": { - "approval": 1, - "balance": 0 - } - }, - "name": "USD Coin (PoS)", - "occurrences": 10, - "symbol": "USDC.E" - }, - "baseBpsFee": 87.5, - "quoteBpsFee": 87.5, - "usd": "0.0036263082501890383" - } - }, - "gasIncluded": false, - "gasIncluded7702": false, - "gasSponsored": false, - "minDestTokenAmount": "408978", - "priceData": { - "priceImpact": "0.0020956435200364565", - "totalFeeAmountUsd": "0.0036263082501890383", - "totalFromAmountUsd": "0.41533904415309264", - "totalToAmountUsd": "0.4108423333264061" - }, - "protocols": ["1inch"], - "requestId": "0x4624845ba69a435f000ea77348ff8bab30b982fa3a3b596da474f1e7b1206766", - "slippage": 0.5, - "srcAsset": { - "address": "0xc2132d05d31c914a87c6611c10748aeb04b58e8f", - "aggregators": [ - "sonarwatch", - "oneInch", - "liFi", - "trustWallet", - "socket", - "rubic", - "squid", - "rango", - "sushiSwap" - ], - "assetId": "eip155:137/erc20:0xc2132d05d31c914a87c6611c10748aeb04b58e8f", - "chainId": 137, - "coingeckoId": "polygon-bridged-usdt-polygon", - "decimals": 6, - "iconUrl": "https://static.cx.metamask.io/api/v2/tokenIcons/assets/eip155/137/erc20/0xc2132d05d31c914a87c6611c10748aeb04b58e8f.png", - "metadata": { - "storage": { - "approval": 1, - "balance": 0 - } - }, - "name": "(PoS) Tether USD", - "occurrences": 9, - "symbol": "USDT" - }, - "srcChainId": 137, - "srcTokenAmount": "415350", - "steps": [], - "walletAddress": "0x141d32a89a1e0a5ef360034a2f60a4b917c18838" - }, - "slippagePercentage": 0, - "startTime": 1778785541906, - "status": { - "srcChain": { - "chainId": 137 - }, - "status": "FAILED" - }, - "tokenSecurityTypeDestination": "Verified" - }, - "1778785601332.0654": { - "account": "0x141d32a89a1e0a5ef360034a2f60a4b917c18838", - "actionId": "1778785601332.0654", - "estimatedProcessingTimeInSeconds": 0, - "hasApprovalTx": false, - "isStxEnabled": false, - "location": "Main View", - "pricingData": { - "amountSent": "0.41535", - "amountSentInUsd": "0.4156195077907641978090336", - "quotedGasAmount": "0.102880619204181354", - "quotedGasInUsd": "0.009778083514067962061672832", - "quotedReturnInUsd": "0.410842333326406036939" - }, - "quote": { - "aggregator": "1inch", - "aggregatorType": "AGG", - "bridgeId": "1inch", - "bridges": ["1inch"], - "destAsset": { - "address": "0x2791bca1f2de4661ed88a30c99a7a9449aa84174", - "aggregators": [ - "metamask", - "oneInch", - "liFi", - "trustWallet", - "socket", - "rubic", - "squid", - "rango", - "sonarwatch", - "sushiSwap" - ], - "assetId": "eip155:137/erc20:0x2791bca1f2de4661ed88a30c99a7a9449aa84174", - "chainId": 137, - "coingeckoId": "bridged-usdc-polygon-pos-bridge", - "decimals": 6, - "iconUrl": "https://static.cx.metamask.io/api/v2/tokenIcons/assets/eip155/137/erc20/0x2791bca1f2de4661ed88a30c99a7a9449aa84174.png", - "metadata": { - "storage": { - "approval": 1, - "balance": 0 - } - }, - "name": "USD Coin (PoS)", - "occurrences": 10, - "symbol": "USDC.E" - }, - "destChainId": 137, - "destTokenAmount": "411034", - "destWalletAddress": "0x141d32a89a1e0a5ef360034a2f60a4b917c18838", - "feeData": { - "metabridge": { - "amount": "3628", - "asset": { - "address": "0x2791bca1f2de4661ed88a30c99a7a9449aa84174", - "aggregators": [ - "metamask", - "oneInch", - "liFi", - "trustWallet", - "socket", - "rubic", - "squid", - "rango", - "sonarwatch", - "sushiSwap" - ], - "assetId": "eip155:137/erc20:0x2791bca1f2de4661ed88a30c99a7a9449aa84174", - "chainId": 137, - "coingeckoId": "bridged-usdc-polygon-pos-bridge", - "decimals": 6, - "iconUrl": "https://static.cx.metamask.io/api/v2/tokenIcons/assets/eip155/137/erc20/0x2791bca1f2de4661ed88a30c99a7a9449aa84174.png", - "metadata": { - "storage": { - "approval": 1, - "balance": 0 - } - }, - "name": "USD Coin (PoS)", - "occurrences": 10, - "symbol": "USDC.E" - }, - "baseBpsFee": 87.5, - "quoteBpsFee": 87.5, - "usd": "0.0036263082501890383" - } - }, - "gasIncluded": false, - "gasIncluded7702": false, - "gasSponsored": false, - "minDestTokenAmount": "408978", - "priceData": { - "priceImpact": "0.0020956435200364565", - "totalFeeAmountUsd": "0.0036263082501890383", - "totalFromAmountUsd": "0.41533904415309264", - "totalToAmountUsd": "0.4108423333264061" - }, - "protocols": ["1inch"], - "requestId": "0xb7c3ca3292eb47fc47b9117e14664e151f6057ee133006f407b8db583df328f0", - "slippage": 0.5, - "srcAsset": { - "address": "0xc2132d05d31c914a87c6611c10748aeb04b58e8f", - "aggregators": [ - "sonarwatch", - "oneInch", - "liFi", - "trustWallet", - "socket", - "rubic", - "squid", - "rango", - "sushiSwap" - ], - "assetId": "eip155:137/erc20:0xc2132d05d31c914a87c6611c10748aeb04b58e8f", - "chainId": 137, - "coingeckoId": "polygon-bridged-usdt-polygon", - "decimals": 6, - "iconUrl": "https://static.cx.metamask.io/api/v2/tokenIcons/assets/eip155/137/erc20/0xc2132d05d31c914a87c6611c10748aeb04b58e8f.png", - "metadata": { - "storage": { - "approval": 1, - "balance": 0 - } - }, - "name": "(PoS) Tether USD", - "occurrences": 9, - "symbol": "USDT" - }, - "srcChainId": 137, - "srcTokenAmount": "415350", - "steps": [], - "walletAddress": "0x141d32a89a1e0a5ef360034a2f60a4b917c18838" - }, - "slippagePercentage": 0, - "startTime": 1778785601200, - "status": { - "srcChain": { - "chainId": 137 - }, - "status": "FAILED" - }, - "tokenSecurityTypeDestination": "Verified" - }, - "1778785716284.8086": { - "account": "0x141d32a89a1e0a5ef360034a2f60a4b917c18838", - "actionId": "1778785716284.8086", - "estimatedProcessingTimeInSeconds": 0, - "hasApprovalTx": false, - "isStxEnabled": false, - "location": "Main View", - "pricingData": { - "amountSent": "0.41535", - "amountSentInUsd": "0.41534909513382383756633664", - "quotedGasAmount": "0.105788986156199909", - "quotedGasInUsd": "0.010054503457555597200686272", - "quotedReturnInUsd": "0.410842333326406036939" - }, - "quote": { - "aggregator": "1inch", - "aggregatorType": "AGG", - "bridgeId": "1inch", - "bridges": ["1inch"], - "destAsset": { - "address": "0x2791bca1f2de4661ed88a30c99a7a9449aa84174", - "aggregators": [ - "metamask", - "oneInch", - "liFi", - "trustWallet", - "socket", - "rubic", - "squid", - "rango", - "sonarwatch", - "sushiSwap" - ], - "assetId": "eip155:137/erc20:0x2791bca1f2de4661ed88a30c99a7a9449aa84174", - "chainId": 137, - "coingeckoId": "bridged-usdc-polygon-pos-bridge", - "decimals": 6, - "iconUrl": "https://static.cx.metamask.io/api/v2/tokenIcons/assets/eip155/137/erc20/0x2791bca1f2de4661ed88a30c99a7a9449aa84174.png", - "metadata": { - "storage": { - "approval": 1, - "balance": 0 - } - }, - "name": "USD Coin (PoS)", - "occurrences": 10, - "symbol": "USDC.E" - }, - "destChainId": 137, - "destTokenAmount": "411034", - "destWalletAddress": "0x141d32a89a1e0a5ef360034a2f60a4b917c18838", - "feeData": { - "metabridge": { - "amount": "3628", - "asset": { - "address": "0x2791bca1f2de4661ed88a30c99a7a9449aa84174", - "aggregators": [ - "metamask", - "oneInch", - "liFi", - "trustWallet", - "socket", - "rubic", - "squid", - "rango", - "sonarwatch", - "sushiSwap" - ], - "assetId": "eip155:137/erc20:0x2791bca1f2de4661ed88a30c99a7a9449aa84174", - "chainId": 137, - "coingeckoId": "bridged-usdc-polygon-pos-bridge", - "decimals": 6, - "iconUrl": "https://static.cx.metamask.io/api/v2/tokenIcons/assets/eip155/137/erc20/0x2791bca1f2de4661ed88a30c99a7a9449aa84174.png", - "metadata": { - "storage": { - "approval": 1, - "balance": 0 - } - }, - "name": "USD Coin (PoS)", - "occurrences": 10, - "symbol": "USDC.E" - }, - "baseBpsFee": 87.5, - "quoteBpsFee": 87.5, - "usd": "0.0036263082501890383" - } - }, - "gasIncluded": false, - "gasIncluded7702": false, - "gasSponsored": false, - "minDestTokenAmount": "408978", - "priceData": { - "priceImpact": "0.0020956435200364565", - "totalFeeAmountUsd": "0.0036263082501890383", - "totalFromAmountUsd": "0.41533904415309264", - "totalToAmountUsd": "0.4108423333264061" - }, - "protocols": ["1inch"], - "requestId": "0xdaae1cda8078ef2c3bc321f49b321b448b5bd466ea7d434a18f693bd7982c2ac", - "slippage": 0.5, - "srcAsset": { - "address": "0xc2132d05d31c914a87c6611c10748aeb04b58e8f", - "aggregators": [ - "sonarwatch", - "oneInch", - "liFi", - "trustWallet", - "socket", - "rubic", - "squid", - "rango", - "sushiSwap" - ], - "assetId": "eip155:137/erc20:0xc2132d05d31c914a87c6611c10748aeb04b58e8f", - "chainId": 137, - "coingeckoId": "polygon-bridged-usdt-polygon", - "decimals": 6, - "iconUrl": "https://static.cx.metamask.io/api/v2/tokenIcons/assets/eip155/137/erc20/0xc2132d05d31c914a87c6611c10748aeb04b58e8f.png", - "metadata": { - "storage": { - "approval": 1, - "balance": 0 - } - }, - "name": "(PoS) Tether USD", - "occurrences": 9, - "symbol": "USDT" - }, - "srcChainId": 137, - "srcTokenAmount": "415350", - "steps": [], - "walletAddress": "0x141d32a89a1e0a5ef360034a2f60a4b917c18838" - }, - "slippagePercentage": 0, - "startTime": 1778785716167, - "status": { - "srcChain": { - "chainId": 137 - }, - "status": "FAILED" - }, - "tokenSecurityTypeDestination": "Verified" - }, - "1778786350483.7222": { - "account": "0x141d32a89a1e0a5ef360034a2f60a4b917c18838", - "actionId": "1778786350483.7222", - "estimatedProcessingTimeInSeconds": 0, - "hasApprovalTx": false, - "isStxEnabled": false, - "location": "Main View", - "pricingData": { - "amountSent": "0.41535", - "amountSentInUsd": "0.4153164421115617070309523", - "quotedGasAmount": "0.102252937709888206", - "quotedGasInUsd": "0.00973195709000805426915798", - "quotedReturnInUsd": "0.4110097680381907151184" - }, - "quote": { - "aggregator": "1inch", - "aggregatorType": "AGG", - "bridgeId": "1inch", - "bridges": ["1inch"], - "destAsset": { - "address": "0x2791bca1f2de4661ed88a30c99a7a9449aa84174", - "aggregators": [ - "metamask", - "oneInch", - "liFi", - "trustWallet", - "socket", - "rubic", - "squid", - "rango", - "sonarwatch", - "sushiSwap" - ], - "assetId": "eip155:137/erc20:0x2791bca1f2de4661ed88a30c99a7a9449aa84174", - "chainId": 137, - "coingeckoId": "bridged-usdc-polygon-pos-bridge", - "decimals": 6, - "iconUrl": "https://static.cx.metamask.io/api/v2/tokenIcons/assets/eip155/137/erc20/0x2791bca1f2de4661ed88a30c99a7a9449aa84174.png", - "metadata": { - "storage": { - "approval": 1, - "balance": 0 - } - }, - "name": "USD Coin (PoS)", - "occurrences": 10, - "symbol": "USDC.E" - }, - "destChainId": 137, - "destTokenAmount": "411034", - "destWalletAddress": "0x141d32a89a1e0a5ef360034a2f60a4b917c18838", - "feeData": { - "metabridge": { - "amount": "3628", - "asset": { - "address": "0x2791bca1f2de4661ed88a30c99a7a9449aa84174", - "aggregators": [ - "metamask", - "oneInch", - "liFi", - "trustWallet", - "socket", - "rubic", - "squid", - "rango", - "sonarwatch", - "sushiSwap" - ], - "assetId": "eip155:137/erc20:0x2791bca1f2de4661ed88a30c99a7a9449aa84174", - "chainId": 137, - "coingeckoId": "bridged-usdc-polygon-pos-bridge", - "decimals": 6, - "iconUrl": "https://static.cx.metamask.io/api/v2/tokenIcons/assets/eip155/137/erc20/0x2791bca1f2de4661ed88a30c99a7a9449aa84174.png", - "metadata": { - "storage": { - "approval": 1, - "balance": 0 - } - }, - "name": "USD Coin (PoS)", - "occurrences": 10, - "symbol": "USDC.E" - }, - "baseBpsFee": 87.5, - "quoteBpsFee": 87.5, - "usd": "0.0036277861160939383" - } - }, - "gasIncluded": false, - "gasIncluded7702": false, - "gasSponsored": false, - "minDestTokenAmount": "408978", - "priceData": { - "priceImpact": "0.0017443549458473428", - "totalFeeAmountUsd": "0.0036277861160939383", - "totalFromAmountUsd": "0.41536209307565863", - "totalToAmountUsd": "0.4110097680381907" - }, - "protocols": ["1inch"], - "requestId": "0x6a87cfe819874860a2e9b557a4e4e5596ffec94dfd412c349333e0a607d8e7ba", - "slippage": 0.5, - "srcAsset": { - "address": "0xc2132d05d31c914a87c6611c10748aeb04b58e8f", - "aggregators": [ - "sonarwatch", - "oneInch", - "liFi", - "trustWallet", - "socket", - "rubic", - "squid", - "rango", - "sushiSwap" - ], - "assetId": "eip155:137/erc20:0xc2132d05d31c914a87c6611c10748aeb04b58e8f", - "chainId": 137, - "coingeckoId": "polygon-bridged-usdt-polygon", - "decimals": 6, - "iconUrl": "https://static.cx.metamask.io/api/v2/tokenIcons/assets/eip155/137/erc20/0xc2132d05d31c914a87c6611c10748aeb04b58e8f.png", - "metadata": { - "storage": { - "approval": 1, - "balance": 0 - } - }, - "name": "(PoS) Tether USD", - "occurrences": 9, - "symbol": "USDT" - }, - "srcChainId": 137, - "srcTokenAmount": "415350", - "steps": [], - "walletAddress": "0x141d32a89a1e0a5ef360034a2f60a4b917c18838" - }, - "slippagePercentage": 0, - "startTime": 1778786350350, - "status": { - "srcChain": { - "chainId": 137 - }, - "status": "FAILED" - }, - "tokenSecurityTypeDestination": "Verified" - }, - "1778786574185.9194": { - "account": "0x141d32a89a1e0a5ef360034a2f60a4b917c18838", - "actionId": "1778786574185.9194", - "estimatedProcessingTimeInSeconds": 0, - "hasApprovalTx": false, - "isStxEnabled": false, - "location": "Main View", - "pricingData": { - "amountSent": "0.41535", - "amountSentInUsd": "0.4149998438417582697233586", - "quotedGasAmount": "0.091211039639609324", - "quotedGasInUsd": "0.00868335299719776257914032", - "quotedReturnInUsd": "0.4110097680381907151184" - }, - "quote": { - "aggregator": "1inch", - "aggregatorType": "AGG", - "bridgeId": "1inch", - "bridges": ["1inch"], - "destAsset": { - "address": "0x2791bca1f2de4661ed88a30c99a7a9449aa84174", - "aggregators": [ - "metamask", - "oneInch", - "liFi", - "trustWallet", - "socket", - "rubic", - "squid", - "rango", - "sonarwatch", - "sushiSwap" - ], - "assetId": "eip155:137/erc20:0x2791bca1f2de4661ed88a30c99a7a9449aa84174", - "chainId": 137, - "coingeckoId": "bridged-usdc-polygon-pos-bridge", - "decimals": 6, - "iconUrl": "https://static.cx.metamask.io/api/v2/tokenIcons/assets/eip155/137/erc20/0x2791bca1f2de4661ed88a30c99a7a9449aa84174.png", - "metadata": { - "storage": { - "approval": 1, - "balance": 0 - } - }, - "name": "USD Coin (PoS)", - "occurrences": 10, - "symbol": "USDC.E" - }, - "destChainId": 137, - "destTokenAmount": "411034", - "destWalletAddress": "0x141d32a89a1e0a5ef360034a2f60a4b917c18838", - "feeData": { - "metabridge": { - "amount": "3628", - "asset": { - "address": "0x2791bca1f2de4661ed88a30c99a7a9449aa84174", - "aggregators": [ - "metamask", - "oneInch", - "liFi", - "trustWallet", - "socket", - "rubic", - "squid", - "rango", - "sonarwatch", - "sushiSwap" - ], - "assetId": "eip155:137/erc20:0x2791bca1f2de4661ed88a30c99a7a9449aa84174", - "chainId": 137, - "coingeckoId": "bridged-usdc-polygon-pos-bridge", - "decimals": 6, - "iconUrl": "https://static.cx.metamask.io/api/v2/tokenIcons/assets/eip155/137/erc20/0x2791bca1f2de4661ed88a30c99a7a9449aa84174.png", - "metadata": { - "storage": { - "approval": 1, - "balance": 0 - } - }, - "name": "USD Coin (PoS)", - "occurrences": 10, - "symbol": "USDC.E" - }, - "baseBpsFee": 87.5, - "quoteBpsFee": 87.5, - "usd": "0.0036277861160939383" - } - }, - "gasIncluded": false, - "gasIncluded7702": false, - "gasSponsored": false, - "minDestTokenAmount": "408978", - "priceData": { - "priceImpact": "0.0017443549458473428", - "totalFeeAmountUsd": "0.0036277861160939383", - "totalFromAmountUsd": "0.41536209307565863", - "totalToAmountUsd": "0.4110097680381907" - }, - "protocols": ["1inch"], - "requestId": "0x2de1e1bf63864860114bc9333eba455e06fe6adb37df7dd8fd5413d48edfef2a", - "slippage": 0.5, - "srcAsset": { - "address": "0xc2132d05d31c914a87c6611c10748aeb04b58e8f", - "aggregators": [ - "sonarwatch", - "oneInch", - "liFi", - "trustWallet", - "socket", - "rubic", - "squid", - "rango", - "sushiSwap" - ], - "assetId": "eip155:137/erc20:0xc2132d05d31c914a87c6611c10748aeb04b58e8f", - "chainId": 137, - "coingeckoId": "polygon-bridged-usdt-polygon", - "decimals": 6, - "iconUrl": "https://static.cx.metamask.io/api/v2/tokenIcons/assets/eip155/137/erc20/0xc2132d05d31c914a87c6611c10748aeb04b58e8f.png", - "metadata": { - "storage": { - "approval": 1, - "balance": 0 - } - }, - "name": "(PoS) Tether USD", - "occurrences": 9, - "symbol": "USDT" - }, - "srcChainId": 137, - "srcTokenAmount": "415350", - "steps": [], - "walletAddress": "0x141d32a89a1e0a5ef360034a2f60a4b917c18838" - }, - "slippagePercentage": 0, - "startTime": 1778786574058, - "status": { - "srcChain": { - "chainId": 137 - }, - "status": "FAILED" - }, - "tokenSecurityTypeDestination": "Verified" - }, - "1778791682371.7283": { - "account": "0x141d32a89a1e0a5ef360034a2f60a4b917c18838", - "actionId": "1778791682371.7283", - "estimatedProcessingTimeInSeconds": 0, - "hasApprovalTx": false, - "isStxEnabled": false, - "location": "Main View", - "pricingData": { - "amountSent": "0.41535", - "amountSentInUsd": "0.41534999890412352381541575", - "quotedGasAmount": "0.101466284928739119", - "quotedGasInUsd": "0.009621675722925496968420627", - "quotedReturnInUsd": "0.411000765988102766105" - }, - "quote": { - "aggregator": "1inch", - "aggregatorType": "AGG", - "bridgeId": "1inch", - "bridges": ["1inch"], - "destAsset": { - "address": "0x2791bca1f2de4661ed88a30c99a7a9449aa84174", - "aggregators": [ - "metamask", - "oneInch", - "liFi", - "trustWallet", - "socket", - "rubic", - "squid", - "rango", - "sonarwatch", - "sushiSwap" - ], - "assetId": "eip155:137/erc20:0x2791bca1f2de4661ed88a30c99a7a9449aa84174", - "chainId": 137, - "coingeckoId": "bridged-usdc-polygon-pos-bridge", - "decimals": 6, - "iconUrl": "https://static.cx.metamask.io/api/v2/tokenIcons/assets/eip155/137/erc20/0x2791bca1f2de4661ed88a30c99a7a9449aa84174.png", - "metadata": { - "storage": { - "approval": 1, - "balance": 0 - } - }, - "name": "USD Coin (PoS)", - "occurrences": 10, - "symbol": "USDC.E" - }, - "destChainId": 137, - "destTokenAmount": "411089", - "destWalletAddress": "0x141d32a89a1e0a5ef360034a2f60a4b917c18838", - "feeData": { - "metabridge": { - "amount": "3628", - "asset": { - "address": "0x2791bca1f2de4661ed88a30c99a7a9449aa84174", - "aggregators": [ - "metamask", - "oneInch", - "liFi", - "trustWallet", - "socket", - "rubic", - "squid", - "rango", - "sonarwatch", - "sushiSwap" - ], - "assetId": "eip155:137/erc20:0x2791bca1f2de4661ed88a30c99a7a9449aa84174", - "chainId": 137, - "coingeckoId": "bridged-usdc-polygon-pos-bridge", - "decimals": 6, - "iconUrl": "https://static.cx.metamask.io/api/v2/tokenIcons/assets/eip155/137/erc20/0x2791bca1f2de4661ed88a30c99a7a9449aa84174.png", - "metadata": { - "storage": { - "approval": 1, - "balance": 0 - } - }, - "name": "USD Coin (PoS)", - "occurrences": 10, - "symbol": "USDC.E" - }, - "baseBpsFee": 87.5, - "quoteBpsFee": 87.5, - "usd": "0.0036272213048873527" - } - }, - "gasIncluded": false, - "gasIncluded7702": false, - "gasSponsored": false, - "minDestTokenAmount": "409033", - "priceData": { - "priceImpact": "0.0017383235993978312", - "totalFeeAmountUsd": "0.0036272213048873527", - "totalFromAmountUsd": "0.41535", - "totalToAmountUsd": "0.41100076598810276" - }, - "protocols": ["1inch"], - "requestId": "0xe3d5fb9fd3b52c63ae501b0bf4245b234e308c751795cc30309eab7eaa6f5f47", - "slippage": 0.5, - "srcAsset": { - "address": "0xc2132d05d31c914a87c6611c10748aeb04b58e8f", - "aggregators": [ - "sonarwatch", - "oneInch", - "liFi", - "trustWallet", - "socket", - "rubic", - "squid", - "rango", - "sushiSwap" - ], - "assetId": "eip155:137/erc20:0xc2132d05d31c914a87c6611c10748aeb04b58e8f", - "chainId": 137, - "coingeckoId": "polygon-bridged-usdt-polygon", - "decimals": 6, - "iconUrl": "https://static.cx.metamask.io/api/v2/tokenIcons/assets/eip155/137/erc20/0xc2132d05d31c914a87c6611c10748aeb04b58e8f.png", - "metadata": { - "storage": { - "approval": 1, - "balance": 0 - } - }, - "name": "(PoS) Tether USD", - "occurrences": 9, - "symbol": "USDT" - }, - "srcChainId": 137, - "srcTokenAmount": "415350", - "steps": [], - "walletAddress": "0x141d32a89a1e0a5ef360034a2f60a4b917c18838" - }, - "slippagePercentage": 0, - "startTime": 1778791682244, - "status": { - "srcChain": { - "chainId": 137 - }, - "status": "FAILED" - }, - "tokenSecurityTypeDestination": "Verified" - }, - "18e4dc30-2c9f-11f1-8ebe-f533125480a0": { - "account": "0x141d32a89a1e0a5ef360034a2f60a4b917c18838", - "approvalTxId": "18dfd320-2c9f-11f1-8ebe-f533125480a0", - "batchId": "0x970f55d7092848488fd23a59861dc300", - "estimatedProcessingTimeInSeconds": 0, - "hasApprovalTx": true, - "isStxEnabled": true, - "location": "Main View", - "originalTransactionId": "18e4dc30-2c9f-11f1-8ebe-f533125480a0", - "pricingData": { - "amountSent": "15.920861", - "amountSentInUsd": "15.898075408447756551870178883028064", - "quotedGasAmount": "0.000892593637078568", - "quotedGasInUsd": "1.813990780877443622385710528", - "quotedReturnInUsd": "13.154940453191463332302601304" - }, - "quote": { - "aggregator": "openocean", - "aggregatorType": "AGG", - "bridgeId": "openocean", - "bridges": ["openocean"], - "destAsset": { - "address": "0x0000000000000000000000000000000000000000", - "aggregators": [], - "assetId": "eip155:1/slip44:60", - "chainId": 1, - "coingeckoId": "ethereum", - "decimals": 18, - "iconUrl": "https://static.cx.metamask.io/api/v2/tokenIcons/assets/eip155/1/slip44/60.png", - "metadata": {}, - "name": "Ether", - "occurrences": 100, - "symbol": "ETH" - }, - "destChainId": 1, - "destTokenAmount": "6473029669415649", - "destWalletAddress": "0x141d32a89a1e0a5Ef360034a2f60a4B917c18838", - "feeData": { - "metabridge": { - "amount": "68320456535973", - "asset": { - "address": "0x0000000000000000000000000000000000000000", - "aggregators": [], - "assetId": "eip155:1/slip44:60", - "chainId": 1, - "coingeckoId": "ethereum", - "decimals": 18, - "iconUrl": "https://static.cx.metamask.io/api/v2/tokenIcons/assets/eip155/1/slip44/60.png", - "metadata": {}, - "name": "Ether", - "occurrences": 100, - "symbol": "ETH" - }, - "baseBpsFee": 87.5, - "quoteBpsFee": 87.5 - }, - "txFee": { - "amount": "1266702049588182", - "asset": { - "address": "0x0000000000000000000000000000000000000000", - "aggregators": [], - "assetId": "eip155:1/slip44:60", - "chainId": 1, - "coingeckoId": "ethereum", - "decimals": 18, - "iconUrl": "https://static.cx.metamask.io/api/v2/tokenIcons/assets/eip155/1/slip44/60.png", - "metadata": {}, - "name": "Ether", - "occurrences": 100, - "symbol": "ETH" - }, - "maxFeePerGas": "2210294520", - "maxPriorityFeePerGas": "2100000001" - } - }, - "gasIncluded": true, - "gasIncluded7702": false, - "gasSponsored": false, - "minDestTokenAmount": "6343569076027336", - "priceData": { - "priceImpact": "0.004345810244005002", - "totalFeeAmountUsd": "0.13884083177240433", - "totalFromAmountUsd": "15.936781860999998", - "totalToAmountUsd": "13.154490894186482" - }, - "protocols": ["openocean"], - "requestId": "0x56f130b4b6064f9baedc8fb78981404ff433fc9678784fd53c46c254d25f7910", - "slippage": 2, - "srcAsset": { - "address": "0xaca92e438df0b2401ff60da7e4337b687a2435da", - "aggregators": ["metamask", "liFi", "socket", "rubic", "rango"], - "assetId": "eip155:1/erc20:0xaca92e438df0b2401ff60da7e4337b687a2435da", - "chainId": 1, - "decimals": 6, - "iconUrl": "https://static.cx.metamask.io/api/v2/tokenIcons/assets/eip155/1/erc20/0xaca92e438df0b2401ff60da7e4337b687a2435da.png", - "metadata": {}, - "name": "MetaMask USD", - "occurrences": 5, - "symbol": "MUSD" - }, - "srcChainId": 1, - "srcTokenAmount": "15920861", - "steps": [], - "walletAddress": "0x141d32a89a1e0a5Ef360034a2f60a4B917c18838" - }, - "slippagePercentage": 0, - "startTime": 1774919725308, - "status": { - "srcChain": { - "chainId": 1 - }, - "status": "PENDING" - }, - "txMetaId": "18e4dc30-2c9f-11f1-8ebe-f533125480a0" - }, - "1a416310-287a-11f1-9dfe-552793792a79": { - "account": "0xf25bd11c334507fd007d584e2d0b7b2c6543f714", - "batchId": "0xa5cc733477e94a58ab5762100ae32e45", - "estimatedProcessingTimeInSeconds": 0, - "hasApprovalTx": true, - "isStxEnabled": false, - "location": "Main View", - "originalTransactionId": "1a416310-287a-11f1-9dfe-552793792a79", - "pricingData": { - "amountSent": "1.558871007127811639", - "amountSentInUsd": "1.55878266365077094718364467862200066104510895", - "quotedGasAmount": "0.00002473145", - "quotedGasInUsd": "0.01595953655565980085", - "quotedReturnInUsd": "1.497371644626166090297385244" - }, - "quote": { - "aggregator": "okx", - "aggregatorType": "AGG", - "bridgeId": "okx", - "bridges": ["okx"], - "destAsset": { - "address": "0x0000000000000000000000000000000000000000", - "aggregators": [], - "assetId": "eip155:56/slip44:714", - "chainId": 56, - "coingeckoId": "binancecoin", - "decimals": 18, - "iconUrl": "https://static.cx.metamask.io/api/v2/tokenIcons/assets/eip155/56/slip44/714.png", - "metadata": {}, - "name": "Binance Coin", - "occurrences": 100, - "symbol": "BNB" - }, - "destChainId": 56, - "destTokenAmount": "2320378905198028", - "destWalletAddress": "0xF25bd11C334507Fd007d584E2D0b7b2C6543f714", - "feeData": { - "metabridge": { - "amount": "21154536376880", - "asset": { - "address": "0x0000000000000000000000000000000000000000", - "aggregators": [], - "assetId": "eip155:56/slip44:714", - "chainId": 56, - "coingeckoId": "binancecoin", - "decimals": 18, - "iconUrl": "https://static.cx.metamask.io/api/v2/tokenIcons/assets/eip155/56/slip44/714.png", - "metadata": {}, - "name": "Binance Coin", - "occurrences": 100, - "symbol": "BNB" - }, - "baseBpsFee": 87.5, - "quoteBpsFee": 87.5 - }, - "txFee": { - "amount": "76127858640000", - "asset": { - "address": "0x0000000000000000000000000000000000000000", - "aggregators": [], - "assetId": "eip155:56/slip44:714", - "chainId": 56, - "coingeckoId": "binancecoin", - "decimals": 18, - "iconUrl": "https://static.cx.metamask.io/api/v2/tokenIcons/assets/eip155/56/slip44/714.png", - "metadata": {}, - "name": "Binance Coin", - "occurrences": 100, - "symbol": "BNB" - }, - "maxFeePerGas": "60000000", - "maxPriorityFeePerGas": "60000000" - } - }, - "gasIncluded": true, - "gasIncluded7702": true, - "gasSponsored": false, - "minDestTokenAmount": "2273971327094067", - "priceData": { - "priceImpact": "-0.0012321096886118048", - "totalFeeAmountUsd": "0.01365334932300212", - "totalFromAmountUsd": "1.558462582923944", - "totalToAmountUsd": "1.4975957492038594" - }, - "protocols": ["okx"], - "requestId": "0xc2c93a15491884dcf2cf871fecff123275c6f03118accdab28e49a459b20ba40", - "slippage": 2, - "srcAsset": { - "address": "0x55d398326f99059ff775485246999027b3197955", - "aggregators": [ - "pancakeExtended", - "oneInch", - "liFi", - "trustWallet", - "socket", - "rubic", - "squid", - "rango", - "sonarwatch", - "sushiSwap" - ], - "assetId": "eip155:56/erc20:0x55d398326f99059ff775485246999027b3197955", - "chainId": 56, - "coingeckoId": "binance-bridged-usdt-bnb-smart-chain", - "decimals": 18, - "iconUrl": "https://static.cx.metamask.io/api/v2/tokenIcons/assets/eip155/56/erc20/0x55d398326f99059ff775485246999027b3197955.png", - "metadata": { - "storage": { - "approval": 2, - "balance": 1 - } - }, - "name": "Tether USD", - "occurrences": 11, - "symbol": "USDT" - }, - "srcChainId": 56, - "srcTokenAmount": "1558871007127811639", - "steps": [], - "walletAddress": "0xF25bd11C334507Fd007d584E2D0b7b2C6543f714" - }, - "slippagePercentage": 0, - "startTime": 1774464031302, - "status": { - "srcChain": { - "chainId": 56, - "txHash": "0xd2a2fbc4c49ea2bfa24d0f5f104a4cbfb60322c6268e6b905f191d20d2832460" - }, - "status": "PENDING" - }, - "txMetaId": "1a416310-287a-11f1-9dfe-552793792a79" - }, - "1d7e2060-1d6a-11f1-9ef0-3b0a0edc0d9a": { - "account": "0x30e8ccad5a980bdf30447f8c2c48e70989d9d294", - "approvalTxId": "1d6d7e90-1d6a-11f1-9ef0-3b0a0edc0d9a", - "batchId": "0x792cefdac527491eb5b5c3d0795c0f9e", - "estimatedProcessingTimeInSeconds": 0, - "hasApprovalTx": true, - "isStxEnabled": true, - "location": "Main View", - "originalTransactionId": "1d7e2060-1d6a-11f1-9ef0-3b0a0edc0d9a", - "pricingData": { - "amountSent": "0.643591576123604442", - "amountSentInUsd": "0.64301336460396714079448602036040746958611824", - "quotedGasAmount": "0.0000120041", - "quotedGasInUsd": "0.0077825508438985784", - "quotedReturnInUsd": "0.637290596189176547845516" - }, - "quote": { - "aggregator": "uniswap", - "aggregatorType": "AGG", - "bridgeId": "uniswap", - "bridges": ["uniswap"], - "destAsset": { - "address": "0x0000000000000000000000000000000000000000", - "aggregators": [], - "assetId": "eip155:56/slip44:714", - "chainId": 56, - "coingeckoId": "binancecoin", - "decimals": 18, - "iconUrl": "https://static.cx.metamask.io/api/v2/tokenIcons/assets/eip155/56/slip44/714.png", - "metadata": {}, - "name": "Binance Coin", - "occurrences": 100, - "symbol": "BNB" - }, - "destChainId": 56, - "destTokenAmount": "982981055846500", - "destWalletAddress": "0x30E8ccaD5A980BDF30447f8c2C48e70989D9d294", - "feeData": { - "metabridge": { - "amount": "8677008059174", - "asset": { - "address": "0x0000000000000000000000000000000000000000", - "aggregators": [], - "assetId": "eip155:56/slip44:714", - "chainId": 56, - "coingeckoId": "binancecoin", - "decimals": 18, - "iconUrl": "https://static.cx.metamask.io/api/v2/tokenIcons/assets/eip155/56/slip44/714.png", - "metadata": {}, - "name": "Binance Coin", - "occurrences": 100, - "symbol": "BNB" - }, - "baseBpsFee": 87.5, - "quoteBpsFee": 87.5 - } - }, - "gasIncluded": false, - "gasIncluded7702": false, - "gasSponsored": false, - "minDestTokenAmount": "963321434729570", - "priceData": { - "priceImpact": "0.0008097601979067252", - "totalFeeAmountUsd": "0.0056268661862131555", - "totalFromAmountUsd": "0.6435915761236044", - "totalToAmountUsd": "0.6374435550953382" - }, - "protocols": ["uniswap"], - "requestId": "0x30c1955aac9d5e4c292d94afdb65b64da0d10c7e20195127669fca582b5fb1df", - "slippage": 2, - "srcAsset": { - "address": "0x55d398326f99059ff775485246999027b3197955", - "aggregators": [ - "pancakeExtended", - "oneInch", - "liFi", - "socket", - "rubic", - "squid", - "rango", - "sonarwatch", - "sushiSwap" - ], - "assetId": "eip155:56/erc20:0x55d398326f99059ff775485246999027b3197955", - "chainId": 56, - "coingeckoId": "binance-bridged-usdt-bnb-smart-chain", - "decimals": 18, - "iconUrl": "https://static.cx.metamask.io/api/v2/tokenIcons/assets/eip155/56/erc20/0x55d398326f99059ff775485246999027b3197955.png", - "metadata": { - "storage": { - "approval": 2, - "balance": 1 - } - }, - "name": "Tether USD", - "occurrences": 11, - "symbol": "USDT" - }, - "srcChainId": 56, - "srcTokenAmount": "643591576123604442", - "steps": [], - "walletAddress": "0x30E8ccaD5A980BDF30447f8c2C48e70989D9d294" - }, - "slippagePercentage": 0, - "startTime": 1773247702151, - "status": { - "srcChain": { - "chainId": 56 - }, - "status": "PENDING" - }, - "txMetaId": "1d7e2060-1d6a-11f1-9ef0-3b0a0edc0d9a" - }, - "20d894c0-27d8-11f1-beee-7be08aed0cd0": { - "account": "0xf25bd11c334507fd007d584e2d0b7b2c6543f714", - "batchId": "0x18e887cb1f754d8aaf7d5ba2201169da", - "estimatedProcessingTimeInSeconds": 0, - "hasApprovalTx": false, - "isStxEnabled": false, - "location": "Main View", - "originalTransactionId": "20d894c0-27d8-11f1-beee-7be08aed0cd0", - "pricingData": { - "amountSent": "0.003128759898328475", - "amountSentInUsd": "1.9888965945835364069163952", - "quotedGasAmount": "0.0000097097", - "quotedGasInUsd": "0.0061722822753976384", - "quotedReturnInUsd": "1.96573398766324672503088889630227501519456448" - }, - "quote": { - "aggregator": "uniswap", - "aggregatorType": "AGG", - "bridgeId": "uniswap", - "bridges": ["uniswap"], - "destAsset": { - "address": "0x55d398326f99059ff775485246999027b3197955", - "aggregators": [ - "pancakeExtended", - "oneInch", - "liFi", - "trustWallet", - "socket", - "squid", - "rango", - "sonarwatch", - "sushiSwap" - ], - "assetId": "eip155:56/erc20:0x55d398326f99059ff775485246999027b3197955", - "chainId": 56, - "coingeckoId": "binance-bridged-usdt-bnb-smart-chain", - "decimals": 18, - "iconUrl": "https://static.cx.metamask.io/api/v2/tokenIcons/assets/eip155/56/erc20/0x55d398326f99059ff775485246999027b3197955.png", - "metadata": { - "storage": { - "approval": 2, - "balance": 1 - } - }, - "name": "Tether USD", - "occurrences": 9, - "symbol": "USDT" - }, - "destChainId": 56, - "destTokenAmount": "1966436005317427007", - "destWalletAddress": "0xF25bd11C334507Fd007d584E2D0b7b2C6543f714", - "feeData": { - "metabridge": { - "amount": "27376649110374", - "asset": { - "address": "0x0000000000000000000000000000000000000000", - "aggregators": [], - "assetId": "eip155:56/slip44:714", - "chainId": 56, - "coingeckoId": "binancecoin", - "decimals": 18, - "iconUrl": "https://static.cx.metamask.io/api/v2/tokenIcons/assets/eip155/56/slip44/714.png", - "metadata": {}, - "name": "Binance Coin", - "occurrences": 100, - "symbol": "BNB" - }, - "baseBpsFee": 87.5, - "quoteBpsFee": 87.5 - }, - "txFee": { - "amount": "19880370000000", - "asset": { - "address": "0x0000000000000000000000000000000000000000", - "aggregators": [], - "assetId": "eip155:56/slip44:714", - "chainId": 56, - "coingeckoId": "binancecoin", - "decimals": 18, - "iconUrl": "https://static.cx.metamask.io/api/v2/tokenIcons/assets/eip155/56/slip44/714.png", - "metadata": {}, - "name": "Binance Coin", - "occurrences": 100, - "symbol": "BNB" - }, - "maxFeePerGas": "60000000", - "maxPriorityFeePerGas": "60000000" - } - }, - "gasIncluded": true, - "gasIncluded7702": false, - "gasSponsored": false, - "minDestTokenAmount": "1927107285211078466", - "priceData": { - "priceImpact": "0.008267744185004297", - "totalFeeAmountUsd": "0.017453982640318944", - "totalFromAmountUsd": "1.994740873179319", - "totalToAmountUsd": "1.9656789274553739" - }, - "protocols": ["uniswap"], - "requestId": "0x6e4fbf72b6726e8b8e01ebdfc266b5825da48ac4e0bc57c2667afc181106c1c8", - "slippage": 2, - "srcAsset": { - "address": "0x0000000000000000000000000000000000000000", - "aggregators": [], - "assetId": "eip155:56/slip44:714", - "chainId": 56, - "coingeckoId": "binancecoin", - "decimals": 18, - "iconUrl": "https://static.cx.metamask.io/api/v2/tokenIcons/assets/eip155/56/slip44/714.png", - "metadata": {}, - "name": "Binance Coin", - "occurrences": 100, - "symbol": "BNB" - }, - "srcChainId": 56, - "srcTokenAmount": "3081502879218101", - "steps": [], - "walletAddress": "0xF25bd11C334507Fd007d584E2D0b7b2C6543f714" - }, - "slippagePercentage": 0, - "startTime": 1774394464098, - "status": { - "srcChain": { - "chainId": 56, - "txHash": "0xb11d5a22adb3b536ccdb1b49ec771537a8e2164e1077ab186bed124b62d395fa" - }, - "status": "FAILED" - }, - "txMetaId": "20d894c0-27d8-11f1-beee-7be08aed0cd0" - }, - "25d432c0-182b-11f1-b7d6-03d70bc40886": { - "account": "0x30e8ccad5a980bdf30447f8c2c48e70989d9d294", - "approvalTxId": "25456040-182b-11f1-b7d6-03d70bc40886", - "batchId": "0xec472db751954c829779c1ca2f5bcb9f", - "estimatedProcessingTimeInSeconds": 0, - "hasApprovalTx": true, - "isStxEnabled": true, - "pricingData": { - "amountSent": "1", - "amountSentInUsd": "0.99534762344306532453024", - "quotedGasAmount": "0.069617092116074084", - "quotedGasInUsd": "0.007230875622691523381192256", - "quotedReturnInUsd": "0.991003576754535701605215216" - }, - "quote": { - "aggregator": "uniswap", - "aggregatorType": "AGG", - "bridgeId": "uniswap", - "bridges": ["uniswap"], - "destAsset": { - "address": "0x0000000000000000000000000000000000000000", - "aggregators": [], - "assetId": "eip155:137/slip44:966", - "chainId": 137, - "coingeckoId": "matic-network", - "decimals": 18, - "iconUrl": "https://static.cx.metamask.io/api/v2/tokenIcons/assets/eip155/137/slip44/966.png", - "metadata": {}, - "name": "Polygon Ecosystem Token", - "occurrences": 100, - "symbol": "POL" - }, - "destChainId": 137, - "destTokenAmount": "9541138707154142399", - "destWalletAddress": "0x30E8ccaD5A980BDF30447f8c2C48e70989D9d294", - "feeData": { - "metabridge": { - "amount": "84221905359494321", - "asset": { - "address": "0x0000000000000000000000000000000000000000", - "aggregators": [], - "assetId": "eip155:137/slip44:966", - "chainId": 137, - "coingeckoId": "matic-network", - "decimals": 18, - "iconUrl": "https://static.cx.metamask.io/api/v2/tokenIcons/assets/eip155/137/slip44/966.png", - "metadata": {}, - "name": "Polygon Ecosystem Token", - "occurrences": 100, - "symbol": "POL" - }, - "baseBpsFee": 87.5, - "quoteBpsFee": 87.5 - } - }, - "gasIncluded7702": false, - "gasSponsored": false, - "minDestTokenAmount": "9350315933011059551", - "priceData": { - "priceImpact": "-0.0036698308077018197", - "totalFeeAmountUsd": "0.008750992854472898", - "totalFromAmountUsd": "0.9964566418", - "totalToAmountUsd": "0.9913624762281439" - }, - "protocols": ["uniswap"], - "requestId": "0x0fbae219631485604e374fafe45f37636d9ef7c436f7841b92a284e1257fae38", - "slippage": 2, - "srcAsset": { - "address": "0xc2132d05d31c914a87c6611c10748aeb04b58e8f", - "aggregators": [ - "quickswap", - "oneInch", - "liFi", - "socket", - "squid", - "rango", - "sonarwatch", - "sushiSwap" - ], - "assetId": "eip155:137/erc20:0xc2132d05d31c914a87c6611c10748aeb04b58e8f", - "chainId": 137, - "coingeckoId": "polygon-bridged-usdt-polygon", - "decimals": 6, - "iconUrl": "https://static.cx.metamask.io/api/v2/tokenIcons/assets/eip155/137/erc20/0xc2132d05d31c914a87c6611c10748aeb04b58e8f.png", - "metadata": { - "storage": { - "approval": 1, - "balance": 0 - } - }, - "name": "Tether USD", - "occurrences": 8, - "symbol": "USDT" - }, - "srcChainId": 137, - "srcTokenAmount": "1000000", - "steps": [], - "walletAddress": "0x30E8ccaD5A980BDF30447f8c2C48e70989D9d294" - }, - "slippagePercentage": 0, - "startTime": 1772670901235, - "status": { - "srcChain": { - "chainId": 137 - }, - "status": "PENDING" - }, - "txMetaId": "25d432c0-182b-11f1-b7d6-03d70bc40886" - }, - "26540ce0-1414-11f1-b6bb-f92a9c5664e8": { - "account": "0x30e8ccad5a980bdf30447f8c2c48e70989d9d294", - "approvalTxId": "264fa010-1414-11f1-b6bb-f92a9c5664e8", - "batchId": "0xf26743986b894310a6353002a642a0c5", - "estimatedProcessingTimeInSeconds": 0, - "hasApprovalTx": true, - "isStxEnabled": true, - "pricingData": { - "amountSent": "3", - "amountSentInUsd": "3", - "quotedGasAmount": "0.0000134238", - "quotedGasInUsd": "0.008187981048", - "quotedReturnInUsd": "2.97491629135328818008" - }, - "quote": { - "aggregator": "1inch", - "aggregatorType": "AGG", - "bridgeId": "1inch", - "bridges": ["1inch"], - "destAsset": { - "address": "0x0000000000000000000000000000000000000000", - "aggregators": [], - "assetId": "eip155:56/slip44:714", - "chainId": 56, - "coingeckoId": "binancecoin", - "decimals": 18, - "iconUrl": "https://static.cx.metamask.io/api/v2/tokenIcons/assets/eip155/56/slip44/714.png", - "metadata": {}, - "name": "Binance Coin", - "occurrences": 100, - "symbol": "BNB" - }, - "destChainId": 56, - "destTokenAmount": "4877231771514998", - "destWalletAddress": "0x30E8ccaD5A980BDF30447f8c2C48e70989D9d294", - "feeData": { - "metabridge": { - "amount": "43052487264319", - "asset": { - "address": "0x0000000000000000000000000000000000000000", - "aggregators": [], - "assetId": "eip155:56/slip44:714", - "chainId": 56, - "coingeckoId": "binancecoin", - "decimals": 18, - "iconUrl": "https://static.cx.metamask.io/api/v2/tokenIcons/assets/eip155/56/slip44/714.png", - "metadata": {}, - "name": "Binance Coin", - "occurrences": 100, - "symbol": "BNB" - }, - "baseBpsFee": 87.5, - "quoteBpsFee": 87.5 - } - }, - "gasIncluded7702": false, - "gasSponsored": false, - "minDestTokenAmount": "4779687136084698", - "priceData": { - "priceImpact": "-0.00043782169242661146", - "totalFeeAmountUsd": "0.026259864606871377", - "totalFromAmountUsd": "2.9998139999999998", - "totalToAmountUsd": "2.9748675190355733" - }, - "protocols": ["1inch"], - "requestId": "0x71ab39be45256634bbb6d97e3697f585459efb9e7a4be9d2a9606cbb0df4d736", - "slippage": 2, - "srcAsset": { - "address": "0x55d398326f99059ff775485246999027b3197955", - "aggregators": [ - "pancakeExtended", - "oneInch", - "liFi", - "socket", - "squid", - "rango", - "sonarwatch", - "sushiSwap" - ], - "assetId": "eip155:56/erc20:0x55d398326f99059ff775485246999027b3197955", - "chainId": 56, - "coingeckoId": "binance-bridged-usdt-bnb-smart-chain", - "decimals": 18, - "iconUrl": "https://static.cx.metamask.io/api/v2/tokenIcons/assets/eip155/56/erc20/0x55d398326f99059ff775485246999027b3197955.png", - "metadata": { - "storage": { - "approval": 2, - "balance": 1 - } - }, - "name": "Tether USD", - "occurrences": 8, - "symbol": "USDT" - }, - "srcChainId": 56, - "srcTokenAmount": "3000000000000000000", - "steps": [], - "walletAddress": "0x30E8ccaD5A980BDF30447f8c2C48e70989D9d294" - }, - "slippagePercentage": 0, - "startTime": 1772221219926, - "status": { - "srcChain": { - "chainId": 56 - }, - "status": "PENDING" - }, - "txMetaId": "26540ce0-1414-11f1-b6bb-f92a9c5664e8" - }, - "291f2100-4fef-11f1-97dc-cb72b8adab55": { - "account": "0x141d32a89a1e0a5ef360034a2f60a4b917c18838", - "batchId": "0x19e28ec4d87", - "estimatedProcessingTimeInSeconds": 0, - "hasApprovalTx": true, - "isStxEnabled": false, - "location": "Main View", - "originalTransactionId": "291f2100-4fef-11f1-97dc-cb72b8adab55", - "pricingData": { - "amountSent": "1.315", - "amountSentInUsd": "13.846950000000051735816332283", - "quotedGasAmount": "0.0000124966", - "quotedGasInUsd": "0.0084822821380720418", - "quotedReturnInUsd": "1.30306426725057752300979507704856396526799195" - }, - "quote": { - "aggregator": "uniswap", - "aggregatorType": "AGG", - "bridgeId": "uniswap", - "bridges": ["uniswap"], - "destAsset": { - "address": "0x55d398326f99059ff775485246999027b3197955", - "aggregators": [ - "pancakeExtended", - "oneInch", - "liFi", - "trustWallet", - "socket", - "rubic", - "squid", - "rango", - "sonarwatch", - "sushiSwap" - ], - "assetId": "eip155:56/erc20:0x55d398326f99059ff775485246999027b3197955", - "chainId": 56, - "coingeckoId": "binance-bridged-usdt-bnb-smart-chain", - "decimals": 18, - "iconUrl": "https://static.cx.metamask.io/api/v2/tokenIcons/assets/eip155/56/erc20/0x55d398326f99059ff775485246999027b3197955.png", - "metadata": { - "storage": { - "approval": 2, - "balance": 1 - } - }, - "name": "Tether USD", - "occurrences": 11, - "symbol": "USDT" - }, - "destChainId": 56, - "destTokenAmount": "1303383596231645435", - "destWalletAddress": "0x141d32a89a1e0a5ef360034a2f60a4b917c18838", - "feeData": { - "metabridge": { - "amount": "11506250000000000", - "asset": { - "address": "0x1af3f329e8be154074d8769d1ffa4ee058b1dbc3", - "aggregators": [ - "pancakeExtended", - "oneInch", - "liFi", - "trustWallet", - "socket", - "rubic", - "rango", - "sonarwatch", - "sushiSwap" - ], - "assetId": "eip155:56/erc20:0x1af3f329e8be154074d8769d1ffa4ee058b1dbc3", - "chainId": 56, - "coingeckoId": "binance-peg-dai", - "decimals": 18, - "iconUrl": "https://static.cx.metamask.io/api/v2/tokenIcons/assets/eip155/56/erc20/0x1af3f329e8be154074d8769d1ffa4ee058b1dbc3.png", - "metadata": { - "storage": { - "approval": 2, - "balance": 1 - } - }, - "name": "BNB pegged Dai Token", - "occurrences": 12, - "symbol": "DAI" - }, - "baseBpsFee": 87.5, - "quoteBpsFee": 87.5, - "usd": "0.011504996584542227" - } - }, - "gasIncluded": false, - "gasIncluded7702": false, - "gasSponsored": false, - "minDestTokenAmount": "1277315924307012526", - "priceData": { - "priceImpact": "0.0001745753113370159", - "totalFeeAmountUsd": "0.011504996584542227", - "totalFromAmountUsd": "1.3148567525191115", - "totalToAmountUsd": "1.3031242228959954" - }, - "protocols": ["uniswap"], - "requestId": "0xb8e6d170201a3b869e71cd6c14ff338b62caaac110058d1145f491790371ef28", - "slippage": 2, - "srcAsset": { - "address": "0x1af3f329e8be154074d8769d1ffa4ee058b1dbc3", - "aggregators": [ - "pancakeExtended", - "oneInch", - "liFi", - "trustWallet", - "socket", - "rubic", - "rango", - "sonarwatch", - "sushiSwap" - ], - "assetId": "eip155:56/erc20:0x1af3f329e8be154074d8769d1ffa4ee058b1dbc3", - "chainId": 56, - "coingeckoId": "binance-peg-dai", - "decimals": 18, - "iconUrl": "https://static.cx.metamask.io/api/v2/tokenIcons/assets/eip155/56/erc20/0x1af3f329e8be154074d8769d1ffa4ee058b1dbc3.png", - "metadata": { - "storage": { - "approval": 2, - "balance": 1 - } - }, - "name": "BNB pegged Dai Token", - "occurrences": 12, - "symbol": "DAI" - }, - "srcChainId": 56, - "srcTokenAmount": "1303493750000000000", - "steps": [], - "walletAddress": "0x141d32a89a1e0a5ef360034a2f60a4b917c18838" - }, - "slippagePercentage": 0, - "startTime": 1778802402949, - "status": { - "srcChain": { - "chainId": 56, - "txHash": "0x85c243aeeb7065fbc8f33c0f1a5dd352b911420280c4ff947264d8fb9fdbc6b1" - }, - "status": "COMPLETE" - }, - "tokenSecurityTypeDestination": null, - "txMetaId": "291f2100-4fef-11f1-97dc-cb72b8adab55" - }, - "2U8HzdTkKqtGYLSkPzx86kSSuW3DsEKQWe2nnBXFHw1ZfL5q6dDwKNBZCuesPXShvTG6SADEFSHWiZzfhHpNBgUo": { - "account": "8jKM7u4xsyvDpnqL5DQMVrh8AXxZKJPKJw5QsM7KEF8J", - "completionTime": 1772221203903, - "estimatedProcessingTimeInSeconds": 3, - "hasApprovalTx": false, - "isStxEnabled": false, - "pricingData": { - "amountSent": "0.001", - "amountSentInUsd": "0.08154", - "quotedGasAmount": "0.000005", - "quotedGasInUsd": "0.0004077", - "quotedReturnInUsd": "0.028805433409474664" - }, - "quote": { - "aggregator": "relay", - "bridgeId": "relay", - "bridges": ["Relay"], - "destAsset": { - "address": "0x55d398326f99059ff775485246999027b3197955", - "aggregators": [ - "pancakeExtended", - "oneInch", - "liFi", - "socket", - "squid", - "rango", - "sonarwatch", - "sushiSwap" - ], - "assetId": "eip155:56/erc20:0x55d398326f99059ff775485246999027b3197955", - "chainId": 56, - "coingeckoId": "binance-bridged-usdt-bnb-smart-chain", - "decimals": 18, - "iconUrl": "https://static.cx.metamask.io/api/v2/tokenIcons/assets/eip155/56/erc20/0x55d398326f99059ff775485246999027b3197955.png", - "metadata": { - "storage": { - "approval": 2, - "balance": 1 - } - }, - "name": "Tether USD", - "occurrences": 8, - "symbol": "USDT" - }, - "destChainId": 56, - "destTokenAmount": "28805433409474664", - "feeData": { - "metabridge": { - "amount": "8750", - "asset": { - "address": "0x0000000000000000000000000000000000000000", - "aggregators": [], - "assetId": "solana:5eykt4UsFv8P8NJdTREpY1vzqKqZKvdp/slip44:501", - "chainId": 1151111081099710, - "decimals": 9, - "iconUrl": "https://static.cx.metamask.io/api/v2/tokenIcons/assets/solana/5eykt4UsFv8P8NJdTREpY1vzqKqZKvdp/slip44/501.png", - "metadata": {}, - "name": "SOL", - "occurrences": 100, - "symbol": "SOL" - }, - "baseBpsFee": 87.5, - "quoteBpsFee": 87.5 - } - }, - "minDestTokenAmount": "27388206085728511", - "priceData": { - "priceImpact": "0.6436362014499166", - "totalFeeAmountUsd": "0.000713475", - "totalFromAmountUsd": "0.08154", - "totalToAmountUsd": "0.028803647472603278" - }, - "protocols": ["Relay"], - "requestId": "0x29af14cd1dcc0cb23b00ea3456e8b04d9f42627eec086a2a27d1e9d986152f6e", - "slippage": 2, - "srcAsset": { - "address": "0x0000000000000000000000000000000000000000", - "aggregators": [], - "assetId": "solana:5eykt4UsFv8P8NJdTREpY1vzqKqZKvdp/slip44:501", - "chainId": 1151111081099710, - "decimals": 9, - "iconUrl": "https://static.cx.metamask.io/api/v2/tokenIcons/assets/solana/5eykt4UsFv8P8NJdTREpY1vzqKqZKvdp/slip44/501.png", - "metadata": {}, - "name": "SOL", - "occurrences": 100, - "symbol": "SOL" - }, - "srcChainId": 1151111081099710, - "srcTokenAmount": "991250", - "steps": [ - { - "action": "bridge", - "destAmount": "28805433409474664", - "destAsset": { - "address": "0x55d398326f99059ff775485246999027b3197955", - "aggregators": [ - "pancakeExtended", - "oneInch", - "liFi", - "socket", - "squid", - "rango", - "sonarwatch", - "sushiSwap" - ], - "assetId": "eip155:56/erc20:0x55d398326f99059ff775485246999027b3197955", - "chainId": 56, - "coingeckoId": "binance-bridged-usdt-bnb-smart-chain", - "decimals": 18, - "iconUrl": "https://static.cx.metamask.io/api/v2/tokenIcons/assets/eip155/56/erc20/0x55d398326f99059ff775485246999027b3197955.png", - "metadata": { - "storage": { - "approval": 2, - "balance": 1 - } - }, - "name": "Tether USD", - "occurrences": 8, - "symbol": "USDT" - }, - "destChainId": 56, - "protocol": { - "name": "relay" - }, - "srcAmount": "991250", - "srcAsset": { - "address": "0x0000000000000000000000000000000000000000", - "aggregators": [], - "assetId": "solana:5eykt4UsFv8P8NJdTREpY1vzqKqZKvdp/slip44:501", - "chainId": 1151111081099710, - "decimals": 9, - "iconUrl": "https://static.cx.metamask.io/api/v2/tokenIcons/assets/solana/5eykt4UsFv8P8NJdTREpY1vzqKqZKvdp/slip44/501.png", - "metadata": {}, - "name": "SOL", - "occurrences": 100, - "symbol": "SOL" - }, - "srcChainId": 1151111081099710 - } - ] - }, - "slippagePercentage": 0, - "startTime": 1772221193255, - "status": { - "bridge": "relay", - "destChain": { - "chainId": 56, - "txHash": "0x38017d291b8c3156078457690dfc60e81f5da9a36b061738775d9475a9408956" - }, - "isExpectedToken": true, - "isUnrecognizedRouterAddress": false, - "srcChain": { - "chainId": 1151111081099710, - "txHash": "2U8HzdTkKqtGYLSkPzx86kSSuW3DsEKQWe2nnBXFHw1ZfL5q6dDwKNBZCuesPXShvTG6SADEFSHWiZzfhHpNBgUo" - }, - "status": "COMPLETE" - }, - "txMetaId": "2U8HzdTkKqtGYLSkPzx86kSSuW3DsEKQWe2nnBXFHw1ZfL5q6dDwKNBZCuesPXShvTG6SADEFSHWiZzfhHpNBgUo" - }, - "2ae59880-176d-11f1-b7d6-03d70bc40886": { - "account": "0x30e8ccad5a980bdf30447f8c2c48e70989d9d294", - "approvalTxId": "2adff330-176d-11f1-b7d6-03d70bc40886", - "batchId": "0x5a75b1c299254b11b78da95e11b9baf4", - "estimatedProcessingTimeInSeconds": 0, - "hasApprovalTx": true, - "isStxEnabled": true, - "pricingData": { - "amountSent": "4.32976", - "amountSentInUsd": "4.32794503896761020279883728724544", - "quotedGasAmount": "0.000616846771445724", - "quotedGasInUsd": "1.223710516755164288596106664", - "quotedReturnInUsd": "2.616058666160591661870509934" - }, - "quote": { - "aggregator": "uniswap", - "aggregatorType": "AGG", - "bridgeId": "uniswap", - "bridges": ["uniswap"], - "destAsset": { - "address": "0x0000000000000000000000000000000000000000", - "aggregators": [], - "assetId": "eip155:1/slip44:60", - "chainId": 1, - "coingeckoId": "ethereum", - "decimals": 18, - "iconUrl": "https://static.cx.metamask.io/api/v2/tokenIcons/assets/eip155/1/slip44/60.png", - "metadata": {}, - "name": "Ether", - "occurrences": 100, - "symbol": "ETH" - }, - "destChainId": 1, - "destTokenAmount": "1318700231826669", - "destWalletAddress": "0x30E8ccaD5A980BDF30447f8c2C48e70989D9d294", - "feeData": { - "metabridge": { - "amount": "19101080070552", - "asset": { - "address": "0x0000000000000000000000000000000000000000", - "aggregators": [], - "assetId": "eip155:1/slip44:60", - "chainId": 1, - "coingeckoId": "ethereum", - "decimals": 18, - "iconUrl": "https://static.cx.metamask.io/api/v2/tokenIcons/assets/eip155/1/slip44/60.png", - "metadata": {}, - "name": "Ether", - "occurrences": 100, - "symbol": "ETH" - }, - "baseBpsFee": 87.5, - "quoteBpsFee": 87.5 - }, - "txFee": { - "amount": "845179267594512", - "asset": { - "address": "0x0000000000000000000000000000000000000000", - "aggregators": [], - "assetId": "eip155:1/slip44:60", - "chainId": 1, - "coingeckoId": "ethereum", - "decimals": 18, - "iconUrl": "https://static.cx.metamask.io/api/v2/tokenIcons/assets/eip155/1/slip44/60.png", - "metadata": {}, - "name": "Ether", - "occurrences": 100, - "symbol": "ETH" - }, - "maxFeePerGas": "2218198470", - "maxPriorityFeePerGas": "2100000001" - } - }, - "gasIncluded": true, - "gasIncluded7702": false, - "minDestTokenAmount": "1292326227190135", - "priceData": { - "priceImpact": "-0.0008327497105783305", - "totalFeeAmountUsd": "0.03790762148641609", - "totalFromAmountUsd": "4.32869487904", - "totalToAmountUsd": "2.6170661060785707" - }, - "protocols": ["uniswap"], - "requestId": "0x29e9f4ff93930a9b467398113a2c9187117727182108bc49cbf8da1ccc2c694a", - "srcAsset": { - "address": "0xaca92e438df0b2401ff60da7e4337b687a2435da", - "aggregators": ["metamask", "liFi", "socket", "rango"], - "assetId": "eip155:1/erc20:0xaca92e438df0b2401ff60da7e4337b687a2435da", - "chainId": 1, - "decimals": 6, - "iconUrl": "https://static.cx.metamask.io/api/v2/tokenIcons/assets/eip155/1/erc20/0xaca92e438df0b2401ff60da7e4337b687a2435da.png", - "metadata": {}, - "name": "MetaMask USD", - "occurrences": 4, - "symbol": "MUSD" - }, - "srcChainId": 1, - "srcTokenAmount": "4329760", - "steps": [], - "walletAddress": "0x30E8ccaD5A980BDF30447f8c2C48e70989D9d294" - }, - "slippagePercentage": 0, - "startTime": 1772589306337, - "status": { - "srcChain": { - "chainId": 1 - }, - "status": "PENDING" - }, - "txMetaId": "2ae59880-176d-11f1-b7d6-03d70bc40886" - }, - "2cba9e10-286d-11f1-9e22-5fbe36423c6b": { - "account": "0xf25bd11c334507fd007d584e2d0b7b2c6543f714", - "batchId": "0xbc150d5f82e64b6aa5a5c14754345c86", - "estimatedProcessingTimeInSeconds": 0, - "hasApprovalTx": false, - "isStxEnabled": false, - "location": "Main View", - "originalTransactionId": "2cba9e10-286d-11f1-9e22-5fbe36423c6b", - "pricingData": { - "amountSent": "0.003115915098328475", - "amountSentInUsd": "2.017870521978341002447416025", - "quotedGasAmount": "0.0000097131", - "quotedGasInUsd": "0.0062902157306988489", - "quotedReturnInUsd": "1.98597973339818206456170127434490429010262415" - }, - "quote": { - "aggregator": "uniswap", - "aggregatorType": "AGG", - "bridgeId": "uniswap", - "bridges": ["uniswap"], - "destAsset": { - "address": "0x55d398326f99059ff775485246999027b3197955", - "aggregators": [ - "pancakeExtended", - "oneInch", - "liFi", - "trustWallet", - "socket", - "squid", - "rango", - "sonarwatch", - "sushiSwap" - ], - "assetId": "eip155:56/erc20:0x55d398326f99059ff775485246999027b3197955", - "chainId": 56, - "coingeckoId": "binance-bridged-usdt-bnb-smart-chain", - "decimals": 18, - "iconUrl": "https://static.cx.metamask.io/api/v2/tokenIcons/assets/eip155/56/erc20/0x55d398326f99059ff775485246999027b3197955.png", - "metadata": { - "storage": { - "approval": 2, - "balance": 1 - } - }, - "name": "Tether USD", - "occurrences": 9, - "symbol": "USDT" - }, - "destChainId": 56, - "destTokenAmount": "1985984799263957533", - "destWalletAddress": "0xF25bd11C334507Fd007d584E2D0b7b2C6543f714", - "feeData": { - "metabridge": { - "amount": "27264257110374", - "asset": { - "address": "0x0000000000000000000000000000000000000000", - "aggregators": [], - "assetId": "eip155:56/slip44:714", - "chainId": 56, - "coingeckoId": "binancecoin", - "decimals": 18, - "iconUrl": "https://static.cx.metamask.io/api/v2/tokenIcons/assets/eip155/56/slip44/714.png", - "metadata": {}, - "name": "Binance Coin", - "occurrences": 100, - "symbol": "BNB" - }, - "baseBpsFee": 87.5, - "quoteBpsFee": 87.5 - }, - "txFee": { - "amount": "19886490000000", - "asset": { - "address": "0x0000000000000000000000000000000000000000", - "aggregators": [], - "assetId": "eip155:56/slip44:714", - "chainId": 56, - "coingeckoId": "binancecoin", - "decimals": 18, - "iconUrl": "https://static.cx.metamask.io/api/v2/tokenIcons/assets/eip155/56/slip44/714.png", - "metadata": {}, - "name": "Binance Coin", - "occurrences": 100, - "symbol": "BNB" - }, - "maxFeePerGas": "60000000", - "maxPriorityFeePerGas": "60000000" - } - }, - "gasIncluded": true, - "gasIncluded7702": false, - "gasSponsored": false, - "minDestTokenAmount": "1946265103278678382", - "priceData": { - "priceImpact": "0.010015481690246082", - "totalFeeAmountUsd": "0.017657968760104822", - "totalFromAmountUsd": "2.01805357258342", - "totalToAmountUsd": "1.9850911061042888" - }, - "protocols": ["uniswap"], - "requestId": "0x5dbecafcfb715518926cdde04e62bdfc9ae2b192cfa7c0529497a8c1c2cbad94", - "slippage": 2, - "srcAsset": { - "address": "0x0000000000000000000000000000000000000000", - "aggregators": [], - "assetId": "eip155:56/slip44:714", - "chainId": 56, - "coingeckoId": "binancecoin", - "decimals": 18, - "iconUrl": "https://static.cx.metamask.io/api/v2/tokenIcons/assets/eip155/56/slip44/714.png", - "metadata": {}, - "name": "Binance Coin", - "occurrences": 100, - "symbol": "BNB" - }, - "srcChainId": 56, - "srcTokenAmount": "3068764351218101", - "steps": [], - "walletAddress": "0xF25bd11C334507Fd007d584E2D0b7b2C6543f714" - }, - "slippagePercentage": 0, - "startTime": 1774458478965, - "status": { - "srcChain": { - "chainId": 56, - "txHash": "0x02b9e0af7542d82ea0709ba9e13e3067a9ce5c276e78083d6b43640ae937bec8" - }, - "status": "FAILED" - }, - "txMetaId": "2cba9e10-286d-11f1-9e22-5fbe36423c6b" - }, - "313fcfe0-28a0-11f1-a662-213b64721d37": { - "account": "0x141d32a89a1e0a5ef360034a2f60a4b917c18838", - "batchId": "0xeddfc9d2b0794bbb98b874c5ee113c7f", - "estimatedProcessingTimeInSeconds": 0, - "hasApprovalTx": true, - "isStxEnabled": true, - "location": "Main View", - "originalTransactionId": "313fcfe0-28a0-11f1-a662-213b64721d37", - "pricingData": { - "amountSent": "7.823303", - "amountSentInUsd": "7.82325587831063387451192892236524", - "quotedGasAmount": "0.000007278581254483", - "quotedGasInUsd": "0.015829524124620024968006935", - "quotedReturnInUsd": "7.74371321489885963609069801" - }, - "quote": { - "aggregator": "pancakeswap", - "aggregatorType": "AGG", - "bridgeId": "pancakeswap", - "bridges": ["pancakeswap"], - "destAsset": { - "address": "0x0000000000000000000000000000000000000000", - "aggregators": [], - "assetId": "eip155:8453/slip44:60", - "chainId": 8453, - "coingeckoId": "ethereum", - "decimals": 18, - "iconUrl": "https://static.cx.metamask.io/api/v2/tokenIcons/assets/eip155/8453/slip44/60.png", - "metadata": {}, - "name": "Ether", - "occurrences": 100, - "symbol": "ETH" - }, - "destChainId": 8453, - "destTokenAmount": "3560640572788418", - "destWalletAddress": "0x141d32a89a1e0a5Ef360034a2f60a4B917c18838", - "feeData": { - "metabridge": { - "amount": "31477637800765", - "asset": { - "address": "0x0000000000000000000000000000000000000000", - "aggregators": [], - "assetId": "eip155:8453/slip44:60", - "chainId": 8453, - "coingeckoId": "ethereum", - "decimals": 18, - "iconUrl": "https://static.cx.metamask.io/api/v2/tokenIcons/assets/eip155/8453/slip44/60.png", - "metadata": {}, - "name": "Ether", - "occurrences": 100, - "symbol": "ETH" - }, - "baseBpsFee": 87.5, - "quoteBpsFee": 87.5 - }, - "txFee": { - "amount": "5326109498336", - "asset": { - "address": "0x0000000000000000000000000000000000000000", - "aggregators": [], - "assetId": "eip155:8453/slip44:60", - "chainId": 8453, - "coingeckoId": "ethereum", - "decimals": 18, - "iconUrl": "https://static.cx.metamask.io/api/v2/tokenIcons/assets/eip155/8453/slip44/60.png", - "metadata": {}, - "name": "Ether", - "occurrences": 100, - "symbol": "ETH" - }, - "maxFeePerGas": "6625001", - "maxPriorityFeePerGas": "1000001" - } - }, - "gasIncluded": true, - "gasIncluded7702": true, - "gasSponsored": false, - "minDestTokenAmount": "3489427761332649", - "priceData": { - "priceImpact": "0.00007697241032109974", - "totalFeeAmountUsd": "0.06843993921193528", - "totalFromAmountUsd": "7.822309440519001", - "totalToAmountUsd": "7.74168715897949" - }, - "protocols": ["pancakeswap"], - "requestId": "0x0022588301911b4b507cfbddb1d1c838a69e3c350a98aa5ee02c2678d9c7f7f8", - "slippage": 2, - "srcAsset": { - "address": "0x833589fcd6edb6e08f4c7c32d4f71b54bda02913", - "aggregators": [ - "coinGecko", - "oneInch", - "liFi", - "socket", - "rubic", - "squid", - "rango", - "sonarwatch", - "sushiSwap" - ], - "assetId": "eip155:8453/erc20:0x833589fcd6edb6e08f4c7c32d4f71b54bda02913", - "chainId": 8453, - "coingeckoId": "usd-coin", - "decimals": 6, - "iconUrl": "https://static.cx.metamask.io/api/v2/tokenIcons/assets/eip155/8453/erc20/0x833589fcd6edb6e08f4c7c32d4f71b54bda02913.png", - "metadata": { - "storage": { - "approval": 10, - "balance": 9 - } - }, - "name": "USD Coin", - "occurrences": 9, - "symbol": "USDC" - }, - "srcChainId": 8453, - "srcTokenAmount": "7823303", - "steps": [], - "walletAddress": "0x141d32a89a1e0a5Ef360034a2f60a4B917c18838" - }, - "slippagePercentage": 0, - "startTime": 1774480390970, - "status": { - "srcChain": { - "chainId": 8453, - "txHash": "0x6dc5fcccf8766db089bfd2406a427ddf23f1a76b0c3293b34165f5c6c59ba068" - }, - "status": "PENDING" - }, - "txMetaId": "313fcfe0-28a0-11f1-a662-213b64721d37" - }, - "33d619e0-23b8-11f1-b3e8-8507d9387e55": { - "account": "0x30e8ccad5a980bdf30447f8c2c48e70989d9d294", - "batchId": "0xff4ce6da56254b4d8339796dff1dd0cf", - "completionTime": 1774237800839, - "estimatedProcessingTimeInSeconds": 2, - "hasApprovalTx": true, - "isStxEnabled": true, - "location": "Main View", - "originalTransactionId": "33d619e0-23b8-11f1-b3e8-8507d9387e55", - "pricingData": { - "amountSent": "12.425413", - "amountSentInUsd": "12.4242698654225553525541371954", - "quotedGasAmount": "0.042905012955343056", - "quotedGasInUsd": "0.004044707143125762211473312", - "quotedReturnInUsd": "12.243294376963691444733955716" - }, - "quote": { - "aggregator": "relay", - "bridgeId": "relay", - "bridges": ["Relay"], - "destAsset": { - "address": "0x0000000000000000000000000000000000000000", - "aggregators": [], - "assetId": "eip155:143/slip44:268435779", - "chainId": 143, - "decimals": 18, - "iconUrl": "https://static.cx.metamask.io/api/v2/tokenIcons/assets/eip155/143/slip44/268435779.png", - "metadata": {}, - "name": "Mon", - "occurrences": 1, - "symbol": "MON" - }, - "destChainId": 143, - "destTokenAmount": "555851765574107630106", - "feeData": { - "metabridge": { - "amount": "108722", - "asset": { - "address": "0xc2132d05d31c914a87c6611c10748aeb04b58e8f", - "aggregators": [ - "quickswap", - "oneInch", - "liFi", - "socket", - "rubic", - "squid", - "rango", - "sonarwatch", - "sushiSwap" - ], - "assetId": "eip155:137/erc20:0xc2132d05d31c914a87c6611c10748aeb04b58e8f", - "chainId": 137, - "coingeckoId": "polygon-bridged-usdt-polygon", - "decimals": 6, - "iconUrl": "https://static.cx.metamask.io/api/v2/tokenIcons/assets/eip155/137/erc20/0xc2132d05d31c914a87c6611c10748aeb04b58e8f.png", - "metadata": { - "storage": { - "approval": 1, - "balance": 0 - } - }, - "name": "Tether USD", - "occurrences": 9, - "symbol": "USDT" - }, - "baseBpsFee": 87.5, - "quoteBpsFee": 87.5 - }, - "txFee": { - "amount": "9398", - "asset": { - "address": "0xc2132d05d31c914a87c6611c10748aeb04b58e8f", - "aggregators": [ - "quickswap", - "oneInch", - "liFi", - "socket", - "rubic", - "squid", - "rango", - "sonarwatch", - "sushiSwap" - ], - "assetId": "eip155:137/erc20:0xc2132d05d31c914a87c6611c10748aeb04b58e8f", - "chainId": 137, - "coingeckoId": "polygon-bridged-usdt-polygon", - "decimals": 6, - "iconUrl": "https://static.cx.metamask.io/api/v2/tokenIcons/assets/eip155/137/erc20/0xc2132d05d31c914a87c6611c10748aeb04b58e8f.png", - "metadata": { - "storage": { - "approval": 1, - "balance": 0 - } - }, - "name": "Tether USD", - "occurrences": 9, - "symbol": "USDT" - }, - "maxFeePerGas": "223435142029", - "maxPriorityFeePerGas": "110663646934" - } - }, - "gasIncluded": true, - "gasIncluded7702": true, - "minDestTokenAmount": "544734730262625472707", - "priceData": { - "priceImpact": "0.014021239243430085", - "totalFeeAmountUsd": "0.108711997576", - "totalFromAmountUsd": "12.424269862004001", - "totalToAmountUsd": "12.240800825943326" - }, - "protocols": ["Relay"], - "requestId": "0x8ff3422449046e7171e36ae397a99cb840c7118b84c8f510b938cdc522af267b", - "srcAsset": { - "address": "0xc2132d05d31c914a87c6611c10748aeb04b58e8f", - "aggregators": [ - "quickswap", - "oneInch", - "liFi", - "socket", - "rubic", - "squid", - "rango", - "sonarwatch", - "sushiSwap" - ], - "assetId": "eip155:137/erc20:0xc2132d05d31c914a87c6611c10748aeb04b58e8f", - "chainId": 137, - "coingeckoId": "polygon-bridged-usdt-polygon", - "decimals": 6, - "iconUrl": "https://static.cx.metamask.io/api/v2/tokenIcons/assets/eip155/137/erc20/0xc2132d05d31c914a87c6611c10748aeb04b58e8f.png", - "metadata": { - "storage": { - "approval": 1, - "balance": 0 - } - }, - "name": "Tether USD", - "occurrences": 9, - "symbol": "USDT" - }, - "srcChainId": 137, - "srcTokenAmount": "12307293", - "steps": [ - { - "action": "bridge", - "destAmount": "555851765574107630106", - "destAsset": { - "address": "0x0000000000000000000000000000000000000000", - "aggregators": [], - "assetId": "eip155:143/slip44:268435779", - "chainId": 143, - "decimals": 18, - "iconUrl": "https://static.cx.metamask.io/api/v2/tokenIcons/assets/eip155/143/slip44/268435779.png", - "metadata": {}, - "name": "Mon", - "occurrences": 1, - "symbol": "MON" - }, - "destChainId": 143, - "protocol": { - "name": "relay" - }, - "srcAmount": "12307293", - "srcAsset": { - "address": "0xc2132d05d31c914a87c6611c10748aeb04b58e8f", - "aggregators": [ - "quickswap", - "oneInch", - "liFi", - "socket", - "rubic", - "squid", - "rango", - "sonarwatch", - "sushiSwap" - ], - "assetId": "eip155:137/erc20:0xc2132d05d31c914a87c6611c10748aeb04b58e8f", - "chainId": 137, - "coingeckoId": "polygon-bridged-usdt-polygon", - "decimals": 6, - "iconUrl": "https://static.cx.metamask.io/api/v2/tokenIcons/assets/eip155/137/erc20/0xc2132d05d31c914a87c6611c10748aeb04b58e8f.png", - "metadata": { - "storage": { - "approval": 1, - "balance": 0 - } - }, - "name": "Tether USD", - "occurrences": 9, - "symbol": "USDT" - }, - "srcChainId": 137 - } - ] - }, - "slippagePercentage": 0, - "startTime": 1773940947456, - "status": { - "bridge": "relay", - "destChain": { - "chainId": 143, - "txHash": "0x54237b4be50a95d76b23c2ac70f447210223d6b6163a53c47853871b6d318010" - }, - "isExpectedToken": true, - "isUnrecognizedRouterAddress": false, - "srcChain": { - "chainId": 137, - "txHash": "0x41ee34e2510ab1a748457924214dd345a4b5daf50fbff0cd89520763859e0758" - }, - "status": "COMPLETE" - }, - "txMetaId": "33d619e0-23b8-11f1-b3e8-8507d9387e55" - }, - "35f3e540-23c2-11f1-bac6-05a660861774": { - "account": "0x30e8ccad5a980bdf30447f8c2c48e70989d9d294", - "batchId": "0x56126e1ee73441dcaa748e36bd097be3", - "estimatedProcessingTimeInSeconds": 0, - "hasApprovalTx": true, - "isStxEnabled": false, - "location": "Main View", - "originalTransactionId": "35f3e540-23c2-11f1-bac6-05a660861774", - "pricingData": { - "amountSent": "2.188871", - "amountSentInUsd": "2.1904523463496447020237525645", - "quotedGasAmount": "0.0976669774", - "quotedGasInUsd": "0.002162624742186703", - "quotedReturnInUsd": "2.1736291719090464479191295" - }, - "quote": { - "aggregator": "kyberswap", - "aggregatorType": "AGG", - "bridgeId": "kyberswap", - "bridges": ["kyberswap"], - "destAsset": { - "address": "0x0000000000000000000000000000000000000000", - "aggregators": [], - "assetId": "eip155:143/slip44:268435779", - "chainId": 143, - "decimals": 18, - "iconUrl": "https://static.cx.metamask.io/api/v2/tokenIcons/assets/eip155/143/slip44/268435779.png", - "metadata": {}, - "name": "Mon", - "occurrences": 1, - "symbol": "MON" - }, - "destChainId": 143, - "destTokenAmount": "98163951918059601100", - "destWalletAddress": "0x30E8ccaD5A980BDF30447f8c2C48e70989D9d294", - "feeData": { - "metabridge": { - "amount": "866516599528899379", - "asset": { - "address": "0x0000000000000000000000000000000000000000", - "aggregators": [], - "assetId": "eip155:143/slip44:268435779", - "chainId": 143, - "decimals": 18, - "iconUrl": "https://static.cx.metamask.io/api/v2/tokenIcons/assets/eip155/143/slip44/268435779.png", - "metadata": {}, - "name": "Mon", - "occurrences": 1, - "symbol": "MON" - }, - "baseBpsFee": 87.5, - "quoteBpsFee": 87.5 - } - }, - "gasIncluded": false, - "gasIncluded7702": true, - "gasSponsored": true, - "minDestTokenAmount": "96200672879698409078", - "priceData": { - "priceImpact": "-0.0008349001655638664", - "totalFeeAmountUsd": "0.019168075055522857", - "totalFromAmountUsd": "2.1888097116119996", - "totalToAmountUsd": "2.1714690741470895" - }, - "protocols": ["kyberswap"], - "requestId": "0xee3077937ecabc1c41865bbe5259bcc1f8e1f8a9e53be908253a592a12b6cdc7", - "slippage": 2, - "srcAsset": { - "address": "0x754704bc059f8c67012fed69bc8a327a5aafb603", - "aggregators": ["metamask", "liFi", "squid"], - "assetId": "eip155:143/erc20:0x754704bc059f8c67012fed69bc8a327a5aafb603", - "chainId": 143, - "decimals": 6, - "iconUrl": "https://static.cx.metamask.io/api/v2/tokenIcons/assets/eip155/143/erc20/0x754704bc059f8c67012fed69bc8a327a5aafb603.png", - "metadata": {}, - "name": "USDC", - "occurrences": 3, - "symbol": "USDC" - }, - "srcChainId": 143, - "srcTokenAmount": "2188871", - "steps": [], - "walletAddress": "0x30E8ccaD5A980BDF30447f8c2C48e70989D9d294" - }, - "slippagePercentage": 0, - "startTime": 1773945245979, - "status": { - "srcChain": { - "chainId": 143, - "txHash": "0x083e1dbda65643a58503f7b3dd7a86fa4feb305ae672d7d57ecf44b4f3841422" - }, - "status": "PENDING" - }, - "txMetaId": "35f3e540-23c2-11f1-bac6-05a660861774" - }, - "36619f30-127f-11f1-aab2-c95c44564d21": { - "account": "0x30e8ccad5a980bdf30447f8c2c48e70989d9d294", - "batchId": "0x3aa087fec9cc4db6bf4d5c327ccf7726", - "completionTime": 1772047306255, - "estimatedProcessingTimeInSeconds": 2, - "hasApprovalTx": false, - "isStxEnabled": true, - "pricingData": { - "amountSent": "20", - "amountSentInUsd": "2.33382482", - "quotedGasAmount": "0.067683310776647165", - "quotedGasInUsd": "0.007898049529515631502981765", - "quotedReturnInUsd": "2.269503486445552640252130624" - }, - "quote": { - "aggregator": "relay", - "bridgeId": "relay", - "bridges": ["Relay"], - "destAsset": { - "address": "0x0000000000000000000000000000000000000000", - "aggregators": [], - "assetId": "eip155:56/slip44:714", - "chainId": 56, - "coingeckoId": "binancecoin", - "decimals": 18, - "iconUrl": "https://static.cx.metamask.io/api/v2/tokenIcons/assets/eip155/56/slip44/714.png", - "metadata": {}, - "name": "Binance Coin", - "occurrences": 100, - "symbol": "BNB" - }, - "destChainId": 56, - "destTokenAmount": "3597671527643464", - "feeData": { - "metabridge": { - "amount": "175000000000000000", - "asset": { - "address": "0x0000000000000000000000000000000000000000", - "aggregators": [], - "assetId": "eip155:137/slip44:966", - "chainId": 137, - "coingeckoId": "matic-network", - "decimals": 18, - "iconUrl": "https://static.cx.metamask.io/api/v2/tokenIcons/assets/eip155/137/slip44/966.png", - "metadata": {}, - "name": "Polygon Ecosystem Token", - "occurrences": 100, - "symbol": "POL" - }, - "baseBpsFee": 87.5, - "quoteBpsFee": 87.5 - } - }, - "minDestTokenAmount": "3484344874522695", - "priceData": { - "priceImpact": "0.01754118057599654", - "totalFeeAmountUsd": "0.020409375", - "totalFromAmountUsd": "2.3325", - "totalToAmountUsd": "2.2715338258388065" - }, - "protocols": ["Relay"], - "requestId": "0x2baa592a1bc394b43c219389904015ea044b816e747da00a37274dcd317990cc", - "slippage": 2, - "srcAsset": { - "address": "0x0000000000000000000000000000000000000000", - "aggregators": [], - "assetId": "eip155:137/slip44:966", - "chainId": 137, - "coingeckoId": "matic-network", - "decimals": 18, - "iconUrl": "https://static.cx.metamask.io/api/v2/tokenIcons/assets/eip155/137/slip44/966.png", - "metadata": {}, - "name": "Polygon Ecosystem Token", - "occurrences": 100, - "symbol": "POL" - }, - "srcChainId": 137, - "srcTokenAmount": "19825000000000000000", - "steps": [ - { - "action": "bridge", - "destAmount": "3597671527643464", - "destAsset": { - "address": "0x0000000000000000000000000000000000000000", - "aggregators": [], - "assetId": "eip155:56/slip44:714", - "chainId": 56, - "coingeckoId": "binancecoin", - "decimals": 18, - "iconUrl": "https://static.cx.metamask.io/api/v2/tokenIcons/assets/eip155/56/slip44/714.png", - "metadata": {}, - "name": "Binance Coin", - "occurrences": 100, - "symbol": "BNB" - }, - "destChainId": 56, - "protocol": { - "name": "0x" - }, - "srcAmount": "19825000000000000000", - "srcAsset": { - "address": "0x0000000000000000000000000000000000000000", - "aggregators": [], - "assetId": "eip155:137/slip44:966", - "chainId": 137, - "coingeckoId": "matic-network", - "decimals": 18, - "iconUrl": "https://static.cx.metamask.io/api/v2/tokenIcons/assets/eip155/137/slip44/966.png", - "metadata": {}, - "name": "Polygon Ecosystem Token", - "occurrences": 100, - "symbol": "POL" - }, - "srcChainId": 137 - } - ] - }, - "slippagePercentage": 0, - "startTime": 1772047300759, - "status": { - "bridge": "relay", - "destChain": { - "chainId": 56, - "txHash": "0x68c401d15b280c5c4d653e42fe12b4ab70aeda37eab1c80e21e36edcd1a69c5f" - }, - "isExpectedToken": true, - "isUnrecognizedRouterAddress": false, - "srcChain": { - "chainId": 137, - "txHash": "0xcee7a7adbebcfb557bd5459d7a8589770e2258ad7db598a30a20f75509ac84e4" - }, - "status": "COMPLETE" - }, - "txMetaId": "36619f30-127f-11f1-aab2-c95c44564d21" - }, - "380cd3a0-127e-11f1-965c-356d45d675c3": { - "account": "0x30e8ccad5a980bdf30447f8c2c48e70989d9d294", - "approvalTxId": "38024c50-127e-11f1-965c-356d45d675c3", - "batchId": "0xf5d8abced38a4f0386168a74519abba4", - "estimatedProcessingTimeInSeconds": 0, - "hasApprovalTx": true, - "isStxEnabled": true, - "pricingData": { - "amountSent": "3.957343798884812964", - "amountSentInUsd": "3.957343798884812964", - "quotedGasAmount": "0.00002462735", - "quotedGasInUsd": "0.0155041481925", - "quotedReturnInUsd": "3.9218926463119827027" - }, - "quote": { - "aggregator": "okx", - "aggregatorType": "AGG", - "bridgeId": "okx", - "bridges": ["okx"], - "destAsset": { - "address": "0x0000000000000000000000000000000000000000", - "aggregators": [], - "assetId": "eip155:56/slip44:714", - "chainId": 56, - "coingeckoId": "binancecoin", - "decimals": 18, - "iconUrl": "https://static.cx.metamask.io/api/v2/tokenIcons/assets/eip155/56/slip44/714.png", - "metadata": {}, - "name": "Binance Coin", - "occurrences": 100, - "symbol": "BNB" - }, - "destChainId": 56, - "destTokenAmount": "6229676191425594", - "destWalletAddress": "0x30E8ccaD5A980BDF30447f8c2C48e70989D9d294", - "feeData": { - "metabridge": { - "amount": "54990836494299", - "asset": { - "address": "0x0000000000000000000000000000000000000000", - "aggregators": [], - "assetId": "eip155:56/slip44:714", - "chainId": 56, - "coingeckoId": "binancecoin", - "decimals": 18, - "iconUrl": "https://static.cx.metamask.io/api/v2/tokenIcons/assets/eip155/56/slip44/714.png", - "metadata": {}, - "name": "Binance Coin", - "occurrences": 100, - "symbol": "BNB" - }, - "baseBpsFee": 87.5, - "quoteBpsFee": 87.5 - } - }, - "gasIncluded7702": false, - "gasSponsored": false, - "minDestTokenAmount": "6105082667597082", - "priceData": { - "priceImpact": "0.00021015901071801027", - "totalFeeAmountUsd": "0.03461948111498593", - "totalFromAmountUsd": "3.957343798884813", - "totalToAmountUsd": "3.9218926463119823" - }, - "protocols": ["okx"], - "requestId": "0xcb4089350fdae8bbfedbf218a7eb114e7402d84ffcd24003aa3c01e6ee857cf2", - "slippage": 2, - "srcAsset": { - "address": "0x55d398326f99059ff775485246999027b3197955", - "aggregators": [ - "pancakeExtended", - "oneInch", - "liFi", - "socket", - "squid", - "rango", - "sonarwatch", - "sushiSwap" - ], - "assetId": "eip155:56/erc20:0x55d398326f99059ff775485246999027b3197955", - "chainId": 56, - "coingeckoId": "binance-bridged-usdt-bnb-smart-chain", - "decimals": 18, - "iconUrl": "https://static.cx.metamask.io/api/v2/tokenIcons/assets/eip155/56/erc20/0x55d398326f99059ff775485246999027b3197955.png", - "metadata": { - "storage": { - "approval": 2, - "balance": 1 - } - }, - "name": "Tether USD", - "occurrences": 8, - "symbol": "USDT" - }, - "srcChainId": 56, - "srcTokenAmount": "3957343798884812964", - "steps": [], - "walletAddress": "0x30E8ccaD5A980BDF30447f8c2C48e70989D9d294" - }, - "slippagePercentage": 0, - "startTime": 1772046873960, - "status": { - "srcChain": { - "chainId": 56 - }, - "status": "PENDING" - }, - "txMetaId": "380cd3a0-127e-11f1-965c-356d45d675c3" - }, - "38d6b6e0-39dc-11f1-bcee-3727d90ba13b": { - "account": "0x141d32a89a1e0a5ef360034a2f60a4b917c18838", - "actionId": "1776375343417.1826", - "approvalTxId": "38af31b0-39dc-11f1-bcee-3727d90ba13b", - "estimatedProcessingTimeInSeconds": 0, - "hasApprovalTx": true, - "isStxEnabled": false, - "location": "Main View", - "originalTransactionId": "38d6b6e0-39dc-11f1-bcee-3727d90ba13b", - "pricingData": { - "amountSent": "12.628434", - "amountSentInUsd": "12.626047226312450254365028670592", - "quotedGasAmount": "0.000968217311742358", - "quotedGasInUsd": "0.009363196410452116711275344", - "quotedReturnInUsd": "12.49252937256288866628076764" - }, - "quote": { - "aggregator": "kyberswap", - "aggregatorType": "AGG", - "bridgeId": "kyberswap", - "bridges": ["kyberswap"], - "destAsset": { - "address": "0x0000000000000000000000000000000000000000", - "aggregators": [], - "assetId": "eip155:43114/slip44:9005", - "chainId": 43114, - "coingeckoId": "avalanche-2", - "decimals": 18, - "iconUrl": "https://static.cx.metamask.io/api/v2/tokenIcons/assets/eip155/43114/slip44/9005.png", - "metadata": {}, - "name": "Avalanche", - "occurrences": 100, - "symbol": "AVAX" - }, - "destChainId": 43114, - "destTokenAmount": "1291811329778698605", - "destWalletAddress": "0x141d32a89a1e0a5Ef360034a2f60a4B917c18838", - "feeData": { - "metabridge": { - "amount": "110498", - "asset": { - "address": "0xb97ef9ef8734c71904d8002f8b6bc66dd9c48a6e", - "aggregators": [ - "traderJoe", - "oneInch", - "liFi", - "trustWallet", - "socket", - "rubic", - "squid", - "rango", - "sonarwatch", - "sushiSwap" - ], - "assetId": "eip155:43114/erc20:0xb97ef9ef8734c71904d8002f8b6bc66dd9c48a6e", - "chainId": 43114, - "coingeckoId": "usd-coin", - "decimals": 6, - "iconUrl": "https://static.cx.metamask.io/api/v2/tokenIcons/assets/eip155/43114/erc20/0xb97ef9ef8734c71904d8002f8b6bc66dd9c48a6e.png", - "metadata": { - "storage": { - "approval": 10, - "balance": 9 - } - }, - "name": "USD Coin", - "occurrences": 10, - "symbol": "USDC" - }, - "baseBpsFee": 87.5, - "quoteBpsFee": 87.5 - } - }, - "gasIncluded": false, - "gasIncluded7702": false, - "gasSponsored": false, - "minDestTokenAmount": "1265975103183124632", - "priceData": { - "priceImpact": "-0.0003170407718869238", - "totalFeeAmountUsd": "0.11047352132685448", - "totalFromAmountUsd": "12.625636417163879", - "totalToAmountUsd": "12.519130712741811" - }, - "protocols": ["kyberswap"], - "requestId": "0x1ce6f8ca08815a841e0e7ebb1da6584374849a173d53d530d9f91da3e3c18b8f", - "slippage": 2, - "srcAsset": { - "address": "0xb97ef9ef8734c71904d8002f8b6bc66dd9c48a6e", - "aggregators": [ - "traderJoe", - "oneInch", - "liFi", - "trustWallet", - "socket", - "rubic", - "squid", - "rango", - "sonarwatch", - "sushiSwap" - ], - "assetId": "eip155:43114/erc20:0xb97ef9ef8734c71904d8002f8b6bc66dd9c48a6e", - "chainId": 43114, - "coingeckoId": "usd-coin", - "decimals": 6, - "iconUrl": "https://static.cx.metamask.io/api/v2/tokenIcons/assets/eip155/43114/erc20/0xb97ef9ef8734c71904d8002f8b6bc66dd9c48a6e.png", - "metadata": { - "storage": { - "approval": 10, - "balance": 9 - } - }, - "name": "USD Coin", - "occurrences": 10, - "symbol": "USDC" - }, - "srcChainId": 43114, - "srcTokenAmount": "12517936", - "steps": [], - "walletAddress": "0x141d32a89a1e0a5Ef360034a2f60a4B917c18838" - }, - "slippagePercentage": 0, - "startTime": 1776375343139, - "status": { - "srcChain": { - "chainId": 43114, - "txHash": "0x48a711af5af1500af1e2fe4911c94f482fbd2003be27422c6e39a4520695924a" - }, - "status": "PENDING" - }, - "txMetaId": "38d6b6e0-39dc-11f1-bcee-3727d90ba13b" - }, - "390b9fa0-286f-11f1-9eba-5fbe36423c6b": { - "account": "0xf25bd11c334507fd007d584e2d0b7b2c6543f714", - "batchId": "0x7558dada3d594cd8850c523a0a8d2891", - "estimatedProcessingTimeInSeconds": 0, - "hasApprovalTx": false, - "isStxEnabled": false, - "location": "Main View", - "originalTransactionId": "390b9fa0-286f-11f1-9eba-5fbe36423c6b", - "pricingData": { - "amountSent": "0.002998907052279377", - "amountSentInUsd": "1.937053360000289448604611237", - "quotedGasAmount": "0.00000966405", - "quotedGasInUsd": "0.00624220097434579305", - "quotedReturnInUsd": "1.90860116351139502370515468619604334331822916" - }, - "quote": { - "aggregator": "uniswap", - "aggregatorType": "AGG", - "bridgeId": "uniswap", - "bridges": ["uniswap"], - "destAsset": { - "address": "0x55d398326f99059ff775485246999027b3197955", - "aggregators": [ - "pancakeExtended", - "oneInch", - "liFi", - "trustWallet", - "socket", - "squid", - "rango", - "sonarwatch", - "sushiSwap" - ], - "assetId": "eip155:56/erc20:0x55d398326f99059ff775485246999027b3197955", - "chainId": 56, - "coingeckoId": "binance-bridged-usdt-bnb-smart-chain", - "decimals": 18, - "iconUrl": "https://static.cx.metamask.io/api/v2/tokenIcons/assets/eip155/56/erc20/0x55d398326f99059ff775485246999027b3197955.png", - "metadata": { - "storage": { - "approval": 2, - "balance": 1 - } - }, - "name": "Tether USD", - "occurrences": 9, - "symbol": "USDT" - }, - "destChainId": 56, - "destTokenAmount": "1909139540863043806", - "destWalletAddress": "0xF25bd11C334507Fd007d584E2D0b7b2C6543f714", - "feeData": { - "metabridge": { - "amount": "26240436707444", - "asset": { - "address": "0x0000000000000000000000000000000000000000", - "aggregators": [], - "assetId": "eip155:56/slip44:714", - "chainId": 56, - "coingeckoId": "binancecoin", - "decimals": 18, - "iconUrl": "https://static.cx.metamask.io/api/v2/tokenIcons/assets/eip155/56/slip44/714.png", - "metadata": {}, - "name": "Binance Coin", - "occurrences": 100, - "symbol": "BNB" - }, - "baseBpsFee": 87.5, - "quoteBpsFee": 87.5 - }, - "txFee": { - "amount": "19796850000000", - "asset": { - "address": "0x0000000000000000000000000000000000000000", - "aggregators": [], - "assetId": "eip155:56/slip44:714", - "chainId": 56, - "coingeckoId": "binancecoin", - "decimals": 18, - "iconUrl": "https://static.cx.metamask.io/api/v2/tokenIcons/assets/eip155/56/slip44/714.png", - "metadata": {}, - "name": "Binance Coin", - "occurrences": 100, - "symbol": "BNB" - }, - "maxFeePerGas": "60000000", - "maxPriorityFeePerGas": "60000000" - } - }, - "gasIncluded": true, - "gasIncluded7702": false, - "gasSponsored": false, - "minDestTokenAmount": "1870956750045782929", - "priceData": { - "priceImpact": "0.009378922275725891", - "totalFeeAmountUsd": "0.016973626484210153", - "totalFromAmountUsd": "1.9398430267669151", - "totalToAmountUsd": "1.9089639000252845" - }, - "protocols": ["uniswap"], - "requestId": "0x64651af7272d56bde9042230f52aaaded6d1dfef37dfeef320cfb4c1e7feb899", - "slippage": 2, - "srcAsset": { - "address": "0x0000000000000000000000000000000000000000", - "aggregators": [], - "assetId": "eip155:56/slip44:714", - "chainId": 56, - "coingeckoId": "binancecoin", - "decimals": 18, - "iconUrl": "https://static.cx.metamask.io/api/v2/tokenIcons/assets/eip155/56/slip44/714.png", - "metadata": {}, - "name": "Binance Coin", - "occurrences": 100, - "symbol": "BNB" - }, - "srcChainId": 56, - "srcTokenAmount": "2952869765571933", - "steps": [], - "walletAddress": "0xF25bd11C334507Fd007d584E2D0b7b2C6543f714" - }, - "slippagePercentage": 0, - "startTime": 1774459358615, - "status": { - "srcChain": { - "chainId": 56, - "txHash": "0x866378820a2c2120ce70a2e8de356faad0238a674267f595c7bf392ef40ed21f" - }, - "status": "FAILED" - }, - "txMetaId": "390b9fa0-286f-11f1-9eba-5fbe36423c6b" - }, - "39538ad0-287f-11f1-89e3-87a6b7d6d04e": { - "account": "0xf25bd11c334507fd007d584e2d0b7b2c6543f714", - "batchId": "0xcaab6b91a0d04b93a761711525cb923f", - "estimatedProcessingTimeInSeconds": 0, - "hasApprovalTx": true, - "isStxEnabled": false, - "location": "Main View", - "originalTransactionId": "39538ad0-287f-11f1-89e3-87a6b7d6d04e", - "pricingData": { - "amountSent": "1.295511567102070542", - "amountSentInUsd": "1.29448036008664873733506160312694385002745488", - "quotedGasAmount": "0.00001213365", - "quotedGasInUsd": "0.0078333501940972209", - "quotedReturnInUsd": "1.255698030845106017081922468" - }, - "quote": { - "aggregator": "uniswap", - "aggregatorType": "AGG", - "bridgeId": "uniswap", - "bridges": ["uniswap"], - "destAsset": { - "address": "0x0000000000000000000000000000000000000000", - "aggregators": [], - "assetId": "eip155:56/slip44:714", - "chainId": 56, - "coingeckoId": "binancecoin", - "decimals": 18, - "iconUrl": "https://static.cx.metamask.io/api/v2/tokenIcons/assets/eip155/56/slip44/714.png", - "metadata": {}, - "name": "Binance Coin", - "occurrences": 100, - "symbol": "BNB" - }, - "destChainId": 56, - "destTokenAmount": "1945042674518098", - "destWalletAddress": "0xF25bd11C334507Fd007d584E2D0b7b2C6543f714", - "feeData": { - "metabridge": { - "amount": "17531185919428", - "asset": { - "address": "0x0000000000000000000000000000000000000000", - "aggregators": [], - "assetId": "eip155:56/slip44:714", - "chainId": 56, - "coingeckoId": "binancecoin", - "decimals": 18, - "iconUrl": "https://static.cx.metamask.io/api/v2/tokenIcons/assets/eip155/56/slip44/714.png", - "metadata": {}, - "name": "Binance Coin", - "occurrences": 100, - "symbol": "BNB" - }, - "baseBpsFee": 87.5, - "quoteBpsFee": 87.5 - }, - "txFee": { - "amount": "40990244640000", - "asset": { - "address": "0x0000000000000000000000000000000000000000", - "aggregators": [], - "assetId": "eip155:56/slip44:714", - "chainId": 56, - "coingeckoId": "binancecoin", - "decimals": 18, - "iconUrl": "https://static.cx.metamask.io/api/v2/tokenIcons/assets/eip155/56/slip44/714.png", - "metadata": {}, - "name": "Binance Coin", - "occurrences": 100, - "symbol": "BNB" - }, - "maxFeePerGas": "60000000", - "maxPriorityFeePerGas": "60000000" - } - }, - "gasIncluded": true, - "gasIncluded7702": true, - "gasSponsored": false, - "minDestTokenAmount": "1906141821027736", - "priceData": { - "priceImpact": "0.0005646535317956076", - "totalFeeAmountUsd": "0.011325847351387265", - "totalFromAmountUsd": "1.2951138450509703", - "totalToAmountUsd": "1.2565753694456718" - }, - "protocols": ["uniswap"], - "requestId": "0x9e5e88da244add33ec7fc09b2b3028d9489c4b56abbf0483e210dc1683317438", - "slippage": 2, - "srcAsset": { - "address": "0x55d398326f99059ff775485246999027b3197955", - "aggregators": [ - "pancakeExtended", - "oneInch", - "liFi", - "trustWallet", - "socket", - "rubic", - "squid", - "rango", - "sonarwatch", - "sushiSwap" - ], - "assetId": "eip155:56/erc20:0x55d398326f99059ff775485246999027b3197955", - "chainId": 56, - "coingeckoId": "binance-bridged-usdt-bnb-smart-chain", - "decimals": 18, - "iconUrl": "https://static.cx.metamask.io/api/v2/tokenIcons/assets/eip155/56/erc20/0x55d398326f99059ff775485246999027b3197955.png", - "metadata": { - "storage": { - "approval": 2, - "balance": 1 - } - }, - "name": "Tether USD", - "occurrences": 11, - "symbol": "USDT" - }, - "srcChainId": 56, - "srcTokenAmount": "1295511567102070542", - "steps": [], - "walletAddress": "0xF25bd11C334507Fd007d584E2D0b7b2C6543f714" - }, - "slippagePercentage": 0, - "startTime": 1774466231103, - "status": { - "srcChain": { - "chainId": 56, - "txHash": "0xc7fadcce34c2d79c90557ed9ab7124db9baa38579228a946144a7b8fa05de01a" - }, - "status": "PENDING" - }, - "txMetaId": "39538ad0-287f-11f1-89e3-87a6b7d6d04e" - }, - "3b5d0fd0-17ff-11f1-b7d6-03d70bc40886": { - "account": "0x30e8ccad5a980bdf30447f8c2c48e70989d9d294", - "estimatedProcessingTimeInSeconds": 0, - "hasApprovalTx": false, - "isStxEnabled": false, - "pricingData": { - "amountSent": "0.008412536607579575", - "amountSentInUsd": "5.582091674581504127691496875", - "quotedGasAmount": "0.00001049115", - "quotedGasInUsd": "0.00696134398024749375", - "quotedReturnInUsd": "5.53357689031261578546599107833730561380741" - }, - "quote": { - "aggregator": "pancakeswap", - "aggregatorType": "AGG", - "bridgeId": "pancakeswap", - "bridges": ["pancakeswap"], - "destAsset": { - "address": "0x55d398326f99059ff775485246999027b3197955", - "aggregators": [ - "pancakeExtended", - "oneInch", - "liFi", - "socket", - "squid", - "rango", - "sonarwatch", - "sushiSwap" - ], - "assetId": "eip155:56/erc20:0x55d398326f99059ff775485246999027b3197955", - "chainId": 56, - "coingeckoId": "binance-bridged-usdt-bnb-smart-chain", - "decimals": 18, - "iconUrl": "https://static.cx.metamask.io/api/v2/tokenIcons/assets/eip155/56/erc20/0x55d398326f99059ff775485246999027b3197955.png", - "metadata": { - "storage": { - "approval": 2, - "balance": 1 - } - }, - "name": "Tether USD", - "occurrences": 8, - "symbol": "USDT" - }, - "destChainId": 56, - "destTokenAmount": "5534838833565955236", - "destWalletAddress": "0x30E8ccaD5A980BDF30447f8c2C48e70989D9d294", - "feeData": { - "metabridge": { - "amount": "73609695316321", - "asset": { - "address": "0x0000000000000000000000000000000000000000", - "aggregators": [], - "assetId": "eip155:56/slip44:714", - "chainId": 56, - "coingeckoId": "binancecoin", - "decimals": 18, - "iconUrl": "https://static.cx.metamask.io/api/v2/tokenIcons/assets/eip155/56/slip44/714.png", - "metadata": {}, - "name": "Binance Coin", - "occurrences": 100, - "symbol": "BNB" - }, - "baseBpsFee": 87.5, - "quoteBpsFee": 87.5 - }, - "txFee": { - "amount": "24790950000000", - "asset": { - "address": "0x0000000000000000000000000000000000000000", - "aggregators": [], - "assetId": "eip155:56/slip44:714", - "chainId": 56, - "coingeckoId": "binancecoin", - "decimals": 18, - "iconUrl": "https://static.cx.metamask.io/api/v2/tokenIcons/assets/eip155/56/slip44/714.png", - "metadata": {}, - "name": "Binance Coin", - "occurrences": 100, - "symbol": "BNB" - }, - "maxFeePerGas": "60000000", - "maxPriorityFeePerGas": "60000000" - } - }, - "gasIncluded": true, - "gasIncluded7702": false, - "minDestTokenAmount": "5424142056894636131", - "priceData": { - "priceImpact": "-0.002707655976241213", - "totalFeeAmountUsd": "0.04886947672050551", - "totalFromAmountUsd": "5.58508305377208", - "totalToAmountUsd": "5.534700462595116" - }, - "protocols": ["pancakeswap"], - "requestId": "0x6bbcb418b85bb9b135da305f866edf3e19302b598006e30445a915428712427a", - "srcAsset": { - "address": "0x0000000000000000000000000000000000000000", - "aggregators": [], - "assetId": "eip155:56/slip44:714", - "chainId": 56, - "coingeckoId": "binancecoin", - "decimals": 18, - "iconUrl": "https://static.cx.metamask.io/api/v2/tokenIcons/assets/eip155/56/slip44/714.png", - "metadata": {}, - "name": "Binance Coin", - "occurrences": 100, - "symbol": "BNB" - }, - "srcChainId": 56, - "srcTokenAmount": "8314135962263254", - "steps": [], - "walletAddress": "0x30E8ccaD5A980BDF30447f8c2C48e70989D9d294" - }, - "slippagePercentage": 0, - "startTime": 1772652040521, - "status": { - "srcChain": { - "chainId": 56, - "txHash": "0x77d1a7c60c1d48c7b0dd2c5ddb287e0a6ab58eab88bc0c7c03436c91748defc9" - }, - "status": "PENDING" - }, - "txMetaId": "3b5d0fd0-17ff-11f1-b7d6-03d70bc40886" - }, - "3bf27770-2865-11f1-9be8-5fbe36423c6b": { - "account": "0xf25bd11c334507fd007d584e2d0b7b2c6543f714", - "batchId": "0x3fb3b63da84e47348cc493388e2ed229", - "estimatedProcessingTimeInSeconds": 0, - "hasApprovalTx": false, - "isStxEnabled": false, - "location": "Main View", - "originalTransactionId": "3bf27770-2865-11f1-9be8-5fbe36423c6b", - "pricingData": { - "amountSent": "0.003119325498328475", - "amountSentInUsd": "2.01407550263534505915627805", - "quotedGasAmount": "0.00001250665", - "quotedGasInUsd": "0.0080752513319088767", - "quotedReturnInUsd": "1.98200583481205538770013087725642045607718912" - }, - "quote": { - "aggregator": "1inch", - "aggregatorType": "AGG", - "bridgeId": "1inch", - "bridges": ["1inch"], - "destAsset": { - "address": "0x55d398326f99059ff775485246999027b3197955", - "aggregators": [ - "pancakeExtended", - "oneInch", - "liFi", - "trustWallet", - "socket", - "squid", - "rango", - "sonarwatch", - "sushiSwap" - ], - "assetId": "eip155:56/erc20:0x55d398326f99059ff775485246999027b3197955", - "chainId": 56, - "coingeckoId": "binance-bridged-usdt-bnb-smart-chain", - "decimals": 18, - "iconUrl": "https://static.cx.metamask.io/api/v2/tokenIcons/assets/eip155/56/erc20/0x55d398326f99059ff775485246999027b3197955.png", - "metadata": { - "storage": { - "approval": 2, - "balance": 1 - } - }, - "name": "Tether USD", - "occurrences": 9, - "symbol": "USDT" - }, - "destChainId": 56, - "destTokenAmount": "1982592682246682624", - "destWalletAddress": "0xF25bd11C334507Fd007d584E2D0b7b2C6543f714", - "feeData": { - "metabridge": { - "amount": "27294098110374", - "asset": { - "address": "0x0000000000000000000000000000000000000000", - "aggregators": [], - "assetId": "eip155:56/slip44:714", - "chainId": 56, - "coingeckoId": "binancecoin", - "decimals": 18, - "iconUrl": "https://static.cx.metamask.io/api/v2/tokenIcons/assets/eip155/56/slip44/714.png", - "metadata": {}, - "name": "Binance Coin", - "occurrences": 100, - "symbol": "BNB" - }, - "baseBpsFee": 87.5, - "quoteBpsFee": 87.5 - }, - "txFee": { - "amount": "27237780000000", - "asset": { - "address": "0x0000000000000000000000000000000000000000", - "aggregators": [], - "assetId": "eip155:56/slip44:714", - "chainId": 56, - "coingeckoId": "binancecoin", - "decimals": 18, - "iconUrl": "https://static.cx.metamask.io/api/v2/tokenIcons/assets/eip155/56/slip44/714.png", - "metadata": {}, - "name": "Binance Coin", - "occurrences": 100, - "symbol": "BNB" - }, - "maxFeePerGas": "60000000", - "maxPriorityFeePerGas": "60000000" - } - }, - "gasIncluded": true, - "gasIncluded7702": false, - "gasSponsored": false, - "minDestTokenAmount": "1942940828601748971", - "priceData": { - "priceImpact": "0.007284589645075723", - "totalFeeAmountUsd": "0.017625163854774008", - "totalFromAmountUsd": "2.0143044405456125", - "totalToAmountUsd": "1.982170390005364" - }, - "protocols": ["1inch"], - "requestId": "0x3fafdd10477e038982216dd6730d10572aa290493fef543178e79fed9e64f94a", - "slippage": 2, - "srcAsset": { - "address": "0x0000000000000000000000000000000000000000", - "aggregators": [], - "assetId": "eip155:56/slip44:714", - "chainId": 56, - "coingeckoId": "binancecoin", - "decimals": 18, - "iconUrl": "https://static.cx.metamask.io/api/v2/tokenIcons/assets/eip155/56/slip44/714.png", - "metadata": {}, - "name": "Binance Coin", - "occurrences": 100, - "symbol": "BNB" - }, - "srcChainId": 56, - "srcTokenAmount": "3064793620218101", - "steps": [], - "walletAddress": "0xF25bd11C334507Fd007d584E2D0b7b2C6543f714" - }, - "slippagePercentage": 0, - "startTime": 1774455068560, - "status": { - "srcChain": { - "chainId": 56, - "txHash": "0xed393847afe485dbf8427e91376060279bc2cbf3983da8ec0522b50aecb841dd" - }, - "status": "FAILED" - }, - "txMetaId": "3bf27770-2865-11f1-9be8-5fbe36423c6b" - }, - "3ce48380-39c7-11f1-a1dd-3727d90ba13b": { - "account": "0x141d32a89a1e0a5ef360034a2f60a4b917c18838", - "batchId": "0x9b387d273e404320bf046b7b63dceaa4", - "completionTime": 1776366351186, - "estimatedProcessingTimeInSeconds": 6, - "hasApprovalTx": true, - "isStxEnabled": true, - "location": "Main View", - "originalTransactionId": "3ce48380-39c7-11f1-a1dd-3727d90ba13b", - "pricingData": { - "amountSent": "23.534907", - "amountSentInUsd": "23.533753789557691826436303973472304", - "quotedGasAmount": "0.000003644315356166", - "quotedGasInUsd": "0.008543464466790573290461216", - "quotedReturnInUsd": "23.2836811005227695149843124" - }, - "quote": { - "aggregator": "relay", - "bridgeId": "relay", - "bridges": ["Relay"], - "destAsset": { - "address": "0x0000000000000000000000000000000000000000", - "aggregators": [], - "assetId": "eip155:1/slip44:60", - "chainId": 1, - "coingeckoId": "ethereum", - "decimals": 18, - "iconUrl": "https://static.cx.metamask.io/api/v2/tokenIcons/assets/eip155/1/slip44/60.png", - "metadata": {}, - "name": "Ether", - "occurrences": 100, - "symbol": "ETH" - }, - "destChainId": 1, - "destTokenAmount": "9931928307601775", - "feeData": { - "metabridge": { - "amount": "205930", - "asset": { - "address": "0x833589fcd6edb6e08f4c7c32d4f71b54bda02913", - "aggregators": [ - "coinGecko", - "oneInch", - "liFi", - "socket", - "rubic", - "squid", - "rango", - "sonarwatch", - "sushiSwap" - ], - "assetId": "eip155:8453/erc20:0x833589fcd6edb6e08f4c7c32d4f71b54bda02913", - "chainId": 8453, - "coingeckoId": "usd-coin", - "decimals": 6, - "iconUrl": "https://static.cx.metamask.io/api/v2/tokenIcons/assets/eip155/8453/erc20/0x833589fcd6edb6e08f4c7c32d4f71b54bda02913.png", - "metadata": { - "storage": { - "approval": 10, - "balance": 9 - } - }, - "name": "USD Coin", - "occurrences": 8, - "symbol": "USDC" - }, - "baseBpsFee": 87.5, - "quoteBpsFee": 87.5 - }, - "txFee": { - "amount": "9565", - "asset": { - "address": "0x833589fcd6edb6e08f4c7c32d4f71b54bda02913", - "aggregators": [ - "coinGecko", - "oneInch", - "liFi", - "socket", - "rubic", - "squid", - "rango", - "sonarwatch", - "sushiSwap" - ], - "assetId": "eip155:8453/erc20:0x833589fcd6edb6e08f4c7c32d4f71b54bda02913", - "chainId": 8453, - "coingeckoId": "usd-coin", - "decimals": 6, - "iconUrl": "https://static.cx.metamask.io/api/v2/tokenIcons/assets/eip155/8453/erc20/0x833589fcd6edb6e08f4c7c32d4f71b54bda02913.png", - "metadata": { - "storage": { - "approval": 10, - "balance": 9 - } - }, - "name": "USD Coin", - "occurrences": 8, - "symbol": "USDC" - }, - "maxFeePerGas": "9009036", - "maxPriorityFeePerGas": "1000004" - } - }, - "gasIncluded": true, - "gasIncluded7702": true, - "minDestTokenAmount": "9733289741449740", - "priceData": { - "priceImpact": "0.010266746069918082", - "totalFeeAmountUsd": "0.20592795773287953", - "totalFromAmountUsd": "23.534673597548927", - "totalToAmountUsd": "23.28358237519561" - }, - "protocols": ["Relay"], - "requestId": "0xdf9f2e0fc3d02d199eb1671ff615c7708d7915c3005bd3bfeb01999677d722d6", - "srcAsset": { - "address": "0x833589fcd6edb6e08f4c7c32d4f71b54bda02913", - "aggregators": [ - "coinGecko", - "oneInch", - "liFi", - "socket", - "rubic", - "squid", - "rango", - "sonarwatch", - "sushiSwap" - ], - "assetId": "eip155:8453/erc20:0x833589fcd6edb6e08f4c7c32d4f71b54bda02913", - "chainId": 8453, - "coingeckoId": "usd-coin", - "decimals": 6, - "iconUrl": "https://static.cx.metamask.io/api/v2/tokenIcons/assets/eip155/8453/erc20/0x833589fcd6edb6e08f4c7c32d4f71b54bda02913.png", - "metadata": { - "storage": { - "approval": 10, - "balance": 9 - } - }, - "name": "USD Coin", - "occurrences": 8, - "symbol": "USDC" - }, - "srcChainId": 8453, - "srcTokenAmount": "23319412", - "steps": [ - { - "action": "bridge", - "destAmount": "9931928307601775", - "destAsset": { - "address": "0x0000000000000000000000000000000000000000", - "aggregators": [], - "assetId": "eip155:1/slip44:60", - "chainId": 1, - "coingeckoId": "ethereum", - "decimals": 18, - "iconUrl": "https://static.cx.metamask.io/api/v2/tokenIcons/assets/eip155/1/slip44/60.png", - "metadata": {}, - "name": "Ether", - "occurrences": 100, - "symbol": "ETH" - }, - "destChainId": 1, - "protocol": { - "name": "relay" - }, - "srcAmount": "23319412", - "srcAsset": { - "address": "0x833589fcd6edb6e08f4c7c32d4f71b54bda02913", - "aggregators": [ - "coinGecko", - "oneInch", - "liFi", - "socket", - "rubic", - "squid", - "rango", - "sonarwatch", - "sushiSwap" - ], - "assetId": "eip155:8453/erc20:0x833589fcd6edb6e08f4c7c32d4f71b54bda02913", - "chainId": 8453, - "coingeckoId": "usd-coin", - "decimals": 6, - "iconUrl": "https://static.cx.metamask.io/api/v2/tokenIcons/assets/eip155/8453/erc20/0x833589fcd6edb6e08f4c7c32d4f71b54bda02913.png", - "metadata": { - "storage": { - "approval": 10, - "balance": 9 - } - }, - "name": "USD Coin", - "occurrences": 8, - "symbol": "USDC" - }, - "srcChainId": 8453 - } - ] - }, - "slippagePercentage": 0, - "startTime": 1776366330685, - "status": { - "bridge": "relay", - "destChain": { - "chainId": 1, - "txHash": "0xbf006ccfc6f025cae589ef2f549bce8576f14ec9572b868ec12aea5c223ba5ab" - }, - "isExpectedToken": true, - "isUnrecognizedRouterAddress": false, - "srcChain": { - "chainId": 8453, - "txHash": "0x3ed8255b9d59dc494570ba5cb2cfba5f219ad0813df9905557398e44561676df" - }, - "status": "COMPLETE" - }, - "txMetaId": "3ce48380-39c7-11f1-a1dd-3727d90ba13b" - }, - "3e4fa6b0-2878-11f1-81ec-1be6bb170c07": { - "account": "0xf25bd11c334507fd007d584e2d0b7b2c6543f714", - "batchId": "0xa59cf2dc37114e7a90a5c1480753e49a", - "estimatedProcessingTimeInSeconds": 0, - "hasApprovalTx": true, - "isStxEnabled": false, - "location": "Main View", - "originalTransactionId": "3e4fa6b0-2878-11f1-81ec-1be6bb170c07", - "pricingData": { - "amountSent": "1.630904608557831471", - "amountSentInUsd": "1.63233892608066873135135686003818988212049832", - "quotedGasAmount": "0.0000145921", - "quotedGasInUsd": "0.0094229323501138888", - "quotedReturnInUsd": "1.580432596728253966441676864" - }, - "quote": { - "aggregator": "0x", - "aggregatorType": "AGG", - "bridgeId": "0x", - "bridges": ["0x"], - "destAsset": { - "address": "0x0000000000000000000000000000000000000000", - "aggregators": [], - "assetId": "eip155:56/slip44:714", - "chainId": 56, - "coingeckoId": "binancecoin", - "decimals": 18, - "iconUrl": "https://static.cx.metamask.io/api/v2/tokenIcons/assets/eip155/56/slip44/714.png", - "metadata": {}, - "name": "Binance Coin", - "occurrences": 100, - "symbol": "BNB" - }, - "destChainId": 56, - "destTokenAmount": "2447415479369288", - "destWalletAddress": "0xF25bd11C334507Fd007d584E2D0b7b2C6543f714", - "feeData": { - "metabridge": { - "amount": "22088364496324", - "asset": { - "address": "0x0000000000000000000000000000000000000000", - "aggregators": [], - "assetId": "eip155:56/slip44:714", - "chainId": 56, - "coingeckoId": "binancecoin", - "decimals": 18, - "iconUrl": "https://static.cx.metamask.io/api/v2/tokenIcons/assets/eip155/56/slip44/714.png", - "metadata": {}, - "name": "Binance Coin", - "occurrences": 100, - "symbol": "BNB" - }, - "baseBpsFee": 87.5, - "quoteBpsFee": 87.5 - }, - "txFee": { - "amount": "54880670000000", - "asset": { - "address": "0x0000000000000000000000000000000000000000", - "aggregators": [], - "assetId": "eip155:56/slip44:714", - "chainId": 56, - "coingeckoId": "binancecoin", - "decimals": 18, - "iconUrl": "https://static.cx.metamask.io/api/v2/tokenIcons/assets/eip155/56/slip44/714.png", - "metadata": {}, - "name": "Binance Coin", - "occurrences": 100, - "symbol": "BNB" - }, - "maxFeePerGas": "65000000", - "maxPriorityFeePerGas": "65000000" - } - }, - "gasIncluded": true, - "gasIncluded7702": true, - "gasSponsored": false, - "minDestTokenAmount": "2398467169781902", - "priceData": { - "priceImpact": "0.0005489657632167822", - "totalFeeAmountUsd": "0.01425870193331203", - "totalFromAmountUsd": "1.6304610025043036", - "totalToAmountUsd": "1.5798801143972563" - }, - "protocols": ["0x"], - "requestId": "0xa83497984183c6e52ea2aa5549b07f574f4e26c91e0a89352875f55ed51f0bbf", - "slippage": 2, - "srcAsset": { - "address": "0x55d398326f99059ff775485246999027b3197955", - "aggregators": [ - "pancakeExtended", - "oneInch", - "liFi", - "trustWallet", - "socket", - "rubic", - "squid", - "rango", - "sonarwatch", - "sushiSwap" - ], - "assetId": "eip155:56/erc20:0x55d398326f99059ff775485246999027b3197955", - "chainId": 56, - "coingeckoId": "binance-bridged-usdt-bnb-smart-chain", - "decimals": 18, - "iconUrl": "https://static.cx.metamask.io/api/v2/tokenIcons/assets/eip155/56/erc20/0x55d398326f99059ff775485246999027b3197955.png", - "metadata": { - "storage": { - "approval": 2, - "balance": 1 - } - }, - "name": "Tether USD", - "occurrences": 11, - "symbol": "USDT" - }, - "srcChainId": 56, - "srcTokenAmount": "1630904608557831471", - "steps": [], - "walletAddress": "0xF25bd11C334507Fd007d584E2D0b7b2C6543f714" - }, - "slippagePercentage": 0, - "startTime": 1774463233041, - "status": { - "srcChain": { - "chainId": 56, - "txHash": "0xf3b8df0758a0d4e5a3cc181e4d3074108253688a69428bcfd76e9cc4d31f9e70" - }, - "status": "PENDING" - }, - "txMetaId": "3e4fa6b0-2878-11f1-81ec-1be6bb170c07" - }, - "3ff82690-127f-11f1-ab0a-c95c44564d21": { - "account": "0x30e8ccad5a980bdf30447f8c2c48e70989d9d294", - "batchId": "0xe8c2cc8661bf4ac599e83b6e6eb7dbd6", - "estimatedProcessingTimeInSeconds": 0, - "hasApprovalTx": false, - "isStxEnabled": true, - "pricingData": { - "amountSent": "0.005", - "amountSentInUsd": "3.15412825908", - "quotedGasAmount": "0.00001166315", - "quotedGasInUsd": "0.0073574142009777804", - "quotedReturnInUsd": "3.12663456480488119804725950223261233978247408" - }, - "quote": { - "aggregator": "1inch", - "aggregatorType": "AGG", - "bridgeId": "1inch", - "bridges": ["1inch"], - "destAsset": { - "address": "0x55d398326f99059ff775485246999027b3197955", - "aggregators": [ - "pancakeExtended", - "oneInch", - "liFi", - "socket", - "squid", - "rango", - "sonarwatch", - "sushiSwap" - ], - "assetId": "eip155:56/erc20:0x55d398326f99059ff775485246999027b3197955", - "chainId": 56, - "coingeckoId": "binance-bridged-usdt-bnb-smart-chain", - "decimals": 18, - "iconUrl": "https://static.cx.metamask.io/api/v2/tokenIcons/assets/eip155/56/erc20/0x55d398326f99059ff775485246999027b3197955.png", - "metadata": { - "storage": { - "approval": 2, - "balance": 1 - } - }, - "name": "Tether USD", - "occurrences": 8, - "symbol": "USDT" - }, - "destChainId": 56, - "destTokenAmount": "3126934172472504919", - "destWalletAddress": "0x30E8ccaD5A980BDF30447f8c2C48e70989D9d294", - "feeData": { - "metabridge": { - "amount": "43750000000000", - "asset": { - "address": "0x0000000000000000000000000000000000000000", - "aggregators": [], - "assetId": "eip155:56/slip44:714", - "chainId": 56, - "coingeckoId": "binancecoin", - "decimals": 18, - "iconUrl": "https://static.cx.metamask.io/api/v2/tokenIcons/assets/eip155/56/slip44/714.png", - "metadata": {}, - "name": "Binance Coin", - "occurrences": 100, - "symbol": "BNB" - }, - "baseBpsFee": 87.5, - "quoteBpsFee": 87.5 - } - }, - "gasIncluded7702": false, - "gasSponsored": false, - "minDestTokenAmount": "3064395489023054820", - "priceData": { - "priceImpact": "-0.0001383487118785988", - "totalFeeAmountUsd": "0.027598375", - "totalFromAmountUsd": "3.1541", - "totalToAmountUsd": "3.126934172472505" - }, - "protocols": ["1inch"], - "requestId": "0xbc137912b79fe09a935eb3dea0bd8ef8ac88c4ad34cc47c7baea1bbbe31e004b", - "slippage": 2, - "srcAsset": { - "address": "0x0000000000000000000000000000000000000000", - "aggregators": [], - "assetId": "eip155:56/slip44:714", - "chainId": 56, - "coingeckoId": "binancecoin", - "decimals": 18, - "iconUrl": "https://static.cx.metamask.io/api/v2/tokenIcons/assets/eip155/56/slip44/714.png", - "metadata": {}, - "name": "Binance Coin", - "occurrences": 100, - "symbol": "BNB" - }, - "srcChainId": 56, - "srcTokenAmount": "4956250000000000", - "steps": [], - "walletAddress": "0x30E8ccaD5A980BDF30447f8c2C48e70989D9d294" - }, - "slippagePercentage": 0, - "startTime": 1772047316851, - "status": { - "srcChain": { - "chainId": 56 - }, - "status": "PENDING" - }, - "txMetaId": "3ff82690-127f-11f1-ab0a-c95c44564d21" - }, - "44485a40-1d69-11f1-9d96-3b0a0edc0d9a": { - "account": "0x30e8ccad5a980bdf30447f8c2c48e70989d9d294", - "batchId": "0x0e1065d737cf4d119eaedf5fafbccb45", - "estimatedProcessingTimeInSeconds": 0, - "hasApprovalTx": false, - "isStxEnabled": true, - "location": "Main View", - "originalTransactionId": "44485a40-1d69-11f1-9d96-3b0a0edc0d9a", - "pricingData": { - "amountSent": "0.001", - "amountSentInUsd": "0.648827873534", - "quotedGasAmount": "0.0000089423", - "quotedGasInUsd": "0.0058020134935030882", - "quotedReturnInUsd": "0.6443334572841184568616906172233721681080636" - }, - "quote": { - "aggregator": "uniswap", - "aggregatorType": "AGG", - "bridgeId": "uniswap", - "bridges": ["uniswap"], - "destAsset": { - "address": "0x55d398326f99059ff775485246999027b3197955", - "aggregators": [ - "pancakeExtended", - "oneInch", - "liFi", - "socket", - "rubic", - "squid", - "rango", - "sonarwatch", - "sushiSwap" - ], - "assetId": "eip155:56/erc20:0x55d398326f99059ff775485246999027b3197955", - "chainId": 56, - "coingeckoId": "binance-bridged-usdt-bnb-smart-chain", - "decimals": 18, - "iconUrl": "https://static.cx.metamask.io/api/v2/tokenIcons/assets/eip155/56/erc20/0x55d398326f99059ff775485246999027b3197955.png", - "metadata": { - "storage": { - "approval": 2, - "balance": 1 - } - }, - "name": "Tether USD", - "occurrences": 11, - "symbol": "USDT" - }, - "destChainId": 56, - "destTokenAmount": "643051937415596895", - "destWalletAddress": "0x30E8ccaD5A980BDF30447f8c2C48e70989D9d294", - "feeData": { - "metabridge": { - "amount": "8750000000000", - "asset": { - "address": "0x0000000000000000000000000000000000000000", - "aggregators": [], - "assetId": "eip155:56/slip44:714", - "chainId": 56, - "coingeckoId": "binancecoin", - "decimals": 18, - "iconUrl": "https://static.cx.metamask.io/api/v2/tokenIcons/assets/eip155/56/slip44/714.png", - "metadata": {}, - "name": "Binance Coin", - "occurrences": 100, - "symbol": "BNB" - }, - "baseBpsFee": 87.5, - "quoteBpsFee": 87.5 - } - }, - "gasIncluded": false, - "gasIncluded7702": false, - "gasSponsored": false, - "minDestTokenAmount": "630190898667284957", - "priceData": { - "priceImpact": "0.0001994277768846425", - "totalFeeAmountUsd": "0.005676562499999999", - "totalFromAmountUsd": "0.64875", - "totalToAmountUsd": "0.6429451907939858" - }, - "protocols": ["uniswap"], - "requestId": "0x831944a9be553e5ad96d2b3468017d85ef475c68c15c354c306ce50dc7319e7b", - "slippage": 2, - "srcAsset": { - "address": "0x0000000000000000000000000000000000000000", - "aggregators": [], - "assetId": "eip155:56/slip44:714", - "chainId": 56, - "coingeckoId": "binancecoin", - "decimals": 18, - "iconUrl": "https://static.cx.metamask.io/api/v2/tokenIcons/assets/eip155/56/slip44/714.png", - "metadata": {}, - "name": "Binance Coin", - "occurrences": 100, - "symbol": "BNB" - }, - "srcChainId": 56, - "srcTokenAmount": "991250000000000", - "steps": [], - "walletAddress": "0x30E8ccaD5A980BDF30447f8c2C48e70989D9d294" - }, - "slippagePercentage": 0, - "startTime": 1773247337833, - "status": { - "srcChain": { - "chainId": 56 - }, - "status": "PENDING" - }, - "txMetaId": "44485a40-1d69-11f1-9d96-3b0a0edc0d9a" - }, - "47870750-1d65-11f1-9bb1-3b0a0edc0d9a": { - "account": "0xf25bd11c334507fd007d584e2d0b7b2c6543f714", - "batchId": "0xd0911c792f43496eb0ed7f82f2c3f688", - "estimatedProcessingTimeInSeconds": 0, - "hasApprovalTx": false, - "isStxEnabled": true, - "location": "Main View", - "originalTransactionId": "47870750-1d65-11f1-9bb1-3b0a0edc0d9a", - "pricingData": { - "amountSent": "0.000040474389014254", - "amountSentInUsd": "0.026176159317304733410295414", - "quotedGasAmount": "0.000010852", - "quotedGasInUsd": "0.007018356245262932", - "quotedReturnInUsd": "0.01018708146279741833535620018397210555079356" - }, - "quote": { - "aggregator": "pancakeswap", - "aggregatorType": "AGG", - "bridgeId": "pancakeswap", - "bridges": ["pancakeswap"], - "destAsset": { - "address": "0x55d398326f99059ff775485246999027b3197955", - "aggregators": [ - "pancakeExtended", - "oneInch", - "liFi", - "socket", - "rubic", - "squid", - "rango", - "sonarwatch", - "sushiSwap" - ], - "assetId": "eip155:56/erc20:0x55d398326f99059ff775485246999027b3197955", - "chainId": 56, - "coingeckoId": "binance-bridged-usdt-bnb-smart-chain", - "decimals": 18, - "iconUrl": "https://static.cx.metamask.io/api/v2/tokenIcons/assets/eip155/56/erc20/0x55d398326f99059ff775485246999027b3197955.png", - "metadata": { - "storage": { - "approval": 2, - "balance": 1 - } - }, - "name": "Tether USD", - "occurrences": 11, - "symbol": "USDT" - }, - "destChainId": 56, - "destTokenAmount": "10187326439093364", - "destWalletAddress": "0xF25bd11C334507Fd007d584E2D0b7b2C6543f714", - "feeData": { - "metabridge": { - "amount": "354150903874", - "asset": { - "address": "0x0000000000000000000000000000000000000000", - "aggregators": [], - "assetId": "eip155:56/slip44:714", - "chainId": 56, - "coingeckoId": "binancecoin", - "decimals": 18, - "iconUrl": "https://static.cx.metamask.io/api/v2/tokenIcons/assets/eip155/56/slip44/714.png", - "metadata": {}, - "name": "Binance Coin", - "occurrences": 100, - "symbol": "BNB" - }, - "baseBpsFee": 87.5 - }, - "txFee": { - "amount": "24370200000000", - "asset": { - "address": "0x0000000000000000000000000000000000000000", - "aggregators": [], - "assetId": "eip155:56/slip44:714", - "chainId": 56, - "coingeckoId": "binancecoin", - "decimals": 18, - "iconUrl": "https://static.cx.metamask.io/api/v2/tokenIcons/assets/eip155/56/slip44/714.png", - "metadata": {}, - "name": "Binance Coin", - "occurrences": 100, - "symbol": "BNB" - }, - "maxFeePerGas": "60000000", - "maxPriorityFeePerGas": "60000000" - } - }, - "gasIncluded": true, - "gasIncluded7702": false, - "gasSponsored": false, - "minDestTokenAmount": "9983579910311496", - "priceData": { - "priceImpact": "0.6070446473367387", - "totalFeeAmountUsd": "0.00022884523106530131", - "totalFromAmountUsd": "0.026153740693230648", - "totalToAmountUsd": "0.010187326439093364" - }, - "protocols": ["pancakeswap"], - "requestId": "0x09b70608035ed3dd7c447a82ab279d7d78e7a5e4d7ee55fae2a43ccfa080deed", - "slippage": 2, - "srcAsset": { - "address": "0x0000000000000000000000000000000000000000", - "aggregators": [], - "assetId": "eip155:56/slip44:714", - "chainId": 56, - "coingeckoId": "binancecoin", - "decimals": 18, - "iconUrl": "https://static.cx.metamask.io/api/v2/tokenIcons/assets/eip155/56/slip44/714.png", - "metadata": {}, - "name": "Binance Coin", - "occurrences": 100, - "symbol": "BNB" - }, - "srcChainId": 56, - "srcTokenAmount": "15750038110380", - "steps": [], - "walletAddress": "0xF25bd11C334507Fd007d584E2D0b7b2C6543f714" - }, - "slippagePercentage": 0, - "startTime": 1773245625412, - "status": { - "srcChain": { - "chainId": 56 - }, - "status": "PENDING" - }, - "txMetaId": "47870750-1d65-11f1-9bb1-3b0a0edc0d9a" - }, - "493b1d60-182a-11f1-b7d6-03d70bc40886": { - "account": "0x30e8ccad5a980bdf30447f8c2c48e70989d9d294", - "approvalTxId": "48e05330-182a-11f1-b7d6-03d70bc40886", - "batchId": "0x25c43f86c74146e38d85a03a0888f637", - "estimatedProcessingTimeInSeconds": 0, - "hasApprovalTx": true, - "isStxEnabled": true, - "pricingData": { - "amountSent": "1", - "amountSentInUsd": "1.00067081101203147401595", - "quotedGasAmount": "0.072545114948331775", - "quotedGasInUsd": "0.007540566241394278023623975", - "quotedReturnInUsd": "0.989642100246917305032536936" - }, - "quote": { - "aggregator": "1inch", - "aggregatorType": "AGG", - "bridgeId": "1inch", - "bridges": ["1inch"], - "destAsset": { - "address": "0x0000000000000000000000000000000000000000", - "aggregators": [], - "assetId": "eip155:137/slip44:966", - "chainId": 137, - "coingeckoId": "matic-network", - "decimals": 18, - "iconUrl": "https://static.cx.metamask.io/api/v2/tokenIcons/assets/eip155/137/slip44/966.png", - "metadata": {}, - "name": "Polygon Ecosystem Token", - "occurrences": 100, - "symbol": "POL" - }, - "destChainId": 137, - "destTokenAmount": "9520995853866562984", - "destWalletAddress": "0x30E8ccaD5A980BDF30447f8c2C48e70989D9d294", - "feeData": { - "metabridge": { - "amount": "84044099592769156", - "asset": { - "address": "0x0000000000000000000000000000000000000000", - "aggregators": [], - "assetId": "eip155:137/slip44:966", - "chainId": 137, - "coingeckoId": "matic-network", - "decimals": 18, - "iconUrl": "https://static.cx.metamask.io/api/v2/tokenIcons/assets/eip155/137/slip44/966.png", - "metadata": {}, - "name": "Polygon Ecosystem Token", - "occurrences": 100, - "symbol": "POL" - }, - "baseBpsFee": 87.5, - "quoteBpsFee": 87.5 - } - }, - "gasIncluded7702": false, - "gasSponsored": false, - "minDestTokenAmount": "9330575936789231724", - "priceData": { - "priceImpact": "-0.0000489148237622546", - "totalFeeAmountUsd": "0.008740166137150028", - "totalFromAmountUsd": "0.9988272725", - "totalToAmountUsd": "0.9901359638228532" - }, - "protocols": ["1inch"], - "requestId": "0x649c1f456b4157ef54f8b9c7a86b3f6e79b42ecb13f7d25a4ac54c9337b173bd", - "slippage": 2, - "srcAsset": { - "address": "0xc2132d05d31c914a87c6611c10748aeb04b58e8f", - "aggregators": [ - "quickswap", - "oneInch", - "liFi", - "socket", - "squid", - "rango", - "sonarwatch", - "sushiSwap" - ], - "assetId": "eip155:137/erc20:0xc2132d05d31c914a87c6611c10748aeb04b58e8f", - "chainId": 137, - "coingeckoId": "polygon-bridged-usdt-polygon", - "decimals": 6, - "iconUrl": "https://static.cx.metamask.io/api/v2/tokenIcons/assets/eip155/137/erc20/0xc2132d05d31c914a87c6611c10748aeb04b58e8f.png", - "metadata": { - "storage": { - "approval": 1, - "balance": 0 - } - }, - "name": "Tether USD", - "occurrences": 8, - "symbol": "USDT" - }, - "srcChainId": 137, - "srcTokenAmount": "1000000", - "steps": [], - "walletAddress": "0x30E8ccaD5A980BDF30447f8c2C48e70989D9d294" - }, - "slippagePercentage": 0, - "startTime": 1772670531506, - "status": { - "srcChain": { - "chainId": 137 - }, - "status": "PENDING" - }, - "txMetaId": "493b1d60-182a-11f1-b7d6-03d70bc40886" - }, - "4942d7e0-2878-11f1-8216-1be6bb170c07": { - "account": "0xf25bd11c334507fd007d584e2d0b7b2c6543f714", - "batchId": "0x8470d2a8756b40e7a4e93bf8b5de0887", - "estimatedProcessingTimeInSeconds": 0, - "hasApprovalTx": false, - "isStxEnabled": false, - "location": "Main View", - "originalTransactionId": "4942d7e0-2878-11f1-8216-1be6bb170c07", - "pricingData": { - "amountSent": "0.002457784709369288", - "amountSentInUsd": "1.587128586531830657881676864", - "quotedGasAmount": "0.0000097986", - "quotedGasInUsd": "0.0063275022050168208", - "quotedReturnInUsd": "1.56251486732499065694562161294736891002443504" - }, - "quote": { - "aggregator": "uniswap", - "aggregatorType": "AGG", - "bridgeId": "uniswap", - "bridges": ["uniswap"], - "destAsset": { - "address": "0x55d398326f99059ff775485246999027b3197955", - "aggregators": [ - "pancakeExtended", - "oneInch", - "liFi", - "trustWallet", - "socket", - "rubic", - "squid", - "rango", - "sonarwatch", - "sushiSwap" - ], - "assetId": "eip155:56/erc20:0x55d398326f99059ff775485246999027b3197955", - "chainId": 56, - "coingeckoId": "binance-bridged-usdt-bnb-smart-chain", - "decimals": 18, - "iconUrl": "https://static.cx.metamask.io/api/v2/tokenIcons/assets/eip155/56/erc20/0x55d398326f99059ff775485246999027b3197955.png", - "metadata": { - "storage": { - "approval": 2, - "balance": 1 - } - }, - "name": "Tether USD", - "occurrences": 11, - "symbol": "USDT" - }, - "destChainId": 56, - "destTokenAmount": "1561141903403043962", - "destWalletAddress": "0xF25bd11C334507Fd007d584E2D0b7b2C6543f714", - "feeData": { - "metabridge": { - "amount": "21505616206981", - "asset": { - "address": "0x0000000000000000000000000000000000000000", - "aggregators": [], - "assetId": "eip155:56/slip44:714", - "chainId": 56, - "coingeckoId": "binancecoin", - "decimals": 18, - "iconUrl": "https://static.cx.metamask.io/api/v2/tokenIcons/assets/eip155/56/slip44/714.png", - "metadata": {}, - "name": "Binance Coin", - "occurrences": 100, - "symbol": "BNB" - }, - "baseBpsFee": 87.5, - "quoteBpsFee": 87.5 - }, - "txFee": { - "amount": "19880730000000", - "asset": { - "address": "0x0000000000000000000000000000000000000000", - "aggregators": [], - "assetId": "eip155:56/slip44:714", - "chainId": 56, - "coingeckoId": "binancecoin", - "decimals": 18, - "iconUrl": "https://static.cx.metamask.io/api/v2/tokenIcons/assets/eip155/56/slip44/714.png", - "metadata": {}, - "name": "Binance Coin", - "occurrences": 100, - "symbol": "BNB" - }, - "maxFeePerGas": "60000000", - "maxPriorityFeePerGas": "60000000" - } - }, - "gasIncluded": true, - "gasIncluded7702": false, - "gasSponsored": false, - "minDestTokenAmount": "1529919065334983082", - "priceData": { - "priceImpact": "0.008275116415453818", - "totalFeeAmountUsd": "0.013882520430092445", - "totalFromAmountUsd": "1.5865737634391563", - "totalToAmountUsd": "1.5607172728053182" - }, - "protocols": ["uniswap"], - "requestId": "0xf12c783e634b85fdd393f8bad73d6fe4a001681f1b71fea7d50fa3a17355e73e", - "slippage": 2, - "srcAsset": { - "address": "0x0000000000000000000000000000000000000000", - "aggregators": [], - "assetId": "eip155:56/slip44:714", - "chainId": 56, - "coingeckoId": "binancecoin", - "decimals": 18, - "iconUrl": "https://static.cx.metamask.io/api/v2/tokenIcons/assets/eip155/56/slip44/714.png", - "metadata": {}, - "name": "Binance Coin", - "occurrences": 100, - "symbol": "BNB" - }, - "srcChainId": 56, - "srcTokenAmount": "2416398363162307", - "steps": [], - "walletAddress": "0xF25bd11C334507Fd007d584E2D0b7b2C6543f714" - }, - "slippagePercentage": 0, - "startTime": 1774463251413, - "status": { - "srcChain": { - "chainId": 56, - "txHash": "0x16eba8645da99424b4f940e076f330246a6fbb6d8edbcf80b65ff93b84fc4570" - }, - "status": "FAILED" - }, - "txMetaId": "4942d7e0-2878-11f1-8216-1be6bb170c07" - }, - "4ce80790-127e-11f1-9739-356d45d675c3": { - "account": "0x30e8ccad5a980bdf30447f8c2c48e70989d9d294", - "batchId": "0xc52c99bea2bf420fb2147078d68dcc03", - "completionTime": 1772046942421, - "estimatedProcessingTimeInSeconds": 10, - "hasApprovalTx": false, - "isStxEnabled": true, - "pricingData": { - "amountSent": "0.005", - "amountSentInUsd": "3.14723733049", - "quotedGasAmount": "0.00002748215", - "quotedGasInUsd": "0.0172985696804251507", - "quotedReturnInUsd": "3.1147341951983926620382" - }, - "quote": { - "aggregator": "mayan", - "bridgeId": "mayan", - "bridges": ["mayan"], - "destAsset": { - "address": "0x0000000000000000000000000000000000000000", - "aggregators": [], - "assetId": "eip155:137/slip44:966", - "chainId": 137, - "coingeckoId": "matic-network", - "decimals": 18, - "iconUrl": "https://static.cx.metamask.io/api/v2/tokenIcons/assets/eip155/137/slip44/966.png", - "metadata": {}, - "name": "Polygon Ecosystem Token", - "occurrences": 100, - "symbol": "POL" - }, - "destChainId": 137, - "destTokenAmount": "26700506612255900000", - "feeData": { - "metabridge": { - "amount": "43750000000000", - "asset": { - "address": "0x0000000000000000000000000000000000000000", - "aggregators": [], - "assetId": "eip155:56/slip44:714", - "chainId": 56, - "coingeckoId": "binancecoin", - "decimals": 18, - "iconUrl": "https://static.cx.metamask.io/api/v2/tokenIcons/assets/eip155/56/slip44/714.png", - "metadata": {}, - "name": "Binance Coin", - "occurrences": 100, - "symbol": "BNB" - }, - "baseBpsFee": 87.5, - "quoteBpsFee": 87.5 - } - }, - "minDestTokenAmount": "26166496480010800000", - "priceData": { - "priceImpact": "0.0018524393988291262", - "totalFeeAmountUsd": "0.027542812499999996", - "totalFromAmountUsd": "3.14775", - "totalToAmountUsd": "3.114427192773365" - }, - "protocols": ["mayan"], - "requestId": "0x97ef1deaa9f0f316c1949cbbecd9b802ae32f6de2fbc54a1feb26ce0f313c445", - "slippage": 2, - "srcAsset": { - "address": "0x0000000000000000000000000000000000000000", - "aggregators": [], - "assetId": "eip155:56/slip44:714", - "chainId": 56, - "coingeckoId": "binancecoin", - "decimals": 18, - "iconUrl": "https://static.cx.metamask.io/api/v2/tokenIcons/assets/eip155/56/slip44/714.png", - "metadata": {}, - "name": "Binance Coin", - "occurrences": 100, - "symbol": "BNB" - }, - "srcChainId": 56, - "srcTokenAmount": "4956250000000000", - "steps": [ - { - "action": "bridge", - "destAmount": "26700506612255900000", - "destAsset": { - "address": "0x0000000000000000000000000000000000000000", - "aggregators": [], - "assetId": "eip155:137/slip44:966", - "chainId": 137, - "coingeckoId": "matic-network", - "decimals": 18, - "iconUrl": "https://static.cx.metamask.io/api/v2/tokenIcons/assets/eip155/137/slip44/966.png", - "metadata": {}, - "name": "Polygon Ecosystem Token", - "occurrences": 100, - "symbol": "POL" - }, - "destChainId": 137, - "protocol": { - "displayName": "Mayan", - "name": "Mayan" - }, - "srcAmount": "4956250000000000", - "srcAsset": { - "address": "0x0000000000000000000000000000000000000000", - "aggregators": [], - "assetId": "eip155:56/slip44:714", - "chainId": 56, - "coingeckoId": "binancecoin", - "decimals": 18, - "iconUrl": "https://static.cx.metamask.io/api/v2/tokenIcons/assets/eip155/56/slip44/714.png", - "metadata": {}, - "name": "Binance Coin", - "occurrences": 100, - "symbol": "BNB" - }, - "srcChainId": 56 - } - ] - }, - "slippagePercentage": 0, - "startTime": 1772046909061, - "status": { - "destChain": { - "amount": "26671498719979143517", - "chainId": 137, - "token": { - "address": "0x0000000000000000000000000000000000000000", - "aggregators": [], - "assetId": "eip155:137/slip44:966", - "chainId": 137, - "coingeckoId": "matic-network", - "decimals": 18, - "iconUrl": "https://static.cx.metamask.io/api/v2/tokenIcons/assets/eip155/137/slip44/966.png", - "metadata": {}, - "name": "Polygon Ecosystem Token", - "occurrences": 100, - "symbol": "POL" - }, - "txHash": "0x997263f0c88d7aa8ddd8aeefd81602344c6267cbd901abd01c84972ae973d069" - }, - "srcChain": { - "amount": "3124885274879737153", - "chainId": 56, - "token": { - "address": "0x0000000000000000000000000000000000000000", - "aggregators": [], - "assetId": "eip155:56/slip44:714", - "chainId": 56, - "coingeckoId": "binancecoin", - "decimals": 18, - "iconUrl": "https://static.cx.metamask.io/api/v2/tokenIcons/assets/eip155/56/slip44/714.png", - "metadata": {}, - "name": "Binance Coin", - "occurrences": 100, - "symbol": "BNB" - }, - "txHash": "0x7aac367e21bcab0f485d0c82c397da9daf19497aef224b951ff55c68a07bc4bd" - }, - "status": "COMPLETE" - }, - "txMetaId": "4ce80790-127e-11f1-9739-356d45d675c3" - }, - "4d5f6500-127f-11f1-ab37-c95c44564d21": { - "account": "0x30e8ccad5a980bdf30447f8c2c48e70989d9d294", - "approvalTxId": "4d5b6d60-127f-11f1-ab37-c95c44564d21", - "batchId": "0xb79b1d97012841db8cba0dc19b3b0d10", - "estimatedProcessingTimeInSeconds": 0, - "hasApprovalTx": true, - "isStxEnabled": true, - "pricingData": { - "amountSent": "3.126955256342945574", - "amountSentInUsd": "3.126955256342945574", - "quotedGasAmount": "0.0000255323", - "quotedGasInUsd": "0.016106285486", - "quotedReturnInUsd": "3.0999058539059553812" - }, - "quote": { - "aggregator": "okx", - "aggregatorType": "AGG", - "bridgeId": "okx", - "bridges": ["okx"], - "destAsset": { - "address": "0x0000000000000000000000000000000000000000", - "aggregators": [], - "assetId": "eip155:56/slip44:714", - "chainId": 56, - "coingeckoId": "binancecoin", - "decimals": 18, - "iconUrl": "https://static.cx.metamask.io/api/v2/tokenIcons/assets/eip155/56/slip44/714.png", - "metadata": {}, - "name": "Binance Coin", - "occurrences": 100, - "symbol": "BNB" - }, - "destChainId": 56, - "destTokenAmount": "4914089366072660", - "destWalletAddress": "0x30E8ccaD5A980BDF30447f8c2C48e70989D9d294", - "feeData": { - "metabridge": { - "amount": "43377838035950", - "asset": { - "address": "0x0000000000000000000000000000000000000000", - "aggregators": [], - "assetId": "eip155:56/slip44:714", - "chainId": 56, - "coingeckoId": "binancecoin", - "decimals": 18, - "iconUrl": "https://static.cx.metamask.io/api/v2/tokenIcons/assets/eip155/56/slip44/714.png", - "metadata": {}, - "name": "Binance Coin", - "occurrences": 100, - "symbol": "BNB" - }, - "baseBpsFee": 87.5, - "quoteBpsFee": 87.5 - } - }, - "gasIncluded7702": false, - "gasSponsored": false, - "minDestTokenAmount": "4815807578751206", - "priceData": { - "priceImpact": "-0.00010048284260244137", - "totalFeeAmountUsd": "0.027363607789837985", - "totalFromAmountUsd": "3.1269552563429457", - "totalToAmountUsd": "3.0999058539059554" - }, - "protocols": ["okx"], - "requestId": "0x6e25040bddc75ae8c154f5f3ecc6a32fff1d3fc5327f9655c425c501e5d5e2d0", - "slippage": 2, - "srcAsset": { - "address": "0x55d398326f99059ff775485246999027b3197955", - "aggregators": [ - "pancakeExtended", - "oneInch", - "liFi", - "socket", - "squid", - "rango", - "sonarwatch", - "sushiSwap" - ], - "assetId": "eip155:56/erc20:0x55d398326f99059ff775485246999027b3197955", - "chainId": 56, - "coingeckoId": "binance-bridged-usdt-bnb-smart-chain", - "decimals": 18, - "iconUrl": "https://static.cx.metamask.io/api/v2/tokenIcons/assets/eip155/56/erc20/0x55d398326f99059ff775485246999027b3197955.png", - "metadata": { - "storage": { - "approval": 2, - "balance": 1 - } - }, - "name": "Tether USD", - "occurrences": 8, - "symbol": "USDT" - }, - "srcChainId": 56, - "srcTokenAmount": "3126955256342945574", - "steps": [], - "walletAddress": "0x30E8ccaD5A980BDF30447f8c2C48e70989D9d294" - }, - "slippagePercentage": 0, - "startTime": 1772047339272, - "status": { - "srcChain": { - "chainId": 56 - }, - "status": "PENDING" - }, - "txMetaId": "4d5f6500-127f-11f1-ab37-c95c44564d21" - }, - "4da7b470-287f-11f1-8a10-87a6b7d6d04e": { - "account": "0xf25bd11c334507fd007d584e2d0b7b2c6543f714", - "batchId": "0x0c6352185e874214845c1a9839ec8cc2", - "estimatedProcessingTimeInSeconds": 0, - "hasApprovalTx": false, - "isStxEnabled": false, - "location": "Main View", - "originalTransactionId": "4da7b470-287f-11f1-8a10-87a6b7d6d04e", - "pricingData": { - "amountSent": "0.001958090214518098", - "amountSentInUsd": "1.264740006380802782589802256", - "quotedGasAmount": "0.000013758", - "quotedGasInUsd": "0.008886359207953776", - "quotedReturnInUsd": "1.23716391360197022425405356803759013059545984" - }, - "quote": { - "aggregator": "0x", - "aggregatorType": "AGG", - "bridgeId": "0x", - "bridges": ["0x"], - "destAsset": { - "address": "0x55d398326f99059ff775485246999027b3197955", - "aggregators": [ - "pancakeExtended", - "oneInch", - "liFi", - "trustWallet", - "socket", - "rubic", - "squid", - "rango", - "sonarwatch", - "sushiSwap" - ], - "assetId": "eip155:56/erc20:0x55d398326f99059ff775485246999027b3197955", - "chainId": 56, - "coingeckoId": "binance-bridged-usdt-bnb-smart-chain", - "decimals": 18, - "iconUrl": "https://static.cx.metamask.io/api/v2/tokenIcons/assets/eip155/56/erc20/0x55d398326f99059ff775485246999027b3197955.png", - "metadata": { - "storage": { - "approval": 2, - "balance": 1 - } - }, - "name": "Tether USD", - "occurrences": 11, - "symbol": "USDT" - }, - "destChainId": 56, - "destTokenAmount": "1237543839561436868", - "destWalletAddress": "0xF25bd11C334507Fd007d584E2D0b7b2C6543f714", - "feeData": { - "metabridge": { - "amount": "17133289377033", - "asset": { - "address": "0x0000000000000000000000000000000000000000", - "aggregators": [], - "assetId": "eip155:56/slip44:714", - "chainId": 56, - "coingeckoId": "binancecoin", - "decimals": 18, - "iconUrl": "https://static.cx.metamask.io/api/v2/tokenIcons/assets/eip155/56/slip44/714.png", - "metadata": {}, - "name": "Binance Coin", - "occurrences": 100, - "symbol": "BNB" - }, - "baseBpsFee": 87.5, - "quoteBpsFee": 87.5 - }, - "txFee": { - "amount": "26529210000000", - "asset": { - "address": "0x0000000000000000000000000000000000000000", - "aggregators": [], - "assetId": "eip155:56/slip44:714", - "chainId": 56, - "coingeckoId": "binancecoin", - "decimals": 18, - "iconUrl": "https://static.cx.metamask.io/api/v2/tokenIcons/assets/eip155/56/slip44/714.png", - "metadata": {}, - "name": "Binance Coin", - "occurrences": 100, - "symbol": "BNB" - }, - "maxFeePerGas": "60000000", - "maxPriorityFeePerGas": "60000000" - } - }, - "gasIncluded": true, - "gasIncluded7702": false, - "gasSponsored": false, - "minDestTokenAmount": "1212792962770208130", - "priceData": { - "priceImpact": "0.00857604949139002", - "totalFeeAmountUsd": "0.0110687902691384", - "totalFromAmountUsd": "1.265004602187272", - "totalToAmountUsd": "1.2371639136026915" - }, - "protocols": ["0x"], - "requestId": "0x02f6cb60906c5412959a9af2b8f894e4ba5ddec5254d5eb699b0b2ff0c03af1b", - "slippage": 2, - "srcAsset": { - "address": "0x0000000000000000000000000000000000000000", - "aggregators": [], - "assetId": "eip155:56/slip44:714", - "chainId": 56, - "coingeckoId": "binancecoin", - "decimals": 18, - "iconUrl": "https://static.cx.metamask.io/api/v2/tokenIcons/assets/eip155/56/slip44/714.png", - "metadata": {}, - "name": "Binance Coin", - "occurrences": 100, - "symbol": "BNB" - }, - "srcChainId": 56, - "srcTokenAmount": "1914427715141065", - "steps": [], - "walletAddress": "0xF25bd11C334507Fd007d584E2D0b7b2C6543f714" - }, - "slippagePercentage": 0, - "startTime": 1774466265248, - "status": { - "srcChain": { - "chainId": 56, - "txHash": "0x24c05fae8dc1a6132fbf2c35bd0f6f6b10e0041ba70d30b753a396a5a02f1c7c" - }, - "status": "FAILED" - }, - "txMetaId": "4da7b470-287f-11f1-8a10-87a6b7d6d04e" - }, - "4f6532f0-2e11-11f1-ae93-535abbd777f7": { - "account": "0x141d32a89a1e0a5ef360034a2f60a4b917c18838", - "batchId": "0x90c662d327b543778a5529e7d0d6ef89", - "estimatedProcessingTimeInSeconds": 0, - "hasApprovalTx": false, - "isStxEnabled": true, - "location": "Main View", - "originalTransactionId": "4f6532f0-2e11-11f1-ae93-535abbd777f7", - "pricingData": { - "amountSent": "1", - "amountSentInUsd": "2152.531888759", - "quotedGasAmount": "0.001258196898863625", - "quotedGasInUsd": "2.708308947141635222011491375", - "quotedReturnInUsd": "2158.606220922276509480773077079871689" - }, - "quote": { - "aggregator": "kyberswap", - "aggregatorType": "AGG", - "bridgeId": "kyberswap", - "bridges": ["kyberswap"], - "destAsset": { - "address": "0xaca92e438df0b2401ff60da7e4337b687a2435da", - "aggregators": ["metamask", "liFi", "socket", "rubic", "rango"], - "assetId": "eip155:1/erc20:0xaca92e438df0b2401ff60da7e4337b687a2435da", - "chainId": 1, - "decimals": 6, - "iconUrl": "https://static.cx.metamask.io/api/v2/tokenIcons/assets/eip155/1/erc20/0xaca92e438df0b2401ff60da7e4337b687a2435da.png", - "metadata": {}, - "name": "MetaMask USD", - "occurrences": 5, - "symbol": "MUSD" - }, - "destChainId": 1, - "destTokenAmount": "2158874897", - "destWalletAddress": "0x141d32a89a1e0a5Ef360034a2f60a4B917c18838", - "feeData": { - "metabridge": { - "amount": "0", - "asset": { - "address": "0x0000000000000000000000000000000000000000", - "aggregators": [], - "assetId": "eip155:1/slip44:60", - "chainId": 1, - "coingeckoId": "ethereum", - "decimals": 18, - "iconUrl": "https://static.cx.metamask.io/api/v2/tokenIcons/assets/eip155/1/slip44/60.png", - "metadata": {}, - "name": "Ether", - "occurrences": 100, - "symbol": "ETH" - }, - "baseBpsFee": 87.5, - "quoteBpsFee": 0 - } - }, - "gasIncluded": false, - "gasIncluded7702": false, - "gasSponsored": false, - "minDestTokenAmount": "2115697399", - "priceData": { - "priceImpact": "-0.0029951868676847022", - "totalFeeAmountUsd": "0", - "totalFromAmountUsd": "2151.92", - "totalToAmountUsd": "2158.365402524308" - }, - "protocols": ["kyberswap"], - "requestId": "0x28e9917fbba6d933fe7ab51551df13e40799b2f6eb9b0db4bd10a1ff570de699", - "slippage": 2, - "srcAsset": { - "address": "0x0000000000000000000000000000000000000000", - "aggregators": [], - "assetId": "eip155:1/slip44:60", - "chainId": 1, - "coingeckoId": "ethereum", - "decimals": 18, - "iconUrl": "https://static.cx.metamask.io/api/v2/tokenIcons/assets/eip155/1/slip44/60.png", - "metadata": {}, - "name": "Ether", - "occurrences": 100, - "symbol": "ETH" - }, - "srcChainId": 1, - "srcTokenAmount": "1000000000000000000", - "steps": [], - "walletAddress": "0x141d32a89a1e0a5Ef360034a2f60a4B917c18838" - }, - "slippagePercentage": 0, - "startTime": 1775078730516, - "status": { - "srcChain": { - "chainId": 1 - }, - "status": "PENDING" - }, - "txMetaId": "4f6532f0-2e11-11f1-ae93-535abbd777f7" - }, - "4f662090-286f-11f1-9eba-5fbe36423c6b": { - "account": "0xf25bd11c334507fd007d584e2d0b7b2c6543f714", - "batchId": "0x25663cf0d63e4ec0bfb627371e935deb", - "estimatedProcessingTimeInSeconds": 0, - "hasApprovalTx": false, - "isStxEnabled": false, - "location": "Main View", - "originalTransactionId": "4f662090-286f-11f1-9eba-5fbe36423c6b", - "pricingData": { - "amountSent": "0.002995898652279377", - "amountSentInUsd": "1.935110174957660128204611237", - "quotedGasAmount": "0.000011985", - "quotedGasInUsd": "0.007741348469589285", - "quotedReturnInUsd": "1.90363362983538428389183960871062606975771806" - }, - "quote": { - "aggregator": "pancakeswap", - "aggregatorType": "AGG", - "bridgeId": "pancakeswap", - "bridges": ["pancakeswap"], - "destAsset": { - "address": "0x55d398326f99059ff775485246999027b3197955", - "aggregators": [ - "pancakeExtended", - "oneInch", - "liFi", - "trustWallet", - "socket", - "squid", - "rango", - "sonarwatch", - "sushiSwap" - ], - "assetId": "eip155:56/erc20:0x55d398326f99059ff775485246999027b3197955", - "chainId": 56, - "coingeckoId": "binance-bridged-usdt-bnb-smart-chain", - "decimals": 18, - "iconUrl": "https://static.cx.metamask.io/api/v2/tokenIcons/assets/eip155/56/erc20/0x55d398326f99059ff775485246999027b3197955.png", - "metadata": { - "storage": { - "approval": 2, - "balance": 1 - } - }, - "name": "Tether USD", - "occurrences": 9, - "symbol": "USDT" - }, - "destChainId": 56, - "destTokenAmount": "1904170605947383921", - "destWalletAddress": "0xF25bd11C334507Fd007d584E2D0b7b2C6543f714", - "feeData": { - "metabridge": { - "amount": "26214113207444", - "asset": { - "address": "0x0000000000000000000000000000000000000000", - "aggregators": [], - "assetId": "eip155:56/slip44:714", - "chainId": 56, - "coingeckoId": "binancecoin", - "decimals": 18, - "iconUrl": "https://static.cx.metamask.io/api/v2/tokenIcons/assets/eip155/56/slip44/714.png", - "metadata": {}, - "name": "Binance Coin", - "occurrences": 100, - "symbol": "BNB" - }, - "baseBpsFee": 87.5, - "quoteBpsFee": 87.5 - }, - "txFee": { - "amount": "24376860000000", - "asset": { - "address": "0x0000000000000000000000000000000000000000", - "aggregators": [], - "assetId": "eip155:56/slip44:714", - "chainId": 56, - "coingeckoId": "binancecoin", - "decimals": 18, - "iconUrl": "https://static.cx.metamask.io/api/v2/tokenIcons/assets/eip155/56/slip44/714.png", - "metadata": {}, - "name": "Binance Coin", - "occurrences": 100, - "symbol": "BNB" - }, - "maxFeePerGas": "60000000", - "maxPriorityFeePerGas": "60000000" - } - }, - "gasIncluded": true, - "gasIncluded7702": false, - "gasSponsored": false, - "minDestTokenAmount": "1866087193828436242", - "priceData": { - "priceImpact": "0.008319140639308085", - "totalFeeAmountUsd": "0.016934317132008825", - "totalFromAmountUsd": "1.9353505293724775", - "totalToAmountUsd": "1.9036336298365069" - }, - "protocols": ["pancakeswap"], - "requestId": "0xbcca252657fd32bfeacda82d6148b44d9ba35e281dcc565914bf9e70285bcf20", - "slippage": 2, - "srcAsset": { - "address": "0x0000000000000000000000000000000000000000", - "aggregators": [], - "assetId": "eip155:56/slip44:714", - "chainId": 56, - "coingeckoId": "binancecoin", - "decimals": 18, - "iconUrl": "https://static.cx.metamask.io/api/v2/tokenIcons/assets/eip155/56/slip44/714.png", - "metadata": {}, - "name": "Binance Coin", - "occurrences": 100, - "symbol": "BNB" - }, - "srcChainId": 56, - "srcTokenAmount": "2945307679071933", - "steps": [], - "walletAddress": "0xF25bd11C334507Fd007d584E2D0b7b2C6543f714" - }, - "slippagePercentage": 0, - "startTime": 1774459396248, - "status": { - "srcChain": { - "chainId": 56, - "txHash": "0xc00a04fb95130719e482038fdac80e11a2f96ed91806b3f6055e0983bf8f6b19" - }, - "status": "FAILED" - }, - "txMetaId": "4f662090-286f-11f1-9eba-5fbe36423c6b" - }, - "53814750-4ff1-11f1-b329-9d6502987406": { - "account": "0x141d32a89a1e0a5ef360034a2f60a4b917c18838", - "batchId": "0x19e28fdf541", - "estimatedProcessingTimeInSeconds": 0, - "hasApprovalTx": true, - "isStxEnabled": false, - "location": "Main View", - "originalTransactionId": "53814750-4ff1-11f1-b329-9d6502987406", - "pricingData": { - "amountSent": "1.62146625653115313", - "amountSentInUsd": "16.97675170587493057753293970368779201808248", - "quotedGasAmount": "0.0000124996", - "quotedGasInUsd": "0.0084746153697048856", - "quotedReturnInUsd": "1.6068845860634657276911042399848508414811425" - }, - "quote": { - "aggregator": "uniswap", - "aggregatorType": "AGG", - "bridgeId": "uniswap", - "bridges": ["uniswap"], - "destAsset": { - "address": "0x55d398326f99059ff775485246999027b3197955", - "aggregators": [ - "pancakeExtended", - "oneInch", - "liFi", - "trustWallet", - "socket", - "rubic", - "squid", - "rango", - "sonarwatch", - "sushiSwap" - ], - "assetId": "eip155:56/erc20:0x55d398326f99059ff775485246999027b3197955", - "chainId": 56, - "coingeckoId": "binance-bridged-usdt-bnb-smart-chain", - "decimals": 18, - "iconUrl": "https://static.cx.metamask.io/api/v2/tokenIcons/assets/eip155/56/erc20/0x55d398326f99059ff775485246999027b3197955.png", - "metadata": { - "storage": { - "approval": 2, - "balance": 1 - } - }, - "name": "Tether USD", - "occurrences": 10, - "symbol": "USDT" - }, - "destChainId": 56, - "destTokenAmount": "1607141728740661855", - "destWalletAddress": "0x141d32a89a1e0a5ef360034a2f60a4b917c18838", - "feeData": { - "metabridge": { - "amount": "14187829744647589", - "asset": { - "address": "0x1af3f329e8be154074d8769d1ffa4ee058b1dbc3", - "aggregators": [ - "pancakeExtended", - "oneInch", - "liFi", - "trustWallet", - "socket", - "rubic", - "rango", - "sonarwatch", - "sushiSwap" - ], - "assetId": "eip155:56/erc20:0x1af3f329e8be154074d8769d1ffa4ee058b1dbc3", - "chainId": 56, - "coingeckoId": "binance-peg-dai", - "decimals": 18, - "iconUrl": "https://static.cx.metamask.io/api/v2/tokenIcons/assets/eip155/56/erc20/0x1af3f329e8be154074d8769d1ffa4ee058b1dbc3.png", - "metadata": { - "storage": { - "approval": 2, - "balance": 1 - } - }, - "name": "BNB pegged Dai Token", - "occurrences": 9, - "symbol": "DAI" - }, - "baseBpsFee": 87.5, - "quoteBpsFee": 87.5, - "usd": "0.014186155421895753" - } - }, - "gasIncluded": false, - "gasIncluded7702": false, - "gasSponsored": false, - "minDestTokenAmount": "1574998894165848617", - "priceData": { - "priceImpact": "0.00012703957610532215", - "totalFeeAmountUsd": "0.014186155421895753", - "totalFromAmountUsd": "1.6212749053595148", - "totalToAmountUsd": "1.6068845860640633" - }, - "protocols": ["uniswap"], - "requestId": "0x431a784827d7a52a3aa2f819feee3e056bad10578b2cd6039b0134b5f4c71b85", - "slippage": 2, - "srcAsset": { - "address": "0x1af3f329e8be154074d8769d1ffa4ee058b1dbc3", - "aggregators": [ - "pancakeExtended", - "oneInch", - "liFi", - "trustWallet", - "socket", - "rubic", - "rango", - "sonarwatch", - "sushiSwap" - ], - "assetId": "eip155:56/erc20:0x1af3f329e8be154074d8769d1ffa4ee058b1dbc3", - "chainId": 56, - "coingeckoId": "binance-peg-dai", - "decimals": 18, - "iconUrl": "https://static.cx.metamask.io/api/v2/tokenIcons/assets/eip155/56/erc20/0x1af3f329e8be154074d8769d1ffa4ee058b1dbc3.png", - "metadata": { - "storage": { - "approval": 2, - "balance": 1 - } - }, - "name": "BNB pegged Dai Token", - "occurrences": 9, - "symbol": "DAI" - }, - "srcChainId": 56, - "srcTokenAmount": "1607278426786505541", - "steps": [], - "walletAddress": "0x141d32a89a1e0a5ef360034a2f60a4b917c18838" - }, - "slippagePercentage": 0, - "startTime": 1778803332961, - "status": { - "srcChain": { - "chainId": 56, - "txHash": "0x4f276a96fc9eb03c9250127caf964284ce56d1e024316981db50372d83b05f6c" - }, - "status": "COMPLETE" - }, - "tokenSecurityTypeDestination": null, - "txMetaId": "53814750-4ff1-11f1-b329-9d6502987406" - }, - "563eafe0-39c7-11f1-a22e-3727d90ba13b": { - "account": "0x141d32a89a1e0a5ef360034a2f60a4b917c18838", - "batchId": "0xbb15bdb911894b408de56bc7eed766c1", - "completionTime": 1776366387031, - "estimatedProcessingTimeInSeconds": 2, - "hasApprovalTx": false, - "isStxEnabled": true, - "location": "Main View", - "originalTransactionId": "563eafe0-39c7-11f1-a22e-3727d90ba13b", - "pricingData": { - "amountSent": "0.009978415725346128", - "amountSentInUsd": "23.392662778241671753687926528", - "quotedGasAmount": "0.000186370015600398", - "quotedGasInUsd": "0.436912135845545006227398048", - "quotedReturnInUsd": "22.611023315058376370122902864" - }, - "quote": { - "aggregator": "relay", - "bridgeId": "relay", - "bridges": ["Relay"], - "destAsset": { - "address": "0x0000000000000000000000000000000000000000", - "aggregators": [ - "traderJoe", - "oneInch", - "liFi", - "socket", - "rubic", - "squid", - "rango", - "sonarwatch", - "sushiSwap" - ], - "assetId": "eip155:42161/slip44:60", - "chainId": 42161, - "coingeckoId": "arbitrum", - "decimals": 18, - "iconUrl": "https://static.cx.metamask.io/api/v2/tokenIcons/assets/eip155/42161/slip44/60.png", - "metadata": { - "storage": { - "approval": 52, - "balance": 51 - } - }, - "name": "Ether", - "occurrences": 9, - "symbol": "ETH" - }, - "destChainId": 42161, - "destTokenAmount": "9644998209567039", - "feeData": { - "metabridge": { - "amount": "87311137596778", - "asset": { - "address": "0x0000000000000000000000000000000000000000", - "aggregators": [], - "assetId": "eip155:1/slip44:60", - "chainId": 1, - "coingeckoId": "ethereum", - "decimals": 18, - "iconUrl": "https://static.cx.metamask.io/api/v2/tokenIcons/assets/eip155/1/slip44/60.png", - "metadata": {}, - "name": "Ether", - "occurrences": 100, - "symbol": "ETH" - }, - "baseBpsFee": 87.5, - "quoteBpsFee": 87.5 - }, - "txFee": { - "amount": "236972959186090", - "asset": { - "address": "0x0000000000000000000000000000000000000000", - "aggregators": [], - "assetId": "eip155:1/slip44:60", - "chainId": 1, - "coingeckoId": "ethereum", - "decimals": 18, - "iconUrl": "https://static.cx.metamask.io/api/v2/tokenIcons/assets/eip155/1/slip44/60.png", - "metadata": {}, - "name": "Ether", - "occurrences": 100, - "symbol": "ETH" - }, - "maxFeePerGas": "2405880350", - "maxPriorityFeePerGas": "2100000001" - } - }, - "gasIncluded": true, - "gasIncluded7702": false, - "minDestTokenAmount": "9452098245375698", - "priceData": { - "priceImpact": "0.009777953641850492", - "totalFeeAmountUsd": "0.20468493141967709", - "totalFromAmountUsd": "23.392563590820405", - "totalToAmountUsd": "22.613724635234448" - }, - "protocols": ["Relay"], - "requestId": "0x7a5af23451acc87d57df1ecf4fe30b7342d0319785324fd287247566b948271a", - "srcAsset": { - "address": "0x0000000000000000000000000000000000000000", - "aggregators": [], - "assetId": "eip155:1/slip44:60", - "chainId": 1, - "coingeckoId": "ethereum", - "decimals": 18, - "iconUrl": "https://static.cx.metamask.io/api/v2/tokenIcons/assets/eip155/1/slip44/60.png", - "metadata": {}, - "name": "Ether", - "occurrences": 100, - "symbol": "ETH" - }, - "srcChainId": 1, - "srcTokenAmount": "9654131628563260", - "steps": [ - { - "action": "bridge", - "destAmount": "9644998209567039", - "destAsset": { - "address": "0x0000000000000000000000000000000000000000", - "aggregators": [ - "traderJoe", - "oneInch", - "liFi", - "socket", - "rubic", - "squid", - "rango", - "sonarwatch", - "sushiSwap" - ], - "assetId": "eip155:42161/slip44:60", - "chainId": 42161, - "coingeckoId": "arbitrum", - "decimals": 18, - "iconUrl": "https://static.cx.metamask.io/api/v2/tokenIcons/assets/eip155/42161/slip44/60.png", - "metadata": { - "storage": { - "approval": 52, - "balance": 51 - } - }, - "name": "Ether", - "occurrences": 9, - "symbol": "ETH" - }, - "destChainId": 42161, - "protocol": { - "name": "relay" - }, - "srcAmount": "9654131628563260", - "srcAsset": { - "address": "0x0000000000000000000000000000000000000000", - "aggregators": [], - "assetId": "eip155:1/slip44:60", - "chainId": 1, - "coingeckoId": "ethereum", - "decimals": 18, - "iconUrl": "https://static.cx.metamask.io/api/v2/tokenIcons/assets/eip155/1/slip44/60.png", - "metadata": {}, - "name": "Ether", - "occurrences": 100, - "symbol": "ETH" - }, - "srcChainId": 1 - } - ] - }, - "slippagePercentage": 0, - "startTime": 1776366373250, - "status": { - "bridge": "relay", - "destChain": { - "chainId": 42161, - "txHash": "0x80711caaa4fd650b455541f6afaa14cfefe6e004b5c3e65c3f574848ced9465a" - }, - "isExpectedToken": true, - "isUnrecognizedRouterAddress": false, - "srcChain": { - "chainId": 1, - "txHash": "0xf35aa01f3d30bca6d855deda71b9bb47108342dd8027e12dc4857a2ba5bdd52a" - }, - "status": "COMPLETE" - }, - "txMetaId": "563eafe0-39c7-11f1-a22e-3727d90ba13b" - }, - "60179360-1d6b-11f1-9f18-3b0a0edc0d9a": { - "account": "0x30e8ccad5a980bdf30447f8c2c48e70989d9d294", - "batchId": "0x04de425b1bc24b5598f0955ba3f854e1", - "estimatedProcessingTimeInSeconds": 0, - "hasApprovalTx": false, - "isStxEnabled": true, - "location": "Main View", - "originalTransactionId": "60179360-1d6b-11f1-9f18-3b0a0edc0d9a", - "pricingData": { - "amountSent": "0.001", - "amountSentInUsd": "0.648619441684", - "quotedGasAmount": "0.0000097091", - "quotedGasInUsd": "0.0062975110212541244", - "quotedReturnInUsd": "0.64140509665506483340304727859829370845775532" - }, - "quote": { - "aggregator": "uniswap", - "aggregatorType": "AGG", - "bridgeId": "uniswap", - "bridges": ["uniswap"], - "destAsset": { - "address": "0x55d398326f99059ff775485246999027b3197955", - "aggregators": [ - "pancakeExtended", - "oneInch", - "liFi", - "socket", - "rubic", - "squid", - "rango", - "sonarwatch", - "sushiSwap" - ], - "assetId": "eip155:56/erc20:0x55d398326f99059ff775485246999027b3197955", - "chainId": 56, - "coingeckoId": "binance-bridged-usdt-bnb-smart-chain", - "decimals": 18, - "iconUrl": "https://static.cx.metamask.io/api/v2/tokenIcons/assets/eip155/56/erc20/0x55d398326f99059ff775485246999027b3197955.png", - "metadata": { - "storage": { - "approval": 2, - "balance": 1 - } - }, - "name": "Tether USD", - "occurrences": 11, - "symbol": "USDT" - }, - "destChainId": 56, - "destTokenAmount": "642171558570144851", - "destWalletAddress": "0x30E8ccaD5A980BDF30447f8c2C48e70989D9d294", - "feeData": { - "metabridge": { - "amount": "8750000000000", - "asset": { - "address": "0x0000000000000000000000000000000000000000", - "aggregators": [], - "assetId": "eip155:56/slip44:714", - "chainId": 56, - "coingeckoId": "binancecoin", - "decimals": 18, - "iconUrl": "https://static.cx.metamask.io/api/v2/tokenIcons/assets/eip155/56/slip44/714.png", - "metadata": {}, - "name": "Binance Coin", - "occurrences": 100, - "symbol": "BNB" - }, - "baseBpsFee": 87.5, - "quoteBpsFee": 87.5 - } - }, - "gasIncluded": false, - "gasIncluded7702": false, - "gasSponsored": false, - "minDestTokenAmount": "629328127398741953", - "priceData": { - "priceImpact": "0.0023866090178761945", - "totalFeeAmountUsd": "0.005682162499999999", - "totalFromAmountUsd": "0.64939", - "totalToAmountUsd": "0.6421715585701449" - }, - "protocols": ["uniswap"], - "requestId": "0x7f9cb2702b52a0b57e364d065727ee33b355cc433d7ef2f1b90ba1ab8c574c87", - "slippage": 2, - "srcAsset": { - "address": "0x0000000000000000000000000000000000000000", - "aggregators": [], - "assetId": "eip155:56/slip44:714", - "chainId": 56, - "coingeckoId": "binancecoin", - "decimals": 18, - "iconUrl": "https://static.cx.metamask.io/api/v2/tokenIcons/assets/eip155/56/slip44/714.png", - "metadata": {}, - "name": "Binance Coin", - "occurrences": 100, - "symbol": "BNB" - }, - "srcChainId": 56, - "srcTokenAmount": "991250000000000", - "steps": [], - "walletAddress": "0x30E8ccaD5A980BDF30447f8c2C48e70989D9d294" - }, - "slippagePercentage": 0, - "startTime": 1773248243453, - "status": { - "srcChain": { - "chainId": 56 - }, - "status": "PENDING" - }, - "txMetaId": "60179360-1d6b-11f1-9f18-3b0a0edc0d9a" - }, - "601bb6f0-2880-11f1-946d-9d8a4fbc2cec": { - "account": "0x141d32a89a1e0a5ef360034a2f60a4b917c18838", - "approvalTxId": "6008a420-2880-11f1-946d-9d8a4fbc2cec", - "batchId": "0x2b32153cadcf45f49b5a4852be352b9d", - "estimatedProcessingTimeInSeconds": 0, - "hasApprovalTx": true, - "isStxEnabled": true, - "location": "Main View", - "originalTransactionId": "601bb6f0-2880-11f1-946d-9d8a4fbc2cec", - "pricingData": { - "amountSent": "6.73364", - "amountSentInUsd": "6.72902230654417112604008051223732", - "quotedGasAmount": "0.0000080671341042", - "quotedGasInUsd": "0.0174927566795508740163906", - "quotedReturnInUsd": "6.667680830719515719703870221" - }, - "quote": { - "aggregator": "uniswap", - "aggregatorType": "AGG", - "bridgeId": "uniswap", - "bridges": ["uniswap"], - "destAsset": { - "address": "0x0000000000000000000000000000000000000000", - "aggregators": [ - "traderJoe", - "oneInch", - "liFi", - "socket", - "rubic", - "squid", - "rango", - "sonarwatch", - "sushiSwap" - ], - "assetId": "eip155:42161/slip44:60", - "chainId": 42161, - "coingeckoId": "arbitrum", - "decimals": 18, - "iconUrl": "https://static.cx.metamask.io/api/v2/tokenIcons/assets/eip155/42161/slip44/60.png", - "metadata": { - "storage": { - "approval": 52, - "balance": 51 - } - }, - "name": "Ether", - "occurrences": 9, - "symbol": "ETH" - }, - "destChainId": 42161, - "destTokenAmount": "3074934180516997", - "destWalletAddress": "0x141d32a89a1e0a5Ef360034a2f60a4B917c18838", - "feeData": { - "metabridge": { - "amount": "58919", - "asset": { - "address": "0xaf88d065e77c8cc2239327c5edb3a432268e5831", - "aggregators": [ - "traderJoe", - "oneInch", - "liFi", - "socket", - "rubic", - "squid", - "rango", - "sonarwatch", - "sushiSwap" - ], - "assetId": "eip155:42161/erc20:0xaf88d065e77c8cc2239327c5edb3a432268e5831", - "chainId": 42161, - "coingeckoId": "usd-coin", - "decimals": 6, - "iconUrl": "https://static.cx.metamask.io/api/v2/tokenIcons/assets/eip155/42161/erc20/0xaf88d065e77c8cc2239327c5edb3a432268e5831.png", - "metadata": { - "storage": { - "approval": 10, - "balance": 9 - } - }, - "name": "USD Coin (Native)", - "occurrences": 9, - "symbol": "USDC" - }, - "baseBpsFee": 87.5, - "quoteBpsFee": 87.5 - } - }, - "gasIncluded": false, - "gasIncluded7702": false, - "gasSponsored": false, - "minDestTokenAmount": "3013435496906657", - "priceData": { - "priceImpact": "0.0004939061472603681", - "totalFeeAmountUsd": "0.058902561598999995", - "totalFromAmountUsd": "6.73176131444", - "totalToAmountUsd": "6.669562986883172" - }, - "protocols": ["uniswap"], - "requestId": "0x0a6dd43c9406f7df87dfb23361321f36ac3f71c179a8d1d93d89696e308cadaa", - "slippage": 2, - "srcAsset": { - "address": "0xaf88d065e77c8cc2239327c5edb3a432268e5831", - "aggregators": [ - "traderJoe", - "oneInch", - "liFi", - "socket", - "rubic", - "squid", - "rango", - "sonarwatch", - "sushiSwap" - ], - "assetId": "eip155:42161/erc20:0xaf88d065e77c8cc2239327c5edb3a432268e5831", - "chainId": 42161, - "coingeckoId": "usd-coin", - "decimals": 6, - "iconUrl": "https://static.cx.metamask.io/api/v2/tokenIcons/assets/eip155/42161/erc20/0xaf88d065e77c8cc2239327c5edb3a432268e5831.png", - "metadata": { - "storage": { - "approval": 10, - "balance": 9 - } - }, - "name": "USD Coin (Native)", - "occurrences": 9, - "symbol": "USDC" - }, - "srcChainId": 42161, - "srcTokenAmount": "6674721", - "steps": [], - "walletAddress": "0x141d32a89a1e0a5Ef360034a2f60a4B917c18838" - }, - "slippagePercentage": 0, - "startTime": 1774466725456, - "status": { - "srcChain": { - "chainId": 42161 - }, - "status": "PENDING" - }, - "txMetaId": "601bb6f0-2880-11f1-946d-9d8a4fbc2cec" - }, - "6293f610-27d4-11f1-bdc7-7be08aed0cd0": { - "account": "0xf25bd11c334507fd007d584e2d0b7b2c6543f714", - "batchId": "0x4533dc06e8c34725a41118b46c44eefb", - "estimatedProcessingTimeInSeconds": 0, - "hasApprovalTx": false, - "isStxEnabled": false, - "location": "Main View", - "originalTransactionId": "6293f610-27d4-11f1-bdc7-7be08aed0cd0", - "pricingData": { - "amountSent": "0.003248538809701272", - "amountSentInUsd": "2.065037901898153700441961984", - "quotedGasAmount": "0.0000097988", - "quotedGasInUsd": "0.0062289215485716736", - "quotedReturnInUsd": "2.03720033854561422319381902522746497377128448" - }, - "quote": { - "aggregator": "uniswap", - "aggregatorType": "AGG", - "bridgeId": "uniswap", - "bridges": ["uniswap"], - "destAsset": { - "address": "0x55d398326f99059ff775485246999027b3197955", - "aggregators": [ - "pancakeExtended", - "oneInch", - "liFi", - "trustWallet", - "socket", - "squid", - "rango", - "sonarwatch", - "sushiSwap" - ], - "assetId": "eip155:56/erc20:0x55d398326f99059ff775485246999027b3197955", - "chainId": 56, - "coingeckoId": "binance-bridged-usdt-bnb-smart-chain", - "decimals": 18, - "iconUrl": "https://static.cx.metamask.io/api/v2/tokenIcons/assets/eip155/56/erc20/0x55d398326f99059ff775485246999027b3197955.png", - "metadata": { - "storage": { - "approval": 2, - "balance": 1 - } - }, - "name": "Tether USD", - "occurrences": 9, - "symbol": "USDT" - }, - "destChainId": 56, - "destTokenAmount": "2038241880146651638", - "destWalletAddress": "0xF25bd11C334507Fd007d584E2D0b7b2C6543f714", - "feeData": { - "metabridge": { - "amount": "28424714584886", - "asset": { - "address": "0x0000000000000000000000000000000000000000", - "aggregators": [], - "assetId": "eip155:56/slip44:714", - "chainId": 56, - "coingeckoId": "binancecoin", - "decimals": 18, - "iconUrl": "https://static.cx.metamask.io/api/v2/tokenIcons/assets/eip155/56/slip44/714.png", - "metadata": {}, - "name": "Binance Coin", - "occurrences": 100, - "symbol": "BNB" - }, - "baseBpsFee": 87.5, - "quoteBpsFee": 87.5 - }, - "txFee": { - "amount": "19880370000000", - "asset": { - "address": "0x0000000000000000000000000000000000000000", - "aggregators": [], - "assetId": "eip155:56/slip44:714", - "chainId": 56, - "coingeckoId": "binancecoin", - "decimals": 18, - "iconUrl": "https://static.cx.metamask.io/api/v2/tokenIcons/assets/eip155/56/slip44/714.png", - "metadata": {}, - "name": "Binance Coin", - "occurrences": 100, - "symbol": "BNB" - }, - "maxFeePerGas": "60000000", - "maxPriorityFeePerGas": "60000000" - } - }, - "gasIncluded": true, - "gasIncluded7702": false, - "gasSponsored": false, - "minDestTokenAmount": "1997477042543718605", - "priceData": { - "priceImpact": "0.008612913640054076", - "totalFeeAmountUsd": "0.018091478091842392", - "totalFromAmountUsd": "2.0675974962105688", - "totalToAmountUsd": "2.037245179867256" - }, - "protocols": ["uniswap"], - "requestId": "0x79d7512658788621701dbd70974fe2ea23b17338e882c93b1a84b9a0eb872a2e", - "slippage": 2, - "srcAsset": { - "address": "0x0000000000000000000000000000000000000000", - "aggregators": [], - "assetId": "eip155:56/slip44:714", - "chainId": 56, - "coingeckoId": "binancecoin", - "decimals": 18, - "iconUrl": "https://static.cx.metamask.io/api/v2/tokenIcons/assets/eip155/56/slip44/714.png", - "metadata": {}, - "name": "Binance Coin", - "occurrences": 100, - "symbol": "BNB" - }, - "srcChainId": 56, - "srcTokenAmount": "3200233725116386", - "steps": [], - "walletAddress": "0xF25bd11C334507Fd007d584E2D0b7b2C6543f714" - }, - "slippagePercentage": 0, - "startTime": 1774392856246, - "status": { - "srcChain": { - "chainId": 56, - "txHash": "0x4f23859df285d5c21c0822b46837376bdb7639f4ca5eb7a1503430629f644841" - }, - "status": "FAILED" - }, - "txMetaId": "6293f610-27d4-11f1-bdc7-7be08aed0cd0" - }, - "629zuNU9bH6Y2hL4S4ewfSwWbEXfj6rFp7EUTf9oGsvKcYX2s2S5WLG2gTrm5aYhByo6aGSdYyCFDAuqrN3CpPuU": { - "account": "CyGir7UdxRCsNXkA89qH1P5p3Zhx11XxsE97WSfNMnLT", - "completionTime": 1775782718763, - "estimatedProcessingTimeInSeconds": 3, - "hasApprovalTx": false, - "isStxEnabled": false, - "location": "Main View", - "originalTransactionId": "629zuNU9bH6Y2hL4S4ewfSwWbEXfj6rFp7EUTf9oGsvKcYX2s2S5WLG2gTrm5aYhByo6aGSdYyCFDAuqrN3CpPuU", - "pricingData": { - "amountSent": "2.043238", - "amountSentInUsd": "2.043238", - "quotedGasAmount": "0.000005", - "quotedGasInUsd": "0.00041575", - "quotedReturnInUsd": "2.003826785510478605021986752" - }, - "quote": { - "aggregator": "relay", - "bridgeId": "relay", - "bridges": ["Relay"], - "destAsset": { - "address": "0x0000000000000000000000000000000000000000", - "aggregators": [], - "assetId": "eip155:43114/slip44:9005", - "chainId": 43114, - "coingeckoId": "avalanche-2", - "decimals": 18, - "iconUrl": "https://static.cx.metamask.io/api/v2/tokenIcons/assets/eip155/43114/slip44/9005.png", - "metadata": {}, - "name": "Avalanche", - "occurrences": 100, - "symbol": "AVAX" - }, - "destChainId": 43114, - "destTokenAmount": "214708000556451088", - "feeData": { - "metabridge": { - "amount": "17878", - "asset": { - "address": "EPjFWdd5AufqSSqeM2qN1xzybapC8G4wEGGkZwyTDt1v", - "aggregators": [ - "trustWallet", - "coinGecko", - "jupiter", - "orca", - "lifi" - ], - "assetId": "solana:5eykt4UsFv8P8NJdTREpY1vzqKqZKvdp/token:EPjFWdd5AufqSSqeM2qN1xzybapC8G4wEGGkZwyTDt1v", - "chainId": 1151111081099710, - "coingeckoId": "usd-coin", - "decimals": 6, - "iconUrl": "https://static.cx.metamask.io/api/v2/tokenIcons/assets/solana/5eykt4UsFv8P8NJdTREpY1vzqKqZKvdp/token/EPjFWdd5AufqSSqeM2qN1xzybapC8G4wEGGkZwyTDt1v.png", - "metadata": {}, - "name": "USD Coin", - "occurrences": 5, - "symbol": "USDC" - }, - "baseBpsFee": 87.5, - "quoteBpsFee": 87.5 - } - }, - "minDestTokenAmount": "207558224137921266", - "priceData": { - "priceImpact": "0.011957083308952314", - "totalFeeAmountUsd": "0.017877427904", - "totalFromAmountUsd": "2.043172616384", - "totalToAmountUsd": "2.0010785651861243" - }, - "protocols": ["Relay"], - "requestId": "0x94e2bc48eb6873749095be8cbe4f09c2dafcf14769e411d2b571f406a0a3ba23", - "slippage": 2, - "srcAsset": { - "address": "EPjFWdd5AufqSSqeM2qN1xzybapC8G4wEGGkZwyTDt1v", - "aggregators": [ - "trustWallet", - "coinGecko", - "jupiter", - "orca", - "lifi" - ], - "assetId": "solana:5eykt4UsFv8P8NJdTREpY1vzqKqZKvdp/token:EPjFWdd5AufqSSqeM2qN1xzybapC8G4wEGGkZwyTDt1v", - "chainId": 1151111081099710, - "coingeckoId": "usd-coin", - "decimals": 6, - "iconUrl": "https://static.cx.metamask.io/api/v2/tokenIcons/assets/solana/5eykt4UsFv8P8NJdTREpY1vzqKqZKvdp/token/EPjFWdd5AufqSSqeM2qN1xzybapC8G4wEGGkZwyTDt1v.png", - "metadata": {}, - "name": "USD Coin", - "occurrences": 5, - "symbol": "USDC" - }, - "srcChainId": 1151111081099710, - "srcTokenAmount": "2025360", - "steps": [ - { - "action": "bridge", - "destAmount": "214708000556451088", - "destAsset": { - "address": "0x0000000000000000000000000000000000000000", - "aggregators": [], - "assetId": "eip155:43114/slip44:9005", - "chainId": 43114, - "coingeckoId": "avalanche-2", - "decimals": 18, - "iconUrl": "https://static.cx.metamask.io/api/v2/tokenIcons/assets/eip155/43114/slip44/9005.png", - "metadata": {}, - "name": "Avalanche", - "occurrences": 100, - "symbol": "AVAX" - }, - "destChainId": 43114, - "protocol": { - "name": "relay" - }, - "srcAmount": "2025360", - "srcAsset": { - "address": "EPjFWdd5AufqSSqeM2qN1xzybapC8G4wEGGkZwyTDt1v", - "aggregators": [ - "trustWallet", - "coinGecko", - "jupiter", - "orca", - "lifi" - ], - "assetId": "solana:5eykt4UsFv8P8NJdTREpY1vzqKqZKvdp/token:EPjFWdd5AufqSSqeM2qN1xzybapC8G4wEGGkZwyTDt1v", - "chainId": 1151111081099710, - "coingeckoId": "usd-coin", - "decimals": 6, - "iconUrl": "https://static.cx.metamask.io/api/v2/tokenIcons/assets/solana/5eykt4UsFv8P8NJdTREpY1vzqKqZKvdp/token/EPjFWdd5AufqSSqeM2qN1xzybapC8G4wEGGkZwyTDt1v.png", - "metadata": {}, - "name": "USD Coin", - "occurrences": 5, - "symbol": "USDC" - }, - "srcChainId": 1151111081099710 - } - ] - }, - "slippagePercentage": 0, - "startTime": 1775782708205, - "status": { - "bridge": "relay", - "destChain": { - "chainId": 43114, - "txHash": "0x5961b24303fc655138d69da0eba8bfcb2614d5a32aadfd73ccbdf2243e00ad2a" - }, - "isExpectedToken": true, - "isUnrecognizedRouterAddress": false, - "srcChain": { - "chainId": 1151111081099710, - "txHash": "629zuNU9bH6Y2hL4S4ewfSwWbEXfj6rFp7EUTf9oGsvKcYX2s2S5WLG2gTrm5aYhByo6aGSdYyCFDAuqrN3CpPuU" - }, - "status": "COMPLETE" - }, - "txMetaId": "629zuNU9bH6Y2hL4S4ewfSwWbEXfj6rFp7EUTf9oGsvKcYX2s2S5WLG2gTrm5aYhByo6aGSdYyCFDAuqrN3CpPuU" - }, - "6b4efc70-27d2-11f1-a0f0-6b5c45028a09": { - "account": "0xf25bd11c334507fd007d584e2d0b7b2c6543f714", - "batchId": "0x470316959eb04abd827a6f8b0ad6bf8f", - "estimatedProcessingTimeInSeconds": 0, - "hasApprovalTx": true, - "isStxEnabled": false, - "location": "Main View", - "originalTransactionId": "6b4efc70-27d2-11f1-a0f0-6b5c45028a09", - "pricingData": { - "amountSent": "2.108403476146385493", - "amountSentInUsd": "2.1074083097053415436154080374859755555728608", - "quotedGasAmount": "0.0000124824", - "quotedGasInUsd": "0.0079348379738224128", - "quotedReturnInUsd": "2.059446601893874834713961984" - }, - "quote": { - "aggregator": "uniswap", - "aggregatorType": "AGG", - "bridgeId": "uniswap", - "bridges": ["uniswap"], - "destAsset": { - "address": "0x0000000000000000000000000000000000000000", - "aggregators": [], - "assetId": "eip155:56/slip44:714", - "chainId": 56, - "coingeckoId": "binancecoin", - "decimals": 18, - "iconUrl": "https://static.cx.metamask.io/api/v2/tokenIcons/assets/eip155/56/slip44/714.png", - "metadata": {}, - "name": "Binance Coin", - "occurrences": 100, - "symbol": "BNB" - }, - "destChainId": 56, - "destTokenAmount": "3239743060701272", - "destWalletAddress": "0xF25bd11C334507Fd007d584E2D0b7b2C6543f714", - "feeData": { - "metabridge": { - "amount": "28994205572798", - "asset": { - "address": "0x0000000000000000000000000000000000000000", - "aggregators": [], - "assetId": "eip155:56/slip44:714", - "chainId": 56, - "coingeckoId": "binancecoin", - "decimals": 18, - "iconUrl": "https://static.cx.metamask.io/api/v2/tokenIcons/assets/eip155/56/slip44/714.png", - "metadata": {}, - "name": "Binance Coin", - "occurrences": 100, - "symbol": "BNB" - }, - "baseBpsFee": 87.5, - "quoteBpsFee": 87.5 - }, - "txFee": { - "amount": "44886227760000", - "asset": { - "address": "0x0000000000000000000000000000000000000000", - "aggregators": [], - "assetId": "eip155:56/slip44:714", - "chainId": 56, - "coingeckoId": "binancecoin", - "decimals": 18, - "iconUrl": "https://static.cx.metamask.io/api/v2/tokenIcons/assets/eip155/56/slip44/714.png", - "metadata": {}, - "name": "Binance Coin", - "occurrences": 100, - "symbol": "BNB" - }, - "maxFeePerGas": "60000000", - "maxPriorityFeePerGas": "60000000" - } - }, - "gasIncluded": true, - "gasIncluded7702": true, - "gasSponsored": false, - "minDestTokenAmount": "3174948199487246", - "priceData": { - "priceImpact": "-0.0002782622885063376", - "totalFeeAmountUsd": "0.018444953817191172", - "totalFromAmountUsd": "2.107408309705638", - "totalToAmountUsd": "2.0609949454957213" - }, - "protocols": ["uniswap"], - "requestId": "0x1a5257a6f038924e4ab93b6bc33d4963f3f63d9bb55956b6fcd9dfc469b78914", - "slippage": 2, - "srcAsset": { - "address": "0x55d398326f99059ff775485246999027b3197955", - "aggregators": [ - "pancakeExtended", - "oneInch", - "liFi", - "trustWallet", - "socket", - "squid", - "rango", - "sonarwatch", - "sushiSwap" - ], - "assetId": "eip155:56/erc20:0x55d398326f99059ff775485246999027b3197955", - "chainId": 56, - "coingeckoId": "binance-bridged-usdt-bnb-smart-chain", - "decimals": 18, - "iconUrl": "https://static.cx.metamask.io/api/v2/tokenIcons/assets/eip155/56/erc20/0x55d398326f99059ff775485246999027b3197955.png", - "metadata": { - "storage": { - "approval": 2, - "balance": 1 - } - }, - "name": "Tether USD", - "occurrences": 9, - "symbol": "USDT" - }, - "srcChainId": 56, - "srcTokenAmount": "2108403476146385493", - "steps": [], - "walletAddress": "0xF25bd11C334507Fd007d584E2D0b7b2C6543f714" - }, - "slippagePercentage": 0, - "startTime": 1774392012059, - "status": { - "srcChain": { - "chainId": 56, - "txHash": "0x0de1f631e5001ff51377f1960919197efe13013e314ae2d4d1e7586002ce7c6c" - }, - "status": "PENDING" - }, - "txMetaId": "6b4efc70-27d2-11f1-a0f0-6b5c45028a09" - }, - "6c056100-4fdb-11f1-b40a-151a477935d3": { - "account": "0x141d32a89a1e0a5ef360034a2f60a4b917c18838", - "batchId": "0x19e286f5d28", - "estimatedProcessingTimeInSeconds": 0, - "hasApprovalTx": true, - "isStxEnabled": false, - "location": "Main View", - "originalTransactionId": "6c056100-4fdb-11f1-b40a-151a477935d3", - "pricingData": { - "amountSent": "0.099580536354815734", - "amountSentInUsd": "0.099554943782882477921717343416991162512", - "quotedGasAmount": "0.11302345742819148", - "quotedGasInUsd": "0.01071081622995871138942176", - "quotedReturnInUsd": "1.0416152858025722884884" - }, - "quote": { - "aggregator": "uniswap", - "aggregatorType": "AGG", - "bridgeId": "uniswap", - "bridges": ["uniswap"], - "destAsset": { - "address": "0x2791bca1f2de4661ed88a30c99a7a9449aa84174", - "aggregators": [ - "metamask", - "oneInch", - "liFi", - "trustWallet", - "socket", - "rubic", - "squid", - "rango", - "sonarwatch", - "sushiSwap" - ], - "assetId": "eip155:137/erc20:0x2791bca1f2de4661ed88a30c99a7a9449aa84174", - "chainId": 137, - "coingeckoId": "bridged-usdc-polygon-pos-bridge", - "decimals": 6, - "iconUrl": "https://static.cx.metamask.io/api/v2/tokenIcons/assets/eip155/137/erc20/0x2791bca1f2de4661ed88a30c99a7a9449aa84174.png", - "metadata": { - "storage": { - "approval": 1, - "balance": 0 - } - }, - "name": "USD Coin (PoS)", - "occurrences": 10, - "symbol": "USDC.E" - }, - "destChainId": 137, - "destTokenAmount": "1041058", - "destWalletAddress": "0x141d32a89a1e0a5ef360034a2f60a4b917c18838", - "feeData": { - "metabridge": { - "amount": "9189", - "asset": { - "address": "0x2791bca1f2de4661ed88a30c99a7a9449aa84174", - "aggregators": [ - "metamask", - "oneInch", - "liFi", - "trustWallet", - "socket", - "rubic", - "squid", - "rango", - "sonarwatch", - "sushiSwap" - ], - "assetId": "eip155:137/erc20:0x2791bca1f2de4661ed88a30c99a7a9449aa84174", - "chainId": 137, - "coingeckoId": "bridged-usdc-polygon-pos-bridge", - "decimals": 6, - "iconUrl": "https://static.cx.metamask.io/api/v2/tokenIcons/assets/eip155/137/erc20/0x2791bca1f2de4661ed88a30c99a7a9449aa84174.png", - "metadata": { - "storage": { - "approval": 1, - "balance": 0 - } - }, - "name": "USD Coin (PoS)", - "occurrences": 10, - "symbol": "USDC.E" - }, - "baseBpsFee": 87.5, - "quoteBpsFee": 87.5, - "usd": "0.009193918937503804" - } - }, - "gasIncluded": false, - "gasIncluded7702": false, - "gasSponsored": false, - "minDestTokenAmount": "1035852", - "priceData": { - "priceImpact": "-0.00022325514408972778", - "totalFeeAmountUsd": "0.009193918937503804", - "totalFromAmountUsd": "1.050574658543306", - "totalToAmountUsd": "1.0416152858025722" - }, - "protocols": ["uniswap"], - "requestId": "0x14c88b05d47f7d48b848e576afd4d00c4e6f08466970f4c8f77c602b503134ff", - "slippage": 0.5, - "srcAsset": { - "address": "0x53e0bca35ec356bd5dddfebbd1fc0fd03fabad39", - "aggregators": [ - "sonarwatch", - "oneInch", - "liFi", - "trustWallet", - "socket", - "rubic", - "squid", - "rango", - "sushiSwap" - ], - "assetId": "eip155:137/erc20:0x53e0bca35ec356bd5dddfebbd1fc0fd03fabad39", - "chainId": 137, - "coingeckoId": "chainlink", - "decimals": 18, - "iconUrl": "https://static.cx.metamask.io/api/v2/tokenIcons/assets/eip155/137/erc20/0x53e0bca35ec356bd5dddfebbd1fc0fd03fabad39.png", - "metadata": { - "storage": { - "approval": 1, - "balance": 0 - } - }, - "name": "ChainLink Token", - "occurrences": 9, - "symbol": "LINK" - }, - "srcChainId": 137, - "srcTokenAmount": "99580536354815734", - "steps": [], - "walletAddress": "0x141d32a89a1e0a5ef360034a2f60a4b917c18838" - }, - "slippagePercentage": 0, - "startTime": 1778793903669, - "status": { - "srcChain": { - "chainId": 137, - "txHash": "0xa409941b8fb0650254d6f73e20530bae227a62bf40487ff5236fdfd8f3d79d0e" - }, - "status": "COMPLETE" - }, - "tokenSecurityTypeDestination": "Verified", - "txMetaId": "6c056100-4fdb-11f1-b40a-151a477935d3" - }, - "6d2a37c0-2864-11f1-9be8-5fbe36423c6b": { - "account": "0xf25bd11c334507fd007d584e2d0b7b2c6543f714", - "batchId": "0xffd99928201c466fa70b141982bc2496", - "estimatedProcessingTimeInSeconds": 0, - "hasApprovalTx": false, - "isStxEnabled": false, - "location": "Main View", - "originalTransactionId": "6d2a37c0-2864-11f1-9be8-5fbe36423c6b", - "pricingData": { - "amountSent": "0.003122743098328475", - "amountSentInUsd": "2.016669861373136770116820025", - "quotedGasAmount": "0.0000125086", - "quotedGasInUsd": "0.0080780633672602474", - "quotedReturnInUsd": "1.9797467411305877312993186198019131254262016" - }, - "quote": { - "aggregator": "1inch", - "aggregatorType": "AGG", - "bridgeId": "1inch", - "bridges": ["1inch"], - "destAsset": { - "address": "0x55d398326f99059ff775485246999027b3197955", - "aggregators": [ - "pancakeExtended", - "oneInch", - "liFi", - "trustWallet", - "socket", - "squid", - "rango", - "sonarwatch", - "sushiSwap" - ], - "assetId": "eip155:56/erc20:0x55d398326f99059ff775485246999027b3197955", - "chainId": 56, - "coingeckoId": "binance-bridged-usdt-bnb-smart-chain", - "decimals": 18, - "iconUrl": "https://static.cx.metamask.io/api/v2/tokenIcons/assets/eip155/56/erc20/0x55d398326f99059ff775485246999027b3197955.png", - "metadata": { - "storage": { - "approval": 2, - "balance": 1 - } - }, - "name": "Tether USD", - "occurrences": 9, - "symbol": "USDT" - }, - "destChainId": 56, - "destTokenAmount": "1979519024784781824", - "destWalletAddress": "0xF25bd11C334507Fd007d584E2D0b7b2C6543f714", - "feeData": { - "metabridge": { - "amount": "27324002110374", - "asset": { - "address": "0x0000000000000000000000000000000000000000", - "aggregators": [], - "assetId": "eip155:56/slip44:714", - "chainId": 56, - "coingeckoId": "binancecoin", - "decimals": 18, - "iconUrl": "https://static.cx.metamask.io/api/v2/tokenIcons/assets/eip155/56/slip44/714.png", - "metadata": {}, - "name": "Binance Coin", - "occurrences": 100, - "symbol": "BNB" - }, - "baseBpsFee": 87.5, - "quoteBpsFee": 87.5 - }, - "txFee": { - "amount": "28801260000000", - "asset": { - "address": "0x0000000000000000000000000000000000000000", - "aggregators": [], - "assetId": "eip155:56/slip44:714", - "chainId": 56, - "coingeckoId": "binancecoin", - "decimals": 18, - "iconUrl": "https://static.cx.metamask.io/api/v2/tokenIcons/assets/eip155/56/slip44/714.png", - "metadata": {}, - "name": "Binance Coin", - "occurrences": 100, - "symbol": "BNB" - }, - "maxFeePerGas": "60000000", - "maxPriorityFeePerGas": "60000000" - } - }, - "gasIncluded": true, - "gasIncluded7702": false, - "gasSponsored": false, - "minDestTokenAmount": "1939928644289086187", - "priceData": { - "priceImpact": "0.009170148481422774", - "totalFeeAmountUsd": "0.017639556042394144", - "totalFromAmountUsd": "2.0159492619879136", - "totalToAmountUsd": "1.979039981180784" - }, - "protocols": ["1inch"], - "requestId": "0xc782239cfd0648844d9a3c09b2d1e892356e45aa4b5dbc4182aed8c70b289589", - "slippage": 2, - "srcAsset": { - "address": "0x0000000000000000000000000000000000000000", - "aggregators": [], - "assetId": "eip155:56/slip44:714", - "chainId": 56, - "coingeckoId": "binancecoin", - "decimals": 18, - "iconUrl": "https://static.cx.metamask.io/api/v2/tokenIcons/assets/eip155/56/slip44/714.png", - "metadata": {}, - "name": "Binance Coin", - "occurrences": 100, - "symbol": "BNB" - }, - "srcChainId": 56, - "srcTokenAmount": "3066617836218101", - "steps": [], - "walletAddress": "0xF25bd11C334507Fd007d584E2D0b7b2C6543f714" - }, - "slippagePercentage": 0, - "startTime": 1774454721665, - "status": { - "srcChain": { - "chainId": 56, - "txHash": "0x56a7b52d67a823c3b2643abe07da52a648374689ede5189056b09c8afb4ffd72" - }, - "status": "FAILED" - }, - "txMetaId": "6d2a37c0-2864-11f1-9be8-5fbe36423c6b" - }, - "6f857190-287f-11f1-90e5-9d8a4fbc2cec": { - "account": "0xf25bd11c334507fd007d584e2d0b7b2c6543f714", - "batchId": "0x9fe1fed3dfd642f194e16c231a5391ce", - "estimatedProcessingTimeInSeconds": 0, - "hasApprovalTx": false, - "isStxEnabled": false, - "location": "Main View", - "originalTransactionId": "6f857190-287f-11f1-90e5-9d8a4fbc2cec", - "pricingData": { - "amountSent": "0.001954139214518098", - "amountSentInUsd": "1.262188036237567910589802256", - "quotedGasAmount": "0.0000118246", - "quotedGasInUsd": "0.0076375667313832112", - "quotedReturnInUsd": "1.23364619856413982467282975566223929126264832" - }, - "quote": { - "aggregator": "1inch", - "aggregatorType": "AGG", - "bridgeId": "1inch", - "bridges": ["1inch"], - "destAsset": { - "address": "0x55d398326f99059ff775485246999027b3197955", - "aggregators": [ - "pancakeExtended", - "oneInch", - "liFi", - "trustWallet", - "socket", - "rubic", - "squid", - "rango", - "sonarwatch", - "sushiSwap" - ], - "assetId": "eip155:56/erc20:0x55d398326f99059ff775485246999027b3197955", - "chainId": 56, - "coingeckoId": "binance-bridged-usdt-bnb-smart-chain", - "decimals": 18, - "iconUrl": "https://static.cx.metamask.io/api/v2/tokenIcons/assets/eip155/56/erc20/0x55d398326f99059ff775485246999027b3197955.png", - "metadata": { - "storage": { - "approval": 2, - "balance": 1 - } - }, - "name": "Tether USD", - "occurrences": 11, - "symbol": "USDT" - }, - "destChainId": 56, - "destTokenAmount": "1234025044253444864", - "destWalletAddress": "0xF25bd11C334507Fd007d584E2D0b7b2C6543f714", - "feeData": { - "metabridge": { - "amount": "17098718127033", - "asset": { - "address": "0x0000000000000000000000000000000000000000", - "aggregators": [], - "assetId": "eip155:56/slip44:714", - "chainId": 56, - "coingeckoId": "binancecoin", - "decimals": 18, - "iconUrl": "https://static.cx.metamask.io/api/v2/tokenIcons/assets/eip155/56/slip44/714.png", - "metadata": {}, - "name": "Binance Coin", - "occurrences": 100, - "symbol": "BNB" - }, - "baseBpsFee": 87.5, - "quoteBpsFee": 87.5 - }, - "txFee": { - "amount": "27237780000000", - "asset": { - "address": "0x0000000000000000000000000000000000000000", - "aggregators": [], - "assetId": "eip155:56/slip44:714", - "chainId": 56, - "coingeckoId": "binancecoin", - "decimals": 18, - "iconUrl": "https://static.cx.metamask.io/api/v2/tokenIcons/assets/eip155/56/slip44/714.png", - "metadata": {}, - "name": "Binance Coin", - "occurrences": 100, - "symbol": "BNB" - }, - "maxFeePerGas": "60000000", - "maxPriorityFeePerGas": "60000000" - } - }, - "gasIncluded": true, - "gasIncluded7702": false, - "gasSponsored": false, - "minDestTokenAmount": "1209344543368375966", - "priceData": { - "priceImpact": "0.009004422655350987", - "totalFeeAmountUsd": "0.011046455858788398", - "totalFromAmountUsd": "1.2624520981472718", - "totalToAmountUsd": "1.233646198564859" - }, - "protocols": ["1inch"], - "requestId": "0x064063aa07ae348d8bbc16b470750c609ea22b317c2fb6f0d87df32a37902642", - "slippage": 2, - "srcAsset": { - "address": "0x0000000000000000000000000000000000000000", - "aggregators": [], - "assetId": "eip155:56/slip44:714", - "chainId": 56, - "coingeckoId": "binancecoin", - "decimals": 18, - "iconUrl": "https://static.cx.metamask.io/api/v2/tokenIcons/assets/eip155/56/slip44/714.png", - "metadata": {}, - "name": "Binance Coin", - "occurrences": 100, - "symbol": "BNB" - }, - "srcChainId": 56, - "srcTokenAmount": "1909802716391065", - "steps": [], - "walletAddress": "0xF25bd11C334507Fd007d584E2D0b7b2C6543f714" - }, - "slippagePercentage": 0, - "startTime": 1774466322032, - "status": { - "srcChain": { - "chainId": 56, - "txHash": "0xae30084eaf284525cec45c638035350e52fe62d662043ed7f02b73eba7789c3d" - }, - "status": "FAILED" - }, - "txMetaId": "6f857190-287f-11f1-90e5-9d8a4fbc2cec" - }, - "708ff120-1d65-11f1-9c48-3b0a0edc0d9a": { - "account": "0x30e8ccad5a980bdf30447f8c2c48e70989d9d294", - "approvalTxId": "707d2c70-1d65-11f1-9c48-3b0a0edc0d9a", - "batchId": "0xb45d9fb426cf43fd8b51aa8fe45161f0", - "estimatedProcessingTimeInSeconds": 0, - "hasApprovalTx": true, - "isStxEnabled": true, - "location": "Main View", - "originalTransactionId": "708ff120-1d65-11f1-9c48-3b0a0edc0d9a", - "pricingData": { - "amountSent": "0.534779610420427444", - "amountSentInUsd": "0.5347796104202614652082920130605097598237108", - "quotedGasAmount": "0.0000124853", - "quotedGasInUsd": "0.008074860895974259", - "quotedReturnInUsd": "0.52967896540979055737359886" - }, - "quote": { - "aggregator": "uniswap", - "aggregatorType": "AGG", - "bridgeId": "uniswap", - "bridges": ["uniswap"], - "destAsset": { - "address": "0x0000000000000000000000000000000000000000", - "aggregators": [], - "assetId": "eip155:56/slip44:714", - "chainId": 56, - "coingeckoId": "binancecoin", - "decimals": 18, - "iconUrl": "https://static.cx.metamask.io/api/v2/tokenIcons/assets/eip155/56/slip44/714.png", - "metadata": {}, - "name": "Binance Coin", - "occurrences": 100, - "symbol": "BNB" - }, - "destChainId": 56, - "destTokenAmount": "818986341935362", - "destWalletAddress": "0x30E8ccaD5A980BDF30447f8c2C48e70989D9d294", - "feeData": { - "metabridge": { - "amount": "7229387633729", - "asset": { - "address": "0x0000000000000000000000000000000000000000", - "aggregators": [], - "assetId": "eip155:56/slip44:714", - "chainId": 56, - "coingeckoId": "binancecoin", - "decimals": 18, - "iconUrl": "https://static.cx.metamask.io/api/v2/tokenIcons/assets/eip155/56/slip44/714.png", - "metadata": {}, - "name": "Binance Coin", - "occurrences": 100, - "symbol": "BNB" - }, - "baseBpsFee": 87.5, - "quoteBpsFee": 87.5 - } - }, - "gasIncluded": false, - "gasIncluded7702": false, - "gasSponsored": false, - "minDestTokenAmount": "802606615096654", - "priceData": { - "priceImpact": "0.0016745782188071967", - "totalFeeAmountUsd": "0.004671485701163005", - "totalFromAmountUsd": "0.5347796104204274", - "totalToAmountUsd": "0.5292125944317922" - }, - "protocols": ["uniswap"], - "requestId": "0x362b97757f4a87d39dcb196aa76b423161699ff3e67e6aa9467184891c61d017", - "slippage": 2, - "srcAsset": { - "address": "0x55d398326f99059ff775485246999027b3197955", - "aggregators": [ - "pancakeExtended", - "oneInch", - "liFi", - "socket", - "rubic", - "squid", - "rango", - "sonarwatch", - "sushiSwap" - ], - "assetId": "eip155:56/erc20:0x55d398326f99059ff775485246999027b3197955", - "chainId": 56, - "coingeckoId": "binance-bridged-usdt-bnb-smart-chain", - "decimals": 18, - "iconUrl": "https://static.cx.metamask.io/api/v2/tokenIcons/assets/eip155/56/erc20/0x55d398326f99059ff775485246999027b3197955.png", - "metadata": { - "storage": { - "approval": 2, - "balance": 1 - } - }, - "name": "Tether USD", - "occurrences": 11, - "symbol": "USDT" - }, - "srcChainId": 56, - "srcTokenAmount": "534779610420427444", - "steps": [], - "walletAddress": "0x30E8ccaD5A980BDF30447f8c2C48e70989D9d294" - }, - "slippagePercentage": 0, - "startTime": 1773245693979, - "status": { - "srcChain": { - "chainId": 56 - }, - "status": "PENDING" - }, - "txMetaId": "708ff120-1d65-11f1-9c48-3b0a0edc0d9a" - }, - "718d4c80-28a0-11f1-a6e7-213b64721d37": { - "account": "0x141d32a89a1e0a5ef360034a2f60a4b917c18838", - "batchId": "0x46d5c3f4c1b244eabf150bf31085c0be", - "estimatedProcessingTimeInSeconds": 0, - "hasApprovalTx": false, - "isStxEnabled": true, - "location": "Main View", - "originalTransactionId": "718d4c80-28a0-11f1-a6e7-213b64721d37", - "pricingData": { - "amountSent": "0.003562421097563526", - "amountSentInUsd": "7.752559710142247463523896528", - "quotedGasAmount": "0.0000063660519814", - "quotedGasInUsd": "0.0138538361277467662838992", - "quotedReturnInUsd": "7.675091289067753467265996954682816" - }, - "quote": { - "aggregator": "1inch", - "aggregatorType": "AGG", - "bridgeId": "1inch", - "bridges": ["1inch"], - "destAsset": { - "address": "0x833589fcd6edb6e08f4c7c32d4f71b54bda02913", - "aggregators": [ - "coinGecko", - "oneInch", - "liFi", - "socket", - "rubic", - "squid", - "rango", - "sonarwatch", - "sushiSwap" - ], - "assetId": "eip155:8453/erc20:0x833589fcd6edb6e08f4c7c32d4f71b54bda02913", - "chainId": 8453, - "coingeckoId": "usd-coin", - "decimals": 6, - "iconUrl": "https://static.cx.metamask.io/api/v2/tokenIcons/assets/eip155/8453/erc20/0x833589fcd6edb6e08f4c7c32d4f71b54bda02913.png", - "metadata": { - "storage": { - "approval": 10, - "balance": 9 - } - }, - "name": "USD Coin", - "occurrences": 9, - "symbol": "USDC" - }, - "destChainId": 8453, - "destTokenAmount": "7670213", - "destWalletAddress": "0x141d32a89a1e0a5Ef360034a2f60a4B917c18838", - "feeData": { - "metabridge": { - "amount": "31171184603680", - "asset": { - "address": "0x0000000000000000000000000000000000000000", - "aggregators": [], - "assetId": "eip155:8453/slip44:60", - "chainId": 8453, - "coingeckoId": "ethereum", - "decimals": 18, - "iconUrl": "https://static.cx.metamask.io/api/v2/tokenIcons/assets/eip155/8453/slip44/60.png", - "metadata": {}, - "name": "Ether", - "occurrences": 100, - "symbol": "ETH" - }, - "baseBpsFee": 87.5, - "quoteBpsFee": 87.5 - }, - "txFee": { - "amount": "3057176127001", - "asset": { - "address": "0x0000000000000000000000000000000000000000", - "aggregators": [], - "assetId": "eip155:8453/slip44:60", - "chainId": 8453, - "coingeckoId": "ethereum", - "decimals": 18, - "iconUrl": "https://static.cx.metamask.io/api/v2/tokenIcons/assets/eip155/8453/slip44/60.png", - "metadata": {}, - "name": "Ether", - "occurrences": 100, - "symbol": "ETH" - }, - "maxFeePerGas": "6625001", - "maxPriorityFeePerGas": "1000001" - } - }, - "gasIncluded": true, - "gasIncluded7702": false, - "gasSponsored": false, - "minDestTokenAmount": "7516808", - "priceData": { - "priceImpact": "0.009002885015871374", - "totalFeeAmountUsd": "0.0677736364127052", - "totalFromAmountUsd": "7.74555844716652", - "totalToAmountUsd": "7.669238882949" - }, - "protocols": ["1inch"], - "requestId": "0x595bf98890ec6654d52bebc39ee61e2517b658d177a680d97d6d72338aa148fa", - "slippage": 2, - "srcAsset": { - "address": "0x0000000000000000000000000000000000000000", - "aggregators": [], - "assetId": "eip155:8453/slip44:60", - "chainId": 8453, - "coingeckoId": "ethereum", - "decimals": 18, - "iconUrl": "https://static.cx.metamask.io/api/v2/tokenIcons/assets/eip155/8453/slip44/60.png", - "metadata": {}, - "name": "Ether", - "occurrences": 100, - "symbol": "ETH" - }, - "srcChainId": 8453, - "srcTokenAmount": "3528192736832845", - "steps": [], - "walletAddress": "0x141d32a89a1e0a5Ef360034a2f60a4B917c18838" - }, - "slippagePercentage": 0, - "startTime": 1774480498884, - "status": { - "srcChain": { - "chainId": 8453 - }, - "status": "PENDING" - }, - "txMetaId": "718d4c80-28a0-11f1-a6e7-213b64721d37" - }, - "76c2f1a0-18c4-11f1-88df-555726da3d66": { - "account": "0x30e8ccad5a980bdf30447f8c2c48e70989d9d294", - "approvalTxId": "76b02cf0-18c4-11f1-88df-555726da3d66", - "batchId": "0xf22bff6700ba4c9a9fe88c859fc00852", - "estimatedProcessingTimeInSeconds": 0, - "hasApprovalTx": true, - "isStxEnabled": true, - "location": "Main View", - "originalTransactionId": "76c2f1a0-18c4-11f1-88df-555726da3d66", - "pricingData": { - "amountSent": "1", - "amountSentInUsd": "1.00067665715172017393478255", - "quotedGasAmount": "0.00001510025", - "quotedGasInUsd": "0.00981031907571068375", - "quotedReturnInUsd": "0.970474948444392395147783585" - }, - "quote": { - "aggregator": "1inch", - "aggregatorType": "AGG", - "bridgeId": "1inch", - "bridges": ["1inch"], - "destAsset": { - "address": "0x0000000000000000000000000000000000000000", - "aggregators": [], - "assetId": "eip155:56/slip44:714", - "chainId": 56, - "coingeckoId": "binancecoin", - "decimals": 18, - "iconUrl": "https://static.cx.metamask.io/api/v2/tokenIcons/assets/eip155/56/slip44/714.png", - "metadata": {}, - "name": "Binance Coin", - "occurrences": 100, - "symbol": "BNB" - }, - "destChainId": 56, - "destTokenAmount": "1493775505888511", - "destWalletAddress": "0x30E8ccaD5A980BDF30447f8c2C48e70989D9d294", - "feeData": { - "metabridge": { - "amount": "13483449731676", - "asset": { - "address": "0x0000000000000000000000000000000000000000", - "aggregators": [], - "assetId": "eip155:56/slip44:714", - "chainId": 56, - "coingeckoId": "binancecoin", - "decimals": 18, - "iconUrl": "https://static.cx.metamask.io/api/v2/tokenIcons/assets/eip155/56/slip44/714.png", - "metadata": {}, - "name": "Binance Coin", - "occurrences": 100, - "symbol": "BNB" - }, - "baseBpsFee": 87.5, - "quoteBpsFee": 87.5 - }, - "txFee": { - "amount": "33706728000000", - "asset": { - "address": "0x0000000000000000000000000000000000000000", - "aggregators": [], - "assetId": "eip155:56/slip44:714", - "chainId": 56, - "coingeckoId": "binancecoin", - "decimals": 18, - "iconUrl": "https://static.cx.metamask.io/api/v2/tokenIcons/assets/eip155/56/slip44/714.png", - "metadata": {}, - "name": "Binance Coin", - "occurrences": 100, - "symbol": "BNB" - }, - "maxFeePerGas": "60000000", - "maxPriorityFeePerGas": "60000000" - } - }, - "gasIncluded": true, - "gasIncluded7702": false, - "minDestTokenAmount": "1463899995770740", - "priceData": { - "priceImpact": "-0.0009650791091648792", - "totalFeeAmountUsd": "0.00875844444220478", - "totalFromAmountUsd": "1", - "totalToAmountUsd": "0.9703117553600001" - }, - "protocols": ["1inch"], - "requestId": "0x7c0c3c7b07659be16889b26db140aa56148310c12e0ebfdddf1a6c993a720c55", - "srcAsset": { - "address": "0x55d398326f99059ff775485246999027b3197955", - "aggregators": [ - "pancakeExtended", - "oneInch", - "liFi", - "socket", - "squid", - "rango", - "sonarwatch", - "sushiSwap" - ], - "assetId": "eip155:56/erc20:0x55d398326f99059ff775485246999027b3197955", - "chainId": 56, - "coingeckoId": "binance-bridged-usdt-bnb-smart-chain", - "decimals": 18, - "iconUrl": "https://static.cx.metamask.io/api/v2/tokenIcons/assets/eip155/56/erc20/0x55d398326f99059ff775485246999027b3197955.png", - "metadata": { - "storage": { - "approval": 2, - "balance": 1 - } - }, - "name": "Tether USD", - "occurrences": 8, - "symbol": "USDT" - }, - "srcChainId": 56, - "srcTokenAmount": "1000000000000000000", - "steps": [], - "walletAddress": "0x30E8ccaD5A980BDF30447f8c2C48e70989D9d294" - }, - "slippagePercentage": 0, - "startTime": 1772736750908, - "status": { - "srcChain": { - "chainId": 56 - }, - "status": "PENDING" - }, - "txMetaId": "76c2f1a0-18c4-11f1-88df-555726da3d66" - }, - "787c46c0-1d6c-11f1-9f40-3b0a0edc0d9a": { - "account": "0x30e8ccad5a980bdf30447f8c2c48e70989d9d294", - "batchId": "0xaaf79711868c46669c68b9db88032823", - "estimatedProcessingTimeInSeconds": 0, - "hasApprovalTx": false, - "isStxEnabled": true, - "location": "Main View", - "originalTransactionId": "787c46c0-1d6c-11f1-9f40-3b0a0edc0d9a", - "pricingData": { - "amountSent": "0.001", - "amountSentInUsd": "0.648007542522", - "quotedGasAmount": "0.000009998", - "quotedGasInUsd": "0.006478779410134956", - "quotedReturnInUsd": "0.64487868727580064252311762015359227160215192" - }, - "quote": { - "aggregator": "pancakeswap", - "aggregatorType": "AGG", - "bridgeId": "pancakeswap", - "bridges": ["pancakeswap"], - "destAsset": { - "address": "0x55d398326f99059ff775485246999027b3197955", - "aggregators": [ - "pancakeExtended", - "oneInch", - "liFi", - "socket", - "rubic", - "squid", - "rango", - "sonarwatch", - "sushiSwap" - ], - "assetId": "eip155:56/erc20:0x55d398326f99059ff775485246999027b3197955", - "chainId": 56, - "coingeckoId": "binance-bridged-usdt-bnb-smart-chain", - "decimals": 18, - "iconUrl": "https://static.cx.metamask.io/api/v2/tokenIcons/assets/eip155/56/erc20/0x55d398326f99059ff775485246999027b3197955.png", - "metadata": { - "storage": { - "approval": 2, - "balance": 1 - } - }, - "name": "Tether USD", - "occurrences": 11, - "symbol": "USDT" - }, - "destChainId": 56, - "destTokenAmount": "644878687276109353", - "destWalletAddress": "0x30E8ccaD5A980BDF30447f8c2C48e70989D9d294", - "feeData": { - "metabridge": { - "amount": "8750000000000", - "asset": { - "address": "0x0000000000000000000000000000000000000000", - "aggregators": [], - "assetId": "eip155:56/slip44:714", - "chainId": 56, - "coingeckoId": "binancecoin", - "decimals": 18, - "iconUrl": "https://static.cx.metamask.io/api/v2/tokenIcons/assets/eip155/56/slip44/714.png", - "metadata": {}, - "name": "Binance Coin", - "occurrences": 100, - "symbol": "BNB" - }, - "baseBpsFee": 87.5, - "quoteBpsFee": 87.5 - } - }, - "gasIncluded": false, - "gasIncluded7702": false, - "gasSponsored": false, - "minDestTokenAmount": "631981113530587165", - "priceData": { - "priceImpact": "-0.003936892605379597", - "totalFeeAmountUsd": "0.0056701749999999995", - "totalFromAmountUsd": "0.64802", - "totalToAmountUsd": "0.6448786872761093" - }, - "protocols": ["pancakeswap"], - "requestId": "0xe48d6992d29e65b2c9b0343d92e638ca9897e4bd26d61c46b79ed056ebe35c4e", - "slippage": 2, - "srcAsset": { - "address": "0x0000000000000000000000000000000000000000", - "aggregators": [], - "assetId": "eip155:56/slip44:714", - "chainId": 56, - "coingeckoId": "binancecoin", - "decimals": 18, - "iconUrl": "https://static.cx.metamask.io/api/v2/tokenIcons/assets/eip155/56/slip44/714.png", - "metadata": {}, - "name": "Binance Coin", - "occurrences": 100, - "symbol": "BNB" - }, - "srcChainId": 56, - "srcTokenAmount": "991250000000000", - "steps": [], - "walletAddress": "0x30E8ccaD5A980BDF30447f8c2C48e70989D9d294" - }, - "slippagePercentage": 0, - "startTime": 1773248713853, - "status": { - "srcChain": { - "chainId": 56 - }, - "status": "PENDING" - }, - "txMetaId": "787c46c0-1d6c-11f1-9f40-3b0a0edc0d9a" - }, - "7a385040-182a-11f1-b7d6-03d70bc40886": { - "account": "0x30e8ccad5a980bdf30447f8c2c48e70989d9d294", - "approvalTxId": "7a334730-182a-11f1-b7d6-03d70bc40886", - "batchId": "0x9463f40bed91404b9a8bd010c25a2dae", - "estimatedProcessingTimeInSeconds": 0, - "hasApprovalTx": true, - "isStxEnabled": true, - "pricingData": { - "amountSent": "1", - "amountSentInUsd": "0.99665341702749971638556", - "quotedGasAmount": "0.068545107250830046", - "quotedGasInUsd": "0.007128872524440110480301716", - "quotedReturnInUsd": "0.991951424539124294492048098" - }, - "quote": { - "aggregator": "uniswap", - "aggregatorType": "AGG", - "bridgeId": "uniswap", - "bridges": ["uniswap"], - "destAsset": { - "address": "0x0000000000000000000000000000000000000000", - "aggregators": [], - "assetId": "eip155:137/slip44:966", - "chainId": 137, - "coingeckoId": "matic-network", - "decimals": 18, - "iconUrl": "https://static.cx.metamask.io/api/v2/tokenIcons/assets/eip155/137/slip44/966.png", - "metadata": {}, - "name": "Polygon Ecosystem Token", - "occurrences": 100, - "symbol": "POL" - }, - "destChainId": 137, - "destTokenAmount": "9537751804306250963", - "destWalletAddress": "0x30E8ccaD5A980BDF30447f8c2C48e70989D9d294", - "feeData": { - "metabridge": { - "amount": "84192008360837019", - "asset": { - "address": "0x0000000000000000000000000000000000000000", - "aggregators": [], - "assetId": "eip155:137/slip44:966", - "chainId": 137, - "coingeckoId": "matic-network", - "decimals": 18, - "iconUrl": "https://static.cx.metamask.io/api/v2/tokenIcons/assets/eip155/137/slip44/966.png", - "metadata": {}, - "name": "Polygon Ecosystem Token", - "occurrences": 100, - "symbol": "POL" - }, - "baseBpsFee": 87.5, - "quoteBpsFee": 87.5 - } - }, - "gasIncluded7702": false, - "gasSponsored": false, - "minDestTokenAmount": "9346996768220125943", - "priceData": { - "priceImpact": "-0.0018088956399752915", - "totalFeeAmountUsd": "0.008755547909485246", - "totalFromAmountUsd": "0.9988272725", - "totalToAmountUsd": "0.9918784988888285" - }, - "protocols": ["uniswap"], - "requestId": "0x9b79166e86d161820d3818e8e9f6dea43c7bfee2bd203e7674a5cb6708695797", - "slippage": 2, - "srcAsset": { - "address": "0xc2132d05d31c914a87c6611c10748aeb04b58e8f", - "aggregators": [ - "quickswap", - "oneInch", - "liFi", - "socket", - "squid", - "rango", - "sonarwatch", - "sushiSwap" - ], - "assetId": "eip155:137/erc20:0xc2132d05d31c914a87c6611c10748aeb04b58e8f", - "chainId": 137, - "coingeckoId": "polygon-bridged-usdt-polygon", - "decimals": 6, - "iconUrl": "https://static.cx.metamask.io/api/v2/tokenIcons/assets/eip155/137/erc20/0xc2132d05d31c914a87c6611c10748aeb04b58e8f.png", - "metadata": { - "storage": { - "approval": 1, - "balance": 0 - } - }, - "name": "Tether USD", - "occurrences": 8, - "symbol": "USDT" - }, - "srcChainId": 137, - "srcTokenAmount": "1000000", - "steps": [], - "walletAddress": "0x30E8ccaD5A980BDF30447f8c2C48e70989D9d294" - }, - "slippagePercentage": 0, - "startTime": 1772670614219, - "status": { - "srcChain": { - "chainId": 137 - }, - "status": "PENDING" - }, - "txMetaId": "7a385040-182a-11f1-b7d6-03d70bc40886" - }, - "7a8bcd30-1d69-11f1-9dc2-3b0a0edc0d9a": { - "account": "0x30e8ccad5a980bdf30447f8c2c48e70989d9d294", - "batchId": "0xb1c4750477554311a211b35617b388b4", - "estimatedProcessingTimeInSeconds": 0, - "hasApprovalTx": false, - "isStxEnabled": true, - "location": "Main View", - "originalTransactionId": "7a8bcd30-1d69-11f1-9dc2-3b0a0edc0d9a", - "pricingData": { - "amountSent": "0.001", - "amountSentInUsd": "0.64879966151", - "quotedGasAmount": "0.0000088539", - "quotedGasInUsd": "0.005744407323043389", - "quotedReturnInUsd": "0.6423785330678245810984847375786905353058056" - }, - "quote": { - "aggregator": "uniswap", - "aggregatorType": "AGG", - "bridgeId": "uniswap", - "bridges": ["uniswap"], - "destAsset": { - "address": "0x55d398326f99059ff775485246999027b3197955", - "aggregators": [ - "pancakeExtended", - "oneInch", - "liFi", - "socket", - "rubic", - "squid", - "rango", - "sonarwatch", - "sushiSwap" - ], - "assetId": "eip155:56/erc20:0x55d398326f99059ff775485246999027b3197955", - "chainId": 56, - "coingeckoId": "binance-bridged-usdt-bnb-smart-chain", - "decimals": 18, - "iconUrl": "https://static.cx.metamask.io/api/v2/tokenIcons/assets/eip155/56/erc20/0x55d398326f99059ff775485246999027b3197955.png", - "metadata": { - "storage": { - "approval": 2, - "balance": 1 - } - }, - "name": "Tether USD", - "occurrences": 11, - "symbol": "USDT" - }, - "destChainId": 56, - "destTokenAmount": "642485185608572952", - "destWalletAddress": "0x30E8ccaD5A980BDF30447f8c2C48e70989D9d294", - "feeData": { - "metabridge": { - "amount": "8750000000000", - "asset": { - "address": "0x0000000000000000000000000000000000000000", - "aggregators": [], - "assetId": "eip155:56/slip44:714", - "chainId": 56, - "coingeckoId": "binancecoin", - "decimals": 18, - "iconUrl": "https://static.cx.metamask.io/api/v2/tokenIcons/assets/eip155/56/slip44/714.png", - "metadata": {}, - "name": "Binance Coin", - "occurrences": 100, - "symbol": "BNB" - }, - "baseBpsFee": 87.5, - "quoteBpsFee": 87.5 - } - }, - "gasIncluded": false, - "gasIncluded7702": false, - "gasSponsored": false, - "minDestTokenAmount": "629635481896401492", - "priceData": { - "priceImpact": "0.0010805988736520855", - "totalFeeAmountUsd": "0.005676562499999999", - "totalFromAmountUsd": "0.64875", - "totalToAmountUsd": "0.6423785330677619" - }, - "protocols": ["uniswap"], - "requestId": "0xcf269d66e5c2cbdb5d4bb81128f051403d541fbffc1e63081dc84ca309bf5e16", - "slippage": 2, - "srcAsset": { - "address": "0x0000000000000000000000000000000000000000", - "aggregators": [], - "assetId": "eip155:56/slip44:714", - "chainId": 56, - "coingeckoId": "binancecoin", - "decimals": 18, - "iconUrl": "https://static.cx.metamask.io/api/v2/tokenIcons/assets/eip155/56/slip44/714.png", - "metadata": {}, - "name": "Binance Coin", - "occurrences": 100, - "symbol": "BNB" - }, - "srcChainId": 56, - "srcTokenAmount": "991250000000000", - "steps": [], - "walletAddress": "0x30E8ccaD5A980BDF30447f8c2C48e70989D9d294" - }, - "slippagePercentage": 0, - "startTime": 1773247428882, - "status": { - "srcChain": { - "chainId": 56 - }, - "status": "PENDING" - }, - "txMetaId": "7a8bcd30-1d69-11f1-9dc2-3b0a0edc0d9a" - }, - "7b43c030-2c8b-11f1-8579-f533125480a0": { - "account": "0xf25bd11c334507fd007d584e2d0b7b2c6543f714", - "batchId": "0x4e343723d8c84f7e8b32466fdf317c38", - "estimatedProcessingTimeInSeconds": 0, - "hasApprovalTx": false, - "isStxEnabled": true, - "location": "Main View", - "originalTransactionId": "7b43c030-2c8b-11f1-8579-f533125480a0", - "pricingData": { - "amountSent": "0.001735284401294112", - "amountSentInUsd": "1.059581710619129089939674528", - "quotedGasAmount": "0.00000972585", - "quotedGasInUsd": "0.00593869960021522365", - "quotedReturnInUsd": "1.03760188231940073950828490696275541433332819" - }, - "quote": { - "aggregator": "uniswap", - "aggregatorType": "AGG", - "bridgeId": "uniswap", - "bridges": ["uniswap"], - "destAsset": { - "address": "0x55d398326f99059ff775485246999027b3197955", - "aggregators": [ - "pancakeExtended", - "oneInch", - "liFi", - "trustWallet", - "socket", - "squid", - "rango", - "sonarwatch", - "sushiSwap" - ], - "assetId": "eip155:56/erc20:0x55d398326f99059ff775485246999027b3197955", - "chainId": 56, - "coingeckoId": "binance-bridged-usdt-bnb-smart-chain", - "decimals": 18, - "iconUrl": "https://static.cx.metamask.io/api/v2/tokenIcons/assets/eip155/56/erc20/0x55d398326f99059ff775485246999027b3197955.png", - "metadata": { - "storage": { - "approval": 2, - "balance": 1 - } - }, - "name": "Tether USD", - "occurrences": 9, - "symbol": "USDT" - }, - "destChainId": 56, - "destTokenAmount": "1038408725899185861", - "destWalletAddress": "0xF25bd11C334507Fd007d584E2D0b7b2C6543f714", - "feeData": { - "metabridge": { - "amount": "15183738511323", - "asset": { - "address": "0x0000000000000000000000000000000000000000", - "aggregators": [], - "assetId": "eip155:56/slip44:714", - "chainId": 56, - "coingeckoId": "binancecoin", - "decimals": 18, - "iconUrl": "https://static.cx.metamask.io/api/v2/tokenIcons/assets/eip155/56/slip44/714.png", - "metadata": {}, - "name": "Binance Coin", - "occurrences": 100, - "symbol": "BNB" - }, - "baseBpsFee": 87.5, - "quoteBpsFee": 87.5 - }, - "txFee": { - "amount": "19908720000000", - "asset": { - "address": "0x0000000000000000000000000000000000000000", - "aggregators": [], - "assetId": "eip155:56/slip44:714", - "chainId": 56, - "coingeckoId": "binancecoin", - "decimals": 18, - "iconUrl": "https://static.cx.metamask.io/api/v2/tokenIcons/assets/eip155/56/slip44/714.png", - "metadata": {}, - "name": "Binance Coin", - "occurrences": 100, - "symbol": "BNB" - }, - "maxFeePerGas": "60000000", - "maxPriorityFeePerGas": "60000000" - } - }, - "gasIncluded": true, - "gasIncluded7702": false, - "gasSponsored": false, - "minDestTokenAmount": "1017640551381202143", - "priceData": { - "priceImpact": "0.009427532680401968", - "totalFeeAmountUsd": "0.009271798084554276", - "totalFromAmountUsd": "1.0596340668062365", - "totalToAmountUsd": "1.0376018823191622" - }, - "protocols": ["uniswap"], - "requestId": "0x05739f6973dde9dadb63123b17f964c2102e3ee0a3295d995e3a82e3ce86332a", - "slippage": 2, - "srcAsset": { - "address": "0x0000000000000000000000000000000000000000", - "aggregators": [], - "assetId": "eip155:56/slip44:714", - "chainId": 56, - "coingeckoId": "binancecoin", - "decimals": 18, - "iconUrl": "https://static.cx.metamask.io/api/v2/tokenIcons/assets/eip155/56/slip44/714.png", - "metadata": {}, - "name": "Binance Coin", - "occurrences": 100, - "symbol": "BNB" - }, - "srcChainId": 56, - "srcTokenAmount": "1700191942782789", - "steps": [], - "walletAddress": "0xF25bd11C334507Fd007d584E2D0b7b2C6543f714" - }, - "slippagePercentage": 0, - "startTime": 1774911300413, - "status": { - "srcChain": { - "chainId": 56 - }, - "status": "PENDING" - }, - "txMetaId": "7b43c030-2c8b-11f1-8579-f533125480a0" - }, - "7e164380-27dd-11f1-98dd-5fbe36423c6b": { - "account": "0xf25bd11c334507fd007d584e2d0b7b2c6543f714", - "batchId": "0x42d6997a372c47d5a3e91d9d5906b2a6", - "estimatedProcessingTimeInSeconds": 0, - "hasApprovalTx": false, - "isStxEnabled": false, - "location": "Main View", - "originalTransactionId": "7e164380-27dd-11f1-98dd-5fbe36423c6b", - "pricingData": { - "amountSent": "0.003125751498328475", - "amountSentInUsd": "1.9869842086192629221163952", - "quotedGasAmount": "0.0000097083", - "quotedGasInUsd": "0.0061713923204880576", - "quotedReturnInUsd": "1.964242846246792495139824231924650311532768" - }, - "quote": { - "aggregator": "uniswap", - "aggregatorType": "AGG", - "bridgeId": "uniswap", - "bridges": ["uniswap"], - "destAsset": { - "address": "0x55d398326f99059ff775485246999027b3197955", - "aggregators": [ - "pancakeExtended", - "oneInch", - "liFi", - "trustWallet", - "socket", - "squid", - "rango", - "sonarwatch", - "sushiSwap" - ], - "assetId": "eip155:56/erc20:0x55d398326f99059ff775485246999027b3197955", - "chainId": 56, - "coingeckoId": "binance-bridged-usdt-bnb-smart-chain", - "decimals": 18, - "iconUrl": "https://static.cx.metamask.io/api/v2/tokenIcons/assets/eip155/56/erc20/0x55d398326f99059ff775485246999027b3197955.png", - "metadata": { - "storage": { - "approval": 2, - "balance": 1 - } - }, - "name": "Tether USD", - "occurrences": 9, - "symbol": "USDT" - }, - "destChainId": 56, - "destTokenAmount": "1965074072579775033", - "destWalletAddress": "0xF25bd11C334507Fd007d584E2D0b7b2C6543f714", - "feeData": { - "metabridge": { - "amount": "27350325610374", - "asset": { - "address": "0x0000000000000000000000000000000000000000", - "aggregators": [], - "assetId": "eip155:56/slip44:714", - "chainId": 56, - "coingeckoId": "binancecoin", - "decimals": 18, - "iconUrl": "https://static.cx.metamask.io/api/v2/tokenIcons/assets/eip155/56/slip44/714.png", - "metadata": {}, - "name": "Binance Coin", - "occurrences": 100, - "symbol": "BNB" - }, - "baseBpsFee": 87.5, - "quoteBpsFee": 87.5 - }, - "txFee": { - "amount": "19877760000000", - "asset": { - "address": "0x0000000000000000000000000000000000000000", - "aggregators": [], - "assetId": "eip155:56/slip44:714", - "chainId": 56, - "coingeckoId": "binancecoin", - "decimals": 18, - "iconUrl": "https://static.cx.metamask.io/api/v2/tokenIcons/assets/eip155/56/slip44/714.png", - "metadata": {}, - "name": "Binance Coin", - "occurrences": 100, - "symbol": "BNB" - }, - "maxFeePerGas": "60000000", - "maxPriorityFeePerGas": "60000000" - } - }, - "gasIncluded": true, - "gasIncluded7702": false, - "gasSponsored": false, - "minDestTokenAmount": "1925772591128179532", - "priceData": { - "priceImpact": "0.009202413125145793", - "totalFeeAmountUsd": "0.017457165830589517", - "totalFromAmountUsd": "1.995104666353099", - "totalToAmountUsd": "1.9641740686545277" - }, - "protocols": ["uniswap"], - "requestId": "0x1d49d6bf767ed80886a3ed83a39bd92df488c6d4bf35e1ebf518d21576128138", - "slippage": 2, - "srcAsset": { - "address": "0x0000000000000000000000000000000000000000", - "aggregators": [], - "assetId": "eip155:56/slip44:714", - "chainId": 56, - "coingeckoId": "binancecoin", - "decimals": 18, - "iconUrl": "https://static.cx.metamask.io/api/v2/tokenIcons/assets/eip155/56/slip44/714.png", - "metadata": {}, - "name": "Binance Coin", - "occurrences": 100, - "symbol": "BNB" - }, - "srcChainId": 56, - "srcTokenAmount": "3078523412718101", - "steps": [], - "walletAddress": "0xF25bd11C334507Fd007d584E2D0b7b2C6543f714" - }, - "slippagePercentage": 0, - "startTime": 1774396767995, - "status": { - "srcChain": { - "chainId": 56, - "txHash": "0xfcb60e0a86409c4f780036756684f00d7d1bd9222e1ed5b9384e5d07c7534dc6" - }, - "status": "FAILED" - }, - "txMetaId": "7e164380-27dd-11f1-98dd-5fbe36423c6b" - }, - "7f366e90-23c1-11f1-ba20-05a660861774": { - "account": "0xb3864b298f4fddbbbd2fa5cf1a2a2748932b3b81", - "approvalTxId": "7f30f050-23c1-11f1-ba20-05a660861774", - "batchId": "0xf7f20f2e145e4f359c9abef967f87526", - "completionTime": 1777322895809, - "estimatedProcessingTimeInSeconds": 2, - "hasApprovalTx": true, - "isStxEnabled": true, - "location": "Main View", - "originalTransactionId": "7f366e90-23c1-11f1-ba20-05a660861774", - "pricingData": { - "amountSent": "5.642642556751629323", - "amountSentInUsd": "5.6414841251078873272569173905217651781050455", - "quotedGasAmount": "0.0000079716", - "quotedGasInUsd": "0.00507918740181762", - "quotedReturnInUsd": "5.568813162965336151266015071" - }, - "quote": { - "aggregator": "relay", - "bridgeId": "relay", - "bridges": ["Relay"], - "destAsset": { - "address": "0x0000000000000000000000000000000000000000", - "aggregators": [], - "assetId": "eip155:143/slip44:268435779", - "chainId": 143, - "decimals": 18, - "iconUrl": "https://static.cx.metamask.io/api/v2/tokenIcons/assets/eip155/143/slip44/268435779.png", - "metadata": {}, - "name": "Mon", - "occurrences": 1, - "symbol": "MON" - }, - "destChainId": 143, - "destTokenAmount": "251473484144755150187", - "feeData": { - "metabridge": { - "amount": "49373122371576756", - "asset": { - "address": "0x8ac76a51cc950d9822d68b83fe1ad97b32cd580d", - "aggregators": [ - "pancakeExtended", - "oneInch", - "liFi", - "socket", - "rubic", - "squid", - "rango", - "sonarwatch", - "sushiSwap" - ], - "assetId": "eip155:56/erc20:0x8ac76a51cc950d9822d68b83fe1ad97b32cd580d", - "chainId": 56, - "coingeckoId": "binance-bridged-usdc-bnb-smart-chain", - "decimals": 18, - "iconUrl": "https://static.cx.metamask.io/api/v2/tokenIcons/assets/eip155/56/erc20/0x8ac76a51cc950d9822d68b83fe1ad97b32cd580d.png", - "metadata": { - "storage": { - "approval": 2, - "balance": 1 - } - }, - "name": "Binance-Peg USD Coin", - "occurrences": 9, - "symbol": "USDC" - }, - "baseBpsFee": 87.5, - "quoteBpsFee": 87.5 - } - }, - "minDestTokenAmount": "246444014461860047184", - "priceData": { - "priceImpact": "0.004330146372137453", - "totalFeeAmountUsd": "0.04936843192495145", - "totalFromAmountUsd": "5.642106505708738", - "totalToAmountUsd": "5.568520699303276" - }, - "protocols": ["Relay"], - "requestId": "0x295c4d95df950b3c934b05d371725d13e105a2eb6a24da6128f84a09ce107ff5", - "slippage": 2, - "srcAsset": { - "address": "0x8ac76a51cc950d9822d68b83fe1ad97b32cd580d", - "aggregators": [ - "pancakeExtended", - "oneInch", - "liFi", - "socket", - "rubic", - "squid", - "rango", - "sonarwatch", - "sushiSwap" - ], - "assetId": "eip155:56/erc20:0x8ac76a51cc950d9822d68b83fe1ad97b32cd580d", - "chainId": 56, - "coingeckoId": "binance-bridged-usdc-bnb-smart-chain", - "decimals": 18, - "iconUrl": "https://static.cx.metamask.io/api/v2/tokenIcons/assets/eip155/56/erc20/0x8ac76a51cc950d9822d68b83fe1ad97b32cd580d.png", - "metadata": { - "storage": { - "approval": 2, - "balance": 1 - } - }, - "name": "Binance-Peg USD Coin", - "occurrences": 9, - "symbol": "USDC" - }, - "srcChainId": 56, - "srcTokenAmount": "5593269434380052567", - "steps": [ - { - "action": "bridge", - "destAmount": "251473484144755150187", - "destAsset": { - "address": "0x0000000000000000000000000000000000000000", - "aggregators": [], - "assetId": "eip155:143/slip44:268435779", - "chainId": 143, - "decimals": 18, - "iconUrl": "https://static.cx.metamask.io/api/v2/tokenIcons/assets/eip155/143/slip44/268435779.png", - "metadata": {}, - "name": "Mon", - "occurrences": 1, - "symbol": "MON" - }, - "destChainId": 143, - "protocol": { - "name": "relay" - }, - "srcAmount": "5593269434380052567", - "srcAsset": { - "address": "0x8ac76a51cc950d9822d68b83fe1ad97b32cd580d", - "aggregators": [ - "pancakeExtended", - "oneInch", - "liFi", - "socket", - "rubic", - "squid", - "rango", - "sonarwatch", - "sushiSwap" - ], - "assetId": "eip155:56/erc20:0x8ac76a51cc950d9822d68b83fe1ad97b32cd580d", - "chainId": 56, - "coingeckoId": "binance-bridged-usdc-bnb-smart-chain", - "decimals": 18, - "iconUrl": "https://static.cx.metamask.io/api/v2/tokenIcons/assets/eip155/56/erc20/0x8ac76a51cc950d9822d68b83fe1ad97b32cd580d.png", - "metadata": { - "storage": { - "approval": 2, - "balance": 1 - } - }, - "name": "Binance-Peg USD Coin", - "occurrences": 9, - "symbol": "USDC" - }, - "srcChainId": 56 - } - ] - }, - "slippagePercentage": 0, - "startTime": 1773944939248, - "status": { - "bridge": "relay", - "isExpectedToken": true, - "isUnrecognizedRouterAddress": false, - "srcChain": { - "chainId": 56, - "txHash": "0x4f43cf58b9692936c60a308fbe57af1f1050652aedfff6d5b96b98e0287efa21" - }, - "status": "FAILED" - }, - "txMetaId": "7f366e90-23c1-11f1-ba20-05a660861774" - }, - "87097100-39db-11f1-bbe5-3727d90ba13b": { - "account": "0x141d32a89a1e0a5ef360034a2f60a4b917c18838", - "batchId": "0x9326029b55e54103ba3d30692852c37c", - "completionTime": 1776375055308, - "estimatedProcessingTimeInSeconds": 1.5, - "hasApprovalTx": false, - "isStxEnabled": false, - "location": "Main View", - "originalTransactionId": "87097100-39db-11f1-bbe5-3727d90ba13b", - "pricingData": { - "amountSent": "0.014422915151821722", - "amountSentInUsd": "33.764377335151183940035251708", - "quotedGasAmount": "0.000182022194361381", - "quotedGasInUsd": "0.426118159130515819690549134", - "quotedReturnInUsd": "32.933861945091401367338221656" - }, - "quote": { - "aggregator": "relay", - "bridgeId": "relay", - "bridges": ["Relay"], - "destAsset": { - "address": "0x0000000000000000000000000000000000000000", - "aggregators": [], - "assetId": "eip155:42161/slip44:60", - "chainId": 42161, - "coingeckoId": "ethereum", - "decimals": 18, - "iconUrl": "https://static.cx.metamask.io/api/v2/tokenIcons/assets/eip155/42161/slip44/60.png", - "metadata": {}, - "name": "Ether", - "occurrences": 100, - "symbol": "ETH" - }, - "destChainId": 42161, - "destTokenAmount": "14068149154385604", - "feeData": { - "metabridge": { - "amount": "126200507578440", - "asset": { - "address": "0x0000000000000000000000000000000000000000", - "aggregators": [], - "assetId": "eip155:1/slip44:60", - "chainId": 1, - "coingeckoId": "ethereum", - "decimals": 18, - "iconUrl": "https://static.cx.metamask.io/api/v2/tokenIcons/assets/eip155/1/slip44/60.png", - "metadata": {}, - "name": "Ether", - "occurrences": 100, - "symbol": "ETH" - }, - "baseBpsFee": 87.5, - "quoteBpsFee": 87.5 - }, - "txFee": { - "amount": "219451684255947", - "asset": { - "address": "0x0000000000000000000000000000000000000000", - "aggregators": [], - "assetId": "eip155:1/slip44:60", - "chainId": 1, - "coingeckoId": "ethereum", - "decimals": 18, - "iconUrl": "https://static.cx.metamask.io/api/v2/tokenIcons/assets/eip155/1/slip44/60.png", - "metadata": {}, - "name": "Ether", - "occurrences": 100, - "symbol": "ETH" - }, - "maxFeePerGas": "2215428270", - "maxPriorityFeePerGas": "2100000001" - } - }, - "gasIncluded": true, - "gasIncluded7702": false, - "gasSponsored": false, - "minDestTokenAmount": "13786786171297892", - "priceData": { - "priceImpact": "0.008381351089501032", - "totalFeeAmountUsd": "0.295363578200348", - "totalFromAmountUsd": "33.755837508611215", - "totalToAmountUsd": "32.96361122017567" - }, - "protocols": ["Relay"], - "requestId": "0x876097d954bc47e229486f9d3d383926751dd4d272af802caf20cb61e32dfabb", - "slippage": 2, - "srcAsset": { - "address": "0x0000000000000000000000000000000000000000", - "aggregators": [], - "assetId": "eip155:1/slip44:60", - "chainId": 1, - "coingeckoId": "ethereum", - "decimals": 18, - "iconUrl": "https://static.cx.metamask.io/api/v2/tokenIcons/assets/eip155/1/slip44/60.png", - "metadata": {}, - "name": "Ether", - "occurrences": 100, - "symbol": "ETH" - }, - "srcChainId": 1, - "srcTokenAmount": "14077262959987335", - "steps": [ - { - "action": "bridge", - "destAmount": "14068149154385604", - "destAsset": { - "address": "0x0000000000000000000000000000000000000000", - "aggregators": [], - "assetId": "eip155:42161/slip44:60", - "chainId": 42161, - "coingeckoId": "ethereum", - "decimals": 18, - "iconUrl": "https://static.cx.metamask.io/api/v2/tokenIcons/assets/eip155/42161/slip44/60.png", - "metadata": {}, - "name": "Ether", - "occurrences": 100, - "symbol": "ETH" - }, - "destChainId": 42161, - "protocol": { - "name": "relay" - }, - "srcAmount": "14077262959987335", - "srcAsset": { - "address": "0x0000000000000000000000000000000000000000", - "aggregators": [], - "assetId": "eip155:1/slip44:60", - "chainId": 1, - "coingeckoId": "ethereum", - "decimals": 18, - "iconUrl": "https://static.cx.metamask.io/api/v2/tokenIcons/assets/eip155/1/slip44/60.png", - "metadata": {}, - "name": "Ether", - "occurrences": 100, - "symbol": "ETH" - }, - "srcChainId": 1 - } - ] - }, - "slippagePercentage": 0, - "startTime": 1776375045051, - "status": { - "bridge": "relay", - "destChain": { - "chainId": 42161, - "txHash": "0x47c96bb707133eaf0e922ef46ced8e0c3f1e5d2d47042cea504222e415986150" - }, - "isExpectedToken": true, - "isUnrecognizedRouterAddress": false, - "srcChain": { - "chainId": 1, - "txHash": "0xca8213d009d229e05f39dcd4400c0cbcfa8223c0749ed2d32b359eb0540a2ef3" - }, - "status": "COMPLETE" - }, - "txMetaId": "87097100-39db-11f1-bbe5-3727d90ba13b" - }, - "8749bbb0-287f-11f1-9113-9d8a4fbc2cec": { - "account": "0xf25bd11c334507fd007d584e2d0b7b2c6543f714", - "batchId": "0xb0a9c98df35d4edfaaea1e3f69a4678a", - "estimatedProcessingTimeInSeconds": 0, - "hasApprovalTx": false, - "isStxEnabled": true, - "location": "Main View", - "originalTransactionId": "8749bbb0-287f-11f1-9113-9d8a4fbc2cec", - "pricingData": { - "amountSent": "0.001950721614518098", - "amountSentInUsd": "1.259980591752242803389802256", - "quotedGasAmount": "0.00001151385", - "quotedGasInUsd": "0.0074368517928840372", - "quotedReturnInUsd": "1.2325003797624940142154387458214548460408192" - }, - "quote": { - "aggregator": "0x", - "aggregatorType": "AGG", - "bridgeId": "0x", - "bridges": ["0x"], - "destAsset": { - "address": "0x55d398326f99059ff775485246999027b3197955", - "aggregators": [ - "pancakeExtended", - "oneInch", - "liFi", - "trustWallet", - "socket", - "rubic", - "squid", - "rango", - "sonarwatch", - "sushiSwap" - ], - "assetId": "eip155:56/erc20:0x55d398326f99059ff775485246999027b3197955", - "chainId": 56, - "coingeckoId": "binance-bridged-usdt-bnb-smart-chain", - "decimals": 18, - "iconUrl": "https://static.cx.metamask.io/api/v2/tokenIcons/assets/eip155/56/erc20/0x55d398326f99059ff775485246999027b3197955.png", - "metadata": { - "storage": { - "approval": 2, - "balance": 1 - } - }, - "name": "Tether USD", - "occurrences": 11, - "symbol": "USDT" - }, - "destChainId": 56, - "destTokenAmount": "1232878873577400840", - "destWalletAddress": "0xF25bd11C334507Fd007d584E2D0b7b2C6543f714", - "feeData": { - "metabridge": { - "amount": "17068814127033", - "asset": { - "address": "0x0000000000000000000000000000000000000000", - "aggregators": [], - "assetId": "eip155:56/slip44:714", - "chainId": 56, - "coingeckoId": "binancecoin", - "decimals": 18, - "iconUrl": "https://static.cx.metamask.io/api/v2/tokenIcons/assets/eip155/56/slip44/714.png", - "metadata": {}, - "name": "Binance Coin", - "occurrences": 100, - "symbol": "BNB" - }, - "baseBpsFee": 87.5, - "quoteBpsFee": 87.5 - }, - "txFee": { - "amount": "26526510000000", - "asset": { - "address": "0x0000000000000000000000000000000000000000", - "aggregators": [], - "assetId": "eip155:56/slip44:714", - "chainId": 56, - "coingeckoId": "binancecoin", - "decimals": 18, - "iconUrl": "https://static.cx.metamask.io/api/v2/tokenIcons/assets/eip155/56/slip44/714.png", - "metadata": {}, - "name": "Binance Coin", - "occurrences": 100, - "symbol": "BNB" - }, - "maxFeePerGas": "60000000", - "maxPriorityFeePerGas": "60000000" - } - }, - "gasIncluded": true, - "gasIncluded7702": false, - "gasSponsored": false, - "minDestTokenAmount": "1208221296105852823", - "priceData": { - "priceImpact": "0.00853235120890051", - "totalFeeAmountUsd": "0.011027136678628398", - "totalFromAmountUsd": "1.2602441918432719", - "totalToAmountUsd": "1.2325003797632126" - }, - "protocols": ["0x"], - "requestId": "0x8c9412488b164af8ae651ae2da95564036717bac10a13e38331fb3c826505782", - "slippage": 2, - "srcAsset": { - "address": "0x0000000000000000000000000000000000000000", - "aggregators": [], - "assetId": "eip155:56/slip44:714", - "chainId": 56, - "coingeckoId": "binancecoin", - "decimals": 18, - "iconUrl": "https://static.cx.metamask.io/api/v2/tokenIcons/assets/eip155/56/slip44/714.png", - "metadata": {}, - "name": "Binance Coin", - "occurrences": 100, - "symbol": "BNB" - }, - "srcChainId": 56, - "srcTokenAmount": "1907126290391065", - "steps": [], - "walletAddress": "0xF25bd11C334507Fd007d584E2D0b7b2C6543f714" - }, - "slippagePercentage": 0, - "startTime": 1774466361950, - "status": { - "srcChain": { - "chainId": 56, - "txHash": "0xfbdfaef96764f3dedf54750152d015d247da97680bd5a6f794ff820288aba09a" - }, - "status": "FAILED" - }, - "txMetaId": "8749bbb0-287f-11f1-9113-9d8a4fbc2cec" - }, - "897153a0-28a0-11f1-a76c-213b64721d37": { - "account": "0x141d32a89a1e0a5ef360034a2f60a4b917c18838", - "batchId": "0x42991e4387eb4f8da94b268740d0c544", - "estimatedProcessingTimeInSeconds": 0, - "hasApprovalTx": true, - "isStxEnabled": true, - "location": "Main View", - "originalTransactionId": "897153a0-28a0-11f1-a76c-213b64721d37", - "pricingData": { - "amountSent": "7.66615", - "amountSentInUsd": "7.6710257049819552916041865531168", - "quotedGasAmount": "0.000006709050190657", - "quotedGasInUsd": "0.014600270652164844251205496", - "quotedReturnInUsd": "7.60058415111383491562990692" - }, - "quote": { - "aggregator": "uniswap", - "aggregatorType": "AGG", - "bridgeId": "uniswap", - "bridges": ["uniswap"], - "destAsset": { - "address": "0x0000000000000000000000000000000000000000", - "aggregators": [], - "assetId": "eip155:8453/slip44:60", - "chainId": 8453, - "coingeckoId": "ethereum", - "decimals": 18, - "iconUrl": "https://static.cx.metamask.io/api/v2/tokenIcons/assets/eip155/8453/slip44/60.png", - "metadata": {}, - "name": "Ether", - "occurrences": 100, - "symbol": "ETH" - }, - "destChainId": 8453, - "destTokenAmount": "3492585977546515", - "destWalletAddress": "0x141d32a89a1e0a5Ef360034a2f60a4B917c18838", - "feeData": { - "metabridge": { - "amount": "30873688262846", - "asset": { - "address": "0x0000000000000000000000000000000000000000", - "aggregators": [], - "assetId": "eip155:8453/slip44:60", - "chainId": 8453, - "coingeckoId": "ethereum", - "decimals": 18, - "iconUrl": "https://static.cx.metamask.io/api/v2/tokenIcons/assets/eip155/8453/slip44/60.png", - "metadata": {}, - "name": "Ether", - "occurrences": 100, - "symbol": "ETH" - }, - "baseBpsFee": 87.5, - "quoteBpsFee": 87.5 - }, - "txFee": { - "amount": "4961849944581", - "asset": { - "address": "0x0000000000000000000000000000000000000000", - "aggregators": [], - "assetId": "eip155:8453/slip44:60", - "chainId": 8453, - "coingeckoId": "ethereum", - "decimals": 18, - "iconUrl": "https://static.cx.metamask.io/api/v2/tokenIcons/assets/eip155/8453/slip44/60.png", - "metadata": {}, - "name": "Ether", - "occurrences": 100, - "symbol": "ETH" - }, - "maxFeePerGas": "6625001", - "maxPriorityFeePerGas": "1000001" - } - }, - "gasIncluded": true, - "gasIncluded7702": true, - "gasSponsored": false, - "minDestTokenAmount": "3422734257995584", - "priceData": { - "priceImpact": "-0.000842615632920785", - "totalFeeAmountUsd": "0.06712680796861029", - "totalFromAmountUsd": "7.66517639895", - "totalToAmountUsd": "7.593720135820734" - }, - "protocols": ["uniswap"], - "requestId": "0xb31e7869e0a4661452b593ec746adfc3ccb9a46e8be932494162d064e4793028", - "slippage": 2, - "srcAsset": { - "address": "0x833589fcd6edb6e08f4c7c32d4f71b54bda02913", - "aggregators": [ - "coinGecko", - "oneInch", - "liFi", - "socket", - "rubic", - "squid", - "rango", - "sonarwatch", - "sushiSwap" - ], - "assetId": "eip155:8453/erc20:0x833589fcd6edb6e08f4c7c32d4f71b54bda02913", - "chainId": 8453, - "coingeckoId": "usd-coin", - "decimals": 6, - "iconUrl": "https://static.cx.metamask.io/api/v2/tokenIcons/assets/eip155/8453/erc20/0x833589fcd6edb6e08f4c7c32d4f71b54bda02913.png", - "metadata": { - "storage": { - "approval": 10, - "balance": 9 - } - }, - "name": "USD Coin", - "occurrences": 9, - "symbol": "USDC" - }, - "srcChainId": 8453, - "srcTokenAmount": "7666150", - "steps": [], - "walletAddress": "0x141d32a89a1e0a5Ef360034a2f60a4B917c18838" - }, - "slippagePercentage": 0, - "startTime": 1774480538946, - "status": { - "srcChain": { - "chainId": 8453, - "txHash": "0xb3a2980c7e045bee9b6efe74a81f1076ac8aa282468fb4e9af64016387be02bf" - }, - "status": "PENDING" - }, - "txMetaId": "897153a0-28a0-11f1-a76c-213b64721d37" - }, - "8b6097e0-2e2f-11f1-afc5-535abbd777f7": { - "account": "0x141d32a89a1e0a5ef360034a2f60a4b917c18838", - "actionId": "1775091716184.0117", - "estimatedProcessingTimeInSeconds": 0, - "hasApprovalTx": false, - "isStxEnabled": false, - "location": "Main View", - "originalTransactionId": "8b6097e0-2e2f-11f1-afc5-535abbd777f7", - "pricingData": { - "amountSent": "0.006908637264449911", - "amountSentInUsd": "14.904045135912753017270084986", - "quotedGasAmount": "0.000514698161600842", - "quotedGasInUsd": "1.110361470465921610796182492", - "quotedReturnInUsd": "13.323203166776001308685347502428554" - }, - "quote": { - "aggregator": "uniswap", - "aggregatorType": "AGG", - "bridgeId": "uniswap", - "bridges": ["uniswap"], - "destAsset": { - "address": "0xaca92e438df0b2401ff60da7e4337b687a2435da", - "aggregators": ["metamask", "liFi", "socket", "rubic", "rango"], - "assetId": "eip155:1/erc20:0xaca92e438df0b2401ff60da7e4337b687a2435da", - "chainId": 1, - "decimals": 6, - "iconUrl": "https://static.cx.metamask.io/api/v2/tokenIcons/assets/eip155/1/erc20/0xaca92e438df0b2401ff60da7e4337b687a2435da.png", - "metadata": {}, - "name": "MetaMask USD", - "occurrences": 5, - "symbol": "MUSD" - }, - "destChainId": 1, - "destTokenAmount": "13322191", - "destWalletAddress": "0x141d32a89a1e0a5Ef360034a2f60a4B917c18838", - "feeData": { - "metabridge": { - "amount": "0", - "asset": { - "address": "0x0000000000000000000000000000000000000000", - "aggregators": [], - "assetId": "eip155:1/slip44:60", - "chainId": 1, - "coingeckoId": "ethereum", - "decimals": 18, - "iconUrl": "https://static.cx.metamask.io/api/v2/tokenIcons/assets/eip155/1/slip44/60.png", - "metadata": {}, - "name": "Ether", - "occurrences": 100, - "symbol": "ETH" - }, - "baseBpsFee": 87.5, - "quoteBpsFee": 0 - }, - "txFee": { - "amount": "705582778118154", - "asset": { - "address": "0x0000000000000000000000000000000000000000", - "aggregators": [], - "assetId": "eip155:1/slip44:60", - "chainId": 1, - "coingeckoId": "ethereum", - "decimals": 18, - "iconUrl": "https://static.cx.metamask.io/api/v2/tokenIcons/assets/eip155/1/slip44/60.png", - "metadata": {}, - "name": "Ether", - "occurrences": 100, - "symbol": "ETH" - }, - "maxFeePerGas": "2190452233", - "maxPriorityFeePerGas": "2100000001" - } - }, - "gasIncluded": true, - "gasIncluded7702": false, - "gasSponsored": false, - "minDestTokenAmount": "13055747", - "priceData": { - "priceImpact": "0.004563593962246783", - "totalFeeAmountUsd": "0", - "totalFromAmountUsd": "14.904210429715727", - "totalToAmountUsd": "13.320965358428001" - }, - "protocols": ["uniswap"], - "requestId": "0x8a08858a04170b889fde681dc3807267f30111116213377170a5ed2049a4d88e", - "slippage": 2, - "srcAsset": { - "address": "0x0000000000000000000000000000000000000000", - "aggregators": [], - "assetId": "eip155:1/slip44:60", - "chainId": 1, - "coingeckoId": "ethereum", - "decimals": 18, - "iconUrl": "https://static.cx.metamask.io/api/v2/tokenIcons/assets/eip155/1/slip44/60.png", - "metadata": {}, - "name": "Ether", - "occurrences": 100, - "symbol": "ETH" - }, - "srcChainId": 1, - "srcTokenAmount": "6203054486331757", - "steps": [], - "walletAddress": "0x141d32a89a1e0a5Ef360034a2f60a4B917c18838" - }, - "slippagePercentage": 0, - "startTime": 1775091716001, - "status": { - "srcChain": { - "chainId": 1, - "txHash": "0xc9d456875588263b7a20cf6de1f6e0665e5702984a09b72fffa4376c7bce440e" - }, - "status": "PENDING" - }, - "txMetaId": "8b6097e0-2e2f-11f1-afc5-535abbd777f7" - }, - "8b7aeae0-27d2-11f1-a115-6b5c45028a09": { - "account": "0xf25bd11c334507fd007d584e2d0b7b2c6543f714", - "batchId": "0x851b71f592f54aca880727fa67943fcf", - "estimatedProcessingTimeInSeconds": 0, - "hasApprovalTx": false, - "isStxEnabled": false, - "location": "Main View", - "originalTransactionId": "8b7aeae0-27d2-11f1-a115-6b5c45028a09", - "pricingData": { - "amountSent": "0.003251147740701272", - "amountSentInUsd": "2.066696352578301947673961984", - "quotedGasAmount": "0.0000108553", - "quotedGasInUsd": "0.0069005196642660416", - "quotedReturnInUsd": "2.0313467000485065225809493122811279597951456" - }, - "quote": { - "aggregator": "pancakeswap", - "aggregatorType": "AGG", - "bridgeId": "pancakeswap", - "bridges": ["pancakeswap"], - "destAsset": { - "address": "0x55d398326f99059ff775485246999027b3197955", - "aggregators": [ - "pancakeExtended", - "oneInch", - "liFi", - "trustWallet", - "socket", - "squid", - "rango", - "sonarwatch", - "sushiSwap" - ], - "assetId": "eip155:56/erc20:0x55d398326f99059ff775485246999027b3197955", - "chainId": 56, - "coingeckoId": "binance-bridged-usdt-bnb-smart-chain", - "decimals": 18, - "iconUrl": "https://static.cx.metamask.io/api/v2/tokenIcons/assets/eip155/56/erc20/0x55d398326f99059ff775485246999027b3197955.png", - "metadata": { - "storage": { - "approval": 2, - "balance": 1 - } - }, - "name": "Tether USD", - "occurrences": 9, - "symbol": "USDT" - }, - "destChainId": 56, - "destTokenAmount": "2032305948456469901", - "destWalletAddress": "0xF25bd11C334507Fd007d584E2D0b7b2C6543f714", - "feeData": { - "metabridge": { - "amount": "28447542731136", - "asset": { - "address": "0x0000000000000000000000000000000000000000", - "aggregators": [], - "assetId": "eip155:56/slip44:714", - "chainId": 56, - "coingeckoId": "binancecoin", - "decimals": 18, - "iconUrl": "https://static.cx.metamask.io/api/v2/tokenIcons/assets/eip155/56/slip44/714.png", - "metadata": {}, - "name": "Binance Coin", - "occurrences": 100, - "symbol": "BNB" - }, - "baseBpsFee": 87.5, - "quoteBpsFee": 87.5 - }, - "txFee": { - "amount": "29129397375000", - "asset": { - "address": "0x0000000000000000000000000000000000000000", - "aggregators": [], - "assetId": "eip155:56/slip44:714", - "chainId": 56, - "coingeckoId": "binancecoin", - "decimals": 18, - "iconUrl": "https://static.cx.metamask.io/api/v2/tokenIcons/assets/eip155/56/slip44/714.png", - "metadata": {}, - "name": "Binance Coin", - "occurrences": 100, - "symbol": "BNB" - }, - "maxFeePerGas": "65650000", - "maxPriorityFeePerGas": "65650000" - } - }, - "gasIncluded": true, - "gasIncluded7702": false, - "gasSponsored": false, - "minDestTokenAmount": "1991659829487340502", - "priceData": { - "priceImpact": "0.008963417690405132", - "totalFeeAmountUsd": "0.018097188783839476", - "totalFromAmountUsd": "2.068250146724521", - "totalToAmountUsd": "2.0313467000487924" - }, - "protocols": ["pancakeswap"], - "requestId": "0x8b061269697535469db54a67d1e9c05ab01d66fc3b67abc19c507f29e8c303da", - "slippage": 2, - "srcAsset": { - "address": "0x0000000000000000000000000000000000000000", - "aggregators": [], - "assetId": "eip155:56/slip44:714", - "chainId": 56, - "coingeckoId": "binancecoin", - "decimals": 18, - "iconUrl": "https://static.cx.metamask.io/api/v2/tokenIcons/assets/eip155/56/slip44/714.png", - "metadata": {}, - "name": "Binance Coin", - "occurrences": 100, - "symbol": "BNB" - }, - "srcChainId": 56, - "srcTokenAmount": "3193570800595136", - "steps": [], - "walletAddress": "0xF25bd11C334507Fd007d584E2D0b7b2C6543f714" - }, - "slippagePercentage": 0, - "startTime": 1774392066060, - "status": { - "srcChain": { - "chainId": 56, - "txHash": "0x812dd5089184217d8175144edd039285e3eb57d6159fe4ed8cd51d905298abf3" - }, - "status": "FAILED" - }, - "txMetaId": "8b7aeae0-27d2-11f1-a115-6b5c45028a09" - }, - "8dc780d0-39d7-11f1-b3fb-3727d90ba13b": { - "account": "0x141d32a89a1e0a5ef360034a2f60a4b917c18838", - "actionId": "1776373338457.2598", - "completionTime": 1776373350216, - "estimatedProcessingTimeInSeconds": 6, - "hasApprovalTx": false, - "isStxEnabled": false, - "location": "Main View", - "originalTransactionId": "8dc780d0-39d7-11f1-b3fb-3727d90ba13b", - "pricingData": { - "amountSent": "0.009905049240083164", - "amountSentInUsd": "23.268572114811193415809287868", - "quotedGasAmount": "0.0000021564667098", - "quotedGasInUsd": "0.0050658911363220666173226", - "quotedReturnInUsd": "23.020225286799337659793818833" - }, - "quote": { - "aggregator": "relay", - "bridgeId": "relay", - "bridges": ["Relay"], - "destAsset": { - "address": "0x0000000000000000000000000000000000000000", - "aggregators": [], - "assetId": "eip155:1/slip44:60", - "chainId": 1, - "coingeckoId": "ethereum", - "decimals": 18, - "iconUrl": "https://static.cx.metamask.io/api/v2/tokenIcons/assets/eip155/1/slip44/60.png", - "metadata": {}, - "name": "Ether", - "occurrences": 100, - "symbol": "ETH" - }, - "destChainId": 1, - "destTokenAmount": "9799332071537609", - "feeData": { - "metabridge": { - "amount": "86669180850727", - "asset": { - "address": "0x0000000000000000000000000000000000000000", - "aggregators": [], - "assetId": "eip155:42161/slip44:60", - "chainId": 42161, - "coingeckoId": "ethereum", - "decimals": 18, - "iconUrl": "https://static.cx.metamask.io/api/v2/tokenIcons/assets/eip155/42161/slip44/60.png", - "metadata": {}, - "name": "Ether", - "occurrences": 100, - "symbol": "ETH" - }, - "baseBpsFee": 87.5, - "quoteBpsFee": 87.5 - }, - "txFee": { - "amount": "3263898924240", - "asset": { - "address": "0x0000000000000000000000000000000000000000", - "aggregators": [], - "assetId": "eip155:42161/slip44:60", - "chainId": 42161, - "coingeckoId": "ethereum", - "decimals": 18, - "iconUrl": "https://static.cx.metamask.io/api/v2/tokenIcons/assets/eip155/42161/slip44/60.png", - "metadata": {}, - "name": "Ether", - "occurrences": 100, - "symbol": "ETH" - }, - "maxFeePerGas": "22628251", - "maxPriorityFeePerGas": "1" - } - }, - "gasIncluded": true, - "gasIncluded7702": false, - "minDestTokenAmount": "9603345430106857", - "priceData": { - "priceImpact": "0.011002243370011554", - "totalFeeAmountUsd": "0.20366641901866997", - "totalFromAmountUsd": "23.276162173562465", - "totalToAmountUsd": "23.012486628410457" - }, - "protocols": ["Relay"], - "requestId": "0x9bd7f55386bb8ad80e8709a64c218c31407fcbdffb21ba3d9c736a7a635ff212", - "srcAsset": { - "address": "0x0000000000000000000000000000000000000000", - "aggregators": [], - "assetId": "eip155:42161/slip44:60", - "chainId": 42161, - "coingeckoId": "ethereum", - "decimals": 18, - "iconUrl": "https://static.cx.metamask.io/api/v2/tokenIcons/assets/eip155/42161/slip44/60.png", - "metadata": {}, - "name": "Ether", - "occurrences": 100, - "symbol": "ETH" - }, - "srcChainId": 42161, - "srcTokenAmount": "9815116160308197", - "steps": [ - { - "action": "bridge", - "destAmount": "9799332071537609", - "destAsset": { - "address": "0x0000000000000000000000000000000000000000", - "aggregators": [], - "assetId": "eip155:1/slip44:60", - "chainId": 1, - "coingeckoId": "ethereum", - "decimals": 18, - "iconUrl": "https://static.cx.metamask.io/api/v2/tokenIcons/assets/eip155/1/slip44/60.png", - "metadata": {}, - "name": "Ether", - "occurrences": 100, - "symbol": "ETH" - }, - "destChainId": 1, - "protocol": { - "name": "relay" - }, - "srcAmount": "9815116160308197", - "srcAsset": { - "address": "0x0000000000000000000000000000000000000000", - "aggregators": [], - "assetId": "eip155:42161/slip44:60", - "chainId": 42161, - "coingeckoId": "ethereum", - "decimals": 18, - "iconUrl": "https://static.cx.metamask.io/api/v2/tokenIcons/assets/eip155/42161/slip44/60.png", - "metadata": {}, - "name": "Ether", - "occurrences": 100, - "symbol": "ETH" - }, - "srcChainId": 42161 - } - ] - }, - "slippagePercentage": 0, - "startTime": 1776373338373, - "status": { - "bridge": "relay", - "destChain": { - "chainId": 1, - "txHash": "0xdaf4a004470fe35e64ab5e59eebf80a2c30b33521043211978765153b4307a89" - }, - "isExpectedToken": true, - "isUnrecognizedRouterAddress": false, - "srcChain": { - "chainId": 42161, - "txHash": "0xa3e05b352b25c37b607c8d6200bfad67e030cc1f1cccfbde23eca29fd25ef0f6" - }, - "status": "COMPLETE" - }, - "txMetaId": "8dc780d0-39d7-11f1-b3fb-3727d90ba13b" - }, - "9b485fb0-1d65-11f1-9cc5-3b0a0edc0d9a": { - "account": "0x30e8ccad5a980bdf30447f8c2c48e70989d9d294", - "batchId": "0x55d07fa6f2b0498480569ae8915410eb", - "estimatedProcessingTimeInSeconds": 0, - "hasApprovalTx": false, - "isStxEnabled": true, - "location": "Main View", - "originalTransactionId": "9b485fb0-1d65-11f1-9cc5-3b0a0edc0d9a", - "pricingData": { - "amountSent": "0.001", - "amountSentInUsd": "0.64674944903", - "quotedGasAmount": "0.0000097075", - "quotedGasInUsd": "0.006278320276458725", - "quotedReturnInUsd": "0.6419008048632919321546019928550076326715606" - }, - "quote": { - "aggregator": "uniswap", - "aggregatorType": "AGG", - "bridgeId": "uniswap", - "bridges": ["uniswap"], - "destAsset": { - "address": "0x55d398326f99059ff775485246999027b3197955", - "aggregators": [ - "pancakeExtended", - "oneInch", - "liFi", - "socket", - "rubic", - "squid", - "rango", - "sonarwatch", - "sushiSwap" - ], - "assetId": "eip155:56/erc20:0x55d398326f99059ff775485246999027b3197955", - "chainId": 56, - "coingeckoId": "binance-bridged-usdt-bnb-smart-chain", - "decimals": 18, - "iconUrl": "https://static.cx.metamask.io/api/v2/tokenIcons/assets/eip155/56/erc20/0x55d398326f99059ff775485246999027b3197955.png", - "metadata": { - "storage": { - "approval": 2, - "balance": 1 - } - }, - "name": "Tether USD", - "occurrences": 11, - "symbol": "USDT" - }, - "destChainId": 56, - "destTokenAmount": "641900804863491158", - "destWalletAddress": "0x30E8ccaD5A980BDF30447f8c2C48e70989D9d294", - "feeData": { - "metabridge": { - "amount": "8750000000000", - "asset": { - "address": "0x0000000000000000000000000000000000000000", - "aggregators": [], - "assetId": "eip155:56/slip44:714", - "chainId": 56, - "coingeckoId": "binancecoin", - "decimals": 18, - "iconUrl": "https://static.cx.metamask.io/api/v2/tokenIcons/assets/eip155/56/slip44/714.png", - "metadata": {}, - "name": "Binance Coin", - "occurrences": 100, - "symbol": "BNB" - }, - "baseBpsFee": 87.5, - "quoteBpsFee": 87.5 - } - }, - "gasIncluded": false, - "gasIncluded7702": false, - "gasSponsored": false, - "minDestTokenAmount": "629062788766221334", - "priceData": { - "priceImpact": "-0.0021464858951511807", - "totalFeeAmountUsd": "0.005654074999999999", - "totalFromAmountUsd": "0.64618", - "totalToAmountUsd": "0.6419008048634911" - }, - "protocols": ["uniswap"], - "requestId": "0xd175ed08e021ad43f5e7bee1250836b3c5d91b5bcaeff1c48b10339d730ebe54", - "slippage": 2, - "srcAsset": { - "address": "0x0000000000000000000000000000000000000000", - "aggregators": [], - "assetId": "eip155:56/slip44:714", - "chainId": 56, - "coingeckoId": "binancecoin", - "decimals": 18, - "iconUrl": "https://static.cx.metamask.io/api/v2/tokenIcons/assets/eip155/56/slip44/714.png", - "metadata": {}, - "name": "Binance Coin", - "occurrences": 100, - "symbol": "BNB" - }, - "srcChainId": 56, - "srcTokenAmount": "991250000000000", - "steps": [], - "walletAddress": "0x30E8ccaD5A980BDF30447f8c2C48e70989D9d294" - }, - "slippagePercentage": 0, - "startTime": 1773245765929, - "status": { - "srcChain": { - "chainId": 56 - }, - "status": "PENDING" - }, - "txMetaId": "9b485fb0-1d65-11f1-9cc5-3b0a0edc0d9a" - }, - "9e7ac440-2934-11f1-9401-213b64721d37": { - "account": "0x141d32a89a1e0a5ef360034a2f60a4b917c18838", - "approvalTxId": "9e54ecc0-2934-11f1-9401-213b64721d37", - "batchId": "0x144a7e8740a74c42b2def8974c46d884", - "completionTime": 1774544154175, - "estimatedProcessingTimeInSeconds": 10, - "hasApprovalTx": true, - "isStxEnabled": true, - "location": "Main View", - "originalTransactionId": "9e7ac440-2934-11f1-9401-213b64721d37", - "pricingData": { - "amountSent": "8.852619604988224588", - "amountSentInUsd": "8.85276127646068009672865697729821848636115536", - "quotedGasAmount": "0.00000648555", - "quotedGasInUsd": "0.00406665274753739865", - "quotedReturnInUsd": "8.783611904863379430373784055" - }, - "quote": { - "aggregator": "squid", - "bridgeId": "squid", - "bridges": ["coral"], - "destAsset": { - "address": "0x0000000000000000000000000000000000000000", - "aggregators": [], - "assetId": "eip155:8453/slip44:60", - "chainId": 8453, - "coingeckoId": "ethereum", - "decimals": 18, - "iconUrl": "https://static.cx.metamask.io/api/v2/tokenIcons/assets/eip155/8453/slip44/60.png", - "metadata": {}, - "name": "Ether", - "occurrences": 100, - "price": "2066.16242588", - "symbol": "ETH" - }, - "destChainId": 8453, - "destTokenAmount": "4246733891825021", - "feeData": { - "metabridge": { - "amount": "77460421543646965", - "asset": { - "address": "0x55d398326f99059ff775485246999027b3197955", - "aggregators": [ - "pancakeExtended", - "oneInch", - "liFi", - "trustWallet", - "socket", - "squid", - "rango", - "sonarwatch", - "sushiSwap" - ], - "assetId": "eip155:56/erc20:0x55d398326f99059ff775485246999027b3197955", - "chainId": 56, - "coingeckoId": "binance-bridged-usdt-bnb-smart-chain", - "decimals": 18, - "iconUrl": "https://static.cx.metamask.io/api/v2/tokenIcons/assets/eip155/56/erc20/0x55d398326f99059ff775485246999027b3197955.png", - "metadata": { - "storage": { - "approval": 2, - "balance": 1 - } - }, - "name": "Tether USD", - "occurrences": 9, - "symbol": "USDT" - }, - "baseBpsFee": 87.5, - "quoteBpsFee": 87.5 - } - }, - "gasIncluded": false, - "gasIncluded7702": false, - "minDestTokenAmount": "4161689755023839", - "priceData": { - "priceImpact": "0.0098138785611246", - "totalFeeAmountUsd": "0.07739086208510076", - "totalFromAmountUsd": "8.844669952582946", - "totalToAmountUsd": "8.757869435755069" - }, - "protocols": ["coral"], - "requestId": "c4f5f8fc34a2f1955f34bb5ee15a5f15", - "slippage": 2, - "srcAsset": { - "address": "0x55d398326f99059ff775485246999027b3197955", - "aggregators": [ - "pancakeExtended", - "oneInch", - "liFi", - "trustWallet", - "socket", - "squid", - "rango", - "sonarwatch", - "sushiSwap" - ], - "assetId": "eip155:56/erc20:0x55d398326f99059ff775485246999027b3197955", - "chainId": 56, - "coingeckoId": "binance-bridged-usdt-bnb-smart-chain", - "decimals": 18, - "iconUrl": "https://static.cx.metamask.io/api/v2/tokenIcons/assets/eip155/56/erc20/0x55d398326f99059ff775485246999027b3197955.png", - "metadata": { - "storage": { - "approval": 2, - "balance": 1 - } - }, - "name": "Tether USD", - "occurrences": 9, - "price": "0.999407086417287", - "symbol": "USDT" - }, - "srcChainId": 56, - "srcTokenAmount": "8775159183444577623", - "steps": [ - { - "action": "bridge", - "destAmount": "4246733891825021", - "destAsset": { - "address": "0x0000000000000000000000000000000000000000", - "aggregators": [], - "assetId": "eip155:8453/slip44:60", - "chainId": 8453, - "coingeckoId": "ethereum", - "decimals": 18, - "iconUrl": "https://static.cx.metamask.io/api/v2/tokenIcons/assets/eip155/8453/slip44/60.png", - "metadata": {}, - "name": "Ether", - "occurrences": 100, - "symbol": "ETH" - }, - "destChainId": 8453, - "protocol": { - "displayName": "CORAL", - "name": "CORAL" - }, - "srcAmount": "8775159183444577623", - "srcAsset": { - "address": "0x55d398326f99059ff775485246999027b3197955", - "aggregators": [ - "pancakeExtended", - "oneInch", - "liFi", - "trustWallet", - "socket", - "squid", - "rango", - "sonarwatch", - "sushiSwap" - ], - "assetId": "eip155:56/erc20:0x55d398326f99059ff775485246999027b3197955", - "chainId": 56, - "coingeckoId": "binance-bridged-usdt-bnb-smart-chain", - "decimals": 18, - "iconUrl": "https://static.cx.metamask.io/api/v2/tokenIcons/assets/eip155/56/erc20/0x55d398326f99059ff775485246999027b3197955.png", - "metadata": { - "storage": { - "approval": 2, - "balance": 1 - } - }, - "name": "Tether USD", - "occurrences": 9, - "symbol": "USDT" - }, - "srcChainId": 56 - } - ] - }, - "slippagePercentage": 0, - "startTime": 1774544139508, - "status": { - "bridge": "axelar", - "destChain": { - "chainId": 8453, - "txHash": "0x1a87ff556543bc827eab82e3e61cd2db3f22fe5f18a46964dd120ec4888e75c2" - }, - "isExpectedToken": true, - "srcChain": { - "chainId": 56, - "txHash": "0x92b7a917341cb18ced9743dbe2f20d76980bffed5e9eef75a5a205ebb88d7d1d" - }, - "status": "COMPLETE" - }, - "txMetaId": "9e7ac440-2934-11f1-9401-213b64721d37" - }, - "9ef2a840-39db-11f1-bc3b-3727d90ba13b": { - "account": "0x141d32a89a1e0a5ef360034a2f60a4b917c18838", - "batchId": "0xce36b3117b3b4175a32f757f08f37c12", - "completionTime": 1776375097420, - "estimatedProcessingTimeInSeconds": 8, - "hasApprovalTx": false, - "isStxEnabled": false, - "location": "Main View", - "originalTransactionId": "9ef2a840-39db-11f1-bc3b-3727d90ba13b", - "pricingData": { - "amountSent": "0.014069073143611844", - "amountSentInUsd": "32.936025025201072622318781016", - "quotedGasAmount": "0.000002312882127", - "quotedGasInUsd": "0.005414510454073587846378", - "quotedReturnInUsd": "32.582309960267337396719482708" - }, - "quote": { - "aggregator": "relay", - "bridgeId": "relay", - "bridges": ["Relay"], - "destAsset": { - "address": "0x0000000000000000000000000000000000000000", - "aggregators": [], - "assetId": "eip155:1/slip44:60", - "chainId": 1, - "coingeckoId": "ethereum", - "decimals": 18, - "iconUrl": "https://static.cx.metamask.io/api/v2/tokenIcons/assets/eip155/1/slip44/60.png", - "metadata": {}, - "name": "Ether", - "occurrences": 100, - "symbol": "ETH" - }, - "destChainId": 1, - "destTokenAmount": "13917978920288222", - "feeData": { - "metabridge": { - "amount": "123104390006603", - "asset": { - "address": "0x0000000000000000000000000000000000000000", - "aggregators": [], - "assetId": "eip155:42161/slip44:60", - "chainId": 42161, - "coingeckoId": "ethereum", - "decimals": 18, - "iconUrl": "https://static.cx.metamask.io/api/v2/tokenIcons/assets/eip155/42161/slip44/60.png", - "metadata": {}, - "name": "Ether", - "occurrences": 100, - "symbol": "ETH" - }, - "baseBpsFee": 87.5, - "quoteBpsFee": 87.5 - }, - "txFee": { - "amount": "3096750287085", - "asset": { - "address": "0x0000000000000000000000000000000000000000", - "aggregators": [], - "assetId": "eip155:42161/slip44:60", - "chainId": 42161, - "coingeckoId": "ethereum", - "decimals": 18, - "iconUrl": "https://static.cx.metamask.io/api/v2/tokenIcons/assets/eip155/42161/slip44/60.png", - "metadata": {}, - "name": "Ether", - "occurrences": 100, - "symbol": "ETH" - }, - "maxFeePerGas": "22590001", - "maxPriorityFeePerGas": "1" - } - }, - "gasIncluded": true, - "gasIncluded7702": false, - "gasSponsored": false, - "minDestTokenAmount": "13639619341882457", - "priceData": { - "priceImpact": "0.011664693468124068", - "totalFeeAmountUsd": "0.28845054222427763", - "totalFromAmountUsd": "32.965776254203334", - "totalToAmountUsd": "32.57406910711698" - }, - "protocols": ["Relay"], - "requestId": "0xab943815c1e9b2375cc1e974ab670bf2569e0f4b9ed1d606eb8f07548f5fbc44", - "slippage": 2, - "srcAsset": { - "address": "0x0000000000000000000000000000000000000000", - "aggregators": [], - "assetId": "eip155:42161/slip44:60", - "chainId": 42161, - "coingeckoId": "ethereum", - "decimals": 18, - "iconUrl": "https://static.cx.metamask.io/api/v2/tokenIcons/assets/eip155/42161/slip44/60.png", - "metadata": {}, - "name": "Ether", - "occurrences": 100, - "symbol": "ETH" - }, - "srcChainId": 42161, - "srcTokenAmount": "13942872003318156", - "steps": [ - { - "action": "bridge", - "destAmount": "13917978920288222", - "destAsset": { - "address": "0x0000000000000000000000000000000000000000", - "aggregators": [], - "assetId": "eip155:1/slip44:60", - "chainId": 1, - "coingeckoId": "ethereum", - "decimals": 18, - "iconUrl": "https://static.cx.metamask.io/api/v2/tokenIcons/assets/eip155/1/slip44/60.png", - "metadata": {}, - "name": "Ether", - "occurrences": 100, - "symbol": "ETH" - }, - "destChainId": 1, - "protocol": { - "name": "relay" - }, - "srcAmount": "13942872003318156", - "srcAsset": { - "address": "0x0000000000000000000000000000000000000000", - "aggregators": [], - "assetId": "eip155:42161/slip44:60", - "chainId": 42161, - "coingeckoId": "ethereum", - "decimals": 18, - "iconUrl": "https://static.cx.metamask.io/api/v2/tokenIcons/assets/eip155/42161/slip44/60.png", - "metadata": {}, - "name": "Ether", - "occurrences": 100, - "symbol": "ETH" - }, - "srcChainId": 42161 - } - ] - }, - "slippagePercentage": 0, - "startTime": 1776375085169, - "status": { - "bridge": "relay", - "destChain": { - "chainId": 1, - "txHash": "0x260d0b76a9118fdd29b43140426dc185ba5812a0a6df79bcbe4bed63da6e3dc6" - }, - "isExpectedToken": true, - "isUnrecognizedRouterAddress": false, - "srcChain": { - "chainId": 42161, - "txHash": "0x8e50804fe5d9726e6f7a501f27ce71299a28320876c8508d6434e1cbab681dbd" - }, - "status": "COMPLETE" - }, - "txMetaId": "9ef2a840-39db-11f1-bc3b-3727d90ba13b" - }, - "a1af0150-182a-11f1-b7d6-03d70bc40886": { - "account": "0x30e8ccad5a980bdf30447f8c2c48e70989d9d294", - "approvalTxId": "a1989320-182a-11f1-b7d6-03d70bc40886", - "batchId": "0x2061d40a2e1841f9950e04f5de8e132c", - "estimatedProcessingTimeInSeconds": 0, - "hasApprovalTx": true, - "isStxEnabled": true, - "pricingData": { - "amountSent": "1", - "amountSentInUsd": "0.99665341702749971638556", - "quotedGasAmount": "0.073326381528324012", - "quotedGasInUsd": "0.007626137700551221193335752", - "quotedReturnInUsd": "0.99197449820791916866952878" - }, - "quote": { - "aggregator": "uniswap", - "aggregatorType": "AGG", - "bridgeId": "uniswap", - "bridges": ["uniswap"], - "destAsset": { - "address": "0x0000000000000000000000000000000000000000", - "aggregators": [], - "assetId": "eip155:137/slip44:966", - "chainId": 137, - "coingeckoId": "matic-network", - "decimals": 18, - "iconUrl": "https://static.cx.metamask.io/api/v2/tokenIcons/assets/eip155/137/slip44/966.png", - "metadata": {}, - "name": "Polygon Ecosystem Token", - "occurrences": 100, - "symbol": "POL" - }, - "destChainId": 137, - "destTokenAmount": "9537973660861658930", - "destWalletAddress": "0x30E8ccaD5A980BDF30447f8c2C48e70989D9d294", - "feeData": { - "metabridge": { - "amount": "84193966741527884", - "asset": { - "address": "0x0000000000000000000000000000000000000000", - "aggregators": [], - "assetId": "eip155:137/slip44:966", - "chainId": 137, - "coingeckoId": "matic-network", - "decimals": 18, - "iconUrl": "https://static.cx.metamask.io/api/v2/tokenIcons/assets/eip155/137/slip44/966.png", - "metadata": {}, - "name": "Polygon Ecosystem Token", - "occurrences": 100, - "symbol": "POL" - }, - "baseBpsFee": 87.5, - "quoteBpsFee": 87.5 - } - }, - "gasIncluded7702": false, - "gasSponsored": false, - "minDestTokenAmount": "9347214187644425751", - "priceData": { - "priceImpact": "-0.0018321986022797466", - "totalFeeAmountUsd": "0.008755751571285194", - "totalFromAmountUsd": "0.9988272725", - "totalToAmountUsd": "0.9919015708613084" - }, - "protocols": ["uniswap"], - "requestId": "0xaf83fdb8be0d29e5f2f7505500df5ea9b16477979c1eb40842e274a6bdebd069", - "slippage": 2, - "srcAsset": { - "address": "0xc2132d05d31c914a87c6611c10748aeb04b58e8f", - "aggregators": [ - "quickswap", - "oneInch", - "liFi", - "socket", - "squid", - "rango", - "sonarwatch", - "sushiSwap" - ], - "assetId": "eip155:137/erc20:0xc2132d05d31c914a87c6611c10748aeb04b58e8f", - "chainId": 137, - "coingeckoId": "polygon-bridged-usdt-polygon", - "decimals": 6, - "iconUrl": "https://static.cx.metamask.io/api/v2/tokenIcons/assets/eip155/137/erc20/0xc2132d05d31c914a87c6611c10748aeb04b58e8f.png", - "metadata": { - "storage": { - "approval": 1, - "balance": 0 - } - }, - "name": "Tether USD", - "occurrences": 8, - "symbol": "USDT" - }, - "srcChainId": 137, - "srcTokenAmount": "1000000", - "steps": [], - "walletAddress": "0x30E8ccaD5A980BDF30447f8c2C48e70989D9d294" - }, - "slippagePercentage": 0, - "startTime": 1772670680338, - "status": { - "srcChain": { - "chainId": 137 - }, - "status": "PENDING" - }, - "txMetaId": "a1af0150-182a-11f1-b7d6-03d70bc40886" - }, - "a7078650-1829-11f1-b7d6-03d70bc40886": { - "account": "0x30e8ccad5a980bdf30447f8c2c48e70989d9d294", - "batchId": "0xb9227fc11f7441479be50f9f8a658aed", - "estimatedProcessingTimeInSeconds": 0, - "hasApprovalTx": false, - "isStxEnabled": true, - "pricingData": { - "amountSent": "1.078178", - "amountSentInUsd": "1.0775090105761568130913207242", - "quotedGasAmount": "0.052856676266674212", - "quotedGasInUsd": "0.005486998600853830740159576", - "quotedReturnInUsd": "1.06618458887260628449386862" - }, - "quote": { - "aggregator": "0x", - "aggregatorType": "AGG", - "bridgeId": "0x", - "bridges": ["0x"], - "destAsset": { - "address": "0x0000000000000000000000000000000000000000", - "aggregators": [], - "assetId": "eip155:137/slip44:966", - "chainId": 137, - "coingeckoId": "matic-network", - "decimals": 18, - "iconUrl": "https://static.cx.metamask.io/api/v2/tokenIcons/assets/eip155/137/slip44/966.png", - "metadata": {}, - "name": "Polygon Ecosystem Token", - "occurrences": 100, - "symbol": "POL" - }, - "destChainId": 137, - "destTokenAmount": "10270637511332170690", - "destWalletAddress": "0x30E8ccaD5A980BDF30447f8c2C48e70989D9d294", - "feeData": { - "metabridge": { - "amount": "90661365169388644", - "asset": { - "address": "0x0000000000000000000000000000000000000000", - "aggregators": [], - "assetId": "eip155:137/slip44:966", - "chainId": 137, - "coingeckoId": "matic-network", - "decimals": 18, - "iconUrl": "https://static.cx.metamask.io/api/v2/tokenIcons/assets/eip155/137/slip44/966.png", - "metadata": {}, - "name": "Polygon Ecosystem Token", - "occurrences": 100, - "symbol": "POL" - }, - "baseBpsFee": 87.5, - "quoteBpsFee": 87.5 - } - }, - "gasIncluded7702": false, - "gasSponsored": false, - "minDestTokenAmount": "10065224761105527276", - "priceData": { - "priceImpact": "0.0016214778676030947", - "totalFeeAmountUsd": "0.009412916238711776", - "totalFromAmountUsd": "1.0775090128692848", - "totalToAmountUsd": "1.0663489396140626" - }, - "protocols": ["0x"], - "requestId": "0x29ff0feb02c72fe702f4f5563b5429d3b466937b1f849be9b2f07ed299f8a22c", - "slippage": 2, - "srcAsset": { - "address": "0xc2132d05d31c914a87c6611c10748aeb04b58e8f", - "aggregators": [ - "quickswap", - "oneInch", - "liFi", - "socket", - "squid", - "rango", - "sonarwatch", - "sushiSwap" - ], - "assetId": "eip155:137/erc20:0xc2132d05d31c914a87c6611c10748aeb04b58e8f", - "chainId": 137, - "coingeckoId": "polygon-bridged-usdt-polygon", - "decimals": 6, - "iconUrl": "https://static.cx.metamask.io/api/v2/tokenIcons/assets/eip155/137/erc20/0xc2132d05d31c914a87c6611c10748aeb04b58e8f.png", - "metadata": { - "storage": { - "approval": 1, - "balance": 0 - } - }, - "name": "Tether USD", - "occurrences": 8, - "symbol": "USDT" - }, - "srcChainId": 137, - "srcTokenAmount": "1078178", - "steps": [], - "walletAddress": "0x30E8ccaD5A980BDF30447f8c2C48e70989D9d294" - }, - "slippagePercentage": 0, - "startTime": 1772670259990, - "status": { - "srcChain": { - "chainId": 137 - }, - "status": "PENDING" - }, - "txMetaId": "a7078650-1829-11f1-b7d6-03d70bc40886" - }, - "a9fc0530-1d6e-11f1-a031-3b0a0edc0d9a": { - "account": "0x30e8ccad5a980bdf30447f8c2c48e70989d9d294", - "batchId": "0xdf6baf8b834443988a127ef07d570d7f", - "estimatedProcessingTimeInSeconds": 0, - "hasApprovalTx": false, - "isStxEnabled": true, - "location": "Main View", - "originalTransactionId": "a9fc0530-1d6e-11f1-a031-3b0a0edc0d9a", - "pricingData": { - "amountSent": "0.001", - "amountSentInUsd": "0.650442682895", - "quotedGasAmount": "0.0000088226", - "quotedGasInUsd": "0.005738595614109427", - "quotedReturnInUsd": "0.6470493344878519044527954366964585865296495" - }, - "quote": { - "aggregator": "uniswap", - "aggregatorType": "AGG", - "bridgeId": "uniswap", - "bridges": ["uniswap"], - "destAsset": { - "address": "0x55d398326f99059ff775485246999027b3197955", - "aggregators": [ - "pancakeExtended", - "oneInch", - "liFi", - "socket", - "rubic", - "squid", - "rango", - "sonarwatch", - "sushiSwap" - ], - "assetId": "eip155:56/erc20:0x55d398326f99059ff775485246999027b3197955", - "chainId": 56, - "coingeckoId": "binance-bridged-usdt-bnb-smart-chain", - "decimals": 18, - "iconUrl": "https://static.cx.metamask.io/api/v2/tokenIcons/assets/eip155/56/erc20/0x55d398326f99059ff775485246999027b3197955.png", - "metadata": { - "storage": { - "approval": 2, - "balance": 1 - } - }, - "name": "Tether USD", - "occurrences": 11, - "symbol": "USDT" - }, - "destChainId": 56, - "destTokenAmount": "647049334487973805", - "destWalletAddress": "0x30E8ccaD5A980BDF30447f8c2C48e70989D9d294", - "feeData": { - "metabridge": { - "amount": "8750000000000", - "asset": { - "address": "0x0000000000000000000000000000000000000000", - "aggregators": [], - "assetId": "eip155:56/slip44:714", - "chainId": 56, - "coingeckoId": "binancecoin", - "decimals": 18, - "iconUrl": "https://static.cx.metamask.io/api/v2/tokenIcons/assets/eip155/56/slip44/714.png", - "metadata": {}, - "name": "Binance Coin", - "occurrences": 100, - "symbol": "BNB" - }, - "baseBpsFee": 87.5, - "quoteBpsFee": 87.5 - } - }, - "gasIncluded": false, - "gasIncluded7702": false, - "gasSponsored": false, - "minDestTokenAmount": "634108347798214328", - "priceData": { - "priceImpact": "-0.003383228569669163", - "totalFeeAmountUsd": "0.005692399999999999", - "totalFromAmountUsd": "0.6505599999999999", - "totalToAmountUsd": "0.6470493344879739" - }, - "protocols": ["uniswap"], - "requestId": "0x2b66b0c13f0be0acb974c12bc6aa7f530cd492937afb16fe51e016db16c0fb97", - "slippage": 2, - "srcAsset": { - "address": "0x0000000000000000000000000000000000000000", - "aggregators": [], - "assetId": "eip155:56/slip44:714", - "chainId": 56, - "coingeckoId": "binancecoin", - "decimals": 18, - "iconUrl": "https://static.cx.metamask.io/api/v2/tokenIcons/assets/eip155/56/slip44/714.png", - "metadata": {}, - "name": "Binance Coin", - "occurrences": 100, - "symbol": "BNB" - }, - "srcChainId": 56, - "srcTokenAmount": "991250000000000", - "steps": [], - "walletAddress": "0x30E8ccaD5A980BDF30447f8c2C48e70989D9d294" - }, - "slippagePercentage": 0, - "startTime": 1773249655486, - "status": { - "srcChain": { - "chainId": 56 - }, - "status": "PENDING" - }, - "txMetaId": "a9fc0530-1d6e-11f1-a031-3b0a0edc0d9a" - }, - "aa940ae0-39c7-11f1-a280-3727d90ba13b": { - "account": "0x141d32a89a1e0a5ef360034a2f60a4b917c18838", - "batchId": "0xf3cca04fd9da447f8eaf554014fe08df", - "completionTime": 1776366546909, - "estimatedProcessingTimeInSeconds": 6, - "hasApprovalTx": false, - "isStxEnabled": true, - "location": "Main View", - "originalTransactionId": "aa940ae0-39c7-11f1-a280-3727d90ba13b", - "pricingData": { - "amountSent": "0.014991819002505789", - "amountSentInUsd": "35.138086032029867071882444857", - "quotedGasAmount": "0.0000021942469404", - "quotedGasInUsd": "0.0051429141289930497807852", - "quotedReturnInUsd": "34.778356485299929284265223158" - }, - "quote": { - "aggregator": "relay", - "bridgeId": "relay", - "bridges": ["Relay"], - "destAsset": { - "address": "0x0000000000000000000000000000000000000000", - "aggregators": [], - "assetId": "eip155:1/slip44:60", - "chainId": 1, - "coingeckoId": "ethereum", - "decimals": 18, - "iconUrl": "https://static.cx.metamask.io/api/v2/tokenIcons/assets/eip155/1/slip44/60.png", - "metadata": {}, - "name": "Ether", - "occurrences": 100, - "symbol": "ETH" - }, - "destChainId": 1, - "destTokenAmount": "14838338808692366", - "feeData": { - "metabridge": { - "amount": "131178416271925", - "asset": { - "address": "0x0000000000000000000000000000000000000000", - "aggregators": [ - "traderJoe", - "oneInch", - "liFi", - "socket", - "rubic", - "squid", - "rango", - "sonarwatch", - "sushiSwap" - ], - "assetId": "eip155:42161/slip44:60", - "chainId": 42161, - "coingeckoId": "arbitrum", - "decimals": 18, - "iconUrl": "https://static.cx.metamask.io/api/v2/tokenIcons/assets/eip155/42161/slip44/60.png", - "metadata": { - "storage": { - "approval": 52, - "balance": 51 - } - }, - "name": "Ether", - "occurrences": 9, - "symbol": "ETH" - }, - "baseBpsFee": 87.5, - "quoteBpsFee": 87.5 - }, - "txFee": { - "amount": "3313955199228", - "asset": { - "address": "0x0000000000000000000000000000000000000000", - "aggregators": [ - "traderJoe", - "oneInch", - "liFi", - "socket", - "rubic", - "squid", - "rango", - "sonarwatch", - "sushiSwap" - ], - "assetId": "eip155:42161/slip44:60", - "chainId": 42161, - "coingeckoId": "arbitrum", - "decimals": 18, - "iconUrl": "https://static.cx.metamask.io/api/v2/tokenIcons/assets/eip155/42161/slip44/60.png", - "metadata": { - "storage": { - "approval": 52, - "balance": 51 - } - }, - "name": "Ether", - "occurrences": 9, - "symbol": "ETH" - }, - "maxFeePerGas": "22509001", - "maxPriorityFeePerGas": "1" - } - }, - "gasIncluded": true, - "gasIncluded7702": false, - "minDestTokenAmount": "14541572032518519", - "priceData": { - "priceImpact": "0.010141215487063239", - "totalFeeAmountUsd": "0.30756175576238204", - "totalFromAmountUsd": "35.14991494427241", - "totalToAmountUsd": "34.785760958304245" - }, - "protocols": ["Relay"], - "requestId": "0x6464d0ac92cfd508673745d35c849544659dd90108cab31de28e58545682a4a6", - "srcAsset": { - "address": "0x0000000000000000000000000000000000000000", - "aggregators": [ - "traderJoe", - "oneInch", - "liFi", - "socket", - "rubic", - "squid", - "rango", - "sonarwatch", - "sushiSwap" - ], - "assetId": "eip155:42161/slip44:60", - "chainId": 42161, - "coingeckoId": "arbitrum", - "decimals": 18, - "iconUrl": "https://static.cx.metamask.io/api/v2/tokenIcons/assets/eip155/42161/slip44/60.png", - "metadata": { - "storage": { - "approval": 52, - "balance": 51 - } - }, - "name": "Ether", - "occurrences": 9, - "symbol": "ETH" - }, - "srcChainId": 42161, - "srcTokenAmount": "14857326631034636", - "steps": [ - { - "action": "bridge", - "destAmount": "14838338808692366", - "destAsset": { - "address": "0x0000000000000000000000000000000000000000", - "aggregators": [], - "assetId": "eip155:1/slip44:60", - "chainId": 1, - "coingeckoId": "ethereum", - "decimals": 18, - "iconUrl": "https://static.cx.metamask.io/api/v2/tokenIcons/assets/eip155/1/slip44/60.png", - "metadata": {}, - "name": "Ether", - "occurrences": 100, - "symbol": "ETH" - }, - "destChainId": 1, - "protocol": { - "name": "relay" - }, - "srcAmount": "14857326631034636", - "srcAsset": { - "address": "0x0000000000000000000000000000000000000000", - "aggregators": [ - "traderJoe", - "oneInch", - "liFi", - "socket", - "rubic", - "squid", - "rango", - "sonarwatch", - "sushiSwap" - ], - "assetId": "eip155:42161/slip44:60", - "chainId": 42161, - "coingeckoId": "arbitrum", - "decimals": 18, - "iconUrl": "https://static.cx.metamask.io/api/v2/tokenIcons/assets/eip155/42161/slip44/60.png", - "metadata": { - "storage": { - "approval": 52, - "balance": 51 - } - }, - "name": "Ether", - "occurrences": 9, - "symbol": "ETH" - }, - "srcChainId": 42161 - } - ] - }, - "slippagePercentage": 0, - "startTime": 1776366514736, - "status": { - "bridge": "relay", - "destChain": { - "chainId": 1, - "txHash": "0xdc4e0284fdf36a74a858e96d65a0c7ea4af4bcb82b237db1fc7f469482be87b1" - }, - "isExpectedToken": true, - "isUnrecognizedRouterAddress": false, - "srcChain": { - "chainId": 42161, - "txHash": "0x303af96afa1a1e9a42299f146147a41722e44a56c1644ec45a87fb939d08f78f" - }, - "status": "COMPLETE" - }, - "txMetaId": "aa940ae0-39c7-11f1-a280-3727d90ba13b" - }, - "acf895a0-1d69-11f1-9ded-3b0a0edc0d9a": { - "account": "0x30e8ccad5a980bdf30447f8c2c48e70989d9d294", - "batchId": "0xcf6d86288dc249b397c325e6df53c1e2", - "estimatedProcessingTimeInSeconds": 0, - "hasApprovalTx": false, - "isStxEnabled": true, - "location": "Main View", - "originalTransactionId": "acf895a0-1d69-11f1-9ded-3b0a0edc0d9a", - "pricingData": { - "amountSent": "0.001", - "amountSentInUsd": "0.64879966151", - "quotedGasAmount": "0.0000089415", - "quotedGasInUsd": "0.005801242173391665", - "quotedReturnInUsd": "0.6431361346094591995038380637241237640663226" - }, - "quote": { - "aggregator": "uniswap", - "aggregatorType": "AGG", - "bridgeId": "uniswap", - "bridges": ["uniswap"], - "destAsset": { - "address": "0x55d398326f99059ff775485246999027b3197955", - "aggregators": [ - "pancakeExtended", - "oneInch", - "liFi", - "socket", - "rubic", - "squid", - "rango", - "sonarwatch", - "sushiSwap" - ], - "assetId": "eip155:56/erc20:0x55d398326f99059ff775485246999027b3197955", - "chainId": 56, - "coingeckoId": "binance-bridged-usdt-bnb-smart-chain", - "decimals": 18, - "iconUrl": "https://static.cx.metamask.io/api/v2/tokenIcons/assets/eip155/56/erc20/0x55d398326f99059ff775485246999027b3197955.png", - "metadata": { - "storage": { - "approval": 2, - "balance": 1 - } - }, - "name": "Tether USD", - "occurrences": 11, - "symbol": "USDT" - }, - "destChainId": 56, - "destTokenAmount": "643242912932943342", - "destWalletAddress": "0x30E8ccaD5A980BDF30447f8c2C48e70989D9d294", - "feeData": { - "metabridge": { - "amount": "8750000000000", - "asset": { - "address": "0x0000000000000000000000000000000000000000", - "aggregators": [], - "assetId": "eip155:56/slip44:714", - "chainId": 56, - "coingeckoId": "binancecoin", - "decimals": 18, - "iconUrl": "https://static.cx.metamask.io/api/v2/tokenIcons/assets/eip155/56/slip44/714.png", - "metadata": {}, - "name": "Binance Coin", - "occurrences": 100, - "symbol": "BNB" - }, - "baseBpsFee": 87.5, - "quoteBpsFee": 87.5 - } - }, - "gasIncluded": false, - "gasIncluded7702": false, - "gasSponsored": false, - "minDestTokenAmount": "630378054674284475", - "priceData": { - "priceImpact": "-0.00009749603348596838", - "totalFeeAmountUsd": "0.005676562499999999", - "totalFromAmountUsd": "0.64875", - "totalToAmountUsd": "0.6431361346093964" - }, - "protocols": ["uniswap"], - "requestId": "0x7dd582ce3328840f7a7114b9f5f6f9e119048b5cbf00ff3870c191fba672c88b", - "slippage": 2, - "srcAsset": { - "address": "0x0000000000000000000000000000000000000000", - "aggregators": [], - "assetId": "eip155:56/slip44:714", - "chainId": 56, - "coingeckoId": "binancecoin", - "decimals": 18, - "iconUrl": "https://static.cx.metamask.io/api/v2/tokenIcons/assets/eip155/56/slip44/714.png", - "metadata": {}, - "name": "Binance Coin", - "occurrences": 100, - "symbol": "BNB" - }, - "srcChainId": 56, - "srcTokenAmount": "991250000000000", - "steps": [], - "walletAddress": "0x30E8ccaD5A980BDF30447f8c2C48e70989D9d294" - }, - "slippagePercentage": 0, - "startTime": 1773247513483, - "status": { - "srcChain": { - "chainId": 56 - }, - "status": "PENDING" - }, - "txMetaId": "acf895a0-1d69-11f1-9ded-3b0a0edc0d9a" - }, - "aeeb6e00-2877-11f1-ad30-ab204d847804": { - "account": "0xf25bd11c334507fd007d584e2d0b7b2c6543f714", - "batchId": "0xdf7c3475c65f4c238500a972c12753d7", - "estimatedProcessingTimeInSeconds": 0, - "hasApprovalTx": true, - "isStxEnabled": false, - "location": "Main View", - "originalTransactionId": "aeeb6e00-2877-11f1-ad30-ab204d847804", - "pricingData": { - "amountSent": "1.765059078272677076", - "amountSentInUsd": "1.76472901222430648263861252244406885934904704", - "quotedGasAmount": "0.0000125891", - "quotedGasInUsd": "0.0081208214388407776", - "quotedReturnInUsd": "1.718899595572890413350218208" - }, - "quote": { - "aggregator": "uniswap", - "aggregatorType": "AGG", - "bridgeId": "uniswap", - "bridges": ["uniswap"], - "destAsset": { - "address": "0x0000000000000000000000000000000000000000", - "aggregators": [], - "assetId": "eip155:56/slip44:714", - "chainId": 56, - "coingeckoId": "binancecoin", - "decimals": 18, - "iconUrl": "https://static.cx.metamask.io/api/v2/tokenIcons/assets/eip155/56/slip44/714.png", - "metadata": {}, - "name": "Binance Coin", - "occurrences": 100, - "symbol": "BNB" - }, - "destChainId": 56, - "destTokenAmount": "2664681037700003", - "destWalletAddress": "0xF25bd11C334507Fd007d584E2D0b7b2C6543f714", - "feeData": { - "metabridge": { - "amount": "23897891795889", - "asset": { - "address": "0x0000000000000000000000000000000000000000", - "aggregators": [], - "assetId": "eip155:56/slip44:714", - "chainId": 56, - "coingeckoId": "binancecoin", - "decimals": 18, - "iconUrl": "https://static.cx.metamask.io/api/v2/tokenIcons/assets/eip155/56/slip44/714.png", - "metadata": {}, - "name": "Binance Coin", - "occurrences": 100, - "symbol": "BNB" - }, - "baseBpsFee": 87.5, - "quoteBpsFee": 87.5 - }, - "txFee": { - "amount": "42608704320000", - "asset": { - "address": "0x0000000000000000000000000000000000000000", - "aggregators": [], - "assetId": "eip155:56/slip44:714", - "chainId": 56, - "coingeckoId": "binancecoin", - "decimals": 18, - "iconUrl": "https://static.cx.metamask.io/api/v2/tokenIcons/assets/eip155/56/slip44/714.png", - "metadata": {}, - "name": "Binance Coin", - "occurrences": 100, - "symbol": "BNB" - }, - "maxFeePerGas": "60000000", - "maxPriorityFeePerGas": "60000000" - } - }, - "gasIncluded": true, - "gasIncluded7702": true, - "gasSponsored": false, - "minDestTokenAmount": "2611387416946002", - "priceData": { - "priceImpact": "0.0008588048262491247", - "totalFeeAmountUsd": "0.015426806091000224", - "totalFromAmountUsd": "1.7645789822033868", - "totalToAmountUsd": "1.720131550266483" - }, - "protocols": ["uniswap"], - "requestId": "0xcb974428569dc4212154105aee21516da0aa983ec69cf5b1149202484d53615a", - "slippage": 2, - "srcAsset": { - "address": "0x55d398326f99059ff775485246999027b3197955", - "aggregators": [ - "pancakeExtended", - "oneInch", - "liFi", - "trustWallet", - "socket", - "rubic", - "squid", - "rango", - "sonarwatch", - "sushiSwap" - ], - "assetId": "eip155:56/erc20:0x55d398326f99059ff775485246999027b3197955", - "chainId": 56, - "coingeckoId": "binance-bridged-usdt-bnb-smart-chain", - "decimals": 18, - "iconUrl": "https://static.cx.metamask.io/api/v2/tokenIcons/assets/eip155/56/erc20/0x55d398326f99059ff775485246999027b3197955.png", - "metadata": { - "storage": { - "approval": 2, - "balance": 1 - } - }, - "name": "Tether USD", - "occurrences": 11, - "symbol": "USDT" - }, - "srcChainId": 56, - "srcTokenAmount": "1765059078272677076", - "steps": [], - "walletAddress": "0xF25bd11C334507Fd007d584E2D0b7b2C6543f714" - }, - "slippagePercentage": 0, - "startTime": 1774462992470, - "status": { - "srcChain": { - "chainId": 56, - "txHash": "0x03ff491e058f56ddf8c06b070b1f94e60d808472b7c4d6b06df3e5f637699b5c" - }, - "status": "PENDING" - }, - "txMetaId": "aeeb6e00-2877-11f1-ad30-ab204d847804" - }, - "af812f50-2c9e-11f1-8d8e-f533125480a0": { - "account": "0x141d32a89a1e0a5ef360034a2f60a4b917c18838", - "batchId": "0x9c50168a2123464b81cb86efc7ee3908", - "estimatedProcessingTimeInSeconds": 0, - "hasApprovalTx": false, - "isStxEnabled": true, - "location": "Main View", - "originalTransactionId": "af812f50-2c9e-11f1-8d8e-f533125480a0", - "pricingData": { - "amountSent": "0.008530768394912923", - "amountSentInUsd": "17.352104199781670752248181354", - "quotedGasAmount": "0.000535663191744865", - "quotedGasInUsd": "1.08957166445724412203514627", - "quotedReturnInUsd": "15.920172267996500697050019457026816" - }, - "quote": { - "aggregator": "uniswap", - "aggregatorType": "AGG", - "bridgeId": "uniswap", - "bridges": ["uniswap"], - "destAsset": { - "address": "0xaca92e438df0b2401ff60da7e4337b687a2435da", - "aggregators": ["metamask", "liFi", "socket", "rubic", "rango"], - "assetId": "eip155:1/erc20:0xaca92e438df0b2401ff60da7e4337b687a2435da", - "chainId": 1, - "decimals": 6, - "iconUrl": "https://static.cx.metamask.io/api/v2/tokenIcons/assets/eip155/1/erc20/0xaca92e438df0b2401ff60da7e4337b687a2435da.png", - "metadata": {}, - "name": "MetaMask USD", - "occurrences": 5, - "symbol": "MUSD" - }, - "destChainId": 1, - "destTokenAmount": "15904268", - "destWalletAddress": "0x141d32a89a1e0a5Ef360034a2f60a4B917c18838", - "feeData": { - "metabridge": { - "amount": "0", - "asset": { - "address": "0x0000000000000000000000000000000000000000", - "aggregators": [], - "assetId": "eip155:1/slip44:60", - "chainId": 1, - "coingeckoId": "ethereum", - "decimals": 18, - "iconUrl": "https://static.cx.metamask.io/api/v2/tokenIcons/assets/eip155/1/slip44/60.png", - "metadata": {}, - "name": "Ether", - "occurrences": 100, - "symbol": "ETH" - }, - "baseBpsFee": 87.5, - "quoteBpsFee": 0 - }, - "txFee": { - "amount": "727603981452392", - "asset": { - "address": "0x0000000000000000000000000000000000000000", - "aggregators": [], - "assetId": "eip155:1/slip44:60", - "chainId": 1, - "coingeckoId": "ethereum", - "decimals": 18, - "iconUrl": "https://static.cx.metamask.io/api/v2/tokenIcons/assets/eip155/1/slip44/60.png", - "metadata": {}, - "name": "Ether", - "occurrences": 100, - "symbol": "ETH" - }, - "maxFeePerGas": "2257998788", - "maxPriorityFeePerGas": "2100000001" - } - }, - "gasIncluded": true, - "gasIncluded7702": false, - "gasSponsored": false, - "minDestTokenAmount": "15586182", - "priceData": { - "priceImpact": "-0.003946472580005189", - "totalFeeAmountUsd": "0", - "totalFromAmountUsd": "17.336227532142043", - "totalToAmountUsd": "15.920172267999998" - }, - "protocols": ["uniswap"], - "requestId": "0xcd3a6cb4b0dc21a628e1c61235ed03606fa9eb50a9b2fb004155fdb186fceacb", - "slippage": 2, - "srcAsset": { - "address": "0x0000000000000000000000000000000000000000", - "aggregators": [], - "assetId": "eip155:1/slip44:60", - "chainId": 1, - "coingeckoId": "ethereum", - "decimals": 18, - "iconUrl": "https://static.cx.metamask.io/api/v2/tokenIcons/assets/eip155/1/slip44/60.png", - "metadata": {}, - "name": "Ether", - "occurrences": 100, - "symbol": "ETH" - }, - "srcChainId": 1, - "srcTokenAmount": "7803164413460531", - "steps": [], - "walletAddress": "0x141d32a89a1e0a5Ef360034a2f60a4B917c18838" - }, - "slippagePercentage": 0, - "startTime": 1774919548273, - "status": { - "srcChain": { - "chainId": 1 - }, - "status": "PENDING" - }, - "txMetaId": "af812f50-2c9e-11f1-8d8e-f533125480a0" - }, - "af9887e0-2c9e-11f1-8d8e-f533125480a0": { - "account": "0x141d32a89a1e0a5ef360034a2f60a4b917c18838", - "batchId": "0xeb30f25e67774379b91fdfdd561da08f", - "estimatedProcessingTimeInSeconds": 0, - "hasApprovalTx": false, - "isStxEnabled": true, - "location": "Main View", - "originalTransactionId": "af9887e0-2c9e-11f1-8d8e-f533125480a0", - "pricingData": { - "amountSent": "0.008530768394912923", - "amountSentInUsd": "17.352104199781670752248181354", - "quotedGasAmount": "0.000535663191744865", - "quotedGasInUsd": "1.08957166445724412203514627", - "quotedReturnInUsd": "15.920172267996500697050019457026816" - }, - "quote": { - "aggregator": "uniswap", - "aggregatorType": "AGG", - "bridgeId": "uniswap", - "bridges": ["uniswap"], - "destAsset": { - "address": "0xaca92e438df0b2401ff60da7e4337b687a2435da", - "aggregators": ["metamask", "liFi", "socket", "rubic", "rango"], - "assetId": "eip155:1/erc20:0xaca92e438df0b2401ff60da7e4337b687a2435da", - "chainId": 1, - "decimals": 6, - "iconUrl": "https://static.cx.metamask.io/api/v2/tokenIcons/assets/eip155/1/erc20/0xaca92e438df0b2401ff60da7e4337b687a2435da.png", - "metadata": {}, - "name": "MetaMask USD", - "occurrences": 5, - "symbol": "MUSD" - }, - "destChainId": 1, - "destTokenAmount": "15904268", - "destWalletAddress": "0x141d32a89a1e0a5Ef360034a2f60a4B917c18838", - "feeData": { - "metabridge": { - "amount": "0", - "asset": { - "address": "0x0000000000000000000000000000000000000000", - "aggregators": [], - "assetId": "eip155:1/slip44:60", - "chainId": 1, - "coingeckoId": "ethereum", - "decimals": 18, - "iconUrl": "https://static.cx.metamask.io/api/v2/tokenIcons/assets/eip155/1/slip44/60.png", - "metadata": {}, - "name": "Ether", - "occurrences": 100, - "symbol": "ETH" - }, - "baseBpsFee": 87.5, - "quoteBpsFee": 0 - }, - "txFee": { - "amount": "727603981452392", - "asset": { - "address": "0x0000000000000000000000000000000000000000", - "aggregators": [], - "assetId": "eip155:1/slip44:60", - "chainId": 1, - "coingeckoId": "ethereum", - "decimals": 18, - "iconUrl": "https://static.cx.metamask.io/api/v2/tokenIcons/assets/eip155/1/slip44/60.png", - "metadata": {}, - "name": "Ether", - "occurrences": 100, - "symbol": "ETH" - }, - "maxFeePerGas": "2257998788", - "maxPriorityFeePerGas": "2100000001" - } - }, - "gasIncluded": true, - "gasIncluded7702": false, - "gasSponsored": false, - "minDestTokenAmount": "15586182", - "priceData": { - "priceImpact": "-0.003946472580005189", - "totalFeeAmountUsd": "0", - "totalFromAmountUsd": "17.336227532142043", - "totalToAmountUsd": "15.920172267999998" - }, - "protocols": ["uniswap"], - "requestId": "0xcd3a6cb4b0dc21a628e1c61235ed03606fa9eb50a9b2fb004155fdb186fceacb", - "slippage": 2, - "srcAsset": { - "address": "0x0000000000000000000000000000000000000000", - "aggregators": [], - "assetId": "eip155:1/slip44:60", - "chainId": 1, - "coingeckoId": "ethereum", - "decimals": 18, - "iconUrl": "https://static.cx.metamask.io/api/v2/tokenIcons/assets/eip155/1/slip44/60.png", - "metadata": {}, - "name": "Ether", - "occurrences": 100, - "symbol": "ETH" - }, - "srcChainId": 1, - "srcTokenAmount": "7803164413460531", - "steps": [], - "walletAddress": "0x141d32a89a1e0a5Ef360034a2f60a4B917c18838" - }, - "slippagePercentage": 0, - "startTime": 1774919548749, - "status": { - "srcChain": { - "chainId": 1 - }, - "status": "PENDING" - }, - "txMetaId": "af9887e0-2c9e-11f1-8d8e-f533125480a0" - }, - "b06235e0-287f-11f1-916e-9d8a4fbc2cec": { - "account": "0xf25bd11c334507fd007d584e2d0b7b2c6543f714", - "batchId": "0x42030c6af46449b786c93c14c64a2801", - "estimatedProcessingTimeInSeconds": 0, - "hasApprovalTx": false, - "isStxEnabled": true, - "location": "Main View", - "originalTransactionId": "b06235e0-287f-11f1-916e-9d8a4fbc2cec", - "pricingData": { - "amountSent": "0.001950721614518098", - "amountSentInUsd": "1.260681767800322765067867866", - "quotedGasAmount": "0.0000120929", - "quotedGasInUsd": "0.0078152097338597893", - "quotedReturnInUsd": "1.25047214752259277511305476495693351813595576" - }, - "quote": { - "aggregator": "0x", - "aggregatorType": "AGG", - "bridgeId": "0x", - "bridges": ["0x"], - "destAsset": { - "address": "0x55d398326f99059ff775485246999027b3197955", - "aggregators": [ - "pancakeExtended", - "oneInch", - "liFi", - "trustWallet", - "socket", - "rubic", - "squid", - "rango", - "sonarwatch", - "sushiSwap" - ], - "assetId": "eip155:56/erc20:0x55d398326f99059ff775485246999027b3197955", - "chainId": 56, - "coingeckoId": "binance-bridged-usdt-bnb-smart-chain", - "decimals": 18, - "iconUrl": "https://static.cx.metamask.io/api/v2/tokenIcons/assets/eip155/56/erc20/0x55d398326f99059ff775485246999027b3197955.png", - "metadata": { - "storage": { - "approval": 2, - "balance": 1 - } - }, - "name": "Tether USD", - "occurrences": 11, - "symbol": "USDT" - }, - "destChainId": 56, - "destTokenAmount": "1250160449201243082", - "destWalletAddress": "0xF25bd11C334507Fd007d584E2D0b7b2C6543f714", - "feeData": { - "metabridge": { - "amount": "17068814127033", - "asset": { - "address": "0x0000000000000000000000000000000000000000", - "aggregators": [], - "assetId": "eip155:56/slip44:714", - "chainId": 56, - "coingeckoId": "binancecoin", - "decimals": 18, - "iconUrl": "https://static.cx.metamask.io/api/v2/tokenIcons/assets/eip155/56/slip44/714.png", - "metadata": {}, - "name": "Binance Coin", - "occurrences": 100, - "symbol": "BNB" - }, - "baseBpsFee": 87.5, - "quoteBpsFee": 87.5 - }, - "txFee": { - "amount": "0", - "asset": { - "address": "0x0000000000000000000000000000000000000000", - "aggregators": [], - "assetId": "eip155:56/slip44:714", - "chainId": 56, - "coingeckoId": "binancecoin", - "decimals": 18, - "iconUrl": "https://static.cx.metamask.io/api/v2/tokenIcons/assets/eip155/56/slip44/714.png", - "metadata": {}, - "name": "Binance Coin", - "occurrences": 100, - "symbol": "BNB" - }, - "maxFeePerGas": "59999999", - "maxPriorityFeePerGas": "59999999" - } - }, - "gasIncluded": true, - "gasIncluded7702": false, - "gasSponsored": false, - "minDestTokenAmount": "1225157240217218220", - "priceData": { - "priceImpact": "0.0083059632154491", - "totalFeeAmountUsd": "0.011027136678628398", - "totalFromAmountUsd": "1.2602441918432719", - "totalToAmountUsd": "1.2497766499433383" - }, - "protocols": ["0x"], - "requestId": "0xa71403b3645b65b833eb2da18c185a140ddf042fc09de1c36e2b5fef4f7184ea", - "slippage": 2, - "srcAsset": { - "address": "0x0000000000000000000000000000000000000000", - "aggregators": [], - "assetId": "eip155:56/slip44:714", - "chainId": 56, - "coingeckoId": "binancecoin", - "decimals": 18, - "iconUrl": "https://static.cx.metamask.io/api/v2/tokenIcons/assets/eip155/56/slip44/714.png", - "metadata": {}, - "name": "Binance Coin", - "occurrences": 100, - "symbol": "BNB" - }, - "srcChainId": 56, - "srcTokenAmount": "1933652800391065", - "steps": [], - "walletAddress": "0xF25bd11C334507Fd007d584E2D0b7b2C6543f714" - }, - "slippagePercentage": 0, - "startTime": 1774466430902, - "status": { - "srcChain": { - "chainId": 56, - "txHash": "0x339c604b695a968a7fb2eeff8a80bdea0329e141636eb923c48f49ef5d51a48c" - }, - "status": "FAILED" - }, - "txMetaId": "b06235e0-287f-11f1-916e-9d8a4fbc2cec" - }, - "b1045420-182a-11f1-b7d6-03d70bc40886": { - "account": "0x30e8ccad5a980bdf30447f8c2c48e70989d9d294", - "approvalTxId": "b0da8500-182a-11f1-b7d6-03d70bc40886", - "batchId": "0x0444cf0d419e42e7974b503f28fc20ee", - "estimatedProcessingTimeInSeconds": 0, - "hasApprovalTx": true, - "isStxEnabled": true, - "pricingData": { - "amountSent": "1", - "amountSentInUsd": "0.99665341702749971638556", - "quotedGasAmount": "0.07213066593786073", - "quotedGasInUsd": "0.00750178011527958749949158", - "quotedReturnInUsd": "0.992087531492422457277093898" - }, - "quote": { - "aggregator": "0x", - "aggregatorType": "AGG", - "bridgeId": "0x", - "bridges": ["0x"], - "destAsset": { - "address": "0x0000000000000000000000000000000000000000", - "aggregators": [], - "assetId": "eip155:137/slip44:966", - "chainId": 137, - "coingeckoId": "matic-network", - "decimals": 18, - "iconUrl": "https://static.cx.metamask.io/api/v2/tokenIcons/assets/eip155/137/slip44/966.png", - "metadata": {}, - "name": "Polygon Ecosystem Token", - "occurrences": 100, - "symbol": "POL" - }, - "destChainId": 137, - "destTokenAmount": "9539060491715013263", - "destWalletAddress": "0x30E8ccaD5A980BDF30447f8c2C48e70989D9d294", - "feeData": { - "metabridge": { - "amount": "84203560456500747", - "asset": { - "address": "0x0000000000000000000000000000000000000000", - "aggregators": [], - "assetId": "eip155:137/slip44:966", - "chainId": 137, - "coingeckoId": "matic-network", - "decimals": 18, - "iconUrl": "https://static.cx.metamask.io/api/v2/tokenIcons/assets/eip155/137/slip44/966.png", - "metadata": {}, - "name": "Polygon Ecosystem Token", - "occurrences": 100, - "symbol": "POL" - }, - "baseBpsFee": 87.5, - "quoteBpsFee": 87.5 - } - }, - "gasIncluded7702": false, - "gasSponsored": false, - "minDestTokenAmount": "9348279281880712997", - "priceData": { - "priceImpact": "-0.0019463551497855278", - "totalFeeAmountUsd": "0.008756749269673797", - "totalFromAmountUsd": "0.9988272725", - "totalToAmountUsd": "0.9920145958359028" - }, - "protocols": ["0x"], - "requestId": "0x787aeec33ccd92a04ec55299a727889243dbaacce1d6120d4810f04def49e44a", - "slippage": 2, - "srcAsset": { - "address": "0xc2132d05d31c914a87c6611c10748aeb04b58e8f", - "aggregators": [ - "quickswap", - "oneInch", - "liFi", - "socket", - "squid", - "rango", - "sonarwatch", - "sushiSwap" - ], - "assetId": "eip155:137/erc20:0xc2132d05d31c914a87c6611c10748aeb04b58e8f", - "chainId": 137, - "coingeckoId": "polygon-bridged-usdt-polygon", - "decimals": 6, - "iconUrl": "https://static.cx.metamask.io/api/v2/tokenIcons/assets/eip155/137/erc20/0xc2132d05d31c914a87c6611c10748aeb04b58e8f.png", - "metadata": { - "storage": { - "approval": 1, - "balance": 0 - } - }, - "name": "Tether USD", - "occurrences": 8, - "symbol": "USDT" - }, - "srcChainId": 137, - "srcTokenAmount": "1000000", - "steps": [], - "walletAddress": "0x30E8ccaD5A980BDF30447f8c2C48e70989D9d294" - }, - "slippagePercentage": 0, - "startTime": 1772670705934, - "status": { - "srcChain": { - "chainId": 137 - }, - "status": "PENDING" - }, - "txMetaId": "b1045420-182a-11f1-b7d6-03d70bc40886" - }, - "b9c136b0-2878-11f1-8d89-b38700c8b498": { - "account": "0xf25bd11c334507fd007d584e2d0b7b2c6543f714", - "batchId": "0x969dba2954714dc2be018fc9ed65702e", - "estimatedProcessingTimeInSeconds": 0, - "hasApprovalTx": false, - "isStxEnabled": false, - "location": "Main View", - "originalTransactionId": "b9c136b0-2878-11f1-8d89-b38700c8b498", - "pricingData": { - "amountSent": "0.002455141709369288", - "amountSentInUsd": "1.58535999948140083275493292", - "quotedGasAmount": "0.0000097097", - "quotedGasInUsd": "0.0062698498942934855", - "quotedReturnInUsd": "1.55816789667883771513071730301050959829036725" - }, - "quote": { - "aggregator": "uniswap", - "aggregatorType": "AGG", - "bridgeId": "uniswap", - "bridges": ["uniswap"], - "destAsset": { - "address": "0x55d398326f99059ff775485246999027b3197955", - "aggregators": [ - "pancakeExtended", - "oneInch", - "liFi", - "trustWallet", - "socket", - "rubic", - "squid", - "rango", - "sonarwatch", - "sushiSwap" - ], - "assetId": "eip155:56/erc20:0x55d398326f99059ff775485246999027b3197955", - "chainId": 56, - "coingeckoId": "binance-bridged-usdt-bnb-smart-chain", - "decimals": 18, - "iconUrl": "https://static.cx.metamask.io/api/v2/tokenIcons/assets/eip155/56/erc20/0x55d398326f99059ff775485246999027b3197955.png", - "metadata": { - "storage": { - "approval": 2, - "balance": 1 - } - }, - "name": "Tether USD", - "occurrences": 11, - "symbol": "USDT" - }, - "destChainId": 56, - "destTokenAmount": "1558697853949307695", - "destWalletAddress": "0xF25bd11C334507Fd007d584E2D0b7b2C6543f714", - "feeData": { - "metabridge": { - "amount": "21482489956981", - "asset": { - "address": "0x0000000000000000000000000000000000000000", - "aggregators": [], - "assetId": "eip155:56/slip44:714", - "chainId": 56, - "coingeckoId": "binancecoin", - "decimals": 18, - "iconUrl": "https://static.cx.metamask.io/api/v2/tokenIcons/assets/eip155/56/slip44/714.png", - "metadata": {}, - "name": "Binance Coin", - "occurrences": 100, - "symbol": "BNB" - }, - "baseBpsFee": 87.5, - "quoteBpsFee": 87.5 - }, - "txFee": { - "amount": "19880370000000", - "asset": { - "address": "0x0000000000000000000000000000000000000000", - "aggregators": [], - "assetId": "eip155:56/slip44:714", - "chainId": 56, - "coingeckoId": "binancecoin", - "decimals": 18, - "iconUrl": "https://static.cx.metamask.io/api/v2/tokenIcons/assets/eip155/56/slip44/714.png", - "metadata": {}, - "name": "Binance Coin", - "occurrences": 100, - "symbol": "BNB" - }, - "maxFeePerGas": "60000000", - "maxPriorityFeePerGas": "60000000" - } - }, - "gasIncluded": true, - "gasIncluded7702": false, - "gasSponsored": false, - "minDestTokenAmount": "1527523896870321541", - "priceData": { - "priceImpact": "0.009388436020299599", - "totalFeeAmountUsd": "0.01387554026321403", - "totalFromAmountUsd": "1.5857760300816228", - "totalToAmountUsd": "1.558167896678965" - }, - "protocols": ["uniswap"], - "requestId": "0x608dffaaae3b0a4c6ba8a0cd9b175805c0d48b45e680ae359a2c73c2b1090a7b", - "slippage": 2, - "srcAsset": { - "address": "0x0000000000000000000000000000000000000000", - "aggregators": [], - "assetId": "eip155:56/slip44:714", - "chainId": 56, - "coingeckoId": "binancecoin", - "decimals": 18, - "iconUrl": "https://static.cx.metamask.io/api/v2/tokenIcons/assets/eip155/56/slip44/714.png", - "metadata": {}, - "name": "Binance Coin", - "occurrences": 100, - "symbol": "BNB" - }, - "srcChainId": 56, - "srcTokenAmount": "2413778849412307", - "steps": [], - "walletAddress": "0xF25bd11C334507Fd007d584E2D0b7b2C6543f714" - }, - "slippagePercentage": 0, - "startTime": 1774463439974, - "status": { - "srcChain": { - "chainId": 56 - }, - "status": "PENDING" - }, - "txMetaId": "b9c136b0-2878-11f1-8d89-b38700c8b498" - }, - "b9d83690-2877-11f1-ad59-ab204d847804": { - "account": "0xf25bd11c334507fd007d584e2d0b7b2c6543f714", - "batchId": "0x770996ef5ced48ee9e97650d37cfabb9", - "estimatedProcessingTimeInSeconds": 0, - "hasApprovalTx": false, - "isStxEnabled": false, - "location": "Main View", - "originalTransactionId": "b9d83690-2877-11f1-ad59-ab204d847804", - "pricingData": { - "amountSent": "0.002675216887010217", - "amountSentInUsd": "1.725695931367727349244343712", - "quotedGasAmount": "0.00000966405", - "quotedGasInUsd": "0.0062339662427043408", - "quotedReturnInUsd": "1.70054614363293430730029881395912112201725152" - }, - "quote": { - "aggregator": "uniswap", - "aggregatorType": "AGG", - "bridgeId": "uniswap", - "bridges": ["uniswap"], - "destAsset": { - "address": "0x55d398326f99059ff775485246999027b3197955", - "aggregators": [ - "pancakeExtended", - "oneInch", - "liFi", - "trustWallet", - "socket", - "rubic", - "squid", - "rango", - "sonarwatch", - "sushiSwap" - ], - "assetId": "eip155:56/erc20:0x55d398326f99059ff775485246999027b3197955", - "chainId": 56, - "coingeckoId": "binance-bridged-usdt-bnb-smart-chain", - "decimals": 18, - "iconUrl": "https://static.cx.metamask.io/api/v2/tokenIcons/assets/eip155/56/erc20/0x55d398326f99059ff775485246999027b3197955.png", - "metadata": { - "storage": { - "approval": 2, - "balance": 1 - } - }, - "name": "Tether USD", - "occurrences": 11, - "symbol": "USDT" - }, - "destChainId": 56, - "destTokenAmount": "1700864205240021113", - "destWalletAddress": "0xF25bd11C334507Fd007d584E2D0b7b2C6543f714", - "feeData": { - "metabridge": { - "amount": "23408147761339", - "asset": { - "address": "0x0000000000000000000000000000000000000000", - "aggregators": [], - "assetId": "eip155:56/slip44:714", - "chainId": 56, - "coingeckoId": "binancecoin", - "decimals": 18, - "iconUrl": "https://static.cx.metamask.io/api/v2/tokenIcons/assets/eip155/56/slip44/714.png", - "metadata": {}, - "name": "Binance Coin", - "occurrences": 100, - "symbol": "BNB" - }, - "baseBpsFee": 87.5, - "quoteBpsFee": 87.5 - }, - "txFee": { - "amount": "19796850000000", - "asset": { - "address": "0x0000000000000000000000000000000000000000", - "aggregators": [], - "assetId": "eip155:56/slip44:714", - "chainId": 56, - "coingeckoId": "binancecoin", - "decimals": 18, - "iconUrl": "https://static.cx.metamask.io/api/v2/tokenIcons/assets/eip155/56/slip44/714.png", - "metadata": {}, - "name": "Binance Coin", - "occurrences": 100, - "symbol": "BNB" - }, - "maxFeePerGas": "60000000", - "maxPriorityFeePerGas": "60000000" - } - }, - "gasIncluded": true, - "gasIncluded7702": false, - "gasSponsored": false, - "minDestTokenAmount": "1666846921135220690", - "priceData": { - "priceImpact": "0.00802246003502632", - "totalFeeAmountUsd": "0.015110661624377164", - "totalFromAmountUsd": "1.7269327570717052", - "totalToAmountUsd": "1.7004015701761959" - }, - "protocols": ["uniswap"], - "requestId": "0x1d5d9f5951339d7c3f06448585c1ce0f9efa310de2ab7a7d7e19e0f51bb3f42b", - "slippage": 2, - "srcAsset": { - "address": "0x0000000000000000000000000000000000000000", - "aggregators": [], - "assetId": "eip155:56/slip44:714", - "chainId": 56, - "coingeckoId": "binancecoin", - "decimals": 18, - "iconUrl": "https://static.cx.metamask.io/api/v2/tokenIcons/assets/eip155/56/slip44/714.png", - "metadata": {}, - "name": "Binance Coin", - "occurrences": 100, - "symbol": "BNB" - }, - "srcChainId": 56, - "srcTokenAmount": "2632011889248878", - "steps": [], - "walletAddress": "0xF25bd11C334507Fd007d584E2D0b7b2C6543f714" - }, - "slippagePercentage": 0, - "startTime": 1774463010807, - "status": { - "srcChain": { - "chainId": 56 - }, - "status": "PENDING" - }, - "txMetaId": "b9d83690-2877-11f1-ad59-ab204d847804" - }, - "bad9f800-1d67-11f1-9d41-3b0a0edc0d9a": { - "account": "0x30e8ccad5a980bdf30447f8c2c48e70989d9d294", - "batchId": "0xb03d8cd287484453b724a60935521605", - "estimatedProcessingTimeInSeconds": 0, - "hasApprovalTx": false, - "isStxEnabled": true, - "location": "Main View", - "originalTransactionId": "bad9f800-1d67-11f1-9d41-3b0a0edc0d9a", - "pricingData": { - "amountSent": "0.001", - "amountSentInUsd": "0.647299441431", - "quotedGasAmount": "0.0000089414", - "quotedGasInUsd": "0.0057877632256111434", - "quotedReturnInUsd": "0.6419591041362832113464591548155204702016617" - }, - "quote": { - "aggregator": "uniswap", - "aggregatorType": "AGG", - "bridgeId": "uniswap", - "bridges": ["uniswap"], - "destAsset": { - "address": "0x55d398326f99059ff775485246999027b3197955", - "aggregators": [ - "pancakeExtended", - "oneInch", - "liFi", - "socket", - "rubic", - "squid", - "rango", - "sonarwatch", - "sushiSwap" - ], - "assetId": "eip155:56/erc20:0x55d398326f99059ff775485246999027b3197955", - "chainId": 56, - "coingeckoId": "binance-bridged-usdt-bnb-smart-chain", - "decimals": 18, - "iconUrl": "https://static.cx.metamask.io/api/v2/tokenIcons/assets/eip155/56/erc20/0x55d398326f99059ff775485246999027b3197955.png", - "metadata": { - "storage": { - "approval": 2, - "balance": 1 - } - }, - "name": "Tether USD", - "occurrences": 11, - "symbol": "USDT" - }, - "destChainId": 56, - "destTokenAmount": "642113379274951379", - "destWalletAddress": "0x30E8ccaD5A980BDF30447f8c2C48e70989D9d294", - "feeData": { - "metabridge": { - "amount": "8750000000000", - "asset": { - "address": "0x0000000000000000000000000000000000000000", - "aggregators": [], - "assetId": "eip155:56/slip44:714", - "chainId": 56, - "coingeckoId": "binancecoin", - "decimals": 18, - "iconUrl": "https://static.cx.metamask.io/api/v2/tokenIcons/assets/eip155/56/slip44/714.png", - "metadata": {}, - "name": "Binance Coin", - "occurrences": 100, - "symbol": "BNB" - }, - "baseBpsFee": 87.5, - "quoteBpsFee": 87.5 - } - }, - "gasIncluded": false, - "gasIncluded7702": false, - "gasSponsored": false, - "minDestTokenAmount": "629271111689452351", - "priceData": { - "priceImpact": "-0.00046560065512911083", - "totalFeeAmountUsd": "0.00566545", - "totalFromAmountUsd": "0.64748", - "totalToAmountUsd": "0.6421133792749514" - }, - "protocols": ["uniswap"], - "requestId": "0x920c24c3a0aa36e9ae0a57a10a728d5a2f075b7815f909b8136fe591df3f3311", - "slippage": 2, - "srcAsset": { - "address": "0x0000000000000000000000000000000000000000", - "aggregators": [], - "assetId": "eip155:56/slip44:714", - "chainId": 56, - "coingeckoId": "binancecoin", - "decimals": 18, - "iconUrl": "https://static.cx.metamask.io/api/v2/tokenIcons/assets/eip155/56/slip44/714.png", - "metadata": {}, - "name": "Binance Coin", - "occurrences": 100, - "symbol": "BNB" - }, - "srcChainId": 56, - "srcTokenAmount": "991250000000000", - "steps": [], - "walletAddress": "0x30E8ccaD5A980BDF30447f8c2C48e70989D9d294" - }, - "slippagePercentage": 0, - "startTime": 1773246677832, - "status": { - "srcChain": { - "chainId": 56 - }, - "status": "PENDING" - }, - "txMetaId": "bad9f800-1d67-11f1-9d41-3b0a0edc0d9a" - }, - "bc012020-286e-11f1-9e48-5fbe36423c6b": { - "account": "0xf25bd11c334507fd007d584e2d0b7b2c6543f714", - "batchId": "0xe798140b79314c23890ca6a49abea4ce", - "estimatedProcessingTimeInSeconds": 0, - "hasApprovalTx": true, - "isStxEnabled": false, - "location": "Main View", - "originalTransactionId": "bc012020-286e-11f1-9e48-5fbe36423c6b", - "pricingData": { - "amountSent": "1.97474173543419949", - "amountSentInUsd": "1.9743640532381799856477814260821169040795094", - "quotedGasAmount": "0.0000125897", - "quotedGasInUsd": "0.0081400144004478898", - "quotedReturnInUsd": "1.93224365503649477384692923" - }, - "quote": { - "aggregator": "uniswap", - "aggregatorType": "AGG", - "bridgeId": "uniswap", - "bridges": ["uniswap"], - "destAsset": { - "address": "0x0000000000000000000000000000000000000000", - "aggregators": [], - "assetId": "eip155:56/slip44:714", - "chainId": 56, - "coingeckoId": "binancecoin", - "decimals": 18, - "iconUrl": "https://static.cx.metamask.io/api/v2/tokenIcons/assets/eip155/56/slip44/714.png", - "metadata": {}, - "name": "Binance Coin", - "occurrences": 100, - "symbol": "BNB" - }, - "destChainId": 56, - "destTokenAmount": "2988492003463095", - "destWalletAddress": "0xF25bd11C334507Fd007d584E2D0b7b2C6543f714", - "feeData": { - "metabridge": { - "amount": "26756262246963", - "asset": { - "address": "0x0000000000000000000000000000000000000000", - "aggregators": [], - "assetId": "eip155:56/slip44:714", - "chainId": 56, - "coingeckoId": "binancecoin", - "decimals": 18, - "iconUrl": "https://static.cx.metamask.io/api/v2/tokenIcons/assets/eip155/56/slip44/714.png", - "metadata": {}, - "name": "Binance Coin", - "occurrences": 100, - "symbol": "BNB" - }, - "baseBpsFee": 87.5, - "quoteBpsFee": 87.5 - }, - "txFee": { - "amount": "42610276800000", - "asset": { - "address": "0x0000000000000000000000000000000000000000", - "aggregators": [], - "assetId": "eip155:56/slip44:714", - "chainId": 56, - "coingeckoId": "binancecoin", - "decimals": 18, - "iconUrl": "https://static.cx.metamask.io/api/v2/tokenIcons/assets/eip155/56/slip44/714.png", - "metadata": {}, - "name": "Binance Coin", - "occurrences": 100, - "symbol": "BNB" - }, - "maxFeePerGas": "60000000", - "maxPriorityFeePerGas": "60000000" - } - }, - "gasIncluded": true, - "gasIncluded7702": true, - "gasSponsored": false, - "minDestTokenAmount": "2928722163393833", - "priceData": { - "priceImpact": "-0.001729873453170465", - "totalFeeAmountUsd": "0.017307288234448017", - "totalFromAmountUsd": "1.9745600591945396", - "totalToAmountUsd": "1.9331060524401031" - }, - "protocols": ["uniswap"], - "requestId": "0xdfb76f72e1d9baa5aa70fda63c67f62b9703825bf1665e97c312446172030083", - "slippage": 2, - "srcAsset": { - "address": "0x55d398326f99059ff775485246999027b3197955", - "aggregators": [ - "pancakeExtended", - "oneInch", - "liFi", - "trustWallet", - "socket", - "squid", - "rango", - "sonarwatch", - "sushiSwap" - ], - "assetId": "eip155:56/erc20:0x55d398326f99059ff775485246999027b3197955", - "chainId": 56, - "coingeckoId": "binance-bridged-usdt-bnb-smart-chain", - "decimals": 18, - "iconUrl": "https://static.cx.metamask.io/api/v2/tokenIcons/assets/eip155/56/erc20/0x55d398326f99059ff775485246999027b3197955.png", - "metadata": { - "storage": { - "approval": 2, - "balance": 1 - } - }, - "name": "Tether USD", - "occurrences": 9, - "symbol": "USDT" - }, - "srcChainId": 56, - "srcTokenAmount": "1974741735434199490", - "steps": [], - "walletAddress": "0xF25bd11C334507Fd007d584E2D0b7b2C6543f714" - }, - "slippagePercentage": 0, - "startTime": 1774459148953, - "status": { - "srcChain": { - "chainId": 56, - "txHash": "0xe2e6d876b1c11dc0197f0620c504ff085180d87c624acc12465ac6d3ee32f156" - }, - "status": "PENDING" - }, - "txMetaId": "bc012020-286e-11f1-9e48-5fbe36423c6b" - }, - "bf648500-1d6e-11f1-a056-3b0a0edc0d9a": { - "account": "0x30e8ccad5a980bdf30447f8c2c48e70989d9d294", - "batchId": "0xf82d5ab4a2e140b8809c907bb5e644c0", - "estimatedProcessingTimeInSeconds": 0, - "hasApprovalTx": false, - "isStxEnabled": true, - "location": "Main View", - "originalTransactionId": "bf648500-1d6e-11f1-a056-3b0a0edc0d9a", - "pricingData": { - "amountSent": "0.001", - "amountSentInUsd": "0.650442682895", - "quotedGasAmount": "0.00001113865", - "quotedGasInUsd": "0.00724505338982839175", - "quotedReturnInUsd": "0.6464612135108928662515631543612965056271104" - }, - "quote": { - "aggregator": "1inch", - "aggregatorType": "AGG", - "bridgeId": "1inch", - "bridges": ["1inch"], - "destAsset": { - "address": "0x55d398326f99059ff775485246999027b3197955", - "aggregators": [ - "pancakeExtended", - "oneInch", - "liFi", - "socket", - "rubic", - "squid", - "rango", - "sonarwatch", - "sushiSwap" - ], - "assetId": "eip155:56/erc20:0x55d398326f99059ff775485246999027b3197955", - "chainId": 56, - "coingeckoId": "binance-bridged-usdt-bnb-smart-chain", - "decimals": 18, - "iconUrl": "https://static.cx.metamask.io/api/v2/tokenIcons/assets/eip155/56/erc20/0x55d398326f99059ff775485246999027b3197955.png", - "metadata": { - "storage": { - "approval": 2, - "balance": 1 - } - }, - "name": "Tether USD", - "occurrences": 11, - "symbol": "USDT" - }, - "destChainId": 56, - "destTokenAmount": "646461213511014656", - "destWalletAddress": "0x30E8ccaD5A980BDF30447f8c2C48e70989D9d294", - "feeData": { - "metabridge": { - "amount": "8750000000000", - "asset": { - "address": "0x0000000000000000000000000000000000000000", - "aggregators": [], - "assetId": "eip155:56/slip44:714", - "chainId": 56, - "coingeckoId": "binancecoin", - "decimals": 18, - "iconUrl": "https://static.cx.metamask.io/api/v2/tokenIcons/assets/eip155/56/slip44/714.png", - "metadata": {}, - "name": "Binance Coin", - "occurrences": 100, - "symbol": "BNB" - }, - "baseBpsFee": 87.5, - "quoteBpsFee": 87.5 - } - }, - "gasIncluded": false, - "gasIncluded7702": false, - "gasSponsored": false, - "minDestTokenAmount": "633531989240794362", - "priceData": { - "priceImpact": "-0.002471225893524245", - "totalFeeAmountUsd": "0.005692399999999999", - "totalFromAmountUsd": "0.6505599999999999", - "totalToAmountUsd": "0.6464612135110147" - }, - "protocols": ["1inch"], - "requestId": "0xf5a5be9bc2b81d91b2b475afb9a37a09fe96bef935ca3d1b9b8a99c4b7d7ea5a", - "slippage": 2, - "srcAsset": { - "address": "0x0000000000000000000000000000000000000000", - "aggregators": [], - "assetId": "eip155:56/slip44:714", - "chainId": 56, - "coingeckoId": "binancecoin", - "decimals": 18, - "iconUrl": "https://static.cx.metamask.io/api/v2/tokenIcons/assets/eip155/56/slip44/714.png", - "metadata": {}, - "name": "Binance Coin", - "occurrences": 100, - "symbol": "BNB" - }, - "srcChainId": 56, - "srcTokenAmount": "991250000000000", - "steps": [], - "walletAddress": "0x30E8ccaD5A980BDF30447f8c2C48e70989D9d294" - }, - "slippagePercentage": 0, - "startTime": 1773249691401, - "status": { - "srcChain": { - "chainId": 56 - }, - "status": "PENDING" - }, - "txMetaId": "bf648500-1d6e-11f1-a056-3b0a0edc0d9a" - }, - "c0a4ae60-39c3-11f1-a13c-3727d90ba13b": { - "account": "0x141d32a89a1e0a5ef360034a2f60a4b917c18838", - "batchId": "0x8e05f75be20d461b8c348914badb364f", - "completionTime": 1776364840808, - "estimatedProcessingTimeInSeconds": 2, - "hasApprovalTx": false, - "isStxEnabled": true, - "location": "Main View", - "originalTransactionId": "c0a4ae60-39c3-11f1-a13c-3727d90ba13b", - "pricingData": { - "amountSent": "0.005634615301175888", - "amountSentInUsd": "13.12423066033204712481887024", - "quotedGasAmount": "0.000181464551529984", - "quotedGasInUsd": "0.42266996124051417837138432", - "quotedReturnInUsd": "12.45003634890888726788642087" - }, - "quote": { - "aggregator": "relay", - "bridgeId": "relay", - "bridges": ["Relay"], - "destAsset": { - "address": "0x0000000000000000000000000000000000000000", - "aggregators": [ - "traderJoe", - "oneInch", - "liFi", - "socket", - "rubic", - "squid", - "rango", - "sonarwatch", - "sushiSwap" - ], - "assetId": "eip155:42161/slip44:60", - "chainId": 42161, - "coingeckoId": "arbitrum", - "decimals": 18, - "iconUrl": "https://static.cx.metamask.io/api/v2/tokenIcons/assets/eip155/42161/slip44/60.png", - "metadata": { - "storage": { - "approval": 52, - "balance": 51 - } - }, - "name": "Ether", - "occurrences": 9, - "symbol": "ETH" - }, - "destChainId": 42161, - "destTokenAmount": "5345164004453969", - "feeData": { - "metabridge": { - "amount": "49302883885289", - "asset": { - "address": "0x0000000000000000000000000000000000000000", - "aggregators": [], - "assetId": "eip155:1/slip44:60", - "chainId": 1, - "coingeckoId": "ethereum", - "decimals": 18, - "iconUrl": "https://static.cx.metamask.io/api/v2/tokenIcons/assets/eip155/1/slip44/60.png", - "metadata": {}, - "name": "Ether", - "occurrences": 100, - "symbol": "ETH" - }, - "baseBpsFee": 87.5, - "quoteBpsFee": 87.5 - }, - "txFee": { - "amount": "230986348995839", - "asset": { - "address": "0x0000000000000000000000000000000000000000", - "aggregators": [], - "assetId": "eip155:1/slip44:60", - "chainId": 1, - "coingeckoId": "ethereum", - "decimals": 18, - "iconUrl": "https://static.cx.metamask.io/api/v2/tokenIcons/assets/eip155/1/slip44/60.png", - "metadata": {}, - "name": "Ether", - "occurrences": 100, - "symbol": "ETH" - }, - "maxFeePerGas": "2345415295", - "maxPriorityFeePerGas": "2100000001" - } - }, - "gasIncluded": true, - "gasIncluded7702": false, - "minDestTokenAmount": "5238260724364889", - "priceData": { - "priceImpact": "0.014442060545567945", - "totalFeeAmountUsd": "0.11485877587820556", - "totalFromAmountUsd": "13.126717243223498", - "totalToAmountUsd": "12.406793130781534" - }, - "protocols": ["Relay"], - "requestId": "0xef10e0096f0e15ca600793d0e063b5514ad012d5fe34fe80e2dce282c7ee0467", - "srcAsset": { - "address": "0x0000000000000000000000000000000000000000", - "aggregators": [], - "assetId": "eip155:1/slip44:60", - "chainId": 1, - "coingeckoId": "ethereum", - "decimals": 18, - "iconUrl": "https://static.cx.metamask.io/api/v2/tokenIcons/assets/eip155/1/slip44/60.png", - "metadata": {}, - "name": "Ether", - "occurrences": 100, - "symbol": "ETH" - }, - "srcChainId": 1, - "srcTokenAmount": "5354326068294760", - "steps": [ - { - "action": "bridge", - "destAmount": "5345164004453969", - "destAsset": { - "address": "0x0000000000000000000000000000000000000000", - "aggregators": [ - "traderJoe", - "oneInch", - "liFi", - "socket", - "rubic", - "squid", - "rango", - "sonarwatch", - "sushiSwap" - ], - "assetId": "eip155:42161/slip44:60", - "chainId": 42161, - "coingeckoId": "arbitrum", - "decimals": 18, - "iconUrl": "https://static.cx.metamask.io/api/v2/tokenIcons/assets/eip155/42161/slip44/60.png", - "metadata": { - "storage": { - "approval": 52, - "balance": 51 - } - }, - "name": "Ether", - "occurrences": 9, - "symbol": "ETH" - }, - "destChainId": 42161, - "protocol": { - "name": "relay" - }, - "srcAmount": "5354326068294760", - "srcAsset": { - "address": "0x0000000000000000000000000000000000000000", - "aggregators": [], - "assetId": "eip155:1/slip44:60", - "chainId": 1, - "coingeckoId": "ethereum", - "decimals": 18, - "iconUrl": "https://static.cx.metamask.io/api/v2/tokenIcons/assets/eip155/1/slip44/60.png", - "metadata": {}, - "name": "Ether", - "occurrences": 100, - "symbol": "ETH" - }, - "srcChainId": 1 - } - ] - }, - "slippagePercentage": 0, - "startTime": 1776364833727, - "status": { - "bridge": "relay", - "destChain": { - "chainId": 42161, - "txHash": "0xe2943b245749218241f8b60282c5e853a7705fbe9feb51673867c6b67d3c17b5" - }, - "isExpectedToken": true, - "isUnrecognizedRouterAddress": false, - "srcChain": { - "chainId": 1, - "txHash": "0xc8a9a70b2b2b3025a401d0560f03eacad3eab4f64141a6ec7926a711731b439c" - }, - "status": "COMPLETE" - }, - "txMetaId": "c0a4ae60-39c3-11f1-a13c-3727d90ba13b" - }, - "c20984a0-23c1-11f1-ba20-05a660861774": { - "account": "0xb3864b298f4fddbbbd2fa5cf1a2a2748932b3b81", - "approvalTxId": "c203b840-23c1-11f1-ba20-05a660861774", - "batchId": "0xd9d3e11750b840c2a7dff34c5bd3b484", - "completionTime": 1773945089089, - "estimatedProcessingTimeInSeconds": 2, - "hasApprovalTx": true, - "isStxEnabled": true, - "location": "Main View", - "originalTransactionId": "c20984a0-23c1-11f1-ba20-05a660861774", - "pricingData": { - "amountSent": "5.642642556751629323", - "amountSentInUsd": "5.64210650571094270901869433923311700943105921", - "quotedGasAmount": "0.000007971", - "quotedGasInUsd": "0.005078556080084739", - "quotedReturnInUsd": "5.569939471328171335907582515" - }, - "quote": { - "aggregator": "relay", - "bridgeId": "relay", - "bridges": ["Relay"], - "destAsset": { - "address": "0x0000000000000000000000000000000000000000", - "aggregators": [], - "assetId": "eip155:143/slip44:268435779", - "chainId": 143, - "decimals": 18, - "iconUrl": "https://static.cx.metamask.io/api/v2/tokenIcons/assets/eip155/143/slip44/268435779.png", - "metadata": {}, - "name": "Mon", - "occurrences": 1, - "symbol": "MON" - }, - "destChainId": 143, - "destTokenAmount": "251545791488319199087", - "feeData": { - "metabridge": { - "amount": "49373122371576756", - "asset": { - "address": "0x8ac76a51cc950d9822d68b83fe1ad97b32cd580d", - "aggregators": [ - "pancakeExtended", - "oneInch", - "liFi", - "socket", - "rubic", - "squid", - "rango", - "sonarwatch", - "sushiSwap" - ], - "assetId": "eip155:56/erc20:0x8ac76a51cc950d9822d68b83fe1ad97b32cd580d", - "chainId": 56, - "coingeckoId": "binance-bridged-usdc-bnb-smart-chain", - "decimals": 18, - "iconUrl": "https://static.cx.metamask.io/api/v2/tokenIcons/assets/eip155/56/erc20/0x8ac76a51cc950d9822d68b83fe1ad97b32cd580d.png", - "metadata": { - "storage": { - "approval": 2, - "balance": 1 - } - }, - "name": "Binance-Peg USD Coin", - "occurrences": 9, - "symbol": "USDC" - }, - "baseBpsFee": 87.5, - "quoteBpsFee": 87.5 - } - }, - "minDestTokenAmount": "246514875658552815105", - "priceData": { - "priceImpact": "0.004043856776129053", - "totalFeeAmountUsd": "0.04936843192495145", - "totalFromAmountUsd": "5.642106505708738", - "totalToAmountUsd": "5.5701218420270004" - }, - "protocols": ["Relay"], - "requestId": "0x4a2f80b964da790fa5a2be9d2f6e50ac22f0497c1c10fdb11d50c778969f38e4", - "slippage": 2, - "srcAsset": { - "address": "0x8ac76a51cc950d9822d68b83fe1ad97b32cd580d", - "aggregators": [ - "pancakeExtended", - "oneInch", - "liFi", - "socket", - "rubic", - "squid", - "rango", - "sonarwatch", - "sushiSwap" - ], - "assetId": "eip155:56/erc20:0x8ac76a51cc950d9822d68b83fe1ad97b32cd580d", - "chainId": 56, - "coingeckoId": "binance-bridged-usdc-bnb-smart-chain", - "decimals": 18, - "iconUrl": "https://static.cx.metamask.io/api/v2/tokenIcons/assets/eip155/56/erc20/0x8ac76a51cc950d9822d68b83fe1ad97b32cd580d.png", - "metadata": { - "storage": { - "approval": 2, - "balance": 1 - } - }, - "name": "Binance-Peg USD Coin", - "occurrences": 9, - "symbol": "USDC" - }, - "srcChainId": 56, - "srcTokenAmount": "5593269434380052567", - "steps": [ - { - "action": "bridge", - "destAmount": "251545791488319199087", - "destAsset": { - "address": "0x0000000000000000000000000000000000000000", - "aggregators": [], - "assetId": "eip155:143/slip44:268435779", - "chainId": 143, - "decimals": 18, - "iconUrl": "https://static.cx.metamask.io/api/v2/tokenIcons/assets/eip155/143/slip44/268435779.png", - "metadata": {}, - "name": "Mon", - "occurrences": 1, - "symbol": "MON" - }, - "destChainId": 143, - "protocol": { - "name": "relay" - }, - "srcAmount": "5593269434380052567", - "srcAsset": { - "address": "0x8ac76a51cc950d9822d68b83fe1ad97b32cd580d", - "aggregators": [ - "pancakeExtended", - "oneInch", - "liFi", - "socket", - "rubic", - "squid", - "rango", - "sonarwatch", - "sushiSwap" - ], - "assetId": "eip155:56/erc20:0x8ac76a51cc950d9822d68b83fe1ad97b32cd580d", - "chainId": 56, - "coingeckoId": "binance-bridged-usdc-bnb-smart-chain", - "decimals": 18, - "iconUrl": "https://static.cx.metamask.io/api/v2/tokenIcons/assets/eip155/56/erc20/0x8ac76a51cc950d9822d68b83fe1ad97b32cd580d.png", - "metadata": { - "storage": { - "approval": 2, - "balance": 1 - } - }, - "name": "Binance-Peg USD Coin", - "occurrences": 9, - "symbol": "USDC" - }, - "srcChainId": 56 - } - ] - }, - "slippagePercentage": 0, - "startTime": 1773945051442, - "status": { - "bridge": "relay", - "destChain": { - "chainId": 143, - "txHash": "0x3cda8461c6cecbe60b41251c7aa54d4b729016f09f9f4556c2926e27228c3fbf" - }, - "isExpectedToken": true, - "isUnrecognizedRouterAddress": false, - "srcChain": { - "chainId": 56, - "txHash": "0xe0bbb233df54a63c9c5138afa7c5590d0f1f7f1366afa4bbaea9e891c117ced1" - }, - "status": "COMPLETE" - }, - "txMetaId": "c20984a0-23c1-11f1-ba20-05a660861774" - }, - "c6bb3780-1829-11f1-b7d6-03d70bc40886": { - "account": "0x30e8ccad5a980bdf30447f8c2c48e70989d9d294", - "batchId": "0x604170e0faca4e22bd8323bd08bba2ba", - "estimatedProcessingTimeInSeconds": 0, - "hasApprovalTx": false, - "isStxEnabled": true, - "pricingData": { - "amountSent": "19", - "amountSentInUsd": "1.972370962", - "quotedGasAmount": "0.048274926429406507", - "quotedGasInUsd": "0.005011371741160407226349986", - "quotedReturnInUsd": "1.9565672326311698419440501198" - }, - "quote": { - "aggregator": "uniswap", - "aggregatorType": "AGG", - "bridgeId": "uniswap", - "bridges": ["uniswap"], - "destAsset": { - "address": "0xc2132d05d31c914a87c6611c10748aeb04b58e8f", - "aggregators": [ - "quickswap", - "oneInch", - "liFi", - "socket", - "squid", - "rango", - "sonarwatch", - "sushiSwap" - ], - "assetId": "eip155:137/erc20:0xc2132d05d31c914a87c6611c10748aeb04b58e8f", - "chainId": 137, - "coingeckoId": "polygon-bridged-usdt-polygon", - "decimals": 6, - "iconUrl": "https://static.cx.metamask.io/api/v2/tokenIcons/assets/eip155/137/erc20/0xc2132d05d31c914a87c6611c10748aeb04b58e8f.png", - "metadata": { - "storage": { - "approval": 1, - "balance": 0 - } - }, - "name": "Tether USD", - "occurrences": 8, - "symbol": "USDT" - }, - "destChainId": 137, - "destTokenAmount": "1957782", - "destWalletAddress": "0x30E8ccaD5A980BDF30447f8c2C48e70989D9d294", - "feeData": { - "metabridge": { - "amount": "166250000000000000", - "asset": { - "address": "0x0000000000000000000000000000000000000000", - "aggregators": [], - "assetId": "eip155:137/slip44:966", - "chainId": 137, - "coingeckoId": "matic-network", - "decimals": 18, - "iconUrl": "https://static.cx.metamask.io/api/v2/tokenIcons/assets/eip155/137/slip44/966.png", - "metadata": {}, - "name": "Polygon Ecosystem Token", - "occurrences": 100, - "symbol": "POL" - }, - "baseBpsFee": 87.5, - "quoteBpsFee": 87.5 - } - }, - "gasIncluded7702": false, - "gasSponsored": false, - "minDestTokenAmount": "1918626", - "priceData": { - "priceImpact": "-0.0005897180800594874", - "totalFeeAmountUsd": "0.01726090625", - "totalFromAmountUsd": "1.972675", - "totalToAmountUsd": "1.9565672367950873" - }, - "protocols": ["uniswap"], - "requestId": "0xefe7691ca9b52de096435387a53f4a350533dbc4eb3db677f0d9eebadb5053f8", - "slippage": 2, - "srcAsset": { - "address": "0x0000000000000000000000000000000000000000", - "aggregators": [], - "assetId": "eip155:137/slip44:966", - "chainId": 137, - "coingeckoId": "matic-network", - "decimals": 18, - "iconUrl": "https://static.cx.metamask.io/api/v2/tokenIcons/assets/eip155/137/slip44/966.png", - "metadata": {}, - "name": "Polygon Ecosystem Token", - "occurrences": 100, - "symbol": "POL" - }, - "srcChainId": 137, - "srcTokenAmount": "18833750000000000000", - "steps": [], - "walletAddress": "0x30E8ccaD5A980BDF30447f8c2C48e70989D9d294" - }, - "slippagePercentage": 0, - "startTime": 1772670313173, - "status": { - "srcChain": { - "chainId": 137 - }, - "status": "PENDING" - }, - "txMetaId": "c6bb3780-1829-11f1-b7d6-03d70bc40886" - }, - "c8cb9cd0-176c-11f1-b7d6-03d70bc40886": { - "account": "0x30e8ccad5a980bdf30447f8c2c48e70989d9d294", - "batchId": "0x25fa5b8386f144dfa360d6a65394682c", - "estimatedProcessingTimeInSeconds": 0, - "hasApprovalTx": false, - "isStxEnabled": true, - "pricingData": { - "amountSent": "0.001463597691842476", - "amountSentInUsd": "2.904127808606378826730604848", - "quotedGasAmount": "0.000600099301006758", - "quotedGasInUsd": "1.190740514071913432978727384", - "quotedReturnInUsd": "1.184657910188077500110271499621584" - }, - "quote": { - "aggregator": "uniswap", - "aggregatorType": "AGG", - "bridgeId": "uniswap", - "bridges": ["uniswap"], - "destAsset": { - "address": "0xaca92e438df0b2401ff60da7e4337b687a2435da", - "aggregators": ["metamask", "liFi", "socket", "rango"], - "assetId": "eip155:1/erc20:0xaca92e438df0b2401ff60da7e4337b687a2435da", - "chainId": 1, - "decimals": 6, - "iconUrl": "https://static.cx.metamask.io/api/v2/tokenIcons/assets/eip155/1/erc20/0xaca92e438df0b2401ff60da7e4337b687a2435da.png", - "metadata": {}, - "name": "MetaMask USD", - "occurrences": 4, - "symbol": "MUSD" - }, - "destChainId": 1, - "destTokenAmount": "1184902", - "destWalletAddress": "0x30E8ccaD5A980BDF30447f8c2C48e70989D9d294", - "feeData": { - "metabridge": { - "amount": "0", - "asset": { - "address": "0x0000000000000000000000000000000000000000", - "aggregators": [], - "assetId": "eip155:1/slip44:60", - "chainId": 1, - "coingeckoId": "ethereum", - "decimals": 18, - "iconUrl": "https://static.cx.metamask.io/api/v2/tokenIcons/assets/eip155/1/slip44/60.png", - "metadata": {}, - "name": "Ether", - "occurrences": 100, - "symbol": "ETH" - }, - "baseBpsFee": 87.5, - "quoteBpsFee": 0 - }, - "txFee": { - "amount": "866444184178278", - "asset": { - "address": "0x0000000000000000000000000000000000000000", - "aggregators": [], - "assetId": "eip155:1/slip44:60", - "chainId": 1, - "coingeckoId": "ethereum", - "decimals": 18, - "iconUrl": "https://static.cx.metamask.io/api/v2/tokenIcons/assets/eip155/1/slip44/60.png", - "metadata": {}, - "name": "Ether", - "occurrences": 100, - "symbol": "ETH" - }, - "maxFeePerGas": "2216178362", - "maxPriorityFeePerGas": "2100000001" - } - }, - "gasIncluded": true, - "gasIncluded7702": false, - "minDestTokenAmount": "1161203", - "priceData": { - "priceImpact": "0.000412112549271919", - "totalFeeAmountUsd": "0", - "totalFromAmountUsd": "2.9046267072767407", - "totalToAmountUsd": "1.184610514108" - }, - "protocols": ["uniswap"], - "requestId": "0x46682d2bf318510bba3a3460ea0b253cbc61272613395443b4705930761bb286", - "srcAsset": { - "address": "0x0000000000000000000000000000000000000000", - "aggregators": [], - "assetId": "eip155:1/slip44:60", - "chainId": 1, - "coingeckoId": "ethereum", - "decimals": 18, - "iconUrl": "https://static.cx.metamask.io/api/v2/tokenIcons/assets/eip155/1/slip44/60.png", - "metadata": {}, - "name": "Ether", - "occurrences": 100, - "symbol": "ETH" - }, - "srcChainId": 1, - "srcTokenAmount": "597153507664198", - "steps": [], - "walletAddress": "0x30E8ccaD5A980BDF30447f8c2C48e70989D9d294" - }, - "slippagePercentage": 0, - "startTime": 1772589141776, - "status": { - "srcChain": { - "chainId": 1 - }, - "status": "PENDING" - }, - "txMetaId": "c8cb9cd0-176c-11f1-b7d6-03d70bc40886" - }, - "c94ce150-39c7-11f1-a325-3727d90ba13b": { - "account": "0x141d32a89a1e0a5ef360034a2f60a4b917c18838", - "batchId": "0xf69c3e0167d64772a3cdcb3e9d6f3514", - "completionTime": 1776366580016, - "estimatedProcessingTimeInSeconds": 2, - "hasApprovalTx": false, - "isStxEnabled": true, - "location": "Main View", - "originalTransactionId": "c94ce150-39c7-11f1-a325-3727d90ba13b", - "pricingData": { - "amountSent": "0.01", - "amountSentInUsd": "23.41717338332", - "quotedGasAmount": "0.00019754467323302", - "quotedGasInUsd": "0.46259378640489227961412264", - "quotedReturnInUsd": "23.190860159630196912127314752" - }, - "quote": { - "aggregator": "relay", - "bridgeId": "relay", - "bridges": ["Relay"], - "destAsset": { - "address": "0x0000000000000000000000000000000000000000", - "aggregators": [ - "traderJoe", - "oneInch", - "liFi", - "socket", - "rubic", - "squid", - "rango", - "sonarwatch", - "sushiSwap" - ], - "assetId": "eip155:42161/slip44:60", - "chainId": 42161, - "coingeckoId": "arbitrum", - "decimals": 18, - "iconUrl": "https://static.cx.metamask.io/api/v2/tokenIcons/assets/eip155/42161/slip44/60.png", - "metadata": { - "storage": { - "approval": 52, - "balance": 51 - } - }, - "name": "Ether", - "occurrences": 9, - "symbol": "ETH" - }, - "destChainId": 42161, - "destTokenAmount": "9903355874773936", - "feeData": { - "metabridge": { - "amount": "87500000000000", - "asset": { - "address": "0x0000000000000000000000000000000000000000", - "aggregators": [], - "assetId": "eip155:1/slip44:60", - "chainId": 1, - "coingeckoId": "ethereum", - "decimals": 18, - "iconUrl": "https://static.cx.metamask.io/api/v2/tokenIcons/assets/eip155/1/slip44/60.png", - "metadata": {}, - "name": "Ether", - "occurrences": 100, - "symbol": "ETH" - }, - "baseBpsFee": 87.5, - "quoteBpsFee": 87.5 - } - }, - "minDestTokenAmount": "9705288757278458", - "priceData": { - "priceImpact": "0.0007988885780233947", - "totalFeeAmountUsd": "0.20512768464813436", - "totalFromAmountUsd": "23.443163959786784", - "totalToAmountUsd": "23.219471673382746" - }, - "protocols": ["Relay"], - "requestId": "0x17c6d1623111c9d67080b41ae2d0b725a56fa5ef7cbeea9606c9b9a7cfb001ca", - "slippage": 2, - "srcAsset": { - "address": "0x0000000000000000000000000000000000000000", - "aggregators": [], - "assetId": "eip155:1/slip44:60", - "chainId": 1, - "coingeckoId": "ethereum", - "decimals": 18, - "iconUrl": "https://static.cx.metamask.io/api/v2/tokenIcons/assets/eip155/1/slip44/60.png", - "metadata": {}, - "name": "Ether", - "occurrences": 100, - "symbol": "ETH" - }, - "srcChainId": 1, - "srcTokenAmount": "9912500000000000", - "steps": [ - { - "action": "bridge", - "destAmount": "9903355874773936", - "destAsset": { - "address": "0x0000000000000000000000000000000000000000", - "aggregators": [ - "traderJoe", - "oneInch", - "liFi", - "socket", - "rubic", - "squid", - "rango", - "sonarwatch", - "sushiSwap" - ], - "assetId": "eip155:42161/slip44:60", - "chainId": 42161, - "coingeckoId": "arbitrum", - "decimals": 18, - "iconUrl": "https://static.cx.metamask.io/api/v2/tokenIcons/assets/eip155/42161/slip44/60.png", - "metadata": { - "storage": { - "approval": 52, - "balance": 51 - } - }, - "name": "Ether", - "occurrences": 9, - "symbol": "ETH" - }, - "destChainId": 42161, - "protocol": { - "name": "relay" - }, - "srcAmount": "9912500000000000", - "srcAsset": { - "address": "0x0000000000000000000000000000000000000000", - "aggregators": [], - "assetId": "eip155:1/slip44:60", - "chainId": 1, - "coingeckoId": "ethereum", - "decimals": 18, - "iconUrl": "https://static.cx.metamask.io/api/v2/tokenIcons/assets/eip155/1/slip44/60.png", - "metadata": {}, - "name": "Ether", - "occurrences": 100, - "symbol": "ETH" - }, - "srcChainId": 1 - } - ] - }, - "slippagePercentage": 0, - "startTime": 1776366566194, - "status": { - "bridge": "relay", - "destChain": { - "chainId": 42161, - "txHash": "0xa69989b05125e09d738dc946845fae490140337378a139a3cb8aed99bd76d36d" - }, - "isExpectedToken": true, - "isUnrecognizedRouterAddress": false, - "srcChain": { - "chainId": 1, - "txHash": "0x2d98c88d1e57cd29f5648fd8307e5aaed4c8e7a3cb8c7b797e0842a08f450d99" - }, - "status": "COMPLETE" - }, - "txMetaId": "c94ce150-39c7-11f1-a325-3727d90ba13b" - }, - "cc434fa0-2e2f-11f1-b048-535abbd777f7": { - "account": "0x141d32a89a1e0a5ef360034a2f60a4b917c18838", - "approvalTxId": "cc3f5800-2e2f-11f1-b048-535abbd777f7", - "batchId": "0x412ae972851a43cb8ebd1d328f7f7579", - "estimatedProcessingTimeInSeconds": 0, - "hasApprovalTx": true, - "isStxEnabled": true, - "location": "Main View", - "originalTransactionId": "cc434fa0-2e2f-11f1-b048-535abbd777f7", - "pricingData": { - "amountSent": "13.29992", - "amountSentInUsd": "13.30093047471451770398806224550448", - "quotedGasAmount": "0.000627860487027848", - "quotedGasInUsd": "1.354487242494457216319830448", - "quotedReturnInUsd": "11.390066355917520490327448574" - }, - "quote": { - "aggregator": "uniswap", - "aggregatorType": "AGG", - "bridgeId": "uniswap", - "bridges": ["uniswap"], - "destAsset": { - "address": "0x0000000000000000000000000000000000000000", - "aggregators": [], - "assetId": "eip155:1/slip44:60", - "chainId": 1, - "coingeckoId": "ethereum", - "decimals": 18, - "iconUrl": "https://static.cx.metamask.io/api/v2/tokenIcons/assets/eip155/1/slip44/60.png", - "metadata": {}, - "name": "Ether", - "occurrences": 100, - "symbol": "ETH" - }, - "destChainId": 1, - "destTokenAmount": "5279763725449149", - "destWalletAddress": "0x141d32a89a1e0a5Ef360034a2f60a4B917c18838", - "feeData": { - "metabridge": { - "amount": "54218736515066", - "asset": { - "address": "0x0000000000000000000000000000000000000000", - "aggregators": [], - "assetId": "eip155:1/slip44:60", - "chainId": 1, - "coingeckoId": "ethereum", - "decimals": 18, - "iconUrl": "https://static.cx.metamask.io/api/v2/tokenIcons/assets/eip155/1/slip44/60.png", - "metadata": {}, - "name": "Ether", - "occurrences": 100, - "symbol": "ETH" - }, - "baseBpsFee": 87.5, - "quoteBpsFee": 87.5 - }, - "txFee": { - "amount": "862444568329088", - "asset": { - "address": "0x0000000000000000000000000000000000000000", - "aggregators": [], - "assetId": "eip155:1/slip44:60", - "chainId": 1, - "coingeckoId": "ethereum", - "decimals": 18, - "iconUrl": "https://static.cx.metamask.io/api/v2/tokenIcons/assets/eip155/1/slip44/60.png", - "metadata": {}, - "name": "Ether", - "occurrences": 100, - "symbol": "ETH" - }, - "maxFeePerGas": "2211860990", - "maxPriorityFeePerGas": "2100000001" - } - }, - "gasIncluded": true, - "gasIncluded7702": false, - "gasSponsored": false, - "minDestTokenAmount": "5174168450940166", - "priceData": { - "priceImpact": "-0.00519160042366564", - "totalFeeAmountUsd": "0.11696770684604732", - "totalFromAmountUsd": "13.29869640736", - "totalToAmountUsd": "11.390192677823213" - }, - "protocols": ["uniswap"], - "requestId": "0xf4fb598e1480f2f39e5470a23d59bf45158a605f6861d18e3780499c577f1a7c", - "slippage": 2, - "srcAsset": { - "address": "0xaca92e438df0b2401ff60da7e4337b687a2435da", - "aggregators": ["metamask", "liFi", "socket", "rubic", "rango"], - "assetId": "eip155:1/erc20:0xaca92e438df0b2401ff60da7e4337b687a2435da", - "chainId": 1, - "decimals": 6, - "iconUrl": "https://static.cx.metamask.io/api/v2/tokenIcons/assets/eip155/1/erc20/0xaca92e438df0b2401ff60da7e4337b687a2435da.png", - "metadata": {}, - "name": "MetaMask USD", - "occurrences": 5, - "symbol": "MUSD" - }, - "srcChainId": 1, - "srcTokenAmount": "13299920", - "steps": [], - "walletAddress": "0x141d32a89a1e0a5Ef360034a2f60a4B917c18838" - }, - "slippagePercentage": 0, - "startTime": 1775091824862, - "status": { - "srcChain": { - "chainId": 1 - }, - "status": "PENDING" - }, - "txMetaId": "cc434fa0-2e2f-11f1-b048-535abbd777f7" - }, - "cc6451c0-2874-11f1-9587-e7b839e2ab11": { - "account": "0xf25bd11c334507fd007d584e2d0b7b2c6543f714", - "batchId": "0x410980644f224345b952d4e073c93b37", - "estimatedProcessingTimeInSeconds": 0, - "hasApprovalTx": true, - "isStxEnabled": false, - "location": "Main View", - "originalTransactionId": "cc6451c0-2874-11f1-9587-e7b839e2ab11", - "pricingData": { - "amountSent": "1.899263012042498994", - "amountSentInUsd": "1.89868852380062186842366777743346145580011808", - "quotedGasAmount": "0.00001213665", - "quotedGasInUsd": "0.0078277903102924218", - "quotedReturnInUsd": "1.854914658945257213591587428" - }, - "quote": { - "aggregator": "uniswap", - "aggregatorType": "AGG", - "bridgeId": "uniswap", - "bridges": ["uniswap"], - "destAsset": { - "address": "0x0000000000000000000000000000000000000000", - "aggregators": [], - "assetId": "eip155:56/slip44:714", - "chainId": 56, - "coingeckoId": "binancecoin", - "decimals": 18, - "iconUrl": "https://static.cx.metamask.io/api/v2/tokenIcons/assets/eip155/56/slip44/714.png", - "metadata": {}, - "name": "Binance Coin", - "occurrences": 100, - "symbol": "BNB" - }, - "destChainId": 56, - "destTokenAmount": "2875964876816809", - "destWalletAddress": "0xF25bd11C334507Fd007d584E2D0b7b2C6543f714", - "feeData": { - "metabridge": { - "amount": "25748709453868", - "asset": { - "address": "0x0000000000000000000000000000000000000000", - "aggregators": [], - "assetId": "eip155:56/slip44:714", - "chainId": 56, - "coingeckoId": "binancecoin", - "decimals": 18, - "iconUrl": "https://static.cx.metamask.io/api/v2/tokenIcons/assets/eip155/56/slip44/714.png", - "metadata": {}, - "name": "Binance Coin", - "occurrences": 100, - "symbol": "BNB" - }, - "baseBpsFee": 87.5, - "quoteBpsFee": 87.5 - }, - "txFee": { - "amount": "40996065600000", - "asset": { - "address": "0x0000000000000000000000000000000000000000", - "aggregators": [], - "assetId": "eip155:56/slip44:714", - "chainId": 56, - "coingeckoId": "binancecoin", - "decimals": 18, - "iconUrl": "https://static.cx.metamask.io/api/v2/tokenIcons/assets/eip155/56/slip44/714.png", - "metadata": {}, - "name": "Binance Coin", - "occurrences": 100, - "symbol": "BNB" - }, - "maxFeePerGas": "60000000", - "maxPriorityFeePerGas": "60000000" - } - }, - "gasIncluded": true, - "gasIncluded7702": true, - "gasSponsored": false, - "minDestTokenAmount": "2818445579280472", - "priceData": { - "priceImpact": "0.00002851901483390045", - "totalFeeAmountUsd": "0.01661383980091925", - "totalFromAmountUsd": "1.898778699974428", - "totalToAmountUsd": "1.8556588174685098" - }, - "protocols": ["uniswap"], - "requestId": "0x86bd0778af36ee93790a7cdebfd0cd0feae1e08e419f871339bfcd231fe85ea9", - "slippage": 2, - "srcAsset": { - "address": "0x55d398326f99059ff775485246999027b3197955", - "aggregators": [ - "pancakeExtended", - "oneInch", - "liFi", - "trustWallet", - "socket", - "rubic", - "squid", - "rango", - "sonarwatch", - "sushiSwap" - ], - "assetId": "eip155:56/erc20:0x55d398326f99059ff775485246999027b3197955", - "chainId": 56, - "coingeckoId": "binance-bridged-usdt-bnb-smart-chain", - "decimals": 18, - "iconUrl": "https://static.cx.metamask.io/api/v2/tokenIcons/assets/eip155/56/erc20/0x55d398326f99059ff775485246999027b3197955.png", - "metadata": { - "storage": { - "approval": 2, - "balance": 1 - } - }, - "name": "Tether USD", - "occurrences": 11, - "symbol": "USDT" - }, - "srcChainId": 56, - "srcTokenAmount": "1899263012042498994", - "steps": [], - "walletAddress": "0xF25bd11C334507Fd007d584E2D0b7b2C6543f714" - }, - "slippagePercentage": 0, - "startTime": 1774461753436, - "status": { - "srcChain": { - "chainId": 56, - "txHash": "0xa1735fd806de85d26fe4a57ed4c7e24ea27fa7477af8e3d50cc467f1dfe735f4" - }, - "status": "PENDING" - }, - "txMetaId": "cc6451c0-2874-11f1-9587-e7b839e2ab11" - }, - "cd38bf10-1829-11f1-b7d6-03d70bc40886": { - "account": "0x30e8ccad5a980bdf30447f8c2c48e70989d9d294", - "batchId": "0x83da7243d6964a0f8e3b6892daa6ea0b", - "estimatedProcessingTimeInSeconds": 0, - "hasApprovalTx": false, - "isStxEnabled": true, - "pricingData": { - "amountSent": "10", - "amountSentInUsd": "1.03808998", - "quotedGasAmount": "0.045406946478480405", - "quotedGasInUsd": "0.00471364961617067940568419", - "quotedReturnInUsd": "1.029770649732954801319844949" - }, - "quote": { - "aggregator": "uniswap", - "aggregatorType": "AGG", - "bridgeId": "uniswap", - "bridges": ["uniswap"], - "destAsset": { - "address": "0xc2132d05d31c914a87c6611c10748aeb04b58e8f", - "aggregators": [ - "quickswap", - "oneInch", - "liFi", - "socket", - "squid", - "rango", - "sonarwatch", - "sushiSwap" - ], - "assetId": "eip155:137/erc20:0xc2132d05d31c914a87c6611c10748aeb04b58e8f", - "chainId": 137, - "coingeckoId": "polygon-bridged-usdt-polygon", - "decimals": 6, - "iconUrl": "https://static.cx.metamask.io/api/v2/tokenIcons/assets/eip155/137/erc20/0xc2132d05d31c914a87c6611c10748aeb04b58e8f.png", - "metadata": { - "storage": { - "approval": 1, - "balance": 0 - } - }, - "name": "Tether USD", - "occurrences": 8, - "symbol": "USDT" - }, - "destChainId": 137, - "destTokenAmount": "1030410", - "destWalletAddress": "0x30E8ccaD5A980BDF30447f8c2C48e70989D9d294", - "feeData": { - "metabridge": { - "amount": "87500000000000000", - "asset": { - "address": "0x0000000000000000000000000000000000000000", - "aggregators": [], - "assetId": "eip155:137/slip44:966", - "chainId": 137, - "coingeckoId": "matic-network", - "decimals": 18, - "iconUrl": "https://static.cx.metamask.io/api/v2/tokenIcons/assets/eip155/137/slip44/966.png", - "metadata": {}, - "name": "Polygon Ecosystem Token", - "occurrences": 100, - "symbol": "POL" - }, - "baseBpsFee": 87.5, - "quoteBpsFee": 87.5 - } - }, - "gasIncluded7702": false, - "gasSponsored": false, - "minDestTokenAmount": "1009801", - "priceData": { - "priceImpact": "-0.0005881848301092544", - "totalFeeAmountUsd": "0.009084687499999999", - "totalFromAmountUsd": "1.0382500000000001", - "totalToAmountUsd": "1.0297706519244871" - }, - "protocols": ["uniswap"], - "requestId": "0x51162f38cdfc533eec8cf08eb04b2e0ec48cf510b365d124ae069b4319d66620", - "slippage": 2, - "srcAsset": { - "address": "0x0000000000000000000000000000000000000000", - "aggregators": [], - "assetId": "eip155:137/slip44:966", - "chainId": 137, - "coingeckoId": "matic-network", - "decimals": 18, - "iconUrl": "https://static.cx.metamask.io/api/v2/tokenIcons/assets/eip155/137/slip44/966.png", - "metadata": {}, - "name": "Polygon Ecosystem Token", - "occurrences": 100, - "symbol": "POL" - }, - "srcChainId": 137, - "srcTokenAmount": "9912500000000000000", - "steps": [], - "walletAddress": "0x30E8ccaD5A980BDF30447f8c2C48e70989D9d294" - }, - "slippagePercentage": 0, - "startTime": 1772670324065, - "status": { - "srcChain": { - "chainId": 137 - }, - "status": "PENDING" - }, - "txMetaId": "cd38bf10-1829-11f1-b7d6-03d70bc40886" - }, - "cd7cf400-1829-11f1-b7d6-03d70bc40886": { - "account": "0x30e8ccad5a980bdf30447f8c2c48e70989d9d294", - "batchId": "0x4b12975300224210b1d401a0d3828093", - "estimatedProcessingTimeInSeconds": 0, - "hasApprovalTx": false, - "isStxEnabled": true, - "pricingData": { - "amountSent": "10", - "amountSentInUsd": "1.03808998", - "quotedGasAmount": "0.045406946478480405", - "quotedGasInUsd": "0.00471364961617067940568419", - "quotedReturnInUsd": "1.029770649732954801319844949" - }, - "quote": { - "aggregator": "uniswap", - "aggregatorType": "AGG", - "bridgeId": "uniswap", - "bridges": ["uniswap"], - "destAsset": { - "address": "0xc2132d05d31c914a87c6611c10748aeb04b58e8f", - "aggregators": [ - "quickswap", - "oneInch", - "liFi", - "socket", - "squid", - "rango", - "sonarwatch", - "sushiSwap" - ], - "assetId": "eip155:137/erc20:0xc2132d05d31c914a87c6611c10748aeb04b58e8f", - "chainId": 137, - "coingeckoId": "polygon-bridged-usdt-polygon", - "decimals": 6, - "iconUrl": "https://static.cx.metamask.io/api/v2/tokenIcons/assets/eip155/137/erc20/0xc2132d05d31c914a87c6611c10748aeb04b58e8f.png", - "metadata": { - "storage": { - "approval": 1, - "balance": 0 - } - }, - "name": "Tether USD", - "occurrences": 8, - "symbol": "USDT" - }, - "destChainId": 137, - "destTokenAmount": "1030410", - "destWalletAddress": "0x30E8ccaD5A980BDF30447f8c2C48e70989D9d294", - "feeData": { - "metabridge": { - "amount": "87500000000000000", - "asset": { - "address": "0x0000000000000000000000000000000000000000", - "aggregators": [], - "assetId": "eip155:137/slip44:966", - "chainId": 137, - "coingeckoId": "matic-network", - "decimals": 18, - "iconUrl": "https://static.cx.metamask.io/api/v2/tokenIcons/assets/eip155/137/slip44/966.png", - "metadata": {}, - "name": "Polygon Ecosystem Token", - "occurrences": 100, - "symbol": "POL" - }, - "baseBpsFee": 87.5, - "quoteBpsFee": 87.5 - } - }, - "gasIncluded7702": false, - "gasSponsored": false, - "minDestTokenAmount": "1009801", - "priceData": { - "priceImpact": "-0.0005881848301092544", - "totalFeeAmountUsd": "0.009084687499999999", - "totalFromAmountUsd": "1.0382500000000001", - "totalToAmountUsd": "1.0297706519244871" - }, - "protocols": ["uniswap"], - "requestId": "0x51162f38cdfc533eec8cf08eb04b2e0ec48cf510b365d124ae069b4319d66620", - "slippage": 2, - "srcAsset": { - "address": "0x0000000000000000000000000000000000000000", - "aggregators": [], - "assetId": "eip155:137/slip44:966", - "chainId": 137, - "coingeckoId": "matic-network", - "decimals": 18, - "iconUrl": "https://static.cx.metamask.io/api/v2/tokenIcons/assets/eip155/137/slip44/966.png", - "metadata": {}, - "name": "Polygon Ecosystem Token", - "occurrences": 100, - "symbol": "POL" - }, - "srcChainId": 137, - "srcTokenAmount": "9912500000000000000", - "steps": [], - "walletAddress": "0x30E8ccaD5A980BDF30447f8c2C48e70989D9d294" - }, - "slippagePercentage": 0, - "startTime": 1772670324515, - "status": { - "srcChain": { - "chainId": 137 - }, - "status": "PENDING" - }, - "txMetaId": "cd7cf400-1829-11f1-b7d6-03d70bc40886" - }, - "cda9a950-1829-11f1-b7d6-03d70bc40886": { - "account": "0x30e8ccad5a980bdf30447f8c2c48e70989d9d294", - "batchId": "0x4e40bd07f5d2498d87e6b04c89c806c9", - "estimatedProcessingTimeInSeconds": 0, - "hasApprovalTx": false, - "isStxEnabled": true, - "pricingData": { - "amountSent": "10", - "amountSentInUsd": "1.03808998", - "quotedGasAmount": "0.045406946478480405", - "quotedGasInUsd": "0.00471364961617067940568419", - "quotedReturnInUsd": "1.029770649732954801319844949" - }, - "quote": { - "aggregator": "uniswap", - "aggregatorType": "AGG", - "bridgeId": "uniswap", - "bridges": ["uniswap"], - "destAsset": { - "address": "0xc2132d05d31c914a87c6611c10748aeb04b58e8f", - "aggregators": [ - "quickswap", - "oneInch", - "liFi", - "socket", - "squid", - "rango", - "sonarwatch", - "sushiSwap" - ], - "assetId": "eip155:137/erc20:0xc2132d05d31c914a87c6611c10748aeb04b58e8f", - "chainId": 137, - "coingeckoId": "polygon-bridged-usdt-polygon", - "decimals": 6, - "iconUrl": "https://static.cx.metamask.io/api/v2/tokenIcons/assets/eip155/137/erc20/0xc2132d05d31c914a87c6611c10748aeb04b58e8f.png", - "metadata": { - "storage": { - "approval": 1, - "balance": 0 - } - }, - "name": "Tether USD", - "occurrences": 8, - "symbol": "USDT" - }, - "destChainId": 137, - "destTokenAmount": "1030410", - "destWalletAddress": "0x30E8ccaD5A980BDF30447f8c2C48e70989D9d294", - "feeData": { - "metabridge": { - "amount": "87500000000000000", - "asset": { - "address": "0x0000000000000000000000000000000000000000", - "aggregators": [], - "assetId": "eip155:137/slip44:966", - "chainId": 137, - "coingeckoId": "matic-network", - "decimals": 18, - "iconUrl": "https://static.cx.metamask.io/api/v2/tokenIcons/assets/eip155/137/slip44/966.png", - "metadata": {}, - "name": "Polygon Ecosystem Token", - "occurrences": 100, - "symbol": "POL" - }, - "baseBpsFee": 87.5, - "quoteBpsFee": 87.5 - } - }, - "gasIncluded7702": false, - "gasSponsored": false, - "minDestTokenAmount": "1009801", - "priceData": { - "priceImpact": "-0.0005881848301092544", - "totalFeeAmountUsd": "0.009084687499999999", - "totalFromAmountUsd": "1.0382500000000001", - "totalToAmountUsd": "1.0297706519244871" - }, - "protocols": ["uniswap"], - "requestId": "0x51162f38cdfc533eec8cf08eb04b2e0ec48cf510b365d124ae069b4319d66620", - "slippage": 2, - "srcAsset": { - "address": "0x0000000000000000000000000000000000000000", - "aggregators": [], - "assetId": "eip155:137/slip44:966", - "chainId": 137, - "coingeckoId": "matic-network", - "decimals": 18, - "iconUrl": "https://static.cx.metamask.io/api/v2/tokenIcons/assets/eip155/137/slip44/966.png", - "metadata": {}, - "name": "Polygon Ecosystem Token", - "occurrences": 100, - "symbol": "POL" - }, - "srcChainId": 137, - "srcTokenAmount": "9912500000000000000", - "steps": [], - "walletAddress": "0x30E8ccaD5A980BDF30447f8c2C48e70989D9d294" - }, - "slippagePercentage": 0, - "startTime": 1772670324815, - "status": { - "srcChain": { - "chainId": 137 - }, - "status": "PENDING" - }, - "txMetaId": "cda9a950-1829-11f1-b7d6-03d70bc40886" - }, - "cddf1130-1829-11f1-b7d6-03d70bc40886": { - "account": "0x30e8ccad5a980bdf30447f8c2c48e70989d9d294", - "batchId": "0x2bb9bae7f4bd4d5e83c2e607ba1b4c9c", - "estimatedProcessingTimeInSeconds": 0, - "hasApprovalTx": false, - "isStxEnabled": true, - "pricingData": { - "amountSent": "10", - "amountSentInUsd": "1.03808998", - "quotedGasAmount": "0.045406946478480405", - "quotedGasInUsd": "0.00471364961617067940568419", - "quotedReturnInUsd": "1.029770649732954801319844949" - }, - "quote": { - "aggregator": "uniswap", - "aggregatorType": "AGG", - "bridgeId": "uniswap", - "bridges": ["uniswap"], - "destAsset": { - "address": "0xc2132d05d31c914a87c6611c10748aeb04b58e8f", - "aggregators": [ - "quickswap", - "oneInch", - "liFi", - "socket", - "squid", - "rango", - "sonarwatch", - "sushiSwap" - ], - "assetId": "eip155:137/erc20:0xc2132d05d31c914a87c6611c10748aeb04b58e8f", - "chainId": 137, - "coingeckoId": "polygon-bridged-usdt-polygon", - "decimals": 6, - "iconUrl": "https://static.cx.metamask.io/api/v2/tokenIcons/assets/eip155/137/erc20/0xc2132d05d31c914a87c6611c10748aeb04b58e8f.png", - "metadata": { - "storage": { - "approval": 1, - "balance": 0 - } - }, - "name": "Tether USD", - "occurrences": 8, - "symbol": "USDT" - }, - "destChainId": 137, - "destTokenAmount": "1030410", - "destWalletAddress": "0x30E8ccaD5A980BDF30447f8c2C48e70989D9d294", - "feeData": { - "metabridge": { - "amount": "87500000000000000", - "asset": { - "address": "0x0000000000000000000000000000000000000000", - "aggregators": [], - "assetId": "eip155:137/slip44:966", - "chainId": 137, - "coingeckoId": "matic-network", - "decimals": 18, - "iconUrl": "https://static.cx.metamask.io/api/v2/tokenIcons/assets/eip155/137/slip44/966.png", - "metadata": {}, - "name": "Polygon Ecosystem Token", - "occurrences": 100, - "symbol": "POL" - }, - "baseBpsFee": 87.5, - "quoteBpsFee": 87.5 - } - }, - "gasIncluded7702": false, - "gasSponsored": false, - "minDestTokenAmount": "1009801", - "priceData": { - "priceImpact": "-0.0005881848301092544", - "totalFeeAmountUsd": "0.009084687499999999", - "totalFromAmountUsd": "1.0382500000000001", - "totalToAmountUsd": "1.0297706519244871" - }, - "protocols": ["uniswap"], - "requestId": "0x51162f38cdfc533eec8cf08eb04b2e0ec48cf510b365d124ae069b4319d66620", - "slippage": 2, - "srcAsset": { - "address": "0x0000000000000000000000000000000000000000", - "aggregators": [], - "assetId": "eip155:137/slip44:966", - "chainId": 137, - "coingeckoId": "matic-network", - "decimals": 18, - "iconUrl": "https://static.cx.metamask.io/api/v2/tokenIcons/assets/eip155/137/slip44/966.png", - "metadata": {}, - "name": "Polygon Ecosystem Token", - "occurrences": 100, - "symbol": "POL" - }, - "srcChainId": 137, - "srcTokenAmount": "9912500000000000000", - "steps": [], - "walletAddress": "0x30E8ccaD5A980BDF30447f8c2C48e70989D9d294" - }, - "slippagePercentage": 0, - "startTime": 1772670325165, - "status": { - "srcChain": { - "chainId": 137 - }, - "status": "PENDING" - }, - "txMetaId": "cddf1130-1829-11f1-b7d6-03d70bc40886" - }, - "ce002dc0-1829-11f1-b7d6-03d70bc40886": { - "account": "0x30e8ccad5a980bdf30447f8c2c48e70989d9d294", - "batchId": "0x044cdf7f7e4144c0afbd391ef22456d1", - "estimatedProcessingTimeInSeconds": 0, - "hasApprovalTx": false, - "isStxEnabled": true, - "pricingData": { - "amountSent": "10", - "amountSentInUsd": "1.03808998", - "quotedGasAmount": "0.045406946478480405", - "quotedGasInUsd": "0.00471364961617067940568419", - "quotedReturnInUsd": "1.029770649732954801319844949" - }, - "quote": { - "aggregator": "uniswap", - "aggregatorType": "AGG", - "bridgeId": "uniswap", - "bridges": ["uniswap"], - "destAsset": { - "address": "0xc2132d05d31c914a87c6611c10748aeb04b58e8f", - "aggregators": [ - "quickswap", - "oneInch", - "liFi", - "socket", - "squid", - "rango", - "sonarwatch", - "sushiSwap" - ], - "assetId": "eip155:137/erc20:0xc2132d05d31c914a87c6611c10748aeb04b58e8f", - "chainId": 137, - "coingeckoId": "polygon-bridged-usdt-polygon", - "decimals": 6, - "iconUrl": "https://static.cx.metamask.io/api/v2/tokenIcons/assets/eip155/137/erc20/0xc2132d05d31c914a87c6611c10748aeb04b58e8f.png", - "metadata": { - "storage": { - "approval": 1, - "balance": 0 - } - }, - "name": "Tether USD", - "occurrences": 8, - "symbol": "USDT" - }, - "destChainId": 137, - "destTokenAmount": "1030410", - "destWalletAddress": "0x30E8ccaD5A980BDF30447f8c2C48e70989D9d294", - "feeData": { - "metabridge": { - "amount": "87500000000000000", - "asset": { - "address": "0x0000000000000000000000000000000000000000", - "aggregators": [], - "assetId": "eip155:137/slip44:966", - "chainId": 137, - "coingeckoId": "matic-network", - "decimals": 18, - "iconUrl": "https://static.cx.metamask.io/api/v2/tokenIcons/assets/eip155/137/slip44/966.png", - "metadata": {}, - "name": "Polygon Ecosystem Token", - "occurrences": 100, - "symbol": "POL" - }, - "baseBpsFee": 87.5, - "quoteBpsFee": 87.5 - } - }, - "gasIncluded7702": false, - "gasSponsored": false, - "minDestTokenAmount": "1009801", - "priceData": { - "priceImpact": "-0.0005881848301092544", - "totalFeeAmountUsd": "0.009084687499999999", - "totalFromAmountUsd": "1.0382500000000001", - "totalToAmountUsd": "1.0297706519244871" - }, - "protocols": ["uniswap"], - "requestId": "0x51162f38cdfc533eec8cf08eb04b2e0ec48cf510b365d124ae069b4319d66620", - "slippage": 2, - "srcAsset": { - "address": "0x0000000000000000000000000000000000000000", - "aggregators": [], - "assetId": "eip155:137/slip44:966", - "chainId": 137, - "coingeckoId": "matic-network", - "decimals": 18, - "iconUrl": "https://static.cx.metamask.io/api/v2/tokenIcons/assets/eip155/137/slip44/966.png", - "metadata": {}, - "name": "Polygon Ecosystem Token", - "occurrences": 100, - "symbol": "POL" - }, - "srcChainId": 137, - "srcTokenAmount": "9912500000000000000", - "steps": [], - "walletAddress": "0x30E8ccaD5A980BDF30447f8c2C48e70989D9d294" - }, - "slippagePercentage": 0, - "startTime": 1772670325381, - "status": { - "srcChain": { - "chainId": 137 - }, - "status": "PENDING" - }, - "txMetaId": "ce002dc0-1829-11f1-b7d6-03d70bc40886" - }, - "ce33c0e0-1829-11f1-b7d6-03d70bc40886": { - "account": "0x30e8ccad5a980bdf30447f8c2c48e70989d9d294", - "batchId": "0x8780f818513b4f198ef4c2a1d7d3d24f", - "estimatedProcessingTimeInSeconds": 0, - "hasApprovalTx": false, - "isStxEnabled": true, - "pricingData": { - "amountSent": "10", - "amountSentInUsd": "1.03808998", - "quotedGasAmount": "0.045406946478480405", - "quotedGasInUsd": "0.00471364961617067940568419", - "quotedReturnInUsd": "1.029770649732954801319844949" - }, - "quote": { - "aggregator": "uniswap", - "aggregatorType": "AGG", - "bridgeId": "uniswap", - "bridges": ["uniswap"], - "destAsset": { - "address": "0xc2132d05d31c914a87c6611c10748aeb04b58e8f", - "aggregators": [ - "quickswap", - "oneInch", - "liFi", - "socket", - "squid", - "rango", - "sonarwatch", - "sushiSwap" - ], - "assetId": "eip155:137/erc20:0xc2132d05d31c914a87c6611c10748aeb04b58e8f", - "chainId": 137, - "coingeckoId": "polygon-bridged-usdt-polygon", - "decimals": 6, - "iconUrl": "https://static.cx.metamask.io/api/v2/tokenIcons/assets/eip155/137/erc20/0xc2132d05d31c914a87c6611c10748aeb04b58e8f.png", - "metadata": { - "storage": { - "approval": 1, - "balance": 0 - } - }, - "name": "Tether USD", - "occurrences": 8, - "symbol": "USDT" - }, - "destChainId": 137, - "destTokenAmount": "1030410", - "destWalletAddress": "0x30E8ccaD5A980BDF30447f8c2C48e70989D9d294", - "feeData": { - "metabridge": { - "amount": "87500000000000000", - "asset": { - "address": "0x0000000000000000000000000000000000000000", - "aggregators": [], - "assetId": "eip155:137/slip44:966", - "chainId": 137, - "coingeckoId": "matic-network", - "decimals": 18, - "iconUrl": "https://static.cx.metamask.io/api/v2/tokenIcons/assets/eip155/137/slip44/966.png", - "metadata": {}, - "name": "Polygon Ecosystem Token", - "occurrences": 100, - "symbol": "POL" - }, - "baseBpsFee": 87.5, - "quoteBpsFee": 87.5 - } - }, - "gasIncluded7702": false, - "gasSponsored": false, - "minDestTokenAmount": "1009801", - "priceData": { - "priceImpact": "-0.0005881848301092544", - "totalFeeAmountUsd": "0.009084687499999999", - "totalFromAmountUsd": "1.0382500000000001", - "totalToAmountUsd": "1.0297706519244871" - }, - "protocols": ["uniswap"], - "requestId": "0x51162f38cdfc533eec8cf08eb04b2e0ec48cf510b365d124ae069b4319d66620", - "slippage": 2, - "srcAsset": { - "address": "0x0000000000000000000000000000000000000000", - "aggregators": [], - "assetId": "eip155:137/slip44:966", - "chainId": 137, - "coingeckoId": "matic-network", - "decimals": 18, - "iconUrl": "https://static.cx.metamask.io/api/v2/tokenIcons/assets/eip155/137/slip44/966.png", - "metadata": {}, - "name": "Polygon Ecosystem Token", - "occurrences": 100, - "symbol": "POL" - }, - "srcChainId": 137, - "srcTokenAmount": "9912500000000000000", - "steps": [], - "walletAddress": "0x30E8ccaD5A980BDF30447f8c2C48e70989D9d294" - }, - "slippagePercentage": 0, - "startTime": 1772670325722, - "status": { - "srcChain": { - "chainId": 137 - }, - "status": "PENDING" - }, - "txMetaId": "ce33c0e0-1829-11f1-b7d6-03d70bc40886" - }, - "ce854710-23c0-11f1-ba09-05a660861774": { - "account": "0xb3864b298f4fddbbbd2fa5cf1a2a2748932b3b81", - "batchId": "0x5c1c927cdc1741ddb0b77f8501b22421", - "estimatedProcessingTimeInSeconds": 0, - "hasApprovalTx": false, - "isStxEnabled": false, - "location": "Main View", - "originalTransactionId": "ce854710-23c0-11f1-ba09-05a660861774", - "pricingData": { - "amountSent": "416.36735", - "amountSentInUsd": "9.19304258852805", - "quotedGasAmount": "0.07916898526", - "quotedGasInUsd": "0.00174798493010013738", - "quotedReturnInUsd": "9.1346624073293490712336207689" - }, - "quote": { - "aggregator": "kyberswap", - "aggregatorType": "AGG", - "bridgeId": "kyberswap", - "bridges": ["kyberswap"], - "destAsset": { - "address": "0x754704bc059f8c67012fed69bc8a327a5aafb603", - "aggregators": ["metamask", "liFi", "squid"], - "assetId": "eip155:143/erc20:0x754704bc059f8c67012fed69bc8a327a5aafb603", - "chainId": 143, - "decimals": 6, - "iconUrl": "https://static.cx.metamask.io/api/v2/tokenIcons/assets/eip155/143/erc20/0x754704bc059f8c67012fed69bc8a327a5aafb603.png", - "metadata": {}, - "name": "USDC", - "occurrences": 3, - "symbol": "USDC" - }, - "destChainId": 143, - "destTokenAmount": "9135567", - "destWalletAddress": "0xb3864B298f4fDdbbBd2Fa5CF1a2a2748932b3B81", - "feeData": { - "metabridge": { - "amount": "3643214312500000000", - "asset": { - "address": "0x0000000000000000000000000000000000000000", - "aggregators": [], - "assetId": "eip155:143/slip44:268435779", - "chainId": 143, - "decimals": 18, - "iconUrl": "https://static.cx.metamask.io/api/v2/tokenIcons/assets/eip155/143/slip44/268435779.png", - "metadata": {}, - "name": "Mon", - "occurrences": 1, - "symbol": "MON" - }, - "baseBpsFee": 87.5, - "quoteBpsFee": 87.5 - } - }, - "gasIncluded": false, - "gasIncluded7702": true, - "gasSponsored": true, - "minDestTokenAmount": "8952855", - "priceData": { - "priceImpact": "-0.00018395232141909536", - "totalFeeAmountUsd": "0.08061901364272875", - "totalFromAmountUsd": "9.213601559169", - "totalToAmountUsd": "9.134662578867001" - }, - "protocols": ["kyberswap"], - "requestId": "0xf8587ab4d5d0b801b71352a92a7ff9264a07382c59b8c21bb6f01c2933847adf", - "slippage": 2, - "srcAsset": { - "address": "0x0000000000000000000000000000000000000000", - "aggregators": [], - "assetId": "eip155:143/slip44:268435779", - "chainId": 143, - "decimals": 18, - "iconUrl": "https://static.cx.metamask.io/api/v2/tokenIcons/assets/eip155/143/slip44/268435779.png", - "metadata": {}, - "name": "Mon", - "occurrences": 1, - "symbol": "MON" - }, - "srcChainId": 143, - "srcTokenAmount": "412724135687500000000", - "steps": [], - "walletAddress": "0xb3864B298f4fDdbbBd2Fa5CF1a2a2748932b3B81" - }, - "slippagePercentage": 0, - "startTime": 1773944642602, - "status": { - "srcChain": { - "chainId": 143 - }, - "status": "PENDING" - }, - "txMetaId": "ce854710-23c0-11f1-ba09-05a660861774" - }, - "d256a8f0-2877-11f1-9e23-5b4e77963ec9": { - "account": "0xf25bd11c334507fd007d584e2d0b7b2c6543f714", - "batchId": "0xbf2998a47fb94b64a9bbfe1a0f4196b5", - "estimatedProcessingTimeInSeconds": 0, - "hasApprovalTx": true, - "isStxEnabled": false, - "location": "Main View", - "originalTransactionId": "d256a8f0-2877-11f1-9e23-5b4e77963ec9", - "pricingData": { - "amountSent": "1.700864205240021113", - "amountSentInUsd": "1.70086198163970273624022762966768200866393825", - "quotedGasAmount": "0.00001377565", - "quotedGasInUsd": "0.00888787690162978375", - "quotedReturnInUsd": "1.65202587233160871633028405" - }, - "quote": { - "aggregator": "1inch", - "aggregatorType": "AGG", - "bridgeId": "1inch", - "bridges": ["1inch"], - "destAsset": { - "address": "0x0000000000000000000000000000000000000000", - "aggregators": [], - "assetId": "eip155:56/slip44:714", - "chainId": 56, - "coingeckoId": "binancecoin", - "decimals": 18, - "iconUrl": "https://static.cx.metamask.io/api/v2/tokenIcons/assets/eip155/56/slip44/714.png", - "metadata": {}, - "name": "Binance Coin", - "occurrences": 100, - "symbol": "BNB" - }, - "destChainId": 56, - "destTokenAmount": "2560536161792678", - "destWalletAddress": "0xF25bd11C334507Fd007d584E2D0b7b2C6543f714", - "feeData": { - "metabridge": { - "amount": "23016125521499", - "asset": { - "address": "0x0000000000000000000000000000000000000000", - "aggregators": [], - "assetId": "eip155:56/slip44:714", - "chainId": 56, - "coingeckoId": "binancecoin", - "decimals": 18, - "iconUrl": "https://static.cx.metamask.io/api/v2/tokenIcons/assets/eip155/56/slip44/714.png", - "metadata": {}, - "name": "Binance Coin", - "occurrences": 100, - "symbol": "BNB" - }, - "baseBpsFee": 87.5, - "quoteBpsFee": 87.5 - }, - "txFee": { - "amount": "46862058000000", - "asset": { - "address": "0x0000000000000000000000000000000000000000", - "aggregators": [], - "assetId": "eip155:56/slip44:714", - "chainId": 56, - "coingeckoId": "binancecoin", - "decimals": 18, - "iconUrl": "https://static.cx.metamask.io/api/v2/tokenIcons/assets/eip155/56/slip44/714.png", - "metadata": {}, - "name": "Binance Coin", - "occurrences": 100, - "symbol": "BNB" - }, - "maxFeePerGas": "60000000", - "maxPriorityFeePerGas": "60000000" - } - }, - "gasIncluded": true, - "gasIncluded7702": true, - "gasSponsored": false, - "minDestTokenAmount": "2509325438556824", - "priceData": { - "priceImpact": "0.0014056666892441811", - "totalFeeAmountUsd": "0.014857599507893247", - "totalFromAmountUsd": "1.7004015701761959", - "totalToAmountUsd": "1.6529029085220275" - }, - "protocols": ["1inch"], - "requestId": "0x37f31556c303a3e12b3c63779210762e9aa8cf903aa1902a853cb8a4a5bc19b7", - "slippage": 2, - "srcAsset": { - "address": "0x55d398326f99059ff775485246999027b3197955", - "aggregators": [ - "pancakeExtended", - "oneInch", - "liFi", - "trustWallet", - "socket", - "rubic", - "squid", - "rango", - "sonarwatch", - "sushiSwap" - ], - "assetId": "eip155:56/erc20:0x55d398326f99059ff775485246999027b3197955", - "chainId": 56, - "coingeckoId": "binance-bridged-usdt-bnb-smart-chain", - "decimals": 18, - "iconUrl": "https://static.cx.metamask.io/api/v2/tokenIcons/assets/eip155/56/erc20/0x55d398326f99059ff775485246999027b3197955.png", - "metadata": { - "storage": { - "approval": 2, - "balance": 1 - } - }, - "name": "Tether USD", - "occurrences": 11, - "symbol": "USDT" - }, - "srcChainId": 56, - "srcTokenAmount": "1700864205240021113", - "steps": [], - "walletAddress": "0xF25bd11C334507Fd007d584E2D0b7b2C6543f714" - }, - "slippagePercentage": 0, - "startTime": 1774463051870, - "status": { - "srcChain": { - "chainId": 56, - "txHash": "0x99924a2fc050758563d9f954a1f30e5e465c03e78cc8958c32a1b659d7433f58" - }, - "status": "PENDING" - }, - "txMetaId": "d256a8f0-2877-11f1-9e23-5b4e77963ec9" - }, - "d3bf32a0-39db-11f1-bc94-3727d90ba13b": { - "account": "0x141d32a89a1e0a5ef360034a2f60a4b917c18838", - "batchId": "0x20245866a5b543c1af94b98e209ee1e1", - "completionTime": 1776375193270, - "estimatedProcessingTimeInSeconds": 1.5, - "hasApprovalTx": false, - "isStxEnabled": false, - "location": "Main View", - "originalTransactionId": "d3bf32a0-39db-11f1-bc94-3727d90ba13b", - "pricingData": { - "amountSent": "0.013950531091145531", - "amountSentInUsd": "32.658515343737659473775597234", - "quotedGasAmount": "0.000184715769752919", - "quotedGasInUsd": "0.432423881305486761713991066", - "quotedReturnInUsd": "31.82774314327230765570593886" - }, - "quote": { - "aggregator": "relay", - "bridgeId": "relay", - "bridges": ["Relay"], - "destAsset": { - "address": "0x0000000000000000000000000000000000000000", - "aggregators": [], - "assetId": "eip155:42161/slip44:60", - "chainId": 42161, - "coingeckoId": "ethereum", - "decimals": 18, - "iconUrl": "https://static.cx.metamask.io/api/v2/tokenIcons/assets/eip155/42161/slip44/60.png", - "metadata": {}, - "name": "Ether", - "occurrences": 100, - "symbol": "ETH" - }, - "destChainId": 42161, - "destTokenAmount": "13595655393635490", - "feeData": { - "metabridge": { - "amount": "122067147047523", - "asset": { - "address": "0x0000000000000000000000000000000000000000", - "aggregators": [], - "assetId": "eip155:1/slip44:60", - "chainId": 1, - "coingeckoId": "ethereum", - "decimals": 18, - "iconUrl": "https://static.cx.metamask.io/api/v2/tokenIcons/assets/eip155/1/slip44/60.png", - "metadata": {}, - "name": "Ether", - "occurrences": 100, - "symbol": "ETH" - }, - "baseBpsFee": 87.5, - "quoteBpsFee": 87.5 - }, - "txFee": { - "amount": "222071812897634", - "asset": { - "address": "0x0000000000000000000000000000000000000000", - "aggregators": [], - "assetId": "eip155:1/slip44:60", - "chainId": 1, - "coingeckoId": "ethereum", - "decimals": 18, - "iconUrl": "https://static.cx.metamask.io/api/v2/tokenIcons/assets/eip155/1/slip44/60.png", - "metadata": {}, - "name": "Ether", - "occurrences": 100, - "symbol": "ETH" - }, - "maxFeePerGas": "2241879227", - "maxPriorityFeePerGas": "2100000001" - } - }, - "gasIncluded": true, - "gasIncluded7702": false, - "gasSponsored": false, - "minDestTokenAmount": "13323742285762780", - "priceData": { - "priceImpact": "0.008528286507847345", - "totalFeeAmountUsd": "0.28568973314354484", - "totalFromAmountUsd": "32.650255216405235", - "totalToAmountUsd": "31.856493257293536" - }, - "protocols": ["Relay"], - "requestId": "0x02ca08aeacca78b0ccfba9be49e103a197ff17d9c219895ee7925a833a77ab08", - "slippage": 2, - "srcAsset": { - "address": "0x0000000000000000000000000000000000000000", - "aggregators": [], - "assetId": "eip155:1/slip44:60", - "chainId": 1, - "coingeckoId": "ethereum", - "decimals": 18, - "iconUrl": "https://static.cx.metamask.io/api/v2/tokenIcons/assets/eip155/1/slip44/60.png", - "metadata": {}, - "name": "Ether", - "occurrences": 100, - "symbol": "ETH" - }, - "srcChainId": 1, - "srcTokenAmount": "13606392131200374", - "steps": [ - { - "action": "bridge", - "destAmount": "13595655393635490", - "destAsset": { - "address": "0x0000000000000000000000000000000000000000", - "aggregators": [], - "assetId": "eip155:42161/slip44:60", - "chainId": 42161, - "coingeckoId": "ethereum", - "decimals": 18, - "iconUrl": "https://static.cx.metamask.io/api/v2/tokenIcons/assets/eip155/42161/slip44/60.png", - "metadata": {}, - "name": "Ether", - "occurrences": 100, - "symbol": "ETH" - }, - "destChainId": 42161, - "protocol": { - "name": "relay" - }, - "srcAmount": "13606392131200374", - "srcAsset": { - "address": "0x0000000000000000000000000000000000000000", - "aggregators": [], - "assetId": "eip155:1/slip44:60", - "chainId": 1, - "coingeckoId": "ethereum", - "decimals": 18, - "iconUrl": "https://static.cx.metamask.io/api/v2/tokenIcons/assets/eip155/1/slip44/60.png", - "metadata": {}, - "name": "Ether", - "occurrences": 100, - "symbol": "ETH" - }, - "srcChainId": 1 - } - ] - }, - "slippagePercentage": 0, - "startTime": 1776375173503, - "status": { - "bridge": "relay", - "destChain": { - "chainId": 42161, - "txHash": "0xd5f58e1a26c2ba999201d2af7999d94c55c4a384b4899dbf1313ceb53a8342c3" - }, - "isExpectedToken": true, - "isUnrecognizedRouterAddress": false, - "srcChain": { - "chainId": 1, - "txHash": "0x400089af7cf7bdf032a84d27c3dab0a0a1326f8ef62f94ee260c70bfcb82b43b" - }, - "status": "COMPLETE" - }, - "txMetaId": "d3bf32a0-39db-11f1-bc94-3727d90ba13b" - }, - "d520aea0-1d64-11f1-9aaf-3b0a0edc0d9a": { - "account": "0xf25bd11c334507fd007d584e2d0b7b2c6543f714", - "batchId": "0xb0b203b7040945c89797d56173077bef", - "estimatedProcessingTimeInSeconds": 0, - "hasApprovalTx": false, - "isStxEnabled": true, - "location": "Main View", - "originalTransactionId": "d520aea0-1d64-11f1-9aaf-3b0a0edc0d9a", - "pricingData": { - "amountSent": "0.00007192785795595", - "amountSentInUsd": "0.04648213615428499916109165", - "quotedGasAmount": "0.0000108533", - "quotedGasInUsd": "0.0070137577102915731", - "quotedReturnInUsd": "0.03029264047455535566029550751654477948764084" - }, - "quote": { - "aggregator": "pancakeswap", - "aggregatorType": "AGG", - "bridgeId": "pancakeswap", - "bridges": ["pancakeswap"], - "destAsset": { - "address": "0x55d398326f99059ff775485246999027b3197955", - "aggregators": [ - "pancakeExtended", - "oneInch", - "liFi", - "socket", - "rubic", - "squid", - "rango", - "sonarwatch", - "sushiSwap" - ], - "assetId": "eip155:56/erc20:0x55d398326f99059ff775485246999027b3197955", - "chainId": 56, - "coingeckoId": "binance-bridged-usdt-bnb-smart-chain", - "decimals": 18, - "iconUrl": "https://static.cx.metamask.io/api/v2/tokenIcons/assets/eip155/56/erc20/0x55d398326f99059ff775485246999027b3197955.png", - "metadata": { - "storage": { - "approval": 2, - "balance": 1 - } - }, - "name": "Tether USD", - "occurrences": 11, - "symbol": "USDT" - }, - "destChainId": 56, - "destTokenAmount": "30292640474553426", - "destWalletAddress": "0xF25bd11C334507Fd007d584E2D0b7b2C6543f714", - "feeData": { - "metabridge": { - "amount": "629368757114", - "asset": { - "address": "0x0000000000000000000000000000000000000000", - "aggregators": [], - "assetId": "eip155:56/slip44:714", - "chainId": 56, - "coingeckoId": "binancecoin", - "decimals": 18, - "iconUrl": "https://static.cx.metamask.io/api/v2/tokenIcons/assets/eip155/56/slip44/714.png", - "metadata": {}, - "name": "Binance Coin", - "occurrences": 100, - "symbol": "BNB" - }, - "baseBpsFee": 87.5 - }, - "txFee": { - "amount": "24462000000000", - "asset": { - "address": "0x0000000000000000000000000000000000000000", - "aggregators": [], - "assetId": "eip155:56/slip44:714", - "chainId": 56, - "coingeckoId": "binancecoin", - "decimals": 18, - "iconUrl": "https://static.cx.metamask.io/api/v2/tokenIcons/assets/eip155/56/slip44/714.png", - "metadata": {}, - "name": "Binance Coin", - "occurrences": 100, - "symbol": "BNB" - }, - "maxFeePerGas": "60000000", - "maxPriorityFeePerGas": "60000000" - } - }, - "gasIncluded": true, - "gasIncluded7702": false, - "gasSponsored": false, - "minDestTokenAmount": "29686787665062357", - "priceData": { - "priceImpact": "0.3424885937771114", - "totalFeeAmountUsd": "0.00040668550347192447", - "totalFromAmountUsd": "0.04647834325397576", - "totalToAmountUsd": "0.030292640474553427" - }, - "protocols": ["pancakeswap"], - "requestId": "0xcac65e6622e79e7350e419ea6d911cfd643ddb055c419a6f7655e302efa9bcf8", - "slippage": 2, - "srcAsset": { - "address": "0x0000000000000000000000000000000000000000", - "aggregators": [], - "assetId": "eip155:56/slip44:714", - "chainId": 56, - "coingeckoId": "binancecoin", - "decimals": 18, - "iconUrl": "https://static.cx.metamask.io/api/v2/tokenIcons/assets/eip155/56/slip44/714.png", - "metadata": {}, - "name": "Binance Coin", - "occurrences": 100, - "symbol": "BNB" - }, - "srcChainId": 56, - "srcTokenAmount": "46836489198836", - "steps": [], - "walletAddress": "0xF25bd11C334507Fd007d584E2D0b7b2C6543f714" - }, - "slippagePercentage": 0, - "startTime": 1773245433481, - "status": { - "srcChain": { - "chainId": 56 - }, - "status": "PENDING" - }, - "txMetaId": "d520aea0-1d64-11f1-9aaf-3b0a0edc0d9a" - }, - "d6ea04f0-182a-11f1-b7d6-03d70bc40886": { - "account": "0x30e8ccad5a980bdf30447f8c2c48e70989d9d294", - "approvalTxId": "d6e4adc0-182a-11f1-b7d6-03d70bc40886", - "batchId": "0x4149e8946f37483c9f4644bb88bf2826", - "estimatedProcessingTimeInSeconds": 0, - "hasApprovalTx": true, - "isStxEnabled": true, - "pricingData": { - "amountSent": "1", - "amountSentInUsd": "0.99665341702749971638556", - "quotedGasAmount": "0.068702782162977381", - "quotedGasInUsd": "0.007145271132511250862150126", - "quotedReturnInUsd": "0.991759770934831082602307054" - }, - "quote": { - "aggregator": "0x", - "aggregatorType": "AGG", - "bridgeId": "0x", - "bridges": ["0x"], - "destAsset": { - "address": "0x0000000000000000000000000000000000000000", - "aggregators": [], - "assetId": "eip155:137/slip44:966", - "chainId": 137, - "coingeckoId": "matic-network", - "decimals": 18, - "iconUrl": "https://static.cx.metamask.io/api/v2/tokenIcons/assets/eip155/137/slip44/966.png", - "metadata": {}, - "name": "Polygon Ecosystem Token", - "occurrences": 100, - "symbol": "POL" - }, - "destChainId": 137, - "destTokenAmount": "9535909028072526949", - "destWalletAddress": "0x30E8ccaD5A980BDF30447f8c2C48e70989D9d294", - "feeData": { - "metabridge": { - "amount": "84175741735823062", - "asset": { - "address": "0x0000000000000000000000000000000000000000", - "aggregators": [], - "assetId": "eip155:137/slip44:966", - "chainId": 137, - "coingeckoId": "matic-network", - "decimals": 18, - "iconUrl": "https://static.cx.metamask.io/api/v2/tokenIcons/assets/eip155/137/slip44/966.png", - "metadata": {}, - "name": "Polygon Ecosystem Token", - "occurrences": 100, - "symbol": "POL" - }, - "baseBpsFee": 87.5, - "quoteBpsFee": 87.5 - } - }, - "gasIncluded7702": false, - "gasSponsored": false, - "minDestTokenAmount": "9345190847511076410", - "priceData": { - "priceImpact": "-0.001615337486912044", - "totalFeeAmountUsd": "0.00875385626181692", - "totalFromAmountUsd": "0.9988272725", - "totalToAmountUsd": "0.9916868593744026" - }, - "protocols": ["0x"], - "requestId": "0x1636e191e86bb64b925ac18baf34245188931b868b5c83c64e4eaffb74b8fb8d", - "slippage": 2, - "srcAsset": { - "address": "0xc2132d05d31c914a87c6611c10748aeb04b58e8f", - "aggregators": [ - "quickswap", - "oneInch", - "liFi", - "socket", - "squid", - "rango", - "sonarwatch", - "sushiSwap" - ], - "assetId": "eip155:137/erc20:0xc2132d05d31c914a87c6611c10748aeb04b58e8f", - "chainId": 137, - "coingeckoId": "polygon-bridged-usdt-polygon", - "decimals": 6, - "iconUrl": "https://static.cx.metamask.io/api/v2/tokenIcons/assets/eip155/137/erc20/0xc2132d05d31c914a87c6611c10748aeb04b58e8f.png", - "metadata": { - "storage": { - "approval": 1, - "balance": 0 - } - }, - "name": "Tether USD", - "occurrences": 8, - "symbol": "USDT" - }, - "srcChainId": 137, - "srcTokenAmount": "1000000", - "steps": [], - "walletAddress": "0x30E8ccaD5A980BDF30447f8c2C48e70989D9d294" - }, - "slippagePercentage": 0, - "startTime": 1772670769722, - "status": { - "srcChain": { - "chainId": 137 - }, - "status": "PENDING" - }, - "txMetaId": "d6ea04f0-182a-11f1-b7d6-03d70bc40886" - }, - "d704b8e0-182a-11f1-b7d6-03d70bc40886": { - "account": "0x30e8ccad5a980bdf30447f8c2c48e70989d9d294", - "approvalTxId": "d700c140-182a-11f1-b7d6-03d70bc40886", - "batchId": "0x42b48b685bf948f18df23c6928551c7c", - "estimatedProcessingTimeInSeconds": 0, - "hasApprovalTx": true, - "isStxEnabled": true, - "pricingData": { - "amountSent": "1", - "amountSentInUsd": "0.99665341702749971638556", - "quotedGasAmount": "0.068702782162977381", - "quotedGasInUsd": "0.007145271132511250862150126", - "quotedReturnInUsd": "0.991759770934831082602307054" - }, - "quote": { - "aggregator": "0x", - "aggregatorType": "AGG", - "bridgeId": "0x", - "bridges": ["0x"], - "destAsset": { - "address": "0x0000000000000000000000000000000000000000", - "aggregators": [], - "assetId": "eip155:137/slip44:966", - "chainId": 137, - "coingeckoId": "matic-network", - "decimals": 18, - "iconUrl": "https://static.cx.metamask.io/api/v2/tokenIcons/assets/eip155/137/slip44/966.png", - "metadata": {}, - "name": "Polygon Ecosystem Token", - "occurrences": 100, - "symbol": "POL" - }, - "destChainId": 137, - "destTokenAmount": "9535909028072526949", - "destWalletAddress": "0x30E8ccaD5A980BDF30447f8c2C48e70989D9d294", - "feeData": { - "metabridge": { - "amount": "84175741735823062", - "asset": { - "address": "0x0000000000000000000000000000000000000000", - "aggregators": [], - "assetId": "eip155:137/slip44:966", - "chainId": 137, - "coingeckoId": "matic-network", - "decimals": 18, - "iconUrl": "https://static.cx.metamask.io/api/v2/tokenIcons/assets/eip155/137/slip44/966.png", - "metadata": {}, - "name": "Polygon Ecosystem Token", - "occurrences": 100, - "symbol": "POL" - }, - "baseBpsFee": 87.5, - "quoteBpsFee": 87.5 - } - }, - "gasIncluded7702": false, - "gasSponsored": false, - "minDestTokenAmount": "9345190847511076410", - "priceData": { - "priceImpact": "-0.001615337486912044", - "totalFeeAmountUsd": "0.00875385626181692", - "totalFromAmountUsd": "0.9988272725", - "totalToAmountUsd": "0.9916868593744026" - }, - "protocols": ["0x"], - "requestId": "0x1636e191e86bb64b925ac18baf34245188931b868b5c83c64e4eaffb74b8fb8d", - "slippage": 2, - "srcAsset": { - "address": "0xc2132d05d31c914a87c6611c10748aeb04b58e8f", - "aggregators": [ - "quickswap", - "oneInch", - "liFi", - "socket", - "squid", - "rango", - "sonarwatch", - "sushiSwap" - ], - "assetId": "eip155:137/erc20:0xc2132d05d31c914a87c6611c10748aeb04b58e8f", - "chainId": 137, - "coingeckoId": "polygon-bridged-usdt-polygon", - "decimals": 6, - "iconUrl": "https://static.cx.metamask.io/api/v2/tokenIcons/assets/eip155/137/erc20/0xc2132d05d31c914a87c6611c10748aeb04b58e8f.png", - "metadata": { - "storage": { - "approval": 1, - "balance": 0 - } - }, - "name": "Tether USD", - "occurrences": 8, - "symbol": "USDT" - }, - "srcChainId": 137, - "srcTokenAmount": "1000000", - "steps": [], - "walletAddress": "0x30E8ccaD5A980BDF30447f8c2C48e70989D9d294" - }, - "slippagePercentage": 0, - "startTime": 1772670769947, - "status": { - "srcChain": { - "chainId": 137 - }, - "status": "FAILED" - }, - "txMetaId": "d704b8e0-182a-11f1-b7d6-03d70bc40886" - }, - "d79f3950-287f-11f1-91c9-9d8a4fbc2cec": { - "account": "0xf25bd11c334507fd007d584e2d0b7b2c6543f714", - "batchId": "0x9e08fced9ac1433f93407234964cdb5c", - "estimatedProcessingTimeInSeconds": 0, - "hasApprovalTx": false, - "isStxEnabled": true, - "location": "Main View", - "originalTransactionId": "d79f3950-287f-11f1-91c9-9d8a4fbc2cec", - "pricingData": { - "amountSent": "0.001950721614518098", - "amountSentInUsd": "1.260681767800322765067867866", - "quotedGasAmount": "0.0000125086", - "quotedGasInUsd": "0.0080838618095707862", - "quotedReturnInUsd": "1.23174350797502501034934689371406044991645696" - }, - "quote": { - "aggregator": "1inch", - "aggregatorType": "AGG", - "bridgeId": "1inch", - "bridges": ["1inch"], - "destAsset": { - "address": "0x55d398326f99059ff775485246999027b3197955", - "aggregators": [ - "pancakeExtended", - "oneInch", - "liFi", - "trustWallet", - "socket", - "rubic", - "squid", - "rango", - "sonarwatch", - "sushiSwap" - ], - "assetId": "eip155:56/erc20:0x55d398326f99059ff775485246999027b3197955", - "chainId": 56, - "coingeckoId": "binance-bridged-usdt-bnb-smart-chain", - "decimals": 18, - "iconUrl": "https://static.cx.metamask.io/api/v2/tokenIcons/assets/eip155/56/erc20/0x55d398326f99059ff775485246999027b3197955.png", - "metadata": { - "storage": { - "approval": 2, - "balance": 1 - } - }, - "name": "Tether USD", - "occurrences": 11, - "symbol": "USDT" - }, - "destChainId": 56, - "destTokenAmount": "1231436478038748672", - "destWalletAddress": "0xF25bd11C334507Fd007d584E2D0b7b2C6543f714", - "feeData": { - "metabridge": { - "amount": "17068814127033", - "asset": { - "address": "0x0000000000000000000000000000000000000000", - "aggregators": [], - "assetId": "eip155:56/slip44:714", - "chainId": 56, - "coingeckoId": "binancecoin", - "decimals": 18, - "iconUrl": "https://static.cx.metamask.io/api/v2/tokenIcons/assets/eip155/56/slip44/714.png", - "metadata": {}, - "name": "Binance Coin", - "occurrences": 100, - "symbol": "BNB" - }, - "baseBpsFee": 87.5, - "quoteBpsFee": 87.5 - }, - "txFee": { - "amount": "28799010000000", - "asset": { - "address": "0x0000000000000000000000000000000000000000", - "aggregators": [], - "assetId": "eip155:56/slip44:714", - "chainId": 56, - "coingeckoId": "binancecoin", - "decimals": 18, - "iconUrl": "https://static.cx.metamask.io/api/v2/tokenIcons/assets/eip155/56/slip44/714.png", - "metadata": {}, - "name": "Binance Coin", - "occurrences": 100, - "symbol": "BNB" - }, - "maxFeePerGas": "60000000", - "maxPriorityFeePerGas": "60000000" - } - }, - "gasIncluded": true, - "gasIncluded7702": false, - "gasSponsored": false, - "minDestTokenAmount": "1206807748477973698", - "priceData": { - "priceImpact": "0.008521360403758543", - "totalFeeAmountUsd": "0.011027136678628398", - "totalFromAmountUsd": "1.2602441918432719", - "totalToAmountUsd": "1.231058427039991" - }, - "protocols": ["1inch"], - "requestId": "0x3982a35fd2513cfc64bd1f517712b9991f26765abd7c2ddf12c5b91ae90026fc", - "slippage": 2, - "srcAsset": { - "address": "0x0000000000000000000000000000000000000000", - "aggregators": [], - "assetId": "eip155:56/slip44:714", - "chainId": 56, - "coingeckoId": "binancecoin", - "decimals": 18, - "iconUrl": "https://static.cx.metamask.io/api/v2/tokenIcons/assets/eip155/56/slip44/714.png", - "metadata": {}, - "name": "Binance Coin", - "occurrences": 100, - "symbol": "BNB" - }, - "srcChainId": 56, - "srcTokenAmount": "1904853790391065", - "steps": [], - "walletAddress": "0xF25bd11C334507Fd007d584E2D0b7b2C6543f714" - }, - "slippagePercentage": 0, - "startTime": 1774466496721, - "status": { - "srcChain": { - "chainId": 56, - "txHash": "0xafe5004e9cb827180b1deb267fe07121a509be8bbef547216e14dd5d3d2d912e" - }, - "status": "FAILED" - }, - "txMetaId": "d79f3950-287f-11f1-91c9-9d8a4fbc2cec" - }, - "d8ca3580-2863-11f1-9b9d-5fbe36423c6b": { - "account": "0xf25bd11c334507fd007d584e2d0b7b2c6543f714", - "batchId": "0x284968f6acfa4ec6802ee3f77759b0cc", - "estimatedProcessingTimeInSeconds": 0, - "hasApprovalTx": false, - "isStxEnabled": true, - "location": "Main View", - "originalTransactionId": "d8ca3580-2863-11f1-9b9d-5fbe36423c6b", - "pricingData": { - "amountSent": "0.003122743098328475", - "amountSentInUsd": "2.0159438707343369827509932", - "quotedGasAmount": "0.0000097987", - "quotedGasInUsd": "0.0063257298420539824", - "quotedReturnInUsd": "1.9854186877230404566985228210923473788205336" - }, - "quote": { - "aggregator": "uniswap", - "aggregatorType": "AGG", - "bridgeId": "uniswap", - "bridges": ["uniswap"], - "destAsset": { - "address": "0x55d398326f99059ff775485246999027b3197955", - "aggregators": [ - "pancakeExtended", - "oneInch", - "liFi", - "trustWallet", - "socket", - "squid", - "rango", - "sonarwatch", - "sushiSwap" - ], - "assetId": "eip155:56/erc20:0x55d398326f99059ff775485246999027b3197955", - "chainId": 56, - "coingeckoId": "binance-bridged-usdt-bnb-smart-chain", - "decimals": 18, - "iconUrl": "https://static.cx.metamask.io/api/v2/tokenIcons/assets/eip155/56/erc20/0x55d398326f99059ff775485246999027b3197955.png", - "metadata": { - "storage": { - "approval": 2, - "balance": 1 - } - }, - "name": "Tether USD", - "occurrences": 9, - "symbol": "USDT" - }, - "destChainId": 56, - "destTokenAmount": "1985905234506583193", - "destWalletAddress": "0xF25bd11C334507Fd007d584E2D0b7b2C6543f714", - "feeData": { - "metabridge": { - "amount": "27324002110374", - "asset": { - "address": "0x0000000000000000000000000000000000000000", - "aggregators": [], - "assetId": "eip155:56/slip44:714", - "chainId": 56, - "coingeckoId": "binancecoin", - "decimals": 18, - "iconUrl": "https://static.cx.metamask.io/api/v2/tokenIcons/assets/eip155/56/slip44/714.png", - "metadata": {}, - "name": "Binance Coin", - "occurrences": 100, - "symbol": "BNB" - }, - "baseBpsFee": 87.5, - "quoteBpsFee": 87.5 - }, - "txFee": { - "amount": "19880730331345", - "asset": { - "address": "0x0000000000000000000000000000000000000000", - "aggregators": [], - "assetId": "eip155:56/slip44:714", - "chainId": 56, - "coingeckoId": "binancecoin", - "decimals": 18, - "iconUrl": "https://static.cx.metamask.io/api/v2/tokenIcons/assets/eip155/56/slip44/714.png", - "metadata": {}, - "name": "Binance Coin", - "occurrences": 100, - "symbol": "BNB" - }, - "maxFeePerGas": "60000001", - "maxPriorityFeePerGas": "60000001" - } - }, - "gasIncluded": true, - "gasIncluded7702": false, - "gasSponsored": false, - "minDestTokenAmount": "1946187129816451529", - "priceData": { - "priceImpact": "0.008941788490137959", - "totalFeeAmountUsd": "0.01764146872254187", - "totalFromAmountUsd": "2.0161678540047965", - "totalToAmountUsd": "1.985418687724129" - }, - "protocols": ["uniswap"], - "requestId": "0x90c9cf5daf5519a17bed2bf04c0c98bb228c76f1d8de3320af8cf4eabfe1720d", - "slippage": 2, - "srcAsset": { - "address": "0x0000000000000000000000000000000000000000", - "aggregators": [], - "assetId": "eip155:56/slip44:714", - "chainId": 56, - "coingeckoId": "binancecoin", - "decimals": 18, - "iconUrl": "https://static.cx.metamask.io/api/v2/tokenIcons/assets/eip155/56/slip44/714.png", - "metadata": {}, - "name": "Binance Coin", - "occurrences": 100, - "symbol": "BNB" - }, - "srcChainId": 56, - "srcTokenAmount": "3075538365886756", - "steps": [], - "walletAddress": "0xF25bd11C334507Fd007d584E2D0b7b2C6543f714" - }, - "slippagePercentage": 0, - "startTime": 1774454471973, - "status": { - "srcChain": { - "chainId": 56, - "txHash": "0x7a70773dc941559868672c196ba1ec4ac1708b01e58128ec1efc38158339036d" - }, - "status": "FAILED" - }, - "txMetaId": "d8ca3580-2863-11f1-9b9d-5fbe36423c6b" - }, - "de3cf410-2874-11f1-95af-e7b839e2ab11": { - "account": "0xf25bd11c334507fd007d584e2d0b7b2c6543f714", - "batchId": "0x2cb2d57550b34787803c29c1938a97d1", - "estimatedProcessingTimeInSeconds": 0, - "hasApprovalTx": false, - "isStxEnabled": false, - "location": "Main View", - "originalTransactionId": "de3cf410-2874-11f1-95af-e7b839e2ab11", - "pricingData": { - "amountSent": "0.002889356511414607", - "amountSentInUsd": "1.863551878239182632684286844", - "quotedGasAmount": "0.0000098024", - "quotedGasInUsd": "0.0063222661720994208", - "quotedReturnInUsd": "1.83360803873434604116295190643233560558160432" - }, - "quote": { - "aggregator": "uniswap", - "aggregatorType": "AGG", - "bridgeId": "uniswap", - "bridges": ["uniswap"], - "destAsset": { - "address": "0x55d398326f99059ff775485246999027b3197955", - "aggregators": [ - "pancakeExtended", - "oneInch", - "liFi", - "trustWallet", - "socket", - "rubic", - "squid", - "rango", - "sonarwatch", - "sushiSwap" - ], - "assetId": "eip155:56/erc20:0x55d398326f99059ff775485246999027b3197955", - "chainId": 56, - "coingeckoId": "binance-bridged-usdt-bnb-smart-chain", - "decimals": 18, - "iconUrl": "https://static.cx.metamask.io/api/v2/tokenIcons/assets/eip155/56/erc20/0x55d398326f99059ff775485246999027b3197955.png", - "metadata": { - "storage": { - "approval": 2, - "balance": 1 - } - }, - "name": "Tether USD", - "occurrences": 11, - "symbol": "USDT" - }, - "destChainId": 56, - "destTokenAmount": "1834162835503410451", - "destWalletAddress": "0xF25bd11C334507Fd007d584E2D0b7b2C6543f714", - "feeData": { - "metabridge": { - "amount": "25281869474877", - "asset": { - "address": "0x0000000000000000000000000000000000000000", - "aggregators": [], - "assetId": "eip155:56/slip44:714", - "chainId": 56, - "coingeckoId": "binancecoin", - "decimals": 18, - "iconUrl": "https://static.cx.metamask.io/api/v2/tokenIcons/assets/eip155/56/slip44/714.png", - "metadata": {}, - "name": "Binance Coin", - "occurrences": 100, - "symbol": "BNB" - }, - "baseBpsFee": 87.5, - "quoteBpsFee": 87.5 - }, - "txFee": { - "amount": "22029480000000", - "asset": { - "address": "0x0000000000000000000000000000000000000000", - "aggregators": [], - "assetId": "eip155:56/slip44:714", - "chainId": 56, - "coingeckoId": "binancecoin", - "decimals": 18, - "iconUrl": "https://static.cx.metamask.io/api/v2/tokenIcons/assets/eip155/56/slip44/714.png", - "metadata": {}, - "name": "Binance Coin", - "occurrences": 100, - "symbol": "BNB" - }, - "maxFeePerGas": "60000000", - "maxPriorityFeePerGas": "60000000" - } - }, - "gasIncluded": true, - "gasIncluded7702": false, - "gasSponsored": false, - "minDestTokenAmount": "1797479578793342241", - "priceData": { - "priceImpact": "0.008859210670953993", - "totalFeeAmountUsd": "0.016312620641274887", - "totalFromAmountUsd": "1.8642995018600468", - "totalToAmountUsd": "1.8336951239803572" - }, - "protocols": ["uniswap"], - "requestId": "0x30104f5e171909842f2f632845c62a6349688e36511ace326af33326552f0fd8", - "slippage": 2, - "srcAsset": { - "address": "0x0000000000000000000000000000000000000000", - "aggregators": [], - "assetId": "eip155:56/slip44:714", - "chainId": 56, - "coingeckoId": "binancecoin", - "decimals": 18, - "iconUrl": "https://static.cx.metamask.io/api/v2/tokenIcons/assets/eip155/56/slip44/714.png", - "metadata": {}, - "name": "Binance Coin", - "occurrences": 100, - "symbol": "BNB" - }, - "srcChainId": 56, - "srcTokenAmount": "2842045161939730", - "steps": [], - "walletAddress": "0xF25bd11C334507Fd007d584E2D0b7b2C6543f714" - }, - "slippagePercentage": 0, - "startTime": 1774461783250, - "status": { - "srcChain": { - "chainId": 56, - "txHash": "0x34ec65c3f1b7de51ffc9444b1b631b4a6d049a1defe61d9c1575df3e5b4b80d2" - }, - "status": "FAILED" - }, - "txMetaId": "de3cf410-2874-11f1-95af-e7b839e2ab11" - }, - "df0b9d70-286e-11f1-9e6e-5fbe36423c6b": { - "account": "0xf25bd11c334507fd007d584e2d0b7b2c6543f714", - "batchId": "0x72a665306d794e0f891fe8fc136f2b26", - "estimatedProcessingTimeInSeconds": 0, - "hasApprovalTx": false, - "isStxEnabled": false, - "location": "Main View", - "originalTransactionId": "df0b9d70-286e-11f1-9e6e-5fbe36423c6b", - "pricingData": { - "amountSent": "0.003001550052279377", - "amountSentInUsd": "1.940686485716041308024353218", - "quotedGasAmount": "0.0000097508", - "quotedGasInUsd": "0.0063044911646732872", - "quotedReturnInUsd": "1.9080651113059670006769649941137150512731291" - }, - "quote": { - "aggregator": "uniswap", - "aggregatorType": "AGG", - "bridgeId": "uniswap", - "bridges": ["uniswap"], - "destAsset": { - "address": "0x55d398326f99059ff775485246999027b3197955", - "aggregators": [ - "pancakeExtended", - "oneInch", - "liFi", - "trustWallet", - "socket", - "squid", - "rango", - "sonarwatch", - "sushiSwap" - ], - "assetId": "eip155:56/erc20:0x55d398326f99059ff775485246999027b3197955", - "chainId": 56, - "coingeckoId": "binance-bridged-usdt-bnb-smart-chain", - "decimals": 18, - "iconUrl": "https://static.cx.metamask.io/api/v2/tokenIcons/assets/eip155/56/erc20/0x55d398326f99059ff775485246999027b3197955.png", - "metadata": { - "storage": { - "approval": 2, - "balance": 1 - } - }, - "name": "Tether USD", - "occurrences": 9, - "symbol": "USDT" - }, - "destChainId": 56, - "destTokenAmount": "1908430110972671985", - "destWalletAddress": "0xF25bd11C334507Fd007d584E2D0b7b2C6543f714", - "feeData": { - "metabridge": { - "amount": "26263562957444", - "asset": { - "address": "0x0000000000000000000000000000000000000000", - "aggregators": [], - "assetId": "eip155:56/slip44:714", - "chainId": 56, - "coingeckoId": "binancecoin", - "decimals": 18, - "iconUrl": "https://static.cx.metamask.io/api/v2/tokenIcons/assets/eip155/56/slip44/714.png", - "metadata": {}, - "name": "Binance Coin", - "occurrences": 100, - "symbol": "BNB" - }, - "baseBpsFee": 87.5, - "quoteBpsFee": 87.5 - }, - "txFee": { - "amount": "21934080000000", - "asset": { - "address": "0x0000000000000000000000000000000000000000", - "aggregators": [], - "assetId": "eip155:56/slip44:714", - "chainId": 56, - "coingeckoId": "binancecoin", - "decimals": 18, - "iconUrl": "https://static.cx.metamask.io/api/v2/tokenIcons/assets/eip155/56/slip44/714.png", - "metadata": {}, - "name": "Binance Coin", - "occurrences": 100, - "symbol": "BNB" - }, - "maxFeePerGas": "60000000", - "maxPriorityFeePerGas": "60000000" - } - }, - "gasIncluded": true, - "gasIncluded7702": false, - "gasSponsored": false, - "minDestTokenAmount": "1870261508753218545", - "priceData": { - "priceImpact": "0.009915122623429059", - "totalFeeAmountUsd": "0.016988585699022653", - "totalFromAmountUsd": "1.941552651316915", - "totalToAmountUsd": "1.9082545354024625" - }, - "protocols": ["uniswap"], - "requestId": "0x5e680b6e820f996b9ba468955c32ed533cc04dbb4159aed45f2f065e53894611", - "slippage": 2, - "srcAsset": { - "address": "0x0000000000000000000000000000000000000000", - "aggregators": [], - "assetId": "eip155:56/slip44:714", - "chainId": 56, - "coingeckoId": "binancecoin", - "decimals": 18, - "iconUrl": "https://static.cx.metamask.io/api/v2/tokenIcons/assets/eip155/56/slip44/714.png", - "metadata": {}, - "name": "Binance Coin", - "occurrences": 100, - "symbol": "BNB" - }, - "srcChainId": 56, - "srcTokenAmount": "2953352409321933", - "steps": [], - "walletAddress": "0xF25bd11C334507Fd007d584E2D0b7b2C6543f714" - }, - "slippagePercentage": 0, - "startTime": 1774459207614, - "status": { - "srcChain": { - "chainId": 56, - "txHash": "0x9da386baa9c339da273e9e3213ddbc2936051a35cbde69608b11eedd2e74894a" - }, - "status": "FAILED" - }, - "txMetaId": "df0b9d70-286e-11f1-9e6e-5fbe36423c6b" - }, - "dfd490a0-11a2-11f1-8267-5506d3c59a0d": { - "account": "0x30e8ccad5a980bdf30447f8c2c48e70989d9d294", - "batchId": "0xa03fb0377a5c4c639e8b9d5010c9388e", - "estimatedProcessingTimeInSeconds": 0, - "hasApprovalTx": false, - "isStxEnabled": true, - "pricingData": { - "amountSent": "3", - "amountSentInUsd": "2.9933293413", - "quotedGasAmount": "0.060310699720813972", - "quotedGasInUsd": "0.006603780376630246678112", - "quotedReturnInUsd": "2.96131913385171809464216" - }, - "quote": { - "aggregator": "0x", - "aggregatorType": "AGG", - "bridgeId": "0x", - "bridges": ["0x"], - "destAsset": { - "address": "0x0000000000000000000000000000000000000000", - "aggregators": [], - "assetId": "eip155:137/slip44:966", - "chainId": 137, - "coingeckoId": "matic-network", - "decimals": 18, - "iconUrl": "https://static.cx.metamask.io/api/v2/tokenIcons/assets/eip155/137/slip44/966.png", - "metadata": {}, - "name": "Polygon Ecosystem Token", - "occurrences": 100, - "symbol": "POL" - }, - "destChainId": 137, - "destTokenAmount": "27044998299953588210", - "destWalletAddress": "0x30E8ccaD5A980BDF30447f8c2C48e70989D9d294", - "feeData": { - "metabridge": { - "amount": "238732645775126251", - "asset": { - "address": "0x0000000000000000000000000000000000000000", - "aggregators": [], - "assetId": "eip155:137/slip44:966", - "chainId": 137, - "coingeckoId": "matic-network", - "decimals": 18, - "iconUrl": "https://static.cx.metamask.io/api/v2/tokenIcons/assets/eip155/137/slip44/966.png", - "metadata": {}, - "name": "Polygon Ecosystem Token", - "occurrences": 100, - "symbol": "POL" - }, - "baseBpsFee": 87.5, - "quoteBpsFee": 87.5 - } - }, - "gasIncluded7702": false, - "gasSponsored": false, - "minDestTokenAmount": "26504098333954516445", - "priceData": { - "priceImpact": "0.00036431891328656283", - "totalFeeAmountUsd": "0.026146476830583378", - "totalFromAmountUsd": "2.9892578238", - "totalToAmountUsd": "2.9620223038075166" - }, - "protocols": ["0x"], - "requestId": "0xb66df51e96d8f7eb904c8eab728d61a8557c6353b2e0c1cf5dcf8f1cf4a61a64", - "slippage": 2, - "srcAsset": { - "address": "0xc2132d05d31c914a87c6611c10748aeb04b58e8f", - "aggregators": [ - "quickswap", - "oneInch", - "liFi", - "socket", - "squid", - "rango", - "sonarwatch", - "sushiSwap" - ], - "assetId": "eip155:137/erc20:0xc2132d05d31c914a87c6611c10748aeb04b58e8f", - "chainId": 137, - "coingeckoId": "polygon-bridged-usdt-polygon", - "decimals": 6, - "iconUrl": "https://static.cx.metamask.io/api/v2/tokenIcons/assets/eip155/137/erc20/0xc2132d05d31c914a87c6611c10748aeb04b58e8f.png", - "metadata": { - "storage": { - "approval": 1, - "balance": 0 - } - }, - "name": "Tether USD", - "occurrences": 11, - "symbol": "USDT" - }, - "srcChainId": 137, - "srcTokenAmount": "3000000", - "steps": [], - "walletAddress": "0x30E8ccaD5A980BDF30447f8c2C48e70989D9d294" - }, - "slippagePercentage": 0, - "startTime": 1771952666244, - "status": { - "srcChain": { - "chainId": 137 - }, - "status": "PENDING" - }, - "txMetaId": "dfd490a0-11a2-11f1-8267-5506d3c59a0d" - }, - "e14a8c80-17fd-11f1-b7d6-03d70bc40886": { - "account": "0x30e8ccad5a980bdf30447f8c2c48e70989d9d294", - "batchId": "0x94a1487defff4c45ac38febcd4e58644", - "estimatedProcessingTimeInSeconds": 0, - "hasApprovalTx": false, - "isStxEnabled": true, - "pricingData": { - "amountSent": "0.00172687906463482", - "amountSentInUsd": "3.7465969577989113182733903", - "quotedGasAmount": "0.000564283160138584", - "quotedGasInUsd": "1.22425571912266387892304036", - "quotedReturnInUsd": "2.2152523280644848988141205824935" - }, - "quote": { - "aggregator": "uniswap", - "aggregatorType": "AGG", - "bridgeId": "uniswap", - "bridges": ["uniswap"], - "destAsset": { - "address": "0xaca92e438df0b2401ff60da7e4337b687a2435da", - "aggregators": ["metamask", "liFi", "socket", "rango"], - "assetId": "eip155:1/erc20:0xaca92e438df0b2401ff60da7e4337b687a2435da", - "chainId": 1, - "decimals": 6, - "iconUrl": "https://static.cx.metamask.io/api/v2/tokenIcons/assets/eip155/1/erc20/0xaca92e438df0b2401ff60da7e4337b687a2435da.png", - "metadata": {}, - "name": "MetaMask USD", - "occurrences": 4, - "symbol": "MUSD" - }, - "destChainId": 1, - "destTokenAmount": "2206180", - "destWalletAddress": "0x30E8ccaD5A980BDF30447f8c2C48e70989D9d294", - "feeData": { - "metabridge": { - "amount": "0", - "asset": { - "address": "0x0000000000000000000000000000000000000000", - "aggregators": [], - "assetId": "eip155:1/slip44:60", - "chainId": 1, - "coingeckoId": "ethereum", - "decimals": 18, - "iconUrl": "https://static.cx.metamask.io/api/v2/tokenIcons/assets/eip155/1/slip44/60.png", - "metadata": {}, - "name": "Ether", - "occurrences": 100, - "symbol": "ETH" - }, - "baseBpsFee": 87.5, - "quoteBpsFee": 0 - }, - "txFee": { - "amount": "712225278444266", - "asset": { - "address": "0x0000000000000000000000000000000000000000", - "aggregators": [], - "assetId": "eip155:1/slip44:60", - "chainId": 1, - "coingeckoId": "ethereum", - "decimals": 18, - "iconUrl": "https://static.cx.metamask.io/api/v2/tokenIcons/assets/eip155/1/slip44/60.png", - "metadata": {}, - "name": "Ether", - "occurrences": 100, - "symbol": "ETH" - }, - "maxFeePerGas": "2509212904", - "maxPriorityFeePerGas": "2100000001" - } - }, - "gasIncluded": true, - "gasIncluded7702": false, - "minDestTokenAmount": "2162056", - "priceData": { - "priceImpact": "-0.006149402871557486", - "totalFeeAmountUsd": "0", - "totalFromAmountUsd": "3.735567523827396", - "totalToAmountUsd": "2.2083861799999998" - }, - "protocols": ["uniswap"], - "requestId": "0x0ea7de8192f12f5a16173a330c3780df50828e62886715e6b24e4af630677201", - "srcAsset": { - "address": "0x0000000000000000000000000000000000000000", - "aggregators": [], - "assetId": "eip155:1/slip44:60", - "chainId": 1, - "coingeckoId": "ethereum", - "decimals": 18, - "iconUrl": "https://static.cx.metamask.io/api/v2/tokenIcons/assets/eip155/1/slip44/60.png", - "metadata": {}, - "name": "Ether", - "occurrences": 100, - "symbol": "ETH" - }, - "srcChainId": 1, - "srcTokenAmount": "1014653786190554", - "steps": [], - "walletAddress": "0x30E8ccaD5A980BDF30447f8c2C48e70989D9d294" - }, - "slippagePercentage": 0, - "startTime": 1772651459906, - "status": { - "srcChain": { - "chainId": 1 - }, - "status": "PENDING" - }, - "txMetaId": "e14a8c80-17fd-11f1-b7d6-03d70bc40886" - }, - "e63e71a0-2876-11f1-8069-cdbe50267c7d": { - "account": "0xf25bd11c334507fd007d584e2d0b7b2c6543f714", - "batchId": "0xc9f8f72ae1ad458583afee65b5c787de", - "estimatedProcessingTimeInSeconds": 0, - "hasApprovalTx": true, - "isStxEnabled": false, - "location": "Main View", - "originalTransactionId": "e63e71a0-2876-11f1-8069-cdbe50267c7d", - "pricingData": { - "amountSent": "1.832278383661792682", - "amountSentInUsd": "1.83200720646091554110514336308106604979611296", - "quotedGasAmount": "0.0000120878", - "quotedGasInUsd": "0.0077949645910742768", - "quotedReturnInUsd": "1.786815960551201052904761648" - }, - "quote": { - "aggregator": "uniswap", - "aggregatorType": "AGG", - "bridgeId": "uniswap", - "bridges": ["uniswap"], - "destAsset": { - "address": "0x0000000000000000000000000000000000000000", - "aggregators": [], - "assetId": "eip155:56/slip44:714", - "chainId": 56, - "coingeckoId": "binancecoin", - "decimals": 18, - "iconUrl": "https://static.cx.metamask.io/api/v2/tokenIcons/assets/eip155/56/slip44/714.png", - "metadata": {}, - "name": "Binance Coin", - "occurrences": 100, - "symbol": "BNB" - }, - "destChainId": 56, - "destTokenAmount": "2770849529282358", - "destWalletAddress": "0xF25bd11C334507Fd007d584E2D0b7b2C6543f714", - "feeData": { - "metabridge": { - "amount": "24832961040323", - "asset": { - "address": "0x0000000000000000000000000000000000000000", - "aggregators": [], - "assetId": "eip155:56/slip44:714", - "chainId": 56, - "coingeckoId": "binancecoin", - "decimals": 18, - "iconUrl": "https://static.cx.metamask.io/api/v2/tokenIcons/assets/eip155/56/slip44/714.png", - "metadata": {}, - "name": "Binance Coin", - "occurrences": 100, - "symbol": "BNB" - }, - "baseBpsFee": 87.5, - "quoteBpsFee": 87.5 - }, - "txFee": { - "amount": "42370200000000", - "asset": { - "address": "0x0000000000000000000000000000000000000000", - "aggregators": [], - "assetId": "eip155:56/slip44:714", - "chainId": 56, - "coingeckoId": "binancecoin", - "decimals": 18, - "iconUrl": "https://static.cx.metamask.io/api/v2/tokenIcons/assets/eip155/56/slip44/714.png", - "metadata": {}, - "name": "Binance Coin", - "occurrences": 100, - "symbol": "BNB" - }, - "maxFeePerGas": "60000000", - "maxPriorityFeePerGas": "60000000" - } - }, - "gasIncluded": true, - "gasIncluded7702": true, - "gasSponsored": false, - "minDestTokenAmount": "2715432538696710", - "priceData": { - "priceImpact": "0.0006592749507166865", - "totalFeeAmountUsd": "0.016019494837501966", - "totalFromAmountUsd": "1.8320072064610107", - "totalToAmountUsd": "1.7874473228447565" - }, - "protocols": ["uniswap"], - "requestId": "0xc26b129a048b2a82cfa9a6a759be9a5b01607067937fe1165a9763ed332590b9", - "slippage": 2, - "srcAsset": { - "address": "0x55d398326f99059ff775485246999027b3197955", - "aggregators": [ - "pancakeExtended", - "oneInch", - "liFi", - "trustWallet", - "socket", - "rubic", - "squid", - "rango", - "sonarwatch", - "sushiSwap" - ], - "assetId": "eip155:56/erc20:0x55d398326f99059ff775485246999027b3197955", - "chainId": 56, - "coingeckoId": "binance-bridged-usdt-bnb-smart-chain", - "decimals": 18, - "iconUrl": "https://static.cx.metamask.io/api/v2/tokenIcons/assets/eip155/56/erc20/0x55d398326f99059ff775485246999027b3197955.png", - "metadata": { - "storage": { - "approval": 2, - "balance": 1 - } - }, - "name": "Tether USD", - "occurrences": 11, - "symbol": "USDT" - }, - "srcChainId": 56, - "srcTokenAmount": "1832278383661792682", - "steps": [], - "walletAddress": "0xF25bd11C334507Fd007d584E2D0b7b2C6543f714" - }, - "slippagePercentage": 0, - "startTime": 1774462655791, - "status": { - "srcChain": { - "chainId": 56, - "txHash": "0x475cf33f7732388be3cc3019e5c4006e90f1f5fe0217fdeefab9eb4572985891" - }, - "status": "PENDING" - }, - "txMetaId": "e63e71a0-2876-11f1-8069-cdbe50267c7d" - }, - "e6c1d2b0-27d7-11f1-bdeb-7be08aed0cd0": { - "account": "0xf25bd11c334507fd007d584e2d0b7b2c6543f714", - "batchId": "0x0e54d3a1ca7343eb8d8e678fd43e428b", - "estimatedProcessingTimeInSeconds": 0, - "hasApprovalTx": true, - "isStxEnabled": false, - "location": "Main View", - "originalTransactionId": "e6c1d2b0-27d7-11f1-bdeb-7be08aed0cd0", - "pricingData": { - "amountSent": "2.039361017564255159", - "amountSentInUsd": "2.03863296568069230291274410420695021058666176", - "quotedGasAmount": "0.00001351625", - "quotedGasInUsd": "0.00859203789044392", - "quotedReturnInUsd": "1.983700309244898781181587904" - }, - "quote": { - "aggregator": "0x", - "aggregatorType": "AGG", - "bridgeId": "0x", - "bridges": ["0x"], - "destAsset": { - "address": "0x0000000000000000000000000000000000000000", - "aggregators": [], - "assetId": "eip155:56/slip44:714", - "chainId": 56, - "coingeckoId": "binancecoin", - "decimals": 18, - "iconUrl": "https://static.cx.metamask.io/api/v2/tokenIcons/assets/eip155/56/slip44/714.png", - "metadata": {}, - "name": "Binance Coin", - "occurrences": 100, - "symbol": "BNB" - }, - "destChainId": 56, - "destTokenAmount": "3120585552195007", - "destWalletAddress": "0xF25bd11C334507Fd007d584E2D0b7b2C6543f714", - "feeData": { - "metabridge": { - "amount": "27959275431733", - "asset": { - "address": "0x0000000000000000000000000000000000000000", - "aggregators": [], - "assetId": "eip155:56/slip44:714", - "chainId": 56, - "coingeckoId": "binancecoin", - "decimals": 18, - "iconUrl": "https://static.cx.metamask.io/api/v2/tokenIcons/assets/eip155/56/slip44/714.png", - "metadata": {}, - "name": "Binance Coin", - "occurrences": 100, - "symbol": "BNB" - }, - "baseBpsFee": 87.5, - "quoteBpsFee": 87.5 - }, - "txFee": { - "amount": "46800936000000", - "asset": { - "address": "0x0000000000000000000000000000000000000000", - "aggregators": [], - "assetId": "eip155:56/slip44:714", - "chainId": 56, - "coingeckoId": "binancecoin", - "decimals": 18, - "iconUrl": "https://static.cx.metamask.io/api/v2/tokenIcons/assets/eip155/56/slip44/714.png", - "metadata": {}, - "name": "Binance Coin", - "occurrences": 100, - "symbol": "BNB" - }, - "maxFeePerGas": "60000000", - "maxPriorityFeePerGas": "60000000" - } - }, - "gasIncluded": true, - "gasIncluded7702": true, - "gasSponsored": false, - "minDestTokenAmount": "3058173841151106", - "priceData": { - "priceImpact": "0.000678499140981344", - "totalFeeAmountUsd": "0.017825436051501373", - "totalFromAmountUsd": "2.038575863572487", - "totalToAmountUsd": "1.9895293188019267" - }, - "protocols": ["0x"], - "requestId": "0xa58f8717a12398ed2d5f6e92fd6109f8da9c4a028ffdb81f42ddc667706d5a18", - "slippage": 2, - "srcAsset": { - "address": "0x55d398326f99059ff775485246999027b3197955", - "aggregators": [ - "pancakeExtended", - "oneInch", - "liFi", - "trustWallet", - "socket", - "squid", - "rango", - "sonarwatch", - "sushiSwap" - ], - "assetId": "eip155:56/erc20:0x55d398326f99059ff775485246999027b3197955", - "chainId": 56, - "coingeckoId": "binance-bridged-usdt-bnb-smart-chain", - "decimals": 18, - "iconUrl": "https://static.cx.metamask.io/api/v2/tokenIcons/assets/eip155/56/erc20/0x55d398326f99059ff775485246999027b3197955.png", - "metadata": { - "storage": { - "approval": 2, - "balance": 1 - } - }, - "name": "Tether USD", - "occurrences": 9, - "symbol": "USDT" - }, - "srcChainId": 56, - "srcTokenAmount": "2039361017564255159", - "steps": [], - "walletAddress": "0xF25bd11C334507Fd007d584E2D0b7b2C6543f714" - }, - "slippagePercentage": 0, - "startTime": 1774394366627, - "status": { - "srcChain": { - "chainId": 56, - "txHash": "0x341267b0b5bdf509aec75134feddecea8c05bd1625c315841836ddcd3a334290" - }, - "status": "PENDING" - }, - "txMetaId": "e6c1d2b0-27d7-11f1-bdeb-7be08aed0cd0" - }, - "ebc8c980-4fdc-11f1-b40a-151a477935d3": { - "account": "0x141d32a89a1e0a5ef360034a2f60a4b917c18838", - "batchId": "0x37313779af02408989f137e6541596ed", - "completionTime": 1778794575486, - "estimatedProcessingTimeInSeconds": 2, - "hasApprovalTx": false, - "isAtomicBatch": true, - "isStxEnabled": true, - "location": null, - "originalTransactionId": "ebc8c980-4fdc-11f1-b40a-151a477935d3", - "pricingData": { - "amountSent": "0.005", - "amountSentInUsd": "11.47926404241", - "quotedGasAmount": "0.000005085891342", - "quotedGasInUsd": "0.011676457921164987962844", - "quotedReturnInUsd": "11.349071196706531579438305997834271836434875" - }, - "quote": { - "aggregator": "relay", - "bridgeId": "relay", - "bridges": ["Relay"], - "destAsset": { - "address": "0x55d398326f99059ff775485246999027b3197955", - "aggregators": [ - "pancakeExtended", - "oneInch", - "liFi", - "trustWallet", - "socket", - "rubic", - "squid", - "rango", - "sonarwatch", - "sushiSwap" - ], - "assetId": "eip155:56/erc20:0x55d398326f99059ff775485246999027b3197955", - "chainId": 56, - "coingeckoId": "binance-bridged-usdt-bnb-smart-chain", - "decimals": 18, - "iconUrl": "https://static.cx.metamask.io/api/v2/tokenIcons/assets/eip155/56/erc20/0x55d398326f99059ff775485246999027b3197955.png", - "metadata": { - "storage": { - "approval": 2, - "balance": 1 - } - }, - "name": "Tether USD", - "occurrences": 11, - "symbol": "USDT" - }, - "destChainId": 56, - "destTokenAmount": "11349139291537698497", - "feeData": { - "metabridge": { - "amount": "43750000000000", - "asset": { - "address": "0x0000000000000000000000000000000000000000", - "aggregators": [], - "assetId": "eip155:42161/slip44:60", - "chainId": 42161, - "coingeckoId": "ethereum", - "decimals": 18, - "iconUrl": "https://static.cx.metamask.io/api/v2/tokenIcons/assets/eip155/42161/slip44/60.png", - "metadata": {}, - "name": "Ether", - "occurrences": 100, - "symbol": "ETH" - }, - "baseBpsFee": 87.5, - "quoteBpsFee": 87.5, - "usd": "0.10034675" - } - }, - "gasIncluded": false, - "gasIncluded7702": false, - "gasSponsored": false, - "minDestTokenAmount": "11122156505706944528", - "priceData": { - "priceImpact": "0.0016522075791267161", - "totalFeeAmountUsd": "0.10034675", - "totalFromAmountUsd": "11.4682", - "totalToAmountUsd": "11.34907119670195" - }, - "protocols": ["Relay"], - "requestId": "0x9e8ac67f7d4b40ab3f947fed4d5be2bcb7e1b9f06fa3720b63f4e964d8a5d01c", - "slippage": 2, - "srcAsset": { - "address": "0x0000000000000000000000000000000000000000", - "aggregators": [], - "assetId": "eip155:42161/slip44:60", - "chainId": 42161, - "coingeckoId": "ethereum", - "decimals": 18, - "iconUrl": "https://static.cx.metamask.io/api/v2/tokenIcons/assets/eip155/42161/slip44/60.png", - "metadata": {}, - "name": "Ether", - "occurrences": 100, - "symbol": "ETH" - }, - "srcChainId": 42161, - "srcTokenAmount": "4956250000000000", - "steps": [ - { - "action": "bridge", - "destAmount": "11349139291537698497", - "destAsset": { - "address": "0x55d398326f99059ff775485246999027b3197955", - "aggregators": [ - "pancakeExtended", - "oneInch", - "liFi", - "trustWallet", - "socket", - "rubic", - "squid", - "rango", - "sonarwatch", - "sushiSwap" - ], - "assetId": "eip155:56/erc20:0x55d398326f99059ff775485246999027b3197955", - "chainId": 56, - "coingeckoId": "binance-bridged-usdt-bnb-smart-chain", - "decimals": 18, - "iconUrl": "https://static.cx.metamask.io/api/v2/tokenIcons/assets/eip155/56/erc20/0x55d398326f99059ff775485246999027b3197955.png", - "metadata": { - "storage": { - "approval": 2, - "balance": 1 - } - }, - "name": "Tether USD", - "occurrences": 11, - "symbol": "USDT" - }, - "destChainId": 56, - "protocol": { - "name": "relay" - }, - "srcAmount": "4956250000000000", - "srcAsset": { - "address": "0x0000000000000000000000000000000000000000", - "aggregators": [], - "assetId": "eip155:42161/slip44:60", - "chainId": 42161, - "coingeckoId": "ethereum", - "decimals": 18, - "iconUrl": "https://static.cx.metamask.io/api/v2/tokenIcons/assets/eip155/42161/slip44/60.png", - "metadata": {}, - "name": "Ether", - "occurrences": 100, - "symbol": "ETH" - }, - "srcChainId": 42161 - } - ] - }, - "slippagePercentage": 0, - "startTime": 1778794569035, - "status": { - "bridge": "relay", - "destChain": { - "chainId": 56, - "txHash": "0xd925c3800835a76c30f77a103d27144262c6b498c7e27b926e1534c6f73cff2c" - }, - "isExpectedToken": true, - "isUnrecognizedRouterAddress": false, - "srcChain": { - "chainId": 42161, - "txHash": "0x905c4d1137e0fb354433854d51eaa563ddd4d222010ca6cd12f11b046757224f" - }, - "status": "COMPLETE" - }, - "tokenSecurityTypeDestination": "Verified", - "txMetaId": "ebc8c980-4fdc-11f1-b40a-151a477935d3" - }, - "ed291460-1d69-11f1-9e6f-3b0a0edc0d9a": { - "account": "0x30e8ccad5a980bdf30447f8c2c48e70989d9d294", - "approvalTxId": "ed178830-1d69-11f1-9e6f-3b0a0edc0d9a", - "batchId": "0x9601ddf5f839436fa3d798be34ac8470", - "estimatedProcessingTimeInSeconds": 0, - "hasApprovalTx": true, - "isStxEnabled": true, - "location": "Main View", - "originalTransactionId": "ed291460-1d69-11f1-9e6f-3b0a0edc0d9a", - "pricingData": { - "amountSent": "5.396441517954062591", - "amountSentInUsd": "5.39159328070782060580606134775993265937672552", - "quotedGasAmount": "0.00001195505", - "quotedGasInUsd": "0.0077507505324305612", - "quotedReturnInUsd": "5.325758691766290077014182832" - }, - "quote": { - "aggregator": "uniswap", - "aggregatorType": "AGG", - "bridgeId": "uniswap", - "bridges": ["uniswap"], - "destAsset": { - "address": "0x0000000000000000000000000000000000000000", - "aggregators": [], - "assetId": "eip155:56/slip44:714", - "chainId": 56, - "coingeckoId": "binancecoin", - "decimals": 18, - "iconUrl": "https://static.cx.metamask.io/api/v2/tokenIcons/assets/eip155/56/slip44/714.png", - "metadata": {}, - "name": "Binance Coin", - "occurrences": 100, - "symbol": "BNB" - }, - "destChainId": 56, - "destTokenAmount": "8214651107863018", - "destWalletAddress": "0x30E8ccaD5A980BDF30447f8c2C48e70989D9d294", - "feeData": { - "metabridge": { - "amount": "72741454952914", - "asset": { - "address": "0x0000000000000000000000000000000000000000", - "aggregators": [], - "assetId": "eip155:56/slip44:714", - "chainId": 56, - "coingeckoId": "binancecoin", - "decimals": 18, - "iconUrl": "https://static.cx.metamask.io/api/v2/tokenIcons/assets/eip155/56/slip44/714.png", - "metadata": {}, - "name": "Binance Coin", - "occurrences": 100, - "symbol": "BNB" - }, - "baseBpsFee": 87.5, - "quoteBpsFee": 87.5 - }, - "txFee": { - "amount": "25916574660000", - "asset": { - "address": "0x0000000000000000000000000000000000000000", - "aggregators": [], - "assetId": "eip155:56/slip44:714", - "chainId": 56, - "coingeckoId": "binancecoin", - "decimals": 18, - "iconUrl": "https://static.cx.metamask.io/api/v2/tokenIcons/assets/eip155/56/slip44/714.png", - "metadata": {}, - "name": "Binance Coin", - "occurrences": 100, - "symbol": "BNB" - }, - "maxFeePerGas": "60000000", - "maxPriorityFeePerGas": "60000000" - } - }, - "gasIncluded": true, - "gasIncluded7702": false, - "gasSponsored": false, - "minDestTokenAmount": "8050358085705757", - "priceData": { - "priceImpact": "0.0035399169178724687", - "totalFeeAmountUsd": "0.04719101890070296", - "totalFromAmountUsd": "5.395545708662083", - "totalToAmountUsd": "5.329254906226134" - }, - "protocols": ["uniswap"], - "requestId": "0xcc4b0b97ff7527815f41537a1a093d7e742cb32a3c39356caac3a9c171eb1a22", - "slippage": 2, - "srcAsset": { - "address": "0x55d398326f99059ff775485246999027b3197955", - "aggregators": [ - "pancakeExtended", - "oneInch", - "liFi", - "socket", - "rubic", - "squid", - "rango", - "sonarwatch", - "sushiSwap" - ], - "assetId": "eip155:56/erc20:0x55d398326f99059ff775485246999027b3197955", - "chainId": 56, - "coingeckoId": "binance-bridged-usdt-bnb-smart-chain", - "decimals": 18, - "iconUrl": "https://static.cx.metamask.io/api/v2/tokenIcons/assets/eip155/56/erc20/0x55d398326f99059ff775485246999027b3197955.png", - "metadata": { - "storage": { - "approval": 2, - "balance": 1 - } - }, - "name": "Tether USD", - "occurrences": 11, - "symbol": "USDT" - }, - "srcChainId": 56, - "srcTokenAmount": "5396441517954062591", - "steps": [], - "walletAddress": "0x30E8ccaD5A980BDF30447f8c2C48e70989D9d294" - }, - "slippagePercentage": 0, - "startTime": 1773247621170, - "status": { - "srcChain": { - "chainId": 56 - }, - "status": "PENDING" - }, - "txMetaId": "ed291460-1d69-11f1-9e6f-3b0a0edc0d9a" - }, - "eeaeb9c0-287c-11f1-a2cb-f9ea9c47170d": { - "account": "0xf25bd11c334507fd007d584e2d0b7b2c6543f714", - "batchId": "0x1da2a55e1acc401aa5c5fa952d8e3aa5", - "estimatedProcessingTimeInSeconds": 0, - "hasApprovalTx": true, - "isStxEnabled": false, - "location": "Main View", - "originalTransactionId": "eeaeb9c0-287c-11f1-a2cb-f9ea9c47170d", - "pricingData": { - "amountSent": "1.41560583828318584", - "amountSentInUsd": "1.415018335718574632446454348845004877617112", - "quotedGasAmount": "0.00001213685", - "quotedGasInUsd": "0.0078197777103288711", - "quotedReturnInUsd": "1.374589434865494740515207002" - }, - "quote": { - "aggregator": "uniswap", - "aggregatorType": "AGG", - "bridgeId": "uniswap", - "bridges": ["uniswap"], - "destAsset": { - "address": "0x0000000000000000000000000000000000000000", - "aggregators": [], - "assetId": "eip155:56/slip44:714", - "chainId": 56, - "coingeckoId": "binancecoin", - "decimals": 18, - "iconUrl": "https://static.cx.metamask.io/api/v2/tokenIcons/assets/eip155/56/slip44/714.png", - "metadata": {}, - "name": "Binance Coin", - "occurrences": 100, - "symbol": "BNB" - }, - "destChainId": 56, - "destTokenAmount": "2133460361732667", - "destWalletAddress": "0xF25bd11C334507Fd007d584E2D0b7b2C6543f714", - "feeData": { - "metabridge": { - "amount": "19194448201725", - "asset": { - "address": "0x0000000000000000000000000000000000000000", - "aggregators": [], - "assetId": "eip155:56/slip44:714", - "chainId": 56, - "coingeckoId": "binancecoin", - "decimals": 18, - "iconUrl": "https://static.cx.metamask.io/api/v2/tokenIcons/assets/eip155/56/slip44/714.png", - "metadata": {}, - "name": "Binance Coin", - "occurrences": 100, - "symbol": "BNB" - }, - "baseBpsFee": 87.5, - "quoteBpsFee": 87.5 - }, - "txFee": { - "amount": "40996413120000", - "asset": { - "address": "0x0000000000000000000000000000000000000000", - "aggregators": [], - "assetId": "eip155:56/slip44:714", - "chainId": 56, - "coingeckoId": "binancecoin", - "decimals": 18, - "iconUrl": "https://static.cx.metamask.io/api/v2/tokenIcons/assets/eip155/56/slip44/714.png", - "metadata": {}, - "name": "Binance Coin", - "occurrences": 100, - "symbol": "BNB" - }, - "maxFeePerGas": "60000000", - "maxPriorityFeePerGas": "60000000" - } - }, - "gasIncluded": true, - "gasIncluded7702": true, - "gasSponsored": false, - "minDestTokenAmount": "2090791154498013", - "priceData": { - "priceImpact": "0.0003861428244228668", - "totalFeeAmountUsd": "0.012376196311508245", - "totalFromAmountUsd": "1.4149688156559583", - "totalToAmountUsd": "1.375612572037989" - }, - "protocols": ["uniswap"], - "requestId": "0xd92164de81ec53b1a11fce5147800cc3073cfc1b34b3e05b154b8658e710ffee", - "slippage": 2, - "srcAsset": { - "address": "0x55d398326f99059ff775485246999027b3197955", - "aggregators": [ - "pancakeExtended", - "oneInch", - "liFi", - "trustWallet", - "socket", - "rubic", - "squid", - "rango", - "sonarwatch", - "sushiSwap" - ], - "assetId": "eip155:56/erc20:0x55d398326f99059ff775485246999027b3197955", - "chainId": 56, - "coingeckoId": "binance-bridged-usdt-bnb-smart-chain", - "decimals": 18, - "iconUrl": "https://static.cx.metamask.io/api/v2/tokenIcons/assets/eip155/56/erc20/0x55d398326f99059ff775485246999027b3197955.png", - "metadata": { - "storage": { - "approval": 2, - "balance": 1 - } - }, - "name": "Tether USD", - "occurrences": 11, - "symbol": "USDT" - }, - "srcChainId": 56, - "srcTokenAmount": "1415605838283185840", - "steps": [], - "walletAddress": "0xF25bd11C334507Fd007d584E2D0b7b2C6543f714" - }, - "slippagePercentage": 0, - "startTime": 1774465246686, - "status": { - "srcChain": { - "chainId": 56, - "txHash": "0xfd3aff4c8cd56f099472ffc6bf15d7b84996caf0fb2aa06cb9e97970e283d80f" - }, - "status": "PENDING" - }, - "txMetaId": "eeaeb9c0-287c-11f1-a2cb-f9ea9c47170d" - }, - "f1b03a20-23bf-11f1-b9e0-05a660861774": { - "account": "0xb3864b298f4fddbbbd2fa5cf1a2a2748932b3b81", - "approvalTxId": "f1a90e30-23bf-11f1-b9e0-05a660861774", - "batchId": "0xa2db3903458a4fc8a4b75b1c716fc868", - "completionTime": 1773944311918, - "estimatedProcessingTimeInSeconds": 2.5, - "hasApprovalTx": true, - "isStxEnabled": true, - "location": "Main View", - "originalTransactionId": "f1b03a20-23bf-11f1-b9e0-05a660861774", - "pricingData": { - "amountSent": "9.337462877627054927", - "amountSentInUsd": "9.33574106502034854895598387851262936986228808", - "quotedGasAmount": "0.0000071351", - "quotedGasInUsd": "0.0045499169666577886", - "quotedReturnInUsd": "9.095895552002798012769878823" - }, - "quote": { - "aggregator": "relay", - "bridgeId": "relay", - "bridges": ["Relay"], - "destAsset": { - "address": "0x0000000000000000000000000000000000000000", - "aggregators": [], - "assetId": "eip155:143/slip44:268435779", - "chainId": 143, - "decimals": 18, - "iconUrl": "https://static.cx.metamask.io/api/v2/tokenIcons/assets/eip155/143/slip44/268435779.png", - "metadata": {}, - "name": "Mon", - "occurrences": 1, - "symbol": "MON" - }, - "destChainId": 143, - "destTokenAmount": "412937511295772840211", - "feeData": { - "metabridge": { - "amount": "81702800179236730", - "asset": { - "address": "0x55d398326f99059ff775485246999027b3197955", - "aggregators": [ - "pancakeExtended", - "oneInch", - "liFi", - "socket", - "rubic", - "squid", - "rango", - "sonarwatch", - "sushiSwap" - ], - "assetId": "eip155:56/erc20:0x55d398326f99059ff775485246999027b3197955", - "chainId": 56, - "coingeckoId": "binance-bridged-usdt-bnb-smart-chain", - "decimals": 18, - "iconUrl": "https://static.cx.metamask.io/api/v2/tokenIcons/assets/eip155/56/erc20/0x55d398326f99059ff775485246999027b3197955.png", - "metadata": { - "storage": { - "approval": 2, - "balance": 1 - } - }, - "name": "Tether USD", - "occurrences": 9, - "symbol": "USDT" - }, - "baseBpsFee": 87.5, - "quoteBpsFee": 87.5 - } - }, - "minDestTokenAmount": "404678761069857383406", - "priceData": { - "priceImpact": "0.01720929304873769", - "totalFeeAmountUsd": "0.08169650906362293", - "totalFromAmountUsd": "9.336743892985476", - "totalToAmountUsd": "9.09577456131199" - }, - "protocols": ["Relay"], - "requestId": "0x618e3473190a363f6d8467b8356ee24460cc02646155ddd3200fd7130dc78656", - "slippage": 2, - "srcAsset": { - "address": "0x55d398326f99059ff775485246999027b3197955", - "aggregators": [ - "pancakeExtended", - "oneInch", - "liFi", - "socket", - "rubic", - "squid", - "rango", - "sonarwatch", - "sushiSwap" - ], - "assetId": "eip155:56/erc20:0x55d398326f99059ff775485246999027b3197955", - "chainId": 56, - "coingeckoId": "binance-bridged-usdt-bnb-smart-chain", - "decimals": 18, - "iconUrl": "https://static.cx.metamask.io/api/v2/tokenIcons/assets/eip155/56/erc20/0x55d398326f99059ff775485246999027b3197955.png", - "metadata": { - "storage": { - "approval": 2, - "balance": 1 - } - }, - "name": "Tether USD", - "occurrences": 9, - "symbol": "USDT" - }, - "srcChainId": 56, - "srcTokenAmount": "9255760077447818197", - "steps": [ - { - "action": "bridge", - "destAmount": "412937511295772840211", - "destAsset": { - "address": "0x0000000000000000000000000000000000000000", - "aggregators": [], - "assetId": "eip155:143/slip44:268435779", - "chainId": 143, - "decimals": 18, - "iconUrl": "https://static.cx.metamask.io/api/v2/tokenIcons/assets/eip155/143/slip44/268435779.png", - "metadata": {}, - "name": "Mon", - "occurrences": 1, - "symbol": "MON" - }, - "destChainId": 143, - "protocol": { - "name": "relay" - }, - "srcAmount": "9255760077447818197", - "srcAsset": { - "address": "0x55d398326f99059ff775485246999027b3197955", - "aggregators": [ - "pancakeExtended", - "oneInch", - "liFi", - "socket", - "rubic", - "squid", - "rango", - "sonarwatch", - "sushiSwap" - ], - "assetId": "eip155:56/erc20:0x55d398326f99059ff775485246999027b3197955", - "chainId": 56, - "coingeckoId": "binance-bridged-usdt-bnb-smart-chain", - "decimals": 18, - "iconUrl": "https://static.cx.metamask.io/api/v2/tokenIcons/assets/eip155/56/erc20/0x55d398326f99059ff775485246999027b3197955.png", - "metadata": { - "storage": { - "approval": 2, - "balance": 1 - } - }, - "name": "Tether USD", - "occurrences": 9, - "symbol": "USDT" - }, - "srcChainId": 56 - } - ] - }, - "slippagePercentage": 0, - "startTime": 1773944272398, - "status": { - "bridge": "relay", - "destChain": { - "chainId": 143, - "txHash": "0x7f209612491bca6ed35fdf038952485801f5772412abb54ef9d9e1aa1c9cd97e" - }, - "isExpectedToken": true, - "isUnrecognizedRouterAddress": false, - "srcChain": { - "chainId": 56, - "txHash": "0xbb68e59f33b8bcaac64a0f718e3d621e5bf6e311f69970905cf16f187121a98c" - }, - "status": "COMPLETE" - }, - "txMetaId": "f1b03a20-23bf-11f1-b9e0-05a660861774" - }, - "f1fa8200-287f-11f1-927e-9d8a4fbc2cec": { - "account": "0xf25bd11c334507fd007d584e2d0b7b2c6543f714", - "batchId": "0x09d9669901a64be0b0274c556d7399cc", - "estimatedProcessingTimeInSeconds": 0, - "hasApprovalTx": false, - "isStxEnabled": true, - "location": "Main View", - "originalTransactionId": "f1fa8200-287f-11f1-927e-9d8a4fbc2cec", - "pricingData": { - "amountSent": "0.001950721614518098", - "amountSentInUsd": "1.26047761242164057491098084", - "quotedGasAmount": "0.0000125086", - "quotedGasInUsd": "0.008082552705313788", - "quotedReturnInUsd": "1.231000212630644003026023768790886639043072" - }, - "quote": { - "aggregator": "1inch", - "aggregatorType": "AGG", - "bridgeId": "1inch", - "bridges": ["1inch"], - "destAsset": { - "address": "0x55d398326f99059ff775485246999027b3197955", - "aggregators": [ - "pancakeExtended", - "oneInch", - "liFi", - "trustWallet", - "socket", - "rubic", - "squid", - "rango", - "sonarwatch", - "sushiSwap" - ], - "assetId": "eip155:56/erc20:0x55d398326f99059ff775485246999027b3197955", - "chainId": 56, - "coingeckoId": "binance-bridged-usdt-bnb-smart-chain", - "decimals": 18, - "iconUrl": "https://static.cx.metamask.io/api/v2/tokenIcons/assets/eip155/56/erc20/0x55d398326f99059ff775485246999027b3197955.png", - "metadata": { - "storage": { - "approval": 2, - "balance": 1 - } - }, - "name": "Tether USD", - "occurrences": 11, - "symbol": "USDT" - }, - "destChainId": 56, - "destTokenAmount": "1231473098299450880", - "destWalletAddress": "0xF25bd11C334507Fd007d584E2D0b7b2C6543f714", - "feeData": { - "metabridge": { - "amount": "17068814127033", - "asset": { - "address": "0x0000000000000000000000000000000000000000", - "aggregators": [], - "assetId": "eip155:56/slip44:714", - "chainId": 56, - "coingeckoId": "binancecoin", - "decimals": 18, - "iconUrl": "https://static.cx.metamask.io/api/v2/tokenIcons/assets/eip155/56/slip44/714.png", - "metadata": {}, - "name": "Binance Coin", - "occurrences": 100, - "symbol": "BNB" - }, - "baseBpsFee": 87.5, - "quoteBpsFee": 87.5 - }, - "txFee": { - "amount": "28801260000000", - "asset": { - "address": "0x0000000000000000000000000000000000000000", - "aggregators": [], - "assetId": "eip155:56/slip44:714", - "chainId": 56, - "coingeckoId": "binancecoin", - "decimals": 18, - "iconUrl": "https://static.cx.metamask.io/api/v2/tokenIcons/assets/eip155/56/slip44/714.png", - "metadata": {}, - "name": "Binance Coin", - "occurrences": 100, - "symbol": "BNB" - }, - "maxFeePerGas": "60000000", - "maxPriorityFeePerGas": "60000000" - } - }, - "gasIncluded": true, - "gasIncluded7702": false, - "gasSponsored": false, - "minDestTokenAmount": "1206843636333461862", - "priceData": { - "priceImpact": "0.008935259498243572", - "totalFeeAmountUsd": "0.011031233194018887", - "totalFromAmountUsd": "1.2607123650307563", - "totalToAmountUsd": "1.2310002126297037" - }, - "protocols": ["1inch"], - "requestId": "0xc971fd8a91725f32a0ad11c9f99179a25ab129462d2c61f1644a48019305d8f3", - "slippage": 2, - "srcAsset": { - "address": "0x0000000000000000000000000000000000000000", - "aggregators": [], - "assetId": "eip155:56/slip44:714", - "chainId": 56, - "coingeckoId": "binancecoin", - "decimals": 18, - "iconUrl": "https://static.cx.metamask.io/api/v2/tokenIcons/assets/eip155/56/slip44/714.png", - "metadata": {}, - "name": "Binance Coin", - "occurrences": 100, - "symbol": "BNB" - }, - "srcChainId": 56, - "srcTokenAmount": "1904851540391065", - "steps": [], - "walletAddress": "0xF25bd11C334507Fd007d584E2D0b7b2C6543f714" - }, - "slippagePercentage": 0, - "startTime": 1774466540954, - "status": { - "srcChain": { - "chainId": 56, - "txHash": "0x8b359d3aa549a98972a79d2f82f738ed742f368ba295011dda4afa8b012f8ca0" - }, - "status": "FAILED" - }, - "txMetaId": "f1fa8200-287f-11f1-927e-9d8a4fbc2cec" - }, - "f201c410-2876-11f1-8091-cdbe50267c7d": { - "account": "0xf25bd11c334507fd007d584e2d0b7b2c6543f714", - "batchId": "0xd8a0b454f904444da5f4015219056c52", - "estimatedProcessingTimeInSeconds": 0, - "hasApprovalTx": false, - "isStxEnabled": false, - "location": "Main View", - "originalTransactionId": "f201c410-2876-11f1-8091-cdbe50267c7d", - "pricingData": { - "amountSent": "0.002781115349282358", - "amountSentInUsd": "1.793435999218149722824761648", - "quotedGasAmount": "0.0000097993", - "quotedGasInUsd": "0.0063191975808099208", - "quotedReturnInUsd": "1.76479746070635512422167924287594238924040992" - }, - "quote": { - "aggregator": "uniswap", - "aggregatorType": "AGG", - "bridgeId": "uniswap", - "bridges": ["uniswap"], - "destAsset": { - "address": "0x55d398326f99059ff775485246999027b3197955", - "aggregators": [ - "pancakeExtended", - "oneInch", - "liFi", - "trustWallet", - "socket", - "rubic", - "squid", - "rango", - "sonarwatch", - "sushiSwap" - ], - "assetId": "eip155:56/erc20:0x55d398326f99059ff775485246999027b3197955", - "chainId": 56, - "coingeckoId": "binance-bridged-usdt-bnb-smart-chain", - "decimals": 18, - "iconUrl": "https://static.cx.metamask.io/api/v2/tokenIcons/assets/eip155/56/erc20/0x55d398326f99059ff775485246999027b3197955.png", - "metadata": { - "storage": { - "approval": 2, - "balance": 1 - } - }, - "name": "Tether USD", - "occurrences": 11, - "symbol": "USDT" - }, - "destChainId": 56, - "destTokenAmount": "1765058689392476914", - "destWalletAddress": "0xF25bd11C334507Fd007d584E2D0b7b2C6543f714", - "feeData": { - "metabridge": { - "amount": "24334759306220", - "asset": { - "address": "0x0000000000000000000000000000000000000000", - "aggregators": [], - "assetId": "eip155:56/slip44:714", - "chainId": 56, - "coingeckoId": "binancecoin", - "decimals": 18, - "iconUrl": "https://static.cx.metamask.io/api/v2/tokenIcons/assets/eip155/56/slip44/714.png", - "metadata": {}, - "name": "Binance Coin", - "occurrences": 100, - "symbol": "BNB" - }, - "baseBpsFee": 87.5, - "quoteBpsFee": 87.5 - }, - "txFee": { - "amount": "22023810000000", - "asset": { - "address": "0x0000000000000000000000000000000000000000", - "aggregators": [], - "assetId": "eip155:56/slip44:714", - "chainId": 56, - "coingeckoId": "binancecoin", - "decimals": 18, - "iconUrl": "https://static.cx.metamask.io/api/v2/tokenIcons/assets/eip155/56/slip44/714.png", - "metadata": {}, - "name": "Binance Coin", - "occurrences": 100, - "symbol": "BNB" - }, - "maxFeePerGas": "60000000", - "maxPriorityFeePerGas": "60000000" - } - }, - "gasIncluded": true, - "gasIncluded7702": false, - "gasSponsored": false, - "minDestTokenAmount": "1729757515604627375", - "priceData": { - "priceImpact": "0.00846408166084548", - "totalFeeAmountUsd": "0.01569810988084946", - "totalFromAmountUsd": "1.7940697006685564", - "totalToAmountUsd": "1.7647974607064467" - }, - "protocols": ["uniswap"], - "requestId": "0xa092ec91738a2a1733a239c0579cf05e0b4552837cdaaf969b2589b3868b570e", - "slippage": 2, - "srcAsset": { - "address": "0x0000000000000000000000000000000000000000", - "aggregators": [], - "assetId": "eip155:56/slip44:714", - "chainId": 56, - "coingeckoId": "binancecoin", - "decimals": 18, - "iconUrl": "https://static.cx.metamask.io/api/v2/tokenIcons/assets/eip155/56/slip44/714.png", - "metadata": {}, - "name": "Binance Coin", - "occurrences": 100, - "symbol": "BNB" - }, - "srcChainId": 56, - "srcTokenAmount": "2734756779976138", - "steps": [], - "walletAddress": "0xF25bd11C334507Fd007d584E2D0b7b2C6543f714" - }, - "slippagePercentage": 0, - "startTime": 1774462675537, - "status": { - "srcChain": { - "chainId": 56 - }, - "status": "PENDING" - }, - "txMetaId": "f201c410-2876-11f1-8091-cdbe50267c7d" - }, - "f20fc190-1d64-11f1-9b1e-3b0a0edc0d9a": { - "account": "0xf25bd11c334507fd007d584e2d0b7b2c6543f714", - "approvalTxId": "f1fed1a0-1d64-11f1-9b1e-3b0a0edc0d9a", - "batchId": "0x390c7b24477a4fc69fb6dae1285bca35", - "estimatedProcessingTimeInSeconds": 0, - "hasApprovalTx": true, - "isStxEnabled": true, - "location": "Main View", - "originalTransactionId": "f20fc190-1d64-11f1-9b1e-3b0a0edc0d9a", - "pricingData": { - "amountSent": "0.030291206096350612", - "amountSentInUsd": "0.03031469744464811512269053485382335576730904", - "quotedGasAmount": "0.0000130952328", - "quotedGasInUsd": "0.0084691309348555097448", - "quotedReturnInUsd": "0.010759200279458998030295414" - }, - "quote": { - "aggregator": "1inch", - "aggregatorType": "AGG", - "bridgeId": "1inch", - "bridges": ["1inch"], - "destAsset": { - "address": "0x0000000000000000000000000000000000000000", - "aggregators": [], - "assetId": "eip155:56/slip44:714", - "chainId": 56, - "coingeckoId": "binancecoin", - "decimals": 18, - "iconUrl": "https://static.cx.metamask.io/api/v2/tokenIcons/assets/eip155/56/slip44/714.png", - "metadata": {}, - "name": "Binance Coin", - "occurrences": 100, - "symbol": "BNB" - }, - "destChainId": 56, - "destTokenAmount": "16636209014254", - "destWalletAddress": "0xF25bd11C334507Fd007d584E2D0b7b2C6543f714", - "feeData": { - "metabridge": { - "amount": "409186165321", - "asset": { - "address": "0x0000000000000000000000000000000000000000", - "aggregators": [], - "assetId": "eip155:56/slip44:714", - "chainId": 56, - "coingeckoId": "binancecoin", - "decimals": 18, - "iconUrl": "https://static.cx.metamask.io/api/v2/tokenIcons/assets/eip155/56/slip44/714.png", - "metadata": {}, - "name": "Binance Coin", - "occurrences": 100, - "symbol": "BNB" - }, - "baseBpsFee": 87.5, - "quoteBpsFee": 87.5 - }, - "txFee": { - "amount": "29718738000000", - "asset": { - "address": "0x0000000000000000000000000000000000000000", - "aggregators": [], - "assetId": "eip155:56/slip44:714", - "chainId": 56, - "coingeckoId": "binancecoin", - "decimals": 18, - "iconUrl": "https://static.cx.metamask.io/api/v2/tokenIcons/assets/eip155/56/slip44/714.png", - "metadata": {}, - "name": "Binance Coin", - "occurrences": 100, - "symbol": "BNB" - }, - "maxFeePerGas": "60000000", - "maxPriorityFeePerGas": "60000000" - } - }, - "gasIncluded": true, - "gasIncluded7702": false, - "gasSponsored": false, - "minDestTokenAmount": "16303484833968", - "priceData": { - "priceImpact": "0.6363831330418781", - "totalFeeAmountUsd": "0.00026440791630712374", - "totalFromAmountUsd": "0.030291206096350613", - "totalToAmountUsd": "0.010749985540830648" - }, - "protocols": ["1inch"], - "requestId": "0x377e1653faad797875199566ad248b9b777ab7c5561f01b5415ff94d659e30f1", - "slippage": 2, - "srcAsset": { - "address": "0x55d398326f99059ff775485246999027b3197955", - "aggregators": [ - "pancakeExtended", - "oneInch", - "liFi", - "socket", - "rubic", - "squid", - "rango", - "sonarwatch", - "sushiSwap" - ], - "assetId": "eip155:56/erc20:0x55d398326f99059ff775485246999027b3197955", - "chainId": 56, - "coingeckoId": "binance-bridged-usdt-bnb-smart-chain", - "decimals": 18, - "iconUrl": "https://static.cx.metamask.io/api/v2/tokenIcons/assets/eip155/56/erc20/0x55d398326f99059ff775485246999027b3197955.png", - "metadata": { - "storage": { - "approval": 2, - "balance": 1 - } - }, - "name": "Tether USD", - "occurrences": 11, - "symbol": "USDT" - }, - "srcChainId": 56, - "srcTokenAmount": "30291206096350612", - "steps": [], - "walletAddress": "0xF25bd11C334507Fd007d584E2D0b7b2C6543f714" - }, - "slippagePercentage": 0, - "startTime": 1773245481913, - "status": { - "srcChain": { - "chainId": 56 - }, - "status": "PENDING" - }, - "txMetaId": "f20fc190-1d64-11f1-9b1e-3b0a0edc0d9a" - }, - "f44e7dc0-2877-11f1-9ef0-5b4e77963ec9": { - "account": "0xf25bd11c334507fd007d584e2d0b7b2c6543f714", - "batchId": "0x6bfe82230aa547c3afb72426e6480ab0", - "estimatedProcessingTimeInSeconds": 0, - "hasApprovalTx": false, - "isStxEnabled": false, - "location": "Main View", - "originalTransactionId": "f44e7dc0-2877-11f1-9ef0-5b4e77963ec9", - "pricingData": { - "amountSent": "0.002568716819074388", - "amountSentInUsd": "1.6573039299836439962481863", - "quotedGasAmount": "0.00000966405", - "quotedGasInUsd": "0.00623512406102037375", - "quotedReturnInUsd": "1.63121734853411266230391289813997531249789075" - }, - "quote": { - "aggregator": "uniswap", - "aggregatorType": "AGG", - "bridgeId": "uniswap", - "bridges": ["uniswap"], - "destAsset": { - "address": "0x55d398326f99059ff775485246999027b3197955", - "aggregators": [ - "pancakeExtended", - "oneInch", - "liFi", - "trustWallet", - "socket", - "rubic", - "squid", - "rango", - "sonarwatch", - "sushiSwap" - ], - "assetId": "eip155:56/erc20:0x55d398326f99059ff775485246999027b3197955", - "chainId": 56, - "coingeckoId": "binance-bridged-usdt-bnb-smart-chain", - "decimals": 18, - "iconUrl": "https://static.cx.metamask.io/api/v2/tokenIcons/assets/eip155/56/erc20/0x55d398326f99059ff775485246999027b3197955.png", - "metadata": { - "storage": { - "approval": 2, - "balance": 1 - } - }, - "name": "Tether USD", - "occurrences": 11, - "symbol": "USDT" - }, - "destChainId": 56, - "destTokenAmount": "1631219481085404123", - "destWalletAddress": "0xF25bd11C334507Fd007d584E2D0b7b2C6543f714", - "feeData": { - "metabridge": { - "amount": "22476272166900", - "asset": { - "address": "0x0000000000000000000000000000000000000000", - "aggregators": [], - "assetId": "eip155:56/slip44:714", - "chainId": 56, - "coingeckoId": "binancecoin", - "decimals": 18, - "iconUrl": "https://static.cx.metamask.io/api/v2/tokenIcons/assets/eip155/56/slip44/714.png", - "metadata": {}, - "name": "Binance Coin", - "occurrences": 100, - "symbol": "BNB" - }, - "baseBpsFee": 87.5, - "quoteBpsFee": 87.5 - }, - "txFee": { - "amount": "22023990000000", - "asset": { - "address": "0x0000000000000000000000000000000000000000", - "aggregators": [], - "assetId": "eip155:56/slip44:714", - "chainId": 56, - "coingeckoId": "binancecoin", - "decimals": 18, - "iconUrl": "https://static.cx.metamask.io/api/v2/tokenIcons/assets/eip155/56/slip44/714.png", - "metadata": {}, - "name": "Binance Coin", - "occurrences": 100, - "symbol": "BNB" - }, - "maxFeePerGas": "60000000", - "maxPriorityFeePerGas": "60000000" - } - }, - "gasIncluded": true, - "gasIncluded7702": false, - "gasSponsored": false, - "minDestTokenAmount": "1598595091463696040", - "priceData": { - "priceImpact": "0.008023783688609794", - "totalFeeAmountUsd": "0.014509107971898956", - "totalFromAmountUsd": "1.6581837682170897", - "totalToAmountUsd": "1.6307757893865489" - }, - "protocols": ["uniswap"], - "requestId": "0x5f7ec31aafaf5bd1a8c6ff73704da71a05a11afb4c72c6a83718bba0994d98a5", - "slippage": 2, - "srcAsset": { - "address": "0x0000000000000000000000000000000000000000", - "aggregators": [], - "assetId": "eip155:56/slip44:714", - "chainId": 56, - "coingeckoId": "binancecoin", - "decimals": 18, - "iconUrl": "https://static.cx.metamask.io/api/v2/tokenIcons/assets/eip155/56/slip44/714.png", - "metadata": {}, - "name": "Binance Coin", - "occurrences": 100, - "symbol": "BNB" - }, - "srcChainId": 56, - "srcTokenAmount": "2524216556907488", - "steps": [], - "walletAddress": "0xF25bd11C334507Fd007d584E2D0b7b2C6543f714" - }, - "slippagePercentage": 0, - "startTime": 1774463108889, - "status": { - "srcChain": { - "chainId": 56 - }, - "status": "PENDING" - }, - "txMetaId": "f44e7dc0-2877-11f1-9ef0-5b4e77963ec9" - }, - "f84655d0-2c9e-11f1-8e3c-f533125480a0": { - "account": "0x141d32a89a1e0a5ef360034a2f60a4b917c18838", - "batchId": "0x4d338fb1d55549f5a83b29e5baae7818", - "estimatedProcessingTimeInSeconds": 0, - "hasApprovalTx": false, - "isStxEnabled": true, - "location": "Main View", - "originalTransactionId": "f84655d0-2c9e-11f1-8e3c-f533125480a0", - "pricingData": { - "amountSent": "0.008428175140106923", - "amountSentInUsd": "17.128322865726049299959537608", - "quotedGasAmount": "0.000486212947249232", - "quotedGasInUsd": "0.988115719421965119747558272", - "quotedReturnInUsd": "15.916366659970442248501022122382656" - }, - "quote": { - "aggregator": "uniswap", - "aggregatorType": "AGG", - "bridgeId": "uniswap", - "bridges": ["uniswap"], - "destAsset": { - "address": "0xaca92e438df0b2401ff60da7e4337b687a2435da", - "aggregators": ["metamask", "liFi", "socket", "rubic", "rango"], - "assetId": "eip155:1/erc20:0xaca92e438df0b2401ff60da7e4337b687a2435da", - "chainId": 1, - "decimals": 6, - "iconUrl": "https://static.cx.metamask.io/api/v2/tokenIcons/assets/eip155/1/erc20/0xaca92e438df0b2401ff60da7e4337b687a2435da.png", - "metadata": {}, - "name": "MetaMask USD", - "occurrences": 5, - "symbol": "MUSD" - }, - "destChainId": 1, - "destTokenAmount": "15916876", - "destWalletAddress": "0x141d32a89a1e0a5Ef360034a2f60a4B917c18838", - "feeData": { - "metabridge": { - "amount": "0", - "asset": { - "address": "0x0000000000000000000000000000000000000000", - "aggregators": [], - "assetId": "eip155:1/slip44:60", - "chainId": 1, - "coingeckoId": "ethereum", - "decimals": 18, - "iconUrl": "https://static.cx.metamask.io/api/v2/tokenIcons/assets/eip155/1/slip44/60.png", - "metadata": {}, - "name": "Ether", - "occurrences": 100, - "symbol": "ETH" - }, - "baseBpsFee": 87.5, - "quoteBpsFee": 0 - }, - "txFee": { - "amount": "618560095246236", - "asset": { - "address": "0x0000000000000000000000000000000000000000", - "aggregators": [], - "assetId": "eip155:1/slip44:60", - "chainId": 1, - "coingeckoId": "ethereum", - "decimals": 18, - "iconUrl": "https://static.cx.metamask.io/api/v2/tokenIcons/assets/eip155/1/slip44/60.png", - "metadata": {}, - "name": "Ether", - "occurrences": 100, - "symbol": "ETH" - }, - "maxFeePerGas": "2229546735", - "maxPriorityFeePerGas": "2100000001" - } - }, - "gasIncluded": true, - "gasIncluded7702": false, - "gasSponsored": false, - "minDestTokenAmount": "15598538", - "priceData": { - "priceImpact": "-0.003912441356125913", - "totalFeeAmountUsd": "0", - "totalFromAmountUsd": "17.127737519725287", - "totalToAmountUsd": "15.932792875999999" - }, - "protocols": ["uniswap"], - "requestId": "0x9828847a557d2a105e5e3de4c3cf4bbc19c55d582bf11341b190278fb9fa7ecc", - "slippage": 2, - "srcAsset": { - "address": "0x0000000000000000000000000000000000000000", - "aggregators": [], - "assetId": "eip155:1/slip44:60", - "chainId": 1, - "coingeckoId": "ethereum", - "decimals": 18, - "iconUrl": "https://static.cx.metamask.io/api/v2/tokenIcons/assets/eip155/1/slip44/60.png", - "metadata": {}, - "name": "Ether", - "occurrences": 100, - "symbol": "ETH" - }, - "srcChainId": 1, - "srcTokenAmount": "7809615044860687", - "steps": [], - "walletAddress": "0x141d32a89a1e0a5Ef360034a2f60a4B917c18838" - }, - "slippagePercentage": 0, - "startTime": 1774919670615, - "status": { - "srcChain": { - "chainId": 1 - }, - "status": "PENDING" - }, - "txMetaId": "f84655d0-2c9e-11f1-8e3c-f533125480a0" - }, - "f8710c10-287c-11f1-a2f7-f9ea9c47170d": { - "account": "0xf25bd11c334507fd007d584e2d0b7b2c6543f714", - "batchId": "0x7a37947dd9474576882d871e04d48349", - "estimatedProcessingTimeInSeconds": 0, - "hasApprovalTx": false, - "isStxEnabled": false, - "location": "Main View", - "originalTransactionId": "f8710c10-287c-11f1-a2f7-f9ea9c47170d", - "pricingData": { - "amountSent": "0.002146832744563131", - "amountSentInUsd": "1.383205266913484695603101786", - "quotedGasAmount": "0.0000125081", - "quotedGasInUsd": "0.0080589742460823486", - "quotedReturnInUsd": "1.353335066422375806958168926007583567874432" - }, - "quote": { - "aggregator": "1inch", - "aggregatorType": "AGG", - "bridgeId": "1inch", - "bridges": ["1inch"], - "destAsset": { - "address": "0x55d398326f99059ff775485246999027b3197955", - "aggregators": [ - "pancakeExtended", - "oneInch", - "liFi", - "trustWallet", - "socket", - "rubic", - "squid", - "rango", - "sonarwatch", - "sushiSwap" - ], - "assetId": "eip155:56/erc20:0x55d398326f99059ff775485246999027b3197955", - "chainId": 56, - "coingeckoId": "binance-bridged-usdt-bnb-smart-chain", - "decimals": 18, - "iconUrl": "https://static.cx.metamask.io/api/v2/tokenIcons/assets/eip155/56/erc20/0x55d398326f99059ff775485246999027b3197955.png", - "metadata": { - "storage": { - "approval": 2, - "balance": 1 - } - }, - "name": "Tether USD", - "occurrences": 11, - "symbol": "USDT" - }, - "destChainId": 56, - "destTokenAmount": "1353896958662378240", - "destWalletAddress": "0xF25bd11C334507Fd007d584E2D0b7b2C6543f714", - "feeData": { - "metabridge": { - "amount": "18784786514927", - "asset": { - "address": "0x0000000000000000000000000000000000000000", - "aggregators": [], - "assetId": "eip155:56/slip44:714", - "chainId": 56, - "coingeckoId": "binancecoin", - "decimals": 18, - "iconUrl": "https://static.cx.metamask.io/api/v2/tokenIcons/assets/eip155/56/slip44/714.png", - "metadata": {}, - "name": "Binance Coin", - "occurrences": 100, - "symbol": "BNB" - }, - "baseBpsFee": 87.5, - "quoteBpsFee": 87.5 - }, - "txFee": { - "amount": "28800180000000", - "asset": { - "address": "0x0000000000000000000000000000000000000000", - "aggregators": [], - "assetId": "eip155:56/slip44:714", - "chainId": 56, - "coingeckoId": "binancecoin", - "decimals": 18, - "iconUrl": "https://static.cx.metamask.io/api/v2/tokenIcons/assets/eip155/56/slip44/714.png", - "metadata": {}, - "name": "Binance Coin", - "occurrences": 100, - "symbol": "BNB" - }, - "maxFeePerGas": "60000000", - "maxPriorityFeePerGas": "60000000" - } - }, - "gasIncluded": true, - "gasIncluded7702": false, - "gasSponsored": false, - "minDestTokenAmount": "1326819019489130675", - "priceData": { - "priceImpact": "0.009063226789063482", - "totalFeeAmountUsd": "0.012112054649094631", - "totalFromAmountUsd": "1.3842348170394156", - "totalToAmountUsd": "1.3532877050309802" - }, - "protocols": ["1inch"], - "requestId": "0x40a57f67905fa5574d5f8f1ec2d7b0233ec0887c9f29ab9bfa4c77ce548d67bf", - "slippage": 2, - "srcAsset": { - "address": "0x0000000000000000000000000000000000000000", - "aggregators": [], - "assetId": "eip155:56/slip44:714", - "chainId": 56, - "coingeckoId": "binancecoin", - "decimals": 18, - "iconUrl": "https://static.cx.metamask.io/api/v2/tokenIcons/assets/eip155/56/slip44/714.png", - "metadata": {}, - "name": "Binance Coin", - "occurrences": 100, - "symbol": "BNB" - }, - "srcChainId": 56, - "srcTokenAmount": "2099247778048204", - "steps": [], - "walletAddress": "0xF25bd11C334507Fd007d584E2D0b7b2C6543f714" - }, - "slippagePercentage": 0, - "startTime": 1774465263146, - "status": { - "srcChain": { - "chainId": 56 - }, - "status": "PENDING" - }, - "txMetaId": "f8710c10-287c-11f1-a2f7-f9ea9c47170d" - }, - "fe000000-289f-11f1-a5b4-213b64721d37": { - "account": "0x141d32a89a1e0a5ef360034a2f60a4b917c18838", - "batchId": "0xe04632dccafe42e297c56d2708636c6d", - "estimatedProcessingTimeInSeconds": 0, - "hasApprovalTx": false, - "isStxEnabled": true, - "location": "Main View", - "originalTransactionId": "fe000000-289f-11f1-a5b4-213b64721d37", - "pricingData": { - "amountSent": "0.003629391213218711", - "amountSentInUsd": "7.892277824040395714320200408", - "quotedGasAmount": "0.000006015384715807", - "quotedGasInUsd": "0.013080730240026132045123096", - "quotedReturnInUsd": "7.822248448265464713073180974025344" - }, - "quote": { - "aggregator": "pancakeswap", - "aggregatorType": "AGG", - "bridgeId": "pancakeswap", - "bridges": ["pancakeswap"], - "destAsset": { - "address": "0x833589fcd6edb6e08f4c7c32d4f71b54bda02913", - "aggregators": [ - "coinGecko", - "oneInch", - "liFi", - "socket", - "rubic", - "squid", - "rango", - "sonarwatch", - "sushiSwap" - ], - "assetId": "eip155:8453/erc20:0x833589fcd6edb6e08f4c7c32d4f71b54bda02913", - "chainId": 8453, - "coingeckoId": "usd-coin", - "decimals": 6, - "iconUrl": "https://static.cx.metamask.io/api/v2/tokenIcons/assets/eip155/8453/erc20/0x833589fcd6edb6e08f4c7c32d4f71b54bda02913.png", - "metadata": { - "storage": { - "approval": 10, - "balance": 9 - } - }, - "name": "USD Coin", - "occurrences": 9, - "symbol": "USDC" - }, - "destChainId": 8453, - "destTokenAmount": "7823242", - "destWalletAddress": "0x141d32a89a1e0a5Ef360034a2f60a4B917c18838", - "feeData": { - "metabridge": { - "amount": "31757173115663", - "asset": { - "address": "0x0000000000000000000000000000000000000000", - "aggregators": [], - "assetId": "eip155:8453/slip44:60", - "chainId": 8453, - "coingeckoId": "ethereum", - "decimals": 18, - "iconUrl": "https://static.cx.metamask.io/api/v2/tokenIcons/assets/eip155/8453/slip44/60.png", - "metadata": {}, - "name": "Ether", - "occurrences": 100, - "symbol": "ETH" - }, - "baseBpsFee": 87.5, - "quoteBpsFee": 87.5 - }, - "txFee": { - "amount": "3086203306579", - "asset": { - "address": "0x0000000000000000000000000000000000000000", - "aggregators": [], - "assetId": "eip155:8453/slip44:60", - "chainId": 8453, - "coingeckoId": "ethereum", - "decimals": 18, - "iconUrl": "https://static.cx.metamask.io/api/v2/tokenIcons/assets/eip155/8453/slip44/60.png", - "metadata": {}, - "name": "Ether", - "occurrences": 100, - "symbol": "ETH" - }, - "maxFeePerGas": "6625001", - "maxPriorityFeePerGas": "1000001" - } - }, - "gasIncluded": true, - "gasIncluded7702": false, - "gasSponsored": false, - "minDestTokenAmount": "7666777", - "priceData": { - "priceImpact": "0.007890074521534677", - "totalFeeAmountUsd": "0.06904771607499911", - "totalFromAmountUsd": "7.89116755142865", - "totalToAmountUsd": "7.8222484482659995" - }, - "protocols": ["pancakeswap"], - "requestId": "0x64d1ae70589fe4973b979776af7de1ea7b082fb88ba4980b1afdaa9fbe894c60", - "slippage": 2, - "srcAsset": { - "address": "0x0000000000000000000000000000000000000000", - "aggregators": [], - "assetId": "eip155:8453/slip44:60", - "chainId": 8453, - "coingeckoId": "ethereum", - "decimals": 18, - "iconUrl": "https://static.cx.metamask.io/api/v2/tokenIcons/assets/eip155/8453/slip44/60.png", - "metadata": {}, - "name": "Ether", - "occurrences": 100, - "symbol": "ETH" - }, - "srcChainId": 8453, - "srcTokenAmount": "3594547836796469", - "steps": [], - "walletAddress": "0x141d32a89a1e0a5Ef360034a2f60a4B917c18838" - }, - "slippagePercentage": 0, - "startTime": 1774480304982, - "status": { - "srcChain": { - "chainId": 8453 - }, - "status": "PENDING" - }, - "txMetaId": "fe000000-289f-11f1-a5b4-213b64721d37" - }, - "ff06f2c0-18c7-11f1-89ad-555726da3d66": { - "account": "0xb3864b298f4fddbbbd2fa5cf1a2a2748932b3b81", - "batchId": "0xe6b10a6cc5c04b2fb47d8350157e03ea", - "estimatedProcessingTimeInSeconds": 0, - "hasApprovalTx": false, - "isStxEnabled": true, - "location": "Main View", - "originalTransactionId": "ff06f2c0-18c7-11f1-89ad-555726da3d66", - "pricingData": { - "amountSent": "0.001", - "amountSentInUsd": "0.651414337966", - "quotedGasAmount": "0.00000886665", - "quotedGasInUsd": "0.0057758629397262339", - "quotedReturnInUsd": "0.6460235926258800849293193672743880916975896" - }, - "quote": { - "aggregator": "uniswap", - "aggregatorType": "AGG", - "bridgeId": "uniswap", - "bridges": ["uniswap"], - "destAsset": { - "address": "0x55d398326f99059ff775485246999027b3197955", - "aggregators": [ - "pancakeExtended", - "oneInch", - "liFi", - "socket", - "squid", - "rango", - "sonarwatch", - "sushiSwap" - ], - "assetId": "eip155:56/erc20:0x55d398326f99059ff775485246999027b3197955", - "chainId": 56, - "coingeckoId": "binance-bridged-usdt-bnb-smart-chain", - "decimals": 18, - "iconUrl": "https://static.cx.metamask.io/api/v2/tokenIcons/assets/eip155/56/erc20/0x55d398326f99059ff775485246999027b3197955.png", - "metadata": { - "storage": { - "approval": 2, - "balance": 1 - } - }, - "name": "Tether USD", - "occurrences": 8, - "symbol": "USDT" - }, - "destChainId": 56, - "destTokenAmount": "646023592626227062", - "destWalletAddress": "0xb3864B298f4fDdbbBd2Fa5CF1a2a2748932b3B81", - "feeData": { - "metabridge": { - "amount": "8750000000000", - "asset": { - "address": "0x0000000000000000000000000000000000000000", - "aggregators": [], - "assetId": "eip155:56/slip44:714", - "chainId": 56, - "coingeckoId": "binancecoin", - "decimals": 18, - "iconUrl": "https://static.cx.metamask.io/api/v2/tokenIcons/assets/eip155/56/slip44/714.png", - "metadata": {}, - "name": "Binance Coin", - "occurrences": 100, - "symbol": "BNB" - }, - "baseBpsFee": 87.5, - "quoteBpsFee": 87.5 - } - }, - "gasIncluded7702": false, - "gasSponsored": false, - "minDestTokenAmount": "633103120773702520", - "priceData": { - "priceImpact": "-0.0005394728595233107", - "totalFeeAmountUsd": "0.0056980875", - "totalFromAmountUsd": "0.6512100000000001", - "totalToAmountUsd": "0.6458601486572927" - }, - "protocols": ["uniswap"], - "requestId": "0x4f3e13e067d39a0c9c040394b11826bc21f23c29232e2ba33807cbfc606fc206", - "slippage": 2, - "srcAsset": { - "address": "0x0000000000000000000000000000000000000000", - "aggregators": [], - "assetId": "eip155:56/slip44:714", - "chainId": 56, - "coingeckoId": "binancecoin", - "decimals": 18, - "iconUrl": "https://static.cx.metamask.io/api/v2/tokenIcons/assets/eip155/56/slip44/714.png", - "metadata": {}, - "name": "Binance Coin", - "occurrences": 100, - "symbol": "BNB" - }, - "srcChainId": 56, - "srcTokenAmount": "991250000000000", - "steps": [], - "walletAddress": "0xb3864B298f4fDdbbBd2Fa5CF1a2a2748932b3B81" - }, - "slippagePercentage": 0, - "startTime": 1772738267959, - "status": { - "srcChain": { - "chainId": 56 - }, - "status": "PENDING" - }, - "txMetaId": "ff06f2c0-18c7-11f1-89ad-555726da3d66" - } - }, - "ensEntries": { - "0x1": { - ".": { - "address": "0x00000000000C2E074eC69A0dFb2997BA6C7d2e1e", - "chainId": "0x1", - "ensName": "." - } - }, - "0x3": { - ".": { - "address": "0x00000000000C2E074eC69A0dFb2997BA6C7d2e1e", - "chainId": "0x3", - "ensName": "." - } - }, - "0x4": { - ".": { - "address": "0x00000000000C2E074eC69A0dFb2997BA6C7d2e1e", - "chainId": "0x4", - "ensName": "." - } - }, - "0x5": { - ".": { - "address": "0x00000000000C2E074eC69A0dFb2997BA6C7d2e1e", - "chainId": "0x5", - "ensName": "." - } - }, - "0x4268": { - ".": { - "address": "0x00000000000C2E074eC69A0dFb2997BA6C7d2e1e", - "chainId": "0x4268", - "ensName": "." - } - }, - "0xaa36a7": { - ".": { - "address": "0x00000000000C2E074eC69A0dFb2997BA6C7d2e1e", - "chainId": "0xaa36a7", - "ensName": "." - } - } - }, - "ensResolutionsByAddress": {}, - "pendingApprovals": {}, - "pendingApprovalCount": 0, - "approvalFlows": [], - "passkeyRecord": null, - "location": "US-CA", - "status": "complete", - "lastFetchedAt": 1779126365843, - "error": null, - "activeProvider": "hyperliquid", - "isTestnet": false, - "initializationState": "uninitialized", - "initializationError": null, - "initializationAttempts": 0, - "accountState": null, - "perpsBalances": {}, - "depositInProgress": false, - "lastDepositResult": null, - "withdrawInProgress": false, - "lastDepositTransactionId": null, - "lastWithdrawResult": null, - "lastCompletedWithdrawalTimestamp": null, - "lastCompletedWithdrawalTxHashes": [], - "withdrawalRequests": [], - "withdrawalProgress": { - "activeWithdrawalId": null, - "lastUpdated": 0, - "progress": 0 - }, - "depositRequests": [], - "lastError": "CLIENT_NOT_INITIALIZED", - "lastUpdateTimestamp": 1779122367417, - "isEligible": true, - "isFirstTimeUser": { - "mainnet": true, - "testnet": true - }, - "hasPlacedFirstOrder": { - "mainnet": false, - "testnet": false - }, - "watchlistMarkets": { - "mainnet": [], - "testnet": [] - }, - "tradeConfigurations": { - "mainnet": {}, - "testnet": {} - }, - "marketFilterPreferences": { - "direction": "desc", - "optionId": "volume" - }, - "hip3ConfigVersion": 6, - "selectedPaymentToken": null, - "cachedMarketDataByProvider": {}, - "cachedUserDataByProvider": {}, - "versionInfo": [], - "storageMetadata": [], - "methodData": {}, - "transactionBatches": [], - "lastFetchedBlockNumbers": {}, - "submitHistory": [ - { - "chainId": "0x38", - "hash": "0x5401970c5672b7b813dd54f1f709604848b2625f0ca64f3e67eeaef4579d0d26", - "networkType": "9a1eafde-5f04-434b-b011-e9de5c50baf0", - "networkUrl": "https://bsc-mainnet.infura.io/v3/b6bf7d3508c941499b10025c0776eaf8", - "origin": "metamask", - "rawTransaction": "0x02f905d138558402faf0808402faf08083042d9994141d32a89a1e0a5ef360034a2f60a4b917c1883880b90564e9ae5c530100000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000004000000000000000000000000000000000000000000000000000000000000005000000000000000000000000000000000000000000000000000000000000000020000000000000000000000000000000000000000000000000000000000000000200000000000000000000000000000000000000000000000000000000000000400000000000000000000000000000000000000000000000000000000000000120000000000000000000000000f8a0bf9cf54bb92f17374d9e9a321e6a111a51bd000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000600000000000000000000000000000000000000000000000000000000000000044095ea7b30000000000000000000000001a1ec25dc08e98e5e93f1104b5e5cdd298707d3100000000000000000000000000000000000000000000000003ebbdcb7fcd807d000000000000000000000000000000000000000000000000000000000000000000000000000000001a1ec25dc08e98e5e93f1104b5e5cdd298707d310000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000003055f5755290000000000000000000000000000000000000000000000000000000000000080000000000000000000000000f8a0bf9cf54bb92f17374d9e9a321e6a111a51bd00000000000000000000000000000000000000000000000003ebbdcb7fcd807d00000000000000000000000000000000000000000000000000000000000000c0000000000000000000000000000000000000000000000000000000000000001b70616e63616b6553776170526f7574657246656544796e616d696300000000000000000000000000000000000000000000000000000000000000000000000220000000000000000000000000f8a0bf9cf54bb92f17374d9e9a321e6a111a51bd00000000000000000000000055d398326f99059ff775485246999027b319795500000000000000000000000000000000000000000000000003ebbdcb7fcd807d000000000000000000000000000000000000000000000000280162ef76ef688a0000000000000000000000000000000000000000000000000000000000000120000000000000000000000000000000000000000000000000005c3f84e6a5523f000000000000000000000000b28da7bc87a9dd1e60849aa7fcb5da24ea913c42000000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000000000e4472b43f300000000000000000000000000000000000000000000000003ebbdcb7fcd807d000000000000000000000000000000000000000000000000285fec8af4196baa0000000000000000000000000000000000000000000000000000000000000080000000000000000000000000c590175e458b83680867afd273527ff58f74c02b0000000000000000000000000000000000000000000000000000000000000002000000000000000000000000f8a0bf9cf54bb92f17374d9e9a321e6a111a51bd00000000000000000000000055d398326f99059ff775485246999027b319795500000000000000000000000000000000000000000000000000000000ad000000000000000000000000000000000000000000000000000000c080a096bc689b88244941ce2459410d89a79948efa0dd360fa63d380fe458f2fb6e5ca04573389a3205a4b9a5516596823113efd11d657c2449ee2ba47f38fe6cf848c2", - "time": 1778802916058, - "transaction": { - "data": "0xe9ae5c530100000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000004000000000000000000000000000000000000000000000000000000000000005000000000000000000000000000000000000000000000000000000000000000020000000000000000000000000000000000000000000000000000000000000000200000000000000000000000000000000000000000000000000000000000000400000000000000000000000000000000000000000000000000000000000000120000000000000000000000000f8a0bf9cf54bb92f17374d9e9a321e6a111a51bd000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000600000000000000000000000000000000000000000000000000000000000000044095ea7b30000000000000000000000001a1ec25dc08e98e5e93f1104b5e5cdd298707d3100000000000000000000000000000000000000000000000003ebbdcb7fcd807d000000000000000000000000000000000000000000000000000000000000000000000000000000001a1ec25dc08e98e5e93f1104b5e5cdd298707d310000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000003055f5755290000000000000000000000000000000000000000000000000000000000000080000000000000000000000000f8a0bf9cf54bb92f17374d9e9a321e6a111a51bd00000000000000000000000000000000000000000000000003ebbdcb7fcd807d00000000000000000000000000000000000000000000000000000000000000c0000000000000000000000000000000000000000000000000000000000000001b70616e63616b6553776170526f7574657246656544796e616d696300000000000000000000000000000000000000000000000000000000000000000000000220000000000000000000000000f8a0bf9cf54bb92f17374d9e9a321e6a111a51bd00000000000000000000000055d398326f99059ff775485246999027b319795500000000000000000000000000000000000000000000000003ebbdcb7fcd807d000000000000000000000000000000000000000000000000280162ef76ef688a0000000000000000000000000000000000000000000000000000000000000120000000000000000000000000000000000000000000000000005c3f84e6a5523f000000000000000000000000b28da7bc87a9dd1e60849aa7fcb5da24ea913c42000000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000000000e4472b43f300000000000000000000000000000000000000000000000003ebbdcb7fcd807d000000000000000000000000000000000000000000000000285fec8af4196baa0000000000000000000000000000000000000000000000000000000000000080000000000000000000000000c590175e458b83680867afd273527ff58f74c02b0000000000000000000000000000000000000000000000000000000000000002000000000000000000000000f8a0bf9cf54bb92f17374d9e9a321e6a111a51bd00000000000000000000000055d398326f99059ff775485246999027b319795500000000000000000000000000000000000000000000000000000000ad000000000000000000000000000000000000000000000000000000", - "from": "0x141d32a89a1e0a5ef360034a2f60a4b917c18838", - "gas": "0x42d99", - "gasLimit": "0x42d99", - "maxFeePerGas": "0x2faf080", - "maxPriorityFeePerGas": "0x2faf080", - "nonce": "0x55", - "to": "0x141d32a89a1e0a5ef360034a2f60a4b917c18838", - "type": "0x2", - "value": "0x0" - } - }, - { - "chainId": "0x89", - "hash": "0x88b9f974cf74422e0ea46099ba70819cfe157efd0c69cebb92038d891205b55b", - "networkType": "polygon-mainnet", - "networkUrl": "https://polygon-mainnet.infura.io/v3/{infuraProjectId}", - "origin": "metamask", - "rawTransaction": "0x02f8b281895e851ccc4c5980856cc007c3de82e6cf94c2132d05d31c914a87c6611c10748aeb04b58e8f80b844095ea7b30000000000000000000000001a1ec25dc08e98e5e93f1104b5e5cdd298707d310000000000000000000000000000000000000000000000000000000000065676c001a0f3e80e476118b31d2c248f044281ea8e73210789a24293cfc9d3924861bb7b90a03726441d512e063c2ae3804ac6e99f1eb2bc874dcf0ed9c0665fa94579838e2e", - "time": 1778785382904, - "transaction": { - "data": "0x095ea7b30000000000000000000000001a1ec25dc08e98e5e93f1104b5e5cdd298707d310000000000000000000000000000000000000000000000000000000000065676", - "from": "0x141d32a89a1e0a5ef360034a2f60a4b917c18838", - "gas": "0xe6cf", - "gasLimit": "0xe6cf", - "maxFeePerGas": "0x6cc007c3de", - "maxPriorityFeePerGas": "0x1ccc4c5980", - "nonce": "0x5e", - "to": "0xc2132d05d31c914a87c6611c10748aeb04b58e8f", - "type": "0x2", - "value": "0x0" - } - }, - { - "chainId": "0xa86a", - "hash": "0x48a711af5af1500af1e2fe4911c94f482fbd2003be27422c6e39a4520695924a", - "networkType": "d6eb1507-ce8a-40d4-ba91-1e8231b1f2a3", - "networkUrl": "https://avalanche-mainnet.infura.io/v3/b6bf7d3508c941499b10025c0776eaf8", - "origin": "metamask", - "rawTransaction": "0x02f9103482a86a018459682f00845be1c9e2830d7915941a1ec25dc08e98e5e93f1104b5e5cdd298707d3180b90fc55f5755290000000000000000000000000000000000000000000000000000000000000080000000000000000000000000b97ef9ef8734c71904d8002f8b6bc66dd9c48a6e0000000000000000000000000000000000000000000000000000000000c0b1d200000000000000000000000000000000000000000000000000000000000000c000000000000000000000000000000000000000000000000000000000000000136b796265725377617046656544796e616d6963000000000000000000000000000000000000000000000000000000000000000000000000000000000000000ee0000000000000000000000000b97ef9ef8734c71904d8002f8b6bc66dd9c48a6e00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000bf02300000000000000000000000000000000000000000000000001191a5a61fb7f8980000000000000000000000000000000000000000000000000000000000000120000000000000000000000000000000000000000000000000000000000001afa2000000000000000000000000ef320f172714eab39ef6df6ee23a29d2467b6fbf00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000da4e21fd0e9000000000000000000000000000000000000000000000000000000000000002000000000000000000000000063242a4ea82847b20e506b63b0e2e2eff0cc6cb0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000a00000000000000000000000000000000000000000000000000000000000000a600000000000000000000000000000000000000000000000000000000000000ca000000000000000000000000000000000000000000000000000000000000009a000000000000000000000000000bf023000000000000000000000000000bf0230000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000000e000000000000000000000000000000000000000000000000000000000000000412210122a98dba052bb217d2c4a636d5b2e6ce9a61d2f8b22340bdcf3c99495ab484cc097e258e683244d728c48d80093c01a810037ff6d32f4b495f1ce8571671c0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000008a0000000000000000000000000c590175e458b83680867afd273527ff58f74c02b0000000000000000000000000000000000000000000000000000000000000140000000000000000000000000000000000000000000000000000000000000018000000000000000000000000000b5754700000000000000000000000000c88f1800000000000000000000000000bf0230000000000000000011ed6f8f6448c96e0000000000000000000000000000000000012cc5f496f20000000f42400000000000000000000000000000004f82e73edb06d29ff62c91ec8f5ff06571bdeb2900000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000069e15adc0000000000000000000000000000000000000000000000000000000000000880000000000000000000000000000000000000000000000000000000000000000161f598cd00000000000000003261c1bf28a7663c8ecccf14914a2c02ce17e566000000000000000000000000000000000000000000000000000000000000000500000000000000000000000000000000000000000000000000000000000000a0000000000000000000000000000000000000000000000000000000000000022000000000000000000000000000000000000000000000000000000000000003a000000000000000000000000000000000000000000000000000000000000005200000000000000000000000000000000000000000000000000000000000000660000000000000000000000000b97ef9ef8734c71904d8002f8b6bc66dd9c48a6e8000000000000000000000000000000c00000000000000000000000000bf02300000000000000000000000000000000000000000000000000000000000000060000000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000000000200000000000000000000000000000000000000000000000000000000000bf02303b9d6e0900000000000000015455c918e405a2831fbff8595c0aae35ee3db9d1000000000000000000000000000000000000000000000000000000000000008000000000000000000000000063242a4ea82847b20e506b63b0e2e2eff0cc6cb000000000000000000000000000000000000000000000000000000000000000400000000000000000000000001150403b19315615aad1638d9dd86cd866b2f456000000000000000000000000000000000000270ffdbe72847b89e899461529a80000000000000000000000009702230a8ea53601f5cd2dc00fdbc13d4df4a8c78000000000000000000000000000000c00000000000000000000000000bef2ed0000000000000000000000000000000000000000000000000000000000000060000000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000000000200000000000000000000000000000000000000000000000000000000000bef2ed6efd106f00000000000000020c3b706efa1da39450c968e669fdc442fc375021000000000000000000000000000000000000000000000000000000000000008000000000000000000000000063242a4ea82847b20e506b63b0e2e2eff0cc6cb000000000000000000000000000000000000000000000000000000000000000400000000000000000000000001abe428146795bc754170af24cfd78663f257d29000000000000000000000000ff120d460d67f1db5b71087bd404babb342b598700000000000000000000000049d5c2bdffac6ce2bfdb6640f4f80f226bc10bab8000000000000000000000013e6e606700000000000000000012fadfb68adb790000000000000000000000000000000000000000000000000000000000000060000000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000000000200000000000000000000000000000000000000000000000000012fadfb68adb793b9d6e0900000000000000035455c918e405a2831fbff8595c0aae35ee3db9d1000000000000000000000000000000000000000000000000000000000000008000000000000000000000000063242a4ea82847b20e506b63b0e2e2eff0cc6cb00000000000000000000000000000000000000000000000000000000000000040000000000000000000000000840c5f0167e3a335be0938916962c38c16b948df0000000000000000000000000000000000000000000000000000000100ad139d000000000000000000000000b31f66aa3c1e785363f0875a1b74e27b85fd66c780000000000000000000012cc5f496f2000000000000000011ed6f8f6448c96e00000000000000000000000000000000000000000000000000000000000000600000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000002000000000000000000000000000000000000000000000000011ed6f8f6448c96e0000000000000000000000040000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000008000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000eeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeee8000000000000000000000000000000100000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000b97ef9ef8734c71904d8002f8b6bc66dd9c48a6e000000000000000000000000eeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeee000000000000000000000000000000000000000000000000000000000000016000000000000000000000000000000000000000000000000000000000000001a000000000000000000000000000000000000000000000000000000000000001e00000000000000000000000000000000000000000000000000000000000000200000000000000000000000000c590175e458b83680867afd273527ff58f74c02b0000000000000000000000000000000000000000000000000000000000bf02300000000000000000000000000000000000000000000000001191a5a61fb7f89800000000000000000000000000000000000000000000000000000000000002000000000000000000000000000000000000000000000000000000000000000220000000000000000000000000000000000000000000000000000000000000000100000000000000000000000063242a4ea82847b20e506b63b0e2e2eff0cc6cb000000000000000000000000000000000000000000000000000000000000000010000000000000000000000000000000000000000000000000000000000bf023000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000b17b22536f75726365223a226d6574616d61736b222c22416d6f756e74496e555344223a2231322e343934363635222c22416d6f756e744f7574555344223a2231322e353031393836222c22416d6f756e744f7574223a2231323931383131333239373738363938363035222c22526f7574654944223a22663463316332306531784248424c31503a62356263653766334c6e5a4c495a7331222c2254696d657374616d70223a313737363337353334307d0000000000000000000000000000000000000000000000000000000000000000000000000000000000000078c001a0cbabadc542f15708b7c11514f69db6c49c14344e86eed2b6288cd4f756e8e7a1a009408178fac4c6755f35256b809e19756b9ba88103515af09c84000a5aee1a7f", - "time": 1776375343730, - "transaction": { - "data": "0x5f5755290000000000000000000000000000000000000000000000000000000000000080000000000000000000000000b97ef9ef8734c71904d8002f8b6bc66dd9c48a6e0000000000000000000000000000000000000000000000000000000000c0b1d200000000000000000000000000000000000000000000000000000000000000c000000000000000000000000000000000000000000000000000000000000000136b796265725377617046656544796e616d6963000000000000000000000000000000000000000000000000000000000000000000000000000000000000000ee0000000000000000000000000b97ef9ef8734c71904d8002f8b6bc66dd9c48a6e00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000bf02300000000000000000000000000000000000000000000000001191a5a61fb7f8980000000000000000000000000000000000000000000000000000000000000120000000000000000000000000000000000000000000000000000000000001afa2000000000000000000000000ef320f172714eab39ef6df6ee23a29d2467b6fbf00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000da4e21fd0e9000000000000000000000000000000000000000000000000000000000000002000000000000000000000000063242a4ea82847b20e506b63b0e2e2eff0cc6cb0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000a00000000000000000000000000000000000000000000000000000000000000a600000000000000000000000000000000000000000000000000000000000000ca000000000000000000000000000000000000000000000000000000000000009a000000000000000000000000000bf023000000000000000000000000000bf0230000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000000e000000000000000000000000000000000000000000000000000000000000000412210122a98dba052bb217d2c4a636d5b2e6ce9a61d2f8b22340bdcf3c99495ab484cc097e258e683244d728c48d80093c01a810037ff6d32f4b495f1ce8571671c0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000008a0000000000000000000000000c590175e458b83680867afd273527ff58f74c02b0000000000000000000000000000000000000000000000000000000000000140000000000000000000000000000000000000000000000000000000000000018000000000000000000000000000b5754700000000000000000000000000c88f1800000000000000000000000000bf0230000000000000000011ed6f8f6448c96e0000000000000000000000000000000000012cc5f496f20000000f42400000000000000000000000000000004f82e73edb06d29ff62c91ec8f5ff06571bdeb2900000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000069e15adc0000000000000000000000000000000000000000000000000000000000000880000000000000000000000000000000000000000000000000000000000000000161f598cd00000000000000003261c1bf28a7663c8ecccf14914a2c02ce17e566000000000000000000000000000000000000000000000000000000000000000500000000000000000000000000000000000000000000000000000000000000a0000000000000000000000000000000000000000000000000000000000000022000000000000000000000000000000000000000000000000000000000000003a000000000000000000000000000000000000000000000000000000000000005200000000000000000000000000000000000000000000000000000000000000660000000000000000000000000b97ef9ef8734c71904d8002f8b6bc66dd9c48a6e8000000000000000000000000000000c00000000000000000000000000bf02300000000000000000000000000000000000000000000000000000000000000060000000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000000000200000000000000000000000000000000000000000000000000000000000bf02303b9d6e0900000000000000015455c918e405a2831fbff8595c0aae35ee3db9d1000000000000000000000000000000000000000000000000000000000000008000000000000000000000000063242a4ea82847b20e506b63b0e2e2eff0cc6cb000000000000000000000000000000000000000000000000000000000000000400000000000000000000000001150403b19315615aad1638d9dd86cd866b2f456000000000000000000000000000000000000270ffdbe72847b89e899461529a80000000000000000000000009702230a8ea53601f5cd2dc00fdbc13d4df4a8c78000000000000000000000000000000c00000000000000000000000000bef2ed0000000000000000000000000000000000000000000000000000000000000060000000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000000000200000000000000000000000000000000000000000000000000000000000bef2ed6efd106f00000000000000020c3b706efa1da39450c968e669fdc442fc375021000000000000000000000000000000000000000000000000000000000000008000000000000000000000000063242a4ea82847b20e506b63b0e2e2eff0cc6cb000000000000000000000000000000000000000000000000000000000000000400000000000000000000000001abe428146795bc754170af24cfd78663f257d29000000000000000000000000ff120d460d67f1db5b71087bd404babb342b598700000000000000000000000049d5c2bdffac6ce2bfdb6640f4f80f226bc10bab8000000000000000000000013e6e606700000000000000000012fadfb68adb790000000000000000000000000000000000000000000000000000000000000060000000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000000000200000000000000000000000000000000000000000000000000012fadfb68adb793b9d6e0900000000000000035455c918e405a2831fbff8595c0aae35ee3db9d1000000000000000000000000000000000000000000000000000000000000008000000000000000000000000063242a4ea82847b20e506b63b0e2e2eff0cc6cb00000000000000000000000000000000000000000000000000000000000000040000000000000000000000000840c5f0167e3a335be0938916962c38c16b948df0000000000000000000000000000000000000000000000000000000100ad139d000000000000000000000000b31f66aa3c1e785363f0875a1b74e27b85fd66c780000000000000000000012cc5f496f2000000000000000011ed6f8f6448c96e00000000000000000000000000000000000000000000000000000000000000600000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000002000000000000000000000000000000000000000000000000011ed6f8f6448c96e0000000000000000000000040000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000008000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000eeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeee8000000000000000000000000000000100000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000b97ef9ef8734c71904d8002f8b6bc66dd9c48a6e000000000000000000000000eeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeee000000000000000000000000000000000000000000000000000000000000016000000000000000000000000000000000000000000000000000000000000001a000000000000000000000000000000000000000000000000000000000000001e00000000000000000000000000000000000000000000000000000000000000200000000000000000000000000c590175e458b83680867afd273527ff58f74c02b0000000000000000000000000000000000000000000000000000000000bf02300000000000000000000000000000000000000000000000001191a5a61fb7f89800000000000000000000000000000000000000000000000000000000000002000000000000000000000000000000000000000000000000000000000000000220000000000000000000000000000000000000000000000000000000000000000100000000000000000000000063242a4ea82847b20e506b63b0e2e2eff0cc6cb000000000000000000000000000000000000000000000000000000000000000010000000000000000000000000000000000000000000000000000000000bf023000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000b17b22536f75726365223a226d6574616d61736b222c22416d6f756e74496e555344223a2231322e343934363635222c22416d6f756e744f7574555344223a2231322e353031393836222c22416d6f756e744f7574223a2231323931383131333239373738363938363035222c22526f7574654944223a22663463316332306531784248424c31503a62356263653766334c6e5a4c495a7331222c2254696d657374616d70223a313737363337353334307d0000000000000000000000000000000000000000000000000000000000000000000000000000000000000078", - "from": "0x141d32a89a1e0a5ef360034a2f60a4b917c18838", - "gas": "0xd7915", - "gasLimit": "0xd7915", - "maxFeePerGas": "0x5be1c9e2", - "maxPriorityFeePerGas": "0x59682f00", - "nonce": "0x1", - "to": "0x1a1ec25dc08e98e5e93f1104b5e5cdd298707d31", - "type": "0x2", - "value": "0x0" - } - }, - { - "chainId": "0xa86a", - "hash": "0xdc14a79f7b195b493dbb5390d529c9aa043939887e6f8033524b22fe90efa6a6", - "networkType": "d6eb1507-ce8a-40d4-ba91-1e8231b1f2a3", - "networkUrl": "https://avalanche-mainnet.infura.io/v3/b6bf7d3508c941499b10025c0776eaf8", - "origin": "metamask", - "rawTransaction": "0x02f8b182a86a808459682f00845be1c9e282dbb094b97ef9ef8734c71904d8002f8b6bc66dd9c48a6e80b844095ea7b30000000000000000000000001a1ec25dc08e98e5e93f1104b5e5cdd298707d310000000000000000000000000000000000000000000000000000000000c0b1d2c080a0c0611cf3441b02f85a23fa9df37dce4264564dd642eef506e2acf86adff69171a056a50849d9e45f028f1b19f7bab9f6071ff706810b88059157a809bd86d5ae9f", - "time": 1776375343415, - "transaction": { - "data": "0x095ea7b30000000000000000000000001a1ec25dc08e98e5e93f1104b5e5cdd298707d310000000000000000000000000000000000000000000000000000000000c0b1d2", - "from": "0x141d32a89a1e0a5ef360034a2f60a4b917c18838", - "gas": "0xdbb0", - "gasLimit": "0xdbb0", - "maxFeePerGas": "0x5be1c9e2", - "maxPriorityFeePerGas": "0x59682f00", - "nonce": "0x0", - "to": "0xb97ef9ef8734c71904d8002f8b6bc66dd9c48a6e", - "type": "0x2", - "value": "0x0" - } - }, - { - "chainId": "0x1", - "hash": "0x400089af7cf7bdf032a84d27c3dab0a0a1326f8ef62f94ee260c70bfcb82b43b", - "networkType": "mainnet", - "networkUrl": "https://mainnet.infura.io/v3/{infuraProjectId}", - "origin": "metamask", - "rawTransaction": "0x02f902f90136847d2b75018485a05cbb830182f0940439e60f02a8900a951603950d8d4527f400c3f18730c5f60297e7d9b902853ce33bff000000000000000000000000000000000000000000000000000000000000008000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000030c5f60297e7d900000000000000000000000000000000000000000000000000000000000000c0000000000000000000000000000000000000000000000000000000000000000e72656c617941646170746572563200000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001a00000000000000000000000004cd00e387622c35bddb9b4c962c136462338bc310000000000000000000000004cd00e387622c35bddb9b4c962c136462338bc31000000000000000000000000000000000000000000000000000000000000a4b100000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000003056f109a7a576000000000000000000000000000000000000000000000000000000000000014000000000000000000000000000000000000000000000000000006f04f8f04263000000000000000000000000e6b738da243e8fa2a0ed5915645789add5de5152000000000000000000000000000000000000000000000000000000000000004449290c1c000000000000000000000000141d32a89a1e0a5ef360034a2f60a4b917c18838467ded05917cefa50e95b3a483ac35dd45f4a6712ab67d5fc9b8a29617cbde7800000000000000000000000000000000000000000000000000000000dec080a0113ff3342553bb5116ebbe761cee6d370e10f32140609a09befcdde470261adba029fe445e0c5c33d22e8c076d6582dabfce8c99f3dd31af39d81ae6af78c4dfb5", - "time": 1776375174219, - "transaction": { - "data": "0x3ce33bff000000000000000000000000000000000000000000000000000000000000008000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000030c5f60297e7d900000000000000000000000000000000000000000000000000000000000000c0000000000000000000000000000000000000000000000000000000000000000e72656c617941646170746572563200000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001a00000000000000000000000004cd00e387622c35bddb9b4c962c136462338bc310000000000000000000000004cd00e387622c35bddb9b4c962c136462338bc31000000000000000000000000000000000000000000000000000000000000a4b100000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000003056f109a7a576000000000000000000000000000000000000000000000000000000000000014000000000000000000000000000000000000000000000000000006f04f8f04263000000000000000000000000e6b738da243e8fa2a0ed5915645789add5de5152000000000000000000000000000000000000000000000000000000000000004449290c1c000000000000000000000000141d32a89a1e0a5ef360034a2f60a4b917c18838467ded05917cefa50e95b3a483ac35dd45f4a6712ab67d5fc9b8a29617cbde7800000000000000000000000000000000000000000000000000000000de", - "from": "0x141d32a89a1e0a5ef360034a2f60a4b917c18838", - "gas": "0x182f0", - "gasLimit": "0x182f0", - "maxFeePerGas": "0x85a05cbb", - "maxPriorityFeePerGas": "0x7d2b7501", - "nonce": "0x36", - "to": "0x0439e60f02a8900a951603950d8d4527f400c3f1", - "type": "0x2", - "value": "0x30c5f60297e7d9" - } - }, - { - "chainId": "0xa4b1", - "hash": "0x8e50804fe5d9726e6f7a501f27ce71299a28320876c8508d6434e1cbab681dbd", - "networkType": "arbitrum-mainnet", - "networkUrl": "https://arbitrum-mainnet.infura.io/v3/{infuraProjectId}", - "origin": "metamask", - "rawTransaction": "0x02f902f782a4b12b01840158b2318302177c9423981fc34e69eedfe2bd9a0a9fcb0719fe09dbfc8731f8ee5657d8d7b902853ce33bff000000000000000000000000000000000000000000000000000000000000008000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000031f8ee5657d8d700000000000000000000000000000000000000000000000000000000000000c0000000000000000000000000000000000000000000000000000000000000000e72656c617941646170746572563200000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001a00000000000000000000000004cd00e387622c35bddb9b4c962c136462338bc310000000000000000000000004cd00e387622c35bddb9b4c962c136462338bc31000000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000003188f7dce8118c000000000000000000000000000000000000000000000000000000000000014000000000000000000000000000000000000000000000000000006ff6796fc74b00000000000000000000000056ca675c3633cc16bd6849e2b431d4e8de5e23bf000000000000000000000000000000000000000000000000000000000000004449290c1c000000000000000000000000141d32a89a1e0a5ef360034a2f60a4b917c18838d2625815fbdf1c8919355a0504501d72d0c4fb9298773f1feed1f323785582e00000000000000000000000000000000000000000000000000000000013c001a07ac8c0da1c532cd5ebbef36c861896cdf8293ad06c1bf167a577f9b9bfb85019a074b6811e09c82e03eb51562cf185bbfd5f92d73ea39a3bb7801e6a682b9a5822", - "time": 1776375085813, - "transaction": { - "data": "0x3ce33bff000000000000000000000000000000000000000000000000000000000000008000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000031f8ee5657d8d700000000000000000000000000000000000000000000000000000000000000c0000000000000000000000000000000000000000000000000000000000000000e72656c617941646170746572563200000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001a00000000000000000000000004cd00e387622c35bddb9b4c962c136462338bc310000000000000000000000004cd00e387622c35bddb9b4c962c136462338bc31000000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000003188f7dce8118c000000000000000000000000000000000000000000000000000000000000014000000000000000000000000000000000000000000000000000006ff6796fc74b00000000000000000000000056ca675c3633cc16bd6849e2b431d4e8de5e23bf000000000000000000000000000000000000000000000000000000000000004449290c1c000000000000000000000000141d32a89a1e0a5ef360034a2f60a4b917c18838d2625815fbdf1c8919355a0504501d72d0c4fb9298773f1feed1f323785582e00000000000000000000000000000000000000000000000000000000013", - "from": "0x141d32a89a1e0a5ef360034a2f60a4b917c18838", - "gas": "0x2177c", - "gasLimit": "0x2177c", - "maxFeePerGas": "0x158b231", - "maxPriorityFeePerGas": "0x1", - "nonce": "0x2b", - "to": "0x23981fc34e69eedfe2bd9a0a9fcb0719fe09dbfc", - "type": "0x2", - "value": "0x31f8ee5657d8d7" - } - }, - { - "chainId": "0x1", - "hash": "0xca8213d009d229e05f39dcd4400c0cbcfa8223c0749ed2d32b359eb0540a2ef3", - "networkType": "mainnet", - "networkUrl": "https://mainnet.infura.io/v3/{infuraProjectId}", - "origin": "metamask", - "rawTransaction": "0x02f902f90135847d2b750184840cc0ae830182f0940439e60f02a8900a951603950d8d4527f400c3f1873275f98a9082cfb902853ce33bff00000000000000000000000000000000000000000000000000000000000000800000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000003275f98a9082cf00000000000000000000000000000000000000000000000000000000000000c0000000000000000000000000000000000000000000000000000000000000000e72656c617941646170746572563200000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001a00000000000000000000000004cd00e387622c35bddb9b4c962c136462338bc310000000000000000000000004cd00e387622c35bddb9b4c962c136462338bc31000000000000000000000000000000000000000000000000000000000000a4b100000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000003203323223ca870000000000000000000000000000000000000000000000000000000000000140000000000000000000000000000000000000000000000000000072c7586cb848000000000000000000000000e6b738da243e8fa2a0ed5915645789add5de5152000000000000000000000000000000000000000000000000000000000000004449290c1c000000000000000000000000141d32a89a1e0a5ef360034a2f60a4b917c188381035d4e4d6bbeee624d6720ec2f36cee54c7b1f5a981f67c94dc2be864c9a490000000000000000000000000000000000000000000000000000000004ec080a06368063fee71fabff59c208b54692159d12c47a5a6fa62f0c5aacf3c783c432fa04a41744290dc6f9587a31036eda090e3f1fcea9bfc8021a857348f756a4f55ce", - "time": 1776375045523, - "transaction": { - "data": "0x3ce33bff00000000000000000000000000000000000000000000000000000000000000800000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000003275f98a9082cf00000000000000000000000000000000000000000000000000000000000000c0000000000000000000000000000000000000000000000000000000000000000e72656c617941646170746572563200000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001a00000000000000000000000004cd00e387622c35bddb9b4c962c136462338bc310000000000000000000000004cd00e387622c35bddb9b4c962c136462338bc31000000000000000000000000000000000000000000000000000000000000a4b100000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000003203323223ca870000000000000000000000000000000000000000000000000000000000000140000000000000000000000000000000000000000000000000000072c7586cb848000000000000000000000000e6b738da243e8fa2a0ed5915645789add5de5152000000000000000000000000000000000000000000000000000000000000004449290c1c000000000000000000000000141d32a89a1e0a5ef360034a2f60a4b917c188381035d4e4d6bbeee624d6720ec2f36cee54c7b1f5a981f67c94dc2be864c9a490000000000000000000000000000000000000000000000000000000004e", - "from": "0x141d32a89a1e0a5ef360034a2f60a4b917c18838", - "gas": "0x182f0", - "gasLimit": "0x182f0", - "maxFeePerGas": "0x840cc0ae", - "maxPriorityFeePerGas": "0x7d2b7501", - "nonce": "0x35", - "to": "0x0439e60f02a8900a951603950d8d4527f400c3f1", - "type": "0x2", - "value": "0x3275f98a9082cf" - } - }, - { - "chainId": "0x1", - "hash": "0xf64f465a4b4639b9ae2ad7cb53088b42ce1c1c797666a6824f4ec80e6c8d4cd0", - "networkType": "mainnet", - "networkUrl": "https://mainnet.infura.io/v3/{infuraProjectId}", - "origin": "metamask", - "rawTransaction": "0x04f8c90133847735940084832fbdc383010fc594141d32a89a1e0a5ef360034a2f60a4b917c188388080c0f85cf85a019463c0c19a282a1b52b07dd5a65b58948a07dae32b3480a0fb0bc6e688b0e01810b6e373313696a3e12ac017278b94c892e51caec6628fcca00d4c5cb41d97686c7b5a42d2c19ea5acf20b6e55d7a6623d63f4a6d34756ed8a01a03a6fb7be79952478d100ba63191f0899cef61187dce5c00e39d9b05f898a6396a011e1e3f37e0f119bf23071936bf4be330fec944c4f5e22a9cd71c297179bad00", - "time": 1776374997544, - "transaction": { - "authorizationList": [ - { - "address": "0x63c0c19a282a1B52b07dD5a65b58948A07DAE32B", - "chainId": "0x1", - "nonce": "0x34", - "r": "0xfb0bc6e688b0e01810b6e373313696a3e12ac017278b94c892e51caec6628fcc", - "s": "0x0d4c5cb41d97686c7b5a42d2c19ea5acf20b6e55d7a6623d63f4a6d34756ed8a", - "yParity": "0x0" - } - ], - "from": "0x141d32a89a1e0a5ef360034a2f60a4b917c18838", - "gas": "0x10fc5", - "gasLimit": "0x10fc5", - "maxFeePerGas": "0x832fbdc3", - "maxPriorityFeePerGas": "0x77359400", - "nonce": "0x33", - "to": "0x141d32a89a1e0a5ef360034a2f60a4b917c18838", - "type": "0x4", - "value": "0x0" - } - }, - { - "chainId": "0xa4b1", - "hash": "0x6be89108da0ad03063ffa6379f1f718baa52e95147f304f1da51d266ca3f1490", - "networkType": "arbitrum-mainnet", - "networkUrl": "https://arbitrum-mainnet.infura.io/v3/{infuraProjectId}", - "origin": "metamask", - "rawTransaction": "0x04f8c882a4b1298084019c1c6482daca94141d32a89a1e0a5ef360034a2f60a4b917c188388080c0f85ef85c82a4b19463c0c19a282a1b52b07dd5a65b58948a07dae32b2a01a070e1d5ebfa0f9a458d4d2c59f420073b1ab5c519f2ecfd53aac1103e370ffaf1a06f284dbbe07f23c7aefdc5f945e25158fec575c9311e79bc1ec8665fb53e58ed01a06ba4bc4f70f4e203a0096e0a094c41151c938437aec4c8b05db723539e0b424da0777923e24fab5372246edadb9437064430050073259739f4dd0317e139ba7d9d", - "time": 1776374975806, - "transaction": { - "authorizationList": [ - { - "address": "0x63c0c19a282a1B52b07dD5a65b58948A07DAE32B", - "chainId": "0xa4b1", - "nonce": "0x2a", - "r": "0x70e1d5ebfa0f9a458d4d2c59f420073b1ab5c519f2ecfd53aac1103e370ffaf1", - "s": "0x6f284dbbe07f23c7aefdc5f945e25158fec575c9311e79bc1ec8665fb53e58ed", - "yParity": "0x1" - } - ], - "from": "0x141d32a89a1e0a5ef360034a2f60a4b917c18838", - "gas": "0xdaca", - "gasLimit": "0xdaca", - "maxFeePerGas": "0x19c1c64", - "maxPriorityFeePerGas": "0x0", - "nonce": "0x29", - "to": "0x141d32a89a1e0a5ef360034a2f60a4b917c18838", - "type": "0x4", - "value": "0x0" - } - }, - { - "chainId": "0xa4b1", - "hash": "0xa3e05b352b25c37b607c8d6200bfad67e030cc1f1cccfbde23eca29fd25ef0f6", - "networkType": "arbitrum-mainnet", - "networkUrl": "https://arbitrum-mainnet.infura.io/v3/{infuraProjectId}", - "origin": "metamask", - "rawTransaction": "0x02f902f782a4b12801840159479b8301f2fc9423981fc34e69eedfe2bd9a0a9fcb0719fe09dbfc87232d9f0de6e60cb902853ce33bff0000000000000000000000000000000000000000000000000000000000000080000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000232d9f0de6e60c00000000000000000000000000000000000000000000000000000000000000c0000000000000000000000000000000000000000000000000000000000000000e72656c617941646170746572563200000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001a00000000000000000000000004cd00e387622c35bddb9b4c962c136462338bc310000000000000000000000004cd00e387622c35bddb9b4c962c136462338bc310000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000022decbd02a13e5000000000000000000000000000000000000000000000000000000000000014000000000000000000000000000000000000000000000000000004ed33dbcd227000000000000000000000000e3478b0bb1a5084567c319096437924948be1964000000000000000000000000000000000000000000000000000000000000004449290c1c000000000000000000000000141d32a89a1e0a5ef360034a2f60a4b917c188386787355ce639dea1fc3b63506d59cdc0cd151a13cc190e9f6ee8aac4a7a1063c0000000000000000000000000000000000000000000000000000000016c080a0084af2760cc86a3ce1f00c5784561cb1c518496d3cf79b931224c7287dcb179ca04c96c774af11d36c61f7feb03d3339ba043fd69ea2e3ebbc9f8b46c2a3dfc6f2", - "time": 1776373339053, - "transaction": { - "data": "0x3ce33bff0000000000000000000000000000000000000000000000000000000000000080000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000232d9f0de6e60c00000000000000000000000000000000000000000000000000000000000000c0000000000000000000000000000000000000000000000000000000000000000e72656c617941646170746572563200000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001a00000000000000000000000004cd00e387622c35bddb9b4c962c136462338bc310000000000000000000000004cd00e387622c35bddb9b4c962c136462338bc310000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000022decbd02a13e5000000000000000000000000000000000000000000000000000000000000014000000000000000000000000000000000000000000000000000004ed33dbcd227000000000000000000000000e3478b0bb1a5084567c319096437924948be1964000000000000000000000000000000000000000000000000000000000000004449290c1c000000000000000000000000141d32a89a1e0a5ef360034a2f60a4b917c188386787355ce639dea1fc3b63506d59cdc0cd151a13cc190e9f6ee8aac4a7a1063c0000000000000000000000000000000000000000000000000000000016", - "from": "0x141d32a89a1e0a5ef360034a2f60a4b917c18838", - "gas": "0x1f2fc", - "gasLimit": "0x1f2fc", - "maxFeePerGas": "0x159479b", - "maxPriorityFeePerGas": "0x1", - "nonce": "0x28", - "to": "0x23981fc34e69eedfe2bd9a0a9fcb0719fe09dbfc", - "type": "0x2", - "value": "0x232d9f0de6e60c" - } - }, - { - "chainId": "0x1", - "hash": "0xc9d456875588263b7a20cf6de1f6e0665e5702984a09b72fffa4376c7bce440e", - "networkType": "mainnet", - "networkUrl": "https://mainnet.infura.io/v3/{infuraProjectId}", - "origin": "metamask", - "rawTransaction": "0x02f908b9012d847d2b750184828fa6098304ea4594881d40237659c251811cec9c364ef91dc08d300c871609a52b2e216db908455f57552900000000000000000000000000000000000000000000000000000000000000800000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001609a52b2e216d00000000000000000000000000000000000000000000000000000000000000c00000000000000000000000000000000000000000000000000000000000000018756e69737761705065726d69743246656544796e616d6963000000000000000000000000000000000000000000000000000000000000000000000000000007600000000000000000000000000000000000000000000000000000000000000000000000000000000000000000aca92e438df0b2401ff60da7e4337b687a2435da000000000000000000000000000000000000000000000000001609a52b2e216d0000000000000000000000000000000000000000000000000000000000c7370300000000000000000000000000000000000000000000000000000000000001200000000000000000000000000000000000000000000000000000000000000000000000000000000000000000f326e4de8f66a0bdc0970b79e0924e33c79f19150000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000062e3593564c000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000000a00000000000000000000000000000000000000000000000000000000069cdc6fe00000000000000000000000000000000000000000000000000000000000000020b100000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000002000000000000000000000000000000000000000000000000000000000000004000000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000000000000000000000000000000400000000000000000000000000000000000000000000000000000000000000002000000000000000000000000000000000000000000000000001609a52b2e216d00000000000000000000000000000000000000000000000000000000000004a0000000000000000000000000000000000000000000000000000000000000004000000000000000000000000000000000000000000000000000000000000000800000000000000000000000000000000000000000000000000000000000000003070b0e0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000300000000000000000000000000000000000000000000000000000000000000600000000000000000000000000000000000000000000000000000000000000300000000000000000000000000000000000000000000000000000000000000038000000000000000000000000000000000000000000000000000000000000002800000000000000000000000000000000000000000000000000000000000000020000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc20000000000000000000000000000000000000000000000000000000000000080000000000000000000000000000000000000000000000000001609a52b2e216d0000000000000000000000000000000000000000000000000000000000c74b6b000000000000000000000000000000000000000000000000000000000000000200000000000000000000000000000000000000000000000000000000000000400000000000000000000000000000000000000000000000000000000000000100000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb4800000000000000000000000000000000000000000000000000000000000001f4000000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000a00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000aca92e438df0b2401ff60da7e4337b687a2435da00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000060000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000060000000000000000000000000aca92e438df0b2401ff60da7e4337b687a2435da00000000000000000000000074de5d4fcbf63e00296fd95d33236b97940166310000000000000000000000000000000000000000000000000000000000000000756e69780000b2c5de0b0000000000000000000000000000000000007bc001a0a56dd996a7c57e7ce348601ab931bd4a4b69fc55e8b8280d7480ddb4834cfd98a0575100c0f41f213bd198c1c0ae71c0660fccf0b048a9fbf2ae29749f8a8a5edc", - "time": 1775091716679, - "transaction": { - "data": "0x5f57552900000000000000000000000000000000000000000000000000000000000000800000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001609a52b2e216d00000000000000000000000000000000000000000000000000000000000000c00000000000000000000000000000000000000000000000000000000000000018756e69737761705065726d69743246656544796e616d6963000000000000000000000000000000000000000000000000000000000000000000000000000007600000000000000000000000000000000000000000000000000000000000000000000000000000000000000000aca92e438df0b2401ff60da7e4337b687a2435da000000000000000000000000000000000000000000000000001609a52b2e216d0000000000000000000000000000000000000000000000000000000000c7370300000000000000000000000000000000000000000000000000000000000001200000000000000000000000000000000000000000000000000000000000000000000000000000000000000000f326e4de8f66a0bdc0970b79e0924e33c79f19150000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000062e3593564c000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000000a00000000000000000000000000000000000000000000000000000000069cdc6fe00000000000000000000000000000000000000000000000000000000000000020b100000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000002000000000000000000000000000000000000000000000000000000000000004000000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000000000000000000000000000000400000000000000000000000000000000000000000000000000000000000000002000000000000000000000000000000000000000000000000001609a52b2e216d00000000000000000000000000000000000000000000000000000000000004a0000000000000000000000000000000000000000000000000000000000000004000000000000000000000000000000000000000000000000000000000000000800000000000000000000000000000000000000000000000000000000000000003070b0e0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000300000000000000000000000000000000000000000000000000000000000000600000000000000000000000000000000000000000000000000000000000000300000000000000000000000000000000000000000000000000000000000000038000000000000000000000000000000000000000000000000000000000000002800000000000000000000000000000000000000000000000000000000000000020000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc20000000000000000000000000000000000000000000000000000000000000080000000000000000000000000000000000000000000000000001609a52b2e216d0000000000000000000000000000000000000000000000000000000000c74b6b000000000000000000000000000000000000000000000000000000000000000200000000000000000000000000000000000000000000000000000000000000400000000000000000000000000000000000000000000000000000000000000100000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb4800000000000000000000000000000000000000000000000000000000000001f4000000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000a00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000aca92e438df0b2401ff60da7e4337b687a2435da00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000060000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000060000000000000000000000000aca92e438df0b2401ff60da7e4337b687a2435da00000000000000000000000074de5d4fcbf63e00296fd95d33236b97940166310000000000000000000000000000000000000000000000000000000000000000756e69780000b2c5de0b0000000000000000000000000000000000007b", - "from": "0x141d32a89a1e0a5ef360034a2f60a4b917c18838", - "gas": "0x4ea45", - "gasLimit": "0x4ea45", - "maxFeePerGas": "0x828fa609", - "maxPriorityFeePerGas": "0x7d2b7501", - "nonce": "0x2d", - "to": "0x881d40237659c251811cec9c364ef91dc08d300c", - "type": "0x2", - "value": "0x1609a52b2e216d" - } - }, - { - "chainId": "0x1", - "hash": "0xf75d5d747fc430c5af354a224e05976e84ed514581282f2c31c10df88dda1b06", - "networkType": "mainnet", - "networkUrl": "https://mainnet.infura.io/v3/{infuraProjectId}", - "origin": "cancel", - "rawTransaction": "0x02f86b01298489afcd8184940bc28b8304eab994141d32a89a1e0a5ef360034a2f60a4b917c188388080c080a04f95172f95ec43e0969e7d39a8445bc385986b10f35316a960805a4898f0ff73a075251856a3dee54894d86549626b77128e02cf033758ef64254ec378fa3c7e26", - "time": 1774919619991, - "transaction": { - "from": "0x141d32a89a1e0a5ef360034a2f60a4b917c18838", - "gas": "0x4eab9", - "gasLimit": "0x4eab9", - "maxFeePerGas": "0x940bc28b", - "maxPriorityFeePerGas": "0x89afcd81", - "nonce": "0x29", - "to": "0x141d32a89a1e0a5ef360034a2f60a4b917c18838", - "type": "0x2", - "value": "0x0" - } - }, - { - "chainId": "0x1", - "hash": "0x388a90a269ff8b8ad7ae74b50a59354bbb87446ec6202e5c68e6d63c4baf1b53", - "networkType": "mainnet", - "networkUrl": "https://mainnet.infura.io/v3/{infuraProjectId}", - "origin": "cancel", - "rawTransaction": "0x02f86b01288489afcd8184940bc28b8304eab994141d32a89a1e0a5ef360034a2f60a4b917c188388080c080a0dc675b395e65f5a581ce23c09f6728aa7b4e11e9017325d7698eec08bca3cc7fa0401e5f1a8ea2fc4967499a2e418864c6aee38523479d43c4041f629feb9e0cb3", - "time": 1774919600359, - "transaction": { - "from": "0x141d32a89a1e0a5ef360034a2f60a4b917c18838", - "gas": "0x4eab9", - "gasLimit": "0x4eab9", - "maxFeePerGas": "0x940bc28b", - "maxPriorityFeePerGas": "0x89afcd81", - "nonce": "0x28", - "to": "0x141d32a89a1e0a5ef360034a2f60a4b917c18838", - "type": "0x2", - "value": "0x0" - } - }, - { - "chainId": "0x38", - "hash": "0xae30084eaf284525cec45c638035350e52fe62d662043ed7f02b73eba7789c3d", - "networkType": "bsc-mainnet", - "networkUrl": "https://bsc-mainnet.infura.io/v3/{infuraProjectId}", - "origin": "metamask", - "rawTransaction": "0x02f907d138268403938700840393870083074dd694f25bd11c334507fd007d584e2d0b7b2c6543f71480b90764e9ae5c530100000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000004000000000000000000000000000000000000000000000000000000000000007000000000000000000000000000000000000000000000000000000000000000020000000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000000000200000000000000000000000001a1ec25dc08e98e5e93f1104b5e5cdd298707d310000000000000000000000000000000000000000000000000006d881b3858a52000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000006055f575529000000000000000000000000000000000000000000000000000000000000008000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000006d881b3858a5200000000000000000000000000000000000000000000000000000000000000c000000000000000000000000000000000000000000000000000000000000000136f6e65496e6368563646656544796e616d6963000000000000000000000000000000000000000000000000000000000000000000000000000000000000000520000000000000000000000000000000000000000000000000000000000000000000000000000000000000000055d398326f99059ff775485246999027b31979550000000000000000000000000000000000000000000000000006c8f49880669900000000000000000000000000000000000000000000000010c874746e876e9e000000000000000000000000000000000000000000000000000000000000012000000000000000000000000000000000000000000000000000000f8d1b0523b9000000000000000000000000b28da7bc87a9dd1e60849aa7fcb5da24ea913c42000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000003e807ed2379000000000000000000000000990636ecb3ff04d33d92e970d3d588bf5cd8d086000000000000000000000000eeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeee00000000000000000000000055d398326f99059ff775485246999027b3197955000000000000000000000000990636ecb3ff04d33d92e970d3d588bf5cd8d086000000000000000000000000c590175e458b83680867afd273527ff58f74c02b0000000000000000000000000000000000000000000000000006c8f49880669900000000000000000000000000000000000000000000000010c874746e876e9e00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000120000000000000000000000000000000000000000000000000000000000000029600000000000000000000000000000000000000000000027800006800004e00a0744c8c09000000000000000000000000000000000000000090cbe4bdd538d6e9b379bff5fe72c3d67a521de50000000000000000000000000000000000000000000000000000002c774fae174041bb4cdb9cbd36b01bd1cbaebf2de08d9173bc095cd0e30db05120111111125421ca6dc452d289314280a0f8842a65bb4cdb9cbd36b01bd1cbaebf2de08d9173bc095c0144f497df7500000000000000000000000000000000000000003715d1d0232ac4447f6009980000000000000000000000009e229b12cc9081d6a510b29ccbd6311743e277ed000000000000000000000000000000000000000000000000000000000000000000000000000000000000000055d398326f99059ff775485246999027b3197955000000000000000000000000bb4cdb9cbd36b01bd1cbaebf2de08d9173bc095c0000000000000000000000000000000000000000000000001120233d56a98be40000000000000000000000000000000000000000000000000006c8c82130b882000000000000000000000000000025fadc0069c4354ce970d3d588bf5cd8d086e47098645a2144638d1b3f7eab3a305949d50d218bb44701c499ed6c3aa82c8a6c6ee726c8ce79253fed337d67fba0a8acfc9f2e8692826a11c8a2eaffafe5010000000000000000000000000000000000000000000000000000000000000000280000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001a00000000000000000000000000000000000000000000000000000000000000014111111125421ca6dc452d289314280a0f8842a65000000000000000000000000000000000000000000007dcbea7c000000000000000000000000000000000000000000000000b8000000000000000000000000000000000000000000000000000000c080a0e7a8958b899a8f484aa7bdde4ddb5b9193a542fbd3f3253f2be02e184aaa47dfa07d254c4a64dfbe16de62a22b75e1d5b20d5da8d3ea5aecbdf6d11afb2c0b33c0", - "time": 1774466322908, - "transaction": { - "data": "0xe9ae5c530100000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000004000000000000000000000000000000000000000000000000000000000000007000000000000000000000000000000000000000000000000000000000000000020000000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000000000200000000000000000000000001a1ec25dc08e98e5e93f1104b5e5cdd298707d310000000000000000000000000000000000000000000000000006d881b3858a52000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000006055f575529000000000000000000000000000000000000000000000000000000000000008000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000006d881b3858a5200000000000000000000000000000000000000000000000000000000000000c000000000000000000000000000000000000000000000000000000000000000136f6e65496e6368563646656544796e616d6963000000000000000000000000000000000000000000000000000000000000000000000000000000000000000520000000000000000000000000000000000000000000000000000000000000000000000000000000000000000055d398326f99059ff775485246999027b31979550000000000000000000000000000000000000000000000000006c8f49880669900000000000000000000000000000000000000000000000010c874746e876e9e000000000000000000000000000000000000000000000000000000000000012000000000000000000000000000000000000000000000000000000f8d1b0523b9000000000000000000000000b28da7bc87a9dd1e60849aa7fcb5da24ea913c42000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000003e807ed2379000000000000000000000000990636ecb3ff04d33d92e970d3d588bf5cd8d086000000000000000000000000eeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeee00000000000000000000000055d398326f99059ff775485246999027b3197955000000000000000000000000990636ecb3ff04d33d92e970d3d588bf5cd8d086000000000000000000000000c590175e458b83680867afd273527ff58f74c02b0000000000000000000000000000000000000000000000000006c8f49880669900000000000000000000000000000000000000000000000010c874746e876e9e00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000120000000000000000000000000000000000000000000000000000000000000029600000000000000000000000000000000000000000000027800006800004e00a0744c8c09000000000000000000000000000000000000000090cbe4bdd538d6e9b379bff5fe72c3d67a521de50000000000000000000000000000000000000000000000000000002c774fae174041bb4cdb9cbd36b01bd1cbaebf2de08d9173bc095cd0e30db05120111111125421ca6dc452d289314280a0f8842a65bb4cdb9cbd36b01bd1cbaebf2de08d9173bc095c0144f497df7500000000000000000000000000000000000000003715d1d0232ac4447f6009980000000000000000000000009e229b12cc9081d6a510b29ccbd6311743e277ed000000000000000000000000000000000000000000000000000000000000000000000000000000000000000055d398326f99059ff775485246999027b3197955000000000000000000000000bb4cdb9cbd36b01bd1cbaebf2de08d9173bc095c0000000000000000000000000000000000000000000000001120233d56a98be40000000000000000000000000000000000000000000000000006c8c82130b882000000000000000000000000000025fadc0069c4354ce970d3d588bf5cd8d086e47098645a2144638d1b3f7eab3a305949d50d218bb44701c499ed6c3aa82c8a6c6ee726c8ce79253fed337d67fba0a8acfc9f2e8692826a11c8a2eaffafe5010000000000000000000000000000000000000000000000000000000000000000280000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001a00000000000000000000000000000000000000000000000000000000000000014111111125421ca6dc452d289314280a0f8842a65000000000000000000000000000000000000000000007dcbea7c000000000000000000000000000000000000000000000000b8000000000000000000000000000000000000000000000000000000", - "from": "0xf25bd11c334507fd007d584e2d0b7b2c6543f714", - "gas": "0x74dd6", - "gasLimit": "0x74dd6", - "maxFeePerGas": "0x3938700", - "maxPriorityFeePerGas": "0x3938700", - "nonce": "0x26", - "to": "0xf25bd11c334507fd007d584e2d0b7b2c6543f714", - "type": "0x2", - "value": "0x0" - } - }, - { - "chainId": "0x38", - "hash": "0x24c05fae8dc1a6132fbf2c35bd0f6f6b10e0041ba70d30b753a396a5a02f1c7c", - "networkType": "bsc-mainnet", - "networkUrl": "https://bsc-mainnet.infura.io/v3/{infuraProjectId}", - "origin": "metamask", - "rawTransaction": "0x02f90bd138258403938700840393870083085bbd94f25bd11c334507fd007d584e2d0b7b2c6543f71480b90b64e9ae5c53010000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000400000000000000000000000000000000000000000000000000000000000000b000000000000000000000000000000000000000000000000000000000000000020000000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000000000200000000000000000000000001a1ec25dc08e98e5e93f1104b5e5cdd298707d310000000000000000000000000000000000000000000000000006dcbe97894ad200000000000000000000000000000000000000000000000000000000000000600000000000000000000000000000000000000000000000000000000000000a055f575529000000000000000000000000000000000000000000000000000000000000008000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000006dcbe97894ad200000000000000000000000000000000000000000000000000000000000000c0000000000000000000000000000000000000000000000000000000000000000430785632000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000920000000000000000000000000000000000000000000000000000000000000000000000000000000000000000055d398326f99059ff775485246999027b31979550000000000000000000000000000000000000000000000000006cd296fe8bdc900000000000000000000000000000000000000000000000010d4b4c624030582000000000000000000000000000000000000000000000000000000000000012000000000000000000000000000000000000000000000000000000f9527a08d09000000000000000000000000b28da7bc87a9dd1e60849aa7fcb5da24ea913c42000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000007e42213bc0b000000000000000000000000b7cbad7dd322bd1610c61c539ff2d36909055f5400000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000006cd296fe8bdc9000000000000000000000000b7cbad7dd322bd1610c61c539ff2d36909055f5400000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000000000000000000000000000007041fff991f000000000000000000000000c590175e458b83680867afd273527ff58f74c02b00000000000000000000000055d398326f99059ff775485246999027b31979550000000000000000000000000000000000000000000000001100ac2b6d858f9400000000000000000000000000000000000000000000000000000000000000a031f5a9bf2e43f83e735ddb3d0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000500000000000000000000000000000000000000000000000000000000000000a00000000000000000000000000000000000000000000000000000000000000120000000000000000000000000000000000000000000000000000000000000026000000000000000000000000000000000000000000000000000000000000003a000000000000000000000000000000000000000000000000000000000000005800000000000000000000000000000000000000000000000000000000000000044bd01c2260000000000000000000000000000000000000000000000000000000069c436030000000000000000000000000000000000000000000000000006cd296fe8bdc900000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000010438c9c147000000000000000000000000eeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeee0000000000000000000000000000000000000000000000000000000000002710000000000000000000000000bb4cdb9cbd36b01bd1cbaebf2de08d9173bc095c000000000000000000000000000000000000000000000000000000000000000400000000000000000000000000000000000000000000000000000000000000a00000000000000000000000000000000000000000000000000000000000000024d0e30db000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000010438c9c147000000000000000000000000bb4cdb9cbd36b01bd1cbaebf2de08d9173bc095c0000000000000000000000000000000000000000000000000000000000002710000000000000000000000000bb4cdb9cbd36b01bd1cbaebf2de08d9173bc095c000000000000000000000000000000000000000000000000000000000000000400000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000000000000000000000000000000242e1a7d4d0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001a4df753f1e000000000000000000000000b7cbad7dd322bd1610c61c539ff2d36909055f54000000000000000000000000eeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeee000000000000000000000000000000000000000000000000000000000000271000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000002000000000000000000000000000000000000000000000000ffffffffffffffc5000000000000000000000000000000000000000000000000000000000000010000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000066271000000000000000000000000000000001000276a40155d398326f99059ff775485246999027b31979550000000000000000000000000000000000000000000000430000000000000000000000000000000000000000000000000000000000010000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000008434ee90ca000000000000000000000000d0a67cb08be17475f4315a04c5f0be3e200ef66c00000000000000000000000055d398326f99059ff775485246999027b3197955000000000000000000000000000000000000000000000000112db5c7fa85ea070000000000000000000000000000000000000000000000000000000000002710000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000b0000000000000000000000000000000000000000000000000000000c080a0b996b29412a7e3e6e33df2a7917d19cdbd35216456b3b82252abd934759bb578a049af2cd1da7987c0b35575f2c7b23677bb352910aa2a5fca4f3031fc34005adf", - "time": 1774466266041, - "transaction": { - "data": "0xe9ae5c53010000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000400000000000000000000000000000000000000000000000000000000000000b000000000000000000000000000000000000000000000000000000000000000020000000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000000000200000000000000000000000001a1ec25dc08e98e5e93f1104b5e5cdd298707d310000000000000000000000000000000000000000000000000006dcbe97894ad200000000000000000000000000000000000000000000000000000000000000600000000000000000000000000000000000000000000000000000000000000a055f575529000000000000000000000000000000000000000000000000000000000000008000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000006dcbe97894ad200000000000000000000000000000000000000000000000000000000000000c0000000000000000000000000000000000000000000000000000000000000000430785632000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000920000000000000000000000000000000000000000000000000000000000000000000000000000000000000000055d398326f99059ff775485246999027b31979550000000000000000000000000000000000000000000000000006cd296fe8bdc900000000000000000000000000000000000000000000000010d4b4c624030582000000000000000000000000000000000000000000000000000000000000012000000000000000000000000000000000000000000000000000000f9527a08d09000000000000000000000000b28da7bc87a9dd1e60849aa7fcb5da24ea913c42000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000007e42213bc0b000000000000000000000000b7cbad7dd322bd1610c61c539ff2d36909055f5400000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000006cd296fe8bdc9000000000000000000000000b7cbad7dd322bd1610c61c539ff2d36909055f5400000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000000000000000000000000000007041fff991f000000000000000000000000c590175e458b83680867afd273527ff58f74c02b00000000000000000000000055d398326f99059ff775485246999027b31979550000000000000000000000000000000000000000000000001100ac2b6d858f9400000000000000000000000000000000000000000000000000000000000000a031f5a9bf2e43f83e735ddb3d0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000500000000000000000000000000000000000000000000000000000000000000a00000000000000000000000000000000000000000000000000000000000000120000000000000000000000000000000000000000000000000000000000000026000000000000000000000000000000000000000000000000000000000000003a000000000000000000000000000000000000000000000000000000000000005800000000000000000000000000000000000000000000000000000000000000044bd01c2260000000000000000000000000000000000000000000000000000000069c436030000000000000000000000000000000000000000000000000006cd296fe8bdc900000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000010438c9c147000000000000000000000000eeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeee0000000000000000000000000000000000000000000000000000000000002710000000000000000000000000bb4cdb9cbd36b01bd1cbaebf2de08d9173bc095c000000000000000000000000000000000000000000000000000000000000000400000000000000000000000000000000000000000000000000000000000000a00000000000000000000000000000000000000000000000000000000000000024d0e30db000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000010438c9c147000000000000000000000000bb4cdb9cbd36b01bd1cbaebf2de08d9173bc095c0000000000000000000000000000000000000000000000000000000000002710000000000000000000000000bb4cdb9cbd36b01bd1cbaebf2de08d9173bc095c000000000000000000000000000000000000000000000000000000000000000400000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000000000000000000000000000000242e1a7d4d0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001a4df753f1e000000000000000000000000b7cbad7dd322bd1610c61c539ff2d36909055f54000000000000000000000000eeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeee000000000000000000000000000000000000000000000000000000000000271000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000002000000000000000000000000000000000000000000000000ffffffffffffffc5000000000000000000000000000000000000000000000000000000000000010000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000066271000000000000000000000000000000001000276a40155d398326f99059ff775485246999027b31979550000000000000000000000000000000000000000000000430000000000000000000000000000000000000000000000000000000000010000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000008434ee90ca000000000000000000000000d0a67cb08be17475f4315a04c5f0be3e200ef66c00000000000000000000000055d398326f99059ff775485246999027b3197955000000000000000000000000000000000000000000000000112db5c7fa85ea070000000000000000000000000000000000000000000000000000000000002710000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000b0000000000000000000000000000000000000000000000000000000", - "from": "0xf25bd11c334507fd007d584e2d0b7b2c6543f714", - "gas": "0x85bbd", - "gasLimit": "0x85bbd", - "maxFeePerGas": "0x3938700", - "maxPriorityFeePerGas": "0x3938700", - "nonce": "0x25", - "to": "0xf25bd11c334507fd007d584e2d0b7b2c6543f714", - "type": "0x2", - "value": "0x0" - } - }, - { - "chainId": "0x38", - "hash": "0xe2c4a8d392e591179103675a0726ffe5755e495f6a72f165ea96cab30250c91d", - "networkType": "bsc-mainnet", - "networkUrl": "https://bsc-mainnet.infura.io/v3/{infuraProjectId}", - "origin": "metamask", - "rawTransaction": "0x02f9067938238403938700840393870083075302941a1ec25dc08e98e5e93f1104b5e5cdd298707d3187078656e2a22cbbb906055f5755290000000000000000000000000000000000000000000000000000000000000080000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000078656e2a22cbb00000000000000000000000000000000000000000000000000000000000000c000000000000000000000000000000000000000000000000000000000000000136f6e65496e6368563646656544796e616d6963000000000000000000000000000000000000000000000000000000000000000000000000000000000000000520000000000000000000000000000000000000000000000000000000000000000000000000000000000000000055d398326f99059ff775485246999027b319795500000000000000000000000000000000000000000000000000077541361b28cc0000000000000000000000000000000000000000000000001269cede51e1b8b3000000000000000000000000000000000000000000000000000000000000012000000000000000000000000000000000000000000000000000001115ac8703ef000000000000000000000000b28da7bc87a9dd1e60849aa7fcb5da24ea913c42000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000003e807ed2379000000000000000000000000990636ecb3ff04d33d92e970d3d588bf5cd8d086000000000000000000000000eeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeee00000000000000000000000055d398326f99059ff775485246999027b3197955000000000000000000000000990636ecb3ff04d33d92e970d3d588bf5cd8d086000000000000000000000000c590175e458b83680867afd273527ff58f74c02b00000000000000000000000000000000000000000000000000077541361b28cc0000000000000000000000000000000000000000000000001269cede51e1b8b300000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000120000000000000000000000000000000000000000000000000000000000000029600000000000000000000000000000000000000000000027800006800004e00a0744c8c09000000000000000000000000000000000000000090cbe4bdd538d6e9b379bff5fe72c3d67a521de500000000000000000000000000000000000000000000000000000030e07de74c4041bb4cdb9cbd36b01bd1cbaebf2de08d9173bc095cd0e30db05120111111125421ca6dc452d289314280a0f8842a65bb4cdb9cbd36b01bd1cbaebf2de08d9173bc095c0144f497df7500000000000000000000000000000000000000005ad6d62a52eab605f6cbc8fc0000000000000000000000009e229b12cc9081d6a510b29ccbd6311743e277ed000000000000000000000000000000000000000000000000000000000000000000000000000000000000000055d398326f99059ff775485246999027b3197955000000000000000000000000bb4cdb9cbd36b01bd1cbaebf2de08d9173bc095c00000000000000000000000000000000000000000000000012ca021c538d843a00000000000000000000000000000000000000000000000000077510559d4180000000000000000000000000000025e9590069c43128e970d3d588bf5cd8d08633bfdf9162718856f2d865a26cc05e058c83cf00491f0c9cef4e0b7186fbfb84d9db588b0223b91b4a1f96c87d0c8a711eb3be0c8a965f77fbc05def2cd96ed10000000000000000000000000000000000000000000000000000000000000000280000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001a00000000000000000000000000000000000000000000000000000000000000014111111125421ca6dc452d289314280a0f8842a65000000000000000000000000000000000000000000007dcbea7c00000000000000000000000000000000000000000000000084c080a083b305c61ed781408581eb69a2f4a7c71c331499fc355ff27dbc8dcbb2e57e99a00d71314780882f03e68d2ac196a5cdf5209d39be6cf01d12b2b8ab4f615c2d70", - "time": 1774465263849, - "transaction": { - "data": "0x5f5755290000000000000000000000000000000000000000000000000000000000000080000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000078656e2a22cbb00000000000000000000000000000000000000000000000000000000000000c000000000000000000000000000000000000000000000000000000000000000136f6e65496e6368563646656544796e616d6963000000000000000000000000000000000000000000000000000000000000000000000000000000000000000520000000000000000000000000000000000000000000000000000000000000000000000000000000000000000055d398326f99059ff775485246999027b319795500000000000000000000000000000000000000000000000000077541361b28cc0000000000000000000000000000000000000000000000001269cede51e1b8b3000000000000000000000000000000000000000000000000000000000000012000000000000000000000000000000000000000000000000000001115ac8703ef000000000000000000000000b28da7bc87a9dd1e60849aa7fcb5da24ea913c42000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000003e807ed2379000000000000000000000000990636ecb3ff04d33d92e970d3d588bf5cd8d086000000000000000000000000eeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeee00000000000000000000000055d398326f99059ff775485246999027b3197955000000000000000000000000990636ecb3ff04d33d92e970d3d588bf5cd8d086000000000000000000000000c590175e458b83680867afd273527ff58f74c02b00000000000000000000000000000000000000000000000000077541361b28cc0000000000000000000000000000000000000000000000001269cede51e1b8b300000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000120000000000000000000000000000000000000000000000000000000000000029600000000000000000000000000000000000000000000027800006800004e00a0744c8c09000000000000000000000000000000000000000090cbe4bdd538d6e9b379bff5fe72c3d67a521de500000000000000000000000000000000000000000000000000000030e07de74c4041bb4cdb9cbd36b01bd1cbaebf2de08d9173bc095cd0e30db05120111111125421ca6dc452d289314280a0f8842a65bb4cdb9cbd36b01bd1cbaebf2de08d9173bc095c0144f497df7500000000000000000000000000000000000000005ad6d62a52eab605f6cbc8fc0000000000000000000000009e229b12cc9081d6a510b29ccbd6311743e277ed000000000000000000000000000000000000000000000000000000000000000000000000000000000000000055d398326f99059ff775485246999027b3197955000000000000000000000000bb4cdb9cbd36b01bd1cbaebf2de08d9173bc095c00000000000000000000000000000000000000000000000012ca021c538d843a00000000000000000000000000000000000000000000000000077510559d4180000000000000000000000000000025e9590069c43128e970d3d588bf5cd8d08633bfdf9162718856f2d865a26cc05e058c83cf00491f0c9cef4e0b7186fbfb84d9db588b0223b91b4a1f96c87d0c8a711eb3be0c8a965f77fbc05def2cd96ed10000000000000000000000000000000000000000000000000000000000000000280000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001a00000000000000000000000000000000000000000000000000000000000000014111111125421ca6dc452d289314280a0f8842a65000000000000000000000000000000000000000000007dcbea7c00000000000000000000000000000000000000000000000084", - "from": "0xf25bd11c334507fd007d584e2d0b7b2c6543f714", - "gas": "0x75302", - "gasLimit": "0x75302", - "maxFeePerGas": "0x3938700", - "maxPriorityFeePerGas": "0x3938700", - "nonce": "0x23", - "to": "0x1a1ec25dc08e98e5e93f1104b5e5cdd298707d31", - "type": "0x2", - "value": "0x78656e2a22cbb" - } - }, - { - "chainId": "0x38", - "hash": "0x6b505990c88b14267dd67a0d2dc2aff452201ed408f3311fba1c3e5e5ea9ef34", - "networkType": "bsc-mainnet", - "networkUrl": "https://bsc-mainnet.infura.io/v3/{infuraProjectId}", - "origin": "metamask", - "rawTransaction": "0x02f90759381e8403938700840393870083050e4b941a1ec25dc08e98e5e93f1104b5e5cdd298707d318708a6db77117f48b906e55f575529000000000000000000000000000000000000000000000000000000000000008000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000008a6db77117f4800000000000000000000000000000000000000000000000000000000000000c00000000000000000000000000000000000000000000000000000000000000018756e69737761705065726d69743246656544796e616d696300000000000000000000000000000000000000000000000000000000000000000000000000000600000000000000000000000000000000000000000000000000000000000000000000000000000000000000000055d398326f99059ff775485246999027b319795500000000000000000000000000000000000000000000000000089351aee2b4d30000000000000000000000000000000000000000000000001532dae41ae03d85000000000000000000000000000000000000000000000000000000000000012000000000000000000000000000000000000000000000000000001389c82eca75000000000000000000000000b28da7bc87a9dd1e60849aa7fcb5da24ea913c42000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000004ce3593564c000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000000a00000000000000000000000000000000000000000000000000000000069c430c4000000000000000000000000000000000000000000000000000000000000000110000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000002000000000000000000000000000000000000000000000000000000000000003c0000000000000000000000000000000000000000000000000000000000000004000000000000000000000000000000000000000000000000000000000000000800000000000000000000000000000000000000000000000000000000000000003070b0e000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000030000000000000000000000000000000000000000000000000000000000000060000000000000000000000000000000000000000000000000000000000000022000000000000000000000000000000000000000000000000000000000000002a000000000000000000000000000000000000000000000000000000000000001a000000000000000000000000000000000000000000000000000000000000000200000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000008000000000000000000000000000000000000000000000000000089351aee2b4d3000000000000000000000000000000000000000000000000153506d2c8030eba0000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000002000000000000000000000000055d398326f99059ff775485246999027b319795500000000000000000000000000000000000000000000000000000000000000640000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000060000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000006000000000000000000000000055d398326f99059ff775485246999027b3197955000000000000000000000000c590175e458b83680867afd273527ff58f74c02b0000000000000000000000000000000000000000000000000000000000000000756e69780000000000810000000000000000000000000000000000007ac001a0c8ce750653d8aa29d3f4bd5d953b3f839678832f3ace4d6dce5c2e9de5168ea1a04ea7744f74b80740d1fe0be7147cbd609c8fe9b351ce1e5ada80368c81610d67", - "time": 1774463440875, - "transaction": { - "data": "0x5f575529000000000000000000000000000000000000000000000000000000000000008000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000008a6db77117f4800000000000000000000000000000000000000000000000000000000000000c00000000000000000000000000000000000000000000000000000000000000018756e69737761705065726d69743246656544796e616d696300000000000000000000000000000000000000000000000000000000000000000000000000000600000000000000000000000000000000000000000000000000000000000000000000000000000000000000000055d398326f99059ff775485246999027b319795500000000000000000000000000000000000000000000000000089351aee2b4d30000000000000000000000000000000000000000000000001532dae41ae03d85000000000000000000000000000000000000000000000000000000000000012000000000000000000000000000000000000000000000000000001389c82eca75000000000000000000000000b28da7bc87a9dd1e60849aa7fcb5da24ea913c42000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000004ce3593564c000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000000a00000000000000000000000000000000000000000000000000000000069c430c4000000000000000000000000000000000000000000000000000000000000000110000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000002000000000000000000000000000000000000000000000000000000000000003c0000000000000000000000000000000000000000000000000000000000000004000000000000000000000000000000000000000000000000000000000000000800000000000000000000000000000000000000000000000000000000000000003070b0e000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000030000000000000000000000000000000000000000000000000000000000000060000000000000000000000000000000000000000000000000000000000000022000000000000000000000000000000000000000000000000000000000000002a000000000000000000000000000000000000000000000000000000000000001a000000000000000000000000000000000000000000000000000000000000000200000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000008000000000000000000000000000000000000000000000000000089351aee2b4d3000000000000000000000000000000000000000000000000153506d2c8030eba0000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000002000000000000000000000000055d398326f99059ff775485246999027b319795500000000000000000000000000000000000000000000000000000000000000640000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000060000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000006000000000000000000000000055d398326f99059ff775485246999027b3197955000000000000000000000000c590175e458b83680867afd273527ff58f74c02b0000000000000000000000000000000000000000000000000000000000000000756e69780000000000810000000000000000000000000000000000007a", - "from": "0xf25bd11c334507fd007d584e2d0b7b2c6543f714", - "gas": "0x50e4b", - "gasLimit": "0x50e4b", - "maxFeePerGas": "0x3938700", - "maxPriorityFeePerGas": "0x3938700", - "nonce": "0x1e", - "to": "0x1a1ec25dc08e98e5e93f1104b5e5cdd298707d31", - "type": "0x2", - "value": "0x8a6db77117f48" - } - }, - { - "chainId": "0x38", - "hash": "0x16eba8645da99424b4f940e076f330246a6fbb6d8edbcf80b65ff93b84fc4570", - "networkType": "bsc-mainnet", - "networkUrl": "https://bsc-mainnet.infura.io/v3/{infuraProjectId}", - "origin": "metamask", - "rawTransaction": "0x02f90671381d840393870084039387008305f19694f25bd11c334507fd007d584e2d0b7b2c6543f71480b90604e9ae5c530100000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000004000000000000000000000000000000000000000000000000000000000000005a00000000000000000000000000000000000000000000000000000000000000020000000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000000000200000000000000000000000001a1ec25dc08e98e5e93f1104b5e5cdd298707d310000000000000000000000000000000000000000000000000008a942c0afd348000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000004a55f575529000000000000000000000000000000000000000000000000000000000000008000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000008a942c0afd34800000000000000000000000000000000000000000000000000000000000000c00000000000000000000000000000000000000000000000000000000000000018756e69737761705065726d69743246656544796e616d6963000000000000000000000000000000000000000000000000000000000000000000000000000003c0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000055d398326f99059ff775485246999027b3197955000000000000000000000000000000000000000000000000000895b3961276c3000000000000000000000000000000000000000000000000153b5d48b863a9aa00000000000000000000000000000000000000000000000000000000000001200000000000000000000000000000000000000000000000000000138f2a9d5c85000000000000000000000000b28da7bc87a9dd1e60849aa7fcb5da24ea913c420000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000028e3593564c000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000000a00000000000000000000000000000000000000000000000000000000069c4301700000000000000000000000000000000000000000000000000000000000000020b000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000002000000000000000000000000000000000000000000000000000000000000004000000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000000000000000000000000000000400000000000000000000000000000000000000000000000000000000000000002000000000000000000000000000000000000000000000000000895b3961276c30000000000000000000000000000000000000000000000000000000000000100000000000000000000000000c590175e458b83680867afd273527ff58f74c02b000000000000000000000000000000000000000000000000000895b3961276c3000000000000000000000000000000000000000000000000153d8a168da48c3b00000000000000000000000000000000000000000000000000000000000000a00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000002bbb4cdb9cbd36b01bd1cbaebf2de08d9173bc095c00006455d398326f99059ff775485246999027b3197955000000000000000000000000000000000000000000756e6978000000000081000000000000000000000000000000000000ca000000000000000000000000000000000000000000000000000000c080a0c9b7b0c01716885e25ddf639171f44842ed50f092e32070c95b8adcbbb8491aaa00c502598a742fa31e4d181605a9b830199d86051325958337973baef34433bdc", - "time": 1774463252307, - "transaction": { - "data": "0xe9ae5c530100000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000004000000000000000000000000000000000000000000000000000000000000005a00000000000000000000000000000000000000000000000000000000000000020000000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000000000200000000000000000000000001a1ec25dc08e98e5e93f1104b5e5cdd298707d310000000000000000000000000000000000000000000000000008a942c0afd348000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000004a55f575529000000000000000000000000000000000000000000000000000000000000008000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000008a942c0afd34800000000000000000000000000000000000000000000000000000000000000c00000000000000000000000000000000000000000000000000000000000000018756e69737761705065726d69743246656544796e616d6963000000000000000000000000000000000000000000000000000000000000000000000000000003c0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000055d398326f99059ff775485246999027b3197955000000000000000000000000000000000000000000000000000895b3961276c3000000000000000000000000000000000000000000000000153b5d48b863a9aa00000000000000000000000000000000000000000000000000000000000001200000000000000000000000000000000000000000000000000000138f2a9d5c85000000000000000000000000b28da7bc87a9dd1e60849aa7fcb5da24ea913c420000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000028e3593564c000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000000a00000000000000000000000000000000000000000000000000000000069c4301700000000000000000000000000000000000000000000000000000000000000020b000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000002000000000000000000000000000000000000000000000000000000000000004000000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000000000000000000000000000000400000000000000000000000000000000000000000000000000000000000000002000000000000000000000000000000000000000000000000000895b3961276c30000000000000000000000000000000000000000000000000000000000000100000000000000000000000000c590175e458b83680867afd273527ff58f74c02b000000000000000000000000000000000000000000000000000895b3961276c3000000000000000000000000000000000000000000000000153d8a168da48c3b00000000000000000000000000000000000000000000000000000000000000a00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000002bbb4cdb9cbd36b01bd1cbaebf2de08d9173bc095c00006455d398326f99059ff775485246999027b3197955000000000000000000000000000000000000000000756e6978000000000081000000000000000000000000000000000000ca000000000000000000000000000000000000000000000000000000", - "from": "0xf25bd11c334507fd007d584e2d0b7b2c6543f714", - "gas": "0x5f196", - "gasLimit": "0x5f196", - "maxFeePerGas": "0x3938700", - "maxPriorityFeePerGas": "0x3938700", - "nonce": "0x1d", - "to": "0xf25bd11c334507fd007d584e2d0b7b2c6543f714", - "type": "0x2", - "value": "0x0" - } - }, - { - "chainId": "0x38", - "hash": "0x751d896dc840a31c715e68fd6bc4a34cc55a2289d742a6125200cb59c615e7d3", - "networkType": "bsc-mainnet", - "networkUrl": "https://bsc-mainnet.infura.io/v3/{infuraProjectId}", - "origin": "metamask", - "rawTransaction": "0x02f90759381c84039387008403938700830599da941a1ec25dc08e98e5e93f1104b5e5cdd298707d3187090c34216dd3d4b906e55f5755290000000000000000000000000000000000000000000000000000000000000080000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000090c34216dd3d400000000000000000000000000000000000000000000000000000000000000c00000000000000000000000000000000000000000000000000000000000000018756e69737761705065726d69743246656544796e616d696300000000000000000000000000000000000000000000000000000000000000000000000000000600000000000000000000000000000000000000000000000000000000000000000000000000000000000000000055d398326f99059ff775485246999027b31979550000000000000000000000000000000000000000000000000008f7c2f735ebe0000000000000000000000000000000000000000000000000162f59c416606ea80000000000000000000000000000000000000000000000000000000000000120000000000000000000000000000000000000000000000000000014712a37e7f4000000000000000000000000b28da7bc87a9dd1e60849aa7fcb5da24ea913c42000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000004ce3593564c000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000000a00000000000000000000000000000000000000000000000000000000069c42f86000000000000000000000000000000000000000000000000000000000000000110000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000002000000000000000000000000000000000000000000000000000000000000003c0000000000000000000000000000000000000000000000000000000000000004000000000000000000000000000000000000000000000000000000000000000800000000000000000000000000000000000000000000000000000000000000003070b0e000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000030000000000000000000000000000000000000000000000000000000000000060000000000000000000000000000000000000000000000000000000000000022000000000000000000000000000000000000000000000000000000000000002a000000000000000000000000000000000000000000000000000000000000001a00000000000000000000000000000000000000000000000000000000000000020000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000800000000000000000000000000000000000000000000000000008f7c2f735ebe000000000000000000000000000000000000000000000000016319f906ee5078b0000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000002000000000000000000000000055d398326f99059ff775485246999027b319795500000000000000000000000000000000000000000000000000000000000000640000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000060000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000006000000000000000000000000055d398326f99059ff775485246999027b3197955000000000000000000000000c590175e458b83680867afd273527ff58f74c02b0000000000000000000000000000000000000000000000000000000000000000756e69780000000000810000000000000000000000000000000000000ec080a0ba8b9749b16a26b1d8c8911588967d87ee1e4bc0cd1a4b25ba94abf156dc9126a05759df63459dc3e0cc37c664b404eeff1cf65b1e764b28468264c1d5d2e1664c", - "time": 1774463109620, - "transaction": { - "data": "0x5f5755290000000000000000000000000000000000000000000000000000000000000080000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000090c34216dd3d400000000000000000000000000000000000000000000000000000000000000c00000000000000000000000000000000000000000000000000000000000000018756e69737761705065726d69743246656544796e616d696300000000000000000000000000000000000000000000000000000000000000000000000000000600000000000000000000000000000000000000000000000000000000000000000000000000000000000000000055d398326f99059ff775485246999027b31979550000000000000000000000000000000000000000000000000008f7c2f735ebe0000000000000000000000000000000000000000000000000162f59c416606ea80000000000000000000000000000000000000000000000000000000000000120000000000000000000000000000000000000000000000000000014712a37e7f4000000000000000000000000b28da7bc87a9dd1e60849aa7fcb5da24ea913c42000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000004ce3593564c000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000000a00000000000000000000000000000000000000000000000000000000069c42f86000000000000000000000000000000000000000000000000000000000000000110000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000002000000000000000000000000000000000000000000000000000000000000003c0000000000000000000000000000000000000000000000000000000000000004000000000000000000000000000000000000000000000000000000000000000800000000000000000000000000000000000000000000000000000000000000003070b0e000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000030000000000000000000000000000000000000000000000000000000000000060000000000000000000000000000000000000000000000000000000000000022000000000000000000000000000000000000000000000000000000000000002a000000000000000000000000000000000000000000000000000000000000001a00000000000000000000000000000000000000000000000000000000000000020000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000800000000000000000000000000000000000000000000000000008f7c2f735ebe000000000000000000000000000000000000000000000000016319f906ee5078b0000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000002000000000000000000000000055d398326f99059ff775485246999027b319795500000000000000000000000000000000000000000000000000000000000000640000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000060000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000006000000000000000000000000055d398326f99059ff775485246999027b3197955000000000000000000000000c590175e458b83680867afd273527ff58f74c02b0000000000000000000000000000000000000000000000000000000000000000756e69780000000000810000000000000000000000000000000000000e", - "from": "0xf25bd11c334507fd007d584e2d0b7b2c6543f714", - "gas": "0x599da", - "gasLimit": "0x599da", - "maxFeePerGas": "0x3938700", - "maxPriorityFeePerGas": "0x3938700", - "nonce": "0x1c", - "to": "0x1a1ec25dc08e98e5e93f1104b5e5cdd298707d31", - "type": "0x2", - "value": "0x90c34216dd3d4" - } - }, - { - "chainId": "0x38", - "hash": "0xaeb7b86ec71bf5485670a5a5cbd2530ae36f2ee746ca47ab7839f9b90dc54ffd", - "networkType": "bsc-mainnet", - "networkUrl": "https://bsc-mainnet.infura.io/v3/{infuraProjectId}", - "origin": "metamask", - "rawTransaction": "0x02f90759381b84039387008403938700830508db941a1ec25dc08e98e5e93f1104b5e5cdd298707d3187096f1728091329b906e55f5755290000000000000000000000000000000000000000000000000000000000000080000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000096f172809132900000000000000000000000000000000000000000000000000000000000000c00000000000000000000000000000000000000000000000000000000000000018756e69737761705065726d69743246656544796e616d696300000000000000000000000000000000000000000000000000000000000000000000000000000600000000000000000000000000000000000000000000000000000000000000000000000000000000000000000055d398326f99059ff775485246999027b3197955000000000000000000000000000000000000000000000000000959cd05b40a6e0000000000000000000000000000000000000000000000001721d4718537e7d200000000000000000000000000000000000000000000000000000000000001200000000000000000000000000000000000000000000000000000154a225508bb000000000000000000000000b28da7bc87a9dd1e60849aa7fcb5da24ea913c42000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000004ce3593564c000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000000a00000000000000000000000000000000000000000000000000000000069c42f26000000000000000000000000000000000000000000000000000000000000000110000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000002000000000000000000000000000000000000000000000000000000000000003c0000000000000000000000000000000000000000000000000000000000000004000000000000000000000000000000000000000000000000000000000000000800000000000000000000000000000000000000000000000000000000000000003070b0e000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000030000000000000000000000000000000000000000000000000000000000000060000000000000000000000000000000000000000000000000000000000000022000000000000000000000000000000000000000000000000000000000000002a000000000000000000000000000000000000000000000000000000000000001a0000000000000000000000000000000000000000000000000000000000000002000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000080000000000000000000000000000000000000000000000000000959cd05b40a6e00000000000000000000000000000000000000000000000017243314db5275cb0000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000002000000000000000000000000055d398326f99059ff775485246999027b319795500000000000000000000000000000000000000000000000000000000000000640000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000060000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000006000000000000000000000000055d398326f99059ff775485246999027b3197955000000000000000000000000c590175e458b83680867afd273527ff58f74c02b0000000000000000000000000000000000000000000000000000000000000000756e69780000000000810000000000000000000000000000000000005dc080a0bad53a243b23e620f7bec6106fe77ace621f78e225ddee92e9cb627d7c30be3ea06fc8b12e4a708dda3a117426899556fc58c355ec830162dec30bd464cb984d3a", - "time": 1774463011543, - "transaction": { - "data": "0x5f5755290000000000000000000000000000000000000000000000000000000000000080000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000096f172809132900000000000000000000000000000000000000000000000000000000000000c00000000000000000000000000000000000000000000000000000000000000018756e69737761705065726d69743246656544796e616d696300000000000000000000000000000000000000000000000000000000000000000000000000000600000000000000000000000000000000000000000000000000000000000000000000000000000000000000000055d398326f99059ff775485246999027b3197955000000000000000000000000000000000000000000000000000959cd05b40a6e0000000000000000000000000000000000000000000000001721d4718537e7d200000000000000000000000000000000000000000000000000000000000001200000000000000000000000000000000000000000000000000000154a225508bb000000000000000000000000b28da7bc87a9dd1e60849aa7fcb5da24ea913c42000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000004ce3593564c000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000000a00000000000000000000000000000000000000000000000000000000069c42f26000000000000000000000000000000000000000000000000000000000000000110000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000002000000000000000000000000000000000000000000000000000000000000003c0000000000000000000000000000000000000000000000000000000000000004000000000000000000000000000000000000000000000000000000000000000800000000000000000000000000000000000000000000000000000000000000003070b0e000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000030000000000000000000000000000000000000000000000000000000000000060000000000000000000000000000000000000000000000000000000000000022000000000000000000000000000000000000000000000000000000000000002a000000000000000000000000000000000000000000000000000000000000001a0000000000000000000000000000000000000000000000000000000000000002000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000080000000000000000000000000000000000000000000000000000959cd05b40a6e00000000000000000000000000000000000000000000000017243314db5275cb0000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000002000000000000000000000000055d398326f99059ff775485246999027b319795500000000000000000000000000000000000000000000000000000000000000640000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000060000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000006000000000000000000000000055d398326f99059ff775485246999027b3197955000000000000000000000000c590175e458b83680867afd273527ff58f74c02b0000000000000000000000000000000000000000000000000000000000000000756e69780000000000810000000000000000000000000000000000005d", - "from": "0xf25bd11c334507fd007d584e2d0b7b2c6543f714", - "gas": "0x508db", - "gasLimit": "0x508db", - "maxFeePerGas": "0x3938700", - "maxPriorityFeePerGas": "0x3938700", - "nonce": "0x1b", - "to": "0x1a1ec25dc08e98e5e93f1104b5e5cdd298707d31", - "type": "0x2", - "value": "0x96f1728091329" - } - }, - { - "chainId": "0x38", - "hash": "0x6d7fead23509911fab6a8965b0ddb40b7c51662ea05fba0c9856ab3a1dc79078", - "networkType": "bsc-mainnet", - "networkUrl": "https://bsc-mainnet.infura.io/v3/{infuraProjectId}", - "origin": "metamask", - "rawTransaction": "0x02f90519381a84039387008403938700830599d7941a1ec25dc08e98e5e93f1104b5e5cdd298707d318709cd610f1a09b6b904a55f575529000000000000000000000000000000000000000000000000000000000000008000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000009cd610f1a09b600000000000000000000000000000000000000000000000000000000000000c00000000000000000000000000000000000000000000000000000000000000018756e69737761705065726d69743246656544796e616d6963000000000000000000000000000000000000000000000000000000000000000000000000000003c0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000055d398326f99059ff775485246999027b31979550000000000000000000000000000000000000000000000000009b73f2e6ae5ca0000000000000000000000000000000000000000000000001801554bb92d0faf000000000000000000000000000000000000000000000000000000000000012000000000000000000000000000000000000000000000000000001621e0af23ec000000000000000000000000b28da7bc87a9dd1e60849aa7fcb5da24ea913c420000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000028e3593564c000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000000a00000000000000000000000000000000000000000000000000000000069c42dda00000000000000000000000000000000000000000000000000000000000000020b000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000002000000000000000000000000000000000000000000000000000000000000004000000000000000000000000000000000000000000000000000000000000000a0000000000000000000000000000000000000000000000000000000000000004000000000000000000000000000000000000000000000000000000000000000020000000000000000000000000000000000000000000000000009b73f2e6ae5ca0000000000000000000000000000000000000000000000000000000000000100000000000000000000000000c590175e458b83680867afd273527ff58f74c02b0000000000000000000000000000000000000000000000000009b73f2e6ae5ca0000000000000000000000000000000000000000000000001803cad468efb79700000000000000000000000000000000000000000000000000000000000000a00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000002bbb4cdb9cbd36b01bd1cbaebf2de08d9173bc095c00006455d398326f99059ff775485246999027b3197955000000000000000000000000000000000000000000756e69780000000000810000000000000000000000000000000000003cc080a0de8d8cf79aa18a9d815b7986d470f47b58c5d2a55346c4da0ffa12c40419e756a0555df9f789cc440aa4ff93e43236ff9445e92d9807db917fa670b89dc30f2171", - "time": 1774462676055, - "transaction": { - "data": "0x5f575529000000000000000000000000000000000000000000000000000000000000008000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000009cd610f1a09b600000000000000000000000000000000000000000000000000000000000000c00000000000000000000000000000000000000000000000000000000000000018756e69737761705065726d69743246656544796e616d6963000000000000000000000000000000000000000000000000000000000000000000000000000003c0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000055d398326f99059ff775485246999027b31979550000000000000000000000000000000000000000000000000009b73f2e6ae5ca0000000000000000000000000000000000000000000000001801554bb92d0faf000000000000000000000000000000000000000000000000000000000000012000000000000000000000000000000000000000000000000000001621e0af23ec000000000000000000000000b28da7bc87a9dd1e60849aa7fcb5da24ea913c420000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000028e3593564c000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000000a00000000000000000000000000000000000000000000000000000000069c42dda00000000000000000000000000000000000000000000000000000000000000020b000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000002000000000000000000000000000000000000000000000000000000000000004000000000000000000000000000000000000000000000000000000000000000a0000000000000000000000000000000000000000000000000000000000000004000000000000000000000000000000000000000000000000000000000000000020000000000000000000000000000000000000000000000000009b73f2e6ae5ca0000000000000000000000000000000000000000000000000000000000000100000000000000000000000000c590175e458b83680867afd273527ff58f74c02b0000000000000000000000000000000000000000000000000009b73f2e6ae5ca0000000000000000000000000000000000000000000000001803cad468efb79700000000000000000000000000000000000000000000000000000000000000a00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000002bbb4cdb9cbd36b01bd1cbaebf2de08d9173bc095c00006455d398326f99059ff775485246999027b3197955000000000000000000000000000000000000000000756e69780000000000810000000000000000000000000000000000003c", - "from": "0xf25bd11c334507fd007d584e2d0b7b2c6543f714", - "gas": "0x599d7", - "gasLimit": "0x599d7", - "maxFeePerGas": "0x3938700", - "maxPriorityFeePerGas": "0x3938700", - "nonce": "0x1a", - "to": "0x1a1ec25dc08e98e5e93f1104b5e5cdd298707d31", - "type": "0x2", - "value": "0x9cd610f1a09b6" - } - }, - { - "chainId": "0x38", - "hash": "0xb4c8ba10f5fa990d7b1c5ac39c05afb13ae448eb1135480bac4e4e7e5c06e9ba", - "networkType": "bsc-mainnet", - "networkUrl": "https://bsc-mainnet.infura.io/v3/{infuraProjectId}", - "origin": "metamask", - "rawTransaction": "0x02f9051938198403938700840393870083059a0e941a1ec25dc08e98e5e93f1104b5e5cdd298707d31870a2d6ac58fa24fb904a55f57552900000000000000000000000000000000000000000000000000000000000000800000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000a2d6ac58fa24f00000000000000000000000000000000000000000000000000000000000000c00000000000000000000000000000000000000000000000000000000000000018756e69737761705065726d69743246656544796e616d6963000000000000000000000000000000000000000000000000000000000000000000000000000003c0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000055d398326f99059ff775485246999027b3197955000000000000000000000000000000000000000000000000000a1671c324c82200000000000000000000000000000000000000000000000018eac32e105804fa0000000000000000000000000000000000000000000000000000000000000120000000000000000000000000000000000000000000000000000016f9026ada2d000000000000000000000000b28da7bc87a9dd1e60849aa7fcb5da24ea913c420000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000028e3593564c000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000000a00000000000000000000000000000000000000000000000000000000069c42c5300000000000000000000000000000000000000000000000000000000000000020b000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000002000000000000000000000000000000000000000000000000000000000000004000000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000000000000000000000000000000400000000000000000000000000000000000000000000000000000000000000002000000000000000000000000000000000000000000000000000a1671c324c8220000000000000000000000000000000000000000000000000000000000000100000000000000000000000000c590175e458b83680867afd273527ff58f74c02b000000000000000000000000000000000000000000000000000a1671c324c82200000000000000000000000000000000000000000000000018ed50a0680a331400000000000000000000000000000000000000000000000000000000000000a00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000002bbb4cdb9cbd36b01bd1cbaebf2de08d9173bc095c00006455d398326f99059ff775485246999027b3197955000000000000000000000000000000000000000000756e6978000000000081000000000000000000000000000000000000aac001a0205e21d7693c3ccbcdb64568f080179d5b1b4a31457c8ea8da5895d23152c2b1a05b2bc1e60f302b682c92fbf844fdabc8b3428255c751bc109779040b1b2616c8", - "time": 1774462303700, - "transaction": { - "data": "0x5f57552900000000000000000000000000000000000000000000000000000000000000800000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000a2d6ac58fa24f00000000000000000000000000000000000000000000000000000000000000c00000000000000000000000000000000000000000000000000000000000000018756e69737761705065726d69743246656544796e616d6963000000000000000000000000000000000000000000000000000000000000000000000000000003c0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000055d398326f99059ff775485246999027b3197955000000000000000000000000000000000000000000000000000a1671c324c82200000000000000000000000000000000000000000000000018eac32e105804fa0000000000000000000000000000000000000000000000000000000000000120000000000000000000000000000000000000000000000000000016f9026ada2d000000000000000000000000b28da7bc87a9dd1e60849aa7fcb5da24ea913c420000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000028e3593564c000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000000a00000000000000000000000000000000000000000000000000000000069c42c5300000000000000000000000000000000000000000000000000000000000000020b000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000002000000000000000000000000000000000000000000000000000000000000004000000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000000000000000000000000000000400000000000000000000000000000000000000000000000000000000000000002000000000000000000000000000000000000000000000000000a1671c324c8220000000000000000000000000000000000000000000000000000000000000100000000000000000000000000c590175e458b83680867afd273527ff58f74c02b000000000000000000000000000000000000000000000000000a1671c324c82200000000000000000000000000000000000000000000000018ed50a0680a331400000000000000000000000000000000000000000000000000000000000000a00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000002bbb4cdb9cbd36b01bd1cbaebf2de08d9173bc095c00006455d398326f99059ff775485246999027b3197955000000000000000000000000000000000000000000756e6978000000000081000000000000000000000000000000000000aa", - "from": "0xf25bd11c334507fd007d584e2d0b7b2c6543f714", - "gas": "0x59a0e", - "gasLimit": "0x59a0e", - "maxFeePerGas": "0x3938700", - "maxPriorityFeePerGas": "0x3938700", - "nonce": "0x19", - "to": "0x1a1ec25dc08e98e5e93f1104b5e5cdd298707d31", - "type": "0x2", - "value": "0xa2d6ac58fa24f" - } - }, - { - "chainId": "0x38", - "hash": "0x34ec65c3f1b7de51ffc9444b1b631b4a6d049a1defe61d9c1575df3e5b4b80d2", - "networkType": "bsc-mainnet", - "networkUrl": "https://bsc-mainnet.infura.io/v3/{infuraProjectId}", - "origin": "metamask", - "rawTransaction": "0x02f906713818840393870084039387008305f7b494f25bd11c334507fd007d584e2d0b7b2c6543f71480b90604e9ae5c530100000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000004000000000000000000000000000000000000000000000000000000000000005a00000000000000000000000000000000000000000000000000000000000000020000000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000000000200000000000000000000000001a1ec25dc08e98e5e93f1104b5e5cdd298707d31000000000000000000000000000000000000000000000000000a2fd199298f4f000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000004a55f57552900000000000000000000000000000000000000000000000000000000000000800000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000a2fd199298f4f00000000000000000000000000000000000000000000000000000000000000c00000000000000000000000000000000000000000000000000000000000000018756e69737761705065726d69743246656544796e616d6963000000000000000000000000000000000000000000000000000000000000000000000000000003c0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000055d398326f99059ff775485246999027b3197955000000000000000000000000000000000000000000000000000a18d33450231200000000000000000000000000000000000000000000000018f1ee2748fef5210000000000000000000000000000000000000000000000000000000000000120000000000000000000000000000000000000000000000000000016fe64d96c3d000000000000000000000000b28da7bc87a9dd1e60849aa7fcb5da24ea913c420000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000028e3593564c000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000000a00000000000000000000000000000000000000000000000000000000069c42a5000000000000000000000000000000000000000000000000000000000000000020b000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000002000000000000000000000000000000000000000000000000000000000000004000000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000000000000000000000000000000400000000000000000000000000000000000000000000000000000000000000002000000000000000000000000000000000000000000000000000a18d3345023120000000000000000000000000000000000000000000000000000000000000100000000000000000000000000c590175e458b83680867afd273527ff58f74c02b000000000000000000000000000000000000000000000000000a18d33450231200000000000000000000000000000000000000000000000018f47c559aabac3000000000000000000000000000000000000000000000000000000000000000a00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000002bbb4cdb9cbd36b01bd1cbaebf2de08d9173bc095c00006455d398326f99059ff775485246999027b3197955000000000000000000000000000000000000000000756e69780000000000810000000000000000000000000000000000007d000000000000000000000000000000000000000000000000000000c001a0ef9fccba883327719b91f544e098717cc81149a8a36bda7bf11cc7774f560a74a05f4ed36acaddac974e4ad36932c4cb0b8d56f9043eea4ae3a29dfb7511407b73", - "time": 1774461784363, - "transaction": { - "data": "0xe9ae5c530100000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000004000000000000000000000000000000000000000000000000000000000000005a00000000000000000000000000000000000000000000000000000000000000020000000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000000000200000000000000000000000001a1ec25dc08e98e5e93f1104b5e5cdd298707d31000000000000000000000000000000000000000000000000000a2fd199298f4f000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000004a55f57552900000000000000000000000000000000000000000000000000000000000000800000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000a2fd199298f4f00000000000000000000000000000000000000000000000000000000000000c00000000000000000000000000000000000000000000000000000000000000018756e69737761705065726d69743246656544796e616d6963000000000000000000000000000000000000000000000000000000000000000000000000000003c0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000055d398326f99059ff775485246999027b3197955000000000000000000000000000000000000000000000000000a18d33450231200000000000000000000000000000000000000000000000018f1ee2748fef5210000000000000000000000000000000000000000000000000000000000000120000000000000000000000000000000000000000000000000000016fe64d96c3d000000000000000000000000b28da7bc87a9dd1e60849aa7fcb5da24ea913c420000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000028e3593564c000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000000a00000000000000000000000000000000000000000000000000000000069c42a5000000000000000000000000000000000000000000000000000000000000000020b000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000002000000000000000000000000000000000000000000000000000000000000004000000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000000000000000000000000000000400000000000000000000000000000000000000000000000000000000000000002000000000000000000000000000000000000000000000000000a18d3345023120000000000000000000000000000000000000000000000000000000000000100000000000000000000000000c590175e458b83680867afd273527ff58f74c02b000000000000000000000000000000000000000000000000000a18d33450231200000000000000000000000000000000000000000000000018f47c559aabac3000000000000000000000000000000000000000000000000000000000000000a00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000002bbb4cdb9cbd36b01bd1cbaebf2de08d9173bc095c00006455d398326f99059ff775485246999027b3197955000000000000000000000000000000000000000000756e69780000000000810000000000000000000000000000000000007d000000000000000000000000000000000000000000000000000000", - "from": "0xf25bd11c334507fd007d584e2d0b7b2c6543f714", - "gas": "0x5f7b4", - "gasLimit": "0x5f7b4", - "maxFeePerGas": "0x3938700", - "maxPriorityFeePerGas": "0x3938700", - "nonce": "0x18", - "to": "0xf25bd11c334507fd007d584e2d0b7b2c6543f714", - "type": "0x2", - "value": "0x0" - } - }, - { - "chainId": "0x38", - "hash": "0xf6d27b065d8bcce56694369865018eff37e3a316e97160045576f2289d47fd98", - "networkType": "bsc-mainnet", - "networkUrl": "https://bsc-mainnet.infura.io/v3/{infuraProjectId}", - "origin": "metamask", - "rawTransaction": "0x02f906713816840393870084039387008305f7c994f25bd11c334507fd007d584e2d0b7b2c6543f71480b90604e9ae5c530100000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000004000000000000000000000000000000000000000000000000000000000000005a00000000000000000000000000000000000000000000000000000000000000020000000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000000000200000000000000000000000001a1ec25dc08e98e5e93f1104b5e5cdd298707d31000000000000000000000000000000000000000000000000000a8e8cab940f51000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000004a55f57552900000000000000000000000000000000000000000000000000000000000000800000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000a8e8cab940f5100000000000000000000000000000000000000000000000000000000000000c00000000000000000000000000000000000000000000000000000000000000018756e69737761705065726d69743246656544796e616d6963000000000000000000000000000000000000000000000000000000000000000000000000000003c0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000055d398326f99059ff775485246999027b3197955000000000000000000000000000000000000000000000000000a76ba143be99d00000000000000000000000000000000000000000000000019eeb2b4aa4e0f2d0000000000000000000000000000000000000000000000000000000000000120000000000000000000000000000000000000000000000000000017d2975825b4000000000000000000000000b28da7bc87a9dd1e60849aa7fcb5da24ea913c420000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000028e3593564c000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000000a00000000000000000000000000000000000000000000000000000000069c4225400000000000000000000000000000000000000000000000000000000000000020b000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000002000000000000000000000000000000000000000000000000000000000000004000000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000000000000000000000000000000400000000000000000000000000000000000000000000000000000000000000002000000000000000000000000000000000000000000000000000a76ba143be99d0000000000000000000000000000000000000000000000000000000000000100000000000000000000000000c590175e458b83680867afd273527ff58f74c02b000000000000000000000000000000000000000000000000000a76ba143be99d00000000000000000000000000000000000000000000000019f15ac7caa4588800000000000000000000000000000000000000000000000000000000000000a00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000002bbb4cdb9cbd36b01bd1cbaebf2de08d9173bc095c00006455d398326f99059ff775485246999027b3197955000000000000000000000000000000000000000000756e6978000000000081000000000000000000000000000000000000c7000000000000000000000000000000000000000000000000000000c080a0b3cfca69cb897df28c3875464684b02022e08cbef8e617713b7a82d84b5c1017a065f411ca8031cee98b93f22a94690b0f6b0942bec6aae878198e99f1eee5ffe7", - "time": 1774459727996, - "transaction": { - "data": "0xe9ae5c530100000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000004000000000000000000000000000000000000000000000000000000000000005a00000000000000000000000000000000000000000000000000000000000000020000000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000000000200000000000000000000000001a1ec25dc08e98e5e93f1104b5e5cdd298707d31000000000000000000000000000000000000000000000000000a8e8cab940f51000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000004a55f57552900000000000000000000000000000000000000000000000000000000000000800000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000a8e8cab940f5100000000000000000000000000000000000000000000000000000000000000c00000000000000000000000000000000000000000000000000000000000000018756e69737761705065726d69743246656544796e616d6963000000000000000000000000000000000000000000000000000000000000000000000000000003c0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000055d398326f99059ff775485246999027b3197955000000000000000000000000000000000000000000000000000a76ba143be99d00000000000000000000000000000000000000000000000019eeb2b4aa4e0f2d0000000000000000000000000000000000000000000000000000000000000120000000000000000000000000000000000000000000000000000017d2975825b4000000000000000000000000b28da7bc87a9dd1e60849aa7fcb5da24ea913c420000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000028e3593564c000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000000a00000000000000000000000000000000000000000000000000000000069c4225400000000000000000000000000000000000000000000000000000000000000020b000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000002000000000000000000000000000000000000000000000000000000000000004000000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000000000000000000000000000000400000000000000000000000000000000000000000000000000000000000000002000000000000000000000000000000000000000000000000000a76ba143be99d0000000000000000000000000000000000000000000000000000000000000100000000000000000000000000c590175e458b83680867afd273527ff58f74c02b000000000000000000000000000000000000000000000000000a76ba143be99d00000000000000000000000000000000000000000000000019f15ac7caa4588800000000000000000000000000000000000000000000000000000000000000a00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000002bbb4cdb9cbd36b01bd1cbaebf2de08d9173bc095c00006455d398326f99059ff775485246999027b3197955000000000000000000000000000000000000000000756e6978000000000081000000000000000000000000000000000000c7000000000000000000000000000000000000000000000000000000", - "from": "0xf25bd11c334507fd007d584e2d0b7b2c6543f714", - "gas": "0x5f7c9", - "gasLimit": "0x5f7c9", - "maxFeePerGas": "0x3938700", - "maxPriorityFeePerGas": "0x3938700", - "nonce": "0x16", - "to": "0xf25bd11c334507fd007d584e2d0b7b2c6543f714", - "type": "0x2", - "value": "0x0" - } - }, - { - "chainId": "0x38", - "hash": "0xc00a04fb95130719e482038fdac80e11a2f96ed91806b3f6055e0983bf8f6b19", - "networkType": "bsc-mainnet", - "networkUrl": "https://bsc-mainnet.infura.io/v3/{infuraProjectId}", - "origin": "metamask", - "rawTransaction": "0x02f904d13815840393870084039387008306913c94f25bd11c334507fd007d584e2d0b7b2c6543f71480b90464e9ae5c530100000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000004000000000000000000000000000000000000000000000000000000000000004000000000000000000000000000000000000000000000000000000000000000020000000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000000000200000000000000000000000001a1ec25dc08e98e5e93f1104b5e5cdd298707d31000000000000000000000000000000000000000000000000000a8e9554df0351000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000003055f57552900000000000000000000000000000000000000000000000000000000000000800000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000a8e9554df035100000000000000000000000000000000000000000000000000000000000000c0000000000000000000000000000000000000000000000000000000000000001b70616e63616b6553776170526f7574657246656544796e616d696300000000000000000000000000000000000000000000000000000000000000000000000220000000000000000000000000000000000000000000000000000000000000000000000000000000000000000055d398326f99059ff775485246999027b3197955000000000000000000000000000000000000000000000000000a76bde1f71ebd00000000000000000000000000000000000000000000000019e5ac6a740ca9120000000000000000000000000000000000000000000000000000000000000120000000000000000000000000000000000000000000000000000017d772e7e494000000000000000000000000b28da7bc87a9dd1e60849aa7fcb5da24ea913c42000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000e404e45aaf000000000000000000000000bb4cdb9cbd36b01bd1cbaebf2de08d9173bc095c00000000000000000000000055d398326f99059ff775485246999027b31979550000000000000000000000000000000000000000000000000000000000000064000000000000000000000000c590175e458b83680867afd273527ff58f74c02b000000000000000000000000000000000000000000000000000a76bde1f71ebd00000000000000000000000000000000000000000000000019e85390e949d2a000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000058000000000000000000000000000000000000000000000000000000c080a00820d175fe0aa1b84424c9c3338e0c414b8ba6e8b7c5ce20aa6d2e23a459b692a023ca12af4d104df74cd3bb371aa09689a2eca88067e3c7a67de19d665015cc7d", - "time": 1774459397112, - "transaction": { - "data": "0xe9ae5c530100000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000004000000000000000000000000000000000000000000000000000000000000004000000000000000000000000000000000000000000000000000000000000000020000000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000000000200000000000000000000000001a1ec25dc08e98e5e93f1104b5e5cdd298707d31000000000000000000000000000000000000000000000000000a8e9554df0351000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000003055f57552900000000000000000000000000000000000000000000000000000000000000800000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000a8e9554df035100000000000000000000000000000000000000000000000000000000000000c0000000000000000000000000000000000000000000000000000000000000001b70616e63616b6553776170526f7574657246656544796e616d696300000000000000000000000000000000000000000000000000000000000000000000000220000000000000000000000000000000000000000000000000000000000000000000000000000000000000000055d398326f99059ff775485246999027b3197955000000000000000000000000000000000000000000000000000a76bde1f71ebd00000000000000000000000000000000000000000000000019e5ac6a740ca9120000000000000000000000000000000000000000000000000000000000000120000000000000000000000000000000000000000000000000000017d772e7e494000000000000000000000000b28da7bc87a9dd1e60849aa7fcb5da24ea913c42000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000e404e45aaf000000000000000000000000bb4cdb9cbd36b01bd1cbaebf2de08d9173bc095c00000000000000000000000055d398326f99059ff775485246999027b31979550000000000000000000000000000000000000000000000000000000000000064000000000000000000000000c590175e458b83680867afd273527ff58f74c02b000000000000000000000000000000000000000000000000000a76bde1f71ebd00000000000000000000000000000000000000000000000019e85390e949d2a000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000058000000000000000000000000000000000000000000000000000000", - "from": "0xf25bd11c334507fd007d584e2d0b7b2c6543f714", - "gas": "0x6913c", - "gasLimit": "0x6913c", - "maxFeePerGas": "0x3938700", - "maxPriorityFeePerGas": "0x3938700", - "nonce": "0x15", - "to": "0xf25bd11c334507fd007d584e2d0b7b2c6543f714", - "type": "0x2", - "value": "0x0" - } - }, - { - "chainId": "0x38", - "hash": "0x866378820a2c2120ce70a2e8de356faad0238a674267f595c7bf392ef40ed21f", - "networkType": "bsc-mainnet", - "networkUrl": "https://bsc-mainnet.infura.io/v3/{infuraProjectId}", - "origin": "metamask", - "rawTransaction": "0x02f908b138148403938700840393870083056b4d94f25bd11c334507fd007d584e2d0b7b2c6543f71480b90844e9ae5c530100000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000004000000000000000000000000000000000000000000000000000000000000007e00000000000000000000000000000000000000000000000000000000000000020000000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000000000200000000000000000000000001a1ec25dc08e98e5e93f1104b5e5cdd298707d31000000000000000000000000000000000000000000000000000a957c255a85d1000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000006e55f57552900000000000000000000000000000000000000000000000000000000000000800000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000a957c255a85d100000000000000000000000000000000000000000000000000000000000000c00000000000000000000000000000000000000000000000000000000000000018756e69737761705065726d69743246656544796e616d696300000000000000000000000000000000000000000000000000000000000000000000000000000600000000000000000000000000000000000000000000000000000000000000000000000000000000000000000055d398326f99059ff775485246999027b3197955000000000000000000000000000000000000000000000000000a7d9e9171e55d00000000000000000000000000000000000000000000000019f6f9405c9923910000000000000000000000000000000000000000000000000000000000000120000000000000000000000000000000000000000000000000000017dd93e8a074000000000000000000000000b28da7bc87a9dd1e60849aa7fcb5da24ea913c42000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000004ce3593564c000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000000a00000000000000000000000000000000000000000000000000000000069c420d6000000000000000000000000000000000000000000000000000000000000000110000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000002000000000000000000000000000000000000000000000000000000000000003c0000000000000000000000000000000000000000000000000000000000000004000000000000000000000000000000000000000000000000000000000000000800000000000000000000000000000000000000000000000000000000000000003070b0e000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000030000000000000000000000000000000000000000000000000000000000000060000000000000000000000000000000000000000000000000000000000000022000000000000000000000000000000000000000000000000000000000000002a000000000000000000000000000000000000000000000000000000000000001a0000000000000000000000000000000000000000000000000000000000000002000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000080000000000000000000000000000000000000000000000000000a7d9e9171e55d00000000000000000000000000000000000000000000000019f9a22c8390153e0000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000002000000000000000000000000055d398326f99059ff775485246999027b319795500000000000000000000000000000000000000000000000000000000000000640000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000060000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000006000000000000000000000000055d398326f99059ff775485246999027b3197955000000000000000000000000c590175e458b83680867afd273527ff58f74c02b0000000000000000000000000000000000000000000000000000000000000000756e697800000000008100000000000000000000000000000000000061000000000000000000000000000000000000000000000000000000c080a0f6570cba39ede3ffd9a58f9ce0853d345341a71c1e4596b23c57404854e252aea06a904f171051fe7147af96b5925d45ac1b9d9526b5958d4381d82333ccef5d69", - "time": 1774459359678, - "transaction": { - "data": "0xe9ae5c530100000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000004000000000000000000000000000000000000000000000000000000000000007e00000000000000000000000000000000000000000000000000000000000000020000000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000000000200000000000000000000000001a1ec25dc08e98e5e93f1104b5e5cdd298707d31000000000000000000000000000000000000000000000000000a957c255a85d1000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000006e55f57552900000000000000000000000000000000000000000000000000000000000000800000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000a957c255a85d100000000000000000000000000000000000000000000000000000000000000c00000000000000000000000000000000000000000000000000000000000000018756e69737761705065726d69743246656544796e616d696300000000000000000000000000000000000000000000000000000000000000000000000000000600000000000000000000000000000000000000000000000000000000000000000000000000000000000000000055d398326f99059ff775485246999027b3197955000000000000000000000000000000000000000000000000000a7d9e9171e55d00000000000000000000000000000000000000000000000019f6f9405c9923910000000000000000000000000000000000000000000000000000000000000120000000000000000000000000000000000000000000000000000017dd93e8a074000000000000000000000000b28da7bc87a9dd1e60849aa7fcb5da24ea913c42000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000004ce3593564c000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000000a00000000000000000000000000000000000000000000000000000000069c420d6000000000000000000000000000000000000000000000000000000000000000110000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000002000000000000000000000000000000000000000000000000000000000000003c0000000000000000000000000000000000000000000000000000000000000004000000000000000000000000000000000000000000000000000000000000000800000000000000000000000000000000000000000000000000000000000000003070b0e000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000030000000000000000000000000000000000000000000000000000000000000060000000000000000000000000000000000000000000000000000000000000022000000000000000000000000000000000000000000000000000000000000002a000000000000000000000000000000000000000000000000000000000000001a0000000000000000000000000000000000000000000000000000000000000002000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000080000000000000000000000000000000000000000000000000000a7d9e9171e55d00000000000000000000000000000000000000000000000019f9a22c8390153e0000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000002000000000000000000000000055d398326f99059ff775485246999027b319795500000000000000000000000000000000000000000000000000000000000000640000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000060000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000006000000000000000000000000055d398326f99059ff775485246999027b3197955000000000000000000000000c590175e458b83680867afd273527ff58f74c02b0000000000000000000000000000000000000000000000000000000000000000756e697800000000008100000000000000000000000000000000000061000000000000000000000000000000000000000000000000000000", - "from": "0xf25bd11c334507fd007d584e2d0b7b2c6543f714", - "gas": "0x56b4d", - "gasLimit": "0x56b4d", - "maxFeePerGas": "0x3938700", - "maxPriorityFeePerGas": "0x3938700", - "nonce": "0x14", - "to": "0xf25bd11c334507fd007d584e2d0b7b2c6543f714", - "type": "0x2", - "value": "0x0" - } - }, - { - "chainId": "0x38", - "hash": "0x9da386baa9c339da273e9e3213ddbc2936051a35cbde69608b11eedd2e74894a", - "networkType": "bsc-mainnet", - "networkUrl": "https://bsc-mainnet.infura.io/v3/{infuraProjectId}", - "origin": "metamask", - "rawTransaction": "0x02f906713813840393870084039387008305f73f94f25bd11c334507fd007d584e2d0b7b2c6543f71480b90604e9ae5c530100000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000004000000000000000000000000000000000000000000000000000000000000005a00000000000000000000000000000000000000000000000000000000000000020000000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000000000200000000000000000000000001a1ec25dc08e98e5e93f1104b5e5cdd298707d31000000000000000000000000000000000000000000000000000a95f1e7984451000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000004a55f57552900000000000000000000000000000000000000000000000000000000000000800000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000a95f1e798445100000000000000000000000000000000000000000000000000000000000000c00000000000000000000000000000000000000000000000000000000000000018756e69737761705065726d69743246656544796e616d6963000000000000000000000000000000000000000000000000000000000000000000000000000003c0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000055d398326f99059ff775485246999027b3197955000000000000000000000000000000000000000000000000000a7e0ef14111cd00000000000000000000000000000000000000000000000019f480eee2525bf10000000000000000000000000000000000000000000000000000000000000120000000000000000000000000000000000000000000000000000017e2f6573284000000000000000000000000b28da7bc87a9dd1e60849aa7fcb5da24ea913c420000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000028e3593564c000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000000a00000000000000000000000000000000000000000000000000000000069c4204800000000000000000000000000000000000000000000000000000000000000020b000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000002000000000000000000000000000000000000000000000000000000000000004000000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000000000000000000000000000000400000000000000000000000000000000000000000000000000000000000000002000000000000000000000000000000000000000000000000000a7e0ef14111cd0000000000000000000000000000000000000000000000000000000000000100000000000000000000000000c590175e458b83680867afd273527ff58f74c02b000000000000000000000000000000000000000000000000000a7e0ef14111cd00000000000000000000000000000000000000000000000019f7299a42cf2a4b00000000000000000000000000000000000000000000000000000000000000a00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000002bbb4cdb9cbd36b01bd1cbaebf2de08d9173bc095c00006455d398326f99059ff775485246999027b3197955000000000000000000000000000000000000000000756e697800000000008100000000000000000000000000000000000007000000000000000000000000000000000000000000000000000000c080a0af0084f8ebaf98dcaaf5fe3d37e4825f99271e2e0ab1b59eb62779b5e47f8270a020583338aff085bca9f29b43b0254c6ffc6b14e4c4fe5737dc21c34aedeceef4", - "time": 1774459208640, - "transaction": { - "data": "0xe9ae5c530100000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000004000000000000000000000000000000000000000000000000000000000000005a00000000000000000000000000000000000000000000000000000000000000020000000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000000000200000000000000000000000001a1ec25dc08e98e5e93f1104b5e5cdd298707d31000000000000000000000000000000000000000000000000000a95f1e7984451000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000004a55f57552900000000000000000000000000000000000000000000000000000000000000800000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000a95f1e798445100000000000000000000000000000000000000000000000000000000000000c00000000000000000000000000000000000000000000000000000000000000018756e69737761705065726d69743246656544796e616d6963000000000000000000000000000000000000000000000000000000000000000000000000000003c0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000055d398326f99059ff775485246999027b3197955000000000000000000000000000000000000000000000000000a7e0ef14111cd00000000000000000000000000000000000000000000000019f480eee2525bf10000000000000000000000000000000000000000000000000000000000000120000000000000000000000000000000000000000000000000000017e2f6573284000000000000000000000000b28da7bc87a9dd1e60849aa7fcb5da24ea913c420000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000028e3593564c000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000000a00000000000000000000000000000000000000000000000000000000069c4204800000000000000000000000000000000000000000000000000000000000000020b000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000002000000000000000000000000000000000000000000000000000000000000004000000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000000000000000000000000000000400000000000000000000000000000000000000000000000000000000000000002000000000000000000000000000000000000000000000000000a7e0ef14111cd0000000000000000000000000000000000000000000000000000000000000100000000000000000000000000c590175e458b83680867afd273527ff58f74c02b000000000000000000000000000000000000000000000000000a7e0ef14111cd00000000000000000000000000000000000000000000000019f7299a42cf2a4b00000000000000000000000000000000000000000000000000000000000000a00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000002bbb4cdb9cbd36b01bd1cbaebf2de08d9173bc095c00006455d398326f99059ff775485246999027b3197955000000000000000000000000000000000000000000756e697800000000008100000000000000000000000000000000000007000000000000000000000000000000000000000000000000000000", - "from": "0xf25bd11c334507fd007d584e2d0b7b2c6543f714", - "gas": "0x5f73f", - "gasLimit": "0x5f73f", - "maxFeePerGas": "0x3938700", - "maxPriorityFeePerGas": "0x3938700", - "nonce": "0x13", - "to": "0xf25bd11c334507fd007d584e2d0b7b2c6543f714", - "type": "0x2", - "value": "0x0" - } - }, - { - "chainId": "0x38", - "hash": "0x02b9e0af7542d82ea0709ba9e13e3067a9ce5c276e78083d6b43640ae937bec8", - "networkType": "bsc-mainnet", - "networkUrl": "https://bsc-mainnet.infura.io/v3/{infuraProjectId}", - "origin": "metamask", - "rawTransaction": "0x02f908b138118403938700840393870083056b5394f25bd11c334507fd007d584e2d0b7b2c6543f71480b90844e9ae5c530100000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000004000000000000000000000000000000000000000000000000000000000000007e00000000000000000000000000000000000000000000000000000000000000020000000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000000000200000000000000000000000001a1ec25dc08e98e5e93f1104b5e5cdd298707d31000000000000000000000000000000000000000000000000000affd25569f31b000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000006e55f57552900000000000000000000000000000000000000000000000000000000000000800000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000affd25569f31b00000000000000000000000000000000000000000000000000000000000000c00000000000000000000000000000000000000000000000000000000000000018756e69737761705065726d69743246656544796e616d696300000000000000000000000000000000000000000000000000000000000000000000000000000600000000000000000000000000000000000000000000000000000000000000000000000000000000000000000055d398326f99059ff775485246999027b3197955000000000000000000000000000000000000000000000000000ae706610dc1b50000000000000000000000000000000000000000000000001b0285ccb7aa216e0000000000000000000000000000000000000000000000000000000000000120000000000000000000000000000000000000000000000000000018cbf45c3166000000000000000000000000b28da7bc87a9dd1e60849aa7fcb5da24ea913c42000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000004ce3593564c000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000000a00000000000000000000000000000000000000000000000000000000069c41d58000000000000000000000000000000000000000000000000000000000000000110000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000002000000000000000000000000000000000000000000000000000000000000003c0000000000000000000000000000000000000000000000000000000000000004000000000000000000000000000000000000000000000000000000000000000800000000000000000000000000000000000000000000000000000000000000003070b0e000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000030000000000000000000000000000000000000000000000000000000000000060000000000000000000000000000000000000000000000000000000000000022000000000000000000000000000000000000000000000000000000000000002a000000000000000000000000000000000000000000000000000000000000001a0000000000000000000000000000000000000000000000000000000000000002000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000080000000000000000000000000000000000000000000000000000ae706610dc1b50000000000000000000000000000000000000000000000001b054a21502b94e50000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000002000000000000000000000000055d398326f99059ff775485246999027b319795500000000000000000000000000000000000000000000000000000000000000640000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000060000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000006000000000000000000000000055d398326f99059ff775485246999027b3197955000000000000000000000000c590175e458b83680867afd273527ff58f74c02b0000000000000000000000000000000000000000000000000000000000000000756e69780000000000810000000000000000000000000000000000001d000000000000000000000000000000000000000000000000000000c001a061d6874e54ce93311b6ad682977807eca574aac53ff61d2c3d1879cbc969143ba0565d506f25649060287f2b034ab3cb0d51ae6ed204f6b0e271ad3f238c3d669e", - "time": 1774458479975, - "transaction": { - "data": "0xe9ae5c530100000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000004000000000000000000000000000000000000000000000000000000000000007e00000000000000000000000000000000000000000000000000000000000000020000000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000000000200000000000000000000000001a1ec25dc08e98e5e93f1104b5e5cdd298707d31000000000000000000000000000000000000000000000000000affd25569f31b000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000006e55f57552900000000000000000000000000000000000000000000000000000000000000800000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000affd25569f31b00000000000000000000000000000000000000000000000000000000000000c00000000000000000000000000000000000000000000000000000000000000018756e69737761705065726d69743246656544796e616d696300000000000000000000000000000000000000000000000000000000000000000000000000000600000000000000000000000000000000000000000000000000000000000000000000000000000000000000000055d398326f99059ff775485246999027b3197955000000000000000000000000000000000000000000000000000ae706610dc1b50000000000000000000000000000000000000000000000001b0285ccb7aa216e0000000000000000000000000000000000000000000000000000000000000120000000000000000000000000000000000000000000000000000018cbf45c3166000000000000000000000000b28da7bc87a9dd1e60849aa7fcb5da24ea913c42000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000004ce3593564c000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000000a00000000000000000000000000000000000000000000000000000000069c41d58000000000000000000000000000000000000000000000000000000000000000110000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000002000000000000000000000000000000000000000000000000000000000000003c0000000000000000000000000000000000000000000000000000000000000004000000000000000000000000000000000000000000000000000000000000000800000000000000000000000000000000000000000000000000000000000000003070b0e000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000030000000000000000000000000000000000000000000000000000000000000060000000000000000000000000000000000000000000000000000000000000022000000000000000000000000000000000000000000000000000000000000002a000000000000000000000000000000000000000000000000000000000000001a0000000000000000000000000000000000000000000000000000000000000002000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000080000000000000000000000000000000000000000000000000000ae706610dc1b50000000000000000000000000000000000000000000000001b054a21502b94e50000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000002000000000000000000000000055d398326f99059ff775485246999027b319795500000000000000000000000000000000000000000000000000000000000000640000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000060000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000006000000000000000000000000055d398326f99059ff775485246999027b3197955000000000000000000000000c590175e458b83680867afd273527ff58f74c02b0000000000000000000000000000000000000000000000000000000000000000756e69780000000000810000000000000000000000000000000000001d000000000000000000000000000000000000000000000000000000", - "from": "0xf25bd11c334507fd007d584e2d0b7b2c6543f714", - "gas": "0x56b53", - "gasLimit": "0x56b53", - "maxFeePerGas": "0x3938700", - "maxPriorityFeePerGas": "0x3938700", - "nonce": "0x11", - "to": "0xf25bd11c334507fd007d584e2d0b7b2c6543f714", - "type": "0x2", - "value": "0x0" - } - }, - { - "chainId": "0x38", - "hash": "0xed393847afe485dbf8427e91376060279bc2cbf3983da8ec0522b50aecb841dd", - "networkType": "bsc-mainnet", - "networkUrl": "https://bsc-mainnet.infura.io/v3/{infuraProjectId}", - "origin": "metamask", - "rawTransaction": "0x02f907d13810840393870084039387008307c36c94f25bd11c334507fd007d584e2d0b7b2c6543f71480b90764e9ae5c530100000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000004000000000000000000000000000000000000000000000000000000000000007000000000000000000000000000000000000000000000000000000000000000020000000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000000000200000000000000000000000001a1ec25dc08e98e5e93f1104b5e5cdd298707d31000000000000000000000000000000000000000000000000000afc3cc610b89b000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000006055f57552900000000000000000000000000000000000000000000000000000000000000800000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000afc3cc610b89b00000000000000000000000000000000000000000000000000000000000000c000000000000000000000000000000000000000000000000000000000000000136f6e65496e6368563646656544796e616d6963000000000000000000000000000000000000000000000000000000000000000000000000000000000000000520000000000000000000000000000000000000000000000000000000000000000000000000000000000000000055d398326f99059ff775485246999027b3197955000000000000000000000000000000000000000000000000000ae369df0b00f50000000000000000000000000000000000000000000000001af6b663b4690deb0000000000000000000000000000000000000000000000000000000000000120000000000000000000000000000000000000000000000000000018d2e705b7a6000000000000000000000000b28da7bc87a9dd1e60849aa7fcb5da24ea913c42000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000003e807ed2379000000000000000000000000990636ecb3ff04d33d92e970d3d588bf5cd8d086000000000000000000000000eeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeee00000000000000000000000055d398326f99059ff775485246999027b3197955000000000000000000000000990636ecb3ff04d33d92e970d3d588bf5cd8d086000000000000000000000000c590175e458b83680867afd273527ff58f74c02b000000000000000000000000000000000000000000000000000ae369df0b00f50000000000000000000000000000000000000000000000001af6b663b4690deb00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000120000000000000000000000000000000000000000000000000000000000000029600000000000000000000000000000000000000000000027800006800004e00a0744c8c09000000000000000000000000000000000000000090cbe4bdd538d6e9b379bff5fe72c3d67a521de5000000000000000000000000000000000000000000000000000000475b97efe54041bb4cdb9cbd36b01bd1cbaebf2de08d9173bc095cd0e30db05120111111125421ca6dc452d289314280a0f8842a65bb4cdb9cbd36b01bd1cbaebf2de08d9173bc095c0144f497df7500000000000000000000000000000000000000006c2caac72e0038e50d62808d0000000000000000000000009e229b12cc9081d6a510b29ccbd6311743e277ed000000000000000000000000000000000000000000000000000000000000000000000000000000000000000055d398326f99059ff775485246999027b3197955000000000000000000000000bb4cdb9cbd36b01bd1cbaebf2de08d9173bc095c0000000000000000000000000000000000000000000000001b83958a4f9a37da000000000000000000000000000000000000000000000000000ae3228373111000000000000000000000000000002564010069c40956e970d3d588bf5cd8d08618c6a2ff35e831bf7be8ac306a40f74f12e01fe5a2df8750a20af91ca13aeb5da850a36210261371289aacb3d10c8fec9585e49daf000c58ac34d1231ee95dc40000000000000000000000000000000000000000000000000000000000000000280000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001a00000000000000000000000000000000000000000000000000000000000000014111111125421ca6dc452d289314280a0f8842a65000000000000000000000000000000000000000000007dcbea7c00000000000000000000000000000000000000000000000053000000000000000000000000000000000000000000000000000000c080a02ef942efb3d5f6200a256f84351e9b7707540dd4c0104c904ff8c863268ea63ea02de6ef77559c156f7d38b30596bbde261da5f64fc0abf4de97df56672e06672c", - "time": 1774455070211, - "transaction": { - "data": "0xe9ae5c530100000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000004000000000000000000000000000000000000000000000000000000000000007000000000000000000000000000000000000000000000000000000000000000020000000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000000000200000000000000000000000001a1ec25dc08e98e5e93f1104b5e5cdd298707d31000000000000000000000000000000000000000000000000000afc3cc610b89b000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000006055f57552900000000000000000000000000000000000000000000000000000000000000800000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000afc3cc610b89b00000000000000000000000000000000000000000000000000000000000000c000000000000000000000000000000000000000000000000000000000000000136f6e65496e6368563646656544796e616d6963000000000000000000000000000000000000000000000000000000000000000000000000000000000000000520000000000000000000000000000000000000000000000000000000000000000000000000000000000000000055d398326f99059ff775485246999027b3197955000000000000000000000000000000000000000000000000000ae369df0b00f50000000000000000000000000000000000000000000000001af6b663b4690deb0000000000000000000000000000000000000000000000000000000000000120000000000000000000000000000000000000000000000000000018d2e705b7a6000000000000000000000000b28da7bc87a9dd1e60849aa7fcb5da24ea913c42000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000003e807ed2379000000000000000000000000990636ecb3ff04d33d92e970d3d588bf5cd8d086000000000000000000000000eeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeee00000000000000000000000055d398326f99059ff775485246999027b3197955000000000000000000000000990636ecb3ff04d33d92e970d3d588bf5cd8d086000000000000000000000000c590175e458b83680867afd273527ff58f74c02b000000000000000000000000000000000000000000000000000ae369df0b00f50000000000000000000000000000000000000000000000001af6b663b4690deb00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000120000000000000000000000000000000000000000000000000000000000000029600000000000000000000000000000000000000000000027800006800004e00a0744c8c09000000000000000000000000000000000000000090cbe4bdd538d6e9b379bff5fe72c3d67a521de5000000000000000000000000000000000000000000000000000000475b97efe54041bb4cdb9cbd36b01bd1cbaebf2de08d9173bc095cd0e30db05120111111125421ca6dc452d289314280a0f8842a65bb4cdb9cbd36b01bd1cbaebf2de08d9173bc095c0144f497df7500000000000000000000000000000000000000006c2caac72e0038e50d62808d0000000000000000000000009e229b12cc9081d6a510b29ccbd6311743e277ed000000000000000000000000000000000000000000000000000000000000000000000000000000000000000055d398326f99059ff775485246999027b3197955000000000000000000000000bb4cdb9cbd36b01bd1cbaebf2de08d9173bc095c0000000000000000000000000000000000000000000000001b83958a4f9a37da000000000000000000000000000000000000000000000000000ae3228373111000000000000000000000000000002564010069c40956e970d3d588bf5cd8d08618c6a2ff35e831bf7be8ac306a40f74f12e01fe5a2df8750a20af91ca13aeb5da850a36210261371289aacb3d10c8fec9585e49daf000c58ac34d1231ee95dc40000000000000000000000000000000000000000000000000000000000000000280000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001a00000000000000000000000000000000000000000000000000000000000000014111111125421ca6dc452d289314280a0f8842a65000000000000000000000000000000000000000000007dcbea7c00000000000000000000000000000000000000000000000053000000000000000000000000000000000000000000000000000000", - "from": "0xf25bd11c334507fd007d584e2d0b7b2c6543f714", - "gas": "0x7c36c", - "gasLimit": "0x7c36c", - "maxFeePerGas": "0x3938700", - "maxPriorityFeePerGas": "0x3938700", - "nonce": "0x10", - "to": "0xf25bd11c334507fd007d584e2d0b7b2c6543f714", - "type": "0x2", - "value": "0x0" - } - }, - { - "chainId": "0x38", - "hash": "0x56a7b52d67a823c3b2643abe07da52a648374689ede5189056b09c8afb4ffd72", - "networkType": "bsc-mainnet", - "networkUrl": "https://bsc-mainnet.infura.io/v3/{infuraProjectId}", - "origin": "metamask", - "rawTransaction": "0x02f907d1380f840393870084039387008307c3b794f25bd11c334507fd007d584e2d0b7b2c6543f71480b90764e9ae5c530100000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000004000000000000000000000000000000000000000000000000000000000000007000000000000000000000000000000000000000000000000000000000000000020000000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000000000200000000000000000000000001a1ec25dc08e98e5e93f1104b5e5cdd298707d31000000000000000000000000000000000000000000000000000afdec783ab29b000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000006055f57552900000000000000000000000000000000000000000000000000000000000000800000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000afdec783ab29b00000000000000000000000000000000000000000000000000000000000000c000000000000000000000000000000000000000000000000000000000000000136f6e65496e6368563646656544796e616d6963000000000000000000000000000000000000000000000000000000000000000000000000000000000000000520000000000000000000000000000000000000000000000000000000000000000000000000000000000000000055d398326f99059ff775485246999027b3197955000000000000000000000000000000000000000000000000000ae5129aca26f50000000000000000000000000000000000000000000000001aec02d2e474c2eb0000000000000000000000000000000000000000000000000000000000000120000000000000000000000000000000000000000000000000000018d9dd708ba6000000000000000000000000b28da7bc87a9dd1e60849aa7fcb5da24ea913c42000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000003e807ed2379000000000000000000000000990636ecb3ff04d33d92e970d3d588bf5cd8d086000000000000000000000000eeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeee00000000000000000000000055d398326f99059ff775485246999027b3197955000000000000000000000000990636ecb3ff04d33d92e970d3d588bf5cd8d086000000000000000000000000c590175e458b83680867afd273527ff58f74c02b000000000000000000000000000000000000000000000000000ae5129aca26f50000000000000000000000000000000000000000000000001aec02d2e474c2eb00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000120000000000000000000000000000000000000000000000000000000000000029600000000000000000000000000000000000000000000027800006800004e00a0744c8c09000000000000000000000000000000000000000090cbe4bdd538d6e9b379bff5fe72c3d67a521de500000000000000000000000000000000000000000000000000000047667778454041bb4cdb9cbd36b01bd1cbaebf2de08d9173bc095cd0e30db05120111111125421ca6dc452d289314280a0f8842a65bb4cdb9cbd36b01bd1cbaebf2de08d9173bc095c0144f497df75000000000000000000000000000000000000000042b4d09aea36b38e50a48dae0000000000000000000000009e229b12cc9081d6a510b29ccbd6311743e277ed000000000000000000000000000000000000000000000000000000000000000000000000000000000000000055d398326f99059ff775485246999027b3197955000000000000000000000000bb4cdb9cbd36b01bd1cbaebf2de08d9173bc095c0000000000000000000000000000000000000000000000001b78afcc90d7f6ce000000000000000000000000000000000000000000000000000ae4cb3452aeb00000000000000000000000000000255cbd0069c407fae970d3d588bf5cd8d0866a23c6873e144d23b5b3912af3bca51b4bb88a639f33b63fe294018eed41c2d953ec92c2568ad0a7fe4d415f97b091549f8d072a7f13216c1fd8cb0314bbc24a0000000000000000000000000000000000000000000000000000000000000000280000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001a00000000000000000000000000000000000000000000000000000000000000014111111125421ca6dc452d289314280a0f8842a65000000000000000000000000000000000000000000007dcbea7c00000000000000000000000000000000000000000000000007000000000000000000000000000000000000000000000000000000c001a0e77c7b7e56726842c4a5a5056811c5592b2d05c42262857e7d22b53ad2f66083a03f3dbd3b721bcd6e4361e526ed380505d2f71209fcc7d5bc557a1fc636d0a97c", - "time": 1774454723076, - "transaction": { - "data": "0xe9ae5c530100000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000004000000000000000000000000000000000000000000000000000000000000007000000000000000000000000000000000000000000000000000000000000000020000000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000000000200000000000000000000000001a1ec25dc08e98e5e93f1104b5e5cdd298707d31000000000000000000000000000000000000000000000000000afdec783ab29b000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000006055f57552900000000000000000000000000000000000000000000000000000000000000800000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000afdec783ab29b00000000000000000000000000000000000000000000000000000000000000c000000000000000000000000000000000000000000000000000000000000000136f6e65496e6368563646656544796e616d6963000000000000000000000000000000000000000000000000000000000000000000000000000000000000000520000000000000000000000000000000000000000000000000000000000000000000000000000000000000000055d398326f99059ff775485246999027b3197955000000000000000000000000000000000000000000000000000ae5129aca26f50000000000000000000000000000000000000000000000001aec02d2e474c2eb0000000000000000000000000000000000000000000000000000000000000120000000000000000000000000000000000000000000000000000018d9dd708ba6000000000000000000000000b28da7bc87a9dd1e60849aa7fcb5da24ea913c42000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000003e807ed2379000000000000000000000000990636ecb3ff04d33d92e970d3d588bf5cd8d086000000000000000000000000eeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeee00000000000000000000000055d398326f99059ff775485246999027b3197955000000000000000000000000990636ecb3ff04d33d92e970d3d588bf5cd8d086000000000000000000000000c590175e458b83680867afd273527ff58f74c02b000000000000000000000000000000000000000000000000000ae5129aca26f50000000000000000000000000000000000000000000000001aec02d2e474c2eb00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000120000000000000000000000000000000000000000000000000000000000000029600000000000000000000000000000000000000000000027800006800004e00a0744c8c09000000000000000000000000000000000000000090cbe4bdd538d6e9b379bff5fe72c3d67a521de500000000000000000000000000000000000000000000000000000047667778454041bb4cdb9cbd36b01bd1cbaebf2de08d9173bc095cd0e30db05120111111125421ca6dc452d289314280a0f8842a65bb4cdb9cbd36b01bd1cbaebf2de08d9173bc095c0144f497df75000000000000000000000000000000000000000042b4d09aea36b38e50a48dae0000000000000000000000009e229b12cc9081d6a510b29ccbd6311743e277ed000000000000000000000000000000000000000000000000000000000000000000000000000000000000000055d398326f99059ff775485246999027b3197955000000000000000000000000bb4cdb9cbd36b01bd1cbaebf2de08d9173bc095c0000000000000000000000000000000000000000000000001b78afcc90d7f6ce000000000000000000000000000000000000000000000000000ae4cb3452aeb00000000000000000000000000000255cbd0069c407fae970d3d588bf5cd8d0866a23c6873e144d23b5b3912af3bca51b4bb88a639f33b63fe294018eed41c2d953ec92c2568ad0a7fe4d415f97b091549f8d072a7f13216c1fd8cb0314bbc24a0000000000000000000000000000000000000000000000000000000000000000280000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001a00000000000000000000000000000000000000000000000000000000000000014111111125421ca6dc452d289314280a0f8842a65000000000000000000000000000000000000000000007dcbea7c00000000000000000000000000000000000000000000000007000000000000000000000000000000000000000000000000000000", - "from": "0xf25bd11c334507fd007d584e2d0b7b2c6543f714", - "gas": "0x7c3b7", - "gasLimit": "0x7c3b7", - "maxFeePerGas": "0x3938700", - "maxPriorityFeePerGas": "0x3938700", - "nonce": "0xf", - "to": "0xf25bd11c334507fd007d584e2d0b7b2c6543f714", - "type": "0x2", - "value": "0x0" - } - }, - { - "chainId": "0x38", - "hash": "0xfcb60e0a86409c4f780036756684f00d7d1bd9222e1ed5b9384e5d07c7534dc6", - "networkType": "bsc-mainnet", - "networkUrl": "https://bsc-mainnet.infura.io/v3/{infuraProjectId}", - "origin": "metamask", - "rawTransaction": "0x02f908b1380e8403938700840393870083056af194f25bd11c334507fd007d584e2d0b7b2c6543f71480b90844e9ae5c530100000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000004000000000000000000000000000000000000000000000000000000000000007e00000000000000000000000000000000000000000000000000000000000000020000000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000000000200000000000000000000000001a1ec25dc08e98e5e93f1104b5e5cdd298707d31000000000000000000000000000000000000000000000000000b08c694e3e99b000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000006e55f57552900000000000000000000000000000000000000000000000000000000000000800000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000b08c694e3e99b00000000000000000000000000000000000000000000000000000000000000c00000000000000000000000000000000000000000000000000000000000000018756e69737761705065726d69743246656544796e616d696300000000000000000000000000000000000000000000000000000000000000000000000000000600000000000000000000000000000000000000000000000000000000000000000000000000000000000000000055d398326f99059ff775485246999027b3197955000000000000000000000000000000000000000000000000000aefe69672a2150000000000000000000000000000000000000000000000001ab9b7f7ec60f34c0000000000000000000000000000000000000000000000000000000000000120000000000000000000000000000000000000000000000000000018dffe714786000000000000000000000000b28da7bc87a9dd1e60849aa7fcb5da24ea913c42000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000004ce3593564c000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000000a00000000000000000000000000000000000000000000000000000000069c32c5f000000000000000000000000000000000000000000000000000000000000000110000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000002000000000000000000000000000000000000000000000000000000000000003c0000000000000000000000000000000000000000000000000000000000000004000000000000000000000000000000000000000000000000000000000000000800000000000000000000000000000000000000000000000000000000000000003070b0e000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000030000000000000000000000000000000000000000000000000000000000000060000000000000000000000000000000000000000000000000000000000000022000000000000000000000000000000000000000000000000000000000000002a000000000000000000000000000000000000000000000000000000000000001a0000000000000000000000000000000000000000000000000000000000000002000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000080000000000000000000000000000000000000000000000000000aefe69672a2150000000000000000000000000000000000000000000000001abc74d73dcfba560000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000002000000000000000000000000055d398326f99059ff775485246999027b319795500000000000000000000000000000000000000000000000000000000000000640000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000060000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000006000000000000000000000000055d398326f99059ff775485246999027b3197955000000000000000000000000c590175e458b83680867afd273527ff58f74c02b0000000000000000000000000000000000000000000000000000000000000000756e69780000000000810000000000000000000000000000000000006f000000000000000000000000000000000000000000000000000000c001a099914b09556d4c7529697c2e3055f15c52d25fd11cbc8fbf9814fe8b0dad0024a07b667d6177185aa06b29d2f4bce30e31e737ef9c13a9c0277c896b296ae4d05b", - "time": 1774396768962, - "transaction": { - "data": "0xe9ae5c530100000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000004000000000000000000000000000000000000000000000000000000000000007e00000000000000000000000000000000000000000000000000000000000000020000000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000000000200000000000000000000000001a1ec25dc08e98e5e93f1104b5e5cdd298707d31000000000000000000000000000000000000000000000000000b08c694e3e99b000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000006e55f57552900000000000000000000000000000000000000000000000000000000000000800000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000b08c694e3e99b00000000000000000000000000000000000000000000000000000000000000c00000000000000000000000000000000000000000000000000000000000000018756e69737761705065726d69743246656544796e616d696300000000000000000000000000000000000000000000000000000000000000000000000000000600000000000000000000000000000000000000000000000000000000000000000000000000000000000000000055d398326f99059ff775485246999027b3197955000000000000000000000000000000000000000000000000000aefe69672a2150000000000000000000000000000000000000000000000001ab9b7f7ec60f34c0000000000000000000000000000000000000000000000000000000000000120000000000000000000000000000000000000000000000000000018dffe714786000000000000000000000000b28da7bc87a9dd1e60849aa7fcb5da24ea913c42000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000004ce3593564c000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000000a00000000000000000000000000000000000000000000000000000000069c32c5f000000000000000000000000000000000000000000000000000000000000000110000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000002000000000000000000000000000000000000000000000000000000000000003c0000000000000000000000000000000000000000000000000000000000000004000000000000000000000000000000000000000000000000000000000000000800000000000000000000000000000000000000000000000000000000000000003070b0e000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000030000000000000000000000000000000000000000000000000000000000000060000000000000000000000000000000000000000000000000000000000000022000000000000000000000000000000000000000000000000000000000000002a000000000000000000000000000000000000000000000000000000000000001a0000000000000000000000000000000000000000000000000000000000000002000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000080000000000000000000000000000000000000000000000000000aefe69672a2150000000000000000000000000000000000000000000000001abc74d73dcfba560000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000002000000000000000000000000055d398326f99059ff775485246999027b319795500000000000000000000000000000000000000000000000000000000000000640000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000060000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000006000000000000000000000000055d398326f99059ff775485246999027b3197955000000000000000000000000c590175e458b83680867afd273527ff58f74c02b0000000000000000000000000000000000000000000000000000000000000000756e69780000000000810000000000000000000000000000000000006f000000000000000000000000000000000000000000000000000000", - "from": "0xf25bd11c334507fd007d584e2d0b7b2c6543f714", - "gas": "0x56af1", - "gasLimit": "0x56af1", - "maxFeePerGas": "0x3938700", - "maxPriorityFeePerGas": "0x3938700", - "nonce": "0xe", - "to": "0xf25bd11c334507fd007d584e2d0b7b2c6543f714", - "type": "0x2", - "value": "0x0" - } - }, - { - "chainId": "0x38", - "hash": "0xb11d5a22adb3b536ccdb1b49ec771537a8e2164e1077ab186bed124b62d395fa", - "networkType": "bsc-mainnet", - "networkUrl": "https://bsc-mainnet.infura.io/v3/{infuraProjectId}", - "origin": "metamask", - "rawTransaction": "0x02f908b1380d84039387008403938700830565ad94f25bd11c334507fd007d584e2d0b7b2c6543f71480b90844e9ae5c530100000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000004000000000000000000000000000000000000000000000000000000000000007e00000000000000000000000000000000000000000000000000000000000000020000000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000000000200000000000000000000000001a1ec25dc08e98e5e93f1104b5e5cdd298707d31000000000000000000000000000000000000000000000000000b0b826bef7d1b000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000006e55f57552900000000000000000000000000000000000000000000000000000000000000800000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000b0b826bef7d1b00000000000000000000000000000000000000000000000000000000000000c00000000000000000000000000000000000000000000000000000000000000018756e69737761705065726d69743246656544796e616d696300000000000000000000000000000000000000000000000000000000000000000000000000000600000000000000000000000000000000000000000000000000000000000000000000000000000000000000000055d398326f99059ff775485246999027b3197955000000000000000000000000000000000000000000000000000af29c4c7d79b50000000000000000000000000000000000000000000000001abe75dd9b12df420000000000000000000000000000000000000000000000000000000000000120000000000000000000000000000000000000000000000000000018e61f720366000000000000000000000000b28da7bc87a9dd1e60849aa7fcb5da24ea913c42000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000004ce3593564c000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000000a00000000000000000000000000000000000000000000000000000000069c32356000000000000000000000000000000000000000000000000000000000000000110000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000002000000000000000000000000000000000000000000000000000000000000003c0000000000000000000000000000000000000000000000000000000000000004000000000000000000000000000000000000000000000000000000000000000800000000000000000000000000000000000000000000000000000000000000003070b0e000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000030000000000000000000000000000000000000000000000000000000000000060000000000000000000000000000000000000000000000000000000000000022000000000000000000000000000000000000000000000000000000000000002a000000000000000000000000000000000000000000000000000000000000001a0000000000000000000000000000000000000000000000000000000000000002000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000080000000000000000000000000000000000000000000000000000af29c4c7d79b50000000000000000000000000000000000000000000000001ac1333946d3ac6f0000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000002000000000000000000000000055d398326f99059ff775485246999027b319795500000000000000000000000000000000000000000000000000000000000000640000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000060000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000006000000000000000000000000055d398326f99059ff775485246999027b3197955000000000000000000000000c590175e458b83680867afd273527ff58f74c02b0000000000000000000000000000000000000000000000000000000000000000756e697800000000008100000000000000000000000000000000000076000000000000000000000000000000000000000000000000000000c080a0b8aaa4cb60e307632d767bef9d2235b4d924aeb0a14a6873dab308bcb9e974efa02f6cd389272a29c79e782ce306addcce7ceacb1370bec7c37488eeaadf3eec40", - "time": 1774394465202, - "transaction": { - "data": "0xe9ae5c530100000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000004000000000000000000000000000000000000000000000000000000000000007e00000000000000000000000000000000000000000000000000000000000000020000000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000000000200000000000000000000000001a1ec25dc08e98e5e93f1104b5e5cdd298707d31000000000000000000000000000000000000000000000000000b0b826bef7d1b000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000006e55f57552900000000000000000000000000000000000000000000000000000000000000800000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000b0b826bef7d1b00000000000000000000000000000000000000000000000000000000000000c00000000000000000000000000000000000000000000000000000000000000018756e69737761705065726d69743246656544796e616d696300000000000000000000000000000000000000000000000000000000000000000000000000000600000000000000000000000000000000000000000000000000000000000000000000000000000000000000000055d398326f99059ff775485246999027b3197955000000000000000000000000000000000000000000000000000af29c4c7d79b50000000000000000000000000000000000000000000000001abe75dd9b12df420000000000000000000000000000000000000000000000000000000000000120000000000000000000000000000000000000000000000000000018e61f720366000000000000000000000000b28da7bc87a9dd1e60849aa7fcb5da24ea913c42000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000004ce3593564c000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000000a00000000000000000000000000000000000000000000000000000000069c32356000000000000000000000000000000000000000000000000000000000000000110000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000002000000000000000000000000000000000000000000000000000000000000003c0000000000000000000000000000000000000000000000000000000000000004000000000000000000000000000000000000000000000000000000000000000800000000000000000000000000000000000000000000000000000000000000003070b0e000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000030000000000000000000000000000000000000000000000000000000000000060000000000000000000000000000000000000000000000000000000000000022000000000000000000000000000000000000000000000000000000000000002a000000000000000000000000000000000000000000000000000000000000001a0000000000000000000000000000000000000000000000000000000000000002000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000080000000000000000000000000000000000000000000000000000af29c4c7d79b50000000000000000000000000000000000000000000000001ac1333946d3ac6f0000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000002000000000000000000000000055d398326f99059ff775485246999027b319795500000000000000000000000000000000000000000000000000000000000000640000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000060000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000006000000000000000000000000055d398326f99059ff775485246999027b3197955000000000000000000000000c590175e458b83680867afd273527ff58f74c02b0000000000000000000000000000000000000000000000000000000000000000756e697800000000008100000000000000000000000000000000000076000000000000000000000000000000000000000000000000000000", - "from": "0xf25bd11c334507fd007d584e2d0b7b2c6543f714", - "gas": "0x565ad", - "gasLimit": "0x565ad", - "maxFeePerGas": "0x3938700", - "maxPriorityFeePerGas": "0x3938700", - "nonce": "0xd", - "to": "0xf25bd11c334507fd007d584e2d0b7b2c6543f714", - "type": "0x2", - "value": "0x0" - } - }, - { - "chainId": "0x38", - "hash": "0x4f23859df285d5c21c0822b46837376bdb7639f4ca5eb7a1503430629f644841", - "networkType": "bsc-mainnet", - "networkUrl": "https://bsc-mainnet.infura.io/v3/{infuraProjectId}", - "origin": "metamask", - "rawTransaction": "0x02f90671380b840393870084039387008305f77b94f25bd11c334507fd007d584e2d0b7b2c6543f71480b90604e9ae5c530100000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000004000000000000000000000000000000000000000000000000000000000000005a00000000000000000000000000000000000000000000000000000000000000020000000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000000000200000000000000000000000001a1ec25dc08e98e5e93f1104b5e5cdd298707d31000000000000000000000000000000000000000000000000000b78729f664318000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000004a55f57552900000000000000000000000000000000000000000000000000000000000000800000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000b78729f66431800000000000000000000000000000000000000000000000000000000000000c00000000000000000000000000000000000000000000000000000000000000018756e69737761705065726d69743246656544796e616d6963000000000000000000000000000000000000000000000000000000000000000000000000000003c0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000055d398326f99059ff775485246999027b3197955000000000000000000000000000000000000000000000000000b5e987a623fe20000000000000000000000000000000000000000000000001bb876c97fd0f0cd0000000000000000000000000000000000000000000000000000000000000120000000000000000000000000000000000000000000000000000019da25040336000000000000000000000000b28da7bc87a9dd1e60849aa7fcb5da24ea913c420000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000028e3593564c000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000000a00000000000000000000000000000000000000000000000000000000069c31d0d00000000000000000000000000000000000000000000000000000000000000020b000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000002000000000000000000000000000000000000000000000000000000000000004000000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000000000000000000000000000000400000000000000000000000000000000000000000000000000000000000000002000000000000000000000000000000000000000000000000000b5e987a623fe20000000000000000000000000000000000000000000000000000000000000100000000000000000000000000c590175e458b83680867afd273527ff58f74c02b000000000000000000000000000000000000000000000000000b5e987a623fe20000000000000000000000000000000000000000000000001bbb4dc17cb1100a00000000000000000000000000000000000000000000000000000000000000a00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000002bbb4cdb9cbd36b01bd1cbaebf2de08d9173bc095c00006455d398326f99059ff775485246999027b3197955000000000000000000000000000000000000000000756e697800000000008100000000000000000000000000000000000027000000000000000000000000000000000000000000000000000000c080a09310d352a00cc97016f45c59fad5cbdaeda331517c14bd1ac434ec71ac4d8aeca07edfacc44129eab937dd5404f51522ae6a2a32f20f340b34ac29762624bdbc47", - "time": 1774392857345, - "transaction": { - "data": "0xe9ae5c530100000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000004000000000000000000000000000000000000000000000000000000000000005a00000000000000000000000000000000000000000000000000000000000000020000000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000000000200000000000000000000000001a1ec25dc08e98e5e93f1104b5e5cdd298707d31000000000000000000000000000000000000000000000000000b78729f664318000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000004a55f57552900000000000000000000000000000000000000000000000000000000000000800000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000b78729f66431800000000000000000000000000000000000000000000000000000000000000c00000000000000000000000000000000000000000000000000000000000000018756e69737761705065726d69743246656544796e616d6963000000000000000000000000000000000000000000000000000000000000000000000000000003c0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000055d398326f99059ff775485246999027b3197955000000000000000000000000000000000000000000000000000b5e987a623fe20000000000000000000000000000000000000000000000001bb876c97fd0f0cd0000000000000000000000000000000000000000000000000000000000000120000000000000000000000000000000000000000000000000000019da25040336000000000000000000000000b28da7bc87a9dd1e60849aa7fcb5da24ea913c420000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000028e3593564c000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000000a00000000000000000000000000000000000000000000000000000000069c31d0d00000000000000000000000000000000000000000000000000000000000000020b000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000002000000000000000000000000000000000000000000000000000000000000004000000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000000000000000000000000000000400000000000000000000000000000000000000000000000000000000000000002000000000000000000000000000000000000000000000000000b5e987a623fe20000000000000000000000000000000000000000000000000000000000000100000000000000000000000000c590175e458b83680867afd273527ff58f74c02b000000000000000000000000000000000000000000000000000b5e987a623fe20000000000000000000000000000000000000000000000001bbb4dc17cb1100a00000000000000000000000000000000000000000000000000000000000000a00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000002bbb4cdb9cbd36b01bd1cbaebf2de08d9173bc095c00006455d398326f99059ff775485246999027b3197955000000000000000000000000000000000000000000756e697800000000008100000000000000000000000000000000000027000000000000000000000000000000000000000000000000000000", - "from": "0xf25bd11c334507fd007d584e2d0b7b2c6543f714", - "gas": "0x5f77b", - "gasLimit": "0x5f77b", - "maxFeePerGas": "0x3938700", - "maxPriorityFeePerGas": "0x3938700", - "nonce": "0xb", - "to": "0xf25bd11c334507fd007d584e2d0b7b2c6543f714", - "type": "0x2", - "value": "0x0" - } - }, - { - "chainId": "0x38", - "hash": "0x812dd5089184217d8175144edd039285e3eb57d6159fe4ed8cd51d905298abf3", - "networkType": "bsc-mainnet", - "networkUrl": "https://bsc-mainnet.infura.io/v3/{infuraProjectId}", - "origin": "metamask", - "rawTransaction": "0x02f904d1380a8403e9bd508403e9bd508307249594f25bd11c334507fd007d584e2d0b7b2c6543f71480b90464e9ae5c530100000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000004000000000000000000000000000000000000000000000000000000000000004000000000000000000000000000000000000000000000000000000000000000020000000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000000000200000000000000000000000001a1ec25dc08e98e5e93f1104b5e5cdd298707d31000000000000000000000000000000000000000000000000000b72689ad05240000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000003055f57552900000000000000000000000000000000000000000000000000000000000000800000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000b72689ad0524000000000000000000000000000000000000000000000000000000000000000c0000000000000000000000000000000000000000000000000000000000000001b70616e63616b6553776170526f7574657246656544796e616d696300000000000000000000000000000000000000000000000000000000000000000000000220000000000000000000000000000000000000000000000000000000000000000000000000000000000000000055d398326f99059ff775485246999027b3197955000000000000000000000000000000000000000000000000000b5889252270c00000000000000000000000000000000000000000000000001ba3cc100a020bd60000000000000000000000000000000000000000000000000000000000000120000000000000000000000000000000000000000000000000000019df75ade180000000000000000000000000b28da7bc87a9dd1e60849aa7fcb5da24ea913c42000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000e404e45aaf000000000000000000000000bb4cdb9cbd36b01bd1cbaebf2de08d9173bc095c00000000000000000000000055d398326f99059ff775485246999027b31979550000000000000000000000000000000000000000000000000000000000000064000000000000000000000000c590175e458b83680867afd273527ff58f74c02b000000000000000000000000000000000000000000000000000b5889252270c00000000000000000000000000000000000000000000000001ba6a0ea0a378571000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000d4000000000000000000000000000000000000000000000000000000c001a0bb54dad66540981c322282b127692b4563c76a46f83f2eecad353d78a37a13c1a064fa1a66bbb227c4f043d6230119f89a188dff900abb65ad683c96a75cb98352", - "time": 1774392066953, - "transaction": { - "data": "0xe9ae5c530100000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000004000000000000000000000000000000000000000000000000000000000000004000000000000000000000000000000000000000000000000000000000000000020000000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000000000200000000000000000000000001a1ec25dc08e98e5e93f1104b5e5cdd298707d31000000000000000000000000000000000000000000000000000b72689ad05240000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000003055f57552900000000000000000000000000000000000000000000000000000000000000800000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000b72689ad0524000000000000000000000000000000000000000000000000000000000000000c0000000000000000000000000000000000000000000000000000000000000001b70616e63616b6553776170526f7574657246656544796e616d696300000000000000000000000000000000000000000000000000000000000000000000000220000000000000000000000000000000000000000000000000000000000000000000000000000000000000000055d398326f99059ff775485246999027b3197955000000000000000000000000000000000000000000000000000b5889252270c00000000000000000000000000000000000000000000000001ba3cc100a020bd60000000000000000000000000000000000000000000000000000000000000120000000000000000000000000000000000000000000000000000019df75ade180000000000000000000000000b28da7bc87a9dd1e60849aa7fcb5da24ea913c42000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000e404e45aaf000000000000000000000000bb4cdb9cbd36b01bd1cbaebf2de08d9173bc095c00000000000000000000000055d398326f99059ff775485246999027b31979550000000000000000000000000000000000000000000000000000000000000064000000000000000000000000c590175e458b83680867afd273527ff58f74c02b000000000000000000000000000000000000000000000000000b5889252270c00000000000000000000000000000000000000000000000001ba6a0ea0a378571000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000d4000000000000000000000000000000000000000000000000000000", - "from": "0xf25bd11c334507fd007d584e2d0b7b2c6543f714", - "gas": "0x72495", - "gasLimit": "0x72495", - "maxFeePerGas": "0x3e9bd50", - "maxPriorityFeePerGas": "0x3e9bd50", - "nonce": "0xa", - "to": "0xf25bd11c334507fd007d584e2d0b7b2c6543f714", - "type": "0x2", - "value": "0x0" - } - }, - { - "chainId": "0x8f", - "hash": "0xc01cad183b43cd7bbc93fe89808a9224aea6ab4d56b9c70eab0a95122d0ecfc1", - "networkType": "254181b7-0ed1-46c0-ab10-60b310e92a5e", - "networkUrl": "https://monad-mainnet.infura.io/v3/b6bf7d3508c941499b10025c0776eaf8", - "origin": "metamask", - "rawTransaction": "0x02f875818f01840b903480851f7a30ba808252089430e8ccad5a980bdf30447f8c2c48e70989d9d294890da3b72fd37c94b16f80c080a02643c63f537b9208eba29e1d89e65fde0c2af5892ff8d917fe473e6bcd90b21ea013bd896c3b8a39886f2f627433059e3dcabd426f37eaf667d9581414f1a6cdef", - "time": 1773945137320, - "transaction": { - "data": "0x", - "from": "0xb3864b298f4fddbbbd2fa5cf1a2a2748932b3b81", - "gas": "0x5208", - "gasLimit": "0x5208", - "maxFeePerGas": "0x1f7a30ba80", - "maxPriorityFeePerGas": "0xb903480", - "nonce": "0x1", - "to": "0x30e8ccad5a980bdf30447f8c2c48e70989d9d294", - "type": "0x2", - "value": "0xda3b72fd37c94b16f" - } - }, - { - "chainId": "0x8f", - "hash": "0x340c79ebf18167694dc1473158f4f5f885373273a4a80d5cc3c9c480e333027d", - "networkType": "254181b7-0ed1-46c0-ab10-60b310e92a5e", - "networkUrl": "https://monad-mainnet.infura.io/v3/b6bf7d3508c941499b10025c0776eaf8", - "origin": "metamask", - "rawTransaction": "0x02f90e9d818f808473a20d00851fe24293008308d26194962287c9d5b8a682389e61edae90ec882325d08b89169241fad0f4bd6000b90e255f575529000000000000000000000000000000000000000000000000000000000000008000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000169241fad0f4bd600000000000000000000000000000000000000000000000000000000000000000c000000000000000000000000000000000000000000000000000000000000000136b796265725377617046656544796e616d6963000000000000000000000000000000000000000000000000000000000000000000000000000000000000000d400000000000000000000000000000000000000000000000000000000000000000000000000000000000000000754704bc059f8c67012fed69bc8a327a5aafb6030000000000000000000000000000000000000000000000165fb2aeb39b8eeb000000000000000000000000000000000000000000000000000000000000889c170000000000000000000000000000000000000000000000000000000000000120000000000000000000000000000000000000000000000000328f4c1d592e750000000000000000000000000038c2b421e1d9bd824e739bb4e55448a943bde7ef00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000c04e21fd0e9000000000000000000000000000000000000000000000000000000000000002000000000000000000000000063242a4ea82847b20e506b63b0e2e2eff0cc6cb0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000000000000000000000000000009000000000000000000000000000000000000000000000000000000000000000b00000000000000000000000000000000000000000000000000000000000000084000000000000000165fb2aeb39b8eeb0000000000000000165fb2aeb39b8eeb00000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000000e00000000000000000000000000000000000000000000000000000000000000041fe3dabfd8a13f105d34c32f12814d66075efe9690dc073ea73345e042835a6fe532f79880e8b19967b9e510713978bd7e7bc938d5999c36e9e609e78d53b9da81b00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000074000000000000000000000000044ed9b74f4fe2b0975c2b5121b0e906da6ce4a48000000000000000000000000000000000000000000000000000000000000014000000000000000000000000000000000000000000000000000000000000001a00000000000000015415025f76d61000000000000000000177e15376fc9bd000000000000000000165fb2aeb39b8eeb00000000000000000000000000008b65cf00000000000000000000000000000000000000000000090000000f42400000000000000000000000000000004f82e73edb06d29ff62c91ec8f5ff06571bdeb2900000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000069bc43e00000000000000000000000000000000000000000000000000000000000000720000000000000000000000000000000000000000000000000000000000000000261f598cd0000000000000000292be240f0a1ece8c0fffe8c70744f84664b1e1591dd73460000000000000000292be240f0a1ece8c0fffe8c70744f84664b1e150000000000000000000000000000000000000000000000000000000000000002000000000000000000000000000000000000000000000000000000000000004000000000000000000000000000000000000000000000000000000000000004e0000000000000000000000000eeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeee80000000000000000001775ed37f754c00000000000000165fb2aeb39b8eeb000000000000000000000000000000000000000000000000000000000000000060000000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000000000200000000000000000000000000000000000000000000000165fb2aeb39b8eeb00736e774d0000000000000001d1877a31a73c7cb31c02b9e7d7c336531562b21e000000000000000000000000000000000000000000000000000000000000008000000000000000000000000063242a4ea82847b20e506b63b0e2e2eff0cc6cb00000000000000000000000000000000000000000000000000000000000000360000000000000000000000000188d586ddcf52439676ca21a244753fa19f9ea8e000000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000000000600000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000002000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000165fb2aeb39b8eeb00000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000000010000000000000000000000000000000000000000000000000000000000000020000000000000000000000000754704bc059f8c67012fed69bc8a327a5aafb603000000000000000000000000000000000000000000000000000000000000006400000000000000000000000000000000000000000000000000000000000000010000000000000000000000004445520306c9c70952bdfec28f3989f53d9f80c400000000000000000000000000000000000000000000000000000000000000c00000000000000000000000010000000000000000000001a29f149f45db6d3a44000000000000000000000000000000000000000000000000000000000000014000000000000000000000000000000000000000000000001ad93cd1a4544500000000000000000000000000000000000000000000000000000000000000063af6000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000069bc3fe400000000000000000000000000000000000000000000000000000000000000c00000000000000000000000000000000000000000000000000000000000000041857fc31abb9ca1210a62d5b2b0a163780913d4971d4245c0f9ef1225458f5a291f129750199f790ff37ba77e2c7bcf8465dbca51da2db76efa3a8ad80e84ba3b1b00000000000000000000000000000000000000000000000000000000000000000000000000000000000000754704bc059f8c67012fed69bc8a327a5aafb6038000000000000000000000000000000100000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000eeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeee000000000000000000000000754704bc059f8c67012fed69bc8a327a5aafb6030000000000000000000000000000000000000000000000000000000000000160000000000000000000000000000000000000000000000000000000000000018000000000000000000000000000000000000000000000000000000000000001a000000000000000000000000000000000000000000000000000000000000001c000000000000000000000000044ed9b74f4fe2b0975c2b5121b0e906da6ce4a480000000000000000000000000000000000000000000000165fb2aeb39b8eeb000000000000000000000000000000000000000000000000000000000000889c17000000000000000000000000000000000000000000000000000000000000020000000000000000000000000000000000000000000000000000000000000001e00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000a27b22536f75726365223a226d6574616d61736b222c22416d6f756e74496e555344223a22392e3132393138222c22416d6f756e744f7574555344223a22382e393535303931222c22416d6f756e744f7574223a2239313335353637222c22526f7574654944223a2264616532343134616c2d3548337141533a62646366306634643235744149716b70222c2254696d657374616d70223a313737333934343632347d00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000c3c080a018be9e25be64a992cce08310e5e44f0e1327ed7f3087497d6152c070051006c0a02de616bfae73c0ce490220481126729918b690a6465d9f9b14b6c7d339812a65", - "time": 1773944655764, - "transaction": { - "data": "0x5f575529000000000000000000000000000000000000000000000000000000000000008000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000169241fad0f4bd600000000000000000000000000000000000000000000000000000000000000000c000000000000000000000000000000000000000000000000000000000000000136b796265725377617046656544796e616d6963000000000000000000000000000000000000000000000000000000000000000000000000000000000000000d400000000000000000000000000000000000000000000000000000000000000000000000000000000000000000754704bc059f8c67012fed69bc8a327a5aafb6030000000000000000000000000000000000000000000000165fb2aeb39b8eeb000000000000000000000000000000000000000000000000000000000000889c170000000000000000000000000000000000000000000000000000000000000120000000000000000000000000000000000000000000000000328f4c1d592e750000000000000000000000000038c2b421e1d9bd824e739bb4e55448a943bde7ef00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000c04e21fd0e9000000000000000000000000000000000000000000000000000000000000002000000000000000000000000063242a4ea82847b20e506b63b0e2e2eff0cc6cb0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000000000000000000000000000009000000000000000000000000000000000000000000000000000000000000000b00000000000000000000000000000000000000000000000000000000000000084000000000000000165fb2aeb39b8eeb0000000000000000165fb2aeb39b8eeb00000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000000e00000000000000000000000000000000000000000000000000000000000000041fe3dabfd8a13f105d34c32f12814d66075efe9690dc073ea73345e042835a6fe532f79880e8b19967b9e510713978bd7e7bc938d5999c36e9e609e78d53b9da81b00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000074000000000000000000000000044ed9b74f4fe2b0975c2b5121b0e906da6ce4a48000000000000000000000000000000000000000000000000000000000000014000000000000000000000000000000000000000000000000000000000000001a00000000000000015415025f76d61000000000000000000177e15376fc9bd000000000000000000165fb2aeb39b8eeb00000000000000000000000000008b65cf00000000000000000000000000000000000000000000090000000f42400000000000000000000000000000004f82e73edb06d29ff62c91ec8f5ff06571bdeb2900000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000069bc43e00000000000000000000000000000000000000000000000000000000000000720000000000000000000000000000000000000000000000000000000000000000261f598cd0000000000000000292be240f0a1ece8c0fffe8c70744f84664b1e1591dd73460000000000000000292be240f0a1ece8c0fffe8c70744f84664b1e150000000000000000000000000000000000000000000000000000000000000002000000000000000000000000000000000000000000000000000000000000004000000000000000000000000000000000000000000000000000000000000004e0000000000000000000000000eeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeee80000000000000000001775ed37f754c00000000000000165fb2aeb39b8eeb000000000000000000000000000000000000000000000000000000000000000060000000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000000000200000000000000000000000000000000000000000000000165fb2aeb39b8eeb00736e774d0000000000000001d1877a31a73c7cb31c02b9e7d7c336531562b21e000000000000000000000000000000000000000000000000000000000000008000000000000000000000000063242a4ea82847b20e506b63b0e2e2eff0cc6cb00000000000000000000000000000000000000000000000000000000000000360000000000000000000000000188d586ddcf52439676ca21a244753fa19f9ea8e000000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000000000600000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000002000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000165fb2aeb39b8eeb00000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000000010000000000000000000000000000000000000000000000000000000000000020000000000000000000000000754704bc059f8c67012fed69bc8a327a5aafb603000000000000000000000000000000000000000000000000000000000000006400000000000000000000000000000000000000000000000000000000000000010000000000000000000000004445520306c9c70952bdfec28f3989f53d9f80c400000000000000000000000000000000000000000000000000000000000000c00000000000000000000000010000000000000000000001a29f149f45db6d3a44000000000000000000000000000000000000000000000000000000000000014000000000000000000000000000000000000000000000001ad93cd1a4544500000000000000000000000000000000000000000000000000000000000000063af6000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000069bc3fe400000000000000000000000000000000000000000000000000000000000000c00000000000000000000000000000000000000000000000000000000000000041857fc31abb9ca1210a62d5b2b0a163780913d4971d4245c0f9ef1225458f5a291f129750199f790ff37ba77e2c7bcf8465dbca51da2db76efa3a8ad80e84ba3b1b00000000000000000000000000000000000000000000000000000000000000000000000000000000000000754704bc059f8c67012fed69bc8a327a5aafb6038000000000000000000000000000000100000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000eeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeee000000000000000000000000754704bc059f8c67012fed69bc8a327a5aafb6030000000000000000000000000000000000000000000000000000000000000160000000000000000000000000000000000000000000000000000000000000018000000000000000000000000000000000000000000000000000000000000001a000000000000000000000000000000000000000000000000000000000000001c000000000000000000000000044ed9b74f4fe2b0975c2b5121b0e906da6ce4a480000000000000000000000000000000000000000000000165fb2aeb39b8eeb000000000000000000000000000000000000000000000000000000000000889c17000000000000000000000000000000000000000000000000000000000000020000000000000000000000000000000000000000000000000000000000000001e00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000a27b22536f75726365223a226d6574616d61736b222c22416d6f756e74496e555344223a22392e3132393138222c22416d6f756e744f7574555344223a22382e393535303931222c22416d6f756e744f7574223a2239313335353637222c22526f7574654944223a2264616532343134616c2d3548337141533a62646366306634643235744149716b70222c2254696d657374616d70223a313737333934343632347d00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000c3", - "from": "0xb3864b298f4fddbbbd2fa5cf1a2a2748932b3b81", - "gas": "0x8d261", - "gasLimit": "0x8d261", - "maxFeePerGas": "0x1fe2429300", - "maxPriorityFeePerGas": "0x73a20d00", - "nonce": "0x0", - "to": "0x962287c9d5b8a682389e61edae90ec882325d08b", - "type": "0x2", - "value": "0x169241fad0f4bd6000" - } - }, - { - "chainId": "0x38", - "hash": "0x77d1a7c60c1d48c7b0dd2c5ddb287e0a6ab58eab88bc0c7c03436c91748defc9", - "networkType": "bsc-mainnet", - "networkUrl": "https://bsc-mainnet.infura.io/v3/{infuraProjectId}", - "origin": "metamask", - "rawTransaction": "0x02f9037938408403938700840393870083060d8b941a1ec25dc08e98e5e93f1104b5e5cdd298707d31871dcc9c3862e837b903055f57552900000000000000000000000000000000000000000000000000000000000000800000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001dcc9c3862e83700000000000000000000000000000000000000000000000000000000000000c0000000000000000000000000000000000000000000000000000000000000001b70616e63616b6553776170526f7574657246656544796e616d696300000000000000000000000000000000000000000000000000000000000000000000000220000000000000000000000000000000000000000000000000000000000000000000000000000000000000000055d398326f99059ff775485246999027b3197955000000000000000000000000000000000000000000000000001d89a9a0a51ed60000000000000000000000000000000000000000000000004b466c76607620630000000000000000000000000000000000000000000000000000000000000120000000000000000000000000000000000000000000000000000042f297bdc961000000000000000000000000e3478b0bb1a5084567c319096437924948be1964000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000e404e45aaf000000000000000000000000bb4cdb9cbd36b01bd1cbaebf2de08d9173bc095c00000000000000000000000055d398326f99059ff775485246999027b31979550000000000000000000000000000000000000000000000000000000000000064000000000000000000000000c590175e458b83680867afd273527ff58f74c02b000000000000000000000000000000000000000000000000001d89a9a0a51ed60000000000000000000000000000000000000000000000004b4e228b1e040df6000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000f6c080a03e3733381b001448473f1207f09462060cbde175f7d509864d8fd9e87b72e22ea0412cbe15a4e9ce43ae0e7b37f2a51b4cfa627c4f87cf5845fc5e22c7fc957343", - "time": 1772652040831, - "transaction": { - "data": "0x5f57552900000000000000000000000000000000000000000000000000000000000000800000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001dcc9c3862e83700000000000000000000000000000000000000000000000000000000000000c0000000000000000000000000000000000000000000000000000000000000001b70616e63616b6553776170526f7574657246656544796e616d696300000000000000000000000000000000000000000000000000000000000000000000000220000000000000000000000000000000000000000000000000000000000000000000000000000000000000000055d398326f99059ff775485246999027b3197955000000000000000000000000000000000000000000000000001d89a9a0a51ed60000000000000000000000000000000000000000000000004b466c76607620630000000000000000000000000000000000000000000000000000000000000120000000000000000000000000000000000000000000000000000042f297bdc961000000000000000000000000e3478b0bb1a5084567c319096437924948be1964000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000e404e45aaf000000000000000000000000bb4cdb9cbd36b01bd1cbaebf2de08d9173bc095c00000000000000000000000055d398326f99059ff775485246999027b31979550000000000000000000000000000000000000000000000000000000000000064000000000000000000000000c590175e458b83680867afd273527ff58f74c02b000000000000000000000000000000000000000000000000001d89a9a0a51ed60000000000000000000000000000000000000000000000004b4e228b1e040df6000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000f6", - "from": "0x30e8ccad5a980bdf30447f8c2c48e70989d9d294", - "gas": "0x60d8b", - "gasLimit": "0x60d8b", - "maxFeePerGas": "0x3938700", - "maxPriorityFeePerGas": "0x3938700", - "nonce": "0x40", - "to": "0x1a1ec25dc08e98e5e93f1104b5e5cdd298707d31", - "type": "0x2", - "value": "0x1dcc9c3862e837" - } - } - ], - "transactionData": {}, - "accountTree": { - "wallets": { - "entropy:01KJ6E9MG4VY87VPKWJPR6W39K": { - "type": "entropy", - "id": "entropy:01KJ6E9MG4VY87VPKWJPR6W39K", - "metadata": { - "name": "Wallet 1", - "entropy": { - "id": "01KJ6E9MG4VY87VPKWJPR6W39K" - } - }, - "status": "ready", - "groups": { - "entropy:01KJ6E9MG4VY87VPKWJPR6W39K/0": { - "type": "multichain-account", - "id": "entropy:01KJ6E9MG4VY87VPKWJPR6W39K/0", - "metadata": { - "name": "Account 1", - "pinned": false, - "hidden": false, - "lastSelected": 1778721516055, - "entropy": { - "groupIndex": 0 - } - }, - "accounts": [ - "cf6fe6ed-1d1c-4649-9662-a232e0aadb82", - "55fe5095-3194-42c2-81d3-5701dcad1924", - "ffb79cf7-3a88-4cfe-864c-a9f656ce1840", - "fedf900d-3caf-4540-9e24-c63400ef2b18" - ] - }, - "entropy:01KJ6E9MG4VY87VPKWJPR6W39K/1": { - "type": "multichain-account", - "id": "entropy:01KJ6E9MG4VY87VPKWJPR6W39K/1", - "metadata": { - "name": "Account 2", - "pinned": false, - "hidden": false, - "lastSelected": 1778721549392, - "entropy": { - "groupIndex": 1 - } - }, - "accounts": [ - "7020eb89-94df-4e67-ba9f-a9ebe6c40524", - "e4cb2ec8-15e3-494a-bde2-6ea14e6d0d6c", - "d05ca007-7a11-470f-8433-a89767f95995", - "1c2440b0-d05e-4b07-881c-ebb9bce2bbb7" - ] - }, - "entropy:01KJ6E9MG4VY87VPKWJPR6W39K/2": { - "type": "multichain-account", - "id": "entropy:01KJ6E9MG4VY87VPKWJPR6W39K/2", - "metadata": { - "name": "Account 3", - "pinned": false, - "hidden": false, - "lastSelected": 1778616449016, - "entropy": { - "groupIndex": 2 - } - }, - "accounts": [ - "02c4222b-f0d3-448e-848f-7bf6b3ce3379", - "c86652a6-e1f3-4e4c-b411-c58efe220dcf", - "23ce192d-62e7-4d4f-a168-93ae18dc915d", - "3d26ef67-6870-4750-af80-bce53fa4a0af" - ] - }, - "entropy:01KJ6E9MG4VY87VPKWJPR6W39K/3": { - "type": "multichain-account", - "id": "entropy:01KJ6E9MG4VY87VPKWJPR6W39K/3", - "metadata": { - "name": "Account 4", - "pinned": false, - "hidden": false, - "lastSelected": 1777420287281, - "entropy": { - "groupIndex": 3 - } - }, - "accounts": [ - "2ddfe00a-fef1-4085-82f5-e5cdc9d8871f", - "5a747531-d39f-49d5-afbd-59c018cc4757", - "c6d62ae8-d02c-4a7a-8222-17ed6cdf0e52", - "8b0e3ad2-d40d-47b1-a9c3-702eb67ab1ba" - ] - }, - "entropy:01KJ6E9MG4VY87VPKWJPR6W39K/4": { - "type": "multichain-account", - "id": "entropy:01KJ6E9MG4VY87VPKWJPR6W39K/4", - "metadata": { - "name": "Account 5", - "pinned": false, - "hidden": false, - "lastSelected": 0, - "entropy": { - "groupIndex": 4 - } - }, - "accounts": [ - "4ad41148-9589-48f1-a20d-1ddd6bcf1282", - "db7205b1-e72f-4082-92c4-5490fdba12c5", - "df59431e-d587-40a5-9c2b-3bdc6584b0e4", - "9e12503a-12d8-4bb4-835f-a0c203ccd67a" - ] - }, - "entropy:01KJ6E9MG4VY87VPKWJPR6W39K/5": { - "type": "multichain-account", - "id": "entropy:01KJ6E9MG4VY87VPKWJPR6W39K/5", - "metadata": { - "name": "Account 6", - "pinned": false, - "hidden": false, - "lastSelected": 0, - "entropy": { - "groupIndex": 5 - } - }, - "accounts": [ - "4493467c-a178-494e-b87e-92f0d7a7d1a1", - "c3fc6bba-683b-44c8-b637-89b55416a8dd", - "03d7de03-c856-4239-93fc-b3cc5352883a", - "c7cf5799-e458-4bb5-b60b-7e74cf2e7c0a" - ] - }, - "entropy:01KJ6E9MG4VY87VPKWJPR6W39K/6": { - "type": "multichain-account", - "id": "entropy:01KJ6E9MG4VY87VPKWJPR6W39K/6", - "metadata": { - "name": "Account 7", - "pinned": false, - "hidden": false, - "lastSelected": 0, - "entropy": { - "groupIndex": 6 - } - }, - "accounts": [ - "77939f4e-1d05-4224-bf26-90dcc3382f5d", - "2858af66-a9cd-456a-b29c-f2f5148a5ac8", - "3d379cac-eb60-4b45-8374-370aac2b76c5", - "f7f2ce83-85bc-49f9-8551-c36c5432a0c1" - ] - }, - "entropy:01KJ6E9MG4VY87VPKWJPR6W39K/7": { - "type": "multichain-account", - "id": "entropy:01KJ6E9MG4VY87VPKWJPR6W39K/7", - "metadata": { - "name": "Account 8", - "pinned": false, - "hidden": false, - "lastSelected": 0, - "entropy": { - "groupIndex": 7 - } - }, - "accounts": [ - "08127c65-97e2-4502-b576-2b25c8cc765f", - "44ca98ce-b819-4e06-b651-ba146dbe22c1", - "744910ce-8368-414f-8e7c-1c5dba71831e", - "73a28e8a-5ecb-4b36-b6f3-d2c12294eebf" - ] - }, - "entropy:01KJ6E9MG4VY87VPKWJPR6W39K/8": { - "type": "multichain-account", - "id": "entropy:01KJ6E9MG4VY87VPKWJPR6W39K/8", - "metadata": { - "name": "Account 9", - "pinned": false, - "hidden": false, - "lastSelected": 0, - "entropy": { - "groupIndex": 8 - } - }, - "accounts": [ - "7e04501c-6e1f-457d-8dd5-68d8f3a4c84f", - "e421a858-a232-40dc-8bbb-d3745bee215b", - "d834c0ad-655b-4707-997d-7048c1896f89", - "78ccb0a9-3647-4bb6-94b4-54d8b4e0b397" - ] - }, - "entropy:01KJ6E9MG4VY87VPKWJPR6W39K/9": { - "type": "multichain-account", - "id": "entropy:01KJ6E9MG4VY87VPKWJPR6W39K/9", - "metadata": { - "name": "Account 10", - "pinned": false, - "hidden": false, - "lastSelected": 0, - "entropy": { - "groupIndex": 9 - } - }, - "accounts": [ - "db094d8c-3c7b-4a1f-97f5-6d43bf894549", - "891b1840-b34b-4059-895b-5f163cff8ff1", - "f5481e08-42e2-4504-9a1f-44c0bbe6e0bb", - "77a6514e-0024-4dc2-b08d-e78c664c37c5" - ] - } - } - }, - "keyring:Ledger Hardware": { - "type": "keyring", - "id": "keyring:Ledger Hardware", - "metadata": { - "name": "Ledger", - "keyring": { - "type": "Ledger Hardware" - } - }, - "status": "ready", - "groups": { - "keyring:Ledger Hardware/0x9dc641ccd7d1e7c66e47a25598ace7219548d887": { - "type": "single-account", - "id": "keyring:Ledger Hardware/0x9dc641ccd7d1e7c66e47a25598ace7219548d887", - "metadata": { - "name": "Ledger Account 2", - "pinned": false, - "hidden": false, - "lastSelected": 0 - }, - "accounts": ["a380d0c9-927f-4aa2-a382-15ed278e70a4"] - }, - "keyring:Ledger Hardware/0x6eff00186ba65c5fade98d75aa4d99ef71fa461b": { - "type": "single-account", - "id": "keyring:Ledger Hardware/0x6eff00186ba65c5fade98d75aa4d99ef71fa461b", - "metadata": { - "name": "Ledger Account 3", - "pinned": false, - "hidden": false, - "lastSelected": 0 - }, - "accounts": ["ae40b2c3-e8e1-45ed-b0cf-a5ba56e74041"] - }, - "keyring:Ledger Hardware/0x04400bb51b1f886cff338eb2b4118f9ceb4e6fd5": { - "type": "single-account", - "id": "keyring:Ledger Hardware/0x04400bb51b1f886cff338eb2b4118f9ceb4e6fd5", - "metadata": { - "name": "Ledger Account 4", - "pinned": false, - "hidden": false, - "lastSelected": 0 - }, - "accounts": ["ea035e3a-ea43-4df0-96aa-b4e50c16396c"] - }, - "keyring:Ledger Hardware/0xb3864b298f4fddbbbd2fa5cf1a2a2748932b3b81": { - "type": "single-account", - "id": "keyring:Ledger Hardware/0xb3864b298f4fddbbbd2fa5cf1a2a2748932b3b81", - "metadata": { - "name": "Ledger Account 5", - "pinned": false, - "hidden": false, - "lastSelected": 1775851212948 - }, - "accounts": ["bf588376-0492-4a35-b653-0f1304a6c5f1"] - }, - "keyring:Ledger Hardware/0xeeeab71a5989b7951389e3df313ea9876508856f": { - "type": "single-account", - "id": "keyring:Ledger Hardware/0xeeeab71a5989b7951389e3df313ea9876508856f", - "metadata": { - "name": "Ledger Account 6", - "pinned": false, - "hidden": false, - "lastSelected": 0 - }, - "accounts": ["7a1e85fa-7c26-48a7-890c-5b2ea56f650c"] - }, - "keyring:Ledger Hardware/0x422b8d8914cdad779f587414d647e953bb3a87db": { - "type": "single-account", - "id": "keyring:Ledger Hardware/0x422b8d8914cdad779f587414d647e953bb3a87db", - "metadata": { - "name": "Ledger Account 7", - "pinned": false, - "hidden": false, - "lastSelected": 0 - }, - "accounts": ["88caeea6-0032-4313-b351-096e9f8e60a9"] - } - } - }, - "entropy:01KMK79H2SG3MB2Q7XWEXMZ013": { - "type": "entropy", - "id": "entropy:01KMK79H2SG3MB2Q7XWEXMZ013", - "metadata": { - "name": "Wallet 2", - "entropy": { - "id": "01KMK79H2SG3MB2Q7XWEXMZ013" - } - }, - "status": "ready", - "groups": { - "entropy:01KMK79H2SG3MB2Q7XWEXMZ013/0": { - "type": "multichain-account", - "id": "entropy:01KMK79H2SG3MB2Q7XWEXMZ013/0", - "metadata": { - "name": "Account 1", - "pinned": false, - "hidden": false, - "lastSelected": 1778721557372, - "entropy": { - "groupIndex": 0 - } - }, - "accounts": [ - "2727ea45-0879-4ce8-bbac-e7b83a7ca3de", - "076cbb47-1752-40b0-9314-1f07e7b88ffa", - "574cb22f-c2d5-40d2-86a5-e3393d33050f", - "c5bf70b0-2c4b-4016-9107-cab94be5fbb0" - ] - }, - "entropy:01KMK79H2SG3MB2Q7XWEXMZ013/1": { - "type": "multichain-account", - "id": "entropy:01KMK79H2SG3MB2Q7XWEXMZ013/1", - "metadata": { - "name": "Real smart account", - "pinned": false, - "hidden": false, - "lastSelected": 0, - "entropy": { - "groupIndex": 1 - } - }, - "accounts": [ - "d0a2da70-b536-4e45-beb8-82e35365093d", - "e86326ea-c687-45bf-84b9-ad4d8618d084", - "e78a4c3d-7649-4797-90ad-9d6ddbe9e6dd", - "658962cf-0ecb-496e-beb8-91b663d244de" - ] - }, - "entropy:01KMK79H2SG3MB2Q7XWEXMZ013/2": { - "type": "multichain-account", - "id": "entropy:01KMK79H2SG3MB2Q7XWEXMZ013/2", - "metadata": { - "name": "Account 3", - "pinned": false, - "hidden": false, - "lastSelected": 0, - "entropy": { - "groupIndex": 2 - } - }, - "accounts": [ - "8163605d-535a-441d-a381-a5eac11ef57d", - "575d130d-01da-44f0-a731-da9967adf412", - "a4c40c7c-01c0-4335-b574-72195898b31c", - "1dd2b0a9-a1ea-4308-92e8-303665fd25c5" - ] - }, - "entropy:01KMK79H2SG3MB2Q7XWEXMZ013/3": { - "type": "multichain-account", - "id": "entropy:01KMK79H2SG3MB2Q7XWEXMZ013/3", - "metadata": { - "name": "Smart account", - "pinned": false, - "hidden": false, - "lastSelected": 0, - "entropy": { - "groupIndex": 3 - } - }, - "accounts": [ - "d9d2faf4-e5f4-4505-bbe2-a03d3c9e10a1", - "7f6eee30-338e-4926-86fa-19436da91f35", - "c2c05428-c846-4992-a5a3-5d151b97fcdb", - "d8086b4c-4361-49ab-8955-efaa5240f561" - ] - }, - "entropy:01KMK79H2SG3MB2Q7XWEXMZ013/4": { - "type": "multichain-account", - "id": "entropy:01KMK79H2SG3MB2Q7XWEXMZ013/4", - "metadata": { - "name": "Account 5", - "pinned": false, - "hidden": false, - "lastSelected": 0, - "entropy": { - "groupIndex": 4 - } - }, - "accounts": [ - "3401973a-4989-44c5-9569-f27f25197c2d", - "040b84bc-2341-4988-b8db-8063bbc6c708", - "1a14e831-0c2c-46ce-8e2b-d7d53cbefb63", - "8fd0b8c5-b42d-462d-965b-2979b4057c88" - ] - }, - "entropy:01KMK79H2SG3MB2Q7XWEXMZ013/5": { - "type": "multichain-account", - "id": "entropy:01KMK79H2SG3MB2Q7XWEXMZ013/5", - "metadata": { - "name": "Account 6", - "pinned": false, - "hidden": false, - "lastSelected": 0, - "entropy": { - "groupIndex": 5 - } - }, - "accounts": [ - "83bd90d5-eaa6-4f8d-b89b-b574273bd04e", - "0089fc3c-35be-4ecf-ba88-22461a3d9503", - "80340772-85d8-41a5-b316-1d8fc8c2cea4", - "e6f7d2e7-8c4c-48f7-9d04-958add8113b7" - ] - } - } - } - } - }, - "selectedAccountGroup": "entropy:01KMK79H2SG3MB2Q7XWEXMZ013/0", - "isAccountTreeSyncingInProgress": false, - "hasAccountTreeSyncingSyncedAtLeastOnce": true, - "accountGroupsMetadata": { - "entropy:01KJ6E9MG4VY87VPKWJPR6W39K/0": { - "hidden": { - "lastUpdatedAt": 0, - "value": false - }, - "lastSelected": 1778721516055, - "name": { - "lastUpdatedAt": 0, - "value": "Account 1" - }, - "pinned": { - "lastUpdatedAt": 0, - "value": false - } - }, - "entropy:01KJ6E9MG4VY87VPKWJPR6W39K/1": { - "hidden": { - "lastUpdatedAt": 0, - "value": false - }, - "lastSelected": 1778721549392, - "name": { - "lastUpdatedAt": 0, - "value": "Account 2" - }, - "pinned": { - "lastUpdatedAt": 0, - "value": false - } - }, - "entropy:01KJ6E9MG4VY87VPKWJPR6W39K/2": { - "hidden": { - "lastUpdatedAt": 0, - "value": false - }, - "lastSelected": 1778616449016, - "name": { - "lastUpdatedAt": 0, - "value": "Account 3" - }, - "pinned": { - "lastUpdatedAt": 0, - "value": false - } - }, - "entropy:01KJ6E9MG4VY87VPKWJPR6W39K/3": { - "hidden": { - "lastUpdatedAt": 0, - "value": false - }, - "lastSelected": 1777420287281, - "name": { - "lastUpdatedAt": 0, - "value": "Account 4" - }, - "pinned": { - "lastUpdatedAt": 0, - "value": false - } - }, - "entropy:01KJ6E9MG4VY87VPKWJPR6W39K/4": { - "hidden": { - "lastUpdatedAt": 0, - "value": false - }, - "lastSelected": 0, - "name": { - "lastUpdatedAt": 0, - "value": "Account 5" - }, - "pinned": { - "lastUpdatedAt": 0, - "value": false - } - }, - "entropy:01KJ6E9MG4VY87VPKWJPR6W39K/5": { - "hidden": { - "lastUpdatedAt": 0, - "value": false - }, - "lastSelected": 0, - "name": { - "lastUpdatedAt": 0, - "value": "Account 6" - }, - "pinned": { - "lastUpdatedAt": 0, - "value": false - } - }, - "entropy:01KJ6E9MG4VY87VPKWJPR6W39K/6": { - "hidden": { - "lastUpdatedAt": 0, - "value": false - }, - "lastSelected": 0, - "name": { - "lastUpdatedAt": 0, - "value": "Account 7" - }, - "pinned": { - "lastUpdatedAt": 0, - "value": false - } - }, - "entropy:01KJ6E9MG4VY87VPKWJPR6W39K/7": { - "hidden": { - "lastUpdatedAt": 0, - "value": false - }, - "lastSelected": 0, - "name": { - "lastUpdatedAt": 0, - "value": "Account 8" - }, - "pinned": { - "lastUpdatedAt": 0, - "value": false - } - }, - "entropy:01KJ6E9MG4VY87VPKWJPR6W39K/8": { - "hidden": { - "lastUpdatedAt": 0, - "value": false - }, - "lastSelected": 0, - "name": { - "lastUpdatedAt": 0, - "value": "Account 9" - }, - "pinned": { - "lastUpdatedAt": 0, - "value": false - } - }, - "entropy:01KJ6E9MG4VY87VPKWJPR6W39K/9": { - "hidden": { - "lastUpdatedAt": 0, - "value": false - }, - "lastSelected": 0, - "name": { - "lastUpdatedAt": 0, - "value": "Account 10" - }, - "pinned": { - "lastUpdatedAt": 0, - "value": false - } - }, - "entropy:01KMK79H2SG3MB2Q7XWEXMZ013/0": { - "hidden": { - "lastUpdatedAt": 0, - "value": false - }, - "lastSelected": 1778721557372, - "name": { - "lastUpdatedAt": 0, - "value": "Account 1" - }, - "pinned": { - "lastUpdatedAt": 0, - "value": false - } - }, - "entropy:01KMK79H2SG3MB2Q7XWEXMZ013/1": { - "hidden": { - "lastUpdatedAt": 0, - "value": false - }, - "lastSelected": 0, - "name": { - "lastUpdatedAt": 1774466681731, - "value": "Real smart account" - }, - "pinned": { - "lastUpdatedAt": 0, - "value": false - } - }, - "entropy:01KMK79H2SG3MB2Q7XWEXMZ013/2": { - "hidden": { - "lastUpdatedAt": 0, - "value": false - }, - "lastSelected": 0, - "name": { - "lastUpdatedAt": 0, - "value": "Account 3" - }, - "pinned": { - "lastUpdatedAt": 0, - "value": false - } - }, - "entropy:01KMK79H2SG3MB2Q7XWEXMZ013/3": { - "hidden": { - "lastUpdatedAt": 0, - "value": false - }, - "lastSelected": 0, - "name": { - "lastUpdatedAt": 1774466681731, - "value": "Smart account" - }, - "pinned": { - "lastUpdatedAt": 0, - "value": false - } - }, - "entropy:01KMK79H2SG3MB2Q7XWEXMZ013/4": { - "hidden": { - "lastUpdatedAt": 0, - "value": false - }, - "lastSelected": 0, - "name": { - "lastUpdatedAt": 0, - "value": "Account 5" - }, - "pinned": { - "lastUpdatedAt": 0, - "value": false - } - }, - "entropy:01KMK79H2SG3MB2Q7XWEXMZ013/5": { - "hidden": { - "lastUpdatedAt": 0, - "value": false - }, - "lastSelected": 0, - "name": { - "lastUpdatedAt": 0, - "value": "Account 6" - }, - "pinned": { - "lastUpdatedAt": 0, - "value": false - } - }, - "keyring:Ledger Hardware/0x04400bb51b1f886cff338eb2b4118f9ceb4e6fd5": { - "hidden": { - "lastUpdatedAt": 0, - "value": false - }, - "lastSelected": 0, - "name": { - "lastUpdatedAt": 0, - "value": "Ledger Account 4" - }, - "pinned": { - "lastUpdatedAt": 0, - "value": false - } - }, - "keyring:Ledger Hardware/0x422b8d8914cdad779f587414d647e953bb3a87db": { - "hidden": { - "lastUpdatedAt": 0, - "value": false - }, - "lastSelected": 0, - "name": { - "lastUpdatedAt": 0, - "value": "Ledger Account 7" - }, - "pinned": { - "lastUpdatedAt": 0, - "value": false - } - }, - "keyring:Ledger Hardware/0x6eff00186ba65c5fade98d75aa4d99ef71fa461b": { - "hidden": { - "lastUpdatedAt": 0, - "value": false - }, - "lastSelected": 0, - "name": { - "lastUpdatedAt": 0, - "value": "Ledger Account 3" - }, - "pinned": { - "lastUpdatedAt": 0, - "value": false - } - }, - "keyring:Ledger Hardware/0x9dc641ccd7d1e7c66e47a25598ace7219548d887": { - "hidden": { - "lastUpdatedAt": 0, - "value": false - }, - "lastSelected": 0, - "name": { - "lastUpdatedAt": 0, - "value": "Ledger Account 2" - }, - "pinned": { - "lastUpdatedAt": 0, - "value": false - } - }, - "keyring:Ledger Hardware/0xb3864b298f4fddbbbd2fa5cf1a2a2748932b3b81": { - "hidden": { - "lastUpdatedAt": 0, - "value": false - }, - "lastSelected": 1775851212948, - "name": { - "lastUpdatedAt": 0, - "value": "Ledger Account 5" - }, - "pinned": { - "lastUpdatedAt": 0, - "value": false - } - }, - "keyring:Ledger Hardware/0xeeeab71a5989b7951389e3df313ea9876508856f": { - "hidden": { - "lastUpdatedAt": 0, - "value": false - }, - "lastSelected": 0, - "name": { - "lastUpdatedAt": 0, - "value": "Ledger Account 6" - }, - "pinned": { - "lastUpdatedAt": 0, - "value": false - } - } - }, - "accountWalletsMetadata": {}, - "connectivityStatus": "online", - "grantedPermissions": [], - "pendingRevocations": [], - "lastSyncedTimestamp": -1, - "isFetchingGatorPermissions": false, - "rewardsActiveAccount": { - "account": "eip155:0:0x141d32a89a1e0a5ef360034a2f60a4b917c18838", - "hasOptedIn": false, - "lastFreshOptInStatusCheck": 1779126362763, - "lastPerpsDiscountRateFetched": null, - "perpsFeeDiscount": null, - "subscriptionId": null - }, - "rewardsAccounts": { - "bip122:000000000019d6689c085ae165831e93:bc1qklk4c2g7pk2eertfh0zgw9gn6gaq7px9stmtsz": { - "account": "bip122:000000000019d6689c085ae165831e93:bc1qklk4c2g7pk2eertfh0zgw9gn6gaq7px9stmtsz", - "hasOptedIn": false, - "lastFreshOptInStatusCheck": 1779126362764, - "lastPerpsDiscountRateFetched": null, - "perpsFeeDiscount": null, - "subscriptionId": null - }, - "eip155:0:0x04400bb51b1f886cff338eb2b4118f9ceb4e6fd5": { - "account": "eip155:0:0x04400bb51b1f886cff338eb2b4118f9ceb4e6fd5", - "hasOptedIn": false, - "lastFreshOptInStatusCheck": 1779126362875, - "lastPerpsDiscountRateFetched": null, - "perpsFeeDiscount": null, - "subscriptionId": null - }, - "eip155:0:0x09b8556833e53f92ee0b668db146b43ca2cab130": { - "account": "eip155:0:0x09b8556833e53f92ee0b668db146b43ca2cab130", - "hasOptedIn": false, - "lastFreshOptInStatusCheck": 1779126362875, - "lastPerpsDiscountRateFetched": null, - "perpsFeeDiscount": null, - "subscriptionId": null - }, - "eip155:0:0x141d32a89a1e0a5ef360034a2f60a4b917c18838": { - "account": "eip155:0:0x141d32a89a1e0a5ef360034a2f60a4b917c18838", - "hasOptedIn": false, - "lastFreshOptInStatusCheck": 1779126362763, - "lastPerpsDiscountRateFetched": null, - "perpsFeeDiscount": null, - "subscriptionId": null - }, - "eip155:0:0x2b6a82d1fea4d5b137095ca5306ba2589b630a08": { - "account": "eip155:0:0x2b6a82d1fea4d5b137095ca5306ba2589b630a08", - "hasOptedIn": false, - "lastFreshOptInStatusCheck": 1779126362874, - "lastPerpsDiscountRateFetched": null, - "perpsFeeDiscount": null, - "subscriptionId": null - }, - "eip155:0:0x30e8ccad5a980bdf30447f8c2c48e70989d9d294": { - "account": "eip155:0:0x30e8ccad5a980bdf30447f8c2c48e70989d9d294", - "hasOptedIn": false, - "lastFreshOptInStatusCheck": 1779126362874, - "lastPerpsDiscountRateFetched": null, - "perpsFeeDiscount": null, - "subscriptionId": null - }, - "eip155:0:0x3823c59973351f50e8b985e182b81300dae9bb45": { - "account": "eip155:0:0x3823c59973351f50e8b985e182b81300dae9bb45", - "hasOptedIn": false, - "lastFreshOptInStatusCheck": 1779126362874, - "lastPerpsDiscountRateFetched": null, - "perpsFeeDiscount": null, - "subscriptionId": null - }, - "eip155:0:0x422b8d8914cdad779f587414d647e953bb3a87db": { - "account": "eip155:0:0x422b8d8914cdad779f587414d647e953bb3a87db", - "hasOptedIn": false, - "lastFreshOptInStatusCheck": 1779126362875, - "lastPerpsDiscountRateFetched": null, - "perpsFeeDiscount": null, - "subscriptionId": null - }, - "eip155:0:0x452ca3dad6db7f3a47bbf15b758b6749db579bbc": { - "account": "eip155:0:0x452ca3dad6db7f3a47bbf15b758b6749db579bbc", - "hasOptedIn": false, - "lastFreshOptInStatusCheck": 1779126362874, - "lastPerpsDiscountRateFetched": null, - "perpsFeeDiscount": null, - "subscriptionId": null - }, - "eip155:0:0x6eff00186ba65c5fade98d75aa4d99ef71fa461b": { - "account": "eip155:0:0x6eff00186ba65c5fade98d75aa4d99ef71fa461b", - "hasOptedIn": false, - "lastFreshOptInStatusCheck": 1779126362875, - "lastPerpsDiscountRateFetched": null, - "perpsFeeDiscount": null, - "subscriptionId": null - }, - "eip155:0:0x83ad6a1294d949d514361326bcebae4f73957327": { - "account": "eip155:0:0x83ad6a1294d949d514361326bcebae4f73957327", - "hasOptedIn": false, - "lastFreshOptInStatusCheck": 1779126362874, - "lastPerpsDiscountRateFetched": null, - "perpsFeeDiscount": null, - "subscriptionId": null - }, - "eip155:0:0x94d1362400e999b38c845ca2c305c084031dae84": { - "account": "eip155:0:0x94d1362400e999b38c845ca2c305c084031dae84", - "hasOptedIn": false, - "lastFreshOptInStatusCheck": 1779126362874, - "lastPerpsDiscountRateFetched": null, - "perpsFeeDiscount": null, - "subscriptionId": null - }, - "eip155:0:0x98931e2b2272891c2e8e47d675007d94ae90ce64": { - "account": "eip155:0:0x98931e2b2272891c2e8e47d675007d94ae90ce64", - "hasOptedIn": false, - "lastFreshOptInStatusCheck": 1779126362875, - "lastPerpsDiscountRateFetched": null, - "perpsFeeDiscount": null, - "subscriptionId": null - }, - "eip155:0:0x9dc641ccd7d1e7c66e47a25598ace7219548d887": { - "account": "eip155:0:0x9dc641ccd7d1e7c66e47a25598ace7219548d887", - "hasOptedIn": false, - "lastFreshOptInStatusCheck": 1779126362875, - "lastPerpsDiscountRateFetched": null, - "perpsFeeDiscount": null, - "subscriptionId": null - }, - "eip155:0:0xa30078e306614c2f444550da6bc759173dfb61fd": { - "account": "eip155:0:0xa30078e306614c2f444550da6bc759173dfb61fd", - "hasOptedIn": false, - "lastFreshOptInStatusCheck": 1779126362875, - "lastPerpsDiscountRateFetched": null, - "perpsFeeDiscount": null, - "subscriptionId": null - }, - "eip155:0:0xb3864b298f4fddbbbd2fa5cf1a2a2748932b3b81": { - "account": "eip155:0:0xb3864b298f4fddbbbd2fa5cf1a2a2748932b3b81", - "hasOptedIn": false, - "lastFreshOptInStatusCheck": 1779126362875, - "lastPerpsDiscountRateFetched": null, - "perpsFeeDiscount": null, - "subscriptionId": null - }, - "eip155:0:0xbcc30cc9b8109f87fcede0c57e3a8c3dc979e3d0": { - "account": "eip155:0:0xbcc30cc9b8109f87fcede0c57e3a8c3dc979e3d0", - "hasOptedIn": false, - "lastFreshOptInStatusCheck": 1779126362874, - "lastPerpsDiscountRateFetched": null, - "perpsFeeDiscount": null, - "subscriptionId": null - }, - "eip155:0:0xc9442048fd0c34b684035a82188b69c4ee5e8f21": { - "account": "eip155:0:0xc9442048fd0c34b684035a82188b69c4ee5e8f21", - "hasOptedIn": false, - "lastFreshOptInStatusCheck": 1779126362874, - "lastPerpsDiscountRateFetched": null, - "perpsFeeDiscount": null, - "subscriptionId": null - }, - "eip155:0:0xda04e0fe4e79eebcaffcbfff8ea0bdcd442d2119": { - "account": "eip155:0:0xda04e0fe4e79eebcaffcbfff8ea0bdcd442d2119", - "hasOptedIn": false, - "lastFreshOptInStatusCheck": 1779126362875, - "lastPerpsDiscountRateFetched": null, - "perpsFeeDiscount": null, - "subscriptionId": null - }, - "eip155:0:0xe2f39519240814a77047490357ced4d094b6c9c7": { - "account": "eip155:0:0xe2f39519240814a77047490357ced4d094b6c9c7", - "hasOptedIn": false, - "lastFreshOptInStatusCheck": 1779126362874, - "lastPerpsDiscountRateFetched": null, - "perpsFeeDiscount": null, - "subscriptionId": null - }, - "eip155:0:0xeeeab71a5989b7951389e3df313ea9876508856f": { - "account": "eip155:0:0xeeeab71a5989b7951389e3df313ea9876508856f", - "hasOptedIn": false, - "lastFreshOptInStatusCheck": 1779126362875, - "lastPerpsDiscountRateFetched": null, - "perpsFeeDiscount": null, - "subscriptionId": null - }, - "eip155:0:0xf1f63d55e8f25c962079be324c71cdcf792c6047": { - "account": "eip155:0:0xf1f63d55e8f25c962079be324c71cdcf792c6047", - "hasOptedIn": false, - "lastFreshOptInStatusCheck": 1779126362875, - "lastPerpsDiscountRateFetched": null, - "perpsFeeDiscount": null, - "subscriptionId": null - }, - "eip155:0:0xf25bd11c334507fd007d584e2d0b7b2c6543f714": { - "account": "eip155:0:0xf25bd11c334507fd007d584e2d0b7b2c6543f714", - "hasOptedIn": false, - "lastFreshOptInStatusCheck": 1779126362874, - "lastPerpsDiscountRateFetched": null, - "perpsFeeDiscount": null, - "subscriptionId": null - }, - "solana:5eykt4UsFv8P8NJdTREpY1vzqKqZKvdp:3PGGUjEUt8jUpqzfAB3bh7A3NWDZhqNcdtCGqeipT6bV": { - "account": "solana:5eykt4UsFv8P8NJdTREpY1vzqKqZKvdp:3PGGUjEUt8jUpqzfAB3bh7A3NWDZhqNcdtCGqeipT6bV", - "hasOptedIn": false, - "lastFreshOptInStatusCheck": 1779126362875, - "lastPerpsDiscountRateFetched": null, - "perpsFeeDiscount": null, - "subscriptionId": null - }, - "solana:5eykt4UsFv8P8NJdTREpY1vzqKqZKvdp:4fhPk4yRhMPQL21Ua2MMUxC2p5VT9q2K4Uep2aGAtYGJ": { - "account": "solana:5eykt4UsFv8P8NJdTREpY1vzqKqZKvdp:4fhPk4yRhMPQL21Ua2MMUxC2p5VT9q2K4Uep2aGAtYGJ", - "hasOptedIn": false, - "lastFreshOptInStatusCheck": 1779126362875, - "lastPerpsDiscountRateFetched": null, - "perpsFeeDiscount": null, - "subscriptionId": null - }, - "solana:5eykt4UsFv8P8NJdTREpY1vzqKqZKvdp:8jKM7u4xsyvDpnqL5DQMVrh8AXxZKJPKJw5QsM7KEF8J": { - "account": "solana:5eykt4UsFv8P8NJdTREpY1vzqKqZKvdp:8jKM7u4xsyvDpnqL5DQMVrh8AXxZKJPKJw5QsM7KEF8J", - "hasOptedIn": false, - "lastFreshOptInStatusCheck": 1779126362874, - "lastPerpsDiscountRateFetched": null, - "perpsFeeDiscount": null, - "subscriptionId": null - }, - "solana:5eykt4UsFv8P8NJdTREpY1vzqKqZKvdp:ALcEx6ANnJams9dX2jUwamfSc2P7gA66tUt83o3F2ipv": { - "account": "solana:5eykt4UsFv8P8NJdTREpY1vzqKqZKvdp:ALcEx6ANnJams9dX2jUwamfSc2P7gA66tUt83o3F2ipv", - "hasOptedIn": false, - "lastFreshOptInStatusCheck": 1779126362875, - "lastPerpsDiscountRateFetched": null, - "perpsFeeDiscount": null, - "subscriptionId": null - }, - "solana:5eykt4UsFv8P8NJdTREpY1vzqKqZKvdp:ATK5qHMB4bNuPh6Hj3RoCLRQrUafg9PoSdR5RhEf6nyz": { - "account": "solana:5eykt4UsFv8P8NJdTREpY1vzqKqZKvdp:ATK5qHMB4bNuPh6Hj3RoCLRQrUafg9PoSdR5RhEf6nyz", - "hasOptedIn": false, - "lastFreshOptInStatusCheck": 1779126362875, - "lastPerpsDiscountRateFetched": null, - "perpsFeeDiscount": null, - "subscriptionId": null - }, - "solana:5eykt4UsFv8P8NJdTREpY1vzqKqZKvdp:Bz3cfju4DDyduz7mRbgV7tN4aKg2mmZp4hqUc5dUJWct": { - "account": "solana:5eykt4UsFv8P8NJdTREpY1vzqKqZKvdp:Bz3cfju4DDyduz7mRbgV7tN4aKg2mmZp4hqUc5dUJWct", - "hasOptedIn": false, - "lastFreshOptInStatusCheck": 1779126362874, - "lastPerpsDiscountRateFetched": null, - "perpsFeeDiscount": null, - "subscriptionId": null - }, - "solana:5eykt4UsFv8P8NJdTREpY1vzqKqZKvdp:CyGir7UdxRCsNXkA89qH1P5p3Zhx11XxsE97WSfNMnLT": { - "account": "solana:5eykt4UsFv8P8NJdTREpY1vzqKqZKvdp:CyGir7UdxRCsNXkA89qH1P5p3Zhx11XxsE97WSfNMnLT", - "hasOptedIn": false, - "lastFreshOptInStatusCheck": 1779126362764, - "lastPerpsDiscountRateFetched": null, - "perpsFeeDiscount": null, - "subscriptionId": null - }, - "solana:5eykt4UsFv8P8NJdTREpY1vzqKqZKvdp:D17b35MvfEann7FDStSUWH6EAXCyfvjBXJmx8zwCeMg5": { - "account": "solana:5eykt4UsFv8P8NJdTREpY1vzqKqZKvdp:D17b35MvfEann7FDStSUWH6EAXCyfvjBXJmx8zwCeMg5", - "hasOptedIn": false, - "lastFreshOptInStatusCheck": 1779126362874, - "lastPerpsDiscountRateFetched": null, - "perpsFeeDiscount": null, - "subscriptionId": null - }, - "solana:5eykt4UsFv8P8NJdTREpY1vzqKqZKvdp:DRZLWUT14336p9NRrquuwt759BSydintJFGiRT6refdA": { - "account": "solana:5eykt4UsFv8P8NJdTREpY1vzqKqZKvdp:DRZLWUT14336p9NRrquuwt759BSydintJFGiRT6refdA", - "hasOptedIn": false, - "lastFreshOptInStatusCheck": 1779126362875, - "lastPerpsDiscountRateFetched": null, - "perpsFeeDiscount": null, - "subscriptionId": null - }, - "solana:5eykt4UsFv8P8NJdTREpY1vzqKqZKvdp:EakrRNLYP3WCatjriJzKSy4HRbmHA4ogdN11dwPPQmJP": { - "account": "solana:5eykt4UsFv8P8NJdTREpY1vzqKqZKvdp:EakrRNLYP3WCatjriJzKSy4HRbmHA4ogdN11dwPPQmJP", - "hasOptedIn": false, - "lastFreshOptInStatusCheck": 1779126362874, - "lastPerpsDiscountRateFetched": null, - "perpsFeeDiscount": null, - "subscriptionId": null - }, - "solana:5eykt4UsFv8P8NJdTREpY1vzqKqZKvdp:F7nHkrzPrE6J8r8jcvLPVE3KbuwGzosGWjiRzXyuWPx1": { - "account": "solana:5eykt4UsFv8P8NJdTREpY1vzqKqZKvdp:F7nHkrzPrE6J8r8jcvLPVE3KbuwGzosGWjiRzXyuWPx1", - "hasOptedIn": false, - "lastFreshOptInStatusCheck": 1779126362875, - "lastPerpsDiscountRateFetched": null, - "perpsFeeDiscount": null, - "subscriptionId": null - }, - "solana:5eykt4UsFv8P8NJdTREpY1vzqKqZKvdp:FauUtcWJ81uyS6naBZD6uSdjNuJvuD73tUnSLJMZUP2e": { - "account": "solana:5eykt4UsFv8P8NJdTREpY1vzqKqZKvdp:FauUtcWJ81uyS6naBZD6uSdjNuJvuD73tUnSLJMZUP2e", - "hasOptedIn": false, - "lastFreshOptInStatusCheck": 1779126362875, - "lastPerpsDiscountRateFetched": null, - "perpsFeeDiscount": null, - "subscriptionId": null - }, - "solana:5eykt4UsFv8P8NJdTREpY1vzqKqZKvdp:GBnbPgkU6Nz1iH8nE1aPc4K5vLt7Y8TLDJm55WEGVdK5": { - "account": "solana:5eykt4UsFv8P8NJdTREpY1vzqKqZKvdp:GBnbPgkU6Nz1iH8nE1aPc4K5vLt7Y8TLDJm55WEGVdK5", - "hasOptedIn": false, - "lastFreshOptInStatusCheck": 1779126362875, - "lastPerpsDiscountRateFetched": null, - "perpsFeeDiscount": null, - "subscriptionId": null - }, - "solana:5eykt4UsFv8P8NJdTREpY1vzqKqZKvdp:HhoQAMYGpUr733KFgZJuZxwVVfqMKLgpChjzehYTRW4C": { - "account": "solana:5eykt4UsFv8P8NJdTREpY1vzqKqZKvdp:HhoQAMYGpUr733KFgZJuZxwVVfqMKLgpChjzehYTRW4C", - "hasOptedIn": false, - "lastFreshOptInStatusCheck": 1779126362874, - "lastPerpsDiscountRateFetched": null, - "perpsFeeDiscount": null, - "subscriptionId": null - }, - "solana:5eykt4UsFv8P8NJdTREpY1vzqKqZKvdp:fXSVz3jyNokxeNN1Z6bvh4eT4ZuXv1gtpGaSg4HxxXw": { - "account": "solana:5eykt4UsFv8P8NJdTREpY1vzqKqZKvdp:fXSVz3jyNokxeNN1Z6bvh4eT4ZuXv1gtpGaSg4HxxXw", - "hasOptedIn": false, - "lastFreshOptInStatusCheck": 1779126362875, - "lastPerpsDiscountRateFetched": null, - "perpsFeeDiscount": null, - "subscriptionId": null - }, - "solana:5eykt4UsFv8P8NJdTREpY1vzqKqZKvdp:uik8nmbvhYfhj1n9hrJ4vigneMrr3qbbbbWuhLLSboP": { - "account": "solana:5eykt4UsFv8P8NJdTREpY1vzqKqZKvdp:uik8nmbvhYfhj1n9hrJ4vigneMrr3qbbbbWuhLLSboP", - "hasOptedIn": false, - "lastFreshOptInStatusCheck": 1779126362875, - "lastPerpsDiscountRateFetched": null, - "perpsFeeDiscount": null, - "subscriptionId": null - }, - "tron:728126428:TXmjzabcG63GjXgGKuaStJh6oCorb8jyja": { - "account": "tron:728126428:TXmjzabcG63GjXgGKuaStJh6oCorb8jyja", - "hasOptedIn": false, - "lastFreshOptInStatusCheck": 1779126362764, - "lastPerpsDiscountRateFetched": null, - "perpsFeeDiscount": null, - "subscriptionId": null - } - }, - "rewardsSubscriptions": {}, - "rewardsSeasons": {}, - "rewardsSeasonStatuses": {}, - "rewardsPointsEstimateHistory": [], - "isUiOpen": true - }, - "appState": { - "customNonceValue": "", - "isNetworkMenuOpen": false, - "nextNonce": null, - "pendingTokens": {}, - "confirmationExchangeRates": {}, - "modal": { - "open": false, - "modalState": { - "name": null, - "props": {} - }, - "previousModalState": { - "name": null - } - }, - "alertOpen": false, - "alertMessage": null, - "qrCodeData": null, - "networkDropdownOpen": false, - "importNftsModal": { - "open": false - }, - "showPermittedNetworkToastOpen": false, - "showIpfsModalOpen": false, - "showBasicFunctionalityModal": false, - "externalServicesOnboardingToggleState": true, - "keyringRemovalSnapModal": { - "snapName": "", - "result": "none" - }, - "showKeyringRemovalSnapModal": false, - "importTokensModalOpen": false, - "deprecatedNetworkModalOpen": false, - "accountDetail": { - "privateKey": "" - }, - "isLoading": false, - "isNftStillFetchingIndication": false, - "loadingMessage": null, - "warning": null, - "defaultHdPaths": { - "trezor": "m/44'/60'/0'/0", - "oneKey": "m/44'/60'/0'/0", - "ledger": "m/44'/60'/0'/0/0", - "lattice": "m/44'/60'/0'/0" - }, - "requestAccountTabs": {}, - "openMetaMaskTabs": {}, - "singleExceptions": { - "testKey": null - }, - "gasLoadingAnimationIsShowing": false, - "smartTransactionsError": null, - "smartTransactionsErrorMessageDismissed": false, - "ledgerWebHidConnectedStatus": "unknown", - "ledgerTransportStatus": "NONE", - "newNetworkAddedName": "", - "newNetworkAddedConfigurationId": "", - "selectedNetworkConfigurationId": "", - "sendInputCurrencySwitched": false, - "newTokensImported": "", - "newTokensImportedError": "", - "onboardedInThisUISession": false, - "customTokenAmount": "", - "txId": null, - "showDeleteMetaMetricsDataModal": false, - "showDataDeletionErrorModal": false, - "isAddingNewNetwork": false, - "isMultiRpcOnboarding": false, - "isAccessedFromDappConnectedSitePopover": false, - "errorInSettings": null, - "showClaimSubmitToast": null, - "showInfuraSwitchToast": false, - "showSupportDataConsentModal": false - }, - "DNS": { - "stage": "UNINITIALIZED", - "resolutions": null, - "error": null, - "warning": null, - "chainId": null, - "domainName": null - }, - "history": { - "mostRecentOverviewPage": "/", - "redirectAfterDefaultPage": null - }, - "confirmAlerts": { - "alerts": {}, - "confirmed": {} - }, - "confirmTransaction": { - "txData": {}, - "tokenData": {}, - "tokenProps": {}, - "fiatTransactionAmount": "", - "fiatTransactionFee": "", - "fiatTransactionTotal": "", - "ethTransactionAmount": "", - "ethTransactionFee": "", - "ethTransactionTotal": "", - "hexTransactionAmount": "", - "hexTransactionFee": "", - "hexTransactionTotal": "", - "nonce": "", - "maxValueMode": {} - }, - "swaps": { - "aggregatorMetadata": null, - "approveTxId": null, - "tradeTxId": null, - "balanceError": false, - "fetchingQuotes": false, - "fromToken": null, - "fromTokenInputValue": "", - "fromTokenError": null, - "isFeatureFlagLoaded": false, - "maxSlippage": 2, - "quotesFetchStartTime": null, - "reviewSwapClickedTimestamp": null, - "topAssets": {}, - "toToken": null, - "customGas": { - "price": null, - "limit": null, - "loading": "INITIAL", - "priceEstimates": {}, - "fallBackPrice": null - }, - "currentSmartTransactionsError": "", - "swapsSTXLoading": false, - "transactionSettingsOpened": false, - "latestAddedTokenTo": "" - }, - "ramps": { - "buyableChains": [ - { - "active": true, - "chainId": "42161", - "chainName": "Arbitrum Mainnet", - "shortName": "Arbitrum", - "isEvm": true, - "nativeTokenSupported": true - }, - { - "active": true, - "chainId": "1313161554", - "chainName": "Aurora Mainnet", - "shortName": "Aurora", - "isEvm": true, - "nativeTokenSupported": false - }, - { - "active": true, - "chainId": "43114", - "chainName": "Avalanche C-Chain Mainnet", - "shortName": "Avalanche C-Chain", - "isEvm": true, - "nativeTokenSupported": true - }, - { - "active": true, - "chainId": "8453", - "chainName": "Base Mainnet", - "shortName": "Base", - "isEvm": true, - "nativeTokenSupported": true - }, - { - "active": true, - "chainId": "bip122:000000000019d6689c085ae165831e93", - "chainName": "Bitcoin", - "shortName": "Bitcoin", - "nativeTokenSupported": true, - "isEvm": false - }, - { - "active": true, - "chainId": "56", - "chainName": "BNB Chain Mainnet", - "shortName": "BNB Chain", - "isEvm": true, - "nativeTokenSupported": true - }, - { - "active": true, - "chainId": "42220", - "chainName": "Celo Mainnet", - "shortName": "Celo", - "isEvm": true, - "nativeTokenSupported": false - }, - { - "active": true, - "chainId": "25", - "chainName": "Cronos Mainnet", - "shortName": "Cronos", - "isEvm": true, - "nativeTokenSupported": true - }, - { - "active": true, - "chainId": "1", - "chainName": "Ethereum Mainnet", - "shortName": "Ethereum", - "isEvm": true, - "nativeTokenSupported": true - }, - { - "active": true, - "chainId": "250", - "chainName": "Fantom Mainnet", - "shortName": "Fantom", - "isEvm": true, - "nativeTokenSupported": false - }, - { - "active": true, - "chainId": "100", - "chainName": "Gnosis Mainnet", - "shortName": "Gnosis", - "isEvm": true, - "nativeTokenSupported": false - }, - { - "active": true, - "chainId": "59144", - "chainName": "Linea", - "shortName": "Linea", - "isEvm": true, - "nativeTokenSupported": true - }, - { - "active": true, - "chainId": "1284", - "chainName": "Moonbeam Mainnet", - "shortName": "Moonbeam", - "isEvm": true, - "nativeTokenSupported": true - }, - { - "active": true, - "chainId": "10", - "chainName": "Optimism Mainnet", - "shortName": "Optimism", - "isEvm": true, - "nativeTokenSupported": true - }, - { - "active": true, - "chainId": "137", - "chainName": "Polygon Mainnet", - "shortName": "Polygon", - "isEvm": true, - "nativeTokenSupported": true - }, - { - "active": true, - "chainId": "1101", - "chainName": "Polygon zkEVM", - "shortName": "Polygon zkEVM", - "isEvm": true, - "nativeTokenSupported": true - }, - { - "active": true, - "chainId": "solana:5eykt4UsFv8P8NJdTREpY1vzqKqZKvdp", - "chainName": "Solana", - "shortName": "Solana", - "nativeTokenSupported": true, - "isEvm": false - }, - { - "active": true, - "chainId": "tron:728126428", - "chainName": "Tron", - "shortName": "Tron", - "isEvm": true, - "nativeTokenSupported": false - }, - { - "active": true, - "chainId": "tron:728126428", - "chainName": "Tron", - "shortName": "Tron", - "nativeTokenSupported": true, - "isEvm": false - }, - { - "active": true, - "chainId": "324", - "chainName": "zkSync Era Mainnet", - "shortName": "zkSync Era", - "isEvm": true, - "nativeTokenSupported": true - } - ], - "isFetched": true - }, - "bridge": { - "fromToken": null, - "toToken": null, - "fromTokenInputValue": null, - "fromTokenExchangeRate": null, - "fromTokenBalance": null, - "fromNativeBalance": null, - "sortOrder": "cost_ascending", - "selectedQuote": null, - "wasTxDeclined": false, - "slippage": 2, - "txAlert": null, - "txAlertStatus": 1, - "isSrcAssetPickerOpen": false, - "isDestAssetPickerOpen": false - }, - "gas": { - "customData": { - "price": null, - "limit": null - } - }, - "localeMessages": { - "currentLocale": "en", - "current": { - "CSS_loadingTakingTooLongActionText": { - "message": "Relaunch MetaMask if the problem persists.", - "description": "Second line of the message that is shown when the initial loading of the MetaMask UI takes a very long time." - }, - "CSS_loadingTakingTooLongMessageText": { - "message": "Loading is taking longer than usual.", - "description": "First line of the message that is shown when the initial loading of the MetaMask UI takes a very long time." - }, - "QRHardwareInvalidTransactionTitle": { - "message": "Error" - }, - "QRHardwareMismatchedSignId": { - "message": "Incongruent transaction data. Please check the transaction details." - }, - "QRHardwarePubkeyAccountOutOfRange": { - "message": "No more accounts. If you would like to access another account unlisted below, please reconnect your hardware wallet and select it." - }, - "QRHardwareScanInstructions": { - "message": "Place the QR code in front of your camera. The screen is blurred, but it will not affect the reading." - }, - "QRHardwareSignRequestCancel": { - "message": "Reject" - }, - "QRHardwareSignRequestDescription": { - "message": "After you’ve signed with your wallet, click on 'Get Signature' to receive the signature" - }, - "QRHardwareSignRequestGetSignature": { - "message": "Get signature" - }, - "QRHardwareSignRequestSubtitle": { - "message": "Scan the QR code with your wallet" - }, - "QRHardwareSignRequestTitle": { - "message": "Request signature" - }, - "QRHardwareUnknownQRCodeTitle": { - "message": "Error" - }, - "QRHardwareUnknownWalletQRCode": { - "message": "Invalid QR code. Please scan the sync QR code of the hardware wallet." - }, - "QRHardwareWalletImporterTitle": { - "message": "Scan QR code" - }, - "QRHardwareWalletSteps1Description": { - "message": "You can choose from a list of official QR-code supporting partners below." - }, - "QRHardwareWalletSteps1Title": { - "message": "Connect your QR hardware wallet" - }, - "QRHardwareWalletSteps2Description": { - "message": "Ngrave Zero" - }, - "SrpListHideAccounts": { - "message": "Hide $1 accounts", - "description": "$1 is the number of accounts" - }, - "SrpListHideSingleAccount": { - "message": "Hide 1 account" - }, - "SrpListShowAccounts": { - "message": "Show $1 accounts", - "description": "$1 is the number of accounts" - }, - "SrpListShowSingleAccount": { - "message": "Show 1 account" - }, - "about": { - "message": "About" - }, - "aboutMetaMask": { - "message": "About MetaMask" - }, - "accept": { - "message": "Accept" - }, - "acceptAndClose": { - "message": "Accept and close" - }, - "acceptTermsOfUse": { - "message": "I have read and agree to the $1", - "description": "$1 is the `terms` message" - }, - "accessingYourCamera": { - "message": "Accessing your camera..." - }, - "account": { - "message": "Account" - }, - "accountActivity": { - "message": "Account activity" - }, - "accountActivityText": { - "message": "Select the accounts you want to be notified about:" - }, - "accountAlreadyExistsLogin": { - "message": "Log in" - }, - "accountAlreadyExistsLoginDescription": { - "message": "A wallet using “$1” already exists. Do you want to try logging in instead?", - "description": "$1 is the account email" - }, - "accountAlreadyExistsTitle": { - "message": "Wallet already exists" - }, - "accountDetails": { - "message": "Account details" - }, - "accountDetailsSrpBackUpMessage": { - "message": "Back up", - "description": "Text used to describe action for SRP backup. Used on multichain account details." - }, - "accountIdenticon": { - "message": "Account icon" - }, - "accountName": { - "message": "Account name" - }, - "accountNameAlreadyInUse": { - "message": "This name is already in use.", - "description": "Error help text used under the input field for renaming multichain account when user tries to use existing name." - }, - "accountNameDuplicate": { - "message": "This account name already exists", - "description": "This is an error message shown when the user enters a new account name that matches an existing account name" - }, - "accountNameReserved": { - "message": "This account name is reserved", - "description": "This is an error message shown when the user enters a new account name that is reserved for future use" - }, - "accountNotFoundCreateOne": { - "message": "Yes, create a new wallet" - }, - "accountNotFoundDescription": { - "message": "We couldn’t find a wallet for “$1”. Do you want to create a new one with this login?", - "description": "$1 is the account email" - }, - "accountNotFoundTitle": { - "message": "Wallet not found" - }, - "accountOptions": { - "message": "Account options" - }, - "accountPermissionToast": { - "message": "Account permissions updated" - }, - "accountSelectionRequired": { - "message": "You need to select an account!" - }, - "accountSmallCase": { - "message": "account" - }, - "accountTypeNotSupported": { - "message": "Account type not supported" - }, - "accounts": { - "message": "Accounts" - }, - "accountsConnected": { - "message": "Accounts connected" - }, - "accountsPermissionsTitle": { - "message": "See your accounts and suggest transactions" - }, - "accountsSmallCase": { - "message": "accounts" - }, - "actionUnavailable": { - "message": "Action unavailable" - }, - "active": { - "message": "Active" - }, - "activity": { - "message": "Activity" - }, - "activityEmptyDescription": { - "message": "Nothing to see yet. Swap your first token today." - }, - "add": { - "message": "Add" - }, - "addACustomNetwork": { - "message": "Add a custom network" - }, - "addANetwork": { - "message": "Add a network" - }, - "addANickname": { - "message": "Add a nickname" - }, - "addAUrl": { - "message": "Add a URL" - }, - "addAWallet": { - "message": "Add a wallet" - }, - "addAccount": { - "message": "Add account" - }, - "addAccountFromNetwork": { - "message": "Add $1 account", - "description": "$1 is the network name, e.g. Bitcoin or Solana" - }, - "addAccountOrWallet": { - "message": "Add account or wallet" - }, - "addAcquiredTokens": { - "message": "Add the tokens you've acquired using MetaMask" - }, - "addAlias": { - "message": "Add alias" - }, - "addBitcoinAccountLabel": { - "message": "Bitcoin account" - }, - "addBlockExplorer": { - "message": "Add a block explorer" - }, - "addBlockExplorerUrl": { - "message": "Add a block explorer URL" - }, - "addContact": { - "message": "Add contact" - }, - "addCustomNetwork": { - "message": "Add custom network" - }, - "addCustomToken": { - "message": "Add a custom token" - }, - "addEthereumChainWarningModalHeader": { - "message": "Only add this RPC provider if you’re sure you can trust it. $1", - "description": "$1 is addEthereumChainWarningModalHeaderPartTwo passed separately so that it can be bolded" - }, - "addEthereumChainWarningModalHeaderPartTwo": { - "message": "Malicious providers may lie about the state of the blockchain and record your network activity." - }, - "addEthereumChainWarningModalListHeader": { - "message": "It's important that your provider is reliable, as it has the power to:" - }, - "addEthereumChainWarningModalListPointOne": { - "message": "See your accounts and IP address, and associate them together" - }, - "addEthereumChainWarningModalListPointThree": { - "message": "Show account balances and other on-chain states" - }, - "addEthereumChainWarningModalListPointTwo": { - "message": "Broadcast your transactions" - }, - "addEthereumChainWarningModalTitle": { - "message": "You are adding a new RPC provider for Ethereum Mainnet" - }, - "addEthereumWatchOnlyAccount": { - "message": "Watch an Ethereum account (Beta)" - }, - "addFriendsAndAddresses": { - "message": "Add friends and addresses you trust" - }, - "addFunds": { - "message": "Add funds" - }, - "addFundsModalBuyCrypto": { - "message": "Buy crypto" - }, - "addFundsModalReceiveTokens": { - "message": "Receive tokens" - }, - "addFundsModalSwapTokens": { - "message": "Swap tokens" - }, - "addHardwareWalletLabel": { - "message": "Hardware wallet" - }, - "addMemo": { - "message": "Add memo" - }, - "addNetwork": { - "message": "Add network" - }, - "addNetworkConfirmationTitle": { - "message": "Add $1", - "description": "$1 represents network name" - }, - "addNetworkDescription": { - "message": "A site is suggesting additional network details." - }, - "addNewAccount": { - "message": "Add a new Ethereum account" - }, - "addNewEthereumAccountLabel": { - "message": "Ethereum account" - }, - "addNewSolanaAccountLabel": { - "message": "Solana account" - }, - "addNewTronAccountLabel": { - "message": "Tron account" - }, - "addNft": { - "message": "Add NFT" - }, - "addNfts": { - "message": "Add NFTs" - }, - "addNonEvmAccount": { - "message": "Add $1 account", - "description": "$1 is the non EVM network where the account is going to be created, e.g. Bitcoin or Solana" - }, - "addNonEvmAccountFromNetworkPicker": { - "message": "To enable the $1 network, you need to create a $2 account.", - "description": "$1 is the non EVM network where the account is going to be created, e.g. Solana Mainnet or Solana Devnet. $2 is the account type, e.g. Bitcoin or Solana" - }, - "addRpcUrl": { - "message": "Add RPC URL" - }, - "addSnapAccountToggle": { - "message": "Enable \"Add account Snap (Beta)\"" - }, - "addSnapAccountsDescription": { - "message": "Turning on this feature will give you the option to add the new Beta account Snaps right from your account list. If you install an account Snap, remember that it is a third-party service." - }, - "addSuggestedNFTs": { - "message": "Add suggested NFTs" - }, - "addSuggestedTokens": { - "message": "Add suggested tokens" - }, - "addToken": { - "message": "Add token" - }, - "addUrl": { - "message": "Add URL" - }, - "addWallet": { - "message": "Add wallet" - }, - "addedProtectionDescription": { - "message": "You're interacting with an unknown address. This helps prevent malicious transactions." - }, - "addedProtectionOptionalBadge": { - "message": "Optional" - }, - "addedProtectionTitle": { - "message": "Added protection" - }, - "addedProtectionTooltip": { - "message": "If the final transaction doesn't match this preview, it won't go through. You only pay the network fee." - }, - "additionalNetworks": { - "message": "Additional networks" - }, - "address": { - "message": "Address" - }, - "addressCopied": { - "message": "Address copied" - }, - "addressLabel": { - "message": "address", - "description": "Label for address count (single address). Used on multichain account details page." - }, - "addressMismatch": { - "message": "Site address mismatch" - }, - "addressMismatchOriginal": { - "message": "Current URL: $1", - "description": "$1 replaced by origin URL in confirmation request" - }, - "addressMismatchPunycode": { - "message": "Punycode version: $1", - "description": "$1 replaced by punycode version of the URL in confirmation request" - }, - "addressQrCodeModalDescription": { - "message": "Use this address to receive tokens and collectibles on $1", - "description": "$1 is the network name" - }, - "addressQrCodeModalHeading": { - "message": "$1 Address", - "description": "$1 is the network name" - }, - "addressQrCodeModalTitle": { - "message": "$1 / $2", - "description": "$1 is account name, $2 is network name" - }, - "addresses": { - "message": "Addresses", - "description": "Multichain account menu item for linking to addresses page" - }, - "addressesLabel": { - "message": "addresses", - "description": "Label for address count (multiple addresses). Used on multichain account details page." - }, - "advanced": { - "message": "Advanced" - }, - "advancedDetailsDataDesc": { - "message": "Data" - }, - "advancedDetailsHexDesc": { - "message": "Hex" - }, - "advancedDetailsNonceDesc": { - "message": "Nonce" - }, - "advancedDetailsNonceTooltip": { - "message": "This is the transaction number of an account. Nonce for the first transaction is 0 and it increases in sequential order." - }, - "advancedEIP1559ModalTitle": { - "message": "Advanced network fee" - }, - "advancedGasPriceModalTitle": { - "message": "Advanced network fee" - }, - "advancedGasPriceTitle": { - "message": "Gas price" - }, - "advancedPermissionSmallCase": { - "message": "advanced permission" - }, - "advancedPermissionsSmallCase": { - "message": "advanced permissions" - }, - "airDropPatternDescription": { - "message": "The token's on-chain history reveals prior instances of suspicious airdrop activities." - }, - "airDropPatternTitle": { - "message": "Airdrop pattern" - }, - "airgapVault": { - "message": "AirGap Vault" - }, - "alert": { - "message": "Alert" - }, - "alertAccountTypeUpgradeMessage": { - "message": "You're updating your account to a smart account. You'll keep the same account address while unlocking faster transactions and lower network fees. $1" - }, - "alertAccountTypeUpgradeTitle": { - "message": "Account type" - }, - "alertActionBurnAddress": { - "message": "Sending assets to burn address" - }, - "alertActionBuyWithNativeCurrency": { - "message": "Buy $1" - }, - "alertActionEditNetworkFee": { - "message": "Edit network fee" - }, - "alertActionUpdateGas": { - "message": "Update gas limit" - }, - "alertActionUpdateGasFee": { - "message": "Update fee" - }, - "alertActionUpdateGasFeeLevel": { - "message": "Update gas options" - }, - "alertContentMultipleApprovals": { - "message": "You're giving someone else permission to withdraw your tokens, even though it's not necessary for this transaction." - }, - "alertDisableTooltip": { - "message": "This can be changed in \"Settings > Alerts\"" - }, - "alertInsufficientPayTokenBalance": { - "message": "Insufficient funds" - }, - "alertInsufficientPayTokenBalanceFeesNoTarget": { - "message": "Add less or use a different token." - }, - "alertInsufficientPayTokenNative": { - "message": "Not enough $1 to cover fees. Use a token on another network or add more $1 to continue.", - "description": "$1 is the native currency symbol (e.g. ETH)" - }, - "alertMessageAddressMismatchWarning": { - "message": "Attackers sometimes mimic sites by making small changes to the site address. Make sure you're interacting with the intended site before you continue." - }, - "alertMessageAddressTrustSignal": { - "message": "We can't verify this address. It may be new or unverified. Only continue if you trust the source." - }, - "alertMessageAddressTrustSignalMalicious": { - "message": "If you confirm this request, you will probably lose your assets to a scammer." - }, - "alertMessageBurnAddress": { - "message": "You're sending your assets to a burn address. If you continue, you'll lose your assets." - }, - "alertMessageChangeInSimulationResults": { - "message": "Estimated changes for this transaction have been updated. Review them closely before proceeding." - }, - "alertMessageFirstTimeInteraction": { - "message": "You're interacting with this address for the first time. Make sure that it's correct before you continue." - }, - "alertMessageGasEstimateFailed": { - "message": "We’re unable to provide an accurate fee and this estimate might be high. We suggest you to input a custom gas limit, but there’s a risk the transaction will still fail." - }, - "alertMessageGasFeeLow": { - "message": "When choosing a low fee, expect slower transactions and longer wait times. For faster transactions, choose Market or Aggressive fee options." - }, - "alertMessageGasTooLow": { - "message": "To continue with this transaction, you’ll need to increase the gas limit to 21000 or higher." - }, - "alertMessageInsufficientBalanceWithNativeCurrency": { - "message": "You do not have enough $1 in your account to pay for network fees." - }, - "alertMessageNoGasPrice": { - "message": "We can’t move forward with this transaction until you manually update the fee." - }, - "alertMessageOriginTrustSignalMalicious": { - "message": "This has been identified as malicious. We recommend not interacting with this site." - }, - "alertMessageOriginTrustSignalWarning": { - "message": "This has been identified as suspicious. We recommend not interacting with this site." - }, - "alertMessageSignInDomainMismatch": { - "message": "The site making the request is not the site you’re signing into. This could be an attempt to steal your login credentials." - }, - "alertMessageSignInWrongAccount": { - "message": "This site is asking you to sign in using the wrong account." - }, - "alertMessageSuggestedGasFeeHigh": { - "message": "This site is suggesting a higher network fee than necessary. Edit the network fee to pay less." - }, - "alertMessageTokenTrustSignalMalicious": { - "message": "This token has been identified as malicious. Interacting with this token may result in a loss of funds." - }, - "alertMessageTokenTrustSignalWarning": { - "message": "This token shows strong signs of malicious behavior. Continuing may result in loss of funds." - }, - "alertModalAcknowledge": { - "message": "I have acknowledged the risk and still want to proceed" - }, - "alertModalDetails": { - "message": "Alert details" - }, - "alertModalReviewAllAlerts": { - "message": "Review all alerts" - }, - "alertNoPayTokenQuotesMessage": { - "message": "This payment route isn't available right now. Try changing the amount, network, or token and we'll find the best option." - }, - "alertNoPayTokenQuotesTitle": { - "message": "No quotes" - }, - "alertPayHardwareAccountMessage": { - "message": "Hardware wallets aren't supported.\nSwitch wallets to continue." - }, - "alertPayHardwareAccountTitle": { - "message": "Wallet not supported" - }, - "alertReasonChangeInSimulationResults": { - "message": "Results have changed" - }, - "alertReasonFirstTimeInteraction": { - "message": "1st interaction" - }, - "alertReasonGasEstimateFailed": { - "message": "Inaccurate fee" - }, - "alertReasonGasFeeLow": { - "message": "Slow speed" - }, - "alertReasonGasSponsorshipUnavailable": { - "message": "Gas sponsorship unavailable" - }, - "alertReasonGasTooLow": { - "message": "Low gas limit" - }, - "alertReasonInsufficientBalance": { - "message": "Insufficient funds" - }, - "alertReasonMultipleApprovals": { - "message": "Unnecessary permission" - }, - "alertReasonNoGasPrice": { - "message": "Fee estimate unavailable" - }, - "alertReasonOriginTrustSignalMalicious": { - "message": "Malicious site" - }, - "alertReasonOriginTrustSignalVerified": { - "message": "Verified site" - }, - "alertReasonOriginTrustSignalWarning": { - "message": "Suspicious site" - }, - "alertReasonPendingTransactions": { - "message": "Pending transaction" - }, - "alertReasonSignIn": { - "message": "Suspicious sign-in request" - }, - "alertReasonSuggestedGasFeeHigh": { - "message": "High site fee" - }, - "alertReasonTokenTrustSignalMalicious": { - "message": "Malicious token" - }, - "alertReasonTokenTrustSignalWarning": { - "message": "Suspicious token" - }, - "alertReasonWrongAccount": { - "message": "Wrong account" - }, - "alertSelectedAccountWarning": { - "message": "This request is for a different account than the one selected in your wallet. To use another account, connect it to the site." - }, - "alerts": { - "message": "Alerts" - }, - "all": { - "message": "All" - }, - "allDefaultNetworks": { - "message": "All default networks" - }, - "allNetworks": { - "message": "All networks" - }, - "allPermissions": { - "message": "Dapp connections" - }, - "allPopularNetworks": { - "message": "All popular networks" - }, - "allTimeHigh": { - "message": "All-time high" - }, - "allTimeLow": { - "message": "All-time low" - }, - "allTokens": { - "message": "All tokens" - }, - "allowAddRpc": { - "message": "Add RPC" - }, - "allowAddRpcDescription": { - "message": "Allow the site to add a RPC URL for $1.\n\nSet your preferred RPC anytime by going to Networks in Settings", - "description": "$1 is the chain name" - }, - "allowNotifications": { - "message": "Allow notifications" - }, - "amount": { - "message": "Amount" - }, - "amountReceived": { - "message": "Amount received" - }, - "amountSent": { - "message": "Amount sent" - }, - "andForListItems": { - "message": "$1, and $2", - "description": "$1 is the first item, $2 is the last item in a list of items. Used in Snap Install Warning modal." - }, - "andForTwoItems": { - "message": "$1 and $2", - "description": "$1 is the first item, $2 is the second item. Used in Snap Install Warning modal." - }, - "annual": { - "message": "Annual" - }, - "appDescription": { - "message": "The world's most trusted crypto wallet", - "description": "The description of the application" - }, - "appName": { - "message": "MetaMask", - "description": "The name of the application" - }, - "appNameBeta": { - "message": "MetaMask Beta", - "description": "The name of the application (Beta)" - }, - "appNameFlask": { - "message": "MetaMask Flask", - "description": "The name of the application (Flask)" - }, - "apply": { - "message": "Apply" - }, - "approve": { - "message": "Approve spend limit" - }, - "approveButtonText": { - "message": "Approve" - }, - "approveIncreaseAllowance": { - "message": "Increase $1 spending cap", - "description": "The token symbol that is being approved" - }, - "approveSpendingCap": { - "message": "Approve $1 spending cap", - "description": "The token symbol that is being approved" - }, - "approveToken": { - "message": "Approve $1", - "description": "Used in the transaction details summary to describe an approval transaction. $1 is the symbol of the token being approved." - }, - "approved": { - "message": "Approved" - }, - "approvedOn": { - "message": "Approved on $1", - "description": "$1 is the approval date for a permission" - }, - "approvedOnForAccounts": { - "message": "Approved on $1 for $2", - "description": "$1 is the approval date for a permission. $2 is the AvatarGroup component displaying account images." - }, - "areYouSure": { - "message": "Are you sure?" - }, - "asset": { - "message": "Asset" - }, - "assetChartNoHistoricalPrices": { - "message": "We could not fetch any historical data" - }, - "assetOptions": { - "message": "Asset options" - }, - "assets": { - "message": "Assets" - }, - "assetsDescription": { - "message": "Autodetect tokens in your wallet, display NFTs, and get batched account balance updates" - }, - "asterdexReferralConfirmText": { - "message": "Yes, get 4% back", - "description": "Primary button label on the AsterDEX referral confirmation screen" - }, - "asterdexReferralSubtitle": { - "message": "Get 4% back on trades with a MetaMask referral code.", - "description": "The subtitle of the AsterDEX referral confirmation screen" - }, - "asterdexReferralSubtitle2": { - "message": "Get 4% back on trades with a MetaMask referral code. This discount applies to all future trades, as per AsterDEX's $1. MetaMask earns a fee.", - "description": "Subtitle on the AsterDEX referral confirmation screen. $1 is a link to the partner's terms." - }, - "asterdexReferralTitle": { - "message": "Get 4% back on AsterDEX", - "description": "Title of the AsterDEX referral confirmation screen" - }, - "attemptToCancelSwapForFree": { - "message": "Attempt to cancel swap for free" - }, - "attributes": { - "message": "Attributes" - }, - "attributions": { - "message": "Attributions" - }, - "authorizedPermissions": { - "message": "You have authorized the following permissions" - }, - "autoDetectTokens": { - "message": "Autodetect tokens" - }, - "autoDetectTokensDescriptionV2": { - "message": "Displays new tokens sent to your wallet." - }, - "autoLock": { - "message": "Auto lock" - }, - "autoLockAfter15Seconds": { - "message": "After 15 seconds" - }, - "autoLockAfter1Minute": { - "message": "After 1 minute" - }, - "autoLockAfter30Seconds": { - "message": "After 30 seconds" - }, - "autoLockAfter5Minutes": { - "message": "After 5 minutes" - }, - "autoLockAfterMinutes": { - "message": "After $1 minutes" - }, - "autoLockNever": { - "message": "Never" - }, - "autoLockTimeLimit": { - "message": "Auto-lock timer (minutes)" - }, - "available": { - "message": "available" - }, - "average": { - "message": "Average" - }, - "back": { - "message": "Back" - }, - "backToHome": { - "message": "Back to home" - }, - "backUpIncomplete": { - "message": "Back up incomplete" - }, - "backup": { - "message": "Backup" - }, - "backupAndSync": { - "message": "Backup and sync" - }, - "backupAndSyncBasicFunctionalityNameMention": { - "message": "basic functionality" - }, - "backupAndSyncEnable": { - "message": "Turn on backup and sync" - }, - "backupAndSyncEnableConfirmation": { - "message": "When you turn on backup and sync, you’re also turning on $1. Do you want to continue?", - "description": "$1 is backupAndSyncBasicFunctionalityNameMention in bold." - }, - "backupAndSyncEnableDescription": { - "message": "Backup and sync lets us store encrypted data for your custom settings and features. This keeps your MetaMask experience the same across devices and restores settings and features if you ever need to reinstall MetaMask. This doesn’t back up your Secret Recovery Phrase. $1.", - "description": "$1 is link to the backup and sync privacy policy." - }, - "backupAndSyncEnableDescriptionUpdatePreferences": { - "message": "You can update your preferences at any time in $1", - "description": "$1 is a bolded text that highlights the path to the settings page." - }, - "backupAndSyncEnableDescriptionUpdatePreferencesPath": { - "message": "Settings > Backup and sync." - }, - "backupAndSyncFeatureAccounts": { - "message": "Accounts" - }, - "backupAndSyncFeatureContacts": { - "message": "Contacts" - }, - "backupAndSyncManageWhatYouSync": { - "message": "Manage what you sync" - }, - "backupAndSyncManageWhatYouSyncDescription": { - "message": "Turn on what’s synced between your devices." - }, - "backupAndSyncPrivacyLink": { - "message": "Learn how we protect your privacy" - }, - "backupApprovalInfo": { - "message": "This secret code is required to recover your wallet in case you lose your device, forget your password, have to re-install MetaMask, or want to access your wallet on another device." - }, - "backupApprovalNotice": { - "message": "Back up your Secret Recovery Phrase to keep your wallet and funds secure." - }, - "backupKeyringSnapReminder": { - "message": "Be sure you can access any accounts created by this Snap on your own before removing it" - }, - "backupNow": { - "message": "Back up now" - }, - "balance": { - "message": "Balance" - }, - "balanceOutdated": { - "message": "Balance may be outdated" - }, - "baseFee": { - "message": "Base fee" - }, - "basic": { - "message": "Basic" - }, - "basicConfigurationDescription": { - "message": "MetaMask offers basic features like token details and gas settings through internet services. When you use internet services, your IP address is shared, in this case with MetaMask. This is just like when you visit any website. MetaMask uses this data temporarily and never sells your data. You can use a VPN or turn off these services, but it may affect your MetaMask experience. To learn more read our $1.", - "description": "$1 is to be replaced by the message for privacyMsg, and will link to https://consensys.io/privacy-policy" - }, - "basicConfigurationDescriptionV2": { - "message": "Includes basic features like token details and gas settings. Keep this feature on for the best experience. Read our $1 to learn more.", - "description": "$1 is to be replaced by the message for privacyMsg, and will link to https://consensys.io/privacy-policy" - }, - "basicConfigurationLabel": { - "message": "Basic functionality" - }, - "basicConfigurationModalCheckbox": { - "message": "I understand and want to continue" - }, - "basicConfigurationModalDisclaimerOffPart1": { - "message": "This means you won't fully optimize your time on MetaMask. Basic features (like token details, optimal gas settings, and others) won't be available to you." - }, - "basicConfigurationModalDisclaimerOffPart2": { - "message": "Turning this off also disables some features within privacy, backup and sync, and notifications." - }, - "basicConfigurationModalDisclaimerOn": { - "message": "To optimize your time on MetaMask, you’ll need to turn on this feature. Basic functions (like token details, optimal gas settings, and others) are important to the web3 experience." - }, - "basicConfigurationModalHeadingOff": { - "message": "Turn off basic functionality" - }, - "basicConfigurationModalHeadingOn": { - "message": "Turn on basic functionality" - }, - "basicFunctionalityRequired_description": { - "message": "This feature isn't available while basic functionality is turned off. Use the toggle below to turn it on." - }, - "basicFunctionalityRequired_goToHome": { - "message": "Go to the home page" - }, - "basicFunctionalityRequired_openCreateSnapAccountPage": { - "message": "Open the Create Account page" - }, - "basicFunctionalityRequired_openDefiPage": { - "message": "Open the DeFi page" - }, - "basicFunctionalityRequired_openMusdConversionPage": { - "message": "Open the mUSD Conversion page" - }, - "basicFunctionalityRequired_openNotificationsPage": { - "message": "Open the Notifications page" - }, - "basicFunctionalityRequired_openPerpsPage": { - "message": "Open the Perps page" - }, - "basicFunctionalityRequired_openRewardsPage": { - "message": "Open the Rewards page" - }, - "basicFunctionalityRequired_openSnapsPage": { - "message": "Open the Snaps page" - }, - "basicFunctionalityRequired_openSwapsPage": { - "message": "Open the Swap page" - }, - "basicFunctionalityRequired_openTransactionShieldPage": { - "message": "Open the Transaction Shield page" - }, - "basicFunctionalityRequired_reviewInSettings": { - "message": "Review in settings" - }, - "basicFunctionalityRequired_title": { - "message": "Basic functionality is off" - }, - "basicFunctionalityRequired_toggleLabel": { - "message": "Basic functionality" - }, - "bestQuote": { - "message": "Best quote" - }, - "bestQuoteTooltip": { - "message": "The best quote we found from providers, including provider fees and a 0.25% MetaMask fee. The minimum you'll receive if price changes is $1." - }, - "beta": { - "message": "Beta" - }, - "betaMetamaskVersion": { - "message": "MetaMask Beta Version" - }, - "betaTerms": { - "message": "Beta Terms of Use" - }, - "blockExplorerAccountAction": { - "message": "Account", - "description": "This is used with viewOnEtherscan and viewInExplorer e.g View Account in Explorer" - }, - "blockExplorerAssetAction": { - "message": "Asset", - "description": "This is used with viewOnEtherscan and viewInExplorer e.g View Asset in Explorer" - }, - "blockExplorerSwapAction": { - "message": "Swap", - "description": "This is used with viewOnEtherscan e.g View Swap on Etherscan" - }, - "blockExplorerUrl": { - "message": "Block explorer URL" - }, - "blockExplorerUrlDefinition": { - "message": "The URL used as the block explorer for this network." - }, - "blockExplorerView": { - "message": "View account at $1", - "description": "$1 replaced by URL for custom block explorer" - }, - "blockaid": { - "message": "Blockaid" - }, - "blockaidAlertDescriptionBlur": { - "message": "If you continue, all the assets you’ve listed on Blur could be at risk." - }, - "blockaidAlertDescriptionMalicious": { - "message": "You’re interacting with a malicious site. If you continue, you will lose your assets." - }, - "blockaidAlertDescriptionOpenSea": { - "message": "If you continue, all the assets you’ve listed on OpenSea could be at risk." - }, - "blockaidAlertDescriptionOthers": { - "message": "If you confirm this request, you could lose your assets. We recommend that you cancel this request." - }, - "blockaidAlertDescriptionTokenTransfer": { - "message": "You’re sending your assets to a scammer. If you continue, you’ll lose those assets." - }, - "blockaidAlertDescriptionWithdraw": { - "message": "If you confirm this request, you’re allowing a scammer to withdraw and spend your assets. You won’t get them back." - }, - "blockaidDescriptionApproveFarming": { - "message": "If you approve this request, a third party known for scams might take all your assets." - }, - "blockaidDescriptionBlurFarming": { - "message": "If you approve this request, someone can steal your assets listed on Blur." - }, - "blockaidDescriptionErrored": { - "message": "Because of an error, we couldn't check for security alerts. Only continue if you trust every address involved." - }, - "blockaidDescriptionMaliciousDomain": { - "message": "You're interacting with a malicious domain. If you approve this request, you might lose your assets." - }, - "blockaidDescriptionMightLoseAssets": { - "message": "If you approve this request, you might lose your assets." - }, - "blockaidDescriptionSeaportFarming": { - "message": "If you approve this request, someone can steal your assets listed on OpenSea." - }, - "blockaidDescriptionTransferFarming": { - "message": "If you approve this request, a third party known for scams will take all your assets." - }, - "blockaidTitleDeceptive": { - "message": "This is a deceptive request" - }, - "blockaidTitleMayNotBeSafe": { - "message": "Be careful" - }, - "blockaidTitleSuspicious": { - "message": "This is a suspicious request" - }, - "blockies": { - "message": "Blockies" - }, - "borrowed": { - "message": "Borrowed" - }, - "boughtFor": { - "message": "Bought for" - }, - "bridge": { - "message": "Bridge" - }, - "bridgeAllowSwappingOf": { - "message": "Allow exact access to $1 $2 on $3 for bridging", - "description": "Shows a user that they need to allow a token for swapping on their hardware wallet" - }, - "bridgeApproval": { - "message": "Approve $1 for bridge", - "description": "Used in the transaction display list to describe a transaction that is an approve call on a token that is to be bridged. $1 is the symbol of a token that has been approved." - }, - "bridgeApprovalWarning": { - "message": "You're allowing access to $1 $2. The contract won't access any additional funds." - }, - "bridgeApprovalWarningForHardware": { - "message": "You'll need to allow access to $1 $2 for bridging, and then approve bridging to $3. This will require two separate confirmations." - }, - "bridgeBlockExplorerLinkCopied": { - "message": "Block explorer link copied" - }, - "bridgeConfirmTwoTransactions": { - "message": "You'll need to confirm 2 transactions on your hardware wallet:" - }, - "bridgeCreateSolanaAccount": { - "message": "Create Solana account" - }, - "bridgeCreateSolanaAccountDescription": { - "message": "To swap to the Solana network, you need an account and receiving address." - }, - "bridgeCreateSolanaAccountTitle": { - "message": "You'll need a Solana account first." - }, - "bridgeDetailsTitle": { - "message": "Bridge details", - "description": "Title for the modal showing details about a bridge transaction." - }, - "bridgeEnterAmount": { - "message": "Select amount" - }, - "bridgeExplorerLinkViewOn": { - "message": "View on $1" - }, - "bridgeFee": { - "message": "Bridge fee" - }, - "bridgeFromTo": { - "message": "Bridge $1 $2 to $3", - "description": "Tells a user that they need to confirm on their hardware wallet a bridge. $1 is amount of source token, $2 is the source network, and $3 is the destination network" - }, - "bridgeGasFeesSplit": { - "message": "Any network fee quoted on the previous screen includes both transactions and will be split." - }, - "bridgeGetNewQuote": { - "message": "Get new quote" - }, - "bridgeLowestCost": { - "message": "Lowest cost" - }, - "bridgeMalicious": { - "message": "Malicious" - }, - "bridgeMaliciousTokenTitle": { - "message": "Malicious token" - }, - "bridgeMarketClosedAction": { - "message": "Market closed" - }, - "bridgeMarketClosedDescription": { - "message": "This stock token is currently outside trading hours. Try again when the market reopens." - }, - "bridgeMarketClosedModalDescription": { - "message": "The market that backs this token is currently closed. Tokens can be transferred on-chain at any time." - }, - "bridgeMarketClosedModalLearnMore": { - "message": "Learn more" - }, - "bridgeMarketClosedModalTitle": { - "message": "Market is closed" - }, - "bridgeMarketClosedTitle": { - "message": "Market closed" - }, - "bridgeNoMMFee": { - "message": "No MM fee" - }, - "bridgeNoPriceInfoTitle": { - "message": "No price information" - }, - "bridgePoints": { - "message": "Est. points", - "description": "Label for estimated points that can be earned from a bridge or swap" - }, - "bridgePoints_couldntLoad": { - "message": "Couldn't load", - "description": "Text shown in rewards badge when points couldn't be loaded" - }, - "bridgePoints_error": { - "message": "Couldn't load points", - "description": "Tooltip title when there's an error fetching estimated points" - }, - "bridgePoints_error_content": { - "message": "Don't worry, you're still earning points. They'll show up in your account soon, or you can check in the Rewards tab on MetaMask Mobile.", - "description": "Error message when points estimation fails" - }, - "bridgePoints_tooltip": { - "message": "Points", - "description": "Tooltip title for points" - }, - "bridgePoints_tooltip_content_1": { - "message": "Points are how you earn MetaMask Rewards for completing transactions, like when you swap, bridge, or trade perps.", - "description": "First part of tooltip content explaining rewards points" - }, - "bridgePoints_tooltip_content_2": { - "message": "Keep in mind this value is an estimate and will be finalized once the transaction is complete. Points can take up to 1 hour to be confirmed in your Rewards balance.", - "description": "Second part of tooltip content explaining how points are calculated" - }, - "bridgePriceDataUnavailableError": { - "message": "We couldn't get price information for this token. Make sure the amount received is what you expect before continuing." - }, - "bridgePriceImpact": { - "message": "Price impact" - }, - "bridgePriceImpactFiatAlert": { - "message": "You will lose $1 on this trade" - }, - "bridgePriceImpactHigh": { - "message": "High price impact" - }, - "bridgePriceImpactHighDescription": { - "message": "Because of your trade size and available liquidity, you'll get about $1 less than the market price. This is already factored into your quote." - }, - "bridgePriceImpactNormalDescription": { - "message": "This is how your trade changes the market price of a token. It depends on the trade size, availale liquidity, and provider fees. MetaMask doesn't control price impact." - }, - "bridgePriceImpactTooltipTitle": { - "message": "Price impact" - }, - "bridgePriceImpactVeryHigh": { - "message": "Very high price impact" - }, - "bridgePriceImpactVeryHighDescription": { - "message": "You'll lose approximately $1 of your token's market price on this swap. Try a smaller trade or a more liquid route to improve your rate." - }, - "bridgePriceImpactWarningAriaLabel": { - "message": "Read price impact warning details" - }, - "bridgePriceImpactWarningTitle": { - "message": "Price impact warning" - }, - "bridgeQuoteStreamCompleteAmountTooHigh": { - "message": "No quotes available. Try a smaller amount." - }, - "bridgeQuoteStreamCompleteAmountTooLow": { - "message": "No quotes available. Try a larger amount." - }, - "bridgeQuoteStreamCompleteRetry": { - "message": "Unable to get a quote right now. Try again." - }, - "bridgeQuoteStreamCompleteRwaGeoRestricted": { - "message": "This swap isn't available in your region." - }, - "bridgeQuoteStreamCompleteRwaMarketUnavailable": { - "message": "The market for this asset is currently unavailable. Try again later." - }, - "bridgeQuoteStreamCompleteRwaNativeTokenUnsupported": { - "message": "Swaps between this token and real-world assets aren't supported yet. Try using a different token." - }, - "bridgeQuoteStreamCompleteSlippageTooHigh": { - "message": "Slippage is too high. Try lowering your slippage setting." - }, - "bridgeQuoteStreamCompleteSlippageTooLow": { - "message": "Slippage is too low. Try increasing your slippage setting." - }, - "bridgeQuoteStreamCompleteTokenNotSupported": { - "message": "This token isn't supported. Try using a different token." - }, - "bridgeQuotesSortedByCost": { - "message": "Quotes are sorted by the estimated total cost, which includes the exchange rate and network fee." - }, - "bridgeReceive": { - "message": "Receive $1 on $2", - "description": "Summary line showing token received on destination chain. $1 is the token symbol, $2 is the network name." - }, - "bridgeReceiveLoading": { - "message": "Receiving on destination chain" - }, - "bridgeSecurityDataKnownAirdrop": { - "message": "Suspicious airdrop" - }, - "bridgeSecurityDataKnownConcentratedSupply": { - "message": "Concentrated supply" - }, - "bridgeSecurityDataKnownDynamicAnalysis": { - "message": "Suspicious behavior" - }, - "bridgeSecurityDataKnownFakeTradeMakerCount": { - "message": "Inflated trader count" - }, - "bridgeSecurityDataKnownFakeVolume": { - "message": "Fake volume" - }, - "bridgeSecurityDataKnownHeavilySniped": { - "message": "Heavy bot activity" - }, - "bridgeSecurityDataKnownHiddenSupplyByKeyHolder": { - "message": "Undisclosed supply" - }, - "bridgeSecurityDataKnownHighBuyFee": { - "message": "High buy fee" - }, - "bridgeSecurityDataKnownHighSellFee": { - "message": "High sell fee" - }, - "bridgeSecurityDataKnownHighTransferFee": { - "message": "High transfer fee" - }, - "bridgeSecurityDataKnownHoneypot": { - "message": "Honeypot risk" - }, - "bridgeSecurityDataKnownImpersonator": { - "message": "Impersonator" - }, - "bridgeSecurityDataKnownImpersonatorAsset": { - "message": "Impersonates a sensitive asset" - }, - "bridgeSecurityDataKnownImpersonatorHigh": { - "message": "Likely impersonator" - }, - "bridgeSecurityDataKnownImpersonatorMedium": { - "message": "Possible impersonator" - }, - "bridgeSecurityDataKnownInappropriateContent": { - "message": "Inappropriate content" - }, - "bridgeSecurityDataKnownInorganicVoume": { - "message": "Artificial volume" - }, - "bridgeSecurityDataKnownInsufficientLiquidity": { - "message": "Low locked liquidity" - }, - "bridgeSecurityDataKnownLowReputation": { - "message": "Creator has low reputation" - }, - "bridgeSecurityDataKnownMalicious": { - "message": "Known malicious" - }, - "bridgeSecurityDataKnownMetadata": { - "message": "Suspicious metadata" - }, - "bridgeSecurityDataKnownPostDump": { - "message": "Possible price manipulation" - }, - "bridgeSecurityDataKnownRugpull": { - "message": "Rugpull risk" - }, - "bridgeSecurityDataKnownSanctionedCreator": { - "message": "Sanctioned creator" - }, - "bridgeSecurityDataKnownSimilarMaliciousContract": { - "message": "Resembles malicious contract" - }, - "bridgeSecurityDataKnownSnipeMint": { - "message": "Bot activity at launch" - }, - "bridgeSecurityDataKnownSpamText": { - "message": "Spam text" - }, - "bridgeSecurityDataKnownStaticCodeSign": { - "message": "Suspicious code" - }, - "bridgeSecurityDataKnownTokenBackdoor": { - "message": "Token backdoor" - }, - "bridgeSecurityDataKnownUnsellable": { - "message": "Unsellable token" - }, - "bridgeSecurityDataKnownUnstablePrice": { - "message": "Unstable price" - }, - "bridgeSecurityDataKnownWashTrading": { - "message": "Wash trading" - }, - "bridgeSelectDestinationAccount": { - "message": "Select a destination account" - }, - "bridgeSelectDifferentQuote": { - "message": "Please select a different quote." - }, - "bridgeSelectNetwork": { - "message": "Select network" - }, - "bridgeSelectQuote": { - "message": "Select quote" - }, - "bridgeSelectTokenAmountAndAccount": { - "message": "Select token, amount and destination account" - }, - "bridgeSelectTokenAndAmount": { - "message": "Select token and amount" - }, - "bridgeSend": { - "message": "Send $1 from $2", - "description": "Summary line showing token sent from source chain. $1 is the token symbol, $2 is the network name." - }, - "bridgeSendLoading": { - "message": "Sending from source chain" - }, - "bridgeSolanaAccountCreated": { - "message": "Solana account created" - }, - "bridgeStatusComplete": { - "message": "Complete", - "description": "Status text indicating a bridge transaction has successfully completed." - }, - "bridgeStatusFailed": { - "message": "Failed", - "description": "Status text indicating a bridge transaction has failed." - }, - "bridgeStatusInProgress": { - "message": "In progress", - "description": "Status text indicating a bridge transaction is currently processing." - }, - "bridgeStepActionBridgeComplete": { - "message": "$1 received on $2", - "description": "$1 is the amount of the destination asset, $2 is the name of the destination network" - }, - "bridgeStepActionBridgePending": { - "message": "Receiving $1 on $2", - "description": "$1 is the amount of the destination asset, $2 is the name of the destination network" - }, - "bridgeStepActionSwapComplete": { - "message": "Swapped $1 for $2", - "description": "$1 is the amount of the source asset, $2 is the amount of the destination asset" - }, - "bridgeStepActionSwapPending": { - "message": "Swapping $1 for $2", - "description": "$1 is the amount of the source asset, $2 is the amount of the destination asset" - }, - "bridgeSuspicious": { - "message": "Suspicious" - }, - "bridgeSuspiciousTokenTitle": { - "message": "Suspicious token" - }, - "bridgeTo": { - "message": "Bridge to" - }, - "bridgeTokenIsMaliciousBanner": { - "message": "$1 is a malicious token." - }, - "bridgeTokenIsMaliciousModalDescription": { - "message": "$1 is flagged as malicious. It's likely to steal funds from anyone who interacts with it." - }, - "bridgeTokenIsSuspiciousBanner": { - "message": "$1 is a suspicious token." - }, - "bridgeTokenIsSuspiciousModalDescription": { - "message": "$1 is flagged as suspicious. Take a look at the risks before you continue." - }, - "bridgeTokenNotFound": { - "message": "No tokens match \"$1\"" - }, - "bridgeTransactionProgress": { - "message": "Transaction $1 of 2" - }, - "bridgeTxDetailsBridged": { - "message": "Bridged" - }, - "bridgeTxDetailsBridging": { - "message": "Bridging" - }, - "bridgeTxDetailsDelayedDescription": { - "message": "Reach out to" - }, - "bridgeTxDetailsDelayedDescriptionSupport": { - "message": "MetaMask Support" - }, - "bridgeTxDetailsDelayedTitle": { - "message": "Has it been longer than 3 hours?" - }, - "bridgeTxDetailsNonce": { - "message": "Nonce" - }, - "bridgeTxDetailsStatus": { - "message": "Status" - }, - "bridgeTxDetailsSwapped": { - "message": "Swapped" - }, - "bridgeTxDetailsSwapping": { - "message": "Swapping" - }, - "bridgeTxDetailsTimestamp": { - "message": "Time stamp" - }, - "bridgeTxDetailsTimestampValue": { - "message": "$1 at $2", - "description": "$1 is the date, $2 is the time" - }, - "bridgeTxDetailsTokenAmountOnChain": { - "message": "$1 $2 on", - "description": "$1 is the amount of the token, $2 is the ticker symbol of the token" - }, - "bridgeTxDetailsTotalGasFee": { - "message": "Total gas fee" - }, - "bridgeTxDetailsYouReceived": { - "message": "You received" - }, - "bridgeTxDetailsYouSent": { - "message": "You sent" - }, - "bridgeUseMaxAmountAllowedWithReserve": { - "message": "Use max allowed" - }, - "bridgeValidationInsufficientGasMessage": { - "message": "You don't have enough $1 to pay the gas fee for this bridge. Enter a smaller amount or buy more $1." - }, - "bridgeValidationInsufficientGasTitle": { - "message": "More $1 needed for gas" - }, - "bridgeValidationInsufficientNativeReserveMessage": { - "message": "This specific network requires to maintain a reserve of $1 $3 in your account. With your current balance you can use a maximum of $2 $3", - "description": "$1 is the minimum native reserve amount for the network, $2 is the spendable balance, $3 the ticker symbol of the token" - }, - "bridgeValidationInsufficientNativeReserveTitle": { - "message": "Minimum $1 reserve balance is required", - "description": "$1 is the ticker symbol of the token" - }, - "bridged": { - "message": "Bridged" - }, - "bridgedToChain": { - "message": "Bridged to $1" - }, - "bridging": { - "message": "Bridging" - }, - "browserNotSupported": { - "message": "Your browser is not supported..." - }, - "busy": { - "message": "Busy" - }, - "buy": { - "message": "Buy" - }, - "buyMoreAsset": { - "message": "Buy more $1", - "description": "$1 is the ticker symbol of a an asset the user is being prompted to purchase" - }, - "buyNow": { - "message": "Buy now" - }, - "buyTabOpenedToastDescription": { - "message": "We've opened a new tab for buying.", - "description": "Toast description shown after opening the buy flow in a new tab" - }, - "buyTabOpenedToastText": { - "message": "Continue in your browser tab", - "description": "Toast title shown after opening the buy flow in a new tab" - }, - "bytes": { - "message": "Bytes" - }, - "canToggleInSettings": { - "message": "You can re-enable this notification in Settings > Alerts." - }, - "cancel": { - "message": "Cancel" - }, - "cancelSpeedupAlreadyConfirmedDescription": { - "message": "We were unable to update your transaction because it was already confirmed on the blockchain." - }, - "cancelSpeedupFailedDescription": { - "message": "Something went wrong while updating your transaction." - }, - "cancelTransactionDescription": { - "message": "This transaction will be canceled and this network fee will replace the original." - }, - "cancelTransactionFailed": { - "message": "Cancel transaction failed" - }, - "cancelTransactionTitle": { - "message": "Cancel transaction" - }, - "cancelled": { - "message": "Cancelled" - }, - "carouselAllCaughtUp": { - "message": "You're all caught up!", - "description": "Message shown in carousel when all promotional slides have been dismissed" - }, - "chainId": { - "message": "Chain ID" - }, - "chainIdDefinition": { - "message": "The chain ID used to sign transactions for this network." - }, - "chainIdExistsErrorMsg": { - "message": "This Chain ID is currently used by the $1 network." - }, - "chainListReturnedDifferentTickerSymbol": { - "message": "This token symbol doesn't match the network name or chain ID entered. Many popular tokens use similar symbols, which scammers can use to trick you into sending them a more valuable token in return. Verify everything before you continue." - }, - "changeInSettings": { - "message": "Change in Settings" - }, - "changePasswordDetailsSocial": { - "message": "Losing this password means losing wallet access on all devices." - }, - "changePasswordLoading": { - "message": "Changing password..." - }, - "changePasswordLoadingNote": { - "message": "This shouldn't take long" - }, - "changePasswordWarning": { - "message": "Are you sure?" - }, - "changePasswordWarningDescription": { - "message": "Changing your password here will lock MetaMask on other devices you’re using. You’ll need to log in again with your new password." - }, - "checkNetworkConnectivity": { - "message": "Check network connectivity." - }, - "checkNetworkConnectivityOr": { - "message": "Check network connectivity, or $1.", - "description": "$1 is a link to update the network." - }, - "chromeRequiredForHardwareWallets": { - "message": "You need to use MetaMask on Google Chrome in order to connect to your Hardware Wallet." - }, - "circulatingSupply": { - "message": "Circulating supply" - }, - "clear": { - "message": "Clear" - }, - "clearActivity": { - "message": "Clear activity and nonce data" - }, - "clearActivityDescription": { - "message": "Resets the account's nonce and erases data from the activity tab in your wallet. Only the current account and network will be affected. Your balances and incoming transactions won't change." - }, - "clearFilters": { - "message": "Clear filters" - }, - "click": { - "message": "Click" - }, - "clickToConnectLedgerViaWebHID": { - "message": "Click here to connect your Ledger via WebHID", - "description": "Text that can be clicked to open a browser popup for connecting the ledger device via webhid" - }, - "close": { - "message": "Close" - }, - "closeSlide": { - "message": "Close $1", - "description": "Aria label for close button on carousel slides. $1 is the slide title" - }, - "closeWindowAnytime": { - "message": "You may close this window anytime." - }, - "coingecko": { - "message": "CoinGecko" - }, - "collectionName": { - "message": "Collection name" - }, - "comboNoOptions": { - "message": "No options found", - "description": "Default text shown in the combo field dropdown if no options." - }, - "communityContributedLanguagesSectionTitle": { - "message": "Community contributed", - "description": "Section heading on the language settings screen for locales maintained by community contributors." - }, - "completed": { - "message": "Completed" - }, - "concentratedSupplyDistributionDescription": { - "message": "The majority of the token's supply is held by the top token holders, posing a risk of centralized price manipulation" - }, - "concentratedSupplyDistributionTitle": { - "message": "Concentrated supply distribution" - }, - "configureSnapPopupDescription": { - "message": "You're now leaving MetaMask to configure this snap." - }, - "configureSnapPopupInstallDescription": { - "message": "You're now leaving MetaMask to install this snap." - }, - "configureSnapPopupInstallTitle": { - "message": "Install snap" - }, - "configureSnapPopupLink": { - "message": "Click this link to continue:" - }, - "configureSnapPopupTitle": { - "message": "Configure snap" - }, - "confirm": { - "message": "Confirm" - }, - "confirmAccountTypeSmartContract": { - "message": "Smart account" - }, - "confirmAccountTypeStandard": { - "message": "Standard account" - }, - "confirmAlertModalAcknowledgeMultiple": { - "message": "I have acknowledged the alerts and still want to proceed" - }, - "confirmAlertModalAcknowledgeSingle": { - "message": "I have acknowledged the alert and still want to proceed" - }, - "confirmFieldAllowance": { - "message": "Allowance" - }, - "confirmFieldAvailablePerDay": { - "message": "Available per day" - }, - "confirmFieldExpiration": { - "message": "Expiration" - }, - "confirmFieldFrequency": { - "message": "Frequency" - }, - "confirmFieldNeverExpires": { - "message": "Never expires" - }, - "confirmFieldPaymaster": { - "message": "Fee paid by" - }, - "confirmFieldPeriodDurationBiWeekly": { - "message": "Bi-Weekly" - }, - "confirmFieldPeriodDurationDaily": { - "message": "Daily" - }, - "confirmFieldPeriodDurationHourly": { - "message": "Hourly" - }, - "confirmFieldPeriodDurationMonthly": { - "message": "Monthly" - }, - "confirmFieldPeriodDurationSeconds": { - "message": "$1 seconds", - "description": "$1 is the number of seconds in the permission period (shown when the period is not a standard hour/day/week/etc.)" - }, - "confirmFieldPeriodDurationWeekly": { - "message": "Weekly" - }, - "confirmFieldPeriodDurationYearly": { - "message": "Yearly" - }, - "confirmFieldTooltipJustification": { - "message": "Justification for the request provided by the website" - }, - "confirmFieldTooltipPaymaster": { - "message": "The fee for this transaction will be paid by the paymaster smart contract." - }, - "confirmFieldTotalExposure": { - "message": "Total exposure" - }, - "confirmGasFeeTokenBalance": { - "message": "Bal:" - }, - "confirmGasFeeTokenInsufficientBalance": { - "message": "Insufficient funds" - }, - "confirmGasFeeTokenMetaMaskFee": { - "message": "Includes $1 fee" - }, - "confirmGasFeeTokenModalNativeToggleMetaMask": { - "message": "MetaMask is supplementing the balance to complete this transaction." - }, - "confirmGasFeeTokenModalNativeToggleWallet": { - "message": "Pay for network fee using the balance in your wallet." - }, - "confirmGasFeeTokenModalPayETH": { - "message": "Pay with ETH" - }, - "confirmGasFeeTokenModalPayToken": { - "message": "Pay with other tokens" - }, - "confirmGasFeeTokenModalTitle": { - "message": "Select a token" - }, - "confirmGasFeeTokenToast": { - "message": "You're paying this network fee with $1" - }, - "confirmGasFeeTokenTooltip": { - "message": "This is paid to the network to process your transaction. It includes a $1 MetaMask fee for non-ETH tokens or pre-funded ETH." - }, - "confirmInfoAccountNow": { - "message": "Now" - }, - "confirmInfoSwitchingTo": { - "message": "Switching to" - }, - "confirmNestedTransactionTitle": { - "message": "Transaction $1" - }, - "confirmPassword": { - "message": "Confirm password" - }, - "confirmRecoveryPhrase": { - "message": "Confirm Secret Recovery Phrase" - }, - "confirmRecoveryPhraseDetails": { - "message": "Select the missing words in the correct order." - }, - "confirmRecoveryPhraseTitle": { - "message": "Confirm your Secret Recovery Phrase" - }, - "confirmRecoveryPhraseTitleSettings": { - "message": "Confirm Secret Recovery Phrase" - }, - "confirmSimulationApprove": { - "message": "You approve" - }, - "confirmSrpErrorDescription": { - "message": "Double-check your Secret Recovery Phrase and try again." - }, - "confirmSrpErrorTitle": { - "message": "Not quite right" - }, - "confirmSrpSuccessDescription": { - "message": "That’s right! And remember: never share this phrase with anyone, ever." - }, - "confirmSrpSuccessTitle": { - "message": "Perfect" - }, - "confirmTitleAccountTypeSwitch": { - "message": "Account update" - }, - "confirmTitleApproveTransactionNFT": { - "message": "Withdrawal request" - }, - "confirmTitleDeployContract": { - "message": "Deploy a contract" - }, - "confirmTitleDescApproveTransaction": { - "message": "This site wants permission to withdraw your NFTs" - }, - "confirmTitleDescDelegationRevoke": { - "message": "You're switching back to a standard account (EOA)." - }, - "confirmTitleDescDelegationUpgrade": { - "message": "You're switching to a smart account." - }, - "confirmTitleDescDeployContract": { - "message": "This site wants you to deploy a contract" - }, - "confirmTitleDescERC20ApproveTransaction": { - "message": "This site wants permission to withdraw your tokens" - }, - "confirmTitleDescERC20Revocation": { - "message": "This site wants permissions to revoke your ERC-20 token approvals." - }, - "confirmTitleDescPermission": { - "message": "This site wants permissions to spend your tokens." - }, - "confirmTitleDescPermitSignature": { - "message": "This site wants permission to spend your tokens." - }, - "confirmTitleDescSIWESignature": { - "message": "A site wants you to sign in to prove you own this account." - }, - "confirmTitleDescSign": { - "message": "Review request details before you confirm." - }, - "confirmTitlePermission": { - "message": "Permission request" - }, - "confirmTitlePermitTokens": { - "message": "Spending cap request" - }, - "confirmTitleRevokeApproveTransaction": { - "message": "Remove permission" - }, - "confirmTitleSIWESignature": { - "message": "Sign-in request" - }, - "confirmTitleSending": { - "message": "Sending" - }, - "confirmTitleSetApprovalForAllRevokeTransaction": { - "message": "Remove permission" - }, - "confirmTitleSignature": { - "message": "Signature request" - }, - "confirmTitleTransaction": { - "message": "Transaction request" - }, - "confirmationAlertDetails": { - "message": "To protect your assets, we suggest you reject the request." - }, - "confirmationAlertModalTitleDescription": { - "message": "Your assets may be at risk" - }, - "confirmed": { - "message": "Confirmed" - }, - "confusableCharacterTooltip": { - "message": "Make sure this address is correct. The letter $1 is confusable with $2." - }, - "confusableUnicode": { - "message": "'$1' is similar to '$2'." - }, - "confusableZeroWidthUnicode": { - "message": "Zero-width character found." - }, - "confusingEnsDomain": { - "message": "We have detected a confusable character in the ENS name. Check the ENS name to avoid a potential scam." - }, - "connect": { - "message": "Connect" - }, - "connectAHardwareWallet": { - "message": "Connect a hardware wallet" - }, - "connectAHardwareWalletDescription": { - "message": "Using USB or a QR Code" - }, - "connectAccounts": { - "message": "Connect accounts" - }, - "connectAnAccountHeader": { - "message": "Connect an account" - }, - "connectHardwareDevice": { - "message": "Connect $1", - "description": "$1 is the hardware wallet device name" - }, - "connectManually": { - "message": "Manually connect to current site" - }, - "connectMoreAccounts": { - "message": "Connect more accounts" - }, - "connectSnap": { - "message": "Connect $1", - "description": "$1 is the snap for which a connection is being requested." - }, - "connectWithMetaMask": { - "message": "Connect with MetaMask" - }, - "connectedAccountsDescriptionPlural": { - "message": "You have $1 accounts connected to this site.", - "description": "$1 is the number of accounts" - }, - "connectedAccountsDescriptionSingular": { - "message": "You have 1 account connected to this site." - }, - "connectedAccountsEmptyDescription": { - "message": "MetaMask is not connected to this site. To connect to a web3 site, find and click the connect button." - }, - "connectedAccountsListTooltip": { - "message": "$1 can see the account balance, address, activity, and suggest transactions to approve for connected accounts.", - "description": "$1 is the origin name" - }, - "connectedSites": { - "message": "Connected sites" - }, - "connectedSitesAndSnaps": { - "message": "Connected sites and Snaps" - }, - "connectedSitesDescription": { - "message": "$1 is connected to these sites. They can view your account address.", - "description": "$1 is the account name" - }, - "connectedSitesEmptyDescription": { - "message": "$1 is not connected to any sites.", - "description": "$1 is the account name" - }, - "connectedSnapAndNoAccountDescription": { - "message": "MetaMask is connected to this site, but no accounts are connected yet" - }, - "connectedSnaps": { - "message": "Connected Snaps" - }, - "connectedWithAccount": { - "message": "$1 accounts connected", - "description": "$1 represents account length" - }, - "connectedWithAccountName": { - "message": "Connected with $1", - "description": "$1 represents account name" - }, - "connectedWithNetwork": { - "message": "$1 networks connected", - "description": "$1 represents network length" - }, - "connectedWithNetworkName": { - "message": "Connected with $1", - "description": "$1 represents network name" - }, - "connecting": { - "message": "Connecting" - }, - "connectingTo": { - "message": "Connecting to $1" - }, - "connectingToGoerli": { - "message": "Connecting to Goerli test network" - }, - "connectingToLineaGoerli": { - "message": "Connecting to Linea Goerli test network" - }, - "connectingToLineaMainnet": { - "message": "Connecting to Linea" - }, - "connectingToLineaSepolia": { - "message": "Connecting to Linea Sepolia test network" - }, - "connectingToMainnet": { - "message": "Connecting to Ethereum Mainnet" - }, - "connectingToSepolia": { - "message": "Connecting to Sepolia test network" - }, - "connectionDescription": { - "message": "Connect this website with MetaMask" - }, - "connectionFailed": { - "message": "Connection failed" - }, - "connectionFailedDescription": { - "message": "Fetching of $1 failed, check your network and try again.", - "description": "$1 is the name of the snap being fetched." - }, - "connectionPopoverDescription": { - "message": "To connect to a site, select the connect button. MetaMask can only connect to web3 sites." - }, - "connectionRequest": { - "message": "Connection request" - }, - "connectionsRemovedModalDescription": { - "message": "Some connections (like hardware wallets and snaps) were removed due to inactivity on this device. You can re-add them anytime in Settings." - }, - "connectionsRemovedModalTitle": { - "message": "Connections removed" - }, - "contactDeleted": { - "message": "Contact deleted" - }, - "contactDetails": { - "message": "Contact details" - }, - "contactUpdated": { - "message": "Contact updated" - }, - "contactUs": { - "message": "Contact us" - }, - "contacts": { - "message": "Contacts" - }, - "contentFromSnap": { - "message": "Content from $1", - "description": "$1 represents the name of the snap" - }, - "continue": { - "message": "Continue" - }, - "contract": { - "message": "Contract" - }, - "contractAddress": { - "message": "Contract address" - }, - "contractAddressError": { - "message": "You are sending tokens to the token's contract address. This may result in the loss of these tokens." - }, - "contractDeployment": { - "message": "Contract deployment" - }, - "contractInteraction": { - "message": "Contract interaction" - }, - "convertTokenToNFTDescription": { - "message": "We've detected that this asset is an NFT. MetaMask now has full native support for NFTs. Would you like to remove it from your token list and add it as an NFT?" - }, - "convertTokenToNFTExistDescription": { - "message": "We’ve detected that this asset has been added as an NFT. Would you like to remove it from your token list?" - }, - "coolWallet": { - "message": "CoolWallet" - }, - "copiedExclamation": { - "message": "Copied." - }, - "copiedToClipboard": { - "message": "Copied to clipboard" - }, - "copyAddress": { - "message": "Copy address to clipboard" - }, - "copyAddressShort": { - "message": "Copy address" - }, - "copyPrivateKey": { - "message": "Copy private key" - }, - "copyToClipboard": { - "message": "Copy to clipboard" - }, - "copyTransactionId": { - "message": "Copy transaction ID" - }, - "correct": { - "message": "Correct" - }, - "create": { - "message": "Create" - }, - "createMultichainAccountButton": { - "message": "Add account", - "description": "Name of a button used on multichain account related pages for triggering the account creation process." - }, - "createMultichainAccountButtonLoading": { - "message": "Adding account...", - "description": "Name of a button in loading state, used on multichain account related pages for the account creation process." - }, - "createNewAccountHeader": { - "message": "Create a new account" - }, - "createPassword": { - "message": "MetaMask password" - }, - "createPasswordCreate": { - "message": "Create password" - }, - "createPasswordDetails": { - "message": "Unlocks MetaMask on this device only." - }, - "createPasswordDetailsSocial": { - "message": "Losing this password means losing wallet access on all devices, $1", - "description": "$1 is the text 'MetaMask can't reset it.'" - }, - "createPasswordDetailsSocialReset": { - "message": "MetaMask can't reset it." - }, - "createPasswordMarketing": { - "message": "Get product updates, tips, and news including by email. We may use your interactions to improve what we share." - }, - "createSnapAccountDescription": { - "message": "$1 wants to add a new account to MetaMask." - }, - "createSnapAccountTitle": { - "message": "Create account" - }, - "createSolanaAccount": { - "message": "Create Solana account" - }, - "creatorAddress": { - "message": "Creator address" - }, - "criticalErrorAttemptRecovery": { - "message": "Attempt recovery" - }, - "criticalErrorFooterContactSupport": { - "message": "If none of the above works, $1", - "description": "Footer on the critical error screen. $1 is the 'contact support' link." - }, - "criticalErrorReinstallMetamask": { - "message": "Reinstall MetaMask" - }, - "criticalErrorStillHavingIssues": { - "message": "Still having issues?" - }, - "cryptoCompare": { - "message": "CryptoCompare" - }, - "currencyRateCheckToggle": { - "message": "Show balance and token price checker" - }, - "currencyRateCheckToggleDescription": { - "message": "We use $1 and $2 APIs to display your balance and token price. $3", - "description": "$1 represents Coingecko, $2 represents CryptoCompare and $3 represents Privacy Policy" - }, - "currencySymbol": { - "message": "Currency symbol" - }, - "currencySymbolDefinition": { - "message": "The ticker symbol displayed for this network’s currency." - }, - "current": { - "message": "Current" - }, - "currentAccountNotConnected": { - "message": "Your current account is not connected" - }, - "currentEstimatedBaseFee": { - "message": "Current: $1 GWEI" - }, - "currentEstimatedPriorityFeeRange": { - "message": "Current: $1 - $2 GWEI" - }, - "currentExtension": { - "message": "Current extension page" - }, - "currentHistoricalBaseFeeRange": { - "message": "12 hr: $1 - $2 GWEI" - }, - "currentHistoricalPriorityFeeRange": { - "message": "12 hr: $1 - $2 GWEI" - }, - "currentNetwork": { - "message": "Current network", - "description": "Speicifies to token network filter to filter by current Network. Will render when network nickname is not available" - }, - "currentQuestion": { - "message": "Question $1 of 2" - }, - "currentlyUnavailable": { - "message": "Unavailable on this network" - }, - "curveHighGasEstimate": { - "message": "Aggressive gas estimate graph" - }, - "curveLowGasEstimate": { - "message": "Low gas estimate graph" - }, - "curveMediumGasEstimate": { - "message": "Market gas estimate graph" - }, - "custom": { - "message": "Advanced" - }, - "customGasSettingToolTipMessage": { - "message": "Use $1 to customize the gas price. This can be confusing if you aren’t familiar. Interact at your own risk.", - "description": "$1 is key 'advanced' (text: 'Advanced') separated here so that it can be passed in with bold font-weight" - }, - "customNetworks": { - "message": "Custom networks" - }, - "customSlippage": { - "message": "Custom" - }, - "customToken": { - "message": "Custom token" - }, - "customTokenWarningInTokenDetectionNetwork": { - "message": "Anyone can create a token, including creating fake versions of existing tokens. Learn about $1" - }, - "customerSupport": { - "message": "customer support" - }, - "customizeYourNotifications": { - "message": "Customize your notifications" - }, - "customizeYourNotificationsText": { - "message": "Turn on the types of notifications you want to receive:" - }, - "dappConnections": { - "message": "Dapp Connections" - }, - "dappScanMaliciousTitle": { - "message": "Malicious website detected" - }, - "dappScanMaliciousWarning": { - "message": "This website is flagged as potentially dangerous. If you reveal your Secret Recovery Phrase, you could put your funds at risk." - }, - "dappSuggested": { - "message": "Site suggested" - }, - "dappSuggestedGasSettingToolTipMessage": { - "message": "$1 has suggested this price.", - "description": "$1 is url for the dapp that has suggested gas settings" - }, - "dappSuggestedHigh": { - "message": "Site suggested" - }, - "dappSwapAdvantage": { - "message": "Save and earn with MetaMask Swaps" - }, - "dappSwapAdvantageSaveOnly": { - "message": "Save with MetaMask Swaps" - }, - "dappSwapBenefits": { - "message": "Network fees refunded on failed swaps" - }, - "dappSwapQuoteDifference": { - "message": "Save $1" - }, - "dappSwapRewardText": { - "message": "Earn $1 points" - }, - "darkTheme": { - "message": "Dark" - }, - "data": { - "message": "Data" - }, - "dataCollectionForMarketing": { - "message": "Data collection for marketing" - }, - "dataCollectionForMarketingDescription": { - "message": "We'll use MetaMetrics to learn how you interact with our marketing communications. We may share relevant news (like product features and other materials)." - }, - "dataCollectionForMarketingDescriptionSocialLogin": { - "message": "Get product updates, tips, and news - including by email. We may use your interactions to improve what we share." - }, - "dataUnavailable": { - "message": "data unavailable" - }, - "date": { - "message": "Date" - }, - "dateCreated": { - "message": "Date created" - }, - "dcent": { - "message": "D'Cent" - }, - "debitCreditPurchaseOptions": { - "message": "Debit or credit card purchase options" - }, - "debug": { - "message": "Debug" - }, - "decimal": { - "message": "Token decimal" - }, - "decimalsMustZerotoTen": { - "message": "Decimals must be at least 0, and not over 36." - }, - "decrypt": { - "message": "Decrypt" - }, - "decryptCopy": { - "message": "Copy encrypted message" - }, - "decryptInlineError": { - "message": "This message cannot be decrypted due to error: $1", - "description": "$1 is error message" - }, - "decryptMessageNotice": { - "message": "$1 would like to read this message to complete your action", - "description": "$1 is the web3 site name" - }, - "decryptMetamask": { - "message": "Decrypt message" - }, - "decryptRequest": { - "message": "Decrypt request" - }, - "deepLink_Caution": { - "message": "Proceed with caution" - }, - "deepLink_Continue": { - "message": "Continue" - }, - "deepLink_ContinueDescription": { - "message": "You'll open $1 if you continue.", - "description": "$1 is the name of the page they'll be redirected to if they click the Continue button. Examples of $1: 'the home page'; 'the buy page'; 'the swaps page'; 'the notifications page'" - }, - "deepLink_DontRemindMeAgain": { - "message": "Don't remind me again" - }, - "deepLink_Error404Description": { - "message": "We can't find the page you are looking for." - }, - "deepLink_Error404Title": { - "message": "This page doesn't exist" - }, - "deepLink_Error404_CTA": { - "message": "$1 and we'll take you to the right place.", - "description": "$1 is a link with the text found in `deepLink_Error404_CTA_LinkText`" - }, - "deepLink_Error404_CTA_LinkText": { - "message": "Update to the latest version of MetaMask", - "description": "Part of `deepLink_Error404_CTA`. The text links to https://support.metamask.io/configure/wallet/how-to-update-the-version-of-metamask/" - }, - "deepLink_ErrorMissingUrl": { - "message": "No url to navigate to was provided." - }, - "deepLink_ErrorOtherDescription": { - "message": "This is a bug and should be reported to MetaMask." - }, - "deepLink_ErrorOtherTitle": { - "message": "An error occurred while processing the deep link" - }, - "deepLink_GoToTheHomePageButton": { - "message": "Go to the home page" - }, - "deepLink_RedirectingToMetaMask": { - "message": "Redirecting to MetaMask" - }, - "deepLink_ThirdPartyDescription": { - "message": "You were sent here by a third party, not MetaMask. $1", - "description": "$1 is the message 'deepLink_ContinueDescription'" - }, - "deepLink_theAssetPage": { - "message": "the asset page" - }, - "deepLink_theBuyPage": { - "message": "the buy page" - }, - "deepLink_theCardOnboardingPage": { - "message": "the MetaMask Card onboarding page" - }, - "deepLink_theHomePage": { - "message": "the home page" - }, - "deepLink_theMusdEducationPage": { - "message": "the MUSD conversion education page" - }, - "deepLink_theNFTsPage": { - "message": "the NFTs page" - }, - "deepLink_theNotificationsPage": { - "message": "the notifications page" - }, - "deepLink_theOnboardingPage": { - "message": "the onboarding page" - }, - "deepLink_thePerpsMarketDetailPage": { - "message": "the perps market page" - }, - "deepLink_thePerpsPage": { - "message": "the perps page" - }, - "deepLink_thePredictPage": { - "message": "the prediction markets page" - }, - "deepLink_theRewardsPage": { - "message": "the MetaMask Rewards page" - }, - "deepLink_theSellPage": { - "message": "the sell page" - }, - "deepLink_theSwapsPage": { - "message": "the swaps page" - }, - "deepLink_theSwapsRampsPage": { - "message": "the Swaps/Ramps page" - }, - "deepLink_theTransactionShieldPage": { - "message": "the transaction shield page" - }, - "default": { - "message": "Default" - }, - "defaultRpcUrl": { - "message": "Default RPC URL" - }, - "defaultSettingsSubTitle": { - "message": "MetaMask uses default settings to best balance safety and ease of use. Change these settings to further increase your privacy." - }, - "defaultSettingsTitle": { - "message": "Default privacy settings" - }, - "defi": { - "message": "DeFi" - }, - "defiEmptyDescription": { - "message": "Lend, borrow, and trade, right in your wallet." - }, - "defiReferralCheckboxLabel": { - "message": "Allow MetaMask to add a referral code. This is permanent. The site offers discounts per their terms. MetaMask earns a fee.", - "description": "The text for the checkbox label in the DeFi referral confirmation screen" - }, - "defiReferralNoThanks": { - "message": "No thanks", - "description": "Secondary button label to decline on the DeFi referral confirmation screen" - }, - "defiReferralTerms": { - "message": "terms", - "description": "Accessible label for the partner terms link within the DeFi referral consent subtitle" - }, - "defiReferralTitle": { - "message": "MetaMask x $1", - "description": "The title of the DeFi referral confirmation screen. $1 is the name of the partner" - }, - "defiTabErrorContent": { - "message": "Try visiting again later." - }, - "defiTabErrorTitle": { - "message": "We could not load this page." - }, - "delete": { - "message": "Delete" - }, - "deleteActivityAndNonceData": { - "message": "Delete activity and nonce data" - }, - "deleteMetaMetricsData": { - "message": "Delete MetaMetrics data" - }, - "deleteMetaMetricsDataDescription": { - "message": "This will delete historical MetaMetrics data associated with your use on this device. Your wallet and accounts will remain exactly as they are now after this data has been deleted. This process may take up to 30 days. View our $1.", - "description": "$1 will have text saying Privacy Policy " - }, - "deleteMetaMetricsDataDescriptionV2": { - "message": "This will delete historical MetaMetrics data associated with your wallet. MetaMetrics includes anonymized usage and diagnostic data. Your wallet and accounts will remain the same. This process may take up to 30 days. View our $1.", - "description": "$1 will have text saying Privacy Policy " - }, - "deleteMetaMetricsDataErrorDesc": { - "message": "This request can't be completed right now due to an analytics system server issue, please try again later." - }, - "deleteMetaMetricsDataErrorTitle": { - "message": "We are unable to delete this data right now" - }, - "deleteMetaMetricsDataErrorToast": { - "message": "Unable to delete" - }, - "deleteMetaMetricsDataModalDesc": { - "message": "We are about to remove all your MetaMetrics data. Are you sure?" - }, - "deleteMetaMetricsDataModalTitle": { - "message": "Delete MetaMetrics data?" - }, - "deleteMetaMetricsDataRequestedDescription": { - "message": "You initiated deletion on $1. This process can take up to 30 days. View the $2.", - "description": "$1 will be the date on which teh deletion is requested and $2 will have text saying Privacy Policy " - }, - "deleteMetaMetricsDataToast": { - "message": "Data will be deleted within 30 days" - }, - "deleteNetworkIntro": { - "message": "If you delete this network, you will need to add it again to view your assets in this network" - }, - "deleteNetworkTitle": { - "message": "Delete $1 network?", - "description": "$1 represents the name of the network" - }, - "depositCrypto": { - "message": "Deposit crypto from another account with a wallet address or QR code." - }, - "deprecatedNetwork": { - "message": "This network is deprecated" - }, - "deprecatedNetworkButtonMsg": { - "message": "Got it" - }, - "deprecatedNetworkDescription": { - "message": "The network you're trying to connect to is no longer supported by MetaMask. $1" - }, - "description": { - "message": "Description" - }, - "descriptionFromSnap": { - "message": "Description from $1", - "description": "$1 represents the name of the snap" - }, - "destinationAccountPickerNoEligible": { - "message": "No eligible accounts found" - }, - "destinationAccountPickerNoMatching": { - "message": "No matching accounts found" - }, - "destinationAccountPickerSearchPlaceholderToMainnet": { - "message": "Receiving address or ENS" - }, - "destinationAccountPickerSearchPlaceholderToSolana": { - "message": "Receiving address" - }, - "destinationTransactionIdLabel": { - "message": "Destination Tx ID", - "description": "Label for the destination transaction ID field." - }, - "details": { - "message": "Details" - }, - "developerTools": { - "message": "Developer tools" - }, - "disabledGasOptionToolTipMessage": { - "message": "“$1” is disabled because it does not meet the minimum of a 10% increase from the original gas fee.", - "description": "$1 is gas estimate type which can be market or aggressive" - }, - "disconnect": { - "message": "Disconnect" - }, - "disconnectAllAccounts": { - "message": "Disconnect all accounts" - }, - "disconnectAllAccountsConfirmationDescription": { - "message": "Are you sure you want to disconnect? You may lose site functionality." - }, - "disconnectAllAccountsText": { - "message": "accounts" - }, - "disconnectAllDescriptionText": { - "message": "If you disconnect from this site, you’ll need to reconnect your accounts and networks to use this site again." - }, - "disconnectAllSites": { - "message": "Disconnect All" - }, - "disconnectAllSitesDescriptionText": { - "message": "If you disconnect from all sites, you'll need to reconnect your accounts and networks to use them again." - }, - "disconnectAllSitesError": { - "message": "Some dapps couldn't be disconnected. Please try again." - }, - "disconnectAllSitesSuccess": { - "message": "All dapps successfully disconnected." - }, - "disconnectAllSnapsText": { - "message": "Snaps" - }, - "disconnectMessage": { - "message": "This will disconnect you from this site" - }, - "disconnectPrompt": { - "message": "Disconnect $1" - }, - "disconnectThisAccount": { - "message": "Disconnect this account" - }, - "discover": { - "message": "Discover" - }, - "discoverSnaps": { - "message": "Discover Snaps", - "description": "Text that links to the Snaps website. Displayed in a banner on Snaps list page in settings." - }, - "dismiss": { - "message": "Dismiss" - }, - "displayNftMedia": { - "message": "Display NFT media" - }, - "displayNftMediaDescriptionV2": { - "message": "NFT autodetection relies on this feature." - }, - "doNotShare": { - "message": "Do not share this with anyone" - }, - "domain": { - "message": "Domain" - }, - "done": { - "message": "Done" - }, - "dontShowThisAgain": { - "message": "Don't show this again" - }, - "download": { - "message": "Download" - }, - "downloadAppDescription": { - "message": "Bring MetaMask with you everywhere you go. Turn on Face ID so you always have access, even if you forget your password." - }, - "downloadAppTitle": { - "message": "Scan QR code and download the app" - }, - "downloadGoogleChrome": { - "message": "Download Google Chrome" - }, - "downloadMetaMaskMobileDescription": { - "message": "Face ID on our app lets you in even if you forget your password. Take MetaMask everywhere you go!" - }, - "downloadMetaMaskMobileQrNote": { - "message": "Scan this QR code to get started." - }, - "downloadMetaMaskMobileTitle": { - "message": "Get our mobile app" - }, - "downloadNow": { - "message": "Download now" - }, - "downloadStateLogs": { - "message": "Download state logs" - }, - "dropped": { - "message": "Dropped" - }, - "duplicateContactTooltip": { - "message": "This contact name collides with an existing account or contact" - }, - "duplicateContactWarning": { - "message": "You have duplicate contacts" - }, - "durationSuffixDay": { - "message": "D", - "description": "Shortened form of 'day'" - }, - "durationSuffixHour": { - "message": "H", - "description": "Shortened form of 'hour'" - }, - "durationSuffixMillisecond": { - "message": "MS", - "description": "Shortened form of 'millisecond'" - }, - "durationSuffixMinute": { - "message": "M", - "description": "Shortened form of 'minute'" - }, - "durationSuffixMonth": { - "message": "M", - "description": "Shortened form of 'month'" - }, - "durationSuffixSecond": { - "message": "S", - "description": "Shortened form of 'second'" - }, - "durationSuffixWeek": { - "message": "W", - "description": "Shortened form of 'week'" - }, - "durationSuffixYear": { - "message": "Y", - "description": "Shortened form of 'year'" - }, - "earn": { - "message": "Earn" - }, - "edit": { - "message": "Edit" - }, - "editANickname": { - "message": "Edit nickname" - }, - "editAccounts": { - "message": "Edit accounts" - }, - "editAddressNickname": { - "message": "Edit address nickname" - }, - "editContact": { - "message": "Edit contact" - }, - "editGasFeeModalTitle": { - "message": "Edit gas fee" - }, - "editGasLimitOutOfBounds": { - "message": "Gas limit must be at least $1" - }, - "editGasMaxFeeHigh": { - "message": "Max fee is higher than necessary" - }, - "editGasMaxFeeLow": { - "message": "Max fee too low for network conditions" - }, - "editGasMaxFeePriorityImbalance": { - "message": "Max fee cannot be lower than max priority fee" - }, - "editGasMaxPriorityFeeBelowMinimum": { - "message": "Max priority fee must be greater than 0 GWEI" - }, - "editGasMaxPriorityFeeHigh": { - "message": "Max priority fee is higher than necessary. You may pay more than needed." - }, - "editGasMaxPriorityFeeLow": { - "message": "Max priority fee is low for current network conditions" - }, - "editGasPriceTooLow": { - "message": "Gas price must be greater than 0" - }, - "editGasTooLow": { - "message": "Unknown processing time" - }, - "editInPortfolio": { - "message": "Edit in Portfolio" - }, - "editNetwork": { - "message": "Edit network" - }, - "editNetworkLink": { - "message": "edit the original network" - }, - "editNetworksTitle": { - "message": "Edit networks" - }, - "editNonceField": { - "message": "Edit nonce" - }, - "editNonceMessage": { - "message": "This is an advanced feature, use cautiously." - }, - "editPermissions": { - "message": "Edit permissions" - }, - "editSpendingCap": { - "message": "Edit spending cap" - }, - "editSpendingCapAccountBalance": { - "message": "Account balance: $1 $2" - }, - "editSpendingCapDesc": { - "message": "Enter the amount that you feel comfortable being spent on your behalf." - }, - "editSpendingCapError": { - "message": "The spending cap can’t exceed $1 decimal digits. Remove decimal digits to continue." - }, - "editSpendingCapSpecialCharError": { - "message": "Enter numbers only" - }, - "enableAutoDetect": { - "message": " Enable autodetect" - }, - "enableFromSettings": { - "message": " Enable it from Settings." - }, - "enableSmartContractAccount": { - "message": "Use smart account" - }, - "enableSmartContractAccountDescription": { - "message": "Unlock faster transactions, lower network fees, and added security on supported networks." - }, - "enableSnap": { - "message": "Enable" - }, - "enableToken": { - "message": "enable $1", - "description": "$1 is a token symbol, e.g. ETH" - }, - "enabled": { - "message": "Enabled" - }, - "enabledNetworks": { - "message": "Enabled networks" - }, - "encryptionPublicKeyNotice": { - "message": "$1 would like your public encryption key. By consenting, this site will be able to compose encrypted messages to you.", - "description": "$1 is the web3 site name" - }, - "encryptionPublicKeyRequest": { - "message": "Request encryption public key" - }, - "endpointReturnedDifferentChainId": { - "message": "The RPC URL you have entered returned a different chain ID ($1).", - "description": "$1 is the return value of eth_chainId from an RPC endpoint" - }, - "enhancedTokenDetectionAlertMessage": { - "message": "Enhanced token detection is currently available on $1. $2" - }, - "ensDomainsSettingDescriptionIntroduction": { - "message": "MetaMask lets you see ENS domains right in your browser's address bar. Here's how it works:" - }, - "ensDomainsSettingDescriptionOutroduction": { - "message": "Keep in mind that using this feature exposes your IP address to IPFS third-party services." - }, - "ensDomainsSettingDescriptionPart1": { - "message": "MetaMask checks with Ethereum's ENS contract to find the code connected to the ENS name." - }, - "ensDomainsSettingDescriptionPart2": { - "message": "If the code links to IPFS, you can see the content associated with it (usually a website)." - }, - "ensDomainsSettingTitle": { - "message": "Show ENS domains in address bar" - }, - "ensUnknownError": { - "message": "ENS lookup failed." - }, - "enterANameToIdentifyTheUrl": { - "message": "Enter a name to identify the URL" - }, - "enterChainId": { - "message": "Enter Chain ID" - }, - "enterNetworkName": { - "message": "Enter network name" - }, - "enterOptionalPassword": { - "message": "Enter optional password" - }, - "enterPasswordContinue": { - "message": "Enter password to continue" - }, - "enterPasswordCurrent": { - "message": "Enter your current password" - }, - "enterRpcUrl": { - "message": "Enter RPC URL" - }, - "enterSymbol": { - "message": "Enter symbol" - }, - "enterTokenAddress": { - "message": "Enter token address" - }, - "enterTokenNameOrAddress": { - "message": "Enter token name or paste address" - }, - "enterTokenNameOrAddressManageTokens": { - "message": "Enter token name or address" - }, - "enterYourPassword": { - "message": "Enter your password" - }, - "enterYourPasswordContinue": { - "message": "Enter password to continue" - }, - "enterYourPasswordSocialLoginFlow": { - "message": "Enter MetaMask password" - }, - "errorCode": { - "message": "Code: $1", - "description": "Displayed error code for debugging purposes. $1 is the error code" - }, - "errorGettingSafeChainList": { - "message": "Error while getting safe chain list, please continue with caution." - }, - "errorLegalTextFirstInfo": { - "message": "Technical diagnostic information." - }, - "errorLegalTextNoPersonalInfo": { - "message": "No personal information or other device information will be collected." - }, - "errorLegalTextSecondInfo": { - "message": "Your browser, operating system, and MetaMask versions." - }, - "errorLegalTextSummary": { - "message": "We will receive a single error report, containing:" - }, - "errorMessage": { - "message": "Message: $1", - "description": "Displayed error message for debugging purposes. $1 is the error message" - }, - "errorName": { - "message": "Code: $1", - "description": "Displayed error name for debugging purposes. $1 is the error name" - }, - "errorPageContactSupport": { - "message": "Contact support", - "description": "Button for contact MM support" - }, - "errorPageDescribeUsWhatHappened": { - "message": "Describe what happened", - "description": "Button for submitting report to sentry" - }, - "errorPageInfo": { - "message": "Your information can’t be shown. Don’t worry, your wallet and funds are safe.", - "description": "Information banner shown in the error page" - }, - "errorPageMessageTitle": { - "message": "Error message", - "description": "Title for description, which is displayed for debugging purposes" - }, - "errorPageSentryFormTitle": { - "message": "Describe what happened", - "description": "In sentry feedback form, The title at the top of the feedback form." - }, - "errorPageSentryMessagePlaceholder": { - "message": "Sharing details like how we can reproduce the bug will help us fix the problem.", - "description": "In sentry feedback form, The placeholder for the feedback description input field." - }, - "errorPageSentrySuccessMessageText": { - "message": "Thanks! We will take a look soon.", - "description": "In sentry feedback form, The message displayed after a successful feedback submission." - }, - "errorPageTitle": { - "message": "MetaMask encountered an error", - "description": "Title of generic error page" - }, - "errorPageTryAgain": { - "message": "Try again", - "description": "Button for try again" - }, - "errorStack": { - "message": "Stack:", - "description": "Title for error stack, which is displayed for debugging purposes" - }, - "errorWhileConnectingToRPC": { - "message": "Error while connecting to the custom network." - }, - "errorWithSnap": { - "message": "Error with $1", - "description": "$1 represents the name of the snap" - }, - "estimatedChanges": { - "message": "Estimated changes" - }, - "estimatedFee": { - "message": "Estimated fee" - }, - "estimatedFeeTooltip": { - "message": "Amount paid to process the transaction on network." - }, - "estimatedPointsRow": { - "message": "Est. points" - }, - "estimatedTime": { - "message": "Estimated time" - }, - "ethGasPriceFetchWarning": { - "message": "Backup gas price is provided as the main gas estimation service is unavailable right now." - }, - "ethereumAndEvms": { - "message": "Ethereum and EVMs" - }, - "ethereumProviderAccess": { - "message": "Grant Ethereum provider access to $1", - "description": "The parameter is the name of the requesting origin" - }, - "etherscan": { - "message": "Etherscan" - }, - "etherscanView": { - "message": "View account on Etherscan" - }, - "etherscanViewOn": { - "message": "View on Etherscan" - }, - "existingChainId": { - "message": "The information you have entered is associated with an existing chain ID." - }, - "experimental": { - "message": "Experimental" - }, - "exploreDefi": { - "message": "Explore DeFi" - }, - "exportYourData": { - "message": "Export your data" - }, - "exportYourDataButton": { - "message": "Download" - }, - "exportYourDataDescription": { - "message": "You can export data like your contacts and preferences." - }, - "extendWalletWithSnaps": { - "message": "Explore community-built Snaps to customize your web3 experience", - "description": "Banner description displayed on Snaps list page in Settings when less than 6 Snaps is installed." - }, - "externalAccount": { - "message": "External account" - }, - "externalExtension": { - "message": "External extension" - }, - "externalNameSourcesSetting": { - "message": "Proposed nicknames" - }, - "externalNameSourcesSettingDescription": { - "message": "We’ll fetch proposed nicknames for addresses you interact with from third-party sources like Etherscan, Infura, and Lens Protocol. These sources will be able to see those addresses and your IP address. Your account address won’t be exposed to third parties." - }, - "externalNameSourcesSettingDescriptionV2": { - "message": "Fetches proposed nicknames for addresses you interact with from third-party sources like Etherscan, Infura, and Lens protocol." - }, - "failed": { - "message": "Failed" - }, - "failedToFetchChainId": { - "message": "Could not fetch chain ID. Is your RPC URL correct?" - }, - "failover": { - "message": "Failover" - }, - "failoverRpcUrl": { - "message": "Failover RPC URL" - }, - "failureMessage": { - "message": "Something went wrong, and we were unable to complete the action" - }, - "fast": { - "message": "Fast" - }, - "fieldRequired": { - "message": "$1 is required" - }, - "fileImportFail": { - "message": "File import not working? Click here!", - "description": "Helps user import their account from a JSON file" - }, - "fileUploaderDescription": { - "message": "Click to upload or drag and drop" - }, - "fileUploaderInvalidFileTypeError": { - "message": "Invalid file type. Please upload a supported file format." - }, - "fileUploaderMaxFileSizeError": { - "message": "File size exceeds $1MB. Please upload a smaller file.", - "description": "$1 is the maximum file size in MB" - }, - "flaskWelcomeUninstall": { - "message": "you should uninstall this extension", - "description": "This request is shown on the Flask Welcome screen. It is intended for non-developers, and will be bolded." - }, - "flaskWelcomeWarning1": { - "message": "Flask is for developers to experiment with new unstable APIs. Unless you are a developer or beta tester, $1.", - "description": "This is a warning shown on the Flask Welcome screen, intended to encourage non-developers not to proceed any further. $1 is the bolded message 'flaskWelcomeUninstall'" - }, - "flaskWelcomeWarning2": { - "message": "We do not guarantee the safety or stability of this extension. The new APIs offered by Flask are not hardened against phishing attacks, meaning that any site or snap that requires Flask might be a malicious attempt to steal your assets.", - "description": "This explains the risks of using MetaMask Flask" - }, - "flaskWelcomeWarning3": { - "message": "All Flask APIs are experimental. They may be changed or removed without notice, or they might stay on Flask indefinitely without ever being migrated to stable MetaMask. Use them at your own risk.", - "description": "This message warns developers about unstable Flask APIs" - }, - "flaskWelcomeWarning4": { - "message": "Make sure to disable your regular MetaMask extension when using Flask.", - "description": "This message calls to pay attention about multiple versions of MetaMask running on the same site (Flask + Prod)" - }, - "flaskWelcomeWarningAcceptButton": { - "message": "I accept the risks", - "description": "this text is shown on a button, which the user presses to confirm they understand the risks of using Flask" - }, - "floatAmountToken": { - "message": "Token amount must be an integer" - }, - "forbiddenIpfsGateway": { - "message": "Forbidden IPFS Gateway: Please specify a CID gateway" - }, - "forgetDevice": { - "message": "Forget this device" - }, - "forgotPassword": { - "message": "Forgot password?" - }, - "forgotPasswordModalButton": { - "message": "Import wallet" - }, - "forgotPasswordModalButtonLink": { - "message": "I don’t know my Phrase" - }, - "forgotPasswordModalContactSupport": { - "message": "$1 if you need help.", - "description": "$1 is the support link" - }, - "forgotPasswordModalContactSupportLink": { - "message": "Contact support" - }, - "forgotPasswordModalDescription1": { - "message": "We can’t recover your password for you." - }, - "forgotPasswordModalDescription2": { - "message": "Add your wallet back to MetaMask by entering the Secret Recovery Phrase associated with it." - }, - "forgotPasswordModalTitle": { - "message": "Forgot your password?" - }, - "forgotPasswordSocialDescription": { - "message": "We can’t recover your password, but there are ways you can regain access to your wallet. $1 if you need help.", - "description": "$1 is the support link" - }, - "forgotPasswordSocialStep1": { - "message": "$1 If you’re logged in on a device with Touch or Face ID, reset your password there.", - "description": "$1 is bold heading" - }, - "forgotPasswordSocialStep1Biometrics": { - "message": "Touch/Face ID:" - }, - "forgotPasswordSocialStep2": { - "message": "$1: If you have your Secret Recovery Phrase, you can use it to import your wallet to this device.", - "description": "$1 is bold Secret Recovery Phrase" - }, - "form": { - "message": "form" - }, - "freeTrialDays": { - "message": "Free $1-day trial", - "description": "The $1 is the number of days" - }, - "from": { - "message": "From" - }, - "function": { - "message": "Function: $1" - }, - "fundYourWallet": { - "message": "Fund your wallet", - "description": "Title for the balance empty state component encouraging users to add funds" - }, - "gas": { - "message": "Gas" - }, - "gasLimit": { - "message": "Gas limit" - }, - "gasLimitTooLow": { - "message": "Gas limit must be at least 21000" - }, - "gasPrice": { - "message": "Gas price" - }, - "gasPriceExcessive": { - "message": "Your gas fee is set unnecessarily high. Consider lowering the amount." - }, - "gasPriceFetchFailed": { - "message": "Gas price estimation failed due to network error." - }, - "gasSponsorshipReserveBalanceWarning": { - "message": "Gas sponsorship isn’t available for this transaction. You’ll need to keep at least $1 $2 in your account.", - "description": "$1 is the minimum required balance and $2 is the native currency symbol." - }, - "gasTimingHoursShort": { - "message": "$1 hrs", - "description": "$1 represents a number of hours" - }, - "gasTimingLow": { - "message": "Slow" - }, - "gasTimingMinutesShort": { - "message": "$1 min", - "description": "$1 represents a number of minutes" - }, - "gasTimingSecondsShort": { - "message": "$1 sec", - "description": "$1 represents a number of seconds" - }, - "gasUsed": { - "message": "Gas used" - }, - "gatorNoJustificationProvided": { - "message": "No justification was provided for the permission" - }, - "gatorPermissionAnnualFrequency": { - "message": "Yearly", - "description": "Time period for annual recurring permissions redemption" - }, - "gatorPermissionCustomFrequency": { - "message": "Custom", - "description": "Time period for custom recurring permissions redemption" - }, - "gatorPermissionDailyFrequency": { - "message": "Daily", - "description": "Time period for daily recurring permissions redemption" - }, - "gatorPermissionFortnightlyFrequency": { - "message": "Bi-Weekly", - "description": "Time period for fortnightly recurring permissions redemption" - }, - "gatorPermissionMonthlyFrequency": { - "message": "Monthly", - "description": "Time period for monthly recurring permissions redemption" - }, - "gatorPermissionNoExpiration": { - "message": "No expiration", - "description": "Label for a permission with no expiration" - }, - "gatorPermissionTokenPeriodicFrequencyLabel": { - "message": "Transfer window", - "description": "Label for the transfer window of a token periodic permission" - }, - "gatorPermissionTokenStreamFrequencyLabel": { - "message": "Period", - "description": "Label for the period of a token stream permission" - }, - "gatorPermissionWeeklyFrequency": { - "message": "Weekly", - "description": "Time period for weekly recurring permissions redemption" - }, - "gatorPermissionsExpirationDate": { - "message": "Expiration date", - "description": "Label for the expiration date of a permission" - }, - "gatorPermissionsHideDetails": { - "message": "Hide details", - "description": "Button text to hide permission details" - }, - "gatorPermissionsInitialAllowance": { - "message": "Initial allowance", - "description": "Label for the initial allowance of a permission" - }, - "gatorPermissionsJustification": { - "message": "Justification", - "description": "Label for the justification" - }, - "gatorPermissionsMaxAllowance": { - "message": "Max allowance", - "description": "Label for the max allowance of a permission" - }, - "gatorPermissionsRevocationPending": { - "message": "Revocation pending", - "description": "Label for a gator permission that is pending a revocation transaction" - }, - "gatorPermissionsRevoke": { - "message": "Revoke", - "description": "Label for the revoke button of a gator permission" - }, - "gatorPermissionsShowDetails": { - "message": "Show details", - "description": "Button text to show permission details" - }, - "gatorPermissionsStartDate": { - "message": "Start date", - "description": "Label for the start date of a permission" - }, - "gatorPermissionsStatusExpired": { - "message": "Expired", - "description": "Tag label for a gator permission that has expired" - }, - "gatorPermissionsStatusRevoked": { - "message": "Revoked", - "description": "Tag label for a gator permission that has been revoked" - }, - "gatorPermissionsStreamRate": { - "message": "Stream rate", - "description": "Label for the stream rate of a permission" - }, - "gatorPermissionsStreamingAmountLabel": { - "message": "Streaming amount", - "description": "Label for the stream rate of a permission" - }, - "general": { - "message": "General" - }, - "generalCameraError": { - "message": "We couldn't access your camera. Please give it another try." - }, - "generalCameraErrorTitle": { - "message": "Something went wrong...." - }, - "generalDescription": { - "message": "Sync settings across devices, select network preferences, and track token data" - }, - "genericExplorerView": { - "message": "View account on $1" - }, - "getDollarMore": { - "message": "Get $1 more" - }, - "getTheNewestFeatures": { - "message": "Get the newest features" - }, - "getYourWalletReadyToUseWeb3": { - "message": "Get your wallet ready to use web3", - "description": "Subtitle text for the balance empty state component explaining the purpose of adding funds" - }, - "gmxReferralConfirmText": { - "message": "Yes, save 5%", - "description": "Primary button label on the GMX referral confirmation screen" - }, - "gmxReferralSubtitle": { - "message": "Save up to 5% on trades with a MetaMask referral code.", - "description": "The subtitle of the GMX referral confirmation screen" - }, - "gmxReferralSubtitle2": { - "message": "Save 5% in trades with a MetaMask referral code. This discount applies to all future trades, as per GMX's $1. MetaMask earns a fee.", - "description": "Subtitle on the GMX referral confirmation screen. $1 is a link to the partner's terms." - }, - "gmxReferralTitle": { - "message": "Save 5% on GMX", - "description": "Title of the GMX referral confirmation screen" - }, - "goToSite": { - "message": "Go to site" - }, - "goerli": { - "message": "Goerli test network" - }, - "gotIt": { - "message": "Got it" - }, - "grantExactAccess": { - "message": "Grant exact access" - }, - "gwei": { - "message": "GWEI" - }, - "hardware": { - "message": "Hardware" - }, - "hardwareWalletConnected": { - "message": "Hardware wallet connected" - }, - "hardwareWalletErrorContinueButton": { - "message": "Continue" - }, - "hardwareWalletErrorReconnectButton": { - "message": "Reconnect" - }, - "hardwareWalletErrorRecoveryConnection1": { - "message": "Ensure your hardware wallet is properly connected via USB" - }, - "hardwareWalletErrorRecoveryConnection2": { - "message": "Try using a different USB cable or port" - }, - "hardwareWalletErrorRecoveryConnection3": { - "message": "Restart your device and try connecting again" - }, - "hardwareWalletErrorRecoveryConnection4": { - "message": "Your $1 device is unlocked", - "description": "$1 is the hardware wallet type" - }, - "hardwareWalletErrorRecoveryTitle": { - "message": "Continue to make sure:" - }, - "hardwareWalletErrorRecoveryUnlock1": { - "message": "Your $1 device is unlocked", - "description": "$1 is the hardware wallet type" - }, - "hardwareWalletErrorRecoveryUnlock2": { - "message": "The Ethereum app is open" - }, - "hardwareWalletErrorTitleBlindSignNotSupported": { - "message": "Enable blind signing" - }, - "hardwareWalletErrorTitleBlindSignNotSupportedInstruction1": { - "message": "The Ethereum app is open on your Ledger" - }, - "hardwareWalletErrorTitleBlindSignNotSupportedInstruction2": { - "message": "You’ve turned on Blind Signing in Settings" - }, - "hardwareWalletErrorTitleConnectYourDevice": { - "message": "Connect your $1", - "description": "$1 is the hardware wallet type" - }, - "hardwareWalletErrorTitleDeviceLocked": { - "message": "$1 locked", - "description": "$1 is the hardware wallet type" - }, - "hardwareWalletErrorUnknownErrorDescription": { - "message": "Make sure your $1 device is set up with the Secret Recovery Phrase or passphrase for the selected account", - "description": "$1 is the hardware wallet type" - }, - "hardwareWalletErrorUnknownErrorTitle": { - "message": "Something went wrong" - }, - "hardwareWalletEthAppNotOpenDescription": { - "message": "Open the Ethereum app on your device to continue" - }, - "hardwareWalletLegacyDescription": { - "message": "(legacy)", - "description": "Text representing the MEW path" - }, - "hardwareWalletLookingForDevice": { - "message": "Looking for your $1...", - "description": "$1 is the hardware wallet type" - }, - "hardwareWalletSubmissionWarningStep1": { - "message": "Be sure your $1 is plugged in and to select the Ethereum app." - }, - "hardwareWalletSubmissionWarningStep2": { - "message": "Enable \"smart contract data\" or \"blind signing\" on your $1 device." - }, - "hardwareWalletSubmissionWarningTitle": { - "message": "Prior to clicking Submit:" - }, - "hardwareWalletSupportLinkConversion": { - "message": "click here" - }, - "hardwareWalletTitleEthAppNotOpen": { - "message": "Open Ethereum app" - }, - "hardwareWalletTypeConnected": { - "message": "$1 connected", - "description": "$1 is the hardware wallet type" - }, - "hardwareWallets": { - "message": "Connect a hardware wallet" - }, - "hardwareWalletsInfo": { - "message": "Hardware wallet integrations use API calls to external servers, which can see your IP address and the smart contract addresses you interact with." - }, - "hardwareWalletsMsg": { - "message": "Select a hardware wallet you would like to use with MetaMask." - }, - "helpAndSettings": { - "message": "Help and settings" - }, - "here": { - "message": "here", - "description": "as in -click here- for more information (goes with troubleTokenBalances)" - }, - "hexData": { - "message": "Hex data" - }, - "hexDataPlaceholder": { - "message": "Enter hex data (optional)" - }, - "hidden": { - "message": "Hidden" - }, - "hide": { - "message": "Hide" - }, - "hideAccount": { - "message": "Hide account" - }, - "hideAdvancedDetails": { - "message": "Hide advanced details" - }, - "hideSentitiveInfo": { - "message": "Hide sensitive information" - }, - "hideTokenPrompt": { - "message": "Hide token?" - }, - "hideTokenSymbol": { - "message": "Hide $1", - "description": "$1 is the symbol for a token (e.g. 'DAI')" - }, - "hideZeroBalanceTokens": { - "message": "Hide tokens without balance" - }, - "high": { - "message": "Aggressive" - }, - "highGasSettingToolTipMessage": { - "message": "High probability, even in volatile markets. Use $1 to cover surges in network traffic due to things like popular NFT drops.", - "description": "$1 is key 'high' (text: 'Aggressive') separated here so that it can be passed in with bold font-weight" - }, - "highLowercase": { - "message": "high" - }, - "highestCurrentBid": { - "message": "Highest current bid" - }, - "highestFloorPrice": { - "message": "Highest floor price" - }, - "history": { - "message": "History" - }, - "holdToRevealContent1": { - "message": "Your Secret Recovery Phrase provides $1", - "description": "$1 is a bolded text with the message from 'holdToRevealContent2'" - }, - "holdToRevealContent2": { - "message": "full access to your wallet and funds.", - "description": "Is the bolded text in 'holdToRevealContent1'" - }, - "holdToRevealContent3": { - "message": "Do not share this with anyone. $1 $2", - "description": "$1 is a message from 'holdToRevealContent4' and $2 is a text link with the message from 'holdToRevealContent5'" - }, - "holdToRevealContent4": { - "message": "MetaMask Support will not request this,", - "description": "Part of 'holdToRevealContent3'" - }, - "holdToRevealContent5": { - "message": "but phishers might.", - "description": "The text link in 'holdToRevealContent3'" - }, - "holdToRevealContentPrivateKey1": { - "message": "Your Private Key provides $1", - "description": "$1 is a bolded text with the message from 'holdToRevealContentPrivateKey2'" - }, - "holdToRevealContentPrivateKey2": { - "message": "full access to your wallet and funds.", - "description": "Is the bolded text in 'holdToRevealContentPrivateKey2'" - }, - "holdToRevealLockedLabel": { - "message": "hold to reveal circle locked" - }, - "holdToRevealPrivateKey": { - "message": "Hold to reveal Private Key" - }, - "holdToRevealPrivateKeyTitle": { - "message": "Keep your private key safe" - }, - "holdToRevealSRP": { - "message": "Hold to reveal SRP" - }, - "holdToRevealSRPTitle": { - "message": "Keep your SRP safe" - }, - "holdToRevealUnlockedLabel": { - "message": "hold to reveal circle unlocked" - }, - "honeypotDescription": { - "message": "This token might pose a honeypot risk. It is advised to conduct due diligence before interacting to prevent any potential financial loss." - }, - "honeypotTitle": { - "message": "Honey pot" - }, - "hyperliquidReferralConfirmText": { - "message": "Yes, save 4%", - "description": "Primary button label on the Hyperliquid referral confirmation screen" - }, - "hyperliquidReferralSubtitle": { - "message": "Save up to 4% on trades with a MetaMask referral code.", - "description": "The subtitle of the Hyperliquid referral confirmation screen" - }, - "hyperliquidReferralSubtitle2": { - "message": "Save 4% on trades with a MetaMask referral code. Applies to all future trades per Hyperliquid's $1. MetaMask earns a fee.", - "description": "Subtitle on the Hyperliquid referral confirmation screen. $1 is a link to the partner's terms." - }, - "hyperliquidReferralTitle": { - "message": "Save 4% on Hyperliquid", - "description": "Title of the Hyperliquid referral confirmation screen" - }, - "iUnderstand": { - "message": "I understand" - }, - "id": { - "message": "ID" - }, - "imToken": { - "message": "imToken" - }, - "import": { - "message": "Import", - "description": "Button to import an account from a selected file" - }, - "importAWallet": { - "message": "Import a wallet" - }, - "importAWalletDescription": { - "message": "Using a 12, 18 or 24-word seed phrase" - }, - "importAccountError": { - "message": "Error importing account." - }, - "importAccountErrorIsSRP": { - "message": "You have entered a Secret Recovery Phrase (or mnemonic). To import an account here, you have to enter a private key, which is a hexadecimal string of length 64." - }, - "importAccountErrorNotAValidPrivateKey": { - "message": "This is not a valid private key. You have entered a hexadecimal string, but it must be 64 characters long." - }, - "importAccountErrorNotHexadecimal": { - "message": "This is not a valid private key. You must enter a hexadecimal string of length 64." - }, - "importAccountJsonLoading1": { - "message": "Expect this JSON import to take a few minutes and freeze MetaMask." - }, - "importAccountJsonLoading2": { - "message": "We apologize, and we will make it faster in the future." - }, - "importAccountMsg": { - "message": "Imported accounts won’t be associated with your MetaMask Secret Recovery Phrase. Learn more about imported accounts" - }, - "importAccountWithSocialMsg": { - "message": "Imported private keys are backed up to your account and sync automatically when you sign in with the same Google or Apple login." - }, - "importAccountWithSocialMsgLearnMore": { - "message": "$1 about how imported keys work", - "description": "$1 is a link to learn more about imported keys" - }, - "importAnAccount": { - "message": "Import an account" - }, - "importAnAccountDescription": { - "message": "Via a private key" - }, - "importNFT": { - "message": "Import NFT" - }, - "importNFTAddressToolTip": { - "message": "On OpenSea, for example, on the NFT's page under Details, there is a blue hyperlinked value labeled 'Contract Address'. If you click on this, it will take you to the contract's address on Etherscan; at the top-left of that page, there should be an icon labeled 'Contract', and to the right, a long string of letters and numbers. This is the address of the contract that created your NFT. Click on the 'copy' icon to the right of the address, and you'll have it on your clipboard." - }, - "importNFTPage": { - "message": "Import NFT page" - }, - "importNFTTokenIdToolTip": { - "message": "An NFT's ID is a unique identifier since no two NFTs are alike. Again, on OpenSea this number is under 'Details'. Make a note of it, or copy it onto your clipboard." - }, - "importPrivateKey": { - "message": "Private Key" - }, - "importSecretRecoveryPhrase": { - "message": "Import Secret Recovery Phrase" - }, - "importTokenQuestion": { - "message": "Import token?" - }, - "importTokenWarning": { - "message": "Anyone can create a token with any name, including fake versions of existing tokens. Add and trade at your own risk!" - }, - "importTokensCamelCase": { - "message": "Import tokens" - }, - "importTokensError": { - "message": "We could not import the tokens. Please try again later." - }, - "importWalletOrAccountHeader": { - "message": "Import a wallet or account" - }, - "importWalletSuccess": { - "message": "Wallet $1 imported", - "description": "$1 is the index of the secret recovery phrase" - }, - "imported": { - "message": "Imported", - "description": "status showing that an account has been fully loaded into the keyring" - }, - "includesXTransactions": { - "message": "Includes $1 transactions" - }, - "incorrect": { - "message": "Incorrect" - }, - "infuraBlockedNotification": { - "message": "MetaMask is unable to connect to the blockchain host. Review possible reasons $1.", - "description": "$1 is a clickable link with with text defined by the 'here' key" - }, - "insights": { - "message": "Insights" - }, - "insightsFromSnap": { - "message": "Insights from $1", - "description": "$1 represents the name of the snap" - }, - "install": { - "message": "Install" - }, - "installOrigin": { - "message": "Install origin" - }, - "installRequest": { - "message": "Add to MetaMask" - }, - "installedOn": { - "message": "Installed on $1", - "description": "$1 is the date when the snap has been installed" - }, - "insufficientBalance": { - "message": "Insufficient balance." - }, - "insufficientBalanceToCoverFees": { - "message": "Insufficient balance to cover fees" - }, - "insufficientFunds": { - "message": "Insufficient funds." - }, - "insufficientFundsSend": { - "message": "Insufficient funds" - }, - "insufficientLockedLiquidityDescription": { - "message": "The lack of adequately locked or burned liquidity leaves the token vulnerable to sudden liquidity withdrawals, potentially causing market instability." - }, - "insufficientLockedLiquidityTitle": { - "message": "Insufficient locked liquidity" - }, - "insufficientTokens": { - "message": "Insufficient tokens." - }, - "interactWithSmartContract": { - "message": "Smart contract" - }, - "interactingWith": { - "message": "Interacting with" - }, - "interactingWithTransactionDescription": { - "message": "This is the contract you're interacting with. Protect yourself from scammers by verifying the details." - }, - "interaction": { - "message": "Interaction" - }, - "invalidAddress": { - "message": "Invalid address" - }, - "invalidAddressRecipient": { - "message": "Recipient address is invalid" - }, - "invalidAssetType": { - "message": "This asset is an NFT and needs to be re-added on the Import NFTs page found under the NFTs tab" - }, - "invalidChainIdTooBig": { - "message": "Invalid chain ID. The chain ID is too big." - }, - "invalidCustomNetworkAlertContent1": { - "message": "The chain ID for custom network '$1' has to be re-entered.", - "description": "$1 is the name/identifier of the network." - }, - "invalidCustomNetworkAlertContent2": { - "message": "To protect you from malicious or faulty network providers, chain IDs are now required for all custom networks." - }, - "invalidCustomNetworkAlertContent3": { - "message": "Go to Settings > Network and enter the chain ID. You can find the chain IDs of most popular networks on $1.", - "description": "$1 is a link to https://chainid.network" - }, - "invalidCustomNetworkAlertTitle": { - "message": "Invalid custom network" - }, - "invalidHexData": { - "message": "Invalid hex data" - }, - "invalidHexNumber": { - "message": "Invalid hexadecimal number." - }, - "invalidHexNumberLeadingZeros": { - "message": "Invalid hexadecimal number. Remove any leading zeros." - }, - "invalidIpfsGateway": { - "message": "Invalid IPFS Gateway: The value must be a valid URL" - }, - "invalidNumber": { - "message": "Invalid number. Enter a decimal or '0x'-prefixed hexadecimal number." - }, - "invalidNumberLeadingZeros": { - "message": "Invalid number. Remove any leading zeros." - }, - "invalidRPC": { - "message": "Invalid RPC URL" - }, - "invalidSeedPhrase": { - "message": "Invalid Secret Recovery Phrase" - }, - "invalidSeedPhraseCaseSensitive": { - "message": "Invalid input! Secret Recovery Phrase is case sensitive." - }, - "invalidSeedPhraseNotFound": { - "message": "Secret Recovery Phrase not found." - }, - "invalidValue": { - "message": "Invalid value" - }, - "ipfsGateway": { - "message": "IPFS gateway" - }, - "ipfsGatewayDescriptionV2": { - "message": "Uses third-party services to show images of your NFTs stored on IPFS, display information related to ENS addresses entered in your browser's address bar, and fetch icons for different tokens. Choose your preferred IPFS gateway below." - }, - "ipfsToggleModalDescriptionOne": { - "message": "We use third-party services to show images of your NFTs stored on IPFS, display information related to ENS addresses entered in your browser's address bar, and fetch icons for different tokens. Your IP address may be exposed to these services when you’re using them." - }, - "ipfsToggleModalDescriptionTwo": { - "message": "Selecting Confirm turns on IPFS resolution. You can turn it off in $1 at any time.", - "description": "$1 is the method to turn off ipfs" - }, - "ipfsToggleModalSettings": { - "message": "Settings > Security and privacy" - }, - "isSigningOrSubmitting": { - "message": "A previous transaction is still being signed or submitted" - }, - "isSigningOrSubmittingPayToken": { - "message": "You have a pending transaction on this network. Wait for it to complete or select a token on another network." - }, - "jazzicons": { - "message": "Jazzicons" - }, - "jsonFile": { - "message": "JSON File", - "description": "format for importing an account" - }, - "keycardShell": { - "message": "Keycard Shell" - }, - "keyringAccountName": { - "message": "Account name" - }, - "keyringAccountPublicAddress": { - "message": "Public address" - }, - "keyringSnapRemovalResult1": { - "message": "$1 $2removed", - "description": "Displays the result after removal of a keyring snap. $1 is the snap name, $2 is whether it is successful or not" - }, - "keyringSnapRemovalResultNotSuccessful": { - "message": "not ", - "description": "Displays the `not` word in $2." - }, - "keyringSnapRemoveConfirmation": { - "message": "Type $1 to confirm you want to remove this snap:", - "description": "Asks user to input the name nap prior to deleting the snap. $1 is the snap name" - }, - "keystone": { - "message": "Keystone" - }, - "knownAddressRecipient": { - "message": "Known contract address." - }, - "knownTokenWarning": { - "message": "This action will edit tokens that are already listed in your wallet, which can be used to phish you. Only approve if you are certain that you mean to change what these tokens represent. Learn more about $1" - }, - "language": { - "message": "Language" - }, - "lastSold": { - "message": "Last sold" - }, - "lattice": { - "message": "Lattice", - "description": "Hardware device name" - }, - "lavaDomeCopyWarning": { - "message": "For your safety, selecting this text is not available right now." - }, - "learnHow": { - "message": "Learn how" - }, - "learnMore": { - "message": "learn more" - }, - "learnMoreAboutGas": { - "message": "Want to $1 about gas?", - "description": "$1 will be replaced by the learnMore translation key" - }, - "learnMoreAboutPrivacy": { - "message": "Learn more about privacy best practices." - }, - "learnMoreKeystone": { - "message": "Learn more" - }, - "learnMoreUpperCase": { - "message": "Learn more" - }, - "learnMoreUpperCaseWithDot": { - "message": "Learn more" - }, - "learnScamRisk": { - "message": "scams and security risks." - }, - "leaveMetaMask": { - "message": "Leave MetaMask?" - }, - "leaveMetaMaskDesc": { - "message": "You're about to visit a site outside of MetaMask. Double-check the URL before continuing." - }, - "ledger": { - "message": "Ledger", - "description": "Hardware device name" - }, - "ledgerAccountRestriction": { - "message": "You need to make use your last account before you can add a new one." - }, - "ledgerConnectionInstructionCloseOtherApps": { - "message": "Close any other software connected to your device and then click here to refresh." - }, - "ledgerConnectionInstructionHeader": { - "message": "Prior to clicking confirm:" - }, - "ledgerConnectionInstructionStepFour": { - "message": "Enable \"smart contract data\" or \"blind signing\" on your Ledger device." - }, - "ledgerConnectionInstructionStepThree": { - "message": "Be sure your Ledger is plugged in and to select the Ethereum app." - }, - "ledgerDeviceOpenFailureMessage": { - "message": "The Ledger device failed to open. Your Ledger might be connected to other software. Please close Ledger Live or other applications connected to your Ledger device, and try to connect again." - }, - "ledgerErrorConnectionIssue": { - "message": "Reconnect your ledger, open the ETH app and try again." - }, - "ledgerErrorDevicedLocked": { - "message": "Your Ledger is locked. Unlock it then try again." - }, - "ledgerErrorEthAppNotOpen": { - "message": "To solve the issue, open the ETH application on your device and retry." - }, - "ledgerErrorTransactionDataNotPadded": { - "message": "Ethereum transaction's input data isn't sufficiently padded." - }, - "ledgerEthAppNftNotSupportedNotification": { - "message": "Ledger Nano S can't send or manage Ethereum NFTs. See upgrade options at https://shop.ledger.com/pages/ledger-nano-s-upgrade-program" - }, - "ledgerFirefoxNotSupportedDescription1": { - "message": "We're having trouble connecting to Ledger. Check out our " - }, - "ledgerFirefoxNotSupportedDescription2": { - "message": " on how to connect a hardware wallet, then try again." - }, - "ledgerFirefoxNotSupportedDescription3": { - "message": " Ledger no longer supports Firefox, so you might need to use a different browser." - }, - "ledgerFirefoxNotSupportedLink": { - "message": "guide" - }, - "ledgerFirefoxNotSupportedTitle": { - "message": "Firefox Not Supported" - }, - "ledgerLiveApp": { - "message": "Ledger Live App" - }, - "ledgerLocked": { - "message": "Cannot connect to Ledger device. Please make sure your device is unlocked and Ethereum app is opened." - }, - "ledgerMultipleDevicesUnsupportedInfoDescription": { - "message": "To connect a new device, disconnect the previous one." - }, - "ledgerMultipleDevicesUnsupportedInfoTitle": { - "message": "You can only connect one Ledger at a time" - }, - "ledgerTimeout": { - "message": "Ledger Live is taking too long to respond or connection timeout. Make sure Ledger Live app is opened and your device is unlocked." - }, - "ledgerWebHIDNotConnectedErrorMessage": { - "message": "The ledger device was not connected. If you wish to connect your Ledger, please click 'Continue' again and approve HID connection", - "description": "An error message shown to the user during the hardware connect flow." - }, - "lightTheme": { - "message": "Light" - }, - "likeToImportToken": { - "message": "Would you like to import this token?" - }, - "likeToImportTokens": { - "message": "Would you like to import these tokens?" - }, - "lineaMainnet": { - "message": "Linea" - }, - "lineaSepolia": { - "message": "Linea Sepolia test network" - }, - "link": { - "message": "Link" - }, - "linkCentralizedExchanges": { - "message": "Link your Coinbase or Binance accounts to transfer crypto to MetaMask for free." - }, - "loading": { - "message": "Loading..." - }, - "loadingScreenSnapMessage": { - "message": "Please complete the transaction on the Snap." - }, - "loadingTokenList": { - "message": "Loading token list" - }, - "localCurrency": { - "message": "Local currency" - }, - "localhost": { - "message": "Localhost 8545" - }, - "lock": { - "message": "Lock" - }, - "lockMetaMaskLoadingMessage": { - "message": "Locking MetaMask..." - }, - "logOut": { - "message": "Log out" - }, - "loginErrorConnectButton": { - "message": "Try again" - }, - "loginErrorConnectDescription": { - "message": "Your internet connection is unstable. Check your connection and try again." - }, - "loginErrorConnectTitle": { - "message": "Unable to connect" - }, - "loginErrorGenericButton": { - "message": "Try again" - }, - "loginErrorGenericDescription": { - "message": "An error occurred while logging in. Try again and if the issue continues, contact $1.", - "description": "$1 is the key 'loginErrorGenericSupport'" - }, - "loginErrorGenericSupport": { - "message": "MetaMask support" - }, - "loginErrorGenericTitle": { - "message": "Something went wrong" - }, - "loginErrorResetWalletDescription": { - "message": "An issue occurred while unlocking. Re-login with $1 and your MetaMask password.", - "description": "$1 is the social login method" - }, - "loginErrorSessionExpiredButton": { - "message": "Log in" - }, - "loginErrorSessionExpiredDescription": { - "message": "Your session has expired. Please log in again to continue." - }, - "loginErrorSessionExpiredTitle": { - "message": "Session has expired" - }, - "logo": { - "message": "$1 logo", - "description": "$1 is the name of the ticker" - }, - "low": { - "message": "Low" - }, - "lowGasSettingToolTipMessage": { - "message": "Use $1 to wait for a cheaper price. Time estimates are much less accurate as prices are somewhat unpredictable.", - "description": "$1 is key 'low' separated here so that it can be passed in with bold font-weight" - }, - "lowLowercase": { - "message": "low" - }, - "mainnet": { - "message": "Ethereum Mainnet" - }, - "mainnetToken": { - "message": "This address matches a known Ethereum Mainnet token address. Recheck the contract address and network for the token you are trying to add." - }, - "makeAnotherSwap": { - "message": "Create a new swap" - }, - "makeSmartContractsEasier": { - "message": "Make smart contracts easier to read" - }, - "makeSmartContractsEasierDescription": { - "message": "MetaMask uses 4byte.directory and Sourcify to translate this information." - }, - "manage": { - "message": "Manage" - }, - "manageDefaultSettings": { - "message": "Manage default settings" - }, - "manageInstitutionalWallets": { - "message": "Manage institutional wallets" - }, - "manageInstitutionalWalletsDescription": { - "message": "Turn this on to enable institutional wallets." - }, - "manageNetworksMenuHeading": { - "message": "Manage networks" - }, - "managePermissions": { - "message": "Manage permissions" - }, - "manageTokens": { - "message": "Manage tokens" - }, - "manageWalletRecovery": { - "message": "Manage wallet recovery" - }, - "marketCap": { - "message": "Market cap" - }, - "marketCapFDV": { - "message": "Market cap (FDV)" - }, - "marketDetails": { - "message": "Market details" - }, - "marketRate": { - "message": "Market rate" - }, - "maskicons": { - "message": "Polycons" - }, - "max": { - "message": "Max" - }, - "maxBaseFee": { - "message": "Max base fee" - }, - "maxBaseFeeMustBeGreaterThanPriorityFee": { - "message": "Max base fee must be greater than priority fee" - }, - "maxFee": { - "message": "Max fee" - }, - "maxFeeTooltip": { - "message": "A maximum fee provided to pay for the transaction." - }, - "maybeLater": { - "message": "Maybe later" - }, - "medium": { - "message": "Market" - }, - "mediumGasSettingToolTipMessage": { - "message": "Use $1 for fast processing at current market price.", - "description": "$1 is key 'medium' (text: 'Market') separated here so that it can be passed in with bold font-weight" - }, - "memo": { - "message": "memo" - }, - "merklRewardsClaimBonus": { - "message": "Claim bonus", - "description": "Short label shown in token list for tokens with claimable Merkl rewards" - }, - "merklRewardsToastFailed": { - "message": "Your mUSD bonus claim failed", - "description": "Toast message shown when a Merkl reward claim transaction fails or is dropped" - }, - "merklRewardsToastInProgress": { - "message": "Your mUSD bonus is processing", - "description": "Toast message shown when a Merkl reward claim transaction is being processed" - }, - "merklRewardsToastSuccess": { - "message": "Your mUSD bonus is here!", - "description": "Toast message shown when a Merkl reward claim transaction is confirmed" - }, - "merklRewardsUnexpectedError": { - "message": "Unexpected error. Please try again.", - "description": "Error message shown when claiming Merkl rewards fails" - }, - "message": { - "message": "Message" - }, - "metaMaskConnectStatusParagraphOne": { - "message": "You now have more control over your account connections in MetaMask." - }, - "metaMaskConnectStatusParagraphThree": { - "message": "Click it to manage your connected accounts." - }, - "metaMaskConnectStatusParagraphTwo": { - "message": "The connection status button shows if the website you’re visiting is connected to your currently selected account." - }, - "metaMetricsIdNotAvailableError": { - "message": "Since you've never opted into MetaMetrics, there's no data to delete here." - }, - "metadataModalSourceTooltip": { - "message": "$1 is hosted on npm and $2 is this Snap’s unique identifier.", - "description": "$1 is the snap name and $2 is the snap NPM id." - }, - "metamaskFee": { - "message": "MetaMask fee" - }, - "metamaskNotificationsAreOff": { - "message": "Wallet notifications are currently not active." - }, - "metamaskSwap": { - "message": "MetaMask Swap" - }, - "metamaskSwapsOfflineDescription": { - "message": "MetaMask Swaps is undergoing maintenance. Please check back later." - }, - "metamaskVersion": { - "message": "MetaMask Version" - }, - "methodData": { - "message": "Method" - }, - "methodDataTransactionDesc": { - "message": "Function executed based on decoded input data." - }, - "methodNotSupported": { - "message": "Not supported with this account." - }, - "metrics": { - "message": "Metrics" - }, - "minimumReceivedExplanation": { - "message": "The minimum you'll get if the price changes while your transaction processes, based on your slippage setting. The estimate comes from liquidity providers, so the final amount may differ." - }, - "minimumReceivedExplanationTitle": { - "message": "Minimum amount received" - }, - "minimumReceivedLabel": { - "message": "Minimum received" - }, - "minute": { - "message": "min" - }, - "mismatchedChainLinkText": { - "message": "verify the network details", - "description": "Serves as link text for the 'mismatchedChain' key. This text will be embedded inside the translation for that key." - }, - "mismatchedChainRecommendation": { - "message": "We recommend that you $1 before proceeding.", - "description": "$1 is a clickable link with text defined by the 'mismatchedChainLinkText' key. The link will open to instructions for users to validate custom network details." - }, - "mismatchedNetworkName": { - "message": "According to our record the network name may not correctly match this chain ID." - }, - "mismatchedNetworkSymbol": { - "message": "The submitted currency symbol does not match what we expect for this chain ID." - }, - "mismatchedRpcChainId": { - "message": "Chain ID returned by the custom network does not match the submitted chain ID." - }, - "mismatchedRpcUrl": { - "message": "According to our records the submitted RPC URL value does not match a known provider for this chain ID." - }, - "month": { - "message": "month" - }, - "monthly": { - "message": "Monthly" - }, - "more": { - "message": "more" - }, - "moreAccounts": { - "message": "+ $1 more accounts", - "description": "$1 is the number of accounts" - }, - "moreCapital": { - "message": "More" - }, - "moreNetworks": { - "message": "+ $1 more networks", - "description": "$1 is the number of networks" - }, - "moreQuotes": { - "message": "More quotes" - }, - "multichainAccountAddressCopied": { - "message": "Address copied", - "description": "Message displayed when the multichain account address is copied to clipboard" - }, - "multichainAccountIntroLearnMore": { - "message": "Learn more", - "description": "Button text to learn more about multichain accounts" - }, - "multichainAccountIntroSameAddressDescription": { - "message": "We’ve grouped your accounts, so keep using MetaMask the same as before. Your funds are safe and unchanged.", - "description": "Description explaining that accounts have been merged" - }, - "multichainAccountIntroSameAddressTitle": { - "message": "Same address, more networks", - "description": "Title for the second section of the multichain account intro modal" - }, - "multichainAccountIntroSettingUp": { - "message": "Setting up your accounts...", - "description": "Loading text shown while setting up multichain accounts" - }, - "multichainAccountIntroViewAccounts": { - "message": "View accounts", - "description": "Button text to view accounts from the intro modal" - }, - "multichainAccountIntroWhatDescription": { - "message": "A multichain account is an account with addresses on several networks, supported by MetaMask. So now you can use Ethereum, Solana, and more without switching accounts.", - "description": "Description explaining what multichain accounts are" - }, - "multichainAccountIntroWhatTitle": { - "message": "What are multichain accounts?", - "description": "Title for the first section of the multichain account intro modal" - }, - "multichainAccountPrivateKeyCopied": { - "message": "Private key copied", - "description": "Message displayed when the multichain account private key is copied to clipboard" - }, - "multichainAccountsIntroductionModalTitle": { - "message": "Introducing multichain accounts", - "description": "Title for the multichain accounts introduction modal." - }, - "multichainAddEthereumChainConfirmationDescription": { - "message": "You're adding this network to MetaMask and giving this site permission to use it." - }, - "multichainAddressViewAll": { - "message": "View all" - }, - "multichainProviderAccess": { - "message": "Grant Multichain provider access to $1", - "description": "The parameter is the name of the requesting origin" - }, - "multichainQuoteCardRateExplanation": { - "message": "The best rate we found from providers, including provider fees and a $1% MetaMask fee." - }, - "multichainQuoteCardRateLabel": { - "message": "Rate" - }, - "multipleSnapConnectionWarning": { - "message": "$1 wants to use $2 Snaps", - "description": "$1 is the dapp and $2 is the number of snaps it wants to connect to." - }, - "musdAssetBonusAccruing": { - "message": "Accruing next bonus", - "description": "Disabled claim button label shown when user holds mUSD but has no claimable bonus yet" - }, - "musdAssetBonusClaimAmount": { - "message": "Claim $1 bonus", - "description": "Label for the claim button in the mUSD asset details Your bonus section, where $1 is the formatted fiat amount (e.g., $10.27)" - }, - "musdAssetBonusEstimatedAnnual": { - "message": "Estimated annual bonus", - "description": "Label in the mUSD asset details Your bonus section" - }, - "musdAssetBonusInfoAria": { - "message": "Your bonus info", - "description": "Accessible name for the info icon that opens the Your bonus tooltip" - }, - "musdAssetBonusInfoEstimatedAnnual": { - "message": "A projection of what you'd earn over a year based on your current balance and rate. Rate is variable and may change.", - "description": "Explanation for Estimated annual bonus in the Your bonus info tooltip" - }, - "musdAssetBonusInfoLearnMore": { - "message": "Learn more.", - "description": "Link label at the bottom of the Your bonus info tooltip" - }, - "musdAssetBonusInfoLifetimeClaimed": { - "message": "The total bonus you've claimed since you started.", - "description": "Explanation for Lifetime bonus claimed in the Your bonus info tooltip" - }, - "musdAssetBonusInfoYourBonus": { - "message": "$1% annualized bonus you earn just for holding mUSD. You can claim it daily on Linea. $2", - "description": "$1 is the APY %, $2 is the 'Terms apply.' link" - }, - "musdAssetBonusLifetimeClaimed": { - "message": "Lifetime bonus claimed", - "description": "Label in the mUSD asset details Your bonus section" - }, - "musdAssetBonusNoAccruing": { - "message": "No accruing bonus", - "description": "Disabled claim button label shown when user holds no mUSD and has no bonus to claim" - }, - "musdAssetBonusRate": { - "message": "$1% bonus", - "description": "Tag next to Your bonus on the mUSD asset details page, where $1 is the bonus APY percentage (e.g., 3)" - }, - "musdAssetBonusTitle": { - "message": "Your bonus", - "description": "Section title on the mUSD asset details page" - }, - "musdAssetConvertBenefitDailyBonus": { - "message": "Daily bonus", - "description": "Benefit tag on the mUSD asset details convert section" - }, - "musdAssetConvertBenefitDollarBacked": { - "message": "Dollar-backed", - "description": "Benefit tag on the mUSD asset details convert section" - }, - "musdAssetConvertBenefitNoLockups": { - "message": "No lockups", - "description": "Benefit tag on the mUSD asset details convert section" - }, - "musdAssetConvertBenefitNoMetaMaskFee": { - "message": "No MetaMask fee", - "description": "Benefit tag on the mUSD asset details convert section" - }, - "musdAssetConvertDescriptionHighlight": { - "message": "$1% annualized bonus", - "description": "Shown in Figma accent lime (#baf24a) inside the mUSD asset details convert section description. $1 is the APY percentage." - }, - "musdAssetConvertDescriptionLead": { - "message": "Get a ", - "description": "Text before the green APY phrase on the mUSD asset details convert section" - }, - "musdAssetConvertDescriptionTail": { - "message": " by converting USDC, USDT, and DAI to mUSD.", - "description": "Text after the green APY phrase on the mUSD asset details convert section" - }, - "musdAssetConvertLearnMore": { - "message": "Learn more", - "description": "Button to open the mUSD support article from the asset details convert section" - }, - "musdAssetConvertTitle": { - "message": "Convert your stablecoins", - "description": "Title of the convert section on the mUSD asset details page" - }, - "musdAssetPositionBalance": { - "message": "Balance", - "description": "Label in the mUSD asset details Your position section" - }, - "musdAssetPositionTitle": { - "message": "Your position", - "description": "Section title on the mUSD asset details page" - }, - "musdAssetPositionValue": { - "message": "Value", - "description": "Label in the mUSD asset details Your position section (fiat value)" - }, - "musdBonusExplanation": { - "message": "Convert your stablecoins to mUSD and earn\nup to a $1% annualized bonus that you can\nclaim daily. $2", - "description": "$1 is the bonus APY percentage, $2 is the 'Terms apply' link" - }, - "musdBonusPoweredByRelay": { - "message": "Powered by Relay", - "description": "Attribution shown below mUSD bonus explanation on the conversion confirmation info popover" - }, - "musdBoostDescription": { - "message": "Convert your stablecoins to mUSD and get a $1% annualized bonus.", - "description": "$1 is the bonus percentage (e.g., 3)" - }, - "musdBoostTitle": { - "message": "Get $1% on your stablecoins", - "description": "$1 is the bonus percentage (e.g., 3)" - }, - "musdBuyMusd": { - "message": "Buy mUSD" - }, - "musdClaimSendingTo": { - "message": "Sending to", - "description": "Label for the account row in the mUSD claim confirmation screen when no wallet name is available" - }, - "musdClaimSendingToWallet": { - "message": "Sending to $1", - "description": "Label for the account row in the mUSD claim confirmation screen, where $1 is the wallet name" - }, - "musdClaimTitle": { - "message": "Claim bonus", - "description": "Title for the mUSD bonus claim confirmation screen" - }, - "musdClaimableBonus": { - "message": "Claimable bonus", - "description": "Label for the claimable bonus row in the mUSD conversion confirmation screen" - }, - "musdClaimableBonusTooltip": { - "message": "The annualized bonus you've earned for holding mUSD. Your bonus is claimable daily on Linea. $1", - "description": "$1 is the 'Terms apply' link" - }, - "musdClaimableBonusTooltipAria": { - "message": "Claimable bonus details", - "description": "Accessible name for the info control that opens the claimable bonus explanation popover" - }, - "musdConversionActivityTitle": { - "message": "Convert $1 to mUSD", - "description": "$1 is the source token symbol (e.g., USDC)" - }, - "musdConversionBonusTooltipAria": { - "message": "Bonus details", - "description": "Accessible name for the info control that opens the mUSD conversion bonus explanation popover" - }, - "musdConversionFeeTooltipDescription": { - "message": "mUSD conversion fees include network costs and may include provider fees. No MetaMask fee applies when you convert to mUSD.", - "description": "Body text shown above the fee breakdown in the transaction fee tooltip for mUSD conversion" - }, - "musdConversionTitle": { - "message": "Converted to mUSD", - "description": "Title shown in the transaction details modal for mUSD conversion transactions" - }, - "musdConversionToastFailed": { - "message": "mUSD conversion failed" - }, - "musdConversionToastInProgress": { - "message": "Converting $1 → mUSD", - "description": "$1 is the source token symbol (e.g., USDC)" - }, - "musdConversionToastSuccess": { - "message": "mUSD conversion successful" - }, - "musdConversionToastSuccessDescription": { - "message": "Bonus will be claimable within a day." - }, - "musdConvert": { - "message": "Convert" - }, - "musdConvertAndGetBonus": { - "message": "Convert and get $1%", - "description": "$1 is the bonus percentage (e.g., 3)" - }, - "musdEarnBonusPercentage": { - "message": "Earn a $1% bonus", - "description": "$1 is the bonus percentage (e.g., 3). Subtitle on the home token list mUSD Buy/Get CTA." - }, - "musdEducationGetStarted": { - "message": "Get started" - }, - "musdEducationHeadline": { - "message": "GET $1% ON\nSTABLECOINS", - "description": "$1 is the bonus APY percentage. Line break between ON and STABLECOINS matches splash layout." - }, - "musdEducationNotNow": { - "message": "Not now" - }, - "musdGetBonusPercentage": { - "message": "Get $1% mUSD bonus", - "description": "$1 is the bonus percentage (e.g., 3)" - }, - "musdGetMusd": { - "message": "Get mUSD" - }, - "musdMetaMaskUsd": { - "message": "MetaMask USD", - "description": "Product name shown as the title line on the home token list mUSD Buy/Get CTA" - }, - "musdSymbol": { - "message": "mUSD", - "description": "Token ticker for MetaMask USD (displayed next to balance on the mUSD asset details page)" - }, - "musdTermsApply": { - "message": "Terms apply." - }, - "mustSelectOne": { - "message": "Must select at least 1 token." - }, - "name": { - "message": "Name" - }, - "nameAddressLabel": { - "message": "Address", - "description": "Label above address field in name component modal." - }, - "nameAlreadyInUse": { - "message": "Name is already in use" - }, - "nameFooterTrustWarning": { - "message": "Only save addresses you trust.", - "description": "Footer warning text shown in name modal for malicious and warning addresses." - }, - "nameInstructionsMalicious": { - "message": "This has been identified as malicious. We recommend not interacting with this address.", - "description": "Instruction text in name component modal when address is malicious." - }, - "nameInstructionsNew": { - "message": "If you know this address, give it a nickname to recognize it in the future.", - "description": "Instruction text in name component modal when value is not recognised." - }, - "nameInstructionsRecognized": { - "message": "This address has a default nickname, but you can edit it or explore other suggestions.", - "description": "Instruction text in name component modal when value is recognized but not saved." - }, - "nameInstructionsSaved": { - "message": "You've added a nickname for this address before. You can edit or view other suggested nicknames.", - "description": "Instruction text in name component modal when value is saved." - }, - "nameInstructionsWarning": { - "message": "We can't verify this address. It may be new or unverified. Set a personal display name to identify it going forward.", - "description": "Instruction text in name component modal when address has warning signals." - }, - "nameLabel": { - "message": "Nickname", - "description": "Label above name input field in name component modal." - }, - "nameModalMaybeProposedName": { - "message": "Maybe: $1", - "description": "$1 is the proposed name" - }, - "nameModalTitleMalicious": { - "message": "Malicious address", - "description": "Title of the modal created by the name component when address is identified as malicious." - }, - "nameModalTitleNew": { - "message": "Unknown address", - "description": "Title of the modal created by the name component when value is not recognised." - }, - "nameModalTitleRecognized": { - "message": "Recognized address", - "description": "Title of the modal created by the name component when value is recognized but not saved." - }, - "nameModalTitleSaved": { - "message": "Saved address", - "description": "Title of the modal created by the name component when value is saved." - }, - "nameModalTitleVerified": { - "message": "Verified address", - "description": "Title of the modal created by the name component when address is verified." - }, - "nameModalTitleWarning": { - "message": "Address needs review", - "description": "Title of the modal created by the name component when address has warning trust signals." - }, - "nameProviderProposedBy": { - "message": "Proposed by $1", - "description": "$1 is the name of the provider" - }, - "nameProvider_ens": { - "message": "Ethereum Name Service (ENS)" - }, - "nameProvider_etherscan": { - "message": "Etherscan" - }, - "nameProvider_lens": { - "message": "Lens Protocol" - }, - "nameProvider_token": { - "message": "MetaMask" - }, - "nameResolutionFailedError": { - "message": "No address resolution found for this name." - }, - "nameResolutionZeroAddressError": { - "message": "Name resolver returned a zero address. This is likely an error." - }, - "nameSetPlaceholder": { - "message": "Choose a nickname...", - "description": "Placeholder text for name input field in name component modal." - }, - "nameSetPlaceholderSuggested": { - "message": "Suggested: $1", - "description": "$1 is the proposed name" - }, - "nativeNetworkPermissionRequestDescription": { - "message": "$1 is asking for your approval to:", - "description": "$1 represents dapp name" - }, - "nativeTokenScamWarningConversion": { - "message": "Edit network details" - }, - "nativeTokenScamWarningDescription": { - "message": "The native token symbol does not match the expected symbol of the native token for the network with the associated chain ID. You have entered $1 while the expected token symbol is $2. Please verify you are connected to the correct chain.", - "description": "$1 represents the currency name, $2 represents the expected currency symbol" - }, - "nativeTokenScamWarningDescriptionExpectedTokenFallback": { - "message": "something else", - "description": "graceful fallback for when token symbol isn't found" - }, - "nativeTokenScamWarningTitle": { - "message": "Unexpected native token symbol", - "description": "Title for nativeTokenScamWarningDescription" - }, - "needHelp": { - "message": "Need help? Contact $1", - "description": "$1 represents `needHelpLinkText`, the text which goes in the help link" - }, - "needHelpFeedback": { - "message": "Share your feedback" - }, - "needHelpLinkText": { - "message": "MetaMask support" - }, - "needHelpSubmitTicket": { - "message": "Submit a ticket" - }, - "needImportFile": { - "message": "You must select a file to import.", - "description": "User is important an account and needs to add a file to continue" - }, - "negativeOrZeroAmountToken": { - "message": "Cannot send negative or zero amounts of asset." - }, - "negativeValuesNotAllowed": { - "message": "Negative values are not allowed" - }, - "network": { - "message": "Network" - }, - "networkChanged": { - "message": "Network changed" - }, - "networkChangedMessage": { - "message": "You're now transacting on $1.", - "description": "$1 is the name of the network" - }, - "networkDetails": { - "message": "Network details" - }, - "networkFee": { - "message": "Network fee" - }, - "networkFeeExplanation": { - "message": "Network fees depend on how busy the network is and how complex your transaction is." - }, - "networkFeeExplanationTitle": { - "message": "Network fee" - }, - "networkMenu": { - "message": "Network menu" - }, - "networkMenuHeading": { - "message": "Select a network" - }, - "networkName": { - "message": "Network name" - }, - "networkNameBitcoin": { - "message": "Bitcoin" - }, - "networkNameBitcoinSegwit": { - "message": "Bitcoin Native SegWit" - }, - "networkNameDefinition": { - "message": "The name associated with this network." - }, - "networkNameEthereum": { - "message": "Ethereum" - }, - "networkNameGoerli": { - "message": "Goerli" - }, - "networkNamePolygon": { - "message": "Polygon" - }, - "networkNameSolana": { - "message": "Solana" - }, - "networkNameTron": { - "message": "Tron" - }, - "networkOptions": { - "message": "Network options" - }, - "networkPermissionToast": { - "message": "Network permissions updated" - }, - "networkStatus": { - "message": "Network status" - }, - "networkStatusBaseFeeTooltip": { - "message": "The base fee is set by the network and changes every 13-14 seconds. Our $1 and $2 options account for sudden increases.", - "description": "$1 and $2 are bold text for Medium and Aggressive respectively." - }, - "networkStatusPriorityFeeTooltip": { - "message": "Range of priority fees (aka “miner tip”). This goes to miners and incentivizes them to prioritize your transaction." - }, - "networkStatusStabilityFeeTooltip": { - "message": "Gas fees are $1 relative to the past 72 hours.", - "description": "$1 is networks stability value - stable, low, high" - }, - "networkSuggested": { - "message": "Network suggested" - }, - "networkTabCustom": { - "message": "Custom" - }, - "networkTabPopular": { - "message": "Popular" - }, - "networkURL": { - "message": "Network URL" - }, - "networkURLDefinition": { - "message": "The URL used to access this network." - }, - "networkUrlErrorWarning": { - "message": "Attackers sometimes mimic sites by making small changes to the site address. Make sure you're interacting with the intended site before you continue. Punycode version: $1", - "description": "$1 replaced by RPC URL for network" - }, - "networks": { - "message": "Networks" - }, - "networksSmallCase": { - "message": "networks" - }, - "nevermind": { - "message": "Nevermind" - }, - "new": { - "message": "New!" - }, - "newAccount": { - "message": "New account" - }, - "newAccountIconMessage": { - "message": "Weʼve refreshed account icons to help you tell your accounts apart more easily. You can change the style in $1 > $2 > $3.", - "description": "$1, $2, and $3 are bold text for Settings, General, and Account icon respectively" - }, - "newAccountIconTitle": { - "message": "New account icon" - }, - "newAccountNumberName": { - "message": "Account $1", - "description": "Default name of next account to be created on create account screen" - }, - "newContract": { - "message": "New contract" - }, - "newNFTDetectedInImportNFTsMessageStrongText": { - "message": "Settings > Security and privacy" - }, - "newNFTDetectedInImportNFTsMsg": { - "message": "To use Opensea to see your NFTs, turn on 'Display NFT Media' in $1.", - "description": "$1 is used for newNFTDetectedInImportNFTsMessageStrongText" - }, - "newNFTDetectedInNFTsTabMessage": { - "message": "Let MetaMask automatically detect and display NFTs in your wallet." - }, - "newNFTsAutodetected": { - "message": "NFT autodetection" - }, - "newNetworkAdded": { - "message": "“$1” was successfully added!" - }, - "newNetworkEdited": { - "message": "“$1” was successfully edited!" - }, - "newNftAddedMessage": { - "message": "NFT was successfully added!" - }, - "newPassword": { - "message": "New password" - }, - "newPasswordCreate": { - "message": "Create new password" - }, - "newPrivacyPolicyActionButton": { - "message": "Read more" - }, - "newPrivacyPolicyTitle": { - "message": "We’ve updated our privacy policy" - }, - "newRpcUrl": { - "message": "New RPC URL" - }, - "newTokensImportedMessage": { - "message": "You’ve successfully imported $1.", - "description": "$1 is the string of symbols of all the tokens imported" - }, - "newTokensImportedTitle": { - "message": "Token imported" - }, - "next": { - "message": "Next" - }, - "nftAddFailedMessage": { - "message": "NFT can’t be added as the ownership details do not match. Make sure you have entered correct information." - }, - "nftAddressError": { - "message": "This token is an NFT. Add on the $1", - "description": "$1 is a clickable link with text defined by the 'importNFTPage' key" - }, - "nftAlreadyAdded": { - "message": "NFT has already been added." - }, - "nftAutoDetectionEnabled": { - "message": "NFT autodetection enabled" - }, - "nftBought": { - "message": "Bought $1" - }, - "nftEmptyDescription": { - "message": "There's a world of NFTs out there. Start your collection today." - }, - "nftMinted": { - "message": "Minted $1" - }, - "nftOptions": { - "message": "NFT Options" - }, - "nftTokenIdPlaceholder": { - "message": "Enter the token id" - }, - "nftWarningContent": { - "message": "You're granting access to $1, including any you might own in the future. The party on the other end can transfer these NFTs from your wallet at any time without asking you until you revoke this approval. $2", - "description": "$1 is nftWarningContentBold bold part, $2 is Learn more link" - }, - "nftWarningContentBold": { - "message": "all your $1 NFTs", - "description": "$1 is name of the collection" - }, - "nftWarningContentGrey": { - "message": "Proceed with caution." - }, - "nfts": { - "message": "NFTs" - }, - "nftsPreviouslyOwned": { - "message": "Previously owned" - }, - "nickname": { - "message": "Nickname" - }, - "no": { - "message": "No" - }, - "noAccountsFound": { - "message": "No accounts found for the given search query" - }, - "noConnectionDescription": { - "message": "MetaMask isn't connected to this site. To get started, select the site's Connect button." - }, - "noDefaultAddress": { - "message": "No $1 address", - "description": "$1 is the default address scope" - }, - "noDomainResolution": { - "message": "No resolution for domain provided." - }, - "noHardwareWalletOrSnapsSupport": { - "message": "Snaps, and most hardware wallets, will not work with your current browser version." - }, - "noMMFeeSwapping": { - "message": "No MetaMask fee" - }, - "noNetworkFee": { - "message": "No network fee" - }, - "noNetworksAvailable": { - "message": "No networks available" - }, - "noNetworksFound": { - "message": "No networks found for the given search query" - }, - "noNetworksSelected": { - "message": "No networks selected" - }, - "noOptionsAvailableMessage": { - "message": "This trade route isn't available right now. Try changing the amount, network, or token and we'll find the best option." - }, - "noSnaps": { - "message": "You don't have any snaps installed." - }, - "noTokensMatchSearch": { - "message": "No tokens match your search" - }, - "noTokensMatchingYourFilters": { - "message": "No tokens matching your filters" - }, - "noTokensToManage": { - "message": "You don't have any tokens yet. Search by name or address to discover popular tokens." - }, - "noWebcamFound": { - "message": "Your computer's webcam was not found. Please try again." - }, - "noWebcamFoundTitle": { - "message": "Webcam not found" - }, - "noZeroValue": { - "message": "$1 must be greater than 0" - }, - "nonContractAddressAlertDesc": { - "message": "You're sending call data to an address that isn't a contract. This could cause you to lose funds. Make sure you're using the correct address and network before continuing." - }, - "nonContractAddressAlertTitle": { - "message": "Potential mistake" - }, - "nonce": { - "message": "Nonce" - }, - "none": { - "message": "None" - }, - "notBusy": { - "message": "Not busy" - }, - "notCurrentAccount": { - "message": "Is this the correct account? It's different from the currently selected account in your wallet" - }, - "notEnoughGas": { - "message": "Not enough gas" - }, - "notificationDetail": { - "message": "Details" - }, - "notificationDetailBaseFee": { - "message": "Base fee (GWEI)" - }, - "notificationDetailGasLimit": { - "message": "Gas limit (units)" - }, - "notificationDetailGasUsed": { - "message": "Gas used (units)" - }, - "notificationDetailMaxFee": { - "message": "Max fee per gas" - }, - "notificationDetailNetwork": { - "message": "Network" - }, - "notificationDetailNetworkFee": { - "message": "Network fee" - }, - "notificationDetailPriorityFee": { - "message": "Priority fee (GWEI)" - }, - "notificationItemCheckBlockExplorer": { - "message": "Check on the block explorer" - }, - "notificationItemCollection": { - "message": "Collection" - }, - "notificationItemConfirmed": { - "message": "Confirmed" - }, - "notificationItemError": { - "message": "Unable to retrieve fees currently" - }, - "notificationItemFrom": { - "message": "From" - }, - "notificationItemLidoStakeReadyToBeWithdrawn": { - "message": "Withdrawal ready" - }, - "notificationItemLidoStakeReadyToBeWithdrawnMessage": { - "message": "You can now withdraw your unstaked $1" - }, - "notificationItemLidoWithdrawalRequestedMessage": { - "message": "Your request to unstake $1 has been sent" - }, - "notificationItemNFTReceivedFrom": { - "message": "Received NFT from" - }, - "notificationItemNFTSentTo": { - "message": "Sent NFT to" - }, - "notificationItemNetwork": { - "message": "Network" - }, - "notificationItemRate": { - "message": "Rate (fee included)" - }, - "notificationItemReceived": { - "message": "Received" - }, - "notificationItemReceivedFrom": { - "message": "Received from" - }, - "notificationItemSent": { - "message": "Sent" - }, - "notificationItemSentTo": { - "message": "Sent to" - }, - "notificationItemStakeCompleted": { - "message": "Stake completed" - }, - "notificationItemStaked": { - "message": "Staked" - }, - "notificationItemStakingProvider": { - "message": "Staking provider" - }, - "notificationItemStatus": { - "message": "Status" - }, - "notificationItemSwapped": { - "message": "Swapped" - }, - "notificationItemSwappedFor": { - "message": "for" - }, - "notificationItemTo": { - "message": "To" - }, - "notificationItemTransactionId": { - "message": "Transaction ID" - }, - "notificationItemUnStakeCompleted": { - "message": "UnStaking complete" - }, - "notificationItemUnStaked": { - "message": "Unstaked" - }, - "notificationItemUnStakingRequested": { - "message": "Unstaking requested" - }, - "notificationTransactionFailedMessage": { - "message": "Transaction $1 failed! $2", - "description": "Content of the browser notification that appears when a transaction fails" - }, - "notificationTransactionFailedTitle": { - "message": "Failed transaction", - "description": "Title of the browser notification that appears when a transaction fails" - }, - "notificationTransactionSuccessMessage": { - "message": "Transaction $1 confirmed!", - "description": "Content of the browser notification that appears when a transaction is confirmed" - }, - "notificationTransactionSuccessTitle": { - "message": "Confirmed transaction", - "description": "Title of the browser notification that appears when a transaction is confirmed" - }, - "notificationTransactionSuccessView": { - "message": "View on $1", - "description": "Additional content in a notification that appears when a transaction is confirmed and has a block explorer URL." - }, - "notificationTransactionWithoutNonceFailedMessage": { - "message": "Transaction failed! $1", - "description": "Content of the browser notification that appears when a EIP-7702 transaction fails" - }, - "notificationTransactionWithoutNonceSuccessMessage": { - "message": "Transaction confirmed!", - "description": "Content of the browser notification that appears when a nonce-less transaction is confirmed" - }, - "notifications": { - "message": "Notifications" - }, - "notificationsFeatureToggle": { - "message": "Enable wallet notifications", - "description": "Experimental feature title" - }, - "notificationsFeatureToggleDescription": { - "message": "This enables wallet notifications like send/receive funds or nfts and feature announcements.", - "description": "Description of the experimental notifications feature" - }, - "notificationsMarkAllAsRead": { - "message": "Mark all as read" - }, - "notificationsPageEmptyTitle": { - "message": "Nothing to see here" - }, - "notificationsPageErrorContent": { - "message": "Please, try to visit this page again." - }, - "notificationsPageErrorTitle": { - "message": "There has been an error" - }, - "notificationsPageNoNotificationsContent": { - "message": "You have not received any notifications yet." - }, - "notificationsSettingsBoxError": { - "message": "Something went wrong. Please try again." - }, - "notificationsSettingsPageAllowNotifications": { - "message": "Stay in the loop on what’s happening in your wallet with notifications. To use notifications, we use a profile to sync some settings across your devices. $1 we protect your privacy while using this feature." - }, - "notificationsSettingsPageAllowNotificationsLink": { - "message": "Learn how" - }, - "numberOfTokens": { - "message": "Number of tokens" - }, - "ofTextNofM": { - "message": "of" - }, - "off": { - "message": "Off" - }, - "offlineForMaintenance": { - "message": "Offline for maintenance" - }, - "ok": { - "message": "Ok" - }, - "on": { - "message": "On" - }, - "onboardedMetametricsAccept": { - "message": "I agree" - }, - "onboardedMetametricsDisagree": { - "message": "No thanks" - }, - "onboardedMetametricsKey1": { - "message": "Latest developments" - }, - "onboardedMetametricsKey2": { - "message": "Product features" - }, - "onboardedMetametricsKey3": { - "message": "Other relevant promotional materials" - }, - "onboardedMetametricsLink": { - "message": "MetaMetrics" - }, - "onboardedMetametricsParagraph1": { - "message": "In addition to $1, we'd like to use data to understand how you interact with marketing communications.", - "description": "$1 represents the 'onboardedMetametricsLink' locale string" - }, - "onboardedMetametricsParagraph2": { - "message": "This helps us personalize what we share with you, like:" - }, - "onboardedMetametricsParagraph3": { - "message": "Remember, we never sell the data you provide and you can opt out any time." - }, - "onboardedMetametricsTitle": { - "message": "Help us enhance your experience" - }, - "onboardingAdvancedPrivacyIPFSDescription": { - "message": "The IPFS gateway makes it possible to access and view data hosted by third parties. You can add a custom IPFS gateway or continue using the default." - }, - "onboardingAdvancedPrivacyIPFSInvalid": { - "message": "Please enter a valid URL" - }, - "onboardingAdvancedPrivacyIPFSTitle": { - "message": "Add custom IPFS Gateway" - }, - "onboardingAdvancedPrivacyIPFSValid": { - "message": "IPFS gateway URL is valid" - }, - "onboardingAdvancedPrivacyNetworkDescription": { - "message": "When you use our default settings and configurations, we use Infura as our default remote procedure call (RPC) provider to offer the most reliable and private access to Ethereum data we can. In limited cases, we may use other RPC providers in order to provide the best experience for our users. You can choose your own RPC, but remember that any RPC will receive your IP address and Ethereum wallet to make transactions. To learn more about how Infura handles data for EVM accounts, read our $1; for Solana accounts, $2." - }, - "onboardingAdvancedPrivacyNetworkDescriptionCallToAction": { - "message": "click here" - }, - "onboardingAdvancedPrivacyNetworkTitle": { - "message": "Choose your network" - }, - "onboardingContinueWith": { - "message": "Continue with $1", - "description": "$1 is the type of login used Google, Apple, etc." - }, - "onboardingCreateWallet": { - "message": "Create a new wallet" - }, - "onboardingImportWallet": { - "message": "I have an existing wallet" - }, - "onboardingLoginFooter": { - "message": "By continuing, I agree to MetaMask’s $1 and $2" - }, - "onboardingLoginFooterPrivacyNotice": { - "message": "Privacy notice" - }, - "onboardingLoginFooterTermsOfUse": { - "message": "Terms of Use" - }, - "onboardingMetametricCheckboxDescriptionOneUpdated": { - "message": "We’ll collect basic product usage data. We may associate this information with on-chain data." - }, - "onboardingMetametricCheckboxDescriptionTwo": { - "message": "We’ll use this data to learn how you interact with our marketing communications. We may share relevant news (like product features)." - }, - "onboardingMetametricCheckboxTitleOne": { - "message": "Gather basic usage data" - }, - "onboardingMetametricCheckboxTitleTwo": { - "message": "Product updates" - }, - "onboardingMetametricsContinue": { - "message": "Continue" - }, - "onboardingMetametricsDescription": { - "message": "We’d like to request these permissions. You can opt out or delete your usage data at any time." - }, - "onboardingMetametricsTitle": { - "message": "Help improve MetaMask" - }, - "onboardingOptionIcon": { - "message": "$1 icon", - "description": "$1 is the icon name" - }, - "onboardingSignInWith": { - "message": "Sign in with $1", - "description": "$1 is the type of login used Google, Apple, etc" - }, - "onboardingSrpCreate": { - "message": "Use Secret Recovery Phrase" - }, - "onboardingSrpImport": { - "message": "Import using Secret Recovery Phrase" - }, - "onboardingSrpImportError": { - "message": "Use only lowercase letters, check your spelling, and put the words in the original order." - }, - "onboardingSrpInputClearAll": { - "message": "Clear all" - }, - "onboardingSrpInputPlaceholder": { - "message": "Add a space between each word and make sure no one is watching." - }, - "oneKey": { - "message": "OneKey", - "description": "Hardware device name" - }, - "only": { - "message": "only" - }, - "onlyConnectTrust": { - "message": "Only connect with sites you trust. $1", - "description": "Text displayed above the buttons for connection confirmation. $1 is the link to the learn more web page." - }, - "onlyIntegersAllowed": { - "message": "Only whole numbers are allowed" - }, - "onlyNumbersAllowed": { - "message": "Only numbers are allowed" - }, - "openFullScreen": { - "message": "Open full screen" - }, - "openFullScreenForLedgerWebHid": { - "message": "Go to full screen to connect your Ledger.", - "description": "Shown to the user on the confirm screen when they are viewing MetaMask in a popup window but need to connect their ledger via webhid." - }, - "openInBlockExplorer": { - "message": "Open in block explorer" - }, - "openMultichainAccountAddressMenu": { - "message": "Open multichain account address menu" - }, - "openSettings": { - "message": "Open settings" - }, - "openWallet": { - "message": "Open wallet" - }, - "options": { - "message": "Options" - }, - "or": { - "message": "Or" - }, - "origin": { - "message": "Origin" - }, - "originChanged": { - "message": "Site changed" - }, - "originChangedMessage": { - "message": "You're now reviewing a request from $1.", - "description": "$1 is the name of the origin" - }, - "osTheme": { - "message": "System" - }, - "other": { - "message": "other" - }, - "otherPermissionsOnSiteDescription": { - "message": "The following permissions were also found on this site. Do you want to remove them?" - }, - "otherPermissionsOnSiteTitle": { - "message": "Other permissions on this site" - }, - "otherSnaps": { - "message": "other snaps", - "description": "Used in the 'permission_rpc' message." - }, - "others": { - "message": "others" - }, - "outdatedBrowserNotification": { - "message": "Your browser is out of date. If you don't update your browser, you won't be able to get security patches and new features from MetaMask." - }, - "overrideContentSecurityPolicyHeader": { - "message": "Override Content-Security-Policy header" - }, - "padlock": { - "message": "Padlock" - }, - "paidByMetaMask": { - "message": "Paid by MetaMask" - }, - "paidWith": { - "message": "Paid with" - }, - "participateInMetaMetrics": { - "message": "Participate in MetaMetrics" - }, - "participateInMetaMetricsDescription": { - "message": "Participate in MetaMetrics to help us make MetaMask better" - }, - "passkeyAuthMethodBiometrics": { - "message": "Biometrics", - "description": "Default OS-agnostic noun for the passkey auth method, used as $1 substitution in passkey messages on macOS / Linux / other OSes." - }, - "passkeyAuthMethodTouchId": { - "message": "Touch ID", - "description": "Apple Touch ID brand name, used as $1 substitution on macOS for descriptive passkey copy that names the underlying feature." - }, - "passkeyAuthMethodWindowsHello": { - "message": "Windows Hello", - "description": "Microsoft Windows Hello brand name, used as $1 substitution on Windows for all passkey copy." - }, - "passkeyDescription": { - "message": "Use $1 to unlock MetaMask instead of entering your password. This creates a passkey on this device only.", - "description": "Description of the passkey unlock feature on the setup / settings screens. $1 is the OS-specific auth-method noun (Touch ID on macOS, Windows Hello on Windows, Biometrics elsewhere)." - }, - "passkeyErrorAlreadyEnrolled": { - "message": "$1 is already set up for this wallet.", - "description": "Shown when starting passkey enrollment while a passkey is already enrolled. $1 is the OS-specific auth-method noun (Biometrics / Touch ID / Windows Hello)." - }, - "passkeyErrorAuthenticationVerificationFailed": { - "message": "We couldn't verify your $1. Try again.", - "description": "Shown when passkey authentication response verification fails. $1 is the OS-specific auth-method noun (Biometrics / Touch ID / Windows Hello)." - }, - "passkeyErrorMissingKeyMaterial": { - "message": "Your $1 response was incomplete. Try again.", - "description": "Shown when the passkey assertion is missing required key material. $1 is the OS-specific auth-method noun (Biometrics / Touch ID / Windows Hello)." - }, - "passkeyErrorNoAuthenticationCeremony": { - "message": "$1 sign-in session expired. Try again.", - "description": "Shown when passkey authentication runs without an active authentication ceremony. $1 is the OS-specific auth-method noun (Biometrics / Touch ID / Windows Hello)." - }, - "passkeyErrorNoRegistrationCeremony": { - "message": "$1 setup session expired. Try again from the beginning.", - "description": "Shown when passkey registration verification runs without an active registration ceremony. $1 is the OS-specific auth-method noun (Biometrics / Touch ID / Windows Hello)." - }, - "passkeyErrorNotEnrolled": { - "message": "$1 isn't set up for this wallet. Turn on $1 in Settings.", - "description": "Shown when biometrics unlock fails because no passkey is enrolled. $1 is the OS-specific auth-method noun (Biometrics / Touch ID / Windows Hello)." - }, - "passkeyErrorRegistrationFailed": { - "message": "$1 setup failed. Try again", - "description": "Shown when onboarding biometrics registration fails with an unknown error (after specific biometrics error messages). $1 is the OS-specific auth-method noun (Biometrics / Touch ID / Windows Hello)." - }, - "passkeyErrorRegistrationVerificationFailed": { - "message": "We couldn't verify your $1 setup. Try again.", - "description": "Shown when passkey registration response verification fails. $1 is the OS-specific auth-method noun (Biometrics / Touch ID / Windows Hello)." - }, - "passkeyErrorVaultKeyDecryptionFailed": { - "message": "We couldn't unlock with $1. Try again, or set up $1 again in Settings.", - "description": "Shown when the wrapped vault key cannot be decrypted with the passkey-derived key. $1 is the OS-specific auth-method noun (Biometrics / Touch ID / Windows Hello)." - }, - "passkeyErrorVaultKeyMismatch": { - "message": "$1 doesn't match your current wallet lock. Set up $1 again in Settings.", - "description": "Shown when renewing passkey protection and the decrypted key does not match the expected vault key. $1 is the OS-specific auth-method noun (Biometrics / Touch ID / Windows Hello)." - }, - "passkeyErrorVaultKeyRenewalFailed": { - "message": "Your password was updated, but $1 unlock couldn't be turned on.", - "description": "Shown after a successful wallet password change when re-wrapping the vault key for passkey fails and passkey enrollment is cleared. $1 is the OS-specific auth-method noun (Biometrics / Touch ID / Windows Hello)." - }, - "passkeyErrorVerificationFailed": { - "message": "We couldn't verify your $1. Try again or use your password.", - "description": "Shown when biometrics verification fails while turning off biometrics unlock in Settings and the error has no known passkey code. $1 is the OS-specific auth-method noun (Biometrics / Touch ID / Windows Hello)." - }, - "passkeySetupStepRegister": { - "message": "Register $1", - "description": "Onboarding step label. $1 is the OS-specific auth-method noun (Biometrics / Touch ID / Windows Hello)." - }, - "passkeySetupStepVerify": { - "message": "Validate $1", - "description": "Onboarding step label. $1 is the OS-specific auth-method noun (Biometrics / Touch ID / Windows Hello)." - }, - "passkeyTroubleshootModalDescription": { - "message": "Try opening the extension in a full screen window and try again.", - "description": "Explains that unlocking with a passkey may work better in a full screen MetaMask window." - }, - "passkeyTroubleshootModalOpenFullScreen": { - "message": "Open full screen window", - "description": "Button that opens MetaMask unlock in a full browser tab." - }, - "passkeyTroubleshootModalStillHavingTrouble": { - "message": "Still having trouble?", - "description": "Link text to open MetaMask support when passkey unlock troubleshooting did not help." - }, - "passkeyTroubleshootUnlock": { - "message": "Trouble unlocking?", - "description": "Opens MetaMask in a full browser tab when passkey is unreliable in the side panel." - }, - "passkeyTroubleshootUnlockModalTitle": { - "message": "Trouble unlocking", - "description": "Title for the modal shown when the user needs help unlocking with a passkey from the side panel." - }, - "passkeyTroubleshootVerify": { - "message": "Trouble verifying?", - "description": "Link to open passkey troubleshooting when verifying identity (not unlock), e.g. change password or security settings in the side panel." - }, - "passkeyTroubleshootVerifyModalTitle": { - "message": "Trouble verifying?", - "description": "Title for the passkey troubleshoot modal when the user needs help verifying with a passkey outside of unlock (e.g. security settings or change password)." - }, - "passkeyTurnedOff": { - "message": "$1 turned off", - "description": "Toast shown after passkey unlock is turned off. $1 is the OS-specific auth-method noun (Biometrics / Touch ID / Windows Hello)." - }, - "passkeyTurnedOn": { - "message": "$1 turned on", - "description": "Toast shown after passkey unlock is turned on. $1 is the OS-specific auth-method noun (Biometrics / Touch ID / Windows Hello)." - }, - "passkeyUnlockFailed": { - "message": "$1 unlock failed. Try your password.", - "description": "Generic fallback message when passkey unlock fails. $1 is the OS-specific auth-method noun (Biometrics / Touch ID / Windows Hello)." - }, - "passkeyVerifyingDescription": { - "message": "Use $1 to verify instead of entering your password.", - "description": "Supporting line under the passkey verification heading while WebAuthn runs (e.g. change password). $1 is the OS-specific auth-method noun (Biometrics / Touch ID / Windows Hello)." - }, - "passkeyVerifyingTitle": { - "message": "Confirm with $1", - "description": "Heading while the wallet waits for passkey verification (e.g. change password). $1 is the OS-specific auth-method noun (Biometrics / Touch ID / Windows Hello)." - }, - "password": { - "message": "Password" - }, - "passwordChangedRecently": { - "message": "Your password was changed" - }, - "passwordChangedRecentlyDescription": { - "message": "Enter your new password to stay logged into MetaMask." - }, - "passwordNotLongEnough": { - "message": "Must be at least 8 characters" - }, - "passwordTermsWarning": { - "message": "If I lose this password, MetaMask can’t reset it." - }, - "passwordTermsWarningSocial": { - "message": "If I forget this password, I’ll lose access to my wallet permanently. MetaMask can’t reset it for me." - }, - "passwordToggleHide": { - "message": "Hide password" - }, - "passwordToggleShow": { - "message": "Show password" - }, - "passwordsDontMatch": { - "message": "Passwords don't match" - }, - "paste": { - "message": "Paste" - }, - "pastePrivateKey": { - "message": "Enter your private key string here:", - "description": "For importing an account from a private key" - }, - "payWith": { - "message": "Pay with", - "description": "Label for pay with row showing which token is used to pay transaction fees" - }, - "payWithModalTitle": { - "message": "Pay with", - "description": "Title for the pay with modal that allows users to select which token to pay transaction fees with" - }, - "payee": { - "message": "Payee" - }, - "pending": { - "message": "Pending" - }, - "pendingConfirmationAddNetworkAlertMessage": { - "message": "Updating network will cancel $1 pending transactions from this site.", - "description": "Number of transactions." - }, - "pendingConfirmationSwitchNetworkAlertMessage": { - "message": "Switching network will cancel $1 pending transactions from this site.", - "description": "Number of transactions." - }, - "pendingTransactionAlertMessage": { - "message": "This transaction won't go through until a previous transaction is complete. $1", - "description": "$1 represents the words 'how to cancel or speed up a transaction' in a hyperlink" - }, - "pendingTransactionAlertMessageHyperlink": { - "message": "Learn how to cancel or speed up a transaction.", - "description": "The text for the hyperlink in the pending transaction alert message" - }, - "perSecond": { - "message": "per second" - }, - "percentChange": { - "message": "Percent change" - }, - "permissionFor": { - "message": "Permission for" - }, - "permissionFrom": { - "message": "Permission from" - }, - "permissionRequested": { - "message": "Requested now" - }, - "permissionRequestedForAccounts": { - "message": "Requested now for $1", - "description": "Permission cell status for requested permission including accounts, rendered as AvatarGroup which is $1." - }, - "permissionRevoked": { - "message": "Revoked in this update" - }, - "permissionRevokedForAccounts": { - "message": "Revoked in this update for $1", - "description": "Permission cell status for revoked permission including accounts, rendered as AvatarGroup which is $1." - }, - "permission_accessNamedSnap": { - "message": "Connect to $1.", - "description": "The description for the `wallet_snap` permission. $1 is the human-readable name of the snap." - }, - "permission_accessNetwork": { - "message": "Access the internet.", - "description": "The description of the `endowment:network-access` permission." - }, - "permission_accessNetworkDescription": { - "message": "Allow $1 to access the internet. This can be used to both send and receive data with third-party servers.", - "description": "An extended description of the `endowment:network-access` permission. $1 is the snap name." - }, - "permission_accessSnap": { - "message": "Connect to the $1 snap.", - "description": "The description for the `wallet_snap` permission. $1 is the name of the snap." - }, - "permission_accessSnapDescription": { - "message": "Allow the website or snap to interact with $1.", - "description": "The description for the `wallet_snap_*` permission. $1 is the name of the Snap." - }, - "permission_assets": { - "message": "Display account assets in MetaMask.", - "description": "The description for the `endowment:assets` permission." - }, - "permission_assetsDescription": { - "message": "Allow $1 to provide asset information to the MetaMask client. The assets can be onchain or offchain.", - "description": "An extended description for the `endowment:assets` permission. $1 is the name of the Snap." - }, - "permission_cronjob": { - "message": "Schedule and execute periodic actions.", - "description": "The description for the `snap_cronjob` permission" - }, - "permission_cronjobDescription": { - "message": "Allow $1 to perform actions that run periodically at fixed times, dates, or intervals. This can be used to trigger time-sensitive interactions or notifications.", - "description": "An extended description for the `snap_cronjob` permission. $1 is the snap name." - }, - "permission_dialog": { - "message": "Display dialog windows in MetaMask.", - "description": "The description for the `snap_dialog` permission" - }, - "permission_dialogDescription": { - "message": "Allow $1 to display MetaMask popups with custom text, input field, and buttons to approve or reject an action.\nCan be used to create e.g. alerts, confirmations, and opt-in flows for a snap.", - "description": "An extended description for the `snap_dialog` permission. $1 is the snap name." - }, - "permission_ethereumAccounts": { - "message": "See address, account balance, activity and suggest transactions to approve", - "description": "The description for the `eth_accounts` permission" - }, - "permission_ethereumProvider": { - "message": "Access the Ethereum provider.", - "description": "The description for the `endowment:ethereum-provider` permission" - }, - "permission_ethereumProviderDescription": { - "message": "Allow $1 to communicate with MetaMask directly, in order for it to read data from the blockchain and suggest messages and transactions.", - "description": "An extended description for the `endowment:ethereum-provider` permission. $1 is the snap name." - }, - "permission_getEntropy": { - "message": "Derive arbitrary keys unique to $1.", - "description": "The description for the `snap_getEntropy` permission. $1 is the snap name." - }, - "permission_getEntropyDescription": { - "message": "Allow $1 to derive arbitrary keys unique to $1, without exposing them. These keys are separate from your MetaMask account(s) and not related to your private keys or Secret Recovery Phrase. Other snaps cannot access this information.", - "description": "An extended description for the `snap_getEntropy` permission. $1 is the snap name." - }, - "permission_getLocale": { - "message": "View your preferred language.", - "description": "The description for the `snap_getLocale` permission" - }, - "permission_getLocaleDescription": { - "message": "Let $1 access your preferred language from your MetaMask settings. This can be used to localize and display $1's content using your language.", - "description": "An extended description for the `snap_getLocale` permission. $1 is the snap name." - }, - "permission_getPreferences": { - "message": "See information like your preferred language and fiat currency.", - "description": "The description for the `snap_getPreferences` permission" - }, - "permission_getPreferencesDescription": { - "message": "Let $1 access information like your preferred language and fiat currency in your MetaMask settings. This helps $1 display content tailored to your preferences. ", - "description": "An extended description for the `snap_getPreferences` permission. $1 is the snap name." - }, - "permission_homePage": { - "message": "Display a custom screen", - "description": "The description for the `endowment:page-home` permission" - }, - "permission_homePageDescription": { - "message": "Let $1 display a custom home screen in MetaMask. This can be used for user interfaces, configuration, and dashboards.", - "description": "An extended description for the `endowment:page-home` permission. $1 is the snap name." - }, - "permission_keyring": { - "message": "Allow requests for adding and controlling Ethereum accounts", - "description": "The description for the `endowment:keyring` permission" - }, - "permission_keyringDescription": { - "message": "Let $1 receive requests to add or remove accounts, plus sign and transact on behalf of these accounts.", - "description": "An extended description for the `endowment:keyring` permission. $1 is the snap name." - }, - "permission_lifecycleHooks": { - "message": "Use lifecycle hooks.", - "description": "The description for the `endowment:lifecycle-hooks` permission" - }, - "permission_lifecycleHooksDescription": { - "message": "Allow $1 to use lifecycle hooks to run code at specific times during its lifecycle.", - "description": "An extended description for the `endowment:lifecycle-hooks` permission. $1 is the snap name." - }, - "permission_manageAccounts": { - "message": "Add and control Ethereum accounts", - "description": "The description for `snap_manageAccounts` permission" - }, - "permission_manageAccountsDescription": { - "message": "Allow $1 to add or remove Ethereum accounts, then transact and sign with these accounts.", - "description": "An extended description for the `snap_manageAccounts` permission. $1 is the snap name." - }, - "permission_manageBip32Keys": { - "message": "Manage $1 accounts.", - "description": "The description for the `snap_getBip32Entropy` permission. $1 is a derivation path, e.g. 'm/44'/0'/0' (secp256k1)'." - }, - "permission_manageBip44AndBip32KeysDescription": { - "message": "Allow $1 to manage accounts and assets on the requested network. These accounts are derived and backed up using your secret recovery phrase (without revealing it). With the power to derive keys, $1 can support a variety of blockchain protocols beyond Ethereum (EVMs).", - "description": "An extended description for the `snap_getBip44Entropy` and `snap_getBip44Entropy` permissions. $1 is the snap name." - }, - "permission_manageBip44Keys": { - "message": "Manage $1 accounts.", - "description": "The description for the `snap_getBip44Entropy` permission. $1 is the name of a protocol, e.g. 'Filecoin'." - }, - "permission_manageState": { - "message": "Store and manage its data on your device.", - "description": "The description for the `snap_manageState` permission" - }, - "permission_manageStateDescription": { - "message": "Allow $1 to store, update, and retrieve data securely with encryption. Other snaps cannot access this information.", - "description": "An extended description for the `snap_manageState` permission. $1 is the snap name." - }, - "permission_multichainProvider": { - "message": "Access the Multichain provider.", - "description": "The description for the `endowment:multichain-provider` permission" - }, - "permission_multichainProviderDescription": { - "message": "Allow $1 to communicate with MetaMask directly, in order for it to read data from the blockchain and suggest messages and transactions.", - "description": "An extended description for the `endowment:multichain-provider` permission. $1 is the snap name." - }, - "permission_nameLookup": { - "message": "Provide domain and address lookups.", - "description": "The description for the `endowment:name-lookup` permission." - }, - "permission_nameLookupDescription": { - "message": "Allow the snap to fetch and display address and domain lookups in different parts of the MetaMask UI.", - "description": "An extended description for the `endowment:name-lookup` permission." - }, - "permission_notifications": { - "message": "Show notifications.", - "description": "The description for the `snap_notify` permission" - }, - "permission_notificationsDescription": { - "message": "Allow $1 to display notifications within MetaMask. A short notification text can be triggered by a snap for actionable or time-sensitive information.", - "description": "An extended description for the `snap_notify` permission. $1 is the snap name." - }, - "permission_protocol": { - "message": "Provide protocol data for one or more chains.", - "description": "The description for the `endowment:protocol` permission." - }, - "permission_protocolDescription": { - "message": "Allow $1 to provide MetaMask with protocol data such as gas estimates or token information.", - "description": "An extended description for the `endowment:protocol` permission. $1 is the name of the Snap." - }, - "permission_rpc": { - "message": "Allow $1 to communicate directly with $2.", - "description": "The description for the `endowment:rpc` permission. $1 is 'other snaps' or 'websites', $2 is the snap name." - }, - "permission_rpcDescription": { - "message": "Allow $1 to send messages to $2 and receive a response from $2.", - "description": "An extended description for the `endowment:rpc` permission. $1 is 'other snaps' or 'websites', $2 is the snap name." - }, - "permission_rpcDescriptionOriginList": { - "message": "$1 and $2", - "description": "A list of allowed origins where $2 is the last origin of the list and $1 is the rest of the list separated by ','." - }, - "permission_signatureInsight": { - "message": "Display signature insights modal.", - "description": "The description for the `endowment:signature-insight` permission" - }, - "permission_signatureInsightDescription": { - "message": "Allow $1 to display a modal with insights on any signature request before approval. This can be used for anti-phishing and security solutions.", - "description": "An extended description for the `endowment:signature-insight` permission. $1 is the snap name." - }, - "permission_signatureInsightOrigin": { - "message": "See the origins of websites that initiate a signature request", - "description": "The description for the `signatureOrigin` caveat, to be used with the `endowment:signature-insight` permission" - }, - "permission_signatureInsightOriginDescription": { - "message": "Allow $1 to see the origin (URI) of websites that initiate signature requests. This can be used for anti-phishing and security solutions.", - "description": "An extended description for the `signatureOrigin` caveat, to be used with the `endowment:signature-insight` permission. $1 is the snap name." - }, - "permission_transactionInsight": { - "message": "Fetch and display transaction insights.", - "description": "The description for the `endowment:transaction-insight` permission" - }, - "permission_transactionInsightDescription": { - "message": "Allow $1 to decode transactions and show insights within the MetaMask UI. This can be used for anti-phishing and security solutions.", - "description": "An extended description for the `endowment:transaction-insight` permission. $1 is the snap name." - }, - "permission_transactionInsightOrigin": { - "message": "See the origins of websites that suggest transactions", - "description": "The description for the `transactionOrigin` caveat, to be used with the `endowment:transaction-insight` permission" - }, - "permission_transactionInsightOriginDescription": { - "message": "Allow $1 to see the origin (URI) of websites that suggest transactions. This can be used for anti-phishing and security solutions.", - "description": "An extended description for the `transactionOrigin` caveat, to be used with the `endowment:transaction-insight` permission. $1 is the snap name." - }, - "permission_unknown": { - "message": "Unknown permission: $1", - "description": "$1 is the name of a requested permission that is not recognized." - }, - "permission_viewBip32PublicKeys": { - "message": "View your public key for $1 ($2).", - "description": "The description for the `snap_getBip32PublicKey` permission. $1 is a derivation path, e.g. 'm/44'/0'/0''. $2 is the elliptic curve name, e.g. 'secp256k1'." - }, - "permission_viewBip32PublicKeysDescription": { - "message": "Allow $2 to view your public keys (and addresses) for $1. This does not grant any control of accounts or assets.", - "description": "An extended description for the `snap_getBip32PublicKey` permission. $1 is a derivation path (name). $2 is the snap name." - }, - "permission_viewNamedBip32PublicKeys": { - "message": "View your public key for $1.", - "description": "The description for the `snap_getBip32PublicKey` permission. $1 is a name for the derivation path, e.g., 'Ethereum accounts'." - }, - "permission_walletSwitchEthereumChain": { - "message": "Use your enabled networks", - "description": "The label for the `wallet_switchEthereumChain` permission" - }, - "permission_webAssembly": { - "message": "Support for WebAssembly.", - "description": "The description of the `endowment:webassembly` permission." - }, - "permission_webAssemblyDescription": { - "message": "Allow $1 to access low-level execution environments via WebAssembly.", - "description": "An extended description of the `endowment:webassembly` permission. $1 is the snap name." - }, - "permissions": { - "message": "Permissions" - }, - "permissionsPageEmptyDescription": { - "message": "No permissions detected. Once you grant permissions to a site or install a Snap, the details will appear here." - }, - "permitSimulationChange_approve": { - "message": "Spending cap" - }, - "permitSimulationChange_bidding": { - "message": "You bid" - }, - "permitSimulationChange_listing": { - "message": "You list" - }, - "permitSimulationChange_nft_listing": { - "message": "Listing price" - }, - "permitSimulationChange_receive": { - "message": "You receive" - }, - "permitSimulationChange_revoke2": { - "message": "Revoke" - }, - "permitSimulationChange_transfer": { - "message": "You send" - }, - "permitSimulationDetailInfo": { - "message": "You're giving the spender permission to spend this many tokens from your account." - }, - "permittedChainToastUpdate": { - "message": "$1 has access to $2." - }, - "perps": { - "message": "Perps" - }, - "perps24hVolume": { - "message": "24h Volume" - }, - "perpsActivity": { - "message": "Activity" - }, - "perpsAddExposure": { - "message": "Add exposure" - }, - "perpsAddExposureDescriptionLong": { - "message": "Increase the size of your long position" - }, - "perpsAddExposureDescriptionShort": { - "message": "Increase the size of your short position" - }, - "perpsAddFunds": { - "message": "Add funds" - }, - "perpsAddFundsDescription": { - "message": "Add funds to start trading perpetual contracts with leverage" - }, - "perpsAddMargin": { - "message": "Add margin" - }, - "perpsAddMarginDescription": { - "message": "Increase margin to reduce liquidation risk" - }, - "perpsAddToFavorites": { - "message": "Add to favorites" - }, - "perpsAutoClose": { - "message": "Auto close" - }, - "perpsAvailable": { - "message": "available", - "description": "is the available balance amount" - }, - "perpsAvailableBalance": { - "message": "Available balance: " - }, - "perpsAvailableToAdd": { - "message": "Available to add" - }, - "perpsAvailableToClose": { - "message": "Available to close" - }, - "perpsAvailableToSubtract": { - "message": "Available to subtract" - }, - "perpsAvailableToTrade": { - "message": "Available to trade", - "description": "Label for the available balance that can be used for trading" - }, - "perpsBasicFunctionalityOff": { - "message": "This feature isn't available while basic functionality is turned off." - }, - "perpsBatchCancelFailed": { - "message": "Failed to cancel one or more orders. Try again." - }, - "perpsBatchCloseFailed": { - "message": "Failed to close one or more positions. Try again." - }, - "perpsCancelAllOrders": { - "message": "Cancel all" - }, - "perpsCancelOrder": { - "message": "Cancel order" - }, - "perpsCandleIntervals": { - "message": "Set candle interval" - }, - "perpsCandlePeriodDays": { - "message": "Days" - }, - "perpsCandlePeriodHours": { - "message": "Hours" - }, - "perpsCandlePeriodMinutes": { - "message": "Minutes" - }, - "perpsCloseAll": { - "message": "Close all" - }, - "perpsCloseAmount": { - "message": "Close amount" - }, - "perpsCloseLong": { - "message": "Close long" - }, - "perpsClosePartialMinNotional": { - "message": "Partial closes must be at least $1 in USD value. Increase the close amount or close the full position." - }, - "perpsClosePosition": { - "message": "Close position" - }, - "perpsCloseShort": { - "message": "Close short" - }, - "perpsConfirmCloseLong": { - "message": "Close long" - }, - "perpsConfirmCloseShort": { - "message": "Close short" - }, - "perpsConnectionTimeout": { - "message": "Connection timed out. Please try again." - }, - "perpsContactSupport": { - "message": "Contact support" - }, - "perpsCrossMarginNotSupportedDescription": { - "message": "MetaMask Perps only support trading with isolated margin. You need to first close your cross margin position before you can trade on MetaMask." - }, - "perpsCrossMarginNotSupportedTitle": { - "message": "Cross margin not supported" - }, - "perpsDateToday": { - "message": "Today" - }, - "perpsDateYesterday": { - "message": "Yesterday" - }, - "perpsDepositActivityTitle": { - "message": "Funded Perps" - }, - "perpsDepositErrorBridgeFailed": { - "message": "Bridge failed" - }, - "perpsDepositFailed": { - "message": "Deposit could not be completed. Try again." - }, - "perpsDepositFundsTitle": { - "message": "Deposit funds to Perps" - }, - "perpsDepositTitle": { - "message": "Funded perps account" - }, - "perpsDepositToastErrorDescription": { - "message": "Your funds were not added to Perps. Try again." - }, - "perpsDepositToastErrorTitle": { - "message": "Perps deposit failed" - }, - "perpsDepositToastPendingDescription": { - "message": "Your funds will be available to trade shortly." - }, - "perpsDepositToastPendingTitle": { - "message": "Adding funds to Perps" - }, - "perpsDepositToastSuccessDescription": { - "message": "Funds are ready to trade" - }, - "perpsDepositToastSuccessTitle": { - "message": "Your Perps account was funded" - }, - "perpsDeposits": { - "message": "Deposits" - }, - "perpsDetails": { - "message": "Details" - }, - "perpsDirection": { - "message": "Direction" - }, - "perpsDisclaimer": { - "message": "Perpetual contracts are very risky, and you could suddenly and without notice lose your entire investment. You trade entirely at your own risk. Powered by Hyperliquid. Price chart powered by TradingView." - }, - "perpsEmptyDescription": { - "message": "Trade perpetuals with leverage. Open your first position to get started." - }, - "perpsEntryPrice": { - "message": "Entry price" - }, - "perpsEstSize": { - "message": "Est. size" - }, - "perpsEstimatedPnlAtStopLoss": { - "message": "Est. P&L at stop loss", - "description": "Label for estimated profit or loss when stop loss is hit" - }, - "perpsEstimatedPnlAtTakeProfit": { - "message": "Est. P&L at take profit", - "description": "Label for estimated profit or loss when take profit is hit" - }, - "perpsExploreMarkets": { - "message": "Explore markets" - }, - "perpsFees": { - "message": "Fees" - }, - "perpsFilterAll": { - "message": "All" - }, - "perpsFilterCommodities": { - "message": "Commodities" - }, - "perpsFilterCrypto": { - "message": "Crypto" - }, - "perpsFilterForex": { - "message": "Forex" - }, - "perpsFilterNew": { - "message": "New" - }, - "perpsFilterStocks": { - "message": "Stocks" - }, - "perpsFunding": { - "message": "Funding" - }, - "perpsFundingPayments": { - "message": "Funding payments" - }, - "perpsFundingRate": { - "message": "Funding rate" - }, - "perpsFundingRateTooltip": { - "message": "An hourly fee paid between traders to keep prices in line with the market. If the rate is positive, longs pay shorts. If negative, shorts pay longs." - }, - "perpsGeoBlockedDescription": { - "message": "Perps trading isn't available in your location due to local restrictions or sanctions." - }, - "perpsGeoBlockedTitle": { - "message": "Perps unavailable in your region" - }, - "perpsGiveFeedback": { - "message": "Give us feedback" - }, - "perpsIncludesPnl": { - "message": "includes P&L $1" - }, - "perpsInsufficientMargin": { - "message": "Insufficient margin to place this order." - }, - "perpsLearnBasics": { - "message": "Learn the basics of perps" - }, - "perpsLearnMore": { - "message": "Learn more" - }, - "perpsLeverage": { - "message": "Leverage" - }, - "perpsLimit": { - "message": "Limit" - }, - "perpsLimitPrice": { - "message": "Limit price" - }, - "perpsLimitPriceAboveCurrentPrice": { - "message": "Limit price is above current price" - }, - "perpsLimitPriceBelowCurrentPrice": { - "message": "Limit price is below current price" - }, - "perpsLimitPriceNearLiquidation": { - "message": "Current price is near the estimated liquidation price" - }, - "perpsLiquidationDistance": { - "message": "Liquidation distance" - }, - "perpsLiquidationPrice": { - "message": "Liquidation price" - }, - "perpsLong": { - "message": "Long" - }, - "perpsMargin": { - "message": "Margin" - }, - "perpsMarginRiskWarning": { - "message": "Removing margin moves your liquidation price closer. Ensure you have sufficient buffer." - }, - "perpsMarket": { - "message": "Market" - }, - "perpsMarketNotFound": { - "message": "Market not found" - }, - "perpsMarketNotFoundDescription": { - "message": "The market \"$1\" could not be found.", - "description": "$1 is the market symbol that was not found" - }, - "perpsMarkets": { - "message": "Markets" - }, - "perpsMid": { - "message": "Mid" - }, - "perpsMinOrderSize": { - "message": "Order size must be at least $1", - "description": "$1 is the minimum order size with currency symbol (e.g., '$10'). Shown as submit-button copy when the size input is empty or below the minimum." - }, - "perpsModify": { - "message": "Modify" - }, - "perpsModifyPosition": { - "message": "Modify Position" - }, - "perpsMore": { - "message": "More" - }, - "perpsNetworkError": { - "message": "A network error occurred. Please try again." - }, - "perpsNoMarketsFound": { - "message": "No markets found" - }, - "perpsNoTransactions": { - "message": "No transactions yet" - }, - "perpsOpenInterest": { - "message": "Open interest" - }, - "perpsOpenInterestTooltip": { - "message": "The combined value of all open positions for this perp" - }, - "perpsOpenLong": { - "message": "Open long $1", - "description": "$1 is the asset symbol (e.g., BTC, ETH)" - }, - "perpsOpenOrders": { - "message": "Open Orders" - }, - "perpsOpenShort": { - "message": "Open short $1", - "description": "$1 is the asset symbol (e.g., BTC, ETH)" - }, - "perpsOraclePrice": { - "message": "Oracle price" - }, - "perpsOraclePriceTooltip": { - "message": "The median of external prices reported by validators, used for computing funding rate" - }, - "perpsOrderDate": { - "message": "Date" - }, - "perpsOrderFailed": { - "message": "Order could not be placed. Try again." - }, - "perpsOrderOriginalSize": { - "message": "Original size" - }, - "perpsOrderRejected": { - "message": "Your order was rejected. Try again." - }, - "perpsOrderStatus": { - "message": "Status" - }, - "perpsOrderValue": { - "message": "Order value" - }, - "perpsOrders": { - "message": "Orders" - }, - "perpsPnl": { - "message": "P&L" - }, - "perpsPosition": { - "message": "Position" - }, - "perpsPositions": { - "message": "Positions" - }, - "perpsRateLimitExceeded": { - "message": "Too many requests. Please wait and try again." - }, - "perpsRecentActivity": { - "message": "Recent activity" - }, - "perpsReduceExposure": { - "message": "Reduce exposure" - }, - "perpsReduceExposureDescriptionLong": { - "message": "Decrease the size of your long position" - }, - "perpsReduceExposureDescriptionShort": { - "message": "Decrease the size of your short position" - }, - "perpsReduceOnly": { - "message": "Reduce only" - }, - "perpsRemoveFromFavorites": { - "message": "Remove from favorites" - }, - "perpsRemoveMargin": { - "message": "Remove margin" - }, - "perpsRemoveMarginDescription": { - "message": "Withdraw excess margin from position" - }, - "perpsReturn": { - "message": "Return" - }, - "perpsReversePosition": { - "message": "Reverse position" - }, - "perpsReversePositionDescriptionLong": { - "message": "Flip your long position to a short" - }, - "perpsReversePositionDescriptionShort": { - "message": "Flip your short position to a long" - }, - "perpsSaveChanges": { - "message": "Save changes", - "description": "Button text for saving TP/SL changes" - }, - "perpsSearchMarkets": { - "message": "Search markets" - }, - "perpsSeeAll": { - "message": "See all", - "description": "Accessible label for the arrow button that navigates to the full activity list" - }, - "perpsServiceUnavailable": { - "message": "Service temporarily unavailable. Please try again later." - }, - "perpsShort": { - "message": "Short" - }, - "perpsSize": { - "message": "Size" - }, - "perpsSlippageExceeded": { - "message": "Slippage exceeded. Adjust your slippage tolerance and try again." - }, - "perpsSortByFundingRate": { - "message": "Funding rate" - }, - "perpsSortByHighToLow": { - "message": "High to low" - }, - "perpsSortByLowToHigh": { - "message": "Low to high" - }, - "perpsSortByOpenInterest": { - "message": "Open interest" - }, - "perpsSortByPriceChange": { - "message": "Price change" - }, - "perpsSortByRank": { - "message": "Rank" - }, - "perpsSortBySection": { - "message": "Sort by" - }, - "perpsSortByTitle": { - "message": "Filter" - }, - "perpsSortByVolume": { - "message": "Volume" - }, - "perpsStartNewTrade": { - "message": "Start a new trade" - }, - "perpsStartTrading": { - "message": "Start trading" - }, - "perpsStats": { - "message": "Stats" - }, - "perpsStatusCanceled": { - "message": "Canceled" - }, - "perpsStatusCompleted": { - "message": "Completed" - }, - "perpsStatusFilled": { - "message": "Filled" - }, - "perpsStatusOpen": { - "message": "Open" - }, - "perpsStatusQueued": { - "message": "Queued" - }, - "perpsStatusRejected": { - "message": "Rejected" - }, - "perpsStatusTriggered": { - "message": "Triggered" - }, - "perpsStopLoss": { - "message": "Stop loss", - "description": "Label for stop loss price input" - }, - "perpsStopLossInvalidLiquidationPrice": { - "message": "Stop loss must be $1 liquidation price", - "description": "Validation error when stop loss price is on the wrong side of the liquidation price. $1 is above/below." - }, - "perpsStopLossInvalidPrice": { - "message": "Stop loss must be $1 $2 price", - "description": "Validation error when stop loss price is on the wrong side of the reference price. $1 is above/below, $2 is current/entry." - }, - "perpsSubmitting": { - "message": "Submitting...", - "description": "Loading text shown while an order is being submitted" - }, - "perpsTakeProfit": { - "message": "Take profit", - "description": "Label for take profit price input" - }, - "perpsTakeProfitInvalidPrice": { - "message": "Take profit must be $1 $2 price", - "description": "Validation error when take profit price is on the wrong side of the reference price. $1 is above/below, $2 is current/entry." - }, - "perpsToastCancelOrderFailed": { - "message": "Failed to cancel order", - "description": "Error toast text shown when cancelling a perps limit order fails" - }, - "perpsToastCancelOrderSuccess": { - "message": "Order cancelled", - "description": "Success toast text shown when a perps limit order is successfully cancelled" - }, - "perpsToastCloseFailed": { - "message": "Failed to close position", - "description": "Error toast text shown when closing a perps position fails" - }, - "perpsToastCloseInProgress": { - "message": "Closing position", - "description": "In-progress toast text shown while closing a perps position" - }, - "perpsToastClosePnlSubtitle": { - "message": "Your PnL is $1", - "description": "$1 is the formatted PnL percentage for a closed position" - }, - "perpsToastMarginAddSuccess": { - "message": "Added $1 margin to $2 position", - "description": "$1 is the dollar-prefixed amount (e.g. $100) and $2 is the asset symbol for successful margin addition" - }, - "perpsToastMarginAdjustmentFailed": { - "message": "Margin adjustment failed", - "description": "Error toast text shown when adding or removing margin fails" - }, - "perpsToastMarginAdjustmentFailedDescriptionFallback": { - "message": "Unable to adjust margin. Please try again.", - "description": "Fallback description shown when margin adjustment fails without a usable error message." - }, - "perpsToastMarginRemoveSuccess": { - "message": "Removed $1 margin from $2 position", - "description": "$1 is the dollar-prefixed amount (e.g. $100) and $2 is the asset symbol for successful margin removal" - }, - "perpsToastOrderFailed": { - "message": "Order failed", - "description": "Error toast text shown when placing a perps order fails" - }, - "perpsToastOrderFailedDescriptionFallback": { - "message": "Your funds have been returned to you", - "description": "Fallback order failure subtitle shown when no specific order error is available" - }, - "perpsToastOrderFilled": { - "message": "Order filled", - "description": "Success toast text shown when a perps market order is filled" - }, - "perpsToastOrderPlaced": { - "message": "Order placed", - "description": "Success toast text shown when a perps limit order is accepted" - }, - "perpsToastOrderPlacementSubtitle": { - "message": "$1 $2 $3", - "description": "$1 is the order direction, $2 is the position size amount, and $3 is the asset symbol" - }, - "perpsToastOrderSubmitted": { - "message": "Order submitted", - "description": "In-progress toast text shown while a perps order is being submitted" - }, - "perpsToastPartialCloseFailed": { - "message": "Failed to partially close position", - "description": "Error toast text shown when a perps position is partially closed and fails" - }, - "perpsToastPartialCloseInProgress": { - "message": "Partially closing position", - "description": "In-progress toast text shown while a perps position is being partially closed" - }, - "perpsToastPartialCloseSuccess": { - "message": "Position partially closed", - "description": "Success toast text shown when a perps position is partially closed" - }, - "perpsToastPositionStillActive": { - "message": "Your position is still active", - "description": "Subtitle shown in perps close failure toasts when the position remains open" - }, - "perpsToastReverseFailed": { - "message": "Failed to reverse position", - "description": "Error toast text shown when reversing a perps position fails" - }, - "perpsToastReverseInProgress": { - "message": "Reversing position", - "description": "In-progress toast text shown while reversing a perps position" - }, - "perpsToastReverseSuccess": { - "message": "Position reversed", - "description": "Success toast text shown when a perps position is reversed" - }, - "perpsToastSubmitInProgress": { - "message": "Submitting your trade", - "description": "In-progress toast text shown while a perps trade is being submitted" - }, - "perpsToastTradeSuccess": { - "message": "Position closed", - "description": "Success toast text shown when a perps position is closed" - }, - "perpsToastUpdateFailed": { - "message": "Failed to update TP/SL", - "description": "Error toast text shown when updating TP/SL settings fails" - }, - "perpsToastUpdateInProgress": { - "message": "Updating TP/SL...", - "description": "In-progress toast text shown while updating TP/SL settings" - }, - "perpsToastUpdateSuccess": { - "message": "TP/SL updated successfully", - "description": "Success toast text shown when TP/SL settings are updated" - }, - "perpsTotalBalance": { - "message": "Total balance" - }, - "perpsTradePerps": { - "message": "Trade perps" - }, - "perpsTrades": { - "message": "Trades" - }, - "perpsTransactionTitleOpenedLong": { - "message": "Opened long" - }, - "perpsTriggerPrice": { - "message": "Trigger price" - }, - "perpsTutorialChooseLeverageDescription": { - "message": "Leverage amplifies both gains and losses. With 40x leverage, a 1% price move equals a 40% gain or loss on your margin." - }, - "perpsTutorialChooseLeverageTitle": { - "message": "Choose your leverage" - }, - "perpsTutorialCloseAnytimeDescription": { - "message": "Exit whenever you want. You'll get back your margin, plus profits or minus losses." - }, - "perpsTutorialCloseAnytimeTitle": { - "message": "Close any time" - }, - "perpsTutorialContinue": { - "message": "Continue" - }, - "perpsTutorialGoLongShortDescription": { - "message": "Pick a token to long or short, then set your order size." - }, - "perpsTutorialGoLongShortSubtitle": { - "message": "Go long to profit if the price goes up. Go short to profit if the price goes down." - }, - "perpsTutorialGoLongShortTitle": { - "message": "Go long or short on a token" - }, - "perpsTutorialLetsGo": { - "message": "Let's go" - }, - "perpsTutorialReadyToTradeDescription": { - "message": "Fund your perps account with any token and make your first trade in seconds." - }, - "perpsTutorialReadyToTradeTitle": { - "message": "Ready to trade?" - }, - "perpsTutorialSkip": { - "message": "Skip" - }, - "perpsTutorialWatchLiquidationDescription": { - "message": "You'll lose your entire margin if the token hits your liquidation price. Higher leverage means less room to liquidation." - }, - "perpsTutorialWatchLiquidationTitle": { - "message": "Watch out for liquidation" - }, - "perpsTutorialWhatArePerpsDescription": { - "message": "MetaMask now supports perpetual futures — aka perps — letting you trade on a token's price movement without buying it." - }, - "perpsTutorialWhatArePerpsSubtitle": { - "message": "Here's how it works." - }, - "perpsTutorialWhatArePerpsTitle": { - "message": "What are perps?" - }, - "perpsUnrealizedPnl": { - "message": "Unrealized P&L" - }, - "perpsWatchlist": { - "message": "Watchlist" - }, - "perpsWithdraw": { - "message": "Withdraw" - }, - "perpsWithdrawActivityTitle": { - "message": "Perps withdraw", - "description": "Title shown in the Activity list for a Perps withdraw transaction" - }, - "perpsWithdrawEstimatedTime": { - "message": "Estimated time" - }, - "perpsWithdrawFailed": { - "message": "Withdrawal could not be completed. Try again." - }, - "perpsWithdrawFee": { - "message": "Provider Fee" - }, - "perpsWithdrawFundsTitle": { - "message": "Withdraw" - }, - "perpsWithdrawInsufficient": { - "message": "Amount exceeds your available Perps balance." - }, - "perpsWithdrawInvalidAddress": { - "message": "Enter a valid destination address." - }, - "perpsWithdrawInvalidAmount": { - "message": "Enter a valid amount." - }, - "perpsWithdrawMinNotice": { - "message": "Minimum withdrawal: $1 USDC", - "description": "$1 is the minimum amount (e.g. 1.01)" - }, - "perpsWithdrawMinutesApprox": { - "message": "~$1 min", - "description": "$1 is the estimated number of minutes" - }, - "perpsWithdrawNoAccount": { - "message": "No account selected. Select an account and try again." - }, - "perpsWithdrawPostQuoteToastErrorDescription": { - "message": "Failed to proceed with withdrawal" - }, - "perpsWithdrawPostQuoteToastErrorTitle": { - "message": "Something went wrong" - }, - "perpsWithdrawPostQuoteToastPendingDescription": { - "message": "Available in about 1 minute" - }, - "perpsWithdrawPostQuoteToastPendingTitle": { - "message": "Withdrawal in progress" - }, - "perpsWithdrawPostQuoteToastSuccessDescription": { - "message": "$1 $2 moved to your wallet", - "description": "$1 is the formatted USD amount, e.g. '$20.73'. $2 is the destination token symbol, e.g. 'BNB'." - }, - "perpsWithdrawPostQuoteToastSuccessGenericDescription": { - "message": "Funds moved to your wallet" - }, - "perpsWithdrawPostQuoteToastSuccessTitle": { - "message": "Withdrawal complete" - }, - "perpsWithdrawReceive": { - "message": "Receive" - }, - "perpsWithdrawRoutesError": { - "message": "Could not load withdrawal limits. Try again later." - }, - "perpsWithdrawToastErrorTitle": { - "message": "Withdrawal failed" - }, - "perpsWithdrawToastSuccessDescription": { - "message": "We are processing $1. Funds typically arrive within a few minutes.", - "description": "$1 is the formatted withdrawal amount" - }, - "perpsWithdrawToastSuccessTitle": { - "message": "Withdrawal submitted" - }, - "perpsWithdrawTooltip": { - "message": "MetaMask will swap to your desired token for you. No MetaMask fee applies when you swap to mUSD.", - "description": "Tooltip shown on the Transaction fee row of the Perps Withdraw confirmation" - }, - "perpsYouReceive": { - "message": "You receive" - }, - "perpsYouWillReceive": { - "message": "You'll receive" - }, - "personalAddressDetected": { - "message": "Personal address detected. Input the token contract address." - }, - "pin": { - "message": "Pin", - "description": "Pin label used in multichain account menu" - }, - "pinMetaMask": { - "message": "Pin the MetaMask extension" - }, - "pinMetaMaskDescription": { - "message": "Click on $1 and then $2 to pin it." - }, - "pinToTop": { - "message": "Pin to top" - }, - "pinned": { - "message": "Pinned" - }, - "pleaseConfirm": { - "message": "Please confirm" - }, - "pna25ModalBlogPostLink": { - "message": "blog post." - }, - "pna25ModalBody1": { - "message": "To better serve you, we’re updating our analytics so publicly available data like wallet addresses and related on-chain activity can be associated with actions you take in MetaMask. This helps us improve MetaMask's performance, security, and features in order to make a better, safer wallet." - }, - "pna25ModalBody2": { - "message": "We take privacy seriously. We do not use this information for advertising or sell your data to third parties. You can opt out anytime in Settings." - }, - "pna25ModalBody3": { - "message": "You can read more about what we collect, how we protect it, and why we’re making this change in our latest" - }, - "pna25ModalTitle": { - "message": "Privacy and product updates" - }, - "popularNetworkAddToolTip": { - "message": "Some of these networks rely on third parties. The connections may be less reliable or enable third-parties to track activity.", - "description": "Learn more link" - }, - "popularNetworks": { - "message": "Popular networks" - }, - "preferencesAndDisplay": { - "message": "Preferences and display" - }, - "prev": { - "message": "Prev" - }, - "price": { - "message": "Price" - }, - "priceUnavailable": { - "message": "price unavailable" - }, - "primaryType": { - "message": "Primary type" - }, - "priority": { - "message": "Priority" - }, - "priorityFee": { - "message": "Priority fee" - }, - "priorityFeeProperCase": { - "message": "Priority fee" - }, - "priorityFeeTooHigh": { - "message": "Priority fee must be less than max base fee" - }, - "privacy": { - "message": "Privacy" - }, - "privacyMsg": { - "message": "Privacy Policy" - }, - "privateKey": { - "message": "Private key", - "description": "select this type of file to use to import an account" - }, - "privateKeyCopyWarning": { - "message": "Private key for $1", - "description": "$1 represents the account name" - }, - "privateKeyHidden": { - "message": "The private key is hidden", - "description": "Explains that the private key input is hidden" - }, - "privateKeyShow": { - "message": "Show/Hide the private key input", - "description": "Describes a toggle that is used to show or hide the private key input" - }, - "privateKeyShown": { - "message": "This private key is being shown", - "description": "Explains that the private key input is being shown" - }, - "privateKeyWarning": { - "message": "Warning: Never disclose this key. Anyone with your private keys can steal any assets held in your account." - }, - "privateKeys": { - "message": "Private keys", - "description": "Private keys row label on multichain account details page." - }, - "privateNetwork": { - "message": "Private network" - }, - "proceed": { - "message": "Proceed" - }, - "proceedWithTransaction": { - "message": "I want to proceed anyway" - }, - "productAnnouncements": { - "message": "Product announcements" - }, - "provide": { - "message": "Provide" - }, - "providerFee": { - "message": "Provider fee", - "description": "Label used in the Transaction fee tooltip for the provider (bridge/relay) fee, e.g. in Perps Withdraw" - }, - "publicAddress": { - "message": "Public address" - }, - "pushNotificationLimitOrderFilledDescriptionLong": { - "message": "Your $1 long position is now open.", - "description": "$1 is the asset symbol" - }, - "pushNotificationLimitOrderFilledDescriptionShort": { - "message": "Your $1 short position is now open.", - "description": "$1 is the asset symbol" - }, - "pushNotificationLimitOrderFilledTitle": { - "message": "Limit order filled" - }, - "pushNotificationPositionLiquidatedDescriptionLong": { - "message": "Your $1 long was closed.", - "description": "$1 is the asset symbol" - }, - "pushNotificationPositionLiquidatedDescriptionShort": { - "message": "Your $1 short was closed.", - "description": "$1 is the asset symbol" - }, - "pushNotificationPositionLiquidatedTitle": { - "message": "Position liquidated" - }, - "pushNotificationShieldClaimCreatedDescriptionShort": { - "message": "Your claim has been created" - }, - "pushNotificationShieldClaimCreatedTitle": { - "message": "Claim created" - }, - "pushNotificationShieldClaimStatusUpdatedDescriptionShort": { - "message": "Your claim has been updated" - }, - "pushNotificationShieldClaimStatusUpdatedTitle": { - "message": "Claim updated" - }, - "pushNotificationShieldLearnMoreCta": { - "message": "Learn more" - }, - "pushNotificationShieldSubscriptionCreatedDescriptionShort": { - "message": "Your plan is now active." - }, - "pushNotificationShieldSubscriptionPaymentFailedDescriptionShort": { - "message": "Your plan has been paused due to payment failure." - }, - "pushNotificationShieldSubscriptionTitle": { - "message": "MetaMask Transaction Shield" - }, - "pushNotificationShieldUpdatePaymentCta": { - "message": "Update payment" - }, - "pushNotificationStopLossTriggeredDescriptionLong": { - "message": "Your $1 long closed at your stop loss.", - "description": "$1 is the asset symbol" - }, - "pushNotificationStopLossTriggeredDescriptionShort": { - "message": "Your $1 short closed at your stop loss.", - "description": "$1 is the asset symbol" - }, - "pushNotificationStopLossTriggeredTitle": { - "message": "Stop loss triggered" - }, - "pushNotificationTakeProfitTriggeredDescriptionLong": { - "message": "Your $1 long closed at your take profit.", - "description": "$1 is the asset symbol" - }, - "pushNotificationTakeProfitTriggeredDescriptionShort": { - "message": "Your $1 short closed at your take profit.", - "description": "$1 is the asset symbol" - }, - "pushNotificationTakeProfitTriggeredTitle": { - "message": "Take profit triggered" - }, - "pushPlatformNotificationsFundsReceivedDescription": { - "message": "You received $1 $2" - }, - "pushPlatformNotificationsFundsReceivedDescriptionDefault": { - "message": "You received some tokens" - }, - "pushPlatformNotificationsFundsReceivedTitle": { - "message": "Funds received" - }, - "pushPlatformNotificationsFundsSentDescription": { - "message": "You successfully sent $1 $2" - }, - "pushPlatformNotificationsFundsSentDescriptionDefault": { - "message": "You successfully sent some tokens" - }, - "pushPlatformNotificationsFundsSentTitle": { - "message": "Funds sent" - }, - "pushPlatformNotificationsNftReceivedDescription": { - "message": "You received new NFTs" - }, - "pushPlatformNotificationsNftReceivedTitle": { - "message": "NFT received" - }, - "pushPlatformNotificationsNftSentDescription": { - "message": "You have successfully sent an NFT" - }, - "pushPlatformNotificationsNftSentTitle": { - "message": "NFT sent" - }, - "pushPlatformNotificationsStakingLidoStakeCompletedDescription": { - "message": "Your Lido stake was successful" - }, - "pushPlatformNotificationsStakingLidoStakeCompletedTitle": { - "message": "Stake complete" - }, - "pushPlatformNotificationsStakingLidoStakeReadyToBeWithdrawnDescription": { - "message": "Your Lido stake is now ready to be withdrawn" - }, - "pushPlatformNotificationsStakingLidoStakeReadyToBeWithdrawnTitle": { - "message": "Stake ready for withdrawal" - }, - "pushPlatformNotificationsStakingLidoWithdrawalCompletedDescription": { - "message": "Your Lido withdrawal was successful" - }, - "pushPlatformNotificationsStakingLidoWithdrawalCompletedTitle": { - "message": "Withdrawal completed" - }, - "pushPlatformNotificationsStakingLidoWithdrawalRequestedDescription": { - "message": "Your Lido withdrawal request was submitted" - }, - "pushPlatformNotificationsStakingLidoWithdrawalRequestedTitle": { - "message": "Withdrawal requested" - }, - "pushPlatformNotificationsStakingRocketpoolStakeCompletedDescription": { - "message": "Your RocketPool stake was successful" - }, - "pushPlatformNotificationsStakingRocketpoolStakeCompletedTitle": { - "message": "Stake complete" - }, - "pushPlatformNotificationsStakingRocketpoolUnstakeCompletedDescription": { - "message": "Your RocketPool unstake was successful" - }, - "pushPlatformNotificationsStakingRocketpoolUnstakeCompletedTitle": { - "message": "Unstake complete" - }, - "pushPlatformNotificationsSwapCompletedDescription": { - "message": "Your MetaMask Swap was successful" - }, - "pushPlatformNotificationsSwapCompletedTitle": { - "message": "Swap completed" - }, - "qr": { - "message": "QR", - "description": "Hardware device name" - }, - "qrCameraAccessBlockedBody": { - "message": "To continue, allow camera access in your browser settings.", - "description": "Body text when the browser has persistently blocked camera access for the QR hardware wallet scanner (Chromium, Firefox, etc.)." - }, - "qrCameraAccessBlockedChromiumHint": { - "message": "Click the camera icon in settings and set to \"Allow\"", - "description": "Instruction shown on the Chromium blocked-camera screen for QR scanning." - }, - "qrCameraAccessBlockedFirefoxStep1": { - "message": "Go to Settings → Privacy & Security → Permissions → Camera", - "description": "Firefox camera recovery step 1." - }, - "qrCameraAccessBlockedFirefoxStep2": { - "message": "Look for $1", - "description": "$1 is the truncated moz-extension:// origin for this install." - }, - "qrCameraAccessBlockedFirefoxStep3": { - "message": "Set to \"Allow\"", - "description": "Firefox camera recovery step 3." - }, - "qrCameraAccessBlockedTitle": { - "message": "Camera access blocked", - "description": "Title when camera access is persistently blocked for QR scanning." - }, - "qrCameraAccessNeededBody": { - "message": "MetaMask needs camera access to scan the QR code on your device.", - "description": "Body when the user dismissed the camera permission prompt but it can be requested again." - }, - "qrCameraAccessNeededTitle": { - "message": "Camera access needed", - "description": "Title when the camera permission dialog was dismissed without a choice." - }, - "queued": { - "message": "Queued" - }, - "quizIntroduction": { - "message": "To reveal your Secret Recovery Phrase, you need to correctly answer two questions." - }, - "quotedTotalCost": { - "message": "Total cost: $1" - }, - "rank": { - "message": "Rank" - }, - "rateIncludesMMFee": { - "message": "Includes $1% MM fee." - }, - "readdToken": { - "message": "You can add this token back in the future by going to “Import token” in your accounts options menu." - }, - "receive": { - "message": "Receive" - }, - "receiveCrypto": { - "message": "Receive crypto" - }, - "receiveToken": { - "message": "Receive token", - "description": "Row label on the Transaction Details page for withdrawal flows (e.g. Perps Withdraw), showing which token the user receives" - }, - "received": { - "message": "Received" - }, - "receivedTotal": { - "message": "Received total", - "description": "Row label on the Transaction Details page for withdrawal flows (e.g. Perps Withdraw), showing the net amount received after fees" - }, - "receivingAddress": { - "message": "Receiving address", - "description": "Page title when viewing addresses for receiving funds" - }, - "recipient": { - "message": "Recipient" - }, - "recipientAddressPlaceholderNew": { - "message": "Enter public address (0x) or domain name" - }, - "recipientEditAriaLabel": { - "message": "Edit recipient" - }, - "recipientPlaceholderText": { - "message": "Enter or paste an address or name" - }, - "recoveryPhraseReminderBackupStart": { - "message": "Back up now" - }, - "recoveryPhraseReminderConfirm": { - "message": "Remind me later" - }, - "recoveryPhraseReminderSubText": { - "message": "If you don’t back up your wallet, you’ll lose access to your funds if you get locked out of the app or get a new device." - }, - "recoveryPhraseReminderTitle": { - "message": "Protect your wallet" - }, - "redeemer": { - "message": "Redeemer" - }, - "redeposit": { - "message": "Redeposit" - }, - "refreshList": { - "message": "Refresh list" - }, - "reject": { - "message": "Reject" - }, - "rejectAll": { - "message": "Reject all" - }, - "rejected": { - "message": "Rejected" - }, - "remove": { - "message": "Remove" - }, - "removeAccount": { - "message": "Remove account" - }, - "removeAccountModalBannerDescription": { - "message": "Make sure you have the Secret Recovery Phrase or private key for this account before removing.", - "description": "Make sure you have the Secret Recovery Phrase or private key for this account before removing." - }, - "removeAccountModalBannerTitle": { - "message": "This account will be removed from MetaMask.", - "description": "Title of a banner alert used on account remove modal." - }, - "removeAll": { - "message": "Remove all" - }, - "removeKeyringSnap": { - "message": "Removing this Snap removes these accounts from MetaMask:" - }, - "removeKeyringSnapToolTip": { - "message": "The snap controls the accounts, and by removing it, the accounts will be removed from MetaMask, too, but they will remain in the blockchain." - }, - "removeNFT": { - "message": "Remove NFT" - }, - "removeNftErrorMessage": { - "message": "We could not remove this NFT." - }, - "removeNftMessage": { - "message": "NFT was successfully removed!" - }, - "removeSnap": { - "message": "Remove Snap" - }, - "removeSnapAccountDescription": { - "message": "If you proceed, this account will no longer be available in MetaMask." - }, - "removeSnapAccountTitle": { - "message": "Remove account" - }, - "removeSnapConfirmation": { - "message": "Are you sure you want to remove $1?", - "description": "$1 represents the name of the snap" - }, - "removeSnapDescription": { - "message": "This action will delete the snap, its data and revoke your given permissions." - }, - "rename": { - "message": "Rename", - "description": "Multichain account menu item for triggering account rename action modal" - }, - "replace": { - "message": "replace" - }, - "reportIssue": { - "message": "Report an issue" - }, - "reportThisError": { - "message": "Report this error" - }, - "requestFrom": { - "message": "Request from" - }, - "requestFromInfo": { - "message": "This is the site asking for your signature." - }, - "requestFromInfoSnap": { - "message": "This is the Snap asking for your signature." - }, - "requestFromTransactionDescription": { - "message": "This is the site asking for your confirmation." - }, - "requestingFor": { - "message": "Requesting for" - }, - "requestingForAccount": { - "message": "Requesting for $1", - "description": "Name of Account" - }, - "requestingForNetwork": { - "message": "Requesting for $1", - "description": "Name of Network" - }, - "required": { - "message": "Required" - }, - "requiredToken": { - "message": "Required token", - "description": "Label for the required token row showing the token and amount needed by the transaction" - }, - "reset": { - "message": "Reset" - }, - "resetWallet": { - "message": "Reset your wallet" - }, - "resetWalletBoldTextOne": { - "message": "permanently" - }, - "resetWalletBoldTextTwo": { - "message": "It will not impact the assets within your wallet." - }, - "resetWalletButton": { - "message": "Yes, reset wallet" - }, - "resetWalletDescriptionOne": { - "message": "We can’t recover your Secret Recovery Phrase. You can reset the wallet to create a new one and import your accounts using private keys." - }, - "resetWalletDescriptionTwo": { - "message": "Resetting will $1 delete all wallet data in MetaMask on this device. $2", - "description": "$1 is the bolded text 'permanently' and $2 is the bolded text 'It will not impact the assets within your wallet.'" - }, - "resetWalletTitle": { - "message": "Don’t have your Secret Recovery Phrase?" - }, - "resolutionProtocol": { - "message": "Address resolved via $1", - "description": "$1 is the protocol name." - }, - "restartMetamask": { - "message": "Restart MetaMask" - }, - "restore": { - "message": "Restore" - }, - "restoreUserData": { - "message": "Restore user data" - }, - "restoreWalletDescription": { - "message": "Enter your $1. By importing the wallet, you will erase your current wallet data from this device. This can’t be undone.", - "description": "$1 is the Secret Recovery Phrase" - }, - "resultPageError": { - "message": "Error" - }, - "resultPageErrorDefaultMessage": { - "message": "The operation failed." - }, - "resultPageSuccess": { - "message": "Success" - }, - "resultPageSuccessDefaultMessage": { - "message": "The operation completed successfully." - }, - "retryTransaction": { - "message": "Retry transaction" - }, - "reusedTokenNameWarning": { - "message": "A token here reuses a symbol from another token you watch, this can be confusing or deceptive." - }, - "revealMultichainPrivateKeysBannerDescription": { - "message": "This key grants full control of your account for the associated chain. $1", - "description": "Description for the banner warning users not to share their private key" - }, - "revealMultichainPrivateKeysBannerTitle": { - "message": "Don’t share your private key", - "description": "Title for the banner warning users not to share their private key" - }, - "revealSecretRecoveryPhrase": { - "message": "Back up Secret Recovery Phrase" - }, - "revealSecretRecoveryPhraseSettings": { - "message": "Reveal Secret Recovery Phrase" - }, - "revealSeedWordsDescription1": { - "message": "Your $1 gives full access to your wallet, funds, and accounts.", - "description": "This is a sentence consisting of link using 'revealSeedWordsSRPName' as $1." - }, - "revealSeedWordsQR": { - "message": "QR" - }, - "revealSeedWordsSRPName": { - "message": "Secret Recovery Phrase" - }, - "revealSeedWordsText": { - "message": "Text" - }, - "revealSeedWordsWarning": { - "message": "Make sure nobody is looking at your screen. MetaMask Support will never ask for this." - }, - "revealSensitiveContent": { - "message": "Reveal sensitive content" - }, - "review": { - "message": "Review" - }, - "reviewAlert": { - "message": "Review alert" - }, - "reviewAlerts": { - "message": "Review alerts" - }, - "reviewPendingTransactions": { - "message": "Review pending transactions" - }, - "reviewPermissions": { - "message": "Review permissions" - }, - "revokePermission": { - "message": "Revoke permission" - }, - "revokePermissionTitle": { - "message": "Remove $1 permission", - "description": "The token symbol that is being revoked" - }, - "revokeSimulationDetailsDesc": { - "message": "You're removing someone's permission to spend tokens from your account." - }, - "revokeTokenApprovals": { - "message": "Revoke token approvals" - }, - "reward": { - "message": "Reward" - }, - "rewardsAuthFailDescription": { - "message": "An unknown error occurred while authenticating this account with the rewards program. Please try again later." - }, - "rewardsAuthFailTitle": { - "message": "Unknown error." - }, - "rewardsErrorMessagesAccountAlreadyRegistered": { - "message": "This account is already registered with another Rewards profile. Please switch account to continue." - }, - "rewardsErrorMessagesFailedToClaimReward": { - "message": "Failed to claim reward. Please try again shortly." - }, - "rewardsErrorMessagesRequestRejected": { - "message": "You rejected the request." - }, - "rewardsErrorMessagesServiceNotAvailable": { - "message": "Service is not available at the moment. Please try again shortly." - }, - "rewardsErrorMessagesSomethingWentWrong": { - "message": "Something went wrong. Please try again shortly." - }, - "rewardsLinkAccount": { - "message": "Add account" - }, - "rewardsLinkAccountError": { - "message": "Failed to add account" - }, - "rewardsOnboardingCheckingRegion": { - "message": "Checking region..." - }, - "rewardsOnboardingDescription": { - "message": "Win prizes, claim perks, and discover more ways to earn—just by using MetaMask." - }, - "rewardsOnboardingIntroGeoCheckFailedDescription": { - "message": "We cannot determine if your country allows opting into the rewards program. Please check your connection and try again." - }, - "rewardsOnboardingIntroGeoCheckFailedTitle": { - "message": "Cannot determine opt-in eligibility" - }, - "rewardsOnboardingIntroGeoCheckRetry": { - "message": "Retry" - }, - "rewardsOnboardingIntroRewardsAuthFailRetry": { - "message": "Retry" - }, - "rewardsOnboardingIntroUnsupportedRegionDescription": { - "message": "Rewards are not supported in your region yet. We are working on expanding access, so check back later." - }, - "rewardsOnboardingIntroUnsupportedRegionTitle": { - "message": "Region not supported" - }, - "rewardsOnboardingLegalDisclaimer": { - "message": "By joining, you agree to our $1. We'll opt in all accounts on this device and track on-chain activity to reward you automatically. $2", - "description": "$1 is the Terms and Privacy Notice link, $2 is the Learn more link" - }, - "rewardsOnboardingLegalDisclaimerLearnMoreLink": { - "message": "Learn more" - }, - "rewardsOnboardingLegalDisclaimerTermsLink": { - "message": "Terms and Privacy Notice" - }, - "rewardsOnboardingOptInError": { - "message": "Opt-in failed" - }, - "rewardsOnboardingReferralCodeError": { - "message": "Invalid referral code" - }, - "rewardsOnboardingReferralCodePlaceholder": { - "message": "Referral code (optional)" - }, - "rewardsOnboardingReferralCodeUnknownError": { - "message": "Referral code couldn’t be validated." - }, - "rewardsOnboardingReferralCodeUnknownErrorDescription": { - "message": "Check your connection and try again." - }, - "rewardsOnboardingReferralHide": { - "message": "Hide code" - }, - "rewardsOnboardingReferralPrompt": { - "message": "Have a referral code?" - }, - "rewardsOnboardingSignUp": { - "message": "Join Rewards" - }, - "rewardsOnboardingSignUpLoading": { - "message": "Joining..." - }, - "rewardsOnboardingTitle": { - "message": "Start earning rewards" - }, - "rewardsOptInVerifyingReferralCode": { - "message": "Verifying referral code...", - "description": "Text shown while verifying a referral code during rewards opt-in" - }, - "rewardsPointsBalance": { - "message": "$1 points", - "description": "$1 is the formatted number of rewards points" - }, - "rewardsPointsBalance_couldntLoad": { - "message": "Couldn't load", - "description": "Text shown when points balance couldn't be loaded" - }, - "rewardsPointsIcon": { - "message": "Rewards points", - "description": "Alt text for the rewards points icon" - }, - "rewardsQRCodeDescription": { - "message": "To access MetaMask Rewards, scan the QR code with your mobile device." - }, - "rewardsQRCodeTitle": { - "message": "Continue on mobile" - }, - "rewardsSignInFailed": { - "message": "Failed to sign in", - "description": "Text shown when the opt-in sign attempt failed, with a retry affordance" - }, - "rewardsSignInToViewPoints": { - "message": "Sign in to view points", - "description": "Text shown when user needs to sign in to view their rewards points" - }, - "rewardsSignUp": { - "message": "Sign up for Rewards" - }, - "rewardsSigningIn": { - "message": "Signing in...", - "description": "Text shown while the user is signing in to view their rewards points" - }, - "rpcNameOptional": { - "message": "RPC Name (Optional)" - }, - "rpcUrl": { - "message": "RPC URL" - }, - "safeTransferFrom": { - "message": "Safe transfer from" - }, - "save": { - "message": "Save" - }, - "scanInstructions": { - "message": "Place the QR code in front of your camera" - }, - "scanQrCode": { - "message": "Scan QR code" - }, - "scrollDown": { - "message": "Scroll down" - }, - "search": { - "message": "Search" - }, - "searchAnAcccountOrContact": { - "message": "Search an account or contact" - }, - "searchForAnAssetToSend": { - "message": "Search for an asset to send" - }, - "searchNetworks": { - "message": "Search networks" - }, - "searchNfts": { - "message": "Search NFTs" - }, - "searchTokens": { - "message": "Search tokens" - }, - "searchTokensByNameOrAddress": { - "message": "Search tokens by name or address" - }, - "searchYourAccounts": { - "message": "Search your accounts", - "description": "Placeholder in a searchbar. Used on multichain account list page." - }, - "second": { - "message": "sec" - }, - "secretRecoveryPhrase": { - "message": "Secret Recovery Phrase" - }, - "secretRecoveryPhrasePlusNumber": { - "message": "Secret Recovery Phrase $1", - "description": "The $1 is the order of the Secret Recovery Phrase" - }, - "secureWallet": { - "message": "Secure wallet" - }, - "secureWalletRemindLaterButton": { - "message": "Remind me later" - }, - "security": { - "message": "Security" - }, - "securityAlert": { - "message": "Security alert from $1 and $2" - }, - "securityAlerts": { - "message": "Security alerts" - }, - "securityAlertsDescriptionV2": { - "message": "This feature alerts you to malicious activity by actively reviewing transaction and signature requests. $1" - }, - "securityAndPassword": { - "message": "Security and password" - }, - "securityAndPrivacy": { - "message": "Security and privacy" - }, - "securityChangePasswordToastError": { - "message": "Password couldn’t be changed. Please try again." - }, - "securityChangePasswordToastPasskeyRenewalFailed": { - "message": "New password saved, but $1 unlock couldn't be turned on.", - "description": "Toast when passkey vault key renewal fails after the new password was already applied. $1 is the OS-specific auth-method noun (Biometrics / Touch ID / Windows Hello)." - }, - "securityChangePasswordToastSuccess": { - "message": "New password saved" - }, - "securityDefaultSettingsSocialLogin": { - "message": "Security & privacy" - }, - "securityDescription": { - "message": "Reduce your chances of joining unsafe networks and protect your accounts" - }, - "securityMessageLinkForNetworks": { - "message": "network scams and security risks" - }, - "securityProviderPoweredBy": { - "message": "Powered by $1", - "description": "The security provider that is providing data" - }, - "securitySocialLoginDefaultSettingsDescription": { - "message": "Reduce your chances of joining unsafe networks and protect your accounts and data" - }, - "securitySocialLoginEnabled": { - "message": "Enabled" - }, - "securitySocialLoginEnabledDescription": { - "message": "Use your $1 login and MetaMask password to recover your account and Secret Recovery Phrases.", - "description": "The $1 is the text 'Google' or 'Apple'" - }, - "securitySocialLoginLabel": { - "message": "$1 RECOVERY", - "description": "The $1 is the text 'Google' or 'Apple'" - }, - "securitySrpLabel": { - "message": "SECRET RECOVERY PHRASES" - }, - "seeAllPermissions": { - "message": "See all permissions", - "description": "Used for revealing more content (e.g. permission list, etc.)" - }, - "seeDetails": { - "message": "See details" - }, - "seedPhraseReq": { - "message": "Secret Recovery Phrases contain 12, 15, 18, 21, or 24 words" - }, - "seedPhraseReviewDetails": { - "message": "This is your $1. Write it down in the correct order and keep it safe. If someone has your Secret Recovery Phrase, they can access your wallet. Don’t share it with anyone, ever.", - "description": "The $1 is the bolded text 'Secret Recovery Phrase'" - }, - "seedPhraseReviewTitle": { - "message": "Save your Secret Recovery Phrase" - }, - "seedPhraseReviewTitleSettings": { - "message": "Save Secret Recovery Phrase" - }, - "select": { - "message": "Select" - }, - "selectAccountToConnect": { - "message": "Select an account to connect" - }, - "selectAll": { - "message": "Select all" - }, - "selectAnAccount": { - "message": "Select an account" - }, - "selectAnAccountAlreadyConnected": { - "message": "This account has already been connected to MetaMask" - }, - "selectEnableDisplayMediaPrivacyPreference": { - "message": "Turn on Display NFT Media" - }, - "selectHdPath": { - "message": "Select HD path" - }, - "selectNFTPrivacyPreference": { - "message": "Enable NFT Autodetection" - }, - "selectNetworkToFilter": { - "message": "Select network to filter" - }, - "selectPathHelp": { - "message": "If you don't see the accounts you expect, try switching the HD path or current selected network." - }, - "selectRecipient": { - "message": "Select recipient" - }, - "selectRpcUrl": { - "message": "Select RPC URL" - }, - "selectSecretRecoveryPhrase": { - "message": "Select Secret Recovery Phrase" - }, - "selectType": { - "message": "Select type" - }, - "selectedAccountMismatch": { - "message": "Different account selected" - }, - "send": { - "message": "Send" - }, - "sendBugReport": { - "message": "Send us a bug report." - }, - "sendSelectReceiveAsset": { - "message": "Select asset to receive" - }, - "sendSelectSendAsset": { - "message": "Select asset to send" - }, - "sendingAsset": { - "message": "Sending $1" - }, - "sendingDisabled": { - "message": "Sending of ERC-1155 NFT assets is not yet supported." - }, - "sendingNativeAsset": { - "message": "Sending $1", - "description": "$1 represents the native currency symbol for the current network (e.g. ETH or BNB)" - }, - "sent": { - "message": "Sent" - }, - "sentSpecifiedTokens": { - "message": "Sent $1", - "description": "Symbol of the specified token" - }, - "sentTokenAsToken": { - "message": "Sent $1 as $2", - "description": "Used in the transaction display list to describe a swap and send. $1 and $2 are the symbols of tokens in involved in the swap." - }, - "sepolia": { - "message": "Sepolia test network" - }, - "setApprovalForAll": { - "message": "Set approval for all" - }, - "setApprovalForAllRedesignedTitle": { - "message": "Withdrawal request" - }, - "setApprovalForAllTitle": { - "message": "Approve $1 with no spend limit", - "description": "The token symbol that is being approved" - }, - "setUp": { - "message": "Set up", - "description": "Action label for Smart Accounts. Used on multichain details page." - }, - "setUpPasskey": { - "message": "Set up $1", - "description": "Action label for turning on passkey unlock. $1 is the OS-specific auth-method noun (Biometrics / Touch ID / Windows Hello)." - }, - "settingAddSnapAccount": { - "message": "Add account Snap" - }, - "settingUpPasskey": { - "message": "Setting up $1", - "description": "Heading on the onboarding passkey setup screen while enrollment is in progress. $1 is the OS-specific auth-method noun (Biometrics / Touch ID / Windows Hello)." - }, - "settings": { - "message": "Settings" - }, - "settingsSearchCantFindSetting": { - "message": "Can't find a setting? $1", - "description": "$1 is a link to request a setting" - }, - "settingsSearchMatchingNotFound": { - "message": "No matching results found." - }, - "settingsSearchRequestHere": { - "message": "Request here" - }, - "shieldClaim": { - "message": "Submit a claim" - }, - "shieldClaimChainNotSupported": { - "message": "This chain is not supported." - }, - "shieldClaimDeleteDraft": { - "message": "Delete draft" - }, - "shieldClaimDeleteDraftDescription": { - "message": "Your claim draft has been deleted." - }, - "shieldClaimDeletedDraft": { - "message": "Draft deleted" - }, - "shieldClaimDescription": { - "message": "Description of case" - }, - "shieldClaimDescriptionPlaceholder": { - "message": "Provide a brief summary of the incident" - }, - "shieldClaimDetails": { - "message": "You may file a single claim per incident within $1 days of the incident. $2", - "description": "The $1 is the number of days and $2 is a link to the full coverage policy" - }, - "shieldClaimDetailsViewClaims": { - "message": "This claim is being reviewed by our team. We will notify you when it has been approved by email. View the full coverage policy $1.", - "description": "The $1 is a link to the full coverage policy" - }, - "shieldClaimDraftDeleteFailed": { - "message": "Deleting draft failed" - }, - "shieldClaimDraftDeleteFailedDescription": { - "message": "Unable to delete your claim draft. Please try again." - }, - "shieldClaimDraftSaveFailed": { - "message": "Saving draft failed" - }, - "shieldClaimDraftSaveFailedDescription": { - "message": "Unable to save your claim draft. Please try again." - }, - "shieldClaimDraftSaved": { - "message": "Draft saved" - }, - "shieldClaimDraftSavedDescription": { - "message": "Your claim draft has been saved." - }, - "shieldClaimDuplicateClaimExists": { - "message": "A claim has already been submitted for this transaction hash." - }, - "shieldClaimEmail": { - "message": "Email" - }, - "shieldClaimEmailHelpText": { - "message": "We'll use this email to keep you informed with updates." - }, - "shieldClaimFileErrorCountExceeded": { - "message": "Number of files exceeds the maximum allowed count." - }, - "shieldClaimFileErrorInvalidType": { - "message": "Invalid file type." - }, - "shieldClaimFileErrorSizeExceeded": { - "message": "Total file size exceeds the maximum allowed size." - }, - "shieldClaimFileUploader": { - "message": "Image upload" - }, - "shieldClaimFileUploaderAcceptText": { - "message": "PDF, PNG, JPG (Max $1MB)", - "description": "The $1 is the maximum file size in MB" - }, - "shieldClaimFileUploaderHelpText": { - "message": "If you have any additional evidence, please upload it here." - }, - "shieldClaimGroupActive": { - "message": "Active claims" - }, - "shieldClaimGroupActiveNote": { - "message": "Note: You can have a maximum of $1 drafts and $2 active claims at a single time.", - "description": "The $1 is the maximum number of drafts and $2 is the maximum number of active claims" - }, - "shieldClaimGroupCompleted": { - "message": "Completed claims" - }, - "shieldClaimGroupDrafts": { - "message": "Drafts" - }, - "shieldClaimGroupNoCompletedClaims": { - "message": "No completed claims" - }, - "shieldClaimGroupNoCompletedClaimsDescription": { - "message": "Track your completed claims here." - }, - "shieldClaimGroupNoOpenClaims": { - "message": "No open claims" - }, - "shieldClaimGroupNoOpenClaimsDescription": { - "message": "Track the status of your claims here." - }, - "shieldClaimGroupRejected": { - "message": "Rejected claims" - }, - "shieldClaimImpactedTxHash": { - "message": "Impacted transaction hash" - }, - "shieldClaimImpactedTxHashHelpText": { - "message": "Also known as TXID, hash ID, or transaction ID." - }, - "shieldClaimImpactedTxHashHelpTextLink": { - "message": "Need help finding it?" - }, - "shieldClaimImpactedTxHashNotEligible": { - "message": "This transaction is not done within MetaMask, hence it is not eligible for claims" - }, - "shieldClaimImpactedWalletAddress": { - "message": "Impacted wallet address" - }, - "shieldClaimIncidentDetails": { - "message": "Incident details" - }, - "shieldClaimInvalidChainId": { - "message": "Please enter a valid chain ID" - }, - "shieldClaimInvalidEmail": { - "message": "Please enter a valid email address" - }, - "shieldClaimInvalidRequired": { - "message": "This field is required" - }, - "shieldClaimInvalidTxHash": { - "message": "Please enter a valid transaction hash" - }, - "shieldClaimInvalidWalletAddress": { - "message": "Please enter a valid wallet address" - }, - "shieldClaimMaxClaimsLimitExceeded": { - "message": "You have reached the maximum limit of open claims. Please contact support if you need to submit additional claims." - }, - "shieldClaimMaxDraftsReached": { - "message": "You have reached the maximum number of drafts. Please delete a draft to save a new one." - }, - "shieldClaimNetwork": { - "message": "Select network" - }, - "shieldClaimPersonalDetails": { - "message": "Personal details" - }, - "shieldClaimReimbursementWalletAddress": { - "message": "Wallet address for reimbursement" - }, - "shieldClaimReimbursementWalletAddressHelpText": { - "message": "Please ensure this is not a compromised wallet." - }, - "shieldClaimSameWalletAddressesError": { - "message": "Impacted wallet address and reimbursement wallet address must be different." - }, - "shieldClaimSaveAsDraft": { - "message": "Save as draft" - }, - "shieldClaimSelectAccount": { - "message": "Select an account" - }, - "shieldClaimSelectNetwork": { - "message": "Select a network" - }, - "shieldClaimSignatureCoverageNotCovered": { - "message": "Signature coverage not found for the given transaction hash." - }, - "shieldClaimSubmissionWindowExpired": { - "message": "Submission window expired. Claims must be filed within $1 days of the incident.", - "description": "The $1 is the number of days" - }, - "shieldClaimSubmit": { - "message": "Submit a claim" - }, - "shieldClaimSubmitError": { - "message": "Claim submission failed" - }, - "shieldClaimSubmitSuccess": { - "message": "Claim submission received" - }, - "shieldClaimSubmitSuccessDescription": { - "message": "Your claim has been submitted. We'll review it and provide updates by email." - }, - "shieldClaimTransactionNotFound": { - "message": "Transaction not found on chain." - }, - "shieldClaimTransactionNotFromWalletAddress": { - "message": "Transaction hash not from wallet address." - }, - "shieldClaimTransactionNotSuccessful": { - "message": "Transaction not successful on chain." - }, - "shieldClaimViewGuidelines": { - "message": "View guide" - }, - "shieldClaimWalletOwnershipValidationFailed": { - "message": "Wallet ownership validation failed." - }, - "shieldClaimsLastEdited": { - "message": "Last edited: $1", - "description": "The $1 is the date" - }, - "shieldClaimsListTitle": { - "message": "Claims" - }, - "shieldClaimsNumber": { - "message": "Claim #$1", - "description": "The $1 is the claim number" - }, - "shieldClaimsTabHistory": { - "message": "Claim history" - }, - "shieldClaimsTabPending": { - "message": "Claims" - }, - "shieldConfirmMembership": { - "message": "Confirm plan" - }, - "shieldCoverageAlertCovered": { - "message": "You're protected up to $2 with MetaMask Transaction Shield. $1." - }, - "shieldCoverageAlertHighRiskTransaction": { - "message": "This is a high risk transaction, so it isn't protected by MetaMask Transaction Shield. $1." - }, - "shieldCoverageAlertMessageChainNotSupported": { - "message": "This chain is not supported, so it isn't protected by MetaMask Transaction Shield. $1" - }, - "shieldCoverageAlertMessageLearnHowCoverageWorks": { - "message": "See what's covered" - }, - "shieldCoverageAlertMessagePaused": { - "message": "There was an issue with your MetaMask Transaction Shield plan payment. Please update your payment method to resume coverage." - }, - "shieldCoverageAlertMessagePausedAcknowledgeButton": { - "message": "Update payment method" - }, - "shieldCoverageAlertMessagePotentialRisks": { - "message": "This transaction has potential risks, so it isn't protected by MetaMask Transaction Shield. $1" - }, - "shieldCoverageAlertMessageSignatureNotSupported": { - "message": "This signature isn't supported, so it isn't protected by MetaMask Transaction Shield. $1" - }, - "shieldCoverageAlertMessageTitle": { - "message": "This transaction isn't covered" - }, - "shieldCoverageAlertMessageTitleCovered": { - "message": "This transaction is covered" - }, - "shieldCoverageAlertMessageTitlePaused": { - "message": "Transaction Shield paused" - }, - "shieldCoverageAlertMessageTitleSignatureRequest": { - "message": "This signature request isn't covered" - }, - "shieldCoverageAlertMessageTitleSignatureRequestCovered": { - "message": "This signature request is covered" - }, - "shieldCoverageAlertMessageTokenTrustSignalWarning": { - "message": "This token shows strong signs of malicious behavior. Continuing may result in loss of funds. $1." - }, - "shieldCoverageAlertMessageTxTypeNotSupported": { - "message": "This transaction type is not supported, so it isn't protected by MetaMask Transaction Shield. $1" - }, - "shieldCoverageAlertMessageUnknown": { - "message": "This request can't be verified, so it isn't protected by MetaMask Transaction Shield. $1." - }, - "shieldCoverageEnding": { - "message": "Shield coverage ends soon" - }, - "shieldCoverageEndingAction": { - "message": "Renew" - }, - "shieldCoverageEndingDescription": { - "message": "Plan ends on $1.", - "description": "The $1 is the date" - }, - "shieldCovered": { - "message": "Covered" - }, - "shieldEntryModalGetStarted": { - "message": "Start 14-day free trial" - }, - "shieldEntryModalSubtitleA": { - "message": "Transaction Shield provides protection up to $1 and 24/7 priority support.", - "description": "The $1 is the amount of transaction protection" - }, - "shieldEntryModalSubtitleB": { - "message": "Transact with added confidence with up to $1 in protection and 24/7 priority support.", - "description": "The $1 is the amount of transaction protection" - }, - "shieldEntryModalTitleA": { - "message": "Transact with added confidence" - }, - "shieldEntryModalTitleB": { - "message": "Introducing Transaction Shield" - }, - "shieldErrorPayerAddressAlreadyUsed": { - "message": "This address is already linked to another account. Use a different address to subscribe." - }, - "shieldEstimatedChangesMonthlyTooltipText": { - "message": "Authorize $1/month for 12 months ($2 total). You'll be billed monthly, not the full amount now." - }, - "shieldFooterAgreement": { - "message": "By continuing, I agree to Transaction Shield $1" - }, - "shieldManagePlan": { - "message": "Manage plan" - }, - "shieldNotCovered": { - "message": "Not covered" - }, - "shieldPastPlansTitle": { - "message": "Past details" - }, - "shieldPaused": { - "message": "Paused" - }, - "shieldPaymentPaused": { - "message": "Transaction Shield paused" - }, - "shieldPaymentPausedActionCardPayment": { - "message": "Update" - }, - "shieldPaymentPausedActionCryptoPayment": { - "message": "Update" - }, - "shieldPaymentPausedActionUnexpectedError": { - "message": "View" - }, - "shieldPaymentPausedDescriptionCardPayment": { - "message": "Card payment failed." - }, - "shieldPaymentPausedDescriptionCryptoPayment": { - "message": "Insufficient token balance." - }, - "shieldPaymentPausedDescriptionUnexpectedError": { - "message": "An unexpected error occurred." - }, - "shieldPlanAnnual": { - "message": "Annual" - }, - "shieldPlanAnnualPrice": { - "message": "$1/year", - "description": "The $1 is the price of the annual plan" - }, - "shieldPlanBillingDate": { - "message": "Billing date" - }, - "shieldPlanCard": { - "message": "Card" - }, - "shieldPlanCryptoMonthlyNote": { - "message": "Total monthly fees pre-approved for a year" - }, - "shieldPlanDetails": { - "message": "What you get" - }, - "shieldPlanDetails1": { - "message": "Free $1-day trial", - "description": "The $1 is the number of days" - }, - "shieldPlanDetails2": { - "message": "Up to $1 in transaction protection", - "description": "The $1 is the amount of transaction protection" - }, - "shieldPlanDetails3": { - "message": "24/7 access to priority live chat support" - }, - "shieldPlanDetailsRewards": { - "message": "Earn $1 points per $2", - "description": "The $1 is the number of points and $2 plan interval (month or year)" - }, - "shieldPlanDetailsRewardsDescription": { - "message": "This offer is only available during Rewards seasons. Points are given when free trial ends to users signed up for Rewards." - }, - "shieldPlanDetailsRewardsTitle": { - "message": "Rewards" - }, - "shieldPlanErrorText": { - "message": "Couldn’t connect to Transaction Shield" - }, - "shieldPlanFooterNoteMonthly": { - "message": "Billed monthly, cancel anytime" - }, - "shieldPlanFooterNoteYearly": { - "message": "Billed yearly, cancel anytime" - }, - "shieldPlanMonthly": { - "message": "Monthly" - }, - "shieldPlanMonthlyPrice": { - "message": "$1/month", - "description": "The $1 is the price of the monthly plan" - }, - "shieldPlanPayWith": { - "message": "Pay with" - }, - "shieldPlanPayWithCard": { - "message": "Pay with card" - }, - "shieldPlanPayWithToken": { - "message": "Pay with $1", - "description": "The $1 is token" - }, - "shieldPlanPaymentTitle": { - "message": "Change payment method" - }, - "shieldPlanSave": { - "message": "Save 17%" - }, - "shieldPlanSelectToken": { - "message": "Select a token" - }, - "shieldPlanTitle": { - "message": "Choose your plan" - }, - "shieldPlanYearly": { - "message": "Yearly" - }, - "shieldStartNowCTA": { - "message": "Start now" - }, - "shieldStartNowCTAWithTrial": { - "message": "Start free trial" - }, - "shieldTx": { - "message": "Transaction Shield" - }, - "shieldTxBillingAccount": { - "message": "Billing account" - }, - "shieldTxCancelDetails": { - "message": "If you cancel, your wallet and transactions will not be covered starting $1.", - "description": "The $1 is the date subscription ends" - }, - "shieldTxCancelImmediateDetails": { - "message": "If you cancel, your wallet and transactions will not be covered." - }, - "shieldTxCancelNotAllowed": { - "message": "Your subscription cannot be cancelled at the moment." - }, - "shieldTxCancelNotAllowedPendingVerification": { - "message": "Your subscription cannot be cancelled due to pending verification." - }, - "shieldTxCancelWhenPausedDetails": { - "message": "Your plan isn't active while paused. If you cancel, your plan will immediately end." - }, - "shieldTxDetails1DescriptionTrial": { - "message": "Free for $1 days, then $2", - "description": "The $1 is the number of days and the $2 is the price of the plan" - }, - "shieldTxDetails1Title": { - "message": "MetaMask Transaction Shield" - }, - "shieldTxDetails2Description": { - "message": "$1, next billing on $2", - "description": "The $1 is interval and the $2 is the date of next billing" - }, - "shieldTxDetails2Title": { - "message": "Billing cycle" - }, - "shieldTxDetails3DescriptionCrypto": { - "message": "Crypto ($1)", - "description": "The $1 is the token symbol" - }, - "shieldTxDetails3DescriptionCryptoWithAccount": { - "message": "Crypto ($1), $2", - "description": "The $1 is the token symbol and the $2 is the account" - }, - "shieldTxDetails3Title": { - "message": "Payment method" - }, - "shieldTxDetailsManage": { - "message": "Manage" - }, - "shieldTxDetailsTitle": { - "message": "Plan details" - }, - "shieldTxMembershipActive": { - "message": "Active plan" - }, - "shieldTxMembershipBenefits": { - "message": "Your benefits" - }, - "shieldTxMembershipBenefits1Description": { - "message": "Secures assets on covered transactions" - }, - "shieldTxMembershipBenefits1Title": { - "message": "Up to $1 protection", - "description": "The $1 is the amount of transaction protection" - }, - "shieldTxMembershipBenefits2Description": { - "message": "Get faster, dedicated support anytime" - }, - "shieldTxMembershipBenefits2Title": { - "message": "Priority support" - }, - "shieldTxMembershipBenefits3Description": { - "message": "Get $1 points/$2", - "description": "The $1 is the number of points and the $2 is the interval" - }, - "shieldTxMembershipBenefits3DescriptionInactive": { - "message": "Get $1 points/$2", - "description": "The $1 is the number of points and the $2 is the interval" - }, - "shieldTxMembershipBenefits3LinkRewards": { - "message": "Link" - }, - "shieldTxMembershipBenefits3SignUp": { - "message": "Sign up" - }, - "shieldTxMembershipBenefits3Title": { - "message": "Earn season rewards" - }, - "shieldTxMembershipBenefitsInactive": { - "message": "What you get" - }, - "shieldTxMembershipBenefitsViewAll": { - "message": "View all" - }, - "shieldTxMembershipBillingDetailsViewBillingHistory": { - "message": "Manage billing" - }, - "shieldTxMembershipCancel": { - "message": "Cancel plan" - }, - "shieldTxMembershipCancelNotification": { - "message": "Your plan will be cancelled on $1.", - "description": "The $1 is the date" - }, - "shieldTxMembershipCancelledDate": { - "message": "You cancelled your plan on $1", - "description": "The $1 is the date" - }, - "shieldTxMembershipErrorInsufficientFunds": { - "message": "Your plan ends on $1. Renew now to continue your benefits.", - "description": "The $1 is the date subscription ends" - }, - "shieldTxMembershipErrorPausedCard": { - "message": "Your plan has been paused due to a failed card payment." - }, - "shieldTxMembershipErrorPausedCardAction": { - "message": "Update card details" - }, - "shieldTxMembershipErrorPausedCardTooltip": { - "message": "Your payment was declined. Please update your payment method to continue your coverage." - }, - "shieldTxMembershipErrorPausedCryptoInsufficientFunds": { - "message": "Plan paused due to insufficient funds. Payment updates may take up to $1 hours.", - "description": "The $1 is the number of hours" - }, - "shieldTxMembershipErrorPausedCryptoInsufficientFundsAction": { - "message": "Add funds" - }, - "shieldTxMembershipErrorPausedCryptoTooltip": { - "message": "Insufficient token balance in your wallet. Click retry after funding your wallet." - }, - "shieldTxMembershipErrorPausedUnexpected": { - "message": "Plan paused due to an unexpected error." - }, - "shieldTxMembershipErrorPausedUnexpectedAction": { - "message": "Contact support" - }, - "shieldTxMembershipFreeTrial": { - "message": "Free trial" - }, - "shieldTxMembershipFreeTrialDaysLeft": { - "message": "You have $1 days left on your trial", - "description": "The $1 is the number of days left" - }, - "shieldTxMembershipId": { - "message": "Member ID" - }, - "shieldTxMembershipInactive": { - "message": "Inactive plan" - }, - "shieldTxMembershipMakeClaim": { - "message": "Make a claim" - }, - "shieldTxMembershipPaused": { - "message": "Paused" - }, - "shieldTxMembershipRenew": { - "message": "Renew plan" - }, - "shieldTxMembershipRenewDescription": { - "message": "Reactivate for $1", - "description": "The $1 is the price of the plan" - }, - "shieldTxMembershipResubscribe": { - "message": "Restart plan" - }, - "shieldTxMembershipSubmitCase": { - "message": "Submit a claim" - }, - "shieldTxPastPlans": { - "message": "Past plans" - }, - "shieldTxPastPlansMonthly": { - "message": "Monthly plan" - }, - "shieldTxPastPlansYearly": { - "message": "Yearly plan" - }, - "shieldTxViewPastInvoice": { - "message": "View past invoice" - }, - "show": { - "message": "Show" - }, - "showAccount": { - "message": "Show account" - }, - "showAdvancedDetails": { - "message": "Show advanced details" - }, - "showDefaultAddress": { - "message": "Show default address" - }, - "showDefaultAddressDescription": { - "message": "Set a default address that's always visible on your home screen and account list." - }, - "showExtensionInFullSizeView": { - "message": "Show extension in full-size view" - }, - "showExtensionInFullSizeViewDescription": { - "message": "Turn this on to make full-size view your default when you click the extension icon." - }, - "showFiatConversionInTestnets": { - "message": "Show conversion on test networks" - }, - "showFiatConversionInTestnetsDescriptionV2": { - "message": "Shows network tokens as local currency on test networks. If you've been asked to turn this feature on, you might be getting scammed. For testing purposes only. $1", - "description": "$1 is the 'Learn more' link" - }, - "showHexData": { - "message": "Show hex data" - }, - "showHexDataDescription": { - "message": "Select this to show the hex data field on the send screen" - }, - "showLess": { - "message": "Show less" - }, - "showMore": { - "message": "Show more" - }, - "showNativeTokenAsMainBalance": { - "message": "Show native token as main balance" - }, - "showNft": { - "message": "Show NFT" - }, - "showPermissions": { - "message": "Show permissions" - }, - "showPrivateKey": { - "message": "Show private key" - }, - "showSRP": { - "message": "Show Secret Recovery Phrase" - }, - "showTestnetNetworks": { - "message": "Show test networks" - }, - "sidePanelMigrationToast": { - "message": "MetaMask now opens in the side panel by default. $1 any time from the menu.", - "description": "Shown when the extension opens in the side panel after migration. $1 is an inline link to switch back to the popup view." - }, - "sign": { - "message": "Sign" - }, - "signatureRequest": { - "message": "Signature request" - }, - "signature_decoding_bid_nft_tooltip": { - "message": "The NFT will be reflected in your wallet, when the bid is accepted." - }, - "signature_decoding_list_nft_tooltip": { - "message": "Expect changes only if someone buys your NFTs." - }, - "signed": { - "message": "Signed" - }, - "signing": { - "message": "Signing" - }, - "signingInWith": { - "message": "Signing in with" - }, - "signingWith": { - "message": "Signing with" - }, - "simulationApproveHeading": { - "message": "Withdraw" - }, - "simulationDetailsApproveDesc": { - "message": "You're giving someone else permission to withdraw NFTs from your account." - }, - "simulationDetailsERC20ApproveDesc": { - "message": "You're giving someone else permission to spend this amount from your account." - }, - "simulationDetailsFiatNotAvailable": { - "message": "Not available" - }, - "simulationDetailsIncomingHeading": { - "message": "You receive" - }, - "simulationDetailsIncomingHeadingReceived": { - "message": "You've received" - }, - "simulationDetailsIncomingHeadingReceiving": { - "message": "You're receiving" - }, - "simulationDetailsNoChanges": { - "message": "No changes" - }, - "simulationDetailsOutgoingHeading": { - "message": "You send" - }, - "simulationDetailsOutgoingHeadingSending": { - "message": "You're sending" - }, - "simulationDetailsOutgoingHeadingSent": { - "message": "You sent" - }, - "simulationDetailsRevokeSetApprovalForAllDesc": { - "message": "You're removing someone else's permission to withdraw NFTs from your account." - }, - "simulationDetailsSetApprovalForAllDesc": { - "message": "You're giving permission for someone else to withdraw NFTs from your account." - }, - "simulationDetailsTitle": { - "message": "Estimated changes" - }, - "simulationDetailsTitleEnforced": { - "message": "Balance changes" - }, - "simulationDetailsTitleTooltip": { - "message": "Estimated changes are what might happen if you go through with this transaction. This is just a prediction, not a guarantee." - }, - "simulationDetailsTitleTooltipEnforced": { - "message": "Balance changes are guaranteed. If this outcome isn't possible, the transaction will be stopped." - }, - "simulationDetailsTotalFiat": { - "message": "Total = $1", - "description": "$1 is the total amount in fiat currency on one side of the transaction" - }, - "simulationDetailsTransactionReverted": { - "message": "This transaction is likely to fail" - }, - "simulationDetailsUnavailable": { - "message": "Unavailable" - }, - "simulationErrorMessageV2": { - "message": "We were not able to estimate gas. There might be an error in the contract and this transaction may fail." - }, - "simulationsSettingDescription": { - "message": "Turn this on to estimate balance changes of transactions and signatures before you confirm them. This doesn't guarantee their final outcome. $1" - }, - "simulationsSettingDescriptionV2": { - "message": "Estimates balance changes of transactions before you confirm them. This doesn't guarantee the final outcome of your transactions. $1" - }, - "simulationsSettingSubHeader": { - "message": "Estimate balance changes" - }, - "singleNetwork": { - "message": "1 network" - }, - "sites": { - "message": "Sites" - }, - "siweIssued": { - "message": "Issued" - }, - "siweNetwork": { - "message": "Network" - }, - "siweRequestId": { - "message": "Request ID" - }, - "siweResources": { - "message": "Resources" - }, - "siweURI": { - "message": "URL" - }, - "skip": { - "message": "Skip" - }, - "skipDeepLinkInterstitial": { - "message": "Don't show interstitial screen when opening deep links" - }, - "skipLinkConfirmationScreens": { - "message": "Skip link confirmation screens" - }, - "skipLinkConfirmationScreensDescription": { - "message": "When you open a link from MetaMask, we show a confirmation screen to protect you from accidentally viewing sensitive info like your accounts, balances, or transaction history. Turn this on to skip that screen for links originating from MetaMask." - }, - "slippage": { - "message": "Slippage" - }, - "slippageAuto": { - "message": "Auto" - }, - "slippageEditAriaLabel": { - "message": "Edit slippage" - }, - "slippageExplanation": { - "message": "The % change in price you're willing to allow before your transaction is canceled." - }, - "smartAccount": { - "message": "Smart account" - }, - "smartAccountLabel": { - "message": "Smart Account" - }, - "smartAccountRequestsFromDapps": { - "message": "Smart account requests from dapps" - }, - "smartAccountRequestsFromDappsDescriptionV2": { - "message": "Let dapps request smart account features for standard accounts. MetaMask will only upgrade to our audited smart account." - }, - "smartAccountUpgradeBannerDescription": { - "message": "Same address. Smarter features." - }, - "smartAccountUpgradeBannerTitle": { - "message": "Switch to smart account" - }, - "smartContractAddress": { - "message": "Smart contract address" - }, - "smartContractAddressWarning": { - "message": "The recipient address may not support direct token transfers, which could result in fund loss. Only continue if you're certain this contract can receive your transfer." - }, - "smartSwapsErrorNotEnoughFunds": { - "message": "Not enough funds for a smart swap." - }, - "smartSwapsErrorUnavailable": { - "message": "Smart Swaps are temporarily unavailable." - }, - "smartTransactionCancelled": { - "message": "Your transaction was canceled" - }, - "smartTransactionCancelledDescription": { - "message": "Your transaction couldn't be completed, so it was canceled to save you from paying unnecessary gas fees." - }, - "smartTransactionError": { - "message": "Your transaction failed" - }, - "smartTransactionErrorDescription": { - "message": "Sudden market changes can cause failures. If the problem continues, reach out to MetaMask customer support." - }, - "smartTransactionPending": { - "message": "Your transaction was submitted" - }, - "smartTransactionSuccess": { - "message": "Your transaction is complete" - }, - "smartTransactions": { - "message": "Smart Transactions" - }, - "smartTransactionsEnabledDescription": { - "message": " and MEV protection. Now on by default." - }, - "smartTransactionsEnabledLink": { - "message": "Higher success rates" - }, - "smartTransactionsEnabledTitle": { - "message": "Transactions just got smarter" - }, - "snapAccountCreated": { - "message": "Account created" - }, - "snapAccountCreatedDescription": { - "message": "Your new account is ready to use!" - }, - "snapAccountCreationFailed": { - "message": "Account creation failed" - }, - "snapAccountCreationFailedDescription": { - "message": "$1 didn't manage to create an account for you.", - "description": "$1 is the snap name" - }, - "snapAccountRedirectFinishSigningTitle": { - "message": "Finish signing" - }, - "snapAccountRedirectSiteDescription": { - "message": "Follow the instructions from $1" - }, - "snapAccountRemovalFailed": { - "message": "Account removal failed" - }, - "snapAccountRemovalFailedDescription": { - "message": "$1 didn't manage to remove this account for you.", - "description": "$1 is the snap name" - }, - "snapAccountRemoved": { - "message": "Account removed" - }, - "snapAccountRemovedDescription": { - "message": "This account will no longer be available to use in MetaMask." - }, - "snapConnectTo": { - "message": "Connect to $1", - "description": "$1 is the website URL or a Snap name. Used for Snaps pre-approved connections." - }, - "snapConnectionPermissionDescription": { - "message": "Let $1 automatically connect to $2 without your approval.", - "description": "Used for Snap pre-approved connections. $1 is the Snap name, $2 is a website URL." - }, - "snapConnectionWarning": { - "message": "$1 wants to use $2", - "description": "$2 is the snap and $1 is the dapp requesting connection to the snap." - }, - "snapDetailWebsite": { - "message": "Website" - }, - "snapHomeMenu": { - "message": "Snap Home Menu" - }, - "snapInstallRequest": { - "message": "Installing $1 gives it the following permissions.", - "description": "$1 is the snap name." - }, - "snapInstallSuccess": { - "message": "Installation complete" - }, - "snapInstallWarningCheck": { - "message": "$1 wants permission to do the following:", - "description": "Warning message used in popup displayed on snap install. $1 is the snap name." - }, - "snapInstallWarningHeading": { - "message": "Proceed with caution" - }, - "snapInstallWarningPermissionDescriptionForBip32View": { - "message": "Allow $1 to view your public keys (and addresses). This does not grant any control of accounts or assets.", - "description": "An extended description for the `snap_getBip32PublicKey` permission used for tooltip on Snap Install Warning screen (popup/modal). $1 is the snap name." - }, - "snapInstallWarningPermissionDescriptionForEntropy": { - "message": "Allow $1 Snap to manage accounts and assets on the requested network(s). These accounts are derived and backed up using your secret recovery phrase (without revealing it). With the power to derive keys, $1 can support a variety of blockchain protocols beyond Ethereum (EVMs).", - "description": "An extended description for the `snap_getBip44Entropy` and `snap_getBip44Entropy` permissions used for tooltip on Snap Install Warning screen (popup/modal). $1 is the snap name." - }, - "snapInstallWarningPermissionNameForEntropy": { - "message": "Manage $1 accounts", - "description": "Permission name used for the Permission Cell component displayed on warning popup when installing a Snap. $1 is list of account types." - }, - "snapInstallWarningPermissionNameForViewPublicKey": { - "message": "View your public key for $1", - "description": "Permission name used for the Permission Cell component displayed on warning popup when installing a Snap. $1 is list of account types." - }, - "snapInstallationErrorDescription": { - "message": "$1 couldn’t be installed.", - "description": "Error description used when snap installation fails. $1 is the snap name." - }, - "snapInstallationErrorTitle": { - "message": "Installation failed", - "description": "Error title used when snap installation fails." - }, - "snapResultError": { - "message": "Error" - }, - "snapResultSuccess": { - "message": "Success" - }, - "snapResultSuccessDescription": { - "message": "$1 is ready to use" - }, - "snapUIAccountSelectorTitle": { - "message": "Select account" - }, - "snapUIAssetSelectorTitle": { - "message": "Select an asset" - }, - "snapUpdateAlertDescription": { - "message": "Get the latest version of $1", - "description": "Description used in Snap update alert banner when snap update is available. $1 is the Snap name." - }, - "snapUpdateAvailable": { - "message": "Update available" - }, - "snapUpdateErrorDescription": { - "message": "$1 couldn’t be updated.", - "description": "Error description used when snap update fails. $1 is the snap name." - }, - "snapUpdateErrorTitle": { - "message": "Update failed", - "description": "Error title used when snap update fails." - }, - "snapUpdateRequest": { - "message": "Updating $1 gives it the following permissions.", - "description": "$1 is the Snap name." - }, - "snapUpdateSuccess": { - "message": "Update complete" - }, - "snapUrlIsBlocked": { - "message": "This Snap wants to take you to a blocked site. $1." - }, - "snaps": { - "message": "Snaps" - }, - "snapsConnected": { - "message": "Snaps connected" - }, - "snapsNoInsight": { - "message": "No insight to show" - }, - "snapsPrivacyWarningFirstMessage": { - "message": "You acknowledge that any Snap that you install is a third-party service, unless otherwise identified, as defined in the Consensys $1. Your use of third-party services is governed by separate terms and conditions set forth by the third-party service provider. Consensys does not recommend the use of any Snap by any particular person for any particular reason. You access, rely upon or use the third-party service at your own risk. Consensys disclaims all responsibility and liability for any losses on account of your use of third-party services.", - "description": "First part of a message in popup modal displayed when installing a snap for the first time. $1 is terms of use link." - }, - "snapsPrivacyWarningSecondMessage": { - "message": "Any information you share with third-party services will be collected directly by those third-party services in accordance with their privacy policies. Please refer to their privacy policies for more information.", - "description": "Second part of a message in popup modal displayed when installing a snap for the first time." - }, - "snapsPrivacyWarningThirdMessage": { - "message": "Consensys has no access to information you share with third-party services.", - "description": "Third part of a message in popup modal displayed when installing a snap for the first time." - }, - "snapsSettings": { - "message": "Snap settings" - }, - "snapsTermsOfUse": { - "message": "Terms of Use" - }, - "snapsToggle": { - "message": "A snap will only run if it is enabled" - }, - "snapsUIError": { - "message": "Contact the creators of $1 for further support.", - "description": "This is shown when the insight snap throws an error. $1 is the snap name" - }, - "solanaAccountRequested": { - "message": "This site is requesting a Solana account." - }, - "solanaAccountRequired": { - "message": "A Solana account is required to connect to this site." - }, - "someNetworks": { - "message": "$1 networks" - }, - "somethingDoesntLookRight": { - "message": "Something doesn't look right? $1", - "description": "A false positive message for users to contact support. $1 is a link to the support page." - }, - "somethingIsWrong": { - "message": "Something's gone wrong. Try reloading the page." - }, - "somethingWentWrong": { - "message": "We couldn't load this page." - }, - "sortBy": { - "message": "Sort by" - }, - "sortByAlphabetically": { - "message": "Alphabetically (A-Z)" - }, - "sortByDecliningBalance": { - "message": "Declining balance ($1 high-low)", - "description": "Indicates a descending order based on token fiat balance. $1 is the preferred currency symbol" - }, - "source": { - "message": "Source" - }, - "spamModalBlockedDescription": { - "message": "This site will be blocked for 1 minute." - }, - "spamModalBlockedTitle": { - "message": "You've temporarily blocked this site" - }, - "spamModalDescription": { - "message": "If you're being spammed with multiple requests, you can temporarily block the site." - }, - "spamModalTemporaryBlockButton": { - "message": "Temporarily block this site" - }, - "spamModalTitle": { - "message": "We've noticed multiple requests" - }, - "speed": { - "message": "Speed" - }, - "speedUp": { - "message": "Speed up" - }, - "speedUpCancellation": { - "message": "Speed up this cancellation" - }, - "speedUpTransactionDescription": { - "message": "This network fee will replace the original." - }, - "speedUpTransactionFailed": { - "message": "Speed up transaction failed" - }, - "speedUpTransactionTitle": { - "message": "Speed up transaction" - }, - "spender": { - "message": "Spender" - }, - "spenderTooltipDesc": { - "message": "This is the address that will be able to withdraw your NFTs." - }, - "spenderTooltipERC20ApproveDesc": { - "message": "This is the address that will be able to spend your tokens on your behalf." - }, - "spendingCap": { - "message": "Spending cap" - }, - "spendingCaps": { - "message": "Spending caps" - }, - "srpAlreadyImportedError": { - "message": "This Secret Recovery Phrase has already been imported." - }, - "srpDetailsDescription": { - "message": "A Secret Recovery Phrase, also called a seed phrase or mnemonic, is a set of words that lets you access and control your crypto wallet. To move your wallet to MetaMask, you need this phrase." - }, - "srpDetailsOwnsAccessListItemOne": { - "message": "Take all your money" - }, - "srpDetailsOwnsAccessListItemThree": { - "message": "Change your login information" - }, - "srpDetailsOwnsAccessListItemTwo": { - "message": "Confirm transactions" - }, - "srpDetailsOwnsAccessListTitle": { - "message": "Anyone with your Secret Recovery Phrase can:" - }, - "srpDetailsTitle": { - "message": "What’s a Secret Recovery Phrase?" - }, - "srpImportDuplicateAccountError": { - "message": "The account you are trying to import is a duplicate." - }, - "srpInputNumberOfWords": { - "message": "I have a $1-word phrase", - "description": "This is the text for each option in the dropdown where a user selects how many words their secret recovery phrase has during import. The $1 is the number of words (either 12, 15, 18, 21, or 24)." - }, - "srpListName": { - "message": "Secret Recovery Phrase $1", - "description": "$1 is the order of the Secret Recovery Phrase" - }, - "srpListNumberOfAccounts": { - "message": "$1 accounts", - "description": "$1 is the number of accounts in the list" - }, - "srpListSelectionDescription": { - "message": "The Secret Recovery Phrase your new account will be generated from" - }, - "srpListSingleOrZero": { - "message": "$1 account", - "description": "$1 is the number of accounts in the list, it is either 1 or 0" - }, - "srpListStateBackedUp": { - "message": "Reveal" - }, - "srpListStateNotBackedUp": { - "message": "Backup" - }, - "srpPasteFailedTooManyWords": { - "message": "Paste failed because it contained over 24 words. A secret recovery phrase can have a maximum of 24 words.", - "description": "Description of SRP paste error when the pasted content has too many words" - }, - "srpPasteTip": { - "message": "You can paste your entire Secret Recovery Phrase into any field.", - "description": "Our secret recovery phrase input is split into one field per word. This message explains to users that they can paste their entire secrete recovery phrase into any field, and we will handle it correctly." - }, - "srpSecurityQuizGetStarted": { - "message": "Get started" - }, - "srpSecurityQuizImgAlt": { - "message": "An eye with a keyhole in the center, and three floating password fields" - }, - "srpSecurityQuizIntroduction": { - "message": "To reveal your Secret Recovery Phrase, you need to correctly answer two questions" - }, - "srpSecurityQuizQuestionOneQuestion": { - "message": "If you lose your Secret Recovery Phrase, MetaMask..." - }, - "srpSecurityQuizQuestionOneRightAnswer": { - "message": "Can’t help you" - }, - "srpSecurityQuizQuestionOneRightAnswerDescription": { - "message": "Write it down, engrave it on metal, or keep it in multiple secret spots so you never lose it. If you lose it, it’s gone forever." - }, - "srpSecurityQuizQuestionOneRightAnswerTitle": { - "message": "Right! No one can help get your Secret Recovery Phrase back" - }, - "srpSecurityQuizQuestionOneWrongAnswer": { - "message": "Can get it back for you" - }, - "srpSecurityQuizQuestionOneWrongAnswerDescription": { - "message": "If you lose your Secret Recovery Phrase, it’s gone forever. No one can help you get it back, no matter what they might say." - }, - "srpSecurityQuizQuestionOneWrongAnswerTitle": { - "message": "Wrong! No one can help get your Secret Recovery Phrase back" - }, - "srpSecurityQuizQuestionTwoQuestion": { - "message": "If anyone, even a support agent, asks for your Secret Recovery Phrase..." - }, - "srpSecurityQuizQuestionTwoRightAnswer": { - "message": "You’re being scammed" - }, - "srpSecurityQuizQuestionTwoRightAnswerDescription": { - "message": "Anyone claiming to need your Secret Recovery Phrase is lying to you. If you share it with them, they will steal your assets." - }, - "srpSecurityQuizQuestionTwoRightAnswerTitle": { - "message": "Correct! Sharing your Secret Recovery Phrase is never a good idea" - }, - "srpSecurityQuizQuestionTwoWrongAnswer": { - "message": "You should give it to them" - }, - "srpSecurityQuizQuestionTwoWrongAnswerDescription": { - "message": "Anyone claiming to need your Secret Recovery Phrase is lying to you. If you share it with them, they will steal your assets." - }, - "srpSecurityQuizQuestionTwoWrongAnswerTitle": { - "message": "Nope! Never share your Secret Recovery Phrase with anyone, ever" - }, - "srpSecurityQuizTitle": { - "message": "Security quiz" - }, - "srpToggleShow": { - "message": "Show/Hide this word of the secret recovery phrase", - "description": "Describes a toggle that is used to show or hide a single word of the secret recovery phrase" - }, - "srpWordHidden": { - "message": "This word is hidden", - "description": "Explains that a word in the secret recovery phrase is hidden" - }, - "srpWordShown": { - "message": "This word is being shown", - "description": "Explains that a word in the secret recovery phrase is being shown" - }, - "stable": { - "message": "Stable" - }, - "stableLowercase": { - "message": "stable" - }, - "stake": { - "message": "Stake" - }, - "staked": { - "message": "Staked" - }, - "stakingDeposit": { - "message": "Staking deposit" - }, - "stakingWithdrawal": { - "message": "Staking withdrawal" - }, - "standardAccountLabel": { - "message": "Standard account" - }, - "stateCorruptionAreYouSure": { - "message": "Are you sure you want to proceed?" - }, - "stateCorruptionCopyAndRestoreBeforeRecovery": { - "message": "You can try to copy and restore your state file manually before you decide to restore your vault by following $1.", - "description": "$1 represents the `stateCorruptionTheseInstructions` localization key" - }, - "stateCorruptionCopyAndRestoreBeforeReset": { - "message": "You can try to copy and restore your state file manually before you decide to reset MetaMask by following $1.", - "description": "$1 represents the `stateCorruptionTheseInstructions` localization key" - }, - "stateCorruptionDetectedNoBackup": { - "message": "Your vault cannot be automatically recovered." - }, - "stateCorruptionDetectedWithBackup": { - "message": "Your vault can be recovered from an automated backup. Automatic recovery will delete your current settings and preferences, and restore only your vault." - }, - "stateCorruptionMetamaskDatabaseCannotBeAccessed": { - "message": "Internal error: database cannot be accessed" - }, - "stateCorruptionResetMetaMaskState": { - "message": "Reset MetaMask State" - }, - "stateCorruptionResettingDatabase": { - "message": "Resetting database…" - }, - "stateCorruptionRestoreAccountsFromBackup": { - "message": "Restore accounts" - }, - "stateCorruptionRestoringDatabase": { - "message": "Restoring database…" - }, - "stateCorruptionTheseInstructions": { - "message": "these instructions", - "description": "This is a link to instructions on how to recover your Secret Recovery Phrase manually. It is used in the `stateCorruptionCopyAndRestoreBeforeRecovery` and `stateCorruptionCopyAndRestoreBeforeReset` localization keys." - }, - "stateCorruptionTheseInstructionsLinkTitle": { - "message": "How to recover your Secret Recovery Phrase" - }, - "stateLogError": { - "message": "Error in retrieving state logs, please try again later." - }, - "stateLogFileName": { - "message": "MetaMask state logs" - }, - "stateLogs": { - "message": "State logs" - }, - "stateLogsModalDescription": { - "message": "State logs can help us debug issues you might encounter. Only send it to MetaMask for support, because state logs contain your public account address and transactions." - }, - "status": { - "message": "Status" - }, - "statusNotConnected": { - "message": "Not connected" - }, - "step1LatticeWallet": { - "message": "Connect your Lattice1" - }, - "step1LatticeWalletMsg": { - "message": "You can connect MetaMask to your Lattice1 device once it is set up and online. Unlock your device and have your Device ID ready.", - "description": "$1 represents the `hardwareWalletSupportLinkConversion` localization key" - }, - "step1LedgerWallet": { - "message": "Download Ledger app" - }, - "step1LedgerWalletMsg": { - "message": "Download, set up, and enter your password to unlock $1.", - "description": "$1 represents the `ledgerLiveApp` localization value" - }, - "step1TrezorWallet": { - "message": "Connect your Trezor" - }, - "step1TrezorWalletMsg": { - "message": "Plug your Trezor directly into your computer and unlock it. Make sure you use the correct passphrase.", - "description": "$1 represents the `hardwareWalletSupportLinkConversion` localization key" - }, - "step2LedgerWallet": { - "message": "Connect your Ledger" - }, - "step2LedgerWalletMsg": { - "message": "Plug your Ledger directly into your computer, then unlock it and open the Ethereum app.", - "description": "$1 represents the `hardwareWalletSupportLinkConversion` localization key" - }, - "stillConnectingTo": { - "message": "Still connecting to $1...", - "description": "Message shown when network connection is slow. $1 is the network name." - }, - "storageErrorAction": { - "message": "Back up Secret Recovery Phrase" - }, - "storageErrorDescriptionDefault": { - "message": "Back up your Secret Recovery Phrase and reinstall MetaMask if the problem continues." - }, - "storageErrorDescriptionNoSpace": { - "message": "Your device is out of storage. Free up space now or unsaved wallet changes may be lost." - }, - "storageErrorTitle": { - "message": "We couldn't save your data" - }, - "strong": { - "message": "Strong" - }, - "stxCancelled": { - "message": "Swap would have failed" - }, - "stxCancelledDescription": { - "message": "Your transaction would have failed and was cancelled to protect you from paying unnecessary gas fees." - }, - "stxCancelledSubDescription": { - "message": "Try your swap again. We’ll be here to protect you against similar risks next time." - }, - "stxFailure": { - "message": "Swap failed" - }, - "stxFailureDescription": { - "message": "Sudden market changes can cause failures. If the problem persists, please reach out to $1.", - "description": "This message is shown to a user if their swap fails. The $1 will be replaced by support.metamask.io" - }, - "stxOptInDescriptionV2": { - "message": "Turn on Smart Transactions for more reliable and secure transactions. $1" - }, - "stxPendingPrivatelySubmittingSwap": { - "message": "Privately submitting your Swap..." - }, - "stxPendingPubliclySubmittingSwap": { - "message": "Publicly submitting your Swap..." - }, - "stxSuccess": { - "message": "Swap complete!" - }, - "stxSuccessDescription": { - "message": "Your $1 is now available.", - "description": "$1 is a token symbol, e.g. ETH" - }, - "stxSwapCompleteIn": { - "message": "Swap will complete in <", - "description": "'<' means 'less than', e.g. Swap will complete in < 2:59" - }, - "stxTryingToCancel": { - "message": "Trying to cancel your transaction..." - }, - "stxUnknown": { - "message": "Status unknown" - }, - "stxUnknownDescription": { - "message": "A transaction has been successful but we’re unsure what it is. This may be due to submitting another transaction while this swap was processing." - }, - "stxUserCancelled": { - "message": "Swap cancelled" - }, - "stxUserCancelledDescription": { - "message": "Your transaction has been cancelled and you did not pay any unnecessary gas fees." - }, - "submit": { - "message": "Submit" - }, - "submitted": { - "message": "Submitted" - }, - "suggestedBySnap": { - "message": "Suggested by $1", - "description": "$1 is the snap name" - }, - "suggestedCurrencySymbol": { - "message": "Suggested currency symbol:" - }, - "suggestedTokenName": { - "message": "Suggested name:" - }, - "summary": { - "message": "Summary" - }, - "supplied": { - "message": "Supplied" - }, - "support": { - "message": "Support" - }, - "supportCenter": { - "message": "Visit our support center" - }, - "supportMultiRpcInformation": { - "message": "We now support multiple RPCs for a single network. Your most recent RPC has been selected as the default one to resolve conflicting information." - }, - "supportedLanguagesSectionTitle": { - "message": "Supported languages", - "description": "Section heading on the language settings screen for locales actively maintained by MetaMask." - }, - "swap": { - "message": "Swap" - }, - "swapAdjustSlippage": { - "message": "Adjust slippage" - }, - "swapAggregator": { - "message": "Aggregator" - }, - "swapAllowSwappingOf": { - "message": "Allow swapping of $1", - "description": "Shows a user that they need to allow a token for swapping on their hardware wallet" - }, - "swapAmountReceived": { - "message": "Guaranteed amount" - }, - "swapAmountReceivedInfo": { - "message": "This is the minimum amount you will receive. You may receive more depending on slippage." - }, - "swapAndSend": { - "message": "Swap & Send" - }, - "swapApproval": { - "message": "Approve $1 for swaps", - "description": "Used in the transaction display list to describe a transaction that is an approve call on a token that is to be swapped.. $1 is the symbol of a token that has been approved." - }, - "swapAreYouStillThere": { - "message": "Are you still there?" - }, - "swapAreYouStillThereDescription": { - "message": "We’re ready to show you the latest quotes when you want to continue" - }, - "swapConfirmWithHwWallet": { - "message": "Confirm with your hardware wallet" - }, - "swapContractDataDisabledErrorDescription": { - "message": "In the Ethereum app on your Ledger, go to \"Settings\" and allow contract data. Then, try your swap again." - }, - "swapContractDataDisabledErrorTitle": { - "message": "Contract data is not enabled on your Ledger" - }, - "swapCustom": { - "message": "custom" - }, - "swapDecentralizedExchange": { - "message": "Decentralized exchange" - }, - "swapDetailsTitle": { - "message": "Swap details", - "description": "Title for the modal showing details about a swap transaction." - }, - "swapDirectContract": { - "message": "Direct contract" - }, - "swapEditLimit": { - "message": "Edit limit" - }, - "swapEnableDescription": { - "message": "This is required and gives MetaMask permission to swap your $1.", - "description": "Gives the user info about the required approval transaction for swaps. $1 will be the symbol of a token being approved for swaps." - }, - "swapEnableTokenForSwapping": { - "message": "This will $1 for swapping", - "description": "$1 is for the 'enableToken' key, e.g. 'enable ETH'" - }, - "swapEstimatedNetworkFees": { - "message": "Estimated network fees" - }, - "swapEstimatedNetworkFeesInfo": { - "message": "This is an estimate of the network fee that will be used to complete your swap. The actual amount may change according to network conditions." - }, - "swapFailedErrorDescriptionWithSupportLink": { - "message": "Transaction failures happen and we are here to help. If this issue persists, you can reach our customer support at $1 for further assistance.", - "description": "This message is shown to a user if their swap fails. The $1 will be replaced by support.metamask.io" - }, - "swapFailedErrorTitle": { - "message": "Swap failed" - }, - "swapFetchingQuoteNofN": { - "message": "Fetching quote $1 of $2", - "description": "A count of possible quotes shown to the user while they are waiting for quotes to be fetched. $1 is the number of quotes already loaded, and $2 is the total number of resources that we check for quotes. Keep in mind that not all resources will have a quote for a particular swap." - }, - "swapFetchingQuotes": { - "message": "Fetching quotes..." - }, - "swapFetchingQuotesErrorDescription": { - "message": "Hmmm... something went wrong. Try again, or if errors persist, contact customer support." - }, - "swapFetchingQuotesErrorTitle": { - "message": "Error fetching quotes" - }, - "swapFromTo": { - "message": "The swap of $1 to $2", - "description": "Tells a user that they need to confirm on their hardware wallet a swap of 2 tokens. $1 is a source token and $2 is a destination token" - }, - "swapGasFeesExplanation": { - "message": "MetaMask doesn't make money from gas fees. These fees are estimates and can change based on how busy the network is and how complex a transaction is. Learn more $1.", - "description": "$1 is a link (text in link can be found at 'swapGasFeesSummaryLinkText')" - }, - "swapGasFeesExplanationLinkText": { - "message": "here", - "description": "Text for link in swapGasFeesExplanation" - }, - "swapGasFeesIncluded": { - "message": " Included" - }, - "swapGasFeesSplit": { - "message": "Gas fees on the previous screen are split between these two transactions." - }, - "swapGasFeesSponsored": { - "message": "Paid by MetaMask" - }, - "swapGasFeesSponsoredExplanation": { - "message": "This network fee is paid by MetaMask, so you can transact without $1 in your account." - }, - "swapIncludesMMFee": { - "message": "Includes a $1% MetaMask fee.", - "description": "Provides information about the fee that MetaMask takes for swaps. $1 is a decimal number." - }, - "swapLearnMore": { - "message": "Learn more about Swaps" - }, - "swapLiquiditySourceInfo": { - "message": "We search multiple liquidity sources (exchanges, aggregators and professional market makers) to compare exchange rates and network fees." - }, - "swapMaxSlippage": { - "message": "Max slippage" - }, - "swapMetaMaskFee": { - "message": "MetaMask fee" - }, - "swapMetaMaskFeeDescription": { - "message": "The fee of $1% is automatically factored into this quote. You pay it in exchange for a license to use MetaMask's liquidity provider information aggregation software.", - "description": "Provides information about the fee that MetaMask takes for swaps. $1 is a decimal number." - }, - "swapNQuotesWithDot": { - "message": "$1 quotes.", - "description": "$1 is the number of quotes that the user can select from when opening the list of quotes on the 'view quote' screen" - }, - "swapOnceTransactionHasProcess": { - "message": "Your $1 will be added to your account once this transaction has processed.", - "description": "This message communicates the token that is being transferred. It is shown on the awaiting swap screen. The $1 will be a token symbol." - }, - "swapProcessing": { - "message": "Processing" - }, - "swapQuoteDetails": { - "message": "Quote details" - }, - "swapQuoteSource": { - "message": "Quote source" - }, - "swapQuotesExpiredErrorDescription": { - "message": "Please request new quotes to get the latest rates." - }, - "swapQuotesExpiredErrorTitle": { - "message": "Quotes timeout" - }, - "swapQuotesNotAvailableDescription": { - "message": "This trade route isn't available right now. Try changing the amount, network, or token and we'll find the best option." - }, - "swapQuotesNotAvailableErrorDescription": { - "message": "Try adjusting the amount or slippage settings and try again." - }, - "swapQuotesNotAvailableErrorTitle": { - "message": "No quotes available" - }, - "swapRate": { - "message": "Rate" - }, - "swapReceiving": { - "message": "Receiving" - }, - "swapReceivingInfoTooltip": { - "message": "This is an estimate. The exact amount depends on slippage." - }, - "swapRequestForQuotation": { - "message": "Request for quotation" - }, - "swapSelect": { - "message": "Select" - }, - "swapSelectAQuote": { - "message": "Select a quote" - }, - "swapSelectAToken": { - "message": "Select token" - }, - "swapSelectQuotePopoverDescription": { - "message": "Below are all the quotes gathered from multiple liquidity sources." - }, - "swapSelectToken": { - "message": "Select token" - }, - "swapShowLatestQuotes": { - "message": "Show latest quotes" - }, - "swapSlippageAutoDescription": { - "message": "Auto" - }, - "swapSlippageHighDescription": { - "message": "The slippage entered ($1%) is considered very high and may result in a bad rate", - "description": "$1 is the amount of % for slippage" - }, - "swapSlippageHighTitle": { - "message": "High slippage" - }, - "swapSlippageLowDescription": { - "message": "A value this low ($1%) may result in a failed swap", - "description": "$1 is the amount of % for slippage" - }, - "swapSlippageLowTitle": { - "message": "Low slippage" - }, - "swapSlippageNegativeDescription": { - "message": "Slippage must be greater or equal to zero" - }, - "swapSlippageNegativeTitle": { - "message": "Increase slippage to continue" - }, - "swapSlippageOverLimitDescription": { - "message": "Slippage tolerance must be 15% or less. Anything higher will result in a bad rate." - }, - "swapSlippageOverLimitTitle": { - "message": "Very high slippage" - }, - "swapSlippagePercent": { - "message": "$1%", - "description": "$1 is the amount of % for slippage" - }, - "swapSlippageTooltip": { - "message": "If the price changes between the time your order is placed and confirmed it’s called “slippage”. Your swap will automatically cancel if slippage exceeds your “slippage tolerance” setting." - }, - "swapSlippageZeroDescription": { - "message": "There are fewer zero-slippage quote providers which will result in a less competitive quote." - }, - "swapSlippageZeroTitle": { - "message": "Sourcing zero-slippage providers" - }, - "swapSource": { - "message": "Liquidity source" - }, - "swapSuggestedGasSettingToolTipMessage": { - "message": "Swaps are complex and time sensitive transactions. We recommend this gas fee for a good balance between cost and confidence of a successful Swap." - }, - "swapToConfirmWithHwWallet": { - "message": "to confirm with your hardware wallet" - }, - "swapTokenAvailable": { - "message": "Your $1 has been added to your account.", - "description": "This message is shown after a swap is successful and communicates the exact amount of tokens the user has received for a swap. The $1 is a decimal number of tokens followed by the token symbol." - }, - "swapTokenNotAvailable": { - "message": "Token is not available to swap in this region" - }, - "swapTokenToToken": { - "message": "Swap $1 to $2", - "description": "Used in the transaction display list to describe a swap. $1 and $2 are the symbols of tokens in involved in a swap." - }, - "swapTokens": { - "message": "Swap tokens" - }, - "swapTransactionComplete": { - "message": "Transaction complete" - }, - "swapTwoTransactions": { - "message": "2 transactions" - }, - "swapUnknown": { - "message": "Unknown" - }, - "swapValidationInsufficientGasMessage": { - "message": "You don't have enough $1 to pay the gas fee for this swap. Enter a smaller amount or buy more $1." - }, - "swapZeroSlippage": { - "message": "0% Slippage" - }, - "swapsMaxSlippage": { - "message": "Slippage tolerance" - }, - "swapsViewInActivity": { - "message": "View in activity" - }, - "switch": { - "message": "Switch" - }, - "switchBack": { - "message": "Switch back" - }, - "switchBackToPopup": { - "message": "Switch back to popup" - }, - "switchEthereumChainConfirmationDescription": { - "message": "This will switch the selected network within MetaMask to a previously added network:" - }, - "switchEthereumChainConfirmationTitle": { - "message": "Allow this site to switch the network?" - }, - "switchNetwork": { - "message": "Switch network" - }, - "switchToMetaMaskDefaultRpc": { - "message": "Switch to MetaMask default RPC", - "description": "Button text to switch the default RPC endpoint to MetaMask default RPC" - }, - "switchToPopup": { - "message": "Switch to popup" - }, - "switchToSidePanel": { - "message": "Switch to side panel" - }, - "switchToThisAccount": { - "message": "Switch to this account" - }, - "switchingNetworksCancelsPendingConfirmations": { - "message": "Switching networks will cancel all pending confirmations" - }, - "symbol": { - "message": "Symbol" - }, - "symbolBetweenZeroTwelve": { - "message": "Symbol must be 11 characters or fewer." - }, - "syncing": { - "message": "Syncing..." - }, - "tapToReveal": { - "message": "Tap to reveal" - }, - "tapToRevealNote": { - "message": "Make sure no one is watching your screen." - }, - "tenPercentIncreased": { - "message": "10% increase" - }, - "terms": { - "message": "Terms of Use" - }, - "termsOfService": { - "message": "Terms of service" - }, - "termsOfUseAgree": { - "message": "Agree" - }, - "termsOfUseAgreeText": { - "message": "I agree to the Terms of Use, which apply to my use of MetaMask and all of its features." - }, - "termsOfUseFooterText": { - "message": "Please scroll to read all sections" - }, - "termsOfUseTitle": { - "message": "Review our Terms of Use" - }, - "testNetworks": { - "message": "Test networks" - }, - "testnets": { - "message": "Testnets" - }, - "theme": { - "message": "Theme" - }, - "thirdPartyApis": { - "message": "Third-party APIs" - }, - "thirdPartyApisDescription": { - "message": "Choose how you share your IP address or Ethereum address with third-party APIs. Changes will impact your MetaMask experience." - }, - "thirdPartySoftware": { - "message": "Third-party software notice", - "description": "Title of a popup modal displayed when installing a snap for the first time." - }, - "thisContactWillBeDeleted": { - "message": "This contact will be deleted." - }, - "time": { - "message": "Time" - }, - "to": { - "message": "To" - }, - "toggleDecodeDescription": { - "message": "We use 4byte.directory and Sourcify services to decode and display more readable transaction data. This helps you understand the outcome of pending and past transactions, but can result in your IP address being shared." - }, - "token": { - "message": "Token" - }, - "tokenAddress": { - "message": "Token address" - }, - "tokenAllowance": { - "message": "Token allowance" - }, - "tokenAlreadyAdded": { - "message": "Token has already been added." - }, - "tokenContractAddress": { - "message": "Token contract address" - }, - "tokenContractError": { - "message": "This address is a token contract address. If you send tokens to this address, you will lose them." - }, - "tokenContractWarning": { - "message": "Token contract warning" - }, - "tokenCount": { - "message": "token", - "description": "is number of tokens used for token transfers (singular form)" - }, - "tokenDecimal": { - "message": "Token decimal" - }, - "tokenDecimalFetchFailed": { - "message": "Token decimal required. Find it on: $1" - }, - "tokenDetails": { - "message": "Token details" - }, - "tokenId": { - "message": "Token ID" - }, - "tokenList": { - "message": "Token lists" - }, - "tokenMarketplace": { - "message": "Token marketplace" - }, - "tokenPermissionCount": { - "message": "$1 token permission", - "description": "$1 is the count of token permissions (singular form)" - }, - "tokenPermissionsCount": { - "message": "$1 token permissions", - "description": "$1 is the count of token permissions (plural form)" - }, - "tokenStandard": { - "message": "Token standard" - }, - "tokenStock": { - "message": "Stock" - }, - "tokenStream": { - "message": "Token stream" - }, - "tokenSubscription": { - "message": "Token subscription" - }, - "tokenSymbol": { - "message": "Token symbol" - }, - "tokenTransfer": { - "message": "Token transfer" - }, - "tokens": { - "message": "Tokens" - }, - "tokensCount": { - "message": "tokens", - "description": "is the count of tokens used for token transfers (plural form)" - }, - "tokensInCollection": { - "message": "Tokens in collection" - }, - "tooltipSatusConnectedUpperCase": { - "message": "Connected" - }, - "total": { - "message": "Total" - }, - "totalVolume": { - "message": "Total volume" - }, - "transaction": { - "message": "transaction" - }, - "transactionConfirmed": { - "message": "Transaction confirmed" - }, - "transactionDataFunction": { - "message": "Function" - }, - "transactionDetailGasHeading": { - "message": "Estimated gas fee" - }, - "transactionError": { - "message": "Transaction error. Exception thrown in contract code." - }, - "transactionErrorNoContract": { - "message": "Trying to call a function on a non-contract address." - }, - "transactionFailed": { - "message": "Transaction failed" - }, - "transactionFee": { - "message": "Transaction fee" - }, - "transactionFlowNetwork": { - "message": "Network" - }, - "transactionHistoryBaseFee": { - "message": "Base fee (GWEI)" - }, - "transactionHistoryL1GasLabel": { - "message": "Total L1 gas fee" - }, - "transactionHistoryL2GasLimitLabel": { - "message": "L2 gas limit" - }, - "transactionHistoryL2GasPriceLabel": { - "message": "L2 gas price" - }, - "transactionHistoryMaxFeePerGas": { - "message": "Max fee per gas" - }, - "transactionHistoryPriorityFee": { - "message": "Priority fee (GWEI)" - }, - "transactionHistoryTotalGasFee": { - "message": "Total gas fee" - }, - "transactionIdLabel": { - "message": "Transaction ID", - "description": "Label for the source transaction ID field." - }, - "transactionIncludesTypes": { - "message": "This transaction includes: $1." - }, - "transactionSettings": { - "message": "Transaction settings" - }, - "transactionShield": { - "message": "Transaction Shield" - }, - "transactionSubmitted": { - "message": "Transaction submitted" - }, - "transactionTotalGasFee": { - "message": "Total gas fee", - "description": "Label for the total gas fee incurred in the transaction." - }, - "transactions": { - "message": "Transactions" - }, - "transactionsAndAssets": { - "message": "Transactions and assets" - }, - "transfer": { - "message": "Transfer" - }, - "transferCrypto": { - "message": "Transfer crypto" - }, - "transferFrom": { - "message": "Transfer from" - }, - "transferRequest": { - "message": "Transfer request" - }, - "trezor": { - "message": "Trezor", - "description": "Hardware device name" - }, - "tronBandwidth": { - "message": "Bandwidth" - }, - "tronBandwidthCoverageDescriptionPlural": { - "message": "Covers ~$1 TRX transfers", - "description": "$1 is the number of TRX transfers" - }, - "tronBandwidthCoverageDescriptionSingular": { - "message": "Covers 1 TRX transfer" - }, - "tronDailyResources": { - "message": "Daily resource" - }, - "tronDailyResourcesDescription": { - "message": "This is your daily allowance based on your staked TRX. You get $1 bandwidth for free daily.", - "description": "$1 is the maximum bandwidth value" - }, - "tronEnergy": { - "message": "Energy" - }, - "tronEnergyCoverageDescriptionPlural": { - "message": "Covers ~$1 USDT transfers", - "description": "$1 is the number of USDT transfers" - }, - "tronEnergyCoverageDescriptionSingular": { - "message": "Covers 1 USDT transfer" - }, - "troubleConnectingToLedgerU2FOnFirefox": { - "message": "We're having trouble connecting your Ledger. $1", - "description": "$1 is a link to the wallet connection guide;" - }, - "troubleConnectingToLedgerU2FOnFirefox2": { - "message": "Review our hardware wallet connection guide and try again.", - "description": "$1 of the ledger wallet connection guide" - }, - "troubleConnectingToLedgerU2FOnFirefoxLedgerSolution": { - "message": "If you're on the latest version of Firefox, you might be experiencing an issue related to Firefox dropping U2F support. Learn how to fix this issue $1.", - "description": "It is a link to the ledger website for the workaround." - }, - "troubleConnectingToLedgerU2FOnFirefoxLedgerSolution2": { - "message": "here", - "description": "Second part of the error message; It is a link to the ledger website for the workaround." - }, - "troubleConnectingToWallet": { - "message": "We had trouble connecting to your $1, try reviewing $2 and try again.", - "description": "$1 is the wallet device name; $2 is a link to wallet connection guide" - }, - "troubleStartingMessage": { - "message": "This error could be intermittent, so try restarting the extension." - }, - "troubleStartingTitle": { - "message": "MetaMask had trouble starting." - }, - "trustSignalBlockDescription": { - "message": "If you connect to this site, you could lose all your assets." - }, - "trustSignalBlockTitle": { - "message": "Malicious site detected" - }, - "trustSignalContinueAnyway": { - "message": "Connect Anyway" - }, - "tryAgain": { - "message": "Try again" - }, - "turnOff": { - "message": "Turn off" - }, - "turnOffMetamaskNotificationsError": { - "message": "There was an error in disabling the notifications. Please try again later." - }, - "turnOffPasskey": { - "message": "Turn off $1", - "description": "Action label for turning off passkey unlock. $1 is the OS-specific auth-method noun (Biometrics / Touch ID / Windows Hello)." - }, - "turnOffPasskeyFailed": { - "message": "We couldn't turn off $1. Try again.", - "description": "Error toast when turning off passkey unlock fails. $1 is the OS-specific auth-method noun (Biometrics / Touch ID / Windows Hello)." - }, - "turnOn": { - "message": "Turn on" - }, - "turnOnMetamaskNotifications": { - "message": "Turn on notifications" - }, - "turnOnMetamaskNotificationsButton": { - "message": "Turn on" - }, - "turnOnMetamaskNotificationsError": { - "message": "There was an error in creating the notifications. Please try again later." - }, - "turnOnMetamaskNotificationsMessageFirst": { - "message": "Stay in the loop on what's happening in your wallet with notifications." - }, - "turnOnMetamaskNotificationsMessagePrivacyBold": { - "message": "notifications settings." - }, - "turnOnMetamaskNotificationsMessagePrivacyLink": { - "message": "Learn how we protect your privacy while using this feature." - }, - "turnOnMetamaskNotificationsMessageSecond": { - "message": "To use wallet notifications, we use a profile to sync some settings across your devices. $1" - }, - "turnOnMetamaskNotificationsMessageThird": { - "message": "You can turn off notifications at any time in the $1" - }, - "turnOnTokenDetection": { - "message": "Turn on enhanced token detection" - }, - "tutorial": { - "message": "Tutorial" - }, - "txAlertTitle": { - "message": "This transaction will be reverted" - }, - "typeYourSRP": { - "message": "Enter your Secret Recovery Phrase" - }, - "u2f": { - "message": "U2F", - "description": "A name on an API for the browser to interact with devices that support the U2F protocol. On some browsers we use it to connect MetaMask to Ledger devices." - }, - "unableToConnectTo": { - "message": "Unable to connect to $1.", - "description": "Message shown when network connection fails. $1 is the network name." - }, - "unableToDownload": { - "message": "Unable to download" - }, - "unapproved": { - "message": "Unapproved" - }, - "unavailable": { - "message": "Unavailable" - }, - "unexpectedBehavior": { - "message": "This behavior is unexpected and should be reported as a bug, even if your accounts are restored." - }, - "unifiedSwapAllowSwappingOf": { - "message": "Allow exact access to $1 $2 on $3 for swapping" - }, - "unifiedSwapFromTo": { - "message": "Swap $1 $2 to $3", - "description": "Tells a user that they need to confirm on their hardware wallet a swap of 2 tokens. $1 is a source token and $2 is a destination token" - }, - "units": { - "message": "units" - }, - "unknown": { - "message": "Unknown" - }, - "unknownCollection": { - "message": "Unnamed collection" - }, - "unknownNetworkForGatorPermissions": { - "message": "Unknown network", - "description": "Displayed on places like Gator permissions when regular name is not available." - }, - "unknownNetworkForKeyEntropy": { - "message": "Unknown network", - "description": "Displayed on places like Snap install warning when regular name is not available." - }, - "unknownQrCode": { - "message": "Error: We couldn't identify that QR code" - }, - "unlimited": { - "message": "Unlimited" - }, - "unlock": { - "message": "Unlock" - }, - "unlockPageIncorrectPassword": { - "message": "Password is incorrect. Please try again." - }, - "unlockPageTooManyFailedAttempts": { - "message": "Too many attempts. Try again in " - }, - "unlockToReveal": { - "message": "Unlock to reveal", - "description": "Label used for Private Keys row on multichain account details page." - }, - "unlockWithPasskey": { - "message": "Unlock with $1", - "description": "Action label / aria-label for the passkey unlock button. $1 is the OS-specific auth-method noun (Biometrics / Touch ID / Windows Hello)." - }, - "unpin": { - "message": "Unpin" - }, - "unrecognizedChain": { - "message": "This custom network is not recognized", - "description": "$1 is a clickable link with text defined by the 'unrecognizedChanLinkText' key. The link will open to instructions for users to validate custom network details." - }, - "unsendableAsset": { - "message": "Sending NFT (ERC-721) tokens is not currently supported", - "description": "This is an error message we show the user if they attempt to send an NFT asset type, for which currently don't support sending" - }, - "unstableTokenPriceDescription": { - "message": "The price of this token in USD is highly volatile, indicating a high risk of losing significant value by interacting with it." - }, - "unstableTokenPriceTitle": { - "message": "Unstable token price" - }, - "update": { - "message": "Update" - }, - "updateEthereumChainConfirmationDescription": { - "message": "This site is requesting to update your default network URL. You can edit defaults and network information any time." - }, - "updateInformation": { - "message": "We've made your wallet safer, smoother, and added some new features. Update now to stay protected and use our latest improvements." - }, - "updateNetworkConfirmationTitle": { - "message": "Update $1", - "description": "$1 represents network name" - }, - "updateOrEditNetworkInformations": { - "message": "Update your information or" - }, - "updateRequest": { - "message": "Update request" - }, - "updateRpc": { - "message": "Update RPC", - "description": "Button text to update RPC endpoint" - }, - "updateToTheLatestVersion": { - "message": "Update to the latest version" - }, - "updatedRpcForNetworks": { - "message": "Network RPCs Updated" - }, - "updatedToMetaMaskDefault": { - "message": "Updated to MetaMask default", - "description": "Toast message confirming that the default RPC endpoint has been updated to MetaMask default" - }, - "uploadDropFile": { - "message": "Drop your file here" - }, - "uploadFile": { - "message": "Upload file" - }, - "urlErrorMsg": { - "message": "URLs require the appropriate HTTP/HTTPS prefix." - }, - "urlUnknown": { - "message": "URL unknown" - }, - "use4ByteResolution": { - "message": "Decode smart contracts" - }, - "useDifferentLoginMethod": { - "message": "Use a different login method" - }, - "useMultiAccountBalanceChecker": { - "message": "Batch account balance requests" - }, - "useMultiAccountBalanceCheckerSettingDescription": { - "message": "Get faster balance updates by batching account balance requests. This lets us fetch your account balances together, so you get quicker updates for an improved experience. When this feature is off, third parties may be less likely to associate your accounts with each other." - }, - "useMultiAccountBalanceCheckerSettingDescriptionV2": { - "message": "Sends balance updates for all your accounts at once. Allows for a faster and overall better experience managing multiple accounts." - }, - "useNftDetection": { - "message": "Autodetect NFTs" - }, - "useNftDetectionDescription": { - "message": "Displays all NFTs, including fake ones airdropped by scammers." - }, - "usePassword": { - "message": "Use password" - }, - "usePhishingDetection": { - "message": "Use phishing detection" - }, - "usePhishingDetectionDescription": { - "message": "Display a warning for phishing domains targeting Ethereum users" - }, - "useSafeChainsListValidation": { - "message": "Network details check" - }, - "useSafeChainsListValidationDescriptionV2": { - "message": "Reduces your chances of connecting to a malicious or incorrect network. MetaMask uses $1 to show accurate and standardized network details." - }, - "useSafeChainsListValidationWebsite": { - "message": "chainid.network", - "description": "useSafeChainsListValidationWebsite is separated from the rest of the text so that we can bold the third party service name in the middle of them" - }, - "useTokenDetectionPrivacyDesc": { - "message": "Automatically displaying tokens sent to your account involves communication with third party servers to fetch token’s images. Those serves will have access to your IP address." - }, - "usedByClients": { - "message": "Used by a variety of different clients" - }, - "userOpContractDeployError": { - "message": "Contract deployment from a smart account is not supported" - }, - "value": { - "message": "Value" - }, - "version": { - "message": "Version" - }, - "view": { - "message": "View" - }, - "viewActivity": { - "message": "View activity" - }, - "viewAddressOnExplorer": { - "message": "View on $1", - "description": "$1 is the block explorer name" - }, - "viewDetails": { - "message": "View details" - }, - "viewOnBlockExplorer": { - "message": "View on block explorer" - }, - "viewOnCustomBlockExplorer": { - "message": "View $1 at $2", - "description": "$1 is the action type. e.g (Account, Transaction, Swap) and $2 is the Custom Block Explorer URL" - }, - "viewOnEtherscan": { - "message": "View $1 on Etherscan", - "description": "$1 is the action type. e.g (Account, Transaction, Swap)" - }, - "viewOnExplorer": { - "message": "View on explorer" - }, - "viewOnOpensea": { - "message": "View on Opensea" - }, - "viewTokenDetails": { - "message": "View token details" - }, - "viewTransaction": { - "message": "View transaction" - }, - "viewinExplorer": { - "message": "View $1 in explorer", - "description": "$1 is the action type. e.g (Account, Transaction, Swap)" - }, - "visitSite": { - "message": "Visit site" - }, - "visitSupportDataConsentModalAccept": { - "message": "Confirm" - }, - "visitSupportDataConsentModalDescription": { - "message": "Do you want to share your MetaMask Identifier and app version with our Support Center? This can help us better solve your problem, but is optional." - }, - "visitSupportDataConsentModalReject": { - "message": "Don’t share" - }, - "visitSupportDataConsentModalTitle": { - "message": "Share device details with support" - }, - "visitWebSite": { - "message": "Visit our website" - }, - "volume": { - "message": "Volume" - }, - "wallet": { - "message": "Wallet" - }, - "walletConnectionGuide": { - "message": "our hardware wallet connection guide" - }, - "walletName": { - "message": "Wallet name" - }, - "walletReadyLearn": { - "message": "$1 you can keep this phrase safe so you never lose access to your money.", - "description": "$1 is the link to Learn how" - }, - "walletReadyLoseSrp": { - "message": "If you lose your Secret Recovery Phrase, you won’t be able to use your wallet." - }, - "walletReadyLoseSrpFromReminder": { - "message": "This Secret Recovery Phrase can help you regain access if you ever forget your password or lose access to your login." - }, - "wantToAddThisNetwork": { - "message": "Want to add this network?" - }, - "wantsToAddThisAsset": { - "message": "This allows the following asset to be added to your wallet." - }, - "warning": { - "message": "Warning" - }, - "warningFromSnap": { - "message": "Warning from $1", - "description": "$1 represents the name of the snap" - }, - "watchEthereumAccountsDescription": { - "message": "Turning this option on will give you the ability to watch Ethereum accounts via a public address or ENS name. For feedback on this Beta feature please complete this $1.", - "description": "$1 is the link to a product feedback form" - }, - "watchEthereumAccountsToggle": { - "message": "Watch Ethereum Accounts (Beta)" - }, - "watchOutMessage": { - "message": "Beware of $1.", - "description": "$1 is a link with text that is provided by the 'securityMessageLinkForNetworks' key" - }, - "web3": { - "message": "Web3" - }, - "web3ShimUsageNotification": { - "message": "We noticed that the current website tried to use the removed window.web3 API. If the site appears to be broken, please click $1 for more information.", - "description": "$1 is a clickable link." - }, - "webhid": { - "message": "WebHID", - "description": "Refers to a interface for connecting external devices to the browser. Used for connecting ledger to the browser. Read more here https://developer.mozilla.org/en-US/docs/Web/API/WebHID_API" - }, - "websites": { - "message": "websites", - "description": "Used in the 'permission_rpc' message." - }, - "weekly": { - "message": "weekly" - }, - "welcomeBack": { - "message": "Welcome back" - }, - "whatsThis": { - "message": "What's this?" - }, - "willApproveAmountForBridging": { - "message": "Approves token for bridge." - }, - "willApproveAmountForSwapping": { - "message": "Approves token for swap." - }, - "withdrawTo": { - "message": "Receive", - "description": "Label for pay with row in withdrawal flows showing the destination token" - }, - "withdrawing": { - "message": "Withdrawing" - }, - "wrongNetworkName": { - "message": "According to our records, the network name may not correctly match this chain ID." - }, - "wrongPassword": { - "message": "Wrong password", - "description": "Displayed when the user enters an incorrect password" - }, - "year": { - "message": "year" - }, - "yes": { - "message": "Yes" - }, - "you": { - "message": "You" - }, - "youApprove": { - "message": "You approve" - }, - "youNeedToAllowCameraAccess": { - "message": "You need to allow camera access to use this feature." - }, - "youReceived": { - "message": "You received", - "description": "Label indicating the amount and asset the user received." - }, - "youSent": { - "message": "You sent", - "description": "Label indicating the amount and asset the user sent." - }, - "youllReceive": { - "message": "You'll receive", - "description": "Row label on the Perps Withdraw confirmation showing the net receive amount after fees" - }, - "yourActivity": { - "message": "Your activity" - }, - "yourBalance": { - "message": "Your balance" - }, - "yourNFTmayBeAtRisk": { - "message": "Your NFT may be at risk" - }, - "yourWalletIsReady": { - "message": "Your wallet is ready!" - }, - "yourWalletIsReadyFromReminder": { - "message": "Keep your Secret Recovery Phrase safe!" - } - }, - "en": { - "CSS_loadingTakingTooLongActionText": { - "message": "Relaunch MetaMask if the problem persists.", - "description": "Second line of the message that is shown when the initial loading of the MetaMask UI takes a very long time." - }, - "CSS_loadingTakingTooLongMessageText": { - "message": "Loading is taking longer than usual.", - "description": "First line of the message that is shown when the initial loading of the MetaMask UI takes a very long time." - }, - "QRHardwareInvalidTransactionTitle": { - "message": "Error" - }, - "QRHardwareMismatchedSignId": { - "message": "Incongruent transaction data. Please check the transaction details." - }, - "QRHardwarePubkeyAccountOutOfRange": { - "message": "No more accounts. If you would like to access another account unlisted below, please reconnect your hardware wallet and select it." - }, - "QRHardwareScanInstructions": { - "message": "Place the QR code in front of your camera. The screen is blurred, but it will not affect the reading." - }, - "QRHardwareSignRequestCancel": { - "message": "Reject" - }, - "QRHardwareSignRequestDescription": { - "message": "After you’ve signed with your wallet, click on 'Get Signature' to receive the signature" - }, - "QRHardwareSignRequestGetSignature": { - "message": "Get signature" - }, - "QRHardwareSignRequestSubtitle": { - "message": "Scan the QR code with your wallet" - }, - "QRHardwareSignRequestTitle": { - "message": "Request signature" - }, - "QRHardwareUnknownQRCodeTitle": { - "message": "Error" - }, - "QRHardwareUnknownWalletQRCode": { - "message": "Invalid QR code. Please scan the sync QR code of the hardware wallet." - }, - "QRHardwareWalletImporterTitle": { - "message": "Scan QR code" - }, - "QRHardwareWalletSteps1Description": { - "message": "You can choose from a list of official QR-code supporting partners below." - }, - "QRHardwareWalletSteps1Title": { - "message": "Connect your QR hardware wallet" - }, - "QRHardwareWalletSteps2Description": { - "message": "Ngrave Zero" - }, - "SrpListHideAccounts": { - "message": "Hide $1 accounts", - "description": "$1 is the number of accounts" - }, - "SrpListHideSingleAccount": { - "message": "Hide 1 account" - }, - "SrpListShowAccounts": { - "message": "Show $1 accounts", - "description": "$1 is the number of accounts" - }, - "SrpListShowSingleAccount": { - "message": "Show 1 account" - }, - "about": { - "message": "About" - }, - "aboutMetaMask": { - "message": "About MetaMask" - }, - "accept": { - "message": "Accept" - }, - "acceptAndClose": { - "message": "Accept and close" - }, - "acceptTermsOfUse": { - "message": "I have read and agree to the $1", - "description": "$1 is the `terms` message" - }, - "accessingYourCamera": { - "message": "Accessing your camera..." - }, - "account": { - "message": "Account" - }, - "accountActivity": { - "message": "Account activity" - }, - "accountActivityText": { - "message": "Select the accounts you want to be notified about:" - }, - "accountAlreadyExistsLogin": { - "message": "Log in" - }, - "accountAlreadyExistsLoginDescription": { - "message": "A wallet using “$1” already exists. Do you want to try logging in instead?", - "description": "$1 is the account email" - }, - "accountAlreadyExistsTitle": { - "message": "Wallet already exists" - }, - "accountDetails": { - "message": "Account details" - }, - "accountDetailsSrpBackUpMessage": { - "message": "Back up", - "description": "Text used to describe action for SRP backup. Used on multichain account details." - }, - "accountIdenticon": { - "message": "Account icon" - }, - "accountName": { - "message": "Account name" - }, - "accountNameAlreadyInUse": { - "message": "This name is already in use.", - "description": "Error help text used under the input field for renaming multichain account when user tries to use existing name." - }, - "accountNameDuplicate": { - "message": "This account name already exists", - "description": "This is an error message shown when the user enters a new account name that matches an existing account name" - }, - "accountNameReserved": { - "message": "This account name is reserved", - "description": "This is an error message shown when the user enters a new account name that is reserved for future use" - }, - "accountNotFoundCreateOne": { - "message": "Yes, create a new wallet" - }, - "accountNotFoundDescription": { - "message": "We couldn’t find a wallet for “$1”. Do you want to create a new one with this login?", - "description": "$1 is the account email" - }, - "accountNotFoundTitle": { - "message": "Wallet not found" - }, - "accountOptions": { - "message": "Account options" - }, - "accountPermissionToast": { - "message": "Account permissions updated" - }, - "accountSelectionRequired": { - "message": "You need to select an account!" - }, - "accountSmallCase": { - "message": "account" - }, - "accountTypeNotSupported": { - "message": "Account type not supported" - }, - "accounts": { - "message": "Accounts" - }, - "accountsConnected": { - "message": "Accounts connected" - }, - "accountsPermissionsTitle": { - "message": "See your accounts and suggest transactions" - }, - "accountsSmallCase": { - "message": "accounts" - }, - "actionUnavailable": { - "message": "Action unavailable" - }, - "active": { - "message": "Active" - }, - "activity": { - "message": "Activity" - }, - "activityEmptyDescription": { - "message": "Nothing to see yet. Swap your first token today." - }, - "add": { - "message": "Add" - }, - "addACustomNetwork": { - "message": "Add a custom network" - }, - "addANetwork": { - "message": "Add a network" - }, - "addANickname": { - "message": "Add a nickname" - }, - "addAUrl": { - "message": "Add a URL" - }, - "addAWallet": { - "message": "Add a wallet" - }, - "addAccount": { - "message": "Add account" - }, - "addAccountFromNetwork": { - "message": "Add $1 account", - "description": "$1 is the network name, e.g. Bitcoin or Solana" - }, - "addAccountOrWallet": { - "message": "Add account or wallet" - }, - "addAcquiredTokens": { - "message": "Add the tokens you've acquired using MetaMask" - }, - "addAlias": { - "message": "Add alias" - }, - "addBitcoinAccountLabel": { - "message": "Bitcoin account" - }, - "addBlockExplorer": { - "message": "Add a block explorer" - }, - "addBlockExplorerUrl": { - "message": "Add a block explorer URL" - }, - "addContact": { - "message": "Add contact" - }, - "addCustomNetwork": { - "message": "Add custom network" - }, - "addCustomToken": { - "message": "Add a custom token" - }, - "addEthereumChainWarningModalHeader": { - "message": "Only add this RPC provider if you’re sure you can trust it. $1", - "description": "$1 is addEthereumChainWarningModalHeaderPartTwo passed separately so that it can be bolded" - }, - "addEthereumChainWarningModalHeaderPartTwo": { - "message": "Malicious providers may lie about the state of the blockchain and record your network activity." - }, - "addEthereumChainWarningModalListHeader": { - "message": "It's important that your provider is reliable, as it has the power to:" - }, - "addEthereumChainWarningModalListPointOne": { - "message": "See your accounts and IP address, and associate them together" - }, - "addEthereumChainWarningModalListPointThree": { - "message": "Show account balances and other on-chain states" - }, - "addEthereumChainWarningModalListPointTwo": { - "message": "Broadcast your transactions" - }, - "addEthereumChainWarningModalTitle": { - "message": "You are adding a new RPC provider for Ethereum Mainnet" - }, - "addEthereumWatchOnlyAccount": { - "message": "Watch an Ethereum account (Beta)" - }, - "addFriendsAndAddresses": { - "message": "Add friends and addresses you trust" - }, - "addFunds": { - "message": "Add funds" - }, - "addFundsModalBuyCrypto": { - "message": "Buy crypto" - }, - "addFundsModalReceiveTokens": { - "message": "Receive tokens" - }, - "addFundsModalSwapTokens": { - "message": "Swap tokens" - }, - "addHardwareWalletLabel": { - "message": "Hardware wallet" - }, - "addMemo": { - "message": "Add memo" - }, - "addNetwork": { - "message": "Add network" - }, - "addNetworkConfirmationTitle": { - "message": "Add $1", - "description": "$1 represents network name" - }, - "addNetworkDescription": { - "message": "A site is suggesting additional network details." - }, - "addNewAccount": { - "message": "Add a new Ethereum account" - }, - "addNewEthereumAccountLabel": { - "message": "Ethereum account" - }, - "addNewSolanaAccountLabel": { - "message": "Solana account" - }, - "addNewTronAccountLabel": { - "message": "Tron account" - }, - "addNft": { - "message": "Add NFT" - }, - "addNfts": { - "message": "Add NFTs" - }, - "addNonEvmAccount": { - "message": "Add $1 account", - "description": "$1 is the non EVM network where the account is going to be created, e.g. Bitcoin or Solana" - }, - "addNonEvmAccountFromNetworkPicker": { - "message": "To enable the $1 network, you need to create a $2 account.", - "description": "$1 is the non EVM network where the account is going to be created, e.g. Solana Mainnet or Solana Devnet. $2 is the account type, e.g. Bitcoin or Solana" - }, - "addRpcUrl": { - "message": "Add RPC URL" - }, - "addSnapAccountToggle": { - "message": "Enable \"Add account Snap (Beta)\"" - }, - "addSnapAccountsDescription": { - "message": "Turning on this feature will give you the option to add the new Beta account Snaps right from your account list. If you install an account Snap, remember that it is a third-party service." - }, - "addSuggestedNFTs": { - "message": "Add suggested NFTs" - }, - "addSuggestedTokens": { - "message": "Add suggested tokens" - }, - "addToken": { - "message": "Add token" - }, - "addUrl": { - "message": "Add URL" - }, - "addWallet": { - "message": "Add wallet" - }, - "addedProtectionDescription": { - "message": "You're interacting with an unknown address. This helps prevent malicious transactions." - }, - "addedProtectionOptionalBadge": { - "message": "Optional" - }, - "addedProtectionTitle": { - "message": "Added protection" - }, - "addedProtectionTooltip": { - "message": "If the final transaction doesn't match this preview, it won't go through. You only pay the network fee." - }, - "additionalNetworks": { - "message": "Additional networks" - }, - "address": { - "message": "Address" - }, - "addressCopied": { - "message": "Address copied" - }, - "addressLabel": { - "message": "address", - "description": "Label for address count (single address). Used on multichain account details page." - }, - "addressMismatch": { - "message": "Site address mismatch" - }, - "addressMismatchOriginal": { - "message": "Current URL: $1", - "description": "$1 replaced by origin URL in confirmation request" - }, - "addressMismatchPunycode": { - "message": "Punycode version: $1", - "description": "$1 replaced by punycode version of the URL in confirmation request" - }, - "addressQrCodeModalDescription": { - "message": "Use this address to receive tokens and collectibles on $1", - "description": "$1 is the network name" - }, - "addressQrCodeModalHeading": { - "message": "$1 Address", - "description": "$1 is the network name" - }, - "addressQrCodeModalTitle": { - "message": "$1 / $2", - "description": "$1 is account name, $2 is network name" - }, - "addresses": { - "message": "Addresses", - "description": "Multichain account menu item for linking to addresses page" - }, - "addressesLabel": { - "message": "addresses", - "description": "Label for address count (multiple addresses). Used on multichain account details page." - }, - "advanced": { - "message": "Advanced" - }, - "advancedDetailsDataDesc": { - "message": "Data" - }, - "advancedDetailsHexDesc": { - "message": "Hex" - }, - "advancedDetailsNonceDesc": { - "message": "Nonce" - }, - "advancedDetailsNonceTooltip": { - "message": "This is the transaction number of an account. Nonce for the first transaction is 0 and it increases in sequential order." - }, - "advancedEIP1559ModalTitle": { - "message": "Advanced network fee" - }, - "advancedGasPriceModalTitle": { - "message": "Advanced network fee" - }, - "advancedGasPriceTitle": { - "message": "Gas price" - }, - "advancedPermissionSmallCase": { - "message": "advanced permission" - }, - "advancedPermissionsSmallCase": { - "message": "advanced permissions" - }, - "airDropPatternDescription": { - "message": "The token's on-chain history reveals prior instances of suspicious airdrop activities." - }, - "airDropPatternTitle": { - "message": "Airdrop pattern" - }, - "airgapVault": { - "message": "AirGap Vault" - }, - "alert": { - "message": "Alert" - }, - "alertAccountTypeUpgradeMessage": { - "message": "You're updating your account to a smart account. You'll keep the same account address while unlocking faster transactions and lower network fees. $1" - }, - "alertAccountTypeUpgradeTitle": { - "message": "Account type" - }, - "alertActionBurnAddress": { - "message": "Sending assets to burn address" - }, - "alertActionBuyWithNativeCurrency": { - "message": "Buy $1" - }, - "alertActionEditNetworkFee": { - "message": "Edit network fee" - }, - "alertActionUpdateGas": { - "message": "Update gas limit" - }, - "alertActionUpdateGasFee": { - "message": "Update fee" - }, - "alertActionUpdateGasFeeLevel": { - "message": "Update gas options" - }, - "alertContentMultipleApprovals": { - "message": "You're giving someone else permission to withdraw your tokens, even though it's not necessary for this transaction." - }, - "alertDisableTooltip": { - "message": "This can be changed in \"Settings > Alerts\"" - }, - "alertInsufficientPayTokenBalance": { - "message": "Insufficient funds" - }, - "alertInsufficientPayTokenBalanceFeesNoTarget": { - "message": "Add less or use a different token." - }, - "alertInsufficientPayTokenNative": { - "message": "Not enough $1 to cover fees. Use a token on another network or add more $1 to continue.", - "description": "$1 is the native currency symbol (e.g. ETH)" - }, - "alertMessageAddressMismatchWarning": { - "message": "Attackers sometimes mimic sites by making small changes to the site address. Make sure you're interacting with the intended site before you continue." - }, - "alertMessageAddressTrustSignal": { - "message": "We can't verify this address. It may be new or unverified. Only continue if you trust the source." - }, - "alertMessageAddressTrustSignalMalicious": { - "message": "If you confirm this request, you will probably lose your assets to a scammer." - }, - "alertMessageBurnAddress": { - "message": "You're sending your assets to a burn address. If you continue, you'll lose your assets." - }, - "alertMessageChangeInSimulationResults": { - "message": "Estimated changes for this transaction have been updated. Review them closely before proceeding." - }, - "alertMessageFirstTimeInteraction": { - "message": "You're interacting with this address for the first time. Make sure that it's correct before you continue." - }, - "alertMessageGasEstimateFailed": { - "message": "We’re unable to provide an accurate fee and this estimate might be high. We suggest you to input a custom gas limit, but there’s a risk the transaction will still fail." - }, - "alertMessageGasFeeLow": { - "message": "When choosing a low fee, expect slower transactions and longer wait times. For faster transactions, choose Market or Aggressive fee options." - }, - "alertMessageGasTooLow": { - "message": "To continue with this transaction, you’ll need to increase the gas limit to 21000 or higher." - }, - "alertMessageInsufficientBalanceWithNativeCurrency": { - "message": "You do not have enough $1 in your account to pay for network fees." - }, - "alertMessageNoGasPrice": { - "message": "We can’t move forward with this transaction until you manually update the fee." - }, - "alertMessageOriginTrustSignalMalicious": { - "message": "This has been identified as malicious. We recommend not interacting with this site." - }, - "alertMessageOriginTrustSignalWarning": { - "message": "This has been identified as suspicious. We recommend not interacting with this site." - }, - "alertMessageSignInDomainMismatch": { - "message": "The site making the request is not the site you’re signing into. This could be an attempt to steal your login credentials." - }, - "alertMessageSignInWrongAccount": { - "message": "This site is asking you to sign in using the wrong account." - }, - "alertMessageSuggestedGasFeeHigh": { - "message": "This site is suggesting a higher network fee than necessary. Edit the network fee to pay less." - }, - "alertMessageTokenTrustSignalMalicious": { - "message": "This token has been identified as malicious. Interacting with this token may result in a loss of funds." - }, - "alertMessageTokenTrustSignalWarning": { - "message": "This token shows strong signs of malicious behavior. Continuing may result in loss of funds." - }, - "alertModalAcknowledge": { - "message": "I have acknowledged the risk and still want to proceed" - }, - "alertModalDetails": { - "message": "Alert details" - }, - "alertModalReviewAllAlerts": { - "message": "Review all alerts" - }, - "alertNoPayTokenQuotesMessage": { - "message": "This payment route isn't available right now. Try changing the amount, network, or token and we'll find the best option." - }, - "alertNoPayTokenQuotesTitle": { - "message": "No quotes" - }, - "alertPayHardwareAccountMessage": { - "message": "Hardware wallets aren't supported.\nSwitch wallets to continue." - }, - "alertPayHardwareAccountTitle": { - "message": "Wallet not supported" - }, - "alertReasonChangeInSimulationResults": { - "message": "Results have changed" - }, - "alertReasonFirstTimeInteraction": { - "message": "1st interaction" - }, - "alertReasonGasEstimateFailed": { - "message": "Inaccurate fee" - }, - "alertReasonGasFeeLow": { - "message": "Slow speed" - }, - "alertReasonGasSponsorshipUnavailable": { - "message": "Gas sponsorship unavailable" - }, - "alertReasonGasTooLow": { - "message": "Low gas limit" - }, - "alertReasonInsufficientBalance": { - "message": "Insufficient funds" - }, - "alertReasonMultipleApprovals": { - "message": "Unnecessary permission" - }, - "alertReasonNoGasPrice": { - "message": "Fee estimate unavailable" - }, - "alertReasonOriginTrustSignalMalicious": { - "message": "Malicious site" - }, - "alertReasonOriginTrustSignalVerified": { - "message": "Verified site" - }, - "alertReasonOriginTrustSignalWarning": { - "message": "Suspicious site" - }, - "alertReasonPendingTransactions": { - "message": "Pending transaction" - }, - "alertReasonSignIn": { - "message": "Suspicious sign-in request" - }, - "alertReasonSuggestedGasFeeHigh": { - "message": "High site fee" - }, - "alertReasonTokenTrustSignalMalicious": { - "message": "Malicious token" - }, - "alertReasonTokenTrustSignalWarning": { - "message": "Suspicious token" - }, - "alertReasonWrongAccount": { - "message": "Wrong account" - }, - "alertSelectedAccountWarning": { - "message": "This request is for a different account than the one selected in your wallet. To use another account, connect it to the site." - }, - "alerts": { - "message": "Alerts" - }, - "all": { - "message": "All" - }, - "allDefaultNetworks": { - "message": "All default networks" - }, - "allNetworks": { - "message": "All networks" - }, - "allPermissions": { - "message": "Dapp connections" - }, - "allPopularNetworks": { - "message": "All popular networks" - }, - "allTimeHigh": { - "message": "All-time high" - }, - "allTimeLow": { - "message": "All-time low" - }, - "allTokens": { - "message": "All tokens" - }, - "allowAddRpc": { - "message": "Add RPC" - }, - "allowAddRpcDescription": { - "message": "Allow the site to add a RPC URL for $1.\n\nSet your preferred RPC anytime by going to Networks in Settings", - "description": "$1 is the chain name" - }, - "allowNotifications": { - "message": "Allow notifications" - }, - "amount": { - "message": "Amount" - }, - "amountReceived": { - "message": "Amount received" - }, - "amountSent": { - "message": "Amount sent" - }, - "andForListItems": { - "message": "$1, and $2", - "description": "$1 is the first item, $2 is the last item in a list of items. Used in Snap Install Warning modal." - }, - "andForTwoItems": { - "message": "$1 and $2", - "description": "$1 is the first item, $2 is the second item. Used in Snap Install Warning modal." - }, - "annual": { - "message": "Annual" - }, - "appDescription": { - "message": "The world's most trusted crypto wallet", - "description": "The description of the application" - }, - "appName": { - "message": "MetaMask", - "description": "The name of the application" - }, - "appNameBeta": { - "message": "MetaMask Beta", - "description": "The name of the application (Beta)" - }, - "appNameFlask": { - "message": "MetaMask Flask", - "description": "The name of the application (Flask)" - }, - "apply": { - "message": "Apply" - }, - "approve": { - "message": "Approve spend limit" - }, - "approveButtonText": { - "message": "Approve" - }, - "approveIncreaseAllowance": { - "message": "Increase $1 spending cap", - "description": "The token symbol that is being approved" - }, - "approveSpendingCap": { - "message": "Approve $1 spending cap", - "description": "The token symbol that is being approved" - }, - "approveToken": { - "message": "Approve $1", - "description": "Used in the transaction details summary to describe an approval transaction. $1 is the symbol of the token being approved." - }, - "approved": { - "message": "Approved" - }, - "approvedOn": { - "message": "Approved on $1", - "description": "$1 is the approval date for a permission" - }, - "approvedOnForAccounts": { - "message": "Approved on $1 for $2", - "description": "$1 is the approval date for a permission. $2 is the AvatarGroup component displaying account images." - }, - "areYouSure": { - "message": "Are you sure?" - }, - "asset": { - "message": "Asset" - }, - "assetChartNoHistoricalPrices": { - "message": "We could not fetch any historical data" - }, - "assetOptions": { - "message": "Asset options" - }, - "assets": { - "message": "Assets" - }, - "assetsDescription": { - "message": "Autodetect tokens in your wallet, display NFTs, and get batched account balance updates" - }, - "asterdexReferralConfirmText": { - "message": "Yes, get 4% back", - "description": "Primary button label on the AsterDEX referral confirmation screen" - }, - "asterdexReferralSubtitle": { - "message": "Get 4% back on trades with a MetaMask referral code.", - "description": "The subtitle of the AsterDEX referral confirmation screen" - }, - "asterdexReferralSubtitle2": { - "message": "Get 4% back on trades with a MetaMask referral code. This discount applies to all future trades, as per AsterDEX's $1. MetaMask earns a fee.", - "description": "Subtitle on the AsterDEX referral confirmation screen. $1 is a link to the partner's terms." - }, - "asterdexReferralTitle": { - "message": "Get 4% back on AsterDEX", - "description": "Title of the AsterDEX referral confirmation screen" - }, - "attemptToCancelSwapForFree": { - "message": "Attempt to cancel swap for free" - }, - "attributes": { - "message": "Attributes" - }, - "attributions": { - "message": "Attributions" - }, - "authorizedPermissions": { - "message": "You have authorized the following permissions" - }, - "autoDetectTokens": { - "message": "Autodetect tokens" - }, - "autoDetectTokensDescriptionV2": { - "message": "Displays new tokens sent to your wallet." - }, - "autoLock": { - "message": "Auto lock" - }, - "autoLockAfter15Seconds": { - "message": "After 15 seconds" - }, - "autoLockAfter1Minute": { - "message": "After 1 minute" - }, - "autoLockAfter30Seconds": { - "message": "After 30 seconds" - }, - "autoLockAfter5Minutes": { - "message": "After 5 minutes" - }, - "autoLockAfterMinutes": { - "message": "After $1 minutes" - }, - "autoLockNever": { - "message": "Never" - }, - "autoLockTimeLimit": { - "message": "Auto-lock timer (minutes)" - }, - "available": { - "message": "available" - }, - "average": { - "message": "Average" - }, - "back": { - "message": "Back" - }, - "backToHome": { - "message": "Back to home" - }, - "backUpIncomplete": { - "message": "Back up incomplete" - }, - "backup": { - "message": "Backup" - }, - "backupAndSync": { - "message": "Backup and sync" - }, - "backupAndSyncBasicFunctionalityNameMention": { - "message": "basic functionality" - }, - "backupAndSyncEnable": { - "message": "Turn on backup and sync" - }, - "backupAndSyncEnableConfirmation": { - "message": "When you turn on backup and sync, you’re also turning on $1. Do you want to continue?", - "description": "$1 is backupAndSyncBasicFunctionalityNameMention in bold." - }, - "backupAndSyncEnableDescription": { - "message": "Backup and sync lets us store encrypted data for your custom settings and features. This keeps your MetaMask experience the same across devices and restores settings and features if you ever need to reinstall MetaMask. This doesn’t back up your Secret Recovery Phrase. $1.", - "description": "$1 is link to the backup and sync privacy policy." - }, - "backupAndSyncEnableDescriptionUpdatePreferences": { - "message": "You can update your preferences at any time in $1", - "description": "$1 is a bolded text that highlights the path to the settings page." - }, - "backupAndSyncEnableDescriptionUpdatePreferencesPath": { - "message": "Settings > Backup and sync." - }, - "backupAndSyncFeatureAccounts": { - "message": "Accounts" - }, - "backupAndSyncFeatureContacts": { - "message": "Contacts" - }, - "backupAndSyncManageWhatYouSync": { - "message": "Manage what you sync" - }, - "backupAndSyncManageWhatYouSyncDescription": { - "message": "Turn on what’s synced between your devices." - }, - "backupAndSyncPrivacyLink": { - "message": "Learn how we protect your privacy" - }, - "backupApprovalInfo": { - "message": "This secret code is required to recover your wallet in case you lose your device, forget your password, have to re-install MetaMask, or want to access your wallet on another device." - }, - "backupApprovalNotice": { - "message": "Back up your Secret Recovery Phrase to keep your wallet and funds secure." - }, - "backupKeyringSnapReminder": { - "message": "Be sure you can access any accounts created by this Snap on your own before removing it" - }, - "backupNow": { - "message": "Back up now" - }, - "balance": { - "message": "Balance" - }, - "balanceOutdated": { - "message": "Balance may be outdated" - }, - "baseFee": { - "message": "Base fee" - }, - "basic": { - "message": "Basic" - }, - "basicConfigurationDescription": { - "message": "MetaMask offers basic features like token details and gas settings through internet services. When you use internet services, your IP address is shared, in this case with MetaMask. This is just like when you visit any website. MetaMask uses this data temporarily and never sells your data. You can use a VPN or turn off these services, but it may affect your MetaMask experience. To learn more read our $1.", - "description": "$1 is to be replaced by the message for privacyMsg, and will link to https://consensys.io/privacy-policy" - }, - "basicConfigurationDescriptionV2": { - "message": "Includes basic features like token details and gas settings. Keep this feature on for the best experience. Read our $1 to learn more.", - "description": "$1 is to be replaced by the message for privacyMsg, and will link to https://consensys.io/privacy-policy" - }, - "basicConfigurationLabel": { - "message": "Basic functionality" - }, - "basicConfigurationModalCheckbox": { - "message": "I understand and want to continue" - }, - "basicConfigurationModalDisclaimerOffPart1": { - "message": "This means you won't fully optimize your time on MetaMask. Basic features (like token details, optimal gas settings, and others) won't be available to you." - }, - "basicConfigurationModalDisclaimerOffPart2": { - "message": "Turning this off also disables some features within privacy, backup and sync, and notifications." - }, - "basicConfigurationModalDisclaimerOn": { - "message": "To optimize your time on MetaMask, you’ll need to turn on this feature. Basic functions (like token details, optimal gas settings, and others) are important to the web3 experience." - }, - "basicConfigurationModalHeadingOff": { - "message": "Turn off basic functionality" - }, - "basicConfigurationModalHeadingOn": { - "message": "Turn on basic functionality" - }, - "basicFunctionalityRequired_description": { - "message": "This feature isn't available while basic functionality is turned off. Use the toggle below to turn it on." - }, - "basicFunctionalityRequired_goToHome": { - "message": "Go to the home page" - }, - "basicFunctionalityRequired_openCreateSnapAccountPage": { - "message": "Open the Create Account page" - }, - "basicFunctionalityRequired_openDefiPage": { - "message": "Open the DeFi page" - }, - "basicFunctionalityRequired_openMusdConversionPage": { - "message": "Open the mUSD Conversion page" - }, - "basicFunctionalityRequired_openNotificationsPage": { - "message": "Open the Notifications page" - }, - "basicFunctionalityRequired_openPerpsPage": { - "message": "Open the Perps page" - }, - "basicFunctionalityRequired_openRewardsPage": { - "message": "Open the Rewards page" - }, - "basicFunctionalityRequired_openSnapsPage": { - "message": "Open the Snaps page" - }, - "basicFunctionalityRequired_openSwapsPage": { - "message": "Open the Swap page" - }, - "basicFunctionalityRequired_openTransactionShieldPage": { - "message": "Open the Transaction Shield page" - }, - "basicFunctionalityRequired_reviewInSettings": { - "message": "Review in settings" - }, - "basicFunctionalityRequired_title": { - "message": "Basic functionality is off" - }, - "basicFunctionalityRequired_toggleLabel": { - "message": "Basic functionality" - }, - "bestQuote": { - "message": "Best quote" - }, - "bestQuoteTooltip": { - "message": "The best quote we found from providers, including provider fees and a 0.25% MetaMask fee. The minimum you'll receive if price changes is $1." - }, - "beta": { - "message": "Beta" - }, - "betaMetamaskVersion": { - "message": "MetaMask Beta Version" - }, - "betaTerms": { - "message": "Beta Terms of Use" - }, - "blockExplorerAccountAction": { - "message": "Account", - "description": "This is used with viewOnEtherscan and viewInExplorer e.g View Account in Explorer" - }, - "blockExplorerAssetAction": { - "message": "Asset", - "description": "This is used with viewOnEtherscan and viewInExplorer e.g View Asset in Explorer" - }, - "blockExplorerSwapAction": { - "message": "Swap", - "description": "This is used with viewOnEtherscan e.g View Swap on Etherscan" - }, - "blockExplorerUrl": { - "message": "Block explorer URL" - }, - "blockExplorerUrlDefinition": { - "message": "The URL used as the block explorer for this network." - }, - "blockExplorerView": { - "message": "View account at $1", - "description": "$1 replaced by URL for custom block explorer" - }, - "blockaid": { - "message": "Blockaid" - }, - "blockaidAlertDescriptionBlur": { - "message": "If you continue, all the assets you’ve listed on Blur could be at risk." - }, - "blockaidAlertDescriptionMalicious": { - "message": "You’re interacting with a malicious site. If you continue, you will lose your assets." - }, - "blockaidAlertDescriptionOpenSea": { - "message": "If you continue, all the assets you’ve listed on OpenSea could be at risk." - }, - "blockaidAlertDescriptionOthers": { - "message": "If you confirm this request, you could lose your assets. We recommend that you cancel this request." - }, - "blockaidAlertDescriptionTokenTransfer": { - "message": "You’re sending your assets to a scammer. If you continue, you’ll lose those assets." - }, - "blockaidAlertDescriptionWithdraw": { - "message": "If you confirm this request, you’re allowing a scammer to withdraw and spend your assets. You won’t get them back." - }, - "blockaidDescriptionApproveFarming": { - "message": "If you approve this request, a third party known for scams might take all your assets." - }, - "blockaidDescriptionBlurFarming": { - "message": "If you approve this request, someone can steal your assets listed on Blur." - }, - "blockaidDescriptionErrored": { - "message": "Because of an error, we couldn't check for security alerts. Only continue if you trust every address involved." - }, - "blockaidDescriptionMaliciousDomain": { - "message": "You're interacting with a malicious domain. If you approve this request, you might lose your assets." - }, - "blockaidDescriptionMightLoseAssets": { - "message": "If you approve this request, you might lose your assets." - }, - "blockaidDescriptionSeaportFarming": { - "message": "If you approve this request, someone can steal your assets listed on OpenSea." - }, - "blockaidDescriptionTransferFarming": { - "message": "If you approve this request, a third party known for scams will take all your assets." - }, - "blockaidTitleDeceptive": { - "message": "This is a deceptive request" - }, - "blockaidTitleMayNotBeSafe": { - "message": "Be careful" - }, - "blockaidTitleSuspicious": { - "message": "This is a suspicious request" - }, - "blockies": { - "message": "Blockies" - }, - "borrowed": { - "message": "Borrowed" - }, - "boughtFor": { - "message": "Bought for" - }, - "bridge": { - "message": "Bridge" - }, - "bridgeAllowSwappingOf": { - "message": "Allow exact access to $1 $2 on $3 for bridging", - "description": "Shows a user that they need to allow a token for swapping on their hardware wallet" - }, - "bridgeApproval": { - "message": "Approve $1 for bridge", - "description": "Used in the transaction display list to describe a transaction that is an approve call on a token that is to be bridged. $1 is the symbol of a token that has been approved." - }, - "bridgeApprovalWarning": { - "message": "You're allowing access to $1 $2. The contract won't access any additional funds." - }, - "bridgeApprovalWarningForHardware": { - "message": "You'll need to allow access to $1 $2 for bridging, and then approve bridging to $3. This will require two separate confirmations." - }, - "bridgeBlockExplorerLinkCopied": { - "message": "Block explorer link copied" - }, - "bridgeConfirmTwoTransactions": { - "message": "You'll need to confirm 2 transactions on your hardware wallet:" - }, - "bridgeCreateSolanaAccount": { - "message": "Create Solana account" - }, - "bridgeCreateSolanaAccountDescription": { - "message": "To swap to the Solana network, you need an account and receiving address." - }, - "bridgeCreateSolanaAccountTitle": { - "message": "You'll need a Solana account first." - }, - "bridgeDetailsTitle": { - "message": "Bridge details", - "description": "Title for the modal showing details about a bridge transaction." - }, - "bridgeEnterAmount": { - "message": "Select amount" - }, - "bridgeExplorerLinkViewOn": { - "message": "View on $1" - }, - "bridgeFee": { - "message": "Bridge fee" - }, - "bridgeFromTo": { - "message": "Bridge $1 $2 to $3", - "description": "Tells a user that they need to confirm on their hardware wallet a bridge. $1 is amount of source token, $2 is the source network, and $3 is the destination network" - }, - "bridgeGasFeesSplit": { - "message": "Any network fee quoted on the previous screen includes both transactions and will be split." - }, - "bridgeGetNewQuote": { - "message": "Get new quote" - }, - "bridgeLowestCost": { - "message": "Lowest cost" - }, - "bridgeMalicious": { - "message": "Malicious" - }, - "bridgeMaliciousTokenTitle": { - "message": "Malicious token" - }, - "bridgeMarketClosedAction": { - "message": "Market closed" - }, - "bridgeMarketClosedDescription": { - "message": "This stock token is currently outside trading hours. Try again when the market reopens." - }, - "bridgeMarketClosedModalDescription": { - "message": "The market that backs this token is currently closed. Tokens can be transferred on-chain at any time." - }, - "bridgeMarketClosedModalLearnMore": { - "message": "Learn more" - }, - "bridgeMarketClosedModalTitle": { - "message": "Market is closed" - }, - "bridgeMarketClosedTitle": { - "message": "Market closed" - }, - "bridgeNoMMFee": { - "message": "No MM fee" - }, - "bridgeNoPriceInfoTitle": { - "message": "No price information" - }, - "bridgePoints": { - "message": "Est. points", - "description": "Label for estimated points that can be earned from a bridge or swap" - }, - "bridgePoints_couldntLoad": { - "message": "Couldn't load", - "description": "Text shown in rewards badge when points couldn't be loaded" - }, - "bridgePoints_error": { - "message": "Couldn't load points", - "description": "Tooltip title when there's an error fetching estimated points" - }, - "bridgePoints_error_content": { - "message": "Don't worry, you're still earning points. They'll show up in your account soon, or you can check in the Rewards tab on MetaMask Mobile.", - "description": "Error message when points estimation fails" - }, - "bridgePoints_tooltip": { - "message": "Points", - "description": "Tooltip title for points" - }, - "bridgePoints_tooltip_content_1": { - "message": "Points are how you earn MetaMask Rewards for completing transactions, like when you swap, bridge, or trade perps.", - "description": "First part of tooltip content explaining rewards points" - }, - "bridgePoints_tooltip_content_2": { - "message": "Keep in mind this value is an estimate and will be finalized once the transaction is complete. Points can take up to 1 hour to be confirmed in your Rewards balance.", - "description": "Second part of tooltip content explaining how points are calculated" - }, - "bridgePriceDataUnavailableError": { - "message": "We couldn't get price information for this token. Make sure the amount received is what you expect before continuing." - }, - "bridgePriceImpact": { - "message": "Price impact" - }, - "bridgePriceImpactFiatAlert": { - "message": "You will lose $1 on this trade" - }, - "bridgePriceImpactHigh": { - "message": "High price impact" - }, - "bridgePriceImpactHighDescription": { - "message": "Because of your trade size and available liquidity, you'll get about $1 less than the market price. This is already factored into your quote." - }, - "bridgePriceImpactNormalDescription": { - "message": "This is how your trade changes the market price of a token. It depends on the trade size, availale liquidity, and provider fees. MetaMask doesn't control price impact." - }, - "bridgePriceImpactTooltipTitle": { - "message": "Price impact" - }, - "bridgePriceImpactVeryHigh": { - "message": "Very high price impact" - }, - "bridgePriceImpactVeryHighDescription": { - "message": "You'll lose approximately $1 of your token's market price on this swap. Try a smaller trade or a more liquid route to improve your rate." - }, - "bridgePriceImpactWarningAriaLabel": { - "message": "Read price impact warning details" - }, - "bridgePriceImpactWarningTitle": { - "message": "Price impact warning" - }, - "bridgeQuoteStreamCompleteAmountTooHigh": { - "message": "No quotes available. Try a smaller amount." - }, - "bridgeQuoteStreamCompleteAmountTooLow": { - "message": "No quotes available. Try a larger amount." - }, - "bridgeQuoteStreamCompleteRetry": { - "message": "Unable to get a quote right now. Try again." - }, - "bridgeQuoteStreamCompleteRwaGeoRestricted": { - "message": "This swap isn't available in your region." - }, - "bridgeQuoteStreamCompleteRwaMarketUnavailable": { - "message": "The market for this asset is currently unavailable. Try again later." - }, - "bridgeQuoteStreamCompleteRwaNativeTokenUnsupported": { - "message": "Swaps between this token and real-world assets aren't supported yet. Try using a different token." - }, - "bridgeQuoteStreamCompleteSlippageTooHigh": { - "message": "Slippage is too high. Try lowering your slippage setting." - }, - "bridgeQuoteStreamCompleteSlippageTooLow": { - "message": "Slippage is too low. Try increasing your slippage setting." - }, - "bridgeQuoteStreamCompleteTokenNotSupported": { - "message": "This token isn't supported. Try using a different token." - }, - "bridgeQuotesSortedByCost": { - "message": "Quotes are sorted by the estimated total cost, which includes the exchange rate and network fee." - }, - "bridgeReceive": { - "message": "Receive $1 on $2", - "description": "Summary line showing token received on destination chain. $1 is the token symbol, $2 is the network name." - }, - "bridgeReceiveLoading": { - "message": "Receiving on destination chain" - }, - "bridgeSecurityDataKnownAirdrop": { - "message": "Suspicious airdrop" - }, - "bridgeSecurityDataKnownConcentratedSupply": { - "message": "Concentrated supply" - }, - "bridgeSecurityDataKnownDynamicAnalysis": { - "message": "Suspicious behavior" - }, - "bridgeSecurityDataKnownFakeTradeMakerCount": { - "message": "Inflated trader count" - }, - "bridgeSecurityDataKnownFakeVolume": { - "message": "Fake volume" - }, - "bridgeSecurityDataKnownHeavilySniped": { - "message": "Heavy bot activity" - }, - "bridgeSecurityDataKnownHiddenSupplyByKeyHolder": { - "message": "Undisclosed supply" - }, - "bridgeSecurityDataKnownHighBuyFee": { - "message": "High buy fee" - }, - "bridgeSecurityDataKnownHighSellFee": { - "message": "High sell fee" - }, - "bridgeSecurityDataKnownHighTransferFee": { - "message": "High transfer fee" - }, - "bridgeSecurityDataKnownHoneypot": { - "message": "Honeypot risk" - }, - "bridgeSecurityDataKnownImpersonator": { - "message": "Impersonator" - }, - "bridgeSecurityDataKnownImpersonatorAsset": { - "message": "Impersonates a sensitive asset" - }, - "bridgeSecurityDataKnownImpersonatorHigh": { - "message": "Likely impersonator" - }, - "bridgeSecurityDataKnownImpersonatorMedium": { - "message": "Possible impersonator" - }, - "bridgeSecurityDataKnownInappropriateContent": { - "message": "Inappropriate content" - }, - "bridgeSecurityDataKnownInorganicVoume": { - "message": "Artificial volume" - }, - "bridgeSecurityDataKnownInsufficientLiquidity": { - "message": "Low locked liquidity" - }, - "bridgeSecurityDataKnownLowReputation": { - "message": "Creator has low reputation" - }, - "bridgeSecurityDataKnownMalicious": { - "message": "Known malicious" - }, - "bridgeSecurityDataKnownMetadata": { - "message": "Suspicious metadata" - }, - "bridgeSecurityDataKnownPostDump": { - "message": "Possible price manipulation" - }, - "bridgeSecurityDataKnownRugpull": { - "message": "Rugpull risk" - }, - "bridgeSecurityDataKnownSanctionedCreator": { - "message": "Sanctioned creator" - }, - "bridgeSecurityDataKnownSimilarMaliciousContract": { - "message": "Resembles malicious contract" - }, - "bridgeSecurityDataKnownSnipeMint": { - "message": "Bot activity at launch" - }, - "bridgeSecurityDataKnownSpamText": { - "message": "Spam text" - }, - "bridgeSecurityDataKnownStaticCodeSign": { - "message": "Suspicious code" - }, - "bridgeSecurityDataKnownTokenBackdoor": { - "message": "Token backdoor" - }, - "bridgeSecurityDataKnownUnsellable": { - "message": "Unsellable token" - }, - "bridgeSecurityDataKnownUnstablePrice": { - "message": "Unstable price" - }, - "bridgeSecurityDataKnownWashTrading": { - "message": "Wash trading" - }, - "bridgeSelectDestinationAccount": { - "message": "Select a destination account" - }, - "bridgeSelectDifferentQuote": { - "message": "Please select a different quote." - }, - "bridgeSelectNetwork": { - "message": "Select network" - }, - "bridgeSelectQuote": { - "message": "Select quote" - }, - "bridgeSelectTokenAmountAndAccount": { - "message": "Select token, amount and destination account" - }, - "bridgeSelectTokenAndAmount": { - "message": "Select token and amount" - }, - "bridgeSend": { - "message": "Send $1 from $2", - "description": "Summary line showing token sent from source chain. $1 is the token symbol, $2 is the network name." - }, - "bridgeSendLoading": { - "message": "Sending from source chain" - }, - "bridgeSolanaAccountCreated": { - "message": "Solana account created" - }, - "bridgeStatusComplete": { - "message": "Complete", - "description": "Status text indicating a bridge transaction has successfully completed." - }, - "bridgeStatusFailed": { - "message": "Failed", - "description": "Status text indicating a bridge transaction has failed." - }, - "bridgeStatusInProgress": { - "message": "In progress", - "description": "Status text indicating a bridge transaction is currently processing." - }, - "bridgeStepActionBridgeComplete": { - "message": "$1 received on $2", - "description": "$1 is the amount of the destination asset, $2 is the name of the destination network" - }, - "bridgeStepActionBridgePending": { - "message": "Receiving $1 on $2", - "description": "$1 is the amount of the destination asset, $2 is the name of the destination network" - }, - "bridgeStepActionSwapComplete": { - "message": "Swapped $1 for $2", - "description": "$1 is the amount of the source asset, $2 is the amount of the destination asset" - }, - "bridgeStepActionSwapPending": { - "message": "Swapping $1 for $2", - "description": "$1 is the amount of the source asset, $2 is the amount of the destination asset" - }, - "bridgeSuspicious": { - "message": "Suspicious" - }, - "bridgeSuspiciousTokenTitle": { - "message": "Suspicious token" - }, - "bridgeTo": { - "message": "Bridge to" - }, - "bridgeTokenIsMaliciousBanner": { - "message": "$1 is a malicious token." - }, - "bridgeTokenIsMaliciousModalDescription": { - "message": "$1 is flagged as malicious. It's likely to steal funds from anyone who interacts with it." - }, - "bridgeTokenIsSuspiciousBanner": { - "message": "$1 is a suspicious token." - }, - "bridgeTokenIsSuspiciousModalDescription": { - "message": "$1 is flagged as suspicious. Take a look at the risks before you continue." - }, - "bridgeTokenNotFound": { - "message": "No tokens match \"$1\"" - }, - "bridgeTransactionProgress": { - "message": "Transaction $1 of 2" - }, - "bridgeTxDetailsBridged": { - "message": "Bridged" - }, - "bridgeTxDetailsBridging": { - "message": "Bridging" - }, - "bridgeTxDetailsDelayedDescription": { - "message": "Reach out to" - }, - "bridgeTxDetailsDelayedDescriptionSupport": { - "message": "MetaMask Support" - }, - "bridgeTxDetailsDelayedTitle": { - "message": "Has it been longer than 3 hours?" - }, - "bridgeTxDetailsNonce": { - "message": "Nonce" - }, - "bridgeTxDetailsStatus": { - "message": "Status" - }, - "bridgeTxDetailsSwapped": { - "message": "Swapped" - }, - "bridgeTxDetailsSwapping": { - "message": "Swapping" - }, - "bridgeTxDetailsTimestamp": { - "message": "Time stamp" - }, - "bridgeTxDetailsTimestampValue": { - "message": "$1 at $2", - "description": "$1 is the date, $2 is the time" - }, - "bridgeTxDetailsTokenAmountOnChain": { - "message": "$1 $2 on", - "description": "$1 is the amount of the token, $2 is the ticker symbol of the token" - }, - "bridgeTxDetailsTotalGasFee": { - "message": "Total gas fee" - }, - "bridgeTxDetailsYouReceived": { - "message": "You received" - }, - "bridgeTxDetailsYouSent": { - "message": "You sent" - }, - "bridgeUseMaxAmountAllowedWithReserve": { - "message": "Use max allowed" - }, - "bridgeValidationInsufficientGasMessage": { - "message": "You don't have enough $1 to pay the gas fee for this bridge. Enter a smaller amount or buy more $1." - }, - "bridgeValidationInsufficientGasTitle": { - "message": "More $1 needed for gas" - }, - "bridgeValidationInsufficientNativeReserveMessage": { - "message": "This specific network requires to maintain a reserve of $1 $3 in your account. With your current balance you can use a maximum of $2 $3", - "description": "$1 is the minimum native reserve amount for the network, $2 is the spendable balance, $3 the ticker symbol of the token" - }, - "bridgeValidationInsufficientNativeReserveTitle": { - "message": "Minimum $1 reserve balance is required", - "description": "$1 is the ticker symbol of the token" - }, - "bridged": { - "message": "Bridged" - }, - "bridgedToChain": { - "message": "Bridged to $1" - }, - "bridging": { - "message": "Bridging" - }, - "browserNotSupported": { - "message": "Your browser is not supported..." - }, - "busy": { - "message": "Busy" - }, - "buy": { - "message": "Buy" - }, - "buyMoreAsset": { - "message": "Buy more $1", - "description": "$1 is the ticker symbol of a an asset the user is being prompted to purchase" - }, - "buyNow": { - "message": "Buy now" - }, - "buyTabOpenedToastDescription": { - "message": "We've opened a new tab for buying.", - "description": "Toast description shown after opening the buy flow in a new tab" - }, - "buyTabOpenedToastText": { - "message": "Continue in your browser tab", - "description": "Toast title shown after opening the buy flow in a new tab" - }, - "bytes": { - "message": "Bytes" - }, - "canToggleInSettings": { - "message": "You can re-enable this notification in Settings > Alerts." - }, - "cancel": { - "message": "Cancel" - }, - "cancelSpeedupAlreadyConfirmedDescription": { - "message": "We were unable to update your transaction because it was already confirmed on the blockchain." - }, - "cancelSpeedupFailedDescription": { - "message": "Something went wrong while updating your transaction." - }, - "cancelTransactionDescription": { - "message": "This transaction will be canceled and this network fee will replace the original." - }, - "cancelTransactionFailed": { - "message": "Cancel transaction failed" - }, - "cancelTransactionTitle": { - "message": "Cancel transaction" - }, - "cancelled": { - "message": "Cancelled" - }, - "carouselAllCaughtUp": { - "message": "You're all caught up!", - "description": "Message shown in carousel when all promotional slides have been dismissed" - }, - "chainId": { - "message": "Chain ID" - }, - "chainIdDefinition": { - "message": "The chain ID used to sign transactions for this network." - }, - "chainIdExistsErrorMsg": { - "message": "This Chain ID is currently used by the $1 network." - }, - "chainListReturnedDifferentTickerSymbol": { - "message": "This token symbol doesn't match the network name or chain ID entered. Many popular tokens use similar symbols, which scammers can use to trick you into sending them a more valuable token in return. Verify everything before you continue." - }, - "changeInSettings": { - "message": "Change in Settings" - }, - "changePasswordDetailsSocial": { - "message": "Losing this password means losing wallet access on all devices." - }, - "changePasswordLoading": { - "message": "Changing password..." - }, - "changePasswordLoadingNote": { - "message": "This shouldn't take long" - }, - "changePasswordWarning": { - "message": "Are you sure?" - }, - "changePasswordWarningDescription": { - "message": "Changing your password here will lock MetaMask on other devices you’re using. You’ll need to log in again with your new password." - }, - "checkNetworkConnectivity": { - "message": "Check network connectivity." - }, - "checkNetworkConnectivityOr": { - "message": "Check network connectivity, or $1.", - "description": "$1 is a link to update the network." - }, - "chromeRequiredForHardwareWallets": { - "message": "You need to use MetaMask on Google Chrome in order to connect to your Hardware Wallet." - }, - "circulatingSupply": { - "message": "Circulating supply" - }, - "clear": { - "message": "Clear" - }, - "clearActivity": { - "message": "Clear activity and nonce data" - }, - "clearActivityDescription": { - "message": "Resets the account's nonce and erases data from the activity tab in your wallet. Only the current account and network will be affected. Your balances and incoming transactions won't change." - }, - "clearFilters": { - "message": "Clear filters" - }, - "click": { - "message": "Click" - }, - "clickToConnectLedgerViaWebHID": { - "message": "Click here to connect your Ledger via WebHID", - "description": "Text that can be clicked to open a browser popup for connecting the ledger device via webhid" - }, - "close": { - "message": "Close" - }, - "closeSlide": { - "message": "Close $1", - "description": "Aria label for close button on carousel slides. $1 is the slide title" - }, - "closeWindowAnytime": { - "message": "You may close this window anytime." - }, - "coingecko": { - "message": "CoinGecko" - }, - "collectionName": { - "message": "Collection name" - }, - "comboNoOptions": { - "message": "No options found", - "description": "Default text shown in the combo field dropdown if no options." - }, - "communityContributedLanguagesSectionTitle": { - "message": "Community contributed", - "description": "Section heading on the language settings screen for locales maintained by community contributors." - }, - "completed": { - "message": "Completed" - }, - "concentratedSupplyDistributionDescription": { - "message": "The majority of the token's supply is held by the top token holders, posing a risk of centralized price manipulation" - }, - "concentratedSupplyDistributionTitle": { - "message": "Concentrated supply distribution" - }, - "configureSnapPopupDescription": { - "message": "You're now leaving MetaMask to configure this snap." - }, - "configureSnapPopupInstallDescription": { - "message": "You're now leaving MetaMask to install this snap." - }, - "configureSnapPopupInstallTitle": { - "message": "Install snap" - }, - "configureSnapPopupLink": { - "message": "Click this link to continue:" - }, - "configureSnapPopupTitle": { - "message": "Configure snap" - }, - "confirm": { - "message": "Confirm" - }, - "confirmAccountTypeSmartContract": { - "message": "Smart account" - }, - "confirmAccountTypeStandard": { - "message": "Standard account" - }, - "confirmAlertModalAcknowledgeMultiple": { - "message": "I have acknowledged the alerts and still want to proceed" - }, - "confirmAlertModalAcknowledgeSingle": { - "message": "I have acknowledged the alert and still want to proceed" - }, - "confirmFieldAllowance": { - "message": "Allowance" - }, - "confirmFieldAvailablePerDay": { - "message": "Available per day" - }, - "confirmFieldExpiration": { - "message": "Expiration" - }, - "confirmFieldFrequency": { - "message": "Frequency" - }, - "confirmFieldNeverExpires": { - "message": "Never expires" - }, - "confirmFieldPaymaster": { - "message": "Fee paid by" - }, - "confirmFieldPeriodDurationBiWeekly": { - "message": "Bi-Weekly" - }, - "confirmFieldPeriodDurationDaily": { - "message": "Daily" - }, - "confirmFieldPeriodDurationHourly": { - "message": "Hourly" - }, - "confirmFieldPeriodDurationMonthly": { - "message": "Monthly" - }, - "confirmFieldPeriodDurationSeconds": { - "message": "$1 seconds", - "description": "$1 is the number of seconds in the permission period (shown when the period is not a standard hour/day/week/etc.)" - }, - "confirmFieldPeriodDurationWeekly": { - "message": "Weekly" - }, - "confirmFieldPeriodDurationYearly": { - "message": "Yearly" - }, - "confirmFieldTooltipJustification": { - "message": "Justification for the request provided by the website" - }, - "confirmFieldTooltipPaymaster": { - "message": "The fee for this transaction will be paid by the paymaster smart contract." - }, - "confirmFieldTotalExposure": { - "message": "Total exposure" - }, - "confirmGasFeeTokenBalance": { - "message": "Bal:" - }, - "confirmGasFeeTokenInsufficientBalance": { - "message": "Insufficient funds" - }, - "confirmGasFeeTokenMetaMaskFee": { - "message": "Includes $1 fee" - }, - "confirmGasFeeTokenModalNativeToggleMetaMask": { - "message": "MetaMask is supplementing the balance to complete this transaction." - }, - "confirmGasFeeTokenModalNativeToggleWallet": { - "message": "Pay for network fee using the balance in your wallet." - }, - "confirmGasFeeTokenModalPayETH": { - "message": "Pay with ETH" - }, - "confirmGasFeeTokenModalPayToken": { - "message": "Pay with other tokens" - }, - "confirmGasFeeTokenModalTitle": { - "message": "Select a token" - }, - "confirmGasFeeTokenToast": { - "message": "You're paying this network fee with $1" - }, - "confirmGasFeeTokenTooltip": { - "message": "This is paid to the network to process your transaction. It includes a $1 MetaMask fee for non-ETH tokens or pre-funded ETH." - }, - "confirmInfoAccountNow": { - "message": "Now" - }, - "confirmInfoSwitchingTo": { - "message": "Switching to" - }, - "confirmNestedTransactionTitle": { - "message": "Transaction $1" - }, - "confirmPassword": { - "message": "Confirm password" - }, - "confirmRecoveryPhrase": { - "message": "Confirm Secret Recovery Phrase" - }, - "confirmRecoveryPhraseDetails": { - "message": "Select the missing words in the correct order." - }, - "confirmRecoveryPhraseTitle": { - "message": "Confirm your Secret Recovery Phrase" - }, - "confirmRecoveryPhraseTitleSettings": { - "message": "Confirm Secret Recovery Phrase" - }, - "confirmSimulationApprove": { - "message": "You approve" - }, - "confirmSrpErrorDescription": { - "message": "Double-check your Secret Recovery Phrase and try again." - }, - "confirmSrpErrorTitle": { - "message": "Not quite right" - }, - "confirmSrpSuccessDescription": { - "message": "That’s right! And remember: never share this phrase with anyone, ever." - }, - "confirmSrpSuccessTitle": { - "message": "Perfect" - }, - "confirmTitleAccountTypeSwitch": { - "message": "Account update" - }, - "confirmTitleApproveTransactionNFT": { - "message": "Withdrawal request" - }, - "confirmTitleDeployContract": { - "message": "Deploy a contract" - }, - "confirmTitleDescApproveTransaction": { - "message": "This site wants permission to withdraw your NFTs" - }, - "confirmTitleDescDelegationRevoke": { - "message": "You're switching back to a standard account (EOA)." - }, - "confirmTitleDescDelegationUpgrade": { - "message": "You're switching to a smart account." - }, - "confirmTitleDescDeployContract": { - "message": "This site wants you to deploy a contract" - }, - "confirmTitleDescERC20ApproveTransaction": { - "message": "This site wants permission to withdraw your tokens" - }, - "confirmTitleDescERC20Revocation": { - "message": "This site wants permissions to revoke your ERC-20 token approvals." - }, - "confirmTitleDescPermission": { - "message": "This site wants permissions to spend your tokens." - }, - "confirmTitleDescPermitSignature": { - "message": "This site wants permission to spend your tokens." - }, - "confirmTitleDescSIWESignature": { - "message": "A site wants you to sign in to prove you own this account." - }, - "confirmTitleDescSign": { - "message": "Review request details before you confirm." - }, - "confirmTitlePermission": { - "message": "Permission request" - }, - "confirmTitlePermitTokens": { - "message": "Spending cap request" - }, - "confirmTitleRevokeApproveTransaction": { - "message": "Remove permission" - }, - "confirmTitleSIWESignature": { - "message": "Sign-in request" - }, - "confirmTitleSending": { - "message": "Sending" - }, - "confirmTitleSetApprovalForAllRevokeTransaction": { - "message": "Remove permission" - }, - "confirmTitleSignature": { - "message": "Signature request" - }, - "confirmTitleTransaction": { - "message": "Transaction request" - }, - "confirmationAlertDetails": { - "message": "To protect your assets, we suggest you reject the request." - }, - "confirmationAlertModalTitleDescription": { - "message": "Your assets may be at risk" - }, - "confirmed": { - "message": "Confirmed" - }, - "confusableCharacterTooltip": { - "message": "Make sure this address is correct. The letter $1 is confusable with $2." - }, - "confusableUnicode": { - "message": "'$1' is similar to '$2'." - }, - "confusableZeroWidthUnicode": { - "message": "Zero-width character found." - }, - "confusingEnsDomain": { - "message": "We have detected a confusable character in the ENS name. Check the ENS name to avoid a potential scam." - }, - "connect": { - "message": "Connect" - }, - "connectAHardwareWallet": { - "message": "Connect a hardware wallet" - }, - "connectAHardwareWalletDescription": { - "message": "Using USB or a QR Code" - }, - "connectAccounts": { - "message": "Connect accounts" - }, - "connectAnAccountHeader": { - "message": "Connect an account" - }, - "connectHardwareDevice": { - "message": "Connect $1", - "description": "$1 is the hardware wallet device name" - }, - "connectManually": { - "message": "Manually connect to current site" - }, - "connectMoreAccounts": { - "message": "Connect more accounts" - }, - "connectSnap": { - "message": "Connect $1", - "description": "$1 is the snap for which a connection is being requested." - }, - "connectWithMetaMask": { - "message": "Connect with MetaMask" - }, - "connectedAccountsDescriptionPlural": { - "message": "You have $1 accounts connected to this site.", - "description": "$1 is the number of accounts" - }, - "connectedAccountsDescriptionSingular": { - "message": "You have 1 account connected to this site." - }, - "connectedAccountsEmptyDescription": { - "message": "MetaMask is not connected to this site. To connect to a web3 site, find and click the connect button." - }, - "connectedAccountsListTooltip": { - "message": "$1 can see the account balance, address, activity, and suggest transactions to approve for connected accounts.", - "description": "$1 is the origin name" - }, - "connectedSites": { - "message": "Connected sites" - }, - "connectedSitesAndSnaps": { - "message": "Connected sites and Snaps" - }, - "connectedSitesDescription": { - "message": "$1 is connected to these sites. They can view your account address.", - "description": "$1 is the account name" - }, - "connectedSitesEmptyDescription": { - "message": "$1 is not connected to any sites.", - "description": "$1 is the account name" - }, - "connectedSnapAndNoAccountDescription": { - "message": "MetaMask is connected to this site, but no accounts are connected yet" - }, - "connectedSnaps": { - "message": "Connected Snaps" - }, - "connectedWithAccount": { - "message": "$1 accounts connected", - "description": "$1 represents account length" - }, - "connectedWithAccountName": { - "message": "Connected with $1", - "description": "$1 represents account name" - }, - "connectedWithNetwork": { - "message": "$1 networks connected", - "description": "$1 represents network length" - }, - "connectedWithNetworkName": { - "message": "Connected with $1", - "description": "$1 represents network name" - }, - "connecting": { - "message": "Connecting" - }, - "connectingTo": { - "message": "Connecting to $1" - }, - "connectingToGoerli": { - "message": "Connecting to Goerli test network" - }, - "connectingToLineaGoerli": { - "message": "Connecting to Linea Goerli test network" - }, - "connectingToLineaMainnet": { - "message": "Connecting to Linea" - }, - "connectingToLineaSepolia": { - "message": "Connecting to Linea Sepolia test network" - }, - "connectingToMainnet": { - "message": "Connecting to Ethereum Mainnet" - }, - "connectingToSepolia": { - "message": "Connecting to Sepolia test network" - }, - "connectionDescription": { - "message": "Connect this website with MetaMask" - }, - "connectionFailed": { - "message": "Connection failed" - }, - "connectionFailedDescription": { - "message": "Fetching of $1 failed, check your network and try again.", - "description": "$1 is the name of the snap being fetched." - }, - "connectionPopoverDescription": { - "message": "To connect to a site, select the connect button. MetaMask can only connect to web3 sites." - }, - "connectionRequest": { - "message": "Connection request" - }, - "connectionsRemovedModalDescription": { - "message": "Some connections (like hardware wallets and snaps) were removed due to inactivity on this device. You can re-add them anytime in Settings." - }, - "connectionsRemovedModalTitle": { - "message": "Connections removed" - }, - "contactDeleted": { - "message": "Contact deleted" - }, - "contactDetails": { - "message": "Contact details" - }, - "contactUpdated": { - "message": "Contact updated" - }, - "contactUs": { - "message": "Contact us" - }, - "contacts": { - "message": "Contacts" - }, - "contentFromSnap": { - "message": "Content from $1", - "description": "$1 represents the name of the snap" - }, - "continue": { - "message": "Continue" - }, - "contract": { - "message": "Contract" - }, - "contractAddress": { - "message": "Contract address" - }, - "contractAddressError": { - "message": "You are sending tokens to the token's contract address. This may result in the loss of these tokens." - }, - "contractDeployment": { - "message": "Contract deployment" - }, - "contractInteraction": { - "message": "Contract interaction" - }, - "convertTokenToNFTDescription": { - "message": "We've detected that this asset is an NFT. MetaMask now has full native support for NFTs. Would you like to remove it from your token list and add it as an NFT?" - }, - "convertTokenToNFTExistDescription": { - "message": "We’ve detected that this asset has been added as an NFT. Would you like to remove it from your token list?" - }, - "coolWallet": { - "message": "CoolWallet" - }, - "copiedExclamation": { - "message": "Copied." - }, - "copiedToClipboard": { - "message": "Copied to clipboard" - }, - "copyAddress": { - "message": "Copy address to clipboard" - }, - "copyAddressShort": { - "message": "Copy address" - }, - "copyPrivateKey": { - "message": "Copy private key" - }, - "copyToClipboard": { - "message": "Copy to clipboard" - }, - "copyTransactionId": { - "message": "Copy transaction ID" - }, - "correct": { - "message": "Correct" - }, - "create": { - "message": "Create" - }, - "createMultichainAccountButton": { - "message": "Add account", - "description": "Name of a button used on multichain account related pages for triggering the account creation process." - }, - "createMultichainAccountButtonLoading": { - "message": "Adding account...", - "description": "Name of a button in loading state, used on multichain account related pages for the account creation process." - }, - "createNewAccountHeader": { - "message": "Create a new account" - }, - "createPassword": { - "message": "MetaMask password" - }, - "createPasswordCreate": { - "message": "Create password" - }, - "createPasswordDetails": { - "message": "Unlocks MetaMask on this device only." - }, - "createPasswordDetailsSocial": { - "message": "Losing this password means losing wallet access on all devices, $1", - "description": "$1 is the text 'MetaMask can't reset it.'" - }, - "createPasswordDetailsSocialReset": { - "message": "MetaMask can't reset it." - }, - "createPasswordMarketing": { - "message": "Get product updates, tips, and news including by email. We may use your interactions to improve what we share." - }, - "createSnapAccountDescription": { - "message": "$1 wants to add a new account to MetaMask." - }, - "createSnapAccountTitle": { - "message": "Create account" - }, - "createSolanaAccount": { - "message": "Create Solana account" - }, - "creatorAddress": { - "message": "Creator address" - }, - "criticalErrorAttemptRecovery": { - "message": "Attempt recovery" - }, - "criticalErrorFooterContactSupport": { - "message": "If none of the above works, $1", - "description": "Footer on the critical error screen. $1 is the 'contact support' link." - }, - "criticalErrorReinstallMetamask": { - "message": "Reinstall MetaMask" - }, - "criticalErrorStillHavingIssues": { - "message": "Still having issues?" - }, - "cryptoCompare": { - "message": "CryptoCompare" - }, - "currencyRateCheckToggle": { - "message": "Show balance and token price checker" - }, - "currencyRateCheckToggleDescription": { - "message": "We use $1 and $2 APIs to display your balance and token price. $3", - "description": "$1 represents Coingecko, $2 represents CryptoCompare and $3 represents Privacy Policy" - }, - "currencySymbol": { - "message": "Currency symbol" - }, - "currencySymbolDefinition": { - "message": "The ticker symbol displayed for this network’s currency." - }, - "current": { - "message": "Current" - }, - "currentAccountNotConnected": { - "message": "Your current account is not connected" - }, - "currentEstimatedBaseFee": { - "message": "Current: $1 GWEI" - }, - "currentEstimatedPriorityFeeRange": { - "message": "Current: $1 - $2 GWEI" - }, - "currentExtension": { - "message": "Current extension page" - }, - "currentHistoricalBaseFeeRange": { - "message": "12 hr: $1 - $2 GWEI" - }, - "currentHistoricalPriorityFeeRange": { - "message": "12 hr: $1 - $2 GWEI" - }, - "currentNetwork": { - "message": "Current network", - "description": "Speicifies to token network filter to filter by current Network. Will render when network nickname is not available" - }, - "currentQuestion": { - "message": "Question $1 of 2" - }, - "currentlyUnavailable": { - "message": "Unavailable on this network" - }, - "curveHighGasEstimate": { - "message": "Aggressive gas estimate graph" - }, - "curveLowGasEstimate": { - "message": "Low gas estimate graph" - }, - "curveMediumGasEstimate": { - "message": "Market gas estimate graph" - }, - "custom": { - "message": "Advanced" - }, - "customGasSettingToolTipMessage": { - "message": "Use $1 to customize the gas price. This can be confusing if you aren’t familiar. Interact at your own risk.", - "description": "$1 is key 'advanced' (text: 'Advanced') separated here so that it can be passed in with bold font-weight" - }, - "customNetworks": { - "message": "Custom networks" - }, - "customSlippage": { - "message": "Custom" - }, - "customToken": { - "message": "Custom token" - }, - "customTokenWarningInTokenDetectionNetwork": { - "message": "Anyone can create a token, including creating fake versions of existing tokens. Learn about $1" - }, - "customerSupport": { - "message": "customer support" - }, - "customizeYourNotifications": { - "message": "Customize your notifications" - }, - "customizeYourNotificationsText": { - "message": "Turn on the types of notifications you want to receive:" - }, - "dappConnections": { - "message": "Dapp Connections" - }, - "dappScanMaliciousTitle": { - "message": "Malicious website detected" - }, - "dappScanMaliciousWarning": { - "message": "This website is flagged as potentially dangerous. If you reveal your Secret Recovery Phrase, you could put your funds at risk." - }, - "dappSuggested": { - "message": "Site suggested" - }, - "dappSuggestedGasSettingToolTipMessage": { - "message": "$1 has suggested this price.", - "description": "$1 is url for the dapp that has suggested gas settings" - }, - "dappSuggestedHigh": { - "message": "Site suggested" - }, - "dappSwapAdvantage": { - "message": "Save and earn with MetaMask Swaps" - }, - "dappSwapAdvantageSaveOnly": { - "message": "Save with MetaMask Swaps" - }, - "dappSwapBenefits": { - "message": "Network fees refunded on failed swaps" - }, - "dappSwapQuoteDifference": { - "message": "Save $1" - }, - "dappSwapRewardText": { - "message": "Earn $1 points" - }, - "darkTheme": { - "message": "Dark" - }, - "data": { - "message": "Data" - }, - "dataCollectionForMarketing": { - "message": "Data collection for marketing" - }, - "dataCollectionForMarketingDescription": { - "message": "We'll use MetaMetrics to learn how you interact with our marketing communications. We may share relevant news (like product features and other materials)." - }, - "dataCollectionForMarketingDescriptionSocialLogin": { - "message": "Get product updates, tips, and news - including by email. We may use your interactions to improve what we share." - }, - "dataUnavailable": { - "message": "data unavailable" - }, - "date": { - "message": "Date" - }, - "dateCreated": { - "message": "Date created" - }, - "dcent": { - "message": "D'Cent" - }, - "debitCreditPurchaseOptions": { - "message": "Debit or credit card purchase options" - }, - "debug": { - "message": "Debug" - }, - "decimal": { - "message": "Token decimal" - }, - "decimalsMustZerotoTen": { - "message": "Decimals must be at least 0, and not over 36." - }, - "decrypt": { - "message": "Decrypt" - }, - "decryptCopy": { - "message": "Copy encrypted message" - }, - "decryptInlineError": { - "message": "This message cannot be decrypted due to error: $1", - "description": "$1 is error message" - }, - "decryptMessageNotice": { - "message": "$1 would like to read this message to complete your action", - "description": "$1 is the web3 site name" - }, - "decryptMetamask": { - "message": "Decrypt message" - }, - "decryptRequest": { - "message": "Decrypt request" - }, - "deepLink_Caution": { - "message": "Proceed with caution" - }, - "deepLink_Continue": { - "message": "Continue" - }, - "deepLink_ContinueDescription": { - "message": "You'll open $1 if you continue.", - "description": "$1 is the name of the page they'll be redirected to if they click the Continue button. Examples of $1: 'the home page'; 'the buy page'; 'the swaps page'; 'the notifications page'" - }, - "deepLink_DontRemindMeAgain": { - "message": "Don't remind me again" - }, - "deepLink_Error404Description": { - "message": "We can't find the page you are looking for." - }, - "deepLink_Error404Title": { - "message": "This page doesn't exist" - }, - "deepLink_Error404_CTA": { - "message": "$1 and we'll take you to the right place.", - "description": "$1 is a link with the text found in `deepLink_Error404_CTA_LinkText`" - }, - "deepLink_Error404_CTA_LinkText": { - "message": "Update to the latest version of MetaMask", - "description": "Part of `deepLink_Error404_CTA`. The text links to https://support.metamask.io/configure/wallet/how-to-update-the-version-of-metamask/" - }, - "deepLink_ErrorMissingUrl": { - "message": "No url to navigate to was provided." - }, - "deepLink_ErrorOtherDescription": { - "message": "This is a bug and should be reported to MetaMask." - }, - "deepLink_ErrorOtherTitle": { - "message": "An error occurred while processing the deep link" - }, - "deepLink_GoToTheHomePageButton": { - "message": "Go to the home page" - }, - "deepLink_RedirectingToMetaMask": { - "message": "Redirecting to MetaMask" - }, - "deepLink_ThirdPartyDescription": { - "message": "You were sent here by a third party, not MetaMask. $1", - "description": "$1 is the message 'deepLink_ContinueDescription'" - }, - "deepLink_theAssetPage": { - "message": "the asset page" - }, - "deepLink_theBuyPage": { - "message": "the buy page" - }, - "deepLink_theCardOnboardingPage": { - "message": "the MetaMask Card onboarding page" - }, - "deepLink_theHomePage": { - "message": "the home page" - }, - "deepLink_theMusdEducationPage": { - "message": "the MUSD conversion education page" - }, - "deepLink_theNFTsPage": { - "message": "the NFTs page" - }, - "deepLink_theNotificationsPage": { - "message": "the notifications page" - }, - "deepLink_theOnboardingPage": { - "message": "the onboarding page" - }, - "deepLink_thePerpsMarketDetailPage": { - "message": "the perps market page" - }, - "deepLink_thePerpsPage": { - "message": "the perps page" - }, - "deepLink_thePredictPage": { - "message": "the prediction markets page" - }, - "deepLink_theRewardsPage": { - "message": "the MetaMask Rewards page" - }, - "deepLink_theSellPage": { - "message": "the sell page" - }, - "deepLink_theSwapsPage": { - "message": "the swaps page" - }, - "deepLink_theSwapsRampsPage": { - "message": "the Swaps/Ramps page" - }, - "deepLink_theTransactionShieldPage": { - "message": "the transaction shield page" - }, - "default": { - "message": "Default" - }, - "defaultRpcUrl": { - "message": "Default RPC URL" - }, - "defaultSettingsSubTitle": { - "message": "MetaMask uses default settings to best balance safety and ease of use. Change these settings to further increase your privacy." - }, - "defaultSettingsTitle": { - "message": "Default privacy settings" - }, - "defi": { - "message": "DeFi" - }, - "defiEmptyDescription": { - "message": "Lend, borrow, and trade, right in your wallet." - }, - "defiReferralCheckboxLabel": { - "message": "Allow MetaMask to add a referral code. This is permanent. The site offers discounts per their terms. MetaMask earns a fee.", - "description": "The text for the checkbox label in the DeFi referral confirmation screen" - }, - "defiReferralNoThanks": { - "message": "No thanks", - "description": "Secondary button label to decline on the DeFi referral confirmation screen" - }, - "defiReferralTerms": { - "message": "terms", - "description": "Accessible label for the partner terms link within the DeFi referral consent subtitle" - }, - "defiReferralTitle": { - "message": "MetaMask x $1", - "description": "The title of the DeFi referral confirmation screen. $1 is the name of the partner" - }, - "defiTabErrorContent": { - "message": "Try visiting again later." - }, - "defiTabErrorTitle": { - "message": "We could not load this page." - }, - "delete": { - "message": "Delete" - }, - "deleteActivityAndNonceData": { - "message": "Delete activity and nonce data" - }, - "deleteMetaMetricsData": { - "message": "Delete MetaMetrics data" - }, - "deleteMetaMetricsDataDescription": { - "message": "This will delete historical MetaMetrics data associated with your use on this device. Your wallet and accounts will remain exactly as they are now after this data has been deleted. This process may take up to 30 days. View our $1.", - "description": "$1 will have text saying Privacy Policy " - }, - "deleteMetaMetricsDataDescriptionV2": { - "message": "This will delete historical MetaMetrics data associated with your wallet. MetaMetrics includes anonymized usage and diagnostic data. Your wallet and accounts will remain the same. This process may take up to 30 days. View our $1.", - "description": "$1 will have text saying Privacy Policy " - }, - "deleteMetaMetricsDataErrorDesc": { - "message": "This request can't be completed right now due to an analytics system server issue, please try again later." - }, - "deleteMetaMetricsDataErrorTitle": { - "message": "We are unable to delete this data right now" - }, - "deleteMetaMetricsDataErrorToast": { - "message": "Unable to delete" - }, - "deleteMetaMetricsDataModalDesc": { - "message": "We are about to remove all your MetaMetrics data. Are you sure?" - }, - "deleteMetaMetricsDataModalTitle": { - "message": "Delete MetaMetrics data?" - }, - "deleteMetaMetricsDataRequestedDescription": { - "message": "You initiated deletion on $1. This process can take up to 30 days. View the $2.", - "description": "$1 will be the date on which teh deletion is requested and $2 will have text saying Privacy Policy " - }, - "deleteMetaMetricsDataToast": { - "message": "Data will be deleted within 30 days" - }, - "deleteNetworkIntro": { - "message": "If you delete this network, you will need to add it again to view your assets in this network" - }, - "deleteNetworkTitle": { - "message": "Delete $1 network?", - "description": "$1 represents the name of the network" - }, - "depositCrypto": { - "message": "Deposit crypto from another account with a wallet address or QR code." - }, - "deprecatedNetwork": { - "message": "This network is deprecated" - }, - "deprecatedNetworkButtonMsg": { - "message": "Got it" - }, - "deprecatedNetworkDescription": { - "message": "The network you're trying to connect to is no longer supported by MetaMask. $1" - }, - "description": { - "message": "Description" - }, - "descriptionFromSnap": { - "message": "Description from $1", - "description": "$1 represents the name of the snap" - }, - "destinationAccountPickerNoEligible": { - "message": "No eligible accounts found" - }, - "destinationAccountPickerNoMatching": { - "message": "No matching accounts found" - }, - "destinationAccountPickerSearchPlaceholderToMainnet": { - "message": "Receiving address or ENS" - }, - "destinationAccountPickerSearchPlaceholderToSolana": { - "message": "Receiving address" - }, - "destinationTransactionIdLabel": { - "message": "Destination Tx ID", - "description": "Label for the destination transaction ID field." - }, - "details": { - "message": "Details" - }, - "developerTools": { - "message": "Developer tools" - }, - "disabledGasOptionToolTipMessage": { - "message": "“$1” is disabled because it does not meet the minimum of a 10% increase from the original gas fee.", - "description": "$1 is gas estimate type which can be market or aggressive" - }, - "disconnect": { - "message": "Disconnect" - }, - "disconnectAllAccounts": { - "message": "Disconnect all accounts" - }, - "disconnectAllAccountsConfirmationDescription": { - "message": "Are you sure you want to disconnect? You may lose site functionality." - }, - "disconnectAllAccountsText": { - "message": "accounts" - }, - "disconnectAllDescriptionText": { - "message": "If you disconnect from this site, you’ll need to reconnect your accounts and networks to use this site again." - }, - "disconnectAllSites": { - "message": "Disconnect All" - }, - "disconnectAllSitesDescriptionText": { - "message": "If you disconnect from all sites, you'll need to reconnect your accounts and networks to use them again." - }, - "disconnectAllSitesError": { - "message": "Some dapps couldn't be disconnected. Please try again." - }, - "disconnectAllSitesSuccess": { - "message": "All dapps successfully disconnected." - }, - "disconnectAllSnapsText": { - "message": "Snaps" - }, - "disconnectMessage": { - "message": "This will disconnect you from this site" - }, - "disconnectPrompt": { - "message": "Disconnect $1" - }, - "disconnectThisAccount": { - "message": "Disconnect this account" - }, - "discover": { - "message": "Discover" - }, - "discoverSnaps": { - "message": "Discover Snaps", - "description": "Text that links to the Snaps website. Displayed in a banner on Snaps list page in settings." - }, - "dismiss": { - "message": "Dismiss" - }, - "displayNftMedia": { - "message": "Display NFT media" - }, - "displayNftMediaDescriptionV2": { - "message": "NFT autodetection relies on this feature." - }, - "doNotShare": { - "message": "Do not share this with anyone" - }, - "domain": { - "message": "Domain" - }, - "done": { - "message": "Done" - }, - "dontShowThisAgain": { - "message": "Don't show this again" - }, - "download": { - "message": "Download" - }, - "downloadAppDescription": { - "message": "Bring MetaMask with you everywhere you go. Turn on Face ID so you always have access, even if you forget your password." - }, - "downloadAppTitle": { - "message": "Scan QR code and download the app" - }, - "downloadGoogleChrome": { - "message": "Download Google Chrome" - }, - "downloadMetaMaskMobileDescription": { - "message": "Face ID on our app lets you in even if you forget your password. Take MetaMask everywhere you go!" - }, - "downloadMetaMaskMobileQrNote": { - "message": "Scan this QR code to get started." - }, - "downloadMetaMaskMobileTitle": { - "message": "Get our mobile app" - }, - "downloadNow": { - "message": "Download now" - }, - "downloadStateLogs": { - "message": "Download state logs" - }, - "dropped": { - "message": "Dropped" - }, - "duplicateContactTooltip": { - "message": "This contact name collides with an existing account or contact" - }, - "duplicateContactWarning": { - "message": "You have duplicate contacts" - }, - "durationSuffixDay": { - "message": "D", - "description": "Shortened form of 'day'" - }, - "durationSuffixHour": { - "message": "H", - "description": "Shortened form of 'hour'" - }, - "durationSuffixMillisecond": { - "message": "MS", - "description": "Shortened form of 'millisecond'" - }, - "durationSuffixMinute": { - "message": "M", - "description": "Shortened form of 'minute'" - }, - "durationSuffixMonth": { - "message": "M", - "description": "Shortened form of 'month'" - }, - "durationSuffixSecond": { - "message": "S", - "description": "Shortened form of 'second'" - }, - "durationSuffixWeek": { - "message": "W", - "description": "Shortened form of 'week'" - }, - "durationSuffixYear": { - "message": "Y", - "description": "Shortened form of 'year'" - }, - "earn": { - "message": "Earn" - }, - "edit": { - "message": "Edit" - }, - "editANickname": { - "message": "Edit nickname" - }, - "editAccounts": { - "message": "Edit accounts" - }, - "editAddressNickname": { - "message": "Edit address nickname" - }, - "editContact": { - "message": "Edit contact" - }, - "editGasFeeModalTitle": { - "message": "Edit gas fee" - }, - "editGasLimitOutOfBounds": { - "message": "Gas limit must be at least $1" - }, - "editGasMaxFeeHigh": { - "message": "Max fee is higher than necessary" - }, - "editGasMaxFeeLow": { - "message": "Max fee too low for network conditions" - }, - "editGasMaxFeePriorityImbalance": { - "message": "Max fee cannot be lower than max priority fee" - }, - "editGasMaxPriorityFeeBelowMinimum": { - "message": "Max priority fee must be greater than 0 GWEI" - }, - "editGasMaxPriorityFeeHigh": { - "message": "Max priority fee is higher than necessary. You may pay more than needed." - }, - "editGasMaxPriorityFeeLow": { - "message": "Max priority fee is low for current network conditions" - }, - "editGasPriceTooLow": { - "message": "Gas price must be greater than 0" - }, - "editGasTooLow": { - "message": "Unknown processing time" - }, - "editInPortfolio": { - "message": "Edit in Portfolio" - }, - "editNetwork": { - "message": "Edit network" - }, - "editNetworkLink": { - "message": "edit the original network" - }, - "editNetworksTitle": { - "message": "Edit networks" - }, - "editNonceField": { - "message": "Edit nonce" - }, - "editNonceMessage": { - "message": "This is an advanced feature, use cautiously." - }, - "editPermissions": { - "message": "Edit permissions" - }, - "editSpendingCap": { - "message": "Edit spending cap" - }, - "editSpendingCapAccountBalance": { - "message": "Account balance: $1 $2" - }, - "editSpendingCapDesc": { - "message": "Enter the amount that you feel comfortable being spent on your behalf." - }, - "editSpendingCapError": { - "message": "The spending cap can’t exceed $1 decimal digits. Remove decimal digits to continue." - }, - "editSpendingCapSpecialCharError": { - "message": "Enter numbers only" - }, - "enableAutoDetect": { - "message": " Enable autodetect" - }, - "enableFromSettings": { - "message": " Enable it from Settings." - }, - "enableSmartContractAccount": { - "message": "Use smart account" - }, - "enableSmartContractAccountDescription": { - "message": "Unlock faster transactions, lower network fees, and added security on supported networks." - }, - "enableSnap": { - "message": "Enable" - }, - "enableToken": { - "message": "enable $1", - "description": "$1 is a token symbol, e.g. ETH" - }, - "enabled": { - "message": "Enabled" - }, - "enabledNetworks": { - "message": "Enabled networks" - }, - "encryptionPublicKeyNotice": { - "message": "$1 would like your public encryption key. By consenting, this site will be able to compose encrypted messages to you.", - "description": "$1 is the web3 site name" - }, - "encryptionPublicKeyRequest": { - "message": "Request encryption public key" - }, - "endpointReturnedDifferentChainId": { - "message": "The RPC URL you have entered returned a different chain ID ($1).", - "description": "$1 is the return value of eth_chainId from an RPC endpoint" - }, - "enhancedTokenDetectionAlertMessage": { - "message": "Enhanced token detection is currently available on $1. $2" - }, - "ensDomainsSettingDescriptionIntroduction": { - "message": "MetaMask lets you see ENS domains right in your browser's address bar. Here's how it works:" - }, - "ensDomainsSettingDescriptionOutroduction": { - "message": "Keep in mind that using this feature exposes your IP address to IPFS third-party services." - }, - "ensDomainsSettingDescriptionPart1": { - "message": "MetaMask checks with Ethereum's ENS contract to find the code connected to the ENS name." - }, - "ensDomainsSettingDescriptionPart2": { - "message": "If the code links to IPFS, you can see the content associated with it (usually a website)." - }, - "ensDomainsSettingTitle": { - "message": "Show ENS domains in address bar" - }, - "ensUnknownError": { - "message": "ENS lookup failed." - }, - "enterANameToIdentifyTheUrl": { - "message": "Enter a name to identify the URL" - }, - "enterChainId": { - "message": "Enter Chain ID" - }, - "enterNetworkName": { - "message": "Enter network name" - }, - "enterOptionalPassword": { - "message": "Enter optional password" - }, - "enterPasswordContinue": { - "message": "Enter password to continue" - }, - "enterPasswordCurrent": { - "message": "Enter your current password" - }, - "enterRpcUrl": { - "message": "Enter RPC URL" - }, - "enterSymbol": { - "message": "Enter symbol" - }, - "enterTokenAddress": { - "message": "Enter token address" - }, - "enterTokenNameOrAddress": { - "message": "Enter token name or paste address" - }, - "enterTokenNameOrAddressManageTokens": { - "message": "Enter token name or address" - }, - "enterYourPassword": { - "message": "Enter your password" - }, - "enterYourPasswordContinue": { - "message": "Enter password to continue" - }, - "enterYourPasswordSocialLoginFlow": { - "message": "Enter MetaMask password" - }, - "errorCode": { - "message": "Code: $1", - "description": "Displayed error code for debugging purposes. $1 is the error code" - }, - "errorGettingSafeChainList": { - "message": "Error while getting safe chain list, please continue with caution." - }, - "errorLegalTextFirstInfo": { - "message": "Technical diagnostic information." - }, - "errorLegalTextNoPersonalInfo": { - "message": "No personal information or other device information will be collected." - }, - "errorLegalTextSecondInfo": { - "message": "Your browser, operating system, and MetaMask versions." - }, - "errorLegalTextSummary": { - "message": "We will receive a single error report, containing:" - }, - "errorMessage": { - "message": "Message: $1", - "description": "Displayed error message for debugging purposes. $1 is the error message" - }, - "errorName": { - "message": "Code: $1", - "description": "Displayed error name for debugging purposes. $1 is the error name" - }, - "errorPageContactSupport": { - "message": "Contact support", - "description": "Button for contact MM support" - }, - "errorPageDescribeUsWhatHappened": { - "message": "Describe what happened", - "description": "Button for submitting report to sentry" - }, - "errorPageInfo": { - "message": "Your information can’t be shown. Don’t worry, your wallet and funds are safe.", - "description": "Information banner shown in the error page" - }, - "errorPageMessageTitle": { - "message": "Error message", - "description": "Title for description, which is displayed for debugging purposes" - }, - "errorPageSentryFormTitle": { - "message": "Describe what happened", - "description": "In sentry feedback form, The title at the top of the feedback form." - }, - "errorPageSentryMessagePlaceholder": { - "message": "Sharing details like how we can reproduce the bug will help us fix the problem.", - "description": "In sentry feedback form, The placeholder for the feedback description input field." - }, - "errorPageSentrySuccessMessageText": { - "message": "Thanks! We will take a look soon.", - "description": "In sentry feedback form, The message displayed after a successful feedback submission." - }, - "errorPageTitle": { - "message": "MetaMask encountered an error", - "description": "Title of generic error page" - }, - "errorPageTryAgain": { - "message": "Try again", - "description": "Button for try again" - }, - "errorStack": { - "message": "Stack:", - "description": "Title for error stack, which is displayed for debugging purposes" - }, - "errorWhileConnectingToRPC": { - "message": "Error while connecting to the custom network." - }, - "errorWithSnap": { - "message": "Error with $1", - "description": "$1 represents the name of the snap" - }, - "estimatedChanges": { - "message": "Estimated changes" - }, - "estimatedFee": { - "message": "Estimated fee" - }, - "estimatedFeeTooltip": { - "message": "Amount paid to process the transaction on network." - }, - "estimatedPointsRow": { - "message": "Est. points" - }, - "estimatedTime": { - "message": "Estimated time" - }, - "ethGasPriceFetchWarning": { - "message": "Backup gas price is provided as the main gas estimation service is unavailable right now." - }, - "ethereumAndEvms": { - "message": "Ethereum and EVMs" - }, - "ethereumProviderAccess": { - "message": "Grant Ethereum provider access to $1", - "description": "The parameter is the name of the requesting origin" - }, - "etherscan": { - "message": "Etherscan" - }, - "etherscanView": { - "message": "View account on Etherscan" - }, - "etherscanViewOn": { - "message": "View on Etherscan" - }, - "existingChainId": { - "message": "The information you have entered is associated with an existing chain ID." - }, - "experimental": { - "message": "Experimental" - }, - "exploreDefi": { - "message": "Explore DeFi" - }, - "exportYourData": { - "message": "Export your data" - }, - "exportYourDataButton": { - "message": "Download" - }, - "exportYourDataDescription": { - "message": "You can export data like your contacts and preferences." - }, - "extendWalletWithSnaps": { - "message": "Explore community-built Snaps to customize your web3 experience", - "description": "Banner description displayed on Snaps list page in Settings when less than 6 Snaps is installed." - }, - "externalAccount": { - "message": "External account" - }, - "externalExtension": { - "message": "External extension" - }, - "externalNameSourcesSetting": { - "message": "Proposed nicknames" - }, - "externalNameSourcesSettingDescription": { - "message": "We’ll fetch proposed nicknames for addresses you interact with from third-party sources like Etherscan, Infura, and Lens Protocol. These sources will be able to see those addresses and your IP address. Your account address won’t be exposed to third parties." - }, - "externalNameSourcesSettingDescriptionV2": { - "message": "Fetches proposed nicknames for addresses you interact with from third-party sources like Etherscan, Infura, and Lens protocol." - }, - "failed": { - "message": "Failed" - }, - "failedToFetchChainId": { - "message": "Could not fetch chain ID. Is your RPC URL correct?" - }, - "failover": { - "message": "Failover" - }, - "failoverRpcUrl": { - "message": "Failover RPC URL" - }, - "failureMessage": { - "message": "Something went wrong, and we were unable to complete the action" - }, - "fast": { - "message": "Fast" - }, - "fieldRequired": { - "message": "$1 is required" - }, - "fileImportFail": { - "message": "File import not working? Click here!", - "description": "Helps user import their account from a JSON file" - }, - "fileUploaderDescription": { - "message": "Click to upload or drag and drop" - }, - "fileUploaderInvalidFileTypeError": { - "message": "Invalid file type. Please upload a supported file format." - }, - "fileUploaderMaxFileSizeError": { - "message": "File size exceeds $1MB. Please upload a smaller file.", - "description": "$1 is the maximum file size in MB" - }, - "flaskWelcomeUninstall": { - "message": "you should uninstall this extension", - "description": "This request is shown on the Flask Welcome screen. It is intended for non-developers, and will be bolded." - }, - "flaskWelcomeWarning1": { - "message": "Flask is for developers to experiment with new unstable APIs. Unless you are a developer or beta tester, $1.", - "description": "This is a warning shown on the Flask Welcome screen, intended to encourage non-developers not to proceed any further. $1 is the bolded message 'flaskWelcomeUninstall'" - }, - "flaskWelcomeWarning2": { - "message": "We do not guarantee the safety or stability of this extension. The new APIs offered by Flask are not hardened against phishing attacks, meaning that any site or snap that requires Flask might be a malicious attempt to steal your assets.", - "description": "This explains the risks of using MetaMask Flask" - }, - "flaskWelcomeWarning3": { - "message": "All Flask APIs are experimental. They may be changed or removed without notice, or they might stay on Flask indefinitely without ever being migrated to stable MetaMask. Use them at your own risk.", - "description": "This message warns developers about unstable Flask APIs" - }, - "flaskWelcomeWarning4": { - "message": "Make sure to disable your regular MetaMask extension when using Flask.", - "description": "This message calls to pay attention about multiple versions of MetaMask running on the same site (Flask + Prod)" - }, - "flaskWelcomeWarningAcceptButton": { - "message": "I accept the risks", - "description": "this text is shown on a button, which the user presses to confirm they understand the risks of using Flask" - }, - "floatAmountToken": { - "message": "Token amount must be an integer" - }, - "forbiddenIpfsGateway": { - "message": "Forbidden IPFS Gateway: Please specify a CID gateway" - }, - "forgetDevice": { - "message": "Forget this device" - }, - "forgotPassword": { - "message": "Forgot password?" - }, - "forgotPasswordModalButton": { - "message": "Import wallet" - }, - "forgotPasswordModalButtonLink": { - "message": "I don’t know my Phrase" - }, - "forgotPasswordModalContactSupport": { - "message": "$1 if you need help.", - "description": "$1 is the support link" - }, - "forgotPasswordModalContactSupportLink": { - "message": "Contact support" - }, - "forgotPasswordModalDescription1": { - "message": "We can’t recover your password for you." - }, - "forgotPasswordModalDescription2": { - "message": "Add your wallet back to MetaMask by entering the Secret Recovery Phrase associated with it." - }, - "forgotPasswordModalTitle": { - "message": "Forgot your password?" - }, - "forgotPasswordSocialDescription": { - "message": "We can’t recover your password, but there are ways you can regain access to your wallet. $1 if you need help.", - "description": "$1 is the support link" - }, - "forgotPasswordSocialStep1": { - "message": "$1 If you’re logged in on a device with Touch or Face ID, reset your password there.", - "description": "$1 is bold heading" - }, - "forgotPasswordSocialStep1Biometrics": { - "message": "Touch/Face ID:" - }, - "forgotPasswordSocialStep2": { - "message": "$1: If you have your Secret Recovery Phrase, you can use it to import your wallet to this device.", - "description": "$1 is bold Secret Recovery Phrase" - }, - "form": { - "message": "form" - }, - "freeTrialDays": { - "message": "Free $1-day trial", - "description": "The $1 is the number of days" - }, - "from": { - "message": "From" - }, - "function": { - "message": "Function: $1" - }, - "fundYourWallet": { - "message": "Fund your wallet", - "description": "Title for the balance empty state component encouraging users to add funds" - }, - "gas": { - "message": "Gas" - }, - "gasLimit": { - "message": "Gas limit" - }, - "gasLimitTooLow": { - "message": "Gas limit must be at least 21000" - }, - "gasPrice": { - "message": "Gas price" - }, - "gasPriceExcessive": { - "message": "Your gas fee is set unnecessarily high. Consider lowering the amount." - }, - "gasPriceFetchFailed": { - "message": "Gas price estimation failed due to network error." - }, - "gasSponsorshipReserveBalanceWarning": { - "message": "Gas sponsorship isn’t available for this transaction. You’ll need to keep at least $1 $2 in your account.", - "description": "$1 is the minimum required balance and $2 is the native currency symbol." - }, - "gasTimingHoursShort": { - "message": "$1 hrs", - "description": "$1 represents a number of hours" - }, - "gasTimingLow": { - "message": "Slow" - }, - "gasTimingMinutesShort": { - "message": "$1 min", - "description": "$1 represents a number of minutes" - }, - "gasTimingSecondsShort": { - "message": "$1 sec", - "description": "$1 represents a number of seconds" - }, - "gasUsed": { - "message": "Gas used" - }, - "gatorNoJustificationProvided": { - "message": "No justification was provided for the permission" - }, - "gatorPermissionAnnualFrequency": { - "message": "Yearly", - "description": "Time period for annual recurring permissions redemption" - }, - "gatorPermissionCustomFrequency": { - "message": "Custom", - "description": "Time period for custom recurring permissions redemption" - }, - "gatorPermissionDailyFrequency": { - "message": "Daily", - "description": "Time period for daily recurring permissions redemption" - }, - "gatorPermissionFortnightlyFrequency": { - "message": "Bi-Weekly", - "description": "Time period for fortnightly recurring permissions redemption" - }, - "gatorPermissionMonthlyFrequency": { - "message": "Monthly", - "description": "Time period for monthly recurring permissions redemption" - }, - "gatorPermissionNoExpiration": { - "message": "No expiration", - "description": "Label for a permission with no expiration" - }, - "gatorPermissionTokenPeriodicFrequencyLabel": { - "message": "Transfer window", - "description": "Label for the transfer window of a token periodic permission" - }, - "gatorPermissionTokenStreamFrequencyLabel": { - "message": "Period", - "description": "Label for the period of a token stream permission" - }, - "gatorPermissionWeeklyFrequency": { - "message": "Weekly", - "description": "Time period for weekly recurring permissions redemption" - }, - "gatorPermissionsExpirationDate": { - "message": "Expiration date", - "description": "Label for the expiration date of a permission" - }, - "gatorPermissionsHideDetails": { - "message": "Hide details", - "description": "Button text to hide permission details" - }, - "gatorPermissionsInitialAllowance": { - "message": "Initial allowance", - "description": "Label for the initial allowance of a permission" - }, - "gatorPermissionsJustification": { - "message": "Justification", - "description": "Label for the justification" - }, - "gatorPermissionsMaxAllowance": { - "message": "Max allowance", - "description": "Label for the max allowance of a permission" - }, - "gatorPermissionsRevocationPending": { - "message": "Revocation pending", - "description": "Label for a gator permission that is pending a revocation transaction" - }, - "gatorPermissionsRevoke": { - "message": "Revoke", - "description": "Label for the revoke button of a gator permission" - }, - "gatorPermissionsShowDetails": { - "message": "Show details", - "description": "Button text to show permission details" - }, - "gatorPermissionsStartDate": { - "message": "Start date", - "description": "Label for the start date of a permission" - }, - "gatorPermissionsStatusExpired": { - "message": "Expired", - "description": "Tag label for a gator permission that has expired" - }, - "gatorPermissionsStatusRevoked": { - "message": "Revoked", - "description": "Tag label for a gator permission that has been revoked" - }, - "gatorPermissionsStreamRate": { - "message": "Stream rate", - "description": "Label for the stream rate of a permission" - }, - "gatorPermissionsStreamingAmountLabel": { - "message": "Streaming amount", - "description": "Label for the stream rate of a permission" - }, - "general": { - "message": "General" - }, - "generalCameraError": { - "message": "We couldn't access your camera. Please give it another try." - }, - "generalCameraErrorTitle": { - "message": "Something went wrong...." - }, - "generalDescription": { - "message": "Sync settings across devices, select network preferences, and track token data" - }, - "genericExplorerView": { - "message": "View account on $1" - }, - "getDollarMore": { - "message": "Get $1 more" - }, - "getTheNewestFeatures": { - "message": "Get the newest features" - }, - "getYourWalletReadyToUseWeb3": { - "message": "Get your wallet ready to use web3", - "description": "Subtitle text for the balance empty state component explaining the purpose of adding funds" - }, - "gmxReferralConfirmText": { - "message": "Yes, save 5%", - "description": "Primary button label on the GMX referral confirmation screen" - }, - "gmxReferralSubtitle": { - "message": "Save up to 5% on trades with a MetaMask referral code.", - "description": "The subtitle of the GMX referral confirmation screen" - }, - "gmxReferralSubtitle2": { - "message": "Save 5% in trades with a MetaMask referral code. This discount applies to all future trades, as per GMX's $1. MetaMask earns a fee.", - "description": "Subtitle on the GMX referral confirmation screen. $1 is a link to the partner's terms." - }, - "gmxReferralTitle": { - "message": "Save 5% on GMX", - "description": "Title of the GMX referral confirmation screen" - }, - "goToSite": { - "message": "Go to site" - }, - "goerli": { - "message": "Goerli test network" - }, - "gotIt": { - "message": "Got it" - }, - "grantExactAccess": { - "message": "Grant exact access" - }, - "gwei": { - "message": "GWEI" - }, - "hardware": { - "message": "Hardware" - }, - "hardwareWalletConnected": { - "message": "Hardware wallet connected" - }, - "hardwareWalletErrorContinueButton": { - "message": "Continue" - }, - "hardwareWalletErrorReconnectButton": { - "message": "Reconnect" - }, - "hardwareWalletErrorRecoveryConnection1": { - "message": "Ensure your hardware wallet is properly connected via USB" - }, - "hardwareWalletErrorRecoveryConnection2": { - "message": "Try using a different USB cable or port" - }, - "hardwareWalletErrorRecoveryConnection3": { - "message": "Restart your device and try connecting again" - }, - "hardwareWalletErrorRecoveryConnection4": { - "message": "Your $1 device is unlocked", - "description": "$1 is the hardware wallet type" - }, - "hardwareWalletErrorRecoveryTitle": { - "message": "Continue to make sure:" - }, - "hardwareWalletErrorRecoveryUnlock1": { - "message": "Your $1 device is unlocked", - "description": "$1 is the hardware wallet type" - }, - "hardwareWalletErrorRecoveryUnlock2": { - "message": "The Ethereum app is open" - }, - "hardwareWalletErrorTitleBlindSignNotSupported": { - "message": "Enable blind signing" - }, - "hardwareWalletErrorTitleBlindSignNotSupportedInstruction1": { - "message": "The Ethereum app is open on your Ledger" - }, - "hardwareWalletErrorTitleBlindSignNotSupportedInstruction2": { - "message": "You’ve turned on Blind Signing in Settings" - }, - "hardwareWalletErrorTitleConnectYourDevice": { - "message": "Connect your $1", - "description": "$1 is the hardware wallet type" - }, - "hardwareWalletErrorTitleDeviceLocked": { - "message": "$1 locked", - "description": "$1 is the hardware wallet type" - }, - "hardwareWalletErrorUnknownErrorDescription": { - "message": "Make sure your $1 device is set up with the Secret Recovery Phrase or passphrase for the selected account", - "description": "$1 is the hardware wallet type" - }, - "hardwareWalletErrorUnknownErrorTitle": { - "message": "Something went wrong" - }, - "hardwareWalletEthAppNotOpenDescription": { - "message": "Open the Ethereum app on your device to continue" - }, - "hardwareWalletLegacyDescription": { - "message": "(legacy)", - "description": "Text representing the MEW path" - }, - "hardwareWalletLookingForDevice": { - "message": "Looking for your $1...", - "description": "$1 is the hardware wallet type" - }, - "hardwareWalletSubmissionWarningStep1": { - "message": "Be sure your $1 is plugged in and to select the Ethereum app." - }, - "hardwareWalletSubmissionWarningStep2": { - "message": "Enable \"smart contract data\" or \"blind signing\" on your $1 device." - }, - "hardwareWalletSubmissionWarningTitle": { - "message": "Prior to clicking Submit:" - }, - "hardwareWalletSupportLinkConversion": { - "message": "click here" - }, - "hardwareWalletTitleEthAppNotOpen": { - "message": "Open Ethereum app" - }, - "hardwareWalletTypeConnected": { - "message": "$1 connected", - "description": "$1 is the hardware wallet type" - }, - "hardwareWallets": { - "message": "Connect a hardware wallet" - }, - "hardwareWalletsInfo": { - "message": "Hardware wallet integrations use API calls to external servers, which can see your IP address and the smart contract addresses you interact with." - }, - "hardwareWalletsMsg": { - "message": "Select a hardware wallet you would like to use with MetaMask." - }, - "helpAndSettings": { - "message": "Help and settings" - }, - "here": { - "message": "here", - "description": "as in -click here- for more information (goes with troubleTokenBalances)" - }, - "hexData": { - "message": "Hex data" - }, - "hexDataPlaceholder": { - "message": "Enter hex data (optional)" - }, - "hidden": { - "message": "Hidden" - }, - "hide": { - "message": "Hide" - }, - "hideAccount": { - "message": "Hide account" - }, - "hideAdvancedDetails": { - "message": "Hide advanced details" - }, - "hideSentitiveInfo": { - "message": "Hide sensitive information" - }, - "hideTokenPrompt": { - "message": "Hide token?" - }, - "hideTokenSymbol": { - "message": "Hide $1", - "description": "$1 is the symbol for a token (e.g. 'DAI')" - }, - "hideZeroBalanceTokens": { - "message": "Hide tokens without balance" - }, - "high": { - "message": "Aggressive" - }, - "highGasSettingToolTipMessage": { - "message": "High probability, even in volatile markets. Use $1 to cover surges in network traffic due to things like popular NFT drops.", - "description": "$1 is key 'high' (text: 'Aggressive') separated here so that it can be passed in with bold font-weight" - }, - "highLowercase": { - "message": "high" - }, - "highestCurrentBid": { - "message": "Highest current bid" - }, - "highestFloorPrice": { - "message": "Highest floor price" - }, - "history": { - "message": "History" - }, - "holdToRevealContent1": { - "message": "Your Secret Recovery Phrase provides $1", - "description": "$1 is a bolded text with the message from 'holdToRevealContent2'" - }, - "holdToRevealContent2": { - "message": "full access to your wallet and funds.", - "description": "Is the bolded text in 'holdToRevealContent1'" - }, - "holdToRevealContent3": { - "message": "Do not share this with anyone. $1 $2", - "description": "$1 is a message from 'holdToRevealContent4' and $2 is a text link with the message from 'holdToRevealContent5'" - }, - "holdToRevealContent4": { - "message": "MetaMask Support will not request this,", - "description": "Part of 'holdToRevealContent3'" - }, - "holdToRevealContent5": { - "message": "but phishers might.", - "description": "The text link in 'holdToRevealContent3'" - }, - "holdToRevealContentPrivateKey1": { - "message": "Your Private Key provides $1", - "description": "$1 is a bolded text with the message from 'holdToRevealContentPrivateKey2'" - }, - "holdToRevealContentPrivateKey2": { - "message": "full access to your wallet and funds.", - "description": "Is the bolded text in 'holdToRevealContentPrivateKey2'" - }, - "holdToRevealLockedLabel": { - "message": "hold to reveal circle locked" - }, - "holdToRevealPrivateKey": { - "message": "Hold to reveal Private Key" - }, - "holdToRevealPrivateKeyTitle": { - "message": "Keep your private key safe" - }, - "holdToRevealSRP": { - "message": "Hold to reveal SRP" - }, - "holdToRevealSRPTitle": { - "message": "Keep your SRP safe" - }, - "holdToRevealUnlockedLabel": { - "message": "hold to reveal circle unlocked" - }, - "honeypotDescription": { - "message": "This token might pose a honeypot risk. It is advised to conduct due diligence before interacting to prevent any potential financial loss." - }, - "honeypotTitle": { - "message": "Honey pot" - }, - "hyperliquidReferralConfirmText": { - "message": "Yes, save 4%", - "description": "Primary button label on the Hyperliquid referral confirmation screen" - }, - "hyperliquidReferralSubtitle": { - "message": "Save up to 4% on trades with a MetaMask referral code.", - "description": "The subtitle of the Hyperliquid referral confirmation screen" - }, - "hyperliquidReferralSubtitle2": { - "message": "Save 4% on trades with a MetaMask referral code. Applies to all future trades per Hyperliquid's $1. MetaMask earns a fee.", - "description": "Subtitle on the Hyperliquid referral confirmation screen. $1 is a link to the partner's terms." - }, - "hyperliquidReferralTitle": { - "message": "Save 4% on Hyperliquid", - "description": "Title of the Hyperliquid referral confirmation screen" - }, - "iUnderstand": { - "message": "I understand" - }, - "id": { - "message": "ID" - }, - "imToken": { - "message": "imToken" - }, - "import": { - "message": "Import", - "description": "Button to import an account from a selected file" - }, - "importAWallet": { - "message": "Import a wallet" - }, - "importAWalletDescription": { - "message": "Using a 12, 18 or 24-word seed phrase" - }, - "importAccountError": { - "message": "Error importing account." - }, - "importAccountErrorIsSRP": { - "message": "You have entered a Secret Recovery Phrase (or mnemonic). To import an account here, you have to enter a private key, which is a hexadecimal string of length 64." - }, - "importAccountErrorNotAValidPrivateKey": { - "message": "This is not a valid private key. You have entered a hexadecimal string, but it must be 64 characters long." - }, - "importAccountErrorNotHexadecimal": { - "message": "This is not a valid private key. You must enter a hexadecimal string of length 64." - }, - "importAccountJsonLoading1": { - "message": "Expect this JSON import to take a few minutes and freeze MetaMask." - }, - "importAccountJsonLoading2": { - "message": "We apologize, and we will make it faster in the future." - }, - "importAccountMsg": { - "message": "Imported accounts won’t be associated with your MetaMask Secret Recovery Phrase. Learn more about imported accounts" - }, - "importAccountWithSocialMsg": { - "message": "Imported private keys are backed up to your account and sync automatically when you sign in with the same Google or Apple login." - }, - "importAccountWithSocialMsgLearnMore": { - "message": "$1 about how imported keys work", - "description": "$1 is a link to learn more about imported keys" - }, - "importAnAccount": { - "message": "Import an account" - }, - "importAnAccountDescription": { - "message": "Via a private key" - }, - "importNFT": { - "message": "Import NFT" - }, - "importNFTAddressToolTip": { - "message": "On OpenSea, for example, on the NFT's page under Details, there is a blue hyperlinked value labeled 'Contract Address'. If you click on this, it will take you to the contract's address on Etherscan; at the top-left of that page, there should be an icon labeled 'Contract', and to the right, a long string of letters and numbers. This is the address of the contract that created your NFT. Click on the 'copy' icon to the right of the address, and you'll have it on your clipboard." - }, - "importNFTPage": { - "message": "Import NFT page" - }, - "importNFTTokenIdToolTip": { - "message": "An NFT's ID is a unique identifier since no two NFTs are alike. Again, on OpenSea this number is under 'Details'. Make a note of it, or copy it onto your clipboard." - }, - "importPrivateKey": { - "message": "Private Key" - }, - "importSecretRecoveryPhrase": { - "message": "Import Secret Recovery Phrase" - }, - "importTokenQuestion": { - "message": "Import token?" - }, - "importTokenWarning": { - "message": "Anyone can create a token with any name, including fake versions of existing tokens. Add and trade at your own risk!" - }, - "importTokensCamelCase": { - "message": "Import tokens" - }, - "importTokensError": { - "message": "We could not import the tokens. Please try again later." - }, - "importWalletOrAccountHeader": { - "message": "Import a wallet or account" - }, - "importWalletSuccess": { - "message": "Wallet $1 imported", - "description": "$1 is the index of the secret recovery phrase" - }, - "imported": { - "message": "Imported", - "description": "status showing that an account has been fully loaded into the keyring" - }, - "includesXTransactions": { - "message": "Includes $1 transactions" - }, - "incorrect": { - "message": "Incorrect" - }, - "infuraBlockedNotification": { - "message": "MetaMask is unable to connect to the blockchain host. Review possible reasons $1.", - "description": "$1 is a clickable link with with text defined by the 'here' key" - }, - "insights": { - "message": "Insights" - }, - "insightsFromSnap": { - "message": "Insights from $1", - "description": "$1 represents the name of the snap" - }, - "install": { - "message": "Install" - }, - "installOrigin": { - "message": "Install origin" - }, - "installRequest": { - "message": "Add to MetaMask" - }, - "installedOn": { - "message": "Installed on $1", - "description": "$1 is the date when the snap has been installed" - }, - "insufficientBalance": { - "message": "Insufficient balance." - }, - "insufficientBalanceToCoverFees": { - "message": "Insufficient balance to cover fees" - }, - "insufficientFunds": { - "message": "Insufficient funds." - }, - "insufficientFundsSend": { - "message": "Insufficient funds" - }, - "insufficientLockedLiquidityDescription": { - "message": "The lack of adequately locked or burned liquidity leaves the token vulnerable to sudden liquidity withdrawals, potentially causing market instability." - }, - "insufficientLockedLiquidityTitle": { - "message": "Insufficient locked liquidity" - }, - "insufficientTokens": { - "message": "Insufficient tokens." - }, - "interactWithSmartContract": { - "message": "Smart contract" - }, - "interactingWith": { - "message": "Interacting with" - }, - "interactingWithTransactionDescription": { - "message": "This is the contract you're interacting with. Protect yourself from scammers by verifying the details." - }, - "interaction": { - "message": "Interaction" - }, - "invalidAddress": { - "message": "Invalid address" - }, - "invalidAddressRecipient": { - "message": "Recipient address is invalid" - }, - "invalidAssetType": { - "message": "This asset is an NFT and needs to be re-added on the Import NFTs page found under the NFTs tab" - }, - "invalidChainIdTooBig": { - "message": "Invalid chain ID. The chain ID is too big." - }, - "invalidCustomNetworkAlertContent1": { - "message": "The chain ID for custom network '$1' has to be re-entered.", - "description": "$1 is the name/identifier of the network." - }, - "invalidCustomNetworkAlertContent2": { - "message": "To protect you from malicious or faulty network providers, chain IDs are now required for all custom networks." - }, - "invalidCustomNetworkAlertContent3": { - "message": "Go to Settings > Network and enter the chain ID. You can find the chain IDs of most popular networks on $1.", - "description": "$1 is a link to https://chainid.network" - }, - "invalidCustomNetworkAlertTitle": { - "message": "Invalid custom network" - }, - "invalidHexData": { - "message": "Invalid hex data" - }, - "invalidHexNumber": { - "message": "Invalid hexadecimal number." - }, - "invalidHexNumberLeadingZeros": { - "message": "Invalid hexadecimal number. Remove any leading zeros." - }, - "invalidIpfsGateway": { - "message": "Invalid IPFS Gateway: The value must be a valid URL" - }, - "invalidNumber": { - "message": "Invalid number. Enter a decimal or '0x'-prefixed hexadecimal number." - }, - "invalidNumberLeadingZeros": { - "message": "Invalid number. Remove any leading zeros." - }, - "invalidRPC": { - "message": "Invalid RPC URL" - }, - "invalidSeedPhrase": { - "message": "Invalid Secret Recovery Phrase" - }, - "invalidSeedPhraseCaseSensitive": { - "message": "Invalid input! Secret Recovery Phrase is case sensitive." - }, - "invalidSeedPhraseNotFound": { - "message": "Secret Recovery Phrase not found." - }, - "invalidValue": { - "message": "Invalid value" - }, - "ipfsGateway": { - "message": "IPFS gateway" - }, - "ipfsGatewayDescriptionV2": { - "message": "Uses third-party services to show images of your NFTs stored on IPFS, display information related to ENS addresses entered in your browser's address bar, and fetch icons for different tokens. Choose your preferred IPFS gateway below." - }, - "ipfsToggleModalDescriptionOne": { - "message": "We use third-party services to show images of your NFTs stored on IPFS, display information related to ENS addresses entered in your browser's address bar, and fetch icons for different tokens. Your IP address may be exposed to these services when you’re using them." - }, - "ipfsToggleModalDescriptionTwo": { - "message": "Selecting Confirm turns on IPFS resolution. You can turn it off in $1 at any time.", - "description": "$1 is the method to turn off ipfs" - }, - "ipfsToggleModalSettings": { - "message": "Settings > Security and privacy" - }, - "isSigningOrSubmitting": { - "message": "A previous transaction is still being signed or submitted" - }, - "isSigningOrSubmittingPayToken": { - "message": "You have a pending transaction on this network. Wait for it to complete or select a token on another network." - }, - "jazzicons": { - "message": "Jazzicons" - }, - "jsonFile": { - "message": "JSON File", - "description": "format for importing an account" - }, - "keycardShell": { - "message": "Keycard Shell" - }, - "keyringAccountName": { - "message": "Account name" - }, - "keyringAccountPublicAddress": { - "message": "Public address" - }, - "keyringSnapRemovalResult1": { - "message": "$1 $2removed", - "description": "Displays the result after removal of a keyring snap. $1 is the snap name, $2 is whether it is successful or not" - }, - "keyringSnapRemovalResultNotSuccessful": { - "message": "not ", - "description": "Displays the `not` word in $2." - }, - "keyringSnapRemoveConfirmation": { - "message": "Type $1 to confirm you want to remove this snap:", - "description": "Asks user to input the name nap prior to deleting the snap. $1 is the snap name" - }, - "keystone": { - "message": "Keystone" - }, - "knownAddressRecipient": { - "message": "Known contract address." - }, - "knownTokenWarning": { - "message": "This action will edit tokens that are already listed in your wallet, which can be used to phish you. Only approve if you are certain that you mean to change what these tokens represent. Learn more about $1" - }, - "language": { - "message": "Language" - }, - "lastSold": { - "message": "Last sold" - }, - "lattice": { - "message": "Lattice", - "description": "Hardware device name" - }, - "lavaDomeCopyWarning": { - "message": "For your safety, selecting this text is not available right now." - }, - "learnHow": { - "message": "Learn how" - }, - "learnMore": { - "message": "learn more" - }, - "learnMoreAboutGas": { - "message": "Want to $1 about gas?", - "description": "$1 will be replaced by the learnMore translation key" - }, - "learnMoreAboutPrivacy": { - "message": "Learn more about privacy best practices." - }, - "learnMoreKeystone": { - "message": "Learn more" - }, - "learnMoreUpperCase": { - "message": "Learn more" - }, - "learnMoreUpperCaseWithDot": { - "message": "Learn more" - }, - "learnScamRisk": { - "message": "scams and security risks." - }, - "leaveMetaMask": { - "message": "Leave MetaMask?" - }, - "leaveMetaMaskDesc": { - "message": "You're about to visit a site outside of MetaMask. Double-check the URL before continuing." - }, - "ledger": { - "message": "Ledger", - "description": "Hardware device name" - }, - "ledgerAccountRestriction": { - "message": "You need to make use your last account before you can add a new one." - }, - "ledgerConnectionInstructionCloseOtherApps": { - "message": "Close any other software connected to your device and then click here to refresh." - }, - "ledgerConnectionInstructionHeader": { - "message": "Prior to clicking confirm:" - }, - "ledgerConnectionInstructionStepFour": { - "message": "Enable \"smart contract data\" or \"blind signing\" on your Ledger device." - }, - "ledgerConnectionInstructionStepThree": { - "message": "Be sure your Ledger is plugged in and to select the Ethereum app." - }, - "ledgerDeviceOpenFailureMessage": { - "message": "The Ledger device failed to open. Your Ledger might be connected to other software. Please close Ledger Live or other applications connected to your Ledger device, and try to connect again." - }, - "ledgerErrorConnectionIssue": { - "message": "Reconnect your ledger, open the ETH app and try again." - }, - "ledgerErrorDevicedLocked": { - "message": "Your Ledger is locked. Unlock it then try again." - }, - "ledgerErrorEthAppNotOpen": { - "message": "To solve the issue, open the ETH application on your device and retry." - }, - "ledgerErrorTransactionDataNotPadded": { - "message": "Ethereum transaction's input data isn't sufficiently padded." - }, - "ledgerEthAppNftNotSupportedNotification": { - "message": "Ledger Nano S can't send or manage Ethereum NFTs. See upgrade options at https://shop.ledger.com/pages/ledger-nano-s-upgrade-program" - }, - "ledgerFirefoxNotSupportedDescription1": { - "message": "We're having trouble connecting to Ledger. Check out our " - }, - "ledgerFirefoxNotSupportedDescription2": { - "message": " on how to connect a hardware wallet, then try again." - }, - "ledgerFirefoxNotSupportedDescription3": { - "message": " Ledger no longer supports Firefox, so you might need to use a different browser." - }, - "ledgerFirefoxNotSupportedLink": { - "message": "guide" - }, - "ledgerFirefoxNotSupportedTitle": { - "message": "Firefox Not Supported" - }, - "ledgerLiveApp": { - "message": "Ledger Live App" - }, - "ledgerLocked": { - "message": "Cannot connect to Ledger device. Please make sure your device is unlocked and Ethereum app is opened." - }, - "ledgerMultipleDevicesUnsupportedInfoDescription": { - "message": "To connect a new device, disconnect the previous one." - }, - "ledgerMultipleDevicesUnsupportedInfoTitle": { - "message": "You can only connect one Ledger at a time" - }, - "ledgerTimeout": { - "message": "Ledger Live is taking too long to respond or connection timeout. Make sure Ledger Live app is opened and your device is unlocked." - }, - "ledgerWebHIDNotConnectedErrorMessage": { - "message": "The ledger device was not connected. If you wish to connect your Ledger, please click 'Continue' again and approve HID connection", - "description": "An error message shown to the user during the hardware connect flow." - }, - "lightTheme": { - "message": "Light" - }, - "likeToImportToken": { - "message": "Would you like to import this token?" - }, - "likeToImportTokens": { - "message": "Would you like to import these tokens?" - }, - "lineaMainnet": { - "message": "Linea" - }, - "lineaSepolia": { - "message": "Linea Sepolia test network" - }, - "link": { - "message": "Link" - }, - "linkCentralizedExchanges": { - "message": "Link your Coinbase or Binance accounts to transfer crypto to MetaMask for free." - }, - "loading": { - "message": "Loading..." - }, - "loadingScreenSnapMessage": { - "message": "Please complete the transaction on the Snap." - }, - "loadingTokenList": { - "message": "Loading token list" - }, - "localCurrency": { - "message": "Local currency" - }, - "localhost": { - "message": "Localhost 8545" - }, - "lock": { - "message": "Lock" - }, - "lockMetaMaskLoadingMessage": { - "message": "Locking MetaMask..." - }, - "logOut": { - "message": "Log out" - }, - "loginErrorConnectButton": { - "message": "Try again" - }, - "loginErrorConnectDescription": { - "message": "Your internet connection is unstable. Check your connection and try again." - }, - "loginErrorConnectTitle": { - "message": "Unable to connect" - }, - "loginErrorGenericButton": { - "message": "Try again" - }, - "loginErrorGenericDescription": { - "message": "An error occurred while logging in. Try again and if the issue continues, contact $1.", - "description": "$1 is the key 'loginErrorGenericSupport'" - }, - "loginErrorGenericSupport": { - "message": "MetaMask support" - }, - "loginErrorGenericTitle": { - "message": "Something went wrong" - }, - "loginErrorResetWalletDescription": { - "message": "An issue occurred while unlocking. Re-login with $1 and your MetaMask password.", - "description": "$1 is the social login method" - }, - "loginErrorSessionExpiredButton": { - "message": "Log in" - }, - "loginErrorSessionExpiredDescription": { - "message": "Your session has expired. Please log in again to continue." - }, - "loginErrorSessionExpiredTitle": { - "message": "Session has expired" - }, - "logo": { - "message": "$1 logo", - "description": "$1 is the name of the ticker" - }, - "low": { - "message": "Low" - }, - "lowGasSettingToolTipMessage": { - "message": "Use $1 to wait for a cheaper price. Time estimates are much less accurate as prices are somewhat unpredictable.", - "description": "$1 is key 'low' separated here so that it can be passed in with bold font-weight" - }, - "lowLowercase": { - "message": "low" - }, - "mainnet": { - "message": "Ethereum Mainnet" - }, - "mainnetToken": { - "message": "This address matches a known Ethereum Mainnet token address. Recheck the contract address and network for the token you are trying to add." - }, - "makeAnotherSwap": { - "message": "Create a new swap" - }, - "makeSmartContractsEasier": { - "message": "Make smart contracts easier to read" - }, - "makeSmartContractsEasierDescription": { - "message": "MetaMask uses 4byte.directory and Sourcify to translate this information." - }, - "manage": { - "message": "Manage" - }, - "manageDefaultSettings": { - "message": "Manage default settings" - }, - "manageInstitutionalWallets": { - "message": "Manage institutional wallets" - }, - "manageInstitutionalWalletsDescription": { - "message": "Turn this on to enable institutional wallets." - }, - "manageNetworksMenuHeading": { - "message": "Manage networks" - }, - "managePermissions": { - "message": "Manage permissions" - }, - "manageTokens": { - "message": "Manage tokens" - }, - "manageWalletRecovery": { - "message": "Manage wallet recovery" - }, - "marketCap": { - "message": "Market cap" - }, - "marketCapFDV": { - "message": "Market cap (FDV)" - }, - "marketDetails": { - "message": "Market details" - }, - "marketRate": { - "message": "Market rate" - }, - "maskicons": { - "message": "Polycons" - }, - "max": { - "message": "Max" - }, - "maxBaseFee": { - "message": "Max base fee" - }, - "maxBaseFeeMustBeGreaterThanPriorityFee": { - "message": "Max base fee must be greater than priority fee" - }, - "maxFee": { - "message": "Max fee" - }, - "maxFeeTooltip": { - "message": "A maximum fee provided to pay for the transaction." - }, - "maybeLater": { - "message": "Maybe later" - }, - "medium": { - "message": "Market" - }, - "mediumGasSettingToolTipMessage": { - "message": "Use $1 for fast processing at current market price.", - "description": "$1 is key 'medium' (text: 'Market') separated here so that it can be passed in with bold font-weight" - }, - "memo": { - "message": "memo" - }, - "merklRewardsClaimBonus": { - "message": "Claim bonus", - "description": "Short label shown in token list for tokens with claimable Merkl rewards" - }, - "merklRewardsToastFailed": { - "message": "Your mUSD bonus claim failed", - "description": "Toast message shown when a Merkl reward claim transaction fails or is dropped" - }, - "merklRewardsToastInProgress": { - "message": "Your mUSD bonus is processing", - "description": "Toast message shown when a Merkl reward claim transaction is being processed" - }, - "merklRewardsToastSuccess": { - "message": "Your mUSD bonus is here!", - "description": "Toast message shown when a Merkl reward claim transaction is confirmed" - }, - "merklRewardsUnexpectedError": { - "message": "Unexpected error. Please try again.", - "description": "Error message shown when claiming Merkl rewards fails" - }, - "message": { - "message": "Message" - }, - "metaMaskConnectStatusParagraphOne": { - "message": "You now have more control over your account connections in MetaMask." - }, - "metaMaskConnectStatusParagraphThree": { - "message": "Click it to manage your connected accounts." - }, - "metaMaskConnectStatusParagraphTwo": { - "message": "The connection status button shows if the website you’re visiting is connected to your currently selected account." - }, - "metaMetricsIdNotAvailableError": { - "message": "Since you've never opted into MetaMetrics, there's no data to delete here." - }, - "metadataModalSourceTooltip": { - "message": "$1 is hosted on npm and $2 is this Snap’s unique identifier.", - "description": "$1 is the snap name and $2 is the snap NPM id." - }, - "metamaskFee": { - "message": "MetaMask fee" - }, - "metamaskNotificationsAreOff": { - "message": "Wallet notifications are currently not active." - }, - "metamaskSwap": { - "message": "MetaMask Swap" - }, - "metamaskSwapsOfflineDescription": { - "message": "MetaMask Swaps is undergoing maintenance. Please check back later." - }, - "metamaskVersion": { - "message": "MetaMask Version" - }, - "methodData": { - "message": "Method" - }, - "methodDataTransactionDesc": { - "message": "Function executed based on decoded input data." - }, - "methodNotSupported": { - "message": "Not supported with this account." - }, - "metrics": { - "message": "Metrics" - }, - "minimumReceivedExplanation": { - "message": "The minimum you'll get if the price changes while your transaction processes, based on your slippage setting. The estimate comes from liquidity providers, so the final amount may differ." - }, - "minimumReceivedExplanationTitle": { - "message": "Minimum amount received" - }, - "minimumReceivedLabel": { - "message": "Minimum received" - }, - "minute": { - "message": "min" - }, - "mismatchedChainLinkText": { - "message": "verify the network details", - "description": "Serves as link text for the 'mismatchedChain' key. This text will be embedded inside the translation for that key." - }, - "mismatchedChainRecommendation": { - "message": "We recommend that you $1 before proceeding.", - "description": "$1 is a clickable link with text defined by the 'mismatchedChainLinkText' key. The link will open to instructions for users to validate custom network details." - }, - "mismatchedNetworkName": { - "message": "According to our record the network name may not correctly match this chain ID." - }, - "mismatchedNetworkSymbol": { - "message": "The submitted currency symbol does not match what we expect for this chain ID." - }, - "mismatchedRpcChainId": { - "message": "Chain ID returned by the custom network does not match the submitted chain ID." - }, - "mismatchedRpcUrl": { - "message": "According to our records the submitted RPC URL value does not match a known provider for this chain ID." - }, - "month": { - "message": "month" - }, - "monthly": { - "message": "Monthly" - }, - "more": { - "message": "more" - }, - "moreAccounts": { - "message": "+ $1 more accounts", - "description": "$1 is the number of accounts" - }, - "moreCapital": { - "message": "More" - }, - "moreNetworks": { - "message": "+ $1 more networks", - "description": "$1 is the number of networks" - }, - "moreQuotes": { - "message": "More quotes" - }, - "multichainAccountAddressCopied": { - "message": "Address copied", - "description": "Message displayed when the multichain account address is copied to clipboard" - }, - "multichainAccountIntroLearnMore": { - "message": "Learn more", - "description": "Button text to learn more about multichain accounts" - }, - "multichainAccountIntroSameAddressDescription": { - "message": "We’ve grouped your accounts, so keep using MetaMask the same as before. Your funds are safe and unchanged.", - "description": "Description explaining that accounts have been merged" - }, - "multichainAccountIntroSameAddressTitle": { - "message": "Same address, more networks", - "description": "Title for the second section of the multichain account intro modal" - }, - "multichainAccountIntroSettingUp": { - "message": "Setting up your accounts...", - "description": "Loading text shown while setting up multichain accounts" - }, - "multichainAccountIntroViewAccounts": { - "message": "View accounts", - "description": "Button text to view accounts from the intro modal" - }, - "multichainAccountIntroWhatDescription": { - "message": "A multichain account is an account with addresses on several networks, supported by MetaMask. So now you can use Ethereum, Solana, and more without switching accounts.", - "description": "Description explaining what multichain accounts are" - }, - "multichainAccountIntroWhatTitle": { - "message": "What are multichain accounts?", - "description": "Title for the first section of the multichain account intro modal" - }, - "multichainAccountPrivateKeyCopied": { - "message": "Private key copied", - "description": "Message displayed when the multichain account private key is copied to clipboard" - }, - "multichainAccountsIntroductionModalTitle": { - "message": "Introducing multichain accounts", - "description": "Title for the multichain accounts introduction modal." - }, - "multichainAddEthereumChainConfirmationDescription": { - "message": "You're adding this network to MetaMask and giving this site permission to use it." - }, - "multichainAddressViewAll": { - "message": "View all" - }, - "multichainProviderAccess": { - "message": "Grant Multichain provider access to $1", - "description": "The parameter is the name of the requesting origin" - }, - "multichainQuoteCardRateExplanation": { - "message": "The best rate we found from providers, including provider fees and a $1% MetaMask fee." - }, - "multichainQuoteCardRateLabel": { - "message": "Rate" - }, - "multipleSnapConnectionWarning": { - "message": "$1 wants to use $2 Snaps", - "description": "$1 is the dapp and $2 is the number of snaps it wants to connect to." - }, - "musdAssetBonusAccruing": { - "message": "Accruing next bonus", - "description": "Disabled claim button label shown when user holds mUSD but has no claimable bonus yet" - }, - "musdAssetBonusClaimAmount": { - "message": "Claim $1 bonus", - "description": "Label for the claim button in the mUSD asset details Your bonus section, where $1 is the formatted fiat amount (e.g., $10.27)" - }, - "musdAssetBonusEstimatedAnnual": { - "message": "Estimated annual bonus", - "description": "Label in the mUSD asset details Your bonus section" - }, - "musdAssetBonusInfoAria": { - "message": "Your bonus info", - "description": "Accessible name for the info icon that opens the Your bonus tooltip" - }, - "musdAssetBonusInfoEstimatedAnnual": { - "message": "A projection of what you'd earn over a year based on your current balance and rate. Rate is variable and may change.", - "description": "Explanation for Estimated annual bonus in the Your bonus info tooltip" - }, - "musdAssetBonusInfoLearnMore": { - "message": "Learn more.", - "description": "Link label at the bottom of the Your bonus info tooltip" - }, - "musdAssetBonusInfoLifetimeClaimed": { - "message": "The total bonus you've claimed since you started.", - "description": "Explanation for Lifetime bonus claimed in the Your bonus info tooltip" - }, - "musdAssetBonusInfoYourBonus": { - "message": "$1% annualized bonus you earn just for holding mUSD. You can claim it daily on Linea. $2", - "description": "$1 is the APY %, $2 is the 'Terms apply.' link" - }, - "musdAssetBonusLifetimeClaimed": { - "message": "Lifetime bonus claimed", - "description": "Label in the mUSD asset details Your bonus section" - }, - "musdAssetBonusNoAccruing": { - "message": "No accruing bonus", - "description": "Disabled claim button label shown when user holds no mUSD and has no bonus to claim" - }, - "musdAssetBonusRate": { - "message": "$1% bonus", - "description": "Tag next to Your bonus on the mUSD asset details page, where $1 is the bonus APY percentage (e.g., 3)" - }, - "musdAssetBonusTitle": { - "message": "Your bonus", - "description": "Section title on the mUSD asset details page" - }, - "musdAssetConvertBenefitDailyBonus": { - "message": "Daily bonus", - "description": "Benefit tag on the mUSD asset details convert section" - }, - "musdAssetConvertBenefitDollarBacked": { - "message": "Dollar-backed", - "description": "Benefit tag on the mUSD asset details convert section" - }, - "musdAssetConvertBenefitNoLockups": { - "message": "No lockups", - "description": "Benefit tag on the mUSD asset details convert section" - }, - "musdAssetConvertBenefitNoMetaMaskFee": { - "message": "No MetaMask fee", - "description": "Benefit tag on the mUSD asset details convert section" - }, - "musdAssetConvertDescriptionHighlight": { - "message": "$1% annualized bonus", - "description": "Shown in Figma accent lime (#baf24a) inside the mUSD asset details convert section description. $1 is the APY percentage." - }, - "musdAssetConvertDescriptionLead": { - "message": "Get a ", - "description": "Text before the green APY phrase on the mUSD asset details convert section" - }, - "musdAssetConvertDescriptionTail": { - "message": " by converting USDC, USDT, and DAI to mUSD.", - "description": "Text after the green APY phrase on the mUSD asset details convert section" - }, - "musdAssetConvertLearnMore": { - "message": "Learn more", - "description": "Button to open the mUSD support article from the asset details convert section" - }, - "musdAssetConvertTitle": { - "message": "Convert your stablecoins", - "description": "Title of the convert section on the mUSD asset details page" - }, - "musdAssetPositionBalance": { - "message": "Balance", - "description": "Label in the mUSD asset details Your position section" - }, - "musdAssetPositionTitle": { - "message": "Your position", - "description": "Section title on the mUSD asset details page" - }, - "musdAssetPositionValue": { - "message": "Value", - "description": "Label in the mUSD asset details Your position section (fiat value)" - }, - "musdBonusExplanation": { - "message": "Convert your stablecoins to mUSD and earn\nup to a $1% annualized bonus that you can\nclaim daily. $2", - "description": "$1 is the bonus APY percentage, $2 is the 'Terms apply' link" - }, - "musdBonusPoweredByRelay": { - "message": "Powered by Relay", - "description": "Attribution shown below mUSD bonus explanation on the conversion confirmation info popover" - }, - "musdBoostDescription": { - "message": "Convert your stablecoins to mUSD and get a $1% annualized bonus.", - "description": "$1 is the bonus percentage (e.g., 3)" - }, - "musdBoostTitle": { - "message": "Get $1% on your stablecoins", - "description": "$1 is the bonus percentage (e.g., 3)" - }, - "musdBuyMusd": { - "message": "Buy mUSD" - }, - "musdClaimSendingTo": { - "message": "Sending to", - "description": "Label for the account row in the mUSD claim confirmation screen when no wallet name is available" - }, - "musdClaimSendingToWallet": { - "message": "Sending to $1", - "description": "Label for the account row in the mUSD claim confirmation screen, where $1 is the wallet name" - }, - "musdClaimTitle": { - "message": "Claim bonus", - "description": "Title for the mUSD bonus claim confirmation screen" - }, - "musdClaimableBonus": { - "message": "Claimable bonus", - "description": "Label for the claimable bonus row in the mUSD conversion confirmation screen" - }, - "musdClaimableBonusTooltip": { - "message": "The annualized bonus you've earned for holding mUSD. Your bonus is claimable daily on Linea. $1", - "description": "$1 is the 'Terms apply' link" - }, - "musdClaimableBonusTooltipAria": { - "message": "Claimable bonus details", - "description": "Accessible name for the info control that opens the claimable bonus explanation popover" - }, - "musdConversionActivityTitle": { - "message": "Convert $1 to mUSD", - "description": "$1 is the source token symbol (e.g., USDC)" - }, - "musdConversionBonusTooltipAria": { - "message": "Bonus details", - "description": "Accessible name for the info control that opens the mUSD conversion bonus explanation popover" - }, - "musdConversionFeeTooltipDescription": { - "message": "mUSD conversion fees include network costs and may include provider fees. No MetaMask fee applies when you convert to mUSD.", - "description": "Body text shown above the fee breakdown in the transaction fee tooltip for mUSD conversion" - }, - "musdConversionTitle": { - "message": "Converted to mUSD", - "description": "Title shown in the transaction details modal for mUSD conversion transactions" - }, - "musdConversionToastFailed": { - "message": "mUSD conversion failed" - }, - "musdConversionToastInProgress": { - "message": "Converting $1 → mUSD", - "description": "$1 is the source token symbol (e.g., USDC)" - }, - "musdConversionToastSuccess": { - "message": "mUSD conversion successful" - }, - "musdConversionToastSuccessDescription": { - "message": "Bonus will be claimable within a day." - }, - "musdConvert": { - "message": "Convert" - }, - "musdConvertAndGetBonus": { - "message": "Convert and get $1%", - "description": "$1 is the bonus percentage (e.g., 3)" - }, - "musdEarnBonusPercentage": { - "message": "Earn a $1% bonus", - "description": "$1 is the bonus percentage (e.g., 3). Subtitle on the home token list mUSD Buy/Get CTA." - }, - "musdEducationGetStarted": { - "message": "Get started" - }, - "musdEducationHeadline": { - "message": "GET $1% ON\nSTABLECOINS", - "description": "$1 is the bonus APY percentage. Line break between ON and STABLECOINS matches splash layout." - }, - "musdEducationNotNow": { - "message": "Not now" - }, - "musdGetBonusPercentage": { - "message": "Get $1% mUSD bonus", - "description": "$1 is the bonus percentage (e.g., 3)" - }, - "musdGetMusd": { - "message": "Get mUSD" - }, - "musdMetaMaskUsd": { - "message": "MetaMask USD", - "description": "Product name shown as the title line on the home token list mUSD Buy/Get CTA" - }, - "musdSymbol": { - "message": "mUSD", - "description": "Token ticker for MetaMask USD (displayed next to balance on the mUSD asset details page)" - }, - "musdTermsApply": { - "message": "Terms apply." - }, - "mustSelectOne": { - "message": "Must select at least 1 token." - }, - "name": { - "message": "Name" - }, - "nameAddressLabel": { - "message": "Address", - "description": "Label above address field in name component modal." - }, - "nameAlreadyInUse": { - "message": "Name is already in use" - }, - "nameFooterTrustWarning": { - "message": "Only save addresses you trust.", - "description": "Footer warning text shown in name modal for malicious and warning addresses." - }, - "nameInstructionsMalicious": { - "message": "This has been identified as malicious. We recommend not interacting with this address.", - "description": "Instruction text in name component modal when address is malicious." - }, - "nameInstructionsNew": { - "message": "If you know this address, give it a nickname to recognize it in the future.", - "description": "Instruction text in name component modal when value is not recognised." - }, - "nameInstructionsRecognized": { - "message": "This address has a default nickname, but you can edit it or explore other suggestions.", - "description": "Instruction text in name component modal when value is recognized but not saved." - }, - "nameInstructionsSaved": { - "message": "You've added a nickname for this address before. You can edit or view other suggested nicknames.", - "description": "Instruction text in name component modal when value is saved." - }, - "nameInstructionsWarning": { - "message": "We can't verify this address. It may be new or unverified. Set a personal display name to identify it going forward.", - "description": "Instruction text in name component modal when address has warning signals." - }, - "nameLabel": { - "message": "Nickname", - "description": "Label above name input field in name component modal." - }, - "nameModalMaybeProposedName": { - "message": "Maybe: $1", - "description": "$1 is the proposed name" - }, - "nameModalTitleMalicious": { - "message": "Malicious address", - "description": "Title of the modal created by the name component when address is identified as malicious." - }, - "nameModalTitleNew": { - "message": "Unknown address", - "description": "Title of the modal created by the name component when value is not recognised." - }, - "nameModalTitleRecognized": { - "message": "Recognized address", - "description": "Title of the modal created by the name component when value is recognized but not saved." - }, - "nameModalTitleSaved": { - "message": "Saved address", - "description": "Title of the modal created by the name component when value is saved." - }, - "nameModalTitleVerified": { - "message": "Verified address", - "description": "Title of the modal created by the name component when address is verified." - }, - "nameModalTitleWarning": { - "message": "Address needs review", - "description": "Title of the modal created by the name component when address has warning trust signals." - }, - "nameProviderProposedBy": { - "message": "Proposed by $1", - "description": "$1 is the name of the provider" - }, - "nameProvider_ens": { - "message": "Ethereum Name Service (ENS)" - }, - "nameProvider_etherscan": { - "message": "Etherscan" - }, - "nameProvider_lens": { - "message": "Lens Protocol" - }, - "nameProvider_token": { - "message": "MetaMask" - }, - "nameResolutionFailedError": { - "message": "No address resolution found for this name." - }, - "nameResolutionZeroAddressError": { - "message": "Name resolver returned a zero address. This is likely an error." - }, - "nameSetPlaceholder": { - "message": "Choose a nickname...", - "description": "Placeholder text for name input field in name component modal." - }, - "nameSetPlaceholderSuggested": { - "message": "Suggested: $1", - "description": "$1 is the proposed name" - }, - "nativeNetworkPermissionRequestDescription": { - "message": "$1 is asking for your approval to:", - "description": "$1 represents dapp name" - }, - "nativeTokenScamWarningConversion": { - "message": "Edit network details" - }, - "nativeTokenScamWarningDescription": { - "message": "The native token symbol does not match the expected symbol of the native token for the network with the associated chain ID. You have entered $1 while the expected token symbol is $2. Please verify you are connected to the correct chain.", - "description": "$1 represents the currency name, $2 represents the expected currency symbol" - }, - "nativeTokenScamWarningDescriptionExpectedTokenFallback": { - "message": "something else", - "description": "graceful fallback for when token symbol isn't found" - }, - "nativeTokenScamWarningTitle": { - "message": "Unexpected native token symbol", - "description": "Title for nativeTokenScamWarningDescription" - }, - "needHelp": { - "message": "Need help? Contact $1", - "description": "$1 represents `needHelpLinkText`, the text which goes in the help link" - }, - "needHelpFeedback": { - "message": "Share your feedback" - }, - "needHelpLinkText": { - "message": "MetaMask support" - }, - "needHelpSubmitTicket": { - "message": "Submit a ticket" - }, - "needImportFile": { - "message": "You must select a file to import.", - "description": "User is important an account and needs to add a file to continue" - }, - "negativeOrZeroAmountToken": { - "message": "Cannot send negative or zero amounts of asset." - }, - "negativeValuesNotAllowed": { - "message": "Negative values are not allowed" - }, - "network": { - "message": "Network" - }, - "networkChanged": { - "message": "Network changed" - }, - "networkChangedMessage": { - "message": "You're now transacting on $1.", - "description": "$1 is the name of the network" - }, - "networkDetails": { - "message": "Network details" - }, - "networkFee": { - "message": "Network fee" - }, - "networkFeeExplanation": { - "message": "Network fees depend on how busy the network is and how complex your transaction is." - }, - "networkFeeExplanationTitle": { - "message": "Network fee" - }, - "networkMenu": { - "message": "Network menu" - }, - "networkMenuHeading": { - "message": "Select a network" - }, - "networkName": { - "message": "Network name" - }, - "networkNameBitcoin": { - "message": "Bitcoin" - }, - "networkNameBitcoinSegwit": { - "message": "Bitcoin Native SegWit" - }, - "networkNameDefinition": { - "message": "The name associated with this network." - }, - "networkNameEthereum": { - "message": "Ethereum" - }, - "networkNameGoerli": { - "message": "Goerli" - }, - "networkNamePolygon": { - "message": "Polygon" - }, - "networkNameSolana": { - "message": "Solana" - }, - "networkNameTron": { - "message": "Tron" - }, - "networkOptions": { - "message": "Network options" - }, - "networkPermissionToast": { - "message": "Network permissions updated" - }, - "networkStatus": { - "message": "Network status" - }, - "networkStatusBaseFeeTooltip": { - "message": "The base fee is set by the network and changes every 13-14 seconds. Our $1 and $2 options account for sudden increases.", - "description": "$1 and $2 are bold text for Medium and Aggressive respectively." - }, - "networkStatusPriorityFeeTooltip": { - "message": "Range of priority fees (aka “miner tip”). This goes to miners and incentivizes them to prioritize your transaction." - }, - "networkStatusStabilityFeeTooltip": { - "message": "Gas fees are $1 relative to the past 72 hours.", - "description": "$1 is networks stability value - stable, low, high" - }, - "networkSuggested": { - "message": "Network suggested" - }, - "networkTabCustom": { - "message": "Custom" - }, - "networkTabPopular": { - "message": "Popular" - }, - "networkURL": { - "message": "Network URL" - }, - "networkURLDefinition": { - "message": "The URL used to access this network." - }, - "networkUrlErrorWarning": { - "message": "Attackers sometimes mimic sites by making small changes to the site address. Make sure you're interacting with the intended site before you continue. Punycode version: $1", - "description": "$1 replaced by RPC URL for network" - }, - "networks": { - "message": "Networks" - }, - "networksSmallCase": { - "message": "networks" - }, - "nevermind": { - "message": "Nevermind" - }, - "new": { - "message": "New!" - }, - "newAccount": { - "message": "New account" - }, - "newAccountIconMessage": { - "message": "Weʼve refreshed account icons to help you tell your accounts apart more easily. You can change the style in $1 > $2 > $3.", - "description": "$1, $2, and $3 are bold text for Settings, General, and Account icon respectively" - }, - "newAccountIconTitle": { - "message": "New account icon" - }, - "newAccountNumberName": { - "message": "Account $1", - "description": "Default name of next account to be created on create account screen" - }, - "newContract": { - "message": "New contract" - }, - "newNFTDetectedInImportNFTsMessageStrongText": { - "message": "Settings > Security and privacy" - }, - "newNFTDetectedInImportNFTsMsg": { - "message": "To use Opensea to see your NFTs, turn on 'Display NFT Media' in $1.", - "description": "$1 is used for newNFTDetectedInImportNFTsMessageStrongText" - }, - "newNFTDetectedInNFTsTabMessage": { - "message": "Let MetaMask automatically detect and display NFTs in your wallet." - }, - "newNFTsAutodetected": { - "message": "NFT autodetection" - }, - "newNetworkAdded": { - "message": "“$1” was successfully added!" - }, - "newNetworkEdited": { - "message": "“$1” was successfully edited!" - }, - "newNftAddedMessage": { - "message": "NFT was successfully added!" - }, - "newPassword": { - "message": "New password" - }, - "newPasswordCreate": { - "message": "Create new password" - }, - "newPrivacyPolicyActionButton": { - "message": "Read more" - }, - "newPrivacyPolicyTitle": { - "message": "We’ve updated our privacy policy" - }, - "newRpcUrl": { - "message": "New RPC URL" - }, - "newTokensImportedMessage": { - "message": "You’ve successfully imported $1.", - "description": "$1 is the string of symbols of all the tokens imported" - }, - "newTokensImportedTitle": { - "message": "Token imported" - }, - "next": { - "message": "Next" - }, - "nftAddFailedMessage": { - "message": "NFT can’t be added as the ownership details do not match. Make sure you have entered correct information." - }, - "nftAddressError": { - "message": "This token is an NFT. Add on the $1", - "description": "$1 is a clickable link with text defined by the 'importNFTPage' key" - }, - "nftAlreadyAdded": { - "message": "NFT has already been added." - }, - "nftAutoDetectionEnabled": { - "message": "NFT autodetection enabled" - }, - "nftBought": { - "message": "Bought $1" - }, - "nftEmptyDescription": { - "message": "There's a world of NFTs out there. Start your collection today." - }, - "nftMinted": { - "message": "Minted $1" - }, - "nftOptions": { - "message": "NFT Options" - }, - "nftTokenIdPlaceholder": { - "message": "Enter the token id" - }, - "nftWarningContent": { - "message": "You're granting access to $1, including any you might own in the future. The party on the other end can transfer these NFTs from your wallet at any time without asking you until you revoke this approval. $2", - "description": "$1 is nftWarningContentBold bold part, $2 is Learn more link" - }, - "nftWarningContentBold": { - "message": "all your $1 NFTs", - "description": "$1 is name of the collection" - }, - "nftWarningContentGrey": { - "message": "Proceed with caution." - }, - "nfts": { - "message": "NFTs" - }, - "nftsPreviouslyOwned": { - "message": "Previously owned" - }, - "nickname": { - "message": "Nickname" - }, - "no": { - "message": "No" - }, - "noAccountsFound": { - "message": "No accounts found for the given search query" - }, - "noConnectionDescription": { - "message": "MetaMask isn't connected to this site. To get started, select the site's Connect button." - }, - "noDefaultAddress": { - "message": "No $1 address", - "description": "$1 is the default address scope" - }, - "noDomainResolution": { - "message": "No resolution for domain provided." - }, - "noHardwareWalletOrSnapsSupport": { - "message": "Snaps, and most hardware wallets, will not work with your current browser version." - }, - "noMMFeeSwapping": { - "message": "No MetaMask fee" - }, - "noNetworkFee": { - "message": "No network fee" - }, - "noNetworksAvailable": { - "message": "No networks available" - }, - "noNetworksFound": { - "message": "No networks found for the given search query" - }, - "noNetworksSelected": { - "message": "No networks selected" - }, - "noOptionsAvailableMessage": { - "message": "This trade route isn't available right now. Try changing the amount, network, or token and we'll find the best option." - }, - "noSnaps": { - "message": "You don't have any snaps installed." - }, - "noTokensMatchSearch": { - "message": "No tokens match your search" - }, - "noTokensMatchingYourFilters": { - "message": "No tokens matching your filters" - }, - "noTokensToManage": { - "message": "You don't have any tokens yet. Search by name or address to discover popular tokens." - }, - "noWebcamFound": { - "message": "Your computer's webcam was not found. Please try again." - }, - "noWebcamFoundTitle": { - "message": "Webcam not found" - }, - "noZeroValue": { - "message": "$1 must be greater than 0" - }, - "nonContractAddressAlertDesc": { - "message": "You're sending call data to an address that isn't a contract. This could cause you to lose funds. Make sure you're using the correct address and network before continuing." - }, - "nonContractAddressAlertTitle": { - "message": "Potential mistake" - }, - "nonce": { - "message": "Nonce" - }, - "none": { - "message": "None" - }, - "notBusy": { - "message": "Not busy" - }, - "notCurrentAccount": { - "message": "Is this the correct account? It's different from the currently selected account in your wallet" - }, - "notEnoughGas": { - "message": "Not enough gas" - }, - "notificationDetail": { - "message": "Details" - }, - "notificationDetailBaseFee": { - "message": "Base fee (GWEI)" - }, - "notificationDetailGasLimit": { - "message": "Gas limit (units)" - }, - "notificationDetailGasUsed": { - "message": "Gas used (units)" - }, - "notificationDetailMaxFee": { - "message": "Max fee per gas" - }, - "notificationDetailNetwork": { - "message": "Network" - }, - "notificationDetailNetworkFee": { - "message": "Network fee" - }, - "notificationDetailPriorityFee": { - "message": "Priority fee (GWEI)" - }, - "notificationItemCheckBlockExplorer": { - "message": "Check on the block explorer" - }, - "notificationItemCollection": { - "message": "Collection" - }, - "notificationItemConfirmed": { - "message": "Confirmed" - }, - "notificationItemError": { - "message": "Unable to retrieve fees currently" - }, - "notificationItemFrom": { - "message": "From" - }, - "notificationItemLidoStakeReadyToBeWithdrawn": { - "message": "Withdrawal ready" - }, - "notificationItemLidoStakeReadyToBeWithdrawnMessage": { - "message": "You can now withdraw your unstaked $1" - }, - "notificationItemLidoWithdrawalRequestedMessage": { - "message": "Your request to unstake $1 has been sent" - }, - "notificationItemNFTReceivedFrom": { - "message": "Received NFT from" - }, - "notificationItemNFTSentTo": { - "message": "Sent NFT to" - }, - "notificationItemNetwork": { - "message": "Network" - }, - "notificationItemRate": { - "message": "Rate (fee included)" - }, - "notificationItemReceived": { - "message": "Received" - }, - "notificationItemReceivedFrom": { - "message": "Received from" - }, - "notificationItemSent": { - "message": "Sent" - }, - "notificationItemSentTo": { - "message": "Sent to" - }, - "notificationItemStakeCompleted": { - "message": "Stake completed" - }, - "notificationItemStaked": { - "message": "Staked" - }, - "notificationItemStakingProvider": { - "message": "Staking provider" - }, - "notificationItemStatus": { - "message": "Status" - }, - "notificationItemSwapped": { - "message": "Swapped" - }, - "notificationItemSwappedFor": { - "message": "for" - }, - "notificationItemTo": { - "message": "To" - }, - "notificationItemTransactionId": { - "message": "Transaction ID" - }, - "notificationItemUnStakeCompleted": { - "message": "UnStaking complete" - }, - "notificationItemUnStaked": { - "message": "Unstaked" - }, - "notificationItemUnStakingRequested": { - "message": "Unstaking requested" - }, - "notificationTransactionFailedMessage": { - "message": "Transaction $1 failed! $2", - "description": "Content of the browser notification that appears when a transaction fails" - }, - "notificationTransactionFailedTitle": { - "message": "Failed transaction", - "description": "Title of the browser notification that appears when a transaction fails" - }, - "notificationTransactionSuccessMessage": { - "message": "Transaction $1 confirmed!", - "description": "Content of the browser notification that appears when a transaction is confirmed" - }, - "notificationTransactionSuccessTitle": { - "message": "Confirmed transaction", - "description": "Title of the browser notification that appears when a transaction is confirmed" - }, - "notificationTransactionSuccessView": { - "message": "View on $1", - "description": "Additional content in a notification that appears when a transaction is confirmed and has a block explorer URL." - }, - "notificationTransactionWithoutNonceFailedMessage": { - "message": "Transaction failed! $1", - "description": "Content of the browser notification that appears when a EIP-7702 transaction fails" - }, - "notificationTransactionWithoutNonceSuccessMessage": { - "message": "Transaction confirmed!", - "description": "Content of the browser notification that appears when a nonce-less transaction is confirmed" - }, - "notifications": { - "message": "Notifications" - }, - "notificationsFeatureToggle": { - "message": "Enable wallet notifications", - "description": "Experimental feature title" - }, - "notificationsFeatureToggleDescription": { - "message": "This enables wallet notifications like send/receive funds or nfts and feature announcements.", - "description": "Description of the experimental notifications feature" - }, - "notificationsMarkAllAsRead": { - "message": "Mark all as read" - }, - "notificationsPageEmptyTitle": { - "message": "Nothing to see here" - }, - "notificationsPageErrorContent": { - "message": "Please, try to visit this page again." - }, - "notificationsPageErrorTitle": { - "message": "There has been an error" - }, - "notificationsPageNoNotificationsContent": { - "message": "You have not received any notifications yet." - }, - "notificationsSettingsBoxError": { - "message": "Something went wrong. Please try again." - }, - "notificationsSettingsPageAllowNotifications": { - "message": "Stay in the loop on what’s happening in your wallet with notifications. To use notifications, we use a profile to sync some settings across your devices. $1 we protect your privacy while using this feature." - }, - "notificationsSettingsPageAllowNotificationsLink": { - "message": "Learn how" - }, - "numberOfTokens": { - "message": "Number of tokens" - }, - "ofTextNofM": { - "message": "of" - }, - "off": { - "message": "Off" - }, - "offlineForMaintenance": { - "message": "Offline for maintenance" - }, - "ok": { - "message": "Ok" - }, - "on": { - "message": "On" - }, - "onboardedMetametricsAccept": { - "message": "I agree" - }, - "onboardedMetametricsDisagree": { - "message": "No thanks" - }, - "onboardedMetametricsKey1": { - "message": "Latest developments" - }, - "onboardedMetametricsKey2": { - "message": "Product features" - }, - "onboardedMetametricsKey3": { - "message": "Other relevant promotional materials" - }, - "onboardedMetametricsLink": { - "message": "MetaMetrics" - }, - "onboardedMetametricsParagraph1": { - "message": "In addition to $1, we'd like to use data to understand how you interact with marketing communications.", - "description": "$1 represents the 'onboardedMetametricsLink' locale string" - }, - "onboardedMetametricsParagraph2": { - "message": "This helps us personalize what we share with you, like:" - }, - "onboardedMetametricsParagraph3": { - "message": "Remember, we never sell the data you provide and you can opt out any time." - }, - "onboardedMetametricsTitle": { - "message": "Help us enhance your experience" - }, - "onboardingAdvancedPrivacyIPFSDescription": { - "message": "The IPFS gateway makes it possible to access and view data hosted by third parties. You can add a custom IPFS gateway or continue using the default." - }, - "onboardingAdvancedPrivacyIPFSInvalid": { - "message": "Please enter a valid URL" - }, - "onboardingAdvancedPrivacyIPFSTitle": { - "message": "Add custom IPFS Gateway" - }, - "onboardingAdvancedPrivacyIPFSValid": { - "message": "IPFS gateway URL is valid" - }, - "onboardingAdvancedPrivacyNetworkDescription": { - "message": "When you use our default settings and configurations, we use Infura as our default remote procedure call (RPC) provider to offer the most reliable and private access to Ethereum data we can. In limited cases, we may use other RPC providers in order to provide the best experience for our users. You can choose your own RPC, but remember that any RPC will receive your IP address and Ethereum wallet to make transactions. To learn more about how Infura handles data for EVM accounts, read our $1; for Solana accounts, $2." - }, - "onboardingAdvancedPrivacyNetworkDescriptionCallToAction": { - "message": "click here" - }, - "onboardingAdvancedPrivacyNetworkTitle": { - "message": "Choose your network" - }, - "onboardingContinueWith": { - "message": "Continue with $1", - "description": "$1 is the type of login used Google, Apple, etc." - }, - "onboardingCreateWallet": { - "message": "Create a new wallet" - }, - "onboardingImportWallet": { - "message": "I have an existing wallet" - }, - "onboardingLoginFooter": { - "message": "By continuing, I agree to MetaMask’s $1 and $2" - }, - "onboardingLoginFooterPrivacyNotice": { - "message": "Privacy notice" - }, - "onboardingLoginFooterTermsOfUse": { - "message": "Terms of Use" - }, - "onboardingMetametricCheckboxDescriptionOneUpdated": { - "message": "We’ll collect basic product usage data. We may associate this information with on-chain data." - }, - "onboardingMetametricCheckboxDescriptionTwo": { - "message": "We’ll use this data to learn how you interact with our marketing communications. We may share relevant news (like product features)." - }, - "onboardingMetametricCheckboxTitleOne": { - "message": "Gather basic usage data" - }, - "onboardingMetametricCheckboxTitleTwo": { - "message": "Product updates" - }, - "onboardingMetametricsContinue": { - "message": "Continue" - }, - "onboardingMetametricsDescription": { - "message": "We’d like to request these permissions. You can opt out or delete your usage data at any time." - }, - "onboardingMetametricsTitle": { - "message": "Help improve MetaMask" - }, - "onboardingOptionIcon": { - "message": "$1 icon", - "description": "$1 is the icon name" - }, - "onboardingSignInWith": { - "message": "Sign in with $1", - "description": "$1 is the type of login used Google, Apple, etc" - }, - "onboardingSrpCreate": { - "message": "Use Secret Recovery Phrase" - }, - "onboardingSrpImport": { - "message": "Import using Secret Recovery Phrase" - }, - "onboardingSrpImportError": { - "message": "Use only lowercase letters, check your spelling, and put the words in the original order." - }, - "onboardingSrpInputClearAll": { - "message": "Clear all" - }, - "onboardingSrpInputPlaceholder": { - "message": "Add a space between each word and make sure no one is watching." - }, - "oneKey": { - "message": "OneKey", - "description": "Hardware device name" - }, - "only": { - "message": "only" - }, - "onlyConnectTrust": { - "message": "Only connect with sites you trust. $1", - "description": "Text displayed above the buttons for connection confirmation. $1 is the link to the learn more web page." - }, - "onlyIntegersAllowed": { - "message": "Only whole numbers are allowed" - }, - "onlyNumbersAllowed": { - "message": "Only numbers are allowed" - }, - "openFullScreen": { - "message": "Open full screen" - }, - "openFullScreenForLedgerWebHid": { - "message": "Go to full screen to connect your Ledger.", - "description": "Shown to the user on the confirm screen when they are viewing MetaMask in a popup window but need to connect their ledger via webhid." - }, - "openInBlockExplorer": { - "message": "Open in block explorer" - }, - "openMultichainAccountAddressMenu": { - "message": "Open multichain account address menu" - }, - "openSettings": { - "message": "Open settings" - }, - "openWallet": { - "message": "Open wallet" - }, - "options": { - "message": "Options" - }, - "or": { - "message": "Or" - }, - "origin": { - "message": "Origin" - }, - "originChanged": { - "message": "Site changed" - }, - "originChangedMessage": { - "message": "You're now reviewing a request from $1.", - "description": "$1 is the name of the origin" - }, - "osTheme": { - "message": "System" - }, - "other": { - "message": "other" - }, - "otherPermissionsOnSiteDescription": { - "message": "The following permissions were also found on this site. Do you want to remove them?" - }, - "otherPermissionsOnSiteTitle": { - "message": "Other permissions on this site" - }, - "otherSnaps": { - "message": "other snaps", - "description": "Used in the 'permission_rpc' message." - }, - "others": { - "message": "others" - }, - "outdatedBrowserNotification": { - "message": "Your browser is out of date. If you don't update your browser, you won't be able to get security patches and new features from MetaMask." - }, - "overrideContentSecurityPolicyHeader": { - "message": "Override Content-Security-Policy header" - }, - "padlock": { - "message": "Padlock" - }, - "paidByMetaMask": { - "message": "Paid by MetaMask" - }, - "paidWith": { - "message": "Paid with" - }, - "participateInMetaMetrics": { - "message": "Participate in MetaMetrics" - }, - "participateInMetaMetricsDescription": { - "message": "Participate in MetaMetrics to help us make MetaMask better" - }, - "passkeyAuthMethodBiometrics": { - "message": "Biometrics", - "description": "Default OS-agnostic noun for the passkey auth method, used as $1 substitution in passkey messages on macOS / Linux / other OSes." - }, - "passkeyAuthMethodTouchId": { - "message": "Touch ID", - "description": "Apple Touch ID brand name, used as $1 substitution on macOS for descriptive passkey copy that names the underlying feature." - }, - "passkeyAuthMethodWindowsHello": { - "message": "Windows Hello", - "description": "Microsoft Windows Hello brand name, used as $1 substitution on Windows for all passkey copy." - }, - "passkeyDescription": { - "message": "Use $1 to unlock MetaMask instead of entering your password. This creates a passkey on this device only.", - "description": "Description of the passkey unlock feature on the setup / settings screens. $1 is the OS-specific auth-method noun (Touch ID on macOS, Windows Hello on Windows, Biometrics elsewhere)." - }, - "passkeyErrorAlreadyEnrolled": { - "message": "$1 is already set up for this wallet.", - "description": "Shown when starting passkey enrollment while a passkey is already enrolled. $1 is the OS-specific auth-method noun (Biometrics / Touch ID / Windows Hello)." - }, - "passkeyErrorAuthenticationVerificationFailed": { - "message": "We couldn't verify your $1. Try again.", - "description": "Shown when passkey authentication response verification fails. $1 is the OS-specific auth-method noun (Biometrics / Touch ID / Windows Hello)." - }, - "passkeyErrorMissingKeyMaterial": { - "message": "Your $1 response was incomplete. Try again.", - "description": "Shown when the passkey assertion is missing required key material. $1 is the OS-specific auth-method noun (Biometrics / Touch ID / Windows Hello)." - }, - "passkeyErrorNoAuthenticationCeremony": { - "message": "$1 sign-in session expired. Try again.", - "description": "Shown when passkey authentication runs without an active authentication ceremony. $1 is the OS-specific auth-method noun (Biometrics / Touch ID / Windows Hello)." - }, - "passkeyErrorNoRegistrationCeremony": { - "message": "$1 setup session expired. Try again from the beginning.", - "description": "Shown when passkey registration verification runs without an active registration ceremony. $1 is the OS-specific auth-method noun (Biometrics / Touch ID / Windows Hello)." - }, - "passkeyErrorNotEnrolled": { - "message": "$1 isn't set up for this wallet. Turn on $1 in Settings.", - "description": "Shown when biometrics unlock fails because no passkey is enrolled. $1 is the OS-specific auth-method noun (Biometrics / Touch ID / Windows Hello)." - }, - "passkeyErrorRegistrationFailed": { - "message": "$1 setup failed. Try again", - "description": "Shown when onboarding biometrics registration fails with an unknown error (after specific biometrics error messages). $1 is the OS-specific auth-method noun (Biometrics / Touch ID / Windows Hello)." - }, - "passkeyErrorRegistrationVerificationFailed": { - "message": "We couldn't verify your $1 setup. Try again.", - "description": "Shown when passkey registration response verification fails. $1 is the OS-specific auth-method noun (Biometrics / Touch ID / Windows Hello)." - }, - "passkeyErrorVaultKeyDecryptionFailed": { - "message": "We couldn't unlock with $1. Try again, or set up $1 again in Settings.", - "description": "Shown when the wrapped vault key cannot be decrypted with the passkey-derived key. $1 is the OS-specific auth-method noun (Biometrics / Touch ID / Windows Hello)." - }, - "passkeyErrorVaultKeyMismatch": { - "message": "$1 doesn't match your current wallet lock. Set up $1 again in Settings.", - "description": "Shown when renewing passkey protection and the decrypted key does not match the expected vault key. $1 is the OS-specific auth-method noun (Biometrics / Touch ID / Windows Hello)." - }, - "passkeyErrorVaultKeyRenewalFailed": { - "message": "Your password was updated, but $1 unlock couldn't be turned on.", - "description": "Shown after a successful wallet password change when re-wrapping the vault key for passkey fails and passkey enrollment is cleared. $1 is the OS-specific auth-method noun (Biometrics / Touch ID / Windows Hello)." - }, - "passkeyErrorVerificationFailed": { - "message": "We couldn't verify your $1. Try again or use your password.", - "description": "Shown when biometrics verification fails while turning off biometrics unlock in Settings and the error has no known passkey code. $1 is the OS-specific auth-method noun (Biometrics / Touch ID / Windows Hello)." - }, - "passkeySetupStepRegister": { - "message": "Register $1", - "description": "Onboarding step label. $1 is the OS-specific auth-method noun (Biometrics / Touch ID / Windows Hello)." - }, - "passkeySetupStepVerify": { - "message": "Validate $1", - "description": "Onboarding step label. $1 is the OS-specific auth-method noun (Biometrics / Touch ID / Windows Hello)." - }, - "passkeyTroubleshootModalDescription": { - "message": "Try opening the extension in a full screen window and try again.", - "description": "Explains that unlocking with a passkey may work better in a full screen MetaMask window." - }, - "passkeyTroubleshootModalOpenFullScreen": { - "message": "Open full screen window", - "description": "Button that opens MetaMask unlock in a full browser tab." - }, - "passkeyTroubleshootModalStillHavingTrouble": { - "message": "Still having trouble?", - "description": "Link text to open MetaMask support when passkey unlock troubleshooting did not help." - }, - "passkeyTroubleshootUnlock": { - "message": "Trouble unlocking?", - "description": "Opens MetaMask in a full browser tab when passkey is unreliable in the side panel." - }, - "passkeyTroubleshootUnlockModalTitle": { - "message": "Trouble unlocking", - "description": "Title for the modal shown when the user needs help unlocking with a passkey from the side panel." - }, - "passkeyTroubleshootVerify": { - "message": "Trouble verifying?", - "description": "Link to open passkey troubleshooting when verifying identity (not unlock), e.g. change password or security settings in the side panel." - }, - "passkeyTroubleshootVerifyModalTitle": { - "message": "Trouble verifying?", - "description": "Title for the passkey troubleshoot modal when the user needs help verifying with a passkey outside of unlock (e.g. security settings or change password)." - }, - "passkeyTurnedOff": { - "message": "$1 turned off", - "description": "Toast shown after passkey unlock is turned off. $1 is the OS-specific auth-method noun (Biometrics / Touch ID / Windows Hello)." - }, - "passkeyTurnedOn": { - "message": "$1 turned on", - "description": "Toast shown after passkey unlock is turned on. $1 is the OS-specific auth-method noun (Biometrics / Touch ID / Windows Hello)." - }, - "passkeyUnlockFailed": { - "message": "$1 unlock failed. Try your password.", - "description": "Generic fallback message when passkey unlock fails. $1 is the OS-specific auth-method noun (Biometrics / Touch ID / Windows Hello)." - }, - "passkeyVerifyingDescription": { - "message": "Use $1 to verify instead of entering your password.", - "description": "Supporting line under the passkey verification heading while WebAuthn runs (e.g. change password). $1 is the OS-specific auth-method noun (Biometrics / Touch ID / Windows Hello)." - }, - "passkeyVerifyingTitle": { - "message": "Confirm with $1", - "description": "Heading while the wallet waits for passkey verification (e.g. change password). $1 is the OS-specific auth-method noun (Biometrics / Touch ID / Windows Hello)." - }, - "password": { - "message": "Password" - }, - "passwordChangedRecently": { - "message": "Your password was changed" - }, - "passwordChangedRecentlyDescription": { - "message": "Enter your new password to stay logged into MetaMask." - }, - "passwordNotLongEnough": { - "message": "Must be at least 8 characters" - }, - "passwordTermsWarning": { - "message": "If I lose this password, MetaMask can’t reset it." - }, - "passwordTermsWarningSocial": { - "message": "If I forget this password, I’ll lose access to my wallet permanently. MetaMask can’t reset it for me." - }, - "passwordToggleHide": { - "message": "Hide password" - }, - "passwordToggleShow": { - "message": "Show password" - }, - "passwordsDontMatch": { - "message": "Passwords don't match" - }, - "paste": { - "message": "Paste" - }, - "pastePrivateKey": { - "message": "Enter your private key string here:", - "description": "For importing an account from a private key" - }, - "payWith": { - "message": "Pay with", - "description": "Label for pay with row showing which token is used to pay transaction fees" - }, - "payWithModalTitle": { - "message": "Pay with", - "description": "Title for the pay with modal that allows users to select which token to pay transaction fees with" - }, - "payee": { - "message": "Payee" - }, - "pending": { - "message": "Pending" - }, - "pendingConfirmationAddNetworkAlertMessage": { - "message": "Updating network will cancel $1 pending transactions from this site.", - "description": "Number of transactions." - }, - "pendingConfirmationSwitchNetworkAlertMessage": { - "message": "Switching network will cancel $1 pending transactions from this site.", - "description": "Number of transactions." - }, - "pendingTransactionAlertMessage": { - "message": "This transaction won't go through until a previous transaction is complete. $1", - "description": "$1 represents the words 'how to cancel or speed up a transaction' in a hyperlink" - }, - "pendingTransactionAlertMessageHyperlink": { - "message": "Learn how to cancel or speed up a transaction.", - "description": "The text for the hyperlink in the pending transaction alert message" - }, - "perSecond": { - "message": "per second" - }, - "percentChange": { - "message": "Percent change" - }, - "permissionFor": { - "message": "Permission for" - }, - "permissionFrom": { - "message": "Permission from" - }, - "permissionRequested": { - "message": "Requested now" - }, - "permissionRequestedForAccounts": { - "message": "Requested now for $1", - "description": "Permission cell status for requested permission including accounts, rendered as AvatarGroup which is $1." - }, - "permissionRevoked": { - "message": "Revoked in this update" - }, - "permissionRevokedForAccounts": { - "message": "Revoked in this update for $1", - "description": "Permission cell status for revoked permission including accounts, rendered as AvatarGroup which is $1." - }, - "permission_accessNamedSnap": { - "message": "Connect to $1.", - "description": "The description for the `wallet_snap` permission. $1 is the human-readable name of the snap." - }, - "permission_accessNetwork": { - "message": "Access the internet.", - "description": "The description of the `endowment:network-access` permission." - }, - "permission_accessNetworkDescription": { - "message": "Allow $1 to access the internet. This can be used to both send and receive data with third-party servers.", - "description": "An extended description of the `endowment:network-access` permission. $1 is the snap name." - }, - "permission_accessSnap": { - "message": "Connect to the $1 snap.", - "description": "The description for the `wallet_snap` permission. $1 is the name of the snap." - }, - "permission_accessSnapDescription": { - "message": "Allow the website or snap to interact with $1.", - "description": "The description for the `wallet_snap_*` permission. $1 is the name of the Snap." - }, - "permission_assets": { - "message": "Display account assets in MetaMask.", - "description": "The description for the `endowment:assets` permission." - }, - "permission_assetsDescription": { - "message": "Allow $1 to provide asset information to the MetaMask client. The assets can be onchain or offchain.", - "description": "An extended description for the `endowment:assets` permission. $1 is the name of the Snap." - }, - "permission_cronjob": { - "message": "Schedule and execute periodic actions.", - "description": "The description for the `snap_cronjob` permission" - }, - "permission_cronjobDescription": { - "message": "Allow $1 to perform actions that run periodically at fixed times, dates, or intervals. This can be used to trigger time-sensitive interactions or notifications.", - "description": "An extended description for the `snap_cronjob` permission. $1 is the snap name." - }, - "permission_dialog": { - "message": "Display dialog windows in MetaMask.", - "description": "The description for the `snap_dialog` permission" - }, - "permission_dialogDescription": { - "message": "Allow $1 to display MetaMask popups with custom text, input field, and buttons to approve or reject an action.\nCan be used to create e.g. alerts, confirmations, and opt-in flows for a snap.", - "description": "An extended description for the `snap_dialog` permission. $1 is the snap name." - }, - "permission_ethereumAccounts": { - "message": "See address, account balance, activity and suggest transactions to approve", - "description": "The description for the `eth_accounts` permission" - }, - "permission_ethereumProvider": { - "message": "Access the Ethereum provider.", - "description": "The description for the `endowment:ethereum-provider` permission" - }, - "permission_ethereumProviderDescription": { - "message": "Allow $1 to communicate with MetaMask directly, in order for it to read data from the blockchain and suggest messages and transactions.", - "description": "An extended description for the `endowment:ethereum-provider` permission. $1 is the snap name." - }, - "permission_getEntropy": { - "message": "Derive arbitrary keys unique to $1.", - "description": "The description for the `snap_getEntropy` permission. $1 is the snap name." - }, - "permission_getEntropyDescription": { - "message": "Allow $1 to derive arbitrary keys unique to $1, without exposing them. These keys are separate from your MetaMask account(s) and not related to your private keys or Secret Recovery Phrase. Other snaps cannot access this information.", - "description": "An extended description for the `snap_getEntropy` permission. $1 is the snap name." - }, - "permission_getLocale": { - "message": "View your preferred language.", - "description": "The description for the `snap_getLocale` permission" - }, - "permission_getLocaleDescription": { - "message": "Let $1 access your preferred language from your MetaMask settings. This can be used to localize and display $1's content using your language.", - "description": "An extended description for the `snap_getLocale` permission. $1 is the snap name." - }, - "permission_getPreferences": { - "message": "See information like your preferred language and fiat currency.", - "description": "The description for the `snap_getPreferences` permission" - }, - "permission_getPreferencesDescription": { - "message": "Let $1 access information like your preferred language and fiat currency in your MetaMask settings. This helps $1 display content tailored to your preferences. ", - "description": "An extended description for the `snap_getPreferences` permission. $1 is the snap name." - }, - "permission_homePage": { - "message": "Display a custom screen", - "description": "The description for the `endowment:page-home` permission" - }, - "permission_homePageDescription": { - "message": "Let $1 display a custom home screen in MetaMask. This can be used for user interfaces, configuration, and dashboards.", - "description": "An extended description for the `endowment:page-home` permission. $1 is the snap name." - }, - "permission_keyring": { - "message": "Allow requests for adding and controlling Ethereum accounts", - "description": "The description for the `endowment:keyring` permission" - }, - "permission_keyringDescription": { - "message": "Let $1 receive requests to add or remove accounts, plus sign and transact on behalf of these accounts.", - "description": "An extended description for the `endowment:keyring` permission. $1 is the snap name." - }, - "permission_lifecycleHooks": { - "message": "Use lifecycle hooks.", - "description": "The description for the `endowment:lifecycle-hooks` permission" - }, - "permission_lifecycleHooksDescription": { - "message": "Allow $1 to use lifecycle hooks to run code at specific times during its lifecycle.", - "description": "An extended description for the `endowment:lifecycle-hooks` permission. $1 is the snap name." - }, - "permission_manageAccounts": { - "message": "Add and control Ethereum accounts", - "description": "The description for `snap_manageAccounts` permission" - }, - "permission_manageAccountsDescription": { - "message": "Allow $1 to add or remove Ethereum accounts, then transact and sign with these accounts.", - "description": "An extended description for the `snap_manageAccounts` permission. $1 is the snap name." - }, - "permission_manageBip32Keys": { - "message": "Manage $1 accounts.", - "description": "The description for the `snap_getBip32Entropy` permission. $1 is a derivation path, e.g. 'm/44'/0'/0' (secp256k1)'." - }, - "permission_manageBip44AndBip32KeysDescription": { - "message": "Allow $1 to manage accounts and assets on the requested network. These accounts are derived and backed up using your secret recovery phrase (without revealing it). With the power to derive keys, $1 can support a variety of blockchain protocols beyond Ethereum (EVMs).", - "description": "An extended description for the `snap_getBip44Entropy` and `snap_getBip44Entropy` permissions. $1 is the snap name." - }, - "permission_manageBip44Keys": { - "message": "Manage $1 accounts.", - "description": "The description for the `snap_getBip44Entropy` permission. $1 is the name of a protocol, e.g. 'Filecoin'." - }, - "permission_manageState": { - "message": "Store and manage its data on your device.", - "description": "The description for the `snap_manageState` permission" - }, - "permission_manageStateDescription": { - "message": "Allow $1 to store, update, and retrieve data securely with encryption. Other snaps cannot access this information.", - "description": "An extended description for the `snap_manageState` permission. $1 is the snap name." - }, - "permission_multichainProvider": { - "message": "Access the Multichain provider.", - "description": "The description for the `endowment:multichain-provider` permission" - }, - "permission_multichainProviderDescription": { - "message": "Allow $1 to communicate with MetaMask directly, in order for it to read data from the blockchain and suggest messages and transactions.", - "description": "An extended description for the `endowment:multichain-provider` permission. $1 is the snap name." - }, - "permission_nameLookup": { - "message": "Provide domain and address lookups.", - "description": "The description for the `endowment:name-lookup` permission." - }, - "permission_nameLookupDescription": { - "message": "Allow the snap to fetch and display address and domain lookups in different parts of the MetaMask UI.", - "description": "An extended description for the `endowment:name-lookup` permission." - }, - "permission_notifications": { - "message": "Show notifications.", - "description": "The description for the `snap_notify` permission" - }, - "permission_notificationsDescription": { - "message": "Allow $1 to display notifications within MetaMask. A short notification text can be triggered by a snap for actionable or time-sensitive information.", - "description": "An extended description for the `snap_notify` permission. $1 is the snap name." - }, - "permission_protocol": { - "message": "Provide protocol data for one or more chains.", - "description": "The description for the `endowment:protocol` permission." - }, - "permission_protocolDescription": { - "message": "Allow $1 to provide MetaMask with protocol data such as gas estimates or token information.", - "description": "An extended description for the `endowment:protocol` permission. $1 is the name of the Snap." - }, - "permission_rpc": { - "message": "Allow $1 to communicate directly with $2.", - "description": "The description for the `endowment:rpc` permission. $1 is 'other snaps' or 'websites', $2 is the snap name." - }, - "permission_rpcDescription": { - "message": "Allow $1 to send messages to $2 and receive a response from $2.", - "description": "An extended description for the `endowment:rpc` permission. $1 is 'other snaps' or 'websites', $2 is the snap name." - }, - "permission_rpcDescriptionOriginList": { - "message": "$1 and $2", - "description": "A list of allowed origins where $2 is the last origin of the list and $1 is the rest of the list separated by ','." - }, - "permission_signatureInsight": { - "message": "Display signature insights modal.", - "description": "The description for the `endowment:signature-insight` permission" - }, - "permission_signatureInsightDescription": { - "message": "Allow $1 to display a modal with insights on any signature request before approval. This can be used for anti-phishing and security solutions.", - "description": "An extended description for the `endowment:signature-insight` permission. $1 is the snap name." - }, - "permission_signatureInsightOrigin": { - "message": "See the origins of websites that initiate a signature request", - "description": "The description for the `signatureOrigin` caveat, to be used with the `endowment:signature-insight` permission" - }, - "permission_signatureInsightOriginDescription": { - "message": "Allow $1 to see the origin (URI) of websites that initiate signature requests. This can be used for anti-phishing and security solutions.", - "description": "An extended description for the `signatureOrigin` caveat, to be used with the `endowment:signature-insight` permission. $1 is the snap name." - }, - "permission_transactionInsight": { - "message": "Fetch and display transaction insights.", - "description": "The description for the `endowment:transaction-insight` permission" - }, - "permission_transactionInsightDescription": { - "message": "Allow $1 to decode transactions and show insights within the MetaMask UI. This can be used for anti-phishing and security solutions.", - "description": "An extended description for the `endowment:transaction-insight` permission. $1 is the snap name." - }, - "permission_transactionInsightOrigin": { - "message": "See the origins of websites that suggest transactions", - "description": "The description for the `transactionOrigin` caveat, to be used with the `endowment:transaction-insight` permission" - }, - "permission_transactionInsightOriginDescription": { - "message": "Allow $1 to see the origin (URI) of websites that suggest transactions. This can be used for anti-phishing and security solutions.", - "description": "An extended description for the `transactionOrigin` caveat, to be used with the `endowment:transaction-insight` permission. $1 is the snap name." - }, - "permission_unknown": { - "message": "Unknown permission: $1", - "description": "$1 is the name of a requested permission that is not recognized." - }, - "permission_viewBip32PublicKeys": { - "message": "View your public key for $1 ($2).", - "description": "The description for the `snap_getBip32PublicKey` permission. $1 is a derivation path, e.g. 'm/44'/0'/0''. $2 is the elliptic curve name, e.g. 'secp256k1'." - }, - "permission_viewBip32PublicKeysDescription": { - "message": "Allow $2 to view your public keys (and addresses) for $1. This does not grant any control of accounts or assets.", - "description": "An extended description for the `snap_getBip32PublicKey` permission. $1 is a derivation path (name). $2 is the snap name." - }, - "permission_viewNamedBip32PublicKeys": { - "message": "View your public key for $1.", - "description": "The description for the `snap_getBip32PublicKey` permission. $1 is a name for the derivation path, e.g., 'Ethereum accounts'." - }, - "permission_walletSwitchEthereumChain": { - "message": "Use your enabled networks", - "description": "The label for the `wallet_switchEthereumChain` permission" - }, - "permission_webAssembly": { - "message": "Support for WebAssembly.", - "description": "The description of the `endowment:webassembly` permission." - }, - "permission_webAssemblyDescription": { - "message": "Allow $1 to access low-level execution environments via WebAssembly.", - "description": "An extended description of the `endowment:webassembly` permission. $1 is the snap name." - }, - "permissions": { - "message": "Permissions" - }, - "permissionsPageEmptyDescription": { - "message": "No permissions detected. Once you grant permissions to a site or install a Snap, the details will appear here." - }, - "permitSimulationChange_approve": { - "message": "Spending cap" - }, - "permitSimulationChange_bidding": { - "message": "You bid" - }, - "permitSimulationChange_listing": { - "message": "You list" - }, - "permitSimulationChange_nft_listing": { - "message": "Listing price" - }, - "permitSimulationChange_receive": { - "message": "You receive" - }, - "permitSimulationChange_revoke2": { - "message": "Revoke" - }, - "permitSimulationChange_transfer": { - "message": "You send" - }, - "permitSimulationDetailInfo": { - "message": "You're giving the spender permission to spend this many tokens from your account." - }, - "permittedChainToastUpdate": { - "message": "$1 has access to $2." - }, - "perps": { - "message": "Perps" - }, - "perps24hVolume": { - "message": "24h Volume" - }, - "perpsActivity": { - "message": "Activity" - }, - "perpsAddExposure": { - "message": "Add exposure" - }, - "perpsAddExposureDescriptionLong": { - "message": "Increase the size of your long position" - }, - "perpsAddExposureDescriptionShort": { - "message": "Increase the size of your short position" - }, - "perpsAddFunds": { - "message": "Add funds" - }, - "perpsAddFundsDescription": { - "message": "Add funds to start trading perpetual contracts with leverage" - }, - "perpsAddMargin": { - "message": "Add margin" - }, - "perpsAddMarginDescription": { - "message": "Increase margin to reduce liquidation risk" - }, - "perpsAddToFavorites": { - "message": "Add to favorites" - }, - "perpsAutoClose": { - "message": "Auto close" - }, - "perpsAvailable": { - "message": "available", - "description": "is the available balance amount" - }, - "perpsAvailableBalance": { - "message": "Available balance: " - }, - "perpsAvailableToAdd": { - "message": "Available to add" - }, - "perpsAvailableToClose": { - "message": "Available to close" - }, - "perpsAvailableToSubtract": { - "message": "Available to subtract" - }, - "perpsAvailableToTrade": { - "message": "Available to trade", - "description": "Label for the available balance that can be used for trading" - }, - "perpsBasicFunctionalityOff": { - "message": "This feature isn't available while basic functionality is turned off." - }, - "perpsBatchCancelFailed": { - "message": "Failed to cancel one or more orders. Try again." - }, - "perpsBatchCloseFailed": { - "message": "Failed to close one or more positions. Try again." - }, - "perpsCancelAllOrders": { - "message": "Cancel all" - }, - "perpsCancelOrder": { - "message": "Cancel order" - }, - "perpsCandleIntervals": { - "message": "Set candle interval" - }, - "perpsCandlePeriodDays": { - "message": "Days" - }, - "perpsCandlePeriodHours": { - "message": "Hours" - }, - "perpsCandlePeriodMinutes": { - "message": "Minutes" - }, - "perpsCloseAll": { - "message": "Close all" - }, - "perpsCloseAmount": { - "message": "Close amount" - }, - "perpsCloseLong": { - "message": "Close long" - }, - "perpsClosePartialMinNotional": { - "message": "Partial closes must be at least $1 in USD value. Increase the close amount or close the full position." - }, - "perpsClosePosition": { - "message": "Close position" - }, - "perpsCloseShort": { - "message": "Close short" - }, - "perpsConfirmCloseLong": { - "message": "Close long" - }, - "perpsConfirmCloseShort": { - "message": "Close short" - }, - "perpsConnectionTimeout": { - "message": "Connection timed out. Please try again." - }, - "perpsContactSupport": { - "message": "Contact support" - }, - "perpsCrossMarginNotSupportedDescription": { - "message": "MetaMask Perps only support trading with isolated margin. You need to first close your cross margin position before you can trade on MetaMask." - }, - "perpsCrossMarginNotSupportedTitle": { - "message": "Cross margin not supported" - }, - "perpsDateToday": { - "message": "Today" - }, - "perpsDateYesterday": { - "message": "Yesterday" - }, - "perpsDepositActivityTitle": { - "message": "Funded Perps" - }, - "perpsDepositErrorBridgeFailed": { - "message": "Bridge failed" - }, - "perpsDepositFailed": { - "message": "Deposit could not be completed. Try again." - }, - "perpsDepositFundsTitle": { - "message": "Deposit funds to Perps" - }, - "perpsDepositTitle": { - "message": "Funded perps account" - }, - "perpsDepositToastErrorDescription": { - "message": "Your funds were not added to Perps. Try again." - }, - "perpsDepositToastErrorTitle": { - "message": "Perps deposit failed" - }, - "perpsDepositToastPendingDescription": { - "message": "Your funds will be available to trade shortly." - }, - "perpsDepositToastPendingTitle": { - "message": "Adding funds to Perps" - }, - "perpsDepositToastSuccessDescription": { - "message": "Funds are ready to trade" - }, - "perpsDepositToastSuccessTitle": { - "message": "Your Perps account was funded" - }, - "perpsDeposits": { - "message": "Deposits" - }, - "perpsDetails": { - "message": "Details" - }, - "perpsDirection": { - "message": "Direction" - }, - "perpsDisclaimer": { - "message": "Perpetual contracts are very risky, and you could suddenly and without notice lose your entire investment. You trade entirely at your own risk. Powered by Hyperliquid. Price chart powered by TradingView." - }, - "perpsEmptyDescription": { - "message": "Trade perpetuals with leverage. Open your first position to get started." - }, - "perpsEntryPrice": { - "message": "Entry price" - }, - "perpsEstSize": { - "message": "Est. size" - }, - "perpsEstimatedPnlAtStopLoss": { - "message": "Est. P&L at stop loss", - "description": "Label for estimated profit or loss when stop loss is hit" - }, - "perpsEstimatedPnlAtTakeProfit": { - "message": "Est. P&L at take profit", - "description": "Label for estimated profit or loss when take profit is hit" - }, - "perpsExploreMarkets": { - "message": "Explore markets" - }, - "perpsFees": { - "message": "Fees" - }, - "perpsFilterAll": { - "message": "All" - }, - "perpsFilterCommodities": { - "message": "Commodities" - }, - "perpsFilterCrypto": { - "message": "Crypto" - }, - "perpsFilterForex": { - "message": "Forex" - }, - "perpsFilterNew": { - "message": "New" - }, - "perpsFilterStocks": { - "message": "Stocks" - }, - "perpsFunding": { - "message": "Funding" - }, - "perpsFundingPayments": { - "message": "Funding payments" - }, - "perpsFundingRate": { - "message": "Funding rate" - }, - "perpsFundingRateTooltip": { - "message": "An hourly fee paid between traders to keep prices in line with the market. If the rate is positive, longs pay shorts. If negative, shorts pay longs." - }, - "perpsGeoBlockedDescription": { - "message": "Perps trading isn't available in your location due to local restrictions or sanctions." - }, - "perpsGeoBlockedTitle": { - "message": "Perps unavailable in your region" - }, - "perpsGiveFeedback": { - "message": "Give us feedback" - }, - "perpsIncludesPnl": { - "message": "includes P&L $1" - }, - "perpsInsufficientMargin": { - "message": "Insufficient margin to place this order." - }, - "perpsLearnBasics": { - "message": "Learn the basics of perps" - }, - "perpsLearnMore": { - "message": "Learn more" - }, - "perpsLeverage": { - "message": "Leverage" - }, - "perpsLimit": { - "message": "Limit" - }, - "perpsLimitPrice": { - "message": "Limit price" - }, - "perpsLimitPriceAboveCurrentPrice": { - "message": "Limit price is above current price" - }, - "perpsLimitPriceBelowCurrentPrice": { - "message": "Limit price is below current price" - }, - "perpsLimitPriceNearLiquidation": { - "message": "Current price is near the estimated liquidation price" - }, - "perpsLiquidationDistance": { - "message": "Liquidation distance" - }, - "perpsLiquidationPrice": { - "message": "Liquidation price" - }, - "perpsLong": { - "message": "Long" - }, - "perpsMargin": { - "message": "Margin" - }, - "perpsMarginRiskWarning": { - "message": "Removing margin moves your liquidation price closer. Ensure you have sufficient buffer." - }, - "perpsMarket": { - "message": "Market" - }, - "perpsMarketNotFound": { - "message": "Market not found" - }, - "perpsMarketNotFoundDescription": { - "message": "The market \"$1\" could not be found.", - "description": "$1 is the market symbol that was not found" - }, - "perpsMarkets": { - "message": "Markets" - }, - "perpsMid": { - "message": "Mid" - }, - "perpsMinOrderSize": { - "message": "Order size must be at least $1", - "description": "$1 is the minimum order size with currency symbol (e.g., '$10'). Shown as submit-button copy when the size input is empty or below the minimum." - }, - "perpsModify": { - "message": "Modify" - }, - "perpsModifyPosition": { - "message": "Modify Position" - }, - "perpsMore": { - "message": "More" - }, - "perpsNetworkError": { - "message": "A network error occurred. Please try again." - }, - "perpsNoMarketsFound": { - "message": "No markets found" - }, - "perpsNoTransactions": { - "message": "No transactions yet" - }, - "perpsOpenInterest": { - "message": "Open interest" - }, - "perpsOpenInterestTooltip": { - "message": "The combined value of all open positions for this perp" - }, - "perpsOpenLong": { - "message": "Open long $1", - "description": "$1 is the asset symbol (e.g., BTC, ETH)" - }, - "perpsOpenOrders": { - "message": "Open Orders" - }, - "perpsOpenShort": { - "message": "Open short $1", - "description": "$1 is the asset symbol (e.g., BTC, ETH)" - }, - "perpsOraclePrice": { - "message": "Oracle price" - }, - "perpsOraclePriceTooltip": { - "message": "The median of external prices reported by validators, used for computing funding rate" - }, - "perpsOrderDate": { - "message": "Date" - }, - "perpsOrderFailed": { - "message": "Order could not be placed. Try again." - }, - "perpsOrderOriginalSize": { - "message": "Original size" - }, - "perpsOrderRejected": { - "message": "Your order was rejected. Try again." - }, - "perpsOrderStatus": { - "message": "Status" - }, - "perpsOrderValue": { - "message": "Order value" - }, - "perpsOrders": { - "message": "Orders" - }, - "perpsPnl": { - "message": "P&L" - }, - "perpsPosition": { - "message": "Position" - }, - "perpsPositions": { - "message": "Positions" - }, - "perpsRateLimitExceeded": { - "message": "Too many requests. Please wait and try again." - }, - "perpsRecentActivity": { - "message": "Recent activity" - }, - "perpsReduceExposure": { - "message": "Reduce exposure" - }, - "perpsReduceExposureDescriptionLong": { - "message": "Decrease the size of your long position" - }, - "perpsReduceExposureDescriptionShort": { - "message": "Decrease the size of your short position" - }, - "perpsReduceOnly": { - "message": "Reduce only" - }, - "perpsRemoveFromFavorites": { - "message": "Remove from favorites" - }, - "perpsRemoveMargin": { - "message": "Remove margin" - }, - "perpsRemoveMarginDescription": { - "message": "Withdraw excess margin from position" - }, - "perpsReturn": { - "message": "Return" - }, - "perpsReversePosition": { - "message": "Reverse position" - }, - "perpsReversePositionDescriptionLong": { - "message": "Flip your long position to a short" - }, - "perpsReversePositionDescriptionShort": { - "message": "Flip your short position to a long" - }, - "perpsSaveChanges": { - "message": "Save changes", - "description": "Button text for saving TP/SL changes" - }, - "perpsSearchMarkets": { - "message": "Search markets" - }, - "perpsSeeAll": { - "message": "See all", - "description": "Accessible label for the arrow button that navigates to the full activity list" - }, - "perpsServiceUnavailable": { - "message": "Service temporarily unavailable. Please try again later." - }, - "perpsShort": { - "message": "Short" - }, - "perpsSize": { - "message": "Size" - }, - "perpsSlippageExceeded": { - "message": "Slippage exceeded. Adjust your slippage tolerance and try again." - }, - "perpsSortByFundingRate": { - "message": "Funding rate" - }, - "perpsSortByHighToLow": { - "message": "High to low" - }, - "perpsSortByLowToHigh": { - "message": "Low to high" - }, - "perpsSortByOpenInterest": { - "message": "Open interest" - }, - "perpsSortByPriceChange": { - "message": "Price change" - }, - "perpsSortByRank": { - "message": "Rank" - }, - "perpsSortBySection": { - "message": "Sort by" - }, - "perpsSortByTitle": { - "message": "Filter" - }, - "perpsSortByVolume": { - "message": "Volume" - }, - "perpsStartNewTrade": { - "message": "Start a new trade" - }, - "perpsStartTrading": { - "message": "Start trading" - }, - "perpsStats": { - "message": "Stats" - }, - "perpsStatusCanceled": { - "message": "Canceled" - }, - "perpsStatusCompleted": { - "message": "Completed" - }, - "perpsStatusFilled": { - "message": "Filled" - }, - "perpsStatusOpen": { - "message": "Open" - }, - "perpsStatusQueued": { - "message": "Queued" - }, - "perpsStatusRejected": { - "message": "Rejected" - }, - "perpsStatusTriggered": { - "message": "Triggered" - }, - "perpsStopLoss": { - "message": "Stop loss", - "description": "Label for stop loss price input" - }, - "perpsStopLossInvalidLiquidationPrice": { - "message": "Stop loss must be $1 liquidation price", - "description": "Validation error when stop loss price is on the wrong side of the liquidation price. $1 is above/below." - }, - "perpsStopLossInvalidPrice": { - "message": "Stop loss must be $1 $2 price", - "description": "Validation error when stop loss price is on the wrong side of the reference price. $1 is above/below, $2 is current/entry." - }, - "perpsSubmitting": { - "message": "Submitting...", - "description": "Loading text shown while an order is being submitted" - }, - "perpsTakeProfit": { - "message": "Take profit", - "description": "Label for take profit price input" - }, - "perpsTakeProfitInvalidPrice": { - "message": "Take profit must be $1 $2 price", - "description": "Validation error when take profit price is on the wrong side of the reference price. $1 is above/below, $2 is current/entry." - }, - "perpsToastCancelOrderFailed": { - "message": "Failed to cancel order", - "description": "Error toast text shown when cancelling a perps limit order fails" - }, - "perpsToastCancelOrderSuccess": { - "message": "Order cancelled", - "description": "Success toast text shown when a perps limit order is successfully cancelled" - }, - "perpsToastCloseFailed": { - "message": "Failed to close position", - "description": "Error toast text shown when closing a perps position fails" - }, - "perpsToastCloseInProgress": { - "message": "Closing position", - "description": "In-progress toast text shown while closing a perps position" - }, - "perpsToastClosePnlSubtitle": { - "message": "Your PnL is $1", - "description": "$1 is the formatted PnL percentage for a closed position" - }, - "perpsToastMarginAddSuccess": { - "message": "Added $1 margin to $2 position", - "description": "$1 is the dollar-prefixed amount (e.g. $100) and $2 is the asset symbol for successful margin addition" - }, - "perpsToastMarginAdjustmentFailed": { - "message": "Margin adjustment failed", - "description": "Error toast text shown when adding or removing margin fails" - }, - "perpsToastMarginAdjustmentFailedDescriptionFallback": { - "message": "Unable to adjust margin. Please try again.", - "description": "Fallback description shown when margin adjustment fails without a usable error message." - }, - "perpsToastMarginRemoveSuccess": { - "message": "Removed $1 margin from $2 position", - "description": "$1 is the dollar-prefixed amount (e.g. $100) and $2 is the asset symbol for successful margin removal" - }, - "perpsToastOrderFailed": { - "message": "Order failed", - "description": "Error toast text shown when placing a perps order fails" - }, - "perpsToastOrderFailedDescriptionFallback": { - "message": "Your funds have been returned to you", - "description": "Fallback order failure subtitle shown when no specific order error is available" - }, - "perpsToastOrderFilled": { - "message": "Order filled", - "description": "Success toast text shown when a perps market order is filled" - }, - "perpsToastOrderPlaced": { - "message": "Order placed", - "description": "Success toast text shown when a perps limit order is accepted" - }, - "perpsToastOrderPlacementSubtitle": { - "message": "$1 $2 $3", - "description": "$1 is the order direction, $2 is the position size amount, and $3 is the asset symbol" - }, - "perpsToastOrderSubmitted": { - "message": "Order submitted", - "description": "In-progress toast text shown while a perps order is being submitted" - }, - "perpsToastPartialCloseFailed": { - "message": "Failed to partially close position", - "description": "Error toast text shown when a perps position is partially closed and fails" - }, - "perpsToastPartialCloseInProgress": { - "message": "Partially closing position", - "description": "In-progress toast text shown while a perps position is being partially closed" - }, - "perpsToastPartialCloseSuccess": { - "message": "Position partially closed", - "description": "Success toast text shown when a perps position is partially closed" - }, - "perpsToastPositionStillActive": { - "message": "Your position is still active", - "description": "Subtitle shown in perps close failure toasts when the position remains open" - }, - "perpsToastReverseFailed": { - "message": "Failed to reverse position", - "description": "Error toast text shown when reversing a perps position fails" - }, - "perpsToastReverseInProgress": { - "message": "Reversing position", - "description": "In-progress toast text shown while reversing a perps position" - }, - "perpsToastReverseSuccess": { - "message": "Position reversed", - "description": "Success toast text shown when a perps position is reversed" - }, - "perpsToastSubmitInProgress": { - "message": "Submitting your trade", - "description": "In-progress toast text shown while a perps trade is being submitted" - }, - "perpsToastTradeSuccess": { - "message": "Position closed", - "description": "Success toast text shown when a perps position is closed" - }, - "perpsToastUpdateFailed": { - "message": "Failed to update TP/SL", - "description": "Error toast text shown when updating TP/SL settings fails" - }, - "perpsToastUpdateInProgress": { - "message": "Updating TP/SL...", - "description": "In-progress toast text shown while updating TP/SL settings" - }, - "perpsToastUpdateSuccess": { - "message": "TP/SL updated successfully", - "description": "Success toast text shown when TP/SL settings are updated" - }, - "perpsTotalBalance": { - "message": "Total balance" - }, - "perpsTradePerps": { - "message": "Trade perps" - }, - "perpsTrades": { - "message": "Trades" - }, - "perpsTransactionTitleOpenedLong": { - "message": "Opened long" - }, - "perpsTriggerPrice": { - "message": "Trigger price" - }, - "perpsTutorialChooseLeverageDescription": { - "message": "Leverage amplifies both gains and losses. With 40x leverage, a 1% price move equals a 40% gain or loss on your margin." - }, - "perpsTutorialChooseLeverageTitle": { - "message": "Choose your leverage" - }, - "perpsTutorialCloseAnytimeDescription": { - "message": "Exit whenever you want. You'll get back your margin, plus profits or minus losses." - }, - "perpsTutorialCloseAnytimeTitle": { - "message": "Close any time" - }, - "perpsTutorialContinue": { - "message": "Continue" - }, - "perpsTutorialGoLongShortDescription": { - "message": "Pick a token to long or short, then set your order size." - }, - "perpsTutorialGoLongShortSubtitle": { - "message": "Go long to profit if the price goes up. Go short to profit if the price goes down." - }, - "perpsTutorialGoLongShortTitle": { - "message": "Go long or short on a token" - }, - "perpsTutorialLetsGo": { - "message": "Let's go" - }, - "perpsTutorialReadyToTradeDescription": { - "message": "Fund your perps account with any token and make your first trade in seconds." - }, - "perpsTutorialReadyToTradeTitle": { - "message": "Ready to trade?" - }, - "perpsTutorialSkip": { - "message": "Skip" - }, - "perpsTutorialWatchLiquidationDescription": { - "message": "You'll lose your entire margin if the token hits your liquidation price. Higher leverage means less room to liquidation." - }, - "perpsTutorialWatchLiquidationTitle": { - "message": "Watch out for liquidation" - }, - "perpsTutorialWhatArePerpsDescription": { - "message": "MetaMask now supports perpetual futures — aka perps — letting you trade on a token's price movement without buying it." - }, - "perpsTutorialWhatArePerpsSubtitle": { - "message": "Here's how it works." - }, - "perpsTutorialWhatArePerpsTitle": { - "message": "What are perps?" - }, - "perpsUnrealizedPnl": { - "message": "Unrealized P&L" - }, - "perpsWatchlist": { - "message": "Watchlist" - }, - "perpsWithdraw": { - "message": "Withdraw" - }, - "perpsWithdrawActivityTitle": { - "message": "Perps withdraw", - "description": "Title shown in the Activity list for a Perps withdraw transaction" - }, - "perpsWithdrawEstimatedTime": { - "message": "Estimated time" - }, - "perpsWithdrawFailed": { - "message": "Withdrawal could not be completed. Try again." - }, - "perpsWithdrawFee": { - "message": "Provider Fee" - }, - "perpsWithdrawFundsTitle": { - "message": "Withdraw" - }, - "perpsWithdrawInsufficient": { - "message": "Amount exceeds your available Perps balance." - }, - "perpsWithdrawInvalidAddress": { - "message": "Enter a valid destination address." - }, - "perpsWithdrawInvalidAmount": { - "message": "Enter a valid amount." - }, - "perpsWithdrawMinNotice": { - "message": "Minimum withdrawal: $1 USDC", - "description": "$1 is the minimum amount (e.g. 1.01)" - }, - "perpsWithdrawMinutesApprox": { - "message": "~$1 min", - "description": "$1 is the estimated number of minutes" - }, - "perpsWithdrawNoAccount": { - "message": "No account selected. Select an account and try again." - }, - "perpsWithdrawPostQuoteToastErrorDescription": { - "message": "Failed to proceed with withdrawal" - }, - "perpsWithdrawPostQuoteToastErrorTitle": { - "message": "Something went wrong" - }, - "perpsWithdrawPostQuoteToastPendingDescription": { - "message": "Available in about 1 minute" - }, - "perpsWithdrawPostQuoteToastPendingTitle": { - "message": "Withdrawal in progress" - }, - "perpsWithdrawPostQuoteToastSuccessDescription": { - "message": "$1 $2 moved to your wallet", - "description": "$1 is the formatted USD amount, e.g. '$20.73'. $2 is the destination token symbol, e.g. 'BNB'." - }, - "perpsWithdrawPostQuoteToastSuccessGenericDescription": { - "message": "Funds moved to your wallet" - }, - "perpsWithdrawPostQuoteToastSuccessTitle": { - "message": "Withdrawal complete" - }, - "perpsWithdrawReceive": { - "message": "Receive" - }, - "perpsWithdrawRoutesError": { - "message": "Could not load withdrawal limits. Try again later." - }, - "perpsWithdrawToastErrorTitle": { - "message": "Withdrawal failed" - }, - "perpsWithdrawToastSuccessDescription": { - "message": "We are processing $1. Funds typically arrive within a few minutes.", - "description": "$1 is the formatted withdrawal amount" - }, - "perpsWithdrawToastSuccessTitle": { - "message": "Withdrawal submitted" - }, - "perpsWithdrawTooltip": { - "message": "MetaMask will swap to your desired token for you. No MetaMask fee applies when you swap to mUSD.", - "description": "Tooltip shown on the Transaction fee row of the Perps Withdraw confirmation" - }, - "perpsYouReceive": { - "message": "You receive" - }, - "perpsYouWillReceive": { - "message": "You'll receive" - }, - "personalAddressDetected": { - "message": "Personal address detected. Input the token contract address." - }, - "pin": { - "message": "Pin", - "description": "Pin label used in multichain account menu" - }, - "pinMetaMask": { - "message": "Pin the MetaMask extension" - }, - "pinMetaMaskDescription": { - "message": "Click on $1 and then $2 to pin it." - }, - "pinToTop": { - "message": "Pin to top" - }, - "pinned": { - "message": "Pinned" - }, - "pleaseConfirm": { - "message": "Please confirm" - }, - "pna25ModalBlogPostLink": { - "message": "blog post." - }, - "pna25ModalBody1": { - "message": "To better serve you, we’re updating our analytics so publicly available data like wallet addresses and related on-chain activity can be associated with actions you take in MetaMask. This helps us improve MetaMask's performance, security, and features in order to make a better, safer wallet." - }, - "pna25ModalBody2": { - "message": "We take privacy seriously. We do not use this information for advertising or sell your data to third parties. You can opt out anytime in Settings." - }, - "pna25ModalBody3": { - "message": "You can read more about what we collect, how we protect it, and why we’re making this change in our latest" - }, - "pna25ModalTitle": { - "message": "Privacy and product updates" - }, - "popularNetworkAddToolTip": { - "message": "Some of these networks rely on third parties. The connections may be less reliable or enable third-parties to track activity.", - "description": "Learn more link" - }, - "popularNetworks": { - "message": "Popular networks" - }, - "preferencesAndDisplay": { - "message": "Preferences and display" - }, - "prev": { - "message": "Prev" - }, - "price": { - "message": "Price" - }, - "priceUnavailable": { - "message": "price unavailable" - }, - "primaryType": { - "message": "Primary type" - }, - "priority": { - "message": "Priority" - }, - "priorityFee": { - "message": "Priority fee" - }, - "priorityFeeProperCase": { - "message": "Priority fee" - }, - "priorityFeeTooHigh": { - "message": "Priority fee must be less than max base fee" - }, - "privacy": { - "message": "Privacy" - }, - "privacyMsg": { - "message": "Privacy Policy" - }, - "privateKey": { - "message": "Private key", - "description": "select this type of file to use to import an account" - }, - "privateKeyCopyWarning": { - "message": "Private key for $1", - "description": "$1 represents the account name" - }, - "privateKeyHidden": { - "message": "The private key is hidden", - "description": "Explains that the private key input is hidden" - }, - "privateKeyShow": { - "message": "Show/Hide the private key input", - "description": "Describes a toggle that is used to show or hide the private key input" - }, - "privateKeyShown": { - "message": "This private key is being shown", - "description": "Explains that the private key input is being shown" - }, - "privateKeyWarning": { - "message": "Warning: Never disclose this key. Anyone with your private keys can steal any assets held in your account." - }, - "privateKeys": { - "message": "Private keys", - "description": "Private keys row label on multichain account details page." - }, - "privateNetwork": { - "message": "Private network" - }, - "proceed": { - "message": "Proceed" - }, - "proceedWithTransaction": { - "message": "I want to proceed anyway" - }, - "productAnnouncements": { - "message": "Product announcements" - }, - "provide": { - "message": "Provide" - }, - "providerFee": { - "message": "Provider fee", - "description": "Label used in the Transaction fee tooltip for the provider (bridge/relay) fee, e.g. in Perps Withdraw" - }, - "publicAddress": { - "message": "Public address" - }, - "pushNotificationLimitOrderFilledDescriptionLong": { - "message": "Your $1 long position is now open.", - "description": "$1 is the asset symbol" - }, - "pushNotificationLimitOrderFilledDescriptionShort": { - "message": "Your $1 short position is now open.", - "description": "$1 is the asset symbol" - }, - "pushNotificationLimitOrderFilledTitle": { - "message": "Limit order filled" - }, - "pushNotificationPositionLiquidatedDescriptionLong": { - "message": "Your $1 long was closed.", - "description": "$1 is the asset symbol" - }, - "pushNotificationPositionLiquidatedDescriptionShort": { - "message": "Your $1 short was closed.", - "description": "$1 is the asset symbol" - }, - "pushNotificationPositionLiquidatedTitle": { - "message": "Position liquidated" - }, - "pushNotificationShieldClaimCreatedDescriptionShort": { - "message": "Your claim has been created" - }, - "pushNotificationShieldClaimCreatedTitle": { - "message": "Claim created" - }, - "pushNotificationShieldClaimStatusUpdatedDescriptionShort": { - "message": "Your claim has been updated" - }, - "pushNotificationShieldClaimStatusUpdatedTitle": { - "message": "Claim updated" - }, - "pushNotificationShieldLearnMoreCta": { - "message": "Learn more" - }, - "pushNotificationShieldSubscriptionCreatedDescriptionShort": { - "message": "Your plan is now active." - }, - "pushNotificationShieldSubscriptionPaymentFailedDescriptionShort": { - "message": "Your plan has been paused due to payment failure." - }, - "pushNotificationShieldSubscriptionTitle": { - "message": "MetaMask Transaction Shield" - }, - "pushNotificationShieldUpdatePaymentCta": { - "message": "Update payment" - }, - "pushNotificationStopLossTriggeredDescriptionLong": { - "message": "Your $1 long closed at your stop loss.", - "description": "$1 is the asset symbol" - }, - "pushNotificationStopLossTriggeredDescriptionShort": { - "message": "Your $1 short closed at your stop loss.", - "description": "$1 is the asset symbol" - }, - "pushNotificationStopLossTriggeredTitle": { - "message": "Stop loss triggered" - }, - "pushNotificationTakeProfitTriggeredDescriptionLong": { - "message": "Your $1 long closed at your take profit.", - "description": "$1 is the asset symbol" - }, - "pushNotificationTakeProfitTriggeredDescriptionShort": { - "message": "Your $1 short closed at your take profit.", - "description": "$1 is the asset symbol" - }, - "pushNotificationTakeProfitTriggeredTitle": { - "message": "Take profit triggered" - }, - "pushPlatformNotificationsFundsReceivedDescription": { - "message": "You received $1 $2" - }, - "pushPlatformNotificationsFundsReceivedDescriptionDefault": { - "message": "You received some tokens" - }, - "pushPlatformNotificationsFundsReceivedTitle": { - "message": "Funds received" - }, - "pushPlatformNotificationsFundsSentDescription": { - "message": "You successfully sent $1 $2" - }, - "pushPlatformNotificationsFundsSentDescriptionDefault": { - "message": "You successfully sent some tokens" - }, - "pushPlatformNotificationsFundsSentTitle": { - "message": "Funds sent" - }, - "pushPlatformNotificationsNftReceivedDescription": { - "message": "You received new NFTs" - }, - "pushPlatformNotificationsNftReceivedTitle": { - "message": "NFT received" - }, - "pushPlatformNotificationsNftSentDescription": { - "message": "You have successfully sent an NFT" - }, - "pushPlatformNotificationsNftSentTitle": { - "message": "NFT sent" - }, - "pushPlatformNotificationsStakingLidoStakeCompletedDescription": { - "message": "Your Lido stake was successful" - }, - "pushPlatformNotificationsStakingLidoStakeCompletedTitle": { - "message": "Stake complete" - }, - "pushPlatformNotificationsStakingLidoStakeReadyToBeWithdrawnDescription": { - "message": "Your Lido stake is now ready to be withdrawn" - }, - "pushPlatformNotificationsStakingLidoStakeReadyToBeWithdrawnTitle": { - "message": "Stake ready for withdrawal" - }, - "pushPlatformNotificationsStakingLidoWithdrawalCompletedDescription": { - "message": "Your Lido withdrawal was successful" - }, - "pushPlatformNotificationsStakingLidoWithdrawalCompletedTitle": { - "message": "Withdrawal completed" - }, - "pushPlatformNotificationsStakingLidoWithdrawalRequestedDescription": { - "message": "Your Lido withdrawal request was submitted" - }, - "pushPlatformNotificationsStakingLidoWithdrawalRequestedTitle": { - "message": "Withdrawal requested" - }, - "pushPlatformNotificationsStakingRocketpoolStakeCompletedDescription": { - "message": "Your RocketPool stake was successful" - }, - "pushPlatformNotificationsStakingRocketpoolStakeCompletedTitle": { - "message": "Stake complete" - }, - "pushPlatformNotificationsStakingRocketpoolUnstakeCompletedDescription": { - "message": "Your RocketPool unstake was successful" - }, - "pushPlatformNotificationsStakingRocketpoolUnstakeCompletedTitle": { - "message": "Unstake complete" - }, - "pushPlatformNotificationsSwapCompletedDescription": { - "message": "Your MetaMask Swap was successful" - }, - "pushPlatformNotificationsSwapCompletedTitle": { - "message": "Swap completed" - }, - "qr": { - "message": "QR", - "description": "Hardware device name" - }, - "qrCameraAccessBlockedBody": { - "message": "To continue, allow camera access in your browser settings.", - "description": "Body text when the browser has persistently blocked camera access for the QR hardware wallet scanner (Chromium, Firefox, etc.)." - }, - "qrCameraAccessBlockedChromiumHint": { - "message": "Click the camera icon in settings and set to \"Allow\"", - "description": "Instruction shown on the Chromium blocked-camera screen for QR scanning." - }, - "qrCameraAccessBlockedFirefoxStep1": { - "message": "Go to Settings → Privacy & Security → Permissions → Camera", - "description": "Firefox camera recovery step 1." - }, - "qrCameraAccessBlockedFirefoxStep2": { - "message": "Look for $1", - "description": "$1 is the truncated moz-extension:// origin for this install." - }, - "qrCameraAccessBlockedFirefoxStep3": { - "message": "Set to \"Allow\"", - "description": "Firefox camera recovery step 3." - }, - "qrCameraAccessBlockedTitle": { - "message": "Camera access blocked", - "description": "Title when camera access is persistently blocked for QR scanning." - }, - "qrCameraAccessNeededBody": { - "message": "MetaMask needs camera access to scan the QR code on your device.", - "description": "Body when the user dismissed the camera permission prompt but it can be requested again." - }, - "qrCameraAccessNeededTitle": { - "message": "Camera access needed", - "description": "Title when the camera permission dialog was dismissed without a choice." - }, - "queued": { - "message": "Queued" - }, - "quizIntroduction": { - "message": "To reveal your Secret Recovery Phrase, you need to correctly answer two questions." - }, - "quotedTotalCost": { - "message": "Total cost: $1" - }, - "rank": { - "message": "Rank" - }, - "rateIncludesMMFee": { - "message": "Includes $1% MM fee." - }, - "readdToken": { - "message": "You can add this token back in the future by going to “Import token” in your accounts options menu." - }, - "receive": { - "message": "Receive" - }, - "receiveCrypto": { - "message": "Receive crypto" - }, - "receiveToken": { - "message": "Receive token", - "description": "Row label on the Transaction Details page for withdrawal flows (e.g. Perps Withdraw), showing which token the user receives" - }, - "received": { - "message": "Received" - }, - "receivedTotal": { - "message": "Received total", - "description": "Row label on the Transaction Details page for withdrawal flows (e.g. Perps Withdraw), showing the net amount received after fees" - }, - "receivingAddress": { - "message": "Receiving address", - "description": "Page title when viewing addresses for receiving funds" - }, - "recipient": { - "message": "Recipient" - }, - "recipientAddressPlaceholderNew": { - "message": "Enter public address (0x) or domain name" - }, - "recipientEditAriaLabel": { - "message": "Edit recipient" - }, - "recipientPlaceholderText": { - "message": "Enter or paste an address or name" - }, - "recoveryPhraseReminderBackupStart": { - "message": "Back up now" - }, - "recoveryPhraseReminderConfirm": { - "message": "Remind me later" - }, - "recoveryPhraseReminderSubText": { - "message": "If you don’t back up your wallet, you’ll lose access to your funds if you get locked out of the app or get a new device." - }, - "recoveryPhraseReminderTitle": { - "message": "Protect your wallet" - }, - "redeemer": { - "message": "Redeemer" - }, - "redeposit": { - "message": "Redeposit" - }, - "refreshList": { - "message": "Refresh list" - }, - "reject": { - "message": "Reject" - }, - "rejectAll": { - "message": "Reject all" - }, - "rejected": { - "message": "Rejected" - }, - "remove": { - "message": "Remove" - }, - "removeAccount": { - "message": "Remove account" - }, - "removeAccountModalBannerDescription": { - "message": "Make sure you have the Secret Recovery Phrase or private key for this account before removing.", - "description": "Make sure you have the Secret Recovery Phrase or private key for this account before removing." - }, - "removeAccountModalBannerTitle": { - "message": "This account will be removed from MetaMask.", - "description": "Title of a banner alert used on account remove modal." - }, - "removeAll": { - "message": "Remove all" - }, - "removeKeyringSnap": { - "message": "Removing this Snap removes these accounts from MetaMask:" - }, - "removeKeyringSnapToolTip": { - "message": "The snap controls the accounts, and by removing it, the accounts will be removed from MetaMask, too, but they will remain in the blockchain." - }, - "removeNFT": { - "message": "Remove NFT" - }, - "removeNftErrorMessage": { - "message": "We could not remove this NFT." - }, - "removeNftMessage": { - "message": "NFT was successfully removed!" - }, - "removeSnap": { - "message": "Remove Snap" - }, - "removeSnapAccountDescription": { - "message": "If you proceed, this account will no longer be available in MetaMask." - }, - "removeSnapAccountTitle": { - "message": "Remove account" - }, - "removeSnapConfirmation": { - "message": "Are you sure you want to remove $1?", - "description": "$1 represents the name of the snap" - }, - "removeSnapDescription": { - "message": "This action will delete the snap, its data and revoke your given permissions." - }, - "rename": { - "message": "Rename", - "description": "Multichain account menu item for triggering account rename action modal" - }, - "replace": { - "message": "replace" - }, - "reportIssue": { - "message": "Report an issue" - }, - "reportThisError": { - "message": "Report this error" - }, - "requestFrom": { - "message": "Request from" - }, - "requestFromInfo": { - "message": "This is the site asking for your signature." - }, - "requestFromInfoSnap": { - "message": "This is the Snap asking for your signature." - }, - "requestFromTransactionDescription": { - "message": "This is the site asking for your confirmation." - }, - "requestingFor": { - "message": "Requesting for" - }, - "requestingForAccount": { - "message": "Requesting for $1", - "description": "Name of Account" - }, - "requestingForNetwork": { - "message": "Requesting for $1", - "description": "Name of Network" - }, - "required": { - "message": "Required" - }, - "requiredToken": { - "message": "Required token", - "description": "Label for the required token row showing the token and amount needed by the transaction" - }, - "reset": { - "message": "Reset" - }, - "resetWallet": { - "message": "Reset your wallet" - }, - "resetWalletBoldTextOne": { - "message": "permanently" - }, - "resetWalletBoldTextTwo": { - "message": "It will not impact the assets within your wallet." - }, - "resetWalletButton": { - "message": "Yes, reset wallet" - }, - "resetWalletDescriptionOne": { - "message": "We can’t recover your Secret Recovery Phrase. You can reset the wallet to create a new one and import your accounts using private keys." - }, - "resetWalletDescriptionTwo": { - "message": "Resetting will $1 delete all wallet data in MetaMask on this device. $2", - "description": "$1 is the bolded text 'permanently' and $2 is the bolded text 'It will not impact the assets within your wallet.'" - }, - "resetWalletTitle": { - "message": "Don’t have your Secret Recovery Phrase?" - }, - "resolutionProtocol": { - "message": "Address resolved via $1", - "description": "$1 is the protocol name." - }, - "restartMetamask": { - "message": "Restart MetaMask" - }, - "restore": { - "message": "Restore" - }, - "restoreUserData": { - "message": "Restore user data" - }, - "restoreWalletDescription": { - "message": "Enter your $1. By importing the wallet, you will erase your current wallet data from this device. This can’t be undone.", - "description": "$1 is the Secret Recovery Phrase" - }, - "resultPageError": { - "message": "Error" - }, - "resultPageErrorDefaultMessage": { - "message": "The operation failed." - }, - "resultPageSuccess": { - "message": "Success" - }, - "resultPageSuccessDefaultMessage": { - "message": "The operation completed successfully." - }, - "retryTransaction": { - "message": "Retry transaction" - }, - "reusedTokenNameWarning": { - "message": "A token here reuses a symbol from another token you watch, this can be confusing or deceptive." - }, - "revealMultichainPrivateKeysBannerDescription": { - "message": "This key grants full control of your account for the associated chain. $1", - "description": "Description for the banner warning users not to share their private key" - }, - "revealMultichainPrivateKeysBannerTitle": { - "message": "Don’t share your private key", - "description": "Title for the banner warning users not to share their private key" - }, - "revealSecretRecoveryPhrase": { - "message": "Back up Secret Recovery Phrase" - }, - "revealSecretRecoveryPhraseSettings": { - "message": "Reveal Secret Recovery Phrase" - }, - "revealSeedWordsDescription1": { - "message": "Your $1 gives full access to your wallet, funds, and accounts.", - "description": "This is a sentence consisting of link using 'revealSeedWordsSRPName' as $1." - }, - "revealSeedWordsQR": { - "message": "QR" - }, - "revealSeedWordsSRPName": { - "message": "Secret Recovery Phrase" - }, - "revealSeedWordsText": { - "message": "Text" - }, - "revealSeedWordsWarning": { - "message": "Make sure nobody is looking at your screen. MetaMask Support will never ask for this." - }, - "revealSensitiveContent": { - "message": "Reveal sensitive content" - }, - "review": { - "message": "Review" - }, - "reviewAlert": { - "message": "Review alert" - }, - "reviewAlerts": { - "message": "Review alerts" - }, - "reviewPendingTransactions": { - "message": "Review pending transactions" - }, - "reviewPermissions": { - "message": "Review permissions" - }, - "revokePermission": { - "message": "Revoke permission" - }, - "revokePermissionTitle": { - "message": "Remove $1 permission", - "description": "The token symbol that is being revoked" - }, - "revokeSimulationDetailsDesc": { - "message": "You're removing someone's permission to spend tokens from your account." - }, - "revokeTokenApprovals": { - "message": "Revoke token approvals" - }, - "reward": { - "message": "Reward" - }, - "rewardsAuthFailDescription": { - "message": "An unknown error occurred while authenticating this account with the rewards program. Please try again later." - }, - "rewardsAuthFailTitle": { - "message": "Unknown error." - }, - "rewardsErrorMessagesAccountAlreadyRegistered": { - "message": "This account is already registered with another Rewards profile. Please switch account to continue." - }, - "rewardsErrorMessagesFailedToClaimReward": { - "message": "Failed to claim reward. Please try again shortly." - }, - "rewardsErrorMessagesRequestRejected": { - "message": "You rejected the request." - }, - "rewardsErrorMessagesServiceNotAvailable": { - "message": "Service is not available at the moment. Please try again shortly." - }, - "rewardsErrorMessagesSomethingWentWrong": { - "message": "Something went wrong. Please try again shortly." - }, - "rewardsLinkAccount": { - "message": "Add account" - }, - "rewardsLinkAccountError": { - "message": "Failed to add account" - }, - "rewardsOnboardingCheckingRegion": { - "message": "Checking region..." - }, - "rewardsOnboardingDescription": { - "message": "Win prizes, claim perks, and discover more ways to earn—just by using MetaMask." - }, - "rewardsOnboardingIntroGeoCheckFailedDescription": { - "message": "We cannot determine if your country allows opting into the rewards program. Please check your connection and try again." - }, - "rewardsOnboardingIntroGeoCheckFailedTitle": { - "message": "Cannot determine opt-in eligibility" - }, - "rewardsOnboardingIntroGeoCheckRetry": { - "message": "Retry" - }, - "rewardsOnboardingIntroRewardsAuthFailRetry": { - "message": "Retry" - }, - "rewardsOnboardingIntroUnsupportedRegionDescription": { - "message": "Rewards are not supported in your region yet. We are working on expanding access, so check back later." - }, - "rewardsOnboardingIntroUnsupportedRegionTitle": { - "message": "Region not supported" - }, - "rewardsOnboardingLegalDisclaimer": { - "message": "By joining, you agree to our $1. We'll opt in all accounts on this device and track on-chain activity to reward you automatically. $2", - "description": "$1 is the Terms and Privacy Notice link, $2 is the Learn more link" - }, - "rewardsOnboardingLegalDisclaimerLearnMoreLink": { - "message": "Learn more" - }, - "rewardsOnboardingLegalDisclaimerTermsLink": { - "message": "Terms and Privacy Notice" - }, - "rewardsOnboardingOptInError": { - "message": "Opt-in failed" - }, - "rewardsOnboardingReferralCodeError": { - "message": "Invalid referral code" - }, - "rewardsOnboardingReferralCodePlaceholder": { - "message": "Referral code (optional)" - }, - "rewardsOnboardingReferralCodeUnknownError": { - "message": "Referral code couldn’t be validated." - }, - "rewardsOnboardingReferralCodeUnknownErrorDescription": { - "message": "Check your connection and try again." - }, - "rewardsOnboardingReferralHide": { - "message": "Hide code" - }, - "rewardsOnboardingReferralPrompt": { - "message": "Have a referral code?" - }, - "rewardsOnboardingSignUp": { - "message": "Join Rewards" - }, - "rewardsOnboardingSignUpLoading": { - "message": "Joining..." - }, - "rewardsOnboardingTitle": { - "message": "Start earning rewards" - }, - "rewardsOptInVerifyingReferralCode": { - "message": "Verifying referral code...", - "description": "Text shown while verifying a referral code during rewards opt-in" - }, - "rewardsPointsBalance": { - "message": "$1 points", - "description": "$1 is the formatted number of rewards points" - }, - "rewardsPointsBalance_couldntLoad": { - "message": "Couldn't load", - "description": "Text shown when points balance couldn't be loaded" - }, - "rewardsPointsIcon": { - "message": "Rewards points", - "description": "Alt text for the rewards points icon" - }, - "rewardsQRCodeDescription": { - "message": "To access MetaMask Rewards, scan the QR code with your mobile device." - }, - "rewardsQRCodeTitle": { - "message": "Continue on mobile" - }, - "rewardsSignInFailed": { - "message": "Failed to sign in", - "description": "Text shown when the opt-in sign attempt failed, with a retry affordance" - }, - "rewardsSignInToViewPoints": { - "message": "Sign in to view points", - "description": "Text shown when user needs to sign in to view their rewards points" - }, - "rewardsSignUp": { - "message": "Sign up for Rewards" - }, - "rewardsSigningIn": { - "message": "Signing in...", - "description": "Text shown while the user is signing in to view their rewards points" - }, - "rpcNameOptional": { - "message": "RPC Name (Optional)" - }, - "rpcUrl": { - "message": "RPC URL" - }, - "safeTransferFrom": { - "message": "Safe transfer from" - }, - "save": { - "message": "Save" - }, - "scanInstructions": { - "message": "Place the QR code in front of your camera" - }, - "scanQrCode": { - "message": "Scan QR code" - }, - "scrollDown": { - "message": "Scroll down" - }, - "search": { - "message": "Search" - }, - "searchAnAcccountOrContact": { - "message": "Search an account or contact" - }, - "searchForAnAssetToSend": { - "message": "Search for an asset to send" - }, - "searchNetworks": { - "message": "Search networks" - }, - "searchNfts": { - "message": "Search NFTs" - }, - "searchTokens": { - "message": "Search tokens" - }, - "searchTokensByNameOrAddress": { - "message": "Search tokens by name or address" - }, - "searchYourAccounts": { - "message": "Search your accounts", - "description": "Placeholder in a searchbar. Used on multichain account list page." - }, - "second": { - "message": "sec" - }, - "secretRecoveryPhrase": { - "message": "Secret Recovery Phrase" - }, - "secretRecoveryPhrasePlusNumber": { - "message": "Secret Recovery Phrase $1", - "description": "The $1 is the order of the Secret Recovery Phrase" - }, - "secureWallet": { - "message": "Secure wallet" - }, - "secureWalletRemindLaterButton": { - "message": "Remind me later" - }, - "security": { - "message": "Security" - }, - "securityAlert": { - "message": "Security alert from $1 and $2" - }, - "securityAlerts": { - "message": "Security alerts" - }, - "securityAlertsDescriptionV2": { - "message": "This feature alerts you to malicious activity by actively reviewing transaction and signature requests. $1" - }, - "securityAndPassword": { - "message": "Security and password" - }, - "securityAndPrivacy": { - "message": "Security and privacy" - }, - "securityChangePasswordToastError": { - "message": "Password couldn’t be changed. Please try again." - }, - "securityChangePasswordToastPasskeyRenewalFailed": { - "message": "New password saved, but $1 unlock couldn't be turned on.", - "description": "Toast when passkey vault key renewal fails after the new password was already applied. $1 is the OS-specific auth-method noun (Biometrics / Touch ID / Windows Hello)." - }, - "securityChangePasswordToastSuccess": { - "message": "New password saved" - }, - "securityDefaultSettingsSocialLogin": { - "message": "Security & privacy" - }, - "securityDescription": { - "message": "Reduce your chances of joining unsafe networks and protect your accounts" - }, - "securityMessageLinkForNetworks": { - "message": "network scams and security risks" - }, - "securityProviderPoweredBy": { - "message": "Powered by $1", - "description": "The security provider that is providing data" - }, - "securitySocialLoginDefaultSettingsDescription": { - "message": "Reduce your chances of joining unsafe networks and protect your accounts and data" - }, - "securitySocialLoginEnabled": { - "message": "Enabled" - }, - "securitySocialLoginEnabledDescription": { - "message": "Use your $1 login and MetaMask password to recover your account and Secret Recovery Phrases.", - "description": "The $1 is the text 'Google' or 'Apple'" - }, - "securitySocialLoginLabel": { - "message": "$1 RECOVERY", - "description": "The $1 is the text 'Google' or 'Apple'" - }, - "securitySrpLabel": { - "message": "SECRET RECOVERY PHRASES" - }, - "seeAllPermissions": { - "message": "See all permissions", - "description": "Used for revealing more content (e.g. permission list, etc.)" - }, - "seeDetails": { - "message": "See details" - }, - "seedPhraseReq": { - "message": "Secret Recovery Phrases contain 12, 15, 18, 21, or 24 words" - }, - "seedPhraseReviewDetails": { - "message": "This is your $1. Write it down in the correct order and keep it safe. If someone has your Secret Recovery Phrase, they can access your wallet. Don’t share it with anyone, ever.", - "description": "The $1 is the bolded text 'Secret Recovery Phrase'" - }, - "seedPhraseReviewTitle": { - "message": "Save your Secret Recovery Phrase" - }, - "seedPhraseReviewTitleSettings": { - "message": "Save Secret Recovery Phrase" - }, - "select": { - "message": "Select" - }, - "selectAccountToConnect": { - "message": "Select an account to connect" - }, - "selectAll": { - "message": "Select all" - }, - "selectAnAccount": { - "message": "Select an account" - }, - "selectAnAccountAlreadyConnected": { - "message": "This account has already been connected to MetaMask" - }, - "selectEnableDisplayMediaPrivacyPreference": { - "message": "Turn on Display NFT Media" - }, - "selectHdPath": { - "message": "Select HD path" - }, - "selectNFTPrivacyPreference": { - "message": "Enable NFT Autodetection" - }, - "selectNetworkToFilter": { - "message": "Select network to filter" - }, - "selectPathHelp": { - "message": "If you don't see the accounts you expect, try switching the HD path or current selected network." - }, - "selectRecipient": { - "message": "Select recipient" - }, - "selectRpcUrl": { - "message": "Select RPC URL" - }, - "selectSecretRecoveryPhrase": { - "message": "Select Secret Recovery Phrase" - }, - "selectType": { - "message": "Select type" - }, - "selectedAccountMismatch": { - "message": "Different account selected" - }, - "send": { - "message": "Send" - }, - "sendBugReport": { - "message": "Send us a bug report." - }, - "sendSelectReceiveAsset": { - "message": "Select asset to receive" - }, - "sendSelectSendAsset": { - "message": "Select asset to send" - }, - "sendingAsset": { - "message": "Sending $1" - }, - "sendingDisabled": { - "message": "Sending of ERC-1155 NFT assets is not yet supported." - }, - "sendingNativeAsset": { - "message": "Sending $1", - "description": "$1 represents the native currency symbol for the current network (e.g. ETH or BNB)" - }, - "sent": { - "message": "Sent" - }, - "sentSpecifiedTokens": { - "message": "Sent $1", - "description": "Symbol of the specified token" - }, - "sentTokenAsToken": { - "message": "Sent $1 as $2", - "description": "Used in the transaction display list to describe a swap and send. $1 and $2 are the symbols of tokens in involved in the swap." - }, - "sepolia": { - "message": "Sepolia test network" - }, - "setApprovalForAll": { - "message": "Set approval for all" - }, - "setApprovalForAllRedesignedTitle": { - "message": "Withdrawal request" - }, - "setApprovalForAllTitle": { - "message": "Approve $1 with no spend limit", - "description": "The token symbol that is being approved" - }, - "setUp": { - "message": "Set up", - "description": "Action label for Smart Accounts. Used on multichain details page." - }, - "setUpPasskey": { - "message": "Set up $1", - "description": "Action label for turning on passkey unlock. $1 is the OS-specific auth-method noun (Biometrics / Touch ID / Windows Hello)." - }, - "settingAddSnapAccount": { - "message": "Add account Snap" - }, - "settingUpPasskey": { - "message": "Setting up $1", - "description": "Heading on the onboarding passkey setup screen while enrollment is in progress. $1 is the OS-specific auth-method noun (Biometrics / Touch ID / Windows Hello)." - }, - "settings": { - "message": "Settings" - }, - "settingsSearchCantFindSetting": { - "message": "Can't find a setting? $1", - "description": "$1 is a link to request a setting" - }, - "settingsSearchMatchingNotFound": { - "message": "No matching results found." - }, - "settingsSearchRequestHere": { - "message": "Request here" - }, - "shieldClaim": { - "message": "Submit a claim" - }, - "shieldClaimChainNotSupported": { - "message": "This chain is not supported." - }, - "shieldClaimDeleteDraft": { - "message": "Delete draft" - }, - "shieldClaimDeleteDraftDescription": { - "message": "Your claim draft has been deleted." - }, - "shieldClaimDeletedDraft": { - "message": "Draft deleted" - }, - "shieldClaimDescription": { - "message": "Description of case" - }, - "shieldClaimDescriptionPlaceholder": { - "message": "Provide a brief summary of the incident" - }, - "shieldClaimDetails": { - "message": "You may file a single claim per incident within $1 days of the incident. $2", - "description": "The $1 is the number of days and $2 is a link to the full coverage policy" - }, - "shieldClaimDetailsViewClaims": { - "message": "This claim is being reviewed by our team. We will notify you when it has been approved by email. View the full coverage policy $1.", - "description": "The $1 is a link to the full coverage policy" - }, - "shieldClaimDraftDeleteFailed": { - "message": "Deleting draft failed" - }, - "shieldClaimDraftDeleteFailedDescription": { - "message": "Unable to delete your claim draft. Please try again." - }, - "shieldClaimDraftSaveFailed": { - "message": "Saving draft failed" - }, - "shieldClaimDraftSaveFailedDescription": { - "message": "Unable to save your claim draft. Please try again." - }, - "shieldClaimDraftSaved": { - "message": "Draft saved" - }, - "shieldClaimDraftSavedDescription": { - "message": "Your claim draft has been saved." - }, - "shieldClaimDuplicateClaimExists": { - "message": "A claim has already been submitted for this transaction hash." - }, - "shieldClaimEmail": { - "message": "Email" - }, - "shieldClaimEmailHelpText": { - "message": "We'll use this email to keep you informed with updates." - }, - "shieldClaimFileErrorCountExceeded": { - "message": "Number of files exceeds the maximum allowed count." - }, - "shieldClaimFileErrorInvalidType": { - "message": "Invalid file type." - }, - "shieldClaimFileErrorSizeExceeded": { - "message": "Total file size exceeds the maximum allowed size." - }, - "shieldClaimFileUploader": { - "message": "Image upload" - }, - "shieldClaimFileUploaderAcceptText": { - "message": "PDF, PNG, JPG (Max $1MB)", - "description": "The $1 is the maximum file size in MB" - }, - "shieldClaimFileUploaderHelpText": { - "message": "If you have any additional evidence, please upload it here." - }, - "shieldClaimGroupActive": { - "message": "Active claims" - }, - "shieldClaimGroupActiveNote": { - "message": "Note: You can have a maximum of $1 drafts and $2 active claims at a single time.", - "description": "The $1 is the maximum number of drafts and $2 is the maximum number of active claims" - }, - "shieldClaimGroupCompleted": { - "message": "Completed claims" - }, - "shieldClaimGroupDrafts": { - "message": "Drafts" - }, - "shieldClaimGroupNoCompletedClaims": { - "message": "No completed claims" - }, - "shieldClaimGroupNoCompletedClaimsDescription": { - "message": "Track your completed claims here." - }, - "shieldClaimGroupNoOpenClaims": { - "message": "No open claims" - }, - "shieldClaimGroupNoOpenClaimsDescription": { - "message": "Track the status of your claims here." - }, - "shieldClaimGroupRejected": { - "message": "Rejected claims" - }, - "shieldClaimImpactedTxHash": { - "message": "Impacted transaction hash" - }, - "shieldClaimImpactedTxHashHelpText": { - "message": "Also known as TXID, hash ID, or transaction ID." - }, - "shieldClaimImpactedTxHashHelpTextLink": { - "message": "Need help finding it?" - }, - "shieldClaimImpactedTxHashNotEligible": { - "message": "This transaction is not done within MetaMask, hence it is not eligible for claims" - }, - "shieldClaimImpactedWalletAddress": { - "message": "Impacted wallet address" - }, - "shieldClaimIncidentDetails": { - "message": "Incident details" - }, - "shieldClaimInvalidChainId": { - "message": "Please enter a valid chain ID" - }, - "shieldClaimInvalidEmail": { - "message": "Please enter a valid email address" - }, - "shieldClaimInvalidRequired": { - "message": "This field is required" - }, - "shieldClaimInvalidTxHash": { - "message": "Please enter a valid transaction hash" - }, - "shieldClaimInvalidWalletAddress": { - "message": "Please enter a valid wallet address" - }, - "shieldClaimMaxClaimsLimitExceeded": { - "message": "You have reached the maximum limit of open claims. Please contact support if you need to submit additional claims." - }, - "shieldClaimMaxDraftsReached": { - "message": "You have reached the maximum number of drafts. Please delete a draft to save a new one." - }, - "shieldClaimNetwork": { - "message": "Select network" - }, - "shieldClaimPersonalDetails": { - "message": "Personal details" - }, - "shieldClaimReimbursementWalletAddress": { - "message": "Wallet address for reimbursement" - }, - "shieldClaimReimbursementWalletAddressHelpText": { - "message": "Please ensure this is not a compromised wallet." - }, - "shieldClaimSameWalletAddressesError": { - "message": "Impacted wallet address and reimbursement wallet address must be different." - }, - "shieldClaimSaveAsDraft": { - "message": "Save as draft" - }, - "shieldClaimSelectAccount": { - "message": "Select an account" - }, - "shieldClaimSelectNetwork": { - "message": "Select a network" - }, - "shieldClaimSignatureCoverageNotCovered": { - "message": "Signature coverage not found for the given transaction hash." - }, - "shieldClaimSubmissionWindowExpired": { - "message": "Submission window expired. Claims must be filed within $1 days of the incident.", - "description": "The $1 is the number of days" - }, - "shieldClaimSubmit": { - "message": "Submit a claim" - }, - "shieldClaimSubmitError": { - "message": "Claim submission failed" - }, - "shieldClaimSubmitSuccess": { - "message": "Claim submission received" - }, - "shieldClaimSubmitSuccessDescription": { - "message": "Your claim has been submitted. We'll review it and provide updates by email." - }, - "shieldClaimTransactionNotFound": { - "message": "Transaction not found on chain." - }, - "shieldClaimTransactionNotFromWalletAddress": { - "message": "Transaction hash not from wallet address." - }, - "shieldClaimTransactionNotSuccessful": { - "message": "Transaction not successful on chain." - }, - "shieldClaimViewGuidelines": { - "message": "View guide" - }, - "shieldClaimWalletOwnershipValidationFailed": { - "message": "Wallet ownership validation failed." - }, - "shieldClaimsLastEdited": { - "message": "Last edited: $1", - "description": "The $1 is the date" - }, - "shieldClaimsListTitle": { - "message": "Claims" - }, - "shieldClaimsNumber": { - "message": "Claim #$1", - "description": "The $1 is the claim number" - }, - "shieldClaimsTabHistory": { - "message": "Claim history" - }, - "shieldClaimsTabPending": { - "message": "Claims" - }, - "shieldConfirmMembership": { - "message": "Confirm plan" - }, - "shieldCoverageAlertCovered": { - "message": "You're protected up to $2 with MetaMask Transaction Shield. $1." - }, - "shieldCoverageAlertHighRiskTransaction": { - "message": "This is a high risk transaction, so it isn't protected by MetaMask Transaction Shield. $1." - }, - "shieldCoverageAlertMessageChainNotSupported": { - "message": "This chain is not supported, so it isn't protected by MetaMask Transaction Shield. $1" - }, - "shieldCoverageAlertMessageLearnHowCoverageWorks": { - "message": "See what's covered" - }, - "shieldCoverageAlertMessagePaused": { - "message": "There was an issue with your MetaMask Transaction Shield plan payment. Please update your payment method to resume coverage." - }, - "shieldCoverageAlertMessagePausedAcknowledgeButton": { - "message": "Update payment method" - }, - "shieldCoverageAlertMessagePotentialRisks": { - "message": "This transaction has potential risks, so it isn't protected by MetaMask Transaction Shield. $1" - }, - "shieldCoverageAlertMessageSignatureNotSupported": { - "message": "This signature isn't supported, so it isn't protected by MetaMask Transaction Shield. $1" - }, - "shieldCoverageAlertMessageTitle": { - "message": "This transaction isn't covered" - }, - "shieldCoverageAlertMessageTitleCovered": { - "message": "This transaction is covered" - }, - "shieldCoverageAlertMessageTitlePaused": { - "message": "Transaction Shield paused" - }, - "shieldCoverageAlertMessageTitleSignatureRequest": { - "message": "This signature request isn't covered" - }, - "shieldCoverageAlertMessageTitleSignatureRequestCovered": { - "message": "This signature request is covered" - }, - "shieldCoverageAlertMessageTokenTrustSignalWarning": { - "message": "This token shows strong signs of malicious behavior. Continuing may result in loss of funds. $1." - }, - "shieldCoverageAlertMessageTxTypeNotSupported": { - "message": "This transaction type is not supported, so it isn't protected by MetaMask Transaction Shield. $1" - }, - "shieldCoverageAlertMessageUnknown": { - "message": "This request can't be verified, so it isn't protected by MetaMask Transaction Shield. $1." - }, - "shieldCoverageEnding": { - "message": "Shield coverage ends soon" - }, - "shieldCoverageEndingAction": { - "message": "Renew" - }, - "shieldCoverageEndingDescription": { - "message": "Plan ends on $1.", - "description": "The $1 is the date" - }, - "shieldCovered": { - "message": "Covered" - }, - "shieldEntryModalGetStarted": { - "message": "Start 14-day free trial" - }, - "shieldEntryModalSubtitleA": { - "message": "Transaction Shield provides protection up to $1 and 24/7 priority support.", - "description": "The $1 is the amount of transaction protection" - }, - "shieldEntryModalSubtitleB": { - "message": "Transact with added confidence with up to $1 in protection and 24/7 priority support.", - "description": "The $1 is the amount of transaction protection" - }, - "shieldEntryModalTitleA": { - "message": "Transact with added confidence" - }, - "shieldEntryModalTitleB": { - "message": "Introducing Transaction Shield" - }, - "shieldErrorPayerAddressAlreadyUsed": { - "message": "This address is already linked to another account. Use a different address to subscribe." - }, - "shieldEstimatedChangesMonthlyTooltipText": { - "message": "Authorize $1/month for 12 months ($2 total). You'll be billed monthly, not the full amount now." - }, - "shieldFooterAgreement": { - "message": "By continuing, I agree to Transaction Shield $1" - }, - "shieldManagePlan": { - "message": "Manage plan" - }, - "shieldNotCovered": { - "message": "Not covered" - }, - "shieldPastPlansTitle": { - "message": "Past details" - }, - "shieldPaused": { - "message": "Paused" - }, - "shieldPaymentPaused": { - "message": "Transaction Shield paused" - }, - "shieldPaymentPausedActionCardPayment": { - "message": "Update" - }, - "shieldPaymentPausedActionCryptoPayment": { - "message": "Update" - }, - "shieldPaymentPausedActionUnexpectedError": { - "message": "View" - }, - "shieldPaymentPausedDescriptionCardPayment": { - "message": "Card payment failed." - }, - "shieldPaymentPausedDescriptionCryptoPayment": { - "message": "Insufficient token balance." - }, - "shieldPaymentPausedDescriptionUnexpectedError": { - "message": "An unexpected error occurred." - }, - "shieldPlanAnnual": { - "message": "Annual" - }, - "shieldPlanAnnualPrice": { - "message": "$1/year", - "description": "The $1 is the price of the annual plan" - }, - "shieldPlanBillingDate": { - "message": "Billing date" - }, - "shieldPlanCard": { - "message": "Card" - }, - "shieldPlanCryptoMonthlyNote": { - "message": "Total monthly fees pre-approved for a year" - }, - "shieldPlanDetails": { - "message": "What you get" - }, - "shieldPlanDetails1": { - "message": "Free $1-day trial", - "description": "The $1 is the number of days" - }, - "shieldPlanDetails2": { - "message": "Up to $1 in transaction protection", - "description": "The $1 is the amount of transaction protection" - }, - "shieldPlanDetails3": { - "message": "24/7 access to priority live chat support" - }, - "shieldPlanDetailsRewards": { - "message": "Earn $1 points per $2", - "description": "The $1 is the number of points and $2 plan interval (month or year)" - }, - "shieldPlanDetailsRewardsDescription": { - "message": "This offer is only available during Rewards seasons. Points are given when free trial ends to users signed up for Rewards." - }, - "shieldPlanDetailsRewardsTitle": { - "message": "Rewards" - }, - "shieldPlanErrorText": { - "message": "Couldn’t connect to Transaction Shield" - }, - "shieldPlanFooterNoteMonthly": { - "message": "Billed monthly, cancel anytime" - }, - "shieldPlanFooterNoteYearly": { - "message": "Billed yearly, cancel anytime" - }, - "shieldPlanMonthly": { - "message": "Monthly" - }, - "shieldPlanMonthlyPrice": { - "message": "$1/month", - "description": "The $1 is the price of the monthly plan" - }, - "shieldPlanPayWith": { - "message": "Pay with" - }, - "shieldPlanPayWithCard": { - "message": "Pay with card" - }, - "shieldPlanPayWithToken": { - "message": "Pay with $1", - "description": "The $1 is token" - }, - "shieldPlanPaymentTitle": { - "message": "Change payment method" - }, - "shieldPlanSave": { - "message": "Save 17%" - }, - "shieldPlanSelectToken": { - "message": "Select a token" - }, - "shieldPlanTitle": { - "message": "Choose your plan" - }, - "shieldPlanYearly": { - "message": "Yearly" - }, - "shieldStartNowCTA": { - "message": "Start now" - }, - "shieldStartNowCTAWithTrial": { - "message": "Start free trial" - }, - "shieldTx": { - "message": "Transaction Shield" - }, - "shieldTxBillingAccount": { - "message": "Billing account" - }, - "shieldTxCancelDetails": { - "message": "If you cancel, your wallet and transactions will not be covered starting $1.", - "description": "The $1 is the date subscription ends" - }, - "shieldTxCancelImmediateDetails": { - "message": "If you cancel, your wallet and transactions will not be covered." - }, - "shieldTxCancelNotAllowed": { - "message": "Your subscription cannot be cancelled at the moment." - }, - "shieldTxCancelNotAllowedPendingVerification": { - "message": "Your subscription cannot be cancelled due to pending verification." - }, - "shieldTxCancelWhenPausedDetails": { - "message": "Your plan isn't active while paused. If you cancel, your plan will immediately end." - }, - "shieldTxDetails1DescriptionTrial": { - "message": "Free for $1 days, then $2", - "description": "The $1 is the number of days and the $2 is the price of the plan" - }, - "shieldTxDetails1Title": { - "message": "MetaMask Transaction Shield" - }, - "shieldTxDetails2Description": { - "message": "$1, next billing on $2", - "description": "The $1 is interval and the $2 is the date of next billing" - }, - "shieldTxDetails2Title": { - "message": "Billing cycle" - }, - "shieldTxDetails3DescriptionCrypto": { - "message": "Crypto ($1)", - "description": "The $1 is the token symbol" - }, - "shieldTxDetails3DescriptionCryptoWithAccount": { - "message": "Crypto ($1), $2", - "description": "The $1 is the token symbol and the $2 is the account" - }, - "shieldTxDetails3Title": { - "message": "Payment method" - }, - "shieldTxDetailsManage": { - "message": "Manage" - }, - "shieldTxDetailsTitle": { - "message": "Plan details" - }, - "shieldTxMembershipActive": { - "message": "Active plan" - }, - "shieldTxMembershipBenefits": { - "message": "Your benefits" - }, - "shieldTxMembershipBenefits1Description": { - "message": "Secures assets on covered transactions" - }, - "shieldTxMembershipBenefits1Title": { - "message": "Up to $1 protection", - "description": "The $1 is the amount of transaction protection" - }, - "shieldTxMembershipBenefits2Description": { - "message": "Get faster, dedicated support anytime" - }, - "shieldTxMembershipBenefits2Title": { - "message": "Priority support" - }, - "shieldTxMembershipBenefits3Description": { - "message": "Get $1 points/$2", - "description": "The $1 is the number of points and the $2 is the interval" - }, - "shieldTxMembershipBenefits3DescriptionInactive": { - "message": "Get $1 points/$2", - "description": "The $1 is the number of points and the $2 is the interval" - }, - "shieldTxMembershipBenefits3LinkRewards": { - "message": "Link" - }, - "shieldTxMembershipBenefits3SignUp": { - "message": "Sign up" - }, - "shieldTxMembershipBenefits3Title": { - "message": "Earn season rewards" - }, - "shieldTxMembershipBenefitsInactive": { - "message": "What you get" - }, - "shieldTxMembershipBenefitsViewAll": { - "message": "View all" - }, - "shieldTxMembershipBillingDetailsViewBillingHistory": { - "message": "Manage billing" - }, - "shieldTxMembershipCancel": { - "message": "Cancel plan" - }, - "shieldTxMembershipCancelNotification": { - "message": "Your plan will be cancelled on $1.", - "description": "The $1 is the date" - }, - "shieldTxMembershipCancelledDate": { - "message": "You cancelled your plan on $1", - "description": "The $1 is the date" - }, - "shieldTxMembershipErrorInsufficientFunds": { - "message": "Your plan ends on $1. Renew now to continue your benefits.", - "description": "The $1 is the date subscription ends" - }, - "shieldTxMembershipErrorPausedCard": { - "message": "Your plan has been paused due to a failed card payment." - }, - "shieldTxMembershipErrorPausedCardAction": { - "message": "Update card details" - }, - "shieldTxMembershipErrorPausedCardTooltip": { - "message": "Your payment was declined. Please update your payment method to continue your coverage." - }, - "shieldTxMembershipErrorPausedCryptoInsufficientFunds": { - "message": "Plan paused due to insufficient funds. Payment updates may take up to $1 hours.", - "description": "The $1 is the number of hours" - }, - "shieldTxMembershipErrorPausedCryptoInsufficientFundsAction": { - "message": "Add funds" - }, - "shieldTxMembershipErrorPausedCryptoTooltip": { - "message": "Insufficient token balance in your wallet. Click retry after funding your wallet." - }, - "shieldTxMembershipErrorPausedUnexpected": { - "message": "Plan paused due to an unexpected error." - }, - "shieldTxMembershipErrorPausedUnexpectedAction": { - "message": "Contact support" - }, - "shieldTxMembershipFreeTrial": { - "message": "Free trial" - }, - "shieldTxMembershipFreeTrialDaysLeft": { - "message": "You have $1 days left on your trial", - "description": "The $1 is the number of days left" - }, - "shieldTxMembershipId": { - "message": "Member ID" - }, - "shieldTxMembershipInactive": { - "message": "Inactive plan" - }, - "shieldTxMembershipMakeClaim": { - "message": "Make a claim" - }, - "shieldTxMembershipPaused": { - "message": "Paused" - }, - "shieldTxMembershipRenew": { - "message": "Renew plan" - }, - "shieldTxMembershipRenewDescription": { - "message": "Reactivate for $1", - "description": "The $1 is the price of the plan" - }, - "shieldTxMembershipResubscribe": { - "message": "Restart plan" - }, - "shieldTxMembershipSubmitCase": { - "message": "Submit a claim" - }, - "shieldTxPastPlans": { - "message": "Past plans" - }, - "shieldTxPastPlansMonthly": { - "message": "Monthly plan" - }, - "shieldTxPastPlansYearly": { - "message": "Yearly plan" - }, - "shieldTxViewPastInvoice": { - "message": "View past invoice" - }, - "show": { - "message": "Show" - }, - "showAccount": { - "message": "Show account" - }, - "showAdvancedDetails": { - "message": "Show advanced details" - }, - "showDefaultAddress": { - "message": "Show default address" - }, - "showDefaultAddressDescription": { - "message": "Set a default address that's always visible on your home screen and account list." - }, - "showExtensionInFullSizeView": { - "message": "Show extension in full-size view" - }, - "showExtensionInFullSizeViewDescription": { - "message": "Turn this on to make full-size view your default when you click the extension icon." - }, - "showFiatConversionInTestnets": { - "message": "Show conversion on test networks" - }, - "showFiatConversionInTestnetsDescriptionV2": { - "message": "Shows network tokens as local currency on test networks. If you've been asked to turn this feature on, you might be getting scammed. For testing purposes only. $1", - "description": "$1 is the 'Learn more' link" - }, - "showHexData": { - "message": "Show hex data" - }, - "showHexDataDescription": { - "message": "Select this to show the hex data field on the send screen" - }, - "showLess": { - "message": "Show less" - }, - "showMore": { - "message": "Show more" - }, - "showNativeTokenAsMainBalance": { - "message": "Show native token as main balance" - }, - "showNft": { - "message": "Show NFT" - }, - "showPermissions": { - "message": "Show permissions" - }, - "showPrivateKey": { - "message": "Show private key" - }, - "showSRP": { - "message": "Show Secret Recovery Phrase" - }, - "showTestnetNetworks": { - "message": "Show test networks" - }, - "sidePanelMigrationToast": { - "message": "MetaMask now opens in the side panel by default. $1 any time from the menu.", - "description": "Shown when the extension opens in the side panel after migration. $1 is an inline link to switch back to the popup view." - }, - "sign": { - "message": "Sign" - }, - "signatureRequest": { - "message": "Signature request" - }, - "signature_decoding_bid_nft_tooltip": { - "message": "The NFT will be reflected in your wallet, when the bid is accepted." - }, - "signature_decoding_list_nft_tooltip": { - "message": "Expect changes only if someone buys your NFTs." - }, - "signed": { - "message": "Signed" - }, - "signing": { - "message": "Signing" - }, - "signingInWith": { - "message": "Signing in with" - }, - "signingWith": { - "message": "Signing with" - }, - "simulationApproveHeading": { - "message": "Withdraw" - }, - "simulationDetailsApproveDesc": { - "message": "You're giving someone else permission to withdraw NFTs from your account." - }, - "simulationDetailsERC20ApproveDesc": { - "message": "You're giving someone else permission to spend this amount from your account." - }, - "simulationDetailsFiatNotAvailable": { - "message": "Not available" - }, - "simulationDetailsIncomingHeading": { - "message": "You receive" - }, - "simulationDetailsIncomingHeadingReceived": { - "message": "You've received" - }, - "simulationDetailsIncomingHeadingReceiving": { - "message": "You're receiving" - }, - "simulationDetailsNoChanges": { - "message": "No changes" - }, - "simulationDetailsOutgoingHeading": { - "message": "You send" - }, - "simulationDetailsOutgoingHeadingSending": { - "message": "You're sending" - }, - "simulationDetailsOutgoingHeadingSent": { - "message": "You sent" - }, - "simulationDetailsRevokeSetApprovalForAllDesc": { - "message": "You're removing someone else's permission to withdraw NFTs from your account." - }, - "simulationDetailsSetApprovalForAllDesc": { - "message": "You're giving permission for someone else to withdraw NFTs from your account." - }, - "simulationDetailsTitle": { - "message": "Estimated changes" - }, - "simulationDetailsTitleEnforced": { - "message": "Balance changes" - }, - "simulationDetailsTitleTooltip": { - "message": "Estimated changes are what might happen if you go through with this transaction. This is just a prediction, not a guarantee." - }, - "simulationDetailsTitleTooltipEnforced": { - "message": "Balance changes are guaranteed. If this outcome isn't possible, the transaction will be stopped." - }, - "simulationDetailsTotalFiat": { - "message": "Total = $1", - "description": "$1 is the total amount in fiat currency on one side of the transaction" - }, - "simulationDetailsTransactionReverted": { - "message": "This transaction is likely to fail" - }, - "simulationDetailsUnavailable": { - "message": "Unavailable" - }, - "simulationErrorMessageV2": { - "message": "We were not able to estimate gas. There might be an error in the contract and this transaction may fail." - }, - "simulationsSettingDescription": { - "message": "Turn this on to estimate balance changes of transactions and signatures before you confirm them. This doesn't guarantee their final outcome. $1" - }, - "simulationsSettingDescriptionV2": { - "message": "Estimates balance changes of transactions before you confirm them. This doesn't guarantee the final outcome of your transactions. $1" - }, - "simulationsSettingSubHeader": { - "message": "Estimate balance changes" - }, - "singleNetwork": { - "message": "1 network" - }, - "sites": { - "message": "Sites" - }, - "siweIssued": { - "message": "Issued" - }, - "siweNetwork": { - "message": "Network" - }, - "siweRequestId": { - "message": "Request ID" - }, - "siweResources": { - "message": "Resources" - }, - "siweURI": { - "message": "URL" - }, - "skip": { - "message": "Skip" - }, - "skipDeepLinkInterstitial": { - "message": "Don't show interstitial screen when opening deep links" - }, - "skipLinkConfirmationScreens": { - "message": "Skip link confirmation screens" - }, - "skipLinkConfirmationScreensDescription": { - "message": "When you open a link from MetaMask, we show a confirmation screen to protect you from accidentally viewing sensitive info like your accounts, balances, or transaction history. Turn this on to skip that screen for links originating from MetaMask." - }, - "slippage": { - "message": "Slippage" - }, - "slippageAuto": { - "message": "Auto" - }, - "slippageEditAriaLabel": { - "message": "Edit slippage" - }, - "slippageExplanation": { - "message": "The % change in price you're willing to allow before your transaction is canceled." - }, - "smartAccount": { - "message": "Smart account" - }, - "smartAccountLabel": { - "message": "Smart Account" - }, - "smartAccountRequestsFromDapps": { - "message": "Smart account requests from dapps" - }, - "smartAccountRequestsFromDappsDescriptionV2": { - "message": "Let dapps request smart account features for standard accounts. MetaMask will only upgrade to our audited smart account." - }, - "smartAccountUpgradeBannerDescription": { - "message": "Same address. Smarter features." - }, - "smartAccountUpgradeBannerTitle": { - "message": "Switch to smart account" - }, - "smartContractAddress": { - "message": "Smart contract address" - }, - "smartContractAddressWarning": { - "message": "The recipient address may not support direct token transfers, which could result in fund loss. Only continue if you're certain this contract can receive your transfer." - }, - "smartSwapsErrorNotEnoughFunds": { - "message": "Not enough funds for a smart swap." - }, - "smartSwapsErrorUnavailable": { - "message": "Smart Swaps are temporarily unavailable." - }, - "smartTransactionCancelled": { - "message": "Your transaction was canceled" - }, - "smartTransactionCancelledDescription": { - "message": "Your transaction couldn't be completed, so it was canceled to save you from paying unnecessary gas fees." - }, - "smartTransactionError": { - "message": "Your transaction failed" - }, - "smartTransactionErrorDescription": { - "message": "Sudden market changes can cause failures. If the problem continues, reach out to MetaMask customer support." - }, - "smartTransactionPending": { - "message": "Your transaction was submitted" - }, - "smartTransactionSuccess": { - "message": "Your transaction is complete" - }, - "smartTransactions": { - "message": "Smart Transactions" - }, - "smartTransactionsEnabledDescription": { - "message": " and MEV protection. Now on by default." - }, - "smartTransactionsEnabledLink": { - "message": "Higher success rates" - }, - "smartTransactionsEnabledTitle": { - "message": "Transactions just got smarter" - }, - "snapAccountCreated": { - "message": "Account created" - }, - "snapAccountCreatedDescription": { - "message": "Your new account is ready to use!" - }, - "snapAccountCreationFailed": { - "message": "Account creation failed" - }, - "snapAccountCreationFailedDescription": { - "message": "$1 didn't manage to create an account for you.", - "description": "$1 is the snap name" - }, - "snapAccountRedirectFinishSigningTitle": { - "message": "Finish signing" - }, - "snapAccountRedirectSiteDescription": { - "message": "Follow the instructions from $1" - }, - "snapAccountRemovalFailed": { - "message": "Account removal failed" - }, - "snapAccountRemovalFailedDescription": { - "message": "$1 didn't manage to remove this account for you.", - "description": "$1 is the snap name" - }, - "snapAccountRemoved": { - "message": "Account removed" - }, - "snapAccountRemovedDescription": { - "message": "This account will no longer be available to use in MetaMask." - }, - "snapConnectTo": { - "message": "Connect to $1", - "description": "$1 is the website URL or a Snap name. Used for Snaps pre-approved connections." - }, - "snapConnectionPermissionDescription": { - "message": "Let $1 automatically connect to $2 without your approval.", - "description": "Used for Snap pre-approved connections. $1 is the Snap name, $2 is a website URL." - }, - "snapConnectionWarning": { - "message": "$1 wants to use $2", - "description": "$2 is the snap and $1 is the dapp requesting connection to the snap." - }, - "snapDetailWebsite": { - "message": "Website" - }, - "snapHomeMenu": { - "message": "Snap Home Menu" - }, - "snapInstallRequest": { - "message": "Installing $1 gives it the following permissions.", - "description": "$1 is the snap name." - }, - "snapInstallSuccess": { - "message": "Installation complete" - }, - "snapInstallWarningCheck": { - "message": "$1 wants permission to do the following:", - "description": "Warning message used in popup displayed on snap install. $1 is the snap name." - }, - "snapInstallWarningHeading": { - "message": "Proceed with caution" - }, - "snapInstallWarningPermissionDescriptionForBip32View": { - "message": "Allow $1 to view your public keys (and addresses). This does not grant any control of accounts or assets.", - "description": "An extended description for the `snap_getBip32PublicKey` permission used for tooltip on Snap Install Warning screen (popup/modal). $1 is the snap name." - }, - "snapInstallWarningPermissionDescriptionForEntropy": { - "message": "Allow $1 Snap to manage accounts and assets on the requested network(s). These accounts are derived and backed up using your secret recovery phrase (without revealing it). With the power to derive keys, $1 can support a variety of blockchain protocols beyond Ethereum (EVMs).", - "description": "An extended description for the `snap_getBip44Entropy` and `snap_getBip44Entropy` permissions used for tooltip on Snap Install Warning screen (popup/modal). $1 is the snap name." - }, - "snapInstallWarningPermissionNameForEntropy": { - "message": "Manage $1 accounts", - "description": "Permission name used for the Permission Cell component displayed on warning popup when installing a Snap. $1 is list of account types." - }, - "snapInstallWarningPermissionNameForViewPublicKey": { - "message": "View your public key for $1", - "description": "Permission name used for the Permission Cell component displayed on warning popup when installing a Snap. $1 is list of account types." - }, - "snapInstallationErrorDescription": { - "message": "$1 couldn’t be installed.", - "description": "Error description used when snap installation fails. $1 is the snap name." - }, - "snapInstallationErrorTitle": { - "message": "Installation failed", - "description": "Error title used when snap installation fails." - }, - "snapResultError": { - "message": "Error" - }, - "snapResultSuccess": { - "message": "Success" - }, - "snapResultSuccessDescription": { - "message": "$1 is ready to use" - }, - "snapUIAccountSelectorTitle": { - "message": "Select account" - }, - "snapUIAssetSelectorTitle": { - "message": "Select an asset" - }, - "snapUpdateAlertDescription": { - "message": "Get the latest version of $1", - "description": "Description used in Snap update alert banner when snap update is available. $1 is the Snap name." - }, - "snapUpdateAvailable": { - "message": "Update available" - }, - "snapUpdateErrorDescription": { - "message": "$1 couldn’t be updated.", - "description": "Error description used when snap update fails. $1 is the snap name." - }, - "snapUpdateErrorTitle": { - "message": "Update failed", - "description": "Error title used when snap update fails." - }, - "snapUpdateRequest": { - "message": "Updating $1 gives it the following permissions.", - "description": "$1 is the Snap name." - }, - "snapUpdateSuccess": { - "message": "Update complete" - }, - "snapUrlIsBlocked": { - "message": "This Snap wants to take you to a blocked site. $1." - }, - "snaps": { - "message": "Snaps" - }, - "snapsConnected": { - "message": "Snaps connected" - }, - "snapsNoInsight": { - "message": "No insight to show" - }, - "snapsPrivacyWarningFirstMessage": { - "message": "You acknowledge that any Snap that you install is a third-party service, unless otherwise identified, as defined in the Consensys $1. Your use of third-party services is governed by separate terms and conditions set forth by the third-party service provider. Consensys does not recommend the use of any Snap by any particular person for any particular reason. You access, rely upon or use the third-party service at your own risk. Consensys disclaims all responsibility and liability for any losses on account of your use of third-party services.", - "description": "First part of a message in popup modal displayed when installing a snap for the first time. $1 is terms of use link." - }, - "snapsPrivacyWarningSecondMessage": { - "message": "Any information you share with third-party services will be collected directly by those third-party services in accordance with their privacy policies. Please refer to their privacy policies for more information.", - "description": "Second part of a message in popup modal displayed when installing a snap for the first time." - }, - "snapsPrivacyWarningThirdMessage": { - "message": "Consensys has no access to information you share with third-party services.", - "description": "Third part of a message in popup modal displayed when installing a snap for the first time." - }, - "snapsSettings": { - "message": "Snap settings" - }, - "snapsTermsOfUse": { - "message": "Terms of Use" - }, - "snapsToggle": { - "message": "A snap will only run if it is enabled" - }, - "snapsUIError": { - "message": "Contact the creators of $1 for further support.", - "description": "This is shown when the insight snap throws an error. $1 is the snap name" - }, - "solanaAccountRequested": { - "message": "This site is requesting a Solana account." - }, - "solanaAccountRequired": { - "message": "A Solana account is required to connect to this site." - }, - "someNetworks": { - "message": "$1 networks" - }, - "somethingDoesntLookRight": { - "message": "Something doesn't look right? $1", - "description": "A false positive message for users to contact support. $1 is a link to the support page." - }, - "somethingIsWrong": { - "message": "Something's gone wrong. Try reloading the page." - }, - "somethingWentWrong": { - "message": "We couldn't load this page." - }, - "sortBy": { - "message": "Sort by" - }, - "sortByAlphabetically": { - "message": "Alphabetically (A-Z)" - }, - "sortByDecliningBalance": { - "message": "Declining balance ($1 high-low)", - "description": "Indicates a descending order based on token fiat balance. $1 is the preferred currency symbol" - }, - "source": { - "message": "Source" - }, - "spamModalBlockedDescription": { - "message": "This site will be blocked for 1 minute." - }, - "spamModalBlockedTitle": { - "message": "You've temporarily blocked this site" - }, - "spamModalDescription": { - "message": "If you're being spammed with multiple requests, you can temporarily block the site." - }, - "spamModalTemporaryBlockButton": { - "message": "Temporarily block this site" - }, - "spamModalTitle": { - "message": "We've noticed multiple requests" - }, - "speed": { - "message": "Speed" - }, - "speedUp": { - "message": "Speed up" - }, - "speedUpCancellation": { - "message": "Speed up this cancellation" - }, - "speedUpTransactionDescription": { - "message": "This network fee will replace the original." - }, - "speedUpTransactionFailed": { - "message": "Speed up transaction failed" - }, - "speedUpTransactionTitle": { - "message": "Speed up transaction" - }, - "spender": { - "message": "Spender" - }, - "spenderTooltipDesc": { - "message": "This is the address that will be able to withdraw your NFTs." - }, - "spenderTooltipERC20ApproveDesc": { - "message": "This is the address that will be able to spend your tokens on your behalf." - }, - "spendingCap": { - "message": "Spending cap" - }, - "spendingCaps": { - "message": "Spending caps" - }, - "srpAlreadyImportedError": { - "message": "This Secret Recovery Phrase has already been imported." - }, - "srpDetailsDescription": { - "message": "A Secret Recovery Phrase, also called a seed phrase or mnemonic, is a set of words that lets you access and control your crypto wallet. To move your wallet to MetaMask, you need this phrase." - }, - "srpDetailsOwnsAccessListItemOne": { - "message": "Take all your money" - }, - "srpDetailsOwnsAccessListItemThree": { - "message": "Change your login information" - }, - "srpDetailsOwnsAccessListItemTwo": { - "message": "Confirm transactions" - }, - "srpDetailsOwnsAccessListTitle": { - "message": "Anyone with your Secret Recovery Phrase can:" - }, - "srpDetailsTitle": { - "message": "What’s a Secret Recovery Phrase?" - }, - "srpImportDuplicateAccountError": { - "message": "The account you are trying to import is a duplicate." - }, - "srpInputNumberOfWords": { - "message": "I have a $1-word phrase", - "description": "This is the text for each option in the dropdown where a user selects how many words their secret recovery phrase has during import. The $1 is the number of words (either 12, 15, 18, 21, or 24)." - }, - "srpListName": { - "message": "Secret Recovery Phrase $1", - "description": "$1 is the order of the Secret Recovery Phrase" - }, - "srpListNumberOfAccounts": { - "message": "$1 accounts", - "description": "$1 is the number of accounts in the list" - }, - "srpListSelectionDescription": { - "message": "The Secret Recovery Phrase your new account will be generated from" - }, - "srpListSingleOrZero": { - "message": "$1 account", - "description": "$1 is the number of accounts in the list, it is either 1 or 0" - }, - "srpListStateBackedUp": { - "message": "Reveal" - }, - "srpListStateNotBackedUp": { - "message": "Backup" - }, - "srpPasteFailedTooManyWords": { - "message": "Paste failed because it contained over 24 words. A secret recovery phrase can have a maximum of 24 words.", - "description": "Description of SRP paste error when the pasted content has too many words" - }, - "srpPasteTip": { - "message": "You can paste your entire Secret Recovery Phrase into any field.", - "description": "Our secret recovery phrase input is split into one field per word. This message explains to users that they can paste their entire secrete recovery phrase into any field, and we will handle it correctly." - }, - "srpSecurityQuizGetStarted": { - "message": "Get started" - }, - "srpSecurityQuizImgAlt": { - "message": "An eye with a keyhole in the center, and three floating password fields" - }, - "srpSecurityQuizIntroduction": { - "message": "To reveal your Secret Recovery Phrase, you need to correctly answer two questions" - }, - "srpSecurityQuizQuestionOneQuestion": { - "message": "If you lose your Secret Recovery Phrase, MetaMask..." - }, - "srpSecurityQuizQuestionOneRightAnswer": { - "message": "Can’t help you" - }, - "srpSecurityQuizQuestionOneRightAnswerDescription": { - "message": "Write it down, engrave it on metal, or keep it in multiple secret spots so you never lose it. If you lose it, it’s gone forever." - }, - "srpSecurityQuizQuestionOneRightAnswerTitle": { - "message": "Right! No one can help get your Secret Recovery Phrase back" - }, - "srpSecurityQuizQuestionOneWrongAnswer": { - "message": "Can get it back for you" - }, - "srpSecurityQuizQuestionOneWrongAnswerDescription": { - "message": "If you lose your Secret Recovery Phrase, it’s gone forever. No one can help you get it back, no matter what they might say." - }, - "srpSecurityQuizQuestionOneWrongAnswerTitle": { - "message": "Wrong! No one can help get your Secret Recovery Phrase back" - }, - "srpSecurityQuizQuestionTwoQuestion": { - "message": "If anyone, even a support agent, asks for your Secret Recovery Phrase..." - }, - "srpSecurityQuizQuestionTwoRightAnswer": { - "message": "You’re being scammed" - }, - "srpSecurityQuizQuestionTwoRightAnswerDescription": { - "message": "Anyone claiming to need your Secret Recovery Phrase is lying to you. If you share it with them, they will steal your assets." - }, - "srpSecurityQuizQuestionTwoRightAnswerTitle": { - "message": "Correct! Sharing your Secret Recovery Phrase is never a good idea" - }, - "srpSecurityQuizQuestionTwoWrongAnswer": { - "message": "You should give it to them" - }, - "srpSecurityQuizQuestionTwoWrongAnswerDescription": { - "message": "Anyone claiming to need your Secret Recovery Phrase is lying to you. If you share it with them, they will steal your assets." - }, - "srpSecurityQuizQuestionTwoWrongAnswerTitle": { - "message": "Nope! Never share your Secret Recovery Phrase with anyone, ever" - }, - "srpSecurityQuizTitle": { - "message": "Security quiz" - }, - "srpToggleShow": { - "message": "Show/Hide this word of the secret recovery phrase", - "description": "Describes a toggle that is used to show or hide a single word of the secret recovery phrase" - }, - "srpWordHidden": { - "message": "This word is hidden", - "description": "Explains that a word in the secret recovery phrase is hidden" - }, - "srpWordShown": { - "message": "This word is being shown", - "description": "Explains that a word in the secret recovery phrase is being shown" - }, - "stable": { - "message": "Stable" - }, - "stableLowercase": { - "message": "stable" - }, - "stake": { - "message": "Stake" - }, - "staked": { - "message": "Staked" - }, - "stakingDeposit": { - "message": "Staking deposit" - }, - "stakingWithdrawal": { - "message": "Staking withdrawal" - }, - "standardAccountLabel": { - "message": "Standard account" - }, - "stateCorruptionAreYouSure": { - "message": "Are you sure you want to proceed?" - }, - "stateCorruptionCopyAndRestoreBeforeRecovery": { - "message": "You can try to copy and restore your state file manually before you decide to restore your vault by following $1.", - "description": "$1 represents the `stateCorruptionTheseInstructions` localization key" - }, - "stateCorruptionCopyAndRestoreBeforeReset": { - "message": "You can try to copy and restore your state file manually before you decide to reset MetaMask by following $1.", - "description": "$1 represents the `stateCorruptionTheseInstructions` localization key" - }, - "stateCorruptionDetectedNoBackup": { - "message": "Your vault cannot be automatically recovered." - }, - "stateCorruptionDetectedWithBackup": { - "message": "Your vault can be recovered from an automated backup. Automatic recovery will delete your current settings and preferences, and restore only your vault." - }, - "stateCorruptionMetamaskDatabaseCannotBeAccessed": { - "message": "Internal error: database cannot be accessed" - }, - "stateCorruptionResetMetaMaskState": { - "message": "Reset MetaMask State" - }, - "stateCorruptionResettingDatabase": { - "message": "Resetting database…" - }, - "stateCorruptionRestoreAccountsFromBackup": { - "message": "Restore accounts" - }, - "stateCorruptionRestoringDatabase": { - "message": "Restoring database…" - }, - "stateCorruptionTheseInstructions": { - "message": "these instructions", - "description": "This is a link to instructions on how to recover your Secret Recovery Phrase manually. It is used in the `stateCorruptionCopyAndRestoreBeforeRecovery` and `stateCorruptionCopyAndRestoreBeforeReset` localization keys." - }, - "stateCorruptionTheseInstructionsLinkTitle": { - "message": "How to recover your Secret Recovery Phrase" - }, - "stateLogError": { - "message": "Error in retrieving state logs, please try again later." - }, - "stateLogFileName": { - "message": "MetaMask state logs" - }, - "stateLogs": { - "message": "State logs" - }, - "stateLogsModalDescription": { - "message": "State logs can help us debug issues you might encounter. Only send it to MetaMask for support, because state logs contain your public account address and transactions." - }, - "status": { - "message": "Status" - }, - "statusNotConnected": { - "message": "Not connected" - }, - "step1LatticeWallet": { - "message": "Connect your Lattice1" - }, - "step1LatticeWalletMsg": { - "message": "You can connect MetaMask to your Lattice1 device once it is set up and online. Unlock your device and have your Device ID ready.", - "description": "$1 represents the `hardwareWalletSupportLinkConversion` localization key" - }, - "step1LedgerWallet": { - "message": "Download Ledger app" - }, - "step1LedgerWalletMsg": { - "message": "Download, set up, and enter your password to unlock $1.", - "description": "$1 represents the `ledgerLiveApp` localization value" - }, - "step1TrezorWallet": { - "message": "Connect your Trezor" - }, - "step1TrezorWalletMsg": { - "message": "Plug your Trezor directly into your computer and unlock it. Make sure you use the correct passphrase.", - "description": "$1 represents the `hardwareWalletSupportLinkConversion` localization key" - }, - "step2LedgerWallet": { - "message": "Connect your Ledger" - }, - "step2LedgerWalletMsg": { - "message": "Plug your Ledger directly into your computer, then unlock it and open the Ethereum app.", - "description": "$1 represents the `hardwareWalletSupportLinkConversion` localization key" - }, - "stillConnectingTo": { - "message": "Still connecting to $1...", - "description": "Message shown when network connection is slow. $1 is the network name." - }, - "storageErrorAction": { - "message": "Back up Secret Recovery Phrase" - }, - "storageErrorDescriptionDefault": { - "message": "Back up your Secret Recovery Phrase and reinstall MetaMask if the problem continues." - }, - "storageErrorDescriptionNoSpace": { - "message": "Your device is out of storage. Free up space now or unsaved wallet changes may be lost." - }, - "storageErrorTitle": { - "message": "We couldn't save your data" - }, - "strong": { - "message": "Strong" - }, - "stxCancelled": { - "message": "Swap would have failed" - }, - "stxCancelledDescription": { - "message": "Your transaction would have failed and was cancelled to protect you from paying unnecessary gas fees." - }, - "stxCancelledSubDescription": { - "message": "Try your swap again. We’ll be here to protect you against similar risks next time." - }, - "stxFailure": { - "message": "Swap failed" - }, - "stxFailureDescription": { - "message": "Sudden market changes can cause failures. If the problem persists, please reach out to $1.", - "description": "This message is shown to a user if their swap fails. The $1 will be replaced by support.metamask.io" - }, - "stxOptInDescriptionV2": { - "message": "Turn on Smart Transactions for more reliable and secure transactions. $1" - }, - "stxPendingPrivatelySubmittingSwap": { - "message": "Privately submitting your Swap..." - }, - "stxPendingPubliclySubmittingSwap": { - "message": "Publicly submitting your Swap..." - }, - "stxSuccess": { - "message": "Swap complete!" - }, - "stxSuccessDescription": { - "message": "Your $1 is now available.", - "description": "$1 is a token symbol, e.g. ETH" - }, - "stxSwapCompleteIn": { - "message": "Swap will complete in <", - "description": "'<' means 'less than', e.g. Swap will complete in < 2:59" - }, - "stxTryingToCancel": { - "message": "Trying to cancel your transaction..." - }, - "stxUnknown": { - "message": "Status unknown" - }, - "stxUnknownDescription": { - "message": "A transaction has been successful but we’re unsure what it is. This may be due to submitting another transaction while this swap was processing." - }, - "stxUserCancelled": { - "message": "Swap cancelled" - }, - "stxUserCancelledDescription": { - "message": "Your transaction has been cancelled and you did not pay any unnecessary gas fees." - }, - "submit": { - "message": "Submit" - }, - "submitted": { - "message": "Submitted" - }, - "suggestedBySnap": { - "message": "Suggested by $1", - "description": "$1 is the snap name" - }, - "suggestedCurrencySymbol": { - "message": "Suggested currency symbol:" - }, - "suggestedTokenName": { - "message": "Suggested name:" - }, - "summary": { - "message": "Summary" - }, - "supplied": { - "message": "Supplied" - }, - "support": { - "message": "Support" - }, - "supportCenter": { - "message": "Visit our support center" - }, - "supportMultiRpcInformation": { - "message": "We now support multiple RPCs for a single network. Your most recent RPC has been selected as the default one to resolve conflicting information." - }, - "supportedLanguagesSectionTitle": { - "message": "Supported languages", - "description": "Section heading on the language settings screen for locales actively maintained by MetaMask." - }, - "swap": { - "message": "Swap" - }, - "swapAdjustSlippage": { - "message": "Adjust slippage" - }, - "swapAggregator": { - "message": "Aggregator" - }, - "swapAllowSwappingOf": { - "message": "Allow swapping of $1", - "description": "Shows a user that they need to allow a token for swapping on their hardware wallet" - }, - "swapAmountReceived": { - "message": "Guaranteed amount" - }, - "swapAmountReceivedInfo": { - "message": "This is the minimum amount you will receive. You may receive more depending on slippage." - }, - "swapAndSend": { - "message": "Swap & Send" - }, - "swapApproval": { - "message": "Approve $1 for swaps", - "description": "Used in the transaction display list to describe a transaction that is an approve call on a token that is to be swapped.. $1 is the symbol of a token that has been approved." - }, - "swapAreYouStillThere": { - "message": "Are you still there?" - }, - "swapAreYouStillThereDescription": { - "message": "We’re ready to show you the latest quotes when you want to continue" - }, - "swapConfirmWithHwWallet": { - "message": "Confirm with your hardware wallet" - }, - "swapContractDataDisabledErrorDescription": { - "message": "In the Ethereum app on your Ledger, go to \"Settings\" and allow contract data. Then, try your swap again." - }, - "swapContractDataDisabledErrorTitle": { - "message": "Contract data is not enabled on your Ledger" - }, - "swapCustom": { - "message": "custom" - }, - "swapDecentralizedExchange": { - "message": "Decentralized exchange" - }, - "swapDetailsTitle": { - "message": "Swap details", - "description": "Title for the modal showing details about a swap transaction." - }, - "swapDirectContract": { - "message": "Direct contract" - }, - "swapEditLimit": { - "message": "Edit limit" - }, - "swapEnableDescription": { - "message": "This is required and gives MetaMask permission to swap your $1.", - "description": "Gives the user info about the required approval transaction for swaps. $1 will be the symbol of a token being approved for swaps." - }, - "swapEnableTokenForSwapping": { - "message": "This will $1 for swapping", - "description": "$1 is for the 'enableToken' key, e.g. 'enable ETH'" - }, - "swapEstimatedNetworkFees": { - "message": "Estimated network fees" - }, - "swapEstimatedNetworkFeesInfo": { - "message": "This is an estimate of the network fee that will be used to complete your swap. The actual amount may change according to network conditions." - }, - "swapFailedErrorDescriptionWithSupportLink": { - "message": "Transaction failures happen and we are here to help. If this issue persists, you can reach our customer support at $1 for further assistance.", - "description": "This message is shown to a user if their swap fails. The $1 will be replaced by support.metamask.io" - }, - "swapFailedErrorTitle": { - "message": "Swap failed" - }, - "swapFetchingQuoteNofN": { - "message": "Fetching quote $1 of $2", - "description": "A count of possible quotes shown to the user while they are waiting for quotes to be fetched. $1 is the number of quotes already loaded, and $2 is the total number of resources that we check for quotes. Keep in mind that not all resources will have a quote for a particular swap." - }, - "swapFetchingQuotes": { - "message": "Fetching quotes..." - }, - "swapFetchingQuotesErrorDescription": { - "message": "Hmmm... something went wrong. Try again, or if errors persist, contact customer support." - }, - "swapFetchingQuotesErrorTitle": { - "message": "Error fetching quotes" - }, - "swapFromTo": { - "message": "The swap of $1 to $2", - "description": "Tells a user that they need to confirm on their hardware wallet a swap of 2 tokens. $1 is a source token and $2 is a destination token" - }, - "swapGasFeesExplanation": { - "message": "MetaMask doesn't make money from gas fees. These fees are estimates and can change based on how busy the network is and how complex a transaction is. Learn more $1.", - "description": "$1 is a link (text in link can be found at 'swapGasFeesSummaryLinkText')" - }, - "swapGasFeesExplanationLinkText": { - "message": "here", - "description": "Text for link in swapGasFeesExplanation" - }, - "swapGasFeesIncluded": { - "message": " Included" - }, - "swapGasFeesSplit": { - "message": "Gas fees on the previous screen are split between these two transactions." - }, - "swapGasFeesSponsored": { - "message": "Paid by MetaMask" - }, - "swapGasFeesSponsoredExplanation": { - "message": "This network fee is paid by MetaMask, so you can transact without $1 in your account." - }, - "swapIncludesMMFee": { - "message": "Includes a $1% MetaMask fee.", - "description": "Provides information about the fee that MetaMask takes for swaps. $1 is a decimal number." - }, - "swapLearnMore": { - "message": "Learn more about Swaps" - }, - "swapLiquiditySourceInfo": { - "message": "We search multiple liquidity sources (exchanges, aggregators and professional market makers) to compare exchange rates and network fees." - }, - "swapMaxSlippage": { - "message": "Max slippage" - }, - "swapMetaMaskFee": { - "message": "MetaMask fee" - }, - "swapMetaMaskFeeDescription": { - "message": "The fee of $1% is automatically factored into this quote. You pay it in exchange for a license to use MetaMask's liquidity provider information aggregation software.", - "description": "Provides information about the fee that MetaMask takes for swaps. $1 is a decimal number." - }, - "swapNQuotesWithDot": { - "message": "$1 quotes.", - "description": "$1 is the number of quotes that the user can select from when opening the list of quotes on the 'view quote' screen" - }, - "swapOnceTransactionHasProcess": { - "message": "Your $1 will be added to your account once this transaction has processed.", - "description": "This message communicates the token that is being transferred. It is shown on the awaiting swap screen. The $1 will be a token symbol." - }, - "swapProcessing": { - "message": "Processing" - }, - "swapQuoteDetails": { - "message": "Quote details" - }, - "swapQuoteSource": { - "message": "Quote source" - }, - "swapQuotesExpiredErrorDescription": { - "message": "Please request new quotes to get the latest rates." - }, - "swapQuotesExpiredErrorTitle": { - "message": "Quotes timeout" - }, - "swapQuotesNotAvailableDescription": { - "message": "This trade route isn't available right now. Try changing the amount, network, or token and we'll find the best option." - }, - "swapQuotesNotAvailableErrorDescription": { - "message": "Try adjusting the amount or slippage settings and try again." - }, - "swapQuotesNotAvailableErrorTitle": { - "message": "No quotes available" - }, - "swapRate": { - "message": "Rate" - }, - "swapReceiving": { - "message": "Receiving" - }, - "swapReceivingInfoTooltip": { - "message": "This is an estimate. The exact amount depends on slippage." - }, - "swapRequestForQuotation": { - "message": "Request for quotation" - }, - "swapSelect": { - "message": "Select" - }, - "swapSelectAQuote": { - "message": "Select a quote" - }, - "swapSelectAToken": { - "message": "Select token" - }, - "swapSelectQuotePopoverDescription": { - "message": "Below are all the quotes gathered from multiple liquidity sources." - }, - "swapSelectToken": { - "message": "Select token" - }, - "swapShowLatestQuotes": { - "message": "Show latest quotes" - }, - "swapSlippageAutoDescription": { - "message": "Auto" - }, - "swapSlippageHighDescription": { - "message": "The slippage entered ($1%) is considered very high and may result in a bad rate", - "description": "$1 is the amount of % for slippage" - }, - "swapSlippageHighTitle": { - "message": "High slippage" - }, - "swapSlippageLowDescription": { - "message": "A value this low ($1%) may result in a failed swap", - "description": "$1 is the amount of % for slippage" - }, - "swapSlippageLowTitle": { - "message": "Low slippage" - }, - "swapSlippageNegativeDescription": { - "message": "Slippage must be greater or equal to zero" - }, - "swapSlippageNegativeTitle": { - "message": "Increase slippage to continue" - }, - "swapSlippageOverLimitDescription": { - "message": "Slippage tolerance must be 15% or less. Anything higher will result in a bad rate." - }, - "swapSlippageOverLimitTitle": { - "message": "Very high slippage" - }, - "swapSlippagePercent": { - "message": "$1%", - "description": "$1 is the amount of % for slippage" - }, - "swapSlippageTooltip": { - "message": "If the price changes between the time your order is placed and confirmed it’s called “slippage”. Your swap will automatically cancel if slippage exceeds your “slippage tolerance” setting." - }, - "swapSlippageZeroDescription": { - "message": "There are fewer zero-slippage quote providers which will result in a less competitive quote." - }, - "swapSlippageZeroTitle": { - "message": "Sourcing zero-slippage providers" - }, - "swapSource": { - "message": "Liquidity source" - }, - "swapSuggestedGasSettingToolTipMessage": { - "message": "Swaps are complex and time sensitive transactions. We recommend this gas fee for a good balance between cost and confidence of a successful Swap." - }, - "swapToConfirmWithHwWallet": { - "message": "to confirm with your hardware wallet" - }, - "swapTokenAvailable": { - "message": "Your $1 has been added to your account.", - "description": "This message is shown after a swap is successful and communicates the exact amount of tokens the user has received for a swap. The $1 is a decimal number of tokens followed by the token symbol." - }, - "swapTokenNotAvailable": { - "message": "Token is not available to swap in this region" - }, - "swapTokenToToken": { - "message": "Swap $1 to $2", - "description": "Used in the transaction display list to describe a swap. $1 and $2 are the symbols of tokens in involved in a swap." - }, - "swapTokens": { - "message": "Swap tokens" - }, - "swapTransactionComplete": { - "message": "Transaction complete" - }, - "swapTwoTransactions": { - "message": "2 transactions" - }, - "swapUnknown": { - "message": "Unknown" - }, - "swapValidationInsufficientGasMessage": { - "message": "You don't have enough $1 to pay the gas fee for this swap. Enter a smaller amount or buy more $1." - }, - "swapZeroSlippage": { - "message": "0% Slippage" - }, - "swapsMaxSlippage": { - "message": "Slippage tolerance" - }, - "swapsViewInActivity": { - "message": "View in activity" - }, - "switch": { - "message": "Switch" - }, - "switchBack": { - "message": "Switch back" - }, - "switchBackToPopup": { - "message": "Switch back to popup" - }, - "switchEthereumChainConfirmationDescription": { - "message": "This will switch the selected network within MetaMask to a previously added network:" - }, - "switchEthereumChainConfirmationTitle": { - "message": "Allow this site to switch the network?" - }, - "switchNetwork": { - "message": "Switch network" - }, - "switchToMetaMaskDefaultRpc": { - "message": "Switch to MetaMask default RPC", - "description": "Button text to switch the default RPC endpoint to MetaMask default RPC" - }, - "switchToPopup": { - "message": "Switch to popup" - }, - "switchToSidePanel": { - "message": "Switch to side panel" - }, - "switchToThisAccount": { - "message": "Switch to this account" - }, - "switchingNetworksCancelsPendingConfirmations": { - "message": "Switching networks will cancel all pending confirmations" - }, - "symbol": { - "message": "Symbol" - }, - "symbolBetweenZeroTwelve": { - "message": "Symbol must be 11 characters or fewer." - }, - "syncing": { - "message": "Syncing..." - }, - "tapToReveal": { - "message": "Tap to reveal" - }, - "tapToRevealNote": { - "message": "Make sure no one is watching your screen." - }, - "tenPercentIncreased": { - "message": "10% increase" - }, - "terms": { - "message": "Terms of Use" - }, - "termsOfService": { - "message": "Terms of service" - }, - "termsOfUseAgree": { - "message": "Agree" - }, - "termsOfUseAgreeText": { - "message": "I agree to the Terms of Use, which apply to my use of MetaMask and all of its features." - }, - "termsOfUseFooterText": { - "message": "Please scroll to read all sections" - }, - "termsOfUseTitle": { - "message": "Review our Terms of Use" - }, - "testNetworks": { - "message": "Test networks" - }, - "testnets": { - "message": "Testnets" - }, - "theme": { - "message": "Theme" - }, - "thirdPartyApis": { - "message": "Third-party APIs" - }, - "thirdPartyApisDescription": { - "message": "Choose how you share your IP address or Ethereum address with third-party APIs. Changes will impact your MetaMask experience." - }, - "thirdPartySoftware": { - "message": "Third-party software notice", - "description": "Title of a popup modal displayed when installing a snap for the first time." - }, - "thisContactWillBeDeleted": { - "message": "This contact will be deleted." - }, - "time": { - "message": "Time" - }, - "to": { - "message": "To" - }, - "toggleDecodeDescription": { - "message": "We use 4byte.directory and Sourcify services to decode and display more readable transaction data. This helps you understand the outcome of pending and past transactions, but can result in your IP address being shared." - }, - "token": { - "message": "Token" - }, - "tokenAddress": { - "message": "Token address" - }, - "tokenAllowance": { - "message": "Token allowance" - }, - "tokenAlreadyAdded": { - "message": "Token has already been added." - }, - "tokenContractAddress": { - "message": "Token contract address" - }, - "tokenContractError": { - "message": "This address is a token contract address. If you send tokens to this address, you will lose them." - }, - "tokenContractWarning": { - "message": "Token contract warning" - }, - "tokenCount": { - "message": "token", - "description": "is number of tokens used for token transfers (singular form)" - }, - "tokenDecimal": { - "message": "Token decimal" - }, - "tokenDecimalFetchFailed": { - "message": "Token decimal required. Find it on: $1" - }, - "tokenDetails": { - "message": "Token details" - }, - "tokenId": { - "message": "Token ID" - }, - "tokenList": { - "message": "Token lists" - }, - "tokenMarketplace": { - "message": "Token marketplace" - }, - "tokenPermissionCount": { - "message": "$1 token permission", - "description": "$1 is the count of token permissions (singular form)" - }, - "tokenPermissionsCount": { - "message": "$1 token permissions", - "description": "$1 is the count of token permissions (plural form)" - }, - "tokenStandard": { - "message": "Token standard" - }, - "tokenStock": { - "message": "Stock" - }, - "tokenStream": { - "message": "Token stream" - }, - "tokenSubscription": { - "message": "Token subscription" - }, - "tokenSymbol": { - "message": "Token symbol" - }, - "tokenTransfer": { - "message": "Token transfer" - }, - "tokens": { - "message": "Tokens" - }, - "tokensCount": { - "message": "tokens", - "description": "is the count of tokens used for token transfers (plural form)" - }, - "tokensInCollection": { - "message": "Tokens in collection" - }, - "tooltipSatusConnectedUpperCase": { - "message": "Connected" - }, - "total": { - "message": "Total" - }, - "totalVolume": { - "message": "Total volume" - }, - "transaction": { - "message": "transaction" - }, - "transactionConfirmed": { - "message": "Transaction confirmed" - }, - "transactionDataFunction": { - "message": "Function" - }, - "transactionDetailGasHeading": { - "message": "Estimated gas fee" - }, - "transactionError": { - "message": "Transaction error. Exception thrown in contract code." - }, - "transactionErrorNoContract": { - "message": "Trying to call a function on a non-contract address." - }, - "transactionFailed": { - "message": "Transaction failed" - }, - "transactionFee": { - "message": "Transaction fee" - }, - "transactionFlowNetwork": { - "message": "Network" - }, - "transactionHistoryBaseFee": { - "message": "Base fee (GWEI)" - }, - "transactionHistoryL1GasLabel": { - "message": "Total L1 gas fee" - }, - "transactionHistoryL2GasLimitLabel": { - "message": "L2 gas limit" - }, - "transactionHistoryL2GasPriceLabel": { - "message": "L2 gas price" - }, - "transactionHistoryMaxFeePerGas": { - "message": "Max fee per gas" - }, - "transactionHistoryPriorityFee": { - "message": "Priority fee (GWEI)" - }, - "transactionHistoryTotalGasFee": { - "message": "Total gas fee" - }, - "transactionIdLabel": { - "message": "Transaction ID", - "description": "Label for the source transaction ID field." - }, - "transactionIncludesTypes": { - "message": "This transaction includes: $1." - }, - "transactionSettings": { - "message": "Transaction settings" - }, - "transactionShield": { - "message": "Transaction Shield" - }, - "transactionSubmitted": { - "message": "Transaction submitted" - }, - "transactionTotalGasFee": { - "message": "Total gas fee", - "description": "Label for the total gas fee incurred in the transaction." - }, - "transactions": { - "message": "Transactions" - }, - "transactionsAndAssets": { - "message": "Transactions and assets" - }, - "transfer": { - "message": "Transfer" - }, - "transferCrypto": { - "message": "Transfer crypto" - }, - "transferFrom": { - "message": "Transfer from" - }, - "transferRequest": { - "message": "Transfer request" - }, - "trezor": { - "message": "Trezor", - "description": "Hardware device name" - }, - "tronBandwidth": { - "message": "Bandwidth" - }, - "tronBandwidthCoverageDescriptionPlural": { - "message": "Covers ~$1 TRX transfers", - "description": "$1 is the number of TRX transfers" - }, - "tronBandwidthCoverageDescriptionSingular": { - "message": "Covers 1 TRX transfer" - }, - "tronDailyResources": { - "message": "Daily resource" - }, - "tronDailyResourcesDescription": { - "message": "This is your daily allowance based on your staked TRX. You get $1 bandwidth for free daily.", - "description": "$1 is the maximum bandwidth value" - }, - "tronEnergy": { - "message": "Energy" - }, - "tronEnergyCoverageDescriptionPlural": { - "message": "Covers ~$1 USDT transfers", - "description": "$1 is the number of USDT transfers" - }, - "tronEnergyCoverageDescriptionSingular": { - "message": "Covers 1 USDT transfer" - }, - "troubleConnectingToLedgerU2FOnFirefox": { - "message": "We're having trouble connecting your Ledger. $1", - "description": "$1 is a link to the wallet connection guide;" - }, - "troubleConnectingToLedgerU2FOnFirefox2": { - "message": "Review our hardware wallet connection guide and try again.", - "description": "$1 of the ledger wallet connection guide" - }, - "troubleConnectingToLedgerU2FOnFirefoxLedgerSolution": { - "message": "If you're on the latest version of Firefox, you might be experiencing an issue related to Firefox dropping U2F support. Learn how to fix this issue $1.", - "description": "It is a link to the ledger website for the workaround." - }, - "troubleConnectingToLedgerU2FOnFirefoxLedgerSolution2": { - "message": "here", - "description": "Second part of the error message; It is a link to the ledger website for the workaround." - }, - "troubleConnectingToWallet": { - "message": "We had trouble connecting to your $1, try reviewing $2 and try again.", - "description": "$1 is the wallet device name; $2 is a link to wallet connection guide" - }, - "troubleStartingMessage": { - "message": "This error could be intermittent, so try restarting the extension." - }, - "troubleStartingTitle": { - "message": "MetaMask had trouble starting." - }, - "trustSignalBlockDescription": { - "message": "If you connect to this site, you could lose all your assets." - }, - "trustSignalBlockTitle": { - "message": "Malicious site detected" - }, - "trustSignalContinueAnyway": { - "message": "Connect Anyway" - }, - "tryAgain": { - "message": "Try again" - }, - "turnOff": { - "message": "Turn off" - }, - "turnOffMetamaskNotificationsError": { - "message": "There was an error in disabling the notifications. Please try again later." - }, - "turnOffPasskey": { - "message": "Turn off $1", - "description": "Action label for turning off passkey unlock. $1 is the OS-specific auth-method noun (Biometrics / Touch ID / Windows Hello)." - }, - "turnOffPasskeyFailed": { - "message": "We couldn't turn off $1. Try again.", - "description": "Error toast when turning off passkey unlock fails. $1 is the OS-specific auth-method noun (Biometrics / Touch ID / Windows Hello)." - }, - "turnOn": { - "message": "Turn on" - }, - "turnOnMetamaskNotifications": { - "message": "Turn on notifications" - }, - "turnOnMetamaskNotificationsButton": { - "message": "Turn on" - }, - "turnOnMetamaskNotificationsError": { - "message": "There was an error in creating the notifications. Please try again later." - }, - "turnOnMetamaskNotificationsMessageFirst": { - "message": "Stay in the loop on what's happening in your wallet with notifications." - }, - "turnOnMetamaskNotificationsMessagePrivacyBold": { - "message": "notifications settings." - }, - "turnOnMetamaskNotificationsMessagePrivacyLink": { - "message": "Learn how we protect your privacy while using this feature." - }, - "turnOnMetamaskNotificationsMessageSecond": { - "message": "To use wallet notifications, we use a profile to sync some settings across your devices. $1" - }, - "turnOnMetamaskNotificationsMessageThird": { - "message": "You can turn off notifications at any time in the $1" - }, - "turnOnTokenDetection": { - "message": "Turn on enhanced token detection" - }, - "tutorial": { - "message": "Tutorial" - }, - "txAlertTitle": { - "message": "This transaction will be reverted" - }, - "typeYourSRP": { - "message": "Enter your Secret Recovery Phrase" - }, - "u2f": { - "message": "U2F", - "description": "A name on an API for the browser to interact with devices that support the U2F protocol. On some browsers we use it to connect MetaMask to Ledger devices." - }, - "unableToConnectTo": { - "message": "Unable to connect to $1.", - "description": "Message shown when network connection fails. $1 is the network name." - }, - "unableToDownload": { - "message": "Unable to download" - }, - "unapproved": { - "message": "Unapproved" - }, - "unavailable": { - "message": "Unavailable" - }, - "unexpectedBehavior": { - "message": "This behavior is unexpected and should be reported as a bug, even if your accounts are restored." - }, - "unifiedSwapAllowSwappingOf": { - "message": "Allow exact access to $1 $2 on $3 for swapping" - }, - "unifiedSwapFromTo": { - "message": "Swap $1 $2 to $3", - "description": "Tells a user that they need to confirm on their hardware wallet a swap of 2 tokens. $1 is a source token and $2 is a destination token" - }, - "units": { - "message": "units" - }, - "unknown": { - "message": "Unknown" - }, - "unknownCollection": { - "message": "Unnamed collection" - }, - "unknownNetworkForGatorPermissions": { - "message": "Unknown network", - "description": "Displayed on places like Gator permissions when regular name is not available." - }, - "unknownNetworkForKeyEntropy": { - "message": "Unknown network", - "description": "Displayed on places like Snap install warning when regular name is not available." - }, - "unknownQrCode": { - "message": "Error: We couldn't identify that QR code" - }, - "unlimited": { - "message": "Unlimited" - }, - "unlock": { - "message": "Unlock" - }, - "unlockPageIncorrectPassword": { - "message": "Password is incorrect. Please try again." - }, - "unlockPageTooManyFailedAttempts": { - "message": "Too many attempts. Try again in " - }, - "unlockToReveal": { - "message": "Unlock to reveal", - "description": "Label used for Private Keys row on multichain account details page." - }, - "unlockWithPasskey": { - "message": "Unlock with $1", - "description": "Action label / aria-label for the passkey unlock button. $1 is the OS-specific auth-method noun (Biometrics / Touch ID / Windows Hello)." - }, - "unpin": { - "message": "Unpin" - }, - "unrecognizedChain": { - "message": "This custom network is not recognized", - "description": "$1 is a clickable link with text defined by the 'unrecognizedChanLinkText' key. The link will open to instructions for users to validate custom network details." - }, - "unsendableAsset": { - "message": "Sending NFT (ERC-721) tokens is not currently supported", - "description": "This is an error message we show the user if they attempt to send an NFT asset type, for which currently don't support sending" - }, - "unstableTokenPriceDescription": { - "message": "The price of this token in USD is highly volatile, indicating a high risk of losing significant value by interacting with it." - }, - "unstableTokenPriceTitle": { - "message": "Unstable token price" - }, - "update": { - "message": "Update" - }, - "updateEthereumChainConfirmationDescription": { - "message": "This site is requesting to update your default network URL. You can edit defaults and network information any time." - }, - "updateInformation": { - "message": "We've made your wallet safer, smoother, and added some new features. Update now to stay protected and use our latest improvements." - }, - "updateNetworkConfirmationTitle": { - "message": "Update $1", - "description": "$1 represents network name" - }, - "updateOrEditNetworkInformations": { - "message": "Update your information or" - }, - "updateRequest": { - "message": "Update request" - }, - "updateRpc": { - "message": "Update RPC", - "description": "Button text to update RPC endpoint" - }, - "updateToTheLatestVersion": { - "message": "Update to the latest version" - }, - "updatedRpcForNetworks": { - "message": "Network RPCs Updated" - }, - "updatedToMetaMaskDefault": { - "message": "Updated to MetaMask default", - "description": "Toast message confirming that the default RPC endpoint has been updated to MetaMask default" - }, - "uploadDropFile": { - "message": "Drop your file here" - }, - "uploadFile": { - "message": "Upload file" - }, - "urlErrorMsg": { - "message": "URLs require the appropriate HTTP/HTTPS prefix." - }, - "urlUnknown": { - "message": "URL unknown" - }, - "use4ByteResolution": { - "message": "Decode smart contracts" - }, - "useDifferentLoginMethod": { - "message": "Use a different login method" - }, - "useMultiAccountBalanceChecker": { - "message": "Batch account balance requests" - }, - "useMultiAccountBalanceCheckerSettingDescription": { - "message": "Get faster balance updates by batching account balance requests. This lets us fetch your account balances together, so you get quicker updates for an improved experience. When this feature is off, third parties may be less likely to associate your accounts with each other." - }, - "useMultiAccountBalanceCheckerSettingDescriptionV2": { - "message": "Sends balance updates for all your accounts at once. Allows for a faster and overall better experience managing multiple accounts." - }, - "useNftDetection": { - "message": "Autodetect NFTs" - }, - "useNftDetectionDescription": { - "message": "Displays all NFTs, including fake ones airdropped by scammers." - }, - "usePassword": { - "message": "Use password" - }, - "usePhishingDetection": { - "message": "Use phishing detection" - }, - "usePhishingDetectionDescription": { - "message": "Display a warning for phishing domains targeting Ethereum users" - }, - "useSafeChainsListValidation": { - "message": "Network details check" - }, - "useSafeChainsListValidationDescriptionV2": { - "message": "Reduces your chances of connecting to a malicious or incorrect network. MetaMask uses $1 to show accurate and standardized network details." - }, - "useSafeChainsListValidationWebsite": { - "message": "chainid.network", - "description": "useSafeChainsListValidationWebsite is separated from the rest of the text so that we can bold the third party service name in the middle of them" - }, - "useTokenDetectionPrivacyDesc": { - "message": "Automatically displaying tokens sent to your account involves communication with third party servers to fetch token’s images. Those serves will have access to your IP address." - }, - "usedByClients": { - "message": "Used by a variety of different clients" - }, - "userOpContractDeployError": { - "message": "Contract deployment from a smart account is not supported" - }, - "value": { - "message": "Value" - }, - "version": { - "message": "Version" - }, - "view": { - "message": "View" - }, - "viewActivity": { - "message": "View activity" - }, - "viewAddressOnExplorer": { - "message": "View on $1", - "description": "$1 is the block explorer name" - }, - "viewDetails": { - "message": "View details" - }, - "viewOnBlockExplorer": { - "message": "View on block explorer" - }, - "viewOnCustomBlockExplorer": { - "message": "View $1 at $2", - "description": "$1 is the action type. e.g (Account, Transaction, Swap) and $2 is the Custom Block Explorer URL" - }, - "viewOnEtherscan": { - "message": "View $1 on Etherscan", - "description": "$1 is the action type. e.g (Account, Transaction, Swap)" - }, - "viewOnExplorer": { - "message": "View on explorer" - }, - "viewOnOpensea": { - "message": "View on Opensea" - }, - "viewTokenDetails": { - "message": "View token details" - }, - "viewTransaction": { - "message": "View transaction" - }, - "viewinExplorer": { - "message": "View $1 in explorer", - "description": "$1 is the action type. e.g (Account, Transaction, Swap)" - }, - "visitSite": { - "message": "Visit site" - }, - "visitSupportDataConsentModalAccept": { - "message": "Confirm" - }, - "visitSupportDataConsentModalDescription": { - "message": "Do you want to share your MetaMask Identifier and app version with our Support Center? This can help us better solve your problem, but is optional." - }, - "visitSupportDataConsentModalReject": { - "message": "Don’t share" - }, - "visitSupportDataConsentModalTitle": { - "message": "Share device details with support" - }, - "visitWebSite": { - "message": "Visit our website" - }, - "volume": { - "message": "Volume" - }, - "wallet": { - "message": "Wallet" - }, - "walletConnectionGuide": { - "message": "our hardware wallet connection guide" - }, - "walletName": { - "message": "Wallet name" - }, - "walletReadyLearn": { - "message": "$1 you can keep this phrase safe so you never lose access to your money.", - "description": "$1 is the link to Learn how" - }, - "walletReadyLoseSrp": { - "message": "If you lose your Secret Recovery Phrase, you won’t be able to use your wallet." - }, - "walletReadyLoseSrpFromReminder": { - "message": "This Secret Recovery Phrase can help you regain access if you ever forget your password or lose access to your login." - }, - "wantToAddThisNetwork": { - "message": "Want to add this network?" - }, - "wantsToAddThisAsset": { - "message": "This allows the following asset to be added to your wallet." - }, - "warning": { - "message": "Warning" - }, - "warningFromSnap": { - "message": "Warning from $1", - "description": "$1 represents the name of the snap" - }, - "watchEthereumAccountsDescription": { - "message": "Turning this option on will give you the ability to watch Ethereum accounts via a public address or ENS name. For feedback on this Beta feature please complete this $1.", - "description": "$1 is the link to a product feedback form" - }, - "watchEthereumAccountsToggle": { - "message": "Watch Ethereum Accounts (Beta)" - }, - "watchOutMessage": { - "message": "Beware of $1.", - "description": "$1 is a link with text that is provided by the 'securityMessageLinkForNetworks' key" - }, - "web3": { - "message": "Web3" - }, - "web3ShimUsageNotification": { - "message": "We noticed that the current website tried to use the removed window.web3 API. If the site appears to be broken, please click $1 for more information.", - "description": "$1 is a clickable link." - }, - "webhid": { - "message": "WebHID", - "description": "Refers to a interface for connecting external devices to the browser. Used for connecting ledger to the browser. Read more here https://developer.mozilla.org/en-US/docs/Web/API/WebHID_API" - }, - "websites": { - "message": "websites", - "description": "Used in the 'permission_rpc' message." - }, - "weekly": { - "message": "weekly" - }, - "welcomeBack": { - "message": "Welcome back" - }, - "whatsThis": { - "message": "What's this?" - }, - "willApproveAmountForBridging": { - "message": "Approves token for bridge." - }, - "willApproveAmountForSwapping": { - "message": "Approves token for swap." - }, - "withdrawTo": { - "message": "Receive", - "description": "Label for pay with row in withdrawal flows showing the destination token" - }, - "withdrawing": { - "message": "Withdrawing" - }, - "wrongNetworkName": { - "message": "According to our records, the network name may not correctly match this chain ID." - }, - "wrongPassword": { - "message": "Wrong password", - "description": "Displayed when the user enters an incorrect password" - }, - "year": { - "message": "year" - }, - "yes": { - "message": "Yes" - }, - "you": { - "message": "You" - }, - "youApprove": { - "message": "You approve" - }, - "youNeedToAllowCameraAccess": { - "message": "You need to allow camera access to use this feature." - }, - "youReceived": { - "message": "You received", - "description": "Label indicating the amount and asset the user received." - }, - "youSent": { - "message": "You sent", - "description": "Label indicating the amount and asset the user sent." - }, - "youllReceive": { - "message": "You'll receive", - "description": "Row label on the Perps Withdraw confirmation showing the net receive amount after fees" - }, - "yourActivity": { - "message": "Your activity" - }, - "yourBalance": { - "message": "Your balance" - }, - "yourNFTmayBeAtRisk": { - "message": "Your NFT may be at risk" - }, - "yourWalletIsReady": { - "message": "Your wallet is ready!" - }, - "yourWalletIsReadyFromReminder": { - "message": "Keep your Secret Recovery Phrase safe!" - } - } - }, - "smartAccounts": { - "toggleStates": {} - }, - "rewards": { - "rewardsModalOpen": false, - "onboardingReferralCode": "", - "geoLocation": null, - "optinAllowedForGeo": null, - "optinAllowedForGeoLoading": false, - "optinAllowedForGeoError": false, - "candidateSubscriptionId": null, - "seasonStatus": null, - "seasonStatusError": null, - "seasonStatusLoading": false, - "rewardsEnabled": false, - "errorToast": { - "isOpen": false, - "title": "", - "description": "", - "actionText": "" - }, - "rewardsBadgeHidden": true, - "accountLinkedTimestamp": null, - "rewardsDeeplinkUrl": null - }, - "perpsTutorial": { - "tutorialModalOpen": false, - "activeStep": "WhatArePerps", - "tutorialCompleted": false - }, - "version": "13.32.0.0", - "browser": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36", - "logs": [ - { - "id": "8b49c320-1747-11f1-b7b3-03d70bc40886", - "log": { - "data": { - "signingData": { - "data": "{\"domain\":{\"verifyingContract\":\"0x7e4c2852fc93613a7b01e50aea48431b125079c5\",\"chainId\":143},\"message\":{\"to\":\"0x9641d764fc13c8b624c04430c7356c1c7c8102e2\",\"value\":\"0\",\"data\":\"0x8d80ff0a000000000000000000000000000000000000000000000000000000000000002000000000000000000000000000000000000000000000000000000000000000d900fb00d4ea6f3f0d0b4a57b32378075df408f2aaba00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000084391224610000000000000000000000000000000000000000000000000000000000000040000000000000000000000000c37d63122911c274493407d4ea37270bc087dbbb0000000000000000000000000000000000000000000000000000000000000013636972636c65436374704164617074657256320000000000000000000000000000000000000000\",\"operation\":1,\"baseGas\":\"0\",\"gasPrice\":\"0\",\"gasToken\":\"0x0000000000000000000000000000000000000000\",\"refundReceiver\":\"0x0000000000000000000000000000000000000000\",\"nonce\":2,\"safeTxGas\":\"0\"},\"primaryType\":\"SafeTx\",\"types\":{\"EIP712Domain\":[{\"name\":\"chainId\",\"type\":\"uint256\"},{\"name\":\"verifyingContract\",\"type\":\"address\"}],\"SafeTx\":[{\"type\":\"address\",\"name\":\"to\"},{\"type\":\"uint256\",\"name\":\"value\"},{\"type\":\"bytes\",\"name\":\"data\"},{\"type\":\"uint8\",\"name\":\"operation\"},{\"type\":\"uint256\",\"name\":\"safeTxGas\"},{\"type\":\"uint256\",\"name\":\"baseGas\"},{\"type\":\"uint256\",\"name\":\"gasPrice\"},{\"type\":\"address\",\"name\":\"gasToken\"},{\"type\":\"address\",\"name\":\"refundReceiver\"},{\"type\":\"uint256\",\"name\":\"nonce\"}]}}", - "from": "0x9f66e62fd52eeb9286385f620d2bcbe02c94443e", - "signatureMethod": "eth_signTypedData_v4", - "version": "V4" - }, - "signingMethod": "eth_signTypedData_v4", - "stage": "proposed" - }, - "type": "EthSignLog" - }, - "timestamp": 1772573147218 - }, - { - "id": "8f0ce5a0-1747-11f1-b7c4-03d70bc40886", - "log": { - "data": { - "signingData": { - "data": "{\"domain\":{\"verifyingContract\":\"0x7e4c2852fc93613a7b01e50aea48431b125079c5\",\"chainId\":143},\"message\":{\"to\":\"0x9641d764fc13c8b624c04430c7356c1c7c8102e2\",\"value\":\"0\",\"data\":\"0x8d80ff0a000000000000000000000000000000000000000000000000000000000000002000000000000000000000000000000000000000000000000000000000000000d900fb00d4ea6f3f0d0b4a57b32378075df408f2aaba00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000084391224610000000000000000000000000000000000000000000000000000000000000040000000000000000000000000c37d63122911c274493407d4ea37270bc087dbbb0000000000000000000000000000000000000000000000000000000000000013636972636c65436374704164617074657256320000000000000000000000000000000000000000\",\"operation\":1,\"baseGas\":\"0\",\"gasPrice\":\"0\",\"gasToken\":\"0x0000000000000000000000000000000000000000\",\"refundReceiver\":\"0x0000000000000000000000000000000000000000\",\"nonce\":2,\"safeTxGas\":\"0\"},\"primaryType\":\"SafeTx\",\"types\":{\"EIP712Domain\":[{\"name\":\"chainId\",\"type\":\"uint256\"},{\"name\":\"verifyingContract\",\"type\":\"address\"}],\"SafeTx\":[{\"type\":\"address\",\"name\":\"to\"},{\"type\":\"uint256\",\"name\":\"value\"},{\"type\":\"bytes\",\"name\":\"data\"},{\"type\":\"uint8\",\"name\":\"operation\"},{\"type\":\"uint256\",\"name\":\"safeTxGas\"},{\"type\":\"uint256\",\"name\":\"baseGas\"},{\"type\":\"uint256\",\"name\":\"gasPrice\"},{\"type\":\"address\",\"name\":\"gasToken\"},{\"type\":\"address\",\"name\":\"refundReceiver\"},{\"type\":\"uint256\",\"name\":\"nonce\"}]}}", - "from": "0x9f66e62fd52eeb9286385f620d2bcbe02c94443e", - "signatureMethod": "eth_signTypedData_v4", - "version": "V4" - }, - "signingMethod": "eth_signTypedData_v4", - "stage": "proposed" - }, - "type": "EthSignLog" - }, - "timestamp": 1772573153530 - }, - { - "id": "98e9c4d0-1747-11f1-b7cd-03d70bc40886", - "log": { - "data": { - "signingData": { - "data": "{\"domain\":{\"verifyingContract\":\"0x7e4c2852fc93613a7b01e50aea48431b125079c5\",\"chainId\":143},\"message\":{\"to\":\"0x9641d764fc13c8b624c04430c7356c1c7c8102e2\",\"value\":\"0\",\"data\":\"0x8d80ff0a000000000000000000000000000000000000000000000000000000000000002000000000000000000000000000000000000000000000000000000000000000d900fb00d4ea6f3f0d0b4a57b32378075df408f2aaba00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000084391224610000000000000000000000000000000000000000000000000000000000000040000000000000000000000000c37d63122911c274493407d4ea37270bc087dbbb0000000000000000000000000000000000000000000000000000000000000013636972636c65436374704164617074657256320000000000000000000000000000000000000000\",\"operation\":1,\"baseGas\":\"0\",\"gasPrice\":\"0\",\"gasToken\":\"0x0000000000000000000000000000000000000000\",\"refundReceiver\":\"0x0000000000000000000000000000000000000000\",\"nonce\":2,\"safeTxGas\":\"0\"},\"primaryType\":\"SafeTx\",\"types\":{\"EIP712Domain\":[{\"name\":\"chainId\",\"type\":\"uint256\"},{\"name\":\"verifyingContract\",\"type\":\"address\"}],\"SafeTx\":[{\"type\":\"address\",\"name\":\"to\"},{\"type\":\"uint256\",\"name\":\"value\"},{\"type\":\"bytes\",\"name\":\"data\"},{\"type\":\"uint8\",\"name\":\"operation\"},{\"type\":\"uint256\",\"name\":\"safeTxGas\"},{\"type\":\"uint256\",\"name\":\"baseGas\"},{\"type\":\"uint256\",\"name\":\"gasPrice\"},{\"type\":\"address\",\"name\":\"gasToken\"},{\"type\":\"address\",\"name\":\"refundReceiver\"},{\"type\":\"uint256\",\"name\":\"nonce\"}]}}", - "from": "0x9f66e62fd52eeb9286385f620d2bcbe02c94443e", - "signatureMethod": "eth_signTypedData_v4", - "version": "V4" - }, - "signingMethod": "eth_signTypedData_v4", - "stage": "proposed" - }, - "type": "EthSignLog" - }, - "timestamp": 1772573170077 - }, - { - "id": "9f60e3c0-1747-11f1-b7d6-03d70bc40886", - "log": { - "data": { - "signingData": { - "data": "{\"domain\":{\"verifyingContract\":\"0x7e4c2852fc93613a7b01e50aea48431b125079c5\",\"chainId\":143},\"message\":{\"to\":\"0x9641d764fc13c8b624c04430c7356c1c7c8102e2\",\"value\":\"0\",\"data\":\"0x8d80ff0a000000000000000000000000000000000000000000000000000000000000002000000000000000000000000000000000000000000000000000000000000000d900fb00d4ea6f3f0d0b4a57b32378075df408f2aaba00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000084391224610000000000000000000000000000000000000000000000000000000000000040000000000000000000000000c37d63122911c274493407d4ea37270bc087dbbb0000000000000000000000000000000000000000000000000000000000000013636972636c65436374704164617074657256320000000000000000000000000000000000000000\",\"operation\":1,\"baseGas\":\"0\",\"gasPrice\":\"0\",\"gasToken\":\"0x0000000000000000000000000000000000000000\",\"refundReceiver\":\"0x0000000000000000000000000000000000000000\",\"nonce\":2,\"safeTxGas\":\"0\"},\"primaryType\":\"SafeTx\",\"types\":{\"EIP712Domain\":[{\"name\":\"chainId\",\"type\":\"uint256\"},{\"name\":\"verifyingContract\",\"type\":\"address\"}],\"SafeTx\":[{\"type\":\"address\",\"name\":\"to\"},{\"type\":\"uint256\",\"name\":\"value\"},{\"type\":\"bytes\",\"name\":\"data\"},{\"type\":\"uint8\",\"name\":\"operation\"},{\"type\":\"uint256\",\"name\":\"safeTxGas\"},{\"type\":\"uint256\",\"name\":\"baseGas\"},{\"type\":\"uint256\",\"name\":\"gasPrice\"},{\"type\":\"address\",\"name\":\"gasToken\"},{\"type\":\"address\",\"name\":\"refundReceiver\"},{\"type\":\"uint256\",\"name\":\"nonce\"}]}}", - "from": "0x9f66e62fd52eeb9286385f620d2bcbe02c94443e", - "metamaskId": "98e9c4d1-1747-11f1-b7cd-03d70bc40886", - "origin": "https://app.safe.global", - "requestId": 1878310115, - "signatureMethod": "eth_signTypedData_v4", - "version": "V4" - }, - "signingMethod": "eth_signTypedData_v4", - "stage": "signed" - }, - "type": "EthSignLog" - }, - "timestamp": 1772573180924 - }, - { - "id": "f696eff0-1e2b-11f1-a9ab-a1628dd5d3f8", - "log": { - "data": { - "signingData": { - "data": "{\"domain\":{\"verifyingContract\":\"0x4040ae3e14c17f581b237c59bf07d41c1aa2bc70\",\"chainId\":143},\"message\":{\"to\":\"0x4040ae3e14c17f581b237c59bf07d41c1aa2bc70\",\"value\":\"0\",\"data\":\"0x0d582f13000000000000000000000000f052a7d1d73d47356c02dbbe43d4f0f6478dee760000000000000000000000000000000000000000000000000000000000000005\",\"operation\":0,\"baseGas\":\"0\",\"gasPrice\":\"0\",\"gasToken\":\"0x0000000000000000000000000000000000000000\",\"refundReceiver\":\"0x0000000000000000000000000000000000000000\",\"nonce\":4,\"safeTxGas\":\"0\"},\"primaryType\":\"SafeTx\",\"types\":{\"EIP712Domain\":[{\"name\":\"chainId\",\"type\":\"uint256\"},{\"name\":\"verifyingContract\",\"type\":\"address\"}],\"SafeTx\":[{\"type\":\"address\",\"name\":\"to\"},{\"type\":\"uint256\",\"name\":\"value\"},{\"type\":\"bytes\",\"name\":\"data\"},{\"type\":\"uint8\",\"name\":\"operation\"},{\"type\":\"uint256\",\"name\":\"safeTxGas\"},{\"type\":\"uint256\",\"name\":\"baseGas\"},{\"type\":\"uint256\",\"name\":\"gasPrice\"},{\"type\":\"address\",\"name\":\"gasToken\"},{\"type\":\"address\",\"name\":\"refundReceiver\"},{\"type\":\"uint256\",\"name\":\"nonce\"}]}}", - "from": "0x9f66e62fd52eeb9286385f620d2bcbe02c94443e", - "signatureMethod": "eth_signTypedData_v4", - "version": "V4" - }, - "signingMethod": "eth_signTypedData_v4", - "stage": "proposed" - }, - "type": "EthSignLog" - }, - "timestamp": 1773330959471 - }, - { - "id": "0bfc3b70-1e2c-11f1-a9ab-a1628dd5d3f8", - "log": { - "data": { - "signingData": { - "data": "{\"domain\":{\"verifyingContract\":\"0x4040ae3e14c17f581b237c59bf07d41c1aa2bc70\",\"chainId\":143},\"message\":{\"to\":\"0x4040ae3e14c17f581b237c59bf07d41c1aa2bc70\",\"value\":\"0\",\"data\":\"0x0d582f13000000000000000000000000f052a7d1d73d47356c02dbbe43d4f0f6478dee760000000000000000000000000000000000000000000000000000000000000005\",\"operation\":0,\"baseGas\":\"0\",\"gasPrice\":\"0\",\"gasToken\":\"0x0000000000000000000000000000000000000000\",\"refundReceiver\":\"0x0000000000000000000000000000000000000000\",\"nonce\":4,\"safeTxGas\":\"0\"},\"primaryType\":\"SafeTx\",\"types\":{\"EIP712Domain\":[{\"name\":\"chainId\",\"type\":\"uint256\"},{\"name\":\"verifyingContract\",\"type\":\"address\"}],\"SafeTx\":[{\"type\":\"address\",\"name\":\"to\"},{\"type\":\"uint256\",\"name\":\"value\"},{\"type\":\"bytes\",\"name\":\"data\"},{\"type\":\"uint8\",\"name\":\"operation\"},{\"type\":\"uint256\",\"name\":\"safeTxGas\"},{\"type\":\"uint256\",\"name\":\"baseGas\"},{\"type\":\"uint256\",\"name\":\"gasPrice\"},{\"type\":\"address\",\"name\":\"gasToken\"},{\"type\":\"address\",\"name\":\"refundReceiver\"},{\"type\":\"uint256\",\"name\":\"nonce\"}]}}", - "from": "0x9f66e62fd52eeb9286385f620d2bcbe02c94443e", - "metamaskId": "f696eff1-1e2b-11f1-a9ab-a1628dd5d3f8", - "origin": "https://app.safe.global", - "requestId": 627910418, - "signatureMethod": "eth_signTypedData_v4", - "version": "V4" - }, - "signingMethod": "eth_signTypedData_v4", - "stage": "signed" - }, - "type": "EthSignLog" - }, - "timestamp": 1773330995367 - }, - { - "id": "46dd5260-1e2c-11f1-a9ab-a1628dd5d3f8", - "log": { - "data": { - "signingData": { - "data": "{\"domain\":{\"verifyingContract\":\"0x4040ae3e14c17f581b237c59bf07d41c1aa2bc70\",\"chainId\":143},\"message\":{\"to\":\"0x4040ae3e14c17f581b237c59bf07d41c1aa2bc70\",\"value\":\"0\",\"data\":\"0x0d582f130000000000000000000000002a449ec2a0dcc20f970d0a33cdebc296e268d1460000000000000000000000000000000000000000000000000000000000000005\",\"operation\":0,\"baseGas\":\"0\",\"gasPrice\":\"0\",\"gasToken\":\"0x0000000000000000000000000000000000000000\",\"refundReceiver\":\"0x0000000000000000000000000000000000000000\",\"nonce\":5,\"safeTxGas\":\"0\"},\"primaryType\":\"SafeTx\",\"types\":{\"EIP712Domain\":[{\"name\":\"chainId\",\"type\":\"uint256\"},{\"name\":\"verifyingContract\",\"type\":\"address\"}],\"SafeTx\":[{\"type\":\"address\",\"name\":\"to\"},{\"type\":\"uint256\",\"name\":\"value\"},{\"type\":\"bytes\",\"name\":\"data\"},{\"type\":\"uint8\",\"name\":\"operation\"},{\"type\":\"uint256\",\"name\":\"safeTxGas\"},{\"type\":\"uint256\",\"name\":\"baseGas\"},{\"type\":\"uint256\",\"name\":\"gasPrice\"},{\"type\":\"address\",\"name\":\"gasToken\"},{\"type\":\"address\",\"name\":\"refundReceiver\"},{\"type\":\"uint256\",\"name\":\"nonce\"}]}}", - "from": "0x9f66e62fd52eeb9286385f620d2bcbe02c94443e", - "signatureMethod": "eth_signTypedData_v4", - "version": "V4" - }, - "signingMethod": "eth_signTypedData_v4", - "stage": "proposed" - }, - "type": "EthSignLog" - }, - "timestamp": 1773331094150 - }, - { - "id": "4b35d710-1e2c-11f1-a9ab-a1628dd5d3f8", - "log": { - "data": { - "signingData": { - "data": "{\"domain\":{\"verifyingContract\":\"0x4040ae3e14c17f581b237c59bf07d41c1aa2bc70\",\"chainId\":143},\"message\":{\"to\":\"0x4040ae3e14c17f581b237c59bf07d41c1aa2bc70\",\"value\":\"0\",\"data\":\"0x0d582f130000000000000000000000002a449ec2a0dcc20f970d0a33cdebc296e268d1460000000000000000000000000000000000000000000000000000000000000005\",\"operation\":0,\"baseGas\":\"0\",\"gasPrice\":\"0\",\"gasToken\":\"0x0000000000000000000000000000000000000000\",\"refundReceiver\":\"0x0000000000000000000000000000000000000000\",\"nonce\":5,\"safeTxGas\":\"0\"},\"primaryType\":\"SafeTx\",\"types\":{\"EIP712Domain\":[{\"name\":\"chainId\",\"type\":\"uint256\"},{\"name\":\"verifyingContract\",\"type\":\"address\"}],\"SafeTx\":[{\"type\":\"address\",\"name\":\"to\"},{\"type\":\"uint256\",\"name\":\"value\"},{\"type\":\"bytes\",\"name\":\"data\"},{\"type\":\"uint8\",\"name\":\"operation\"},{\"type\":\"uint256\",\"name\":\"safeTxGas\"},{\"type\":\"uint256\",\"name\":\"baseGas\"},{\"type\":\"uint256\",\"name\":\"gasPrice\"},{\"type\":\"address\",\"name\":\"gasToken\"},{\"type\":\"address\",\"name\":\"refundReceiver\"},{\"type\":\"uint256\",\"name\":\"nonce\"}]}}", - "from": "0x9f66e62fd52eeb9286385f620d2bcbe02c94443e", - "metamaskId": "46dd5261-1e2c-11f1-a9ab-a1628dd5d3f8", - "origin": "https://app.safe.global", - "requestId": 1118005244, - "signatureMethod": "eth_signTypedData_v4", - "version": "V4" - }, - "signingMethod": "eth_signTypedData_v4", - "stage": "signed" - }, - "type": "EthSignLog" - }, - "timestamp": 1773331101441 - }, - { - "id": "7251e500-1e2c-11f1-a9ab-a1628dd5d3f8", - "log": { - "data": { - "signingData": { - "data": "{\"domain\":{\"verifyingContract\":\"0xa10bdf04f5d2e65265ab2ff351dc29f1d4a12f63\",\"chainId\":42161},\"message\":{\"to\":\"0xa10bdf04f5d2e65265ab2ff351dc29f1d4a12f63\",\"value\":\"0\",\"data\":\"0x0d582f13000000000000000000000000f052a7d1d73d47356c02dbbe43d4f0f6478dee760000000000000000000000000000000000000000000000000000000000000005\",\"operation\":0,\"baseGas\":\"0\",\"gasPrice\":\"0\",\"gasToken\":\"0x0000000000000000000000000000000000000000\",\"refundReceiver\":\"0x0000000000000000000000000000000000000000\",\"nonce\":42,\"safeTxGas\":\"0\"},\"primaryType\":\"SafeTx\",\"types\":{\"EIP712Domain\":[{\"name\":\"chainId\",\"type\":\"uint256\"},{\"name\":\"verifyingContract\",\"type\":\"address\"}],\"SafeTx\":[{\"type\":\"address\",\"name\":\"to\"},{\"type\":\"uint256\",\"name\":\"value\"},{\"type\":\"bytes\",\"name\":\"data\"},{\"type\":\"uint8\",\"name\":\"operation\"},{\"type\":\"uint256\",\"name\":\"safeTxGas\"},{\"type\":\"uint256\",\"name\":\"baseGas\"},{\"type\":\"uint256\",\"name\":\"gasPrice\"},{\"type\":\"address\",\"name\":\"gasToken\"},{\"type\":\"address\",\"name\":\"refundReceiver\"},{\"type\":\"uint256\",\"name\":\"nonce\"}]}}", - "from": "0x9f66e62fd52eeb9286385f620d2bcbe02c94443e", - "signatureMethod": "eth_signTypedData_v4", - "version": "V4" - }, - "signingMethod": "eth_signTypedData_v4", - "stage": "proposed" - }, - "type": "EthSignLog" - }, - "timestamp": 1773331167056 - }, - { - "id": "7b116d50-1e2c-11f1-a9ab-a1628dd5d3f8", - "log": { - "data": { - "signingData": { - "data": "{\"domain\":{\"verifyingContract\":\"0xa10bdf04f5d2e65265ab2ff351dc29f1d4a12f63\",\"chainId\":42161},\"message\":{\"to\":\"0xa10bdf04f5d2e65265ab2ff351dc29f1d4a12f63\",\"value\":\"0\",\"data\":\"0x0d582f13000000000000000000000000f052a7d1d73d47356c02dbbe43d4f0f6478dee760000000000000000000000000000000000000000000000000000000000000005\",\"operation\":0,\"baseGas\":\"0\",\"gasPrice\":\"0\",\"gasToken\":\"0x0000000000000000000000000000000000000000\",\"refundReceiver\":\"0x0000000000000000000000000000000000000000\",\"nonce\":42,\"safeTxGas\":\"0\"},\"primaryType\":\"SafeTx\",\"types\":{\"EIP712Domain\":[{\"name\":\"chainId\",\"type\":\"uint256\"},{\"name\":\"verifyingContract\",\"type\":\"address\"}],\"SafeTx\":[{\"type\":\"address\",\"name\":\"to\"},{\"type\":\"uint256\",\"name\":\"value\"},{\"type\":\"bytes\",\"name\":\"data\"},{\"type\":\"uint8\",\"name\":\"operation\"},{\"type\":\"uint256\",\"name\":\"safeTxGas\"},{\"type\":\"uint256\",\"name\":\"baseGas\"},{\"type\":\"uint256\",\"name\":\"gasPrice\"},{\"type\":\"address\",\"name\":\"gasToken\"},{\"type\":\"address\",\"name\":\"refundReceiver\"},{\"type\":\"uint256\",\"name\":\"nonce\"}]}}", - "from": "0x9f66e62fd52eeb9286385f620d2bcbe02c94443e", - "metamaskId": "7251e501-1e2c-11f1-a9ab-a1628dd5d3f8", - "origin": "https://app.safe.global", - "requestId": 2568699685, - "signatureMethod": "eth_signTypedData_v4", - "version": "V4" - }, - "signingMethod": "eth_signTypedData_v4", - "stage": "signed" - }, - "type": "EthSignLog" - }, - "timestamp": 1773331181733 - } - ], - "platform": { - "arch": "arm64", - "nacl_arch": "arm", - "os": "mac" - } -} diff --git a/quote.json b/quote.json deleted file mode 100644 index 8532e448f3..0000000000 --- a/quote.json +++ /dev/null @@ -1,161 +0,0 @@ -{ - "quote": { - "requestId": "0xe511a9ac028db6fbfc538a5e00c707fe7bb31d4ad94eb357732f0524ddae27af", - "bridgeId": "uniswap", - "srcChainId": 137, - "destChainId": 137, - "aggregator": "uniswap", - "aggregatorType": "AGG", - "srcAsset": { - "address": "0xb33eaad8d922b1083446dc23f610c2567fb5180f", - "chainId": 137, - "assetId": "eip155:137/erc20:0xb33eaad8d922b1083446dc23f610c2567fb5180f", - "symbol": "UNI", - "decimals": 18, - "name": "Uniswap", - "coingeckoId": "uniswap", - "aggregators": [ - "sonarwatch", - "oneInch", - "liFi", - "socket", - "rubic", - "squid", - "rango", - "sushiSwap" - ], - "occurrences": 8, - "iconUrl": "https://static.cx.metamask.io/api/v2/tokenIcons/assets/eip155/137/erc20/0xb33eaad8d922b1083446dc23f610c2567fb5180f.png", - "metadata": { - "storage": { - "balance": 0, - "approval": 1 - } - } - }, - "srcTokenAmount": "517035587535857984", - "destAsset": { - "address": "0x2791bca1f2de4661ed88a30c99a7a9449aa84174", - "chainId": 137, - "assetId": "eip155:137/erc20:0x2791bca1f2de4661ed88a30c99a7a9449aa84174", - "symbol": "USDC.E", - "decimals": 6, - "name": "USD Coin (PoS)", - "coingeckoId": "bridged-usdc-polygon-pos-bridge", - "aggregators": [ - "metamask", - "oneInch", - "liFi", - "trustWallet", - "socket", - "rubic", - "squid", - "rango", - "sonarwatch", - "sushiSwap" - ], - "occurrences": 10, - "iconUrl": "https://static.cx.metamask.io/api/v2/tokenIcons/assets/eip155/137/erc20/0x2791bca1f2de4661ed88a30c99a7a9449aa84174.png", - "metadata": { - "storage": { - "balance": 0, - "approval": 1 - } - } - }, - "destTokenAmount": "1923469", - "minDestTokenAmount": "1913851", - "walletAddress": "0x141d32a89a1e0a5ef360034a2f60a4b917c18838", - "destWalletAddress": "0x141d32a89a1e0a5ef360034a2f60a4b917c18838", - "feeData": { - "metabridge": { - "amount": "16978", - "asset": { - "address": "0x2791bca1f2de4661ed88a30c99a7a9449aa84174", - "chainId": 137, - "assetId": "eip155:137/erc20:0x2791bca1f2de4661ed88a30c99a7a9449aa84174", - "symbol": "USDC.E", - "decimals": 6, - "name": "USD Coin (PoS)", - "coingeckoId": "bridged-usdc-polygon-pos-bridge", - "aggregators": [ - "metamask", - "oneInch", - "liFi", - "trustWallet", - "socket", - "rubic", - "squid", - "rango", - "sonarwatch", - "sushiSwap" - ], - "occurrences": 10, - "iconUrl": "https://static.cx.metamask.io/api/v2/tokenIcons/assets/eip155/137/erc20/0x2791bca1f2de4661ed88a30c99a7a9449aa84174.png", - "metadata": { - "storage": { - "balance": 0, - "approval": 1 - } - } - }, - "quoteBpsFee": 87.5, - "baseBpsFee": 87.5, - "usd": "0.01697435593009302" - } - }, - "bridges": ["uniswap"], - "protocols": ["uniswap"], - "steps": [], - "slippage": 0.5, - "gasSponsored": false, - "gasIncluded": false, - "gasIncluded7702": false, - "priceData": { - "totalFromAmountUsd": "1.9440538091348258", - "totalToAmountUsd": "1.9230561565849975", - "priceImpact": "0.0020695397425886273", - "totalFeeAmountUsd": "0.01697435593009302" - } - }, - "approval": { - "chainId": 137, - "to": "0xb33eaad8d922b1083446dc23f610c2567fb5180f", - "from": "0x141d32a89a1e0a5ef360034a2f60a4b917c18838", - "value": "0x0", - "data": "0x095ea7b30000000000000000000000001a1ec25dc08e98e5e93f1104b5e5cdd298707d31000000000000000000000000000000000000000000000000072ce120a34f6940", - "gasLimit": 59233, - "feeEstimate": 14984656506375320, - "effectiveGas": 51784, - "gasCost": "12779078883377832", - "gasIncludedFeeData": { - "maxFeePerGas": "0x4a8e555550", - "maxPriorityFeePerGas": "0x9eaac6d4e", - "gas": "0xe761", - "balanceNeeded": "0x4362aeee508350", - "currentBalance": "0xe3485cfd14b41c", - "error": "Not enough funds" - } - }, - "trade": { - "chainId": 137, - "to": "0x1a1ec25DC08e98e5E93F1104B5e5cdD298707d31", - "from": "0x141d32a89a1e0a5ef360034a2f60a4b917c18838", - "value": "0x0", - "data": "0x5f5755290000000000000000000000000000000000000000000000000000000000000080000000000000000000000000b33eaad8d922b1083446dc23f610c2567fb5180f000000000000000000000000000000000000000000000000072ce120a34f694000000000000000000000000000000000000000000000000000000000000000c00000000000000000000000000000000000000000000000000000000000000018756e69737761705065726d69743246656544796e616d696300000000000000000000000000000000000000000000000000000000000000000000000000000340000000000000000000000000b33eaad8d922b1083446dc23f610c2567fb5180f0000000000000000000000002791bca1f2de4661ed88a30c99a7a9449aa84174000000000000000000000000000000000000000000000000072ce120a34f694000000000000000000000000000000000000000000000000000000000001d33fb00000000000000000000000000000000000000000000000000000000000001200000000000000000000000000000000000000000000000000000000000004252000000000000000000000000930dedddb92fef1b4ab2665d250877339f064eac0000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000020e3593564c000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000000a0000000000000000000000000000000000000000000000000000000006a063c0700000000000000000000000000000000000000000000000000000000000000010000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000000000200000000000000000000000000000000000000000000000000000000000000100000000000000000000000000c590175e458b83680867afd273527ff58f74c02b000000000000000000000000000000000000000000000000072ce120a34f694000000000000000000000000000000000000000000000000000000000001d762900000000000000000000000000000000000000000000000000000000000000a00000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000002bb33eaad8d922b1083446dc23f610c2567fb5180f000bb82791bca1f2de4661ed88a30c99a7a9449aa84174000000000000000000000000000000000000000000756e69780000b2c5de0b0000000000000000000000000000000000000b", - "gasLimit": 456275, - "feeEstimate": 68249867029983590, - "effectiveGas": 235858, - "gasCost": "58204232721993834", - "gasIncludedFeeData": { - "maxFeePerGas": "0x4a8e555550", - "maxPriorityFeePerGas": "0x9eaac6d4e", - "gas": "0x4a437", - "balanceNeeded": "0x15a0c88943c9430", - "currentBalance": "0x9fe5ae0ec430cc", - "error": "Not enough funds" - } - }, - "estimatedProcessingTimeInSeconds": 0, - "quoteId": "3562c5b0-41e8-4f7d-8b04-a5c10e054fbd" -} From d14ae3f5aa04d62e1a7aacbadbc957629173d122 Mon Sep 17 00:00:00 2001 From: micaelae Date: Fri, 22 May 2026 11:49:52 -0700 Subject: [PATCH 7/7] fix: lint --- eslint-suppressions.json | 7 +------ 1 file changed, 1 insertion(+), 6 deletions(-) diff --git a/eslint-suppressions.json b/eslint-suppressions.json index fd16ca9414..0ca1016952 100644 --- a/eslint-suppressions.json +++ b/eslint-suppressions.json @@ -740,11 +740,6 @@ "count": 3 } }, - "packages/bridge-status-controller/src/utils/transaction.ts": { - "no-restricted-syntax": { - "count": 2 - } - }, "packages/chain-agnostic-permission/src/caip25Permission.ts": { "@typescript-eslint/explicit-function-return-type": { "count": 11 @@ -2343,4 +2338,4 @@ "count": 10 } } -} +} \ No newline at end of file